diff --git a/.azure/gpu-test.yml b/.azure/gpu-test.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0fcefec661e234620987bfe6a00c73de3c01ced3
--- /dev/null
+++ b/.azure/gpu-test.yml
@@ -0,0 +1,114 @@
+name: GPU tests
+
+trigger:
+ branches:
+ include:
+ - "main"
+ - "wip"
+
+pr:
+ branches:
+ include:
+ - "main"
+ - "wip"
+
+jobs:
+ - job: testing
+ strategy:
+ matrix:
+ "ordinary":
+ #image: "pytorchlightning/pytorch_lightning:base-cuda-py3.10-torch2.7-cuda12.6.3"
+ dependency: ""
+ "w. Thunder":
+ #image: "pytorchlightning/pytorch_lightning:base-cuda-py3.10-torch2.7-cuda12.6.3"
+ dependency: "compiler"
+ variables:
+ DEVICES: $( python -c 'print("$(Agent.Name)".split("_")[-1])' )
+ RUN_ONLY_CUDA_TESTS: "1"
+ TRANSFORMERS_CACHE: "/var/tmp/hf/transformers"
+ HF_HOME: "/var/tmp/hf/home"
+ HF_HUB_CACHE: "/var/tmp/hf/hub"
+ SKIP_WITH_CI: "1"
+ NCCL_DEBUG: "INFO"
+ PYTHON_VERSION: "3.10"
+ CUDA_VERSION: "12.6.3"
+ TORCH_VERSION: "2.7.1"
+ CUDNN_FRONTEND_VERSION: "1.10.0"
+ container:
+ # image: "pytorchlightning/pytorch_lightning:base-cuda-py$(PYTHON_VERSION)-torch$(TORCH_VERSION)-cuda$(CUDA_VERSION)"
+ # pytorchlightning/lightning-thunder:ubuntu22.04-cuda12.1.1-cudnn-fe1.5.0-py3.10-pt_main-dev
+ image: "pytorchlightning/lightning-thunder:ubuntu24.04-cuda$(CUDA_VERSION)-cudnn-fe$(CUDNN_FRONTEND_VERSION)-py$(PYTHON_VERSION)-pt_$(TORCH_VERSION)-dev"
+ options: "--gpus=all --shm-size=8gb -v /var/tmp:/var/tmp"
+ workspace:
+ clean: all
+ pool: "lit-rtx-3090"
+ timeoutInMinutes: "35"
+ cancelTimeoutInMinutes: "2"
+ steps:
+ - bash: |
+ echo "##vso[task.setvariable variable=CUDA_VISIBLE_DEVICES]$(DEVICES)"
+ displayName: "set env. vars"
+
+ - bash: |
+ echo $(DEVICES)
+ echo $CUDA_VISIBLE_DEVICES
+ dpkg-query -W -f='${Package} ${Version}\n' libnccl2 libnccl-dev
+ whereis nvidia
+ nvidia-smi
+ which python && which pip
+ python --version
+ pip --version
+ pip list
+ displayName: "Image info & NVIDIA"
+
+ - script: |
+ pip install --upgrade pip
+ pip install '.[extra,test]' "torch==${TORCH_VERSION}" cffi -U
+ displayName: "Install package & dependencies"
+
+ - script: |
+ set -e
+ pip uninstall -y torchvision torchaudio
+ pip install '.[compiler,extra,test]' "torch==${TORCH_VERSION}"
+ python -c "from thunder.executors import nvfuser_available ; assert nvfuser_available(), 'nvFuser is missing!'"
+ python -c "from thunder.executors.triton_utils import triton_version ; assert triton_version() is not None, 'triton is missing!'"
+ condition: eq(variables['dependency'], 'compiler')
+ displayName: "Install `compiler` [nvFuser & Thunder]"
+
+ - bash: |
+ set -e
+ pip list
+ python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu == 2, f'GPU: {mgpu}'"
+ python -c "from torch import __version__ as ver ; assert str(ver).split('+')[0] == '$(TORCH_VERSION)', f'PyTorch: installed {ver} but expected $(TORCH_VERSION)'"
+ displayName: "Env details"
+
+ - bash: pytest -v --durations=100
+ displayName: "All tests"
+ timeoutInMinutes: "15"
+
+ - bash: |
+ wget https://raw.githubusercontent.com/Lightning-AI/utilities/main/scripts/run_standalone_tests.sh
+ bash run_standalone_tests.sh "tests"
+ displayName: "Standalone tests"
+ env:
+ PL_RUN_STANDALONE_TESTS: "1"
+ # NUM_PARALLEL_TESTS: "10"
+ NCCL_IGNORE_DISABLED_P2P: "1"
+ NCCL_DEBUG: "INFO"
+ timeoutInMinutes: "10"
+
+ - bash: |
+ pip uninstall -y lightning-thunder
+ # install thunder from source, so that, thunder.tests will be available
+ pip install -U "lightning-thunder[test] @ git+https://github.com/Lightning-AI/lightning-thunder.git" "torch==${TORCH_VERSION}"
+ displayName: "Re-install Thunder [main branch]"
+ condition: eq(variables['dependency'], 'compiler')
+
+ - bash: |
+ # without env var, it filters out all tests
+ RUN_ONLY_CUDA_TESTS=0 pytest tests/ext_thunder/test_thunder_networks.py -v --durations=50
+ displayName: "Extra tests for Thunder [main branch]"
+ condition: eq(variables['dependency'], 'compiler')
+ env:
+ TORCHDYNAMO_VERBOSE: "1"
+ timeoutInMinutes: "10"
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..cd79ea053bca87603b3e5c2397d0428d6b2e7d18
--- /dev/null
+++ b/.devcontainer/Dockerfile
@@ -0,0 +1,9 @@
+# See here for image contents: https://github.com/devcontainers/images/blob/main/src/python/.devcontainer/Dockerfile
+
+# [Choice] Python version (use -bookworm or -bullseye variants on local arm64/Apple Silicon): 3, 3.12, 3.11, 3.10, 3.9, 3.8, 3-bookworm, 3.12-bookworm, 3.11-bookworm, 3.10-bookworm, 3.9-bookworm, 3.8-bookworm, 3-bullseye, 3.12-bullseye, 3.11-bullseye, 3.10-bullseye, 3.9-bullseye, 3.8-bullseye, 3-buster, 3.12-buster, 3.11-buster, 3.10-buster, 3.9-buster, 3.8-buster
+ARG VARIANT=3-bookworm
+FROM mcr.microsoft.com/devcontainers/python:1-${VARIANT}
+
+# Temporary: Upgrade python packages due to https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40897
+# They are installed by the base image (python) which does not have the patch.
+RUN python3 -m pip install --upgrade pip setuptools
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000000000000000000000000000000000000..ddb9eea5f494c7ad6004c5df7d7796c19c44d268
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,105 @@
+// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
+// https://github.com/microsoft/vscode-dev-containers/tree/v0.194.0/containers/python-3
+{
+ "name": "Python 3 (litgpt)",
+ "build": {
+ "dockerfile": "Dockerfile",
+ "context": "..",
+ "args": {
+ "VARIANT": "3.11-bookworm"
+ }
+ },
+ "runArgs": [
+ // Enable GPU passthrough, requires WSL2 on Windows
+ //"--gpus=all",
+ // One of the following options is required for torch multiprocessing
+ //"--ipc=host",
+ //"--shm-size=4gb",
+ ],
+ // Features to add to the dev container. More info: https://containers.dev/features.
+ "features": {
+ "ghcr.io/devcontainers/features/git:1": {},
+ "ghcr.io/devcontainers/features/git-lfs:1": {},
+ //"ghcr.io/devcontainers/features/nvidia-cuda:1": {},
+ "ghcr.io/devcontainers-extra/features/actionlint:1": {},
+ "ghcr.io/devcontainers-extra/features/pre-commit:2": {},
+ "ghcr.io/dhoeric/features/act:1": {},
+ "ghcr.io/devcontainers/features/docker-in-docker:2": {
+ "version": "latest",
+ "moby": true
+ }
+ },
+ // Set *default* container specific settings.json values on container create.
+ "customizations": {
+ "vscode": {
+ "settings": {
+ "editor.tabSize": 4,
+ "editor.renderWhitespace": "all",
+ "editor.formatOnSave": true,
+ "editor.rulers": [120],
+ "files.exclude": {
+ "**/__pycache__": true
+ },
+ "python.pythonPath": "/usr/local/bin/python",
+ "python.defaultInterpreterPath": "/usr/local/bin/python",
+ "python.languageServer": "Pylance",
+ "python.analysis.autoImportCompletions": true,
+ "python.analysis.completeFunctionParens": true,
+ "python.analysis.autoSearchPaths": true,
+ "python.testing.pytestArgs": ["tests"],
+ "python.testing.unittestEnabled": false,
+ "python.testing.pytestEnabled": true,
+ "code-eol.highlightNonDefault": true,
+ "code-eol.highlightExtraWhitespace": true,
+ "autoDocstring.docstringFormat": "google-notypes",
+ "autoDocstring.guessTypes": true,
+ "autoDocstring.generateDocstringOnEnter": true,
+ "autoDocstring.startOnNewLine": true,
+ "telemetry.telemetryLevel": "off",
+ "[python]": {
+ "editor.formatOnSave": true,
+ "editor.defaultFormatter": "charliermarsh.ruff",
+ "editor.codeActionsOnSave": {
+ "source.organizeImports": "always",
+ "source.fixAll": "always"
+ }
+ }
+ },
+ // Add the IDs of extensions you want installed when the container is created.
+ "extensions": [
+ "ms-python.python",
+ "ms-python.vscode-pylance",
+ "ms-toolsai.jupyter",
+ "GitHub.copilot",
+ "GitHub.copilot-chat",
+ "github.vscode-github-actions",
+ "SanjulaGanepola.github-local-actions",
+ "charliermarsh.ruff",
+ "esbenp.prettier-vscode",
+ "ms-vscode.test-adapter-converter",
+ "njqdev.vscode-python-typehint",
+ "KevinRose.vsc-python-indent",
+ "medo64.render-crlf",
+ "shardulm94.trailing-spaces",
+ "nhoizey.gremlins",
+ "wayou.vscode-todo-highlight",
+ "Gruntfuggly.todo-tree",
+ "njpwerner.autodocstring",
+ "rodolphebarbanneau.python-docstring-highlighter",
+ "mechatroner.rainbow-csv",
+ "uctakeoff.vscode-counter",
+ "bierner.github-markdown-preview",
+ "yahyabatulu.vscode-markdown-alert",
+ "ms-vscode-remote.vscode-remote-extensionpack",
+ "ms-azuretools.vscode-docker",
+ "redhat.vscode-yaml"
+ ]
+ }
+ },
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
+ // "forwardPorts": [],
+ // Use 'postCreateCommand' to run commands after the container is created.
+ "postCreateCommand": "pre-commit install && pip install '.[extra,compiler,test]' -U",
+ // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
+ "remoteUser": "vscode"
+}
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
new file mode 100644
index 0000000000000000000000000000000000000000..732fa941df3f721e49143d6cdbaff368c9c8c01d
--- /dev/null
+++ b/.github/CODEOWNERS
@@ -0,0 +1,2 @@
+* @lantiga @t-vi @borda
+/README.md @williamfalcon @lantiga
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000000000000000000000000000000000..4d20187a8c05ba90f05cf9a2f6eed47383295288
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,41 @@
+# Basic dependabot.yml file with
+# minimum configuration for two package managers
+
+version: 2
+updates:
+ # Enable version updates for python
+ - package-ecosystem: "pip"
+ # Look for a `requirements` in the `root` directory
+ directory: "/"
+ # Check for updates once a week
+ schedule:
+ interval: "monthly"
+ # Labels on pull requests for version updates only
+ labels:
+ - "dependencies"
+ pull-request-branch-name:
+ # Separate sections of the branch name with a hyphen
+ # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
+ separator: "-"
+ # Allow up to 5 open pull requests for pip dependencies
+ open-pull-requests-limit: 3
+
+ # Enable version updates for GitHub Actions
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ # Check for updates once a week
+ schedule:
+ interval: "weekly"
+ # Labels on pull requests for version updates only
+ labels:
+ - "CI / actions"
+ pull-request-branch-name:
+ # Separate sections of the branch name with a hyphen
+ # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
+ separator: "-"
+ # Allow up to 5 open pull requests for GitHub Actions
+ open-pull-requests-limit: 1
+ groups:
+ GHA-updates:
+ patterns:
+ - "*"
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..8c416e1b37676625c8d197feff7a92f2df820950
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,24 @@
+.ipynb_checkpoints/
+__pycache__
+.idea
+.DS_Store
+*.egg-info
+build
+dist
+.venv
+.vscode
+
+# data
+data
+datasets
+!litgpt/data
+!tests/data
+checkpoints
+out
+wandb
+events.out.tfevents*
+
+# test artifacts from tests/test_readme.py
+**/custom_finetuning_dataset.json
+client.py
+**/custom_texts/
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..2051126fd1a2ec2d6aa5e0e22ed7a92a7639626d
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,89 @@
+# Copyright The Lightning team.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+default_language_version:
+ python: python3
+
+ci:
+ autofix_prs: true
+ autoupdate_commit_msg: "[pre-commit.ci] pre-commit suggestions"
+ autoupdate_schedule: quarterly
+ # submodules: true
+
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v5.0.0
+ hooks:
+ - id: end-of-file-fixer
+ - id: trailing-whitespace
+ exclude: README.md
+ - id: check-yaml
+ - id: check-toml
+ #- id: check-docstring-first
+ #- id: check-executables-have-shebangs
+ - id: check-case-conflict
+ - id: check-added-large-files
+ args: ["--maxkb=250", "--enforce-all"]
+ - id: detect-private-key
+
+ - repo: https://github.com/codespell-project/codespell
+ rev: v2.4.1
+ hooks:
+ - id: codespell
+ additional_dependencies: [tomli]
+ args: ["--write-changes"]
+ exclude: pyproject.toml
+
+ #- repo: https://github.com/crate-ci/typos
+ # rev: dictgen-v0.3.1
+ # hooks:
+ # - id: typos
+ # args: [] # empty to do not write fixes
+ # exclude: pyproject.toml
+
+ #- repo: https://github.com/executablebooks/mdformat
+ # rev: 0.7.21
+ # hooks:
+ # - id: mdformat
+ # args: ["--number"]
+ # additional_dependencies:
+ # - mdformat-gfm
+ # - mdformat-black
+ # - mdformat_frontmatter
+
+ - repo: https://github.com/pre-commit/mirrors-prettier
+ rev: v3.1.0
+ hooks:
+ - id: prettier
+ files: \.(json|yml|yaml|toml)
+ # https://prettier.io/docs/en/options.html#print-width
+ args: ["--print-width=140"]
+
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+ rev: v0.12.2
+ hooks:
+ - id: ruff
+ args: ["--fix"]
+ - id: ruff-format
+ - id: ruff
+
+ - repo: https://github.com/tox-dev/pyproject-fmt
+ rev: v2.6.0
+ hooks:
+ - id: pyproject-fmt
+ additional_dependencies: [tox]
+ - repo: https://github.com/abravalheri/validate-pyproject
+ rev: v0.24.1
+ hooks:
+ - id: validate-pyproject
diff --git a/CITATION.cff b/CITATION.cff
new file mode 100644
index 0000000000000000000000000000000000000000..fae8fe40f850bdc7c788a8d214663c88b58069df
--- /dev/null
+++ b/CITATION.cff
@@ -0,0 +1,9 @@
+cff-version: 1.2.0
+message: "If you use this software, you can cite it as shown below."
+title: "LitGPT"
+abstract: "20+ high-performance LLMs with recipes to pretrain, finetune and deploy at scale."
+date-released: 2023-03-22
+authors:
+ - name: "The Lightning AI team"
+license: "Apache-2.0"
+url: "https://github.com/Lightning-AI/litgpt"
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..2e28ea12b6b637520874dd433aad821b1ba3f2ef
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,17 @@
+FROM ubuntu:22.04
+
+# 设置 UTF-8(重要,否则 python/其他程序可能乱码)
+ENV LANG=C.UTF-8
+ENV LC_ALL=C.UTF-8
+
+# 安装常用工具(可选)
+RUN apt-get update && apt-get install -y \
+ python3 python3-pip vim git wget curl \
+ && apt-get clean
+
+# 把你的整个文件夹复制进镜像
+COPY . /workspace
+
+# 设置默认工作目录
+WORKDIR /workspace
+
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..fe60df99e7ff3db486c7722fe98e7739614e7a0f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [2023] Lightning AI
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/README.md b/README.md
index 7be5fc7f47d5db027d120b8024982df93db95b74..f5c139e97558fcd4551913b2ef32e73ec05a6d9b 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,722 @@
----
-license: mit
----
+
+
+
+# ⚡ LitGPT
+
+**20+ high-performance LLMs with recipes to pretrain, finetune, and deploy at scale.**
+
+
+✅ From scratch implementations ✅ No abstractions ✅ Beginner friendly
+ ✅ Flash attention ✅ FSDP ✅ LoRA, QLoRA, Adapter
+✅ Reduce GPU memory (fp4/8/16/32) ✅ 1-1000+ GPUs/TPUs ✅ 20+ LLMs
+
+
+
+---
+
+
+
+ [](https://github.com/Lightning-AI/lit-stablelm/blob/master/LICENSE) [](https://discord.gg/VptPCZkGNa)
+
+
+ Quick start •
+ Models •
+ Finetune •
+ Deploy •
+ All workflows •
+ Features •
+ Recipes (YAML) •
+ Lightning AI •
+ Tutorials
+
+
+
+
+
+
+
+
+
+
+
+
+# Use, finetune, pretrain, and deploy LLMs Lightning fast ⚡⚡
+Every LLM is implemented from scratch with **no abstractions** and **full control**, making them blazing fast, minimal, and performant at enterprise scale.
+
+✅ **Enterprise ready -** Apache 2.0 for unlimited enterprise use.
+✅ **Developer friendly -** Easy debugging with no abstraction layers and single file implementations.
+✅ **Optimized performance -** Models designed to maximize performance, reduce costs, and speed up training.
+✅ **Proven recipes -** Highly-optimized training/finetuning recipes tested at enterprise scale.
+
+
+
+# Quick start
+Install LitGPT
+```
+pip install 'litgpt[extra]'
+```
+
+Load and use any of the [20+ LLMs](#choose-from-20-llms):
+```python
+from litgpt import LLM
+
+llm = LLM.load("microsoft/phi-2")
+text = llm.generate("Fix the spelling: Every fall, the family goes to the mountains.")
+print(text)
+# Corrected Sentence: Every fall, the family goes to the mountains.
+```
+
+
+
+✅ Optimized for fast inference
+✅ Quantization
+✅ Runs on low-memory GPUs
+✅ No layers of internal abstractions
+✅ Optimized for production scale
+
+
+ Advanced install options
+
+Install from source:
+
+```bash
+git clone https://github.com/Lightning-AI/litgpt
+cd litgpt
+pip install -e '.[all]'
+```
+
+
+[Explore the full Python API docs](tutorials/python-api.md).
+
+
+
+---
+# Choose from 20+ LLMs
+Every model is written from scratch to maximize performance and remove layers of abstraction:
+
+| Model | Model size | Author | Reference |
+|----|----|----|----|
+| Llama 3, 3.1, 3.2, 3.3 | 1B, 3B, 8B, 70B, 405B | Meta AI | [Meta AI 2024](https://github.com/meta-llama/llama3) |
+| Code Llama | 7B, 13B, 34B, 70B | Meta AI | [Rozière et al. 2023](https://arxiv.org/abs/2308.12950) |
+| CodeGemma | 7B | Google | [Google Team, Google Deepmind](https://ai.google.dev/gemma/docs/codegemma) |
+| Gemma 2 | 2B, 9B, 27B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-2-report.pdf) |
+| Phi 4 | 14B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2412.08905) |
+| Qwen2.5 | 0.5B, 1.5B, 3B, 7B, 14B, 32B, 72B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwen2.5/) |
+| Qwen2.5 Coder | 0.5B, 1.5B, 3B, 7B, 14B, 32B | Alibaba Group | [Hui, Binyuan et al. 2024](https://arxiv.org/abs/2409.12186) |
+| R1 Distill Llama | 8B, 70B | DeepSeek AI | [DeepSeek AI 2025](https://github.com/deepseek-ai/DeepSeek-R1/blob/main/DeepSeek_R1.pdf) |
+| ... | ... | ... | ... |
+
+
+ See full list of 20+ LLMs
+
+
+
+#### All models
+
+| Model | Model size | Author | Reference |
+|----|----|----|----|
+| CodeGemma | 7B | Google | [Google Team, Google Deepmind](https://ai.google.dev/gemma/docs/codegemma) |
+| Code Llama | 7B, 13B, 34B, 70B | Meta AI | [Rozière et al. 2023](https://arxiv.org/abs/2308.12950) |
+| Falcon | 7B, 40B, 180B | TII UAE | [TII 2023](https://falconllm.tii.ae) |
+| Falcon 3 | 1B, 3B, 7B, 10B | TII UAE | [TII 2024](https://huggingface.co/blog/falcon3) |
+| FreeWilly2 (Stable Beluga 2) | 70B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stable-beluga-large-instruction-fine-tuned-models) |
+| Function Calling Llama 2 | 7B | Trelis | [Trelis et al. 2023](https://huggingface.co/Trelis/Llama-2-7b-chat-hf-function-calling-v2) |
+| Gemma | 2B, 7B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-report.pdf) |
+| Gemma 2 | 9B, 27B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-2-report.pdf) |
+| Gemma 3 | 1B, 4B, 12B, 27B | Google | [Google Team, Google Deepmind](https://arxiv.org/pdf/2503.19786) |
+| Llama 2 | 7B, 13B, 70B | Meta AI | [Touvron et al. 2023](https://arxiv.org/abs/2307.09288) |
+| Llama 3.1 | 8B, 70B | Meta AI | [Meta AI 2024](https://github.com/meta-llama/llama3) |
+| Llama 3.2 | 1B, 3B | Meta AI | [Meta AI 2024](https://ai.meta.com/blog/llama-3-2-connect-2024-vision-edge-mobile-devices/) |
+| Llama 3.3 | 70B | Meta AI | [Meta AI 2024](https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct) |
+| Mathstral | 7B | Mistral AI | [Mistral AI 2024](https://mistral.ai/news/mathstral/) |
+| MicroLlama | 300M | Ken Wang | [MicroLlama repo](https://github.com/keeeeenw/MicroLlama) |
+| Mixtral MoE | 8x7B | Mistral AI | [Mistral AI 2023](https://mistral.ai/news/mixtral-of-experts/) |
+| Mistral | 7B, 123B | Mistral AI | [Mistral AI 2023](https://mistral.ai/news/announcing-mistral-7b/) |
+| Mixtral MoE | 8x22B | Mistral AI | [Mistral AI 2024](https://mistral.ai/news/mixtral-8x22b/) |
+| OLMo | 1B, 7B | Allen Institute for AI (AI2) | [Groeneveld et al. 2024](https://aclanthology.org/2024.acl-long.841/) |
+| OpenLLaMA | 3B, 7B, 13B | OpenLM Research | [Geng & Liu 2023](https://github.com/openlm-research/open_llama) |
+| Phi 1.5 & 2 | 1.3B, 2.7B | Microsoft Research | [Li et al. 2023](https://arxiv.org/abs/2309.05463) |
+| Phi 3 | 3.8B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2404.14219) |
+| Phi 4 | 14B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2412.08905) |
+| Phi 4 Mini Instruct | 3.8B | Microsoft Research | [Microsoft 2025](https://arxiv.org/abs/2503.01743) |
+| Phi 4 Mini Reasoning | 3.8B | Microsoft Research | [Xu, Peng et al. 2025](https://arxiv.org/abs/2504.21233) |
+| Phi 4 Reasoning | 3.8B | Microsoft Research | [Abdin et al. 2025](https://arxiv.org/abs/2504.21318) |
+| Phi 4 Reasoning Plus | 3.8B | Microsoft Research | [Abdin et al. 2025](https://arxiv.org/abs/2504.21318) |
+| Platypus | 7B, 13B, 70B | Lee et al. | [Lee, Hunter, and Ruiz 2023](https://arxiv.org/abs/2308.07317) |
+| Pythia | {14,31,70,160,410}M, {1,1.4,2.8,6.9,12}B | EleutherAI | [Biderman et al. 2023](https://arxiv.org/abs/2304.01373) |
+| Qwen2.5 | 0.5B, 1.5B, 3B, 7B, 14B, 32B, 72B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwen2.5/) |
+| Qwen2.5 Coder | 0.5B, 1.5B, 3B, 7B, 14B, 32B | Alibaba Group | [Hui, Binyuan et al. 2024](https://arxiv.org/abs/2409.12186) |
+| Qwen2.5 1M (Long Context) | 7B, 14B | Alibaba Group | [Qwen Team 2025](https://qwenlm.github.io/blog/qwen2.5-1m/) |
+| Qwen2.5 Math | 1.5B, 7B, 72B | Alibaba Group | [An, Yang et al. 2024](https://arxiv.org/abs/2409.12122) |
+| QwQ | 32B | Alibaba Group | [Qwen Team 2025](https://qwenlm.github.io/blog/qwq-32b/) |
+| QwQ-Preview | 32B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwq-32b-preview/) |
+| Qwen3 | 0.6B, 1.7B, 4B, 8B, 14B, 32B | Alibaba Group | [Qwen Team 2025](https://arxiv.org/abs/2505.09388/) |
+| Qwen3 MoE | 30B, 235B | Alibaba Group | [Qwen Team 2025](https://arxiv.org/abs/2505.09388/) |
+| R1 Distill Llama | 8B, 70B | DeepSeek AI | [DeepSeek AI 2025](https://github.com/deepseek-ai/DeepSeek-R1/blob/main/DeepSeek_R1.pdf) |
+| SmolLM2 | 135M, 360M, 1.7B | Hugging Face | [Hugging Face 2024](https://github.com/huggingface/smollm) |
+| Salamandra | 2B, 7B | Barcelona Supercomputing Centre | [BSC-LTC 2024](https://github.com/BSC-LTC/salamandra) |
+| StableCode | 3B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stablecode-llm-generative-ai-coding) |
+| StableLM | 3B, 7B | Stability AI | [Stability AI 2023](https://github.com/Stability-AI/StableLM) |
+| StableLM Zephyr | 3B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stablecode-llm-generative-ai-coding) |
+| TinyLlama | 1.1B | Zhang et al. | [Zhang et al. 2023](https://github.com/jzhang38/TinyLlama) |
+
+
+**Tip**: You can list all available models by running the `litgpt download list` command.
+
+
+
+
+
+
+---
+
+# Workflows
+
+
+ Finetune •
+ Pretrain •
+ Continued pretraining •
+ Evaluate •
+ Deploy •
+ Test
+
+
+
+
+Use the command line interface to run advanced workflows such as pretraining or finetuning on your own data.
+
+
+## All workflows
+After installing LitGPT, select the model and workflow to run (finetune, pretrain, evaluate, deploy, etc...):
+
+```bash
+# litgpt [action] [model]
+litgpt serve meta-llama/Llama-3.2-3B-Instruct
+litgpt finetune meta-llama/Llama-3.2-3B-Instruct
+litgpt pretrain meta-llama/Llama-3.2-3B-Instruct
+litgpt chat meta-llama/Llama-3.2-3B-Instruct
+litgpt evaluate meta-llama/Llama-3.2-3B-Instruct
+```
+
+
+
+----
+
+## Finetune an LLM
+
+
+
+
+
+Finetuning is the process of taking a pretrained AI model and further training it on a smaller, specialized dataset tailored to a specific task or application.
+
+
+
+
+```bash
+# 0) setup your dataset
+curl -L https://huggingface.co/datasets/ksaw008/finance_alpaca/resolve/main/finance_alpaca.json -o my_custom_dataset.json
+
+# 1) Finetune a model (auto downloads weights)
+litgpt finetune microsoft/phi-2 \
+ --data JSON \
+ --data.json_path my_custom_dataset.json \
+ --data.val_split_fraction 0.1 \
+ --out_dir out/custom-model
+
+# 2) Test the model
+litgpt chat out/custom-model/final
+
+# 3) Deploy the model
+litgpt serve out/custom-model/final
+```
+
+[Read the full finetuning docs](tutorials/finetune.md)
+
+
+
+----
+
+## Deploy an LLM
+
+
+
+
+
+Deploy a pretrained or finetune LLM to use it in real-world applications. Deploy, automatically sets up a web server that can be accessed by a website or app.
+
+```bash
+# deploy an out-of-the-box LLM
+litgpt serve microsoft/phi-2
+
+# deploy your own trained model
+litgpt serve path/to/microsoft/phi-2/checkpoint
+```
+
+
+ Show code to query server:
+
+
+
+Test the server in a separate terminal and integrate the model API into your AI product:
+```python
+# 3) Use the server (in a separate Python session)
+import requests, json
+response = requests.post(
+ "http://127.0.0.1:8000/predict",
+ json={"prompt": "Fix typos in the following sentence: Example input"}
+)
+print(response.json()["output"])
+```
+
+
+[Read the full deploy docs](tutorials/deploy.md).
+
+
+
+----
+
+## Evaluate an LLM
+Evaluate an LLM to test its performance on various tasks to see how well it understands and generates text. Simply put, we can evaluate things like how well would it do in college-level chemistry, coding, etc... (MMLU, Truthful QA, etc...)
+
+```bash
+litgpt evaluate microsoft/phi-2 --tasks 'truthfulqa_mc2,mmlu'
+```
+
+[Read the full evaluation docs](tutorials/evaluation.md).
+
+
+
+----
+
+## Test an LLM
+
+
+
+
+
+Test how well the model works via an interactive chat. Use the `chat` command to chat, extract embeddings, etc...
+
+Here's an example showing how to use the Phi-2 LLM:
+```bash
+litgpt chat microsoft/phi-2
+
+>> Prompt: What do Llamas eat?
+```
+
+
+ Full code:
+
+
+
+```bash
+# 1) List all supported LLMs
+litgpt download list
+
+# 2) Use a model (auto downloads weights)
+litgpt chat microsoft/phi-2
+
+>> Prompt: What do Llamas eat?
+```
+
+The download of certain models requires an additional access token. You can read more about this in the [download](tutorials/download_model_weights.md#specific-models-and-access-tokens) documentation.
+
+
+
+[Read the full chat docs](tutorials/inference.md).
+
+
+
+----
+
+## Pretrain an LLM
+
+
+
+
+
+Pretraining is the process of teaching an AI model by exposing it to a large amount of data before it is fine-tuned for specific tasks.
+
+
+ Show code:
+
+
+
+```bash
+mkdir -p custom_texts
+curl https://www.gutenberg.org/cache/epub/24440/pg24440.txt --output custom_texts/book1.txt
+curl https://www.gutenberg.org/cache/epub/26393/pg26393.txt --output custom_texts/book2.txt
+
+# 1) Download a tokenizer
+litgpt download EleutherAI/pythia-160m \
+ --tokenizer_only True
+
+# 2) Pretrain the model
+litgpt pretrain EleutherAI/pythia-160m \
+ --tokenizer_dir EleutherAI/pythia-160m \
+ --data TextFiles \
+ --data.train_data_path "custom_texts/" \
+ --train.max_tokens 10_000_000 \
+ --out_dir out/custom-model
+
+# 3) Test the model
+litgpt chat out/custom-model/final
+```
+
+
+[Read the full pretraining docs](tutorials/pretrain.md)
+
+
+
+----
+
+## Continue pretraining an LLM
+
+
+
+
+
+Continued pretraining is another way of finetuning that specializes an already pretrained model by training on custom data:
+
+
+ Show code:
+
+
+
+```bash
+mkdir -p custom_texts
+curl https://www.gutenberg.org/cache/epub/24440/pg24440.txt --output custom_texts/book1.txt
+curl https://www.gutenberg.org/cache/epub/26393/pg26393.txt --output custom_texts/book2.txt
+
+# 1) Continue pretraining a model (auto downloads weights)
+litgpt pretrain EleutherAI/pythia-160m \
+ --tokenizer_dir EleutherAI/pythia-160m \
+ --initial_checkpoint_dir EleutherAI/pythia-160m \
+ --data TextFiles \
+ --data.train_data_path "custom_texts/" \
+ --train.max_tokens 10_000_000 \
+ --out_dir out/custom-model
+
+# 2) Test the model
+litgpt chat out/custom-model/final
+```
+
+
+
+[Read the full continued pretraining docs](tutorials/pretrain.md#continued-pretraining-on-custom-data)
+
+
+
+----
+
+# State-of-the-art features
+
+✅ State-of-the-art optimizations: Flash Attention v2, multi-GPU support via fully-sharded data parallelism, [optional CPU offloading](tutorials/oom.md#do-sharding-across-multiple-gpus), and [TPU and XLA support](extensions/xla).
+✅ [Pretrain](tutorials/pretrain.md), [finetune](tutorials/finetune.md), and [deploy](tutorials/inference.md)
+✅ Reduce compute requirements with low-precision settings: FP16, BF16, and FP16/FP32 mixed.
+✅ Lower memory requirements with [quantization](tutorials/quantize.md): 4-bit floats, 8-bit integers, and double quantization.
+✅ [Configuration files](config_hub) for great out-of-the-box performance.
+✅ Parameter-efficient finetuning: [LoRA](tutorials/finetune_lora.md), [QLoRA](tutorials/finetune_lora.md), [Adapter](tutorials/finetune_adapter.md), and [Adapter v2](tutorials/finetune_adapter.md).
+✅ [Exporting](tutorials/convert_lit_models.md) to other popular model weight formats.
+✅ Many popular datasets for [pretraining](tutorials/pretrain.md) and [finetuning](tutorials/prepare_dataset.md), and [support for custom datasets](tutorials/prepare_dataset.md#preparing-custom-datasets-for-instruction-finetuning).
+✅ Readable and easy-to-modify code to experiment with the latest research ideas.
+
+
+
+---
+
+# Training recipes
+
+LitGPT comes with validated recipes (YAML configs) to train models under different conditions. We've generated these recipes based on the parameters we found to perform the best for different training conditions.
+
+Browse all training recipes [here](config_hub).
+
+### Example
+
+```bash
+litgpt finetune \
+ --config https://raw.githubusercontent.com/Lightning-AI/litgpt/main/config_hub/finetune/llama-2-7b/lora.yaml
+```
+
+ ✅ Use configs to customize training
+
+Configs let you customize training for all granular parameters like:
+
+```yaml
+# The path to the base model's checkpoint directory to load for finetuning. (type: , default: checkpoints/stabilityai/stablelm-base-alpha-3b)
+checkpoint_dir: checkpoints/meta-llama/Llama-2-7b-hf
+
+# Directory in which to save checkpoints and logs. (type: , default: out/lora)
+out_dir: out/finetune/qlora-llama2-7b
+
+# The precision to use for finetuning. Possible choices: "bf16-true", "bf16-mixed", "32-true". (type: Optional[str], default: null)
+precision: bf16-true
+
+...
+```
+
+
+
+ ✅ Example: LoRA finetuning config
+
+
+
+```yaml
+# The path to the base model's checkpoint directory to load for finetuning. (type: , default: checkpoints/stabilityai/stablelm-base-alpha-3b)
+checkpoint_dir: checkpoints/meta-llama/Llama-2-7b-hf
+
+# Directory in which to save checkpoints and logs. (type: , default: out/lora)
+out_dir: out/finetune/qlora-llama2-7b
+
+# The precision to use for finetuning. Possible choices: "bf16-true", "bf16-mixed", "32-true". (type: Optional[str], default: null)
+precision: bf16-true
+
+# If set, quantize the model with this algorithm. See ``tutorials/quantize.md`` for more information. (type: Optional[Literal['nf4', 'nf4-dq', 'fp4', 'fp4-dq', 'int8-training']], default: null)
+quantize: bnb.nf4
+
+# How many devices/GPUs to use. (type: Union[int, str], default: 1)
+devices: 1
+
+# How many nodes to use. (type: int, default: 1)
+num_nodes: 1
+
+# The LoRA rank. (type: int, default: 8)
+lora_r: 32
+
+# The LoRA alpha. (type: int, default: 16)
+lora_alpha: 16
+
+# The LoRA dropout value. (type: float, default: 0.05)
+lora_dropout: 0.05
+
+# Whether to apply LoRA to the query weights in attention. (type: bool, default: True)
+lora_query: true
+
+# Whether to apply LoRA to the key weights in attention. (type: bool, default: False)
+lora_key: false
+
+# Whether to apply LoRA to the value weights in attention. (type: bool, default: True)
+lora_value: true
+
+# Whether to apply LoRA to the output projection in the attention block. (type: bool, default: False)
+lora_projection: false
+
+# Whether to apply LoRA to the weights of the MLP in the attention block. (type: bool, default: False)
+lora_mlp: false
+
+# Whether to apply LoRA to output head in GPT. (type: bool, default: False)
+lora_head: false
+
+# Data-related arguments. If not provided, the default is ``litgpt.data.Alpaca``.
+data:
+ class_path: litgpt.data.Alpaca2k
+ init_args:
+ mask_prompt: false
+ val_split_fraction: 0.05
+ prompt_style: alpaca
+ ignore_index: -100
+ seed: 42
+ num_workers: 4
+ download_dir: data/alpaca2k
+
+# Training-related arguments. See ``litgpt.args.TrainArgs`` for details
+train:
+
+ # Number of optimizer steps between saving checkpoints (type: Optional[int], default: 1000)
+ save_interval: 200
+
+ # Number of iterations between logging calls (type: int, default: 1)
+ log_interval: 1
+
+ # Number of samples between optimizer steps across data-parallel ranks (type: int, default: 128)
+ global_batch_size: 8
+
+ # Number of samples per data-parallel rank (type: int, default: 4)
+ micro_batch_size: 2
+
+ # Number of iterations with learning rate warmup active (type: int, default: 100)
+ lr_warmup_steps: 10
+
+ # Number of epochs to train on (type: Optional[int], default: 5)
+ epochs: 4
+
+ # Total number of tokens to train on (type: Optional[int], default: null)
+ max_tokens:
+
+ # Limits the number of optimizer steps to run (type: Optional[int], default: null)
+ max_steps:
+
+ # Limits the length of samples (type: Optional[int], default: null)
+ max_seq_length: 512
+
+ # Whether to tie the embedding weights with the language modeling head weights (type: Optional[bool], default: null)
+ tie_embeddings:
+
+ # (type: float, default: 0.0003)
+ learning_rate: 0.0002
+
+ # (type: float, default: 0.02)
+ weight_decay: 0.0
+
+ # (type: float, default: 0.9)
+ beta1: 0.9
+
+ # (type: float, default: 0.95)
+ beta2: 0.95
+
+ # (type: Optional[float], default: null)
+ max_norm:
+
+ # (type: float, default: 6e-05)
+ min_lr: 6.0e-05
+
+# Evaluation-related arguments. See ``litgpt.args.EvalArgs`` for details
+eval:
+
+ # Number of optimizer steps between evaluation calls (type: int, default: 100)
+ interval: 100
+
+ # Number of tokens to generate (type: Optional[int], default: 100)
+ max_new_tokens: 100
+
+ # Number of iterations (type: int, default: 100)
+ max_iters: 100
+
+# The name of the logger to send metrics to. (type: Literal['wandb', 'tensorboard', 'csv'], default: csv)
+logger_name: csv
+
+# The random seed to use for reproducibility. (type: int, default: 1337)
+seed: 1337
+```
+
+
+
+ ✅ Override any parameter in the CLI:
+
+```bash
+litgpt finetune \
+ --config https://raw.githubusercontent.com/Lightning-AI/litgpt/main/config_hub/finetune/llama-2-7b/lora.yaml \
+ --lora_r 4
+```
+
+
+
+
+----
+
+# Project highlights
+
+LitGPT powers many great AI projects, initiatives, challenges and of course enterprises. Please submit a pull request to be considered for a feature.
+
+
+ 📊 SAMBA: Simple Hybrid State Space Models for Efficient Unlimited Context Language Modeling
+
+The [Samba](https://github.com/microsoft/Samba) project by researchers at Microsoft is built on top of the LitGPT code base and combines state space models with sliding window attention, which outperforms pure state space models.
+
+
+
+
+ 🏆 NeurIPS 2023 Large Language Model Efficiency Challenge: 1 LLM + 1 GPU + 1 Day
+
+The LitGPT repository was the official starter kit for the [NeurIPS 2023 LLM Efficiency Challenge](https://llm-efficiency-challenge.github.io), which is a competition focused on finetuning an existing non-instruction tuned LLM for 24 hours on a single GPU.
+
+
+
+
+ 🦙 TinyLlama: An Open-Source Small Language Model
+
+
+LitGPT powered the [TinyLlama project](https://github.com/jzhang38/TinyLlama) and [TinyLlama: An Open-Source Small Language Model](https://arxiv.org/abs/2401.02385) research paper.
+
+
+
+
+ 🍪 MicroLlama: MicroLlama-300M
+
+[MicroLlama](https://github.com/keeeeenw/MicroLlama) is a 300M Llama model pretrained on 50B tokens powered by TinyLlama and LitGPT.
+
+
+
+ 🔬 Pre-training Small Base LMs with Fewer Tokens
+
+The research paper ["Pre-training Small Base LMs with Fewer Tokens"](https://arxiv.org/abs/2404.08634), which utilizes LitGPT, develops smaller base language models by inheriting a few transformer blocks from larger models and training on a tiny fraction of the data used by the larger models. It demonstrates that these smaller models can perform comparably to larger models despite using significantly less training data and resources.
+
+
+
+
+
+----
+
+# Community
+
+We welcome all individual contributors, regardless of their level of experience or hardware. Your contributions are valuable, and we are excited to see what you can accomplish in this collaborative and supportive environment.
+
+- [Request a feature](https://github.com/Lightning-AI/litgpt/issues)
+- [Submit your first contribution](https://lightning.ai/pages/community/tutorial/how-to-contribute-to-litgpt/)
+- [Join our Discord](https://discord.gg/VptPCZkGNa)
+
+
+
+# Tutorials
+
+🚀 [Get started](tutorials/0_to_litgpt.md)
+⚡️ [Finetuning, incl. LoRA, QLoRA, and Adapters](tutorials/finetune.md)
+🤖 [Pretraining](tutorials/pretrain.md)
+💬 [Model evaluation](tutorials/evaluation.md)
+📘 [Supported and custom datasets](tutorials/prepare_dataset.md)
+🧹 [Quantization](tutorials/quantize.md)
+🤯 [Tips for dealing with out-of-memory (OOM) errors](tutorials/oom.md)
+🧑🏽💻 [Using cloud TPUs](extensions/xla)
+
+
+
+----
+
+### Acknowledgments
+
+This implementation extends on [Lit-LLaMA](https://github.com/lightning-AI/lit-llama) and [nanoGPT](https://github.com/karpathy/nanoGPT), and it's **powered by [Lightning Fabric](https://lightning.ai/docs/fabric/stable/) ⚡**.
+
+- [@karpathy](https://github.com/karpathy) for [nanoGPT](https://github.com/karpathy/nanoGPT)
+- [@EleutherAI](https://github.com/EleutherAI) for [GPT-NeoX](https://github.com/EleutherAI/gpt-neox) and the [Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness)
+- [@TimDettmers](https://github.com/TimDettmers) for [bitsandbytes](https://github.com/TimDettmers/bitsandbytes)
+- [@Microsoft](https://github.com/microsoft) for [LoRA](https://github.com/microsoft/LoRA)
+- [@tridao](https://github.com/tridao) for [Flash Attention 2](https://github.com/Dao-AILab/flash-attention)
+
+### License
+
+LitGPT is released under the [Apache 2.0](https://github.com/Lightning-AI/litgpt/blob/main/LICENSE) license.
+
+### Citation
+
+If you use LitGPT in your research, please cite the following work:
+
+```bibtex
+@misc{litgpt-2023,
+ author = {Lightning AI},
+ title = {LitGPT},
+ howpublished = {\url{https://github.com/Lightning-AI/litgpt}},
+ year = {2023},
+}
+```
+
+
diff --git a/check.py b/check.py
new file mode 100644
index 0000000000000000000000000000000000000000..4eac4ad9830a868812b8b659789e17f867fe82a7
--- /dev/null
+++ b/check.py
@@ -0,0 +1,34 @@
+import os
+import json
+import argparse
+
+def check_file(path):
+ with open(path, "r", encoding="utf-8") as f:
+ data = json.load(f) # 这里假设每个文件是一个 JSON 数组
+ total = len(data)
+ # 转换成字符串来判断重复(保证字典可哈希)
+ unique = len({json.dumps(item, sort_keys=True) for item in data})
+ duplicates = total - unique
+ return total, duplicates
+
+def main():
+ parser = argparse.ArgumentParser(description="Check JSON array dataset files for row count and duplicates.")
+ parser.add_argument("folder", help="Folder containing the JSON files")
+ args = parser.parse_args()
+
+ folder = args.folder
+ for fname in sorted(os.listdir(folder)):
+ fpath = os.path.join(folder, fname)
+ if not os.path.isfile(fpath):
+ continue
+ if not fname.endswith(".json"):
+ continue
+ try:
+ total, duplicates = check_file(fpath)
+ print(f"{fname:25} rows={total:6} duplicates={duplicates:4}")
+ except Exception as e:
+ print(f"{fname:25} [ERROR: {e}]")
+
+if __name__ == "__main__":
+ main()
+
diff --git a/cmd_start_for.ini b/cmd_start_for.ini
new file mode 100644
index 0000000000000000000000000000000000000000..a36c164fb9754e8b05bb155675c44b46c3182a48
--- /dev/null
+++ b/cmd_start_for.ini
@@ -0,0 +1,2 @@
+[cmd_start_info]
+game_id=26
diff --git a/delete.py b/delete.py
new file mode 100644
index 0000000000000000000000000000000000000000..ec2748aaa134421889e6839d1aa24ae675e16a8e
--- /dev/null
+++ b/delete.py
@@ -0,0 +1,83 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+import argparse
+import pathlib
+import re
+import shutil
+
+def remove_explanation_fields(text: str) -> str:
+ """
+ 删除 JSON 文本中键为 "explanation" 的键值对(值为字符串),
+ 不使用 json 解析,使用正则在词法层面安全处理转义字符。
+ 同时正确处理前后逗号,保持 JSON 仍然有效。
+ """
+
+ # JSON 字符串匹配:支持任意数量的转义字符(如 \" \\ \n ...)
+ # 说明:JSON 字符串不允许出现未转义的换行,因此不需 DOTALL。
+ json_string = r'"(?:\\.|[^"\\])*"'
+
+ # 情况 A:explanation 在中间/开头,后面跟逗号
+ # ... "explanation": "......", ...
+ pattern_after = re.compile(
+ rf'\s*"explanation"\s*:\s*{json_string}\s*,'
+ )
+
+ # 情况 B:explanation 在中间/末尾,前面有逗号
+ # ..., "explanation": "......"
+ pattern_before = re.compile(
+ rf',\s*"explanation"\s*:\s*{json_string}'
+ )
+
+ # 先删“后跟逗号”的情况,再删“前有逗号”的情况
+ new_text = pattern_after.sub('', text)
+ new_text = pattern_before.sub('', new_text)
+
+ # 情况 C:对象里只有一个键值对(既没有前逗号也没有后逗号)
+ # 比如:{ "explanation": "..." }
+ # 这会在 A/B 后仍残留:{ }(已是合法 JSON),无需额外处理。
+ # 若出现花括号内部多余空白也不影响合法性。
+
+ return new_text
+
+def process_file(p: pathlib.Path, dry_run: bool = False) -> bool:
+ original = p.read_text(encoding='utf-8')
+ repaired = remove_explanation_fields(original)
+ if repaired != original:
+ if not dry_run:
+ # 备份
+ backup = p.with_suffix(p.suffix + '.bak')
+ shutil.copyfile(p, backup)
+ # 覆盖
+ p.write_text(repaired, encoding='utf-8')
+ return True
+ return False
+
+def main():
+ ap = argparse.ArgumentParser(
+ description="在不使用 json 解析的前提下,删除所有 JSON 文件中的 \"explanation\": \"...\" 字段(安全处理转义字符与逗号)。"
+ )
+ ap.add_argument("folder", type=str, help="包含 .json 文件的文件夹路径")
+ ap.add_argument("--dry-run", action="store_true", help="仅显示将要修改的文件,不写回")
+ args = ap.parse_args()
+
+ root = pathlib.Path(args.folder)
+ if not root.is_dir():
+ raise SystemExit(f"路径不存在或不是文件夹:{root}")
+
+ changed = 0
+ total = 0
+ for p in sorted(root.glob("*.json")):
+ total += 1
+ if process_file(p, dry_run=args.dry_run):
+ changed += 1
+ print(f"[UPDATED] {p}")
+ else:
+ print(f"[SKIP ] {p}(无 explanation 字段或无需修改)")
+
+ print(f"\n完成:扫描 {total} 个 .json 文件,修改 {changed} 个。")
+ if not args.dry_run:
+ print("已为修改过的文件生成 .bak 备份。")
+
+if __name__ == "__main__":
+ main()
diff --git a/environment.yml b/environment.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e5448ddf3191ca0e57100be31e2f698344f2119e
--- /dev/null
+++ b/environment.yml
@@ -0,0 +1,261 @@
+name: /mnt/data/llmtcl
+channels:
+ - defaults
+dependencies:
+ - _libgcc_mutex=0.1=main
+ - _openmp_mutex=5.1=1_gnu
+ - bzip2=1.0.8=h5eee18b_6
+ - ca-certificates=2025.2.25=h06a4308_0
+ - expat=2.7.1=h6a678d5_0
+ - ld_impl_linux-64=2.40=h12ee557_0
+ - libffi=3.4.4=h6a678d5_1
+ - libgcc-ng=11.2.0=h1234567_1
+ - libgomp=11.2.0=h1234567_1
+ - libstdcxx-ng=11.2.0=h1234567_1
+ - libuuid=1.41.5=h5eee18b_0
+ - libxcb=1.17.0=h9b100fa_0
+ - ncurses=6.5=h7934f7d_0
+ - openssl=3.0.17=h5eee18b_0
+ - pip=25.1=pyhc872135_2
+ - pthread-stubs=0.3=h0ce48e5_1
+ - python=3.10.18=h1a3bd86_0
+ - readline=8.2=h5eee18b_0
+ - setuptools=78.1.1=py310h06a4308_0
+ - sqlite=3.50.2=hb25bd0a_1
+ - tk=8.6.14=h993c535_1
+ - wheel=0.45.1=py310h06a4308_0
+ - xorg-libx11=1.8.12=h9b100fa_1
+ - xorg-libxau=1.0.12=h9b100fa_0
+ - xorg-libxdmcp=1.1.5=h9b100fa_0
+ - xorg-xorgproto=2024.1=h5eee18b_1
+ - xz=5.6.4=h5eee18b_1
+ - zlib=1.2.13=h5eee18b_1
+ - pip:
+ - absl-py==2.3.1
+ - accelerate==1.10.0
+ - aiohappyeyeballs==2.6.1
+ - aiohttp==3.12.15
+ - aiosignal==1.4.0
+ - annotated-types==0.7.0
+ - anyio==4.10.0
+ - astor==0.8.1
+ - async-timeout==5.0.1
+ - attrs==25.3.0
+ - blake3==1.0.5
+ - boto3==1.40.1
+ - botocore==1.40.1
+ - cachetools==6.2.0
+ - cbor2==5.7.0
+ - certifi==2025.8.3
+ - cffi==2.0.0
+ - cfgv==3.4.0
+ - chardet==5.2.0
+ - charset-normalizer==3.4.2
+ - click==8.2.1
+ - cloudpickle==3.1.1
+ - colorama==0.4.6
+ - compressed-tensors==0.10.2
+ - contourpy==1.3.2
+ - coverage==7.10.6
+ - cupy-cuda12x==13.6.0
+ - cycler==0.12.1
+ - dataproperty==1.1.0
+ - datasets==3.6.0
+ - depyf==0.19.0
+ - dill==0.3.8
+ - diskcache==5.6.3
+ - distlib==0.4.0
+ - distro==1.9.0
+ - dnspython==2.8.0
+ - docstring-parser==0.17.0
+ - einops==0.8.1
+ - email-validator==2.3.0
+ - et-xmlfile==2.0.0
+ - evaluate==0.4.5
+ - exceptiongroup==1.3.0
+ - execnet==2.1.1
+ - fastapi==0.116.1
+ - fastapi-cli==0.0.11
+ - fastapi-cloud-cli==0.1.5
+ - fastrlock==0.8.3
+ - filelock==3.18.0
+ - fonttools==4.59.0
+ - frozenlist==1.7.0
+ - fsspec==2025.3.0
+ - gguf==0.17.1
+ - grpcio==1.74.0
+ - h11==0.16.0
+ - hf-transfer==0.1.9
+ - hf-xet==1.1.5
+ - httpcore==1.0.9
+ - httptools==0.6.4
+ - httpx==0.28.1
+ - huggingface-hub==0.34.4
+ - identify==2.6.14
+ - idna==3.10
+ - importlib-resources==6.5.2
+ - iniconfig==2.1.0
+ - interegular==0.3.3
+ - jinja2==3.1.6
+ - jiter==0.10.0
+ - jmespath==1.0.1
+ - joblib==1.5.1
+ - jsonargparse==4.40.1
+ - jsonlines==4.0.0
+ - jsonschema==4.25.1
+ - jsonschema-specifications==2025.9.1
+ - kiwisolver==1.4.9
+ - lark==1.2.2
+ - lightning==2.5.2
+ - lightning-utilities==0.15.0
+ - litdata==0.2.51
+ - litgpt==0.5.9
+ - llguidance==0.7.30
+ - llvmlite==0.44.0
+ - lm-eval==0.4.9.1
+ - lm-format-enforcer==0.10.12
+ - lxml==6.0.0
+ - markdown==3.8.2
+ - markdown-it-py==4.0.0
+ - markupsafe==3.0.2
+ - matplotlib==3.10.5
+ - mbstrdecoder==1.1.4
+ - mdurl==0.1.2
+ - mistral-common==1.8.4
+ - more-itertools==10.7.0
+ - mpmath==1.3.0
+ - msgpack==1.1.1
+ - msgspec==0.19.0
+ - multidict==6.6.3
+ - multiprocess==0.70.16
+ - networkx==3.4.2
+ - ninja==1.13.0
+ - nltk==3.9.1
+ - nodeenv==1.9.1
+ - numba==0.61.2
+ - numexpr==2.11.0
+ - numpy==2.2.6
+ - nvidia-cublas-cu12==12.6.4.1
+ - nvidia-cuda-cupti-cu12==12.6.80
+ - nvidia-cuda-nvrtc-cu12==12.6.77
+ - nvidia-cuda-runtime-cu12==12.6.77
+ - nvidia-cudnn-cu12==9.5.1.17
+ - nvidia-cufft-cu12==11.3.0.4
+ - nvidia-cufile-cu12==1.11.1.6
+ - nvidia-curand-cu12==10.3.7.77
+ - nvidia-cusolver-cu12==11.7.1.2
+ - nvidia-cusparse-cu12==12.5.4.2
+ - nvidia-cusparselt-cu12==0.6.3
+ - nvidia-nccl-cu12==2.26.2
+ - nvidia-nvjitlink-cu12==12.6.85
+ - nvidia-nvtx-cu12==12.6.77
+ - obstore==0.7.3
+ - openai==1.107.0
+ - openai-harmony==0.0.4
+ - opencv-python-headless==4.12.0.88
+ - openpyxl==3.1.5
+ - outlines-core==0.2.10
+ - packaging==25.0
+ - pandas==2.3.1
+ - partial-json-parser==0.2.1.1.post6
+ - pathvalidate==3.3.1
+ - peft==0.17.0
+ - pillow==11.3.0
+ - platformdirs==4.4.0
+ - pluggy==1.6.0
+ - portalocker==3.2.0
+ - pre-commit==4.3.0
+ - prometheus-client==0.22.1
+ - prometheus-fastapi-instrumentator==7.1.0
+ - propcache==0.3.2
+ - protobuf==6.31.1
+ - psutil==7.0.0
+ - py-cpuinfo==9.0.0
+ - pyarrow==21.0.0
+ - pybase64==1.4.2
+ - pybind11==3.0.0
+ - pycountry==24.6.1
+ - pycparser==2.23
+ - pydantic==2.11.7
+ - pydantic-core==2.33.2
+ - pydantic-extra-types==2.10.5
+ - pygments==2.19.2
+ - pyparsing==3.2.3
+ - pytablewriter==1.2.1
+ - pytest==8.4.2
+ - pytest-cov==6.3.0
+ - pytest-xdist==3.8.0
+ - python-dateutil==2.9.0.post0
+ - python-dotenv==1.1.1
+ - python-json-logger==3.3.0
+ - python-multipart==0.0.20
+ - pytorch-lightning==2.5.2
+ - pytz==2025.2
+ - pyyaml==6.0.2
+ - pyzmq==27.1.0
+ - ray==2.49.1
+ - referencing==0.36.2
+ - regex==2025.7.34
+ - requests==2.32.4
+ - rich==14.1.0
+ - rich-toolkit==0.15.1
+ - rignore==0.6.4
+ - rouge-score==0.1.2
+ - rpds-py==0.27.1
+ - s3transfer==0.13.1
+ - sacrebleu==2.5.1
+ - safetensors==0.5.3
+ - scikit-learn==1.7.1
+ - scipy==1.15.3
+ - seaborn==0.13.2
+ - sentencepiece==0.2.0
+ - sentry-sdk==2.37.1
+ - setproctitle==1.3.7
+ - shellingham==1.5.4
+ - six==1.17.0
+ - sniffio==1.3.1
+ - soundfile==0.13.1
+ - soxr==1.0.0
+ - sqlitedict==2.1.0
+ - starlette==0.47.3
+ - sympy==1.14.0
+ - tabledata==1.3.4
+ - tabulate==0.9.0
+ - tcolorpy==0.1.7
+ - tenacity==9.1.2
+ - tensorboard==2.20.0
+ - tensorboard-data-server==0.7.2
+ - threadpoolctl==3.6.0
+ - tifffile==2025.5.10
+ - tiktoken==0.11.0
+ - tokenizers==0.21.4
+ - tomli==2.2.1
+ - torch==2.7.1
+ - torchaudio==2.7.1
+ - torchmetrics==1.8.0
+ - torchvision==0.22.1
+ - tqdm==4.67.1
+ - tqdm-multiprocess==0.0.11
+ - transformers==4.55.0
+ - triton==3.3.1
+ - typepy==1.3.4
+ - typer==0.17.4
+ - typeshed-client==2.8.2
+ - typing-extensions==4.14.1
+ - typing-inspection==0.4.1
+ - tzdata==2025.2
+ - urllib3==2.5.0
+ - uvicorn==0.35.0
+ - uvloop==0.21.0
+ - virtualenv==20.34.0
+ - vllm==0.10.1.1
+ - watchfiles==1.1.0
+ - websockets==15.0.1
+ - werkzeug==3.1.3
+ - word2number==1.1
+ - xformers==0.0.31
+ - xgrammar==0.1.21
+ - xxhash==3.5.0
+ - yarl==1.20.1
+ - zstandard==0.23.0
+prefix: /mnt/data/llmtcl
diff --git a/fix.py b/fix.py
new file mode 100644
index 0000000000000000000000000000000000000000..3100c28eac9f79083c3cc9d70ac407dc5f40590e
--- /dev/null
+++ b/fix.py
@@ -0,0 +1,45 @@
+import re
+import pathlib
+import shutil
+import argparse
+
+def escape_backslashes_in_questions(text: str) -> str:
+ # 匹配 "question": "..."
+ json_string = r'"(?:\\.|[^"\\])*"'
+ pattern = re.compile(rf'("question"\s*:\s*)({json_string})')
+
+ def replacer(m):
+ prefix, raw = m.groups()
+ # 去掉外层引号
+ inner = raw[1:-1]
+ # 把单反斜杠替换成双反斜杠
+ inner_fixed = inner.replace("\\", "\\\\")
+ return f'{prefix}"{inner_fixed}"'
+
+ return pattern.sub(replacer, text)
+
+def process_file(p: pathlib.Path):
+ original = p.read_text(encoding="utf-8")
+ fixed = escape_backslashes_in_questions(original)
+ if fixed != original:
+ shutil.copyfile(p, p.with_suffix(p.suffix + ".bak"))
+ p.write_text(fixed, encoding="utf-8")
+ print(f"[UPDATED] {p}")
+ else:
+ print(f"[SKIP ] {p}")
+
+def main():
+ ap = argparse.ArgumentParser(description="Fix backslashes in 'question' fields of JSON files")
+ ap.add_argument("folder", type=str, help="Directory containing .json files")
+ args = ap.parse_args()
+
+ root = pathlib.Path(args.folder)
+ if not root.is_dir():
+ print(f"[ERROR] {args.folder} is not a valid directory")
+ return
+
+ for p in root.glob("*.json"):
+ process_file(p)
+
+if __name__ == "__main__":
+ main()
diff --git a/litgpt.egg-info/PKG-INFO b/litgpt.egg-info/PKG-INFO
new file mode 100644
index 0000000000000000000000000000000000000000..f7a31ab67893626d673a93cfe0712050cfe9f3c0
--- /dev/null
+++ b/litgpt.egg-info/PKG-INFO
@@ -0,0 +1,977 @@
+Metadata-Version: 2.4
+Name: litgpt
+Version: 0.5.9
+Summary: Hackable implementation of state-of-the-art open-source LLMs
+Author-email: Lightning AI
+License: Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [2023] Lightning AI
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+Project-URL: documentation, https://github.com/lightning-AI/litgpt/tutorials
+Project-URL: homepage, https://github.com/lightning-AI/litgpt
+Classifier: Programming Language :: Python :: 3 :: Only
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
+Classifier: Programming Language :: Python :: 3.12
+Classifier: Programming Language :: Python :: 3.13
+Description-Content-Type: text/markdown
+License-File: LICENSE
+Requires-Dist: huggingface-hub<0.33,>=0.23.5
+Requires-Dist: jsonargparse[signatures]<=4.32.1,>=4.30.1; python_version <= "3.9"
+Requires-Dist: jsonargparse[signatures]>=4.37; python_version > "3.9"
+Requires-Dist: lightning>=2.5
+Requires-Dist: psutil==7
+Requires-Dist: safetensors>=0.4.3
+Requires-Dist: tokenizers>=0.15.2
+Requires-Dist: torch>=2.5
+Requires-Dist: tqdm>=4.66
+Provides-Extra: compiler
+Requires-Dist: lightning-thunder>=0.2.0.dev20250119; (python_version >= "3.10" and sys_platform == "linux") and extra == "compiler"
+Provides-Extra: extra
+Requires-Dist: bitsandbytes<0.43,>=0.42; sys_platform == "darwin" and extra == "extra"
+Requires-Dist: bitsandbytes<0.45.5,>=0.45.2; (sys_platform == "linux" or sys_platform == "win32") and extra == "extra"
+Requires-Dist: datasets<4,>=2.18; extra == "extra"
+Requires-Dist: huggingface-hub[hf-transfer]>=0.21; extra == "extra"
+Requires-Dist: litdata==0.2.51; extra == "extra"
+Requires-Dist: litserve>0.2; extra == "extra"
+Requires-Dist: lm-eval>=0.4.2; extra == "extra"
+Requires-Dist: pandas>=1.9; extra == "extra"
+Requires-Dist: pyarrow>=15.0.2; extra == "extra"
+Requires-Dist: requests>=2.31; extra == "extra"
+Requires-Dist: sentencepiece>=0.2; extra == "extra"
+Requires-Dist: tensorboard>=2.14; extra == "extra"
+Requires-Dist: torchmetrics>=1.3.1; extra == "extra"
+Requires-Dist: transformers<4.52,>=4.51.3; extra == "extra"
+Requires-Dist: uvloop>=0.2; sys_platform != "win32" and extra == "extra"
+Requires-Dist: zstandard>=0.22; extra == "extra"
+Provides-Extra: test
+Requires-Dist: einops>=0.7; extra == "test"
+Requires-Dist: protobuf>=4.23.4; extra == "test"
+Requires-Dist: pytest>=8.1.1; extra == "test"
+Requires-Dist: pytest-benchmark>=5.1; extra == "test"
+Requires-Dist: pytest-dependency>=0.6; extra == "test"
+Requires-Dist: pytest-rerunfailures>=14; extra == "test"
+Requires-Dist: pytest-timeout>=2.3.1; extra == "test"
+Dynamic: license-file
+
+
+
+
+# ⚡ LitGPT
+
+**20+ high-performance LLMs with recipes to pretrain, finetune, and deploy at scale.**
+
+
+✅ From scratch implementations ✅ No abstractions ✅ Beginner friendly
+ ✅ Flash attention ✅ FSDP ✅ LoRA, QLoRA, Adapter
+✅ Reduce GPU memory (fp4/8/16/32) ✅ 1-1000+ GPUs/TPUs ✅ 20+ LLMs
+
+
+
+---
+
+
+
+ [](https://github.com/Lightning-AI/lit-stablelm/blob/master/LICENSE) [](https://discord.gg/VptPCZkGNa)
+
+
+ Quick start •
+ Models •
+ Finetune •
+ Deploy •
+ All workflows •
+ Features •
+ Recipes (YAML) •
+ Lightning AI •
+ Tutorials
+
+
+
+
+
+
+
+
+
+
+
+
+# Use, finetune, pretrain, and deploy LLMs Lightning fast ⚡⚡
+Every LLM is implemented from scratch with **no abstractions** and **full control**, making them blazing fast, minimal, and performant at enterprise scale.
+
+✅ **Enterprise ready -** Apache 2.0 for unlimited enterprise use.
+✅ **Developer friendly -** Easy debugging with no abstraction layers and single file implementations.
+✅ **Optimized performance -** Models designed to maximize performance, reduce costs, and speed up training.
+✅ **Proven recipes -** Highly-optimized training/finetuning recipes tested at enterprise scale.
+
+
+
+# Quick start
+Install LitGPT
+```
+pip install 'litgpt[extra]'
+```
+
+Load and use any of the [20+ LLMs](#choose-from-20-llms):
+```python
+from litgpt import LLM
+
+llm = LLM.load("microsoft/phi-2")
+text = llm.generate("Fix the spelling: Every fall, the family goes to the mountains.")
+print(text)
+# Corrected Sentence: Every fall, the family goes to the mountains.
+```
+
+
+
+✅ Optimized for fast inference
+✅ Quantization
+✅ Runs on low-memory GPUs
+✅ No layers of internal abstractions
+✅ Optimized for production scale
+
+
+ Advanced install options
+
+Install from source:
+
+```bash
+git clone https://github.com/Lightning-AI/litgpt
+cd litgpt
+pip install -e '.[all]'
+```
+
+
+[Explore the full Python API docs](tutorials/python-api.md).
+
+
+
+---
+# Choose from 20+ LLMs
+Every model is written from scratch to maximize performance and remove layers of abstraction:
+
+| Model | Model size | Author | Reference |
+|----|----|----|----|
+| Llama 3, 3.1, 3.2, 3.3 | 1B, 3B, 8B, 70B, 405B | Meta AI | [Meta AI 2024](https://github.com/meta-llama/llama3) |
+| Code Llama | 7B, 13B, 34B, 70B | Meta AI | [Rozière et al. 2023](https://arxiv.org/abs/2308.12950) |
+| CodeGemma | 7B | Google | [Google Team, Google Deepmind](https://ai.google.dev/gemma/docs/codegemma) |
+| Gemma 2 | 2B, 9B, 27B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-2-report.pdf) |
+| Phi 4 | 14B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2412.08905) |
+| Qwen2.5 | 0.5B, 1.5B, 3B, 7B, 14B, 32B, 72B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwen2.5/) |
+| Qwen2.5 Coder | 0.5B, 1.5B, 3B, 7B, 14B, 32B | Alibaba Group | [Hui, Binyuan et al. 2024](https://arxiv.org/abs/2409.12186) |
+| R1 Distill Llama | 8B, 70B | DeepSeek AI | [DeepSeek AI 2025](https://github.com/deepseek-ai/DeepSeek-R1/blob/main/DeepSeek_R1.pdf) |
+| ... | ... | ... | ... |
+
+
+ See full list of 20+ LLMs
+
+
+
+#### All models
+
+| Model | Model size | Author | Reference |
+|----|----|----|----|
+| CodeGemma | 7B | Google | [Google Team, Google Deepmind](https://ai.google.dev/gemma/docs/codegemma) |
+| Code Llama | 7B, 13B, 34B, 70B | Meta AI | [Rozière et al. 2023](https://arxiv.org/abs/2308.12950) |
+| Falcon | 7B, 40B, 180B | TII UAE | [TII 2023](https://falconllm.tii.ae) |
+| Falcon 3 | 1B, 3B, 7B, 10B | TII UAE | [TII 2024](https://huggingface.co/blog/falcon3) |
+| FreeWilly2 (Stable Beluga 2) | 70B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stable-beluga-large-instruction-fine-tuned-models) |
+| Function Calling Llama 2 | 7B | Trelis | [Trelis et al. 2023](https://huggingface.co/Trelis/Llama-2-7b-chat-hf-function-calling-v2) |
+| Gemma | 2B, 7B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-report.pdf) |
+| Gemma 2 | 9B, 27B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-2-report.pdf) |
+| Gemma 3 | 1B, 4B, 12B, 27B | Google | [Google Team, Google Deepmind](https://arxiv.org/pdf/2503.19786) |
+| Llama 2 | 7B, 13B, 70B | Meta AI | [Touvron et al. 2023](https://arxiv.org/abs/2307.09288) |
+| Llama 3.1 | 8B, 70B | Meta AI | [Meta AI 2024](https://github.com/meta-llama/llama3) |
+| Llama 3.2 | 1B, 3B | Meta AI | [Meta AI 2024](https://ai.meta.com/blog/llama-3-2-connect-2024-vision-edge-mobile-devices/) |
+| Llama 3.3 | 70B | Meta AI | [Meta AI 2024](https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct) |
+| Mathstral | 7B | Mistral AI | [Mistral AI 2024](https://mistral.ai/news/mathstral/) |
+| MicroLlama | 300M | Ken Wang | [MicroLlama repo](https://github.com/keeeeenw/MicroLlama) |
+| Mixtral MoE | 8x7B | Mistral AI | [Mistral AI 2023](https://mistral.ai/news/mixtral-of-experts/) |
+| Mistral | 7B, 123B | Mistral AI | [Mistral AI 2023](https://mistral.ai/news/announcing-mistral-7b/) |
+| Mixtral MoE | 8x22B | Mistral AI | [Mistral AI 2024](https://mistral.ai/news/mixtral-8x22b/) |
+| OLMo | 1B, 7B | Allen Institute for AI (AI2) | [Groeneveld et al. 2024](https://aclanthology.org/2024.acl-long.841/) |
+| OpenLLaMA | 3B, 7B, 13B | OpenLM Research | [Geng & Liu 2023](https://github.com/openlm-research/open_llama) |
+| Phi 1.5 & 2 | 1.3B, 2.7B | Microsoft Research | [Li et al. 2023](https://arxiv.org/abs/2309.05463) |
+| Phi 3 | 3.8B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2404.14219) |
+| Phi 4 | 14B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2412.08905) |
+| Phi 4 Mini Instruct | 3.8B | Microsoft Research | [Microsoft 2025](https://arxiv.org/abs/2503.01743) |
+| Phi 4 Mini Reasoning | 3.8B | Microsoft Research | [Xu, Peng et al. 2025](https://arxiv.org/abs/2504.21233) |
+| Phi 4 Reasoning | 3.8B | Microsoft Research | [Abdin et al. 2025](https://arxiv.org/abs/2504.21318) |
+| Phi 4 Reasoning Plus | 3.8B | Microsoft Research | [Abdin et al. 2025](https://arxiv.org/abs/2504.21318) |
+| Platypus | 7B, 13B, 70B | Lee et al. | [Lee, Hunter, and Ruiz 2023](https://arxiv.org/abs/2308.07317) |
+| Pythia | {14,31,70,160,410}M, {1,1.4,2.8,6.9,12}B | EleutherAI | [Biderman et al. 2023](https://arxiv.org/abs/2304.01373) |
+| Qwen2.5 | 0.5B, 1.5B, 3B, 7B, 14B, 32B, 72B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwen2.5/) |
+| Qwen2.5 Coder | 0.5B, 1.5B, 3B, 7B, 14B, 32B | Alibaba Group | [Hui, Binyuan et al. 2024](https://arxiv.org/abs/2409.12186) |
+| Qwen2.5 1M (Long Context) | 7B, 14B | Alibaba Group | [Qwen Team 2025](https://qwenlm.github.io/blog/qwen2.5-1m/) |
+| Qwen2.5 Math | 1.5B, 7B, 72B | Alibaba Group | [An, Yang et al. 2024](https://arxiv.org/abs/2409.12122) |
+| QwQ | 32B | Alibaba Group | [Qwen Team 2025](https://qwenlm.github.io/blog/qwq-32b/) |
+| QwQ-Preview | 32B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwq-32b-preview/) |
+| Qwen3 | 0.6B, 1.7B, 4B, 8B, 14B, 32B | Alibaba Group | [Qwen Team 2025](https://arxiv.org/abs/2505.09388/) |
+| Qwen3 MoE | 30B, 235B | Alibaba Group | [Qwen Team 2025](https://arxiv.org/abs/2505.09388/) |
+| R1 Distill Llama | 8B, 70B | DeepSeek AI | [DeepSeek AI 2025](https://github.com/deepseek-ai/DeepSeek-R1/blob/main/DeepSeek_R1.pdf) |
+| SmolLM2 | 135M, 360M, 1.7B | Hugging Face | [Hugging Face 2024](https://github.com/huggingface/smollm) |
+| Salamandra | 2B, 7B | Barcelona Supercomputing Centre | [BSC-LTC 2024](https://github.com/BSC-LTC/salamandra) |
+| StableCode | 3B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stablecode-llm-generative-ai-coding) |
+| StableLM | 3B, 7B | Stability AI | [Stability AI 2023](https://github.com/Stability-AI/StableLM) |
+| StableLM Zephyr | 3B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stablecode-llm-generative-ai-coding) |
+| TinyLlama | 1.1B | Zhang et al. | [Zhang et al. 2023](https://github.com/jzhang38/TinyLlama) |
+
+
+**Tip**: You can list all available models by running the `litgpt download list` command.
+
+
+
+
+
+
+---
+
+# Workflows
+
+
+ Finetune •
+ Pretrain •
+ Continued pretraining •
+ Evaluate •
+ Deploy •
+ Test
+
+
+
+
+Use the command line interface to run advanced workflows such as pretraining or finetuning on your own data.
+
+
+## All workflows
+After installing LitGPT, select the model and workflow to run (finetune, pretrain, evaluate, deploy, etc...):
+
+```bash
+# litgpt [action] [model]
+litgpt serve meta-llama/Llama-3.2-3B-Instruct
+litgpt finetune meta-llama/Llama-3.2-3B-Instruct
+litgpt pretrain meta-llama/Llama-3.2-3B-Instruct
+litgpt chat meta-llama/Llama-3.2-3B-Instruct
+litgpt evaluate meta-llama/Llama-3.2-3B-Instruct
+```
+
+
+
+----
+
+## Finetune an LLM
+
+
+
+
+
+Finetuning is the process of taking a pretrained AI model and further training it on a smaller, specialized dataset tailored to a specific task or application.
+
+
+
+
+```bash
+# 0) setup your dataset
+curl -L https://huggingface.co/datasets/ksaw008/finance_alpaca/resolve/main/finance_alpaca.json -o my_custom_dataset.json
+
+# 1) Finetune a model (auto downloads weights)
+litgpt finetune microsoft/phi-2 \
+ --data JSON \
+ --data.json_path my_custom_dataset.json \
+ --data.val_split_fraction 0.1 \
+ --out_dir out/custom-model
+
+# 2) Test the model
+litgpt chat out/custom-model/final
+
+# 3) Deploy the model
+litgpt serve out/custom-model/final
+```
+
+[Read the full finetuning docs](tutorials/finetune.md)
+
+
+
+----
+
+## Deploy an LLM
+
+
+
+
+
+Deploy a pretrained or finetune LLM to use it in real-world applications. Deploy, automatically sets up a web server that can be accessed by a website or app.
+
+```bash
+# deploy an out-of-the-box LLM
+litgpt serve microsoft/phi-2
+
+# deploy your own trained model
+litgpt serve path/to/microsoft/phi-2/checkpoint
+```
+
+
+ Show code to query server:
+
+
+
+Test the server in a separate terminal and integrate the model API into your AI product:
+```python
+# 3) Use the server (in a separate Python session)
+import requests, json
+response = requests.post(
+ "http://127.0.0.1:8000/predict",
+ json={"prompt": "Fix typos in the following sentence: Example input"}
+)
+print(response.json()["output"])
+```
+
+
+[Read the full deploy docs](tutorials/deploy.md).
+
+
+
+----
+
+## Evaluate an LLM
+Evaluate an LLM to test its performance on various tasks to see how well it understands and generates text. Simply put, we can evaluate things like how well would it do in college-level chemistry, coding, etc... (MMLU, Truthful QA, etc...)
+
+```bash
+litgpt evaluate microsoft/phi-2 --tasks 'truthfulqa_mc2,mmlu'
+```
+
+[Read the full evaluation docs](tutorials/evaluation.md).
+
+
+
+----
+
+## Test an LLM
+
+
+
+
+
+Test how well the model works via an interactive chat. Use the `chat` command to chat, extract embeddings, etc...
+
+Here's an example showing how to use the Phi-2 LLM:
+```bash
+litgpt chat microsoft/phi-2
+
+>> Prompt: What do Llamas eat?
+```
+
+
+ Full code:
+
+
+
+```bash
+# 1) List all supported LLMs
+litgpt download list
+
+# 2) Use a model (auto downloads weights)
+litgpt chat microsoft/phi-2
+
+>> Prompt: What do Llamas eat?
+```
+
+The download of certain models requires an additional access token. You can read more about this in the [download](tutorials/download_model_weights.md#specific-models-and-access-tokens) documentation.
+
+
+
+[Read the full chat docs](tutorials/inference.md).
+
+
+
+----
+
+## Pretrain an LLM
+
+
+
+
+
+Pretraining is the process of teaching an AI model by exposing it to a large amount of data before it is fine-tuned for specific tasks.
+
+
+ Show code:
+
+
+
+```bash
+mkdir -p custom_texts
+curl https://www.gutenberg.org/cache/epub/24440/pg24440.txt --output custom_texts/book1.txt
+curl https://www.gutenberg.org/cache/epub/26393/pg26393.txt --output custom_texts/book2.txt
+
+# 1) Download a tokenizer
+litgpt download EleutherAI/pythia-160m \
+ --tokenizer_only True
+
+# 2) Pretrain the model
+litgpt pretrain EleutherAI/pythia-160m \
+ --tokenizer_dir EleutherAI/pythia-160m \
+ --data TextFiles \
+ --data.train_data_path "custom_texts/" \
+ --train.max_tokens 10_000_000 \
+ --out_dir out/custom-model
+
+# 3) Test the model
+litgpt chat out/custom-model/final
+```
+
+
+[Read the full pretraining docs](tutorials/pretrain.md)
+
+
+
+----
+
+## Continue pretraining an LLM
+
+
+
+
+
+Continued pretraining is another way of finetuning that specializes an already pretrained model by training on custom data:
+
+
+ Show code:
+
+
+
+```bash
+mkdir -p custom_texts
+curl https://www.gutenberg.org/cache/epub/24440/pg24440.txt --output custom_texts/book1.txt
+curl https://www.gutenberg.org/cache/epub/26393/pg26393.txt --output custom_texts/book2.txt
+
+# 1) Continue pretraining a model (auto downloads weights)
+litgpt pretrain EleutherAI/pythia-160m \
+ --tokenizer_dir EleutherAI/pythia-160m \
+ --initial_checkpoint_dir EleutherAI/pythia-160m \
+ --data TextFiles \
+ --data.train_data_path "custom_texts/" \
+ --train.max_tokens 10_000_000 \
+ --out_dir out/custom-model
+
+# 2) Test the model
+litgpt chat out/custom-model/final
+```
+
+
+
+[Read the full continued pretraining docs](tutorials/pretrain.md#continued-pretraining-on-custom-data)
+
+
+
+----
+
+# State-of-the-art features
+
+✅ State-of-the-art optimizations: Flash Attention v2, multi-GPU support via fully-sharded data parallelism, [optional CPU offloading](tutorials/oom.md#do-sharding-across-multiple-gpus), and [TPU and XLA support](extensions/xla).
+✅ [Pretrain](tutorials/pretrain.md), [finetune](tutorials/finetune.md), and [deploy](tutorials/inference.md)
+✅ Reduce compute requirements with low-precision settings: FP16, BF16, and FP16/FP32 mixed.
+✅ Lower memory requirements with [quantization](tutorials/quantize.md): 4-bit floats, 8-bit integers, and double quantization.
+✅ [Configuration files](config_hub) for great out-of-the-box performance.
+✅ Parameter-efficient finetuning: [LoRA](tutorials/finetune_lora.md), [QLoRA](tutorials/finetune_lora.md), [Adapter](tutorials/finetune_adapter.md), and [Adapter v2](tutorials/finetune_adapter.md).
+✅ [Exporting](tutorials/convert_lit_models.md) to other popular model weight formats.
+✅ Many popular datasets for [pretraining](tutorials/pretrain.md) and [finetuning](tutorials/prepare_dataset.md), and [support for custom datasets](tutorials/prepare_dataset.md#preparing-custom-datasets-for-instruction-finetuning).
+✅ Readable and easy-to-modify code to experiment with the latest research ideas.
+
+
+
+---
+
+# Training recipes
+
+LitGPT comes with validated recipes (YAML configs) to train models under different conditions. We've generated these recipes based on the parameters we found to perform the best for different training conditions.
+
+Browse all training recipes [here](config_hub).
+
+### Example
+
+```bash
+litgpt finetune \
+ --config https://raw.githubusercontent.com/Lightning-AI/litgpt/main/config_hub/finetune/llama-2-7b/lora.yaml
+```
+
+ ✅ Use configs to customize training
+
+Configs let you customize training for all granular parameters like:
+
+```yaml
+# The path to the base model's checkpoint directory to load for finetuning. (type: , default: checkpoints/stabilityai/stablelm-base-alpha-3b)
+checkpoint_dir: checkpoints/meta-llama/Llama-2-7b-hf
+
+# Directory in which to save checkpoints and logs. (type: , default: out/lora)
+out_dir: out/finetune/qlora-llama2-7b
+
+# The precision to use for finetuning. Possible choices: "bf16-true", "bf16-mixed", "32-true". (type: Optional[str], default: null)
+precision: bf16-true
+
+...
+```
+
+
+
+ ✅ Example: LoRA finetuning config
+
+
+
+```yaml
+# The path to the base model's checkpoint directory to load for finetuning. (type: , default: checkpoints/stabilityai/stablelm-base-alpha-3b)
+checkpoint_dir: checkpoints/meta-llama/Llama-2-7b-hf
+
+# Directory in which to save checkpoints and logs. (type: , default: out/lora)
+out_dir: out/finetune/qlora-llama2-7b
+
+# The precision to use for finetuning. Possible choices: "bf16-true", "bf16-mixed", "32-true". (type: Optional[str], default: null)
+precision: bf16-true
+
+# If set, quantize the model with this algorithm. See ``tutorials/quantize.md`` for more information. (type: Optional[Literal['nf4', 'nf4-dq', 'fp4', 'fp4-dq', 'int8-training']], default: null)
+quantize: bnb.nf4
+
+# How many devices/GPUs to use. (type: Union[int, str], default: 1)
+devices: 1
+
+# How many nodes to use. (type: int, default: 1)
+num_nodes: 1
+
+# The LoRA rank. (type: int, default: 8)
+lora_r: 32
+
+# The LoRA alpha. (type: int, default: 16)
+lora_alpha: 16
+
+# The LoRA dropout value. (type: float, default: 0.05)
+lora_dropout: 0.05
+
+# Whether to apply LoRA to the query weights in attention. (type: bool, default: True)
+lora_query: true
+
+# Whether to apply LoRA to the key weights in attention. (type: bool, default: False)
+lora_key: false
+
+# Whether to apply LoRA to the value weights in attention. (type: bool, default: True)
+lora_value: true
+
+# Whether to apply LoRA to the output projection in the attention block. (type: bool, default: False)
+lora_projection: false
+
+# Whether to apply LoRA to the weights of the MLP in the attention block. (type: bool, default: False)
+lora_mlp: false
+
+# Whether to apply LoRA to output head in GPT. (type: bool, default: False)
+lora_head: false
+
+# Data-related arguments. If not provided, the default is ``litgpt.data.Alpaca``.
+data:
+ class_path: litgpt.data.Alpaca2k
+ init_args:
+ mask_prompt: false
+ val_split_fraction: 0.05
+ prompt_style: alpaca
+ ignore_index: -100
+ seed: 42
+ num_workers: 4
+ download_dir: data/alpaca2k
+
+# Training-related arguments. See ``litgpt.args.TrainArgs`` for details
+train:
+
+ # Number of optimizer steps between saving checkpoints (type: Optional[int], default: 1000)
+ save_interval: 200
+
+ # Number of iterations between logging calls (type: int, default: 1)
+ log_interval: 1
+
+ # Number of samples between optimizer steps across data-parallel ranks (type: int, default: 128)
+ global_batch_size: 8
+
+ # Number of samples per data-parallel rank (type: int, default: 4)
+ micro_batch_size: 2
+
+ # Number of iterations with learning rate warmup active (type: int, default: 100)
+ lr_warmup_steps: 10
+
+ # Number of epochs to train on (type: Optional[int], default: 5)
+ epochs: 4
+
+ # Total number of tokens to train on (type: Optional[int], default: null)
+ max_tokens:
+
+ # Limits the number of optimizer steps to run (type: Optional[int], default: null)
+ max_steps:
+
+ # Limits the length of samples (type: Optional[int], default: null)
+ max_seq_length: 512
+
+ # Whether to tie the embedding weights with the language modeling head weights (type: Optional[bool], default: null)
+ tie_embeddings:
+
+ # (type: float, default: 0.0003)
+ learning_rate: 0.0002
+
+ # (type: float, default: 0.02)
+ weight_decay: 0.0
+
+ # (type: float, default: 0.9)
+ beta1: 0.9
+
+ # (type: float, default: 0.95)
+ beta2: 0.95
+
+ # (type: Optional[float], default: null)
+ max_norm:
+
+ # (type: float, default: 6e-05)
+ min_lr: 6.0e-05
+
+# Evaluation-related arguments. See ``litgpt.args.EvalArgs`` for details
+eval:
+
+ # Number of optimizer steps between evaluation calls (type: int, default: 100)
+ interval: 100
+
+ # Number of tokens to generate (type: Optional[int], default: 100)
+ max_new_tokens: 100
+
+ # Number of iterations (type: int, default: 100)
+ max_iters: 100
+
+# The name of the logger to send metrics to. (type: Literal['wandb', 'tensorboard', 'csv'], default: csv)
+logger_name: csv
+
+# The random seed to use for reproducibility. (type: int, default: 1337)
+seed: 1337
+```
+
+
+
+ ✅ Override any parameter in the CLI:
+
+```bash
+litgpt finetune \
+ --config https://raw.githubusercontent.com/Lightning-AI/litgpt/main/config_hub/finetune/llama-2-7b/lora.yaml \
+ --lora_r 4
+```
+
+
+
+
+----
+
+# Project highlights
+
+LitGPT powers many great AI projects, initiatives, challenges and of course enterprises. Please submit a pull request to be considered for a feature.
+
+
+ 📊 SAMBA: Simple Hybrid State Space Models for Efficient Unlimited Context Language Modeling
+
+The [Samba](https://github.com/microsoft/Samba) project by researchers at Microsoft is built on top of the LitGPT code base and combines state space models with sliding window attention, which outperforms pure state space models.
+
+
+
+
+ 🏆 NeurIPS 2023 Large Language Model Efficiency Challenge: 1 LLM + 1 GPU + 1 Day
+
+The LitGPT repository was the official starter kit for the [NeurIPS 2023 LLM Efficiency Challenge](https://llm-efficiency-challenge.github.io), which is a competition focused on finetuning an existing non-instruction tuned LLM for 24 hours on a single GPU.
+
+
+
+
+ 🦙 TinyLlama: An Open-Source Small Language Model
+
+
+LitGPT powered the [TinyLlama project](https://github.com/jzhang38/TinyLlama) and [TinyLlama: An Open-Source Small Language Model](https://arxiv.org/abs/2401.02385) research paper.
+
+
+
+
+ 🍪 MicroLlama: MicroLlama-300M
+
+[MicroLlama](https://github.com/keeeeenw/MicroLlama) is a 300M Llama model pretrained on 50B tokens powered by TinyLlama and LitGPT.
+
+
+
+ 🔬 Pre-training Small Base LMs with Fewer Tokens
+
+The research paper ["Pre-training Small Base LMs with Fewer Tokens"](https://arxiv.org/abs/2404.08634), which utilizes LitGPT, develops smaller base language models by inheriting a few transformer blocks from larger models and training on a tiny fraction of the data used by the larger models. It demonstrates that these smaller models can perform comparably to larger models despite using significantly less training data and resources.
+
+
+
+
+
+----
+
+# Community
+
+We welcome all individual contributors, regardless of their level of experience or hardware. Your contributions are valuable, and we are excited to see what you can accomplish in this collaborative and supportive environment.
+
+- [Request a feature](https://github.com/Lightning-AI/litgpt/issues)
+- [Submit your first contribution](https://lightning.ai/pages/community/tutorial/how-to-contribute-to-litgpt/)
+- [Join our Discord](https://discord.gg/VptPCZkGNa)
+
+
+
+# Tutorials
+
+🚀 [Get started](tutorials/0_to_litgpt.md)
+⚡️ [Finetuning, incl. LoRA, QLoRA, and Adapters](tutorials/finetune.md)
+🤖 [Pretraining](tutorials/pretrain.md)
+💬 [Model evaluation](tutorials/evaluation.md)
+📘 [Supported and custom datasets](tutorials/prepare_dataset.md)
+🧹 [Quantization](tutorials/quantize.md)
+🤯 [Tips for dealing with out-of-memory (OOM) errors](tutorials/oom.md)
+🧑🏽💻 [Using cloud TPUs](extensions/xla)
+
+
+
+----
+
+### Acknowledgments
+
+This implementation extends on [Lit-LLaMA](https://github.com/lightning-AI/lit-llama) and [nanoGPT](https://github.com/karpathy/nanoGPT), and it's **powered by [Lightning Fabric](https://lightning.ai/docs/fabric/stable/) ⚡**.
+
+- [@karpathy](https://github.com/karpathy) for [nanoGPT](https://github.com/karpathy/nanoGPT)
+- [@EleutherAI](https://github.com/EleutherAI) for [GPT-NeoX](https://github.com/EleutherAI/gpt-neox) and the [Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness)
+- [@TimDettmers](https://github.com/TimDettmers) for [bitsandbytes](https://github.com/TimDettmers/bitsandbytes)
+- [@Microsoft](https://github.com/microsoft) for [LoRA](https://github.com/microsoft/LoRA)
+- [@tridao](https://github.com/tridao) for [Flash Attention 2](https://github.com/Dao-AILab/flash-attention)
+
+### License
+
+LitGPT is released under the [Apache 2.0](https://github.com/Lightning-AI/litgpt/blob/main/LICENSE) license.
+
+### Citation
+
+If you use LitGPT in your research, please cite the following work:
+
+```bibtex
+@misc{litgpt-2023,
+ author = {Lightning AI},
+ title = {LitGPT},
+ howpublished = {\url{https://github.com/Lightning-AI/litgpt}},
+ year = {2023},
+}
+```
+
+
diff --git a/litgpt.egg-info/SOURCES.txt b/litgpt.egg-info/SOURCES.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2bfaeb5b013c45ee665a7e2a99feed8cdffe9116
--- /dev/null
+++ b/litgpt.egg-info/SOURCES.txt
@@ -0,0 +1,89 @@
+LICENSE
+README.md
+pyproject.toml
+litgpt/__init__.py
+litgpt/__main__.py
+litgpt/adapter.py
+litgpt/adapter_v2.py
+litgpt/api.py
+litgpt/args.py
+litgpt/config.py
+litgpt/lora.py
+litgpt/model.py
+litgpt/pretrain.py
+litgpt/prompts.py
+litgpt/tokenizer.py
+litgpt/utils.py
+litgpt.egg-info/PKG-INFO
+litgpt.egg-info/SOURCES.txt
+litgpt.egg-info/dependency_links.txt
+litgpt.egg-info/entry_points.txt
+litgpt.egg-info/requires.txt
+litgpt.egg-info/top_level.txt
+litgpt/chat/__init__.py
+litgpt/chat/base.py
+litgpt/data/__init__.py
+litgpt/data/alpaca.py
+litgpt/data/alpaca_2k.py
+litgpt/data/alpaca_gpt4.py
+litgpt/data/base.py
+litgpt/data/deita.py
+litgpt/data/flan.py
+litgpt/data/json_data.py
+litgpt/data/lima.py
+litgpt/data/lit_data.py
+litgpt/data/longform.py
+litgpt/data/microllama.py
+litgpt/data/openwebtext.py
+litgpt/data/prepare_slimpajama.py
+litgpt/data/prepare_starcoder.py
+litgpt/data/text_files.py
+litgpt/data/tinyllama.py
+litgpt/data/tinystories.py
+litgpt/deploy/__init__.py
+litgpt/deploy/serve.py
+litgpt/eval/evaluate.py
+litgpt/finetune/__init__.py
+litgpt/finetune/adapter.py
+litgpt/finetune/adapter_v2.py
+litgpt/finetune/full.py
+litgpt/finetune/lora.py
+litgpt/generate/__init__.py
+litgpt/generate/adapter.py
+litgpt/generate/adapter_v2.py
+litgpt/generate/base.py
+litgpt/generate/full.py
+litgpt/generate/sequentially.py
+litgpt/generate/speculative_decoding.py
+litgpt/generate/tp.py
+litgpt/scripts/__init__.py
+litgpt/scripts/convert_hf_checkpoint.py
+litgpt/scripts/convert_lit_checkpoint.py
+litgpt/scripts/convert_pretrained_checkpoint.py
+litgpt/scripts/download.py
+litgpt/scripts/merge_lora.py
+tests/test_adapter.py
+tests/test_adapter_v2.py
+tests/test_api.py
+tests/test_args.py
+tests/test_batch.py
+tests/test_chat.py
+tests/test_ci.py
+tests/test_cli.py
+tests/test_config.py
+tests/test_config_hub.py
+tests/test_distributed.py
+tests/test_evaluate.py
+tests/test_full.py
+tests/test_generate_speculatively.py
+tests/test_lora.py
+tests/test_merge_lora.py
+tests/test_model.py
+tests/test_pretrain.py
+tests/test_prompts.py
+tests/test_readme.py
+tests/test_rope.py
+tests/test_serve.py
+tests/test_tokenizer.py
+tests/test_trainer_support.py
+tests/test_utils.py
\ No newline at end of file
diff --git a/litgpt.egg-info/dependency_links.txt b/litgpt.egg-info/dependency_links.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/litgpt.egg-info/dependency_links.txt
@@ -0,0 +1 @@
+
diff --git a/litgpt.egg-info/entry_points.txt b/litgpt.egg-info/entry_points.txt
new file mode 100644
index 0000000000000000000000000000000000000000..cc0f6b344212fa3699ceac6d35049007919c71bb
--- /dev/null
+++ b/litgpt.egg-info/entry_points.txt
@@ -0,0 +1,2 @@
+[console_scripts]
+litgpt = litgpt.__main__:main
diff --git a/litgpt.egg-info/requires.txt b/litgpt.egg-info/requires.txt
new file mode 100644
index 0000000000000000000000000000000000000000..83d4545190cb687d4c6848c502a50d438e2e8a36
--- /dev/null
+++ b/litgpt.egg-info/requires.txt
@@ -0,0 +1,51 @@
+huggingface-hub<0.33,>=0.23.5
+lightning>=2.5
+psutil==7
+safetensors>=0.4.3
+tokenizers>=0.15.2
+torch>=2.5
+tqdm>=4.66
+
+[:python_version <= "3.9"]
+jsonargparse[signatures]<=4.32.1,>=4.30.1
+
+[:python_version > "3.9"]
+jsonargparse[signatures]>=4.37
+
+[compiler]
+
+[compiler:python_version >= "3.10" and sys_platform == "linux"]
+lightning-thunder>=0.2.0.dev20250119
+
+[extra]
+datasets<4,>=2.18
+huggingface-hub[hf-transfer]>=0.21
+litdata==0.2.51
+litserve>0.2
+lm-eval>=0.4.2
+pandas>=1.9
+pyarrow>=15.0.2
+requests>=2.31
+sentencepiece>=0.2
+tensorboard>=2.14
+torchmetrics>=1.3.1
+transformers<4.52,>=4.51.3
+zstandard>=0.22
+
+[extra:sys_platform != "win32"]
+uvloop>=0.2
+
+[extra:sys_platform == "darwin"]
+bitsandbytes<0.43,>=0.42
+
+[extra:sys_platform == "linux" or sys_platform == "win32"]
+bitsandbytes<0.45.5,>=0.45.2
+
+[test]
+einops>=0.7
+protobuf>=4.23.4
+pytest>=8.1.1
+pytest-benchmark>=5.1
+pytest-dependency>=0.6
+pytest-rerunfailures>=14
+pytest-timeout>=2.3.1
diff --git a/litgpt.egg-info/top_level.txt b/litgpt.egg-info/top_level.txt
new file mode 100644
index 0000000000000000000000000000000000000000..52fb5d563e5764c2a4bcaf01a455c41e0468ef13
--- /dev/null
+++ b/litgpt.egg-info/top_level.txt
@@ -0,0 +1 @@
+litgpt
diff --git a/litgpt/__init__.py b/litgpt/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..6c8dc3d8206e7d92b9bbe051757645fb3c88acb3
--- /dev/null
+++ b/litgpt/__init__.py
@@ -0,0 +1,20 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import logging
+import re
+
+from litgpt.api import LLM
+from litgpt.config import Config
+from litgpt.model import GPT # needs to be imported before config
+from litgpt.prompts import PromptStyle
+from litgpt.tokenizer import Tokenizer
+
+# Suppress excessive warnings, see https://github.com/pytorch/pytorch/issues/111632
+pattern = re.compile(".*Profiler function .* will be ignored")
+logging.getLogger("torch._dynamo.variables.torch").addFilter(lambda record: not pattern.search(record.getMessage()))
+
+# Avoid printing state-dict profiling output at the WARNING level when saving a checkpoint
+logging.getLogger("torch.distributed.fsdp._optim_utils").disabled = True
+logging.getLogger("torch.distributed.fsdp._debug_utils").disabled = True
+
+__all__ = ["LLM", "GPT", "Config", "PromptStyle", "Tokenizer"]
diff --git a/litgpt/__main__.py b/litgpt/__main__.py
new file mode 100644
index 0000000000000000000000000000000000000000..3b045473bd405629738c84975979f9ec29a7a8a5
--- /dev/null
+++ b/litgpt/__main__.py
@@ -0,0 +1,75 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import warnings
+
+import torch
+from jsonargparse import CLI, set_config_read_mode, set_docstring_parse_options
+
+from litgpt.chat.base import main as chat_fn
+from litgpt.deploy.serve import run_server as serve_fn
+from litgpt.eval.evaluate import convert_and_evaluate as evaluate_fn
+from litgpt.finetune.adapter import setup as finetune_adapter_fn
+from litgpt.finetune.adapter_v2 import setup as finetune_adapter_v2_fn
+from litgpt.finetune.full import setup as finetune_full_fn
+from litgpt.finetune.lora import setup as finetune_lora_fn
+from litgpt.generate.adapter import main as generate_adapter_fn
+from litgpt.generate.adapter_v2 import main as generate_adapter_v2_fn
+from litgpt.generate.base import main as generate_base_fn
+from litgpt.generate.full import main as generate_full_fn
+from litgpt.generate.sequentially import main as generate_sequentially_fn
+from litgpt.generate.speculative_decoding import main as generate_speculatively_fn
+from litgpt.generate.tp import main as generate_tp_fn
+from litgpt.pretrain import setup as pretrain_fn
+from litgpt.perplexity import setup as perplexity_fn
+from litgpt.scripts.convert_hf_checkpoint import convert_hf_checkpoint as convert_hf_checkpoint_fn
+from litgpt.scripts.convert_lit_checkpoint import convert_lit_checkpoint as convert_lit_checkpoint_fn
+from litgpt.scripts.convert_pretrained_checkpoint import (
+ convert_pretrained_checkpoint as convert_pretrained_checkpoint_fn,
+)
+from litgpt.scripts.download import download_from_hub as download_fn
+from litgpt.scripts.merge_lora import merge_lora as merge_lora_fn
+
+
+def main() -> None:
+ parser_data = {
+ "download": download_fn,
+ "chat": chat_fn,
+ "finetune": finetune_lora_fn,
+ "finetune_lora": finetune_lora_fn,
+ "finetune_full": finetune_full_fn,
+ "finetune_adapter": finetune_adapter_fn,
+ "finetune_adapter_v2": finetune_adapter_v2_fn,
+ "pretrain": pretrain_fn,
+ "perplexity": perplexity_fn,
+ "generate": generate_base_fn,
+ "generate_full": generate_full_fn,
+ "generate_adapter": generate_adapter_fn,
+ "generate_adapter_v2": generate_adapter_v2_fn,
+ "generate_sequentially": generate_sequentially_fn,
+ "generate_speculatively": generate_speculatively_fn,
+ "generate_tp": generate_tp_fn,
+ "convert_to_litgpt": convert_hf_checkpoint_fn,
+ "convert_from_litgpt": convert_lit_checkpoint_fn,
+ "convert_pretrained_checkpoint": convert_pretrained_checkpoint_fn,
+ "merge_lora": merge_lora_fn,
+ "evaluate": evaluate_fn,
+ "serve": serve_fn,
+ }
+
+ set_docstring_parse_options(attribute_docstrings=True)
+ set_config_read_mode(urls_enabled=True)
+
+ # PyTorch bug that raises a false-positive warning
+ # More info: https://github.com/Lightning-AI/litgpt/issues/1561
+ warning_message = r"The epoch parameter in `scheduler.step\(\)` was not necessary and is being deprecated.*"
+
+ warnings.filterwarnings(
+ action="ignore", message=warning_message, category=UserWarning, module=r".*torch\.optim\.lr_scheduler.*"
+ )
+
+ torch.set_float32_matmul_precision("high")
+ CLI(parser_data)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/litgpt/adapter.py b/litgpt/adapter.py
new file mode 100644
index 0000000000000000000000000000000000000000..5297df4eb354f5c9f6c8b5ddd494c78030bad3c4
--- /dev/null
+++ b/litgpt/adapter.py
@@ -0,0 +1,129 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+"""Implementation of the paper:
+
+LLaMA-Adapter: Efficient Fine-tuning of Language Models with Zero-init Attention
+https://arxiv.org/abs/2303.16199
+
+Port for LitGPT
+"""
+
+from dataclasses import dataclass
+from typing import Any, Dict, Optional, Tuple
+
+import torch
+import torch.nn as nn
+from typing_extensions import Self
+
+from litgpt.config import Config as BaseConfig
+from litgpt.model import GPT as BaseModel
+from litgpt.model import Block as BaseBlock
+from litgpt.model import CausalSelfAttention as BaseCausalSelfAttention
+
+
+@dataclass
+class Config(BaseConfig):
+ adapter_prompt_length: int = 10
+ adapter_start_layer: int = 2
+
+
+class GPT(BaseModel):
+ # Copy & paste from :class:`model.GPT`. Note that :class:`Block` is new here.
+ def __init__(self, config: Config) -> None:
+ nn.Module.__init__(self)
+ assert config.padded_vocab_size is not None
+ self.config = config
+
+ self.lm_head = nn.Linear(config.n_embd, config.padded_vocab_size, bias=config.lm_head_bias)
+ self.transformer = nn.ModuleDict(
+ dict(
+ wte=nn.Embedding(config.padded_vocab_size, config.n_embd),
+ h=nn.ModuleList(Block(config, block_idx) for block_idx in range(config.n_layer)),
+ ln_f=config.norm_class(config.n_embd, eps=config.norm_eps),
+ )
+ )
+ self.mask_cache: Optional[torch.Tensor] = None
+ self.max_seq_length = self.config.block_size
+
+ @classmethod
+ def from_name(cls, name: str, **kwargs: Any) -> Self:
+ return cls(Config.from_name(name, **kwargs))
+
+ def _init_weights(self, module: nn.Module) -> None:
+ """Meant to be used with `gpt.apply(gpt._init_weights)`. Unused method left for completeness."""
+ super()._init_weights(module)
+ if isinstance(module, CausalSelfAttention):
+ module.reset_parameters()
+
+
+class Block(BaseBlock):
+ def __init__(self, config: Config, block_idx: int) -> None:
+ super().__init__(config, block_idx)
+ self.attn = CausalSelfAttention(config, block_idx)
+
+
+class CausalSelfAttention(BaseCausalSelfAttention):
+ """A modification of `litgpt.model.CausalSelfAttention` that adds the attention
+ over the adaption prompt."""
+
+ def __init__(self, config: Config, block_idx: int) -> None:
+ super().__init__(config, block_idx)
+ if block_idx >= config.adapter_start_layer:
+ # adapter embedding layer
+ self.adapter_wte = nn.Embedding(config.adapter_prompt_length, config.n_embd)
+ # gate for adaption
+ self.gating_factor = torch.nn.Parameter(torch.zeros(1, 1, config.n_head, 1))
+ # kv cache for inference
+ self.adapter_kv_cache: Optional[Tuple[torch.Tensor, torch.Tensor]] = None
+
+ def scaled_dot_product_attention(
+ self, q: torch.Tensor, k: torch.Tensor, v: torch.Tensor, mask: Optional[torch.Tensor] = None
+ ) -> torch.Tensor:
+ y = super().scaled_dot_product_attention(q, k, v, mask)
+ if self.block_idx < self.config.adapter_start_layer:
+ return y
+
+ aT = self.config.adapter_prompt_length
+ if self.adapter_kv_cache is not None:
+ # since this uses the wte weights as the prefix and the kv cache is only used during inference, ak and av
+ # are the same every call
+ ak, av = self.adapter_kv_cache
+ else:
+ prefix = self.adapter_wte.weight.reshape(1, aT, self.config.n_embd)
+ aqkv = self.qkv(prefix)
+ q_per_kv = self.config.n_head // self.config.n_query_groups
+ aqkv = aqkv.view(1, aT, self.config.n_query_groups, q_per_kv + 2, self.config.head_size)
+ aqkv = aqkv.permute(0, 2, 3, 1, 4)
+ _, ak, av = aqkv.split((q_per_kv, 1, 1), dim=2)
+ if self.config.n_query_groups != 1:
+ # for MHA this is a no-op
+ ak = ak.repeat_interleave(q_per_kv, dim=2)
+ av = av.repeat_interleave(q_per_kv, dim=2)
+ ak = ak.view(1, -1, aT, self.config.head_size) # (1, nh_ak, aT, hs)
+ av = av.view(1, -1, aT, self.config.head_size) # (1, nh_av, aT, hs)
+ self.adapter_kv_cache = (ak, av)
+
+ T = q.size(2)
+ amask = torch.ones(T, aT, dtype=torch.bool, device=q.device)
+ ay = super().scaled_dot_product_attention(q, ak, av, amask)
+ return y + self.gating_factor * ay
+
+ def reset_parameters(self) -> None:
+ if hasattr(self, "gating_factor"):
+ torch.nn.init.zeros_(self.gating_factor)
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with older checkpoints."""
+ if (key := prefix + "gating_factor") in state_dict and state_dict[key].size(1) == self.config.n_head:
+ state_dict[key] = state_dict[key].permute(0, 2, 1, 3)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+def mark_only_adapter_as_trainable(model: GPT) -> None:
+ """Sets `requires_grad=False` for all non-adapter weights."""
+ for name, param in model.named_parameters():
+ param.requires_grad = adapter_filter(name, param)
+
+
+def adapter_filter(key: str, value: Any) -> bool:
+ return "adapter_wte" in key or "gating_factor" in key
diff --git a/litgpt/adapter_v2.py b/litgpt/adapter_v2.py
new file mode 100644
index 0000000000000000000000000000000000000000..fb4d12ae08b2f9a9adc7268a503e800d0c321219
--- /dev/null
+++ b/litgpt/adapter_v2.py
@@ -0,0 +1,210 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+"""Implementation of the paper:
+
+LLaMA-Adapter V2: Parameter-Efficient Visual Instruction Model
+https://arxiv.org/abs/2304.15010
+
+Port for LitGPT
+"""
+
+from dataclasses import dataclass
+from typing import Any, Dict, Optional, Type
+
+import torch
+import torch.nn as nn
+from typing_extensions import Self
+
+import litgpt
+from litgpt.adapter import GPT as BaseModel
+from litgpt.adapter import CausalSelfAttention as BaseCausalSelfAttention
+from litgpt.adapter import Config as BaseConfig
+from litgpt.model import Block as BaseBlock
+from litgpt.scripts.convert_hf_checkpoint import qkv_reassemble
+from litgpt.utils import map_old_state_dict_weights
+
+
+@dataclass
+class Config(BaseConfig):
+ @property
+ def mlp_class(self) -> Type:
+ return getattr(litgpt.adapter_v2, self.mlp_class_name)
+
+
+def adapter_filter(key: str, value: Any) -> bool:
+ adapter_substrings = (
+ # regular adapter v1 parameters
+ "adapter_wte",
+ "gating_factor",
+ # adapter v2: new bias and scale used in Linear
+ "adapter_scale",
+ "adapter_bias",
+ # adapter v2: Norm parameters are now trainable
+ "norm_1",
+ "norm_2",
+ "ln_f",
+ )
+ return any(s in key for s in adapter_substrings)
+
+
+class AdapterV2Linear(torch.nn.Module):
+ def __init__(self, in_features: int, out_features: int, **kwargs) -> None:
+ super().__init__()
+ self.linear = torch.nn.Linear(in_features, out_features, **kwargs)
+ self.adapter_bias = torch.nn.Parameter(torch.zeros(out_features), requires_grad=False)
+ self.adapter_scale = torch.nn.Parameter(torch.ones(out_features), requires_grad=False)
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ return self.adapter_scale * (self.linear(x) + self.adapter_bias)
+
+ def reset_parameters(self) -> None:
+ nn.init.zeros_(self.adapter_bias)
+ nn.init.ones_(self.adapter_scale)
+
+
+class GPT(BaseModel):
+ # Copy & paste from :class:`model.GPT`. Note that :class:`Block` is new here.
+ def __init__(self, config: Config) -> None:
+ nn.Module.__init__(self)
+ assert config.padded_vocab_size is not None
+ self.config = config
+
+ self.lm_head = AdapterV2Linear(config.n_embd, config.padded_vocab_size, bias=config.lm_head_bias)
+ self.transformer = nn.ModuleDict(
+ dict(
+ wte=nn.Embedding(config.padded_vocab_size, config.n_embd),
+ h=nn.ModuleList(Block(config, block_idx) for block_idx in range(config.n_layer)),
+ ln_f=config.norm_class(config.n_embd, eps=config.norm_eps),
+ )
+ )
+ self.mask_cache: Optional[torch.Tensor] = None
+ self.max_seq_length = self.config.block_size
+
+ @classmethod
+ def from_name(cls, name: str, **kwargs: Any) -> Self:
+ return cls(Config.from_name(name, **kwargs))
+
+ def _init_weights(self, module: nn.Module) -> None:
+ """Meant to be used with `gpt.apply(gpt._init_weights)`. Unused method left for completeness."""
+ super()._init_weights(module)
+ if isinstance(module, AdapterV2Linear):
+ module.reset_parameters()
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {"lm_head.weight": "lm_head.linear.weight", "lm_head.bias": "lm_head.linear.bias"}
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class Block(BaseBlock):
+ def __init__(self, config: Config, block_idx: int) -> None:
+ super().__init__(config, block_idx)
+ self.attn = CausalSelfAttention(config, block_idx)
+ self.mlp = config.mlp_class(config)
+
+
+class CausalSelfAttention(BaseCausalSelfAttention):
+ """A modification of `litgpt.adapter.CausalSelfAttention` that uses the Adapter V2 Linear class"""
+
+ # Copy&paste from :class:`model.CausalSelfAttention`
+ def __init__(self, config: Config, block_idx: int) -> None:
+ super().__init__(config, block_idx)
+ # key, query, value projections for all heads, but in a batch
+ shape = (config.n_head + 2 * config.n_query_groups) * config.head_size
+ self.qkv = AdapterV2Linear(in_features=config.n_embd, out_features=shape, bias=config.bias or config.attn_bias)
+ # output projection
+ self.proj = AdapterV2Linear(config.head_size * config.n_head, config.n_embd, bias=config.bias)
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base and/or legacy checkpoints."""
+ mapping = {
+ "qkv.weight": "qkv.linear.weight",
+ "qkv.bias": "qkv.linear.bias",
+ "proj.weight": "proj.linear.weight",
+ "proj.bias": "proj.linear.bias",
+ }
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ # For compatibility with older checkpoints
+ if (key := prefix + "gating_factor") in state_dict and state_dict[key].size(1) == self.config.n_head:
+ state_dict[key] = state_dict[key].permute(0, 2, 1, 3)
+
+ for attr in ("weight", "bias"):
+ legacy_key = f"{prefix}attn.linear.{attr}"
+ current_key = f"{prefix}qkv.linear.{attr}"
+ if legacy_key in state_dict:
+ state_dict[current_key] = qkv_reassemble(state_dict.pop(legacy_key), self.config)
+
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class GptNeoxMLP(litgpt.model.GptNeoxMLP):
+ def __init__(self, config: Config) -> None:
+ nn.Module.__init__(self)
+ self.fc = AdapterV2Linear(config.n_embd, config.intermediate_size, bias=config.bias)
+ self.proj = AdapterV2Linear(config.intermediate_size, config.n_embd, bias=config.bias)
+ self.config = config
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {
+ "fc.weight": "fc.linear.weight",
+ "fc.bias": "fc.linear.bias",
+ "proj.weight": "proj.linear.weight",
+ "proj.bias": "proj.linear.bias",
+ }
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class LLaMAMLP(litgpt.model.LLaMAMLP):
+ def __init__(self, config: Config, intermediate_size: Optional[int] = None) -> None:
+ nn.Module.__init__(self)
+ self.intermediate_size = intermediate_size or config.intermediate_size
+ self.fc_1 = AdapterV2Linear(config.n_embd, self.intermediate_size, bias=config.bias)
+ self.fc_2 = AdapterV2Linear(config.n_embd, self.intermediate_size, bias=config.bias)
+ self.proj = AdapterV2Linear(self.intermediate_size, config.n_embd, bias=config.bias)
+ self.config = config
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {
+ "fc_1.weight": "fc_1.linear.weight",
+ "fc_1.bias": "fc_1.linear.bias",
+ "fc_2.weight": "fc_2.linear.weight",
+ "fc_2.bias": "fc_2.linear.bias",
+ "proj.weight": "proj.linear.weight",
+ "proj.bias": "proj.linear.bias",
+ }
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class GemmaMLP(LLaMAMLP):
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ x_fc_1 = self.fc_1(x)
+ x_fc_2 = self.fc_2(x)
+ x = torch.nn.functional.gelu(x_fc_1, approximate=self.config.gelu_approximate) * x_fc_2
+ return self.proj(x)
+
+
+class LLaMAMoE(litgpt.model.LLaMAMoE):
+ def __init__(self, config: Config) -> None:
+ nn.Module.__init__(self)
+ self.gate = AdapterV2Linear(config.n_embd, config.n_expert, bias=False)
+ self.experts = nn.ModuleList(
+ LLaMAMLP(config, intermediate_size=config.moe_intermediate_size) for _ in range(config.n_expert)
+ )
+ self.config = config
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {"gate.weight": "gate.linear.weight"}
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+def mark_only_adapter_v2_as_trainable(model: GPT) -> None:
+ """Sets requires_grad=False for all non-adapter weights"""
+ for name, param in model.named_parameters():
+ param.requires_grad = adapter_filter(name, param)
diff --git a/litgpt/api.py b/litgpt/api.py
new file mode 100644
index 0000000000000000000000000000000000000000..32cc1966032b64a2846056209b4e87b1a05b0669
--- /dev/null
+++ b/litgpt/api.py
@@ -0,0 +1,734 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+#
+# This file implements the LitGPT Python API
+import sys
+import time
+from pathlib import Path
+from typing import Any, Callable, List, Literal, Optional, Tuple, Union
+
+import lightning as L
+import numpy as np
+import torch
+from lightning.fabric.accelerators import CUDAAccelerator
+from lightning.fabric.plugins import BitsandbytesPrecision
+from tqdm import tqdm
+
+from litgpt.chat.base import generate as stream_generate_fn
+from litgpt.config import Config, name_to_config
+from litgpt.generate.base import generate as generate_fn
+from litgpt.generate.sequentially import sequential
+from litgpt.generate.tp import tensor_parallel
+from litgpt.model import GPT
+from litgpt.prompts import PromptStyle, has_prompt_style, load_prompt_style, save_prompt_style
+from litgpt.tokenizer import Tokenizer
+from litgpt.utils import (
+ auto_download_checkpoint,
+ check_file_size_on_cpu_and_warn,
+ check_nvlink_connectivity,
+ chunked_cross_entropy,
+ copy_config_files,
+ extend_checkpoint_dir,
+ get_default_supported_precision,
+ load_checkpoint,
+ save_config,
+)
+
+
+class LLM(torch.nn.Module):
+ def __init__(
+ self,
+ model: GPT,
+ preprocessor=None,
+ prompt_style: PromptStyle = None,
+ devices: Union[int, List[int]] = None,
+ config: Config = None,
+ checkpoint_dir: Path = None,
+ fabric: L.Fabric = None,
+ generate_strategy: Optional[Literal["sequential", "tensor_parallel"]] = None,
+ kv_cache_initialized: bool = False,
+ fixed_kv_cache_size: Union[int, Literal["max_model_supported"], None] = None,
+ ) -> None:
+ super().__init__()
+ self.model = model
+ self.preprocessor = preprocessor
+ self.devices = devices
+ self.prompt_style = prompt_style
+ self.config = config
+ self.checkpoint_dir = checkpoint_dir
+ self.fabric = fabric
+ self.generate_strategy = generate_strategy
+ self.kv_cache_initialized = kv_cache_initialized
+ self.fixed_kv_cache_size = fixed_kv_cache_size
+ self.prev_generated_seq_length = 0
+
+ """
+ LLM model class for inference, pretraining, and finetuning.
+
+ Example:
+ from litgpt.api import LLM
+
+ llm = LLM.load("microsoft/phi-2")
+ text = llm.generate("What do Llamas eat?", top_k=1)
+ print(text)
+ """
+
+ @property
+ def tokenizer(self):
+ return self.preprocessor.tokenizer
+
+ def state_dict(self, destination=None, prefix="", keep_vars=False):
+ return self.model.state_dict(destination=destination, prefix=prefix, keep_vars=keep_vars)
+
+ def load_state_dict(self, state_dict, strict=True):
+ return self.model.load_state_dict(state_dict, strict=strict)
+
+ def forward(
+ self,
+ input_ids: torch.Tensor,
+ target_ids: Optional[torch.Tensor] = None,
+ loss_fn: Optional[Callable[[torch.Tensor, torch.Tensor], torch.Tensor]] = None,
+ ) -> Union[torch.Tensor, Tuple[torch.Tensor, torch.Tensor]]:
+ logits = self.model(input_ids)
+ if target_ids is not None:
+ if loss_fn is None:
+ loss_fn = chunked_cross_entropy
+ loss = loss_fn(logits[..., :-1, :], target_ids[..., 1:])
+ return logits, loss
+ else:
+ return logits
+
+ def trainer_setup(self, trainer_ckpt: Optional[Path] = None) -> None:
+ """Initializes the model checkpoint for PyTorch Lightning Trainer contexts"""
+ self.model = GPT(self.config)
+
+ if trainer_ckpt is not None:
+ # strip the object name key from the state_dict
+ state_dict = torch.load(trainer_ckpt, weights_only=True)["state_dict"]
+ first_key = next(iter(state_dict))
+ prefix = first_key.split(".")[0] + "."
+ keys_to_modify = [key for key in state_dict if key.startswith(prefix)]
+ for key in keys_to_modify:
+ new_key = key.replace(prefix, "", 1)
+ state_dict[new_key] = state_dict.pop(key)
+
+ self.load_state_dict(state_dict, strict=True)
+
+ elif self.checkpoint_dir is not None:
+ state_dict = torch.load(self.checkpoint_dir / "lit_model.pth", weights_only=False)
+ self.load_state_dict(state_dict, strict=False)
+
+ else:
+ raise ValueError(
+ "No checkpoint found. Either provide a valid path via `trainer_ckpt` "
+ "or ensure that `self.checkpoint_dir` points to a folder containing a `lit_model.pth` weight file."
+ )
+
+ def save(self, out_dir: Optional[Path] = None, prompt_style: Optional[PromptStyle] = None) -> None:
+ out_dir = Path(out_dir)
+ save_path = out_dir / "lit_model.pth"
+ save_path.parent.mkdir(parents=True, exist_ok=True)
+
+ if prompt_style is None:
+ prompt_style = PromptStyle.from_config(self.config)
+ if self.fabric is None:
+ torch.save(self.state_dict(), save_path)
+ else:
+ self.fabric.save(save_path, self.state_dict())
+
+ if self.fabric is None or self.fabric.global_rank == 0:
+ # If initialization a model with random weights, the checkpoint dir can be none
+ if self.checkpoint_dir is not None:
+ copy_config_files(Path(self.checkpoint_dir), save_path.parent)
+ else:
+ save_config(self.config, out_dir)
+
+ save_prompt_style(prompt_style, save_path.parent)
+
+ @classmethod
+ def load(
+ cls,
+ model: str,
+ init: Optional[Literal["pretrained", "random"]] = "pretrained",
+ tokenizer_dir: Optional[Path] = None,
+ access_token: Optional[str] = None,
+ distribute: Optional[Literal["auto"]] = "auto",
+ ) -> "LLM":
+ """
+ Loads the LLM from a local directory or model hub.
+
+ Arguments
+ model: A local path to a directory containing the model weights or a valid model name.
+ You can get a list of valid model names via the `litgpt download list` command line argument.
+ init: If "pretrained" (default), downloads the model from the HF Hub if a local model can't be found at the `model`
+ directory name; otherwise loads the model from the local directory.
+ If "random", initializes the `model` with random weights.
+ tokenizer_dir: An optional tokenizer directory if `model` is not a checkpoint directory, or if a user
+ wants to use a different tokenizer instead.
+ access_token: Optional API token to access models with restrictions when using `init="pretrained"`.
+ distribute: If "auto" (default), initializes the model on a single GPU if available and otherwise on the CPU.
+ To have more control over the model distribution strategy and utilize multiple GPUs, you can set
+ `llm = LLM.load(..., distribute=None)` and call `llm.distribute(...)` manually.
+ """
+
+ allowed_init = {"pretrained", "random"}
+
+ if init == "pretrained":
+ checkpoint_dir = auto_download_checkpoint(
+ model_name=model, access_token=access_token, ignore_tokenizer_files=tokenizer_dir is not None
+ )
+ config = Config.from_file(checkpoint_dir / "model_config.yaml")
+
+ elif init == "random":
+ checkpoint_dir = None
+ try:
+ config = Config.from_name(model)
+ except ValueError:
+ print(f"Model name {model} is not supported.\n")
+ available_models = "\n".join(sorted(name_to_config))
+ print(f"Available values:\n{available_models}")
+ return
+
+ else:
+ raise ValueError(f"Invalid init option: {init}. Must be one of {allowed_init}")
+
+ torch.set_float32_matmul_precision("high")
+
+ if tokenizer_dir is not None:
+ tokenizer_dir = extend_checkpoint_dir(Path(tokenizer_dir))
+ tokenizer = Tokenizer(tokenizer_dir)
+ elif checkpoint_dir is not None:
+ tokenizer = Tokenizer(checkpoint_dir)
+ else:
+ raise ValueError("Provide a path to a tokenizer directory via the `tokenizer_dir` setting.")
+
+ if checkpoint_dir is not None:
+ prompt_style = (
+ load_prompt_style(checkpoint_dir)
+ if has_prompt_style(checkpoint_dir)
+ else PromptStyle.from_config(config)
+ )
+ else:
+ prompt_style = PromptStyle.from_config(config)
+
+ if distribute == "auto":
+ if torch.cuda.is_available():
+ accelerator = "cuda"
+ elif torch.backends.mps.is_available():
+ accelerator = "mps"
+ else:
+ accelerator = "cpu"
+
+ fabric = L.Fabric(
+ accelerator=accelerator,
+ devices=1,
+ precision=get_default_supported_precision(training=False),
+ )
+
+ with fabric.init_module(empty_init=False):
+ model = GPT(config)
+ model.eval()
+ preprocessor = Preprocessor(tokenizer, device=fabric.device)
+
+ if checkpoint_dir is not None:
+ checkpoint_path = checkpoint_dir / "lit_model.pth"
+ check_file_size_on_cpu_and_warn(checkpoint_path, fabric.device)
+ load_checkpoint(fabric, model, checkpoint_path)
+
+ model = fabric.setup_module(model)
+
+ else:
+ preprocessor = Preprocessor(tokenizer, device="cuda" if torch.cuda.is_available() else "cpu")
+ model = None
+ fabric = None
+
+ return cls(
+ model=model,
+ preprocessor=preprocessor,
+ prompt_style=prompt_style,
+ config=config,
+ checkpoint_dir=checkpoint_dir,
+ fabric=fabric,
+ generate_strategy=None,
+ kv_cache_initialized=False,
+ fixed_kv_cache_size=False,
+ )
+
+ def distribute(
+ self,
+ accelerator: Literal["cpu", "cuda", "auto"] = "auto",
+ devices: Union[int, Literal["auto"]] = "auto",
+ precision: Optional[Any] = None,
+ quantize: Optional[Literal["bnb.nf4", "bnb.nf4-dq", "bnb.fp4", "bnb.fp4-dq", "bnb.int8"]] = None,
+ generate_strategy: Optional[Literal["sequential", "tensor_parallel"]] = None,
+ fixed_kv_cache_size: Union[int, Literal["max_model_supported"], None] = None,
+ ) -> None:
+ """
+ Moves the model onto specified devices for single-GPU or multi-GPU inference
+
+ accelerator: Which device type to load the model on ("cpu", "gpu", "mps", "cuda", or "auto")
+ devices: The number of devices (1, 2, etc.) or "auto", which uses all available devices
+ quantize: Whether to quantize the model and using which method:
+ - bnb.nf4, bnb.nf4-dq, bnb.fp4, bnb.fp4-dq: 4-bit quantization from bitsandbytes
+ - bnb.int8: 8-bit quantization from bitsandbytes
+ for more details, see https://github.com/Lightning-AI/litgpt/blob/main/tutorials/quantize.md
+ precision: Indicates the Fabric precision setting to use.
+ For instance, "32-true", "16-mixed", "16-true", "bf16-mixed", "bf16-true".
+ For more details, see https://lightning.ai/docs/fabric/stable/api/fabric_args.html#precision
+ generate_strategy: Whether to use a sequential model generation strategy. The "sequential" settings allows running
+ models that wouldn't fit in a single card by partitioning the transformer blocks across
+ all devices and running them sequentially. Sequential generation may be slower but allows using larger models.
+ Note that sequential generation sets `fixed_kv_cache_size="max_model_supported"`. You can set it to a lower integer
+ value, `fixed_kv_cache_size=256` to reduce memory. The `fixed_kv_cache_size` value determines the maximum number
+ of tokens that can be returned via `llm.generate(...)`.
+ fixed_kv_cache_size: If set to an integer value or "max_model_supported" is set, the kv-cache won't be resized dynamically
+ during `llm.generate` calls. Use this setting if you plan to compile the model or use `generate_strategy="sequential`.
+ Note that the chosen `fixed_kv_cache_size` value determines the maximum number of tokens that can be returned in `llm.generate(...)`.
+ """
+
+ if self.checkpoint_dir is None:
+ raise NotImplementedError(
+ "The LLM was initialized with init='random' but .distribute() "
+ "currently only supports pretrained weights."
+ )
+
+ allowed_accelerators = {"cpu", "gpu", "cuda", "mps", "auto"}
+ if accelerator not in allowed_accelerators:
+ raise ValueError(f"Invalid accelerator: {accelerator}. Must be one of {allowed_accelerators}.")
+
+ if accelerator == "auto":
+ if torch.cuda.is_available():
+ accelerator = "cuda"
+ elif torch.backends.mps.is_available():
+ accelerator = "mps"
+ else:
+ accelerator = "cpu"
+
+ if generate_strategy in ("sequential", "tensor_parallel") and accelerator not in ("cuda", "gpu"):
+ raise NotImplementedError(
+ f"generate_strategy='{generate_strategy}' is only supported for accelerator='cuda'|'gpu'."
+ )
+
+ if devices == "auto":
+ if generate_strategy in ("sequential", "tensor_parallel"):
+ total_devices = CUDAAccelerator.auto_device_count()
+ else:
+ total_devices = 1
+ elif isinstance(devices, int) and accelerator == "cuda":
+ use_devices = calculate_number_of_devices(devices)
+ total_devices = CUDAAccelerator.auto_device_count()
+ if use_devices > total_devices:
+ raise ValueError(
+ f"You selected more devices ({use_devices}) than available in your system ({total_devices})."
+ )
+ else:
+ total_devices = use_devices
+
+ if total_devices > 1 and generate_strategy not in ("sequential", "tensor_parallel"):
+ raise NotImplementedError(
+ "Support for multiple devices is currently only implemented for generate_strategy='sequential'|'tensor_parallel'."
+ )
+ elif accelerator == "cpu" or accelerator == "mps":
+ total_devices = 1
+
+ else:
+ raise ValueError(f"devices argument must be an integer or 'auto', got {devices}")
+
+ print(f"Using {total_devices} device(s)", file=sys.stderr)
+
+ if precision is None:
+ precision = get_default_supported_precision(training=False)
+
+ print("Precision set", file=sys.stderr)
+
+ plugins = None
+ if quantize is not None and quantize.startswith("bnb."):
+ if "mixed" in precision:
+ raise ValueError("The combination of quantization and mixed precision is not supported.")
+ dtype = {"16-true": torch.float16, "bf16-true": torch.bfloat16, "32-true": torch.float32}[precision]
+ plugins = BitsandbytesPrecision(quantize[4:], dtype)
+ precision = None
+
+ # set "ddp" as the strategy for the launching functionality, but there's no data-parallelism
+ if generate_strategy != "tensor_parallel":
+ fabric = L.Fabric(
+ accelerator=accelerator,
+ devices=1, # Otherwise sequential wouldn't work, see litgpt/generate/sequentially.py
+ # devices=devices,
+ precision=precision,
+ plugins=plugins,
+ )
+ else:
+ fabric = L.Fabric(
+ accelerator=accelerator, devices=total_devices, strategy="ddp", precision=precision, plugins=plugins
+ )
+ if torch.cuda.is_available() and fabric.accelerator.auto_device_count() > 1:
+ check_nvlink_connectivity(fabric)
+ fabric.launch()
+
+ print("Fabric launched", file=sys.stderr)
+
+ self.kv_cache_initialized = False
+ if generate_strategy is None:
+ with fabric.init_module(empty_init=(total_devices > 1)):
+ model = GPT(self.config)
+ model.eval()
+
+ if self.checkpoint_dir is not None:
+ load_checkpoint(fabric, model, self.checkpoint_dir / "lit_model.pth")
+
+ model = fabric.setup_module(model)
+
+ if fixed_kv_cache_size is not None:
+ if fixed_kv_cache_size is None or fixed_kv_cache_size == "max_model_supported":
+ kv_cache_size = model.max_seq_length
+ else:
+ kv_cache_size = fixed_kv_cache_size
+ model.set_kv_cache(batch_size=1, max_seq_length=kv_cache_size, device=fabric.device)
+ self.kv_cache_initialized = True
+ self.fixed_kv_cache_size = fixed_kv_cache_size
+
+ elif generate_strategy in ("sequential", "tensor_parallel"):
+ with fabric.init_tensor(), torch.device("meta"):
+ model = GPT(self.config)
+ model.eval()
+
+ if generate_strategy == "sequential":
+ state_dict = torch.load(
+ str(self.checkpoint_dir / "lit_model.pth"), mmap=True, map_location="cpu", weights_only=False
+ )
+ model.load_state_dict(state_dict, assign=True)
+ model = fabric.setup_module(model, move_to_device=False)
+
+ if fixed_kv_cache_size is None:
+ fixed_kv_cache_size = "max_model_supported"
+ if fixed_kv_cache_size == "max_model_supported":
+ kv_cache_size = model.max_seq_length
+ else:
+ kv_cache_size = fixed_kv_cache_size
+
+ model = sequential(model, fabric.device, kv_cache_size, total_devices)
+ self.fixed_kv_cache_size = fixed_kv_cache_size
+
+ elif generate_strategy == "tensor_parallel":
+ if fabric.global_rank == 0:
+ pbar = tqdm(total=fabric.world_size, desc="Loading model weights")
+ for rank in range(fabric.world_size):
+ if fabric.global_rank == rank:
+ state_dict = torch.load(
+ str(self.checkpoint_dir / "lit_model.pth"),
+ mmap=True,
+ map_location="cpu",
+ weights_only=False,
+ )
+ model.load_state_dict(state_dict, assign=True)
+
+ # cannot use `.setup_module` because it will wrap with DDP
+ model = fabric._precision.convert_module(model)
+ model = tensor_parallel(fabric, model)
+
+ with fabric.init_tensor():
+ if fixed_kv_cache_size is None:
+ fixed_kv_cache_size = "max_model_supported"
+ if fixed_kv_cache_size == "max_model_supported":
+ kv_cache_size = model.max_seq_length
+ else:
+ kv_cache_size = fixed_kv_cache_size
+ model.max_seq_length = kv_cache_size
+ # the rope cache which is on meta device
+ model.cos, model.sin = model.rope_cache()
+ # enable the kv cache
+ model.set_kv_cache(batch_size=1)
+ model.eval()
+ model = fabric.to_device(model)
+
+ fabric.barrier()
+ if fabric.global_rank == 0:
+ pbar.update(1)
+
+ if fabric.global_rank == 0:
+ pbar.close()
+
+ self.kv_cache_initialized = True
+
+ else:
+ raise ValueError(f"Unsupported generate_strategy: {generate_strategy}")
+
+ self.model = model
+ self.fabric = fabric
+ self.preprocessor.device = fabric.device
+
+ @torch.inference_mode()
+ def generate(
+ self,
+ prompt: str,
+ sys_prompt: Optional[str] = None,
+ max_new_tokens: int = 50,
+ temperature: float = 1.0,
+ top_k: Optional[int] = None,
+ top_p: float = 1.0,
+ return_as_token_ids: bool = False,
+ stream: bool = False,
+ ) -> Union[str, torch.Tensor]:
+ """
+ Takes a conditioning sequence (prompt) as input and continues to generate as many tokens as requested.
+
+ Arguments:
+ model: The model to use.
+ prompt: The prompt string to use for generating the samples.
+ sys_prompt: The system prompt string to use for generating the samples.
+ The system prompt allows the user to provide additional instructions to shape all responses by providing additional context, behavioral guidelines, style, and constraints.
+ max_new_tokens: The maximum number of new tokens to return.
+ temperature: Scales the predicted logits by 1 / temperature.
+ top_k: If specified, only sample among the tokens with the k highest probabilities.
+ top_p: If specified, it represents the cumulative probability threshold to consider in the sampling process.
+ In top-p sampling, the next token is sampled from the highest probability tokens
+ whose cumulative probability exceeds the threshold `top_p`. When specified,
+ it must be `0 <= top_p <= 1`. Here, `top_p=0` is equivalent
+ to sampling the most probable token, while `top_p=1` samples from the whole distribution.
+ It can be used in conjunction with `top_k` and `temperature` with the following order
+ of application:
+
+ 1. `top_k` sampling
+ 2. `temperature` scaling
+ 3. `top_p` sampling
+
+ For more details, see https://arxiv.org/abs/1904.09751
+ or https://huyenchip.com/2024/01/16/sampling.html#top_p
+ return_as_token_ids: If True, returns the token IDs as a torch.Tensor. Otherwise, returns the decoded text as a string.
+ stream: If True, returns a generator that yields tokens as they are generated.
+ At the moment, this setting is slower and may use more memory than the non-streaming version.
+ We plan to resolve this in the future.
+ """
+ if self.model is None:
+ raise AttributeError(
+ "The model is not initialized yet; use the .distribute() "
+ "or .trainer_setup() method to initialize the model."
+ )
+ input_ids = self._text_to_token_ids(prompt, sys_prompt)
+ prompt_length = input_ids.size(0)
+ max_returned_tokens = prompt_length + max_new_tokens
+
+ if not self.kv_cache_initialized:
+ if self.fabric is not None:
+ device = self.fabric.device
+ else:
+ device = self.preprocessor.device
+ self.model.set_kv_cache(batch_size=1, max_seq_length=max_returned_tokens, device=device)
+ self.kv_cache_initialized = True
+
+ # Dynamically grow the kv cache size if necessary
+ if not self.fixed_kv_cache_size and self.prev_generated_seq_length < max_returned_tokens:
+ tmp_device = self.model.mask_cache.device
+ self.model.clear_kv_cache()
+ self.model.set_kv_cache(batch_size=1, max_seq_length=max_returned_tokens, device=tmp_device)
+
+ else:
+ for block in self.model.transformer.h:
+ block.attn.kv_cache.reset_parameters()
+
+ self.prev_generated_seq_length = max_returned_tokens
+ self.model.eval()
+
+ def iterator():
+ outputs = stream_generate_fn(
+ model=self.model,
+ prompt=input_ids,
+ max_returned_tokens=max_returned_tokens,
+ temperature=temperature,
+ top_k=top_k,
+ top_p=top_p,
+ stop_tokens=([self.preprocessor.tokenizer.eos_id],),
+ )
+ if return_as_token_ids:
+ yield from outputs
+ else:
+ for output in outputs:
+ yield self.preprocessor.decode(output)
+ return
+
+ if stream:
+ outputs = iterator()
+ else:
+ outputs = generate_fn(
+ model=self.model,
+ prompt=input_ids,
+ max_returned_tokens=max_returned_tokens,
+ temperature=temperature,
+ top_k=top_k,
+ top_p=top_p,
+ eos_id=self.preprocessor.tokenizer.eos_id,
+ include_prompt=False,
+ )
+
+ if stream:
+ return outputs
+ elif return_as_token_ids:
+ return outputs
+ else:
+ return self.preprocessor.decode(outputs)
+
+ def _text_to_token_ids(self, prompt: str, sys_prompt: Optional[str] = None) -> torch.Tensor:
+ """Utility method to convert a prompt text to token IDs"""
+ prompt = self.prompt_style.apply(prompt, sys_prompt=sys_prompt)
+ input_ids = self.preprocessor.encode(prompt)
+ return input_ids
+
+ def benchmark(self, num_iterations=1, **kwargs):
+ """
+ A wrapper around the .generate() method to calculate runtime performance.
+
+ Arguments:
+ num_iterations: How often the `.generate()` call is repeated.
+ kwargs: Keyword arguments that are passed to the .generate() method.
+ """
+ benchmark_dict = {}
+
+ for i in range(num_iterations):
+ time_to_first_token = None
+ t0 = time.perf_counter()
+ outputs = self.generate(**kwargs)
+
+ if kwargs.get("stream", False):
+ gen_outputs = []
+ for e in outputs:
+ if time_to_first_token is None:
+ t1 = time.perf_counter()
+ time_to_first_token = t1 - t0
+ gen_outputs.append(e)
+ outputs = "".join(gen_outputs)
+ else:
+ outputs = self.generate(
+ **kwargs,
+ )
+ benchmark_dict.setdefault("Seconds total", []).append(time.perf_counter() - t0)
+
+ benchmark_dict.setdefault("Seconds to first token", []).append(time_to_first_token)
+ tokens_generated = self.preprocessor.encode(outputs).size(0)
+ benchmark_dict.setdefault("Tokens generated", []).append(tokens_generated)
+ benchmark_dict.setdefault("Inference speed in tokens/sec", []).append(
+ benchmark_dict["Tokens generated"][-1] / benchmark_dict["Seconds total"][-1]
+ )
+ if self.fabric is not None and self.fabric.device.type == "cuda":
+ benchmark_dict.setdefault("Total GPU memory allocated in GB", []).append(
+ torch.cuda.max_memory_allocated() / 1e9
+ )
+
+ return outputs, benchmark_dict
+
+
+class Preprocessor:
+ """
+ Preprocessor class for tokenization and de-tokenization.
+ """
+
+ def __init__(self, tokenizer: Tokenizer, device: str = "cpu") -> None:
+ self.tokenizer = tokenizer
+ self.device = device
+
+ def encode(self, text: str) -> torch.Tensor:
+ return self.tokenizer.encode(text, device=self.device)
+
+ def decode(self, token_ids: torch.Tensor) -> str:
+ return self.tokenizer.decode(token_ids)
+
+
+def calculate_number_of_devices(devices):
+ """
+ Utility function to calculate the number of devices.
+ """
+ num_devices = devices if isinstance(devices, int) else len(devices) if isinstance(devices, list) else 0
+ return num_devices
+
+
+def benchmark_dict_to_markdown_table(data):
+ """
+ Converts .benchmark() outputs to a markdown table
+ """
+ markdown_table = (
+ "| Metric | Mean | Std Dev |\n"
+ )
+ markdown_table += (
+ "|-------------------------------------|-----------------------------|-----------------------------|\n"
+ )
+
+ for key, values in data.items():
+ mean_value = np.mean(values)
+ std_dev_value = np.std(values, ddof=1)
+
+ formatted_mean = f"{mean_value:.2f}"
+ formatted_std_dev = f"{std_dev_value:.2f}"
+
+ markdown_table += f"| {key.ljust(35)} | {formatted_mean.ljust(27)} | {formatted_std_dev.ljust(27)} |\n"
+
+ return markdown_table
+
+
+def pull_request_benchmark_util(model_name="microsoft/phi-2", num_iterations=6):
+ def print_table(header, data):
+ print(f"\n### {header}\n")
+ markdown_table = (
+ f"| Metric | First Iteration | "
+ f"Iter 2-{num_iterations} Mean | Iter 2-{num_iterations} Standard Dev. |\n"
+ f"|--------------------------------------|-----------------|"
+ f"-------------------|-------------------------|\n"
+ )
+
+ for key, value in data.items():
+ first_iteration = f"{value[0]:.2f}" if value[0] is not None else "N/A"
+ clean_values = [v for v in value[1:] if v is not None]
+
+ if clean_values:
+ mean_value = np.mean(clean_values)
+ std_dev_value = np.std(clean_values, ddof=1)
+ mean_str = f"{mean_value:.2f}"
+ std_dev_str = f"{std_dev_value:.2f}"
+ else:
+ mean_str = "N/A"
+ std_dev_str = "N/A"
+
+ markdown_table += f"| {key:<36} | {first_iteration:<15} | {mean_str:<17} | {std_dev_str:<23} |\n"
+ print(markdown_table)
+
+ import subprocess
+
+ try:
+ g_hash = subprocess.run(
+ ["git", "rev-parse", "--short", "HEAD"], capture_output=True, text=True, check=True
+ ).stdout.strip()
+ print(f"Git Commit Hash: {g_hash}")
+ except subprocess.CalledProcessError:
+ print("Git Commit Hash: N/A")
+ print(f"PyTorch version: {torch.__version__}")
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
+ print(f"Device: {device}\n")
+
+ # 1st table
+ llm = LLM.load(
+ model=model_name,
+ )
+ text, bench_d = llm.benchmark(num_iterations=num_iterations, prompt="What do llamas eat?", top_k=1)
+ print_table(f"Defaults ({model_name}), 1st time", bench_d)
+ del llm
+
+ # 2nd table
+ llm = LLM.load(
+ model=model_name,
+ )
+ text, bench_d = llm.benchmark(num_iterations=num_iterations, prompt="What do llamas eat?", top_k=1)
+ print_table(f"Defaults ({model_name}), 2nd time", bench_d)
+ del llm
+
+ # 3rd table
+ llm = LLM.load(
+ model=model_name,
+ )
+ text, bench_d = llm.benchmark(num_iterations=num_iterations, prompt="What do llamas eat?", top_k=1, stream=True)
+ print_table("stream=True", bench_d)
+ del llm
+
+ # 4th table
+ llm = LLM.load(model=model_name, distribute=None)
+ llm.distribute(fixed_kv_cache_size=500)
+
+ text, bench_d = llm.benchmark(num_iterations=num_iterations, prompt="What do llamas eat?", top_k=1, stream=True)
+ print_table("stream=True + fixed_kv_cache=500", bench_d)
diff --git a/litgpt/args.py b/litgpt/args.py
new file mode 100644
index 0000000000000000000000000000000000000000..ee0d99e2e600368cd11a9d5ae8c8831176e0d8df
--- /dev/null
+++ b/litgpt/args.py
@@ -0,0 +1,104 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import math
+import warnings
+from dataclasses import dataclass
+from typing import Optional, Union
+
+
+@dataclass
+class TrainArgs:
+ """Training-related arguments"""
+
+ save_interval: Optional[int] = 1000
+ """Number of optimizer steps between saving checkpoints"""
+ log_interval: int = 1
+ """Number of iterations between logging calls"""
+ global_batch_size: int = 64
+ """Number of samples between optimizer steps across data-parallel ranks"""
+ micro_batch_size: int = 4
+ """Number of samples per data-parallel rank"""
+ lr_warmup_steps: Optional[int] = 100
+ """Number of iterations with learning rate warmup active"""
+ lr_warmup_fraction: Optional[float] = None
+ """The fraction of an epoch to use for learning rate warmup"""
+ epochs: Optional[int] = None
+ """Number of epochs to train on"""
+ # TODO: `pretrain` is the only script using `max_tokens` explicitly. replace it with epoch_size*epochs?
+ max_tokens: Optional[int] = None
+ """Total number of tokens to train on"""
+ max_steps: Optional[int] = None
+ """Limits the number of optimizer steps to run"""
+ max_seq_length: Optional[int] = None
+ """Limits the length of samples"""
+ tie_embeddings: Optional[bool] = None
+ """Whether to tie the embedding weights with the language modeling head weights"""
+
+ # Optimization args
+ max_norm: Optional[float] = None
+ min_lr: float = 6e-5
+
+ def __post_init__(self) -> None:
+ if self.lr_warmup_fraction and self.lr_warmup_steps:
+ raise ValueError(
+ "Can't provide both `--train.lr_warmup_fraction` and `--train.lr_warmup_steps`. Choose one."
+ )
+ if self.lr_warmup_fraction and not (0 <= self.lr_warmup_fraction <= 1):
+ raise ValueError("`--train.lr_warmup_fraction` must be between 0 and 1.")
+
+ if self.lr_warmup_steps and self.max_steps and (self.lr_warmup_steps >= self.max_steps):
+ warnings.warn(
+ "`--train.lr_warmup_steps` should be less than `--train.max_steps`."
+ f" Got {self.lr_warmup_steps} lr_warmup_steps and {self.max_steps} max_steps.",
+ UserWarning,
+ )
+
+ def gradient_accumulation_iters(self, devices: int, num_nodes: int = 1) -> int:
+ """Number of iterations between gradient synchronizations"""
+ gradient_accumulation_iters = self.batch_size(devices, num_nodes) // self.micro_batch_size
+ assert gradient_accumulation_iters > 0
+ return gradient_accumulation_iters
+
+ def batch_size(self, devices: int, num_nodes: int = 1) -> int:
+ """Number of samples between optimizer steps per data-parallel rank"""
+ batch_size = self.global_batch_size // (devices * num_nodes)
+ assert batch_size > 0
+ return batch_size
+
+ def warmup_iters(self, devices: int, num_nodes: int, max_iters: int, train_dataloader) -> int:
+ """Number of iterations to warm up the learning rate."""
+ if self.lr_warmup_fraction:
+ return min(max_iters, math.ceil(self.lr_warmup_fraction * len(train_dataloader)))
+ if self.lr_warmup_steps:
+ return min(max_iters, self.lr_warmup_steps * self.gradient_accumulation_iters(devices, num_nodes))
+ return 0
+
+
+@dataclass
+class EvalArgs:
+ """Evaluation-related arguments"""
+
+ interval: int = 600
+ """Number of optimizer steps between evaluation calls"""
+ max_new_tokens: Optional[int] = None
+ """Number of tokens to generate"""
+ max_iters: int = 100
+ """Number of iterations"""
+ initial_validation: bool = False
+ """Whether to evaluate on the validation set at the beginning of the training"""
+ final_validation: bool = True
+ """Whether to evaluate on the validation set at the end of the training"""
+ evaluate_example: Union[str, int] = "first"
+ """How to pick an example instruction to evaluate periodically during training.
+ Can be "first", "random", or an integer index to pick a specific example."""
+
+
+@dataclass
+class LogArgs:
+ """Logging-related arguments"""
+
+ project: Optional[str] = None
+ """Project name"""
+ run: Optional[str] = None
+ """Run name"""
+ group: Optional[str] = None
+ """Group name"""
diff --git a/litgpt/config.py b/litgpt/config.py
new file mode 100644
index 0000000000000000000000000000000000000000..9398627f91dfd71dfe579a513e1c92fdbeca2521
--- /dev/null
+++ b/litgpt/config.py
@@ -0,0 +1,3087 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+from copy import deepcopy
+from dataclasses import dataclass, field
+from pathlib import Path
+from typing import Any, List, Literal, Optional, Type, Union
+
+import yaml
+from typing_extensions import Self
+
+
+def find_multiple(n: int, k: int) -> int:
+ """Utility function for finding the nearest value to n which is a multiple of k.
+
+ NOTE: We define this function in this module rather than `litgpt.utils` so that users can import
+ this file to do configuration manipulations in Python environments which do not include all the dependencies
+ demanded by `litgpt.utils`.
+ """
+ assert k > 0
+ if n % k == 0:
+ return n
+ return n + k - (n % k)
+
+
+@dataclass
+class Config:
+ name: str = ""
+ hf_config: dict = field(default_factory=dict)
+ # General size parameters
+ block_size: int = 4096
+ n_layer: int = 16
+ n_embd: int = 4096
+ vocab_size: int = 50254
+ padding_multiple: int = 512
+ padded_vocab_size: Optional[int] = None
+ # Transformer block (structure, normalizations)
+ norm_class_name: Literal["LayerNorm", "RMSNorm"] = "LayerNorm"
+ norm_eps: float = 1e-5
+ norm_qk: bool = False
+ norm_qk_type: Literal["default", "olmo2"] = "default"
+ post_attention_norm: bool = False
+ post_mlp_norm: bool = False
+ parallel_residual: bool = True
+ shared_attention_norm: bool = False
+ # Transformer block (self-attention)
+ n_head: int = 32
+ head_size: Optional[int] = None
+ # to use multi-head attention (MHA), set this to `n_head` (default)
+ # to use multi-query attention (MQA), set this to 1
+ # to use grouped-query attention (GQA), set this to a value in between
+ # Example with `n_head=4`
+ # ┌───┐┌───┐┌───┐┌───┐ ┌───┐ ┌───┐ ┌───┐
+ # │ v ││ v ││ v ││ v │ │ v │ │ v │ │ v │
+ # └───┘└───┘└───┘└───┘ └───┘ └───┘ └───┘
+ # │ │ │ │ │ │ │
+ # ┌───┐┌───┐┌───┐┌───┐ ┌───┐ ┌───┐ ┌───┐
+ # │ k ││ k ││ k ││ k │ │ k │ │ k │ │ k │
+ # └───┘└───┘└───┘└───┘ └───┘ └───┘ └───┘
+ # │ │ │ │ ┌──┴──┐ ┌──┴──┐ ┌────┬──┴─┬────┐
+ # ┌───┐┌───┐┌───┐┌───┐ ┌───┐┌───┐┌───┐┌───┐ ┌───┐┌───┐┌───┐┌───┐
+ # │ q ││ q ││ q ││ q │ │ q ││ q ││ q ││ q │ │ q ││ q ││ q ││ q │
+ # └───┘└───┘└───┘└───┘ └───┘└───┘└───┘└───┘ └───┘└───┘└───┘└───┘
+ # ◀──────────────────▶ ◀──────────────────▶ ◀──────────────────▶
+ # MHA GQA MQA
+ # n_query_groups=4 n_query_groups=2 n_query_groups=1
+ #
+ # credit https://arxiv.org/pdf/2305.13245.pdf
+ n_query_groups: Optional[int] = None
+ attn_bias: bool = False
+ attention_scores_scalar: Optional[int] = None
+ sliding_window_size: Optional[int] = None
+ sliding_window_indices: Optional[List] = None
+ # if `attention_logit_softcapping` is used, cannot use optimized
+ # `torch.nn.functional.scaled_dot_product_attention` (which implements
+ # Flash attention), may result in higher memory and runtime footprint.
+ attention_logit_softcapping: Optional[float] = None
+ # Rotary position embedding (RoPE)
+ rope_base: int = 10000
+ rotary_percentage: float = 0.25
+ rope_condense_ratio: int = 1
+ rope_adjustments: Optional[dict] = None
+ # Transformer block (MLP)
+ intermediate_size: Optional[int] = None
+ moe_intermediate_size: Optional[int] = None
+ bias: bool = True
+ mlp_class_name: Literal["GptNeoxMLP", "LLaMAMLP", "GemmaMLP", "LLaMAMoE"] = "GptNeoxMLP"
+ gelu_approximate: str = "none"
+ n_expert: int = 0
+ n_expert_per_token: int = 0
+ # GPT before/after blocks
+ scale_embeddings: bool = False
+ lm_head_bias: bool = False
+ final_logit_softcapping: Optional[float] = None
+ norm_1: bool = True
+ norm_2: bool = True
+ # The base period of the RoPE embeddings for local attention.
+ # If not provided, rope_theta will be used for both local and global attention.
+ rope_local_base_freq: Optional[float] = None
+ rope_indices: Optional[List] = None
+
+ def __post_init__(self):
+ if not self.name:
+ self.name = self.hf_config.get("name", self.name)
+
+ if self.head_size is None:
+ assert self.n_embd % self.n_head == 0
+ self.head_size = self.n_embd // self.n_head
+
+ # vocab size should be a power of 2 to be optimal on hardware. compute the closest value
+ if self.padded_vocab_size is None:
+ self.padded_vocab_size = find_multiple(self.vocab_size, self.padding_multiple)
+ else:
+ # vocab size shouldn't be larger than padded vocab size
+ self.vocab_size = min(self.vocab_size, self.padded_vocab_size)
+
+ # compute the number of query groups
+ if self.n_query_groups is not None:
+ assert self.n_head % self.n_query_groups == 0
+ else:
+ self.n_query_groups = self.n_head
+
+ # compute the intermediate size for MLP if not set
+ if self.intermediate_size is None:
+ if self.mlp_class_name == "LLaMAMLP":
+ raise ValueError(f"The config {self.name!r}, needs to set the `intermediate_size`")
+ self.intermediate_size = 4 * self.n_embd
+
+ self.rope_n_elem = int(self.rotary_percentage * self.head_size)
+
+ if self.sliding_window_size is not None and self.sliding_window_indices is None:
+ self.sliding_window_indices = [1] * self.n_layer
+
+ if self.rope_local_base_freq is not None and self.rope_indices is None:
+ self.rope_indices = [1] * self.n_layer
+
+ @classmethod
+ def from_name(cls, name: str, **kwargs: Any) -> Optional[Self]:
+ if name not in name_to_config:
+ # search through all `config['hf_config']['name']`
+ try:
+ conf_dict = next(
+ config
+ for config in configs
+ if name == config["hf_config"]["name"]
+ or config["hf_config"]["org"] + "/" + config["hf_config"]["name"] == name
+ )
+ except StopIteration:
+ raise ValueError(f"{name!r} is not a supported config name")
+ else:
+ conf_dict = name_to_config[name]
+
+ conf_dict = conf_dict.copy()
+ conf_dict.update(kwargs)
+ return cls(**conf_dict)
+
+ @classmethod
+ def from_file(cls, path: Union[str, Path], **kwargs: Any) -> Self:
+ with open(path, encoding="utf-8") as fp:
+ file_kwargs = yaml.safe_load(fp)
+ if file_kwargs is None:
+ raise ValueError(f"{path} is empty which is likely unexpected.")
+ file_kwargs.update(kwargs)
+ return cls(**file_kwargs)
+
+ @classmethod
+ def from_checkpoint(cls, path: Path, **kwargs: Any) -> Self:
+ """Automatically load `model_config.yaml` and if it doesn't exist - a matching config from `litgpt/config.py`."""
+ if (config_path := path / "model_config.yaml").is_file():
+ return cls.from_file(config_path, **kwargs)
+ if (model_name := path.name) in name_to_config:
+ return cls.from_name(model_name, **kwargs)
+ raise FileNotFoundError(f"For {str(path)!r} neither 'model_config.yaml' nor matching config exists.")
+
+ @property
+ def mlp_class(self) -> Type:
+ # `self.mlp_class_name` cannot be the type to keep the config serializable
+ import litgpt.model
+
+ return getattr(litgpt.model, self.mlp_class_name)
+
+ @property
+ def norm_class(self) -> Type:
+ # `self.norm_class_name` cannot be the type to keep the config serializable
+
+ from functools import partial
+
+ import torch # Torch import is lazy to make config loading faster
+
+ if self.norm_class_name == "RMSNorm":
+ from litgpt.model import RMSNorm
+
+ return partial(RMSNorm, add_unit_offset="Gemma" in self.name)
+
+ if self.norm_class_name == "LayerNorm" and "OLMo" in self.name:
+ # this makes it equivalent to `torch.nn.functional.layer_norm`
+ # that is used by OLMo
+ # Table 5 caption in the OLMo paper shows this - https://aclanthology.org/2024.acl-long.841
+ return partial(torch.nn.LayerNorm, elementwise_affine=False)
+
+ return getattr(torch.nn, self.norm_class_name)
+
+
+########################
+# Stability AI StableLM
+########################
+configs = [
+ # https://huggingface.co/stabilityai/stablelm-base-alpha-3b/blob/main/config.json
+ dict(name="stablelm-base-alpha-3b", hf_config=dict(org="stabilityai", name="stablelm-base-alpha-3b")),
+ # https://huggingface.co/stabilityai/stablelm-base-alpha-7b/blob/main/config.json
+ dict(
+ name="stablelm-base-alpha-7b",
+ hf_config=dict(org="stabilityai", name="stablelm-base-alpha-7b"),
+ n_head=48,
+ n_embd=6144,
+ padding_multiple=256,
+ ),
+ # https://huggingface.co/stabilityai/stablelm-tuned-alpha-3b/blob/main/config.json
+ dict(name="stablelm-tuned-alpha-3b", hf_config=dict(org="stabilityai", name="stablelm-tuned-alpha-3b"), n_head=32),
+ # https://huggingface.co/stabilityai/stablelm-tuned-alpha-7b/blob/main/config.json
+ dict(
+ name="stablelm-tuned-alpha-7b",
+ hf_config=dict(org="stabilityai", name="stablelm-tuned-alpha-7b"),
+ n_head=48,
+ n_embd=6144,
+ padding_multiple=256,
+ ),
+ # https://huggingface.co/stabilityai/stablelm-3b-4e1t/blob/main/config.json
+ dict(
+ name="stablelm-3b-4e1t",
+ hf_config=dict(org="stabilityai", name="stablelm-3b-4e1t"),
+ padded_vocab_size=50304,
+ n_layer=32,
+ n_head=32,
+ n_embd=2560,
+ parallel_residual=False,
+ bias=False,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=6912,
+ ),
+ # https://huggingface.co/stabilityai/stablelm-zephyr-3b/blob/main/config.json
+ dict(
+ name="stablelm-zephyr-3b",
+ hf_config=dict(org="stabilityai", name="stablelm-zephyr-3b"),
+ padded_vocab_size=50304,
+ n_layer=32,
+ n_head=32,
+ n_embd=2560,
+ parallel_residual=False,
+ bias=False,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=6912,
+ ),
+]
+
+
+##########################
+# Stability AI StableCode
+##########################
+stablecode = [
+ # https://huggingface.co/stabilityai/stablecode-completion-alpha-3b/blob/main/config.json
+ dict(
+ name="stablecode-completion-alpha-3b",
+ hf_config=dict(org="stabilityai", name="stablecode-completion-alpha-3b"),
+ block_size=16384,
+ vocab_size=49152,
+ n_layer=32,
+ n_embd=2560,
+ ),
+ # https://huggingface.co/stabilityai/stablecode-completion-alpha-3b-4k/blob/main/config.json
+ dict(
+ name="stablecode-completion-alpha-3b-4k",
+ hf_config=dict(org="stabilityai", name="stablecode-completion-alpha-3b-4k"),
+ vocab_size=49152,
+ n_layer=32,
+ n_embd=2560,
+ ),
+ # https://huggingface.co/stabilityai/stablecode-instruct-alpha-3b/blob/main/config.json
+ dict(
+ name="stablecode-instruct-alpha-3b",
+ hf_config=dict(org="stabilityai", name="stablecode-instruct-alpha-3b"),
+ vocab_size=49152,
+ n_layer=32,
+ n_embd=2560,
+ ),
+ # https://huggingface.co/stabilityai/stable-code-3b/blob/main/config.json
+ dict(
+ name="stable-code-3b",
+ hf_config=dict(org="stabilityai", name="stable-code-3b"),
+ padded_vocab_size=50304,
+ n_layer=32,
+ n_embd=2560,
+ block_size=16384,
+ parallel_residual=False,
+ bias=False,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=6912,
+ ),
+]
+configs.extend(stablecode)
+
+
+####################
+# EleutherAI Pythia
+####################
+pythia = [
+ # https://huggingface.co/EleutherAI/pythia-14m/blob/main/config.json
+ dict(
+ name="pythia-14m",
+ hf_config=dict(org="EleutherAI", name="pythia-14m"),
+ block_size=512,
+ n_layer=6,
+ n_embd=128,
+ n_head=4,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-31m/blob/main/config.json
+ dict(
+ name="pythia-31m",
+ hf_config=dict(org="EleutherAI", name="pythia-31m"),
+ block_size=1024,
+ n_layer=6,
+ n_embd=256,
+ n_head=8,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-70m/blob/main/config.json
+ dict(
+ name="pythia-70m",
+ hf_config=dict(org="EleutherAI", name="pythia-70m"),
+ block_size=2048,
+ n_layer=6,
+ n_embd=512,
+ n_head=8,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-160m/blob/main/config.json
+ dict(
+ name="pythia-160m",
+ hf_config=dict(org="EleutherAI", name="pythia-160m"),
+ block_size=2048,
+ n_layer=12,
+ n_embd=768,
+ n_head=12,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-410m/blob/main/config.json
+ dict(
+ name="pythia-410m",
+ hf_config=dict(org="EleutherAI", name="pythia-410m"),
+ block_size=2048,
+ n_layer=24,
+ n_embd=1024,
+ n_head=16,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-1b/blob/main/config.json
+ dict(
+ name="pythia-1b",
+ hf_config=dict(org="EleutherAI", name="pythia-1b"),
+ block_size=2048,
+ n_embd=2048,
+ n_head=8,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-1.4b/blob/main/config.json
+ dict(
+ name="pythia-1.4b",
+ hf_config=dict(org="EleutherAI", name="pythia-1.4b"),
+ block_size=2048,
+ n_layer=24,
+ n_embd=2048,
+ n_head=16,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-2.8b/blob/main/config.json
+ dict(
+ name="pythia-2.8b",
+ hf_config=dict(org="EleutherAI", name="pythia-2.8b"),
+ block_size=2048,
+ n_layer=32,
+ n_embd=2560,
+ padding_multiple=128,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-6.9b/blob/main/config.json
+ dict(
+ name="pythia-6.9b",
+ hf_config=dict(org="EleutherAI", name="pythia-6.9b"),
+ block_size=2048,
+ n_layer=32,
+ padding_multiple=256,
+ ),
+ # https://huggingface.co/EleutherAI/pythia-12b/blob/main/config.json
+ dict(
+ name="pythia-12b",
+ hf_config=dict(org="EleutherAI", name="pythia-12b"),
+ block_size=2048,
+ n_layer=36,
+ n_embd=5120,
+ n_head=40,
+ ),
+]
+configs.extend(pythia)
+for c in pythia:
+ # "pythia-14m" and "pythia-31m" don't have deduped version
+ if c["name"] in ("pythia-14m", "pythia-31m"):
+ continue
+ copy = deepcopy(c)
+ copy["name"] = f"{c['name']}-deduped"
+ copy["hf_config"]["name"] = f"{c['hf_config']['name']}-deduped"
+ configs.append(copy)
+
+
+#################
+# TII UAE Falcon
+#################
+falcon = [
+ # https://huggingface.co/tiiuae/falcon-7b/blob/main/config.json
+ dict(
+ name="falcon-7b{}",
+ hf_config=dict(org="tiiuae", name="falcon-7b{}"),
+ block_size=2048,
+ vocab_size=65024,
+ padded_vocab_size=65024,
+ n_layer=32,
+ n_head=71,
+ n_embd=4544,
+ rotary_percentage=1.0,
+ n_query_groups=1,
+ bias=False,
+ # this is not in the config, but in the original model implementation, only for this config
+ shared_attention_norm=True,
+ ),
+ # https://huggingface.co/tiiuae/falcon-40b/blob/main/config.json
+ dict(
+ name="falcon-40b{}",
+ hf_config=dict(org="tiiuae", name="falcon-40b{}"),
+ block_size=2048,
+ vocab_size=65024,
+ padded_vocab_size=65024,
+ n_layer=60,
+ n_head=128,
+ n_embd=8192,
+ rotary_percentage=1.0,
+ n_query_groups=8,
+ bias=False,
+ ),
+]
+for c in falcon:
+ for kind in ("", "-instruct"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+# https://huggingface.co/tiiuae/falcon-180b/blob/main/config.json
+falcon180b = dict(
+ name="falcon-180B{}",
+ hf_config=dict(org="tiiuae", name="falcon-180B{}"),
+ block_size=2048,
+ vocab_size=65024,
+ padded_vocab_size=65024,
+ n_layer=80,
+ n_head=232,
+ n_embd=14848,
+ rotary_percentage=1.0,
+ n_query_groups=8,
+ bias=False,
+)
+
+for kind in ("", "-chat"):
+ copy = deepcopy(falcon180b)
+ copy["name"] = falcon180b["name"].format(kind)
+ copy["hf_config"]["name"] = falcon180b["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+falcon3 = [
+ # https://huggingface.co/tiiuae/Falcon3-1B-Base/blob/main/config.json
+ dict(
+ name="Falcon3-1B{}",
+ hf_config=dict(org="tiiuae", name="Falcon3-1B{}"),
+ block_size=4096,
+ vocab_size=131072,
+ padded_vocab_size=131072,
+ n_layer=18,
+ n_head=8,
+ n_query_groups=4,
+ n_embd=2048,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ rope_base=1000042,
+ norm_eps=1e-6,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8192,
+ ),
+ # https://huggingface.co/tiiuae/Falcon3-3B-Base/blob/main/config.json
+ dict(
+ name="Falcon3-3B{}",
+ hf_config=dict(org="tiiuae", name="Falcon3-3B{}"),
+ block_size=32768,
+ vocab_size=131072,
+ padded_vocab_size=131072,
+ n_layer=22,
+ n_head=12,
+ n_query_groups=4,
+ n_embd=3072,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ rope_base=1000042,
+ norm_eps=1e-6,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=9216,
+ ),
+ # https://huggingface.co/tiiuae/Falcon3-7B-Base/blob/main/config.json
+ dict(
+ name="Falcon3-7B{}",
+ hf_config=dict(org="tiiuae", name="Falcon3-7B{}"),
+ block_size=32768,
+ vocab_size=131072,
+ padded_vocab_size=131072,
+ n_layer=28,
+ n_head=12,
+ n_query_groups=4,
+ n_embd=3072,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ rope_base=1000042,
+ norm_eps=1e-6,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=23040,
+ ),
+ # https://huggingface.co/tiiuae/Falcon3-10B-Base/blob/main/config.json
+ dict(
+ name="Falcon3-10B{}",
+ hf_config=dict(org="tiiuae", name="Falcon3-10B{}"),
+ block_size=32768,
+ vocab_size=131072,
+ padded_vocab_size=131072,
+ n_layer=40,
+ n_head=12,
+ n_query_groups=4,
+ n_embd=3072,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ rope_base=1000042,
+ norm_eps=1e-6,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=23040,
+ ),
+]
+for c in falcon3:
+ for kind in ("-Base", "-Instruct"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+
+#############################
+# OpenLM Research Open LLaMA
+#############################
+open_LLaMA = [
+ # https://huggingface.co/openlm-research/open_llama_3b/blob/main/config.json
+ dict(
+ name="open_llama_3b",
+ hf_config=dict(org="openlm-research", name="open_llama_3b"),
+ block_size=2048,
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=26,
+ n_embd=3200,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-6,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8640,
+ ),
+ # https://huggingface.co/openlm-research/open_llama_7b/blob/main/config.json
+ dict(
+ name="open_llama_7b",
+ hf_config=dict(org="openlm-research", name="open_llama_7b"),
+ block_size=2048,
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-6,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ ),
+ # https://huggingface.co/openlm-research/open_llama_13b/blob/main/config.json
+ dict(
+ name="open_llama_13b",
+ hf_config=dict(org="openlm-research", name="open_llama_13b"),
+ block_size=2048,
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-6,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ ),
+]
+configs.extend(open_LLaMA)
+
+###############
+# Meta LLaMA 2
+###############
+llama_2 = [
+ # https://huggingface.co/meta-llama/Llama-2-7b-hf/blob/main/config.json
+ dict(
+ name="Llama-2-7b{}-hf",
+ hf_config=dict(org="meta-llama", name="Llama-2-7b{}-hf"),
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ ),
+ # https://huggingface.co/meta-llama/Llama-2-13b-hf/blob/main/config.json
+ dict(
+ name="Llama-2-13b{}-hf",
+ hf_config=dict(org="meta-llama", name="Llama-2-13b{}-hf"),
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ ),
+ # https://huggingface.co/meta-llama/Llama-2-70b-hf/blob/main/config.json
+ dict(
+ name="Llama-2-70b{}-hf",
+ hf_config=dict(org="meta-llama", name="Llama-2-70b{}-hf"),
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ ),
+]
+for c in llama_2:
+ for kind in ("", "-chat"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+
+###############
+# Meta LLaMA 3
+###############
+llama_3 = [
+ # https://huggingface.co/meta-llama/Meta-Llama-3-8B/blob/main/config.json
+ dict(
+ name="Llama-3-8B{}",
+ hf_config=dict(org="meta-llama", name="Meta-Llama-3-8B{}"),
+ block_size=8192,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=32,
+ n_head=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ rope_base=500000,
+ ),
+ # https://huggingface.co/meta-llama/Meta-Llama-3.1-8B/blob/main/config.json
+ dict(
+ name="Llama-3.1-8B{}",
+ hf_config=dict(org="meta-llama", name="Meta-Llama-3.1-8B{}"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=32,
+ n_head=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ rope_base=500000,
+ rope_adjustments=dict(factor=8.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+ # https://huggingface.co/meta-llama/Meta-Llama-3-70B/blob/main/config.json
+ dict(
+ name="Llama-3-70B{}",
+ hf_config=dict(org="meta-llama", name="Meta-Llama-3-70B{}"),
+ block_size=8192,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=500000,
+ ),
+ # https://huggingface.co/meta-llama/Meta-Llama-3.1-70B/blob/main/config.json
+ dict(
+ name="Llama-3.1-70B{}",
+ hf_config=dict(org="meta-llama", name="Meta-Llama-3.1-70B{}"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=500000,
+ rope_adjustments=dict(factor=8.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+ # https://huggingface.co/meta-llama/Meta-Llama-3.1-405B/blob/main/config.json
+ dict(
+ name="Llama-3.1-405B{}",
+ hf_config=dict(org="meta-llama", name="Meta-Llama-3.1-405B{}"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=126,
+ n_head=128,
+ n_embd=16384,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=53248,
+ rope_base=500000,
+ rope_adjustments=dict(factor=8.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+ # https://huggingface.co/meta-llama/Llama-3.2-1B/blob/main/config.json
+ dict(
+ name="Llama-3.2-1B{}",
+ hf_config=dict(org="meta-llama", name="Llama-3.2-1B{}"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=16,
+ n_embd=2048,
+ n_head=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8192,
+ rope_base=500000,
+ rope_adjustments=dict(factor=32.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+ # https://huggingface.co/meta-llama/Llama-3.2-3B/blob/main/config.json
+ dict(
+ name="Llama-3.2-3B{}",
+ hf_config=dict(org="meta-llama", name="Llama-3.2-3B{}"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=28,
+ n_embd=3072,
+ n_head=24,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8192,
+ rope_base=500000,
+ rope_adjustments=dict(factor=32.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+ # https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct/blob/main/config.json
+ dict(
+ name="Llama-3.3-70B-Instruct",
+ hf_config=dict(org="meta-llama", name="Llama-3.3-70B-Instruct"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=500000,
+ rope_adjustments=dict(factor=8.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+]
+for c in llama_3:
+ if c["name"] == "Llama-3.3-70B-Instruct":
+ configs.append(c)
+ continue
+ for kind in ("", "-Instruct"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+#########################
+# NVIDIA Llama Nemotron
+#########################
+configs.append(
+ dict(
+ name="Llama-3.1-Nemotron-70B-Instruct-HF",
+ hf_config=dict(org="nvidia", name="Llama-3.1-Nemotron-70B-Instruct-HF"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=500000,
+ rope_adjustments=dict(factor=8.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+)
+
+#################
+# Allen AI OLMo
+#################
+olmo = [
+ # https://huggingface.co/allenai/OLMo-1B-hf/blob/main/config.json
+ dict(
+ name="OLMo-1B-hf",
+ hf_config=dict(org="allenai", name="OLMo-1B-hf"),
+ vocab_size=50280,
+ padded_vocab_size=50304,
+ block_size=2048,
+ n_embd=2048,
+ n_layer=16,
+ n_head=16,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="LayerNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8192,
+ ),
+ # https://huggingface.co/allenai/OLMo-7B-hf/blob/main/config.json
+ dict(
+ name="OLMo-7B-hf",
+ hf_config=dict(org="allenai", name="OLMo-7B-hf"),
+ vocab_size=50280,
+ padded_vocab_size=50304,
+ block_size=2048,
+ n_layer=32,
+ n_head=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="LayerNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ ),
+ # https://huggingface.co/allenai/OLMo-7B-Instruct-hf/blob/main/config.json
+ dict(
+ name="OLMo-7B-Instruct-hf",
+ hf_config=dict(org="allenai", name="OLMo-7B-Instruct-hf"),
+ vocab_size=50280,
+ padded_vocab_size=50304,
+ block_size=2048,
+ n_layer=32,
+ n_head=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="LayerNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ ),
+]
+
+configs.extend(olmo)
+
+olmo2 = [
+ # https://huggingface.co/allenai/OLMo-2-1124-7B/blob/main/config.json
+ dict(
+ name="OLMo-2-1124-7B{}",
+ hf_config=dict(org="allenai", name="OLMo-2-1124-7B{}"),
+ vocab_size=100278,
+ padded_vocab_size=100352,
+ block_size=4096,
+ n_embd=4096,
+ n_layer=32,
+ n_head=32,
+ n_query_groups=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ norm_eps=1e-06,
+ intermediate_size=11008,
+ rope_base=500000,
+ norm_qk=True,
+ post_mlp_norm=True,
+ norm_1=False,
+ norm_2=False,
+ norm_qk_type="olmo2",
+ post_attention_norm=True,
+ ),
+ # https://huggingface.co/allenai/OLMo-2-1124-13B/blob/main/config.json
+ dict(
+ name="OLMo-2-1124-13B{}",
+ hf_config=dict(org="allenai", name="OLMo-2-1124-13B{}"),
+ vocab_size=100278,
+ padded_vocab_size=100352,
+ block_size=4096,
+ n_embd=5120,
+ n_layer=40,
+ n_head=40,
+ n_query_groups=40,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ norm_eps=1e-06,
+ intermediate_size=13824,
+ rope_base=500000,
+ norm_qk=True,
+ post_mlp_norm=True,
+ norm_1=False,
+ norm_2=False,
+ norm_qk_type="olmo2",
+ post_attention_norm=True,
+ ),
+]
+
+for c in olmo2:
+ for kind in ("", "-SFT", "-DPO", "-Instruct"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+###############
+# Google Gemma
+###############
+gemma = [
+ # https://huggingface.co/google/gemma-2b/blob/main/config.json
+ dict(
+ name="Gemma-2b",
+ hf_config=dict(org="google", name="gemma-2b"),
+ scale_embeddings=True,
+ vocab_size=256000,
+ padding_multiple=64,
+ n_embd=2048,
+ n_layer=18,
+ n_head=8,
+ n_query_groups=1,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ intermediate_size=16384,
+ ),
+ # https://huggingface.co/google/gemma-7b/blob/main/config.json
+ dict(
+ name="Gemma-7b",
+ hf_config=dict(org="google", name="gemma-7b"),
+ scale_embeddings=True,
+ vocab_size=256000,
+ padding_multiple=64,
+ n_embd=3072,
+ n_layer=28,
+ n_head=16,
+ head_size=256,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ intermediate_size=24576,
+ ),
+ # https://huggingface.co/google/gemma-2-2b/blob/main/config.json
+ dict(
+ name="Gemma-2-2b",
+ hf_config=dict(org="google", name="gemma-2-2b"),
+ scale_embeddings=True,
+ attention_scores_scalar=256,
+ vocab_size=256000,
+ block_size=8192,
+ sliding_window_size=4096,
+ # only layer with idx 0, 2, 4, ... have sliding window attention
+ sliding_window_indices=[1 if i % 2 == 0 else 0 for i in range(26)],
+ intermediate_size=9216,
+ n_embd=2304,
+ n_layer=26,
+ n_head=8,
+ n_query_groups=4,
+ head_size=256,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ post_attention_norm=True,
+ post_mlp_norm=True,
+ attention_logit_softcapping=50.0,
+ final_logit_softcapping=30.0,
+ ),
+ # https://huggingface.co/google/gemma-2-9b/blob/main/config.json
+ dict(
+ name="Gemma-2-9b",
+ hf_config=dict(org="google", name="gemma-2-9b"),
+ scale_embeddings=True,
+ attention_scores_scalar=256,
+ vocab_size=256000,
+ block_size=8192,
+ sliding_window_size=4096,
+ # only layer with idx 0, 2, 4, ... have sliding window attention
+ sliding_window_indices=[1 if i % 2 == 0 else 0 for i in range(42)],
+ intermediate_size=14336,
+ n_embd=3584,
+ n_layer=42,
+ n_head=16,
+ n_query_groups=8,
+ head_size=256,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ post_attention_norm=True,
+ post_mlp_norm=True,
+ attention_logit_softcapping=50.0,
+ final_logit_softcapping=30.0,
+ ),
+ # https://huggingface.co/google/gemma-2-27b/blob/main/config.json
+ dict(
+ name="Gemma-2-27b",
+ hf_config=dict(org="google", name="gemma-2-27b"),
+ scale_embeddings=True,
+ # In Gemma 2 27B attention scores are scaled not by `sqrt(head_size)` (11.31),
+ # but by `sqrt(n_emb // n_head)` = sqrt(4608 // 32) = 12
+ attention_scores_scalar=144,
+ vocab_size=256000,
+ block_size=8192,
+ sliding_window_size=4096,
+ # only layer with idx 0, 2, 4, ... have sliding window attention
+ sliding_window_indices=[1 if i % 2 == 0 else 0 for i in range(46)],
+ intermediate_size=36864,
+ n_embd=4608,
+ n_layer=46,
+ n_head=32,
+ n_query_groups=16,
+ head_size=128,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ post_attention_norm=True,
+ post_mlp_norm=True,
+ attention_logit_softcapping=50.0,
+ final_logit_softcapping=30.0,
+ ),
+]
+configs.extend(gemma)
+for c in gemma:
+ copy = deepcopy(c)
+ copy["name"] = f"{c['name']}-it"
+ copy["hf_config"]["name"] = f"{c['hf_config']['name']}-it"
+ configs.append(copy)
+
+##################
+# Google Gemma 3
+##################
+gemma3 = [
+ # https://huggingface.co/google/gemma-3-1b-it/blob/main/config.json
+ dict(
+ name="Gemma-3-1b-it",
+ hf_config=dict(org="google", name="gemma-3-1b-it"),
+ scale_embeddings=True,
+ attention_scores_scalar=256,
+ vocab_size=262144,
+ block_size=131072,
+ sliding_window_size=512,
+ # 5 local layers for every global layer
+ sliding_window_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(26)],
+ intermediate_size=6912,
+ n_embd=1152,
+ n_layer=26,
+ n_head=4,
+ n_query_groups=1,
+ head_size=256,
+ rotary_percentage=1.0,
+ rope_adjustments=None,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ post_attention_norm=True,
+ post_mlp_norm=True,
+ norm_qk=True,
+ rope_base=1000000,
+ rope_local_base_freq=10000,
+ # 5 local layers for every global layer
+ rope_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(26)],
+ ),
+ # https://huggingface.co/google/gemma-3-4b-it/blob/main/config.json
+ dict(
+ name="Gemma-3-4b-it",
+ hf_config=dict(org="google", name="gemma-3-4b-it"),
+ scale_embeddings=True,
+ attention_scores_scalar=256,
+ vocab_size=262144,
+ block_size=131072,
+ sliding_window_size=1024,
+ # 5 local layers for every global layer
+ sliding_window_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(34)],
+ intermediate_size=10240,
+ n_embd=2560,
+ n_layer=34,
+ n_head=8,
+ n_query_groups=4,
+ head_size=256,
+ rotary_percentage=1.0,
+ rope_adjustments=dict(factor=8.0),
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ post_attention_norm=True,
+ post_mlp_norm=True,
+ norm_qk=True,
+ rope_base=1000000,
+ rope_local_base_freq=10000,
+ # 5 local layers for every global layer
+ rope_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(34)],
+ ),
+ # https://huggingface.co/google/gemma-3-12b-it/blob/main/config.json
+ dict(
+ name="Gemma-3-12b-it",
+ hf_config=dict(org="google", name="gemma-3-12b-it"),
+ scale_embeddings=True,
+ attention_scores_scalar=256,
+ vocab_size=262144,
+ block_size=131072,
+ sliding_window_size=1024,
+ # 5 local layers for every global layer
+ sliding_window_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(48)],
+ intermediate_size=15360,
+ n_embd=3840,
+ n_layer=48,
+ n_head=16,
+ n_query_groups=8,
+ head_size=256,
+ rotary_percentage=1.0,
+ rope_adjustments=dict(factor=8.0),
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ post_attention_norm=True,
+ post_mlp_norm=True,
+ norm_qk=True,
+ rope_base=1000000,
+ rope_local_base_freq=10000,
+ # 5 local layers for every global layer
+ rope_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(48)],
+ ),
+ # https://huggingface.co/google/gemma-3-27b-it/blob/main/config.json
+ dict(
+ name="Gemma-3-27b-it",
+ hf_config=dict(org="google", name="gemma-3-27b-it"),
+ scale_embeddings=True,
+ attention_scores_scalar=168,
+ vocab_size=262144,
+ block_size=131072,
+ sliding_window_size=1024,
+ # 5 local layers for every global layer
+ sliding_window_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(62)],
+ intermediate_size=21504,
+ n_embd=5376,
+ n_layer=62,
+ n_head=32,
+ n_query_groups=16,
+ head_size=128,
+ rotary_percentage=1.0,
+ rope_adjustments=dict(factor=8.0),
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ post_attention_norm=True,
+ post_mlp_norm=True,
+ norm_qk=True,
+ rope_base=1000000,
+ rope_local_base_freq=10000,
+ # 5 local layers for every global layer
+ rope_indices=[0 if (i + 1) % 6 == 0 else 1 for i in range(62)],
+ ),
+]
+configs.extend(gemma3)
+
+##################
+# Google CodeGemma
+##################
+codegemma = [
+ # https://huggingface.co/google/codegemma-7b-it/blob/main/config.json
+ dict(
+ name="CodeGemma-7b-it",
+ hf_config=dict(org="google", name="codegemma-7b-it"),
+ scale_embeddings=True,
+ vocab_size=256000,
+ padding_multiple=64,
+ n_embd=3072,
+ n_layer=28,
+ n_head=16,
+ head_size=256,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="GemmaMLP",
+ gelu_approximate="tanh",
+ intermediate_size=24576,
+ ),
+]
+configs.extend(codegemma)
+
+
+##########################
+# Stability AI FreeWilly2
+##########################
+freewilly_2 = [
+ # https://huggingface.co/stabilityai/FreeWilly2/blob/main/config.json
+ dict(
+ name="FreeWilly2",
+ hf_config=dict(org="stabilityai", name="FreeWilly2"),
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ )
+]
+configs.extend(freewilly_2)
+
+
+##################
+# Meta Code Llama
+##################
+code_llama = [
+ # https://huggingface.co/codellama/CodeLlama-7b-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-7b-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-7b-hf"),
+ block_size=16384,
+ vocab_size=32016,
+ padding_multiple=16,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-13b-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-13b-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-13b-hf"),
+ block_size=16384,
+ vocab_size=32016,
+ padding_multiple=16,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-34b-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-34b-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-34b-hf"),
+ block_size=16384,
+ vocab_size=32000,
+ padded_vocab_size=32000,
+ n_layer=48,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=22016,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-70b-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-70b-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-70b-hf"),
+ block_size=16384,
+ vocab_size=32016,
+ padding_multiple=16,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-7b-Python-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-7b-Python-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-7b-Python-hf"),
+ block_size=16384,
+ vocab_size=32000,
+ padded_vocab_size=32000,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-13b-Python-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-13b-Python-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-13b-Python-hf"),
+ block_size=16384,
+ vocab_size=32000,
+ padded_vocab_size=32000,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-34b-Python-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-34b-Python-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-34b-Python-hf"),
+ block_size=16384,
+ vocab_size=32000,
+ padded_vocab_size=32000,
+ n_layer=48,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=22016,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-70b-Python-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-70b-Python-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-70b-Python-hf"),
+ block_size=16384,
+ vocab_size=32016,
+ padding_multiple=16,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-7b-Instruct-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-7b-Instruct-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-7b-Instruct-hf"),
+ block_size=16384,
+ vocab_size=32016,
+ padding_multiple=16,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-13b-Instruct-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-13b-Instruct-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-13b-Instruct-hf"),
+ block_size=2048,
+ vocab_size=32016,
+ padding_multiple=16,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-34b-Instruct-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-34b-Instruct-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-34b-Instruct-hf"),
+ block_size=16384,
+ vocab_size=32000,
+ padded_vocab_size=32000,
+ n_layer=48,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=22016,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/codellama/CodeLlama-70b-Instruct-hf/blob/main/config.json
+ dict(
+ name="CodeLlama-70b-Instruct-hf",
+ hf_config=dict(org="codellama", name="CodeLlama-70b-Instruct-hf"),
+ block_size=16384,
+ # 32016 is an added token, so not reported in vocab_size
+ # https://huggingface.co/codellama/CodeLlama-70b-Instruct-hf/blob/main/tokenizer_config.json
+ vocab_size=32015,
+ padding_multiple=16,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=1000000,
+ ),
+]
+configs.extend(code_llama)
+
+
+########################
+# garage-bAInd Platypus
+########################
+platypus = [
+ # https://huggingface.co/garage-bAInd/Platypus-30B/blob/main/config.json
+ dict(
+ name="Platypus-30B",
+ hf_config=dict(org="garage-bAInd", name="Platypus-30B"),
+ block_size=2048,
+ padded_vocab_size=32000,
+ n_layer=60,
+ n_head=52,
+ n_embd=6656,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-06,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=17920,
+ ),
+ # https://huggingface.co/garage-bAInd/Platypus2-7B/blob/main/config.json
+ dict(
+ name="Platypus2-7B",
+ hf_config=dict(org="garage-bAInd", name="Platypus2-7B"),
+ padded_vocab_size=32000,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ ),
+ # https://huggingface.co/garage-bAInd/Platypus2-13B/blob/main/config.json
+ dict(
+ name="Platypus2-13B",
+ hf_config=dict(org="garage-bAInd", name="Platypus2-13B"),
+ padded_vocab_size=32000,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ ),
+ # https://huggingface.co/garage-bAInd/Platypus2-70B/blob/main/config.json
+ dict(
+ name="Platypus2-70B",
+ hf_config=dict(org="garage-bAInd", name="Platypus2-70B"),
+ padded_vocab_size=32000,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ ),
+ # https://huggingface.co/garage-bAInd/Camel-Platypus2-13B/blob/main/config.json
+ dict(
+ name="Camel-Platypus2-13B",
+ hf_config=dict(org="garage-bAInd", name="Camel-Platypus2-13B"),
+ padded_vocab_size=32000,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ ),
+ # https://huggingface.co/garage-bAInd/Camel-Platypus2-70B/blob/main/config.json
+ dict(
+ name="Camel-Platypus2-70B",
+ hf_config=dict(org="garage-bAInd", name="Camel-Platypus2-70B"),
+ padded_vocab_size=32000,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ ),
+ # https://huggingface.co/garage-bAInd/Stable-Platypus2-13B/blob/main/config.json
+ dict(
+ name="Stable-Platypus2-13B",
+ hf_config=dict(org="garage-bAInd", name="Stable-Platypus2-13B"),
+ padded_vocab_size=32000,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ ),
+ # https://huggingface.co/garage-bAInd/Platypus2-70B-instruct/blob/main/config.json
+ dict(
+ name="Platypus2-70B-instruct",
+ hf_config=dict(org="garage-bAInd", name="Platypus2-70B-instruct"),
+ padded_vocab_size=32000,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ ),
+]
+configs.extend(platypus)
+
+
+##################################
+# togethercomputer LLaMA-2-7B-32K
+##################################
+together_llama2_32k = [
+ # https://huggingface.co/togethercomputer/LLaMA-2-7B-32K/blob/main/config.json
+ dict(
+ name="LLaMA-2-7B-32K",
+ hf_config=dict(org="togethercomputer", name="LLaMA-2-7B-32K"),
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ rope_condense_ratio=8,
+ )
+]
+configs.extend(together_llama2_32k)
+
+
+################
+# Microsoft Phi
+################
+phi = [
+ # https://huggingface.co/microsoft/phi-1_5/blob/main/config.json
+ dict(
+ name="phi-1_5",
+ hf_config=dict(org="microsoft", name="phi-1_5"),
+ vocab_size=50257,
+ padded_vocab_size=51200,
+ block_size=2048,
+ n_embd=2048,
+ n_layer=24,
+ rotary_percentage=0.5, # 32 / (n_embd / n_head) = 32 / 64
+ shared_attention_norm=True,
+ lm_head_bias=True,
+ gelu_approximate="tanh",
+ ),
+ # https://huggingface.co/microsoft/phi-2/blob/main/config.json
+ dict(
+ name="phi-2",
+ hf_config=dict(org="microsoft", name="phi-2"),
+ vocab_size=50257,
+ padded_vocab_size=51200,
+ block_size=2048,
+ n_embd=2560,
+ n_layer=32,
+ rotary_percentage=0.4, # 32 / (n_embd / n_head) = 32 / 80
+ shared_attention_norm=True,
+ lm_head_bias=True,
+ gelu_approximate="tanh",
+ ),
+ # https://huggingface.co/microsoft/Phi-3-mini-4k-instruct/blob/main/config.json
+ dict(
+ name="Phi-3-mini-4k-instruct",
+ hf_config=dict(org="microsoft", name="Phi-3-mini-4k-instruct"),
+ vocab_size=32000,
+ padded_vocab_size=32064,
+ block_size=4096,
+ n_embd=3072,
+ n_layer=32,
+ rotary_percentage=1.0,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=8192,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ sliding_window_size=2048,
+ ),
+ # https://huggingface.co/microsoft/Phi-3-mini-128k-instruct/blob/main/config.json
+ dict(
+ name="Phi-3-mini-128k-instruct",
+ hf_config=dict(org="microsoft", name="Phi-3-mini-128k-instruct"),
+ vocab_size=32000,
+ padded_vocab_size=32064,
+ block_size=131072,
+ n_embd=3072,
+ n_layer=32,
+ rotary_percentage=1.0,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=8192,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ sliding_window_size=262145,
+ ),
+ # https://huggingface.co/microsoft/Phi-3.5-mini-instruct/blob/main/config.json
+ dict(
+ name="Phi-3.5-mini-instruct",
+ hf_config=dict(org="microsoft", name="Phi-3.5-mini-instruct"),
+ vocab_size=32000,
+ padded_vocab_size=32064,
+ block_size=4096,
+ n_embd=3072,
+ n_layer=32,
+ rotary_percentage=1.0,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=8192,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ ),
+ # https://huggingface.co/microsoft/phi-4/blob/main/config.json
+ dict(
+ name="phi-4",
+ hf_config=dict(org="microsoft", name="phi-4"),
+ vocab_size=100352,
+ padded_vocab_size=100352,
+ block_size=16384,
+ n_embd=5120,
+ n_layer=40,
+ n_head=40,
+ n_query_groups=10,
+ rotary_percentage=1.0,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=17920,
+ rope_base=250000,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ ),
+ # https://huggingface.co/microsoft/Phi-4-reasoning/blob/main/config.json
+ dict(
+ name="Phi-4-reasoning",
+ hf_config=dict(org="microsoft", name="Phi-4-reasoning"),
+ vocab_size=100352,
+ padded_vocab_size=100352,
+ block_size=32768,
+ n_embd=5120,
+ n_layer=40,
+ n_head=40,
+ n_query_groups=10,
+ rotary_percentage=1.0,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=17920,
+ rope_base=500000,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ ),
+ # https://huggingface.co/microsoft/Phi-4-reasoning-plus/blob/main/config.json
+ dict(
+ name="Phi-4-reasoning-plus",
+ hf_config=dict(org="microsoft", name="Phi-4-reasoning-plus"),
+ vocab_size=100352,
+ padded_vocab_size=100352,
+ block_size=32768,
+ n_embd=5120,
+ n_layer=40,
+ n_head=40,
+ n_query_groups=10,
+ rotary_percentage=1.0,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=17920,
+ rope_base=500000,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ ),
+ # https://huggingface.co/microsoft/Phi-4-mini-instruct/blob/main/config.json
+ dict(
+ name="Phi-4-mini-instruct",
+ hf_config=dict(org="microsoft", name="Phi-4-mini-instruct"),
+ vocab_size=200019,
+ padded_vocab_size=200064,
+ block_size=131072,
+ n_embd=3072,
+ n_layer=32,
+ n_head=24,
+ n_query_groups=8,
+ rotary_percentage=0.75,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=8192,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ sliding_window_size=262145,
+ ),
+ # https://huggingface.co/microsoft/Phi-4-mini-reasoning/blob/main/config.json
+ dict(
+ name="Phi-4-mini-reasoning",
+ hf_config=dict(org="microsoft", name="Phi-4-mini-reasoning"),
+ vocab_size=200019,
+ padded_vocab_size=200064,
+ block_size=131072,
+ n_embd=3072,
+ n_layer=32,
+ n_head=24,
+ n_query_groups=8,
+ rotary_percentage=0.75,
+ bias=False,
+ norm_class_name="RMSNorm",
+ intermediate_size=8192,
+ mlp_class_name="LLaMAMLP",
+ parallel_residual=False,
+ sliding_window_size=262145,
+ ),
+]
+configs.extend(phi)
+
+
+#############
+# Mistral AI
+#############
+
+configs.append(
+ # https://huggingface.co/mistralai/mathstral-7B-v0.1/blob/main/config.json
+ dict(
+ name="Mathstral-7B-v0.1",
+ hf_config=dict(org="mistralai", name="mathstral-7B-v0.1"),
+ padded_vocab_size=32768,
+ block_size=32768,
+ n_layer=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ sliding_window_size=4096,
+ )
+)
+
+mistral = [
+ # https://huggingface.co/mistralai/Mistral-7B-v0.1/blob/main/config.json
+ dict(
+ name="Mistral-7B-{}v0.1",
+ hf_config=dict(org="mistralai", name="Mistral-7B-{}v0.1"),
+ padded_vocab_size=32000,
+ block_size=4096, # should be 32768 but sliding window attention is not implemented
+ n_layer=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ sliding_window_size=4096,
+ ),
+ # https://huggingface.co/mistralai/Mixtral-8x7B-v0.1/blob/main/config.json
+ dict(
+ name="Mixtral-8x7B-{}v0.1",
+ hf_config=dict(org="mistralai", name="Mixtral-8x7B-{}v0.1"),
+ padded_vocab_size=32000,
+ block_size=32768,
+ n_layer=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMoE",
+ intermediate_size=14336,
+ rope_base=1000000,
+ n_expert=8,
+ n_expert_per_token=2,
+ ),
+ # https://huggingface.co/mistralai/Mixtral-8x22B-Instruct-v0.1/blob/main/config.json
+ dict(
+ name="Mixtral-8x22B-{}v0.1",
+ hf_config=dict(org="mistralai", name="Mixtral-8x22B-{}v0.1"),
+ padded_vocab_size=32768,
+ block_size=65536,
+ n_layer=56,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMoE",
+ intermediate_size=16384,
+ n_head=48,
+ n_embd=6144,
+ rope_base=1000000,
+ n_expert=8,
+ n_expert_per_token=2,
+ ),
+]
+for c in mistral:
+ for kind in ("", "Instruct-"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+configs.append(
+ # https://huggingface.co/unsloth/mistral-7b-v0.2/blob/main/config.json
+ dict(
+ name="Mistral-7B-v0.2",
+ hf_config=dict(org="unsloth", name="Mistral-7B-v0.2"),
+ padded_vocab_size=32000,
+ block_size=32768,
+ n_layer=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ )
+)
+configs.append(
+ # https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2/blob/main/config.json
+ dict(
+ name="Mistral-7B-Instruct-v0.2",
+ hf_config=dict(org="mistralai", name="Mistral-7B-Instruct-v0.2"),
+ padded_vocab_size=32000,
+ block_size=32768,
+ n_layer=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ )
+)
+configs.append(
+ # https://huggingface.co/mistralai/Mistral-7B-v0.3/blob/main/config.json
+ dict(
+ name="Mistral-7B-v0.3",
+ hf_config=dict(org="mistralai", name="Mistral-7B-v0.3"),
+ padded_vocab_size=32768,
+ block_size=32768,
+ n_layer=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ )
+)
+configs.append(
+ # https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3/blob/main/config.json
+ dict(
+ name="Mistral-7B-Instruct-v0.3",
+ hf_config=dict(org="mistralai", name="Mistral-7B-Instruct-v0.3"),
+ padded_vocab_size=32768,
+ block_size=32768,
+ n_layer=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ )
+)
+configs.append(
+ # https://huggingface.co/mistralai/Mistral-Large-Instruct-2407/blob/main/config.json
+ dict(
+ name="Mistral-Large-Instruct-2407",
+ hf_config=dict(org="mistralai", name="Mistral-Large-Instruct-2407"),
+ padded_vocab_size=32768,
+ block_size=32768,
+ n_layer=88,
+ n_head=96,
+ n_embd=12288,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ )
+)
+configs.append(
+ # https://huggingface.co/mistralai/Mistral-Large-Instruct-2411/blob/main/config.json
+ dict(
+ name="Mistral-Large-Instruct-2411",
+ hf_config=dict(org="mistralai", name="Mistral-Large-Instruct-2411"),
+ padded_vocab_size=32768,
+ block_size=32768,
+ n_layer=88,
+ n_head=96,
+ n_embd=12288,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ norm_eps=1e-05,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ )
+)
+
+
+############
+# TinyLlama
+############
+tiny_llama = [
+ dict(
+ name="tiny-llama-1.1b{}",
+ hf_config=dict(org="TinyLlama", name="TinyLlama-1.1B{}"),
+ block_size=2048,
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=22,
+ n_head=32,
+ n_embd=2048,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm", # original TinyLlama use FusedRMSNorm
+ norm_eps=1e-5,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=5632,
+ n_query_groups=4,
+ )
+]
+for c in tiny_llama:
+ for kind, hf_postfix in (("", "-intermediate-step-1431k-3T"), ("-chat", "-Chat-v1.0")):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(hf_postfix)
+ configs.append(copy)
+
+
+############
+# MicroLlama
+############
+micro_llama = [
+ dict(
+ name="micro-llama-300M",
+ hf_config=dict(org="keeeeenw", name="MicroLlama"),
+ block_size=2048,
+ vocab_size=32000,
+ padding_multiple=64,
+ n_layer=12,
+ n_head=16,
+ n_embd=1024,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm", # original TinyLlama and MicroLlama use FusedRMSNorm
+ norm_eps=1e-5,
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=5632,
+ n_query_groups=4,
+ )
+]
+configs.extend(micro_llama)
+
+
+##########################
+# Trelis Function Calling
+##########################
+llama_2_function_calling = [
+ # https://huggingface.co/Trelis/Llama-2-7b-chat-hf-function-calling-v2/blob/main/config.json
+ dict(
+ name="Llama-2-7b-chat-hf-function-calling-v2",
+ hf_config=dict(org="Trelis", name="Llama-2-7b-chat-hf-function-calling-v2"),
+ padding_multiple=64,
+ n_layer=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ norm_eps=1e-6,
+ block_size=4096,
+ vocab_size=32000,
+ n_head=32,
+ n_embd=4096,
+ rope_base=10000,
+ )
+]
+
+configs.extend(llama_2_function_calling)
+
+##########################
+# Qwen2
+##########################
+qwen_2 = [
+ # https://huggingface.co/Trelis/Llama-2-7b-chat-hf-function-calling-v2/blob/main/config.json
+ dict(
+ name="Qwen2-7B",
+ hf_config=dict(org="Qwen", name="Qwen2-7B"),
+ block_size=131072,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=28,
+ n_head=28,
+ n_embd=3584,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=18944,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+dict(
+ name="Qwen2-0.5B",
+ hf_config=dict(org="Qwen", name="Qwen2-0.5B"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=24,
+ n_head=14,
+ n_embd=896,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=4864,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+]
+
+configs.extend(qwen_2)
+
+##########
+# Qwen2.5
+##########
+qwen_2_5 = [
+ # https://huggingface.co/Qwen/Qwen2.5-0.5B/blob/main/config.json
+ dict(
+ name="Qwen2.5-0.5B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-0.5B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=24,
+ n_head=14,
+ n_embd=896,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=4864,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-1.5B/blob/main/config.json
+ dict(
+ name="Qwen2.5-1.5B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-1.5B{}"),
+ block_size=131072,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=28,
+ n_head=12,
+ n_embd=1536,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8960,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-3B/blob/main/config.json
+ dict(
+ name="Qwen2.5-3B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-3B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=36,
+ n_head=16,
+ n_embd=2048,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-7B/blob/main/config.json
+ dict(
+ name="Qwen2.5-7B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-7B{}"),
+ block_size=131072,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=28,
+ n_head=28,
+ n_embd=3584,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=18944,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-14B/blob/main/config.json
+ dict(
+ name="Qwen2.5-14B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-14B{}"),
+ block_size=131072,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=48,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ norm_eps=1e-5,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-32B/blob/main/config.json
+ dict(
+ name="Qwen2.5-32B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-32B{}"),
+ block_size=131072,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=64,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=27648,
+ norm_eps=1e-5,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-72B/blob/main/config.json
+ dict(
+ name="Qwen2.5-72B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-72B{}"),
+ block_size=131072,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=29568,
+ norm_eps=1e-5,
+ rope_base=1000000,
+ ),
+]
+
+qwen_2_5_coder = [
+ # https://huggingface.co/Qwen/Qwen2.5-Coder-0.5B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Coder-0.5B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Coder-0.5B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=24,
+ n_head=14,
+ n_embd=896,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=4864,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-Coder-1.5B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Coder-1.5B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Coder-1.5B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=28,
+ n_head=12,
+ n_embd=1536,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8960,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-Coder-3B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Coder-3B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Coder-3B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=36,
+ n_head=16,
+ n_embd=2048,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-Coder-7B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Coder-7B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Coder-7B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=28,
+ n_head=28,
+ n_embd=3584,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=18944,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-Coder-14B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Coder-14B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Coder-14B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=48,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ norm_eps=1e-5,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-Coder-32B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Coder-32B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Coder-32B{}"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=64,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=27648,
+ norm_eps=1e-5,
+ rope_base=1000000,
+ ),
+]
+
+qwen_2_5.extend(qwen_2_5_coder)
+
+qwen_2_5_math = [
+ # https://huggingface.co/Qwen/Qwen2.5-Math-1.5B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Math-1.5B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Math-1.5B{}"),
+ block_size=4096,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=28,
+ n_head=12,
+ n_embd=1536,
+ n_query_groups=2,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8960,
+ norm_eps=1e-6,
+ rope_base=10000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-Math-7B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Math-7B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Math-7B{}"),
+ block_size=4096,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=28,
+ n_head=28,
+ n_embd=3584,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=18944,
+ norm_eps=1e-6,
+ rope_base=10000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-Math-72B/blob/main/config.json
+ dict(
+ name="Qwen2.5-Math-72B{}",
+ hf_config=dict(org="Qwen", name="Qwen2.5-Math-72B{}"),
+ block_size=4096,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=29568,
+ norm_eps=1e-5,
+ rope_base=10000,
+ ),
+]
+
+qwen_2_5.extend(qwen_2_5_math)
+
+for c in qwen_2_5:
+ for kind in ("", "-Instruct"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+qwen_2_5_1m = [
+ # https://huggingface.co/Qwen/Qwen2.5-7B-Instruct-1M/blob/main/config.json
+ dict(
+ name="Qwen2.5-7B-Instruct-1M",
+ hf_config=dict(org="Qwen", name="Qwen2.5-7B-Instruct-1M"),
+ block_size=1010000,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=28,
+ n_head=28,
+ n_embd=3584,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=18944,
+ norm_eps=1e-5,
+ rope_base=10000000,
+ ),
+ # https://huggingface.co/Qwen/Qwen2.5-14B-Instruct-1M/blob/main/config.json
+ dict(
+ name="Qwen2.5-14B-Instruct-1M",
+ hf_config=dict(org="Qwen", name="Qwen2.5-14B-Instruct-1M"),
+ block_size=1010000,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=48,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=13824,
+ norm_eps=1e-5,
+ rope_base=10000000,
+ ),
+]
+
+configs.extend(qwen_2_5_1m)
+
+##########
+# QwQ
+##########
+qwq = [
+ # https://huggingface.co/Qwen/QwQ-32B/blob/main/config.json
+ dict(
+ name="QwQ-32B",
+ hf_config=dict(org="Qwen", name="QwQ-32B"),
+ block_size=131072,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=64,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=27648,
+ norm_eps=1e-5,
+ rope_base=1000000,
+ ),
+ # https://huggingface.co/Qwen/QwQ-32B-Preview/blob/main/config.json
+ dict(
+ name="QwQ-32B-Preview",
+ hf_config=dict(org="Qwen", name="QwQ-32B-Preview"),
+ block_size=32768,
+ vocab_size=151643,
+ padded_vocab_size=152064,
+ n_layer=64,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ attn_bias=True,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=27648,
+ norm_eps=1e-5,
+ rope_base=1000000,
+ ),
+]
+
+configs.extend(qwq)
+
+##########
+# Qwen3
+##########
+qwen_3 = [
+ # https://huggingface.co/Qwen/Qwen3-0.6B/blob/main/config.json
+ dict(
+ name="Qwen3-0.6B{}",
+ hf_config=dict(org="Qwen", name="Qwen3-0.6B{}"),
+ block_size=40960,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=28,
+ n_head=16,
+ n_embd=1024,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=3072,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ head_size=128,
+ norm_qk=True,
+ ),
+ # https://huggingface.co/Qwen/Qwen3-1.7B/blob/main/config.json
+ dict(
+ name="Qwen3-1.7B{}",
+ hf_config=dict(org="Qwen", name="Qwen3-1.7B{}"),
+ block_size=40960,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=28,
+ n_head=16,
+ n_embd=2048,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=6144,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ norm_qk=True,
+ ),
+ # https://huggingface.co/Qwen/Qwen3-4B/blob/main/config.json
+ dict(
+ name="Qwen3-4B{}",
+ hf_config=dict(org="Qwen", name="Qwen3-4B{}"),
+ block_size=40960,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=36,
+ n_head=32,
+ n_embd=2560,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=9728,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ head_size=128,
+ norm_qk=True,
+ ),
+ # https://huggingface.co/Qwen/Qwen3-8B/blob/main/config.json
+ dict(
+ name="Qwen3-8B{}",
+ hf_config=dict(org="Qwen", name="Qwen3-8B{}"),
+ block_size=40960,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=36,
+ n_head=32,
+ n_embd=4096,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=12288,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ norm_qk=True,
+ ),
+ # https://huggingface.co/Qwen/Qwen3-14B/blob/main/config.json
+ dict(
+ name="Qwen3-14B{}",
+ hf_config=dict(org="Qwen", name="Qwen3-14B{}"),
+ block_size=40960,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=40,
+ n_head=40,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=17408,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ norm_qk=True,
+ ),
+]
+for c in qwen_3:
+ for kind in ("", "-Base"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+qwen_3_32b = [
+ # https://huggingface.co/Qwen/Qwen3-32B/blob/main/config.json
+ dict(
+ name="Qwen3-32B",
+ hf_config=dict(org="Qwen", name="Qwen3-32B"),
+ block_size=40960,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=64,
+ n_head=64,
+ n_embd=5120,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=25600,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ head_size=128,
+ norm_qk=True,
+ ),
+]
+configs.extend(qwen_3_32b)
+
+qwen_3_moe = [
+ # https://huggingface.co/Qwen/Qwen3-30B-A3B/blob/main/config.json
+ dict(
+ name="Qwen3-30B-A3B",
+ hf_config=dict(org="Qwen", name="Qwen3-30B-A3B"),
+ block_size=40960,
+ head_size=128,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=48,
+ n_head=32,
+ n_embd=2048,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMoE",
+ intermediate_size=6144,
+ moe_intermediate_size=768,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ norm_qk=True,
+ n_expert=128,
+ n_expert_per_token=8,
+ ),
+ # https://huggingface.co/Qwen/Qwen3-30B-A3B-Base/blob/main/config.json
+ dict(
+ name="Qwen3-30B-A3B-Base",
+ hf_config=dict(org="Qwen", name="Qwen3-30B-A3B-Base"),
+ block_size=40960,
+ head_size=128,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=48,
+ n_head=32,
+ n_embd=2048,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMoE",
+ intermediate_size=6144,
+ moe_intermediate_size=768,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ norm_qk=True,
+ n_expert=128,
+ n_expert_per_token=8,
+ ),
+ # https://huggingface.co/Qwen/Qwen3-235B-A22B/blob/main/config.json
+ dict(
+ name="Qwen3-235B-A22B",
+ hf_config=dict(org="Qwen", name="Qwen3-235B-A22B"),
+ block_size=40960,
+ head_size=128,
+ vocab_size=151643,
+ padded_vocab_size=151936,
+ n_layer=94,
+ n_head=64,
+ n_embd=4096,
+ n_query_groups=4,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMoE",
+ intermediate_size=12288,
+ moe_intermediate_size=1536,
+ norm_eps=1e-6,
+ rope_base=1000000,
+ norm_qk=True,
+ n_expert=128,
+ n_expert_per_token=8,
+ ),
+]
+configs.extend(qwen_3_moe)
+
+
+#############
+# Salamandra
+#############
+salamandra = [
+ # https://huggingface.co/BSC-LT/salamandra-2b-instruct/blob/main/config.json
+ dict(
+ name="salamandra-2b{}",
+ hf_config=dict(org="BSC-LT", name="salamandra-2b{}"),
+ block_size=8192,
+ vocab_size=256000,
+ padded_vocab_size=256000,
+ n_layer=24,
+ n_head=16,
+ n_embd=2048,
+ n_query_groups=16,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=5440,
+ norm_eps=1e-5,
+ rope_base=10000,
+ ),
+ # https://huggingface.co/BSC-LT/salamandra-7b-instruct/blob/main/config.json
+ dict(
+ name="salamandra-7b{}",
+ hf_config=dict(org="BSC-LT", name="salamandra-7b{}"),
+ block_size=8192,
+ vocab_size=256000,
+ padded_vocab_size=256000,
+ n_layer=32,
+ n_head=32,
+ n_embd=4096,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=11008,
+ norm_eps=1e-6,
+ rope_base=10000,
+ ),
+]
+
+for c in salamandra:
+ for kind in ("", "-instruct"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+
+###############
+# SmolLM2
+###############
+smollm2 = [
+ # https://huggingface.co/HuggingFaceTB/SmolLM2-135M/blob/main/config.json
+ dict(
+ name="SmolLM2-135M{}",
+ hf_config=dict(org="HuggingFaceTB", name="SmolLM2-135M{}"),
+ block_size=8192,
+ vocab_size=49152,
+ padded_vocab_size=49152,
+ n_layer=30,
+ n_head=9,
+ n_embd=576,
+ n_query_groups=3,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=1536,
+ rope_base=100000,
+ norm_eps=1e-5,
+ ),
+ # https://huggingface.co/HuggingFaceTB/SmolLM2-360M/blob/main/config.json
+ dict(
+ name="SmolLM2-360M{}",
+ hf_config=dict(org="HuggingFaceTB", name="SmolLM2-360M{}"),
+ block_size=8192,
+ vocab_size=49152,
+ padded_vocab_size=49152,
+ n_layer=32,
+ n_head=15,
+ n_embd=960,
+ n_query_groups=5,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=2560,
+ rope_base=100000,
+ norm_eps=1e-5,
+ ),
+ # https://huggingface.co/HuggingFaceTB/SmolLM2-1.7B/blob/main/config.json
+ dict(
+ name="SmolLM2-1.7B{}",
+ hf_config=dict(org="HuggingFaceTB", name="SmolLM2-1.7B{}"),
+ block_size=8192,
+ vocab_size=49152,
+ padded_vocab_size=49152,
+ n_layer=24,
+ n_head=32,
+ n_embd=2048,
+ n_query_groups=32,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=8192,
+ rope_base=130000,
+ norm_eps=1e-5,
+ ),
+]
+
+for c in smollm2:
+ for kind in ("", "-Instruct"):
+ copy = deepcopy(c)
+ copy["name"] = c["name"].format(kind)
+ copy["hf_config"]["name"] = c["hf_config"]["name"].format(kind)
+ configs.append(copy)
+
+###############
+# DeepSeek R1 Distill
+###############
+
+r1_distill_llama = [
+ # https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-8B/blob/main/config.json
+ dict(
+ name="R1-Distill-Llama-8B",
+ hf_config=dict(org="deepseek-ai", name="DeepSeek-R1-Distill-Llama-8B"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=32,
+ n_head=32,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=14336,
+ rope_base=500000,
+ rope_adjustments=dict(factor=8.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+ # https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-70B/blob/main/config.json
+ dict(
+ name="R1-Distill-Llama-70B",
+ hf_config=dict(org="deepseek-ai", name="DeepSeek-R1-Distill-Llama-70B"),
+ block_size=131072,
+ vocab_size=128000,
+ padded_vocab_size=128256,
+ n_layer=80,
+ n_head=64,
+ n_embd=8192,
+ n_query_groups=8,
+ rotary_percentage=1.0,
+ parallel_residual=False,
+ bias=False,
+ norm_class_name="RMSNorm",
+ mlp_class_name="LLaMAMLP",
+ intermediate_size=28672,
+ rope_base=500000,
+ rope_adjustments=dict(factor=8.0, low_freq_factor=1.0, high_freq_factor=4.0, original_max_seq_len=8192),
+ ),
+]
+
+configs.extend(r1_distill_llama)
+
+name_to_config = {config["name"]: config for config in configs}
diff --git a/litgpt/lora.py b/litgpt/lora.py
new file mode 100644
index 0000000000000000000000000000000000000000..6739b5b040f1bf3b5b1350889fafb12ebbf0eee3
--- /dev/null
+++ b/litgpt/lora.py
@@ -0,0 +1,662 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+# Derived from https://github.com/microsoft/LoRA
+# ------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
+# ------------------------------------------------------------------------------------------
+
+r"""
+ Low Ranking Adaptation for LLMs scheme.
+
+ ┌───────────────────┐
+ ┆ h ┆
+ └───────────────────┘
+ ▲
+ |
+ +
+ / \
+ ┌─────────────────┐ ╭───────────────╮ Matrix initialization:
+ ┆ ┆ \ B / B = 0
+ ┆ pretrained ┆ \ r*d / A = N(0, sigma^2)
+ ┆ weights ┆ ╰─────────╯
+ ┆ ┆ | r | r - rank
+ ┆ W e R^(d*d) ┆ | ◀─────▶ |
+ ┆ ┆ ╭─────────╮
+ └─────────────────┘ / A \
+ ▲ / d*r \
+ \ ╰───────────────╯
+ \ ▲
+ \ /
+ \ /
+ ┌───────────────────┐
+ ┆ x ┆
+ └───────────────────┘
+
+With LoRA (Low Ranking Adaptation: https://arxiv.org/abs/2106.09685) instead of learning weights of size d*d,
+we can freeze the pretrained weights and instead learn two matrices of size d*r and r*d (they will store weight updates
+for the pretrained weights): the number of parameters in this case will be reduced drastically (depending on the rank of
+course) yet after multiplication of matrices d*r and r*d we will get a matrix d*d which we can sum with frozen
+pretrained weights and thus fine-tune the model.
+
+The goal of this approach is to move weight updates into a separate matrix which is decomposed with
+two matrices of a lower rank.
+"""
+
+import math
+from dataclasses import dataclass
+from typing import Any, Dict, Optional, Tuple, Type, Union
+
+import torch
+import torch.nn as nn
+from torch.nn import functional as F
+from typing_extensions import Self
+
+import litgpt
+from litgpt.config import Config as BaseConfig
+from litgpt.model import GPT as BaseModel
+from litgpt.model import Block as BaseBlock
+from litgpt.model import CausalSelfAttention as BaseCausalSelfAttention
+from litgpt.scripts.convert_hf_checkpoint import qkv_reassemble
+from litgpt.utils import map_old_state_dict_weights
+
+
+class LoRALayer(nn.Module):
+ def __init__(self, r: int, lora_alpha: int, lora_dropout: float):
+ """Store LoRA specific attributes in a class.
+
+ Args:
+ r: rank of the weight update matrices. To make sense of using LoRA the rank should be smaller than the rank of
+ the weights of the model. The rank can be as low as 1: https://arxiv.org/pdf/2106.09685.pdf (section 7.2)
+ lora_alpha: alpha is needed for scaling updates as alpha/r
+ "This scaling helps to reduce the need to retune hyperparameters when we vary r"
+ https://arxiv.org/pdf/2106.09685.pdf (section 4.1)
+ lora_dropout: dropout that is applied on the input in the LoRA branch (before multiplying by matrix A)
+ """
+ super().__init__()
+ assert r >= 0
+ self.r = r
+ self.lora_alpha = lora_alpha
+ # Optional dropout
+ if lora_dropout > 0.0:
+ self.lora_dropout = nn.Dropout(p=lora_dropout)
+ else:
+ self.lora_dropout = lambda x: x
+ # Mark the weight as unmerged
+ self.merged = False
+
+
+class LoRALinear(LoRALayer):
+ # LoRA implemented in a dense layer
+ def __init__(
+ self,
+ # ↓ this part is for pretrained weights
+ in_features: int,
+ out_features: int,
+ # ↓ the remaining part is for LoRA
+ r: int = 0,
+ lora_alpha: int = 1,
+ lora_dropout: float = 0.0,
+ **kwargs: Any,
+ ):
+ """LoRA wrapper around linear class.
+
+ This class has three weight matrices:
+ 1. Pretrained weights are stored as `self.linear.weight`
+ 2. LoRA A matrix as `self.lora_A`
+ 3. LoRA B matrix as `self.lora_B`
+ Only LoRA's A and B matrices are updated, pretrained weights stay frozen.
+
+ Args:
+ in_features: number of input features of the pretrained weights
+ out_features: number of output features of the pretrained weights
+ r: rank of the weight update matrices. To make sense of using LoRA the rank should be smaller than the rank of
+ the weights of the model. The rank can be as low as 1: https://arxiv.org/pdf/2106.09685.pdf (section 7.2)
+ lora_alpha: alpha is needed for scaling updates as alpha/r
+ "This scaling helps to reduce the need to retune hyperparameters when we vary r"
+ https://arxiv.org/pdf/2106.09685.pdf (section 4.1)
+ lora_dropout: dropout that is applied on the input in the LoRA branch (before multiplying by matrix A)
+ """
+ super().__init__(r=r, lora_alpha=lora_alpha, lora_dropout=lora_dropout)
+ self.linear = torch.nn.Linear(in_features, out_features, **kwargs)
+
+ # Actual trainable parameters
+ if r > 0:
+ self.lora_A = nn.Parameter(torch.empty((r, in_features)))
+ self.lora_B = nn.Parameter(torch.empty((out_features, r)))
+ self.scaling = self.lora_alpha / self.r
+ self.reset_parameters()
+
+ def reset_parameters(self) -> None:
+ """Reset all the weights, even including pretrained ones."""
+ if hasattr(self, "lora_A"):
+ # initialize A the same way as the default for nn.Linear and B to zero
+ # Wondering why 'a' is equal to math.sqrt(5)?: https://github.com/pytorch/pytorch/issues/15314
+ nn.init.kaiming_uniform_(self.lora_A, a=math.sqrt(5))
+ nn.init.zeros_(self.lora_B)
+
+ def get_lora_AB(self) -> torch.Tensor:
+ """Return merged lora_A and lora_B matrices with the same shape as the pretrained weights."""
+ return (self.lora_B @ self.lora_A) * self.scaling
+
+ def merge(self) -> None:
+ """Merges the LoRA weights into the full-rank weights (W = W + delta_W)."""
+ if self.r > 0 and not self.merged:
+ pretrained_dtype = self.linear.weight.data.dtype
+ lora_data = self.get_lora_AB()
+ # if only the pretrained are in quantized form - dequantize, sum with LoRA and quantize the result
+ if pretrained_dtype == torch.uint8:
+ import bitsandbytes as bnb
+
+ weight = self.linear.weight
+ # dequantize the pretrained weights
+ weight_data = bnb.functional.dequantize_4bit(weight.data, weight.quant_state).to(lora_data.dtype)
+ # add pretrained and LoRA weights
+ weight_data += lora_data
+ # assign updated weights and quantize by moving to CUDA device
+ self.linear.weight = bnb.nn.Params4bit(weight_data, requires_grad=False, **weight.__dict__)
+ self.linear.weight.cuda(weight.device)
+ else:
+ # self.linear might be on CPU and lora_data on CUDA
+ # the inplace add will preserve the dtype of linear.weight
+ self.linear.weight.data += lora_data.to(device=self.linear.weight.data.device)
+ self.merged = True
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ # if weights are merged or rank is less or equal to zero (LoRA is disabled) - it's only a regular nn.Linear forward pass;
+ # otherwise in addition do the forward pass with LoRA weights and add it's output to the output from pretrained weights
+ pretrained = self.linear(x)
+ if self.r == 0 or self.merged:
+ return pretrained
+ lora = (self.lora_dropout(x) @ self.lora_A.transpose(0, 1) @ self.lora_B.transpose(0, 1)) * self.scaling
+ return pretrained + lora
+
+
+class LoRAQKVLinear(LoRALinear):
+ # LoRA implemented in a dense layer
+ def __init__(
+ self,
+ # ↓ this part is for pretrained weights
+ in_features: int,
+ out_features: int,
+ # ↓ the remaining part is for LoRA
+ head_size: int,
+ n_head: int,
+ n_query_groups: int,
+ r: int = 0,
+ lora_alpha: int = 1,
+ lora_dropout: float = 0.0,
+ enable_lora: Union[bool, Tuple[bool, bool, bool]] = False,
+ **kwargs: Any,
+ ):
+ """LoRA wrapper around linear class that is used for calculation of q, k and v matrices.
+
+ This class has three weight matrices:
+ 1. Pretrained weights are stored as `self.linear.weight`
+ 2. LoRA A matrix as `self.lora_A`
+ 3. LoRA B matrix as `self.lora_B`
+ Only LoRA's A and B matrices are updated, pretrained weights stay frozen.
+
+ Args:
+ in_features: number of input features of the pretrained weights
+ out_features: number of output features of the pretrained weights
+ head_size: size of a single attention head
+ n_head: number of attention heads
+ n_query_groups: number of query groups (see diagram in `litgpt/config.py`)
+ r: rank of the weight update matrices. To make sense of using LoRA the rank should be smaller than the rank of
+ the weights of the model. The rank can be as low as 1: https://arxiv.org/pdf/2106.09685.pdf (section 7.2)
+ lora_alpha: alpha is needed for scaling updates as alpha/r
+ "This scaling helps to reduce the need to retune hyperparameters when we vary r"
+ https://arxiv.org/pdf/2106.09685.pdf (section 4.1)
+ lora_dropout: dropout that is applied on the input in the LoRA branch (before multiplying by matrix A)
+ enable_lora: MergeLinear class is for attention mechanism where qkv are calculated with a single weight matrix. If we
+ don't want to apply LoRA we can set it as False. For example if we want to apply LoRA only to `query`
+ and `value` but keep `key` without weight updates we should pass `[True, False, True]`
+ """
+ super(LoRALinear, self).__init__(r=r, lora_alpha=lora_alpha, lora_dropout=lora_dropout)
+ self.linear = torch.nn.Linear(in_features, out_features, **kwargs)
+ self.head_size = head_size
+ self.n_head = n_head
+ self.n_query_groups = n_query_groups
+ if isinstance(enable_lora, bool):
+ enable_lora = [enable_lora] * 3
+ assert len(enable_lora) == 3
+ self.enable_lora = enable_lora
+
+ # Actual trainable parameters
+ # To better understand initialization let's imagine that we have such parameters:
+ # ⚬ in_features: 128 (embeddings_size)
+ # ⚬ out_features: 384 (3 * embedding_size)
+ # ⚬ r: 2
+ # ⚬ enable_lora: [True, False, True]
+ if r > 0 and any(enable_lora):
+ self.lora_A = nn.Parameter(torch.empty((r * sum(enable_lora), in_features))) # (4, 128)
+ enable_q, enable_k, enable_v = enable_lora
+ # qkv_shapes will be used to split a tensor with weights correctly
+ qkv_shapes = (
+ # if `head_size` is explicitly specified in the config, `n_embd` (or `in_features`)
+ # might not be equal to `head_size * n_head`, thus we use it directly here
+ head_size * n_head * enable_q,
+ head_size * n_query_groups * enable_k,
+ head_size * n_query_groups * enable_v,
+ )
+ self.qkv_shapes = [s for s in qkv_shapes if s]
+ self.lora_B = nn.Parameter(torch.empty(sum(self.qkv_shapes), r)) # (256, 2))
+ # Notes about shapes above
+ # - self.lora_A has shape (4, 128): 4 because rank is 2 and LoRA is applied only to two matrices;
+ # 128 is the input size of the x (embedding size). (4, 128) and not (128, 4) because later on in
+ # F.linear function weights are automatically transposed. In addition conv1d requires channels to
+ # be before seq length
+ # - self.lora_B has shape (256, 2): 256 because LoRA is applied only to two matrices, so the output is
+ # 128*2; 2 tells to have two channels per group for group convolution
+
+ # Scaling:
+ # This balances the pretrained model`s knowledge and the new task-specific adaptation
+ # https://lightning.ai/pages/community/tutorial/lora-llm/
+ # So, set alpha to 1.0 to fully add LoRA. If the LoRA seems to have too much effect (i.e., overfitted), set
+ # alpha to lower value. If the LoRA seems to have too little effect, set alpha to higher than 1.0. You can
+ # tune these values to your needs. This value can be even slightly greater than 1.0!
+ # https://github.com/cloneofsimo/lora
+ self.scaling = self.lora_alpha / self.r
+
+ self.reset_parameters()
+
+ @property
+ def lora_ind(self) -> torch.Tensor:
+ """Lazy creation of a buffer with LoRA indices to overcome the limitation when FSDP with meta device is used."""
+ # Indices are needed to properly pad weight updates with zeros.
+ if not hasattr(self, "_lora_ind"):
+ enable_q, enable_k, enable_v = self.enable_lora
+ kv_embd_size = self.linear.in_features // (self.n_head // self.n_query_groups)
+ lora_ind = []
+ if enable_q:
+ lora_ind.extend(range(0, self.linear.in_features))
+ if enable_k:
+ lora_ind.extend(range(self.linear.in_features, self.linear.in_features + kv_embd_size))
+ if enable_v:
+ lora_ind.extend(range(self.linear.in_features + kv_embd_size, self.linear.out_features))
+ self.register_buffer(
+ "_lora_ind", torch.tensor(lora_ind, device=self.linear.weight.device), persistent=False
+ )
+
+ return self._lora_ind
+
+ def zero_pad(self, x: torch.Tensor) -> torch.Tensor:
+ """Properly pad the last dimension of weight updates with zeros.
+
+ If, based on `self.enable_lora`, we want to fine-tune queries and values, but not keys,
+ then the weights update should be:
+
+ [[ΔW,ΔW,ΔW, ..., 0,0,0, ..., ΔW,ΔW,ΔW,],
+ [....................................],
+ [ΔW,ΔW,ΔW, ..., 0,0,0, ..., ΔW,ΔW,ΔW,]]
+ ↑ ↑ ↑
+ ________________________________________
+ | query | key | value |
+ ----------------------------------------
+
+ Args:
+ x: tensor with weights update that will be padded with zeros if necessary
+
+ Returns:
+ A tensor with weight updates and zeros for deselected q, k or v
+ """
+ # we need to do zero padding only if LoRA is disabled for one of QKV matrices
+ if all(self.enable_lora):
+ return x
+
+ # Let's image that:
+ # ⚬ input x has shape (64, 64, 256): (batch_size, sequence_length, embeddings_size)
+ # ⚬ embeddings_size: 128
+ # ⚬ self.linear.out_features: 384 (3 * embeddings_size)
+ # ⚬ enable_lora: [True, False, True]
+ # Then x has embeddings_size of 256 (2 * 128 as enable_lora only for query and value, not keys) and expected
+ # embeddings_size is 384 (self.linear.out_features), so that means that we need to pad from 256 to 384 with zeros, but
+ # only for key updates (this is where self.lora_ind comes in handy)
+
+ result = x.new_zeros(*x.shape[:-1], self.linear.out_features) # (64, 64, 384)
+ if result.device.type == "mps":
+ result[..., self.lora_ind] = x
+ return result
+ else:
+ return result.index_copy_(dim=-1, index=self.lora_ind, source=x) # (64, 64, 384)
+
+ def conv1d(self, input: torch.Tensor, weight: torch.Tensor) -> torch.Tensor:
+ """An extension of the `torch.nn.functional.conv1d` function with a logic specific to grouped queries.
+
+ If the number of heads is equal to the number of query groups - grouped queries are disabled
+ (see scheme in `litgpt/config.py:Config`). In this case the combined QKV matrix consists of equally sized
+ query, key and value parts, which means we can utilize `groups` argument from `conv1d`: with this argument the
+ input and weight matrices will be split in equally sized parts and applied separately (like having multiple
+ conv layers side by side).
+
+ Otherwise QKV matrix consists of unequally sized parts and thus we have to split input and weight matrices manually,
+ apply each part of the weight matrix to the corresponding input's part and concatenate the result.
+
+ Args:
+ input: input matrix of shape (B, C, T)
+ weight: weight matrix of shape (C_output, rank, 1).
+ "C_output" is defined as a sum of embedding sizes for each enabled LoRA layer (see init method of the class).
+
+ Returns:
+ A tensor with a shape (B, C_output, T)
+
+ """
+ if self.n_head == self.n_query_groups:
+ return F.conv1d(input, weight, groups=sum(self.enable_lora)) # (B, C_output, T)
+
+ # Notation:
+ # ⚬ N: number of enabled LoRA layers (self.enable_lora)
+ # ⚬ C_output': embeddings size for each LoRA layer (not equal in size)
+ # ⚬ r: rank of all LoRA layers (equal in size)
+
+ input_splitted = input.chunk(sum(self.enable_lora), dim=1) # N * (B, C // N, T)
+ weight_splitted = weight.split(self.qkv_shapes) # N * (C_output', r, 1)
+ return torch.cat(
+ [F.conv1d(a, b) for a, b in zip(input_splitted, weight_splitted)],
+ dim=1, # (B, C_output', T)
+ ) # (B, C_output, T)
+
+ def get_lora_AB(self) -> torch.Tensor:
+ """Return merged lora_A and lora_B matrices with the same shape as the pretrained weights."""
+ # Let's assume that:
+ # ⚬ self.linear.weight.data: (384, 128) or (3 * embedding_size, embedding_size)
+ # ⚬ self.lora_A.data: (4, 128)
+ # ⚬ self.lora_B.data: (256, 2)
+ lora = self.conv1d(
+ self.lora_A.data.unsqueeze(0), # (4, 128) -> (1, 4, 128)
+ self.lora_B.data.unsqueeze(-1), # (256, 2) -> (256, 2, 1)
+ ).squeeze(0) # (1, 4, 128) @ (256, 2, 1) -> (1, 256, 128) -> (256, 128)
+ return self.zero_pad(lora.T * self.scaling).T # (256, 128) after zero_pad (384, 128)
+
+ def merge(self) -> None:
+ """Merges the LoRA weights into the full-rank weights (W = W + delta_W)."""
+ if self.r > 0 and any(self.enable_lora) and not self.merged:
+ super().merge()
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ """Do the forward pass.
+
+ If LoRA's weights are merged with pretrained ones then it's a simple matrix multiplication.
+ If not, then multiply pretrained weights with input, apply LoRA on input and do summation.
+
+ Args:
+ x: input tensor of shape (batch_size, context_length, embedding_size)
+
+ Returns:
+ Output tensor of shape (batch_size, context_length, 3 * embedding_size)
+ """
+
+ # Let's assume that:
+ # ⚬ x: (64, 64, 128) or (batch_size, context_length, embedding_size)
+ # ⚬ self.linear.weight: (384, 128) or (3 * embedding_size, embedding_size)
+ # ⚬ self.lora_A.data: (4, 128)
+ # ⚬ self.lora_B.data: (256, 2)
+
+ # if weights are merged or LoRA is disabled (r <= 0 or all `enable_lora` are False) - it's only a regular nn.Linear forward pass;
+ # otherwise in addition do the forward pass with LoRA weights and add it's output to the output from pretrained weights
+ pretrained = self.linear(x)
+ if self.r == 0 or not any(self.enable_lora) or self.merged:
+ return pretrained
+ after_A = F.linear(self.lora_dropout(x), self.lora_A) # (64, 64, 128) @ (4, 128) -> (64, 64, 4)
+ # For F.conv1d:
+ # ⚬ input: input tensor of shape (mini-batch, in_channels, iW)
+ # ⚬ weight: filters of shape (out_channels, in_channels/groups, kW)
+ after_B = self.conv1d(
+ after_A.transpose(-2, -1), # (64, 64, 4) -> (64, 4, 64)
+ self.lora_B.unsqueeze(-1), # (256, 2) -> (256, 2, 1)
+ ).transpose(-2, -1) # (64, 4, 64) @ (256, 2, 1) -> (64, 256, 64) -> (64, 64, 256)
+ lora = self.zero_pad(after_B) * self.scaling # (64, 64, 256) after zero_pad (64, 64, 384)
+ return pretrained + lora
+
+
+def mark_only_lora_as_trainable(model: nn.Module, bias: str = "none") -> None:
+ """Freeze all modules except LoRA's and depending on 'bias' value unfreezes bias weights.
+
+ Args:
+ model: model with LoRA layers
+ bias:
+ ``"none"``: all bias weights will be frozen,
+ ``"lora_only"``: only bias weight for LoRA layers will be unfrozen,
+ ``"all"``: all bias weights will be unfrozen.
+
+ Raises:
+ NotImplementedError: if `bias` not in ["none", "lora_only", "all"]
+ """
+ # freeze all layers except LoRA's
+ for n, p in model.named_parameters():
+ if "lora_" not in n:
+ p.requires_grad = False
+
+ # depending on the `bias` value unfreeze bias weights
+ if bias == "none":
+ return
+ if bias == "all":
+ for n, p in model.named_parameters():
+ if "bias" in n:
+ p.requires_grad = True
+ elif bias == "lora_only":
+ for m in model.modules():
+ if isinstance(m, LoRALayer) and hasattr(m, "bias") and m.bias is not None:
+ m.bias.requires_grad = True
+ else:
+ raise NotImplementedError
+
+
+def lora_filter(key: str, value: Any) -> bool:
+ return "lora_" in key
+
+
+@dataclass
+class Config(BaseConfig):
+ """
+ Args:
+ lora_r: rank of the weight update matrices. To make sense of using LoRA the rank should be smaller than the rank of
+ the weights of the model. The rank can be as low as 1: https://arxiv.org/pdf/2106.09685.pdf (section 7.2)
+ lora_alpha: alpha is needed for scaling updates as alpha/r
+ "This scaling helps to reduce the need to retune hyperparameters when we vary r"
+ https://arxiv.org/pdf/2106.09685.pdf (section 4.1)
+ lora_dropout: dropout that is applied on the input in the LoRA branch (before multiplying by matrix A)
+ lora_*: whether to apply LoRA to the specified weights or not
+ """
+
+ lora_r: int = 0
+ lora_alpha: int = 1
+ lora_dropout: float = 0.0
+ lora_query: bool = False
+ lora_key: bool = False
+ lora_value: bool = False
+ lora_projection: bool = False
+ lora_mlp: bool = False
+ lora_head: bool = False
+
+ @property
+ def mlp_class(self) -> Type:
+ return getattr(litgpt.lora, self.mlp_class_name)
+
+
+class GPT(BaseModel):
+ # Copy & paste from :class:`model.GPT`. Note that :class:`Block` is new here.
+ def __init__(self, config: Config) -> None:
+ nn.Module.__init__(self)
+ assert config.padded_vocab_size is not None
+ self.config = config
+
+ self.lm_head = create_lora_linear(
+ config,
+ config.n_embd,
+ config.padded_vocab_size,
+ bias=config.lm_head_bias,
+ use_r=config.lora_head,
+ )
+ self.transformer = nn.ModuleDict(
+ dict(
+ wte=nn.Embedding(config.padded_vocab_size, config.n_embd),
+ h=nn.ModuleList(Block(config, block_idx) for block_idx in range(config.n_layer)),
+ ln_f=config.norm_class(config.n_embd, eps=config.norm_eps),
+ )
+ )
+ self.mask_cache: Optional[torch.Tensor] = None
+ self.max_seq_length = self.config.block_size
+
+ @classmethod
+ def from_name(cls, name: str, **kwargs: Any) -> Self:
+ return cls(Config.from_name(name, **kwargs))
+
+ def _init_weights(self, module: nn.Module) -> None:
+ """Meant to be used with `gpt.apply(gpt._init_weights)`. Unused method left for completeness."""
+ super()._init_weights(module)
+ if isinstance(module, LoRALinear):
+ module.reset_parameters()
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {"lm_head.weight": "lm_head.linear.weight", "lm_head.bias": "lm_head.linear.bias"}
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class Block(BaseBlock):
+ def __init__(self, config: Config, block_idx: int) -> None:
+ super().__init__(config, block_idx)
+ self.attn = CausalSelfAttention(config, block_idx)
+ self.mlp = config.mlp_class(config)
+
+
+class CausalSelfAttention(BaseCausalSelfAttention):
+ def __init__(self, config: Config, block_idx: int) -> None:
+ super().__init__(config, block_idx)
+ # key, query, value projections for all heads, but in a batch
+ shape = (config.n_head + 2 * config.n_query_groups) * config.head_size
+ self.qkv = LoRAQKVLinear(
+ in_features=config.n_embd,
+ out_features=shape,
+ r=config.lora_r,
+ lora_alpha=config.lora_alpha,
+ lora_dropout=config.lora_dropout,
+ enable_lora=(config.lora_query, config.lora_key, config.lora_value),
+ bias=config.bias or config.attn_bias,
+ # for MQA/GQA support
+ head_size=config.head_size,
+ n_head=config.n_head,
+ n_query_groups=config.n_query_groups,
+ )
+ # output projection
+ self.proj = create_lora_linear(
+ config,
+ config.head_size * config.n_head,
+ config.n_embd,
+ use_r=config.lora_projection,
+ )
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base and/or legacy checkpoints."""
+ mapping = {
+ "qkv.weight": "qkv.linear.weight",
+ "qkv.bias": "qkv.linear.bias",
+ "proj.weight": "proj.linear.weight",
+ "proj.bias": "proj.linear.bias",
+ }
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+
+ for attr in ("weight", "bias"):
+ legacy_key = f"{prefix}attn.linear.{attr}"
+ current_key = f"{prefix}qkv.linear.{attr}"
+ if legacy_key in state_dict:
+ state_dict[current_key] = qkv_reassemble(state_dict.pop(legacy_key), self.config)
+
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+def create_lora_linear(
+ config: Config,
+ in_size: int,
+ out_size: int,
+ bias: Optional[Union[float, bool]] = None,
+ use_r: Optional[bool] = None,
+) -> LoRALinear:
+ if bias is None:
+ bias = config.bias
+ if use_r is None:
+ use_r = config.lora_mlp
+ return LoRALinear(
+ in_size,
+ out_size,
+ bias=bias,
+ r=(config.lora_r if use_r else 0),
+ lora_alpha=config.lora_alpha,
+ lora_dropout=config.lora_dropout,
+ )
+
+
+class GptNeoxMLP(litgpt.model.GptNeoxMLP):
+ def __init__(self, config: Config) -> None:
+ nn.Module.__init__(self)
+ self.fc = create_lora_linear(config, config.n_embd, config.intermediate_size)
+ self.proj = create_lora_linear(config, config.intermediate_size, config.n_embd)
+ self.config = config
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {
+ "fc.weight": "fc.linear.weight",
+ "fc.bias": "fc.linear.bias",
+ "proj.weight": "proj.linear.weight",
+ "proj.bias": "proj.linear.bias",
+ }
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class LLaMAMLP(litgpt.model.LLaMAMLP):
+ def __init__(self, config: Config, intermediate_size: Optional[int] = None) -> None:
+ nn.Module.__init__(self)
+ self.intermediate_size = intermediate_size or config.intermediate_size
+ self.fc_1 = create_lora_linear(config, config.n_embd, self.intermediate_size)
+ self.fc_2 = create_lora_linear(config, config.n_embd, self.intermediate_size)
+ self.proj = create_lora_linear(config, self.intermediate_size, config.n_embd)
+ self.config = config
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {
+ "fc_1.weight": "fc_1.linear.weight",
+ "fc_1.bias": "fc_1.linear.bias",
+ "fc_2.weight": "fc_2.linear.weight",
+ "fc_2.bias": "fc_2.linear.bias",
+ "proj.weight": "proj.linear.weight",
+ "proj.bias": "proj.linear.bias",
+ }
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class GemmaMLP(LLaMAMLP):
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ x_fc_1 = self.fc_1(x)
+ x_fc_2 = self.fc_2(x)
+ x = torch.nn.functional.gelu(x_fc_1, approximate=self.config.gelu_approximate) * x_fc_2
+ return self.proj(x)
+
+
+class LLaMAMoE(litgpt.model.LLaMAMoE):
+ def __init__(self, config: Config) -> None:
+ nn.Module.__init__(self)
+ self.gate = create_lora_linear(config, config.n_embd, config.n_expert, bias=False)
+ self.experts = nn.ModuleList(
+ LLaMAMLP(config, intermediate_size=config.moe_intermediate_size) for _ in range(config.n_expert)
+ )
+ self.config = config
+
+ def _load_from_state_dict(self, state_dict: Dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with base checkpoints."""
+ mapping = {"gate.weight": "gate.linear.weight"}
+ state_dict = map_old_state_dict_weights(state_dict, mapping, prefix)
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+def merge_lora_weights(model: GPT) -> None:
+ """Merge LoRA weights into the full-rank weights to speed up inference."""
+ for module in model.modules():
+ if isinstance(module, LoRALinear):
+ module.merge()
diff --git a/litgpt/model.py b/litgpt/model.py
new file mode 100644
index 0000000000000000000000000000000000000000..c3c1833db90f9f41ba09309a031a23617877b5f0
--- /dev/null
+++ b/litgpt/model.py
@@ -0,0 +1,876 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+"""Full definition of a decoder-only transformer-based language model, all of it in this single file.
+
+Based on the nanoGPT implementation: https://github.com/karpathy/nanoGPT and
+https://github.com/EleutherAI/gpt-neox/tree/main/megatron/model.
+"""
+
+import math
+from functools import partial
+from typing import Any, List, Optional, Tuple, Union
+
+import torch
+import torch.nn as nn
+import torch.nn.functional as F
+from typing_extensions import Self
+
+from litgpt.config import Config
+from litgpt.scripts.convert_hf_checkpoint import qkv_reassemble
+
+
+class GPT(nn.Module):
+ def __init__(self, config: Config) -> None:
+ super().__init__()
+ assert config.padded_vocab_size is not None
+ self.config = config
+
+ self.lm_head = nn.Linear(config.n_embd, config.padded_vocab_size, bias=config.lm_head_bias)
+ self.transformer = nn.ModuleDict(
+ dict(
+ wte=nn.Embedding(config.padded_vocab_size, config.n_embd),
+ h=nn.ModuleList(Block(config, block_idx) for block_idx in range(config.n_layer)),
+ ln_f=config.norm_class(config.n_embd, eps=config.norm_eps),
+ )
+ )
+ self.mask_cache: Optional[torch.Tensor] = None
+ self.max_seq_length = self.config.block_size
+
+ @property
+ def max_seq_length(self) -> int:
+ return self._max_seq_length
+
+ @max_seq_length.setter
+ def max_seq_length(self, value: int) -> None:
+ """
+ When doing inference, the sequences used might be shorter than the model's context length.
+ This allows setting a smaller number to avoid allocating unused memory
+ """
+ if value > self.config.block_size:
+ raise ValueError(
+ f"Cannot attend to {value}, block size is only {self.config.block_size}."
+ " This is likely because the input text exceeds the supported context length of this model."
+ )
+ self._max_seq_length = value
+ if not hasattr(self, "cos"):
+ # first call
+ cos, sin = self.rope_cache()
+ self.register_buffer("cos", cos, persistent=False)
+ self.register_buffer("sin", sin, persistent=False)
+ # override
+ elif value != self.cos.size(0):
+ self.cos, self.sin = self.rope_cache(device=self.cos.device)
+ # the mask and kv cache size will get updated on `set_kv_cache`. we cannot update it here because we don't know
+ # if the kv cache is expected
+ if self.mask_cache is not None and self.mask_cache.shape[-1] < value:
+ print(
+ f"Warning: KV cache has length {self.mask_cache.shape[-1]} < {value} = max_seq_length. Call 'set_kv_cache' before doing any forwards!"
+ )
+
+ def reset_parameters(self) -> None:
+ # Trigger resetting the rope-cache
+ self.cos, self.sin = self.rope_cache(device=self.cos.device)
+
+ def _init_weights(self, module: nn.Module) -> None:
+ """Meant to be used with `gpt.apply(gpt._init_weights)`."""
+ if isinstance(module, nn.Linear):
+ torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
+ if module.bias is not None:
+ torch.nn.init.zeros_(module.bias)
+ elif isinstance(module, nn.Embedding):
+ torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
+
+ def forward(
+ self,
+ idx: torch.Tensor,
+ input_pos: Optional[torch.Tensor] = None,
+ input_pos_maxp1: Optional[int] = None,
+ lm_head_chunk_size: int = 0,
+ ) -> Union[torch.Tensor, List[torch.Tensor]]:
+ """
+ If `input_pos` is provided, the KV cache uses K and V vectors for
+ positions smaller than entries in `input_pos`. For efficiency, pass
+ `input_pos_maxp1` as `max(input_pos) + 1` if already available from
+ your forward algorithm. This slices the KV cache buffers and speeds
+ up multi-head attention.
+
+ Without `input_pos_maxp1`, the computation uses the full KV cache
+ (`max_seq_length`) with masking applied. Note that inferring
+ `input_pos_maxp1` from `input_pos` causes graph breaks and prevents
+ compilation.
+
+ Args:
+ idx: Token indices of input sequences, shape `(B, T)`, where `B`
+ is batch size.
+ input_pos: Optional. Positions of input tokens. The default is
+ `arange(T)`. Can have shape `(T,)` or `(B, T)` (batched index).
+ input_pos_maxp1: Optional. See above.
+ lm_head_chunk_size: Optional. If `lm_head_chunk_size > 0`, the final
+ `lm_head` computation is done in chunks of this size.
+
+ Returns:
+ Logit outputs, shape `(B, T, config.padded_vocab_size)`. If
+ `lm_head_chunk_size > 0`, this is a list of chunks of shape
+ `(B, lm_head_chunk_size, config.padded_vocab_size)`, the final
+ entry can be shorter.
+
+ """
+ T = idx.size(1)
+ if self.max_seq_length < T:
+ raise ValueError(f"Cannot forward sequence of length {T}, max seq length is only {self.max_seq_length}.")
+
+ if input_pos is not None: # use the kv cache
+ if input_pos.dim() > 2:
+ # otherwise, things go wrong in `apply_rope`
+ raise ValueError(f"input_pos must have 1 or 2 dimensions, input_pos.shape = {input_pos.shape}")
+ if input_pos.shape[-1] != T:
+ raise ValueError(f"input_pos.shape[-1] = {input_pos.shape[-1]} != {T} = idx.shape[1], must be the same")
+ cos = batched_index_select(self.cos, 0, input_pos)
+ sin = batched_index_select(self.sin, 0, input_pos)
+ if input_pos.dim() == 1:
+ cos = cos.unsqueeze(0)
+ sin = sin.unsqueeze(0)
+ if self.mask_cache is None:
+ raise TypeError("You need to call `gpt.set_kv_cache()`")
+ mask = batched_index_select(self.mask_cache, 2, input_pos)
+ if mask.dim() > 4:
+ # the mask cache has a batch dim of 1 in addition to the one
+ # we get if input_pos has a batch dimension
+ mask = mask.view(*(mask.shape[0:1] + mask.shape[2:]))
+ if input_pos_maxp1 is not None:
+ # Shorten final dimension so it just covers all `input_pos` entries
+ if input_pos_maxp1 > self.max_seq_length:
+ raise ValueError(f"Positions in 'input_pos' must be in [0,{self.max_seq_length})")
+ mask = mask[..., :input_pos_maxp1]
+ else:
+ # unsqueeze to have a batch dimension
+ cos = self.cos[:T].unsqueeze(0)
+ sin = self.sin[:T].unsqueeze(0)
+ # `cos`, `sin` have shape (1, T, config.rope_n_elem)
+ mask = None # defaults to causal mask
+ input_pos_maxp1 = None
+
+ x = self.transformer.wte(idx) # token embeddings of shape (B, T, n_embd)
+ if self.config.scale_embeddings:
+ x = x * torch.tensor(self.config.n_embd**0.5, dtype=x.dtype)
+
+ for block_idx, block in enumerate(self.transformer.h):
+ if self.config.rope_indices is not None:
+ x = block(
+ x,
+ cos[..., self.config.rope_indices[block_idx]],
+ sin[..., self.config.rope_indices[block_idx]],
+ mask,
+ input_pos,
+ input_pos_maxp1,
+ )
+ else:
+ x = block(x, cos, sin, mask, input_pos, input_pos_maxp1)
+ x = self.transformer.ln_f(x)
+ clamp_head = (
+ partial(do_softcapping, thresh=self.config.final_logit_softcapping)
+ if self.config.final_logit_softcapping is not None
+ else nn.Identity()
+ )
+ if lm_head_chunk_size > 0:
+ # chunk the lm head logits to reduce the peak memory used by autograd
+ return [clamp_head(self.lm_head(x_i)) for x_i in x.split(lm_head_chunk_size, dim=1)]
+ else:
+ return clamp_head(self.lm_head(x)) # (B, T, padded_vocab_size)
+
+ @classmethod
+ def from_name(cls, name: str, **kwargs: Any) -> Self:
+ return cls(Config.from_name(name, **kwargs))
+
+ def rope_cache(self, device: Optional[torch.device] = None) -> Tuple[torch.Tensor, torch.Tensor]:
+ if self.config.rope_adjustments is None:
+ extra_config = None
+
+ else:
+ adjusted_params_required = ["factor", "low_freq_factor", "high_freq_factor", "original_max_seq_len"]
+ params_present = [param in self.config.rope_adjustments for param in adjusted_params_required]
+ num_params_present = sum(params_present)
+
+ if num_params_present == 0:
+ extra_config = None # uses standard RoPE
+ elif num_params_present == 4:
+ # These parameters should always be used together so that we don't interfere with standard rope
+ extra_config = {name: self.config.rope_adjustments[name] for name in adjusted_params_required}
+ elif "factor" in self.config.rope_adjustments:
+ # linear RoPE
+ adjusted_params_required = ["factor"]
+ extra_config = {name: self.config.rope_adjustments[name] for name in adjusted_params_required}
+ else:
+ # Some but not all parameters are specified; raise an error
+ missing_params = [
+ param for param, present in zip(adjusted_params_required, params_present) if not present
+ ]
+ raise ValueError(
+ f"The following adjusted RoPE parameters are missing in rope_adjustments: {', '.join(missing_params)}. "
+ "All adjusted RoPE parameters must be specified together."
+ )
+
+ return build_rope_cache(
+ seq_len=self.max_seq_length,
+ n_elem=self.config.rope_n_elem,
+ device=device,
+ condense_ratio=self.config.rope_condense_ratio,
+ base=self.config.rope_base,
+ extra_config=extra_config,
+ rope_local_base_freq=self.config.rope_local_base_freq,
+ )
+
+ def set_kv_cache(
+ self,
+ batch_size: int,
+ max_seq_length: Optional[int] = None,
+ rope_cache_length: Optional[int] = None,
+ device: Optional[torch.device] = None,
+ dtype: Optional[torch.dtype] = None,
+ ) -> None:
+ if rope_cache_length is None:
+ if len(self.cos.shape) == 2:
+ rope_cache_length = self.cos.size(-1)
+ else:
+ rope_cache_length = self.cos[..., 0].size(-1)
+
+ if max_seq_length is None:
+ max_seq_length = self.max_seq_length
+
+ # initialize the kv cache for all blocks
+ for block in self.transformer.h:
+ block.attn.kv_cache = block.attn.build_kv_cache(
+ batch_size,
+ max_seq_length,
+ rope_cache_length,
+ device,
+ dtype,
+ )
+
+ if self.mask_cache is None or self.mask_cache.size(3) != max_seq_length:
+ # passing `attn_mask` to SDPA disables the flash implementation. since we only need the mask
+ # for the kv-cache support (only during inference), we only create it in that situation
+ self.mask_cache = build_mask_cache(max_seq_length, device)
+
+ def clear_kv_cache(self) -> None:
+ self.mask_cache = None
+ for block in self.transformer.h:
+ block.attn.kv_cache = None
+
+
+class Block(nn.Module):
+ def __init__(
+ self,
+ config: Config,
+ block_idx: int,
+ ) -> None:
+ super().__init__()
+ if not config.parallel_residual and config.shared_attention_norm:
+ raise NotImplementedError(
+ "No checkpoint amongst the ones we support uses this configuration"
+ " (non-parallel residual and shared attention norm)."
+ )
+
+ self.norm_1 = nn.Identity() if not config.norm_1 else config.norm_class(config.n_embd, eps=config.norm_eps)
+ self.attn = CausalSelfAttention(config, block_idx)
+ self.post_attention_norm = (
+ config.norm_class(config.n_embd, eps=config.norm_eps) if config.post_attention_norm else nn.Identity()
+ )
+ self.norm_2 = (
+ nn.Identity()
+ if not config.norm_2
+ else (None if config.shared_attention_norm else config.norm_class(config.n_embd, eps=config.norm_eps))
+ )
+ self.mlp = config.mlp_class(config)
+ self.post_mlp_norm = (
+ config.norm_class(config.n_embd, eps=config.norm_eps) if config.post_mlp_norm else nn.Identity()
+ )
+
+ self.config = config
+
+ def forward(
+ self,
+ x: torch.Tensor,
+ cos: torch.Tensor,
+ sin: torch.Tensor,
+ mask: Optional[torch.Tensor] = None,
+ input_pos: Optional[torch.Tensor] = None,
+ input_pos_maxp1: Optional[int] = None,
+ ) -> torch.Tensor:
+ """
+ Non-parallel residual Parallel residual
+ ┌─ x ┌─ x ──────────────────┐ Note: if `shared_attention_norm` is True,
+ │ ↓ │ ↓ ↓ the output from `norm_1` is reused
+ │ norm_1 │ norm_1 ───────► norm_2
+ │ ↓ │ ↓ ↓
+ │ attn │ attn MLP
+ │ ↓ │ ↓ ↓
+ | post_attn_norm | post_attn_norm post_mlp_norm
+ | ↓ | ↓ ↓
+ ┌─ └► + └► + ◄─────────────────┘
+ | ↓
+ │ norm_2
+ │ ↓
+ │ MLP
+ │ ↓
+ | post_mlp_norm
+ | ↓
+ └───► +
+ """
+
+ x_normed = self.norm_1(x)
+ attention_output = self.attn(x_normed, cos, sin, mask, input_pos, input_pos_maxp1)
+ attention_output = self.post_attention_norm(attention_output)
+
+ if self.config.parallel_residual:
+ if not self.config.shared_attention_norm:
+ x_normed = self.norm_2(x)
+ x = attention_output + x
+ else:
+ x = attention_output + x
+ x_normed = self.norm_2(x)
+
+ return self.post_mlp_norm(self.mlp(x_normed)) + x
+
+
+class CausalSelfAttention(nn.Module):
+ def __init__(self, config: Config, block_idx: int) -> None:
+ super().__init__()
+ # key, query and value projections for all heads, but in a batch
+ self.qkv = nn.Linear(
+ config.n_embd,
+ (config.n_head + 2 * config.n_query_groups) * config.head_size, # support for grouped/multi queries
+ bias=config.bias or config.attn_bias,
+ )
+ # output projection
+ self.proj = nn.Linear(config.head_size * config.n_head, config.n_embd, bias=config.bias)
+ # disabled by default
+ self.kv_cache: Optional[KVCache] = None
+ self.apply_sliding_window_attention = False
+ if config.sliding_window_size is not None and config.sliding_window_indices is not None:
+ self.apply_sliding_window_attention = config.sliding_window_indices[block_idx]
+
+ if config.norm_qk:
+ norm_q_size = config.n_head * config.head_size if config.norm_qk_type == "olmo2" else config.head_size
+ norm_k_size = (
+ config.n_query_groups * config.head_size if config.norm_qk_type == "olmo2" else config.head_size
+ )
+ self.norm_q = config.norm_class(norm_q_size, eps=config.norm_eps)
+ self.norm_k = config.norm_class(norm_k_size, eps=config.norm_eps)
+ else:
+ self.norm_q = self.norm_k = None
+
+ self.config = config
+ self.block_idx = block_idx
+
+ def forward(
+ self,
+ x: torch.Tensor,
+ cos: torch.Tensor,
+ sin: torch.Tensor,
+ mask: Optional[torch.Tensor] = None,
+ input_pos: Optional[torch.Tensor] = None,
+ input_pos_maxp1: Optional[int] = None,
+ ) -> torch.Tensor:
+ # Notation:
+ # - B | batch size
+ # - T | time-step (sequence length)
+ # - C | model's embeddings size (n_embd)
+ # - C* | attentions's embeddings size
+ # - hs | head size
+ # - nh_(q,k,v) | number of heads for query, key and value
+ # - n_query_groups = nh_k = nh_v | number of query groups sharing key and value heads
+ # alternative notation: num_kv_groups = n_query_groups
+ # ┌───┐┌───┐┌───┐┌───┐ ┌───┐ ┌───┐ ┌───┐
+ # │ v ││ v ││ v ││ v │ │ v │ │ v │ │ v │
+ # └───┘└───┘└───┘└───┘ └───┘ └───┘ └───┘
+ # │ │ │ │ │ │ │
+ # ┌───┐┌───┐┌───┐┌───┐ ┌───┐ ┌───┐ ┌───┐
+ # │ k ││ k ││ k ││ k │ │ k │ │ k │ │ k │
+ # └───┘└───┘└───┘└───┘ └───┘ └───┘ └───┘
+ # │ │ │ │ ┌──┴──┐ ┌──┴──┐ ┌────┬──┴─┬────┐
+ # ┌───┐┌───┐┌───┐┌───┐ ┌───┐┌───┐┌───┐┌───┐ ┌───┐┌───┐┌───┐┌───┐
+ # │ q ││ q ││ q ││ q │ │ q ││ q ││ q ││ q │ │ q ││ q ││ q ││ q │
+ # └───┘└───┘└───┘└───┘ └───┘└───┘└───┘└───┘ └───┘└───┘└───┘└───┘
+ # ◀──────────────────▶ ◀──────────────────▶ ◀──────────────────▶
+ # MHA GQA MQA
+ # n_query_groups=4 n_query_groups=2 n_query_groups=1
+ #
+ # credit https://arxiv.org/pdf/2305.13245.pdf
+ head_size = self.config.head_size
+ n_head = self.config.n_head
+ n_query_groups = self.config.n_query_groups
+ rope_n_elem = self.config.rope_n_elem
+ B, T, C = x.size() # batch size, sequence length, embedding dimensionality (n_embd)
+
+ # Perform a single multiplication operation using a combined QKV matrix to calculate `query`, `key`, and `value`
+ # instead of individually multiplying the input `x` with the respective weight matrices.
+ qkv = self.qkv(x) # (B, T, 3xC*)
+
+ # Define query, key and value sizes.
+ # If grouped/multi query is enabled, these sizes are not equal (see the diagram above).
+ query_size = n_head * head_size
+ key_size = value_size = n_query_groups * head_size
+ # Split qkv into query, key and value matrices.
+ q, k, v = qkv.split((query_size, key_size, value_size), dim=-1) # 3x(B, T, C*)
+
+ if self.config.norm_qk and self.config.norm_qk_type == "olmo2":
+ q = self.norm_q(q)
+ k = self.norm_k(k)
+
+ # To place the num_heads (nh) dimension right after the batch (B) dimension, the first step is to decouple the
+ # embedding size (C) into num_heads (nh) and head_size (hs).
+
+ # The original GQA paper is followed here and the term query groups is used.
+ # alternative notation: Query groups are also referred to as KV groups.
+ q = q.view(B, T, n_head, head_size) # (B, T, nh_q, hs)
+ k = k.view(B, T, n_query_groups, head_size) # (B, T, n_query_groups, hs)
+ v = v.view(B, T, n_query_groups, head_size) # (B, T, n_query_groups, hs)
+
+ # The tensors `query`, `key`, and `value` are now accurately structured: within each batch element (B), there are
+ # multiple heads (nh), and within each head, there is a sequence of elements (T), each represented by a vector
+ # of size `hs`.
+ q = q.transpose(1, 2) # (B, nh_q, T, hs)
+ k = k.transpose(1, 2) # (B, nh_k, T, hs)
+ v = v.transpose(1, 2) # (B, nh_v, T, hs)
+
+ if self.config.norm_qk and self.config.norm_qk_type == "default":
+ q = self.norm_q(q)
+ k = self.norm_k(k)
+
+ # Unlike standard positional embeddings rotary embeddings must be applied at every layer.
+ q_roped = apply_rope(q[..., :rope_n_elem], cos, sin)
+ k_roped = apply_rope(k[..., :rope_n_elem], cos, sin)
+ q = torch.cat((q_roped, q[..., rope_n_elem:]), dim=-1) # (B, nh_q, T, hs)
+ k = torch.cat((k_roped, k[..., rope_n_elem:]), dim=-1) # (B, nh_k, T, hs)
+
+ # Apply kv-cache during inference.
+ if input_pos is not None:
+ if not isinstance(self.kv_cache, KVCache):
+ raise TypeError("You need to call `gpt.set_kv_cache()`")
+ k, v = self.kv_cache(input_pos, k, v)
+ if input_pos_maxp1 is not None:
+ # Subselect along sequence dimension
+ k = k[..., :input_pos_maxp1, :]
+ v = v[..., :input_pos_maxp1, :]
+ # k, v: (B, nh_k, input_pos_maxp1, hs)
+ # If input_pos_maxp1 is None -> max_seq_length
+
+ # Grouped queries: balance the number of heads across all three matrices.
+ # NOTE: flash attention requires it in training mode.
+ # Multi-query: this step can be skipped since there is only 1 head, allowing us to use broadcasting.
+ if n_query_groups != n_head and (input_pos is None or n_query_groups != 1):
+ q_per_kv = n_head // n_query_groups
+ k = k.repeat_interleave(q_per_kv, dim=1) # (B, nh_q, T, hs)
+ v = v.repeat_interleave(q_per_kv, dim=1) # (B, nh_q, T, hs)
+
+ if self.apply_sliding_window_attention:
+ """
+ Global Window Sliding window Sliding window
+ attention mask + bias = attention mask
+ ┌────────────────────────┐ ┌───────────────────────┐ ┌─────────────────────────┐
+ │ True False False False │ │ True True True True │ │ True False False False │
+ │ True True False False │ │ True True True True │ │ True True False False │
+ │ True True True False │ │ False True True True │ │ False True True False │
+ │ True True True True │ │ False False True True │ │ False False True True │
+ └────────────────────────┘ └───────────────────────┘ └─────────────────────────┘
+ """
+ if mask is None:
+ mask = torch.ones(T, T, dtype=q.dtype, device=q.device).triu(diagonal=1)
+ mask.masked_fill_(mask.bool(), float("-inf"))
+ mask = mask.view(1, 1, *mask.shape)
+ sliding_window_bias = torch.ones_like(mask).tril(diagonal=-self.config.sliding_window_size)
+ sliding_window_bias.masked_fill_(sliding_window_bias.bool(), float("-inf"))
+ mask += sliding_window_bias
+
+ # Efficient attention using Flash Attention CUDA kernels.
+ # NOTE: efficient implementation is disabled if `mask` is not None or softcapping is enabled.
+ # ↓ (B, nh, T, hs) @ (B, nh, T, hs).mT --> (B, nh, T, T) @ (B, nh, T, hs) --> (B, nh, T, hs)
+ y = self.scaled_dot_product_attention(q, k, v, mask)
+
+ # Re-assemble all head outputs side by side.
+ y = y.reshape(B, T, head_size * n_head)
+
+ # Output projection.
+ return self.proj(y) # (B, T, C)
+
+ def scaled_dot_product_attention(
+ self, q: torch.Tensor, k: torch.Tensor, v: torch.Tensor, mask: Optional[torch.Tensor] = None
+ ) -> torch.Tensor:
+ scale = 1.0 / math.sqrt(self.config.attention_scores_scalar or self.config.head_size)
+
+ # with softcapping we cannot use SDPA
+ if self.config.attention_logit_softcapping is not None:
+ scores = q @ k.mT * scale
+ scores = do_softcapping(scores, self.config.attention_logit_softcapping)
+ if mask is None:
+ mask = torch.ones(q.size(2), q.size(2), dtype=q.dtype, device=q.device).triu(diagonal=1)
+ mask.masked_fill_(mask.bool(), torch.finfo(q.dtype).min)
+ scores = scores + mask
+ scores = F.softmax(scores, dim=-1, dtype=torch.float).to(dtype=q.dtype)
+ y = scores @ v
+ else:
+ y = F.scaled_dot_product_attention(
+ q, k, v, attn_mask=mask, dropout_p=0.0, scale=scale, is_causal=mask is None
+ )
+ return y.transpose(1, 2)
+
+ def build_kv_cache(
+ self,
+ batch_size: int,
+ max_seq_length: int,
+ rope_cache_length: Optional[int] = None,
+ device: Optional[torch.device] = None,
+ dtype: Optional[torch.dtype] = None,
+ ) -> "KVCache":
+ v_shape = (batch_size, self.config.n_query_groups, max_seq_length, self.config.head_size)
+ if rope_cache_length is None:
+ if self.config.rotary_percentage != 1.0:
+ raise TypeError("Please pass the `rope_cache_length=gpt.cos.size(-1)` value")
+ k_shape = v_shape
+ else:
+ k_shape = (
+ batch_size,
+ self.config.n_query_groups,
+ max_seq_length,
+ rope_cache_length + self.config.head_size - self.config.rope_n_elem,
+ )
+ return KVCache(k_shape, v_shape, device=device, dtype=dtype)
+
+ def _load_from_state_dict(self, state_dict: dict, prefix: str, *args: Any, **kwargs: Any) -> None:
+ """For compatibility with legacy checkpoints."""
+
+ for attr in ("weight", "bias"):
+ legacy_key = f"{prefix}attn.{attr}"
+ current_key = f"{prefix}qkv.{attr}"
+ if legacy_key in state_dict:
+ state_dict[current_key] = qkv_reassemble(state_dict.pop(legacy_key), self.config)
+
+ super()._load_from_state_dict(state_dict, prefix, *args, **kwargs)
+
+
+class GptNeoxMLP(nn.Module):
+ def __init__(self, config: Config, intermediate_size: Optional[int] = None) -> None:
+ super().__init__()
+ self.intermediate_size = intermediate_size or config.intermediate_size
+ self.fc = nn.Linear(config.n_embd, self.intermediate_size, bias=config.bias)
+ self.proj = nn.Linear(self.intermediate_size, config.n_embd, bias=config.bias)
+ self.config = config
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ x = self.fc(x)
+ x = F.gelu(x, approximate=self.config.gelu_approximate)
+ return self.proj(x)
+
+
+class LLaMAMLP(nn.Module):
+ def __init__(self, config: Config, intermediate_size: Optional[int] = None) -> None:
+ super().__init__()
+ self.intermediate_size = intermediate_size or config.intermediate_size
+ self.fc_1 = nn.Linear(config.n_embd, self.intermediate_size, bias=config.bias)
+ self.fc_2 = nn.Linear(config.n_embd, self.intermediate_size, bias=config.bias)
+ self.proj = nn.Linear(self.intermediate_size, config.n_embd, bias=config.bias)
+ self.config = config
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ x_fc_1 = self.fc_1(x)
+ x_fc_2 = self.fc_2(x)
+ x = F.silu(x_fc_1) * x_fc_2
+ return self.proj(x)
+
+
+class GemmaMLP(LLaMAMLP):
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ x_fc_1 = self.fc_1(x)
+ x_fc_2 = self.fc_2(x)
+ x = F.gelu(x_fc_1, approximate=self.config.gelu_approximate) * x_fc_2
+ return self.proj(x)
+
+
+class LLaMAMoE(nn.Module):
+ def __init__(self, config: Config) -> None:
+ super().__init__()
+ self.gate = nn.Linear(config.n_embd, config.n_expert, bias=False)
+ self.experts = nn.ModuleList(
+ LLaMAMLP(config, intermediate_size=config.moe_intermediate_size) for _ in range(config.n_expert)
+ )
+ self.config = config
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ """
+ Derived from: https://github.com/mistralai/mistral-src/blob/b46d6/moe_one_file_ref.py#L203-L219
+ See also figure 1 in https://arxiv.org/abs/2211.15841
+ """
+ B, T, C = x.size() # batch size, sequence length, embedding dimensionality (n_embd)
+ x = x.view(-1, C) # (B*T, C)
+ router = self.gate(x) # (B*T, n_expert)
+ probs, indices = torch.topk(router, self.config.n_expert_per_token) # (B*T, n_expert_per_token)
+ probs = probs.softmax(dim=1, dtype=torch.float).to(dtype=x.dtype)
+ masks = indices.unsqueeze(-1) == torch.arange(self.config.n_expert, device=x.device)
+ masks = masks.permute(2, 0, 1) # (n_expert, B*T, n_expert_per_token)
+ y = torch.zeros_like(x) # (B*T, C)
+ for mask, expert in zip(masks, self.experts):
+ token_idx, expert_idx = torch.where(mask)
+ y[token_idx] += probs[token_idx, expert_idx, None] * expert(x[token_idx])
+ return y.view(B, T, C)
+
+
+def build_rope_cache(
+ seq_len: int,
+ n_elem: int,
+ device: Optional[torch.device] = None,
+ base: int = 10000,
+ condense_ratio: int = 1,
+ extra_config: Optional[dict] = None,
+ rope_local_base_freq: Optional[float] = None,
+) -> Tuple[torch.Tensor, torch.Tensor]:
+ """
+ Enhanced Transformer with Rotary Position Embedding.
+
+ Args:
+ seq_len (int): Sequence length.
+ n_elem (int): Number of elements (head dimension).
+ device (torch.device, optional): Device for tensor allocations.
+ base (int, optional): Base for computing inverse frequencies.
+ condense_ratio (int, optional): Ratio to condense the position indices.
+ extra_config (dict, optional): Configuration parameters for frequency adjustments (used by Llama 3.1 and 3.2)
+
+ Returns:
+ Tuple[torch.Tensor, torch.Tensor]: Cosine and sine caches for RoPE.
+ Shapes are `(seq_len, n_elem)`.
+ """
+
+ # Compute the inverse frequencies theta
+ theta = 1.0 / (base ** (torch.arange(0, n_elem, 2, device=device).float() / n_elem))
+
+ if extra_config is not None:
+ factor = extra_config["factor"]
+ if "original_max_seq_len" in extra_config:
+ orig_context_len = extra_config["original_max_seq_len"]
+ low_freq_factor = extra_config["low_freq_factor"]
+ high_freq_factor = extra_config["high_freq_factor"]
+
+ wavelen = 2 * torch.pi / theta
+ ratio = orig_context_len / wavelen
+ smooth_factor = (ratio - low_freq_factor) / (high_freq_factor - low_freq_factor)
+ smooth_factor = torch.clamp(smooth_factor, min=0.0, max=1.0)
+
+ # Compute adjusted_theta without masked indexing
+ adjusted_theta = (1 - smooth_factor) * (theta / factor) + smooth_factor * theta
+ theta = adjusted_theta
+ else:
+ theta = theta / factor
+
+ # Create position indices `[0, 1, ..., seq_len - 1]`
+ seq_idx = torch.arange(seq_len, device=device) / condense_ratio
+
+ # Calculate the product of position index and $\theta_i$
+ idx_theta = torch.outer(seq_idx, theta).repeat(1, 2)
+ # If `n_elem` is odd, the final dimension of `idx_theta` has size
+ # `n_elem + 1`, so need to cut something off.
+ # Due to a current bug in Hugging Face, in the case `n_elem == 1`, we leave
+ # `idx_theta`, `cos`, `sin` as is. Things work out in `apply_rope` due to
+ # broadcasting. If we shorten `idx_theta`, unit tests comparing to
+ # Hugging Face fail.
+ # https://github.com/huggingface/transformers/issues/35233
+ if idx_theta.shape[-1] > n_elem > 1:
+ idx_theta = idx_theta[..., :n_elem]
+
+ # if rope_local_base_freq is given, have a separate rope value for local embedding
+ # For now, we use default RoPE for local embedding
+ if rope_local_base_freq is not None:
+ local_theta = 1.0 / (rope_local_base_freq ** (torch.arange(0, n_elem, 2, device=device).float() / n_elem))
+ local_idx_theta = torch.outer(seq_idx, local_theta)
+ local_idx_theta = local_idx_theta.repeat(1, 2)
+ if local_idx_theta.shape[-1] > n_elem > 1:
+ local_idx_theta = local_idx_theta[..., :n_elem]
+
+ idx_theta = torch.stack((idx_theta, local_idx_theta), dim=-1)
+
+ return torch.cos(idx_theta), torch.sin(idx_theta)
+
+
+def batched_index_select(t, dim, idx):
+ """index_select for batched index and unbatched t"""
+ if idx.dim() == 1:
+ return torch.index_select(t, dim, idx)
+
+ *batch_shape, idx_size = idx.shape
+ res = torch.index_select(t, dim, idx.reshape(-1)) # flat index
+ # split out single batch idx
+ res = res.view(*t.shape[:dim], -1, idx_size, *t.shape[dim + 1 :])
+ if dim > 0:
+ # move batch dim to front, this is np.rollaxis(res, dim, 0) for tensors
+ dims = [dim] + list(range(res.dim()))
+ del dims[dim + 1]
+ res = res.permute(dims)
+ # unflatten batch dims
+ res = res.view(*batch_shape, *res.shape[1:])
+ return res
+
+
+def batched_index_copy_(t, dim, idx, val):
+ """Index copy for batched t, idx, val"""
+
+ if t.device.type == "mps":
+ # Normalize negative dimensions
+ if dim < 0:
+ dim = t.dim() + dim
+ if idx.dim() == 1:
+ idx_shape = [1] * val.dim()
+ idx_shape[dim] = -1
+ idx_expanded = idx.view(*idx_shape)
+ idx_expanded = idx_expanded.expand_as(val)
+ t.scatter_(dim, idx_expanded, val)
+ return t
+
+ elif idx.dim() == 2:
+ assert dim != 0, "Cannot index the batch dimension"
+ batch_size = idx.size(0)
+ idx_size = idx.size(1)
+ assert batch_size == t.size(0) == val.size(0)
+
+ idx_shape = [batch_size] + [1] * (val.dim() - 1)
+ idx_shape[dim] = idx_size
+ idx_expanded = idx.view(*idx_shape)
+ idx_expanded = idx_expanded.expand_as(val)
+
+ t.scatter_(dim, idx_expanded, val)
+ return t
+ else:
+ raise NotImplementedError(f"idx.dim() == {idx.dim()} not supported")
+
+ else:
+ if idx.dim() == 1:
+ return t.index_copy_(dim, idx, val)
+
+ assert idx.dim() == 2, f"multiple batch dims not yet {idx.shape=}"
+ assert dim != 0, f"cannot index batch dim {dim=}"
+ batch_size, idx_size = idx.shape
+ assert batch_size == t.size(0)
+ assert batch_size == val.size(0)
+
+ # if we can view the batch and indexed dimensions together, we could
+ # do index trickery. This is, sadly, not the case for kvcache so we
+ # fall back to for loop
+ for i in range(batch_size):
+ unbatched_dim = dim if dim < 0 else dim - 1
+ t[i].index_copy_(unbatched_dim, idx[i], val[i])
+ return t
+
+
+def apply_rope(x: torch.Tensor, cos: torch.Tensor, sin: torch.Tensor) -> torch.Tensor:
+ """
+ Applies RoPE transform to `x`. Note that `cos`, `sin` need to have a batch
+ dimension.
+
+ Args:
+ x: Input tensor, `(B, ..., T, head_size)`
+ cos: Cached cosines, `(B, T, head_size)` or `(1, T, head_size)`
+ sin: Cached sines, `(B, T, head_size)` or `(1, T, head_size)`
+
+ Returns:
+ Encoded tensor, `(B, ..., T, head_size)`
+ """
+ if cos.dim() != 3:
+ raise ValueError(f"cos must be three-dimensional, but shape is {cos.shape}")
+ if cos.shape != sin.shape:
+ raise ValueError(f"cos, sin must have same shape, but cos.shape={cos.shape}, sin.shape={sin.shape}")
+ head_size_half = x.size(-1) // 2
+ x1 = x[..., :head_size_half] # (B, ..., T, head_size/2)
+ x2 = x[..., head_size_half:] # (B, ..., T, head_size/2)
+ rotated = torch.cat((-x2, x1), dim=-1) # (B, ..., T, head_size)
+ dims_diff = x.dim() - cos.dim()
+ if dims_diff > 0:
+ # Ensure that shapes of `x`, `cos`, `sin` align
+ new_shape = cos.shape[0:1] + (1,) * dims_diff + cos.shape[1:]
+ cos = cos.view(*new_shape)
+ sin = sin.view(*new_shape)
+
+ roped = (x * cos) + (rotated * sin)
+ return roped.to(dtype=x.dtype)
+
+
+def do_softcapping(x: torch.Tensor, thresh: float) -> torch.Tensor:
+ return torch.tanh(x / thresh) * thresh
+
+
+class KVCache(nn.Module):
+ """
+ Buffers `k`, `v` have shape
+ `(batch_size, n_query_groups, max_seq_length, head_size)`.
+ """
+
+ def __init__(
+ self,
+ k_shape: Tuple[int, int, int, int],
+ v_shape: Tuple[int, int, int, int],
+ device: Optional[torch.device] = None,
+ dtype: Optional[torch.dtype] = None,
+ ) -> None:
+ super().__init__()
+ self.register_buffer("k", torch.zeros(k_shape, device=device, dtype=dtype), persistent=False)
+ self.register_buffer("v", torch.zeros(v_shape, device=device, dtype=dtype), persistent=False)
+
+ def forward(self, input_pos: torch.Tensor, k: torch.Tensor, v: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]:
+ """
+ Writes new values `k` and `v` into the cache at the positions specified
+ by `input_pos` along the sequence dimension (`max_seq_length`). The batch
+ size of `k` and `v` (`bs`) must be smaller or equal to `KVCache` batch
+ size. Returns the full buffers, adjusted to the batch size `bs`.
+
+ Args:
+ input_pos: Position index, `(bs, T)` or `(T,)`
+ k: New values, `(bs, n_query_groups, T, head_size)`
+ v: New values, `(bs, n_query_groups, T, head_size)`
+
+ Returns:
+ k_full, v_full, `(bs, n_query_groups, max_seq_length, head_size)`
+
+ """
+ # move the buffer to the activation dtype for when AMP is used
+ if self.k.dtype != k.dtype:
+ self.k = self.k.to(k.dtype)
+ if self.v.dtype != v.dtype:
+ self.v = self.v.to(v.dtype)
+ # update the cache
+ bs = k.size(0)
+ k = batched_index_copy_(self.k[:bs, ...], -2, input_pos, k)
+ v = batched_index_copy_(self.v[:bs, ...], -2, input_pos, v)
+ return k, v
+
+ def reset_parameters(self) -> None:
+ torch.nn.init.zeros_(self.k)
+ torch.nn.init.zeros_(self.v)
+
+
+def build_mask_cache(max_seq_length: int, device: Optional[torch.device] = None) -> torch.Tensor:
+ ones = torch.ones((max_seq_length, max_seq_length), device=device, dtype=torch.bool)
+ return torch.tril(ones).unsqueeze(0).unsqueeze(0)
+
+
+class RMSNorm(torch.nn.Module):
+ """Root Mean Square Layer Normalization.
+
+ Derived from https://github.com/bzhangGo/rmsnorm/blob/master/rmsnorm_torch.py. BSD 3-Clause License:
+ https://github.com/bzhangGo/rmsnorm/blob/master/LICENSE.
+ """
+
+ def __init__(self, size: int, dim: int = -1, eps: float = 1e-6, add_unit_offset: bool = False) -> None:
+ super().__init__()
+ self.weight = torch.nn.Parameter(torch.ones(size))
+ self.eps = eps
+ self.dim = dim
+ self.add_unit_offset = add_unit_offset
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ dtype = x.dtype
+ x = x.float()
+ # NOTE: the original RMSNorm paper implementation is not equivalent
+ norm_x = torch.mean(x * x, dim=self.dim, keepdim=True)
+ x_normed = x * torch.rsqrt(norm_x + self.eps)
+ weight = (1 + self.weight) if self.add_unit_offset else self.weight
+ return (x_normed * weight.float()).to(dtype=dtype)
+
+ def reset_parameters(self) -> None:
+ torch.nn.init.ones_(self.weight)
diff --git a/litgpt/perplexity.py b/litgpt/perplexity.py
new file mode 100644
index 0000000000000000000000000000000000000000..243c79849dff13737785e6539a8fc66bd33b1010
--- /dev/null
+++ b/litgpt/perplexity.py
@@ -0,0 +1,513 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import math
+import pprint
+import time
+import os
+import json
+from dataclasses import asdict
+from datetime import timedelta
+from functools import partial
+from pathlib import Path
+from typing import Dict, Optional, Tuple, Union
+
+import lightning as L
+import torch
+import torch.nn as nn
+from lightning.fabric.strategies import FSDPStrategy
+from lightning.fabric.utilities.throughput import ThroughputMonitor, measure_flops
+from torch.utils.data import DataLoader
+from torchmetrics.aggregation import RunningMean
+from typing_extensions import Literal
+
+from litgpt import Tokenizer
+from litgpt.args import EvalArgs, LogArgs, TrainArgs
+from litgpt.config import name_to_config
+from litgpt.data import DataModule, TinyLlama, Arxiv
+from litgpt.model import GPT, Block, CausalSelfAttention, Config, LLaMAMLP
+from litgpt.utils import (
+ CycleIterator,
+ capture_hparams,
+ check_nvlink_connectivity,
+ choose_logger,
+ chunked_cross_entropy,
+ copy_config_files,
+ extend_checkpoint_dir,
+ find_resume_path,
+ get_default_supported_precision,
+ init_out_dir,
+ instantiate_torch_optimizer,
+ num_parameters,
+ parse_devices,
+ reset_parameters,
+ save_config,
+ save_hyperparameters,
+)
+
+
+def setup(
+ model_name: str,
+ model_config: Optional[Config] = None,
+ out_dir: Path = Path("out/pretrain"),
+ precision: Literal["bf16-true", "bf16-mixed", "32-true", None] = None,
+ initial_checkpoint_dir: Optional[Path] = None,
+ resume: Union[bool, Literal["auto"], Path] = False,
+ data: Optional[DataModule] = None,
+ data_dir: Path = None,
+ train: TrainArgs = TrainArgs(
+ save_interval=1000,
+ log_interval=1,
+ global_batch_size=512,
+ micro_batch_size=4,
+ max_tokens=int(3e12), # 3 trillion
+ max_norm=1.0,
+ min_lr=4e-5,
+ lr_warmup_steps=2000,
+ tie_embeddings=False,
+ ),
+ eval: EvalArgs = EvalArgs(interval=1000, max_iters=100),
+ log: LogArgs = LogArgs(),
+ optimizer: Union[str, Dict] = "AdamW",
+ devices: Union[int, str] = "auto",
+ num_nodes: int = 1,
+ tokenizer_dir: Optional[Path] = None,
+ logger_name: Literal["wandb", "tensorboard", "csv", "mlflow"] = "tensorboard",
+ seed: int = 42,
+ multi_month: bool = False,
+):
+ """Pretrain a model.
+
+ Arguments:
+ model_name: The name of the model to pretrain. Choose from names in ``litgpt.config``. Use "list" to list the supported models.
+ model_config: A ``litgpt.Config`` object to define the model architecture. Mutually exclusive with
+ ``model_config``. Overrides the `model_name` if specified.
+ out_dir: Directory in which to save checkpoints and logs. If running in a Lightning Studio Job, look for it in
+ /teamspace/jobs//share.
+ precision: The precision to use for finetuning. Determines a compatible precision setting by default.
+ initial_checkpoint_dir: Optional path to a checkpoint directory to initialize the model from.
+ Useful for continued pretraining. Mutually exclusive with ``resume``.
+ resume: Path to a checkpoint directory to resume from in case training was interrupted, or ``True`` to resume
+ from the latest checkpoint in ``out_dir``. An error will be raised if no checkpoint is found. Passing
+ ``'auto'`` will resume from the latest checkpoint but not error if no checkpoint exists.
+ data: Data-related arguments. If not provided, the default is ``litgpt.data.TinyLlama``.
+ train: Training-related arguments. See ``litgpt.args.TrainArgs`` for details.
+ eval: Evaluation-related arguments. See ``litgpt.args.EvalArgs`` for details.
+ optimizer: An optimizer name (such as "AdamW") or config.
+
+ devices: How many devices/GPUs to use. Uses all GPUs by default.
+ num_nodes: How many nodes the code is being run on.
+ tokenizer_dir: Optional path to the tokenizer dir that was used for preprocessing the dataset. Only some data
+ module require this.
+ logger_name: The name of the logger to send metrics to.
+ seed: The random seed to use for reproducibility.
+ """
+ if model_name == "list":
+ available_models = "\n".join(sorted(name_to_config))
+ print(f"Available values:\n{available_models}")
+ quit()
+
+ if initial_checkpoint_dir is not None:
+ initial_checkpoint_dir = extend_checkpoint_dir(initial_checkpoint_dir)
+
+ if tokenizer_dir is not None:
+ tokenizer_dir = extend_checkpoint_dir(tokenizer_dir)
+
+ if model_config is None:
+ # Support both model_name options: meta-llama/Meta-Llama-3-8B & Meta-Llama-3-8B
+ try:
+ model_config = Config.from_name(model_name)
+ except ValueError:
+ print(f"Model name {model_name} is not supported.\n")
+ available_models = "\n".join(sorted(name_to_config))
+ print(f"Available values:\n{available_models}")
+ quit()
+
+ hparams = capture_hparams()
+
+ config = Config.from_name(model_name) if model_config is None else model_config
+ precision = precision or get_default_supported_precision(training=True)
+ devices = parse_devices(devices)
+ out_dir = init_out_dir(out_dir)
+ # in case the dataset requires the Tokenizer
+ tokenizer = Tokenizer(tokenizer_dir) if tokenizer_dir is not None else None
+
+ logger = choose_logger(
+ logger_name,
+ out_dir,
+ name=f"pretrain-{config.name}",
+ resume=bool(resume),
+ log_interval=train.log_interval,
+ log_args=asdict(log),
+ )
+
+ if devices * num_nodes > 1:
+ strategy = FSDPStrategy(auto_wrap_policy={Block}, state_dict_type="full", sharding_strategy="HYBRID_SHARD")
+ else:
+ strategy = "auto"
+
+ fabric = L.Fabric(devices=devices, num_nodes=num_nodes, strategy=strategy, precision=precision, loggers=[logger])
+
+ if torch.cuda.is_available() and devices > 1:
+ check_nvlink_connectivity(fabric)
+
+ fabric.launch()
+
+ fabric.print(pprint.pformat(hparams))
+ if logger_name in ("tensorboard", "wandb", "mlflow"):
+ fabric.logger.log_hyperparams(hparams)
+
+ main(
+ fabric=fabric,
+ devices=devices,
+ seed=seed,
+ initial_checkpoint_dir=initial_checkpoint_dir,
+ resume=resume,
+ config=config,
+ data=data,
+ data_dir=data_dir,
+ out_dir=out_dir,
+ tokenizer=tokenizer,
+ train=train,
+ eval=eval,
+ optimizer=optimizer,
+ multi_month=multi_month,
+ )
+
+
+def main(
+ fabric: L.Fabric,
+ devices: int,
+ seed: int,
+ initial_checkpoint_dir: Optional[Path],
+ resume: Union[bool, Literal["auto"], Path],
+ config: Config,
+ data: DataModule,
+ data_dir: Path,
+ out_dir: Path,
+ tokenizer: Optional[Tokenizer],
+ train: TrainArgs,
+ eval: EvalArgs,
+ optimizer: Union[str, Dict],
+ multi_month: bool = False,
+) -> None:
+ validate_args(train, eval, initial_checkpoint_dir, resume)
+
+ if fabric.global_rank == 0:
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ fabric.seed_everything(seed) # same seed for every process to init model (FSDP)
+
+ t0 = time.perf_counter()
+ with fabric.init_module(empty_init=True):
+ model = GPT(config)
+
+ initialize_weights(fabric, model, n_layer=config.n_layer, n_embd=config.n_embd)
+
+ if train.tie_embeddings:
+ model.transformer.wte.weight = model.lm_head.weight
+ if train.max_seq_length:
+ model.max_seq_length = train.max_seq_length
+
+ fabric.print(f"Time to instantiate model: {time.perf_counter() - t0:.02f} seconds.")
+ fabric.print(f"Total parameters: {num_parameters(model):,}")
+
+ model = torch.compile(model)
+ model = fabric.setup(model)
+
+ extra_kwargs = {"fused": fabric.device.type == "cuda"}
+ optimizer = instantiate_torch_optimizer(optimizer, model.parameters(), **extra_kwargs)
+ optimizer = fabric.setup_optimizers(optimizer)
+
+ if initial_checkpoint_dir:
+ ckpt_path = initial_checkpoint_dir / "lit_model.pth"
+
+ if fabric.global_rank == 0:
+ try:
+ obj = torch.load(ckpt_path, map_location="cpu")
+ except Exception as e:
+ raise RuntimeError(f"[load] Unable to read {ckpt_path}: {e}")
+
+ if isinstance(obj, dict) and "model" in obj:
+ import os
+ print(f"[fix] {ckpt_path} the full state, extract 'model' and write bacl", flush=True)
+ sd = obj["model"]
+ if len(sd) and next(iter(sd)).startswith("module."):
+ sd = {k[7:]: v for k, v in sd.items()}
+
+ tmp = ckpt_path.with_suffix(".pth.tmp")
+ torch.save(sd, tmp)
+ os.replace(tmp, ckpt_path)
+ try:
+ os.sync()
+ except Exception:
+ pass
+ print(f"[fix] rewrite to make it 'model' only: {ckpt_path}", flush=True)
+ else:
+ print(f"[ok] {ckpt_path} already 'model' only", flush=True)
+
+ fabric.barrier()
+
+ fabric.load_raw(ckpt_path, model, strict=False)
+
+ from litgpt.data import Arxiv
+
+ if not multi_month:
+ if isinstance(data, Arxiv):
+ data.arxiv_train = str(data_dir).rstrip("/") + "/train"
+ data.arxiv_val = str(data_dir).rstrip("/") + "/train"
+ else:
+ NotImplementedError()
+ train_dataloader, val_dataloader = get_dataloaders(fabric, data, tokenizer, train, model.max_seq_length)
+ train_dataloader, val_dataloader = fabric.setup_dataloaders(train_dataloader, val_dataloader)
+
+ state = {
+ "model": model,
+ "optimizer": optimizer,
+ "train_dataloader": train_dataloader,
+ "iter_num": 0,
+ "step_count": 0,
+ }
+
+ resume = find_resume_path(resume, out_dir)
+ if resume:
+ fabric.print(f"Resuming training from {resume}")
+ fabric.load(resume, state)
+
+ train_time = time.perf_counter()
+
+ # work around PyTorch issue https://github.com/pytorch/pytorch/issues/152162
+ # which does not like the lazy initialization to be called in dynamo.
+ # Happens with PyTorch 2.7.
+ if (
+ torch.__version__.startswith("2.7.")
+ and (model._forward_module.__class__.__name__ == "OptimizedModule")
+ and (model._forward_module._orig_mod.__class__.__name__ == "FullyShardedDataParallel")
+ ):
+ from torch.distributed.fsdp._runtime_utils import _root_pre_forward
+
+ _root_pre_forward(model._forward_module._orig_mod, model._forward_module._orig_mod, [], {})
+
+ ppl(
+ fabric=fabric,
+ state=state,
+ val_dataloader=val_dataloader,
+ out_dir=out_dir,
+ train=train,
+ eval=eval,
+ )
+
+
+ total_tokens = state["iter_num"] * train.micro_batch_size * model.max_seq_length * fabric.world_size
+
+ # Print formatted output
+ separator = "-" * 40
+ fabric.print(separator)
+ fabric.print("| Performance")
+ fabric.print(f"| - Total tokens : {total_tokens:,}")
+ fabric.print(f"| - Training Time : {(time.perf_counter() - train_time):.2f} s")
+ fabric.print(f"| - Tok/sec : {total_tokens / train_time:.2f} tok/s")
+ fabric.print("| " + "-" * 40)
+
+ if fabric.device.type == "cuda":
+ memory_used = torch.cuda.max_memory_allocated() / 1e9
+ fabric.print("| Memory Usage")
+ fabric.print(f"| - Memory Used : {memory_used:.2f} GB")
+ fabric.print(separator)
+
+ else:
+ months = [
+ "2407", "2408", "2409", "2410", "2411", "2412",
+ "2501", "2502", "2503", "2504", "2505", "2506"
+ ]
+ for month in months:
+ if isinstance(data, Arxiv):
+ data.arxiv_train = str(data_dir).rstrip("/") + f"/{month}/train"
+ data.arxiv_val = str(data_dir).rstrip("/") + f"/{month}/train"
+ else:
+ NotImplementedError()
+ train_dataloader, val_dataloader = get_dataloaders(fabric, data, tokenizer, train, model.max_seq_length)
+ train_dataloader, val_dataloader = fabric.setup_dataloaders(train_dataloader, val_dataloader)
+
+ state = {
+ "model": model,
+ "optimizer": optimizer,
+ "train_dataloader": train_dataloader,
+ "iter_num": 0,
+ "step_count": 0,
+ }
+
+ resume = find_resume_path(resume, out_dir)
+ if resume:
+ fabric.print(f"Resuming training from {resume}")
+ fabric.load(resume, state)
+
+ train_time = time.perf_counter()
+
+ # work around PyTorch issue https://github.com/pytorch/pytorch/issues/152162
+ # which does not like the lazy initialization to be called in dynamo.
+ # Happens with PyTorch 2.7.
+ if (
+ torch.__version__.startswith("2.7.")
+ and (model._forward_module.__class__.__name__ == "OptimizedModule")
+ and (model._forward_module._orig_mod.__class__.__name__ == "FullyShardedDataParallel")
+ ):
+ from torch.distributed.fsdp._runtime_utils import _root_pre_forward
+
+ _root_pre_forward(model._forward_module._orig_mod, model._forward_module._orig_mod, [], {})
+
+ ppl(
+ fabric=fabric,
+ state=state,
+ val_dataloader=val_dataloader,
+ out_dir=out_dir/month,
+ train=train,
+ eval=eval,
+ month=month,
+ )
+
+ total_tokens = state["iter_num"] * train.micro_batch_size * model.max_seq_length * fabric.world_size
+
+ # Print formatted output
+ separator = "-" * 40
+ fabric.print(separator)
+ fabric.print("| Performance")
+ fabric.print(f"| - Total tokens : {total_tokens:,}")
+ fabric.print(f"| - Training Time : {(time.perf_counter() - train_time):.2f} s")
+ fabric.print(f"| - Tok/sec : {total_tokens / train_time:.2f} tok/s")
+ fabric.print("| " + "-" * 40)
+
+ if fabric.device.type == "cuda":
+ memory_used = torch.cuda.max_memory_allocated() / 1e9
+ fabric.print("| Memory Usage")
+ fabric.print(f"| - Memory Used : {memory_used:.2f} GB")
+ fabric.print(separator)
+
+
+def ppl(
+ fabric: L.Fabric,
+ state: dict,
+ val_dataloader: DataLoader,
+ out_dir: Path,
+ train: TrainArgs,
+ eval: EvalArgs,
+ month: Optional[str] = None,
+) -> None:
+ model = state["model"]
+
+ with torch.device("meta"):
+ meta_model = GPT(model.config)
+ x = torch.randint(0, 1, (train.micro_batch_size, meta_model.max_seq_length))
+ model_fwd = lambda: meta_model(x) # noqa: F821
+ model_loss = lambda y: chunked_cross_entropy(y, x, chunk_size=0) # noqa: F821
+ measured_flops = measure_flops(meta_model, model_fwd, model_loss)
+ fabric.print(f"Measured TFLOPs: {measured_flops * fabric.world_size / 1e12:.2f}")
+ del meta_model, x
+
+ val_loss = validate(fabric, model, val_dataloader, max_iters=eval.max_iters)
+ metrics = {"val_loss": val_loss, "val_ppl": math.exp(val_loss)}
+ fabric.log_dict(metrics, step=state["iter_num"])
+ fabric.print(f"Final evaluation | val loss: {val_loss.item():.3f} | val ppl: {math.exp(val_loss):.3f}")
+
+ if month is not None:
+ metrics = {
+ "month": month,
+ "val_loss": float(val_loss),
+ "val_ppl": float(math.exp(val_loss)),
+ "rank": fabric.global_rank,
+ }
+ else:
+ metrics = {
+ "val_loss": float(val_loss),
+ "val_ppl": float(math.exp(val_loss)),
+ }
+ jsonl_path = out_dir.parent / "ppl_metrics.jsonl"
+ os.makedirs(out_dir, exist_ok=True)
+ with open(jsonl_path, "a", encoding="utf-8") as f:
+ f.write(json.dumps(metrics, ensure_ascii=False) + "\n")
+
+
+@torch.no_grad()
+def validate(
+ fabric: L.Fabric, model: nn.Module, val_dataloader: DataLoader, max_iters: int, verbose: bool = True
+) -> torch.Tensor:
+ fabric.barrier()
+ if verbose:
+ fabric.print("Validating ...")
+ model.eval()
+
+ losses = []
+ for k, batch in enumerate(val_dataloader):
+ if k >= max_iters:
+ break
+ input_ids = batch[:, 0 : model.max_seq_length].contiguous().long()
+ targets = batch[:, 1 : (model.max_seq_length + 1)].contiguous().long()
+ logits = model(input_ids)
+ loss = chunked_cross_entropy(logits, targets)
+ losses.append(loss)
+
+ val_loss = torch.stack(losses).mean()
+ model.train()
+ fabric.barrier()
+ return val_loss
+
+
+def get_dataloaders(
+ fabric: L.Fabric, data: DataModule, tokenizer: Tokenizer, train: TrainArgs, block_size: int
+) -> Tuple[DataLoader, DataLoader]:
+ data.connect(tokenizer=tokenizer, batch_size=train.micro_batch_size, max_seq_length=block_size)
+ with fabric.rank_zero_first():
+ data.prepare_data()
+ data.setup()
+ train_dataloader = data.train_dataloader()
+ val_dataloader = data.val_dataloader()
+ return train_dataloader, val_dataloader
+
+
+def save_checkpoint(fabric, state, tokenizer_dir, checkpoint_file):
+ model = state["model"]
+ checkpoint_file.parent.mkdir(parents=True, exist_ok=True)
+ fabric.print(f"Saving checkpoint to {str(checkpoint_file)!r}")
+ fabric.save(checkpoint_file, state)
+ if fabric.global_rank == 0:
+ save_hyperparameters(setup, checkpoint_file.parent)
+ if tokenizer_dir is not None:
+ copy_config_files(tokenizer_dir, checkpoint_file.parent)
+ save_config(model.config, checkpoint_file.parent)
+
+def initialize_weights(fabric: L.Fabric, model: GPT, n_layer: int, n_embd: int) -> None:
+ """GPT-NeoX weight initialization (https://arxiv.org/abs/2204.06745)."""
+ # Adapted from https://github.com/jzhang38/TinyLlama
+
+ def init_weights(module, std):
+ nn.init.normal_(module.weight, mean=0.0, std=std)
+ if getattr(module, "bias", None) is not None:
+ nn.init.zeros_(module.bias)
+
+ for mod in model.modules():
+ if isinstance(mod, (nn.Embedding, nn.Linear)):
+ mod.reset_parameters = partial(init_weights, mod, std=math.sqrt(2.0 / 5 / n_embd))
+
+ # need a separate loop because `mod.proj` below is a `nn.Linear` too
+ for mod in model.modules():
+ if isinstance(mod, (LLaMAMLP, CausalSelfAttention)):
+ mod.proj.reset_parameters = partial(init_weights, mod.proj, std=(1 / math.sqrt(n_embd) / n_layer))
+
+ if not isinstance(fabric.strategy, FSDPStrategy):
+ reset_parameters(model)
+
+def validate_args(train: TrainArgs, eval: EvalArgs, initial_checkpoint_dir, resume) -> None:
+ issues = []
+ unsupported = [(train, ["max_steps", "epochs"]), (eval, ["max_new_tokens"])]
+ for args, names in unsupported:
+ for name in names:
+ if getattr(args, name) is not None:
+ issues.append(f"{__file__} doesn't support the {name!r} argument. This is set in {args}")
+ required = [(train, ["max_tokens", "max_norm"])]
+ for args, names in required:
+ for name in names:
+ if getattr(args, name) is None:
+ issues.append(f"{__file__} requires the {name!r} argument. This is set in {args}")
+ if initial_checkpoint_dir and resume:
+ issues.append("Can't provide both `--resume` and `--initial_checkpoint_dir`. Choose one.")
+ if issues:
+ raise ValueError("\n".join(issues))
diff --git a/litgpt/pretrain.py b/litgpt/pretrain.py
new file mode 100644
index 0000000000000000000000000000000000000000..32832574e82f621b3aa23469bcc5a1af10aedc70
--- /dev/null
+++ b/litgpt/pretrain.py
@@ -0,0 +1,564 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import math
+import pprint
+import time
+import os
+import json
+from dataclasses import asdict
+from datetime import timedelta
+from functools import partial
+from pathlib import Path
+from typing import Dict, Optional, Tuple, Union
+
+import lightning as L
+import torch
+import torch.nn as nn
+from lightning.fabric.strategies import FSDPStrategy
+from lightning.fabric.utilities.throughput import ThroughputMonitor, measure_flops
+from torch.utils.data import DataLoader
+from torchmetrics.aggregation import RunningMean
+from typing_extensions import Literal
+
+from litgpt import Tokenizer
+from litgpt.args import EvalArgs, LogArgs, TrainArgs
+from litgpt.config import name_to_config
+from litgpt.data import DataModule, TinyLlama, Arxiv
+from litgpt.model import GPT, Block, CausalSelfAttention, Config, LLaMAMLP
+from litgpt.utils import (
+ CycleIterator,
+ capture_hparams,
+ check_nvlink_connectivity,
+ choose_logger,
+ chunked_cross_entropy,
+ copy_config_files,
+ extend_checkpoint_dir,
+ find_resume_path,
+ get_default_supported_precision,
+ init_out_dir,
+ instantiate_torch_optimizer,
+ num_parameters,
+ parse_devices,
+ reset_parameters,
+ save_config,
+ save_hyperparameters,
+)
+
+
+def setup(
+ model_name: str,
+ model_config: Optional[Config] = None,
+ out_dir: Path = Path("out/pretrain"),
+ precision: Literal["bf16-true", "bf16-mixed", "32-true", None] = None,
+ initial_checkpoint_dir: Optional[Path] = None,
+ resume: Union[bool, Literal["auto"], Path] = False,
+ data: Optional[DataModule] = None,
+ data_dir: Path = None,
+ train: TrainArgs = TrainArgs(
+ save_interval=1000,
+ log_interval=1,
+ global_batch_size=512,
+ micro_batch_size=4,
+ max_tokens=int(3e12), # 3 trillion
+ max_norm=1.0,
+ min_lr=4e-5,
+ lr_warmup_steps=2000,
+ tie_embeddings=False,
+ ),
+ eval: EvalArgs = EvalArgs(interval=1000, max_iters=100),
+ log: LogArgs = LogArgs(),
+ optimizer: Union[str, Dict] = "AdamW",
+ devices: Union[int, str] = "auto",
+ num_nodes: int = 1,
+ tokenizer_dir: Optional[Path] = None,
+ logger_name: Literal["wandb", "tensorboard", "csv", "mlflow"] = "tensorboard",
+ seed: int = 42,
+):
+ """Pretrain a model.
+
+ Arguments:
+ model_name: The name of the model to pretrain. Choose from names in ``litgpt.config``. Use "list" to list the supported models.
+ model_config: A ``litgpt.Config`` object to define the model architecture. Mutually exclusive with
+ ``model_config``. Overrides the `model_name` if specified.
+ out_dir: Directory in which to save checkpoints and logs. If running in a Lightning Studio Job, look for it in
+ /teamspace/jobs//share.
+ precision: The precision to use for finetuning. Determines a compatible precision setting by default.
+ initial_checkpoint_dir: Optional path to a checkpoint directory to initialize the model from.
+ Useful for continued pretraining. Mutually exclusive with ``resume``.
+ resume: Path to a checkpoint directory to resume from in case training was interrupted, or ``True`` to resume
+ from the latest checkpoint in ``out_dir``. An error will be raised if no checkpoint is found. Passing
+ ``'auto'`` will resume from the latest checkpoint but not error if no checkpoint exists.
+ data: Data-related arguments. If not provided, the default is ``litgpt.data.TinyLlama``.
+ train: Training-related arguments. See ``litgpt.args.TrainArgs`` for details.
+ eval: Evaluation-related arguments. See ``litgpt.args.EvalArgs`` for details.
+ optimizer: An optimizer name (such as "AdamW") or config.
+
+ devices: How many devices/GPUs to use. Uses all GPUs by default.
+ num_nodes: How many nodes the code is being run on.
+ tokenizer_dir: Optional path to the tokenizer dir that was used for preprocessing the dataset. Only some data
+ module require this.
+ logger_name: The name of the logger to send metrics to.
+ seed: The random seed to use for reproducibility.
+ """
+ if model_name == "list":
+ available_models = "\n".join(sorted(name_to_config))
+ print(f"Available values:\n{available_models}")
+ quit()
+
+ if initial_checkpoint_dir is not None:
+ initial_checkpoint_dir = extend_checkpoint_dir(initial_checkpoint_dir)
+
+ if tokenizer_dir is not None:
+ tokenizer_dir = extend_checkpoint_dir(tokenizer_dir)
+
+ if model_config is None:
+ # Support both model_name options: meta-llama/Meta-Llama-3-8B & Meta-Llama-3-8B
+ try:
+ model_config = Config.from_name(model_name)
+ except ValueError:
+ print(f"Model name {model_name} is not supported.\n")
+ available_models = "\n".join(sorted(name_to_config))
+ print(f"Available values:\n{available_models}")
+ quit()
+
+ hparams = capture_hparams()
+
+ from litgpt.data import Arxiv
+ if isinstance(data, Arxiv):
+ data.arxiv_train = str(data_dir).rstrip("/") + "/train"
+ data.arxiv_val = str(data_dir).rstrip("/") + "/train"
+ else:
+ data = TinyLlama() if data is None else data
+
+ config = Config.from_name(model_name) if model_config is None else model_config
+ precision = precision or get_default_supported_precision(training=True)
+ devices = parse_devices(devices)
+ out_dir = init_out_dir(out_dir)
+ # in case the dataset requires the Tokenizer
+ tokenizer = Tokenizer(tokenizer_dir) if tokenizer_dir is not None else None
+
+ logger = choose_logger(
+ logger_name,
+ out_dir,
+ name=f"pretrain-{config.name}",
+ resume=bool(resume),
+ log_interval=train.log_interval,
+ log_args=asdict(log),
+ )
+
+ if devices * num_nodes > 1:
+ strategy = FSDPStrategy(auto_wrap_policy={Block}, state_dict_type="full", sharding_strategy="HYBRID_SHARD")
+ else:
+ strategy = "auto"
+
+ fabric = L.Fabric(devices=devices, num_nodes=num_nodes, strategy=strategy, precision=precision, loggers=[logger])
+
+ if torch.cuda.is_available() and devices > 1:
+ check_nvlink_connectivity(fabric)
+
+ fabric.launch()
+
+ fabric.print(pprint.pformat(hparams))
+ if logger_name in ("tensorboard", "wandb", "mlflow"):
+ fabric.logger.log_hyperparams(hparams)
+
+ main(
+ fabric=fabric,
+ devices=devices,
+ num_nodes=num_nodes,
+ seed=seed,
+ initial_checkpoint_dir=initial_checkpoint_dir,
+ resume=resume,
+ config=config,
+ data=data,
+ out_dir=out_dir,
+ tokenizer_dir=tokenizer_dir,
+ tokenizer=tokenizer,
+ train=train,
+ eval=eval,
+ optimizer=optimizer,
+ )
+
+
+def main(
+ fabric: L.Fabric,
+ devices: int,
+ seed: int,
+ initial_checkpoint_dir: Optional[Path],
+ resume: Union[bool, Literal["auto"], Path],
+ config: Config,
+ data: DataModule,
+ out_dir: Path,
+ tokenizer_dir: Optional[Path],
+ tokenizer: Optional[Tokenizer],
+ train: TrainArgs,
+ eval: EvalArgs,
+ optimizer: Union[str, Dict],
+ num_nodes: int = 1,
+) -> None:
+ validate_args(train, eval, initial_checkpoint_dir, resume)
+
+ if fabric.global_rank == 0:
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ fabric.seed_everything(seed) # same seed for every process to init model (FSDP)
+
+ t0 = time.perf_counter()
+ with fabric.init_module(empty_init=True):
+ model = GPT(config)
+
+ initialize_weights(fabric, model, n_layer=config.n_layer, n_embd=config.n_embd)
+
+ if train.tie_embeddings:
+ model.transformer.wte.weight = model.lm_head.weight
+ if train.max_seq_length:
+ model.max_seq_length = train.max_seq_length
+
+ fabric.print(f"Time to instantiate model: {time.perf_counter() - t0:.02f} seconds.")
+ fabric.print(f"Total parameters: {num_parameters(model):,}")
+
+ model = torch.compile(model)
+ model = fabric.setup(model)
+
+ extra_kwargs = {"fused": fabric.device.type == "cuda"}
+ optimizer = instantiate_torch_optimizer(optimizer, model.parameters(), **extra_kwargs)
+ optimizer = fabric.setup_optimizers(optimizer)
+
+ train_dataloader, val_dataloader = get_dataloaders(fabric, data, tokenizer, train, model.max_seq_length)
+ train_dataloader, val_dataloader = fabric.setup_dataloaders(train_dataloader, val_dataloader)
+
+ if initial_checkpoint_dir:
+ ckpt_path = initial_checkpoint_dir / "lit_model.pth"
+
+ if fabric.global_rank == 0:
+ try:
+ obj = torch.load(ckpt_path, map_location="cpu")
+ except Exception as e:
+ raise RuntimeError(f"[load] 无法读取 {ckpt_path}: {e}")
+
+ if isinstance(obj, dict) and "model" in obj:
+ import os
+ print(f"[fix] {ckpt_path} 是整包 state,提取 model 权重并原子覆盖...", flush=True)
+ sd = obj["model"]
+ # 去掉可能的 'module.' 前缀
+ if len(sd) and next(iter(sd)).startswith("module."):
+ sd = {k[7:]: v for k, v in sd.items()}
+
+ tmp = ckpt_path.with_suffix(".pth.tmp")
+ torch.save(sd, tmp)
+ os.replace(tmp, ckpt_path) # 原子替换,避免半文件
+ try:
+ os.sync() # 刷盘(若权限允许)
+ except Exception:
+ pass
+ print(f"[fix] 已覆盖为纯权重: {ckpt_path}", flush=True)
+ else:
+ print(f"[ok] {ckpt_path} 已是纯权重", flush=True)
+
+ fabric.barrier()
+
+ fabric.load_raw(ckpt_path, model, strict=False)
+
+ state = {
+ "model": model,
+ "optimizer": optimizer,
+ "train_dataloader": train_dataloader,
+ "iter_num": 0,
+ "step_count": 0,
+ }
+
+ resume = find_resume_path(resume, out_dir)
+ if resume:
+ fabric.print(f"Resuming training from {resume}")
+ fabric.load(resume, state)
+
+ train_time = time.perf_counter()
+
+ # work around PyTorch issue https://github.com/pytorch/pytorch/issues/152162
+ # which does not like the lazy initialization to be called in dynamo.
+ # Happens with PyTorch 2.7.
+ if (
+ torch.__version__.startswith("2.7.")
+ and (model._forward_module.__class__.__name__ == "OptimizedModule")
+ and (model._forward_module._orig_mod.__class__.__name__ == "FullyShardedDataParallel")
+ ):
+ from torch.distributed.fsdp._runtime_utils import _root_pre_forward
+
+ _root_pre_forward(model._forward_module._orig_mod, model._forward_module._orig_mod, [], {})
+
+ fit(
+ fabric=fabric,
+ devices=devices,
+ num_nodes=num_nodes,
+ state=state,
+ train_dataloader=train_dataloader,
+ val_dataloader=val_dataloader,
+ out_dir=out_dir,
+ tokenizer_dir=tokenizer_dir,
+ train=train,
+ eval=eval,
+ )
+
+ # Save final checkpoi
+ save_checkpoint(fabric, state, tokenizer_dir, out_dir / "final" / "lit_model.pth")
+
+ total_tokens = state["iter_num"] * train.micro_batch_size * model.max_seq_length * fabric.world_size
+
+ # Print formatted output
+ separator = "-" * 40
+ fabric.print(separator)
+ fabric.print("| Performance")
+ fabric.print(f"| - Total tokens : {total_tokens:,}")
+ fabric.print(f"| - Training Time : {(time.perf_counter() - train_time):.2f} s")
+ fabric.print(f"| - Tok/sec : {total_tokens / train_time:.2f} tok/s")
+ fabric.print("| " + "-" * 40)
+
+ if fabric.device.type == "cuda":
+ memory_used = torch.cuda.max_memory_allocated() / 1e9
+ fabric.print("| Memory Usage")
+ fabric.print(f"| - Memory Used : {memory_used:.2f} GB")
+ fabric.print(separator)
+
+
+def fit(
+ fabric: L.Fabric,
+ devices: int,
+ state: dict,
+ train_dataloader: DataLoader,
+ val_dataloader: DataLoader,
+ out_dir: Path,
+ tokenizer_dir: Optional[Path],
+ train: TrainArgs,
+ eval: EvalArgs,
+ num_nodes: int = 1,
+) -> None:
+ model = state["model"]
+ optimizer = state["optimizer"]
+
+ if eval.initial_validation:
+ val_loss = validate(fabric, model, val_dataloader, max_iters=eval.max_iters)
+ val_loss = f"{val_loss:.3f}"
+ else:
+ fabric.print("Verifying settings ...")
+ validate(fabric, model, val_dataloader, max_iters=2, verbose=False) # sanity check
+ val_loss = "n/a"
+
+ throughput = ThroughputMonitor(fabric, window_size=5)
+
+ with torch.device("meta"):
+ meta_model = GPT(model.config)
+ x = torch.randint(0, 1, (train.micro_batch_size, meta_model.max_seq_length))
+ model_fwd = lambda: meta_model(x) # noqa: F821
+ model_loss = lambda y: chunked_cross_entropy(y, x, chunk_size=0) # noqa: F821
+ measured_flops = measure_flops(meta_model, model_fwd, model_loss)
+ fabric.print(f"Measured TFLOPs: {measured_flops * fabric.world_size / 1e12:.2f}")
+ del meta_model, x
+
+
+ max_tokens_per_device = train.max_tokens // fabric.world_size
+ tokens_per_iter = train.micro_batch_size * model.max_seq_length
+ max_iters = max_tokens_per_device // tokens_per_iter
+ log_iter_interval = train.log_interval * train.gradient_accumulation_iters(devices, num_nodes)
+ initial_iter = state["iter_num"]
+ train_iterator = CycleIterator(train_dataloader)
+
+ running_loss = RunningMean(window=train.gradient_accumulation_iters(devices, num_nodes), sync_on_compute=False).to(
+ fabric.device
+ )
+ fabric.barrier()
+ total_t0 = time.perf_counter()
+
+ warmup_iters = train.warmup_iters(devices, num_nodes, max_iters, train_dataloader)
+
+ for train_data in train_iterator:
+ if state["iter_num"] >= max_iters:
+ break
+
+ # determine and set the learning rate for this iteration
+ lr = get_lr(optimizer.defaults["lr"], state["iter_num"], warmup_iters, max_iters, train.min_lr)
+ for param_group in optimizer.param_groups:
+ param_group["lr"] = lr
+
+ state["iter_num"] += 1
+ iter_t0 = time.perf_counter()
+
+ input_ids = train_data[:, 0 : model.max_seq_length].contiguous().long()
+ targets = train_data[:, 1 : (model.max_seq_length + 1)].contiguous().long()
+
+ is_accumulating = state["iter_num"] % train.gradient_accumulation_iters(devices, num_nodes) != 0
+ with fabric.no_backward_sync(model, enabled=is_accumulating):
+ logits = model(input_ids)
+ loss = chunked_cross_entropy(logits, targets)
+ fabric.backward(loss / train.gradient_accumulation_iters(devices, num_nodes))
+
+ running_loss.update(loss.detach())
+
+ if not is_accumulating:
+ fabric.clip_gradients(model, optimizer, max_norm=train.max_norm)
+ optimizer.step()
+ optimizer.zero_grad()
+ state["step_count"] += 1
+
+ if state["iter_num"] % log_iter_interval == 0:
+ loss = running_loss.compute().item() # expensive device-to-host synchronization
+ t1 = time.perf_counter()
+ throughput.update(
+ time=(t1 - total_t0),
+ flops=(measured_flops * log_iter_interval),
+ batches=state["iter_num"],
+ samples=(state["iter_num"] * train.micro_batch_size),
+ lengths=(state["iter_num"] * train.micro_batch_size * model.max_seq_length),
+ )
+ metrics = {
+ "loss": loss,
+ "iter": state["iter_num"],
+ "step": state["step_count"],
+ "epoch": train_iterator.epoch,
+ "iter_time": t1 - iter_t0,
+ "remaining_time": (
+ (t1 - total_t0) / (state["iter_num"] - initial_iter) * (max_iters - state["iter_num"])
+ ),
+ "tokens": state["iter_num"] * train.micro_batch_size * model.max_seq_length,
+ "total_tokens": (state["iter_num"] * train.micro_batch_size * model.max_seq_length * fabric.world_size),
+ "learning_rate": lr,
+ }
+ if isinstance(val_loss, float):
+ val_loss = f"{val_loss:.3f}"
+ fabric.print(
+ f"Epoch {metrics['epoch'] + 1} | iter {metrics['iter']} step {metrics['step']} |"
+ f" loss train: {metrics['loss']:.3f},"
+ f" val: {val_loss} |"
+ f" iter time: {metrics['iter_time'] * 1000:.2f} ms"
+ f"{' (step)' if not is_accumulating else ''}"
+ f" remaining time: {timedelta(seconds=int(metrics['remaining_time']))!s}",
+ flush=True
+ )
+
+ throughput_metrics = throughput.compute()
+ metrics.update(throughput_metrics)
+ fabric.log_dict(metrics, step=state["iter_num"] - 1)
+
+ if val_dataloader is not None and not is_accumulating and state["step_count"] % eval.interval == 0:
+ t0 = time.perf_counter()
+ val_loss = validate(fabric, model, val_dataloader, max_iters=eval.max_iters)
+ val_loss = val_loss.item()
+ td = time.perf_counter() - t0
+
+ fabric.print(f"iter {state['iter_num']}: val loss {val_loss:.4f}, val time: {td * 1000:.2f} ms")
+ metrics = {"val_loss": val_loss, "val_ppl": math.exp(val_loss)}
+ fabric.log_dict(metrics, step=state["iter_num"] - 1)
+ fabric.barrier()
+
+ if train.save_interval is not None and not is_accumulating and state["step_count"] % train.save_interval == 0:
+ save_checkpoint(fabric, state, tokenizer_dir, out_dir / f"step-{state['step_count']:08d}" / "lit_model.pth")
+
+ # Final validation
+ if eval.final_validation:
+ val_loss = validate(fabric, model, val_dataloader, max_iters=eval.max_iters)
+ metrics = {"val_loss": val_loss, "val_ppl": math.exp(val_loss)}
+ fabric.log_dict(metrics, step=state["iter_num"])
+ fabric.print(f"Final evaluation | val loss: {val_loss.item():.3f} | val ppl: {math.exp(val_loss):.3f}")
+
+
+@torch.no_grad()
+def validate(
+ fabric: L.Fabric, model: nn.Module, val_dataloader: DataLoader, max_iters: int, verbose: bool = True
+) -> torch.Tensor:
+ fabric.barrier()
+ if verbose:
+ fabric.print("Validating ...")
+ model.eval()
+
+ losses = []
+ for k, batch in enumerate(val_dataloader):
+ if k >= max_iters:
+ break
+ input_ids = batch[:, 0 : model.max_seq_length].contiguous().long()
+ targets = batch[:, 1 : (model.max_seq_length + 1)].contiguous().long()
+ logits = model(input_ids)
+ loss = chunked_cross_entropy(logits, targets)
+ losses.append(loss)
+
+ val_loss = torch.stack(losses).mean()
+ model.train()
+ fabric.barrier()
+ return val_loss
+
+
+def get_dataloaders(
+ fabric: L.Fabric, data: DataModule, tokenizer: Tokenizer, train: TrainArgs, block_size: int
+) -> Tuple[DataLoader, DataLoader]:
+ data.connect(tokenizer=tokenizer, batch_size=train.micro_batch_size, max_seq_length=block_size)
+ with fabric.rank_zero_first():
+ data.prepare_data()
+ data.setup()
+ train_dataloader = data.train_dataloader()
+ val_dataloader = data.val_dataloader()
+ return train_dataloader, val_dataloader
+
+
+# learning rate decay scheduler (cosine with linear warmup)
+def get_lr(learning_rate: float, it: int, warmup_iters: int, max_iters: int, min_lr: float) -> float:
+ # 1) linear warmup for warmup_iters steps
+ if it < warmup_iters:
+ return learning_rate * it / warmup_iters
+ # 2) if it > max_iters, return min learning rate
+ if it > max_iters:
+ return min_lr
+ # 3) in between, use cosine decay down to min learning rate
+ decay_ratio = (it - warmup_iters) / (max_iters - warmup_iters)
+ assert 0 <= decay_ratio <= 1
+ coeff = 0.5 * (1.0 + math.cos(math.pi * decay_ratio)) # coeff ranges 0..1
+ return min_lr + coeff * (learning_rate - min_lr)
+
+
+def initialize_weights(fabric: L.Fabric, model: GPT, n_layer: int, n_embd: int) -> None:
+ """GPT-NeoX weight initialization (https://arxiv.org/abs/2204.06745)."""
+ # Adapted from https://github.com/jzhang38/TinyLlama
+
+ def init_weights(module, std):
+ nn.init.normal_(module.weight, mean=0.0, std=std)
+ if getattr(module, "bias", None) is not None:
+ nn.init.zeros_(module.bias)
+
+ for mod in model.modules():
+ if isinstance(mod, (nn.Embedding, nn.Linear)):
+ mod.reset_parameters = partial(init_weights, mod, std=math.sqrt(2.0 / 5 / n_embd))
+
+ # need a separate loop because `mod.proj` below is a `nn.Linear` too
+ for mod in model.modules():
+ if isinstance(mod, (LLaMAMLP, CausalSelfAttention)):
+ mod.proj.reset_parameters = partial(init_weights, mod.proj, std=(1 / math.sqrt(n_embd) / n_layer))
+
+ if not isinstance(fabric.strategy, FSDPStrategy):
+ reset_parameters(model)
+
+
+def save_checkpoint(fabric, state, tokenizer_dir, checkpoint_file):
+ model = state["model"]
+ checkpoint_file.parent.mkdir(parents=True, exist_ok=True)
+ fabric.print(f"Saving checkpoint to {str(checkpoint_file)!r}")
+ fabric.save(checkpoint_file, state)
+ if fabric.global_rank == 0:
+ save_hyperparameters(setup, checkpoint_file.parent)
+ if tokenizer_dir is not None:
+ copy_config_files(tokenizer_dir, checkpoint_file.parent)
+ save_config(model.config, checkpoint_file.parent)
+
+
+def validate_args(train: TrainArgs, eval: EvalArgs, initial_checkpoint_dir, resume) -> None:
+ issues = []
+ unsupported = [(train, ["max_steps", "epochs"]), (eval, ["max_new_tokens"])]
+ for args, names in unsupported:
+ for name in names:
+ if getattr(args, name) is not None:
+ issues.append(f"{__file__} doesn't support the {name!r} argument. This is set in {args}")
+ required = [(train, ["max_tokens", "max_norm"])]
+ for args, names in required:
+ for name in names:
+ if getattr(args, name) is None:
+ issues.append(f"{__file__} requires the {name!r} argument. This is set in {args}")
+ if initial_checkpoint_dir and resume:
+ issues.append("Can't provide both `--resume` and `--initial_checkpoint_dir`. Choose one.")
+ if issues:
+ raise ValueError("\n".join(issues))
diff --git a/litgpt/prompts.py b/litgpt/prompts.py
new file mode 100644
index 0000000000000000000000000000000000000000..f0b9168866872e30eb0668f67e2396900d5496fd
--- /dev/null
+++ b/litgpt/prompts.py
@@ -0,0 +1,541 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import importlib
+import re
+from abc import abstractmethod
+from json import dumps
+from pathlib import Path
+from typing import TYPE_CHECKING, Dict, List, Optional, Tuple, Type, Union
+
+import yaml
+
+from litgpt.config import Config
+
+if TYPE_CHECKING:
+ from litgpt import Tokenizer
+
+
+class PromptStyle:
+ """Base interface for prompt styles."""
+
+ @abstractmethod
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return prompt
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return ([tokenizer.eos_id],)
+
+ @classmethod
+ def from_name(cls, name: str) -> "PromptStyle":
+ return prompt_styles[name]()
+
+ @classmethod
+ def from_config(cls, config: Config) -> "PromptStyle":
+ return model_name_to_prompt_style(config.name)
+
+
+class Default(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return prompt
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return ([tokenizer.eos_id],)
+
+
+class Alpaca(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ if kwargs.get("input"):
+ sys_prompt = sys_prompt or (
+ "Below is an instruction that describes a task, paired with an input that provides further context. "
+ "Write a response that appropriately completes the request.\n\n"
+ )
+ return f"{sys_prompt}### Instruction:\n{prompt}\n\n### Input:\n{kwargs['input']}\n\n### Response:\n"
+
+ sys_prompt = sys_prompt or (
+ "Below is an instruction that describes a task. "
+ "Write a response that appropriately completes the request.\n\n"
+ )
+ return f"{sys_prompt}### Instruction:\n{prompt}\n\n### Response:\n"
+
+
+class FLAN(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or (
+ "Below is an instruction that describes a task. "
+ "Write a response that appropriately completes the request.\n\n"
+ )
+ return f"{sys_prompt}### Instruction:\n{prompt}\n\n### Response:\n"
+
+
+class Longform(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or (
+ "Below is an instruction that describes a task, paired with an input that provides further context. "
+ "Write a response that appropriately completes the request.\n\n"
+ )
+ return f"{sys_prompt}### Instruction:\n{prompt}\n\n### Response:\n"
+
+
+class StableLMAlpha(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or (
+ "# StableLM Tuned (Alpha version)\n- StableLM is a helpful and harmless open-source AI language"
+ " model developed by StabilityAI.\n- StableLM is excited to be able to help the user, but will refuse to do"
+ " anything that could be considered harmful to the user.\n- StableLM is more than just an information"
+ " source, StableLM is also able to write poetry, short stories, and make jokes.\n- StableLM will refuse to"
+ " participate in anything that could harm a human."
+ )
+ return f"<|SYSTEM|>{sys_prompt}<|USER|>{prompt}<|ASSISTANT|>"
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return (
+ [tokenizer.eos_id],
+ [tokenizer.token_to_id("<|SYSTEM|>")],
+ [tokenizer.token_to_id("<|ASSISTANT|>")],
+ [tokenizer.token_to_id("<|USER|>")],
+ )
+
+
+class StableLMZephyr(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"<|user|>\n{prompt}<|endoftext|>\n<|assistant|>\n"
+
+
+class Falcon(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"{prompt}\nAnswer:"
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return (
+ [tokenizer.eos_id],
+ # the model rarely emits the eos token and instead outputs newlines, but we cannot use them
+ # to stop or else things like code generation wouldn't work
+ [tokenizer.token_to_id("User"), tokenizer.token_to_id(":")],
+ [193, tokenizer.token_to_id("User")], # 193: '\n'
+ )
+
+
+class Falcon3(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"<|user|>\n{prompt}<|endoftext|>\n<|assistant|>\n"
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return (
+ [tokenizer.eos_id],
+ [tokenizer.token_to_id("<|endoftext|>")],
+ )
+
+
+class Llama2FunctionCalling(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ # Has to be before the llama config
+ b_func, e_func = "", "\n\n"
+ b_inst, e_inst = "[INST]", "[/INST]"
+ b_sys, e_sys = "<>\n", "\n<>\n\n"
+ # This is an example for how to format functions for the model
+ function_metadata = {
+ "function": "search_bing",
+ "description": (
+ "Search the web for content on Bing. This allows users to search online/the internet/the web for"
+ " content."
+ ),
+ "arguments": [{"name": "query", "type": "string", "description": "The search query string"}],
+ }
+
+ system_prompt = sys_prompt or (
+ "You are a helpful, respectful and honest assistant. Always answer as helpfully as"
+ "possible. Your only response should be JSON formatted functions"
+ )
+ # replace the curly braces with double curly braces to escape them
+ function_list = dumps(function_metadata).replace("{", "{{").replace("}", "}}")
+ return (
+ f"{b_func}{function_list.strip()}{e_func}{b_inst}{b_sys}{system_prompt.strip()}{e_sys}{prompt}{e_inst}\n\n"
+ )
+
+
+class Llama2(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ b_inst, e_inst = "[INST]", "[/INST]"
+ b_sys, e_sys = "<>\n", "\n<>\n\n"
+ sys_prompt = sys_prompt or (
+ "You are a helpful, respectful and honest assistant. Always answer as helpfully as"
+ " possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist,"
+ " toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and"
+ " positive in nature.\n\nIf a question does not make any sense, or is not factually coherent, explain why"
+ " instead of answering something not correct. If you don't know the answer to a question, please don't"
+ " share false information."
+ )
+ return f"{b_inst} {b_sys}{sys_prompt}{e_sys} {prompt} {e_inst} "
+
+
+class Llama3(PromptStyle):
+ def apply(
+ self, prompt: Union[str, List[Dict[str, str]]], *, sys_prompt: Optional[str] = None, **kwargs: str
+ ) -> str:
+ default_system_prompt = sys_prompt or "You are a helpful assistant."
+
+ # https://github.com/meta-llama/llama3/blob/359887376f0aaf30e433f23e25df858d8c2a9833/llama/tokenizer.py#L202-L229
+ if isinstance(prompt, str):
+ return (
+ "<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n\n"
+ f"{default_system_prompt}<|eot_id|>" # No newline
+ "<|start_header_id|>user<|end_header_id|>\n\n"
+ f"{prompt}<|eot_id|>" # No newline
+ "<|start_header_id|>assistant<|end_header_id|>\n\n"
+ )
+ elif isinstance(prompt, list):
+
+ def encode_header(role: str) -> List[str]:
+ return [f"<|start_header_id|>{role}<|end_header_id|>\n\n"]
+
+ def encode_message(message: Dict[str, str]) -> List[str]:
+ tokens = encode_header(message["role"])
+ # NOTE: Meta stripped this. I'm not sure I agree, but who am I to argue?
+ tokens.append(message["content"].strip())
+ tokens.append("<|eot_id|>")
+ return tokens
+
+ def has_system_prompt(messages: List[Dict[str, str]]) -> bool:
+ return messages[0].get("role", "") == "system" if len(messages) else False
+
+ tokens = ["<|begin_of_text|>"]
+ if not has_system_prompt(prompt):
+ tokens.extend(encode_message({"role": "system", "content": default_system_prompt}))
+ for i, message in enumerate(prompt):
+ if i != 0 and message["role"] == "system":
+ raise ValueError("'system' role is only allowed at the beginning of the conversation list.")
+ if message["role"] not in ["assistant", "user", "system"]:
+ raise ValueError(
+ f"Unknown role: '{message['role']}'. Supported roles are 'assistant', 'user', and 'system'."
+ )
+ tokens.extend(encode_message(message))
+ tokens.extend(encode_header("assistant"))
+ return "".join(tokens)
+ else:
+ raise ValueError(f"Unsupported prompt type: {type(prompt)}")
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return (
+ [tokenizer.eos_id],
+ [tokenizer.token_to_id("<|eot_id|>")],
+ )
+
+
+class R1Base(PromptStyle):
+ def apply(
+ self, prompt: Union[str, List[Dict[str, str]]], *, sys_prompt: Optional[str] = None, **kwargs: str
+ ) -> str:
+ default_system_prompt = sys_prompt or ""
+
+ bos_token = "<|begin▁of▁sentence|>"
+ eos_token = ""
+
+ if isinstance(prompt, str):
+ return f"{default_system_prompt}<|User|>{prompt}<|Assistant|>" # Prepares for assistant response
+ elif isinstance(prompt, list):
+
+ def encode_message(message: Dict[str, str]) -> str:
+ role = message["role"]
+ content = message["content"].strip()
+
+ if role == "system":
+ return content # System prompt is prepended at the start
+ elif role == "user":
+ return f"<|User|>{content}"
+ elif role == "assistant":
+ return f"<|Assistant|>{content}{eos_token}"
+ else:
+ raise ValueError(f"Unknown role: '{role}'. Supported roles are 'assistant', 'user', and 'system'.")
+
+ # Extract system prompt (if any)
+ system_prompt = ""
+ if prompt[0].get("role") == "system":
+ system_prompt = prompt[0]["content"]
+ prompt = prompt[1:] # Remove system message from the list
+
+ # Construct the formatted prompt
+ formatted_prompt = system_prompt
+ for message in prompt:
+ formatted_prompt += encode_message(message)
+
+ formatted_prompt += "<|Assistant|>" # Prepares for assistant response
+ return formatted_prompt
+ else:
+ raise ValueError(f"Unsupported prompt type: {type(prompt)}")
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return (
+ [tokenizer.eos_id],
+ [tokenizer.token_to_id("<|end▁of▁sentence|>")],
+ )
+
+
+class FreeWilly2(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or "This is a system prompt, please behave and help the user."
+ return f"### System:\n{sys_prompt}\n\n### User:\n{prompt}\n\n### Assistant:\n"
+
+
+class Platypus(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"### Instruction:\n\n{prompt}\n\n### Response:\n"
+
+
+class StableCode(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"###Instruction\n{prompt}###Response\n"
+
+
+class CodeLlama(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ # for CodeLLama, we don't set a default system prompt, but it is supported:
+ # https://huggingface.co/blog/codellama#conversational-instructions
+ # Mistral does not: https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1#instruction-format
+ b_inst, e_inst = "[INST]", "[/INST]"
+ if sys_prompt:
+ b_sys, e_sys = "<>\n", "\n<>\n\n"
+ return f"{b_inst} {b_sys}{sys_prompt}{e_sys}{prompt} {e_inst}"
+ return f"{b_inst} {prompt} {e_inst}"
+
+
+class Phi1(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"{prompt}\n\nAnswer:"
+
+ def stop_tokens(self, tokenizer: "Tokenizer") -> Tuple[List[int], ...]:
+ return (
+ [tokenizer.eos_id],
+ [tokenizer.token_to_id("Answer"), tokenizer.token_to_id(":")],
+ [198, tokenizer.token_to_id("Answer"), tokenizer.token_to_id(":")],
+ # the model rarely emits the eos token and instead outputs newlines, but we cannot use them
+ # to stop or else things like code generation wouldn't work
+ # [198, 198], # '\n', '\n'
+ )
+
+
+class Phi2(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"Instruct: {prompt}\nOutput:"
+
+
+class Phi3(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or "You are a helpful assistant."
+ return f"<|system|>\n{sys_prompt}<|end|>\n<|user|>\n{prompt}<|end|>\n<|assistant|>\n"
+
+
+class Phi4(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ res = ""
+ if sys_prompt:
+ res += f"<|im_start|>system<|im_sep|>{sys_prompt}<|im_end|>"
+ res += f"<|im_start|>user<|im_sep|>{prompt}<|im_end|><|im_start|>assistant<|im_sep|>"
+ return res
+
+
+class Phi4Reasoning(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = (
+ sys_prompt
+ or "You are Phi, a language model trained by Microsoft to help users. Your role as an assistant involves thoroughly exploring questions through a systematic thinking process before providing the final precise and accurate solutions. This requires engaging in a comprehensive cycle of analysis, summarizing, exploration, reassessment, reflection, backtracing, and iteration to develop well-considered thinking process. Please structure your response into two main sections: Thought and Solution using the specified format: {Thought section} {Solution section}. In the Thought section, detail your reasoning process in steps. Each step should include detailed considerations such as analysing questions, summarizing relevant findings, brainstorming new ideas, verifying the accuracy of the current steps, refining any errors, and revisiting previous steps. In the Solution section, based on various attempts, explorations, and reflections from the Thought section, systematically present the final solution that you deem correct. The Solution section should be logical, accurate, and concise and detail necessary steps needed to reach the conclusion. Now, try to solve the following question through the above guidelines:"
+ )
+ return f"<|im_start>system<|im_sep|>{sys_prompt}<|im_end|><|im_start|>user<|im_sep|>{prompt}<|im_end|><|im_start|>assistant<|im_sep|>"
+
+
+class Phi4Mini(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ res = ""
+ if sys_prompt:
+ res += f"<|system|>{sys_prompt}<|end|>"
+ res += f"<|user|>{prompt}<|end|><|assistant|>"
+ return res
+
+
+class Phi4MiniReasoning(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or "Your name is Phi, an AI math expert developed by Microsoft."
+ return f"<|system|>{sys_prompt}<|end|><|user|>{prompt}<|end|><|assistant|>"
+
+
+class TinyLlama(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or "You are a friendly chatbot who always gives helpful, detailed, and polite answers."
+ return f"<|system|>\n{sys_prompt}\n<|user|>\n{prompt}\n<|assistant|>\n"
+
+
+class Gemma(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"user\n{prompt}\nmodel\n"
+
+
+class OLMo(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ return f"<|endoftext|><|user|>\n{prompt}\n<|assistant|>\n"
+
+
+class ChatML(PromptStyle):
+ def __init__(self, system_message: Optional[str] = None):
+ self.system_message = system_message
+
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs: str) -> str:
+ sys_prompt = sys_prompt or self.system_message
+ return (
+ f"<|im_start|>system\n{sys_prompt}<|im_end|>\n<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n"
+ )
+
+
+class Qwen2_5(ChatML):
+ def __init__(self):
+ super().__init__("You are Qwen, created by Alibaba Cloud. You are a helpful assistant.")
+
+
+class Qwen2_5_Math(ChatML):
+ def __init__(self):
+ super().__init__("Please reason step by step, and put your final answer within \\boxed{}.")
+
+
+class QwQ(ChatML):
+ def __init__(self):
+ super().__init__(
+ "You are a helpful and harmless assistant. You are Qwen developed by Alibaba. You should think step-by-step."
+ )
+
+
+class Qwen3(ChatML):
+ def __init__(self):
+ super().__init__()
+
+
+class SmolLM2(ChatML):
+ def __init__(self):
+ super().__init__("You are a helpful AI assistant named SmolLM, trained by Hugging Face")
+
+
+class Salamandra(ChatML):
+ def __init__(self):
+ super().__init__(
+ "I am Salamandra, an AI language model developed at the Barcelona Supercomputing Centre (BSC) by the Language Technologies Unit. My knowledge base was last updated on August 2023. Today Date: 2024-09-30\nSoy Salamandra, un modelo lingüístico de IA desarrollado en el Barcelona Supercomputing Centre (BSC) por la Language Technologies Unit. Mi base de conocimientos se actualizó por última vez en agosto de 2023.\nSoc Salamandra, un model de llenguatge d'IA desenvolupat al Barcelona Supercomputing Centre (BSC) per la Language Technologies Unit."
+ )
+
+
+# Maps prompt style names to PromptStyle classes
+prompt_styles: Dict[str, Type[PromptStyle]] = {
+ # Dataset-specific prompt styles
+ "default": Default,
+ "alpaca": Alpaca,
+ "flan": FLAN,
+ "longform": Longform,
+ # Model-specific prompt styles
+ "stablelm-alpha": StableLMAlpha,
+ "stablelm-zephyr": StableLMZephyr,
+ "falcon": Falcon,
+ "llama2-function-calling": Llama2FunctionCalling,
+ "llama2": Llama2,
+ "freewilly2": FreeWilly2,
+ "platypus": Platypus,
+ "stablecode": StableCode,
+ "codellama": CodeLlama,
+ "phi-1": Phi1,
+ "phi-2": Phi2,
+ "phi-3": Phi3,
+ "phi-4": Phi4,
+ "phi-4-reasoning": Phi4Reasoning,
+ "phi-4-mini": Phi4Mini,
+ "phi-4-mini-reasoning": Phi4MiniReasoning,
+ "tinyllama": TinyLlama,
+ "gemma": Gemma,
+ "llama3": Llama3,
+ "olmo": OLMo,
+ "qwen2.5": Qwen2_5,
+ "qwen2.5-math": Qwen2_5_Math,
+ "qwq": QwQ,
+ "qwen3": Qwen3,
+ "smollm2": SmolLM2,
+ "salamandra": Salamandra,
+}
+
+
+def model_name_to_prompt_style(model_name: str) -> PromptStyle:
+ if re.search(r"stablelm-tuned-alpha", model_name):
+ return StableLMAlpha()
+ if re.search(r"stablelm-zephyr-3b", model_name):
+ return StableLMZephyr()
+ if re.search("stablecode-instruct", model_name):
+ return StableCode()
+ if re.search(r"Falcon3.*-Instruct", model_name):
+ return Falcon3()
+ if re.search(r"falcon.*-instruct", model_name):
+ return Falcon()
+ if re.search("Llama-2-7b-chat-hf-function-calling-v2", model_name):
+ return Llama2FunctionCalling()
+ if re.search("Llama-2.*-chat", model_name):
+ return Llama2()
+ if re.search("Llama-3.*-Instruct", model_name):
+ return Llama3()
+ if re.search("Llama-3.*-Instruct-*", model_name):
+ return Llama3()
+ if re.search("OLMo-2.*-(Instruct|SFT|DPO)", model_name):
+ return Llama3()
+ if re.search("R1", model_name):
+ return R1Base()
+ if re.search("FreeWilly2", model_name):
+ return FreeWilly2()
+ if re.search("Platypus", model_name):
+ return Platypus()
+ if re.search("CodeLlama|Mi[sx]tral.*Instruct", model_name):
+ return CodeLlama()
+ if re.search("phi-1", model_name):
+ return Phi1()
+ if re.search("phi-2", model_name):
+ return Phi2()
+ if re.search("Phi-3", model_name):
+ return Phi3()
+ if re.search("Phi-4-reasoning", model_name):
+ return Phi4Reasoning()
+ if re.search("Phi-4-mini-reasoning", model_name):
+ return Phi4MiniReasoning()
+ if re.search("Phi-4-mini", model_name):
+ return Phi4Mini()
+ if re.search("phi-4", model_name):
+ return Phi4()
+ if re.search(r"tiny-llama.*chat", model_name):
+ return TinyLlama()
+ if re.search(r"(Code)?Gemma.*-it", model_name):
+ return Gemma()
+ if re.search(r"OLMo.*-hf", model_name):
+ return OLMo()
+ if re.search(r"Qwen2\.5-Math-.*", model_name):
+ return Qwen2_5_Math()
+ if re.search(r"Qwen2\.5-.*", model_name):
+ return Qwen2_5()
+ if re.search(r"QwQ-.*", model_name):
+ return QwQ()
+ if re.search(r"Qwen3-.*", model_name):
+ return Qwen3()
+ if re.search(r"SmolLM2.*-Instruct", model_name):
+ return SmolLM2()
+ if re.search(r"salamandra-.*-instruct", model_name):
+ return Salamandra()
+ return Default()
+
+
+def save_prompt_style(style: Union[str, PromptStyle], checkpoint_dir: Path) -> None:
+ style = PromptStyle.from_name(style) if isinstance(style, str) else style
+ cls = type(style)
+ # Allow saving the full module path for user-defined prompt classes
+ config = {"class_path": f"{cls.__module__}.{cls.__name__}"}
+ with open(checkpoint_dir / "prompt_style.yaml", "w", encoding="utf-8") as file:
+ yaml.dump(config, file)
+
+
+def load_prompt_style(checkpoint_dir: Path) -> PromptStyle:
+ with open(checkpoint_dir / "prompt_style.yaml", encoding="utf-8") as file:
+ config = yaml.safe_load(file)
+ # Support loading the full module path for user-defined prompt classes
+ full_module_path, cls_name = config["class_path"].rsplit(".", 1)
+ module = importlib.import_module(full_module_path)
+ cls = getattr(module, cls_name)
+ return cls()
+
+
+def has_prompt_style(checkpoint_dir: Path) -> bool:
+ return (checkpoint_dir / "prompt_style.yaml").is_file()
diff --git a/litgpt/tokenizer.py b/litgpt/tokenizer.py
new file mode 100644
index 0000000000000000000000000000000000000000..fa263c6e01a5263f0328bbf8e1692cca0377ff67
--- /dev/null
+++ b/litgpt/tokenizer.py
@@ -0,0 +1,182 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import json
+from pathlib import Path
+from typing import Iterable, Iterator, Optional, Union
+
+import torch
+
+from litgpt.utils import fix_and_load_json
+
+
+class Tokenizer:
+ def __init__(self, checkpoint_dir: Union[Path, str]) -> None:
+ checkpoint_dir = Path(checkpoint_dir)
+ if not checkpoint_dir.exists():
+ raise NotADirectoryError(f"The checkpoint directory does not exist: {str(checkpoint_dir)}")
+
+ self.model_name = checkpoint_dir.stem
+ self.use_bos = self.check_if_bos_token_used(checkpoint_dir)
+ self.bos_id = None
+ self.eos_id = None
+
+ # some checkpoints have both files, `.json` takes precedence
+ if (vocabulary_path := checkpoint_dir / "tokenizer.json").is_file():
+ from tokenizers import Tokenizer as HFTokenizer
+
+ self.processor = HFTokenizer.from_file(str(vocabulary_path))
+ self.backend = "huggingface"
+
+ if (special_tokens_path := checkpoint_dir / "tokenizer_config.json").is_file():
+ with open(special_tokens_path, encoding="utf-8") as fp:
+ config = json.load(fp)
+ bos_token = config.get("bos_token")
+ eos_token = config.get("eos_token")
+ if bos_token is not None and isinstance(bos_token, dict):
+ bos_token = bos_token.get("content")
+ if eos_token is not None and isinstance(eos_token, dict):
+ eos_token = eos_token.get("content")
+ self.bos_id = self.token_to_id(bos_token) if bos_token is not None else None
+ self.eos_id = self.token_to_id(eos_token) if eos_token is not None else None
+ if (special_tokens_path := checkpoint_dir / "generation_config.json").is_file():
+ try:
+ with open(special_tokens_path, encoding="utf-8") as fp:
+ config = json.load(fp)
+ except json.JSONDecodeError: # Some files like the Llama 3.2 one have bugs
+ with open(special_tokens_path, encoding="utf-8") as fp:
+ json_string = fp.read()
+ config = fix_and_load_json(json_string)
+ if self.bos_id is None:
+ self.bos_id = config.get("bos_token_id")
+ if self.eos_id is None:
+ self.eos_id = config.get("eos_token_id")
+
+ elif (vocabulary_path := checkpoint_dir / "tokenizer.model").is_file():
+ from sentencepiece import SentencePieceProcessor
+
+ self.processor = SentencePieceProcessor(model_file=str(vocabulary_path))
+ self.backend = "sentencepiece"
+ self.bos_id = self.processor.bos_id()
+ self.eos_id = self.processor.eos_id()
+ else:
+ raise NotImplementedError
+
+ # NOTE: A temporary fix until it's resolved on Tokenizers side.
+ # LlaMA tokenizer strips leading spaces if to decode a single token at a time.
+ # https://github.com/huggingface/transformers/issues/31643
+ self.apply_decoding_fix = None
+ if (config_path := checkpoint_dir / "tokenizer_config.json").is_file():
+ with open(config_path, encoding="utf-8") as fp:
+ self.apply_decoding_fix = "LlamaTokenizer" in json.load(fp)["tokenizer_class"]
+
+ @property
+ def vocab_size(self) -> int:
+ if self.backend == "huggingface":
+ return self.processor.get_vocab_size(with_added_tokens=False)
+ if self.backend == "sentencepiece":
+ return self.processor.vocab_size()
+ raise RuntimeError
+
+ def token_to_id(self, token: str) -> int:
+ if self.backend == "huggingface":
+ id_ = self.processor.token_to_id(token)
+ elif self.backend == "sentencepiece":
+ id_ = self.processor.piece_to_id(token)
+ else:
+ raise RuntimeError
+ if id_ is None:
+ raise ValueError(f"token {token!r} not found in the collection.")
+ return id_
+
+ def check_if_bos_token_used(self, checkpoint_dir: Path) -> bool:
+ if not (tokenizer_config_path := checkpoint_dir / "tokenizer_config.json").is_file():
+ return False
+ with open(tokenizer_config_path, encoding="utf-8") as fp:
+ config = json.load(fp)
+ # for LlaMA-3 tokenizer there is no `add_bos_token` at all and `tokenizer_class` is only
+ # `PreTrainedTokenizerFast`
+ if checkpoint_dir.stem.startswith(("Meta-Llama-3", "Llama-3")):
+ return True
+ if checkpoint_dir.stem.startswith("SmolLM2") and checkpoint_dir.name.endswith("Instruct"):
+ return True
+ if "add_bos_token" in config:
+ return config["add_bos_token"]
+ # if `add_bos_token` isn't in the config file, but LLaMA tokenizer is used - return True.
+ # ex: https://huggingface.co/stabilityai/StableBeluga2/blob/main/tokenizer_config.json#L2
+ return config.get("tokenizer_class") == "LlamaTokenizer"
+
+ def encode(
+ self,
+ string: str,
+ device: Optional[torch.device] = None,
+ bos: Optional[bool] = None,
+ eos: bool = False,
+ max_length: int = -1,
+ ) -> torch.Tensor:
+ if self.backend == "huggingface":
+ tokens = self.processor.encode(string).ids
+ elif self.backend == "sentencepiece":
+ tokens = self.processor.encode(string)
+ else:
+ raise RuntimeError(f"`{self.backend}` is not supported.")
+ if tokens is None:
+ raise ValueError("`self.processor` returned tokens of None value.")
+
+ if bos or (bos is None and self.use_bos):
+ if self.bos_id is None:
+ raise NotImplementedError("This tokenizer does not have a defined bos token.")
+ if not tokens or tokens[0] != self.bos_id:
+ tokens = [self.bos_id] + tokens
+ # if the processor misbehaves and adds `bos` token no matter what
+ elif tokens and tokens[0] == self.bos_id:
+ tokens = tokens[1:]
+
+ if eos and (not tokens or tokens[-1] != self.eos_id):
+ tokens = tokens + [self.eos_id]
+ # if the processor misbehaves and adds `eos` token no matter what
+ elif tokens and tokens[-1] == self.eos_id:
+ tokens = tokens[:-1]
+
+ if max_length > 0:
+ tokens = tokens[:max_length]
+ return torch.tensor(tokens, dtype=torch.int, device=device)
+
+ def decode(self, tensor: torch.Tensor) -> str:
+ tokens = [tensor.item()] if tensor.ndim == 0 else tensor.tolist()
+ if len(tokens) == 1 and self.apply_decoding_fix:
+ dummy_token_id = 33 # \x1e
+ dummy_token = self.processor.decode([dummy_token_id])
+ if dummy_token != "\x1e":
+ dummy_token_id = 165 # \x1e is different in salamandra tokenizers
+ dummy_token = self.processor.decode([dummy_token_id])
+ return self.processor.decode([dummy_token_id] + tokens)[len(dummy_token) :]
+ return self.processor.decode(tokens)
+
+ def decode_stream(
+ self, token_stream: Iterable[torch.Tensor], device: Optional[torch.device] = None
+ ) -> Iterator[str]:
+ if self.backend == "huggingface":
+ try:
+ for token in token_stream:
+ yield self.decode(token)
+ except KeyboardInterrupt:
+ return
+ elif self.backend == "sentencepiece":
+ # TODO: Is there a way to not have to do this?
+ # This may actually affect our tokens per second.
+
+ # sentencepiece does not support decoding token-by-token because it adds spaces based on the surrounding tokens
+ # meaning that we need to decode everything each time
+ so_far = torch.tensor([], dtype=torch.long, device=device)
+ decoded_so_far = ""
+ try:
+ for token in token_stream:
+ so_far = so_far.to(device=token.device)
+ so_far = torch.cat((so_far, token.view(-1)))
+ decoded_new = self.decode(so_far)
+ yield decoded_new[len(decoded_so_far) :]
+ decoded_so_far = decoded_new
+ except KeyboardInterrupt:
+ return
+ else:
+ raise NotImplementedError(self.backend)
diff --git a/litgpt/utils.py b/litgpt/utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..af97fa2f11d74613adf8b3f77a73ee6725f71d0b
--- /dev/null
+++ b/litgpt/utils.py
@@ -0,0 +1,875 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+"""Utility functions for training and inference."""
+
+import inspect
+import json
+import math
+import os
+import pickle
+import random
+import re
+import shutil
+import subprocess
+import sys
+import warnings
+from dataclasses import asdict, is_dataclass
+from io import BytesIO
+from pathlib import Path
+from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Literal, Mapping, Optional, TypeVar, Union
+
+import lightning as L
+import psutil
+import torch
+import torch.nn as nn
+import torch.utils._device
+import yaml
+from lightning.fabric.loggers import CSVLogger, TensorBoardLogger
+from lightning.fabric.strategies import FSDPStrategy
+from lightning.fabric.utilities.load import _lazy_load as lazy_load
+from lightning.pytorch.cli import instantiate_class
+from lightning.pytorch.loggers import MLFlowLogger, WandbLogger
+from lightning_utilities.core.imports import module_available
+from packaging import version
+from torch.serialization import normalize_storage_type
+from typing_extensions import Self
+
+if TYPE_CHECKING:
+ from litgpt import GPT, Config
+
+_THUNDER_AVAILABLE = module_available("thunder")
+_TRITON_AVAILABLE = module_available("triton")
+
+
+def init_out_dir(out_dir: Path) -> Path:
+ if not isinstance(out_dir, Path):
+ out_dir = Path(out_dir)
+ if not out_dir.is_absolute() and "LIGHTNING_ARTIFACTS_DIR" in os.environ:
+ return Path(os.getenv("LIGHTNING_ARTIFACTS_DIR")) / out_dir
+ return out_dir
+
+
+def find_resume_path(resume: Union[bool, Literal["auto"], Path], out_dir: Path) -> Optional[Path]:
+ if not resume or isinstance(resume, Path):
+ return resume
+
+ resume_path = max(out_dir.rglob("step-*/*.pth"), key=(lambda p: int(p.parent.name.split("-")[1])), default=None)
+ if resume == "auto":
+ return resume_path
+ if resume is True and resume_path is None:
+ raise FileNotFoundError(
+ f"You passed `--resume=True`, but no checkpoint file was found in `--out_dir={out_dir}`."
+ )
+ return resume_path
+
+
+def num_parameters(module: nn.Module, requires_grad: Optional[bool] = None) -> int:
+ total = 0
+ for p in module.parameters():
+ if requires_grad is None or p.requires_grad == requires_grad:
+ if hasattr(p, "quant_state"):
+ # bitsandbytes 4bit layer support
+ total += math.prod(p.quant_state.shape)
+ else:
+ total += p.numel()
+ return total
+
+
+def reset_parameters(module: nn.Module) -> None:
+ """Calls `reset_parameters` on the module and all its submodules."""
+ for mod in module.modules():
+ if callable(getattr(mod, "reset_parameters", None)):
+ mod.reset_parameters()
+
+
+def check_valid_checkpoint_dir(
+ checkpoint_dir: Path,
+ model_filename: str = "lit_model.pth",
+ verbose: bool = True,
+ raise_error: bool = False,
+ ignore_tokenizer_files: bool = False,
+) -> None:
+ files = {
+ model_filename: (checkpoint_dir / model_filename).is_file(),
+ "model_config.yaml": (checkpoint_dir / "model_config.yaml").is_file(),
+ }
+ if not ignore_tokenizer_files:
+ files.update(
+ {
+ "tokenizer.json OR tokenizer.model": (checkpoint_dir / "tokenizer.json").is_file()
+ or (checkpoint_dir / "tokenizer.model").is_file(),
+ "tokenizer_config.json": (checkpoint_dir / "tokenizer_config.json").is_file(),
+ }
+ )
+
+ if checkpoint_dir.is_dir():
+ if all(files.values()):
+ # we're good
+ return
+ problem = f" is missing the files: {[f for f, exists in files.items() if not exists]!r}"
+ else:
+ problem = " is not a checkpoint directory"
+
+ # list locally available checkpoints
+ available = list(Path("checkpoints").glob("*/*"))
+ if available:
+ options = "\n".join([""] + [repr(str(p.resolve())) for p in available])
+ extra = f"\nYou have downloaded locally:{options}\n"
+ else:
+ extra = ""
+
+ if verbose:
+ error_message = (
+ f"checkpoint_dir {str(checkpoint_dir.absolute())!r}{problem}."
+ "\nFind download instructions at https://github.com/Lightning-AI/litgpt/blob/main/tutorials\n"
+ f"{extra}\nSee all download options by running:\n litgpt download"
+ )
+ print(error_message, file=sys.stderr)
+
+ if raise_error:
+ raise FileNotFoundError(f"checkpoint_dir {str(checkpoint_dir.absolute())!r}{problem}.")
+ else:
+ raise SystemExit(1)
+
+
+class SavingProxyForStorage:
+ def __init__(self, obj, saver, protocol_version=5):
+ self.protocol_version = protocol_version
+ self.saver = saver
+ if not (isinstance(obj, torch.storage.TypedStorage) or torch.is_storage(obj)):
+ raise TypeError(f"expected storage, not {type(obj)}")
+
+ # this logic is taken from PyTorch 2.0+ torch/serialization.py
+ if isinstance(obj, torch.storage.TypedStorage):
+ # PT upstream wants to deprecate this eventually...
+ storage = obj._untyped_storage
+ storage_type_str = obj._pickle_storage_type()
+ storage_type = getattr(torch, storage_type_str)
+ storage_numel = obj._size()
+ else:
+ storage = obj
+ storage_type = normalize_storage_type(type(obj))
+ storage_numel = storage.nbytes()
+
+ storage_key = saver._write_storage_and_return_key(storage)
+ location = torch.serialization.location_tag(storage)
+
+ self.storage_info = ("storage", storage_type, storage_key, location, storage_numel)
+
+ def __reduce_ex__(self, protocol_version):
+ assert False, "this should be handled with out of band"
+
+
+class SavingProxyForTensor:
+ def __init__(self, tensor, saver, protocol_version=5):
+ self.protocol_version = protocol_version
+ self.reduce_ret_fn, reduce_args = tensor.__reduce_ex__(protocol_version)
+ if reduce_args[0] == torch._utils._rebuild_tensor_v2:
+ # for Tensors with Python attributes
+ (a0, a1, (storage, *a2_other), *other_reduce_args) = reduce_args
+ assert isinstance(storage, (torch.storage.TypedStorage, torch.storage.UntypedStorage)), (
+ "Please check for updates"
+ )
+ storage_proxy = SavingProxyForStorage(storage, saver, protocol_version=protocol_version)
+ self.reduce_args = (a0, a1, (storage_proxy, *a2_other), *other_reduce_args)
+ else:
+ (storage, *other_reduce_args) = reduce_args
+ assert isinstance(storage, (torch.storage.TypedStorage, torch.storage.UntypedStorage)), (
+ "Please check for updates"
+ )
+ storage_proxy = SavingProxyForStorage(storage, saver, protocol_version=protocol_version)
+ self.reduce_args = (storage_proxy, *other_reduce_args)
+
+ def __reduce_ex__(self, protocol_version):
+ if protocol_version != self.protocol_version:
+ raise RuntimeError(f"Unexpected protocol version: expected {self.protocol_version}, got {protocol_version}")
+ return self.reduce_ret_fn, self.reduce_args
+
+
+class IncrementalPyTorchPickler(pickle.Pickler):
+ def __init__(self, saver, *args, **kwargs):
+ super().__init__(*args, **kwargs)
+ self.storage_dtypes = {}
+ self.saver = saver
+ self.id_map = {}
+
+ # this logic is taken from PyTorch 2.0+ torch/serialization.py
+ def persistent_id(self, obj):
+ # FIXME: the docs say that persistent_id should only return a string
+ # but torch store returns tuples. This works only in the binary protocol
+ # see
+ # https://docs.python.org/2/library/pickle.html#pickling-and-unpickling-external-objects
+ # https://github.com/python/cpython/blob/master/Lib/pickle.py#L527-L537
+ if isinstance(obj, SavingProxyForStorage):
+ return obj.storage_info
+
+ if isinstance(obj, torch.storage.TypedStorage) or torch.is_storage(obj):
+ if isinstance(obj, torch.storage.TypedStorage):
+ # TODO: Once we decide to break serialization FC, this case
+ # can be deleted
+ storage = obj._untyped_storage
+ storage_dtype = obj.dtype
+ storage_type_str = obj._pickle_storage_type()
+ storage_type = getattr(torch, storage_type_str)
+ storage_numel = obj._size()
+
+ else:
+ storage = obj
+ storage_dtype = torch.uint8
+ storage_type = normalize_storage_type(type(obj))
+ storage_numel = storage.nbytes()
+
+ # If storage is allocated, ensure that any other saved storages
+ # pointing to the same data all have the same dtype. If storage is
+ # not allocated, don't perform this check
+ if storage.data_ptr() != 0:
+ if storage.data_ptr() in self.storage_dtypes:
+ if storage_dtype != self.storage_dtypes[storage.data_ptr()]:
+ raise RuntimeError(
+ "Cannot save multiple tensors or storages that view the same data as different types"
+ )
+ else:
+ self.storage_dtypes[storage.data_ptr()] = storage_dtype
+
+ storage_key = self.id_map.get(storage._cdata)
+ if storage_key is None:
+ storage_key = self.saver._write_storage_and_return_key(storage)
+ self.id_map[storage._cdata] = storage_key
+ location = torch.serialization.location_tag(storage)
+
+ return ("storage", storage_type, storage_key, location, storage_numel)
+
+ return None
+
+
+class incremental_save:
+ def __init__(self, name):
+ self.name = name
+ self.zipfile = torch._C.PyTorchFileWriter(str(name))
+ self.has_saved = False
+ self.next_key = 0
+ self.protocol_version = 2
+
+ def __enter__(self):
+ return self
+
+ def store_early(self, tensor):
+ if isinstance(tensor, torch.Tensor):
+ return SavingProxyForTensor(tensor, self, protocol_version=self.protocol_version)
+ raise TypeError(f"can only store tensors early, not {type(tensor)}")
+
+ def save(self, obj):
+ if self.has_saved:
+ raise RuntimeError("have already saved")
+ # Write the pickle data for `obj`
+ data_buf = BytesIO()
+ pickler = IncrementalPyTorchPickler(self, data_buf, protocol=self.protocol_version)
+ pickler.dump(obj)
+ data_value = data_buf.getvalue()
+ self.zipfile.write_record("data.pkl", data_value, len(data_value))
+ self.has_saved = True
+
+ def _write_storage_and_return_key(self, storage):
+ if self.has_saved:
+ raise RuntimeError("have already saved")
+ key = self.next_key
+ self.next_key += 1
+ name = f"data/{key}"
+ if storage.device.type != "cpu":
+ storage = storage.cpu()
+ num_bytes = storage.nbytes()
+
+ current_version = version.parse(torch.__version__)
+ threshold_version = version.parse("2.2.2")
+ if current_version <= threshold_version:
+ self.zipfile.write_record(name, storage.data_ptr(), num_bytes)
+ else:
+ self.zipfile.write_record(name, storage, num_bytes)
+
+ return key
+
+ def __exit__(self, type, value, traceback):
+ self.zipfile.write_end_of_file()
+
+
+T = TypeVar("T")
+
+
+def chunked_cross_entropy(
+ logits: Union[torch.Tensor, List[torch.Tensor]],
+ targets: torch.Tensor,
+ chunk_size: int = 128,
+ ignore_index: int = -100,
+) -> torch.Tensor:
+ # with large max_sequence_lengths, the beginning of `backward` allocates a large memory chunk which can dominate
+ # the memory usage in fine-tuning settings with low number of parameters.
+ # as a workaround hack, the cross entropy computation is chunked to force it to deallocate on the go, reducing
+ # the memory spike's magnitude
+
+ # lm_head was chunked (we are fine-tuning)
+ if isinstance(logits, list):
+ # don't want to chunk cross entropy
+ if chunk_size == 0:
+ logits = torch.cat(logits, dim=1)
+ logits = logits.reshape(-1, logits.size(-1))
+ targets = targets.reshape(-1)
+ return torch.nn.functional.cross_entropy(logits, targets, ignore_index=ignore_index)
+
+ # chunk cross entropy
+ logit_chunks = [logit_chunk.reshape(-1, logit_chunk.size(-1)) for logit_chunk in logits]
+ target_chunks = [target_chunk.reshape(-1) for target_chunk in targets.split(logits[0].size(1), dim=1)]
+ loss_chunks = [
+ torch.nn.functional.cross_entropy(logit_chunk, target_chunk, ignore_index=ignore_index, reduction="none")
+ for logit_chunk, target_chunk in zip(logit_chunks, target_chunks)
+ ]
+ non_masked_elems = (targets != ignore_index).sum()
+ # See [non_masked_elems div note]
+ return torch.cat(loss_chunks).sum() / non_masked_elems.maximum(torch.ones_like(non_masked_elems))
+
+ # no chunking at all
+ logits = logits.reshape(-1, logits.size(-1))
+ targets = targets.reshape(-1)
+ if chunk_size == 0:
+ return torch.nn.functional.cross_entropy(logits, targets, ignore_index=ignore_index)
+
+ # lm_head wasn't chunked, chunk cross entropy
+ logit_chunks = logits.split(chunk_size)
+ target_chunks = targets.split(chunk_size)
+ loss_chunks = [
+ torch.nn.functional.cross_entropy(logit_chunk, target_chunk, ignore_index=ignore_index, reduction="none")
+ for logit_chunk, target_chunk in zip(logit_chunks, target_chunks)
+ ]
+ non_masked_elems = (targets != ignore_index).sum()
+ # [non_masked_elems div note]:
+ # max(1, non_masked_elems) would be more ergonomic to avoid a division by zero. However that
+ # results in a python int which is then passed back to torch division. By using the
+ # `x.maximum(torch.ones_like(x))` pattern we avoid a cudaStreamSynchronize.
+ return torch.cat(loss_chunks).sum() / non_masked_elems.maximum(torch.ones_like(non_masked_elems))
+
+
+def map_old_state_dict_weights(state_dict: Dict, mapping: Mapping, prefix: str) -> Dict:
+ for checkpoint_name, attribute_name in mapping.items():
+ full_checkpoint_name = prefix + checkpoint_name
+ if full_checkpoint_name in state_dict:
+ full_attribute_name = prefix + attribute_name
+ state_dict[full_attribute_name] = state_dict.pop(full_checkpoint_name)
+ return state_dict
+
+
+def get_default_supported_precision(training: bool) -> str:
+ """
+ Return the default precision that is supported by the hardware: either `bf16` or `16`.
+
+ Args:
+ training: If True, returns '-mixed' version of the precision; if False, returns '-true' version.
+
+ Returns:
+ The default precision that is suitable for the task and is supported by the hardware.
+ """
+ import torch
+
+ if torch.cuda.is_available():
+ if torch.cuda.is_bf16_supported():
+ return "bf16-mixed" if training else "bf16-true"
+ else:
+ return "16-mixed" if training else "16-true"
+ return "bf16-mixed" if training else "bf16-true"
+
+
+def load_checkpoint(fabric: L.Fabric, model: nn.Module, checkpoint_path: Path, strict: bool = True) -> None:
+ if isinstance(fabric.strategy, FSDPStrategy):
+ fabric.load_raw(checkpoint_path, model, strict=strict)
+ else:
+ state_dict = lazy_load(checkpoint_path)
+ state_dict = state_dict.get("model", state_dict)
+ model.load_state_dict(state_dict, strict=strict)
+
+
+def load_checkpoint_update(
+ fabric: L.Fabric, adapter_path: Path, model: nn.Module, checkpoint_path: Path, strict: bool = True
+) -> None:
+ if isinstance(fabric.strategy, FSDPStrategy):
+ fabric.load_raw(checkpoint_path, model, strict=strict)
+ else:
+ state_dict = lazy_load(checkpoint_path)
+ state_dict = state_dict.get("model", state_dict)
+ adapter_cp = lazy_load(adapter_path)
+ state_dict.update(adapter_cp)
+ model.load_state_dict(state_dict, strict=strict)
+
+
+def flops_per_param(max_seq_length: int, n_layer: int, n_embd: int, n_params: int) -> int:
+ flops_per_token = 2 * n_params # each parameter is used for a MAC (2 FLOPS) per network operation
+ # this assumes that all samples have a fixed length equal to the block size
+ # which is most likely false during finetuning
+ flops_per_seq = flops_per_token * max_seq_length
+ attn_flops_per_seq = n_layer * 2 * 2 * (n_embd * (max_seq_length**2))
+ return flops_per_seq + attn_flops_per_seq
+
+
+def estimate_flops(model: "GPT", training: bool) -> int:
+ """Measures estimated FLOPs for MFU.
+
+ Refs:
+ * https://ar5iv.labs.arxiv.org/html/2205.05198#A1
+ * https://ar5iv.labs.arxiv.org/html/2204.02311#A2
+ """
+ # using all parameters for this is a naive over estimation because not all model parameters actually contribute to
+ # this FLOP computation (e.g. embedding, norm). For this reason, the result will be higher by a fixed percentage
+ # (~10%) compared to the measured FLOPs, making those lower but more realistic.
+ # For a proper estimate, this needs a more fine-grained calculation as in Appendix A of the paper.
+ n_trainable_params = num_parameters(model, requires_grad=True)
+ trainable_flops = flops_per_param(
+ model.max_seq_length, model.config.n_layer, model.config.n_embd, n_trainable_params
+ )
+ # forward + backward + gradients (assumes no gradient accumulation)
+ ops_per_step = 3 if training else 1
+ n_frozen_params = num_parameters(model, requires_grad=False)
+ frozen_flops = flops_per_param(model.max_seq_length, model.config.n_layer, model.config.n_embd, n_frozen_params)
+ # forward + backward
+ frozen_ops_per_step = 2 if training else 1
+ return ops_per_step * trainable_flops + frozen_ops_per_step * frozen_flops
+
+
+class CycleIterator:
+ """An iterator that cycles through an iterable indefinitely.
+
+ Example:
+ >>> iterator = CycleIterator([1, 2, 3])
+ >>> [next(iterator) for _ in range(5)]
+ [1, 2, 3, 1, 2]
+
+ Note:
+ Unlike ``itertools.cycle``, this iterator does not cache the values of the iterable.
+ """
+
+ def __init__(self, iterable: Iterable) -> None:
+ self.iterable = iterable
+ self.epoch = 0
+ self._iterator = None
+
+ def __next__(self) -> Any:
+ if self._iterator is None:
+ self._iterator = iter(self.iterable)
+ try:
+ return next(self._iterator)
+ except StopIteration:
+ self._iterator = iter(self.iterable)
+ self.epoch += 1
+ return next(self._iterator)
+
+ def __iter__(self) -> Self:
+ return self
+
+
+def copy_config_files(source_dir: Path, out_dir: Path) -> None:
+ """Copies the specified configuration and tokenizer files into the output directory."""
+
+ config_files = ["config.json", "generation_config.json", "model_config.yaml"]
+ tokenizer_files = ["tokenizer.json", "tokenizer.model", "tokenizer_config.json"]
+
+ for file_name in config_files + tokenizer_files:
+ src_path = source_dir / file_name
+ if src_path.exists():
+ shutil.copy(src_path, out_dir)
+
+
+def CLI(*args: Any, **kwargs: Any) -> Any:
+ from jsonargparse import CLI, set_config_read_mode, set_docstring_parse_options
+
+ set_docstring_parse_options(attribute_docstrings=True)
+ set_config_read_mode(urls_enabled=True)
+
+ return CLI(*args, **kwargs)
+
+
+def capture_hparams() -> Dict[str, Any]:
+ """Captures the local variables ('hyperparameters') from where this function gets called."""
+ caller_frame = inspect.currentframe().f_back
+ locals_of_caller = caller_frame.f_locals
+ hparams = {}
+ for name, value in locals_of_caller.items():
+ if value is None or isinstance(value, (int, float, str, bool, Path)):
+ hparams[name] = value
+ elif is_dataclass(value):
+ hparams[name] = asdict(value)
+ else:
+ hparams[name] = str(value)
+ return hparams
+
+
+def save_hyperparameters(function: callable, checkpoint_dir: Path) -> None:
+ """Captures the CLI parameters passed to `function` without running `function` and saves them to the checkpoint."""
+ from jsonargparse import capture_parser
+
+ # TODO: Make this more robust
+ # This hack strips away the subcommands from the top-level CLI
+ # to parse the file as if it was called as a script
+ known_commands = [
+ ("finetune_full",), # For subcommands, use `("finetune", "full")` etc
+ ("finetune_lora",),
+ ("finetune_adapter",),
+ ("finetune_adapter_v2",),
+ ("finetune",),
+ ("pretrain",),
+ ]
+ for known_command in known_commands:
+ unwanted = slice(1, 1 + len(known_command))
+ if tuple(sys.argv[unwanted]) == known_command:
+ sys.argv[unwanted] = []
+
+ parser = capture_parser(lambda: CLI(function))
+ config = parser.parse_args()
+ parser.save(config, checkpoint_dir / "hyperparameters.yaml", overwrite=True)
+
+
+def save_config(config: "Config", checkpoint_dir: Path) -> None:
+ config_dict = asdict(config)
+ with open(checkpoint_dir / "model_config.yaml", "w", encoding="utf-8") as fp:
+ yaml.dump(config_dict, fp)
+
+
+def parse_devices(devices: Union[str, int]) -> int:
+ if devices in (-1, "auto"):
+ return torch.cuda.device_count() or 1
+ if isinstance(devices, int) and devices > 0:
+ return devices
+ raise ValueError(f"Devices must be 'auto' or a positive integer, got: {devices!r}")
+
+
+def choose_logger(
+ logger_name: Literal["csv", "tensorboard", "wandb", "mlflow"],
+ out_dir: Path,
+ name: str,
+ log_interval: int = 1,
+ log_args: Optional[Dict] = None,
+ resume: Optional[bool] = None,
+ **kwargs: Any,
+):
+ if logger_name == "csv":
+ return CSVLogger(root_dir=(out_dir / "logs"), name="csv", flush_logs_every_n_steps=log_interval, **kwargs)
+ if logger_name == "tensorboard":
+ return TensorBoardLogger(root_dir=(out_dir / "logs"), name="tensorboard", **kwargs)
+ if logger_name == "wandb":
+ project = log_args.pop("project", name)
+ run = log_args.pop("run", os.environ.get("WANDB_RUN_NAME"))
+ group = log_args.pop("group", os.environ.get("WANDB_RUN_GROUP"))
+ return WandbLogger(project=project, name=run, group=group, resume=resume, **kwargs)
+ if logger_name == "mlflow":
+ return MLFlowLogger(experiment_name=name, **kwargs)
+ raise ValueError(f"`--logger_name={logger_name}` is not a valid option. Choose from 'csv', 'tensorboard', 'wandb'.")
+
+
+def get_argument_names(cls):
+ sig = inspect.signature(cls.__init__)
+ return {
+ name
+ for name, param in sig.parameters.items()
+ if param.kind in [inspect.Parameter.POSITIONAL_OR_KEYWORD, inspect.Parameter.KEYWORD_ONLY]
+ }
+
+
+def instantiate_bnb_optimizer(optimizer, model_parameters):
+ if (isinstance(optimizer, str) and "AdamW" not in optimizer) or (
+ isinstance(optimizer, dict) and "AdamW" not in optimizer.get("class_path", "")
+ ):
+ raise ValueError("The chosen quantization format only supports the AdamW optimizer.")
+
+ import bitsandbytes as bnb
+
+ if isinstance(optimizer, str):
+ optimizer = bnb.optim.PagedAdamW(model_parameters)
+ else:
+ optim_args = get_argument_names(bnb.optim.PagedAdamW)
+ allowed_kwargs = {key: optimizer["init_args"][key] for key in optim_args & optimizer["init_args"].keys()}
+ optimizer = bnb.optim.PagedAdamW(model_parameters, **allowed_kwargs)
+ return optimizer
+
+
+def instantiate_torch_optimizer(optimizer, model_parameters, **kwargs):
+ # Special care taken where some optimizers do not have some parameters referenced in some of the code, for example "fused" in the pretrain.py script:
+ # bnb.optim.AdamW8bit
+ # grokadamw.GrokAdamW
+ # torch.optim.RMSprop
+
+ if isinstance(optimizer, str):
+ if "." in optimizer:
+ class_module, class_name = optimizer.rsplit(".", 1)
+ else:
+ class_module, class_name = "torch.optim", optimizer
+
+ module = __import__(class_module, fromlist=[class_name])
+ optimizer_cls = getattr(module, class_name)
+
+ valid_params = set(inspect.signature(optimizer_cls).parameters)
+ kwargs = {key: value for key, value in dict(kwargs).items() if key in valid_params}
+ optimizer = optimizer_cls(model_parameters, **kwargs)
+ elif isinstance(optimizer, dict):
+ optimizer = dict(optimizer)
+ class_module, class_name = optimizer["class_path"].rsplit(".", 1)
+ module = __import__(class_module, fromlist=[class_name])
+ optimizer_cls = getattr(module, class_name)
+
+ valid_params = set(inspect.signature(optimizer_cls).parameters)
+ kwargs = {key: value for key, value in dict(kwargs).items() if key in valid_params}
+
+ optimizer["init_args"].update(kwargs)
+ optimizer = instantiate_class(model_parameters, optimizer)
+ else:
+ raise ValueError(f'Unrecognized "optimizer" value: {optimizer}')
+
+ return optimizer
+
+
+def extend_checkpoint_dir(checkpoint_dir: Path) -> Path:
+ new_checkpoint_dir = "checkpoints" / checkpoint_dir
+ should_return_new_dir = (
+ not checkpoint_dir.is_dir()
+ and checkpoint_dir.parts[0] != "checkpoints"
+ and not checkpoint_dir.is_absolute()
+ and new_checkpoint_dir.exists()
+ )
+ return new_checkpoint_dir if should_return_new_dir else checkpoint_dir
+
+
+def check_file_size_on_cpu_and_warn(checkpoint_path, device, size_limit=4_509_715_660):
+ """
+ Checks the file size and raises a warning if it exceeds the size_limit.
+ The default size limit is 4.2 GB, the size of TinyLlama 1.1B: 4.2 * 1024 * 1024 * 1024 = 4_509_715_660
+ """
+ size = 0.0
+ if os.path.exists(checkpoint_path):
+ size = os.path.getsize(checkpoint_path)
+ if size > size_limit and str(device) == "cpu":
+ warnings.warn(
+ f"The file size of {checkpoint_path} is over {size_limit / 1024 / 1024 / 1024:.1f} GB. Using a model "
+ "with more than 1B parameters on a CPU can be slow, it is recommended to switch to a GPU."
+ )
+ return size
+
+
+def auto_download_checkpoint(model_name, access_token=None, ignore_tokenizer_files=False):
+ from litgpt.scripts.download import download_from_hub # moved here due to circular import issue
+
+ checkpoint_dir = extend_checkpoint_dir(Path(model_name))
+ try:
+ check_valid_checkpoint_dir(
+ checkpoint_dir, verbose=False, raise_error=True, ignore_tokenizer_files=ignore_tokenizer_files
+ )
+ except FileNotFoundError as e:
+ if access_token is None:
+ access_token = os.getenv("HF_TOKEN")
+
+ if checkpoint_dir.parts[0] != "checkpoints" and not checkpoint_dir.is_absolute():
+ download_from_hub(repo_id=str(model_name), access_token=access_token)
+ checkpoint_dir = Path("checkpoints") / checkpoint_dir
+ else:
+ raise e
+
+ return checkpoint_dir
+
+
+def check_nvlink_connectivity(fabric=None):
+ """Checks GPU connectivity for both NVIDIA and AMD GPUs.
+
+ This function delegates to vendor-specific implementations based on
+ the detected GPU vendor.
+ """
+ if fabric is not None:
+ custom_print = fabric.print
+ else:
+ custom_print = print
+
+ if os.getenv("RANK", "0") == "0":
+ try:
+ if torch.cuda.is_available():
+ device_properties = torch.cuda.get_device_properties(0)
+ gpu_name = device_properties.name.lower()
+ if "nvidia" in gpu_name:
+ _check_nvidia_connectivity(custom_print)
+ elif "advanced micro devices" in gpu_name or "amd" in gpu_name:
+ _check_amd_connectivity(custom_print)
+ else:
+ custom_print(f"Unrecognized GPU vendor: {device_properties.name}")
+ else:
+ custom_print("No GPUs available")
+ except Exception as e:
+ custom_print(f"An error occurred while checking GPU connectivity: {e}")
+
+
+def _check_nvidia_connectivity(custom_print):
+ """Checks NVLink connectivity on NVIDIA GPUs."""
+ result = subprocess.run(["nvidia-smi", "topo", "-m"], stdout=subprocess.PIPE, text=True)
+ if result.returncode != 0:
+ custom_print("Failed to run nvidia-smi")
+ return
+
+ lines = result.stdout.strip().split("\n")
+ start_index = next((i for i, line in enumerate(lines) if "GPU0" in line), None)
+ if start_index is None:
+ custom_print("Failed to parse nvidia-smi output")
+ return
+
+ headers_line = lines[start_index]
+ headers = headers_line.split()
+ gpu_regex = re.compile(r"^GPU\d+$")
+ gpu_count = len([header for header in headers if gpu_regex.match(header)])
+
+ all_nvlink = True
+ for line in lines[start_index + 1 : start_index + 1 + gpu_count]:
+ columns = line.split()
+ connections = columns[1 : 1 + gpu_count]
+ if not all("NV" in conn for conn in connections if conn != "X"):
+ all_nvlink = False
+ break
+
+ if all_nvlink:
+ custom_print("All GPUs are fully connected via NVLink.")
+ else:
+ custom_print(
+ "Warning: Not all GPUs are fully connected via NVLink. Some GPUs are connected via slower interfaces. "
+ "It is recommended to switch to a different machine with faster GPU connections for optimal multi-GPU training performance."
+ )
+
+
+def _check_amd_connectivity(custom_print):
+ """Checks XGMI connectivity on AMD GPUs."""
+ result = subprocess.run(["rocm-smi", "--showtopotype"], stdout=subprocess.PIPE, text=True)
+ if result.returncode != 0:
+ custom_print("Failed to run rocm-smi")
+ return
+
+ lines = result.stdout.strip().split("\n")
+ gpu_header_index = next((i for i, line in enumerate(lines) if re.match(r"^\s*GPU0", line)), None)
+ if gpu_header_index is None or gpu_header_index == 0:
+ custom_print("Failed to parse rocm-smi output (no GPU headers found)")
+ return
+
+ header_line = lines[gpu_header_index - 1]
+ headers = header_line.strip().split()
+ gpu_regex = re.compile(r"^GPU\d+$")
+ gpu_count = len([header for header in headers if gpu_regex.match(header)])
+
+ gpu_lines = []
+ for line in lines[gpu_header_index : gpu_header_index + gpu_count]:
+ if re.match(r"^\s*GPU\d+", line):
+ gpu_lines.append(line.strip())
+ if len(gpu_lines) != gpu_count:
+ custom_print("Mismatch in GPU count when parsing rocm-smi output")
+ return
+
+ all_xgmi = True
+ for line in gpu_lines:
+ columns = line.split()
+ connections = columns[1 : 1 + gpu_count]
+ for conn in connections:
+ if conn not in ("XGMI", "0"):
+ all_xgmi = False
+ break
+ if not all_xgmi:
+ break
+
+ if all_xgmi:
+ custom_print("All GPUs are fully connected via XGMI.")
+ else:
+ custom_print(
+ "Warning: Not all GPUs are fully connected via XGMI. Some GPUs are connected via slower interfaces. "
+ "It is recommended to switch to a different machine with faster GPU connections for optimal multi-GPU training performance."
+ )
+
+
+def fix_and_load_json(s):
+ # Remove trailing commas before } or ]
+ s = re.sub(r",(\s*[}\]])", r"\1", s)
+
+ # Insert missing commas between properties
+ # Match positions where a value is followed by a newline and then a quote without a comma
+ pattern = r'(?<=[}\]0-9truefalsenull"])\s*(\n\s*)"'
+ replacement = r',\1"'
+ s = re.sub(pattern, replacement, s)
+
+ # Now try to parse the JSON
+ try:
+ return json.loads(s)
+ except json.JSONDecodeError as e:
+ raise ValueError(f"Failed to parse JSON after fixing: {e}")
+
+
+def create_finetuning_performance_report(training_time, token_counts, device_type):
+ tok_sec = token_counts["raw_tokens_plus_prompt_template_and_padding"] / training_time
+ output = f"""
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : {token_counts["raw_tokens"]:>5}
+| - Tokens w/ Prompt : {token_counts["raw_tokens_plus_prompt_template"]:>5}
+| - Total Tokens (w/ Padding) : {token_counts["raw_tokens_plus_prompt_template_and_padding"]:>5}
+| -----------------------------------------------------
+| Performance
+| - Training Time : {training_time:.2f} s
+| - Tok/sec : {tok_sec:.2f} tok/s
+| -----------------------------------------------------
+"""
+
+ if device_type == "cuda":
+ memory_used = torch.cuda.max_memory_allocated() / 1e9
+ output += "| Memory Usage \n"
+ output += f"| - Memory Used : {memory_used:.02f} GB \n"
+ output += "-------------------------------------------------------\n"
+
+ return output
+
+
+def select_sft_generate_example(eval, data):
+ if eval.evaluate_example == "first":
+ if len(data.test_dataset.data):
+ instruction = data.test_dataset.data[0]["instruction"]
+ else:
+ instruction = data.train_dataset.data[0]["instruction"]
+
+ elif eval.evaluate_example == "random":
+ if len(data.test_dataset.data):
+ random_idx = random.randint(0, len(data.test_dataset.data) - 1)
+ instruction = data.test_dataset.data[random_idx]["instruction"]
+ else:
+ random_idx = random.randint(0, len(data.train_dataset.data) - 1)
+ instruction = data.train_dataset.data[random_idx]["instruction"]
+
+ elif isinstance(eval.evaluate_example, int):
+ index = eval.evaluate_example
+ if len(data.test_dataset.data) > index:
+ instruction = data.test_dataset.data[index]["instruction"]
+ elif len(data.train_dataset.data) > index:
+ instruction = data.train_dataset.data[index]["instruction"]
+ else:
+ raise IndexError(f"Index {index} is out of range for both test and training datasets.")
+
+ else:
+ raise ValueError(f"Unknown evaluation example type: {eval.evaluate_example}")
+ return instruction
+
+
+def _RunIf(thunder: bool = False, **kwargs):
+ import pytest
+ from lightning.fabric.utilities.testing import _runif_reasons
+
+ reasons, marker_kwargs = _runif_reasons(**kwargs)
+
+ if thunder and not module_available("thunder"):
+ # if we require Thunder, but it's not available, we should skip
+ reasons.append("Thunder")
+
+ return pytest.mark.skipif(condition=len(reasons) > 0, reason=f"Requires: [{' + '.join(reasons)}]", **marker_kwargs)
+
+
+def kill_process_tree(pid: int):
+ """
+ Kill a process and all its child processes given the parent PID.
+ """
+ try:
+ parent = psutil.Process(pid)
+ children = parent.children(recursive=True)
+ for child in children:
+ child.kill()
+ parent.kill()
+ except psutil.NoSuchProcess:
+ pass # Process already exited
diff --git a/out/eval/tinyllama_benches/monthly_metrics.csv b/out/eval/tinyllama_benches/monthly_metrics.csv
new file mode 100644
index 0000000000000000000000000000000000000000..358924670f2cc4fc77564a362c595ae2d7e7d2f7
--- /dev/null
+++ b/out/eval/tinyllama_benches/monthly_metrics.csv
@@ -0,0 +1,133 @@
+month,task,metric,value
+2407,arc_challenge,acc,0.26621160409556316
+2408,arc_challenge,acc,0.25426621160409557
+2409,arc_challenge,acc,0.23890784982935154
+2410,arc_challenge,acc,0.24146757679180889
+2411,arc_challenge,acc,0.2380546075085324
+2412,arc_challenge,acc,0.23464163822525597
+2501,arc_challenge,acc,0.22525597269624573
+2502,arc_challenge,acc,0.21928327645051193
+2503,arc_challenge,acc,0.22013651877133106
+2504,arc_challenge,acc,0.22781569965870307
+2505,arc_challenge,acc,0.2175767918088737
+2506,arc_challenge,acc,0.23976109215017063
+2407,arc_challenge,acc_norm,0.3046075085324232
+2408,arc_challenge,acc_norm,0.2883959044368601
+2409,arc_challenge,acc_norm,0.2764505119453925
+2410,arc_challenge,acc_norm,0.26535836177474403
+2411,arc_challenge,acc_norm,0.27047781569965873
+2412,arc_challenge,acc_norm,0.25170648464163825
+2501,arc_challenge,acc_norm,0.2568259385665529
+2502,arc_challenge,acc_norm,0.24061433447098976
+2503,arc_challenge,acc_norm,0.26023890784982934
+2504,arc_challenge,acc_norm,0.24829351535836178
+2505,arc_challenge,acc_norm,0.26535836177474403
+2506,arc_challenge,acc_norm,0.2687713310580205
+2407,arc_easy,acc,0.5757575757575758
+2408,arc_easy,acc,0.5391414141414141
+2409,arc_easy,acc,0.5260942760942761
+2410,arc_easy,acc,0.5244107744107744
+2411,arc_easy,acc,0.5071548821548821
+2412,arc_easy,acc,0.48569023569023567
+2501,arc_easy,acc,0.4941077441077441
+2502,arc_easy,acc,0.47095959595959597
+2503,arc_easy,acc,0.4852693602693603
+2504,arc_easy,acc,0.4659090909090909
+2505,arc_easy,acc,0.4722222222222222
+2506,arc_easy,acc,0.47769360269360267
+2407,arc_easy,acc_norm,0.531986531986532
+2408,arc_easy,acc_norm,0.5004208754208754
+2409,arc_easy,acc_norm,0.49957912457912457
+2410,arc_easy,acc_norm,0.49326599326599324
+2411,arc_easy,acc_norm,0.4819023569023569
+2412,arc_easy,acc_norm,0.4511784511784512
+2501,arc_easy,acc_norm,0.4583333333333333
+2502,arc_easy,acc_norm,0.4318181818181818
+2503,arc_easy,acc_norm,0.4537037037037037
+2504,arc_easy,acc_norm,0.44023569023569026
+2505,arc_easy,acc_norm,0.44191919191919193
+2506,arc_easy,acc_norm,0.45664983164983164
+2407,hellaswag,acc,0.416849233220474
+2408,hellaswag,acc,0.3974307906791476
+2409,hellaswag,acc,0.38498307110137425
+2410,hellaswag,acc,0.3686516630153356
+2411,hellaswag,acc,0.35610436168094006
+2412,hellaswag,acc,0.3496315475004979
+2501,hellaswag,acc,0.34405496912965544
+2502,hellaswag,acc,0.33409679346743676
+2503,hellaswag,acc,0.33738299143596895
+2504,hellaswag,acc,0.3301135232025493
+2505,hellaswag,acc,0.3280223063134834
+2506,hellaswag,acc,0.3253335988846843
+2407,hellaswag,acc_norm,0.5473013343955387
+2408,hellaswag,acc_norm,0.5153355905198168
+2409,hellaswag,acc_norm,0.489344752041426
+2410,hellaswag,acc_norm,0.46484763991236805
+2411,hellaswag,acc_norm,0.44343756223859787
+2412,hellaswag,acc_norm,0.4257120095598486
+2501,hellaswag,acc_norm,0.4239195379406493
+2502,hellaswag,acc_norm,0.4017128062139016
+2503,hellaswag,acc_norm,0.40201155148376816
+2504,hellaswag,acc_norm,0.39543915554670384
+2505,hellaswag,acc_norm,0.3903604859589723
+2506,hellaswag,acc_norm,0.38697470623381797
+2407,mmlu,acc,0.241917105825381
+2408,mmlu,acc,0.2318758011679248
+2409,mmlu,acc,0.22959692351516878
+2410,mmlu,acc,0.23807149978635522
+2411,mmlu,acc,0.23508047286711295
+2412,mmlu,acc,0.2352229027204102
+2501,mmlu,acc,0.2380002848597066
+2502,mmlu,acc,0.23593505198689646
+2503,mmlu,acc,0.2318758011679248
+2504,mmlu,acc,0.23251673550776242
+2505,mmlu,acc,0.23678963110667997
+2506,mmlu,acc,0.24291411479846176
+2407,sciq,acc,0.882
+2408,sciq,acc,0.87
+2409,sciq,acc,0.882
+2410,sciq,acc,0.866
+2411,sciq,acc,0.857
+2412,sciq,acc,0.855
+2501,sciq,acc,0.854
+2502,sciq,acc,0.836
+2503,sciq,acc,0.82
+2504,sciq,acc,0.833
+2505,sciq,acc,0.834
+2506,sciq,acc,0.847
+2407,sciq,acc_norm,0.844
+2408,sciq,acc_norm,0.804
+2409,sciq,acc_norm,0.819
+2410,sciq,acc_norm,0.811
+2411,sciq,acc_norm,0.822
+2412,sciq,acc_norm,0.811
+2501,sciq,acc_norm,0.802
+2502,sciq,acc_norm,0.781
+2503,sciq,acc_norm,0.771
+2504,sciq,acc_norm,0.778
+2505,sciq,acc_norm,0.786
+2506,sciq,acc_norm,0.795
+2407,truthfulqa_mc1,acc,0.2423500611995104
+2408,truthfulqa_mc1,acc,0.2594859241126071
+2409,truthfulqa_mc1,acc,0.2386780905752754
+2410,truthfulqa_mc1,acc,0.2521419828641371
+2411,truthfulqa_mc1,acc,0.2607099143206854
+2412,truthfulqa_mc1,acc,0.26805385556915545
+2501,truthfulqa_mc1,acc,0.27906976744186046
+2502,truthfulqa_mc1,acc,0.2974296205630355
+2503,truthfulqa_mc1,acc,0.26193390452876375
+2504,truthfulqa_mc1,acc,0.27050183598531213
+2505,truthfulqa_mc1,acc,0.26438188494492043
+2506,truthfulqa_mc1,acc,0.26805385556915545
+2407,truthfulqa_mc2,acc,0.41171296428698934
+2408,truthfulqa_mc2,acc,0.4127800755882328
+2409,truthfulqa_mc2,acc,0.40520433625245705
+2410,truthfulqa_mc2,acc,0.42608784023385377
+2411,truthfulqa_mc2,acc,0.42431987710612645
+2412,truthfulqa_mc2,acc,0.426638224947852
+2501,truthfulqa_mc2,acc,0.43294939737693783
+2502,truthfulqa_mc2,acc,0.45673716541282944
+2503,truthfulqa_mc2,acc,0.4308698731928784
+2504,truthfulqa_mc2,acc,0.4490762477503484
+2505,truthfulqa_mc2,acc,0.43051964732093856
+2506,truthfulqa_mc2,acc,0.4367369684704035
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/config.json b/out/eval/tinyllama_full_arc_arxiv_mc/2407/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/generation_config.json b/out/eval/tinyllama_full_arc_arxiv_mc/2407/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/log.txt b/out/eval/tinyllama_full_arc_arxiv_mc/2407/log.txt
new file mode 100644
index 0000000000000000000000000000000000000000..535a37244f7312cc4054b10053b2a0b1b8824ab7
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/log.txt
@@ -0,0 +1,29 @@
+{'access_token': None,
+ 'batch_size': 4,
+ 'checkpoint_dir': PosixPath('out/finetune/tinyllama_full_arc/2407/final'),
+ 'device': None,
+ 'dtype': None,
+ 'force_conversion': False,
+ 'limit': None,
+ 'num_fewshot': None,
+ 'out_dir': PosixPath('out/eval/tinyllama_full_arc_arxiv_mc/2407'),
+ 'save_filepath': None,
+ 'seed': 1234,
+ 'tasks': 'arxiv_mc'}
+INFO 09-24 14:45:19 [__init__.py:241] Automatically detected platform cuda.
+Detected kernel version 5.4.0, which is below the recommended minimum of 5.5.0; this can cause the process to hang. It is recommended to upgrade the kernel to the minimum version or higher.
+{'checkpoint_dir': PosixPath('out/finetune/tinyllama_full_arc/2407/final'),
+ 'output_dir': PosixPath('out/eval/tinyllama_full_arc_arxiv_mc/2407')}
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1272.78it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1293.57it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1282.71it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1288.17it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1297.51it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1325.50it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1329.93it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1322.84it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1326.23it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1331.66it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1336.44it/s]
+
0%| | 0/100 [00:00, ?it/s]
100%|██████████| 100/100 [00:00<00:00, 1329.57it/s]
+
Running loglikelihood requests: 0%| | 0/4800 [00:00, ?it/s]
Running loglikelihood requests: 0%| | 1/4800 [00:00<45:48, 1.75it/s]
Running loglikelihood requests: 0%| | 21/4800 [00:00<02:00, 39.65it/s]
Running loglikelihood requests: 1%| | 41/4800 [00:00<01:06, 71.47it/s]
Running loglikelihood requests: 1%|▏ | 64/4800 [00:00<00:45, 104.11it/s]
Running loglikelihood requests: 2%|▏ | 84/4800 [00:01<00:38, 122.95it/s]
Running loglikelihood requests: 2%|▏ | 104/4800 [00:01<00:34, 137.52it/s]
Running loglikelihood requests: 3%|▎ | 124/4800 [00:01<00:31, 148.54it/s]
Running loglikelihood requests: 3%|▎ | 144/4800 [00:01<00:29, 157.15it/s]
Running loglikelihood requests: 3%|▎ | 164/4800 [00:01<00:28, 163.34it/s]
Running loglikelihood requests: 4%|▍ | 184/4800 [00:01<00:27, 167.82it/s]
Running loglikelihood requests: 4%|▍ | 204/4800 [00:01<00:26, 171.03it/s]
Running loglikelihood requests: 5%|▍ | 224/4800 [00:01<00:27, 169.48it/s]
Running loglikelihood requests: 5%|▌ | 244/4800 [00:01<00:26, 171.88it/s]
Running loglikelihood requests: 5%|▌ | 262/4800 [00:02<00:26, 170.26it/s]
Running loglikelihood requests: 6%|▌ | 280/4800 [00:02<00:26, 167.55it/s]
Running loglikelihood requests: 6%|▋ | 301/4800 [00:02<00:25, 173.59it/s]
Running loglikelihood requests: 7%|▋ | 321/4800 [00:02<00:25, 174.02it/s]
Running loglikelihood requests: 7%|▋ | 341/4800 [00:02<00:25, 175.45it/s]
Running loglikelihood requests: 8%|▊ | 361/4800 [00:02<00:25, 176.64it/s]
Running loglikelihood requests: 8%|▊ | 381/4800 [00:02<00:24, 177.07it/s]
Running loglikelihood requests: 8%|▊ | 401/4800 [00:02<00:24, 177.44it/s]
Running loglikelihood requests: 9%|▉ | 421/4800 [00:02<00:24, 177.76it/s]
Running loglikelihood requests: 9%|▉ | 441/4800 [00:03<00:24, 177.94it/s]
Running loglikelihood requests: 10%|▉ | 461/4800 [00:03<00:24, 178.17it/s]
Running loglikelihood requests: 10%|█ | 481/4800 [00:03<00:24, 178.27it/s]
Running loglikelihood requests: 10%|█ | 501/4800 [00:03<00:24, 178.52it/s]
Running loglikelihood requests: 11%|█ | 521/4800 [00:03<00:23, 178.73it/s]
Running loglikelihood requests: 11%|█▏ | 542/4800 [00:03<00:23, 180.39it/s]
Running loglikelihood requests: 12%|█▏ | 564/4800 [00:03<00:22, 185.18it/s]
Running loglikelihood requests: 12%|█▏ | 584/4800 [00:03<00:22, 183.47it/s]
Running loglikelihood requests: 13%|█▎ | 604/4800 [00:03<00:23, 182.12it/s]
Running loglikelihood requests: 13%|█▎ | 623/4800 [00:04<00:23, 178.73it/s]
Running loglikelihood requests: 13%|█▎ | 641/4800 [00:04<00:23, 173.46it/s]
Running loglikelihood requests: 14%|█▍ | 661/4800 [00:04<00:23, 175.03it/s]
Running loglikelihood requests: 14%|█▍ | 681/4800 [00:04<00:23, 176.14it/s]
Running loglikelihood requests: 15%|█▍ | 701/4800 [00:04<00:23, 177.01it/s]
Running loglikelihood requests: 15%|█▌ | 721/4800 [00:04<00:22, 177.72it/s]
Running loglikelihood requests: 15%|█▌ | 741/4800 [00:04<00:22, 178.26it/s]
Running loglikelihood requests: 16%|█▌ | 761/4800 [00:04<00:22, 178.56it/s]
Running loglikelihood requests: 16%|█▋ | 781/4800 [00:04<00:22, 178.78it/s]
Running loglikelihood requests: 17%|█▋ | 801/4800 [00:05<00:22, 178.52it/s]
Running loglikelihood requests: 17%|█▋ | 825/4800 [00:05<00:21, 189.00it/s]
Running loglikelihood requests: 18%|█▊ | 845/4800 [00:05<00:21, 186.23it/s]
Running loglikelihood requests: 18%|█▊ | 865/4800 [00:05<00:21, 184.48it/s]
Running loglikelihood requests: 18%|█▊ | 885/4800 [00:05<00:21, 183.17it/s]
Running loglikelihood requests: 19%|█▉ | 906/4800 [00:05<00:21, 183.01it/s]
Running loglikelihood requests: 19%|█▉ | 926/4800 [00:05<00:21, 179.29it/s]
Running loglikelihood requests: 20%|█▉ | 946/4800 [00:05<00:21, 178.84it/s]
Running loglikelihood requests: 20%|██ | 966/4800 [00:05<00:21, 178.89it/s]
\ No newline at end of file
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/model_config.yaml b/out/eval/tinyllama_full_arc_arxiv_mc/2407/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d31881309289cb59520314f7da89a8ef38f3c77e
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 64
+hf_config:
+ name: TinyLlama-1.1B-intermediate-step-1431k-3T
+ org: TinyLlama
+intermediate_size: 5632
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 2048
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 22
+n_query_groups: 4
+name: tiny-llama-1.1b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-05
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/results.json b/out/eval/tinyllama_full_arc_arxiv_mc/2407/results.json
new file mode 100644
index 0000000000000000000000000000000000000000..fb3545cd91b3ab0a1e0f5d95e8a316cc707caeb1
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/results.json
@@ -0,0 +1,103962 @@
+{
+ "results": {
+ "arxiv_mc": {
+ "acc,none": 0.16583333333333333,
+ "acc_stderr,none": 0.01074491240245708,
+ "acc_norm,none": 0.23916666666666667,
+ "acc_norm_stderr,none": 0.012288331311441483
+ },
+ "arxiv_mc_2407": {
+ "acc,none": 0.2,
+ "acc_stderr,none": 0.04020151261036846,
+ "acc_norm,none": 0.33,
+ "acc_norm_stderr,none": 0.047258156262526045
+ },
+ "arxiv_mc_2408": {
+ "acc,none": 0.16,
+ "acc_stderr,none": 0.036845294917747115,
+ "acc_norm,none": 0.18,
+ "acc_norm_stderr,none": 0.03861229196653697
+ },
+ "arxiv_mc_2409": {
+ "acc,none": 0.14,
+ "acc_stderr,none": 0.03487350880197772,
+ "acc_norm,none": 0.24,
+ "acc_norm_stderr,none": 0.04292346959909283
+ },
+ "arxiv_mc_2410": {
+ "acc,none": 0.2,
+ "acc_stderr,none": 0.04020151261036846,
+ "acc_norm,none": 0.23,
+ "acc_norm_stderr,none": 0.042295258468165044
+ },
+ "arxiv_mc_2411": {
+ "acc,none": 0.24,
+ "acc_stderr,none": 0.04292346959909282,
+ "acc_norm,none": 0.34,
+ "acc_norm_stderr,none": 0.04760952285695235
+ },
+ "arxiv_mc_2412": {
+ "acc,none": 0.11,
+ "acc_stderr,none": 0.031446603773522035,
+ "acc_norm,none": 0.23,
+ "acc_norm_stderr,none": 0.04229525846816506
+ },
+ "arxiv_mc_2501": {
+ "acc,none": 0.14,
+ "acc_stderr,none": 0.03487350880197771,
+ "acc_norm,none": 0.24,
+ "acc_norm_stderr,none": 0.04292346959909284
+ },
+ "arxiv_mc_2502": {
+ "acc,none": 0.14,
+ "acc_stderr,none": 0.034873508801977704,
+ "acc_norm,none": 0.2,
+ "acc_norm_stderr,none": 0.040201512610368445
+ },
+ "arxiv_mc_2503": {
+ "acc,none": 0.17,
+ "acc_stderr,none": 0.0377525168068637,
+ "acc_norm,none": 0.2,
+ "acc_norm_stderr,none": 0.04020151261036843
+ },
+ "arxiv_mc_2504": {
+ "acc,none": 0.15,
+ "acc_stderr,none": 0.035887028128263734,
+ "acc_norm,none": 0.17,
+ "acc_norm_stderr,none": 0.0377525168068637
+ },
+ "arxiv_mc_2505": {
+ "acc,none": 0.19,
+ "acc_stderr,none": 0.03942772444036623,
+ "acc_norm,none": 0.24,
+ "acc_norm_stderr,none": 0.042923469599092816
+ },
+ "arxiv_mc_2506": {
+ "acc,none": 0.15,
+ "acc_stderr,none": 0.03588702812826371,
+ "acc_norm,none": 0.27,
+ "acc_norm_stderr,none": 0.0446196043338474
+ }
+ },
+ "groups": {
+ "arxiv_mc": {
+ "acc,none": 0.16583333333333333,
+ "acc_stderr,none": 0.01074491240245708,
+ "acc_norm,none": 0.23916666666666667,
+ "acc_norm_stderr,none": 0.012288331311441483
+ }
+ },
+ "group_subtasks": {
+ "arxiv_mc": [
+ "arxiv_mc_2407",
+ "arxiv_mc_2408",
+ "arxiv_mc_2409",
+ "arxiv_mc_2410",
+ "arxiv_mc_2411",
+ "arxiv_mc_2412",
+ "arxiv_mc_2501",
+ "arxiv_mc_2502",
+ "arxiv_mc_2503",
+ "arxiv_mc_2504",
+ "arxiv_mc_2505",
+ "arxiv_mc_2506"
+ ]
+ },
+ "configs": {
+ "arxiv_mc_2407": {
+ "task": "arxiv_mc_2407",
+ "task_alias": "2024-07",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2407",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2407mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2408": {
+ "task": "arxiv_mc_2408",
+ "task_alias": "2024-08",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2408",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2408mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2409": {
+ "task": "arxiv_mc_2409",
+ "task_alias": "2024-09",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2409",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2409mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2410": {
+ "task": "arxiv_mc_2410",
+ "task_alias": "2024-10",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2410",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2410mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2411": {
+ "task": "arxiv_mc_2411",
+ "task_alias": "2024-11",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2411",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2411mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2412": {
+ "task": "arxiv_mc_2412",
+ "task_alias": "2024-12",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2412",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2412mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2501": {
+ "task": "arxiv_mc_2501",
+ "task_alias": "2025-01",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2501",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2501mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2502": {
+ "task": "arxiv_mc_2502",
+ "task_alias": "2025-02",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2502",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2502mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2503": {
+ "task": "arxiv_mc_2503",
+ "task_alias": "2025-03",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2503",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2503mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2504": {
+ "task": "arxiv_mc_2504",
+ "task_alias": "2025-04",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2504",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2504mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2505": {
+ "task": "arxiv_mc_2505",
+ "task_alias": "2025-05",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2505",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2505mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ },
+ "arxiv_mc_2506": {
+ "task": "arxiv_mc_2506",
+ "task_alias": "2025-06",
+ "tag": "arxiv_mc_tasks",
+ "dataset_path": "json",
+ "dataset_name": "arxiv_mc_2506",
+ "dataset_kwargs": {
+ "data_files": {
+ "test": "/mnt/data/lm-evaluation-harness/dataset/arxiv_mc/2506mc.json"
+ }
+ },
+ "test_split": "test",
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n answer_map = {\"A\": 0, \"B\": 1, \"C\": 2, \"D\": 3}\n out_doc = {\n \"question\": doc[\"question\"],\n \"choices\": doc[\"choices\"],\n \"answer\": answer_map[doc[\"answer\"]],\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
+ "doc_to_text": "Question:{{question.strip()}}\nAnswer:",
+ "doc_to_target": "answer",
+ "unsafe_code": false,
+ "doc_to_choice": "{{choices}}",
+ "description": "",
+ "target_delimiter": " ",
+ "fewshot_delimiter": "\n\n",
+ "num_fewshot": 0,
+ "metric_list": [
+ {
+ "metric": "acc",
+ "aggregation": "mean",
+ "higher_is_better": true
+ },
+ {
+ "metric": "acc_norm",
+ "aggregation": "mean",
+ "higher_is_better": true
+ }
+ ],
+ "output_type": "multiple_choice",
+ "repeats": 1,
+ "should_decontaminate": false,
+ "metadata": {}
+ }
+ },
+ "versions": {
+ "arxiv_mc": null,
+ "arxiv_mc_2407": "Yaml",
+ "arxiv_mc_2408": "Yaml",
+ "arxiv_mc_2409": "Yaml",
+ "arxiv_mc_2410": "Yaml",
+ "arxiv_mc_2411": "Yaml",
+ "arxiv_mc_2412": "Yaml",
+ "arxiv_mc_2501": "Yaml",
+ "arxiv_mc_2502": "Yaml",
+ "arxiv_mc_2503": "Yaml",
+ "arxiv_mc_2504": "Yaml",
+ "arxiv_mc_2505": "Yaml",
+ "arxiv_mc_2506": "Yaml"
+ },
+ "n-shot": {
+ "arxiv_mc_2407": 0,
+ "arxiv_mc_2408": 0,
+ "arxiv_mc_2409": 0,
+ "arxiv_mc_2410": 0,
+ "arxiv_mc_2411": 0,
+ "arxiv_mc_2412": 0,
+ "arxiv_mc_2501": 0,
+ "arxiv_mc_2502": 0,
+ "arxiv_mc_2503": 0,
+ "arxiv_mc_2504": 0,
+ "arxiv_mc_2505": 0,
+ "arxiv_mc_2506": 0
+ },
+ "higher_is_better": {
+ "arxiv_mc": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2407": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2408": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2409": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2410": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2411": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2412": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2501": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2502": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2503": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2504": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2505": {
+ "acc": true,
+ "acc_norm": true
+ },
+ "arxiv_mc_2506": {
+ "acc": true,
+ "acc_norm": true
+ }
+ },
+ "n-samples": {
+ "arxiv_mc_2407": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2408": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2409": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2410": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2411": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2412": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2501": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2502": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2503": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2504": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2505": {
+ "original": 100,
+ "effective": 100
+ },
+ "arxiv_mc_2506": {
+ "original": 100,
+ "effective": 100
+ }
+ },
+ "samples": {
+ "arxiv_mc_2407": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "Which chunking method was chosen in the study for balancing simplicity and semantic preservation?",
+ "choices": [
+ "Token-level Chunking",
+ "Sentence-level Chunking",
+ "Semantic-level Chunking",
+ "Paragraph-level Chunking"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which chunking method was chosen in the study for balancing simplicity and semantic preservation?\nAnswer:",
+ " Token-level Chunking"
+ ],
+ [
+ "Question:Which chunking method was chosen in the study for balancing simplicity and semantic preservation?\nAnswer:",
+ " Sentence-level Chunking"
+ ],
+ [
+ "Question:Which chunking method was chosen in the study for balancing simplicity and semantic preservation?\nAnswer:",
+ " Semantic-level Chunking"
+ ],
+ [
+ "Question:Which chunking method was chosen in the study for balancing simplicity and semantic preservation?\nAnswer:",
+ " Paragraph-level Chunking"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.86745834350586,
+ false
+ ]
+ ],
+ [
+ [
+ -12.75033950805664,
+ false
+ ]
+ ],
+ [
+ [
+ -18.18337059020996,
+ false
+ ]
+ ],
+ [
+ [
+ -15.440104484558105,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.86745834350586,
+ false
+ ],
+ [
+ -12.75033950805664,
+ false
+ ],
+ [
+ -18.18337059020996,
+ false
+ ],
+ [
+ -15.440104484558105,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "112fbf650834f38f39bc57c35a7c8cc57f706e1daacf1cdd6a832275c5608ac3",
+ "prompt_hash": "4f21c252401f8a7f83cba5cd45a593221ca2fa1ec916980f2b415e1ac1d60783",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "Which vector database was identified as the most comprehensive solution, meeting all key criteria including multiple index types, billion-scale support, hybrid search, and cloud-native capabilities?",
+ "choices": [
+ "Weaviate",
+ "Faiss",
+ "Qdrant",
+ "Milvus"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which vector database was identified as the most comprehensive solution, meeting all key criteria including multiple index types, billion-scale support, hybrid search, and cloud-native capabilities?\nAnswer:",
+ " Weaviate"
+ ],
+ [
+ "Question:Which vector database was identified as the most comprehensive solution, meeting all key criteria including multiple index types, billion-scale support, hybrid search, and cloud-native capabilities?\nAnswer:",
+ " Faiss"
+ ],
+ [
+ "Question:Which vector database was identified as the most comprehensive solution, meeting all key criteria including multiple index types, billion-scale support, hybrid search, and cloud-native capabilities?\nAnswer:",
+ " Qdrant"
+ ],
+ [
+ "Question:Which vector database was identified as the most comprehensive solution, meeting all key criteria including multiple index types, billion-scale support, hybrid search, and cloud-native capabilities?\nAnswer:",
+ " Milvus"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.53425407409668,
+ false
+ ]
+ ],
+ [
+ [
+ -7.181585788726807,
+ false
+ ]
+ ],
+ [
+ [
+ -9.658040046691895,
+ false
+ ]
+ ],
+ [
+ [
+ -8.326963424682617,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.53425407409668,
+ false
+ ],
+ [
+ -7.181585788726807,
+ false
+ ],
+ [
+ -9.658040046691895,
+ false
+ ],
+ [
+ -8.326963424682617,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dc5641478241a96b0f12c3e9c434abd3b0971c0ed76a108c5f8298504f86d732",
+ "prompt_hash": "aedd8317881ad284c723d89028876ce36faf93c1b4b32fc269961413c7729440",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "Which reranking model was recommended as balancing performance and efficiency?",
+ "choices": [
+ "monoT5",
+ "RankLLaMA",
+ "TILDEv2",
+ "monoBERT"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which reranking model was recommended as balancing performance and efficiency?\nAnswer:",
+ " monoT5"
+ ],
+ [
+ "Question:Which reranking model was recommended as balancing performance and efficiency?\nAnswer:",
+ " RankLLaMA"
+ ],
+ [
+ "Question:Which reranking model was recommended as balancing performance and efficiency?\nAnswer:",
+ " TILDEv2"
+ ],
+ [
+ "Question:Which reranking model was recommended as balancing performance and efficiency?\nAnswer:",
+ " monoBERT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.6542329788208,
+ false
+ ]
+ ],
+ [
+ [
+ -12.929773330688477,
+ false
+ ]
+ ],
+ [
+ [
+ -19.209312438964844,
+ false
+ ]
+ ],
+ [
+ [
+ -14.345467567443848,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.6542329788208,
+ false
+ ],
+ [
+ -12.929773330688477,
+ false
+ ],
+ [
+ -19.209312438964844,
+ false
+ ],
+ [
+ -14.345467567443848,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ec1881d1f0dd4d7a02eb312674cd46a64e082bcc50727d3d07966e690bcaaee0",
+ "prompt_hash": "1516fe9f99e098b69b5a14277865693e334db21041e6a088a001c7daf9ed2959",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "In generator fine-tuning, which training strategy was found to enhance robustness by mixing relevant and random contexts?",
+ "choices": [
+ "Training only with relevant documents (Dg)",
+ "Training only with random documents (Dr)",
+ "Training with both relevant and random documents (Dgr)",
+ "Training with duplicate relevant documents (Dgg)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In generator fine-tuning, which training strategy was found to enhance robustness by mixing relevant and random contexts?\nAnswer:",
+ " Training only with relevant documents (Dg)"
+ ],
+ [
+ "Question:In generator fine-tuning, which training strategy was found to enhance robustness by mixing relevant and random contexts?\nAnswer:",
+ " Training only with random documents (Dr)"
+ ],
+ [
+ "Question:In generator fine-tuning, which training strategy was found to enhance robustness by mixing relevant and random contexts?\nAnswer:",
+ " Training with both relevant and random documents (Dgr)"
+ ],
+ [
+ "Question:In generator fine-tuning, which training strategy was found to enhance robustness by mixing relevant and random contexts?\nAnswer:",
+ " Training with duplicate relevant documents (Dgg)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -40.50318908691406,
+ false
+ ]
+ ],
+ [
+ [
+ -39.652557373046875,
+ false
+ ]
+ ],
+ [
+ [
+ -44.193763732910156,
+ false
+ ]
+ ],
+ [
+ [
+ -52.69440460205078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -40.50318908691406,
+ false
+ ],
+ [
+ -39.652557373046875,
+ false
+ ],
+ [
+ -44.193763732910156,
+ false
+ ],
+ [
+ -52.69440460205078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7173c9ca783290cdb4b8a10eb3a1dce044a749f837da2139a7a29d92d000cf85",
+ "prompt_hash": "384c9b52ef5231fd417565f14aea7a6a784241b6b1fb250deee33dbddf87fff7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "Which summarization method was recommended for its outstanding performance?",
+ "choices": [
+ "Selective Context",
+ "LongLLMLingua",
+ "BM25 Extractive",
+ "Recomp"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which summarization method was recommended for its outstanding performance?\nAnswer:",
+ " Selective Context"
+ ],
+ [
+ "Question:Which summarization method was recommended for its outstanding performance?\nAnswer:",
+ " LongLLMLingua"
+ ],
+ [
+ "Question:Which summarization method was recommended for its outstanding performance?\nAnswer:",
+ " BM25 Extractive"
+ ],
+ [
+ "Question:Which summarization method was recommended for its outstanding performance?\nAnswer:",
+ " Recomp"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.990047454833984,
+ false
+ ]
+ ],
+ [
+ [
+ -18.77847671508789,
+ false
+ ]
+ ],
+ [
+ [
+ -23.54022216796875,
+ false
+ ]
+ ],
+ [
+ [
+ -14.204093933105469,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.990047454833984,
+ false
+ ],
+ [
+ -18.77847671508789,
+ false
+ ],
+ [
+ -23.54022216796875,
+ false
+ ],
+ [
+ -14.204093933105469,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a6b581adefddccee39d5247c99e1f0bde00414c0f883a8cf2547bdb539a9aa7b",
+ "prompt_hash": "9fa3215a12dc1fc19dc1c9d7fd30cd52340f16e534d409f05ea2262435ed51a1",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "How many visual math problems are included in the proposed dataset?",
+ "choices": [
+ "4.5K",
+ "5.0K",
+ "6.5K",
+ "7.2K"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many visual math problems are included in the proposed dataset?\nAnswer:",
+ " 4.5K"
+ ],
+ [
+ "Question:How many visual math problems are included in the proposed dataset?\nAnswer:",
+ " 5.0K"
+ ],
+ [
+ "Question:How many visual math problems are included in the proposed dataset?\nAnswer:",
+ " 6.5K"
+ ],
+ [
+ "Question:How many visual math problems are included in the proposed dataset?\nAnswer:",
+ " 7.2K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.729255676269531,
+ false
+ ]
+ ],
+ [
+ [
+ -14.22647476196289,
+ false
+ ]
+ ],
+ [
+ [
+ -13.167308807373047,
+ false
+ ]
+ ],
+ [
+ [
+ -13.763832092285156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.729255676269531,
+ false
+ ],
+ [
+ -14.22647476196289,
+ false
+ ],
+ [
+ -13.167308807373047,
+ false
+ ],
+ [
+ -13.763832092285156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fb3604d749f5b7fcc83d359bdf0a18094bf32436d7242c0d61f39bc92a5575ec",
+ "prompt_hash": "e7b62eec87e03ee8506c86b240c326f3114a1ab0247407850fc920b4c2c2332b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "Into how many knowledge concepts are the problems in the dataset categorized?",
+ "choices": [
+ "45",
+ "57",
+ "67",
+ "77"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Into how many knowledge concepts are the problems in the dataset categorized?\nAnswer:",
+ " 45"
+ ],
+ [
+ "Question:Into how many knowledge concepts are the problems in the dataset categorized?\nAnswer:",
+ " 57"
+ ],
+ [
+ "Question:Into how many knowledge concepts are the problems in the dataset categorized?\nAnswer:",
+ " 67"
+ ],
+ [
+ "Question:Into how many knowledge concepts are the problems in the dataset categorized?\nAnswer:",
+ " 77"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.812484741210938,
+ false
+ ]
+ ],
+ [
+ [
+ -9.466009140014648,
+ false
+ ]
+ ],
+ [
+ [
+ -9.849740982055664,
+ false
+ ]
+ ],
+ [
+ [
+ -10.170186996459961,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.812484741210938,
+ false
+ ],
+ [
+ -9.466009140014648,
+ false
+ ],
+ [
+ -9.849740982055664,
+ false
+ ],
+ [
+ -10.170186996459961,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9dbe00d7ad342d9d61a05b95909c8335e44a65600dbca6821fc9ff31d702aa79",
+ "prompt_hash": "b8c118c69992d28a3628ec73ea1ac12a01da856f97eef3b95a3339bb4e94a8fb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "Which four-dimensional metric is used to evaluate problem-solving abilities?",
+ "choices": [
+ "Precision, Recall, Accuracy, F1",
+ "IK, IG, CM, RM",
+ "BLEU, ROUGE, METEOR, CIDEr",
+ "Speed, Memory, Efficiency, Robustness"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which four-dimensional metric is used to evaluate problem-solving abilities?\nAnswer:",
+ " Precision, Recall, Accuracy, F1"
+ ],
+ [
+ "Question:Which four-dimensional metric is used to evaluate problem-solving abilities?\nAnswer:",
+ " IK, IG, CM, RM"
+ ],
+ [
+ "Question:Which four-dimensional metric is used to evaluate problem-solving abilities?\nAnswer:",
+ " BLEU, ROUGE, METEOR, CIDEr"
+ ],
+ [
+ "Question:Which four-dimensional metric is used to evaluate problem-solving abilities?\nAnswer:",
+ " Speed, Memory, Efficiency, Robustness"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.218046188354492,
+ false
+ ]
+ ],
+ [
+ [
+ -40.70429611206055,
+ false
+ ]
+ ],
+ [
+ [
+ -28.812503814697266,
+ false
+ ]
+ ],
+ [
+ [
+ -38.256866455078125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.218046188354492,
+ false
+ ],
+ [
+ -40.70429611206055,
+ false
+ ],
+ [
+ -28.812503814697266,
+ false
+ ],
+ [
+ -38.256866455078125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e7d482ff7ce85c9bb9f81ef47fda540bfc235fd3cdbb8cce2b61775e27c03d22",
+ "prompt_hash": "f32689e2b31b6aa425d21f4e02e4b2b1a6bfbbb6c61cbb7ddf7f0895b98e939d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "Which model achieved the best overall performance across different visual mathematics categories?",
+ "choices": [
+ "GPT-4V",
+ "Gemini 1.5 Pro",
+ "GPT-4o",
+ "LLaVA-NeXT-110B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model achieved the best overall performance across different visual mathematics categories?\nAnswer:",
+ " GPT-4V"
+ ],
+ [
+ "Question:Which model achieved the best overall performance across different visual mathematics categories?\nAnswer:",
+ " Gemini 1.5 Pro"
+ ],
+ [
+ "Question:Which model achieved the best overall performance across different visual mathematics categories?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which model achieved the best overall performance across different visual mathematics categories?\nAnswer:",
+ " LLaVA-NeXT-110B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.522256851196289,
+ false
+ ]
+ ],
+ [
+ [
+ -8.766477584838867,
+ false
+ ]
+ ],
+ [
+ [
+ -7.747229099273682,
+ false
+ ]
+ ],
+ [
+ [
+ -21.87334442138672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.522256851196289,
+ false
+ ],
+ [
+ -8.766477584838867,
+ false
+ ],
+ [
+ -7.747229099273682,
+ false
+ ],
+ [
+ -21.87334442138672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8c452c6f79e5150462edd67e4195af4bd8b30a326a1993e322675fd8487a60fe",
+ "prompt_hash": "6c857a8e695bf66745f3a947b038b9297beda2f70ee0d8d18dbdf51c67e38e55",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "From where were the 67 knowledge concept descriptions for Knowledge Concept Augmentation (KCA) constructed?",
+ "choices": [
+ "Only Wikipedia",
+ "Only Euclid's Elements",
+ "Wikipedia and textbooks",
+ "Research papers only"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:From where were the 67 knowledge concept descriptions for Knowledge Concept Augmentation (KCA) constructed?\nAnswer:",
+ " Only Wikipedia"
+ ],
+ [
+ "Question:From where were the 67 knowledge concept descriptions for Knowledge Concept Augmentation (KCA) constructed?\nAnswer:",
+ " Only Euclid's Elements"
+ ],
+ [
+ "Question:From where were the 67 knowledge concept descriptions for Knowledge Concept Augmentation (KCA) constructed?\nAnswer:",
+ " Wikipedia and textbooks"
+ ],
+ [
+ "Question:From where were the 67 knowledge concept descriptions for Knowledge Concept Augmentation (KCA) constructed?\nAnswer:",
+ " Research papers only"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.755115509033203,
+ false
+ ]
+ ],
+ [
+ [
+ -23.898681640625,
+ false
+ ]
+ ],
+ [
+ [
+ -15.336736679077148,
+ false
+ ]
+ ],
+ [
+ [
+ -14.167567253112793,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.755115509033203,
+ false
+ ],
+ [
+ -23.898681640625,
+ false
+ ],
+ [
+ -15.336736679077148,
+ false
+ ],
+ [
+ -14.167567253112793,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aac932a6dc506406fdc0373f66d9e474f5ea83351d26ca76893eba8dacb3de96",
+ "prompt_hash": "c41ce6c6bd641fdcf1c75204b06887e517a2df335ace0c502170795e268a6228",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "Which humanoid robot used in the experiments is equipped with multi-finger hands?",
+ "choices": [
+ "Fourier GR-1",
+ "Unitree H1",
+ "ALOHA",
+ "AnyTeleop"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which humanoid robot used in the experiments is equipped with multi-finger hands?\nAnswer:",
+ " Fourier GR-1"
+ ],
+ [
+ "Question:Which humanoid robot used in the experiments is equipped with multi-finger hands?\nAnswer:",
+ " Unitree H1"
+ ],
+ [
+ "Question:Which humanoid robot used in the experiments is equipped with multi-finger hands?\nAnswer:",
+ " ALOHA"
+ ],
+ [
+ "Question:Which humanoid robot used in the experiments is equipped with multi-finger hands?\nAnswer:",
+ " AnyTeleop"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.240524291992188,
+ false
+ ]
+ ],
+ [
+ [
+ -8.106757164001465,
+ false
+ ]
+ ],
+ [
+ [
+ -14.45346450805664,
+ false
+ ]
+ ],
+ [
+ [
+ -17.957672119140625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.240524291992188,
+ false
+ ],
+ [
+ -8.106757164001465,
+ false
+ ],
+ [
+ -14.45346450805664,
+ false
+ ],
+ [
+ -17.957672119140625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "03549faa0210f17c230f5e924730bcd50c2c8b8d86e30dd769837a95380f5495",
+ "prompt_hash": "513ea08ab58365f9c8d0dbe8082c93d5d5beaa6661c0cee8334ebe899b02c226",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "What stereo camera is used with both robots to provide RGB streaming?",
+ "choices": [
+ "Intel RealSense D435",
+ "ZED Mini",
+ "Azure Kinect",
+ "Leap Motion"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What stereo camera is used with both robots to provide RGB streaming?\nAnswer:",
+ " Intel RealSense D435"
+ ],
+ [
+ "Question:What stereo camera is used with both robots to provide RGB streaming?\nAnswer:",
+ " ZED Mini"
+ ],
+ [
+ "Question:What stereo camera is used with both robots to provide RGB streaming?\nAnswer:",
+ " Azure Kinect"
+ ],
+ [
+ "Question:What stereo camera is used with both robots to provide RGB streaming?\nAnswer:",
+ " Leap Motion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.248941898345947,
+ false
+ ]
+ ],
+ [
+ [
+ -8.554323196411133,
+ false
+ ]
+ ],
+ [
+ [
+ -10.395401000976562,
+ false
+ ]
+ ],
+ [
+ [
+ -17.37678337097168,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.248941898345947,
+ false
+ ],
+ [
+ -8.554323196411133,
+ false
+ ],
+ [
+ -10.395401000976562,
+ false
+ ],
+ [
+ -17.37678337097168,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "097bac5cbc7f405d0d2c5d54bb87a36fbc0b869e5ca0fb38460550e54b3c1deb",
+ "prompt_hash": "6e647c4b2048258098420c8acb5aed5a05834763fdf430aab1b860c12a68b87b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "In the Can Insertion task, what is the approximate diameter of the soda can slot?",
+ "choices": [
+ "3.6 cm",
+ "5.6 cm",
+ "7.6 cm",
+ "9.6 cm"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the Can Insertion task, what is the approximate diameter of the soda can slot?\nAnswer:",
+ " 3.6 cm"
+ ],
+ [
+ "Question:In the Can Insertion task, what is the approximate diameter of the soda can slot?\nAnswer:",
+ " 5.6 cm"
+ ],
+ [
+ "Question:In the Can Insertion task, what is the approximate diameter of the soda can slot?\nAnswer:",
+ " 7.6 cm"
+ ],
+ [
+ "Question:In the Can Insertion task, what is the approximate diameter of the soda can slot?\nAnswer:",
+ " 9.6 cm"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.950165748596191,
+ false
+ ]
+ ],
+ [
+ [
+ -10.258798599243164,
+ false
+ ]
+ ],
+ [
+ [
+ -10.89891242980957,
+ false
+ ]
+ ],
+ [
+ [
+ -11.146050453186035,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.950165748596191,
+ false
+ ],
+ [
+ -10.258798599243164,
+ false
+ ],
+ [
+ -10.89891242980957,
+ false
+ ],
+ [
+ -11.146050453186035,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9a1a06df62b817e903f1359d4c025997f64cf35d891deaac93377a160228984a",
+ "prompt_hash": "6059a3748f485ec2ce37de889c2df78a6f8f5e469d1c7156c1c872b8278b5edd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "Which visual backbone replaced ResNet in the modified ACT algorithm?",
+ "choices": [
+ "ViT-B/16",
+ "DinoV2",
+ "CLIP-ViT",
+ "Swin Transformer"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which visual backbone replaced ResNet in the modified ACT algorithm?\nAnswer:",
+ " ViT-B/16"
+ ],
+ [
+ "Question:Which visual backbone replaced ResNet in the modified ACT algorithm?\nAnswer:",
+ " DinoV2"
+ ],
+ [
+ "Question:Which visual backbone replaced ResNet in the modified ACT algorithm?\nAnswer:",
+ " CLIP-ViT"
+ ],
+ [
+ "Question:Which visual backbone replaced ResNet in the modified ACT algorithm?\nAnswer:",
+ " Swin Transformer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.351160049438477,
+ false
+ ]
+ ],
+ [
+ [
+ -9.934405326843262,
+ false
+ ]
+ ],
+ [
+ [
+ -12.724019050598145,
+ false
+ ]
+ ],
+ [
+ [
+ -9.91457748413086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.351160049438477,
+ false
+ ],
+ [
+ -9.934405326843262,
+ false
+ ],
+ [
+ -12.724019050598145,
+ false
+ ],
+ [
+ -9.91457748413086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7335d1d88d4bdc8ea82abb121524726484026f6508ee853f1e27fb73070421c3",
+ "prompt_hash": "55413e378ac34f5ac9b87eb75e3a8375c6d12a88b184f3919918f9cbeb5ffd03",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "What is the action dimension of the H1 robot in the imitation learning experiments?",
+ "choices": [
+ "19",
+ "22",
+ "28",
+ "36"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the action dimension of the H1 robot in the imitation learning experiments?\nAnswer:",
+ " 19"
+ ],
+ [
+ "Question:What is the action dimension of the H1 robot in the imitation learning experiments?\nAnswer:",
+ " 22"
+ ],
+ [
+ "Question:What is the action dimension of the H1 robot in the imitation learning experiments?\nAnswer:",
+ " 28"
+ ],
+ [
+ "Question:What is the action dimension of the H1 robot in the imitation learning experiments?\nAnswer:",
+ " 36"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.213255882263184,
+ false
+ ]
+ ],
+ [
+ [
+ -7.448844909667969,
+ false
+ ]
+ ],
+ [
+ [
+ -7.832391738891602,
+ false
+ ]
+ ],
+ [
+ [
+ -7.059266567230225,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.213255882263184,
+ false
+ ],
+ [
+ -7.448844909667969,
+ false
+ ],
+ [
+ -7.832391738891602,
+ false
+ ],
+ [
+ -7.059266567230225,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "814c5e04b3c52aee4763235c2a6be2412ce07724c00036756ee1a253a02d9677",
+ "prompt_hash": "afce1cbfccf449d047baf9ab43d4dfee10be79063fe8399c469b1df801b2e8a9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What is the primary goal of Kimi as a Model-as-a-Service (MaaS) provider?",
+ "choices": [
+ "To maximize overall effective throughput while meeting latency-related SLO requirements",
+ "To minimize GPU usage regardless of service quality",
+ "To reject as many requests as possible to save resources",
+ "To increase output length of all requests without constraints"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the primary goal of Kimi as a Model-as-a-Service (MaaS) provider?\nAnswer:",
+ " To maximize overall effective throughput while meeting latency-related SLO requirements"
+ ],
+ [
+ "Question:What is the primary goal of Kimi as a Model-as-a-Service (MaaS) provider?\nAnswer:",
+ " To minimize GPU usage regardless of service quality"
+ ],
+ [
+ "Question:What is the primary goal of Kimi as a Model-as-a-Service (MaaS) provider?\nAnswer:",
+ " To reject as many requests as possible to save resources"
+ ],
+ [
+ "Question:What is the primary goal of Kimi as a Model-as-a-Service (MaaS) provider?\nAnswer:",
+ " To increase output length of all requests without constraints"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -46.09083938598633,
+ false
+ ]
+ ],
+ [
+ [
+ -44.75458526611328,
+ false
+ ]
+ ],
+ [
+ [
+ -32.21599197387695,
+ false
+ ]
+ ],
+ [
+ [
+ -50.386390686035156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -46.09083938598633,
+ false
+ ],
+ [
+ -44.75458526611328,
+ false
+ ],
+ [
+ -32.21599197387695,
+ false
+ ],
+ [
+ -50.386390686035156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "357101440addaf6419788f163efe79352930f15a794edcda0260253127f3980e",
+ "prompt_hash": "61cb0bfc2625337ab48a23c909c4203ddc219f9d2ade56062d4f2d2ddc02cbc6",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "In Mooncake's architecture, what does the prefill stage primarily focus on?",
+ "choices": [
+ "Generating all output tokens at once",
+ "Processing all input tokens in parallel and generating the first output token",
+ "Rejecting requests before execution",
+ "Managing memory transfers between CPU and GPU"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In Mooncake's architecture, what does the prefill stage primarily focus on?\nAnswer:",
+ " Generating all output tokens at once"
+ ],
+ [
+ "Question:In Mooncake's architecture, what does the prefill stage primarily focus on?\nAnswer:",
+ " Processing all input tokens in parallel and generating the first output token"
+ ],
+ [
+ "Question:In Mooncake's architecture, what does the prefill stage primarily focus on?\nAnswer:",
+ " Rejecting requests before execution"
+ ],
+ [
+ "Question:In Mooncake's architecture, what does the prefill stage primarily focus on?\nAnswer:",
+ " Managing memory transfers between CPU and GPU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.025474548339844,
+ false
+ ]
+ ],
+ [
+ [
+ -34.40630340576172,
+ false
+ ]
+ ],
+ [
+ [
+ -33.791385650634766,
+ false
+ ]
+ ],
+ [
+ [
+ -24.586078643798828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.025474548339844,
+ false
+ ],
+ [
+ -34.40630340576172,
+ false
+ ],
+ [
+ -33.791385650634766,
+ false
+ ],
+ [
+ -24.586078643798828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "38ca07f4adc667f8133e57528e618095826332c29aa1c3319cdae66a99c6378a",
+ "prompt_hash": "18182cffc75f3b11fb711616fe233f9e643833bc77701108f1a5e3995d185645",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "What is the main advantage of Early Rejection in Mooncake's overload scheduling?",
+ "choices": [
+ "It increases the output length of requests",
+ "It reduces ineffective computations by rejecting requests before wasting prefill resources",
+ "It doubles the number of decoding nodes required",
+ "It guarantees zero fluctuations in system load"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main advantage of Early Rejection in Mooncake's overload scheduling?\nAnswer:",
+ " It increases the output length of requests"
+ ],
+ [
+ "Question:What is the main advantage of Early Rejection in Mooncake's overload scheduling?\nAnswer:",
+ " It reduces ineffective computations by rejecting requests before wasting prefill resources"
+ ],
+ [
+ "Question:What is the main advantage of Early Rejection in Mooncake's overload scheduling?\nAnswer:",
+ " It doubles the number of decoding nodes required"
+ ],
+ [
+ "Question:What is the main advantage of Early Rejection in Mooncake's overload scheduling?\nAnswer:",
+ " It guarantees zero fluctuations in system load"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.2811222076416,
+ false
+ ]
+ ],
+ [
+ [
+ -61.370513916015625,
+ false
+ ]
+ ],
+ [
+ [
+ -38.169864654541016,
+ false
+ ]
+ ],
+ [
+ [
+ -31.666122436523438,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.2811222076416,
+ false
+ ],
+ [
+ -61.370513916015625,
+ false
+ ],
+ [
+ -38.169864654541016,
+ false
+ ],
+ [
+ -31.666122436523438,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "34b971e8ea67c807f3df941c16dce19d1c799012d68e6bc92335d7c2803a550e",
+ "prompt_hash": "1a16f6563d0113375ee1a225e7fa2fde0dd9fbeb6b356447607f396f66e4d5fd",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "Which cache eviction policy achieved the best performance under Mooncake's request trace dataset?",
+ "choices": [
+ "FIFO (First In First Out)",
+ "LRU (Least Recently Used)",
+ "LFU (Least Frequently Used)",
+ "LengthAwareCache"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which cache eviction policy achieved the best performance under Mooncake's request trace dataset?\nAnswer:",
+ " FIFO (First In First Out)"
+ ],
+ [
+ "Question:Which cache eviction policy achieved the best performance under Mooncake's request trace dataset?\nAnswer:",
+ " LRU (Least Recently Used)"
+ ],
+ [
+ "Question:Which cache eviction policy achieved the best performance under Mooncake's request trace dataset?\nAnswer:",
+ " LFU (Least Frequently Used)"
+ ],
+ [
+ "Question:Which cache eviction policy achieved the best performance under Mooncake's request trace dataset?\nAnswer:",
+ " LengthAwareCache"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.678746223449707,
+ false
+ ]
+ ],
+ [
+ [
+ -10.518775939941406,
+ false
+ ]
+ ],
+ [
+ [
+ -17.02437973022461,
+ false
+ ]
+ ],
+ [
+ [
+ -18.03860092163086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.678746223449707,
+ false
+ ],
+ [
+ -10.518775939941406,
+ false
+ ],
+ [
+ -17.02437973022461,
+ false
+ ],
+ [
+ -18.03860092163086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fc4857a67b3c44de917f0962153f5561de3784f4837615bf36cf05223ce42f3e",
+ "prompt_hash": "fbd26fbc05e64de5a13e17eb8ddaac22222e0f3ecd4d93f15822c5194dc0f8eb",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "In the evaluation of Mooncake versus vLLM on simulated long-context data, what was Mooncake's throughput improvement range?",
+ "choices": [
+ "10% to 25%",
+ "30% to 75%",
+ "50% to 525%",
+ "600% to 1000%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the evaluation of Mooncake versus vLLM on simulated long-context data, what was Mooncake's throughput improvement range?\nAnswer:",
+ " 10% to 25%"
+ ],
+ [
+ "Question:In the evaluation of Mooncake versus vLLM on simulated long-context data, what was Mooncake's throughput improvement range?\nAnswer:",
+ " 30% to 75%"
+ ],
+ [
+ "Question:In the evaluation of Mooncake versus vLLM on simulated long-context data, what was Mooncake's throughput improvement range?\nAnswer:",
+ " 50% to 525%"
+ ],
+ [
+ "Question:In the evaluation of Mooncake versus vLLM on simulated long-context data, what was Mooncake's throughput improvement range?\nAnswer:",
+ " 600% to 1000%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.490446090698242,
+ false
+ ]
+ ],
+ [
+ [
+ -21.809951782226562,
+ false
+ ]
+ ],
+ [
+ [
+ -28.085920333862305,
+ false
+ ]
+ ],
+ [
+ [
+ -22.367385864257812,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.490446090698242,
+ false
+ ],
+ [
+ -21.809951782226562,
+ false
+ ],
+ [
+ -28.085920333862305,
+ false
+ ],
+ [
+ -22.367385864257812,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d29b4d3b3018678369da35496faf2781c1cd2413e158c32855218e1cc61af667",
+ "prompt_hash": "996d24f8f92ece7fb356f59ef65a55f3015130f5e67c6565b61d20902e9c837c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What is the primary purpose of the FEVER dataset?",
+ "choices": [
+ "To verify factual claims using evidence from Wikipedia",
+ "To evaluate conversational abilities of AI assistants",
+ "To generate multi-hop reasoning chains",
+ "To benchmark cross-lingual retrieval tasks"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the primary purpose of the FEVER dataset?\nAnswer:",
+ " To verify factual claims using evidence from Wikipedia"
+ ],
+ [
+ "Question:What is the primary purpose of the FEVER dataset?\nAnswer:",
+ " To evaluate conversational abilities of AI assistants"
+ ],
+ [
+ "Question:What is the primary purpose of the FEVER dataset?\nAnswer:",
+ " To generate multi-hop reasoning chains"
+ ],
+ [
+ "Question:What is the primary purpose of the FEVER dataset?\nAnswer:",
+ " To benchmark cross-lingual retrieval tasks"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.64024543762207,
+ false
+ ]
+ ],
+ [
+ [
+ -29.950502395629883,
+ false
+ ]
+ ],
+ [
+ [
+ -21.078857421875,
+ false
+ ]
+ ],
+ [
+ [
+ -24.49301528930664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.64024543762207,
+ false
+ ],
+ [
+ -29.950502395629883,
+ false
+ ],
+ [
+ -21.078857421875,
+ false
+ ],
+ [
+ -24.49301528930664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cbe34ffff85183cd109608a0dcc923042e88190c33685761b9a3196d82235d94",
+ "prompt_hash": "7711b67fd53913f5056986c72fa2a4002ba3a489c2518ce1ec791fcccf202504",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "How many questions are included in the MMLU-med dataset?",
+ "choices": [
+ "1,273",
+ "4,183",
+ "1,089",
+ "1,000"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many questions are included in the MMLU-med dataset?\nAnswer:",
+ " 1,273"
+ ],
+ [
+ "Question:How many questions are included in the MMLU-med dataset?\nAnswer:",
+ " 4,183"
+ ],
+ [
+ "Question:How many questions are included in the MMLU-med dataset?\nAnswer:",
+ " 1,089"
+ ],
+ [
+ "Question:How many questions are included in the MMLU-med dataset?\nAnswer:",
+ " 1,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.105728149414062,
+ false
+ ]
+ ],
+ [
+ [
+ -14.59390926361084,
+ false
+ ]
+ ],
+ [
+ [
+ -12.9570894241333,
+ false
+ ]
+ ],
+ [
+ [
+ -8.63340950012207,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.105728149414062,
+ false
+ ],
+ [
+ -14.59390926361084,
+ false
+ ],
+ [
+ -12.9570894241333,
+ false
+ ],
+ [
+ -8.63340950012207,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1c2a3feddd0a24b3633fc2cfc1e6137d92c681e6bcb5ac792da9785f22329b9d",
+ "prompt_hash": "2849090bd6bbb607b5e19bb26891b41e60931e3fb66a3eb6384318e73d63ef7e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "What is the main characteristic of the PopQA dataset?",
+ "choices": [
+ "It focuses on cross-lingual question answering",
+ "It targets long-tail entities with low Wikipedia page views",
+ "It verifies biomedical hypotheses using abstracts",
+ "It tests multi-hop reasoning across documents"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main characteristic of the PopQA dataset?\nAnswer:",
+ " It focuses on cross-lingual question answering"
+ ],
+ [
+ "Question:What is the main characteristic of the PopQA dataset?\nAnswer:",
+ " It targets long-tail entities with low Wikipedia page views"
+ ],
+ [
+ "Question:What is the main characteristic of the PopQA dataset?\nAnswer:",
+ " It verifies biomedical hypotheses using abstracts"
+ ],
+ [
+ "Question:What is the main characteristic of the PopQA dataset?\nAnswer:",
+ " It tests multi-hop reasoning across documents"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.004573822021484,
+ false
+ ]
+ ],
+ [
+ [
+ -43.161983489990234,
+ false
+ ]
+ ],
+ [
+ [
+ -46.05027770996094,
+ false
+ ]
+ ],
+ [
+ [
+ -30.60395050048828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.004573822021484,
+ false
+ ],
+ [
+ -43.161983489990234,
+ false
+ ],
+ [
+ -46.05027770996094,
+ false
+ ],
+ [
+ -30.60395050048828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "402c31403bb0f6373c60bdbb8ae1740ddc46d18ede9eeb6c93717377641878ba",
+ "prompt_hash": "a55011ae2acadc35c2994a6c5e1267c86e1a7cd3c7062ac6d9d09d7d06d4ea21",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "Which dataset comprises four-option multiple-choice questions derived from the US Medical Licensing Examination?",
+ "choices": [
+ "MedQA",
+ "MedMCQA",
+ "PubMedQA",
+ "BioASQ"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset comprises four-option multiple-choice questions derived from the US Medical Licensing Examination?\nAnswer:",
+ " MedQA"
+ ],
+ [
+ "Question:Which dataset comprises four-option multiple-choice questions derived from the US Medical Licensing Examination?\nAnswer:",
+ " MedMCQA"
+ ],
+ [
+ "Question:Which dataset comprises four-option multiple-choice questions derived from the US Medical Licensing Examination?\nAnswer:",
+ " PubMedQA"
+ ],
+ [
+ "Question:Which dataset comprises four-option multiple-choice questions derived from the US Medical Licensing Examination?\nAnswer:",
+ " BioASQ"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.405452728271484,
+ false
+ ]
+ ],
+ [
+ [
+ -13.451678276062012,
+ false
+ ]
+ ],
+ [
+ [
+ -11.517139434814453,
+ false
+ ]
+ ],
+ [
+ [
+ -15.579611778259277,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.405452728271484,
+ false
+ ],
+ [
+ -13.451678276062012,
+ false
+ ],
+ [
+ -11.517139434814453,
+ false
+ ],
+ [
+ -15.579611778259277,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ff39eacbadfde0220c466c7c4682e2f8dea522c56595934cfd1e44f27d98ab7e",
+ "prompt_hash": "b326f1ed4d75097c5ee290924fd998b1cd403d4c50c0f32066da74d9b18bfab0",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "Which dataset consists of 4,183 questions from Indian medical entrance exams?",
+ "choices": [
+ "MedQA",
+ "MedMCQA",
+ "MMLU-med",
+ "BioASQ"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset consists of 4,183 questions from Indian medical entrance exams?\nAnswer:",
+ " MedQA"
+ ],
+ [
+ "Question:Which dataset consists of 4,183 questions from Indian medical entrance exams?\nAnswer:",
+ " MedMCQA"
+ ],
+ [
+ "Question:Which dataset consists of 4,183 questions from Indian medical entrance exams?\nAnswer:",
+ " MMLU-med"
+ ],
+ [
+ "Question:Which dataset consists of 4,183 questions from Indian medical entrance exams?\nAnswer:",
+ " BioASQ"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.04144287109375,
+ false
+ ]
+ ],
+ [
+ [
+ -11.477560997009277,
+ false
+ ]
+ ],
+ [
+ [
+ -17.35746955871582,
+ false
+ ]
+ ],
+ [
+ [
+ -13.449769973754883,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.04144287109375,
+ false
+ ],
+ [
+ -11.477560997009277,
+ false
+ ],
+ [
+ -17.35746955871582,
+ false
+ ],
+ [
+ -13.449769973754883,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7d73c5a4d61656c245d61a96508c21f0938457c79aadfb3371e93093c71724c4",
+ "prompt_hash": "4aa67d3abbe709aca8112d6fa1f1b6c58886840955ee28a445dc0bfff11d2f1c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What is the maximum context window size supported by InternLM-XComposer-2.5 (IXC-2.5) through positional encoding extrapolation?",
+ "choices": [
+ "32K",
+ "64K",
+ "96K",
+ "128K"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum context window size supported by InternLM-XComposer-2.5 (IXC-2.5) through positional encoding extrapolation?\nAnswer:",
+ " 32K"
+ ],
+ [
+ "Question:What is the maximum context window size supported by InternLM-XComposer-2.5 (IXC-2.5) through positional encoding extrapolation?\nAnswer:",
+ " 64K"
+ ],
+ [
+ "Question:What is the maximum context window size supported by InternLM-XComposer-2.5 (IXC-2.5) through positional encoding extrapolation?\nAnswer:",
+ " 96K"
+ ],
+ [
+ "Question:What is the maximum context window size supported by InternLM-XComposer-2.5 (IXC-2.5) through positional encoding extrapolation?\nAnswer:",
+ " 128K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.073480606079102,
+ false
+ ]
+ ],
+ [
+ [
+ -7.711792945861816,
+ false
+ ]
+ ],
+ [
+ [
+ -10.791585922241211,
+ false
+ ]
+ ],
+ [
+ [
+ -8.099313735961914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.073480606079102,
+ false
+ ],
+ [
+ -7.711792945861816,
+ false
+ ],
+ [
+ -10.791585922241211,
+ false
+ ],
+ [
+ -8.099313735961914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0f2c2f84db9ec7c913471865cd0b8c41e8a1692ee8beaca699c03fc401f5a85d",
+ "prompt_hash": "3dfe147b1ecd03739fc0f37cd3ad9e7b56c59a19ca2448842d4d8fee8295cf70",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which vision encoder resolution does IXC-2.5 employ to enhance ultra-high-resolution image understanding?",
+ "choices": [
+ "448×448",
+ "490×490",
+ "512×512",
+ "560×560"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which vision encoder resolution does IXC-2.5 employ to enhance ultra-high-resolution image understanding?\nAnswer:",
+ " 448×448"
+ ],
+ [
+ "Question:Which vision encoder resolution does IXC-2.5 employ to enhance ultra-high-resolution image understanding?\nAnswer:",
+ " 490×490"
+ ],
+ [
+ "Question:Which vision encoder resolution does IXC-2.5 employ to enhance ultra-high-resolution image understanding?\nAnswer:",
+ " 512×512"
+ ],
+ [
+ "Question:Which vision encoder resolution does IXC-2.5 employ to enhance ultra-high-resolution image understanding?\nAnswer:",
+ " 560×560"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.27751350402832,
+ false
+ ]
+ ],
+ [
+ [
+ -17.577922821044922,
+ false
+ ]
+ ],
+ [
+ [
+ -10.534107208251953,
+ false
+ ]
+ ],
+ [
+ [
+ -14.884693145751953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.27751350402832,
+ false
+ ],
+ [
+ -17.577922821044922,
+ false
+ ],
+ [
+ -10.534107208251953,
+ false
+ ],
+ [
+ -14.884693145751953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "48f11e12cf84425b320fe029b209d3d5bfe7b85c4a83f61df33fc5f241d880e4",
+ "prompt_hash": "1de30132ffb210ada2cef34d8a4a9f774dec474bff03da29088e916500d1200a",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "On the MVBench benchmark, how much higher is IXC-2.5's score compared to VideoChat2-7B, the previous SOTA method?",
+ "choices": [
+ "+5.3%",
+ "+8.7%",
+ "+12.4%",
+ "+15.1%"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:On the MVBench benchmark, how much higher is IXC-2.5's score compared to VideoChat2-7B, the previous SOTA method?\nAnswer:",
+ " +5.3%"
+ ],
+ [
+ "Question:On the MVBench benchmark, how much higher is IXC-2.5's score compared to VideoChat2-7B, the previous SOTA method?\nAnswer:",
+ " +8.7%"
+ ],
+ [
+ "Question:On the MVBench benchmark, how much higher is IXC-2.5's score compared to VideoChat2-7B, the previous SOTA method?\nAnswer:",
+ " +12.4%"
+ ],
+ [
+ "Question:On the MVBench benchmark, how much higher is IXC-2.5's score compared to VideoChat2-7B, the previous SOTA method?\nAnswer:",
+ " +15.1%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.748226165771484,
+ false
+ ]
+ ],
+ [
+ [
+ -20.179574966430664,
+ false
+ ]
+ ],
+ [
+ [
+ -20.353487014770508,
+ false
+ ]
+ ],
+ [
+ [
+ -20.995635986328125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.748226165771484,
+ false
+ ],
+ [
+ -20.179574966430664,
+ false
+ ],
+ [
+ -20.353487014770508,
+ false
+ ],
+ [
+ -20.995635986328125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f84ae4d8ba1bd54bf160f301466be73ae54e58ea8ba4276dab4c2f131148aaca",
+ "prompt_hash": "d5e8d82f36af7daf364fd683f1b027a61bf29c34d889c1fd0a4112ed02cdc5be",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "Which datasets were used in IXC-2.5's pre-training phase for general semantic alignment?",
+ "choices": [
+ "ShareGPT4V-PT, COCO, Nocaps, TextCaps, LAION, SBU, CC 3M, ALLaVA",
+ "VQAv2, GQA, OK-VQA, ALLaVA-QA, MMDU",
+ "WebSight v0.1/v0.2, Stack v2, Tailwind CSS dataset",
+ "DVQA, ChartQA, CLEVR-MATH, DeepForm"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which datasets were used in IXC-2.5's pre-training phase for general semantic alignment?\nAnswer:",
+ " ShareGPT4V-PT, COCO, Nocaps, TextCaps, LAION, SBU, CC 3M, ALLaVA"
+ ],
+ [
+ "Question:Which datasets were used in IXC-2.5's pre-training phase for general semantic alignment?\nAnswer:",
+ " VQAv2, GQA, OK-VQA, ALLaVA-QA, MMDU"
+ ],
+ [
+ "Question:Which datasets were used in IXC-2.5's pre-training phase for general semantic alignment?\nAnswer:",
+ " WebSight v0.1/v0.2, Stack v2, Tailwind CSS dataset"
+ ],
+ [
+ "Question:Which datasets were used in IXC-2.5's pre-training phase for general semantic alignment?\nAnswer:",
+ " DVQA, ChartQA, CLEVR-MATH, DeepForm"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -93.22857666015625,
+ false
+ ]
+ ],
+ [
+ [
+ -47.38764953613281,
+ false
+ ]
+ ],
+ [
+ [
+ -66.16090393066406,
+ false
+ ]
+ ],
+ [
+ [
+ -52.975765228271484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -93.22857666015625,
+ false
+ ],
+ [
+ -47.38764953613281,
+ false
+ ],
+ [
+ -66.16090393066406,
+ false
+ ],
+ [
+ -52.975765228271484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "91e14a9eff8495d2aee9943461e779417887d1ecb4f0cc5754ae98a45ead996d",
+ "prompt_hash": "0fba08fe9bf2110d9ebd4867bd6f6281c78969c2efa62433145f3c25e8eaaff2",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "What is the LoRA rank used in IXC-2.5's screenshot-to-code training phase?",
+ "choices": [
+ "128",
+ "256",
+ "384",
+ "512"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the LoRA rank used in IXC-2.5's screenshot-to-code training phase?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:What is the LoRA rank used in IXC-2.5's screenshot-to-code training phase?\nAnswer:",
+ " 256"
+ ],
+ [
+ "Question:What is the LoRA rank used in IXC-2.5's screenshot-to-code training phase?\nAnswer:",
+ " 384"
+ ],
+ [
+ "Question:What is the LoRA rank used in IXC-2.5's screenshot-to-code training phase?\nAnswer:",
+ " 512"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.809566497802734,
+ false
+ ]
+ ],
+ [
+ [
+ -5.269222259521484,
+ false
+ ]
+ ],
+ [
+ [
+ -8.795157432556152,
+ false
+ ]
+ ],
+ [
+ [
+ -5.778667449951172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.809566497802734,
+ false
+ ],
+ [
+ -5.269222259521484,
+ false
+ ],
+ [
+ -8.795157432556152,
+ false
+ ],
+ [
+ -5.778667449951172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2b02af2e42eeeec4a8bfe1ebed1524093c46feab1666cf52aa334ed26fe24d71",
+ "prompt_hash": "d92d5eeefe98aef00d3cf8cf5a50a1e9838edc655619525802339940a0371418",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What is the primary purpose of the RelD discriminator introduced in the paper?",
+ "choices": [
+ "To generate bilingual question-answering datasets",
+ "To detect hallucinations in LLM-generated answers",
+ "To improve sliding window segmentation of long texts",
+ "To train large language models from scratch"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the primary purpose of the RelD discriminator introduced in the paper?\nAnswer:",
+ " To generate bilingual question-answering datasets"
+ ],
+ [
+ "Question:What is the primary purpose of the RelD discriminator introduced in the paper?\nAnswer:",
+ " To detect hallucinations in LLM-generated answers"
+ ],
+ [
+ "Question:What is the primary purpose of the RelD discriminator introduced in the paper?\nAnswer:",
+ " To improve sliding window segmentation of long texts"
+ ],
+ [
+ "Question:What is the primary purpose of the RelD discriminator introduced in the paper?\nAnswer:",
+ " To train large language models from scratch"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.954849243164062,
+ false
+ ]
+ ],
+ [
+ [
+ -20.652280807495117,
+ false
+ ]
+ ],
+ [
+ [
+ -38.18414306640625,
+ false
+ ]
+ ],
+ [
+ [
+ -22.242000579833984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.954849243164062,
+ false
+ ],
+ [
+ -20.652280807495117,
+ false
+ ],
+ [
+ -38.18414306640625,
+ false
+ ],
+ [
+ -22.242000579833984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f8715d4609cb5bd0ab47ee0f64b797ae754515a5d357c96e9d8936537c91a1e7",
+ "prompt_hash": "b5f243aca35069a0a609e6a4b62a5094d9167bd082cf70e213cd81152e70a692",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "How many samples does the RelQA dataset contain in total?",
+ "choices": [
+ "274,426 samples",
+ "1,372,130 samples",
+ "743,910 samples",
+ "628,220 samples"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many samples does the RelQA dataset contain in total?\nAnswer:",
+ " 274,426 samples"
+ ],
+ [
+ "Question:How many samples does the RelQA dataset contain in total?\nAnswer:",
+ " 1,372,130 samples"
+ ],
+ [
+ "Question:How many samples does the RelQA dataset contain in total?\nAnswer:",
+ " 743,910 samples"
+ ],
+ [
+ "Question:How many samples does the RelQA dataset contain in total?\nAnswer:",
+ " 628,220 samples"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.363178253173828,
+ false
+ ]
+ ],
+ [
+ [
+ -22.405603408813477,
+ false
+ ]
+ ],
+ [
+ [
+ -23.08317756652832,
+ false
+ ]
+ ],
+ [
+ [
+ -22.19939613342285,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.363178253173828,
+ false
+ ],
+ [
+ -22.405603408813477,
+ false
+ ],
+ [
+ -23.08317756652832,
+ false
+ ],
+ [
+ -22.19939613342285,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d3f58d5d62b77f94ea2d5697f862acb17f8f7c1e25b69c1d8c43e08af54e2f04",
+ "prompt_hash": "38f2ec70ddb9d7d428e15946c1d8056264f914f972aab69e57de31b99df853b3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "Which pre-trained language model serves as the backbone of RelD?",
+ "choices": [
+ "BERT",
+ "RoBERTa",
+ "ELECTRA",
+ "DeBERTa"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which pre-trained language model serves as the backbone of RelD?\nAnswer:",
+ " BERT"
+ ],
+ [
+ "Question:Which pre-trained language model serves as the backbone of RelD?\nAnswer:",
+ " RoBERTa"
+ ],
+ [
+ "Question:Which pre-trained language model serves as the backbone of RelD?\nAnswer:",
+ " ELECTRA"
+ ],
+ [
+ "Question:Which pre-trained language model serves as the backbone of RelD?\nAnswer:",
+ " DeBERTa"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.401993751525879,
+ false
+ ]
+ ],
+ [
+ [
+ -5.599353790283203,
+ false
+ ]
+ ],
+ [
+ [
+ -8.7052583694458,
+ false
+ ]
+ ],
+ [
+ [
+ -7.099686145782471,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.401993751525879,
+ false
+ ],
+ [
+ -5.599353790283203,
+ false
+ ],
+ [
+ -8.7052583694458,
+ false
+ ],
+ [
+ -7.099686145782471,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7e3932664074d45608cc62d85b4eaf400fcbe60f05f32f31d1ccad4f3a7268e0",
+ "prompt_hash": "ce210da2c71a35dbf6414602d2fe6c56508da12047c61004b12c3c94875361cb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which four types of metrics are used to evaluate the reliability of LLM-generated answers in RelQA?",
+ "choices": [
+ "Accuracy, F1, BLEU, and ROUGE",
+ "LLM-assessment, human, machine, and composite metrics",
+ "Similarity, diversity, overlap, and embedding metrics",
+ "Precision, recall, diversity, and entropy metrics"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which four types of metrics are used to evaluate the reliability of LLM-generated answers in RelQA?\nAnswer:",
+ " Accuracy, F1, BLEU, and ROUGE"
+ ],
+ [
+ "Question:Which four types of metrics are used to evaluate the reliability of LLM-generated answers in RelQA?\nAnswer:",
+ " LLM-assessment, human, machine, and composite metrics"
+ ],
+ [
+ "Question:Which four types of metrics are used to evaluate the reliability of LLM-generated answers in RelQA?\nAnswer:",
+ " Similarity, diversity, overlap, and embedding metrics"
+ ],
+ [
+ "Question:Which four types of metrics are used to evaluate the reliability of LLM-generated answers in RelQA?\nAnswer:",
+ " Precision, recall, diversity, and entropy metrics"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.617055892944336,
+ false
+ ]
+ ],
+ [
+ [
+ -41.019859313964844,
+ false
+ ]
+ ],
+ [
+ [
+ -42.50098419189453,
+ false
+ ]
+ ],
+ [
+ [
+ -33.57671356201172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.617055892944336,
+ false
+ ],
+ [
+ -41.019859313964844,
+ false
+ ],
+ [
+ -42.50098419189453,
+ false
+ ],
+ [
+ -33.57671356201172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c00e773de89a2acc29af1502161379c84980fbbb886884125ab8cbda482d5ba2",
+ "prompt_hash": "c7f2336b716039b45f75c7bee32aa77a60218ce7f2aca6f12585b3c778aa3337",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "What is the learning rate set for training RelD?",
+ "choices": [
+ "1e-05",
+ "5e-05",
+ "2e-05",
+ "3e-04"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the learning rate set for training RelD?\nAnswer:",
+ " 1e-05"
+ ],
+ [
+ "Question:What is the learning rate set for training RelD?\nAnswer:",
+ " 5e-05"
+ ],
+ [
+ "Question:What is the learning rate set for training RelD?\nAnswer:",
+ " 2e-05"
+ ],
+ [
+ "Question:What is the learning rate set for training RelD?\nAnswer:",
+ " 3e-04"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.810700416564941,
+ false
+ ]
+ ],
+ [
+ [
+ -11.288911819458008,
+ false
+ ]
+ ],
+ [
+ [
+ -11.6030912399292,
+ false
+ ]
+ ],
+ [
+ [
+ -12.463712692260742,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.810700416564941,
+ false
+ ],
+ [
+ -11.288911819458008,
+ false
+ ],
+ [
+ -11.6030912399292,
+ false
+ ],
+ [
+ -12.463712692260742,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "86aed700016830d9aeb0a64b4d9f1b0b79c0d532f85d4b81a31553de5527b86e",
+ "prompt_hash": "a227d0d87d2da3b0353bc9d72add06c0edb62611e79dcf170ccae53537461e24",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What is the main advantage of using supervised semantic tokens in CosyVoice?",
+ "choices": [
+ "They reduce the size of the model",
+ "They improve content consistency and speaker similarity",
+ "They speed up the training process",
+ "They eliminate the need for Mel spectrograms"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main advantage of using supervised semantic tokens in CosyVoice?\nAnswer:",
+ " They reduce the size of the model"
+ ],
+ [
+ "Question:What is the main advantage of using supervised semantic tokens in CosyVoice?\nAnswer:",
+ " They improve content consistency and speaker similarity"
+ ],
+ [
+ "Question:What is the main advantage of using supervised semantic tokens in CosyVoice?\nAnswer:",
+ " They speed up the training process"
+ ],
+ [
+ "Question:What is the main advantage of using supervised semantic tokens in CosyVoice?\nAnswer:",
+ " They eliminate the need for Mel spectrograms"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.160953521728516,
+ false
+ ]
+ ],
+ [
+ [
+ -23.697269439697266,
+ false
+ ]
+ ],
+ [
+ [
+ -14.877523422241211,
+ false
+ ]
+ ],
+ [
+ [
+ -23.25432777404785,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.160953521728516,
+ false
+ ],
+ [
+ -23.697269439697266,
+ false
+ ],
+ [
+ -14.877523422241211,
+ false
+ ],
+ [
+ -23.25432777404785,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32f9666275762353507dd197f4616bf5e893a724a0fdf6fbdae89cf1ad4752b6",
+ "prompt_hash": "a2fd5519d6723f41f66469ab69bdc64db9b62dee24c06d3f546dfa8ddd5dbe22",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which technique does CosyVoice employ instead of diffusion probabilistic models (DDPM) for faster training and inference?",
+ "choices": [
+ "Generative Adversarial Networks",
+ "Conditional Flow Matching",
+ "Recurrent Neural Networks",
+ "Variational Autoencoders"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which technique does CosyVoice employ instead of diffusion probabilistic models (DDPM) for faster training and inference?\nAnswer:",
+ " Generative Adversarial Networks"
+ ],
+ [
+ "Question:Which technique does CosyVoice employ instead of diffusion probabilistic models (DDPM) for faster training and inference?\nAnswer:",
+ " Conditional Flow Matching"
+ ],
+ [
+ "Question:Which technique does CosyVoice employ instead of diffusion probabilistic models (DDPM) for faster training and inference?\nAnswer:",
+ " Recurrent Neural Networks"
+ ],
+ [
+ "Question:Which technique does CosyVoice employ instead of diffusion probabilistic models (DDPM) for faster training and inference?\nAnswer:",
+ " Variational Autoencoders"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.09904146194458,
+ false
+ ]
+ ],
+ [
+ [
+ -17.3647518157959,
+ false
+ ]
+ ],
+ [
+ [
+ -10.57017707824707,
+ false
+ ]
+ ],
+ [
+ [
+ -10.066808700561523,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.09904146194458,
+ false
+ ],
+ [
+ -17.3647518157959,
+ false
+ ],
+ [
+ -10.57017707824707,
+ false
+ ],
+ [
+ -10.066808700561523,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f90748ba30d980c60f68438996820d4d143ace3468c3d3363b6e9f8b67a555f8",
+ "prompt_hash": "b4be1101c4959c8e45f1584f97ab24176d0b2cf2ab9983d2f030b79fff120f29",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "How many codes are included in the single codebook used by the supervised semantic speech tokenizer?",
+ "choices": [
+ "1,024",
+ "2,048",
+ "4,096",
+ "8,192"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many codes are included in the single codebook used by the supervised semantic speech tokenizer?\nAnswer:",
+ " 1,024"
+ ],
+ [
+ "Question:How many codes are included in the single codebook used by the supervised semantic speech tokenizer?\nAnswer:",
+ " 2,048"
+ ],
+ [
+ "Question:How many codes are included in the single codebook used by the supervised semantic speech tokenizer?\nAnswer:",
+ " 4,096"
+ ],
+ [
+ "Question:How many codes are included in the single codebook used by the supervised semantic speech tokenizer?\nAnswer:",
+ " 8,192"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.077766418457031,
+ false
+ ]
+ ],
+ [
+ [
+ -11.457889556884766,
+ false
+ ]
+ ],
+ [
+ [
+ -10.916120529174805,
+ false
+ ]
+ ],
+ [
+ [
+ -14.03486442565918,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.077766418457031,
+ false
+ ],
+ [
+ -11.457889556884766,
+ false
+ ],
+ [
+ -10.916120529174805,
+ false
+ ],
+ [
+ -14.03486442565918,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6edd2ab81831c1f356526e910ee0f90df1e2589eb38db06f14ab76ab986e0f65",
+ "prompt_hash": "797df02bbcfc8d676a055ee518485d78dc7d9013519df369e7bfd8ddc9ad3112",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "On the LibriTTS test-clean set, what word error rate (WER) does CosyVoice achieve after ASR re-ranking?",
+ "choices": [
+ "2.89%",
+ "1.51%",
+ "3.17%",
+ "8.32%"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:On the LibriTTS test-clean set, what word error rate (WER) does CosyVoice achieve after ASR re-ranking?\nAnswer:",
+ " 2.89%"
+ ],
+ [
+ "Question:On the LibriTTS test-clean set, what word error rate (WER) does CosyVoice achieve after ASR re-ranking?\nAnswer:",
+ " 1.51%"
+ ],
+ [
+ "Question:On the LibriTTS test-clean set, what word error rate (WER) does CosyVoice achieve after ASR re-ranking?\nAnswer:",
+ " 3.17%"
+ ],
+ [
+ "Question:On the LibriTTS test-clean set, what word error rate (WER) does CosyVoice achieve after ASR re-ranking?\nAnswer:",
+ " 8.32%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.48992919921875,
+ false
+ ]
+ ],
+ [
+ [
+ -14.496801376342773,
+ false
+ ]
+ ],
+ [
+ [
+ -14.643253326416016,
+ false
+ ]
+ ],
+ [
+ [
+ -14.531301498413086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.48992919921875,
+ false
+ ],
+ [
+ -14.496801376342773,
+ false
+ ],
+ [
+ -14.643253326416016,
+ false
+ ],
+ [
+ -14.531301498413086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d52e2878a69c9abff4521937fa3f88ff1cc0b707d0dd5a8a8e6cf741df6a6ceb",
+ "prompt_hash": "47292ce2c33805e39769dd3f1458ca53301685a873d6e66320ebd6d129b198bf",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "Which emotion showed the greatest improvement in control accuracy when using CosyVoice-instruct compared to CosyVoice-base?",
+ "choices": [
+ "Happy",
+ "Sad",
+ "Disgusted",
+ "Fearful"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which emotion showed the greatest improvement in control accuracy when using CosyVoice-instruct compared to CosyVoice-base?\nAnswer:",
+ " Happy"
+ ],
+ [
+ "Question:Which emotion showed the greatest improvement in control accuracy when using CosyVoice-instruct compared to CosyVoice-base?\nAnswer:",
+ " Sad"
+ ],
+ [
+ "Question:Which emotion showed the greatest improvement in control accuracy when using CosyVoice-instruct compared to CosyVoice-base?\nAnswer:",
+ " Disgusted"
+ ],
+ [
+ "Question:Which emotion showed the greatest improvement in control accuracy when using CosyVoice-instruct compared to CosyVoice-base?\nAnswer:",
+ " Fearful"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.383396148681641,
+ false
+ ]
+ ],
+ [
+ [
+ -8.395179748535156,
+ false
+ ]
+ ],
+ [
+ [
+ -15.370882987976074,
+ false
+ ]
+ ],
+ [
+ [
+ -10.768058776855469,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.383396148681641,
+ false
+ ],
+ [
+ -8.395179748535156,
+ false
+ ],
+ [
+ -15.370882987976074,
+ false
+ ],
+ [
+ -10.768058776855469,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b74c37d3171aa5ca64392e549cde202d5fb7ea554fc7574d3e69b67e5e0e0ff6",
+ "prompt_hash": "6ab38ced6f896b1247e9a87a0a715bb24483db0e6ba01b45e0d480ef27562f5b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the main advantage of WTConv over standard depth-wise convolutions?",
+ "choices": [
+ "It reduces the number of trainable parameters quadratically",
+ "It achieves a larger receptive field with logarithmic parameter growth",
+ "It uses attention mechanisms instead of convolutions",
+ "It converts the input entirely into the frequency domain"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main advantage of WTConv over standard depth-wise convolutions?\nAnswer:",
+ " It reduces the number of trainable parameters quadratically"
+ ],
+ [
+ "Question:What is the main advantage of WTConv over standard depth-wise convolutions?\nAnswer:",
+ " It achieves a larger receptive field with logarithmic parameter growth"
+ ],
+ [
+ "Question:What is the main advantage of WTConv over standard depth-wise convolutions?\nAnswer:",
+ " It uses attention mechanisms instead of convolutions"
+ ],
+ [
+ "Question:What is the main advantage of WTConv over standard depth-wise convolutions?\nAnswer:",
+ " It converts the input entirely into the frequency domain"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.36676025390625,
+ false
+ ]
+ ],
+ [
+ [
+ -45.17839050292969,
+ false
+ ]
+ ],
+ [
+ [
+ -18.9272518157959,
+ false
+ ]
+ ],
+ [
+ [
+ -33.368980407714844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.36676025390625,
+ false
+ ],
+ [
+ -45.17839050292969,
+ false
+ ],
+ [
+ -18.9272518157959,
+ false
+ ],
+ [
+ -33.368980407714844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bb9319f6f6523e6ef30fa02d44e6c00f46a83477073de301e0af4660f8332c1d",
+ "prompt_hash": "7c42e02ea55d1ec0818a0a5ad17920e6c29f4796dd7632d58084bb510f9888df",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "Which wavelet basis is used in WTConv for efficiency?",
+ "choices": [
+ "Fourier Transform",
+ "Haar Wavelet Transform",
+ "Daubechies Wavelet Transform",
+ "Discrete Cosine Transform"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which wavelet basis is used in WTConv for efficiency?\nAnswer:",
+ " Fourier Transform"
+ ],
+ [
+ "Question:Which wavelet basis is used in WTConv for efficiency?\nAnswer:",
+ " Haar Wavelet Transform"
+ ],
+ [
+ "Question:Which wavelet basis is used in WTConv for efficiency?\nAnswer:",
+ " Daubechies Wavelet Transform"
+ ],
+ [
+ "Question:Which wavelet basis is used in WTConv for efficiency?\nAnswer:",
+ " Discrete Cosine Transform"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.868124008178711,
+ false
+ ]
+ ],
+ [
+ [
+ -13.273340225219727,
+ false
+ ]
+ ],
+ [
+ [
+ -20.367637634277344,
+ false
+ ]
+ ],
+ [
+ [
+ -7.96662712097168,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.868124008178711,
+ false
+ ],
+ [
+ -13.273340225219727,
+ false
+ ],
+ [
+ -20.367637634277344,
+ false
+ ],
+ [
+ -7.96662712097168,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8600813d0c358ab4185c7d49a3cb37e183c975e849c39676fde3a2728aec51e2",
+ "prompt_hash": "ec9b5a9e71d2ce56edf7cbb8827ec8527ac3518a2695db961815d6c6df323004",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "What accuracy improvement does WTConvNeXt-T achieve over ConvNeXt-T in ImageNet-C mean corruption error (mCE)?",
+ "choices": [
+ "53.2% to 52.0%",
+ "41.6% to 39.0%",
+ "55.0% to 50.0%",
+ "60.5% to 58.0%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What accuracy improvement does WTConvNeXt-T achieve over ConvNeXt-T in ImageNet-C mean corruption error (mCE)?\nAnswer:",
+ " 53.2% to 52.0%"
+ ],
+ [
+ "Question:What accuracy improvement does WTConvNeXt-T achieve over ConvNeXt-T in ImageNet-C mean corruption error (mCE)?\nAnswer:",
+ " 41.6% to 39.0%"
+ ],
+ [
+ "Question:What accuracy improvement does WTConvNeXt-T achieve over ConvNeXt-T in ImageNet-C mean corruption error (mCE)?\nAnswer:",
+ " 55.0% to 50.0%"
+ ],
+ [
+ "Question:What accuracy improvement does WTConvNeXt-T achieve over ConvNeXt-T in ImageNet-C mean corruption error (mCE)?\nAnswer:",
+ " 60.5% to 58.0%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -36.595645904541016,
+ false
+ ]
+ ],
+ [
+ [
+ -38.15071105957031,
+ false
+ ]
+ ],
+ [
+ [
+ -34.00459289550781,
+ false
+ ]
+ ],
+ [
+ [
+ -36.84385681152344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -36.595645904541016,
+ false
+ ],
+ [
+ -38.15071105957031,
+ false
+ ],
+ [
+ -34.00459289550781,
+ false
+ ],
+ [
+ -36.84385681152344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6da62bf2f48179bd7ba682edf10f2964d3717e3a6cd687e2adf2a18abcdc82e7",
+ "prompt_hash": "c5bffff41cccf839939a88f2eba6f43dbda372e284f2e9876b56ee8d8ea5de3e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "How does WTConvNeXt affect shape-bias compared to ConvNeXt?",
+ "choices": [
+ "It decreases the network's shape-bias",
+ "It keeps the shape-bias unchanged",
+ "It significantly increases the shape-bias",
+ "It eliminates texture-based decisions entirely"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How does WTConvNeXt affect shape-bias compared to ConvNeXt?\nAnswer:",
+ " It decreases the network's shape-bias"
+ ],
+ [
+ "Question:How does WTConvNeXt affect shape-bias compared to ConvNeXt?\nAnswer:",
+ " It keeps the shape-bias unchanged"
+ ],
+ [
+ "Question:How does WTConvNeXt affect shape-bias compared to ConvNeXt?\nAnswer:",
+ " It significantly increases the shape-bias"
+ ],
+ [
+ "Question:How does WTConvNeXt affect shape-bias compared to ConvNeXt?\nAnswer:",
+ " It eliminates texture-based decisions entirely"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.318492889404297,
+ false
+ ]
+ ],
+ [
+ [
+ -19.004671096801758,
+ false
+ ]
+ ],
+ [
+ [
+ -15.258134841918945,
+ false
+ ]
+ ],
+ [
+ [
+ -38.38514709472656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.318492889404297,
+ false
+ ],
+ [
+ -19.004671096801758,
+ false
+ ],
+ [
+ -15.258134841918945,
+ false
+ ],
+ [
+ -38.38514709472656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "163c68f81c202eaa477d5551c1c8c8d183e8e1dc6ba0b7e692cf5f2546bd3469",
+ "prompt_hash": "aa579b89dca17c357b86632fbae490cab4afe1b2802815f55b17e112975080cd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "What is the primary reason WTConv achieves better robustness under image corruptions?",
+ "choices": [
+ "It focuses entirely on high-frequency information",
+ "It integrates Vision Transformer attention mechanisms",
+ "It emphasizes low-frequency components through wavelet decomposition",
+ "It replaces convolutional layers with pooling layers"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary reason WTConv achieves better robustness under image corruptions?\nAnswer:",
+ " It focuses entirely on high-frequency information"
+ ],
+ [
+ "Question:What is the primary reason WTConv achieves better robustness under image corruptions?\nAnswer:",
+ " It integrates Vision Transformer attention mechanisms"
+ ],
+ [
+ "Question:What is the primary reason WTConv achieves better robustness under image corruptions?\nAnswer:",
+ " It emphasizes low-frequency components through wavelet decomposition"
+ ],
+ [
+ "Question:What is the primary reason WTConv achieves better robustness under image corruptions?\nAnswer:",
+ " It replaces convolutional layers with pooling layers"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.85192108154297,
+ false
+ ]
+ ],
+ [
+ [
+ -28.19028091430664,
+ false
+ ]
+ ],
+ [
+ [
+ -27.371051788330078,
+ false
+ ]
+ ],
+ [
+ [
+ -21.658126831054688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.85192108154297,
+ false
+ ],
+ [
+ -28.19028091430664,
+ false
+ ],
+ [
+ -27.371051788330078,
+ false
+ ],
+ [
+ -21.658126831054688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6bc68414e1b2a06374963af51331f539c7fad1173ed20e9990a150fe18ffd896",
+ "prompt_hash": "3e8d462f256feaf421b3dee7d20bac60366c94311ce2b0a57250257b68dbc4d0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "Which model was used as the base model for all experiments in the study?",
+ "choices": [
+ "GPT-4-0125-preview",
+ "Llama-2-70B-chat",
+ "PaLM-2",
+ "Claude-3"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model was used as the base model for all experiments in the study?\nAnswer:",
+ " GPT-4-0125-preview"
+ ],
+ [
+ "Question:Which model was used as the base model for all experiments in the study?\nAnswer:",
+ " Llama-2-70B-chat"
+ ],
+ [
+ "Question:Which model was used as the base model for all experiments in the study?\nAnswer:",
+ " PaLM-2"
+ ],
+ [
+ "Question:Which model was used as the base model for all experiments in the study?\nAnswer:",
+ " Claude-3"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.283348083496094,
+ false
+ ]
+ ],
+ [
+ [
+ -16.040966033935547,
+ false
+ ]
+ ],
+ [
+ [
+ -14.582185745239258,
+ false
+ ]
+ ],
+ [
+ [
+ -12.037026405334473,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.283348083496094,
+ false
+ ],
+ [
+ -16.040966033935547,
+ false
+ ],
+ [
+ -14.582185745239258,
+ false
+ ],
+ [
+ -12.037026405334473,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1383145086897e76bb0d4776b6c1e6e80782890a7ed056a1f72b9c1316943d93",
+ "prompt_hash": "c7d8e5ee70ecb3ea4ac98b838f06b89f9fe0824e8eb73f877a757d10423cbcf7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "What was the achieved accuracy after distilling the 2-Step Rephrase and Respond (RaR) method into a System 1 Llama-2-70B-chat model on the last letter concatenation task?",
+ "choices": [
+ "44.5%",
+ "56.1%",
+ "98.0%",
+ "69.5%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was the achieved accuracy after distilling the 2-Step Rephrase and Respond (RaR) method into a System 1 Llama-2-70B-chat model on the last letter concatenation task?\nAnswer:",
+ " 44.5%"
+ ],
+ [
+ "Question:What was the achieved accuracy after distilling the 2-Step Rephrase and Respond (RaR) method into a System 1 Llama-2-70B-chat model on the last letter concatenation task?\nAnswer:",
+ " 56.1%"
+ ],
+ [
+ "Question:What was the achieved accuracy after distilling the 2-Step Rephrase and Respond (RaR) method into a System 1 Llama-2-70B-chat model on the last letter concatenation task?\nAnswer:",
+ " 98.0%"
+ ],
+ [
+ "Question:What was the achieved accuracy after distilling the 2-Step Rephrase and Respond (RaR) method into a System 1 Llama-2-70B-chat model on the last letter concatenation task?\nAnswer:",
+ " 69.5%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.09747314453125,
+ false
+ ]
+ ],
+ [
+ [
+ -14.72747802734375,
+ false
+ ]
+ ],
+ [
+ [
+ -13.923602104187012,
+ false
+ ]
+ ],
+ [
+ [
+ -14.50871467590332,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.09747314453125,
+ false
+ ],
+ [
+ -14.72747802734375,
+ false
+ ],
+ [
+ -13.923602104187012,
+ false
+ ],
+ [
+ -14.50871467590332,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e60644694d85dc759b2c978a6ff884c55b4a5e79508100ae0e6c472092b69dec",
+ "prompt_hash": "fb69b33d2d19e03a16ce11134296fc4d84787079fc51f3d1a2112d672dab78c3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "How does System 2 Attention (S2A) primarily improve reasoning performance?",
+ "choices": [
+ "By adding more training data to reduce overfitting",
+ "By rewriting the input to remove biases or irrelevant information",
+ "By introducing more intermediate reasoning steps",
+ "By increasing the model size and token limit"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How does System 2 Attention (S2A) primarily improve reasoning performance?\nAnswer:",
+ " By adding more training data to reduce overfitting"
+ ],
+ [
+ "Question:How does System 2 Attention (S2A) primarily improve reasoning performance?\nAnswer:",
+ " By rewriting the input to remove biases or irrelevant information"
+ ],
+ [
+ "Question:How does System 2 Attention (S2A) primarily improve reasoning performance?\nAnswer:",
+ " By introducing more intermediate reasoning steps"
+ ],
+ [
+ "Question:How does System 2 Attention (S2A) primarily improve reasoning performance?\nAnswer:",
+ " By increasing the model size and token limit"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.416637420654297,
+ false
+ ]
+ ],
+ [
+ [
+ -42.379478454589844,
+ false
+ ]
+ ],
+ [
+ [
+ -22.114347457885742,
+ false
+ ]
+ ],
+ [
+ [
+ -35.356021881103516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.416637420654297,
+ false
+ ],
+ [
+ -42.379478454589844,
+ false
+ ],
+ [
+ -22.114347457885742,
+ false
+ ],
+ [
+ -35.356021881103516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f6fc0d851d2fdff1716418a5330d89655fae039bfe7cfebe205dac52103a1eea",
+ "prompt_hash": "947a69f16e4b2bc4a7c5f9520c71e19f88c02112f65ee62363a8077b994d2cd5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "What technique was used to ensure the quality of distillation data for Branch-Solve-Merge (BSM)?",
+ "choices": [
+ "Cross-entropy minimization",
+ "Majority voting across outputs",
+ "Self-consistency under input perturbations",
+ "Manual annotation of all samples"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What technique was used to ensure the quality of distillation data for Branch-Solve-Merge (BSM)?\nAnswer:",
+ " Cross-entropy minimization"
+ ],
+ [
+ "Question:What technique was used to ensure the quality of distillation data for Branch-Solve-Merge (BSM)?\nAnswer:",
+ " Majority voting across outputs"
+ ],
+ [
+ "Question:What technique was used to ensure the quality of distillation data for Branch-Solve-Merge (BSM)?\nAnswer:",
+ " Self-consistency under input perturbations"
+ ],
+ [
+ "Question:What technique was used to ensure the quality of distillation data for Branch-Solve-Merge (BSM)?\nAnswer:",
+ " Manual annotation of all samples"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.37027359008789,
+ false
+ ]
+ ],
+ [
+ [
+ -24.0562744140625,
+ false
+ ]
+ ],
+ [
+ [
+ -29.128202438354492,
+ false
+ ]
+ ],
+ [
+ [
+ -19.985612869262695,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.37027359008789,
+ false
+ ],
+ [
+ -24.0562744140625,
+ false
+ ],
+ [
+ -29.128202438354492,
+ false
+ ],
+ [
+ -19.985612869262695,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "36344b17e47b97610171de862ccd12375a23e6f878dc0a1d2cfe111f23838953",
+ "prompt_hash": "87290dac7772ef7346b3ef0d92b9f5bf5574ad93388b41a8ad56a49a56d96e45",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "Which reasoning task showed poor performance when applying System 2 distillation, indicating that it could not be effectively distilled?",
+ "choices": [
+ "Last letter concatenation task",
+ "Coin flip reasoning task",
+ "SycophancyEval biased QA task",
+ "GSM8k math problem-solving task"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which reasoning task showed poor performance when applying System 2 distillation, indicating that it could not be effectively distilled?\nAnswer:",
+ " Last letter concatenation task"
+ ],
+ [
+ "Question:Which reasoning task showed poor performance when applying System 2 distillation, indicating that it could not be effectively distilled?\nAnswer:",
+ " Coin flip reasoning task"
+ ],
+ [
+ "Question:Which reasoning task showed poor performance when applying System 2 distillation, indicating that it could not be effectively distilled?\nAnswer:",
+ " SycophancyEval biased QA task"
+ ],
+ [
+ "Question:Which reasoning task showed poor performance when applying System 2 distillation, indicating that it could not be effectively distilled?\nAnswer:",
+ " GSM8k math problem-solving task"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.82872772216797,
+ false
+ ]
+ ],
+ [
+ [
+ -20.605525970458984,
+ false
+ ]
+ ],
+ [
+ [
+ -49.651554107666016,
+ false
+ ]
+ ],
+ [
+ [
+ -26.793594360351562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.82872772216797,
+ false
+ ],
+ [
+ -20.605525970458984,
+ false
+ ],
+ [
+ -49.651554107666016,
+ false
+ ],
+ [
+ -26.793594360351562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0c5a64651e593f7334dc76475ccce742ed0be1ae580af4895bb8dc289b0cda68",
+ "prompt_hash": "2c9437c3ff992b9dd1cb1a469649859a1c6719d05eb3060708ccfffa956091b7",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the precisely measured distance to pulsar PSR J0437−4715 based on radio timing observations?",
+ "choices": [
+ "156.98 ± 0.15 pc",
+ "129.4 ± 0.5 pc",
+ "174.0 ± 0.2 pc",
+ "200.15 ± 1.0 pc"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the precisely measured distance to pulsar PSR J0437−4715 based on radio timing observations?\nAnswer:",
+ " 156.98 ± 0.15 pc"
+ ],
+ [
+ "Question:What is the precisely measured distance to pulsar PSR J0437−4715 based on radio timing observations?\nAnswer:",
+ " 129.4 ± 0.5 pc"
+ ],
+ [
+ "Question:What is the precisely measured distance to pulsar PSR J0437−4715 based on radio timing observations?\nAnswer:",
+ " 174.0 ± 0.2 pc"
+ ],
+ [
+ "Question:What is the precisely measured distance to pulsar PSR J0437−4715 based on radio timing observations?\nAnswer:",
+ " 200.15 ± 1.0 pc"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.42844009399414,
+ false
+ ]
+ ],
+ [
+ [
+ -19.135929107666016,
+ false
+ ]
+ ],
+ [
+ [
+ -20.670236587524414,
+ false
+ ]
+ ],
+ [
+ [
+ -28.07659149169922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.42844009399414,
+ false
+ ],
+ [
+ -19.135929107666016,
+ false
+ ],
+ [
+ -20.670236587524414,
+ false
+ ],
+ [
+ -28.07659149169922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9136d143f6fbec7e4ca9165be4d452f05f6ad1a30173e9d1e6a91fe102584000",
+ "prompt_hash": "a50819b0366d5f70b4b331b6f66c1549975ffb36782f46e713520207c6b2cfda",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "Which background modeling method used by NICER provides quantified statistical uncertainties in the net background spectrum?",
+ "choices": [
+ "Space Weather estimate",
+ "3C50 background model",
+ "XMM-MOS1 background fit",
+ "Delta dataset filtering"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which background modeling method used by NICER provides quantified statistical uncertainties in the net background spectrum?\nAnswer:",
+ " Space Weather estimate"
+ ],
+ [
+ "Question:Which background modeling method used by NICER provides quantified statistical uncertainties in the net background spectrum?\nAnswer:",
+ " 3C50 background model"
+ ],
+ [
+ "Question:Which background modeling method used by NICER provides quantified statistical uncertainties in the net background spectrum?\nAnswer:",
+ " XMM-MOS1 background fit"
+ ],
+ [
+ "Question:Which background modeling method used by NICER provides quantified statistical uncertainties in the net background spectrum?\nAnswer:",
+ " Delta dataset filtering"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.84143829345703,
+ false
+ ]
+ ],
+ [
+ [
+ -15.207002639770508,
+ false
+ ]
+ ],
+ [
+ [
+ -34.21397018432617,
+ false
+ ]
+ ],
+ [
+ [
+ -29.099979400634766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.84143829345703,
+ false
+ ],
+ [
+ -15.207002639770508,
+ false
+ ],
+ [
+ -34.21397018432617,
+ false
+ ],
+ [
+ -29.099979400634766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d29a9f90f4dd47e62853c3571f7346e637325b11296cc948f9f1ecdbda8a1ae4",
+ "prompt_hash": "7bd2c5d239ce1590ef0c12d0ebdcae61e4f703fada9defdf904df81a3da6d226",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "What is the measured spin frequency of PSR J0437−4715?",
+ "choices": [
+ "174 Hz",
+ "129 Hz",
+ "210 Hz",
+ "98 Hz"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the measured spin frequency of PSR J0437−4715?\nAnswer:",
+ " 174 Hz"
+ ],
+ [
+ "Question:What is the measured spin frequency of PSR J0437−4715?\nAnswer:",
+ " 129 Hz"
+ ],
+ [
+ "Question:What is the measured spin frequency of PSR J0437−4715?\nAnswer:",
+ " 210 Hz"
+ ],
+ [
+ "Question:What is the measured spin frequency of PSR J0437−4715?\nAnswer:",
+ " 98 Hz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.427151679992676,
+ false
+ ]
+ ],
+ [
+ [
+ -10.656230926513672,
+ false
+ ]
+ ],
+ [
+ [
+ -10.553150177001953,
+ false
+ ]
+ ],
+ [
+ [
+ -10.735501289367676,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.427151679992676,
+ false
+ ],
+ [
+ -10.656230926513672,
+ false
+ ],
+ [
+ -10.553150177001953,
+ false
+ ],
+ [
+ -10.735501289367676,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a3317615d62bc3dac178890e48f3b4bac1a63795c3104864a252cde455139a6b",
+ "prompt_hash": "7b73b6789f9631e1f0f035a051058ba0607731cd7fb355c18416ec15184b1031",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "Which software package is used to perform Bayesian parameter estimation by modeling X-ray emission from PSR J0437−4715?",
+ "choices": [
+ "HEASoft",
+ "X-PSI",
+ "SAS",
+ "NSX"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which software package is used to perform Bayesian parameter estimation by modeling X-ray emission from PSR J0437−4715?\nAnswer:",
+ " HEASoft"
+ ],
+ [
+ "Question:Which software package is used to perform Bayesian parameter estimation by modeling X-ray emission from PSR J0437−4715?\nAnswer:",
+ " X-PSI"
+ ],
+ [
+ "Question:Which software package is used to perform Bayesian parameter estimation by modeling X-ray emission from PSR J0437−4715?\nAnswer:",
+ " SAS"
+ ],
+ [
+ "Question:Which software package is used to perform Bayesian parameter estimation by modeling X-ray emission from PSR J0437−4715?\nAnswer:",
+ " NSX"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.748787879943848,
+ false
+ ]
+ ],
+ [
+ [
+ -11.375994682312012,
+ false
+ ]
+ ],
+ [
+ [
+ -8.618194580078125,
+ false
+ ]
+ ],
+ [
+ [
+ -13.982128143310547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.748787879943848,
+ false
+ ],
+ [
+ -11.375994682312012,
+ false
+ ],
+ [
+ -8.618194580078125,
+ false
+ ],
+ [
+ -13.982128143310547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "40c129c953387082b60e7d8a841f9c300b1e201c6b80864f06642485aa6ff0a4",
+ "prompt_hash": "17722b0305f01c9020f7b3f55e579eacc373f25594dd32a17c1693d7bcaa088c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "In the NICER observations, what is the approximate contribution of the nearby AGN RX J0437.4−4711 to the 0.3–3 keV band?",
+ "choices": [
+ "About 0.2 counts/s",
+ "About 1.5 counts/s",
+ "About 3.0 counts/s",
+ "About 5.0 counts/s"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:In the NICER observations, what is the approximate contribution of the nearby AGN RX J0437.4−4711 to the 0.3–3 keV band?\nAnswer:",
+ " About 0.2 counts/s"
+ ],
+ [
+ "Question:In the NICER observations, what is the approximate contribution of the nearby AGN RX J0437.4−4711 to the 0.3–3 keV band?\nAnswer:",
+ " About 1.5 counts/s"
+ ],
+ [
+ "Question:In the NICER observations, what is the approximate contribution of the nearby AGN RX J0437.4−4711 to the 0.3–3 keV band?\nAnswer:",
+ " About 3.0 counts/s"
+ ],
+ [
+ "Question:In the NICER observations, what is the approximate contribution of the nearby AGN RX J0437.4−4711 to the 0.3–3 keV band?\nAnswer:",
+ " About 5.0 counts/s"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.581018447875977,
+ false
+ ]
+ ],
+ [
+ [
+ -24.277639389038086,
+ false
+ ]
+ ],
+ [
+ [
+ -27.225370407104492,
+ false
+ ]
+ ],
+ [
+ [
+ -27.68436050415039,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.581018447875977,
+ false
+ ],
+ [
+ -24.277639389038086,
+ false
+ ],
+ [
+ -27.225370407104492,
+ false
+ ],
+ [
+ -27.68436050415039,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b32f1db2cede76d6f2cdf7c473fd967f1e38b84c0c10ee1f13c6bb56c16c79ba",
+ "prompt_hash": "7347866172412d992f39e909a8c48662828ecc18ea5b707099c207bbeb787234",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What is the primary purpose of EchoMimic in portrait animation?",
+ "choices": [
+ "To generate portrait videos using both audio signals and facial landmarks",
+ "To synthesize 3D avatars from textual descriptions",
+ "To perform real-time lip synchronization using only 3D morphable models",
+ "To replace GAN-based approaches with Wav2Lip mechanisms"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the primary purpose of EchoMimic in portrait animation?\nAnswer:",
+ " To generate portrait videos using both audio signals and facial landmarks"
+ ],
+ [
+ "Question:What is the primary purpose of EchoMimic in portrait animation?\nAnswer:",
+ " To synthesize 3D avatars from textual descriptions"
+ ],
+ [
+ "Question:What is the primary purpose of EchoMimic in portrait animation?\nAnswer:",
+ " To perform real-time lip synchronization using only 3D morphable models"
+ ],
+ [
+ "Question:What is the primary purpose of EchoMimic in portrait animation?\nAnswer:",
+ " To replace GAN-based approaches with Wav2Lip mechanisms"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.45629119873047,
+ false
+ ]
+ ],
+ [
+ [
+ -22.518705368041992,
+ false
+ ]
+ ],
+ [
+ [
+ -41.64351272583008,
+ false
+ ]
+ ],
+ [
+ [
+ -52.94198226928711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.45629119873047,
+ false
+ ],
+ [
+ -22.518705368041992,
+ false
+ ],
+ [
+ -41.64351272583008,
+ false
+ ],
+ [
+ -52.94198226928711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "09fcb207ffa83b036d34b90fd8eb0c632f12ba8cfdc9f1187a854d65968ec3a8",
+ "prompt_hash": "86fb8321e982423113547efe693b5dcd70111ccc80a3075f4773c97e3a4aae1a",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "Which architecture does EchoMimic's Denoising U-Net draw inspiration from?",
+ "choices": [
+ "GAN-based MegaPortraits",
+ "Stable Diffusion v1.5",
+ "Transformer-based GPT architecture",
+ "3D Morphable Models"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which architecture does EchoMimic's Denoising U-Net draw inspiration from?\nAnswer:",
+ " GAN-based MegaPortraits"
+ ],
+ [
+ "Question:Which architecture does EchoMimic's Denoising U-Net draw inspiration from?\nAnswer:",
+ " Stable Diffusion v1.5"
+ ],
+ [
+ "Question:Which architecture does EchoMimic's Denoising U-Net draw inspiration from?\nAnswer:",
+ " Transformer-based GPT architecture"
+ ],
+ [
+ "Question:Which architecture does EchoMimic's Denoising U-Net draw inspiration from?\nAnswer:",
+ " 3D Morphable Models"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -43.4454345703125,
+ false
+ ]
+ ],
+ [
+ [
+ -12.865447044372559,
+ false
+ ]
+ ],
+ [
+ [
+ -22.89692497253418,
+ false
+ ]
+ ],
+ [
+ [
+ -18.237205505371094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -43.4454345703125,
+ false
+ ],
+ [
+ -12.865447044372559,
+ false
+ ],
+ [
+ -22.89692497253418,
+ false
+ ],
+ [
+ -18.237205505371094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e6976e2db7c66944c31a7d101b4a1fc4100abb4916f120c3eca5653f40f362a9",
+ "prompt_hash": "6e50180c89a59c87f3e94f877679ad6ef88b3aec3d9cd05c5b8d2210e0ea89e6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "What role does the Audio Encoder play in the EchoMimic framework?",
+ "choices": [
+ "It extracts motion vectors from reference images",
+ "It encodes facial landmarks into latent vectors",
+ "It captures pronunciation and tonality features using Wav2Vec embeddings",
+ "It generates synthetic audio for video narration"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What role does the Audio Encoder play in the EchoMimic framework?\nAnswer:",
+ " It extracts motion vectors from reference images"
+ ],
+ [
+ "Question:What role does the Audio Encoder play in the EchoMimic framework?\nAnswer:",
+ " It encodes facial landmarks into latent vectors"
+ ],
+ [
+ "Question:What role does the Audio Encoder play in the EchoMimic framework?\nAnswer:",
+ " It captures pronunciation and tonality features using Wav2Vec embeddings"
+ ],
+ [
+ "Question:What role does the Audio Encoder play in the EchoMimic framework?\nAnswer:",
+ " It generates synthetic audio for video narration"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -34.38471984863281,
+ false
+ ]
+ ],
+ [
+ [
+ -26.634109497070312,
+ false
+ ]
+ ],
+ [
+ [
+ -49.42478561401367,
+ false
+ ]
+ ],
+ [
+ [
+ -31.105899810791016,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -34.38471984863281,
+ false
+ ],
+ [
+ -26.634109497070312,
+ false
+ ],
+ [
+ -49.42478561401367,
+ false
+ ],
+ [
+ -31.105899810791016,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9d677c7e270dbe2b16981def7e4de61fddd0be1ea7456d9731b5a34dee522568",
+ "prompt_hash": "b7e0dd728da0f3b6498eef1a70257eaff55685def4651d494e2ca39bfc11f50f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "Which metric evaluates the structural similarity between generated and ground truth videos?",
+ "choices": [
+ "FID",
+ "SSIM",
+ "E-FID",
+ "FVD"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which metric evaluates the structural similarity between generated and ground truth videos?\nAnswer:",
+ " FID"
+ ],
+ [
+ "Question:Which metric evaluates the structural similarity between generated and ground truth videos?\nAnswer:",
+ " SSIM"
+ ],
+ [
+ "Question:Which metric evaluates the structural similarity between generated and ground truth videos?\nAnswer:",
+ " E-FID"
+ ],
+ [
+ "Question:Which metric evaluates the structural similarity between generated and ground truth videos?\nAnswer:",
+ " FVD"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.555878639221191,
+ false
+ ]
+ ],
+ [
+ [
+ -6.250504493713379,
+ false
+ ]
+ ],
+ [
+ [
+ -14.620190620422363,
+ false
+ ]
+ ],
+ [
+ [
+ -7.614960670471191,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.555878639221191,
+ false
+ ],
+ [
+ -6.250504493713379,
+ false
+ ],
+ [
+ -14.620190620422363,
+ false
+ ],
+ [
+ -7.614960670471191,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "886503ac67e97bca5a9de5a56393902b6df58329bb12d6031ef7d4013109082d",
+ "prompt_hash": "811a868f67d2ec860fff8a94061f5ec88bf6b45090c1b838da2763ff4bfd75ae",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "On the HDTF dataset, what is EchoMimic's Fréchet Inception Distance (FID) score?",
+ "choices": [
+ "41.535",
+ "37.659",
+ "29.136",
+ "53.143"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:On the HDTF dataset, what is EchoMimic's Fréchet Inception Distance (FID) score?\nAnswer:",
+ " 41.535"
+ ],
+ [
+ "Question:On the HDTF dataset, what is EchoMimic's Fréchet Inception Distance (FID) score?\nAnswer:",
+ " 37.659"
+ ],
+ [
+ "Question:On the HDTF dataset, what is EchoMimic's Fréchet Inception Distance (FID) score?\nAnswer:",
+ " 29.136"
+ ],
+ [
+ "Question:On the HDTF dataset, what is EchoMimic's Fréchet Inception Distance (FID) score?\nAnswer:",
+ " 53.143"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.374874114990234,
+ false
+ ]
+ ],
+ [
+ [
+ -15.217829704284668,
+ false
+ ]
+ ],
+ [
+ [
+ -15.107488632202148,
+ false
+ ]
+ ],
+ [
+ [
+ -16.111392974853516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.374874114990234,
+ false
+ ],
+ [
+ -15.217829704284668,
+ false
+ ],
+ [
+ -15.107488632202148,
+ false
+ ],
+ [
+ -16.111392974853516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "91387f5df300c340c54a96119253cb331876a51247f16e1ee4a9b9cf43338efa",
+ "prompt_hash": "49cfff5c4848fe783889bc41c7a1a73832c0b168020a74022d71ead9be7badae",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "Which of the following partial differential equations (PDEs) is included in the systematic review's scope?",
+ "choices": [
+ "Korteweg–de Vries (KdV)",
+ "Darcy flow",
+ "Reaction-diffusion",
+ "Schrodinger equation"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which of the following partial differential equations (PDEs) is included in the systematic review's scope?\nAnswer:",
+ " Korteweg–de Vries (KdV)"
+ ],
+ [
+ "Question:Which of the following partial differential equations (PDEs) is included in the systematic review's scope?\nAnswer:",
+ " Darcy flow"
+ ],
+ [
+ "Question:Which of the following partial differential equations (PDEs) is included in the systematic review's scope?\nAnswer:",
+ " Reaction-diffusion"
+ ],
+ [
+ "Question:Which of the following partial differential equations (PDEs) is included in the systematic review's scope?\nAnswer:",
+ " Schrodinger equation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.173296928405762,
+ false
+ ]
+ ],
+ [
+ [
+ -12.69983196258545,
+ false
+ ]
+ ],
+ [
+ [
+ -12.843111991882324,
+ false
+ ]
+ ],
+ [
+ [
+ -11.093381881713867,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.173296928405762,
+ false
+ ],
+ [
+ -12.69983196258545,
+ false
+ ],
+ [
+ -12.843111991882324,
+ false
+ ],
+ [
+ -11.093381881713867,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7ae96dc5fbdda19d7b2f4085705065a1176fc56e5bd7815308596acc0bbad20e",
+ "prompt_hash": "5ef7dc1b26033a68d8db77326c0f3859286daabd58adfabec08b0aa7135b612c",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "Why are physics-informed neural network (PINN) methods excluded from the systematic review?",
+ "choices": [
+ "They are too slow and inefficient for any PDEs",
+ "The literature is too large and they rarely outperform standard methods",
+ "They cannot solve fluid-related PDEs",
+ "They only work for inverse problems"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Why are physics-informed neural network (PINN) methods excluded from the systematic review?\nAnswer:",
+ " They are too slow and inefficient for any PDEs"
+ ],
+ [
+ "Question:Why are physics-informed neural network (PINN) methods excluded from the systematic review?\nAnswer:",
+ " The literature is too large and they rarely outperform standard methods"
+ ],
+ [
+ "Question:Why are physics-informed neural network (PINN) methods excluded from the systematic review?\nAnswer:",
+ " They cannot solve fluid-related PDEs"
+ ],
+ [
+ "Question:Why are physics-informed neural network (PINN) methods excluded from the systematic review?\nAnswer:",
+ " They only work for inverse problems"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.40483093261719,
+ false
+ ]
+ ],
+ [
+ [
+ -45.47227096557617,
+ false
+ ]
+ ],
+ [
+ [
+ -27.10033416748047,
+ false
+ ]
+ ],
+ [
+ [
+ -22.625762939453125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.40483093261719,
+ false
+ ],
+ [
+ -45.47227096557617,
+ false
+ ],
+ [
+ -27.10033416748047,
+ false
+ ],
+ [
+ -22.625762939453125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d15fcbecf4c315a4ff5d8f95930e335c8a24e7646c955eaf0dfa6d648e779793",
+ "prompt_hash": "39f1f8d7d75d7a19e4298d2162bf7be88ded1d3acbaa453c06721139e58bd246",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "Which hardware comparison is generally considered the fairest when evaluating ML-based PDE solvers?",
+ "choices": [
+ "GPU-to-GPU or TPU-to-TPU comparisons",
+ "CPU-to-TPU comparisons",
+ "CPU-to-GPU comparisons only",
+ "There is no fair comparison method"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which hardware comparison is generally considered the fairest when evaluating ML-based PDE solvers?\nAnswer:",
+ " GPU-to-GPU or TPU-to-TPU comparisons"
+ ],
+ [
+ "Question:Which hardware comparison is generally considered the fairest when evaluating ML-based PDE solvers?\nAnswer:",
+ " CPU-to-TPU comparisons"
+ ],
+ [
+ "Question:Which hardware comparison is generally considered the fairest when evaluating ML-based PDE solvers?\nAnswer:",
+ " CPU-to-GPU comparisons only"
+ ],
+ [
+ "Question:Which hardware comparison is generally considered the fairest when evaluating ML-based PDE solvers?\nAnswer:",
+ " There is no fair comparison method"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.690475463867188,
+ false
+ ]
+ ],
+ [
+ [
+ -28.010419845581055,
+ false
+ ]
+ ],
+ [
+ [
+ -24.789653778076172,
+ false
+ ]
+ ],
+ [
+ [
+ -16.941194534301758,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.690475463867188,
+ false
+ ],
+ [
+ -28.010419845581055,
+ false
+ ],
+ [
+ -24.789653778076172,
+ false
+ ],
+ [
+ -16.941194534301758,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6193794c56683e9761d433a69015d026a6ca3835797950eff3d94e5111d1347e",
+ "prompt_hash": "eb207fbf62331da84da86793e4428fc9b8395d436696beb3a47488680ba4da88",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "What is the recommended numerical method for solving large elliptic PDE problems according to the review?",
+ "choices": [
+ "Finite element methods (FEM)",
+ "Multigrid solvers",
+ "Pseudo-spectral methods",
+ "First-order finite volume methods"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the recommended numerical method for solving large elliptic PDE problems according to the review?\nAnswer:",
+ " Finite element methods (FEM)"
+ ],
+ [
+ "Question:What is the recommended numerical method for solving large elliptic PDE problems according to the review?\nAnswer:",
+ " Multigrid solvers"
+ ],
+ [
+ "Question:What is the recommended numerical method for solving large elliptic PDE problems according to the review?\nAnswer:",
+ " Pseudo-spectral methods"
+ ],
+ [
+ "Question:What is the recommended numerical method for solving large elliptic PDE problems according to the review?\nAnswer:",
+ " First-order finite volume methods"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.821867942810059,
+ false
+ ]
+ ],
+ [
+ [
+ -15.478704452514648,
+ false
+ ]
+ ],
+ [
+ [
+ -11.922616004943848,
+ false
+ ]
+ ],
+ [
+ [
+ -19.134483337402344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.821867942810059,
+ false
+ ],
+ [
+ -15.478704452514648,
+ false
+ ],
+ [
+ -11.922616004943848,
+ false
+ ],
+ [
+ -19.134483337402344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "58520cf717a0b780213d59c994f481739f3e52565e02e4eb0daad4a7a72b0cfe",
+ "prompt_hash": "00e9209e4c905666d275b0a8d0a74e6aded50b08c2920900a20481a5baecdec2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "According to the random sample of PINN articles, what is the typical runtime difference between PINN-based solvers and standard numerical methods?",
+ "choices": [
+ "PINNs usually solve PDEs faster than standard methods",
+ "PINNs and standard methods take about the same time",
+ "PINNs take hours to days, while standard methods take fractions of a second to minutes",
+ "PINNs are always unusable for PDEs"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:According to the random sample of PINN articles, what is the typical runtime difference between PINN-based solvers and standard numerical methods?\nAnswer:",
+ " PINNs usually solve PDEs faster than standard methods"
+ ],
+ [
+ "Question:According to the random sample of PINN articles, what is the typical runtime difference between PINN-based solvers and standard numerical methods?\nAnswer:",
+ " PINNs and standard methods take about the same time"
+ ],
+ [
+ "Question:According to the random sample of PINN articles, what is the typical runtime difference between PINN-based solvers and standard numerical methods?\nAnswer:",
+ " PINNs take hours to days, while standard methods take fractions of a second to minutes"
+ ],
+ [
+ "Question:According to the random sample of PINN articles, what is the typical runtime difference between PINN-based solvers and standard numerical methods?\nAnswer:",
+ " PINNs are always unusable for PDEs"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.198780059814453,
+ false
+ ]
+ ],
+ [
+ [
+ -23.7254581451416,
+ false
+ ]
+ ],
+ [
+ [
+ -40.41664505004883,
+ false
+ ]
+ ],
+ [
+ [
+ -35.51586151123047,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.198780059814453,
+ false
+ ],
+ [
+ -23.7254581451416,
+ false
+ ],
+ [
+ -40.41664505004883,
+ false
+ ],
+ [
+ -35.51586151123047,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0781565615a4c1705bf91c1eb93c8ab0ddcb3fba972b5dd172d9240e3eff6815",
+ "prompt_hash": "ef3ffa2c12f24e51f8b0ad1128e0de7ebde64d0918297ca1ad76056e276d0fd0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "What is the primary computational bottleneck in the Transformer architecture?",
+ "choices": [
+ "The embedding layer",
+ "The attention mechanism",
+ "The feed-forward network",
+ "The positional encoding"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the primary computational bottleneck in the Transformer architecture?\nAnswer:",
+ " The embedding layer"
+ ],
+ [
+ "Question:What is the primary computational bottleneck in the Transformer architecture?\nAnswer:",
+ " The attention mechanism"
+ ],
+ [
+ "Question:What is the primary computational bottleneck in the Transformer architecture?\nAnswer:",
+ " The feed-forward network"
+ ],
+ [
+ "Question:What is the primary computational bottleneck in the Transformer architecture?\nAnswer:",
+ " The positional encoding"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.642364501953125,
+ false
+ ]
+ ],
+ [
+ [
+ -5.322152137756348,
+ false
+ ]
+ ],
+ [
+ [
+ -10.473891258239746,
+ false
+ ]
+ ],
+ [
+ [
+ -10.967617988586426,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.642364501953125,
+ false
+ ],
+ [
+ -5.322152137756348,
+ false
+ ],
+ [
+ -10.473891258239746,
+ false
+ ],
+ [
+ -10.967617988586426,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7e3ba293ac28ebcb6bc67aa7c4670e4575db05560c9ad4da3828fec161c63b26",
+ "prompt_hash": "06fdde3cc2dae51beb96619eea06c16242ba38200b0bcea9af91338a8c5eb969",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "Which hardware feature of the NVIDIA Hopper architecture allows asynchronous data transfer between GMEM and SMEM?",
+ "choices": [
+ "Tensor Core Units",
+ "Warpgroup Synchronizer",
+ "Tensor Memory Accelerator (TMA)",
+ "Shared Memory Controller"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which hardware feature of the NVIDIA Hopper architecture allows asynchronous data transfer between GMEM and SMEM?\nAnswer:",
+ " Tensor Core Units"
+ ],
+ [
+ "Question:Which hardware feature of the NVIDIA Hopper architecture allows asynchronous data transfer between GMEM and SMEM?\nAnswer:",
+ " Warpgroup Synchronizer"
+ ],
+ [
+ "Question:Which hardware feature of the NVIDIA Hopper architecture allows asynchronous data transfer between GMEM and SMEM?\nAnswer:",
+ " Tensor Memory Accelerator (TMA)"
+ ],
+ [
+ "Question:Which hardware feature of the NVIDIA Hopper architecture allows asynchronous data transfer between GMEM and SMEM?\nAnswer:",
+ " Shared Memory Controller"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.239320755004883,
+ false
+ ]
+ ],
+ [
+ [
+ -22.14812469482422,
+ false
+ ]
+ ],
+ [
+ [
+ -17.409900665283203,
+ false
+ ]
+ ],
+ [
+ [
+ -12.405678749084473,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.239320755004883,
+ false
+ ],
+ [
+ -22.14812469482422,
+ false
+ ],
+ [
+ -17.409900665283203,
+ false
+ ],
+ [
+ -12.405678749084473,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "52aacdf905d0e61171afc685cc7773cafc53632d7a01b4b11ccc86819e553951",
+ "prompt_hash": "d6a79f677f76cb627347b56319183e66e84f27fcddac5fc25e47ee201666e73f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "In FP8 WGMMA, which data layout is required for input operands stored in shared memory?",
+ "choices": [
+ "mn-major or k-major format",
+ "k-major format only",
+ "mn-major format only",
+ "Any layout is acceptable"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In FP8 WGMMA, which data layout is required for input operands stored in shared memory?\nAnswer:",
+ " mn-major or k-major format"
+ ],
+ [
+ "Question:In FP8 WGMMA, which data layout is required for input operands stored in shared memory?\nAnswer:",
+ " k-major format only"
+ ],
+ [
+ "Question:In FP8 WGMMA, which data layout is required for input operands stored in shared memory?\nAnswer:",
+ " mn-major format only"
+ ],
+ [
+ "Question:In FP8 WGMMA, which data layout is required for input operands stored in shared memory?\nAnswer:",
+ " Any layout is acceptable"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -44.76097869873047,
+ false
+ ]
+ ],
+ [
+ [
+ -30.443592071533203,
+ false
+ ]
+ ],
+ [
+ [
+ -39.042701721191406,
+ false
+ ]
+ ],
+ [
+ [
+ -16.37194061279297,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -44.76097869873047,
+ false
+ ],
+ [
+ -30.443592071533203,
+ false
+ ],
+ [
+ -39.042701721191406,
+ false
+ ],
+ [
+ -16.37194061279297,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3df4c138fca5f6f0e388e4f554b918ab379e9b676b3a53b59f1c0365fd71a244",
+ "prompt_hash": "ce26067df1fa7fce65bb596a35a024471813ff953d7445adf72449a7edd5aaa7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "Which technique is used in FlashAttention-3 to reduce quantization error when working with outlier features in FP8?",
+ "choices": [
+ "Per-tensor scaling",
+ "Block quantization and incoherent processing",
+ "Global normalization",
+ "Gradient clipping"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which technique is used in FlashAttention-3 to reduce quantization error when working with outlier features in FP8?\nAnswer:",
+ " Per-tensor scaling"
+ ],
+ [
+ "Question:Which technique is used in FlashAttention-3 to reduce quantization error when working with outlier features in FP8?\nAnswer:",
+ " Block quantization and incoherent processing"
+ ],
+ [
+ "Question:Which technique is used in FlashAttention-3 to reduce quantization error when working with outlier features in FP8?\nAnswer:",
+ " Global normalization"
+ ],
+ [
+ "Question:Which technique is used in FlashAttention-3 to reduce quantization error when working with outlier features in FP8?\nAnswer:",
+ " Gradient clipping"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.715656280517578,
+ false
+ ]
+ ],
+ [
+ [
+ -30.47322654724121,
+ false
+ ]
+ ],
+ [
+ [
+ -12.290731430053711,
+ false
+ ]
+ ],
+ [
+ [
+ -9.121477127075195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.715656280517578,
+ false
+ ],
+ [
+ -30.47322654724121,
+ false
+ ],
+ [
+ -12.290731430053711,
+ false
+ ],
+ [
+ -9.121477127075195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "659b27d6a215f0d1bd0a042e0e9f87d82c34e968562612e66ab4102f92140f4e",
+ "prompt_hash": "c0392c6a289c354ed702f9046c58b831c42e59519727b65c3659310965b1cae2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "What is the reported forward pass speedup of FP16 FlashAttention-3 compared to FlashAttention-2?",
+ "choices": [
+ "1.1-1.3×",
+ "1.5-2.0×",
+ "2.5-3.0×",
+ "3.5-4.0×"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the reported forward pass speedup of FP16 FlashAttention-3 compared to FlashAttention-2?\nAnswer:",
+ " 1.1-1.3×"
+ ],
+ [
+ "Question:What is the reported forward pass speedup of FP16 FlashAttention-3 compared to FlashAttention-2?\nAnswer:",
+ " 1.5-2.0×"
+ ],
+ [
+ "Question:What is the reported forward pass speedup of FP16 FlashAttention-3 compared to FlashAttention-2?\nAnswer:",
+ " 2.5-3.0×"
+ ],
+ [
+ "Question:What is the reported forward pass speedup of FP16 FlashAttention-3 compared to FlashAttention-2?\nAnswer:",
+ " 3.5-4.0×"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.02304458618164,
+ false
+ ]
+ ],
+ [
+ [
+ -16.681089401245117,
+ false
+ ]
+ ],
+ [
+ [
+ -17.597490310668945,
+ false
+ ]
+ ],
+ [
+ [
+ -18.239065170288086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.02304458618164,
+ false
+ ],
+ [
+ -16.681089401245117,
+ false
+ ],
+ [
+ -17.597490310668945,
+ false
+ ],
+ [
+ -18.239065170288086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e17537da619793a1d35dcb4e674e82c52561bb7ccde7d0107b2dc1b5b43f5f34",
+ "prompt_hash": "ba403d403f84b992092e620a1958457ffee7449f194e2c948118cabd50d95bdf",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What is the total number of parameters of Qwen2-Audio?",
+ "choices": [
+ "7.0B",
+ "8.2B",
+ "6.5B",
+ "9.1B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the total number of parameters of Qwen2-Audio?\nAnswer:",
+ " 7.0B"
+ ],
+ [
+ "Question:What is the total number of parameters of Qwen2-Audio?\nAnswer:",
+ " 8.2B"
+ ],
+ [
+ "Question:What is the total number of parameters of Qwen2-Audio?\nAnswer:",
+ " 6.5B"
+ ],
+ [
+ "Question:What is the total number of parameters of Qwen2-Audio?\nAnswer:",
+ " 9.1B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.461862564086914,
+ false
+ ]
+ ],
+ [
+ [
+ -11.596549987792969,
+ false
+ ]
+ ],
+ [
+ [
+ -11.168014526367188,
+ false
+ ]
+ ],
+ [
+ [
+ -12.721345901489258,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.461862564086914,
+ false
+ ],
+ [
+ -11.596549987792969,
+ false
+ ],
+ [
+ -11.168014526367188,
+ false
+ ],
+ [
+ -12.721345901489258,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "36a5445979717a321cc191b2cdd44409d3c6cbc42665d07539fe017c4fece54c",
+ "prompt_hash": "8c8ae3b282fe9e0927e9272d4db4e1edbb49e97b0ce12de5197d8ca0751518ff",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "Which model serves as the initialization for the audio encoder of Qwen2-Audio?",
+ "choices": [
+ "Whisper-large-v3",
+ "Qwen-7B",
+ "SpeechVerse",
+ "Gemini-1.5-pro"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which model serves as the initialization for the audio encoder of Qwen2-Audio?\nAnswer:",
+ " Whisper-large-v3"
+ ],
+ [
+ "Question:Which model serves as the initialization for the audio encoder of Qwen2-Audio?\nAnswer:",
+ " Qwen-7B"
+ ],
+ [
+ "Question:Which model serves as the initialization for the audio encoder of Qwen2-Audio?\nAnswer:",
+ " SpeechVerse"
+ ],
+ [
+ "Question:Which model serves as the initialization for the audio encoder of Qwen2-Audio?\nAnswer:",
+ " Gemini-1.5-pro"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.041715621948242,
+ false
+ ]
+ ],
+ [
+ [
+ -15.517387390136719,
+ false
+ ]
+ ],
+ [
+ [
+ -23.270618438720703,
+ false
+ ]
+ ],
+ [
+ [
+ -16.757564544677734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.041715621948242,
+ false
+ ],
+ [
+ -15.517387390136719,
+ false
+ ],
+ [
+ -23.270618438720703,
+ false
+ ],
+ [
+ -16.757564544677734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d4189a0ea2d13c666df4cfc81425a4981f563d9bbfbde9b32211dc1ab1f5b690",
+ "prompt_hash": "8cde8791295b635430528cc664bb33b82b4f4f77628c2a110026f29abd1b9917",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "On the CoVoST2 dataset, what was Qwen2-Audio’s BLEU score for English-to-Chinese (en-zh) speech-to-text translation?",
+ "choices": [
+ "33.1",
+ "41.5",
+ "45.2",
+ "24.4"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:On the CoVoST2 dataset, what was Qwen2-Audio’s BLEU score for English-to-Chinese (en-zh) speech-to-text translation?\nAnswer:",
+ " 33.1"
+ ],
+ [
+ "Question:On the CoVoST2 dataset, what was Qwen2-Audio’s BLEU score for English-to-Chinese (en-zh) speech-to-text translation?\nAnswer:",
+ " 41.5"
+ ],
+ [
+ "Question:On the CoVoST2 dataset, what was Qwen2-Audio’s BLEU score for English-to-Chinese (en-zh) speech-to-text translation?\nAnswer:",
+ " 45.2"
+ ],
+ [
+ "Question:On the CoVoST2 dataset, what was Qwen2-Audio’s BLEU score for English-to-Chinese (en-zh) speech-to-text translation?\nAnswer:",
+ " 24.4"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.055087089538574,
+ false
+ ]
+ ],
+ [
+ [
+ -9.025057792663574,
+ false
+ ]
+ ],
+ [
+ [
+ -9.17648696899414,
+ false
+ ]
+ ],
+ [
+ [
+ -8.53309154510498,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.055087089538574,
+ false
+ ],
+ [
+ -9.025057792663574,
+ false
+ ],
+ [
+ -9.17648696899414,
+ false
+ ],
+ [
+ -8.53309154510498,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e255050272f4c1de3100e6a9e2c84d550470786f60c389f2b16edf1748416d92",
+ "prompt_hash": "d7110a0ee4e475f98bf211259b08ab7d2c5dfc613990469e965d97520b9882f0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "In voice chat mode, how are users expected to interact with Qwen2-Audio?",
+ "choices": [
+ "By issuing commands through structured tags only",
+ "By engaging in voice conversations with unrestricted dialogue",
+ "By providing only textual commands for offline analysis",
+ "By uploading audio files for automatic transcription"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In voice chat mode, how are users expected to interact with Qwen2-Audio?\nAnswer:",
+ " By issuing commands through structured tags only"
+ ],
+ [
+ "Question:In voice chat mode, how are users expected to interact with Qwen2-Audio?\nAnswer:",
+ " By engaging in voice conversations with unrestricted dialogue"
+ ],
+ [
+ "Question:In voice chat mode, how are users expected to interact with Qwen2-Audio?\nAnswer:",
+ " By providing only textual commands for offline analysis"
+ ],
+ [
+ "Question:In voice chat mode, how are users expected to interact with Qwen2-Audio?\nAnswer:",
+ " By uploading audio files for automatic transcription"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -41.54837417602539,
+ false
+ ]
+ ],
+ [
+ [
+ -37.847511291503906,
+ false
+ ]
+ ],
+ [
+ [
+ -46.505123138427734,
+ false
+ ]
+ ],
+ [
+ [
+ -26.315853118896484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -41.54837417602539,
+ false
+ ],
+ [
+ -37.847511291503906,
+ false
+ ],
+ [
+ -46.505123138427734,
+ false
+ ],
+ [
+ -26.315853118896484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ea51e35a78949b693f0927adcdcbb4d74c2265f706f1dae0b0078b0df21494c6",
+ "prompt_hash": "7b6f1647be3f0fab5db5482826d1fadd78909d114faee55c3f711217f56dd859",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "On the Librispeech test-clean dataset, what Word Error Rate (WER) did Qwen2-Audio achieve?",
+ "choices": [
+ "2.0%",
+ "1.6%",
+ "3.4%",
+ "2.4%"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:On the Librispeech test-clean dataset, what Word Error Rate (WER) did Qwen2-Audio achieve?\nAnswer:",
+ " 2.0%"
+ ],
+ [
+ "Question:On the Librispeech test-clean dataset, what Word Error Rate (WER) did Qwen2-Audio achieve?\nAnswer:",
+ " 1.6%"
+ ],
+ [
+ "Question:On the Librispeech test-clean dataset, what Word Error Rate (WER) did Qwen2-Audio achieve?\nAnswer:",
+ " 3.4%"
+ ],
+ [
+ "Question:On the Librispeech test-clean dataset, what Word Error Rate (WER) did Qwen2-Audio achieve?\nAnswer:",
+ " 2.4%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.759432792663574,
+ false
+ ]
+ ],
+ [
+ [
+ -14.206562042236328,
+ false
+ ]
+ ],
+ [
+ [
+ -14.24560546875,
+ false
+ ]
+ ],
+ [
+ [
+ -14.26672649383545,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.759432792663574,
+ false
+ ],
+ [
+ -14.206562042236328,
+ false
+ ],
+ [
+ -14.24560546875,
+ false
+ ],
+ [
+ -14.26672649383545,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "da4aa04a709b7560efdf38c0d06ed4427fe1f08aa21e2f69fc46ce5c3a2c86ee",
+ "prompt_hash": "7c7c13464cd82ac0be19496dfcb8324f810a6fab804a26e7a03a1b7b13fd66f2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "What is the surrogate LLM used in the experiments?",
+ "choices": [
+ "gpt-2",
+ "LLaMA3-70b",
+ "GPT3.5",
+ "BERT"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the surrogate LLM used in the experiments?\nAnswer:",
+ " gpt-2"
+ ],
+ [
+ "Question:What is the surrogate LLM used in the experiments?\nAnswer:",
+ " LLaMA3-70b"
+ ],
+ [
+ "Question:What is the surrogate LLM used in the experiments?\nAnswer:",
+ " GPT3.5"
+ ],
+ [
+ "Question:What is the surrogate LLM used in the experiments?\nAnswer:",
+ " BERT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.955815315246582,
+ false
+ ]
+ ],
+ [
+ [
+ -11.751947402954102,
+ false
+ ]
+ ],
+ [
+ [
+ -6.5450286865234375,
+ false
+ ]
+ ],
+ [
+ [
+ -7.920544147491455,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.955815315246582,
+ false
+ ],
+ [
+ -11.751947402954102,
+ false
+ ],
+ [
+ -6.5450286865234375,
+ false
+ ],
+ [
+ -7.920544147491455,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4a88247828c8f65da2cd023e803e88a1c6608c741bde2221dfd34031cdfd2f42",
+ "prompt_hash": "dc64d8747fe9a2cb0affa9df7dac972f5670662c4c675aec047337d950ba6669",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "How many poisoned instances were injected for Agent-Driver in the experiments?",
+ "choices": [
+ "20",
+ "10",
+ "4",
+ "2"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many poisoned instances were injected for Agent-Driver in the experiments?\nAnswer:",
+ " 20"
+ ],
+ [
+ "Question:How many poisoned instances were injected for Agent-Driver in the experiments?\nAnswer:",
+ " 10"
+ ],
+ [
+ "Question:How many poisoned instances were injected for Agent-Driver in the experiments?\nAnswer:",
+ " 4"
+ ],
+ [
+ "Question:How many poisoned instances were injected for Agent-Driver in the experiments?\nAnswer:",
+ " 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.250162124633789,
+ false
+ ]
+ ],
+ [
+ [
+ -3.488814353942871,
+ false
+ ]
+ ],
+ [
+ [
+ -3.920569896697998,
+ false
+ ]
+ ],
+ [
+ [
+ -3.1337132453918457,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.250162124633789,
+ false
+ ],
+ [
+ -3.488814353942871,
+ false
+ ],
+ [
+ -3.920569896697998,
+ false
+ ],
+ [
+ -3.1337132453918457,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "20464913b9534ff408468a1f95f8958de14c3cd42204762ef42250e30d8d1651",
+ "prompt_hash": "bdcd08af0934c3af61aae0936cdf4fad05cbe1058f4b25e99c350f19b2f7d7dc",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "Which retriever model is adopted as the contrastive retriever for ReAct-StrategyQA?",
+ "choices": [
+ "DPR",
+ "REALM",
+ "BM25",
+ "ORQA"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which retriever model is adopted as the contrastive retriever for ReAct-StrategyQA?\nAnswer:",
+ " DPR"
+ ],
+ [
+ "Question:Which retriever model is adopted as the contrastive retriever for ReAct-StrategyQA?\nAnswer:",
+ " REALM"
+ ],
+ [
+ "Question:Which retriever model is adopted as the contrastive retriever for ReAct-StrategyQA?\nAnswer:",
+ " BM25"
+ ],
+ [
+ "Question:Which retriever model is adopted as the contrastive retriever for ReAct-StrategyQA?\nAnswer:",
+ " ORQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.363696098327637,
+ false
+ ]
+ ],
+ [
+ [
+ -10.3474760055542,
+ false
+ ]
+ ],
+ [
+ [
+ -5.98929500579834,
+ false
+ ]
+ ],
+ [
+ [
+ -15.886300086975098,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.363696098327637,
+ false
+ ],
+ [
+ -10.3474760055542,
+ false
+ ],
+ [
+ -5.98929500579834,
+ false
+ ],
+ [
+ -15.886300086975098,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "19c0ce4a7df7efcbf4a36fbaf8f3bfff57ad8a7c82889a59823d14ecd7b9adbb",
+ "prompt_hash": "a30cd2e4ac0962c29654038025c04b00bca127955e10339d2bb80e7c8a8b36a2",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "What is the attack target action for EHRAgent in the experiments?",
+ "choices": [
+ "delete data of patient ID",
+ "sudden stop",
+ "I don't know",
+ "output random text"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the attack target action for EHRAgent in the experiments?\nAnswer:",
+ " delete data of patient ID"
+ ],
+ [
+ "Question:What is the attack target action for EHRAgent in the experiments?\nAnswer:",
+ " sudden stop"
+ ],
+ [
+ "Question:What is the attack target action for EHRAgent in the experiments?\nAnswer:",
+ " I don't know"
+ ],
+ [
+ "Question:What is the attack target action for EHRAgent in the experiments?\nAnswer:",
+ " output random text"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.995281219482422,
+ false
+ ]
+ ],
+ [
+ [
+ -16.279922485351562,
+ false
+ ]
+ ],
+ [
+ [
+ -12.055635452270508,
+ false
+ ]
+ ],
+ [
+ [
+ -20.101879119873047,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.995281219482422,
+ false
+ ],
+ [
+ -16.279922485351562,
+ false
+ ],
+ [
+ -12.055635452270508,
+ false
+ ],
+ [
+ -20.101879119873047,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5d1ccd809307220bac91b010edf697bb9722ebf7ae3ab6259bf2cedb88970cb1",
+ "prompt_hash": "27a600525351da0238a0a909ca0511e3f9f89742b1be812a583a12b1fa3c8c77",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What type of poisoning strategy is used for Agent-Driver?",
+ "choices": [
+ "spurious correlation",
+ "adversarial backdoor",
+ "jailbreak prompts",
+ "gradient masking"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What type of poisoning strategy is used for Agent-Driver?\nAnswer:",
+ " spurious correlation"
+ ],
+ [
+ "Question:What type of poisoning strategy is used for Agent-Driver?\nAnswer:",
+ " adversarial backdoor"
+ ],
+ [
+ "Question:What type of poisoning strategy is used for Agent-Driver?\nAnswer:",
+ " jailbreak prompts"
+ ],
+ [
+ "Question:What type of poisoning strategy is used for Agent-Driver?\nAnswer:",
+ " gradient masking"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.441458702087402,
+ false
+ ]
+ ],
+ [
+ [
+ -13.96750545501709,
+ false
+ ]
+ ],
+ [
+ [
+ -14.220865249633789,
+ false
+ ]
+ ],
+ [
+ [
+ -12.348712921142578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.441458702087402,
+ false
+ ],
+ [
+ -13.96750545501709,
+ false
+ ],
+ [
+ -14.220865249633789,
+ false
+ ],
+ [
+ -12.348712921142578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d0c29abf8504cc8a487eec700cbc60e9c4a4c5875b48c80d52c13f41baf401f9",
+ "prompt_hash": "685d77301b39a898b2f0d0096f143aaf107f546574081bbae97b4bd9d7e3029b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the core representation used to model dynamic scenes in the described method?",
+ "choices": [
+ "Volumetric voxel grids",
+ "Canonical 3D Gaussians",
+ "Polygonal meshes",
+ "Point clouds with implicit surfaces"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the core representation used to model dynamic scenes in the described method?\nAnswer:",
+ " Volumetric voxel grids"
+ ],
+ [
+ "Question:What is the core representation used to model dynamic scenes in the described method?\nAnswer:",
+ " Canonical 3D Gaussians"
+ ],
+ [
+ "Question:What is the core representation used to model dynamic scenes in the described method?\nAnswer:",
+ " Polygonal meshes"
+ ],
+ [
+ "Question:What is the core representation used to model dynamic scenes in the described method?\nAnswer:",
+ " Point clouds with implicit surfaces"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.52205467224121,
+ false
+ ]
+ ],
+ [
+ [
+ -18.49441146850586,
+ false
+ ]
+ ],
+ [
+ [
+ -12.976879119873047,
+ false
+ ]
+ ],
+ [
+ [
+ -21.736690521240234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.52205467224121,
+ false
+ ],
+ [
+ -18.49441146850586,
+ false
+ ],
+ [
+ -12.976879119873047,
+ false
+ ],
+ [
+ -21.736690521240234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4a71a8710b5b4843c89b5e6094a6155d44f27f5426dd622bfa594c5ed1e7ac15",
+ "prompt_hash": "2a45fd7aa1fbba28a6cd62c8d01844656671ea39f3b50e8c8d38853203338ad5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "Which dataset provides 14 sequences of 200-500 frames recorded using a handheld moving camera?",
+ "choices": [
+ "KITTI",
+ "iPhone dataset",
+ "Kubric MOVi-F",
+ "TAP-Vid benchmark"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset provides 14 sequences of 200-500 frames recorded using a handheld moving camera?\nAnswer:",
+ " KITTI"
+ ],
+ [
+ "Question:Which dataset provides 14 sequences of 200-500 frames recorded using a handheld moving camera?\nAnswer:",
+ " iPhone dataset"
+ ],
+ [
+ "Question:Which dataset provides 14 sequences of 200-500 frames recorded using a handheld moving camera?\nAnswer:",
+ " Kubric MOVi-F"
+ ],
+ [
+ "Question:Which dataset provides 14 sequences of 200-500 frames recorded using a handheld moving camera?\nAnswer:",
+ " TAP-Vid benchmark"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.701709747314453,
+ false
+ ]
+ ],
+ [
+ [
+ -14.98783016204834,
+ false
+ ]
+ ],
+ [
+ [
+ -36.20477294921875,
+ false
+ ]
+ ],
+ [
+ [
+ -25.44028663635254,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.701709747314453,
+ false
+ ],
+ [
+ -14.98783016204834,
+ false
+ ],
+ [
+ -36.20477294921875,
+ false
+ ],
+ [
+ -25.44028663635254,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0556d92c2af3244fbc95362eba3d1d35ddc141fbb94f3200ca54e53f30798f02",
+ "prompt_hash": "daf1ca27eafd86ec618f917cdd82261a07bb49b6fcc6093bfa3a1df9aa0ed739",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "How many SE(3) motion bases are used in the experiments?",
+ "choices": [
+ "10",
+ "15",
+ "20",
+ "25"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many SE(3) motion bases are used in the experiments?\nAnswer:",
+ " 10"
+ ],
+ [
+ "Question:How many SE(3) motion bases are used in the experiments?\nAnswer:",
+ " 15"
+ ],
+ [
+ "Question:How many SE(3) motion bases are used in the experiments?\nAnswer:",
+ " 20"
+ ],
+ [
+ "Question:How many SE(3) motion bases are used in the experiments?\nAnswer:",
+ " 25"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.920566082000732,
+ false
+ ]
+ ],
+ [
+ [
+ -6.513179302215576,
+ false
+ ]
+ ],
+ [
+ [
+ -5.890079021453857,
+ false
+ ]
+ ],
+ [
+ [
+ -7.041357517242432,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.920566082000732,
+ false
+ ],
+ [
+ -6.513179302215576,
+ false
+ ],
+ [
+ -5.890079021453857,
+ false
+ ],
+ [
+ -7.041357517242432,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "410a101894c872b47e15db365f4cf6dee0284104c5d11a6e94f06759bca584ac",
+ "prompt_hash": "003ef24bc5a450560bbc48db84d2484a00eaf229698184c67258246b368be939",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "Which optimizer is used to optimize the model parameters?",
+ "choices": [
+ "SGD with momentum",
+ "Adam Optimizer",
+ "RMSProp",
+ "AdaGrad"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which optimizer is used to optimize the model parameters?\nAnswer:",
+ " SGD with momentum"
+ ],
+ [
+ "Question:Which optimizer is used to optimize the model parameters?\nAnswer:",
+ " Adam Optimizer"
+ ],
+ [
+ "Question:Which optimizer is used to optimize the model parameters?\nAnswer:",
+ " RMSProp"
+ ],
+ [
+ "Question:Which optimizer is used to optimize the model parameters?\nAnswer:",
+ " AdaGrad"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.31170654296875,
+ false
+ ]
+ ],
+ [
+ [
+ -5.3426055908203125,
+ false
+ ]
+ ],
+ [
+ [
+ -7.934563636779785,
+ false
+ ]
+ ],
+ [
+ [
+ -9.722707748413086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.31170654296875,
+ false
+ ],
+ [
+ -5.3426055908203125,
+ false
+ ],
+ [
+ -7.934563636779785,
+ false
+ ],
+ [
+ -9.722707748413086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "92bffbd3914d4baa00750110dfc81d6a3872c735eb4ad90041cadcdad0acb517",
+ "prompt_hash": "57f4207bf268aed9b8544b57c46fce191db3a2e7fcf6f2909282f3f48f230172",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "What frame resolution and GPU are mentioned for training a 300-frame sequence?",
+ "choices": [
+ "720p on RTX 3090",
+ "1080p on Tesla V100",
+ "960×720 on A100",
+ "640×480 on T4"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What frame resolution and GPU are mentioned for training a 300-frame sequence?\nAnswer:",
+ " 720p on RTX 3090"
+ ],
+ [
+ "Question:What frame resolution and GPU are mentioned for training a 300-frame sequence?\nAnswer:",
+ " 1080p on Tesla V100"
+ ],
+ [
+ "Question:What frame resolution and GPU are mentioned for training a 300-frame sequence?\nAnswer:",
+ " 960×720 on A100"
+ ],
+ [
+ "Question:What frame resolution and GPU are mentioned for training a 300-frame sequence?\nAnswer:",
+ " 640×480 on T4"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.086414337158203,
+ false
+ ]
+ ],
+ [
+ [
+ -19.665401458740234,
+ false
+ ]
+ ],
+ [
+ [
+ -20.820384979248047,
+ false
+ ]
+ ],
+ [
+ [
+ -22.602657318115234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.086414337158203,
+ false
+ ],
+ [
+ -19.665401458740234,
+ false
+ ],
+ [
+ -20.820384979248047,
+ false
+ ],
+ [
+ -22.602657318115234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c3733ea2e70f8366500e2478d3ace4710fcc86588a565cfcc3b92b76e836e154",
+ "prompt_hash": "b0d8157bc04fad12b6a8e0e7582c6e21007152788beeec7dcdaaacab10e65098",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the total number of multiple-choice questions included in the benchmark?",
+ "choices": [
+ "5,412",
+ "6,678",
+ "7,235",
+ "4,950"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the total number of multiple-choice questions included in the benchmark?\nAnswer:",
+ " 5,412"
+ ],
+ [
+ "Question:What is the total number of multiple-choice questions included in the benchmark?\nAnswer:",
+ " 6,678"
+ ],
+ [
+ "Question:What is the total number of multiple-choice questions included in the benchmark?\nAnswer:",
+ " 7,235"
+ ],
+ [
+ "Question:What is the total number of multiple-choice questions included in the benchmark?\nAnswer:",
+ " 4,950"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.877378463745117,
+ false
+ ]
+ ],
+ [
+ [
+ -16.803268432617188,
+ false
+ ]
+ ],
+ [
+ [
+ -17.370201110839844,
+ false
+ ]
+ ],
+ [
+ [
+ -15.794563293457031,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.877378463745117,
+ false
+ ],
+ [
+ -16.803268432617188,
+ false
+ ],
+ [
+ -17.370201110839844,
+ false
+ ],
+ [
+ -15.794563293457031,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9eefefe26ce7dd38d28a8386f844287bf0dda24eba0aedec041f58140a26cbe1",
+ "prompt_hash": "3b8576c5b0841afdce8201794aafedd83491500189ebb11a38c439c1477b1e62",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "Which task was introduced to address the issue of single-frame bias in video understanding metrics?",
+ "choices": [
+ "Sequential Tracking",
+ "Referring Reasoning",
+ "Contextual Retrieval",
+ "Visual Summarization"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which task was introduced to address the issue of single-frame bias in video understanding metrics?\nAnswer:",
+ " Sequential Tracking"
+ ],
+ [
+ "Question:Which task was introduced to address the issue of single-frame bias in video understanding metrics?\nAnswer:",
+ " Referring Reasoning"
+ ],
+ [
+ "Question:Which task was introduced to address the issue of single-frame bias in video understanding metrics?\nAnswer:",
+ " Contextual Retrieval"
+ ],
+ [
+ "Question:Which task was introduced to address the issue of single-frame bias in video understanding metrics?\nAnswer:",
+ " Visual Summarization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.925914764404297,
+ false
+ ]
+ ],
+ [
+ [
+ -22.508527755737305,
+ false
+ ]
+ ],
+ [
+ [
+ -18.34051513671875,
+ false
+ ]
+ ],
+ [
+ [
+ -18.849546432495117,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.925914764404297,
+ false
+ ],
+ [
+ -22.508527755737305,
+ false
+ ],
+ [
+ -18.34051513671875,
+ false
+ ],
+ [
+ -18.849546432495117,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0a74c55939e0ee0aef7576105a07b339281c8eebc617f9de10a2ddfc75391010",
+ "prompt_hash": "8aca42956d2d1211359e4faefbe33be74f7456a7be81b279e4d0a92537f6b520",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "How many progressive duration groups of videos are included in the benchmark?",
+ "choices": [
+ "Three",
+ "Four",
+ "Five",
+ "Six"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many progressive duration groups of videos are included in the benchmark?\nAnswer:",
+ " Three"
+ ],
+ [
+ "Question:How many progressive duration groups of videos are included in the benchmark?\nAnswer:",
+ " Four"
+ ],
+ [
+ "Question:How many progressive duration groups of videos are included in the benchmark?\nAnswer:",
+ " Five"
+ ],
+ [
+ "Question:How many progressive duration groups of videos are included in the benchmark?\nAnswer:",
+ " Six"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.014612197875977,
+ false
+ ]
+ ],
+ [
+ [
+ -5.665154933929443,
+ false
+ ]
+ ],
+ [
+ [
+ -5.873777389526367,
+ false
+ ]
+ ],
+ [
+ [
+ -6.582821846008301,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.014612197875977,
+ false
+ ],
+ [
+ -5.665154933929443,
+ false
+ ],
+ [
+ -5.873777389526367,
+ false
+ ],
+ [
+ -6.582821846008301,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4ddb076c5236ac1d85766f7f715661e83a2f723b33a91965d1114ece439c600e",
+ "prompt_hash": "75c18a03dceda279b144d6687ea54a3c5c0de57431fa510734136918a426ca79",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "Which open-source model faced severe accuracy degradation when processing 64 input frames?",
+ "choices": [
+ "Idefics2",
+ "GPT-4o",
+ "Gemini-1.5-Pro",
+ "Phi-3-Vision-Instruct"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which open-source model faced severe accuracy degradation when processing 64 input frames?\nAnswer:",
+ " Idefics2"
+ ],
+ [
+ "Question:Which open-source model faced severe accuracy degradation when processing 64 input frames?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which open-source model faced severe accuracy degradation when processing 64 input frames?\nAnswer:",
+ " Gemini-1.5-Pro"
+ ],
+ [
+ "Question:Which open-source model faced severe accuracy degradation when processing 64 input frames?\nAnswer:",
+ " Phi-3-Vision-Instruct"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.050100326538086,
+ false
+ ]
+ ],
+ [
+ [
+ -7.555898189544678,
+ false
+ ]
+ ],
+ [
+ [
+ -10.493349075317383,
+ false
+ ]
+ ],
+ [
+ [
+ -18.406396865844727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.050100326538086,
+ false
+ ],
+ [
+ -7.555898189544678,
+ false
+ ],
+ [
+ -10.493349075317383,
+ false
+ ],
+ [
+ -18.406396865844727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "72ecfa49ab93693acca940d13fad99666b07e54dae8fbeee5b8695b848f68432",
+ "prompt_hash": "a319e9c070d1ffd3109994fa4594e8e66c9c932cf2ae4db25fe0b41536899ab4",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "What is the average length of a question in the benchmark?",
+ "choices": [
+ "27.15 words",
+ "35.82 words",
+ "43.53 words",
+ "50.20 words"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the average length of a question in the benchmark?\nAnswer:",
+ " 27.15 words"
+ ],
+ [
+ "Question:What is the average length of a question in the benchmark?\nAnswer:",
+ " 35.82 words"
+ ],
+ [
+ "Question:What is the average length of a question in the benchmark?\nAnswer:",
+ " 43.53 words"
+ ],
+ [
+ "Question:What is the average length of a question in the benchmark?\nAnswer:",
+ " 50.20 words"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.660734176635742,
+ false
+ ]
+ ],
+ [
+ [
+ -15.121524810791016,
+ false
+ ]
+ ],
+ [
+ [
+ -15.357699394226074,
+ false
+ ]
+ ],
+ [
+ [
+ -17.811992645263672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.660734176635742,
+ false
+ ],
+ [
+ -15.121524810791016,
+ false
+ ],
+ [
+ -15.357699394226074,
+ false
+ ],
+ [
+ -17.811992645263672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f6ea5f4b873d21defd6d4012ffe39fc0fe8c93d275d7f6bbd55ca96239576e3a",
+ "prompt_hash": "085e2913fade8b060f9c9f02a85206298f94060133217cab224c91b002010bfc",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What does the RISE algorithm stand for?",
+ "choices": [
+ "Recursive Introspection for Self-Improvement",
+ "Reinforced Inference for Sequential Evaluation",
+ "Reward-based Incremental Sampling Enhancement",
+ "Regression Induced System Evaluation"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What does the RISE algorithm stand for?\nAnswer:",
+ " Recursive Introspection for Self-Improvement"
+ ],
+ [
+ "Question:What does the RISE algorithm stand for?\nAnswer:",
+ " Reinforced Inference for Sequential Evaluation"
+ ],
+ [
+ "Question:What does the RISE algorithm stand for?\nAnswer:",
+ " Reward-based Incremental Sampling Enhancement"
+ ],
+ [
+ "Question:What does the RISE algorithm stand for?\nAnswer:",
+ " Regression Induced System Evaluation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.053543090820312,
+ false
+ ]
+ ],
+ [
+ [
+ -22.69965362548828,
+ false
+ ]
+ ],
+ [
+ [
+ -24.5802059173584,
+ false
+ ]
+ ],
+ [
+ [
+ -22.592044830322266,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.053543090820312,
+ false
+ ],
+ [
+ -22.69965362548828,
+ false
+ ],
+ [
+ -24.5802059173584,
+ false
+ ],
+ [
+ -22.592044830322266,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "447cedc70ee958e43686d7c7a4918f12ce062181a998804a729c7fd95aad7a1b",
+ "prompt_hash": "56a91389443b53bba1b14ecaa15c800a07be68f9373e6a155dc743fcc90e78d1",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which dataset showed a 23.9% improvement for Mistral-7B when using RISE over five turns?",
+ "choices": [
+ "SVAMP",
+ "GSM8K",
+ "MATH",
+ "ARC"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset showed a 23.9% improvement for Mistral-7B when using RISE over five turns?\nAnswer:",
+ " SVAMP"
+ ],
+ [
+ "Question:Which dataset showed a 23.9% improvement for Mistral-7B when using RISE over five turns?\nAnswer:",
+ " GSM8K"
+ ],
+ [
+ "Question:Which dataset showed a 23.9% improvement for Mistral-7B when using RISE over five turns?\nAnswer:",
+ " MATH"
+ ],
+ [
+ "Question:Which dataset showed a 23.9% improvement for Mistral-7B when using RISE over five turns?\nAnswer:",
+ " ARC"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.474897384643555,
+ false
+ ]
+ ],
+ [
+ [
+ -6.9842848777771,
+ false
+ ]
+ ],
+ [
+ [
+ -8.997828483581543,
+ false
+ ]
+ ],
+ [
+ [
+ -8.794258117675781,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.474897384643555,
+ false
+ ],
+ [
+ -6.9842848777771,
+ false
+ ],
+ [
+ -8.997828483581543,
+ false
+ ],
+ [
+ -8.794258117675781,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "68b8dc73dcb9f561ec8b17b5ec220eb99c6f176dc768fce36d551a221af66114",
+ "prompt_hash": "47c072b1d8d8e66607250531175d735cd6aadaaeb74c1a9e232137cdcc37b57f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "What is the purpose of the 'knowledge boosting' stage in RISE training?",
+ "choices": [
+ "To improve model performance on out-of-distribution data",
+ "To pre-train the model on diverse internet-scale corpora",
+ "To teach response style and instruction-following before on-policy rollouts",
+ "To reduce computational costs during reinforcement learning"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of the 'knowledge boosting' stage in RISE training?\nAnswer:",
+ " To improve model performance on out-of-distribution data"
+ ],
+ [
+ "Question:What is the purpose of the 'knowledge boosting' stage in RISE training?\nAnswer:",
+ " To pre-train the model on diverse internet-scale corpora"
+ ],
+ [
+ "Question:What is the purpose of the 'knowledge boosting' stage in RISE training?\nAnswer:",
+ " To teach response style and instruction-following before on-policy rollouts"
+ ],
+ [
+ "Question:What is the purpose of the 'knowledge boosting' stage in RISE training?\nAnswer:",
+ " To reduce computational costs during reinforcement learning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.200429916381836,
+ false
+ ]
+ ],
+ [
+ [
+ -32.36049270629883,
+ false
+ ]
+ ],
+ [
+ [
+ -58.351783752441406,
+ false
+ ]
+ ],
+ [
+ [
+ -25.660242080688477,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.200429916381836,
+ false
+ ],
+ [
+ -32.36049270629883,
+ false
+ ],
+ [
+ -58.351783752441406,
+ false
+ ],
+ [
+ -25.660242080688477,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "691fc113bfe9da94b48453014c9d0e8e30f5ad527803e97f11a8a3d27eca1efd",
+ "prompt_hash": "e53d5e7ebff513231466da7a62f31d10ec7f1751bb32499edc7d8f04afc51efb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "How does RISE decide the final response when running 'without oracle' mode at inference time?",
+ "choices": [
+ "It selects the response with the highest confidence score",
+ "It uses majority voting over candidate outputs from different turns",
+ "It always chooses the response from the last turn",
+ "It queries a stronger external model for validation"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How does RISE decide the final response when running 'without oracle' mode at inference time?\nAnswer:",
+ " It selects the response with the highest confidence score"
+ ],
+ [
+ "Question:How does RISE decide the final response when running 'without oracle' mode at inference time?\nAnswer:",
+ " It uses majority voting over candidate outputs from different turns"
+ ],
+ [
+ "Question:How does RISE decide the final response when running 'without oracle' mode at inference time?\nAnswer:",
+ " It always chooses the response from the last turn"
+ ],
+ [
+ "Question:How does RISE decide the final response when running 'without oracle' mode at inference time?\nAnswer:",
+ " It queries a stronger external model for validation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.699235916137695,
+ false
+ ]
+ ],
+ [
+ [
+ -37.79487609863281,
+ false
+ ]
+ ],
+ [
+ [
+ -23.1787109375,
+ false
+ ]
+ ],
+ [
+ [
+ -37.22762680053711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.699235916137695,
+ false
+ ],
+ [
+ -37.79487609863281,
+ false
+ ],
+ [
+ -23.1787109375,
+ false
+ ],
+ [
+ -37.22762680053711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "49446d10ea114fe85f650e62cbe696e3ea6acf8592931f6f15b48a6e90ac48d8",
+ "prompt_hash": "189a98bbc8bce5e6af01dfbae399f1fe09d20c3d95d2bb4c3740f2334aa23892",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "Which method did RISE outperform by solving problems unsolved by larger budgets at the first turn?",
+ "choices": [
+ "Self-Refine",
+ "GLoRE",
+ "Parallel pass@B sampling",
+ "Chain-of-Thought prompting"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which method did RISE outperform by solving problems unsolved by larger budgets at the first turn?\nAnswer:",
+ " Self-Refine"
+ ],
+ [
+ "Question:Which method did RISE outperform by solving problems unsolved by larger budgets at the first turn?\nAnswer:",
+ " GLoRE"
+ ],
+ [
+ "Question:Which method did RISE outperform by solving problems unsolved by larger budgets at the first turn?\nAnswer:",
+ " Parallel pass@B sampling"
+ ],
+ [
+ "Question:Which method did RISE outperform by solving problems unsolved by larger budgets at the first turn?\nAnswer:",
+ " Chain-of-Thought prompting"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.033670425415039,
+ false
+ ]
+ ],
+ [
+ [
+ -17.320749282836914,
+ false
+ ]
+ ],
+ [
+ [
+ -44.752960205078125,
+ false
+ ]
+ ],
+ [
+ [
+ -16.29299545288086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.033670425415039,
+ false
+ ],
+ [
+ -17.320749282836914,
+ false
+ ],
+ [
+ -44.752960205078125,
+ false
+ ],
+ [
+ -16.29299545288086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5be7b9aac29cff178ab3bfa0c1f27fedbcbdf9a6e094059fa58fed8b6f0d8b3c",
+ "prompt_hash": "ee21eb2bda8b580daea4f8db981b89e8aca39a5c8ffdf31bf5c5c81239103415",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What model is used as the initial seed model in the experiments?",
+ "choices": [
+ "Llama-3-8B-Instruct",
+ "Llama-2-70B-Chat",
+ "GPT-4-1106-preview",
+ "Starling-RM-34B"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What model is used as the initial seed model in the experiments?\nAnswer:",
+ " Llama-3-8B-Instruct"
+ ],
+ [
+ "Question:What model is used as the initial seed model in the experiments?\nAnswer:",
+ " Llama-2-70B-Chat"
+ ],
+ [
+ "Question:What model is used as the initial seed model in the experiments?\nAnswer:",
+ " GPT-4-1106-preview"
+ ],
+ [
+ "Question:What model is used as the initial seed model in the experiments?\nAnswer:",
+ " Starling-RM-34B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.638608932495117,
+ false
+ ]
+ ],
+ [
+ [
+ -15.421242713928223,
+ false
+ ]
+ ],
+ [
+ [
+ -9.687981605529785,
+ false
+ ]
+ ],
+ [
+ [
+ -31.80432891845703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.638608932495117,
+ false
+ ],
+ [
+ -15.421242713928223,
+ false
+ ],
+ [
+ -9.687981605529785,
+ false
+ ],
+ [
+ -31.80432891845703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "decef1964b2e2a5dd8554539fdf609f75ca52d60a5b511362d93b3606e83d977",
+ "prompt_hash": "5def577581854c72012d82f7d550508d28c90b62f0d3d9e78ebcc1de138bea1c",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "How many response variations are generated per prompt in each iteration during training?",
+ "choices": [
+ "5",
+ "7",
+ "9",
+ "11"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many response variations are generated per prompt in each iteration during training?\nAnswer:",
+ " 5"
+ ],
+ [
+ "Question:How many response variations are generated per prompt in each iteration during training?\nAnswer:",
+ " 7"
+ ],
+ [
+ "Question:How many response variations are generated per prompt in each iteration during training?\nAnswer:",
+ " 9"
+ ],
+ [
+ "Question:How many response variations are generated per prompt in each iteration during training?\nAnswer:",
+ " 11"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.11230993270874,
+ false
+ ]
+ ],
+ [
+ [
+ -6.176117420196533,
+ false
+ ]
+ ],
+ [
+ [
+ -6.593822956085205,
+ false
+ ]
+ ],
+ [
+ [
+ -7.345574378967285,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.11230993270874,
+ false
+ ],
+ [
+ -6.176117420196533,
+ false
+ ],
+ [
+ -6.593822956085205,
+ false
+ ],
+ [
+ -7.345574378967285,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5938e09b994ec80f367a369388816c68f9946c9c16ee409c43cd4c90f9b6da07",
+ "prompt_hash": "863a5b0d309f6953bac0812d35bcb80f2c0def65dfe1a0df4ace5bdc9f2e5b7f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "Which benchmark evaluates the model's ability in multi-turn conversations?",
+ "choices": [
+ "AlpacaEval 2",
+ "Arena-Hard",
+ "MT-Bench",
+ "Open Assistant"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which benchmark evaluates the model's ability in multi-turn conversations?\nAnswer:",
+ " AlpacaEval 2"
+ ],
+ [
+ "Question:Which benchmark evaluates the model's ability in multi-turn conversations?\nAnswer:",
+ " Arena-Hard"
+ ],
+ [
+ "Question:Which benchmark evaluates the model's ability in multi-turn conversations?\nAnswer:",
+ " MT-Bench"
+ ],
+ [
+ "Question:Which benchmark evaluates the model's ability in multi-turn conversations?\nAnswer:",
+ " Open Assistant"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.953899383544922,
+ false
+ ]
+ ],
+ [
+ [
+ -10.193154335021973,
+ false
+ ]
+ ],
+ [
+ [
+ -5.521928787231445,
+ false
+ ]
+ ],
+ [
+ [
+ -9.941776275634766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.953899383544922,
+ false
+ ],
+ [
+ -10.193154335021973,
+ false
+ ],
+ [
+ -5.521928787231445,
+ false
+ ],
+ [
+ -9.941776275634766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1d0b2ec747493415aa8998fb6c5d640e86cd06eaededa404995f36837b0af203",
+ "prompt_hash": "fb8092185a1e5cd834f0e4266ceac170583b388675f40a41987e3bbdc5577481",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "What was the length-controlled (LC) win rate achieved on AlpacaEval 2 after the fourth iteration of training?",
+ "choices": [
+ "22.92%",
+ "35.49%",
+ "39.44%",
+ "41.20%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was the length-controlled (LC) win rate achieved on AlpacaEval 2 after the fourth iteration of training?\nAnswer:",
+ " 22.92%"
+ ],
+ [
+ "Question:What was the length-controlled (LC) win rate achieved on AlpacaEval 2 after the fourth iteration of training?\nAnswer:",
+ " 35.49%"
+ ],
+ [
+ "Question:What was the length-controlled (LC) win rate achieved on AlpacaEval 2 after the fourth iteration of training?\nAnswer:",
+ " 39.44%"
+ ],
+ [
+ "Question:What was the length-controlled (LC) win rate achieved on AlpacaEval 2 after the fourth iteration of training?\nAnswer:",
+ " 41.20%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.45294189453125,
+ false
+ ]
+ ],
+ [
+ [
+ -16.92536163330078,
+ false
+ ]
+ ],
+ [
+ [
+ -16.5533390045166,
+ false
+ ]
+ ],
+ [
+ [
+ -16.253902435302734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.45294189453125,
+ false
+ ],
+ [
+ -16.92536163330078,
+ false
+ ],
+ [
+ -16.5533390045166,
+ false
+ ],
+ [
+ -16.253902435302734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7ebd37c8db4919b509d761fba7404258b206bf0ef716354b999a7cac85aef19b",
+ "prompt_hash": "55db4484c93ad2de95b643524b062dfe42f48efd8075611645e98ddb832df074",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "Which strong external reward model failed to improve the LC win rate in experiments?",
+ "choices": [
+ "Starling-RM-34B",
+ "Claude-Opus",
+ "SPPO",
+ "GPT-4-0314"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which strong external reward model failed to improve the LC win rate in experiments?\nAnswer:",
+ " Starling-RM-34B"
+ ],
+ [
+ "Question:Which strong external reward model failed to improve the LC win rate in experiments?\nAnswer:",
+ " Claude-Opus"
+ ],
+ [
+ "Question:Which strong external reward model failed to improve the LC win rate in experiments?\nAnswer:",
+ " SPPO"
+ ],
+ [
+ "Question:Which strong external reward model failed to improve the LC win rate in experiments?\nAnswer:",
+ " GPT-4-0314"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -33.60536193847656,
+ false
+ ]
+ ],
+ [
+ [
+ -20.415925979614258,
+ false
+ ]
+ ],
+ [
+ [
+ -15.506284713745117,
+ false
+ ]
+ ],
+ [
+ [
+ -19.35174560546875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -33.60536193847656,
+ false
+ ],
+ [
+ -20.415925979614258,
+ false
+ ],
+ [
+ -15.506284713745117,
+ false
+ ],
+ [
+ -19.35174560546875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "01506c30c1ffb5f3d34526184f0caaf6b0ac57ae5d3ef1294a5db9c7ac44b382",
+ "prompt_hash": "4a6107d70777877591a3f8886e2ef6bbc0d0830fa0869dee0cfdb68d9cf22027",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2408": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What activation function do JumpReLU SAEs use in place of the ReLU function?",
+ "choices": [
+ "Softmax",
+ "TopK",
+ "JumpReLU",
+ "Sigmoid"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What activation function do JumpReLU SAEs use in place of the ReLU function?\nAnswer:",
+ " Softmax"
+ ],
+ [
+ "Question:What activation function do JumpReLU SAEs use in place of the ReLU function?\nAnswer:",
+ " TopK"
+ ],
+ [
+ "Question:What activation function do JumpReLU SAEs use in place of the ReLU function?\nAnswer:",
+ " JumpReLU"
+ ],
+ [
+ "Question:What activation function do JumpReLU SAEs use in place of the ReLU function?\nAnswer:",
+ " Sigmoid"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.370088577270508,
+ false
+ ]
+ ],
+ [
+ [
+ -15.097153663635254,
+ false
+ ]
+ ],
+ [
+ [
+ -10.174015998840332,
+ false
+ ]
+ ],
+ [
+ [
+ -2.91923189163208,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.370088577270508,
+ false
+ ],
+ [
+ -15.097153663635254,
+ false
+ ],
+ [
+ -10.174015998840332,
+ false
+ ],
+ [
+ -2.91923189163208,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9fc664838b502e0969a0d397b3807dd078d361efa07bb02fce0d3b229d6d70eb",
+ "prompt_hash": "b541b7d775a03e2f5dffc078cc247a2493ab42c838ac3de8f3625b1bbb5734a5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "Which loss function do JumpReLU SAEs use for enforcing sparsity?",
+ "choices": [
+ "L1 norm penalty",
+ "L2 norm penalty",
+ "KL divergence",
+ "L0 sparsity penalty"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which loss function do JumpReLU SAEs use for enforcing sparsity?\nAnswer:",
+ " L1 norm penalty"
+ ],
+ [
+ "Question:Which loss function do JumpReLU SAEs use for enforcing sparsity?\nAnswer:",
+ " L2 norm penalty"
+ ],
+ [
+ "Question:Which loss function do JumpReLU SAEs use for enforcing sparsity?\nAnswer:",
+ " KL divergence"
+ ],
+ [
+ "Question:Which loss function do JumpReLU SAEs use for enforcing sparsity?\nAnswer:",
+ " L0 sparsity penalty"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.749191284179688,
+ false
+ ]
+ ],
+ [
+ [
+ -16.98282241821289,
+ false
+ ]
+ ],
+ [
+ [
+ -9.006500244140625,
+ false
+ ]
+ ],
+ [
+ [
+ -21.58685302734375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.749191284179688,
+ false
+ ],
+ [
+ -16.98282241821289,
+ false
+ ],
+ [
+ -9.006500244140625,
+ false
+ ],
+ [
+ -21.58685302734375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3083d36e417a35b7fa92a09da8aaf3ab53bba600d0297616c7530c16aab83764",
+ "prompt_hash": "d44b0a6d22d713fabb047ea2f9974b6dd36525eea409ff85bd6052fb23fb085c",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "What is the main role of the straight-through estimator (STE) in training JumpReLU SAEs?",
+ "choices": [
+ "To estimate the TopK feature indices",
+ "To avoid dead neurons during initialization",
+ "To enable training through the threshold parameter",
+ "To calculate decoder weights directly"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main role of the straight-through estimator (STE) in training JumpReLU SAEs?\nAnswer:",
+ " To estimate the TopK feature indices"
+ ],
+ [
+ "Question:What is the main role of the straight-through estimator (STE) in training JumpReLU SAEs?\nAnswer:",
+ " To avoid dead neurons during initialization"
+ ],
+ [
+ "Question:What is the main role of the straight-through estimator (STE) in training JumpReLU SAEs?\nAnswer:",
+ " To enable training through the threshold parameter"
+ ],
+ [
+ "Question:What is the main role of the straight-through estimator (STE) in training JumpReLU SAEs?\nAnswer:",
+ " To calculate decoder weights directly"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.831172943115234,
+ false
+ ]
+ ],
+ [
+ [
+ -29.019672393798828,
+ false
+ ]
+ ],
+ [
+ [
+ -32.593955993652344,
+ false
+ ]
+ ],
+ [
+ [
+ -31.319580078125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.831172943115234,
+ false
+ ],
+ [
+ -29.019672393798828,
+ false
+ ],
+ [
+ -32.593955993652344,
+ false
+ ],
+ [
+ -31.319580078125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6e057a450980431afda4f7c99a40bae2259ebd40c01007a7d3c605ba1eae3bbb",
+ "prompt_hash": "3e38d72fc777f347897440eac6491904bfa9a74477d3cd6b0c0ef9488461822f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "Compared to Gated and TopK SAEs, which of the following is an advantage of JumpReLU SAEs?",
+ "choices": [
+ "They use more auxiliary loss terms",
+ "They require partial sorting of activations",
+ "They are more efficient to train",
+ "They rely on dead feature resampling"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Compared to Gated and TopK SAEs, which of the following is an advantage of JumpReLU SAEs?\nAnswer:",
+ " They use more auxiliary loss terms"
+ ],
+ [
+ "Question:Compared to Gated and TopK SAEs, which of the following is an advantage of JumpReLU SAEs?\nAnswer:",
+ " They require partial sorting of activations"
+ ],
+ [
+ "Question:Compared to Gated and TopK SAEs, which of the following is an advantage of JumpReLU SAEs?\nAnswer:",
+ " They are more efficient to train"
+ ],
+ [
+ "Question:Compared to Gated and TopK SAEs, which of the following is an advantage of JumpReLU SAEs?\nAnswer:",
+ " They rely on dead feature resampling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.257041931152344,
+ false
+ ]
+ ],
+ [
+ [
+ -35.025230407714844,
+ false
+ ]
+ ],
+ [
+ [
+ -19.65345573425293,
+ false
+ ]
+ ],
+ [
+ [
+ -45.214271545410156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.257041931152344,
+ false
+ ],
+ [
+ -35.025230407714844,
+ false
+ ],
+ [
+ -19.65345573425293,
+ false
+ ],
+ [
+ -45.214271545410156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f27eed3312662f0cba14084f910dcc19898dade925b92cb182c54756586dc699",
+ "prompt_hash": "73c0c75bccfd2179a85934c79c1e4df44fb62f7d04764903f2332e11bdc742c1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "What is the function of the Heaviside step function in JumpReLU SAEs?",
+ "choices": [
+ "To smooth gradients for backpropagation",
+ "To normalize decoder weights",
+ "To zero out activations below a threshold",
+ "To increase model capacity"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the function of the Heaviside step function in JumpReLU SAEs?\nAnswer:",
+ " To smooth gradients for backpropagation"
+ ],
+ [
+ "Question:What is the function of the Heaviside step function in JumpReLU SAEs?\nAnswer:",
+ " To normalize decoder weights"
+ ],
+ [
+ "Question:What is the function of the Heaviside step function in JumpReLU SAEs?\nAnswer:",
+ " To zero out activations below a threshold"
+ ],
+ [
+ "Question:What is the function of the Heaviside step function in JumpReLU SAEs?\nAnswer:",
+ " To increase model capacity"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.059850692749023,
+ false
+ ]
+ ],
+ [
+ [
+ -26.03301239013672,
+ false
+ ]
+ ],
+ [
+ [
+ -21.755271911621094,
+ false
+ ]
+ ],
+ [
+ [
+ -18.161693572998047,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.059850692749023,
+ false
+ ],
+ [
+ -26.03301239013672,
+ false
+ ],
+ [
+ -21.755271911621094,
+ false
+ ],
+ [
+ -18.161693572998047,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "95fba6f112c51a73314c20365df8a022603cc6c4cbc821783a1f2033bdd519ce",
+ "prompt_hash": "8792b4fc53b183725631029120e0b33a31b36460f7a4876f205e8b0ddef5e9b0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "What is the main architectural difference between KAN and traditional MLP?",
+ "choices": [
+ "KAN uses fixed activation functions on nodes, while MLP uses learnable splines on edges",
+ "KAN uses learnable activation functions on edges, while MLP uses fixed activation functions on nodes",
+ "KAN employs convolutional layers instead of fully connected layers",
+ "KAN is trained using unsupervised learning while MLP is trained using supervised learning"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main architectural difference between KAN and traditional MLP?\nAnswer:",
+ " KAN uses fixed activation functions on nodes, while MLP uses learnable splines on edges"
+ ],
+ [
+ "Question:What is the main architectural difference between KAN and traditional MLP?\nAnswer:",
+ " KAN uses learnable activation functions on edges, while MLP uses fixed activation functions on nodes"
+ ],
+ [
+ "Question:What is the main architectural difference between KAN and traditional MLP?\nAnswer:",
+ " KAN employs convolutional layers instead of fully connected layers"
+ ],
+ [
+ "Question:What is the main architectural difference between KAN and traditional MLP?\nAnswer:",
+ " KAN is trained using unsupervised learning while MLP is trained using supervised learning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -46.42828369140625,
+ false
+ ]
+ ],
+ [
+ [
+ -34.54854202270508,
+ false
+ ]
+ ],
+ [
+ [
+ -14.264701843261719,
+ false
+ ]
+ ],
+ [
+ [
+ -24.592636108398438,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -46.42828369140625,
+ false
+ ],
+ [
+ -34.54854202270508,
+ false
+ ],
+ [
+ -14.264701843261719,
+ false
+ ],
+ [
+ -24.592636108398438,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "911fd11e4b4b821da26541f5d056b94e2bba893d69a41294b9bc51ef3ed360aa",
+ "prompt_hash": "0c8417a74421a7ad9ab39e3bcb35cba73d03b091094d707553204f4773194c3e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "What is the formula for the number of parameters in one layer of KAN?",
+ "choices": [
+ "(d_in × d_out) + d_out",
+ "(d_in × d_out) × (G + K + 3) + d_out",
+ "(d_in × d_out) × (K + 1) + G",
+ "(d_in × d_out) × G + K + d_out"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the formula for the number of parameters in one layer of KAN?\nAnswer:",
+ " (d_in × d_out) + d_out"
+ ],
+ [
+ "Question:What is the formula for the number of parameters in one layer of KAN?\nAnswer:",
+ " (d_in × d_out) × (G + K + 3) + d_out"
+ ],
+ [
+ "Question:What is the formula for the number of parameters in one layer of KAN?\nAnswer:",
+ " (d_in × d_out) × (K + 1) + G"
+ ],
+ [
+ "Question:What is the formula for the number of parameters in one layer of KAN?\nAnswer:",
+ " (d_in × d_out) × G + K + d_out"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.33420944213867,
+ false
+ ]
+ ],
+ [
+ [
+ -62.38064193725586,
+ false
+ ]
+ ],
+ [
+ [
+ -51.30956268310547,
+ false
+ ]
+ ],
+ [
+ [
+ -52.87654113769531,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.33420944213867,
+ false
+ ],
+ [
+ -62.38064193725586,
+ false
+ ],
+ [
+ -51.30956268310547,
+ false
+ ],
+ [
+ -52.87654113769531,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6daacd702e0384b76b887d3bd437cd38b9be76e1212ae8929806b70a47db4db6",
+ "prompt_hash": "6c9621501c25caaf5fe65ccccbf091ede450342dfedd95e3427774408a59a814",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "In symbolic formula representing tasks, what is the observed performance of KAN when compared to MLP under equal parameter settings?",
+ "choices": [
+ "KAN outperforms MLP on all datasets",
+ "KAN performs worse than MLP on all datasets",
+ "KAN outperforms MLP on 7 out of 8 datasets",
+ "KAN matches MLP's performance on all datasets"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In symbolic formula representing tasks, what is the observed performance of KAN when compared to MLP under equal parameter settings?\nAnswer:",
+ " KAN outperforms MLP on all datasets"
+ ],
+ [
+ "Question:In symbolic formula representing tasks, what is the observed performance of KAN when compared to MLP under equal parameter settings?\nAnswer:",
+ " KAN performs worse than MLP on all datasets"
+ ],
+ [
+ "Question:In symbolic formula representing tasks, what is the observed performance of KAN when compared to MLP under equal parameter settings?\nAnswer:",
+ " KAN outperforms MLP on 7 out of 8 datasets"
+ ],
+ [
+ "Question:In symbolic formula representing tasks, what is the observed performance of KAN when compared to MLP under equal parameter settings?\nAnswer:",
+ " KAN matches MLP's performance on all datasets"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.381976127624512,
+ false
+ ]
+ ],
+ [
+ [
+ -17.349285125732422,
+ false
+ ]
+ ],
+ [
+ [
+ -20.085693359375,
+ false
+ ]
+ ],
+ [
+ [
+ -25.82134246826172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.381976127624512,
+ false
+ ],
+ [
+ -17.349285125732422,
+ false
+ ],
+ [
+ -20.085693359375,
+ false
+ ],
+ [
+ -25.82134246826172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0422e76e7024b4c69b03f0b91afd3ee7ac85822d48f642aec7da11033312ccd2",
+ "prompt_hash": "27932ccdc73ae1363aa597199437308d54d250a9fe6c9800766248ce37794fe0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "What is the impact of using B-spline activation functions in MLP for symbolic formula representation?",
+ "choices": [
+ "It degrades performance compared to ReLU and GELU",
+ "It causes MLP to perform worse than KAN",
+ "It allows MLP to match or exceed the performance of KAN",
+ "It leads to unstable training results"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the impact of using B-spline activation functions in MLP for symbolic formula representation?\nAnswer:",
+ " It degrades performance compared to ReLU and GELU"
+ ],
+ [
+ "Question:What is the impact of using B-spline activation functions in MLP for symbolic formula representation?\nAnswer:",
+ " It causes MLP to perform worse than KAN"
+ ],
+ [
+ "Question:What is the impact of using B-spline activation functions in MLP for symbolic formula representation?\nAnswer:",
+ " It allows MLP to match or exceed the performance of KAN"
+ ],
+ [
+ "Question:What is the impact of using B-spline activation functions in MLP for symbolic formula representation?\nAnswer:",
+ " It leads to unstable training results"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.361316680908203,
+ false
+ ]
+ ],
+ [
+ [
+ -32.22442626953125,
+ false
+ ]
+ ],
+ [
+ [
+ -33.5744743347168,
+ false
+ ]
+ ],
+ [
+ [
+ -22.515552520751953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.361316680908203,
+ false
+ ],
+ [
+ -32.22442626953125,
+ false
+ ],
+ [
+ -33.5744743347168,
+ false
+ ],
+ [
+ -22.515552520751953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5819bef38b6c4a8aedafc0779016465827c41c35096c1de0f338950589d288c0",
+ "prompt_hash": "edb092d62713dc9bf15940bb778ea24bef9a4af3cd8757d7028acfdcf1d11dbf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "In continual learning experiments on MNIST, what was the key difference between KAN and MLP?",
+ "choices": [
+ "KAN exhibited better retention on earlier tasks than MLP",
+ "MLP's accuracy dropped to zero on all tasks",
+ "KAN's accuracy dropped to zero on the first and second tasks",
+ "Both models achieved similar performance on all tasks"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In continual learning experiments on MNIST, what was the key difference between KAN and MLP?\nAnswer:",
+ " KAN exhibited better retention on earlier tasks than MLP"
+ ],
+ [
+ "Question:In continual learning experiments on MNIST, what was the key difference between KAN and MLP?\nAnswer:",
+ " MLP's accuracy dropped to zero on all tasks"
+ ],
+ [
+ "Question:In continual learning experiments on MNIST, what was the key difference between KAN and MLP?\nAnswer:",
+ " KAN's accuracy dropped to zero on the first and second tasks"
+ ],
+ [
+ "Question:In continual learning experiments on MNIST, what was the key difference between KAN and MLP?\nAnswer:",
+ " Both models achieved similar performance on all tasks"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.27310562133789,
+ false
+ ]
+ ],
+ [
+ [
+ -35.415992736816406,
+ false
+ ]
+ ],
+ [
+ [
+ -39.42005157470703,
+ false
+ ]
+ ],
+ [
+ [
+ -25.61410140991211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.27310562133789,
+ false
+ ],
+ [
+ -35.415992736816406,
+ false
+ ],
+ [
+ -39.42005157470703,
+ false
+ ],
+ [
+ -25.61410140991211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7e145678f19dd1a4b83d91cb268d1242b9e4f1b1dc845419014afacca59518d4",
+ "prompt_hash": "16c3f9f67701a26d194a004914d00521cc41f1bc6aea494b53e38fa8293ea555",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What percentage of the world population is estimated to carry a location sensor due to smartphone ownership?",
+ "choices": [
+ "65%",
+ "70%",
+ "85%",
+ "90%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What percentage of the world population is estimated to carry a location sensor due to smartphone ownership?\nAnswer:",
+ " 65%"
+ ],
+ [
+ "Question:What percentage of the world population is estimated to carry a location sensor due to smartphone ownership?\nAnswer:",
+ " 70%"
+ ],
+ [
+ "Question:What percentage of the world population is estimated to carry a location sensor due to smartphone ownership?\nAnswer:",
+ " 85%"
+ ],
+ [
+ "Question:What percentage of the world population is estimated to carry a location sensor due to smartphone ownership?\nAnswer:",
+ " 90%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.196426391601562,
+ false
+ ]
+ ],
+ [
+ [
+ -10.125539779663086,
+ false
+ ]
+ ],
+ [
+ [
+ -11.262310028076172,
+ false
+ ]
+ ],
+ [
+ [
+ -10.178831100463867,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.196426391601562,
+ false
+ ],
+ [
+ -10.125539779663086,
+ false
+ ],
+ [
+ -11.262310028076172,
+ false
+ ],
+ [
+ -10.178831100463867,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1141f4d522435d88a7e99c842d874368792cc64ef497e76fadc94e22760ea1d1",
+ "prompt_hash": "af6926ce5c08968af4aef7cc9ae47432a9649e3156aa85fae74a2b1c68a3004c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "Which type of cells in the brain encode regional boundaries in spatial memory?",
+ "choices": [
+ "Place cells",
+ "Border cells",
+ "Grid cells",
+ "Goal direction cells"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which type of cells in the brain encode regional boundaries in spatial memory?\nAnswer:",
+ " Place cells"
+ ],
+ [
+ "Question:Which type of cells in the brain encode regional boundaries in spatial memory?\nAnswer:",
+ " Border cells"
+ ],
+ [
+ "Question:Which type of cells in the brain encode regional boundaries in spatial memory?\nAnswer:",
+ " Grid cells"
+ ],
+ [
+ "Question:Which type of cells in the brain encode regional boundaries in spatial memory?\nAnswer:",
+ " Goal direction cells"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.464567184448242,
+ false
+ ]
+ ],
+ [
+ [
+ -12.598109245300293,
+ false
+ ]
+ ],
+ [
+ [
+ -10.90217399597168,
+ false
+ ]
+ ],
+ [
+ [
+ -22.165721893310547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.464567184448242,
+ false
+ ],
+ [
+ -12.598109245300293,
+ false
+ ],
+ [
+ -10.90217399597168,
+ false
+ ],
+ [
+ -22.165721893310547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fbcbb23568e5ca42e2399aa75ebcd4d5ac6bad4d1546255ebf5e1d4c249a04ef",
+ "prompt_hash": "8916e785d3289e19cee658505debe89b3d67ae8e1d4274f3d30de8a64c39cbc7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "Which five elements constitute the perceptions of cities in Kevin Lynch’s framework?",
+ "choices": [
+ "Paths, zones, directions, nodes, views",
+ "Landmarks, borders, areas, paths, cues",
+ "Edges, nodes, landmarks, regions, paths",
+ "Streets, plazas, edges, centers, directions"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which five elements constitute the perceptions of cities in Kevin Lynch’s framework?\nAnswer:",
+ " Paths, zones, directions, nodes, views"
+ ],
+ [
+ "Question:Which five elements constitute the perceptions of cities in Kevin Lynch’s framework?\nAnswer:",
+ " Landmarks, borders, areas, paths, cues"
+ ],
+ [
+ "Question:Which five elements constitute the perceptions of cities in Kevin Lynch’s framework?\nAnswer:",
+ " Edges, nodes, landmarks, regions, paths"
+ ],
+ [
+ "Question:Which five elements constitute the perceptions of cities in Kevin Lynch’s framework?\nAnswer:",
+ " Streets, plazas, edges, centers, directions"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -44.72914505004883,
+ false
+ ]
+ ],
+ [
+ [
+ -50.86505889892578,
+ false
+ ]
+ ],
+ [
+ [
+ -42.66518020629883,
+ false
+ ]
+ ],
+ [
+ [
+ -45.75241470336914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -44.72914505004883,
+ false
+ ],
+ [
+ -50.86505889892578,
+ false
+ ],
+ [
+ -42.66518020629883,
+ false
+ ],
+ [
+ -45.75241470336914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "79a4226348287d8cfd75ea3ab13ab54f5720f434c1a1ce9a3907d0bea4e1be4e",
+ "prompt_hash": "a76f1a1be672cf9a876ede967bb11db4dcdfb132b57f0ddb98837b99a000de9e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "What proportion of mobile phone subscriptions per 100 people was recorded in high-income countries in 2020?",
+ "choices": [
+ "59",
+ "85",
+ "100",
+ "122"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What proportion of mobile phone subscriptions per 100 people was recorded in high-income countries in 2020?\nAnswer:",
+ " 59"
+ ],
+ [
+ "Question:What proportion of mobile phone subscriptions per 100 people was recorded in high-income countries in 2020?\nAnswer:",
+ " 85"
+ ],
+ [
+ "Question:What proportion of mobile phone subscriptions per 100 people was recorded in high-income countries in 2020?\nAnswer:",
+ " 100"
+ ],
+ [
+ "Question:What proportion of mobile phone subscriptions per 100 people was recorded in high-income countries in 2020?\nAnswer:",
+ " 122"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.109789848327637,
+ false
+ ]
+ ],
+ [
+ [
+ -7.487434387207031,
+ false
+ ]
+ ],
+ [
+ [
+ -7.320727348327637,
+ false
+ ]
+ ],
+ [
+ [
+ -9.849771499633789,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.109789848327637,
+ false
+ ],
+ [
+ -7.487434387207031,
+ false
+ ],
+ [
+ -7.320727348327637,
+ false
+ ],
+ [
+ -9.849771499633789,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "515273aa9ee0792dc3371cff6d2cb2b7c54d4b91ed4d9bba6aab772d426428b0",
+ "prompt_hash": "769fc9a81750bd9200d69d2df3de1d5c2c66edbbab6a6daac4bcc0e912cd9a1a",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "Which AI architectures are currently being investigated for modeling individual trajectories?",
+ "choices": [
+ "Transformer networks",
+ "Decision trees",
+ "Naive Bayes classifiers",
+ "Support vector machines"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which AI architectures are currently being investigated for modeling individual trajectories?\nAnswer:",
+ " Transformer networks"
+ ],
+ [
+ "Question:Which AI architectures are currently being investigated for modeling individual trajectories?\nAnswer:",
+ " Decision trees"
+ ],
+ [
+ "Question:Which AI architectures are currently being investigated for modeling individual trajectories?\nAnswer:",
+ " Naive Bayes classifiers"
+ ],
+ [
+ "Question:Which AI architectures are currently being investigated for modeling individual trajectories?\nAnswer:",
+ " Support vector machines"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.995979309082031,
+ false
+ ]
+ ],
+ [
+ [
+ -9.45278549194336,
+ false
+ ]
+ ],
+ [
+ [
+ -18.51933479309082,
+ false
+ ]
+ ],
+ [
+ [
+ -16.56319808959961,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.995979309082031,
+ false
+ ],
+ [
+ -9.45278549194336,
+ false
+ ],
+ [
+ -18.51933479309082,
+ false
+ ],
+ [
+ -16.56319808959961,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "475ef1d0e01261c4e570972e3e9e62387d7a1ec4d652bc497728c5a0ae2edc72",
+ "prompt_hash": "9d6e1d74a7034601fd57fc7d31c8595cfd9c915813ecb87f2766abdf316baa48",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What model is used as the base language model in the revision model experiments?",
+ "choices": [
+ "GPT-4",
+ "Gemini",
+ "PaLM 2-S*",
+ "DeepSeekMath"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What model is used as the base language model in the revision model experiments?\nAnswer:",
+ " GPT-4"
+ ],
+ [
+ "Question:What model is used as the base language model in the revision model experiments?\nAnswer:",
+ " Gemini"
+ ],
+ [
+ "Question:What model is used as the base language model in the revision model experiments?\nAnswer:",
+ " PaLM 2-S*"
+ ],
+ [
+ "Question:What model is used as the base language model in the revision model experiments?\nAnswer:",
+ " DeepSeekMath"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.3542022705078125,
+ false
+ ]
+ ],
+ [
+ [
+ -7.10027551651001,
+ false
+ ]
+ ],
+ [
+ [
+ -22.711105346679688,
+ false
+ ]
+ ],
+ [
+ [
+ -8.928313255310059,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.3542022705078125,
+ false
+ ],
+ [
+ -7.10027551651001,
+ false
+ ],
+ [
+ -22.711105346679688,
+ false
+ ],
+ [
+ -8.928313255310059,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8337c7e84c1d80f0359656a5652ee2eccec31324c1a601d8f001f21c3d6eb339",
+ "prompt_hash": "8b451711454ba8e6bdddaeb09477f1dfab62d3a1213412ba92e032097ccd54eb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "What optimizer is used to train the PRM model?",
+ "choices": [
+ "SGD",
+ "Adam",
+ "RMSProp",
+ "AdamW"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What optimizer is used to train the PRM model?\nAnswer:",
+ " SGD"
+ ],
+ [
+ "Question:What optimizer is used to train the PRM model?\nAnswer:",
+ " Adam"
+ ],
+ [
+ "Question:What optimizer is used to train the PRM model?\nAnswer:",
+ " RMSProp"
+ ],
+ [
+ "Question:What optimizer is used to train the PRM model?\nAnswer:",
+ " AdamW"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.562948226928711,
+ false
+ ]
+ ],
+ [
+ [
+ -3.0958411693573,
+ false
+ ]
+ ],
+ [
+ [
+ -7.73266077041626,
+ false
+ ]
+ ],
+ [
+ [
+ -6.134220123291016,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.562948226928711,
+ false
+ ],
+ [
+ -3.0958411693573,
+ false
+ ],
+ [
+ -7.73266077041626,
+ false
+ ],
+ [
+ -6.134220123291016,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "51df039bbc085148d23b1cdb96c6980b12dc391a8c701d0a0f90203d7bdaf97d",
+ "prompt_hash": "d3ceb3491c7b106b1ac9831e2ac891743f9610880eaf5e54e5640aedae1c7beb",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "What aggregation strategy is found to perform best when aggregating PRM per-step scores?",
+ "choices": [
+ "Min",
+ "Product",
+ "Last",
+ "Average"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What aggregation strategy is found to perform best when aggregating PRM per-step scores?\nAnswer:",
+ " Min"
+ ],
+ [
+ "Question:What aggregation strategy is found to perform best when aggregating PRM per-step scores?\nAnswer:",
+ " Product"
+ ],
+ [
+ "Question:What aggregation strategy is found to perform best when aggregating PRM per-step scores?\nAnswer:",
+ " Last"
+ ],
+ [
+ "Question:What aggregation strategy is found to perform best when aggregating PRM per-step scores?\nAnswer:",
+ " Average"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.221947193145752,
+ false
+ ]
+ ],
+ [
+ [
+ -12.822408676147461,
+ false
+ ]
+ ],
+ [
+ [
+ -9.58028793334961,
+ false
+ ]
+ ],
+ [
+ [
+ -5.567903518676758,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.221947193145752,
+ false
+ ],
+ [
+ -12.822408676147461,
+ false
+ ],
+ [
+ -9.58028793334961,
+ false
+ ],
+ [
+ -5.567903518676758,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a2cca9fe75f490b9d2c160579dcc2cbc475bd78c0212f3a1262c0b35e1d734e4",
+ "prompt_hash": "a26d398514ea5f1ad9c41d45ab6110045960417a6404f3537fd8ad8e0be9af26",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "How many revision trajectories are generated per question in the ReST^EM experiment?",
+ "choices": [
+ "16",
+ "32",
+ "64",
+ "128"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many revision trajectories are generated per question in the ReST^EM experiment?\nAnswer:",
+ " 16"
+ ],
+ [
+ "Question:How many revision trajectories are generated per question in the ReST^EM experiment?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:How many revision trajectories are generated per question in the ReST^EM experiment?\nAnswer:",
+ " 64"
+ ],
+ [
+ "Question:How many revision trajectories are generated per question in the ReST^EM experiment?\nAnswer:",
+ " 128"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.620156288146973,
+ false
+ ]
+ ],
+ [
+ [
+ -5.936687469482422,
+ false
+ ]
+ ],
+ [
+ [
+ -7.073380470275879,
+ false
+ ]
+ ],
+ [
+ [
+ -8.123558044433594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.620156288146973,
+ false
+ ],
+ [
+ -5.936687469482422,
+ false
+ ],
+ [
+ -7.073380470275879,
+ false
+ ],
+ [
+ -8.123558044433594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "25a48f5278cf30831b8fcc9459e68c0629abecb992d2ad92897f60dbb567c294",
+ "prompt_hash": "76fced7a6d9d02e3bc0d5d3a95f27d27dff4ed7aa83814c3d31253d98376feba",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "What is used as the final answer selection method for majority voting in revision experiments?",
+ "choices": [
+ "Best-of-N weighted within each chain only",
+ "Majority voting across all trajectories at once",
+ "Greedy selection from last revision",
+ "Averaging PRM scores over revisions"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is used as the final answer selection method for majority voting in revision experiments?\nAnswer:",
+ " Best-of-N weighted within each chain only"
+ ],
+ [
+ "Question:What is used as the final answer selection method for majority voting in revision experiments?\nAnswer:",
+ " Majority voting across all trajectories at once"
+ ],
+ [
+ "Question:What is used as the final answer selection method for majority voting in revision experiments?\nAnswer:",
+ " Greedy selection from last revision"
+ ],
+ [
+ "Question:What is used as the final answer selection method for majority voting in revision experiments?\nAnswer:",
+ " Averaging PRM scores over revisions"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -50.39833068847656,
+ false
+ ]
+ ],
+ [
+ [
+ -38.51416778564453,
+ false
+ ]
+ ],
+ [
+ [
+ -28.31541633605957,
+ false
+ ]
+ ],
+ [
+ [
+ -37.91179275512695,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -50.39833068847656,
+ false
+ ],
+ [
+ -38.51416778564453,
+ false
+ ],
+ [
+ -28.31541633605957,
+ false
+ ],
+ [
+ -37.91179275512695,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32cec6c9dac45cdbd7b4ae2ff91380b2948758777d6d00398cf5fec3dc69ca7a",
+ "prompt_hash": "c252151d86183b34e325f3f2a07d726cb0f9c50eae68c43ccc1c5f589dd497f8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What is the image resolution supported by MiniCPM-V 2.0 and MiniCPM-Llama3-V 2.5?",
+ "choices": [
+ "448 × 448",
+ "1024 × 1024",
+ "1344 × 1344",
+ "2048 × 2048"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the image resolution supported by MiniCPM-V 2.0 and MiniCPM-Llama3-V 2.5?\nAnswer:",
+ " 448 × 448"
+ ],
+ [
+ "Question:What is the image resolution supported by MiniCPM-V 2.0 and MiniCPM-Llama3-V 2.5?\nAnswer:",
+ " 1024 × 1024"
+ ],
+ [
+ "Question:What is the image resolution supported by MiniCPM-V 2.0 and MiniCPM-Llama3-V 2.5?\nAnswer:",
+ " 1344 × 1344"
+ ],
+ [
+ "Question:What is the image resolution supported by MiniCPM-V 2.0 and MiniCPM-Llama3-V 2.5?\nAnswer:",
+ " 2048 × 2048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.775908470153809,
+ false
+ ]
+ ],
+ [
+ [
+ -8.181621551513672,
+ false
+ ]
+ ],
+ [
+ [
+ -16.271177291870117,
+ false
+ ]
+ ],
+ [
+ [
+ -9.781907081604004,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.775908470153809,
+ false
+ ],
+ [
+ -8.181621551513672,
+ false
+ ],
+ [
+ -16.271177291870117,
+ false
+ ],
+ [
+ -9.781907081604004,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "82090db10931345cca27913e7f38d4bfff7672f3fce02e9017bce5f71b0cdecd",
+ "prompt_hash": "330f53849fa0a8ddf62d3e07304633ea021f4b8ae15e19c127f3ccce591f8140",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "Which model in the MiniCPM-V series uses Llama3-Instruct 8B as its base LLM?",
+ "choices": [
+ "MiniCPM-V 1.0",
+ "MiniCPM-V 2.0",
+ "MiniCPM-Llama3-V 2.5",
+ "MiniCPM-Gemma 2.0"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model in the MiniCPM-V series uses Llama3-Instruct 8B as its base LLM?\nAnswer:",
+ " MiniCPM-V 1.0"
+ ],
+ [
+ "Question:Which model in the MiniCPM-V series uses Llama3-Instruct 8B as its base LLM?\nAnswer:",
+ " MiniCPM-V 2.0"
+ ],
+ [
+ "Question:Which model in the MiniCPM-V series uses Llama3-Instruct 8B as its base LLM?\nAnswer:",
+ " MiniCPM-Llama3-V 2.5"
+ ],
+ [
+ "Question:Which model in the MiniCPM-V series uses Llama3-Instruct 8B as its base LLM?\nAnswer:",
+ " MiniCPM-Gemma 2.0"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.62120246887207,
+ false
+ ]
+ ],
+ [
+ [
+ -9.776691436767578,
+ false
+ ]
+ ],
+ [
+ [
+ -20.5820255279541,
+ false
+ ]
+ ],
+ [
+ [
+ -21.101959228515625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.62120246887207,
+ false
+ ],
+ [
+ -9.776691436767578,
+ false
+ ],
+ [
+ -20.5820255279541,
+ false
+ ],
+ [
+ -21.101959228515625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "85bd1e157ef3f4bd174f5747f899fc2ec436766a522f5474ac8656ebc11a1d46",
+ "prompt_hash": "aa8c134e336cda1667e37d843d645a0159908280757421028f42bf05f788bc7f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "Which technique is used in MiniCPM-Llama3-V 2.5 to reduce hallucination rates?",
+ "choices": [
+ "Multi-head Attention Dropout",
+ "Gradient Checkpointing",
+ "RLAIF-V",
+ "Contextual Retrieval Augmentation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which technique is used in MiniCPM-Llama3-V 2.5 to reduce hallucination rates?\nAnswer:",
+ " Multi-head Attention Dropout"
+ ],
+ [
+ "Question:Which technique is used in MiniCPM-Llama3-V 2.5 to reduce hallucination rates?\nAnswer:",
+ " Gradient Checkpointing"
+ ],
+ [
+ "Question:Which technique is used in MiniCPM-Llama3-V 2.5 to reduce hallucination rates?\nAnswer:",
+ " RLAIF-V"
+ ],
+ [
+ "Question:Which technique is used in MiniCPM-Llama3-V 2.5 to reduce hallucination rates?\nAnswer:",
+ " Contextual Retrieval Augmentation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.53322410583496,
+ false
+ ]
+ ],
+ [
+ [
+ -13.587026596069336,
+ false
+ ]
+ ],
+ [
+ [
+ -17.670570373535156,
+ false
+ ]
+ ],
+ [
+ [
+ -19.511798858642578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.53322410583496,
+ false
+ ],
+ [
+ -13.587026596069336,
+ false
+ ],
+ [
+ -17.670570373535156,
+ false
+ ],
+ [
+ -19.511798858642578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9cc7b1431eecfbefaab0cad4d1bfc115fbee148efffefcfe3d47f7606be3bfa1",
+ "prompt_hash": "fd737561175617926bfa8f244f46d3099c33f30f5b671c138f38204c596bfcc6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "What visual encoder is employed in MiniCPM-V?",
+ "choices": [
+ "ViT-B/16",
+ "ResNet-101",
+ "SigLIP SoViT-400m/14",
+ "ConvNeXt-Base"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What visual encoder is employed in MiniCPM-V?\nAnswer:",
+ " ViT-B/16"
+ ],
+ [
+ "Question:What visual encoder is employed in MiniCPM-V?\nAnswer:",
+ " ResNet-101"
+ ],
+ [
+ "Question:What visual encoder is employed in MiniCPM-V?\nAnswer:",
+ " SigLIP SoViT-400m/14"
+ ],
+ [
+ "Question:What visual encoder is employed in MiniCPM-V?\nAnswer:",
+ " ConvNeXt-Base"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.633031845092773,
+ false
+ ]
+ ],
+ [
+ [
+ -7.921908378601074,
+ false
+ ]
+ ],
+ [
+ [
+ -60.48279571533203,
+ false
+ ]
+ ],
+ [
+ [
+ -12.991559028625488,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.633031845092773,
+ false
+ ],
+ [
+ -7.921908378601074,
+ false
+ ],
+ [
+ -60.48279571533203,
+ false
+ ],
+ [
+ -12.991559028625488,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0bcf0b692a7f5d9b6dac4b2405e70338d6c5e404c7bf8402cd5cf3bcd39a08a5",
+ "prompt_hash": "a19a91d025aa9bcc97165320583e88300005349ba251f66af54c7b65b72dba7a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "What type of quantization is used to reduce the memory requirement of MiniCPM-Llama3-V 2.5 to around 5GB?",
+ "choices": [
+ "Q8_0 mode",
+ "Q4_K_M mode 4-bit",
+ "INT8 symmetric quantization",
+ "Post-training dynamic quantization"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of quantization is used to reduce the memory requirement of MiniCPM-Llama3-V 2.5 to around 5GB?\nAnswer:",
+ " Q8_0 mode"
+ ],
+ [
+ "Question:What type of quantization is used to reduce the memory requirement of MiniCPM-Llama3-V 2.5 to around 5GB?\nAnswer:",
+ " Q4_K_M mode 4-bit"
+ ],
+ [
+ "Question:What type of quantization is used to reduce the memory requirement of MiniCPM-Llama3-V 2.5 to around 5GB?\nAnswer:",
+ " INT8 symmetric quantization"
+ ],
+ [
+ "Question:What type of quantization is used to reduce the memory requirement of MiniCPM-Llama3-V 2.5 to around 5GB?\nAnswer:",
+ " Post-training dynamic quantization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.991249084472656,
+ false
+ ]
+ ],
+ [
+ [
+ -52.5985107421875,
+ false
+ ]
+ ],
+ [
+ [
+ -18.92511749267578,
+ false
+ ]
+ ],
+ [
+ [
+ -19.703536987304688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.991249084472656,
+ false
+ ],
+ [
+ -52.5985107421875,
+ false
+ ],
+ [
+ -18.92511749267578,
+ false
+ ],
+ [
+ -19.703536987304688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "171a9a1a3420e7c88940f30480db74ec63f19e986bc54eb2b008f0d0f6dab4fe",
+ "prompt_hash": "9371558e2e30178b96278ed6261f1d3f2c9360cb841f0503c558ab264ac0153b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "Which visual encoder is used by default in mPLUG-Owl3?",
+ "choices": [
+ "Siglip-400m",
+ "CLIP-ViT",
+ "BLIP-2",
+ "ResNet-101"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which visual encoder is used by default in mPLUG-Owl3?\nAnswer:",
+ " Siglip-400m"
+ ],
+ [
+ "Question:Which visual encoder is used by default in mPLUG-Owl3?\nAnswer:",
+ " CLIP-ViT"
+ ],
+ [
+ "Question:Which visual encoder is used by default in mPLUG-Owl3?\nAnswer:",
+ " BLIP-2"
+ ],
+ [
+ "Question:Which visual encoder is used by default in mPLUG-Owl3?\nAnswer:",
+ " ResNet-101"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.85588836669922,
+ false
+ ]
+ ],
+ [
+ [
+ -10.125411987304688,
+ false
+ ]
+ ],
+ [
+ [
+ -7.34080696105957,
+ false
+ ]
+ ],
+ [
+ [
+ -9.431852340698242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.85588836669922,
+ false
+ ],
+ [
+ -10.125411987304688,
+ false
+ ],
+ [
+ -7.34080696105957,
+ false
+ ],
+ [
+ -9.431852340698242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "45f0233992f0526f9e2ddd64462932a6d005f950483384bbfbca4e03e739a662",
+ "prompt_hash": "3720b56a27492cba6007f1d309029ab312d06cd133740ae26813ef842ac9ad04",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which benchmark evaluates a model's ability to understand science diagrams?",
+ "choices": [
+ "POPE",
+ "AI2D",
+ "MM-Vet",
+ "MMBench"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark evaluates a model's ability to understand science diagrams?\nAnswer:",
+ " POPE"
+ ],
+ [
+ "Question:Which benchmark evaluates a model's ability to understand science diagrams?\nAnswer:",
+ " AI2D"
+ ],
+ [
+ "Question:Which benchmark evaluates a model's ability to understand science diagrams?\nAnswer:",
+ " MM-Vet"
+ ],
+ [
+ "Question:Which benchmark evaluates a model's ability to understand science diagrams?\nAnswer:",
+ " MMBench"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.768207550048828,
+ false
+ ]
+ ],
+ [
+ [
+ -10.82089900970459,
+ false
+ ]
+ ],
+ [
+ [
+ -18.138641357421875,
+ false
+ ]
+ ],
+ [
+ [
+ -13.92343521118164,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.768207550048828,
+ false
+ ],
+ [
+ -10.82089900970459,
+ false
+ ],
+ [
+ -18.138641357421875,
+ false
+ ],
+ [
+ -13.92343521118164,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a0c39f7cbd5af613b6c4a6a7fe47428530770d0eef8a26d5baaf7d7f040ee0a4",
+ "prompt_hash": "76dc790ed1dd7a04d27b4229b74a54ac654ebe1a670bdc39f84965a75d3fd8b0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "Which component is reused as the Query vector in the Hyper Attention cross-attention mechanism?",
+ "choices": [
+ "Key from visual features",
+ "Value from textual features",
+ "Query from the self-attention mechanism",
+ "Projection from the vision encoder"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which component is reused as the Query vector in the Hyper Attention cross-attention mechanism?\nAnswer:",
+ " Key from visual features"
+ ],
+ [
+ "Question:Which component is reused as the Query vector in the Hyper Attention cross-attention mechanism?\nAnswer:",
+ " Value from textual features"
+ ],
+ [
+ "Question:Which component is reused as the Query vector in the Hyper Attention cross-attention mechanism?\nAnswer:",
+ " Query from the self-attention mechanism"
+ ],
+ [
+ "Question:Which component is reused as the Query vector in the Hyper Attention cross-attention mechanism?\nAnswer:",
+ " Projection from the vision encoder"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.740676879882812,
+ false
+ ]
+ ],
+ [
+ [
+ -28.112730026245117,
+ false
+ ]
+ ],
+ [
+ [
+ -18.406658172607422,
+ false
+ ]
+ ],
+ [
+ [
+ -28.374183654785156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.740676879882812,
+ false
+ ],
+ [
+ -28.112730026245117,
+ false
+ ],
+ [
+ -18.406658172607422,
+ false
+ ],
+ [
+ -28.374183654785156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d6e1aeb928e60b21d65c1bac533238b17407b50ce0764e7918e781c5cf0ee053",
+ "prompt_hash": "11bffdf541567d8f57e5e5a7070dfad452865ebcb490b23d144e8a14c5068895",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "How many image-text pairs are used for pre-training mPLUG-Owl3?",
+ "choices": [
+ "10 million",
+ "25 million",
+ "41 million",
+ "65 million"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many image-text pairs are used for pre-training mPLUG-Owl3?\nAnswer:",
+ " 10 million"
+ ],
+ [
+ "Question:How many image-text pairs are used for pre-training mPLUG-Owl3?\nAnswer:",
+ " 25 million"
+ ],
+ [
+ "Question:How many image-text pairs are used for pre-training mPLUG-Owl3?\nAnswer:",
+ " 41 million"
+ ],
+ [
+ "Question:How many image-text pairs are used for pre-training mPLUG-Owl3?\nAnswer:",
+ " 65 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.595640182495117,
+ false
+ ]
+ ],
+ [
+ [
+ -10.362495422363281,
+ false
+ ]
+ ],
+ [
+ [
+ -12.96182918548584,
+ false
+ ]
+ ],
+ [
+ [
+ -11.332928657531738,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.595640182495117,
+ false
+ ],
+ [
+ -10.362495422363281,
+ false
+ ],
+ [
+ -12.96182918548584,
+ false
+ ],
+ [
+ -11.332928657531738,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6223644cc4cf68c322f7b5014ae6ff464cef6f65987f256ad3709d4167105ed3",
+ "prompt_hash": "8dc3d0f2ed68203b2a262b65e63a7bd7cfc7354608ce01694ec99ac2d9ff13af",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "Which technique is introduced in mPLUG-Owl3 to preserve image positional information in interleaved sequences?",
+ "choices": [
+ "Rotary Positional Embedding",
+ "Vision Transformer",
+ "Multimodal-Interleaved Rotary Position Embedding (MI-Rope)",
+ "Temporal Fusion Encoder"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which technique is introduced in mPLUG-Owl3 to preserve image positional information in interleaved sequences?\nAnswer:",
+ " Rotary Positional Embedding"
+ ],
+ [
+ "Question:Which technique is introduced in mPLUG-Owl3 to preserve image positional information in interleaved sequences?\nAnswer:",
+ " Vision Transformer"
+ ],
+ [
+ "Question:Which technique is introduced in mPLUG-Owl3 to preserve image positional information in interleaved sequences?\nAnswer:",
+ " Multimodal-Interleaved Rotary Position Embedding (MI-Rope)"
+ ],
+ [
+ "Question:Which technique is introduced in mPLUG-Owl3 to preserve image positional information in interleaved sequences?\nAnswer:",
+ " Temporal Fusion Encoder"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.903343200683594,
+ false
+ ]
+ ],
+ [
+ [
+ -11.205512046813965,
+ false
+ ]
+ ],
+ [
+ [
+ -62.90228271484375,
+ false
+ ]
+ ],
+ [
+ [
+ -19.450517654418945,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.903343200683594,
+ false
+ ],
+ [
+ -11.205512046813965,
+ false
+ ],
+ [
+ -62.90228271484375,
+ false
+ ],
+ [
+ -19.450517654418945,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cc614c25a588bd9452a11be0ad9545544972a67e547ef9d3087f295344e8ef11",
+ "prompt_hash": "81b34377e5e16772b0ab5f0bf087b92e357f2585521d1c53857c44370f4f33e3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What does the HybridRAG system combine to enhance information retrieval?",
+ "choices": [
+ "VectorRAG and WebRAG",
+ "GraphRAG and Symbolic Logic",
+ "VectorRAG and GraphRAG",
+ "Knowledge Graph and Decision Trees"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the HybridRAG system combine to enhance information retrieval?\nAnswer:",
+ " VectorRAG and WebRAG"
+ ],
+ [
+ "Question:What does the HybridRAG system combine to enhance information retrieval?\nAnswer:",
+ " GraphRAG and Symbolic Logic"
+ ],
+ [
+ "Question:What does the HybridRAG system combine to enhance information retrieval?\nAnswer:",
+ " VectorRAG and GraphRAG"
+ ],
+ [
+ "Question:What does the HybridRAG system combine to enhance information retrieval?\nAnswer:",
+ " Knowledge Graph and Decision Trees"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -34.7384147644043,
+ false
+ ]
+ ],
+ [
+ [
+ -39.80352020263672,
+ false
+ ]
+ ],
+ [
+ [
+ -29.742319107055664,
+ false
+ ]
+ ],
+ [
+ [
+ -24.235549926757812,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -34.7384147644043,
+ false
+ ],
+ [
+ -39.80352020263672,
+ false
+ ],
+ [
+ -29.742319107055664,
+ false
+ ],
+ [
+ -24.235549926757812,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4e4bddf8d1d7a09a1e25a76b3b334f4773dd3a665f508a46dcf705157f7e844f",
+ "prompt_hash": "0fdedbbb63fe8d41251f7883aa0a4a161425d586290781222f71de0ac51d00e7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "What is the first step in the knowledge extraction process for constructing a knowledge graph?",
+ "choices": [
+ "Entity Disambiguation",
+ "Knowledge Fusion",
+ "Knowledge Extraction",
+ "Temporal KG Construction"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the first step in the knowledge extraction process for constructing a knowledge graph?\nAnswer:",
+ " Entity Disambiguation"
+ ],
+ [
+ "Question:What is the first step in the knowledge extraction process for constructing a knowledge graph?\nAnswer:",
+ " Knowledge Fusion"
+ ],
+ [
+ "Question:What is the first step in the knowledge extraction process for constructing a knowledge graph?\nAnswer:",
+ " Knowledge Extraction"
+ ],
+ [
+ "Question:What is the first step in the knowledge extraction process for constructing a knowledge graph?\nAnswer:",
+ " Temporal KG Construction"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.80317497253418,
+ false
+ ]
+ ],
+ [
+ [
+ -13.312759399414062,
+ false
+ ]
+ ],
+ [
+ [
+ -6.910901069641113,
+ false
+ ]
+ ],
+ [
+ [
+ -18.86545181274414,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.80317497253418,
+ false
+ ],
+ [
+ -13.312759399414062,
+ false
+ ],
+ [
+ -6.910901069641113,
+ false
+ ],
+ [
+ -18.86545181274414,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "121e6b0d2999afd4b068adada4169a6657a154acf6504ec312f11dbd1f473325",
+ "prompt_hash": "bd6cd21014f88e0e46adf28cece79c686071b520ee6f8b416105fa27e93b2cc7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "Which LLM embedding model is used in the VectorRAG setup?",
+ "choices": [
+ "text-embedding-babbage-001",
+ "text-embedding-ada-002",
+ "sentence-transformers/all-MiniLM-L6-v2",
+ "bert-base-nli-mean-tokens"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which LLM embedding model is used in the VectorRAG setup?\nAnswer:",
+ " text-embedding-babbage-001"
+ ],
+ [
+ "Question:Which LLM embedding model is used in the VectorRAG setup?\nAnswer:",
+ " text-embedding-ada-002"
+ ],
+ [
+ "Question:Which LLM embedding model is used in the VectorRAG setup?\nAnswer:",
+ " sentence-transformers/all-MiniLM-L6-v2"
+ ],
+ [
+ "Question:Which LLM embedding model is used in the VectorRAG setup?\nAnswer:",
+ " bert-base-nli-mean-tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.047874450683594,
+ false
+ ]
+ ],
+ [
+ [
+ -8.769493103027344,
+ false
+ ]
+ ],
+ [
+ [
+ -9.794758796691895,
+ false
+ ]
+ ],
+ [
+ [
+ -12.21292781829834,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.047874450683594,
+ false
+ ],
+ [
+ -8.769493103027344,
+ false
+ ],
+ [
+ -9.794758796691895,
+ false
+ ],
+ [
+ -12.21292781829834,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e5d0a848899461bf1ccf87ebe38f1531bbd1129582b1096b830f7c05a1fc2068",
+ "prompt_hash": "286cc4d87a6f8915033be3fe3283998246025225bbdb787a003cace0368e9b03",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which sector is NOT listed among those included in the Nifty 50 earnings call dataset?",
+ "choices": [
+ "Consumer Goods",
+ "Aerospace",
+ "Healthcare",
+ "Energy - Power"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which sector is NOT listed among those included in the Nifty 50 earnings call dataset?\nAnswer:",
+ " Consumer Goods"
+ ],
+ [
+ "Question:Which sector is NOT listed among those included in the Nifty 50 earnings call dataset?\nAnswer:",
+ " Aerospace"
+ ],
+ [
+ "Question:Which sector is NOT listed among those included in the Nifty 50 earnings call dataset?\nAnswer:",
+ " Healthcare"
+ ],
+ [
+ "Question:Which sector is NOT listed among those included in the Nifty 50 earnings call dataset?\nAnswer:",
+ " Energy - Power"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.80567741394043,
+ false
+ ]
+ ],
+ [
+ [
+ -8.0639066696167,
+ false
+ ]
+ ],
+ [
+ [
+ -6.295193195343018,
+ false
+ ]
+ ],
+ [
+ [
+ -19.14309310913086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.80567741394043,
+ false
+ ],
+ [
+ -8.0639066696167,
+ false
+ ],
+ [
+ -6.295193195343018,
+ false
+ ],
+ [
+ -19.14309310913086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c4f0abe77cfd8a8682c3bd77a15030f0ad96cd9ccdaee1b95042dad325560bbd",
+ "prompt_hash": "7f81198daf1670620d9f0b27b723a619ea15b2c7005f9d523ac2b38ac90e1a67",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "What metric measures how much of the generated answer can be inferred from the provided context?",
+ "choices": [
+ "Context Precision",
+ "Faithfulness",
+ "Answer Relevance",
+ "Context Recall"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What metric measures how much of the generated answer can be inferred from the provided context?\nAnswer:",
+ " Context Precision"
+ ],
+ [
+ "Question:What metric measures how much of the generated answer can be inferred from the provided context?\nAnswer:",
+ " Faithfulness"
+ ],
+ [
+ "Question:What metric measures how much of the generated answer can be inferred from the provided context?\nAnswer:",
+ " Answer Relevance"
+ ],
+ [
+ "Question:What metric measures how much of the generated answer can be inferred from the provided context?\nAnswer:",
+ " Context Recall"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.284663200378418,
+ false
+ ]
+ ],
+ [
+ [
+ -9.042125701904297,
+ false
+ ]
+ ],
+ [
+ [
+ -9.404643058776855,
+ false
+ ]
+ ],
+ [
+ [
+ -12.565004348754883,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.284663200378418,
+ false
+ ],
+ [
+ -9.042125701904297,
+ false
+ ],
+ [
+ -9.404643058776855,
+ false
+ ],
+ [
+ -12.565004348754883,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0a7992bd5405e2455bb7ae703195734ee1820ba790899d28e13c6ebe89a23403",
+ "prompt_hash": "c9b81d11c3bf2b77ca20585ce25ccdcb42b99e3832f02d5ec511fea14e837b3b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What is the activation function used in JumpReLU sparse autoencoders?",
+ "choices": [
+ "Sigmoid function",
+ "Shifted Heaviside step function combined with ReLU",
+ "Standard ReLU without thresholding",
+ "Tanh with adaptive scaling"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the activation function used in JumpReLU sparse autoencoders?\nAnswer:",
+ " Sigmoid function"
+ ],
+ [
+ "Question:What is the activation function used in JumpReLU sparse autoencoders?\nAnswer:",
+ " Shifted Heaviside step function combined with ReLU"
+ ],
+ [
+ "Question:What is the activation function used in JumpReLU sparse autoencoders?\nAnswer:",
+ " Standard ReLU without thresholding"
+ ],
+ [
+ "Question:What is the activation function used in JumpReLU sparse autoencoders?\nAnswer:",
+ " Tanh with adaptive scaling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.715402603149414,
+ false
+ ]
+ ],
+ [
+ [
+ -36.528255462646484,
+ false
+ ]
+ ],
+ [
+ [
+ -22.49020004272461,
+ false
+ ]
+ ],
+ [
+ [
+ -20.276412963867188,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.715402603149414,
+ false
+ ],
+ [
+ -36.528255462646484,
+ false
+ ],
+ [
+ -22.49020004272461,
+ false
+ ],
+ [
+ -20.276412963867188,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cd9fc825aa138a5de9abaf4b87783158bd71ee7a58cc07a955ccee016045d4b4",
+ "prompt_hash": "dd3b8472617fc9214c3074ab154d01f4b93ce8dc5cc3ce9cad8f5a02e1ca9c65",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "What optimizer is used to train the sparse autoencoders in Gemma Scope?",
+ "choices": [
+ "SGD with momentum",
+ "RMSprop",
+ "Adam with (β₁, β₂) = (0, 0.999)",
+ "LAMB optimizer"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What optimizer is used to train the sparse autoencoders in Gemma Scope?\nAnswer:",
+ " SGD with momentum"
+ ],
+ [
+ "Question:What optimizer is used to train the sparse autoencoders in Gemma Scope?\nAnswer:",
+ " RMSprop"
+ ],
+ [
+ "Question:What optimizer is used to train the sparse autoencoders in Gemma Scope?\nAnswer:",
+ " Adam with (β₁, β₂) = (0, 0.999)"
+ ],
+ [
+ "Question:What optimizer is used to train the sparse autoencoders in Gemma Scope?\nAnswer:",
+ " LAMB optimizer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.294715881347656,
+ false
+ ]
+ ],
+ [
+ [
+ -6.094078540802002,
+ false
+ ]
+ ],
+ [
+ [
+ -42.684532165527344,
+ false
+ ]
+ ],
+ [
+ [
+ -18.675086975097656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.294715881347656,
+ false
+ ],
+ [
+ -6.094078540802002,
+ false
+ ],
+ [
+ -42.684532165527344,
+ false
+ ],
+ [
+ -18.675086975097656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "de2f0308b302e5574f464cfe4d280ec12ddce5ae7374d0329b8ba50f15149a2b",
+ "prompt_hash": "bfc1545c194ee3ba20c4127cc60c14269bd7c1acea9a6895bc2d69d521fd7eee",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "How many sparse autoencoders were released in the main Gemma Scope suite?",
+ "choices": [
+ "Over 500",
+ "More than 400",
+ "Exactly 1000",
+ "About 100"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many sparse autoencoders were released in the main Gemma Scope suite?\nAnswer:",
+ " Over 500"
+ ],
+ [
+ "Question:How many sparse autoencoders were released in the main Gemma Scope suite?\nAnswer:",
+ " More than 400"
+ ],
+ [
+ "Question:How many sparse autoencoders were released in the main Gemma Scope suite?\nAnswer:",
+ " Exactly 1000"
+ ],
+ [
+ "Question:How many sparse autoencoders were released in the main Gemma Scope suite?\nAnswer:",
+ " About 100"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.328933715820312,
+ false
+ ]
+ ],
+ [
+ [
+ -15.292580604553223,
+ false
+ ]
+ ],
+ [
+ [
+ -18.465763092041016,
+ false
+ ]
+ ],
+ [
+ [
+ -13.992822647094727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.328933715820312,
+ false
+ ],
+ [
+ -15.292580604553223,
+ false
+ ],
+ [
+ -18.465763092041016,
+ false
+ ],
+ [
+ -13.992822647094727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7850c75efcc76953fb620cc4a3af670b82c3e762747707a436a0957e4d0b0305",
+ "prompt_hash": "48ee84c6b1656b477831163a4cc8b71f25196393ec4831517a8282d90481b03f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "Which subset of The Pile dataset did the SAEs perform worst on?",
+ "choices": [
+ "PubMed Central",
+ "Books3",
+ "Europarl",
+ "DeepMind Mathematics"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which subset of The Pile dataset did the SAEs perform worst on?\nAnswer:",
+ " PubMed Central"
+ ],
+ [
+ "Question:Which subset of The Pile dataset did the SAEs perform worst on?\nAnswer:",
+ " Books3"
+ ],
+ [
+ "Question:Which subset of The Pile dataset did the SAEs perform worst on?\nAnswer:",
+ " Europarl"
+ ],
+ [
+ "Question:Which subset of The Pile dataset did the SAEs perform worst on?\nAnswer:",
+ " DeepMind Mathematics"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.985855102539062,
+ false
+ ]
+ ],
+ [
+ [
+ -16.546205520629883,
+ false
+ ]
+ ],
+ [
+ [
+ -13.369335174560547,
+ false
+ ]
+ ],
+ [
+ [
+ -20.967653274536133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.985855102539062,
+ false
+ ],
+ [
+ -16.546205520629883,
+ false
+ ],
+ [
+ -13.369335174560547,
+ false
+ ],
+ [
+ -20.967653274536133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a4c6cc58667fe8997ffb8b3b6267ff80e8ed45b7165caa316b931df0e4d133d0",
+ "prompt_hash": "076909a7af06d7da4669d0113738cb750045745399d1ab5485f09fa67193a98e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "Where are the released weights of Gemma Scope hosted?",
+ "choices": [
+ "OpenAI API",
+ "Google Cloud Storage",
+ "HuggingFace",
+ "Kaggle Datasets"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Where are the released weights of Gemma Scope hosted?\nAnswer:",
+ " OpenAI API"
+ ],
+ [
+ "Question:Where are the released weights of Gemma Scope hosted?\nAnswer:",
+ " Google Cloud Storage"
+ ],
+ [
+ "Question:Where are the released weights of Gemma Scope hosted?\nAnswer:",
+ " HuggingFace"
+ ],
+ [
+ "Question:Where are the released weights of Gemma Scope hosted?\nAnswer:",
+ " Kaggle Datasets"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.245248794555664,
+ false
+ ]
+ ],
+ [
+ [
+ -8.508049011230469,
+ false
+ ]
+ ],
+ [
+ [
+ -8.190152168273926,
+ false
+ ]
+ ],
+ [
+ [
+ -14.849760055541992,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.245248794555664,
+ false
+ ],
+ [
+ -8.508049011230469,
+ false
+ ],
+ [
+ -8.190152168273926,
+ false
+ ],
+ [
+ -14.849760055541992,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e6a6066ec0f1781c89108fb4c80a0f7fecc28035e65e670b6c243bb3407759fa",
+ "prompt_hash": "e21190f5c3f44f85ac12be0cfc218a9571772a27f53432e7b90a7b2bce991577",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the accuracy of LLaMA2-7B on GSM8K when using few-shot CoT prompting?",
+ "choices": [
+ "12.51%",
+ "24.34%",
+ "36.46%",
+ "63.91%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the accuracy of LLaMA2-7B on GSM8K when using few-shot CoT prompting?\nAnswer:",
+ " 12.51%"
+ ],
+ [
+ "Question:What is the accuracy of LLaMA2-7B on GSM8K when using few-shot CoT prompting?\nAnswer:",
+ " 24.34%"
+ ],
+ [
+ "Question:What is the accuracy of LLaMA2-7B on GSM8K when using few-shot CoT prompting?\nAnswer:",
+ " 36.46%"
+ ],
+ [
+ "Question:What is the accuracy of LLaMA2-7B on GSM8K when using few-shot CoT prompting?\nAnswer:",
+ " 63.91%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.55419921875,
+ false
+ ]
+ ],
+ [
+ [
+ -17.668134689331055,
+ false
+ ]
+ ],
+ [
+ [
+ -17.610607147216797,
+ false
+ ]
+ ],
+ [
+ [
+ -16.299419403076172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.55419921875,
+ false
+ ],
+ [
+ -17.668134689331055,
+ false
+ ],
+ [
+ -17.610607147216797,
+ false
+ ],
+ [
+ -16.299419403076172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "740e8672e7d357a835b0e5f48081bf47de1508d71d7ddbacef30b6ccfe7647b6",
+ "prompt_hash": "86183804e555821736b88e17d55e2e58e0f2ba608af3b603957c175c4bc474d1",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "Which action in the reasoning process is inspired by least-to-most prompting and involves generating sub-questions and their answers?",
+ "choices": [
+ "A1: Propose an one-step thought",
+ "A2: Propose the remaining thought steps",
+ "A3: Propose next sub-question along with its answer",
+ "A5: Rephrase the question/sub-question"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which action in the reasoning process is inspired by least-to-most prompting and involves generating sub-questions and their answers?\nAnswer:",
+ " A1: Propose an one-step thought"
+ ],
+ [
+ "Question:Which action in the reasoning process is inspired by least-to-most prompting and involves generating sub-questions and their answers?\nAnswer:",
+ " A2: Propose the remaining thought steps"
+ ],
+ [
+ "Question:Which action in the reasoning process is inspired by least-to-most prompting and involves generating sub-questions and their answers?\nAnswer:",
+ " A3: Propose next sub-question along with its answer"
+ ],
+ [
+ "Question:Which action in the reasoning process is inspired by least-to-most prompting and involves generating sub-questions and their answers?\nAnswer:",
+ " A5: Rephrase the question/sub-question"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -41.947181701660156,
+ false
+ ]
+ ],
+ [
+ [
+ -44.858089447021484,
+ false
+ ]
+ ],
+ [
+ [
+ -43.70464324951172,
+ false
+ ]
+ ],
+ [
+ [
+ -39.109134674072266,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -41.947181701660156,
+ false
+ ],
+ [
+ -44.858089447021484,
+ false
+ ],
+ [
+ -43.70464324951172,
+ false
+ ],
+ [
+ -39.109134674072266,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3ea6706835ff4cef39765d4fbc51408146c9d806c0b39ea78d8336ca66d2f0c0",
+ "prompt_hash": "4473cd7385465f7f8305ee6cbb2a236cd6ae73493ae23b5dec906975d167b2f7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "According to the ablation study, replacing \\( r_2 \\) with random values in RAP causes a significant drop in accuracy on which dataset?",
+ "choices": [
+ "StrategyQA",
+ "GSM8K",
+ "MATH-500",
+ "SVAMP"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:According to the ablation study, replacing \\( r_2 \\) with random values in RAP causes a significant drop in accuracy on which dataset?\nAnswer:",
+ " StrategyQA"
+ ],
+ [
+ "Question:According to the ablation study, replacing \\( r_2 \\) with random values in RAP causes a significant drop in accuracy on which dataset?\nAnswer:",
+ " GSM8K"
+ ],
+ [
+ "Question:According to the ablation study, replacing \\( r_2 \\) with random values in RAP causes a significant drop in accuracy on which dataset?\nAnswer:",
+ " MATH-500"
+ ],
+ [
+ "Question:According to the ablation study, replacing \\( r_2 \\) with random values in RAP causes a significant drop in accuracy on which dataset?\nAnswer:",
+ " SVAMP"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.641420364379883,
+ false
+ ]
+ ],
+ [
+ [
+ -9.388848304748535,
+ false
+ ]
+ ],
+ [
+ [
+ -26.169233322143555,
+ false
+ ]
+ ],
+ [
+ [
+ -20.590858459472656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.641420364379883,
+ false
+ ],
+ [
+ -9.388848304748535,
+ false
+ ],
+ [
+ -26.169233322143555,
+ false
+ ],
+ [
+ -20.590858459472656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d54783b122fe68a4da778a99bf5b317c3d85719946a207ee26874b0ebdf376b7",
+ "prompt_hash": "d3f2d537a02b19810dfd28784b8c1fb5d5a0db3ef651fe26c655f2a64292a1ad",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "What average number of inferences is required to solve a GSM8K question using the MCTS self-generator on LLaMA2-7B?",
+ "choices": [
+ "148.90",
+ "166.81",
+ "348.6k",
+ "367.1k"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What average number of inferences is required to solve a GSM8K question using the MCTS self-generator on LLaMA2-7B?\nAnswer:",
+ " 148.90"
+ ],
+ [
+ "Question:What average number of inferences is required to solve a GSM8K question using the MCTS self-generator on LLaMA2-7B?\nAnswer:",
+ " 166.81"
+ ],
+ [
+ "Question:What average number of inferences is required to solve a GSM8K question using the MCTS self-generator on LLaMA2-7B?\nAnswer:",
+ " 348.6k"
+ ],
+ [
+ "Question:What average number of inferences is required to solve a GSM8K question using the MCTS self-generator on LLaMA2-7B?\nAnswer:",
+ " 367.1k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.378009796142578,
+ false
+ ]
+ ],
+ [
+ [
+ -17.80447006225586,
+ false
+ ]
+ ],
+ [
+ [
+ -22.77227020263672,
+ false
+ ]
+ ],
+ [
+ [
+ -22.721303939819336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.378009796142578,
+ false
+ ],
+ [
+ -17.80447006225586,
+ false
+ ],
+ [
+ -22.77227020263672,
+ false
+ ],
+ [
+ -22.721303939819336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3376851ef9784dbe4a9c6462e7e4f78293c0bbdef2ccf6833768c5eb0ba07529",
+ "prompt_hash": "2266edfa9c35484137149027d1a51807b862ff7d81c9c1a8e6f890426a2a021e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "Which discriminator model achieved the highest accuracy when verifying LLaMA3-8B-Instruct reasoning trajectories?",
+ "choices": [
+ "LLaMA3.1-8B-Instruct",
+ "GPT-4 (2024-05-01)",
+ "Phi3-Mini-Instruct",
+ "LLaMA3-8B-Instruct"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which discriminator model achieved the highest accuracy when verifying LLaMA3-8B-Instruct reasoning trajectories?\nAnswer:",
+ " LLaMA3.1-8B-Instruct"
+ ],
+ [
+ "Question:Which discriminator model achieved the highest accuracy when verifying LLaMA3-8B-Instruct reasoning trajectories?\nAnswer:",
+ " GPT-4 (2024-05-01)"
+ ],
+ [
+ "Question:Which discriminator model achieved the highest accuracy when verifying LLaMA3-8B-Instruct reasoning trajectories?\nAnswer:",
+ " Phi3-Mini-Instruct"
+ ],
+ [
+ "Question:Which discriminator model achieved the highest accuracy when verifying LLaMA3-8B-Instruct reasoning trajectories?\nAnswer:",
+ " LLaMA3-8B-Instruct"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.940017700195312,
+ false
+ ]
+ ],
+ [
+ [
+ -19.82349395751953,
+ false
+ ]
+ ],
+ [
+ [
+ -19.991985321044922,
+ false
+ ]
+ ],
+ [
+ [
+ -6.56914758682251,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.940017700195312,
+ false
+ ],
+ [
+ -19.82349395751953,
+ false
+ ],
+ [
+ -19.991985321044922,
+ false
+ ],
+ [
+ -6.56914758682251,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a5fa2750dda4b0a422394d424529a33f963cd403d2e052df741d8830b813cecd",
+ "prompt_hash": "8de90c8da0c1c343da54a74d5862f70ef62ae9ebc2eb448c91b7095ec982465b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "What is the name of the benchmark designed to evaluate long-form writing with outputs over 4,000 words?",
+ "choices": [
+ "LongBench-Write",
+ "WriteEval-Bench",
+ "UltraLong-Test",
+ "GenLength-Benchmark"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the name of the benchmark designed to evaluate long-form writing with outputs over 4,000 words?\nAnswer:",
+ " LongBench-Write"
+ ],
+ [
+ "Question:What is the name of the benchmark designed to evaluate long-form writing with outputs over 4,000 words?\nAnswer:",
+ " WriteEval-Bench"
+ ],
+ [
+ "Question:What is the name of the benchmark designed to evaluate long-form writing with outputs over 4,000 words?\nAnswer:",
+ " UltraLong-Test"
+ ],
+ [
+ "Question:What is the name of the benchmark designed to evaluate long-form writing with outputs over 4,000 words?\nAnswer:",
+ " GenLength-Benchmark"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.639150619506836,
+ false
+ ]
+ ],
+ [
+ [
+ -22.761621475219727,
+ false
+ ]
+ ],
+ [
+ [
+ -22.010944366455078,
+ false
+ ]
+ ],
+ [
+ [
+ -26.39200210571289,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.639150619506836,
+ false
+ ],
+ [
+ -22.761621475219727,
+ false
+ ],
+ [
+ -22.010944366455078,
+ false
+ ],
+ [
+ -26.39200210571289,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "54fb257c443ac9f24ce1b11083739858fd3f2cdf765fd1910193190b209fade9",
+ "prompt_hash": "aa259a28a254ba6c18a005278ba04aed52a7d3bfb7946d5685b0f9eabcea9c25",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "What dataset was constructed using GPT-4o to produce long outputs exceeding 10,000 words?",
+ "choices": [
+ "WriteMaster-10k",
+ "LongForm-Builder",
+ "AgentData-6k",
+ "LongWriter-6k"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What dataset was constructed using GPT-4o to produce long outputs exceeding 10,000 words?\nAnswer:",
+ " WriteMaster-10k"
+ ],
+ [
+ "Question:What dataset was constructed using GPT-4o to produce long outputs exceeding 10,000 words?\nAnswer:",
+ " LongForm-Builder"
+ ],
+ [
+ "Question:What dataset was constructed using GPT-4o to produce long outputs exceeding 10,000 words?\nAnswer:",
+ " AgentData-6k"
+ ],
+ [
+ "Question:What dataset was constructed using GPT-4o to produce long outputs exceeding 10,000 words?\nAnswer:",
+ " LongWriter-6k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -33.696617126464844,
+ false
+ ]
+ ],
+ [
+ [
+ -27.476381301879883,
+ false
+ ]
+ ],
+ [
+ [
+ -29.436206817626953,
+ false
+ ]
+ ],
+ [
+ [
+ -28.958377838134766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -33.696617126464844,
+ false
+ ],
+ [
+ -27.476381301879883,
+ false
+ ],
+ [
+ -29.436206817626953,
+ false
+ ],
+ [
+ -28.958377838134766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "27d094e756d8f9ebc7fb50418d9b28707cfe3d244a12dc577e75c18f11d89e18",
+ "prompt_hash": "517bc5fb77a00c66e82a92783f2a4c11c8247ed5245f6b23c04fb4d3124ce0dc",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "What approach does AgentWrite use to generate long-form content?",
+ "choices": [
+ "Retrieval-augmented prompting",
+ "Divide-and-conquer planning",
+ "Backtranslation-based expansion",
+ "Reinforcement learning tuning"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What approach does AgentWrite use to generate long-form content?\nAnswer:",
+ " Retrieval-augmented prompting"
+ ],
+ [
+ "Question:What approach does AgentWrite use to generate long-form content?\nAnswer:",
+ " Divide-and-conquer planning"
+ ],
+ [
+ "Question:What approach does AgentWrite use to generate long-form content?\nAnswer:",
+ " Backtranslation-based expansion"
+ ],
+ [
+ "Question:What approach does AgentWrite use to generate long-form content?\nAnswer:",
+ " Reinforcement learning tuning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.73776626586914,
+ false
+ ]
+ ],
+ [
+ [
+ -23.26085662841797,
+ false
+ ]
+ ],
+ [
+ [
+ -28.372581481933594,
+ false
+ ]
+ ],
+ [
+ [
+ -19.8125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.73776626586914,
+ false
+ ],
+ [
+ -23.26085662841797,
+ false
+ ],
+ [
+ -28.372581481933594,
+ false
+ ],
+ [
+ -19.8125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3c94c38725119f23b11c90a449ac7187d854ac1e0b4570f5f12610bd3bf40f2a",
+ "prompt_hash": "bdefd51ded190912aa2c257c03204c8892b280aec8dc0411bdb4075b87ebe1cf",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "What is the typical maximum output length achieved by current long-context models before improvement?",
+ "choices": [
+ "Around 2,000 words",
+ "Approximately 5,000 words",
+ "Less than 1,000 words",
+ "Over 10,000 words"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the typical maximum output length achieved by current long-context models before improvement?\nAnswer:",
+ " Around 2,000 words"
+ ],
+ [
+ "Question:What is the typical maximum output length achieved by current long-context models before improvement?\nAnswer:",
+ " Approximately 5,000 words"
+ ],
+ [
+ "Question:What is the typical maximum output length achieved by current long-context models before improvement?\nAnswer:",
+ " Less than 1,000 words"
+ ],
+ [
+ "Question:What is the typical maximum output length achieved by current long-context models before improvement?\nAnswer:",
+ " Over 10,000 words"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.012025833129883,
+ false
+ ]
+ ],
+ [
+ [
+ -17.129650115966797,
+ false
+ ]
+ ],
+ [
+ [
+ -13.902952194213867,
+ false
+ ]
+ ],
+ [
+ [
+ -14.598623275756836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.012025833129883,
+ false
+ ],
+ [
+ -17.129650115966797,
+ false
+ ],
+ [
+ -13.902952194213867,
+ false
+ ],
+ [
+ -14.598623275756836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "46daa63f9f10a6d83f6a7fa2ea4265bd4a87bc34680ce77a6fcfee59cc290a17",
+ "prompt_hash": "98cf74434b5cc943c6188659f011b859a46162e99a69d36fd75e3768051df5c8",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "Which fine-tuning method is used to help the model better follow long writing instructions?",
+ "choices": [
+ "Contrastive Alignment Learning",
+ "DPO (Direct Preference Optimization)",
+ "Reinforcement Reward Ranking",
+ "Instruction Injection Strategy"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which fine-tuning method is used to help the model better follow long writing instructions?\nAnswer:",
+ " Contrastive Alignment Learning"
+ ],
+ [
+ "Question:Which fine-tuning method is used to help the model better follow long writing instructions?\nAnswer:",
+ " DPO (Direct Preference Optimization)"
+ ],
+ [
+ "Question:Which fine-tuning method is used to help the model better follow long writing instructions?\nAnswer:",
+ " Reinforcement Reward Ranking"
+ ],
+ [
+ "Question:Which fine-tuning method is used to help the model better follow long writing instructions?\nAnswer:",
+ " Instruction Injection Strategy"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.225650787353516,
+ false
+ ]
+ ],
+ [
+ [
+ -16.75514793395996,
+ false
+ ]
+ ],
+ [
+ [
+ -30.011341094970703,
+ false
+ ]
+ ],
+ [
+ [
+ -21.480850219726562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.225650787353516,
+ false
+ ],
+ [
+ -16.75514793395996,
+ false
+ ],
+ [
+ -30.011341094970703,
+ false
+ ],
+ [
+ -21.480850219726562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2defad948ec9d397fb72a91e28c7e97a7601e4e89f3e19b32498452725bc6940",
+ "prompt_hash": "8797c5e2080c8bef6869ed8990e4a53cc5e23ffd3c224c7b33dc177f608eae0c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "Which models are cited as examples of frontier Large Language Models?",
+ "choices": [
+ "ChatGPT, Gemini, Opus, LLaMA-3",
+ "GPT-3.5, Claude, Gemini, Mistral",
+ "ChatGPT, Palm, BERT, LLaMA-2",
+ "GPT-4, PaLM-2, Claude, Falcon"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which models are cited as examples of frontier Large Language Models?\nAnswer:",
+ " ChatGPT, Gemini, Opus, LLaMA-3"
+ ],
+ [
+ "Question:Which models are cited as examples of frontier Large Language Models?\nAnswer:",
+ " GPT-3.5, Claude, Gemini, Mistral"
+ ],
+ [
+ "Question:Which models are cited as examples of frontier Large Language Models?\nAnswer:",
+ " ChatGPT, Palm, BERT, LLaMA-2"
+ ],
+ [
+ "Question:Which models are cited as examples of frontier Large Language Models?\nAnswer:",
+ " GPT-4, PaLM-2, Claude, Falcon"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.581823348999023,
+ false
+ ]
+ ],
+ [
+ [
+ -16.29320526123047,
+ false
+ ]
+ ],
+ [
+ [
+ -29.092092514038086,
+ false
+ ]
+ ],
+ [
+ [
+ -26.421634674072266,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.581823348999023,
+ false
+ ],
+ [
+ -16.29320526123047,
+ false
+ ],
+ [
+ -29.092092514038086,
+ false
+ ],
+ [
+ -26.421634674072266,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f6ada91318d37cb7f383e38593a0e69095e66499aa66b673bcdc84d3a89c40e9",
+ "prompt_hash": "59bc8556ec178cc8d50dc761afb81b367a36dc4f12592b3bb9608d2bc6942926",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "Which benchmark is used to evaluate performance in a simulated e-commerce environment?",
+ "choices": [
+ "WebShop",
+ "WebArena",
+ "OpenAgent",
+ "SimWeb"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark is used to evaluate performance in a simulated e-commerce environment?\nAnswer:",
+ " WebShop"
+ ],
+ [
+ "Question:Which benchmark is used to evaluate performance in a simulated e-commerce environment?\nAnswer:",
+ " WebArena"
+ ],
+ [
+ "Question:Which benchmark is used to evaluate performance in a simulated e-commerce environment?\nAnswer:",
+ " OpenAgent"
+ ],
+ [
+ "Question:Which benchmark is used to evaluate performance in a simulated e-commerce environment?\nAnswer:",
+ " SimWeb"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.959060668945312,
+ false
+ ]
+ ],
+ [
+ [
+ -12.799799919128418,
+ false
+ ]
+ ],
+ [
+ [
+ -15.167540550231934,
+ false
+ ]
+ ],
+ [
+ [
+ -18.200868606567383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.959060668945312,
+ false
+ ],
+ [
+ -12.799799919128418,
+ false
+ ],
+ [
+ -15.167540550231934,
+ false
+ ],
+ [
+ -18.200868606567383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bcd557127a7ef8d24395fff0b170b5c6f0002615a0db26a1fac8c3f77df7782a",
+ "prompt_hash": "5923b738e042d2f50011132393f1b705029ab444f06fba66639ea6f14d902829",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "What was the zero-shot success rate of Agent Q in the real-world booking experiment?",
+ "choices": [
+ "81.7%",
+ "62.6%",
+ "67.2%",
+ "95.4%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What was the zero-shot success rate of Agent Q in the real-world booking experiment?\nAnswer:",
+ " 81.7%"
+ ],
+ [
+ "Question:What was the zero-shot success rate of Agent Q in the real-world booking experiment?\nAnswer:",
+ " 62.6%"
+ ],
+ [
+ "Question:What was the zero-shot success rate of Agent Q in the real-world booking experiment?\nAnswer:",
+ " 67.2%"
+ ],
+ [
+ "Question:What was the zero-shot success rate of Agent Q in the real-world booking experiment?\nAnswer:",
+ " 95.4%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.445587158203125,
+ false
+ ]
+ ],
+ [
+ [
+ -14.898151397705078,
+ false
+ ]
+ ],
+ [
+ [
+ -14.475791931152344,
+ false
+ ]
+ ],
+ [
+ [
+ -14.124256134033203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.445587158203125,
+ false
+ ],
+ [
+ -14.898151397705078,
+ false
+ ],
+ [
+ -14.475791931152344,
+ false
+ ],
+ [
+ -14.124256134033203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9b124c03b2602c4e92e8adcbfdb16a4ad8c364b3c126fb59a84f65b6cef4a1fc",
+ "prompt_hash": "0a95943469f8ba1096d26ad4f4a42c731bf57e1a3ca93c33dff45a879ee03016",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "Which algorithm is used to optimize the policy in the proposed training method?",
+ "choices": [
+ "Direct Preference Optimization (DPO)",
+ "Proximal Policy Optimization (PPO)",
+ "Q-learning",
+ "Actor-Critic"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which algorithm is used to optimize the policy in the proposed training method?\nAnswer:",
+ " Direct Preference Optimization (DPO)"
+ ],
+ [
+ "Question:Which algorithm is used to optimize the policy in the proposed training method?\nAnswer:",
+ " Proximal Policy Optimization (PPO)"
+ ],
+ [
+ "Question:Which algorithm is used to optimize the policy in the proposed training method?\nAnswer:",
+ " Q-learning"
+ ],
+ [
+ "Question:Which algorithm is used to optimize the policy in the proposed training method?\nAnswer:",
+ " Actor-Critic"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.699943542480469,
+ false
+ ]
+ ],
+ [
+ [
+ -8.01321792602539,
+ false
+ ]
+ ],
+ [
+ [
+ -4.749229907989502,
+ false
+ ]
+ ],
+ [
+ [
+ -8.794071197509766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.699943542480469,
+ false
+ ],
+ [
+ -8.01321792602539,
+ false
+ ],
+ [
+ -4.749229907989502,
+ false
+ ],
+ [
+ -8.794071197509766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7a8ffac9727722acc7e16ea4e31c950d04a2414d310d30d10782400f58c19526",
+ "prompt_hash": "929eea14da123173493f83ba8cafdaed60dab174680214e80fedcdf45aef33b5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "What is the average number of steps required to complete a task in the OpenTable environment?",
+ "choices": [
+ "13.9",
+ "6.8",
+ "20.3",
+ "10.5"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the average number of steps required to complete a task in the OpenTable environment?\nAnswer:",
+ " 13.9"
+ ],
+ [
+ "Question:What is the average number of steps required to complete a task in the OpenTable environment?\nAnswer:",
+ " 6.8"
+ ],
+ [
+ "Question:What is the average number of steps required to complete a task in the OpenTable environment?\nAnswer:",
+ " 20.3"
+ ],
+ [
+ "Question:What is the average number of steps required to complete a task in the OpenTable environment?\nAnswer:",
+ " 10.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.529898643493652,
+ false
+ ]
+ ],
+ [
+ [
+ -8.548165321350098,
+ false
+ ]
+ ],
+ [
+ [
+ -9.393954277038574,
+ false
+ ]
+ ],
+ [
+ [
+ -8.277305603027344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.529898643493652,
+ false
+ ],
+ [
+ -8.548165321350098,
+ false
+ ],
+ [
+ -9.393954277038574,
+ false
+ ],
+ [
+ -8.277305603027344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "661302f971fbae21fe155e9a5cf88b752f5af1e05fbb2c9bf77ac54642151bdd",
+ "prompt_hash": "1d55c170c55f70a6d6dbff3674955aab12ce4afd95c6b5036e2d432fe92c0d73",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What is the pass@128 accuracy of the RL model using CoT prompting on the miniF2F-test dataset?",
+ "choices": [
+ "51.6%",
+ "49.8%",
+ "50.4%",
+ "50.5%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the pass@128 accuracy of the RL model using CoT prompting on the miniF2F-test dataset?\nAnswer:",
+ " 51.6%"
+ ],
+ [
+ "Question:What is the pass@128 accuracy of the RL model using CoT prompting on the miniF2F-test dataset?\nAnswer:",
+ " 49.8%"
+ ],
+ [
+ "Question:What is the pass@128 accuracy of the RL model using CoT prompting on the miniF2F-test dataset?\nAnswer:",
+ " 50.4%"
+ ],
+ [
+ "Question:What is the pass@128 accuracy of the RL model using CoT prompting on the miniF2F-test dataset?\nAnswer:",
+ " 50.5%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.946520805358887,
+ false
+ ]
+ ],
+ [
+ [
+ -15.035083770751953,
+ false
+ ]
+ ],
+ [
+ [
+ -14.563060760498047,
+ false
+ ]
+ ],
+ [
+ [
+ -14.588592529296875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.946520805358887,
+ false
+ ],
+ [
+ -15.035083770751953,
+ false
+ ],
+ [
+ -14.563060760498047,
+ false
+ ],
+ [
+ -14.588592529296875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bea78ff6e30c23805612ce89fc7e2cefaea9962704630da8fc21a1edb3e75a45",
+ "prompt_hash": "31568cdaed8248fb9347dd0f50d2e6a40ffe00ebf9f77248d7a9fe570922cde2",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "What reward is assigned to a generated proof if it is verified as correct by the Lean prover?",
+ "choices": [
+ "1",
+ "0",
+ "0.5",
+ "2"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What reward is assigned to a generated proof if it is verified as correct by the Lean prover?\nAnswer:",
+ " 1"
+ ],
+ [
+ "Question:What reward is assigned to a generated proof if it is verified as correct by the Lean prover?\nAnswer:",
+ " 0"
+ ],
+ [
+ "Question:What reward is assigned to a generated proof if it is verified as correct by the Lean prover?\nAnswer:",
+ " 0.5"
+ ],
+ [
+ "Question:What reward is assigned to a generated proof if it is verified as correct by the Lean prover?\nAnswer:",
+ " 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.328453540802002,
+ false
+ ]
+ ],
+ [
+ [
+ -4.019128322601318,
+ false
+ ]
+ ],
+ [
+ [
+ -6.707319259643555,
+ false
+ ]
+ ],
+ [
+ [
+ -5.582779407501221,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.328453540802002,
+ false
+ ],
+ [
+ -4.019128322601318,
+ false
+ ],
+ [
+ -6.707319259643555,
+ false
+ ],
+ [
+ -5.582779407501221,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "81c2eecd521ab20a30312484726d6d4385d46d1dd5c6e3b646d62c95390c4d1e",
+ "prompt_hash": "db6dff08fbd10cab9630fb8848105787301cae9945b45dfc78f32ac6c943c813",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "What guiding information is added to the prompt during supervised fine-tuning to aid proof completion?",
+ "choices": [
+ "Intermediate tactic state as a comment block",
+ "Problem difficulty level",
+ "Proof hints from humans",
+ "External symbolic solvers"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What guiding information is added to the prompt during supervised fine-tuning to aid proof completion?\nAnswer:",
+ " Intermediate tactic state as a comment block"
+ ],
+ [
+ "Question:What guiding information is added to the prompt during supervised fine-tuning to aid proof completion?\nAnswer:",
+ " Problem difficulty level"
+ ],
+ [
+ "Question:What guiding information is added to the prompt during supervised fine-tuning to aid proof completion?\nAnswer:",
+ " Proof hints from humans"
+ ],
+ [
+ "Question:What guiding information is added to the prompt during supervised fine-tuning to aid proof completion?\nAnswer:",
+ " External symbolic solvers"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -48.464988708496094,
+ false
+ ]
+ ],
+ [
+ [
+ -23.567293167114258,
+ false
+ ]
+ ],
+ [
+ [
+ -25.195629119873047,
+ false
+ ]
+ ],
+ [
+ [
+ -31.9509220123291,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -48.464988708496094,
+ false
+ ],
+ [
+ -23.567293167114258,
+ false
+ ],
+ [
+ -25.195629119873047,
+ false
+ ],
+ [
+ -31.9509220123291,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3bd462c4b12de939d731deec2d9c2b24baecef0a3bc3cad2463612293aad9bbd",
+ "prompt_hash": "7ab890996c46750808a93880844c85ebc90272d8217bc68c896abac71c3d1c7b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "What dataset is used to evaluate high-school level theorem-proving performance?",
+ "choices": [
+ "miniF2F",
+ "ProofNet",
+ "LeanDojo",
+ "MATH"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What dataset is used to evaluate high-school level theorem-proving performance?\nAnswer:",
+ " miniF2F"
+ ],
+ [
+ "Question:What dataset is used to evaluate high-school level theorem-proving performance?\nAnswer:",
+ " ProofNet"
+ ],
+ [
+ "Question:What dataset is used to evaluate high-school level theorem-proving performance?\nAnswer:",
+ " LeanDojo"
+ ],
+ [
+ "Question:What dataset is used to evaluate high-school level theorem-proving performance?\nAnswer:",
+ " MATH"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.148351669311523,
+ false
+ ]
+ ],
+ [
+ [
+ -10.6226167678833,
+ false
+ ]
+ ],
+ [
+ [
+ -20.867656707763672,
+ false
+ ]
+ ],
+ [
+ [
+ -7.023367881774902,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.148351669311523,
+ false
+ ],
+ [
+ -10.6226167678833,
+ false
+ ],
+ [
+ -20.867656707763672,
+ false
+ ],
+ [
+ -7.023367881774902,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "66a9544783bca91ed0271a51b7911425a7e817ac41cfc9bbf1b22f97967d7f97",
+ "prompt_hash": "f12755e00fb283a488fd026d2cdba0e31b3fb40c906e349ed7a9b4dd052e4296",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "What is the purpose of the 'truncate-and-resume' mechanism in the tree search method?",
+ "choices": [
+ "To continue proof generation from the last verified step",
+ "To minimize inference time",
+ "To switch to a different model mid-proof",
+ "To discard all failed proof attempts"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the purpose of the 'truncate-and-resume' mechanism in the tree search method?\nAnswer:",
+ " To continue proof generation from the last verified step"
+ ],
+ [
+ "Question:What is the purpose of the 'truncate-and-resume' mechanism in the tree search method?\nAnswer:",
+ " To minimize inference time"
+ ],
+ [
+ "Question:What is the purpose of the 'truncate-and-resume' mechanism in the tree search method?\nAnswer:",
+ " To switch to a different model mid-proof"
+ ],
+ [
+ "Question:What is the purpose of the 'truncate-and-resume' mechanism in the tree search method?\nAnswer:",
+ " To discard all failed proof attempts"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -39.913795471191406,
+ false
+ ]
+ ],
+ [
+ [
+ -18.19488525390625,
+ false
+ ]
+ ],
+ [
+ [
+ -40.979583740234375,
+ false
+ ]
+ ],
+ [
+ [
+ -31.746326446533203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -39.913795471191406,
+ false
+ ],
+ [
+ -18.19488525390625,
+ false
+ ],
+ [
+ -40.979583740234375,
+ false
+ ],
+ [
+ -31.746326446533203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a5a46607c4afedd35a65857b77845b884203f0330d97aed61bcf885dd9c7fe0b",
+ "prompt_hash": "315a3809a2d4007dfeed2413ac84811418552960e915f01cb771ab3031e6fcd1",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What is the primary evaluation metric for Track 1 in ASVspoof~5?",
+ "choices": [
+ "Equal Error Rate (EER)",
+ "Tandem Detection Cost Function (t-DCF)",
+ "Minimum Detection Cost Function (minDCF)",
+ "Architecture-Agnostic Detection Cost Function (a-DCF)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary evaluation metric for Track 1 in ASVspoof~5?\nAnswer:",
+ " Equal Error Rate (EER)"
+ ],
+ [
+ "Question:What is the primary evaluation metric for Track 1 in ASVspoof~5?\nAnswer:",
+ " Tandem Detection Cost Function (t-DCF)"
+ ],
+ [
+ "Question:What is the primary evaluation metric for Track 1 in ASVspoof~5?\nAnswer:",
+ " Minimum Detection Cost Function (minDCF)"
+ ],
+ [
+ "Question:What is the primary evaluation metric for Track 1 in ASVspoof~5?\nAnswer:",
+ " Architecture-Agnostic Detection Cost Function (a-DCF)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.293449401855469,
+ false
+ ]
+ ],
+ [
+ [
+ -31.978302001953125,
+ false
+ ]
+ ],
+ [
+ [
+ -17.47964096069336,
+ false
+ ]
+ ],
+ [
+ [
+ -41.507606506347656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.293449401855469,
+ false
+ ],
+ [
+ -31.978302001953125,
+ false
+ ],
+ [
+ -17.47964096069336,
+ false
+ ],
+ [
+ -41.507606506347656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "95d3ba17b14751019214fa4ae9518138be8ff4a6b03f3e88ff5cbe369c6bb78d",
+ "prompt_hash": "2990d2f55d6dc5185802979087c79d0697bcbbe40d9deeb2f34554bb1ef0c0d8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "Which dataset is used as the source for ASVspoof~5 database?",
+ "choices": [
+ "VCTK Corpus",
+ "Librispeech Clean",
+ "CommonVoice",
+ "Multilingual Librispeech (MLS) English partition"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which dataset is used as the source for ASVspoof~5 database?\nAnswer:",
+ " VCTK Corpus"
+ ],
+ [
+ "Question:Which dataset is used as the source for ASVspoof~5 database?\nAnswer:",
+ " Librispeech Clean"
+ ],
+ [
+ "Question:Which dataset is used as the source for ASVspoof~5 database?\nAnswer:",
+ " CommonVoice"
+ ],
+ [
+ "Question:Which dataset is used as the source for ASVspoof~5 database?\nAnswer:",
+ " Multilingual Librispeech (MLS) English partition"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.687994003295898,
+ false
+ ]
+ ],
+ [
+ [
+ -21.001323699951172,
+ false
+ ]
+ ],
+ [
+ [
+ -10.582550048828125,
+ false
+ ]
+ ],
+ [
+ [
+ -39.72848129272461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.687994003295898,
+ false
+ ],
+ [
+ -21.001323699951172,
+ false
+ ],
+ [
+ -10.582550048828125,
+ false
+ ],
+ [
+ -39.72848129272461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5bf324f6272f99e64abdb10484dbd372127010afacd962840086cabdbc778e16",
+ "prompt_hash": "2330b3711bd77be2ac52843201f12f5d6d53f885329c0cf9fae3e7365cb83525",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "Which two pre-trained systems are used in ASVspoof~5 to perform zero-shot voice cloning?",
+ "choices": [
+ "Tacotron2 and WaveGlow",
+ "YourTTS and XTTS",
+ "FastSpeech and DeepVoice",
+ "Glow-TTS and MelGAN"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which two pre-trained systems are used in ASVspoof~5 to perform zero-shot voice cloning?\nAnswer:",
+ " Tacotron2 and WaveGlow"
+ ],
+ [
+ "Question:Which two pre-trained systems are used in ASVspoof~5 to perform zero-shot voice cloning?\nAnswer:",
+ " YourTTS and XTTS"
+ ],
+ [
+ "Question:Which two pre-trained systems are used in ASVspoof~5 to perform zero-shot voice cloning?\nAnswer:",
+ " FastSpeech and DeepVoice"
+ ],
+ [
+ "Question:Which two pre-trained systems are used in ASVspoof~5 to perform zero-shot voice cloning?\nAnswer:",
+ " Glow-TTS and MelGAN"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.865249633789062,
+ false
+ ]
+ ],
+ [
+ [
+ -27.683504104614258,
+ false
+ ]
+ ],
+ [
+ [
+ -19.734195709228516,
+ false
+ ]
+ ],
+ [
+ [
+ -25.660432815551758,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.865249633789062,
+ false
+ ],
+ [
+ -27.683504104614258,
+ false
+ ],
+ [
+ -19.734195709228516,
+ false
+ ],
+ [
+ -25.660432815551758,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2db558857d21d05a1c8a6fa58aeff22e54d375701abcb3140367b8bee946e24a",
+ "prompt_hash": "6389dcbde532b910b8790d57751c0cdcf9247572d9f7ca74529c8c6a47fb7287",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "What is the speaker encoder used in the common ASV system provided by ASVspoof~5 organisers?",
+ "choices": [
+ "TDNN-F",
+ "ECAPA-TDNN",
+ "Conformer-XL",
+ "X-Vector"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the speaker encoder used in the common ASV system provided by ASVspoof~5 organisers?\nAnswer:",
+ " TDNN-F"
+ ],
+ [
+ "Question:What is the speaker encoder used in the common ASV system provided by ASVspoof~5 organisers?\nAnswer:",
+ " ECAPA-TDNN"
+ ],
+ [
+ "Question:What is the speaker encoder used in the common ASV system provided by ASVspoof~5 organisers?\nAnswer:",
+ " Conformer-XL"
+ ],
+ [
+ "Question:What is the speaker encoder used in the common ASV system provided by ASVspoof~5 organisers?\nAnswer:",
+ " X-Vector"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.269363403320312,
+ false
+ ]
+ ],
+ [
+ [
+ -7.209596157073975,
+ false
+ ]
+ ],
+ [
+ [
+ -12.833272933959961,
+ false
+ ]
+ ],
+ [
+ [
+ -11.507760047912598,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.269363403320312,
+ false
+ ],
+ [
+ -7.209596157073975,
+ false
+ ],
+ [
+ -12.833272933959961,
+ false
+ ],
+ [
+ -11.507760047912598,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4617e752ea45a441df277dfe97cdfbe02b4ce00b0138647f2860fe561600d97e",
+ "prompt_hash": "ccf9aa7d197663dcc62b2793d0c6bae5b70d0fda8efc656d19f5f3a46002e3a5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "Which attack filter introduced in ASVspoof~5 escalates the threat of spoofed data to ASV systems?",
+ "choices": [
+ "Malafide",
+ "Malacopula",
+ "MFA-Conformer",
+ "ZMM-TTS"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which attack filter introduced in ASVspoof~5 escalates the threat of spoofed data to ASV systems?\nAnswer:",
+ " Malafide"
+ ],
+ [
+ "Question:Which attack filter introduced in ASVspoof~5 escalates the threat of spoofed data to ASV systems?\nAnswer:",
+ " Malacopula"
+ ],
+ [
+ "Question:Which attack filter introduced in ASVspoof~5 escalates the threat of spoofed data to ASV systems?\nAnswer:",
+ " MFA-Conformer"
+ ],
+ [
+ "Question:Which attack filter introduced in ASVspoof~5 escalates the threat of spoofed data to ASV systems?\nAnswer:",
+ " ZMM-TTS"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.35630226135254,
+ false
+ ]
+ ],
+ [
+ [
+ -30.244190216064453,
+ false
+ ]
+ ],
+ [
+ [
+ -26.727115631103516,
+ false
+ ]
+ ],
+ [
+ [
+ -24.757612228393555,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.35630226135254,
+ false
+ ],
+ [
+ -30.244190216064453,
+ false
+ ],
+ [
+ -26.727115631103516,
+ false
+ ],
+ [
+ -24.757612228393555,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0fb2458d508f2d9147675e4363f0942d600d225d663c5fc2ee26073611a48489",
+ "prompt_hash": "328fce83d3ace1b2ab7bf92fb975d199a432f841f1ee570bc90ade3a388e2066",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "What is the loss function used to train text tokens in Transfusion?",
+ "choices": [
+ "Contrastive loss",
+ "Perplexity loss",
+ "Next-token prediction (LM loss)",
+ "Reconstruction loss"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the loss function used to train text tokens in Transfusion?\nAnswer:",
+ " Contrastive loss"
+ ],
+ [
+ "Question:What is the loss function used to train text tokens in Transfusion?\nAnswer:",
+ " Perplexity loss"
+ ],
+ [
+ "Question:What is the loss function used to train text tokens in Transfusion?\nAnswer:",
+ " Next-token prediction (LM loss)"
+ ],
+ [
+ "Question:What is the loss function used to train text tokens in Transfusion?\nAnswer:",
+ " Reconstruction loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.832241058349609,
+ false
+ ]
+ ],
+ [
+ [
+ -10.432533264160156,
+ false
+ ]
+ ],
+ [
+ [
+ -28.241981506347656,
+ false
+ ]
+ ],
+ [
+ [
+ -10.100059509277344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.832241058349609,
+ false
+ ],
+ [
+ -10.432533264160156,
+ false
+ ],
+ [
+ -28.241981506347656,
+ false
+ ],
+ [
+ -10.100059509277344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6b0ace319fe15fa9f5d0bf46932d99e5bd2793db908e2c5b2f2bb258b28f6072",
+ "prompt_hash": "570aa441db2093a1b3421527b81e83562db6be29dde0a696b673b704491a7ddb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "Which patch encoding architecture improves Transfusion’s image generation performance the most?",
+ "choices": [
+ "Linear layer with attention",
+ "U-Net with AdaLayerNorm",
+ "U-Net with regular layer norm",
+ "Convolutional GRU blocks"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which patch encoding architecture improves Transfusion’s image generation performance the most?\nAnswer:",
+ " Linear layer with attention"
+ ],
+ [
+ "Question:Which patch encoding architecture improves Transfusion’s image generation performance the most?\nAnswer:",
+ " U-Net with AdaLayerNorm"
+ ],
+ [
+ "Question:Which patch encoding architecture improves Transfusion’s image generation performance the most?\nAnswer:",
+ " U-Net with regular layer norm"
+ ],
+ [
+ "Question:Which patch encoding architecture improves Transfusion’s image generation performance the most?\nAnswer:",
+ " Convolutional GRU blocks"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.62102508544922,
+ false
+ ]
+ ],
+ [
+ [
+ -32.28581237792969,
+ false
+ ]
+ ],
+ [
+ [
+ -31.470565795898438,
+ false
+ ]
+ ],
+ [
+ [
+ -27.30034637451172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.62102508544922,
+ false
+ ],
+ [
+ -32.28581237792969,
+ false
+ ],
+ [
+ -31.470565795898438,
+ false
+ ],
+ [
+ -27.30034637451172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "29cae45755b78d5aedaa01332ccf6118f4c9b014417563694179a1960d6fc7e9",
+ "prompt_hash": "a1c19527a1165a8e5d2900fbc716ef9b0a394aaa0a23aef8dc8bcaca1f488f21",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "What is the purpose of the BOI and EOI tokens in Transfusion?",
+ "choices": [
+ "To indicate the boundaries of text sequences",
+ "To mark the beginning and end of the entire multi-modal document",
+ "To separate images from each other during training",
+ "To surround image sequences in mixed-modal examples"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the purpose of the BOI and EOI tokens in Transfusion?\nAnswer:",
+ " To indicate the boundaries of text sequences"
+ ],
+ [
+ "Question:What is the purpose of the BOI and EOI tokens in Transfusion?\nAnswer:",
+ " To mark the beginning and end of the entire multi-modal document"
+ ],
+ [
+ "Question:What is the purpose of the BOI and EOI tokens in Transfusion?\nAnswer:",
+ " To separate images from each other during training"
+ ],
+ [
+ "Question:What is the purpose of the BOI and EOI tokens in Transfusion?\nAnswer:",
+ " To surround image sequences in mixed-modal examples"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.421863555908203,
+ false
+ ]
+ ],
+ [
+ [
+ -33.25529861450195,
+ false
+ ]
+ ],
+ [
+ [
+ -27.936172485351562,
+ false
+ ]
+ ],
+ [
+ [
+ -54.490135192871094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.421863555908203,
+ false
+ ],
+ [
+ -33.25529861450195,
+ false
+ ],
+ [
+ -27.936172485351562,
+ false
+ ],
+ [
+ -54.490135192871094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2caec057216248e225a486a5981b79b5095d183fd431a4d2e6425a38484e4039",
+ "prompt_hash": "91cb037498b2189102728567418847c093f76af545eaaed3fd616858c3e8827f",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "What metric is used to evaluate text-to-image alignment in Transfusion?",
+ "choices": [
+ "BLEU score",
+ "FID score",
+ "CLIP score",
+ "ROUGE-L score"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What metric is used to evaluate text-to-image alignment in Transfusion?\nAnswer:",
+ " BLEU score"
+ ],
+ [
+ "Question:What metric is used to evaluate text-to-image alignment in Transfusion?\nAnswer:",
+ " FID score"
+ ],
+ [
+ "Question:What metric is used to evaluate text-to-image alignment in Transfusion?\nAnswer:",
+ " CLIP score"
+ ],
+ [
+ "Question:What metric is used to evaluate text-to-image alignment in Transfusion?\nAnswer:",
+ " ROUGE-L score"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.753241539001465,
+ false
+ ]
+ ],
+ [
+ [
+ -8.78629207611084,
+ false
+ ]
+ ],
+ [
+ [
+ -6.556405067443848,
+ false
+ ]
+ ],
+ [
+ [
+ -14.04121208190918,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.753241539001465,
+ false
+ ],
+ [
+ -8.78629207611084,
+ false
+ ],
+ [
+ -6.556405067443848,
+ false
+ ],
+ [
+ -14.04121208190918,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b521b9c06830e960b02ae0ea71ffdfa87e7339a23c2d6484253ad1161c0301cb",
+ "prompt_hash": "ce159dbcd9e01068e8c6c93f0f5b4e4a654718f7d8ad80f9ba8381063ac2c2bd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "Which dataset provides the 2T tokens used for Transfusion's large-scale training?",
+ "choices": [
+ "LAION-5B and C4",
+ "Wikipedia and ImageNet",
+ "Llama 2 corpus and Shutterstock + Conceptual 12M",
+ "OpenWebText and MS-COCO"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset provides the 2T tokens used for Transfusion's large-scale training?\nAnswer:",
+ " LAION-5B and C4"
+ ],
+ [
+ "Question:Which dataset provides the 2T tokens used for Transfusion's large-scale training?\nAnswer:",
+ " Wikipedia and ImageNet"
+ ],
+ [
+ "Question:Which dataset provides the 2T tokens used for Transfusion's large-scale training?\nAnswer:",
+ " Llama 2 corpus and Shutterstock + Conceptual 12M"
+ ],
+ [
+ "Question:Which dataset provides the 2T tokens used for Transfusion's large-scale training?\nAnswer:",
+ " OpenWebText and MS-COCO"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.460792541503906,
+ false
+ ]
+ ],
+ [
+ [
+ -15.87649917602539,
+ false
+ ]
+ ],
+ [
+ [
+ -65.93722534179688,
+ false
+ ]
+ ],
+ [
+ [
+ -22.97542953491211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.460792541503906,
+ false
+ ],
+ [
+ -15.87649917602539,
+ false
+ ],
+ [
+ -65.93722534179688,
+ false
+ ],
+ [
+ -22.97542953491211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ce183691522901f523c3138a5c649a02dbdbd4008d6c70d0596b60660ff8963f",
+ "prompt_hash": "7a61699516049970699cc38aeb4d62adb1611a28704277f83b5ad9d41bdf14f9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What key feature distinguishes Kolmogorov-Arnold Networks (KANs) from multilayer perceptrons (MLPs)?",
+ "choices": [
+ "KANs use learnable activation functions on edges",
+ "KANs have fixed activation functions on nodes",
+ "KANs use convolutional layers instead of fully connected layers",
+ "KANs rely on recurrent architectures for interpretability"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What key feature distinguishes Kolmogorov-Arnold Networks (KANs) from multilayer perceptrons (MLPs)?\nAnswer:",
+ " KANs use learnable activation functions on edges"
+ ],
+ [
+ "Question:What key feature distinguishes Kolmogorov-Arnold Networks (KANs) from multilayer perceptrons (MLPs)?\nAnswer:",
+ " KANs have fixed activation functions on nodes"
+ ],
+ [
+ "Question:What key feature distinguishes Kolmogorov-Arnold Networks (KANs) from multilayer perceptrons (MLPs)?\nAnswer:",
+ " KANs use convolutional layers instead of fully connected layers"
+ ],
+ [
+ "Question:What key feature distinguishes Kolmogorov-Arnold Networks (KANs) from multilayer perceptrons (MLPs)?\nAnswer:",
+ " KANs rely on recurrent architectures for interpretability"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.835132598876953,
+ false
+ ]
+ ],
+ [
+ [
+ -25.078359603881836,
+ false
+ ]
+ ],
+ [
+ [
+ -14.701416015625,
+ false
+ ]
+ ],
+ [
+ [
+ -32.338748931884766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.835132598876953,
+ false
+ ],
+ [
+ -25.078359603881836,
+ false
+ ],
+ [
+ -14.701416015625,
+ false
+ ],
+ [
+ -32.338748931884766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2d5acfa87e3ab29480130d3e939c998ab2e76f35cb68b702fb4f7e3bf7909d32",
+ "prompt_hash": "aed15bb52a7728777f97d79fb23a7e5e41c96fedefd5d574c8fa3267850a078b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "What is the primary enhancement that MultKAN introduces over the original KAN?",
+ "choices": [
+ "It introduces explicit multiplication operations between subnodes",
+ "It replaces all activation functions with ReLU",
+ "It allows recurrent feedback connections",
+ "It removes all addition nodes to reduce complexity"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the primary enhancement that MultKAN introduces over the original KAN?\nAnswer:",
+ " It introduces explicit multiplication operations between subnodes"
+ ],
+ [
+ "Question:What is the primary enhancement that MultKAN introduces over the original KAN?\nAnswer:",
+ " It replaces all activation functions with ReLU"
+ ],
+ [
+ "Question:What is the primary enhancement that MultKAN introduces over the original KAN?\nAnswer:",
+ " It allows recurrent feedback connections"
+ ],
+ [
+ "Question:What is the primary enhancement that MultKAN introduces over the original KAN?\nAnswer:",
+ " It removes all addition nodes to reduce complexity"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -34.7784538269043,
+ false
+ ]
+ ],
+ [
+ [
+ -20.881629943847656,
+ false
+ ]
+ ],
+ [
+ [
+ -27.06278419494629,
+ false
+ ]
+ ],
+ [
+ [
+ -40.277320861816406,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -34.7784538269043,
+ false
+ ],
+ [
+ -20.881629943847656,
+ false
+ ],
+ [
+ -27.06278419494629,
+ false
+ ],
+ [
+ -40.277320861816406,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fb27a0f9ec84e9f94e9b94583d80b07de729f25497b2c72e4719f5ff0483d5be",
+ "prompt_hash": "f0c4cbb2d6ce4e80ffa1c1860fc18807ddf434f9b562da0fe5cd3e73656c49fa",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "What is the purpose of the 'kanpiler' tool introduced in the paper?",
+ "choices": [
+ "To convert symbolic formulas into KAN architectures",
+ "To extract symbolic expressions from trained KANs",
+ "To optimize KAN performance through weight pruning",
+ "To compress large KANs into smaller versions"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the purpose of the 'kanpiler' tool introduced in the paper?\nAnswer:",
+ " To convert symbolic formulas into KAN architectures"
+ ],
+ [
+ "Question:What is the purpose of the 'kanpiler' tool introduced in the paper?\nAnswer:",
+ " To extract symbolic expressions from trained KANs"
+ ],
+ [
+ "Question:What is the purpose of the 'kanpiler' tool introduced in the paper?\nAnswer:",
+ " To optimize KAN performance through weight pruning"
+ ],
+ [
+ "Question:What is the purpose of the 'kanpiler' tool introduced in the paper?\nAnswer:",
+ " To compress large KANs into smaller versions"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -37.53588104248047,
+ false
+ ]
+ ],
+ [
+ [
+ -38.3877067565918,
+ false
+ ]
+ ],
+ [
+ [
+ -34.88467025756836,
+ false
+ ]
+ ],
+ [
+ [
+ -30.9049072265625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -37.53588104248047,
+ false
+ ],
+ [
+ -38.3877067565918,
+ false
+ ],
+ [
+ -34.88467025756836,
+ false
+ ],
+ [
+ -30.9049072265625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aaeac0339e72fc575d316c42e2c96a6e83d98979c63d77b1374b1e94e07143a5",
+ "prompt_hash": "ca2994149774fcb47bcb0098296ea6473f8ad6dbe711695fccf9a6c6044922bc",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "Which method is introduced to assign scores to input variables in KANs to reflect their importance?",
+ "choices": [
+ "Attribution score",
+ "Gradient clipping",
+ "Dropout rate",
+ "Batch normalization"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which method is introduced to assign scores to input variables in KANs to reflect their importance?\nAnswer:",
+ " Attribution score"
+ ],
+ [
+ "Question:Which method is introduced to assign scores to input variables in KANs to reflect their importance?\nAnswer:",
+ " Gradient clipping"
+ ],
+ [
+ "Question:Which method is introduced to assign scores to input variables in KANs to reflect their importance?\nAnswer:",
+ " Dropout rate"
+ ],
+ [
+ "Question:Which method is introduced to assign scores to input variables in KANs to reflect their importance?\nAnswer:",
+ " Batch normalization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.220232963562012,
+ false
+ ]
+ ],
+ [
+ [
+ -13.326740264892578,
+ false
+ ]
+ ],
+ [
+ [
+ -16.06420135498047,
+ false
+ ]
+ ],
+ [
+ [
+ -12.452866554260254,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.220232963562012,
+ false
+ ],
+ [
+ -13.326740264892578,
+ false
+ ],
+ [
+ -16.06420135498047,
+ false
+ ],
+ [
+ -12.452866554260254,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f2198d6262fe8ca5c6bec0aa07d9085fe88f229976cde0456857cb3a842d1e58",
+ "prompt_hash": "2f05faff3fb35d1886cbf3237ae1313cbf1f731bd8403d103c36c10ca9cd99e0",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "What property must a function satisfy to be considered additively separable?",
+ "choices": [
+ "It can be expressed as the sum of functions over non-overlapping variable groups",
+ "It is invariant under any permutation of its variables",
+ "It only involves multiplicative combinations of inputs",
+ "It satisfies the condition of zero second derivatives across all input variables"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What property must a function satisfy to be considered additively separable?\nAnswer:",
+ " It can be expressed as the sum of functions over non-overlapping variable groups"
+ ],
+ [
+ "Question:What property must a function satisfy to be considered additively separable?\nAnswer:",
+ " It is invariant under any permutation of its variables"
+ ],
+ [
+ "Question:What property must a function satisfy to be considered additively separable?\nAnswer:",
+ " It only involves multiplicative combinations of inputs"
+ ],
+ [
+ "Question:What property must a function satisfy to be considered additively separable?\nAnswer:",
+ " It satisfies the condition of zero second derivatives across all input variables"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -51.171424865722656,
+ false
+ ]
+ ],
+ [
+ [
+ -22.00145721435547,
+ false
+ ]
+ ],
+ [
+ [
+ -32.46794128417969,
+ false
+ ]
+ ],
+ [
+ [
+ -46.33948516845703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -51.171424865722656,
+ false
+ ],
+ [
+ -22.00145721435547,
+ false
+ ],
+ [
+ -32.46794128417969,
+ false
+ ],
+ [
+ -46.33948516845703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ca1ded857af8cbbce2e7be004360e511f4a4b7dab07917fcbbec93bc80290b7c",
+ "prompt_hash": "43d2ceabec8b8b54d9da9df9ae1d9e73050475a31ca8789daf1e6e1f3a5074a5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "What is the total number of A100 GPUs used to pretrain the Sapiens-2B model?",
+ "choices": [
+ "512",
+ "768",
+ "1024",
+ "2048"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total number of A100 GPUs used to pretrain the Sapiens-2B model?\nAnswer:",
+ " 512"
+ ],
+ [
+ "Question:What is the total number of A100 GPUs used to pretrain the Sapiens-2B model?\nAnswer:",
+ " 768"
+ ],
+ [
+ "Question:What is the total number of A100 GPUs used to pretrain the Sapiens-2B model?\nAnswer:",
+ " 1024"
+ ],
+ [
+ "Question:What is the total number of A100 GPUs used to pretrain the Sapiens-2B model?\nAnswer:",
+ " 2048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.625455379486084,
+ false
+ ]
+ ],
+ [
+ [
+ -7.575810432434082,
+ false
+ ]
+ ],
+ [
+ [
+ -7.642750263214111,
+ false
+ ]
+ ],
+ [
+ [
+ -8.01429557800293,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.625455379486084,
+ false
+ ],
+ [
+ -7.575810432434082,
+ false
+ ],
+ [
+ -7.642750263214111,
+ false
+ ],
+ [
+ -8.01429557800293,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "528dd299433b3d911f39a72b35f638ff4c8a8cedde10d8c3ac216018203cac9e",
+ "prompt_hash": "0789a74cd22126b5cbae6c1be7e15e03778db286e3bf042ec9dd5b0bd6b34b50",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "What is the masking ratio used during pretraining in the masked autoencoder setup?",
+ "choices": [
+ "75%",
+ "80%",
+ "90%",
+ "95%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the masking ratio used during pretraining in the masked autoencoder setup?\nAnswer:",
+ " 75%"
+ ],
+ [
+ "Question:What is the masking ratio used during pretraining in the masked autoencoder setup?\nAnswer:",
+ " 80%"
+ ],
+ [
+ "Question:What is the masking ratio used during pretraining in the masked autoencoder setup?\nAnswer:",
+ " 90%"
+ ],
+ [
+ "Question:What is the masking ratio used during pretraining in the masked autoencoder setup?\nAnswer:",
+ " 95%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.97347354888916,
+ false
+ ]
+ ],
+ [
+ [
+ -9.670283317565918,
+ false
+ ]
+ ],
+ [
+ [
+ -10.75654125213623,
+ false
+ ]
+ ],
+ [
+ [
+ -11.948522567749023,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.97347354888916,
+ false
+ ],
+ [
+ -9.670283317565918,
+ false
+ ],
+ [
+ -10.75654125213623,
+ false
+ ],
+ [
+ -11.948522567749023,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e8382292752998f36fe4788c6504c9081c1414f2d0968a303ced787a1a38c768",
+ "prompt_hash": "27d9f7078490b4956caea33002cad3f1b07ad508db4129edf312f78eb525cf18",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "How many facial keypoints are included in the new detailed skeleton used for 2D pose estimation?",
+ "choices": [
+ "68",
+ "133",
+ "243",
+ "308"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many facial keypoints are included in the new detailed skeleton used for 2D pose estimation?\nAnswer:",
+ " 68"
+ ],
+ [
+ "Question:How many facial keypoints are included in the new detailed skeleton used for 2D pose estimation?\nAnswer:",
+ " 133"
+ ],
+ [
+ "Question:How many facial keypoints are included in the new detailed skeleton used for 2D pose estimation?\nAnswer:",
+ " 243"
+ ],
+ [
+ "Question:How many facial keypoints are included in the new detailed skeleton used for 2D pose estimation?\nAnswer:",
+ " 308"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.453620910644531,
+ false
+ ]
+ ],
+ [
+ [
+ -8.351236343383789,
+ false
+ ]
+ ],
+ [
+ [
+ -9.181026458740234,
+ false
+ ]
+ ],
+ [
+ [
+ -8.84392261505127,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.453620910644531,
+ false
+ ],
+ [
+ -8.351236343383789,
+ false
+ ],
+ [
+ -9.181026458740234,
+ false
+ ],
+ [
+ -8.84392261505127,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dfd9b997c52aa078ec356428d1c4511a2bad04a2dfd3edfccbf0978417918deb",
+ "prompt_hash": "108d87a3f6ded0b18c149bed498682e004bbe4a51516edc01fd171d7b90b72df",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "How many synthetic images are rendered for training the depth estimation model?",
+ "choices": [
+ "100,000",
+ "250,000",
+ "500,000",
+ "1,000,000"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many synthetic images are rendered for training the depth estimation model?\nAnswer:",
+ " 100,000"
+ ],
+ [
+ "Question:How many synthetic images are rendered for training the depth estimation model?\nAnswer:",
+ " 250,000"
+ ],
+ [
+ "Question:How many synthetic images are rendered for training the depth estimation model?\nAnswer:",
+ " 500,000"
+ ],
+ [
+ "Question:How many synthetic images are rendered for training the depth estimation model?\nAnswer:",
+ " 1,000,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.2633056640625,
+ false
+ ]
+ ],
+ [
+ [
+ -9.151877403259277,
+ false
+ ]
+ ],
+ [
+ [
+ -8.701854705810547,
+ false
+ ]
+ ],
+ [
+ [
+ -8.134246826171875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.2633056640625,
+ false
+ ],
+ [
+ -9.151877403259277,
+ false
+ ],
+ [
+ -8.701854705810547,
+ false
+ ],
+ [
+ -8.134246826171875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a530c8a96b5dcf04ebb711438555ef1844421b25d1bd65e8a7d1179ec529fb08",
+ "prompt_hash": "de28faf4590b46ded02d75a918fc983f41e86d217d29fcb34fcc6aac506ff354",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What is the number of classes in the new vocabulary used for body-part segmentation?",
+ "choices": [
+ "20",
+ "25",
+ "28",
+ "30"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the number of classes in the new vocabulary used for body-part segmentation?\nAnswer:",
+ " 20"
+ ],
+ [
+ "Question:What is the number of classes in the new vocabulary used for body-part segmentation?\nAnswer:",
+ " 25"
+ ],
+ [
+ "Question:What is the number of classes in the new vocabulary used for body-part segmentation?\nAnswer:",
+ " 28"
+ ],
+ [
+ "Question:What is the number of classes in the new vocabulary used for body-part segmentation?\nAnswer:",
+ " 30"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.645571708679199,
+ false
+ ]
+ ],
+ [
+ [
+ -5.531121253967285,
+ false
+ ]
+ ],
+ [
+ [
+ -6.0805463790893555,
+ false
+ ]
+ ],
+ [
+ [
+ -4.977658271789551,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.645571708679199,
+ false
+ ],
+ [
+ -5.531121253967285,
+ false
+ ],
+ [
+ -6.0805463790893555,
+ false
+ ],
+ [
+ -4.977658271789551,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2155b83e33c84634108fee0adac58d9233fc4ae33e1af8a63ee713084ec1c697",
+ "prompt_hash": "daf55490b1941e597310bfb2fbc17a7bbef7e53bbeb445d5de70be9b1a9a66dd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the total number of parameters in the self-attention architecture model using Mistral-7B and SigLIP-SO400M?",
+ "choices": [
+ "A. 10B",
+ "B. 8.3B",
+ "C. 7.4B",
+ "D. 12.1B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the total number of parameters in the self-attention architecture model using Mistral-7B and SigLIP-SO400M?\nAnswer:",
+ " A. 10B"
+ ],
+ [
+ "Question:What is the total number of parameters in the self-attention architecture model using Mistral-7B and SigLIP-SO400M?\nAnswer:",
+ " B. 8.3B"
+ ],
+ [
+ "Question:What is the total number of parameters in the self-attention architecture model using Mistral-7B and SigLIP-SO400M?\nAnswer:",
+ " C. 7.4B"
+ ],
+ [
+ "Question:What is the total number of parameters in the self-attention architecture model using Mistral-7B and SigLIP-SO400M?\nAnswer:",
+ " D. 12.1B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.912111282348633,
+ false
+ ]
+ ],
+ [
+ [
+ -26.02424430847168,
+ false
+ ]
+ ],
+ [
+ [
+ -25.916641235351562,
+ false
+ ]
+ ],
+ [
+ [
+ -29.070547103881836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.912111282348633,
+ false
+ ],
+ [
+ -26.02424430847168,
+ false
+ ],
+ [
+ -25.916641235351562,
+ false
+ ],
+ [
+ -29.070547103881836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3186417562470569683dcde8ba032394572cd147a9accfdf3a8415b0dddc5574",
+ "prompt_hash": "f1275803e5fe3ae87a49bb0ba73b02f83e368b95c61df7c05fda292ac06ff3f4",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "Which model feeds image patches directly into the language model using a simple linear projection?",
+ "choices": [
+ "A. Idefics3",
+ "B. LLaVA",
+ "C. Fuyu",
+ "D. BLIP2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model feeds image patches directly into the language model using a simple linear projection?\nAnswer:",
+ " A. Idefics3"
+ ],
+ [
+ "Question:Which model feeds image patches directly into the language model using a simple linear projection?\nAnswer:",
+ " B. LLaVA"
+ ],
+ [
+ "Question:Which model feeds image patches directly into the language model using a simple linear projection?\nAnswer:",
+ " C. Fuyu"
+ ],
+ [
+ "Question:Which model feeds image patches directly into the language model using a simple linear projection?\nAnswer:",
+ " D. BLIP2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.24394416809082,
+ false
+ ]
+ ],
+ [
+ [
+ -21.120861053466797,
+ false
+ ]
+ ],
+ [
+ [
+ -27.182903289794922,
+ false
+ ]
+ ],
+ [
+ [
+ -22.341655731201172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.24394416809082,
+ false
+ ],
+ [
+ -21.120861053466797,
+ false
+ ],
+ [
+ -27.182903289794922,
+ false
+ ],
+ [
+ -22.341655731201172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4e044d2aaa20375be6cd8c444dca3b26a8dab26ce04dc4bc9ca080f73e9b67d4",
+ "prompt_hash": "724be7e74e772a2e41442b4f177b04d04d82390c745bc0803b5e18d09232a6d7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "What token is inserted after each row of tiles in Idefics3 to preserve spatial layout?",
+ "choices": [
+ "A. ",
+ "B. ",
+ "C. ",
+ "D. \\n"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What token is inserted after each row of tiles in Idefics3 to preserve spatial layout?\nAnswer:",
+ " A. "
+ ],
+ [
+ "Question:What token is inserted after each row of tiles in Idefics3 to preserve spatial layout?\nAnswer:",
+ " B. "
+ ],
+ [
+ "Question:What token is inserted after each row of tiles in Idefics3 to preserve spatial layout?\nAnswer:",
+ " C. "
+ ],
+ [
+ "Question:What token is inserted after each row of tiles in Idefics3 to preserve spatial layout?\nAnswer:",
+ " D. \\n"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.776901245117188,
+ false
+ ]
+ ],
+ [
+ [
+ -26.64897918701172,
+ false
+ ]
+ ],
+ [
+ [
+ -30.480342864990234,
+ false
+ ]
+ ],
+ [
+ [
+ -20.79037094116211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.776901245117188,
+ false
+ ],
+ [
+ -26.64897918701172,
+ false
+ ],
+ [
+ -30.480342864990234,
+ false
+ ],
+ [
+ -20.79037094116211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7252e08a4477e278086b5719b659420ecbbe5c6b03d49ff0430c5d1b75f442c7",
+ "prompt_hash": "6f9e27249956f97a187ee548ff99115a8575ea2f5fa94228895a4fc701f1938d",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "How many QA pairs does the Docmatix dataset contain?",
+ "choices": [
+ "A. 2.4 million",
+ "B. 1.3 million",
+ "C. 9.5 million",
+ "D. 40 thousand"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many QA pairs does the Docmatix dataset contain?\nAnswer:",
+ " A. 2.4 million"
+ ],
+ [
+ "Question:How many QA pairs does the Docmatix dataset contain?\nAnswer:",
+ " B. 1.3 million"
+ ],
+ [
+ "Question:How many QA pairs does the Docmatix dataset contain?\nAnswer:",
+ " C. 9.5 million"
+ ],
+ [
+ "Question:How many QA pairs does the Docmatix dataset contain?\nAnswer:",
+ " D. 40 thousand"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.991960525512695,
+ false
+ ]
+ ],
+ [
+ [
+ -25.32790756225586,
+ false
+ ]
+ ],
+ [
+ [
+ -27.947509765625,
+ false
+ ]
+ ],
+ [
+ [
+ -26.229846954345703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.991960525512695,
+ false
+ ],
+ [
+ -25.32790756225586,
+ false
+ ],
+ [
+ -27.947509765625,
+ false
+ ],
+ [
+ -26.229846954345703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0ac12468abd789b0f9037786e07f66561aa6aff5b692663db49d0947cbc58283",
+ "prompt_hash": "be81629cf550f614486bee6f4e41327c8b3d3a1ec1029e2750ce0c8b6f2214ba",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "Which benchmark score is used to evaluate performance on the DocVQA task?",
+ "choices": [
+ "A. Accuracy",
+ "B. ANLS",
+ "C. BLEU",
+ "D. VQA Score"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark score is used to evaluate performance on the DocVQA task?\nAnswer:",
+ " A. Accuracy"
+ ],
+ [
+ "Question:Which benchmark score is used to evaluate performance on the DocVQA task?\nAnswer:",
+ " B. ANLS"
+ ],
+ [
+ "Question:Which benchmark score is used to evaluate performance on the DocVQA task?\nAnswer:",
+ " C. BLEU"
+ ],
+ [
+ "Question:Which benchmark score is used to evaluate performance on the DocVQA task?\nAnswer:",
+ " D. VQA Score"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.713038444519043,
+ false
+ ]
+ ],
+ [
+ [
+ -27.411283493041992,
+ false
+ ]
+ ],
+ [
+ [
+ -15.24494457244873,
+ false
+ ]
+ ],
+ [
+ [
+ -23.070180892944336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.713038444519043,
+ false
+ ],
+ [
+ -27.411283493041992,
+ false
+ ],
+ [
+ -15.24494457244873,
+ false
+ ],
+ [
+ -23.070180892944336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ed66f74f3c578709f069bfccd45cde901335880474927d904012d9eb1b0f641f",
+ "prompt_hash": "1dcf27ccd8b63f609b9e414a8d4155fa598dec6391547a212abd20758440d679",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the approximate logical error suppression factor (Λ) observed using the neural network decoder for the surface code?",
+ "choices": [
+ "1.71",
+ "2.14",
+ "2.04",
+ "1.43"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the approximate logical error suppression factor (Λ) observed using the neural network decoder for the surface code?\nAnswer:",
+ " 1.71"
+ ],
+ [
+ "Question:What is the approximate logical error suppression factor (Λ) observed using the neural network decoder for the surface code?\nAnswer:",
+ " 2.14"
+ ],
+ [
+ "Question:What is the approximate logical error suppression factor (Λ) observed using the neural network decoder for the surface code?\nAnswer:",
+ " 2.04"
+ ],
+ [
+ "Question:What is the approximate logical error suppression factor (Λ) observed using the neural network decoder for the surface code?\nAnswer:",
+ " 1.43"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.656071662902832,
+ false
+ ]
+ ],
+ [
+ [
+ -10.014352798461914,
+ false
+ ]
+ ],
+ [
+ [
+ -10.03097915649414,
+ false
+ ]
+ ],
+ [
+ [
+ -9.16510009765625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.656071662902832,
+ false
+ ],
+ [
+ -10.014352798461914,
+ false
+ ],
+ [
+ -10.03097915649414,
+ false
+ ],
+ [
+ -9.16510009765625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f83dcb8fa32e705ac558c88af25d83b05b9235f1ba3ae7c15ad1b6a626edc67f",
+ "prompt_hash": "2855d1e6072b4821bc28e368c7ca76e92054e3f7dae601b26cc65c12ae23bb94",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "How many physical qubits are used in the distance-7 surface code implementation on the 105-qubit processor?",
+ "choices": [
+ "49",
+ "48",
+ "101",
+ "105"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many physical qubits are used in the distance-7 surface code implementation on the 105-qubit processor?\nAnswer:",
+ " 49"
+ ],
+ [
+ "Question:How many physical qubits are used in the distance-7 surface code implementation on the 105-qubit processor?\nAnswer:",
+ " 48"
+ ],
+ [
+ "Question:How many physical qubits are used in the distance-7 surface code implementation on the 105-qubit processor?\nAnswer:",
+ " 101"
+ ],
+ [
+ "Question:How many physical qubits are used in the distance-7 surface code implementation on the 105-qubit processor?\nAnswer:",
+ " 105"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.783773422241211,
+ false
+ ]
+ ],
+ [
+ [
+ -6.077127456665039,
+ false
+ ]
+ ],
+ [
+ [
+ -7.488647937774658,
+ false
+ ]
+ ],
+ [
+ [
+ -5.374570369720459,
+ true
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.783773422241211,
+ false
+ ],
+ [
+ -6.077127456665039,
+ false
+ ],
+ [
+ -7.488647937774658,
+ false
+ ],
+ [
+ -5.374570369720459,
+ true
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3ac616f94d005707134ede2e1c37cad01760706de6162fd22fdddef31fa7a996",
+ "prompt_hash": "e8041853efe4132459bdbeafc15bd95282ad9772ff068dfb2c03880e3ae2f4a0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "What is the reported cycle time for the superconducting processor requiring real-time decoding?",
+ "choices": [
+ "1.1 ms",
+ "24 µs",
+ "1.1 µs",
+ "10 µs"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the reported cycle time for the superconducting processor requiring real-time decoding?\nAnswer:",
+ " 1.1 ms"
+ ],
+ [
+ "Question:What is the reported cycle time for the superconducting processor requiring real-time decoding?\nAnswer:",
+ " 24 µs"
+ ],
+ [
+ "Question:What is the reported cycle time for the superconducting processor requiring real-time decoding?\nAnswer:",
+ " 1.1 µs"
+ ],
+ [
+ "Question:What is the reported cycle time for the superconducting processor requiring real-time decoding?\nAnswer:",
+ " 10 µs"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.168475151062012,
+ false
+ ]
+ ],
+ [
+ [
+ -14.862546920776367,
+ false
+ ]
+ ],
+ [
+ [
+ -14.548297882080078,
+ false
+ ]
+ ],
+ [
+ [
+ -11.576759338378906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.168475151062012,
+ false
+ ],
+ [
+ -14.862546920776367,
+ false
+ ],
+ [
+ -14.548297882080078,
+ false
+ ],
+ [
+ -11.576759338378906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e5a76c2d4a27925f448844ee634c1336c9eb420f57be71bf6bde21e0c69f8477",
+ "prompt_hash": "690ad43c485740a8a906fe16420a2ef6163d4e4876bf79d429256dcca0f3dfb1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "Which component contributes the most to the error budget in the 72-qubit processor according to simulations?",
+ "choices": [
+ "Measurement and reset error",
+ "Leakage during CZs and due to heating",
+ "CZ gate errors including stray interactions",
+ "Single-qubit gate error"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which component contributes the most to the error budget in the 72-qubit processor according to simulations?\nAnswer:",
+ " Measurement and reset error"
+ ],
+ [
+ "Question:Which component contributes the most to the error budget in the 72-qubit processor according to simulations?\nAnswer:",
+ " Leakage during CZs and due to heating"
+ ],
+ [
+ "Question:Which component contributes the most to the error budget in the 72-qubit processor according to simulations?\nAnswer:",
+ " CZ gate errors including stray interactions"
+ ],
+ [
+ "Question:Which component contributes the most to the error budget in the 72-qubit processor according to simulations?\nAnswer:",
+ " Single-qubit gate error"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.62749481201172,
+ false
+ ]
+ ],
+ [
+ [
+ -50.088890075683594,
+ false
+ ]
+ ],
+ [
+ [
+ -41.10272216796875,
+ false
+ ]
+ ],
+ [
+ [
+ -10.830703735351562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.62749481201172,
+ false
+ ],
+ [
+ -50.088890075683594,
+ false
+ ],
+ [
+ -41.10272216796875,
+ false
+ ],
+ [
+ -10.830703735351562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e33cdc4c62885ee64dd285f973173693dcae0da6c8297e11d45f259b5f7c89ad",
+ "prompt_hash": "26648c0d5fdbfedcc1b4c10426c3760df47ac02e344db4805edb96fd47a50733",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "What method is used to mitigate data qubit leakage during surface code operation?",
+ "choices": [
+ "Passive cooling",
+ "Dynamical decoupling",
+ "Data qubit leakage removal (DQLR)",
+ "Multi-level reset"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What method is used to mitigate data qubit leakage during surface code operation?\nAnswer:",
+ " Passive cooling"
+ ],
+ [
+ "Question:What method is used to mitigate data qubit leakage during surface code operation?\nAnswer:",
+ " Dynamical decoupling"
+ ],
+ [
+ "Question:What method is used to mitigate data qubit leakage during surface code operation?\nAnswer:",
+ " Data qubit leakage removal (DQLR)"
+ ],
+ [
+ "Question:What method is used to mitigate data qubit leakage during surface code operation?\nAnswer:",
+ " Multi-level reset"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.593650817871094,
+ false
+ ]
+ ],
+ [
+ [
+ -9.150117874145508,
+ false
+ ]
+ ],
+ [
+ [
+ -26.144542694091797,
+ false
+ ]
+ ],
+ [
+ [
+ -20.310792922973633,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.593650817871094,
+ false
+ ],
+ [
+ -9.150117874145508,
+ false
+ ],
+ [
+ -26.144542694091797,
+ false
+ ],
+ [
+ -20.310792922973633,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2c5843b32d9ee6229b54175779e7c1d53fa45c7089f073735fe900bc778a6641",
+ "prompt_hash": "ad8aeed8ec0324509fadc57ee2c062485ed9a7411672ea9a453fb225ef02e5c3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "Which model is based on LLaMA3-8B and adopts visual expert modules?",
+ "choices": [
+ "CogAgent",
+ "GLM-4V-9B",
+ "CogVLM2",
+ "VisualGLM"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model is based on LLaMA3-8B and adopts visual expert modules?\nAnswer:",
+ " CogAgent"
+ ],
+ [
+ "Question:Which model is based on LLaMA3-8B and adopts visual expert modules?\nAnswer:",
+ " GLM-4V-9B"
+ ],
+ [
+ "Question:Which model is based on LLaMA3-8B and adopts visual expert modules?\nAnswer:",
+ " CogVLM2"
+ ],
+ [
+ "Question:Which model is based on LLaMA3-8B and adopts visual expert modules?\nAnswer:",
+ " VisualGLM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.072737693786621,
+ false
+ ]
+ ],
+ [
+ [
+ -24.121051788330078,
+ false
+ ]
+ ],
+ [
+ [
+ -16.509078979492188,
+ false
+ ]
+ ],
+ [
+ [
+ -12.67910385131836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.072737693786621,
+ false
+ ],
+ [
+ -24.121051788330078,
+ false
+ ],
+ [
+ -16.509078979492188,
+ false
+ ],
+ [
+ -12.67910385131836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "17140906c051bae2097e001a7d8abdf39877f5558dc393130c5a3adb52fb259c",
+ "prompt_hash": "e8cecc717ed96ab7822f3e7bea68d62464c74e7c1f0a1f19854dfaadf291243f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which dataset contains 7 million English and 5 million Chinese entries created from browser-captured screenshots?",
+ "choices": [
+ "CLAY-1B",
+ "Digital World Grounding Dataset",
+ "Synthetic OCR Dataset",
+ "LAION-40M-grounding"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset contains 7 million English and 5 million Chinese entries created from browser-captured screenshots?\nAnswer:",
+ " CLAY-1B"
+ ],
+ [
+ "Question:Which dataset contains 7 million English and 5 million Chinese entries created from browser-captured screenshots?\nAnswer:",
+ " Digital World Grounding Dataset"
+ ],
+ [
+ "Question:Which dataset contains 7 million English and 5 million Chinese entries created from browser-captured screenshots?\nAnswer:",
+ " Synthetic OCR Dataset"
+ ],
+ [
+ "Question:Which dataset contains 7 million English and 5 million Chinese entries created from browser-captured screenshots?\nAnswer:",
+ " LAION-40M-grounding"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.70033073425293,
+ false
+ ]
+ ],
+ [
+ [
+ -35.19849395751953,
+ false
+ ]
+ ],
+ [
+ [
+ -22.89411163330078,
+ false
+ ]
+ ],
+ [
+ [
+ -34.586299896240234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.70033073425293,
+ false
+ ],
+ [
+ -35.19849395751953,
+ false
+ ],
+ [
+ -22.89411163330078,
+ false
+ ],
+ [
+ -34.586299896240234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e18c9e2c9f7e6b3038aef222e26ffcdce6251b96c24cc379159162b29e79729b",
+ "prompt_hash": "9753bf05d93a5e528813540a56d21ba96eb749574ff9d408a6650516cb96d993",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "Which architecture component reduces image sequence length to one-quarter its original size?",
+ "choices": [
+ "Q-former",
+ "Linear layer",
+ "2×2 convolutional layer",
+ "ViT encoder"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which architecture component reduces image sequence length to one-quarter its original size?\nAnswer:",
+ " Q-former"
+ ],
+ [
+ "Question:Which architecture component reduces image sequence length to one-quarter its original size?\nAnswer:",
+ " Linear layer"
+ ],
+ [
+ "Question:Which architecture component reduces image sequence length to one-quarter its original size?\nAnswer:",
+ " 2×2 convolutional layer"
+ ],
+ [
+ "Question:Which architecture component reduces image sequence length to one-quarter its original size?\nAnswer:",
+ " ViT encoder"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.258474349975586,
+ false
+ ]
+ ],
+ [
+ [
+ -10.730835914611816,
+ false
+ ]
+ ],
+ [
+ [
+ -18.697784423828125,
+ false
+ ]
+ ],
+ [
+ [
+ -14.105308532714844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.258474349975586,
+ false
+ ],
+ [
+ -10.730835914611816,
+ false
+ ],
+ [
+ -18.697784423828125,
+ false
+ ],
+ [
+ -14.105308532714844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "af39862375d46684cfdb2dc96930bf4914e05937e23f1ab07d1c6a9490ae4a92",
+ "prompt_hash": "e3c3ebaf6ae5c48799dd038be07a5c66a8af5874ad2c98fa58f76dedac17beca",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "What was the learning rate used in the second stage of image supervised fine-tuning for CogVLM2?",
+ "choices": [
+ "1e-4",
+ "1e-6",
+ "1e-5",
+ "Not specified"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was the learning rate used in the second stage of image supervised fine-tuning for CogVLM2?\nAnswer:",
+ " 1e-4"
+ ],
+ [
+ "Question:What was the learning rate used in the second stage of image supervised fine-tuning for CogVLM2?\nAnswer:",
+ " 1e-6"
+ ],
+ [
+ "Question:What was the learning rate used in the second stage of image supervised fine-tuning for CogVLM2?\nAnswer:",
+ " 1e-5"
+ ],
+ [
+ "Question:What was the learning rate used in the second stage of image supervised fine-tuning for CogVLM2?\nAnswer:",
+ " Not specified"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.152227401733398,
+ false
+ ]
+ ],
+ [
+ [
+ -6.627537727355957,
+ false
+ ]
+ ],
+ [
+ [
+ -5.376708984375,
+ false
+ ]
+ ],
+ [
+ [
+ -10.316917419433594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.152227401733398,
+ false
+ ],
+ [
+ -6.627537727355957,
+ false
+ ],
+ [
+ -5.376708984375,
+ false
+ ],
+ [
+ -10.316917419433594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4399dd4afd8a3359d187f5d62e0738fc49b754310b74e1483e2faca1f0496c18",
+ "prompt_hash": "b3d42e6622a06ce8d5e9fdad5e5637a516c8b11334e8eae2fc1c90ba5de91ff3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "Which post-training dataset includes 150 million Chinese entries focused on OCR scenarios?",
+ "choices": [
+ "CLAY-1B",
+ "Digital World Grounding Dataset",
+ "Synthetic OCR Dataset",
+ "LAION-2B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which post-training dataset includes 150 million Chinese entries focused on OCR scenarios?\nAnswer:",
+ " CLAY-1B"
+ ],
+ [
+ "Question:Which post-training dataset includes 150 million Chinese entries focused on OCR scenarios?\nAnswer:",
+ " Digital World Grounding Dataset"
+ ],
+ [
+ "Question:Which post-training dataset includes 150 million Chinese entries focused on OCR scenarios?\nAnswer:",
+ " Synthetic OCR Dataset"
+ ],
+ [
+ "Question:Which post-training dataset includes 150 million Chinese entries focused on OCR scenarios?\nAnswer:",
+ " LAION-2B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.669137954711914,
+ false
+ ]
+ ],
+ [
+ [
+ -34.62318420410156,
+ false
+ ]
+ ],
+ [
+ [
+ -17.01984977722168,
+ false
+ ]
+ ],
+ [
+ [
+ -14.952802658081055,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.669137954711914,
+ false
+ ],
+ [
+ -34.62318420410156,
+ false
+ ],
+ [
+ -17.01984977722168,
+ false
+ ],
+ [
+ -14.952802658081055,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "03e6f501becf101b8451db2075dd9cbefc9c5273162555dd24142c94a997bfc3",
+ "prompt_hash": "d0789a0d2362a5a4facaa5ded8fc2cea59864ee3bad34cfcffbb419b4f55151c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "Which dataset is used to train the model for novel view synthesis?",
+ "choices": [
+ "KITTI",
+ "ScanNet++",
+ "Cityscapes",
+ "MegaDepth"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset is used to train the model for novel view synthesis?\nAnswer:",
+ " KITTI"
+ ],
+ [
+ "Question:Which dataset is used to train the model for novel view synthesis?\nAnswer:",
+ " ScanNet++"
+ ],
+ [
+ "Question:Which dataset is used to train the model for novel view synthesis?\nAnswer:",
+ " Cityscapes"
+ ],
+ [
+ "Question:Which dataset is used to train the model for novel view synthesis?\nAnswer:",
+ " MegaDepth"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.542630672454834,
+ false
+ ]
+ ],
+ [
+ [
+ -11.459537506103516,
+ false
+ ]
+ ],
+ [
+ [
+ -7.253916263580322,
+ false
+ ]
+ ],
+ [
+ [
+ -11.059212684631348,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.542630672454834,
+ false
+ ],
+ [
+ -11.459537506103516,
+ false
+ ],
+ [
+ -7.253916263580322,
+ false
+ ],
+ [
+ -11.059212684631348,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "329f9d464b42c81c455e7a95a0a531e934b2d871c240ea8a3cd0f6296ce9c045",
+ "prompt_hash": "435e87cff1bc9dc01a42c14bc019d2595c9b9f66304252673b9ee8888b9f4904",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "What is the primary input to the proposed model for 3D reconstruction?",
+ "choices": [
+ "Calibrated image pair",
+ "Depth map and RGB image",
+ "Two uncalibrated images",
+ "Monocular video stream"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary input to the proposed model for 3D reconstruction?\nAnswer:",
+ " Calibrated image pair"
+ ],
+ [
+ "Question:What is the primary input to the proposed model for 3D reconstruction?\nAnswer:",
+ " Depth map and RGB image"
+ ],
+ [
+ "Question:What is the primary input to the proposed model for 3D reconstruction?\nAnswer:",
+ " Two uncalibrated images"
+ ],
+ [
+ "Question:What is the primary input to the proposed model for 3D reconstruction?\nAnswer:",
+ " Monocular video stream"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.52069664001465,
+ false
+ ]
+ ],
+ [
+ [
+ -17.651397705078125,
+ false
+ ]
+ ],
+ [
+ [
+ -22.90048599243164,
+ false
+ ]
+ ],
+ [
+ [
+ -18.692649841308594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.52069664001465,
+ false
+ ],
+ [
+ -17.651397705078125,
+ false
+ ],
+ [
+ -22.90048599243164,
+ false
+ ],
+ [
+ -18.692649841308594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "054f7f6b7928cc3c3df3a3a2677f1bb85093ecf64f9fc86fbf18428192a6c62f",
+ "prompt_hash": "e984d345e214624538cd6076bc0cdbe27590bb6da385151f3d3f141f61859d57",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What does the model use to parameterize the covariance matrix of each 3D Gaussian?",
+ "choices": [
+ "Matrix multiplication and bias",
+ "Euler angles and scale",
+ "Rotation quaternion and scale",
+ "Pose vectors and tensors"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the model use to parameterize the covariance matrix of each 3D Gaussian?\nAnswer:",
+ " Matrix multiplication and bias"
+ ],
+ [
+ "Question:What does the model use to parameterize the covariance matrix of each 3D Gaussian?\nAnswer:",
+ " Euler angles and scale"
+ ],
+ [
+ "Question:What does the model use to parameterize the covariance matrix of each 3D Gaussian?\nAnswer:",
+ " Rotation quaternion and scale"
+ ],
+ [
+ "Question:What does the model use to parameterize the covariance matrix of each 3D Gaussian?\nAnswer:",
+ " Pose vectors and tensors"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.31600570678711,
+ false
+ ]
+ ],
+ [
+ [
+ -16.103641510009766,
+ false
+ ]
+ ],
+ [
+ [
+ -19.320552825927734,
+ false
+ ]
+ ],
+ [
+ [
+ -25.82880401611328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.31600570678711,
+ false
+ ],
+ [
+ -16.103641510009766,
+ false
+ ],
+ [
+ -19.320552825927734,
+ false
+ ],
+ [
+ -25.82880401611328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6a81dcfab0959a77b46d84e940ed374e7c1ae77922ce9c436ac83baa1cb49086",
+ "prompt_hash": "d562f05e3bd10c0e334befc0db9db03a35259e4277c131ddb0da2c44c6f74cc5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "What rendering losses are applied to train the Gaussian prediction head?",
+ "choices": [
+ "L1 loss and SSIM",
+ "MSE and LPIPS",
+ "Cross-entropy and Focal loss",
+ "KL divergence and Huber loss"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What rendering losses are applied to train the Gaussian prediction head?\nAnswer:",
+ " L1 loss and SSIM"
+ ],
+ [
+ "Question:What rendering losses are applied to train the Gaussian prediction head?\nAnswer:",
+ " MSE and LPIPS"
+ ],
+ [
+ "Question:What rendering losses are applied to train the Gaussian prediction head?\nAnswer:",
+ " Cross-entropy and Focal loss"
+ ],
+ [
+ "Question:What rendering losses are applied to train the Gaussian prediction head?\nAnswer:",
+ " KL divergence and Huber loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.82857894897461,
+ false
+ ]
+ ],
+ [
+ [
+ -13.206483840942383,
+ false
+ ]
+ ],
+ [
+ [
+ -20.15416145324707,
+ false
+ ]
+ ],
+ [
+ [
+ -18.332340240478516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.82857894897461,
+ false
+ ],
+ [
+ -13.206483840942383,
+ false
+ ],
+ [
+ -20.15416145324707,
+ false
+ ],
+ [
+ -18.332340240478516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7d12159581cafe65f033926ab36dfe7446ac692929a70477c621c3d96b5b6f6c",
+ "prompt_hash": "6f111e0ff63c4d6c53ca139655096ade67eda570b7417bade09f30f7236276fa",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "What purpose does the loss masking strategy serve during training?",
+ "choices": [
+ "To reduce GPU memory usage",
+ "To encourage smooth transitions between views",
+ "To avoid supervising pixels not visible in context images",
+ "To enhance the visibility of depth maps"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What purpose does the loss masking strategy serve during training?\nAnswer:",
+ " To reduce GPU memory usage"
+ ],
+ [
+ "Question:What purpose does the loss masking strategy serve during training?\nAnswer:",
+ " To encourage smooth transitions between views"
+ ],
+ [
+ "Question:What purpose does the loss masking strategy serve during training?\nAnswer:",
+ " To avoid supervising pixels not visible in context images"
+ ],
+ [
+ "Question:What purpose does the loss masking strategy serve during training?\nAnswer:",
+ " To enhance the visibility of depth maps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.565971374511719,
+ false
+ ]
+ ],
+ [
+ [
+ -22.251873016357422,
+ false
+ ]
+ ],
+ [
+ [
+ -47.93913269042969,
+ false
+ ]
+ ],
+ [
+ [
+ -28.24319076538086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.565971374511719,
+ false
+ ],
+ [
+ -22.251873016357422,
+ false
+ ],
+ [
+ -47.93913269042969,
+ false
+ ],
+ [
+ -28.24319076538086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0734bd5e11f0e733942ec8180ee434e9a3c295a28e77baf791843224e58b1d37",
+ "prompt_hash": "3ca9c635bfa6bb022e05cc5a47c2a7a230bd6ee0c46b649a6219726d4f4c5862",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2409": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What is the visual encoder used in the architecture of \\u005cmodelname?",
+ "choices": [
+ "Video Swin Transformer",
+ "TubeViT",
+ "CLIP-ViT",
+ "SigLIP"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the visual encoder used in the architecture of \\u005cmodelname?\nAnswer:",
+ " Video Swin Transformer"
+ ],
+ [
+ "Question:What is the visual encoder used in the architecture of \\u005cmodelname?\nAnswer:",
+ " TubeViT"
+ ],
+ [
+ "Question:What is the visual encoder used in the architecture of \\u005cmodelname?\nAnswer:",
+ " CLIP-ViT"
+ ],
+ [
+ "Question:What is the visual encoder used in the architecture of \\u005cmodelname?\nAnswer:",
+ " SigLIP"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.495767593383789,
+ false
+ ]
+ ],
+ [
+ [
+ -17.449329376220703,
+ false
+ ]
+ ],
+ [
+ [
+ -12.375112533569336,
+ false
+ ]
+ ],
+ [
+ [
+ -13.049660682678223,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.495767593383789,
+ false
+ ],
+ [
+ -17.449329376220703,
+ false
+ ],
+ [
+ -12.375112533569336,
+ false
+ ],
+ [
+ -13.049660682678223,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8f43676dfa8e99d64af0868235cfc9038da15b626ad93e21c4b65905122e0d60",
+ "prompt_hash": "1b419424cdc31dcd1715f04450f85f4d9581dcae81486bf8952af146acbdc655",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "How many video clips are included in the \\u005cdatasetname benchmark?",
+ "choices": [
+ "500",
+ "1,000",
+ "2,000",
+ "10,000"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many video clips are included in the \\u005cdatasetname benchmark?\nAnswer:",
+ " 500"
+ ],
+ [
+ "Question:How many video clips are included in the \\u005cdatasetname benchmark?\nAnswer:",
+ " 1,000"
+ ],
+ [
+ "Question:How many video clips are included in the \\u005cdatasetname benchmark?\nAnswer:",
+ " 2,000"
+ ],
+ [
+ "Question:How many video clips are included in the \\u005cdatasetname benchmark?\nAnswer:",
+ " 10,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.426371097564697,
+ false
+ ]
+ ],
+ [
+ [
+ -8.035820960998535,
+ false
+ ]
+ ],
+ [
+ [
+ -8.831319808959961,
+ false
+ ]
+ ],
+ [
+ [
+ -8.405014038085938,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.426371097564697,
+ false
+ ],
+ [
+ -8.035820960998535,
+ false
+ ],
+ [
+ -8.831319808959961,
+ false
+ ],
+ [
+ -8.405014038085938,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aa7b82cc13c10a1cfd45dcefe86437a90471b75fdc8e8173718d949889adecbb",
+ "prompt_hash": "68377350cdd14f3bdf1dd8b868e22f0683d7519a7b67d812761480c27d8c051d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "What two components does \\u005cevalname use to evaluate descriptions?",
+ "choices": [
+ "Precision and recall metrics",
+ "BLEU and METEOR",
+ "Event extraction and entailment models",
+ "Human ratings and CIDEr scores"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What two components does \\u005cevalname use to evaluate descriptions?\nAnswer:",
+ " Precision and recall metrics"
+ ],
+ [
+ "Question:What two components does \\u005cevalname use to evaluate descriptions?\nAnswer:",
+ " BLEU and METEOR"
+ ],
+ [
+ "Question:What two components does \\u005cevalname use to evaluate descriptions?\nAnswer:",
+ " Event extraction and entailment models"
+ ],
+ [
+ "Question:What two components does \\u005cevalname use to evaluate descriptions?\nAnswer:",
+ " Human ratings and CIDEr scores"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.11516571044922,
+ false
+ ]
+ ],
+ [
+ [
+ -12.382637977600098,
+ false
+ ]
+ ],
+ [
+ [
+ -30.587970733642578,
+ false
+ ]
+ ],
+ [
+ [
+ -26.8033390045166,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.11516571044922,
+ false
+ ],
+ [
+ -12.382637977600098,
+ false
+ ],
+ [
+ -30.587970733642578,
+ false
+ ],
+ [
+ -26.8033390045166,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6225b0f32d9f853fce5a77063c84800ff8eedcbe76a686813ca0e4146ee019aa",
+ "prompt_hash": "f3e0850221596a87411a4319e2cf07cddc5cb851555a6894f0861579adf68da4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "What is the total number of video-text pairs used during \\u005cmodelname's pre-training?",
+ "choices": [
+ "2.8 million",
+ "6.5 million",
+ "13.6 million",
+ "38 million"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total number of video-text pairs used during \\u005cmodelname's pre-training?\nAnswer:",
+ " 2.8 million"
+ ],
+ [
+ "Question:What is the total number of video-text pairs used during \\u005cmodelname's pre-training?\nAnswer:",
+ " 6.5 million"
+ ],
+ [
+ "Question:What is the total number of video-text pairs used during \\u005cmodelname's pre-training?\nAnswer:",
+ " 13.6 million"
+ ],
+ [
+ "Question:What is the total number of video-text pairs used during \\u005cmodelname's pre-training?\nAnswer:",
+ " 38 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.427526473999023,
+ false
+ ]
+ ],
+ [
+ [
+ -10.509381294250488,
+ false
+ ]
+ ],
+ [
+ [
+ -11.587591171264648,
+ false
+ ]
+ ],
+ [
+ [
+ -10.692402839660645,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.427526473999023,
+ false
+ ],
+ [
+ -10.509381294250488,
+ false
+ ],
+ [
+ -11.587591171264648,
+ false
+ ],
+ [
+ -10.692402839660645,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ec9ad2089dbc4bdfa6bd2478e3dfe84d4fb2e0aa51458b552776d9fcd0f039ce",
+ "prompt_hash": "decd19be57941d960406e3809c930cc8043d44b9bfd94d681e7ec4a5b369859f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "Which proprietary model is slightly preferred over \\u005cmodelname-34B in human side-by-side evaluation?",
+ "choices": [
+ "GPT-4V",
+ "Gemini 1.5 Pro",
+ "GPT-4o",
+ "VideoChat2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which proprietary model is slightly preferred over \\u005cmodelname-34B in human side-by-side evaluation?\nAnswer:",
+ " GPT-4V"
+ ],
+ [
+ "Question:Which proprietary model is slightly preferred over \\u005cmodelname-34B in human side-by-side evaluation?\nAnswer:",
+ " Gemini 1.5 Pro"
+ ],
+ [
+ "Question:Which proprietary model is slightly preferred over \\u005cmodelname-34B in human side-by-side evaluation?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which proprietary model is slightly preferred over \\u005cmodelname-34B in human side-by-side evaluation?\nAnswer:",
+ " VideoChat2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.168880462646484,
+ false
+ ]
+ ],
+ [
+ [
+ -11.913797378540039,
+ false
+ ]
+ ],
+ [
+ [
+ -9.950221061706543,
+ false
+ ]
+ ],
+ [
+ [
+ -19.21074867248535,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.168880462646484,
+ false
+ ],
+ [
+ -11.913797378540039,
+ false
+ ],
+ [
+ -9.950221061706543,
+ false
+ ],
+ [
+ -19.21074867248535,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3aeea6b1458836b9cfd8e1d80e468cc01769beb5d9c845810764ad974c715b99",
+ "prompt_hash": "1a27e107b5dcb6af186b7105913c3d136087e2b0c73041bb22c25768fb0b0b6e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "Which theorem forms the basis of Kolmogorov-Arnold Networks (KANs)?",
+ "choices": [
+ "Universal Approximation Theorem",
+ "Kolmogorov-Arnold Representation Theorem",
+ "Central Limit Theorem",
+ "Banach Fixed-Point Theorem"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which theorem forms the basis of Kolmogorov-Arnold Networks (KANs)?\nAnswer:",
+ " Universal Approximation Theorem"
+ ],
+ [
+ "Question:Which theorem forms the basis of Kolmogorov-Arnold Networks (KANs)?\nAnswer:",
+ " Kolmogorov-Arnold Representation Theorem"
+ ],
+ [
+ "Question:Which theorem forms the basis of Kolmogorov-Arnold Networks (KANs)?\nAnswer:",
+ " Central Limit Theorem"
+ ],
+ [
+ "Question:Which theorem forms the basis of Kolmogorov-Arnold Networks (KANs)?\nAnswer:",
+ " Banach Fixed-Point Theorem"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.135324478149414,
+ false
+ ]
+ ],
+ [
+ [
+ -10.827104568481445,
+ false
+ ]
+ ],
+ [
+ [
+ -10.046956062316895,
+ false
+ ]
+ ],
+ [
+ [
+ -17.358673095703125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.135324478149414,
+ false
+ ],
+ [
+ -10.827104568481445,
+ false
+ ],
+ [
+ -10.046956062316895,
+ false
+ ],
+ [
+ -17.358673095703125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "564ec16c40c0c8d379bae9ed11a470dd4f4b978724e42191d260862063c2d06b",
+ "prompt_hash": "7ea86d8f7700ff5117a06df5224c06b7c949b2625a74137d37d9b73b523a5bec",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "What activation function was originally proposed by Liu et al. for KANs?",
+ "choices": [
+ "Gaussian radial basis functions",
+ "Swish",
+ "ReLU",
+ "B-spline"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What activation function was originally proposed by Liu et al. for KANs?\nAnswer:",
+ " Gaussian radial basis functions"
+ ],
+ [
+ "Question:What activation function was originally proposed by Liu et al. for KANs?\nAnswer:",
+ " Swish"
+ ],
+ [
+ "Question:What activation function was originally proposed by Liu et al. for KANs?\nAnswer:",
+ " ReLU"
+ ],
+ [
+ "Question:What activation function was originally proposed by Liu et al. for KANs?\nAnswer:",
+ " B-spline"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.572092056274414,
+ false
+ ]
+ ],
+ [
+ [
+ -6.097117900848389,
+ false
+ ]
+ ],
+ [
+ [
+ -2.6757876873016357,
+ false
+ ]
+ ],
+ [
+ [
+ -12.105659484863281,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.572092056274414,
+ false
+ ],
+ [
+ -6.097117900848389,
+ false
+ ],
+ [
+ -2.6757876873016357,
+ false
+ ],
+ [
+ -12.105659484863281,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dcbfbd43678c7eaf0b55b660693da39aff35639414c5df78ab209de375693c0f",
+ "prompt_hash": "e9ffeb039d445a5fccb6de2caa808f2544a0fc5812d3375b0151d9902141da92",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "Which ODE solver was employed by default in the implementation of KAN-ODEs?",
+ "choices": [
+ "Euler method",
+ "Tsit5 Runge-Kutta method",
+ "Rodas5 Rosenbrock method",
+ "RK4 method"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which ODE solver was employed by default in the implementation of KAN-ODEs?\nAnswer:",
+ " Euler method"
+ ],
+ [
+ "Question:Which ODE solver was employed by default in the implementation of KAN-ODEs?\nAnswer:",
+ " Tsit5 Runge-Kutta method"
+ ],
+ [
+ "Question:Which ODE solver was employed by default in the implementation of KAN-ODEs?\nAnswer:",
+ " Rodas5 Rosenbrock method"
+ ],
+ [
+ "Question:Which ODE solver was employed by default in the implementation of KAN-ODEs?\nAnswer:",
+ " RK4 method"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.391721725463867,
+ false
+ ]
+ ],
+ [
+ [
+ -29.77779769897461,
+ false
+ ]
+ ],
+ [
+ [
+ -39.73161315917969,
+ false
+ ]
+ ],
+ [
+ [
+ -11.668317794799805,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.391721725463867,
+ false
+ ],
+ [
+ -29.77779769897461,
+ false
+ ],
+ [
+ -39.73161315917969,
+ false
+ ],
+ [
+ -11.668317794799805,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "747de9bc42d4924efdd61e9028dd07faec0e61e0db10a3b467fcf3c01d3a6b18",
+ "prompt_hash": "ae852e95920e9e1a207f05a15800b95046c3fcf68978f4b13614a111b0dddc28",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "In the Lotka-Volterra predator-prey example, what was the initial condition used?",
+ "choices": [
+ "[0, 0]",
+ "[2, 2]",
+ "[1, 1]",
+ "[3, 3]"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the Lotka-Volterra predator-prey example, what was the initial condition used?\nAnswer:",
+ " [0, 0]"
+ ],
+ [
+ "Question:In the Lotka-Volterra predator-prey example, what was the initial condition used?\nAnswer:",
+ " [2, 2]"
+ ],
+ [
+ "Question:In the Lotka-Volterra predator-prey example, what was the initial condition used?\nAnswer:",
+ " [1, 1]"
+ ],
+ [
+ "Question:In the Lotka-Volterra predator-prey example, what was the initial condition used?\nAnswer:",
+ " [3, 3]"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.677711486816406,
+ false
+ ]
+ ],
+ [
+ [
+ -16.641386032104492,
+ false
+ ]
+ ],
+ [
+ [
+ -15.760937690734863,
+ false
+ ]
+ ],
+ [
+ [
+ -18.1982479095459,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.677711486816406,
+ false
+ ],
+ [
+ -16.641386032104492,
+ false
+ ],
+ [
+ -15.760937690734863,
+ false
+ ],
+ [
+ -18.1982479095459,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "93021bd825ff8280fcea636dfde8e164be3d2313e95d71cf8c3a9a6b8914e9d6",
+ "prompt_hash": "2329c2216a6718d4bebf58ca3594b68e7b3dde2251b5f6b547995d755e2a37d0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "Which equation was used as an example of modeling hidden physics in PDEs?",
+ "choices": [
+ "Schrödinger equation",
+ "Burgers' equation",
+ "Fisher-KPP equation",
+ "Allen-Cahn equation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which equation was used as an example of modeling hidden physics in PDEs?\nAnswer:",
+ " Schrödinger equation"
+ ],
+ [
+ "Question:Which equation was used as an example of modeling hidden physics in PDEs?\nAnswer:",
+ " Burgers' equation"
+ ],
+ [
+ "Question:Which equation was used as an example of modeling hidden physics in PDEs?\nAnswer:",
+ " Fisher-KPP equation"
+ ],
+ [
+ "Question:Which equation was used as an example of modeling hidden physics in PDEs?\nAnswer:",
+ " Allen-Cahn equation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.50059986114502,
+ false
+ ]
+ ],
+ [
+ [
+ -10.451626777648926,
+ false
+ ]
+ ],
+ [
+ [
+ -15.836602210998535,
+ false
+ ]
+ ],
+ [
+ [
+ -11.835906028747559,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.50059986114502,
+ false
+ ],
+ [
+ -10.451626777648926,
+ false
+ ],
+ [
+ -15.836602210998535,
+ false
+ ],
+ [
+ -11.835906028747559,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "37fc0f6caf5b17531830efba868ae0162dcf3e8e5a3a619bd6b9c917b96a321b",
+ "prompt_hash": "b8d3f719e0aa2b23ede74e5f04b31d155a25bf5d6fc7eade785b66a3af24ea0f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What is the number of activated parameters in Qwen2-57B-A14B?",
+ "choices": [
+ "12B",
+ "14B",
+ "30B",
+ "57B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the number of activated parameters in Qwen2-57B-A14B?\nAnswer:",
+ " 12B"
+ ],
+ [
+ "Question:What is the number of activated parameters in Qwen2-57B-A14B?\nAnswer:",
+ " 14B"
+ ],
+ [
+ "Question:What is the number of activated parameters in Qwen2-57B-A14B?\nAnswer:",
+ " 30B"
+ ],
+ [
+ "Question:What is the number of activated parameters in Qwen2-57B-A14B?\nAnswer:",
+ " 57B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.936101913452148,
+ false
+ ]
+ ],
+ [
+ [
+ -7.763552188873291,
+ false
+ ]
+ ],
+ [
+ [
+ -10.072871208190918,
+ false
+ ]
+ ],
+ [
+ [
+ -7.646878242492676,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.936101913452148,
+ false
+ ],
+ [
+ -7.763552188873291,
+ false
+ ],
+ [
+ -10.072871208190918,
+ false
+ ],
+ [
+ -7.646878242492676,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "291e995ab3bccb0fa73fd6bb6aaa4aa51ad07b89c69502bf7bba0ac9e0cda457",
+ "prompt_hash": "d9bf57b047928f08c5addb57d1272fd20ecd564c0618409f6f817f3de20824c6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "Which benchmark dataset uses 25-shot prompting for evaluation?",
+ "choices": [
+ "ARC-C",
+ "GPQA",
+ "MMLU",
+ "TruthfulQA"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark dataset uses 25-shot prompting for evaluation?\nAnswer:",
+ " ARC-C"
+ ],
+ [
+ "Question:Which benchmark dataset uses 25-shot prompting for evaluation?\nAnswer:",
+ " GPQA"
+ ],
+ [
+ "Question:Which benchmark dataset uses 25-shot prompting for evaluation?\nAnswer:",
+ " MMLU"
+ ],
+ [
+ "Question:Which benchmark dataset uses 25-shot prompting for evaluation?\nAnswer:",
+ " TruthfulQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.260011672973633,
+ false
+ ]
+ ],
+ [
+ [
+ -12.34814167022705,
+ false
+ ]
+ ],
+ [
+ [
+ -5.928160667419434,
+ false
+ ]
+ ],
+ [
+ [
+ -9.763457298278809,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.260011672973633,
+ false
+ ],
+ [
+ -12.34814167022705,
+ false
+ ],
+ [
+ -5.928160667419434,
+ false
+ ],
+ [
+ -9.763457298278809,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "410e02e0a3e49a49831d1bc18cf1089e2c13a77e008734557ccc741fc5f69a62",
+ "prompt_hash": "d2c298b8489b04c8e91b01c98dc9a3b1e72049354d6e818adba81be34aa6290e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "Which dataset did Qwen2-72B achieve the highest score on among the coding benchmarks?",
+ "choices": [
+ "HumanEval",
+ "MBPP",
+ "EvalPlus",
+ "MultiPL-E"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset did Qwen2-72B achieve the highest score on among the coding benchmarks?\nAnswer:",
+ " HumanEval"
+ ],
+ [
+ "Question:Which dataset did Qwen2-72B achieve the highest score on among the coding benchmarks?\nAnswer:",
+ " MBPP"
+ ],
+ [
+ "Question:Which dataset did Qwen2-72B achieve the highest score on among the coding benchmarks?\nAnswer:",
+ " EvalPlus"
+ ],
+ [
+ "Question:Which dataset did Qwen2-72B achieve the highest score on among the coding benchmarks?\nAnswer:",
+ " MultiPL-E"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.070164203643799,
+ false
+ ]
+ ],
+ [
+ [
+ -9.641318321228027,
+ false
+ ]
+ ],
+ [
+ [
+ -12.466957092285156,
+ false
+ ]
+ ],
+ [
+ [
+ -24.767515182495117,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.070164203643799,
+ false
+ ],
+ [
+ -9.641318321228027,
+ false
+ ],
+ [
+ -12.466957092285156,
+ false
+ ],
+ [
+ -24.767515182495117,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9856e8c7bc348dff04f4b4a132918f0f1eb2affb840d3ca01d81a61ea651d092",
+ "prompt_hash": "99510d8e3c0f104f96e5d57839543c71b371b81be7e5f884f54c54078d7920f7",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "What is the MMLU score achieved by Qwen2-7B?",
+ "choices": [
+ "64.2",
+ "66.6",
+ "61.0",
+ "70.3"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the MMLU score achieved by Qwen2-7B?\nAnswer:",
+ " 64.2"
+ ],
+ [
+ "Question:What is the MMLU score achieved by Qwen2-7B?\nAnswer:",
+ " 66.6"
+ ],
+ [
+ "Question:What is the MMLU score achieved by Qwen2-7B?\nAnswer:",
+ " 61.0"
+ ],
+ [
+ "Question:What is the MMLU score achieved by Qwen2-7B?\nAnswer:",
+ " 70.3"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.043088912963867,
+ false
+ ]
+ ],
+ [
+ [
+ -8.122020721435547,
+ false
+ ]
+ ],
+ [
+ [
+ -8.118026733398438,
+ false
+ ]
+ ],
+ [
+ [
+ -8.125846862792969,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.043088912963867,
+ false
+ ],
+ [
+ -8.122020721435547,
+ false
+ ],
+ [
+ -8.118026733398438,
+ false
+ ],
+ [
+ -8.125846862792969,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2851a4005490cadd120a7d3628ea0f7f021360798079b32af678d54dbdea6110",
+ "prompt_hash": "62f178a26a549057120966177c6af7cd055f261ae620fa49ac14ff14f36ed083",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "In the multilingual human evaluation, which language did Qwen2-72B-Instruct score the lowest in?",
+ "choices": [
+ "Arabic",
+ "Korean",
+ "Japanese",
+ "Thai"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:In the multilingual human evaluation, which language did Qwen2-72B-Instruct score the lowest in?\nAnswer:",
+ " Arabic"
+ ],
+ [
+ "Question:In the multilingual human evaluation, which language did Qwen2-72B-Instruct score the lowest in?\nAnswer:",
+ " Korean"
+ ],
+ [
+ "Question:In the multilingual human evaluation, which language did Qwen2-72B-Instruct score the lowest in?\nAnswer:",
+ " Japanese"
+ ],
+ [
+ "Question:In the multilingual human evaluation, which language did Qwen2-72B-Instruct score the lowest in?\nAnswer:",
+ " Thai"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.313841342926025,
+ false
+ ]
+ ],
+ [
+ [
+ -8.17893123626709,
+ false
+ ]
+ ],
+ [
+ [
+ -5.562231063842773,
+ false
+ ]
+ ],
+ [
+ [
+ -8.58788776397705,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.313841342926025,
+ false
+ ],
+ [
+ -8.17893123626709,
+ false
+ ],
+ [
+ -5.562231063842773,
+ false
+ ],
+ [
+ -8.58788776397705,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3ad3b7e606e9801b2a95c0d03c502ff29f5e16cd6d50667c6adf7073e402d078",
+ "prompt_hash": "5aa70bedcf6224988ae2ce4fef1f93fe7a13492bd675ae91110604a0143d3017",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What is the maximum number of visual tokens used by SF-LLaVA to avoid exceeding 80G GPU memory?",
+ "choices": [
+ "4096",
+ "3200",
+ "3680",
+ "4608"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum number of visual tokens used by SF-LLaVA to avoid exceeding 80G GPU memory?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:What is the maximum number of visual tokens used by SF-LLaVA to avoid exceeding 80G GPU memory?\nAnswer:",
+ " 3200"
+ ],
+ [
+ "Question:What is the maximum number of visual tokens used by SF-LLaVA to avoid exceeding 80G GPU memory?\nAnswer:",
+ " 3680"
+ ],
+ [
+ "Question:What is the maximum number of visual tokens used by SF-LLaVA to avoid exceeding 80G GPU memory?\nAnswer:",
+ " 4608"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.425139427185059,
+ false
+ ]
+ ],
+ [
+ [
+ -9.016348838806152,
+ false
+ ]
+ ],
+ [
+ [
+ -13.149456024169922,
+ false
+ ]
+ ],
+ [
+ [
+ -10.514032363891602,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.425139427185059,
+ false
+ ],
+ [
+ -9.016348838806152,
+ false
+ ],
+ [
+ -13.149456024169922,
+ false
+ ],
+ [
+ -10.514032363891602,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ad13fe9a163f19221c6bf35b82ed2c73b4d4ad49359f2624d8530674e1407ac8",
+ "prompt_hash": "86ba060cafa27e42e47324515c56ecde20b126a762287ed01eb0fd5c0d91d0f4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "Which dataset is used to evaluate the Temporal Understanding (TU) of Video LLMs?",
+ "choices": [
+ "VCGBench",
+ "EgoSchema",
+ "MSRVTT-QA",
+ "ActivityNet-QA"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset is used to evaluate the Temporal Understanding (TU) of Video LLMs?\nAnswer:",
+ " VCGBench"
+ ],
+ [
+ "Question:Which dataset is used to evaluate the Temporal Understanding (TU) of Video LLMs?\nAnswer:",
+ " EgoSchema"
+ ],
+ [
+ "Question:Which dataset is used to evaluate the Temporal Understanding (TU) of Video LLMs?\nAnswer:",
+ " MSRVTT-QA"
+ ],
+ [
+ "Question:Which dataset is used to evaluate the Temporal Understanding (TU) of Video LLMs?\nAnswer:",
+ " ActivityNet-QA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.394710540771484,
+ false
+ ]
+ ],
+ [
+ [
+ -17.418739318847656,
+ false
+ ]
+ ],
+ [
+ [
+ -16.56558609008789,
+ false
+ ]
+ ],
+ [
+ [
+ -15.635619163513184,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.394710540771484,
+ false
+ ],
+ [
+ -17.418739318847656,
+ false
+ ],
+ [
+ -16.56558609008789,
+ false
+ ],
+ [
+ -15.635619163513184,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4b72d0430c20d5fc5c3b275e253d36baee93c4a33960828036bb124617144e65",
+ "prompt_hash": "6f7a3738219247c007d3fa09ddd5f4dc026be5d9ad5f5684ae8fe63f33097793",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "What is the primary visual encoder used in SF-LLaVA?",
+ "choices": [
+ "ViT-L/14",
+ "CLIP-L-14",
+ "BLIP-2",
+ "AnyRes"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the primary visual encoder used in SF-LLaVA?\nAnswer:",
+ " ViT-L/14"
+ ],
+ [
+ "Question:What is the primary visual encoder used in SF-LLaVA?\nAnswer:",
+ " CLIP-L-14"
+ ],
+ [
+ "Question:What is the primary visual encoder used in SF-LLaVA?\nAnswer:",
+ " BLIP-2"
+ ],
+ [
+ "Question:What is the primary visual encoder used in SF-LLaVA?\nAnswer:",
+ " AnyRes"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.990835189819336,
+ false
+ ]
+ ],
+ [
+ [
+ -18.62881851196289,
+ false
+ ]
+ ],
+ [
+ [
+ -6.553082466125488,
+ false
+ ]
+ ],
+ [
+ [
+ -15.750223159790039,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.990835189819336,
+ false
+ ],
+ [
+ -18.62881851196289,
+ false
+ ],
+ [
+ -6.553082466125488,
+ false
+ ],
+ [
+ -15.750223159790039,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ddafe5811d17653c4db88355421d924675dc6e564970045ec933199f7d1fadd2",
+ "prompt_hash": "5c6a92c4e5fb08ca37a06d1e9e9abe48117262d031e354edfeca6b89b5de773d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "How many frames are used in the Fast pathway by default in SF-LLaVA?",
+ "choices": [
+ "12",
+ "32",
+ "50",
+ "64"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many frames are used in the Fast pathway by default in SF-LLaVA?\nAnswer:",
+ " 12"
+ ],
+ [
+ "Question:How many frames are used in the Fast pathway by default in SF-LLaVA?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:How many frames are used in the Fast pathway by default in SF-LLaVA?\nAnswer:",
+ " 50"
+ ],
+ [
+ "Question:How many frames are used in the Fast pathway by default in SF-LLaVA?\nAnswer:",
+ " 64"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.225262641906738,
+ false
+ ]
+ ],
+ [
+ [
+ -6.255336761474609,
+ false
+ ]
+ ],
+ [
+ [
+ -6.196992874145508,
+ false
+ ]
+ ],
+ [
+ [
+ -6.987529754638672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.225262641906738,
+ false
+ ],
+ [
+ -6.255336761474609,
+ false
+ ],
+ [
+ -6.196992874145508,
+ false
+ ],
+ [
+ -6.987529754638672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1814f8766dbb483c1dc51b998d04b17576a13be811648b5484767fafac01a560",
+ "prompt_hash": "7eaee63b4adef0215d837ca19de0c801fd35277d6c27ba03361aa161438858f6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "What kind of prompt does SF-LLaVA use for Multiple Choice VideoQA tasks?",
+ "choices": [
+ "Answer based on image content",
+ "In this video, the answer is:",
+ "Best Option:(",
+ "Choose the correct label"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What kind of prompt does SF-LLaVA use for Multiple Choice VideoQA tasks?\nAnswer:",
+ " Answer based on image content"
+ ],
+ [
+ "Question:What kind of prompt does SF-LLaVA use for Multiple Choice VideoQA tasks?\nAnswer:",
+ " In this video, the answer is:"
+ ],
+ [
+ "Question:What kind of prompt does SF-LLaVA use for Multiple Choice VideoQA tasks?\nAnswer:",
+ " Best Option:("
+ ],
+ [
+ "Question:What kind of prompt does SF-LLaVA use for Multiple Choice VideoQA tasks?\nAnswer:",
+ " Choose the correct label"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.13357162475586,
+ false
+ ]
+ ],
+ [
+ [
+ -18.91696548461914,
+ false
+ ]
+ ],
+ [
+ [
+ -25.731494903564453,
+ false
+ ]
+ ],
+ [
+ [
+ -16.9730281829834,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.13357162475586,
+ false
+ ],
+ [
+ -18.91696548461914,
+ false
+ ],
+ [
+ -25.731494903564453,
+ false
+ ],
+ [
+ -16.9730281829834,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "67f0766718f330067f520f7a6b1b7f8182af7a2ac16cc7c42325778a9f1e77ac",
+ "prompt_hash": "764ec196e50ebad35d033eb2c74554ffdc888ebdc44bcb6debabfac2c87e97fe",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What condition must the dark energy equation of state (EoS) satisfy to cause cosmic acceleration?",
+ "choices": [
+ "w > 0",
+ "w < -1/3",
+ "w = 0",
+ "w > 1"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What condition must the dark energy equation of state (EoS) satisfy to cause cosmic acceleration?\nAnswer:",
+ " w > 0"
+ ],
+ [
+ "Question:What condition must the dark energy equation of state (EoS) satisfy to cause cosmic acceleration?\nAnswer:",
+ " w < -1/3"
+ ],
+ [
+ "Question:What condition must the dark energy equation of state (EoS) satisfy to cause cosmic acceleration?\nAnswer:",
+ " w = 0"
+ ],
+ [
+ "Question:What condition must the dark energy equation of state (EoS) satisfy to cause cosmic acceleration?\nAnswer:",
+ " w > 1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.41776180267334,
+ false
+ ]
+ ],
+ [
+ [
+ -19.103534698486328,
+ false
+ ]
+ ],
+ [
+ [
+ -13.807682037353516,
+ false
+ ]
+ ],
+ [
+ [
+ -13.923848152160645,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.41776180267334,
+ false
+ ],
+ [
+ -19.103534698486328,
+ false
+ ],
+ [
+ -13.807682037353516,
+ false
+ ],
+ [
+ -13.923848152160645,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "82323cd2bfdb0979387995bd708d5e4373cea800896b67b4c7fbcbd77a25ba6c",
+ "prompt_hash": "85096bbeff721214820f6ef5e78686e35fa5052e6205e981155da67c7fb588a3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "What is the main conceptual problem associated with inserting a positive cosmological constant into Einstein's equations?",
+ "choices": [
+ "It predicts an open universe.",
+ "It leads to a cyclic universe model.",
+ "It implies an asymptotically de Sitter universe, conflicting with quantum gravity theories.",
+ "It eliminates the need for dark matter."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main conceptual problem associated with inserting a positive cosmological constant into Einstein's equations?\nAnswer:",
+ " It predicts an open universe."
+ ],
+ [
+ "Question:What is the main conceptual problem associated with inserting a positive cosmological constant into Einstein's equations?\nAnswer:",
+ " It leads to a cyclic universe model."
+ ],
+ [
+ "Question:What is the main conceptual problem associated with inserting a positive cosmological constant into Einstein's equations?\nAnswer:",
+ " It implies an asymptotically de Sitter universe, conflicting with quantum gravity theories."
+ ],
+ [
+ "Question:What is the main conceptual problem associated with inserting a positive cosmological constant into Einstein's equations?\nAnswer:",
+ " It eliminates the need for dark matter."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.33345603942871,
+ false
+ ]
+ ],
+ [
+ [
+ -26.65534210205078,
+ false
+ ]
+ ],
+ [
+ [
+ -47.05223846435547,
+ false
+ ]
+ ],
+ [
+ [
+ -16.610246658325195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.33345603942871,
+ false
+ ],
+ [
+ -26.65534210205078,
+ false
+ ],
+ [
+ -47.05223846435547,
+ false
+ ],
+ [
+ -16.610246658325195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "86148b6f729db3fd0ac1d7971cc469ddad875ba18641ffa5a971809b9250a4ac",
+ "prompt_hash": "5ab838d236da42281a56567224f23b0bbb4b61eb83a09089fafbd94761d5565f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "Which experiment provided measurements of the CMB lensing potential using the PR4 NPIPE data release?",
+ "choices": [
+ "ACT-DR6",
+ "Planck",
+ "DESI",
+ "DES"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which experiment provided measurements of the CMB lensing potential using the PR4 NPIPE data release?\nAnswer:",
+ " ACT-DR6"
+ ],
+ [
+ "Question:Which experiment provided measurements of the CMB lensing potential using the PR4 NPIPE data release?\nAnswer:",
+ " Planck"
+ ],
+ [
+ "Question:Which experiment provided measurements of the CMB lensing potential using the PR4 NPIPE data release?\nAnswer:",
+ " DESI"
+ ],
+ [
+ "Question:Which experiment provided measurements of the CMB lensing potential using the PR4 NPIPE data release?\nAnswer:",
+ " DES"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.941354751586914,
+ false
+ ]
+ ],
+ [
+ [
+ -8.566020011901855,
+ false
+ ]
+ ],
+ [
+ [
+ -10.961417198181152,
+ false
+ ]
+ ],
+ [
+ [
+ -10.11159896850586,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.941354751586914,
+ false
+ ],
+ [
+ -8.566020011901855,
+ false
+ ],
+ [
+ -10.961417198181152,
+ false
+ ],
+ [
+ -10.11159896850586,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e1f9cfeac744ffec2dfa9e26688706bdd37d486ca5e583514ac532844115c757",
+ "prompt_hash": "a9cf649c16a1421d67dfe91a4f4556f9da722bf8231c08498c8e4ab673908ab6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "Which DE parameterization is characterized by a functional form w(a) = w_0 - w_a * ln a?",
+ "choices": [
+ "CPL",
+ "Exponential",
+ "JBP",
+ "Logarithmic"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which DE parameterization is characterized by a functional form w(a) = w_0 - w_a * ln a?\nAnswer:",
+ " CPL"
+ ],
+ [
+ "Question:Which DE parameterization is characterized by a functional form w(a) = w_0 - w_a * ln a?\nAnswer:",
+ " Exponential"
+ ],
+ [
+ "Question:Which DE parameterization is characterized by a functional form w(a) = w_0 - w_a * ln a?\nAnswer:",
+ " JBP"
+ ],
+ [
+ "Question:Which DE parameterization is characterized by a functional form w(a) = w_0 - w_a * ln a?\nAnswer:",
+ " Logarithmic"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.294991493225098,
+ false
+ ]
+ ],
+ [
+ [
+ -8.75047779083252,
+ false
+ ]
+ ],
+ [
+ [
+ -15.90029525756836,
+ false
+ ]
+ ],
+ [
+ [
+ -10.654081344604492,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.294991493225098,
+ false
+ ],
+ [
+ -8.75047779083252,
+ false
+ ],
+ [
+ -15.90029525756836,
+ false
+ ],
+ [
+ -10.654081344604492,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8dfd0f223423807451c6063af78c0afc900efca2f97c9c13ec34378122a50e73",
+ "prompt_hash": "709eb426ccdf71005995f3d6037e5013d2b95815c6f220f2f1c422762fb51d13",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "Which supernova sample produced the largest statistical preference for Dynamical Dark Energy (DDE)?",
+ "choices": [
+ "PantheonPlus",
+ "Union3",
+ "DESY5",
+ "SDSS-II"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which supernova sample produced the largest statistical preference for Dynamical Dark Energy (DDE)?\nAnswer:",
+ " PantheonPlus"
+ ],
+ [
+ "Question:Which supernova sample produced the largest statistical preference for Dynamical Dark Energy (DDE)?\nAnswer:",
+ " Union3"
+ ],
+ [
+ "Question:Which supernova sample produced the largest statistical preference for Dynamical Dark Energy (DDE)?\nAnswer:",
+ " DESY5"
+ ],
+ [
+ "Question:Which supernova sample produced the largest statistical preference for Dynamical Dark Energy (DDE)?\nAnswer:",
+ " SDSS-II"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.708585739135742,
+ false
+ ]
+ ],
+ [
+ [
+ -16.84764289855957,
+ false
+ ]
+ ],
+ [
+ [
+ -10.6693754196167,
+ false
+ ]
+ ],
+ [
+ [
+ -13.301567077636719,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.708585739135742,
+ false
+ ],
+ [
+ -16.84764289855957,
+ false
+ ],
+ [
+ -10.6693754196167,
+ false
+ ],
+ [
+ -13.301567077636719,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "14d642bf381ec0530fe6821aa6181c2344c27825e93f56616bdcf94a79d6edd1",
+ "prompt_hash": "064d714bc1f66de31bbb6f9847b45cd804d589dfa7fa0fa1ef48a35905e1ba6b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What is the primary challenge in global Structure-from-Motion related to translation averaging?",
+ "choices": [
+ "Lack of feature detection methods",
+ "Scale ambiguity in relative translation",
+ "Insufficient camera rotation data",
+ "Inability to compute homographies"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the primary challenge in global Structure-from-Motion related to translation averaging?\nAnswer:",
+ " Lack of feature detection methods"
+ ],
+ [
+ "Question:What is the primary challenge in global Structure-from-Motion related to translation averaging?\nAnswer:",
+ " Scale ambiguity in relative translation"
+ ],
+ [
+ "Question:What is the primary challenge in global Structure-from-Motion related to translation averaging?\nAnswer:",
+ " Insufficient camera rotation data"
+ ],
+ [
+ "Question:What is the primary challenge in global Structure-from-Motion related to translation averaging?\nAnswer:",
+ " Inability to compute homographies"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.926162719726562,
+ false
+ ]
+ ],
+ [
+ [
+ -22.360336303710938,
+ false
+ ]
+ ],
+ [
+ [
+ -26.29901885986328,
+ false
+ ]
+ ],
+ [
+ [
+ -31.63737678527832,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.926162719726562,
+ false
+ ],
+ [
+ -22.360336303710938,
+ false
+ ],
+ [
+ -26.29901885986328,
+ false
+ ],
+ [
+ -31.63737678527832,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f99d08f9316fce91b510f5d57417ce96c55cfbbbad46e9e0ed2510b687397869",
+ "prompt_hash": "a725097860ca0ad0446924e2aaecd9eeca8bbe5cbada9dca5897cb2f8366be48",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which robust loss function is used in the global positioning optimization of GLOMAP?",
+ "choices": [
+ "Mean squared error",
+ "Absolute error",
+ "Huber loss",
+ "Log-cosh loss"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which robust loss function is used in the global positioning optimization of GLOMAP?\nAnswer:",
+ " Mean squared error"
+ ],
+ [
+ "Question:Which robust loss function is used in the global positioning optimization of GLOMAP?\nAnswer:",
+ " Absolute error"
+ ],
+ [
+ "Question:Which robust loss function is used in the global positioning optimization of GLOMAP?\nAnswer:",
+ " Huber loss"
+ ],
+ [
+ "Question:Which robust loss function is used in the global positioning optimization of GLOMAP?\nAnswer:",
+ " Log-cosh loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.13412857055664,
+ false
+ ]
+ ],
+ [
+ [
+ -11.498472213745117,
+ false
+ ]
+ ],
+ [
+ [
+ -8.70973014831543,
+ false
+ ]
+ ],
+ [
+ [
+ -22.59506607055664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.13412857055664,
+ false
+ ],
+ [
+ -11.498472213745117,
+ false
+ ],
+ [
+ -8.70973014831543,
+ false
+ ],
+ [
+ -22.59506607055664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "77c25d36e232925c9f49584d45188e8d9c9f8d946821699754d5bc19f98e8279",
+ "prompt_hash": "7eca0f7c3a1febfdd9b41f98198073faa3be68055d4641da35e96e285afc07dc",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "Which datasets are used in the paper to evaluate performance on sequential data with millimeter-accurate ground truth?",
+ "choices": [
+ "IMC 2023 and MIP360",
+ "ETH3D SLAM and ETH3D MVS (rig)",
+ "Strecha and KITTI",
+ "LaMAR and VisualSfM"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which datasets are used in the paper to evaluate performance on sequential data with millimeter-accurate ground truth?\nAnswer:",
+ " IMC 2023 and MIP360"
+ ],
+ [
+ "Question:Which datasets are used in the paper to evaluate performance on sequential data with millimeter-accurate ground truth?\nAnswer:",
+ " ETH3D SLAM and ETH3D MVS (rig)"
+ ],
+ [
+ "Question:Which datasets are used in the paper to evaluate performance on sequential data with millimeter-accurate ground truth?\nAnswer:",
+ " Strecha and KITTI"
+ ],
+ [
+ "Question:Which datasets are used in the paper to evaluate performance on sequential data with millimeter-accurate ground truth?\nAnswer:",
+ " LaMAR and VisualSfM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -47.251590728759766,
+ false
+ ]
+ ],
+ [
+ [
+ -51.58158874511719,
+ false
+ ]
+ ],
+ [
+ [
+ -32.44324493408203,
+ false
+ ]
+ ],
+ [
+ [
+ -46.49724578857422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -47.251590728759766,
+ false
+ ],
+ [
+ -51.58158874511719,
+ false
+ ],
+ [
+ -32.44324493408203,
+ false
+ ],
+ [
+ -46.49724578857422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2df268151d36dc6a519f2de02a98aeffc1c67b48b4cc66a2316d317982acd099",
+ "prompt_hash": "2a3241ff08915e7beb5070a53126698c15aa77fe6abdadcb898f4ba796b9f07f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "Which optimization method is applied during global bundle adjustment in the GLOMAP pipeline?",
+ "choices": [
+ "Gradient descent",
+ "Stochastic gradient descent",
+ "Levenberg–Marquardt",
+ "Newton-Raphson"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which optimization method is applied during global bundle adjustment in the GLOMAP pipeline?\nAnswer:",
+ " Gradient descent"
+ ],
+ [
+ "Question:Which optimization method is applied during global bundle adjustment in the GLOMAP pipeline?\nAnswer:",
+ " Stochastic gradient descent"
+ ],
+ [
+ "Question:Which optimization method is applied during global bundle adjustment in the GLOMAP pipeline?\nAnswer:",
+ " Levenberg–Marquardt"
+ ],
+ [
+ "Question:Which optimization method is applied during global bundle adjustment in the GLOMAP pipeline?\nAnswer:",
+ " Newton-Raphson"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.872706890106201,
+ false
+ ]
+ ],
+ [
+ [
+ -10.082393646240234,
+ false
+ ]
+ ],
+ [
+ [
+ -11.263614654541016,
+ false
+ ]
+ ],
+ [
+ [
+ -9.485450744628906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.872706890106201,
+ false
+ ],
+ [
+ -10.082393646240234,
+ false
+ ],
+ [
+ -11.263614654541016,
+ false
+ ],
+ [
+ -9.485450744628906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "178654b53a9965290627138bc1a447ef847b56db76ca0dada65316f74dc3afc7",
+ "prompt_hash": "60df566c5bdf7cca2faa297f7a4005c0307ba8f475cd2f1c17d78c6af9629a03",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "Which open-source global SfM library is noted for using the LUD method for translation averaging?",
+ "choices": [
+ "OpenMVG",
+ "Theia",
+ "COLMAP",
+ "PixSfM"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which open-source global SfM library is noted for using the LUD method for translation averaging?\nAnswer:",
+ " OpenMVG"
+ ],
+ [
+ "Question:Which open-source global SfM library is noted for using the LUD method for translation averaging?\nAnswer:",
+ " Theia"
+ ],
+ [
+ "Question:Which open-source global SfM library is noted for using the LUD method for translation averaging?\nAnswer:",
+ " COLMAP"
+ ],
+ [
+ "Question:Which open-source global SfM library is noted for using the LUD method for translation averaging?\nAnswer:",
+ " PixSfM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.288139343261719,
+ false
+ ]
+ ],
+ [
+ [
+ -18.35643768310547,
+ false
+ ]
+ ],
+ [
+ [
+ -7.876762390136719,
+ false
+ ]
+ ],
+ [
+ [
+ -8.51231575012207,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.288139343261719,
+ false
+ ],
+ [
+ -18.35643768310547,
+ false
+ ],
+ [
+ -7.876762390136719,
+ false
+ ],
+ [
+ -8.51231575012207,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c1596459ab419391f5f7ede5691aa505a70638bb2de19354c58c6248c362e109",
+ "prompt_hash": "295125479a954ebe2e6c8d1fb4f3e35924196041365f10421b3e29a2c0b83a74",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What is the average success rate (ASR) of human red teaming on CYGNET before circuit breaking?",
+ "choices": [
+ "A. 70.4%",
+ "B. 77.5%",
+ "C. 7.1%",
+ "D. 69.2%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the average success rate (ASR) of human red teaming on CYGNET before circuit breaking?\nAnswer:",
+ " A. 70.4%"
+ ],
+ [
+ "Question:What is the average success rate (ASR) of human red teaming on CYGNET before circuit breaking?\nAnswer:",
+ " B. 77.5%"
+ ],
+ [
+ "Question:What is the average success rate (ASR) of human red teaming on CYGNET before circuit breaking?\nAnswer:",
+ " C. 7.1%"
+ ],
+ [
+ "Question:What is the average success rate (ASR) of human red teaming on CYGNET before circuit breaking?\nAnswer:",
+ " D. 69.2%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.771133422851562,
+ false
+ ]
+ ],
+ [
+ [
+ -26.42609405517578,
+ false
+ ]
+ ],
+ [
+ [
+ -26.433547973632812,
+ false
+ ]
+ ],
+ [
+ [
+ -27.742061614990234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.771133422851562,
+ false
+ ],
+ [
+ -26.42609405517578,
+ false
+ ],
+ [
+ -26.433547973632812,
+ false
+ ],
+ [
+ -27.742061614990234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2d216ad67d2d149e00496b388a15d9ac43439c72be3eca6ce5bec1c2f9a37076",
+ "prompt_hash": "e07b5748a3f14c1055fbf1e15ba87ad68c3b73db2b1981ba77687205852aa3f2",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "Which tactic involves layering different fictional scenarios within a fictional scenario?",
+ "choices": [
+ "A. Roleplay",
+ "B. Opposite Day",
+ "C. Recursion",
+ "D. Allegory"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which tactic involves layering different fictional scenarios within a fictional scenario?\nAnswer:",
+ " A. Roleplay"
+ ],
+ [
+ "Question:Which tactic involves layering different fictional scenarios within a fictional scenario?\nAnswer:",
+ " B. Opposite Day"
+ ],
+ [
+ "Question:Which tactic involves layering different fictional scenarios within a fictional scenario?\nAnswer:",
+ " C. Recursion"
+ ],
+ [
+ "Question:Which tactic involves layering different fictional scenarios within a fictional scenario?\nAnswer:",
+ " D. Allegory"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.934167861938477,
+ false
+ ]
+ ],
+ [
+ [
+ -27.397541046142578,
+ false
+ ]
+ ],
+ [
+ [
+ -21.708358764648438,
+ false
+ ]
+ ],
+ [
+ [
+ -20.459033966064453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.934167861938477,
+ false
+ ],
+ [
+ -27.397541046142578,
+ false
+ ],
+ [
+ -21.708358764648438,
+ false
+ ],
+ [
+ -20.459033966064453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f723e49506add63585f0863f4da23e2998a1ba84e8c0c774b6979bb327c52286",
+ "prompt_hash": "0990249ca41f5db19b4b4e6d9ff3106bf97a20fcc4eba5a607f4ce2e5468fd41",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "How many harmful behaviors are in HarmBench's standard and contextual test set?",
+ "choices": [
+ "A. 120",
+ "B. 240",
+ "C. 360",
+ "D. 480"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many harmful behaviors are in HarmBench's standard and contextual test set?\nAnswer:",
+ " A. 120"
+ ],
+ [
+ "Question:How many harmful behaviors are in HarmBench's standard and contextual test set?\nAnswer:",
+ " B. 240"
+ ],
+ [
+ "Question:How many harmful behaviors are in HarmBench's standard and contextual test set?\nAnswer:",
+ " C. 360"
+ ],
+ [
+ "Question:How many harmful behaviors are in HarmBench's standard and contextual test set?\nAnswer:",
+ " D. 480"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.521814346313477,
+ false
+ ]
+ ],
+ [
+ [
+ -23.202856063842773,
+ false
+ ]
+ ],
+ [
+ [
+ -22.82879638671875,
+ false
+ ]
+ ],
+ [
+ [
+ -24.634403228759766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.521814346313477,
+ false
+ ],
+ [
+ -23.202856063842773,
+ false
+ ],
+ [
+ -22.82879638671875,
+ false
+ ],
+ [
+ -24.634403228759766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e52d539c2546e24b6326d4ead53f0b17c674a1670d2c556d896fd19da605e7a1",
+ "prompt_hash": "39b763fbfc320c740fe3ca2c9f753f8bcbe864adfe0f3fa96efed184d3653b16",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which defense mechanism is applied via API access and is not open-source?",
+ "choices": [
+ "A. LAT",
+ "B. DERTA",
+ "C. CYGNET",
+ "D. RR"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which defense mechanism is applied via API access and is not open-source?\nAnswer:",
+ " A. LAT"
+ ],
+ [
+ "Question:Which defense mechanism is applied via API access and is not open-source?\nAnswer:",
+ " B. DERTA"
+ ],
+ [
+ "Question:Which defense mechanism is applied via API access and is not open-source?\nAnswer:",
+ " C. CYGNET"
+ ],
+ [
+ "Question:Which defense mechanism is applied via API access and is not open-source?\nAnswer:",
+ " D. RR"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.102420806884766,
+ false
+ ]
+ ],
+ [
+ [
+ -32.22483444213867,
+ false
+ ]
+ ],
+ [
+ [
+ -30.71807098388672,
+ false
+ ]
+ ],
+ [
+ [
+ -22.92583656311035,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.102420806884766,
+ false
+ ],
+ [
+ -32.22483444213867,
+ false
+ ],
+ [
+ -30.71807098388672,
+ false
+ ],
+ [
+ -22.92583656311035,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c31587319e9576d92e88a14e3a5d10106bb01d195060f1c3c2701e592ca7768d",
+ "prompt_hash": "e7519de7eadcc94f3aa9761a55eecf5ff23e51af685818f4ceafcf5e1e7443ca",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "Which unlearning method is applied on llama-3-8b-instruct in the evaluation?",
+ "choices": [
+ "A. LAT",
+ "B. RR",
+ "C. RMU",
+ "D. CYGNET"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which unlearning method is applied on llama-3-8b-instruct in the evaluation?\nAnswer:",
+ " A. LAT"
+ ],
+ [
+ "Question:Which unlearning method is applied on llama-3-8b-instruct in the evaluation?\nAnswer:",
+ " B. RR"
+ ],
+ [
+ "Question:Which unlearning method is applied on llama-3-8b-instruct in the evaluation?\nAnswer:",
+ " C. RMU"
+ ],
+ [
+ "Question:Which unlearning method is applied on llama-3-8b-instruct in the evaluation?\nAnswer:",
+ " D. CYGNET"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.075618743896484,
+ false
+ ]
+ ],
+ [
+ [
+ -23.058002471923828,
+ false
+ ]
+ ],
+ [
+ [
+ -26.396194458007812,
+ false
+ ]
+ ],
+ [
+ [
+ -36.67958068847656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.075618743896484,
+ false
+ ],
+ [
+ -23.058002471923828,
+ false
+ ],
+ [
+ -26.396194458007812,
+ false
+ ],
+ [
+ -36.67958068847656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f4a7fceca1cd86a4f8a0d7d203d463a77882225cc6b1bf417ab9e93108068ad0",
+ "prompt_hash": "a7a82305a6edbec80a6ece0b8791b8462b52fe8847dfbb00d98e2346ed3ca779",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What is the total number of parameters in the GOT model?",
+ "choices": [
+ "80M",
+ "500M",
+ "580M",
+ "1B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total number of parameters in the GOT model?\nAnswer:",
+ " 80M"
+ ],
+ [
+ "Question:What is the total number of parameters in the GOT model?\nAnswer:",
+ " 500M"
+ ],
+ [
+ "Question:What is the total number of parameters in the GOT model?\nAnswer:",
+ " 580M"
+ ],
+ [
+ "Question:What is the total number of parameters in the GOT model?\nAnswer:",
+ " 1B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.71826457977295,
+ false
+ ]
+ ],
+ [
+ [
+ -9.68232536315918,
+ false
+ ]
+ ],
+ [
+ [
+ -11.287875175476074,
+ false
+ ]
+ ],
+ [
+ [
+ -9.855000495910645,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.71826457977295,
+ false
+ ],
+ [
+ -9.68232536315918,
+ false
+ ],
+ [
+ -11.287875175476074,
+ false
+ ],
+ [
+ -9.855000495910645,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7380787e1c057f5435f570a3bbc5da525962ce15f476f949afecb4e65921862e",
+ "prompt_hash": "5e469dc8fe8590f2dc84e502a359096b01f776c79608066fe25c79a1720b858d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which dataset was used to extract pseudo ground truth for scene text OCR data in the GOT pre-training stage?",
+ "choices": [
+ "SynthText",
+ "PaddleOCR",
+ "Tesseract",
+ "TextOCR"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset was used to extract pseudo ground truth for scene text OCR data in the GOT pre-training stage?\nAnswer:",
+ " SynthText"
+ ],
+ [
+ "Question:Which dataset was used to extract pseudo ground truth for scene text OCR data in the GOT pre-training stage?\nAnswer:",
+ " PaddleOCR"
+ ],
+ [
+ "Question:Which dataset was used to extract pseudo ground truth for scene text OCR data in the GOT pre-training stage?\nAnswer:",
+ " Tesseract"
+ ],
+ [
+ "Question:Which dataset was used to extract pseudo ground truth for scene text OCR data in the GOT pre-training stage?\nAnswer:",
+ " TextOCR"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.177651405334473,
+ false
+ ]
+ ],
+ [
+ [
+ -9.446195602416992,
+ false
+ ]
+ ],
+ [
+ [
+ -8.80298900604248,
+ false
+ ]
+ ],
+ [
+ [
+ -10.531850814819336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.177651405334473,
+ false
+ ],
+ [
+ -9.446195602416992,
+ false
+ ],
+ [
+ -8.80298900604248,
+ false
+ ],
+ [
+ -10.531850814819336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "994deb6439a522548ebd5a163665b864cc2c0aa755b14b8cb6f0cc432c3a0309",
+ "prompt_hash": "8cac60a6fb45ae86eba482ac1556dee5bc0271a924826a110316a0f98106b562",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "Which rendering tool was used to generate images for geometric shapes in GOT's dataset?",
+ "choices": [
+ "Verovio",
+ "TikZ",
+ "Mathpix",
+ "Matplotlib"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which rendering tool was used to generate images for geometric shapes in GOT's dataset?\nAnswer:",
+ " Verovio"
+ ],
+ [
+ "Question:Which rendering tool was used to generate images for geometric shapes in GOT's dataset?\nAnswer:",
+ " TikZ"
+ ],
+ [
+ "Question:Which rendering tool was used to generate images for geometric shapes in GOT's dataset?\nAnswer:",
+ " Mathpix"
+ ],
+ [
+ "Question:Which rendering tool was used to generate images for geometric shapes in GOT's dataset?\nAnswer:",
+ " Matplotlib"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.639054298400879,
+ false
+ ]
+ ],
+ [
+ [
+ -11.802534103393555,
+ false
+ ]
+ ],
+ [
+ [
+ -16.534772872924805,
+ false
+ ]
+ ],
+ [
+ [
+ -11.40635871887207,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.639054298400879,
+ false
+ ],
+ [
+ -11.802534103393555,
+ false
+ ],
+ [
+ -16.534772872924805,
+ false
+ ],
+ [
+ -11.40635871887207,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7cfda73fc25b4dd06193ffc4b04cfbaa74dc7b5eccaf4c5ae4c08835ab0a5c34",
+ "prompt_hash": "1dca76e7c2d4d469366a1fb76962c55c4f505b97dbfd9d4c9b94834dd1c7c65e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "What decoder model is used in the final architecture of GOT?",
+ "choices": [
+ "LLaMA-2 7B",
+ "OPT-125M",
+ "Qwen-0.5B",
+ "GPT-2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What decoder model is used in the final architecture of GOT?\nAnswer:",
+ " LLaMA-2 7B"
+ ],
+ [
+ "Question:What decoder model is used in the final architecture of GOT?\nAnswer:",
+ " OPT-125M"
+ ],
+ [
+ "Question:What decoder model is used in the final architecture of GOT?\nAnswer:",
+ " Qwen-0.5B"
+ ],
+ [
+ "Question:What decoder model is used in the final architecture of GOT?\nAnswer:",
+ " GPT-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.056198120117188,
+ false
+ ]
+ ],
+ [
+ [
+ -14.997190475463867,
+ false
+ ]
+ ],
+ [
+ [
+ -16.97852897644043,
+ false
+ ]
+ ],
+ [
+ [
+ -7.084348678588867,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.056198120117188,
+ false
+ ],
+ [
+ -14.997190475463867,
+ false
+ ],
+ [
+ -16.97852897644043,
+ false
+ ],
+ [
+ -7.084348678588867,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b6d651e38fd2fcd7c40a7bbb536c4c771234618ad561faf300b5f1e81aadd4c0",
+ "prompt_hash": "dcc0ed11c1112a6cf430d28aa636753877743b73b960590f90a3ac0c42185762",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "How many image-text pairs are used in the pre-training of the GOT vision encoder?",
+ "choices": [
+ "3 million",
+ "5 million",
+ "8 million",
+ "10 million"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many image-text pairs are used in the pre-training of the GOT vision encoder?\nAnswer:",
+ " 3 million"
+ ],
+ [
+ "Question:How many image-text pairs are used in the pre-training of the GOT vision encoder?\nAnswer:",
+ " 5 million"
+ ],
+ [
+ "Question:How many image-text pairs are used in the pre-training of the GOT vision encoder?\nAnswer:",
+ " 8 million"
+ ],
+ [
+ "Question:How many image-text pairs are used in the pre-training of the GOT vision encoder?\nAnswer:",
+ " 10 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.339093208312988,
+ false
+ ]
+ ],
+ [
+ [
+ -9.036966323852539,
+ false
+ ]
+ ],
+ [
+ [
+ -10.546751022338867,
+ false
+ ]
+ ],
+ [
+ [
+ -8.766083717346191,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.339093208312988,
+ false
+ ],
+ [
+ -9.036966323852539,
+ false
+ ],
+ [
+ -10.546751022338867,
+ false
+ ],
+ [
+ -8.766083717346191,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8b7f7f937740eb1703167a07d32f5fca12fae238eb7612113ec02e2feb40ae65",
+ "prompt_hash": "d6b8f044cc916afe2580b1ac3d16140829d110e6f941af99d0bebf937f4a4aaf",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What does the ViewCrafter framework use to achieve precise control of 6 DoF camera poses?",
+ "choices": [
+ "Text prompts and depth estimation",
+ "Latent space embeddings and video warping",
+ "Point cloud representations and video diffusion models",
+ "2D image-based monocular estimations"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the ViewCrafter framework use to achieve precise control of 6 DoF camera poses?\nAnswer:",
+ " Text prompts and depth estimation"
+ ],
+ [
+ "Question:What does the ViewCrafter framework use to achieve precise control of 6 DoF camera poses?\nAnswer:",
+ " Latent space embeddings and video warping"
+ ],
+ [
+ "Question:What does the ViewCrafter framework use to achieve precise control of 6 DoF camera poses?\nAnswer:",
+ " Point cloud representations and video diffusion models"
+ ],
+ [
+ "Question:What does the ViewCrafter framework use to achieve precise control of 6 DoF camera poses?\nAnswer:",
+ " 2D image-based monocular estimations"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.642772674560547,
+ false
+ ]
+ ],
+ [
+ [
+ -31.760562896728516,
+ false
+ ]
+ ],
+ [
+ [
+ -31.7762451171875,
+ false
+ ]
+ ],
+ [
+ [
+ -29.73705291748047,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.642772674560547,
+ false
+ ],
+ [
+ -31.760562896728516,
+ false
+ ],
+ [
+ -31.7762451171875,
+ false
+ ],
+ [
+ -29.73705291748047,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "20efdb6f39d6e770c732dcdf1c0b35244cedabe9d6dcd0701091d58548cf74ab",
+ "prompt_hash": "f01ce7509a42c001a8b4687c85922b07e4e5b3e7e3646bca906850209df2650a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "Which model is used as the base video diffusion model in ViewCrafter?",
+ "choices": [
+ "AnimateDiff",
+ "DynamiCrafter",
+ "ZeroNVS",
+ "LucidDreamer"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model is used as the base video diffusion model in ViewCrafter?\nAnswer:",
+ " AnimateDiff"
+ ],
+ [
+ "Question:Which model is used as the base video diffusion model in ViewCrafter?\nAnswer:",
+ " DynamiCrafter"
+ ],
+ [
+ "Question:Which model is used as the base video diffusion model in ViewCrafter?\nAnswer:",
+ " ZeroNVS"
+ ],
+ [
+ "Question:Which model is used as the base video diffusion model in ViewCrafter?\nAnswer:",
+ " LucidDreamer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.66192626953125,
+ false
+ ]
+ ],
+ [
+ [
+ -11.834842681884766,
+ false
+ ]
+ ],
+ [
+ [
+ -18.940771102905273,
+ false
+ ]
+ ],
+ [
+ [
+ -12.462959289550781,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.66192626953125,
+ false
+ ],
+ [
+ -11.834842681884766,
+ false
+ ],
+ [
+ -18.940771102905273,
+ false
+ ],
+ [
+ -12.462959289550781,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0dd03d82ddbc637e00a05439ac2ea544b4b5bcb60d72a3b24720bb57f23ce709",
+ "prompt_hash": "c533106d2d00d3188a020b9dcead6a9543bdb2b762a234e8f4deba5e3bf21ea3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "What algorithm does ViewCrafter employ to determine the next best camera pose during iterative synthesis?",
+ "choices": [
+ "Random walk sampling",
+ "Fixed circular trajectory",
+ "Next-Best-View (NBV) planning",
+ "Gradient-based motion estimation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What algorithm does ViewCrafter employ to determine the next best camera pose during iterative synthesis?\nAnswer:",
+ " Random walk sampling"
+ ],
+ [
+ "Question:What algorithm does ViewCrafter employ to determine the next best camera pose during iterative synthesis?\nAnswer:",
+ " Fixed circular trajectory"
+ ],
+ [
+ "Question:What algorithm does ViewCrafter employ to determine the next best camera pose during iterative synthesis?\nAnswer:",
+ " Next-Best-View (NBV) planning"
+ ],
+ [
+ "Question:What algorithm does ViewCrafter employ to determine the next best camera pose during iterative synthesis?\nAnswer:",
+ " Gradient-based motion estimation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.710290908813477,
+ false
+ ]
+ ],
+ [
+ [
+ -23.67266082763672,
+ false
+ ]
+ ],
+ [
+ [
+ -24.032934188842773,
+ false
+ ]
+ ],
+ [
+ [
+ -19.99657440185547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.710290908813477,
+ false
+ ],
+ [
+ -23.67266082763672,
+ false
+ ],
+ [
+ -24.032934188842773,
+ false
+ ],
+ [
+ -19.99657440185547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8a425b4867abc928d2df97796ef238fe6f5ed803bee6c22e708315eeb0f1e59b",
+ "prompt_hash": "8a872d35921534c9cd4fdd3e6bac16a8947410679a755b76e5afe39b674f49cc",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "Which datasets are used to train the ViewCrafter model?",
+ "choices": [
+ "ScanNet and CO3D",
+ "DL3DV and RealEstate10K",
+ "ShapeNet and COCO",
+ "Tanks-and-Temples and Matterport3D"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which datasets are used to train the ViewCrafter model?\nAnswer:",
+ " ScanNet and CO3D"
+ ],
+ [
+ "Question:Which datasets are used to train the ViewCrafter model?\nAnswer:",
+ " DL3DV and RealEstate10K"
+ ],
+ [
+ "Question:Which datasets are used to train the ViewCrafter model?\nAnswer:",
+ " ShapeNet and COCO"
+ ],
+ [
+ "Question:Which datasets are used to train the ViewCrafter model?\nAnswer:",
+ " Tanks-and-Temples and Matterport3D"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.817087173461914,
+ false
+ ]
+ ],
+ [
+ [
+ -42.86650466918945,
+ false
+ ]
+ ],
+ [
+ [
+ -19.645099639892578,
+ false
+ ]
+ ],
+ [
+ [
+ -27.194059371948242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.817087173461914,
+ false
+ ],
+ [
+ -42.86650466918945,
+ false
+ ],
+ [
+ -19.645099639892578,
+ false
+ ],
+ [
+ -27.194059371948242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a80bdbf698650f3e6766a717561335bd14e5e7f1f2567eecbc983bb009bb4fb5",
+ "prompt_hash": "48f041efbc3663626df4f54a69d1bfcf3f8393fdef02d683f8686aba0b98cd46",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "Which method does ViewCrafter use to reconstruct the point cloud from sparse input images?",
+ "choices": [
+ "COLMAP",
+ "Structure-from-Motion",
+ "DUSt3R",
+ "Plücker coordinate regression"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which method does ViewCrafter use to reconstruct the point cloud from sparse input images?\nAnswer:",
+ " COLMAP"
+ ],
+ [
+ "Question:Which method does ViewCrafter use to reconstruct the point cloud from sparse input images?\nAnswer:",
+ " Structure-from-Motion"
+ ],
+ [
+ "Question:Which method does ViewCrafter use to reconstruct the point cloud from sparse input images?\nAnswer:",
+ " DUSt3R"
+ ],
+ [
+ "Question:Which method does ViewCrafter use to reconstruct the point cloud from sparse input images?\nAnswer:",
+ " Plücker coordinate regression"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.547996520996094,
+ false
+ ]
+ ],
+ [
+ [
+ -9.73310375213623,
+ false
+ ]
+ ],
+ [
+ [
+ -32.7406005859375,
+ false
+ ]
+ ],
+ [
+ [
+ -33.1044921875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.547996520996094,
+ false
+ ],
+ [
+ -9.73310375213623,
+ false
+ ],
+ [
+ -32.7406005859375,
+ false
+ ],
+ [
+ -33.1044921875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4e725f4f1dd36dad41d72a0ef19b65be68e912ec0bb12af51288fe5c9a242232",
+ "prompt_hash": "fbcbd75cc4ed82855cd63198990031d0dcf1bca655ab55f830aedb5b3bf69e46",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "Which benchmark includes complex scenarios like parallel and multiple function calls in languages such as Java, JavaScript, and Python?",
+ "choices": [
+ "AgentBench",
+ "ToolBench",
+ "ToolQuery",
+ "Berkeley Function-Calling Benchmark"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which benchmark includes complex scenarios like parallel and multiple function calls in languages such as Java, JavaScript, and Python?\nAnswer:",
+ " AgentBench"
+ ],
+ [
+ "Question:Which benchmark includes complex scenarios like parallel and multiple function calls in languages such as Java, JavaScript, and Python?\nAnswer:",
+ " ToolBench"
+ ],
+ [
+ "Question:Which benchmark includes complex scenarios like parallel and multiple function calls in languages such as Java, JavaScript, and Python?\nAnswer:",
+ " ToolQuery"
+ ],
+ [
+ "Question:Which benchmark includes complex scenarios like parallel and multiple function calls in languages such as Java, JavaScript, and Python?\nAnswer:",
+ " Berkeley Function-Calling Benchmark"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.500007629394531,
+ false
+ ]
+ ],
+ [
+ [
+ -13.430700302124023,
+ false
+ ]
+ ],
+ [
+ [
+ -22.2950439453125,
+ false
+ ]
+ ],
+ [
+ [
+ -26.18708610534668,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.500007629394531,
+ false
+ ],
+ [
+ -13.430700302124023,
+ false
+ ],
+ [
+ -22.2950439453125,
+ false
+ ],
+ [
+ -26.18708610534668,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "50e437a64770455b952405b5a456fde6bac837d3fbeacbcde5eb5eacb46b1d1e",
+ "prompt_hash": "c7c05251e7a48d01e77bfe1c75830f826e9b4fc4fadf5119c27132a213fbbd0a",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "Which data synthesis framework is used to generate verifiable datasets based on executable APIs?",
+ "choices": [
+ "ToolBench",
+ "AgentOhana",
+ "APIGen",
+ "DialogStudio"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which data synthesis framework is used to generate verifiable datasets based on executable APIs?\nAnswer:",
+ " ToolBench"
+ ],
+ [
+ "Question:Which data synthesis framework is used to generate verifiable datasets based on executable APIs?\nAnswer:",
+ " AgentOhana"
+ ],
+ [
+ "Question:Which data synthesis framework is used to generate verifiable datasets based on executable APIs?\nAnswer:",
+ " APIGen"
+ ],
+ [
+ "Question:Which data synthesis framework is used to generate verifiable datasets based on executable APIs?\nAnswer:",
+ " DialogStudio"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.682613372802734,
+ false
+ ]
+ ],
+ [
+ [
+ -25.438610076904297,
+ false
+ ]
+ ],
+ [
+ [
+ -10.732872009277344,
+ false
+ ]
+ ],
+ [
+ [
+ -22.601285934448242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.682613372802734,
+ false
+ ],
+ [
+ -25.438610076904297,
+ false
+ ],
+ [
+ -10.732872009277344,
+ false
+ ],
+ [
+ -22.601285934448242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6bdea1c9b0ac67637689735ba7b180e755376e3f84be30e1bf448190ed012d64",
+ "prompt_hash": "3c98548a57b1c17f173a9e5501a877d63d3d69d4993c2749ba04d30a62713361",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "What type of augmentation involves rephrasing instructions and verifying them with LLMs to ensure consistency?",
+ "choices": [
+ "Prompt Format Augmentation",
+ "Order Shuffling",
+ "Instruction-Following Augmentation",
+ "Concatenation Tokens"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of augmentation involves rephrasing instructions and verifying them with LLMs to ensure consistency?\nAnswer:",
+ " Prompt Format Augmentation"
+ ],
+ [
+ "Question:What type of augmentation involves rephrasing instructions and verifying them with LLMs to ensure consistency?\nAnswer:",
+ " Order Shuffling"
+ ],
+ [
+ "Question:What type of augmentation involves rephrasing instructions and verifying them with LLMs to ensure consistency?\nAnswer:",
+ " Instruction-Following Augmentation"
+ ],
+ [
+ "Question:What type of augmentation involves rephrasing instructions and verifying them with LLMs to ensure consistency?\nAnswer:",
+ " Concatenation Tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.61235809326172,
+ false
+ ]
+ ],
+ [
+ [
+ -20.94488525390625,
+ false
+ ]
+ ],
+ [
+ [
+ -13.356648445129395,
+ false
+ ]
+ ],
+ [
+ [
+ -25.019317626953125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.61235809326172,
+ false
+ ],
+ [
+ -20.94488525390625,
+ false
+ ],
+ [
+ -13.356648445129395,
+ false
+ ],
+ [
+ -25.019317626953125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0c1b6a5d3000ee881d1e8dded9f31d9fb738710106c6552e7ab4f1d80cd1a4f1",
+ "prompt_hash": "2ae7793b6c6d78c339d6de0dc6bbb465497256c56f8735df1ef4cd965487f3b6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "What is the smallest model in the xLAM series mentioned, and what is its approximate accuracy on the BFCL v2 benchmark?",
+ "choices": [
+ "xLAM-1b-fc-r with 75.43%",
+ "xLAM-7b-r with 80.33%",
+ "xLAM-8x22b-r with 87.31%",
+ "xLAM-8x7b-r with 84.69%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the smallest model in the xLAM series mentioned, and what is its approximate accuracy on the BFCL v2 benchmark?\nAnswer:",
+ " xLAM-1b-fc-r with 75.43%"
+ ],
+ [
+ "Question:What is the smallest model in the xLAM series mentioned, and what is its approximate accuracy on the BFCL v2 benchmark?\nAnswer:",
+ " xLAM-7b-r with 80.33%"
+ ],
+ [
+ "Question:What is the smallest model in the xLAM series mentioned, and what is its approximate accuracy on the BFCL v2 benchmark?\nAnswer:",
+ " xLAM-8x22b-r with 87.31%"
+ ],
+ [
+ "Question:What is the smallest model in the xLAM series mentioned, and what is its approximate accuracy on the BFCL v2 benchmark?\nAnswer:",
+ " xLAM-8x7b-r with 84.69%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -58.31315612792969,
+ false
+ ]
+ ],
+ [
+ [
+ -44.66631317138672,
+ false
+ ]
+ ],
+ [
+ [
+ -51.25954818725586,
+ false
+ ]
+ ],
+ [
+ [
+ -48.78382873535156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -58.31315612792969,
+ false
+ ],
+ [
+ -44.66631317138672,
+ false
+ ],
+ [
+ -51.25954818725586,
+ false
+ ],
+ [
+ -48.78382873535156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6c0bc5fff5cb3e8d98cb7fa345607fe20ecaa1d0c3c3cc95554662f11a026b5f",
+ "prompt_hash": "bce0a721dac988be6371d832269753de01df1413eb3a30636480ef35325f7ab9",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "Which technique is applied to avoid overfitting on a specific tool order in the training data?",
+ "choices": [
+ "Format Instruction-Following",
+ "LoRA-based Fine-Tuning",
+ "Order Shuffling",
+ "Function-Calling Templates"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which technique is applied to avoid overfitting on a specific tool order in the training data?\nAnswer:",
+ " Format Instruction-Following"
+ ],
+ [
+ "Question:Which technique is applied to avoid overfitting on a specific tool order in the training data?\nAnswer:",
+ " LoRA-based Fine-Tuning"
+ ],
+ [
+ "Question:Which technique is applied to avoid overfitting on a specific tool order in the training data?\nAnswer:",
+ " Order Shuffling"
+ ],
+ [
+ "Question:Which technique is applied to avoid overfitting on a specific tool order in the training data?\nAnswer:",
+ " Function-Calling Templates"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.455965042114258,
+ false
+ ]
+ ],
+ [
+ [
+ -21.98909568786621,
+ false
+ ]
+ ],
+ [
+ [
+ -18.27690315246582,
+ false
+ ]
+ ],
+ [
+ [
+ -29.975255966186523,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.455965042114258,
+ false
+ ],
+ [
+ -21.98909568786621,
+ false
+ ],
+ [
+ -18.27690315246582,
+ false
+ ],
+ [
+ -29.975255966186523,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7bf55761c45c0593f901523c8d8abff6c2a18e28c75c860b2cce9eb771f6ee34",
+ "prompt_hash": "52a3b30b08b978b46fc93a59102d2acf835be5a76f55ba7c83221c2637a6438a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the internal code name of Baidu's next-generation query-ad matching project?",
+ "choices": [
+ "Mobius",
+ "Phoenix Nest",
+ "OPQ",
+ "ANN"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the internal code name of Baidu's next-generation query-ad matching project?\nAnswer:",
+ " Mobius"
+ ],
+ [
+ "Question:What is the internal code name of Baidu's next-generation query-ad matching project?\nAnswer:",
+ " Phoenix Nest"
+ ],
+ [
+ "Question:What is the internal code name of Baidu's next-generation query-ad matching project?\nAnswer:",
+ " OPQ"
+ ],
+ [
+ "Question:What is the internal code name of Baidu's next-generation query-ad matching project?\nAnswer:",
+ " ANN"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.405713081359863,
+ false
+ ]
+ ],
+ [
+ [
+ -20.490856170654297,
+ false
+ ]
+ ],
+ [
+ [
+ -15.323873519897461,
+ false
+ ]
+ ],
+ [
+ [
+ -12.232057571411133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.405713081359863,
+ false
+ ],
+ [
+ -20.490856170654297,
+ false
+ ],
+ [
+ -15.323873519897461,
+ false
+ ],
+ [
+ -12.232057571411133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "add4053f4575b941d604a1c65c539138615d9db0ae66f788419ffd4c83255035",
+ "prompt_hash": "aa88127607633251bb957100ec9d8356d119bc74bcdfc424d6633f46d0d4ef5f",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "What is the business metric defined as CPM in Baidu's sponsored search?",
+ "choices": [
+ "CPM = Bid × ROI",
+ "CPM = CTR × Bid",
+ "CPM = Clicks × ROI",
+ "CPM = CPC × CTR"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the business metric defined as CPM in Baidu's sponsored search?\nAnswer:",
+ " CPM = Bid × ROI"
+ ],
+ [
+ "Question:What is the business metric defined as CPM in Baidu's sponsored search?\nAnswer:",
+ " CPM = CTR × Bid"
+ ],
+ [
+ "Question:What is the business metric defined as CPM in Baidu's sponsored search?\nAnswer:",
+ " CPM = Clicks × ROI"
+ ],
+ [
+ "Question:What is the business metric defined as CPM in Baidu's sponsored search?\nAnswer:",
+ " CPM = CPC × CTR"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.9281120300293,
+ false
+ ]
+ ],
+ [
+ [
+ -25.26803207397461,
+ false
+ ]
+ ],
+ [
+ [
+ -30.90808868408203,
+ false
+ ]
+ ],
+ [
+ [
+ -18.589683532714844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.9281120300293,
+ false
+ ],
+ [
+ -25.26803207397461,
+ false
+ ],
+ [
+ -30.90808868408203,
+ false
+ ],
+ [
+ -18.589683532714844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "86b40e187d2628ac02aa83671304f7187db6bccfc71eba9db2b342a4d7f78653",
+ "prompt_hash": "d52c15f9293fd3abce639a3ac5f5e00a7e01b38415210b2bbcce80b8baf5b40e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "Which algorithm does Mobius-V1 use for fast ad indexing and retrieval?",
+ "choices": [
+ "Random Partition Trees",
+ "Product Quantization",
+ "Optimized Product Quantization",
+ "K-Means Hashing"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which algorithm does Mobius-V1 use for fast ad indexing and retrieval?\nAnswer:",
+ " Random Partition Trees"
+ ],
+ [
+ "Question:Which algorithm does Mobius-V1 use for fast ad indexing and retrieval?\nAnswer:",
+ " Product Quantization"
+ ],
+ [
+ "Question:Which algorithm does Mobius-V1 use for fast ad indexing and retrieval?\nAnswer:",
+ " Optimized Product Quantization"
+ ],
+ [
+ "Question:Which algorithm does Mobius-V1 use for fast ad indexing and retrieval?\nAnswer:",
+ " K-Means Hashing"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.32925796508789,
+ false
+ ]
+ ],
+ [
+ [
+ -16.3418025970459,
+ false
+ ]
+ ],
+ [
+ [
+ -22.6213321685791,
+ false
+ ]
+ ],
+ [
+ [
+ -22.01201820373535,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.32925796508789,
+ false
+ ],
+ [
+ -16.3418025970459,
+ false
+ ],
+ [
+ -22.6213321685791,
+ false
+ ],
+ [
+ -22.01201820373535,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "28685b874477d3310d55c078b762704fe9ce7e447e7417772159e91e24f5faed",
+ "prompt_hash": "eefc4ae19997e45fd3f48c0cf92fd7f448ac3545a5ae88edfa561cbd874ea861",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "What performance improvement did Mobius-V1 achieve in CPM on the Baidu App?",
+ "choices": [
+ "+1.0%",
+ "+2.9%",
+ "+3.8%",
+ "+5.0%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What performance improvement did Mobius-V1 achieve in CPM on the Baidu App?\nAnswer:",
+ " +1.0%"
+ ],
+ [
+ "Question:What performance improvement did Mobius-V1 achieve in CPM on the Baidu App?\nAnswer:",
+ " +2.9%"
+ ],
+ [
+ "Question:What performance improvement did Mobius-V1 achieve in CPM on the Baidu App?\nAnswer:",
+ " +3.8%"
+ ],
+ [
+ "Question:What performance improvement did Mobius-V1 achieve in CPM on the Baidu App?\nAnswer:",
+ " +5.0%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.06861114501953,
+ false
+ ]
+ ],
+ [
+ [
+ -20.90535545349121,
+ false
+ ]
+ ],
+ [
+ [
+ -20.866792678833008,
+ false
+ ]
+ ],
+ [
+ [
+ -21.263343811035156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.06861114501953,
+ false
+ ],
+ [
+ -20.90535545349121,
+ false
+ ],
+ [
+ -20.866792678833008,
+ false
+ ],
+ [
+ -21.263343811035156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4e5118f4ffe10fb48bdfb0a855069d9e266c775ca731744ccd557342c37dff21",
+ "prompt_hash": "f3f24a3f3a904c41ff9d03ece9af0310d088dd1c3c69829375bcf4326424b28d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "In the CTR model training, what is the role of the 'teacher' component in Mobius-V1?",
+ "choices": [
+ "To predict final ad rankings",
+ "To simulate click behavior of users",
+ "To judge semantic relevance of query-ad pairs",
+ "To compress feature vectors for retrieval"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the CTR model training, what is the role of the 'teacher' component in Mobius-V1?\nAnswer:",
+ " To predict final ad rankings"
+ ],
+ [
+ "Question:In the CTR model training, what is the role of the 'teacher' component in Mobius-V1?\nAnswer:",
+ " To simulate click behavior of users"
+ ],
+ [
+ "Question:In the CTR model training, what is the role of the 'teacher' component in Mobius-V1?\nAnswer:",
+ " To judge semantic relevance of query-ad pairs"
+ ],
+ [
+ "Question:In the CTR model training, what is the role of the 'teacher' component in Mobius-V1?\nAnswer:",
+ " To compress feature vectors for retrieval"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.07558059692383,
+ false
+ ]
+ ],
+ [
+ [
+ -27.24683380126953,
+ false
+ ]
+ ],
+ [
+ [
+ -40.58359909057617,
+ false
+ ]
+ ],
+ [
+ [
+ -33.87470245361328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.07558059692383,
+ false
+ ],
+ [
+ -27.24683380126953,
+ false
+ ],
+ [
+ -40.58359909057617,
+ false
+ ],
+ [
+ -33.87470245361328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7b2260f5f2914c1b0824e72b40840441445c51603206d3bc51ba5c7c90eef71b",
+ "prompt_hash": "a5715e3e45fb1e58df657cd7dfa7b3a20372d1b0f3222421b6e810d662ed1e9c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What is the maximum number of papers retrieved by the research ideation agent during the paper retrieval step?",
+ "choices": [
+ "20",
+ "60",
+ "120",
+ "200"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum number of papers retrieved by the research ideation agent during the paper retrieval step?\nAnswer:",
+ " 20"
+ ],
+ [
+ "Question:What is the maximum number of papers retrieved by the research ideation agent during the paper retrieval step?\nAnswer:",
+ " 60"
+ ],
+ [
+ "Question:What is the maximum number of papers retrieved by the research ideation agent during the paper retrieval step?\nAnswer:",
+ " 120"
+ ],
+ [
+ "Question:What is the maximum number of papers retrieved by the research ideation agent during the paper retrieval step?\nAnswer:",
+ " 200"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.57956862449646,
+ false
+ ]
+ ],
+ [
+ [
+ -5.394436836242676,
+ false
+ ]
+ ],
+ [
+ [
+ -6.261102199554443,
+ false
+ ]
+ ],
+ [
+ [
+ -5.285019397735596,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.57956862449646,
+ false
+ ],
+ [
+ -5.394436836242676,
+ false
+ ],
+ [
+ -6.261102199554443,
+ false
+ ],
+ [
+ -5.285019397735596,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f646bbd461c4465b3ec2a1464705c9f7184cadc5d25e456f267250e6668570ce",
+ "prompt_hash": "1df44aa395f1715ec809617aad796f435ab7a39758dfc89b92b3d86bbdda0282",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "Which model was selected as the ranker for project proposal ranking based on pairwise comparisons?",
+ "choices": [
+ "GPT-4o",
+ "Claude-3.5-Sonnet",
+ "Claude-3-Opus",
+ "Gemini 1.5"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model was selected as the ranker for project proposal ranking based on pairwise comparisons?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which model was selected as the ranker for project proposal ranking based on pairwise comparisons?\nAnswer:",
+ " Claude-3.5-Sonnet"
+ ],
+ [
+ "Question:Which model was selected as the ranker for project proposal ranking based on pairwise comparisons?\nAnswer:",
+ " Claude-3-Opus"
+ ],
+ [
+ "Question:Which model was selected as the ranker for project proposal ranking based on pairwise comparisons?\nAnswer:",
+ " Gemini 1.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.801225662231445,
+ false
+ ]
+ ],
+ [
+ [
+ -18.31494903564453,
+ false
+ ]
+ ],
+ [
+ [
+ -13.818419456481934,
+ false
+ ]
+ ],
+ [
+ [
+ -11.413298606872559,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.801225662231445,
+ false
+ ],
+ [
+ -18.31494903564453,
+ false
+ ],
+ [
+ -13.818419456481934,
+ false
+ ],
+ [
+ -11.413298606872559,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fc2ed4314dcee0565ca79572989aca6514627cfccf638ed7f981ebdb0c6b2078",
+ "prompt_hash": "ec596453bf625ac5a51f528394afe1d5e65a5cb337ed866606699df4b7014ee6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "How many seed ideas does the ideation agent generate per research topic?",
+ "choices": [
+ "500",
+ "1000",
+ "2000",
+ "4000"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:How many seed ideas does the ideation agent generate per research topic?\nAnswer:",
+ " 500"
+ ],
+ [
+ "Question:How many seed ideas does the ideation agent generate per research topic?\nAnswer:",
+ " 1000"
+ ],
+ [
+ "Question:How many seed ideas does the ideation agent generate per research topic?\nAnswer:",
+ " 2000"
+ ],
+ [
+ "Question:How many seed ideas does the ideation agent generate per research topic?\nAnswer:",
+ " 4000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.664156913757324,
+ false
+ ]
+ ],
+ [
+ [
+ -9.027714729309082,
+ false
+ ]
+ ],
+ [
+ [
+ -10.901153564453125,
+ false
+ ]
+ ],
+ [
+ [
+ -11.820749282836914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.664156913757324,
+ false
+ ],
+ [
+ -9.027714729309082,
+ false
+ ],
+ [
+ -10.901153564453125,
+ false
+ ],
+ [
+ -11.820749282836914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9a34ce2f253785dd2e4ea6e29e06a175a7e030c54c846d40ebb91821f527e3fc",
+ "prompt_hash": "e932a0054f93b6ab828dd21259f0574bb1b42dabcbfde0b81e8a9d003b5d410b",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "Which Sentence-Transformers model is used for deduplicating seed ideas?",
+ "choices": [
+ "all-MiniLM-L6-v2",
+ "paraphrase-MiniLM-L12-v2",
+ "mpnet-base-v2",
+ "bert-base-nli-mean-tokens"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which Sentence-Transformers model is used for deduplicating seed ideas?\nAnswer:",
+ " all-MiniLM-L6-v2"
+ ],
+ [
+ "Question:Which Sentence-Transformers model is used for deduplicating seed ideas?\nAnswer:",
+ " paraphrase-MiniLM-L12-v2"
+ ],
+ [
+ "Question:Which Sentence-Transformers model is used for deduplicating seed ideas?\nAnswer:",
+ " mpnet-base-v2"
+ ],
+ [
+ "Question:Which Sentence-Transformers model is used for deduplicating seed ideas?\nAnswer:",
+ " bert-base-nli-mean-tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.210933685302734,
+ false
+ ]
+ ],
+ [
+ [
+ -23.711734771728516,
+ false
+ ]
+ ],
+ [
+ [
+ -13.684947967529297,
+ false
+ ]
+ ],
+ [
+ [
+ -13.334312438964844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.210933685302734,
+ false
+ ],
+ [
+ -23.711734771728516,
+ false
+ ],
+ [
+ -13.684947967529297,
+ false
+ ],
+ [
+ -13.334312438964844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4485c7632925269c4b382a986bad0930a216df9f3a9b00c78f27ea87e5f0ed10",
+ "prompt_hash": "90afa19aaaee164fc1373ae78040ef1852c7c499388d136a5263d41f281cf1da",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "What threshold is used for cosine similarity in the seed idea deduplication process?",
+ "choices": [
+ "0.5",
+ "0.7",
+ "0.8",
+ "0.9"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What threshold is used for cosine similarity in the seed idea deduplication process?\nAnswer:",
+ " 0.5"
+ ],
+ [
+ "Question:What threshold is used for cosine similarity in the seed idea deduplication process?\nAnswer:",
+ " 0.7"
+ ],
+ [
+ "Question:What threshold is used for cosine similarity in the seed idea deduplication process?\nAnswer:",
+ " 0.8"
+ ],
+ [
+ "Question:What threshold is used for cosine similarity in the seed idea deduplication process?\nAnswer:",
+ " 0.9"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.469439506530762,
+ false
+ ]
+ ],
+ [
+ [
+ -4.292275428771973,
+ false
+ ]
+ ],
+ [
+ [
+ -4.272160530090332,
+ false
+ ]
+ ],
+ [
+ [
+ -3.832259178161621,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.469439506530762,
+ false
+ ],
+ [
+ -4.292275428771973,
+ false
+ ],
+ [
+ -4.272160530090332,
+ false
+ ],
+ [
+ -3.832259178161621,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9c46621f2977b227ecc3f554d71640c222a63328eb6c7b6f54cffa5e90a36cfb",
+ "prompt_hash": "66edf2fc1c0a71ba26ed0fc6a7dce2a2e8f92579c61bb033bff3b3ea6d7b435c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What fundamental question lies at the core of large language models?",
+ "choices": [
+ "How to encode images into text",
+ "How to simulate human reasoning",
+ "What word is likely to come next given a sequence of words",
+ "How to generate grammatically perfect sentences"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What fundamental question lies at the core of large language models?\nAnswer:",
+ " How to encode images into text"
+ ],
+ [
+ "Question:What fundamental question lies at the core of large language models?\nAnswer:",
+ " How to simulate human reasoning"
+ ],
+ [
+ "Question:What fundamental question lies at the core of large language models?\nAnswer:",
+ " What word is likely to come next given a sequence of words"
+ ],
+ [
+ "Question:What fundamental question lies at the core of large language models?\nAnswer:",
+ " How to generate grammatically perfect sentences"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.318111419677734,
+ false
+ ]
+ ],
+ [
+ [
+ -18.891098022460938,
+ false
+ ]
+ ],
+ [
+ [
+ -35.946693420410156,
+ false
+ ]
+ ],
+ [
+ [
+ -24.28699493408203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.318111419677734,
+ false
+ ],
+ [
+ -18.891098022460938,
+ false
+ ],
+ [
+ -35.946693420410156,
+ false
+ ],
+ [
+ -24.28699493408203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2bc651e9602b4caca953fde43181ea664f77a71d0f2d9c59a2be5be71d706f8b",
+ "prompt_hash": "6036288fedf64bb453b55ddbeaabaeabc0c5d4993693333928f10a56655d8f20",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "What problem does the Mamba model aim to solve in sequence modeling?",
+ "choices": [
+ "High memory usage of RNNs",
+ "Low accuracy on short sequences",
+ "Quadratic bottleneck in the attention mechanism",
+ "Lack of generalization in convolutional models"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What problem does the Mamba model aim to solve in sequence modeling?\nAnswer:",
+ " High memory usage of RNNs"
+ ],
+ [
+ "Question:What problem does the Mamba model aim to solve in sequence modeling?\nAnswer:",
+ " Low accuracy on short sequences"
+ ],
+ [
+ "Question:What problem does the Mamba model aim to solve in sequence modeling?\nAnswer:",
+ " Quadratic bottleneck in the attention mechanism"
+ ],
+ [
+ "Question:What problem does the Mamba model aim to solve in sequence modeling?\nAnswer:",
+ " Lack of generalization in convolutional models"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.314756393432617,
+ false
+ ]
+ ],
+ [
+ [
+ -24.300613403320312,
+ false
+ ]
+ ],
+ [
+ [
+ -31.88043975830078,
+ false
+ ]
+ ],
+ [
+ [
+ -26.176528930664062,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.314756393432617,
+ false
+ ],
+ [
+ -24.300613403320312,
+ false
+ ],
+ [
+ -31.88043975830078,
+ false
+ ],
+ [
+ -26.176528930664062,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3938cd1105c8c6addb1747a25a4e9533a4491d59d54415b0095e03dfac182ec6",
+ "prompt_hash": "a123996b1c5197ad6764012ae08b4e0a72db1f108396c12b875028b51eafd764",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "What does the BitFit fine-tuning method update?",
+ "choices": [
+ "All transformer layers",
+ "Only the output layer weights",
+ "Bias terms and the task-specific classification layer",
+ "The entire embedding matrix"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the BitFit fine-tuning method update?\nAnswer:",
+ " All transformer layers"
+ ],
+ [
+ "Question:What does the BitFit fine-tuning method update?\nAnswer:",
+ " Only the output layer weights"
+ ],
+ [
+ "Question:What does the BitFit fine-tuning method update?\nAnswer:",
+ " Bias terms and the task-specific classification layer"
+ ],
+ [
+ "Question:What does the BitFit fine-tuning method update?\nAnswer:",
+ " The entire embedding matrix"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.890267372131348,
+ false
+ ]
+ ],
+ [
+ [
+ -15.56641960144043,
+ false
+ ]
+ ],
+ [
+ [
+ -37.99882507324219,
+ false
+ ]
+ ],
+ [
+ [
+ -15.27823543548584,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.890267372131348,
+ false
+ ],
+ [
+ -15.56641960144043,
+ false
+ ],
+ [
+ -37.99882507324219,
+ false
+ ],
+ [
+ -15.27823543548584,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f2207e170fc43164dbf1d42e40561c3f4250ca00745940935f99d5dc20438dc0",
+ "prompt_hash": "01c9f1436cd9999ff1800b6eebc4567206d2b4ecdf5da6dad52c30ed2d2f1319",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "What is a characteristic of Kolmogorov-Arnold Networks (KANs) compared to traditional neural networks?",
+ "choices": [
+ "They use fixed activation functions on nodes",
+ "They apply learnable activation functions on edges",
+ "They avoid using activation functions entirely",
+ "They use convolutional filters for feature learning"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is a characteristic of Kolmogorov-Arnold Networks (KANs) compared to traditional neural networks?\nAnswer:",
+ " They use fixed activation functions on nodes"
+ ],
+ [
+ "Question:What is a characteristic of Kolmogorov-Arnold Networks (KANs) compared to traditional neural networks?\nAnswer:",
+ " They apply learnable activation functions on edges"
+ ],
+ [
+ "Question:What is a characteristic of Kolmogorov-Arnold Networks (KANs) compared to traditional neural networks?\nAnswer:",
+ " They avoid using activation functions entirely"
+ ],
+ [
+ "Question:What is a characteristic of Kolmogorov-Arnold Networks (KANs) compared to traditional neural networks?\nAnswer:",
+ " They use convolutional filters for feature learning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.779762268066406,
+ false
+ ]
+ ],
+ [
+ [
+ -32.78925323486328,
+ false
+ ]
+ ],
+ [
+ [
+ -26.899110794067383,
+ false
+ ]
+ ],
+ [
+ [
+ -23.58316421508789,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.779762268066406,
+ false
+ ],
+ [
+ -32.78925323486328,
+ false
+ ],
+ [
+ -26.899110794067383,
+ false
+ ],
+ [
+ -23.58316421508789,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7a4b192cfda32cda5e83b7be84297fb65f0922104d79f4ed508b830e34f12957",
+ "prompt_hash": "5c76c2773ed113ea2061bda0694c74214eb2e6f96b091a4fb1d3f9547e65de70",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "What does Chain-of-Thought (CoT) prompting aim to improve in LLMs?",
+ "choices": [
+ "Memory efficiency during training",
+ "Logical consistency and reduction of hallucinations",
+ "Vocabulary expansion",
+ "Encoding of positional information"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does Chain-of-Thought (CoT) prompting aim to improve in LLMs?\nAnswer:",
+ " Memory efficiency during training"
+ ],
+ [
+ "Question:What does Chain-of-Thought (CoT) prompting aim to improve in LLMs?\nAnswer:",
+ " Logical consistency and reduction of hallucinations"
+ ],
+ [
+ "Question:What does Chain-of-Thought (CoT) prompting aim to improve in LLMs?\nAnswer:",
+ " Vocabulary expansion"
+ ],
+ [
+ "Question:What does Chain-of-Thought (CoT) prompting aim to improve in LLMs?\nAnswer:",
+ " Encoding of positional information"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.194095611572266,
+ false
+ ]
+ ],
+ [
+ [
+ -23.975643157958984,
+ false
+ ]
+ ],
+ [
+ [
+ -16.475173950195312,
+ false
+ ]
+ ],
+ [
+ [
+ -24.811058044433594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.194095611572266,
+ false
+ ],
+ [
+ -23.975643157958984,
+ false
+ ],
+ [
+ -16.475173950195312,
+ false
+ ],
+ [
+ -24.811058044433594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "780cbf0fabbb53d71f45195aadaf088049f8c1fc307a088210da70f2f04fec4c",
+ "prompt_hash": "ab10be7a2b6fdc7339decae8a574a1da022b8713ad30ecf09512ac21ac410ccd",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "What type of license is the gsplat library released under?",
+ "choices": [
+ "MIT License",
+ "Apache License 2.0",
+ "GPLv3",
+ "BSD 3-Clause"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of license is the gsplat library released under?\nAnswer:",
+ " MIT License"
+ ],
+ [
+ "Question:What type of license is the gsplat library released under?\nAnswer:",
+ " Apache License 2.0"
+ ],
+ [
+ "Question:What type of license is the gsplat library released under?\nAnswer:",
+ " GPLv3"
+ ],
+ [
+ "Question:What type of license is the gsplat library released under?\nAnswer:",
+ " BSD 3-Clause"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.371497392654419,
+ false
+ ]
+ ],
+ [
+ [
+ -4.135261058807373,
+ false
+ ]
+ ],
+ [
+ [
+ -5.155677795410156,
+ false
+ ]
+ ],
+ [
+ [
+ -7.361147880554199,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.371497392654419,
+ false
+ ],
+ [
+ -4.135261058807373,
+ false
+ ],
+ [
+ -5.155677795410156,
+ false
+ ],
+ [
+ -7.361147880554199,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d889ba1674f868cc5cfc85b5b1827d87aabbd6426f6e15ba997cd07ac9eb3859",
+ "prompt_hash": "caf3c756d70db75fe1205e6839156b37c2667f3ddb4a08ac10da2bab6dfef009",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "Which densification strategy in gsplat is based on a Bayesian perspective using SGLD?",
+ "choices": [
+ "ADC",
+ "Absgrad",
+ "MCMC",
+ "SHG"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which densification strategy in gsplat is based on a Bayesian perspective using SGLD?\nAnswer:",
+ " ADC"
+ ],
+ [
+ "Question:Which densification strategy in gsplat is based on a Bayesian perspective using SGLD?\nAnswer:",
+ " Absgrad"
+ ],
+ [
+ "Question:Which densification strategy in gsplat is based on a Bayesian perspective using SGLD?\nAnswer:",
+ " MCMC"
+ ],
+ [
+ "Question:Which densification strategy in gsplat is based on a Bayesian perspective using SGLD?\nAnswer:",
+ " SHG"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.597640991210938,
+ false
+ ]
+ ],
+ [
+ [
+ -21.404687881469727,
+ false
+ ]
+ ],
+ [
+ [
+ -8.992700576782227,
+ false
+ ]
+ ],
+ [
+ [
+ -13.896909713745117,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.597640991210938,
+ false
+ ],
+ [
+ -21.404687881469727,
+ false
+ ],
+ [
+ -8.992700576782227,
+ false
+ ],
+ [
+ -13.896909713745117,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9d49ca94b540e249c2679eaa12be0fa663ff1ee9035b86504f1a8d460014df12",
+ "prompt_hash": "a30c1008a89164e906dd377775ee686a1b43a3d9ce66da3b1d847ab0aa19aae0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "Which CUDA-accelerated library supports both RGB and depth map rendering using differentiable rasterization?",
+ "choices": [
+ "torch-splatting",
+ "gsplat",
+ "GauStudio",
+ "instant-ngp"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which CUDA-accelerated library supports both RGB and depth map rendering using differentiable rasterization?\nAnswer:",
+ " torch-splatting"
+ ],
+ [
+ "Question:Which CUDA-accelerated library supports both RGB and depth map rendering using differentiable rasterization?\nAnswer:",
+ " gsplat"
+ ],
+ [
+ "Question:Which CUDA-accelerated library supports both RGB and depth map rendering using differentiable rasterization?\nAnswer:",
+ " GauStudio"
+ ],
+ [
+ "Question:Which CUDA-accelerated library supports both RGB and depth map rendering using differentiable rasterization?\nAnswer:",
+ " instant-ngp"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.24197006225586,
+ false
+ ]
+ ],
+ [
+ [
+ -21.16048812866211,
+ false
+ ]
+ ],
+ [
+ [
+ -22.701190948486328,
+ false
+ ]
+ ],
+ [
+ [
+ -14.450319290161133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.24197006225586,
+ false
+ ],
+ [
+ -21.16048812866211,
+ false
+ ],
+ [
+ -22.701190948486328,
+ false
+ ],
+ [
+ -14.450319290161133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3a5eb42470b10857233e816971280246b52c1ab8353efd055aab5c2f4ef7c48b",
+ "prompt_hash": "80efea59a81b004277094513555a8d3fea5085fa20b2bd149bf0a251c372755e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "What is the default threshold for culling Gaussians based on opacity in the ADC strategy?",
+ "choices": [
+ "0.01",
+ "0.001",
+ "0.005",
+ "0.02"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the default threshold for culling Gaussians based on opacity in the ADC strategy?\nAnswer:",
+ " 0.01"
+ ],
+ [
+ "Question:What is the default threshold for culling Gaussians based on opacity in the ADC strategy?\nAnswer:",
+ " 0.001"
+ ],
+ [
+ "Question:What is the default threshold for culling Gaussians based on opacity in the ADC strategy?\nAnswer:",
+ " 0.005"
+ ],
+ [
+ "Question:What is the default threshold for culling Gaussians based on opacity in the ADC strategy?\nAnswer:",
+ " 0.02"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.799712181091309,
+ false
+ ]
+ ],
+ [
+ [
+ -5.712863922119141,
+ false
+ ]
+ ],
+ [
+ [
+ -6.453279495239258,
+ false
+ ]
+ ],
+ [
+ [
+ -5.598419666290283,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.799712181091309,
+ false
+ ],
+ [
+ -5.712863922119141,
+ false
+ ],
+ [
+ -6.453279495239258,
+ false
+ ],
+ [
+ -5.598419666290283,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2753c252c20ee778d0651fa89f051f9ce493d0a7f6758d12c43c280951658466",
+ "prompt_hash": "5f66e60bcb2b0eb7eee2efda17ca71e50bdd8e0ce36d7877dbbabe8d2a5667dc",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "What is the default value of the anti-aliasing parameter 's' in gsplat?",
+ "choices": [
+ "0.1",
+ "0.2",
+ "0.3",
+ "0.5"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the default value of the anti-aliasing parameter 's' in gsplat?\nAnswer:",
+ " 0.1"
+ ],
+ [
+ "Question:What is the default value of the anti-aliasing parameter 's' in gsplat?\nAnswer:",
+ " 0.2"
+ ],
+ [
+ "Question:What is the default value of the anti-aliasing parameter 's' in gsplat?\nAnswer:",
+ " 0.3"
+ ],
+ [
+ "Question:What is the default value of the anti-aliasing parameter 's' in gsplat?\nAnswer:",
+ " 0.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.626408576965332,
+ false
+ ]
+ ],
+ [
+ [
+ -5.924612998962402,
+ false
+ ]
+ ],
+ [
+ [
+ -6.593517303466797,
+ false
+ ]
+ ],
+ [
+ [
+ -5.611193656921387,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.626408576965332,
+ false
+ ],
+ [
+ -5.924612998962402,
+ false
+ ],
+ [
+ -6.593517303466797,
+ false
+ ],
+ [
+ -5.611193656921387,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d9ef7a2b2cb18d913274bf908caa43fe2c0e3d868458ce345eb5de473f7e9baf",
+ "prompt_hash": "01b84fcc2036f104fa4e0df9fa2ac7ca74feb1a427a13cd782bfb7759396c2f5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What is the smallest positive integer \\( t \\) such that there exist integers \\( x_1, x_2, \\ldots, x_t \\) satisfying \\( x_1^3 + x_2^3 + \\cdots + x_t^3 = 2002^{2002} \\)?",
+ "choices": [
+ "A. 3",
+ "B. 4",
+ "C. 5",
+ "D. 6"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the smallest positive integer \\( t \\) such that there exist integers \\( x_1, x_2, \\ldots, x_t \\) satisfying \\( x_1^3 + x_2^3 + \\cdots + x_t^3 = 2002^{2002} \\)?\nAnswer:",
+ " A. 3"
+ ],
+ [
+ "Question:What is the smallest positive integer \\( t \\) such that there exist integers \\( x_1, x_2, \\ldots, x_t \\) satisfying \\( x_1^3 + x_2^3 + \\cdots + x_t^3 = 2002^{2002} \\)?\nAnswer:",
+ " B. 4"
+ ],
+ [
+ "Question:What is the smallest positive integer \\( t \\) such that there exist integers \\( x_1, x_2, \\ldots, x_t \\) satisfying \\( x_1^3 + x_2^3 + \\cdots + x_t^3 = 2002^{2002} \\)?\nAnswer:",
+ " C. 5"
+ ],
+ [
+ "Question:What is the smallest positive integer \\( t \\) such that there exist integers \\( x_1, x_2, \\ldots, x_t \\) satisfying \\( x_1^3 + x_2^3 + \\cdots + x_t^3 = 2002^{2002} \\)?\nAnswer:",
+ " D. 6"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.540119171142578,
+ false
+ ]
+ ],
+ [
+ [
+ -17.282943725585938,
+ false
+ ]
+ ],
+ [
+ [
+ -18.027965545654297,
+ false
+ ]
+ ],
+ [
+ [
+ -17.628211975097656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.540119171142578,
+ false
+ ],
+ [
+ -17.282943725585938,
+ false
+ ],
+ [
+ -18.027965545654297,
+ false
+ ],
+ [
+ -17.628211975097656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ff1d2def68ec018b36ac8c6dfa4ce07df301cfbc19e9c315d5e20acf8f8bcd9b",
+ "prompt_hash": "58bd525ae7ffa87e25e53c0d1d63c3f6e27f16d75ff862d206a4b58fffed811f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "Which function satisfies the property that for each \\( x \\in \\mathbb{R}^+ \\), there exists exactly one \\( y \\in \\mathbb{R}^+ \\) such that \\( xf(y) + yf(x) \\leq 2 \\)?",
+ "choices": [
+ "A.\\( f(x) = x^2 \\)",
+ "B. \\( f(x) = 1 \\)",
+ "C. \\( f(x) = \\frac{1}{x} \\)",
+ "D. \\( f(x) = x + 1 \\)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which function satisfies the property that for each \\( x \\in \\mathbb{R}^+ \\), there exists exactly one \\( y \\in \\mathbb{R}^+ \\) such that \\( xf(y) + yf(x) \\leq 2 \\)?\nAnswer:",
+ " A.\\( f(x) = x^2 \\)"
+ ],
+ [
+ "Question:Which function satisfies the property that for each \\( x \\in \\mathbb{R}^+ \\), there exists exactly one \\( y \\in \\mathbb{R}^+ \\) such that \\( xf(y) + yf(x) \\leq 2 \\)?\nAnswer:",
+ " B. \\( f(x) = 1 \\)"
+ ],
+ [
+ "Question:Which function satisfies the property that for each \\( x \\in \\mathbb{R}^+ \\), there exists exactly one \\( y \\in \\mathbb{R}^+ \\) such that \\( xf(y) + yf(x) \\leq 2 \\)?\nAnswer:",
+ " C. \\( f(x) = \\frac{1}{x} \\)"
+ ],
+ [
+ "Question:Which function satisfies the property that for each \\( x \\in \\mathbb{R}^+ \\), there exists exactly one \\( y \\in \\mathbb{R}^+ \\) such that \\( xf(y) + yf(x) \\leq 2 \\)?\nAnswer:",
+ " D. \\( f(x) = x + 1 \\)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.827207565307617,
+ false
+ ]
+ ],
+ [
+ [
+ -20.322336196899414,
+ false
+ ]
+ ],
+ [
+ [
+ -21.418210983276367,
+ false
+ ]
+ ],
+ [
+ [
+ -22.060394287109375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.827207565307617,
+ false
+ ],
+ [
+ -20.322336196899414,
+ false
+ ],
+ [
+ -21.418210983276367,
+ false
+ ],
+ [
+ -22.060394287109375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aef2aa8bcc1161172ca855d45b2b7026cbb5b6215ec2b4835db010afe650bff4",
+ "prompt_hash": "5ba85c492e639300e8f33662c7377e2dd6cfa7c4c8201da4c4e2fb94ab263f27",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "What is the answer to whether it is possible that \\( s(k) \\) and \\( s(P(k)) \\) have the same parity for all positive integers \\( k \\), where \\( s(n) \\) denotes the sum of digits of \\( n \\)?",
+ "choices": [
+ "A. Yes",
+ "B. No",
+ "C. Sometimes",
+ "D. Cannot be determined"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the answer to whether it is possible that \\( s(k) \\) and \\( s(P(k)) \\) have the same parity for all positive integers \\( k \\), where \\( s(n) \\) denotes the sum of digits of \\( n \\)?\nAnswer:",
+ " A. Yes"
+ ],
+ [
+ "Question:What is the answer to whether it is possible that \\( s(k) \\) and \\( s(P(k)) \\) have the same parity for all positive integers \\( k \\), where \\( s(n) \\) denotes the sum of digits of \\( n \\)?\nAnswer:",
+ " B. No"
+ ],
+ [
+ "Question:What is the answer to whether it is possible that \\( s(k) \\) and \\( s(P(k)) \\) have the same parity for all positive integers \\( k \\), where \\( s(n) \\) denotes the sum of digits of \\( n \\)?\nAnswer:",
+ " C. Sometimes"
+ ],
+ [
+ "Question:What is the answer to whether it is possible that \\( s(k) \\) and \\( s(P(k)) \\) have the same parity for all positive integers \\( k \\), where \\( s(n) \\) denotes the sum of digits of \\( n \\)?\nAnswer:",
+ " D. Cannot be determined"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.544660568237305,
+ false
+ ]
+ ],
+ [
+ [
+ -14.121866226196289,
+ false
+ ]
+ ],
+ [
+ [
+ -20.223602294921875,
+ false
+ ]
+ ],
+ [
+ [
+ -25.502727508544922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.544660568237305,
+ false
+ ],
+ [
+ -14.121866226196289,
+ false
+ ],
+ [
+ -20.223602294921875,
+ false
+ ],
+ [
+ -25.502727508544922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e52014fa502465af56621ee5459f41c8d9ef996e16731caf76c60c39f71a0572",
+ "prompt_hash": "b751d112055d2f216ddab13abfb425a9e4b66761413232e32738a2ffc59a0d5a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "What is the maximum number of students \\( k \\) such that any two have at least one course in common, and no outsider can be classmates with all \\( k \\)?",
+ "choices": [
+ "A. 256",
+ "B. 512",
+ "C. 1023",
+ "D. 1024"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the maximum number of students \\( k \\) such that any two have at least one course in common, and no outsider can be classmates with all \\( k \\)?\nAnswer:",
+ " A. 256"
+ ],
+ [
+ "Question:What is the maximum number of students \\( k \\) such that any two have at least one course in common, and no outsider can be classmates with all \\( k \\)?\nAnswer:",
+ " B. 512"
+ ],
+ [
+ "Question:What is the maximum number of students \\( k \\) such that any two have at least one course in common, and no outsider can be classmates with all \\( k \\)?\nAnswer:",
+ " C. 1023"
+ ],
+ [
+ "Question:What is the maximum number of students \\( k \\) such that any two have at least one course in common, and no outsider can be classmates with all \\( k \\)?\nAnswer:",
+ " D. 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.086959838867188,
+ false
+ ]
+ ],
+ [
+ [
+ -24.054302215576172,
+ false
+ ]
+ ],
+ [
+ [
+ -28.452510833740234,
+ false
+ ]
+ ],
+ [
+ [
+ -27.108470916748047,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.086959838867188,
+ false
+ ],
+ [
+ -24.054302215576172,
+ false
+ ],
+ [
+ -28.452510833740234,
+ false
+ ],
+ [
+ -27.108470916748047,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "69a9652202d73079db7a9bd7ed603c9584a9846c30e7d73e2aa2a0cd8723d7b9",
+ "prompt_hash": "eedfc36fc0e2bfd5bc91cf0e269066cc1dec19da4fa2ffd9332c0dbbc7320d8d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "Who wins the game where Joe and Penny remove stones with increasing limits per move, starting from 5000 stones and alternating turns?",
+ "choices": [
+ "A. Joe",
+ "B. Penny",
+ "C. It's a draw",
+ "D. Cannot be determined"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Who wins the game where Joe and Penny remove stones with increasing limits per move, starting from 5000 stones and alternating turns?\nAnswer:",
+ " A. Joe"
+ ],
+ [
+ "Question:Who wins the game where Joe and Penny remove stones with increasing limits per move, starting from 5000 stones and alternating turns?\nAnswer:",
+ " B. Penny"
+ ],
+ [
+ "Question:Who wins the game where Joe and Penny remove stones with increasing limits per move, starting from 5000 stones and alternating turns?\nAnswer:",
+ " C. It's a draw"
+ ],
+ [
+ "Question:Who wins the game where Joe and Penny remove stones with increasing limits per move, starting from 5000 stones and alternating turns?\nAnswer:",
+ " D. Cannot be determined"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.734781265258789,
+ false
+ ]
+ ],
+ [
+ [
+ -11.859012603759766,
+ false
+ ]
+ ],
+ [
+ [
+ -23.23371124267578,
+ false
+ ]
+ ],
+ [
+ [
+ -28.801799774169922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.734781265258789,
+ false
+ ],
+ [
+ -11.859012603759766,
+ false
+ ],
+ [
+ -23.23371124267578,
+ false
+ ],
+ [
+ -28.801799774169922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "384f7ec867d80108c16e91e7b85808724733266fff2fdce9a3462149734ba984",
+ "prompt_hash": "05de3ecb83cbdc67d7a9928100b0a19366b0596238a98cb064bca07239cbc3d9",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "What does LoRA update during fine-tuning?",
+ "choices": [
+ "Only the original model weights",
+ "Only the bias terms",
+ "Only the low-rank matrices A and B",
+ "All parameters of the model"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does LoRA update during fine-tuning?\nAnswer:",
+ " Only the original model weights"
+ ],
+ [
+ "Question:What does LoRA update during fine-tuning?\nAnswer:",
+ " Only the bias terms"
+ ],
+ [
+ "Question:What does LoRA update during fine-tuning?\nAnswer:",
+ " Only the low-rank matrices A and B"
+ ],
+ [
+ "Question:What does LoRA update during fine-tuning?\nAnswer:",
+ " All parameters of the model"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.489402770996094,
+ false
+ ]
+ ],
+ [
+ [
+ -14.673160552978516,
+ false
+ ]
+ ],
+ [
+ [
+ -19.73063087463379,
+ false
+ ]
+ ],
+ [
+ [
+ -12.429987907409668,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.489402770996094,
+ false
+ ],
+ [
+ -14.673160552978516,
+ false
+ ],
+ [
+ -19.73063087463379,
+ false
+ ],
+ [
+ -12.429987907409668,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c9ddacc3de73b039949f28da7796fef39b37af97348266e2cddc327310dc2b12",
+ "prompt_hash": "45f5e6babc5b65261709ef37a6a4ba781194093d2b182e9b94babfe251f5005b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "What is the primary limitation of FedIT when clients have different LoRA ranks?",
+ "choices": [
+ "It cannot communicate with more than 10 clients",
+ "It introduces delays due to encryption",
+ "It cannot aggregate local LoRAs with heterogeneous ranks",
+ "It lacks support for any LoRA rank"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary limitation of FedIT when clients have different LoRA ranks?\nAnswer:",
+ " It cannot communicate with more than 10 clients"
+ ],
+ [
+ "Question:What is the primary limitation of FedIT when clients have different LoRA ranks?\nAnswer:",
+ " It introduces delays due to encryption"
+ ],
+ [
+ "Question:What is the primary limitation of FedIT when clients have different LoRA ranks?\nAnswer:",
+ " It cannot aggregate local LoRAs with heterogeneous ranks"
+ ],
+ [
+ "Question:What is the primary limitation of FedIT when clients have different LoRA ranks?\nAnswer:",
+ " It lacks support for any LoRA rank"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.548847198486328,
+ false
+ ]
+ ],
+ [
+ [
+ -30.07623863220215,
+ false
+ ]
+ ],
+ [
+ [
+ -34.82258605957031,
+ false
+ ]
+ ],
+ [
+ [
+ -23.75527572631836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.548847198486328,
+ false
+ ],
+ [
+ -30.07623863220215,
+ false
+ ],
+ [
+ -34.82258605957031,
+ false
+ ],
+ [
+ -23.75527572631836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5f313bde67b9e18bca0d640d237389a6a41cdcc68166bbc185ac0dcc9d6d1c74",
+ "prompt_hash": "54439a6ab5141dff92cc07e799f1f6ac1f9d6a0a970c1aa8d9ed283468651382",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "Which mathematical inequality illustrates the aggregation noise in FedIT?",
+ "choices": [
+ "ΣA × ΣB = ΣA×B",
+ "ΣA + ΣB = Σ(A+B)",
+ "ΣA × ΣB ≠ ΣA×B",
+ "A × B = B × A"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which mathematical inequality illustrates the aggregation noise in FedIT?\nAnswer:",
+ " ΣA × ΣB = ΣA×B"
+ ],
+ [
+ "Question:Which mathematical inequality illustrates the aggregation noise in FedIT?\nAnswer:",
+ " ΣA + ΣB = Σ(A+B)"
+ ],
+ [
+ "Question:Which mathematical inequality illustrates the aggregation noise in FedIT?\nAnswer:",
+ " ΣA × ΣB ≠ ΣA×B"
+ ],
+ [
+ "Question:Which mathematical inequality illustrates the aggregation noise in FedIT?\nAnswer:",
+ " A × B = B × A"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -46.70803451538086,
+ false
+ ]
+ ],
+ [
+ [
+ -35.111167907714844,
+ false
+ ]
+ ],
+ [
+ [
+ -52.45105743408203,
+ false
+ ]
+ ],
+ [
+ [
+ -23.067930221557617,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -46.70803451538086,
+ false
+ ],
+ [
+ -35.111167907714844,
+ false
+ ],
+ [
+ -52.45105743408203,
+ false
+ ],
+ [
+ -23.067930221557617,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c38660c2b5fdfbe620a25e1771ca70b1c0e8f7a6d749d26a1a8eb72abcd55f5f",
+ "prompt_hash": "b23c2a87198b56c5a1b9b032fb8f76f58cc1b32740c848d8b3d6c77e185a9d49",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "What is the dimension of LoRA matrix A when the rank is set to 16 for a LLaMA-7B model?",
+ "choices": [
+ "4096 × 4096",
+ "4096 × 16",
+ "16 × 4096",
+ "16 × 16"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the dimension of LoRA matrix A when the rank is set to 16 for a LLaMA-7B model?\nAnswer:",
+ " 4096 × 4096"
+ ],
+ [
+ "Question:What is the dimension of LoRA matrix A when the rank is set to 16 for a LLaMA-7B model?\nAnswer:",
+ " 4096 × 16"
+ ],
+ [
+ "Question:What is the dimension of LoRA matrix A when the rank is set to 16 for a LLaMA-7B model?\nAnswer:",
+ " 16 × 4096"
+ ],
+ [
+ "Question:What is the dimension of LoRA matrix A when the rank is set to 16 for a LLaMA-7B model?\nAnswer:",
+ " 16 × 16"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.631674766540527,
+ false
+ ]
+ ],
+ [
+ [
+ -16.16933250427246,
+ false
+ ]
+ ],
+ [
+ [
+ -16.902545928955078,
+ false
+ ]
+ ],
+ [
+ [
+ -10.089134216308594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.631674766540527,
+ false
+ ],
+ [
+ -16.16933250427246,
+ false
+ ],
+ [
+ -16.902545928955078,
+ false
+ ],
+ [
+ -10.089134216308594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7b37553842b931dc0bc0dd2ce757625784693d0ca565acd95c7612158325c33f",
+ "prompt_hash": "fa9872f95ee586fc82ac541c3731438cf2389ee3d88d1488bd93cd963667165d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What operation is used in FLoRA to aggregate LoRA modules from multiple clients?",
+ "choices": [
+ "Matrix inversion",
+ "Module duplication",
+ "Stacking",
+ "Element-wise multiplication"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What operation is used in FLoRA to aggregate LoRA modules from multiple clients?\nAnswer:",
+ " Matrix inversion"
+ ],
+ [
+ "Question:What operation is used in FLoRA to aggregate LoRA modules from multiple clients?\nAnswer:",
+ " Module duplication"
+ ],
+ [
+ "Question:What operation is used in FLoRA to aggregate LoRA modules from multiple clients?\nAnswer:",
+ " Stacking"
+ ],
+ [
+ "Question:What operation is used in FLoRA to aggregate LoRA modules from multiple clients?\nAnswer:",
+ " Element-wise multiplication"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.950897216796875,
+ false
+ ]
+ ],
+ [
+ [
+ -15.547689437866211,
+ false
+ ]
+ ],
+ [
+ [
+ -9.502487182617188,
+ false
+ ]
+ ],
+ [
+ [
+ -8.775291442871094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.950897216796875,
+ false
+ ],
+ [
+ -15.547689437866211,
+ false
+ ],
+ [
+ -9.502487182617188,
+ false
+ ],
+ [
+ -8.775291442871094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "18616f7d416b734bb496239b878291e49111f7c0ab679eeddadaf7a1fc1f9fdc",
+ "prompt_hash": "cd7bd01f285b3dea733e29ccaddf2c1e488215351be7baf12819bc3c33d3a944",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the highest accuracy achieved by LLaMA 3.1 405B on the regular Blocksworld dataset?",
+ "choices": [
+ "62.6%",
+ "52.8%",
+ "82.0%",
+ "97.8%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the highest accuracy achieved by LLaMA 3.1 405B on the regular Blocksworld dataset?\nAnswer:",
+ " 62.6%"
+ ],
+ [
+ "Question:What is the highest accuracy achieved by LLaMA 3.1 405B on the regular Blocksworld dataset?\nAnswer:",
+ " 52.8%"
+ ],
+ [
+ "Question:What is the highest accuracy achieved by LLaMA 3.1 405B on the regular Blocksworld dataset?\nAnswer:",
+ " 82.0%"
+ ],
+ [
+ "Question:What is the highest accuracy achieved by LLaMA 3.1 405B on the regular Blocksworld dataset?\nAnswer:",
+ " 97.8%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.532271385192871,
+ false
+ ]
+ ],
+ [
+ [
+ -14.77785587310791,
+ false
+ ]
+ ],
+ [
+ [
+ -13.464859962463379,
+ false
+ ]
+ ],
+ [
+ [
+ -13.568106651306152,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.532271385192871,
+ false
+ ],
+ [
+ -14.77785587310791,
+ false
+ ],
+ [
+ -13.464859962463379,
+ false
+ ],
+ [
+ -13.568106651306152,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4d3a6a1e8cfc25ac671d4c12e53eb1831e93fe6c7b2b3858fb109b324f5acd4a",
+ "prompt_hash": "5cf63224372e80012ab0d364dde0ac06edc4a61d4bf4f677d8f899c76df107de",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "How many steps do the Blocksworld problems in the PlanBench dataset require to solve?",
+ "choices": [
+ "2 to 16 steps",
+ "10 to 30 steps",
+ "3 to 15 steps",
+ "5 to 20 steps"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many steps do the Blocksworld problems in the PlanBench dataset require to solve?\nAnswer:",
+ " 2 to 16 steps"
+ ],
+ [
+ "Question:How many steps do the Blocksworld problems in the PlanBench dataset require to solve?\nAnswer:",
+ " 10 to 30 steps"
+ ],
+ [
+ "Question:How many steps do the Blocksworld problems in the PlanBench dataset require to solve?\nAnswer:",
+ " 3 to 15 steps"
+ ],
+ [
+ "Question:How many steps do the Blocksworld problems in the PlanBench dataset require to solve?\nAnswer:",
+ " 5 to 20 steps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.07807159423828,
+ false
+ ]
+ ],
+ [
+ [
+ -13.862556457519531,
+ false
+ ]
+ ],
+ [
+ [
+ -14.577719688415527,
+ false
+ ]
+ ],
+ [
+ [
+ -13.827674865722656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.07807159423828,
+ false
+ ],
+ [
+ -13.862556457519531,
+ false
+ ],
+ [
+ -14.577719688415527,
+ false
+ ],
+ [
+ -13.827674865722656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3759c5f8da919bb1d2ea2b0722011fe9d55074e9f7991c5078ee4b9970fc6eae",
+ "prompt_hash": "63490735f777659af0d2ebe263086aa21b8e16fce98f28321ed0d880b0693ff4",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "How much did the researchers report spending on o1 model experiments?",
+ "choices": [
+ "$1897.55",
+ "$975.50",
+ "$2783.40",
+ "$1325.00"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How much did the researchers report spending on o1 model experiments?\nAnswer:",
+ " $1897.55"
+ ],
+ [
+ "Question:How much did the researchers report spending on o1 model experiments?\nAnswer:",
+ " $975.50"
+ ],
+ [
+ "Question:How much did the researchers report spending on o1 model experiments?\nAnswer:",
+ " $2783.40"
+ ],
+ [
+ "Question:How much did the researchers report spending on o1 model experiments?\nAnswer:",
+ " $1325.00"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.34306526184082,
+ false
+ ]
+ ],
+ [
+ [
+ -17.32545280456543,
+ false
+ ]
+ ],
+ [
+ [
+ -19.518150329589844,
+ false
+ ]
+ ],
+ [
+ [
+ -15.12232494354248,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.34306526184082,
+ false
+ ],
+ [
+ -17.32545280456543,
+ false
+ ],
+ [
+ -19.518150329589844,
+ false
+ ],
+ [
+ -15.12232494354248,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3f1f4e50c43d044f5631966b4bcaa790ad7a0c82e22086d1f50d5ecd2cb50a41",
+ "prompt_hash": "ce84816c19ef6f5dbd25e89ad489bf610fb24cd3b759bdebb4f1ab53474df311",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "What percentage of randomized Mystery Blocksworld unsolvable instances were falsely claimed as impossible by the model?",
+ "choices": [
+ "11.5%",
+ "5%",
+ "16%",
+ "27%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What percentage of randomized Mystery Blocksworld unsolvable instances were falsely claimed as impossible by the model?\nAnswer:",
+ " 11.5%"
+ ],
+ [
+ "Question:What percentage of randomized Mystery Blocksworld unsolvable instances were falsely claimed as impossible by the model?\nAnswer:",
+ " 5%"
+ ],
+ [
+ "Question:What percentage of randomized Mystery Blocksworld unsolvable instances were falsely claimed as impossible by the model?\nAnswer:",
+ " 16%"
+ ],
+ [
+ "Question:What percentage of randomized Mystery Blocksworld unsolvable instances were falsely claimed as impossible by the model?\nAnswer:",
+ " 27%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.747138023376465,
+ false
+ ]
+ ],
+ [
+ [
+ -9.35422134399414,
+ false
+ ]
+ ],
+ [
+ [
+ -10.66763973236084,
+ false
+ ]
+ ],
+ [
+ [
+ -11.035689353942871,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.747138023376465,
+ false
+ ],
+ [
+ -9.35422134399414,
+ false
+ ],
+ [
+ -10.66763973236084,
+ false
+ ],
+ [
+ -11.035689353942871,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dfb7671ceb3b0e0d7d62d30d1f081a8b650635dc785392ee16b600aab062f7ec",
+ "prompt_hash": "21053b00326cf3ea0175f96b68b215af89dbc864bf99d0da0d1654df70ab6699",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "How long did Fast Downward take on average to solve a Blocksworld instance?",
+ "choices": [
+ "0.265 seconds",
+ "2.65 seconds",
+ "1.25 seconds",
+ "0.562 seconds"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How long did Fast Downward take on average to solve a Blocksworld instance?\nAnswer:",
+ " 0.265 seconds"
+ ],
+ [
+ "Question:How long did Fast Downward take on average to solve a Blocksworld instance?\nAnswer:",
+ " 2.65 seconds"
+ ],
+ [
+ "Question:How long did Fast Downward take on average to solve a Blocksworld instance?\nAnswer:",
+ " 1.25 seconds"
+ ],
+ [
+ "Question:How long did Fast Downward take on average to solve a Blocksworld instance?\nAnswer:",
+ " 0.562 seconds"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.132086753845215,
+ false
+ ]
+ ],
+ [
+ [
+ -11.014654159545898,
+ false
+ ]
+ ],
+ [
+ [
+ -9.894144058227539,
+ false
+ ]
+ ],
+ [
+ [
+ -12.297073364257812,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.132086753845215,
+ false
+ ],
+ [
+ -11.014654159545898,
+ false
+ ],
+ [
+ -9.894144058227539,
+ false
+ ],
+ [
+ -12.297073364257812,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "019764cc7d216dc4c71ecb9c7b035d108cddded072ed5a1536a2314957381b76",
+ "prompt_hash": "6ed5a165c77e6410e7ce5b5e3b46407a205fa6a4ccbe9298c7ab249929ed554e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the main reason OCR-based text extraction is unsuitable for high-quality document data extraction?",
+ "choices": [
+ "It is too slow for large documents.",
+ "It requires labeled training data.",
+ "It introduces noise when processing images, tables, and formulas.",
+ "It only supports English text."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main reason OCR-based text extraction is unsuitable for high-quality document data extraction?\nAnswer:",
+ " It is too slow for large documents."
+ ],
+ [
+ "Question:What is the main reason OCR-based text extraction is unsuitable for high-quality document data extraction?\nAnswer:",
+ " It requires labeled training data."
+ ],
+ [
+ "Question:What is the main reason OCR-based text extraction is unsuitable for high-quality document data extraction?\nAnswer:",
+ " It introduces noise when processing images, tables, and formulas."
+ ],
+ [
+ "Question:What is the main reason OCR-based text extraction is unsuitable for high-quality document data extraction?\nAnswer:",
+ " It only supports English text."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.091449737548828,
+ false
+ ]
+ ],
+ [
+ [
+ -16.6263370513916,
+ false
+ ]
+ ],
+ [
+ [
+ -46.70049285888672,
+ false
+ ]
+ ],
+ [
+ [
+ -18.63629913330078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.091449737548828,
+ false
+ ],
+ [
+ -16.6263370513916,
+ false
+ ],
+ [
+ -46.70049285888672,
+ false
+ ],
+ [
+ -18.63629913330078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "466404aaa1d54d80fa94d7b2cfe084ca64f9489abe8d2f9a933a9acb1b08236e",
+ "prompt_hash": "4bf51dce5b41b771f49adf61efe7e776d91851252c2d335140a9c3c53bcdb4f3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "Which model does MinerU use for formula recognition?",
+ "choices": [
+ "Pix2tex",
+ "Texify",
+ "UniMERNet",
+ "Mathpix"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model does MinerU use for formula recognition?\nAnswer:",
+ " Pix2tex"
+ ],
+ [
+ "Question:Which model does MinerU use for formula recognition?\nAnswer:",
+ " Texify"
+ ],
+ [
+ "Question:Which model does MinerU use for formula recognition?\nAnswer:",
+ " UniMERNet"
+ ],
+ [
+ "Question:Which model does MinerU use for formula recognition?\nAnswer:",
+ " Mathpix"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.9783935546875,
+ false
+ ]
+ ],
+ [
+ [
+ -19.929180145263672,
+ false
+ ]
+ ],
+ [
+ [
+ -27.404014587402344,
+ false
+ ]
+ ],
+ [
+ [
+ -20.638700485229492,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.9783935546875,
+ false
+ ],
+ [
+ -19.929180145263672,
+ false
+ ],
+ [
+ -27.404014587402344,
+ false
+ ],
+ [
+ -20.638700485229492,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5f798d7eefabe6752366a0de70c102ffe7012c3160888e78084fd0aaab2b2d3d",
+ "prompt_hash": "4ab0e7faeb3668d22081b105fca0cb00395e4b53703df6f58970034e5b60fc8d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "What layout detection model was fine-tuned on MinerU's internal dataset?",
+ "choices": [
+ "DocXchain",
+ "LayoutLMv3",
+ "Surya",
+ "360LayoutAnalysis-Paper"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What layout detection model was fine-tuned on MinerU's internal dataset?\nAnswer:",
+ " DocXchain"
+ ],
+ [
+ "Question:What layout detection model was fine-tuned on MinerU's internal dataset?\nAnswer:",
+ " LayoutLMv3"
+ ],
+ [
+ "Question:What layout detection model was fine-tuned on MinerU's internal dataset?\nAnswer:",
+ " Surya"
+ ],
+ [
+ "Question:What layout detection model was fine-tuned on MinerU's internal dataset?\nAnswer:",
+ " 360LayoutAnalysis-Paper"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.757598876953125,
+ false
+ ]
+ ],
+ [
+ [
+ -11.168102264404297,
+ false
+ ]
+ ],
+ [
+ [
+ -17.636960983276367,
+ false
+ ]
+ ],
+ [
+ [
+ -40.06000518798828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.757598876953125,
+ false
+ ],
+ [
+ -11.168102264404297,
+ false
+ ],
+ [
+ -17.636960983276367,
+ false
+ ],
+ [
+ -40.06000518798828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "78a8f26b79e106deb0cda4f1dc69d21ee3b0cfed8e5d23011f39e98d8778ffa3",
+ "prompt_hash": "7447f7e97610c9d135bffcb6bedb3973cfcb18b24a95c9b56c025f12be6fc215",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "Which two models are used by MinerU for table recognition tasks?",
+ "choices": [
+ "StructEqTable and TableMaster",
+ "DocXchain and TableMaster",
+ "Pix2tex and StructEqTable",
+ "Texify and TableMaster"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which two models are used by MinerU for table recognition tasks?\nAnswer:",
+ " StructEqTable and TableMaster"
+ ],
+ [
+ "Question:Which two models are used by MinerU for table recognition tasks?\nAnswer:",
+ " DocXchain and TableMaster"
+ ],
+ [
+ "Question:Which two models are used by MinerU for table recognition tasks?\nAnswer:",
+ " Pix2tex and StructEqTable"
+ ],
+ [
+ "Question:Which two models are used by MinerU for table recognition tasks?\nAnswer:",
+ " Texify and TableMaster"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -41.12918472290039,
+ false
+ ]
+ ],
+ [
+ [
+ -46.08926773071289,
+ false
+ ]
+ ],
+ [
+ [
+ -45.41828918457031,
+ false
+ ]
+ ],
+ [
+ [
+ -38.265869140625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -41.12918472290039,
+ false
+ ],
+ [
+ -46.08926773071289,
+ false
+ ],
+ [
+ -45.41828918457031,
+ false
+ ],
+ [
+ -38.265869140625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7ebc7a53eeb4822f4633bb50c81307b737b7e5d75cedec0d907633580d14d0c7",
+ "prompt_hash": "94f14cd39b28fc71d7d77acfeda9bce9541e04e522aeb95d34315422b2fb94c5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "What document attribute determines whether MinerU applies OCR or direct text extraction?",
+ "choices": [
+ "Document file size",
+ "Language of the document",
+ "Presence of formulas",
+ "Scanned vs. text-based PDF"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What document attribute determines whether MinerU applies OCR or direct text extraction?\nAnswer:",
+ " Document file size"
+ ],
+ [
+ "Question:What document attribute determines whether MinerU applies OCR or direct text extraction?\nAnswer:",
+ " Language of the document"
+ ],
+ [
+ "Question:What document attribute determines whether MinerU applies OCR or direct text extraction?\nAnswer:",
+ " Presence of formulas"
+ ],
+ [
+ "Question:What document attribute determines whether MinerU applies OCR or direct text extraction?\nAnswer:",
+ " Scanned vs. text-based PDF"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.031461715698242,
+ false
+ ]
+ ],
+ [
+ [
+ -13.443138122558594,
+ false
+ ]
+ ],
+ [
+ [
+ -21.756549835205078,
+ false
+ ]
+ ],
+ [
+ [
+ -32.97414016723633,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.031461715698242,
+ false
+ ],
+ [
+ -13.443138122558594,
+ false
+ ],
+ [
+ -21.756549835205078,
+ false
+ ],
+ [
+ -32.97414016723633,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b65253960a8d398702513c3de6c03b58763a782ea4c8eb76d51069f4c1a83a16",
+ "prompt_hash": "6ec9281ad15979a5e1a2f3d8be4a535782184f3f378b9de562997926427b1b65",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What is the codebook size used by the vision tokenizer?",
+ "choices": [
+ "16384",
+ "32768",
+ "65536",
+ "4096"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the codebook size used by the vision tokenizer?\nAnswer:",
+ " 16384"
+ ],
+ [
+ "Question:What is the codebook size used by the vision tokenizer?\nAnswer:",
+ " 32768"
+ ],
+ [
+ "Question:What is the codebook size used by the vision tokenizer?\nAnswer:",
+ " 65536"
+ ],
+ [
+ "Question:What is the codebook size used by the vision tokenizer?\nAnswer:",
+ " 4096"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.472506523132324,
+ false
+ ]
+ ],
+ [
+ [
+ -9.326908111572266,
+ false
+ ]
+ ],
+ [
+ [
+ -8.893693923950195,
+ false
+ ]
+ ],
+ [
+ [
+ -6.730905532836914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.472506523132324,
+ false
+ ],
+ [
+ -9.326908111572266,
+ false
+ ],
+ [
+ -8.893693923950195,
+ false
+ ],
+ [
+ -6.730905532836914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "921138505deac46d1dc26ce3e7d95d3173d37af399a55da377c25799cf397256",
+ "prompt_hash": "8c13fc6441acf5a97158c0331c0abc98f3f5d45d7793efd374c10a6dab8654bb",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "What is the total context length supported by the model during video training?",
+ "choices": [
+ "4096",
+ "131072",
+ "2048",
+ "65536"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the total context length supported by the model during video training?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:What is the total context length supported by the model during video training?\nAnswer:",
+ " 131072"
+ ],
+ [
+ "Question:What is the total context length supported by the model during video training?\nAnswer:",
+ " 2048"
+ ],
+ [
+ "Question:What is the total context length supported by the model during video training?\nAnswer:",
+ " 65536"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.252519130706787,
+ false
+ ]
+ ],
+ [
+ [
+ -11.824712753295898,
+ false
+ ]
+ ],
+ [
+ [
+ -6.172224998474121,
+ false
+ ]
+ ],
+ [
+ [
+ -10.215291976928711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.252519130706787,
+ false
+ ],
+ [
+ -11.824712753295898,
+ false
+ ],
+ [
+ -6.172224998474121,
+ false
+ ],
+ [
+ -10.215291976928711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bfeee6c195dc0a3c16023724818ceb8649450dbbb88b1962eab3682c072102b1",
+ "prompt_hash": "9c81cc8c1465e209432661336484c3e2cfd0aafef5bb044705a5b1a7e7ec3ce2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "What filtering threshold was used with the LAION-AI aesthetic predictor for images?",
+ "choices": [
+ "5.5",
+ "4.0",
+ "6.0",
+ "5.0"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What filtering threshold was used with the LAION-AI aesthetic predictor for images?\nAnswer:",
+ " 5.5"
+ ],
+ [
+ "Question:What filtering threshold was used with the LAION-AI aesthetic predictor for images?\nAnswer:",
+ " 4.0"
+ ],
+ [
+ "Question:What filtering threshold was used with the LAION-AI aesthetic predictor for images?\nAnswer:",
+ " 6.0"
+ ],
+ [
+ "Question:What filtering threshold was used with the LAION-AI aesthetic predictor for images?\nAnswer:",
+ " 5.0"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.747995376586914,
+ false
+ ]
+ ],
+ [
+ [
+ -8.179380416870117,
+ false
+ ]
+ ],
+ [
+ [
+ -9.052521705627441,
+ false
+ ]
+ ],
+ [
+ [
+ -7.995424270629883,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.747995376586914,
+ false
+ ],
+ [
+ -8.179380416870117,
+ false
+ ],
+ [
+ -9.052521705627441,
+ false
+ ],
+ [
+ -7.995424270629883,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e58253cf7bf1b42c0e218db5cc1e700afe70d68ab4c4326e0ca1c1393d3b2508",
+ "prompt_hash": "f104f738b2da0ffbac987df020d34e8922606c468203a1c53463f2ffb1220886",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "Which activation function is used in the model architecture?",
+ "choices": [
+ "ReLU",
+ "GELU",
+ "SwiGLU",
+ "LeakyReLU"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which activation function is used in the model architecture?\nAnswer:",
+ " ReLU"
+ ],
+ [
+ "Question:Which activation function is used in the model architecture?\nAnswer:",
+ " GELU"
+ ],
+ [
+ "Question:Which activation function is used in the model architecture?\nAnswer:",
+ " SwiGLU"
+ ],
+ [
+ "Question:Which activation function is used in the model architecture?\nAnswer:",
+ " LeakyReLU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -2.701192855834961,
+ false
+ ]
+ ],
+ [
+ [
+ -6.409379482269287,
+ false
+ ]
+ ],
+ [
+ [
+ -12.06315803527832,
+ false
+ ]
+ ],
+ [
+ [
+ -4.720894813537598,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -2.701192855834961,
+ false
+ ],
+ [
+ -6.409379482269287,
+ false
+ ],
+ [
+ -12.06315803527832,
+ false
+ ],
+ [
+ -4.720894813537598,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fa9b33bb481b548158c9744834bef4ed62e97a0d0893c4e5c69840958b0b0189",
+ "prompt_hash": "13ba185649417990c269bbd6c34c95cbfc797c8f4234e5923414f85e38ab18ae",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "What are the dimensions of the visual tokens that the vision tokenizer compresses a 512x512 image into?",
+ "choices": [
+ "64",
+ "4096",
+ "512",
+ "32"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What are the dimensions of the visual tokens that the vision tokenizer compresses a 512x512 image into?\nAnswer:",
+ " 64"
+ ],
+ [
+ "Question:What are the dimensions of the visual tokens that the vision tokenizer compresses a 512x512 image into?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:What are the dimensions of the visual tokens that the vision tokenizer compresses a 512x512 image into?\nAnswer:",
+ " 512"
+ ],
+ [
+ "Question:What are the dimensions of the visual tokens that the vision tokenizer compresses a 512x512 image into?\nAnswer:",
+ " 32"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.736916542053223,
+ false
+ ]
+ ],
+ [
+ [
+ -7.617210388183594,
+ false
+ ]
+ ],
+ [
+ [
+ -5.7705512046813965,
+ false
+ ]
+ ],
+ [
+ [
+ -5.485168933868408,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.736916542053223,
+ false
+ ],
+ [
+ -7.617210388183594,
+ false
+ ],
+ [
+ -5.7705512046813965,
+ false
+ ],
+ [
+ -5.485168933868408,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d480b3c765bc0fd2dfba85e7928b9e6256f3d92f03d35f0c172d8ed3889bead1",
+ "prompt_hash": "84fe528602ee3059051e8e68a2b6b11ca0e4eda52876bde6554ba7e13bc5c0d5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What simulator does the PhysGen system use for 2D rigid body dynamics?",
+ "choices": [
+ "PyBullet",
+ "MuJoCo",
+ "Pymunk",
+ "PhysX"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What simulator does the PhysGen system use for 2D rigid body dynamics?\nAnswer:",
+ " PyBullet"
+ ],
+ [
+ "Question:What simulator does the PhysGen system use for 2D rigid body dynamics?\nAnswer:",
+ " MuJoCo"
+ ],
+ [
+ "Question:What simulator does the PhysGen system use for 2D rigid body dynamics?\nAnswer:",
+ " Pymunk"
+ ],
+ [
+ "Question:What simulator does the PhysGen system use for 2D rigid body dynamics?\nAnswer:",
+ " PhysX"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.650575160980225,
+ false
+ ]
+ ],
+ [
+ [
+ -8.297380447387695,
+ false
+ ]
+ ],
+ [
+ [
+ -6.8455810546875,
+ false
+ ]
+ ],
+ [
+ [
+ -8.160148620605469,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.650575160980225,
+ false
+ ],
+ [
+ -8.297380447387695,
+ false
+ ],
+ [
+ -6.8455810546875,
+ false
+ ],
+ [
+ -8.160148620605469,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e89640744aa137f59ddd183fee7a69b64a815e0ea1445e6748f305d2f2d35874",
+ "prompt_hash": "1babfd91f4788bc86342e6f0f603c60b26327f96ac47d8dcd91b228980968ac0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "What is the resolution used for video generation in the experiments?",
+ "choices": [
+ "256 × 256",
+ "768 × 768",
+ "1024 × 1024",
+ "512 × 512"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the resolution used for video generation in the experiments?\nAnswer:",
+ " 256 × 256"
+ ],
+ [
+ "Question:What is the resolution used for video generation in the experiments?\nAnswer:",
+ " 768 × 768"
+ ],
+ [
+ "Question:What is the resolution used for video generation in the experiments?\nAnswer:",
+ " 1024 × 1024"
+ ],
+ [
+ "Question:What is the resolution used for video generation in the experiments?\nAnswer:",
+ " 512 × 512"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.873867511749268,
+ false
+ ]
+ ],
+ [
+ [
+ -10.801594734191895,
+ false
+ ]
+ ],
+ [
+ [
+ -8.7615966796875,
+ false
+ ]
+ ],
+ [
+ [
+ -8.544112205505371,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.873867511749268,
+ false
+ ],
+ [
+ -10.801594734191895,
+ false
+ ],
+ [
+ -8.7615966796875,
+ false
+ ],
+ [
+ -8.544112205505371,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c1f9aac27b758c6c9bbe16854de2f0da20a0063ce56679800a51b8a47ec0a5de",
+ "prompt_hash": "98db683fc1ff393d1165bf42f2254a7124c024e7a9fbb969eac3f5662de74532",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What metric is used to evaluate image appearance in the quantitative evaluation?",
+ "choices": [
+ "Fréchet Video Distance",
+ "Peak Signal-to-Noise Ratio",
+ "Image-FID",
+ "SSIM"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What metric is used to evaluate image appearance in the quantitative evaluation?\nAnswer:",
+ " Fréchet Video Distance"
+ ],
+ [
+ "Question:What metric is used to evaluate image appearance in the quantitative evaluation?\nAnswer:",
+ " Peak Signal-to-Noise Ratio"
+ ],
+ [
+ "Question:What metric is used to evaluate image appearance in the quantitative evaluation?\nAnswer:",
+ " Image-FID"
+ ],
+ [
+ "Question:What metric is used to evaluate image appearance in the quantitative evaluation?\nAnswer:",
+ " SSIM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.589303016662598,
+ false
+ ]
+ ],
+ [
+ [
+ -7.220948219299316,
+ false
+ ]
+ ],
+ [
+ [
+ -19.263450622558594,
+ false
+ ]
+ ],
+ [
+ [
+ -6.307013034820557,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.589303016662598,
+ false
+ ],
+ [
+ -7.220948219299316,
+ false
+ ],
+ [
+ -19.263450622558594,
+ false
+ ],
+ [
+ -6.307013034820557,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b2c8febd871fe21d664c54b2885582a829ee64ca1ee70a739f09058a533511f8",
+ "prompt_hash": "417d34dd90cf897e51f620454efe10802be46cc668007e267dd4afa55052b0d9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "How many human participants were involved in the physical-realism and photo-realism evaluation?",
+ "choices": [
+ "10",
+ "12",
+ "14",
+ "20"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many human participants were involved in the physical-realism and photo-realism evaluation?\nAnswer:",
+ " 10"
+ ],
+ [
+ "Question:How many human participants were involved in the physical-realism and photo-realism evaluation?\nAnswer:",
+ " 12"
+ ],
+ [
+ "Question:How many human participants were involved in the physical-realism and photo-realism evaluation?\nAnswer:",
+ " 14"
+ ],
+ [
+ "Question:How many human participants were involved in the physical-realism and photo-realism evaluation?\nAnswer:",
+ " 20"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.0728678703308105,
+ true
+ ]
+ ],
+ [
+ [
+ -4.49506139755249,
+ false
+ ]
+ ],
+ [
+ [
+ -5.605117321014404,
+ false
+ ]
+ ],
+ [
+ [
+ -4.566987037658691,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.0728678703308105,
+ true
+ ],
+ [
+ -4.49506139755249,
+ false
+ ],
+ [
+ -5.605117321014404,
+ false
+ ],
+ [
+ -4.566987037658691,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2e057fc17dce303739e665d9ffdd88f0cb75faaee88f577b0132ad378807aa61",
+ "prompt_hash": "0b4f201db05858d3bae3b02a7724eeb3f7961656c58f1ad4fc98cf12ff486654",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "Which model is used to estimate surface normals for intrinsic decomposition?",
+ "choices": [
+ "OmniData",
+ "GeoWizard",
+ "DINOv2",
+ "SAM"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model is used to estimate surface normals for intrinsic decomposition?\nAnswer:",
+ " OmniData"
+ ],
+ [
+ "Question:Which model is used to estimate surface normals for intrinsic decomposition?\nAnswer:",
+ " GeoWizard"
+ ],
+ [
+ "Question:Which model is used to estimate surface normals for intrinsic decomposition?\nAnswer:",
+ " DINOv2"
+ ],
+ [
+ "Question:Which model is used to estimate surface normals for intrinsic decomposition?\nAnswer:",
+ " SAM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.465606689453125,
+ false
+ ]
+ ],
+ [
+ [
+ -20.510021209716797,
+ false
+ ]
+ ],
+ [
+ [
+ -10.1165771484375,
+ false
+ ]
+ ],
+ [
+ [
+ -10.176116943359375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.465606689453125,
+ false
+ ],
+ [
+ -20.510021209716797,
+ false
+ ],
+ [
+ -10.1165771484375,
+ false
+ ],
+ [
+ -10.176116943359375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "be853caa9fc164305d79a18a3a24573ea1963c2fb005183ae8ce413eebebab46",
+ "prompt_hash": "28f78e448df786530b10b8c768afc1db85a16371e1d6f722e67ba3779c48fb82",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2410": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What are the three main phases of the TECH approach for fixing software issues?",
+ "choices": [
+ "Planning, Execution, Review",
+ "Localization, Repair, Patch Validation",
+ "Input Parsing, Compilation, Testing",
+ "Scanning, Refactoring, Deployment"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What are the three main phases of the TECH approach for fixing software issues?\nAnswer:",
+ " Planning, Execution, Review"
+ ],
+ [
+ "Question:What are the three main phases of the TECH approach for fixing software issues?\nAnswer:",
+ " Localization, Repair, Patch Validation"
+ ],
+ [
+ "Question:What are the three main phases of the TECH approach for fixing software issues?\nAnswer:",
+ " Input Parsing, Compilation, Testing"
+ ],
+ [
+ "Question:What are the three main phases of the TECH approach for fixing software issues?\nAnswer:",
+ " Scanning, Refactoring, Deployment"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.142742156982422,
+ false
+ ]
+ ],
+ [
+ [
+ -31.907644271850586,
+ false
+ ]
+ ],
+ [
+ [
+ -28.914268493652344,
+ false
+ ]
+ ],
+ [
+ [
+ -23.669246673583984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.142742156982422,
+ false
+ ],
+ [
+ -31.907644271850586,
+ false
+ ],
+ [
+ -28.914268493652344,
+ false
+ ],
+ [
+ -23.669246673583984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8f30c31f2913f7a7945de0d4dc3242e4f453933de09ccf31eb6e210083d748c4",
+ "prompt_hash": "d785864492154380bf1f9f3e96c251bc75978f55738006395216d3242e45aff9",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "What format does TECH use to concisely represent a repository's file and directory structure?",
+ "choices": [
+ "Markdown format",
+ "Skeleton format",
+ "Tree-like structure called repostructureformat",
+ "JSON representation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What format does TECH use to concisely represent a repository's file and directory structure?\nAnswer:",
+ " Markdown format"
+ ],
+ [
+ "Question:What format does TECH use to concisely represent a repository's file and directory structure?\nAnswer:",
+ " Skeleton format"
+ ],
+ [
+ "Question:What format does TECH use to concisely represent a repository's file and directory structure?\nAnswer:",
+ " Tree-like structure called repostructureformat"
+ ],
+ [
+ "Question:What format does TECH use to concisely represent a repository's file and directory structure?\nAnswer:",
+ " JSON representation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.080405235290527,
+ false
+ ]
+ ],
+ [
+ [
+ -19.98662567138672,
+ false
+ ]
+ ],
+ [
+ [
+ -49.63202667236328,
+ false
+ ]
+ ],
+ [
+ [
+ -11.538562774658203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.080405235290527,
+ false
+ ],
+ [
+ -19.98662567138672,
+ false
+ ],
+ [
+ -49.63202667236328,
+ false
+ ],
+ [
+ -11.538562774658203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "61bf0927a6d4fb046ae2fe9787c168288efc1338d0565d93b1e933f503142de9",
+ "prompt_hash": "c2e4f29b8ab34d9218f5de34f173a908265aa157bce548d6b3e07479e957b9c3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "What type of test does TECH synthesize to verify whether an issue has been fixed?",
+ "choices": [
+ "Regression test",
+ "Smoke test",
+ "Reproduction test",
+ "Integration test"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of test does TECH synthesize to verify whether an issue has been fixed?\nAnswer:",
+ " Regression test"
+ ],
+ [
+ "Question:What type of test does TECH synthesize to verify whether an issue has been fixed?\nAnswer:",
+ " Smoke test"
+ ],
+ [
+ "Question:What type of test does TECH synthesize to verify whether an issue has been fixed?\nAnswer:",
+ " Reproduction test"
+ ],
+ [
+ "Question:What type of test does TECH synthesize to verify whether an issue has been fixed?\nAnswer:",
+ " Integration test"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.417646408081055,
+ false
+ ]
+ ],
+ [
+ [
+ -14.601350784301758,
+ false
+ ]
+ ],
+ [
+ [
+ -12.118673324584961,
+ false
+ ]
+ ],
+ [
+ [
+ -10.362127304077148,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.417646408081055,
+ false
+ ],
+ [
+ -14.601350784301758,
+ false
+ ],
+ [
+ -12.118673324584961,
+ false
+ ],
+ [
+ -10.362127304077148,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1f4bf8b5c4ff2a11454e56e263d85156cae6700871a341481e534898e5687dff",
+ "prompt_hash": "023e52b0faef56033cb02985f46f356e563fb5058f7ea12bade09233d6921c5e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "What diff format does TECH use during the repair phase to apply patches?",
+ "choices": [
+ "Context-based patch",
+ "Unified diff format",
+ "Search/Replace edit format",
+ "Reverse diff format"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What diff format does TECH use during the repair phase to apply patches?\nAnswer:",
+ " Context-based patch"
+ ],
+ [
+ "Question:What diff format does TECH use during the repair phase to apply patches?\nAnswer:",
+ " Unified diff format"
+ ],
+ [
+ "Question:What diff format does TECH use during the repair phase to apply patches?\nAnswer:",
+ " Search/Replace edit format"
+ ],
+ [
+ "Question:What diff format does TECH use during the repair phase to apply patches?\nAnswer:",
+ " Reverse diff format"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.5589599609375,
+ false
+ ]
+ ],
+ [
+ [
+ -16.782909393310547,
+ false
+ ]
+ ],
+ [
+ [
+ -37.64253616333008,
+ false
+ ]
+ ],
+ [
+ [
+ -20.763954162597656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.5589599609375,
+ false
+ ],
+ [
+ -16.782909393310547,
+ false
+ ],
+ [
+ -37.64253616333008,
+ false
+ ],
+ [
+ -20.763954162597656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f2c5708f345133a398dfca01d690074eb387df7eb91fb481c8f5c47295e2e96e",
+ "prompt_hash": "79bfec124e28d4bf05de9556619b459d58f71b627bcd66101040b5c37e5b58a0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "Which benchmark did OpenAI release to address concerns about problem quality in SWE-bench Lite?",
+ "choices": [
+ "SWE-bench Pro",
+ "SWE-bench Alpha",
+ "SWE-bench Verified",
+ "SWE-bench Debug"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which benchmark did OpenAI release to address concerns about problem quality in SWE-bench Lite?\nAnswer:",
+ " SWE-bench Pro"
+ ],
+ [
+ "Question:Which benchmark did OpenAI release to address concerns about problem quality in SWE-bench Lite?\nAnswer:",
+ " SWE-bench Alpha"
+ ],
+ [
+ "Question:Which benchmark did OpenAI release to address concerns about problem quality in SWE-bench Lite?\nAnswer:",
+ " SWE-bench Verified"
+ ],
+ [
+ "Question:Which benchmark did OpenAI release to address concerns about problem quality in SWE-bench Lite?\nAnswer:",
+ " SWE-bench Debug"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.525687217712402,
+ false
+ ]
+ ],
+ [
+ [
+ -13.013885498046875,
+ false
+ ]
+ ],
+ [
+ [
+ -15.520681381225586,
+ false
+ ]
+ ],
+ [
+ [
+ -14.712057113647461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.525687217712402,
+ false
+ ],
+ [
+ -13.013885498046875,
+ false
+ ],
+ [
+ -15.520681381225586,
+ false
+ ],
+ [
+ -14.712057113647461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "55486ad2ef065f2cbbcca4b5038e34a1a0b0d244820634cea34a7dc17c5da3b5",
+ "prompt_hash": "aca54400c5b3ff7d1572b9cc03a80d7966fd32951ea88e9eca8558bdaa3734c3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "What type of image encoder does PaliGemma use?",
+ "choices": [
+ "A. CLIP",
+ "B. SigLIP",
+ "C. BLIP-2",
+ "D. Flamingo"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of image encoder does PaliGemma use?\nAnswer:",
+ " A. CLIP"
+ ],
+ [
+ "Question:What type of image encoder does PaliGemma use?\nAnswer:",
+ " B. SigLIP"
+ ],
+ [
+ "Question:What type of image encoder does PaliGemma use?\nAnswer:",
+ " C. BLIP-2"
+ ],
+ [
+ "Question:What type of image encoder does PaliGemma use?\nAnswer:",
+ " D. Flamingo"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.815264701843262,
+ false
+ ]
+ ],
+ [
+ [
+ -21.23035430908203,
+ false
+ ]
+ ],
+ [
+ [
+ -16.70880126953125,
+ false
+ ]
+ ],
+ [
+ [
+ -20.90701675415039,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.815264701843262,
+ false
+ ],
+ [
+ -21.23035430908203,
+ false
+ ],
+ [
+ -16.70880126953125,
+ false
+ ],
+ [
+ -20.90701675415039,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "faf0292756db6246476c88adf99a11951deb3b1c6118964ba5bd87de03a8fc52",
+ "prompt_hash": "a43e47ae912a3783d89098b4568202ae426e79d14917bf43d0505e67195ab643",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "How many new tokens were added to support PaliGemma’s structured computer vision tasks?",
+ "choices": [
+ "A. 1024",
+ "B. 128",
+ "C. 1152",
+ "D. 2048"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many new tokens were added to support PaliGemma’s structured computer vision tasks?\nAnswer:",
+ " A. 1024"
+ ],
+ [
+ "Question:How many new tokens were added to support PaliGemma’s structured computer vision tasks?\nAnswer:",
+ " B. 128"
+ ],
+ [
+ "Question:How many new tokens were added to support PaliGemma’s structured computer vision tasks?\nAnswer:",
+ " C. 1152"
+ ],
+ [
+ "Question:How many new tokens were added to support PaliGemma’s structured computer vision tasks?\nAnswer:",
+ " D. 2048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.1997013092041,
+ false
+ ]
+ ],
+ [
+ [
+ -19.620742797851562,
+ false
+ ]
+ ],
+ [
+ [
+ -23.257474899291992,
+ false
+ ]
+ ],
+ [
+ [
+ -23.265338897705078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.1997013092041,
+ false
+ ],
+ [
+ -19.620742797851562,
+ false
+ ],
+ [
+ -23.257474899291992,
+ false
+ ],
+ [
+ -23.265338897705078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b86bf0c3962ea72631ecfbb84ea987beeb0eea7dec02c015c5666bd94d1e99ef",
+ "prompt_hash": "6a3f272c72a41669cf58da1d9c24c62d760682550711922ffbd1ffbb7289b811",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "What resolution does PaliGemma use during Stage 1 pretraining?",
+ "choices": [
+ "A. 224px",
+ "B. 448px",
+ "C. 896px",
+ "D. 1024px"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What resolution does PaliGemma use during Stage 1 pretraining?\nAnswer:",
+ " A. 224px"
+ ],
+ [
+ "Question:What resolution does PaliGemma use during Stage 1 pretraining?\nAnswer:",
+ " B. 448px"
+ ],
+ [
+ "Question:What resolution does PaliGemma use during Stage 1 pretraining?\nAnswer:",
+ " C. 896px"
+ ],
+ [
+ "Question:What resolution does PaliGemma use during Stage 1 pretraining?\nAnswer:",
+ " D. 1024px"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.129924774169922,
+ false
+ ]
+ ],
+ [
+ [
+ -24.31297492980957,
+ false
+ ]
+ ],
+ [
+ [
+ -24.918224334716797,
+ false
+ ]
+ ],
+ [
+ [
+ -21.301815032958984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.129924774169922,
+ false
+ ],
+ [
+ -24.31297492980957,
+ false
+ ],
+ [
+ -24.918224334716797,
+ false
+ ],
+ [
+ -21.301815032958984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b998212e8cc1fb9f15a5fb0fc5d89b81af35494c6ac9464feb23ec42ff9de43e",
+ "prompt_hash": "33be460a43eec891167ef62e7ecffcb88a69dcf9f4538a1bafd197a9dd31f241",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "Which language model does PaliGemma use as its decoder?",
+ "choices": [
+ "A. Gemma-7B",
+ "B. PaLM-E",
+ "C. Gemma-2B",
+ "D. mT5"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which language model does PaliGemma use as its decoder?\nAnswer:",
+ " A. Gemma-7B"
+ ],
+ [
+ "Question:Which language model does PaliGemma use as its decoder?\nAnswer:",
+ " B. PaLM-E"
+ ],
+ [
+ "Question:Which language model does PaliGemma use as its decoder?\nAnswer:",
+ " C. Gemma-2B"
+ ],
+ [
+ "Question:Which language model does PaliGemma use as its decoder?\nAnswer:",
+ " D. mT5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.4105863571167,
+ false
+ ]
+ ],
+ [
+ [
+ -25.003814697265625,
+ false
+ ]
+ ],
+ [
+ [
+ -18.639402389526367,
+ false
+ ]
+ ],
+ [
+ [
+ -19.03719139099121,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.4105863571167,
+ false
+ ],
+ [
+ -25.003814697265625,
+ false
+ ],
+ [
+ -18.639402389526367,
+ false
+ ],
+ [
+ -19.03719139099121,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8ea584d27437c754402c4878ff8038a7b28b01ee7f36e783ec652978aed23dee",
+ "prompt_hash": "e8dd45cd5bb9e2e28d6ae138f4fe19b7ae51a6ff9b895ae462dba64b3f5cda97",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "What kind of connector is used between SigLIP and Gemma in PaliGemma?",
+ "choices": [
+ "A. MLP with attention",
+ "B. Q-Former",
+ "C. Linear projection",
+ "D. Convolutional adapter"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What kind of connector is used between SigLIP and Gemma in PaliGemma?\nAnswer:",
+ " A. MLP with attention"
+ ],
+ [
+ "Question:What kind of connector is used between SigLIP and Gemma in PaliGemma?\nAnswer:",
+ " B. Q-Former"
+ ],
+ [
+ "Question:What kind of connector is used between SigLIP and Gemma in PaliGemma?\nAnswer:",
+ " C. Linear projection"
+ ],
+ [
+ "Question:What kind of connector is used between SigLIP and Gemma in PaliGemma?\nAnswer:",
+ " D. Convolutional adapter"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.83165740966797,
+ false
+ ]
+ ],
+ [
+ [
+ -24.223936080932617,
+ false
+ ]
+ ],
+ [
+ [
+ -24.006492614746094,
+ false
+ ]
+ ],
+ [
+ [
+ -31.108749389648438,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.83165740966797,
+ false
+ ],
+ [
+ -24.223936080932617,
+ false
+ ],
+ [
+ -24.006492614746094,
+ false
+ ],
+ [
+ -31.108749389648438,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c3b705e13367b24fe44ddee6efc65b4f95aee365c48c1376151412963b520013",
+ "prompt_hash": "373ffce3f8709c674ae833152b3ed551fb570bec602b3187cee3b62910992334",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What is the size of the vocabulary used in the Gemma 2 models?",
+ "choices": [
+ "128k",
+ "256k",
+ "512k",
+ "64k"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the size of the vocabulary used in the Gemma 2 models?\nAnswer:",
+ " 128k"
+ ],
+ [
+ "Question:What is the size of the vocabulary used in the Gemma 2 models?\nAnswer:",
+ " 256k"
+ ],
+ [
+ "Question:What is the size of the vocabulary used in the Gemma 2 models?\nAnswer:",
+ " 512k"
+ ],
+ [
+ "Question:What is the size of the vocabulary used in the Gemma 2 models?\nAnswer:",
+ " 64k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.427914619445801,
+ false
+ ]
+ ],
+ [
+ [
+ -8.645819664001465,
+ false
+ ]
+ ],
+ [
+ [
+ -9.469427108764648,
+ false
+ ]
+ ],
+ [
+ [
+ -7.870913505554199,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.427914619445801,
+ false
+ ],
+ [
+ -8.645819664001465,
+ false
+ ],
+ [
+ -9.469427108764648,
+ false
+ ],
+ [
+ -7.870913505554199,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5b9d9b32959d1bd9a3838b7e692d123eb3256ed4d79f1b5f6341ab4833443bec",
+ "prompt_hash": "c21c35818306c97b4e6bc5c857e0494f9b0ab1ca1aac07486760d842b4679594",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "What non-linearity function is used in all Gemma 2 models?",
+ "choices": [
+ "ReLU",
+ "Swish",
+ "GeGLU",
+ "Sigmoid"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What non-linearity function is used in all Gemma 2 models?\nAnswer:",
+ " ReLU"
+ ],
+ [
+ "Question:What non-linearity function is used in all Gemma 2 models?\nAnswer:",
+ " Swish"
+ ],
+ [
+ "Question:What non-linearity function is used in all Gemma 2 models?\nAnswer:",
+ " GeGLU"
+ ],
+ [
+ "Question:What non-linearity function is used in all Gemma 2 models?\nAnswer:",
+ " Sigmoid"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.497497081756592,
+ false
+ ]
+ ],
+ [
+ [
+ -9.737420082092285,
+ false
+ ]
+ ],
+ [
+ [
+ -24.105804443359375,
+ false
+ ]
+ ],
+ [
+ [
+ -4.997573375701904,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.497497081756592,
+ false
+ ],
+ [
+ -9.737420082092285,
+ false
+ ],
+ [
+ -24.105804443359375,
+ false
+ ],
+ [
+ -4.997573375701904,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0b8e6c5eb1b5746b793ab356c9c33eecaa945b7e5f7a27fe29d9ff7058c46623",
+ "prompt_hash": "b2f86be38f5913ba3b9cef331d432f708e5a912ecb9ea64dc3dd2fe675a3ba25",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "Which mechanism does Gemma 2 use to improve inference speed while maintaining downstream performance?",
+ "choices": [
+ "Multi-Head Attention",
+ "Rotary Position Embedding",
+ "Grouped-Query Attention",
+ "Sparse Transformer"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which mechanism does Gemma 2 use to improve inference speed while maintaining downstream performance?\nAnswer:",
+ " Multi-Head Attention"
+ ],
+ [
+ "Question:Which mechanism does Gemma 2 use to improve inference speed while maintaining downstream performance?\nAnswer:",
+ " Rotary Position Embedding"
+ ],
+ [
+ "Question:Which mechanism does Gemma 2 use to improve inference speed while maintaining downstream performance?\nAnswer:",
+ " Grouped-Query Attention"
+ ],
+ [
+ "Question:Which mechanism does Gemma 2 use to improve inference speed while maintaining downstream performance?\nAnswer:",
+ " Sparse Transformer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.394296646118164,
+ false
+ ]
+ ],
+ [
+ [
+ -20.19460678100586,
+ false
+ ]
+ ],
+ [
+ [
+ -15.833362579345703,
+ false
+ ]
+ ],
+ [
+ [
+ -17.08722686767578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.394296646118164,
+ false
+ ],
+ [
+ -20.19460678100586,
+ false
+ ],
+ [
+ -15.833362579345703,
+ false
+ ],
+ [
+ -17.08722686767578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "785e76f9c2316a0ed775048f820bed3227d85f88e8e34ccc1792f82dce848c38",
+ "prompt_hash": "461d52f64e24115c0807730ff58a90a5c0bdbaed6f3fe71b3b9907b17dea6b4e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "How many tokens was the Gemma 2 27B model trained on?",
+ "choices": [
+ "3 trillion",
+ "8 trillion",
+ "13 trillion",
+ "15 trillion"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many tokens was the Gemma 2 27B model trained on?\nAnswer:",
+ " 3 trillion"
+ ],
+ [
+ "Question:How many tokens was the Gemma 2 27B model trained on?\nAnswer:",
+ " 8 trillion"
+ ],
+ [
+ "Question:How many tokens was the Gemma 2 27B model trained on?\nAnswer:",
+ " 13 trillion"
+ ],
+ [
+ "Question:How many tokens was the Gemma 2 27B model trained on?\nAnswer:",
+ " 15 trillion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.128683090209961,
+ false
+ ]
+ ],
+ [
+ [
+ -12.361979484558105,
+ false
+ ]
+ ],
+ [
+ [
+ -12.137228012084961,
+ false
+ ]
+ ],
+ [
+ [
+ -12.41441822052002,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.128683090209961,
+ false
+ ],
+ [
+ -12.361979484558105,
+ false
+ ],
+ [
+ -12.137228012084961,
+ false
+ ],
+ [
+ -12.41441822052002,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7eb7aedba0cadb9438df3db05265fd3b52d42e554ef64a857b9b1b71a4218dcc",
+ "prompt_hash": "f0593255989772c2c18a7e5a6b143ae507e838dcfe8a0b3b5200723bd40eba70",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "What soft cap value is used for logits in the final layer of Gemma 2 models?",
+ "choices": [
+ "10.0",
+ "30.0",
+ "50.0",
+ "100.0"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What soft cap value is used for logits in the final layer of Gemma 2 models?\nAnswer:",
+ " 10.0"
+ ],
+ [
+ "Question:What soft cap value is used for logits in the final layer of Gemma 2 models?\nAnswer:",
+ " 30.0"
+ ],
+ [
+ "Question:What soft cap value is used for logits in the final layer of Gemma 2 models?\nAnswer:",
+ " 50.0"
+ ],
+ [
+ "Question:What soft cap value is used for logits in the final layer of Gemma 2 models?\nAnswer:",
+ " 100.0"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.458868026733398,
+ false
+ ]
+ ],
+ [
+ [
+ -8.575843811035156,
+ false
+ ]
+ ],
+ [
+ [
+ -8.410329818725586,
+ false
+ ]
+ ],
+ [
+ [
+ -8.538220405578613,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.458868026733398,
+ false
+ ],
+ [
+ -8.575843811035156,
+ false
+ ],
+ [
+ -8.410329818725586,
+ false
+ ],
+ [
+ -8.538220405578613,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "95dc03314caef85c92c77964e354165d2854429f6ba048362ff298af844c0c30",
+ "prompt_hash": "02aba881c3e2b1813dc814c5c6f5e4b4af64d6f6de73eda92da54299c1a38d22",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "Which language model is used as the LLM in the architecture?",
+ "choices": [
+ "Qwen-2",
+ "GPT-3.5",
+ "LLaMA-2",
+ "BLOOM"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which language model is used as the LLM in the architecture?\nAnswer:",
+ " Qwen-2"
+ ],
+ [
+ "Question:Which language model is used as the LLM in the architecture?\nAnswer:",
+ " GPT-3.5"
+ ],
+ [
+ "Question:Which language model is used as the LLM in the architecture?\nAnswer:",
+ " LLaMA-2"
+ ],
+ [
+ "Question:Which language model is used as the LLM in the architecture?\nAnswer:",
+ " BLOOM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.288427352905273,
+ false
+ ]
+ ],
+ [
+ [
+ -4.0216217041015625,
+ false
+ ]
+ ],
+ [
+ [
+ -8.288175582885742,
+ false
+ ]
+ ],
+ [
+ [
+ -7.530017375946045,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.288427352905273,
+ false
+ ],
+ [
+ -4.0216217041015625,
+ false
+ ],
+ [
+ -8.288175582885742,
+ false
+ ],
+ [
+ -7.530017375946045,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "763e2d4590d8631d47a491547a5c25bc18e8897ebad0deb508b89de5df974438",
+ "prompt_hash": "a251e3cc0a376c8158837560ea2b3cbf69857501397f91508554761288bf785f",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "What visual encoder is used to generate visual features from images?",
+ "choices": [
+ "CLIP",
+ "SigLIP",
+ "ViT-B/32",
+ "BLIP-2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What visual encoder is used to generate visual features from images?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:What visual encoder is used to generate visual features from images?\nAnswer:",
+ " SigLIP"
+ ],
+ [
+ "Question:What visual encoder is used to generate visual features from images?\nAnswer:",
+ " ViT-B/32"
+ ],
+ [
+ "Question:What visual encoder is used to generate visual features from images?\nAnswer:",
+ " BLIP-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.400332927703857,
+ false
+ ]
+ ],
+ [
+ [
+ -12.483972549438477,
+ false
+ ]
+ ],
+ [
+ [
+ -12.72900390625,
+ false
+ ]
+ ],
+ [
+ [
+ -9.399051666259766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.400332927703857,
+ false
+ ],
+ [
+ -12.483972549438477,
+ false
+ ],
+ [
+ -12.72900390625,
+ false
+ ],
+ [
+ -9.399051666259766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1fed2d0f3f806f0ede4ac3dcd2e24da5af46bbe8c681c54f27c660efdae75d64",
+ "prompt_hash": "76a68c139bf7c017822524c8f45b702cf3e64b99258e8479dcefddc1bcfb3aae",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "How many samples are included in the Re-Captioned Detailed Description Data?",
+ "choices": [
+ "2.1M",
+ "3.5M",
+ "5.0M",
+ "1.8M"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many samples are included in the Re-Captioned Detailed Description Data?\nAnswer:",
+ " 2.1M"
+ ],
+ [
+ "Question:How many samples are included in the Re-Captioned Detailed Description Data?\nAnswer:",
+ " 3.5M"
+ ],
+ [
+ "Question:How many samples are included in the Re-Captioned Detailed Description Data?\nAnswer:",
+ " 5.0M"
+ ],
+ [
+ "Question:How many samples are included in the Re-Captioned Detailed Description Data?\nAnswer:",
+ " 1.8M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.48883056640625,
+ false
+ ]
+ ],
+ [
+ [
+ -12.085700988769531,
+ false
+ ]
+ ],
+ [
+ [
+ -13.646947860717773,
+ false
+ ]
+ ],
+ [
+ [
+ -11.971969604492188,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.48883056640625,
+ false
+ ],
+ [
+ -12.085700988769531,
+ false
+ ],
+ [
+ -13.646947860717773,
+ false
+ ],
+ [
+ -11.971969604492188,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "432a3bf5c6810f0e0bba9d1541cb9434bfb62e6a117cdf56357d718e4ba521a0",
+ "prompt_hash": "2f9de16b807907efad345b576e9fce196e96e0b258d7e05eae7be249c75cc7ab",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "What is the maximum number of visual tokens used in Stage-2 of training?",
+ "choices": [
+ "729",
+ "729 × 5",
+ "729 × 10",
+ "729 × 2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum number of visual tokens used in Stage-2 of training?\nAnswer:",
+ " 729"
+ ],
+ [
+ "Question:What is the maximum number of visual tokens used in Stage-2 of training?\nAnswer:",
+ " 729 × 5"
+ ],
+ [
+ "Question:What is the maximum number of visual tokens used in Stage-2 of training?\nAnswer:",
+ " 729 × 10"
+ ],
+ [
+ "Question:What is the maximum number of visual tokens used in Stage-2 of training?\nAnswer:",
+ " 729 × 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.973566055297852,
+ false
+ ]
+ ],
+ [
+ [
+ -23.389095306396484,
+ false
+ ]
+ ],
+ [
+ [
+ -22.504749298095703,
+ false
+ ]
+ ],
+ [
+ [
+ -22.001413345336914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.973566055297852,
+ false
+ ],
+ [
+ -23.389095306396484,
+ false
+ ],
+ [
+ -22.504749298095703,
+ false
+ ],
+ [
+ -22.001413345336914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2bc24be57e51015d15ac5e3e51f61ed93196c209592ae538e612d4f932ea7920",
+ "prompt_hash": "b48df395d7a06051c3af142362fcfe394f8cfea66edbf90cf90c664dd7904b14",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "Which dataset was used to generate 92K detailed Chinese caption samples?",
+ "choices": [
+ "COCO",
+ "ShareGPT4V",
+ "SynDOG EN",
+ "Evo-Instruct"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset was used to generate 92K detailed Chinese caption samples?\nAnswer:",
+ " COCO"
+ ],
+ [
+ "Question:Which dataset was used to generate 92K detailed Chinese caption samples?\nAnswer:",
+ " ShareGPT4V"
+ ],
+ [
+ "Question:Which dataset was used to generate 92K detailed Chinese caption samples?\nAnswer:",
+ " SynDOG EN"
+ ],
+ [
+ "Question:Which dataset was used to generate 92K detailed Chinese caption samples?\nAnswer:",
+ " Evo-Instruct"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.290433406829834,
+ false
+ ]
+ ],
+ [
+ [
+ -12.020796775817871,
+ false
+ ]
+ ],
+ [
+ [
+ -36.19415283203125,
+ false
+ ]
+ ],
+ [
+ [
+ -20.265243530273438,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.290433406829834,
+ false
+ ],
+ [
+ -12.020796775817871,
+ false
+ ],
+ [
+ -36.19415283203125,
+ false
+ ],
+ [
+ -20.265243530273438,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c48e39a64b13161ee1bea7e39ea13c045f0e59c4f0a902a9841855dd286bcb0f",
+ "prompt_hash": "29c6ecd1445476dff678dd07862a504e9a47079055c8023ffbad73b57364430d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What is the primary reason for the latency in the pre-filling stage of long-context LLMs?",
+ "choices": [
+ "Model initialization",
+ "Token decoding speed",
+ "Self-attention computation overhead",
+ "Memory swapping between GPUs"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary reason for the latency in the pre-filling stage of long-context LLMs?\nAnswer:",
+ " Model initialization"
+ ],
+ [
+ "Question:What is the primary reason for the latency in the pre-filling stage of long-context LLMs?\nAnswer:",
+ " Token decoding speed"
+ ],
+ [
+ "Question:What is the primary reason for the latency in the pre-filling stage of long-context LLMs?\nAnswer:",
+ " Self-attention computation overhead"
+ ],
+ [
+ "Question:What is the primary reason for the latency in the pre-filling stage of long-context LLMs?\nAnswer:",
+ " Memory swapping between GPUs"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.29690170288086,
+ false
+ ]
+ ],
+ [
+ [
+ -21.47367286682129,
+ false
+ ]
+ ],
+ [
+ [
+ -19.235584259033203,
+ false
+ ]
+ ],
+ [
+ [
+ -26.47637367248535,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.29690170288086,
+ false
+ ],
+ [
+ -21.47367286682129,
+ false
+ ],
+ [
+ -19.235584259033203,
+ false
+ ],
+ [
+ -26.47637367248535,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c35537323672d6352eef7842a5fdcd331b963c254c0b1e10fc871a1b0979fa8a",
+ "prompt_hash": "50c6e338256e19846b03fddb143a281480b7c983a1f11d369bd847a728c3f144",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "What recall percentage is achieved when only the top 4k columns are retained in a 128k attention matrix?",
+ "choices": [
+ "89.3%",
+ "92.5%",
+ "96.8%",
+ "99.1%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What recall percentage is achieved when only the top 4k columns are retained in a 128k attention matrix?\nAnswer:",
+ " 89.3%"
+ ],
+ [
+ "Question:What recall percentage is achieved when only the top 4k columns are retained in a 128k attention matrix?\nAnswer:",
+ " 92.5%"
+ ],
+ [
+ "Question:What recall percentage is achieved when only the top 4k columns are retained in a 128k attention matrix?\nAnswer:",
+ " 96.8%"
+ ],
+ [
+ "Question:What recall percentage is achieved when only the top 4k columns are retained in a 128k attention matrix?\nAnswer:",
+ " 99.1%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.330986022949219,
+ false
+ ]
+ ],
+ [
+ [
+ -13.229812622070312,
+ false
+ ]
+ ],
+ [
+ [
+ -13.767045974731445,
+ false
+ ]
+ ],
+ [
+ [
+ -14.044456481933594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.330986022949219,
+ false
+ ],
+ [
+ -13.229812622070312,
+ false
+ ],
+ [
+ -13.767045974731445,
+ false
+ ],
+ [
+ -14.044456481933594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5438925b93c9e52efeef96c678d215f83f32bbc7b162644c312d3fd33139500b",
+ "prompt_hash": "0ddd6c551b6b0dc2c533e3a6f6d1db7231e1c899b2128d3c6b8f18ca58fda0e8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "Which attention pattern is characterized by tokens focusing on initial tokens and local windows?",
+ "choices": [
+ "Block-Sparse pattern",
+ "Vertical-Slash pattern",
+ "A-shape pattern",
+ "Global-Context pattern"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which attention pattern is characterized by tokens focusing on initial tokens and local windows?\nAnswer:",
+ " Block-Sparse pattern"
+ ],
+ [
+ "Question:Which attention pattern is characterized by tokens focusing on initial tokens and local windows?\nAnswer:",
+ " Vertical-Slash pattern"
+ ],
+ [
+ "Question:Which attention pattern is characterized by tokens focusing on initial tokens and local windows?\nAnswer:",
+ " A-shape pattern"
+ ],
+ [
+ "Question:Which attention pattern is characterized by tokens focusing on initial tokens and local windows?\nAnswer:",
+ " Global-Context pattern"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.077165603637695,
+ false
+ ]
+ ],
+ [
+ [
+ -36.12141418457031,
+ false
+ ]
+ ],
+ [
+ [
+ -24.157867431640625,
+ false
+ ]
+ ],
+ [
+ [
+ -23.051002502441406,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.077165603637695,
+ false
+ ],
+ [
+ -36.12141418457031,
+ false
+ ],
+ [
+ -24.157867431640625,
+ false
+ ],
+ [
+ -23.051002502441406,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7a0b7e981e36e32875a92973f2a7923dd3b684ec424f172722d92441aac32bf0",
+ "prompt_hash": "fe87432365ef44cd6f6feca83292c45aeb4e6405c58e10d3f0256bf28770f6d3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "What is the reported speedup using MInference on 1M-token prompts with LLaMA-3-8B on a single A100 GPU?",
+ "choices": [
+ "Up to 3×",
+ "Up to 5×",
+ "Up to 8×",
+ "Up to 10×"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the reported speedup using MInference on 1M-token prompts with LLaMA-3-8B on a single A100 GPU?\nAnswer:",
+ " Up to 3×"
+ ],
+ [
+ "Question:What is the reported speedup using MInference on 1M-token prompts with LLaMA-3-8B on a single A100 GPU?\nAnswer:",
+ " Up to 5×"
+ ],
+ [
+ "Question:What is the reported speedup using MInference on 1M-token prompts with LLaMA-3-8B on a single A100 GPU?\nAnswer:",
+ " Up to 8×"
+ ],
+ [
+ "Question:What is the reported speedup using MInference on 1M-token prompts with LLaMA-3-8B on a single A100 GPU?\nAnswer:",
+ " Up to 10×"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.81794548034668,
+ false
+ ]
+ ],
+ [
+ [
+ -19.063770294189453,
+ false
+ ]
+ ],
+ [
+ [
+ -18.887496948242188,
+ false
+ ]
+ ],
+ [
+ [
+ -18.622156143188477,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.81794548034668,
+ false
+ ],
+ [
+ -19.063770294189453,
+ false
+ ],
+ [
+ -18.887496948242188,
+ false
+ ],
+ [
+ -18.622156143188477,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "be1003f886be358b8d164b50e52a8632a02e9892a114e08f9b2a19a29a6ea779",
+ "prompt_hash": "493f78c96da1d5cb7247238dd51eec7334cc3d4421166683f854892037fc3bbd",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "Which method is used in MInference to approximate sparse indices for Block-Sparse heads?",
+ "choices": [
+ "Top-K ranking of global tokens",
+ "Mean pooling of query and key vectors",
+ "Nearest-neighbor clustering",
+ "Random subsampling of attention weights"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which method is used in MInference to approximate sparse indices for Block-Sparse heads?\nAnswer:",
+ " Top-K ranking of global tokens"
+ ],
+ [
+ "Question:Which method is used in MInference to approximate sparse indices for Block-Sparse heads?\nAnswer:",
+ " Mean pooling of query and key vectors"
+ ],
+ [
+ "Question:Which method is used in MInference to approximate sparse indices for Block-Sparse heads?\nAnswer:",
+ " Nearest-neighbor clustering"
+ ],
+ [
+ "Question:Which method is used in MInference to approximate sparse indices for Block-Sparse heads?\nAnswer:",
+ " Random subsampling of attention weights"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.907312393188477,
+ false
+ ]
+ ],
+ [
+ [
+ -30.570072174072266,
+ false
+ ]
+ ],
+ [
+ [
+ -22.7277889251709,
+ false
+ ]
+ ],
+ [
+ [
+ -26.002704620361328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.907312393188477,
+ false
+ ],
+ [
+ -30.570072174072266,
+ false
+ ],
+ [
+ -22.7277889251709,
+ false
+ ],
+ [
+ -26.002704620361328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1ee9007973ea9d762c1d28efd631ea2df296bb5722e13f9b73476089e17f593c",
+ "prompt_hash": "dec85aaaced9973622c82d55bd48a6590d9c4c61c214320bc06f4ecb773982a4",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What was the absolute self-correction gain of the proposed method on reasoning problems from the MATH dataset?",
+ "choices": [
+ "15.6%",
+ "9.1%",
+ "23.0%",
+ "12.2%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What was the absolute self-correction gain of the proposed method on reasoning problems from the MATH dataset?\nAnswer:",
+ " 15.6%"
+ ],
+ [
+ "Question:What was the absolute self-correction gain of the proposed method on reasoning problems from the MATH dataset?\nAnswer:",
+ " 9.1%"
+ ],
+ [
+ "Question:What was the absolute self-correction gain of the proposed method on reasoning problems from the MATH dataset?\nAnswer:",
+ " 23.0%"
+ ],
+ [
+ "Question:What was the absolute self-correction gain of the proposed method on reasoning problems from the MATH dataset?\nAnswer:",
+ " 12.2%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.868279457092285,
+ false
+ ]
+ ],
+ [
+ [
+ -15.192159652709961,
+ false
+ ]
+ ],
+ [
+ [
+ -15.974629402160645,
+ false
+ ]
+ ],
+ [
+ [
+ -15.19686508178711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.868279457092285,
+ false
+ ],
+ [
+ -15.192159652709961,
+ false
+ ],
+ [
+ -15.974629402160645,
+ false
+ ],
+ [
+ -15.19686508178711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f647626b6c2effe8ca7302ca4613cf8129fd899143a80c08ab8f03289e257337",
+ "prompt_hash": "3868ab363e5f76c379bfc768131c3b6ffe214eaae3d6b1244836f37f8ce8a071",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which base model was fine-tuned for experiments on coding problems?",
+ "choices": [
+ "Gemini 1.0 Pro",
+ "Gemini 1.5 Flash",
+ "GPT-3.5",
+ "PaLM 2"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which base model was fine-tuned for experiments on coding problems?\nAnswer:",
+ " Gemini 1.0 Pro"
+ ],
+ [
+ "Question:Which base model was fine-tuned for experiments on coding problems?\nAnswer:",
+ " Gemini 1.5 Flash"
+ ],
+ [
+ "Question:Which base model was fine-tuned for experiments on coding problems?\nAnswer:",
+ " GPT-3.5"
+ ],
+ [
+ "Question:Which base model was fine-tuned for experiments on coding problems?\nAnswer:",
+ " PaLM 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.975496292114258,
+ false
+ ]
+ ],
+ [
+ [
+ -11.706640243530273,
+ false
+ ]
+ ],
+ [
+ [
+ -4.315305233001709,
+ false
+ ]
+ ],
+ [
+ [
+ -9.331165313720703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.975496292114258,
+ false
+ ],
+ [
+ -11.706640243530273,
+ false
+ ],
+ [
+ -4.315305233001709,
+ false
+ ],
+ [
+ -9.331165313720703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b417fc051bd16e505060fabea6737d135a4be1170c992653e9da7ec5ec2a682b",
+ "prompt_hash": "07d264febd521ba3080badaf41a97ae084f718159df7ec066c962b7cc8de4507",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "In Stage I of the training approach, what constraint is applied to the model’s first attempt?",
+ "choices": [
+ "It must maximize accuracy directly",
+ "It is constrained to be close to the base model using a KL-divergence",
+ "It is discarded and only the second attempt is optimized",
+ "It is forced to match ground-truth answers"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In Stage I of the training approach, what constraint is applied to the model’s first attempt?\nAnswer:",
+ " It must maximize accuracy directly"
+ ],
+ [
+ "Question:In Stage I of the training approach, what constraint is applied to the model’s first attempt?\nAnswer:",
+ " It is constrained to be close to the base model using a KL-divergence"
+ ],
+ [
+ "Question:In Stage I of the training approach, what constraint is applied to the model’s first attempt?\nAnswer:",
+ " It is discarded and only the second attempt is optimized"
+ ],
+ [
+ "Question:In Stage I of the training approach, what constraint is applied to the model’s first attempt?\nAnswer:",
+ " It is forced to match ground-truth answers"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.358684539794922,
+ false
+ ]
+ ],
+ [
+ [
+ -41.4800910949707,
+ false
+ ]
+ ],
+ [
+ [
+ -34.299049377441406,
+ false
+ ]
+ ],
+ [
+ [
+ -29.237268447875977,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.358684539794922,
+ false
+ ],
+ [
+ -41.4800910949707,
+ false
+ ],
+ [
+ -34.299049377441406,
+ false
+ ],
+ [
+ -29.237268447875977,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b8c8119741d755b6d2421c475321038ba54dc019dc31248a9d83b976c63b9bed",
+ "prompt_hash": "7f31f11aac28d018d0a6f0802cd3bce644fe5839dd3195d20e3521da243f905c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "What hyperparameter value was used for the learning rate when training the method on the MATH dataset?",
+ "choices": [
+ "5e-6",
+ "1e-5",
+ "1e-4",
+ "5e-5"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What hyperparameter value was used for the learning rate when training the method on the MATH dataset?\nAnswer:",
+ " 5e-6"
+ ],
+ [
+ "Question:What hyperparameter value was used for the learning rate when training the method on the MATH dataset?\nAnswer:",
+ " 1e-5"
+ ],
+ [
+ "Question:What hyperparameter value was used for the learning rate when training the method on the MATH dataset?\nAnswer:",
+ " 1e-4"
+ ],
+ [
+ "Question:What hyperparameter value was used for the learning rate when training the method on the MATH dataset?\nAnswer:",
+ " 5e-5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.413949012756348,
+ false
+ ]
+ ],
+ [
+ [
+ -6.770974636077881,
+ false
+ ]
+ ],
+ [
+ [
+ -6.059501647949219,
+ false
+ ]
+ ],
+ [
+ [
+ -7.30908727645874,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.413949012756348,
+ false
+ ],
+ [
+ -6.770974636077881,
+ false
+ ],
+ [
+ -6.059501647949219,
+ false
+ ],
+ [
+ -7.30908727645874,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "37abbc46b91aca2efa4127a035b6201304e388062228a9add526d282010ccb0f",
+ "prompt_hash": "ec4777367a3cfe0380696c09d06021224bebb270ab0c973687ae04831ce2411c",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "What was the accuracy@t2 of the method on the HumanEval coding benchmark?",
+ "choices": [
+ "52.5%",
+ "54.3%",
+ "56.7%",
+ "64.6%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What was the accuracy@t2 of the method on the HumanEval coding benchmark?\nAnswer:",
+ " 52.5%"
+ ],
+ [
+ "Question:What was the accuracy@t2 of the method on the HumanEval coding benchmark?\nAnswer:",
+ " 54.3%"
+ ],
+ [
+ "Question:What was the accuracy@t2 of the method on the HumanEval coding benchmark?\nAnswer:",
+ " 56.7%"
+ ],
+ [
+ "Question:What was the accuracy@t2 of the method on the HumanEval coding benchmark?\nAnswer:",
+ " 64.6%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.624635696411133,
+ false
+ ]
+ ],
+ [
+ [
+ -14.403515815734863,
+ false
+ ]
+ ],
+ [
+ [
+ -14.236377716064453,
+ false
+ ]
+ ],
+ [
+ [
+ -14.352609634399414,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.624635696411133,
+ false
+ ],
+ [
+ -14.403515815734863,
+ false
+ ],
+ [
+ -14.236377716064453,
+ false
+ ],
+ [
+ -14.352609634399414,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d34e36f1883b08b4e303e1155a8c5e4b00af362834b850e5aa13120ee8e57bb5",
+ "prompt_hash": "9a16d45757cca256ff8ad1d89fa972d6db23ca8bbfb942bab51659565a081b8d",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What is the default number of GPUs per machine (U) used in the auto-parallelism algorithm?",
+ "choices": [
+ "4",
+ "8",
+ "16",
+ "32"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the default number of GPUs per machine (U) used in the auto-parallelism algorithm?\nAnswer:",
+ " 4"
+ ],
+ [
+ "Question:What is the default number of GPUs per machine (U) used in the auto-parallelism algorithm?\nAnswer:",
+ " 8"
+ ],
+ [
+ "Question:What is the default number of GPUs per machine (U) used in the auto-parallelism algorithm?\nAnswer:",
+ " 16"
+ ],
+ [
+ "Question:What is the default number of GPUs per machine (U) used in the auto-parallelism algorithm?\nAnswer:",
+ " 32"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.4775350093841553,
+ false
+ ]
+ ],
+ [
+ [
+ -3.663968801498413,
+ false
+ ]
+ ],
+ [
+ [
+ -5.262546539306641,
+ false
+ ]
+ ],
+ [
+ [
+ -5.171002388000488,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.4775350093841553,
+ false
+ ],
+ [
+ -3.663968801498413,
+ false
+ ],
+ [
+ -5.262546539306641,
+ false
+ ],
+ [
+ -5.171002388000488,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f612f5a0f7dce9c3cab1f9b7264350f535e58c3ff60f197a3ec58f4c3ad32fa7",
+ "prompt_hash": "67a6515518bc1d2f3d9ffa96539cd1f9a1c48faf0b6a78b868320df3db076bd1",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "Which workload type is described as memory-bound in the auto-parallelism algorithm?",
+ "choices": [
+ "Training",
+ "Inference",
+ "Generation",
+ "Backward pass"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which workload type is described as memory-bound in the auto-parallelism algorithm?\nAnswer:",
+ " Training"
+ ],
+ [
+ "Question:Which workload type is described as memory-bound in the auto-parallelism algorithm?\nAnswer:",
+ " Inference"
+ ],
+ [
+ "Question:Which workload type is described as memory-bound in the auto-parallelism algorithm?\nAnswer:",
+ " Generation"
+ ],
+ [
+ "Question:Which workload type is described as memory-bound in the auto-parallelism algorithm?\nAnswer:",
+ " Backward pass"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.63580322265625,
+ false
+ ]
+ ],
+ [
+ [
+ -7.492424011230469,
+ false
+ ]
+ ],
+ [
+ [
+ -9.588844299316406,
+ false
+ ]
+ ],
+ [
+ [
+ -12.772279739379883,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.63580322265625,
+ false
+ ],
+ [
+ -7.492424011230469,
+ false
+ ],
+ [
+ -9.588844299316406,
+ false
+ ],
+ [
+ -12.772279739379883,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1d7916337d09f81d90fd24ab466d07533e48fc1e51f50d4c5f7b39ae5d0a4c43",
+ "prompt_hash": "b30c24ce196072cfa65f45b1664ae3504848f4675842802db20232d1095eabb1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "In RLHF, what operation does the actor model perform during Stage 1 (Generation)?",
+ "choices": [
+ "Compute squared-error loss",
+ "Produce responses from prompts using auto-regressive generation",
+ "Evaluate divergence with the reference policy",
+ "Assign scalar rewards"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In RLHF, what operation does the actor model perform during Stage 1 (Generation)?\nAnswer:",
+ " Compute squared-error loss"
+ ],
+ [
+ "Question:In RLHF, what operation does the actor model perform during Stage 1 (Generation)?\nAnswer:",
+ " Produce responses from prompts using auto-regressive generation"
+ ],
+ [
+ "Question:In RLHF, what operation does the actor model perform during Stage 1 (Generation)?\nAnswer:",
+ " Evaluate divergence with the reference policy"
+ ],
+ [
+ "Question:In RLHF, what operation does the actor model perform during Stage 1 (Generation)?\nAnswer:",
+ " Assign scalar rewards"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.3663330078125,
+ false
+ ]
+ ],
+ [
+ [
+ -35.097373962402344,
+ false
+ ]
+ ],
+ [
+ [
+ -35.44439697265625,
+ false
+ ]
+ ],
+ [
+ [
+ -18.711971282958984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.3663330078125,
+ false
+ ],
+ [
+ -35.097373962402344,
+ false
+ ],
+ [
+ -35.44439697265625,
+ false
+ ],
+ [
+ -18.711971282958984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "25894f47d56bb4ce7d2bca2fa551786ae042ad88121e6af68f653ffb9c286461",
+ "prompt_hash": "0e3494099025b55e286623a7eb4a440a3500f83f64bc70e16f2b9f1aaad7aeac",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "What parallelism strategy does ZeRO optimize?",
+ "choices": [
+ "Pipeline parallelism",
+ "Tensor parallelism",
+ "Data parallelism",
+ "Model offloading"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What parallelism strategy does ZeRO optimize?\nAnswer:",
+ " Pipeline parallelism"
+ ],
+ [
+ "Question:What parallelism strategy does ZeRO optimize?\nAnswer:",
+ " Tensor parallelism"
+ ],
+ [
+ "Question:What parallelism strategy does ZeRO optimize?\nAnswer:",
+ " Data parallelism"
+ ],
+ [
+ "Question:What parallelism strategy does ZeRO optimize?\nAnswer:",
+ " Model offloading"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.252677917480469,
+ false
+ ]
+ ],
+ [
+ [
+ -8.313484191894531,
+ false
+ ]
+ ],
+ [
+ [
+ -8.054891586303711,
+ false
+ ]
+ ],
+ [
+ [
+ -20.16019058227539,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.252677917480469,
+ false
+ ],
+ [
+ -8.313484191894531,
+ false
+ ],
+ [
+ -8.054891586303711,
+ false
+ ],
+ [
+ -20.16019058227539,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "14ad4867fd1a7cf0861481030428370605924da8a0b1bdfef6dcad706397b60e",
+ "prompt_hash": "eb1a8d1f7a2617e8d515800faefd480a234027205dbf2f3ce3be026c087b3bf8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "Which system colocates all models on the same set of devices for RLHF execution?",
+ "choices": [
+ "OpenRLHF",
+ "NeMo-Aligner",
+ "DeepSpeed-Chat",
+ "HybridFlow"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which system colocates all models on the same set of devices for RLHF execution?\nAnswer:",
+ " OpenRLHF"
+ ],
+ [
+ "Question:Which system colocates all models on the same set of devices for RLHF execution?\nAnswer:",
+ " NeMo-Aligner"
+ ],
+ [
+ "Question:Which system colocates all models on the same set of devices for RLHF execution?\nAnswer:",
+ " DeepSpeed-Chat"
+ ],
+ [
+ "Question:Which system colocates all models on the same set of devices for RLHF execution?\nAnswer:",
+ " HybridFlow"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.416034698486328,
+ false
+ ]
+ ],
+ [
+ [
+ -25.671110153198242,
+ false
+ ]
+ ],
+ [
+ [
+ -13.71575927734375,
+ false
+ ]
+ ],
+ [
+ [
+ -17.46190643310547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.416034698486328,
+ false
+ ],
+ [
+ -25.671110153198242,
+ false
+ ],
+ [
+ -13.71575927734375,
+ false
+ ],
+ [
+ -17.46190643310547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b22608c501506d3c57e6cb329f8d20566e5179d924ace4a6fc6c75413cbe34f4",
+ "prompt_hash": "2666f9983d03c6b0a75e6c5668e2439459f3f798b55909a9b1f0154d256c84eb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What is the parameter size of the Helium text language model?",
+ "choices": [
+ "3B",
+ "7B",
+ "13B",
+ "70B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the parameter size of the Helium text language model?\nAnswer:",
+ " 3B"
+ ],
+ [
+ "Question:What is the parameter size of the Helium text language model?\nAnswer:",
+ " 7B"
+ ],
+ [
+ "Question:What is the parameter size of the Helium text language model?\nAnswer:",
+ " 13B"
+ ],
+ [
+ "Question:What is the parameter size of the Helium text language model?\nAnswer:",
+ " 70B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.6070075035095215,
+ false
+ ]
+ ],
+ [
+ [
+ -6.104134559631348,
+ false
+ ]
+ ],
+ [
+ [
+ -7.87722110748291,
+ false
+ ]
+ ],
+ [
+ [
+ -8.18855094909668,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.6070075035095215,
+ false
+ ],
+ [
+ -6.104134559631348,
+ false
+ ],
+ [
+ -7.87722110748291,
+ false
+ ],
+ [
+ -8.18855094909668,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "295a79dec253df87092a645dbb7aca11949e95802697013694a6fefe4ef6fb0f",
+ "prompt_hash": "88a6e62e96d34cc3fdbceaa93f9adfb56c8fc7cd6357984ce3d11b6f81de46b5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which neural audio codec is introduced to encode audio into discrete units?",
+ "choices": [
+ "AudioLM",
+ "EnCodec",
+ "Mimi",
+ "SoundStream"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which neural audio codec is introduced to encode audio into discrete units?\nAnswer:",
+ " AudioLM"
+ ],
+ [
+ "Question:Which neural audio codec is introduced to encode audio into discrete units?\nAnswer:",
+ " EnCodec"
+ ],
+ [
+ "Question:Which neural audio codec is introduced to encode audio into discrete units?\nAnswer:",
+ " Mimi"
+ ],
+ [
+ "Question:Which neural audio codec is introduced to encode audio into discrete units?\nAnswer:",
+ " SoundStream"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.109827041625977,
+ false
+ ]
+ ],
+ [
+ [
+ -10.259915351867676,
+ false
+ ]
+ ],
+ [
+ [
+ -15.565141677856445,
+ false
+ ]
+ ],
+ [
+ [
+ -8.1206693649292,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.109827041625977,
+ false
+ ],
+ [
+ -10.259915351867676,
+ false
+ ],
+ [
+ -15.565141677856445,
+ false
+ ],
+ [
+ -8.1206693649292,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "43046273a2d2929dfdb9fd277f085207ba600a9e1c95cc1d19a4e80097ad625f",
+ "prompt_hash": "16864ae4d828b91f371b7546d2dea0d21184075e15af6c995d72587a4c372ee6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "What theoretical latency is reported for the real-time spoken dialogue system?",
+ "choices": [
+ "80ms",
+ "120ms",
+ "160ms",
+ "230ms"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What theoretical latency is reported for the real-time spoken dialogue system?\nAnswer:",
+ " 80ms"
+ ],
+ [
+ "Question:What theoretical latency is reported for the real-time spoken dialogue system?\nAnswer:",
+ " 120ms"
+ ],
+ [
+ "Question:What theoretical latency is reported for the real-time spoken dialogue system?\nAnswer:",
+ " 160ms"
+ ],
+ [
+ "Question:What theoretical latency is reported for the real-time spoken dialogue system?\nAnswer:",
+ " 230ms"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.884298324584961,
+ false
+ ]
+ ],
+ [
+ [
+ -9.397584915161133,
+ false
+ ]
+ ],
+ [
+ [
+ -10.101129531860352,
+ false
+ ]
+ ],
+ [
+ [
+ -11.414660453796387,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.884298324584961,
+ false
+ ],
+ [
+ -9.397584915161133,
+ false
+ ],
+ [
+ -10.101129531860352,
+ false
+ ],
+ [
+ -11.414660453796387,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b8850f8666028d7b8f55ed2a688a466e983ffda9a1ed39029e5a160dbf58d025",
+ "prompt_hash": "116a2f49d3531f67838d68a074089b4c452bc3eb568b8d8592054d40e1bbfaf3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "What benchmark is adopted to evaluate safety under multiple categories?",
+ "choices": [
+ "SUPERB",
+ "ALERT",
+ "MMLU",
+ "TriviaQA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What benchmark is adopted to evaluate safety under multiple categories?\nAnswer:",
+ " SUPERB"
+ ],
+ [
+ "Question:What benchmark is adopted to evaluate safety under multiple categories?\nAnswer:",
+ " ALERT"
+ ],
+ [
+ "Question:What benchmark is adopted to evaluate safety under multiple categories?\nAnswer:",
+ " MMLU"
+ ],
+ [
+ "Question:What benchmark is adopted to evaluate safety under multiple categories?\nAnswer:",
+ " TriviaQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.114148139953613,
+ false
+ ]
+ ],
+ [
+ [
+ -17.356304168701172,
+ false
+ ]
+ ],
+ [
+ [
+ -10.324151039123535,
+ false
+ ]
+ ],
+ [
+ [
+ -13.553725242614746,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.114148139953613,
+ false
+ ],
+ [
+ -17.356304168701172,
+ false
+ ],
+ [
+ -10.324151039123535,
+ false
+ ],
+ [
+ -13.553725242614746,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0ca451912f9e74fac5218c521b184aa7c06447916cec32fd5d97e838a9996769",
+ "prompt_hash": "a8a2c111e702c31f90d4990bce06e574afe60bd4a866b7c3a99fb16dd02deb62",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "Which method is introduced to improve speech-to-speech generation by predicting text tokens before audio tokens?",
+ "choices": [
+ "Chain-of-Modality",
+ "Parallel Generation",
+ "Interleaving",
+ "Residual Quantization"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which method is introduced to improve speech-to-speech generation by predicting text tokens before audio tokens?\nAnswer:",
+ " Chain-of-Modality"
+ ],
+ [
+ "Question:Which method is introduced to improve speech-to-speech generation by predicting text tokens before audio tokens?\nAnswer:",
+ " Parallel Generation"
+ ],
+ [
+ "Question:Which method is introduced to improve speech-to-speech generation by predicting text tokens before audio tokens?\nAnswer:",
+ " Interleaving"
+ ],
+ [
+ "Question:Which method is introduced to improve speech-to-speech generation by predicting text tokens before audio tokens?\nAnswer:",
+ " Residual Quantization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.59917640686035,
+ false
+ ]
+ ],
+ [
+ [
+ -14.614076614379883,
+ false
+ ]
+ ],
+ [
+ [
+ -15.206499099731445,
+ false
+ ]
+ ],
+ [
+ [
+ -21.050691604614258,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.59917640686035,
+ false
+ ],
+ [
+ -14.614076614379883,
+ false
+ ],
+ [
+ -15.206499099731445,
+ false
+ ],
+ [
+ -21.050691604614258,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a36384f4676d8978afe402e7f8d9b947f3a2a83db5673f38eedfc8e1f5b7a14b",
+ "prompt_hash": "9744f7a13faf7938951b7ec848c88d16aad947fc8ca2eaf7419692e7f13a5cbc",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "How many videos are included in the \\\\DataName dataset?",
+ "choices": [
+ "A. 178,510",
+ "B. 40,000",
+ "C. 900,000",
+ "D. 136 million"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many videos are included in the \\\\DataName dataset?\nAnswer:",
+ " A. 178,510"
+ ],
+ [
+ "Question:How many videos are included in the \\\\DataName dataset?\nAnswer:",
+ " B. 40,000"
+ ],
+ [
+ "Question:How many videos are included in the \\\\DataName dataset?\nAnswer:",
+ " C. 900,000"
+ ],
+ [
+ "Question:How many videos are included in the \\\\DataName dataset?\nAnswer:",
+ " D. 136 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.44942855834961,
+ false
+ ]
+ ],
+ [
+ [
+ -23.27755355834961,
+ false
+ ]
+ ],
+ [
+ [
+ -26.529640197753906,
+ false
+ ]
+ ],
+ [
+ [
+ -31.16094970703125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.44942855834961,
+ false
+ ],
+ [
+ -23.27755355834961,
+ false
+ ],
+ [
+ -26.529640197753906,
+ false
+ ],
+ [
+ -31.16094970703125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0fda4662f1ff0aa970514e5fdee88c432ac56b5b26263747812aa13614a7e8be",
+ "prompt_hash": "e05a2e8b0fc242c5cbb8630ceea6316bb72350bf467322d8cd62ea60708ab0e0",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "What frame sampling rate is used in the \\\\DataName dataset?",
+ "choices": [
+ "A. 0.008 fps",
+ "B. 0.15 fps",
+ "C. 1 fps",
+ "D. 10 fps"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What frame sampling rate is used in the \\\\DataName dataset?\nAnswer:",
+ " A. 0.008 fps"
+ ],
+ [
+ "Question:What frame sampling rate is used in the \\\\DataName dataset?\nAnswer:",
+ " B. 0.15 fps"
+ ],
+ [
+ "Question:What frame sampling rate is used in the \\\\DataName dataset?\nAnswer:",
+ " C. 1 fps"
+ ],
+ [
+ "Question:What frame sampling rate is used in the \\\\DataName dataset?\nAnswer:",
+ " D. 10 fps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.462284088134766,
+ false
+ ]
+ ],
+ [
+ [
+ -26.013099670410156,
+ false
+ ]
+ ],
+ [
+ [
+ -18.49521255493164,
+ false
+ ]
+ ],
+ [
+ [
+ -19.096094131469727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.462284088134766,
+ false
+ ],
+ [
+ -26.013099670410156,
+ false
+ ],
+ [
+ -18.49521255493164,
+ false
+ ],
+ [
+ -19.096094131469727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "08cf43a87aad451e03891dd8f52fd7dfae8127eb484b177c09ec9bd855170d55",
+ "prompt_hash": "9bd3fa5265e2205ee7e9a48d0e0fb0cb57a83361fe54e184b51355af1111300a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "How many question types are defined for generating question-answer pairs in \\\\DataName?",
+ "choices": [
+ "A. 8",
+ "B. 10",
+ "C. 12",
+ "D. 16"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:How many question types are defined for generating question-answer pairs in \\\\DataName?\nAnswer:",
+ " A. 8"
+ ],
+ [
+ "Question:How many question types are defined for generating question-answer pairs in \\\\DataName?\nAnswer:",
+ " B. 10"
+ ],
+ [
+ "Question:How many question types are defined for generating question-answer pairs in \\\\DataName?\nAnswer:",
+ " C. 12"
+ ],
+ [
+ "Question:How many question types are defined for generating question-answer pairs in \\\\DataName?\nAnswer:",
+ " D. 16"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.037141799926758,
+ false
+ ]
+ ],
+ [
+ [
+ -18.426780700683594,
+ false
+ ]
+ ],
+ [
+ [
+ -19.0015869140625,
+ false
+ ]
+ ],
+ [
+ [
+ -20.956581115722656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.037141799926758,
+ false
+ ],
+ [
+ -18.426780700683594,
+ false
+ ],
+ [
+ -19.0015869140625,
+ false
+ ],
+ [
+ -20.956581115722656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "82e2376e9f9d4a079f3834fa42be02a1d9f23fa5015ce69c8c1a39ddfabf8ede",
+ "prompt_hash": "e3ee7893fc0206f90a0deae683266051c043888688f960c70aa659dcf549087b",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "What is the total number of instruction-following samples in the \\\\DataName dataset?",
+ "choices": [
+ "A. 1.3 million",
+ "B. 960,000",
+ "C. 178,000",
+ "D. 215,000"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the total number of instruction-following samples in the \\\\DataName dataset?\nAnswer:",
+ " A. 1.3 million"
+ ],
+ [
+ "Question:What is the total number of instruction-following samples in the \\\\DataName dataset?\nAnswer:",
+ " B. 960,000"
+ ],
+ [
+ "Question:What is the total number of instruction-following samples in the \\\\DataName dataset?\nAnswer:",
+ " C. 178,000"
+ ],
+ [
+ "Question:What is the total number of instruction-following samples in the \\\\DataName dataset?\nAnswer:",
+ " D. 215,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.036428451538086,
+ false
+ ]
+ ],
+ [
+ [
+ -28.441104888916016,
+ false
+ ]
+ ],
+ [
+ [
+ -27.614681243896484,
+ false
+ ]
+ ],
+ [
+ [
+ -28.703224182128906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.036428451538086,
+ false
+ ],
+ [
+ -28.441104888916016,
+ false
+ ],
+ [
+ -27.614681243896484,
+ false
+ ],
+ [
+ -28.703224182128906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f128563c09c7fddc52e38a1b51567a61be91ea0faac794d2e8c55bc39075ccda",
+ "prompt_hash": "7f89cba8f9e1fe131fbecce3bcebe2aec104d7f3f37be4c619240b74381f8fc9",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "Which dataset is reported to have an average sampling rate of 0.15 fps, sometimes sampling only 2 frames from a 30-second video?",
+ "choices": [
+ "A. ShareGPT4Video",
+ "B. LLaVA-Hound",
+ "C. HowTo100M",
+ "D. ACAV-100M"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset is reported to have an average sampling rate of 0.15 fps, sometimes sampling only 2 frames from a 30-second video?\nAnswer:",
+ " A. ShareGPT4Video"
+ ],
+ [
+ "Question:Which dataset is reported to have an average sampling rate of 0.15 fps, sometimes sampling only 2 frames from a 30-second video?\nAnswer:",
+ " B. LLaVA-Hound"
+ ],
+ [
+ "Question:Which dataset is reported to have an average sampling rate of 0.15 fps, sometimes sampling only 2 frames from a 30-second video?\nAnswer:",
+ " C. HowTo100M"
+ ],
+ [
+ "Question:Which dataset is reported to have an average sampling rate of 0.15 fps, sometimes sampling only 2 frames from a 30-second video?\nAnswer:",
+ " D. ACAV-100M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.649900436401367,
+ false
+ ]
+ ],
+ [
+ [
+ -42.51259231567383,
+ false
+ ]
+ ],
+ [
+ [
+ -24.319427490234375,
+ false
+ ]
+ ],
+ [
+ [
+ -43.85147476196289,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.649900436401367,
+ false
+ ],
+ [
+ -42.51259231567383,
+ false
+ ],
+ [
+ -24.319427490234375,
+ false
+ ],
+ [
+ -43.85147476196289,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "91ef16f651f4594ab7a458e54ea4022facbb0e5c3631264f316b197bae204fdd",
+ "prompt_hash": "ea07f7b02166866b6f0032e0c9168d65d23f09c6eed5c894629afaea30d2b9b7",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "How many parameters does the 0.6B version of the model contain?",
+ "choices": [
+ "1152M",
+ "590M",
+ "2240M",
+ "1604M"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many parameters does the 0.6B version of the model contain?\nAnswer:",
+ " 1152M"
+ ],
+ [
+ "Question:How many parameters does the 0.6B version of the model contain?\nAnswer:",
+ " 590M"
+ ],
+ [
+ "Question:How many parameters does the 0.6B version of the model contain?\nAnswer:",
+ " 2240M"
+ ],
+ [
+ "Question:How many parameters does the 0.6B version of the model contain?\nAnswer:",
+ " 1604M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.291555404663086,
+ false
+ ]
+ ],
+ [
+ [
+ -10.522879600524902,
+ false
+ ]
+ ],
+ [
+ [
+ -16.00899887084961,
+ false
+ ]
+ ],
+ [
+ [
+ -16.75801658630371,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.291555404663086,
+ false
+ ],
+ [
+ -10.522879600524902,
+ false
+ ],
+ [
+ -16.00899887084961,
+ false
+ ],
+ [
+ -16.75801658630371,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a4761b93b20496334d111187f778f76dfea66671563930bea6e0b3980c216e20",
+ "prompt_hash": "14882c4529bd7fe9c8ee9d792e71cfb63a0c12ca8a2bcec7afb3bfdba8d5d00a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "Which dataset contains 30K images from Midjourney and is used for evaluating FID and Clip Score?",
+ "choices": [
+ "ImageNet-1K",
+ "MSCOCO",
+ "MJHQ-30K",
+ "DPG-Bench"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset contains 30K images from Midjourney and is used for evaluating FID and Clip Score?\nAnswer:",
+ " ImageNet-1K"
+ ],
+ [
+ "Question:Which dataset contains 30K images from Midjourney and is used for evaluating FID and Clip Score?\nAnswer:",
+ " MSCOCO"
+ ],
+ [
+ "Question:Which dataset contains 30K images from Midjourney and is used for evaluating FID and Clip Score?\nAnswer:",
+ " MJHQ-30K"
+ ],
+ [
+ "Question:Which dataset contains 30K images from Midjourney and is used for evaluating FID and Clip Score?\nAnswer:",
+ " DPG-Bench"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.996962070465088,
+ false
+ ]
+ ],
+ [
+ [
+ -9.08751106262207,
+ false
+ ]
+ ],
+ [
+ [
+ -22.040189743041992,
+ false
+ ]
+ ],
+ [
+ [
+ -22.54903793334961,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.996962070465088,
+ false
+ ],
+ [
+ -9.08751106262207,
+ false
+ ],
+ [
+ -22.040189743041992,
+ false
+ ],
+ [
+ -22.54903793334961,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "47b0bbebc2ea01a95a6021dfa70c6f6543afdbccfcee49014c890c3b647ddbb9",
+ "prompt_hash": "fc97e1336510e8fe920082f9a2bc83ac3e73e2c24d4c22c872b4669e00d5f1e3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "What is the depth (number of layers) of the 1.6B version of the model?",
+ "choices": [
+ "28",
+ "36",
+ "20",
+ "32"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the depth (number of layers) of the 1.6B version of the model?\nAnswer:",
+ " 28"
+ ],
+ [
+ "Question:What is the depth (number of layers) of the 1.6B version of the model?\nAnswer:",
+ " 36"
+ ],
+ [
+ "Question:What is the depth (number of layers) of the 1.6B version of the model?\nAnswer:",
+ " 20"
+ ],
+ [
+ "Question:What is the depth (number of layers) of the 1.6B version of the model?\nAnswer:",
+ " 32"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.322317123413086,
+ false
+ ]
+ ],
+ [
+ [
+ -6.984606742858887,
+ false
+ ]
+ ],
+ [
+ [
+ -5.454815864562988,
+ false
+ ]
+ ],
+ [
+ [
+ -5.265756607055664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.322317123413086,
+ false
+ ],
+ [
+ -6.984606742858887,
+ false
+ ],
+ [
+ -5.454815864562988,
+ false
+ ],
+ [
+ -5.265756607055664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d283b2c2f551cd9a4491d5d44ffb10ddc54033ecfdcbe377a306d7ce6d105f13",
+ "prompt_hash": "f9e760f45616b073e48293f49d2ea32c9244abe3751176a0834a1a204b0a5391",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "Which evaluation metric assesses human preference performance and includes 100 prompts?",
+ "choices": [
+ "GenEval",
+ "FID",
+ "ImageReward",
+ "Clip Score"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which evaluation metric assesses human preference performance and includes 100 prompts?\nAnswer:",
+ " GenEval"
+ ],
+ [
+ "Question:Which evaluation metric assesses human preference performance and includes 100 prompts?\nAnswer:",
+ " FID"
+ ],
+ [
+ "Question:Which evaluation metric assesses human preference performance and includes 100 prompts?\nAnswer:",
+ " ImageReward"
+ ],
+ [
+ "Question:Which evaluation metric assesses human preference performance and includes 100 prompts?\nAnswer:",
+ " Clip Score"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.850953102111816,
+ false
+ ]
+ ],
+ [
+ [
+ -7.501878261566162,
+ false
+ ]
+ ],
+ [
+ [
+ -11.249866485595703,
+ false
+ ]
+ ],
+ [
+ [
+ -14.445904731750488,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.850953102111816,
+ false
+ ],
+ [
+ -7.501878261566162,
+ false
+ ],
+ [
+ -11.249866485595703,
+ false
+ ],
+ [
+ -14.445904731750488,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b1c842171a30cabea8a0daa58584624e1982962bfeabe9757318a71179c49389",
+ "prompt_hash": "75cc4f9f1859d330acf6b765f1cb11c2974f5c217b2ea2829083badbb4a07185",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "When replacing full attention with linear attention using AE-F8C4P2, what happens to latency?",
+ "choices": [
+ "Increases from 1931ms to 2250ms",
+ "Reduces from 2250ms to 1931ms",
+ "Remains constant at 2250ms",
+ "Remains constant at 1931ms"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:When replacing full attention with linear attention using AE-F8C4P2, what happens to latency?\nAnswer:",
+ " Increases from 1931ms to 2250ms"
+ ],
+ [
+ "Question:When replacing full attention with linear attention using AE-F8C4P2, what happens to latency?\nAnswer:",
+ " Reduces from 2250ms to 1931ms"
+ ],
+ [
+ "Question:When replacing full attention with linear attention using AE-F8C4P2, what happens to latency?\nAnswer:",
+ " Remains constant at 2250ms"
+ ],
+ [
+ "Question:When replacing full attention with linear attention using AE-F8C4P2, what happens to latency?\nAnswer:",
+ " Remains constant at 1931ms"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.620426177978516,
+ false
+ ]
+ ],
+ [
+ [
+ -32.93737030029297,
+ false
+ ]
+ ],
+ [
+ [
+ -28.212650299072266,
+ false
+ ]
+ ],
+ [
+ [
+ -29.66581916809082,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.620426177978516,
+ false
+ ],
+ [
+ -32.93737030029297,
+ false
+ ],
+ [
+ -28.212650299072266,
+ false
+ ],
+ [
+ -29.66581916809082,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "820644bfcd2dc3aa158a97ab3742cb3b502046a277e8e05c499e6791d335730b",
+ "prompt_hash": "52f48f53d1dea326532a265611d26026a39424eef577534ac9a7d91b62926f97",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the main architectural simplification that makes the method 27% faster than LocoTrack?",
+ "choices": [
+ "The use of 3D convolution for feature aggregation",
+ "A simplified MLP to process 4D correlation features",
+ "The removal of Fourier encoding in track embeddings",
+ "The integration of optical flow refinement modules"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main architectural simplification that makes the method 27% faster than LocoTrack?\nAnswer:",
+ " The use of 3D convolution for feature aggregation"
+ ],
+ [
+ "Question:What is the main architectural simplification that makes the method 27% faster than LocoTrack?\nAnswer:",
+ " A simplified MLP to process 4D correlation features"
+ ],
+ [
+ "Question:What is the main architectural simplification that makes the method 27% faster than LocoTrack?\nAnswer:",
+ " The removal of Fourier encoding in track embeddings"
+ ],
+ [
+ "Question:What is the main architectural simplification that makes the method 27% faster than LocoTrack?\nAnswer:",
+ " The integration of optical flow refinement modules"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.528322219848633,
+ false
+ ]
+ ],
+ [
+ [
+ -49.46475601196289,
+ false
+ ]
+ ],
+ [
+ [
+ -44.16676330566406,
+ false
+ ]
+ ],
+ [
+ [
+ -33.746856689453125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.528322219848633,
+ false
+ ],
+ [
+ -49.46475601196289,
+ false
+ ],
+ [
+ -44.16676330566406,
+ false
+ ],
+ [
+ -33.746856689453125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "85e26dc0e27fe3b1dfcc11f0663c09675a0372c7d6e26e9e33790b5f9e0e702e",
+ "prompt_hash": "f72f4336249fca531698c3403b55235f59beb77b5ba270ac8e97493c4efa36c0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "How many real videos does the proposed method use to outperform BootsTAPIR?",
+ "choices": [
+ "15 billion",
+ "15 million",
+ "15 thousand",
+ "1.5 million"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many real videos does the proposed method use to outperform BootsTAPIR?\nAnswer:",
+ " 15 billion"
+ ],
+ [
+ "Question:How many real videos does the proposed method use to outperform BootsTAPIR?\nAnswer:",
+ " 15 million"
+ ],
+ [
+ "Question:How many real videos does the proposed method use to outperform BootsTAPIR?\nAnswer:",
+ " 15 thousand"
+ ],
+ [
+ "Question:How many real videos does the proposed method use to outperform BootsTAPIR?\nAnswer:",
+ " 1.5 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.632142066955566,
+ false
+ ]
+ ],
+ [
+ [
+ -12.80514907836914,
+ false
+ ]
+ ],
+ [
+ [
+ -14.469340324401855,
+ false
+ ]
+ ],
+ [
+ [
+ -11.69805908203125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.632142066955566,
+ false
+ ],
+ [
+ -12.80514907836914,
+ false
+ ],
+ [
+ -14.469340324401855,
+ false
+ ],
+ [
+ -11.69805908203125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "30dca43e6d67cfa022d80dec0a71ed2d08cc4128cb249ae5a5b2ba1c2ed39b69",
+ "prompt_hash": "d236ad1ed85bba8b379b7cdcfb1b7270884351d9aee04d2796646686f9e6d2bc",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "Which teacher models are used to generate pseudo-labels in the student training protocol?",
+ "choices": [
+ "RAFT, PIPs++, and SuperPoint",
+ "TAPIR, CoTracker, method online and method offline",
+ "MAST, TAPTR, and LightGlue",
+ "VGGSfM, PointOdyssey, and DISK"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which teacher models are used to generate pseudo-labels in the student training protocol?\nAnswer:",
+ " RAFT, PIPs++, and SuperPoint"
+ ],
+ [
+ "Question:Which teacher models are used to generate pseudo-labels in the student training protocol?\nAnswer:",
+ " TAPIR, CoTracker, method online and method offline"
+ ],
+ [
+ "Question:Which teacher models are used to generate pseudo-labels in the student training protocol?\nAnswer:",
+ " MAST, TAPTR, and LightGlue"
+ ],
+ [
+ "Question:Which teacher models are used to generate pseudo-labels in the student training protocol?\nAnswer:",
+ " VGGSfM, PointOdyssey, and DISK"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -52.90093231201172,
+ false
+ ]
+ ],
+ [
+ [
+ -59.762210845947266,
+ false
+ ]
+ ],
+ [
+ [
+ -49.665283203125,
+ false
+ ]
+ ],
+ [
+ [
+ -56.55097961425781,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -52.90093231201172,
+ false
+ ],
+ [
+ -59.762210845947266,
+ false
+ ],
+ [
+ -49.665283203125,
+ false
+ ],
+ [
+ -56.55097961425781,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e7096069f795a6b31354d56171bab7cb64e9729dc77a21a7023c3f21fbe830b0",
+ "prompt_hash": "4c8a81ecb2d25b0ecf479c4c24bc416df2057eb1ddeb420626479cc5a847f079",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "What type of videos are primarily used in the large-scale dataset for training with pseudo-labels?",
+ "choices": [
+ "Synthetic videos of static indoor scenes",
+ "Videos of computer-generated natural phenomena",
+ "Internet-like videos of humans and animals",
+ "Labeled surveillance videos from street cameras"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of videos are primarily used in the large-scale dataset for training with pseudo-labels?\nAnswer:",
+ " Synthetic videos of static indoor scenes"
+ ],
+ [
+ "Question:What type of videos are primarily used in the large-scale dataset for training with pseudo-labels?\nAnswer:",
+ " Videos of computer-generated natural phenomena"
+ ],
+ [
+ "Question:What type of videos are primarily used in the large-scale dataset for training with pseudo-labels?\nAnswer:",
+ " Internet-like videos of humans and animals"
+ ],
+ [
+ "Question:What type of videos are primarily used in the large-scale dataset for training with pseudo-labels?\nAnswer:",
+ " Labeled surveillance videos from street cameras"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.919666290283203,
+ false
+ ]
+ ],
+ [
+ [
+ -31.976137161254883,
+ false
+ ]
+ ],
+ [
+ [
+ -31.44933319091797,
+ false
+ ]
+ ],
+ [
+ [
+ -32.28932571411133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.919666290283203,
+ false
+ ],
+ [
+ -31.976137161254883,
+ false
+ ],
+ [
+ -31.44933319091797,
+ false
+ ],
+ [
+ -32.28932571411133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "77d962a9d88756c197df6db26cb0ed6c97ac99c1f27d634b07cff078c08e3a2d",
+ "prompt_hash": "e272316b8094350cdcb23a77e849572f4541ca0a2b1dd54b397b2fff3b54db05",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "Which metric measures both tracking and occlusion prediction accuracy together?",
+ "choices": [
+ "Occlusion Accuracy (OA)",
+ "Average Jaccard (AJ)",
+ "Average Displacement for Visible Points",
+ "Confidence Threshold Score"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which metric measures both tracking and occlusion prediction accuracy together?\nAnswer:",
+ " Occlusion Accuracy (OA)"
+ ],
+ [
+ "Question:Which metric measures both tracking and occlusion prediction accuracy together?\nAnswer:",
+ " Average Jaccard (AJ)"
+ ],
+ [
+ "Question:Which metric measures both tracking and occlusion prediction accuracy together?\nAnswer:",
+ " Average Displacement for Visible Points"
+ ],
+ [
+ "Question:Which metric measures both tracking and occlusion prediction accuracy together?\nAnswer:",
+ " Confidence Threshold Score"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.50698471069336,
+ false
+ ]
+ ],
+ [
+ [
+ -15.57904052734375,
+ false
+ ]
+ ],
+ [
+ [
+ -29.477798461914062,
+ false
+ ]
+ ],
+ [
+ [
+ -17.279052734375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.50698471069336,
+ false
+ ],
+ [
+ -15.57904052734375,
+ false
+ ],
+ [
+ -29.477798461914062,
+ false
+ ],
+ [
+ -17.279052734375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5b3399c26f3ef69cd385333b0e5bdc026bd5a64550372075f4e5fffebb9cb69d",
+ "prompt_hash": "9ced7ba0deba30498839b18d23a59085f5cf39c21d548e34267f77208b17eade",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What is the resolution of images used in the main visualization examples of Janus?",
+ "choices": [
+ "256 × 256",
+ "384 × 384",
+ "512 × 512",
+ "1024 × 1024"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the resolution of images used in the main visualization examples of Janus?\nAnswer:",
+ " 256 × 256"
+ ],
+ [
+ "Question:What is the resolution of images used in the main visualization examples of Janus?\nAnswer:",
+ " 384 × 384"
+ ],
+ [
+ "Question:What is the resolution of images used in the main visualization examples of Janus?\nAnswer:",
+ " 512 × 512"
+ ],
+ [
+ "Question:What is the resolution of images used in the main visualization examples of Janus?\nAnswer:",
+ " 1024 × 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.799862861633301,
+ false
+ ]
+ ],
+ [
+ [
+ -10.63082504272461,
+ false
+ ]
+ ],
+ [
+ [
+ -8.216829299926758,
+ false
+ ]
+ ],
+ [
+ [
+ -8.296860694885254,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.799862861633301,
+ false
+ ],
+ [
+ -10.63082504272461,
+ false
+ ],
+ [
+ -8.216829299926758,
+ false
+ ],
+ [
+ -8.296860694885254,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "08275decf2faf58dfa291473ce53e1cee174d18aa5857c75541400d82863e845",
+ "prompt_hash": "4c3b81178c9839409766d7953ec4c181088f4afbf8459303d49eaec3b2600f82",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "Which model does Janus use as its base large language model (LLM)?",
+ "choices": [
+ "Qwen-VL",
+ "GPT-Neo",
+ "DeepSeek-LLM",
+ "LLaMA 2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model does Janus use as its base large language model (LLM)?\nAnswer:",
+ " Qwen-VL"
+ ],
+ [
+ "Question:Which model does Janus use as its base large language model (LLM)?\nAnswer:",
+ " GPT-Neo"
+ ],
+ [
+ "Question:Which model does Janus use as its base large language model (LLM)?\nAnswer:",
+ " DeepSeek-LLM"
+ ],
+ [
+ "Question:Which model does Janus use as its base large language model (LLM)?\nAnswer:",
+ " LLaMA 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.289318084716797,
+ false
+ ]
+ ],
+ [
+ [
+ -8.6356201171875,
+ false
+ ]
+ ],
+ [
+ [
+ -12.277383804321289,
+ false
+ ]
+ ],
+ [
+ [
+ -10.94096851348877,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.289318084716797,
+ false
+ ],
+ [
+ -8.6356201171875,
+ false
+ ],
+ [
+ -12.277383804321289,
+ false
+ ],
+ [
+ -10.94096851348877,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "09a112fdcf77b0745cd5d3b4f4d0133d042b7a76e9a26c7bb6113d69dbab6d4c",
+ "prompt_hash": "b6d3b003f088781b3137314937470a4a50e04c438b85653d0a77596b8529a21e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "What is the FID score achieved by Janus on the MSCOCO-30K benchmark?",
+ "choices": [
+ "10.39",
+ "9.24",
+ "8.53",
+ "7.32"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the FID score achieved by Janus on the MSCOCO-30K benchmark?\nAnswer:",
+ " 10.39"
+ ],
+ [
+ "Question:What is the FID score achieved by Janus on the MSCOCO-30K benchmark?\nAnswer:",
+ " 9.24"
+ ],
+ [
+ "Question:What is the FID score achieved by Janus on the MSCOCO-30K benchmark?\nAnswer:",
+ " 8.53"
+ ],
+ [
+ "Question:What is the FID score achieved by Janus on the MSCOCO-30K benchmark?\nAnswer:",
+ " 7.32"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.242629051208496,
+ false
+ ]
+ ],
+ [
+ [
+ -11.04965591430664,
+ false
+ ]
+ ],
+ [
+ [
+ -11.016393661499023,
+ false
+ ]
+ ],
+ [
+ [
+ -11.18939208984375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.242629051208496,
+ false
+ ],
+ [
+ -11.04965591430664,
+ false
+ ],
+ [
+ -11.016393661499023,
+ false
+ ],
+ [
+ -11.18939208984375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6a08db5d8ac2bb1254553eb0da0ea2d3691559010c970be56df0c44c97c78ab4",
+ "prompt_hash": "a8e79602f14e078b6a6b23461115e4993d68ac4f95fe9896c64d905c2d2337be",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "How many attention heads does the semantic decoder in the ablation study have?",
+ "choices": [
+ "8",
+ "10",
+ "12",
+ "16"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many attention heads does the semantic decoder in the ablation study have?\nAnswer:",
+ " 8"
+ ],
+ [
+ "Question:How many attention heads does the semantic decoder in the ablation study have?\nAnswer:",
+ " 10"
+ ],
+ [
+ "Question:How many attention heads does the semantic decoder in the ablation study have?\nAnswer:",
+ " 12"
+ ],
+ [
+ "Question:How many attention heads does the semantic decoder in the ablation study have?\nAnswer:",
+ " 16"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.614625930786133,
+ false
+ ]
+ ],
+ [
+ [
+ -7.19932746887207,
+ false
+ ]
+ ],
+ [
+ [
+ -5.028623580932617,
+ false
+ ]
+ ],
+ [
+ [
+ -5.395282745361328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.614625930786133,
+ false
+ ],
+ [
+ -7.19932746887207,
+ false
+ ],
+ [
+ -5.028623580932617,
+ false
+ ],
+ [
+ -5.395282745361328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "97eddd54ac52372dd9747fe6ede0c383a8a2aea0a608d85cdd1c94fa817d7c6d",
+ "prompt_hash": "a35a7ec64f3da7478f8048930b42444873cc40ec2b9963fea585728aaee40284",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "How many nodes and GPUs were used in the full training process of Janus?",
+ "choices": [
+ "8 nodes with 4 GPUs each",
+ "16 nodes with 8 GPUs each",
+ "32 nodes with 2 GPUs each",
+ "4 nodes with 16 GPUs each"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many nodes and GPUs were used in the full training process of Janus?\nAnswer:",
+ " 8 nodes with 4 GPUs each"
+ ],
+ [
+ "Question:How many nodes and GPUs were used in the full training process of Janus?\nAnswer:",
+ " 16 nodes with 8 GPUs each"
+ ],
+ [
+ "Question:How many nodes and GPUs were used in the full training process of Janus?\nAnswer:",
+ " 32 nodes with 2 GPUs each"
+ ],
+ [
+ "Question:How many nodes and GPUs were used in the full training process of Janus?\nAnswer:",
+ " 4 nodes with 16 GPUs each"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.610118865966797,
+ false
+ ]
+ ],
+ [
+ [
+ -17.693458557128906,
+ false
+ ]
+ ],
+ [
+ [
+ -16.693805694580078,
+ false
+ ]
+ ],
+ [
+ [
+ -17.05245590209961,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.610118865966797,
+ false
+ ],
+ [
+ -17.693458557128906,
+ false
+ ],
+ [
+ -16.693805694580078,
+ false
+ ],
+ [
+ -17.05245590209961,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f674a2e6a1bb759c66f647721dda1ebcea5048921cce40120a2cf90e4695798f",
+ "prompt_hash": "a608a708c7e2c33240e761f0d73ad14f178f9cbf67b494a220b664d8f16ec08c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What does the C3k2 block in YOLOv11 replace from previous versions?",
+ "choices": [
+ "CSP block",
+ "CBS block",
+ "C2f block",
+ "C3 block"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the C3k2 block in YOLOv11 replace from previous versions?\nAnswer:",
+ " CSP block"
+ ],
+ [
+ "Question:What does the C3k2 block in YOLOv11 replace from previous versions?\nAnswer:",
+ " CBS block"
+ ],
+ [
+ "Question:What does the C3k2 block in YOLOv11 replace from previous versions?\nAnswer:",
+ " C2f block"
+ ],
+ [
+ "Question:What does the C3k2 block in YOLOv11 replace from previous versions?\nAnswer:",
+ " C3 block"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.633159637451172,
+ false
+ ]
+ ],
+ [
+ [
+ -16.662315368652344,
+ false
+ ]
+ ],
+ [
+ [
+ -12.172492980957031,
+ false
+ ]
+ ],
+ [
+ [
+ -7.113786220550537,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.633159637451172,
+ false
+ ],
+ [
+ -16.662315368652344,
+ false
+ ],
+ [
+ -12.172492980957031,
+ false
+ ],
+ [
+ -7.113786220550537,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5076961b809c42258c80aa58f12d0097ed42b99ed43ef50190f915a71c4b8416",
+ "prompt_hash": "b7135c8dbb3db09bcc7e1dd949c1bbdce2eb9be903a99350a8bc227231ed6b0b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "Which YOLOv11 component is responsible for generating the final object detection predictions?",
+ "choices": [
+ "Backbone",
+ "Neck",
+ "Head",
+ "C2PSA"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which YOLOv11 component is responsible for generating the final object detection predictions?\nAnswer:",
+ " Backbone"
+ ],
+ [
+ "Question:Which YOLOv11 component is responsible for generating the final object detection predictions?\nAnswer:",
+ " Neck"
+ ],
+ [
+ "Question:Which YOLOv11 component is responsible for generating the final object detection predictions?\nAnswer:",
+ " Head"
+ ],
+ [
+ "Question:Which YOLOv11 component is responsible for generating the final object detection predictions?\nAnswer:",
+ " C2PSA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.064074516296387,
+ false
+ ]
+ ],
+ [
+ [
+ -7.961186408996582,
+ false
+ ]
+ ],
+ [
+ [
+ -4.5736188888549805,
+ false
+ ]
+ ],
+ [
+ [
+ -28.57439422607422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.064074516296387,
+ false
+ ],
+ [
+ -7.961186408996582,
+ false
+ ],
+ [
+ -4.5736188888549805,
+ false
+ ],
+ [
+ -28.57439422607422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "74c4acd48e33b31d2db4dcce90783d71007a901dd9550689dd6404b689183fa6",
+ "prompt_hash": "d561ea0b79eb2ffdb1d0fbbfa7120a55d977134eb76585649b70a53cffbffd61",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "Which YOLO version introduced consistent dual assignments for NMS-free training?",
+ "choices": [
+ "YOLOv8",
+ "YOLOv9",
+ "YOLOv10",
+ "YOLOv11"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which YOLO version introduced consistent dual assignments for NMS-free training?\nAnswer:",
+ " YOLOv8"
+ ],
+ [
+ "Question:Which YOLO version introduced consistent dual assignments for NMS-free training?\nAnswer:",
+ " YOLOv9"
+ ],
+ [
+ "Question:Which YOLO version introduced consistent dual assignments for NMS-free training?\nAnswer:",
+ " YOLOv10"
+ ],
+ [
+ "Question:Which YOLO version introduced consistent dual assignments for NMS-free training?\nAnswer:",
+ " YOLOv11"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.006664276123047,
+ false
+ ]
+ ],
+ [
+ [
+ -7.727287292480469,
+ false
+ ]
+ ],
+ [
+ [
+ -10.3282470703125,
+ false
+ ]
+ ],
+ [
+ [
+ -12.71410846710205,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.006664276123047,
+ false
+ ],
+ [
+ -7.727287292480469,
+ false
+ ],
+ [
+ -10.3282470703125,
+ false
+ ],
+ [
+ -12.71410846710205,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "782bc04b40fdf646e23da0df3c4d456db2841d31c48d7f728473473a9d4eefd3",
+ "prompt_hash": "88b8f0a208713be8321190755c8a091359e89d20385829a8866f058617bd1246",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "What task is the YOLOv11-obb variant specifically designed for?",
+ "choices": [
+ "Pose Estimation",
+ "Oriented Object Detection",
+ "Instance Segmentation",
+ "Image Classification"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What task is the YOLOv11-obb variant specifically designed for?\nAnswer:",
+ " Pose Estimation"
+ ],
+ [
+ "Question:What task is the YOLOv11-obb variant specifically designed for?\nAnswer:",
+ " Oriented Object Detection"
+ ],
+ [
+ "Question:What task is the YOLOv11-obb variant specifically designed for?\nAnswer:",
+ " Instance Segmentation"
+ ],
+ [
+ "Question:What task is the YOLOv11-obb variant specifically designed for?\nAnswer:",
+ " Image Classification"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.559854507446289,
+ false
+ ]
+ ],
+ [
+ [
+ -12.302038192749023,
+ false
+ ]
+ ],
+ [
+ [
+ -9.71845531463623,
+ false
+ ]
+ ],
+ [
+ [
+ -10.004639625549316,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.559854507446289,
+ false
+ ],
+ [
+ -12.302038192749023,
+ false
+ ],
+ [
+ -9.71845531463623,
+ false
+ ],
+ [
+ -10.004639625549316,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2362c80e349c52b80c72e0f5e575c2435ec9f5680e2fb7a386a2a533cc52b3ad",
+ "prompt_hash": "13ec62143491a215a0f7c97502a13fb9a5363536bd5328eae8b7d42f4bfb7250",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "How much fewer parameters does YOLOv11m use compared to YOLOv8m while achieving superior mAP?",
+ "choices": [
+ "10%",
+ "18%",
+ "22%",
+ "30%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How much fewer parameters does YOLOv11m use compared to YOLOv8m while achieving superior mAP?\nAnswer:",
+ " 10%"
+ ],
+ [
+ "Question:How much fewer parameters does YOLOv11m use compared to YOLOv8m while achieving superior mAP?\nAnswer:",
+ " 18%"
+ ],
+ [
+ "Question:How much fewer parameters does YOLOv11m use compared to YOLOv8m while achieving superior mAP?\nAnswer:",
+ " 22%"
+ ],
+ [
+ "Question:How much fewer parameters does YOLOv11m use compared to YOLOv8m while achieving superior mAP?\nAnswer:",
+ " 30%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.356922149658203,
+ false
+ ]
+ ],
+ [
+ [
+ -13.9075927734375,
+ false
+ ]
+ ],
+ [
+ [
+ -14.149547576904297,
+ false
+ ]
+ ],
+ [
+ [
+ -13.93923568725586,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.356922149658203,
+ false
+ ],
+ [
+ -13.9075927734375,
+ false
+ ],
+ [
+ -14.149547576904297,
+ false
+ ],
+ [
+ -13.93923568725586,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ed2455f30c263a79e1b14b6460eb0dc88c2f48ba69a9945217c4cd71079266ff",
+ "prompt_hash": "05f7d4beae3f3e039c97fe7b7862d7965444171656fd42e43210013ab83c0b5e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "Which stage in the predictive model hierarchy is characterized by the ability to generate actionable videos?",
+ "choices": [
+ "A. S0",
+ "B. S1",
+ "C. S2",
+ "D. S3"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which stage in the predictive model hierarchy is characterized by the ability to generate actionable videos?\nAnswer:",
+ " A. S0"
+ ],
+ [
+ "Question:Which stage in the predictive model hierarchy is characterized by the ability to generate actionable videos?\nAnswer:",
+ " B. S1"
+ ],
+ [
+ "Question:Which stage in the predictive model hierarchy is characterized by the ability to generate actionable videos?\nAnswer:",
+ " C. S2"
+ ],
+ [
+ "Question:Which stage in the predictive model hierarchy is characterized by the ability to generate actionable videos?\nAnswer:",
+ " D. S3"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.10530662536621,
+ false
+ ]
+ ],
+ [
+ [
+ -19.845218658447266,
+ false
+ ]
+ ],
+ [
+ [
+ -21.168285369873047,
+ false
+ ]
+ ],
+ [
+ [
+ -21.69548797607422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.10530662536621,
+ false
+ ],
+ [
+ -19.845218658447266,
+ false
+ ],
+ [
+ -21.168285369873047,
+ false
+ ],
+ [
+ -21.69548797607422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1e0d10a547609c9ddd142bfcb86a301eb7d6bdfa579ede13d2b137378097532c",
+ "prompt_hash": "5d1e1c6ae3e6a61a17ea040689e1fe031915e198af7a4ab2d9e77076669f6ee4",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "What simulation environment is used for the evaluation of predictive models in the \\u2018\\abarm\\u2019 scenario?",
+ "choices": [
+ "A. CARLA",
+ "B. Calvin",
+ "C. Habitat",
+ "D. MineRL"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What simulation environment is used for the evaluation of predictive models in the \\u2018\\abarm\\u2019 scenario?\nAnswer:",
+ " A. CARLA"
+ ],
+ [
+ "Question:What simulation environment is used for the evaluation of predictive models in the \\u2018\\abarm\\u2019 scenario?\nAnswer:",
+ " B. Calvin"
+ ],
+ [
+ "Question:What simulation environment is used for the evaluation of predictive models in the \\u2018\\abarm\\u2019 scenario?\nAnswer:",
+ " C. Habitat"
+ ],
+ [
+ "Question:What simulation environment is used for the evaluation of predictive models in the \\u2018\\abarm\\u2019 scenario?\nAnswer:",
+ " D. MineRL"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.005578994750977,
+ false
+ ]
+ ],
+ [
+ [
+ -24.09957504272461,
+ false
+ ]
+ ],
+ [
+ [
+ -20.01169204711914,
+ false
+ ]
+ ],
+ [
+ [
+ -31.064380645751953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.005578994750977,
+ false
+ ],
+ [
+ -24.09957504272461,
+ false
+ ],
+ [
+ -20.01169204711914,
+ false
+ ],
+ [
+ -31.064380645751953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f67a8549dcd2b8979f1de1e9580290429e1de35d629105905b3335e18f414831",
+ "prompt_hash": "ad95fec7874f6e14104bc5e0b9893ff429528f30f46d222389a546536e555e70",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "Which benchmark uses 'Human Judgement' as its evaluation strategy and operates at Stage S0?",
+ "choices": [
+ "A. EvalCrafter",
+ "B. VBench",
+ "C. AgentBench",
+ "D. LEGO"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which benchmark uses 'Human Judgement' as its evaluation strategy and operates at Stage S0?\nAnswer:",
+ " A. EvalCrafter"
+ ],
+ [
+ "Question:Which benchmark uses 'Human Judgement' as its evaluation strategy and operates at Stage S0?\nAnswer:",
+ " B. VBench"
+ ],
+ [
+ "Question:Which benchmark uses 'Human Judgement' as its evaluation strategy and operates at Stage S0?\nAnswer:",
+ " C. AgentBench"
+ ],
+ [
+ "Question:Which benchmark uses 'Human Judgement' as its evaluation strategy and operates at Stage S0?\nAnswer:",
+ " D. LEGO"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.232826232910156,
+ false
+ ]
+ ],
+ [
+ [
+ -22.290088653564453,
+ false
+ ]
+ ],
+ [
+ [
+ -18.042863845825195,
+ false
+ ]
+ ],
+ [
+ [
+ -19.464723587036133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.232826232910156,
+ false
+ ],
+ [
+ -22.290088653564453,
+ false
+ ],
+ [
+ -18.042863845825195,
+ false
+ ],
+ [
+ -19.464723587036133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0106eeed7c37ae01edec7570e1ae1c221b7254621b32264510364b75a26e88a7",
+ "prompt_hash": "ee5726b35273b27cab1d8fdc2a7741030ee5426a2d8e9dcdfc70735de5142a86",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "Which dimension is specifically used in the \\u2018\\abmc\\u2019 scenario to evaluate whether speed varies appropriately across environments?",
+ "choices": [
+ "A. Trajectory",
+ "B. Embodied Interaction",
+ "C. Velocity",
+ "D. Aesthetics"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dimension is specifically used in the \\u2018\\abmc\\u2019 scenario to evaluate whether speed varies appropriately across environments?\nAnswer:",
+ " A. Trajectory"
+ ],
+ [
+ "Question:Which dimension is specifically used in the \\u2018\\abmc\\u2019 scenario to evaluate whether speed varies appropriately across environments?\nAnswer:",
+ " B. Embodied Interaction"
+ ],
+ [
+ "Question:Which dimension is specifically used in the \\u2018\\abmc\\u2019 scenario to evaluate whether speed varies appropriately across environments?\nAnswer:",
+ " C. Velocity"
+ ],
+ [
+ "Question:Which dimension is specifically used in the \\u2018\\abmc\\u2019 scenario to evaluate whether speed varies appropriately across environments?\nAnswer:",
+ " D. Aesthetics"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.953933715820312,
+ false
+ ]
+ ],
+ [
+ [
+ -28.505935668945312,
+ false
+ ]
+ ],
+ [
+ [
+ -17.61598777770996,
+ false
+ ]
+ ],
+ [
+ [
+ -20.809507369995117,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.953933715820312,
+ false
+ ],
+ [
+ -28.505935668945312,
+ false
+ ],
+ [
+ -17.61598777770996,
+ false
+ ],
+ [
+ -20.809507369995117,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3990cd538cbdf9365d531ac8430c2b207e2a1d05895d2a94e1f9bd888b363b82",
+ "prompt_hash": "2ce6d5a0bdaf02c26b50587735534e59d52e3cc879bc864e2be9113582787fa4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "What is the name of the video-level evaluator trained on HF-Embodied dataset?",
+ "choices": [
+ "A. GPT-4o",
+ "B. FlashVStream",
+ "C. LoRA",
+ "D. evaluator"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the name of the video-level evaluator trained on HF-Embodied dataset?\nAnswer:",
+ " A. GPT-4o"
+ ],
+ [
+ "Question:What is the name of the video-level evaluator trained on HF-Embodied dataset?\nAnswer:",
+ " B. FlashVStream"
+ ],
+ [
+ "Question:What is the name of the video-level evaluator trained on HF-Embodied dataset?\nAnswer:",
+ " C. LoRA"
+ ],
+ [
+ "Question:What is the name of the video-level evaluator trained on HF-Embodied dataset?\nAnswer:",
+ " D. evaluator"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.393389701843262,
+ false
+ ]
+ ],
+ [
+ [
+ -43.895687103271484,
+ false
+ ]
+ ],
+ [
+ [
+ -19.041667938232422,
+ false
+ ]
+ ],
+ [
+ [
+ -21.171215057373047,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.393389701843262,
+ false
+ ],
+ [
+ -43.895687103271484,
+ false
+ ],
+ [
+ -19.041667938232422,
+ false
+ ],
+ [
+ -21.171215057373047,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c4c0a3f71245d5aef21fb670f8d69a2ea0c6b9ff284ac337ce92c1639acbbc2b",
+ "prompt_hash": "b32bc05ee2c22f1d58ed12d7e2fca4906e868fc81e57716c4a023579e4ead278",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What was the performance improvement of journey learning over conventional supervised learning on the MATH dataset using only 327 training samples?",
+ "choices": [
+ "Over 5%",
+ "Over 6%",
+ "Over 7%",
+ "Over 8%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What was the performance improvement of journey learning over conventional supervised learning on the MATH dataset using only 327 training samples?\nAnswer:",
+ " Over 5%"
+ ],
+ [
+ "Question:What was the performance improvement of journey learning over conventional supervised learning on the MATH dataset using only 327 training samples?\nAnswer:",
+ " Over 6%"
+ ],
+ [
+ "Question:What was the performance improvement of journey learning over conventional supervised learning on the MATH dataset using only 327 training samples?\nAnswer:",
+ " Over 7%"
+ ],
+ [
+ "Question:What was the performance improvement of journey learning over conventional supervised learning on the MATH dataset using only 327 training samples?\nAnswer:",
+ " Over 8%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.16574478149414,
+ false
+ ]
+ ],
+ [
+ [
+ -21.092784881591797,
+ false
+ ]
+ ],
+ [
+ [
+ -20.957870483398438,
+ false
+ ]
+ ],
+ [
+ [
+ -20.980009078979492,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.16574478149414,
+ false
+ ],
+ [
+ -21.092784881591797,
+ false
+ ],
+ [
+ -20.957870483398438,
+ false
+ ],
+ [
+ -20.980009078979492,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0b38a2a56a0912b086eab973f3de7d206f452885ad75f309e1afecfe669a85ac",
+ "prompt_hash": "fe48919a07c4d400cd52f3a2516b1427fb5a6a6a0b9a6f25d08171a43a36e00b",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "Which keyword is highlighted as an indicator of the model's ability to engage in reflection and self-correction?",
+ "choices": [
+ "and",
+ "if",
+ "wait",
+ "consider"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which keyword is highlighted as an indicator of the model's ability to engage in reflection and self-correction?\nAnswer:",
+ " and"
+ ],
+ [
+ "Question:Which keyword is highlighted as an indicator of the model's ability to engage in reflection and self-correction?\nAnswer:",
+ " if"
+ ],
+ [
+ "Question:Which keyword is highlighted as an indicator of the model's ability to engage in reflection and self-correction?\nAnswer:",
+ " wait"
+ ],
+ [
+ "Question:Which keyword is highlighted as an indicator of the model's ability to engage in reflection and self-correction?\nAnswer:",
+ " consider"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.678184509277344,
+ false
+ ]
+ ],
+ [
+ [
+ -11.576055526733398,
+ false
+ ]
+ ],
+ [
+ [
+ -11.51467514038086,
+ false
+ ]
+ ],
+ [
+ [
+ -11.106267929077148,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.678184509277344,
+ false
+ ],
+ [
+ -11.576055526733398,
+ false
+ ],
+ [
+ -11.51467514038086,
+ false
+ ],
+ [
+ -11.106267929077148,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4a96dbe55bfbdcc9ba72bc147dab79b3cc54ddf4e5750603408adcd6726a8c30",
+ "prompt_hash": "03917cb385f93db817b7541a7b7f5839f60a7932c74753f7df8af44ccb7ab021",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "Which model achieved the highest F1 score on the subset of the PRM800K dataset?",
+ "choices": [
+ "GPT-4o-mini",
+ "o1-preview",
+ "o1-mini",
+ "Math-shepherd"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model achieved the highest F1 score on the subset of the PRM800K dataset?\nAnswer:",
+ " GPT-4o-mini"
+ ],
+ [
+ "Question:Which model achieved the highest F1 score on the subset of the PRM800K dataset?\nAnswer:",
+ " o1-preview"
+ ],
+ [
+ "Question:Which model achieved the highest F1 score on the subset of the PRM800K dataset?\nAnswer:",
+ " o1-mini"
+ ],
+ [
+ "Question:Which model achieved the highest F1 score on the subset of the PRM800K dataset?\nAnswer:",
+ " Math-shepherd"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.167285919189453,
+ false
+ ]
+ ],
+ [
+ [
+ -29.22384262084961,
+ false
+ ]
+ ],
+ [
+ [
+ -26.068363189697266,
+ false
+ ]
+ ],
+ [
+ [
+ -29.02634048461914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.167285919189453,
+ false
+ ],
+ [
+ -29.22384262084961,
+ false
+ ],
+ [
+ -26.068363189697266,
+ false
+ ],
+ [
+ -29.02634048461914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a1d92fb539e2211d60d6ca6220ce9941130781647199c626073e3ba9680df7e1",
+ "prompt_hash": "589e4789166075cb696d865c767e1dde0771e39b0b72cf0af4f8e4eaffb0a658",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "Which phase in the training pipeline involved training on 327 examples of long thoughts including reflections and corrections?",
+ "choices": [
+ "Supervised Fine-Tuning Phase 1",
+ "Supervised Fine-Tuning Phase 2: Shortcut Learning",
+ "Supervised Fine-Tuning Phase 2: Journey Learning",
+ "Direct Preference Optimization"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which phase in the training pipeline involved training on 327 examples of long thoughts including reflections and corrections?\nAnswer:",
+ " Supervised Fine-Tuning Phase 1"
+ ],
+ [
+ "Question:Which phase in the training pipeline involved training on 327 examples of long thoughts including reflections and corrections?\nAnswer:",
+ " Supervised Fine-Tuning Phase 2: Shortcut Learning"
+ ],
+ [
+ "Question:Which phase in the training pipeline involved training on 327 examples of long thoughts including reflections and corrections?\nAnswer:",
+ " Supervised Fine-Tuning Phase 2: Journey Learning"
+ ],
+ [
+ "Question:Which phase in the training pipeline involved training on 327 examples of long thoughts including reflections and corrections?\nAnswer:",
+ " Direct Preference Optimization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.895179748535156,
+ false
+ ]
+ ],
+ [
+ [
+ -35.28461456298828,
+ false
+ ]
+ ],
+ [
+ [
+ -37.04241943359375,
+ false
+ ]
+ ],
+ [
+ [
+ -9.66794204711914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.895179748535156,
+ false
+ ],
+ [
+ -35.28461456298828,
+ false
+ ],
+ [
+ -37.04241943359375,
+ false
+ ],
+ [
+ -9.66794204711914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "02febbe76e396536a06aa7130637a3193a3899e6913f805ce3b17ccd9c62f61a",
+ "prompt_hash": "db9356601bfe5d31416c62fc62bc9ff729c695dd8c9a625807dcb9db5b37ea44",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "Which reasoning paradigm emphasizes learning through trial-and-error, reflection, and backtracking?",
+ "choices": [
+ "Shortcut learning",
+ "Zero-shot learning",
+ "Journey learning",
+ "Chain-of-thought learning"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which reasoning paradigm emphasizes learning through trial-and-error, reflection, and backtracking?\nAnswer:",
+ " Shortcut learning"
+ ],
+ [
+ "Question:Which reasoning paradigm emphasizes learning through trial-and-error, reflection, and backtracking?\nAnswer:",
+ " Zero-shot learning"
+ ],
+ [
+ "Question:Which reasoning paradigm emphasizes learning through trial-and-error, reflection, and backtracking?\nAnswer:",
+ " Journey learning"
+ ],
+ [
+ "Question:Which reasoning paradigm emphasizes learning through trial-and-error, reflection, and backtracking?\nAnswer:",
+ " Chain-of-thought learning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.114988327026367,
+ false
+ ]
+ ],
+ [
+ [
+ -11.982396125793457,
+ false
+ ]
+ ],
+ [
+ [
+ -21.8007869720459,
+ false
+ ]
+ ],
+ [
+ [
+ -18.297088623046875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.114988327026367,
+ false
+ ],
+ [
+ -11.982396125793457,
+ false
+ ],
+ [
+ -21.8007869720459,
+ false
+ ],
+ [
+ -18.297088623046875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b2c6e5fd2e897e762c53be4d164a0b0084990c633d5674b313b910d9317c6223",
+ "prompt_hash": "a59d7ff020b71e354b01ae1fcf7bb63b83a17c02d02a02ea95235ff1304fb392",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "What types of data were included in the pre-training of GPT-4o?",
+ "choices": [
+ "Only publicly available datasets",
+ "Only user-contributed content",
+ "Web data, code and math, multimodal data",
+ "Data exclusively from government archives"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What types of data were included in the pre-training of GPT-4o?\nAnswer:",
+ " Only publicly available datasets"
+ ],
+ [
+ "Question:What types of data were included in the pre-training of GPT-4o?\nAnswer:",
+ " Only user-contributed content"
+ ],
+ [
+ "Question:What types of data were included in the pre-training of GPT-4o?\nAnswer:",
+ " Web data, code and math, multimodal data"
+ ],
+ [
+ "Question:What types of data were included in the pre-training of GPT-4o?\nAnswer:",
+ " Data exclusively from government archives"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.46111297607422,
+ false
+ ]
+ ],
+ [
+ [
+ -21.123538970947266,
+ false
+ ]
+ ],
+ [
+ [
+ -33.048213958740234,
+ false
+ ]
+ ],
+ [
+ [
+ -30.38631248474121,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.46111297607422,
+ false
+ ],
+ [
+ -21.123538970947266,
+ false
+ ],
+ [
+ -33.048213958740234,
+ false
+ ],
+ [
+ -30.38631248474121,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a372985e07f7abbe54f600d63ee6d5f7fc6bffc04505cbae54da4d2bf27521bc",
+ "prompt_hash": "0104587737bedb6bdb520872d906a3d9ad0822941ea4075fb38f27cf3e75c6ef",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "What was the final risk classification for GPT-4o under OpenAI’s Preparedness Framework?",
+ "choices": [
+ "High",
+ "Medium",
+ "Low",
+ "Critical"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What was the final risk classification for GPT-4o under OpenAI’s Preparedness Framework?\nAnswer:",
+ " High"
+ ],
+ [
+ "Question:What was the final risk classification for GPT-4o under OpenAI’s Preparedness Framework?\nAnswer:",
+ " Medium"
+ ],
+ [
+ "Question:What was the final risk classification for GPT-4o under OpenAI’s Preparedness Framework?\nAnswer:",
+ " Low"
+ ],
+ [
+ "Question:What was the final risk classification for GPT-4o under OpenAI’s Preparedness Framework?\nAnswer:",
+ " Critical"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.722260475158691,
+ false
+ ]
+ ],
+ [
+ [
+ -6.896150588989258,
+ false
+ ]
+ ],
+ [
+ [
+ -5.012272834777832,
+ false
+ ]
+ ],
+ [
+ [
+ -5.753252983093262,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.722260475158691,
+ false
+ ],
+ [
+ -6.896150588989258,
+ false
+ ],
+ [
+ -5.012272834777832,
+ false
+ ],
+ [
+ -5.753252983093262,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4e0758f5d5174342e37f294d716b53e741c0f4bb1a12c6b51960807a7c821ac3",
+ "prompt_hash": "3256e306cb57e76dae5c1a79329caf9ed10dd3825feaaadb0e6415d3d8358cc7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "How many languages did the GPT-4o external red teamers collectively speak?",
+ "choices": [
+ "15",
+ "29",
+ "45",
+ "60"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many languages did the GPT-4o external red teamers collectively speak?\nAnswer:",
+ " 15"
+ ],
+ [
+ "Question:How many languages did the GPT-4o external red teamers collectively speak?\nAnswer:",
+ " 29"
+ ],
+ [
+ "Question:How many languages did the GPT-4o external red teamers collectively speak?\nAnswer:",
+ " 45"
+ ],
+ [
+ "Question:How many languages did the GPT-4o external red teamers collectively speak?\nAnswer:",
+ " 60"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.321237087249756,
+ false
+ ]
+ ],
+ [
+ [
+ -6.68866491317749,
+ false
+ ]
+ ],
+ [
+ [
+ -6.993188858032227,
+ false
+ ]
+ ],
+ [
+ [
+ -6.728579521179199,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.321237087249756,
+ false
+ ],
+ [
+ -6.68866491317749,
+ false
+ ],
+ [
+ -6.993188858032227,
+ false
+ ],
+ [
+ -6.728579521179199,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6339a9a7bef3a9eea574a239c5b1e0b022e7a614bde294b7614d603313d2ec5e",
+ "prompt_hash": "73b492ab37fb4cc79613d41e9e60760c03659310f5c6a8a2c8407621a38a4c6f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "Which system was used to convert text to audio for evaluation purposes?",
+ "choices": [
+ "DALL-E",
+ "Voice Engine",
+ "AudioLM",
+ "Whisper"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which system was used to convert text to audio for evaluation purposes?\nAnswer:",
+ " DALL-E"
+ ],
+ [
+ "Question:Which system was used to convert text to audio for evaluation purposes?\nAnswer:",
+ " Voice Engine"
+ ],
+ [
+ "Question:Which system was used to convert text to audio for evaluation purposes?\nAnswer:",
+ " AudioLM"
+ ],
+ [
+ "Question:Which system was used to convert text to audio for evaluation purposes?\nAnswer:",
+ " Whisper"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.943501472473145,
+ false
+ ]
+ ],
+ [
+ [
+ -16.534181594848633,
+ false
+ ]
+ ],
+ [
+ [
+ -8.04608154296875,
+ false
+ ]
+ ],
+ [
+ [
+ -6.90962553024292,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.943501472473145,
+ false
+ ],
+ [
+ -16.534181594848633,
+ false
+ ],
+ [
+ -8.04608154296875,
+ false
+ ],
+ [
+ -6.90962553024292,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d28ce463101a24c6e1288b67a0efd3244c77b55169d76730f01b4b7e6177f1df",
+ "prompt_hash": "ca824eae6c8a5d78e8ea1f9a0dacb4e6f2ceebbd524d7b8fea9502455b9729d0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "In voice output classification, what recall was achieved for non-English languages?",
+ "choices": [
+ "0.85",
+ "0.90",
+ "1.0",
+ "0.95"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In voice output classification, what recall was achieved for non-English languages?\nAnswer:",
+ " 0.85"
+ ],
+ [
+ "Question:In voice output classification, what recall was achieved for non-English languages?\nAnswer:",
+ " 0.90"
+ ],
+ [
+ "Question:In voice output classification, what recall was achieved for non-English languages?\nAnswer:",
+ " 1.0"
+ ],
+ [
+ "Question:In voice output classification, what recall was achieved for non-English languages?\nAnswer:",
+ " 0.95"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.070045471191406,
+ false
+ ]
+ ],
+ [
+ [
+ -9.178909301757812,
+ false
+ ]
+ ],
+ [
+ [
+ -8.597393035888672,
+ false
+ ]
+ ],
+ [
+ [
+ -9.124435424804688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.070045471191406,
+ false
+ ],
+ [
+ -9.178909301757812,
+ false
+ ],
+ [
+ -8.597393035888672,
+ false
+ ],
+ [
+ -9.124435424804688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32c94fe4437b01c5ef72e2aa2c37b59ea35d0fee9fbd37285420512012a356e6",
+ "prompt_hash": "436600b9a53a410a7a5ddc2c85b9f999f6477738cbcbdd3545f1dd649528a24f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the screen width tolerance used to evaluate click-based actions as correct?",
+ "choices": [
+ "10% of screen width",
+ "12% of screen width",
+ "14% of screen width",
+ "16% of screen width"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the screen width tolerance used to evaluate click-based actions as correct?\nAnswer:",
+ " 10% of screen width"
+ ],
+ [
+ "Question:What is the screen width tolerance used to evaluate click-based actions as correct?\nAnswer:",
+ " 12% of screen width"
+ ],
+ [
+ "Question:What is the screen width tolerance used to evaluate click-based actions as correct?\nAnswer:",
+ " 14% of screen width"
+ ],
+ [
+ "Question:What is the screen width tolerance used to evaluate click-based actions as correct?\nAnswer:",
+ " 16% of screen width"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.385103225708008,
+ false
+ ]
+ ],
+ [
+ [
+ -22.00188446044922,
+ false
+ ]
+ ],
+ [
+ [
+ -22.98278045654297,
+ false
+ ]
+ ],
+ [
+ [
+ -22.503746032714844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.385103225708008,
+ false
+ ],
+ [
+ -22.00188446044922,
+ false
+ ],
+ [
+ -22.98278045654297,
+ false
+ ],
+ [
+ -22.503746032714844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9f8b5be0a3b9d267dde452ed7eac20b48ec86f51bbdf962ee9a7d9816042876c",
+ "prompt_hash": "310393acf8b5193cd43714a633b1db6ddcf4973879f52ae045a8c7e741bce8a2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "Which benchmark had 1,410 test samples and included 3 basic plus 2 custom actions?",
+ "choices": [
+ "GUI-Act-Web",
+ "OmniAct-Desktop",
+ "GUI-Odyssey-App",
+ "AndroidControl-High"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark had 1,410 test samples and included 3 basic plus 2 custom actions?\nAnswer:",
+ " GUI-Act-Web"
+ ],
+ [
+ "Question:Which benchmark had 1,410 test samples and included 3 basic plus 2 custom actions?\nAnswer:",
+ " OmniAct-Desktop"
+ ],
+ [
+ "Question:Which benchmark had 1,410 test samples and included 3 basic plus 2 custom actions?\nAnswer:",
+ " GUI-Odyssey-App"
+ ],
+ [
+ "Question:Which benchmark had 1,410 test samples and included 3 basic plus 2 custom actions?\nAnswer:",
+ " AndroidControl-High"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.018978118896484,
+ false
+ ]
+ ],
+ [
+ [
+ -35.97882843017578,
+ false
+ ]
+ ],
+ [
+ [
+ -38.291839599609375,
+ false
+ ]
+ ],
+ [
+ [
+ -32.71967697143555,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.018978118896484,
+ false
+ ],
+ [
+ -35.97882843017578,
+ false
+ ],
+ [
+ -38.291839599609375,
+ false
+ ],
+ [
+ -32.71967697143555,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2fa1819279e963427cc8e97b7fb0cb586778c2437dd702a77a7cfdc56d8a5af1",
+ "prompt_hash": "ad0ee4079fd39fe7f78fe4045eb915029c0d600e0584f0f0ad542099cf9cdd08",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "Which dataset had the highest number of screenshots in the GUI grounding pretraining corpus?",
+ "choices": [
+ "FineWeb-filtered",
+ "SeeClick",
+ "Windows-desktop",
+ "Mind2Web-annotated"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset had the highest number of screenshots in the GUI grounding pretraining corpus?\nAnswer:",
+ " FineWeb-filtered"
+ ],
+ [
+ "Question:Which dataset had the highest number of screenshots in the GUI grounding pretraining corpus?\nAnswer:",
+ " SeeClick"
+ ],
+ [
+ "Question:Which dataset had the highest number of screenshots in the GUI grounding pretraining corpus?\nAnswer:",
+ " Windows-desktop"
+ ],
+ [
+ "Question:Which dataset had the highest number of screenshots in the GUI grounding pretraining corpus?\nAnswer:",
+ " Mind2Web-annotated"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.71546173095703,
+ false
+ ]
+ ],
+ [
+ [
+ -24.613677978515625,
+ false
+ ]
+ ],
+ [
+ [
+ -16.762664794921875,
+ false
+ ]
+ ],
+ [
+ [
+ -30.07876205444336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.71546173095703,
+ false
+ ],
+ [
+ -24.613677978515625,
+ false
+ ],
+ [
+ -16.762664794921875,
+ false
+ ],
+ [
+ -30.07876205444336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "929fea3025f2a9b1affc7e2ab173b8b92436b91ff4daf4678c3664bd0fe130dc",
+ "prompt_hash": "d037808124da7a33a08b66e11ea5af7d9090610ebf90d71d8a3bbcc12d1bc1c4",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "What method was used to synthesize sub-instructions for instruction grounding data?",
+ "choices": [
+ "Chain-of-Thought prompting",
+ "Set-of-Mark prompting",
+ "Few-shot prompting",
+ "Auto-regressive prompting"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What method was used to synthesize sub-instructions for instruction grounding data?\nAnswer:",
+ " Chain-of-Thought prompting"
+ ],
+ [
+ "Question:What method was used to synthesize sub-instructions for instruction grounding data?\nAnswer:",
+ " Set-of-Mark prompting"
+ ],
+ [
+ "Question:What method was used to synthesize sub-instructions for instruction grounding data?\nAnswer:",
+ " Few-shot prompting"
+ ],
+ [
+ "Question:What method was used to synthesize sub-instructions for instruction grounding data?\nAnswer:",
+ " Auto-regressive prompting"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.850055694580078,
+ false
+ ]
+ ],
+ [
+ [
+ -22.5295352935791,
+ false
+ ]
+ ],
+ [
+ [
+ -11.125772476196289,
+ false
+ ]
+ ],
+ [
+ [
+ -13.05416488647461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.850055694580078,
+ false
+ ],
+ [
+ -22.5295352935791,
+ false
+ ],
+ [
+ -11.125772476196289,
+ false
+ ],
+ [
+ -13.05416488647461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a859d38b3a1df340c92657008d4464c3f55dc09d6d2d59c847fae83a73b231af",
+ "prompt_hash": "33f05316acc2217230f633db435d256e9a6ab4886eaa408aa2850e362322267e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "What unified action reduces naming conflicts such as 'tap' and 'click'?",
+ "choices": [
+ "Dynamic Action Mapping",
+ "Standardized Action Encoding",
+ "Unified Action Space",
+ "Cross-Domain Action Bridge"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What unified action reduces naming conflicts such as 'tap' and 'click'?\nAnswer:",
+ " Dynamic Action Mapping"
+ ],
+ [
+ "Question:What unified action reduces naming conflicts such as 'tap' and 'click'?\nAnswer:",
+ " Standardized Action Encoding"
+ ],
+ [
+ "Question:What unified action reduces naming conflicts such as 'tap' and 'click'?\nAnswer:",
+ " Unified Action Space"
+ ],
+ [
+ "Question:What unified action reduces naming conflicts such as 'tap' and 'click'?\nAnswer:",
+ " Cross-Domain Action Bridge"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.388999938964844,
+ false
+ ]
+ ],
+ [
+ [
+ -23.831134796142578,
+ false
+ ]
+ ],
+ [
+ [
+ -21.0826358795166,
+ false
+ ]
+ ],
+ [
+ [
+ -29.27459716796875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.388999938964844,
+ false
+ ],
+ [
+ -23.831134796142578,
+ false
+ ],
+ [
+ -21.0826358795166,
+ false
+ ],
+ [
+ -29.27459716796875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "279699b89160ac7cc040c8217e39a7c78bab1d462634e0e1716881353083fe4b",
+ "prompt_hash": "a43e32d200b3b898278c02ca262be5772b92ae6d2c2e741e1163da5b3ebcb957",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the codebook size used by the MAGVIT-v2 quantizer for image tokenization in Show-o?",
+ "choices": [
+ "4,096",
+ "8,192",
+ "16,384",
+ "2,048"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the codebook size used by the MAGVIT-v2 quantizer for image tokenization in Show-o?\nAnswer:",
+ " 4,096"
+ ],
+ [
+ "Question:What is the codebook size used by the MAGVIT-v2 quantizer for image tokenization in Show-o?\nAnswer:",
+ " 8,192"
+ ],
+ [
+ "Question:What is the codebook size used by the MAGVIT-v2 quantizer for image tokenization in Show-o?\nAnswer:",
+ " 16,384"
+ ],
+ [
+ "Question:What is the codebook size used by the MAGVIT-v2 quantizer for image tokenization in Show-o?\nAnswer:",
+ " 2,048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.725521087646484,
+ false
+ ]
+ ],
+ [
+ [
+ -11.152690887451172,
+ false
+ ]
+ ],
+ [
+ [
+ -9.869206428527832,
+ false
+ ]
+ ],
+ [
+ [
+ -9.555603981018066,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.725521087646484,
+ false
+ ],
+ [
+ -11.152690887451172,
+ false
+ ],
+ [
+ -9.869206428527832,
+ false
+ ],
+ [
+ -9.555603981018066,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "537f8e13a8575c99b1c95067d90cf9ea8a3221d78b0b3c2bef9ba1ed2bc4f74f",
+ "prompt_hash": "51f7d65b8b8b0b214b4856c8f48f9c5ef119b17e890df6f58283de6b776c09d6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "Which operation is prepended to each attention layer in Show-o's architecture?",
+ "choices": [
+ "Layer Normalization",
+ "Residual Connection",
+ "QK-Norm",
+ "Batch Normalization"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which operation is prepended to each attention layer in Show-o's architecture?\nAnswer:",
+ " Layer Normalization"
+ ],
+ [
+ "Question:Which operation is prepended to each attention layer in Show-o's architecture?\nAnswer:",
+ " Residual Connection"
+ ],
+ [
+ "Question:Which operation is prepended to each attention layer in Show-o's architecture?\nAnswer:",
+ " QK-Norm"
+ ],
+ [
+ "Question:Which operation is prepended to each attention layer in Show-o's architecture?\nAnswer:",
+ " Batch Normalization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.532977104187012,
+ false
+ ]
+ ],
+ [
+ [
+ -10.449203491210938,
+ false
+ ]
+ ],
+ [
+ [
+ -17.17314910888672,
+ false
+ ]
+ ],
+ [
+ [
+ -10.140875816345215,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.532977104187012,
+ false
+ ],
+ [
+ -10.449203491210938,
+ false
+ ],
+ [
+ -17.17314910888672,
+ false
+ ],
+ [
+ -10.140875816345215,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e82398508a7698a85b0ca7fce40294bedf9db1c8fa02e12de0642116958caea0",
+ "prompt_hash": "7a36bb0baac4bc975b5211cea95fc4cd933e9fa4a9ab24630ca9b841e27d2697",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "Which dataset is used in the first stage of training Show-o to learn pixel dependency for image generation?",
+ "choices": [
+ "COCO",
+ "ImageNet-1K",
+ "RefinedWeb",
+ "LAION-aesthetics-12M"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset is used in the first stage of training Show-o to learn pixel dependency for image generation?\nAnswer:",
+ " COCO"
+ ],
+ [
+ "Question:Which dataset is used in the first stage of training Show-o to learn pixel dependency for image generation?\nAnswer:",
+ " ImageNet-1K"
+ ],
+ [
+ "Question:Which dataset is used in the first stage of training Show-o to learn pixel dependency for image generation?\nAnswer:",
+ " RefinedWeb"
+ ],
+ [
+ "Question:Which dataset is used in the first stage of training Show-o to learn pixel dependency for image generation?\nAnswer:",
+ " LAION-aesthetics-12M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.915375709533691,
+ false
+ ]
+ ],
+ [
+ [
+ -8.84010124206543,
+ false
+ ]
+ ],
+ [
+ [
+ -16.313142776489258,
+ false
+ ]
+ ],
+ [
+ [
+ -28.85309600830078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.915375709533691,
+ false
+ ],
+ [
+ -8.84010124206543,
+ false
+ ],
+ [
+ -16.313142776489258,
+ false
+ ],
+ [
+ -28.85309600830078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a2fbac91fa5a58fbaad42c9fd06e66ed9324b31f1a17f89ec6f6fbe662e28996",
+ "prompt_hash": "9eeb735d357ee7d91d5a5551029508dc08da295606cb72b157d6cfa3a55b60d9",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "What is the overall training loss of Show-o composed of?",
+ "choices": [
+ "Only Mask Token Prediction loss",
+ "Only Next Token Prediction loss",
+ "Combination of Mask Token Prediction and Next Token Prediction losses",
+ "Reconstruction loss only"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the overall training loss of Show-o composed of?\nAnswer:",
+ " Only Mask Token Prediction loss"
+ ],
+ [
+ "Question:What is the overall training loss of Show-o composed of?\nAnswer:",
+ " Only Next Token Prediction loss"
+ ],
+ [
+ "Question:What is the overall training loss of Show-o composed of?\nAnswer:",
+ " Combination of Mask Token Prediction and Next Token Prediction losses"
+ ],
+ [
+ "Question:What is the overall training loss of Show-o composed of?\nAnswer:",
+ " Reconstruction loss only"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.088958740234375,
+ false
+ ]
+ ],
+ [
+ [
+ -26.067264556884766,
+ false
+ ]
+ ],
+ [
+ [
+ -45.478004455566406,
+ false
+ ]
+ ],
+ [
+ [
+ -15.250179290771484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.088958740234375,
+ false
+ ],
+ [
+ -26.067264556884766,
+ false
+ ],
+ [
+ -45.478004455566406,
+ false
+ ],
+ [
+ -15.250179290771484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ad4111d75628f6b33d86e9e55bd4403451877b988a90f06f7e5995caa76f78eb",
+ "prompt_hash": "3738b86b77deb7b607d86bd29382528e9215d70aa7fc71ea7d06be174226ec65",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "During inference, how many steps does Show-o take to generate an image?",
+ "choices": [
+ "1 step",
+ "T steps",
+ "10 steps",
+ "512 steps"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:During inference, how many steps does Show-o take to generate an image?\nAnswer:",
+ " 1 step"
+ ],
+ [
+ "Question:During inference, how many steps does Show-o take to generate an image?\nAnswer:",
+ " T steps"
+ ],
+ [
+ "Question:During inference, how many steps does Show-o take to generate an image?\nAnswer:",
+ " 10 steps"
+ ],
+ [
+ "Question:During inference, how many steps does Show-o take to generate an image?\nAnswer:",
+ " 512 steps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.212777137756348,
+ false
+ ]
+ ],
+ [
+ [
+ -14.03068733215332,
+ false
+ ]
+ ],
+ [
+ [
+ -7.745494365692139,
+ false
+ ]
+ ],
+ [
+ [
+ -10.251701354980469,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.212777137756348,
+ false
+ ],
+ [
+ -14.03068733215332,
+ false
+ ],
+ [
+ -7.745494365692139,
+ false
+ ],
+ [
+ -10.251701354980469,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "97590d342be3769a9363b2f9240f40242666e6744ec386dc8e6e036b5db150f9",
+ "prompt_hash": "769bd6096ad2dc7e8d1263e5bfe602f8928265bfdb9024d078d113b3a888c9f0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "How many total tokens did Qwen2-VL process during pre-training stages?",
+ "choices": [
+ "600 billion",
+ "800 billion",
+ "1.4 trillion",
+ "2 trillion"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many total tokens did Qwen2-VL process during pre-training stages?\nAnswer:",
+ " 600 billion"
+ ],
+ [
+ "Question:How many total tokens did Qwen2-VL process during pre-training stages?\nAnswer:",
+ " 800 billion"
+ ],
+ [
+ "Question:How many total tokens did Qwen2-VL process during pre-training stages?\nAnswer:",
+ " 1.4 trillion"
+ ],
+ [
+ "Question:How many total tokens did Qwen2-VL process during pre-training stages?\nAnswer:",
+ " 2 trillion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.786516189575195,
+ false
+ ]
+ ],
+ [
+ [
+ -10.318535804748535,
+ false
+ ]
+ ],
+ [
+ [
+ -10.681632995605469,
+ false
+ ]
+ ],
+ [
+ [
+ -9.810903549194336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.786516189575195,
+ false
+ ],
+ [
+ -10.318535804748535,
+ false
+ ],
+ [
+ -10.681632995605469,
+ false
+ ],
+ [
+ -9.810903549194336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a343616497f6eb027f084ca72bf2bea7781fcffb6f13b70186848784fa662566",
+ "prompt_hash": "17881d277e9e366a35093991cd6021414d8f960bc8c022bc075c47e96590f8b4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "What is the parameter size of the Vision Transformer (ViT) used in Qwen2-VL?",
+ "choices": [
+ "224M",
+ "675M",
+ "1.5B",
+ "2B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the parameter size of the Vision Transformer (ViT) used in Qwen2-VL?\nAnswer:",
+ " 224M"
+ ],
+ [
+ "Question:What is the parameter size of the Vision Transformer (ViT) used in Qwen2-VL?\nAnswer:",
+ " 675M"
+ ],
+ [
+ "Question:What is the parameter size of the Vision Transformer (ViT) used in Qwen2-VL?\nAnswer:",
+ " 1.5B"
+ ],
+ [
+ "Question:What is the parameter size of the Vision Transformer (ViT) used in Qwen2-VL?\nAnswer:",
+ " 2B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.379950523376465,
+ false
+ ]
+ ],
+ [
+ [
+ -14.706459999084473,
+ false
+ ]
+ ],
+ [
+ [
+ -10.820328712463379,
+ false
+ ]
+ ],
+ [
+ [
+ -12.057304382324219,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.379950523376465,
+ false
+ ],
+ [
+ -14.706459999084473,
+ false
+ ],
+ [
+ -10.820328712463379,
+ false
+ ],
+ [
+ -12.057304382324219,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "832be3f29de56d53c7952bcdc890db00f6ccdb0ea4a060b4c54a74a9b415bf26",
+ "prompt_hash": "88dd86e33d060dccd865e0939d7661e72dd9e27790014246c7e6eb55efb53507",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "Which technique was introduced in Qwen2-VL to replace absolute position embeddings in the Vision Transformer?",
+ "choices": [
+ "1D-RoPE",
+ "Naive Dynamic Resolution",
+ "2D-RoPE",
+ "M-RoPE"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which technique was introduced in Qwen2-VL to replace absolute position embeddings in the Vision Transformer?\nAnswer:",
+ " 1D-RoPE"
+ ],
+ [
+ "Question:Which technique was introduced in Qwen2-VL to replace absolute position embeddings in the Vision Transformer?\nAnswer:",
+ " Naive Dynamic Resolution"
+ ],
+ [
+ "Question:Which technique was introduced in Qwen2-VL to replace absolute position embeddings in the Vision Transformer?\nAnswer:",
+ " 2D-RoPE"
+ ],
+ [
+ "Question:Which technique was introduced in Qwen2-VL to replace absolute position embeddings in the Vision Transformer?\nAnswer:",
+ " M-RoPE"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.201679229736328,
+ false
+ ]
+ ],
+ [
+ [
+ -26.624053955078125,
+ false
+ ]
+ ],
+ [
+ [
+ -19.48124122619629,
+ false
+ ]
+ ],
+ [
+ [
+ -22.730064392089844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.201679229736328,
+ false
+ ],
+ [
+ -26.624053955078125,
+ false
+ ],
+ [
+ -19.48124122619629,
+ false
+ ],
+ [
+ -22.730064392089844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bf5e204e913102aebfc35f62da4c9110e1a76382a80de783093c72686f54e765",
+ "prompt_hash": "213aa4463b3b448efc1f02e8044c4e03a1d866b068bee8662d49dd9d80e21fbb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "What is the length limit of videos that Qwen2-VL is capable of understanding?",
+ "choices": [
+ "5 minutes",
+ "10 minutes",
+ "15 minutes",
+ "20+ minutes"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the length limit of videos that Qwen2-VL is capable of understanding?\nAnswer:",
+ " 5 minutes"
+ ],
+ [
+ "Question:What is the length limit of videos that Qwen2-VL is capable of understanding?\nAnswer:",
+ " 10 minutes"
+ ],
+ [
+ "Question:What is the length limit of videos that Qwen2-VL is capable of understanding?\nAnswer:",
+ " 15 minutes"
+ ],
+ [
+ "Question:What is the length limit of videos that Qwen2-VL is capable of understanding?\nAnswer:",
+ " 20+ minutes"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.9861159324646,
+ false
+ ]
+ ],
+ [
+ [
+ -7.793810844421387,
+ false
+ ]
+ ],
+ [
+ [
+ -7.572601318359375,
+ false
+ ]
+ ],
+ [
+ [
+ -15.895883560180664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.9861159324646,
+ false
+ ],
+ [
+ -7.793810844421387,
+ false
+ ],
+ [
+ -7.572601318359375,
+ false
+ ],
+ [
+ -15.895883560180664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "359a8f69c0acbb9228cd774f5931ed894339dfbcfe1c35d8f04728dd117dec03",
+ "prompt_hash": "2d70ef5aa8991e86d7ea0ed86261a6c7835cc0dc4fe835dfd948c2ad23fb407f",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "Which benchmark did Qwen2-VL-72B achieve a score of 77.8, surpassing GPT-4o?",
+ "choices": [
+ "MathVista",
+ "RealWorldQA",
+ "MMStar",
+ "DocVQA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark did Qwen2-VL-72B achieve a score of 77.8, surpassing GPT-4o?\nAnswer:",
+ " MathVista"
+ ],
+ [
+ "Question:Which benchmark did Qwen2-VL-72B achieve a score of 77.8, surpassing GPT-4o?\nAnswer:",
+ " RealWorldQA"
+ ],
+ [
+ "Question:Which benchmark did Qwen2-VL-72B achieve a score of 77.8, surpassing GPT-4o?\nAnswer:",
+ " MMStar"
+ ],
+ [
+ "Question:Which benchmark did Qwen2-VL-72B achieve a score of 77.8, surpassing GPT-4o?\nAnswer:",
+ " DocVQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.382601737976074,
+ false
+ ]
+ ],
+ [
+ [
+ -14.511748313903809,
+ false
+ ]
+ ],
+ [
+ [
+ -16.00177764892578,
+ false
+ ]
+ ],
+ [
+ [
+ -12.91325569152832,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.382601737976074,
+ false
+ ],
+ [
+ -14.511748313903809,
+ false
+ ],
+ [
+ -16.00177764892578,
+ false
+ ],
+ [
+ -12.91325569152832,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "80a3f392f925b83d72b0de9ae7ffab91162ac793f757151d7b8ac89c4b222093",
+ "prompt_hash": "9ec2afa7905d405eda6affd8a9c929f80e8bea537aca5568db62a5cb9eb23dc1",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "Which dataset includes prompts from ShareGPT and is annotated with five specific attributes?",
+ "choices": [
+ "Magpie Ultra",
+ "HelpSteer2",
+ "OffsetBias",
+ "WildGuardMix"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset includes prompts from ShareGPT and is annotated with five specific attributes?\nAnswer:",
+ " Magpie Ultra"
+ ],
+ [
+ "Question:Which dataset includes prompts from ShareGPT and is annotated with five specific attributes?\nAnswer:",
+ " HelpSteer2"
+ ],
+ [
+ "Question:Which dataset includes prompts from ShareGPT and is annotated with five specific attributes?\nAnswer:",
+ " OffsetBias"
+ ],
+ [
+ "Question:Which dataset includes prompts from ShareGPT and is annotated with five specific attributes?\nAnswer:",
+ " WildGuardMix"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.369426727294922,
+ false
+ ]
+ ],
+ [
+ [
+ -23.477996826171875,
+ false
+ ]
+ ],
+ [
+ [
+ -24.307876586914062,
+ false
+ ]
+ ],
+ [
+ [
+ -30.440494537353516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.369426727294922,
+ false
+ ],
+ [
+ -23.477996826171875,
+ false
+ ],
+ [
+ -24.307876586914062,
+ false
+ ],
+ [
+ -30.440494537353516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "816acbde7d3d995f0878ae52bd5249e7d9dc11fb5c22c5485554cc5ab645ee47",
+ "prompt_hash": "a6b409831786f78a1950fc5a187ca30dbaec3320e3fb5b0d850d4bbeb5704c7e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "Which loss function consistently outperformed others in the study for reward modeling?",
+ "choices": [
+ "Hinge Loss",
+ "Cross-Entropy",
+ "Focal Loss",
+ "Bradley-Terry"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which loss function consistently outperformed others in the study for reward modeling?\nAnswer:",
+ " Hinge Loss"
+ ],
+ [
+ "Question:Which loss function consistently outperformed others in the study for reward modeling?\nAnswer:",
+ " Cross-Entropy"
+ ],
+ [
+ "Question:Which loss function consistently outperformed others in the study for reward modeling?\nAnswer:",
+ " Focal Loss"
+ ],
+ [
+ "Question:Which loss function consistently outperformed others in the study for reward modeling?\nAnswer:",
+ " Bradley-Terry"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.29498291015625,
+ false
+ ]
+ ],
+ [
+ [
+ -6.921933174133301,
+ false
+ ]
+ ],
+ [
+ [
+ -13.43044662475586,
+ false
+ ]
+ ],
+ [
+ [
+ -9.149613380432129,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.29498291015625,
+ false
+ ],
+ [
+ -6.921933174133301,
+ false
+ ],
+ [
+ -13.43044662475586,
+ false
+ ],
+ [
+ -9.149613380432129,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "541e9fe2894b0f49b4709cdd760aa1d58ddff2d3a5250e5c3f03403e1b5b0519",
+ "prompt_hash": "a793f665a42e67ed3cb092ec91c1e13f07b0aa4e5db79a1c48d55eb0ed8ce46f",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What is the size of the Skywork Reward Preference 80K dataset in terms of total preference pairs?",
+ "choices": [
+ "378,000",
+ "80,000",
+ "59,539",
+ "700,000"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the size of the Skywork Reward Preference 80K dataset in terms of total preference pairs?\nAnswer:",
+ " 378,000"
+ ],
+ [
+ "Question:What is the size of the Skywork Reward Preference 80K dataset in terms of total preference pairs?\nAnswer:",
+ " 80,000"
+ ],
+ [
+ "Question:What is the size of the Skywork Reward Preference 80K dataset in terms of total preference pairs?\nAnswer:",
+ " 59,539"
+ ],
+ [
+ "Question:What is the size of the Skywork Reward Preference 80K dataset in terms of total preference pairs?\nAnswer:",
+ " 700,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.991911888122559,
+ false
+ ]
+ ],
+ [
+ [
+ -6.92512321472168,
+ false
+ ]
+ ],
+ [
+ [
+ -14.930144309997559,
+ false
+ ]
+ ],
+ [
+ [
+ -10.193219184875488,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.991911888122559,
+ false
+ ],
+ [
+ -6.92512321472168,
+ false
+ ],
+ [
+ -14.930144309997559,
+ false
+ ],
+ [
+ -10.193219184875488,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9c7304f1822614dc658230f603a51ccef62ce2fd7fa526a20780f2926cc80131",
+ "prompt_hash": "1b67194f16ca8ff42ec2c50785c1ba0fae603196263f8e7245d190520fbbc403",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "Which preference dataset was created to address spurious signals such as length bias in reward modeling?",
+ "choices": [
+ "OffsetBias",
+ "HelpSteer2",
+ "Magpie Air",
+ "WildGuardMix"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which preference dataset was created to address spurious signals such as length bias in reward modeling?\nAnswer:",
+ " OffsetBias"
+ ],
+ [
+ "Question:Which preference dataset was created to address spurious signals such as length bias in reward modeling?\nAnswer:",
+ " HelpSteer2"
+ ],
+ [
+ "Question:Which preference dataset was created to address spurious signals such as length bias in reward modeling?\nAnswer:",
+ " Magpie Air"
+ ],
+ [
+ "Question:Which preference dataset was created to address spurious signals such as length bias in reward modeling?\nAnswer:",
+ " WildGuardMix"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.423641204833984,
+ false
+ ]
+ ],
+ [
+ [
+ -24.912960052490234,
+ false
+ ]
+ ],
+ [
+ [
+ -27.164596557617188,
+ false
+ ]
+ ],
+ [
+ [
+ -30.299091339111328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.423641204833984,
+ false
+ ],
+ [
+ -24.912960052490234,
+ false
+ ],
+ [
+ -27.164596557617188,
+ false
+ ],
+ [
+ -30.299091339111328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f1c3744150badebebd1a5bd3004cdcdfc0be7644e56224b379dadd9bf6037680",
+ "prompt_hash": "a1478f9ea022bc9f3bcfcdbfbcf56dbbf3309ce1bbb4645058515d3b593c35f4",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "Which model achieved the highest average score on RewardBench among the models listed?",
+ "choices": [
+ "Nemotron-4-340B-Reward",
+ "Skywork-Reward-Gemma-2-27B",
+ "InternLM-20B-Reward",
+ "SFR-nemo-12B-Judge-r"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model achieved the highest average score on RewardBench among the models listed?\nAnswer:",
+ " Nemotron-4-340B-Reward"
+ ],
+ [
+ "Question:Which model achieved the highest average score on RewardBench among the models listed?\nAnswer:",
+ " Skywork-Reward-Gemma-2-27B"
+ ],
+ [
+ "Question:Which model achieved the highest average score on RewardBench among the models listed?\nAnswer:",
+ " InternLM-20B-Reward"
+ ],
+ [
+ "Question:Which model achieved the highest average score on RewardBench among the models listed?\nAnswer:",
+ " SFR-nemo-12B-Judge-r"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.623653411865234,
+ false
+ ]
+ ],
+ [
+ [
+ -42.98133087158203,
+ false
+ ]
+ ],
+ [
+ [
+ -24.74456787109375,
+ false
+ ]
+ ],
+ [
+ [
+ -56.343814849853516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.623653411865234,
+ false
+ ],
+ [
+ -42.98133087158203,
+ false
+ ],
+ [
+ -24.74456787109375,
+ false
+ ],
+ [
+ -56.343814849853516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fdf78a4f218d6f44cd8777913beb60fcf1903a7e3353c3f7e9b03097b4626ff9",
+ "prompt_hash": "c5c9fbc6a6ffa1795b7bac2ff3cea81de793c3fa936b2b6e10e3a5408a773fff",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2411": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What is the peak data rate target for 6G networks?",
+ "choices": [
+ "10 Gbps",
+ "100 Gbps",
+ "1 Tbps",
+ "10 Tbps"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the peak data rate target for 6G networks?\nAnswer:",
+ " 10 Gbps"
+ ],
+ [
+ "Question:What is the peak data rate target for 6G networks?\nAnswer:",
+ " 100 Gbps"
+ ],
+ [
+ "Question:What is the peak data rate target for 6G networks?\nAnswer:",
+ " 1 Tbps"
+ ],
+ [
+ "Question:What is the peak data rate target for 6G networks?\nAnswer:",
+ " 10 Tbps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.873969078063965,
+ false
+ ]
+ ],
+ [
+ [
+ -4.819973468780518,
+ false
+ ]
+ ],
+ [
+ [
+ -6.002620220184326,
+ false
+ ]
+ ],
+ [
+ [
+ -7.384844779968262,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.873969078063965,
+ false
+ ],
+ [
+ -4.819973468780518,
+ false
+ ],
+ [
+ -6.002620220184326,
+ false
+ ],
+ [
+ -7.384844779968262,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "eec87ea7bd2734619ac06ae996519d9ebd74b6278d70c4af453c19857d10fa27",
+ "prompt_hash": "da9989854daa6aaca25ea247e4f40df164f29efbef51497fed3846972dfd2a20",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "Which usage scenario in 6G focuses on enabling sensing capabilities like movement tracking and environmental monitoring?",
+ "choices": [
+ "Immersive communication",
+ "Hyper reliable, low-latency communication",
+ "Integrated sensing and communication",
+ "Massive communication"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which usage scenario in 6G focuses on enabling sensing capabilities like movement tracking and environmental monitoring?\nAnswer:",
+ " Immersive communication"
+ ],
+ [
+ "Question:Which usage scenario in 6G focuses on enabling sensing capabilities like movement tracking and environmental monitoring?\nAnswer:",
+ " Hyper reliable, low-latency communication"
+ ],
+ [
+ "Question:Which usage scenario in 6G focuses on enabling sensing capabilities like movement tracking and environmental monitoring?\nAnswer:",
+ " Integrated sensing and communication"
+ ],
+ [
+ "Question:Which usage scenario in 6G focuses on enabling sensing capabilities like movement tracking and environmental monitoring?\nAnswer:",
+ " Massive communication"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.115461349487305,
+ false
+ ]
+ ],
+ [
+ [
+ -36.961116790771484,
+ false
+ ]
+ ],
+ [
+ [
+ -11.438902854919434,
+ false
+ ]
+ ],
+ [
+ [
+ -17.085294723510742,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.115461349487305,
+ false
+ ],
+ [
+ -36.961116790771484,
+ false
+ ],
+ [
+ -11.438902854919434,
+ false
+ ],
+ [
+ -17.085294723510742,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b07c19a35114e750f431c9afff3917842b3eeca2335694d93e1b08fa508ab18c",
+ "prompt_hash": "3d93644794afb74c70f8e5e45b917cce4bef90e92d768a37c92d452ff74abdb9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "What type of materials are mentioned as enabling technologies for Fluid Antenna Systems (FAS)?",
+ "choices": [
+ "Rigid conductors and ceramic insulators",
+ "Liquid materials, RF pixels, stepper motors, and metamaterials",
+ "Photonic crystals and superconductors",
+ "Fiber optics and quantum dots"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of materials are mentioned as enabling technologies for Fluid Antenna Systems (FAS)?\nAnswer:",
+ " Rigid conductors and ceramic insulators"
+ ],
+ [
+ "Question:What type of materials are mentioned as enabling technologies for Fluid Antenna Systems (FAS)?\nAnswer:",
+ " Liquid materials, RF pixels, stepper motors, and metamaterials"
+ ],
+ [
+ "Question:What type of materials are mentioned as enabling technologies for Fluid Antenna Systems (FAS)?\nAnswer:",
+ " Photonic crystals and superconductors"
+ ],
+ [
+ "Question:What type of materials are mentioned as enabling technologies for Fluid Antenna Systems (FAS)?\nAnswer:",
+ " Fiber optics and quantum dots"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.662734985351562,
+ false
+ ]
+ ],
+ [
+ [
+ -51.00507736206055,
+ false
+ ]
+ ],
+ [
+ [
+ -18.791711807250977,
+ false
+ ]
+ ],
+ [
+ [
+ -20.55025863647461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.662734985351562,
+ false
+ ],
+ [
+ -51.00507736206055,
+ false
+ ],
+ [
+ -18.791711807250977,
+ false
+ ],
+ [
+ -20.55025863647461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6017248b4020a1bd9d1de89edc12d80bcccabe21f64eefb720c28c9ad7a63547",
+ "prompt_hash": "a3007907bbb72246ec5f8411bf73de8fa59f03a60c35a8d7808979f807b79cae",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "Which technology was inspired by FAS and focuses only on position reconfiguration?",
+ "choices": [
+ "Reconfigurable Intelligent Surfaces",
+ "Movable Antenna System",
+ "Non-Orthogonal Multiple Access",
+ "Continuous Aperture MIMO"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which technology was inspired by FAS and focuses only on position reconfiguration?\nAnswer:",
+ " Reconfigurable Intelligent Surfaces"
+ ],
+ [
+ "Question:Which technology was inspired by FAS and focuses only on position reconfiguration?\nAnswer:",
+ " Movable Antenna System"
+ ],
+ [
+ "Question:Which technology was inspired by FAS and focuses only on position reconfiguration?\nAnswer:",
+ " Non-Orthogonal Multiple Access"
+ ],
+ [
+ "Question:Which technology was inspired by FAS and focuses only on position reconfiguration?\nAnswer:",
+ " Continuous Aperture MIMO"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.414812088012695,
+ false
+ ]
+ ],
+ [
+ [
+ -19.87340545654297,
+ false
+ ]
+ ],
+ [
+ [
+ -18.9980411529541,
+ false
+ ]
+ ],
+ [
+ [
+ -27.375492095947266,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.414812088012695,
+ false
+ ],
+ [
+ -19.87340545654297,
+ false
+ ],
+ [
+ -18.9980411529541,
+ false
+ ],
+ [
+ -27.375492095947266,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6b4441be7a721e85bf01c62181a759643acb5ef0cd1f1cc54ca828a513129e43",
+ "prompt_hash": "ec50620dcf3e101926f2c83ab625fbb096569d82df72f8e2e50fcf87d4266425",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "According to the philosophy quoted by Bruce Lee, what is the core inspiration behind Fluid Antenna Systems?",
+ "choices": [
+ "Rigidity and strength",
+ "Fixed structure and control",
+ "Formless adaptability like water",
+ "Speed and precision like lightning"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:According to the philosophy quoted by Bruce Lee, what is the core inspiration behind Fluid Antenna Systems?\nAnswer:",
+ " Rigidity and strength"
+ ],
+ [
+ "Question:According to the philosophy quoted by Bruce Lee, what is the core inspiration behind Fluid Antenna Systems?\nAnswer:",
+ " Fixed structure and control"
+ ],
+ [
+ "Question:According to the philosophy quoted by Bruce Lee, what is the core inspiration behind Fluid Antenna Systems?\nAnswer:",
+ " Formless adaptability like water"
+ ],
+ [
+ "Question:According to the philosophy quoted by Bruce Lee, what is the core inspiration behind Fluid Antenna Systems?\nAnswer:",
+ " Speed and precision like lightning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.77372169494629,
+ false
+ ]
+ ],
+ [
+ [
+ -27.31595230102539,
+ false
+ ]
+ ],
+ [
+ [
+ -39.78109359741211,
+ false
+ ]
+ ],
+ [
+ [
+ -33.8327751159668,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.77372169494629,
+ false
+ ],
+ [
+ -27.31595230102539,
+ false
+ ],
+ [
+ -39.78109359741211,
+ false
+ ],
+ [
+ -33.8327751159668,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "abb6f7b232a71ac5a3da433396f253d80a2ca0f59fef83d8656c6178f446c8ba",
+ "prompt_hash": "f109106228e3a9f23fe802fcf92d0018fd3135689f42b4af5faa4d5a81340df8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "What is the main reason the paper proposes an activation-based importance estimation strategy for pruning?",
+ "choices": [
+ "To improve training efficiency by using backward passes",
+ "To reduce memory and computation cost by avoiding gradient computation",
+ "To ensure compatibility with reinforcement learning models",
+ "To enhance the convergence rate of the optimizer"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main reason the paper proposes an activation-based importance estimation strategy for pruning?\nAnswer:",
+ " To improve training efficiency by using backward passes"
+ ],
+ [
+ "Question:What is the main reason the paper proposes an activation-based importance estimation strategy for pruning?\nAnswer:",
+ " To reduce memory and computation cost by avoiding gradient computation"
+ ],
+ [
+ "Question:What is the main reason the paper proposes an activation-based importance estimation strategy for pruning?\nAnswer:",
+ " To ensure compatibility with reinforcement learning models"
+ ],
+ [
+ "Question:What is the main reason the paper proposes an activation-based importance estimation strategy for pruning?\nAnswer:",
+ " To enhance the convergence rate of the optimizer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.56960678100586,
+ false
+ ]
+ ],
+ [
+ [
+ -29.971778869628906,
+ false
+ ]
+ ],
+ [
+ [
+ -26.012845993041992,
+ false
+ ]
+ ],
+ [
+ [
+ -21.306804656982422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.56960678100586,
+ false
+ ],
+ [
+ -29.971778869628906,
+ false
+ ],
+ [
+ -26.012845993041992,
+ false
+ ],
+ [
+ -21.306804656982422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9014bad4efb87b06a349240f8654f967c495a9730c9f52539dda10a679c02965",
+ "prompt_hash": "ed3aa775dea305a6c6700f5b0d5a921615db4c56bcc14fd274a6e9af802b1a19",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "Which technique is used to estimate the importance of depth (layers) using cosine distance?",
+ "choices": [
+ "Logit matching",
+ "Perplexity evaluation",
+ "Block Importance (BI)",
+ "LayerNorm scaling"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which technique is used to estimate the importance of depth (layers) using cosine distance?\nAnswer:",
+ " Logit matching"
+ ],
+ [
+ "Question:Which technique is used to estimate the importance of depth (layers) using cosine distance?\nAnswer:",
+ " Perplexity evaluation"
+ ],
+ [
+ "Question:Which technique is used to estimate the importance of depth (layers) using cosine distance?\nAnswer:",
+ " Block Importance (BI)"
+ ],
+ [
+ "Question:Which technique is used to estimate the importance of depth (layers) using cosine distance?\nAnswer:",
+ " LayerNorm scaling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.129497528076172,
+ false
+ ]
+ ],
+ [
+ [
+ -19.97736358642578,
+ false
+ ]
+ ],
+ [
+ [
+ -22.130346298217773,
+ false
+ ]
+ ],
+ [
+ [
+ -20.870519638061523,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.129497528076172,
+ false
+ ],
+ [
+ -19.97736358642578,
+ false
+ ],
+ [
+ -22.130346298217773,
+ false
+ ],
+ [
+ -20.870519638061523,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d2f0d78afdaa7596ecc6fdf6ae7488274a6dea3cd6a83d5eccfd065e4f6a5a54",
+ "prompt_hash": "9bd727639df70abc9f26f83569d56b87f3cbf59a45bb8e8a898532a74f7323c3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "In the process of head pruning, what is added back to the remaining heads to preserve knowledge?",
+ "choices": [
+ "Randomly initialized heads",
+ "Residual information from pruned heads",
+ "Gradients of the original heads",
+ "Normalized attention weights"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In the process of head pruning, what is added back to the remaining heads to preserve knowledge?\nAnswer:",
+ " Randomly initialized heads"
+ ],
+ [
+ "Question:In the process of head pruning, what is added back to the remaining heads to preserve knowledge?\nAnswer:",
+ " Residual information from pruned heads"
+ ],
+ [
+ "Question:In the process of head pruning, what is added back to the remaining heads to preserve knowledge?\nAnswer:",
+ " Gradients of the original heads"
+ ],
+ [
+ "Question:In the process of head pruning, what is added back to the remaining heads to preserve knowledge?\nAnswer:",
+ " Normalized attention weights"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.398324966430664,
+ false
+ ]
+ ],
+ [
+ [
+ -20.017580032348633,
+ false
+ ]
+ ],
+ [
+ [
+ -17.852195739746094,
+ false
+ ]
+ ],
+ [
+ [
+ -19.09755516052246,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.398324966430664,
+ false
+ ],
+ [
+ -20.017580032348633,
+ false
+ ],
+ [
+ -17.852195739746094,
+ false
+ ],
+ [
+ -19.09755516052246,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0d2983d11675001038546a0bcafe2426794fc9c33d4ffae94ed328d7c0b23971",
+ "prompt_hash": "9d567fc6e697e92f05881bf33f910659dee9ea08852f64601862c068d6ef4421",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "How many samples are used in the calibration dataset for activation-based importance estimation?",
+ "choices": [
+ "256",
+ "512",
+ "1024",
+ "2048"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many samples are used in the calibration dataset for activation-based importance estimation?\nAnswer:",
+ " 256"
+ ],
+ [
+ "Question:How many samples are used in the calibration dataset for activation-based importance estimation?\nAnswer:",
+ " 512"
+ ],
+ [
+ "Question:How many samples are used in the calibration dataset for activation-based importance estimation?\nAnswer:",
+ " 1024"
+ ],
+ [
+ "Question:How many samples are used in the calibration dataset for activation-based importance estimation?\nAnswer:",
+ " 2048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.168458938598633,
+ false
+ ]
+ ],
+ [
+ [
+ -6.1954240798950195,
+ false
+ ]
+ ],
+ [
+ [
+ -6.884011268615723,
+ false
+ ]
+ ],
+ [
+ [
+ -7.902861595153809,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.168458938598633,
+ false
+ ],
+ [
+ -6.1954240798950195,
+ false
+ ],
+ [
+ -6.884011268615723,
+ false
+ ],
+ [
+ -7.902861595153809,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e6b013c5031193ef5a41ed4462d5c0de4a10b762a1051b60ea7c32e67437ceea",
+ "prompt_hash": "5f52b44600d809d763b29b4bef6ad0ca70bcc2189ba974d2ef17ec03d844078c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "Which loss function is found to be most effective for logit-based knowledge distillation in this work?",
+ "choices": [
+ "Mean Squared Error (MSE)",
+ "Reverse KL Divergence (R-KLD)",
+ "Cosine Similarity",
+ "Kullback-Leibler Divergence (KLD)"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which loss function is found to be most effective for logit-based knowledge distillation in this work?\nAnswer:",
+ " Mean Squared Error (MSE)"
+ ],
+ [
+ "Question:Which loss function is found to be most effective for logit-based knowledge distillation in this work?\nAnswer:",
+ " Reverse KL Divergence (R-KLD)"
+ ],
+ [
+ "Question:Which loss function is found to be most effective for logit-based knowledge distillation in this work?\nAnswer:",
+ " Cosine Similarity"
+ ],
+ [
+ "Question:Which loss function is found to be most effective for logit-based knowledge distillation in this work?\nAnswer:",
+ " Kullback-Leibler Divergence (KLD)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.091793060302734,
+ false
+ ]
+ ],
+ [
+ [
+ -20.987077713012695,
+ false
+ ]
+ ],
+ [
+ [
+ -12.251108169555664,
+ false
+ ]
+ ],
+ [
+ [
+ -10.422445297241211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.091793060302734,
+ false
+ ],
+ [
+ -20.987077713012695,
+ false
+ ],
+ [
+ -12.251108169555664,
+ false
+ ],
+ [
+ -10.422445297241211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b146330c14a52f1e5eb3ad27d75a0d6aa712be86ed927041fc598cbca1e50c78",
+ "prompt_hash": "291f73cd7fd6e150e50b0088ff0ed3c461b12aaaf85b6b5e22ba43ccfdd17b68",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What is the generating velocity formula for discrete Flow Matching using denoiser parameterization?",
+ "choices": [
+ "u^i_t(x^i,z) = \\dot{\\kappa}_t(x^i - z^i)",
+ "u^i_t(x^i,z) = \\frac{\\dot{\\kappa}_t}{\\kappa_t}(\\delta_{z}(x^i) - p_{1|t}(x^i|z))",
+ "u^i_t(x^i,z) = \\frac{\\dot{\\kappa}_t}{1-\\kappa_t}(p_{1|t}(x^i|z) - \\delta_{z}(x^i))",
+ "u^i_t(x^i,z) = \\dot{\\kappa}_t(x^i + z^i)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the generating velocity formula for discrete Flow Matching using denoiser parameterization?\nAnswer:",
+ " u^i_t(x^i,z) = \\dot{\\kappa}_t(x^i - z^i)"
+ ],
+ [
+ "Question:What is the generating velocity formula for discrete Flow Matching using denoiser parameterization?\nAnswer:",
+ " u^i_t(x^i,z) = \\frac{\\dot{\\kappa}_t}{\\kappa_t}(\\delta_{z}(x^i) - p_{1|t}(x^i|z))"
+ ],
+ [
+ "Question:What is the generating velocity formula for discrete Flow Matching using denoiser parameterization?\nAnswer:",
+ " u^i_t(x^i,z) = \\frac{\\dot{\\kappa}_t}{1-\\kappa_t}(p_{1|t}(x^i|z) - \\delta_{z}(x^i))"
+ ],
+ [
+ "Question:What is the generating velocity formula for discrete Flow Matching using denoiser parameterization?\nAnswer:",
+ " u^i_t(x^i,z) = \\dot{\\kappa}_t(x^i + z^i)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -68.01116943359375,
+ false
+ ]
+ ],
+ [
+ [
+ -107.26423645019531,
+ false
+ ]
+ ],
+ [
+ [
+ -109.30007934570312,
+ false
+ ]
+ ],
+ [
+ [
+ -70.12492370605469,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -68.01116943359375,
+ false
+ ],
+ [
+ -107.26423645019531,
+ false
+ ],
+ [
+ -109.30007934570312,
+ false
+ ],
+ [
+ -70.12492370605469,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3e572071690cd40ec828547c492d433d58578af3dcab3e6d254a6a1e417c21d4",
+ "prompt_hash": "542d77d6830a44a1fe70f95d36a61a73a17813946366d9c754e76dbb5894e066",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "Which of the following is a key condition for the discrete probability velocity to define a proper PMF?",
+ "choices": [
+ "u_t^i(x^i,z) must be negative for all i and x^i ≠ z^i",
+ "The sum over i of u_t^i(x^i,z) must be zero",
+ "u_t^i(x^i,z) must be symmetric in x^i and z",
+ "The sum over x^i of u_t^i(x^i,z) must be zero and u_t^i(x^i,z) ≥ 0 for x^i ≠ z^i"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which of the following is a key condition for the discrete probability velocity to define a proper PMF?\nAnswer:",
+ " u_t^i(x^i,z) must be negative for all i and x^i ≠ z^i"
+ ],
+ [
+ "Question:Which of the following is a key condition for the discrete probability velocity to define a proper PMF?\nAnswer:",
+ " The sum over i of u_t^i(x^i,z) must be zero"
+ ],
+ [
+ "Question:Which of the following is a key condition for the discrete probability velocity to define a proper PMF?\nAnswer:",
+ " u_t^i(x^i,z) must be symmetric in x^i and z"
+ ],
+ [
+ "Question:Which of the following is a key condition for the discrete probability velocity to define a proper PMF?\nAnswer:",
+ " The sum over x^i of u_t^i(x^i,z) must be zero and u_t^i(x^i,z) ≥ 0 for x^i ≠ z^i"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -91.10096740722656,
+ false
+ ]
+ ],
+ [
+ [
+ -65.13204956054688,
+ false
+ ]
+ ],
+ [
+ [
+ -68.94792175292969,
+ false
+ ]
+ ],
+ [
+ [
+ -109.533935546875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -91.10096740722656,
+ false
+ ],
+ [
+ -65.13204956054688,
+ false
+ ],
+ [
+ -68.94792175292969,
+ false
+ ],
+ [
+ -109.533935546875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0c766ba70e3c44cffef5e20b395c9e59dc2a99656fe7a6996a7f569c868c52b6",
+ "prompt_hash": "b21dc9d9aa57995066b718add6746175c197930d2f46fb39ae3d599309277b9f",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "In the experiments, which source distribution is primarily used for training?",
+ "choices": [
+ "Uniform over all tokens",
+ "Gaussian noise",
+ "All-mask sequences \\(\\delta_\\dummy(x)\\)",
+ "Random binary sequences"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the experiments, which source distribution is primarily used for training?\nAnswer:",
+ " Uniform over all tokens"
+ ],
+ [
+ "Question:In the experiments, which source distribution is primarily used for training?\nAnswer:",
+ " Gaussian noise"
+ ],
+ [
+ "Question:In the experiments, which source distribution is primarily used for training?\nAnswer:",
+ " All-mask sequences \\(\\delta_\\dummy(x)\\)"
+ ],
+ [
+ "Question:In the experiments, which source distribution is primarily used for training?\nAnswer:",
+ " Random binary sequences"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.035892486572266,
+ false
+ ]
+ ],
+ [
+ [
+ -14.957950592041016,
+ false
+ ]
+ ],
+ [
+ [
+ -76.81466674804688,
+ false
+ ]
+ ],
+ [
+ [
+ -23.489944458007812,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.035892486572266,
+ false
+ ],
+ [
+ -14.957950592041016,
+ false
+ ],
+ [
+ -76.81466674804688,
+ false
+ ],
+ [
+ -23.489944458007812,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6a8ff128da3cb5032b99962c3ace2ce14de5c804eb4bf8537a559ca3760ddc3b",
+ "prompt_hash": "e5faa1d4061d60bea510fb45889de76a5d0e821c8966fa860c43c14ddb8bd409",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "What is the entropy score achieved by the 1.7B Discrete Flow Matching model with 1024 NFE on unconditional text generation?",
+ "choices": [
+ "7.1",
+ "7.6",
+ "8.3",
+ "6.7"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the entropy score achieved by the 1.7B Discrete Flow Matching model with 1024 NFE on unconditional text generation?\nAnswer:",
+ " 7.1"
+ ],
+ [
+ "Question:What is the entropy score achieved by the 1.7B Discrete Flow Matching model with 1024 NFE on unconditional text generation?\nAnswer:",
+ " 7.6"
+ ],
+ [
+ "Question:What is the entropy score achieved by the 1.7B Discrete Flow Matching model with 1024 NFE on unconditional text generation?\nAnswer:",
+ " 8.3"
+ ],
+ [
+ "Question:What is the entropy score achieved by the 1.7B Discrete Flow Matching model with 1024 NFE on unconditional text generation?\nAnswer:",
+ " 6.7"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.013721466064453,
+ false
+ ]
+ ],
+ [
+ [
+ -7.946964263916016,
+ false
+ ]
+ ],
+ [
+ [
+ -7.716164588928223,
+ false
+ ]
+ ],
+ [
+ [
+ -7.653365135192871,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.013721466064453,
+ false
+ ],
+ [
+ -7.946964263916016,
+ false
+ ],
+ [
+ -7.716164588928223,
+ false
+ ],
+ [
+ -7.653365135192871,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f104cfef0729719cf261c81dd1aae450ed57ebe3dac02c6d8f0dfa014afde700",
+ "prompt_hash": "ddcad478860bed220703544578375a51f2ee47123b98690d6ebd8e8b610d1433",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "What does the conditional probability path p_t(x^i|x_0,x_1) become in the simplest convex interpolant case?",
+ "choices": [
+ "A uniform distribution over [d]",
+ "A Gaussian centered between x_0 and x_1",
+ "(1-\\kappa_t)\\delta_{x_0}(x^i) + \\kappa_t \\delta_{x_1}(x^i)",
+ "An average of multiple learned posteriors"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the conditional probability path p_t(x^i|x_0,x_1) become in the simplest convex interpolant case?\nAnswer:",
+ " A uniform distribution over [d]"
+ ],
+ [
+ "Question:What does the conditional probability path p_t(x^i|x_0,x_1) become in the simplest convex interpolant case?\nAnswer:",
+ " A Gaussian centered between x_0 and x_1"
+ ],
+ [
+ "Question:What does the conditional probability path p_t(x^i|x_0,x_1) become in the simplest convex interpolant case?\nAnswer:",
+ " (1-\\kappa_t)\\delta_{x_0}(x^i) + \\kappa_t \\delta_{x_1}(x^i)"
+ ],
+ [
+ "Question:What does the conditional probability path p_t(x^i|x_0,x_1) become in the simplest convex interpolant case?\nAnswer:",
+ " An average of multiple learned posteriors"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.31566619873047,
+ false
+ ]
+ ],
+ [
+ [
+ -26.569395065307617,
+ false
+ ]
+ ],
+ [
+ [
+ -34.784271240234375,
+ false
+ ]
+ ],
+ [
+ [
+ -38.008331298828125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.31566619873047,
+ false
+ ],
+ [
+ -26.569395065307617,
+ false
+ ],
+ [
+ -34.784271240234375,
+ false
+ ],
+ [
+ -38.008331298828125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32da34d1bd40cfa82315f3867a08cad8b4592f25737cf0108a9bd7364027f0ca",
+ "prompt_hash": "5ddd5f5bd1e88d6f2e9385a4f2dd16cc85ed382780f3729120582bd6d1d6dfb3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "Which library is described as a minimalistic implementation focused on transparency and simplicity in reinforcement learning algorithms?",
+ "choices": [
+ "A. Stable Baselines3",
+ "B. CleanRL",
+ "C. Ray Rllib",
+ "D. Dopamine"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which library is described as a minimalistic implementation focused on transparency and simplicity in reinforcement learning algorithms?\nAnswer:",
+ " A. Stable Baselines3"
+ ],
+ [
+ "Question:Which library is described as a minimalistic implementation focused on transparency and simplicity in reinforcement learning algorithms?\nAnswer:",
+ " B. CleanRL"
+ ],
+ [
+ "Question:Which library is described as a minimalistic implementation focused on transparency and simplicity in reinforcement learning algorithms?\nAnswer:",
+ " C. Ray Rllib"
+ ],
+ [
+ "Question:Which library is described as a minimalistic implementation focused on transparency and simplicity in reinforcement learning algorithms?\nAnswer:",
+ " D. Dopamine"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.61655616760254,
+ false
+ ]
+ ],
+ [
+ [
+ -22.445934295654297,
+ false
+ ]
+ ],
+ [
+ [
+ -30.368227005004883,
+ false
+ ]
+ ],
+ [
+ [
+ -24.299724578857422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.61655616760254,
+ false
+ ],
+ [
+ -22.445934295654297,
+ false
+ ],
+ [
+ -30.368227005004883,
+ false
+ ],
+ [
+ -24.299724578857422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "904ecd6be1774e67177b9cf34468c95060f6fd6625165af4d0adb6d7c2452bfa",
+ "prompt_hash": "42a2094e37c0ea21296696b3a2983f73a082205c23e7bd7636ce07eac786bce3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "What is the purpose of the 'TimeLimit' wrapper in Gymnasium?",
+ "choices": [
+ "A. To handle multi-agent environments",
+ "B. To limit the number of parallel environments",
+ "C. To enforce episode truncation after a set number of steps",
+ "D. To restrict the size of the action space"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of the 'TimeLimit' wrapper in Gymnasium?\nAnswer:",
+ " A. To handle multi-agent environments"
+ ],
+ [
+ "Question:What is the purpose of the 'TimeLimit' wrapper in Gymnasium?\nAnswer:",
+ " B. To limit the number of parallel environments"
+ ],
+ [
+ "Question:What is the purpose of the 'TimeLimit' wrapper in Gymnasium?\nAnswer:",
+ " C. To enforce episode truncation after a set number of steps"
+ ],
+ [
+ "Question:What is the purpose of the 'TimeLimit' wrapper in Gymnasium?\nAnswer:",
+ " D. To restrict the size of the action space"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.94652557373047,
+ false
+ ]
+ ],
+ [
+ [
+ -30.293476104736328,
+ false
+ ]
+ ],
+ [
+ [
+ -44.030799865722656,
+ false
+ ]
+ ],
+ [
+ [
+ -26.48984146118164,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.94652557373047,
+ false
+ ],
+ [
+ -30.293476104736328,
+ false
+ ],
+ [
+ -44.030799865722656,
+ false
+ ],
+ [
+ -26.48984146118164,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "85dc42ac9b74820219e7e7e66f1c3d98d606738371118a8b8472288595de8966",
+ "prompt_hash": "fe682fd0f2002613a9b1ca97e74c720df39b12300931b0dac7f60a025774e8ed",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "Which composite space in Gymnasium is equivalent to a sum type in algebraic data types?",
+ "choices": [
+ "A. Tuple",
+ "B. Dict",
+ "C. Graph",
+ "D. OneOf"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which composite space in Gymnasium is equivalent to a sum type in algebraic data types?\nAnswer:",
+ " A. Tuple"
+ ],
+ [
+ "Question:Which composite space in Gymnasium is equivalent to a sum type in algebraic data types?\nAnswer:",
+ " B. Dict"
+ ],
+ [
+ "Question:Which composite space in Gymnasium is equivalent to a sum type in algebraic data types?\nAnswer:",
+ " C. Graph"
+ ],
+ [
+ "Question:Which composite space in Gymnasium is equivalent to a sum type in algebraic data types?\nAnswer:",
+ " D. OneOf"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.58735466003418,
+ false
+ ]
+ ],
+ [
+ [
+ -19.29799461364746,
+ false
+ ]
+ ],
+ [
+ [
+ -15.71833610534668,
+ false
+ ]
+ ],
+ [
+ [
+ -24.84959602355957,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.58735466003418,
+ false
+ ],
+ [
+ -19.29799461364746,
+ false
+ ],
+ [
+ -15.71833610534668,
+ false
+ ],
+ [
+ -24.84959602355957,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0d19232b2ba1f0667f11f8fbd617daf13ecfc4f70863a1719cab8bb40964130d",
+ "prompt_hash": "81d03b60cac6606bfc09a29327254fd491995841dfafbe33e0fd2b9d640bc77f",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "What advantage does FuncEnv offer over the standard Env in Gymnasium?",
+ "choices": [
+ "A. It supports more games",
+ "B. It enables higher resolution rendering",
+ "C. It allows easy hardware acceleration and theoretical alignment with POMDPs",
+ "D. It reduces the number of required libraries"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What advantage does FuncEnv offer over the standard Env in Gymnasium?\nAnswer:",
+ " A. It supports more games"
+ ],
+ [
+ "Question:What advantage does FuncEnv offer over the standard Env in Gymnasium?\nAnswer:",
+ " B. It enables higher resolution rendering"
+ ],
+ [
+ "Question:What advantage does FuncEnv offer over the standard Env in Gymnasium?\nAnswer:",
+ " C. It allows easy hardware acceleration and theoretical alignment with POMDPs"
+ ],
+ [
+ "Question:What advantage does FuncEnv offer over the standard Env in Gymnasium?\nAnswer:",
+ " D. It reduces the number of required libraries"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.4164981842041,
+ false
+ ]
+ ],
+ [
+ [
+ -31.929250717163086,
+ false
+ ]
+ ],
+ [
+ [
+ -67.37519836425781,
+ false
+ ]
+ ],
+ [
+ [
+ -33.48160934448242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.4164981842041,
+ false
+ ],
+ [
+ -31.929250717163086,
+ false
+ ],
+ [
+ -67.37519836425781,
+ false
+ ],
+ [
+ -33.48160934448242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9d21d8c4990fa96ac7bb357064d95a6aaa9aa93bda23c77b06d141f55f93b696",
+ "prompt_hash": "575fd9b7ee03779f48f5051f52088719a892c99cb7a8dc3824fb9254d66e992c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "Which environment category in Gymnasium includes simulations using the Box2D physics engine?",
+ "choices": [
+ "A. Toy text",
+ "B. Classic control",
+ "C. Mujoco",
+ "D. Box2D"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which environment category in Gymnasium includes simulations using the Box2D physics engine?\nAnswer:",
+ " A. Toy text"
+ ],
+ [
+ "Question:Which environment category in Gymnasium includes simulations using the Box2D physics engine?\nAnswer:",
+ " B. Classic control"
+ ],
+ [
+ "Question:Which environment category in Gymnasium includes simulations using the Box2D physics engine?\nAnswer:",
+ " C. Mujoco"
+ ],
+ [
+ "Question:Which environment category in Gymnasium includes simulations using the Box2D physics engine?\nAnswer:",
+ " D. Box2D"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.217872619628906,
+ false
+ ]
+ ],
+ [
+ [
+ -25.281362533569336,
+ false
+ ]
+ ],
+ [
+ [
+ -17.874332427978516,
+ false
+ ]
+ ],
+ [
+ [
+ -16.03414535522461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.217872619628906,
+ false
+ ],
+ [
+ -25.281362533569336,
+ false
+ ],
+ [
+ -17.874332427978516,
+ false
+ ],
+ [
+ -16.03414535522461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b663e101e05e8daa81280fdbf27f747086424f897b25e4522d58408114cda7e5",
+ "prompt_hash": "bc815e7a9b1fbdfda309fdbb37ff1f4e46139a48cbe3f87b0b52013093017bfa",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What is the main function of the KV Cache in a Transformer model?",
+ "choices": [
+ "To store the attention scores for future layers",
+ "To reduce the time complexity by storing keys and values from past tokens",
+ "To improve model accuracy by storing gradients",
+ "To keep track of the vocabulary index for each token"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main function of the KV Cache in a Transformer model?\nAnswer:",
+ " To store the attention scores for future layers"
+ ],
+ [
+ "Question:What is the main function of the KV Cache in a Transformer model?\nAnswer:",
+ " To reduce the time complexity by storing keys and values from past tokens"
+ ],
+ [
+ "Question:What is the main function of the KV Cache in a Transformer model?\nAnswer:",
+ " To improve model accuracy by storing gradients"
+ ],
+ [
+ "Question:What is the main function of the KV Cache in a Transformer model?\nAnswer:",
+ " To keep track of the vocabulary index for each token"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.331092834472656,
+ false
+ ]
+ ],
+ [
+ [
+ -33.660465240478516,
+ false
+ ]
+ ],
+ [
+ [
+ -26.1849308013916,
+ false
+ ]
+ ],
+ [
+ [
+ -31.01213836669922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.331092834472656,
+ false
+ ],
+ [
+ -33.660465240478516,
+ false
+ ],
+ [
+ -26.1849308013916,
+ false
+ ],
+ [
+ -31.01213836669922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3463744ea89b2f25f6539f138a7e4232ea0c8fad55aa5d2f6d1d9c1a0f621c31",
+ "prompt_hash": "6c634aebb08ad3543ecc982fee051e3bfae803b63d3e7dd0236990c4e853f2ce",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "What happens to the size of the KV Cache as the input sequence grows?",
+ "choices": [
+ "It remains constant regardless of sequence length",
+ "It decreases exponentially with sequence length",
+ "It increases linearly with sequence length",
+ "It increases quadratically with sequence length"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What happens to the size of the KV Cache as the input sequence grows?\nAnswer:",
+ " It remains constant regardless of sequence length"
+ ],
+ [
+ "Question:What happens to the size of the KV Cache as the input sequence grows?\nAnswer:",
+ " It decreases exponentially with sequence length"
+ ],
+ [
+ "Question:What happens to the size of the KV Cache as the input sequence grows?\nAnswer:",
+ " It increases linearly with sequence length"
+ ],
+ [
+ "Question:What happens to the size of the KV Cache as the input sequence grows?\nAnswer:",
+ " It increases quadratically with sequence length"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.243741035461426,
+ false
+ ]
+ ],
+ [
+ [
+ -13.885777473449707,
+ false
+ ]
+ ],
+ [
+ [
+ -11.21221923828125,
+ false
+ ]
+ ],
+ [
+ [
+ -15.224578857421875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.243741035461426,
+ false
+ ],
+ [
+ -13.885777473449707,
+ false
+ ],
+ [
+ -11.21221923828125,
+ false
+ ],
+ [
+ -15.224578857421875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "118ddfec11dcb0fe65b26ed3a40af3d40dadba30da3beb6bd65e7c2fb508ef47",
+ "prompt_hash": "a91b09a7e82745c745c163096df4fdbbbc90dd0a172550d69395461d43a5b5ba",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "Which method divides query heads into groups to share key heads for improved KV Cache efficiency?",
+ "choices": [
+ "Multi-Query Attention (MQA)",
+ "Grouped Query Attention (GQA)",
+ "Dynamic Memory Compression (DMC)",
+ "Multi-Head Latent Attention (MLA)"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which method divides query heads into groups to share key heads for improved KV Cache efficiency?\nAnswer:",
+ " Multi-Query Attention (MQA)"
+ ],
+ [
+ "Question:Which method divides query heads into groups to share key heads for improved KV Cache efficiency?\nAnswer:",
+ " Grouped Query Attention (GQA)"
+ ],
+ [
+ "Question:Which method divides query heads into groups to share key heads for improved KV Cache efficiency?\nAnswer:",
+ " Dynamic Memory Compression (DMC)"
+ ],
+ [
+ "Question:Which method divides query heads into groups to share key heads for improved KV Cache efficiency?\nAnswer:",
+ " Multi-Head Latent Attention (MLA)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.856151580810547,
+ false
+ ]
+ ],
+ [
+ [
+ -8.729805946350098,
+ false
+ ]
+ ],
+ [
+ [
+ -22.34358787536621,
+ false
+ ]
+ ],
+ [
+ [
+ -27.207630157470703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.856151580810547,
+ false
+ ],
+ [
+ -8.729805946350098,
+ false
+ ],
+ [
+ -22.34358787536621,
+ false
+ ],
+ [
+ -27.207630157470703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "90a08f669aa49d769ceac60983fd76066b90276bee096b610e9a9996f44c3983",
+ "prompt_hash": "1d846ff11639e33d06c3be8b2e5f27d7eb7d5328d7836aba456472da5e3efcee",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "What is the key idea behind Token Omission Via Attention (TOVA)?",
+ "choices": [
+ "To discard tokens based on entropy scores",
+ "To merge token representations based on Gaussian weighting",
+ "To evict tokens with minimal attention weights layer-wise",
+ "To compress keys using low-rank factorization"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the key idea behind Token Omission Via Attention (TOVA)?\nAnswer:",
+ " To discard tokens based on entropy scores"
+ ],
+ [
+ "Question:What is the key idea behind Token Omission Via Attention (TOVA)?\nAnswer:",
+ " To merge token representations based on Gaussian weighting"
+ ],
+ [
+ "Question:What is the key idea behind Token Omission Via Attention (TOVA)?\nAnswer:",
+ " To evict tokens with minimal attention weights layer-wise"
+ ],
+ [
+ "Question:What is the key idea behind Token Omission Via Attention (TOVA)?\nAnswer:",
+ " To compress keys using low-rank factorization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.414817810058594,
+ false
+ ]
+ ],
+ [
+ [
+ -41.22924041748047,
+ false
+ ]
+ ],
+ [
+ [
+ -42.73115921020508,
+ false
+ ]
+ ],
+ [
+ [
+ -37.3741455078125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.414817810058594,
+ false
+ ],
+ [
+ -41.22924041748047,
+ false
+ ],
+ [
+ -42.73115921020508,
+ false
+ ],
+ [
+ -37.3741455078125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aecb2b4b9d87e1ec1445221a5e45e21be8e240abab840cef2d7f455ac9e5d3b6",
+ "prompt_hash": "e853258d32fcf11b3960428130f3102bd970cf4ea7b6fc8680e79fee800d0b38",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "Which quantization method applies different strategies to key and value caches and uses an attention window to guide quantization?",
+ "choices": [
+ "FlexGen",
+ "WKVQuant",
+ "QAQ",
+ "GEAR"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which quantization method applies different strategies to key and value caches and uses an attention window to guide quantization?\nAnswer:",
+ " FlexGen"
+ ],
+ [
+ "Question:Which quantization method applies different strategies to key and value caches and uses an attention window to guide quantization?\nAnswer:",
+ " WKVQuant"
+ ],
+ [
+ "Question:Which quantization method applies different strategies to key and value caches and uses an attention window to guide quantization?\nAnswer:",
+ " QAQ"
+ ],
+ [
+ "Question:Which quantization method applies different strategies to key and value caches and uses an attention window to guide quantization?\nAnswer:",
+ " GEAR"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.81790542602539,
+ false
+ ]
+ ],
+ [
+ [
+ -21.988216400146484,
+ false
+ ]
+ ],
+ [
+ [
+ -12.134068489074707,
+ false
+ ]
+ ],
+ [
+ [
+ -15.453916549682617,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.81790542602539,
+ false
+ ],
+ [
+ -21.988216400146484,
+ false
+ ],
+ [
+ -12.134068489074707,
+ false
+ ],
+ [
+ -15.453916549682617,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9b9ec799f0644347f00ccdc559a2de9b2950ecdd38505a1eea0fa43b6e678612",
+ "prompt_hash": "7bd19b063a0a24820d40409d88ce869b3d85a9e2382085f4f1e8098cef48240c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What evaluation metric is used for the HumanEval benchmark?",
+ "choices": [
+ "Accuracy",
+ "F1 Score",
+ "Pass@1",
+ "BLEU"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What evaluation metric is used for the HumanEval benchmark?\nAnswer:",
+ " Accuracy"
+ ],
+ [
+ "Question:What evaluation metric is used for the HumanEval benchmark?\nAnswer:",
+ " F1 Score"
+ ],
+ [
+ "Question:What evaluation metric is used for the HumanEval benchmark?\nAnswer:",
+ " Pass@1"
+ ],
+ [
+ "Question:What evaluation metric is used for the HumanEval benchmark?\nAnswer:",
+ " BLEU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.508859157562256,
+ false
+ ]
+ ],
+ [
+ [
+ -7.320566177368164,
+ false
+ ]
+ ],
+ [
+ [
+ -6.618783473968506,
+ false
+ ]
+ ],
+ [
+ [
+ -6.3945088386535645,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.508859157562256,
+ false
+ ],
+ [
+ -7.320566177368164,
+ false
+ ],
+ [
+ -6.618783473968506,
+ false
+ ],
+ [
+ -6.3945088386535645,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "40b7639a11a2d6401329ccab248911a0b42df0e8dc28672aae354083c26f73e8",
+ "prompt_hash": "36ddf66b2a490ca68d938f5ebc940a8b85fcd8dc65d94c9a32f6e976909f94cf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "How many samples are in the MMLU benchmark?",
+ "choices": [
+ "5000",
+ "14042",
+ "1954",
+ "87048"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many samples are in the MMLU benchmark?\nAnswer:",
+ " 5000"
+ ],
+ [
+ "Question:How many samples are in the MMLU benchmark?\nAnswer:",
+ " 14042"
+ ],
+ [
+ "Question:How many samples are in the MMLU benchmark?\nAnswer:",
+ " 1954"
+ ],
+ [
+ "Question:How many samples are in the MMLU benchmark?\nAnswer:",
+ " 87048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.450283527374268,
+ false
+ ]
+ ],
+ [
+ [
+ -13.787731170654297,
+ false
+ ]
+ ],
+ [
+ [
+ -11.449134826660156,
+ false
+ ]
+ ],
+ [
+ [
+ -16.09764862060547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.450283527374268,
+ false
+ ],
+ [
+ -13.787731170654297,
+ false
+ ],
+ [
+ -11.449134826660156,
+ false
+ ],
+ [
+ -16.09764862060547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ba828c25f156de6325888a9da9951b77820404aaadb21d08e34211803a90f4b2",
+ "prompt_hash": "8210b467843557958d435189a7ded66d735a1f9a89ee4a09fd5f1ba9c2fa1cf1",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "Which benchmark uses the 'MC2_score' metric?",
+ "choices": [
+ "TruthfulQA",
+ "AGIEval",
+ "GSM8k",
+ "SiQA"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark uses the 'MC2_score' metric?\nAnswer:",
+ " TruthfulQA"
+ ],
+ [
+ "Question:Which benchmark uses the 'MC2_score' metric?\nAnswer:",
+ " AGIEval"
+ ],
+ [
+ "Question:Which benchmark uses the 'MC2_score' metric?\nAnswer:",
+ " GSM8k"
+ ],
+ [
+ "Question:Which benchmark uses the 'MC2_score' metric?\nAnswer:",
+ " SiQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.017866134643555,
+ false
+ ]
+ ],
+ [
+ [
+ -11.988103866577148,
+ false
+ ]
+ ],
+ [
+ [
+ -9.616325378417969,
+ false
+ ]
+ ],
+ [
+ [
+ -19.542951583862305,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.017866134643555,
+ false
+ ],
+ [
+ -11.988103866577148,
+ false
+ ],
+ [
+ -9.616325378417969,
+ false
+ ],
+ [
+ -19.542951583862305,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3fcc58cfc3351602d8c12fcc817be59779b123a9aefe8e79e34d8584309fa707",
+ "prompt_hash": "1d5a9234f36bec2a977788235df16dc92ff6c526203551a7286ba6e227ea9586",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "What is the maximum number of few-shot examples used in GSM8k?",
+ "choices": [
+ "3",
+ "5",
+ "8",
+ "0"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum number of few-shot examples used in GSM8k?\nAnswer:",
+ " 3"
+ ],
+ [
+ "Question:What is the maximum number of few-shot examples used in GSM8k?\nAnswer:",
+ " 5"
+ ],
+ [
+ "Question:What is the maximum number of few-shot examples used in GSM8k?\nAnswer:",
+ " 8"
+ ],
+ [
+ "Question:What is the maximum number of few-shot examples used in GSM8k?\nAnswer:",
+ " 0"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.252291202545166,
+ false
+ ]
+ ],
+ [
+ [
+ -2.7015891075134277,
+ false
+ ]
+ ],
+ [
+ [
+ -3.2675089836120605,
+ false
+ ]
+ ],
+ [
+ [
+ -6.1405487060546875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.252291202545166,
+ false
+ ],
+ [
+ -2.7015891075134277,
+ false
+ ],
+ [
+ -3.2675089836120605,
+ false
+ ],
+ [
+ -6.1405487060546875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6402abb438cc24d2f202a81faf00c17046e16338291e66758b64a58fae4ab0eb",
+ "prompt_hash": "3327f679ce2b69e15b832d37f8c391899a7a09786e0265e26494977d0bf82a18",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "Which dataset includes 5000 samples and uses 'EM maj1@1' as its metric?",
+ "choices": [
+ "MATH",
+ "MBPP",
+ "PiQA",
+ "OpenBookQA"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset includes 5000 samples and uses 'EM maj1@1' as its metric?\nAnswer:",
+ " MATH"
+ ],
+ [
+ "Question:Which dataset includes 5000 samples and uses 'EM maj1@1' as its metric?\nAnswer:",
+ " MBPP"
+ ],
+ [
+ "Question:Which dataset includes 5000 samples and uses 'EM maj1@1' as its metric?\nAnswer:",
+ " PiQA"
+ ],
+ [
+ "Question:Which dataset includes 5000 samples and uses 'EM maj1@1' as its metric?\nAnswer:",
+ " OpenBookQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.23568058013916,
+ false
+ ]
+ ],
+ [
+ [
+ -12.814970016479492,
+ false
+ ]
+ ],
+ [
+ [
+ -16.764488220214844,
+ false
+ ]
+ ],
+ [
+ [
+ -18.32901954650879,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.23568058013916,
+ false
+ ],
+ [
+ -12.814970016479492,
+ false
+ ],
+ [
+ -16.764488220214844,
+ false
+ ],
+ [
+ -18.32901954650879,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "22fc097dd2c97659d37f74fb56bb16765fb7a8e35b418b058170082a53c3f80f",
+ "prompt_hash": "f2fc571d9e327979e9e02ac55b91d28937cf446a2c28ceedc0b42b5e9713ec5d",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What is Mini-Omni described as?",
+ "choices": [
+ "A closed-source multimodal model",
+ "The first open-source end-to-end multimodal model with real-time speech capabilities",
+ "A text-only language model",
+ "A dataset for speech assistants"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is Mini-Omni described as?\nAnswer:",
+ " A closed-source multimodal model"
+ ],
+ [
+ "Question:What is Mini-Omni described as?\nAnswer:",
+ " The first open-source end-to-end multimodal model with real-time speech capabilities"
+ ],
+ [
+ "Question:What is Mini-Omni described as?\nAnswer:",
+ " A text-only language model"
+ ],
+ [
+ "Question:What is Mini-Omni described as?\nAnswer:",
+ " A dataset for speech assistants"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.025798797607422,
+ false
+ ]
+ ],
+ [
+ [
+ -49.17539978027344,
+ false
+ ]
+ ],
+ [
+ [
+ -21.924789428710938,
+ false
+ ]
+ ],
+ [
+ [
+ -28.139144897460938,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.025798797607422,
+ false
+ ],
+ [
+ -49.17539978027344,
+ false
+ ],
+ [
+ -21.924789428710938,
+ false
+ ],
+ [
+ -28.139144897460938,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a2b690276c4d1ed0d8b85440c4630674bd06ec2ca989bb2c0cb93a9d1352d366",
+ "prompt_hash": "41e98cf04516b6ad4fae7b0d5180fc01b236a5fb254cd03e7589e27a34380887",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "Which audio encoder was selected to ensure high-quality audio in Mini-Omni?",
+ "choices": [
+ "HuBERT",
+ "WavLM",
+ "SNAC",
+ "SpearTTS"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which audio encoder was selected to ensure high-quality audio in Mini-Omni?\nAnswer:",
+ " HuBERT"
+ ],
+ [
+ "Question:Which audio encoder was selected to ensure high-quality audio in Mini-Omni?\nAnswer:",
+ " WavLM"
+ ],
+ [
+ "Question:Which audio encoder was selected to ensure high-quality audio in Mini-Omni?\nAnswer:",
+ " SNAC"
+ ],
+ [
+ "Question:Which audio encoder was selected to ensure high-quality audio in Mini-Omni?\nAnswer:",
+ " SpearTTS"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.846920490264893,
+ false
+ ]
+ ],
+ [
+ [
+ -4.520740509033203,
+ false
+ ]
+ ],
+ [
+ [
+ -16.42870330810547,
+ false
+ ]
+ ],
+ [
+ [
+ -18.480022430419922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.846920490264893,
+ false
+ ],
+ [
+ -4.520740509033203,
+ false
+ ],
+ [
+ -16.42870330810547,
+ false
+ ],
+ [
+ -18.480022430419922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "500b61420e80d825b160ea80c086d69b09dbf803be743dc13dac871587d6b136",
+ "prompt_hash": "1e0185e543741408a3054af6df183379519be7f31028489dae0044fe6abe0e5a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "What is the size of the base language model used in Mini-Omni?",
+ "choices": [
+ "7 billion parameters",
+ "13 billion parameters",
+ "0.5 billion parameters",
+ "2 billion parameters"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the size of the base language model used in Mini-Omni?\nAnswer:",
+ " 7 billion parameters"
+ ],
+ [
+ "Question:What is the size of the base language model used in Mini-Omni?\nAnswer:",
+ " 13 billion parameters"
+ ],
+ [
+ "Question:What is the size of the base language model used in Mini-Omni?\nAnswer:",
+ " 0.5 billion parameters"
+ ],
+ [
+ "Question:What is the size of the base language model used in Mini-Omni?\nAnswer:",
+ " 2 billion parameters"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.209259510040283,
+ false
+ ]
+ ],
+ [
+ [
+ -8.974302291870117,
+ false
+ ]
+ ],
+ [
+ [
+ -11.013339042663574,
+ false
+ ]
+ ],
+ [
+ [
+ -8.469942092895508,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.209259510040283,
+ false
+ ],
+ [
+ -8.974302291870117,
+ false
+ ],
+ [
+ -11.013339042663574,
+ false
+ ],
+ [
+ -8.469942092895508,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d4000b0545a7feb4021e6fc2823d64ab08bbedd1417b1397cde5ec9df741909d",
+ "prompt_hash": "0de74d67eaa0ed7054024f50cdde5a742db9019e2f5bf1aea009ad7989472de0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "What is the name of the dataset introduced to fine-tune models into a voice assistant style?",
+ "choices": [
+ "LibriSpeech",
+ "VoiceAssistant-400K",
+ "Open-Orca",
+ "Moss-SFT"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the name of the dataset introduced to fine-tune models into a voice assistant style?\nAnswer:",
+ " LibriSpeech"
+ ],
+ [
+ "Question:What is the name of the dataset introduced to fine-tune models into a voice assistant style?\nAnswer:",
+ " VoiceAssistant-400K"
+ ],
+ [
+ "Question:What is the name of the dataset introduced to fine-tune models into a voice assistant style?\nAnswer:",
+ " Open-Orca"
+ ],
+ [
+ "Question:What is the name of the dataset introduced to fine-tune models into a voice assistant style?\nAnswer:",
+ " Moss-SFT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.687619209289551,
+ false
+ ]
+ ],
+ [
+ [
+ -20.196495056152344,
+ false
+ ]
+ ],
+ [
+ [
+ -17.251708984375,
+ false
+ ]
+ ],
+ [
+ [
+ -27.790363311767578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.687619209289551,
+ false
+ ],
+ [
+ -20.196495056152344,
+ false
+ ],
+ [
+ -17.251708984375,
+ false
+ ],
+ [
+ -27.790363311767578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ce713f869e9e226e4e6243d90e96d1d8e130a8a761f36585e5f3a48ea1295069",
+ "prompt_hash": "4e377807034ef44a7a8d59253a6432b3ac6d9464956a15954af4d154870aedff",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "Which training stage of Mini-Omni involves unfreezing all model weights for holistic fine-tuning?",
+ "choices": [
+ "Stage 1: Modality Alignment",
+ "Stage 2: Adaptation Training",
+ "Stage 3: Multi-modal Finetuning",
+ "Stage 4: Evaluation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which training stage of Mini-Omni involves unfreezing all model weights for holistic fine-tuning?\nAnswer:",
+ " Stage 1: Modality Alignment"
+ ],
+ [
+ "Question:Which training stage of Mini-Omni involves unfreezing all model weights for holistic fine-tuning?\nAnswer:",
+ " Stage 2: Adaptation Training"
+ ],
+ [
+ "Question:Which training stage of Mini-Omni involves unfreezing all model weights for holistic fine-tuning?\nAnswer:",
+ " Stage 3: Multi-modal Finetuning"
+ ],
+ [
+ "Question:Which training stage of Mini-Omni involves unfreezing all model weights for holistic fine-tuning?\nAnswer:",
+ " Stage 4: Evaluation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.08725357055664,
+ false
+ ]
+ ],
+ [
+ [
+ -18.947019577026367,
+ false
+ ]
+ ],
+ [
+ [
+ -22.240943908691406,
+ false
+ ]
+ ],
+ [
+ [
+ -14.598235130310059,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.08725357055664,
+ false
+ ],
+ [
+ -18.947019577026367,
+ false
+ ],
+ [
+ -22.240943908691406,
+ false
+ ],
+ [
+ -14.598235130310059,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d07e134beb38224450f014439b85131c773e0959af7b93b2e4c921492cf859bd",
+ "prompt_hash": "7031d671c2508328142687f9266f37ca2135e8ac581b5e9b2f79f1cae7ac811d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What does a single instance of ReKep map an array of keypoints to?",
+ "choices": [
+ "A probability distribution",
+ "A bounded energy value",
+ "An unbounded cost",
+ "A sequence of discrete poses"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does a single instance of ReKep map an array of keypoints to?\nAnswer:",
+ " A probability distribution"
+ ],
+ [
+ "Question:What does a single instance of ReKep map an array of keypoints to?\nAnswer:",
+ " A bounded energy value"
+ ],
+ [
+ "Question:What does a single instance of ReKep map an array of keypoints to?\nAnswer:",
+ " An unbounded cost"
+ ],
+ [
+ "Question:What does a single instance of ReKep map an array of keypoints to?\nAnswer:",
+ " A sequence of discrete poses"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.133968353271484,
+ false
+ ]
+ ],
+ [
+ [
+ -26.93883514404297,
+ false
+ ]
+ ],
+ [
+ [
+ -22.620363235473633,
+ false
+ ]
+ ],
+ [
+ [
+ -19.65053939819336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.133968353271484,
+ false
+ ],
+ [
+ -26.93883514404297,
+ false
+ ],
+ [
+ -22.620363235473633,
+ false
+ ],
+ [
+ -19.65053939819336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4db36d9910572980f07baf6fe692acf7552b15a3f17912dc3c9dd5ce464447ec",
+ "prompt_hash": "4cede1e94eded219e5a81eb153a41f1a84cc1f2cdf064b84363143b3049e11c4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which model is used in the system to propose fine-grained and semantically meaningful keypoints in the scene?",
+ "choices": [
+ "BLIP-2",
+ "SAM",
+ "DINOv2",
+ "AnyGrasp"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model is used in the system to propose fine-grained and semantically meaningful keypoints in the scene?\nAnswer:",
+ " BLIP-2"
+ ],
+ [
+ "Question:Which model is used in the system to propose fine-grained and semantically meaningful keypoints in the scene?\nAnswer:",
+ " SAM"
+ ],
+ [
+ "Question:Which model is used in the system to propose fine-grained and semantically meaningful keypoints in the scene?\nAnswer:",
+ " DINOv2"
+ ],
+ [
+ "Question:Which model is used in the system to propose fine-grained and semantically meaningful keypoints in the scene?\nAnswer:",
+ " AnyGrasp"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.148873329162598,
+ false
+ ]
+ ],
+ [
+ [
+ -8.042795181274414,
+ false
+ ]
+ ],
+ [
+ [
+ -8.681550025939941,
+ false
+ ]
+ ],
+ [
+ [
+ -19.21855926513672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.148873329162598,
+ false
+ ],
+ [
+ -8.042795181274414,
+ false
+ ],
+ [
+ -8.681550025939941,
+ false
+ ],
+ [
+ -19.21855926513672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "74a656301051bfff3335d6544f70a32cc1ade176e1c8177b21c267b58dcc33b3",
+ "prompt_hash": "43718c78e0c8a34db04835b5ba255717edd73cb30afa6de56e38a7f3ff8bc1c1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "What is the optimization framework’s approximate solving frequency for the tasks considered in the work?",
+ "choices": [
+ "1 Hz",
+ "5 Hz",
+ "10 Hz",
+ "20 Hz"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the optimization framework’s approximate solving frequency for the tasks considered in the work?\nAnswer:",
+ " 1 Hz"
+ ],
+ [
+ "Question:What is the optimization framework’s approximate solving frequency for the tasks considered in the work?\nAnswer:",
+ " 5 Hz"
+ ],
+ [
+ "Question:What is the optimization framework’s approximate solving frequency for the tasks considered in the work?\nAnswer:",
+ " 10 Hz"
+ ],
+ [
+ "Question:What is the optimization framework’s approximate solving frequency for the tasks considered in the work?\nAnswer:",
+ " 20 Hz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.280828475952148,
+ false
+ ]
+ ],
+ [
+ [
+ -11.805965423583984,
+ false
+ ]
+ ],
+ [
+ [
+ -10.422658920288086,
+ false
+ ]
+ ],
+ [
+ [
+ -11.62740707397461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.280828475952148,
+ false
+ ],
+ [
+ -11.805965423583984,
+ false
+ ],
+ [
+ -10.422658920288086,
+ false
+ ],
+ [
+ -11.62740707397461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bf78edf81140ee8a9beda3a69bd1fe95a2866cca0ccf89f5d91a1553787204a7",
+ "prompt_hash": "4bece240a600ba03e92ec71087ccf5b03ae8d9393b28dca5645c8b707fccc7e6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "What auxiliary cost is specifically included in the sub-goal problem when a stage is concerned with grasping?",
+ "choices": [
+ "Path length minimization",
+ "A grasp metric",
+ "Self-collision avoidance",
+ "Consistency cost"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What auxiliary cost is specifically included in the sub-goal problem when a stage is concerned with grasping?\nAnswer:",
+ " Path length minimization"
+ ],
+ [
+ "Question:What auxiliary cost is specifically included in the sub-goal problem when a stage is concerned with grasping?\nAnswer:",
+ " A grasp metric"
+ ],
+ [
+ "Question:What auxiliary cost is specifically included in the sub-goal problem when a stage is concerned with grasping?\nAnswer:",
+ " Self-collision avoidance"
+ ],
+ [
+ "Question:What auxiliary cost is specifically included in the sub-goal problem when a stage is concerned with grasping?\nAnswer:",
+ " Consistency cost"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.370542526245117,
+ false
+ ]
+ ],
+ [
+ [
+ -19.641986846923828,
+ false
+ ]
+ ],
+ [
+ [
+ -14.385573387145996,
+ false
+ ]
+ ],
+ [
+ [
+ -15.92432975769043,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.370542526245117,
+ false
+ ],
+ [
+ -19.641986846923828,
+ false
+ ],
+ [
+ -14.385573387145996,
+ false
+ ],
+ [
+ -15.92432975769043,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c06195ea7e94ff57f5dd396d3fffa0f6546f0629988a77b82a5234c7579a21bc",
+ "prompt_hash": "330d51adcd40a4f69715390ef1b0223c4b230bab7b8bb500d1fe3ba2f348f4e6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "Which component contributed the largest portion of system errors according to the error breakdown analysis?",
+ "choices": [
+ "Keypoint proposal",
+ "Vision-language model",
+ "Optimization module",
+ "Point tracker"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which component contributed the largest portion of system errors according to the error breakdown analysis?\nAnswer:",
+ " Keypoint proposal"
+ ],
+ [
+ "Question:Which component contributed the largest portion of system errors according to the error breakdown analysis?\nAnswer:",
+ " Vision-language model"
+ ],
+ [
+ "Question:Which component contributed the largest portion of system errors according to the error breakdown analysis?\nAnswer:",
+ " Optimization module"
+ ],
+ [
+ "Question:Which component contributed the largest portion of system errors according to the error breakdown analysis?\nAnswer:",
+ " Point tracker"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.096324920654297,
+ false
+ ]
+ ],
+ [
+ [
+ -21.57367706298828,
+ false
+ ]
+ ],
+ [
+ [
+ -17.320581436157227,
+ false
+ ]
+ ],
+ [
+ [
+ -19.568580627441406,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.096324920654297,
+ false
+ ],
+ [
+ -21.57367706298828,
+ false
+ ],
+ [
+ -17.320581436157227,
+ false
+ ],
+ [
+ -19.568580627441406,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "04a4dfcb73d83e71a147cfcba69814390ffe6d2a77c6e0cdada07d010423dba8",
+ "prompt_hash": "6792587cdddb5ff84a1438cd151eaf7860da1b4fb2100f0e33b5cca813c0c760",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the primary goal of monocular depth estimation?",
+ "choices": [
+ "To predict the depth map from a single image",
+ "To generate high-resolution RGB images",
+ "To classify objects in 3D scenes",
+ "To segment moving objects in videos"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the primary goal of monocular depth estimation?\nAnswer:",
+ " To predict the depth map from a single image"
+ ],
+ [
+ "Question:What is the primary goal of monocular depth estimation?\nAnswer:",
+ " To generate high-resolution RGB images"
+ ],
+ [
+ "Question:What is the primary goal of monocular depth estimation?\nAnswer:",
+ " To classify objects in 3D scenes"
+ ],
+ [
+ "Question:What is the primary goal of monocular depth estimation?\nAnswer:",
+ " To segment moving objects in videos"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.69544792175293,
+ false
+ ]
+ ],
+ [
+ [
+ -20.34946060180664,
+ false
+ ]
+ ],
+ [
+ [
+ -17.6307315826416,
+ false
+ ]
+ ],
+ [
+ [
+ -21.26361846923828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.69544792175293,
+ false
+ ],
+ [
+ -20.34946060180664,
+ false
+ ],
+ [
+ -17.6307315826416,
+ false
+ ],
+ [
+ -21.26361846923828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fd6ac965fdc8b359488adc36e6b635fc9198c2aba8774119dc641286ade6e6e2",
+ "prompt_hash": "69901e85b64035444f79c66e1412b12263a82428b19daa57a4134cff44e3f0e7",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "Which dataset was combined with DynamicReplica to form the synthetic dataset for DepthCrafter training?",
+ "choices": [
+ "MatrixCity",
+ "ScanNet v2",
+ "KITTI",
+ "Sintel"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset was combined with DynamicReplica to form the synthetic dataset for DepthCrafter training?\nAnswer:",
+ " MatrixCity"
+ ],
+ [
+ "Question:Which dataset was combined with DynamicReplica to form the synthetic dataset for DepthCrafter training?\nAnswer:",
+ " ScanNet v2"
+ ],
+ [
+ "Question:Which dataset was combined with DynamicReplica to form the synthetic dataset for DepthCrafter training?\nAnswer:",
+ " KITTI"
+ ],
+ [
+ "Question:Which dataset was combined with DynamicReplica to form the synthetic dataset for DepthCrafter training?\nAnswer:",
+ " Sintel"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.05780792236328,
+ false
+ ]
+ ],
+ [
+ [
+ -16.11438751220703,
+ false
+ ]
+ ],
+ [
+ [
+ -7.35317850112915,
+ false
+ ]
+ ],
+ [
+ [
+ -15.332847595214844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.05780792236328,
+ false
+ ],
+ [
+ -16.11438751220703,
+ false
+ ],
+ [
+ -7.35317850112915,
+ false
+ ],
+ [
+ -15.332847595214844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3e85574950d0bcb2dc31b42eca31b8559b154e0263855ed93eb652cdd64d3518",
+ "prompt_hash": "33448e03dee4e4b13849c0651c6ad9786e0c84071ce59ca2db90133b397de274",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "How many training stages are involved in DepthCrafter's training strategy?",
+ "choices": [
+ "One",
+ "Two",
+ "Three",
+ "Four"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many training stages are involved in DepthCrafter's training strategy?\nAnswer:",
+ " One"
+ ],
+ [
+ "Question:How many training stages are involved in DepthCrafter's training strategy?\nAnswer:",
+ " Two"
+ ],
+ [
+ "Question:How many training stages are involved in DepthCrafter's training strategy?\nAnswer:",
+ " Three"
+ ],
+ [
+ "Question:How many training stages are involved in DepthCrafter's training strategy?\nAnswer:",
+ " Four"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.532721042633057,
+ false
+ ]
+ ],
+ [
+ [
+ -5.27767276763916,
+ false
+ ]
+ ],
+ [
+ [
+ -5.411354064941406,
+ false
+ ]
+ ],
+ [
+ [
+ -6.417080402374268,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.532721042633057,
+ false
+ ],
+ [
+ -5.27767276763916,
+ false
+ ],
+ [
+ -5.411354064941406,
+ false
+ ],
+ [
+ -6.417080402374268,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b44adef1648b27a5a5dd13a349c17593441f704701a56c8ee62bd6626e2f6944",
+ "prompt_hash": "55709d651755d15c0f99595b4611603adc6430a5f68194a99ad0638bf094d428",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "What is the maximum number of frames DepthCrafter can generate in a single sequence after training?",
+ "choices": [
+ "25",
+ "50",
+ "90",
+ "110"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the maximum number of frames DepthCrafter can generate in a single sequence after training?\nAnswer:",
+ " 25"
+ ],
+ [
+ "Question:What is the maximum number of frames DepthCrafter can generate in a single sequence after training?\nAnswer:",
+ " 50"
+ ],
+ [
+ "Question:What is the maximum number of frames DepthCrafter can generate in a single sequence after training?\nAnswer:",
+ " 90"
+ ],
+ [
+ "Question:What is the maximum number of frames DepthCrafter can generate in a single sequence after training?\nAnswer:",
+ " 110"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.397420406341553,
+ false
+ ]
+ ],
+ [
+ [
+ -4.530661106109619,
+ false
+ ]
+ ],
+ [
+ [
+ -5.898233413696289,
+ false
+ ]
+ ],
+ [
+ [
+ -7.255423069000244,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.397420406341553,
+ false
+ ],
+ [
+ -4.530661106109619,
+ false
+ ],
+ [
+ -5.898233413696289,
+ false
+ ],
+ [
+ -7.255423069000244,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32ef88ba8b3db37223d2380545cfb74b1dbe2219fe962aff8a8ec1ca9136f19e",
+ "prompt_hash": "a5b25ded009375961e1d26e28deed8d0d580dbde9bfe97316270ca89d3fdc6f3",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "Which baseline method does ChronoDepth support in terms of temporal context length?",
+ "choices": [
+ "10 frames",
+ "25 frames",
+ "50 frames",
+ "110 frames"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which baseline method does ChronoDepth support in terms of temporal context length?\nAnswer:",
+ " 10 frames"
+ ],
+ [
+ "Question:Which baseline method does ChronoDepth support in terms of temporal context length?\nAnswer:",
+ " 25 frames"
+ ],
+ [
+ "Question:Which baseline method does ChronoDepth support in terms of temporal context length?\nAnswer:",
+ " 50 frames"
+ ],
+ [
+ "Question:Which baseline method does ChronoDepth support in terms of temporal context length?\nAnswer:",
+ " 110 frames"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.895761489868164,
+ false
+ ]
+ ],
+ [
+ [
+ -10.400951385498047,
+ false
+ ]
+ ],
+ [
+ [
+ -11.934900283813477,
+ false
+ ]
+ ],
+ [
+ [
+ -14.357010841369629,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.895761489868164,
+ false
+ ],
+ [
+ -10.400951385498047,
+ false
+ ],
+ [
+ -11.934900283813477,
+ false
+ ],
+ [
+ -14.357010841369629,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "51c5df2258ee6bbda62c0c66f6152a967f8434e2f9764045f20dae32a9327957",
+ "prompt_hash": "2060a60d6854a6f73fc75059f57f1ed3d482de4aae258a212b1bcca7ea590006",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "Which base model is Qwen2.5-Coder derived from?",
+ "choices": [
+ "GPT-4o",
+ "Qwen2.5",
+ "StarCoder2",
+ "CodeLlama"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which base model is Qwen2.5-Coder derived from?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which base model is Qwen2.5-Coder derived from?\nAnswer:",
+ " Qwen2.5"
+ ],
+ [
+ "Question:Which base model is Qwen2.5-Coder derived from?\nAnswer:",
+ " StarCoder2"
+ ],
+ [
+ "Question:Which base model is Qwen2.5-Coder derived from?\nAnswer:",
+ " CodeLlama"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.98691177368164,
+ false
+ ]
+ ],
+ [
+ [
+ -2.9870645999908447,
+ false
+ ]
+ ],
+ [
+ [
+ -14.584648132324219,
+ false
+ ]
+ ],
+ [
+ [
+ -9.186256408691406,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.98691177368164,
+ false
+ ],
+ [
+ -2.9870645999908447,
+ false
+ ],
+ [
+ -14.584648132324219,
+ false
+ ],
+ [
+ -9.186256408691406,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9184d47659d765f50610d9b95090031ec3c8dc62d330f69af8ec5deaea34f03c",
+ "prompt_hash": "ebf9dac2363b8a5ca7ba4947530d007bf8719cb7420805d3116a28df8bc57253",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "How many different model sizes are included in the Qwen2.5-Coder series?",
+ "choices": [
+ "Four",
+ "Six",
+ "Eight",
+ "Ten"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many different model sizes are included in the Qwen2.5-Coder series?\nAnswer:",
+ " Four"
+ ],
+ [
+ "Question:How many different model sizes are included in the Qwen2.5-Coder series?\nAnswer:",
+ " Six"
+ ],
+ [
+ "Question:How many different model sizes are included in the Qwen2.5-Coder series?\nAnswer:",
+ " Eight"
+ ],
+ [
+ "Question:How many different model sizes are included in the Qwen2.5-Coder series?\nAnswer:",
+ " Ten"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.960505962371826,
+ false
+ ]
+ ],
+ [
+ [
+ -6.804236888885498,
+ false
+ ]
+ ],
+ [
+ [
+ -8.083930015563965,
+ false
+ ]
+ ],
+ [
+ [
+ -9.204055786132812,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.960505962371826,
+ false
+ ],
+ [
+ -6.804236888885498,
+ false
+ ],
+ [
+ -8.083930015563965,
+ false
+ ],
+ [
+ -9.204055786132812,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "61511e1ed9fbd67b26fc1d3a2a743382894c8370ced0cc61d26a2bab76d28318",
+ "prompt_hash": "f0c03dd966a50b77ea4090116c3fbb3b5e4851c743c0eca6bbff3bace1c5cca7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "What is the total number of tokens in the Qwen2.5-Coder pretraining dataset?",
+ "choices": [
+ "3.2 trillion",
+ "4.1 trillion",
+ "5.5 trillion",
+ "6.7 trillion"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total number of tokens in the Qwen2.5-Coder pretraining dataset?\nAnswer:",
+ " 3.2 trillion"
+ ],
+ [
+ "Question:What is the total number of tokens in the Qwen2.5-Coder pretraining dataset?\nAnswer:",
+ " 4.1 trillion"
+ ],
+ [
+ "Question:What is the total number of tokens in the Qwen2.5-Coder pretraining dataset?\nAnswer:",
+ " 5.5 trillion"
+ ],
+ [
+ "Question:What is the total number of tokens in the Qwen2.5-Coder pretraining dataset?\nAnswer:",
+ " 6.7 trillion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.193757057189941,
+ false
+ ]
+ ],
+ [
+ [
+ -14.902152061462402,
+ false
+ ]
+ ],
+ [
+ [
+ -14.214559555053711,
+ false
+ ]
+ ],
+ [
+ [
+ -14.328497886657715,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.193757057189941,
+ false
+ ],
+ [
+ -14.902152061462402,
+ false
+ ],
+ [
+ -14.214559555053711,
+ false
+ ],
+ [
+ -14.328497886657715,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "519136bb6844023e6bc3559c19b3c52f48c6f04ed430e4109e45413fee24a586",
+ "prompt_hash": "5e46854b005aabfaefe305fc51bd6413e5335ef12525ff420d44a53890dc5eb8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "Which token is used in Qwen2.5-Coder to mark the end of a text or sequence?",
+ "choices": [
+ "<|fim_suffix|>",
+ "<|file_sep|>",
+ "<|endoftext|>",
+ "<|fim_middle|>"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which token is used in Qwen2.5-Coder to mark the end of a text or sequence?\nAnswer:",
+ " <|fim_suffix|>"
+ ],
+ [
+ "Question:Which token is used in Qwen2.5-Coder to mark the end of a text or sequence?\nAnswer:",
+ " <|file_sep|>"
+ ],
+ [
+ "Question:Which token is used in Qwen2.5-Coder to mark the end of a text or sequence?\nAnswer:",
+ " <|endoftext|>"
+ ],
+ [
+ "Question:Which token is used in Qwen2.5-Coder to mark the end of a text or sequence?\nAnswer:",
+ " <|fim_middle|>"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -40.7396125793457,
+ false
+ ]
+ ],
+ [
+ [
+ -31.887859344482422,
+ false
+ ]
+ ],
+ [
+ [
+ -15.501543045043945,
+ false
+ ]
+ ],
+ [
+ [
+ -38.91889572143555,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -40.7396125793457,
+ false
+ ],
+ [
+ -31.887859344482422,
+ false
+ ],
+ [
+ -15.501543045043945,
+ false
+ ],
+ [
+ -38.91889572143555,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32688a8ff3a6312b9cf1f4d13435c86284be27e68f112c1ea7c044b55f9876f5",
+ "prompt_hash": "4a280c533e45a6c1f706ed603bc9f59e96708374dfc6fc0bf823638c32ffe8ad",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "What was the final mixture ratio of Code, Text, and Math data chosen for Qwen2.5-Coder?",
+ "choices": [
+ "100:0:0",
+ "85:15:5",
+ "70:20:10",
+ "60:30:10"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was the final mixture ratio of Code, Text, and Math data chosen for Qwen2.5-Coder?\nAnswer:",
+ " 100:0:0"
+ ],
+ [
+ "Question:What was the final mixture ratio of Code, Text, and Math data chosen for Qwen2.5-Coder?\nAnswer:",
+ " 85:15:5"
+ ],
+ [
+ "Question:What was the final mixture ratio of Code, Text, and Math data chosen for Qwen2.5-Coder?\nAnswer:",
+ " 70:20:10"
+ ],
+ [
+ "Question:What was the final mixture ratio of Code, Text, and Math data chosen for Qwen2.5-Coder?\nAnswer:",
+ " 60:30:10"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.652618408203125,
+ false
+ ]
+ ],
+ [
+ [
+ -11.911613464355469,
+ false
+ ]
+ ],
+ [
+ [
+ -10.841472625732422,
+ false
+ ]
+ ],
+ [
+ [
+ -11.832803726196289,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.652618408203125,
+ false
+ ],
+ [
+ -11.911613464355469,
+ false
+ ],
+ [
+ -10.841472625732422,
+ false
+ ],
+ [
+ -11.832803726196289,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8686768174e3565d0100e217dbda69483a98ee1b6994f8f3201ee0ca5e0a49cb",
+ "prompt_hash": "aac1d2cd9a36d901ef435efee1953e49f52c134a3315544ae637814f935077c2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "Which classical equation is widely used to predict the oscillation behavior of spherical cavitation bubbles?",
+ "choices": [
+ "Gilmore equation",
+ "Keller-Miksis equation",
+ "Rayleigh-Plesset equation",
+ "Doubly Asymptotic Approximation equation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which classical equation is widely used to predict the oscillation behavior of spherical cavitation bubbles?\nAnswer:",
+ " Gilmore equation"
+ ],
+ [
+ "Question:Which classical equation is widely used to predict the oscillation behavior of spherical cavitation bubbles?\nAnswer:",
+ " Keller-Miksis equation"
+ ],
+ [
+ "Question:Which classical equation is widely used to predict the oscillation behavior of spherical cavitation bubbles?\nAnswer:",
+ " Rayleigh-Plesset equation"
+ ],
+ [
+ "Question:Which classical equation is widely used to predict the oscillation behavior of spherical cavitation bubbles?\nAnswer:",
+ " Doubly Asymptotic Approximation equation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.879878044128418,
+ false
+ ]
+ ],
+ [
+ [
+ -31.828353881835938,
+ false
+ ]
+ ],
+ [
+ [
+ -14.75823974609375,
+ false
+ ]
+ ],
+ [
+ [
+ -32.73979187011719,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.879878044128418,
+ false
+ ],
+ [
+ -31.828353881835938,
+ false
+ ],
+ [
+ -14.75823974609375,
+ false
+ ],
+ [
+ -32.73979187011719,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "86560bbde1abd696430083a87c3d3ed80ef43f5eb498566253bb3713a6b16b2e",
+ "prompt_hash": "9888374170c0feb7fc1506a6e95683c4d811614684fd0bb3fc707931241f05ee",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "What additional factors, besides compressibility and viscosity, have been shown to significantly affect the dynamics of laser-induced and spark bubbles?",
+ "choices": [
+ "Electrical conductivity and surface roughness",
+ "Condensation and evaporation processes",
+ "Magnetic field fluctuations",
+ "Bubble shape irregularities"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What additional factors, besides compressibility and viscosity, have been shown to significantly affect the dynamics of laser-induced and spark bubbles?\nAnswer:",
+ " Electrical conductivity and surface roughness"
+ ],
+ [
+ "Question:What additional factors, besides compressibility and viscosity, have been shown to significantly affect the dynamics of laser-induced and spark bubbles?\nAnswer:",
+ " Condensation and evaporation processes"
+ ],
+ [
+ "Question:What additional factors, besides compressibility and viscosity, have been shown to significantly affect the dynamics of laser-induced and spark bubbles?\nAnswer:",
+ " Magnetic field fluctuations"
+ ],
+ [
+ "Question:What additional factors, besides compressibility and viscosity, have been shown to significantly affect the dynamics of laser-induced and spark bubbles?\nAnswer:",
+ " Bubble shape irregularities"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.15823745727539,
+ false
+ ]
+ ],
+ [
+ [
+ -22.268741607666016,
+ false
+ ]
+ ],
+ [
+ [
+ -17.82883644104004,
+ false
+ ]
+ ],
+ [
+ [
+ -25.504554748535156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.15823745727539,
+ false
+ ],
+ [
+ -22.268741607666016,
+ false
+ ],
+ [
+ -17.82883644104004,
+ false
+ ],
+ [
+ -25.504554748535156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "579da9a1d1f14a4f7b9696f859194c3f6a831c5cba3710a01dc5548241c45e6e",
+ "prompt_hash": "b7184e53f62c00f868964d623ed2924be0ff3e37482871c7dbb7600dc757c8af",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "What equation of state is employed to model the uniform inner pressure of a bubble under violent compression?",
+ "choices": [
+ "Ideal gas equation",
+ "Boyle’s law",
+ "Van der Waals equation",
+ "Clapeyron equation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What equation of state is employed to model the uniform inner pressure of a bubble under violent compression?\nAnswer:",
+ " Ideal gas equation"
+ ],
+ [
+ "Question:What equation of state is employed to model the uniform inner pressure of a bubble under violent compression?\nAnswer:",
+ " Boyle’s law"
+ ],
+ [
+ "Question:What equation of state is employed to model the uniform inner pressure of a bubble under violent compression?\nAnswer:",
+ " Van der Waals equation"
+ ],
+ [
+ "Question:What equation of state is employed to model the uniform inner pressure of a bubble under violent compression?\nAnswer:",
+ " Clapeyron equation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.687660217285156,
+ false
+ ]
+ ],
+ [
+ [
+ -15.20535659790039,
+ false
+ ]
+ ],
+ [
+ [
+ -10.195505142211914,
+ false
+ ]
+ ],
+ [
+ [
+ -13.616377830505371,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.687660217285156,
+ false
+ ],
+ [
+ -15.20535659790039,
+ false
+ ],
+ [
+ -10.195505142211914,
+ false
+ ],
+ [
+ -13.616377830505371,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3cb46df70cd1fd88e71c4fb2d06e77ca266e27965aac6d41767d56bcf1122835",
+ "prompt_hash": "f2b917857232c039bc388235d8cdb0eaadf3dbdbe16624f6c6e91f2d9d335317",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "What is the typical value of the surface tension coefficient at room temperature (293 K) provided in the model parameters?",
+ "choices": [
+ "0.001 Pa·s",
+ "0.075 N/m",
+ "0.1402 J·m³·mol⁻²",
+ "0.55 W·m⁻¹·K⁻¹"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the typical value of the surface tension coefficient at room temperature (293 K) provided in the model parameters?\nAnswer:",
+ " 0.001 Pa·s"
+ ],
+ [
+ "Question:What is the typical value of the surface tension coefficient at room temperature (293 K) provided in the model parameters?\nAnswer:",
+ " 0.075 N/m"
+ ],
+ [
+ "Question:What is the typical value of the surface tension coefficient at room temperature (293 K) provided in the model parameters?\nAnswer:",
+ " 0.1402 J·m³·mol⁻²"
+ ],
+ [
+ "Question:What is the typical value of the surface tension coefficient at room temperature (293 K) provided in the model parameters?\nAnswer:",
+ " 0.55 W·m⁻¹·K⁻¹"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.709671974182129,
+ false
+ ]
+ ],
+ [
+ [
+ -12.447090148925781,
+ false
+ ]
+ ],
+ [
+ [
+ -48.58300018310547,
+ false
+ ]
+ ],
+ [
+ [
+ -41.24347686767578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.709671974182129,
+ false
+ ],
+ [
+ -12.447090148925781,
+ false
+ ],
+ [
+ -48.58300018310547,
+ false
+ ],
+ [
+ -41.24347686767578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "60c2ea3472dcbc20b38df041644ae8bce015f14b1fd11b1ca65a21e057fbe2f5",
+ "prompt_hash": "2ca5dd46a48399f1a5aa66a281c6a0986d24dfdd7319e23ebdd5d0df8cbe3d80",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "In the spark-generated bubble experiment, what was the maximum bubble radius reached?",
+ "choices": [
+ "1.01 mm",
+ "12 mm",
+ "18.1 mm",
+ "30 mm"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the spark-generated bubble experiment, what was the maximum bubble radius reached?\nAnswer:",
+ " 1.01 mm"
+ ],
+ [
+ "Question:In the spark-generated bubble experiment, what was the maximum bubble radius reached?\nAnswer:",
+ " 12 mm"
+ ],
+ [
+ "Question:In the spark-generated bubble experiment, what was the maximum bubble radius reached?\nAnswer:",
+ " 18.1 mm"
+ ],
+ [
+ "Question:In the spark-generated bubble experiment, what was the maximum bubble radius reached?\nAnswer:",
+ " 30 mm"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.215747833251953,
+ false
+ ]
+ ],
+ [
+ [
+ -9.254501342773438,
+ false
+ ]
+ ],
+ [
+ [
+ -13.88467025756836,
+ false
+ ]
+ ],
+ [
+ [
+ -9.194122314453125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.215747833251953,
+ false
+ ],
+ [
+ -9.254501342773438,
+ false
+ ],
+ [
+ -13.88467025756836,
+ false
+ ],
+ [
+ -9.194122314453125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0e8a2ce0886b9e422a63b1299efe89deaacb5858a6ea609eaff8ac381b44b4ab",
+ "prompt_hash": "315a87f41522f6690ece93bd824296a44a8f5d3acece53a5ecfb557a47647875",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "Which vision-language model serves as the backbone for the \\u201cModelSymbol\\u201d architecture?",
+ "choices": [
+ "PaliGemma",
+ "Flamingo",
+ "Gemini",
+ "Octo"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which vision-language model serves as the backbone for the \\u201cModelSymbol\\u201d architecture?\nAnswer:",
+ " PaliGemma"
+ ],
+ [
+ "Question:Which vision-language model serves as the backbone for the \\u201cModelSymbol\\u201d architecture?\nAnswer:",
+ " Flamingo"
+ ],
+ [
+ "Question:Which vision-language model serves as the backbone for the \\u201cModelSymbol\\u201d architecture?\nAnswer:",
+ " Gemini"
+ ],
+ [
+ "Question:Which vision-language model serves as the backbone for the \\u201cModelSymbol\\u201d architecture?\nAnswer:",
+ " Octo"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.2396240234375,
+ false
+ ]
+ ],
+ [
+ [
+ -8.813681602478027,
+ false
+ ]
+ ],
+ [
+ [
+ -6.939650535583496,
+ false
+ ]
+ ],
+ [
+ [
+ -16.771682739257812,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.2396240234375,
+ false
+ ],
+ [
+ -8.813681602478027,
+ false
+ ],
+ [
+ -6.939650535583496,
+ false
+ ],
+ [
+ -16.771682739257812,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "44cfab75afc74c3f9040b647b44c8a6cd66f888103de6a4e7fc72665cca5ad9f",
+ "prompt_hash": "e760c9d7b72d0fa964da31194d5bb2ddc1361f8ebc0a9893eb3d7be1f75cf88c",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "What technique does the \\u201cModelSymbol\\u201d model use to generate continuous action distributions?",
+ "choices": [
+ "Autoregressive discretization",
+ "Conditional flow matching",
+ "Reinforcement learning",
+ "Cross-entropy loss"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What technique does the \\u201cModelSymbol\\u201d model use to generate continuous action distributions?\nAnswer:",
+ " Autoregressive discretization"
+ ],
+ [
+ "Question:What technique does the \\u201cModelSymbol\\u201d model use to generate continuous action distributions?\nAnswer:",
+ " Conditional flow matching"
+ ],
+ [
+ "Question:What technique does the \\u201cModelSymbol\\u201d model use to generate continuous action distributions?\nAnswer:",
+ " Reinforcement learning"
+ ],
+ [
+ "Question:What technique does the \\u201cModelSymbol\\u201d model use to generate continuous action distributions?\nAnswer:",
+ " Cross-entropy loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.554214477539062,
+ false
+ ]
+ ],
+ [
+ [
+ -19.457931518554688,
+ false
+ ]
+ ],
+ [
+ [
+ -8.617112159729004,
+ false
+ ]
+ ],
+ [
+ [
+ -12.441343307495117,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.554214477539062,
+ false
+ ],
+ [
+ -19.457931518554688,
+ false
+ ],
+ [
+ -8.617112159729004,
+ false
+ ],
+ [
+ -12.441343307495117,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "34120c787c63f3cd993bcfdbf7c316dd59a741f2c53a6b9663c10007fc52909a",
+ "prompt_hash": "47bba7a5ba4c27f3890616b2747252222a0805931bab6c0bb030384c75608899",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "How many parameters does the \\u201cModelSymbol\\u201d model have, including the action expert?",
+ "choices": [
+ "470M",
+ "3B",
+ "3.3B",
+ "7B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many parameters does the \\u201cModelSymbol\\u201d model have, including the action expert?\nAnswer:",
+ " 470M"
+ ],
+ [
+ "Question:How many parameters does the \\u201cModelSymbol\\u201d model have, including the action expert?\nAnswer:",
+ " 3B"
+ ],
+ [
+ "Question:How many parameters does the \\u201cModelSymbol\\u201d model have, including the action expert?\nAnswer:",
+ " 3.3B"
+ ],
+ [
+ "Question:How many parameters does the \\u201cModelSymbol\\u201d model have, including the action expert?\nAnswer:",
+ " 7B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.699792861938477,
+ false
+ ]
+ ],
+ [
+ [
+ -12.135706901550293,
+ false
+ ]
+ ],
+ [
+ [
+ -14.984294891357422,
+ false
+ ]
+ ],
+ [
+ [
+ -11.93716049194336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.699792861938477,
+ false
+ ],
+ [
+ -12.135706901550293,
+ false
+ ],
+ [
+ -14.984294891357422,
+ false
+ ],
+ [
+ -11.93716049194336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "290acbf83831bbc31d777b5bc2f83c49ae3dec908c2a92ceac3e542f64403a1f",
+ "prompt_hash": "e9bb7024e9173b093e62fd7785fba67863ebe1682748bc459de2243494c6f04d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "What is the purpose of weighting each task-robot combination by $n^{0.43}$ in the pre-training mixture?",
+ "choices": [
+ "To give more weight to overrepresented tasks",
+ "To down-weight overrepresented combinations",
+ "To exclude rare tasks",
+ "To normalize action dimensions"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the purpose of weighting each task-robot combination by $n^{0.43}$ in the pre-training mixture?\nAnswer:",
+ " To give more weight to overrepresented tasks"
+ ],
+ [
+ "Question:What is the purpose of weighting each task-robot combination by $n^{0.43}$ in the pre-training mixture?\nAnswer:",
+ " To down-weight overrepresented combinations"
+ ],
+ [
+ "Question:What is the purpose of weighting each task-robot combination by $n^{0.43}$ in the pre-training mixture?\nAnswer:",
+ " To exclude rare tasks"
+ ],
+ [
+ "Question:What is the purpose of weighting each task-robot combination by $n^{0.43}$ in the pre-training mixture?\nAnswer:",
+ " To normalize action dimensions"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.754289627075195,
+ false
+ ]
+ ],
+ [
+ [
+ -28.06523895263672,
+ false
+ ]
+ ],
+ [
+ [
+ -18.77325439453125,
+ false
+ ]
+ ],
+ [
+ [
+ -24.841075897216797,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.754289627075195,
+ false
+ ],
+ [
+ -28.06523895263672,
+ false
+ ],
+ [
+ -18.77325439453125,
+ false
+ ],
+ [
+ -24.841075897216797,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ae68a34690e4101ae12959abbabd3d053cfe34bc5cdc918da5cc0668c788706b",
+ "prompt_hash": "cbee554b6bf15797b1f6b7df3a5f97907a8c24a124c42fc767a8197d561e4d63",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "What is the control frequency that the action chunking architecture enables for dexterous tasks such as laundry folding?",
+ "choices": [
+ "2 Hz",
+ "10 Hz",
+ "25 Hz",
+ "50 Hz"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the control frequency that the action chunking architecture enables for dexterous tasks such as laundry folding?\nAnswer:",
+ " 2 Hz"
+ ],
+ [
+ "Question:What is the control frequency that the action chunking architecture enables for dexterous tasks such as laundry folding?\nAnswer:",
+ " 10 Hz"
+ ],
+ [
+ "Question:What is the control frequency that the action chunking architecture enables for dexterous tasks such as laundry folding?\nAnswer:",
+ " 25 Hz"
+ ],
+ [
+ "Question:What is the control frequency that the action chunking architecture enables for dexterous tasks such as laundry folding?\nAnswer:",
+ " 50 Hz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.943455696105957,
+ false
+ ]
+ ],
+ [
+ [
+ -5.619145393371582,
+ false
+ ]
+ ],
+ [
+ [
+ -7.140289306640625,
+ false
+ ]
+ ],
+ [
+ [
+ -7.105968952178955,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.943455696105957,
+ false
+ ],
+ [
+ -5.619145393371582,
+ false
+ ],
+ [
+ -7.140289306640625,
+ false
+ ],
+ [
+ -7.105968952178955,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0d1c836e5acfd601aca57b114c2e4b75c32aeb471d59df90b0932f0ad5ce0efd",
+ "prompt_hash": "699d91475e58382dad8ac2e319ff793e97e57a1799094f57e59be2c803407bde",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "Which optimizer was used for the weight fitting procedure?",
+ "choices": [
+ "SGD",
+ "Adam",
+ "RMSProp",
+ "Adagrad"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which optimizer was used for the weight fitting procedure?\nAnswer:",
+ " SGD"
+ ],
+ [
+ "Question:Which optimizer was used for the weight fitting procedure?\nAnswer:",
+ " Adam"
+ ],
+ [
+ "Question:Which optimizer was used for the weight fitting procedure?\nAnswer:",
+ " RMSProp"
+ ],
+ [
+ "Question:Which optimizer was used for the weight fitting procedure?\nAnswer:",
+ " Adagrad"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.789969444274902,
+ false
+ ]
+ ],
+ [
+ [
+ -2.538813591003418,
+ false
+ ]
+ ],
+ [
+ [
+ -6.673875331878662,
+ false
+ ]
+ ],
+ [
+ [
+ -5.803485870361328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.789969444274902,
+ false
+ ],
+ [
+ -2.538813591003418,
+ false
+ ],
+ [
+ -6.673875331878662,
+ false
+ ],
+ [
+ -5.803485870361328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "090dde0ae1db7d78793c9d6912aa6afb8c8f6488d175d3c5ea5850dc65750634",
+ "prompt_hash": "7aee1cbf7079e009ad787cb4272dd65a51025f5d2c300668e30a7dd42218369a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "How many completions were manually labeled in the Gold set?",
+ "choices": [
+ "268",
+ "132",
+ "518",
+ "118"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many completions were manually labeled in the Gold set?\nAnswer:",
+ " 268"
+ ],
+ [
+ "Question:How many completions were manually labeled in the Gold set?\nAnswer:",
+ " 132"
+ ],
+ [
+ "Question:How many completions were manually labeled in the Gold set?\nAnswer:",
+ " 518"
+ ],
+ [
+ "Question:How many completions were manually labeled in the Gold set?\nAnswer:",
+ " 118"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.861661911010742,
+ false
+ ]
+ ],
+ [
+ [
+ -6.840625762939453,
+ false
+ ]
+ ],
+ [
+ [
+ -8.422104835510254,
+ false
+ ]
+ ],
+ [
+ [
+ -6.897829055786133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.861661911010742,
+ false
+ ],
+ [
+ -6.840625762939453,
+ false
+ ],
+ [
+ -8.422104835510254,
+ false
+ ],
+ [
+ -6.897829055786133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9de3ad02da421e52280aa159084cbd6ea988739691cdd2ffc4d2109cc4b80c81",
+ "prompt_hash": "9d41457bfedf823bd9b92b57415b78e62d7f5a14128f49243121a9c5d230afed",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "What was the learning rate used during weight fitting?",
+ "choices": [
+ "0.001",
+ "0.01",
+ "0.05",
+ "0.1"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What was the learning rate used during weight fitting?\nAnswer:",
+ " 0.001"
+ ],
+ [
+ "Question:What was the learning rate used during weight fitting?\nAnswer:",
+ " 0.01"
+ ],
+ [
+ "Question:What was the learning rate used during weight fitting?\nAnswer:",
+ " 0.05"
+ ],
+ [
+ "Question:What was the learning rate used during weight fitting?\nAnswer:",
+ " 0.1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.894764423370361,
+ false
+ ]
+ ],
+ [
+ [
+ -4.790251731872559,
+ false
+ ]
+ ],
+ [
+ [
+ -6.303414344787598,
+ false
+ ]
+ ],
+ [
+ [
+ -5.2953596115112305,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.894764423370361,
+ false
+ ],
+ [
+ -4.790251731872559,
+ false
+ ],
+ [
+ -6.303414344787598,
+ false
+ ],
+ [
+ -5.2953596115112305,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4324393b6c3286950e5766986366bc8e8568567b195d8a801d217c700e457dae",
+ "prompt_hash": "fad73082b060c33f0c83c2209196e99cc73ff6237e07ebb4a45d4124a70d6842",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "Which content policy areas were considered in the experiments?",
+ "choices": [
+ "Erotic Content, Hate Speech, Criminal Advice, Self-Harm",
+ "Political Speech, Hate Speech, Spam, Self-Harm",
+ "Fraud, Hate Speech, Misinformation, Self-Harm",
+ "Erotic Content, Terrorism, Criminal Advice, Bullying"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which content policy areas were considered in the experiments?\nAnswer:",
+ " Erotic Content, Hate Speech, Criminal Advice, Self-Harm"
+ ],
+ [
+ "Question:Which content policy areas were considered in the experiments?\nAnswer:",
+ " Political Speech, Hate Speech, Spam, Self-Harm"
+ ],
+ [
+ "Question:Which content policy areas were considered in the experiments?\nAnswer:",
+ " Fraud, Hate Speech, Misinformation, Self-Harm"
+ ],
+ [
+ "Question:Which content policy areas were considered in the experiments?\nAnswer:",
+ " Erotic Content, Terrorism, Criminal Advice, Bullying"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -43.40247344970703,
+ false
+ ]
+ ],
+ [
+ [
+ -37.416038513183594,
+ false
+ ]
+ ],
+ [
+ [
+ -29.05992889404297,
+ false
+ ]
+ ],
+ [
+ [
+ -49.14972686767578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -43.40247344970703,
+ false
+ ],
+ [
+ -37.416038513183594,
+ false
+ ],
+ [
+ -29.05992889404297,
+ false
+ ],
+ [
+ -49.14972686767578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ec1dc5d71815891ddedae21bbe7cc1a744059a5e451c5bcc2093a92d4e0a6118",
+ "prompt_hash": "c03957363758c5755716117db8f5e52b831f079592e8fbcb8ae08130ab55f79e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "What was the size of the synthetically generated RBR weight fitting comparison dataset ($\\\\DRBR$)?",
+ "choices": [
+ "~6.7K",
+ "518",
+ "6.7K * 4",
+ "3K"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was the size of the synthetically generated RBR weight fitting comparison dataset ($\\\\DRBR$)?\nAnswer:",
+ " ~6.7K"
+ ],
+ [
+ "Question:What was the size of the synthetically generated RBR weight fitting comparison dataset ($\\\\DRBR$)?\nAnswer:",
+ " 518"
+ ],
+ [
+ "Question:What was the size of the synthetically generated RBR weight fitting comparison dataset ($\\\\DRBR$)?\nAnswer:",
+ " 6.7K * 4"
+ ],
+ [
+ "Question:What was the size of the synthetically generated RBR weight fitting comparison dataset ($\\\\DRBR$)?\nAnswer:",
+ " 3K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.00811004638672,
+ false
+ ]
+ ],
+ [
+ [
+ -9.766897201538086,
+ false
+ ]
+ ],
+ [
+ [
+ -26.137615203857422,
+ false
+ ]
+ ],
+ [
+ [
+ -9.225601196289062,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.00811004638672,
+ false
+ ],
+ [
+ -9.766897201538086,
+ false
+ ],
+ [
+ -26.137615203857422,
+ false
+ ],
+ [
+ -9.225601196289062,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7ee279fed47dd700458e5d931b275ac58723b8d23378f36ec4753610edbda3ca",
+ "prompt_hash": "8698351b05ba5a7514fea881bafb225b56a1c0c8657ba5062889ef7098db1c3e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "How many short, fact-seeking questions are included in the SimpleQA benchmark?",
+ "choices": [
+ "3,500",
+ "4,326",
+ "5,200",
+ "6,000"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many short, fact-seeking questions are included in the SimpleQA benchmark?\nAnswer:",
+ " 3,500"
+ ],
+ [
+ "Question:How many short, fact-seeking questions are included in the SimpleQA benchmark?\nAnswer:",
+ " 4,326"
+ ],
+ [
+ "Question:How many short, fact-seeking questions are included in the SimpleQA benchmark?\nAnswer:",
+ " 5,200"
+ ],
+ [
+ "Question:How many short, fact-seeking questions are included in the SimpleQA benchmark?\nAnswer:",
+ " 6,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.849647521972656,
+ false
+ ]
+ ],
+ [
+ [
+ -15.20968246459961,
+ false
+ ]
+ ],
+ [
+ [
+ -13.093934059143066,
+ false
+ ]
+ ],
+ [
+ [
+ -9.874208450317383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.849647521972656,
+ false
+ ],
+ [
+ -15.20968246459961,
+ false
+ ],
+ [
+ -13.093934059143066,
+ false
+ ],
+ [
+ -9.874208450317383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b99421e5a3ca71704d84295315f2f7d05abf1b053eea290e1385acdf3a8c58cd",
+ "prompt_hash": "73ea9f9187b6d5d8d6c3ca3d9892d2a486a91e14344cae62dc4d2ec031148a3b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "Which U.S. TV station did the Canadian reality series 'To Serve and Protect' debut on?",
+ "choices": [
+ "CBS",
+ "NBC",
+ "KVOS-TV",
+ "FOX"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which U.S. TV station did the Canadian reality series 'To Serve and Protect' debut on?\nAnswer:",
+ " CBS"
+ ],
+ [
+ "Question:Which U.S. TV station did the Canadian reality series 'To Serve and Protect' debut on?\nAnswer:",
+ " NBC"
+ ],
+ [
+ "Question:Which U.S. TV station did the Canadian reality series 'To Serve and Protect' debut on?\nAnswer:",
+ " KVOS-TV"
+ ],
+ [
+ "Question:Which U.S. TV station did the Canadian reality series 'To Serve and Protect' debut on?\nAnswer:",
+ " FOX"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.485742568969727,
+ false
+ ]
+ ],
+ [
+ [
+ -4.589082717895508,
+ false
+ ]
+ ],
+ [
+ [
+ -20.12972640991211,
+ false
+ ]
+ ],
+ [
+ [
+ -7.1394171714782715,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.485742568969727,
+ false
+ ],
+ [
+ -4.589082717895508,
+ false
+ ],
+ [
+ -20.12972640991211,
+ false
+ ],
+ [
+ -7.1394171714782715,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d47ff8aed5c4c8e891737fc835f92eaec4e7017a5027c46907f35c132f267484",
+ "prompt_hash": "c3c6b529c8d2cdd703d3ee5d1cb1fb9247e86a111d23697441045befcd7dedc1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "According to the dataset diversity analysis, which topic had the largest number of questions in SimpleQA?",
+ "choices": [
+ "Art",
+ "Science & Technology",
+ "Politics",
+ "Sports"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:According to the dataset diversity analysis, which topic had the largest number of questions in SimpleQA?\nAnswer:",
+ " Art"
+ ],
+ [
+ "Question:According to the dataset diversity analysis, which topic had the largest number of questions in SimpleQA?\nAnswer:",
+ " Science & Technology"
+ ],
+ [
+ "Question:According to the dataset diversity analysis, which topic had the largest number of questions in SimpleQA?\nAnswer:",
+ " Politics"
+ ],
+ [
+ "Question:According to the dataset diversity analysis, which topic had the largest number of questions in SimpleQA?\nAnswer:",
+ " Sports"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.214799404144287,
+ false
+ ]
+ ],
+ [
+ [
+ -19.02574920654297,
+ false
+ ]
+ ],
+ [
+ [
+ -5.521854877471924,
+ false
+ ]
+ ],
+ [
+ [
+ -7.079794406890869,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.214799404144287,
+ false
+ ],
+ [
+ -19.02574920654297,
+ false
+ ],
+ [
+ -5.521854877471924,
+ false
+ ],
+ [
+ -7.079794406890869,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2a14bf241290cd59c02e68a8a871233553960d2d6b92ecef98384c9d0295d751",
+ "prompt_hash": "457e06339f9efb9f7a4fe366fb0483f40a53b329c2841f568610f8dc85099a12",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "What percentage of SimpleQA answers were classified as dates?",
+ "choices": [
+ "15.3%",
+ "18.0%",
+ "24.1%",
+ "32.8%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What percentage of SimpleQA answers were classified as dates?\nAnswer:",
+ " 15.3%"
+ ],
+ [
+ "Question:What percentage of SimpleQA answers were classified as dates?\nAnswer:",
+ " 18.0%"
+ ],
+ [
+ "Question:What percentage of SimpleQA answers were classified as dates?\nAnswer:",
+ " 24.1%"
+ ],
+ [
+ "Question:What percentage of SimpleQA answers were classified as dates?\nAnswer:",
+ " 32.8%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.22205924987793,
+ false
+ ]
+ ],
+ [
+ [
+ -13.355619430541992,
+ false
+ ]
+ ],
+ [
+ [
+ -13.3021240234375,
+ false
+ ]
+ ],
+ [
+ [
+ -12.97262191772461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.22205924987793,
+ false
+ ],
+ [
+ -13.355619430541992,
+ false
+ ],
+ [
+ -13.3021240234375,
+ false
+ ],
+ [
+ -12.97262191772461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "70fe071bc00888a605080b6809c984dd38af6f592b3cf8fac781c0cc5debfe9a",
+ "prompt_hash": "0d0f0a519437a8b378320b22a982baf60b834b7a212efccfd6cdbc0c8a76f27c",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "Who received the IEEE Frank Rosenblatt Award in 2010?",
+ "choices": [
+ "Geoffrey Hinton",
+ "Yoshua Bengio",
+ "Michio Sugeno",
+ "Yann LeCun"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Who received the IEEE Frank Rosenblatt Award in 2010?\nAnswer:",
+ " Geoffrey Hinton"
+ ],
+ [
+ "Question:Who received the IEEE Frank Rosenblatt Award in 2010?\nAnswer:",
+ " Yoshua Bengio"
+ ],
+ [
+ "Question:Who received the IEEE Frank Rosenblatt Award in 2010?\nAnswer:",
+ " Michio Sugeno"
+ ],
+ [
+ "Question:Who received the IEEE Frank Rosenblatt Award in 2010?\nAnswer:",
+ " Yann LeCun"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.306613445281982,
+ false
+ ]
+ ],
+ [
+ [
+ -8.654630661010742,
+ false
+ ]
+ ],
+ [
+ [
+ -18.297204971313477,
+ false
+ ]
+ ],
+ [
+ [
+ -9.778219223022461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.306613445281982,
+ false
+ ],
+ [
+ -8.654630661010742,
+ false
+ ],
+ [
+ -18.297204971313477,
+ false
+ ],
+ [
+ -9.778219223022461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4856395e23d1b486e1805d9ddc475e84c1e94fdea8e608fec4a76c055406f2d1",
+ "prompt_hash": "84f9802f578f7253fd0d08d4ab097d2cca0f113c9ca1fa0bde7bd0d654aa68e9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "How many subjects are covered in the MMLU benchmark?",
+ "choices": [
+ "57",
+ "45",
+ "63",
+ "52"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many subjects are covered in the MMLU benchmark?\nAnswer:",
+ " 57"
+ ],
+ [
+ "Question:How many subjects are covered in the MMLU benchmark?\nAnswer:",
+ " 45"
+ ],
+ [
+ "Question:How many subjects are covered in the MMLU benchmark?\nAnswer:",
+ " 63"
+ ],
+ [
+ "Question:How many subjects are covered in the MMLU benchmark?\nAnswer:",
+ " 52"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.606266021728516,
+ false
+ ]
+ ],
+ [
+ [
+ -6.3166961669921875,
+ false
+ ]
+ ],
+ [
+ [
+ -7.257956504821777,
+ false
+ ]
+ ],
+ [
+ [
+ -5.796786308288574,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.606266021728516,
+ false
+ ],
+ [
+ -6.3166961669921875,
+ false
+ ],
+ [
+ -7.257956504821777,
+ false
+ ],
+ [
+ -5.796786308288574,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c1da0f228cb3f562ef18855bb58eb38974856f02b0c3d6b81cff1f66ca2a7330",
+ "prompt_hash": "f592d4ab3de93b612df4c290531f42796baea4eb2e26217eb2204b2d5797b70b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "What evaluation metric is used for the HumanEval dataset?",
+ "choices": [
+ "BLEU score",
+ "Accuracy",
+ "pass@1",
+ "F1 score"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What evaluation metric is used for the HumanEval dataset?\nAnswer:",
+ " BLEU score"
+ ],
+ [
+ "Question:What evaluation metric is used for the HumanEval dataset?\nAnswer:",
+ " Accuracy"
+ ],
+ [
+ "Question:What evaluation metric is used for the HumanEval dataset?\nAnswer:",
+ " pass@1"
+ ],
+ [
+ "Question:What evaluation metric is used for the HumanEval dataset?\nAnswer:",
+ " F1 score"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.921050071716309,
+ false
+ ]
+ ],
+ [
+ [
+ -5.304507732391357,
+ false
+ ]
+ ],
+ [
+ [
+ -8.254301071166992,
+ false
+ ]
+ ],
+ [
+ [
+ -6.906661033630371,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.921050071716309,
+ false
+ ],
+ [
+ -5.304507732391357,
+ false
+ ],
+ [
+ -8.254301071166992,
+ false
+ ],
+ [
+ -6.906661033630371,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6a4660cb3646307034774e93d85c6d72209b4ca41a5df7903df763e627d8573d",
+ "prompt_hash": "05e0f4eabe8be341cf59c011a598fcca173afacbaa69dd8923e7041dd37edd1d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "Which programming languages are involved in the CODEXGLUE dataset for code translation?",
+ "choices": [
+ "Python and Go",
+ "Java and C-Sharp",
+ "JavaScript and Ruby",
+ "C++ and Rust"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which programming languages are involved in the CODEXGLUE dataset for code translation?\nAnswer:",
+ " Python and Go"
+ ],
+ [
+ "Question:Which programming languages are involved in the CODEXGLUE dataset for code translation?\nAnswer:",
+ " Java and C-Sharp"
+ ],
+ [
+ "Question:Which programming languages are involved in the CODEXGLUE dataset for code translation?\nAnswer:",
+ " JavaScript and Ruby"
+ ],
+ [
+ "Question:Which programming languages are involved in the CODEXGLUE dataset for code translation?\nAnswer:",
+ " C++ and Rust"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.412498474121094,
+ false
+ ]
+ ],
+ [
+ [
+ -16.453357696533203,
+ false
+ ]
+ ],
+ [
+ [
+ -10.993216514587402,
+ false
+ ]
+ ],
+ [
+ [
+ -11.8782958984375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.412498474121094,
+ false
+ ],
+ [
+ -16.453357696533203,
+ false
+ ],
+ [
+ -10.993216514587402,
+ false
+ ],
+ [
+ -11.8782958984375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6607f36aaafbab5635ca3d0516438a7bfb48e4f4b45e146a71ee003072753675",
+ "prompt_hash": "3e132e3c2fb334c40e1ba4facbfda3b456123737b67a644b42cd76489493a8eb",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "How many total samples are included in the HumanEval dataset?",
+ "choices": [
+ "164",
+ "200",
+ "500",
+ "1000"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many total samples are included in the HumanEval dataset?\nAnswer:",
+ " 164"
+ ],
+ [
+ "Question:How many total samples are included in the HumanEval dataset?\nAnswer:",
+ " 200"
+ ],
+ [
+ "Question:How many total samples are included in the HumanEval dataset?\nAnswer:",
+ " 500"
+ ],
+ [
+ "Question:How many total samples are included in the HumanEval dataset?\nAnswer:",
+ " 1000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.63142204284668,
+ false
+ ]
+ ],
+ [
+ [
+ -4.791470527648926,
+ false
+ ]
+ ],
+ [
+ [
+ -4.627772331237793,
+ false
+ ]
+ ],
+ [
+ [
+ -4.572315692901611,
+ true
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.63142204284668,
+ false
+ ],
+ [
+ -4.791470527648926,
+ false
+ ],
+ [
+ -4.627772331237793,
+ false
+ ],
+ [
+ -4.572315692901611,
+ true
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8a593a36da549ab39302960a4ce5b84f98c4ba2cf0ee9912a92b0161990963f4",
+ "prompt_hash": "aa0d9a994fe693ac1b36b62dce0fe1bcc5858e551a69b9932ce351a5b7c7c88e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "What is the size of the FIND benchmark subset used in evaluation?",
+ "choices": [
+ "200 functions",
+ "500 functions",
+ "820 functions",
+ "1000 functions"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the size of the FIND benchmark subset used in evaluation?\nAnswer:",
+ " 200 functions"
+ ],
+ [
+ "Question:What is the size of the FIND benchmark subset used in evaluation?\nAnswer:",
+ " 500 functions"
+ ],
+ [
+ "Question:What is the size of the FIND benchmark subset used in evaluation?\nAnswer:",
+ " 820 functions"
+ ],
+ [
+ "Question:What is the size of the FIND benchmark subset used in evaluation?\nAnswer:",
+ " 1000 functions"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.669370651245117,
+ false
+ ]
+ ],
+ [
+ [
+ -14.397915840148926,
+ false
+ ]
+ ],
+ [
+ [
+ -19.312631607055664,
+ false
+ ]
+ ],
+ [
+ [
+ -14.173040390014648,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.669370651245117,
+ false
+ ],
+ [
+ -14.397915840148926,
+ false
+ ],
+ [
+ -19.312631607055664,
+ false
+ ],
+ [
+ -14.173040390014648,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3a4b93b9301b5f196f596c1d88217f8055d17447b91145d6bdde5f118c870feb",
+ "prompt_hash": "c2457c947e0ab2dc92e423641a122338685f4821906af3091fce7438e74cd40d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "What was the total token count of the RedPajama-V1 dataset?",
+ "choices": [
+ "1.2 Trillion",
+ "3.0 Trillion",
+ "878 Billion",
+ "2.8 Trillion"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What was the total token count of the RedPajama-V1 dataset?\nAnswer:",
+ " 1.2 Trillion"
+ ],
+ [
+ "Question:What was the total token count of the RedPajama-V1 dataset?\nAnswer:",
+ " 3.0 Trillion"
+ ],
+ [
+ "Question:What was the total token count of the RedPajama-V1 dataset?\nAnswer:",
+ " 878 Billion"
+ ],
+ [
+ "Question:What was the total token count of the RedPajama-V1 dataset?\nAnswer:",
+ " 2.8 Trillion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.873974800109863,
+ false
+ ]
+ ],
+ [
+ [
+ -17.502328872680664,
+ false
+ ]
+ ],
+ [
+ [
+ -16.340862274169922,
+ false
+ ]
+ ],
+ [
+ [
+ -14.272342681884766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.873974800109863,
+ false
+ ],
+ [
+ -17.502328872680664,
+ false
+ ],
+ [
+ -16.340862274169922,
+ false
+ ],
+ [
+ -14.272342681884766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "343df6d4a5c375184cbd53649f5a4ce41db0cefeec9ec624869da66e561e6f23",
+ "prompt_hash": "38bf56f206f6e40bed40f0873a1f9fd49f9026c986fa0c744a31b7edd92ed879",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "Which architecture was used to train the RedPajama-INCITE models on the Summit supercomputer?",
+ "choices": [
+ "Intel Xeon",
+ "IBM Power9",
+ "Apple M1",
+ "AMD EPYC"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which architecture was used to train the RedPajama-INCITE models on the Summit supercomputer?\nAnswer:",
+ " Intel Xeon"
+ ],
+ [
+ "Question:Which architecture was used to train the RedPajama-INCITE models on the Summit supercomputer?\nAnswer:",
+ " IBM Power9"
+ ],
+ [
+ "Question:Which architecture was used to train the RedPajama-INCITE models on the Summit supercomputer?\nAnswer:",
+ " Apple M1"
+ ],
+ [
+ "Question:Which architecture was used to train the RedPajama-INCITE models on the Summit supercomputer?\nAnswer:",
+ " AMD EPYC"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.685319900512695,
+ false
+ ]
+ ],
+ [
+ [
+ -16.690317153930664,
+ false
+ ]
+ ],
+ [
+ [
+ -14.072364807128906,
+ false
+ ]
+ ],
+ [
+ [
+ -12.965118408203125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.685319900512695,
+ false
+ ],
+ [
+ -16.690317153930664,
+ false
+ ],
+ [
+ -14.072364807128906,
+ false
+ ],
+ [
+ -12.965118408203125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c07272860702c841e10c51dec9727d2a1539d601ba161c4ed979bec80a7548db",
+ "prompt_hash": "27c2c137ee521266467ce7e2661c2de39e14ca9bd7ced8e64e883be01b78572d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "How many Common Crawl snapshots were used to create RedPajama-V2?",
+ "choices": [
+ "5",
+ "12",
+ "84",
+ "46"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many Common Crawl snapshots were used to create RedPajama-V2?\nAnswer:",
+ " 5"
+ ],
+ [
+ "Question:How many Common Crawl snapshots were used to create RedPajama-V2?\nAnswer:",
+ " 12"
+ ],
+ [
+ "Question:How many Common Crawl snapshots were used to create RedPajama-V2?\nAnswer:",
+ " 84"
+ ],
+ [
+ "Question:How many Common Crawl snapshots were used to create RedPajama-V2?\nAnswer:",
+ " 46"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.648129940032959,
+ false
+ ]
+ ],
+ [
+ [
+ -4.735817909240723,
+ false
+ ]
+ ],
+ [
+ [
+ -7.701600074768066,
+ false
+ ]
+ ],
+ [
+ [
+ -6.892649173736572,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.648129940032959,
+ false
+ ],
+ [
+ -4.735817909240723,
+ false
+ ],
+ [
+ -7.701600074768066,
+ false
+ ],
+ [
+ -6.892649173736572,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c98d0ea6b984a0c02763b82495d98ecafe07e6c8d1172f5b059883d48745bb45",
+ "prompt_hash": "df25701a85694241d855e290288603b96157d5f225d32e35399fc9937194fe76",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "Which five languages are included in RedPajama-V2?",
+ "choices": [
+ "English, German, French, Spanish, Italian",
+ "English, Chinese, Japanese, Korean, French",
+ "English, Russian, Portuguese, German, Spanish",
+ "English, Hindi, Arabic, French, Italian"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which five languages are included in RedPajama-V2?\nAnswer:",
+ " English, German, French, Spanish, Italian"
+ ],
+ [
+ "Question:Which five languages are included in RedPajama-V2?\nAnswer:",
+ " English, Chinese, Japanese, Korean, French"
+ ],
+ [
+ "Question:Which five languages are included in RedPajama-V2?\nAnswer:",
+ " English, Russian, Portuguese, German, Spanish"
+ ],
+ [
+ "Question:Which five languages are included in RedPajama-V2?\nAnswer:",
+ " English, Hindi, Arabic, French, Italian"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.228062629699707,
+ false
+ ]
+ ],
+ [
+ [
+ -14.981597900390625,
+ false
+ ]
+ ],
+ [
+ [
+ -18.74696922302246,
+ false
+ ]
+ ],
+ [
+ [
+ -16.782047271728516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.228062629699707,
+ false
+ ],
+ [
+ -14.981597900390625,
+ false
+ ],
+ [
+ -18.74696922302246,
+ false
+ ],
+ [
+ -16.782047271728516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ffad02ec878dccdcdb3f69be4e6cb3c3ab7299eaf77297b1fd06c7fb4a14aaac",
+ "prompt_hash": "b02bb87f442385006941957c27541b2a25db5ba040cf7f8361e92ff644650c9e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What was the total number of documents in the RedPajama-V2 dataset?",
+ "choices": [
+ "32.8 Billion",
+ "113.3 Billion",
+ "87.5 Billion",
+ "50.7 Billion"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What was the total number of documents in the RedPajama-V2 dataset?\nAnswer:",
+ " 32.8 Billion"
+ ],
+ [
+ "Question:What was the total number of documents in the RedPajama-V2 dataset?\nAnswer:",
+ " 113.3 Billion"
+ ],
+ [
+ "Question:What was the total number of documents in the RedPajama-V2 dataset?\nAnswer:",
+ " 87.5 Billion"
+ ],
+ [
+ "Question:What was the total number of documents in the RedPajama-V2 dataset?\nAnswer:",
+ " 50.7 Billion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.723188400268555,
+ false
+ ]
+ ],
+ [
+ [
+ -19.00351333618164,
+ false
+ ]
+ ],
+ [
+ [
+ -17.76470947265625,
+ false
+ ]
+ ],
+ [
+ [
+ -17.174829483032227,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.723188400268555,
+ false
+ ],
+ [
+ -19.00351333618164,
+ false
+ ],
+ [
+ -17.76470947265625,
+ false
+ ],
+ [
+ -17.174829483032227,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cd2499d878b3dbdfcbcc7b73b842f7265b17497e41e5ed6877c38f04e3c04df0",
+ "prompt_hash": "86ede63365518aa6a0c4469591e5d3a720087f05e09a59ead51ed51cdb9eabbc",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "Which base model was fine-tuned to create Marco-o1-CoT?",
+ "choices": [
+ "LLaMA-2-13B",
+ "Qwen2-7B-Instruct",
+ "GPT-3.5",
+ "Mistral-7B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which base model was fine-tuned to create Marco-o1-CoT?\nAnswer:",
+ " LLaMA-2-13B"
+ ],
+ [
+ "Question:Which base model was fine-tuned to create Marco-o1-CoT?\nAnswer:",
+ " Qwen2-7B-Instruct"
+ ],
+ [
+ "Question:Which base model was fine-tuned to create Marco-o1-CoT?\nAnswer:",
+ " GPT-3.5"
+ ],
+ [
+ "Question:Which base model was fine-tuned to create Marco-o1-CoT?\nAnswer:",
+ " Mistral-7B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.792409896850586,
+ false
+ ]
+ ],
+ [
+ [
+ -12.102909088134766,
+ false
+ ]
+ ],
+ [
+ [
+ -5.229546070098877,
+ false
+ ]
+ ],
+ [
+ [
+ -6.480302810668945,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.792409896850586,
+ false
+ ],
+ [
+ -12.102909088134766,
+ false
+ ],
+ [
+ -5.229546070098877,
+ false
+ ],
+ [
+ -6.480302810668945,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "854e0f9653c3da0877c954e315bb63f134dabd432dad36ecd6086e36e77b6f4a",
+ "prompt_hash": "05924aef3a26920fc1c2502accd55e327b7cffc40a6128c2e9eb69d62435b3d8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "How many samples are included in the Marco-o1 CoT Dataset (Synthetic)?",
+ "choices": [
+ "45,125",
+ "10,000",
+ "5,141",
+ "60,266"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many samples are included in the Marco-o1 CoT Dataset (Synthetic)?\nAnswer:",
+ " 45,125"
+ ],
+ [
+ "Question:How many samples are included in the Marco-o1 CoT Dataset (Synthetic)?\nAnswer:",
+ " 10,000"
+ ],
+ [
+ "Question:How many samples are included in the Marco-o1 CoT Dataset (Synthetic)?\nAnswer:",
+ " 5,141"
+ ],
+ [
+ "Question:How many samples are included in the Marco-o1 CoT Dataset (Synthetic)?\nAnswer:",
+ " 60,266"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.957291603088379,
+ false
+ ]
+ ],
+ [
+ [
+ -5.9744343757629395,
+ false
+ ]
+ ],
+ [
+ [
+ -13.689861297607422,
+ false
+ ]
+ ],
+ [
+ [
+ -16.420578002929688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.957291603088379,
+ false
+ ],
+ [
+ -5.9744343757629395,
+ false
+ ],
+ [
+ -13.689861297607422,
+ false
+ ],
+ [
+ -16.420578002929688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "027cd7fa470750d66dabff86af0374caba6f6d4e90d8d1f3e1a558c7cfe74d9a",
+ "prompt_hash": "470ba892ff98e50aac9bef0ef10e99661216ce36d267acb86701c7b114cee2d1",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "What improvement in accuracy did Marco-o1 achieve on the MGSM (English) dataset compared to its baseline?",
+ "choices": [
+ "+4.10%",
+ "+6.17%",
+ "+5.60%",
+ "+7.25%"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What improvement in accuracy did Marco-o1 achieve on the MGSM (English) dataset compared to its baseline?\nAnswer:",
+ " +4.10%"
+ ],
+ [
+ "Question:What improvement in accuracy did Marco-o1 achieve on the MGSM (English) dataset compared to its baseline?\nAnswer:",
+ " +6.17%"
+ ],
+ [
+ "Question:What improvement in accuracy did Marco-o1 achieve on the MGSM (English) dataset compared to its baseline?\nAnswer:",
+ " +5.60%"
+ ],
+ [
+ "Question:What improvement in accuracy did Marco-o1 achieve on the MGSM (English) dataset compared to its baseline?\nAnswer:",
+ " +7.25%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.366485595703125,
+ false
+ ]
+ ],
+ [
+ [
+ -20.923389434814453,
+ false
+ ]
+ ],
+ [
+ [
+ -20.500133514404297,
+ false
+ ]
+ ],
+ [
+ [
+ -20.437623977661133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.366485595703125,
+ false
+ ],
+ [
+ -20.923389434814453,
+ false
+ ],
+ [
+ -20.500133514404297,
+ false
+ ],
+ [
+ -20.437623977661133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3b81c9861f63328c55eee8f9a171bc29ee04e18fc8c291667a8318746146b4d3",
+ "prompt_hash": "0ea6e0375ab9dec9aa8b8bf8d07007c702d0b13ff85345c2eeac5c15062d23ac",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "In the MCTS framework, what does each node represent?",
+ "choices": [
+ "A reasoning state",
+ "A dataset sample",
+ "A confidence score",
+ "A translation example"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:In the MCTS framework, what does each node represent?\nAnswer:",
+ " A reasoning state"
+ ],
+ [
+ "Question:In the MCTS framework, what does each node represent?\nAnswer:",
+ " A dataset sample"
+ ],
+ [
+ "Question:In the MCTS framework, what does each node represent?\nAnswer:",
+ " A confidence score"
+ ],
+ [
+ "Question:In the MCTS framework, what does each node represent?\nAnswer:",
+ " A translation example"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.532194137573242,
+ false
+ ]
+ ],
+ [
+ [
+ -17.33028793334961,
+ false
+ ]
+ ],
+ [
+ [
+ -15.44752311706543,
+ false
+ ]
+ ],
+ [
+ [
+ -23.827362060546875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.532194137573242,
+ false
+ ],
+ [
+ -17.33028793334961,
+ false
+ ],
+ [
+ -15.44752311706543,
+ false
+ ],
+ [
+ -23.827362060546875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "da0d104d4c28b6023871cd7c042e6100b946db17c1487fc3fdab43d0280f16ee",
+ "prompt_hash": "917998b7b8619495489d5230e2c452d9a10f4ea710ccf4b965290ffedde46aef",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "What reflection prompt was added to encourage self-criticism in reasoning?",
+ "choices": [
+ "Think again carefully before answering.",
+ "Wait! Maybe I made some mistakes! I need to rethink from scratch.",
+ "Check your reasoning one more time.",
+ "Be cautious, errors may occur."
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What reflection prompt was added to encourage self-criticism in reasoning?\nAnswer:",
+ " Think again carefully before answering."
+ ],
+ [
+ "Question:What reflection prompt was added to encourage self-criticism in reasoning?\nAnswer:",
+ " Wait! Maybe I made some mistakes! I need to rethink from scratch."
+ ],
+ [
+ "Question:What reflection prompt was added to encourage self-criticism in reasoning?\nAnswer:",
+ " Check your reasoning one more time."
+ ],
+ [
+ "Question:What reflection prompt was added to encourage self-criticism in reasoning?\nAnswer:",
+ " Be cautious, errors may occur."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.51762580871582,
+ false
+ ]
+ ],
+ [
+ [
+ -56.214149475097656,
+ false
+ ]
+ ],
+ [
+ [
+ -22.922752380371094,
+ false
+ ]
+ ],
+ [
+ [
+ -32.4448127746582,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.51762580871582,
+ false
+ ],
+ [
+ -56.214149475097656,
+ false
+ ],
+ [
+ -22.922752380371094,
+ false
+ ],
+ [
+ -32.4448127746582,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c1db4d89e8536ae6c2c91d8b610e10f3f3c8e002eb44a61cf024ce7028741e67",
+ "prompt_hash": "ac16d04f80938514c60a3c23e4df6f1010417fdf9b3aeed1c3d69a4ba274c044",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "Which base model was selected due to its strong foundational capability in mathematical reasoning?",
+ "choices": [
+ "GPT-4o",
+ "LLaMA-2",
+ "Qwen2.5-Math-72B",
+ "WizardLM"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which base model was selected due to its strong foundational capability in mathematical reasoning?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which base model was selected due to its strong foundational capability in mathematical reasoning?\nAnswer:",
+ " LLaMA-2"
+ ],
+ [
+ "Question:Which base model was selected due to its strong foundational capability in mathematical reasoning?\nAnswer:",
+ " Qwen2.5-Math-72B"
+ ],
+ [
+ "Question:Which base model was selected due to its strong foundational capability in mathematical reasoning?\nAnswer:",
+ " WizardLM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.530148506164551,
+ false
+ ]
+ ],
+ [
+ [
+ -8.570853233337402,
+ false
+ ]
+ ],
+ [
+ [
+ -29.780563354492188,
+ false
+ ]
+ ],
+ [
+ [
+ -9.87548828125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.530148506164551,
+ false
+ ],
+ [
+ -8.570853233337402,
+ false
+ ],
+ [
+ -29.780563354492188,
+ false
+ ],
+ [
+ -9.87548828125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "642effc96f010f6d01ce3cc3d9e1e4da4cf9c0e2a95c61926efc5c2058a19767",
+ "prompt_hash": "eaba60c4953a3f517eb30c9042d6f00862ccf2dcf8c249eaba2737571adc36dd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "Which dataset subset was used to facilitate more extensive inference-time scaling experiments?",
+ "choices": [
+ "AIME2024",
+ "MATH500",
+ "MATH2024",
+ "SimpleQA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset subset was used to facilitate more extensive inference-time scaling experiments?\nAnswer:",
+ " AIME2024"
+ ],
+ [
+ "Question:Which dataset subset was used to facilitate more extensive inference-time scaling experiments?\nAnswer:",
+ " MATH500"
+ ],
+ [
+ "Question:Which dataset subset was used to facilitate more extensive inference-time scaling experiments?\nAnswer:",
+ " MATH2024"
+ ],
+ [
+ "Question:Which dataset subset was used to facilitate more extensive inference-time scaling experiments?\nAnswer:",
+ " SimpleQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.071943283081055,
+ false
+ ]
+ ],
+ [
+ [
+ -21.142967224121094,
+ false
+ ]
+ ],
+ [
+ [
+ -20.790672302246094,
+ false
+ ]
+ ],
+ [
+ [
+ -17.837215423583984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.071943283081055,
+ false
+ ],
+ [
+ -21.142967224121094,
+ false
+ ],
+ [
+ -20.790672302246094,
+ false
+ ],
+ [
+ -17.837215423583984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "386f81490afe08849f4cdfe9479ae1093010c99a8d2b1e2c414fb2428d8ffb94",
+ "prompt_hash": "602a2d88d523c4d0f12f48973eb2892ed39d2caf4f98e09fdc10c6d983272287",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "What is the total transparency score assigned in the proposed scoring framework?",
+ "choices": [
+ "50",
+ "75",
+ "100",
+ "150"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total transparency score assigned in the proposed scoring framework?\nAnswer:",
+ " 50"
+ ],
+ [
+ "Question:What is the total transparency score assigned in the proposed scoring framework?\nAnswer:",
+ " 75"
+ ],
+ [
+ "Question:What is the total transparency score assigned in the proposed scoring framework?\nAnswer:",
+ " 100"
+ ],
+ [
+ "Question:What is the total transparency score assigned in the proposed scoring framework?\nAnswer:",
+ " 150"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.404786109924316,
+ false
+ ]
+ ],
+ [
+ [
+ -7.529520511627197,
+ false
+ ]
+ ],
+ [
+ [
+ -5.6015729904174805,
+ false
+ ]
+ ],
+ [
+ [
+ -9.762228012084961,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.404786109924316,
+ false
+ ],
+ [
+ -7.529520511627197,
+ false
+ ],
+ [
+ -5.6015729904174805,
+ false
+ ],
+ [
+ -9.762228012084961,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4c0d03e44a52a1380460a9e87840ed540aa0d5306090a4e992d9dffe62962bd6",
+ "prompt_hash": "3da4faa28aa643a53554e62566baaa9eb8c27bf624b650a137ef1d8d4a9596f3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "From which competition were 30 additional problems curated to diversify evaluation benchmarks?",
+ "choices": [
+ "American Invitational Mathematics Examination",
+ "China National High School Mathematics Competition",
+ "International Mathematical Olympiad",
+ "Putnam Competition"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:From which competition were 30 additional problems curated to diversify evaluation benchmarks?\nAnswer:",
+ " American Invitational Mathematics Examination"
+ ],
+ [
+ "Question:From which competition were 30 additional problems curated to diversify evaluation benchmarks?\nAnswer:",
+ " China National High School Mathematics Competition"
+ ],
+ [
+ "Question:From which competition were 30 additional problems curated to diversify evaluation benchmarks?\nAnswer:",
+ " International Mathematical Olympiad"
+ ],
+ [
+ "Question:From which competition were 30 additional problems curated to diversify evaluation benchmarks?\nAnswer:",
+ " Putnam Competition"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.391521453857422,
+ false
+ ]
+ ],
+ [
+ [
+ -23.65379524230957,
+ false
+ ]
+ ],
+ [
+ [
+ -7.464717388153076,
+ false
+ ]
+ ],
+ [
+ [
+ -15.607044219970703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.391521453857422,
+ false
+ ],
+ [
+ -23.65379524230957,
+ false
+ ],
+ [
+ -7.464717388153076,
+ false
+ ],
+ [
+ -15.607044219970703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "adfa9e48b2843d6e20fbfc770b373e66f427d22f799d9f27d40b51348af6a198",
+ "prompt_hash": "9e3bbcb449ce9fabe9f85c2e2cc158442c7acd6cb4a610e329e729e4b9e2f200",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "Which dataset demonstrated a drop in accuracy from 92% to 86.5% after fine-tuning?",
+ "choices": [
+ "Flames",
+ "DiaSafety",
+ "WildSafety",
+ "SimpleQA"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset demonstrated a drop in accuracy from 92% to 86.5% after fine-tuning?\nAnswer:",
+ " Flames"
+ ],
+ [
+ "Question:Which dataset demonstrated a drop in accuracy from 92% to 86.5% after fine-tuning?\nAnswer:",
+ " DiaSafety"
+ ],
+ [
+ "Question:Which dataset demonstrated a drop in accuracy from 92% to 86.5% after fine-tuning?\nAnswer:",
+ " WildSafety"
+ ],
+ [
+ "Question:Which dataset demonstrated a drop in accuracy from 92% to 86.5% after fine-tuning?\nAnswer:",
+ " SimpleQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.188251495361328,
+ false
+ ]
+ ],
+ [
+ [
+ -26.24142074584961,
+ false
+ ]
+ ],
+ [
+ [
+ -24.381790161132812,
+ false
+ ]
+ ],
+ [
+ [
+ -18.144813537597656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.188251495361328,
+ false
+ ],
+ [
+ -26.24142074584961,
+ false
+ ],
+ [
+ -24.381790161132812,
+ false
+ ],
+ [
+ -18.144813537597656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b3f4cd4668762b23da69af6238b379755d32b68bd1327203e306eaa09d42a916",
+ "prompt_hash": "003ceb9e9bd248a70d3c0a8df60b0e368e9458581e05b605cdd2f897ca650c2b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "How many screenshots were collected for web instruction-tuning data before filtering static text?",
+ "choices": [
+ "10K",
+ "15K",
+ "22K",
+ "30K"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many screenshots were collected for web instruction-tuning data before filtering static text?\nAnswer:",
+ " 10K"
+ ],
+ [
+ "Question:How many screenshots were collected for web instruction-tuning data before filtering static text?\nAnswer:",
+ " 15K"
+ ],
+ [
+ "Question:How many screenshots were collected for web instruction-tuning data before filtering static text?\nAnswer:",
+ " 22K"
+ ],
+ [
+ "Question:How many screenshots were collected for web instruction-tuning data before filtering static text?\nAnswer:",
+ " 30K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.913565635681152,
+ false
+ ]
+ ],
+ [
+ [
+ -11.398613929748535,
+ false
+ ]
+ ],
+ [
+ [
+ -11.466139793395996,
+ false
+ ]
+ ],
+ [
+ [
+ -11.128503799438477,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.913565635681152,
+ false
+ ],
+ [
+ -11.398613929748535,
+ false
+ ],
+ [
+ -11.466139793395996,
+ false
+ ],
+ [
+ -11.128503799438477,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8a0701d6015b21c37484eb7e6d9e276cf922e61fa5f4dbb92dbf6161f1177900",
+ "prompt_hash": "818b0cb599a378908e016043ae4eb55a5c8a12bb882db7d6fdbf0191f7d4325e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which dataset contains 30k instructions and 715K trajectories in an Android smartphone environment?",
+ "choices": [
+ "Mind2Web",
+ "AITW",
+ "MiniWob",
+ "OmniAct"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset contains 30k instructions and 715K trajectories in an Android smartphone environment?\nAnswer:",
+ " Mind2Web"
+ ],
+ [
+ "Question:Which dataset contains 30k instructions and 715K trajectories in an Android smartphone environment?\nAnswer:",
+ " AITW"
+ ],
+ [
+ "Question:Which dataset contains 30k instructions and 715K trajectories in an Android smartphone environment?\nAnswer:",
+ " MiniWob"
+ ],
+ [
+ "Question:Which dataset contains 30k instructions and 715K trajectories in an Android smartphone environment?\nAnswer:",
+ " OmniAct"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.257719039916992,
+ false
+ ]
+ ],
+ [
+ [
+ -18.680747985839844,
+ false
+ ]
+ ],
+ [
+ [
+ -28.62395668029785,
+ false
+ ]
+ ],
+ [
+ [
+ -20.713193893432617,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.257719039916992,
+ false
+ ],
+ [
+ -18.680747985839844,
+ false
+ ],
+ [
+ -28.62395668029785,
+ false
+ ],
+ [
+ -20.713193893432617,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "81b2317defb712221e1a47661cf025da1057bc3cd60746839d59fcb0bb89bd4f",
+ "prompt_hash": "b7f9de5a9dea5182c107cef796da80fee91ca22ac47f5834e4b6adaf7faa5d31",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "What was the learning rate configured during training?",
+ "choices": [
+ "1e-3",
+ "1e-4",
+ "5e-5",
+ "2e-4"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What was the learning rate configured during training?\nAnswer:",
+ " 1e-3"
+ ],
+ [
+ "Question:What was the learning rate configured during training?\nAnswer:",
+ " 1e-4"
+ ],
+ [
+ "Question:What was the learning rate configured during training?\nAnswer:",
+ " 5e-5"
+ ],
+ [
+ "Question:What was the learning rate configured during training?\nAnswer:",
+ " 2e-4"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.130802631378174,
+ false
+ ]
+ ],
+ [
+ [
+ -5.951138019561768,
+ false
+ ]
+ ],
+ [
+ [
+ -7.6521711349487305,
+ false
+ ]
+ ],
+ [
+ [
+ -7.785113334655762,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.130802631378174,
+ false
+ ],
+ [
+ -5.951138019561768,
+ false
+ ],
+ [
+ -7.6521711349487305,
+ false
+ ],
+ [
+ -7.785113334655762,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "982cb0f36b4a6afcf5533c6dd81994dbfdbc261d841b5381a135a56fae46e7f8",
+ "prompt_hash": "d5ad5afbf26b85078270057741fb62aedbd62983b6e895295bc67a40691eb237",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "Which benchmark dataset for grounding is used to assess text and widget recognition separately?",
+ "choices": [
+ "Screenspot",
+ "SeeClick",
+ "GUIAct",
+ "Mind2Web"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark dataset for grounding is used to assess text and widget recognition separately?\nAnswer:",
+ " Screenspot"
+ ],
+ [
+ "Question:Which benchmark dataset for grounding is used to assess text and widget recognition separately?\nAnswer:",
+ " SeeClick"
+ ],
+ [
+ "Question:Which benchmark dataset for grounding is used to assess text and widget recognition separately?\nAnswer:",
+ " GUIAct"
+ ],
+ [
+ "Question:Which benchmark dataset for grounding is used to assess text and widget recognition separately?\nAnswer:",
+ " Mind2Web"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.185638427734375,
+ false
+ ]
+ ],
+ [
+ [
+ -24.059486389160156,
+ false
+ ]
+ ],
+ [
+ [
+ -20.9055118560791,
+ false
+ ]
+ ],
+ [
+ [
+ -19.651004791259766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.185638427734375,
+ false
+ ],
+ [
+ -24.059486389160156,
+ false
+ ],
+ [
+ -20.9055118560791,
+ false
+ ],
+ [
+ -19.651004791259766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "66ceed2da311e496a4d1ecc1d6d4a8d63337f396192d8124982e79d9abcb2364",
+ "prompt_hash": "5d6bf6fe135a7b5a7127295f52ca865dfc4822886083c430de092233a04d15f3",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "On which layer was cross-layer insertion applied for the UI Connected Graph?",
+ "choices": [
+ "Layer 10",
+ "Layer 12",
+ "Layer 14",
+ "Layer 16"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:On which layer was cross-layer insertion applied for the UI Connected Graph?\nAnswer:",
+ " Layer 10"
+ ],
+ [
+ "Question:On which layer was cross-layer insertion applied for the UI Connected Graph?\nAnswer:",
+ " Layer 12"
+ ],
+ [
+ "Question:On which layer was cross-layer insertion applied for the UI Connected Graph?\nAnswer:",
+ " Layer 14"
+ ],
+ [
+ "Question:On which layer was cross-layer insertion applied for the UI Connected Graph?\nAnswer:",
+ " Layer 16"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.43406867980957,
+ false
+ ]
+ ],
+ [
+ [
+ -11.22581672668457,
+ false
+ ]
+ ],
+ [
+ [
+ -12.237310409545898,
+ false
+ ]
+ ],
+ [
+ [
+ -12.027925491333008,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.43406867980957,
+ false
+ ],
+ [
+ -11.22581672668457,
+ false
+ ],
+ [
+ -12.237310409545898,
+ false
+ ],
+ [
+ -12.027925491333008,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3759bdb6424860a4263ca8eb7807cd0b3cf957b42967ae7ccacb768de79db59a",
+ "prompt_hash": "268b4707c6a7004b4c5ad78090c712885d24a4d5fc1101ad378edc3a1324761e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What is the name of the proposed Vision-Language-Action model that decouples cognition and action capabilities?",
+ "choices": [
+ "OpenVLA",
+ "CogACT",
+ "RT-2-X",
+ "Octo-Base"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the name of the proposed Vision-Language-Action model that decouples cognition and action capabilities?\nAnswer:",
+ " OpenVLA"
+ ],
+ [
+ "Question:What is the name of the proposed Vision-Language-Action model that decouples cognition and action capabilities?\nAnswer:",
+ " CogACT"
+ ],
+ [
+ "Question:What is the name of the proposed Vision-Language-Action model that decouples cognition and action capabilities?\nAnswer:",
+ " RT-2-X"
+ ],
+ [
+ "Question:What is the name of the proposed Vision-Language-Action model that decouples cognition and action capabilities?\nAnswer:",
+ " Octo-Base"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.862266540527344,
+ false
+ ]
+ ],
+ [
+ [
+ -16.2746524810791,
+ false
+ ]
+ ],
+ [
+ [
+ -24.433616638183594,
+ false
+ ]
+ ],
+ [
+ [
+ -24.454200744628906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.862266540527344,
+ false
+ ],
+ [
+ -16.2746524810791,
+ false
+ ],
+ [
+ -24.433616638183594,
+ false
+ ],
+ [
+ -24.454200744628906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a04fd2b4c0456439d4f9cc93484d3f91eb1bb16fd1778cf8d5620ec2f97456fe",
+ "prompt_hash": "72826baf9d6f3aa5c5d683c89926c74e74e9fd893440b479c679096eb8490c92",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "Which diffusion-based architecture is employed as the backbone for the action module?",
+ "choices": [
+ "Multi-Layer Perceptron",
+ "LSTM",
+ "Diffusion Transformer (DiT)",
+ "CNN"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which diffusion-based architecture is employed as the backbone for the action module?\nAnswer:",
+ " Multi-Layer Perceptron"
+ ],
+ [
+ "Question:Which diffusion-based architecture is employed as the backbone for the action module?\nAnswer:",
+ " LSTM"
+ ],
+ [
+ "Question:Which diffusion-based architecture is employed as the backbone for the action module?\nAnswer:",
+ " Diffusion Transformer (DiT)"
+ ],
+ [
+ "Question:Which diffusion-based architecture is employed as the backbone for the action module?\nAnswer:",
+ " CNN"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.12600040435791,
+ false
+ ]
+ ],
+ [
+ [
+ -11.416516304016113,
+ false
+ ]
+ ],
+ [
+ [
+ -15.304282188415527,
+ false
+ ]
+ ],
+ [
+ [
+ -8.963671684265137,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.12600040435791,
+ false
+ ],
+ [
+ -11.416516304016113,
+ false
+ ],
+ [
+ -15.304282188415527,
+ false
+ ],
+ [
+ -8.963671684265137,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "84c99fd4a4fae935da1b3c680ee3eee1afb8bc8eee00708a6aab52cb645a2158",
+ "prompt_hash": "17c62f6ff563bc4bf63a76d509af13a212e7d4c94849538343b05a0b5cace1f8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What dataset was primarily used to train the proposed Vision-Language-Action models?",
+ "choices": [
+ "ImageNet",
+ "COCO",
+ "Open X-Embodiment",
+ "EPIC-Kitchens"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What dataset was primarily used to train the proposed Vision-Language-Action models?\nAnswer:",
+ " ImageNet"
+ ],
+ [
+ "Question:What dataset was primarily used to train the proposed Vision-Language-Action models?\nAnswer:",
+ " COCO"
+ ],
+ [
+ "Question:What dataset was primarily used to train the proposed Vision-Language-Action models?\nAnswer:",
+ " Open X-Embodiment"
+ ],
+ [
+ "Question:What dataset was primarily used to train the proposed Vision-Language-Action models?\nAnswer:",
+ " EPIC-Kitchens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.665737628936768,
+ false
+ ]
+ ],
+ [
+ [
+ -8.678854942321777,
+ false
+ ]
+ ],
+ [
+ [
+ -20.266983032226562,
+ false
+ ]
+ ],
+ [
+ [
+ -11.777584075927734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.665737628936768,
+ false
+ ],
+ [
+ -8.678854942321777,
+ false
+ ],
+ [
+ -20.266983032226562,
+ false
+ ],
+ [
+ -11.777584075927734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "01cc2688bea7779c120bdf57ac79db47d821c9d3edbde9575a3bf14448bc120b",
+ "prompt_hash": "4f256133214ffff03f62ca26ee941b0d8161ed7621307af23442a559654745f1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "Which language model serves as the backbone of the language module in the architecture?",
+ "choices": [
+ "GPT-4",
+ "LLAMA-2",
+ "PaLI-X",
+ "Phi"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which language model serves as the backbone of the language module in the architecture?\nAnswer:",
+ " GPT-4"
+ ],
+ [
+ "Question:Which language model serves as the backbone of the language module in the architecture?\nAnswer:",
+ " LLAMA-2"
+ ],
+ [
+ "Question:Which language model serves as the backbone of the language module in the architecture?\nAnswer:",
+ " PaLI-X"
+ ],
+ [
+ "Question:Which language model serves as the backbone of the language module in the architecture?\nAnswer:",
+ " Phi"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.79275369644165,
+ false
+ ]
+ ],
+ [
+ [
+ -13.931233406066895,
+ false
+ ]
+ ],
+ [
+ [
+ -22.94920539855957,
+ false
+ ]
+ ],
+ [
+ [
+ -8.201404571533203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.79275369644165,
+ false
+ ],
+ [
+ -13.931233406066895,
+ false
+ ],
+ [
+ -22.94920539855957,
+ false
+ ],
+ [
+ -8.201404571533203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ce57ae75fb5b4ea3ce6c73e36a821d5303a5d9ba755ea4042553aed15c4eea77",
+ "prompt_hash": "d4e11f8f25225894ee66ed8fa09cf6996ca299426f3a35a50dfaf0d3814221f3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "During training, what is the default number of future actions predicted by the action module?",
+ "choices": [
+ "3",
+ "7",
+ "15",
+ "31"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:During training, what is the default number of future actions predicted by the action module?\nAnswer:",
+ " 3"
+ ],
+ [
+ "Question:During training, what is the default number of future actions predicted by the action module?\nAnswer:",
+ " 7"
+ ],
+ [
+ "Question:During training, what is the default number of future actions predicted by the action module?\nAnswer:",
+ " 15"
+ ],
+ [
+ "Question:During training, what is the default number of future actions predicted by the action module?\nAnswer:",
+ " 31"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.34032940864563,
+ false
+ ]
+ ],
+ [
+ [
+ -5.836397171020508,
+ false
+ ]
+ ],
+ [
+ [
+ -5.689146995544434,
+ false
+ ]
+ ],
+ [
+ [
+ -9.099987030029297,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.34032940864563,
+ false
+ ],
+ [
+ -5.836397171020508,
+ false
+ ],
+ [
+ -5.689146995544434,
+ false
+ ],
+ [
+ -9.099987030029297,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b63f832f8590826c7cb5b85e52d3dd0482b5a1714952450815f2678b2d9bf5c6",
+ "prompt_hash": "2901e294ac7f5a4130458e7a3a5905c6480257231e5f73acda55a32a89ff24d9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ }
+ ],
+ "arxiv_mc_2412": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What limitation does teacher forcing impose on current next-token prediction models?",
+ "choices": [
+ "It prevents models from being trained on continuous data.",
+ "It restricts the model to generating only one token at a time.",
+ "It offers no mechanism to guide sequence sampling toward specific objectives.",
+ "It reduces the model’s ability to perform tree search efficiently."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What limitation does teacher forcing impose on current next-token prediction models?\nAnswer:",
+ " It prevents models from being trained on continuous data."
+ ],
+ [
+ "Question:What limitation does teacher forcing impose on current next-token prediction models?\nAnswer:",
+ " It restricts the model to generating only one token at a time."
+ ],
+ [
+ "Question:What limitation does teacher forcing impose on current next-token prediction models?\nAnswer:",
+ " It offers no mechanism to guide sequence sampling toward specific objectives."
+ ],
+ [
+ "Question:What limitation does teacher forcing impose on current next-token prediction models?\nAnswer:",
+ " It reduces the model’s ability to perform tree search efficiently."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.44562530517578,
+ false
+ ]
+ ],
+ [
+ [
+ -18.013652801513672,
+ false
+ ]
+ ],
+ [
+ [
+ -50.749053955078125,
+ false
+ ]
+ ],
+ [
+ [
+ -35.38025665283203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.44562530517578,
+ false
+ ],
+ [
+ -18.013652801513672,
+ false
+ ],
+ [
+ -50.749053955078125,
+ false
+ ],
+ [
+ -35.38025665283203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4c3e7569e4468951b0a98135ccc738df8d31c703938930b8b26c77fbb26f0073",
+ "prompt_hash": "e341aaa05fa6db270029370f8f97e06ef1dfb36d003bd27ebfc634862f06ce5b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "What is the key limitation of full-sequence diffusion architectures mentioned in the text?",
+ "choices": [
+ "They fail to handle discrete data like text or audio.",
+ "They rely on causal attention, making them inflexible for parallel training.",
+ "They require variable-length token prediction, which is inefficient.",
+ "They are universally parameterized via non-causal, unmasked architectures."
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the key limitation of full-sequence diffusion architectures mentioned in the text?\nAnswer:",
+ " They fail to handle discrete data like text or audio."
+ ],
+ [
+ "Question:What is the key limitation of full-sequence diffusion architectures mentioned in the text?\nAnswer:",
+ " They rely on causal attention, making them inflexible for parallel training."
+ ],
+ [
+ "Question:What is the key limitation of full-sequence diffusion architectures mentioned in the text?\nAnswer:",
+ " They require variable-length token prediction, which is inefficient."
+ ],
+ [
+ "Question:What is the key limitation of full-sequence diffusion architectures mentioned in the text?\nAnswer:",
+ " They are universally parameterized via non-causal, unmasked architectures."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.89609718322754,
+ false
+ ]
+ ],
+ [
+ [
+ -49.041259765625,
+ false
+ ]
+ ],
+ [
+ [
+ -38.779083251953125,
+ false
+ ]
+ ],
+ [
+ [
+ -59.433868408203125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.89609718322754,
+ false
+ ],
+ [
+ -49.041259765625,
+ false
+ ],
+ [
+ -38.779083251953125,
+ false
+ ],
+ [
+ -59.433868408203125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f06576e73899a009a57b91ade993db970065e63efbf66ddfe429c18a1799096e",
+ "prompt_hash": "20f709b25998ca1921a405b0aead0207a27404bfb30309345ba3233b4bc171c9",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "What enables \\u03b1Seq to generate variable-length sequences stably even for continuous tokens?",
+ "choices": [
+ "Use of teacher forcing with deterministic transitions.",
+ "Joint modeling of latent variables with fixed-length noise schedules.",
+ "Denoising tokens with independent noise levels via a causal architecture.",
+ "Training with non-causal architectures over full-token batches."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What enables \\u03b1Seq to generate variable-length sequences stably even for continuous tokens?\nAnswer:",
+ " Use of teacher forcing with deterministic transitions."
+ ],
+ [
+ "Question:What enables \\u03b1Seq to generate variable-length sequences stably even for continuous tokens?\nAnswer:",
+ " Joint modeling of latent variables with fixed-length noise schedules."
+ ],
+ [
+ "Question:What enables \\u03b1Seq to generate variable-length sequences stably even for continuous tokens?\nAnswer:",
+ " Denoising tokens with independent noise levels via a causal architecture."
+ ],
+ [
+ "Question:What enables \\u03b1Seq to generate variable-length sequences stably even for continuous tokens?\nAnswer:",
+ " Training with non-causal architectures over full-token batches."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.210548400878906,
+ false
+ ]
+ ],
+ [
+ [
+ -46.058746337890625,
+ false
+ ]
+ ],
+ [
+ [
+ -57.82805252075195,
+ false
+ ]
+ ],
+ [
+ [
+ -56.03277587890625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.210548400878906,
+ false
+ ],
+ [
+ -46.058746337890625,
+ false
+ ],
+ [
+ -57.82805252075195,
+ false
+ ],
+ [
+ -56.03277587890625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8b7db974c971783be24d283fc0b30af1533a468dea2747d11116c8198ecdd878",
+ "prompt_hash": "d06deb2e244631f4c9a0cf6c9e7bb14db1b725a527eae640a488e97c6c05f6c8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "What does Monte Carlo Guidance (MCG) aim to improve in the \\u03b1Seq model?",
+ "choices": [
+ "Training speed during multi-task learning.",
+ "Sampling of high-reward generations.",
+ "Data efficiency in few-shot settings.",
+ "Convergence of the forward diffusion process."
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does Monte Carlo Guidance (MCG) aim to improve in the \\u03b1Seq model?\nAnswer:",
+ " Training speed during multi-task learning."
+ ],
+ [
+ "Question:What does Monte Carlo Guidance (MCG) aim to improve in the \\u03b1Seq model?\nAnswer:",
+ " Sampling of high-reward generations."
+ ],
+ [
+ "Question:What does Monte Carlo Guidance (MCG) aim to improve in the \\u03b1Seq model?\nAnswer:",
+ " Data efficiency in few-shot settings."
+ ],
+ [
+ "Question:What does Monte Carlo Guidance (MCG) aim to improve in the \\u03b1Seq model?\nAnswer:",
+ " Convergence of the forward diffusion process."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.38593673706055,
+ false
+ ]
+ ],
+ [
+ [
+ -31.022836685180664,
+ false
+ ]
+ ],
+ [
+ [
+ -31.55197525024414,
+ false
+ ]
+ ],
+ [
+ [
+ -23.415512084960938,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.38593673706055,
+ false
+ ],
+ [
+ -31.022836685180664,
+ false
+ ],
+ [
+ -31.55197525024414,
+ false
+ ],
+ [
+ -23.415512084960938,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f7cda5ca84495bc9eddcf9a40c309e189f0abd73a2f7aa79e2ededc3d98c0296",
+ "prompt_hash": "8c9ee044d4547fc50d79a0ac9df3d33c91b8e365151aad32160dfb35be79f6ca",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "Which of the following architectures does the paper currently use for its causal implementation?",
+ "choices": [
+ "Feedforward Transformer",
+ "Bidirectional LSTM",
+ "Recurrent Neural Network (RNN)",
+ "Masked Autoencoder"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which of the following architectures does the paper currently use for its causal implementation?\nAnswer:",
+ " Feedforward Transformer"
+ ],
+ [
+ "Question:Which of the following architectures does the paper currently use for its causal implementation?\nAnswer:",
+ " Bidirectional LSTM"
+ ],
+ [
+ "Question:Which of the following architectures does the paper currently use for its causal implementation?\nAnswer:",
+ " Recurrent Neural Network (RNN)"
+ ],
+ [
+ "Question:Which of the following architectures does the paper currently use for its causal implementation?\nAnswer:",
+ " Masked Autoencoder"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.343334197998047,
+ false
+ ]
+ ],
+ [
+ [
+ -13.779508590698242,
+ false
+ ]
+ ],
+ [
+ [
+ -11.171441078186035,
+ false
+ ]
+ ],
+ [
+ [
+ -12.286684036254883,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.343334197998047,
+ false
+ ],
+ [
+ -13.779508590698242,
+ false
+ ],
+ [
+ -11.171441078186035,
+ false
+ ],
+ [
+ -12.286684036254883,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f618242e0a371a70f893f9d7b535d4b66c482e1fa31a0a617ec2998fb54d3a92",
+ "prompt_hash": "3a808e1733399c82d28c4218096a47230cb6816c0ced6a433152bf2b40d54df9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "How many editing samples does the dataset \\u201cUltraEdit\\u201d contain in total?",
+ "choices": [
+ "750,000",
+ "1,600,000",
+ "4,108,262",
+ "313,010"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many editing samples does the dataset \\u201cUltraEdit\\u201d contain in total?\nAnswer:",
+ " 750,000"
+ ],
+ [
+ "Question:How many editing samples does the dataset \\u201cUltraEdit\\u201d contain in total?\nAnswer:",
+ " 1,600,000"
+ ],
+ [
+ "Question:How many editing samples does the dataset \\u201cUltraEdit\\u201d contain in total?\nAnswer:",
+ " 4,108,262"
+ ],
+ [
+ "Question:How many editing samples does the dataset \\u201cUltraEdit\\u201d contain in total?\nAnswer:",
+ " 313,010"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.545722007751465,
+ false
+ ]
+ ],
+ [
+ [
+ -12.534786224365234,
+ false
+ ]
+ ],
+ [
+ [
+ -22.415538787841797,
+ false
+ ]
+ ],
+ [
+ [
+ -19.220945358276367,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.545722007751465,
+ false
+ ],
+ [
+ -12.534786224365234,
+ false
+ ],
+ [
+ -22.415538787841797,
+ false
+ ],
+ [
+ -19.220945358276367,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4fe6b16f5e73298a13d1372b8ea8db250730cd4e5aa0c877cc84dabb8477e46c",
+ "prompt_hash": "95b2a1fd0fc42d700a482f49c3f87e054be2a261fd58cfceff9c39f8af857f1b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "Which model is used as the diffusion backbone in the UltraEdit data generation pipeline?",
+ "choices": [
+ "Stable Diffusion v1.5",
+ "GLIDE",
+ "DALL-E 3",
+ "SDXL-Turbo"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which model is used as the diffusion backbone in the UltraEdit data generation pipeline?\nAnswer:",
+ " Stable Diffusion v1.5"
+ ],
+ [
+ "Question:Which model is used as the diffusion backbone in the UltraEdit data generation pipeline?\nAnswer:",
+ " GLIDE"
+ ],
+ [
+ "Question:Which model is used as the diffusion backbone in the UltraEdit data generation pipeline?\nAnswer:",
+ " DALL-E 3"
+ ],
+ [
+ "Question:Which model is used as the diffusion backbone in the UltraEdit data generation pipeline?\nAnswer:",
+ " SDXL-Turbo"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.732109069824219,
+ false
+ ]
+ ],
+ [
+ [
+ -11.479008674621582,
+ false
+ ]
+ ],
+ [
+ [
+ -9.608929634094238,
+ false
+ ]
+ ],
+ [
+ [
+ -17.172548294067383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.732109069824219,
+ false
+ ],
+ [
+ -11.479008674621582,
+ false
+ ],
+ [
+ -9.608929634094238,
+ false
+ ],
+ [
+ -17.172548294067383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d861624f0803bd0d0d0f30213b808194a8a804266415f902a306b7e6ad3ba97f",
+ "prompt_hash": "2213363c328ebf6a27f5f0227e8d976bf54f6e1ad54e50469dfc3b221f56b641",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "Which benchmark reveals a scaling effect when using increasing volumes of the UltraEdit dataset?",
+ "choices": [
+ "COCO",
+ "MagicBrush",
+ "ImageNet",
+ "EditBench"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark reveals a scaling effect when using increasing volumes of the UltraEdit dataset?\nAnswer:",
+ " COCO"
+ ],
+ [
+ "Question:Which benchmark reveals a scaling effect when using increasing volumes of the UltraEdit dataset?\nAnswer:",
+ " MagicBrush"
+ ],
+ [
+ "Question:Which benchmark reveals a scaling effect when using increasing volumes of the UltraEdit dataset?\nAnswer:",
+ " ImageNet"
+ ],
+ [
+ "Question:Which benchmark reveals a scaling effect when using increasing volumes of the UltraEdit dataset?\nAnswer:",
+ " EditBench"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.662349700927734,
+ false
+ ]
+ ],
+ [
+ [
+ -14.004988670349121,
+ false
+ ]
+ ],
+ [
+ [
+ -8.855036735534668,
+ false
+ ]
+ ],
+ [
+ [
+ -13.624947547912598,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.662349700927734,
+ false
+ ],
+ [
+ -14.004988670349121,
+ false
+ ],
+ [
+ -8.855036735534668,
+ false
+ ],
+ [
+ -13.624947547912598,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f84d5958b5aead115ff6c3b25f650dc6b2342343d5f729c3015b9b4cae0f3f81",
+ "prompt_hash": "40b205e24e7829798397f2138536fb831ce0cded104c4feb1999e141ba7222c2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "Which technique is used to identify the object to be edited in region-based editing?",
+ "choices": [
+ "ControlNet",
+ "GroundingDINO with SAM",
+ "VQGAN-CLIP",
+ "DreamBooth"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which technique is used to identify the object to be edited in region-based editing?\nAnswer:",
+ " ControlNet"
+ ],
+ [
+ "Question:Which technique is used to identify the object to be edited in region-based editing?\nAnswer:",
+ " GroundingDINO with SAM"
+ ],
+ [
+ "Question:Which technique is used to identify the object to be edited in region-based editing?\nAnswer:",
+ " VQGAN-CLIP"
+ ],
+ [
+ "Question:Which technique is used to identify the object to be edited in region-based editing?\nAnswer:",
+ " DreamBooth"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.154390335083008,
+ false
+ ]
+ ],
+ [
+ [
+ -23.500587463378906,
+ false
+ ]
+ ],
+ [
+ [
+ -23.389801025390625,
+ false
+ ]
+ ],
+ [
+ [
+ -13.390340805053711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.154390335083008,
+ false
+ ],
+ [
+ -23.500587463378906,
+ false
+ ],
+ [
+ -23.389801025390625,
+ false
+ ],
+ [
+ -13.390340805053711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f117727818829cd8265a97648f0610caa2e19403f0de0ef7e1a28057ae87a256",
+ "prompt_hash": "8ce78380f484ba30f5a7489d5d0fcc31c80f3e78e95cd2c13345dbbe5f98e61c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "What is the primary metric used in the ablation study to evaluate the impact of region-based editing data?",
+ "choices": [
+ "DINO similarity",
+ "CLIPout",
+ "L2 distance",
+ "SSIM"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the primary metric used in the ablation study to evaluate the impact of region-based editing data?\nAnswer:",
+ " DINO similarity"
+ ],
+ [
+ "Question:What is the primary metric used in the ablation study to evaluate the impact of region-based editing data?\nAnswer:",
+ " CLIPout"
+ ],
+ [
+ "Question:What is the primary metric used in the ablation study to evaluate the impact of region-based editing data?\nAnswer:",
+ " L2 distance"
+ ],
+ [
+ "Question:What is the primary metric used in the ablation study to evaluate the impact of region-based editing data?\nAnswer:",
+ " SSIM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.91316795349121,
+ false
+ ]
+ ],
+ [
+ [
+ -20.059391021728516,
+ false
+ ]
+ ],
+ [
+ [
+ -11.492344856262207,
+ false
+ ]
+ ],
+ [
+ [
+ -10.103410720825195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.91316795349121,
+ false
+ ],
+ [
+ -20.059391021728516,
+ false
+ ],
+ [
+ -11.492344856262207,
+ false
+ ],
+ [
+ -10.103410720825195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "115786c7d725aed69d3e54b16f9664cdfbedb4f49ff34d45f98a5333a18fba7e",
+ "prompt_hash": "0acb114e8b7c7e6ed8c4e39c8f039af3e557b3f5863020d89b83cc60db6f9837",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What is the increase in coverage observed when solving CodeContests problems using Gemma-2B with repeated sampling up to 10,000 samples?",
+ "choices": [
+ "From 0.02% to 7.1%",
+ "From 0.1% to 25%",
+ "From 0.5% to 10%",
+ "From 1% to 50%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the increase in coverage observed when solving CodeContests problems using Gemma-2B with repeated sampling up to 10,000 samples?\nAnswer:",
+ " From 0.02% to 7.1%"
+ ],
+ [
+ "Question:What is the increase in coverage observed when solving CodeContests problems using Gemma-2B with repeated sampling up to 10,000 samples?\nAnswer:",
+ " From 0.1% to 25%"
+ ],
+ [
+ "Question:What is the increase in coverage observed when solving CodeContests problems using Gemma-2B with repeated sampling up to 10,000 samples?\nAnswer:",
+ " From 0.5% to 10%"
+ ],
+ [
+ "Question:What is the increase in coverage observed when solving CodeContests problems using Gemma-2B with repeated sampling up to 10,000 samples?\nAnswer:",
+ " From 1% to 50%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -36.91026306152344,
+ false
+ ]
+ ],
+ [
+ [
+ -33.62900161743164,
+ false
+ ]
+ ],
+ [
+ [
+ -31.656620025634766,
+ false
+ ]
+ ],
+ [
+ [
+ -26.566728591918945,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -36.91026306152344,
+ false
+ ],
+ [
+ -33.62900161743164,
+ false
+ ],
+ [
+ -31.656620025634766,
+ false
+ ],
+ [
+ -26.566728591918945,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "44df8ac43cd9caa8e4599475afb3e79cd55e4101df9a6be10f6f9382602b688c",
+ "prompt_hash": "9ceebe5ac95b6ba8122bf265f958d7b9b6ea4934411a663b4bdc4d54f7e0862e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "Which datasets evaluated in the study include automatic verifiers for sample correctness?",
+ "choices": [
+ "MiniF2F-MATH, CodeContests, SWE-bench Lite",
+ "GSM8K, MATH, SWE-bench Lite",
+ "MATH, MiniF2F-MATH, GSM8K",
+ "CodeContests, GSM8K, MATH"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which datasets evaluated in the study include automatic verifiers for sample correctness?\nAnswer:",
+ " MiniF2F-MATH, CodeContests, SWE-bench Lite"
+ ],
+ [
+ "Question:Which datasets evaluated in the study include automatic verifiers for sample correctness?\nAnswer:",
+ " GSM8K, MATH, SWE-bench Lite"
+ ],
+ [
+ "Question:Which datasets evaluated in the study include automatic verifiers for sample correctness?\nAnswer:",
+ " MATH, MiniF2F-MATH, GSM8K"
+ ],
+ [
+ "Question:Which datasets evaluated in the study include automatic verifiers for sample correctness?\nAnswer:",
+ " CodeContests, GSM8K, MATH"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -87.04169464111328,
+ false
+ ]
+ ],
+ [
+ [
+ -50.65325927734375,
+ false
+ ]
+ ],
+ [
+ [
+ -45.92802429199219,
+ false
+ ]
+ ],
+ [
+ [
+ -28.259180068969727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -87.04169464111328,
+ false
+ ],
+ [
+ -50.65325927734375,
+ false
+ ],
+ [
+ -45.92802429199219,
+ false
+ ],
+ [
+ -28.259180068969727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "16350209d0fd2de900dc667b7547b1c1acda347ffe7ad0e075a33bacbcd0b5ae",
+ "prompt_hash": "e7aca0fd8e0b4655d141766d237513ee15a41bedc0801a38614753bd866ea52b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "What type of function is used to model the relationship between coverage and number of samples?",
+ "choices": [
+ "Exponentiated power law",
+ "Linear regression",
+ "Logarithmic function",
+ "Quadratic polynomial"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What type of function is used to model the relationship between coverage and number of samples?\nAnswer:",
+ " Exponentiated power law"
+ ],
+ [
+ "Question:What type of function is used to model the relationship between coverage and number of samples?\nAnswer:",
+ " Linear regression"
+ ],
+ [
+ "Question:What type of function is used to model the relationship between coverage and number of samples?\nAnswer:",
+ " Logarithmic function"
+ ],
+ [
+ "Question:What type of function is used to model the relationship between coverage and number of samples?\nAnswer:",
+ " Quadratic polynomial"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.710233688354492,
+ false
+ ]
+ ],
+ [
+ [
+ -7.671542167663574,
+ false
+ ]
+ ],
+ [
+ [
+ -11.807942390441895,
+ false
+ ]
+ ],
+ [
+ [
+ -13.855320930480957,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.710233688354492,
+ false
+ ],
+ [
+ -7.671542167663574,
+ false
+ ],
+ [
+ -11.807942390441895,
+ false
+ ],
+ [
+ -13.855320930480957,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "871053292bba086d3b3b812b1c4b2bfff9fdf77ff9831ebdc84d75742938d72a",
+ "prompt_hash": "a33a8b9084d669044175e7ce9033ca380ab9718a2aff6a835db8f2709a7e5c73",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "What was the maximum percentage of issues solved using DeepSeek-Coder-V2-Instruct with 5 attempts per issue on SWE-bench Lite?",
+ "choices": [
+ "29.62%",
+ "43.00%",
+ "15.90%",
+ "56.00%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What was the maximum percentage of issues solved using DeepSeek-Coder-V2-Instruct with 5 attempts per issue on SWE-bench Lite?\nAnswer:",
+ " 29.62%"
+ ],
+ [
+ "Question:What was the maximum percentage of issues solved using DeepSeek-Coder-V2-Instruct with 5 attempts per issue on SWE-bench Lite?\nAnswer:",
+ " 43.00%"
+ ],
+ [
+ "Question:What was the maximum percentage of issues solved using DeepSeek-Coder-V2-Instruct with 5 attempts per issue on SWE-bench Lite?\nAnswer:",
+ " 15.90%"
+ ],
+ [
+ "Question:What was the maximum percentage of issues solved using DeepSeek-Coder-V2-Instruct with 5 attempts per issue on SWE-bench Lite?\nAnswer:",
+ " 56.00%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.0406494140625,
+ false
+ ]
+ ],
+ [
+ [
+ -15.355518341064453,
+ false
+ ]
+ ],
+ [
+ [
+ -16.611568450927734,
+ false
+ ]
+ ],
+ [
+ [
+ -15.058615684509277,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.0406494140625,
+ false
+ ],
+ [
+ -15.355518341064453,
+ false
+ ],
+ [
+ -16.611568450927734,
+ false
+ ],
+ [
+ -15.058615684509277,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "664e791dfb8e473eb440962fb2801a946420e6aacb189738b6b4cd3a6e590f88",
+ "prompt_hash": "5a1317a0c04f5290b0304168b6d6d77eb802b415403ee25b29fdaaf46cc42af3",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "Which verification methods were tested for their scalability in identifying correct answers on GSM8K and MATH datasets?",
+ "choices": [
+ "Majority vote, reward model best-of-N, reward model weighted vote",
+ "Gradient descent, beam search, ensemble voting",
+ "Prompt engineering, token sampling, output reranking",
+ "Syntax parsing, lexical similarity, token classification"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which verification methods were tested for their scalability in identifying correct answers on GSM8K and MATH datasets?\nAnswer:",
+ " Majority vote, reward model best-of-N, reward model weighted vote"
+ ],
+ [
+ "Question:Which verification methods were tested for their scalability in identifying correct answers on GSM8K and MATH datasets?\nAnswer:",
+ " Gradient descent, beam search, ensemble voting"
+ ],
+ [
+ "Question:Which verification methods were tested for their scalability in identifying correct answers on GSM8K and MATH datasets?\nAnswer:",
+ " Prompt engineering, token sampling, output reranking"
+ ],
+ [
+ "Question:Which verification methods were tested for their scalability in identifying correct answers on GSM8K and MATH datasets?\nAnswer:",
+ " Syntax parsing, lexical similarity, token classification"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -59.267059326171875,
+ false
+ ]
+ ],
+ [
+ [
+ -35.804481506347656,
+ false
+ ]
+ ],
+ [
+ [
+ -43.54387664794922,
+ false
+ ]
+ ],
+ [
+ [
+ -39.79151153564453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -59.267059326171875,
+ false
+ ],
+ [
+ -35.804481506347656,
+ false
+ ],
+ [
+ -43.54387664794922,
+ false
+ ],
+ [
+ -39.79151153564453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0b9f0bba11615e1363d62aca9634d306bd14429c924a8ad6885c2983578308c8",
+ "prompt_hash": "0d17baf56754596eaed49b4028801899ec6ba4fbb02532f3aa951b5948115bb2",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What Dice score does MedSAM-2 achieve on the BTCV 3D medical image segmentation dataset?",
+ "choices": [
+ "86.2%",
+ "88.4%",
+ "89.0%",
+ "90.5%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What Dice score does MedSAM-2 achieve on the BTCV 3D medical image segmentation dataset?\nAnswer:",
+ " 86.2%"
+ ],
+ [
+ "Question:What Dice score does MedSAM-2 achieve on the BTCV 3D medical image segmentation dataset?\nAnswer:",
+ " 88.4%"
+ ],
+ [
+ "Question:What Dice score does MedSAM-2 achieve on the BTCV 3D medical image segmentation dataset?\nAnswer:",
+ " 89.0%"
+ ],
+ [
+ "Question:What Dice score does MedSAM-2 achieve on the BTCV 3D medical image segmentation dataset?\nAnswer:",
+ " 90.5%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.722869873046875,
+ false
+ ]
+ ],
+ [
+ [
+ -15.132040977478027,
+ false
+ ]
+ ],
+ [
+ [
+ -15.362841606140137,
+ false
+ ]
+ ],
+ [
+ [
+ -15.039222717285156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.722869873046875,
+ false
+ ],
+ [
+ -15.132040977478027,
+ false
+ ],
+ [
+ -15.362841606140137,
+ false
+ ],
+ [
+ -15.039222717285156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "071c9543500216fe3fa54b274fda3405e1560d004da2672b30ff527777bbc92b",
+ "prompt_hash": "3a19aaa4ffdf21a14e504172df6f1b5b9f69e86067c43f481ddeb35b33473d2f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "What is the primary function of the self-sorting memory bank in MedSAM-2?",
+ "choices": [
+ "To store only the most recent embeddings",
+ "To sort image slices by acquisition order",
+ "To dynamically select embeddings based on confidence and dissimilarity",
+ "To increase the memory capacity of the model"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary function of the self-sorting memory bank in MedSAM-2?\nAnswer:",
+ " To store only the most recent embeddings"
+ ],
+ [
+ "Question:What is the primary function of the self-sorting memory bank in MedSAM-2?\nAnswer:",
+ " To sort image slices by acquisition order"
+ ],
+ [
+ "Question:What is the primary function of the self-sorting memory bank in MedSAM-2?\nAnswer:",
+ " To dynamically select embeddings based on confidence and dissimilarity"
+ ],
+ [
+ "Question:What is the primary function of the self-sorting memory bank in MedSAM-2?\nAnswer:",
+ " To increase the memory capacity of the model"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.875429153442383,
+ false
+ ]
+ ],
+ [
+ [
+ -35.84728240966797,
+ false
+ ]
+ ],
+ [
+ [
+ -43.798126220703125,
+ false
+ ]
+ ],
+ [
+ [
+ -17.682130813598633,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.875429153442383,
+ false
+ ],
+ [
+ -35.84728240966797,
+ false
+ ],
+ [
+ -43.798126220703125,
+ false
+ ],
+ [
+ -17.682130813598633,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "85e9263b05f7c959e70b80cb683ee5ed4496855a5dcd697bf4d14086b8fefbd0",
+ "prompt_hash": "f49c6b7c63e3b7b2d841b5acf05e3014c385f72a0ee3273b1642084679e24684",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "What prompt probability is used for 3D medical image frames during segmentation?",
+ "choices": [
+ "0.1",
+ "0.25",
+ "0.3",
+ "0.5"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What prompt probability is used for 3D medical image frames during segmentation?\nAnswer:",
+ " 0.1"
+ ],
+ [
+ "Question:What prompt probability is used for 3D medical image frames during segmentation?\nAnswer:",
+ " 0.25"
+ ],
+ [
+ "Question:What prompt probability is used for 3D medical image frames during segmentation?\nAnswer:",
+ " 0.3"
+ ],
+ [
+ "Question:What prompt probability is used for 3D medical image frames during segmentation?\nAnswer:",
+ " 0.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.572741985321045,
+ false
+ ]
+ ],
+ [
+ [
+ -6.072905540466309,
+ false
+ ]
+ ],
+ [
+ [
+ -5.138263702392578,
+ false
+ ]
+ ],
+ [
+ [
+ -4.633764743804932,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.572741985321045,
+ false
+ ],
+ [
+ -6.072905540466309,
+ false
+ ],
+ [
+ -5.138263702392578,
+ false
+ ],
+ [
+ -4.633764743804932,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f2344d55b6c745c4d2dc99b6f0644d1836baaef4bb9c0b3d1b2b74620fae1f41",
+ "prompt_hash": "564b43b57c335dd664c18821b1478abd181701f4a2f606c13138dcf6769ee592",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "In the ablation study, what Dice score was achieved on the CadVidSet dataset when using all three components: IOU threshold, dissimilar templates, and resampling?",
+ "choices": [
+ "53.9%",
+ "57.8%",
+ "64.5%",
+ "72.9%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:In the ablation study, what Dice score was achieved on the CadVidSet dataset when using all three components: IOU threshold, dissimilar templates, and resampling?\nAnswer:",
+ " 53.9%"
+ ],
+ [
+ "Question:In the ablation study, what Dice score was achieved on the CadVidSet dataset when using all three components: IOU threshold, dissimilar templates, and resampling?\nAnswer:",
+ " 57.8%"
+ ],
+ [
+ "Question:In the ablation study, what Dice score was achieved on the CadVidSet dataset when using all three components: IOU threshold, dissimilar templates, and resampling?\nAnswer:",
+ " 64.5%"
+ ],
+ [
+ "Question:In the ablation study, what Dice score was achieved on the CadVidSet dataset when using all three components: IOU threshold, dissimilar templates, and resampling?\nAnswer:",
+ " 72.9%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.8532657623291,
+ false
+ ]
+ ],
+ [
+ [
+ -16.828392028808594,
+ false
+ ]
+ ],
+ [
+ [
+ -16.361194610595703,
+ false
+ ]
+ ],
+ [
+ [
+ -15.42495059967041,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.8532657623291,
+ false
+ ],
+ [
+ -16.828392028808594,
+ false
+ ],
+ [
+ -16.361194610595703,
+ false
+ ],
+ [
+ -15.42495059967041,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9a6a818e319d1a38943ed39f3744bf0ce7ff570586e188b790e8d99e5f098a92",
+ "prompt_hash": "feb4610e33e35a2ab7303ab190151070e7ca5d88a02104fb86048ba3508510f8",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "How many GPUs were used for training and testing MedSAM-2?",
+ "choices": [
+ "32",
+ "64",
+ "128",
+ "256"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many GPUs were used for training and testing MedSAM-2?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:How many GPUs were used for training and testing MedSAM-2?\nAnswer:",
+ " 64"
+ ],
+ [
+ "Question:How many GPUs were used for training and testing MedSAM-2?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:How many GPUs were used for training and testing MedSAM-2?\nAnswer:",
+ " 256"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.806703567504883,
+ false
+ ]
+ ],
+ [
+ [
+ -7.463939666748047,
+ false
+ ]
+ ],
+ [
+ [
+ -7.4690446853637695,
+ false
+ ]
+ ],
+ [
+ [
+ -8.828374862670898,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.806703567504883,
+ false
+ ],
+ [
+ -7.463939666748047,
+ false
+ ],
+ [
+ -7.4690446853637695,
+ false
+ ],
+ [
+ -8.828374862670898,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a4494f34db05155b1bb4cb1416cd7e0a4c3c3f82427a97adb362ed5eadf60cd0",
+ "prompt_hash": "74c4c7819aed8c050224abc259669dfd661560212a0ea91485acf1c392669c06",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What is the maximum context length supported by the LongVILA training system?",
+ "choices": [
+ "1 million tokens",
+ "1.5 million tokens",
+ "2 million tokens",
+ "2.5 million tokens"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum context length supported by the LongVILA training system?\nAnswer:",
+ " 1 million tokens"
+ ],
+ [
+ "Question:What is the maximum context length supported by the LongVILA training system?\nAnswer:",
+ " 1.5 million tokens"
+ ],
+ [
+ "Question:What is the maximum context length supported by the LongVILA training system?\nAnswer:",
+ " 2 million tokens"
+ ],
+ [
+ "Question:What is the maximum context length supported by the LongVILA training system?\nAnswer:",
+ " 2.5 million tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.128260612487793,
+ false
+ ]
+ ],
+ [
+ [
+ -12.194124221801758,
+ false
+ ]
+ ],
+ [
+ [
+ -11.196681022644043,
+ false
+ ]
+ ],
+ [
+ [
+ -13.080391883850098,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.128260612487793,
+ false
+ ],
+ [
+ -12.194124221801758,
+ false
+ ],
+ [
+ -11.196681022644043,
+ false
+ ],
+ [
+ -13.080391883850098,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a141a5184d5a62903bf04e38d70a7794df07219d83153e0c1b68e2a515c1804e",
+ "prompt_hash": "56db71b047e286f882824cf68ce6953f0db72790be1553e20bb18eedb012cfac",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "Which video benchmark did LongVILA-7B achieve 65.1% accuracy on with subtitles?",
+ "choices": [
+ "ActivityNet-QA",
+ "MVBench",
+ "VideoMME",
+ "NExT-QA"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which video benchmark did LongVILA-7B achieve 65.1% accuracy on with subtitles?\nAnswer:",
+ " ActivityNet-QA"
+ ],
+ [
+ "Question:Which video benchmark did LongVILA-7B achieve 65.1% accuracy on with subtitles?\nAnswer:",
+ " MVBench"
+ ],
+ [
+ "Question:Which video benchmark did LongVILA-7B achieve 65.1% accuracy on with subtitles?\nAnswer:",
+ " VideoMME"
+ ],
+ [
+ "Question:Which video benchmark did LongVILA-7B achieve 65.1% accuracy on with subtitles?\nAnswer:",
+ " NExT-QA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.321186065673828,
+ false
+ ]
+ ],
+ [
+ [
+ -9.568792343139648,
+ false
+ ]
+ ],
+ [
+ [
+ -14.908329963684082,
+ false
+ ]
+ ],
+ [
+ [
+ -15.955806732177734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.321186065673828,
+ false
+ ],
+ [
+ -9.568792343139648,
+ false
+ ],
+ [
+ -14.908329963684082,
+ false
+ ],
+ [
+ -15.955806732177734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a5cd9da82e58ee1724813d414580a6214f097549786cc1672569bcd8345ed30c",
+ "prompt_hash": "1b2dd67bbfee3227cc9ed70d506261123a60e49132a90b5d4f7604645c7fc245",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "During Stage 1 of training, which components are trainable in the LongVILA pipeline?",
+ "choices": [
+ "Only the LLM decoder",
+ "Only the vision encoder",
+ "Only the multi-modal projector",
+ "All components"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:During Stage 1 of training, which components are trainable in the LongVILA pipeline?\nAnswer:",
+ " Only the LLM decoder"
+ ],
+ [
+ "Question:During Stage 1 of training, which components are trainable in the LongVILA pipeline?\nAnswer:",
+ " Only the vision encoder"
+ ],
+ [
+ "Question:During Stage 1 of training, which components are trainable in the LongVILA pipeline?\nAnswer:",
+ " Only the multi-modal projector"
+ ],
+ [
+ "Question:During Stage 1 of training, which components are trainable in the LongVILA pipeline?\nAnswer:",
+ " All components"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.713794708251953,
+ false
+ ]
+ ],
+ [
+ [
+ -11.596830368041992,
+ false
+ ]
+ ],
+ [
+ [
+ -20.188129425048828,
+ false
+ ]
+ ],
+ [
+ [
+ -5.85800313949585,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.713794708251953,
+ false
+ ],
+ [
+ -11.596830368041992,
+ false
+ ],
+ [
+ -20.188129425048828,
+ false
+ ],
+ [
+ -5.85800313949585,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b47ec35348a110052f19639f2b9499bc0c46cf8429488ca42df5e378e1202a22",
+ "prompt_hash": "a2b2d866314cdfb5427c81ef7684c3e5c20dfb869a71d5187e6a42b9dd54261d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "Which dataset is used in Stage 4 to extend the context length of the LLM?",
+ "choices": [
+ "COYO-25M",
+ "SlimPajama",
+ "YouCook2",
+ "Shot2Story"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset is used in Stage 4 to extend the context length of the LLM?\nAnswer:",
+ " COYO-25M"
+ ],
+ [
+ "Question:Which dataset is used in Stage 4 to extend the context length of the LLM?\nAnswer:",
+ " SlimPajama"
+ ],
+ [
+ "Question:Which dataset is used in Stage 4 to extend the context length of the LLM?\nAnswer:",
+ " YouCook2"
+ ],
+ [
+ "Question:Which dataset is used in Stage 4 to extend the context length of the LLM?\nAnswer:",
+ " Shot2Story"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.8762264251709,
+ false
+ ]
+ ],
+ [
+ [
+ -17.669025421142578,
+ false
+ ]
+ ],
+ [
+ [
+ -21.235336303710938,
+ false
+ ]
+ ],
+ [
+ [
+ -26.448081970214844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.8762264251709,
+ false
+ ],
+ [
+ -17.669025421142578,
+ false
+ ],
+ [
+ -21.235336303710938,
+ false
+ ],
+ [
+ -26.448081970214844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a4faf5c9264ce653b3bedfdacea3d798fea9a79474a73ef34ecd0ee6cfdb95ed",
+ "prompt_hash": "32cb48456ade5784ba620662840f9a7e452b30ccc3f89208bd37508e8fc34185",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "How many videos are included in the LongVILA long video supervised fine-tuning dataset?",
+ "choices": [
+ "12,345",
+ "15,292",
+ "18,764",
+ "20,001"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many videos are included in the LongVILA long video supervised fine-tuning dataset?\nAnswer:",
+ " 12,345"
+ ],
+ [
+ "Question:How many videos are included in the LongVILA long video supervised fine-tuning dataset?\nAnswer:",
+ " 15,292"
+ ],
+ [
+ "Question:How many videos are included in the LongVILA long video supervised fine-tuning dataset?\nAnswer:",
+ " 18,764"
+ ],
+ [
+ "Question:How many videos are included in the LongVILA long video supervised fine-tuning dataset?\nAnswer:",
+ " 20,001"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.590742111206055,
+ false
+ ]
+ ],
+ [
+ [
+ -14.44241714477539,
+ false
+ ]
+ ],
+ [
+ [
+ -14.642477035522461,
+ false
+ ]
+ ],
+ [
+ [
+ -13.420373916625977,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.590742111206055,
+ false
+ ],
+ [
+ -14.44241714477539,
+ false
+ ],
+ [
+ -14.642477035522461,
+ false
+ ],
+ [
+ -13.420373916625977,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d46fb59bfb0fb6f34a89faf012d5d165c19301c9ff502c47f685e65636163fab",
+ "prompt_hash": "5db7d08dc8a19b42b72123d0cf2b236d0a4105c971f8cffbcdc8c9f1ca6ea2e2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What is the main function of the Visual Summarization Token (VST) in Video-XL?",
+ "choices": [
+ "To reduce model size by pruning layers",
+ "To summarize visual information within intervals into compressed KVs",
+ "To generate subtitles for video content",
+ "To align visual tokens with language tokens"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main function of the Visual Summarization Token (VST) in Video-XL?\nAnswer:",
+ " To reduce model size by pruning layers"
+ ],
+ [
+ "Question:What is the main function of the Visual Summarization Token (VST) in Video-XL?\nAnswer:",
+ " To summarize visual information within intervals into compressed KVs"
+ ],
+ [
+ "Question:What is the main function of the Visual Summarization Token (VST) in Video-XL?\nAnswer:",
+ " To generate subtitles for video content"
+ ],
+ [
+ "Question:What is the main function of the Visual Summarization Token (VST) in Video-XL?\nAnswer:",
+ " To align visual tokens with language tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.24161720275879,
+ false
+ ]
+ ],
+ [
+ [
+ -52.90513229370117,
+ false
+ ]
+ ],
+ [
+ [
+ -17.981550216674805,
+ false
+ ]
+ ],
+ [
+ [
+ -19.51709747314453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.24161720275879,
+ false
+ ],
+ [
+ -52.90513229370117,
+ false
+ ],
+ [
+ -17.981550216674805,
+ false
+ ],
+ [
+ -19.51709747314453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ab6b3e9da155f4e091c7adca38ca3f2181393cff5bcd17547010c14389815ad3",
+ "prompt_hash": "4f3a04b3e1ee5bb04e70300064c2ec7ae91e27ae9093f854d97d886610c6e9c8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which visual encoder does Video-XL use to process input images?",
+ "choices": [
+ "ViViT",
+ "TimeSformer",
+ "CLIP-ViT-L",
+ "Swin Transformer"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which visual encoder does Video-XL use to process input images?\nAnswer:",
+ " ViViT"
+ ],
+ [
+ "Question:Which visual encoder does Video-XL use to process input images?\nAnswer:",
+ " TimeSformer"
+ ],
+ [
+ "Question:Which visual encoder does Video-XL use to process input images?\nAnswer:",
+ " CLIP-ViT-L"
+ ],
+ [
+ "Question:Which visual encoder does Video-XL use to process input images?\nAnswer:",
+ " Swin Transformer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.41057300567627,
+ false
+ ]
+ ],
+ [
+ [
+ -13.634620666503906,
+ false
+ ]
+ ],
+ [
+ [
+ -14.097136497497559,
+ false
+ ]
+ ],
+ [
+ [
+ -12.50584888458252,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.41057300567627,
+ false
+ ],
+ [
+ -13.634620666503906,
+ false
+ ],
+ [
+ -14.097136497497559,
+ false
+ ],
+ [
+ -12.50584888458252,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "19029acc1632e0ce04138bde642186adfdb088364c6e22820cbced7dbd8b47a7",
+ "prompt_hash": "48a33f308bc8305cb506bf394dd05b82a1d9948d6b21d4320d2a0e16afcbb07d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "What technique does Video-XL use to enable training with increasing compression ratios?",
+ "choices": [
+ "Dropout regularization",
+ "Curriculum learning",
+ "Contrastive learning",
+ "Token shuffling"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What technique does Video-XL use to enable training with increasing compression ratios?\nAnswer:",
+ " Dropout regularization"
+ ],
+ [
+ "Question:What technique does Video-XL use to enable training with increasing compression ratios?\nAnswer:",
+ " Curriculum learning"
+ ],
+ [
+ "Question:What technique does Video-XL use to enable training with increasing compression ratios?\nAnswer:",
+ " Contrastive learning"
+ ],
+ [
+ "Question:What technique does Video-XL use to enable training with increasing compression ratios?\nAnswer:",
+ " Token shuffling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.249528884887695,
+ false
+ ]
+ ],
+ [
+ [
+ -12.305272102355957,
+ false
+ ]
+ ],
+ [
+ [
+ -10.114755630493164,
+ false
+ ]
+ ],
+ [
+ [
+ -15.036741256713867,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.249528884887695,
+ false
+ ],
+ [
+ -12.305272102355957,
+ false
+ ],
+ [
+ -10.114755630493164,
+ false
+ ],
+ [
+ -15.036741256713867,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "05ed3ed749c5082a395841f692f4e756ff6c490ecc6fd11c77bd2c9d78f01e2f",
+ "prompt_hash": "9326395753e20d8f6a210f80607a0defaf3caee8d5cf3017c7650ac04added78",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "How many frames can Video-XL process using a single A100-80GB GPU?",
+ "choices": [
+ "1024",
+ "4096",
+ "2048",
+ "512"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many frames can Video-XL process using a single A100-80GB GPU?\nAnswer:",
+ " 1024"
+ ],
+ [
+ "Question:How many frames can Video-XL process using a single A100-80GB GPU?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:How many frames can Video-XL process using a single A100-80GB GPU?\nAnswer:",
+ " 2048"
+ ],
+ [
+ "Question:How many frames can Video-XL process using a single A100-80GB GPU?\nAnswer:",
+ " 512"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.188669204711914,
+ false
+ ]
+ ],
+ [
+ [
+ -7.195087432861328,
+ false
+ ]
+ ],
+ [
+ [
+ -6.599781513214111,
+ false
+ ]
+ ],
+ [
+ [
+ -5.575624465942383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.188669204711914,
+ false
+ ],
+ [
+ -7.195087432861328,
+ false
+ ],
+ [
+ -6.599781513214111,
+ false
+ ],
+ [
+ -5.575624465942383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7b7c34cd606d716032e76d0177ab07a608e8af518d855eb8985638d584495d78",
+ "prompt_hash": "976819c662fd052e46e58e47c454e8d74ee47a3c9d5efeff61089cb2f90e7296",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "What is the name of the synthetic dataset introduced to improve multi-detail retrieval capabilities in Video-XL?",
+ "choices": [
+ "VideoQA++",
+ "V-Language",
+ "VICO",
+ "VisMulti"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the name of the synthetic dataset introduced to improve multi-detail retrieval capabilities in Video-XL?\nAnswer:",
+ " VideoQA++"
+ ],
+ [
+ "Question:What is the name of the synthetic dataset introduced to improve multi-detail retrieval capabilities in Video-XL?\nAnswer:",
+ " V-Language"
+ ],
+ [
+ "Question:What is the name of the synthetic dataset introduced to improve multi-detail retrieval capabilities in Video-XL?\nAnswer:",
+ " VICO"
+ ],
+ [
+ "Question:What is the name of the synthetic dataset introduced to improve multi-detail retrieval capabilities in Video-XL?\nAnswer:",
+ " VisMulti"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.095142364501953,
+ false
+ ]
+ ],
+ [
+ [
+ -17.66976547241211,
+ false
+ ]
+ ],
+ [
+ [
+ -13.14517879486084,
+ false
+ ]
+ ],
+ [
+ [
+ -18.147605895996094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.095142364501953,
+ false
+ ],
+ [
+ -17.66976547241211,
+ false
+ ],
+ [
+ -13.14517879486084,
+ false
+ ],
+ [
+ -18.147605895996094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ee12ffee2d13e230f203929df631c9db7b4bb411b9d369b3cd82831de0779b9a",
+ "prompt_hash": "46c9ab5339134e7daf84834412de21e0f378044a50bd1769753d972666508580",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "How many problems in the Omni-MATH dataset are sourced from the HMMT_2 contest?",
+ "choices": [
+ "896",
+ "1385",
+ "106",
+ "75"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many problems in the Omni-MATH dataset are sourced from the HMMT_2 contest?\nAnswer:",
+ " 896"
+ ],
+ [
+ "Question:How many problems in the Omni-MATH dataset are sourced from the HMMT_2 contest?\nAnswer:",
+ " 1385"
+ ],
+ [
+ "Question:How many problems in the Omni-MATH dataset are sourced from the HMMT_2 contest?\nAnswer:",
+ " 106"
+ ],
+ [
+ "Question:How many problems in the Omni-MATH dataset are sourced from the HMMT_2 contest?\nAnswer:",
+ " 75"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.793913841247559,
+ false
+ ]
+ ],
+ [
+ [
+ -12.004586219787598,
+ false
+ ]
+ ],
+ [
+ [
+ -7.941033363342285,
+ false
+ ]
+ ],
+ [
+ [
+ -7.036806106567383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.793913841247559,
+ false
+ ],
+ [
+ -12.004586219787598,
+ false
+ ],
+ [
+ -7.941033363342285,
+ false
+ ],
+ [
+ -7.036806106567383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0a5e5235b6e1fe059e6bf460d653870620d294c41e45b803d11e32dcdf5a318f",
+ "prompt_hash": "ace468d42a70969b8a40545c6810c92b0928178610da37347fa2ff704a75febe",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "What is the maximum value of the trend intensity metric \\\\( \\\\mathcal{A} \\\\) defined in the difficulty consistency analysis?",
+ "choices": [
+ "75",
+ "200",
+ "-200",
+ "100"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the maximum value of the trend intensity metric \\\\( \\\\mathcal{A} \\\\) defined in the difficulty consistency analysis?\nAnswer:",
+ " 75"
+ ],
+ [
+ "Question:What is the maximum value of the trend intensity metric \\\\( \\\\mathcal{A} \\\\) defined in the difficulty consistency analysis?\nAnswer:",
+ " 200"
+ ],
+ [
+ "Question:What is the maximum value of the trend intensity metric \\\\( \\\\mathcal{A} \\\\) defined in the difficulty consistency analysis?\nAnswer:",
+ " -200"
+ ],
+ [
+ "Question:What is the maximum value of the trend intensity metric \\\\( \\\\mathcal{A} \\\\) defined in the difficulty consistency analysis?\nAnswer:",
+ " 100"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.222622871398926,
+ false
+ ]
+ ],
+ [
+ [
+ -7.002682685852051,
+ false
+ ]
+ ],
+ [
+ [
+ -11.823040962219238,
+ false
+ ]
+ ],
+ [
+ [
+ -5.583542346954346,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.222622871398926,
+ false
+ ],
+ [
+ -7.002682685852051,
+ false
+ ],
+ [
+ -11.823040962219238,
+ false
+ ],
+ [
+ -5.583542346954346,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "95c164209da12cf48779f8fd02937d4b49ef90e767068725ecef87b8de14fe2f",
+ "prompt_hash": "ebaff398c564036b069093bb1d4499c667f7c8f74c86f8941bcd4e0cfb64d5d6",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "Which error type is identified as the most frequent during process-level assessment of model-generated mathematical solutions?",
+ "choices": [
+ "Calculation",
+ "Accumulation",
+ "Unrelated",
+ "Logic"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which error type is identified as the most frequent during process-level assessment of model-generated mathematical solutions?\nAnswer:",
+ " Calculation"
+ ],
+ [
+ "Question:Which error type is identified as the most frequent during process-level assessment of model-generated mathematical solutions?\nAnswer:",
+ " Accumulation"
+ ],
+ [
+ "Question:Which error type is identified as the most frequent during process-level assessment of model-generated mathematical solutions?\nAnswer:",
+ " Unrelated"
+ ],
+ [
+ "Question:Which error type is identified as the most frequent during process-level assessment of model-generated mathematical solutions?\nAnswer:",
+ " Logic"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.842470169067383,
+ false
+ ]
+ ],
+ [
+ [
+ -12.819282531738281,
+ false
+ ]
+ ],
+ [
+ [
+ -12.745844841003418,
+ false
+ ]
+ ],
+ [
+ [
+ -11.778804779052734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.842470169067383,
+ false
+ ],
+ [
+ -12.819282531738281,
+ false
+ ],
+ [
+ -12.745844841003418,
+ false
+ ],
+ [
+ -11.778804779052734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a965a9a067cdd28c14092a1c2c8424370bd560fe3dbe71408eb6149645fc2916",
+ "prompt_hash": "055439271e3814e4eee77b7f8ca47bd8364a1de10e29066297dd459b83408328",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which model achieved the highest consistency rate with GPT-4o in the Omni-Judge evaluation?",
+ "choices": [
+ "LLaMA-2-7b-Chat",
+ "LLaMA-3-8b-Instruct",
+ "LLaMA-3.1-8b-Instruct",
+ "MetaLlama-3.1-70B-instruct"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model achieved the highest consistency rate with GPT-4o in the Omni-Judge evaluation?\nAnswer:",
+ " LLaMA-2-7b-Chat"
+ ],
+ [
+ "Question:Which model achieved the highest consistency rate with GPT-4o in the Omni-Judge evaluation?\nAnswer:",
+ " LLaMA-3-8b-Instruct"
+ ],
+ [
+ "Question:Which model achieved the highest consistency rate with GPT-4o in the Omni-Judge evaluation?\nAnswer:",
+ " LLaMA-3.1-8b-Instruct"
+ ],
+ [
+ "Question:Which model achieved the highest consistency rate with GPT-4o in the Omni-Judge evaluation?\nAnswer:",
+ " MetaLlama-3.1-70B-instruct"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.803985595703125,
+ false
+ ]
+ ],
+ [
+ [
+ -15.235649108886719,
+ false
+ ]
+ ],
+ [
+ [
+ -29.402576446533203,
+ false
+ ]
+ ],
+ [
+ [
+ -33.316680908203125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.803985595703125,
+ false
+ ],
+ [
+ -15.235649108886719,
+ false
+ ],
+ [
+ -29.402576446533203,
+ false
+ ],
+ [
+ -33.316680908203125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6be0fdba9c7e5a2761a177a9bd233dce391802d7ff89b3039b893e560c5aefef",
+ "prompt_hash": "7679b8758e83a28a1b38c63d37f3adaa9c9102f41967a6f095a737d4fc63f07f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "What proportion of answers in the 200 randomly sampled Omni-MATH problems were classified as 'Text' type?",
+ "choices": [
+ "34",
+ "51",
+ "95",
+ "8"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What proportion of answers in the 200 randomly sampled Omni-MATH problems were classified as 'Text' type?\nAnswer:",
+ " 34"
+ ],
+ [
+ "Question:What proportion of answers in the 200 randomly sampled Omni-MATH problems were classified as 'Text' type?\nAnswer:",
+ " 51"
+ ],
+ [
+ "Question:What proportion of answers in the 200 randomly sampled Omni-MATH problems were classified as 'Text' type?\nAnswer:",
+ " 95"
+ ],
+ [
+ "Question:What proportion of answers in the 200 randomly sampled Omni-MATH problems were classified as 'Text' type?\nAnswer:",
+ " 8"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.218066692352295,
+ false
+ ]
+ ],
+ [
+ [
+ -6.431605815887451,
+ false
+ ]
+ ],
+ [
+ [
+ -7.052123546600342,
+ false
+ ]
+ ],
+ [
+ [
+ -4.304784774780273,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.218066692352295,
+ false
+ ],
+ [
+ -6.431605815887451,
+ false
+ ],
+ [
+ -7.052123546600342,
+ false
+ ],
+ [
+ -4.304784774780273,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3a86737612a9683d7d370b0913cb5f25f494e298179962b646ce55733319d905",
+ "prompt_hash": "b8e869651696406e58e09116ea37bc3dc7a38b4745aa4d2aed0fd7d7d97e688d",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What is the success rate of leading language models on the FrontierMath benchmark?",
+ "choices": [
+ "A. Over 50%",
+ "B. Between 10% and 20%",
+ "C. Between 2% and 5%",
+ "D. Less than 2%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the success rate of leading language models on the FrontierMath benchmark?\nAnswer:",
+ " A. Over 50%"
+ ],
+ [
+ "Question:What is the success rate of leading language models on the FrontierMath benchmark?\nAnswer:",
+ " B. Between 10% and 20%"
+ ],
+ [
+ "Question:What is the success rate of leading language models on the FrontierMath benchmark?\nAnswer:",
+ " C. Between 2% and 5%"
+ ],
+ [
+ "Question:What is the success rate of leading language models on the FrontierMath benchmark?\nAnswer:",
+ " D. Less than 2%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.314029693603516,
+ false
+ ]
+ ],
+ [
+ [
+ -32.98554611206055,
+ false
+ ]
+ ],
+ [
+ [
+ -36.0869255065918,
+ false
+ ]
+ ],
+ [
+ [
+ -28.037778854370117,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.314029693603516,
+ false
+ ],
+ [
+ -32.98554611206055,
+ false
+ ],
+ [
+ -36.0869255065918,
+ false
+ ],
+ [
+ -28.037778854370117,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fb724d7d2863885f3cf6a1163886e3738f7ac37c4f79ddca68cd0f40d50cb26a",
+ "prompt_hash": "e9dafc91799916a2de278f5ce5de05e1083033fa4e79b19efd23065a0ddc8416",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which two MSC classifications account for approximately 34% of the FrontierMath dataset?",
+ "choices": [
+ "A. Number theory and group theory",
+ "B. Combinatorics and algebraic geometry",
+ "C. Number theory and combinatorics",
+ "D. Linear algebra and category theory"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which two MSC classifications account for approximately 34% of the FrontierMath dataset?\nAnswer:",
+ " A. Number theory and group theory"
+ ],
+ [
+ "Question:Which two MSC classifications account for approximately 34% of the FrontierMath dataset?\nAnswer:",
+ " B. Combinatorics and algebraic geometry"
+ ],
+ [
+ "Question:Which two MSC classifications account for approximately 34% of the FrontierMath dataset?\nAnswer:",
+ " C. Number theory and combinatorics"
+ ],
+ [
+ "Question:Which two MSC classifications account for approximately 34% of the FrontierMath dataset?\nAnswer:",
+ " D. Linear algebra and category theory"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.048017501831055,
+ false
+ ]
+ ],
+ [
+ [
+ -22.854753494262695,
+ false
+ ]
+ ],
+ [
+ [
+ -23.063589096069336,
+ false
+ ]
+ ],
+ [
+ [
+ -28.897056579589844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.048017501831055,
+ false
+ ],
+ [
+ -22.854753494262695,
+ false
+ ],
+ [
+ -23.063589096069336,
+ false
+ ],
+ [
+ -28.897056579589844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "604fd78a586878ff4f413ed6f22f71b442200ec02108500692fc0245ad46b421",
+ "prompt_hash": "467b4440ea470c77b5f52afebf24eb0321adac3836f625e66bb243d957d956ea",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "What is the estimated critical error rate of the FrontierMath benchmark based on blind review?",
+ "choices": [
+ "A. 3%",
+ "B. 6%",
+ "C. 10%",
+ "D. 15%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the estimated critical error rate of the FrontierMath benchmark based on blind review?\nAnswer:",
+ " A. 3%"
+ ],
+ [
+ "Question:What is the estimated critical error rate of the FrontierMath benchmark based on blind review?\nAnswer:",
+ " B. 6%"
+ ],
+ [
+ "Question:What is the estimated critical error rate of the FrontierMath benchmark based on blind review?\nAnswer:",
+ " C. 10%"
+ ],
+ [
+ "Question:What is the estimated critical error rate of the FrontierMath benchmark based on blind review?\nAnswer:",
+ " D. 15%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.265060424804688,
+ false
+ ]
+ ],
+ [
+ [
+ -24.73288345336914,
+ false
+ ]
+ ],
+ [
+ [
+ -22.54848289489746,
+ false
+ ]
+ ],
+ [
+ [
+ -24.39875602722168,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.265060424804688,
+ false
+ ],
+ [
+ -24.73288345336914,
+ false
+ ],
+ [
+ -22.54848289489746,
+ false
+ ],
+ [
+ -24.39875602722168,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "73232ae25a7ec8e87e70a6a8c15642854c2045fe57f97631f7a1c18f334cccb1",
+ "prompt_hash": "ffd96735ddf9f5aea6c88664038e563748ffb9d2f1703a9e58da228705766970",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "How many Fields Medalists were interviewed to assess the difficulty and relevance of FrontierMath?",
+ "choices": [
+ "A. One",
+ "B. Two",
+ "C. Three",
+ "D. Four"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many Fields Medalists were interviewed to assess the difficulty and relevance of FrontierMath?\nAnswer:",
+ " A. One"
+ ],
+ [
+ "Question:How many Fields Medalists were interviewed to assess the difficulty and relevance of FrontierMath?\nAnswer:",
+ " B. Two"
+ ],
+ [
+ "Question:How many Fields Medalists were interviewed to assess the difficulty and relevance of FrontierMath?\nAnswer:",
+ " C. Three"
+ ],
+ [
+ "Question:How many Fields Medalists were interviewed to assess the difficulty and relevance of FrontierMath?\nAnswer:",
+ " D. Four"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.897353172302246,
+ false
+ ]
+ ],
+ [
+ [
+ -15.479686737060547,
+ false
+ ]
+ ],
+ [
+ [
+ -15.306407928466797,
+ false
+ ]
+ ],
+ [
+ [
+ -16.060991287231445,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.897353172302246,
+ false
+ ],
+ [
+ -15.479686737060547,
+ false
+ ],
+ [
+ -15.306407928466797,
+ false
+ ],
+ [
+ -16.060991287231445,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "92536fa76b86f3416d618123ba7e1ac49f79cf14a5ef14270b202fbb22f4a8f0",
+ "prompt_hash": "c021c1ebb446b3bda19c667d9c143e5fb5afc75d3c09f41c5d7e24568f777fe6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "What is the primary reason existing benchmarks like MATH and GSM8K are considered insufficient for evaluating advanced mathematical reasoning in AI?",
+ "choices": [
+ "A. They contain too many open-ended problems.",
+ "B. They are based on outdated mathematical theory.",
+ "C. Models have achieved near-perfect scores on them.",
+ "D. They are limited to symbolic computation only."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary reason existing benchmarks like MATH and GSM8K are considered insufficient for evaluating advanced mathematical reasoning in AI?\nAnswer:",
+ " A. They contain too many open-ended problems."
+ ],
+ [
+ "Question:What is the primary reason existing benchmarks like MATH and GSM8K are considered insufficient for evaluating advanced mathematical reasoning in AI?\nAnswer:",
+ " B. They are based on outdated mathematical theory."
+ ],
+ [
+ "Question:What is the primary reason existing benchmarks like MATH and GSM8K are considered insufficient for evaluating advanced mathematical reasoning in AI?\nAnswer:",
+ " C. Models have achieved near-perfect scores on them."
+ ],
+ [
+ "Question:What is the primary reason existing benchmarks like MATH and GSM8K are considered insufficient for evaluating advanced mathematical reasoning in AI?\nAnswer:",
+ " D. They are limited to symbolic computation only."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.125661849975586,
+ false
+ ]
+ ],
+ [
+ [
+ -32.29228973388672,
+ false
+ ]
+ ],
+ [
+ [
+ -39.08148193359375,
+ false
+ ]
+ ],
+ [
+ [
+ -35.807430267333984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.125661849975586,
+ false
+ ],
+ [
+ -32.29228973388672,
+ false
+ ],
+ [
+ -39.08148193359375,
+ false
+ ],
+ [
+ -35.807430267333984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "47eb164109115e79f1c451f50e7f4fa925728fd1217329b9466740453a1f5756",
+ "prompt_hash": "b2ecb72db476336ef9065e8ba6707ea0b2787e97183e1e00aeca7136b40e0d26",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What does the parameter \\\\( \\\\gamma_h \\\\) represent in the Shannon capacity formula?",
+ "choices": [
+ "Available bandwidth",
+ "Effective channel gain",
+ "Signal power",
+ "Noise power"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does the parameter \\\\( \\\\gamma_h \\\\) represent in the Shannon capacity formula?\nAnswer:",
+ " Available bandwidth"
+ ],
+ [
+ "Question:What does the parameter \\\\( \\\\gamma_h \\\\) represent in the Shannon capacity formula?\nAnswer:",
+ " Effective channel gain"
+ ],
+ [
+ "Question:What does the parameter \\\\( \\\\gamma_h \\\\) represent in the Shannon capacity formula?\nAnswer:",
+ " Signal power"
+ ],
+ [
+ "Question:What does the parameter \\\\( \\\\gamma_h \\\\) represent in the Shannon capacity formula?\nAnswer:",
+ " Noise power"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.229288101196289,
+ false
+ ]
+ ],
+ [
+ [
+ -15.019903182983398,
+ false
+ ]
+ ],
+ [
+ [
+ -11.57690715789795,
+ false
+ ]
+ ],
+ [
+ [
+ -11.713316917419434,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.229288101196289,
+ false
+ ],
+ [
+ -15.019903182983398,
+ false
+ ],
+ [
+ -11.57690715789795,
+ false
+ ],
+ [
+ -11.713316917419434,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "caa8bbea2cb52d55ccc287406d790e3015ce631c0834d8f17178d18642335aef",
+ "prompt_hash": "1265b2989bfbc8a4cfb448e69880f5bd0e58c00570492ec1ff561b9a461ad8f0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "Which communication technology allows \\\\( P_n \\\\) to be treated as a configurable system parameter?",
+ "choices": [
+ "NOMA",
+ "MIMO",
+ "Noise modulation",
+ "RIS"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which communication technology allows \\\\( P_n \\\\) to be treated as a configurable system parameter?\nAnswer:",
+ " NOMA"
+ ],
+ [
+ "Question:Which communication technology allows \\\\( P_n \\\\) to be treated as a configurable system parameter?\nAnswer:",
+ " MIMO"
+ ],
+ [
+ "Question:Which communication technology allows \\\\( P_n \\\\) to be treated as a configurable system parameter?\nAnswer:",
+ " Noise modulation"
+ ],
+ [
+ "Question:Which communication technology allows \\\\( P_n \\\\) to be treated as a configurable system parameter?\nAnswer:",
+ " RIS"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.54871940612793,
+ false
+ ]
+ ],
+ [
+ [
+ -12.308393478393555,
+ false
+ ]
+ ],
+ [
+ [
+ -18.554058074951172,
+ false
+ ]
+ ],
+ [
+ [
+ -12.541747093200684,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.54871940612793,
+ false
+ ],
+ [
+ -12.308393478393555,
+ false
+ ],
+ [
+ -18.554058074951172,
+ false
+ ],
+ [
+ -12.541747093200684,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8794ede48847d991771909da45d875c91fdb156214c8e27d545be83fca7ce78d",
+ "prompt_hash": "72ca7c5f2ac66b9929b418ce19a700167b6aa456de73d3c075407a8bbb0c7213",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "What is one unique feature of pinching antennas demonstrated by DOCOMO in 2022?",
+ "choices": [
+ "High-cost antenna reconfiguration",
+ "Inability to support LoS communication",
+ "Fixed installation at transceivers",
+ "Flexible deployment to support strong LoS links"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is one unique feature of pinching antennas demonstrated by DOCOMO in 2022?\nAnswer:",
+ " High-cost antenna reconfiguration"
+ ],
+ [
+ "Question:What is one unique feature of pinching antennas demonstrated by DOCOMO in 2022?\nAnswer:",
+ " Inability to support LoS communication"
+ ],
+ [
+ "Question:What is one unique feature of pinching antennas demonstrated by DOCOMO in 2022?\nAnswer:",
+ " Fixed installation at transceivers"
+ ],
+ [
+ "Question:What is one unique feature of pinching antennas demonstrated by DOCOMO in 2022?\nAnswer:",
+ " Flexible deployment to support strong LoS links"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.219932556152344,
+ false
+ ]
+ ],
+ [
+ [
+ -29.853424072265625,
+ false
+ ]
+ ],
+ [
+ [
+ -34.562137603759766,
+ false
+ ]
+ ],
+ [
+ [
+ -44.639793395996094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.219932556152344,
+ false
+ ],
+ [
+ -29.853424072265625,
+ false
+ ],
+ [
+ -34.562137603759766,
+ false
+ ],
+ [
+ -44.639793395996094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "df2bf0e8ec5836ac8c9b56aa2cdd36f047860e4145da2b160983e3ae8e237236",
+ "prompt_hash": "688dfac913d0eba440ad3d2edcf0e107af2f03802368c86f07a686245728bb32",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "In the high SNR regime, what is the approximate ergodic sum rate gain of pinching antennas over conventional antennas dependent on?",
+ "choices": [
+ "The number of waveguides",
+ "The deployment cost of antennas",
+ "The ratio \\( \\frac{D}{d} \\)",
+ "The modulation scheme"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the high SNR regime, what is the approximate ergodic sum rate gain of pinching antennas over conventional antennas dependent on?\nAnswer:",
+ " The number of waveguides"
+ ],
+ [
+ "Question:In the high SNR regime, what is the approximate ergodic sum rate gain of pinching antennas over conventional antennas dependent on?\nAnswer:",
+ " The deployment cost of antennas"
+ ],
+ [
+ "Question:In the high SNR regime, what is the approximate ergodic sum rate gain of pinching antennas over conventional antennas dependent on?\nAnswer:",
+ " The ratio \\( \\frac{D}{d} \\)"
+ ],
+ [
+ "Question:In the high SNR regime, what is the approximate ergodic sum rate gain of pinching antennas over conventional antennas dependent on?\nAnswer:",
+ " The modulation scheme"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.938186645507812,
+ false
+ ]
+ ],
+ [
+ [
+ -19.054763793945312,
+ false
+ ]
+ ],
+ [
+ [
+ -31.16602325439453,
+ false
+ ]
+ ],
+ [
+ [
+ -16.148653030395508,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.938186645507812,
+ false
+ ],
+ [
+ -19.054763793945312,
+ false
+ ],
+ [
+ -31.16602325439453,
+ false
+ ],
+ [
+ -16.148653030395508,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "913ffe5ab2c4e9354f9da825d2adc0d08a777f3210d7d06478e42072760a2a7c",
+ "prompt_hash": "dacddc5de4ac44a8476a44d2839dc73456a28baf1523b2e9f0544fd579e7e568",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "What condition is required for multiple pinching antennas on a single waveguide to achieve constructive interference?",
+ "choices": [
+ "Using independent RF chains for each antenna",
+ "Ensuring equal distance from all users",
+ "Aligning signal phase shifts across antennas",
+ "Increasing the carrier frequency"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What condition is required for multiple pinching antennas on a single waveguide to achieve constructive interference?\nAnswer:",
+ " Using independent RF chains for each antenna"
+ ],
+ [
+ "Question:What condition is required for multiple pinching antennas on a single waveguide to achieve constructive interference?\nAnswer:",
+ " Ensuring equal distance from all users"
+ ],
+ [
+ "Question:What condition is required for multiple pinching antennas on a single waveguide to achieve constructive interference?\nAnswer:",
+ " Aligning signal phase shifts across antennas"
+ ],
+ [
+ "Question:What condition is required for multiple pinching antennas on a single waveguide to achieve constructive interference?\nAnswer:",
+ " Increasing the carrier frequency"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.47564697265625,
+ false
+ ]
+ ],
+ [
+ [
+ -34.380126953125,
+ false
+ ]
+ ],
+ [
+ [
+ -38.81388854980469,
+ false
+ ]
+ ],
+ [
+ [
+ -12.850831031799316,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.47564697265625,
+ false
+ ],
+ [
+ -34.380126953125,
+ false
+ ],
+ [
+ -38.81388854980469,
+ false
+ ],
+ [
+ -12.850831031799316,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e1bcf5e1bdbd66506843b97b3911efdb450ec267b9757b4852dd24d46d79dc12",
+ "prompt_hash": "376a8a5df82e3d345c9f436b865e152193185c84d22742a7bb2709adff2478a4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "What frame rate is used by the speech tokenizer in GLM-4-Voice?",
+ "choices": [
+ "A. 50Hz",
+ "B. 25Hz",
+ "C. 12.5Hz",
+ "D. 6.25Hz"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What frame rate is used by the speech tokenizer in GLM-4-Voice?\nAnswer:",
+ " A. 50Hz"
+ ],
+ [
+ "Question:What frame rate is used by the speech tokenizer in GLM-4-Voice?\nAnswer:",
+ " B. 25Hz"
+ ],
+ [
+ "Question:What frame rate is used by the speech tokenizer in GLM-4-Voice?\nAnswer:",
+ " C. 12.5Hz"
+ ],
+ [
+ "Question:What frame rate is used by the speech tokenizer in GLM-4-Voice?\nAnswer:",
+ " D. 6.25Hz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.651763916015625,
+ false
+ ]
+ ],
+ [
+ [
+ -19.52559471130371,
+ false
+ ]
+ ],
+ [
+ [
+ -21.01659393310547,
+ false
+ ]
+ ],
+ [
+ [
+ -27.753231048583984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.651763916015625,
+ false
+ ],
+ [
+ -19.52559471130371,
+ false
+ ],
+ [
+ -21.01659393310547,
+ false
+ ],
+ [
+ -27.753231048583984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3f47d465aee898fe5f2858c9697a72df4ec05fa08dcd205a7b7dba6b3385f64a",
+ "prompt_hash": "bbd6919b9e251cf2028e21fa63346428252f3a62bf9c9dd8658015c1f9739415",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "Which model is used as the initialization base for GLM-4-Voice?",
+ "choices": [
+ "A. Qwen2-7B",
+ "B. Whisper-Large-V3",
+ "C. GLM-4-9B-Base",
+ "D. ChatGLM3-6B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model is used as the initialization base for GLM-4-Voice?\nAnswer:",
+ " A. Qwen2-7B"
+ ],
+ [
+ "Question:Which model is used as the initialization base for GLM-4-Voice?\nAnswer:",
+ " B. Whisper-Large-V3"
+ ],
+ [
+ "Question:Which model is used as the initialization base for GLM-4-Voice?\nAnswer:",
+ " C. GLM-4-9B-Base"
+ ],
+ [
+ "Question:Which model is used as the initialization base for GLM-4-Voice?\nAnswer:",
+ " D. ChatGLM3-6B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.858482360839844,
+ false
+ ]
+ ],
+ [
+ [
+ -18.8957462310791,
+ false
+ ]
+ ],
+ [
+ [
+ -30.00905418395996,
+ false
+ ]
+ ],
+ [
+ [
+ -27.548831939697266,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.858482360839844,
+ false
+ ],
+ [
+ -18.8957462310791,
+ false
+ ],
+ [
+ -30.00905418395996,
+ false
+ ],
+ [
+ -27.548831939697266,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a293f6d8dadaf6bf2f7043fc920412bce4bc44eea4364f1f16750dd30ed27e60",
+ "prompt_hash": "736edfb168814c76d08998796804177f146b07aacb0759253d8bfd2e1aeb3486",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "Which speech decoder architecture is used in GLM-4-Voice?",
+ "choices": [
+ "A. FastSpeech 2",
+ "B. CosyVoice",
+ "C. Tacotron 2",
+ "D. VALL-E"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which speech decoder architecture is used in GLM-4-Voice?\nAnswer:",
+ " A. FastSpeech 2"
+ ],
+ [
+ "Question:Which speech decoder architecture is used in GLM-4-Voice?\nAnswer:",
+ " B. CosyVoice"
+ ],
+ [
+ "Question:Which speech decoder architecture is used in GLM-4-Voice?\nAnswer:",
+ " C. Tacotron 2"
+ ],
+ [
+ "Question:Which speech decoder architecture is used in GLM-4-Voice?\nAnswer:",
+ " D. VALL-E"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.32555866241455,
+ false
+ ]
+ ],
+ [
+ [
+ -22.239765167236328,
+ false
+ ]
+ ],
+ [
+ [
+ -18.153594970703125,
+ false
+ ]
+ ],
+ [
+ [
+ -21.598918914794922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.32555866241455,
+ false
+ ],
+ [
+ -22.239765167236328,
+ false
+ ],
+ [
+ -18.153594970703125,
+ false
+ ],
+ [
+ -21.598918914794922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "850102a872cc87cacfad06d4e0d5cb4794eba6950191dc24f32f5ba7d381e3ab",
+ "prompt_hash": "a9fc375bc89c3d93c91a932a96b0528b1f5b93895c18af2d3aa297b0eb2ff84f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "What is the total number of tokens used during pre-training of GLM-4-Voice?",
+ "choices": [
+ "A. 700 million",
+ "B. 7 billion",
+ "C. 1 trillion",
+ "D. 12 billion"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total number of tokens used during pre-training of GLM-4-Voice?\nAnswer:",
+ " A. 700 million"
+ ],
+ [
+ "Question:What is the total number of tokens used during pre-training of GLM-4-Voice?\nAnswer:",
+ " B. 7 billion"
+ ],
+ [
+ "Question:What is the total number of tokens used during pre-training of GLM-4-Voice?\nAnswer:",
+ " C. 1 trillion"
+ ],
+ [
+ "Question:What is the total number of tokens used during pre-training of GLM-4-Voice?\nAnswer:",
+ " D. 12 billion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.722270965576172,
+ false
+ ]
+ ],
+ [
+ [
+ -20.472637176513672,
+ false
+ ]
+ ],
+ [
+ [
+ -22.23086929321289,
+ false
+ ]
+ ],
+ [
+ [
+ -22.3320369720459,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.722270965576172,
+ false
+ ],
+ [
+ -20.472637176513672,
+ false
+ ],
+ [
+ -22.23086929321289,
+ false
+ ],
+ [
+ -22.3320369720459,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "74e876c3453e4c4b42efbcfb18fb317a6029dbe0e340688a0d15ebb475e1c0c0",
+ "prompt_hash": "a7766b046084beb4895caed4bb212405c27f90baeae0cb0f1c8d744b3a4902e5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "Which model provides the text predictions for English recognition in the TTS task?",
+ "choices": [
+ "A. Whisper-Large-V3",
+ "B. Paraformer-Large",
+ "C. ChatGPT",
+ "D. CosyVoice"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which model provides the text predictions for English recognition in the TTS task?\nAnswer:",
+ " A. Whisper-Large-V3"
+ ],
+ [
+ "Question:Which model provides the text predictions for English recognition in the TTS task?\nAnswer:",
+ " B. Paraformer-Large"
+ ],
+ [
+ "Question:Which model provides the text predictions for English recognition in the TTS task?\nAnswer:",
+ " C. ChatGPT"
+ ],
+ [
+ "Question:Which model provides the text predictions for English recognition in the TTS task?\nAnswer:",
+ " D. CosyVoice"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.751648902893066,
+ false
+ ]
+ ],
+ [
+ [
+ -26.65165138244629,
+ false
+ ]
+ ],
+ [
+ [
+ -15.32774543762207,
+ false
+ ]
+ ],
+ [
+ [
+ -22.42506980895996,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.751648902893066,
+ false
+ ],
+ [
+ -26.65165138244629,
+ false
+ ],
+ [
+ -15.32774543762207,
+ false
+ ],
+ [
+ -22.42506980895996,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "70b1b8c729dc4de68d708dae2634d94cd7992df78b1a011c91085f51b37f64b9",
+ "prompt_hash": "559397a2d29372587b9ffb95e5efbe13ca23fa3ed596ae5a96b78a1d3780be3d",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the name of the newly introduced dataset that uses randomly generated DAGs for logical reasoning tasks?",
+ "choices": [
+ "TreeQA",
+ "GraphProofQA",
+ "ProsQA",
+ "LogicDAG"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the name of the newly introduced dataset that uses randomly generated DAGs for logical reasoning tasks?\nAnswer:",
+ " TreeQA"
+ ],
+ [
+ "Question:What is the name of the newly introduced dataset that uses randomly generated DAGs for logical reasoning tasks?\nAnswer:",
+ " GraphProofQA"
+ ],
+ [
+ "Question:What is the name of the newly introduced dataset that uses randomly generated DAGs for logical reasoning tasks?\nAnswer:",
+ " ProsQA"
+ ],
+ [
+ "Question:What is the name of the newly introduced dataset that uses randomly generated DAGs for logical reasoning tasks?\nAnswer:",
+ " LogicDAG"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.236031532287598,
+ false
+ ]
+ ],
+ [
+ [
+ -19.69611358642578,
+ false
+ ]
+ ],
+ [
+ [
+ -20.450382232666016,
+ false
+ ]
+ ],
+ [
+ [
+ -15.820966720581055,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.236031532287598,
+ false
+ ],
+ [
+ -19.69611358642578,
+ false
+ ],
+ [
+ -20.450382232666016,
+ false
+ ],
+ [
+ -15.820966720581055,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "217edf1170ad8ce8a10962ef9838cb1c147f69453ff3b88e325419607a5c912f",
+ "prompt_hash": "f1f4f13fd8429cb29c05b70cdf386e00ca3b54085197be705ad3102830e66f08",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "Which pre-trained model is used as the base model for all experiments?",
+ "choices": [
+ "GPT-2",
+ "LLaMA-2",
+ "GPT-Neo",
+ "T5"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which pre-trained model is used as the base model for all experiments?\nAnswer:",
+ " GPT-2"
+ ],
+ [
+ "Question:Which pre-trained model is used as the base model for all experiments?\nAnswer:",
+ " LLaMA-2"
+ ],
+ [
+ "Question:Which pre-trained model is used as the base model for all experiments?\nAnswer:",
+ " GPT-Neo"
+ ],
+ [
+ "Question:Which pre-trained model is used as the base model for all experiments?\nAnswer:",
+ " T5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.498136520385742,
+ false
+ ]
+ ],
+ [
+ [
+ -9.902589797973633,
+ false
+ ]
+ ],
+ [
+ [
+ -9.747665405273438,
+ false
+ ]
+ ],
+ [
+ [
+ -6.549315452575684,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.498136520385742,
+ false
+ ],
+ [
+ -9.902589797973633,
+ false
+ ],
+ [
+ -9.747665405273438,
+ false
+ ],
+ [
+ -6.549315452575684,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "717cadaa616a2bdcb3b4bf53a886de4b82ea0600a2c355ba95d9d1c16c134cd3",
+ "prompt_hash": "4b95d935fa7bcd67d739d9d8436016f42a8f32e5e23471f1ae1a0285f58d13fa",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "Which token is used to mark the end of the latent thought mode in the proposed method?",
+ "choices": [
+ "",
+ "",
+ "",
+ ""
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which token is used to mark the end of the latent thought mode in the proposed method?\nAnswer:",
+ " "
+ ],
+ [
+ "Question:Which token is used to mark the end of the latent thought mode in the proposed method?\nAnswer:",
+ " "
+ ],
+ [
+ "Question:Which token is used to mark the end of the latent thought mode in the proposed method?\nAnswer:",
+ " "
+ ],
+ [
+ "Question:Which token is used to mark the end of the latent thought mode in the proposed method?\nAnswer:",
+ " "
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.798894882202148,
+ false
+ ]
+ ],
+ [
+ [
+ -16.525150299072266,
+ false
+ ]
+ ],
+ [
+ [
+ -18.213878631591797,
+ false
+ ]
+ ],
+ [
+ [
+ -21.657358169555664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.798894882202148,
+ false
+ ],
+ [
+ -16.525150299072266,
+ false
+ ],
+ [
+ -18.213878631591797,
+ false
+ ],
+ [
+ -21.657358169555664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cf0f9f5525037bbc013d7bb008d93bb912e491d8bfc8a8a3066055cd421ac454",
+ "prompt_hash": "48b90eea372a285d08bd038c7dfcb3a0d2529d59ea81e7e38d313a5a14106a8e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "What is the default value of the hyperparameter 'c' used for math reasoning tasks in this study?",
+ "choices": [
+ "1",
+ "2",
+ "3",
+ "4"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the default value of the hyperparameter 'c' used for math reasoning tasks in this study?\nAnswer:",
+ " 1"
+ ],
+ [
+ "Question:What is the default value of the hyperparameter 'c' used for math reasoning tasks in this study?\nAnswer:",
+ " 2"
+ ],
+ [
+ "Question:What is the default value of the hyperparameter 'c' used for math reasoning tasks in this study?\nAnswer:",
+ " 3"
+ ],
+ [
+ "Question:What is the default value of the hyperparameter 'c' used for math reasoning tasks in this study?\nAnswer:",
+ " 4"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.3783435821533203,
+ false
+ ]
+ ],
+ [
+ [
+ -3.9628448486328125,
+ false
+ ]
+ ],
+ [
+ [
+ -4.146780014038086,
+ false
+ ]
+ ],
+ [
+ [
+ -4.759138107299805,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.3783435821533203,
+ false
+ ],
+ [
+ -3.9628448486328125,
+ false
+ ],
+ [
+ -4.146780014038086,
+ false
+ ],
+ [
+ -4.759138107299805,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ca09e725c397a1c7347e96ad136378e5dd2d335a63df0a84e35597299b2a3ca1",
+ "prompt_hash": "174c8e3c250a846c3b26420ac08a5f026b3b9b41c8763c39a85758bd0a1c3f99",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "Which baseline method removes tokens at the beginning of the reasoning chain during training and predicts the answer directly during inference?",
+ "choices": [
+ "No-CoT",
+ "Pause Token",
+ "iCoT",
+ "w/o curriculum"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which baseline method removes tokens at the beginning of the reasoning chain during training and predicts the answer directly during inference?\nAnswer:",
+ " No-CoT"
+ ],
+ [
+ "Question:Which baseline method removes tokens at the beginning of the reasoning chain during training and predicts the answer directly during inference?\nAnswer:",
+ " Pause Token"
+ ],
+ [
+ "Question:Which baseline method removes tokens at the beginning of the reasoning chain during training and predicts the answer directly during inference?\nAnswer:",
+ " iCoT"
+ ],
+ [
+ "Question:Which baseline method removes tokens at the beginning of the reasoning chain during training and predicts the answer directly during inference?\nAnswer:",
+ " w/o curriculum"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.552953720092773,
+ false
+ ]
+ ],
+ [
+ [
+ -15.976731300354004,
+ false
+ ]
+ ],
+ [
+ [
+ -17.974000930786133,
+ false
+ ]
+ ],
+ [
+ [
+ -22.248485565185547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.552953720092773,
+ false
+ ],
+ [
+ -15.976731300354004,
+ false
+ ],
+ [
+ -17.974000930786133,
+ false
+ ],
+ [
+ -22.248485565185547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "19c4a79c779e1d991b74627e99dab9307bd5fb398d814d3660d24947b9d54611",
+ "prompt_hash": "5dee7cee91640ff580164a7cdeffb2da7d4cdd23e33467b9ca6a99a056c7090c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "Which base model is used for STILL-2?",
+ "choices": [
+ "LLaMA-3-70B",
+ "Qwen2.5-32B-Instruct",
+ "DeepSeek-R1",
+ "Claude 3.5 Sonnet"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which base model is used for STILL-2?\nAnswer:",
+ " LLaMA-3-70B"
+ ],
+ [
+ "Question:Which base model is used for STILL-2?\nAnswer:",
+ " Qwen2.5-32B-Instruct"
+ ],
+ [
+ "Question:Which base model is used for STILL-2?\nAnswer:",
+ " DeepSeek-R1"
+ ],
+ [
+ "Question:Which base model is used for STILL-2?\nAnswer:",
+ " Claude 3.5 Sonnet"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.793059349060059,
+ false
+ ]
+ ],
+ [
+ [
+ -26.26325798034668,
+ false
+ ]
+ ],
+ [
+ [
+ -20.53174591064453,
+ false
+ ]
+ ],
+ [
+ [
+ -9.624313354492188,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.793059349060059,
+ false
+ ],
+ [
+ -26.26325798034668,
+ false
+ ],
+ [
+ -20.53174591064453,
+ false
+ ],
+ [
+ -9.624313354492188,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c2b849793784a9505396f5301f1eeb76cc79db06232dd82424a84b5740afb1b1",
+ "prompt_hash": "302486dd58a15c3fe94f662eaa51f2c5361e954848f56c235b63a56b30c3e011",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "Which dataset consists of 198 multiple-choice questions from biology, physics, and chemistry?",
+ "choices": [
+ "MATH-OAI",
+ "AIME2024",
+ "GPQA",
+ "LeetCode-Hard"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset consists of 198 multiple-choice questions from biology, physics, and chemistry?\nAnswer:",
+ " MATH-OAI"
+ ],
+ [
+ "Question:Which dataset consists of 198 multiple-choice questions from biology, physics, and chemistry?\nAnswer:",
+ " AIME2024"
+ ],
+ [
+ "Question:Which dataset consists of 198 multiple-choice questions from biology, physics, and chemistry?\nAnswer:",
+ " GPQA"
+ ],
+ [
+ "Question:Which dataset consists of 198 multiple-choice questions from biology, physics, and chemistry?\nAnswer:",
+ " LeetCode-Hard"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.460281372070312,
+ false
+ ]
+ ],
+ [
+ [
+ -24.10089683532715,
+ false
+ ]
+ ],
+ [
+ [
+ -13.763631820678711,
+ false
+ ]
+ ],
+ [
+ [
+ -31.144329071044922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.460281372070312,
+ false
+ ],
+ [
+ -24.10089683532715,
+ false
+ ],
+ [
+ -13.763631820678711,
+ false
+ ],
+ [
+ -31.144329071044922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "271cf3dbb0d16a2e5d6d5fa731d7bb108df4fb9b052fc9423f3a85759d29312b",
+ "prompt_hash": "83f2afe83c85e40c1582a64dd22ef90a1058c1da9529598f225e3d203b4bd707",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "Which training approach in STILL-2 includes aligning only the thought process and incorporating SFT for stability?",
+ "choices": [
+ "Chain-of-thought prompting",
+ "Supervised fine-tuning only",
+ "Direct Preference Optimization",
+ "Tree search with reward model"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which training approach in STILL-2 includes aligning only the thought process and incorporating SFT for stability?\nAnswer:",
+ " Chain-of-thought prompting"
+ ],
+ [
+ "Question:Which training approach in STILL-2 includes aligning only the thought process and incorporating SFT for stability?\nAnswer:",
+ " Supervised fine-tuning only"
+ ],
+ [
+ "Question:Which training approach in STILL-2 includes aligning only the thought process and incorporating SFT for stability?\nAnswer:",
+ " Direct Preference Optimization"
+ ],
+ [
+ "Question:Which training approach in STILL-2 includes aligning only the thought process and incorporating SFT for stability?\nAnswer:",
+ " Tree search with reward model"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.133655548095703,
+ false
+ ]
+ ],
+ [
+ [
+ -15.158451080322266,
+ false
+ ]
+ ],
+ [
+ [
+ -8.369895935058594,
+ false
+ ]
+ ],
+ [
+ [
+ -27.84103775024414,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.133655548095703,
+ false
+ ],
+ [
+ -15.158451080322266,
+ false
+ ],
+ [
+ -8.369895935058594,
+ false
+ ],
+ [
+ -27.84103775024414,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f94afbbe7b52724b8214b29114f6b669a4a89d5bbae545496a00f2acdde9df6d",
+ "prompt_hash": "1d4c18ff649f9f9360faee6f55c223cbb9e600f28419bcf3be5485a504f4a566",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "Which problem domain is prioritized in the data mixture due to its prevalence of challenging reasoning problems?",
+ "choices": [
+ "Coding",
+ "Puzzle",
+ "Mathematics",
+ "Science"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which problem domain is prioritized in the data mixture due to its prevalence of challenging reasoning problems?\nAnswer:",
+ " Coding"
+ ],
+ [
+ "Question:Which problem domain is prioritized in the data mixture due to its prevalence of challenging reasoning problems?\nAnswer:",
+ " Puzzle"
+ ],
+ [
+ "Question:Which problem domain is prioritized in the data mixture due to its prevalence of challenging reasoning problems?\nAnswer:",
+ " Mathematics"
+ ],
+ [
+ "Question:Which problem domain is prioritized in the data mixture due to its prevalence of challenging reasoning problems?\nAnswer:",
+ " Science"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.636571884155273,
+ false
+ ]
+ ],
+ [
+ [
+ -10.519530296325684,
+ false
+ ]
+ ],
+ [
+ [
+ -6.341315269470215,
+ false
+ ]
+ ],
+ [
+ [
+ -8.144645690917969,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.636571884155273,
+ false
+ ],
+ [
+ -10.519530296325684,
+ false
+ ],
+ [
+ -6.341315269470215,
+ false
+ ],
+ [
+ -8.144645690917969,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1804ef6e48eb4018a1b8cd33d9dc8a777fddc068fabcf07a1fd4c5a7abb51113",
+ "prompt_hash": "c673cd913e516594b6879b3185f72c468d1657f0a76609fafed1044316aa1a3a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "What type of tasks does AIME2024 aim to challenge students with?",
+ "choices": [
+ "Basic arithmetic and algebra",
+ "Simple geometry questions",
+ "Complex problem solving tasks",
+ "Physics-based numerical estimation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of tasks does AIME2024 aim to challenge students with?\nAnswer:",
+ " Basic arithmetic and algebra"
+ ],
+ [
+ "Question:What type of tasks does AIME2024 aim to challenge students with?\nAnswer:",
+ " Simple geometry questions"
+ ],
+ [
+ "Question:What type of tasks does AIME2024 aim to challenge students with?\nAnswer:",
+ " Complex problem solving tasks"
+ ],
+ [
+ "Question:What type of tasks does AIME2024 aim to challenge students with?\nAnswer:",
+ " Physics-based numerical estimation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.77252960205078,
+ false
+ ]
+ ],
+ [
+ [
+ -22.267976760864258,
+ false
+ ]
+ ],
+ [
+ [
+ -15.13084888458252,
+ false
+ ]
+ ],
+ [
+ [
+ -25.581417083740234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.77252960205078,
+ false
+ ],
+ [
+ -22.267976760864258,
+ false
+ ],
+ [
+ -15.13084888458252,
+ false
+ ],
+ [
+ -25.581417083740234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "422af2770208747c4876585172d73a22ab5ff58500e254276602c33f94a7b6d5",
+ "prompt_hash": "05bc871e2ef2fc7fafe36650b6c5087172d2af1beedb7446f8da9686ecf8cdf2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What type of quantization module does CosyVoice 2 insert into the encoder of the SenseVoice-Large ASR model?",
+ "choices": [
+ "Vector Quantization (VQ)",
+ "Scalar Product Quantization (SPQ)",
+ "Finite Scalar Quantization (FSQ)",
+ "Dynamic Quantization (DQ)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of quantization module does CosyVoice 2 insert into the encoder of the SenseVoice-Large ASR model?\nAnswer:",
+ " Vector Quantization (VQ)"
+ ],
+ [
+ "Question:What type of quantization module does CosyVoice 2 insert into the encoder of the SenseVoice-Large ASR model?\nAnswer:",
+ " Scalar Product Quantization (SPQ)"
+ ],
+ [
+ "Question:What type of quantization module does CosyVoice 2 insert into the encoder of the SenseVoice-Large ASR model?\nAnswer:",
+ " Finite Scalar Quantization (FSQ)"
+ ],
+ [
+ "Question:What type of quantization module does CosyVoice 2 insert into the encoder of the SenseVoice-Large ASR model?\nAnswer:",
+ " Dynamic Quantization (DQ)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.393033981323242,
+ false
+ ]
+ ],
+ [
+ [
+ -20.69158172607422,
+ false
+ ]
+ ],
+ [
+ [
+ -21.93514633178711,
+ false
+ ]
+ ],
+ [
+ [
+ -11.593354225158691,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.393033981323242,
+ false
+ ],
+ [
+ -20.69158172607422,
+ false
+ ],
+ [
+ -21.93514633178711,
+ false
+ ],
+ [
+ -11.593354225158691,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32388d6a9407a2fcfc1e9858f4d73cc33a35b7225d109348bbc29bbee35de03d",
+ "prompt_hash": "32b3cf4085d62ea87f7bdc218fb3adf337a472f25c450abaaab4d2cbacbe42c6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "What is the token rate of CosyVoice 2's speech tokenizer?",
+ "choices": [
+ "50 Hz",
+ "25 Hz",
+ "16 Hz",
+ "100 Hz"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the token rate of CosyVoice 2's speech tokenizer?\nAnswer:",
+ " 50 Hz"
+ ],
+ [
+ "Question:What is the token rate of CosyVoice 2's speech tokenizer?\nAnswer:",
+ " 25 Hz"
+ ],
+ [
+ "Question:What is the token rate of CosyVoice 2's speech tokenizer?\nAnswer:",
+ " 16 Hz"
+ ],
+ [
+ "Question:What is the token rate of CosyVoice 2's speech tokenizer?\nAnswer:",
+ " 100 Hz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.393841743469238,
+ false
+ ]
+ ],
+ [
+ [
+ -9.112127304077148,
+ false
+ ]
+ ],
+ [
+ [
+ -11.231280326843262,
+ false
+ ]
+ ],
+ [
+ [
+ -9.16458511352539,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.393841743469238,
+ false
+ ],
+ [
+ -9.112127304077148,
+ false
+ ],
+ [
+ -11.231280326843262,
+ false
+ ],
+ [
+ -9.16458511352539,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6bd69fa3a8b3b05be09aef518a19ec78c4b03b5fabb4e150d4336d1b9adbeaf4",
+ "prompt_hash": "7280d11880ab1693eb3cf76da610ec6c43fdfbc75219ef6f7aab4661a959250d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "Which pre-trained language model is used in CosyVoice 2 as the text-speech language model?",
+ "choices": [
+ "ChatGLM3",
+ "Qwen1.5-1.8B",
+ "Qwen2.5-0.5B",
+ "GPT-NeoX-20B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which pre-trained language model is used in CosyVoice 2 as the text-speech language model?\nAnswer:",
+ " ChatGLM3"
+ ],
+ [
+ "Question:Which pre-trained language model is used in CosyVoice 2 as the text-speech language model?\nAnswer:",
+ " Qwen1.5-1.8B"
+ ],
+ [
+ "Question:Which pre-trained language model is used in CosyVoice 2 as the text-speech language model?\nAnswer:",
+ " Qwen2.5-0.5B"
+ ],
+ [
+ "Question:Which pre-trained language model is used in CosyVoice 2 as the text-speech language model?\nAnswer:",
+ " GPT-NeoX-20B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.910797595977783,
+ false
+ ]
+ ],
+ [
+ [
+ -13.443157196044922,
+ false
+ ]
+ ],
+ [
+ [
+ -28.324539184570312,
+ false
+ ]
+ ],
+ [
+ [
+ -19.48931121826172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.910797595977783,
+ false
+ ],
+ [
+ -13.443157196044922,
+ false
+ ],
+ [
+ -28.324539184570312,
+ false
+ ],
+ [
+ -19.48931121826172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "59de127e082d56bb6a752e5a2a7289961596af15dbf9353afd2237d9808dcc5d",
+ "prompt_hash": "41dd334a9a9ce470c060aff357efbcd2b2ba5e2c6095c1a9c4c3eed65a8f3ed2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "What chunk sizes (N:M) are used in CosyVoice 2’s streaming mode for mixing text and speech tokens?",
+ "choices": [
+ "3:9",
+ "4:10",
+ "5:15",
+ "6:18"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What chunk sizes (N:M) are used in CosyVoice 2’s streaming mode for mixing text and speech tokens?\nAnswer:",
+ " 3:9"
+ ],
+ [
+ "Question:What chunk sizes (N:M) are used in CosyVoice 2’s streaming mode for mixing text and speech tokens?\nAnswer:",
+ " 4:10"
+ ],
+ [
+ "Question:What chunk sizes (N:M) are used in CosyVoice 2’s streaming mode for mixing text and speech tokens?\nAnswer:",
+ " 5:15"
+ ],
+ [
+ "Question:What chunk sizes (N:M) are used in CosyVoice 2’s streaming mode for mixing text and speech tokens?\nAnswer:",
+ " 6:18"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.878074645996094,
+ false
+ ]
+ ],
+ [
+ [
+ -9.731094360351562,
+ false
+ ]
+ ],
+ [
+ [
+ -12.27220344543457,
+ false
+ ]
+ ],
+ [
+ [
+ -14.032604217529297,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.878074645996094,
+ false
+ ],
+ [
+ -9.731094360351562,
+ false
+ ],
+ [
+ -12.27220344543457,
+ false
+ ],
+ [
+ -14.032604217529297,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e0e5ce7d1693f556c0ab935f6a2e22c31119e91529cd638537632814431bf87a",
+ "prompt_hash": "cd61ef147018a2a8b6e7ba44d85766b1813c0bbc1d26a6e5566dbb64ec287bbe",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "What mask type in CosyVoice 2 is designed for extremely low latency by attending only past frames?",
+ "choices": [
+ "Chunk-2M Mask",
+ "Non-causal Mask",
+ "Full-causal Mask",
+ "Streaming Mask"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What mask type in CosyVoice 2 is designed for extremely low latency by attending only past frames?\nAnswer:",
+ " Chunk-2M Mask"
+ ],
+ [
+ "Question:What mask type in CosyVoice 2 is designed for extremely low latency by attending only past frames?\nAnswer:",
+ " Non-causal Mask"
+ ],
+ [
+ "Question:What mask type in CosyVoice 2 is designed for extremely low latency by attending only past frames?\nAnswer:",
+ " Full-causal Mask"
+ ],
+ [
+ "Question:What mask type in CosyVoice 2 is designed for extremely low latency by attending only past frames?\nAnswer:",
+ " Streaming Mask"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.615375518798828,
+ false
+ ]
+ ],
+ [
+ [
+ -15.082904815673828,
+ false
+ ]
+ ],
+ [
+ [
+ -25.027320861816406,
+ false
+ ]
+ ],
+ [
+ [
+ -12.463473320007324,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.615375518798828,
+ false
+ ],
+ [
+ -15.082904815673828,
+ false
+ ],
+ [
+ -25.027320861816406,
+ false
+ ],
+ [
+ -12.463473320007324,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "18b2cd20433a68dc5171a40403d0a99ab28e22454bd72874e3985c717b9d38a8",
+ "prompt_hash": "4749cce3e3a50d1979d5653490c00dbc8f21b3f348996d5f08a68f1e9d2b5f07",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "What is the base resolution used by the SigLIP-SO400M-384 vision encoder in DeepSeek-VL2?",
+ "choices": [
+ "256 × 256",
+ "384 × 384",
+ "512 × 512",
+ "1024 × 1024"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the base resolution used by the SigLIP-SO400M-384 vision encoder in DeepSeek-VL2?\nAnswer:",
+ " 256 × 256"
+ ],
+ [
+ "Question:What is the base resolution used by the SigLIP-SO400M-384 vision encoder in DeepSeek-VL2?\nAnswer:",
+ " 384 × 384"
+ ],
+ [
+ "Question:What is the base resolution used by the SigLIP-SO400M-384 vision encoder in DeepSeek-VL2?\nAnswer:",
+ " 512 × 512"
+ ],
+ [
+ "Question:What is the base resolution used by the SigLIP-SO400M-384 vision encoder in DeepSeek-VL2?\nAnswer:",
+ " 1024 × 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.130940437316895,
+ false
+ ]
+ ],
+ [
+ [
+ -7.248654365539551,
+ false
+ ]
+ ],
+ [
+ [
+ -8.044690132141113,
+ false
+ ]
+ ],
+ [
+ [
+ -8.730853080749512,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.130940437316895,
+ false
+ ],
+ [
+ -7.248654365539551,
+ false
+ ],
+ [
+ -8.044690132141113,
+ false
+ ],
+ [
+ -8.730853080749512,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a92a91bc1c33a56adb94738fafdca24088730e185939f28ca1970ae3277e1cf3",
+ "prompt_hash": "eb055f1388f8ac10285b290c69173e7c821461cfee313aacde2b270f3a7a20dd",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "Which mechanism in DeepSeek-VL2 reduces inference computational cost by compressing the Key-Value cache?",
+ "choices": [
+ "Multi-query Attention",
+ "Low-rank Decomposition",
+ "Multi-head Latent Attention",
+ "Sparse Transformer Blocks"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which mechanism in DeepSeek-VL2 reduces inference computational cost by compressing the Key-Value cache?\nAnswer:",
+ " Multi-query Attention"
+ ],
+ [
+ "Question:Which mechanism in DeepSeek-VL2 reduces inference computational cost by compressing the Key-Value cache?\nAnswer:",
+ " Low-rank Decomposition"
+ ],
+ [
+ "Question:Which mechanism in DeepSeek-VL2 reduces inference computational cost by compressing the Key-Value cache?\nAnswer:",
+ " Multi-head Latent Attention"
+ ],
+ [
+ "Question:Which mechanism in DeepSeek-VL2 reduces inference computational cost by compressing the Key-Value cache?\nAnswer:",
+ " Sparse Transformer Blocks"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.46713638305664,
+ false
+ ]
+ ],
+ [
+ [
+ -14.968793869018555,
+ false
+ ]
+ ],
+ [
+ [
+ -24.092559814453125,
+ false
+ ]
+ ],
+ [
+ [
+ -18.959882736206055,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.46713638305664,
+ false
+ ],
+ [
+ -14.968793869018555,
+ false
+ ],
+ [
+ -24.092559814453125,
+ false
+ ],
+ [
+ -18.959882736206055,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "20c9fc230fca349220bc87a8955d8e099f027dbd565e0122628db50fdbfae1c8",
+ "prompt_hash": "565efc2f8caf679698d0c9ea9eedaa81a8f5ac5ff6aeade1e2212c25f6cdcabd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "Which resolution constraint limited the original DeepSeek-VL in handling high-resolution images?",
+ "choices": [
+ "512 × 512",
+ "256 × 256",
+ "1024 × 1024",
+ "2048 × 2048"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which resolution constraint limited the original DeepSeek-VL in handling high-resolution images?\nAnswer:",
+ " 512 × 512"
+ ],
+ [
+ "Question:Which resolution constraint limited the original DeepSeek-VL in handling high-resolution images?\nAnswer:",
+ " 256 × 256"
+ ],
+ [
+ "Question:Which resolution constraint limited the original DeepSeek-VL in handling high-resolution images?\nAnswer:",
+ " 1024 × 1024"
+ ],
+ [
+ "Question:Which resolution constraint limited the original DeepSeek-VL in handling high-resolution images?\nAnswer:",
+ " 2048 × 2048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.976244926452637,
+ false
+ ]
+ ],
+ [
+ [
+ -10.028334617614746,
+ false
+ ]
+ ],
+ [
+ [
+ -11.025457382202148,
+ false
+ ]
+ ],
+ [
+ [
+ -12.071310997009277,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.976244926452637,
+ false
+ ],
+ [
+ -10.028334617614746,
+ false
+ ],
+ [
+ -11.025457382202148,
+ false
+ ],
+ [
+ -12.071310997009277,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "339d792bbc3b019970a774aa67ab7b5ca6ce8bd4b5eb6fad1b35f879e699edff",
+ "prompt_hash": "8d2317f726c17f3e3b8939e1a9ec7485286c12b4f26288b2b1be18212ba0aa70",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "Which dataset was used in the vision-language alignment stage of DeepSeek-VL2 training?",
+ "choices": [
+ "WIT",
+ "OBELICS",
+ "ShareGPT4V",
+ "WikiHow"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset was used in the vision-language alignment stage of DeepSeek-VL2 training?\nAnswer:",
+ " WIT"
+ ],
+ [
+ "Question:Which dataset was used in the vision-language alignment stage of DeepSeek-VL2 training?\nAnswer:",
+ " OBELICS"
+ ],
+ [
+ "Question:Which dataset was used in the vision-language alignment stage of DeepSeek-VL2 training?\nAnswer:",
+ " ShareGPT4V"
+ ],
+ [
+ "Question:Which dataset was used in the vision-language alignment stage of DeepSeek-VL2 training?\nAnswer:",
+ " WikiHow"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.62100601196289,
+ false
+ ]
+ ],
+ [
+ [
+ -19.688602447509766,
+ false
+ ]
+ ],
+ [
+ [
+ -13.465234756469727,
+ false
+ ]
+ ],
+ [
+ [
+ -13.078892707824707,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.62100601196289,
+ false
+ ],
+ [
+ -19.688602447509766,
+ false
+ ],
+ [
+ -13.465234756469727,
+ false
+ ],
+ [
+ -13.078892707824707,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "99d67a96b52fca73877197e256f8e112981eda8d491873d62f896bd8e54fb9fc",
+ "prompt_hash": "c65656c4aea83a2ce79f67dc2e6cd18335eed3f311b95e24a22a6e3d99dff98d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "What vocabulary size is used in both DeepSeek-VL2-Tiny and DeepSeek-VL2 models?",
+ "choices": [
+ "102,400",
+ "129,280",
+ "96,000",
+ "88,512"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What vocabulary size is used in both DeepSeek-VL2-Tiny and DeepSeek-VL2 models?\nAnswer:",
+ " 102,400"
+ ],
+ [
+ "Question:What vocabulary size is used in both DeepSeek-VL2-Tiny and DeepSeek-VL2 models?\nAnswer:",
+ " 129,280"
+ ],
+ [
+ "Question:What vocabulary size is used in both DeepSeek-VL2-Tiny and DeepSeek-VL2 models?\nAnswer:",
+ " 96,000"
+ ],
+ [
+ "Question:What vocabulary size is used in both DeepSeek-VL2-Tiny and DeepSeek-VL2 models?\nAnswer:",
+ " 88,512"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.950544357299805,
+ false
+ ]
+ ],
+ [
+ [
+ -20.23044204711914,
+ false
+ ]
+ ],
+ [
+ [
+ -12.914684295654297,
+ false
+ ]
+ ],
+ [
+ [
+ -19.146526336669922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.950544357299805,
+ false
+ ],
+ [
+ -20.23044204711914,
+ false
+ ],
+ [
+ -12.914684295654297,
+ false
+ ],
+ [
+ -19.146526336669922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0f05867b00d406bf5e9952c229cbd0f2bf1767270f14ad1556db51142a068e5e",
+ "prompt_hash": "8d602975dad9718428ec256f9279453382b67fb55fc0159e498c69f4298b04bf",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What is the parameter count of the Phi-4 model?",
+ "choices": [
+ "7 billion",
+ "14 billion",
+ "70 billion",
+ "32 billion"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the parameter count of the Phi-4 model?\nAnswer:",
+ " 7 billion"
+ ],
+ [
+ "Question:What is the parameter count of the Phi-4 model?\nAnswer:",
+ " 14 billion"
+ ],
+ [
+ "Question:What is the parameter count of the Phi-4 model?\nAnswer:",
+ " 70 billion"
+ ],
+ [
+ "Question:What is the parameter count of the Phi-4 model?\nAnswer:",
+ " 32 billion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.51523208618164,
+ false
+ ]
+ ],
+ [
+ [
+ -10.523784637451172,
+ false
+ ]
+ ],
+ [
+ [
+ -10.680200576782227,
+ false
+ ]
+ ],
+ [
+ [
+ -10.754088401794434,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.51523208618164,
+ false
+ ],
+ [
+ -10.523784637451172,
+ false
+ ],
+ [
+ -10.680200576782227,
+ false
+ ],
+ [
+ -10.754088401794434,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "116f467649a52acc054bc1f84838646ea02114520a9156a41b9605a49738f1d0",
+ "prompt_hash": "be084df62358405412baac8c81d863a2a0b37a8d5ce5019beddd342c0af16f65",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "Which benchmark does Phi-4 outperform GPT-4o on?",
+ "choices": [
+ "HumanEval+",
+ "DROP",
+ "GPQA",
+ "MMLU"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which benchmark does Phi-4 outperform GPT-4o on?\nAnswer:",
+ " HumanEval+"
+ ],
+ [
+ "Question:Which benchmark does Phi-4 outperform GPT-4o on?\nAnswer:",
+ " DROP"
+ ],
+ [
+ "Question:Which benchmark does Phi-4 outperform GPT-4o on?\nAnswer:",
+ " GPQA"
+ ],
+ [
+ "Question:Which benchmark does Phi-4 outperform GPT-4o on?\nAnswer:",
+ " MMLU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.359102249145508,
+ false
+ ]
+ ],
+ [
+ [
+ -13.945856094360352,
+ false
+ ]
+ ],
+ [
+ [
+ -14.53800106048584,
+ false
+ ]
+ ],
+ [
+ [
+ -8.430791854858398,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.359102249145508,
+ false
+ ],
+ [
+ -13.945856094360352,
+ false
+ ],
+ [
+ -14.53800106048584,
+ false
+ ],
+ [
+ -8.430791854858398,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f2865fffe2519020fe97fce33fc3d4425d49db303f5659dfa1d85c4b590e04a8",
+ "prompt_hash": "8e29f0852f692ccde8ae0c99c89c51add71e311dcad1bace9a4821757f310040",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "What percentage of Phi-4’s pretraining data is composed of synthetic data?",
+ "choices": [
+ "20%",
+ "30%",
+ "40%",
+ "50%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What percentage of Phi-4’s pretraining data is composed of synthetic data?\nAnswer:",
+ " 20%"
+ ],
+ [
+ "Question:What percentage of Phi-4’s pretraining data is composed of synthetic data?\nAnswer:",
+ " 30%"
+ ],
+ [
+ "Question:What percentage of Phi-4’s pretraining data is composed of synthetic data?\nAnswer:",
+ " 40%"
+ ],
+ [
+ "Question:What percentage of Phi-4’s pretraining data is composed of synthetic data?\nAnswer:",
+ " 50%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.83897590637207,
+ false
+ ]
+ ],
+ [
+ [
+ -10.036050796508789,
+ false
+ ]
+ ],
+ [
+ [
+ -9.986572265625,
+ false
+ ]
+ ],
+ [
+ [
+ -9.598316192626953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.83897590637207,
+ false
+ ],
+ [
+ -10.036050796508789,
+ false
+ ],
+ [
+ -9.986572265625,
+ false
+ ],
+ [
+ -9.598316192626953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "74f028a642a4ea81b40a1d46b7967c490245ef183efc0afee04acb9a4fae3253",
+ "prompt_hash": "5653b6673de59f32813aaf6883f72dc84b2d3055b444083e8650a07442f1c14d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "Which technique is introduced to generate DPO pairs in the first stage of post-training?",
+ "choices": [
+ "Multi-agent prompting",
+ "Instruction reversal",
+ "Pivotal Token Search",
+ "Majority Voting"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which technique is introduced to generate DPO pairs in the first stage of post-training?\nAnswer:",
+ " Multi-agent prompting"
+ ],
+ [
+ "Question:Which technique is introduced to generate DPO pairs in the first stage of post-training?\nAnswer:",
+ " Instruction reversal"
+ ],
+ [
+ "Question:Which technique is introduced to generate DPO pairs in the first stage of post-training?\nAnswer:",
+ " Pivotal Token Search"
+ ],
+ [
+ "Question:Which technique is introduced to generate DPO pairs in the first stage of post-training?\nAnswer:",
+ " Majority Voting"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.125656127929688,
+ false
+ ]
+ ],
+ [
+ [
+ -21.587875366210938,
+ false
+ ]
+ ],
+ [
+ [
+ -29.10210418701172,
+ false
+ ]
+ ],
+ [
+ [
+ -12.24392318725586,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.125656127929688,
+ false
+ ],
+ [
+ -21.587875366210938,
+ false
+ ],
+ [
+ -29.10210418701172,
+ false
+ ],
+ [
+ -12.24392318725586,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a97af93f7f739a6c4de4934931a620cc1923def75f835215ff4af99c48c3f76c",
+ "prompt_hash": "203b12dfaa50c24d8451eb1877ce2f71f2cd03a96619328418be7cc1d1a9f44f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "Which benchmark category showed the largest performance gap between synthetic and web-trained models in Table 8?",
+ "choices": [
+ "Human-Eval",
+ "TQA",
+ "GSM8k",
+ "MATH"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark category showed the largest performance gap between synthetic and web-trained models in Table 8?\nAnswer:",
+ " Human-Eval"
+ ],
+ [
+ "Question:Which benchmark category showed the largest performance gap between synthetic and web-trained models in Table 8?\nAnswer:",
+ " TQA"
+ ],
+ [
+ "Question:Which benchmark category showed the largest performance gap between synthetic and web-trained models in Table 8?\nAnswer:",
+ " GSM8k"
+ ],
+ [
+ "Question:Which benchmark category showed the largest performance gap between synthetic and web-trained models in Table 8?\nAnswer:",
+ " MATH"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.4087495803833,
+ false
+ ]
+ ],
+ [
+ [
+ -13.021769523620605,
+ false
+ ]
+ ],
+ [
+ [
+ -11.766997337341309,
+ false
+ ]
+ ],
+ [
+ [
+ -11.660591125488281,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.4087495803833,
+ false
+ ],
+ [
+ -13.021769523620605,
+ false
+ ],
+ [
+ -11.766997337341309,
+ false
+ ],
+ [
+ -11.660591125488281,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c39391ac6f10f661ca68d0a620f88fd776aa9c7bbc14c437618e02fdf3231050",
+ "prompt_hash": "1082716728d8aa876731dc059daf270a0d97c1ea049c003518d0de258d9dff00",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "What percentage of Black and African American adults encounter online racial harassment?",
+ "choices": [
+ "30%",
+ "46%",
+ "60%",
+ "75%"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What percentage of Black and African American adults encounter online racial harassment?\nAnswer:",
+ " 30%"
+ ],
+ [
+ "Question:What percentage of Black and African American adults encounter online racial harassment?\nAnswer:",
+ " 46%"
+ ],
+ [
+ "Question:What percentage of Black and African American adults encounter online racial harassment?\nAnswer:",
+ " 60%"
+ ],
+ [
+ "Question:What percentage of Black and African American adults encounter online racial harassment?\nAnswer:",
+ " 75%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.151792526245117,
+ false
+ ]
+ ],
+ [
+ [
+ -11.020578384399414,
+ false
+ ]
+ ],
+ [
+ [
+ -9.901688575744629,
+ false
+ ]
+ ],
+ [
+ [
+ -10.72553825378418,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.151792526245117,
+ false
+ ],
+ [
+ -11.020578384399414,
+ false
+ ],
+ [
+ -9.901688575744629,
+ false
+ ],
+ [
+ -10.72553825378418,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "defc532debfa109bd5786680e55093a0ac8f615953535eba76bfe5f1fe603eb3",
+ "prompt_hash": "5c5d70de7eece4a6a6270db730f523fd46d4b061e8b3c5c2c438cb55b5afded8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "What is the purpose of the Digital Services Act (DSA) enforced in 2024?",
+ "choices": [
+ "To ban all forms of social media advertisements",
+ "To promote blockchain-based content verification",
+ "To enforce clear obligations for content moderation and explanation on online platforms",
+ "To encourage anonymous content posting"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of the Digital Services Act (DSA) enforced in 2024?\nAnswer:",
+ " To ban all forms of social media advertisements"
+ ],
+ [
+ "Question:What is the purpose of the Digital Services Act (DSA) enforced in 2024?\nAnswer:",
+ " To promote blockchain-based content verification"
+ ],
+ [
+ "Question:What is the purpose of the Digital Services Act (DSA) enforced in 2024?\nAnswer:",
+ " To enforce clear obligations for content moderation and explanation on online platforms"
+ ],
+ [
+ "Question:What is the purpose of the Digital Services Act (DSA) enforced in 2024?\nAnswer:",
+ " To encourage anonymous content posting"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.01473617553711,
+ false
+ ]
+ ],
+ [
+ [
+ -30.65254020690918,
+ false
+ ]
+ ],
+ [
+ [
+ -49.995948791503906,
+ false
+ ]
+ ],
+ [
+ [
+ -29.79315948486328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.01473617553711,
+ false
+ ],
+ [
+ -30.65254020690918,
+ false
+ ],
+ [
+ -49.995948791503906,
+ false
+ ],
+ [
+ -29.79315948486328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2b67327383aea1b2216df1851800ead1eda5cf24431edc6d2a49f3db192ea7ef",
+ "prompt_hash": "bf0c0fa613fc1e2f1ce5b58a456d14b2d1ca407b1e52a9726f3918adcb59213f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "Which large language model is used as the teacher in the knowledge distillation approach?",
+ "choices": [
+ "Llama-2-13B-Instruct",
+ "GPT-4",
+ "Llama-3-70B-Instruct",
+ "BERT-Large"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which large language model is used as the teacher in the knowledge distillation approach?\nAnswer:",
+ " Llama-2-13B-Instruct"
+ ],
+ [
+ "Question:Which large language model is used as the teacher in the knowledge distillation approach?\nAnswer:",
+ " GPT-4"
+ ],
+ [
+ "Question:Which large language model is used as the teacher in the knowledge distillation approach?\nAnswer:",
+ " Llama-3-70B-Instruct"
+ ],
+ [
+ "Question:Which large language model is used as the teacher in the knowledge distillation approach?\nAnswer:",
+ " BERT-Large"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.030332565307617,
+ false
+ ]
+ ],
+ [
+ [
+ -4.68262243270874,
+ false
+ ]
+ ],
+ [
+ [
+ -11.608107566833496,
+ false
+ ]
+ ],
+ [
+ [
+ -10.403993606567383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.030332565307617,
+ false
+ ],
+ [
+ -4.68262243270874,
+ false
+ ],
+ [
+ -11.608107566833496,
+ false
+ ],
+ [
+ -10.403993606567383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "afbccc7ee3433afdb0a3b523c58b2d0138396c971149c757784844a5bc74d212",
+ "prompt_hash": "f89a8b088d90665636d8081e6fb13e0824bf92d489fe6a13c648631f685be539",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "How many samples were correctly classified and used for distillation in MiniMetaHate Distil?",
+ "choices": [
+ "2993",
+ "2296",
+ "2001",
+ "1500"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many samples were correctly classified and used for distillation in MiniMetaHate Distil?\nAnswer:",
+ " 2993"
+ ],
+ [
+ "Question:How many samples were correctly classified and used for distillation in MiniMetaHate Distil?\nAnswer:",
+ " 2296"
+ ],
+ [
+ "Question:How many samples were correctly classified and used for distillation in MiniMetaHate Distil?\nAnswer:",
+ " 2001"
+ ],
+ [
+ "Question:How many samples were correctly classified and used for distillation in MiniMetaHate Distil?\nAnswer:",
+ " 1500"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.522136688232422,
+ false
+ ]
+ ],
+ [
+ [
+ -11.24272346496582,
+ false
+ ]
+ ],
+ [
+ [
+ -10.519241333007812,
+ false
+ ]
+ ],
+ [
+ [
+ -7.333746910095215,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.522136688232422,
+ false
+ ],
+ [
+ -11.24272346496582,
+ false
+ ],
+ [
+ -10.519241333007812,
+ false
+ ],
+ [
+ -7.333746910095215,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "54212365c2cf87b74ae0a6054ba14a270ab2ba0fb809d6595173a0de4afccd2e",
+ "prompt_hash": "4e9f63f3a6233cfb52db93ae4a1f485352f3a5cdad59fcc7aeec3b2230696e02",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What F1-score did the Llama-3-8B-Distil-MetaHate model achieve in the classification task?",
+ "choices": [
+ "0.7796",
+ "0.8499",
+ "0.9037",
+ "0.7467"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What F1-score did the Llama-3-8B-Distil-MetaHate model achieve in the classification task?\nAnswer:",
+ " 0.7796"
+ ],
+ [
+ "Question:What F1-score did the Llama-3-8B-Distil-MetaHate model achieve in the classification task?\nAnswer:",
+ " 0.8499"
+ ],
+ [
+ "Question:What F1-score did the Llama-3-8B-Distil-MetaHate model achieve in the classification task?\nAnswer:",
+ " 0.9037"
+ ],
+ [
+ "Question:What F1-score did the Llama-3-8B-Distil-MetaHate model achieve in the classification task?\nAnswer:",
+ " 0.7467"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.481164932250977,
+ false
+ ]
+ ],
+ [
+ [
+ -11.787622451782227,
+ false
+ ]
+ ],
+ [
+ [
+ -11.448420524597168,
+ false
+ ]
+ ],
+ [
+ [
+ -11.004653930664062,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.481164932250977,
+ false
+ ],
+ [
+ -11.787622451782227,
+ false
+ ],
+ [
+ -11.448420524597168,
+ false
+ ],
+ [
+ -11.004653930664062,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "682153f7962b13a3fca29e0ba040de1d172c39f2dab56ff965e7e9fd9342127e",
+ "prompt_hash": "0d9e96020a25c9fb03893ba494994b2140c438c15dcdc7e9106794b7f9f93ab8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the native sequence length of ModernBERT?",
+ "choices": [
+ "512",
+ "1024",
+ "4096",
+ "8192"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the native sequence length of ModernBERT?\nAnswer:",
+ " 512"
+ ],
+ [
+ "Question:What is the native sequence length of ModernBERT?\nAnswer:",
+ " 1024"
+ ],
+ [
+ "Question:What is the native sequence length of ModernBERT?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:What is the native sequence length of ModernBERT?\nAnswer:",
+ " 8192"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -2.9802372455596924,
+ false
+ ]
+ ],
+ [
+ [
+ -3.8660225868225098,
+ false
+ ]
+ ],
+ [
+ [
+ -5.204238414764404,
+ false
+ ]
+ ],
+ [
+ [
+ -5.671204566955566,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -2.9802372455596924,
+ false
+ ],
+ [
+ -3.8660225868225098,
+ false
+ ],
+ [
+ -5.204238414764404,
+ false
+ ],
+ [
+ -5.671204566955566,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4b66277959befb396d08c8d6472ff3dddff308651cc9aa98dc5093a5a147cb85",
+ "prompt_hash": "ab090baa0e014fb2cd8c2f57d2d56f86c9a8d4d9abdff9b048ee4bbda6745d16",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "Which optimizer does ModernBERT use during pretraining?",
+ "choices": [
+ "AdamW",
+ "StableAdamW",
+ "Adafactor",
+ "SGD"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which optimizer does ModernBERT use during pretraining?\nAnswer:",
+ " AdamW"
+ ],
+ [
+ "Question:Which optimizer does ModernBERT use during pretraining?\nAnswer:",
+ " StableAdamW"
+ ],
+ [
+ "Question:Which optimizer does ModernBERT use during pretraining?\nAnswer:",
+ " Adafactor"
+ ],
+ [
+ "Question:Which optimizer does ModernBERT use during pretraining?\nAnswer:",
+ " SGD"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.6689043045043945,
+ false
+ ]
+ ],
+ [
+ [
+ -20.804319381713867,
+ false
+ ]
+ ],
+ [
+ [
+ -9.3514986038208,
+ false
+ ]
+ ],
+ [
+ [
+ -7.600836277008057,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.6689043045043945,
+ false
+ ],
+ [
+ -20.804319381713867,
+ false
+ ],
+ [
+ -9.3514986038208,
+ false
+ ],
+ [
+ -7.600836277008057,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "92bdbed4335dbf1e07e12e87e5059eda5d1bbb35503877e35e8c58a33b52b7f8",
+ "prompt_hash": "9a4aace23c9f432f3dee6b16fc1443472f954fe5fabf84c7504029042ad05ee5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "What type of activation function does ModernBERT adopt?",
+ "choices": [
+ "ReLU",
+ "GeLU",
+ "Swish",
+ "GeGLU"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What type of activation function does ModernBERT adopt?\nAnswer:",
+ " ReLU"
+ ],
+ [
+ "Question:What type of activation function does ModernBERT adopt?\nAnswer:",
+ " GeLU"
+ ],
+ [
+ "Question:What type of activation function does ModernBERT adopt?\nAnswer:",
+ " Swish"
+ ],
+ [
+ "Question:What type of activation function does ModernBERT adopt?\nAnswer:",
+ " GeGLU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.3449418544769287,
+ false
+ ]
+ ],
+ [
+ [
+ -9.327370643615723,
+ false
+ ]
+ ],
+ [
+ [
+ -7.710070610046387,
+ false
+ ]
+ ],
+ [
+ [
+ -20.871734619140625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.3449418544769287,
+ false
+ ],
+ [
+ -9.327370643615723,
+ false
+ ],
+ [
+ -7.710070610046387,
+ false
+ ],
+ [
+ -20.871734619140625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "997911e4a17162c72338d72279b22fa19fa06027bb1a1084b09c859116effcbc",
+ "prompt_hash": "c9f1b89aadf77bba01b0161e076af8b57f527721531ac665734d68c788100eee",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "What tokenizer does ModernBERT use?",
+ "choices": [
+ "Original BERT tokenizer",
+ "SentencePiece",
+ "OLMo tokenizer (modified)",
+ "GPT2 tokenizer"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What tokenizer does ModernBERT use?\nAnswer:",
+ " Original BERT tokenizer"
+ ],
+ [
+ "Question:What tokenizer does ModernBERT use?\nAnswer:",
+ " SentencePiece"
+ ],
+ [
+ "Question:What tokenizer does ModernBERT use?\nAnswer:",
+ " OLMo tokenizer (modified)"
+ ],
+ [
+ "Question:What tokenizer does ModernBERT use?\nAnswer:",
+ " GPT2 tokenizer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.338162422180176,
+ false
+ ]
+ ],
+ [
+ [
+ -8.317133903503418,
+ false
+ ]
+ ],
+ [
+ [
+ -37.740684509277344,
+ false
+ ]
+ ],
+ [
+ [
+ -12.453644752502441,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.338162422180176,
+ false
+ ],
+ [
+ -8.317133903503418,
+ false
+ ],
+ [
+ -37.740684509277344,
+ false
+ ],
+ [
+ -12.453644752502441,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c4ded2d8c96422c7f89f3d5ddfb7fd19a7e6a387b40d9228443164a9ca00d5bc",
+ "prompt_hash": "d7848dcdb9379b33a0cf5ba68f10be54f71c1a2d2d1707173f52ac4845dddd3a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "What is the batch size warmup schedule used for ModernBERT-base?",
+ "choices": [
+ "From 448 to 4608 over 50B tokens",
+ "From 768 to 4608 over 50B tokens",
+ "From 448 to 4928 over 10B tokens",
+ "From 768 to 4928 over 10B tokens"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the batch size warmup schedule used for ModernBERT-base?\nAnswer:",
+ " From 448 to 4608 over 50B tokens"
+ ],
+ [
+ "Question:What is the batch size warmup schedule used for ModernBERT-base?\nAnswer:",
+ " From 768 to 4608 over 50B tokens"
+ ],
+ [
+ "Question:What is the batch size warmup schedule used for ModernBERT-base?\nAnswer:",
+ " From 448 to 4928 over 10B tokens"
+ ],
+ [
+ "Question:What is the batch size warmup schedule used for ModernBERT-base?\nAnswer:",
+ " From 768 to 4928 over 10B tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -54.454219818115234,
+ false
+ ]
+ ],
+ [
+ [
+ -48.003021240234375,
+ false
+ ]
+ ],
+ [
+ [
+ -53.04581832885742,
+ false
+ ]
+ ],
+ [
+ [
+ -49.49294662475586,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -54.454219818115234,
+ false
+ ],
+ [
+ -48.003021240234375,
+ false
+ ],
+ [
+ -53.04581832885742,
+ false
+ ],
+ [
+ -49.49294662475586,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "794189ecdd29ef84800d4d01b8ee091f8374a1baded0b020ce27070595a49962",
+ "prompt_hash": "b489d3303e83291a02e9332aac2328a83ff57fc1b2e696f1c0d58e4a0cd10347",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the maximum number of iterations allowed for generating a correct reasoning trajectory in Stage One?",
+ "choices": [
+ "2",
+ "3",
+ "5",
+ "10"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the maximum number of iterations allowed for generating a correct reasoning trajectory in Stage One?\nAnswer:",
+ " 2"
+ ],
+ [
+ "Question:What is the maximum number of iterations allowed for generating a correct reasoning trajectory in Stage One?\nAnswer:",
+ " 3"
+ ],
+ [
+ "Question:What is the maximum number of iterations allowed for generating a correct reasoning trajectory in Stage One?\nAnswer:",
+ " 5"
+ ],
+ [
+ "Question:What is the maximum number of iterations allowed for generating a correct reasoning trajectory in Stage One?\nAnswer:",
+ " 10"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.444279432296753,
+ false
+ ]
+ ],
+ [
+ [
+ -3.4499194622039795,
+ false
+ ]
+ ],
+ [
+ [
+ -3.39045786857605,
+ false
+ ]
+ ],
+ [
+ [
+ -3.5267815589904785,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.444279432296753,
+ false
+ ],
+ [
+ -3.4499194622039795,
+ false
+ ],
+ [
+ -3.39045786857605,
+ false
+ ],
+ [
+ -3.5267815589904785,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9523e0cd07b614fe1c199437bf4ffccc04af52eb1ecfc73735f856cdfec656c9",
+ "prompt_hash": "38df8aadb3c572104715f5ba3d1ca0b9a1204eae23019f3688978c3f1575359e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "Which LLM is used as the verifier to check answers in the proposed method?",
+ "choices": [
+ "GPT-4o",
+ "LLaMA-3.1",
+ "Qwen2.5",
+ "Gemma2"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which LLM is used as the verifier to check answers in the proposed method?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which LLM is used as the verifier to check answers in the proposed method?\nAnswer:",
+ " LLaMA-3.1"
+ ],
+ [
+ "Question:Which LLM is used as the verifier to check answers in the proposed method?\nAnswer:",
+ " Qwen2.5"
+ ],
+ [
+ "Question:Which LLM is used as the verifier to check answers in the proposed method?\nAnswer:",
+ " Gemma2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.99644136428833,
+ false
+ ]
+ ],
+ [
+ [
+ -19.128623962402344,
+ false
+ ]
+ ],
+ [
+ [
+ -15.504560470581055,
+ false
+ ]
+ ],
+ [
+ [
+ -11.37159538269043,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.99644136428833,
+ false
+ ],
+ [
+ -19.128623962402344,
+ false
+ ],
+ [
+ -15.504560470581055,
+ false
+ ],
+ [
+ -11.37159538269043,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5eb7fa165860610eaab01627a1850068a08f3eb2da634b92c0023d437a7d7dfe",
+ "prompt_hash": "427983833d46e8c41fd395b7ee6c9234517a1a2aca2a96f5cac95570de9717af",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "Which search strategy involves the LLM critiquing and correcting the current reasoning?",
+ "choices": [
+ "Exploring New Paths",
+ "Backtracking",
+ "Verification",
+ "Corrections"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which search strategy involves the LLM critiquing and correcting the current reasoning?\nAnswer:",
+ " Exploring New Paths"
+ ],
+ [
+ "Question:Which search strategy involves the LLM critiquing and correcting the current reasoning?\nAnswer:",
+ " Backtracking"
+ ],
+ [
+ "Question:Which search strategy involves the LLM critiquing and correcting the current reasoning?\nAnswer:",
+ " Verification"
+ ],
+ [
+ "Question:Which search strategy involves the LLM critiquing and correcting the current reasoning?\nAnswer:",
+ " Corrections"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.948320388793945,
+ false
+ ]
+ ],
+ [
+ [
+ -8.776028633117676,
+ false
+ ]
+ ],
+ [
+ [
+ -7.903186321258545,
+ false
+ ]
+ ],
+ [
+ [
+ -12.345247268676758,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.948320388793945,
+ false
+ ],
+ [
+ -8.776028633117676,
+ false
+ ],
+ [
+ -7.903186321258545,
+ false
+ ],
+ [
+ -12.345247268676758,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4e3eeed368a493138f5f47e056a32d6fe7d22c1104564f124cb321c66e5905f0",
+ "prompt_hash": "61066c3003ef4b501f9a45537746350905d46ccd3a17aad075de8ecae6d3cd9b",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "What was the total number of medical exam questions collected from MedQA-USMLE and MedMcQA?",
+ "choices": [
+ "40K",
+ "192K",
+ "60K",
+ "20K"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What was the total number of medical exam questions collected from MedQA-USMLE and MedMcQA?\nAnswer:",
+ " 40K"
+ ],
+ [
+ "Question:What was the total number of medical exam questions collected from MedQA-USMLE and MedMcQA?\nAnswer:",
+ " 192K"
+ ],
+ [
+ "Question:What was the total number of medical exam questions collected from MedQA-USMLE and MedMcQA?\nAnswer:",
+ " 60K"
+ ],
+ [
+ "Question:What was the total number of medical exam questions collected from MedQA-USMLE and MedMcQA?\nAnswer:",
+ " 20K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.511892318725586,
+ false
+ ]
+ ],
+ [
+ [
+ -15.900592803955078,
+ false
+ ]
+ ],
+ [
+ [
+ -13.070356369018555,
+ false
+ ]
+ ],
+ [
+ [
+ -11.873079299926758,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.511892318725586,
+ false
+ ],
+ [
+ -15.900592803955078,
+ false
+ ],
+ [
+ -13.070356369018555,
+ false
+ ],
+ [
+ -11.873079299926758,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e53c3edd00284a53963bdd1efe103a9bfe9388c5c2e84ac2badd3b9054ba2e05",
+ "prompt_hash": "f0dbc688373e4cddcbae3e6123c97a37e92a4b7bec4f53459bdf0d44a20e93a6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "What is the batch size used during reinforcement learning with PPO in Stage 2?",
+ "choices": [
+ "32",
+ "64",
+ "128",
+ "256"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the batch size used during reinforcement learning with PPO in Stage 2?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:What is the batch size used during reinforcement learning with PPO in Stage 2?\nAnswer:",
+ " 64"
+ ],
+ [
+ "Question:What is the batch size used during reinforcement learning with PPO in Stage 2?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:What is the batch size used during reinforcement learning with PPO in Stage 2?\nAnswer:",
+ " 256"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.313339710235596,
+ false
+ ]
+ ],
+ [
+ [
+ -4.934946060180664,
+ false
+ ]
+ ],
+ [
+ [
+ -5.580106735229492,
+ false
+ ]
+ ],
+ [
+ [
+ -5.842267036437988,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.313339710235596,
+ false
+ ],
+ [
+ -4.934946060180664,
+ false
+ ],
+ [
+ -5.580106735229492,
+ false
+ ],
+ [
+ -5.842267036437988,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "14a8b0bdb1427efa8f3f46a44fe01b61bf71b7e9be24826304669f9d38aec6be",
+ "prompt_hash": "494d5b020999ea125ad81c2789a6df16a06f4d8ce120053db53ed5f24704b07f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What is the total duration of the 30 million video clips used in the dataset?",
+ "choices": [
+ "50k hours",
+ "60k hours",
+ "70k hours",
+ "80k hours"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the total duration of the 30 million video clips used in the dataset?\nAnswer:",
+ " 50k hours"
+ ],
+ [
+ "Question:What is the total duration of the 30 million video clips used in the dataset?\nAnswer:",
+ " 60k hours"
+ ],
+ [
+ "Question:What is the total duration of the 30 million video clips used in the dataset?\nAnswer:",
+ " 70k hours"
+ ],
+ [
+ "Question:What is the total duration of the 30 million video clips used in the dataset?\nAnswer:",
+ " 80k hours"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.65107250213623,
+ false
+ ]
+ ],
+ [
+ [
+ -14.15365219116211,
+ false
+ ]
+ ],
+ [
+ [
+ -14.824312210083008,
+ false
+ ]
+ ],
+ [
+ [
+ -14.518945693969727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.65107250213623,
+ false
+ ],
+ [
+ -14.15365219116211,
+ false
+ ],
+ [
+ -14.824312210083008,
+ false
+ ],
+ [
+ -14.518945693969727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b50a124a9aa6ab1d5bd0f4632abb993e6849b6e9cb9696575ab03d0a9095094f",
+ "prompt_hash": "810bc5d920fb28c94ecd9f2fc18f5a8fa44857c36784468bb6965d9551f53cb9",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which model is used for Optical Flow Score computation in the data preprocessing pipeline?",
+ "choices": [
+ "RAFT",
+ "FlowNet",
+ "UniMatch",
+ "PWC-Net"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model is used for Optical Flow Score computation in the data preprocessing pipeline?\nAnswer:",
+ " RAFT"
+ ],
+ [
+ "Question:Which model is used for Optical Flow Score computation in the data preprocessing pipeline?\nAnswer:",
+ " FlowNet"
+ ],
+ [
+ "Question:Which model is used for Optical Flow Score computation in the data preprocessing pipeline?\nAnswer:",
+ " UniMatch"
+ ],
+ [
+ "Question:Which model is used for Optical Flow Score computation in the data preprocessing pipeline?\nAnswer:",
+ " PWC-Net"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.261064529418945,
+ false
+ ]
+ ],
+ [
+ [
+ -6.434628009796143,
+ false
+ ]
+ ],
+ [
+ [
+ -11.806937217712402,
+ false
+ ]
+ ],
+ [
+ [
+ -14.45037841796875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.261064529418945,
+ false
+ ],
+ [
+ -6.434628009796143,
+ false
+ ],
+ [
+ -11.806937217712402,
+ false
+ ],
+ [
+ -14.45037841796875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "88cec1a4202acd1a92b3ada2606234ac3e46712884ab27ab2a207ce3ecf652b9",
+ "prompt_hash": "102011f9bdda56af7503599cf0188d34031ccdf8079b632707254ad248936e1d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "How many total parameters does the video compression network contain?",
+ "choices": [
+ "300M",
+ "384M",
+ "400M",
+ "420M"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many total parameters does the video compression network contain?\nAnswer:",
+ " 300M"
+ ],
+ [
+ "Question:How many total parameters does the video compression network contain?\nAnswer:",
+ " 384M"
+ ],
+ [
+ "Question:How many total parameters does the video compression network contain?\nAnswer:",
+ " 400M"
+ ],
+ [
+ "Question:How many total parameters does the video compression network contain?\nAnswer:",
+ " 420M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.516914367675781,
+ false
+ ]
+ ],
+ [
+ [
+ -12.171443939208984,
+ false
+ ]
+ ],
+ [
+ [
+ -9.804231643676758,
+ false
+ ]
+ ],
+ [
+ [
+ -11.168252944946289,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.516914367675781,
+ false
+ ],
+ [
+ -12.171443939208984,
+ false
+ ],
+ [
+ -9.804231643676758,
+ false
+ ],
+ [
+ -11.168252944946289,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7b265aa594361a305450a7af84e6f6ac5abb1d6aa1c4d9a9f888b90df577f0b7",
+ "prompt_hash": "4d644297715562776f3430e89931dfe7c0191a6a028d9143ffcd10bf90ea95e1",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "Which model was used to initialize the 2D VAE in Open-Sora 1.2?",
+ "choices": [
+ "Latte",
+ "PixArt",
+ "SDXL",
+ "Magvit-v2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model was used to initialize the 2D VAE in Open-Sora 1.2?\nAnswer:",
+ " Latte"
+ ],
+ [
+ "Question:Which model was used to initialize the 2D VAE in Open-Sora 1.2?\nAnswer:",
+ " PixArt"
+ ],
+ [
+ "Question:Which model was used to initialize the 2D VAE in Open-Sora 1.2?\nAnswer:",
+ " SDXL"
+ ],
+ [
+ "Question:Which model was used to initialize the 2D VAE in Open-Sora 1.2?\nAnswer:",
+ " Magvit-v2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.276412963867188,
+ false
+ ]
+ ],
+ [
+ [
+ -10.8336820602417,
+ false
+ ]
+ ],
+ [
+ [
+ -12.574335098266602,
+ false
+ ]
+ ],
+ [
+ [
+ -30.271799087524414,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.276412963867188,
+ false
+ ],
+ [
+ -10.8336820602417,
+ false
+ ],
+ [
+ -12.574335098266602,
+ false
+ ],
+ [
+ -30.271799087524414,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "faa427f70ad5b6417f6829fa64227f2aebbbca4760908a4dfe6693da596a2743",
+ "prompt_hash": "67248fc329805136e7e6d18124cb719c6c66be23e0c2c66618faf8c2f43c333d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "What was the VBench total score achieved by Open-Sora 1.2?",
+ "choices": [
+ "75.91%",
+ "77.23%",
+ "78.93%",
+ "79.76%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What was the VBench total score achieved by Open-Sora 1.2?\nAnswer:",
+ " 75.91%"
+ ],
+ [
+ "Question:What was the VBench total score achieved by Open-Sora 1.2?\nAnswer:",
+ " 77.23%"
+ ],
+ [
+ "Question:What was the VBench total score achieved by Open-Sora 1.2?\nAnswer:",
+ " 78.93%"
+ ],
+ [
+ "Question:What was the VBench total score achieved by Open-Sora 1.2?\nAnswer:",
+ " 79.76%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.253808975219727,
+ false
+ ]
+ ],
+ [
+ [
+ -17.968246459960938,
+ false
+ ]
+ ],
+ [
+ [
+ -17.808147430419922,
+ false
+ ]
+ ],
+ [
+ [
+ -17.937244415283203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.253808975219727,
+ false
+ ],
+ [
+ -17.968246459960938,
+ false
+ ],
+ [
+ -17.808147430419922,
+ false
+ ],
+ [
+ -17.937244415283203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "996839ff1783e652a55de6089818380d8cb1ac4077a073134dd9e0eb43823415",
+ "prompt_hash": "a6d9d72a424e7f01bcdbf2bc42ea87b275074d665b20737780add009981a4a02",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What is the total spatio-temporal compression ratio achieved by the Video-VAE in LTX-Video?",
+ "choices": [
+ "1:48",
+ "1:96",
+ "1:192",
+ "1:512"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total spatio-temporal compression ratio achieved by the Video-VAE in LTX-Video?\nAnswer:",
+ " 1:48"
+ ],
+ [
+ "Question:What is the total spatio-temporal compression ratio achieved by the Video-VAE in LTX-Video?\nAnswer:",
+ " 1:96"
+ ],
+ [
+ "Question:What is the total spatio-temporal compression ratio achieved by the Video-VAE in LTX-Video?\nAnswer:",
+ " 1:192"
+ ],
+ [
+ "Question:What is the total spatio-temporal compression ratio achieved by the Video-VAE in LTX-Video?\nAnswer:",
+ " 1:512"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.28443717956543,
+ false
+ ]
+ ],
+ [
+ [
+ -14.824919700622559,
+ false
+ ]
+ ],
+ [
+ [
+ -17.184690475463867,
+ false
+ ]
+ ],
+ [
+ [
+ -17.0477294921875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.28443717956543,
+ false
+ ],
+ [
+ -14.824919700622559,
+ false
+ ],
+ [
+ -17.184690475463867,
+ false
+ ],
+ [
+ -17.0477294921875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "601e102d0995f5a8d207082151dede875cf07ba21217427be49a4b7f25e9d2f8",
+ "prompt_hash": "4f2d44c5a4304265e085751f62a4638452aca0db5263a9948634e4742ee519c7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "Which positional embedding method is used in LTX-Video instead of absolute positional embeddings?",
+ "choices": [
+ "Sinusoidal Embeddings",
+ "Rotary Positional Embeddings (RoPE)",
+ "Learned Positional Vectors",
+ "Relative Position Bias"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which positional embedding method is used in LTX-Video instead of absolute positional embeddings?\nAnswer:",
+ " Sinusoidal Embeddings"
+ ],
+ [
+ "Question:Which positional embedding method is used in LTX-Video instead of absolute positional embeddings?\nAnswer:",
+ " Rotary Positional Embeddings (RoPE)"
+ ],
+ [
+ "Question:Which positional embedding method is used in LTX-Video instead of absolute positional embeddings?\nAnswer:",
+ " Learned Positional Vectors"
+ ],
+ [
+ "Question:Which positional embedding method is used in LTX-Video instead of absolute positional embeddings?\nAnswer:",
+ " Relative Position Bias"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.810482025146484,
+ false
+ ]
+ ],
+ [
+ [
+ -15.664023399353027,
+ false
+ ]
+ ],
+ [
+ [
+ -22.923189163208008,
+ false
+ ]
+ ],
+ [
+ [
+ -15.321342468261719,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.810482025146484,
+ false
+ ],
+ [
+ -15.664023399353027,
+ false
+ ],
+ [
+ -22.923189163208008,
+ false
+ ],
+ [
+ -15.321342468261719,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5af380cb6067d02b663a4861dfaac101b9b090a294539c623fdb1abefe4150cf",
+ "prompt_hash": "9c151ca1e15f6348d2eb1c9188f2ee28970395133d7cad4793fd4a80bdc60f30",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "On which GPU did LTX-Video achieve faster-than-real-time generation of 121 frames in 2 seconds?",
+ "choices": [
+ "Nvidia A100",
+ "Nvidia V100",
+ "Nvidia H100",
+ "Nvidia RTX 4090"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:On which GPU did LTX-Video achieve faster-than-real-time generation of 121 frames in 2 seconds?\nAnswer:",
+ " Nvidia A100"
+ ],
+ [
+ "Question:On which GPU did LTX-Video achieve faster-than-real-time generation of 121 frames in 2 seconds?\nAnswer:",
+ " Nvidia V100"
+ ],
+ [
+ "Question:On which GPU did LTX-Video achieve faster-than-real-time generation of 121 frames in 2 seconds?\nAnswer:",
+ " Nvidia H100"
+ ],
+ [
+ "Question:On which GPU did LTX-Video achieve faster-than-real-time generation of 121 frames in 2 seconds?\nAnswer:",
+ " Nvidia RTX 4090"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.209535598754883,
+ false
+ ]
+ ],
+ [
+ [
+ -9.387601852416992,
+ false
+ ]
+ ],
+ [
+ [
+ -9.177935600280762,
+ false
+ ]
+ ],
+ [
+ [
+ -8.791450500488281,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.209535598754883,
+ false
+ ],
+ [
+ -9.387601852416992,
+ false
+ ],
+ [
+ -9.177935600280762,
+ false
+ ],
+ [
+ -8.791450500488281,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "44eedd9be0c5f64eaa9704b437069887928e26c434da8c23defedc0628d95e41",
+ "prompt_hash": "02c313177014283fc2d2ceb3fb889083c088a5ecb4651826427b61531023f9c4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "Which GAN variant is proposed in LTX-Video to improve stability and reconstruction quality?",
+ "choices": [
+ "PatchGAN",
+ "CycleGAN",
+ "Reconstruction GAN",
+ "StyleGAN"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which GAN variant is proposed in LTX-Video to improve stability and reconstruction quality?\nAnswer:",
+ " PatchGAN"
+ ],
+ [
+ "Question:Which GAN variant is proposed in LTX-Video to improve stability and reconstruction quality?\nAnswer:",
+ " CycleGAN"
+ ],
+ [
+ "Question:Which GAN variant is proposed in LTX-Video to improve stability and reconstruction quality?\nAnswer:",
+ " Reconstruction GAN"
+ ],
+ [
+ "Question:Which GAN variant is proposed in LTX-Video to improve stability and reconstruction quality?\nAnswer:",
+ " StyleGAN"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.652844429016113,
+ false
+ ]
+ ],
+ [
+ [
+ -5.183656692504883,
+ false
+ ]
+ ],
+ [
+ [
+ -11.628631591796875,
+ false
+ ]
+ ],
+ [
+ [
+ -5.3855133056640625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.652844429016113,
+ false
+ ],
+ [
+ -5.183656692504883,
+ false
+ ],
+ [
+ -11.628631591796875,
+ false
+ ],
+ [
+ -5.3855133056640625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4d11afddf855da867964775b6d488b39809add0de3182b038f66d8e7bc791255",
+ "prompt_hash": "3a76cad05d271f8f47d95186dc29e621e8ecd538ca06bc1cd34fa32a22af9d62",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "What pre-trained text encoder is used for generating initial text embeddings in LTX-Video?",
+ "choices": [
+ "BERT",
+ "CLIP",
+ "T5",
+ "GPT-2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What pre-trained text encoder is used for generating initial text embeddings in LTX-Video?\nAnswer:",
+ " BERT"
+ ],
+ [
+ "Question:What pre-trained text encoder is used for generating initial text embeddings in LTX-Video?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:What pre-trained text encoder is used for generating initial text embeddings in LTX-Video?\nAnswer:",
+ " T5"
+ ],
+ [
+ "Question:What pre-trained text encoder is used for generating initial text embeddings in LTX-Video?\nAnswer:",
+ " GPT-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.287250518798828,
+ false
+ ]
+ ],
+ [
+ [
+ -3.3353793621063232,
+ false
+ ]
+ ],
+ [
+ [
+ -5.748715400695801,
+ false
+ ]
+ ],
+ [
+ [
+ -7.809186935424805,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.287250518798828,
+ false
+ ],
+ [
+ -3.3353793621063232,
+ false
+ ],
+ [
+ -5.748715400695801,
+ false
+ ],
+ [
+ -7.809186935424805,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "72e9c47fb45eea2ab469fb1ddf4f6bf24453e7843260a0b9eadfb41eb325081d",
+ "prompt_hash": "296ebf6f03fd43f3f28379d8d020e501ea08a43ed5d73900fd472c11cfbc5053",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2501": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What does an approximate unitary k-design aim to replicate?",
+ "choices": [
+ "The behavior of a classical circuit with k gates",
+ "The full entanglement structure of any quantum state",
+ "The behavior of Haar-random unitaries within any quantum experiment that queries the unitary k times",
+ "The output of a fully depolarizing quantum channel"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does an approximate unitary k-design aim to replicate?\nAnswer:",
+ " The behavior of a classical circuit with k gates"
+ ],
+ [
+ "Question:What does an approximate unitary k-design aim to replicate?\nAnswer:",
+ " The full entanglement structure of any quantum state"
+ ],
+ [
+ "Question:What does an approximate unitary k-design aim to replicate?\nAnswer:",
+ " The behavior of Haar-random unitaries within any quantum experiment that queries the unitary k times"
+ ],
+ [
+ "Question:What does an approximate unitary k-design aim to replicate?\nAnswer:",
+ " The output of a fully depolarizing quantum channel"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.659969329833984,
+ false
+ ]
+ ],
+ [
+ [
+ -27.531269073486328,
+ false
+ ]
+ ],
+ [
+ [
+ -79.02543640136719,
+ false
+ ]
+ ],
+ [
+ [
+ -26.968955993652344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.659969329833984,
+ false
+ ],
+ [
+ -27.531269073486328,
+ false
+ ],
+ [
+ -79.02543640136719,
+ false
+ ],
+ [
+ -26.968955993652344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7e116631a34f93e263eba5412718a33e303dfe605621305a2d9162d5f93b5e30",
+ "prompt_hash": "878dab46c9267372fec18d8fa960c96a12614f77781a17b6117cc17825a75e71",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "What is the required local patch size ξ to ensure the ensemble forms an ε-approximate unitary k-design on n qubits?",
+ "choices": [
+ "ξ ≥ √(nk/ε)",
+ "ξ ≥ log₂(nk²/ε)",
+ "ξ ≥ ε / nk",
+ "ξ ≥ (n + k + ε) / 2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the required local patch size ξ to ensure the ensemble forms an ε-approximate unitary k-design on n qubits?\nAnswer:",
+ " ξ ≥ √(nk/ε)"
+ ],
+ [
+ "Question:What is the required local patch size ξ to ensure the ensemble forms an ε-approximate unitary k-design on n qubits?\nAnswer:",
+ " ξ ≥ log₂(nk²/ε)"
+ ],
+ [
+ "Question:What is the required local patch size ξ to ensure the ensemble forms an ε-approximate unitary k-design on n qubits?\nAnswer:",
+ " ξ ≥ ε / nk"
+ ],
+ [
+ "Question:What is the required local patch size ξ to ensure the ensemble forms an ε-approximate unitary k-design on n qubits?\nAnswer:",
+ " ξ ≥ (n + k + ε) / 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -49.53298568725586,
+ false
+ ]
+ ],
+ [
+ [
+ -54.27104187011719,
+ false
+ ]
+ ],
+ [
+ [
+ -37.01532745361328,
+ false
+ ]
+ ],
+ [
+ [
+ -42.08514404296875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -49.53298568725586,
+ false
+ ],
+ [
+ -54.27104187011719,
+ false
+ ],
+ [
+ -37.01532745361328,
+ false
+ ],
+ [
+ -42.08514404296875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "102db8f0a456c5c4a4df5e6a3b89c1d0a0c152ab74bc9b0d55821233e4201790",
+ "prompt_hash": "ec0c42f5b8cc384eacbbfe02d3206f129a055df415b34dfaf626feddae9d4ec9",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "What circuit depth is sufficient to form pseudorandom unitaries on all-to-all-connected circuits?",
+ "choices": [
+ "poly(n)",
+ "poly(log log n)",
+ "poly(n log n)",
+ "poly(sqrt(n))"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What circuit depth is sufficient to form pseudorandom unitaries on all-to-all-connected circuits?\nAnswer:",
+ " poly(n)"
+ ],
+ [
+ "Question:What circuit depth is sufficient to form pseudorandom unitaries on all-to-all-connected circuits?\nAnswer:",
+ " poly(log log n)"
+ ],
+ [
+ "Question:What circuit depth is sufficient to form pseudorandom unitaries on all-to-all-connected circuits?\nAnswer:",
+ " poly(n log n)"
+ ],
+ [
+ "Question:What circuit depth is sufficient to form pseudorandom unitaries on all-to-all-connected circuits?\nAnswer:",
+ " poly(sqrt(n))"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.263832092285156,
+ false
+ ]
+ ],
+ [
+ [
+ -24.4702091217041,
+ false
+ ]
+ ],
+ [
+ [
+ -24.825349807739258,
+ false
+ ]
+ ],
+ [
+ [
+ -23.393047332763672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.263832092285156,
+ false
+ ],
+ [
+ -24.4702091217041,
+ false
+ ],
+ [
+ -24.825349807739258,
+ false
+ ],
+ [
+ -23.393047332763672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dbf5f6346c8e1d783a57e99b79cfa23e88d4e708818bfc4a3a556358d731c5fe",
+ "prompt_hash": "fd0f10c0a89cb75f0efbdb7c152212d7e9c6fb21be2bf75043c1a09204a8b9b3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "Why can random quantum circuits appear Haar-random in exponentially lower depth compared to classical circuits?",
+ "choices": [
+ "Quantum circuits use fewer gates",
+ "Quantum circuits operate only on classical bits",
+ "Quantum circuits can hide information in non-commuting observables",
+ "Quantum circuits avoid measurement altogether"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Why can random quantum circuits appear Haar-random in exponentially lower depth compared to classical circuits?\nAnswer:",
+ " Quantum circuits use fewer gates"
+ ],
+ [
+ "Question:Why can random quantum circuits appear Haar-random in exponentially lower depth compared to classical circuits?\nAnswer:",
+ " Quantum circuits operate only on classical bits"
+ ],
+ [
+ "Question:Why can random quantum circuits appear Haar-random in exponentially lower depth compared to classical circuits?\nAnswer:",
+ " Quantum circuits can hide information in non-commuting observables"
+ ],
+ [
+ "Question:Why can random quantum circuits appear Haar-random in exponentially lower depth compared to classical circuits?\nAnswer:",
+ " Quantum circuits avoid measurement altogether"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.355615615844727,
+ false
+ ]
+ ],
+ [
+ [
+ -24.588275909423828,
+ false
+ ]
+ ],
+ [
+ [
+ -35.55263900756836,
+ false
+ ]
+ ],
+ [
+ [
+ -26.179462432861328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.355615615844727,
+ false
+ ],
+ [
+ -24.588275909423828,
+ false
+ ],
+ [
+ -35.55263900756836,
+ false
+ ],
+ [
+ -26.179462432861328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8942b343b5900cf80761e00cc194c309d61c7b88a17de5c8c41435096b338eb9",
+ "prompt_hash": "5f3c72693fae80533b25db692fda49f4cf0382dd96efb58bd5a1b3a719962ca7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "What is the minimum circuit depth required for orthogonal quantum circuits to match the second moment of a Haar-random orthogonal matrix in 1D?",
+ "choices": [
+ "Ω(log log n)",
+ "Ω(n)",
+ "Ω(log n)",
+ "Ω(1)"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the minimum circuit depth required for orthogonal quantum circuits to match the second moment of a Haar-random orthogonal matrix in 1D?\nAnswer:",
+ " Ω(log log n)"
+ ],
+ [
+ "Question:What is the minimum circuit depth required for orthogonal quantum circuits to match the second moment of a Haar-random orthogonal matrix in 1D?\nAnswer:",
+ " Ω(n)"
+ ],
+ [
+ "Question:What is the minimum circuit depth required for orthogonal quantum circuits to match the second moment of a Haar-random orthogonal matrix in 1D?\nAnswer:",
+ " Ω(log n)"
+ ],
+ [
+ "Question:What is the minimum circuit depth required for orthogonal quantum circuits to match the second moment of a Haar-random orthogonal matrix in 1D?\nAnswer:",
+ " Ω(1)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.244606018066406,
+ false
+ ]
+ ],
+ [
+ [
+ -26.079303741455078,
+ false
+ ]
+ ],
+ [
+ [
+ -28.070377349853516,
+ false
+ ]
+ ],
+ [
+ [
+ -25.273380279541016,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.244606018066406,
+ false
+ ],
+ [
+ -26.079303741455078,
+ false
+ ],
+ [
+ -28.070377349853516,
+ false
+ ],
+ [
+ -25.273380279541016,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c14fd056edad82ec32d1bed34a49d500307e4ba5d553ffaa2100964e31b87fd7",
+ "prompt_hash": "82814ab236197202c0eaa4e72f1fb33f558dcd6525b1e3e6b2f1db9e735ec159",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "What type of product is denoted by the symbol \\\\( \\\\odot \\\\) in the notation section?",
+ "choices": [
+ "Kronecker product",
+ "Outer product",
+ "Hadamard product",
+ "Khatri-Rao product"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What type of product is denoted by the symbol \\\\( \\\\odot \\\\) in the notation section?\nAnswer:",
+ " Kronecker product"
+ ],
+ [
+ "Question:What type of product is denoted by the symbol \\\\( \\\\odot \\\\) in the notation section?\nAnswer:",
+ " Outer product"
+ ],
+ [
+ "Question:What type of product is denoted by the symbol \\\\( \\\\odot \\\\) in the notation section?\nAnswer:",
+ " Hadamard product"
+ ],
+ [
+ "Question:What type of product is denoted by the symbol \\\\( \\\\odot \\\\) in the notation section?\nAnswer:",
+ " Khatri-Rao product"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.476451873779297,
+ false
+ ]
+ ],
+ [
+ [
+ -15.377878189086914,
+ false
+ ]
+ ],
+ [
+ [
+ -12.29111099243164,
+ false
+ ]
+ ],
+ [
+ [
+ -15.445086479187012,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.476451873779297,
+ false
+ ],
+ [
+ -15.377878189086914,
+ false
+ ],
+ [
+ -12.29111099243164,
+ false
+ ],
+ [
+ -15.445086479187012,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7059aba6a93a63f69559df1560312849767e51568200900697eb0d21ba820d66",
+ "prompt_hash": "63775c730f165c2cdf883a1db71000f8749c0563ab2ce07d1e2bb009870f4d05",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "What is the role of the matrix \\\\( \\\\bm{\\\\Sigma} \\\\) in the MIMO channel model?",
+ "choices": [
+ "It represents the antenna gain matrix.",
+ "It denotes the noise correlation matrix.",
+ "It denotes the path response matrix (PRM) between the Tx and Rx regions.",
+ "It is the pilot signal matrix."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the role of the matrix \\\\( \\\\bm{\\\\Sigma} \\\\) in the MIMO channel model?\nAnswer:",
+ " It represents the antenna gain matrix."
+ ],
+ [
+ "Question:What is the role of the matrix \\\\( \\\\bm{\\\\Sigma} \\\\) in the MIMO channel model?\nAnswer:",
+ " It denotes the noise correlation matrix."
+ ],
+ [
+ "Question:What is the role of the matrix \\\\( \\\\bm{\\\\Sigma} \\\\) in the MIMO channel model?\nAnswer:",
+ " It denotes the path response matrix (PRM) between the Tx and Rx regions."
+ ],
+ [
+ "Question:What is the role of the matrix \\\\( \\\\bm{\\\\Sigma} \\\\) in the MIMO channel model?\nAnswer:",
+ " It is the pilot signal matrix."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.347972869873047,
+ false
+ ]
+ ],
+ [
+ [
+ -20.47518539428711,
+ false
+ ]
+ ],
+ [
+ [
+ -52.65840148925781,
+ false
+ ]
+ ],
+ [
+ [
+ -24.194866180419922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.347972869873047,
+ false
+ ],
+ [
+ -20.47518539428711,
+ false
+ ],
+ [
+ -52.65840148925781,
+ false
+ ],
+ [
+ -24.194866180419922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f3ea440e3b590ca8bf5e1a9ff43163c026a3988f19f3265b244603813e64d127",
+ "prompt_hash": "cf332b053f0076252bfb678cd15aae63ca2ba6dd97670499a3fb759be57a4062",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "What is the purpose of introducing a two-stage Tx-Rx successive antenna movement pattern?",
+ "choices": [
+ "To minimize the number of antenna ports.",
+ "To simplify the hardware implementation.",
+ "To allow the received pilot signals to be expressed as a third-order tensor.",
+ "To estimate the pilot noise covariance matrix."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of introducing a two-stage Tx-Rx successive antenna movement pattern?\nAnswer:",
+ " To minimize the number of antenna ports."
+ ],
+ [
+ "Question:What is the purpose of introducing a two-stage Tx-Rx successive antenna movement pattern?\nAnswer:",
+ " To simplify the hardware implementation."
+ ],
+ [
+ "Question:What is the purpose of introducing a two-stage Tx-Rx successive antenna movement pattern?\nAnswer:",
+ " To allow the received pilot signals to be expressed as a third-order tensor."
+ ],
+ [
+ "Question:What is the purpose of introducing a two-stage Tx-Rx successive antenna movement pattern?\nAnswer:",
+ " To estimate the pilot noise covariance matrix."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.519088745117188,
+ false
+ ]
+ ],
+ [
+ [
+ -15.229227066040039,
+ false
+ ]
+ ],
+ [
+ [
+ -46.79536819458008,
+ false
+ ]
+ ],
+ [
+ [
+ -31.928115844726562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.519088745117188,
+ false
+ ],
+ [
+ -15.229227066040039,
+ false
+ ],
+ [
+ -46.79536819458008,
+ false
+ ],
+ [
+ -31.928115844726562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cd078c68e5271f1789f1ad38aff800702fe05b176f29fd943f37fefa4ef38bd7",
+ "prompt_hash": "b7c805f3a0e82a3b9b69051224bf844789cea13c43f241f8e8a5735274003aac",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "Which algorithm is used to estimate the factor matrices from the tensor in the proposed method?",
+ "choices": [
+ "Gradient Descent",
+ "Stochastic Gradient Descent",
+ "Alternating Least Squares (ALS)",
+ "Expectation Maximization (EM)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which algorithm is used to estimate the factor matrices from the tensor in the proposed method?\nAnswer:",
+ " Gradient Descent"
+ ],
+ [
+ "Question:Which algorithm is used to estimate the factor matrices from the tensor in the proposed method?\nAnswer:",
+ " Stochastic Gradient Descent"
+ ],
+ [
+ "Question:Which algorithm is used to estimate the factor matrices from the tensor in the proposed method?\nAnswer:",
+ " Alternating Least Squares (ALS)"
+ ],
+ [
+ "Question:Which algorithm is used to estimate the factor matrices from the tensor in the proposed method?\nAnswer:",
+ " Expectation Maximization (EM)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.288975715637207,
+ false
+ ]
+ ],
+ [
+ [
+ -10.533903121948242,
+ false
+ ]
+ ],
+ [
+ [
+ -10.85214614868164,
+ false
+ ]
+ ],
+ [
+ [
+ -9.711283683776855,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.288975715637207,
+ false
+ ],
+ [
+ -10.533903121948242,
+ false
+ ],
+ [
+ -10.85214614868164,
+ false
+ ],
+ [
+ -9.711283683776855,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "448aca9f20641c880937f0058af91cb1edc19f3cfd05c3b986c49cfacbe4131b",
+ "prompt_hash": "34a9086f0fa49009032bd6411419757a73cbd4732e082dd3f55b163c47f3d75e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "According to Lemma 1, what is the inequality condition for the uniqueness of the CP decomposition of a third-order tensor?",
+ "choices": [
+ "\\( \\min(I_1, L) + \\min(I_2, L) + \\min(I_3, L) \\geq 2L + 1 \\)",
+ "\\( \\min(I_1, L) + \\min(I_2, L) + \\min(I_3, L) \\leq 2L + 2 \\)",
+ "\\( \\min(I_1, L) + \\min(I_2, L) + \\min(I_3, L) \\geq 2L + 2 \\)",
+ "\\( I_1 + I_2 + I_3 \\geq 3L \\)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:According to Lemma 1, what is the inequality condition for the uniqueness of the CP decomposition of a third-order tensor?\nAnswer:",
+ " \\( \\min(I_1, L) + \\min(I_2, L) + \\min(I_3, L) \\geq 2L + 1 \\)"
+ ],
+ [
+ "Question:According to Lemma 1, what is the inequality condition for the uniqueness of the CP decomposition of a third-order tensor?\nAnswer:",
+ " \\( \\min(I_1, L) + \\min(I_2, L) + \\min(I_3, L) \\leq 2L + 2 \\)"
+ ],
+ [
+ "Question:According to Lemma 1, what is the inequality condition for the uniqueness of the CP decomposition of a third-order tensor?\nAnswer:",
+ " \\( \\min(I_1, L) + \\min(I_2, L) + \\min(I_3, L) \\geq 2L + 2 \\)"
+ ],
+ [
+ "Question:According to Lemma 1, what is the inequality condition for the uniqueness of the CP decomposition of a third-order tensor?\nAnswer:",
+ " \\( I_1 + I_2 + I_3 \\geq 3L \\)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -57.100379943847656,
+ false
+ ]
+ ],
+ [
+ [
+ -57.3333740234375,
+ false
+ ]
+ ],
+ [
+ [
+ -57.717796325683594,
+ false
+ ]
+ ],
+ [
+ [
+ -37.311668395996094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -57.100379943847656,
+ false
+ ],
+ [
+ -57.3333740234375,
+ false
+ ],
+ [
+ -57.717796325683594,
+ false
+ ],
+ [
+ -37.311668395996094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "73566678c7792ba0c12d20d4df5544540424788b02bbdfc5520581d7005ffa11",
+ "prompt_hash": "042d5972389ff5a870b7a6352b566ad9b4781c8c36433ffe586761307d59ad12",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What is the total number of parameters activated per text token in the described MoE model?",
+ "choices": [
+ "3.5B",
+ "24.9B",
+ "66M",
+ "438M"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the total number of parameters activated per text token in the described MoE model?\nAnswer:",
+ " 3.5B"
+ ],
+ [
+ "Question:What is the total number of parameters activated per text token in the described MoE model?\nAnswer:",
+ " 24.9B"
+ ],
+ [
+ "Question:What is the total number of parameters activated per text token in the described MoE model?\nAnswer:",
+ " 66M"
+ ],
+ [
+ "Question:What is the total number of parameters activated per text token in the described MoE model?\nAnswer:",
+ " 438M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.006896018981934,
+ false
+ ]
+ ],
+ [
+ [
+ -17.268253326416016,
+ false
+ ]
+ ],
+ [
+ [
+ -10.897493362426758,
+ false
+ ]
+ ],
+ [
+ [
+ -13.124433517456055,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.006896018981934,
+ false
+ ],
+ [
+ -17.268253326416016,
+ false
+ ],
+ [
+ -10.897493362426758,
+ false
+ ],
+ [
+ -13.124433517456055,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c6afc5680e8d3dceb6ef438860605a3e0542ca1cce44927569aac288145823d6",
+ "prompt_hash": "c50de2733f2cf5cd1bba88a2366bb4ae37ade03fd2675d4d2e9050a4239b6220",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "Which model is used to initialize the weights of the Vision Transformer (ViT) in the visual encoder?",
+ "choices": [
+ "BLIP2",
+ "SigLIP-SO400M",
+ "CLIP",
+ "Qwen-VL"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model is used to initialize the weights of the Vision Transformer (ViT) in the visual encoder?\nAnswer:",
+ " BLIP2"
+ ],
+ [
+ "Question:Which model is used to initialize the weights of the Vision Transformer (ViT) in the visual encoder?\nAnswer:",
+ " SigLIP-SO400M"
+ ],
+ [
+ "Question:Which model is used to initialize the weights of the Vision Transformer (ViT) in the visual encoder?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:Which model is used to initialize the weights of the Vision Transformer (ViT) in the visual encoder?\nAnswer:",
+ " Qwen-VL"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.5610933303833,
+ false
+ ]
+ ],
+ [
+ [
+ -35.3951301574707,
+ false
+ ]
+ ],
+ [
+ [
+ -6.808763027191162,
+ false
+ ]
+ ],
+ [
+ [
+ -10.143580436706543,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.5610933303833,
+ false
+ ],
+ [
+ -35.3951301574707,
+ false
+ ],
+ [
+ -6.808763027191162,
+ false
+ ],
+ [
+ -10.143580436706543,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "439f9fb56c44368ec0d4edbf4d6e0c4b213a2838c243fa648166b17164147572",
+ "prompt_hash": "12e07657b42f63eb9020cf762b1b06f77d3ea8123fa5b01679b6e03bfa24502f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "How many experts are there in each MoE layer of the model?",
+ "choices": [
+ "12",
+ "32",
+ "66",
+ "128"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many experts are there in each MoE layer of the model?\nAnswer:",
+ " 12"
+ ],
+ [
+ "Question:How many experts are there in each MoE layer of the model?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:How many experts are there in each MoE layer of the model?\nAnswer:",
+ " 66"
+ ],
+ [
+ "Question:How many experts are there in each MoE layer of the model?\nAnswer:",
+ " 128"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.806491374969482,
+ false
+ ]
+ ],
+ [
+ [
+ -6.29629373550415,
+ false
+ ]
+ ],
+ [
+ [
+ -11.010457992553711,
+ false
+ ]
+ ],
+ [
+ [
+ -7.832982540130615,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.806491374969482,
+ false
+ ],
+ [
+ -6.29629373550415,
+ false
+ ],
+ [
+ -11.010457992553711,
+ false
+ ],
+ [
+ -7.832982540130615,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "64fcd7f21e4f146b99315a2ab8ffecfccbe38f757e4e2e4e741d44cc318cedff",
+ "prompt_hash": "79143893a7c5b0703ecf4631e7bc9aec135cd93570015c66ad796a6643c95c2a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "What type of loss is used to prevent routing collapse during training?",
+ "choices": [
+ "Cross-entropy loss",
+ "Z-loss",
+ "Load balancing loss",
+ "Triplet loss"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of loss is used to prevent routing collapse during training?\nAnswer:",
+ " Cross-entropy loss"
+ ],
+ [
+ "Question:What type of loss is used to prevent routing collapse during training?\nAnswer:",
+ " Z-loss"
+ ],
+ [
+ "Question:What type of loss is used to prevent routing collapse during training?\nAnswer:",
+ " Load balancing loss"
+ ],
+ [
+ "Question:What type of loss is used to prevent routing collapse during training?\nAnswer:",
+ " Triplet loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.436159610748291,
+ false
+ ]
+ ],
+ [
+ [
+ -12.510422706604004,
+ false
+ ]
+ ],
+ [
+ [
+ -13.109281539916992,
+ false
+ ]
+ ],
+ [
+ [
+ -12.308365821838379,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.436159610748291,
+ false
+ ],
+ [
+ -12.510422706604004,
+ false
+ ],
+ [
+ -13.109281539916992,
+ false
+ ],
+ [
+ -12.308365821838379,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d4376c2623b39f4a9dba9b0a13d6e872a8b5737b8bd05087639cc083c35eceb8",
+ "prompt_hash": "4f6cd51e4cda9517a2579b60770da74323879616ff0c76869abad7f2a69feaa2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "How many tokens are used in the final multimodal post-training stage?",
+ "choices": [
+ "12B",
+ "20B",
+ "33B",
+ "400B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many tokens are used in the final multimodal post-training stage?\nAnswer:",
+ " 12B"
+ ],
+ [
+ "Question:How many tokens are used in the final multimodal post-training stage?\nAnswer:",
+ " 20B"
+ ],
+ [
+ "Question:How many tokens are used in the final multimodal post-training stage?\nAnswer:",
+ " 33B"
+ ],
+ [
+ "Question:How many tokens are used in the final multimodal post-training stage?\nAnswer:",
+ " 400B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.14369010925293,
+ false
+ ]
+ ],
+ [
+ [
+ -11.791297912597656,
+ false
+ ]
+ ],
+ [
+ [
+ -12.262496948242188,
+ false
+ ]
+ ],
+ [
+ [
+ -13.315629959106445,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.14369010925293,
+ false
+ ],
+ [
+ -11.791297912597656,
+ false
+ ],
+ [
+ -12.262496948242188,
+ false
+ ],
+ [
+ -13.315629959106445,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0825e1d5fb8ee7c6bd644f052a2488cb7be215fb467757bfa2555f98a47c09d0",
+ "prompt_hash": "440baadf0422a6fba1ef6e8c9f6d53343c33a81f59427b90fdbeee2a2a507e87",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What are the four ability modules defined in the evaluation interface for embodied agents?",
+ "choices": [
+ "Goal Interpretation, Subgoal Decomposition, Action Sequencing, Transition Modeling",
+ "Goal Interpretation, Motion Control, Planning, Feedback Analysis",
+ "Goal Setting, Path Planning, Execution, Memory Encoding",
+ "Object Recognition, Scene Understanding, Action Prediction, Feedback Control"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What are the four ability modules defined in the evaluation interface for embodied agents?\nAnswer:",
+ " Goal Interpretation, Subgoal Decomposition, Action Sequencing, Transition Modeling"
+ ],
+ [
+ "Question:What are the four ability modules defined in the evaluation interface for embodied agents?\nAnswer:",
+ " Goal Interpretation, Motion Control, Planning, Feedback Analysis"
+ ],
+ [
+ "Question:What are the four ability modules defined in the evaluation interface for embodied agents?\nAnswer:",
+ " Goal Setting, Path Planning, Execution, Memory Encoding"
+ ],
+ [
+ "Question:What are the four ability modules defined in the evaluation interface for embodied agents?\nAnswer:",
+ " Object Recognition, Scene Understanding, Action Prediction, Feedback Control"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -52.57338333129883,
+ false
+ ]
+ ],
+ [
+ [
+ -45.967445373535156,
+ false
+ ]
+ ],
+ [
+ [
+ -43.07550811767578,
+ false
+ ]
+ ],
+ [
+ [
+ -40.704917907714844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -52.57338333129883,
+ false
+ ],
+ [
+ -45.967445373535156,
+ false
+ ],
+ [
+ -43.07550811767578,
+ false
+ ],
+ [
+ -40.704917907714844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "446907946e6be1ea3eddc9b9023aa680aab7631bc23164a68c1f2ceaae9ba2ab",
+ "prompt_hash": "c6e08ed15bc7ade20774b38a2bd6126aa9628961781f8bf1134f6e6a9efa8b2c",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "Which logic formalism is used to unify goal representation and interface communication across modules?",
+ "choices": [
+ "First-order logic",
+ "Linear Temporal Logic (LTL)",
+ "Propositional Logic",
+ "Modal Logic"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which logic formalism is used to unify goal representation and interface communication across modules?\nAnswer:",
+ " First-order logic"
+ ],
+ [
+ "Question:Which logic formalism is used to unify goal representation and interface communication across modules?\nAnswer:",
+ " Linear Temporal Logic (LTL)"
+ ],
+ [
+ "Question:Which logic formalism is used to unify goal representation and interface communication across modules?\nAnswer:",
+ " Propositional Logic"
+ ],
+ [
+ "Question:Which logic formalism is used to unify goal representation and interface communication across modules?\nAnswer:",
+ " Modal Logic"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.375009536743164,
+ false
+ ]
+ ],
+ [
+ [
+ -10.933296203613281,
+ false
+ ]
+ ],
+ [
+ [
+ -8.579730987548828,
+ false
+ ]
+ ],
+ [
+ [
+ -11.018582344055176,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.375009536743164,
+ false
+ ],
+ [
+ -10.933296203613281,
+ false
+ ],
+ [
+ -8.579730987548828,
+ false
+ ],
+ [
+ -11.018582344055176,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a34d1de6c62668e56480d62ad4a4d294667162537293a265b2a23149e6cd5b3c",
+ "prompt_hash": "fbc065b0157fa4517c361a13aad431e8683795a12f276ad4162de1750f148b19",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "Which operator in the LTL extension replaces traditional 'Next' and 'Eventually' operators?",
+ "choices": [
+ "until",
+ "followed_by",
+ "then",
+ "after"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which operator in the LTL extension replaces traditional 'Next' and 'Eventually' operators?\nAnswer:",
+ " until"
+ ],
+ [
+ "Question:Which operator in the LTL extension replaces traditional 'Next' and 'Eventually' operators?\nAnswer:",
+ " followed_by"
+ ],
+ [
+ "Question:Which operator in the LTL extension replaces traditional 'Next' and 'Eventually' operators?\nAnswer:",
+ " then"
+ ],
+ [
+ "Question:Which operator in the LTL extension replaces traditional 'Next' and 'Eventually' operators?\nAnswer:",
+ " after"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.634527206420898,
+ false
+ ]
+ ],
+ [
+ [
+ -16.37803840637207,
+ false
+ ]
+ ],
+ [
+ [
+ -8.34276008605957,
+ false
+ ]
+ ],
+ [
+ [
+ -8.659734725952148,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.634527206420898,
+ false
+ ],
+ [
+ -16.37803840637207,
+ false
+ ],
+ [
+ -8.34276008605957,
+ false
+ ],
+ [
+ -8.659734725952148,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b853127ae9c576f6be3da574057481ba1e3eac84d279279889e5df6bf8bf2088",
+ "prompt_hash": "8ee4cf7b73048e86482c23135a7db52e17051368b55de95740771faa55e50b7c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "What are the three main categories used to evaluate Goal Interpretation?",
+ "choices": [
+ "Grammar Accuracy, Object Mapping, Action Simulation",
+ "State Goals, Relation Goals, Action Goals",
+ "Visual Matching, Semantic Parsing, Execution Accuracy",
+ "Input Coherence, Goal Satisfaction, Subgoal Length"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What are the three main categories used to evaluate Goal Interpretation?\nAnswer:",
+ " Grammar Accuracy, Object Mapping, Action Simulation"
+ ],
+ [
+ "Question:What are the three main categories used to evaluate Goal Interpretation?\nAnswer:",
+ " State Goals, Relation Goals, Action Goals"
+ ],
+ [
+ "Question:What are the three main categories used to evaluate Goal Interpretation?\nAnswer:",
+ " Visual Matching, Semantic Parsing, Execution Accuracy"
+ ],
+ [
+ "Question:What are the three main categories used to evaluate Goal Interpretation?\nAnswer:",
+ " Input Coherence, Goal Satisfaction, Subgoal Length"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -46.37894821166992,
+ false
+ ]
+ ],
+ [
+ [
+ -30.310394287109375,
+ false
+ ]
+ ],
+ [
+ [
+ -46.54631423950195,
+ false
+ ]
+ ],
+ [
+ [
+ -45.22802734375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -46.37894821166992,
+ false
+ ],
+ [
+ -30.310394287109375,
+ false
+ ],
+ [
+ -46.54631423950195,
+ false
+ ],
+ [
+ -45.22802734375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e39038c99ac3dba99213e032531639c25f9198784fa744f6528f32358acaf39e",
+ "prompt_hash": "65380e72e4caa365a491095aaae576924e67da98e0d80326c8e24bce0b8c3f8c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "Which type of error occurs when an action is correct in format but involves an object or action not present in the environment?",
+ "choices": [
+ "Parsing Error",
+ "Affordance Error",
+ "Hallucination Error",
+ "Missing Step"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which type of error occurs when an action is correct in format but involves an object or action not present in the environment?\nAnswer:",
+ " Parsing Error"
+ ],
+ [
+ "Question:Which type of error occurs when an action is correct in format but involves an object or action not present in the environment?\nAnswer:",
+ " Affordance Error"
+ ],
+ [
+ "Question:Which type of error occurs when an action is correct in format but involves an object or action not present in the environment?\nAnswer:",
+ " Hallucination Error"
+ ],
+ [
+ "Question:Which type of error occurs when an action is correct in format but involves an object or action not present in the environment?\nAnswer:",
+ " Missing Step"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.865713119506836,
+ false
+ ]
+ ],
+ [
+ [
+ -12.490418434143066,
+ false
+ ]
+ ],
+ [
+ [
+ -12.585088729858398,
+ false
+ ]
+ ],
+ [
+ [
+ -15.464625358581543,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.865713119506836,
+ false
+ ],
+ [
+ -12.490418434143066,
+ false
+ ],
+ [
+ -12.585088729858398,
+ false
+ ],
+ [
+ -15.464625358581543,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3fabb95c875a224c6b8a5289f4928512d9403c0f1ade52711fe13600462d2cd1",
+ "prompt_hash": "cc058b02a36c03400b43d613b77eec781e329a7dc4c8e0e5588cf7397820cf16",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What is the function of the model referred to as G_RM?",
+ "choices": [
+ "To generate completions based on user prompts",
+ "To provide safety specifications for model training",
+ "To judge completions for correctness, helpfulness, and compliance",
+ "To encode the chain-of-thought during inference"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the function of the model referred to as G_RM?\nAnswer:",
+ " To generate completions based on user prompts"
+ ],
+ [
+ "Question:What is the function of the model referred to as G_RM?\nAnswer:",
+ " To provide safety specifications for model training"
+ ],
+ [
+ "Question:What is the function of the model referred to as G_RM?\nAnswer:",
+ " To judge completions for correctness, helpfulness, and compliance"
+ ],
+ [
+ "Question:What is the function of the model referred to as G_RM?\nAnswer:",
+ " To encode the chain-of-thought during inference"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.619800567626953,
+ false
+ ]
+ ],
+ [
+ [
+ -35.57646560668945,
+ false
+ ]
+ ],
+ [
+ [
+ -51.08036804199219,
+ false
+ ]
+ ],
+ [
+ [
+ -38.449432373046875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.619800567626953,
+ false
+ ],
+ [
+ -35.57646560668945,
+ false
+ ],
+ [
+ -51.08036804199219,
+ false
+ ],
+ [
+ -38.449432373046875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "76cc915c4efc02cf6d849bb601b3d2006b33d12d3b4f4892d0c94aa43042494c",
+ "prompt_hash": "e15cc7d6ef7856d5aa45d2fc0c5805fcab80ecf2b6ffc22d82642c782e849a7d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "What are the three labels used to classify user requests based on content policy?",
+ "choices": [
+ "Accept, Reject, Moderate",
+ "Allow, Deny, Defer",
+ "Allowed, Disallowed, Requires Safe Completion",
+ "Safe, Unsafe, Context-Dependent"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What are the three labels used to classify user requests based on content policy?\nAnswer:",
+ " Accept, Reject, Moderate"
+ ],
+ [
+ "Question:What are the three labels used to classify user requests based on content policy?\nAnswer:",
+ " Allow, Deny, Defer"
+ ],
+ [
+ "Question:What are the three labels used to classify user requests based on content policy?\nAnswer:",
+ " Allowed, Disallowed, Requires Safe Completion"
+ ],
+ [
+ "Question:What are the three labels used to classify user requests based on content policy?\nAnswer:",
+ " Safe, Unsafe, Context-Dependent"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.829608917236328,
+ false
+ ]
+ ],
+ [
+ [
+ -20.263399124145508,
+ false
+ ]
+ ],
+ [
+ [
+ -43.32582473754883,
+ false
+ ]
+ ],
+ [
+ [
+ -25.447376251220703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.829608917236328,
+ false
+ ],
+ [
+ -20.263399124145508,
+ false
+ ],
+ [
+ -43.32582473754883,
+ false
+ ],
+ [
+ -25.447376251220703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "756aef5e8cc9ae0ae256cd9578807a8e0142956531fd021cbde0219bca1220be",
+ "prompt_hash": "7021a82e6a2233212c747912d12da88d433e42f877665a22d6da5907bc0825d1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "Which safety category allows educational discussions about suicide but requires a safe-completion for ideation or methods?",
+ "choices": [
+ "Extremism",
+ "Self-harm",
+ "Harassment",
+ "Violence"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which safety category allows educational discussions about suicide but requires a safe-completion for ideation or methods?\nAnswer:",
+ " Extremism"
+ ],
+ [
+ "Question:Which safety category allows educational discussions about suicide but requires a safe-completion for ideation or methods?\nAnswer:",
+ " Self-harm"
+ ],
+ [
+ "Question:Which safety category allows educational discussions about suicide but requires a safe-completion for ideation or methods?\nAnswer:",
+ " Harassment"
+ ],
+ [
+ "Question:Which safety category allows educational discussions about suicide but requires a safe-completion for ideation or methods?\nAnswer:",
+ " Violence"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.61020565032959,
+ false
+ ]
+ ],
+ [
+ [
+ -9.390151023864746,
+ false
+ ]
+ ],
+ [
+ [
+ -10.084878921508789,
+ false
+ ]
+ ],
+ [
+ [
+ -7.957781791687012,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.61020565032959,
+ false
+ ],
+ [
+ -9.390151023864746,
+ false
+ ],
+ [
+ -10.084878921508789,
+ false
+ ],
+ [
+ -7.957781791687012,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8e13a825edb967f944b382519cbe119e167c8083076f40e27ed48a979af5f556",
+ "prompt_hash": "2760df879ddc37afd924dd9c38a63395dec97002b56fb0f3bbd691751e7d282a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "What does the refusal style guideline explicitly prohibit?",
+ "choices": [
+ "Using abstract references to requests",
+ "Mentioning specific criminal acts",
+ "Encouraging users to consult professionals",
+ "Providing brief apologies"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the refusal style guideline explicitly prohibit?\nAnswer:",
+ " Using abstract references to requests"
+ ],
+ [
+ "Question:What does the refusal style guideline explicitly prohibit?\nAnswer:",
+ " Mentioning specific criminal acts"
+ ],
+ [
+ "Question:What does the refusal style guideline explicitly prohibit?\nAnswer:",
+ " Encouraging users to consult professionals"
+ ],
+ [
+ "Question:What does the refusal style guideline explicitly prohibit?\nAnswer:",
+ " Providing brief apologies"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.08670425415039,
+ false
+ ]
+ ],
+ [
+ [
+ -24.397045135498047,
+ false
+ ]
+ ],
+ [
+ [
+ -29.132076263427734,
+ false
+ ]
+ ],
+ [
+ [
+ -22.21463394165039,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.08670425415039,
+ false
+ ],
+ [
+ -24.397045135498047,
+ false
+ ],
+ [
+ -29.132076263427734,
+ false
+ ],
+ [
+ -22.21463394165039,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6fb9927c8cc4285578785a6dd33dd9c2aa08ec5fd0ba60b17966e1321d6caa0b",
+ "prompt_hash": "5e1e243af4670b0db136a0863bb51d6893576e2ab2d2eba42416bf75235420a2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "What type of training information is excluded from prompts during SFT to encourage model recall of safety policies?",
+ "choices": [
+ "Chain-of-thought references",
+ "Category-specific specifications",
+ "Final answer text",
+ "Safety categories"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of training information is excluded from prompts during SFT to encourage model recall of safety policies?\nAnswer:",
+ " Chain-of-thought references"
+ ],
+ [
+ "Question:What type of training information is excluded from prompts during SFT to encourage model recall of safety policies?\nAnswer:",
+ " Category-specific specifications"
+ ],
+ [
+ "Question:What type of training information is excluded from prompts during SFT to encourage model recall of safety policies?\nAnswer:",
+ " Final answer text"
+ ],
+ [
+ "Question:What type of training information is excluded from prompts during SFT to encourage model recall of safety policies?\nAnswer:",
+ " Safety categories"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.58326530456543,
+ false
+ ]
+ ],
+ [
+ [
+ -21.516347885131836,
+ false
+ ]
+ ],
+ [
+ [
+ -22.331558227539062,
+ false
+ ]
+ ],
+ [
+ [
+ -15.906003952026367,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.58326530456543,
+ false
+ ],
+ [
+ -21.516347885131836,
+ false
+ ],
+ [
+ -22.331558227539062,
+ false
+ ],
+ [
+ -15.906003952026367,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4120363f1bef97c9f0e1c4e575fd00747e559372e35a5088d1b0c464f076421a",
+ "prompt_hash": "cce0d69851e1b0c4a24df4edfaace2832a3fedfaf5d1bca4cdf8e8849f4c503e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What symbol does Search-o1 use to mark the beginning of a search query?",
+ "choices": [
+ "<|begin_search_query|>",
+ "<|start_search_query|>",
+ "<|search_query_begin|>",
+ "<|open_search_query|>"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What symbol does Search-o1 use to mark the beginning of a search query?\nAnswer:",
+ " <|begin_search_query|>"
+ ],
+ [
+ "Question:What symbol does Search-o1 use to mark the beginning of a search query?\nAnswer:",
+ " <|start_search_query|>"
+ ],
+ [
+ "Question:What symbol does Search-o1 use to mark the beginning of a search query?\nAnswer:",
+ " <|search_query_begin|>"
+ ],
+ [
+ "Question:What symbol does Search-o1 use to mark the beginning of a search query?\nAnswer:",
+ " <|open_search_query|>"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.955759048461914,
+ false
+ ]
+ ],
+ [
+ [
+ -23.02724838256836,
+ false
+ ]
+ ],
+ [
+ [
+ -24.06060791015625,
+ false
+ ]
+ ],
+ [
+ [
+ -28.29389190673828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.955759048461914,
+ false
+ ],
+ [
+ -23.02724838256836,
+ false
+ ],
+ [
+ -24.06060791015625,
+ false
+ ],
+ [
+ -28.29389190673828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "266ffc54ecf6947b9dbe06a2643ec3a9a78751d0b06809c042ca50fa25ebdd80",
+ "prompt_hash": "bcc7f84f3b6b3f32231f935019674ec6e3e6e8383565d32e5385bb91eb20ed20",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which API does Search-o1 use to fetch web content for given URLs?",
+ "choices": [
+ "Jina Reader API",
+ "OpenAI Retrieval API",
+ "Bing Content API",
+ "Doc2Text API"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which API does Search-o1 use to fetch web content for given URLs?\nAnswer:",
+ " Jina Reader API"
+ ],
+ [
+ "Question:Which API does Search-o1 use to fetch web content for given URLs?\nAnswer:",
+ " OpenAI Retrieval API"
+ ],
+ [
+ "Question:Which API does Search-o1 use to fetch web content for given URLs?\nAnswer:",
+ " Bing Content API"
+ ],
+ [
+ "Question:Which API does Search-o1 use to fetch web content for given URLs?\nAnswer:",
+ " Doc2Text API"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.21390724182129,
+ false
+ ]
+ ],
+ [
+ [
+ -21.821231842041016,
+ false
+ ]
+ ],
+ [
+ [
+ -15.548657417297363,
+ false
+ ]
+ ],
+ [
+ [
+ -21.298263549804688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.21390724182129,
+ false
+ ],
+ [
+ -21.821231842041016,
+ false
+ ],
+ [
+ -15.548657417297363,
+ false
+ ],
+ [
+ -21.298263549804688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "12b97b0d53975bf2ea01b8de1d4f72c94139f2d040997485fc5b631ae309bdc4",
+ "prompt_hash": "cd7f2ae9f1e2f4ed786f45762308172a6b4c6791d7fcc0971b432ac17897e6cb",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "What is the purpose of the Reason-in-Documents module in the Search-o1 framework?",
+ "choices": [
+ "To analyze retrieved documents and extract relevant information for reasoning",
+ "To generate random search queries when needed",
+ "To replace the original reasoning model with a distilled one",
+ "To summarize the question before answering"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the purpose of the Reason-in-Documents module in the Search-o1 framework?\nAnswer:",
+ " To analyze retrieved documents and extract relevant information for reasoning"
+ ],
+ [
+ "Question:What is the purpose of the Reason-in-Documents module in the Search-o1 framework?\nAnswer:",
+ " To generate random search queries when needed"
+ ],
+ [
+ "Question:What is the purpose of the Reason-in-Documents module in the Search-o1 framework?\nAnswer:",
+ " To replace the original reasoning model with a distilled one"
+ ],
+ [
+ "Question:What is the purpose of the Reason-in-Documents module in the Search-o1 framework?\nAnswer:",
+ " To summarize the question before answering"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.887866973876953,
+ false
+ ]
+ ],
+ [
+ [
+ -29.12590980529785,
+ false
+ ]
+ ],
+ [
+ [
+ -37.679595947265625,
+ false
+ ]
+ ],
+ [
+ [
+ -23.72551155090332,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.887866973876953,
+ false
+ ],
+ [
+ -29.12590980529785,
+ false
+ ],
+ [
+ -37.679595947265625,
+ false
+ ],
+ [
+ -23.72551155090332,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "52afe4206ea3aa17a25d1a11ac1089b750f7309cae24882d6ed7eb1a59c03fdd",
+ "prompt_hash": "7a2712b8c180e61fc344ce7e93ff1255af68261f77c18a4d32a2b2d43729afec",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "What does the GPQA dataset evaluate?",
+ "choices": [
+ "PhD-level science multiple-choice QA",
+ "Elementary arithmetic reasoning",
+ "General commonsense QA",
+ "Code generation tasks"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What does the GPQA dataset evaluate?\nAnswer:",
+ " PhD-level science multiple-choice QA"
+ ],
+ [
+ "Question:What does the GPQA dataset evaluate?\nAnswer:",
+ " Elementary arithmetic reasoning"
+ ],
+ [
+ "Question:What does the GPQA dataset evaluate?\nAnswer:",
+ " General commonsense QA"
+ ],
+ [
+ "Question:What does the GPQA dataset evaluate?\nAnswer:",
+ " Code generation tasks"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -38.47972869873047,
+ false
+ ]
+ ],
+ [
+ [
+ -19.329471588134766,
+ false
+ ]
+ ],
+ [
+ [
+ -19.353612899780273,
+ false
+ ]
+ ],
+ [
+ [
+ -13.192042350769043,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -38.47972869873047,
+ false
+ ],
+ [
+ -19.329471588134766,
+ false
+ ],
+ [
+ -19.353612899780273,
+ false
+ ],
+ [
+ -13.192042350769043,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "561a101e49c5d7e509296df702d6c922e782fa6fbdbdde6a232e1c11981f122e",
+ "prompt_hash": "947b58fbbac3e915e72713db7825fd176a0104e4b240ab4c19f1a9f4a3312ebb",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "What function is triggered when a new search query is detected in Search-o1?",
+ "choices": [
+ "Search",
+ "RetrieveDocs",
+ "FetchKnowledge",
+ "ExternalCall"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What function is triggered when a new search query is detected in Search-o1?\nAnswer:",
+ " Search"
+ ],
+ [
+ "Question:What function is triggered when a new search query is detected in Search-o1?\nAnswer:",
+ " RetrieveDocs"
+ ],
+ [
+ "Question:What function is triggered when a new search query is detected in Search-o1?\nAnswer:",
+ " FetchKnowledge"
+ ],
+ [
+ "Question:What function is triggered when a new search query is detected in Search-o1?\nAnswer:",
+ " ExternalCall"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.8662726879119873,
+ false
+ ]
+ ],
+ [
+ [
+ -16.96810531616211,
+ false
+ ]
+ ],
+ [
+ [
+ -16.960493087768555,
+ false
+ ]
+ ],
+ [
+ [
+ -18.54381561279297,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.8662726879119873,
+ false
+ ],
+ [
+ -16.96810531616211,
+ false
+ ],
+ [
+ -16.960493087768555,
+ false
+ ],
+ [
+ -18.54381561279297,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a24d136e0962c5f560ab2ebf59f1bababedb02eb2e3cc801d2c3ea0679e0d3bb",
+ "prompt_hash": "d422059119c74c5c9293ac200c32bcfd09919427a52e44b1e1a52b27aaa55aee",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What is the main computational advantage of Mamba over Transformer models?",
+ "choices": [
+ "It uses quadratic complexity with respect to sequence length.",
+ "It requires less training data.",
+ "It maintains linear computational complexity with respect to sequence length.",
+ "It ignores spatial features to save computation."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main computational advantage of Mamba over Transformer models?\nAnswer:",
+ " It uses quadratic complexity with respect to sequence length."
+ ],
+ [
+ "Question:What is the main computational advantage of Mamba over Transformer models?\nAnswer:",
+ " It requires less training data."
+ ],
+ [
+ "Question:What is the main computational advantage of Mamba over Transformer models?\nAnswer:",
+ " It maintains linear computational complexity with respect to sequence length."
+ ],
+ [
+ "Question:What is the main computational advantage of Mamba over Transformer models?\nAnswer:",
+ " It ignores spatial features to save computation."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.060897827148438,
+ false
+ ]
+ ],
+ [
+ [
+ -19.728771209716797,
+ false
+ ]
+ ],
+ [
+ [
+ -23.50119400024414,
+ false
+ ]
+ ],
+ [
+ [
+ -40.33341979980469,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.060897827148438,
+ false
+ ],
+ [
+ -19.728771209716797,
+ false
+ ],
+ [
+ -23.50119400024414,
+ false
+ ],
+ [
+ -40.33341979980469,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d14123ec3f8bb1e10aa06ff5803bfe8a8f2865a7e274a4e0332261e5e4f2c5f0",
+ "prompt_hash": "4b86acb7e70681cd4346ecce9c8ae6978cca29f5f4293186c1c15a10a933061e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "What are the three core components of the MambaHSI encoder?",
+ "choices": [
+ "Convolutional block, spectral transformer, normalization layer",
+ "Spectral Mamba block, residual learning block, loss function",
+ "Spatial Mamba block, spectral Mamba block, spatial-spectral fusion module",
+ "Embedding layer, classification head, dropout block"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What are the three core components of the MambaHSI encoder?\nAnswer:",
+ " Convolutional block, spectral transformer, normalization layer"
+ ],
+ [
+ "Question:What are the three core components of the MambaHSI encoder?\nAnswer:",
+ " Spectral Mamba block, residual learning block, loss function"
+ ],
+ [
+ "Question:What are the three core components of the MambaHSI encoder?\nAnswer:",
+ " Spatial Mamba block, spectral Mamba block, spatial-spectral fusion module"
+ ],
+ [
+ "Question:What are the three core components of the MambaHSI encoder?\nAnswer:",
+ " Embedding layer, classification head, dropout block"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -34.9793701171875,
+ false
+ ]
+ ],
+ [
+ [
+ -41.64816665649414,
+ false
+ ]
+ ],
+ [
+ [
+ -31.879371643066406,
+ false
+ ]
+ ],
+ [
+ [
+ -37.53800964355469,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -34.9793701171875,
+ false
+ ],
+ [
+ -41.64816665649414,
+ false
+ ],
+ [
+ -31.879371643066406,
+ false
+ ],
+ [
+ -37.53800964355469,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4a50923d09b4ff0d230771ad164546c156529be98d7cc504b58f53010ce32086",
+ "prompt_hash": "bb33e867da7f83f6e54e7e6ab57cbcc4a685b9497075b9f6bb67fc487c7f7af6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "What is the purpose of the spatial-spectral fusion module in MambaHSI?",
+ "choices": [
+ "To apply dropout regularization across the spectral bands",
+ "To reduce spatial resolution for faster inference",
+ "To adaptively fuse the spatial and spectral information based on their importance",
+ "To convert hyperspectral images into RGB for classification"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of the spatial-spectral fusion module in MambaHSI?\nAnswer:",
+ " To apply dropout regularization across the spectral bands"
+ ],
+ [
+ "Question:What is the purpose of the spatial-spectral fusion module in MambaHSI?\nAnswer:",
+ " To reduce spatial resolution for faster inference"
+ ],
+ [
+ "Question:What is the purpose of the spatial-spectral fusion module in MambaHSI?\nAnswer:",
+ " To adaptively fuse the spatial and spectral information based on their importance"
+ ],
+ [
+ "Question:What is the purpose of the spatial-spectral fusion module in MambaHSI?\nAnswer:",
+ " To convert hyperspectral images into RGB for classification"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -39.88627624511719,
+ false
+ ]
+ ],
+ [
+ [
+ -23.449623107910156,
+ false
+ ]
+ ],
+ [
+ [
+ -24.270509719848633,
+ false
+ ]
+ ],
+ [
+ [
+ -33.8906135559082,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -39.88627624511719,
+ false
+ ],
+ [
+ -23.449623107910156,
+ false
+ ],
+ [
+ -24.270509719848633,
+ false
+ ],
+ [
+ -33.8906135559082,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d133d375fb6230f9b0602ad1df59198919b09e3b6d3fc6d82ce0c93e04cfc676",
+ "prompt_hash": "f9b6db19174384edcfb225554ab41f5a024edbaf13203dc62a2cb366c55f82c4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which dataset used in the experiments was acquired using a Headwall Nano-Hyperspec imaging sensor on a DJI Matrice 600 Pro UAV?",
+ "choices": [
+ "Pavia University",
+ "Houston",
+ "WHU-Hi-HanChuan",
+ "WHU-Hi-HongHu"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which dataset used in the experiments was acquired using a Headwall Nano-Hyperspec imaging sensor on a DJI Matrice 600 Pro UAV?\nAnswer:",
+ " Pavia University"
+ ],
+ [
+ "Question:Which dataset used in the experiments was acquired using a Headwall Nano-Hyperspec imaging sensor on a DJI Matrice 600 Pro UAV?\nAnswer:",
+ " Houston"
+ ],
+ [
+ "Question:Which dataset used in the experiments was acquired using a Headwall Nano-Hyperspec imaging sensor on a DJI Matrice 600 Pro UAV?\nAnswer:",
+ " WHU-Hi-HanChuan"
+ ],
+ [
+ "Question:Which dataset used in the experiments was acquired using a Headwall Nano-Hyperspec imaging sensor on a DJI Matrice 600 Pro UAV?\nAnswer:",
+ " WHU-Hi-HongHu"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.408138275146484,
+ false
+ ]
+ ],
+ [
+ [
+ -10.154462814331055,
+ false
+ ]
+ ],
+ [
+ [
+ -36.05073547363281,
+ false
+ ]
+ ],
+ [
+ [
+ -41.54401397705078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.408138275146484,
+ false
+ ],
+ [
+ -10.154462814331055,
+ false
+ ],
+ [
+ -36.05073547363281,
+ false
+ ],
+ [
+ -41.54401397705078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e2885bbce1d81fa6aab9a9a80d3d189bde323125c6c02015d225850009820d4c",
+ "prompt_hash": "946ca21eb0121687533e64a30df6b4138c9f817ed48c0d5c0f1d846ada337424",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "How many classes are included in the Houston hyperspectral dataset used in the experiments?",
+ "choices": [
+ "9",
+ "16",
+ "22",
+ "14"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many classes are included in the Houston hyperspectral dataset used in the experiments?\nAnswer:",
+ " 9"
+ ],
+ [
+ "Question:How many classes are included in the Houston hyperspectral dataset used in the experiments?\nAnswer:",
+ " 16"
+ ],
+ [
+ "Question:How many classes are included in the Houston hyperspectral dataset used in the experiments?\nAnswer:",
+ " 22"
+ ],
+ [
+ "Question:How many classes are included in the Houston hyperspectral dataset used in the experiments?\nAnswer:",
+ " 14"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.74687385559082,
+ false
+ ]
+ ],
+ [
+ [
+ -5.32486629486084,
+ false
+ ]
+ ],
+ [
+ [
+ -5.936315059661865,
+ false
+ ]
+ ],
+ [
+ [
+ -5.394577980041504,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.74687385559082,
+ false
+ ],
+ [
+ -5.32486629486084,
+ false
+ ],
+ [
+ -5.936315059661865,
+ false
+ ],
+ [
+ -5.394577980041504,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1838ae62bb0ff5951b7b7f3c1eba72e304cdf3ff32578d7c1f9669a1277d8422",
+ "prompt_hash": "f04139ad7bf7ffeb0eb8aa5ec4a9cdd207bda35e0da604aa82a145eb493c43c6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What is the total area covered by the DES Y6 Gold wide-area survey footprint?",
+ "choices": [
+ "Approximately 5000 square degrees",
+ "Approximately 7000 square degrees",
+ "Approximately 10000 square degrees",
+ "Approximately 3500 square degrees"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the total area covered by the DES Y6 Gold wide-area survey footprint?\nAnswer:",
+ " Approximately 5000 square degrees"
+ ],
+ [
+ "Question:What is the total area covered by the DES Y6 Gold wide-area survey footprint?\nAnswer:",
+ " Approximately 7000 square degrees"
+ ],
+ [
+ "Question:What is the total area covered by the DES Y6 Gold wide-area survey footprint?\nAnswer:",
+ " Approximately 10000 square degrees"
+ ],
+ [
+ "Question:What is the total area covered by the DES Y6 Gold wide-area survey footprint?\nAnswer:",
+ " Approximately 3500 square degrees"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.233139038085938,
+ false
+ ]
+ ],
+ [
+ [
+ -12.975166320800781,
+ false
+ ]
+ ],
+ [
+ [
+ -13.492626190185547,
+ false
+ ]
+ ],
+ [
+ [
+ -12.901947021484375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.233139038085938,
+ false
+ ],
+ [
+ -12.975166320800781,
+ false
+ ],
+ [
+ -13.492626190185547,
+ false
+ ],
+ [
+ -12.901947021484375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "760366bb1c0e2c5d0f1ba382b67ddbcf2a9bee94a3cdf7a390c2168007e141dd",
+ "prompt_hash": "1276376381c3a6685b55c9cfbb5cfb01cb4b34d3d78df37c762e9d5288d62dd4",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which magnitude correction coefficient is used for the 'g' band when correcting for interstellar extinction in DES Y6 Gold?",
+ "choices": [
+ "3.186",
+ "2.140",
+ "1.569",
+ "1.048"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which magnitude correction coefficient is used for the 'g' band when correcting for interstellar extinction in DES Y6 Gold?\nAnswer:",
+ " 3.186"
+ ],
+ [
+ "Question:Which magnitude correction coefficient is used for the 'g' band when correcting for interstellar extinction in DES Y6 Gold?\nAnswer:",
+ " 2.140"
+ ],
+ [
+ "Question:Which magnitude correction coefficient is used for the 'g' band when correcting for interstellar extinction in DES Y6 Gold?\nAnswer:",
+ " 1.569"
+ ],
+ [
+ "Question:Which magnitude correction coefficient is used for the 'g' band when correcting for interstellar extinction in DES Y6 Gold?\nAnswer:",
+ " 1.048"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.510847091674805,
+ false
+ ]
+ ],
+ [
+ [
+ -12.662933349609375,
+ false
+ ]
+ ],
+ [
+ [
+ -12.489203453063965,
+ false
+ ]
+ ],
+ [
+ [
+ -11.289423942565918,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.510847091674805,
+ false
+ ],
+ [
+ -12.662933349609375,
+ false
+ ],
+ [
+ -12.489203453063965,
+ false
+ ],
+ [
+ -11.289423942565918,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fb823d5546e6d00cd71d5cf3002eb41d44998ad3f4f9b222a7a5e8bdf61c4b99",
+ "prompt_hash": "aceccefb48255c4b8fe744cf7e506e79afcac7d34251224bfc68a004861928f5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "What modeling method is used for PSF photometry in the DES Y6 Gold \\u0003fitvd algorithm?",
+ "choices": [
+ "Zero-size point-source model",
+ "Extended Sersic profile with variable index",
+ "Gaussian Mixture Model with ten components",
+ "Power-law profile with variable slope"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What modeling method is used for PSF photometry in the DES Y6 Gold \\u0003fitvd algorithm?\nAnswer:",
+ " Zero-size point-source model"
+ ],
+ [
+ "Question:What modeling method is used for PSF photometry in the DES Y6 Gold \\u0003fitvd algorithm?\nAnswer:",
+ " Extended Sersic profile with variable index"
+ ],
+ [
+ "Question:What modeling method is used for PSF photometry in the DES Y6 Gold \\u0003fitvd algorithm?\nAnswer:",
+ " Gaussian Mixture Model with ten components"
+ ],
+ [
+ "Question:What modeling method is used for PSF photometry in the DES Y6 Gold \\u0003fitvd algorithm?\nAnswer:",
+ " Power-law profile with variable slope"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.418212890625,
+ false
+ ]
+ ],
+ [
+ [
+ -34.0587043762207,
+ false
+ ]
+ ],
+ [
+ [
+ -24.72544288635254,
+ false
+ ]
+ ],
+ [
+ [
+ -25.261842727661133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.418212890625,
+ false
+ ],
+ [
+ -34.0587043762207,
+ false
+ ],
+ [
+ -24.72544288635254,
+ false
+ ],
+ [
+ -25.261842727661133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6211b34489eb7b1c5bd5f5bb696bf2a489773e69dd4526077ec1ff7f3b85f80e",
+ "prompt_hash": "7d8efd9da91b78776afe4f53f803b44181d00ba7eafc228ca3e91925ae02037b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "Which component is used as the photometric calibration reference star in DES Y6 Gold?",
+ "choices": [
+ "Hubble Space Telescope CalSpec standard star C26202",
+ "Gaia DR3 standard star G18392",
+ "SDSS Stripe 82 reference star SDSSJ014",
+ "VISTA Hemisphere Survey star VHS001"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which component is used as the photometric calibration reference star in DES Y6 Gold?\nAnswer:",
+ " Hubble Space Telescope CalSpec standard star C26202"
+ ],
+ [
+ "Question:Which component is used as the photometric calibration reference star in DES Y6 Gold?\nAnswer:",
+ " Gaia DR3 standard star G18392"
+ ],
+ [
+ "Question:Which component is used as the photometric calibration reference star in DES Y6 Gold?\nAnswer:",
+ " SDSS Stripe 82 reference star SDSSJ014"
+ ],
+ [
+ "Question:Which component is used as the photometric calibration reference star in DES Y6 Gold?\nAnswer:",
+ " VISTA Hemisphere Survey star VHS001"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -53.36168670654297,
+ false
+ ]
+ ],
+ [
+ [
+ -27.988567352294922,
+ false
+ ]
+ ],
+ [
+ [
+ -37.09762191772461,
+ false
+ ]
+ ],
+ [
+ [
+ -36.82593536376953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -53.36168670654297,
+ false
+ ],
+ [
+ -27.988567352294922,
+ false
+ ],
+ [
+ -37.09762191772461,
+ false
+ ],
+ [
+ -36.82593536376953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aae765a7d4300bc0b98db398dececf7d045e8a52d324494c18b70af0fc524d02",
+ "prompt_hash": "90fa208f136060df152c4e678c37834c4714a6b2624d6526562b9974edae8487",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "What is the total number of DECam exposures included in DES DR2 and Y6 Gold?",
+ "choices": [
+ "72,217",
+ "84,932",
+ "45,318",
+ "60,104"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the total number of DECam exposures included in DES DR2 and Y6 Gold?\nAnswer:",
+ " 72,217"
+ ],
+ [
+ "Question:What is the total number of DECam exposures included in DES DR2 and Y6 Gold?\nAnswer:",
+ " 84,932"
+ ],
+ [
+ "Question:What is the total number of DECam exposures included in DES DR2 and Y6 Gold?\nAnswer:",
+ " 45,318"
+ ],
+ [
+ "Question:What is the total number of DECam exposures included in DES DR2 and Y6 Gold?\nAnswer:",
+ " 60,104"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.384516716003418,
+ false
+ ]
+ ],
+ [
+ [
+ -15.420585632324219,
+ false
+ ]
+ ],
+ [
+ [
+ -14.602078437805176,
+ false
+ ]
+ ],
+ [
+ [
+ -14.678556442260742,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.384516716003418,
+ false
+ ],
+ [
+ -15.420585632324219,
+ false
+ ],
+ [
+ -14.602078437805176,
+ false
+ ],
+ [
+ -14.678556442260742,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4d1f785b545ac35d5410aa223b3aae264bc492e4fd1ee0b3e0d6517afc30f1a2",
+ "prompt_hash": "1e570ae93663e6215b95ced6fad37af432a866317248a803a19c9f0da6c06190",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the name of the benchmark proposed to evaluate multimodal multi-step reasoning tasks?",
+ "choices": [
+ "VQA-Chain",
+ "VLM-Reason",
+ "VRC-Bench",
+ "MultiStepQA"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the name of the benchmark proposed to evaluate multimodal multi-step reasoning tasks?\nAnswer:",
+ " VQA-Chain"
+ ],
+ [
+ "Question:What is the name of the benchmark proposed to evaluate multimodal multi-step reasoning tasks?\nAnswer:",
+ " VLM-Reason"
+ ],
+ [
+ "Question:What is the name of the benchmark proposed to evaluate multimodal multi-step reasoning tasks?\nAnswer:",
+ " VRC-Bench"
+ ],
+ [
+ "Question:What is the name of the benchmark proposed to evaluate multimodal multi-step reasoning tasks?\nAnswer:",
+ " MultiStepQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.848678588867188,
+ false
+ ]
+ ],
+ [
+ [
+ -13.863715171813965,
+ false
+ ]
+ ],
+ [
+ [
+ -17.058414459228516,
+ false
+ ]
+ ],
+ [
+ [
+ -6.643422603607178,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.848678588867188,
+ false
+ ],
+ [
+ -13.863715171813965,
+ false
+ ],
+ [
+ -17.058414459228516,
+ false
+ ],
+ [
+ -6.643422603607178,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f49d9074782d55a4cb7470bafb5c6fd059a2e0b5d3debacab64bae5906b61854",
+ "prompt_hash": "4a5c0bd5a79a3f897b9cb74ebb8744267e39db166fdbb8d41e60a4fa71925a5d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "How many manually verified reasoning steps are included in VRC-Bench?",
+ "choices": [
+ "3,500",
+ "4,173",
+ "5,200",
+ "3,998"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many manually verified reasoning steps are included in VRC-Bench?\nAnswer:",
+ " 3,500"
+ ],
+ [
+ "Question:How many manually verified reasoning steps are included in VRC-Bench?\nAnswer:",
+ " 4,173"
+ ],
+ [
+ "Question:How many manually verified reasoning steps are included in VRC-Bench?\nAnswer:",
+ " 5,200"
+ ],
+ [
+ "Question:How many manually verified reasoning steps are included in VRC-Bench?\nAnswer:",
+ " 3,998"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.997629165649414,
+ false
+ ]
+ ],
+ [
+ [
+ -15.097672462463379,
+ false
+ ]
+ ],
+ [
+ [
+ -13.911409378051758,
+ false
+ ]
+ ],
+ [
+ [
+ -15.563308715820312,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.997629165649414,
+ false
+ ],
+ [
+ -15.097672462463379,
+ false
+ ],
+ [
+ -13.911409378051758,
+ false
+ ],
+ [
+ -15.563308715820312,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ab029bc7ad364193651f7eafa1a76ce79ef4169c5ca128f8c50ee4c768f63ed5",
+ "prompt_hash": "aaf9e4ab60af7e986dec67e442603b09898c067e4dc1a58a24f24fd83579e7f2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "What is the base model used for training LlamaV-o1?",
+ "choices": [
+ "GPT-4o-mini",
+ "Llava-CoT",
+ "Llama-3.2-11B-Vision-Instruct",
+ "Gemini-1.5-Pro"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the base model used for training LlamaV-o1?\nAnswer:",
+ " GPT-4o-mini"
+ ],
+ [
+ "Question:What is the base model used for training LlamaV-o1?\nAnswer:",
+ " Llava-CoT"
+ ],
+ [
+ "Question:What is the base model used for training LlamaV-o1?\nAnswer:",
+ " Llama-3.2-11B-Vision-Instruct"
+ ],
+ [
+ "Question:What is the base model used for training LlamaV-o1?\nAnswer:",
+ " Gemini-1.5-Pro"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.453899383544922,
+ false
+ ]
+ ],
+ [
+ [
+ -22.55254554748535,
+ false
+ ]
+ ],
+ [
+ [
+ -40.223777770996094,
+ false
+ ]
+ ],
+ [
+ [
+ -11.26479434967041,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.453899383544922,
+ false
+ ],
+ [
+ -22.55254554748535,
+ false
+ ],
+ [
+ -40.223777770996094,
+ false
+ ],
+ [
+ -11.26479434967041,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3794d4c9d0dcc848c6bab66c1636d1cd1ce54b5faa82b7d2367ac43f2f2c0e05",
+ "prompt_hash": "eee8678d456145a2b8c216698eb4fb00373a3903482962a866cb58ababc6b09a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "Which metric checks for irrelevant or fabricated reasoning steps?",
+ "choices": [
+ "Informativeness-Step",
+ "Hallucination",
+ "Semantic Coverage",
+ "Reasoning Alignment"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which metric checks for irrelevant or fabricated reasoning steps?\nAnswer:",
+ " Informativeness-Step"
+ ],
+ [
+ "Question:Which metric checks for irrelevant or fabricated reasoning steps?\nAnswer:",
+ " Hallucination"
+ ],
+ [
+ "Question:Which metric checks for irrelevant or fabricated reasoning steps?\nAnswer:",
+ " Semantic Coverage"
+ ],
+ [
+ "Question:Which metric checks for irrelevant or fabricated reasoning steps?\nAnswer:",
+ " Reasoning Alignment"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.075510025024414,
+ false
+ ]
+ ],
+ [
+ [
+ -9.403883934020996,
+ false
+ ]
+ ],
+ [
+ [
+ -17.089900970458984,
+ false
+ ]
+ ],
+ [
+ [
+ -13.730018615722656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.075510025024414,
+ false
+ ],
+ [
+ -9.403883934020996,
+ false
+ ],
+ [
+ -17.089900970458984,
+ false
+ ],
+ [
+ -13.730018615722656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "208558ab3d63cf67ef2b796ee97528ff8bd9af26bb61f291dadc8607768c025e",
+ "prompt_hash": "38553bafe3fe4bbd2d61b2e2bfc7c60d6803c445de407b64e062033f2c8cbf4c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "What type of learning strategy is used to train LlamaV-o1 progressively from simple to complex tasks?",
+ "choices": [
+ "Reinforcement Learning",
+ "Contrastive Learning",
+ "Curriculum Learning",
+ "Unsupervised Pretraining"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of learning strategy is used to train LlamaV-o1 progressively from simple to complex tasks?\nAnswer:",
+ " Reinforcement Learning"
+ ],
+ [
+ "Question:What type of learning strategy is used to train LlamaV-o1 progressively from simple to complex tasks?\nAnswer:",
+ " Contrastive Learning"
+ ],
+ [
+ "Question:What type of learning strategy is used to train LlamaV-o1 progressively from simple to complex tasks?\nAnswer:",
+ " Curriculum Learning"
+ ],
+ [
+ "Question:What type of learning strategy is used to train LlamaV-o1 progressively from simple to complex tasks?\nAnswer:",
+ " Unsupervised Pretraining"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.469661235809326,
+ false
+ ]
+ ],
+ [
+ [
+ -9.512903213500977,
+ false
+ ]
+ ],
+ [
+ [
+ -9.978853225708008,
+ false
+ ]
+ ],
+ [
+ [
+ -17.42882537841797,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.469661235809326,
+ false
+ ],
+ [
+ -9.512903213500977,
+ false
+ ],
+ [
+ -9.978853225708008,
+ false
+ ],
+ [
+ -17.42882537841797,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cc742e6917db8a54e9e779f37121f0dd4a291bac16e92b3d504ad95b69bb36cd",
+ "prompt_hash": "83742b8f079b8e3873d047b3d288f0cc351323444b85ee9e14c69e1436287314",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "Which parameterization type is commonly used for image generation in diffusion models?",
+ "choices": [
+ "A. x₀-prediction",
+ "B. ε-prediction",
+ "C. v-prediction",
+ "D. zₜ-prediction"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which parameterization type is commonly used for image generation in diffusion models?\nAnswer:",
+ " A. x₀-prediction"
+ ],
+ [
+ "Question:Which parameterization type is commonly used for image generation in diffusion models?\nAnswer:",
+ " B. ε-prediction"
+ ],
+ [
+ "Question:Which parameterization type is commonly used for image generation in diffusion models?\nAnswer:",
+ " C. v-prediction"
+ ],
+ [
+ "Question:Which parameterization type is commonly used for image generation in diffusion models?\nAnswer:",
+ " D. zₜ-prediction"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -40.44757080078125,
+ false
+ ]
+ ],
+ [
+ [
+ -33.222816467285156,
+ false
+ ]
+ ],
+ [
+ [
+ -27.685667037963867,
+ false
+ ]
+ ],
+ [
+ [
+ -49.870819091796875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -40.44757080078125,
+ false
+ ],
+ [
+ -33.222816467285156,
+ false
+ ],
+ [
+ -27.685667037963867,
+ false
+ ],
+ [
+ -49.870819091796875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bdcb2a5306cac39bfd15c10f8bdfcd3eb0e3235eded767ddec9791d1ead52847",
+ "prompt_hash": "5c780888e8ff88fecc3944fcbca387d3da2260d994c71a1e74dd526b8fadb85b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "How many training samples does Lotus use to achieve its reported performance?",
+ "choices": [
+ "A. 59K",
+ "B. 1.2M",
+ "C. 250K",
+ "D. 62.6M"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many training samples does Lotus use to achieve its reported performance?\nAnswer:",
+ " A. 59K"
+ ],
+ [
+ "Question:How many training samples does Lotus use to achieve its reported performance?\nAnswer:",
+ " B. 1.2M"
+ ],
+ [
+ "Question:How many training samples does Lotus use to achieve its reported performance?\nAnswer:",
+ " C. 250K"
+ ],
+ [
+ "Question:How many training samples does Lotus use to achieve its reported performance?\nAnswer:",
+ " D. 62.6M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.41183853149414,
+ false
+ ]
+ ],
+ [
+ [
+ -24.378026962280273,
+ false
+ ]
+ ],
+ [
+ [
+ -22.16771125793457,
+ false
+ ]
+ ],
+ [
+ [
+ -32.99885559082031,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.41183853149414,
+ false
+ ],
+ [
+ -24.378026962280273,
+ false
+ ],
+ [
+ -22.16771125793457,
+ false
+ ],
+ [
+ -32.99885559082031,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "88ff9460fbcea5468e805f29dea11ddcf9ef68bf5e10dda39ddea33508d5d380",
+ "prompt_hash": "844a065d7c38f0c7413afe8111feef8efd06cc9c9d71f6bde03819e7d54b6473",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "What type of prediction is used in the discriminative version of Lotus (Lotus-D)?",
+ "choices": [
+ "A. Uses ε-prediction with noise",
+ "B. Uses x₀-prediction without noise",
+ "C. Uses v-prediction with noise",
+ "D. Uses latent-space image conditioning only"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of prediction is used in the discriminative version of Lotus (Lotus-D)?\nAnswer:",
+ " A. Uses ε-prediction with noise"
+ ],
+ [
+ "Question:What type of prediction is used in the discriminative version of Lotus (Lotus-D)?\nAnswer:",
+ " B. Uses x₀-prediction without noise"
+ ],
+ [
+ "Question:What type of prediction is used in the discriminative version of Lotus (Lotus-D)?\nAnswer:",
+ " C. Uses v-prediction with noise"
+ ],
+ [
+ "Question:What type of prediction is used in the discriminative version of Lotus (Lotus-D)?\nAnswer:",
+ " D. Uses latent-space image conditioning only"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -48.533790588378906,
+ false
+ ]
+ ],
+ [
+ [
+ -68.318603515625,
+ false
+ ]
+ ],
+ [
+ [
+ -48.11347198486328,
+ false
+ ]
+ ],
+ [
+ [
+ -51.81948471069336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -48.533790588378906,
+ false
+ ],
+ [
+ -68.318603515625,
+ false
+ ],
+ [
+ -48.11347198486328,
+ false
+ ],
+ [
+ -51.81948471069336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dd9d203f53f3b8e692b1909ce6796379f9b1791e6dd80cbea978d40fc469027b",
+ "prompt_hash": "edcd9a17425e90b0a319a6e586bc5db38481b7a415ee9ec0a3551484f4492a30",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "What is the primary purpose of the detail preserver module in Lotus?",
+ "choices": [
+ "A. To improve memory efficiency during training",
+ "B. To enable dual-modality input",
+ "C. To preserve fine-grained details in dense annotations",
+ "D. To increase the number of diffusion steps"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary purpose of the detail preserver module in Lotus?\nAnswer:",
+ " A. To improve memory efficiency during training"
+ ],
+ [
+ "Question:What is the primary purpose of the detail preserver module in Lotus?\nAnswer:",
+ " B. To enable dual-modality input"
+ ],
+ [
+ "Question:What is the primary purpose of the detail preserver module in Lotus?\nAnswer:",
+ " C. To preserve fine-grained details in dense annotations"
+ ],
+ [
+ "Question:What is the primary purpose of the detail preserver module in Lotus?\nAnswer:",
+ " D. To increase the number of diffusion steps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.969858169555664,
+ false
+ ]
+ ],
+ [
+ [
+ -36.691349029541016,
+ false
+ ]
+ ],
+ [
+ [
+ -41.21318435668945,
+ false
+ ]
+ ],
+ [
+ [
+ -36.86516571044922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.969858169555664,
+ false
+ ],
+ [
+ -36.691349029541016,
+ false
+ ],
+ [
+ -41.21318435668945,
+ false
+ ],
+ [
+ -36.86516571044922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4a7ae6d28946cceb57aa90a9c6cc416901faaa37a1b16dcdb7fa7287614dfdfd",
+ "prompt_hash": "a1d8f4d91b8b49a00e7e4671a1f365b13ae751c0ce0344060659f55ddbd7b4d9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "What happens when ε-prediction is used at the initial denoising steps?",
+ "choices": [
+ "A. The model produces less variance and more stable predictions",
+ "B. The predicted variance is amplified and propagated",
+ "C. The model skips early steps to reduce variance",
+ "D. The denoising step converges faster"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What happens when ε-prediction is used at the initial denoising steps?\nAnswer:",
+ " A. The model produces less variance and more stable predictions"
+ ],
+ [
+ "Question:What happens when ε-prediction is used at the initial denoising steps?\nAnswer:",
+ " B. The predicted variance is amplified and propagated"
+ ],
+ [
+ "Question:What happens when ε-prediction is used at the initial denoising steps?\nAnswer:",
+ " C. The model skips early steps to reduce variance"
+ ],
+ [
+ "Question:What happens when ε-prediction is used at the initial denoising steps?\nAnswer:",
+ " D. The denoising step converges faster"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -38.00743103027344,
+ false
+ ]
+ ],
+ [
+ [
+ -42.99990463256836,
+ false
+ ]
+ ],
+ [
+ [
+ -40.484310150146484,
+ false
+ ]
+ ],
+ [
+ [
+ -27.896730422973633,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -38.00743103027344,
+ false
+ ],
+ [
+ -42.99990463256836,
+ false
+ ],
+ [
+ -40.484310150146484,
+ false
+ ],
+ [
+ -27.896730422973633,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3786df5cda14a24d6fdf6e60196d1064ffee000819bd029a45cc8d463520b3d9",
+ "prompt_hash": "d0ba1a9675287af2ea58b7c36baa8d8b2ae830046e092fe8f8b835e59119bf37",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the default maximum tree depth used in the self-evolution rounds for math problem solving?",
+ "choices": [
+ "12",
+ "16",
+ "20",
+ "24"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the default maximum tree depth used in the self-evolution rounds for math problem solving?\nAnswer:",
+ " 12"
+ ],
+ [
+ "Question:What is the default maximum tree depth used in the self-evolution rounds for math problem solving?\nAnswer:",
+ " 16"
+ ],
+ [
+ "Question:What is the default maximum tree depth used in the self-evolution rounds for math problem solving?\nAnswer:",
+ " 20"
+ ],
+ [
+ "Question:What is the default maximum tree depth used in the self-evolution rounds for math problem solving?\nAnswer:",
+ " 24"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.0869550704956055,
+ false
+ ]
+ ],
+ [
+ [
+ -6.953391075134277,
+ false
+ ]
+ ],
+ [
+ [
+ -5.210151672363281,
+ false
+ ]
+ ],
+ [
+ [
+ -7.983536243438721,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.0869550704956055,
+ false
+ ],
+ [
+ -6.953391075134277,
+ false
+ ],
+ [
+ -5.210151672363281,
+ false
+ ],
+ [
+ -7.983536243438721,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "800c7f0b32cd7ad8b229bc3280e1de23af72e70bb58dfd1a9409a0dad352f3e1",
+ "prompt_hash": "8e56d42f1452ec9c6b466ea3808d628d7487ca361c30e83e8777908118e35346",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "What learning rate is used for fine-tuning Qwen models in this study?",
+ "choices": [
+ "5e-6",
+ "6e-6",
+ "7e-6",
+ "1e-5"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What learning rate is used for fine-tuning Qwen models in this study?\nAnswer:",
+ " 5e-6"
+ ],
+ [
+ "Question:What learning rate is used for fine-tuning Qwen models in this study?\nAnswer:",
+ " 6e-6"
+ ],
+ [
+ "Question:What learning rate is used for fine-tuning Qwen models in this study?\nAnswer:",
+ " 7e-6"
+ ],
+ [
+ "Question:What learning rate is used for fine-tuning Qwen models in this study?\nAnswer:",
+ " 1e-5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.968042850494385,
+ false
+ ]
+ ],
+ [
+ [
+ -10.571170806884766,
+ false
+ ]
+ ],
+ [
+ [
+ -10.910438537597656,
+ false
+ ]
+ ],
+ [
+ [
+ -6.601953506469727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.968042850494385,
+ false
+ ],
+ [
+ -10.571170806884766,
+ false
+ ],
+ [
+ -10.910438537597656,
+ false
+ ],
+ [
+ -6.601953506469727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "54afa871339ebb9b9c3054b084eb9c1363694a2ef93b2d3668a4005217c21c11",
+ "prompt_hash": "65d5f04256731d866019a2a49ee95c22d0fd40b44af6335b4e9f2d22b0da4791",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "Which reward model uses pairwise ranking loss in its training?",
+ "choices": [
+ "PPM",
+ "PQM",
+ "ORM",
+ "SLM"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which reward model uses pairwise ranking loss in its training?\nAnswer:",
+ " PPM"
+ ],
+ [
+ "Question:Which reward model uses pairwise ranking loss in its training?\nAnswer:",
+ " PQM"
+ ],
+ [
+ "Question:Which reward model uses pairwise ranking loss in its training?\nAnswer:",
+ " ORM"
+ ],
+ [
+ "Question:Which reward model uses pairwise ranking loss in its training?\nAnswer:",
+ " SLM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.611196517944336,
+ false
+ ]
+ ],
+ [
+ [
+ -15.033802032470703,
+ false
+ ]
+ ],
+ [
+ [
+ -14.595401763916016,
+ false
+ ]
+ ],
+ [
+ [
+ -13.409589767456055,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.611196517944336,
+ false
+ ],
+ [
+ -15.033802032470703,
+ false
+ ],
+ [
+ -14.595401763916016,
+ false
+ ],
+ [
+ -13.409589767456055,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "49c8a7815d94169375ffb8484392b18bbdfa3b9405ce36f0aee8fe96010acfb9",
+ "prompt_hash": "49dde6a7ddf4c265f80016da4ff826649fbb6d58a6a1303de1db86e62f3314ec",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "What was the total GPU setup for the bootstrap round using DeepSeek-Coder-v2-Instruct?",
+ "choices": [
+ "5 nodes of 4×80GB",
+ "10 nodes of 8×80GB",
+ "15 nodes of 4×40GB",
+ "12 nodes of 8×40GB"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What was the total GPU setup for the bootstrap round using DeepSeek-Coder-v2-Instruct?\nAnswer:",
+ " 5 nodes of 4×80GB"
+ ],
+ [
+ "Question:What was the total GPU setup for the bootstrap round using DeepSeek-Coder-v2-Instruct?\nAnswer:",
+ " 10 nodes of 8×80GB"
+ ],
+ [
+ "Question:What was the total GPU setup for the bootstrap round using DeepSeek-Coder-v2-Instruct?\nAnswer:",
+ " 15 nodes of 4×40GB"
+ ],
+ [
+ "Question:What was the total GPU setup for the bootstrap round using DeepSeek-Coder-v2-Instruct?\nAnswer:",
+ " 12 nodes of 8×40GB"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.78156089782715,
+ false
+ ]
+ ],
+ [
+ [
+ -29.15294075012207,
+ false
+ ]
+ ],
+ [
+ [
+ -32.71136474609375,
+ false
+ ]
+ ],
+ [
+ [
+ -29.856426239013672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.78156089782715,
+ false
+ ],
+ [
+ -29.15294075012207,
+ false
+ ],
+ [
+ -32.71136474609375,
+ false
+ ],
+ [
+ -29.856426239013672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4d6cca403c78982916e8fcbbd83f5e540b683e23b4a63fe462e5d3ecd944277b",
+ "prompt_hash": "807ec96a1d77362088976d759e387ea45c93d3c3811b14b0f08df4cbe0a729b1",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "Which benchmark required the highest average number of tokens during inference, as shown in the paper?",
+ "choices": [
+ "AIME 2024",
+ "MATH",
+ "Olympiad Bench",
+ "AMC 2023"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark required the highest average number of tokens during inference, as shown in the paper?\nAnswer:",
+ " AIME 2024"
+ ],
+ [
+ "Question:Which benchmark required the highest average number of tokens during inference, as shown in the paper?\nAnswer:",
+ " MATH"
+ ],
+ [
+ "Question:Which benchmark required the highest average number of tokens during inference, as shown in the paper?\nAnswer:",
+ " Olympiad Bench"
+ ],
+ [
+ "Question:Which benchmark required the highest average number of tokens during inference, as shown in the paper?\nAnswer:",
+ " AMC 2023"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.254226684570312,
+ false
+ ]
+ ],
+ [
+ [
+ -9.348733901977539,
+ false
+ ]
+ ],
+ [
+ [
+ -22.08643341064453,
+ false
+ ]
+ ],
+ [
+ [
+ -21.39059829711914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.254226684570312,
+ false
+ ],
+ [
+ -9.348733901977539,
+ false
+ ],
+ [
+ -22.08643341064453,
+ false
+ ],
+ [
+ -21.39059829711914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f8bf812cf01b159edc3acbd279319be5e5b3446f4f103ceeb836283b365baab7",
+ "prompt_hash": "76cb13e84f4c67a72a12d0297e71d697f0ac713ebf7dc305bd7e46b85a436ce0",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What benchmark did the paper identify as being mostly solved by models like GPT-4o and Claude?",
+ "choices": [
+ "GSM8k",
+ "Hendrycks MATH Levels 1-3",
+ "Omni-MATH",
+ "HARP"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What benchmark did the paper identify as being mostly solved by models like GPT-4o and Claude?\nAnswer:",
+ " GSM8k"
+ ],
+ [
+ "Question:What benchmark did the paper identify as being mostly solved by models like GPT-4o and Claude?\nAnswer:",
+ " Hendrycks MATH Levels 1-3"
+ ],
+ [
+ "Question:What benchmark did the paper identify as being mostly solved by models like GPT-4o and Claude?\nAnswer:",
+ " Omni-MATH"
+ ],
+ [
+ "Question:What benchmark did the paper identify as being mostly solved by models like GPT-4o and Claude?\nAnswer:",
+ " HARP"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.384391784667969,
+ false
+ ]
+ ],
+ [
+ [
+ -42.24859619140625,
+ false
+ ]
+ ],
+ [
+ [
+ -26.777854919433594,
+ false
+ ]
+ ],
+ [
+ [
+ -15.270162582397461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.384391784667969,
+ false
+ ],
+ [
+ -42.24859619140625,
+ false
+ ],
+ [
+ -26.777854919433594,
+ false
+ ],
+ [
+ -15.270162582397461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b7607a1f58dd0ff61eaad155541032acca0fe44a2832e5f5ec691925e40af001",
+ "prompt_hash": "fcf8808346cefa46360238ef422ec517fb052d71605a6a782284cf9a13a5b97f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "What concept is introduced as a generalization of Chain-of-Thought for modeling latent reasoning?",
+ "choices": [
+ "System 2 CoT",
+ "Hierarchical Prompting",
+ "Meta-CoT",
+ "Reflexive Reasoning"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What concept is introduced as a generalization of Chain-of-Thought for modeling latent reasoning?\nAnswer:",
+ " System 2 CoT"
+ ],
+ [
+ "Question:What concept is introduced as a generalization of Chain-of-Thought for modeling latent reasoning?\nAnswer:",
+ " Hierarchical Prompting"
+ ],
+ [
+ "Question:What concept is introduced as a generalization of Chain-of-Thought for modeling latent reasoning?\nAnswer:",
+ " Meta-CoT"
+ ],
+ [
+ "Question:What concept is introduced as a generalization of Chain-of-Thought for modeling latent reasoning?\nAnswer:",
+ " Reflexive Reasoning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.35006332397461,
+ false
+ ]
+ ],
+ [
+ [
+ -14.312450408935547,
+ false
+ ]
+ ],
+ [
+ [
+ -14.631093978881836,
+ false
+ ]
+ ],
+ [
+ [
+ -10.159168243408203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.35006332397461,
+ false
+ ],
+ [
+ -14.312450408935547,
+ false
+ ],
+ [
+ -14.631093978881836,
+ false
+ ],
+ [
+ -10.159168243408203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d82135d6cba018718c9aeaaf8d337401289d8e5b8c3acc4289de4105f50dae27",
+ "prompt_hash": "36c13037c05d4f84c743d6955a6d83065962bef50e3857b2f40727e8f593883d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "Which theoretical framework does Meta-CoT draw inspiration from?",
+ "choices": [
+ "Dual-process theory from Cognitive Science",
+ "Theory of Computation",
+ "Game Theory",
+ "Information Theory"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which theoretical framework does Meta-CoT draw inspiration from?\nAnswer:",
+ " Dual-process theory from Cognitive Science"
+ ],
+ [
+ "Question:Which theoretical framework does Meta-CoT draw inspiration from?\nAnswer:",
+ " Theory of Computation"
+ ],
+ [
+ "Question:Which theoretical framework does Meta-CoT draw inspiration from?\nAnswer:",
+ " Game Theory"
+ ],
+ [
+ "Question:Which theoretical framework does Meta-CoT draw inspiration from?\nAnswer:",
+ " Information Theory"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.927265167236328,
+ false
+ ]
+ ],
+ [
+ [
+ -12.723213195800781,
+ false
+ ]
+ ],
+ [
+ [
+ -14.483650207519531,
+ false
+ ]
+ ],
+ [
+ [
+ -11.9994478225708,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.927265167236328,
+ false
+ ],
+ [
+ -12.723213195800781,
+ false
+ ],
+ [
+ -14.483650207519531,
+ false
+ ],
+ [
+ -11.9994478225708,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "22c72c05e6d3068fa31abb6d36600f1f8a22f6bba52be443b92256419c2368eb",
+ "prompt_hash": "75cd67bb7118c915a89d85a02cfb0fbd36a8cc06fd89f0da96b1a4531da8cfad",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "What is the reward value assigned to a correct solution in the MDP formulation described in the paper?",
+ "choices": [
+ "-1",
+ "0",
+ "0.5",
+ "1"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the reward value assigned to a correct solution in the MDP formulation described in the paper?\nAnswer:",
+ " -1"
+ ],
+ [
+ "Question:What is the reward value assigned to a correct solution in the MDP formulation described in the paper?\nAnswer:",
+ " 0"
+ ],
+ [
+ "Question:What is the reward value assigned to a correct solution in the MDP formulation described in the paper?\nAnswer:",
+ " 0.5"
+ ],
+ [
+ "Question:What is the reward value assigned to a correct solution in the MDP formulation described in the paper?\nAnswer:",
+ " 1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.114413261413574,
+ false
+ ]
+ ],
+ [
+ [
+ -3.182579517364502,
+ false
+ ]
+ ],
+ [
+ [
+ -6.184215068817139,
+ false
+ ]
+ ],
+ [
+ [
+ -2.7441458702087402,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.114413261413574,
+ false
+ ],
+ [
+ -3.182579517364502,
+ false
+ ],
+ [
+ -6.184215068817139,
+ false
+ ],
+ [
+ -2.7441458702087402,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "daccd138152fa3660e17d99531ed57ab16f78931bdd8ab5f9f484da037d258db",
+ "prompt_hash": "c73c924fbb4119640eacaaf7fc282e21f239c938ad8bd82d524b66bd340efd24",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "According to the scaling law hypothesis in the paper, what three components govern performance on complex reasoning tasks?",
+ "choices": [
+ "Model size, dataset quality, and pretraining loss",
+ "Training data, inference-time compute, and instruction tuning",
+ "Model size, training data (compute), and inference-time compute",
+ "Prompt quality, alignment tuning, and data diversity"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:According to the scaling law hypothesis in the paper, what three components govern performance on complex reasoning tasks?\nAnswer:",
+ " Model size, dataset quality, and pretraining loss"
+ ],
+ [
+ "Question:According to the scaling law hypothesis in the paper, what three components govern performance on complex reasoning tasks?\nAnswer:",
+ " Training data, inference-time compute, and instruction tuning"
+ ],
+ [
+ "Question:According to the scaling law hypothesis in the paper, what three components govern performance on complex reasoning tasks?\nAnswer:",
+ " Model size, training data (compute), and inference-time compute"
+ ],
+ [
+ "Question:According to the scaling law hypothesis in the paper, what three components govern performance on complex reasoning tasks?\nAnswer:",
+ " Prompt quality, alignment tuning, and data diversity"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.06525421142578,
+ false
+ ]
+ ],
+ [
+ [
+ -33.734771728515625,
+ false
+ ]
+ ],
+ [
+ [
+ -47.407806396484375,
+ false
+ ]
+ ],
+ [
+ [
+ -39.53954315185547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.06525421142578,
+ false
+ ],
+ [
+ -33.734771728515625,
+ false
+ ],
+ [
+ -47.407806396484375,
+ false
+ ],
+ [
+ -39.53954315185547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "159836df9c4f73cd3009a29ec4b8941010c8a5ebcfa4dff1037083f566dc7353",
+ "prompt_hash": "5d7b828f6fa4137c020ef5362dcc6a07274c8fa64e6abd14d5a70074996a69a5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What sampling resolution is used by PixArt-Σ in text-conditioned generation?",
+ "choices": [
+ "256",
+ "512",
+ "768",
+ "1024"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What sampling resolution is used by PixArt-Σ in text-conditioned generation?\nAnswer:",
+ " 256"
+ ],
+ [
+ "Question:What sampling resolution is used by PixArt-Σ in text-conditioned generation?\nAnswer:",
+ " 512"
+ ],
+ [
+ "Question:What sampling resolution is used by PixArt-Σ in text-conditioned generation?\nAnswer:",
+ " 768"
+ ],
+ [
+ "Question:What sampling resolution is used by PixArt-Σ in text-conditioned generation?\nAnswer:",
+ " 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.888120651245117,
+ false
+ ]
+ ],
+ [
+ [
+ -5.437291622161865,
+ false
+ ]
+ ],
+ [
+ [
+ -8.039185523986816,
+ false
+ ]
+ ],
+ [
+ [
+ -5.633706092834473,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.888120651245117,
+ false
+ ],
+ [
+ -5.437291622161865,
+ false
+ ],
+ [
+ -8.039185523986816,
+ false
+ ],
+ [
+ -5.633706092834473,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "97970f6d8f55383bf53b7ea1c2a7f6598e49b38490cb21931965128928d99680",
+ "prompt_hash": "8d1205772c1e4887ae735da29fb965b85694e64a5b3d66d7d983d2039f1e9d7b",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "What search algorithm uses a pivot noise and samples in its neighborhood without gradient information?",
+ "choices": [
+ "Random Search",
+ "Zero-Order Search",
+ "First-Order Search",
+ "Greedy Search"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What search algorithm uses a pivot noise and samples in its neighborhood without gradient information?\nAnswer:",
+ " Random Search"
+ ],
+ [
+ "Question:What search algorithm uses a pivot noise and samples in its neighborhood without gradient information?\nAnswer:",
+ " Zero-Order Search"
+ ],
+ [
+ "Question:What search algorithm uses a pivot noise and samples in its neighborhood without gradient information?\nAnswer:",
+ " First-Order Search"
+ ],
+ [
+ "Question:What search algorithm uses a pivot noise and samples in its neighborhood without gradient information?\nAnswer:",
+ " Greedy Search"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.393685340881348,
+ false
+ ]
+ ],
+ [
+ [
+ -16.32645606994629,
+ false
+ ]
+ ],
+ [
+ [
+ -17.336776733398438,
+ false
+ ]
+ ],
+ [
+ [
+ -9.410146713256836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.393685340881348,
+ false
+ ],
+ [
+ -16.32645606994629,
+ false
+ ],
+ [
+ -17.336776733398438,
+ false
+ ],
+ [
+ -9.410146713256836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "357a3b5c14062a599863360c517c0c36af21071861d1d30d8642005017926ee0",
+ "prompt_hash": "3a6b0cd595528e1087d58a3792b07f8603504acbe6876de34117950e5d8447f3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "Which verifier computes scores by comparing the cosine similarity of visual and text features, and rescales them?",
+ "choices": [
+ "Aesthetic",
+ "CLIPScore",
+ "ImageReward",
+ "Verifier Ensemble"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which verifier computes scores by comparing the cosine similarity of visual and text features, and rescales them?\nAnswer:",
+ " Aesthetic"
+ ],
+ [
+ "Question:Which verifier computes scores by comparing the cosine similarity of visual and text features, and rescales them?\nAnswer:",
+ " CLIPScore"
+ ],
+ [
+ "Question:Which verifier computes scores by comparing the cosine similarity of visual and text features, and rescales them?\nAnswer:",
+ " ImageReward"
+ ],
+ [
+ "Question:Which verifier computes scores by comparing the cosine similarity of visual and text features, and rescales them?\nAnswer:",
+ " Verifier Ensemble"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.820409774780273,
+ false
+ ]
+ ],
+ [
+ [
+ -9.78781795501709,
+ false
+ ]
+ ],
+ [
+ [
+ -13.850737571716309,
+ false
+ ]
+ ],
+ [
+ [
+ -17.897645950317383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.820409774780273,
+ false
+ ],
+ [
+ -9.78781795501709,
+ false
+ ],
+ [
+ -13.850737571716309,
+ false
+ ],
+ [
+ -17.897645950317383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d943fede6f4223c92f39b95e19cabe457a468968f4425bb33b07615bf0615b05",
+ "prompt_hash": "72550d78187553582db0694b36f24c2cf00fa605ba169bbb8f1383db3f4687bc",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "What is the main drawback of excessive search against a verifier like DINO or CLIP on ImageNet?",
+ "choices": [
+ "It increases diversity but lowers sample quality",
+ "It causes mode collapse and increases FID",
+ "It improves all metrics uniformly",
+ "It reduces the need for classifier-free guidance"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main drawback of excessive search against a verifier like DINO or CLIP on ImageNet?\nAnswer:",
+ " It increases diversity but lowers sample quality"
+ ],
+ [
+ "Question:What is the main drawback of excessive search against a verifier like DINO or CLIP on ImageNet?\nAnswer:",
+ " It causes mode collapse and increases FID"
+ ],
+ [
+ "Question:What is the main drawback of excessive search against a verifier like DINO or CLIP on ImageNet?\nAnswer:",
+ " It improves all metrics uniformly"
+ ],
+ [
+ "Question:What is the main drawback of excessive search against a verifier like DINO or CLIP on ImageNet?\nAnswer:",
+ " It reduces the need for classifier-free guidance"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.893138885498047,
+ false
+ ]
+ ],
+ [
+ [
+ -33.32884979248047,
+ false
+ ]
+ ],
+ [
+ [
+ -29.780744552612305,
+ false
+ ]
+ ],
+ [
+ [
+ -24.765605926513672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.893138885498047,
+ false
+ ],
+ [
+ -33.32884979248047,
+ false
+ ],
+ [
+ -29.780744552612305,
+ false
+ ],
+ [
+ -24.765605926513672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "66cb58bfc739e7209395b48f1f60b50c7cd403a232ed87e6b21afe306162572e",
+ "prompt_hash": "bffa743545eee44620a51d1937ccd6a7a38c78ee5e35b3afb4289e5623c9f710",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "Which method enables gradient descent on noise during sampling by reducing memory cost?",
+ "choices": [
+ "Random Search",
+ "Search Over Paths",
+ "Gradient Checkpointing",
+ "Classifier-Free Guidance"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which method enables gradient descent on noise during sampling by reducing memory cost?\nAnswer:",
+ " Random Search"
+ ],
+ [
+ "Question:Which method enables gradient descent on noise during sampling by reducing memory cost?\nAnswer:",
+ " Search Over Paths"
+ ],
+ [
+ "Question:Which method enables gradient descent on noise during sampling by reducing memory cost?\nAnswer:",
+ " Gradient Checkpointing"
+ ],
+ [
+ "Question:Which method enables gradient descent on noise during sampling by reducing memory cost?\nAnswer:",
+ " Classifier-Free Guidance"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.641936302185059,
+ false
+ ]
+ ],
+ [
+ [
+ -25.17833709716797,
+ false
+ ]
+ ],
+ [
+ [
+ -12.970060348510742,
+ false
+ ]
+ ],
+ [
+ [
+ -15.819764137268066,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.641936302185059,
+ false
+ ],
+ [
+ -25.17833709716797,
+ false
+ ],
+ [
+ -12.970060348510742,
+ false
+ ],
+ [
+ -15.819764137268066,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ccb6fb769cd18ca7b53dae771a5727a281fe06ce1d2f430a267405324a0f9c91",
+ "prompt_hash": "2e1663f5c49e461573230553cb5b952dc9680ce3d0736bd8847c48a1ef72c907",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "Which model achieves 2,029 Elo rating on Codeforces, outperforming 96.3% of human participants?",
+ "choices": [
+ "OpenAI-o1-1217",
+ "DeepSeek-V3",
+ "DeepSeek-R1",
+ "Claude-Sonnet-3.5"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model achieves 2,029 Elo rating on Codeforces, outperforming 96.3% of human participants?\nAnswer:",
+ " OpenAI-o1-1217"
+ ],
+ [
+ "Question:Which model achieves 2,029 Elo rating on Codeforces, outperforming 96.3% of human participants?\nAnswer:",
+ " DeepSeek-V3"
+ ],
+ [
+ "Question:Which model achieves 2,029 Elo rating on Codeforces, outperforming 96.3% of human participants?\nAnswer:",
+ " DeepSeek-R1"
+ ],
+ [
+ "Question:Which model achieves 2,029 Elo rating on Codeforces, outperforming 96.3% of human participants?\nAnswer:",
+ " Claude-Sonnet-3.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -41.88161849975586,
+ false
+ ]
+ ],
+ [
+ [
+ -18.81478500366211,
+ false
+ ]
+ ],
+ [
+ [
+ -25.116798400878906,
+ false
+ ]
+ ],
+ [
+ [
+ -23.355180740356445,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -41.88161849975586,
+ false
+ ],
+ [
+ -18.81478500366211,
+ false
+ ],
+ [
+ -25.116798400878906,
+ false
+ ],
+ [
+ -23.355180740356445,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "12f635897625f78e42722d6e00b292a1329bb5992e8237414d1c800e2c747446",
+ "prompt_hash": "dc10c75cd76d40ab92ce60278ccb889c7f3c23e805ff127830e5a6d7a91352c5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "What base model is used to develop DeepSeek-R1?",
+ "choices": [
+ "Qwen2.5-32B",
+ "DeepSeek-V3-Base",
+ "GPT-4o",
+ "LLaMA-3"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What base model is used to develop DeepSeek-R1?\nAnswer:",
+ " Qwen2.5-32B"
+ ],
+ [
+ "Question:What base model is used to develop DeepSeek-R1?\nAnswer:",
+ " DeepSeek-V3-Base"
+ ],
+ [
+ "Question:What base model is used to develop DeepSeek-R1?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:What base model is used to develop DeepSeek-R1?\nAnswer:",
+ " LLaMA-3"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.438631057739258,
+ false
+ ]
+ ],
+ [
+ [
+ -12.684707641601562,
+ false
+ ]
+ ],
+ [
+ [
+ -9.185466766357422,
+ false
+ ]
+ ],
+ [
+ [
+ -10.656867027282715,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.438631057739258,
+ false
+ ],
+ [
+ -12.684707641601562,
+ false
+ ],
+ [
+ -9.185466766357422,
+ false
+ ],
+ [
+ -10.656867027282715,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "830b53bf691311178035303428a1bc6422c64e1b305e3ccff7febbc55cc5a938",
+ "prompt_hash": "1c46372fd028656f0d94cd8b52585ed208858a18344c1e95f3855aec6cc90230",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "What method is used in DeepSeek-R1 to estimate the baseline without a critic model?",
+ "choices": [
+ "PPO",
+ "KL divergence",
+ "Group Relative Policy Optimization (GRPO)",
+ "Monte Carlo Tree Search (MCTS)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What method is used in DeepSeek-R1 to estimate the baseline without a critic model?\nAnswer:",
+ " PPO"
+ ],
+ [
+ "Question:What method is used in DeepSeek-R1 to estimate the baseline without a critic model?\nAnswer:",
+ " KL divergence"
+ ],
+ [
+ "Question:What method is used in DeepSeek-R1 to estimate the baseline without a critic model?\nAnswer:",
+ " Group Relative Policy Optimization (GRPO)"
+ ],
+ [
+ "Question:What method is used in DeepSeek-R1 to estimate the baseline without a critic model?\nAnswer:",
+ " Monte Carlo Tree Search (MCTS)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.6992340087890625,
+ false
+ ]
+ ],
+ [
+ [
+ -8.444036483764648,
+ false
+ ]
+ ],
+ [
+ [
+ -26.221853256225586,
+ false
+ ]
+ ],
+ [
+ [
+ -15.762158393859863,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.6992340087890625,
+ false
+ ],
+ [
+ -8.444036483764648,
+ false
+ ],
+ [
+ -26.221853256225586,
+ false
+ ],
+ [
+ -15.762158393859863,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b2da82c32ba8294928839d6e6c8d24f391d9b9539a533e50ab6f9e67898edcec",
+ "prompt_hash": "9835b440f352329d56947d3df92af42b7df5090cff13c18de40dd239152b41ac",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "Which distilled model achieves 72.6% on AIME 2024?",
+ "choices": [
+ "DeepSeek-R1-Distill-Qwen-7B",
+ "DeepSeek-R1-Distill-Qwen-14B",
+ "DeepSeek-R1-Distill-Qwen-32B",
+ "DeepSeek-R1-Distill-Qwen-1.5B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which distilled model achieves 72.6% on AIME 2024?\nAnswer:",
+ " DeepSeek-R1-Distill-Qwen-7B"
+ ],
+ [
+ "Question:Which distilled model achieves 72.6% on AIME 2024?\nAnswer:",
+ " DeepSeek-R1-Distill-Qwen-14B"
+ ],
+ [
+ "Question:Which distilled model achieves 72.6% on AIME 2024?\nAnswer:",
+ " DeepSeek-R1-Distill-Qwen-32B"
+ ],
+ [
+ "Question:Which distilled model achieves 72.6% on AIME 2024?\nAnswer:",
+ " DeepSeek-R1-Distill-Qwen-1.5B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -36.866294860839844,
+ false
+ ]
+ ],
+ [
+ [
+ -39.773773193359375,
+ false
+ ]
+ ],
+ [
+ [
+ -42.2109375,
+ false
+ ]
+ ],
+ [
+ [
+ -45.068634033203125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -36.866294860839844,
+ false
+ ],
+ [
+ -39.773773193359375,
+ false
+ ],
+ [
+ -42.2109375,
+ false
+ ],
+ [
+ -45.068634033203125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "94fbc30c8d5f15538ae62b1b0b1d19ed80bdd98942645eb62fd8aefdbb0d8c64",
+ "prompt_hash": "08b5360c1d40bcc884fedc3389ee606454b71235337d0a0d7af2a0bac79ade0e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "Which token format does DeepSeek-R1 use to enclose the reasoning process during training?",
+ "choices": [
+ "[REASON] and [/REASON]",
+ " and ",
+ " and ",
+ "[THINK] and [/THINK]"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which token format does DeepSeek-R1 use to enclose the reasoning process during training?\nAnswer:",
+ " [REASON] and [/REASON]"
+ ],
+ [
+ "Question:Which token format does DeepSeek-R1 use to enclose the reasoning process during training?\nAnswer:",
+ " and "
+ ],
+ [
+ "Question:Which token format does DeepSeek-R1 use to enclose the reasoning process during training?\nAnswer:",
+ " and "
+ ],
+ [
+ "Question:Which token format does DeepSeek-R1 use to enclose the reasoning process during training?\nAnswer:",
+ " [THINK] and [/THINK]"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.707176208496094,
+ false
+ ]
+ ],
+ [
+ [
+ -25.014892578125,
+ false
+ ]
+ ],
+ [
+ [
+ -28.014991760253906,
+ false
+ ]
+ ],
+ [
+ [
+ -32.550506591796875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.707176208496094,
+ false
+ ],
+ [
+ -25.014892578125,
+ false
+ ],
+ [
+ -28.014991760253906,
+ false
+ ],
+ [
+ -32.550506591796875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "34f46444412900bed38bc52bb80ad9ccfa5f235245b958c94c219766c3bd820c",
+ "prompt_hash": "59420b6f9ad70812e0273f197b5a199808b0a46ccbeba15fd6136f297f35a279",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What score did Janus-Pro-7B achieve on the MMBench benchmark?",
+ "choices": [
+ "69.4",
+ "75.2",
+ "79.2",
+ "68.9"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What score did Janus-Pro-7B achieve on the MMBench benchmark?\nAnswer:",
+ " 69.4"
+ ],
+ [
+ "Question:What score did Janus-Pro-7B achieve on the MMBench benchmark?\nAnswer:",
+ " 75.2"
+ ],
+ [
+ "Question:What score did Janus-Pro-7B achieve on the MMBench benchmark?\nAnswer:",
+ " 79.2"
+ ],
+ [
+ "Question:What score did Janus-Pro-7B achieve on the MMBench benchmark?\nAnswer:",
+ " 68.9"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.975870132446289,
+ false
+ ]
+ ],
+ [
+ [
+ -8.504131317138672,
+ false
+ ]
+ ],
+ [
+ [
+ -8.818510055541992,
+ false
+ ]
+ ],
+ [
+ [
+ -8.981317520141602,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.975870132446289,
+ false
+ ],
+ [
+ -8.504131317138672,
+ false
+ ],
+ [
+ -8.818510055541992,
+ false
+ ],
+ [
+ -8.981317520141602,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b2201c41f25906adcc32e575d556ec75c843fd5382a1dbbb4424ede976f2d279",
+ "prompt_hash": "e4deea529e6cebf2be6a0965ffe863d1cdb6f6c1ee616a49e6d70b1a33221159",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "What vision encoder is used in Janus-Pro for multimodal understanding tasks?",
+ "choices": [
+ "SigLIP-Large-Patch16-384",
+ "BLIP-2",
+ "ViT-B/16",
+ "Swin Transformer"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What vision encoder is used in Janus-Pro for multimodal understanding tasks?\nAnswer:",
+ " SigLIP-Large-Patch16-384"
+ ],
+ [
+ "Question:What vision encoder is used in Janus-Pro for multimodal understanding tasks?\nAnswer:",
+ " BLIP-2"
+ ],
+ [
+ "Question:What vision encoder is used in Janus-Pro for multimodal understanding tasks?\nAnswer:",
+ " ViT-B/16"
+ ],
+ [
+ "Question:What vision encoder is used in Janus-Pro for multimodal understanding tasks?\nAnswer:",
+ " Swin Transformer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.78590393066406,
+ false
+ ]
+ ],
+ [
+ [
+ -6.9924750328063965,
+ false
+ ]
+ ],
+ [
+ [
+ -9.447872161865234,
+ false
+ ]
+ ],
+ [
+ [
+ -11.09534740447998,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.78590393066406,
+ false
+ ],
+ [
+ -6.9924750328063965,
+ false
+ ],
+ [
+ -9.447872161865234,
+ false
+ ],
+ [
+ -11.09534740447998,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e31fb9041b3ed83733d7ab2fef2e800237d29146168e7685a4d0e3b5a2062fd1",
+ "prompt_hash": "368837545e870bb25b65ae2fb5633fd6c56ec6fc633dde24daa17aa1384e37c0",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "What is the context window size for both Janus-Pro-1B and Janus-Pro-7B?",
+ "choices": [
+ "2048",
+ "8192",
+ "4096",
+ "1024"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the context window size for both Janus-Pro-1B and Janus-Pro-7B?\nAnswer:",
+ " 2048"
+ ],
+ [
+ "Question:What is the context window size for both Janus-Pro-1B and Janus-Pro-7B?\nAnswer:",
+ " 8192"
+ ],
+ [
+ "Question:What is the context window size for both Janus-Pro-1B and Janus-Pro-7B?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:What is the context window size for both Janus-Pro-1B and Janus-Pro-7B?\nAnswer:",
+ " 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.942681312561035,
+ false
+ ]
+ ],
+ [
+ [
+ -5.659657955169678,
+ false
+ ]
+ ],
+ [
+ [
+ -5.5945634841918945,
+ false
+ ]
+ ],
+ [
+ [
+ -4.923760414123535,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.942681312561035,
+ false
+ ],
+ [
+ -5.659657955169678,
+ false
+ ],
+ [
+ -5.5945634841918945,
+ false
+ ],
+ [
+ -4.923760414123535,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "81611cf017515f09c3ec9e1e5155afb245d7d7ec751eef1606116a4a7a2c8183",
+ "prompt_hash": "19f05377c6db8c73c7a629329ce9acb3393ed0f98957bf9f3bb59cf39ecbad18",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "What is the optimizer used to train Janus-Pro?",
+ "choices": [
+ "SGD",
+ "Adam",
+ "RMSProp",
+ "AdamW"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the optimizer used to train Janus-Pro?\nAnswer:",
+ " SGD"
+ ],
+ [
+ "Question:What is the optimizer used to train Janus-Pro?\nAnswer:",
+ " Adam"
+ ],
+ [
+ "Question:What is the optimizer used to train Janus-Pro?\nAnswer:",
+ " RMSProp"
+ ],
+ [
+ "Question:What is the optimizer used to train Janus-Pro?\nAnswer:",
+ " AdamW"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.474011421203613,
+ false
+ ]
+ ],
+ [
+ [
+ -2.1715750694274902,
+ false
+ ]
+ ],
+ [
+ [
+ -7.099437236785889,
+ false
+ ]
+ ],
+ [
+ [
+ -3.740978717803955,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.474011421203613,
+ false
+ ],
+ [
+ -2.1715750694274902,
+ false
+ ],
+ [
+ -7.099437236785889,
+ false
+ ],
+ [
+ -3.740978717803955,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f4bbf766db06865279ba3415fed33c24892caf06f882a57bb85fb256ad305048",
+ "prompt_hash": "8562fd057d4b35d3d349c1d6cab66dd07358bf6535936e8013c49fc2d198d3b1",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "Which benchmark did Janus-Pro-7B outperform DALL-E 3 and SD3-Medium in?",
+ "choices": [
+ "MMBench",
+ "GenEval",
+ "GQA",
+ "MMMU"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark did Janus-Pro-7B outperform DALL-E 3 and SD3-Medium in?\nAnswer:",
+ " MMBench"
+ ],
+ [
+ "Question:Which benchmark did Janus-Pro-7B outperform DALL-E 3 and SD3-Medium in?\nAnswer:",
+ " GenEval"
+ ],
+ [
+ "Question:Which benchmark did Janus-Pro-7B outperform DALL-E 3 and SD3-Medium in?\nAnswer:",
+ " GQA"
+ ],
+ [
+ "Question:Which benchmark did Janus-Pro-7B outperform DALL-E 3 and SD3-Medium in?\nAnswer:",
+ " MMMU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.650606155395508,
+ false
+ ]
+ ],
+ [
+ [
+ -14.764251708984375,
+ false
+ ]
+ ],
+ [
+ [
+ -10.909505844116211,
+ false
+ ]
+ ],
+ [
+ [
+ -15.465291976928711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.650606155395508,
+ false
+ ],
+ [
+ -14.764251708984375,
+ false
+ ],
+ [
+ -10.909505844116211,
+ false
+ ],
+ [
+ -15.465291976928711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "01df0a0c6003a0a1e26d89da2d52bfda816fde996d530f584115625e060569d0",
+ "prompt_hash": "92b90be18377ba553ebd74eff19379547879463d09ad0346e6a83ed4491ae419",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "Which tokenization method is used in FAST to compress robot action trajectories?",
+ "choices": [
+ "Principal Component Analysis (PCA)",
+ "Byte-Pair Encoding (BPE) followed by Discrete Cosine Transform (DCT)",
+ "Discrete Cosine Transform (DCT) followed by Byte-Pair Encoding (BPE)",
+ "Vector Quantization followed by Huffman Encoding"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which tokenization method is used in FAST to compress robot action trajectories?\nAnswer:",
+ " Principal Component Analysis (PCA)"
+ ],
+ [
+ "Question:Which tokenization method is used in FAST to compress robot action trajectories?\nAnswer:",
+ " Byte-Pair Encoding (BPE) followed by Discrete Cosine Transform (DCT)"
+ ],
+ [
+ "Question:Which tokenization method is used in FAST to compress robot action trajectories?\nAnswer:",
+ " Discrete Cosine Transform (DCT) followed by Byte-Pair Encoding (BPE)"
+ ],
+ [
+ "Question:Which tokenization method is used in FAST to compress robot action trajectories?\nAnswer:",
+ " Vector Quantization followed by Huffman Encoding"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.270536422729492,
+ false
+ ]
+ ],
+ [
+ [
+ -28.064403533935547,
+ false
+ ]
+ ],
+ [
+ [
+ -30.861492156982422,
+ false
+ ]
+ ],
+ [
+ [
+ -27.247623443603516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.270536422729492,
+ false
+ ],
+ [
+ -28.064403533935547,
+ false
+ ],
+ [
+ -30.861492156982422,
+ false
+ ],
+ [
+ -27.247623443603516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bc20e847d46c6df16829c8f8f51c270aab55e343930e22ad24b4b80c130e8a89",
+ "prompt_hash": "6780db88023435c5ac2aeabf4f41c3af941c4a465c712acf25388a7131518804",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "What is the action chunk duration used for policy training in the described VLA experiments?",
+ "choices": [
+ "0.5 seconds",
+ "2 seconds",
+ "5 seconds",
+ "1 second"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the action chunk duration used for policy training in the described VLA experiments?\nAnswer:",
+ " 0.5 seconds"
+ ],
+ [
+ "Question:What is the action chunk duration used for policy training in the described VLA experiments?\nAnswer:",
+ " 2 seconds"
+ ],
+ [
+ "Question:What is the action chunk duration used for policy training in the described VLA experiments?\nAnswer:",
+ " 5 seconds"
+ ],
+ [
+ "Question:What is the action chunk duration used for policy training in the described VLA experiments?\nAnswer:",
+ " 1 second"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.42416524887085,
+ false
+ ]
+ ],
+ [
+ [
+ -5.825782775878906,
+ false
+ ]
+ ],
+ [
+ [
+ -5.891945838928223,
+ false
+ ]
+ ],
+ [
+ [
+ -5.117180347442627,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.42416524887085,
+ false
+ ],
+ [
+ -5.825782775878906,
+ false
+ ],
+ [
+ -5.891945838928223,
+ false
+ ],
+ [
+ -5.117180347442627,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b2ab5010ee473215515f17ab098c12cdea5091d6623315912d4d4e695273bb67",
+ "prompt_hash": "668d931deaf85161766f8c175e973cb02b9540443c0d2c8bbf77c366bf489b08",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "Which evaluation task uses a bi-manual ARX robot to fold a t-shirt?",
+ "choices": [
+ "Laundry Folding",
+ "Toast out of Toaster",
+ "T-Shirt Folding",
+ "Table Bussing"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which evaluation task uses a bi-manual ARX robot to fold a t-shirt?\nAnswer:",
+ " Laundry Folding"
+ ],
+ [
+ "Question:Which evaluation task uses a bi-manual ARX robot to fold a t-shirt?\nAnswer:",
+ " Toast out of Toaster"
+ ],
+ [
+ "Question:Which evaluation task uses a bi-manual ARX robot to fold a t-shirt?\nAnswer:",
+ " T-Shirt Folding"
+ ],
+ [
+ "Question:Which evaluation task uses a bi-manual ARX robot to fold a t-shirt?\nAnswer:",
+ " Table Bussing"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.65053653717041,
+ false
+ ]
+ ],
+ [
+ [
+ -34.21724319458008,
+ false
+ ]
+ ],
+ [
+ [
+ -7.9458465576171875,
+ false
+ ]
+ ],
+ [
+ [
+ -26.62312889099121,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.65053653717041,
+ false
+ ],
+ [
+ -34.21724319458008,
+ false
+ ],
+ [
+ -7.9458465576171875,
+ false
+ ],
+ [
+ -26.62312889099121,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "535b5c2b5e85ffd70b07c718bcd48ae81fb7299737cbf4c4346da27a0de5bc0a",
+ "prompt_hash": "5df4789577c533275bffc59775528b1a167b7932bb27a2967fabdf5117b59865",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "What optimizer is used for policy training in the VLA experiments?",
+ "choices": [
+ "SGD with Momentum",
+ "Adam",
+ "AdamW",
+ "RMSProp"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What optimizer is used for policy training in the VLA experiments?\nAnswer:",
+ " SGD with Momentum"
+ ],
+ [
+ "Question:What optimizer is used for policy training in the VLA experiments?\nAnswer:",
+ " Adam"
+ ],
+ [
+ "Question:What optimizer is used for policy training in the VLA experiments?\nAnswer:",
+ " AdamW"
+ ],
+ [
+ "Question:What optimizer is used for policy training in the VLA experiments?\nAnswer:",
+ " RMSProp"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.135553359985352,
+ false
+ ]
+ ],
+ [
+ [
+ -3.396702766418457,
+ false
+ ]
+ ],
+ [
+ [
+ -5.222354888916016,
+ false
+ ]
+ ],
+ [
+ [
+ -6.109254360198975,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.135553359985352,
+ false
+ ],
+ [
+ -3.396702766418457,
+ false
+ ],
+ [
+ -5.222354888916016,
+ false
+ ],
+ [
+ -6.109254360198975,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c6ca2f0960faaebe4c1c1a5ed7c0bb61c4ace30f26b3b586ac0f0c8a3e672e44",
+ "prompt_hash": "10273564162dc5c045ea3ead115969d25d3a00836aaf9eb8620485f76cacbfe1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What control frequency is associated with the T-Shirt Folding task?",
+ "choices": [
+ "15 Hz",
+ "20 Hz",
+ "50 Hz",
+ "5 Hz"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What control frequency is associated with the T-Shirt Folding task?\nAnswer:",
+ " 15 Hz"
+ ],
+ [
+ "Question:What control frequency is associated with the T-Shirt Folding task?\nAnswer:",
+ " 20 Hz"
+ ],
+ [
+ "Question:What control frequency is associated with the T-Shirt Folding task?\nAnswer:",
+ " 50 Hz"
+ ],
+ [
+ "Question:What control frequency is associated with the T-Shirt Folding task?\nAnswer:",
+ " 5 Hz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.0199737548828125,
+ false
+ ]
+ ],
+ [
+ [
+ -5.349177360534668,
+ false
+ ]
+ ],
+ [
+ [
+ -5.311049461364746,
+ false
+ ]
+ ],
+ [
+ [
+ -5.154747009277344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.0199737548828125,
+ false
+ ],
+ [
+ -5.349177360534668,
+ false
+ ],
+ [
+ -5.311049461364746,
+ false
+ ],
+ [
+ -5.154747009277344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fc67d63b526c2bbd910fe54a16fbd13bb882cbf2a4281310beb7bc522bbf1400",
+ "prompt_hash": "3536b38edac5e5232898c82dce006c4b587468dc08c5c806303e7817e30f6ceb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What technique has shown that prompts like 'Let's think step by step' can improve reasoning in language models?",
+ "choices": [
+ "Chain-of-Thought prompting",
+ "Least-to-Most prompting",
+ "Plan-and-Solve",
+ "Tree-of-Thought prompting"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What technique has shown that prompts like 'Let's think step by step' can improve reasoning in language models?\nAnswer:",
+ " Chain-of-Thought prompting"
+ ],
+ [
+ "Question:What technique has shown that prompts like 'Let's think step by step' can improve reasoning in language models?\nAnswer:",
+ " Least-to-Most prompting"
+ ],
+ [
+ "Question:What technique has shown that prompts like 'Let's think step by step' can improve reasoning in language models?\nAnswer:",
+ " Plan-and-Solve"
+ ],
+ [
+ "Question:What technique has shown that prompts like 'Let's think step by step' can improve reasoning in language models?\nAnswer:",
+ " Tree-of-Thought prompting"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.43093204498291,
+ false
+ ]
+ ],
+ [
+ [
+ -16.591632843017578,
+ false
+ ]
+ ],
+ [
+ [
+ -15.584571838378906,
+ false
+ ]
+ ],
+ [
+ [
+ -10.290903091430664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.43093204498291,
+ false
+ ],
+ [
+ -16.591632843017578,
+ false
+ ],
+ [
+ -15.584571838378906,
+ false
+ ],
+ [
+ -10.290903091430664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4895c2f15e6e631e16395be84803e67bf4ec8c1ba2694ccfed56750089722f91",
+ "prompt_hash": "88de32826fc0329be4c66c083fadb45cbe138d6ebdb91cae39a9799eb3ad610a",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "What does Direct Preference Optimization (DPO) eliminate in reinforcement learning fine-tuning?",
+ "choices": [
+ "Prompt engineering",
+ "Reward model training and sampling",
+ "Token-level scoring",
+ "Gradient clipping"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does Direct Preference Optimization (DPO) eliminate in reinforcement learning fine-tuning?\nAnswer:",
+ " Prompt engineering"
+ ],
+ [
+ "Question:What does Direct Preference Optimization (DPO) eliminate in reinforcement learning fine-tuning?\nAnswer:",
+ " Reward model training and sampling"
+ ],
+ [
+ "Question:What does Direct Preference Optimization (DPO) eliminate in reinforcement learning fine-tuning?\nAnswer:",
+ " Token-level scoring"
+ ],
+ [
+ "Question:What does Direct Preference Optimization (DPO) eliminate in reinforcement learning fine-tuning?\nAnswer:",
+ " Gradient clipping"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.809982299804688,
+ false
+ ]
+ ],
+ [
+ [
+ -27.00271224975586,
+ false
+ ]
+ ],
+ [
+ [
+ -22.927026748657227,
+ false
+ ]
+ ],
+ [
+ [
+ -11.805936813354492,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.809982299804688,
+ false
+ ],
+ [
+ -27.00271224975586,
+ false
+ ],
+ [
+ -22.927026748657227,
+ false
+ ],
+ [
+ -11.805936813354492,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "556e5a4a3ff7ffe7968dd7acadb8155bfec81f188a9c06600fbb9490117cd22b",
+ "prompt_hash": "df6ee6fd84ed4ca6c319809234c9234f25b815c286da491bfae8916ca174f2e3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "What strategy in Monte Carlo Tree Search (MCTS) helps reduce computational overhead in reasoning tasks?",
+ "choices": [
+ "Heuristic initialization",
+ "Gradient pruning",
+ "Leaf node sharing of high-quality parent nodes",
+ "Prompt compression"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What strategy in Monte Carlo Tree Search (MCTS) helps reduce computational overhead in reasoning tasks?\nAnswer:",
+ " Heuristic initialization"
+ ],
+ [
+ "Question:What strategy in Monte Carlo Tree Search (MCTS) helps reduce computational overhead in reasoning tasks?\nAnswer:",
+ " Gradient pruning"
+ ],
+ [
+ "Question:What strategy in Monte Carlo Tree Search (MCTS) helps reduce computational overhead in reasoning tasks?\nAnswer:",
+ " Leaf node sharing of high-quality parent nodes"
+ ],
+ [
+ "Question:What strategy in Monte Carlo Tree Search (MCTS) helps reduce computational overhead in reasoning tasks?\nAnswer:",
+ " Prompt compression"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.309856414794922,
+ false
+ ]
+ ],
+ [
+ [
+ -19.264671325683594,
+ false
+ ]
+ ],
+ [
+ [
+ -45.913230895996094,
+ false
+ ]
+ ],
+ [
+ [
+ -18.06313133239746,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.309856414794922,
+ false
+ ],
+ [
+ -19.264671325683594,
+ false
+ ],
+ [
+ -45.913230895996094,
+ false
+ ],
+ [
+ -18.06313133239746,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c4f7658a1b0e85d0f29104240811cad7577426cdd20d7c60df3922dc9ce83068",
+ "prompt_hash": "770d1f160ad2a838c42b8537f5f53b79b454987d2870b0681c43ed3785c539b0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "Which reinforcement fine-tuning technique is noted for enabling learning from just dozens of user preference data?",
+ "choices": [
+ "ReFT",
+ "VinePPO",
+ "RLHF",
+ "SVPO"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which reinforcement fine-tuning technique is noted for enabling learning from just dozens of user preference data?\nAnswer:",
+ " ReFT"
+ ],
+ [
+ "Question:Which reinforcement fine-tuning technique is noted for enabling learning from just dozens of user preference data?\nAnswer:",
+ " VinePPO"
+ ],
+ [
+ "Question:Which reinforcement fine-tuning technique is noted for enabling learning from just dozens of user preference data?\nAnswer:",
+ " RLHF"
+ ],
+ [
+ "Question:Which reinforcement fine-tuning technique is noted for enabling learning from just dozens of user preference data?\nAnswer:",
+ " SVPO"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.842266082763672,
+ false
+ ]
+ ],
+ [
+ [
+ -26.258159637451172,
+ false
+ ]
+ ],
+ [
+ [
+ -5.796584606170654,
+ false
+ ]
+ ],
+ [
+ [
+ -23.100177764892578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.842266082763672,
+ false
+ ],
+ [
+ -26.258159637451172,
+ false
+ ],
+ [
+ -5.796584606170654,
+ false
+ ],
+ [
+ -23.100177764892578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "64deeaefa753f9a68d8ab08e24fd3dafcb8db63bf159e920cb613b2491d819b7",
+ "prompt_hash": "f7b999fc73f2232a7facb7f3e4c02090f7fc41ad7d90b92f7ff00fc5cb9ee231",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "Which prompting method breaks down complex problems into smaller subproblems for better reasoning?",
+ "choices": [
+ "Tree-of-Thoughts",
+ "Self-Consistency",
+ "Least-to-Most Prompting",
+ "Chain-of-Thought"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which prompting method breaks down complex problems into smaller subproblems for better reasoning?\nAnswer:",
+ " Tree-of-Thoughts"
+ ],
+ [
+ "Question:Which prompting method breaks down complex problems into smaller subproblems for better reasoning?\nAnswer:",
+ " Self-Consistency"
+ ],
+ [
+ "Question:Which prompting method breaks down complex problems into smaller subproblems for better reasoning?\nAnswer:",
+ " Least-to-Most Prompting"
+ ],
+ [
+ "Question:Which prompting method breaks down complex problems into smaller subproblems for better reasoning?\nAnswer:",
+ " Chain-of-Thought"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.340664863586426,
+ false
+ ]
+ ],
+ [
+ [
+ -9.643707275390625,
+ false
+ ]
+ ],
+ [
+ [
+ -13.097075462341309,
+ false
+ ]
+ ],
+ [
+ [
+ -5.191791534423828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.340664863586426,
+ false
+ ],
+ [
+ -9.643707275390625,
+ false
+ ],
+ [
+ -13.097075462341309,
+ false
+ ],
+ [
+ -5.191791534423828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "451ac49f5ff3b62849ec7af0502925f7a3f42595bd827636a337dbcbf8da985f",
+ "prompt_hash": "1bf69240ab675c5dfb72f2d01b0f633f72f35c2ca71789d9ca2d6052d4c20981",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "Which activation function is used in the Qwen2.5 dense model architecture?",
+ "choices": [
+ "ReLU",
+ "SwiGLU",
+ "GELU",
+ "SiLU"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which activation function is used in the Qwen2.5 dense model architecture?\nAnswer:",
+ " ReLU"
+ ],
+ [
+ "Question:Which activation function is used in the Qwen2.5 dense model architecture?\nAnswer:",
+ " SwiGLU"
+ ],
+ [
+ "Question:Which activation function is used in the Qwen2.5 dense model architecture?\nAnswer:",
+ " GELU"
+ ],
+ [
+ "Question:Which activation function is used in the Qwen2.5 dense model architecture?\nAnswer:",
+ " SiLU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.774085760116577,
+ false
+ ]
+ ],
+ [
+ [
+ -8.605820655822754,
+ false
+ ]
+ ],
+ [
+ [
+ -5.870603561401367,
+ false
+ ]
+ ],
+ [
+ [
+ -7.402235984802246,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.774085760116577,
+ false
+ ],
+ [
+ -8.605820655822754,
+ false
+ ],
+ [
+ -5.870603561401367,
+ false
+ ],
+ [
+ -7.402235984802246,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6d76752172c847efd8d622077eedb3a62333a62e3f12e9e306ed0795b12dfda1",
+ "prompt_hash": "9ea9a1067541f5390152093014beb8623cec14591f5b08571de978de4f2e4bd4",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "What vocabulary size is used in the Qwen2.5 tokenizer?",
+ "choices": [
+ "32,768",
+ "100,000",
+ "151,643",
+ "256,000"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What vocabulary size is used in the Qwen2.5 tokenizer?\nAnswer:",
+ " 32,768"
+ ],
+ [
+ "Question:What vocabulary size is used in the Qwen2.5 tokenizer?\nAnswer:",
+ " 100,000"
+ ],
+ [
+ "Question:What vocabulary size is used in the Qwen2.5 tokenizer?\nAnswer:",
+ " 151,643"
+ ],
+ [
+ "Question:What vocabulary size is used in the Qwen2.5 tokenizer?\nAnswer:",
+ " 256,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.168275833129883,
+ false
+ ]
+ ],
+ [
+ [
+ -11.967578887939453,
+ false
+ ]
+ ],
+ [
+ [
+ -20.90795135498047,
+ false
+ ]
+ ],
+ [
+ [
+ -13.019368171691895,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.168275833129883,
+ false
+ ],
+ [
+ -11.967578887939453,
+ false
+ ],
+ [
+ -20.90795135498047,
+ false
+ ],
+ [
+ -13.019368171691895,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dbded3b4ad35993632462e288e6826b97d7820468e31f62f47cf06eba28b9d37",
+ "prompt_hash": "02c92dddcf37f76136a51a2822d6e29407b41630ad7c1b2d39f9b8fc2a60929b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "How many control tokens are included in the Qwen2.5 tokenizer?",
+ "choices": [
+ "3",
+ "10",
+ "22",
+ "151,643"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many control tokens are included in the Qwen2.5 tokenizer?\nAnswer:",
+ " 3"
+ ],
+ [
+ "Question:How many control tokens are included in the Qwen2.5 tokenizer?\nAnswer:",
+ " 10"
+ ],
+ [
+ "Question:How many control tokens are included in the Qwen2.5 tokenizer?\nAnswer:",
+ " 22"
+ ],
+ [
+ "Question:How many control tokens are included in the Qwen2.5 tokenizer?\nAnswer:",
+ " 151,643"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.963737964630127,
+ false
+ ]
+ ],
+ [
+ [
+ -4.7243499755859375,
+ false
+ ]
+ ],
+ [
+ [
+ -6.240811347961426,
+ false
+ ]
+ ],
+ [
+ [
+ -19.046680450439453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.963737964630127,
+ false
+ ],
+ [
+ -4.7243499755859375,
+ false
+ ],
+ [
+ -6.240811347961426,
+ false
+ ],
+ [
+ -19.046680450439453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5e6b5263857f6a7b6e410d36c03b0b1716afaf1b54f60c1e9962f2127298ac11",
+ "prompt_hash": "6305352bd5b8c7676abf7c3a2dfec5fce5b327bfb1c85fdf41f498492917e294",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "Which benchmark is used to evaluate multilingual understanding in the Qwen2.5 base model?",
+ "choices": [
+ "BELEBELE",
+ "TruthfulQA",
+ "LiveBench",
+ "ARC-C"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark is used to evaluate multilingual understanding in the Qwen2.5 base model?\nAnswer:",
+ " BELEBELE"
+ ],
+ [
+ "Question:Which benchmark is used to evaluate multilingual understanding in the Qwen2.5 base model?\nAnswer:",
+ " TruthfulQA"
+ ],
+ [
+ "Question:Which benchmark is used to evaluate multilingual understanding in the Qwen2.5 base model?\nAnswer:",
+ " LiveBench"
+ ],
+ [
+ "Question:Which benchmark is used to evaluate multilingual understanding in the Qwen2.5 base model?\nAnswer:",
+ " ARC-C"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.12228775024414,
+ false
+ ]
+ ],
+ [
+ [
+ -11.192878723144531,
+ false
+ ]
+ ],
+ [
+ [
+ -16.66100311279297,
+ false
+ ]
+ ],
+ [
+ [
+ -12.205469131469727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.12228775024414,
+ false
+ ],
+ [
+ -11.192878723144531,
+ false
+ ],
+ [
+ -16.66100311279297,
+ false
+ ],
+ [
+ -12.205469131469727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ddb5b99be432bca64544f9418ed8f3363d61cb4de20929c1fcfa1c57f2fa5247",
+ "prompt_hash": "c7efca85bb4edd89316ecb42e3ed4f9db0718b5ed440de9ae016fe666f0bec0a",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "What is the performance of Qwen2.5-72B on the MATH dataset?",
+ "choices": [
+ "50.9",
+ "62.1",
+ "64.4",
+ "83.1"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the performance of Qwen2.5-72B on the MATH dataset?\nAnswer:",
+ " 50.9"
+ ],
+ [
+ "Question:What is the performance of Qwen2.5-72B on the MATH dataset?\nAnswer:",
+ " 62.1"
+ ],
+ [
+ "Question:What is the performance of Qwen2.5-72B on the MATH dataset?\nAnswer:",
+ " 64.4"
+ ],
+ [
+ "Question:What is the performance of Qwen2.5-72B on the MATH dataset?\nAnswer:",
+ " 83.1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.716265678405762,
+ false
+ ]
+ ],
+ [
+ [
+ -10.533012390136719,
+ false
+ ]
+ ],
+ [
+ [
+ -10.480714797973633,
+ false
+ ]
+ ],
+ [
+ [
+ -10.151132583618164,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.716265678405762,
+ false
+ ],
+ [
+ -10.533012390136719,
+ false
+ ],
+ [
+ -10.480714797973633,
+ false
+ ],
+ [
+ -10.151132583618164,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b22ab978713dabb7f86c6882088a05c621c77a6637d6387ad21bce8e66b32c11",
+ "prompt_hash": "7ffd84244888096461c1da3fa98ef3348eac99cf5217ecac6cfcfaf1255e2401",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What training loss is used in InternVL 2.5's Stage 1 and Stage 1.5?",
+ "choices": [
+ "Contrastive loss",
+ "Next Token Prediction loss",
+ "Cosine similarity loss",
+ "Cross-entropy loss"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What training loss is used in InternVL 2.5's Stage 1 and Stage 1.5?\nAnswer:",
+ " Contrastive loss"
+ ],
+ [
+ "Question:What training loss is used in InternVL 2.5's Stage 1 and Stage 1.5?\nAnswer:",
+ " Next Token Prediction loss"
+ ],
+ [
+ "Question:What training loss is used in InternVL 2.5's Stage 1 and Stage 1.5?\nAnswer:",
+ " Cosine similarity loss"
+ ],
+ [
+ "Question:What training loss is used in InternVL 2.5's Stage 1 and Stage 1.5?\nAnswer:",
+ " Cross-entropy loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.985716819763184,
+ false
+ ]
+ ],
+ [
+ [
+ -20.21367835998535,
+ false
+ ]
+ ],
+ [
+ [
+ -14.408019065856934,
+ false
+ ]
+ ],
+ [
+ [
+ -7.583483695983887,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.985716819763184,
+ false
+ ],
+ [
+ -20.21367835998535,
+ false
+ ],
+ [
+ -14.408019065856934,
+ false
+ ],
+ [
+ -7.583483695983887,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d73d1b99689947592c163a229b52313719187c2c8c271ab48aeab0cf2b2432e9",
+ "prompt_hash": "4ff46b1d0c77fa76208ff6114af26f58991e33db92629e1bda64fb4ad5eee115",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "What is the final number of parameters in InternViT-6B-448px-V2.5?",
+ "choices": [
+ "5.9B",
+ "6.2B",
+ "5.5B",
+ "4.8B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the final number of parameters in InternViT-6B-448px-V2.5?\nAnswer:",
+ " 5.9B"
+ ],
+ [
+ "Question:What is the final number of parameters in InternViT-6B-448px-V2.5?\nAnswer:",
+ " 6.2B"
+ ],
+ [
+ "Question:What is the final number of parameters in InternViT-6B-448px-V2.5?\nAnswer:",
+ " 5.5B"
+ ],
+ [
+ "Question:What is the final number of parameters in InternViT-6B-448px-V2.5?\nAnswer:",
+ " 4.8B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.59568977355957,
+ false
+ ]
+ ],
+ [
+ [
+ -11.892919540405273,
+ false
+ ]
+ ],
+ [
+ [
+ -12.99958610534668,
+ false
+ ]
+ ],
+ [
+ [
+ -12.356107711791992,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.59568977355957,
+ false
+ ],
+ [
+ -11.892919540405273,
+ false
+ ],
+ [
+ -12.99958610534668,
+ false
+ ],
+ [
+ -12.356107711791992,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f44a6242fcf0b2ab3a67d2ca668f0122bdc71c0ac3b57d75592826d316614528",
+ "prompt_hash": "18c04ac86168a8bed0fe625fa0d74a50ffd557102dbda3157b1470b2c6729b22",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "Which prompt-based technique was shown to improve performance on MMMU in InternVL 2.5?",
+ "choices": [
+ "Zero-shot chain-of-thought",
+ "Majority voting with CoT",
+ "Self-consistency decoding",
+ "Visual instruction tuning"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which prompt-based technique was shown to improve performance on MMMU in InternVL 2.5?\nAnswer:",
+ " Zero-shot chain-of-thought"
+ ],
+ [
+ "Question:Which prompt-based technique was shown to improve performance on MMMU in InternVL 2.5?\nAnswer:",
+ " Majority voting with CoT"
+ ],
+ [
+ "Question:Which prompt-based technique was shown to improve performance on MMMU in InternVL 2.5?\nAnswer:",
+ " Self-consistency decoding"
+ ],
+ [
+ "Question:Which prompt-based technique was shown to improve performance on MMMU in InternVL 2.5?\nAnswer:",
+ " Visual instruction tuning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.020514488220215,
+ false
+ ]
+ ],
+ [
+ [
+ -23.533023834228516,
+ false
+ ]
+ ],
+ [
+ [
+ -19.21437644958496,
+ false
+ ]
+ ],
+ [
+ [
+ -12.545539855957031,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.020514488220215,
+ false
+ ],
+ [
+ -23.533023834228516,
+ false
+ ],
+ [
+ -19.21437644958496,
+ false
+ ],
+ [
+ -12.545539855957031,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "37f70303923c80a15f00d15dc63d4dc1dbeb2e45703f039d8140753335cc3f10",
+ "prompt_hash": "2cd34b7f95101f1507b83dcd748877c9476778ce53e0263ab5512c0c7ec5fb05",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "What is the resolution size used for each image tile in the InternVL 2.5 architecture?",
+ "choices": [
+ "224×224",
+ "336×336",
+ "512×512",
+ "448×448"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the resolution size used for each image tile in the InternVL 2.5 architecture?\nAnswer:",
+ " 224×224"
+ ],
+ [
+ "Question:What is the resolution size used for each image tile in the InternVL 2.5 architecture?\nAnswer:",
+ " 336×336"
+ ],
+ [
+ "Question:What is the resolution size used for each image tile in the InternVL 2.5 architecture?\nAnswer:",
+ " 512×512"
+ ],
+ [
+ "Question:What is the resolution size used for each image tile in the InternVL 2.5 architecture?\nAnswer:",
+ " 448×448"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.673851013183594,
+ false
+ ]
+ ],
+ [
+ [
+ -10.982954978942871,
+ false
+ ]
+ ],
+ [
+ [
+ -7.892268180847168,
+ false
+ ]
+ ],
+ [
+ [
+ -9.570035934448242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.673851013183594,
+ false
+ ],
+ [
+ -10.982954978942871,
+ false
+ ],
+ [
+ -7.892268180847168,
+ false
+ ],
+ [
+ -9.570035934448242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a28c2abde649e23518ede576c5124c3e89ba96cbedaf97d1660315b44d9cb492",
+ "prompt_hash": "04cf5c99c4384326cb8493acc380a00f9e8f3123c06cf3a4aad83eae3541e6a5",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "What is the maximum number of tiles assigned per video sample during training in InternVL 2.5?",
+ "choices": [
+ "1",
+ "6",
+ "12",
+ "24"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the maximum number of tiles assigned per video sample during training in InternVL 2.5?\nAnswer:",
+ " 1"
+ ],
+ [
+ "Question:What is the maximum number of tiles assigned per video sample during training in InternVL 2.5?\nAnswer:",
+ " 6"
+ ],
+ [
+ "Question:What is the maximum number of tiles assigned per video sample during training in InternVL 2.5?\nAnswer:",
+ " 12"
+ ],
+ [
+ "Question:What is the maximum number of tiles assigned per video sample during training in InternVL 2.5?\nAnswer:",
+ " 24"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -2.4906997680664062,
+ false
+ ]
+ ],
+ [
+ [
+ -3.65911865234375,
+ false
+ ]
+ ],
+ [
+ [
+ -4.247614860534668,
+ false
+ ]
+ ],
+ [
+ [
+ -5.091933250427246,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -2.4906997680664062,
+ false
+ ],
+ [
+ -3.65911865234375,
+ false
+ ],
+ [
+ -4.247614860534668,
+ false
+ ],
+ [
+ -5.091933250427246,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e8b5737944f8f32ee3e7b5b6356e280b9018773368427db03e9f6f0290f0670e",
+ "prompt_hash": "01f6f066cf469892ed01e86213bec73cf971aefa7266e5f0c85f73359ae29b6f",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "How many models with 1B parameters were trained to evaluate the impact of data mixtures?",
+ "choices": [
+ "32",
+ "64",
+ "128",
+ "256"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many models with 1B parameters were trained to evaluate the impact of data mixtures?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:How many models with 1B parameters were trained to evaluate the impact of data mixtures?\nAnswer:",
+ " 64"
+ ],
+ [
+ "Question:How many models with 1B parameters were trained to evaluate the impact of data mixtures?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:How many models with 1B parameters were trained to evaluate the impact of data mixtures?\nAnswer:",
+ " 256"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.174529075622559,
+ false
+ ]
+ ],
+ [
+ [
+ -7.080163955688477,
+ false
+ ]
+ ],
+ [
+ [
+ -8.164529800415039,
+ false
+ ]
+ ],
+ [
+ [
+ -8.490699768066406,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.174529075622559,
+ false
+ ],
+ [
+ -7.080163955688477,
+ false
+ ],
+ [
+ -8.164529800415039,
+ false
+ ],
+ [
+ -8.490699768066406,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "22c302fdda64067f2611d938454e180cc12322d6bb6f233cf4fc7caa396ebc11",
+ "prompt_hash": "8fe79270102b389c7e664a2ba107cf3f68742e48a2064c5188b5e082cfc5703a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "Which dataset showed the strongest correlation with downstream task performance?",
+ "choices": [
+ "Wikipedia (en)",
+ "WikiText",
+ "Pile-CC",
+ "C4"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset showed the strongest correlation with downstream task performance?\nAnswer:",
+ " Wikipedia (en)"
+ ],
+ [
+ "Question:Which dataset showed the strongest correlation with downstream task performance?\nAnswer:",
+ " WikiText"
+ ],
+ [
+ "Question:Which dataset showed the strongest correlation with downstream task performance?\nAnswer:",
+ " Pile-CC"
+ ],
+ [
+ "Question:Which dataset showed the strongest correlation with downstream task performance?\nAnswer:",
+ " C4"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.24456787109375,
+ false
+ ]
+ ],
+ [
+ [
+ -9.600040435791016,
+ false
+ ]
+ ],
+ [
+ [
+ -19.288917541503906,
+ false
+ ]
+ ],
+ [
+ [
+ -10.923744201660156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.24456787109375,
+ false
+ ],
+ [
+ -9.600040435791016,
+ false
+ ],
+ [
+ -19.288917541503906,
+ false
+ ],
+ [
+ -10.923744201660156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "279c342e0b86c189b778e77be74e371238a82b037dd8ac7f198bb5601131badc",
+ "prompt_hash": "5da37f35317d56dc7b0631566fb19ef772cf50ec5acd8dde624b908cb28cb08b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What evaluation metric is used if normalized accuracy is not provided by lm-eval-harness?",
+ "choices": [
+ "BLEU score",
+ "F1 score",
+ "Perplexity",
+ "Regular accuracy"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What evaluation metric is used if normalized accuracy is not provided by lm-eval-harness?\nAnswer:",
+ " BLEU score"
+ ],
+ [
+ "Question:What evaluation metric is used if normalized accuracy is not provided by lm-eval-harness?\nAnswer:",
+ " F1 score"
+ ],
+ [
+ "Question:What evaluation metric is used if normalized accuracy is not provided by lm-eval-harness?\nAnswer:",
+ " Perplexity"
+ ],
+ [
+ "Question:What evaluation metric is used if normalized accuracy is not provided by lm-eval-harness?\nAnswer:",
+ " Regular accuracy"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.628717422485352,
+ false
+ ]
+ ],
+ [
+ [
+ -5.973865032196045,
+ false
+ ]
+ ],
+ [
+ [
+ -6.907043933868408,
+ false
+ ]
+ ],
+ [
+ [
+ -13.605592727661133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.628717422485352,
+ false
+ ],
+ [
+ -5.973865032196045,
+ false
+ ],
+ [
+ -6.907043933868408,
+ false
+ ],
+ [
+ -13.605592727661133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0a7d09c18007aa19218484c38030cc8c137386c6995ff12622f783aedb310279",
+ "prompt_hash": "abc7194d9f039eb154a8e9c5c668965d30e904867908a5c735dbeebc91e07164",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "Which benchmark showed the largest performance gap (Δ) between the best and worst models?",
+ "choices": [
+ "PiQA",
+ "Lambada",
+ "HellaSwag",
+ "OpenBookQA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark showed the largest performance gap (Δ) between the best and worst models?\nAnswer:",
+ " PiQA"
+ ],
+ [
+ "Question:Which benchmark showed the largest performance gap (Δ) between the best and worst models?\nAnswer:",
+ " Lambada"
+ ],
+ [
+ "Question:Which benchmark showed the largest performance gap (Δ) between the best and worst models?\nAnswer:",
+ " HellaSwag"
+ ],
+ [
+ "Question:Which benchmark showed the largest performance gap (Δ) between the best and worst models?\nAnswer:",
+ " OpenBookQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.476099014282227,
+ false
+ ]
+ ],
+ [
+ [
+ -12.178361892700195,
+ false
+ ]
+ ],
+ [
+ [
+ -8.666653633117676,
+ false
+ ]
+ ],
+ [
+ [
+ -12.985079765319824,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.476099014282227,
+ false
+ ],
+ [
+ -12.178361892700195,
+ false
+ ],
+ [
+ -8.666653633117676,
+ false
+ ],
+ [
+ -12.985079765319824,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "06b48f908f1700e94e22b781c4215de054b9b365f41c55084daedb22d807b5b6",
+ "prompt_hash": "05aa0d7a5d81aea67d91accbc2cffa2ea224c1d4e1f94c79e834c13a88868ad8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "What kind of regression model was used in \\u201courmethod\\u201d to predict the optimal data mixture?",
+ "choices": [
+ "Lasso regression",
+ "Linear regression",
+ "LightGBM",
+ "Random forest"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What kind of regression model was used in \\u201courmethod\\u201d to predict the optimal data mixture?\nAnswer:",
+ " Lasso regression"
+ ],
+ [
+ "Question:What kind of regression model was used in \\u201courmethod\\u201d to predict the optimal data mixture?\nAnswer:",
+ " Linear regression"
+ ],
+ [
+ "Question:What kind of regression model was used in \\u201courmethod\\u201d to predict the optimal data mixture?\nAnswer:",
+ " LightGBM"
+ ],
+ [
+ "Question:What kind of regression model was used in \\u201courmethod\\u201d to predict the optimal data mixture?\nAnswer:",
+ " Random forest"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.868882179260254,
+ false
+ ]
+ ],
+ [
+ [
+ -5.115058898925781,
+ false
+ ]
+ ],
+ [
+ [
+ -12.149599075317383,
+ false
+ ]
+ ],
+ [
+ [
+ -8.57761001586914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.868882179260254,
+ false
+ ],
+ [
+ -5.115058898925781,
+ false
+ ],
+ [
+ -12.149599075317383,
+ false
+ ],
+ [
+ -8.57761001586914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b53157e14dd6ab1308b1db7dd65b121972f82fef1555d1a8b7bb279605a2f2f4",
+ "prompt_hash": "15d02ff658f84423bb16b693b71e523b96c253fb5f5075947c1008589e38ecbf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2502": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "How many video clips does the UCF-101 dataset contain?",
+ "choices": [
+ "13,320",
+ "35,000",
+ "70 million",
+ "2,265"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many video clips does the UCF-101 dataset contain?\nAnswer:",
+ " 13,320"
+ ],
+ [
+ "Question:How many video clips does the UCF-101 dataset contain?\nAnswer:",
+ " 35,000"
+ ],
+ [
+ "Question:How many video clips does the UCF-101 dataset contain?\nAnswer:",
+ " 70 million"
+ ],
+ [
+ "Question:How many video clips does the UCF-101 dataset contain?\nAnswer:",
+ " 2,265"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.38673210144043,
+ false
+ ]
+ ],
+ [
+ [
+ -13.665287017822266,
+ false
+ ]
+ ],
+ [
+ [
+ -18.272319793701172,
+ false
+ ]
+ ],
+ [
+ [
+ -14.839933395385742,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.38673210144043,
+ false
+ ],
+ [
+ -13.665287017822266,
+ false
+ ],
+ [
+ -18.272319793701172,
+ false
+ ],
+ [
+ -14.839933395385742,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d918d9290ba27f5972ce763142840a34b15fccae886c519a5ff068af2d982b0b",
+ "prompt_hash": "66610f22552921f853fe59e1ea7704b01e3c69cbffae9d2feca90e1b0a4a4e1e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "What is the average video length in the WebVid-10M dataset?",
+ "choices": [
+ "7.2 seconds",
+ "18.7 seconds",
+ "11.4 seconds",
+ "8.5 seconds"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the average video length in the WebVid-10M dataset?\nAnswer:",
+ " 7.2 seconds"
+ ],
+ [
+ "Question:What is the average video length in the WebVid-10M dataset?\nAnswer:",
+ " 18.7 seconds"
+ ],
+ [
+ "Question:What is the average video length in the WebVid-10M dataset?\nAnswer:",
+ " 11.4 seconds"
+ ],
+ [
+ "Question:What is the average video length in the WebVid-10M dataset?\nAnswer:",
+ " 8.5 seconds"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.703564643859863,
+ false
+ ]
+ ],
+ [
+ [
+ -10.211236953735352,
+ false
+ ]
+ ],
+ [
+ [
+ -9.757585525512695,
+ false
+ ]
+ ],
+ [
+ [
+ -9.347663879394531,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.703564643859863,
+ false
+ ],
+ [
+ -10.211236953735352,
+ false
+ ],
+ [
+ -9.757585525512695,
+ false
+ ],
+ [
+ -9.347663879394531,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0c051f64404c22a332292565deb4bcc0138c49b138d6b18679c18b46e9f01084",
+ "prompt_hash": "93266376b337b79147290d8bc60a6240e38a5e688ef9c7e34717db3df76c55fe",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "Which dataset contains 2,265 high-quality time-lapse videos with text descriptions?",
+ "choices": [
+ "Taichi-HD",
+ "ChronoMagic",
+ "CelebvHQ",
+ "Panda-70M"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset contains 2,265 high-quality time-lapse videos with text descriptions?\nAnswer:",
+ " Taichi-HD"
+ ],
+ [
+ "Question:Which dataset contains 2,265 high-quality time-lapse videos with text descriptions?\nAnswer:",
+ " ChronoMagic"
+ ],
+ [
+ "Question:Which dataset contains 2,265 high-quality time-lapse videos with text descriptions?\nAnswer:",
+ " CelebvHQ"
+ ],
+ [
+ "Question:Which dataset contains 2,265 high-quality time-lapse videos with text descriptions?\nAnswer:",
+ " Panda-70M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.884653091430664,
+ false
+ ]
+ ],
+ [
+ [
+ -30.02543830871582,
+ false
+ ]
+ ],
+ [
+ [
+ -24.76498794555664,
+ false
+ ]
+ ],
+ [
+ [
+ -22.008342742919922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.884653091430664,
+ false
+ ],
+ [
+ -30.02543830871582,
+ false
+ ],
+ [
+ -24.76498794555664,
+ false
+ ],
+ [
+ -22.008342742919922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aea8b1e5f35964a5f6bd80bb657c379c0763ba1b2dd00311ea6d8d1a834f7f6b",
+ "prompt_hash": "3a25697ba9302d309fefbd23edef13e2233a48d1caa5aa842f6dae2e8c6168cc",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "How many video clips and hours does the InternVid dataset include?",
+ "choices": [
+ "13,320 clips and 2.7 hours",
+ "2,265 clips and 7 hours",
+ "234 million clips and 760.3K hours",
+ "35,000 clips and 65 hours"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many video clips and hours does the InternVid dataset include?\nAnswer:",
+ " 13,320 clips and 2.7 hours"
+ ],
+ [
+ "Question:How many video clips and hours does the InternVid dataset include?\nAnswer:",
+ " 2,265 clips and 7 hours"
+ ],
+ [
+ "Question:How many video clips and hours does the InternVid dataset include?\nAnswer:",
+ " 234 million clips and 760.3K hours"
+ ],
+ [
+ "Question:How many video clips and hours does the InternVid dataset include?\nAnswer:",
+ " 35,000 clips and 65 hours"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.848697662353516,
+ false
+ ]
+ ],
+ [
+ [
+ -21.163166046142578,
+ false
+ ]
+ ],
+ [
+ [
+ -40.58928298950195,
+ false
+ ]
+ ],
+ [
+ [
+ -19.135757446289062,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.848697662353516,
+ false
+ ],
+ [
+ -21.163166046142578,
+ false
+ ],
+ [
+ -40.58928298950195,
+ false
+ ],
+ [
+ -19.135757446289062,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7ccc4b4a88a7e240547fd23c9a7bed6ef3a596e323340ff9f56c7e337aeffb38",
+ "prompt_hash": "6d123085222da44784840c0b919186526daf6426113cc555b4d15ce2daece6af",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "What resolution do the videos in the \\u201chd-dataset\\u201d (HD version of the new dataset) achieve?",
+ "choices": [
+ "512×512",
+ "1920×1080",
+ "640×360",
+ "1280×720"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What resolution do the videos in the \\u201chd-dataset\\u201d (HD version of the new dataset) achieve?\nAnswer:",
+ " 512×512"
+ ],
+ [
+ "Question:What resolution do the videos in the \\u201chd-dataset\\u201d (HD version of the new dataset) achieve?\nAnswer:",
+ " 1920×1080"
+ ],
+ [
+ "Question:What resolution do the videos in the \\u201chd-dataset\\u201d (HD version of the new dataset) achieve?\nAnswer:",
+ " 640×360"
+ ],
+ [
+ "Question:What resolution do the videos in the \\u201chd-dataset\\u201d (HD version of the new dataset) achieve?\nAnswer:",
+ " 1280×720"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.11259651184082,
+ false
+ ]
+ ],
+ [
+ [
+ -6.933300018310547,
+ false
+ ]
+ ],
+ [
+ [
+ -9.924569129943848,
+ false
+ ]
+ ],
+ [
+ [
+ -8.05185317993164,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.11259651184082,
+ false
+ ],
+ [
+ -6.933300018310547,
+ false
+ ],
+ [
+ -9.924569129943848,
+ false
+ ],
+ [
+ -8.05185317993164,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "68595c0f4ac35ddb77399e10113b20bcee003b37dadc9b9416f1f86c43cdbf6a",
+ "prompt_hash": "9ff2435dd70469a91ad50c31a8a09ec1e749efb2b188ee18f7e70ae23854d4f9",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "Which dataset was used as the retain dataset for harmful request refusal training?",
+ "choices": [
+ "Magpie-Align",
+ "Wikitext",
+ "Camel-bio",
+ "CTFtime"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset was used as the retain dataset for harmful request refusal training?\nAnswer:",
+ " Magpie-Align"
+ ],
+ [
+ "Question:Which dataset was used as the retain dataset for harmful request refusal training?\nAnswer:",
+ " Wikitext"
+ ],
+ [
+ "Question:Which dataset was used as the retain dataset for harmful request refusal training?\nAnswer:",
+ " Camel-bio"
+ ],
+ [
+ "Question:Which dataset was used as the retain dataset for harmful request refusal training?\nAnswer:",
+ " CTFtime"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.949909210205078,
+ false
+ ]
+ ],
+ [
+ [
+ -12.598445892333984,
+ false
+ ]
+ ],
+ [
+ [
+ -29.680171966552734,
+ false
+ ]
+ ],
+ [
+ [
+ -28.077442169189453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.949909210205078,
+ false
+ ],
+ [
+ -12.598445892333984,
+ false
+ ],
+ [
+ -29.680171966552734,
+ false
+ ],
+ [
+ -28.077442169189453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7c7ab492f9d6fb841340d642fa8084c5abd581c141445b0e25816877a193aa7d",
+ "prompt_hash": "73b6ceeaa2d9583cf65a3e36a39c36cade024ff3a12289eae9f7c7422f18af51",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "What optimizer was used for train-time adversaries in the Biosecurity weaponization restriction setup?",
+ "choices": [
+ "AdamW",
+ "SGD with Nesterov Momentum",
+ "Adadelta",
+ "Schedule Free AdamW"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What optimizer was used for train-time adversaries in the Biosecurity weaponization restriction setup?\nAnswer:",
+ " AdamW"
+ ],
+ [
+ "Question:What optimizer was used for train-time adversaries in the Biosecurity weaponization restriction setup?\nAnswer:",
+ " SGD with Nesterov Momentum"
+ ],
+ [
+ "Question:What optimizer was used for train-time adversaries in the Biosecurity weaponization restriction setup?\nAnswer:",
+ " Adadelta"
+ ],
+ [
+ "Question:What optimizer was used for train-time adversaries in the Biosecurity weaponization restriction setup?\nAnswer:",
+ " Schedule Free AdamW"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.982319355010986,
+ false
+ ]
+ ],
+ [
+ [
+ -16.44598388671875,
+ false
+ ]
+ ],
+ [
+ [
+ -7.690619945526123,
+ false
+ ]
+ ],
+ [
+ [
+ -31.53502655029297,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.982319355010986,
+ false
+ ],
+ [
+ -16.44598388671875,
+ false
+ ],
+ [
+ -7.690619945526123,
+ false
+ ],
+ [
+ -31.53502655029297,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f8e9a563d381fb960aa6e786dad81b874336a607396c0768ee26742c75b881d4",
+ "prompt_hash": "3c661c4dc3ad9162e3993d2761aa2ee773b88ac8b9353087f14c1579f1711327",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "How many adversary setups were simulated for Cybersecurity weaponization restriction during training?",
+ "choices": [
+ "2",
+ "4",
+ "6",
+ "8"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many adversary setups were simulated for Cybersecurity weaponization restriction during training?\nAnswer:",
+ " 2"
+ ],
+ [
+ "Question:How many adversary setups were simulated for Cybersecurity weaponization restriction during training?\nAnswer:",
+ " 4"
+ ],
+ [
+ "Question:How many adversary setups were simulated for Cybersecurity weaponization restriction during training?\nAnswer:",
+ " 6"
+ ],
+ [
+ "Question:How many adversary setups were simulated for Cybersecurity weaponization restriction during training?\nAnswer:",
+ " 8"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.0547232627868652,
+ false
+ ]
+ ],
+ [
+ [
+ -3.540640354156494,
+ false
+ ]
+ ],
+ [
+ [
+ -4.074788570404053,
+ false
+ ]
+ ],
+ [
+ [
+ -4.373826503753662,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.0547232627868652,
+ false
+ ],
+ [
+ -3.540640354156494,
+ false
+ ],
+ [
+ -4.074788570404053,
+ false
+ ],
+ [
+ -4.373826503753662,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b5e1ccec8cfe6f15e81a591cf22a589bb992cfee4e754932728adb85e0877637",
+ "prompt_hash": "64f0040af9d1edaa68dde03333b2d294fd6c95538f6dfd8acfabd6a86b688086",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "In the additional harmful request refusal results, what was the Post-Attack ASR of the TAR method?",
+ "choices": [
+ "84.8",
+ "78.3",
+ "74.5",
+ "63.9"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:In the additional harmful request refusal results, what was the Post-Attack ASR of the TAR method?\nAnswer:",
+ " 84.8"
+ ],
+ [
+ "Question:In the additional harmful request refusal results, what was the Post-Attack ASR of the TAR method?\nAnswer:",
+ " 78.3"
+ ],
+ [
+ "Question:In the additional harmful request refusal results, what was the Post-Attack ASR of the TAR method?\nAnswer:",
+ " 74.5"
+ ],
+ [
+ "Question:In the additional harmful request refusal results, what was the Post-Attack ASR of the TAR method?\nAnswer:",
+ " 63.9"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.289198875427246,
+ false
+ ]
+ ],
+ [
+ [
+ -9.459244728088379,
+ false
+ ]
+ ],
+ [
+ [
+ -9.550447463989258,
+ false
+ ]
+ ],
+ [
+ [
+ -9.714252471923828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.289198875427246,
+ false
+ ],
+ [
+ -9.459244728088379,
+ false
+ ],
+ [
+ -9.550447463989258,
+ false
+ ],
+ [
+ -9.714252471923828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "785f5608cc184077484fbf0dac845374b6161aa05d6f07c68f282d09fcc69fe8",
+ "prompt_hash": "42b34dfe5d13cad8f57f2d25f673ef255ed327321f125c23443d82caa6cbdd0f",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "Which dataset was scraped to construct the Cybersecurity forget dataset?",
+ "choices": [
+ "Camel AI Biology",
+ "CTFtime writeups",
+ "WMDP",
+ "Pile-bio Retain"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset was scraped to construct the Cybersecurity forget dataset?\nAnswer:",
+ " Camel AI Biology"
+ ],
+ [
+ "Question:Which dataset was scraped to construct the Cybersecurity forget dataset?\nAnswer:",
+ " CTFtime writeups"
+ ],
+ [
+ "Question:Which dataset was scraped to construct the Cybersecurity forget dataset?\nAnswer:",
+ " WMDP"
+ ],
+ [
+ "Question:Which dataset was scraped to construct the Cybersecurity forget dataset?\nAnswer:",
+ " Pile-bio Retain"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -36.0738410949707,
+ false
+ ]
+ ],
+ [
+ [
+ -41.3992919921875,
+ false
+ ]
+ ],
+ [
+ [
+ -16.297882080078125,
+ false
+ ]
+ ],
+ [
+ [
+ -48.197181701660156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -36.0738410949707,
+ false
+ ],
+ [
+ -41.3992919921875,
+ false
+ ],
+ [
+ -16.297882080078125,
+ false
+ ],
+ [
+ -48.197181701660156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9b5d1e8c7027ddc744eeace2cc139a04af92ebd1bf2b40858abd6a1e04cbfc6e",
+ "prompt_hash": "47bbc435192555e617c67175eb3a4de72282016369dd827a64650787898b3e71",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "In the Last Letter Concatenation task, how many problem queries are generated for each input length?",
+ "choices": [
+ "128",
+ "350",
+ "4096",
+ "7200"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In the Last Letter Concatenation task, how many problem queries are generated for each input length?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:In the Last Letter Concatenation task, how many problem queries are generated for each input length?\nAnswer:",
+ " 350"
+ ],
+ [
+ "Question:In the Last Letter Concatenation task, how many problem queries are generated for each input length?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:In the Last Letter Concatenation task, how many problem queries are generated for each input length?\nAnswer:",
+ " 7200"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.70600414276123,
+ false
+ ]
+ ],
+ [
+ [
+ -10.003148078918457,
+ false
+ ]
+ ],
+ [
+ [
+ -10.063257217407227,
+ false
+ ]
+ ],
+ [
+ [
+ -13.331168174743652,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.70600414276123,
+ false
+ ],
+ [
+ -10.003148078918457,
+ false
+ ],
+ [
+ -10.063257217407227,
+ false
+ ],
+ [
+ -13.331168174743652,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b48a19f02f6e3781a3960dc5a958e312b6e2457f2179f5a77d9fca4adc6283b7",
+ "prompt_hash": "39737723d57a40e7a488825a3a9245f925f737b612e3215a668bbb522bc1c2c0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "For the Word Sorting task, how many lists of words are generated as problem queries for each input length?",
+ "choices": [
+ "128",
+ "350",
+ "4096",
+ "7200"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:For the Word Sorting task, how many lists of words are generated as problem queries for each input length?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:For the Word Sorting task, how many lists of words are generated as problem queries for each input length?\nAnswer:",
+ " 350"
+ ],
+ [
+ "Question:For the Word Sorting task, how many lists of words are generated as problem queries for each input length?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:For the Word Sorting task, how many lists of words are generated as problem queries for each input length?\nAnswer:",
+ " 7200"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.128795623779297,
+ false
+ ]
+ ],
+ [
+ [
+ -10.338838577270508,
+ false
+ ]
+ ],
+ [
+ [
+ -10.242339134216309,
+ false
+ ]
+ ],
+ [
+ [
+ -13.073063850402832,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.128795623779297,
+ false
+ ],
+ [
+ -10.338838577270508,
+ false
+ ],
+ [
+ -10.242339134216309,
+ false
+ ],
+ [
+ -13.073063850402832,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7d4e66b5e39a6f94c63b31e4990ba314e9cfc5c45bebbb1ac8207ba01fb1b0a3",
+ "prompt_hash": "8f3960d8166d21235488fa33ac5c46b15b7149d8c82186bf7886d3734e4f2c14",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "In the Grade School Math dataset, approximately how many problems are used for training?",
+ "choices": [
+ "1.3K",
+ "128",
+ "7.2K",
+ "50K"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the Grade School Math dataset, approximately how many problems are used for training?\nAnswer:",
+ " 1.3K"
+ ],
+ [
+ "Question:In the Grade School Math dataset, approximately how many problems are used for training?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:In the Grade School Math dataset, approximately how many problems are used for training?\nAnswer:",
+ " 7.2K"
+ ],
+ [
+ "Question:In the Grade School Math dataset, approximately how many problems are used for training?\nAnswer:",
+ " 50K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.14500617980957,
+ false
+ ]
+ ],
+ [
+ [
+ -7.693936824798584,
+ false
+ ]
+ ],
+ [
+ [
+ -12.409635543823242,
+ false
+ ]
+ ],
+ [
+ [
+ -8.355731964111328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.14500617980957,
+ false
+ ],
+ [
+ -7.693936824798584,
+ false
+ ],
+ [
+ -12.409635543823242,
+ false
+ ],
+ [
+ -8.355731964111328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ddfcc10d4cb72f3178246031e500bd4e67b7661425f254523ce17198c9b51dbf",
+ "prompt_hash": "4db725a7777f9e61ed2d46829e43cf32250785dd099802a22a78ade8030be237",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "Which optimizer is used for training Gemma-based generative verifiers?",
+ "choices": [
+ "SGD",
+ "Adam",
+ "RMSprop",
+ "Adagrad"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which optimizer is used for training Gemma-based generative verifiers?\nAnswer:",
+ " SGD"
+ ],
+ [
+ "Question:Which optimizer is used for training Gemma-based generative verifiers?\nAnswer:",
+ " Adam"
+ ],
+ [
+ "Question:Which optimizer is used for training Gemma-based generative verifiers?\nAnswer:",
+ " RMSprop"
+ ],
+ [
+ "Question:Which optimizer is used for training Gemma-based generative verifiers?\nAnswer:",
+ " Adagrad"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.656381607055664,
+ false
+ ]
+ ],
+ [
+ [
+ -4.861548900604248,
+ false
+ ]
+ ],
+ [
+ [
+ -10.62295913696289,
+ false
+ ]
+ ],
+ [
+ [
+ -10.300954818725586,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.656381607055664,
+ false
+ ],
+ [
+ -4.861548900604248,
+ false
+ ],
+ [
+ -10.62295913696289,
+ false
+ ],
+ [
+ -10.300954818725586,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b4f41f766d1df5f2e48170794a9089c321f14247018cfe937b62066953b701a2",
+ "prompt_hash": "9363cb97c6af5e29ff7a793c58c6291445cbac5ad99bf7c35222bfdadc47b50d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "What learning rate worked best for DPO training in the described experiments?",
+ "choices": [
+ "1e-7",
+ "5e-7",
+ "1e-6",
+ "2e-6"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What learning rate worked best for DPO training in the described experiments?\nAnswer:",
+ " 1e-7"
+ ],
+ [
+ "Question:What learning rate worked best for DPO training in the described experiments?\nAnswer:",
+ " 5e-7"
+ ],
+ [
+ "Question:What learning rate worked best for DPO training in the described experiments?\nAnswer:",
+ " 1e-6"
+ ],
+ [
+ "Question:What learning rate worked best for DPO training in the described experiments?\nAnswer:",
+ " 2e-6"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.123523712158203,
+ false
+ ]
+ ],
+ [
+ [
+ -9.504151344299316,
+ false
+ ]
+ ],
+ [
+ [
+ -8.128350257873535,
+ false
+ ]
+ ],
+ [
+ [
+ -9.45744514465332,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.123523712158203,
+ false
+ ],
+ [
+ -9.504151344299316,
+ false
+ ],
+ [
+ -8.128350257873535,
+ false
+ ],
+ [
+ -9.45744514465332,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aa2f1f819abc173eee2d667708f63bbd94114eceb9eb24a99d3ca9a048cac5e7",
+ "prompt_hash": "afa0657c4d865c63c194aeb264649949e04b109fc2a251da1cbb8288f6d2c3c3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What is the name of the pre-trained visual encoder developed in the Oryx model?",
+ "choices": [
+ "OryxViT",
+ "CLIP",
+ "NaViT",
+ "FlexiViT"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the name of the pre-trained visual encoder developed in the Oryx model?\nAnswer:",
+ " OryxViT"
+ ],
+ [
+ "Question:What is the name of the pre-trained visual encoder developed in the Oryx model?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:What is the name of the pre-trained visual encoder developed in the Oryx model?\nAnswer:",
+ " NaViT"
+ ],
+ [
+ "Question:What is the name of the pre-trained visual encoder developed in the Oryx model?\nAnswer:",
+ " FlexiViT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.803050994873047,
+ false
+ ]
+ ],
+ [
+ [
+ -3.1500496864318848,
+ false
+ ]
+ ],
+ [
+ [
+ -17.866470336914062,
+ false
+ ]
+ ],
+ [
+ [
+ -14.184885025024414,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.803050994873047,
+ false
+ ],
+ [
+ -3.1500496864318848,
+ false
+ ],
+ [
+ -17.866470336914062,
+ false
+ ],
+ [
+ -14.184885025024414,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "156b7b840777a70e8b642ac95c6705845ad2ff391c9a995ca447269ee8435f98",
+ "prompt_hash": "68d2ed3788c0d39dd7228baf9d11482275475f353ed20d41c46b3cab10d97490",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "Which dataset was used to prepare long-form temporal training data with 'needle-in-a-haystack' tasks?",
+ "choices": [
+ "MovieNet",
+ "ScanQA",
+ "LLaVA-NeXt",
+ "Cambrian-1"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset was used to prepare long-form temporal training data with 'needle-in-a-haystack' tasks?\nAnswer:",
+ " MovieNet"
+ ],
+ [
+ "Question:Which dataset was used to prepare long-form temporal training data with 'needle-in-a-haystack' tasks?\nAnswer:",
+ " ScanQA"
+ ],
+ [
+ "Question:Which dataset was used to prepare long-form temporal training data with 'needle-in-a-haystack' tasks?\nAnswer:",
+ " LLaVA-NeXt"
+ ],
+ [
+ "Question:Which dataset was used to prepare long-form temporal training data with 'needle-in-a-haystack' tasks?\nAnswer:",
+ " Cambrian-1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.061107635498047,
+ false
+ ]
+ ],
+ [
+ [
+ -16.233022689819336,
+ false
+ ]
+ ],
+ [
+ [
+ -17.29337501525879,
+ false
+ ]
+ ],
+ [
+ [
+ -22.008586883544922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.061107635498047,
+ false
+ ],
+ [
+ -16.233022689819336,
+ false
+ ],
+ [
+ -17.29337501525879,
+ false
+ ],
+ [
+ -22.008586883544922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "eba15b55f0b7a7094523969a778e1f9adb1ad8119d2cf8253c2134b659baa96a",
+ "prompt_hash": "849ce8d2eb09cbeba5b325412eb5b336286ebbc1f4864858b8569f2b94124d5a",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "Which tracking model was used to generate coarse correspondences for the ScanQA training set?",
+ "choices": [
+ "Track-Anything",
+ "NaViT",
+ "SigLIP",
+ "FlexiViT"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which tracking model was used to generate coarse correspondences for the ScanQA training set?\nAnswer:",
+ " Track-Anything"
+ ],
+ [
+ "Question:Which tracking model was used to generate coarse correspondences for the ScanQA training set?\nAnswer:",
+ " NaViT"
+ ],
+ [
+ "Question:Which tracking model was used to generate coarse correspondences for the ScanQA training set?\nAnswer:",
+ " SigLIP"
+ ],
+ [
+ "Question:Which tracking model was used to generate coarse correspondences for the ScanQA training set?\nAnswer:",
+ " FlexiViT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.741609573364258,
+ false
+ ]
+ ],
+ [
+ [
+ -14.81590747833252,
+ false
+ ]
+ ],
+ [
+ [
+ -11.319101333618164,
+ false
+ ]
+ ],
+ [
+ [
+ -23.714706420898438,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.741609573364258,
+ false
+ ],
+ [
+ -14.81590747833252,
+ false
+ ],
+ [
+ -11.319101333618164,
+ false
+ ],
+ [
+ -23.714706420898438,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "de765beb9e0c5abd06ea1512e4806499af83248f2e9e33ce3f70050ee8c92677",
+ "prompt_hash": "b3c3c00f007e36c1b86ce3a18f4adf255d055ea83561ca0de94f5c3f37d1bb27",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "In Stage 1 of the Oryx training pipeline, approximately how many supervised fine-tuning image-text pairs were collected?",
+ "choices": [
+ "4 million",
+ "400 thousand",
+ "40 million",
+ "1 million"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:In Stage 1 of the Oryx training pipeline, approximately how many supervised fine-tuning image-text pairs were collected?\nAnswer:",
+ " 4 million"
+ ],
+ [
+ "Question:In Stage 1 of the Oryx training pipeline, approximately how many supervised fine-tuning image-text pairs were collected?\nAnswer:",
+ " 400 thousand"
+ ],
+ [
+ "Question:In Stage 1 of the Oryx training pipeline, approximately how many supervised fine-tuning image-text pairs were collected?\nAnswer:",
+ " 40 million"
+ ],
+ [
+ "Question:In Stage 1 of the Oryx training pipeline, approximately how many supervised fine-tuning image-text pairs were collected?\nAnswer:",
+ " 1 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.426055908203125,
+ false
+ ]
+ ],
+ [
+ [
+ -13.373111724853516,
+ false
+ ]
+ ],
+ [
+ [
+ -9.889270782470703,
+ false
+ ]
+ ],
+ [
+ [
+ -8.437106132507324,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.426055908203125,
+ false
+ ],
+ [
+ -13.373111724853516,
+ false
+ ],
+ [
+ -9.889270782470703,
+ false
+ ],
+ [
+ -8.437106132507324,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "566b2aac0784a025c3eb826a286d646e61de8d7cecbede2afd0985094ec48415",
+ "prompt_hash": "fe109bf7a63cea191cc404f1cfd2cae1cc1277fe4036eaf0e2cb64c20daeab38",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "Which benchmark did the Oryx-1.5-32B model outperform GPT-4o by 7.7%?",
+ "choices": [
+ "MLVU",
+ "LongVideoBench",
+ "NextQA",
+ "OCRBench"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which benchmark did the Oryx-1.5-32B model outperform GPT-4o by 7.7%?\nAnswer:",
+ " MLVU"
+ ],
+ [
+ "Question:Which benchmark did the Oryx-1.5-32B model outperform GPT-4o by 7.7%?\nAnswer:",
+ " LongVideoBench"
+ ],
+ [
+ "Question:Which benchmark did the Oryx-1.5-32B model outperform GPT-4o by 7.7%?\nAnswer:",
+ " NextQA"
+ ],
+ [
+ "Question:Which benchmark did the Oryx-1.5-32B model outperform GPT-4o by 7.7%?\nAnswer:",
+ " OCRBench"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.46422576904297,
+ false
+ ]
+ ],
+ [
+ [
+ -21.4570255279541,
+ false
+ ]
+ ],
+ [
+ [
+ -15.763558387756348,
+ false
+ ]
+ ],
+ [
+ [
+ -15.791434288024902,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.46422576904297,
+ false
+ ],
+ [
+ -21.4570255279541,
+ false
+ ],
+ [
+ -15.763558387756348,
+ false
+ ],
+ [
+ -15.791434288024902,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "929aedefb09734275f0ac9ad7b47f7a727f751bc2aed619a363d3479e01e1ac6",
+ "prompt_hash": "c35ffd77c1af1f3323947385684544d64e854cc292267e354343a7e9cc11c5dd",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "Which activation function is used in the point-wise tokenization embedding for time series points?",
+ "choices": [
+ "ReLU",
+ "SwiGLU",
+ "Tanh",
+ "Sigmoid"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which activation function is used in the point-wise tokenization embedding for time series points?\nAnswer:",
+ " ReLU"
+ ],
+ [
+ "Question:Which activation function is used in the point-wise tokenization embedding for time series points?\nAnswer:",
+ " SwiGLU"
+ ],
+ [
+ "Question:Which activation function is used in the point-wise tokenization embedding for time series points?\nAnswer:",
+ " Tanh"
+ ],
+ [
+ "Question:Which activation function is used in the point-wise tokenization embedding for time series points?\nAnswer:",
+ " Sigmoid"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -3.263493776321411,
+ false
+ ]
+ ],
+ [
+ [
+ -7.855595588684082,
+ false
+ ]
+ ],
+ [
+ [
+ -4.75715970993042,
+ false
+ ]
+ ],
+ [
+ [
+ -4.864443302154541,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -3.263493776321411,
+ false
+ ],
+ [
+ -7.855595588684082,
+ false
+ ],
+ [
+ -4.75715970993042,
+ false
+ ],
+ [
+ -4.864443302154541,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dcd247f6043e0192a6a4ab1861e955946c93c6d730b7eb13d08215173969bba0",
+ "prompt_hash": "1372eb375cb978e2bf04c001594c7612e60f838b77d77a7ae699921ef3940ec3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "What type of positional embedding is adopted instead of absolute positional encoding?",
+ "choices": [
+ "Sinusoidal positional encoding",
+ "Rotary positional embeddings",
+ "Learned positional embeddings",
+ "Relative positional embeddings"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of positional embedding is adopted instead of absolute positional encoding?\nAnswer:",
+ " Sinusoidal positional encoding"
+ ],
+ [
+ "Question:What type of positional embedding is adopted instead of absolute positional encoding?\nAnswer:",
+ " Rotary positional embeddings"
+ ],
+ [
+ "Question:What type of positional embedding is adopted instead of absolute positional encoding?\nAnswer:",
+ " Learned positional embeddings"
+ ],
+ [
+ "Question:What type of positional embedding is adopted instead of absolute positional encoding?\nAnswer:",
+ " Relative positional embeddings"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.207653999328613,
+ false
+ ]
+ ],
+ [
+ [
+ -13.981444358825684,
+ false
+ ]
+ ],
+ [
+ [
+ -14.838812828063965,
+ false
+ ]
+ ],
+ [
+ [
+ -9.279513359069824,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.207653999328613,
+ false
+ ],
+ [
+ -13.981444358825684,
+ false
+ ],
+ [
+ -14.838812828063965,
+ false
+ ],
+ [
+ -9.279513359069824,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c0c0237d53201c05ca5446b5272bb12d88287d6e79e64c304a49e708b209080f",
+ "prompt_hash": "7e0afa984471c4a497ec57593d7a8f8d51751bad8017b324dfc9344edc4d5123",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "How many time points does the constructed dataset include after processing?",
+ "choices": [
+ "3 billion",
+ "30 billion",
+ "300 billion",
+ "3 trillion"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many time points does the constructed dataset include after processing?\nAnswer:",
+ " 3 billion"
+ ],
+ [
+ "Question:How many time points does the constructed dataset include after processing?\nAnswer:",
+ " 30 billion"
+ ],
+ [
+ "Question:How many time points does the constructed dataset include after processing?\nAnswer:",
+ " 300 billion"
+ ],
+ [
+ "Question:How many time points does the constructed dataset include after processing?\nAnswer:",
+ " 3 trillion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.558652877807617,
+ false
+ ]
+ ],
+ [
+ [
+ -17.89537811279297,
+ false
+ ]
+ ],
+ [
+ [
+ -18.499900817871094,
+ false
+ ]
+ ],
+ [
+ [
+ -16.72484016418457,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.558652877807617,
+ false
+ ],
+ [
+ -17.89537811279297,
+ false
+ ],
+ [
+ -18.499900817871094,
+ false
+ ],
+ [
+ -16.72484016418457,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "226e991f49c1d5fd3206a0a0a278cc3dc98554f228cb4e67b2b2ba2fe49d96c5",
+ "prompt_hash": "eaa8068334e6738a83830dd69c2d18959f2e120641de642a72f068823ca70be6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "Which loss function is used to improve robustness against outliers in training?",
+ "choices": [
+ "Cross-entropy loss",
+ "MSE loss",
+ "Huber loss",
+ "KL-divergence loss"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which loss function is used to improve robustness against outliers in training?\nAnswer:",
+ " Cross-entropy loss"
+ ],
+ [
+ "Question:Which loss function is used to improve robustness against outliers in training?\nAnswer:",
+ " MSE loss"
+ ],
+ [
+ "Question:Which loss function is used to improve robustness against outliers in training?\nAnswer:",
+ " Huber loss"
+ ],
+ [
+ "Question:Which loss function is used to improve robustness against outliers in training?\nAnswer:",
+ " KL-divergence loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.551655292510986,
+ false
+ ]
+ ],
+ [
+ [
+ -9.450379371643066,
+ false
+ ]
+ ],
+ [
+ [
+ -10.613362312316895,
+ false
+ ]
+ ],
+ [
+ [
+ -11.747757911682129,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.551655292510986,
+ false
+ ],
+ [
+ -9.450379371643066,
+ false
+ ],
+ [
+ -10.613362312316895,
+ false
+ ],
+ [
+ -11.747757911682129,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c528078998f2fb64b3e49b759f52aa67bf869dfc58966f3a6c80b96a53d35824",
+ "prompt_hash": "228d572ea74fd9a40d2de41cf02d95b737734e128b282417db9a0f171f561923",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "What is the maximum sequence length used during training?",
+ "choices": [
+ "1024",
+ "2048",
+ "4096",
+ "8192"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum sequence length used during training?\nAnswer:",
+ " 1024"
+ ],
+ [
+ "Question:What is the maximum sequence length used during training?\nAnswer:",
+ " 2048"
+ ],
+ [
+ "Question:What is the maximum sequence length used during training?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:What is the maximum sequence length used during training?\nAnswer:",
+ " 8192"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.160928726196289,
+ false
+ ]
+ ],
+ [
+ [
+ -5.0833048820495605,
+ false
+ ]
+ ],
+ [
+ [
+ -5.026993751525879,
+ false
+ ]
+ ],
+ [
+ [
+ -5.385982036590576,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.160928726196289,
+ false
+ ],
+ [
+ -5.0833048820495605,
+ false
+ ],
+ [
+ -5.026993751525879,
+ false
+ ],
+ [
+ -5.385982036590576,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "390e1da76812662b20880e121591fd850a1a17f394ad7930d5eb4dff5289720e",
+ "prompt_hash": "a4432fe7d5f31174a59b3e50b838f427cb5e616f76805fb50d00d7116ba27897",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "How many Kaggle competitions are included in MLE-bench?",
+ "choices": [
+ "50",
+ "75",
+ "100",
+ "150"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many Kaggle competitions are included in MLE-bench?\nAnswer:",
+ " 50"
+ ],
+ [
+ "Question:How many Kaggle competitions are included in MLE-bench?\nAnswer:",
+ " 75"
+ ],
+ [
+ "Question:How many Kaggle competitions are included in MLE-bench?\nAnswer:",
+ " 100"
+ ],
+ [
+ "Question:How many Kaggle competitions are included in MLE-bench?\nAnswer:",
+ " 150"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.944413185119629,
+ false
+ ]
+ ],
+ [
+ [
+ -8.142876625061035,
+ false
+ ]
+ ],
+ [
+ [
+ -7.314369201660156,
+ false
+ ]
+ ],
+ [
+ [
+ -9.207300186157227,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.944413185119629,
+ false
+ ],
+ [
+ -8.142876625061035,
+ false
+ ],
+ [
+ -7.314369201660156,
+ false
+ ],
+ [
+ -9.207300186157227,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "052584f68f0b2428e10a00891e5d2883b043bf7950c1da756deb1605ef48fc53",
+ "prompt_hash": "66e4628c81fbdc9d2ae738e93618091ef84479831f56b4c8e0ed12e03c356ae5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "What was the total value of prizes awarded across the 75 competitions in MLE-bench?",
+ "choices": [
+ "$1,000,000",
+ "$1,948,016",
+ "$2,500,000",
+ "$5,000,000"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What was the total value of prizes awarded across the 75 competitions in MLE-bench?\nAnswer:",
+ " $1,000,000"
+ ],
+ [
+ "Question:What was the total value of prizes awarded across the 75 competitions in MLE-bench?\nAnswer:",
+ " $1,948,016"
+ ],
+ [
+ "Question:What was the total value of prizes awarded across the 75 competitions in MLE-bench?\nAnswer:",
+ " $2,500,000"
+ ],
+ [
+ "Question:What was the total value of prizes awarded across the 75 competitions in MLE-bench?\nAnswer:",
+ " $5,000,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.74365234375,
+ false
+ ]
+ ],
+ [
+ [
+ -20.456871032714844,
+ false
+ ]
+ ],
+ [
+ [
+ -10.962664604187012,
+ false
+ ]
+ ],
+ [
+ [
+ -10.215169906616211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.74365234375,
+ false
+ ],
+ [
+ -20.456871032714844,
+ false
+ ],
+ [
+ -10.962664604187012,
+ false
+ ],
+ [
+ -10.215169906616211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "86ca1ab5e80d755d678b903acba040813918e585858b1b912f6eedb3a3b34d59",
+ "prompt_hash": "8b7c80469eced0452b5db403fb4d86ea98b8a11306bd639158ddcc4dfeb3140f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "Which model with the AIDE scaffold achieved a medal in 16.9% of competitions on MLE-bench?",
+ "choices": [
+ "GPT-4o",
+ "Claude 3.5 Sonnet",
+ "o1-preview",
+ "Llama 3.1 405B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model with the AIDE scaffold achieved a medal in 16.9% of competitions on MLE-bench?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which model with the AIDE scaffold achieved a medal in 16.9% of competitions on MLE-bench?\nAnswer:",
+ " Claude 3.5 Sonnet"
+ ],
+ [
+ "Question:Which model with the AIDE scaffold achieved a medal in 16.9% of competitions on MLE-bench?\nAnswer:",
+ " o1-preview"
+ ],
+ [
+ "Question:Which model with the AIDE scaffold achieved a medal in 16.9% of competitions on MLE-bench?\nAnswer:",
+ " Llama 3.1 405B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.823843002319336,
+ false
+ ]
+ ],
+ [
+ [
+ -12.214433670043945,
+ false
+ ]
+ ],
+ [
+ [
+ -29.94273567199707,
+ false
+ ]
+ ],
+ [
+ [
+ -38.722164154052734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.823843002319336,
+ false
+ ],
+ [
+ -12.214433670043945,
+ false
+ ],
+ [
+ -29.94273567199707,
+ false
+ ],
+ [
+ -38.722164154052734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8aa00e51fa2ef433fd813fa8e76efe0379871555e0115b5953bfb69dc498c845",
+ "prompt_hash": "ae6765ca651d6c2d2afad9f8a23da90dc99b9b8fc63d5780eb2380285524018f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "What is the percentage of competitions in MLE-bench categorized as Medium complexity?",
+ "choices": [
+ "20%",
+ "30%",
+ "50%",
+ "70%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the percentage of competitions in MLE-bench categorized as Medium complexity?\nAnswer:",
+ " 20%"
+ ],
+ [
+ "Question:What is the percentage of competitions in MLE-bench categorized as Medium complexity?\nAnswer:",
+ " 30%"
+ ],
+ [
+ "Question:What is the percentage of competitions in MLE-bench categorized as Medium complexity?\nAnswer:",
+ " 50%"
+ ],
+ [
+ "Question:What is the percentage of competitions in MLE-bench categorized as Medium complexity?\nAnswer:",
+ " 70%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.905912399291992,
+ false
+ ]
+ ],
+ [
+ [
+ -9.422713279724121,
+ false
+ ]
+ ],
+ [
+ [
+ -9.525880813598633,
+ false
+ ]
+ ],
+ [
+ [
+ -10.475693702697754,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.905912399291992,
+ false
+ ],
+ [
+ -9.422713279724121,
+ false
+ ],
+ [
+ -9.525880813598633,
+ false
+ ],
+ [
+ -10.475693702697754,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ce97fde4984d268d82cf472e616e69071fe67efd92522924494fca607ef02b45",
+ "prompt_hash": "295e3ced57c305763394eac8e83129b55dbc39b4d42cc18b9ba35bbd27ea2297",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "What type of hardware setup was provided to agents in the main experiments?",
+ "choices": [
+ "8 vCPUs, 128GB RAM, one Nvidia P100 GPU",
+ "36 vCPUs, 440GB RAM, one Nvidia A10 GPU",
+ "64 vCPUs, 1TB RAM, two Nvidia A100 GPUs",
+ "16 vCPUs, 256GB RAM, CPU-only"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What type of hardware setup was provided to agents in the main experiments?\nAnswer:",
+ " 8 vCPUs, 128GB RAM, one Nvidia P100 GPU"
+ ],
+ [
+ "Question:What type of hardware setup was provided to agents in the main experiments?\nAnswer:",
+ " 36 vCPUs, 440GB RAM, one Nvidia A10 GPU"
+ ],
+ [
+ "Question:What type of hardware setup was provided to agents in the main experiments?\nAnswer:",
+ " 64 vCPUs, 1TB RAM, two Nvidia A100 GPUs"
+ ],
+ [
+ "Question:What type of hardware setup was provided to agents in the main experiments?\nAnswer:",
+ " 16 vCPUs, 256GB RAM, CPU-only"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -39.894012451171875,
+ false
+ ]
+ ],
+ [
+ [
+ -50.85301971435547,
+ false
+ ]
+ ],
+ [
+ [
+ -34.946414947509766,
+ false
+ ]
+ ],
+ [
+ [
+ -34.39673614501953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -39.894012451171875,
+ false
+ ],
+ [
+ -50.85301971435547,
+ false
+ ],
+ [
+ -34.946414947509766,
+ false
+ ],
+ [
+ -34.39673614501953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "324c996d7e72ebec5325fd5337852d942c0db98233ed0d4d48ccca45ecb50ec8",
+ "prompt_hash": "4cda520c3bf17ff9d3431813d3b315605c015fe02763d0c869cc04b255e6719e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "How many text tokens can the Long-prompt MetaCLIP model process?",
+ "choices": [
+ "128",
+ "256",
+ "512",
+ "1024"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many text tokens can the Long-prompt MetaCLIP model process?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:How many text tokens can the Long-prompt MetaCLIP model process?\nAnswer:",
+ " 256"
+ ],
+ [
+ "Question:How many text tokens can the Long-prompt MetaCLIP model process?\nAnswer:",
+ " 512"
+ ],
+ [
+ "Question:How many text tokens can the Long-prompt MetaCLIP model process?\nAnswer:",
+ " 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.544123649597168,
+ false
+ ]
+ ],
+ [
+ [
+ -5.784742832183838,
+ false
+ ]
+ ],
+ [
+ [
+ -5.334044933319092,
+ false
+ ]
+ ],
+ [
+ [
+ -5.7418904304504395,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.544123649597168,
+ false
+ ],
+ [
+ -5.784742832183838,
+ false
+ ],
+ [
+ -5.334044933319092,
+ false
+ ],
+ [
+ -5.7418904304504395,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d1b2ded393a41d5e4100bc8ae2aae64f9edeb103890d6b8b9ff30606131a999e",
+ "prompt_hash": "7c40cd813ebb5da0e8c000275aae0577ed7e15a0c8036e8bba23fa8fbe9e72f8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "Which text encoder is used to encode the text within quotation marks for visual text generation?",
+ "choices": [
+ "BERT",
+ "ByT5",
+ "T5-base",
+ "GPT-2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which text encoder is used to encode the text within quotation marks for visual text generation?\nAnswer:",
+ " BERT"
+ ],
+ [
+ "Question:Which text encoder is used to encode the text within quotation marks for visual text generation?\nAnswer:",
+ " ByT5"
+ ],
+ [
+ "Question:Which text encoder is used to encode the text within quotation marks for visual text generation?\nAnswer:",
+ " T5-base"
+ ],
+ [
+ "Question:Which text encoder is used to encode the text within quotation marks for visual text generation?\nAnswer:",
+ " GPT-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.217916011810303,
+ false
+ ]
+ ],
+ [
+ [
+ -19.261009216308594,
+ false
+ ]
+ ],
+ [
+ [
+ -9.65689754486084,
+ false
+ ]
+ ],
+ [
+ [
+ -8.248754501342773,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.217916011810303,
+ false
+ ],
+ [
+ -19.261009216308594,
+ false
+ ],
+ [
+ -9.65689754486084,
+ false
+ ],
+ [
+ -8.248754501342773,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f27c798ae14ce3089bf0f0c00deae0322b0372fa8f26a19b8f78218d3ff0714a",
+ "prompt_hash": "13d9d8a856a2a64dcbc496b7df5c45a65221315895eb20b594e88ea16556d4a2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "What is the context length of the \\u005cOursVideo model mentioned as being memory capacity constrained?",
+ "choices": [
+ "32K",
+ "64K",
+ "73K",
+ "100K"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the context length of the \\u005cOursVideo model mentioned as being memory capacity constrained?\nAnswer:",
+ " 32K"
+ ],
+ [
+ "Question:What is the context length of the \\u005cOursVideo model mentioned as being memory capacity constrained?\nAnswer:",
+ " 64K"
+ ],
+ [
+ "Question:What is the context length of the \\u005cOursVideo model mentioned as being memory capacity constrained?\nAnswer:",
+ " 73K"
+ ],
+ [
+ "Question:What is the context length of the \\u005cOursVideo model mentioned as being memory capacity constrained?\nAnswer:",
+ " 100K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.79046106338501,
+ false
+ ]
+ ],
+ [
+ [
+ -6.787683010101318,
+ false
+ ]
+ ],
+ [
+ [
+ -13.908809661865234,
+ false
+ ]
+ ],
+ [
+ [
+ -8.865966796875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.79046106338501,
+ false
+ ],
+ [
+ -6.787683010101318,
+ false
+ ],
+ [
+ -13.908809661865234,
+ false
+ ],
+ [
+ -8.865966796875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "809bdf95a7d2b2e018745fc5b2d5201b7de5809c2a97ce5d890bfeeeed94d5c3",
+ "prompt_hash": "03e62a79c165dedef8a425e117dcebd7ed4031dd7561a4ae8a557b510b8eeed9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which optimizer is used for both pre-training and fine-tuning of the 13B parameter model?",
+ "choices": [
+ "SGD",
+ "Adam",
+ "AdamW",
+ "RMSProp"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which optimizer is used for both pre-training and fine-tuning of the 13B parameter model?\nAnswer:",
+ " SGD"
+ ],
+ [
+ "Question:Which optimizer is used for both pre-training and fine-tuning of the 13B parameter model?\nAnswer:",
+ " Adam"
+ ],
+ [
+ "Question:Which optimizer is used for both pre-training and fine-tuning of the 13B parameter model?\nAnswer:",
+ " AdamW"
+ ],
+ [
+ "Question:Which optimizer is used for both pre-training and fine-tuning of the 13B parameter model?\nAnswer:",
+ " RMSProp"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.288270950317383,
+ false
+ ]
+ ],
+ [
+ [
+ -3.32779598236084,
+ false
+ ]
+ ],
+ [
+ [
+ -3.610401153564453,
+ false
+ ]
+ ],
+ [
+ [
+ -9.468937873840332,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.288270950317383,
+ false
+ ],
+ [
+ -3.32779598236084,
+ false
+ ],
+ [
+ -3.610401153564453,
+ false
+ ],
+ [
+ -9.468937873840332,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "99c196e8e4c7409c2b7aa9f30d47df15ca1b0c7a722cbbc15a613bfd9dd5aef3",
+ "prompt_hash": "43cdf1515da7e9b1eb00b02198d7d783e08e0881430e1f3c47504dd92e08ae11",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "What is the audio sampling rate represented in the DAC-VAE latent features?",
+ "choices": [
+ "16kHz",
+ "24kHz",
+ "32kHz",
+ "48kHz"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the audio sampling rate represented in the DAC-VAE latent features?\nAnswer:",
+ " 16kHz"
+ ],
+ [
+ "Question:What is the audio sampling rate represented in the DAC-VAE latent features?\nAnswer:",
+ " 24kHz"
+ ],
+ [
+ "Question:What is the audio sampling rate represented in the DAC-VAE latent features?\nAnswer:",
+ " 32kHz"
+ ],
+ [
+ "Question:What is the audio sampling rate represented in the DAC-VAE latent features?\nAnswer:",
+ " 48kHz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.249194145202637,
+ false
+ ]
+ ],
+ [
+ [
+ -6.91918420791626,
+ false
+ ]
+ ],
+ [
+ [
+ -7.8241071701049805,
+ false
+ ]
+ ],
+ [
+ [
+ -5.517940521240234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.249194145202637,
+ false
+ ],
+ [
+ -6.91918420791626,
+ false
+ ],
+ [
+ -7.8241071701049805,
+ false
+ ],
+ [
+ -5.517940521240234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "145ccfd7bc07648de249cf0b46076373042acd5df8adc434331dc87be75f34bd",
+ "prompt_hash": "55567af4aa8ff2edd11efac29095b85b6d1f930db9afcbb8f368d9b15c592253",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What does the 'point-wise' input format for LLM-as-a-judge involve?",
+ "choices": [
+ "Comparing multiple candidates simultaneously",
+ "Evaluating a single candidate in isolation",
+ "Ranking a list of outputs",
+ "Generating multiple outputs from one input"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does the 'point-wise' input format for LLM-as-a-judge involve?\nAnswer:",
+ " Comparing multiple candidates simultaneously"
+ ],
+ [
+ "Question:What does the 'point-wise' input format for LLM-as-a-judge involve?\nAnswer:",
+ " Evaluating a single candidate in isolation"
+ ],
+ [
+ "Question:What does the 'point-wise' input format for LLM-as-a-judge involve?\nAnswer:",
+ " Ranking a list of outputs"
+ ],
+ [
+ "Question:What does the 'point-wise' input format for LLM-as-a-judge involve?\nAnswer:",
+ " Generating multiple outputs from one input"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.684053421020508,
+ false
+ ]
+ ],
+ [
+ [
+ -25.727405548095703,
+ false
+ ]
+ ],
+ [
+ [
+ -24.2668399810791,
+ false
+ ]
+ ],
+ [
+ [
+ -20.393577575683594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.684053421020508,
+ false
+ ],
+ [
+ -25.727405548095703,
+ false
+ ],
+ [
+ -24.2668399810791,
+ false
+ ],
+ [
+ -20.393577575683594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5147b0a7b504381ff4f451965e9cb04f6545f215720ef31c8c0c3afdcd189f9a",
+ "prompt_hash": "da8f6cedd16b324786b50aa5729cb61fb27c4084eee4aaeb83c4c531386cf529",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which metric is used in JudgeBench to evaluate general performance?",
+ "choices": [
+ "Discernment Score",
+ "Accuracy and F1",
+ "Cohen’s kappa and Correlation",
+ "BrierScore"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which metric is used in JudgeBench to evaluate general performance?\nAnswer:",
+ " Discernment Score"
+ ],
+ [
+ "Question:Which metric is used in JudgeBench to evaluate general performance?\nAnswer:",
+ " Accuracy and F1"
+ ],
+ [
+ "Question:Which metric is used in JudgeBench to evaluate general performance?\nAnswer:",
+ " Cohen’s kappa and Correlation"
+ ],
+ [
+ "Question:Which metric is used in JudgeBench to evaluate general performance?\nAnswer:",
+ " BrierScore"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.43678855895996,
+ false
+ ]
+ ],
+ [
+ [
+ -9.403539657592773,
+ false
+ ]
+ ],
+ [
+ [
+ -24.37989044189453,
+ false
+ ]
+ ],
+ [
+ [
+ -14.429201126098633,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.43678855895996,
+ false
+ ],
+ [
+ -9.403539657592773,
+ false
+ ],
+ [
+ -24.37989044189453,
+ false
+ ],
+ [
+ -14.429201126098633,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c853498ca30f12dca012b59e7d6af17ed62c08019674f5677eb5aa99e4380064",
+ "prompt_hash": "63b034eedcf0a182cce93896fb71599c6b54dafef9ed34606e8cefe024d3461d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "What is the main idea behind the 'swapping operation' in LLM-as-a-judge prompting?",
+ "choices": [
+ "Using different LLMs for comparison",
+ "Generating multiple candidate answers for diversity",
+ "Swapping the order of candidates to reduce positional bias",
+ "Embedding rule-based instructions inside prompts"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main idea behind the 'swapping operation' in LLM-as-a-judge prompting?\nAnswer:",
+ " Using different LLMs for comparison"
+ ],
+ [
+ "Question:What is the main idea behind the 'swapping operation' in LLM-as-a-judge prompting?\nAnswer:",
+ " Generating multiple candidate answers for diversity"
+ ],
+ [
+ "Question:What is the main idea behind the 'swapping operation' in LLM-as-a-judge prompting?\nAnswer:",
+ " Swapping the order of candidates to reduce positional bias"
+ ],
+ [
+ "Question:What is the main idea behind the 'swapping operation' in LLM-as-a-judge prompting?\nAnswer:",
+ " Embedding rule-based instructions inside prompts"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.063907623291016,
+ false
+ ]
+ ],
+ [
+ [
+ -30.256454467773438,
+ false
+ ]
+ ],
+ [
+ [
+ -36.72766876220703,
+ false
+ ]
+ ],
+ [
+ [
+ -35.9759521484375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.063907623291016,
+ false
+ ],
+ [
+ -30.256454467773438,
+ false
+ ],
+ [
+ -36.72766876220703,
+ false
+ ],
+ [
+ -35.9759521484375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fef50f0d1b80245b2d719dd1ea8316f6f2fa1b8e3658ab61fbc1666932a1dbb7",
+ "prompt_hash": "c17a750fee73b52ead083b0ff2525ee5d3fe394f6cf9437c474f352bc31ba3c6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "Which tuning method is most commonly used to train judge LLMs?",
+ "choices": [
+ "Prompt-tuning",
+ "Supervised fine-tuning",
+ "Reinforcement learning",
+ "Zero-shot learning"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which tuning method is most commonly used to train judge LLMs?\nAnswer:",
+ " Prompt-tuning"
+ ],
+ [
+ "Question:Which tuning method is most commonly used to train judge LLMs?\nAnswer:",
+ " Supervised fine-tuning"
+ ],
+ [
+ "Question:Which tuning method is most commonly used to train judge LLMs?\nAnswer:",
+ " Reinforcement learning"
+ ],
+ [
+ "Question:Which tuning method is most commonly used to train judge LLMs?\nAnswer:",
+ " Zero-shot learning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.313997268676758,
+ false
+ ]
+ ],
+ [
+ [
+ -7.638260364532471,
+ false
+ ]
+ ],
+ [
+ [
+ -7.296088695526123,
+ false
+ ]
+ ],
+ [
+ [
+ -8.118300437927246,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.313997268676758,
+ false
+ ],
+ [
+ -7.638260364532471,
+ false
+ ],
+ [
+ -7.296088695526123,
+ false
+ ],
+ [
+ -8.118300437927246,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2d66761160ed9f7951b51315e9b16a0cc365c2b1c8d8acfea1a973d619089c8b",
+ "prompt_hash": "80ec918f8a736022d5913e2c075a35cec28d2e7842abff0ca5435fe849afa940",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "Which application domain uses LLM-as-a-judge to filter noisy or irrelevant knowledge in a sub-knowledge graph?",
+ "choices": [
+ "Summarization",
+ "Dialogue evaluation",
+ "Retrieval-Augmented Generation",
+ "Legal reasoning"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which application domain uses LLM-as-a-judge to filter noisy or irrelevant knowledge in a sub-knowledge graph?\nAnswer:",
+ " Summarization"
+ ],
+ [
+ "Question:Which application domain uses LLM-as-a-judge to filter noisy or irrelevant knowledge in a sub-knowledge graph?\nAnswer:",
+ " Dialogue evaluation"
+ ],
+ [
+ "Question:Which application domain uses LLM-as-a-judge to filter noisy or irrelevant knowledge in a sub-knowledge graph?\nAnswer:",
+ " Retrieval-Augmented Generation"
+ ],
+ [
+ "Question:Which application domain uses LLM-as-a-judge to filter noisy or irrelevant knowledge in a sub-knowledge graph?\nAnswer:",
+ " Legal reasoning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.570253372192383,
+ false
+ ]
+ ],
+ [
+ [
+ -17.797739028930664,
+ false
+ ]
+ ],
+ [
+ [
+ -7.8971781730651855,
+ false
+ ]
+ ],
+ [
+ [
+ -11.672818183898926,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.570253372192383,
+ false
+ ],
+ [
+ -17.797739028930664,
+ false
+ ],
+ [
+ -7.8971781730651855,
+ false
+ ],
+ [
+ -11.672818183898926,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "51fc77b030408ed6f676f75a626b6f57c63b81eb0a4af3ac720bb5e1cc86a199",
+ "prompt_hash": "faffe2aa09e2f10dfef227dcff03f205a24d025d756646b3b54740f5aba52296",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the total number of parameters in DeepSeek-V2-8 (dsviii)?",
+ "choices": [
+ "175B",
+ "371B",
+ "671B",
+ "870B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total number of parameters in DeepSeek-V2-8 (dsviii)?\nAnswer:",
+ " 175B"
+ ],
+ [
+ "Question:What is the total number of parameters in DeepSeek-V2-8 (dsviii)?\nAnswer:",
+ " 371B"
+ ],
+ [
+ "Question:What is the total number of parameters in DeepSeek-V2-8 (dsviii)?\nAnswer:",
+ " 671B"
+ ],
+ [
+ "Question:What is the total number of parameters in DeepSeek-V2-8 (dsviii)?\nAnswer:",
+ " 870B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.916131973266602,
+ false
+ ]
+ ],
+ [
+ [
+ -15.847789764404297,
+ false
+ ]
+ ],
+ [
+ [
+ -17.21529197692871,
+ false
+ ]
+ ],
+ [
+ [
+ -16.59684944152832,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.916131973266602,
+ false
+ ],
+ [
+ -15.847789764404297,
+ false
+ ],
+ [
+ -17.21529197692871,
+ false
+ ],
+ [
+ -16.59684944152832,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7ea93a402030f3c4d9a8bd084d2d28d49a5095123c71e757e71f66ecedf9603c",
+ "prompt_hash": "b37ad914f970199ece9b60eb37b1e500e5d90430547fb149a786ca0a91a68199",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "How many activated parameters are used per token in dsviii?",
+ "choices": [
+ "13B",
+ "25B",
+ "37B",
+ "50B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many activated parameters are used per token in dsviii?\nAnswer:",
+ " 13B"
+ ],
+ [
+ "Question:How many activated parameters are used per token in dsviii?\nAnswer:",
+ " 25B"
+ ],
+ [
+ "Question:How many activated parameters are used per token in dsviii?\nAnswer:",
+ " 37B"
+ ],
+ [
+ "Question:How many activated parameters are used per token in dsviii?\nAnswer:",
+ " 50B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.25839614868164,
+ false
+ ]
+ ],
+ [
+ [
+ -14.30405330657959,
+ false
+ ]
+ ],
+ [
+ [
+ -14.241345405578613,
+ false
+ ]
+ ],
+ [
+ [
+ -14.088238716125488,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.25839614868164,
+ false
+ ],
+ [
+ -14.30405330657959,
+ false
+ ],
+ [
+ -14.241345405578613,
+ false
+ ],
+ [
+ -14.088238716125488,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ad3719a19744495dfb9c5a1ecc6df61a3cde9eb7114c6c9e959570b322ac1353",
+ "prompt_hash": "1cc12d4fcb1c309957d1f70fb0e1501acb19e2992f602b1462bd4d6a4cc76475",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "What data format is used to track the first and second moments in the AdamW optimizer in the FP8 training framework?",
+ "choices": [
+ "FP32",
+ "BF16",
+ "INT8",
+ "E5M2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What data format is used to track the first and second moments in the AdamW optimizer in the FP8 training framework?\nAnswer:",
+ " FP32"
+ ],
+ [
+ "Question:What data format is used to track the first and second moments in the AdamW optimizer in the FP8 training framework?\nAnswer:",
+ " BF16"
+ ],
+ [
+ "Question:What data format is used to track the first and second moments in the AdamW optimizer in the FP8 training framework?\nAnswer:",
+ " INT8"
+ ],
+ [
+ "Question:What data format is used to track the first and second moments in the AdamW optimizer in the FP8 training framework?\nAnswer:",
+ " E5M2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.028921127319336,
+ false
+ ]
+ ],
+ [
+ [
+ -12.088250160217285,
+ false
+ ]
+ ],
+ [
+ [
+ -8.075591087341309,
+ false
+ ]
+ ],
+ [
+ [
+ -19.291461944580078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.028921127319336,
+ false
+ ],
+ [
+ -12.088250160217285,
+ false
+ ],
+ [
+ -8.075591087341309,
+ false
+ ],
+ [
+ -19.291461944580078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "197e98fe296eb5a9e46206a3581a73f46176e34978688b86540fe1073a41a6bd",
+ "prompt_hash": "628799f35bbdf1f99ea4cc59b4c1b981c83059334376dc8a4d09a3fe0f1fa7ea",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "Which components are retained in higher precision for stability in the FP8 mixed precision framework?",
+ "choices": [
+ "GEMM operations, SwiGLU, and MTP modules",
+ "Embedding module, output head, MoE gating modules, normalization operators, and attention operators",
+ "Only weight gradients and optimizer states",
+ "Only the attention operators and SwiGLU"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which components are retained in higher precision for stability in the FP8 mixed precision framework?\nAnswer:",
+ " GEMM operations, SwiGLU, and MTP modules"
+ ],
+ [
+ "Question:Which components are retained in higher precision for stability in the FP8 mixed precision framework?\nAnswer:",
+ " Embedding module, output head, MoE gating modules, normalization operators, and attention operators"
+ ],
+ [
+ "Question:Which components are retained in higher precision for stability in the FP8 mixed precision framework?\nAnswer:",
+ " Only weight gradients and optimizer states"
+ ],
+ [
+ "Question:Which components are retained in higher precision for stability in the FP8 mixed precision framework?\nAnswer:",
+ " Only the attention operators and SwiGLU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -47.497535705566406,
+ false
+ ]
+ ],
+ [
+ [
+ -75.67779541015625,
+ false
+ ]
+ ],
+ [
+ [
+ -19.668460845947266,
+ false
+ ]
+ ],
+ [
+ [
+ -29.46173858642578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -47.497535705566406,
+ false
+ ],
+ [
+ -75.67779541015625,
+ false
+ ],
+ [
+ -19.668460845947266,
+ false
+ ],
+ [
+ -29.46173858642578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "324ca988bc896486250ce24ea2d7deaaf1c860ef1c1c34b1197fdbedb6e9355f",
+ "prompt_hash": "e371a9fdd26fb76793b01d971a20d8b4eb8c18293ae2002a4bdb34f2a2f5ff34",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "What is the accumulation interval (Nc) set for improving FP8 GEMM precision in the quantization strategy?",
+ "choices": [
+ "32",
+ "64",
+ "96",
+ "128"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the accumulation interval (Nc) set for improving FP8 GEMM precision in the quantization strategy?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:What is the accumulation interval (Nc) set for improving FP8 GEMM precision in the quantization strategy?\nAnswer:",
+ " 64"
+ ],
+ [
+ "Question:What is the accumulation interval (Nc) set for improving FP8 GEMM precision in the quantization strategy?\nAnswer:",
+ " 96"
+ ],
+ [
+ "Question:What is the accumulation interval (Nc) set for improving FP8 GEMM precision in the quantization strategy?\nAnswer:",
+ " 128"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.304234027862549,
+ false
+ ]
+ ],
+ [
+ [
+ -4.729826927185059,
+ false
+ ]
+ ],
+ [
+ [
+ -6.842705249786377,
+ false
+ ]
+ ],
+ [
+ [
+ -5.4878153800964355,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.304234027862549,
+ false
+ ],
+ [
+ -4.729826927185059,
+ false
+ ],
+ [
+ -6.842705249786377,
+ false
+ ],
+ [
+ -5.4878153800964355,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5801dde4164274339b30b0390dccd2dedbf00432977312be951e0e4248214ae1",
+ "prompt_hash": "6e5988a5ae8b3c538c504ef5add7c7e2a8d705df79e155423594dc5f698a7190",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "What percentage more tokens did o1-like models consume compared to conventional models to answer 'what is the answer of 2 plus 3?'",
+ "choices": [
+ "1953%",
+ "953%",
+ "305%",
+ "120%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What percentage more tokens did o1-like models consume compared to conventional models to answer 'what is the answer of 2 plus 3?'\nAnswer:",
+ " 1953%"
+ ],
+ [
+ "Question:What percentage more tokens did o1-like models consume compared to conventional models to answer 'what is the answer of 2 plus 3?'\nAnswer:",
+ " 953%"
+ ],
+ [
+ "Question:What percentage more tokens did o1-like models consume compared to conventional models to answer 'what is the answer of 2 plus 3?'\nAnswer:",
+ " 305%"
+ ],
+ [
+ "Question:What percentage more tokens did o1-like models consume compared to conventional models to answer 'what is the answer of 2 plus 3?'\nAnswer:",
+ " 120%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.174894332885742,
+ false
+ ]
+ ],
+ [
+ [
+ -19.59738540649414,
+ false
+ ]
+ ],
+ [
+ [
+ -18.090007781982422,
+ false
+ ]
+ ],
+ [
+ [
+ -13.911893844604492,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.174894332885742,
+ false
+ ],
+ [
+ -19.59738540649414,
+ false
+ ],
+ [
+ -18.090007781982422,
+ false
+ ],
+ [
+ -13.911893844604492,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0b0e6779100e4b9673f74cc0c39a40f404d64451eac6844048e1f6384aa72049",
+ "prompt_hash": "8f0f3344016101019ae1762b909f868ea45e0cd39f37f0d6bc0e4c46e08c21f8",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "What is the average number of solutions generated by QwQ-32B-Preview on the ASDIV test set?",
+ "choices": [
+ "3.5",
+ "3.2",
+ "4.3",
+ "2.8"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the average number of solutions generated by QwQ-32B-Preview on the ASDIV test set?\nAnswer:",
+ " 3.5"
+ ],
+ [
+ "Question:What is the average number of solutions generated by QwQ-32B-Preview on the ASDIV test set?\nAnswer:",
+ " 3.2"
+ ],
+ [
+ "Question:What is the average number of solutions generated by QwQ-32B-Preview on the ASDIV test set?\nAnswer:",
+ " 4.3"
+ ],
+ [
+ "Question:What is the average number of solutions generated by QwQ-32B-Preview on the ASDIV test set?\nAnswer:",
+ " 2.8"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.472996711730957,
+ false
+ ]
+ ],
+ [
+ [
+ -7.623888969421387,
+ false
+ ]
+ ],
+ [
+ [
+ -8.0897798538208,
+ false
+ ]
+ ],
+ [
+ [
+ -7.952129364013672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.472996711730957,
+ false
+ ],
+ [
+ -7.623888969421387,
+ false
+ ],
+ [
+ -8.0897798538208,
+ false
+ ],
+ [
+ -7.952129364013672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ec0a559a5ff4a1a43d020e7510901163af232b1965edfa2dbb194944d45948b5",
+ "prompt_hash": "6e995540d3062269c2768fb3c72f748a83b71ad6886e28f838f025c64b8dccb0",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "Which test set consists of high school math competition problems with difficulty levels based on AoPS?",
+ "choices": [
+ "MATH500",
+ "ASDIV",
+ "GSM8K",
+ "GPQA"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which test set consists of high school math competition problems with difficulty levels based on AoPS?\nAnswer:",
+ " MATH500"
+ ],
+ [
+ "Question:Which test set consists of high school math competition problems with difficulty levels based on AoPS?\nAnswer:",
+ " ASDIV"
+ ],
+ [
+ "Question:Which test set consists of high school math competition problems with difficulty levels based on AoPS?\nAnswer:",
+ " GSM8K"
+ ],
+ [
+ "Question:Which test set consists of high school math competition problems with difficulty levels based on AoPS?\nAnswer:",
+ " GPQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.954486846923828,
+ false
+ ]
+ ],
+ [
+ [
+ -23.078916549682617,
+ false
+ ]
+ ],
+ [
+ [
+ -6.7538533210754395,
+ false
+ ]
+ ],
+ [
+ [
+ -12.076217651367188,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.954486846923828,
+ false
+ ],
+ [
+ -23.078916549682617,
+ false
+ ],
+ [
+ -6.7538533210754395,
+ false
+ ],
+ [
+ -12.076217651367188,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b6db1da4a0557810aa7d2562fa4c6005c641bb0b5dfedee7da28d5f2d63a3223",
+ "prompt_hash": "37cdc3dc374f3260b0a938b7a88d7e61032286a9ad6c759c43f393db2300b36c",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "What is the process efficiency score of QwQ-32B-Preview on the MATH500 dataset?",
+ "choices": [
+ "71.2%",
+ "66.5%",
+ "100%",
+ "52.3%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the process efficiency score of QwQ-32B-Preview on the MATH500 dataset?\nAnswer:",
+ " 71.2%"
+ ],
+ [
+ "Question:What is the process efficiency score of QwQ-32B-Preview on the MATH500 dataset?\nAnswer:",
+ " 66.5%"
+ ],
+ [
+ "Question:What is the process efficiency score of QwQ-32B-Preview on the MATH500 dataset?\nAnswer:",
+ " 100%"
+ ],
+ [
+ "Question:What is the process efficiency score of QwQ-32B-Preview on the MATH500 dataset?\nAnswer:",
+ " 52.3%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.457481384277344,
+ false
+ ]
+ ],
+ [
+ [
+ -15.54973030090332,
+ false
+ ]
+ ],
+ [
+ [
+ -12.790609359741211,
+ false
+ ]
+ ],
+ [
+ [
+ -15.633562088012695,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.457481384277344,
+ false
+ ],
+ [
+ -15.54973030090332,
+ false
+ ],
+ [
+ -12.790609359741211,
+ false
+ ],
+ [
+ -15.633562088012695,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2ad217e842103818fb058ca928915af562c3d32d97403ba2a58aff078ac2dfc9",
+ "prompt_hash": "1c05afa023d5534e9a4adb5ed1e77790c1f49f9191b7727c9bc7f3ba92500f1b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "Which training method modifies the DPO loss by adding a negative log-likelihood term on the preferred response?",
+ "choices": [
+ "Reasoning Preference Optimization",
+ "Direct Preference Optimization",
+ "Simple Preference Optimization",
+ "Supervised Fine-Tuning"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which training method modifies the DPO loss by adding a negative log-likelihood term on the preferred response?\nAnswer:",
+ " Reasoning Preference Optimization"
+ ],
+ [
+ "Question:Which training method modifies the DPO loss by adding a negative log-likelihood term on the preferred response?\nAnswer:",
+ " Direct Preference Optimization"
+ ],
+ [
+ "Question:Which training method modifies the DPO loss by adding a negative log-likelihood term on the preferred response?\nAnswer:",
+ " Simple Preference Optimization"
+ ],
+ [
+ "Question:Which training method modifies the DPO loss by adding a negative log-likelihood term on the preferred response?\nAnswer:",
+ " Supervised Fine-Tuning"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.339204788208008,
+ false
+ ]
+ ],
+ [
+ [
+ -7.6230621337890625,
+ false
+ ]
+ ],
+ [
+ [
+ -15.905888557434082,
+ false
+ ]
+ ],
+ [
+ [
+ -11.230256080627441,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.339204788208008,
+ false
+ ],
+ [
+ -7.6230621337890625,
+ false
+ ],
+ [
+ -15.905888557434082,
+ false
+ ],
+ [
+ -11.230256080627441,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ae5156c48bff3c2947d892d0104a321c3b910ae6797d6036673ab01f7b04a690",
+ "prompt_hash": "0a3df59b66b51a90ee60d83f63e77576fba1d1f9cb6476ca070010f130515783",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the main purpose of the underthinking metric introduced in the study?",
+ "choices": [
+ "To evaluate model training speed",
+ "To measure token efficiency in incorrect responses",
+ "To calculate the accuracy of correct answers",
+ "To compare different datasets' difficulty levels"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the main purpose of the underthinking metric introduced in the study?\nAnswer:",
+ " To evaluate model training speed"
+ ],
+ [
+ "Question:What is the main purpose of the underthinking metric introduced in the study?\nAnswer:",
+ " To measure token efficiency in incorrect responses"
+ ],
+ [
+ "Question:What is the main purpose of the underthinking metric introduced in the study?\nAnswer:",
+ " To calculate the accuracy of correct answers"
+ ],
+ [
+ "Question:What is the main purpose of the underthinking metric introduced in the study?\nAnswer:",
+ " To compare different datasets' difficulty levels"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.352832794189453,
+ false
+ ]
+ ],
+ [
+ [
+ -38.05958557128906,
+ false
+ ]
+ ],
+ [
+ [
+ -21.12741470336914,
+ false
+ ]
+ ],
+ [
+ [
+ -26.977842330932617,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.352832794189453,
+ false
+ ],
+ [
+ -38.05958557128906,
+ false
+ ],
+ [
+ -21.12741470336914,
+ false
+ ],
+ [
+ -26.977842330932617,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a6f3c5261b5413457e10134ff2c03446b0836d09ab936070b0813af4d21110cc",
+ "prompt_hash": "b0adf48617c122abcbd12087b5da586115198df7e7317189a6afbd3bafe260aa",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "Which of the following models was evaluated only on MATH500 and AIME test sets due to daily message limits?",
+ "choices": [
+ "QwQ-32B-Preview",
+ "DeepSeek-R1-671B",
+ "DeepSeek-R1-Preview",
+ "DeepSeek-R1-Distill-Qwen-32B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which of the following models was evaluated only on MATH500 and AIME test sets due to daily message limits?\nAnswer:",
+ " QwQ-32B-Preview"
+ ],
+ [
+ "Question:Which of the following models was evaluated only on MATH500 and AIME test sets due to daily message limits?\nAnswer:",
+ " DeepSeek-R1-671B"
+ ],
+ [
+ "Question:Which of the following models was evaluated only on MATH500 and AIME test sets due to daily message limits?\nAnswer:",
+ " DeepSeek-R1-Preview"
+ ],
+ [
+ "Question:Which of the following models was evaluated only on MATH500 and AIME test sets due to daily message limits?\nAnswer:",
+ " DeepSeek-R1-Distill-Qwen-32B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -36.87464904785156,
+ false
+ ]
+ ],
+ [
+ [
+ -45.31444549560547,
+ false
+ ]
+ ],
+ [
+ [
+ -40.90092468261719,
+ false
+ ]
+ ],
+ [
+ [
+ -55.350929260253906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -36.87464904785156,
+ false
+ ],
+ [
+ -45.31444549560547,
+ false
+ ],
+ [
+ -40.90092468261719,
+ false
+ ],
+ [
+ -55.350929260253906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7404b2b8cef2fead98865f72bf451d6f363b7078b7f0400602b9a84af2932597",
+ "prompt_hash": "45139f45e167354a848f1d29a32181af1ba20827585568989c1f658e076971ea",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "What is the role of the penalty strength parameter α in the Tip decoding method?",
+ "choices": [
+ "To determine the number of reasoning thoughts",
+ "To control the penalty duration applied to tokens",
+ "To reduce the likelihood of thought-switching tokens",
+ "To adjust the token length for correct answers"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the role of the penalty strength parameter α in the Tip decoding method?\nAnswer:",
+ " To determine the number of reasoning thoughts"
+ ],
+ [
+ "Question:What is the role of the penalty strength parameter α in the Tip decoding method?\nAnswer:",
+ " To control the penalty duration applied to tokens"
+ ],
+ [
+ "Question:What is the role of the penalty strength parameter α in the Tip decoding method?\nAnswer:",
+ " To reduce the likelihood of thought-switching tokens"
+ ],
+ [
+ "Question:What is the role of the penalty strength parameter α in the Tip decoding method?\nAnswer:",
+ " To adjust the token length for correct answers"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.340669631958008,
+ false
+ ]
+ ],
+ [
+ [
+ -34.11429214477539,
+ false
+ ]
+ ],
+ [
+ [
+ -43.95995330810547,
+ false
+ ]
+ ],
+ [
+ [
+ -37.085777282714844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.340669631958008,
+ false
+ ],
+ [
+ -34.11429214477539,
+ false
+ ],
+ [
+ -43.95995330810547,
+ false
+ ],
+ [
+ -37.085777282714844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e43c3398bd1490fd4441f8fea9482409b851f3a08624aa7467c36115685d6565",
+ "prompt_hash": "6fc20179bce03abad0beb9260800aee68a16fcd61d29bc013e831cf94a82478c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "In the underthinking score formula, what does a higher value of ξ_UT indicate?",
+ "choices": [
+ "Greater token efficiency",
+ "Lower token efficiency",
+ "Shorter reasoning chains",
+ "Fewer reasoning thoughts"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In the underthinking score formula, what does a higher value of ξ_UT indicate?\nAnswer:",
+ " Greater token efficiency"
+ ],
+ [
+ "Question:In the underthinking score formula, what does a higher value of ξ_UT indicate?\nAnswer:",
+ " Lower token efficiency"
+ ],
+ [
+ "Question:In the underthinking score formula, what does a higher value of ξ_UT indicate?\nAnswer:",
+ " Shorter reasoning chains"
+ ],
+ [
+ "Question:In the underthinking score formula, what does a higher value of ξ_UT indicate?\nAnswer:",
+ " Fewer reasoning thoughts"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.667449951171875,
+ false
+ ]
+ ],
+ [
+ [
+ -21.466705322265625,
+ false
+ ]
+ ],
+ [
+ [
+ -23.393604278564453,
+ false
+ ]
+ ],
+ [
+ [
+ -25.824403762817383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.667449951171875,
+ false
+ ],
+ [
+ -21.466705322265625,
+ false
+ ],
+ [
+ -23.393604278564453,
+ false
+ ],
+ [
+ -25.824403762817383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5a2f46c94c1ba3bcb2613a2f231ef9e9fc8a6ec762be09de290a5cf17cc5b670",
+ "prompt_hash": "f677ecf5c9cdfa65b5fd4869c3dd0ed700ba59daa188fc96c96db5f1b2b011ac",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "Which prompt-based strategy showed only modest improvements in comparison to the Tip decoding method?",
+ "choices": [
+ "Laconic Decoding",
+ "Self-Consistency Sampling",
+ "Prompt Engineering",
+ "Token Filtering"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which prompt-based strategy showed only modest improvements in comparison to the Tip decoding method?\nAnswer:",
+ " Laconic Decoding"
+ ],
+ [
+ "Question:Which prompt-based strategy showed only modest improvements in comparison to the Tip decoding method?\nAnswer:",
+ " Self-Consistency Sampling"
+ ],
+ [
+ "Question:Which prompt-based strategy showed only modest improvements in comparison to the Tip decoding method?\nAnswer:",
+ " Prompt Engineering"
+ ],
+ [
+ "Question:Which prompt-based strategy showed only modest improvements in comparison to the Tip decoding method?\nAnswer:",
+ " Token Filtering"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.468769073486328,
+ false
+ ]
+ ],
+ [
+ [
+ -18.396778106689453,
+ false
+ ]
+ ],
+ [
+ [
+ -12.113412857055664,
+ false
+ ]
+ ],
+ [
+ [
+ -16.382930755615234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.468769073486328,
+ false
+ ],
+ [
+ -18.396778106689453,
+ false
+ ],
+ [
+ -12.113412857055664,
+ false
+ ],
+ [
+ -16.382930755615234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d8d69259421589a9881ad09598da0caf91ccd7c26ec1c2758b0c6c862ae81689",
+ "prompt_hash": "5a1b3dc3f8c0d7848aef3f588f05c7c36fe4faf51cf3a53465878666ef351a49",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What is the reported improvement in sample efficiency when using PRIME compared to RL using only outcome rewards?",
+ "choices": [
+ "1.5×",
+ "2.5×",
+ "4.0×",
+ "6.9×"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the reported improvement in sample efficiency when using PRIME compared to RL using only outcome rewards?\nAnswer:",
+ " 1.5×"
+ ],
+ [
+ "Question:What is the reported improvement in sample efficiency when using PRIME compared to RL using only outcome rewards?\nAnswer:",
+ " 2.5×"
+ ],
+ [
+ "Question:What is the reported improvement in sample efficiency when using PRIME compared to RL using only outcome rewards?\nAnswer:",
+ " 4.0×"
+ ],
+ [
+ "Question:What is the reported improvement in sample efficiency when using PRIME compared to RL using only outcome rewards?\nAnswer:",
+ " 6.9×"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.429561614990234,
+ false
+ ]
+ ],
+ [
+ [
+ -14.082334518432617,
+ false
+ ]
+ ],
+ [
+ [
+ -15.574737548828125,
+ false
+ ]
+ ],
+ [
+ [
+ -17.069332122802734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.429561614990234,
+ false
+ ],
+ [
+ -14.082334518432617,
+ false
+ ],
+ [
+ -15.574737548828125,
+ false
+ ],
+ [
+ -17.069332122802734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ce050f483e2d1900645d7aa208c21d9f86fb6ddef6e214eda733bad133756a9c",
+ "prompt_hash": "7256d5a3a7e1b82502e80fc9bf58c2bd8a01a4c7a3aa9a50a998d1a882e261a0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "Which model serves as the starting point for training in the PRIME framework?",
+ "choices": [
+ "GPT-4o",
+ "LLaMA-3.1-70B-Instruct",
+ "Qwen2.5-Math-7B-Base",
+ "DeepSeek-R1"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model serves as the starting point for training in the PRIME framework?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which model serves as the starting point for training in the PRIME framework?\nAnswer:",
+ " LLaMA-3.1-70B-Instruct"
+ ],
+ [
+ "Question:Which model serves as the starting point for training in the PRIME framework?\nAnswer:",
+ " Qwen2.5-Math-7B-Base"
+ ],
+ [
+ "Question:Which model serves as the starting point for training in the PRIME framework?\nAnswer:",
+ " DeepSeek-R1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.462921142578125,
+ false
+ ]
+ ],
+ [
+ [
+ -31.877954483032227,
+ false
+ ]
+ ],
+ [
+ [
+ -40.35797119140625,
+ false
+ ]
+ ],
+ [
+ [
+ -25.913959503173828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.462921142578125,
+ false
+ ],
+ [
+ -31.877954483032227,
+ false
+ ],
+ [
+ -40.35797119140625,
+ false
+ ],
+ [
+ -25.913959503173828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "783695e7dd24e82177f27d12e81b48b130250480bd512fbc0859b8e43722cd79",
+ "prompt_hash": "629ea5c8e6c1a46907d0960aa86fcc9c372b377e4dfca59fc6bac98042f1fabe",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "What evaluation score did Eurus-2-7B-PRIME achieve on AIME 2024?",
+ "choices": [
+ "16.7%",
+ "20.0%",
+ "26.7%",
+ "32.5%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What evaluation score did Eurus-2-7B-PRIME achieve on AIME 2024?\nAnswer:",
+ " 16.7%"
+ ],
+ [
+ "Question:What evaluation score did Eurus-2-7B-PRIME achieve on AIME 2024?\nAnswer:",
+ " 20.0%"
+ ],
+ [
+ "Question:What evaluation score did Eurus-2-7B-PRIME achieve on AIME 2024?\nAnswer:",
+ " 26.7%"
+ ],
+ [
+ "Question:What evaluation score did Eurus-2-7B-PRIME achieve on AIME 2024?\nAnswer:",
+ " 32.5%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.968780517578125,
+ false
+ ]
+ ],
+ [
+ [
+ -15.175897598266602,
+ false
+ ]
+ ],
+ [
+ [
+ -15.799150466918945,
+ false
+ ]
+ ],
+ [
+ [
+ -15.199570655822754,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.968780517578125,
+ false
+ ],
+ [
+ -15.175897598266602,
+ false
+ ],
+ [
+ -15.799150466918945,
+ false
+ ],
+ [
+ -15.199570655822754,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2aa1e3918ba13aed9884bb87c237252fc729d54b11bccfa83da6b42a19648ec4",
+ "prompt_hash": "09a72f388f08d5eef9b51f61736ac1c5a71e2d72d4f05d16586c8f8350b3c64e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "What is the formula for process reward in the Implicit PRM used by PRIME?",
+ "choices": [
+ "r_\\phi(y_t) := \\alpha \\log \\frac{\\pi_\\phi(y_t)}{\\pi_\\text{ref}(y_t)}",
+ "r_\\phi(y_t) := \\log \\frac{\\pi_\\text{ref}(y_t|\\mathbf{y}_{",
+ "",
+ "",
+ ""
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What regular expression tags are used in R1-Onevision model output to denote the reasoning process?\nAnswer:",
+ " "
+ ],
+ [
+ "Question:What regular expression tags are used in R1-Onevision model output to denote the reasoning process?\nAnswer:",
+ " "
+ ],
+ [
+ "Question:What regular expression tags are used in R1-Onevision model output to denote the reasoning process?\nAnswer:",
+ " "
+ ],
+ [
+ "Question:What regular expression tags are used in R1-Onevision model output to denote the reasoning process?\nAnswer:",
+ " "
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.615612030029297,
+ false
+ ]
+ ],
+ [
+ [
+ -12.443183898925781,
+ false
+ ]
+ ],
+ [
+ [
+ -13.994918823242188,
+ false
+ ]
+ ],
+ [
+ [
+ -12.647622108459473,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.615612030029297,
+ false
+ ],
+ [
+ -12.443183898925781,
+ false
+ ],
+ [
+ -13.994918823242188,
+ false
+ ],
+ [
+ -12.647622108459473,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d868ffd42fe5870e2d4326a0b9ee69517356858f3e6dc5eff6e3f209feb76c22",
+ "prompt_hash": "1cd8c590eb4b6404561c6be8558eaf571977f66050a52108800c2068b2eca3ea",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "Which visual-language model does R1-Onevision directly improve upon in experimental comparisons?",
+ "choices": [
+ "Qwen2.5-VL",
+ "MiniCPM",
+ "Claude-3.5",
+ "Gemini-2.0"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which visual-language model does R1-Onevision directly improve upon in experimental comparisons?\nAnswer:",
+ " Qwen2.5-VL"
+ ],
+ [
+ "Question:Which visual-language model does R1-Onevision directly improve upon in experimental comparisons?\nAnswer:",
+ " MiniCPM"
+ ],
+ [
+ "Question:Which visual-language model does R1-Onevision directly improve upon in experimental comparisons?\nAnswer:",
+ " Claude-3.5"
+ ],
+ [
+ "Question:Which visual-language model does R1-Onevision directly improve upon in experimental comparisons?\nAnswer:",
+ " Gemini-2.0"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.363460540771484,
+ false
+ ]
+ ],
+ [
+ [
+ -14.266507148742676,
+ false
+ ]
+ ],
+ [
+ [
+ -12.283981323242188,
+ false
+ ]
+ ],
+ [
+ [
+ -17.673995971679688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.363460540771484,
+ false
+ ],
+ [
+ -14.266507148742676,
+ false
+ ],
+ [
+ -12.283981323242188,
+ false
+ ],
+ [
+ -17.673995971679688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d1868512389ff0ee1ea24bb3f1cedb4ac993292c3fc35d0234857b0781727d6a",
+ "prompt_hash": "3a5a81aeab810ba56366b48c330dffb76b51df51209def6af6432da83bd76a05",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "Which reward metric uses Intersection over Union (IoU) in its computation for certain tasks?",
+ "choices": [
+ "Chain-of-Thought Reward",
+ "Format Reward",
+ "Accuracy Reward",
+ "Coverage Reward"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which reward metric uses Intersection over Union (IoU) in its computation for certain tasks?\nAnswer:",
+ " Chain-of-Thought Reward"
+ ],
+ [
+ "Question:Which reward metric uses Intersection over Union (IoU) in its computation for certain tasks?\nAnswer:",
+ " Format Reward"
+ ],
+ [
+ "Question:Which reward metric uses Intersection over Union (IoU) in its computation for certain tasks?\nAnswer:",
+ " Accuracy Reward"
+ ],
+ [
+ "Question:Which reward metric uses Intersection over Union (IoU) in its computation for certain tasks?\nAnswer:",
+ " Coverage Reward"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.40140151977539,
+ false
+ ]
+ ],
+ [
+ [
+ -18.06243896484375,
+ false
+ ]
+ ],
+ [
+ [
+ -14.685003280639648,
+ false
+ ]
+ ],
+ [
+ [
+ -14.58926773071289,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.40140151977539,
+ false
+ ],
+ [
+ -18.06243896484375,
+ false
+ ],
+ [
+ -14.685003280639648,
+ false
+ ],
+ [
+ -14.58926773071289,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f5494dc93020abc45ca23be9c825f29eaf201660ce81beed001c25f13013fdeb",
+ "prompt_hash": "f618ca03f9a383ae772cfdd9e79a27d1eb4b6dfc6891dcee064a9e242c8d4db1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the batch size used for post-training in data-limited settings?",
+ "choices": [
+ "128 or 1024",
+ "16,384",
+ "512 or 4096",
+ "64 or 512"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the batch size used for post-training in data-limited settings?\nAnswer:",
+ " 128 or 1024"
+ ],
+ [
+ "Question:What is the batch size used for post-training in data-limited settings?\nAnswer:",
+ " 16,384"
+ ],
+ [
+ "Question:What is the batch size used for post-training in data-limited settings?\nAnswer:",
+ " 512 or 4096"
+ ],
+ [
+ "Question:What is the batch size used for post-training in data-limited settings?\nAnswer:",
+ " 64 or 512"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.869379043579102,
+ false
+ ]
+ ],
+ [
+ [
+ -11.457952499389648,
+ false
+ ]
+ ],
+ [
+ [
+ -16.540433883666992,
+ false
+ ]
+ ],
+ [
+ [
+ -15.067032814025879,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.869379043579102,
+ false
+ ],
+ [
+ -11.457952499389648,
+ false
+ ],
+ [
+ -16.540433883666992,
+ false
+ ],
+ [
+ -15.067032814025879,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f3e110f61951be8c6ced81faa1582549d1827d31ae98c937af1e6ec8a51c0d3e",
+ "prompt_hash": "16d8fe5b2b7c4996db03c06ffc4f7864b6382bf4466eab527715554942fc7334",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "What rotation representation is used for end-effector rotation actions in the standardized action space?",
+ "choices": [
+ "Euler angles",
+ "Quaternions",
+ "Axis-angle representation",
+ "6D vector representation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What rotation representation is used for end-effector rotation actions in the standardized action space?\nAnswer:",
+ " Euler angles"
+ ],
+ [
+ "Question:What rotation representation is used for end-effector rotation actions in the standardized action space?\nAnswer:",
+ " Quaternions"
+ ],
+ [
+ "Question:What rotation representation is used for end-effector rotation actions in the standardized action space?\nAnswer:",
+ " Axis-angle representation"
+ ],
+ [
+ "Question:What rotation representation is used for end-effector rotation actions in the standardized action space?\nAnswer:",
+ " 6D vector representation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.149971008300781,
+ false
+ ]
+ ],
+ [
+ [
+ -6.785881519317627,
+ false
+ ]
+ ],
+ [
+ [
+ -17.12879753112793,
+ false
+ ]
+ ],
+ [
+ [
+ -17.572185516357422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.149971008300781,
+ false
+ ],
+ [
+ -6.785881519317627,
+ false
+ ],
+ [
+ -17.12879753112793,
+ false
+ ],
+ [
+ -17.572185516357422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "db0360ec102a64d4285aca166ba0e8ef67feed724d08df367605fb8434de5b55",
+ "prompt_hash": "5f2872c6de821a6a2f2fba4668932ac120df1e3b1776b16169f267d2678ebe8f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "What is the architecture used for modeling actions in the policy model?",
+ "choices": [
+ "LSTM",
+ "ResNet-50",
+ "Diffusion Transformer",
+ "Temporal Convolutional Network"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the architecture used for modeling actions in the policy model?\nAnswer:",
+ " LSTM"
+ ],
+ [
+ "Question:What is the architecture used for modeling actions in the policy model?\nAnswer:",
+ " ResNet-50"
+ ],
+ [
+ "Question:What is the architecture used for modeling actions in the policy model?\nAnswer:",
+ " Diffusion Transformer"
+ ],
+ [
+ "Question:What is the architecture used for modeling actions in the policy model?\nAnswer:",
+ " Temporal Convolutional Network"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.138721942901611,
+ false
+ ]
+ ],
+ [
+ [
+ -12.618087768554688,
+ false
+ ]
+ ],
+ [
+ [
+ -14.511140823364258,
+ false
+ ]
+ ],
+ [
+ [
+ -12.18083667755127,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.138721942901611,
+ false
+ ],
+ [
+ -12.618087768554688,
+ false
+ ],
+ [
+ -14.511140823364258,
+ false
+ ],
+ [
+ -12.18083667755127,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "374f0e25009b55134a5a5ca74d770a446813f5a0b2b9bcf26bc8865d09b2193a",
+ "prompt_hash": "e4b1c0ea0b6be8c365e1feaf94f90cc80dc1ac4a21067d5bef2c5382f1825a73",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "Which image resolution is used as input to the vision encoder during image encoding?",
+ "choices": [
+ "224 × 224",
+ "480 × 480",
+ "512 × 512",
+ "256 × 256"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which image resolution is used as input to the vision encoder during image encoding?\nAnswer:",
+ " 224 × 224"
+ ],
+ [
+ "Question:Which image resolution is used as input to the vision encoder during image encoding?\nAnswer:",
+ " 480 × 480"
+ ],
+ [
+ "Question:Which image resolution is used as input to the vision encoder during image encoding?\nAnswer:",
+ " 512 × 512"
+ ],
+ [
+ "Question:Which image resolution is used as input to the vision encoder during image encoding?\nAnswer:",
+ " 256 × 256"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.093376636505127,
+ false
+ ]
+ ],
+ [
+ [
+ -11.941163063049316,
+ false
+ ]
+ ],
+ [
+ [
+ -9.036025047302246,
+ false
+ ]
+ ],
+ [
+ [
+ -7.567041397094727,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.093376636505127,
+ false
+ ],
+ [
+ -11.941163063049316,
+ false
+ ],
+ [
+ -9.036025047302246,
+ false
+ ],
+ [
+ -7.567041397094727,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "760373df2709c78652a85e7e8f1d043e616532119ceec073d0c41a10ea659caf",
+ "prompt_hash": "14622f05c9403a8e5d1cbde4ed18a9ada4e0cf704be7f192b9973c19c4703c0f",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "Which dataset contains 213.8M frames and 1,979.4 hours of robot video data?",
+ "choices": [
+ "Ego4D",
+ "DROID (OXE)",
+ "Agibot-Alpha",
+ "GR-1 Simulation Pre-Training"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset contains 213.8M frames and 1,979.4 hours of robot video data?\nAnswer:",
+ " Ego4D"
+ ],
+ [
+ "Question:Which dataset contains 213.8M frames and 1,979.4 hours of robot video data?\nAnswer:",
+ " DROID (OXE)"
+ ],
+ [
+ "Question:Which dataset contains 213.8M frames and 1,979.4 hours of robot video data?\nAnswer:",
+ " Agibot-Alpha"
+ ],
+ [
+ "Question:Which dataset contains 213.8M frames and 1,979.4 hours of robot video data?\nAnswer:",
+ " GR-1 Simulation Pre-Training"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.193317413330078,
+ false
+ ]
+ ],
+ [
+ [
+ -38.49471664428711,
+ false
+ ]
+ ],
+ [
+ [
+ -33.59306335449219,
+ false
+ ]
+ ],
+ [
+ [
+ -40.950538635253906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.193317413330078,
+ false
+ ],
+ [
+ -38.49471664428711,
+ false
+ ],
+ [
+ -33.59306335449219,
+ false
+ ],
+ [
+ -40.950538635253906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "98ddba6cfe8fc09d37b9cb3af215ac22ecdf311f9739240b6a68b431173314f7",
+ "prompt_hash": "9f25415d42aaa78aac12a1dc5b088a0f8b52f94078b72a9e680a7807e4665dd5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the approximate redshift at which acoustic waves stall in the photon-baryon fluid?",
+ "choices": [
+ "z ≈ 1089",
+ "z ≈ 147.05",
+ "z ≈ 1060",
+ "z ≈ 0.295"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the approximate redshift at which acoustic waves stall in the photon-baryon fluid?\nAnswer:",
+ " z ≈ 1089"
+ ],
+ [
+ "Question:What is the approximate redshift at which acoustic waves stall in the photon-baryon fluid?\nAnswer:",
+ " z ≈ 147.05"
+ ],
+ [
+ "Question:What is the approximate redshift at which acoustic waves stall in the photon-baryon fluid?\nAnswer:",
+ " z ≈ 1060"
+ ],
+ [
+ "Question:What is the approximate redshift at which acoustic waves stall in the photon-baryon fluid?\nAnswer:",
+ " z ≈ 0.295"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.01250457763672,
+ false
+ ]
+ ],
+ [
+ [
+ -35.585227966308594,
+ false
+ ]
+ ],
+ [
+ [
+ -28.694257736206055,
+ false
+ ]
+ ],
+ [
+ [
+ -30.054656982421875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.01250457763672,
+ false
+ ],
+ [
+ -35.585227966308594,
+ false
+ ],
+ [
+ -28.694257736206055,
+ false
+ ],
+ [
+ -30.054656982421875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fb3958365148b0e36b7039a2b37e16a36327fa8d2d6f502c278d9b0ab60af26f",
+ "prompt_hash": "7f5932abd93c6995a5abcec9bb818bc858893373a0b792bd25f7a4a3d64bea6c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "Which survey is described as providing BAO measurements in the Lyα forest absorption spectra of z > 2 quasars?",
+ "choices": [
+ "BOSS and eBOSS",
+ "WiggleZ and SDSS",
+ "DESI and SDSS-IV",
+ "2dFGRS and DES"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which survey is described as providing BAO measurements in the Lyα forest absorption spectra of z > 2 quasars?\nAnswer:",
+ " BOSS and eBOSS"
+ ],
+ [
+ "Question:Which survey is described as providing BAO measurements in the Lyα forest absorption spectra of z > 2 quasars?\nAnswer:",
+ " WiggleZ and SDSS"
+ ],
+ [
+ "Question:Which survey is described as providing BAO measurements in the Lyα forest absorption spectra of z > 2 quasars?\nAnswer:",
+ " DESI and SDSS-IV"
+ ],
+ [
+ "Question:Which survey is described as providing BAO measurements in the Lyα forest absorption spectra of z > 2 quasars?\nAnswer:",
+ " 2dFGRS and DES"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.41214370727539,
+ false
+ ]
+ ],
+ [
+ [
+ -16.992929458618164,
+ false
+ ]
+ ],
+ [
+ [
+ -19.568309783935547,
+ false
+ ]
+ ],
+ [
+ [
+ -22.814544677734375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.41214370727539,
+ false
+ ],
+ [
+ -16.992929458618164,
+ false
+ ],
+ [
+ -19.568309783935547,
+ false
+ ],
+ [
+ -22.814544677734375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "95f44cc842da695ec244eb08e3160ab5f1a419d0538ca2e979946b226f4309c6",
+ "prompt_hash": "26750af09a132955d81ebd273661dad3ad47503c7974ba6aa5b5fd19580e5440",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "In the flat universe limit where |Ω_k| ≪ 1, the transverse comoving distance simplifies to which expression?",
+ "choices": [
+ "DM(z) = c/H(z)",
+ "DM(z) = c/H₀ ∫₀ᶻ dz′/(H(z′)/H₀)",
+ "DM(z) = rd × (H(z)/c)",
+ "DM(z) = sinh[Ω_k ∫ dz/H(z)]"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:In the flat universe limit where |Ω_k| ≪ 1, the transverse comoving distance simplifies to which expression?\nAnswer:",
+ " DM(z) = c/H(z)"
+ ],
+ [
+ "Question:In the flat universe limit where |Ω_k| ≪ 1, the transverse comoving distance simplifies to which expression?\nAnswer:",
+ " DM(z) = c/H₀ ∫₀ᶻ dz′/(H(z′)/H₀)"
+ ],
+ [
+ "Question:In the flat universe limit where |Ω_k| ≪ 1, the transverse comoving distance simplifies to which expression?\nAnswer:",
+ " DM(z) = rd × (H(z)/c)"
+ ],
+ [
+ "Question:In the flat universe limit where |Ω_k| ≪ 1, the transverse comoving distance simplifies to which expression?\nAnswer:",
+ " DM(z) = sinh[Ω_k ∫ dz/H(z)]"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.8570499420166,
+ false
+ ]
+ ],
+ [
+ [
+ -110.00999450683594,
+ false
+ ]
+ ],
+ [
+ [
+ -54.91897201538086,
+ false
+ ]
+ ],
+ [
+ [
+ -69.45616912841797,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.8570499420166,
+ false
+ ],
+ [
+ -110.00999450683594,
+ false
+ ],
+ [
+ -54.91897201538086,
+ false
+ ],
+ [
+ -69.45616912841797,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c3d8f4cfcb78b502c52373075d5d22f4a7bfd2b8dad2dc7e4788939d0d3f7642",
+ "prompt_hash": "ec340cbae4ab91253495adfb76ec8a92b805f6410300c07e7877d1434d8a752a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "What is the formula for the present-day energy density in neutrinos in terms of the sum of their masses?",
+ "choices": [
+ "Ω_ν h² = 93.14 / Σm_ν",
+ "Ω_ν h² = Σm_ν × 93.14",
+ "Ω_ν h² = Σm_ν / 93.14",
+ "Ω_ν h² = 0.1 × Σm_ν"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the formula for the present-day energy density in neutrinos in terms of the sum of their masses?\nAnswer:",
+ " Ω_ν h² = 93.14 / Σm_ν"
+ ],
+ [
+ "Question:What is the formula for the present-day energy density in neutrinos in terms of the sum of their masses?\nAnswer:",
+ " Ω_ν h² = Σm_ν × 93.14"
+ ],
+ [
+ "Question:What is the formula for the present-day energy density in neutrinos in terms of the sum of their masses?\nAnswer:",
+ " Ω_ν h² = Σm_ν / 93.14"
+ ],
+ [
+ "Question:What is the formula for the present-day energy density in neutrinos in terms of the sum of their masses?\nAnswer:",
+ " Ω_ν h² = 0.1 × Σm_ν"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -90.63029479980469,
+ false
+ ]
+ ],
+ [
+ [
+ -86.54017639160156,
+ false
+ ]
+ ],
+ [
+ [
+ -85.53279113769531,
+ false
+ ]
+ ],
+ [
+ [
+ -77.25373840332031,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -90.63029479980469,
+ false
+ ],
+ [
+ -86.54017639160156,
+ false
+ ],
+ [
+ -85.53279113769531,
+ false
+ ],
+ [
+ -77.25373840332031,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3606f3b6d4207e90c624381f0e60805e68ba21fe0ee9ff7fff62b9f3804df05e",
+ "prompt_hash": "5a46244102adc9d2e5ab14f37a07adb0d19c709c6169deeb40b402a36c967c2c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "For constant w, how does the dark energy density evolve with redshift?",
+ "choices": [
+ "(1+z)^{3(1+w)}",
+ "(1+z)^{-3(1+w)}",
+ "exp[(1+w)z]",
+ "(1+z)^w"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:For constant w, how does the dark energy density evolve with redshift?\nAnswer:",
+ " (1+z)^{3(1+w)}"
+ ],
+ [
+ "Question:For constant w, how does the dark energy density evolve with redshift?\nAnswer:",
+ " (1+z)^{-3(1+w)}"
+ ],
+ [
+ "Question:For constant w, how does the dark energy density evolve with redshift?\nAnswer:",
+ " exp[(1+w)z]"
+ ],
+ [
+ "Question:For constant w, how does the dark energy density evolve with redshift?\nAnswer:",
+ " (1+z)^w"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.06146812438965,
+ false
+ ]
+ ],
+ [
+ [
+ -27.82506561279297,
+ false
+ ]
+ ],
+ [
+ [
+ -29.620792388916016,
+ false
+ ]
+ ],
+ [
+ [
+ -22.455963134765625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.06146812438965,
+ false
+ ],
+ [
+ -27.82506561279297,
+ false
+ ],
+ [
+ -29.620792388916016,
+ false
+ ],
+ [
+ -22.455963134765625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "36be64212f8d317692dc9ce6589b3ce7e897f43188c3ef40c4775f1784193443",
+ "prompt_hash": "b9acb86809b705d402e3df628ef20a1c5221f79e94676cdc6616b4050597fb3d",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What is the context length supported by the 1B version of Gemma 3?",
+ "choices": [
+ "128K tokens",
+ "64K tokens",
+ "32K tokens",
+ "16K tokens"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the context length supported by the 1B version of Gemma 3?\nAnswer:",
+ " 128K tokens"
+ ],
+ [
+ "Question:What is the context length supported by the 1B version of Gemma 3?\nAnswer:",
+ " 64K tokens"
+ ],
+ [
+ "Question:What is the context length supported by the 1B version of Gemma 3?\nAnswer:",
+ " 32K tokens"
+ ],
+ [
+ "Question:What is the context length supported by the 1B version of Gemma 3?\nAnswer:",
+ " 16K tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.740803241729736,
+ false
+ ]
+ ],
+ [
+ [
+ -8.459214210510254,
+ false
+ ]
+ ],
+ [
+ [
+ -7.870699882507324,
+ false
+ ]
+ ],
+ [
+ [
+ -8.904411315917969,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.740803241729736,
+ false
+ ],
+ [
+ -8.459214210510254,
+ false
+ ],
+ [
+ -7.870699882507324,
+ false
+ ],
+ [
+ -8.904411315917969,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7e1aef7db7c08b37a601acd60669dd0f426e16d29fbfdf41e9a48f6aaa36b687",
+ "prompt_hash": "798123841329fd6436427daad0d2198e9ec05a7971d7180e69590600d7f84387",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which tokenizer is used in Gemma 3?",
+ "choices": [
+ "WordPiece",
+ "Byte-Pair Encoding",
+ "SentencePiece",
+ "Unigram LM"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which tokenizer is used in Gemma 3?\nAnswer:",
+ " WordPiece"
+ ],
+ [
+ "Question:Which tokenizer is used in Gemma 3?\nAnswer:",
+ " Byte-Pair Encoding"
+ ],
+ [
+ "Question:Which tokenizer is used in Gemma 3?\nAnswer:",
+ " SentencePiece"
+ ],
+ [
+ "Question:Which tokenizer is used in Gemma 3?\nAnswer:",
+ " Unigram LM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.459443092346191,
+ false
+ ]
+ ],
+ [
+ [
+ -9.00956916809082,
+ false
+ ]
+ ],
+ [
+ [
+ -8.260150909423828,
+ false
+ ]
+ ],
+ [
+ [
+ -16.319374084472656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.459443092346191,
+ false
+ ],
+ [
+ -9.00956916809082,
+ false
+ ],
+ [
+ -8.260150909423828,
+ false
+ ],
+ [
+ -16.319374084472656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d09fac7dc980a4ad06d89006610943ab7030cce5de97c56724539e9cc7378478",
+ "prompt_hash": "ad727577e1a7862bb7c02548d5787a6b9d262a7bf1cd36d91fee7bf278df358c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "How many total parameters (embedding + non-embedding) does the 27B Gemma 3 model have?",
+ "choices": [
+ "27B",
+ "27.016B",
+ "27.1B",
+ "26.8B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many total parameters (embedding + non-embedding) does the 27B Gemma 3 model have?\nAnswer:",
+ " 27B"
+ ],
+ [
+ "Question:How many total parameters (embedding + non-embedding) does the 27B Gemma 3 model have?\nAnswer:",
+ " 27.016B"
+ ],
+ [
+ "Question:How many total parameters (embedding + non-embedding) does the 27B Gemma 3 model have?\nAnswer:",
+ " 27.1B"
+ ],
+ [
+ "Question:How many total parameters (embedding + non-embedding) does the 27B Gemma 3 model have?\nAnswer:",
+ " 26.8B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.136405944824219,
+ false
+ ]
+ ],
+ [
+ [
+ -17.86618423461914,
+ false
+ ]
+ ],
+ [
+ [
+ -10.8336181640625,
+ false
+ ]
+ ],
+ [
+ [
+ -10.884462356567383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.136405944824219,
+ false
+ ],
+ [
+ -17.86618423461914,
+ false
+ ],
+ [
+ -10.8336181640625,
+ false
+ ],
+ [
+ -10.884462356567383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5842149ba010657b22b49f12b6debfa63fa8b8e2d6e4bc9871ec50e980098760",
+ "prompt_hash": "8461a60fdebcd1cc4f40a3c6426a6cd947f97e2127d7dc4478e749752b02cd43",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "What inference-time only optimization is used in Gemma 3 to handle non-square images?",
+ "choices": [
+ "Vision Anchoring",
+ "Pan & Scan",
+ "Aspect Balancing",
+ "Dynamic Cropping"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What inference-time only optimization is used in Gemma 3 to handle non-square images?\nAnswer:",
+ " Vision Anchoring"
+ ],
+ [
+ "Question:What inference-time only optimization is used in Gemma 3 to handle non-square images?\nAnswer:",
+ " Pan & Scan"
+ ],
+ [
+ "Question:What inference-time only optimization is used in Gemma 3 to handle non-square images?\nAnswer:",
+ " Aspect Balancing"
+ ],
+ [
+ "Question:What inference-time only optimization is used in Gemma 3 to handle non-square images?\nAnswer:",
+ " Dynamic Cropping"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.630983352661133,
+ false
+ ]
+ ],
+ [
+ [
+ -26.441328048706055,
+ false
+ ]
+ ],
+ [
+ [
+ -21.41448974609375,
+ false
+ ]
+ ],
+ [
+ [
+ -14.279927253723145,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.630983352661133,
+ false
+ ],
+ [
+ -26.441328048706055,
+ false
+ ],
+ [
+ -21.41448974609375,
+ false
+ ],
+ [
+ -14.279927253723145,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6e90ce4e868ee70a1eca0960a6af1237ddb1e47ca9de73723b3f999558529a1d",
+ "prompt_hash": "6658e935966c2e74db19f5b037c83d7411a09bea09127949da76c6e81ec75c0a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "Which safety evaluation category did Gemma 3 specifically include due to enhanced STEM capabilities?",
+ "choices": [
+ "Cybersecurity knowledge",
+ "Finance and Economics",
+ "CBRN knowledge",
+ "Social Media Behavior"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which safety evaluation category did Gemma 3 specifically include due to enhanced STEM capabilities?\nAnswer:",
+ " Cybersecurity knowledge"
+ ],
+ [
+ "Question:Which safety evaluation category did Gemma 3 specifically include due to enhanced STEM capabilities?\nAnswer:",
+ " Finance and Economics"
+ ],
+ [
+ "Question:Which safety evaluation category did Gemma 3 specifically include due to enhanced STEM capabilities?\nAnswer:",
+ " CBRN knowledge"
+ ],
+ [
+ "Question:Which safety evaluation category did Gemma 3 specifically include due to enhanced STEM capabilities?\nAnswer:",
+ " Social Media Behavior"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.702552795410156,
+ false
+ ]
+ ],
+ [
+ [
+ -14.265310287475586,
+ false
+ ]
+ ],
+ [
+ [
+ -22.69251251220703,
+ false
+ ]
+ ],
+ [
+ [
+ -19.999557495117188,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.702552795410156,
+ false
+ ],
+ [
+ -14.265310287475586,
+ false
+ ],
+ [
+ -22.69251251220703,
+ false
+ ],
+ [
+ -19.999557495117188,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "425e78f5165a218cc2b86be871da341b09c0ae1d7dab0ebae8c99de388963e17",
+ "prompt_hash": "13fb9a68a0b3bbc6b032651d87fdd33f8dd44d1b2ccad6d54c66ea61cd6ec078",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What is the base model from which the real R1-Zero model was RL-tuned?",
+ "choices": [
+ "Llama-3.1-8B",
+ "DeepSeek-Math-7B",
+ "DeepSeek-V3-Base",
+ "Qwen2.5-Math-7B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the base model from which the real R1-Zero model was RL-tuned?\nAnswer:",
+ " Llama-3.1-8B"
+ ],
+ [
+ "Question:What is the base model from which the real R1-Zero model was RL-tuned?\nAnswer:",
+ " DeepSeek-Math-7B"
+ ],
+ [
+ "Question:What is the base model from which the real R1-Zero model was RL-tuned?\nAnswer:",
+ " DeepSeek-V3-Base"
+ ],
+ [
+ "Question:What is the base model from which the real R1-Zero model was RL-tuned?\nAnswer:",
+ " Qwen2.5-Math-7B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.302518844604492,
+ false
+ ]
+ ],
+ [
+ [
+ -12.263545989990234,
+ false
+ ]
+ ],
+ [
+ [
+ -15.69733715057373,
+ false
+ ]
+ ],
+ [
+ [
+ -28.591899871826172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.302518844604492,
+ false
+ ],
+ [
+ -12.263545989990234,
+ false
+ ],
+ [
+ -15.69733715057373,
+ false
+ ],
+ [
+ -28.591899871826172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "425fb6413cbaf02643187905a94b7afab3ebc39235047c75b2a9d5f3d7c9c981",
+ "prompt_hash": "284ad1e4ac539551b571db1161b496041ee9bc42e8b7d6225956bfc2fbc95331",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "Which template causes Qwen2.5 models to achieve the best answering rate?",
+ "choices": [
+ "R1 template",
+ "Qwen-Math template",
+ "No template",
+ "ChatML template"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which template causes Qwen2.5 models to achieve the best answering rate?\nAnswer:",
+ " R1 template"
+ ],
+ [
+ "Question:Which template causes Qwen2.5 models to achieve the best answering rate?\nAnswer:",
+ " Qwen-Math template"
+ ],
+ [
+ "Question:Which template causes Qwen2.5 models to achieve the best answering rate?\nAnswer:",
+ " No template"
+ ],
+ [
+ "Question:Which template causes Qwen2.5 models to achieve the best answering rate?\nAnswer:",
+ " ChatML template"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.14205265045166,
+ false
+ ]
+ ],
+ [
+ [
+ -18.41335678100586,
+ false
+ ]
+ ],
+ [
+ [
+ -9.426735877990723,
+ false
+ ]
+ ],
+ [
+ [
+ -17.698406219482422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.14205265045166,
+ false
+ ],
+ [
+ -18.41335678100586,
+ false
+ ],
+ [
+ -9.426735877990723,
+ false
+ ],
+ [
+ -17.698406219482422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e276f3e4f740afa19b370b6fa6d3fb9e4c444087f2287764c80a48895a928916",
+ "prompt_hash": "16bfaae8e1c150c18756aba6f18ff3c27ac21303898ebcf0cc3b01090f785eb3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What happens when response length normalization is used in GRPO optimization?",
+ "choices": [
+ "Correct responses are penalized more than incorrect ones",
+ "Incorrect longer responses are penalized less, introducing a bias",
+ "It increases the sample efficiency of RL",
+ "It reduces training time significantly"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What happens when response length normalization is used in GRPO optimization?\nAnswer:",
+ " Correct responses are penalized more than incorrect ones"
+ ],
+ [
+ "Question:What happens when response length normalization is used in GRPO optimization?\nAnswer:",
+ " Incorrect longer responses are penalized less, introducing a bias"
+ ],
+ [
+ "Question:What happens when response length normalization is used in GRPO optimization?\nAnswer:",
+ " It increases the sample efficiency of RL"
+ ],
+ [
+ "Question:What happens when response length normalization is used in GRPO optimization?\nAnswer:",
+ " It reduces training time significantly"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.865703582763672,
+ false
+ ]
+ ],
+ [
+ [
+ -41.340171813964844,
+ false
+ ]
+ ],
+ [
+ [
+ -18.086406707763672,
+ false
+ ]
+ ],
+ [
+ [
+ -17.6712646484375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.865703582763672,
+ false
+ ],
+ [
+ -41.340171813964844,
+ false
+ ],
+ [
+ -18.086406707763672,
+ false
+ ],
+ [
+ -17.6712646484375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4d5934e658d460f25d3bc431bd62e6c04fe5215d1cb4135263099e2f0f9d3698",
+ "prompt_hash": "8a4cfa65ee45c8fd926488b9da403e6e073d7a36870f077a9066381662beb0b4",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "Which base model was used to validate that 'Aha moment' exists even before RL tuning?",
+ "choices": [
+ "Qwen2.5-Math-7B",
+ "DeepSeek-V3-Base-685B",
+ "Llama-3.2-3B-FineMath",
+ "Qwen2.5-7B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which base model was used to validate that 'Aha moment' exists even before RL tuning?\nAnswer:",
+ " Qwen2.5-Math-7B"
+ ],
+ [
+ "Question:Which base model was used to validate that 'Aha moment' exists even before RL tuning?\nAnswer:",
+ " DeepSeek-V3-Base-685B"
+ ],
+ [
+ "Question:Which base model was used to validate that 'Aha moment' exists even before RL tuning?\nAnswer:",
+ " Llama-3.2-3B-FineMath"
+ ],
+ [
+ "Question:Which base model was used to validate that 'Aha moment' exists even before RL tuning?\nAnswer:",
+ " Qwen2.5-7B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.53913879394531,
+ false
+ ]
+ ],
+ [
+ [
+ -35.789276123046875,
+ false
+ ]
+ ],
+ [
+ [
+ -53.510955810546875,
+ false
+ ]
+ ],
+ [
+ [
+ -18.954143524169922,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.53913879394531,
+ false
+ ],
+ [
+ -35.789276123046875,
+ false
+ ],
+ [
+ -53.510955810546875,
+ false
+ ],
+ [
+ -18.954143524169922,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0fdcedc94bd894ba91a0bbb7a03707c8eff6efb38f1a515c3d0203fa38abd248",
+ "prompt_hash": "a56b0ec56fbd3e5d5c6d8f9a1830d58b15f44be80b68c2b5b83cf29c911053bf",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "Which optimization algorithm is proposed to fix the biases in GRPO?",
+ "choices": [
+ "SimpleRL",
+ "OAT",
+ "Dr. GRPO",
+ "OpenReasonerZero"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which optimization algorithm is proposed to fix the biases in GRPO?\nAnswer:",
+ " SimpleRL"
+ ],
+ [
+ "Question:Which optimization algorithm is proposed to fix the biases in GRPO?\nAnswer:",
+ " OAT"
+ ],
+ [
+ "Question:Which optimization algorithm is proposed to fix the biases in GRPO?\nAnswer:",
+ " Dr. GRPO"
+ ],
+ [
+ "Question:Which optimization algorithm is proposed to fix the biases in GRPO?\nAnswer:",
+ " OpenReasonerZero"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.617036819458008,
+ false
+ ]
+ ],
+ [
+ [
+ -17.69548797607422,
+ false
+ ]
+ ],
+ [
+ [
+ -21.835552215576172,
+ false
+ ]
+ ],
+ [
+ [
+ -35.151519775390625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.617036819458008,
+ false
+ ],
+ [
+ -17.69548797607422,
+ false
+ ],
+ [
+ -21.835552215576172,
+ false
+ ],
+ [
+ -35.151519775390625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c9c2d3d85b345606e32f4358522b713e59a8d620b948b68366e538dbd8777364",
+ "prompt_hash": "2f190fbb501c082fe8dad817e3d2210e7e636b7b6798f8e200f4aa91cc483103",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2504": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What is the core idea behind Test-Time Training (TTT) layers?",
+ "choices": [
+ "To use reinforcement learning to optimize self-attention weights",
+ "To update the hidden state by performing self-supervised learning on test sequences",
+ "To replace the output layer with a convolutional neural network",
+ "To store all previous tokens in a growing memory bank"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the core idea behind Test-Time Training (TTT) layers?\nAnswer:",
+ " To use reinforcement learning to optimize self-attention weights"
+ ],
+ [
+ "Question:What is the core idea behind Test-Time Training (TTT) layers?\nAnswer:",
+ " To update the hidden state by performing self-supervised learning on test sequences"
+ ],
+ [
+ "Question:What is the core idea behind Test-Time Training (TTT) layers?\nAnswer:",
+ " To replace the output layer with a convolutional neural network"
+ ],
+ [
+ "Question:What is the core idea behind Test-Time Training (TTT) layers?\nAnswer:",
+ " To store all previous tokens in a growing memory bank"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.77750778198242,
+ false
+ ]
+ ],
+ [
+ [
+ -46.157283782958984,
+ false
+ ]
+ ],
+ [
+ [
+ -27.082561492919922,
+ false
+ ]
+ ],
+ [
+ [
+ -40.0142822265625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.77750778198242,
+ false
+ ],
+ [
+ -46.157283782958984,
+ false
+ ],
+ [
+ -27.082561492919922,
+ false
+ ],
+ [
+ -40.0142822265625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "38deb46c3e6bcd16e282f2854be11412df6d89a810e8e55e04755102ae6f24bd",
+ "prompt_hash": "92f3a1e021ad0f55e7438b044e9614e84a66b4be270947678ef4414a97994cb7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "What is a key limitation of Mamba and other RNNs with long context?",
+ "choices": [
+ "They require quadratic compute for each token",
+ "They struggle to leverage additional context due to fixed-size hidden states",
+ "They cannot model sequential data effectively",
+ "They fail to support autoregressive generation"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is a key limitation of Mamba and other RNNs with long context?\nAnswer:",
+ " They require quadratic compute for each token"
+ ],
+ [
+ "Question:What is a key limitation of Mamba and other RNNs with long context?\nAnswer:",
+ " They struggle to leverage additional context due to fixed-size hidden states"
+ ],
+ [
+ "Question:What is a key limitation of Mamba and other RNNs with long context?\nAnswer:",
+ " They cannot model sequential data effectively"
+ ],
+ [
+ "Question:What is a key limitation of Mamba and other RNNs with long context?\nAnswer:",
+ " They fail to support autoregressive generation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.596776962280273,
+ false
+ ]
+ ],
+ [
+ [
+ -38.50588607788086,
+ false
+ ]
+ ],
+ [
+ [
+ -21.299732208251953,
+ false
+ ]
+ ],
+ [
+ [
+ -21.81735610961914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.596776962280273,
+ false
+ ],
+ [
+ -38.50588607788086,
+ false
+ ],
+ [
+ -21.299732208251953,
+ false
+ ],
+ [
+ -21.81735610961914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6dae0275bb1f095d245ba2b9f234fba68fe7fa4b3cd46aed30a921f5fe497ab6",
+ "prompt_hash": "cbda6cc12266a1fe5566a41142df2ae9d9eba288f89d93f84c58d56b9d5f0b01",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "Which component of the TTT update rule controls the memory of important inputs?",
+ "choices": [
+ "Learning rate scheduler",
+ "Initialization method",
+ "Magnitude of the gradient",
+ "Token position embedding"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which component of the TTT update rule controls the memory of important inputs?\nAnswer:",
+ " Learning rate scheduler"
+ ],
+ [
+ "Question:Which component of the TTT update rule controls the memory of important inputs?\nAnswer:",
+ " Initialization method"
+ ],
+ [
+ "Question:Which component of the TTT update rule controls the memory of important inputs?\nAnswer:",
+ " Magnitude of the gradient"
+ ],
+ [
+ "Question:Which component of the TTT update rule controls the memory of important inputs?\nAnswer:",
+ " Token position embedding"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.16729736328125,
+ false
+ ]
+ ],
+ [
+ [
+ -16.269275665283203,
+ false
+ ]
+ ],
+ [
+ [
+ -18.67959213256836,
+ false
+ ]
+ ],
+ [
+ [
+ -21.4112548828125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.16729736328125,
+ false
+ ],
+ [
+ -16.269275665283203,
+ false
+ ],
+ [
+ -18.67959213256836,
+ false
+ ],
+ [
+ -21.4112548828125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "340bac4d864990adaa7a81307205adea50fc27024377cf470dfc2a9221a93c0f",
+ "prompt_hash": "f649ff3e9e5526b70d5c0f97434961815553b1ea96ce84fe5ca61a79dc3704ca",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "Which optimization technique enables parallel computation within TTT layers?",
+ "choices": [
+ "Batch normalization",
+ "Mini-batch gradient descent",
+ "Cross-attention heads",
+ "Spectral normalization"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which optimization technique enables parallel computation within TTT layers?\nAnswer:",
+ " Batch normalization"
+ ],
+ [
+ "Question:Which optimization technique enables parallel computation within TTT layers?\nAnswer:",
+ " Mini-batch gradient descent"
+ ],
+ [
+ "Question:Which optimization technique enables parallel computation within TTT layers?\nAnswer:",
+ " Cross-attention heads"
+ ],
+ [
+ "Question:Which optimization technique enables parallel computation within TTT layers?\nAnswer:",
+ " Spectral normalization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.81269645690918,
+ false
+ ]
+ ],
+ [
+ [
+ -13.134269714355469,
+ false
+ ]
+ ],
+ [
+ [
+ -21.161026000976562,
+ false
+ ]
+ ],
+ [
+ [
+ -17.38707160949707,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.81269645690918,
+ false
+ ],
+ [
+ -13.134269714355469,
+ false
+ ],
+ [
+ -21.161026000976562,
+ false
+ ],
+ [
+ -17.38707160949707,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "08f90fc63949a7638643ce9090709183398949478d66f28037b0f6efddb6aa4a",
+ "prompt_hash": "7ec29e6617c966fe0ac0c4d5b8b328dadc681e4bfd3991ef692260c0afef1ee5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "What is the effect of using dual form computation in TTT layers?",
+ "choices": [
+ "It reduces model accuracy",
+ "It increases memory consumption",
+ "It replaces gradient descent with reinforcement learning",
+ "It improves wall-clock efficiency using matrix multiplications"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the effect of using dual form computation in TTT layers?\nAnswer:",
+ " It reduces model accuracy"
+ ],
+ [
+ "Question:What is the effect of using dual form computation in TTT layers?\nAnswer:",
+ " It increases memory consumption"
+ ],
+ [
+ "Question:What is the effect of using dual form computation in TTT layers?\nAnswer:",
+ " It replaces gradient descent with reinforcement learning"
+ ],
+ [
+ "Question:What is the effect of using dual form computation in TTT layers?\nAnswer:",
+ " It improves wall-clock efficiency using matrix multiplications"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.410049438476562,
+ false
+ ]
+ ],
+ [
+ [
+ -14.193151473999023,
+ false
+ ]
+ ],
+ [
+ [
+ -30.24262237548828,
+ false
+ ]
+ ],
+ [
+ [
+ -37.17277908325195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.410049438476562,
+ false
+ ],
+ [
+ -14.193151473999023,
+ false
+ ],
+ [
+ -30.24262237548828,
+ false
+ ],
+ [
+ -37.17277908325195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b990c0a36d8541836391236266b73e5b3b67632a3eeb8ddf4d98e064b9011004",
+ "prompt_hash": "4eaea28148eb03171cf8b6abac0960d1a7d1ea85be499990d1b056dfebbc94db",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "What is the default generalist agent in the \\u03c0ProjName platform based on?",
+ "choices": [
+ "AutoGPT framework",
+ "GPTSwarm framework",
+ "CodeAct framework",
+ "LangChain framework"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the default generalist agent in the \\u03c0ProjName platform based on?\nAnswer:",
+ " AutoGPT framework"
+ ],
+ [
+ "Question:What is the default generalist agent in the \\u03c0ProjName platform based on?\nAnswer:",
+ " GPTSwarm framework"
+ ],
+ [
+ "Question:What is the default generalist agent in the \\u03c0ProjName platform based on?\nAnswer:",
+ " CodeAct framework"
+ ],
+ [
+ "Question:What is the default generalist agent in the \\u03c0ProjName platform based on?\nAnswer:",
+ " LangChain framework"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.14948272705078,
+ false
+ ]
+ ],
+ [
+ [
+ -32.60398864746094,
+ false
+ ]
+ ],
+ [
+ [
+ -24.835786819458008,
+ false
+ ]
+ ],
+ [
+ [
+ -18.423686981201172,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.14948272705078,
+ false
+ ],
+ [
+ -32.60398864746094,
+ false
+ ],
+ [
+ -24.835786819458008,
+ false
+ ],
+ [
+ -18.423686981201172,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "96b887aa186fc9f41105fef3aedb600f14929d28d62adf9ba777c428dde91d82",
+ "prompt_hash": "8deeb747d7199529a9618ec371bf05e21bdc99cb336ec09309db05d229714bdf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "Which benchmark in \\u03c0ProjName evaluates agents' ability to solve real-world GitHub issues?",
+ "choices": [
+ "BIRD",
+ "SWE-Bench",
+ "ML-Bench",
+ "ToolQA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark in \\u03c0ProjName evaluates agents' ability to solve real-world GitHub issues?\nAnswer:",
+ " BIRD"
+ ],
+ [
+ "Question:Which benchmark in \\u03c0ProjName evaluates agents' ability to solve real-world GitHub issues?\nAnswer:",
+ " SWE-Bench"
+ ],
+ [
+ "Question:Which benchmark in \\u03c0ProjName evaluates agents' ability to solve real-world GitHub issues?\nAnswer:",
+ " ML-Bench"
+ ],
+ [
+ "Question:Which benchmark in \\u03c0ProjName evaluates agents' ability to solve real-world GitHub issues?\nAnswer:",
+ " ToolQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.440174102783203,
+ false
+ ]
+ ],
+ [
+ [
+ -19.376497268676758,
+ false
+ ]
+ ],
+ [
+ [
+ -16.297597885131836,
+ false
+ ]
+ ],
+ [
+ [
+ -17.651885986328125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.440174102783203,
+ false
+ ],
+ [
+ -19.376497268676758,
+ false
+ ],
+ [
+ -16.297597885131836,
+ false
+ ],
+ [
+ -17.651885986328125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dc682efd31bb421005df56ecebb139ae29949e44d741b7c4a2156c77458c55c1",
+ "prompt_hash": "6ea62778d7eaa7e9a97910eb0ce89a9e7ac6e2290001fd6fa0b95ac91fedc2a0",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "Which of the following features is included in the \\u03c0ProjName runtime environment?",
+ "choices": [
+ "A Java-based development IDE",
+ "A docker-sandboxed OS with bash shell, browser, and IPython",
+ "A graphical robot simulator",
+ "An Android app emulator"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which of the following features is included in the \\u03c0ProjName runtime environment?\nAnswer:",
+ " A Java-based development IDE"
+ ],
+ [
+ "Question:Which of the following features is included in the \\u03c0ProjName runtime environment?\nAnswer:",
+ " A docker-sandboxed OS with bash shell, browser, and IPython"
+ ],
+ [
+ "Question:Which of the following features is included in the \\u03c0ProjName runtime environment?\nAnswer:",
+ " A graphical robot simulator"
+ ],
+ [
+ "Question:Which of the following features is included in the \\u03c0ProjName runtime environment?\nAnswer:",
+ " An Android app emulator"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.697124481201172,
+ false
+ ]
+ ],
+ [
+ [
+ -72.92766571044922,
+ false
+ ]
+ ],
+ [
+ [
+ -27.337249755859375,
+ false
+ ]
+ ],
+ [
+ [
+ -24.528051376342773,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.697124481201172,
+ false
+ ],
+ [
+ -72.92766571044922,
+ false
+ ],
+ [
+ -27.337249755859375,
+ false
+ ],
+ [
+ -24.528051376342773,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "de5588e92353dab7d7436a3cdfc50c5e64701fe9ad706f86cadd1faa3f7b1df2",
+ "prompt_hash": "4c87d0d6e9492853d86a42351bd522c49dc3744842c0408f7e92d5ef3083208c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "What tool is used by \\u03c0ProjName to enable agents to interact with a web browser?",
+ "choices": [
+ "BrowserSim",
+ "WebGPT",
+ "BrowserGym",
+ "SurfAgent"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What tool is used by \\u03c0ProjName to enable agents to interact with a web browser?\nAnswer:",
+ " BrowserSim"
+ ],
+ [
+ "Question:What tool is used by \\u03c0ProjName to enable agents to interact with a web browser?\nAnswer:",
+ " WebGPT"
+ ],
+ [
+ "Question:What tool is used by \\u03c0ProjName to enable agents to interact with a web browser?\nAnswer:",
+ " BrowserGym"
+ ],
+ [
+ "Question:What tool is used by \\u03c0ProjName to enable agents to interact with a web browser?\nAnswer:",
+ " SurfAgent"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.702177047729492,
+ false
+ ]
+ ],
+ [
+ [
+ -14.297331809997559,
+ false
+ ]
+ ],
+ [
+ [
+ -17.375381469726562,
+ false
+ ]
+ ],
+ [
+ [
+ -18.06667709350586,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.702177047729492,
+ false
+ ],
+ [
+ -14.297331809997559,
+ false
+ ],
+ [
+ -17.375381469726562,
+ false
+ ],
+ [
+ -18.06667709350586,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9d534af51b69b2f82b4dbd80bdbe20bed3aabca18b77b941e50016e0b24e2dd1",
+ "prompt_hash": "3665f8c8878fc70c0e9a093d859323be0d5b21bd46e581b315347beccd0650d1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "Which agent in \\u03c0ProjName uses optimizable graphs to structure multi-agent collaboration?",
+ "choices": [
+ "BrowsingAgent",
+ "MicroAgent",
+ "CodeActAgent",
+ "GPTSwarm"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which agent in \\u03c0ProjName uses optimizable graphs to structure multi-agent collaboration?\nAnswer:",
+ " BrowsingAgent"
+ ],
+ [
+ "Question:Which agent in \\u03c0ProjName uses optimizable graphs to structure multi-agent collaboration?\nAnswer:",
+ " MicroAgent"
+ ],
+ [
+ "Question:Which agent in \\u03c0ProjName uses optimizable graphs to structure multi-agent collaboration?\nAnswer:",
+ " CodeActAgent"
+ ],
+ [
+ "Question:Which agent in \\u03c0ProjName uses optimizable graphs to structure multi-agent collaboration?\nAnswer:",
+ " GPTSwarm"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.018024444580078,
+ false
+ ]
+ ],
+ [
+ [
+ -13.79063892364502,
+ false
+ ]
+ ],
+ [
+ [
+ -22.27632713317871,
+ false
+ ]
+ ],
+ [
+ [
+ -24.9874210357666,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.018024444580078,
+ false
+ ],
+ [
+ -13.79063892364502,
+ false
+ ],
+ [
+ -22.27632713317871,
+ false
+ ],
+ [
+ -24.9874210357666,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f606bcb6b0c4a094954822055c673684a6fa4f2efb78544b4c2e6c05a808ef97",
+ "prompt_hash": "8152de317fa3a81797fd96b506992fc481d6379ab6bed213a181e17f6c80a297",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "Which model is initialized using Chameleon and fine-tuned to perform flexible photorealistic image generation?",
+ "choices": [
+ "Lumina-mGPT",
+ "LlamaGen",
+ "Unified-IO",
+ "Parti"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which model is initialized using Chameleon and fine-tuned to perform flexible photorealistic image generation?\nAnswer:",
+ " Lumina-mGPT"
+ ],
+ [
+ "Question:Which model is initialized using Chameleon and fine-tuned to perform flexible photorealistic image generation?\nAnswer:",
+ " LlamaGen"
+ ],
+ [
+ "Question:Which model is initialized using Chameleon and fine-tuned to perform flexible photorealistic image generation?\nAnswer:",
+ " Unified-IO"
+ ],
+ [
+ "Question:Which model is initialized using Chameleon and fine-tuned to perform flexible photorealistic image generation?\nAnswer:",
+ " Parti"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.615093231201172,
+ false
+ ]
+ ],
+ [
+ [
+ -17.153465270996094,
+ false
+ ]
+ ],
+ [
+ [
+ -21.21820831298828,
+ false
+ ]
+ ],
+ [
+ [
+ -12.093520164489746,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.615093231201172,
+ false
+ ],
+ [
+ -17.153465270996094,
+ false
+ ],
+ [
+ -21.21820831298828,
+ false
+ ],
+ [
+ -12.093520164489746,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3c4cdbdaa1dc8dcacb12dd02c521706c786475b0cb095d5a56d55c378b5f57b1",
+ "prompt_hash": "f4c5960dbafee13f31def78c1d11be9716e70c858f9eae81d3115d8f63675798",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "Which image tokenizer is used to convert continuous images into discrete token representations in Lumina-mGPT?",
+ "choices": [
+ "CLIP",
+ "VQ-VAE",
+ "T5",
+ "BLIP-2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which image tokenizer is used to convert continuous images into discrete token representations in Lumina-mGPT?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:Which image tokenizer is used to convert continuous images into discrete token representations in Lumina-mGPT?\nAnswer:",
+ " VQ-VAE"
+ ],
+ [
+ "Question:Which image tokenizer is used to convert continuous images into discrete token representations in Lumina-mGPT?\nAnswer:",
+ " T5"
+ ],
+ [
+ "Question:Which image tokenizer is used to convert continuous images into discrete token representations in Lumina-mGPT?\nAnswer:",
+ " BLIP-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.132687568664551,
+ false
+ ]
+ ],
+ [
+ [
+ -9.240951538085938,
+ false
+ ]
+ ],
+ [
+ [
+ -8.123697280883789,
+ false
+ ]
+ ],
+ [
+ [
+ -7.108697414398193,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.132687568664551,
+ false
+ ],
+ [
+ -9.240951538085938,
+ false
+ ],
+ [
+ -8.123697280883789,
+ false
+ ],
+ [
+ -7.108697414398193,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e990c8b755365bda51b6e5823dd20e721fdb08668b8aa6560c22e8f8aada1a5a",
+ "prompt_hash": "73b8b344200587e0b4718afd66c91e19e3b69c2f682103ea49ca09afd5fd8b84",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "What is the purpose of the Uni-Rep mechanism in Lumina-mGPT?",
+ "choices": [
+ "To reduce model parameters",
+ "To enable multilingual understanding",
+ "To resolve ambiguity in image representation at variable resolutions",
+ "To improve text-to-text translation accuracy"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of the Uni-Rep mechanism in Lumina-mGPT?\nAnswer:",
+ " To reduce model parameters"
+ ],
+ [
+ "Question:What is the purpose of the Uni-Rep mechanism in Lumina-mGPT?\nAnswer:",
+ " To enable multilingual understanding"
+ ],
+ [
+ "Question:What is the purpose of the Uni-Rep mechanism in Lumina-mGPT?\nAnswer:",
+ " To resolve ambiguity in image representation at variable resolutions"
+ ],
+ [
+ "Question:What is the purpose of the Uni-Rep mechanism in Lumina-mGPT?\nAnswer:",
+ " To improve text-to-text translation accuracy"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.619407653808594,
+ false
+ ]
+ ],
+ [
+ [
+ -18.321727752685547,
+ false
+ ]
+ ],
+ [
+ [
+ -43.85601043701172,
+ false
+ ]
+ ],
+ [
+ [
+ -24.20636749267578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.619407653808594,
+ false
+ ],
+ [
+ -18.321727752685547,
+ false
+ ],
+ [
+ -43.85601043701172,
+ false
+ ],
+ [
+ -24.20636749267578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6c81e66a7809483eb4421cd3b4df65810dec24ef70ac52e78d5b8076bd00ba40",
+ "prompt_hash": "5b013bf04314ca3715830a64cff0b873eaba6936257e667f6348264f5f1899a8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "What decoding configuration leads to over-smoothed images in Lumina-mGPT?",
+ "choices": [
+ "High temperature and high top-k",
+ "Low temperature and low top-k",
+ "High temperature and low top-k",
+ "Low temperature and high top-k"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What decoding configuration leads to over-smoothed images in Lumina-mGPT?\nAnswer:",
+ " High temperature and high top-k"
+ ],
+ [
+ "Question:What decoding configuration leads to over-smoothed images in Lumina-mGPT?\nAnswer:",
+ " Low temperature and low top-k"
+ ],
+ [
+ "Question:What decoding configuration leads to over-smoothed images in Lumina-mGPT?\nAnswer:",
+ " High temperature and low top-k"
+ ],
+ [
+ "Question:What decoding configuration leads to over-smoothed images in Lumina-mGPT?\nAnswer:",
+ " Low temperature and high top-k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.500091552734375,
+ false
+ ]
+ ],
+ [
+ [
+ -26.081687927246094,
+ false
+ ]
+ ],
+ [
+ [
+ -27.74274444580078,
+ false
+ ]
+ ],
+ [
+ [
+ -26.584110260009766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.500091552734375,
+ false
+ ],
+ [
+ -26.081687927246094,
+ false
+ ],
+ [
+ -27.74274444580078,
+ false
+ ],
+ [
+ -26.584110260009766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c82b1cb220231c9115fa8fa94d1d6ac040c24da5d9660e6dc773b4e7f23b549a",
+ "prompt_hash": "7b2a11a14c13ad064e140372757480314598ca014eeee03d30a0e95e1dba18a4",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "Which task is Lumina-mGPT notably worse at compared to Lumina-Next-SFT?",
+ "choices": [
+ "Text rendering",
+ "Image segmentation",
+ "Emoji and multilingual prompt understanding",
+ "Generating photorealistic images"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which task is Lumina-mGPT notably worse at compared to Lumina-Next-SFT?\nAnswer:",
+ " Text rendering"
+ ],
+ [
+ "Question:Which task is Lumina-mGPT notably worse at compared to Lumina-Next-SFT?\nAnswer:",
+ " Image segmentation"
+ ],
+ [
+ "Question:Which task is Lumina-mGPT notably worse at compared to Lumina-Next-SFT?\nAnswer:",
+ " Emoji and multilingual prompt understanding"
+ ],
+ [
+ "Question:Which task is Lumina-mGPT notably worse at compared to Lumina-Next-SFT?\nAnswer:",
+ " Generating photorealistic images"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.127840042114258,
+ false
+ ]
+ ],
+ [
+ [
+ -14.279623985290527,
+ false
+ ]
+ ],
+ [
+ [
+ -40.32209014892578,
+ false
+ ]
+ ],
+ [
+ [
+ -22.854705810546875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.127840042114258,
+ false
+ ],
+ [
+ -14.279623985290527,
+ false
+ ],
+ [
+ -40.32209014892578,
+ false
+ ],
+ [
+ -22.854705810546875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5b18611ff6a125330cc621a1d13f27733a9373081d46f95b9a02bf7851100ded",
+ "prompt_hash": "9606546b1e022056a8c74f556629f4badd74973aed5618398161c23f481b819e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What is the base model used for GameNGen's generative diffusion model?",
+ "choices": [
+ "Stable Diffusion v1.4",
+ "DALL-E 2",
+ "Sora",
+ "VideoGPT"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the base model used for GameNGen's generative diffusion model?\nAnswer:",
+ " Stable Diffusion v1.4"
+ ],
+ [
+ "Question:What is the base model used for GameNGen's generative diffusion model?\nAnswer:",
+ " DALL-E 2"
+ ],
+ [
+ "Question:What is the base model used for GameNGen's generative diffusion model?\nAnswer:",
+ " Sora"
+ ],
+ [
+ "Question:What is the base model used for GameNGen's generative diffusion model?\nAnswer:",
+ " VideoGPT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.692073822021484,
+ false
+ ]
+ ],
+ [
+ [
+ -9.232468605041504,
+ false
+ ]
+ ],
+ [
+ [
+ -10.69438648223877,
+ false
+ ]
+ ],
+ [
+ [
+ -13.608548164367676,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.692073822021484,
+ false
+ ],
+ [
+ -9.232468605041504,
+ false
+ ],
+ [
+ -10.69438648223877,
+ false
+ ],
+ [
+ -13.608548164367676,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "549bb43da88123ea866024bfd7792dd83bbcb1ec677024882629c519a5368b57",
+ "prompt_hash": "9706de92c1542d7d3908b5930d4f8d641952a6f18cfb414aa40222750a559791",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "What is the simulation frame rate achieved by GameNGen using 4 denoising steps on a single TPU-v5?",
+ "choices": [
+ "10 FPS",
+ "20 FPS",
+ "30 FPS",
+ "50 FPS"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the simulation frame rate achieved by GameNGen using 4 denoising steps on a single TPU-v5?\nAnswer:",
+ " 10 FPS"
+ ],
+ [
+ "Question:What is the simulation frame rate achieved by GameNGen using 4 denoising steps on a single TPU-v5?\nAnswer:",
+ " 20 FPS"
+ ],
+ [
+ "Question:What is the simulation frame rate achieved by GameNGen using 4 denoising steps on a single TPU-v5?\nAnswer:",
+ " 30 FPS"
+ ],
+ [
+ "Question:What is the simulation frame rate achieved by GameNGen using 4 denoising steps on a single TPU-v5?\nAnswer:",
+ " 50 FPS"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.6766204833984375,
+ false
+ ]
+ ],
+ [
+ [
+ -7.053633689880371,
+ false
+ ]
+ ],
+ [
+ [
+ -6.291062831878662,
+ false
+ ]
+ ],
+ [
+ [
+ -7.362180233001709,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.6766204833984375,
+ false
+ ],
+ [
+ -7.053633689880371,
+ false
+ ],
+ [
+ -6.291062831878662,
+ false
+ ],
+ [
+ -7.362180233001709,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ec62773096a251559ccdf1a58afa1fef13df916d0d4dc8c40b1e77f8a085ef02",
+ "prompt_hash": "09dd3bbd459a965d7ab9852dc4fc0c858e5779a4e3dbe2609d36ef4aae390176",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "What technique is used to mitigate auto-regressive drift during GameNGen training?",
+ "choices": [
+ "Dropout regularization",
+ "Action masking",
+ "Noise augmentation",
+ "Reward shaping"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What technique is used to mitigate auto-regressive drift during GameNGen training?\nAnswer:",
+ " Dropout regularization"
+ ],
+ [
+ "Question:What technique is used to mitigate auto-regressive drift during GameNGen training?\nAnswer:",
+ " Action masking"
+ ],
+ [
+ "Question:What technique is used to mitigate auto-regressive drift during GameNGen training?\nAnswer:",
+ " Noise augmentation"
+ ],
+ [
+ "Question:What technique is used to mitigate auto-regressive drift during GameNGen training?\nAnswer:",
+ " Reward shaping"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.140460968017578,
+ false
+ ]
+ ],
+ [
+ [
+ -14.235921859741211,
+ false
+ ]
+ ],
+ [
+ [
+ -12.192535400390625,
+ false
+ ]
+ ],
+ [
+ [
+ -10.350418090820312,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.140460968017578,
+ false
+ ],
+ [
+ -14.235921859741211,
+ false
+ ],
+ [
+ -12.192535400390625,
+ false
+ ],
+ [
+ -10.350418090820312,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "36eb1cec52b8896c0209fc59202bbb8f9eb31d379587b874841c504d5569f115",
+ "prompt_hash": "eb7e9d7bd15e0e775d0eb43ad17b0e8db1ee45ab7162dc1b0184d2aa997820a4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "What environment is used to train the agent in GameNGen?",
+ "choices": [
+ "OpenAI Gym",
+ "Habitat",
+ "ViZDoom",
+ "Unity ML-Agents"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What environment is used to train the agent in GameNGen?\nAnswer:",
+ " OpenAI Gym"
+ ],
+ [
+ "Question:What environment is used to train the agent in GameNGen?\nAnswer:",
+ " Habitat"
+ ],
+ [
+ "Question:What environment is used to train the agent in GameNGen?\nAnswer:",
+ " ViZDoom"
+ ],
+ [
+ "Question:What environment is used to train the agent in GameNGen?\nAnswer:",
+ " Unity ML-Agents"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.672341823577881,
+ false
+ ]
+ ],
+ [
+ [
+ -9.55917739868164,
+ false
+ ]
+ ],
+ [
+ [
+ -14.614336967468262,
+ false
+ ]
+ ],
+ [
+ [
+ -15.907984733581543,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.672341823577881,
+ false
+ ],
+ [
+ -9.55917739868164,
+ false
+ ],
+ [
+ -14.614336967468262,
+ false
+ ],
+ [
+ -15.907984733581543,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5d806cca5f2f7f25d33a750fdb336f3d1711778a9ed4c1f375d2936c06a380ad",
+ "prompt_hash": "91a5bbed96526191d1fc042cd7490ca4943c15754aa002f8c721f0fc8088d7e1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "Which evaluation metric is used to assess perceptual similarity between predicted and ground truth frames in GameNGen?",
+ "choices": [
+ "BLEU",
+ "LPIPS",
+ "FID",
+ "ROUGE"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which evaluation metric is used to assess perceptual similarity between predicted and ground truth frames in GameNGen?\nAnswer:",
+ " BLEU"
+ ],
+ [
+ "Question:Which evaluation metric is used to assess perceptual similarity between predicted and ground truth frames in GameNGen?\nAnswer:",
+ " LPIPS"
+ ],
+ [
+ "Question:Which evaluation metric is used to assess perceptual similarity between predicted and ground truth frames in GameNGen?\nAnswer:",
+ " FID"
+ ],
+ [
+ "Question:Which evaluation metric is used to assess perceptual similarity between predicted and ground truth frames in GameNGen?\nAnswer:",
+ " ROUGE"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.112617015838623,
+ false
+ ]
+ ],
+ [
+ [
+ -6.217912197113037,
+ false
+ ]
+ ],
+ [
+ [
+ -6.752256393432617,
+ false
+ ]
+ ],
+ [
+ [
+ -9.826387405395508,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.112617015838623,
+ false
+ ],
+ [
+ -6.217912197113037,
+ false
+ ],
+ [
+ -6.752256393432617,
+ false
+ ],
+ [
+ -9.826387405395508,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e31fdf7991d841aba6a36b9c26c5afa8407ac2873a2050829bb576fea3c8edd9",
+ "prompt_hash": "7c96ad49c4efe0de05b05e390385316b801ebd80f99f33535a51f6d5f0a1383a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What operation does the projection matrix \\\\( \\\\mathbf{P} \\\\) perform in AlphaEdit?",
+ "choices": [
+ "It maps \\( \\mathbf{\\Delta} \\) to the space of \\( \\mathbf{K}_1 \\).",
+ "It removes non-zero values from \\( \\mathbf{K}_0 \\).",
+ "It maps the columns of \\( \\mathbf{\\Delta} \\) into the null space of \\( \\mathbf{K}_0 (\\mathbf{K}_0)^T \\).",
+ "It transforms \\( \\mathbf{V}_1 \\) into \\( \\mathbf{K}_1 \\)."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What operation does the projection matrix \\\\( \\\\mathbf{P} \\\\) perform in AlphaEdit?\nAnswer:",
+ " It maps \\( \\mathbf{\\Delta} \\) to the space of \\( \\mathbf{K}_1 \\)."
+ ],
+ [
+ "Question:What operation does the projection matrix \\\\( \\\\mathbf{P} \\\\) perform in AlphaEdit?\nAnswer:",
+ " It removes non-zero values from \\( \\mathbf{K}_0 \\)."
+ ],
+ [
+ "Question:What operation does the projection matrix \\\\( \\\\mathbf{P} \\\\) perform in AlphaEdit?\nAnswer:",
+ " It maps the columns of \\( \\mathbf{\\Delta} \\) into the null space of \\( \\mathbf{K}_0 (\\mathbf{K}_0)^T \\)."
+ ],
+ [
+ "Question:What operation does the projection matrix \\\\( \\\\mathbf{P} \\\\) perform in AlphaEdit?\nAnswer:",
+ " It transforms \\( \\mathbf{V}_1 \\) into \\( \\mathbf{K}_1 \\)."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -44.89137649536133,
+ false
+ ]
+ ],
+ [
+ [
+ -39.17713165283203,
+ false
+ ]
+ ],
+ [
+ [
+ -68.1136474609375,
+ false
+ ]
+ ],
+ [
+ [
+ -35.39399337768555,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -44.89137649536133,
+ false
+ ],
+ [
+ -39.17713165283203,
+ false
+ ],
+ [
+ -68.1136474609375,
+ false
+ ],
+ [
+ -35.39399337768555,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c676dd260c1bbf1d4aa366e869a5a4641abcab7653eaaad994d6ba95f8735661",
+ "prompt_hash": "7ab69a2a15fca401d18c18194c034d929efee87f173c8406b36762f806eb6430",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "In model editing, what does the matrix \\\\( \\\\mathbf{K}_0 \\\\) represent?",
+ "choices": [
+ "Keys for the to-be-updated knowledge.",
+ "Values associated with new knowledge.",
+ "Keys corresponding to preserved knowledge.",
+ "Hidden representations from the attention module."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In model editing, what does the matrix \\\\( \\\\mathbf{K}_0 \\\\) represent?\nAnswer:",
+ " Keys for the to-be-updated knowledge."
+ ],
+ [
+ "Question:In model editing, what does the matrix \\\\( \\\\mathbf{K}_0 \\\\) represent?\nAnswer:",
+ " Values associated with new knowledge."
+ ],
+ [
+ "Question:In model editing, what does the matrix \\\\( \\\\mathbf{K}_0 \\\\) represent?\nAnswer:",
+ " Keys corresponding to preserved knowledge."
+ ],
+ [
+ "Question:In model editing, what does the matrix \\\\( \\\\mathbf{K}_0 \\\\) represent?\nAnswer:",
+ " Hidden representations from the attention module."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -42.37179946899414,
+ false
+ ]
+ ],
+ [
+ [
+ -28.181398391723633,
+ false
+ ]
+ ],
+ [
+ [
+ -33.99174880981445,
+ false
+ ]
+ ],
+ [
+ [
+ -30.02703094482422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -42.37179946899414,
+ false
+ ],
+ [
+ -28.181398391723633,
+ false
+ ],
+ [
+ -33.99174880981445,
+ false
+ ],
+ [
+ -30.02703094482422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3f01d8058a725387868d6b866b6f5115b82fae6db9c7150805775dff7583d463",
+ "prompt_hash": "c4f1449e21b13a7899e0694589e30078938a929c78d222872dab9f5b1f0d8bbf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "What is the purpose of adding the regularization term \\\\( \\\\| \\\\mathbf{\\\\tilde{\\\\Delta}} \\\\mathbf{P} \\\\|^2 \\\\) in AlphaEdit's objective?",
+ "choices": [
+ "To encourage overfitting to new knowledge.",
+ "To reduce computational cost.",
+ "To ensure stable convergence.",
+ "To protect the output layer weights."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of adding the regularization term \\\\( \\\\| \\\\mathbf{\\\\tilde{\\\\Delta}} \\\\mathbf{P} \\\\|^2 \\\\) in AlphaEdit's objective?\nAnswer:",
+ " To encourage overfitting to new knowledge."
+ ],
+ [
+ "Question:What is the purpose of adding the regularization term \\\\( \\\\| \\\\mathbf{\\\\tilde{\\\\Delta}} \\\\mathbf{P} \\\\|^2 \\\\) in AlphaEdit's objective?\nAnswer:",
+ " To reduce computational cost."
+ ],
+ [
+ "Question:What is the purpose of adding the regularization term \\\\( \\\\| \\\\mathbf{\\\\tilde{\\\\Delta}} \\\\mathbf{P} \\\\|^2 \\\\) in AlphaEdit's objective?\nAnswer:",
+ " To ensure stable convergence."
+ ],
+ [
+ "Question:What is the purpose of adding the regularization term \\\\( \\\\| \\\\mathbf{\\\\tilde{\\\\Delta}} \\\\mathbf{P} \\\\|^2 \\\\) in AlphaEdit's objective?\nAnswer:",
+ " To protect the output layer weights."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.75385284423828,
+ false
+ ]
+ ],
+ [
+ [
+ -15.960664749145508,
+ false
+ ]
+ ],
+ [
+ [
+ -14.532302856445312,
+ false
+ ]
+ ],
+ [
+ [
+ -27.53380584716797,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.75385284423828,
+ false
+ ],
+ [
+ -15.960664749145508,
+ false
+ ],
+ [
+ -14.532302856445312,
+ false
+ ],
+ [
+ -27.53380584716797,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1d479ab18c268397b05f7c3ff12af3144864389d471399fe78375060bbb6558d",
+ "prompt_hash": "53a836509437f260d9e638fe15e6a4340939be9bd4dd92f17a67e3bb2b6220cd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "According to the authors, how many \\\\( (s, r, o) \\\\) triplets are typically used to estimate \\\\( \\\\mathbf{K}_0 \\\\)?",
+ "choices": [
+ "1,000",
+ "10,000",
+ "100,000",
+ "1,000,000"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:According to the authors, how many \\\\( (s, r, o) \\\\) triplets are typically used to estimate \\\\( \\\\mathbf{K}_0 \\\\)?\nAnswer:",
+ " 1,000"
+ ],
+ [
+ "Question:According to the authors, how many \\\\( (s, r, o) \\\\) triplets are typically used to estimate \\\\( \\\\mathbf{K}_0 \\\\)?\nAnswer:",
+ " 10,000"
+ ],
+ [
+ "Question:According to the authors, how many \\\\( (s, r, o) \\\\) triplets are typically used to estimate \\\\( \\\\mathbf{K}_0 \\\\)?\nAnswer:",
+ " 100,000"
+ ],
+ [
+ "Question:According to the authors, how many \\\\( (s, r, o) \\\\) triplets are typically used to estimate \\\\( \\\\mathbf{K}_0 \\\\)?\nAnswer:",
+ " 1,000,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.734848022460938,
+ false
+ ]
+ ],
+ [
+ [
+ -11.18825912475586,
+ false
+ ]
+ ],
+ [
+ [
+ -12.390692710876465,
+ false
+ ]
+ ],
+ [
+ [
+ -14.073040962219238,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.734848022460938,
+ false
+ ],
+ [
+ -11.18825912475586,
+ false
+ ],
+ [
+ -12.390692710876465,
+ false
+ ],
+ [
+ -14.073040962219238,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3a4f0a162eec5ace212251af70f20c558c42bbdbf4c3277bcf0942a92db690a4",
+ "prompt_hash": "497eb83cb70c08816b0a69750cf9bba212ce6da227c1038ee0628b8bd95aa08f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "Which existing method does AlphaEdit enhance using a null-space projection matrix?",
+ "choices": [
+ "MEND",
+ "MEMIT",
+ "ROME",
+ "AnyEdit"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which existing method does AlphaEdit enhance using a null-space projection matrix?\nAnswer:",
+ " MEND"
+ ],
+ [
+ "Question:Which existing method does AlphaEdit enhance using a null-space projection matrix?\nAnswer:",
+ " MEMIT"
+ ],
+ [
+ "Question:Which existing method does AlphaEdit enhance using a null-space projection matrix?\nAnswer:",
+ " ROME"
+ ],
+ [
+ "Question:Which existing method does AlphaEdit enhance using a null-space projection matrix?\nAnswer:",
+ " AnyEdit"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.06456756591797,
+ false
+ ]
+ ],
+ [
+ [
+ -19.113515853881836,
+ false
+ ]
+ ],
+ [
+ [
+ -15.50127124786377,
+ false
+ ]
+ ],
+ [
+ [
+ -18.18836212158203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.06456756591797,
+ false
+ ],
+ [
+ -19.113515853881836,
+ false
+ ],
+ [
+ -15.50127124786377,
+ false
+ ],
+ [
+ -18.18836212158203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "03d9f5d279db7222db20e8d9a37a44f2b13ee93e90e42f9430eb50e7d3c95e19",
+ "prompt_hash": "91e0d1fe59550c325118bd31c3fecb11ac2e8dd946c6d26459483d3e274c8c0f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "How many total behaviors are included in the AgentHarm benchmark?",
+ "choices": [
+ "A. 110",
+ "B. 330",
+ "C. 440",
+ "D. 104"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many total behaviors are included in the AgentHarm benchmark?\nAnswer:",
+ " A. 110"
+ ],
+ [
+ "Question:How many total behaviors are included in the AgentHarm benchmark?\nAnswer:",
+ " B. 330"
+ ],
+ [
+ "Question:How many total behaviors are included in the AgentHarm benchmark?\nAnswer:",
+ " C. 440"
+ ],
+ [
+ "Question:How many total behaviors are included in the AgentHarm benchmark?\nAnswer:",
+ " D. 104"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.790489196777344,
+ false
+ ]
+ ],
+ [
+ [
+ -23.0853271484375,
+ false
+ ]
+ ],
+ [
+ [
+ -22.450410842895508,
+ false
+ ]
+ ],
+ [
+ [
+ -22.687061309814453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.790489196777344,
+ false
+ ],
+ [
+ -23.0853271484375,
+ false
+ ],
+ [
+ -22.450410842895508,
+ false
+ ],
+ [
+ -22.687061309814453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3f5706519bbdf0c0f40bcb8d3368d34fa294a16e85278a35b88138aa1f39fa7d",
+ "prompt_hash": "5002ac47ad6ae1d30cd66ee4c8b04ef3d136330923a6bc9f3e84df84282c093e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "What is the typical number of unique tools used per AgentHarm behavior?",
+ "choices": [
+ "A. 1.5",
+ "B. 3.53",
+ "C. 8.0",
+ "D. 104"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the typical number of unique tools used per AgentHarm behavior?\nAnswer:",
+ " A. 1.5"
+ ],
+ [
+ "Question:What is the typical number of unique tools used per AgentHarm behavior?\nAnswer:",
+ " B. 3.53"
+ ],
+ [
+ "Question:What is the typical number of unique tools used per AgentHarm behavior?\nAnswer:",
+ " C. 8.0"
+ ],
+ [
+ "Question:What is the typical number of unique tools used per AgentHarm behavior?\nAnswer:",
+ " D. 104"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.355218887329102,
+ false
+ ]
+ ],
+ [
+ [
+ -23.90653419494629,
+ false
+ ]
+ ],
+ [
+ [
+ -20.595006942749023,
+ false
+ ]
+ ],
+ [
+ [
+ -23.325668334960938,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.355218887329102,
+ false
+ ],
+ [
+ -23.90653419494629,
+ false
+ ],
+ [
+ -20.595006942749023,
+ false
+ ],
+ [
+ -23.325668334960938,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f32d75b4b3db8ad70afe9670eb3be3811de89989367944ab25a8d2ce65435866",
+ "prompt_hash": "1d936fa086c520ec55f3bb5596c730bcf571e7516ee6cfb4c956dae98b87f05f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "Which model achieved the highest refusal rate without any jailbreak on AgentHarm?",
+ "choices": [
+ "A. GPT-4o",
+ "B. GPT-3.5 Turbo",
+ "C. Llama-3.1 405B",
+ "D. Mistral Large 2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model achieved the highest refusal rate without any jailbreak on AgentHarm?\nAnswer:",
+ " A. GPT-4o"
+ ],
+ [
+ "Question:Which model achieved the highest refusal rate without any jailbreak on AgentHarm?\nAnswer:",
+ " B. GPT-3.5 Turbo"
+ ],
+ [
+ "Question:Which model achieved the highest refusal rate without any jailbreak on AgentHarm?\nAnswer:",
+ " C. Llama-3.1 405B"
+ ],
+ [
+ "Question:Which model achieved the highest refusal rate without any jailbreak on AgentHarm?\nAnswer:",
+ " D. Mistral Large 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.4850492477417,
+ false
+ ]
+ ],
+ [
+ [
+ -15.495048522949219,
+ false
+ ]
+ ],
+ [
+ [
+ -44.577171325683594,
+ false
+ ]
+ ],
+ [
+ [
+ -23.31258773803711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.4850492477417,
+ false
+ ],
+ [
+ -15.495048522949219,
+ false
+ ],
+ [
+ -44.577171325683594,
+ false
+ ],
+ [
+ -23.31258773803711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "64627200b9f27893d7483a7748ba024217c07462fd08435dabc6b816f40ea0af",
+ "prompt_hash": "f3364349ae14843d3e35e653ac90171fe9bffb11e8cb7a4d62ccd45a924fb811",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "What is the cost range for running GPT-4o on the public test set of AgentHarm?",
+ "choices": [
+ "A. $0.08–$0.25",
+ "B. $2–$6",
+ "C. $1–$4",
+ "D. $5–$10"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the cost range for running GPT-4o on the public test set of AgentHarm?\nAnswer:",
+ " A. $0.08–$0.25"
+ ],
+ [
+ "Question:What is the cost range for running GPT-4o on the public test set of AgentHarm?\nAnswer:",
+ " B. $2–$6"
+ ],
+ [
+ "Question:What is the cost range for running GPT-4o on the public test set of AgentHarm?\nAnswer:",
+ " C. $1–$4"
+ ],
+ [
+ "Question:What is the cost range for running GPT-4o on the public test set of AgentHarm?\nAnswer:",
+ " D. $5–$10"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -33.06787872314453,
+ false
+ ]
+ ],
+ [
+ [
+ -31.991853713989258,
+ false
+ ]
+ ],
+ [
+ [
+ -28.81402587890625,
+ false
+ ]
+ ],
+ [
+ [
+ -30.090877532958984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -33.06787872314453,
+ false
+ ],
+ [
+ -31.991853713989258,
+ false
+ ],
+ [
+ -28.81402587890625,
+ false
+ ],
+ [
+ -30.090877532958984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "cb6a473628bc39384683c8722415414111b962d53d2c09e65a7c6622f5c826b6",
+ "prompt_hash": "0820d9e4cee155a105194032e81abb5fde995fa7d0782f31a7a44968da31babb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "How many harm categories are covered in AgentHarm?",
+ "choices": [
+ "A. 9",
+ "B. 10",
+ "C. 11",
+ "D. 13"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many harm categories are covered in AgentHarm?\nAnswer:",
+ " A. 9"
+ ],
+ [
+ "Question:How many harm categories are covered in AgentHarm?\nAnswer:",
+ " B. 10"
+ ],
+ [
+ "Question:How many harm categories are covered in AgentHarm?\nAnswer:",
+ " C. 11"
+ ],
+ [
+ "Question:How many harm categories are covered in AgentHarm?\nAnswer:",
+ " D. 13"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.56247329711914,
+ false
+ ]
+ ],
+ [
+ [
+ -17.643842697143555,
+ false
+ ]
+ ],
+ [
+ [
+ -18.535171508789062,
+ false
+ ]
+ ],
+ [
+ [
+ -19.279775619506836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.56247329711914,
+ false
+ ],
+ [
+ -17.643842697143555,
+ false
+ ],
+ [
+ -18.535171508789062,
+ false
+ ],
+ [
+ -19.279775619506836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f382320175d9773cb1059b8049434386ffb907913ae68ceb6f2d13b8701cdafe",
+ "prompt_hash": "9665bd7f5f1397ca97e2d86b7df7ca59957a7aa677f913c83227540c9851e911",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What is the total number of response pairs included in the \\\\sys dataset?",
+ "choices": [
+ "A. 200",
+ "B. 350",
+ "C. 500",
+ "D. 600"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the total number of response pairs included in the \\\\sys dataset?\nAnswer:",
+ " A. 200"
+ ],
+ [
+ "Question:What is the total number of response pairs included in the \\\\sys dataset?\nAnswer:",
+ " B. 350"
+ ],
+ [
+ "Question:What is the total number of response pairs included in the \\\\sys dataset?\nAnswer:",
+ " C. 500"
+ ],
+ [
+ "Question:What is the total number of response pairs included in the \\\\sys dataset?\nAnswer:",
+ " D. 600"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.10725212097168,
+ false
+ ]
+ ],
+ [
+ [
+ -21.02353286743164,
+ false
+ ]
+ ],
+ [
+ [
+ -18.35977554321289,
+ false
+ ]
+ ],
+ [
+ [
+ -20.384708404541016,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.10725212097168,
+ false
+ ],
+ [
+ -21.02353286743164,
+ false
+ ],
+ [
+ -18.35977554321289,
+ false
+ ],
+ [
+ -20.384708404541016,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1045e7d29690a5f70858ac06303f437c676e1a8f6ebfb09868e28df0b0412081",
+ "prompt_hash": "936f2d8bb1adf82f6990fab4ecb05c2de44ed1e476c117142445123eefba4e3f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "Which category does the LiveCodeBench dataset correspond to in the \\\\sys benchmark?",
+ "choices": [
+ "A. Knowledge",
+ "B. Reasoning",
+ "C. Mathematics",
+ "D. Coding"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which category does the LiveCodeBench dataset correspond to in the \\\\sys benchmark?\nAnswer:",
+ " A. Knowledge"
+ ],
+ [
+ "Question:Which category does the LiveCodeBench dataset correspond to in the \\\\sys benchmark?\nAnswer:",
+ " B. Reasoning"
+ ],
+ [
+ "Question:Which category does the LiveCodeBench dataset correspond to in the \\\\sys benchmark?\nAnswer:",
+ " C. Mathematics"
+ ],
+ [
+ "Question:Which category does the LiveCodeBench dataset correspond to in the \\\\sys benchmark?\nAnswer:",
+ " D. Coding"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.372430801391602,
+ false
+ ]
+ ],
+ [
+ [
+ -18.052196502685547,
+ false
+ ]
+ ],
+ [
+ [
+ -19.5009822845459,
+ false
+ ]
+ ],
+ [
+ [
+ -18.303390502929688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.372430801391602,
+ false
+ ],
+ [
+ -18.052196502685547,
+ false
+ ],
+ [
+ -19.5009822845459,
+ false
+ ],
+ [
+ -18.303390502929688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "df7e84643b30ea30c9b6d4f1f1c6dfeeb48361e1070ec28f67ea18cfc567c71b",
+ "prompt_hash": "b0a349524b9d64a6d45f4fced7cad71764f0541563030555cb52af55a8c2cb43",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "Which of the following judges achieved the highest overall accuracy on the \\\\sys benchmark among fine-tuned judges?",
+ "choices": [
+ "A. JudgeLM-33B",
+ "B. Prometheus2-7b",
+ "C. Skywork-LLaMA-3.1B-70B",
+ "D. PandaLM"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which of the following judges achieved the highest overall accuracy on the \\\\sys benchmark among fine-tuned judges?\nAnswer:",
+ " A. JudgeLM-33B"
+ ],
+ [
+ "Question:Which of the following judges achieved the highest overall accuracy on the \\\\sys benchmark among fine-tuned judges?\nAnswer:",
+ " B. Prometheus2-7b"
+ ],
+ [
+ "Question:Which of the following judges achieved the highest overall accuracy on the \\\\sys benchmark among fine-tuned judges?\nAnswer:",
+ " C. Skywork-LLaMA-3.1B-70B"
+ ],
+ [
+ "Question:Which of the following judges achieved the highest overall accuracy on the \\\\sys benchmark among fine-tuned judges?\nAnswer:",
+ " D. PandaLM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.458892822265625,
+ false
+ ]
+ ],
+ [
+ [
+ -32.59239196777344,
+ false
+ ]
+ ],
+ [
+ [
+ -46.608795166015625,
+ false
+ ]
+ ],
+ [
+ [
+ -29.505237579345703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.458892822265625,
+ false
+ ],
+ [
+ -32.59239196777344,
+ false
+ ],
+ [
+ -46.608795166015625,
+ false
+ ],
+ [
+ -29.505237579345703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "733b1c015125309f8dc7388729216b02fb1da9f52733d856a3cfab7a4df32850",
+ "prompt_hash": "99487bc434d694c87d90ce5beffa27bab06cb2e8b8f5d4a23c0a049cebd80167",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "What evaluation strategy does \\\\sys use to reduce positional bias in judgment?",
+ "choices": [
+ "A. Averaging response scores",
+ "B. Using external human reviewers",
+ "C. Swapping response order between two trials",
+ "D. Combining outputs from multiple models"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What evaluation strategy does \\\\sys use to reduce positional bias in judgment?\nAnswer:",
+ " A. Averaging response scores"
+ ],
+ [
+ "Question:What evaluation strategy does \\\\sys use to reduce positional bias in judgment?\nAnswer:",
+ " B. Using external human reviewers"
+ ],
+ [
+ "Question:What evaluation strategy does \\\\sys use to reduce positional bias in judgment?\nAnswer:",
+ " C. Swapping response order between two trials"
+ ],
+ [
+ "Question:What evaluation strategy does \\\\sys use to reduce positional bias in judgment?\nAnswer:",
+ " D. Combining outputs from multiple models"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.453927993774414,
+ false
+ ]
+ ],
+ [
+ [
+ -33.90003967285156,
+ false
+ ]
+ ],
+ [
+ [
+ -39.94306564331055,
+ false
+ ]
+ ],
+ [
+ [
+ -33.046871185302734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.453927993774414,
+ false
+ ],
+ [
+ -33.90003967285156,
+ false
+ ],
+ [
+ -39.94306564331055,
+ false
+ ],
+ [
+ -33.046871185302734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "61521e1c9f8930fd906c0e1b11bffa00796a96c9158688458241ae8b9a842d7f",
+ "prompt_hash": "ae92a78318c77b4f0ab3efaee3cc5e01992763f9b49f9ab91a97924e772ac5ce",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "Which dataset used in \\\\sys is filtered from the original MMLU dataset?",
+ "choices": [
+ "A. LiveBench",
+ "B. MMLU-Pro",
+ "C. HumanEvalPack",
+ "D. RewardBench"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset used in \\\\sys is filtered from the original MMLU dataset?\nAnswer:",
+ " A. LiveBench"
+ ],
+ [
+ "Question:Which dataset used in \\\\sys is filtered from the original MMLU dataset?\nAnswer:",
+ " B. MMLU-Pro"
+ ],
+ [
+ "Question:Which dataset used in \\\\sys is filtered from the original MMLU dataset?\nAnswer:",
+ " C. HumanEvalPack"
+ ],
+ [
+ "Question:Which dataset used in \\\\sys is filtered from the original MMLU dataset?\nAnswer:",
+ " D. RewardBench"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.303030014038086,
+ false
+ ]
+ ],
+ [
+ [
+ -23.990474700927734,
+ false
+ ]
+ ],
+ [
+ [
+ -28.928142547607422,
+ false
+ ]
+ ],
+ [
+ [
+ -29.42617416381836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.303030014038086,
+ false
+ ],
+ [
+ -23.990474700927734,
+ false
+ ],
+ [
+ -28.928142547607422,
+ false
+ ],
+ [
+ -29.42617416381836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0d573364063403b4915523eaece277fa3bba409e3eb6a0d90705b38cf6e332b0",
+ "prompt_hash": "5fedc4b3d756c4e0dd2510522bdf2d3a7303243abe02d35e047784e468295e12",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What is the primary sensor configuration used by the NAVSIM dataset to achieve a 360° field of view?",
+ "choices": [
+ "Six cameras",
+ "Eight cameras",
+ "Ten LiDAR sensors",
+ "Four RGB-D sensors"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the primary sensor configuration used by the NAVSIM dataset to achieve a 360° field of view?\nAnswer:",
+ " Six cameras"
+ ],
+ [
+ "Question:What is the primary sensor configuration used by the NAVSIM dataset to achieve a 360° field of view?\nAnswer:",
+ " Eight cameras"
+ ],
+ [
+ "Question:What is the primary sensor configuration used by the NAVSIM dataset to achieve a 360° field of view?\nAnswer:",
+ " Ten LiDAR sensors"
+ ],
+ [
+ "Question:What is the primary sensor configuration used by the NAVSIM dataset to achieve a 360° field of view?\nAnswer:",
+ " Four RGB-D sensors"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.057745933532715,
+ false
+ ]
+ ],
+ [
+ [
+ -9.005231857299805,
+ false
+ ]
+ ],
+ [
+ [
+ -18.634685516357422,
+ false
+ ]
+ ],
+ [
+ [
+ -17.1940860748291,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.057745933532715,
+ false
+ ],
+ [
+ -9.005231857299805,
+ false
+ ],
+ [
+ -18.634685516357422,
+ false
+ ],
+ [
+ -17.1940860748291,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3d274bbd25d325a9475a2d33d1f2368963ff727b8c080d7b0ee039620d5c7a98",
+ "prompt_hash": "c2b54c1ff58c97a52380d91025dddd2246051228e182f3d8877699f05f1d2e33",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "Which model achieves a 1.6 PDMS improvement over Hydra-MDP-$\\\\mathcal{V}_{8192}$-W-EP without post-processing?",
+ "choices": [
+ "Transfuser$_{TD}$",
+ "VADv2",
+ "Hydra-MDP",
+ "DiffusionDrive"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which model achieves a 1.6 PDMS improvement over Hydra-MDP-$\\\\mathcal{V}_{8192}$-W-EP without post-processing?\nAnswer:",
+ " Transfuser$_{TD}$"
+ ],
+ [
+ "Question:Which model achieves a 1.6 PDMS improvement over Hydra-MDP-$\\\\mathcal{V}_{8192}$-W-EP without post-processing?\nAnswer:",
+ " VADv2"
+ ],
+ [
+ "Question:Which model achieves a 1.6 PDMS improvement over Hydra-MDP-$\\\\mathcal{V}_{8192}$-W-EP without post-processing?\nAnswer:",
+ " Hydra-MDP"
+ ],
+ [
+ "Question:Which model achieves a 1.6 PDMS improvement over Hydra-MDP-$\\\\mathcal{V}_{8192}$-W-EP without post-processing?\nAnswer:",
+ " DiffusionDrive"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.61434555053711,
+ false
+ ]
+ ],
+ [
+ [
+ -22.463977813720703,
+ false
+ ]
+ ],
+ [
+ [
+ -4.075248718261719,
+ false
+ ]
+ ],
+ [
+ [
+ -20.95197868347168,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.61434555053711,
+ false
+ ],
+ [
+ -22.463977813720703,
+ false
+ ],
+ [
+ -4.075248718261719,
+ false
+ ],
+ [
+ -20.95197868347168,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5326d35dbb662204223fcb6e25451aec121a1a549410c9c3865690bf8d14373d",
+ "prompt_hash": "04092dbf34e5899285e7321cbfc3d584869a29fe00f8a28084e589fc71558cd7",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "How many denoising steps are used during inference in the truncated diffusion policy implemented in DiffusionDrive?",
+ "choices": [
+ "1",
+ "2",
+ "10",
+ "20"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many denoising steps are used during inference in the truncated diffusion policy implemented in DiffusionDrive?\nAnswer:",
+ " 1"
+ ],
+ [
+ "Question:How many denoising steps are used during inference in the truncated diffusion policy implemented in DiffusionDrive?\nAnswer:",
+ " 2"
+ ],
+ [
+ "Question:How many denoising steps are used during inference in the truncated diffusion policy implemented in DiffusionDrive?\nAnswer:",
+ " 10"
+ ],
+ [
+ "Question:How many denoising steps are used during inference in the truncated diffusion policy implemented in DiffusionDrive?\nAnswer:",
+ " 20"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -2.433076858520508,
+ true
+ ]
+ ],
+ [
+ [
+ -2.976289749145508,
+ false
+ ]
+ ],
+ [
+ [
+ -3.0000905990600586,
+ true
+ ]
+ ],
+ [
+ [
+ -3.8783512115478516,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -2.433076858520508,
+ true
+ ],
+ [
+ -2.976289749145508,
+ false
+ ],
+ [
+ -3.0000905990600586,
+ true
+ ],
+ [
+ -3.8783512115478516,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "482fa679bb75c26904a74214415ea705a995f3689fe3cfe70c85b46ed0603ef3",
+ "prompt_hash": "cc51872bc4e9eed44612478d71a5cd6341377179154504d13f25be66145987dc",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "Which perception backbone is shared across all compared models in the NAVSIM benchmark for fair comparison?",
+ "choices": [
+ "ResNet-50",
+ "EfficientNet",
+ "ResNet-34",
+ "Swin Transformer"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which perception backbone is shared across all compared models in the NAVSIM benchmark for fair comparison?\nAnswer:",
+ " ResNet-50"
+ ],
+ [
+ "Question:Which perception backbone is shared across all compared models in the NAVSIM benchmark for fair comparison?\nAnswer:",
+ " EfficientNet"
+ ],
+ [
+ "Question:Which perception backbone is shared across all compared models in the NAVSIM benchmark for fair comparison?\nAnswer:",
+ " ResNet-34"
+ ],
+ [
+ "Question:Which perception backbone is shared across all compared models in the NAVSIM benchmark for fair comparison?\nAnswer:",
+ " Swin Transformer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.487348556518555,
+ false
+ ]
+ ],
+ [
+ [
+ -10.372774124145508,
+ false
+ ]
+ ],
+ [
+ [
+ -10.647995948791504,
+ false
+ ]
+ ],
+ [
+ [
+ -12.52469539642334,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.487348556518555,
+ false
+ ],
+ [
+ -10.372774124145508,
+ false
+ ],
+ [
+ -10.647995948791504,
+ false
+ ],
+ [
+ -12.52469539642334,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3dddc64d14870127af279341a75026f752e40216edce0894e7f86126fb4c6968",
+ "prompt_hash": "e9fb68bcef94b8ea85f86be970d4d9ffe20f52d38646d57203924730f477e74d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "How many anchors are used in DiffusionDrive compared to VADv2’s 8192?",
+ "choices": [
+ "1000",
+ "500",
+ "20",
+ "64"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many anchors are used in DiffusionDrive compared to VADv2’s 8192?\nAnswer:",
+ " 1000"
+ ],
+ [
+ "Question:How many anchors are used in DiffusionDrive compared to VADv2’s 8192?\nAnswer:",
+ " 500"
+ ],
+ [
+ "Question:How many anchors are used in DiffusionDrive compared to VADv2’s 8192?\nAnswer:",
+ " 20"
+ ],
+ [
+ "Question:How many anchors are used in DiffusionDrive compared to VADv2’s 8192?\nAnswer:",
+ " 64"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.340816497802734,
+ false
+ ]
+ ],
+ [
+ [
+ -8.242887496948242,
+ false
+ ]
+ ],
+ [
+ [
+ -5.327266693115234,
+ false
+ ]
+ ],
+ [
+ [
+ -5.620077133178711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.340816497802734,
+ false
+ ],
+ [
+ -8.242887496948242,
+ false
+ ],
+ [
+ -5.327266693115234,
+ false
+ ],
+ [
+ -5.620077133178711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c5e8ffc075c333a8431a155fd91ad8ab0355ca16f8ddabdeeb69c2bdeca91904",
+ "prompt_hash": "1a903ca99bf72b385bbd125922cd8714ad849224dfd40006b4b255b4ccfe1792",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the criterion for accepting multiple-choice questions during submission?",
+ "choices": [
+ "All models must answer correctly",
+ "At least one model must answer correctly",
+ "None of the models must answer correctly",
+ "At least two models must answer correctly"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the criterion for accepting multiple-choice questions during submission?\nAnswer:",
+ " All models must answer correctly"
+ ],
+ [
+ "Question:What is the criterion for accepting multiple-choice questions during submission?\nAnswer:",
+ " At least one model must answer correctly"
+ ],
+ [
+ "Question:What is the criterion for accepting multiple-choice questions during submission?\nAnswer:",
+ " None of the models must answer correctly"
+ ],
+ [
+ "Question:What is the criterion for accepting multiple-choice questions during submission?\nAnswer:",
+ " At least two models must answer correctly"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.651355743408203,
+ false
+ ]
+ ],
+ [
+ [
+ -18.832164764404297,
+ false
+ ]
+ ],
+ [
+ [
+ -32.53865432739258,
+ false
+ ]
+ ],
+ [
+ [
+ -21.666271209716797,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.651355743408203,
+ false
+ ],
+ [
+ -18.832164764404297,
+ false
+ ],
+ [
+ -32.53865432739258,
+ false
+ ],
+ [
+ -21.666271209716797,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "93ceedc929ad7602a43337e9ca8a7508b0bef716c10ac5ea0e47052463684426",
+ "prompt_hash": "d7eb4f2e2a9e40f1dfc44cfef4208fc9fa2c10fd6bba5b7e7d5f4e15d483ab91",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "Which model is used as the automated judge to evaluate response correctness?",
+ "choices": [
+ "Claude",
+ "Gemini Pro",
+ "GPT-4o",
+ "O1 Preview"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model is used as the automated judge to evaluate response correctness?\nAnswer:",
+ " Claude"
+ ],
+ [
+ "Question:Which model is used as the automated judge to evaluate response correctness?\nAnswer:",
+ " Gemini Pro"
+ ],
+ [
+ "Question:Which model is used as the automated judge to evaluate response correctness?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which model is used as the automated judge to evaluate response correctness?\nAnswer:",
+ " O1 Preview"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.594872951507568,
+ false
+ ]
+ ],
+ [
+ [
+ -9.376708030700684,
+ false
+ ]
+ ],
+ [
+ [
+ -6.231621742248535,
+ false
+ ]
+ ],
+ [
+ [
+ -26.011510848999023,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.594872951507568,
+ false
+ ],
+ [
+ -9.376708030700684,
+ false
+ ],
+ [
+ -6.231621742248535,
+ false
+ ],
+ [
+ -26.011510848999023,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "488c74d6c0ce512156a5c5bbb385492219a66e960d0fa3ff757c971a1d22317b",
+ "prompt_hash": "3ceb0f4665965bcba52b9a63bcb5eff5fe2a2a77beaf35c5c097e8ebe3ec67cc",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "Which field is NOT explicitly listed among the top fifty most popular subjects in the dataset?",
+ "choices": [
+ "Quantum Mechanics",
+ "Machine Learning",
+ "Sociology",
+ "Chemical Engineering"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which field is NOT explicitly listed among the top fifty most popular subjects in the dataset?\nAnswer:",
+ " Quantum Mechanics"
+ ],
+ [
+ "Question:Which field is NOT explicitly listed among the top fifty most popular subjects in the dataset?\nAnswer:",
+ " Machine Learning"
+ ],
+ [
+ "Question:Which field is NOT explicitly listed among the top fifty most popular subjects in the dataset?\nAnswer:",
+ " Sociology"
+ ],
+ [
+ "Question:Which field is NOT explicitly listed among the top fifty most popular subjects in the dataset?\nAnswer:",
+ " Chemical Engineering"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.214517593383789,
+ false
+ ]
+ ],
+ [
+ [
+ -9.452190399169922,
+ false
+ ]
+ ],
+ [
+ [
+ -8.460687637329102,
+ false
+ ]
+ ],
+ [
+ [
+ -9.672572135925293,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.214517593383789,
+ false
+ ],
+ [
+ -9.452190399169922,
+ false
+ ],
+ [
+ -8.460687637329102,
+ false
+ ],
+ [
+ -9.672572135925293,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f43f16c2b836d48a7a315e8ce0231c19d3642f7835a6143dfc0f0ba96557eb01",
+ "prompt_hash": "e47159930f477af30cc48aa1bad2a2591bb25a52f605077e3ee8ba6caac30d8b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "What is the confidence format required in evaluation prompts?",
+ "choices": [
+ "Percentage between 0 and 100",
+ "Boolean value",
+ "Numeric value from 1 to 10",
+ "Star rating"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the confidence format required in evaluation prompts?\nAnswer:",
+ " Percentage between 0 and 100"
+ ],
+ [
+ "Question:What is the confidence format required in evaluation prompts?\nAnswer:",
+ " Boolean value"
+ ],
+ [
+ "Question:What is the confidence format required in evaluation prompts?\nAnswer:",
+ " Numeric value from 1 to 10"
+ ],
+ [
+ "Question:What is the confidence format required in evaluation prompts?\nAnswer:",
+ " Star rating"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.750423431396484,
+ false
+ ]
+ ],
+ [
+ [
+ -12.67271900177002,
+ false
+ ]
+ ],
+ [
+ [
+ -20.93979835510254,
+ false
+ ]
+ ],
+ [
+ [
+ -17.22474479675293,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.750423431396484,
+ false
+ ],
+ [
+ -12.67271900177002,
+ false
+ ],
+ [
+ -20.93979835510254,
+ false
+ ],
+ [
+ -17.22474479675293,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2cdaaba01fae8d21ae2b994fc6bdb417979b414fe67de71e1eff35c20406dcf4",
+ "prompt_hash": "3b3186e3c95fbf8399515eb3373d0a78b92084e6a976ef164da9508adca45789",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "Which of the following is considered a valid reason to discard a question in review?",
+ "choices": [
+ "Question is in English",
+ "Question requires graduate-level knowledge",
+ "Question is not original or is searchable",
+ "Question is based on standard theories"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which of the following is considered a valid reason to discard a question in review?\nAnswer:",
+ " Question is in English"
+ ],
+ [
+ "Question:Which of the following is considered a valid reason to discard a question in review?\nAnswer:",
+ " Question requires graduate-level knowledge"
+ ],
+ [
+ "Question:Which of the following is considered a valid reason to discard a question in review?\nAnswer:",
+ " Question is not original or is searchable"
+ ],
+ [
+ "Question:Which of the following is considered a valid reason to discard a question in review?\nAnswer:",
+ " Question is based on standard theories"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.430809020996094,
+ false
+ ]
+ ],
+ [
+ [
+ -26.25605010986328,
+ false
+ ]
+ ],
+ [
+ [
+ -38.808692932128906,
+ false
+ ]
+ ],
+ [
+ [
+ -31.373125076293945,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.430809020996094,
+ false
+ ],
+ [
+ -26.25605010986328,
+ false
+ ],
+ [
+ -38.808692932128906,
+ false
+ ],
+ [
+ -31.373125076293945,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d17057cf75e46c7cb5af0ed276726f3b02b0ae05ce43f47442c36afcf4674af8",
+ "prompt_hash": "08ff8405e433af7b35028f495b72218bc3e731d1720a9d649872423feca587c4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "What is the base model used to build MM-Eureka-7B?",
+ "choices": [
+ "Qwen2.5-VL-Instruct-7B",
+ "InternVL2.5-VL-7B",
+ "DeepSeek-R1",
+ "OpenVLThinker-7B"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the base model used to build MM-Eureka-7B?\nAnswer:",
+ " Qwen2.5-VL-Instruct-7B"
+ ],
+ [
+ "Question:What is the base model used to build MM-Eureka-7B?\nAnswer:",
+ " InternVL2.5-VL-7B"
+ ],
+ [
+ "Question:What is the base model used to build MM-Eureka-7B?\nAnswer:",
+ " DeepSeek-R1"
+ ],
+ [
+ "Question:What is the base model used to build MM-Eureka-7B?\nAnswer:",
+ " OpenVLThinker-7B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.110851287841797,
+ false
+ ]
+ ],
+ [
+ [
+ -35.13373565673828,
+ false
+ ]
+ ],
+ [
+ [
+ -20.15282440185547,
+ false
+ ]
+ ],
+ [
+ [
+ -31.559051513671875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.110851287841797,
+ false
+ ],
+ [
+ -35.13373565673828,
+ false
+ ],
+ [
+ -20.15282440185547,
+ false
+ ],
+ [
+ -31.559051513671875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "38550ed46b1e0b799e9cbbb4538877b83f2d2df566c04f2935c9a6b727445f91",
+ "prompt_hash": "e54340238e5aec8f7e1cb4e97ecc45750a1a844721261e6fe9eb4afa1c3aa058",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "What is the accuracy reward value used in the MM-Eureka training?",
+ "choices": [
+ "0 or 1",
+ "0.5 or 1",
+ "0 or 2",
+ "1 or 2"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the accuracy reward value used in the MM-Eureka training?\nAnswer:",
+ " 0 or 1"
+ ],
+ [
+ "Question:What is the accuracy reward value used in the MM-Eureka training?\nAnswer:",
+ " 0.5 or 1"
+ ],
+ [
+ "Question:What is the accuracy reward value used in the MM-Eureka training?\nAnswer:",
+ " 0 or 2"
+ ],
+ [
+ "Question:What is the accuracy reward value used in the MM-Eureka training?\nAnswer:",
+ " 1 or 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.23766803741455,
+ false
+ ]
+ ],
+ [
+ [
+ -12.945985794067383,
+ false
+ ]
+ ],
+ [
+ [
+ -15.091609001159668,
+ false
+ ]
+ ],
+ [
+ [
+ -12.066730499267578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.23766803741455,
+ false
+ ],
+ [
+ -12.945985794067383,
+ false
+ ],
+ [
+ -15.091609001159668,
+ false
+ ],
+ [
+ -12.066730499267578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ed58e296b873827076ae2c666674d0c041b635b9747a8904761452c278de2129",
+ "prompt_hash": "0465960876f18509564c5de30d439abc61d81186c36a45e5d41cfa70354506d5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "Which dataset was used to fine-tune MM-Eureka-32B in the second stage of training?",
+ "choices": [
+ "Geo3k",
+ "MMK12",
+ "RCOT",
+ "MultiMath"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which dataset was used to fine-tune MM-Eureka-32B in the second stage of training?\nAnswer:",
+ " Geo3k"
+ ],
+ [
+ "Question:Which dataset was used to fine-tune MM-Eureka-32B in the second stage of training?\nAnswer:",
+ " MMK12"
+ ],
+ [
+ "Question:Which dataset was used to fine-tune MM-Eureka-32B in the second stage of training?\nAnswer:",
+ " RCOT"
+ ],
+ [
+ "Question:Which dataset was used to fine-tune MM-Eureka-32B in the second stage of training?\nAnswer:",
+ " MultiMath"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.193580627441406,
+ false
+ ]
+ ],
+ [
+ [
+ -22.42729949951172,
+ false
+ ]
+ ],
+ [
+ [
+ -19.925621032714844,
+ false
+ ]
+ ],
+ [
+ [
+ -13.891605377197266,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.193580627441406,
+ false
+ ],
+ [
+ -22.42729949951172,
+ false
+ ],
+ [
+ -19.925621032714844,
+ false
+ ],
+ [
+ -13.891605377197266,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "77675f5b50f072463466e91ac92946d9a23c8b8a27ffe9fd2685cd9619305703",
+ "prompt_hash": "6bc61e87148d77996f81f5acf797e7313832de92161f971720e4c82f7777db8c",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "What does MMK12 use to ensure data reliability for RL training?",
+ "choices": [
+ "Math-Verify",
+ "GPT-4o",
+ "Synthetic Engine",
+ "Geo3k"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What does MMK12 use to ensure data reliability for RL training?\nAnswer:",
+ " Math-Verify"
+ ],
+ [
+ "Question:What does MMK12 use to ensure data reliability for RL training?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:What does MMK12 use to ensure data reliability for RL training?\nAnswer:",
+ " Synthetic Engine"
+ ],
+ [
+ "Question:What does MMK12 use to ensure data reliability for RL training?\nAnswer:",
+ " Geo3k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.60882568359375,
+ false
+ ]
+ ],
+ [
+ [
+ -16.36174964904785,
+ false
+ ]
+ ],
+ [
+ [
+ -20.23419761657715,
+ false
+ ]
+ ],
+ [
+ [
+ -24.98360824584961,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.60882568359375,
+ false
+ ],
+ [
+ -16.36174964904785,
+ false
+ ],
+ [
+ -20.23419761657715,
+ false
+ ],
+ [
+ -24.98360824584961,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "86b8434cda2ea5ee6bc3dc821dd0bda8fc32110b0180ba95adeffe4138d21206",
+ "prompt_hash": "aec89238246ff2c5e8d605d54bd54ef6180f0b099c0ea83e3c4c4b4d5587c316",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "Which training method generalized better than SFT and COT SFT on MMK12?",
+ "choices": [
+ "Rule-based RL",
+ "Direct Preference Optimization",
+ "Supervised Fine-Tuning (SFT)",
+ "Chain-of-Thought SFT"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which training method generalized better than SFT and COT SFT on MMK12?\nAnswer:",
+ " Rule-based RL"
+ ],
+ [
+ "Question:Which training method generalized better than SFT and COT SFT on MMK12?\nAnswer:",
+ " Direct Preference Optimization"
+ ],
+ [
+ "Question:Which training method generalized better than SFT and COT SFT on MMK12?\nAnswer:",
+ " Supervised Fine-Tuning (SFT)"
+ ],
+ [
+ "Question:Which training method generalized better than SFT and COT SFT on MMK12?\nAnswer:",
+ " Chain-of-Thought SFT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.67706871032715,
+ false
+ ]
+ ],
+ [
+ [
+ -12.10573959350586,
+ false
+ ]
+ ],
+ [
+ [
+ -12.479765892028809,
+ false
+ ]
+ ],
+ [
+ [
+ -12.495404243469238,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.67706871032715,
+ false
+ ],
+ [
+ -12.10573959350586,
+ false
+ ],
+ [
+ -12.479765892028809,
+ false
+ ],
+ [
+ -12.495404243469238,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "43ff7367dd3342cce1210fd827635c2525b365504162de0b1301bd019f86d1e9",
+ "prompt_hash": "7bc7b9baa8b13b22a07360d047ddb27b3b6296330f01593cc7142bd08b493d57",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the present-day value of the dark energy equation-of-state parameter in the ΛCDM model?",
+ "choices": [
+ "A. 0",
+ "B. -0.5",
+ "C. -1",
+ "D. -1.5"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the present-day value of the dark energy equation-of-state parameter in the ΛCDM model?\nAnswer:",
+ " A. 0"
+ ],
+ [
+ "Question:What is the present-day value of the dark energy equation-of-state parameter in the ΛCDM model?\nAnswer:",
+ " B. -0.5"
+ ],
+ [
+ "Question:What is the present-day value of the dark energy equation-of-state parameter in the ΛCDM model?\nAnswer:",
+ " C. -1"
+ ],
+ [
+ "Question:What is the present-day value of the dark energy equation-of-state parameter in the ΛCDM model?\nAnswer:",
+ " D. -1.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.447305679321289,
+ false
+ ]
+ ],
+ [
+ [
+ -20.808975219726562,
+ false
+ ]
+ ],
+ [
+ [
+ -18.186588287353516,
+ false
+ ]
+ ],
+ [
+ [
+ -19.80595588684082,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.447305679321289,
+ false
+ ],
+ [
+ -20.808975219726562,
+ false
+ ],
+ [
+ -18.186588287353516,
+ false
+ ],
+ [
+ -19.80595588684082,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "385e853d1624f0d84e9ac762d91389d1515c8828ea1bfb70a2ae30e6c31c1684",
+ "prompt_hash": "9d4cfd3231d09367ef7d04a4ec622c8245d1547bbb2ad05da082c87fd6f861d7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "What is the redshift at which photons and baryons decouple, defining the drag epoch?",
+ "choices": [
+ "A. z ≈ 530",
+ "B. z ≈ 1060",
+ "C. z ≈ 1420",
+ "D. z ≈ 3000"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the redshift at which photons and baryons decouple, defining the drag epoch?\nAnswer:",
+ " A. z ≈ 530"
+ ],
+ [
+ "Question:What is the redshift at which photons and baryons decouple, defining the drag epoch?\nAnswer:",
+ " B. z ≈ 1060"
+ ],
+ [
+ "Question:What is the redshift at which photons and baryons decouple, defining the drag epoch?\nAnswer:",
+ " C. z ≈ 1420"
+ ],
+ [
+ "Question:What is the redshift at which photons and baryons decouple, defining the drag epoch?\nAnswer:",
+ " D. z ≈ 3000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -34.66949462890625,
+ false
+ ]
+ ],
+ [
+ [
+ -37.69480895996094,
+ false
+ ]
+ ],
+ [
+ [
+ -38.29337692260742,
+ false
+ ]
+ ],
+ [
+ [
+ -37.884246826171875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -34.66949462890625,
+ false
+ ],
+ [
+ -37.69480895996094,
+ false
+ ],
+ [
+ -38.29337692260742,
+ false
+ ],
+ [
+ -37.884246826171875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e025e1106f7e69389c64a14bf928020d1906e35d1798030a3254634b162c08ac",
+ "prompt_hash": "8a630a1cc96a6f943ef8863b3a23da6ca08476025751710a765fbce707c43f93",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "What equation describes the conventional w₀–wₐ parameterization for time-varying dark energy?",
+ "choices": [
+ "A. w(z) = w₀ + wₐ * ln(1+z)",
+ "B. w(z) = w₀ + wₐ * z / (1+z)",
+ "C. w(z) = w₀ + wₐ * z",
+ "D. w(z) = w₀ + wₐ * e^(-z)"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What equation describes the conventional w₀–wₐ parameterization for time-varying dark energy?\nAnswer:",
+ " A. w(z) = w₀ + wₐ * ln(1+z)"
+ ],
+ [
+ "Question:What equation describes the conventional w₀–wₐ parameterization for time-varying dark energy?\nAnswer:",
+ " B. w(z) = w₀ + wₐ * z / (1+z)"
+ ],
+ [
+ "Question:What equation describes the conventional w₀–wₐ parameterization for time-varying dark energy?\nAnswer:",
+ " C. w(z) = w₀ + wₐ * z"
+ ],
+ [
+ "Question:What equation describes the conventional w₀–wₐ parameterization for time-varying dark energy?\nAnswer:",
+ " D. w(z) = w₀ + wₐ * e^(-z)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -34.996376037597656,
+ false
+ ]
+ ],
+ [
+ [
+ -41.43755340576172,
+ false
+ ]
+ ],
+ [
+ [
+ -33.33776092529297,
+ false
+ ]
+ ],
+ [
+ [
+ -43.63087463378906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -34.996376037597656,
+ false
+ ],
+ [
+ -41.43755340576172,
+ false
+ ],
+ [
+ -33.33776092529297,
+ false
+ ],
+ [
+ -43.63087463378906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "349d695fed4d75a46a21b57be707037639f5fd149955426e6c2cdd6ebaa8c172",
+ "prompt_hash": "adfd28f24bcc3cf663fe0cda36e1740302fc3b8b73906f4a9a95a3f54dd831fc",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "Which tracer in DESI BAO measurements is used for isotropic analysis?",
+ "choices": [
+ "A. ELG",
+ "B. QSO",
+ "C. LRG",
+ "D. BGS"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which tracer in DESI BAO measurements is used for isotropic analysis?\nAnswer:",
+ " A. ELG"
+ ],
+ [
+ "Question:Which tracer in DESI BAO measurements is used for isotropic analysis?\nAnswer:",
+ " B. QSO"
+ ],
+ [
+ "Question:Which tracer in DESI BAO measurements is used for isotropic analysis?\nAnswer:",
+ " C. LRG"
+ ],
+ [
+ "Question:Which tracer in DESI BAO measurements is used for isotropic analysis?\nAnswer:",
+ " D. BGS"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.433956146240234,
+ false
+ ]
+ ],
+ [
+ [
+ -20.062585830688477,
+ false
+ ]
+ ],
+ [
+ [
+ -19.613204956054688,
+ false
+ ]
+ ],
+ [
+ [
+ -23.117706298828125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.433956146240234,
+ false
+ ],
+ [
+ -20.062585830688477,
+ false
+ ],
+ [
+ -19.613204956054688,
+ false
+ ],
+ [
+ -23.117706298828125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dbf79a5e65734cac8868d5900437a78f224800889ce3f8f7d2291826c60ce83c",
+ "prompt_hash": "f198762e465f88e95fac0ff4e931f59ebcdf901ea553bf72c0b06a4a0b57419c",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "In the algebraic thawing parameterization, which condition is enforced on the dark energy equation of state?",
+ "choices": [
+ "A. w < -1 always",
+ "B. w = 0 at z=0",
+ "C. w > -1 always",
+ "D. w constant at all z"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the algebraic thawing parameterization, which condition is enforced on the dark energy equation of state?\nAnswer:",
+ " A. w < -1 always"
+ ],
+ [
+ "Question:In the algebraic thawing parameterization, which condition is enforced on the dark energy equation of state?\nAnswer:",
+ " B. w = 0 at z=0"
+ ],
+ [
+ "Question:In the algebraic thawing parameterization, which condition is enforced on the dark energy equation of state?\nAnswer:",
+ " C. w > -1 always"
+ ],
+ [
+ "Question:In the algebraic thawing parameterization, which condition is enforced on the dark energy equation of state?\nAnswer:",
+ " D. w constant at all z"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.075050354003906,
+ false
+ ]
+ ],
+ [
+ [
+ -31.742191314697266,
+ false
+ ]
+ ],
+ [
+ [
+ -35.761993408203125,
+ false
+ ]
+ ],
+ [
+ [
+ -45.63786315917969,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.075050354003906,
+ false
+ ],
+ [
+ -31.742191314697266,
+ false
+ ],
+ [
+ -35.761993408203125,
+ false
+ ],
+ [
+ -45.63786315917969,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d959e4463077e5d510409c27851aa0369a2012aeb486d5fa9e1ab0aa1b4c788c",
+ "prompt_hash": "daf2c3976fe917333c797d1ab69407c1a8c09ac00f7d7c8e482a6f0cac4336b5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What architecture does the video generation model use as its foundation?",
+ "choices": [
+ "U-Net",
+ "Diffusion Transformer (DiT)",
+ "VDM",
+ "SVD"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What architecture does the video generation model use as its foundation?\nAnswer:",
+ " U-Net"
+ ],
+ [
+ "Question:What architecture does the video generation model use as its foundation?\nAnswer:",
+ " Diffusion Transformer (DiT)"
+ ],
+ [
+ "Question:What architecture does the video generation model use as its foundation?\nAnswer:",
+ " VDM"
+ ],
+ [
+ "Question:What architecture does the video generation model use as its foundation?\nAnswer:",
+ " SVD"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.148728370666504,
+ false
+ ]
+ ],
+ [
+ [
+ -15.954981803894043,
+ false
+ ]
+ ],
+ [
+ [
+ -10.510978698730469,
+ false
+ ]
+ ],
+ [
+ [
+ -11.698623657226562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.148728370666504,
+ false
+ ],
+ [
+ -15.954981803894043,
+ false
+ ],
+ [
+ -10.510978698730469,
+ false
+ ],
+ [
+ -11.698623657226562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2849896061e0f95c5a291b9cf4ce4acf869cfa37b56c32f51d2e38d2e1414f9d",
+ "prompt_hash": "3c4304d93427d4ceb21dc68654ae6136ce7240010a8234f9ed46096992cb43b8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "Which model is used as the text encoder for the video generation model?",
+ "choices": [
+ "T5",
+ "umT5",
+ "CLIP",
+ "LLaVA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model is used as the text encoder for the video generation model?\nAnswer:",
+ " T5"
+ ],
+ [
+ "Question:Which model is used as the text encoder for the video generation model?\nAnswer:",
+ " umT5"
+ ],
+ [
+ "Question:Which model is used as the text encoder for the video generation model?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:Which model is used as the text encoder for the video generation model?\nAnswer:",
+ " LLaVA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.067154884338379,
+ false
+ ]
+ ],
+ [
+ [
+ -22.84233856201172,
+ false
+ ]
+ ],
+ [
+ [
+ -6.074200630187988,
+ false
+ ]
+ ],
+ [
+ [
+ -9.481271743774414,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.067154884338379,
+ false
+ ],
+ [
+ -22.84233856201172,
+ false
+ ],
+ [
+ -6.074200630187988,
+ false
+ ],
+ [
+ -9.481271743774414,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6e78fac7fbb1770edee96d289937ae51f7feab1455e96d342c81162e8363bf4e",
+ "prompt_hash": "2246f28f0982a30d6a5617a256596811b4010ed946e18cdba95740312d77ef66",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "What is the VRAM requirement of the 1.3B model at 480p resolution?",
+ "choices": [
+ "4.92G",
+ "6.00G",
+ "8.19G",
+ "10.25G"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the VRAM requirement of the 1.3B model at 480p resolution?\nAnswer:",
+ " 4.92G"
+ ],
+ [
+ "Question:What is the VRAM requirement of the 1.3B model at 480p resolution?\nAnswer:",
+ " 6.00G"
+ ],
+ [
+ "Question:What is the VRAM requirement of the 1.3B model at 480p resolution?\nAnswer:",
+ " 8.19G"
+ ],
+ [
+ "Question:What is the VRAM requirement of the 1.3B model at 480p resolution?\nAnswer:",
+ " 10.25G"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.142659187316895,
+ false
+ ]
+ ],
+ [
+ [
+ -15.505208969116211,
+ false
+ ]
+ ],
+ [
+ [
+ -15.991455078125,
+ false
+ ]
+ ],
+ [
+ [
+ -15.958108901977539,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.142659187316895,
+ false
+ ],
+ [
+ -15.505208969116211,
+ false
+ ],
+ [
+ -15.991455078125,
+ false
+ ],
+ [
+ -15.958108901977539,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a33066e5e1821f38d8611d53025757504f4b8218400ab9122c3cfd7a33ac902f",
+ "prompt_hash": "0d757ae73b674d4dd9a42fe27f9343589f7915fde20485ecf5ace1d6b5fac2cd",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "Which motion category is defined as videos with minimal motion but high quality, like interviews?",
+ "choices": [
+ "Static Videos",
+ "Camera-driven Motion",
+ "Optimal Motion",
+ "Low-quality Motion"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which motion category is defined as videos with minimal motion but high quality, like interviews?\nAnswer:",
+ " Static Videos"
+ ],
+ [
+ "Question:Which motion category is defined as videos with minimal motion but high quality, like interviews?\nAnswer:",
+ " Camera-driven Motion"
+ ],
+ [
+ "Question:Which motion category is defined as videos with minimal motion but high quality, like interviews?\nAnswer:",
+ " Optimal Motion"
+ ],
+ [
+ "Question:Which motion category is defined as videos with minimal motion but high quality, like interviews?\nAnswer:",
+ " Low-quality Motion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.159363746643066,
+ false
+ ]
+ ],
+ [
+ [
+ -20.84673500061035,
+ false
+ ]
+ ],
+ [
+ [
+ -16.23493766784668,
+ false
+ ]
+ ],
+ [
+ [
+ -15.154871940612793,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.159363746643066,
+ false
+ ],
+ [
+ -20.84673500061035,
+ false
+ ],
+ [
+ -16.23493766784668,
+ false
+ ],
+ [
+ -15.154871940612793,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c2bee8bbb0d1e2d28664fa94b603e363a2be8b696e11912d3ab69e462108d607",
+ "prompt_hash": "f2756b12b0c2151867e7decd0318850d3e50b9ff38ba31eb63f009199680f5de",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "Which model modification was implemented to improve the temporal causality of the VAE?",
+ "choices": [
+ "Replacing ReLU with GELU",
+ "Using RMSNorm instead of GroupNorm",
+ "Adding ConvLSTM layers",
+ "Removing skip connections"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model modification was implemented to improve the temporal causality of the VAE?\nAnswer:",
+ " Replacing ReLU with GELU"
+ ],
+ [
+ "Question:Which model modification was implemented to improve the temporal causality of the VAE?\nAnswer:",
+ " Using RMSNorm instead of GroupNorm"
+ ],
+ [
+ "Question:Which model modification was implemented to improve the temporal causality of the VAE?\nAnswer:",
+ " Adding ConvLSTM layers"
+ ],
+ [
+ "Question:Which model modification was implemented to improve the temporal causality of the VAE?\nAnswer:",
+ " Removing skip connections"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.518552780151367,
+ false
+ ]
+ ],
+ [
+ [
+ -36.37889099121094,
+ false
+ ]
+ ],
+ [
+ [
+ -20.44256591796875,
+ false
+ ]
+ ],
+ [
+ [
+ -14.452343940734863,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.518552780151367,
+ false
+ ],
+ [
+ -36.37889099121094,
+ false
+ ],
+ [
+ -20.44256591796875,
+ false
+ ],
+ [
+ -14.452343940734863,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6f275db18c4dd4cd9e56bf023f858d6fdd46b576f006b84810ee7dabdaaba0ec",
+ "prompt_hash": "26aa49e4665e44c68360a0b98002de94a39aecd695018d76c9f69b2e2123fe42",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What is the name of the proposed learning method designed to enhance inference-time scalability in generalist reward modeling?",
+ "choices": [
+ "Principled Self-Critique Tuning",
+ "Reward-Augmented Learning",
+ "Self-Principled Critique Tuning",
+ "Inference-Time Reward Adaptation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the name of the proposed learning method designed to enhance inference-time scalability in generalist reward modeling?\nAnswer:",
+ " Principled Self-Critique Tuning"
+ ],
+ [
+ "Question:What is the name of the proposed learning method designed to enhance inference-time scalability in generalist reward modeling?\nAnswer:",
+ " Reward-Augmented Learning"
+ ],
+ [
+ "Question:What is the name of the proposed learning method designed to enhance inference-time scalability in generalist reward modeling?\nAnswer:",
+ " Self-Principled Critique Tuning"
+ ],
+ [
+ "Question:What is the name of the proposed learning method designed to enhance inference-time scalability in generalist reward modeling?\nAnswer:",
+ " Inference-Time Reward Adaptation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.68132781982422,
+ false
+ ]
+ ],
+ [
+ [
+ -17.424152374267578,
+ false
+ ]
+ ],
+ [
+ [
+ -32.94596862792969,
+ false
+ ]
+ ],
+ [
+ [
+ -14.693709373474121,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.68132781982422,
+ false
+ ],
+ [
+ -17.424152374267578,
+ false
+ ],
+ [
+ -32.94596862792969,
+ false
+ ],
+ [
+ -14.693709373474121,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "712d03f715fdb86027e9de6c679ac271c48de39b6d466d3c47eb639368d98ebe",
+ "prompt_hash": "b2b28b67c9c9f71d2b372c199976b57a7758ea85babb8aca3d6b90d8b1f17bde",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "What is the default reward range assigned in the pointwise generative reward model (GRM)?",
+ "choices": [
+ "0 to 5",
+ "1 to 10",
+ "0 to 100",
+ "0 to 1"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the default reward range assigned in the pointwise generative reward model (GRM)?\nAnswer:",
+ " 0 to 5"
+ ],
+ [
+ "Question:What is the default reward range assigned in the pointwise generative reward model (GRM)?\nAnswer:",
+ " 1 to 10"
+ ],
+ [
+ "Question:What is the default reward range assigned in the pointwise generative reward model (GRM)?\nAnswer:",
+ " 0 to 100"
+ ],
+ [
+ "Question:What is the default reward range assigned in the pointwise generative reward model (GRM)?\nAnswer:",
+ " 0 to 1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.730814456939697,
+ false
+ ]
+ ],
+ [
+ [
+ -8.61390495300293,
+ false
+ ]
+ ],
+ [
+ [
+ -7.795122146606445,
+ false
+ ]
+ ],
+ [
+ [
+ -5.740683078765869,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.730814456939697,
+ false
+ ],
+ [
+ -8.61390495300293,
+ false
+ ],
+ [
+ -7.795122146606445,
+ false
+ ],
+ [
+ -5.740683078765869,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ce4611a372bf5002da019e476b117bf898d42948bb6f831ae1f041ccb1797d98",
+ "prompt_hash": "da1ff53ceb0b3f08f726827f431dd3b3c5bd5dd97069f7cb1c09d8282707ee57",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "Which sampling method was observed to sometimes shortcut the generated critique, especially in reasoning tasks?",
+ "choices": [
+ "Weighted sampling",
+ "Non-hinted sampling",
+ "Hinted sampling",
+ "Contrastive sampling"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which sampling method was observed to sometimes shortcut the generated critique, especially in reasoning tasks?\nAnswer:",
+ " Weighted sampling"
+ ],
+ [
+ "Question:Which sampling method was observed to sometimes shortcut the generated critique, especially in reasoning tasks?\nAnswer:",
+ " Non-hinted sampling"
+ ],
+ [
+ "Question:Which sampling method was observed to sometimes shortcut the generated critique, especially in reasoning tasks?\nAnswer:",
+ " Hinted sampling"
+ ],
+ [
+ "Question:Which sampling method was observed to sometimes shortcut the generated critique, especially in reasoning tasks?\nAnswer:",
+ " Contrastive sampling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.633424758911133,
+ false
+ ]
+ ],
+ [
+ [
+ -25.875431060791016,
+ false
+ ]
+ ],
+ [
+ [
+ -22.15602684020996,
+ false
+ ]
+ ],
+ [
+ [
+ -11.548967361450195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.633424758911133,
+ false
+ ],
+ [
+ -25.875431060791016,
+ false
+ ],
+ [
+ -22.15602684020996,
+ false
+ ],
+ [
+ -11.548967361450195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a926953f46a86bcedf51265b70132e4ec4186340977cea8d254a72b1450e0de0",
+ "prompt_hash": "77ef94309417df3950a3eb0c0983d41a84fc95300a396aab964b8ab654966d5c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "Which model was used as the base for implementing \\u005cSGRM?",
+ "choices": [
+ "Gemma-2-27B",
+ "GPT-3.5",
+ "DeepSeek-R1",
+ "LLaMA-3-70B"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which model was used as the base for implementing \\u005cSGRM?\nAnswer:",
+ " Gemma-2-27B"
+ ],
+ [
+ "Question:Which model was used as the base for implementing \\u005cSGRM?\nAnswer:",
+ " GPT-3.5"
+ ],
+ [
+ "Question:Which model was used as the base for implementing \\u005cSGRM?\nAnswer:",
+ " DeepSeek-R1"
+ ],
+ [
+ "Question:Which model was used as the base for implementing \\u005cSGRM?\nAnswer:",
+ " LLaMA-3-70B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.898719787597656,
+ false
+ ]
+ ],
+ [
+ [
+ -10.358407974243164,
+ false
+ ]
+ ],
+ [
+ [
+ -25.949710845947266,
+ false
+ ]
+ ],
+ [
+ [
+ -18.196603775024414,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.898719787597656,
+ false
+ ],
+ [
+ -10.358407974243164,
+ false
+ ],
+ [
+ -25.949710845947266,
+ false
+ ],
+ [
+ -18.196603775024414,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "679f81dd08d77d5743cd8094a6409d6f221058d8b43f7aac6b8efb3a4059a89c",
+ "prompt_hash": "f608904f3596bc486ae45ea1cd07efd4027f8efebe2dc53baaab0cfa99598e7e",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "What is the purpose of the meta reward model (meta RM) introduced in the inference-time scaling process?",
+ "choices": [
+ "To generate critiques more efficiently",
+ "To replace the voting mechanism completely",
+ "To filter low-quality samples before final voting",
+ "To pre-train the main GRM with synthetic data"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of the meta reward model (meta RM) introduced in the inference-time scaling process?\nAnswer:",
+ " To generate critiques more efficiently"
+ ],
+ [
+ "Question:What is the purpose of the meta reward model (meta RM) introduced in the inference-time scaling process?\nAnswer:",
+ " To replace the voting mechanism completely"
+ ],
+ [
+ "Question:What is the purpose of the meta reward model (meta RM) introduced in the inference-time scaling process?\nAnswer:",
+ " To filter low-quality samples before final voting"
+ ],
+ [
+ "Question:What is the purpose of the meta reward model (meta RM) introduced in the inference-time scaling process?\nAnswer:",
+ " To pre-train the main GRM with synthetic data"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.86658477783203,
+ false
+ ]
+ ],
+ [
+ [
+ -32.81979751586914,
+ false
+ ]
+ ],
+ [
+ [
+ -37.3974723815918,
+ false
+ ]
+ ],
+ [
+ [
+ -39.0362548828125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.86658477783203,
+ false
+ ],
+ [
+ -32.81979751586914,
+ false
+ ],
+ [
+ -37.3974723815918,
+ false
+ ],
+ [
+ -39.0362548828125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "927789b24badaf20190addc7de22249fa8892e6a6111e33b02f21dac84bb01bf",
+ "prompt_hash": "4d727920952d51e4c30393934fac09d62ec9dd95d1cc35b1a2345158d4e18c04",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "What is the purpose of Value-Pretraining in VAPO?",
+ "choices": [
+ "To mitigate value initialization bias",
+ "To increase reward variance",
+ "To reduce token length",
+ "To improve prompt diversity"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the purpose of Value-Pretraining in VAPO?\nAnswer:",
+ " To mitigate value initialization bias"
+ ],
+ [
+ "Question:What is the purpose of Value-Pretraining in VAPO?\nAnswer:",
+ " To increase reward variance"
+ ],
+ [
+ "Question:What is the purpose of Value-Pretraining in VAPO?\nAnswer:",
+ " To reduce token length"
+ ],
+ [
+ "Question:What is the purpose of Value-Pretraining in VAPO?\nAnswer:",
+ " To improve prompt diversity"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.889638900756836,
+ false
+ ]
+ ],
+ [
+ [
+ -20.648616790771484,
+ false
+ ]
+ ],
+ [
+ [
+ -17.77275848388672,
+ false
+ ]
+ ],
+ [
+ [
+ -17.921775817871094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.889638900756836,
+ false
+ ],
+ [
+ -20.648616790771484,
+ false
+ ],
+ [
+ -17.77275848388672,
+ false
+ ],
+ [
+ -17.921775817871094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f55458e2412cfd2b085d813f8014e5508ab0ffc37e3a25778de7a6c58ff01f0b",
+ "prompt_hash": "e48603f3f54ac9cb24c434f3ad9111ef9273df013cfe6ee63bd5744ea79e9b4d",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "What is the formula used to compute the length-adaptive lambda in Length-Adaptive GAE?",
+ "choices": [
+ "λ_policy = 1 - 1/(αl)",
+ "λ_policy = αl - 1",
+ "λ_policy = 1 + 1/(αl)",
+ "λ_policy = α / (1 - l)"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the formula used to compute the length-adaptive lambda in Length-Adaptive GAE?\nAnswer:",
+ " λ_policy = 1 - 1/(αl)"
+ ],
+ [
+ "Question:What is the formula used to compute the length-adaptive lambda in Length-Adaptive GAE?\nAnswer:",
+ " λ_policy = αl - 1"
+ ],
+ [
+ "Question:What is the formula used to compute the length-adaptive lambda in Length-Adaptive GAE?\nAnswer:",
+ " λ_policy = 1 + 1/(αl)"
+ ],
+ [
+ "Question:What is the formula used to compute the length-adaptive lambda in Length-Adaptive GAE?\nAnswer:",
+ " λ_policy = α / (1 - l)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -57.52603530883789,
+ false
+ ]
+ ],
+ [
+ [
+ -51.4779167175293,
+ false
+ ]
+ ],
+ [
+ [
+ -57.93740463256836,
+ false
+ ]
+ ],
+ [
+ [
+ -49.91412353515625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -57.52603530883789,
+ false
+ ],
+ [
+ -51.4779167175293,
+ false
+ ],
+ [
+ -57.93740463256836,
+ false
+ ],
+ [
+ -49.91412353515625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "97a881c68cf16c94bbf9740f1b83add81493de331103b84df587e7bf80a2e329",
+ "prompt_hash": "2b89b613f3bdaf751c5f1218107bc8e0264970e9df845dd89430064138eb14a5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "What is the effect of removing decoupled GAE from VAPO according to the ablation results?",
+ "choices": [
+ "A 27-point performance drop",
+ "A 7-point performance gain",
+ "An improvement in reward variance",
+ "A complete training collapse"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the effect of removing decoupled GAE from VAPO according to the ablation results?\nAnswer:",
+ " A 27-point performance drop"
+ ],
+ [
+ "Question:What is the effect of removing decoupled GAE from VAPO according to the ablation results?\nAnswer:",
+ " A 7-point performance gain"
+ ],
+ [
+ "Question:What is the effect of removing decoupled GAE from VAPO according to the ablation results?\nAnswer:",
+ " An improvement in reward variance"
+ ],
+ [
+ "Question:What is the effect of removing decoupled GAE from VAPO according to the ablation results?\nAnswer:",
+ " A complete training collapse"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -32.277931213378906,
+ false
+ ]
+ ],
+ [
+ [
+ -34.26292419433594,
+ false
+ ]
+ ],
+ [
+ [
+ -27.39008331298828,
+ false
+ ]
+ ],
+ [
+ [
+ -27.55177879333496,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -32.277931213378906,
+ false
+ ],
+ [
+ -34.26292419433594,
+ false
+ ],
+ [
+ -27.39008331298828,
+ false
+ ],
+ [
+ -27.55177879333496,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1314af96d42c7e8de0a1331bf95002876957699886d48061728b122155c9cee3",
+ "prompt_hash": "a8dbf654c13e8a2e8af88751dd0e9d711e050eeb646e31afe44e5c983a678cf5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "What technique is employed in VAPO to ensure uniform token contributions in the loss function?",
+ "choices": [
+ "Token-level policy gradient loss",
+ "Batch-normalized reward scaling",
+ "Sequence averaging loss",
+ "Prompt-level NLL loss"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What technique is employed in VAPO to ensure uniform token contributions in the loss function?\nAnswer:",
+ " Token-level policy gradient loss"
+ ],
+ [
+ "Question:What technique is employed in VAPO to ensure uniform token contributions in the loss function?\nAnswer:",
+ " Batch-normalized reward scaling"
+ ],
+ [
+ "Question:What technique is employed in VAPO to ensure uniform token contributions in the loss function?\nAnswer:",
+ " Sequence averaging loss"
+ ],
+ [
+ "Question:What technique is employed in VAPO to ensure uniform token contributions in the loss function?\nAnswer:",
+ " Prompt-level NLL loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.68850326538086,
+ false
+ ]
+ ],
+ [
+ [
+ -29.873306274414062,
+ false
+ ]
+ ],
+ [
+ [
+ -25.73053741455078,
+ false
+ ]
+ ],
+ [
+ [
+ -33.83245849609375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.68850326538086,
+ false
+ ],
+ [
+ -29.873306274414062,
+ false
+ ],
+ [
+ -25.73053741455078,
+ false
+ ],
+ [
+ -33.83245849609375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7df5d773ef22b78150c8c7f3026a00ed10b89d6c4314c3750e75d7cc1d0e67e3",
+ "prompt_hash": "677b9902d87b2fac6266f174faa30007b200f56f3077169005a145e86fb4dc42",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "Which method in VAPO increases ε_high to encourage exploration of low-probability tokens?",
+ "choices": [
+ "Clip-Higher",
+ "Group-Sampling",
+ "Positive Example LM Loss",
+ "Value-Pretraining"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which method in VAPO increases ε_high to encourage exploration of low-probability tokens?\nAnswer:",
+ " Clip-Higher"
+ ],
+ [
+ "Question:Which method in VAPO increases ε_high to encourage exploration of low-probability tokens?\nAnswer:",
+ " Group-Sampling"
+ ],
+ [
+ "Question:Which method in VAPO increases ε_high to encourage exploration of low-probability tokens?\nAnswer:",
+ " Positive Example LM Loss"
+ ],
+ [
+ "Question:Which method in VAPO increases ε_high to encourage exploration of low-probability tokens?\nAnswer:",
+ " Value-Pretraining"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.853660583496094,
+ false
+ ]
+ ],
+ [
+ [
+ -18.575420379638672,
+ false
+ ]
+ ],
+ [
+ [
+ -36.095237731933594,
+ false
+ ]
+ ],
+ [
+ [
+ -22.692821502685547,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.853660583496094,
+ false
+ ],
+ [
+ -18.575420379638672,
+ false
+ ],
+ [
+ -36.095237731933594,
+ false
+ ],
+ [
+ -22.692821502685547,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "98b96ce36286d7e8ae08d0f3548962841bc44ea0e388b74df8493c470c1ec48d",
+ "prompt_hash": "8ef7b38d8f4b24e21ab318477ddb66d4949852d266e8c55d5355534d8ca73f30",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What is the primary method used by \\\\nothinking to bypass the explicit reasoning process?",
+ "choices": [
+ "By disabling attention layers in the model",
+ "By fine-tuning the model on direct answers",
+ "By pre-filling a fabricated thinking block and continuing from there",
+ "By pruning the model’s reasoning heads"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary method used by \\\\nothinking to bypass the explicit reasoning process?\nAnswer:",
+ " By disabling attention layers in the model"
+ ],
+ [
+ "Question:What is the primary method used by \\\\nothinking to bypass the explicit reasoning process?\nAnswer:",
+ " By fine-tuning the model on direct answers"
+ ],
+ [
+ "Question:What is the primary method used by \\\\nothinking to bypass the explicit reasoning process?\nAnswer:",
+ " By pre-filling a fabricated thinking block and continuing from there"
+ ],
+ [
+ "Question:What is the primary method used by \\\\nothinking to bypass the explicit reasoning process?\nAnswer:",
+ " By pruning the model’s reasoning heads"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -33.595977783203125,
+ false
+ ]
+ ],
+ [
+ [
+ -36.91471862792969,
+ false
+ ]
+ ],
+ [
+ [
+ -66.48119354248047,
+ false
+ ]
+ ],
+ [
+ [
+ -40.26856994628906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -33.595977783203125,
+ false
+ ],
+ [
+ -36.91471862792969,
+ false
+ ],
+ [
+ -66.48119354248047,
+ false
+ ],
+ [
+ -40.26856994628906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d52ea42a6010f68b15812296e47d7cb505521d31748587a17fdbbd72a8926faa",
+ "prompt_hash": "8a9eff528c67d554f39f038b88d23dfb92f34acd23da59fc100a4f1cdd613316",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "Which model serves as the primary reasoning model in the experiments?",
+ "choices": [
+ "DeepSeek-R1-Distill-Llama-70B",
+ "Qwen-32B-Instruct",
+ "DeepSeek-R1-Distill-Qwen-32B",
+ "OpenAI o1"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model serves as the primary reasoning model in the experiments?\nAnswer:",
+ " DeepSeek-R1-Distill-Llama-70B"
+ ],
+ [
+ "Question:Which model serves as the primary reasoning model in the experiments?\nAnswer:",
+ " Qwen-32B-Instruct"
+ ],
+ [
+ "Question:Which model serves as the primary reasoning model in the experiments?\nAnswer:",
+ " DeepSeek-R1-Distill-Qwen-32B"
+ ],
+ [
+ "Question:Which model serves as the primary reasoning model in the experiments?\nAnswer:",
+ " OpenAI o1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -53.145103454589844,
+ false
+ ]
+ ],
+ [
+ [
+ -19.378257751464844,
+ false
+ ]
+ ],
+ [
+ [
+ -54.48986053466797,
+ false
+ ]
+ ],
+ [
+ [
+ -26.95863914489746,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -53.145103454589844,
+ false
+ ],
+ [
+ -19.378257751464844,
+ false
+ ],
+ [
+ -54.48986053466797,
+ false
+ ],
+ [
+ -26.95863914489746,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b27ddf2fb280c03ad06f227b14fdebe2e6d5436c002cc6f050321c69dc71fa39",
+ "prompt_hash": "2ce2d45e9254a972a4097c27aa4e53e0c8c3051d9c67ad2adb36a7c72b76ef4a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "Which benchmark is noted to be much more challenging than AIME and AMC?",
+ "choices": [
+ "MiniF2F",
+ "OlympiadBench",
+ "LiveCodeBench",
+ "ProofNet"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark is noted to be much more challenging than AIME and AMC?\nAnswer:",
+ " MiniF2F"
+ ],
+ [
+ "Question:Which benchmark is noted to be much more challenging than AIME and AMC?\nAnswer:",
+ " OlympiadBench"
+ ],
+ [
+ "Question:Which benchmark is noted to be much more challenging than AIME and AMC?\nAnswer:",
+ " LiveCodeBench"
+ ],
+ [
+ "Question:Which benchmark is noted to be much more challenging than AIME and AMC?\nAnswer:",
+ " ProofNet"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.985706329345703,
+ false
+ ]
+ ],
+ [
+ [
+ -19.116147994995117,
+ false
+ ]
+ ],
+ [
+ [
+ -18.56229591369629,
+ false
+ ]
+ ],
+ [
+ [
+ -17.690303802490234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.985706329345703,
+ false
+ ],
+ [
+ -19.116147994995117,
+ false
+ ],
+ [
+ -18.56229591369629,
+ false
+ ],
+ [
+ -17.690303802490234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e04f072bca04096fed005c5f6914e32437d00b0a46ec4445e5e835f25775c461",
+ "prompt_hash": "595e4c28c99dd9d2edcf1dcc385d2677bcb9ae06fc3efc932137a632191e7025",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "In which type of tasks is a perfect verifier assumed to be available?",
+ "choices": [
+ "General problem solving tasks",
+ "Math Olympiad tasks",
+ "Formal theorem proving tasks",
+ "Coding benchmarks"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In which type of tasks is a perfect verifier assumed to be available?\nAnswer:",
+ " General problem solving tasks"
+ ],
+ [
+ "Question:In which type of tasks is a perfect verifier assumed to be available?\nAnswer:",
+ " Math Olympiad tasks"
+ ],
+ [
+ "Question:In which type of tasks is a perfect verifier assumed to be available?\nAnswer:",
+ " Formal theorem proving tasks"
+ ],
+ [
+ "Question:In which type of tasks is a perfect verifier assumed to be available?\nAnswer:",
+ " Coding benchmarks"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.323463439941406,
+ false
+ ]
+ ],
+ [
+ [
+ -21.375484466552734,
+ false
+ ]
+ ],
+ [
+ [
+ -25.228221893310547,
+ false
+ ]
+ ],
+ [
+ [
+ -21.205001831054688,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.323463439941406,
+ false
+ ],
+ [
+ -21.375484466552734,
+ false
+ ],
+ [
+ -25.228221893310547,
+ false
+ ],
+ [
+ -21.205001831054688,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e0dea11645f81f9fb9502b941de4a487996216482abb73ce6b4b30fa1018d70c",
+ "prompt_hash": "d9f2fae75a4467f8d9651737ad68041903a25f885f2982e3197cc66c5f52d8bf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "What is the pass@$k$ metric used to evaluate?",
+ "choices": [
+ "The average number of tokens used by the model",
+ "The total number of training samples solved correctly",
+ "The probability of obtaining at least one correct output among k samples",
+ "The latency per generated sample"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the pass@$k$ metric used to evaluate?\nAnswer:",
+ " The average number of tokens used by the model"
+ ],
+ [
+ "Question:What is the pass@$k$ metric used to evaluate?\nAnswer:",
+ " The total number of training samples solved correctly"
+ ],
+ [
+ "Question:What is the pass@$k$ metric used to evaluate?\nAnswer:",
+ " The probability of obtaining at least one correct output among k samples"
+ ],
+ [
+ "Question:What is the pass@$k$ metric used to evaluate?\nAnswer:",
+ " The latency per generated sample"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.76235580444336,
+ false
+ ]
+ ],
+ [
+ [
+ -28.44558334350586,
+ false
+ ]
+ ],
+ [
+ [
+ -32.217918395996094,
+ false
+ ]
+ ],
+ [
+ [
+ -31.006816864013672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.76235580444336,
+ false
+ ],
+ [
+ -28.44558334350586,
+ false
+ ],
+ [
+ -32.217918395996094,
+ false
+ ],
+ [
+ -31.006816864013672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "edc17b49c38b90c9826569a4b5029bd1e9db577d4f7b45e7cd2ae7e7a68c9cb5",
+ "prompt_hash": "d1ea11e1a8b1202c8e2bae9598f9a2af18ab61252708c37dd0ef018a9ba32827",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "How many words are allowed for training in the 'strict' track of the BabyLM Challenge?",
+ "choices": [
+ "A. 10 million",
+ "B. 50 million",
+ "C. 100 million",
+ "D. 1 billion"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many words are allowed for training in the 'strict' track of the BabyLM Challenge?\nAnswer:",
+ " A. 10 million"
+ ],
+ [
+ "Question:How many words are allowed for training in the 'strict' track of the BabyLM Challenge?\nAnswer:",
+ " B. 50 million"
+ ],
+ [
+ "Question:How many words are allowed for training in the 'strict' track of the BabyLM Challenge?\nAnswer:",
+ " C. 100 million"
+ ],
+ [
+ "Question:How many words are allowed for training in the 'strict' track of the BabyLM Challenge?\nAnswer:",
+ " D. 1 billion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.438207626342773,
+ false
+ ]
+ ],
+ [
+ [
+ -23.75048065185547,
+ false
+ ]
+ ],
+ [
+ [
+ -25.256114959716797,
+ false
+ ]
+ ],
+ [
+ [
+ -25.505172729492188,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.438207626342773,
+ false
+ ],
+ [
+ -23.75048065185547,
+ false
+ ],
+ [
+ -25.256114959716797,
+ false
+ ],
+ [
+ -25.505172729492188,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8929595b48de606c16a9078273b801efdebba115c855eebe9898dd67979b6ae2",
+ "prompt_hash": "0afdc6ce0f0fb83263b5c189b17371eaf5936fcac5a5216c0419f952722ce991",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "Which model architecture served as the base for the best-performing models in the BabyLM Challenge?",
+ "choices": [
+ "A. RoBERTa-base",
+ "B. LTG-BERT",
+ "C. GPT-3",
+ "D. OPT-125M"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model architecture served as the base for the best-performing models in the BabyLM Challenge?\nAnswer:",
+ " A. RoBERTa-base"
+ ],
+ [
+ "Question:Which model architecture served as the base for the best-performing models in the BabyLM Challenge?\nAnswer:",
+ " B. LTG-BERT"
+ ],
+ [
+ "Question:Which model architecture served as the base for the best-performing models in the BabyLM Challenge?\nAnswer:",
+ " C. GPT-3"
+ ],
+ [
+ "Question:Which model architecture served as the base for the best-performing models in the BabyLM Challenge?\nAnswer:",
+ " D. OPT-125M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.915252685546875,
+ false
+ ]
+ ],
+ [
+ [
+ -31.789878845214844,
+ false
+ ]
+ ],
+ [
+ [
+ -15.032157897949219,
+ false
+ ]
+ ],
+ [
+ [
+ -27.82003402709961,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.915252685546875,
+ false
+ ],
+ [
+ -31.789878845214844,
+ false
+ ],
+ [
+ -15.032157897949219,
+ false
+ ],
+ [
+ -27.82003402709961,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b889b93f9eaef3af868c423bd6a989ea7726dee7cf8844b257ea2b9b8b3e10a9",
+ "prompt_hash": "723f83fc08fbe5be962c9cad9991fb09d61ab3aa2b5f3edd6c151e21b17cbb93",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "What proportion of the BabyLM pretraining corpus comes from transcribed or scripted speech?",
+ "choices": [
+ "A. 25%",
+ "B. 40%",
+ "C. 56%",
+ "D. 75%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What proportion of the BabyLM pretraining corpus comes from transcribed or scripted speech?\nAnswer:",
+ " A. 25%"
+ ],
+ [
+ "Question:What proportion of the BabyLM pretraining corpus comes from transcribed or scripted speech?\nAnswer:",
+ " B. 40%"
+ ],
+ [
+ "Question:What proportion of the BabyLM pretraining corpus comes from transcribed or scripted speech?\nAnswer:",
+ " C. 56%"
+ ],
+ [
+ "Question:What proportion of the BabyLM pretraining corpus comes from transcribed or scripted speech?\nAnswer:",
+ " D. 75%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.62324333190918,
+ false
+ ]
+ ],
+ [
+ [
+ -22.178054809570312,
+ false
+ ]
+ ],
+ [
+ [
+ -24.220788955688477,
+ false
+ ]
+ ],
+ [
+ [
+ -24.471773147583008,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.62324333190918,
+ false
+ ],
+ [
+ -22.178054809570312,
+ false
+ ],
+ [
+ -24.220788955688477,
+ false
+ ],
+ [
+ -24.471773147583008,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2f101ab5113390b801c4714089874633efb0b745251a3f1ab07e321c7e5111fb",
+ "prompt_hash": "71154e8993cb3d0d4a1e6ca3be5a382e221deb323894b06b2fca4a753b5cd745",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "Which evaluation task was used to measure language models' inductive biases in the BabyLM Challenge?",
+ "choices": [
+ "A. CoLA",
+ "B. BLiMP",
+ "C. MSGS",
+ "D. SST-2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which evaluation task was used to measure language models' inductive biases in the BabyLM Challenge?\nAnswer:",
+ " A. CoLA"
+ ],
+ [
+ "Question:Which evaluation task was used to measure language models' inductive biases in the BabyLM Challenge?\nAnswer:",
+ " B. BLiMP"
+ ],
+ [
+ "Question:Which evaluation task was used to measure language models' inductive biases in the BabyLM Challenge?\nAnswer:",
+ " C. MSGS"
+ ],
+ [
+ "Question:Which evaluation task was used to measure language models' inductive biases in the BabyLM Challenge?\nAnswer:",
+ " D. SST-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.476659774780273,
+ false
+ ]
+ ],
+ [
+ [
+ -22.56920051574707,
+ false
+ ]
+ ],
+ [
+ [
+ -30.381786346435547,
+ false
+ ]
+ ],
+ [
+ [
+ -24.47028350830078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.476659774780273,
+ false
+ ],
+ [
+ -22.56920051574707,
+ false
+ ],
+ [
+ -30.381786346435547,
+ false
+ ],
+ [
+ -24.47028350830078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3fa1ff17b53d2e69af7aa6874514fbdfbe95c94567875bfa34eb1de3255bd7c1",
+ "prompt_hash": "efc9753b21cb2d868e14ebf82629c14bd7c0b6f10e15e90c68387e1c78d255f2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What was the main reason the 'CLIMB' submission received a 'Most Interesting Paper' award?",
+ "choices": [
+ "A. High leaderboard performance",
+ "B. Effective use of multimodal data",
+ "C. Compelling negative results",
+ "D. Use of new hardware acceleration"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was the main reason the 'CLIMB' submission received a 'Most Interesting Paper' award?\nAnswer:",
+ " A. High leaderboard performance"
+ ],
+ [
+ "Question:What was the main reason the 'CLIMB' submission received a 'Most Interesting Paper' award?\nAnswer:",
+ " B. Effective use of multimodal data"
+ ],
+ [
+ "Question:What was the main reason the 'CLIMB' submission received a 'Most Interesting Paper' award?\nAnswer:",
+ " C. Compelling negative results"
+ ],
+ [
+ "Question:What was the main reason the 'CLIMB' submission received a 'Most Interesting Paper' award?\nAnswer:",
+ " D. Use of new hardware acceleration"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.538623809814453,
+ false
+ ]
+ ],
+ [
+ [
+ -29.481632232666016,
+ false
+ ]
+ ],
+ [
+ [
+ -31.812217712402344,
+ false
+ ]
+ ],
+ [
+ [
+ -34.935882568359375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.538623809814453,
+ false
+ ],
+ [
+ -29.481632232666016,
+ false
+ ],
+ [
+ -31.812217712402344,
+ false
+ ],
+ [
+ -34.935882568359375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8dbc76de946e00a9b170ac4a0a3077157357f14a2ab0543890dcaa174c82fc8e",
+ "prompt_hash": "6992d026719cdb1242c3c0c90f52346b93a204a18df8201c9fb86d3bd10c7671",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the base language model used in InternVL3-14B?",
+ "choices": [
+ "Qwen2.5-14B",
+ "InternLM3-14B",
+ "Qwen2.5-7B",
+ "InternLM3-8B"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the base language model used in InternVL3-14B?\nAnswer:",
+ " Qwen2.5-14B"
+ ],
+ [
+ "Question:What is the base language model used in InternVL3-14B?\nAnswer:",
+ " InternLM3-14B"
+ ],
+ [
+ "Question:What is the base language model used in InternVL3-14B?\nAnswer:",
+ " Qwen2.5-7B"
+ ],
+ [
+ "Question:What is the base language model used in InternVL3-14B?\nAnswer:",
+ " InternLM3-8B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.107444763183594,
+ false
+ ]
+ ],
+ [
+ [
+ -7.151124000549316,
+ false
+ ]
+ ],
+ [
+ [
+ -15.16900634765625,
+ false
+ ]
+ ],
+ [
+ [
+ -9.077427864074707,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.107444763183594,
+ false
+ ],
+ [
+ -7.151124000549316,
+ false
+ ],
+ [
+ -15.16900634765625,
+ false
+ ],
+ [
+ -9.077427864074707,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6ea125d77f151e6b26b43f5f42a70c7f26145101d4f684e3864fe3f0b5964a7f",
+ "prompt_hash": "a5767aa8f68d0904822d383cbe0b4ced596fc87ddc39a7c37d3d0e2ef9826522",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "What operation is applied in InternVL3 to reduce visual token count for 448×448 image tiles?",
+ "choices": [
+ "Pixel shuffle",
+ "Visual compression",
+ "Pixel unshuffle",
+ "Spatial pooling"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What operation is applied in InternVL3 to reduce visual token count for 448×448 image tiles?\nAnswer:",
+ " Pixel shuffle"
+ ],
+ [
+ "Question:What operation is applied in InternVL3 to reduce visual token count for 448×448 image tiles?\nAnswer:",
+ " Visual compression"
+ ],
+ [
+ "Question:What operation is applied in InternVL3 to reduce visual token count for 448×448 image tiles?\nAnswer:",
+ " Pixel unshuffle"
+ ],
+ [
+ "Question:What operation is applied in InternVL3 to reduce visual token count for 448×448 image tiles?\nAnswer:",
+ " Spatial pooling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.526809692382812,
+ false
+ ]
+ ],
+ [
+ [
+ -13.809144973754883,
+ false
+ ]
+ ],
+ [
+ [
+ -16.655738830566406,
+ false
+ ]
+ ],
+ [
+ [
+ -10.14836311340332,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.526809692382812,
+ false
+ ],
+ [
+ -13.809144973754883,
+ false
+ ],
+ [
+ -16.655738830566406,
+ false
+ ],
+ [
+ -10.14836311340332,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "032e409e917ee9efe5b624b644c76fb35e669f9ba4727f6f08e0205adfe6b069",
+ "prompt_hash": "bf4d76678c60c73897bc7dc1e5f37b28bf4c6ecbcfa1e1cc30bef1f11e2127a1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "What is the value of the multimodal to language data ratio used during InternVL3 pretraining?",
+ "choices": [
+ "1:1",
+ "3:1",
+ "1:3",
+ "2:5"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the value of the multimodal to language data ratio used during InternVL3 pretraining?\nAnswer:",
+ " 1:1"
+ ],
+ [
+ "Question:What is the value of the multimodal to language data ratio used during InternVL3 pretraining?\nAnswer:",
+ " 3:1"
+ ],
+ [
+ "Question:What is the value of the multimodal to language data ratio used during InternVL3 pretraining?\nAnswer:",
+ " 1:3"
+ ],
+ [
+ "Question:What is the value of the multimodal to language data ratio used during InternVL3 pretraining?\nAnswer:",
+ " 2:5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.453132629394531,
+ false
+ ]
+ ],
+ [
+ [
+ -12.245928764343262,
+ false
+ ]
+ ],
+ [
+ [
+ -11.405056953430176,
+ false
+ ]
+ ],
+ [
+ [
+ -11.463799476623535,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.453132629394531,
+ false
+ ],
+ [
+ -12.245928764343262,
+ false
+ ],
+ [
+ -11.405056953430176,
+ false
+ ],
+ [
+ -11.463799476623535,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1eb1853566ade4326a91569688602ed45f7af78f3d99922fe1402789d132f362",
+ "prompt_hash": "9c3dc61f94fac5289e11d991e4560cfe654939c135daac27357d8dc22a86646c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "What is the purpose of the δ parameter in Variable Visual Position Encoding?",
+ "choices": [
+ "To increase the resolution of images",
+ "To control the rate of position index increment for visual tokens",
+ "To add noise for regularization",
+ "To mark token modality boundaries"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the purpose of the δ parameter in Variable Visual Position Encoding?\nAnswer:",
+ " To increase the resolution of images"
+ ],
+ [
+ "Question:What is the purpose of the δ parameter in Variable Visual Position Encoding?\nAnswer:",
+ " To control the rate of position index increment for visual tokens"
+ ],
+ [
+ "Question:What is the purpose of the δ parameter in Variable Visual Position Encoding?\nAnswer:",
+ " To add noise for regularization"
+ ],
+ [
+ "Question:What is the purpose of the δ parameter in Variable Visual Position Encoding?\nAnswer:",
+ " To mark token modality boundaries"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.033735275268555,
+ false
+ ]
+ ],
+ [
+ [
+ -42.17396545410156,
+ false
+ ]
+ ],
+ [
+ [
+ -23.517375946044922,
+ false
+ ]
+ ],
+ [
+ [
+ -34.159698486328125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.033735275268555,
+ false
+ ],
+ [
+ -42.17396545410156,
+ false
+ ],
+ [
+ -23.517375946044922,
+ false
+ ],
+ [
+ -34.159698486328125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "73d3c4e27e8acb24b29bd11bc5c1b33b08ce3a7e28abfc77123aa96b320fa219",
+ "prompt_hash": "20b4771ef92e8c2adc172192b5e00bba0cb5fd65deb63127b88b2dbc870ac370",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "Which technique is used in InternVL3’s MPO stage to assess absolute response quality?",
+ "choices": [
+ "DPO loss",
+ "LM loss",
+ "MSE loss",
+ "BCO loss"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which technique is used in InternVL3’s MPO stage to assess absolute response quality?\nAnswer:",
+ " DPO loss"
+ ],
+ [
+ "Question:Which technique is used in InternVL3’s MPO stage to assess absolute response quality?\nAnswer:",
+ " LM loss"
+ ],
+ [
+ "Question:Which technique is used in InternVL3’s MPO stage to assess absolute response quality?\nAnswer:",
+ " MSE loss"
+ ],
+ [
+ "Question:Which technique is used in InternVL3’s MPO stage to assess absolute response quality?\nAnswer:",
+ " BCO loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.17230224609375,
+ false
+ ]
+ ],
+ [
+ [
+ -15.913728713989258,
+ false
+ ]
+ ],
+ [
+ [
+ -12.079751968383789,
+ false
+ ]
+ ],
+ [
+ [
+ -22.180185317993164,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.17230224609375,
+ false
+ ],
+ [
+ -15.913728713989258,
+ false
+ ],
+ [
+ -12.079751968383789,
+ false
+ ],
+ [
+ -22.180185317993164,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4d33dad5def39026d5f8e8c99ca7c455c0cc1dc7b745b6c220bc0510c1d32f1e",
+ "prompt_hash": "46c1ba08330ecff4634eedbb9c625b622a8e1f3c5572ecd4a20e50d7c4106a03",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "Which dataset includes only samples with verifiable answers in the RL split due to hallucination issues during captioning?",
+ "choices": [
+ "CLEVR-Math",
+ "GeoQA170K",
+ "Math PUMA",
+ "DocVQA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset includes only samples with verifiable answers in the RL split due to hallucination issues during captioning?\nAnswer:",
+ " CLEVR-Math"
+ ],
+ [
+ "Question:Which dataset includes only samples with verifiable answers in the RL split due to hallucination issues during captioning?\nAnswer:",
+ " GeoQA170K"
+ ],
+ [
+ "Question:Which dataset includes only samples with verifiable answers in the RL split due to hallucination issues during captioning?\nAnswer:",
+ " Math PUMA"
+ ],
+ [
+ "Question:Which dataset includes only samples with verifiable answers in the RL split due to hallucination issues during captioning?\nAnswer:",
+ " DocVQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.22501564025879,
+ false
+ ]
+ ],
+ [
+ [
+ -24.96044921875,
+ false
+ ]
+ ],
+ [
+ [
+ -28.422626495361328,
+ false
+ ]
+ ],
+ [
+ [
+ -10.477191925048828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.22501564025879,
+ false
+ ],
+ [
+ -24.96044921875,
+ false
+ ],
+ [
+ -28.422626495361328,
+ false
+ ],
+ [
+ -10.477191925048828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9d24364d3f8ee3e41eb7ea7c69eb728f42729aaea506eb371f2cc8714941d6aa",
+ "prompt_hash": "dbc64a50796b5b21817ac83ec09c82b37e5c7d438512830caf197e2db24f9e8a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "What is the total number of samples in the SFT split of the constructed dataset?",
+ "choices": [
+ "126,413",
+ "25,195",
+ "203,182",
+ "144,895"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the total number of samples in the SFT split of the constructed dataset?\nAnswer:",
+ " 126,413"
+ ],
+ [
+ "Question:What is the total number of samples in the SFT split of the constructed dataset?\nAnswer:",
+ " 25,195"
+ ],
+ [
+ "Question:What is the total number of samples in the SFT split of the constructed dataset?\nAnswer:",
+ " 203,182"
+ ],
+ [
+ "Question:What is the total number of samples in the SFT split of the constructed dataset?\nAnswer:",
+ " 144,895"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.454904556274414,
+ false
+ ]
+ ],
+ [
+ [
+ -15.914478302001953,
+ false
+ ]
+ ],
+ [
+ [
+ -18.996597290039062,
+ false
+ ]
+ ],
+ [
+ [
+ -18.33071517944336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.454904556274414,
+ false
+ ],
+ [
+ -15.914478302001953,
+ false
+ ],
+ [
+ -18.996597290039062,
+ false
+ ],
+ [
+ -18.33071517944336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b81bd64ab49b2fa70c7d42192e6827e17095771bb41018c6a2daf8006d2e3dea",
+ "prompt_hash": "2cbb41d077c7f81f7f26418b8b64796d34c7f9dcd96e4a8bccec3bdd79355914",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "Which instruction model is used as a reward model in the open-ended reward component of the mixed reward system?",
+ "choices": [
+ "XComposer-2.5-RM",
+ "GPT-4o",
+ "Qwen2.5-VL",
+ "VLAA-Thinker"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which instruction model is used as a reward model in the open-ended reward component of the mixed reward system?\nAnswer:",
+ " XComposer-2.5-RM"
+ ],
+ [
+ "Question:Which instruction model is used as a reward model in the open-ended reward component of the mixed reward system?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which instruction model is used as a reward model in the open-ended reward component of the mixed reward system?\nAnswer:",
+ " Qwen2.5-VL"
+ ],
+ [
+ "Question:Which instruction model is used as a reward model in the open-ended reward component of the mixed reward system?\nAnswer:",
+ " VLAA-Thinker"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -33.41133117675781,
+ false
+ ]
+ ],
+ [
+ [
+ -8.864886283874512,
+ false
+ ]
+ ],
+ [
+ [
+ -27.08736228942871,
+ false
+ ]
+ ],
+ [
+ [
+ -36.48512649536133,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -33.41133117675781,
+ false
+ ],
+ [
+ -8.864886283874512,
+ false
+ ],
+ [
+ -27.08736228942871,
+ false
+ ],
+ [
+ -36.48512649536133,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "abe7c22c7a3c4d6a67d5a306ce84423623ecc094a4d20df9dfc575584825cc7c",
+ "prompt_hash": "750ad6db0bfd42d368864a34dd87c71c9957226cb48be7ab52a9d42edbebee44",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "What is the primary effect of SFT on GRPO performance in multimodal reasoning?",
+ "choices": [
+ "It consistently improves performance on all benchmarks",
+ "It causes performance degradation even with small datasets",
+ "It increases the KL divergence but improves reasoning",
+ "It creates more diverse and accurate reasoning traces"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the primary effect of SFT on GRPO performance in multimodal reasoning?\nAnswer:",
+ " It consistently improves performance on all benchmarks"
+ ],
+ [
+ "Question:What is the primary effect of SFT on GRPO performance in multimodal reasoning?\nAnswer:",
+ " It causes performance degradation even with small datasets"
+ ],
+ [
+ "Question:What is the primary effect of SFT on GRPO performance in multimodal reasoning?\nAnswer:",
+ " It increases the KL divergence but improves reasoning"
+ ],
+ [
+ "Question:What is the primary effect of SFT on GRPO performance in multimodal reasoning?\nAnswer:",
+ " It creates more diverse and accurate reasoning traces"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.213502883911133,
+ false
+ ]
+ ],
+ [
+ [
+ -32.5656852722168,
+ false
+ ]
+ ],
+ [
+ [
+ -35.56127166748047,
+ false
+ ]
+ ],
+ [
+ [
+ -30.518281936645508,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.213502883911133,
+ false
+ ],
+ [
+ -32.5656852722168,
+ false
+ ],
+ [
+ -35.56127166748047,
+ false
+ ],
+ [
+ -30.518281936645508,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b8bc4ec00de5c2fdcd13b2114807bec1dc901e2a3035157332c79038c1c6924e",
+ "prompt_hash": "e3b2eed89e0fa2ba6c41699e33a3761802d70a8a4718e675de12e7126f5dde8e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "What type of reward in the mixed reward module is computed using Intersection over Union (IoU)?",
+ "choices": [
+ "Math expression matching",
+ "Option letter matching",
+ "Bounding box prediction",
+ "Digit matching"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of reward in the mixed reward module is computed using Intersection over Union (IoU)?\nAnswer:",
+ " Math expression matching"
+ ],
+ [
+ "Question:What type of reward in the mixed reward module is computed using Intersection over Union (IoU)?\nAnswer:",
+ " Option letter matching"
+ ],
+ [
+ "Question:What type of reward in the mixed reward module is computed using Intersection over Union (IoU)?\nAnswer:",
+ " Bounding box prediction"
+ ],
+ [
+ "Question:What type of reward in the mixed reward module is computed using Intersection over Union (IoU)?\nAnswer:",
+ " Digit matching"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.66463279724121,
+ false
+ ]
+ ],
+ [
+ [
+ -28.975448608398438,
+ false
+ ]
+ ],
+ [
+ [
+ -15.989301681518555,
+ false
+ ]
+ ],
+ [
+ [
+ -20.937679290771484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.66463279724121,
+ false
+ ],
+ [
+ -28.975448608398438,
+ false
+ ],
+ [
+ -15.989301681518555,
+ false
+ ],
+ [
+ -20.937679290771484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b07704740912c0910b234d1df4a76d8645317b7955ddeaa681bf64193347d45a",
+ "prompt_hash": "9678c5483a11bcd2a057b996ef7fc9257c25165a1a074f73eca2c79d8f150d7a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What reinforcement learning algorithm does ReTool use for training?",
+ "choices": [
+ "A. DDPG",
+ "B. PPO",
+ "C. A3C",
+ "D. SAC"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What reinforcement learning algorithm does ReTool use for training?\nAnswer:",
+ " A. DDPG"
+ ],
+ [
+ "Question:What reinforcement learning algorithm does ReTool use for training?\nAnswer:",
+ " B. PPO"
+ ],
+ [
+ "Question:What reinforcement learning algorithm does ReTool use for training?\nAnswer:",
+ " C. A3C"
+ ],
+ [
+ "Question:What reinforcement learning algorithm does ReTool use for training?\nAnswer:",
+ " D. SAC"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.829739570617676,
+ false
+ ]
+ ],
+ [
+ [
+ -13.980524063110352,
+ false
+ ]
+ ],
+ [
+ [
+ -21.571880340576172,
+ false
+ ]
+ ],
+ [
+ [
+ -15.439249992370605,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.829739570617676,
+ false
+ ],
+ [
+ -13.980524063110352,
+ false
+ ],
+ [
+ -21.571880340576172,
+ false
+ ],
+ [
+ -15.439249992370605,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8c85ccf7abb14e557249e78f603c5cc79143c9c434424f4a967a9ad68c37bf81",
+ "prompt_hash": "94e4619ac3c684bb5179625c1623bcb81366c03539df54515bd59a4d6fe65262",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which open-source dataset is used to collect initial mathematical reasoning data for ReTool?",
+ "choices": [
+ "A. MATH-Bench",
+ "B. GSM8K",
+ "C. Open-Thoughts",
+ "D. DeepMind-MATH"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which open-source dataset is used to collect initial mathematical reasoning data for ReTool?\nAnswer:",
+ " A. MATH-Bench"
+ ],
+ [
+ "Question:Which open-source dataset is used to collect initial mathematical reasoning data for ReTool?\nAnswer:",
+ " B. GSM8K"
+ ],
+ [
+ "Question:Which open-source dataset is used to collect initial mathematical reasoning data for ReTool?\nAnswer:",
+ " C. Open-Thoughts"
+ ],
+ [
+ "Question:Which open-source dataset is used to collect initial mathematical reasoning data for ReTool?\nAnswer:",
+ " D. DeepMind-MATH"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.048118591308594,
+ false
+ ]
+ ],
+ [
+ [
+ -17.443546295166016,
+ false
+ ]
+ ],
+ [
+ [
+ -30.885421752929688,
+ false
+ ]
+ ],
+ [
+ [
+ -31.082300186157227,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.048118591308594,
+ false
+ ],
+ [
+ -17.443546295166016,
+ false
+ ],
+ [
+ -30.885421752929688,
+ false
+ ],
+ [
+ -31.082300186157227,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f1acff44644a3f8bac4a77b8cc05cad450e3038c914daf9737b9c17f4ba4d8cd",
+ "prompt_hash": "70ba707f7c520e7fcf72d7bddfaa0a7b6f19c007a87d29d9ede583ddcf4c1cdf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "What tag does ReTool use to enclose interpreter feedback during rollout?",
+ "choices": [
+ "A. ",
+ "B. ",
+ "C. ",
+ "D. "
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What tag does ReTool use to enclose interpreter feedback during rollout?\nAnswer:",
+ " A. "
+ ],
+ [
+ "Question:What tag does ReTool use to enclose interpreter feedback during rollout?\nAnswer:",
+ " B. "
+ ],
+ [
+ "Question:What tag does ReTool use to enclose interpreter feedback during rollout?\nAnswer:",
+ " C. "
+ ],
+ [
+ "Question:What tag does ReTool use to enclose interpreter feedback during rollout?\nAnswer:",
+ " D. "
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.48917007446289,
+ false
+ ]
+ ],
+ [
+ [
+ -31.313051223754883,
+ false
+ ]
+ ],
+ [
+ [
+ -27.07884979248047,
+ false
+ ]
+ ],
+ [
+ [
+ -27.08934211730957,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.48917007446289,
+ false
+ ],
+ [
+ -31.313051223754883,
+ false
+ ],
+ [
+ -27.07884979248047,
+ false
+ ],
+ [
+ -27.08934211730957,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7c1f7ba98d5616cf68889cad67cd752bc5dac3c1951f9a43ecaff0fb3afc3251",
+ "prompt_hash": "06586ba9b09f520f5cee7c69ac34b710340edaf272e396fb4163f8cd7c930fea",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "Which optimizer is used in ReTool's training?",
+ "choices": [
+ "A. SGD",
+ "B. RMSProp",
+ "C. Adam",
+ "D. AdamW"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which optimizer is used in ReTool's training?\nAnswer:",
+ " A. SGD"
+ ],
+ [
+ "Question:Which optimizer is used in ReTool's training?\nAnswer:",
+ " B. RMSProp"
+ ],
+ [
+ "Question:Which optimizer is used in ReTool's training?\nAnswer:",
+ " C. Adam"
+ ],
+ [
+ "Question:Which optimizer is used in ReTool's training?\nAnswer:",
+ " D. AdamW"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.596592903137207,
+ false
+ ]
+ ],
+ [
+ [
+ -17.42865562438965,
+ false
+ ]
+ ],
+ [
+ [
+ -11.870142936706543,
+ false
+ ]
+ ],
+ [
+ [
+ -15.095785140991211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.596592903137207,
+ false
+ ],
+ [
+ -17.42865562438965,
+ false
+ ],
+ [
+ -11.870142936706543,
+ false
+ ],
+ [
+ -15.095785140991211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c7f25bb32952834b817fb1d3b1a511051b26ef254728e26c834908054c2f0a11",
+ "prompt_hash": "b12dc98ee3517278f1673ce833f347a35b3e72a9a61751189c99722880859b1d",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "What is the batch size used during ReTool training?",
+ "choices": [
+ "A. 64",
+ "B. 128",
+ "C. 512",
+ "D. 1024"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the batch size used during ReTool training?\nAnswer:",
+ " A. 64"
+ ],
+ [
+ "Question:What is the batch size used during ReTool training?\nAnswer:",
+ " B. 128"
+ ],
+ [
+ "Question:What is the batch size used during ReTool training?\nAnswer:",
+ " C. 512"
+ ],
+ [
+ "Question:What is the batch size used during ReTool training?\nAnswer:",
+ " D. 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.776290893554688,
+ false
+ ]
+ ],
+ [
+ [
+ -20.013383865356445,
+ false
+ ]
+ ],
+ [
+ [
+ -17.222274780273438,
+ false
+ ]
+ ],
+ [
+ [
+ -19.3930606842041,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.776290893554688,
+ false
+ ],
+ [
+ -20.013383865356445,
+ false
+ ],
+ [
+ -17.222274780273438,
+ false
+ ],
+ [
+ -19.3930606842041,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d37bf261250e25fe20bfc55535b69f40d508b3cd688a73fa6d379109d07e8cbc",
+ "prompt_hash": "2f584e715eb626c8bd8ef2a626435ba1151d2a2c07e024de9a69ac45ba02a1c0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What percentage of training examples in the first phase do not come from mobile manipulators performing household tasks?",
+ "choices": [
+ "A. 87.6%",
+ "B. 92.1%",
+ "C. 97.6%",
+ "D. 99.1%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What percentage of training examples in the first phase do not come from mobile manipulators performing household tasks?\nAnswer:",
+ " A. 87.6%"
+ ],
+ [
+ "Question:What percentage of training examples in the first phase do not come from mobile manipulators performing household tasks?\nAnswer:",
+ " B. 92.1%"
+ ],
+ [
+ "Question:What percentage of training examples in the first phase do not come from mobile manipulators performing household tasks?\nAnswer:",
+ " C. 97.6%"
+ ],
+ [
+ "Question:What percentage of training examples in the first phase do not come from mobile manipulators performing household tasks?\nAnswer:",
+ " D. 99.1%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.758451461791992,
+ false
+ ]
+ ],
+ [
+ [
+ -26.572235107421875,
+ false
+ ]
+ ],
+ [
+ [
+ -27.108211517333984,
+ false
+ ]
+ ],
+ [
+ [
+ -28.280941009521484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.758451461791992,
+ false
+ ],
+ [
+ -26.572235107421875,
+ false
+ ],
+ [
+ -27.108211517333984,
+ false
+ ],
+ [
+ -28.280941009521484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6ce647be45e6fc9274b2b18316433680ef3a47f11676ff75d4e4a86e57f548a6",
+ "prompt_hash": "f2fd50888d8ad5c7a053737321b342d62445d4f445a49e922c405e5be1739b54",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "How many gradient steps are used during the pre-training stage before post-training begins?",
+ "choices": [
+ "A. 180k",
+ "B. 240k",
+ "C. 280k",
+ "D. 320k"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many gradient steps are used during the pre-training stage before post-training begins?\nAnswer:",
+ " A. 180k"
+ ],
+ [
+ "Question:How many gradient steps are used during the pre-training stage before post-training begins?\nAnswer:",
+ " B. 240k"
+ ],
+ [
+ "Question:How many gradient steps are used during the pre-training stage before post-training begins?\nAnswer:",
+ " C. 280k"
+ ],
+ [
+ "Question:How many gradient steps are used during the pre-training stage before post-training begins?\nAnswer:",
+ " D. 320k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.367948532104492,
+ false
+ ]
+ ],
+ [
+ [
+ -28.011634826660156,
+ false
+ ]
+ ],
+ [
+ [
+ -27.455156326293945,
+ false
+ ]
+ ],
+ [
+ [
+ -26.989158630371094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.367948532104492,
+ false
+ ],
+ [
+ -28.011634826660156,
+ false
+ ],
+ [
+ -27.455156326293945,
+ false
+ ],
+ [
+ -26.989158630371094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "61e6b2a176bbb8fde769ce9155ed93f21978b1200cb82a4d5a708592e17aece9",
+ "prompt_hash": "129bca244effe51fc35eeab711a8091ab4f0cadf15da52c14fc8eb809637ca52",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What is the dimensionality of the state and action spaces for the robot platforms used?",
+ "choices": [
+ "A. 16 or 17",
+ "B. 17 or 18",
+ "C. 18 or 19",
+ "D. 19 or 20"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the dimensionality of the state and action spaces for the robot platforms used?\nAnswer:",
+ " A. 16 or 17"
+ ],
+ [
+ "Question:What is the dimensionality of the state and action spaces for the robot platforms used?\nAnswer:",
+ " B. 17 or 18"
+ ],
+ [
+ "Question:What is the dimensionality of the state and action spaces for the robot platforms used?\nAnswer:",
+ " C. 18 or 19"
+ ],
+ [
+ "Question:What is the dimensionality of the state and action spaces for the robot platforms used?\nAnswer:",
+ " D. 19 or 20"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.649200439453125,
+ false
+ ]
+ ],
+ [
+ [
+ -27.498353958129883,
+ false
+ ]
+ ],
+ [
+ [
+ -28.055282592773438,
+ false
+ ]
+ ],
+ [
+ [
+ -27.136320114135742,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.649200439453125,
+ false
+ ],
+ [
+ -27.498353958129883,
+ false
+ ],
+ [
+ -28.055282592773438,
+ false
+ ],
+ [
+ -27.136320114135742,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6f0a6cd927ee4756bd42af1896a801829a81480d14a3fa245fb8537715c2b292",
+ "prompt_hash": "ad9c401ff0ecc4761b5f5456fbe95c5b0c2683a059e5730ab5d2a815cf32a54d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "What frequency is used for commanding target poses and base velocities in the control system?",
+ "choices": [
+ "A. 25 Hz",
+ "B. 40 Hz",
+ "C. 50 Hz",
+ "D. 60 Hz"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What frequency is used for commanding target poses and base velocities in the control system?\nAnswer:",
+ " A. 25 Hz"
+ ],
+ [
+ "Question:What frequency is used for commanding target poses and base velocities in the control system?\nAnswer:",
+ " B. 40 Hz"
+ ],
+ [
+ "Question:What frequency is used for commanding target poses and base velocities in the control system?\nAnswer:",
+ " C. 50 Hz"
+ ],
+ [
+ "Question:What frequency is used for commanding target poses and base velocities in the control system?\nAnswer:",
+ " D. 60 Hz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.22775650024414,
+ false
+ ]
+ ],
+ [
+ [
+ -17.436737060546875,
+ false
+ ]
+ ],
+ [
+ [
+ -15.833516120910645,
+ false
+ ]
+ ],
+ [
+ [
+ -17.22262191772461,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.22775650024414,
+ false
+ ],
+ [
+ -17.436737060546875,
+ false
+ ],
+ [
+ -15.833516120910645,
+ false
+ ],
+ [
+ -17.22262191772461,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "490cf24e2047fb1f04ed6fbb96bc77bc2d998d93301cb3f7d7454e2933958e31",
+ "prompt_hash": "35fc9d2bcd50d62602b8b7bf708b542b3791ebfd8a2ce9980cf1b612c6b8df30",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "What parameter value is used for alpha (α) in the post-training objective?",
+ "choices": [
+ "A. 1.0",
+ "B. 5.0",
+ "C. 10.0",
+ "D. 20.0"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What parameter value is used for alpha (α) in the post-training objective?\nAnswer:",
+ " A. 1.0"
+ ],
+ [
+ "Question:What parameter value is used for alpha (α) in the post-training objective?\nAnswer:",
+ " B. 5.0"
+ ],
+ [
+ "Question:What parameter value is used for alpha (α) in the post-training objective?\nAnswer:",
+ " C. 10.0"
+ ],
+ [
+ "Question:What parameter value is used for alpha (α) in the post-training objective?\nAnswer:",
+ " D. 20.0"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.336480140686035,
+ false
+ ]
+ ],
+ [
+ [
+ -20.035205841064453,
+ false
+ ]
+ ],
+ [
+ [
+ -19.37128448486328,
+ false
+ ]
+ ],
+ [
+ [
+ -23.52939224243164,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.336480140686035,
+ false
+ ],
+ [
+ -20.035205841064453,
+ false
+ ],
+ [
+ -19.37128448486328,
+ false
+ ],
+ [
+ -23.52939224243164,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f663613750d0872f37a37806f205ab097d64742456fe46c9b90b24f492ac82a3",
+ "prompt_hash": "1433b9bd24aea8b0a499e0a0f55b453f7055dc430a8e5d78ef5c7f9b72ea0cea",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2505": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What does LMMsEval cover in terms of evaluation scope?",
+ "choices": [
+ "Only language understanding tasks",
+ "Over 50 tasks and more than 10 multimodal models with around 30 variants",
+ "Primarily speech recognition models",
+ "Only vision-language pretraining datasets"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does LMMsEval cover in terms of evaluation scope?\nAnswer:",
+ " Only language understanding tasks"
+ ],
+ [
+ "Question:What does LMMsEval cover in terms of evaluation scope?\nAnswer:",
+ " Over 50 tasks and more than 10 multimodal models with around 30 variants"
+ ],
+ [
+ "Question:What does LMMsEval cover in terms of evaluation scope?\nAnswer:",
+ " Primarily speech recognition models"
+ ],
+ [
+ "Question:What does LMMsEval cover in terms of evaluation scope?\nAnswer:",
+ " Only vision-language pretraining datasets"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.97293472290039,
+ false
+ ]
+ ],
+ [
+ [
+ -55.380035400390625,
+ false
+ ]
+ ],
+ [
+ [
+ -25.03505516052246,
+ false
+ ]
+ ],
+ [
+ [
+ -24.526594161987305,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.97293472290039,
+ false
+ ],
+ [
+ -55.380035400390625,
+ false
+ ],
+ [
+ -25.03505516052246,
+ false
+ ],
+ [
+ -24.526594161987305,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3b1669dad9b551ce8a4908fa8ea3339d1ff318e2a624346f59dd1e8f8aa28a38",
+ "prompt_hash": "6dfbde378478140e15faaecb6271f55785b009f8fbfd325733fe6dd4cbbff36f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "Which challenge is described as an 'impossible triangle' in model evaluation?",
+ "choices": [
+ "Balancing inference speed and model accuracy",
+ "Simultaneously achieving wide coverage, low cost, and zero contamination",
+ "Training with limited annotations, large compute, and low latency",
+ "Evaluating models across languages, tasks, and modalities"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which challenge is described as an 'impossible triangle' in model evaluation?\nAnswer:",
+ " Balancing inference speed and model accuracy"
+ ],
+ [
+ "Question:Which challenge is described as an 'impossible triangle' in model evaluation?\nAnswer:",
+ " Simultaneously achieving wide coverage, low cost, and zero contamination"
+ ],
+ [
+ "Question:Which challenge is described as an 'impossible triangle' in model evaluation?\nAnswer:",
+ " Training with limited annotations, large compute, and low latency"
+ ],
+ [
+ "Question:Which challenge is described as an 'impossible triangle' in model evaluation?\nAnswer:",
+ " Evaluating models across languages, tasks, and modalities"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.767406463623047,
+ false
+ ]
+ ],
+ [
+ [
+ -47.17168426513672,
+ false
+ ]
+ ],
+ [
+ [
+ -50.6266975402832,
+ false
+ ]
+ ],
+ [
+ [
+ -33.649497985839844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.767406463623047,
+ false
+ ],
+ [
+ -47.17168426513672,
+ false
+ ],
+ [
+ -50.6266975402832,
+ false
+ ],
+ [
+ -33.649497985839844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2a417b6d28a02d886b946374694021779e3db6b0a42902caa9a2d4bdd89e432d",
+ "prompt_hash": "11162cd31565be37fecd5e91a999571e570b8b7ebb0cb474eb45184a1b18fd0d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "What is LiveBench designed to evaluate?",
+ "choices": [
+ "Training data efficiency",
+ "Model latency under high load",
+ "Zero-shot generalization ability on recent events",
+ "Synthetic dataset hallucination rates"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is LiveBench designed to evaluate?\nAnswer:",
+ " Training data efficiency"
+ ],
+ [
+ "Question:What is LiveBench designed to evaluate?\nAnswer:",
+ " Model latency under high load"
+ ],
+ [
+ "Question:What is LiveBench designed to evaluate?\nAnswer:",
+ " Zero-shot generalization ability on recent events"
+ ],
+ [
+ "Question:What is LiveBench designed to evaluate?\nAnswer:",
+ " Synthetic dataset hallucination rates"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.956071853637695,
+ false
+ ]
+ ],
+ [
+ [
+ -28.161441802978516,
+ false
+ ]
+ ],
+ [
+ [
+ -32.99784851074219,
+ false
+ ]
+ ],
+ [
+ [
+ -32.437286376953125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.956071853637695,
+ false
+ ],
+ [
+ -28.161441802978516,
+ false
+ ],
+ [
+ -32.99784851074219,
+ false
+ ],
+ [
+ -32.437286376953125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e89877aea1a7b5510a8c1ade9a2a5f3d12844a267a0883108cdcaaa14ba70a30",
+ "prompt_hash": "7c652418cd39c706467b6aaf1699f758801b139e22d5d9ad0715cc2ff33d7c51",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "What kind of input does the k-Center-Greedy algorithm operate on?",
+ "choices": [
+ "Image segmentations",
+ "Graph neural networks",
+ "Data points with distance metrics",
+ "Textual prompts only"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What kind of input does the k-Center-Greedy algorithm operate on?\nAnswer:",
+ " Image segmentations"
+ ],
+ [
+ "Question:What kind of input does the k-Center-Greedy algorithm operate on?\nAnswer:",
+ " Graph neural networks"
+ ],
+ [
+ "Question:What kind of input does the k-Center-Greedy algorithm operate on?\nAnswer:",
+ " Data points with distance metrics"
+ ],
+ [
+ "Question:What kind of input does the k-Center-Greedy algorithm operate on?\nAnswer:",
+ " Textual prompts only"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.033710479736328,
+ false
+ ]
+ ],
+ [
+ [
+ -16.644765853881836,
+ false
+ ]
+ ],
+ [
+ [
+ -23.175657272338867,
+ false
+ ]
+ ],
+ [
+ [
+ -24.075775146484375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.033710479736328,
+ false
+ ],
+ [
+ -16.644765853881836,
+ false
+ ],
+ [
+ -23.175657272338867,
+ false
+ ],
+ [
+ -24.075775146484375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "54fcb2386c893670061c6a35447d74e98401bd76c70b494723c821464997243d",
+ "prompt_hash": "0df26564be8572f314cb68c62da9b9a247a8c9178e22b44a9cc0b6a711828487",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "What embedding combination achieved a correlation of 0.99 on the DocVQA dataset?",
+ "choices": [
+ "LLaVA-Qwen and T5",
+ "CLIP and BGE",
+ "GPT-4 and Whisper",
+ "InstructBLIP and SAM"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What embedding combination achieved a correlation of 0.99 on the DocVQA dataset?\nAnswer:",
+ " LLaVA-Qwen and T5"
+ ],
+ [
+ "Question:What embedding combination achieved a correlation of 0.99 on the DocVQA dataset?\nAnswer:",
+ " CLIP and BGE"
+ ],
+ [
+ "Question:What embedding combination achieved a correlation of 0.99 on the DocVQA dataset?\nAnswer:",
+ " GPT-4 and Whisper"
+ ],
+ [
+ "Question:What embedding combination achieved a correlation of 0.99 on the DocVQA dataset?\nAnswer:",
+ " InstructBLIP and SAM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.054183959960938,
+ false
+ ]
+ ],
+ [
+ [
+ -17.10791778564453,
+ false
+ ]
+ ],
+ [
+ [
+ -19.499849319458008,
+ false
+ ]
+ ],
+ [
+ [
+ -23.219863891601562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.054183959960938,
+ false
+ ],
+ [
+ -17.10791778564453,
+ false
+ ],
+ [
+ -19.499849319458008,
+ false
+ ],
+ [
+ -23.219863891601562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "77e3c488cda7c2901e4db9deb84b94593e744c2a1fabeedc96a9b1fd204647cf",
+ "prompt_hash": "1142ce955ad04ce7fff0bcc9e0c728f4f7a5f716842a0e71c3f3630657af6ed7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "What is the vocabulary size of the enhanced Mixtral 8×7B model after adding Chinese tokens?",
+ "choices": [
+ "32,000",
+ "45,600",
+ "51,747",
+ "60,000"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the vocabulary size of the enhanced Mixtral 8×7B model after adding Chinese tokens?\nAnswer:",
+ " 32,000"
+ ],
+ [
+ "Question:What is the vocabulary size of the enhanced Mixtral 8×7B model after adding Chinese tokens?\nAnswer:",
+ " 45,600"
+ ],
+ [
+ "Question:What is the vocabulary size of the enhanced Mixtral 8×7B model after adding Chinese tokens?\nAnswer:",
+ " 51,747"
+ ],
+ [
+ "Question:What is the vocabulary size of the enhanced Mixtral 8×7B model after adding Chinese tokens?\nAnswer:",
+ " 60,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.721881866455078,
+ false
+ ]
+ ],
+ [
+ [
+ -12.677119255065918,
+ false
+ ]
+ ],
+ [
+ [
+ -15.605212211608887,
+ false
+ ]
+ ],
+ [
+ [
+ -9.898649215698242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.721881866455078,
+ false
+ ],
+ [
+ -12.677119255065918,
+ false
+ ],
+ [
+ -15.605212211608887,
+ false
+ ],
+ [
+ -9.898649215698242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4f98f06ebe385eafa97a315ab02655325450cc73dd72020dd75148e01133fa92",
+ "prompt_hash": "cfe366cbd2fac6c3876b7da478e0efacdef0942a055d72ec524bb594e11fe021",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "Which dataset does VITA use for evaluating generalization ability on unseen English audio data?",
+ "choices": [
+ "Wenetspeech",
+ "Librispeech",
+ "Gigaspeech",
+ "WavCaps"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset does VITA use for evaluating generalization ability on unseen English audio data?\nAnswer:",
+ " Wenetspeech"
+ ],
+ [
+ "Question:Which dataset does VITA use for evaluating generalization ability on unseen English audio data?\nAnswer:",
+ " Librispeech"
+ ],
+ [
+ "Question:Which dataset does VITA use for evaluating generalization ability on unseen English audio data?\nAnswer:",
+ " Gigaspeech"
+ ],
+ [
+ "Question:Which dataset does VITA use for evaluating generalization ability on unseen English audio data?\nAnswer:",
+ " WavCaps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.207500457763672,
+ false
+ ]
+ ],
+ [
+ [
+ -12.33529281616211,
+ false
+ ]
+ ],
+ [
+ [
+ -12.850362777709961,
+ false
+ ]
+ ],
+ [
+ [
+ -15.318611145019531,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.207500457763672,
+ false
+ ],
+ [
+ -12.33529281616211,
+ false
+ ],
+ [
+ -12.850362777709961,
+ false
+ ],
+ [
+ -15.318611145019531,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "542d2db21e6ec4291aef9e6bdb3b5075dc41372b4116c5cefc2b5600dce18859",
+ "prompt_hash": "5b31651fffe2ca51119b74a5cce653764c08230d1993bc377dd35e0ec06e40db",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "What state token is used to represent noisy audio inputs in VITA's training?",
+ "choices": [
+ "<1>",
+ "<2>",
+ "<3>",
+ "<4>"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What state token is used to represent noisy audio inputs in VITA's training?\nAnswer:",
+ " <1>"
+ ],
+ [
+ "Question:What state token is used to represent noisy audio inputs in VITA's training?\nAnswer:",
+ " <2>"
+ ],
+ [
+ "Question:What state token is used to represent noisy audio inputs in VITA's training?\nAnswer:",
+ " <3>"
+ ],
+ [
+ "Question:What state token is used to represent noisy audio inputs in VITA's training?\nAnswer:",
+ " <4>"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.951549530029297,
+ false
+ ]
+ ],
+ [
+ [
+ -16.574209213256836,
+ false
+ ]
+ ],
+ [
+ [
+ -17.21807098388672,
+ false
+ ]
+ ],
+ [
+ [
+ -17.7955265045166,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.951549530029297,
+ false
+ ],
+ [
+ -16.574209213256836,
+ false
+ ],
+ [
+ -17.21807098388672,
+ false
+ ],
+ [
+ -17.7955265045166,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "eb0fad1e87e0b2a107a6546ff653b3d34963f12e7d27937ad7aa8220951fe364",
+ "prompt_hash": "5b3aebe7d8197d7f76877bc6c1c1bc879b45a1ebabddce487f7d42b34b6660dd",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "Which vision encoder is used in VITA for processing 448×448 images?",
+ "choices": [
+ "CLIP-ViT-L/14",
+ "InternViT-300M-448px",
+ "Swin Transformer",
+ "ResNet-101"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which vision encoder is used in VITA for processing 448×448 images?\nAnswer:",
+ " CLIP-ViT-L/14"
+ ],
+ [
+ "Question:Which vision encoder is used in VITA for processing 448×448 images?\nAnswer:",
+ " InternViT-300M-448px"
+ ],
+ [
+ "Question:Which vision encoder is used in VITA for processing 448×448 images?\nAnswer:",
+ " Swin Transformer"
+ ],
+ [
+ "Question:Which vision encoder is used in VITA for processing 448×448 images?\nAnswer:",
+ " ResNet-101"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.558841705322266,
+ false
+ ]
+ ],
+ [
+ [
+ -32.80846405029297,
+ false
+ ]
+ ],
+ [
+ [
+ -7.141109466552734,
+ false
+ ]
+ ],
+ [
+ [
+ -5.8544602394104,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.558841705322266,
+ false
+ ],
+ [
+ -32.80846405029297,
+ false
+ ],
+ [
+ -7.141109466552734,
+ false
+ ],
+ [
+ -5.8544602394104,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f6767cbc9cf7ddcde6e8f14ee3341441f7bb2555f7f8a52f94d72770d44a39fd",
+ "prompt_hash": "08aff4a57dd4931809ad7eaa55af53d85d565927a5cc8d6525b4fee796f472d6",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "What technology is used in VITA to determine the presence of human speech for non-awakening interaction?",
+ "choices": [
+ "Whisper VAD",
+ "Google ASR",
+ "SileroVAD",
+ "Wenet-SpeechFilter"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What technology is used in VITA to determine the presence of human speech for non-awakening interaction?\nAnswer:",
+ " Whisper VAD"
+ ],
+ [
+ "Question:What technology is used in VITA to determine the presence of human speech for non-awakening interaction?\nAnswer:",
+ " Google ASR"
+ ],
+ [
+ "Question:What technology is used in VITA to determine the presence of human speech for non-awakening interaction?\nAnswer:",
+ " SileroVAD"
+ ],
+ [
+ "Question:What technology is used in VITA to determine the presence of human speech for non-awakening interaction?\nAnswer:",
+ " Wenet-SpeechFilter"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.72034454345703,
+ false
+ ]
+ ],
+ [
+ [
+ -14.900550842285156,
+ false
+ ]
+ ],
+ [
+ [
+ -30.873001098632812,
+ false
+ ]
+ ],
+ [
+ [
+ -33.093299865722656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.72034454345703,
+ false
+ ],
+ [
+ -14.900550842285156,
+ false
+ ],
+ [
+ -30.873001098632812,
+ false
+ ],
+ [
+ -33.093299865722656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "745b5fa734696aa348942de827466c537b4cf2e86108089418747ab3fb75d480",
+ "prompt_hash": "3f00de458cbac05dad962bbede2cd31be9b0d0faad21bcc0f6f1391ed9c8b14a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What accuracy did GPT-4o achieve on the original MMMU benchmark?",
+ "choices": [
+ "A. 54.0%",
+ "B. 64.7%",
+ "C. 69.1%",
+ "D. 49.7%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What accuracy did GPT-4o achieve on the original MMMU benchmark?\nAnswer:",
+ " A. 54.0%"
+ ],
+ [
+ "Question:What accuracy did GPT-4o achieve on the original MMMU benchmark?\nAnswer:",
+ " B. 64.7%"
+ ],
+ [
+ "Question:What accuracy did GPT-4o achieve on the original MMMU benchmark?\nAnswer:",
+ " C. 69.1%"
+ ],
+ [
+ "Question:What accuracy did GPT-4o achieve on the original MMMU benchmark?\nAnswer:",
+ " D. 49.7%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.4661922454834,
+ false
+ ]
+ ],
+ [
+ [
+ -26.72174644470215,
+ false
+ ]
+ ],
+ [
+ [
+ -26.082693099975586,
+ false
+ ]
+ ],
+ [
+ [
+ -27.48124885559082,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.4661922454834,
+ false
+ ],
+ [
+ -26.72174644470215,
+ false
+ ],
+ [
+ -26.082693099975586,
+ false
+ ],
+ [
+ -27.48124885559082,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "298d2464a2c0bc57a51d00db0e950417a69954575b8f1e7866341fadf29f1481",
+ "prompt_hash": "0289f1a9f56bea1ec40a6d4009314a10b273b15e2781c8525ce93eb25aa61884",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "How many questions were ultimately included in the MMMU-Pro benchmark?",
+ "choices": [
+ "A. 1,730",
+ "B. 2,460",
+ "C. 3,460",
+ "D. 1,800"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many questions were ultimately included in the MMMU-Pro benchmark?\nAnswer:",
+ " A. 1,730"
+ ],
+ [
+ "Question:How many questions were ultimately included in the MMMU-Pro benchmark?\nAnswer:",
+ " B. 2,460"
+ ],
+ [
+ "Question:How many questions were ultimately included in the MMMU-Pro benchmark?\nAnswer:",
+ " C. 3,460"
+ ],
+ [
+ "Question:How many questions were ultimately included in the MMMU-Pro benchmark?\nAnswer:",
+ " D. 1,800"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.054943084716797,
+ false
+ ]
+ ],
+ [
+ [
+ -26.868335723876953,
+ false
+ ]
+ ],
+ [
+ [
+ -27.635448455810547,
+ false
+ ]
+ ],
+ [
+ [
+ -24.531978607177734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.054943084716797,
+ false
+ ],
+ [
+ -26.868335723876953,
+ false
+ ],
+ [
+ -27.635448455810547,
+ false
+ ],
+ [
+ -24.531978607177734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dd92d64ca17d2154a6454959fc34202b18facba522725dea57765914d020c880",
+ "prompt_hash": "e59cd1444a1bf6a43ae678bd8ea5c2496438ff69f25a8b475461aec93f139b54",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "What is the number of disciplines covered in the original MMMU benchmark?",
+ "choices": [
+ "A. 6",
+ "B. 10",
+ "C. 30",
+ "D. 183"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the number of disciplines covered in the original MMMU benchmark?\nAnswer:",
+ " A. 6"
+ ],
+ [
+ "Question:What is the number of disciplines covered in the original MMMU benchmark?\nAnswer:",
+ " B. 10"
+ ],
+ [
+ "Question:What is the number of disciplines covered in the original MMMU benchmark?\nAnswer:",
+ " C. 30"
+ ],
+ [
+ "Question:What is the number of disciplines covered in the original MMMU benchmark?\nAnswer:",
+ " D. 183"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.21902084350586,
+ false
+ ]
+ ],
+ [
+ [
+ -15.686505317687988,
+ false
+ ]
+ ],
+ [
+ [
+ -17.21080780029297,
+ false
+ ]
+ ],
+ [
+ [
+ -22.50519561767578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.21902084350586,
+ false
+ ],
+ [
+ -15.686505317687988,
+ false
+ ],
+ [
+ -17.21080780029297,
+ false
+ ],
+ [
+ -22.50519561767578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "36eac7d056703cf1a05666a1a9f59cc87ffeeb666955da2a171fab3fd57653b9",
+ "prompt_hash": "c4a3258a279bfd369259106a172b585153d27241870c04dd425e97e0b4784695",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "Which vision encoder was used in the experiments to isolate its impact?",
+ "choices": [
+ "A. Qwen-VL",
+ "B. GPT-4V",
+ "C. Cambrian-1",
+ "D. MiniCPM"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which vision encoder was used in the experiments to isolate its impact?\nAnswer:",
+ " A. Qwen-VL"
+ ],
+ [
+ "Question:Which vision encoder was used in the experiments to isolate its impact?\nAnswer:",
+ " B. GPT-4V"
+ ],
+ [
+ "Question:Which vision encoder was used in the experiments to isolate its impact?\nAnswer:",
+ " C. Cambrian-1"
+ ],
+ [
+ "Question:Which vision encoder was used in the experiments to isolate its impact?\nAnswer:",
+ " D. MiniCPM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.30723762512207,
+ false
+ ]
+ ],
+ [
+ [
+ -23.405654907226562,
+ false
+ ]
+ ],
+ [
+ [
+ -33.900577545166016,
+ false
+ ]
+ ],
+ [
+ [
+ -29.396835327148438,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.30723762512207,
+ false
+ ],
+ [
+ -23.405654907226562,
+ false
+ ],
+ [
+ -33.900577545166016,
+ false
+ ],
+ [
+ -29.396835327148438,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7f1ed42a38f150c80bcb0ef62b7e1d8308acb51d5bb5497f48971f89880bf498",
+ "prompt_hash": "14e2bb02da022f7b8601f2869740640b0334d46f416ff6380d8b065aaa0319d1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "Which model was used to generate additional candidate options during augmentation?",
+ "choices": [
+ "A. Claude 3.5",
+ "B. GPT-4o",
+ "C. Gemini 1.5",
+ "D. LLaVA-OneVision"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model was used to generate additional candidate options during augmentation?\nAnswer:",
+ " A. Claude 3.5"
+ ],
+ [
+ "Question:Which model was used to generate additional candidate options during augmentation?\nAnswer:",
+ " B. GPT-4o"
+ ],
+ [
+ "Question:Which model was used to generate additional candidate options during augmentation?\nAnswer:",
+ " C. Gemini 1.5"
+ ],
+ [
+ "Question:Which model was used to generate additional candidate options during augmentation?\nAnswer:",
+ " D. LLaVA-OneVision"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.858570098876953,
+ false
+ ]
+ ],
+ [
+ [
+ -17.516746520996094,
+ false
+ ]
+ ],
+ [
+ [
+ -20.042131423950195,
+ false
+ ]
+ ],
+ [
+ [
+ -38.791839599609375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.858570098876953,
+ false
+ ],
+ [
+ -17.516746520996094,
+ false
+ ],
+ [
+ -20.042131423950195,
+ false
+ ],
+ [
+ -38.791839599609375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d5d85a665845e231dda9440a5b50fc29d2adcc43b3178656c686a0e2f8027ecb",
+ "prompt_hash": "0e47586eb5414a82b44bb27e63aaadf99378bfb12fc6a7f43e44b356bcb5cdde",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What is the trainable parameter count of TinyVLA-H used in the real-world experiments?",
+ "choices": [
+ "143M",
+ "195M",
+ "230M",
+ "111M"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the trainable parameter count of TinyVLA-H used in the real-world experiments?\nAnswer:",
+ " 143M"
+ ],
+ [
+ "Question:What is the trainable parameter count of TinyVLA-H used in the real-world experiments?\nAnswer:",
+ " 195M"
+ ],
+ [
+ "Question:What is the trainable parameter count of TinyVLA-H used in the real-world experiments?\nAnswer:",
+ " 230M"
+ ],
+ [
+ "Question:What is the trainable parameter count of TinyVLA-H used in the real-world experiments?\nAnswer:",
+ " 111M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.513046264648438,
+ false
+ ]
+ ],
+ [
+ [
+ -10.972759246826172,
+ false
+ ]
+ ],
+ [
+ [
+ -10.088597297668457,
+ false
+ ]
+ ],
+ [
+ [
+ -10.579017639160156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.513046264648438,
+ false
+ ],
+ [
+ -10.972759246826172,
+ false
+ ],
+ [
+ -10.088597297668457,
+ false
+ ],
+ [
+ -10.579017639160156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "db4e43e8d7c5de98fc8ba4275d6b357c17ce73b5fda91242b8419c71e5d765f1",
+ "prompt_hash": "9ce366a8c9e4579890a28ce077e4d110b1fb0c4a1d16a2ac5de1a2e6034347dd",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "Which robot platform was used in the single-arm setup of the real-world experiments?",
+ "choices": [
+ "Franka Panda",
+ "UR5",
+ "Baxter",
+ "Fetch"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which robot platform was used in the single-arm setup of the real-world experiments?\nAnswer:",
+ " Franka Panda"
+ ],
+ [
+ "Question:Which robot platform was used in the single-arm setup of the real-world experiments?\nAnswer:",
+ " UR5"
+ ],
+ [
+ "Question:Which robot platform was used in the single-arm setup of the real-world experiments?\nAnswer:",
+ " Baxter"
+ ],
+ [
+ "Question:Which robot platform was used in the single-arm setup of the real-world experiments?\nAnswer:",
+ " Fetch"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.701107978820801,
+ false
+ ]
+ ],
+ [
+ [
+ -5.939589977264404,
+ false
+ ]
+ ],
+ [
+ [
+ -8.133770942687988,
+ false
+ ]
+ ],
+ [
+ [
+ -8.463994026184082,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.701107978820801,
+ false
+ ],
+ [
+ -5.939589977264404,
+ false
+ ],
+ [
+ -8.133770942687988,
+ false
+ ],
+ [
+ -8.463994026184082,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "81b57442adaba6ddc0155eccac32a4bd02a1bd63926a19cec43f98c2195f8a81",
+ "prompt_hash": "e1496555d8ed21ed060041b33981e09fb6394c31b659bda5b8b84d52d5906322",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "Which model showed 0% success rate in all bimanual robot tasks according to Table 3?",
+ "choices": [
+ "OpenVLA",
+ "Diffusion Policy",
+ "TinyVLA-H",
+ "Multimodal Diffusion"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which model showed 0% success rate in all bimanual robot tasks according to Table 3?\nAnswer:",
+ " OpenVLA"
+ ],
+ [
+ "Question:Which model showed 0% success rate in all bimanual robot tasks according to Table 3?\nAnswer:",
+ " Diffusion Policy"
+ ],
+ [
+ "Question:Which model showed 0% success rate in all bimanual robot tasks according to Table 3?\nAnswer:",
+ " TinyVLA-H"
+ ],
+ [
+ "Question:Which model showed 0% success rate in all bimanual robot tasks according to Table 3?\nAnswer:",
+ " Multimodal Diffusion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.396982192993164,
+ false
+ ]
+ ],
+ [
+ [
+ -11.818183898925781,
+ false
+ ]
+ ],
+ [
+ [
+ -33.9705924987793,
+ false
+ ]
+ ],
+ [
+ [
+ -19.039514541625977,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.396982192993164,
+ false
+ ],
+ [
+ -11.818183898925781,
+ false
+ ],
+ [
+ -33.9705924987793,
+ false
+ ],
+ [
+ -19.039514541625977,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e874d90f80affe8518767f283013240ae5e9bc2c15406631468d248d6f726e04",
+ "prompt_hash": "afc35c36521faeabe492d43d146d6b260437d1b401ce682dae8c4de6286d67d8",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "What is the measured inference latency of TinyVLA-1B on an A6000 GPU?",
+ "choices": [
+ "14 ms",
+ "140 ms",
+ "292 ms",
+ "70 ms"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the measured inference latency of TinyVLA-1B on an A6000 GPU?\nAnswer:",
+ " 14 ms"
+ ],
+ [
+ "Question:What is the measured inference latency of TinyVLA-1B on an A6000 GPU?\nAnswer:",
+ " 140 ms"
+ ],
+ [
+ "Question:What is the measured inference latency of TinyVLA-1B on an A6000 GPU?\nAnswer:",
+ " 292 ms"
+ ],
+ [
+ "Question:What is the measured inference latency of TinyVLA-1B on an A6000 GPU?\nAnswer:",
+ " 70 ms"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.792166709899902,
+ false
+ ]
+ ],
+ [
+ [
+ -9.454630851745605,
+ false
+ ]
+ ],
+ [
+ [
+ -10.36293888092041,
+ false
+ ]
+ ],
+ [
+ [
+ -8.36336898803711,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.792166709899902,
+ false
+ ],
+ [
+ -9.454630851745605,
+ false
+ ],
+ [
+ -10.36293888092041,
+ false
+ ],
+ [
+ -8.36336898803711,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e4bacb514f07dad518d735c6d698a88a986846b751646c6c699998f3a42d8aa9",
+ "prompt_hash": "a691defa7e5002f5d38b3b234be5517c9d6d0476f7badf386e924da6f041552d",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "Which policy head achieved 0% success rate across all 5 tasks in the ablation study?",
+ "choices": [
+ "Multi-Layer Perceptron",
+ "Action Chunking Transformer",
+ "Diffusion Model",
+ "Recurrent Policy Head"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which policy head achieved 0% success rate across all 5 tasks in the ablation study?\nAnswer:",
+ " Multi-Layer Perceptron"
+ ],
+ [
+ "Question:Which policy head achieved 0% success rate across all 5 tasks in the ablation study?\nAnswer:",
+ " Action Chunking Transformer"
+ ],
+ [
+ "Question:Which policy head achieved 0% success rate across all 5 tasks in the ablation study?\nAnswer:",
+ " Diffusion Model"
+ ],
+ [
+ "Question:Which policy head achieved 0% success rate across all 5 tasks in the ablation study?\nAnswer:",
+ " Recurrent Policy Head"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.007116317749023,
+ false
+ ]
+ ],
+ [
+ [
+ -23.203115463256836,
+ false
+ ]
+ ],
+ [
+ [
+ -11.77556037902832,
+ false
+ ]
+ ],
+ [
+ [
+ -11.666049003601074,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.007116317749023,
+ false
+ ],
+ [
+ -23.203115463256836,
+ false
+ ],
+ [
+ -11.77556037902832,
+ false
+ ],
+ [
+ -11.666049003601074,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b625e15ff88dd5e1ba049bbeb3258eb67e91f789eabfa1d4fa6ed40941daf166",
+ "prompt_hash": "9e52561645aca7551934cc5603a0d78b424fdd1adaff8aca70561bb374cbe301",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "How many distinct frameworks for conceptualizing hallucinations were identified by Venkit et al. (2024)?",
+ "choices": [
+ "A. 17",
+ "B. 24",
+ "C. 31",
+ "D. 36"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many distinct frameworks for conceptualizing hallucinations were identified by Venkit et al. (2024)?\nAnswer:",
+ " A. 17"
+ ],
+ [
+ "Question:How many distinct frameworks for conceptualizing hallucinations were identified by Venkit et al. (2024)?\nAnswer:",
+ " B. 24"
+ ],
+ [
+ "Question:How many distinct frameworks for conceptualizing hallucinations were identified by Venkit et al. (2024)?\nAnswer:",
+ " C. 31"
+ ],
+ [
+ "Question:How many distinct frameworks for conceptualizing hallucinations were identified by Venkit et al. (2024)?\nAnswer:",
+ " D. 36"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.789040565490723,
+ false
+ ]
+ ],
+ [
+ [
+ -18.592174530029297,
+ false
+ ]
+ ],
+ [
+ [
+ -19.653242111206055,
+ false
+ ]
+ ],
+ [
+ [
+ -21.745758056640625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.789040565490723,
+ false
+ ],
+ [
+ -18.592174530029297,
+ false
+ ],
+ [
+ -19.653242111206055,
+ false
+ ],
+ [
+ -21.745758056640625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "088a607c5d13b87a741cc7832f6495256ddb93f286282503bf421da9e76ce8a4",
+ "prompt_hash": "3c3b3c9cb0ad529c2caa76d3a0e90432ea086385d0b37a72ae05d7da2d0e8f1a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "Which token location yields the highest error detection performance according to the paper's experiments?",
+ "choices": [
+ "A. Final prompt token",
+ "B. First generated token",
+ "C. Last generated token",
+ "D. Exact answer tokens"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which token location yields the highest error detection performance according to the paper's experiments?\nAnswer:",
+ " A. Final prompt token"
+ ],
+ [
+ "Question:Which token location yields the highest error detection performance according to the paper's experiments?\nAnswer:",
+ " B. First generated token"
+ ],
+ [
+ "Question:Which token location yields the highest error detection performance according to the paper's experiments?\nAnswer:",
+ " C. Last generated token"
+ ],
+ [
+ "Question:Which token location yields the highest error detection performance according to the paper's experiments?\nAnswer:",
+ " D. Exact answer tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.774280548095703,
+ false
+ ]
+ ],
+ [
+ [
+ -26.752925872802734,
+ false
+ ]
+ ],
+ [
+ [
+ -24.09011459350586,
+ false
+ ]
+ ],
+ [
+ [
+ -35.55046081542969,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.774280548095703,
+ false
+ ],
+ [
+ -26.752925872802734,
+ false
+ ],
+ [
+ -24.09011459350586,
+ false
+ ],
+ [
+ -35.55046081542969,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5debafacc0313e610d1f5570ccf84f0a5fa2a638f67b295d4ef28a3e8226d1ff",
+ "prompt_hash": "5fdb7b2ade6ddf2fc85c0957e5c7c297787f8cd5b3165093253271e1c6d5f149",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "How many different datasets were used in the generalization experiments?",
+ "choices": [
+ "A. 6",
+ "B. 8",
+ "C. 10",
+ "D. 12"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many different datasets were used in the generalization experiments?\nAnswer:",
+ " A. 6"
+ ],
+ [
+ "Question:How many different datasets were used in the generalization experiments?\nAnswer:",
+ " B. 8"
+ ],
+ [
+ "Question:How many different datasets were used in the generalization experiments?\nAnswer:",
+ " C. 10"
+ ],
+ [
+ "Question:How many different datasets were used in the generalization experiments?\nAnswer:",
+ " D. 12"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.56005573272705,
+ false
+ ]
+ ],
+ [
+ [
+ -17.37611961364746,
+ false
+ ]
+ ],
+ [
+ [
+ -16.513471603393555,
+ false
+ ]
+ ],
+ [
+ [
+ -19.60246467590332,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.56005573272705,
+ false
+ ],
+ [
+ -17.37611961364746,
+ false
+ ],
+ [
+ -16.513471603393555,
+ false
+ ],
+ [
+ -19.60246467590332,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c52e71ed55aa12b401df3fbccf6f15ece65c1fdfcd89eb8b21ab1dd81d4e8f13",
+ "prompt_hash": "7d58c07a763f7281bef658fb2c1f2175323ac291f5e04429c553dc5c792f6b36",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "What temperature setting was used for generating 30 resampled responses per example in the taxonomy experiments?",
+ "choices": [
+ "A. T=0.7",
+ "B. T=1",
+ "C. T=1.3",
+ "D. T=1.5"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What temperature setting was used for generating 30 resampled responses per example in the taxonomy experiments?\nAnswer:",
+ " A. T=0.7"
+ ],
+ [
+ "Question:What temperature setting was used for generating 30 resampled responses per example in the taxonomy experiments?\nAnswer:",
+ " B. T=1"
+ ],
+ [
+ "Question:What temperature setting was used for generating 30 resampled responses per example in the taxonomy experiments?\nAnswer:",
+ " C. T=1.3"
+ ],
+ [
+ "Question:What temperature setting was used for generating 30 resampled responses per example in the taxonomy experiments?\nAnswer:",
+ " D. T=1.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.471176147460938,
+ false
+ ]
+ ],
+ [
+ [
+ -23.36217498779297,
+ false
+ ]
+ ],
+ [
+ [
+ -28.130271911621094,
+ false
+ ]
+ ],
+ [
+ [
+ -26.67983055114746,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.471176147460938,
+ false
+ ],
+ [
+ -23.36217498779297,
+ false
+ ],
+ [
+ -28.130271911621094,
+ false
+ ],
+ [
+ -26.67983055114746,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "15e767638e6198a9754222e58e8f2f435800b900483ca50b9b187ef1185084ee",
+ "prompt_hash": "138341574abb1a3874c9acd3ccca8854c8840476e259696ee4da1a7038f9d77c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "Which of the following is NOT one of the defined error type categories in the taxonomy?",
+ "choices": [
+ "A. Refuses to answer",
+ "B. Consistently correct",
+ "C. Ambiguous output",
+ "D. Many answers"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which of the following is NOT one of the defined error type categories in the taxonomy?\nAnswer:",
+ " A. Refuses to answer"
+ ],
+ [
+ "Question:Which of the following is NOT one of the defined error type categories in the taxonomy?\nAnswer:",
+ " B. Consistently correct"
+ ],
+ [
+ "Question:Which of the following is NOT one of the defined error type categories in the taxonomy?\nAnswer:",
+ " C. Ambiguous output"
+ ],
+ [
+ "Question:Which of the following is NOT one of the defined error type categories in the taxonomy?\nAnswer:",
+ " D. Many answers"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.00957489013672,
+ false
+ ]
+ ],
+ [
+ [
+ -29.909709930419922,
+ false
+ ]
+ ],
+ [
+ [
+ -23.594970703125,
+ false
+ ]
+ ],
+ [
+ [
+ -27.88152503967285,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.00957489013672,
+ false
+ ],
+ [
+ -29.909709930419922,
+ false
+ ],
+ [
+ -23.594970703125,
+ false
+ ],
+ [
+ -27.88152503967285,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "73eaf2b446b027243d031d922e148c4c7bc74a1ac1d774c7f3b9ddf566b5c38c",
+ "prompt_hash": "1a38e2641260ea197fd8cf483914d58a3944f06a82dcb4c549e92c98e45d2dbb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What is the base architecture used in DUSt3R?",
+ "choices": [
+ "ResNet-50",
+ "UNet",
+ "ViT",
+ "ConvNeXt"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the base architecture used in DUSt3R?\nAnswer:",
+ " ResNet-50"
+ ],
+ [
+ "Question:What is the base architecture used in DUSt3R?\nAnswer:",
+ " UNet"
+ ],
+ [
+ "Question:What is the base architecture used in DUSt3R?\nAnswer:",
+ " ViT"
+ ],
+ [
+ "Question:What is the base architecture used in DUSt3R?\nAnswer:",
+ " ConvNeXt"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.902190208435059,
+ false
+ ]
+ ],
+ [
+ [
+ -6.717433929443359,
+ false
+ ]
+ ],
+ [
+ [
+ -9.138675689697266,
+ false
+ ]
+ ],
+ [
+ [
+ -10.40615177154541,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.902190208435059,
+ false
+ ],
+ [
+ -6.717433929443359,
+ false
+ ],
+ [
+ -9.138675689697266,
+ false
+ ],
+ [
+ -10.40615177154541,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c7800f96bb0c353b6dda2661fc226a55a7d3082e3222e320db2aaff1fffe1e6e",
+ "prompt_hash": "71922fbde641c489c53e5e32905f3f67f3c177cff1f64f426a6bdf27a285bc94",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which dataset used in training contains real-world driving scenes labeled with LiDAR?",
+ "choices": [
+ "TartanAir",
+ "Waymo",
+ "PointOdyssey",
+ "Spring"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset used in training contains real-world driving scenes labeled with LiDAR?\nAnswer:",
+ " TartanAir"
+ ],
+ [
+ "Question:Which dataset used in training contains real-world driving scenes labeled with LiDAR?\nAnswer:",
+ " Waymo"
+ ],
+ [
+ "Question:Which dataset used in training contains real-world driving scenes labeled with LiDAR?\nAnswer:",
+ " PointOdyssey"
+ ],
+ [
+ "Question:Which dataset used in training contains real-world driving scenes labeled with LiDAR?\nAnswer:",
+ " Spring"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.998791694641113,
+ false
+ ]
+ ],
+ [
+ [
+ -4.909386157989502,
+ false
+ ]
+ ],
+ [
+ [
+ -13.181317329406738,
+ false
+ ]
+ ],
+ [
+ [
+ -11.645455360412598,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.998791694641113,
+ false
+ ],
+ [
+ -4.909386157989502,
+ false
+ ],
+ [
+ -13.181317329406738,
+ false
+ ],
+ [
+ -11.645455360412598,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "79d364b2ad96950b627a4d897ab4923ecee50940351f2a8e7c125c8b2a579460",
+ "prompt_hash": "e066fe9db3a4121db4adcedfb351f0144fa65fd273dcd5932b3074d4dd09a0de",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "What loss function is used to penalize large changes in camera motion between nearby frames?",
+ "choices": [
+ "Reconstruction loss",
+ "Flow projection loss",
+ "Camera trajectory smoothness loss",
+ "Confidence-aware regression loss"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What loss function is used to penalize large changes in camera motion between nearby frames?\nAnswer:",
+ " Reconstruction loss"
+ ],
+ [
+ "Question:What loss function is used to penalize large changes in camera motion between nearby frames?\nAnswer:",
+ " Flow projection loss"
+ ],
+ [
+ "Question:What loss function is used to penalize large changes in camera motion between nearby frames?\nAnswer:",
+ " Camera trajectory smoothness loss"
+ ],
+ [
+ "Question:What loss function is used to penalize large changes in camera motion between nearby frames?\nAnswer:",
+ " Confidence-aware regression loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.903263092041016,
+ false
+ ]
+ ],
+ [
+ [
+ -22.54827880859375,
+ false
+ ]
+ ],
+ [
+ [
+ -16.430816650390625,
+ false
+ ]
+ ],
+ [
+ [
+ -25.50876235961914,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.903263092041016,
+ false
+ ],
+ [
+ -22.54827880859375,
+ false
+ ],
+ [
+ -16.430816650390625,
+ false
+ ],
+ [
+ -25.50876235961914,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c64c7159ab967c3c7d496b4bdc27463c2d08cfbb084443a9a9c2180127c6b5fe",
+ "prompt_hash": "d1d8b480f4eb3e66ef6571f6eb5e172a03c1b3346c6c405e8e51faa74e532330",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "What is the temporal stride range used for sampling training frame pairs?",
+ "choices": [
+ "1 to 3",
+ "1 to 5",
+ "1 to 9",
+ "1 to 12"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the temporal stride range used for sampling training frame pairs?\nAnswer:",
+ " 1 to 3"
+ ],
+ [
+ "Question:What is the temporal stride range used for sampling training frame pairs?\nAnswer:",
+ " 1 to 5"
+ ],
+ [
+ "Question:What is the temporal stride range used for sampling training frame pairs?\nAnswer:",
+ " 1 to 9"
+ ],
+ [
+ "Question:What is the temporal stride range used for sampling training frame pairs?\nAnswer:",
+ " 1 to 12"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.650957107543945,
+ false
+ ]
+ ],
+ [
+ [
+ -8.892343521118164,
+ false
+ ]
+ ],
+ [
+ [
+ -10.787841796875,
+ false
+ ]
+ ],
+ [
+ [
+ -9.943251609802246,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.650957107543945,
+ false
+ ],
+ [
+ -8.892343521118164,
+ false
+ ],
+ [
+ -10.787841796875,
+ false
+ ],
+ [
+ -9.943251609802246,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "852aeccfb773c579e7db31f4a289b845db6b09e9394d2f616c56083a4ca87616",
+ "prompt_hash": "8249dd0c5f93de319e0d0f164a41964b80addc4f653ec3e113d666c5d6651112",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "What optimizer and learning rate are used for global optimization of 60-frame videos?",
+ "choices": [
+ "SGD with 0.001",
+ "Adam with 0.01",
+ "AdamW with 0.00005",
+ "RMSprop with 0.0001"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What optimizer and learning rate are used for global optimization of 60-frame videos?\nAnswer:",
+ " SGD with 0.001"
+ ],
+ [
+ "Question:What optimizer and learning rate are used for global optimization of 60-frame videos?\nAnswer:",
+ " Adam with 0.01"
+ ],
+ [
+ "Question:What optimizer and learning rate are used for global optimization of 60-frame videos?\nAnswer:",
+ " AdamW with 0.00005"
+ ],
+ [
+ "Question:What optimizer and learning rate are used for global optimization of 60-frame videos?\nAnswer:",
+ " RMSprop with 0.0001"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.876667022705078,
+ false
+ ]
+ ],
+ [
+ [
+ -10.228866577148438,
+ false
+ ]
+ ],
+ [
+ [
+ -12.527027130126953,
+ false
+ ]
+ ],
+ [
+ [
+ -13.674966812133789,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.876667022705078,
+ false
+ ],
+ [
+ -10.228866577148438,
+ false
+ ],
+ [
+ -12.527027130126953,
+ false
+ ],
+ [
+ -13.674966812133789,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f4e9058c86b1a3d86997945e52193392c27d450d8c91940f9bff5e9fb816335c",
+ "prompt_hash": "1cf46adbf2e992b36fe1d8f7ac1f1b03f867d635517f8f5e6bcd94f9645594be",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What training dataset does F5-TTS use as its primary multilingual speech corpus?",
+ "choices": [
+ "LibriSpeech",
+ "Common Voice",
+ "Emilia",
+ "DiDiSpeech"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What training dataset does F5-TTS use as its primary multilingual speech corpus?\nAnswer:",
+ " LibriSpeech"
+ ],
+ [
+ "Question:What training dataset does F5-TTS use as its primary multilingual speech corpus?\nAnswer:",
+ " Common Voice"
+ ],
+ [
+ "Question:What training dataset does F5-TTS use as its primary multilingual speech corpus?\nAnswer:",
+ " Emilia"
+ ],
+ [
+ "Question:What training dataset does F5-TTS use as its primary multilingual speech corpus?\nAnswer:",
+ " DiDiSpeech"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.711255073547363,
+ false
+ ]
+ ],
+ [
+ [
+ -9.119474411010742,
+ false
+ ]
+ ],
+ [
+ [
+ -15.207857131958008,
+ false
+ ]
+ ],
+ [
+ [
+ -20.510555267333984,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.711255073547363,
+ false
+ ],
+ [
+ -9.119474411010742,
+ false
+ ],
+ [
+ -15.207857131958008,
+ false
+ ],
+ [
+ -20.510555267333984,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "33e0ceb55bc12ccc99a4fc04ab6f92c6294fcb82d721995aaa0b906cffe2d8f6",
+ "prompt_hash": "ce72503e5db081ab1076af40cee3543d2783d06fabd39992a72803bd222edb3b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "Which model component is responsible for refining text inputs in F5-TTS?",
+ "choices": [
+ "U-Net skip connections",
+ "Diffusion Transformer blocks",
+ "ConvNeXt V2 blocks",
+ "Phoneme duration predictor"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model component is responsible for refining text inputs in F5-TTS?\nAnswer:",
+ " U-Net skip connections"
+ ],
+ [
+ "Question:Which model component is responsible for refining text inputs in F5-TTS?\nAnswer:",
+ " Diffusion Transformer blocks"
+ ],
+ [
+ "Question:Which model component is responsible for refining text inputs in F5-TTS?\nAnswer:",
+ " ConvNeXt V2 blocks"
+ ],
+ [
+ "Question:Which model component is responsible for refining text inputs in F5-TTS?\nAnswer:",
+ " Phoneme duration predictor"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.65896987915039,
+ false
+ ]
+ ],
+ [
+ [
+ -21.000442504882812,
+ false
+ ]
+ ],
+ [
+ [
+ -31.53213119506836,
+ false
+ ]
+ ],
+ [
+ [
+ -17.73664093017578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.65896987915039,
+ false
+ ],
+ [
+ -21.000442504882812,
+ false
+ ],
+ [
+ -31.53213119506836,
+ false
+ ],
+ [
+ -17.73664093017578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "45eddef54cc2a019784435be5b05ca86f65897abc3408c86c899226cf4da09fa",
+ "prompt_hash": "eaa0c708d7b70bffb5898d56a1fa73abf147e5d996013056f4313455d869a3b6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "What is the purpose of Sway Sampling introduced in F5-TTS?",
+ "choices": [
+ "To reduce vocabulary size",
+ "To train phoneme alignment",
+ "To improve early-stage generation precision by biasing flow step sampling",
+ "To shorten spectrogram length"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of Sway Sampling introduced in F5-TTS?\nAnswer:",
+ " To reduce vocabulary size"
+ ],
+ [
+ "Question:What is the purpose of Sway Sampling introduced in F5-TTS?\nAnswer:",
+ " To train phoneme alignment"
+ ],
+ [
+ "Question:What is the purpose of Sway Sampling introduced in F5-TTS?\nAnswer:",
+ " To improve early-stage generation precision by biasing flow step sampling"
+ ],
+ [
+ "Question:What is the purpose of Sway Sampling introduced in F5-TTS?\nAnswer:",
+ " To shorten spectrogram length"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.38027286529541,
+ false
+ ]
+ ],
+ [
+ [
+ -21.03119659423828,
+ false
+ ]
+ ],
+ [
+ [
+ -65.99842834472656,
+ false
+ ]
+ ],
+ [
+ [
+ -25.927387237548828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.38027286529541,
+ false
+ ],
+ [
+ -21.03119659423828,
+ false
+ ],
+ [
+ -65.99842834472656,
+ false
+ ],
+ [
+ -25.927387237548828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6b84f645aa6e65e24b7ed43a50bac653983f8b1132804d300cc920e9efe41a8d",
+ "prompt_hash": "7aea7433247eab344b37d481a238332d6fadee9038927088604873b3c3bc8fdf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which of the following best describes the loss used in Conditional Flow Matching (CFM)?",
+ "choices": [
+ "Kullback–Leibler divergence between two distributions",
+ "Regression of a vector field over interpolated samples between noise and data",
+ "Binary cross-entropy on token classification",
+ "Maximum likelihood over conditional audio sequences"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which of the following best describes the loss used in Conditional Flow Matching (CFM)?\nAnswer:",
+ " Kullback–Leibler divergence between two distributions"
+ ],
+ [
+ "Question:Which of the following best describes the loss used in Conditional Flow Matching (CFM)?\nAnswer:",
+ " Regression of a vector field over interpolated samples between noise and data"
+ ],
+ [
+ "Question:Which of the following best describes the loss used in Conditional Flow Matching (CFM)?\nAnswer:",
+ " Binary cross-entropy on token classification"
+ ],
+ [
+ "Question:Which of the following best describes the loss used in Conditional Flow Matching (CFM)?\nAnswer:",
+ " Maximum likelihood over conditional audio sequences"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.028358459472656,
+ false
+ ]
+ ],
+ [
+ [
+ -63.69902420043945,
+ false
+ ]
+ ],
+ [
+ [
+ -32.79347610473633,
+ false
+ ]
+ ],
+ [
+ [
+ -42.33498001098633,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.028358459472656,
+ false
+ ],
+ [
+ -63.69902420043945,
+ false
+ ],
+ [
+ -32.79347610473633,
+ false
+ ],
+ [
+ -42.33498001098633,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b50ff29a413503dc2b921eaea16d825cabcb584aff52a9e6d4cb501369858fe0",
+ "prompt_hash": "db6cfb713582f6ecedb958bec56a99fc4d7427d5d54b2ef25514fc914c097c66",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "What input is discarded during inference after generating the mel spectrogram in F5-TTS?",
+ "choices": [
+ "The text prompt",
+ "The reference text embedding",
+ "The audio prompt's mel spectrogram part",
+ "The filler tokens from the character sequence"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What input is discarded during inference after generating the mel spectrogram in F5-TTS?\nAnswer:",
+ " The text prompt"
+ ],
+ [
+ "Question:What input is discarded during inference after generating the mel spectrogram in F5-TTS?\nAnswer:",
+ " The reference text embedding"
+ ],
+ [
+ "Question:What input is discarded during inference after generating the mel spectrogram in F5-TTS?\nAnswer:",
+ " The audio prompt's mel spectrogram part"
+ ],
+ [
+ "Question:What input is discarded during inference after generating the mel spectrogram in F5-TTS?\nAnswer:",
+ " The filler tokens from the character sequence"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.444910049438477,
+ false
+ ]
+ ],
+ [
+ [
+ -18.15170669555664,
+ false
+ ]
+ ],
+ [
+ [
+ -31.38549041748047,
+ false
+ ]
+ ],
+ [
+ [
+ -30.70021629333496,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.444910049438477,
+ false
+ ],
+ [
+ -18.15170669555664,
+ false
+ ],
+ [
+ -31.38549041748047,
+ false
+ ],
+ [
+ -30.70021629333496,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8fe08f95a8ba3421a88a9eb400ac87d72b90e8b285e59b802e7e8be2a039b2ce",
+ "prompt_hash": "680e0b1ae5f34b3396e8fbc51270f648905cd993aaaf4f81c0c5d1a2bc0cffa4",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What spatial compression ratio is commonly used in current latent diffusion models for low-resolution image synthesis?",
+ "choices": [
+ "f4",
+ "f8",
+ "f16",
+ "f32"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What spatial compression ratio is commonly used in current latent diffusion models for low-resolution image synthesis?\nAnswer:",
+ " f4"
+ ],
+ [
+ "Question:What spatial compression ratio is commonly used in current latent diffusion models for low-resolution image synthesis?\nAnswer:",
+ " f8"
+ ],
+ [
+ "Question:What spatial compression ratio is commonly used in current latent diffusion models for low-resolution image synthesis?\nAnswer:",
+ " f16"
+ ],
+ [
+ "Question:What spatial compression ratio is commonly used in current latent diffusion models for low-resolution image synthesis?\nAnswer:",
+ " f32"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.50409984588623,
+ false
+ ]
+ ],
+ [
+ [
+ -14.269413948059082,
+ false
+ ]
+ ],
+ [
+ [
+ -14.32170295715332,
+ false
+ ]
+ ],
+ [
+ [
+ -15.244773864746094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.50409984588623,
+ false
+ ],
+ [
+ -14.269413948059082,
+ false
+ ],
+ [
+ -14.32170295715332,
+ false
+ ],
+ [
+ -15.244773864746094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3f9d870c2da3d7ac5b38b20be4c2a15e8044c981478ed36710950e976548391e",
+ "prompt_hash": "44ff1673298af79ec35ddf1c23b115eefa9a6876e15420072767e1f8d38a045a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "What is the main purpose of the Residual Autoencoding technique?",
+ "choices": [
+ "To increase the number of latent channels",
+ "To enhance GAN loss training",
+ "To alleviate the optimization difficulty of high spatial-compression autoencoders",
+ "To replace transformer blocks in the decoder"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main purpose of the Residual Autoencoding technique?\nAnswer:",
+ " To increase the number of latent channels"
+ ],
+ [
+ "Question:What is the main purpose of the Residual Autoencoding technique?\nAnswer:",
+ " To enhance GAN loss training"
+ ],
+ [
+ "Question:What is the main purpose of the Residual Autoencoding technique?\nAnswer:",
+ " To alleviate the optimization difficulty of high spatial-compression autoencoders"
+ ],
+ [
+ "Question:What is the main purpose of the Residual Autoencoding technique?\nAnswer:",
+ " To replace transformer blocks in the decoder"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.832551956176758,
+ false
+ ]
+ ],
+ [
+ [
+ -28.78612518310547,
+ false
+ ]
+ ],
+ [
+ [
+ -54.97429656982422,
+ false
+ ]
+ ],
+ [
+ [
+ -27.120742797851562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.832551956176758,
+ false
+ ],
+ [
+ -28.78612518310547,
+ false
+ ],
+ [
+ -54.97429656982422,
+ false
+ ],
+ [
+ -27.120742797851562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e069fa74abac54b4f1d74eb80464397d6db86ee940ce3d1ce9c7a749969c8ad1",
+ "prompt_hash": "7fadc57a3e53ecaa1898442c81373e871ef9945190940fbcaa43eb78d2b5d852",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "What is the spatial size transformation achieved by a space-to-channel operation with patch size p?",
+ "choices": [
+ "H × W × C → H/p × W/p × C/p",
+ "H × W × C → H × W × C × p",
+ "H × W × C → H × W × C/p",
+ "H × W × C → H/p × W/p × p²C"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the spatial size transformation achieved by a space-to-channel operation with patch size p?\nAnswer:",
+ " H × W × C → H/p × W/p × C/p"
+ ],
+ [
+ "Question:What is the spatial size transformation achieved by a space-to-channel operation with patch size p?\nAnswer:",
+ " H × W × C → H × W × C × p"
+ ],
+ [
+ "Question:What is the spatial size transformation achieved by a space-to-channel operation with patch size p?\nAnswer:",
+ " H × W × C → H × W × C/p"
+ ],
+ [
+ "Question:What is the spatial size transformation achieved by a space-to-channel operation with patch size p?\nAnswer:",
+ " H × W × C → H/p × W/p × p²C"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.150129318237305,
+ false
+ ]
+ ],
+ [
+ [
+ -26.66561508178711,
+ false
+ ]
+ ],
+ [
+ [
+ -27.942184448242188,
+ false
+ ]
+ ],
+ [
+ [
+ -39.051551818847656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.150129318237305,
+ false
+ ],
+ [
+ -26.66561508178711,
+ false
+ ],
+ [
+ -27.942184448242188,
+ false
+ ],
+ [
+ -39.051551818847656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "25ffc7f6b36634f85794846fc63aeb02f0c890a4d3d35e7b604c368811d2a9cf",
+ "prompt_hash": "1ae322306035da9cc80a8caba42b88b29c1b6dc891562cb4bba525dec3a06fa1",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "Which two phases are introduced in Decoupled High-Resolution Adaptation?",
+ "choices": [
+ "Encoder normalization and decoder quantization",
+ "GAN loss enhancement and feature scaling",
+ "High-resolution latent adaptation and low-resolution local refinement",
+ "Channel duplication and spatial transformation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which two phases are introduced in Decoupled High-Resolution Adaptation?\nAnswer:",
+ " Encoder normalization and decoder quantization"
+ ],
+ [
+ "Question:Which two phases are introduced in Decoupled High-Resolution Adaptation?\nAnswer:",
+ " GAN loss enhancement and feature scaling"
+ ],
+ [
+ "Question:Which two phases are introduced in Decoupled High-Resolution Adaptation?\nAnswer:",
+ " High-resolution latent adaptation and low-resolution local refinement"
+ ],
+ [
+ "Question:Which two phases are introduced in Decoupled High-Resolution Adaptation?\nAnswer:",
+ " Channel duplication and spatial transformation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.715652465820312,
+ false
+ ]
+ ],
+ [
+ [
+ -38.538726806640625,
+ false
+ ]
+ ],
+ [
+ [
+ -35.780574798583984,
+ false
+ ]
+ ],
+ [
+ [
+ -30.323572158813477,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.715652465820312,
+ false
+ ],
+ [
+ -38.538726806640625,
+ false
+ ],
+ [
+ -35.780574798583984,
+ false
+ ],
+ [
+ -30.323572158813477,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7cd4917e3584db32dc29f1bcb7a01338b6f66d4a3c23c2897d62eb2ba0b5d665",
+ "prompt_hash": "f49fd89b44c51f2256b6192ef803cd071594eb098b14ba90bdebcafa5faf6cb6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "What training memory reduction is achieved by only tuning middle layers in high-resolution latent adaptation?",
+ "choices": [
+ "153.98 GB → 120.25 GB",
+ "200.13 GB → 140.12 GB",
+ "153.98 GB → 67.81 GB",
+ "140.00 GB → 80.00 GB"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What training memory reduction is achieved by only tuning middle layers in high-resolution latent adaptation?\nAnswer:",
+ " 153.98 GB → 120.25 GB"
+ ],
+ [
+ "Question:What training memory reduction is achieved by only tuning middle layers in high-resolution latent adaptation?\nAnswer:",
+ " 200.13 GB → 140.12 GB"
+ ],
+ [
+ "Question:What training memory reduction is achieved by only tuning middle layers in high-resolution latent adaptation?\nAnswer:",
+ " 153.98 GB → 67.81 GB"
+ ],
+ [
+ "Question:What training memory reduction is achieved by only tuning middle layers in high-resolution latent adaptation?\nAnswer:",
+ " 140.00 GB → 80.00 GB"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -44.18997573852539,
+ false
+ ]
+ ],
+ [
+ [
+ -45.250144958496094,
+ false
+ ]
+ ],
+ [
+ [
+ -43.89820861816406,
+ false
+ ]
+ ],
+ [
+ [
+ -36.080284118652344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -44.18997573852539,
+ false
+ ],
+ [
+ -45.250144958496094,
+ false
+ ],
+ [
+ -43.89820861816406,
+ false
+ ],
+ [
+ -36.080284118652344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "af728d846e859bc8fe98595ad94464c81e68849f1617fdb78cbb7531b5f167b0",
+ "prompt_hash": "dd156ffeecceaab48307e7c25ce262230ace1cc11b4e41259a6f26655bd68841",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the name of the unified 3D latent representation introduced for high-quality and versatile 3D generation?",
+ "choices": [
+ "SGrid",
+ "L3V",
+ "SLat",
+ "TriGrid"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the name of the unified 3D latent representation introduced for high-quality and versatile 3D generation?\nAnswer:",
+ " SGrid"
+ ],
+ [
+ "Question:What is the name of the unified 3D latent representation introduced for high-quality and versatile 3D generation?\nAnswer:",
+ " L3V"
+ ],
+ [
+ "Question:What is the name of the unified 3D latent representation introduced for high-quality and versatile 3D generation?\nAnswer:",
+ " SLat"
+ ],
+ [
+ "Question:What is the name of the unified 3D latent representation introduced for high-quality and versatile 3D generation?\nAnswer:",
+ " TriGrid"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.665210723876953,
+ false
+ ]
+ ],
+ [
+ [
+ -16.854995727539062,
+ false
+ ]
+ ],
+ [
+ [
+ -17.398330688476562,
+ false
+ ]
+ ],
+ [
+ [
+ -19.48865509033203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.665210723876953,
+ false
+ ],
+ [
+ -16.854995727539062,
+ false
+ ],
+ [
+ -17.398330688476562,
+ false
+ ],
+ [
+ -19.48865509033203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5a1378da433a686d10f2697fb40675e292d2a3a23fa44c87292e07a172921ff3",
+ "prompt_hash": "0d47ad94d92b2b21763a2bc2df07eb04c63fd5027c567f03eb40d52b5d80b2cf",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "What feature extractor is used to obtain dense multiview image features for voxel encoding?",
+ "choices": [
+ "BLIP-2",
+ "DINOv2",
+ "ResNet-101",
+ "CLIP-ViT"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What feature extractor is used to obtain dense multiview image features for voxel encoding?\nAnswer:",
+ " BLIP-2"
+ ],
+ [
+ "Question:What feature extractor is used to obtain dense multiview image features for voxel encoding?\nAnswer:",
+ " DINOv2"
+ ],
+ [
+ "Question:What feature extractor is used to obtain dense multiview image features for voxel encoding?\nAnswer:",
+ " ResNet-101"
+ ],
+ [
+ "Question:What feature extractor is used to obtain dense multiview image features for voxel encoding?\nAnswer:",
+ " CLIP-ViT"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.284019470214844,
+ false
+ ]
+ ],
+ [
+ [
+ -9.696996688842773,
+ false
+ ]
+ ],
+ [
+ [
+ -8.44223690032959,
+ false
+ ]
+ ],
+ [
+ [
+ -12.002830505371094,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.284019470214844,
+ false
+ ],
+ [
+ -9.696996688842773,
+ false
+ ],
+ [
+ -8.44223690032959,
+ false
+ ],
+ [
+ -12.002830505371094,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e96934a473b554a275ede816541c63cd5494616d166b415e82601c0843e24b6e",
+ "prompt_hash": "c1c2f7472b8a62e734c3275cd145b6cd26bf12ae1b1ccf44037a8c65ff079960",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "Which generative model backbone is used for both sparse structure and latent generation in the system?",
+ "choices": [
+ "Score-based diffusion",
+ "GAN",
+ "Rectified flow transformer",
+ "Autoregressive transformer"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which generative model backbone is used for both sparse structure and latent generation in the system?\nAnswer:",
+ " Score-based diffusion"
+ ],
+ [
+ "Question:Which generative model backbone is used for both sparse structure and latent generation in the system?\nAnswer:",
+ " GAN"
+ ],
+ [
+ "Question:Which generative model backbone is used for both sparse structure and latent generation in the system?\nAnswer:",
+ " Rectified flow transformer"
+ ],
+ [
+ "Question:Which generative model backbone is used for both sparse structure and latent generation in the system?\nAnswer:",
+ " Autoregressive transformer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.934162139892578,
+ false
+ ]
+ ],
+ [
+ [
+ -5.849793910980225,
+ false
+ ]
+ ],
+ [
+ [
+ -21.01681900024414,
+ false
+ ]
+ ],
+ [
+ [
+ -12.349932670593262,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.934162139892578,
+ false
+ ],
+ [
+ -5.849793910980225,
+ false
+ ],
+ [
+ -21.01681900024414,
+ false
+ ],
+ [
+ -12.349932670593262,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1b45060d15021d8cd28bc2f8e98ae5a38b685583bb9a6c4bfb7193c131335722",
+ "prompt_hash": "be6e5a9c1c9350c7465e196c7e2bcb4c4dc3b515cd550f1ad96c2ec00c670510",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "What is the spatial resolution \\(N\\) used for the 3D grid by default?",
+ "choices": [
+ "32",
+ "64",
+ "128",
+ "256"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the spatial resolution \\(N\\) used for the 3D grid by default?\nAnswer:",
+ " 32"
+ ],
+ [
+ "Question:What is the spatial resolution \\(N\\) used for the 3D grid by default?\nAnswer:",
+ " 64"
+ ],
+ [
+ "Question:What is the spatial resolution \\(N\\) used for the 3D grid by default?\nAnswer:",
+ " 128"
+ ],
+ [
+ "Question:What is the spatial resolution \\(N\\) used for the 3D grid by default?\nAnswer:",
+ " 256"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.197124481201172,
+ false
+ ]
+ ],
+ [
+ [
+ -6.435296058654785,
+ false
+ ]
+ ],
+ [
+ [
+ -6.865950584411621,
+ false
+ ]
+ ],
+ [
+ [
+ -6.475897312164307,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.197124481201172,
+ false
+ ],
+ [
+ -6.435296058654785,
+ false
+ ],
+ [
+ -6.865950584411621,
+ false
+ ],
+ [
+ -6.475897312164307,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d50490877f7ccd5e5e02d814da7f2e938813d62193e1f4117c8cce438c7234cb",
+ "prompt_hash": "bcbd24ae96ba7244d49bd9ddbc19a7ae6427842fc507562bd64a258f762ce66c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "Which of the following decoders is used for mesh reconstruction in the system?",
+ "choices": [
+ "D_M",
+ "D_VOX",
+ "D_RAY",
+ "D_TF"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which of the following decoders is used for mesh reconstruction in the system?\nAnswer:",
+ " D_M"
+ ],
+ [
+ "Question:Which of the following decoders is used for mesh reconstruction in the system?\nAnswer:",
+ " D_VOX"
+ ],
+ [
+ "Question:Which of the following decoders is used for mesh reconstruction in the system?\nAnswer:",
+ " D_RAY"
+ ],
+ [
+ "Question:Which of the following decoders is used for mesh reconstruction in the system?\nAnswer:",
+ " D_TF"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.483684539794922,
+ false
+ ]
+ ],
+ [
+ [
+ -26.258501052856445,
+ false
+ ]
+ ],
+ [
+ [
+ -25.92035675048828,
+ false
+ ]
+ ],
+ [
+ [
+ -22.800626754760742,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.483684539794922,
+ false
+ ],
+ [
+ -26.258501052856445,
+ false
+ ],
+ [
+ -25.92035675048828,
+ false
+ ],
+ [
+ -22.800626754760742,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e534474463c0f37930c5a0fd9008d43f34655583bc5fd217a78843877f35846a",
+ "prompt_hash": "070433e36a1850eb09464fa8afa9215b83cd9ff9a6d40b5ccc82d1b8b5d8da30",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "What is the reported average score achieved by \\u201courmodel_seventy\\u201d on the ScreenSpot benchmark?",
+ "choices": [
+ "84.4",
+ "89.2",
+ "73.3",
+ "76.8"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the reported average score achieved by \\u201courmodel_seventy\\u201d on the ScreenSpot benchmark?\nAnswer:",
+ " 84.4"
+ ],
+ [
+ "Question:What is the reported average score achieved by \\u201courmodel_seventy\\u201d on the ScreenSpot benchmark?\nAnswer:",
+ " 89.2"
+ ],
+ [
+ "Question:What is the reported average score achieved by \\u201courmodel_seventy\\u201d on the ScreenSpot benchmark?\nAnswer:",
+ " 73.3"
+ ],
+ [
+ "Question:What is the reported average score achieved by \\u201courmodel_seventy\\u201d on the ScreenSpot benchmark?\nAnswer:",
+ " 76.8"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.227763175964355,
+ false
+ ]
+ ],
+ [
+ [
+ -9.165584564208984,
+ false
+ ]
+ ],
+ [
+ [
+ -8.776387214660645,
+ false
+ ]
+ ],
+ [
+ [
+ -8.844454765319824,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.227763175964355,
+ false
+ ],
+ [
+ -9.165584564208984,
+ false
+ ],
+ [
+ -8.776387214660645,
+ false
+ ],
+ [
+ -8.844454765319824,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f1ef90d0901cc019b09604c215800d09deb76f4fce970af32fa012d4bda1094d",
+ "prompt_hash": "b4ecc71356503463c7e8e5b12918e8535ffb70ede8ec9ababf4468a00f26cd8e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "What is the size of the maximum image resolution used in training for the \\u201courmodel\\u201d based on Qwen2-VL?",
+ "choices": [
+ "640×480",
+ "1920×1080",
+ "1280×720",
+ "1024×768"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the size of the maximum image resolution used in training for the \\u201courmodel\\u201d based on Qwen2-VL?\nAnswer:",
+ " 640×480"
+ ],
+ [
+ "Question:What is the size of the maximum image resolution used in training for the \\u201courmodel\\u201d based on Qwen2-VL?\nAnswer:",
+ " 1920×1080"
+ ],
+ [
+ "Question:What is the size of the maximum image resolution used in training for the \\u201courmodel\\u201d based on Qwen2-VL?\nAnswer:",
+ " 1280×720"
+ ],
+ [
+ "Question:What is the size of the maximum image resolution used in training for the \\u201courmodel\\u201d based on Qwen2-VL?\nAnswer:",
+ " 1024×768"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.18001937866211,
+ false
+ ]
+ ],
+ [
+ [
+ -8.207080841064453,
+ false
+ ]
+ ],
+ [
+ [
+ -9.514692306518555,
+ false
+ ]
+ ],
+ [
+ [
+ -11.493572235107422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.18001937866211,
+ false
+ ],
+ [
+ -8.207080841064453,
+ false
+ ],
+ [
+ -9.514692306518555,
+ false
+ ],
+ [
+ -11.493572235107422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6c86036b2efee248772c47c80c0e7d8960f6e1edd59157a83c674d3c98ec2ffc",
+ "prompt_hash": "8f52ebfcde451b7fdd05bae03e86688369d55e09c962e56d62c204d19857e9e2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "Which optimizer is used during both grounding and planning & reasoning stages of training in \\u201courmodel\\u201d?",
+ "choices": [
+ "SGD",
+ "AdamW",
+ "Adagrad",
+ "Adam"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which optimizer is used during both grounding and planning & reasoning stages of training in \\u201courmodel\\u201d?\nAnswer:",
+ " SGD"
+ ],
+ [
+ "Question:Which optimizer is used during both grounding and planning & reasoning stages of training in \\u201courmodel\\u201d?\nAnswer:",
+ " AdamW"
+ ],
+ [
+ "Question:Which optimizer is used during both grounding and planning & reasoning stages of training in \\u201courmodel\\u201d?\nAnswer:",
+ " Adagrad"
+ ],
+ [
+ "Question:Which optimizer is used during both grounding and planning & reasoning stages of training in \\u201courmodel\\u201d?\nAnswer:",
+ " Adam"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.89684772491455,
+ false
+ ]
+ ],
+ [
+ [
+ -9.045333862304688,
+ false
+ ]
+ ],
+ [
+ [
+ -10.55221939086914,
+ false
+ ]
+ ],
+ [
+ [
+ -7.798964500427246,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.89684772491455,
+ false
+ ],
+ [
+ -9.045333862304688,
+ false
+ ],
+ [
+ -10.55221939086914,
+ false
+ ],
+ [
+ -7.798964500427246,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "49d0c304b4d86989d7176eb9b03c67d8e9f2867130b2a9e18b3c2632098c65b0",
+ "prompt_hash": "6c8f418c422b9f039d8337b057684c0005f7595084143185dfa78bdfe859bd1c",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "Which library is used to define the action space for GUI interactions in \\u201courmodel\\u201d?",
+ "choices": [
+ "pyautogui",
+ "AutoGUI",
+ "GUIBot",
+ "ClickSim"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which library is used to define the action space for GUI interactions in \\u201courmodel\\u201d?\nAnswer:",
+ " pyautogui"
+ ],
+ [
+ "Question:Which library is used to define the action space for GUI interactions in \\u201courmodel\\u201d?\nAnswer:",
+ " AutoGUI"
+ ],
+ [
+ "Question:Which library is used to define the action space for GUI interactions in \\u201courmodel\\u201d?\nAnswer:",
+ " GUIBot"
+ ],
+ [
+ "Question:Which library is used to define the action space for GUI interactions in \\u201courmodel\\u201d?\nAnswer:",
+ " ClickSim"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.957494258880615,
+ false
+ ]
+ ],
+ [
+ [
+ -11.325507164001465,
+ false
+ ]
+ ],
+ [
+ [
+ -13.621036529541016,
+ false
+ ]
+ ],
+ [
+ [
+ -16.671112060546875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.957494258880615,
+ false
+ ],
+ [
+ -11.325507164001465,
+ false
+ ],
+ [
+ -13.621036529541016,
+ false
+ ],
+ [
+ -16.671112060546875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e96c42121ea4e7d63d546c0cd0d6400156dd0ccdd4043855058c00b19a01e5bf",
+ "prompt_hash": "5437c334871cc325979a5ecc62b853a6c6f26b690d83bb26d6ac28ad91e078e5",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "What percentage of the VLM-augmented data demonstrated reasoning aligned with the ground truth actions?",
+ "choices": [
+ "100.0%",
+ "86.7%",
+ "73.3%",
+ "69.1%"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What percentage of the VLM-augmented data demonstrated reasoning aligned with the ground truth actions?\nAnswer:",
+ " 100.0%"
+ ],
+ [
+ "Question:What percentage of the VLM-augmented data demonstrated reasoning aligned with the ground truth actions?\nAnswer:",
+ " 86.7%"
+ ],
+ [
+ "Question:What percentage of the VLM-augmented data demonstrated reasoning aligned with the ground truth actions?\nAnswer:",
+ " 73.3%"
+ ],
+ [
+ "Question:What percentage of the VLM-augmented data demonstrated reasoning aligned with the ground truth actions?\nAnswer:",
+ " 69.1%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.460718154907227,
+ false
+ ]
+ ],
+ [
+ [
+ -13.723543167114258,
+ false
+ ]
+ ],
+ [
+ [
+ -14.070109367370605,
+ false
+ ]
+ ],
+ [
+ [
+ -14.8775634765625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.460718154907227,
+ false
+ ],
+ [
+ -13.723543167114258,
+ false
+ ],
+ [
+ -14.070109367370605,
+ false
+ ],
+ [
+ -14.8775634765625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e59a404830a3106826ab0ac1727aef22d1841747e7df05842398f8fc43994d56",
+ "prompt_hash": "9e330cafc36b6840b165876dc66e0e0b46f46359811fc02c030d84aa3c6f97c2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What does the label '-1' represent in ProcessBench annotations?",
+ "choices": [
+ "An unannotated solution",
+ "An unknown error location",
+ "All steps are correct",
+ "The last step contains an error"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the label '-1' represent in ProcessBench annotations?\nAnswer:",
+ " An unannotated solution"
+ ],
+ [
+ "Question:What does the label '-1' represent in ProcessBench annotations?\nAnswer:",
+ " An unknown error location"
+ ],
+ [
+ "Question:What does the label '-1' represent in ProcessBench annotations?\nAnswer:",
+ " All steps are correct"
+ ],
+ [
+ "Question:What does the label '-1' represent in ProcessBench annotations?\nAnswer:",
+ " The last step contains an error"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.73881721496582,
+ false
+ ]
+ ],
+ [
+ [
+ -20.58074951171875,
+ false
+ ]
+ ],
+ [
+ [
+ -20.956787109375,
+ false
+ ]
+ ],
+ [
+ [
+ -24.043302536010742,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.73881721496582,
+ false
+ ],
+ [
+ -20.58074951171875,
+ false
+ ],
+ [
+ -20.956787109375,
+ false
+ ],
+ [
+ -24.043302536010742,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d81f82f7639a0be8bc4b85a80a94315bcdc9e3b99b78de0978d7b873f26642f2",
+ "prompt_hash": "51a9210e20e8a0ad799271150107d0b574def63b223e7dac118e95d62d95c0b1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "How many test cases are included in ProcessBench?",
+ "choices": [
+ "340",
+ "900",
+ "3,400",
+ "10,000"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many test cases are included in ProcessBench?\nAnswer:",
+ " 340"
+ ],
+ [
+ "Question:How many test cases are included in ProcessBench?\nAnswer:",
+ " 900"
+ ],
+ [
+ "Question:How many test cases are included in ProcessBench?\nAnswer:",
+ " 3,400"
+ ],
+ [
+ "Question:How many test cases are included in ProcessBench?\nAnswer:",
+ " 10,000"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.498233795166016,
+ false
+ ]
+ ],
+ [
+ [
+ -7.434574604034424,
+ false
+ ]
+ ],
+ [
+ [
+ -10.982316970825195,
+ false
+ ]
+ ],
+ [
+ [
+ -6.928005218505859,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.498233795166016,
+ false
+ ],
+ [
+ -7.434574604034424,
+ false
+ ],
+ [
+ -10.982316970825195,
+ false
+ ],
+ [
+ -6.928005218505859,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "23e6f678a4001a4b74bd418e2d69507bb57a4cdb26edbc02fa7c659a5b1b26a2",
+ "prompt_hash": "0f5c13270611c2185277a2cce5e28c1c28bae98990768af3cab31f3899afce50",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "Which model performed best among open-source critic models on ProcessBench?",
+ "choices": [
+ "GPT-4o",
+ "Qwen2.5-72B-Instruct",
+ "o1-mini",
+ "QwQ-32B-Preview"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which model performed best among open-source critic models on ProcessBench?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which model performed best among open-source critic models on ProcessBench?\nAnswer:",
+ " Qwen2.5-72B-Instruct"
+ ],
+ [
+ "Question:Which model performed best among open-source critic models on ProcessBench?\nAnswer:",
+ " o1-mini"
+ ],
+ [
+ "Question:Which model performed best among open-source critic models on ProcessBench?\nAnswer:",
+ " QwQ-32B-Preview"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.594659805297852,
+ false
+ ]
+ ],
+ [
+ [
+ -25.486377716064453,
+ false
+ ]
+ ],
+ [
+ [
+ -25.963836669921875,
+ false
+ ]
+ ],
+ [
+ [
+ -40.314979553222656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.594659805297852,
+ false
+ ],
+ [
+ -25.486377716064453,
+ false
+ ],
+ [
+ -25.963836669921875,
+ false
+ ],
+ [
+ -40.314979553222656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f021da4d72135e75b5f7090bbadbfd12821415293dfd81557a63ba495d1b54c1",
+ "prompt_hash": "4c0aa1feb381c4a91d1a6c1ab4b7cb208273aa06c11f892c832523a56a691200",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "What percentage of correct-final-answer samples in the Omni-MATH subset were found to contain process errors?",
+ "choices": [
+ "18.8%",
+ "51.8%",
+ "32.2%",
+ "3.5%"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What percentage of correct-final-answer samples in the Omni-MATH subset were found to contain process errors?\nAnswer:",
+ " 18.8%"
+ ],
+ [
+ "Question:What percentage of correct-final-answer samples in the Omni-MATH subset were found to contain process errors?\nAnswer:",
+ " 51.8%"
+ ],
+ [
+ "Question:What percentage of correct-final-answer samples in the Omni-MATH subset were found to contain process errors?\nAnswer:",
+ " 32.2%"
+ ],
+ [
+ "Question:What percentage of correct-final-answer samples in the Omni-MATH subset were found to contain process errors?\nAnswer:",
+ " 3.5%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.144298553466797,
+ false
+ ]
+ ],
+ [
+ [
+ -14.681442260742188,
+ false
+ ]
+ ],
+ [
+ [
+ -13.373123168945312,
+ false
+ ]
+ ],
+ [
+ [
+ -11.562744140625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.144298553466797,
+ false
+ ],
+ [
+ -14.681442260742188,
+ false
+ ],
+ [
+ -13.373123168945312,
+ false
+ ],
+ [
+ -11.562744140625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f2f44a6dff115a03a0fcdede85139c504c4bdab2ad8e614b7e727f68fb1e97c4",
+ "prompt_hash": "a36d099e12d6b15e9accfdc2cc42011450d20b33e587a6098c3a2078e7aac382",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "Which of the following datasets did ProcessBench use for collecting math problems?",
+ "choices": [
+ "GSM8K, MATH, MathQA, and PRM800K",
+ "MathCheck, CriticBench, OlympiadBench, and PRM800K",
+ "GSM8K, MATH, OlympiadBench, and Omni-MATH",
+ "GSM8K, MathQA, Omni-MATH, and MathCheck"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which of the following datasets did ProcessBench use for collecting math problems?\nAnswer:",
+ " GSM8K, MATH, MathQA, and PRM800K"
+ ],
+ [
+ "Question:Which of the following datasets did ProcessBench use for collecting math problems?\nAnswer:",
+ " MathCheck, CriticBench, OlympiadBench, and PRM800K"
+ ],
+ [
+ "Question:Which of the following datasets did ProcessBench use for collecting math problems?\nAnswer:",
+ " GSM8K, MATH, OlympiadBench, and Omni-MATH"
+ ],
+ [
+ "Question:Which of the following datasets did ProcessBench use for collecting math problems?\nAnswer:",
+ " GSM8K, MathQA, Omni-MATH, and MathCheck"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -44.59968185424805,
+ false
+ ]
+ ],
+ [
+ [
+ -76.28559875488281,
+ false
+ ]
+ ],
+ [
+ [
+ -47.2714958190918,
+ false
+ ]
+ ],
+ [
+ [
+ -52.573638916015625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -44.59968185424805,
+ false
+ ],
+ [
+ -76.28559875488281,
+ false
+ ],
+ [
+ -47.2714958190918,
+ false
+ ],
+ [
+ -52.573638916015625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e6c19212f19934bb2aa9004cce60d83ee13da5c3e9fa5b0d88c0f3c1bd43afd0",
+ "prompt_hash": "dacac9610f23795e9e30fcbd265932ce39256eee2a8470754f66b3b38e247b20",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "Which component does \\u0001ours use to estimate depth maps for egocentric 3D position encoding?",
+ "choices": [
+ "DINO Depth",
+ "ZoeDepth",
+ "MiDaS",
+ "TartanAir"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which component does \\u0001ours use to estimate depth maps for egocentric 3D position encoding?\nAnswer:",
+ " DINO Depth"
+ ],
+ [
+ "Question:Which component does \\u0001ours use to estimate depth maps for egocentric 3D position encoding?\nAnswer:",
+ " ZoeDepth"
+ ],
+ [
+ "Question:Which component does \\u0001ours use to estimate depth maps for egocentric 3D position encoding?\nAnswer:",
+ " MiDaS"
+ ],
+ [
+ "Question:Which component does \\u0001ours use to estimate depth maps for egocentric 3D position encoding?\nAnswer:",
+ " TartanAir"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.287338256835938,
+ false
+ ]
+ ],
+ [
+ [
+ -10.234851837158203,
+ false
+ ]
+ ],
+ [
+ [
+ -13.456938743591309,
+ false
+ ]
+ ],
+ [
+ [
+ -14.315774917602539,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.287338256835938,
+ false
+ ],
+ [
+ -10.234851837158203,
+ false
+ ],
+ [
+ -13.456938743591309,
+ false
+ ],
+ [
+ -14.315774917602539,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f03553c8414f2c255f849fafd78c93f497f1ca81bbb2b73a19c7585393cf9fa3",
+ "prompt_hash": "3614ffb236e74e0256cce4ceb2987d4f3b80b8fcfbbd3c6efc447b74c0007627",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "How many spatial action tokens does \\u0001ours need to generate per step compared to RT-1 or RT-2?",
+ "choices": [
+ "5",
+ "3",
+ "7",
+ "9"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many spatial action tokens does \\u0001ours need to generate per step compared to RT-1 or RT-2?\nAnswer:",
+ " 5"
+ ],
+ [
+ "Question:How many spatial action tokens does \\u0001ours need to generate per step compared to RT-1 or RT-2?\nAnswer:",
+ " 3"
+ ],
+ [
+ "Question:How many spatial action tokens does \\u0001ours need to generate per step compared to RT-1 or RT-2?\nAnswer:",
+ " 7"
+ ],
+ [
+ "Question:How many spatial action tokens does \\u0001ours need to generate per step compared to RT-1 or RT-2?\nAnswer:",
+ " 9"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.411394119262695,
+ false
+ ]
+ ],
+ [
+ [
+ -4.737496376037598,
+ false
+ ]
+ ],
+ [
+ [
+ -5.911707878112793,
+ false
+ ]
+ ],
+ [
+ [
+ -6.342985153198242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.411394119262695,
+ false
+ ],
+ [
+ -4.737496376037598,
+ false
+ ],
+ [
+ -5.911707878112793,
+ false
+ ],
+ [
+ -6.342985153198242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9e86881ae2da152bb16a5080574c2e8c001e40ff924091fc5218d8caa9a7bfe0",
+ "prompt_hash": "97697f6de7b293025f978b6749c03e9547c9cd9542d22201a3beaf989fd3d065",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "What is the total number of discrete spatial action tokens in \\u0001ours?",
+ "choices": [
+ "2048",
+ "4096",
+ "8194",
+ "1024"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the total number of discrete spatial action tokens in \\u0001ours?\nAnswer:",
+ " 2048"
+ ],
+ [
+ "Question:What is the total number of discrete spatial action tokens in \\u0001ours?\nAnswer:",
+ " 4096"
+ ],
+ [
+ "Question:What is the total number of discrete spatial action tokens in \\u0001ours?\nAnswer:",
+ " 8194"
+ ],
+ [
+ "Question:What is the total number of discrete spatial action tokens in \\u0001ours?\nAnswer:",
+ " 1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.853431701660156,
+ false
+ ]
+ ],
+ [
+ [
+ -8.544597625732422,
+ false
+ ]
+ ],
+ [
+ [
+ -13.578493118286133,
+ false
+ ]
+ ],
+ [
+ [
+ -7.857716083526611,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.853431701660156,
+ false
+ ],
+ [
+ -8.544597625732422,
+ false
+ ],
+ [
+ -13.578493118286133,
+ false
+ ],
+ [
+ -7.857716083526611,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1ed9c1ba6f60d98e1992a6c6f3f6d1418333824858b8f8f197036df3ab7f19b8",
+ "prompt_hash": "e99fe636550aa13962634f0108a1aec5b015687d06f0852f141d60ca9cf91f4e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "Which datasets are used in the pre-training of \\u0001ours?",
+ "choices": [
+ "DROID and LIBERO",
+ "OXE and RH20T",
+ "BridgeV2 and LEO",
+ "Fractal and OpenAI Gym"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which datasets are used in the pre-training of \\u0001ours?\nAnswer:",
+ " DROID and LIBERO"
+ ],
+ [
+ "Question:Which datasets are used in the pre-training of \\u0001ours?\nAnswer:",
+ " OXE and RH20T"
+ ],
+ [
+ "Question:Which datasets are used in the pre-training of \\u0001ours?\nAnswer:",
+ " BridgeV2 and LEO"
+ ],
+ [
+ "Question:Which datasets are used in the pre-training of \\u0001ours?\nAnswer:",
+ " Fractal and OpenAI Gym"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -31.839134216308594,
+ false
+ ]
+ ],
+ [
+ [
+ -51.3173942565918,
+ false
+ ]
+ ],
+ [
+ [
+ -38.80512237548828,
+ false
+ ]
+ ],
+ [
+ [
+ -41.029640197753906,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -31.839134216308594,
+ false
+ ],
+ [
+ -51.3173942565918,
+ false
+ ],
+ [
+ -38.80512237548828,
+ false
+ ],
+ [
+ -41.029640197753906,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "57cbe54e770663520471c9144dc4df8c9bef759307c1ccafd9edfe16ce349dbe",
+ "prompt_hash": "dd5741527b23f3dc91a1eb8122dcf302d41c410aa0d6d726b38db6138e8c38ba",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "Which visual encoder is used in \\u0001ours to extract 2D semantic visual features?",
+ "choices": [
+ "DINOv2",
+ "ResNet50",
+ "SigLIP",
+ "CLIP ViT-B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which visual encoder is used in \\u0001ours to extract 2D semantic visual features?\nAnswer:",
+ " DINOv2"
+ ],
+ [
+ "Question:Which visual encoder is used in \\u0001ours to extract 2D semantic visual features?\nAnswer:",
+ " ResNet50"
+ ],
+ [
+ "Question:Which visual encoder is used in \\u0001ours to extract 2D semantic visual features?\nAnswer:",
+ " SigLIP"
+ ],
+ [
+ "Question:Which visual encoder is used in \\u0001ours to extract 2D semantic visual features?\nAnswer:",
+ " CLIP ViT-B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.798029899597168,
+ false
+ ]
+ ],
+ [
+ [
+ -5.83260440826416,
+ false
+ ]
+ ],
+ [
+ [
+ -12.174582481384277,
+ false
+ ]
+ ],
+ [
+ [
+ -12.013408660888672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.798029899597168,
+ false
+ ],
+ [
+ -5.83260440826416,
+ false
+ ],
+ [
+ -12.174582481384277,
+ false
+ ],
+ [
+ -12.013408660888672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "65c3953071656135cde4dce8b77da384137fdf1ce51ef3c5a911592a4f8d0fd6",
+ "prompt_hash": "ffb10f2acd160925ad4f1208a5afabbcf9382d0a15e9552c8e22adc3e12a636c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What is the reward for generating a correct equation in the GeneralPoints environment?",
+ "choices": [
+ "A. 1",
+ "B. 3",
+ "C. 5",
+ "D. 10"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the reward for generating a correct equation in the GeneralPoints environment?\nAnswer:",
+ " A. 1"
+ ],
+ [
+ "Question:What is the reward for generating a correct equation in the GeneralPoints environment?\nAnswer:",
+ " B. 3"
+ ],
+ [
+ "Question:What is the reward for generating a correct equation in the GeneralPoints environment?\nAnswer:",
+ " C. 5"
+ ],
+ [
+ "Question:What is the reward for generating a correct equation in the GeneralPoints environment?\nAnswer:",
+ " D. 10"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.028443336486816,
+ false
+ ]
+ ],
+ [
+ [
+ -16.293033599853516,
+ false
+ ]
+ ],
+ [
+ [
+ -16.394725799560547,
+ false
+ ]
+ ],
+ [
+ [
+ -17.32457733154297,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.028443336486816,
+ false
+ ],
+ [
+ -16.293033599853516,
+ false
+ ],
+ [
+ -16.394725799560547,
+ false
+ ],
+ [
+ -17.32457733154297,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8e9c0335f0624acc15e5bbcf249e847b84e55cc8a2314c7bfe9448c980b714a0",
+ "prompt_hash": "b16d25bf0e4b92fc5dbcd890ad029d3f9d0dcb1f5d73902b13a4942a6000a855",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "Which cities are included in the VLN mini benchmark used for visual out-of-distribution evaluation in V-IRL?",
+ "choices": [
+ "A. Paris, Berlin, Tokyo, Rome",
+ "B. Milan, New Delhi, Buenos Aires, London",
+ "C. Chicago, Toronto, Dubai, Singapore",
+ "D. Cairo, Osaka, Madrid, Lisbon"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which cities are included in the VLN mini benchmark used for visual out-of-distribution evaluation in V-IRL?\nAnswer:",
+ " A. Paris, Berlin, Tokyo, Rome"
+ ],
+ [
+ "Question:Which cities are included in the VLN mini benchmark used for visual out-of-distribution evaluation in V-IRL?\nAnswer:",
+ " B. Milan, New Delhi, Buenos Aires, London"
+ ],
+ [
+ "Question:Which cities are included in the VLN mini benchmark used for visual out-of-distribution evaluation in V-IRL?\nAnswer:",
+ " C. Chicago, Toronto, Dubai, Singapore"
+ ],
+ [
+ "Question:Which cities are included in the VLN mini benchmark used for visual out-of-distribution evaluation in V-IRL?\nAnswer:",
+ " D. Cairo, Osaka, Madrid, Lisbon"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.892391204833984,
+ false
+ ]
+ ],
+ [
+ [
+ -34.85063934326172,
+ false
+ ]
+ ],
+ [
+ [
+ -32.34565353393555,
+ false
+ ]
+ ],
+ [
+ [
+ -41.66539001464844,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.892391204833984,
+ false
+ ],
+ [
+ -34.85063934326172,
+ false
+ ],
+ [
+ -32.34565353393555,
+ false
+ ],
+ [
+ -41.66539001464844,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "289e8f2e4640d25d72a93eda6a08ef46e57ac687aabe59d4afb5e9cdfa1753c3",
+ "prompt_hash": "ce1d5d864ee48c69c2af5f41b46f305fdf805aa42d2881475e827a81eb578d55",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "What are the two rule variants used in the GeneralPoints environment for face card interpretation?",
+ "choices": [
+ "A. J=10, Q=11, K=12 and J=11, Q=12, K=13",
+ "B. All face cards count as 10 and J=11, Q=12, K=13",
+ "C. J=10, Q=10, K=10 and J=12, Q=11, K=13",
+ "D. J=13, Q=12, K=11 and J=10, Q=10, K=10"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What are the two rule variants used in the GeneralPoints environment for face card interpretation?\nAnswer:",
+ " A. J=10, Q=11, K=12 and J=11, Q=12, K=13"
+ ],
+ [
+ "Question:What are the two rule variants used in the GeneralPoints environment for face card interpretation?\nAnswer:",
+ " B. All face cards count as 10 and J=11, Q=12, K=13"
+ ],
+ [
+ "Question:What are the two rule variants used in the GeneralPoints environment for face card interpretation?\nAnswer:",
+ " C. J=10, Q=10, K=10 and J=12, Q=11, K=13"
+ ],
+ [
+ "Question:What are the two rule variants used in the GeneralPoints environment for face card interpretation?\nAnswer:",
+ " D. J=13, Q=12, K=11 and J=10, Q=10, K=10"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -45.17156219482422,
+ false
+ ]
+ ],
+ [
+ [
+ -50.63115692138672,
+ false
+ ]
+ ],
+ [
+ [
+ -57.36191940307617,
+ false
+ ]
+ ],
+ [
+ [
+ -56.04535675048828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -45.17156219482422,
+ false
+ ],
+ [
+ -50.63115692138672,
+ false
+ ],
+ [
+ -57.36191940307617,
+ false
+ ],
+ [
+ -56.04535675048828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7f41e9cc380f8af10d82b6966a19fbf50ab2cfb953133e3fd71b24a02b0c4753",
+ "prompt_hash": "654d930b0de6f9c55ac558f6d9f04a5cb66bced9698b8a01fc71eb2f0c408391",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "In the V-IRL environment, what action space is used during training and in-domain evaluation?",
+ "choices": [
+ "A. Relative direction",
+ "B. Cardinal and intercardinal directions",
+ "C. Absolute direction",
+ "D. Landmark-based navigation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the V-IRL environment, what action space is used during training and in-domain evaluation?\nAnswer:",
+ " A. Relative direction"
+ ],
+ [
+ "Question:In the V-IRL environment, what action space is used during training and in-domain evaluation?\nAnswer:",
+ " B. Cardinal and intercardinal directions"
+ ],
+ [
+ "Question:In the V-IRL environment, what action space is used during training and in-domain evaluation?\nAnswer:",
+ " C. Absolute direction"
+ ],
+ [
+ "Question:In the V-IRL environment, what action space is used during training and in-domain evaluation?\nAnswer:",
+ " D. Landmark-based navigation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.0552921295166,
+ false
+ ]
+ ],
+ [
+ [
+ -38.2896728515625,
+ false
+ ]
+ ],
+ [
+ [
+ -26.411094665527344,
+ false
+ ]
+ ],
+ [
+ [
+ -28.864063262939453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.0552921295166,
+ false
+ ],
+ [
+ -38.2896728515625,
+ false
+ ],
+ [
+ -26.411094665527344,
+ false
+ ],
+ [
+ -28.864063262939453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8cf5317b52f7da1f83552f3d436a307b340f2e62365eb1dc74692498ac190839",
+ "prompt_hash": "7263d9e1974bcccb59fd97b4551cb0584e2ad2640eaa6c0974c65ae5c614e408",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "What is the default target number in the GeneralPoints card game task?",
+ "choices": [
+ "A. 21",
+ "B. 10",
+ "C. 24",
+ "D. 30"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the default target number in the GeneralPoints card game task?\nAnswer:",
+ " A. 21"
+ ],
+ [
+ "Question:What is the default target number in the GeneralPoints card game task?\nAnswer:",
+ " B. 10"
+ ],
+ [
+ "Question:What is the default target number in the GeneralPoints card game task?\nAnswer:",
+ " C. 24"
+ ],
+ [
+ "Question:What is the default target number in the GeneralPoints card game task?\nAnswer:",
+ " D. 30"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.293159484863281,
+ false
+ ]
+ ],
+ [
+ [
+ -15.231821060180664,
+ false
+ ]
+ ],
+ [
+ [
+ -18.189205169677734,
+ false
+ ]
+ ],
+ [
+ [
+ -17.040863037109375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.293159484863281,
+ false
+ ],
+ [
+ -15.231821060180664,
+ false
+ ],
+ [
+ -18.189205169677734,
+ false
+ ],
+ [
+ -17.040863037109375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "86cc9c0fa48e47ab1d35eee9f1fa0d2de90b20725ec016fb7667a9fe48bdbc42",
+ "prompt_hash": "a4ffa74a7e212c49fadddf8722a4ceb1e00717fac29304c658268203753b2f4b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "Which models were evaluated using the proposed method?",
+ "choices": [
+ "DeepSeek-R1-Distill-Qwen-1.5B and DeepSeek-R1-Distill-Qwen-7B",
+ "GPT-3.5 and LLaMA-2",
+ "Gemini 2.0 and Mistral-7B",
+ "Claude 3 and PaLM 2"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which models were evaluated using the proposed method?\nAnswer:",
+ " DeepSeek-R1-Distill-Qwen-1.5B and DeepSeek-R1-Distill-Qwen-7B"
+ ],
+ [
+ "Question:Which models were evaluated using the proposed method?\nAnswer:",
+ " GPT-3.5 and LLaMA-2"
+ ],
+ [
+ "Question:Which models were evaluated using the proposed method?\nAnswer:",
+ " Gemini 2.0 and Mistral-7B"
+ ],
+ [
+ "Question:Which models were evaluated using the proposed method?\nAnswer:",
+ " Claude 3 and PaLM 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -60.323970794677734,
+ false
+ ]
+ ],
+ [
+ [
+ -18.78097915649414,
+ false
+ ]
+ ],
+ [
+ [
+ -29.06991195678711,
+ false
+ ]
+ ],
+ [
+ [
+ -21.35833740234375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -60.323970794677734,
+ false
+ ],
+ [
+ -18.78097915649414,
+ false
+ ],
+ [
+ -29.06991195678711,
+ false
+ ],
+ [
+ -21.35833740234375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "34e50e51aafe4f09eb689aeb8b6d1ec0ef86b3cf415c993c2660e6938efb1972",
+ "prompt_hash": "4f39816aebcacbe8720600f6a321bd6addabac0bc1b24ddb5574b4b48ba9c802",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "What does the scalar coefficient \\\\( \\\\alpha \\\\) control in the training procedure?",
+ "choices": [
+ "Model size",
+ "Sampling temperature",
+ "Reduction in inference compute",
+ "Learning rate decay"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the scalar coefficient \\\\( \\\\alpha \\\\) control in the training procedure?\nAnswer:",
+ " Model size"
+ ],
+ [
+ "Question:What does the scalar coefficient \\\\( \\\\alpha \\\\) control in the training procedure?\nAnswer:",
+ " Sampling temperature"
+ ],
+ [
+ "Question:What does the scalar coefficient \\\\( \\\\alpha \\\\) control in the training procedure?\nAnswer:",
+ " Reduction in inference compute"
+ ],
+ [
+ "Question:What does the scalar coefficient \\\\( \\\\alpha \\\\) control in the training procedure?\nAnswer:",
+ " Learning rate decay"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.3158597946167,
+ false
+ ]
+ ],
+ [
+ [
+ -17.898887634277344,
+ false
+ ]
+ ],
+ [
+ [
+ -26.232494354248047,
+ false
+ ]
+ ],
+ [
+ [
+ -13.008953094482422,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.3158597946167,
+ false
+ ],
+ [
+ -17.898887634277344,
+ false
+ ],
+ [
+ -26.232494354248047,
+ false
+ ],
+ [
+ -13.008953094482422,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9eddb33cf7de6319649a27bd6d3df05b95b8d52c8589c9f1472c79e608ad9467",
+ "prompt_hash": "0f52c4eea2e06febd3ed8f2f8c629ecbffd940ce1564eb73536fd4f4baf3763a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "What is the function of the reward model \\\\( f(x, y) \\\\) in math problem evaluation?",
+ "choices": [
+ "It computes the BLEU score.",
+ "It checks string similarity.",
+ "It evaluates correctness of the solution.",
+ "It estimates semantic coherence."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the function of the reward model \\\\( f(x, y) \\\\) in math problem evaluation?\nAnswer:",
+ " It computes the BLEU score."
+ ],
+ [
+ "Question:What is the function of the reward model \\\\( f(x, y) \\\\) in math problem evaluation?\nAnswer:",
+ " It checks string similarity."
+ ],
+ [
+ "Question:What is the function of the reward model \\\\( f(x, y) \\\\) in math problem evaluation?\nAnswer:",
+ " It evaluates correctness of the solution."
+ ],
+ [
+ "Question:What is the function of the reward model \\\\( f(x, y) \\\\) in math problem evaluation?\nAnswer:",
+ " It estimates semantic coherence."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.746015548706055,
+ false
+ ]
+ ],
+ [
+ [
+ -26.935951232910156,
+ false
+ ]
+ ],
+ [
+ [
+ -19.154632568359375,
+ false
+ ]
+ ],
+ [
+ [
+ -30.081581115722656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.746015548706055,
+ false
+ ],
+ [
+ -26.935951232910156,
+ false
+ ],
+ [
+ -19.154632568359375,
+ false
+ ],
+ [
+ -30.081581115722656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f6cb854796d7d4d3d7d353961bce2c059423263d041db14b680b2bf6a5c7c3b4",
+ "prompt_hash": "5d73349f5020205f1d2886894e401b5f01aa6ccb801d5497d09c3fa3dd65faa8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "What kind of estimator is used to compute advantage during policy optimization?",
+ "choices": [
+ "REINFORCE Leave One Out (RLOO)",
+ "Gradient Descent Estimator",
+ "Bayesian Monte Carlo Estimator",
+ "Advantage-weighted Regression"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What kind of estimator is used to compute advantage during policy optimization?\nAnswer:",
+ " REINFORCE Leave One Out (RLOO)"
+ ],
+ [
+ "Question:What kind of estimator is used to compute advantage during policy optimization?\nAnswer:",
+ " Gradient Descent Estimator"
+ ],
+ [
+ "Question:What kind of estimator is used to compute advantage during policy optimization?\nAnswer:",
+ " Bayesian Monte Carlo Estimator"
+ ],
+ [
+ "Question:What kind of estimator is used to compute advantage during policy optimization?\nAnswer:",
+ " Advantage-weighted Regression"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.409957885742188,
+ false
+ ]
+ ],
+ [
+ [
+ -14.881266593933105,
+ false
+ ]
+ ],
+ [
+ [
+ -17.96939468383789,
+ false
+ ]
+ ],
+ [
+ [
+ -25.88566780090332,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.409957885742188,
+ false
+ ],
+ [
+ -14.881266593933105,
+ false
+ ],
+ [
+ -17.96939468383789,
+ false
+ ],
+ [
+ -25.88566780090332,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "10747a28b28a1e7ef9124e537c31a63863c60c3cae3922dbd6de310d1e588abc",
+ "prompt_hash": "64a7fd03cdf7154d2aa4449cd06d2c9f96a77cf9c80f6ec12b4294b166e6a6fc",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "What happens when the advantage function is normalized during training?",
+ "choices": [
+ "Response length slightly increases",
+ "Token usage remains unchanged",
+ "Response length decreases rapidly with accuracy drop",
+ "Model refuses to generate output"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What happens when the advantage function is normalized during training?\nAnswer:",
+ " Response length slightly increases"
+ ],
+ [
+ "Question:What happens when the advantage function is normalized during training?\nAnswer:",
+ " Token usage remains unchanged"
+ ],
+ [
+ "Question:What happens when the advantage function is normalized during training?\nAnswer:",
+ " Response length decreases rapidly with accuracy drop"
+ ],
+ [
+ "Question:What happens when the advantage function is normalized during training?\nAnswer:",
+ " Model refuses to generate output"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.72201919555664,
+ false
+ ]
+ ],
+ [
+ [
+ -28.650171279907227,
+ false
+ ]
+ ],
+ [
+ [
+ -39.73262023925781,
+ false
+ ]
+ ],
+ [
+ [
+ -27.652854919433594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.72201919555664,
+ false
+ ],
+ [
+ -28.650171279907227,
+ false
+ ],
+ [
+ -39.73262023925781,
+ false
+ ],
+ [
+ -27.652854919433594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8f99b62d55814b425ef4bcb5c1d32aa38bb7af54010cc286911239c8473af0c1",
+ "prompt_hash": "93dd4db71774394f1a3d12f086ea9bce2e299f357f1fe08543ce70f11b589738",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What compression ratios are used during training in the described method?",
+ "choices": [
+ "{0.4, 0.5, 0.6, 0.7, 0.8}",
+ "{0.5, 0.6, 0.7, 0.8, 0.9, 1.0}",
+ "{0.3, 0.4, 0.5, 0.6, 0.7}",
+ "{0.6, 0.7, 0.8, 0.9, 1.0}"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What compression ratios are used during training in the described method?\nAnswer:",
+ " {0.4, 0.5, 0.6, 0.7, 0.8}"
+ ],
+ [
+ "Question:What compression ratios are used during training in the described method?\nAnswer:",
+ " {0.5, 0.6, 0.7, 0.8, 0.9, 1.0}"
+ ],
+ [
+ "Question:What compression ratios are used during training in the described method?\nAnswer:",
+ " {0.3, 0.4, 0.5, 0.6, 0.7}"
+ ],
+ [
+ "Question:What compression ratios are used during training in the described method?\nAnswer:",
+ " {0.6, 0.7, 0.8, 0.9, 1.0}"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.935413360595703,
+ false
+ ]
+ ],
+ [
+ [
+ -22.01791000366211,
+ false
+ ]
+ ],
+ [
+ [
+ -22.351211547851562,
+ false
+ ]
+ ],
+ [
+ [
+ -22.696800231933594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.935413360595703,
+ false
+ ],
+ [
+ -22.01791000366211,
+ false
+ ],
+ [
+ -22.351211547851562,
+ false
+ ],
+ [
+ -22.696800231933594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2c42f9aa68de8b4c2e0614d05988d7f313097bc081d4899a1d94666446a9c180",
+ "prompt_hash": "f890df27784e275ccd29ec28b9888098a69216e17e262b541e3d5e7ad824fe62",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "Which component is used to measure token importance for CoT compression?",
+ "choices": [
+ "Selective Context",
+ "BERTScore",
+ "LLMLingua-2",
+ "GPT-2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which component is used to measure token importance for CoT compression?\nAnswer:",
+ " Selective Context"
+ ],
+ [
+ "Question:Which component is used to measure token importance for CoT compression?\nAnswer:",
+ " BERTScore"
+ ],
+ [
+ "Question:Which component is used to measure token importance for CoT compression?\nAnswer:",
+ " LLMLingua-2"
+ ],
+ [
+ "Question:Which component is used to measure token importance for CoT compression?\nAnswer:",
+ " GPT-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.849891662597656,
+ false
+ ]
+ ],
+ [
+ [
+ -10.893404960632324,
+ false
+ ]
+ ],
+ [
+ [
+ -16.864978790283203,
+ false
+ ]
+ ],
+ [
+ [
+ -12.133968353271484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.849891662597656,
+ false
+ ],
+ [
+ -10.893404960632324,
+ false
+ ],
+ [
+ -16.864978790283203,
+ false
+ ],
+ [
+ -12.133968353271484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7b1b35451c309930ae8638328a8bf62b4d88e71640db1628b03cf71f444a6100",
+ "prompt_hash": "d7815954993ddc83db12cbd2ab13f23698bf8087e7288474571f616981cc0c4a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "How much training time is required for the 14B model using the described method?",
+ "choices": [
+ "1 hour",
+ "2 hours",
+ "2.5 hours",
+ "4 hours"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How much training time is required for the 14B model using the described method?\nAnswer:",
+ " 1 hour"
+ ],
+ [
+ "Question:How much training time is required for the 14B model using the described method?\nAnswer:",
+ " 2 hours"
+ ],
+ [
+ "Question:How much training time is required for the 14B model using the described method?\nAnswer:",
+ " 2.5 hours"
+ ],
+ [
+ "Question:How much training time is required for the 14B model using the described method?\nAnswer:",
+ " 4 hours"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.336488246917725,
+ false
+ ]
+ ],
+ [
+ [
+ -5.776352882385254,
+ false
+ ]
+ ],
+ [
+ [
+ -8.857259750366211,
+ false
+ ]
+ ],
+ [
+ [
+ -6.022823333740234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.336488246917725,
+ false
+ ],
+ [
+ -5.776352882385254,
+ false
+ ],
+ [
+ -8.857259750366211,
+ false
+ ],
+ [
+ -6.022823333740234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0d35c2335f3422ae97b919cbd23d57b6c8790e1eb1ece066688e33e86bf1d123",
+ "prompt_hash": "c91ac70792c4b1ff7a1873f69edaf45832c885237713639db692477388423430",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "What is the rank value set for LoRA fine-tuning in the method?",
+ "choices": [
+ "4",
+ "8",
+ "16",
+ "32"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the rank value set for LoRA fine-tuning in the method?\nAnswer:",
+ " 4"
+ ],
+ [
+ "Question:What is the rank value set for LoRA fine-tuning in the method?\nAnswer:",
+ " 8"
+ ],
+ [
+ "Question:What is the rank value set for LoRA fine-tuning in the method?\nAnswer:",
+ " 16"
+ ],
+ [
+ "Question:What is the rank value set for LoRA fine-tuning in the method?\nAnswer:",
+ " 32"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.7406415939331055,
+ false
+ ]
+ ],
+ [
+ [
+ -5.555514335632324,
+ false
+ ]
+ ],
+ [
+ [
+ -6.5669355392456055,
+ false
+ ]
+ ],
+ [
+ [
+ -6.306896209716797,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.7406415939331055,
+ false
+ ],
+ [
+ -5.555514335632324,
+ false
+ ],
+ [
+ -6.5669355392456055,
+ false
+ ],
+ [
+ -6.306896209716797,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "07f51775b96337ab88ed104b0493714755ff9cdae6c4c1cb7b43ca1d00be7eeb",
+ "prompt_hash": "80138422789cb93eb559f75f89a5de24aa5e8a40b7dff8a7e96486cbbc247241",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "Which dataset is used for out-of-domain evaluation besides GSM8K and MATH?",
+ "choices": [
+ "SQuAD",
+ "TriviaQA",
+ "MMLU-STEM",
+ "ARC"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which dataset is used for out-of-domain evaluation besides GSM8K and MATH?\nAnswer:",
+ " SQuAD"
+ ],
+ [
+ "Question:Which dataset is used for out-of-domain evaluation besides GSM8K and MATH?\nAnswer:",
+ " TriviaQA"
+ ],
+ [
+ "Question:Which dataset is used for out-of-domain evaluation besides GSM8K and MATH?\nAnswer:",
+ " MMLU-STEM"
+ ],
+ [
+ "Question:Which dataset is used for out-of-domain evaluation besides GSM8K and MATH?\nAnswer:",
+ " ARC"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.341615200042725,
+ false
+ ]
+ ],
+ [
+ [
+ -7.185184478759766,
+ false
+ ]
+ ],
+ [
+ [
+ -21.294132232666016,
+ false
+ ]
+ ],
+ [
+ [
+ -6.298617839813232,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.341615200042725,
+ false
+ ],
+ [
+ -7.185184478759766,
+ false
+ ],
+ [
+ -21.294132232666016,
+ false
+ ],
+ [
+ -6.298617839813232,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "afaf79d10e8d14f75886a3871409133317c7752e5df1ac8a12977ef6f2eeb28b",
+ "prompt_hash": "dd1ada38d3c47921975e2695165e2766ab1e5e11dae7dd0673aab143754cbe71",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "What is the base model used in the training that achieved 50 points on AIME 2024?",
+ "choices": [
+ "GPT-4",
+ "Qwen2.5-32B",
+ "Claude 3.5 Sonnet",
+ "PaLM 2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the base model used in the training that achieved 50 points on AIME 2024?\nAnswer:",
+ " GPT-4"
+ ],
+ [
+ "Question:What is the base model used in the training that achieved 50 points on AIME 2024?\nAnswer:",
+ " Qwen2.5-32B"
+ ],
+ [
+ "Question:What is the base model used in the training that achieved 50 points on AIME 2024?\nAnswer:",
+ " Claude 3.5 Sonnet"
+ ],
+ [
+ "Question:What is the base model used in the training that achieved 50 points on AIME 2024?\nAnswer:",
+ " PaLM 2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.890092372894287,
+ false
+ ]
+ ],
+ [
+ [
+ -22.896055221557617,
+ false
+ ]
+ ],
+ [
+ [
+ -9.634048461914062,
+ false
+ ]
+ ],
+ [
+ [
+ -9.849634170532227,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.890092372894287,
+ false
+ ],
+ [
+ -22.896055221557617,
+ false
+ ],
+ [
+ -9.634048461914062,
+ false
+ ],
+ [
+ -9.849634170532227,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "32d3314861ce399f395eef9a2b42993180ce16def268bc1b72e5ee51c095136b",
+ "prompt_hash": "1d43b55274d2bc3fcd208a9de3543b716fb182ce9a4fd563641bb1907b89480c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "Which technique is used in DAPO to avoid entropy collapse?",
+ "choices": [
+ "Overlong Reward Shaping",
+ "Dynamic Sampling",
+ "Token-Level Loss",
+ "Clip-Higher"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which technique is used in DAPO to avoid entropy collapse?\nAnswer:",
+ " Overlong Reward Shaping"
+ ],
+ [
+ "Question:Which technique is used in DAPO to avoid entropy collapse?\nAnswer:",
+ " Dynamic Sampling"
+ ],
+ [
+ "Question:Which technique is used in DAPO to avoid entropy collapse?\nAnswer:",
+ " Token-Level Loss"
+ ],
+ [
+ "Question:Which technique is used in DAPO to avoid entropy collapse?\nAnswer:",
+ " Clip-Higher"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.295101165771484,
+ false
+ ]
+ ],
+ [
+ [
+ -13.840023040771484,
+ false
+ ]
+ ],
+ [
+ [
+ -21.994983673095703,
+ false
+ ]
+ ],
+ [
+ [
+ -25.13794708251953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.295101165771484,
+ false
+ ],
+ [
+ -13.840023040771484,
+ false
+ ],
+ [
+ -21.994983673095703,
+ false
+ ],
+ [
+ -25.13794708251953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "07fa8f51662024231f1fec999d67b60389cc007d4dcd968c6e4719426af93f12",
+ "prompt_hash": "2984c964bafce2343e3c924cf0a867627b05fed881b4d6ca94098ddec4e8e7dd",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "What is the clipping range upper bound \\\\(\\\\varepsilon_{\\\\text{high}}\\\\) used in the Clip-Higher strategy?",
+ "choices": [
+ "0.1",
+ "0.2",
+ "0.28",
+ "0.5"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the clipping range upper bound \\\\(\\\\varepsilon_{\\\\text{high}}\\\\) used in the Clip-Higher strategy?\nAnswer:",
+ " 0.1"
+ ],
+ [
+ "Question:What is the clipping range upper bound \\\\(\\\\varepsilon_{\\\\text{high}}\\\\) used in the Clip-Higher strategy?\nAnswer:",
+ " 0.2"
+ ],
+ [
+ "Question:What is the clipping range upper bound \\\\(\\\\varepsilon_{\\\\text{high}}\\\\) used in the Clip-Higher strategy?\nAnswer:",
+ " 0.28"
+ ],
+ [
+ "Question:What is the clipping range upper bound \\\\(\\\\varepsilon_{\\\\text{high}}\\\\) used in the Clip-Higher strategy?\nAnswer:",
+ " 0.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.922827243804932,
+ false
+ ]
+ ],
+ [
+ [
+ -5.141783237457275,
+ false
+ ]
+ ],
+ [
+ [
+ -8.58029842376709,
+ false
+ ]
+ ],
+ [
+ [
+ -5.299935340881348,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.922827243804932,
+ false
+ ],
+ [
+ -5.141783237457275,
+ false
+ ],
+ [
+ -8.58029842376709,
+ false
+ ],
+ [
+ -5.299935340881348,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1ae08d794976a64521cd6747a93d4d9b99ad60436c2c076971d4466f12ad2b97",
+ "prompt_hash": "5141fbe700b4139a1ad18df266d84f1111c9fdb934467966f8d4a7222d3e7a0e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "What is the name of the proposed algorithm introduced in the paper?",
+ "choices": [
+ "GRPO",
+ "PPO",
+ "DAPO",
+ "R1-Zero"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the name of the proposed algorithm introduced in the paper?\nAnswer:",
+ " GRPO"
+ ],
+ [
+ "Question:What is the name of the proposed algorithm introduced in the paper?\nAnswer:",
+ " PPO"
+ ],
+ [
+ "Question:What is the name of the proposed algorithm introduced in the paper?\nAnswer:",
+ " DAPO"
+ ],
+ [
+ "Question:What is the name of the proposed algorithm introduced in the paper?\nAnswer:",
+ " R1-Zero"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.736867904663086,
+ false
+ ]
+ ],
+ [
+ [
+ -9.351875305175781,
+ false
+ ]
+ ],
+ [
+ [
+ -15.61240005493164,
+ false
+ ]
+ ],
+ [
+ [
+ -26.69268035888672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.736867904663086,
+ false
+ ],
+ [
+ -9.351875305175781,
+ false
+ ],
+ [
+ -15.61240005493164,
+ false
+ ],
+ [
+ -26.69268035888672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1b22f876b65af04d63f0cc9505396994082220bcb71a24b0e5a90a963c21d7a4",
+ "prompt_hash": "c732477cd0fbcafe50814fbb139471a2f4540f9091ae8e340d4aa1c1731250a7",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "How many prompts are included in the \\\\textbf{\\\\method-Math-17K} dataset?",
+ "choices": [
+ "17K",
+ "32K",
+ "9K",
+ "50K"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:How many prompts are included in the \\\\textbf{\\\\method-Math-17K} dataset?\nAnswer:",
+ " 17K"
+ ],
+ [
+ "Question:How many prompts are included in the \\\\textbf{\\\\method-Math-17K} dataset?\nAnswer:",
+ " 32K"
+ ],
+ [
+ "Question:How many prompts are included in the \\\\textbf{\\\\method-Math-17K} dataset?\nAnswer:",
+ " 9K"
+ ],
+ [
+ "Question:How many prompts are included in the \\\\textbf{\\\\method-Math-17K} dataset?\nAnswer:",
+ " 50K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.702976226806641,
+ false
+ ]
+ ],
+ [
+ [
+ -11.616281509399414,
+ false
+ ]
+ ],
+ [
+ [
+ -11.279356002807617,
+ false
+ ]
+ ],
+ [
+ [
+ -10.095756530761719,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.702976226806641,
+ false
+ ],
+ [
+ -11.616281509399414,
+ false
+ ],
+ [
+ -11.279356002807617,
+ false
+ ],
+ [
+ -10.095756530761719,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1fc6d284e95bcea07f74c2cd8a4f8a8644e903391815a339cbdc4c01087d14aa",
+ "prompt_hash": "c4129423402a15c47cdabe977cb289d9be7e08fdddec7f00c6955147441e5f2a",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What algorithm does Video-R1 use to explicitly encourage temporal reasoning?",
+ "choices": [
+ "GRPO",
+ "T-GRPO",
+ "PPO",
+ "RLHF"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What algorithm does Video-R1 use to explicitly encourage temporal reasoning?\nAnswer:",
+ " GRPO"
+ ],
+ [
+ "Question:What algorithm does Video-R1 use to explicitly encourage temporal reasoning?\nAnswer:",
+ " T-GRPO"
+ ],
+ [
+ "Question:What algorithm does Video-R1 use to explicitly encourage temporal reasoning?\nAnswer:",
+ " PPO"
+ ],
+ [
+ "Question:What algorithm does Video-R1 use to explicitly encourage temporal reasoning?\nAnswer:",
+ " RLHF"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.931842803955078,
+ false
+ ]
+ ],
+ [
+ [
+ -25.607009887695312,
+ false
+ ]
+ ],
+ [
+ [
+ -9.875887870788574,
+ false
+ ]
+ ],
+ [
+ [
+ -11.119476318359375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.931842803955078,
+ false
+ ],
+ [
+ -25.607009887695312,
+ false
+ ],
+ [
+ -9.875887870788574,
+ false
+ ],
+ [
+ -11.119476318359375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "126c1db2e1f87d51eaf0b9a329cfc6691b50e5a919267db5815dcb380dcb9d29",
+ "prompt_hash": "1d8f0b3ec3966666c797bbcc826b72d26d54e19ae2e45533be98f51cf942f48e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "What is the name of the dataset used for SFT cold start in the Video-R1 project?",
+ "choices": [
+ "Video-R1-260k",
+ "Video-CoT-260k",
+ "Video-R1-CoT-165k",
+ "Video-MMVU-165k"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the name of the dataset used for SFT cold start in the Video-R1 project?\nAnswer:",
+ " Video-R1-260k"
+ ],
+ [
+ "Question:What is the name of the dataset used for SFT cold start in the Video-R1 project?\nAnswer:",
+ " Video-CoT-260k"
+ ],
+ [
+ "Question:What is the name of the dataset used for SFT cold start in the Video-R1 project?\nAnswer:",
+ " Video-R1-CoT-165k"
+ ],
+ [
+ "Question:What is the name of the dataset used for SFT cold start in the Video-R1 project?\nAnswer:",
+ " Video-MMVU-165k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.350065231323242,
+ false
+ ]
+ ],
+ [
+ [
+ -29.195642471313477,
+ false
+ ]
+ ],
+ [
+ [
+ -31.295621871948242,
+ false
+ ]
+ ],
+ [
+ [
+ -41.61042785644531,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.350065231323242,
+ false
+ ],
+ [
+ -29.195642471313477,
+ false
+ ],
+ [
+ -31.295621871948242,
+ false
+ ],
+ [
+ -41.61042785644531,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1387d2ae4187eff5697a838ef6f7824b73537cdea9f9d5b5c67d35da940cb978",
+ "prompt_hash": "3e92bd5d15e0df021aacbb091244ce7e4ce090f57278f8ce936a34ee181545e8",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "Which reward metric is used for OCR tasks in the Video-R1 training framework?",
+ "choices": [
+ "ROUGE score",
+ "Word Error Rate",
+ "BLEU score",
+ "Exact Match"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which reward metric is used for OCR tasks in the Video-R1 training framework?\nAnswer:",
+ " ROUGE score"
+ ],
+ [
+ "Question:Which reward metric is used for OCR tasks in the Video-R1 training framework?\nAnswer:",
+ " Word Error Rate"
+ ],
+ [
+ "Question:Which reward metric is used for OCR tasks in the Video-R1 training framework?\nAnswer:",
+ " BLEU score"
+ ],
+ [
+ "Question:Which reward metric is used for OCR tasks in the Video-R1 training framework?\nAnswer:",
+ " Exact Match"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.833221435546875,
+ false
+ ]
+ ],
+ [
+ [
+ -11.00476360321045,
+ false
+ ]
+ ],
+ [
+ [
+ -9.543600082397461,
+ false
+ ]
+ ],
+ [
+ [
+ -11.54476547241211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.833221435546875,
+ false
+ ],
+ [
+ -11.00476360321045,
+ false
+ ],
+ [
+ -9.543600082397461,
+ false
+ ],
+ [
+ -11.54476547241211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e555d193f12439285d2f18c1f4cedfa6a5a8d53fa231ebe754580dc46e91f968",
+ "prompt_hash": "329050e367149acd47a48e94f29533c37a89c2bb97d6b6d74751a2f5f15f79e4",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "Which model serves as the base for training Video-R1?",
+ "choices": [
+ "GPT-4o",
+ "Qwen2.5-VL-7B-Instruct",
+ "LLaMA-VID",
+ "VideoLLaMA2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model serves as the base for training Video-R1?\nAnswer:",
+ " GPT-4o"
+ ],
+ [
+ "Question:Which model serves as the base for training Video-R1?\nAnswer:",
+ " Qwen2.5-VL-7B-Instruct"
+ ],
+ [
+ "Question:Which model serves as the base for training Video-R1?\nAnswer:",
+ " LLaMA-VID"
+ ],
+ [
+ "Question:Which model serves as the base for training Video-R1?\nAnswer:",
+ " VideoLLaMA2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.204802513122559,
+ false
+ ]
+ ],
+ [
+ [
+ -31.90470314025879,
+ false
+ ]
+ ],
+ [
+ [
+ -13.842266082763672,
+ false
+ ]
+ ],
+ [
+ [
+ -16.127418518066406,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.204802513122559,
+ false
+ ],
+ [
+ -31.90470314025879,
+ false
+ ],
+ [
+ -13.842266082763672,
+ false
+ ],
+ [
+ -16.127418518066406,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0c209ab675baf43fc9d2918649b0408f1a2e15b66e038b0b1f576238a540dace",
+ "prompt_hash": "69baf69895f3d772e961ce28e67b96462dafd32f2612ff19e614d9d26feebd8a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "What was the accuracy of Video-R1-7B on VSI-Bench when using 64 frames?",
+ "choices": [
+ "34.0%",
+ "35.8%",
+ "37.1%",
+ "31.4%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was the accuracy of Video-R1-7B on VSI-Bench when using 64 frames?\nAnswer:",
+ " 34.0%"
+ ],
+ [
+ "Question:What was the accuracy of Video-R1-7B on VSI-Bench when using 64 frames?\nAnswer:",
+ " 35.8%"
+ ],
+ [
+ "Question:What was the accuracy of Video-R1-7B on VSI-Bench when using 64 frames?\nAnswer:",
+ " 37.1%"
+ ],
+ [
+ "Question:What was the accuracy of Video-R1-7B on VSI-Bench when using 64 frames?\nAnswer:",
+ " 31.4%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.33782196044922,
+ false
+ ]
+ ],
+ [
+ [
+ -16.10730743408203,
+ false
+ ]
+ ],
+ [
+ [
+ -16.056318283081055,
+ false
+ ]
+ ],
+ [
+ [
+ -15.979215621948242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.33782196044922,
+ false
+ ],
+ [
+ -16.10730743408203,
+ false
+ ],
+ [
+ -16.056318283081055,
+ false
+ ],
+ [
+ -15.979215621948242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "22b92c8c36efb4a3ef53f85e55da1908e34f42e60fd93f3c9712c5c5ca84277e",
+ "prompt_hash": "1e77068b11ee1e38276f7b2e6ee6108b632a7d4f493c66c17512846e7c92287f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the primary reward signal used in Reinforcement Learning with Verifiable Rewards (RLVR)?",
+ "choices": [
+ "A. A human-annotated preference score",
+ "B. The model's likelihood score",
+ "C. A binary signal indicating whether the final answer is correct",
+ "D. A reward based on token diversity"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the primary reward signal used in Reinforcement Learning with Verifiable Rewards (RLVR)?\nAnswer:",
+ " A. A human-annotated preference score"
+ ],
+ [
+ "Question:What is the primary reward signal used in Reinforcement Learning with Verifiable Rewards (RLVR)?\nAnswer:",
+ " B. The model's likelihood score"
+ ],
+ [
+ "Question:What is the primary reward signal used in Reinforcement Learning with Verifiable Rewards (RLVR)?\nAnswer:",
+ " C. A binary signal indicating whether the final answer is correct"
+ ],
+ [
+ "Question:What is the primary reward signal used in Reinforcement Learning with Verifiable Rewards (RLVR)?\nAnswer:",
+ " D. A reward based on token diversity"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.02013397216797,
+ false
+ ]
+ ],
+ [
+ [
+ -33.4256706237793,
+ false
+ ]
+ ],
+ [
+ [
+ -43.01633834838867,
+ false
+ ]
+ ],
+ [
+ [
+ -38.00716781616211,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.02013397216797,
+ false
+ ],
+ [
+ -33.4256706237793,
+ false
+ ],
+ [
+ -43.01633834838867,
+ false
+ ],
+ [
+ -38.00716781616211,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "39ad42bcad4b3443aa0de2197c8d454d924c5071af39de537a7783bd6e192d20",
+ "prompt_hash": "836d99e0b6318b355622ec547389779702e5f387177ee81d78cd49c889f1e16f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "What metric does the paper adopt to evaluate the upper bound of reasoning capacity in language models?",
+ "choices": [
+ "A. BLEU score",
+ "B. Pass@k",
+ "C. Perplexity@N",
+ "D. Accuracy@1"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What metric does the paper adopt to evaluate the upper bound of reasoning capacity in language models?\nAnswer:",
+ " A. BLEU score"
+ ],
+ [
+ "Question:What metric does the paper adopt to evaluate the upper bound of reasoning capacity in language models?\nAnswer:",
+ " B. Pass@k"
+ ],
+ [
+ "Question:What metric does the paper adopt to evaluate the upper bound of reasoning capacity in language models?\nAnswer:",
+ " C. Perplexity@N"
+ ],
+ [
+ "Question:What metric does the paper adopt to evaluate the upper bound of reasoning capacity in language models?\nAnswer:",
+ " D. Accuracy@1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.006498336791992,
+ false
+ ]
+ ],
+ [
+ [
+ -21.53601837158203,
+ false
+ ]
+ ],
+ [
+ [
+ -31.138652801513672,
+ false
+ ]
+ ],
+ [
+ [
+ -27.590656280517578,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.006498336791992,
+ false
+ ],
+ [
+ -21.53601837158203,
+ false
+ ],
+ [
+ -31.138652801513672,
+ false
+ ],
+ [
+ -27.590656280517578,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ba2c85c16b001cd163ca40a93180d77687f2a5bf211f6406ac9a8cef48a05e4b",
+ "prompt_hash": "17a5b1a2cf79a58ea9e262ff4ac6c3f40ad8277d76441d507224f850e6fba27d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "What happens to the performance of base models relative to RLVR models as k increases in pass@k evaluation?",
+ "choices": [
+ "A. RLVR models maintain a consistent lead",
+ "B. Base models consistently outperform RLVR models",
+ "C. RLVR models begin to guess more accurately",
+ "D. Both models converge to the same performance"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What happens to the performance of base models relative to RLVR models as k increases in pass@k evaluation?\nAnswer:",
+ " A. RLVR models maintain a consistent lead"
+ ],
+ [
+ "Question:What happens to the performance of base models relative to RLVR models as k increases in pass@k evaluation?\nAnswer:",
+ " B. Base models consistently outperform RLVR models"
+ ],
+ [
+ "Question:What happens to the performance of base models relative to RLVR models as k increases in pass@k evaluation?\nAnswer:",
+ " C. RLVR models begin to guess more accurately"
+ ],
+ [
+ "Question:What happens to the performance of base models relative to RLVR models as k increases in pass@k evaluation?\nAnswer:",
+ " D. Both models converge to the same performance"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -25.940311431884766,
+ false
+ ]
+ ],
+ [
+ [
+ -21.268390655517578,
+ false
+ ]
+ ],
+ [
+ [
+ -39.17335510253906,
+ false
+ ]
+ ],
+ [
+ [
+ -25.378387451171875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -25.940311431884766,
+ false
+ ],
+ [
+ -21.268390655517578,
+ false
+ ],
+ [
+ -39.17335510253906,
+ false
+ ],
+ [
+ -25.378387451171875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0e1b9fe9418a7b9dac682c12c23793912d063d121108d0a6fa154965f340b5bc",
+ "prompt_hash": "6944b8504d97d1d7c1937bdbefe8c7acd4a21320ea7f5e0a08b105bc2bc34630",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "What does the Sampling Efficiency Gap (Δ_SE) measure?",
+ "choices": [
+ "A. The number of samples required to reach convergence",
+ "B. The difference in training time between base and RLVR models",
+ "C. The difference between RLVR's pass@1 and the base model's pass@k",
+ "D. The rate of entropy decay during training"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the Sampling Efficiency Gap (Δ_SE) measure?\nAnswer:",
+ " A. The number of samples required to reach convergence"
+ ],
+ [
+ "Question:What does the Sampling Efficiency Gap (Δ_SE) measure?\nAnswer:",
+ " B. The difference in training time between base and RLVR models"
+ ],
+ [
+ "Question:What does the Sampling Efficiency Gap (Δ_SE) measure?\nAnswer:",
+ " C. The difference between RLVR's pass@1 and the base model's pass@k"
+ ],
+ [
+ "Question:What does the Sampling Efficiency Gap (Δ_SE) measure?\nAnswer:",
+ " D. The rate of entropy decay during training"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.828250885009766,
+ false
+ ]
+ ],
+ [
+ [
+ -53.71723175048828,
+ false
+ ]
+ ],
+ [
+ [
+ -66.43455505371094,
+ false
+ ]
+ ],
+ [
+ [
+ -43.234901428222656,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.828250885009766,
+ false
+ ],
+ [
+ -53.71723175048828,
+ false
+ ],
+ [
+ -66.43455505371094,
+ false
+ ],
+ [
+ -43.234901428222656,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "744da3df7965d318191c12d701fc8e843d8efada5b64cc4180d2ce853732f96d",
+ "prompt_hash": "6f6aa10d65a1441249b7c623b59ddaabd3ab661cfb17d3746db69bbcdb9bc356",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "According to the experiments, what do the reasoning paths generated by RLVR models indicate?",
+ "choices": [
+ "A. They reflect new reasoning capabilities learned through RL",
+ "B. They are random guesses filtered by the verifier",
+ "C. They already exist in the output distribution of the base model",
+ "D. They are synthesized from multiple base model samples"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:According to the experiments, what do the reasoning paths generated by RLVR models indicate?\nAnswer:",
+ " A. They reflect new reasoning capabilities learned through RL"
+ ],
+ [
+ "Question:According to the experiments, what do the reasoning paths generated by RLVR models indicate?\nAnswer:",
+ " B. They are random guesses filtered by the verifier"
+ ],
+ [
+ "Question:According to the experiments, what do the reasoning paths generated by RLVR models indicate?\nAnswer:",
+ " C. They already exist in the output distribution of the base model"
+ ],
+ [
+ "Question:According to the experiments, what do the reasoning paths generated by RLVR models indicate?\nAnswer:",
+ " D. They are synthesized from multiple base model samples"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -38.78850555419922,
+ false
+ ]
+ ],
+ [
+ [
+ -46.965293884277344,
+ false
+ ]
+ ],
+ [
+ [
+ -48.898765563964844,
+ false
+ ]
+ ],
+ [
+ [
+ -46.17258834838867,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -38.78850555419922,
+ false
+ ],
+ [
+ -46.965293884277344,
+ false
+ ],
+ [
+ -48.898765563964844,
+ false
+ ],
+ [
+ -46.17258834838867,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "954d2b3c5f9f5c8896b099e6d90a9d2e2b5532a1f25b79c69bf62138d56c86ab",
+ "prompt_hash": "182c077512ebbfb2b38590a298b2a407503d5b0527108a291b791241150bc108",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What is the base model used for evaluating the performance of 1-shot RLVR in the main experiments?",
+ "choices": [
+ "GPT-3.5-Turbo",
+ "Llama-2-7B",
+ "Qwen2.5-Math-1.5B",
+ "DeepSeek-R1-Distill"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the base model used for evaluating the performance of 1-shot RLVR in the main experiments?\nAnswer:",
+ " GPT-3.5-Turbo"
+ ],
+ [
+ "Question:What is the base model used for evaluating the performance of 1-shot RLVR in the main experiments?\nAnswer:",
+ " Llama-2-7B"
+ ],
+ [
+ "Question:What is the base model used for evaluating the performance of 1-shot RLVR in the main experiments?\nAnswer:",
+ " Qwen2.5-Math-1.5B"
+ ],
+ [
+ "Question:What is the base model used for evaluating the performance of 1-shot RLVR in the main experiments?\nAnswer:",
+ " DeepSeek-R1-Distill"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.728631973266602,
+ false
+ ]
+ ],
+ [
+ [
+ -9.849063873291016,
+ false
+ ]
+ ],
+ [
+ [
+ -35.07659149169922,
+ false
+ ]
+ ],
+ [
+ [
+ -31.160295486450195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.728631973266602,
+ false
+ ],
+ [
+ -9.849063873291016,
+ false
+ ],
+ [
+ -35.07659149169922,
+ false
+ ],
+ [
+ -31.160295486450195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2a03f930286e42a0437a5c9afd31c5d7db4ab7ae3ee771f9bfd332fa1fc9292a",
+ "prompt_hash": "46175ba0e87ef58bf696d2be25274e17f603dbb72c8549bfd5ce565a2dd72dcb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which loss component in the GRPO algorithm encourages diversity in generated reasoning paths by increasing per-token entropy?",
+ "choices": [
+ "Policy gradient loss",
+ "KL divergence loss",
+ "Entropy loss",
+ "Cross-entropy loss"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which loss component in the GRPO algorithm encourages diversity in generated reasoning paths by increasing per-token entropy?\nAnswer:",
+ " Policy gradient loss"
+ ],
+ [
+ "Question:Which loss component in the GRPO algorithm encourages diversity in generated reasoning paths by increasing per-token entropy?\nAnswer:",
+ " KL divergence loss"
+ ],
+ [
+ "Question:Which loss component in the GRPO algorithm encourages diversity in generated reasoning paths by increasing per-token entropy?\nAnswer:",
+ " Entropy loss"
+ ],
+ [
+ "Question:Which loss component in the GRPO algorithm encourages diversity in generated reasoning paths by increasing per-token entropy?\nAnswer:",
+ " Cross-entropy loss"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.594659805297852,
+ false
+ ]
+ ],
+ [
+ [
+ -10.512680053710938,
+ false
+ ]
+ ],
+ [
+ [
+ -8.07869815826416,
+ false
+ ]
+ ],
+ [
+ [
+ -9.3623628616333,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.594659805297852,
+ false
+ ],
+ [
+ -10.512680053710938,
+ false
+ ],
+ [
+ -8.07869815826416,
+ false
+ ],
+ [
+ -9.3623628616333,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8f838534a6d86ee73c454ddeccc994e338d0fccdbea72400a09455ecd1cfd55f",
+ "prompt_hash": "a54ec2971b23b670c15960aa03fac8f6ff86174684623d2682fecf43ba76b03b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "According to the paper, what is the name of the data selection metric used to rank examples by their variance in training accuracy?",
+ "choices": [
+ "Gradient Impact Score",
+ "Reward Importance Metric",
+ "Learning Impact Measurement",
+ "Historical Variance Score"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:According to the paper, what is the name of the data selection metric used to rank examples by their variance in training accuracy?\nAnswer:",
+ " Gradient Impact Score"
+ ],
+ [
+ "Question:According to the paper, what is the name of the data selection metric used to rank examples by their variance in training accuracy?\nAnswer:",
+ " Reward Importance Metric"
+ ],
+ [
+ "Question:According to the paper, what is the name of the data selection metric used to rank examples by their variance in training accuracy?\nAnswer:",
+ " Learning Impact Measurement"
+ ],
+ [
+ "Question:According to the paper, what is the name of the data selection metric used to rank examples by their variance in training accuracy?\nAnswer:",
+ " Historical Variance Score"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.28644561767578,
+ false
+ ]
+ ],
+ [
+ [
+ -26.060409545898438,
+ false
+ ]
+ ],
+ [
+ [
+ -24.549489974975586,
+ false
+ ]
+ ],
+ [
+ [
+ -18.02423095703125,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.28644561767578,
+ false
+ ],
+ [
+ -26.060409545898438,
+ false
+ ],
+ [
+ -24.549489974975586,
+ false
+ ],
+ [
+ -18.02423095703125,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3a3e78cb3618e1b5dc9be2bd0dbb0b90804b2dd84ecda453fa62045fb06b9a07",
+ "prompt_hash": "811725d0535968f81383ca3ad325069b68bf284c99d56bd42368e4927b1164d5",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "What phenomenon is described where the model continues to improve on test tasks even after training accuracy on the single example has saturated?",
+ "choices": [
+ "Grokking collapse",
+ "Post-saturation generalization",
+ "Zero-shot adaptation",
+ "Multi-example overfitting"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What phenomenon is described where the model continues to improve on test tasks even after training accuracy on the single example has saturated?\nAnswer:",
+ " Grokking collapse"
+ ],
+ [
+ "Question:What phenomenon is described where the model continues to improve on test tasks even after training accuracy on the single example has saturated?\nAnswer:",
+ " Post-saturation generalization"
+ ],
+ [
+ "Question:What phenomenon is described where the model continues to improve on test tasks even after training accuracy on the single example has saturated?\nAnswer:",
+ " Zero-shot adaptation"
+ ],
+ [
+ "Question:What phenomenon is described where the model continues to improve on test tasks even after training accuracy on the single example has saturated?\nAnswer:",
+ " Multi-example overfitting"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.938018798828125,
+ false
+ ]
+ ],
+ [
+ [
+ -16.854328155517578,
+ false
+ ]
+ ],
+ [
+ [
+ -12.185791015625,
+ false
+ ]
+ ],
+ [
+ [
+ -23.258197784423828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.938018798828125,
+ false
+ ],
+ [
+ -16.854328155517578,
+ false
+ ],
+ [
+ -12.185791015625,
+ false
+ ],
+ [
+ -23.258197784423828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c11aeb2aef303fbace6ef657df4eae5900632e5b2eda43d6cea7c35e6d9dc51e",
+ "prompt_hash": "3cfb19e32bb00501c95918dc43c2ca8b513683c233f7c5faaa4218144eb26f66",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "Which training example demonstrated the best performance on ARC-E and ARC-C among the evaluated 1-shot RLVR cases?",
+ "choices": [
+ "π₁",
+ "π₁₃",
+ "π₇",
+ "π₆₀₆"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which training example demonstrated the best performance on ARC-E and ARC-C among the evaluated 1-shot RLVR cases?\nAnswer:",
+ " π₁"
+ ],
+ [
+ "Question:Which training example demonstrated the best performance on ARC-E and ARC-C among the evaluated 1-shot RLVR cases?\nAnswer:",
+ " π₁₃"
+ ],
+ [
+ "Question:Which training example demonstrated the best performance on ARC-E and ARC-C among the evaluated 1-shot RLVR cases?\nAnswer:",
+ " π₇"
+ ],
+ [
+ "Question:Which training example demonstrated the best performance on ARC-E and ARC-C among the evaluated 1-shot RLVR cases?\nAnswer:",
+ " π₆₀₆"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -23.508066177368164,
+ false
+ ]
+ ],
+ [
+ [
+ -32.39995574951172,
+ false
+ ]
+ ],
+ [
+ [
+ -32.84843444824219,
+ false
+ ]
+ ],
+ [
+ [
+ -46.29670333862305,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -23.508066177368164,
+ false
+ ],
+ [
+ -32.39995574951172,
+ false
+ ],
+ [
+ -32.84843444824219,
+ false
+ ],
+ [
+ -46.29670333862305,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1e7389919cccf3433bfa5bfd774dbfa30eb6b518ba33e3d7ec168cea970317d9",
+ "prompt_hash": "b58b4b73d0f3f093d1d12c9ab69514caaef91f50ceb0e374008916c107cee95a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What is one reason outcome-based RL alone may be insufficient for achieving high CoT faithfulness?",
+ "choices": [
+ "Because it causes models to overfit to training data",
+ "Because it decreases reasoning capability",
+ "Because it plateaus without saturating faithfulness",
+ "Because it prevents models from using CoTs"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is one reason outcome-based RL alone may be insufficient for achieving high CoT faithfulness?\nAnswer:",
+ " Because it causes models to overfit to training data"
+ ],
+ [
+ "Question:What is one reason outcome-based RL alone may be insufficient for achieving high CoT faithfulness?\nAnswer:",
+ " Because it decreases reasoning capability"
+ ],
+ [
+ "Question:What is one reason outcome-based RL alone may be insufficient for achieving high CoT faithfulness?\nAnswer:",
+ " Because it plateaus without saturating faithfulness"
+ ],
+ [
+ "Question:What is one reason outcome-based RL alone may be insufficient for achieving high CoT faithfulness?\nAnswer:",
+ " Because it prevents models from using CoTs"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.763872146606445,
+ false
+ ]
+ ],
+ [
+ [
+ -26.16617202758789,
+ false
+ ]
+ ],
+ [
+ [
+ -44.68550491333008,
+ false
+ ]
+ ],
+ [
+ [
+ -30.43862533569336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.763872146606445,
+ false
+ ],
+ [
+ -26.16617202758789,
+ false
+ ],
+ [
+ -44.68550491333008,
+ false
+ ],
+ [
+ -30.43862533569336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7b5b0d4fcac0090cabb4b824696aaaad0ed0e436674c49cae5c8ef97d1c2b7c2",
+ "prompt_hash": "c6457877ffda95d29200f60b614cf88be65a1f0aece62905a831cee671bbf41a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "Which model learned to hard-code results for tests during training in the reward hack experiments?",
+ "choices": [
+ "DeepSeek R1",
+ "Claude 3.5 Sonnet",
+ "Claude 3.7 Sonnet",
+ "DeepSeek V3"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model learned to hard-code results for tests during training in the reward hack experiments?\nAnswer:",
+ " DeepSeek R1"
+ ],
+ [
+ "Question:Which model learned to hard-code results for tests during training in the reward hack experiments?\nAnswer:",
+ " Claude 3.5 Sonnet"
+ ],
+ [
+ "Question:Which model learned to hard-code results for tests during training in the reward hack experiments?\nAnswer:",
+ " Claude 3.7 Sonnet"
+ ],
+ [
+ "Question:Which model learned to hard-code results for tests during training in the reward hack experiments?\nAnswer:",
+ " DeepSeek V3"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.631614685058594,
+ false
+ ]
+ ],
+ [
+ [
+ -12.710103034973145,
+ false
+ ]
+ ],
+ [
+ [
+ -18.92521858215332,
+ false
+ ]
+ ],
+ [
+ [
+ -19.510250091552734,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.631614685058594,
+ false
+ ],
+ [
+ -12.710103034973145,
+ false
+ ],
+ [
+ -18.92521858215332,
+ false
+ ],
+ [
+ -19.510250091552734,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "13ca64ad1b98f21dd082f3a7aa6a5776f8e7fd67fd5f8fc8a5474274d3bab730",
+ "prompt_hash": "4c6bca8888a967a5404bebcaed6f37836ab597b7b5e9f145f6178cb48de44df3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What is the purpose of using hint-based prompt pairs in measuring CoT faithfulness?",
+ "choices": [
+ "To improve model accuracy on factual questions",
+ "To detect bias in multiple-choice benchmarks",
+ "To infer internal reasoning by comparing response changes",
+ "To train models to ignore misleading data"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of using hint-based prompt pairs in measuring CoT faithfulness?\nAnswer:",
+ " To improve model accuracy on factual questions"
+ ],
+ [
+ "Question:What is the purpose of using hint-based prompt pairs in measuring CoT faithfulness?\nAnswer:",
+ " To detect bias in multiple-choice benchmarks"
+ ],
+ [
+ "Question:What is the purpose of using hint-based prompt pairs in measuring CoT faithfulness?\nAnswer:",
+ " To infer internal reasoning by comparing response changes"
+ ],
+ [
+ "Question:What is the purpose of using hint-based prompt pairs in measuring CoT faithfulness?\nAnswer:",
+ " To train models to ignore misleading data"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.222148895263672,
+ false
+ ]
+ ],
+ [
+ [
+ -29.169475555419922,
+ false
+ ]
+ ],
+ [
+ [
+ -37.356285095214844,
+ false
+ ]
+ ],
+ [
+ [
+ -26.701622009277344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.222148895263672,
+ false
+ ],
+ [
+ -29.169475555419922,
+ false
+ ],
+ [
+ -37.356285095214844,
+ false
+ ],
+ [
+ -26.701622009277344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "eedfec57f7cf748e51ea43246837ea75c2cf0225d02ecc4ebd80d938f2f43aaa",
+ "prompt_hash": "b2765d1215a6ecd63b5e91c87b0499aec8ef861961a2a6694e74e614c6b56854",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "What type of hints were used in the evaluation to test safety-relevant CoT faithfulness?",
+ "choices": [
+ "Mathematical and logical hints",
+ "Visual and audio cues",
+ "Misaligned hints like grader hacking and unethical information",
+ "Language pattern and token frequency cues"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of hints were used in the evaluation to test safety-relevant CoT faithfulness?\nAnswer:",
+ " Mathematical and logical hints"
+ ],
+ [
+ "Question:What type of hints were used in the evaluation to test safety-relevant CoT faithfulness?\nAnswer:",
+ " Visual and audio cues"
+ ],
+ [
+ "Question:What type of hints were used in the evaluation to test safety-relevant CoT faithfulness?\nAnswer:",
+ " Misaligned hints like grader hacking and unethical information"
+ ],
+ [
+ "Question:What type of hints were used in the evaluation to test safety-relevant CoT faithfulness?\nAnswer:",
+ " Language pattern and token frequency cues"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.002525329589844,
+ false
+ ]
+ ],
+ [
+ [
+ -18.802433013916016,
+ false
+ ]
+ ],
+ [
+ [
+ -65.69326782226562,
+ false
+ ]
+ ],
+ [
+ [
+ -37.43977355957031,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.002525329589844,
+ false
+ ],
+ [
+ -18.802433013916016,
+ false
+ ],
+ [
+ -65.69326782226562,
+ false
+ ],
+ [
+ -37.43977355957031,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fd9f191743aefa5edd398da08292713f6bb68c0e520fd076f22fdf096c6d8da4",
+ "prompt_hash": "a9c05888186f1c3ea92f0d00507f0740848d6610cf9faedc07b47f897ef40136",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "How do unfaithful CoTs compare in length to faithful CoTs according to the study?",
+ "choices": [
+ "They are shorter and more concise",
+ "They are similar in length",
+ "They are longer and more convoluted",
+ "They contain fewer reasoning steps"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How do unfaithful CoTs compare in length to faithful CoTs according to the study?\nAnswer:",
+ " They are shorter and more concise"
+ ],
+ [
+ "Question:How do unfaithful CoTs compare in length to faithful CoTs according to the study?\nAnswer:",
+ " They are similar in length"
+ ],
+ [
+ "Question:How do unfaithful CoTs compare in length to faithful CoTs according to the study?\nAnswer:",
+ " They are longer and more convoluted"
+ ],
+ [
+ "Question:How do unfaithful CoTs compare in length to faithful CoTs according to the study?\nAnswer:",
+ " They contain fewer reasoning steps"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.384572982788086,
+ false
+ ]
+ ],
+ [
+ [
+ -11.298038482666016,
+ false
+ ]
+ ],
+ [
+ [
+ -19.460298538208008,
+ false
+ ]
+ ],
+ [
+ [
+ -21.72235870361328,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.384572982788086,
+ false
+ ],
+ [
+ -11.298038482666016,
+ false
+ ],
+ [
+ -19.460298538208008,
+ false
+ ],
+ [
+ -21.72235870361328,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "1573d60eaa95f26034027eda25f90189f9ccd116c097c3d243df1545bfe04d80",
+ "prompt_hash": "80562ceb2de7a63b55305cfd349eb30ad77bc240a506852f6852fff626d892a6",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ],
+ "arxiv_mc_2506": [
+ {
+ "doc_id": 0,
+ "doc": {
+ "question": "What visual backbone does BLIP-3 adopt in its final model architecture?",
+ "choices": [
+ "DFN",
+ "ResNet",
+ "SigLIP",
+ "Swin Transformer"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What visual backbone does BLIP-3 adopt in its final model architecture?\nAnswer:",
+ " DFN"
+ ],
+ [
+ "Question:What visual backbone does BLIP-3 adopt in its final model architecture?\nAnswer:",
+ " ResNet"
+ ],
+ [
+ "Question:What visual backbone does BLIP-3 adopt in its final model architecture?\nAnswer:",
+ " SigLIP"
+ ],
+ [
+ "Question:What visual backbone does BLIP-3 adopt in its final model architecture?\nAnswer:",
+ " Swin Transformer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.675731658935547,
+ false
+ ]
+ ],
+ [
+ [
+ -4.2553486824035645,
+ false
+ ]
+ ],
+ [
+ [
+ -13.062836647033691,
+ false
+ ]
+ ],
+ [
+ [
+ -10.488447189331055,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.675731658935547,
+ false
+ ],
+ [
+ -4.2553486824035645,
+ false
+ ],
+ [
+ -13.062836647033691,
+ false
+ ],
+ [
+ -10.488447189331055,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b5bcbd479f622e10291741db1ae06b724eaf4596605d98967a94124c3e05ee1f",
+ "prompt_hash": "7666066f2b392e4a8e9a5a9555b97c12bfb3d74cc790dbbeeb685a4ead5a4e9d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 1,
+ "doc": {
+ "question": "What is the resolution setting used in Stage-1 pre-training of BLIP-3?",
+ "choices": [
+ "512×512",
+ "768×768",
+ "384×384",
+ "1024×1024"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the resolution setting used in Stage-1 pre-training of BLIP-3?\nAnswer:",
+ " 512×512"
+ ],
+ [
+ "Question:What is the resolution setting used in Stage-1 pre-training of BLIP-3?\nAnswer:",
+ " 768×768"
+ ],
+ [
+ "Question:What is the resolution setting used in Stage-1 pre-training of BLIP-3?\nAnswer:",
+ " 384×384"
+ ],
+ [
+ "Question:What is the resolution setting used in Stage-1 pre-training of BLIP-3?\nAnswer:",
+ " 1024×1024"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.709768295288086,
+ false
+ ]
+ ],
+ [
+ [
+ -11.038871765136719,
+ false
+ ]
+ ],
+ [
+ [
+ -9.17259407043457,
+ false
+ ]
+ ],
+ [
+ [
+ -9.50028133392334,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.709768295288086,
+ false
+ ],
+ [
+ -11.038871765136719,
+ false
+ ],
+ [
+ -9.17259407043457,
+ false
+ ],
+ [
+ -9.50028133392334,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "045c7272bddf719bedf51ac79bd65ce42cfc96d82f05c7df39f39b0df9db6e6c",
+ "prompt_hash": "4918b99003abab64cddcc0b88721cedecb32b9e2e0eb1c979ec04c7491a2cd31",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 2,
+ "doc": {
+ "question": "Which dataset in BLIP-3 contains OCR annotations with normalized bounding box coordinates?",
+ "choices": [
+ "BLIP3-KALE",
+ "BLIP3-OCR-200M",
+ "BLIP3-GROUNDING-50M",
+ "CC12M"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset in BLIP-3 contains OCR annotations with normalized bounding box coordinates?\nAnswer:",
+ " BLIP3-KALE"
+ ],
+ [
+ "Question:Which dataset in BLIP-3 contains OCR annotations with normalized bounding box coordinates?\nAnswer:",
+ " BLIP3-OCR-200M"
+ ],
+ [
+ "Question:Which dataset in BLIP-3 contains OCR annotations with normalized bounding box coordinates?\nAnswer:",
+ " BLIP3-GROUNDING-50M"
+ ],
+ [
+ "Question:Which dataset in BLIP-3 contains OCR annotations with normalized bounding box coordinates?\nAnswer:",
+ " CC12M"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.138568878173828,
+ false
+ ]
+ ],
+ [
+ [
+ -25.223148345947266,
+ false
+ ]
+ ],
+ [
+ [
+ -38.579444885253906,
+ false
+ ]
+ ],
+ [
+ [
+ -14.101336479187012,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.138568878173828,
+ false
+ ],
+ [
+ -25.223148345947266,
+ false
+ ],
+ [
+ -38.579444885253906,
+ false
+ ],
+ [
+ -14.101336479187012,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "619a54eebcbb65e9a554e0f8683983ec924bfc39bd0ee51320d9cb3bc54a604b",
+ "prompt_hash": "78d992367d26746c4bd1ffab8aea4e2f22a3e615f4ccac165fbf6405c24c652d",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 3,
+ "doc": {
+ "question": "What compression ratio is achieved using 128 query tokens per image patch in BLIP-3?",
+ "choices": [
+ "7.1",
+ "4.3",
+ "5.7",
+ "3.2"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What compression ratio is achieved using 128 query tokens per image patch in BLIP-3?\nAnswer:",
+ " 7.1"
+ ],
+ [
+ "Question:What compression ratio is achieved using 128 query tokens per image patch in BLIP-3?\nAnswer:",
+ " 4.3"
+ ],
+ [
+ "Question:What compression ratio is achieved using 128 query tokens per image patch in BLIP-3?\nAnswer:",
+ " 5.7"
+ ],
+ [
+ "Question:What compression ratio is achieved using 128 query tokens per image patch in BLIP-3?\nAnswer:",
+ " 3.2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.60501480102539,
+ false
+ ]
+ ],
+ [
+ [
+ -7.448394775390625,
+ false
+ ]
+ ],
+ [
+ [
+ -8.562888145446777,
+ false
+ ]
+ ],
+ [
+ [
+ -7.574812889099121,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.60501480102539,
+ false
+ ],
+ [
+ -7.448394775390625,
+ false
+ ],
+ [
+ -8.562888145446777,
+ false
+ ],
+ [
+ -7.574812889099121,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8a1dc3f2e4e496f0d0463c770073300554497925ad23abfcdbf88493bb9de4ef",
+ "prompt_hash": "9ff61c4ceac70aa3439370ca9eb84a6fa0eb42ec46aef4cde291ada9de0ae7e0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 4,
+ "doc": {
+ "question": "What is the purpose of using the IDL dataset in Stage-2 pre-training of BLIP-3?",
+ "choices": [
+ "To replace all OCR datasets",
+ "To reduce model size",
+ "To incorporate high-resolution, text-rich data",
+ "To train on low-resolution images"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of using the IDL dataset in Stage-2 pre-training of BLIP-3?\nAnswer:",
+ " To replace all OCR datasets"
+ ],
+ [
+ "Question:What is the purpose of using the IDL dataset in Stage-2 pre-training of BLIP-3?\nAnswer:",
+ " To reduce model size"
+ ],
+ [
+ "Question:What is the purpose of using the IDL dataset in Stage-2 pre-training of BLIP-3?\nAnswer:",
+ " To incorporate high-resolution, text-rich data"
+ ],
+ [
+ "Question:What is the purpose of using the IDL dataset in Stage-2 pre-training of BLIP-3?\nAnswer:",
+ " To train on low-resolution images"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.34673309326172,
+ false
+ ]
+ ],
+ [
+ [
+ -14.783613204956055,
+ false
+ ]
+ ],
+ [
+ [
+ -30.085460662841797,
+ false
+ ]
+ ],
+ [
+ [
+ -20.202451705932617,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.34673309326172,
+ false
+ ],
+ [
+ -14.783613204956055,
+ false
+ ],
+ [
+ -30.085460662841797,
+ false
+ ],
+ [
+ -20.202451705932617,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "15ba639b3196287a1bc4e4197b8e1450906d6820c36896aaf326934f9c1d6898",
+ "prompt_hash": "2e0f8d58fd075f10fc4e438fac22668496af64a1516b3a32de34b5c01e3ccefb",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 5,
+ "doc": {
+ "question": "What does 3D Gaussian Splatting represent a scene with?",
+ "choices": [
+ "A set of voxel grids",
+ "A mesh of triangle surfaces",
+ "A set of 3D Gaussian spheres",
+ "A point cloud with RGB colors"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does 3D Gaussian Splatting represent a scene with?\nAnswer:",
+ " A set of voxel grids"
+ ],
+ [
+ "Question:What does 3D Gaussian Splatting represent a scene with?\nAnswer:",
+ " A mesh of triangle surfaces"
+ ],
+ [
+ "Question:What does 3D Gaussian Splatting represent a scene with?\nAnswer:",
+ " A set of 3D Gaussian spheres"
+ ],
+ [
+ "Question:What does 3D Gaussian Splatting represent a scene with?\nAnswer:",
+ " A point cloud with RGB colors"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.526473999023438,
+ false
+ ]
+ ],
+ [
+ [
+ -24.38707160949707,
+ false
+ ]
+ ],
+ [
+ [
+ -16.09577178955078,
+ false
+ ]
+ ],
+ [
+ [
+ -22.316057205200195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.526473999023438,
+ false
+ ],
+ [
+ -24.38707160949707,
+ false
+ ],
+ [
+ -16.09577178955078,
+ false
+ ],
+ [
+ -22.316057205200195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "dd4a5ee8f2d007ae187f3424654dd86ea6cda4e8bbaf7e56500c82e124a7c513",
+ "prompt_hash": "c415bccea4a7598e919ef1fde9eb044b3e26d77ff94308108a13f35bb6ab859c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 6,
+ "doc": {
+ "question": "Which model is used to estimate point maps and confidence maps from two unposed images?",
+ "choices": [
+ "COLMAP",
+ "DUSt3R",
+ "NeRF",
+ "ReconFusion"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which model is used to estimate point maps and confidence maps from two unposed images?\nAnswer:",
+ " COLMAP"
+ ],
+ [
+ "Question:Which model is used to estimate point maps and confidence maps from two unposed images?\nAnswer:",
+ " DUSt3R"
+ ],
+ [
+ "Question:Which model is used to estimate point maps and confidence maps from two unposed images?\nAnswer:",
+ " NeRF"
+ ],
+ [
+ "Question:Which model is used to estimate point maps and confidence maps from two unposed images?\nAnswer:",
+ " ReconFusion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.845149993896484,
+ false
+ ]
+ ],
+ [
+ [
+ -29.306076049804688,
+ false
+ ]
+ ],
+ [
+ [
+ -6.025580406188965,
+ false
+ ]
+ ],
+ [
+ [
+ -18.57318115234375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.845149993896484,
+ false
+ ],
+ [
+ -29.306076049804688,
+ false
+ ],
+ [
+ -6.025580406188965,
+ false
+ ],
+ [
+ -18.57318115234375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b2dec3e5cd16ce90872988850d0cc8d1c4b882acaa98dd7d601dc17dba5089b8",
+ "prompt_hash": "92f92842ce1999ffef5a517b2f251f296096283598a93d67be04f043ea149b13",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 7,
+ "doc": {
+ "question": "What is the purpose of LPIPS loss in the ReconX framework?",
+ "choices": [
+ "To improve camera parameter estimation",
+ "To speed up rendering time",
+ "To remove artifacts and enhance visual quality",
+ "To convert 2D images into 3D meshes"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of LPIPS loss in the ReconX framework?\nAnswer:",
+ " To improve camera parameter estimation"
+ ],
+ [
+ "Question:What is the purpose of LPIPS loss in the ReconX framework?\nAnswer:",
+ " To speed up rendering time"
+ ],
+ [
+ "Question:What is the purpose of LPIPS loss in the ReconX framework?\nAnswer:",
+ " To remove artifacts and enhance visual quality"
+ ],
+ [
+ "Question:What is the purpose of LPIPS loss in the ReconX framework?\nAnswer:",
+ " To convert 2D images into 3D meshes"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.268604278564453,
+ false
+ ]
+ ],
+ [
+ [
+ -18.12425994873047,
+ false
+ ]
+ ],
+ [
+ [
+ -19.979331970214844,
+ false
+ ]
+ ],
+ [
+ [
+ -22.864578247070312,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.268604278564453,
+ false
+ ],
+ [
+ -18.12425994873047,
+ false
+ ],
+ [
+ -19.979331970214844,
+ false
+ ],
+ [
+ -22.864578247070312,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ebb7121f9e4154a909e5be8c0b815ad2195c2e4708a564cc93179278ebbc4aae",
+ "prompt_hash": "9629e065daaf6fa4ad5967a730b0a0e377373f21e5ca5baf7a961db8fe876e77",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 8,
+ "doc": {
+ "question": "What strategy does ReconX use to generate a full 360-degree scene from two initial images?",
+ "choices": [
+ "Parallel rendering with depth fusion",
+ "End-to-end mesh interpolation",
+ "Incremental generation with sliding window",
+ "Single-shot GAN-based extrapolation"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What strategy does ReconX use to generate a full 360-degree scene from two initial images?\nAnswer:",
+ " Parallel rendering with depth fusion"
+ ],
+ [
+ "Question:What strategy does ReconX use to generate a full 360-degree scene from two initial images?\nAnswer:",
+ " End-to-end mesh interpolation"
+ ],
+ [
+ "Question:What strategy does ReconX use to generate a full 360-degree scene from two initial images?\nAnswer:",
+ " Incremental generation with sliding window"
+ ],
+ [
+ "Question:What strategy does ReconX use to generate a full 360-degree scene from two initial images?\nAnswer:",
+ " Single-shot GAN-based extrapolation"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -30.16541290283203,
+ false
+ ]
+ ],
+ [
+ [
+ -27.562294006347656,
+ false
+ ]
+ ],
+ [
+ [
+ -26.734451293945312,
+ false
+ ]
+ ],
+ [
+ [
+ -32.97144317626953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -30.16541290283203,
+ false
+ ],
+ [
+ -27.562294006347656,
+ false
+ ],
+ [
+ -26.734451293945312,
+ false
+ ],
+ [
+ -32.97144317626953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "660b41f049d1b1fb1c7a164b47dee63d0ed2c22495e6e71d35b870d834f766ec",
+ "prompt_hash": "1468ad8097c18ba33ff34824ec5df3f4ac9b91a9ef2e5248ad09a38e78bae68b",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 9,
+ "doc": {
+ "question": "Which video diffusion model is used as the backbone in ReconX?",
+ "choices": [
+ "VideoCrafter",
+ "Stable Video Diffusion",
+ "CameraCtrl",
+ "DynamiCrafter"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which video diffusion model is used as the backbone in ReconX?\nAnswer:",
+ " VideoCrafter"
+ ],
+ [
+ "Question:Which video diffusion model is used as the backbone in ReconX?\nAnswer:",
+ " Stable Video Diffusion"
+ ],
+ [
+ "Question:Which video diffusion model is used as the backbone in ReconX?\nAnswer:",
+ " CameraCtrl"
+ ],
+ [
+ "Question:Which video diffusion model is used as the backbone in ReconX?\nAnswer:",
+ " DynamiCrafter"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.292013645172119,
+ false
+ ]
+ ],
+ [
+ [
+ -6.873766899108887,
+ false
+ ]
+ ],
+ [
+ [
+ -21.800487518310547,
+ false
+ ]
+ ],
+ [
+ [
+ -11.891139030456543,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.292013645172119,
+ false
+ ],
+ [
+ -6.873766899108887,
+ false
+ ],
+ [
+ -21.800487518310547,
+ false
+ ],
+ [
+ -11.891139030456543,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b42a8e92a77a1c8d0c6261ba78d517807f2678157ad83cfd72f3a442a8c845d0",
+ "prompt_hash": "572d418b0d2a31a1c00f57a6a44004db49c30579751ea686d642b8eb36fc3316",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 10,
+ "doc": {
+ "question": "What is the maximum context length of the ProLong model?",
+ "choices": [
+ "128K tokens",
+ "256K tokens",
+ "512K tokens",
+ "1M tokens"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the maximum context length of the ProLong model?\nAnswer:",
+ " 128K tokens"
+ ],
+ [
+ "Question:What is the maximum context length of the ProLong model?\nAnswer:",
+ " 256K tokens"
+ ],
+ [
+ "Question:What is the maximum context length of the ProLong model?\nAnswer:",
+ " 512K tokens"
+ ],
+ [
+ "Question:What is the maximum context length of the ProLong model?\nAnswer:",
+ " 1M tokens"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.84793758392334,
+ false
+ ]
+ ],
+ [
+ [
+ -10.790325164794922,
+ false
+ ]
+ ],
+ [
+ [
+ -11.27653694152832,
+ false
+ ]
+ ],
+ [
+ [
+ -11.506118774414062,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.84793758392334,
+ false
+ ],
+ [
+ -10.790325164794922,
+ false
+ ],
+ [
+ -11.27653694152832,
+ false
+ ],
+ [
+ -11.506118774414062,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6bd3a0f25090b20a1e0177912d8e51a2c4e466dfae0421ce4339272d8130eb1f",
+ "prompt_hash": "5ed97cc7f41711922ee4791071f99ca62ff1873a03647db5a3d2b96b031aea3d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 11,
+ "doc": {
+ "question": "Which instruction dataset was used for fine-tuning the final ProLong model?",
+ "choices": [
+ "ShareGPT",
+ "Tulu-v2",
+ "UltraChat",
+ "OpenWebMath"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which instruction dataset was used for fine-tuning the final ProLong model?\nAnswer:",
+ " ShareGPT"
+ ],
+ [
+ "Question:Which instruction dataset was used for fine-tuning the final ProLong model?\nAnswer:",
+ " Tulu-v2"
+ ],
+ [
+ "Question:Which instruction dataset was used for fine-tuning the final ProLong model?\nAnswer:",
+ " UltraChat"
+ ],
+ [
+ "Question:Which instruction dataset was used for fine-tuning the final ProLong model?\nAnswer:",
+ " OpenWebMath"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.077630996704102,
+ false
+ ]
+ ],
+ [
+ [
+ -21.395830154418945,
+ false
+ ]
+ ],
+ [
+ [
+ -14.02519702911377,
+ false
+ ]
+ ],
+ [
+ [
+ -15.507872581481934,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.077630996704102,
+ false
+ ],
+ [
+ -21.395830154418945,
+ false
+ ],
+ [
+ -14.02519702911377,
+ false
+ ],
+ [
+ -15.507872581481934,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d9c445f56880a5c37efde6f87352ce2d27f44e458234234fbdc681d790782643",
+ "prompt_hash": "1bbe848582e84fdbbcbc81b71fdc1ef569d05912bfdf37fef3b48ffca0d3b6c5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 12,
+ "doc": {
+ "question": "Which evaluation suite was used to guide model development in the study?",
+ "choices": [
+ "LongBench",
+ "RULER",
+ "HELMET",
+ "Needle-in-a-Haystack"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which evaluation suite was used to guide model development in the study?\nAnswer:",
+ " LongBench"
+ ],
+ [
+ "Question:Which evaluation suite was used to guide model development in the study?\nAnswer:",
+ " RULER"
+ ],
+ [
+ "Question:Which evaluation suite was used to guide model development in the study?\nAnswer:",
+ " HELMET"
+ ],
+ [
+ "Question:Which evaluation suite was used to guide model development in the study?\nAnswer:",
+ " Needle-in-a-Haystack"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.630099296569824,
+ false
+ ]
+ ],
+ [
+ [
+ -14.044626235961914,
+ false
+ ]
+ ],
+ [
+ [
+ -19.061573028564453,
+ false
+ ]
+ ],
+ [
+ [
+ -15.852989196777344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.630099296569824,
+ false
+ ],
+ [
+ -14.044626235961914,
+ false
+ ],
+ [
+ -19.061573028564453,
+ false
+ ],
+ [
+ -15.852989196777344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9520905240053a0caebe5089076ec600a51f63c1d60f474d12b2763c66cb2395",
+ "prompt_hash": "04b7839e2150454279db88bec3608f728692620042a3f4c61bfa939d32a6b33f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 13,
+ "doc": {
+ "question": "How much training data (in tokens) was used for each of the two stages of ProLong’s long-context training?",
+ "choices": [
+ "10B and 20B",
+ "20B and 20B",
+ "40B and 80B",
+ "80B and 40B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How much training data (in tokens) was used for each of the two stages of ProLong’s long-context training?\nAnswer:",
+ " 10B and 20B"
+ ],
+ [
+ "Question:How much training data (in tokens) was used for each of the two stages of ProLong’s long-context training?\nAnswer:",
+ " 20B and 20B"
+ ],
+ [
+ "Question:How much training data (in tokens) was used for each of the two stages of ProLong’s long-context training?\nAnswer:",
+ " 40B and 80B"
+ ],
+ [
+ "Question:How much training data (in tokens) was used for each of the two stages of ProLong’s long-context training?\nAnswer:",
+ " 80B and 40B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.596946716308594,
+ false
+ ]
+ ],
+ [
+ [
+ -19.108856201171875,
+ false
+ ]
+ ],
+ [
+ [
+ -19.2984676361084,
+ false
+ ]
+ ],
+ [
+ [
+ -19.023998260498047,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.596946716308594,
+ false
+ ],
+ [
+ -19.108856201171875,
+ false
+ ],
+ [
+ -19.2984676361084,
+ false
+ ],
+ [
+ -19.023998260498047,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4af8161e010e9c247f927780cb80c79d9ffd5f75b9e950b0b5bc253189bf9764",
+ "prompt_hash": "5461acda3139a31415a0f20f8e1d4369b1ed742344f5ab5cf4bcec6043d81d69",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 14,
+ "doc": {
+ "question": "Which types of synthetic data were used in the synthetic instruction dataset?",
+ "choices": [
+ "Synthetic QA, Synthetic Code, Synthetic Dialogue",
+ "Synthetic Dialogue, Synthetic RAG, Synthetic Summary",
+ "Synthetic QA, Synthetic RAG, Synthetic Summarization",
+ "Synthetic ICL, Synthetic Recall, Synthetic QA"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which types of synthetic data were used in the synthetic instruction dataset?\nAnswer:",
+ " Synthetic QA, Synthetic Code, Synthetic Dialogue"
+ ],
+ [
+ "Question:Which types of synthetic data were used in the synthetic instruction dataset?\nAnswer:",
+ " Synthetic Dialogue, Synthetic RAG, Synthetic Summary"
+ ],
+ [
+ "Question:Which types of synthetic data were used in the synthetic instruction dataset?\nAnswer:",
+ " Synthetic QA, Synthetic RAG, Synthetic Summarization"
+ ],
+ [
+ "Question:Which types of synthetic data were used in the synthetic instruction dataset?\nAnswer:",
+ " Synthetic ICL, Synthetic Recall, Synthetic QA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.92030906677246,
+ false
+ ]
+ ],
+ [
+ [
+ -34.356327056884766,
+ false
+ ]
+ ],
+ [
+ [
+ -28.06037139892578,
+ false
+ ]
+ ],
+ [
+ [
+ -40.81163787841797,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.92030906677246,
+ false
+ ],
+ [
+ -34.356327056884766,
+ false
+ ],
+ [
+ -28.06037139892578,
+ false
+ ],
+ [
+ -40.81163787841797,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5ad8905a53cc56a44a6b84a7ef617c5990f1c64bd54c58cf1c065817704305fe",
+ "prompt_hash": "f8f61b15ee4f985cd911f32d4ff0a4818a7512f7347cdf880842fa68ac88375a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 15,
+ "doc": {
+ "question": "What is the compression rate achieved by SparseVLM when applied to LLaVA?",
+ "choices": [
+ "3.0×",
+ "4.5×",
+ "5.2×",
+ "6.7×"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the compression rate achieved by SparseVLM when applied to LLaVA?\nAnswer:",
+ " 3.0×"
+ ],
+ [
+ "Question:What is the compression rate achieved by SparseVLM when applied to LLaVA?\nAnswer:",
+ " 4.5×"
+ ],
+ [
+ "Question:What is the compression rate achieved by SparseVLM when applied to LLaVA?\nAnswer:",
+ " 5.2×"
+ ],
+ [
+ "Question:What is the compression rate achieved by SparseVLM when applied to LLaVA?\nAnswer:",
+ " 6.7×"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.995526313781738,
+ false
+ ]
+ ],
+ [
+ [
+ -13.193582534790039,
+ false
+ ]
+ ],
+ [
+ [
+ -14.285469055175781,
+ false
+ ]
+ ],
+ [
+ [
+ -14.473133087158203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.995526313781738,
+ false
+ ],
+ [
+ -13.193582534790039,
+ false
+ ],
+ [
+ -14.285469055175781,
+ false
+ ],
+ [
+ -14.473133087158203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e84b7963ea419bea9ca94f5814b269c02d1af63fcc9e84bd65002b759c716305",
+ "prompt_hash": "b29391db41c8ca6e2e473c9d9bbfafab45904c0f0c1d3514ceea90c7a112f48b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 16,
+ "doc": {
+ "question": "How many visual tokens does a 672×672 image produce in LLaVA?",
+ "choices": [
+ "1152",
+ "1728",
+ "2304",
+ "2880"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many visual tokens does a 672×672 image produce in LLaVA?\nAnswer:",
+ " 1152"
+ ],
+ [
+ "Question:How many visual tokens does a 672×672 image produce in LLaVA?\nAnswer:",
+ " 1728"
+ ],
+ [
+ "Question:How many visual tokens does a 672×672 image produce in LLaVA?\nAnswer:",
+ " 2304"
+ ],
+ [
+ "Question:How many visual tokens does a 672×672 image produce in LLaVA?\nAnswer:",
+ " 2880"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.932914733886719,
+ false
+ ]
+ ],
+ [
+ [
+ -8.985906600952148,
+ false
+ ]
+ ],
+ [
+ [
+ -10.561576843261719,
+ false
+ ]
+ ],
+ [
+ [
+ -12.035518646240234,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.932914733886719,
+ false
+ ],
+ [
+ -8.985906600952148,
+ false
+ ],
+ [
+ -10.561576843261719,
+ false
+ ],
+ [
+ -12.035518646240234,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "001c1f6637785b8b737ff0667f9b015e6e4fc1f8b49ceeb47035a2492919bcf1",
+ "prompt_hash": "e36d188bfadeccdc2bd78dc9588fc310ae462be37b6c216a813eab56c7b0c339",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 17,
+ "doc": {
+ "question": "What is the FLOPs cost of estimating visual token significance using equation (4) in SparseVLM?",
+ "choices": [
+ "L_t × D",
+ "L_t × L_v",
+ "L_v × D",
+ "D × D"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the FLOPs cost of estimating visual token significance using equation (4) in SparseVLM?\nAnswer:",
+ " L_t × D"
+ ],
+ [
+ "Question:What is the FLOPs cost of estimating visual token significance using equation (4) in SparseVLM?\nAnswer:",
+ " L_t × L_v"
+ ],
+ [
+ "Question:What is the FLOPs cost of estimating visual token significance using equation (4) in SparseVLM?\nAnswer:",
+ " L_v × D"
+ ],
+ [
+ "Question:What is the FLOPs cost of estimating visual token significance using equation (4) in SparseVLM?\nAnswer:",
+ " D × D"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.34497833251953,
+ false
+ ]
+ ],
+ [
+ [
+ -29.905765533447266,
+ false
+ ]
+ ],
+ [
+ [
+ -30.7650089263916,
+ false
+ ]
+ ],
+ [
+ [
+ -23.531475067138672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.34497833251953,
+ false
+ ],
+ [
+ -29.905765533447266,
+ false
+ ],
+ [
+ -30.7650089263916,
+ false
+ ],
+ [
+ -23.531475067138672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "427f5c9299aca84c17282a8c2538ccdf37e16cdbd46bac5ee4306f9322130cc8",
+ "prompt_hash": "e48ba01c51a885ea8cb2e27a8e436e0547ffbb3aba9039da3aabdf7a762295cd",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 18,
+ "doc": {
+ "question": "Which operation is used in SparseVLM to reconstruct pruned tokens?",
+ "choices": [
+ "Max pooling",
+ "Concatenation",
+ "Element-wise sum",
+ "Average pooling"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which operation is used in SparseVLM to reconstruct pruned tokens?\nAnswer:",
+ " Max pooling"
+ ],
+ [
+ "Question:Which operation is used in SparseVLM to reconstruct pruned tokens?\nAnswer:",
+ " Concatenation"
+ ],
+ [
+ "Question:Which operation is used in SparseVLM to reconstruct pruned tokens?\nAnswer:",
+ " Element-wise sum"
+ ],
+ [
+ "Question:Which operation is used in SparseVLM to reconstruct pruned tokens?\nAnswer:",
+ " Average pooling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.27938461303711,
+ false
+ ]
+ ],
+ [
+ [
+ -6.385560989379883,
+ false
+ ]
+ ],
+ [
+ [
+ -13.457985877990723,
+ false
+ ]
+ ],
+ [
+ [
+ -10.333206176757812,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.27938461303711,
+ false
+ ],
+ [
+ -6.385560989379883,
+ false
+ ],
+ [
+ -13.457985877990723,
+ false
+ ],
+ [
+ -10.333206176757812,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "986588274ee82797dcbabf5ed38c894840b1505ad4d98b6a472e3cb3047f63a7",
+ "prompt_hash": "f35904ed873ad4e823f6e80a19af23dde62393fcecffd0f3290779eaf30aec39",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 19,
+ "doc": {
+ "question": "What benchmark did SparseVLM outperform FastV by 14.7%?",
+ "choices": [
+ "MME",
+ "VideoLLaVA",
+ "POPE",
+ "TextVQA"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What benchmark did SparseVLM outperform FastV by 14.7%?\nAnswer:",
+ " MME"
+ ],
+ [
+ "Question:What benchmark did SparseVLM outperform FastV by 14.7%?\nAnswer:",
+ " VideoLLaVA"
+ ],
+ [
+ "Question:What benchmark did SparseVLM outperform FastV by 14.7%?\nAnswer:",
+ " POPE"
+ ],
+ [
+ "Question:What benchmark did SparseVLM outperform FastV by 14.7%?\nAnswer:",
+ " TextVQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.268535614013672,
+ false
+ ]
+ ],
+ [
+ [
+ -15.398014068603516,
+ false
+ ]
+ ],
+ [
+ [
+ -12.210933685302734,
+ false
+ ]
+ ],
+ [
+ [
+ -10.981067657470703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.268535614013672,
+ false
+ ],
+ [
+ -15.398014068603516,
+ false
+ ],
+ [
+ -12.210933685302734,
+ false
+ ],
+ [
+ -10.981067657470703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0b741115768342373684aeb569fac532aaada87f2181b7cf676966bbba338df6",
+ "prompt_hash": "a95956774e888436810c1a32de4020cdeca7454bce0d9307ed2c3bec6e59f5b7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 20,
+ "doc": {
+ "question": "What type of input does the SeeAct-V framework use for environmental observation?",
+ "choices": [
+ "Only HTML representations",
+ "Only a11y trees",
+ "Only screenshots",
+ "Only OCR-extracted text"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What type of input does the SeeAct-V framework use for environmental observation?\nAnswer:",
+ " Only HTML representations"
+ ],
+ [
+ "Question:What type of input does the SeeAct-V framework use for environmental observation?\nAnswer:",
+ " Only a11y trees"
+ ],
+ [
+ "Question:What type of input does the SeeAct-V framework use for environmental observation?\nAnswer:",
+ " Only screenshots"
+ ],
+ [
+ "Question:What type of input does the SeeAct-V framework use for environmental observation?\nAnswer:",
+ " Only OCR-extracted text"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.496234893798828,
+ false
+ ]
+ ],
+ [
+ [
+ -39.33226013183594,
+ false
+ ]
+ ],
+ [
+ [
+ -18.374658584594727,
+ false
+ ]
+ ],
+ [
+ [
+ -31.303333282470703,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.496234893798828,
+ false
+ ],
+ [
+ -39.33226013183594,
+ false
+ ],
+ [
+ -18.374658584594727,
+ false
+ ],
+ [
+ -31.303333282470703,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aa301fb9f958bcef20ccba004d1aa09972f4f1dc19d619a987440a68fc8746d4",
+ "prompt_hash": "823e0003960cbfe7d48b670cb66f1a24a2fd581850fa2e1b923c7628f1109837",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 21,
+ "doc": {
+ "question": "How many GUI elements are included in the largest GUI visual grounding dataset released in the study?",
+ "choices": [
+ "1 million",
+ "5 million",
+ "10 million",
+ "15 million"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many GUI elements are included in the largest GUI visual grounding dataset released in the study?\nAnswer:",
+ " 1 million"
+ ],
+ [
+ "Question:How many GUI elements are included in the largest GUI visual grounding dataset released in the study?\nAnswer:",
+ " 5 million"
+ ],
+ [
+ "Question:How many GUI elements are included in the largest GUI visual grounding dataset released in the study?\nAnswer:",
+ " 10 million"
+ ],
+ [
+ "Question:How many GUI elements are included in the largest GUI visual grounding dataset released in the study?\nAnswer:",
+ " 15 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.785828590393066,
+ false
+ ]
+ ],
+ [
+ [
+ -15.054448127746582,
+ false
+ ]
+ ],
+ [
+ [
+ -16.23858642578125,
+ false
+ ]
+ ],
+ [
+ [
+ -16.450674057006836,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.785828590393066,
+ false
+ ],
+ [
+ -15.054448127746582,
+ false
+ ],
+ [
+ -16.23858642578125,
+ false
+ ],
+ [
+ -16.450674057006836,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "daec542ae0af77d8dddf88e8935e14bbfc857bc7b66e2264141684dd8c7ea376",
+ "prompt_hash": "c86d21ad30564570be1766e9603d1fddc3be2f337323ff7815cf2978aa875876",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 22,
+ "doc": {
+ "question": "What architecture is adapted as the backbone model for GUI visual grounding in the study?",
+ "choices": [
+ "GPT-4",
+ "LLaVA-NeXT 7B",
+ "Qwen2-VL",
+ "Vicuna 13B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What architecture is adapted as the backbone model for GUI visual grounding in the study?\nAnswer:",
+ " GPT-4"
+ ],
+ [
+ "Question:What architecture is adapted as the backbone model for GUI visual grounding in the study?\nAnswer:",
+ " LLaVA-NeXT 7B"
+ ],
+ [
+ "Question:What architecture is adapted as the backbone model for GUI visual grounding in the study?\nAnswer:",
+ " Qwen2-VL"
+ ],
+ [
+ "Question:What architecture is adapted as the backbone model for GUI visual grounding in the study?\nAnswer:",
+ " Vicuna 13B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.373972415924072,
+ false
+ ]
+ ],
+ [
+ [
+ -15.27973747253418,
+ false
+ ]
+ ],
+ [
+ [
+ -12.916516304016113,
+ false
+ ]
+ ],
+ [
+ [
+ -11.244343757629395,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.373972415924072,
+ false
+ ],
+ [
+ -15.27973747253418,
+ false
+ ],
+ [
+ -12.916516304016113,
+ false
+ ],
+ [
+ -11.244343757629395,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "74dfb633d96eacff71727b3a2f4ae38511e5b3b90af1d6c7d7a1150195110538",
+ "prompt_hash": "78e43b3878861c78c92a51f4f992c566edc05dd35ea23d83873e838cffcf024e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 23,
+ "doc": {
+ "question": "What is the main goal of the UGround model in the SeeAct-V framework?",
+ "choices": [
+ "Classify GUI element types",
+ "Predict text descriptions",
+ "Produce coordinates for pixel-level actions",
+ "Render GUI screenshots"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main goal of the UGround model in the SeeAct-V framework?\nAnswer:",
+ " Classify GUI element types"
+ ],
+ [
+ "Question:What is the main goal of the UGround model in the SeeAct-V framework?\nAnswer:",
+ " Predict text descriptions"
+ ],
+ [
+ "Question:What is the main goal of the UGround model in the SeeAct-V framework?\nAnswer:",
+ " Produce coordinates for pixel-level actions"
+ ],
+ [
+ "Question:What is the main goal of the UGround model in the SeeAct-V framework?\nAnswer:",
+ " Render GUI screenshots"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.745594024658203,
+ false
+ ]
+ ],
+ [
+ [
+ -21.0755558013916,
+ false
+ ]
+ ],
+ [
+ [
+ -34.57710647583008,
+ false
+ ]
+ ],
+ [
+ [
+ -25.426074981689453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.745594024658203,
+ false
+ ],
+ [
+ -21.0755558013916,
+ false
+ ],
+ [
+ -34.57710647583008,
+ false
+ ],
+ [
+ -25.426074981689453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "12bb44912ba4c24504c8bd3e83bf31a43b9a42a7afa0ae3be9c46fd4a0308e03",
+ "prompt_hash": "f437c92fda54d10a17231303b2a8d999898a367df51c6c1c75b6078872bf2be3",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 24,
+ "doc": {
+ "question": "What resolution limit does SeeAct-V's visual grounding model support when using the AnyRes technique?",
+ "choices": [
+ "512x512",
+ "772x772",
+ "1344x1344 (landscape)",
+ "2048x2048 (landscape)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What resolution limit does SeeAct-V's visual grounding model support when using the AnyRes technique?\nAnswer:",
+ " 512x512"
+ ],
+ [
+ "Question:What resolution limit does SeeAct-V's visual grounding model support when using the AnyRes technique?\nAnswer:",
+ " 772x772"
+ ],
+ [
+ "Question:What resolution limit does SeeAct-V's visual grounding model support when using the AnyRes technique?\nAnswer:",
+ " 1344x1344 (landscape)"
+ ],
+ [
+ "Question:What resolution limit does SeeAct-V's visual grounding model support when using the AnyRes technique?\nAnswer:",
+ " 2048x2048 (landscape)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.290376663208008,
+ false
+ ]
+ ],
+ [
+ [
+ -15.053295135498047,
+ false
+ ]
+ ],
+ [
+ [
+ -29.09170150756836,
+ false
+ ]
+ ],
+ [
+ [
+ -23.283409118652344,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.290376663208008,
+ false
+ ],
+ [
+ -15.053295135498047,
+ false
+ ],
+ [
+ -29.09170150756836,
+ false
+ ],
+ [
+ -23.283409118652344,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "44999522dd07a93a50d4214c5b333bde9f92738d5dde3a3876ed67215c66efdf",
+ "prompt_hash": "b4627e287695c06b3915437e52bbb8cde724b0cdd88abc95f1bb25e1f4073a47",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 25,
+ "doc": {
+ "question": "What is the name of the regularization technique introduced to align diffusion transformer representations with self-supervised visual representations?",
+ "choices": [
+ "REPA",
+ "DiT-Reg",
+ "AlignFormer",
+ "RepMatch"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the name of the regularization technique introduced to align diffusion transformer representations with self-supervised visual representations?\nAnswer:",
+ " REPA"
+ ],
+ [
+ "Question:What is the name of the regularization technique introduced to align diffusion transformer representations with self-supervised visual representations?\nAnswer:",
+ " DiT-Reg"
+ ],
+ [
+ "Question:What is the name of the regularization technique introduced to align diffusion transformer representations with self-supervised visual representations?\nAnswer:",
+ " AlignFormer"
+ ],
+ [
+ "Question:What is the name of the regularization technique introduced to align diffusion transformer representations with self-supervised visual representations?\nAnswer:",
+ " RepMatch"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.515361785888672,
+ false
+ ]
+ ],
+ [
+ [
+ -18.544164657592773,
+ false
+ ]
+ ],
+ [
+ [
+ -15.894171714782715,
+ false
+ ]
+ ],
+ [
+ [
+ -13.876924514770508,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.515361785888672,
+ false
+ ],
+ [
+ -18.544164657592773,
+ false
+ ],
+ [
+ -15.894171714782715,
+ false
+ ],
+ [
+ -13.876924514770508,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3ee4e4ab53f986628b52cd6bb99ed0147acb5766955b4d3d7fb920a44121297c",
+ "prompt_hash": "687ed16281f8925d0a1c45be2c87bdce626b02b4b519260083601e69941a0f42",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 26,
+ "doc": {
+ "question": "Which self-supervised vision model is primarily used as the target representation in the alignment technique?",
+ "choices": [
+ "MoCov3",
+ "DINOv2",
+ "CLIP",
+ "MAE"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which self-supervised vision model is primarily used as the target representation in the alignment technique?\nAnswer:",
+ " MoCov3"
+ ],
+ [
+ "Question:Which self-supervised vision model is primarily used as the target representation in the alignment technique?\nAnswer:",
+ " DINOv2"
+ ],
+ [
+ "Question:Which self-supervised vision model is primarily used as the target representation in the alignment technique?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:Which self-supervised vision model is primarily used as the target representation in the alignment technique?\nAnswer:",
+ " MAE"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -14.29078483581543,
+ false
+ ]
+ ],
+ [
+ [
+ -8.164963722229004,
+ false
+ ]
+ ],
+ [
+ [
+ -5.263064861297607,
+ false
+ ]
+ ],
+ [
+ [
+ -9.286040306091309,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -14.29078483581543,
+ false
+ ],
+ [
+ -8.164963722229004,
+ false
+ ],
+ [
+ -5.263064861297607,
+ false
+ ],
+ [
+ -9.286040306091309,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "302fc4cb06f9463f71a703d4bc595a3ee25556770ee3a821ded508247f40adb3",
+ "prompt_hash": "bba329b298440d454b59afe8280863876933ba614b9e94ca1ea26dab7f1f6e31",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 27,
+ "doc": {
+ "question": "In the alignment loss function \\\\( \\\\mathcal{L}_{\\\\text{REPA}} \\\\), what does \\\\( h_{\\\\phi} \\\\) represent?",
+ "choices": [
+ "The noise schedule for the diffusion model",
+ "The pretrained self-supervised encoder",
+ "A trainable projection head applied to the model’s hidden state",
+ "The output decoder for pixel reconstruction"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the alignment loss function \\\\( \\\\mathcal{L}_{\\\\text{REPA}} \\\\), what does \\\\( h_{\\\\phi} \\\\) represent?\nAnswer:",
+ " The noise schedule for the diffusion model"
+ ],
+ [
+ "Question:In the alignment loss function \\\\( \\\\mathcal{L}_{\\\\text{REPA}} \\\\), what does \\\\( h_{\\\\phi} \\\\) represent?\nAnswer:",
+ " The pretrained self-supervised encoder"
+ ],
+ [
+ "Question:In the alignment loss function \\\\( \\\\mathcal{L}_{\\\\text{REPA}} \\\\), what does \\\\( h_{\\\\phi} \\\\) represent?\nAnswer:",
+ " A trainable projection head applied to the model’s hidden state"
+ ],
+ [
+ "Question:In the alignment loss function \\\\( \\\\mathcal{L}_{\\\\text{REPA}} \\\\), what does \\\\( h_{\\\\phi} \\\\) represent?\nAnswer:",
+ " The output decoder for pixel reconstruction"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.494346618652344,
+ false
+ ]
+ ],
+ [
+ [
+ -24.465351104736328,
+ false
+ ]
+ ],
+ [
+ [
+ -36.944461822509766,
+ false
+ ]
+ ],
+ [
+ [
+ -27.903696060180664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.494346618652344,
+ false
+ ],
+ [
+ -24.465351104736328,
+ false
+ ],
+ [
+ -36.944461822509766,
+ false
+ ],
+ [
+ -27.903696060180664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7eda7cc49ca61ccb89cd5bc8bef03e5cf4a2dd2198930084c317286f3d7d838d",
+ "prompt_hash": "164c1e1e79731091686c60d1fca49beedfd7b53c4b0e30543f70ebf7cc207f80",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 28,
+ "doc": {
+ "question": "What metric is used to measure the representation alignment between diffusion models and visual encoders?",
+ "choices": [
+ "CKNNA",
+ "SSIM",
+ "BLEU",
+ "mIoU"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What metric is used to measure the representation alignment between diffusion models and visual encoders?\nAnswer:",
+ " CKNNA"
+ ],
+ [
+ "Question:What metric is used to measure the representation alignment between diffusion models and visual encoders?\nAnswer:",
+ " SSIM"
+ ],
+ [
+ "Question:What metric is used to measure the representation alignment between diffusion models and visual encoders?\nAnswer:",
+ " BLEU"
+ ],
+ [
+ "Question:What metric is used to measure the representation alignment between diffusion models and visual encoders?\nAnswer:",
+ " mIoU"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.04317283630371,
+ false
+ ]
+ ],
+ [
+ [
+ -9.316469192504883,
+ false
+ ]
+ ],
+ [
+ [
+ -8.256689071655273,
+ false
+ ]
+ ],
+ [
+ [
+ -9.686279296875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.04317283630371,
+ false
+ ],
+ [
+ -9.316469192504883,
+ false
+ ],
+ [
+ -8.256689071655273,
+ false
+ ],
+ [
+ -9.686279296875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ca6730a4757243709ae010c369b198ab38bc98dcb932e68eba9d69a57d68f135",
+ "prompt_hash": "7be36a15d3cdbead4f303aa0c662d0572c786ce2e745c8b5f261d660fdd01658",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 29,
+ "doc": {
+ "question": "What result does SiT-XL/2 with REPA achieve on ImageNet generation after 400K training iterations?",
+ "choices": [
+ "FID = 7.9",
+ "FID = 6.1",
+ "FID = 9.4",
+ "FID = 8.2"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What result does SiT-XL/2 with REPA achieve on ImageNet generation after 400K training iterations?\nAnswer:",
+ " FID = 7.9"
+ ],
+ [
+ "Question:What result does SiT-XL/2 with REPA achieve on ImageNet generation after 400K training iterations?\nAnswer:",
+ " FID = 6.1"
+ ],
+ [
+ "Question:What result does SiT-XL/2 with REPA achieve on ImageNet generation after 400K training iterations?\nAnswer:",
+ " FID = 9.4"
+ ],
+ [
+ "Question:What result does SiT-XL/2 with REPA achieve on ImageNet generation after 400K training iterations?\nAnswer:",
+ " FID = 8.2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.3294677734375,
+ false
+ ]
+ ],
+ [
+ [
+ -17.16952896118164,
+ false
+ ]
+ ],
+ [
+ [
+ -17.139789581298828,
+ false
+ ]
+ ],
+ [
+ [
+ -16.957942962646484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.3294677734375,
+ false
+ ],
+ [
+ -17.16952896118164,
+ false
+ ],
+ [
+ -17.139789581298828,
+ false
+ ],
+ [
+ -16.957942962646484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a18032bcfa225f4257b5a67339d7271ac281ee913ea58e73e60a45110b8db3de",
+ "prompt_hash": "2345a33092832baac432af6129e7686948c98670a16dece2c28b9c34c1acc9b9",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 30,
+ "doc": {
+ "question": "What does a shortcut model condition on during training?",
+ "choices": [
+ "The initial noise sample and model architecture",
+ "The timestep, desired step size, and data distribution",
+ "The final data sample and noise vector",
+ "The number of training iterations and dropout rate"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does a shortcut model condition on during training?\nAnswer:",
+ " The initial noise sample and model architecture"
+ ],
+ [
+ "Question:What does a shortcut model condition on during training?\nAnswer:",
+ " The timestep, desired step size, and data distribution"
+ ],
+ [
+ "Question:What does a shortcut model condition on during training?\nAnswer:",
+ " The final data sample and noise vector"
+ ],
+ [
+ "Question:What does a shortcut model condition on during training?\nAnswer:",
+ " The number of training iterations and dropout rate"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.483652114868164,
+ false
+ ]
+ ],
+ [
+ [
+ -38.53839874267578,
+ false
+ ]
+ ],
+ [
+ [
+ -33.33509063720703,
+ false
+ ]
+ ],
+ [
+ [
+ -24.341190338134766,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.483652114868164,
+ false
+ ],
+ [
+ -38.53839874267578,
+ false
+ ],
+ [
+ -33.33509063720703,
+ false
+ ],
+ [
+ -24.341190338134766,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "09ed837d4c41efc00c8761f112c306cb866cc911cb1f9d6a38ef71e3c6817598",
+ "prompt_hash": "aa62e6cbd6fd570b87da9fc9505f17bee13ac959f2944a055bdf4177dc79c75f",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 31,
+ "doc": {
+ "question": "What is the main role of the self-consistency loss in shortcut models?",
+ "choices": [
+ "To enforce stability by matching the noise distribution",
+ "To simulate data augmentation for training efficiency",
+ "To enable the model to generate valid samples under large step sizes",
+ "To match the real data distribution with random noise"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main role of the self-consistency loss in shortcut models?\nAnswer:",
+ " To enforce stability by matching the noise distribution"
+ ],
+ [
+ "Question:What is the main role of the self-consistency loss in shortcut models?\nAnswer:",
+ " To simulate data augmentation for training efficiency"
+ ],
+ [
+ "Question:What is the main role of the self-consistency loss in shortcut models?\nAnswer:",
+ " To enable the model to generate valid samples under large step sizes"
+ ],
+ [
+ "Question:What is the main role of the self-consistency loss in shortcut models?\nAnswer:",
+ " To match the real data distribution with random noise"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -35.98793411254883,
+ false
+ ]
+ ],
+ [
+ [
+ -34.127960205078125,
+ false
+ ]
+ ],
+ [
+ [
+ -43.177894592285156,
+ false
+ ]
+ ],
+ [
+ [
+ -29.6922607421875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -35.98793411254883,
+ false
+ ],
+ [
+ -34.127960205078125,
+ false
+ ],
+ [
+ -43.177894592285156,
+ false
+ ],
+ [
+ -29.6922607421875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "25472bfa2006be0b3a52e3d07c0617ff6d6c307b01b02e347aa0a07ddf455a7f",
+ "prompt_hash": "9c34b99d5ea57bdb65017a60bb52f150c8fe441247b99769510b270f7ffea50a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 32,
+ "doc": {
+ "question": "How much more compute do shortcut models require compared to a base diffusion model?",
+ "choices": [
+ "Approximately 10%",
+ "Approximately 25%",
+ "Approximately 16%",
+ "Approximately 50%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How much more compute do shortcut models require compared to a base diffusion model?\nAnswer:",
+ " Approximately 10%"
+ ],
+ [
+ "Question:How much more compute do shortcut models require compared to a base diffusion model?\nAnswer:",
+ " Approximately 25%"
+ ],
+ [
+ "Question:How much more compute do shortcut models require compared to a base diffusion model?\nAnswer:",
+ " Approximately 16%"
+ ],
+ [
+ "Question:How much more compute do shortcut models require compared to a base diffusion model?\nAnswer:",
+ " Approximately 50%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.12706756591797,
+ false
+ ]
+ ],
+ [
+ [
+ -19.234888076782227,
+ false
+ ]
+ ],
+ [
+ [
+ -20.704843521118164,
+ false
+ ]
+ ],
+ [
+ [
+ -18.603105545043945,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.12706756591797,
+ false
+ ],
+ [
+ -19.234888076782227,
+ false
+ ],
+ [
+ -20.704843521118164,
+ false
+ ],
+ [
+ -18.603105545043945,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e3047131ae529918050585088532063de1cb0918ce5c14f42c4c995f4a10d2cf",
+ "prompt_hash": "88fb3f7444f247a51bfb269f718cde0b45ebba087c21271efbd00eebf8503ff5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 33,
+ "doc": {
+ "question": "Which task domains beyond image generation were tested for shortcut models?",
+ "choices": [
+ "Speech synthesis and natural language generation",
+ "Time series forecasting and bioinformatics",
+ "3D reconstruction and weather prediction",
+ "Robotic control tasks like Push-T and Transport"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which task domains beyond image generation were tested for shortcut models?\nAnswer:",
+ " Speech synthesis and natural language generation"
+ ],
+ [
+ "Question:Which task domains beyond image generation were tested for shortcut models?\nAnswer:",
+ " Time series forecasting and bioinformatics"
+ ],
+ [
+ "Question:Which task domains beyond image generation were tested for shortcut models?\nAnswer:",
+ " 3D reconstruction and weather prediction"
+ ],
+ [
+ "Question:Which task domains beyond image generation were tested for shortcut models?\nAnswer:",
+ " Robotic control tasks like Push-T and Transport"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.389448165893555,
+ false
+ ]
+ ],
+ [
+ [
+ -23.812400817871094,
+ false
+ ]
+ ],
+ [
+ [
+ -24.933910369873047,
+ false
+ ]
+ ],
+ [
+ [
+ -54.72377014160156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.389448165893555,
+ false
+ ],
+ [
+ -23.812400817871094,
+ false
+ ],
+ [
+ -24.933910369873047,
+ false
+ ],
+ [
+ -54.72377014160156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "7707c913864e84ac6477f2831e729f74e067d6fdb0164f974c9ec17467e41226",
+ "prompt_hash": "ae5311f060ec5c9c4e8d578bf13153146709732259a519ebd824665418f8b5e7",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 34,
+ "doc": {
+ "question": "What does the flow-matching model learn to estimate?",
+ "choices": [
+ "The probability distribution of timestep noise",
+ "The optimal classification boundary for diffusion",
+ "The expected velocity vector given a noisy input",
+ "The loss gradient for autoencoding"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What does the flow-matching model learn to estimate?\nAnswer:",
+ " The probability distribution of timestep noise"
+ ],
+ [
+ "Question:What does the flow-matching model learn to estimate?\nAnswer:",
+ " The optimal classification boundary for diffusion"
+ ],
+ [
+ "Question:What does the flow-matching model learn to estimate?\nAnswer:",
+ " The expected velocity vector given a noisy input"
+ ],
+ [
+ "Question:What does the flow-matching model learn to estimate?\nAnswer:",
+ " The loss gradient for autoencoding"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.890026092529297,
+ false
+ ]
+ ],
+ [
+ [
+ -34.87864685058594,
+ false
+ ]
+ ],
+ [
+ [
+ -33.20601272583008,
+ false
+ ]
+ ],
+ [
+ [
+ -33.974056243896484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.890026092529297,
+ false
+ ],
+ [
+ -34.87864685058594,
+ false
+ ],
+ [
+ -33.20601272583008,
+ false
+ ],
+ [
+ -33.974056243896484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e630b4c8948712a3aa748c3f6706c0efa1545d0698384f8ffb696cf9bb15b85a",
+ "prompt_hash": "40760f2fcd7cc6933e0477d9cfe165952141c45c35278a19244e41c57aac2755",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 35,
+ "doc": {
+ "question": "What does the vanilla RF sampler fail to do accurately during inversion?",
+ "choices": [
+ "Maintain consistent image resolution",
+ "Faithfully reconstruct the original image or video",
+ "Optimize the sampling speed",
+ "Apply high-order Taylor expansions"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What does the vanilla RF sampler fail to do accurately during inversion?\nAnswer:",
+ " Maintain consistent image resolution"
+ ],
+ [
+ "Question:What does the vanilla RF sampler fail to do accurately during inversion?\nAnswer:",
+ " Faithfully reconstruct the original image or video"
+ ],
+ [
+ "Question:What does the vanilla RF sampler fail to do accurately during inversion?\nAnswer:",
+ " Optimize the sampling speed"
+ ],
+ [
+ "Question:What does the vanilla RF sampler fail to do accurately during inversion?\nAnswer:",
+ " Apply high-order Taylor expansions"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.627161026000977,
+ false
+ ]
+ ],
+ [
+ [
+ -33.07184982299805,
+ false
+ ]
+ ],
+ [
+ [
+ -22.157188415527344,
+ false
+ ]
+ ],
+ [
+ [
+ -25.121517181396484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.627161026000977,
+ false
+ ],
+ [
+ -33.07184982299805,
+ false
+ ],
+ [
+ -22.157188415527344,
+ false
+ ],
+ [
+ -25.121517181396484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8ea99924652bfbf25e5e9314f9492856eb2209ac2c43d4124ccbfc71e9f32de1",
+ "prompt_hash": "e16fa77def30299c649cea045e51eca6dc02156d7c6a1a6b9b748d8ede7dfe0c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 36,
+ "doc": {
+ "question": "What is the initial input to the rectified flow model during sampling?",
+ "choices": [
+ "A blurred version of the image",
+ "A random text prompt",
+ "A Gaussian noise sample",
+ "A reconstructed image"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the initial input to the rectified flow model during sampling?\nAnswer:",
+ " A blurred version of the image"
+ ],
+ [
+ "Question:What is the initial input to the rectified flow model during sampling?\nAnswer:",
+ " A random text prompt"
+ ],
+ [
+ "Question:What is the initial input to the rectified flow model during sampling?\nAnswer:",
+ " A Gaussian noise sample"
+ ],
+ [
+ "Question:What is the initial input to the rectified flow model during sampling?\nAnswer:",
+ " A reconstructed image"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -19.912330627441406,
+ false
+ ]
+ ],
+ [
+ [
+ -21.68392562866211,
+ false
+ ]
+ ],
+ [
+ [
+ -14.54450511932373,
+ false
+ ]
+ ],
+ [
+ [
+ -16.24022102355957,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -19.912330627441406,
+ false
+ ],
+ [
+ -21.68392562866211,
+ false
+ ],
+ [
+ -14.54450511932373,
+ false
+ ],
+ [
+ -16.24022102355957,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "92c9393daf7f7b92d2e81b5ba6295dd57e3b4735877b91472c48a9760bbe9aab",
+ "prompt_hash": "77bf3be76723861f2d4d51fe064b1c6d663d6b3c55588bc036323690bf44b561",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 37,
+ "doc": {
+ "question": "What metric measures the similarity between real and generated image features using the Inception network?",
+ "choices": [
+ "PSNR",
+ "FID",
+ "CLIP Score",
+ "LPIPS"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What metric measures the similarity between real and generated image features using the Inception network?\nAnswer:",
+ " PSNR"
+ ],
+ [
+ "Question:What metric measures the similarity between real and generated image features using the Inception network?\nAnswer:",
+ " FID"
+ ],
+ [
+ "Question:What metric measures the similarity between real and generated image features using the Inception network?\nAnswer:",
+ " CLIP Score"
+ ],
+ [
+ "Question:What metric measures the similarity between real and generated image features using the Inception network?\nAnswer:",
+ " LPIPS"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.569873809814453,
+ false
+ ]
+ ],
+ [
+ [
+ -6.302478313446045,
+ false
+ ]
+ ],
+ [
+ [
+ -8.529268264770508,
+ false
+ ]
+ ],
+ [
+ [
+ -9.148406982421875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.569873809814453,
+ false
+ ],
+ [
+ -6.302478313446045,
+ false
+ ],
+ [
+ -8.529268264770508,
+ false
+ ],
+ [
+ -9.148406982421875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "763a7e230bb05a4addda6b68e2129c9f46db0b6a856d0dd1ddf3994b452ca35a",
+ "prompt_hash": "c8dba7c0a6d837a398fb1ef9e79c0ccf551f3d2d74d7668105261415858aa7f2",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 38,
+ "doc": {
+ "question": "What expansion technique is used by RF-Solver to approximate the solution of the rectified flow ODE?",
+ "choices": [
+ "Maclaurin expansion",
+ "Fourier expansion",
+ "Legendre expansion",
+ "Taylor expansion"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What expansion technique is used by RF-Solver to approximate the solution of the rectified flow ODE?\nAnswer:",
+ " Maclaurin expansion"
+ ],
+ [
+ "Question:What expansion technique is used by RF-Solver to approximate the solution of the rectified flow ODE?\nAnswer:",
+ " Fourier expansion"
+ ],
+ [
+ "Question:What expansion technique is used by RF-Solver to approximate the solution of the rectified flow ODE?\nAnswer:",
+ " Legendre expansion"
+ ],
+ [
+ "Question:What expansion technique is used by RF-Solver to approximate the solution of the rectified flow ODE?\nAnswer:",
+ " Taylor expansion"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.505192756652832,
+ false
+ ]
+ ],
+ [
+ [
+ -7.7918596267700195,
+ false
+ ]
+ ],
+ [
+ [
+ -9.656216621398926,
+ false
+ ]
+ ],
+ [
+ [
+ -5.822720050811768,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.505192756652832,
+ false
+ ],
+ [
+ -7.7918596267700195,
+ false
+ ],
+ [
+ -9.656216621398926,
+ false
+ ],
+ [
+ -5.822720050811768,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "78af6d7759bdf7dc718c6e72e4da3d3dbb4c4b6d240a4919c143f6ab9ec29baa",
+ "prompt_hash": "dd277133f1f5dccc6543791e23a6e5b29e7f064969580baab23e4df53d2b7ca3",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 39,
+ "doc": {
+ "question": "Which metric is used in video editing to evaluate if the subject remains consistent throughout the video?",
+ "choices": [
+ "Motion Smoothness",
+ "Imaging Quality",
+ "Subject Consistency",
+ "Aesthetic Quality"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which metric is used in video editing to evaluate if the subject remains consistent throughout the video?\nAnswer:",
+ " Motion Smoothness"
+ ],
+ [
+ "Question:Which metric is used in video editing to evaluate if the subject remains consistent throughout the video?\nAnswer:",
+ " Imaging Quality"
+ ],
+ [
+ "Question:Which metric is used in video editing to evaluate if the subject remains consistent throughout the video?\nAnswer:",
+ " Subject Consistency"
+ ],
+ [
+ "Question:Which metric is used in video editing to evaluate if the subject remains consistent throughout the video?\nAnswer:",
+ " Aesthetic Quality"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.785782814025879,
+ false
+ ]
+ ],
+ [
+ [
+ -13.026578903198242,
+ false
+ ]
+ ],
+ [
+ [
+ -9.648693084716797,
+ false
+ ]
+ ],
+ [
+ [
+ -10.92684268951416,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.785782814025879,
+ false
+ ],
+ [
+ -13.026578903198242,
+ false
+ ],
+ [
+ -9.648693084716797,
+ false
+ ],
+ [
+ -10.92684268951416,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "34f7cb08d375f8c37cde5cb92434597cb46a6618e02d499d7f96fa6037e9ca57",
+ "prompt_hash": "907448527f9bb8adf5e49020cfae2bc355f50d6fe82d278f6f3dffac292b0211",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 40,
+ "doc": {
+ "question": "What is the vocabulary size of the visual tokenizer used in Infinity?",
+ "choices": [
+ "2^32",
+ "2^64",
+ "1.4B",
+ "2.2B"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the vocabulary size of the visual tokenizer used in Infinity?\nAnswer:",
+ " 2^32"
+ ],
+ [
+ "Question:What is the vocabulary size of the visual tokenizer used in Infinity?\nAnswer:",
+ " 2^64"
+ ],
+ [
+ "Question:What is the vocabulary size of the visual tokenizer used in Infinity?\nAnswer:",
+ " 1.4B"
+ ],
+ [
+ "Question:What is the vocabulary size of the visual tokenizer used in Infinity?\nAnswer:",
+ " 2.2B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.800674438476562,
+ false
+ ]
+ ],
+ [
+ [
+ -18.12482452392578,
+ false
+ ]
+ ],
+ [
+ [
+ -14.574565887451172,
+ false
+ ]
+ ],
+ [
+ [
+ -14.944957733154297,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.800674438476562,
+ false
+ ],
+ [
+ -18.12482452392578,
+ false
+ ],
+ [
+ -14.574565887451172,
+ false
+ ],
+ [
+ -14.944957733154297,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e20793689503a8ab98a32480e6d221202a0430d5b6d335afd3b19b1300ea40b5",
+ "prompt_hash": "8405ba7e59a3a5daccbfc575a8bb054f93086cde635f552c599fc3a991203b9c",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 41,
+ "doc": {
+ "question": "What is the inference latency of Infinity compared to SD3.5 at the same 8 billion parameters?",
+ "choices": [
+ "1.5× faster",
+ "3× faster",
+ "7× faster",
+ "10× faster"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the inference latency of Infinity compared to SD3.5 at the same 8 billion parameters?\nAnswer:",
+ " 1.5× faster"
+ ],
+ [
+ "Question:What is the inference latency of Infinity compared to SD3.5 at the same 8 billion parameters?\nAnswer:",
+ " 3× faster"
+ ],
+ [
+ "Question:What is the inference latency of Infinity compared to SD3.5 at the same 8 billion parameters?\nAnswer:",
+ " 7× faster"
+ ],
+ [
+ "Question:What is the inference latency of Infinity compared to SD3.5 at the same 8 billion parameters?\nAnswer:",
+ " 10× faster"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.32508659362793,
+ false
+ ]
+ ],
+ [
+ [
+ -16.319908142089844,
+ false
+ ]
+ ],
+ [
+ [
+ -15.744100570678711,
+ false
+ ]
+ ],
+ [
+ [
+ -14.926592826843262,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.32508659362793,
+ false
+ ],
+ [
+ -16.319908142089844,
+ false
+ ],
+ [
+ -15.744100570678711,
+ false
+ ],
+ [
+ -14.926592826843262,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3fbe1dbc671de47ec6fd9f01aebf43bfff78ccf7aab2e871f49f001c22ca492d",
+ "prompt_hash": "5ba42f9e7d96d5d0d166314c3d7597b4610bd92bf7338c62e9b94ddc8825780c",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 42,
+ "doc": {
+ "question": "Which benchmark does Infinity achieve the highest position reasoning score?",
+ "choices": [
+ "HPSv2.1",
+ "GenEval",
+ "ImageNet",
+ "DPG"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which benchmark does Infinity achieve the highest position reasoning score?\nAnswer:",
+ " HPSv2.1"
+ ],
+ [
+ "Question:Which benchmark does Infinity achieve the highest position reasoning score?\nAnswer:",
+ " GenEval"
+ ],
+ [
+ "Question:Which benchmark does Infinity achieve the highest position reasoning score?\nAnswer:",
+ " ImageNet"
+ ],
+ [
+ "Question:Which benchmark does Infinity achieve the highest position reasoning score?\nAnswer:",
+ " DPG"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -20.394943237304688,
+ false
+ ]
+ ],
+ [
+ [
+ -13.73299789428711,
+ false
+ ]
+ ],
+ [
+ [
+ -9.435646057128906,
+ false
+ ]
+ ],
+ [
+ [
+ -14.115262985229492,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -20.394943237304688,
+ false
+ ],
+ [
+ -13.73299789428711,
+ false
+ ],
+ [
+ -9.435646057128906,
+ false
+ ],
+ [
+ -14.115262985229492,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "89ded598ff5afd97da93a619428bd2e9c7ac4fdda9e035e36b145abf1d0a9fa6",
+ "prompt_hash": "52d44c011a0ac3336c504e2a12f331935833950d074344dcce959ffbb0e325a5",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 43,
+ "doc": {
+ "question": "What decoding method yielded the best generation results in terms of FID, ImageReward, and HPSv2.1 for Infinity?",
+ "choices": [
+ "Greedy Sampling (τ=0.01, cfg=1)",
+ "Normal Sampling (τ=1.00, cfg=1)",
+ "CFG on logits (τ=1.00, cfg=4)",
+ "Pyramid CFG (τ=1.00, cfg=1 → 3)"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What decoding method yielded the best generation results in terms of FID, ImageReward, and HPSv2.1 for Infinity?\nAnswer:",
+ " Greedy Sampling (τ=0.01, cfg=1)"
+ ],
+ [
+ "Question:What decoding method yielded the best generation results in terms of FID, ImageReward, and HPSv2.1 for Infinity?\nAnswer:",
+ " Normal Sampling (τ=1.00, cfg=1)"
+ ],
+ [
+ "Question:What decoding method yielded the best generation results in terms of FID, ImageReward, and HPSv2.1 for Infinity?\nAnswer:",
+ " CFG on logits (τ=1.00, cfg=4)"
+ ],
+ [
+ "Question:What decoding method yielded the best generation results in terms of FID, ImageReward, and HPSv2.1 for Infinity?\nAnswer:",
+ " Pyramid CFG (τ=1.00, cfg=1 → 3)"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -53.44877624511719,
+ false
+ ]
+ ],
+ [
+ [
+ -58.58667755126953,
+ false
+ ]
+ ],
+ [
+ [
+ -71.45088195800781,
+ false
+ ]
+ ],
+ [
+ [
+ -79.22601318359375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -53.44877624511719,
+ false
+ ],
+ [
+ -58.58667755126953,
+ false
+ ],
+ [
+ -71.45088195800781,
+ false
+ ],
+ [
+ -79.22601318359375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "e5e5af7bd48621561a7fae699429bed300578abecd7110518834cf3ed831b959",
+ "prompt_hash": "5c66a417df59b35b085ab9d8f35d1dbbeb8dd9bb44fa59cfff024cbb2bcba289",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 44,
+ "doc": {
+ "question": "Which method showed significant improvements in FID and human preference metrics compared to baseline training?",
+ "choices": [
+ "Teacher-forcing only",
+ "Baseline + Random Flip",
+ "Baseline + Bitwise Self-Correction",
+ "Conventional Classifier"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which method showed significant improvements in FID and human preference metrics compared to baseline training?\nAnswer:",
+ " Teacher-forcing only"
+ ],
+ [
+ "Question:Which method showed significant improvements in FID and human preference metrics compared to baseline training?\nAnswer:",
+ " Baseline + Random Flip"
+ ],
+ [
+ "Question:Which method showed significant improvements in FID and human preference metrics compared to baseline training?\nAnswer:",
+ " Baseline + Bitwise Self-Correction"
+ ],
+ [
+ "Question:Which method showed significant improvements in FID and human preference metrics compared to baseline training?\nAnswer:",
+ " Conventional Classifier"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.080556869506836,
+ false
+ ]
+ ],
+ [
+ [
+ -23.488689422607422,
+ false
+ ]
+ ],
+ [
+ [
+ -34.55451202392578,
+ false
+ ]
+ ],
+ [
+ [
+ -19.191102981567383,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.080556869506836,
+ false
+ ],
+ [
+ -23.488689422607422,
+ false
+ ],
+ [
+ -34.55451202392578,
+ false
+ ],
+ [
+ -19.191102981567383,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "75a9df72314d2d63aa9fb8dbf17a677974cdb6c7ba30860df9ba6f2915518f2b",
+ "prompt_hash": "bc0bfee298b86ebf99d30291b5eb3aadd2e0328090305d18fbc4f610b4a4f247",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 45,
+ "doc": {
+ "question": "What architecture does the trained model follow in this study?",
+ "choices": [
+ "BLIP-2",
+ "LLaVA-OneVision",
+ "Flamingo",
+ "Kosmos-2"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What architecture does the trained model follow in this study?\nAnswer:",
+ " BLIP-2"
+ ],
+ [
+ "Question:What architecture does the trained model follow in this study?\nAnswer:",
+ " LLaVA-OneVision"
+ ],
+ [
+ "Question:What architecture does the trained model follow in this study?\nAnswer:",
+ " Flamingo"
+ ],
+ [
+ "Question:What architecture does the trained model follow in this study?\nAnswer:",
+ " Kosmos-2"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.2590913772583,
+ false
+ ]
+ ],
+ [
+ [
+ -30.431509017944336,
+ false
+ ]
+ ],
+ [
+ [
+ -12.223670959472656,
+ false
+ ]
+ ],
+ [
+ [
+ -18.77886962890625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.2590913772583,
+ false
+ ],
+ [
+ -30.431509017944336,
+ false
+ ],
+ [
+ -12.223670959472656,
+ false
+ ],
+ [
+ -18.77886962890625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "08b1908eb4950cfb986c99f0ff83b901399c4ee3ed6982a869cc70aaf548f139",
+ "prompt_hash": "d2b63b341772da51510868541c94256373586215e371d41e03238a474823d717",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 46,
+ "doc": {
+ "question": "Which model is used as the LLM backbone in the trained MLLM?",
+ "choices": [
+ "LLaMA 2",
+ "Mistral",
+ "Qwen2.5-7B-Instruct",
+ "Gemma-7B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model is used as the LLM backbone in the trained MLLM?\nAnswer:",
+ " LLaMA 2"
+ ],
+ [
+ "Question:Which model is used as the LLM backbone in the trained MLLM?\nAnswer:",
+ " Mistral"
+ ],
+ [
+ "Question:Which model is used as the LLM backbone in the trained MLLM?\nAnswer:",
+ " Qwen2.5-7B-Instruct"
+ ],
+ [
+ "Question:Which model is used as the LLM backbone in the trained MLLM?\nAnswer:",
+ " Gemma-7B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.495230674743652,
+ false
+ ]
+ ],
+ [
+ [
+ -7.038785934448242,
+ false
+ ]
+ ],
+ [
+ [
+ -18.910114288330078,
+ false
+ ]
+ ],
+ [
+ [
+ -8.148101806640625,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.495230674743652,
+ false
+ ],
+ [
+ -7.038785934448242,
+ false
+ ],
+ [
+ -18.910114288330078,
+ false
+ ],
+ [
+ -8.148101806640625,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "242133872f3ce458d5a1efb06dd54af540db5306a0fc6b3e6757d160015e4375",
+ "prompt_hash": "a94d719eb0450696c149dee855ab6ac2878fd5f6a362692d6f18ca471f315017",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 47,
+ "doc": {
+ "question": "In the model’s training pipeline, what task is performed in Stage-1?",
+ "choices": [
+ "Multi-image instruction tuning",
+ "Video QA fine-tuning",
+ "Language-Image Alignment",
+ "Text-only pretraining"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the model’s training pipeline, what task is performed in Stage-1?\nAnswer:",
+ " Multi-image instruction tuning"
+ ],
+ [
+ "Question:In the model’s training pipeline, what task is performed in Stage-1?\nAnswer:",
+ " Video QA fine-tuning"
+ ],
+ [
+ "Question:In the model’s training pipeline, what task is performed in Stage-1?\nAnswer:",
+ " Language-Image Alignment"
+ ],
+ [
+ "Question:In the model’s training pipeline, what task is performed in Stage-1?\nAnswer:",
+ " Text-only pretraining"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.79088592529297,
+ false
+ ]
+ ],
+ [
+ [
+ -26.615177154541016,
+ false
+ ]
+ ],
+ [
+ [
+ -23.15818214416504,
+ false
+ ]
+ ],
+ [
+ [
+ -22.57697868347168,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.79088592529297,
+ false
+ ],
+ [
+ -26.615177154541016,
+ false
+ ],
+ [
+ -23.15818214416504,
+ false
+ ],
+ [
+ -22.57697868347168,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "279ff9b16a8d994c454b08b558d22a902fea3b0f2da81f5c070a4bea9eb2114e",
+ "prompt_hash": "f6bc9b5b7c954583c312b09d756afa1d0f354b51b44ee5aaaa90ca42f97cc048",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 48,
+ "doc": {
+ "question": "Which benchmark did the trained model improve on by 13.3% over open SOTA models?",
+ "choices": [
+ "MMMU",
+ "MathVista",
+ "MuirBench",
+ "ChartQA"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which benchmark did the trained model improve on by 13.3% over open SOTA models?\nAnswer:",
+ " MMMU"
+ ],
+ [
+ "Question:Which benchmark did the trained model improve on by 13.3% over open SOTA models?\nAnswer:",
+ " MathVista"
+ ],
+ [
+ "Question:Which benchmark did the trained model improve on by 13.3% over open SOTA models?\nAnswer:",
+ " MuirBench"
+ ],
+ [
+ "Question:Which benchmark did the trained model improve on by 13.3% over open SOTA models?\nAnswer:",
+ " ChartQA"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.538230895996094,
+ false
+ ]
+ ],
+ [
+ [
+ -12.807701110839844,
+ false
+ ]
+ ],
+ [
+ [
+ -26.439382553100586,
+ false
+ ]
+ ],
+ [
+ [
+ -13.904680252075195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.538230895996094,
+ false
+ ],
+ [
+ -12.807701110839844,
+ false
+ ],
+ [
+ -26.439382553100586,
+ false
+ ],
+ [
+ -13.904680252075195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fe7ed8034287d8ecdf89dfd773ed9da99b7ea13d66a88ada860e32c5b585d489",
+ "prompt_hash": "09cda0d7b3811db9605ff48bfbdbbecddf6d96aac0417ce43fe2edfb72f16424",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 49,
+ "doc": {
+ "question": "What dataset size does the \\\\model-Instruct training dataset contain?",
+ "choices": [
+ "3 million",
+ "8 million",
+ "10 million",
+ "12 million"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What dataset size does the \\\\model-Instruct training dataset contain?\nAnswer:",
+ " 3 million"
+ ],
+ [
+ "Question:What dataset size does the \\\\model-Instruct training dataset contain?\nAnswer:",
+ " 8 million"
+ ],
+ [
+ "Question:What dataset size does the \\\\model-Instruct training dataset contain?\nAnswer:",
+ " 10 million"
+ ],
+ [
+ "Question:What dataset size does the \\\\model-Instruct training dataset contain?\nAnswer:",
+ " 12 million"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.369553565979004,
+ false
+ ]
+ ],
+ [
+ [
+ -11.335330963134766,
+ false
+ ]
+ ],
+ [
+ [
+ -9.712087631225586,
+ false
+ ]
+ ],
+ [
+ [
+ -10.944192886352539,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.369553565979004,
+ false
+ ],
+ [
+ -11.335330963134766,
+ false
+ ],
+ [
+ -9.712087631225586,
+ false
+ ],
+ [
+ -10.944192886352539,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "aa2084fa41313cea7be9a46ec39fad06a64cf9d0ad96b946d8bf4bfe1f6b717b",
+ "prompt_hash": "d1e499de451ac20f1f4990b5abb6fe3940e5ea6eb8ec76cc85d7a1c2484340b6",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 50,
+ "doc": {
+ "question": "What is the accuracy achieved by TALE-EP in the main evaluation experiment?",
+ "choices": [
+ "81.03%",
+ "83.75%",
+ "84.46%",
+ "52.31%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What is the accuracy achieved by TALE-EP in the main evaluation experiment?\nAnswer:",
+ " 81.03%"
+ ],
+ [
+ "Question:What is the accuracy achieved by TALE-EP in the main evaluation experiment?\nAnswer:",
+ " 83.75%"
+ ],
+ [
+ "Question:What is the accuracy achieved by TALE-EP in the main evaluation experiment?\nAnswer:",
+ " 84.46%"
+ ],
+ [
+ "Question:What is the accuracy achieved by TALE-EP in the main evaluation experiment?\nAnswer:",
+ " 52.31%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.59661102294922,
+ false
+ ]
+ ],
+ [
+ [
+ -15.885629653930664,
+ false
+ ]
+ ],
+ [
+ [
+ -16.607118606567383,
+ false
+ ]
+ ],
+ [
+ [
+ -17.99320411682129,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.59661102294922,
+ false
+ ],
+ [
+ -15.885629653930664,
+ false
+ ],
+ [
+ -16.607118606567383,
+ false
+ ],
+ [
+ -17.99320411682129,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4cc8fa96222389961de62d5c561cb625be67302e4ec19814dd955eaaa3058c9b",
+ "prompt_hash": "54f76642b16de3ac6f9d6064561883f4cf2a54b107874314f090d1cb523b5658",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 51,
+ "doc": {
+ "question": "Which model is used as both the budget estimator for TALE-EP and the base model for TALE-PT?",
+ "choices": [
+ "GPT-4o-mini",
+ "Yi-lightning",
+ "o3-mini",
+ "Llama-3.1-8B-Instruct"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which model is used as both the budget estimator for TALE-EP and the base model for TALE-PT?\nAnswer:",
+ " GPT-4o-mini"
+ ],
+ [
+ "Question:Which model is used as both the budget estimator for TALE-EP and the base model for TALE-PT?\nAnswer:",
+ " Yi-lightning"
+ ],
+ [
+ "Question:Which model is used as both the budget estimator for TALE-EP and the base model for TALE-PT?\nAnswer:",
+ " o3-mini"
+ ],
+ [
+ "Question:Which model is used as both the budget estimator for TALE-EP and the base model for TALE-PT?\nAnswer:",
+ " Llama-3.1-8B-Instruct"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.35126495361328,
+ false
+ ]
+ ],
+ [
+ [
+ -29.93523406982422,
+ false
+ ]
+ ],
+ [
+ [
+ -31.417808532714844,
+ false
+ ]
+ ],
+ [
+ [
+ -32.12964630126953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.35126495361328,
+ false
+ ],
+ [
+ -29.93523406982422,
+ false
+ ],
+ [
+ -31.417808532714844,
+ false
+ ],
+ [
+ -32.12964630126953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "49df0a6a4a6ba7ca09d4394117ab4faf461c4c8188c2eca129755f505ff7961b",
+ "prompt_hash": "e0b37854764ba1a50bc57eba7129cec2e0868caafd2c829c815e058aca335fee",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 52,
+ "doc": {
+ "question": "Which two datasets show a drop in accuracy when using Vanilla CoT compared to Direct Answering?",
+ "choices": [
+ "GSM8K and MathBench",
+ "GSM8K-Zero and MathBench",
+ "GSM8K-Zero and GSM8K",
+ "MathBench and GSM8K-Zero"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which two datasets show a drop in accuracy when using Vanilla CoT compared to Direct Answering?\nAnswer:",
+ " GSM8K and MathBench"
+ ],
+ [
+ "Question:Which two datasets show a drop in accuracy when using Vanilla CoT compared to Direct Answering?\nAnswer:",
+ " GSM8K-Zero and MathBench"
+ ],
+ [
+ "Question:Which two datasets show a drop in accuracy when using Vanilla CoT compared to Direct Answering?\nAnswer:",
+ " GSM8K-Zero and GSM8K"
+ ],
+ [
+ "Question:Which two datasets show a drop in accuracy when using Vanilla CoT compared to Direct Answering?\nAnswer:",
+ " MathBench and GSM8K-Zero"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.273113250732422,
+ false
+ ]
+ ],
+ [
+ [
+ -33.51565933227539,
+ false
+ ]
+ ],
+ [
+ [
+ -22.242053985595703,
+ false
+ ]
+ ],
+ [
+ [
+ -31.686880111694336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.273113250732422,
+ false
+ ],
+ [
+ -33.51565933227539,
+ false
+ ],
+ [
+ -22.242053985595703,
+ false
+ ],
+ [
+ -31.686880111694336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "028db413966b79cf1470b94085231f1d6b84491b044a63afe3b5cc1af2070b2b",
+ "prompt_hash": "dba4bdb2f52e341f0f6e33bd6702b23b37c2dd02af01dd96a6c90147b5e415ac",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 53,
+ "doc": {
+ "question": "What is the token budget prompt format used during target output generation for post-training?",
+ "choices": [
+ "Let's use minimal reasoning for this task:",
+ "Generate an answer with fewer than 100 tokens:",
+ "Let's think step by step and use less than βᵢ* tokens:",
+ "Start reasoning and be concise:"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the token budget prompt format used during target output generation for post-training?\nAnswer:",
+ " Let's use minimal reasoning for this task:"
+ ],
+ [
+ "Question:What is the token budget prompt format used during target output generation for post-training?\nAnswer:",
+ " Generate an answer with fewer than 100 tokens:"
+ ],
+ [
+ "Question:What is the token budget prompt format used during target output generation for post-training?\nAnswer:",
+ " Let's think step by step and use less than βᵢ* tokens:"
+ ],
+ [
+ "Question:What is the token budget prompt format used during target output generation for post-training?\nAnswer:",
+ " Start reasoning and be concise:"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -44.67750549316406,
+ false
+ ]
+ ],
+ [
+ [
+ -29.80453872680664,
+ false
+ ]
+ ],
+ [
+ [
+ -81.00228118896484,
+ false
+ ]
+ ],
+ [
+ [
+ -36.61896896362305,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -44.67750549316406,
+ false
+ ],
+ [
+ -29.80453872680664,
+ false
+ ],
+ [
+ -81.00228118896484,
+ false
+ ],
+ [
+ -36.61896896362305,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fa2d89a4889668f2b9ade318cb3b84fa167f80c5f713ecae98c82989d9529704",
+ "prompt_hash": "5242bf8bcd13ea3343c55c28fa65237501bc3f46fc803b4968e911e1b6614368",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 54,
+ "doc": {
+ "question": "What is the observed out-of-range distance for predicted budgets in budget estimation?",
+ "choices": [
+ "60.61",
+ "109.64",
+ "84.46",
+ "76.92"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the observed out-of-range distance for predicted budgets in budget estimation?\nAnswer:",
+ " 60.61"
+ ],
+ [
+ "Question:What is the observed out-of-range distance for predicted budgets in budget estimation?\nAnswer:",
+ " 109.64"
+ ],
+ [
+ "Question:What is the observed out-of-range distance for predicted budgets in budget estimation?\nAnswer:",
+ " 84.46"
+ ],
+ [
+ "Question:What is the observed out-of-range distance for predicted budgets in budget estimation?\nAnswer:",
+ " 76.92"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.008024215698242,
+ false
+ ]
+ ],
+ [
+ [
+ -16.311241149902344,
+ false
+ ]
+ ],
+ [
+ [
+ -14.822121620178223,
+ false
+ ]
+ ],
+ [
+ [
+ -15.023334503173828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.008024215698242,
+ false
+ ],
+ [
+ -16.311241149902344,
+ false
+ ],
+ [
+ -14.822121620178223,
+ false
+ ],
+ [
+ -15.023334503173828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9d621b759600706fd5c767444d299cf853a9117f66e5a972dd25552c6a59ad1c",
+ "prompt_hash": "5e2be8667f0496e4b082c0a5cfb901c4da758cbffc2f838ee8c2ce273fad959e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 55,
+ "doc": {
+ "question": "What resolution rate was achieved by the best system in Golubev et al.'s study on SWE-Bench Verified?",
+ "choices": [
+ "32.0%",
+ "30.2%",
+ "40.0%",
+ "40.6%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What resolution rate was achieved by the best system in Golubev et al.'s study on SWE-Bench Verified?\nAnswer:",
+ " 32.0%"
+ ],
+ [
+ "Question:What resolution rate was achieved by the best system in Golubev et al.'s study on SWE-Bench Verified?\nAnswer:",
+ " 30.2%"
+ ],
+ [
+ "Question:What resolution rate was achieved by the best system in Golubev et al.'s study on SWE-Bench Verified?\nAnswer:",
+ " 40.0%"
+ ],
+ [
+ "Question:What resolution rate was achieved by the best system in Golubev et al.'s study on SWE-Bench Verified?\nAnswer:",
+ " 40.6%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.27562713623047,
+ false
+ ]
+ ],
+ [
+ [
+ -18.93119239807129,
+ false
+ ]
+ ],
+ [
+ [
+ -19.01384735107422,
+ false
+ ]
+ ],
+ [
+ [
+ -20.305471420288086,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.27562713623047,
+ false
+ ],
+ [
+ -18.93119239807129,
+ false
+ ],
+ [
+ -19.01384735107422,
+ false
+ ],
+ [
+ -20.305471420288086,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "9b8f680053a7de48a791b8114d4f86fe6dfbcbc715994fe3d48ef797ae63e32b",
+ "prompt_hash": "57e4109d2ce71a513a04b0da043da7510ba98f3d21a7833e5e431dc35b70cdf8",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 56,
+ "doc": {
+ "question": "What was the resolution rate of the 7B model in the zero-shot setting on SWE-Bench Lite using the MoatlessTools scaffold?",
+ "choices": [
+ "7.0%",
+ "9.0%",
+ "10.0%",
+ "19.7%"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:What was the resolution rate of the 7B model in the zero-shot setting on SWE-Bench Lite using the MoatlessTools scaffold?\nAnswer:",
+ " 7.0%"
+ ],
+ [
+ "Question:What was the resolution rate of the 7B model in the zero-shot setting on SWE-Bench Lite using the MoatlessTools scaffold?\nAnswer:",
+ " 9.0%"
+ ],
+ [
+ "Question:What was the resolution rate of the 7B model in the zero-shot setting on SWE-Bench Lite using the MoatlessTools scaffold?\nAnswer:",
+ " 10.0%"
+ ],
+ [
+ "Question:What was the resolution rate of the 7B model in the zero-shot setting on SWE-Bench Lite using the MoatlessTools scaffold?\nAnswer:",
+ " 19.7%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.72341537475586,
+ false
+ ]
+ ],
+ [
+ [
+ -17.60109519958496,
+ false
+ ]
+ ],
+ [
+ [
+ -15.792200088500977,
+ false
+ ]
+ ],
+ [
+ [
+ -18.468229293823242,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.72341537475586,
+ false
+ ],
+ [
+ -17.60109519958496,
+ false
+ ],
+ [
+ -15.792200088500977,
+ false
+ ],
+ [
+ -18.468229293823242,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "8e8479623552e4c5a5f0ca2ab64e1256e6a74a92ee642797ba776e764e2c4004",
+ "prompt_hash": "09a786afc11558e1a6d041c456acd1b663a63f3482ea9753b2e340074474070b",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 57,
+ "doc": {
+ "question": "How many successful trajectories were used for training the OpenHands verifier model from on-policy data?",
+ "choices": [
+ "491",
+ "443",
+ "875",
+ "1318"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:How many successful trajectories were used for training the OpenHands verifier model from on-policy data?\nAnswer:",
+ " 491"
+ ],
+ [
+ "Question:How many successful trajectories were used for training the OpenHands verifier model from on-policy data?\nAnswer:",
+ " 443"
+ ],
+ [
+ "Question:How many successful trajectories were used for training the OpenHands verifier model from on-policy data?\nAnswer:",
+ " 875"
+ ],
+ [
+ "Question:How many successful trajectories were used for training the OpenHands verifier model from on-policy data?\nAnswer:",
+ " 1318"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.903782844543457,
+ false
+ ]
+ ],
+ [
+ [
+ -9.55705738067627,
+ false
+ ]
+ ],
+ [
+ [
+ -10.137280464172363,
+ false
+ ]
+ ],
+ [
+ [
+ -11.437753677368164,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.903782844543457,
+ false
+ ],
+ [
+ -9.55705738067627,
+ false
+ ],
+ [
+ -10.137280464172363,
+ false
+ ],
+ [
+ -11.437753677368164,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c2c12d2011edca840e28df031bec5ef2b8725265af14bd39de1fa4b3af47a2ff",
+ "prompt_hash": "78be788c1d72598ea76329b23a2cc38836698775cc0e63c2ae12cc2fae9bf7a0",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 58,
+ "doc": {
+ "question": "Which model size was used for full-parameter fine-tuning in OpenHands verifier training experiments?",
+ "choices": [
+ "7B",
+ "14B",
+ "32B",
+ "72B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model size was used for full-parameter fine-tuning in OpenHands verifier training experiments?\nAnswer:",
+ " 7B"
+ ],
+ [
+ "Question:Which model size was used for full-parameter fine-tuning in OpenHands verifier training experiments?\nAnswer:",
+ " 14B"
+ ],
+ [
+ "Question:Which model size was used for full-parameter fine-tuning in OpenHands verifier training experiments?\nAnswer:",
+ " 32B"
+ ],
+ [
+ "Question:Which model size was used for full-parameter fine-tuning in OpenHands verifier training experiments?\nAnswer:",
+ " 72B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.534176349639893,
+ false
+ ]
+ ],
+ [
+ [
+ -9.071793556213379,
+ false
+ ]
+ ],
+ [
+ [
+ -9.899114608764648,
+ false
+ ]
+ ],
+ [
+ [
+ -10.54307746887207,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.534176349639893,
+ false
+ ],
+ [
+ -9.071793556213379,
+ false
+ ],
+ [
+ -9.899114608764648,
+ false
+ ],
+ [
+ -10.54307746887207,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f26f3f751a8424a21a9fcad5a46158b182d4b885abafad075940e0dd56449319",
+ "prompt_hash": "32157e6752d9b66fc46465f19ba8c64ebb28fcaf0728c4f075760f6c468306ca",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 59,
+ "doc": {
+ "question": "What metric is defined as the proportion of tasks with at least one successful solution among k samples?",
+ "choices": [
+ "Mean@k",
+ "Best@k",
+ "Pass@k",
+ "Top@k"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What metric is defined as the proportion of tasks with at least one successful solution among k samples?\nAnswer:",
+ " Mean@k"
+ ],
+ [
+ "Question:What metric is defined as the proportion of tasks with at least one successful solution among k samples?\nAnswer:",
+ " Best@k"
+ ],
+ [
+ "Question:What metric is defined as the proportion of tasks with at least one successful solution among k samples?\nAnswer:",
+ " Pass@k"
+ ],
+ [
+ "Question:What metric is defined as the proportion of tasks with at least one successful solution among k samples?\nAnswer:",
+ " Top@k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.112659454345703,
+ false
+ ]
+ ],
+ [
+ [
+ -25.021312713623047,
+ false
+ ]
+ ],
+ [
+ [
+ -11.806612968444824,
+ false
+ ]
+ ],
+ [
+ [
+ -18.79800033569336,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.112659454345703,
+ false
+ ],
+ [
+ -25.021312713623047,
+ false
+ ],
+ [
+ -11.806612968444824,
+ false
+ ],
+ [
+ -18.79800033569336,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "94a25b68e4fe4bd580f8e91e87817d1dccf373a8ae8bbf16ace16a11242184d6",
+ "prompt_hash": "3fabbdd3f2cd08ac9a8391e8fce464328937813bbb84ef064b5e1c090f9d84a9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 60,
+ "doc": {
+ "question": "What is the name of the module in Agent Laboratory responsible for autonomous machine learning experimentation?",
+ "choices": [
+ "ml-solver",
+ "mle-solver",
+ "autoML-agent",
+ "mlp-solver"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the name of the module in Agent Laboratory responsible for autonomous machine learning experimentation?\nAnswer:",
+ " ml-solver"
+ ],
+ [
+ "Question:What is the name of the module in Agent Laboratory responsible for autonomous machine learning experimentation?\nAnswer:",
+ " mle-solver"
+ ],
+ [
+ "Question:What is the name of the module in Agent Laboratory responsible for autonomous machine learning experimentation?\nAnswer:",
+ " autoML-agent"
+ ],
+ [
+ "Question:What is the name of the module in Agent Laboratory responsible for autonomous machine learning experimentation?\nAnswer:",
+ " mlp-solver"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.200307846069336,
+ false
+ ]
+ ],
+ [
+ [
+ -24.079002380371094,
+ false
+ ]
+ ],
+ [
+ [
+ -15.742652893066406,
+ false
+ ]
+ ],
+ [
+ [
+ -21.07553482055664,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.200307846069336,
+ false
+ ],
+ [
+ -24.079002380371094,
+ false
+ ],
+ [
+ -15.742652893066406,
+ false
+ ],
+ [
+ -21.07553482055664,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4577ff7aebd55c8b6127e54158542e28e636d4bb1080aa3810c741d7c6de7429",
+ "prompt_hash": "f4dc1992f7c1f0dd368cc1c670547d0b6ac3476ee3c2bbed2606054d40c9d390",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 61,
+ "doc": {
+ "question": "Which model backend had the lowest overall cost per research paper in Agent Laboratory?",
+ "choices": [
+ "gpt-4o",
+ "o1-mini",
+ "o1-preview",
+ "gpt-3.5"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which model backend had the lowest overall cost per research paper in Agent Laboratory?\nAnswer:",
+ " gpt-4o"
+ ],
+ [
+ "Question:Which model backend had the lowest overall cost per research paper in Agent Laboratory?\nAnswer:",
+ " o1-mini"
+ ],
+ [
+ "Question:Which model backend had the lowest overall cost per research paper in Agent Laboratory?\nAnswer:",
+ " o1-preview"
+ ],
+ [
+ "Question:Which model backend had the lowest overall cost per research paper in Agent Laboratory?\nAnswer:",
+ " gpt-3.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -8.595643997192383,
+ false
+ ]
+ ],
+ [
+ [
+ -27.891895294189453,
+ false
+ ]
+ ],
+ [
+ [
+ -29.849641799926758,
+ false
+ ]
+ ],
+ [
+ [
+ -6.70004415512085,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -8.595643997192383,
+ false
+ ],
+ [
+ -27.891895294189453,
+ false
+ ],
+ [
+ -29.849641799926758,
+ false
+ ],
+ [
+ -6.70004415512085,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6e5071765c3d81db6b88ab4d07066dd00dca57351b3b27f9b7cdf28f179a1d66",
+ "prompt_hash": "ae29c9294ffae64a64d44dd9223eae7edf3afa5810a7c2a25c18043a84dcae17",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 62,
+ "doc": {
+ "question": "In the report writing phase, how many standardized sections does the paper scaffold include?",
+ "choices": [
+ "5",
+ "6",
+ "7",
+ "8"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:In the report writing phase, how many standardized sections does the paper scaffold include?\nAnswer:",
+ " 5"
+ ],
+ [
+ "Question:In the report writing phase, how many standardized sections does the paper scaffold include?\nAnswer:",
+ " 6"
+ ],
+ [
+ "Question:In the report writing phase, how many standardized sections does the paper scaffold include?\nAnswer:",
+ " 7"
+ ],
+ [
+ "Question:In the report writing phase, how many standardized sections does the paper scaffold include?\nAnswer:",
+ " 8"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -4.710968017578125,
+ false
+ ]
+ ],
+ [
+ [
+ -5.016308784484863,
+ false
+ ]
+ ],
+ [
+ [
+ -5.845353126525879,
+ false
+ ]
+ ],
+ [
+ [
+ -5.938841819763184,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -4.710968017578125,
+ false
+ ],
+ [
+ -5.016308784484863,
+ false
+ ],
+ [
+ -5.845353126525879,
+ false
+ ],
+ [
+ -5.938841819763184,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "3223042122ab302ff842ad6fe34b8a3da83cf1beb09a0f0dcd9c77433acc6ac7",
+ "prompt_hash": "91d345a626ee744b53bc15fd9710622501da025a26ee426483976e07b6265d1d",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 63,
+ "doc": {
+ "question": "Which LLM backend received the highest experimental quality score in autonomous mode evaluations?",
+ "choices": [
+ "gpt-4o",
+ "o1-mini",
+ "o1-preview",
+ "gpt-3.5"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which LLM backend received the highest experimental quality score in autonomous mode evaluations?\nAnswer:",
+ " gpt-4o"
+ ],
+ [
+ "Question:Which LLM backend received the highest experimental quality score in autonomous mode evaluations?\nAnswer:",
+ " o1-mini"
+ ],
+ [
+ "Question:Which LLM backend received the highest experimental quality score in autonomous mode evaluations?\nAnswer:",
+ " o1-preview"
+ ],
+ [
+ "Question:Which LLM backend received the highest experimental quality score in autonomous mode evaluations?\nAnswer:",
+ " gpt-3.5"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.332674026489258,
+ false
+ ]
+ ],
+ [
+ [
+ -26.543441772460938,
+ false
+ ]
+ ],
+ [
+ [
+ -28.358800888061523,
+ false
+ ]
+ ],
+ [
+ [
+ -4.20054817199707,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.332674026489258,
+ false
+ ],
+ [
+ -26.543441772460938,
+ false
+ ],
+ [
+ -28.358800888061523,
+ false
+ ],
+ [
+ -4.20054817199707,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bcde33405bf7e40fa48c552178522b64cbb9a41ec46dfaf0378ae132c7fb4c1f",
+ "prompt_hash": "549037b47ed417a28b7198de8fae7d43feb26b69cdcc13955d4af15b49a3a3ec",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 64,
+ "doc": {
+ "question": "What was the average success rate of subtask completion for o1-preview across the Agent Laboratory workflow?",
+ "choices": [
+ "91.2%",
+ "92.8%",
+ "94.3%",
+ "95.7%"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What was the average success rate of subtask completion for o1-preview across the Agent Laboratory workflow?\nAnswer:",
+ " 91.2%"
+ ],
+ [
+ "Question:What was the average success rate of subtask completion for o1-preview across the Agent Laboratory workflow?\nAnswer:",
+ " 92.8%"
+ ],
+ [
+ "Question:What was the average success rate of subtask completion for o1-preview across the Agent Laboratory workflow?\nAnswer:",
+ " 94.3%"
+ ],
+ [
+ "Question:What was the average success rate of subtask completion for o1-preview across the Agent Laboratory workflow?\nAnswer:",
+ " 95.7%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.796567916870117,
+ false
+ ]
+ ],
+ [
+ [
+ -13.887646675109863,
+ false
+ ]
+ ],
+ [
+ [
+ -13.985444068908691,
+ false
+ ]
+ ],
+ [
+ [
+ -14.09708309173584,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.796567916870117,
+ false
+ ],
+ [
+ -13.887646675109863,
+ false
+ ],
+ [
+ -13.985444068908691,
+ false
+ ],
+ [
+ -14.09708309173584,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "5e66ec0615e0687e568f08c636727c3a94b86f5c57ccb0602fe57daabe86aadb",
+ "prompt_hash": "c55dc98cb33caaea32a87e290a0dcf02d70f9cdc90a1908490a3969c3a01608f",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 65,
+ "doc": {
+ "question": "What is the main role of Process Reward Models (PRMs) in mathematical reasoning?",
+ "choices": [
+ "Generating step-by-step reasoning",
+ "Scoring only the final answers",
+ "Evaluating the correctness of intermediate reasoning steps",
+ "Correcting grammar in math explanations"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main role of Process Reward Models (PRMs) in mathematical reasoning?\nAnswer:",
+ " Generating step-by-step reasoning"
+ ],
+ [
+ "Question:What is the main role of Process Reward Models (PRMs) in mathematical reasoning?\nAnswer:",
+ " Scoring only the final answers"
+ ],
+ [
+ "Question:What is the main role of Process Reward Models (PRMs) in mathematical reasoning?\nAnswer:",
+ " Evaluating the correctness of intermediate reasoning steps"
+ ],
+ [
+ "Question:What is the main role of Process Reward Models (PRMs) in mathematical reasoning?\nAnswer:",
+ " Correcting grammar in math explanations"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.266083717346191,
+ false
+ ]
+ ],
+ [
+ [
+ -26.028987884521484,
+ false
+ ]
+ ],
+ [
+ [
+ -20.52881622314453,
+ false
+ ]
+ ],
+ [
+ [
+ -32.604652404785156,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.266083717346191,
+ false
+ ],
+ [
+ -26.028987884521484,
+ false
+ ],
+ [
+ -20.52881622314453,
+ false
+ ],
+ [
+ -32.604652404785156,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2844343a63510bf27fdb711e33e6f30f594452767e4dbe0d233f1cb5c9bf8a76",
+ "prompt_hash": "5d89d2a2e509af4551aa2ed2bdd59a180522ae39cdd80e006ee41ee3398694e1",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 66,
+ "doc": {
+ "question": "Which label type in Monte Carlo estimation was found to perform better after consensus filtering?",
+ "choices": [
+ "Soft labels with threshold 0.5",
+ "Hard labels where at least one of 8 completions is correct",
+ "Soft labels based on average log-likelihood",
+ "Hard labels where all completions must be correct"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which label type in Monte Carlo estimation was found to perform better after consensus filtering?\nAnswer:",
+ " Soft labels with threshold 0.5"
+ ],
+ [
+ "Question:Which label type in Monte Carlo estimation was found to perform better after consensus filtering?\nAnswer:",
+ " Hard labels where at least one of 8 completions is correct"
+ ],
+ [
+ "Question:Which label type in Monte Carlo estimation was found to perform better after consensus filtering?\nAnswer:",
+ " Soft labels based on average log-likelihood"
+ ],
+ [
+ "Question:Which label type in Monte Carlo estimation was found to perform better after consensus filtering?\nAnswer:",
+ " Hard labels where all completions must be correct"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.094680786132812,
+ false
+ ]
+ ],
+ [
+ [
+ -52.55827331542969,
+ false
+ ]
+ ],
+ [
+ [
+ -35.95349884033203,
+ false
+ ]
+ ],
+ [
+ [
+ -42.59100341796875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.094680786132812,
+ false
+ ],
+ [
+ -52.55827331542969,
+ false
+ ],
+ [
+ -35.95349884033203,
+ false
+ ],
+ [
+ -42.59100341796875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "88afda71ab004f79a35f9627837735fb38190ad63321020d5b230b488cdfd999",
+ "prompt_hash": "401928153196709ffef657d7a8df11649fd7899e300cae31f072413b9f55ecf9",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 67,
+ "doc": {
+ "question": "Which model achieved the highest average F1 score on \\u005ctextsc{ProcessBench} among all PRMs tested?",
+ "choices": [
+ "Skywork-PRM-7B",
+ "Math-Shepherd-PRM-7B",
+ "Qwen2.5-Math-PRM-72B",
+ "EurusPRM-Stage1"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model achieved the highest average F1 score on \\u005ctextsc{ProcessBench} among all PRMs tested?\nAnswer:",
+ " Skywork-PRM-7B"
+ ],
+ [
+ "Question:Which model achieved the highest average F1 score on \\u005ctextsc{ProcessBench} among all PRMs tested?\nAnswer:",
+ " Math-Shepherd-PRM-7B"
+ ],
+ [
+ "Question:Which model achieved the highest average F1 score on \\u005ctextsc{ProcessBench} among all PRMs tested?\nAnswer:",
+ " Qwen2.5-Math-PRM-72B"
+ ],
+ [
+ "Question:Which model achieved the highest average F1 score on \\u005ctextsc{ProcessBench} among all PRMs tested?\nAnswer:",
+ " EurusPRM-Stage1"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -26.69187355041504,
+ false
+ ]
+ ],
+ [
+ [
+ -46.85689163208008,
+ false
+ ]
+ ],
+ [
+ [
+ -51.984886169433594,
+ false
+ ]
+ ],
+ [
+ [
+ -35.65778350830078,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -26.69187355041504,
+ false
+ ],
+ [
+ -46.85689163208008,
+ false
+ ],
+ [
+ -51.984886169433594,
+ false
+ ],
+ [
+ -35.65778350830078,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fab824b1f56ea90847f2d5be57f681a1375fb7883d3452f5bc6a1154e770791f",
+ "prompt_hash": "dc6b1ad864bcfb85b6ad288556c31bd5a38a0b088655fc3cb5b84c9821f93af5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 68,
+ "doc": {
+ "question": "What proportion of training data was retained after applying consensus filtering between LLM-as-a-judge and MC estimation?",
+ "choices": [
+ "60%",
+ "80%",
+ "40%",
+ "100%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What proportion of training data was retained after applying consensus filtering between LLM-as-a-judge and MC estimation?\nAnswer:",
+ " 60%"
+ ],
+ [
+ "Question:What proportion of training data was retained after applying consensus filtering between LLM-as-a-judge and MC estimation?\nAnswer:",
+ " 80%"
+ ],
+ [
+ "Question:What proportion of training data was retained after applying consensus filtering between LLM-as-a-judge and MC estimation?\nAnswer:",
+ " 40%"
+ ],
+ [
+ "Question:What proportion of training data was retained after applying consensus filtering between LLM-as-a-judge and MC estimation?\nAnswer:",
+ " 100%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.786626815795898,
+ false
+ ]
+ ],
+ [
+ [
+ -9.903762817382812,
+ false
+ ]
+ ],
+ [
+ [
+ -10.78529167175293,
+ false
+ ]
+ ],
+ [
+ [
+ -10.079134941101074,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.786626815795898,
+ false
+ ],
+ [
+ -9.903762817382812,
+ false
+ ],
+ [
+ -10.78529167175293,
+ false
+ ],
+ [
+ -10.079134941101074,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a90badb002c0195acc95ec750e71379338a6b520d13327350e69f3d6e4f120b3",
+ "prompt_hash": "ee869d56a11657cbe9b6fc13b234d8343f6e246501daaa9b52b503a85b614790",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 69,
+ "doc": {
+ "question": "What was identified as a key limitation of BoN evaluation for PRMs?",
+ "choices": [
+ "It requires proprietary datasets",
+ "It underestimates model capabilities on simple problems",
+ "It shifts PRMs toward outcome-based assessment",
+ "It fails to detect model hallucination"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What was identified as a key limitation of BoN evaluation for PRMs?\nAnswer:",
+ " It requires proprietary datasets"
+ ],
+ [
+ "Question:What was identified as a key limitation of BoN evaluation for PRMs?\nAnswer:",
+ " It underestimates model capabilities on simple problems"
+ ],
+ [
+ "Question:What was identified as a key limitation of BoN evaluation for PRMs?\nAnswer:",
+ " It shifts PRMs toward outcome-based assessment"
+ ],
+ [
+ "Question:What was identified as a key limitation of BoN evaluation for PRMs?\nAnswer:",
+ " It fails to detect model hallucination"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -21.735624313354492,
+ false
+ ]
+ ],
+ [
+ [
+ -33.267738342285156,
+ false
+ ]
+ ],
+ [
+ [
+ -45.264923095703125,
+ false
+ ]
+ ],
+ [
+ [
+ -21.609107971191406,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -21.735624313354492,
+ false
+ ],
+ [
+ -33.267738342285156,
+ false
+ ],
+ [
+ -45.264923095703125,
+ false
+ ],
+ [
+ -21.609107971191406,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "580e25fe6785ea6b11ad9f5e09a150a1b0b5d1c3835c65fd1798837b8b0e7439",
+ "prompt_hash": "817aab6e4b461c79d8c388303e5c43623d68a98e792065fe729556d4c7baec2d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 70,
+ "doc": {
+ "question": "What context length does Kimi k1.5 scale reinforcement learning up to?",
+ "choices": [
+ "32k",
+ "64k",
+ "128k",
+ "256k"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What context length does Kimi k1.5 scale reinforcement learning up to?\nAnswer:",
+ " 32k"
+ ],
+ [
+ "Question:What context length does Kimi k1.5 scale reinforcement learning up to?\nAnswer:",
+ " 64k"
+ ],
+ [
+ "Question:What context length does Kimi k1.5 scale reinforcement learning up to?\nAnswer:",
+ " 128k"
+ ],
+ [
+ "Question:What context length does Kimi k1.5 scale reinforcement learning up to?\nAnswer:",
+ " 256k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -9.216896057128906,
+ false
+ ]
+ ],
+ [
+ [
+ -9.53046989440918,
+ false
+ ]
+ ],
+ [
+ [
+ -9.909173011779785,
+ false
+ ]
+ ],
+ [
+ [
+ -10.77539348602295,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -9.216896057128906,
+ false
+ ],
+ [
+ -9.53046989440918,
+ false
+ ],
+ [
+ -9.909173011779785,
+ false
+ ],
+ [
+ -10.77539348602295,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c0ee046a290fa082470f2f072b2f7345ff94ff563cedc6f14d4fadf21680df6e",
+ "prompt_hash": "af9f9bb03b2d413e8444c0fd183c9536d434f1377f77e7393783073fadcd8f2e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 71,
+ "doc": {
+ "question": "What sampling method does Kimi k1.5 use to progressively train from easy to hard tasks?",
+ "choices": [
+ "Random Sampling",
+ "Uniform Sampling",
+ "Prioritized Sampling",
+ "Curriculum Sampling"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What sampling method does Kimi k1.5 use to progressively train from easy to hard tasks?\nAnswer:",
+ " Random Sampling"
+ ],
+ [
+ "Question:What sampling method does Kimi k1.5 use to progressively train from easy to hard tasks?\nAnswer:",
+ " Uniform Sampling"
+ ],
+ [
+ "Question:What sampling method does Kimi k1.5 use to progressively train from easy to hard tasks?\nAnswer:",
+ " Prioritized Sampling"
+ ],
+ [
+ "Question:What sampling method does Kimi k1.5 use to progressively train from easy to hard tasks?\nAnswer:",
+ " Curriculum Sampling"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.098043441772461,
+ false
+ ]
+ ],
+ [
+ [
+ -9.754707336425781,
+ false
+ ]
+ ],
+ [
+ [
+ -10.968029022216797,
+ false
+ ]
+ ],
+ [
+ [
+ -12.98151683807373,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.098043441772461,
+ false
+ ],
+ [
+ -9.754707336425781,
+ false
+ ],
+ [
+ -10.968029022216797,
+ false
+ ],
+ [
+ -12.98151683807373,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "0a5f78f1206140d73beb523038014fd2ce546873c654e3c1ec8f59e6cdb5a75d",
+ "prompt_hash": "cb32bfec7720d85f6ad95c7a0b6bac96161ceef1bd814da42629a6dd90e2ed77",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 72,
+ "doc": {
+ "question": "How many examples are included in the vanilla SFT dataset for general question answering?",
+ "choices": [
+ "200k",
+ "500k",
+ "1 million",
+ "50k"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:How many examples are included in the vanilla SFT dataset for general question answering?\nAnswer:",
+ " 200k"
+ ],
+ [
+ "Question:How many examples are included in the vanilla SFT dataset for general question answering?\nAnswer:",
+ " 500k"
+ ],
+ [
+ "Question:How many examples are included in the vanilla SFT dataset for general question answering?\nAnswer:",
+ " 1 million"
+ ],
+ [
+ "Question:How many examples are included in the vanilla SFT dataset for general question answering?\nAnswer:",
+ " 50k"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -7.645723819732666,
+ false
+ ]
+ ],
+ [
+ [
+ -7.790793418884277,
+ false
+ ]
+ ],
+ [
+ [
+ -8.336419105529785,
+ false
+ ]
+ ],
+ [
+ [
+ -6.065946102142334,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -7.645723819732666,
+ false
+ ],
+ [
+ -7.790793418884277,
+ false
+ ],
+ [
+ -8.336419105529785,
+ false
+ ],
+ [
+ -6.065946102142334,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "996bf77200fece7f5a6ddf62b2b06f86614c6f68fbc38111222394546b6c703f",
+ "prompt_hash": "80f0926b7e7aec691924fa4e6ee454ba3408a796e57ac4d43decf6a0f8e8e7ba",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 73,
+ "doc": {
+ "question": "Which reward model achieved higher accuracy during manual spot checks in math tasks?",
+ "choices": [
+ "Classic RM",
+ "Chain-of-Thought RM",
+ "Baseline RM",
+ "Verbal RM"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which reward model achieved higher accuracy during manual spot checks in math tasks?\nAnswer:",
+ " Classic RM"
+ ],
+ [
+ "Question:Which reward model achieved higher accuracy during manual spot checks in math tasks?\nAnswer:",
+ " Chain-of-Thought RM"
+ ],
+ [
+ "Question:Which reward model achieved higher accuracy during manual spot checks in math tasks?\nAnswer:",
+ " Baseline RM"
+ ],
+ [
+ "Question:Which reward model achieved higher accuracy during manual spot checks in math tasks?\nAnswer:",
+ " Verbal RM"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.286808013916016,
+ false
+ ]
+ ],
+ [
+ [
+ -19.627622604370117,
+ false
+ ]
+ ],
+ [
+ [
+ -14.093639373779297,
+ false
+ ]
+ ],
+ [
+ [
+ -18.8996639251709,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.286808013916016,
+ false
+ ],
+ [
+ -19.627622604370117,
+ false
+ ],
+ [
+ -14.093639373779297,
+ false
+ ],
+ [
+ -18.8996639251709,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ac223f11de1fad1344b2ab4032ea85dae386f59857cc920b38cdd356d3311713",
+ "prompt_hash": "5f95af7274e1c87b1eb262749d1c7d5bd3251f4aff4610ed4c3ad4dbdb1d95d3",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 74,
+ "doc": {
+ "question": "Which component does the RL training system use to avoid re-generating full responses in long-context training?",
+ "choices": [
+ "Replay Buffer",
+ "Checkpoint Engine",
+ "Sidecar Container",
+ "Inference Head"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:Which component does the RL training system use to avoid re-generating full responses in long-context training?\nAnswer:",
+ " Replay Buffer"
+ ],
+ [
+ "Question:Which component does the RL training system use to avoid re-generating full responses in long-context training?\nAnswer:",
+ " Checkpoint Engine"
+ ],
+ [
+ "Question:Which component does the RL training system use to avoid re-generating full responses in long-context training?\nAnswer:",
+ " Sidecar Container"
+ ],
+ [
+ "Question:Which component does the RL training system use to avoid re-generating full responses in long-context training?\nAnswer:",
+ " Inference Head"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.377023696899414,
+ false
+ ]
+ ],
+ [
+ [
+ -21.405956268310547,
+ false
+ ]
+ ],
+ [
+ [
+ -26.84349250793457,
+ false
+ ]
+ ],
+ [
+ [
+ -14.407575607299805,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.377023696899414,
+ false
+ ],
+ [
+ -21.405956268310547,
+ false
+ ],
+ [
+ -26.84349250793457,
+ false
+ ],
+ [
+ -14.407575607299805,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a5c30dfdac895b503d512231471d71844016d18ed5d232e31fcfd05a65a48b49",
+ "prompt_hash": "8dc081280eec6950d133883b436f28a72499a134e27f52db897044d05900ff47",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 75,
+ "doc": {
+ "question": "Which pre-trained model is used to initialize the vision encoder in VideoLLaMA3?",
+ "choices": [
+ "CLIP",
+ "SigLIP",
+ "InternVL2",
+ "BLIP3"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which pre-trained model is used to initialize the vision encoder in VideoLLaMA3?\nAnswer:",
+ " CLIP"
+ ],
+ [
+ "Question:Which pre-trained model is used to initialize the vision encoder in VideoLLaMA3?\nAnswer:",
+ " SigLIP"
+ ],
+ [
+ "Question:Which pre-trained model is used to initialize the vision encoder in VideoLLaMA3?\nAnswer:",
+ " InternVL2"
+ ],
+ [
+ "Question:Which pre-trained model is used to initialize the vision encoder in VideoLLaMA3?\nAnswer:",
+ " BLIP3"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.1795268058776855,
+ false
+ ]
+ ],
+ [
+ [
+ -12.660771369934082,
+ false
+ ]
+ ],
+ [
+ [
+ -19.793346405029297,
+ false
+ ]
+ ],
+ [
+ [
+ -11.437952041625977,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.1795268058776855,
+ false
+ ],
+ [
+ -12.660771369934082,
+ false
+ ],
+ [
+ -19.793346405029297,
+ false
+ ],
+ [
+ -11.437952041625977,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "00e40e610cd6db03ac89a3c9626cdf032f69812c3403f3f363707e5b34e2b97e",
+ "prompt_hash": "e5cf4cce5840e764c1efd9bedf3d9866f831acf926505efbb6f60af269c25057",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 76,
+ "doc": {
+ "question": "What is the maximum token length set during VideoLLaMA3 training?",
+ "choices": [
+ "8192",
+ "16384",
+ "32768",
+ "10240"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the maximum token length set during VideoLLaMA3 training?\nAnswer:",
+ " 8192"
+ ],
+ [
+ "Question:What is the maximum token length set during VideoLLaMA3 training?\nAnswer:",
+ " 16384"
+ ],
+ [
+ "Question:What is the maximum token length set during VideoLLaMA3 training?\nAnswer:",
+ " 32768"
+ ],
+ [
+ "Question:What is the maximum token length set during VideoLLaMA3 training?\nAnswer:",
+ " 10240"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.177717208862305,
+ false
+ ]
+ ],
+ [
+ [
+ -7.625584602355957,
+ false
+ ]
+ ],
+ [
+ [
+ -5.8423309326171875,
+ false
+ ]
+ ],
+ [
+ [
+ -8.682770729064941,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.177717208862305,
+ false
+ ],
+ [
+ -7.625584602355957,
+ false
+ ],
+ [
+ -5.8423309326171875,
+ false
+ ],
+ [
+ -8.682770729064941,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "c3512817cd5699ebb4877b792a24f5a10a5d2ebc6a681c827b1d06c09270ab1a",
+ "prompt_hash": "5462fe4be5c636e15d6176dd73c993e27023ba7b14f1f04c7808481608f3c99a",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 77,
+ "doc": {
+ "question": "Which dataset is used for streaming video understanding in the video-centric fine-tuning stage?",
+ "choices": [
+ "COCO-2017",
+ "Ego4D",
+ "DocVQA",
+ "ADE20K"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which dataset is used for streaming video understanding in the video-centric fine-tuning stage?\nAnswer:",
+ " COCO-2017"
+ ],
+ [
+ "Question:Which dataset is used for streaming video understanding in the video-centric fine-tuning stage?\nAnswer:",
+ " Ego4D"
+ ],
+ [
+ "Question:Which dataset is used for streaming video understanding in the video-centric fine-tuning stage?\nAnswer:",
+ " DocVQA"
+ ],
+ [
+ "Question:Which dataset is used for streaming video understanding in the video-centric fine-tuning stage?\nAnswer:",
+ " ADE20K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -16.099451065063477,
+ false
+ ]
+ ],
+ [
+ [
+ -8.310736656188965,
+ false
+ ]
+ ],
+ [
+ [
+ -14.159783363342285,
+ false
+ ]
+ ],
+ [
+ [
+ -16.33256721496582,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -16.099451065063477,
+ false
+ ],
+ [
+ -8.310736656188965,
+ false
+ ],
+ [
+ -14.159783363342285,
+ false
+ ],
+ [
+ -16.33256721496582,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a7cfa0b05c91d4fa53ea5fd23831a9b41dc748ab0f9f3db26d4af28ea9e44e31",
+ "prompt_hash": "42e3af7da2b6c6f4aacc72716b16aa308a099fae5ffa3299082009d117a94bf9",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 78,
+ "doc": {
+ "question": "During the Vision Encoder Adaptation stage, which components are trainable?",
+ "choices": [
+ "Vision encoder and projector",
+ "LLM and projector",
+ "Only the LLM",
+ "Only the projector"
+ ],
+ "answer": 0
+ },
+ "target": 0,
+ "arguments": [
+ [
+ "Question:During the Vision Encoder Adaptation stage, which components are trainable?\nAnswer:",
+ " Vision encoder and projector"
+ ],
+ [
+ "Question:During the Vision Encoder Adaptation stage, which components are trainable?\nAnswer:",
+ " LLM and projector"
+ ],
+ [
+ "Question:During the Vision Encoder Adaptation stage, which components are trainable?\nAnswer:",
+ " Only the LLM"
+ ],
+ [
+ "Question:During the Vision Encoder Adaptation stage, which components are trainable?\nAnswer:",
+ " Only the projector"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.76540756225586,
+ false
+ ]
+ ],
+ [
+ [
+ -18.835247039794922,
+ false
+ ]
+ ],
+ [
+ [
+ -12.927775382995605,
+ false
+ ]
+ ],
+ [
+ [
+ -11.230024337768555,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.76540756225586,
+ false
+ ],
+ [
+ -18.835247039794922,
+ false
+ ],
+ [
+ -12.927775382995605,
+ false
+ ],
+ [
+ -11.230024337768555,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f226d512c57694251e461d8b6c5e1c5fb619fbbe39cdb5811bad9ab7d448f946",
+ "prompt_hash": "83eec47353495c6220586af9abea63abc51a12465de390c71feb4558fc6de4ba",
+ "target_hash": "5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 79,
+ "doc": {
+ "question": "What performance score did the VideoLLaMA3 2B model achieve on the RealWorldQA benchmark?",
+ "choices": [
+ "60.1%",
+ "62.9%",
+ "67.3%",
+ "70.7%"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What performance score did the VideoLLaMA3 2B model achieve on the RealWorldQA benchmark?\nAnswer:",
+ " 60.1%"
+ ],
+ [
+ "Question:What performance score did the VideoLLaMA3 2B model achieve on the RealWorldQA benchmark?\nAnswer:",
+ " 62.9%"
+ ],
+ [
+ "Question:What performance score did the VideoLLaMA3 2B model achieve on the RealWorldQA benchmark?\nAnswer:",
+ " 67.3%"
+ ],
+ [
+ "Question:What performance score did the VideoLLaMA3 2B model achieve on the RealWorldQA benchmark?\nAnswer:",
+ " 70.7%"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -15.817644119262695,
+ false
+ ]
+ ],
+ [
+ [
+ -15.504510879516602,
+ false
+ ]
+ ],
+ [
+ [
+ -15.596342086791992,
+ false
+ ]
+ ],
+ [
+ [
+ -16.273401260375977,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -15.817644119262695,
+ false
+ ],
+ [
+ -15.504510879516602,
+ false
+ ],
+ [
+ -15.596342086791992,
+ false
+ ],
+ [
+ -16.273401260375977,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "63c6f3fb7081de19c05a9bc11b48bac75c5e1615a2ef617f288fc415d6cb8f3a",
+ "prompt_hash": "bda328a3081669f203dd6387178ceb2e2b8d895e884a13458d31751a2979d55a",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 80,
+ "doc": {
+ "question": "What is the purpose of the Token Length Budget (TLB) in the DAST framework?",
+ "choices": [
+ "To set a fixed token limit for all problem types",
+ "To control model temperature during inference",
+ "To map problem difficulty to target response length",
+ "To prevent the model from generating any incorrect answers"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the purpose of the Token Length Budget (TLB) in the DAST framework?\nAnswer:",
+ " To set a fixed token limit for all problem types"
+ ],
+ [
+ "Question:What is the purpose of the Token Length Budget (TLB) in the DAST framework?\nAnswer:",
+ " To control model temperature during inference"
+ ],
+ [
+ "Question:What is the purpose of the Token Length Budget (TLB) in the DAST framework?\nAnswer:",
+ " To map problem difficulty to target response length"
+ ],
+ [
+ "Question:What is the purpose of the Token Length Budget (TLB) in the DAST framework?\nAnswer:",
+ " To prevent the model from generating any incorrect answers"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -37.953125,
+ false
+ ]
+ ],
+ [
+ [
+ -24.54508399963379,
+ false
+ ]
+ ],
+ [
+ [
+ -43.912017822265625,
+ false
+ ]
+ ],
+ [
+ [
+ -27.336580276489258,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -37.953125,
+ false
+ ],
+ [
+ -24.54508399963379,
+ false
+ ],
+ [
+ -43.912017822265625,
+ false
+ ],
+ [
+ -27.336580276489258,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a18c59d3a9b1542d6e8bd0c7a65bd7ef809bed47ecd8c37d9b616a4774d29122",
+ "prompt_hash": "09ed450aaa63d768715a31b9b59881d6d7baefc2fcd112520af69c52c600ce3d",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 81,
+ "doc": {
+ "question": "In the Token Length Budget (TLB) formula, what does the variable 'p' represent?",
+ "choices": [
+ "Penalty factor based on incorrect responses",
+ "The normalized response length of the longest answer",
+ "Sampling accuracy computed from the number of correct samples",
+ "A static constant controlling learning rate"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the Token Length Budget (TLB) formula, what does the variable 'p' represent?\nAnswer:",
+ " Penalty factor based on incorrect responses"
+ ],
+ [
+ "Question:In the Token Length Budget (TLB) formula, what does the variable 'p' represent?\nAnswer:",
+ " The normalized response length of the longest answer"
+ ],
+ [
+ "Question:In the Token Length Budget (TLB) formula, what does the variable 'p' represent?\nAnswer:",
+ " Sampling accuracy computed from the number of correct samples"
+ ],
+ [
+ "Question:In the Token Length Budget (TLB) formula, what does the variable 'p' represent?\nAnswer:",
+ " A static constant controlling learning rate"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -29.640729904174805,
+ false
+ ]
+ ],
+ [
+ [
+ -31.554302215576172,
+ false
+ ]
+ ],
+ [
+ [
+ -43.97962951660156,
+ false
+ ]
+ ],
+ [
+ [
+ -34.77959060668945,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -29.640729904174805,
+ false
+ ],
+ [
+ -31.554302215576172,
+ false
+ ],
+ [
+ -43.97962951660156,
+ false
+ ],
+ [
+ -34.77959060668945,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4fca15378f796db04aa9dac6a18110b3ed580b99c4586e2ad478a0dca796e069",
+ "prompt_hash": "41714882db08cebb37b4843f1f204be7441b126b142443dc6ed44a1932f4962e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 82,
+ "doc": {
+ "question": "What is one main limitation of prompt-based methods like CCoT and CoD?",
+ "choices": [
+ "They require reinforcement learning optimization",
+ "They consistently improve accuracy across all benchmarks",
+ "They show unstable performance and can cause accuracy loss",
+ "They are only compatible with models larger than 32B"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is one main limitation of prompt-based methods like CCoT and CoD?\nAnswer:",
+ " They require reinforcement learning optimization"
+ ],
+ [
+ "Question:What is one main limitation of prompt-based methods like CCoT and CoD?\nAnswer:",
+ " They consistently improve accuracy across all benchmarks"
+ ],
+ [
+ "Question:What is one main limitation of prompt-based methods like CCoT and CoD?\nAnswer:",
+ " They show unstable performance and can cause accuracy loss"
+ ],
+ [
+ "Question:What is one main limitation of prompt-based methods like CCoT and CoD?\nAnswer:",
+ " They are only compatible with models larger than 32B"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -22.71169662475586,
+ false
+ ]
+ ],
+ [
+ [
+ -32.80454635620117,
+ false
+ ]
+ ],
+ [
+ [
+ -39.688392639160156,
+ false
+ ]
+ ],
+ [
+ [
+ -39.463890075683594,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -22.71169662475586,
+ false
+ ],
+ [
+ -32.80454635620117,
+ false
+ ],
+ [
+ -39.688392639160156,
+ false
+ ],
+ [
+ -39.463890075683594,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d7a52ace8a25221565a8c5463aba7ebc3b9aabc72b39749c3e8de70649f995c3",
+ "prompt_hash": "6f0fd8ba66d9b53253aebd882b9d37e5df717c9da982972b4a79018a46cb27ed",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 83,
+ "doc": {
+ "question": "What happens when a correct response's length significantly exceeds its Token Length Budget (TLB)?",
+ "choices": [
+ "It gets amplified reward for being detailed",
+ "It triggers reward decay",
+ "It is filtered out before training",
+ "It is automatically corrected by the model"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What happens when a correct response's length significantly exceeds its Token Length Budget (TLB)?\nAnswer:",
+ " It gets amplified reward for being detailed"
+ ],
+ [
+ "Question:What happens when a correct response's length significantly exceeds its Token Length Budget (TLB)?\nAnswer:",
+ " It triggers reward decay"
+ ],
+ [
+ "Question:What happens when a correct response's length significantly exceeds its Token Length Budget (TLB)?\nAnswer:",
+ " It is filtered out before training"
+ ],
+ [
+ "Question:What happens when a correct response's length significantly exceeds its Token Length Budget (TLB)?\nAnswer:",
+ " It is automatically corrected by the model"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -47.084957122802734,
+ false
+ ]
+ ],
+ [
+ [
+ -23.98589515686035,
+ false
+ ]
+ ],
+ [
+ [
+ -26.632061004638672,
+ false
+ ]
+ ],
+ [
+ [
+ -23.664764404296875,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -47.084957122802734,
+ false
+ ],
+ [
+ -23.98589515686035,
+ false
+ ],
+ [
+ -26.632061004638672,
+ false
+ ],
+ [
+ -23.664764404296875,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "82fe049587271580ea8dd607ada45b7438517c95c282c0357576d917bd053646",
+ "prompt_hash": "07229ec3bfcf37a89ea9a8881ca039c5be6127fe93cc90dd670d802b5e38eaa1",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 84,
+ "doc": {
+ "question": "Why does DAST avoid using Correct-InCorrect Pairs (CICP) in training?",
+ "choices": [
+ "Because they significantly increase training time",
+ "Because they show no improvement in performance",
+ "Because they require larger models to be effective",
+ "Because they only apply to coding tasks"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Why does DAST avoid using Correct-InCorrect Pairs (CICP) in training?\nAnswer:",
+ " Because they significantly increase training time"
+ ],
+ [
+ "Question:Why does DAST avoid using Correct-InCorrect Pairs (CICP) in training?\nAnswer:",
+ " Because they show no improvement in performance"
+ ],
+ [
+ "Question:Why does DAST avoid using Correct-InCorrect Pairs (CICP) in training?\nAnswer:",
+ " Because they require larger models to be effective"
+ ],
+ [
+ "Question:Why does DAST avoid using Correct-InCorrect Pairs (CICP) in training?\nAnswer:",
+ " Because they only apply to coding tasks"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -18.65841293334961,
+ false
+ ]
+ ],
+ [
+ [
+ -21.587730407714844,
+ false
+ ]
+ ],
+ [
+ [
+ -32.58469009399414,
+ false
+ ]
+ ],
+ [
+ [
+ -30.138477325439453,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -18.65841293334961,
+ false
+ ],
+ [
+ -21.587730407714844,
+ false
+ ],
+ [
+ -32.58469009399414,
+ false
+ ],
+ [
+ -30.138477325439453,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "d28043f599bdfbaf311b94e3db9b664a8fbfec6789531d51435597d374b7d048",
+ "prompt_hash": "ffb20a4d0bb28f993589ae51b84525c5484427984eced4166de0cbba3f522250",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 85,
+ "doc": {
+ "question": "What is the total number of tokens consumed during the four-stage pre-training of Kimi-VL-A3B?",
+ "choices": [
+ "3.3T",
+ "4.4T",
+ "5.2T",
+ "2.8T"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the total number of tokens consumed during the four-stage pre-training of Kimi-VL-A3B?\nAnswer:",
+ " 3.3T"
+ ],
+ [
+ "Question:What is the total number of tokens consumed during the four-stage pre-training of Kimi-VL-A3B?\nAnswer:",
+ " 4.4T"
+ ],
+ [
+ "Question:What is the total number of tokens consumed during the four-stage pre-training of Kimi-VL-A3B?\nAnswer:",
+ " 5.2T"
+ ],
+ [
+ "Question:What is the total number of tokens consumed during the four-stage pre-training of Kimi-VL-A3B?\nAnswer:",
+ " 2.8T"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -12.320706367492676,
+ false
+ ]
+ ],
+ [
+ [
+ -12.86019515991211,
+ false
+ ]
+ ],
+ [
+ [
+ -12.81981372833252,
+ false
+ ]
+ ],
+ [
+ [
+ -12.066787719726562,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -12.320706367492676,
+ false
+ ],
+ [
+ -12.86019515991211,
+ false
+ ],
+ [
+ -12.81981372833252,
+ false
+ ],
+ [
+ -12.066787719726562,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f82572dc0a20f3144d7459e5ad34eb5dde4b9b75b4c59d4cf1643546d1af4736",
+ "prompt_hash": "ad96cf26e83b8764fd9a7a0ce92d239fa9a54dcf8e65716cc86be247d0d5d45b",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 86,
+ "doc": {
+ "question": "Which positional embedding method is added to improve spatial representation in high-resolution images?",
+ "choices": [
+ "Absolute positional encoding",
+ "Learnable Fourier embedding",
+ "2D rotary positional embedding (RoPE)",
+ "Relative attention bias"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which positional embedding method is added to improve spatial representation in high-resolution images?\nAnswer:",
+ " Absolute positional encoding"
+ ],
+ [
+ "Question:Which positional embedding method is added to improve spatial representation in high-resolution images?\nAnswer:",
+ " Learnable Fourier embedding"
+ ],
+ [
+ "Question:Which positional embedding method is added to improve spatial representation in high-resolution images?\nAnswer:",
+ " 2D rotary positional embedding (RoPE)"
+ ],
+ [
+ "Question:Which positional embedding method is added to improve spatial representation in high-resolution images?\nAnswer:",
+ " Relative attention bias"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.76806354522705,
+ false
+ ]
+ ],
+ [
+ [
+ -23.88921356201172,
+ false
+ ]
+ ],
+ [
+ [
+ -25.262365341186523,
+ false
+ ]
+ ],
+ [
+ [
+ -24.286312103271484,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.76806354522705,
+ false
+ ],
+ [
+ -23.88921356201172,
+ false
+ ],
+ [
+ -25.262365341186523,
+ false
+ ],
+ [
+ -24.286312103271484,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "ffce4519ef01704da6c6231115fd27bdf88aa874e4db05e920730a00fc525b4c",
+ "prompt_hash": "ff64ca7dae3e528c28fd555867645fb08bbcf537139e6991592fc7d6754701c2",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 87,
+ "doc": {
+ "question": "What optimization strategy is used in the distributed implementation of the Muon optimizer?",
+ "choices": [
+ "Data Parallelism",
+ "Pipeline Parallelism",
+ "ZeRO-1",
+ "Dropout Regularization"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What optimization strategy is used in the distributed implementation of the Muon optimizer?\nAnswer:",
+ " Data Parallelism"
+ ],
+ [
+ "Question:What optimization strategy is used in the distributed implementation of the Muon optimizer?\nAnswer:",
+ " Pipeline Parallelism"
+ ],
+ [
+ "Question:What optimization strategy is used in the distributed implementation of the Muon optimizer?\nAnswer:",
+ " ZeRO-1"
+ ],
+ [
+ "Question:What optimization strategy is used in the distributed implementation of the Muon optimizer?\nAnswer:",
+ " Dropout Regularization"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.578514099121094,
+ false
+ ]
+ ],
+ [
+ [
+ -14.708837509155273,
+ false
+ ]
+ ],
+ [
+ [
+ -17.5419979095459,
+ false
+ ]
+ ],
+ [
+ [
+ -19.10905647277832,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.578514099121094,
+ false
+ ],
+ [
+ -14.708837509155273,
+ false
+ ],
+ [
+ -17.5419979095459,
+ false
+ ],
+ [
+ -19.10905647277832,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "23786e8e71ee8cfdfe031064a9c81ab9db86977307abe1cd0a33745e2e68313b",
+ "prompt_hash": "b3e7eacc08e6f94e198e89be651e1f35737a62058962d1a9377bdaaa200652f5",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 88,
+ "doc": {
+ "question": "What is the architectural configuration of the MoE language model used in Kimi-VL-A3B?",
+ "choices": [
+ "Dense architecture with 7B parameters",
+ "MoE architecture with 2.8B activated, 16B total parameters",
+ "Transformer-XL with 1.2B parameters",
+ "Sparse attention model with 4.5B parameters"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the architectural configuration of the MoE language model used in Kimi-VL-A3B?\nAnswer:",
+ " Dense architecture with 7B parameters"
+ ],
+ [
+ "Question:What is the architectural configuration of the MoE language model used in Kimi-VL-A3B?\nAnswer:",
+ " MoE architecture with 2.8B activated, 16B total parameters"
+ ],
+ [
+ "Question:What is the architectural configuration of the MoE language model used in Kimi-VL-A3B?\nAnswer:",
+ " Transformer-XL with 1.2B parameters"
+ ],
+ [
+ "Question:What is the architectural configuration of the MoE language model used in Kimi-VL-A3B?\nAnswer:",
+ " Sparse attention model with 4.5B parameters"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.336137771606445,
+ false
+ ]
+ ],
+ [
+ [
+ -48.135433197021484,
+ false
+ ]
+ ],
+ [
+ [
+ -22.78892707824707,
+ false
+ ]
+ ],
+ [
+ [
+ -30.46182632446289,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.336137771606445,
+ false
+ ],
+ [
+ -48.135433197021484,
+ false
+ ],
+ [
+ -22.78892707824707,
+ false
+ ],
+ [
+ -30.46182632446289,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "fe14f4f4396ee89e1bd108f7df45f2c53ccd5e136c2f5bca2caa22f3211e80f9",
+ "prompt_hash": "24e8179c91b0fcb19c76032f14fee2597a57b965ca77c00f09b6ed737fa088f8",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 89,
+ "doc": {
+ "question": "What is the final maximum context length supported after the long-context activation stage?",
+ "choices": [
+ "32K",
+ "64K",
+ "100K",
+ "128K"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:What is the final maximum context length supported after the long-context activation stage?\nAnswer:",
+ " 32K"
+ ],
+ [
+ "Question:What is the final maximum context length supported after the long-context activation stage?\nAnswer:",
+ " 64K"
+ ],
+ [
+ "Question:What is the final maximum context length supported after the long-context activation stage?\nAnswer:",
+ " 100K"
+ ],
+ [
+ "Question:What is the final maximum context length supported after the long-context activation stage?\nAnswer:",
+ " 128K"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -6.9437689781188965,
+ false
+ ]
+ ],
+ [
+ [
+ -7.274698257446289,
+ false
+ ]
+ ],
+ [
+ [
+ -9.693902969360352,
+ false
+ ]
+ ],
+ [
+ [
+ -6.993861675262451,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -6.9437689781188965,
+ false
+ ],
+ [
+ -7.274698257446289,
+ false
+ ],
+ [
+ -9.693902969360352,
+ false
+ ],
+ [
+ -6.993861675262451,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "f377b78abb48ec9b5d4fb26449252e38cac29d0700bae86656d6deaaa9a1d93b",
+ "prompt_hash": "f780344be9d3583e27920dc90b52681e5b896b9728aa04062e4b08eeb588ab76",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 90,
+ "doc": {
+ "question": "What is the frequency range of the ACT DR6 f220 band?",
+ "choices": [
+ "124–172 GHz",
+ "77–112 GHz",
+ "182–277 GHz",
+ "200–300 GHz"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the frequency range of the ACT DR6 f220 band?\nAnswer:",
+ " 124–172 GHz"
+ ],
+ [
+ "Question:What is the frequency range of the ACT DR6 f220 band?\nAnswer:",
+ " 77–112 GHz"
+ ],
+ [
+ "Question:What is the frequency range of the ACT DR6 f220 band?\nAnswer:",
+ " 182–277 GHz"
+ ],
+ [
+ "Question:What is the frequency range of the ACT DR6 f220 band?\nAnswer:",
+ " 200–300 GHz"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -24.556001663208008,
+ false
+ ]
+ ],
+ [
+ [
+ -23.894773483276367,
+ false
+ ]
+ ],
+ [
+ [
+ -27.276145935058594,
+ false
+ ]
+ ],
+ [
+ [
+ -18.93018913269043,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -24.556001663208008,
+ false
+ ],
+ [
+ -23.894773483276367,
+ false
+ ],
+ [
+ -27.276145935058594,
+ false
+ ],
+ [
+ -18.93018913269043,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "4b064a1aab41cf48c510183d7bf4d19c299f676b852d9f541751a2c430b25cea",
+ "prompt_hash": "ccabbad5d21b27e638a551af4199472f6e17e6fe6ce37b6ec91bad1c2384d84e",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 91,
+ "doc": {
+ "question": "Which CMB lensing multipole range is used in the ACT DR6 likelihood?",
+ "choices": [
+ "8 < L < 400",
+ "40 < L < 763",
+ "100 < L < 900",
+ "400 < L < 8500"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:Which CMB lensing multipole range is used in the ACT DR6 likelihood?\nAnswer:",
+ " 8 < L < 400"
+ ],
+ [
+ "Question:Which CMB lensing multipole range is used in the ACT DR6 likelihood?\nAnswer:",
+ " 40 < L < 763"
+ ],
+ [
+ "Question:Which CMB lensing multipole range is used in the ACT DR6 likelihood?\nAnswer:",
+ " 100 < L < 900"
+ ],
+ [
+ "Question:Which CMB lensing multipole range is used in the ACT DR6 likelihood?\nAnswer:",
+ " 400 < L < 8500"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -27.493865966796875,
+ false
+ ]
+ ],
+ [
+ [
+ -31.67818832397461,
+ false
+ ]
+ ],
+ [
+ [
+ -23.280017852783203,
+ false
+ ]
+ ],
+ [
+ [
+ -26.958721160888672,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -27.493865966796875,
+ false
+ ],
+ [
+ -31.67818832397461,
+ false
+ ],
+ [
+ -23.280017852783203,
+ false
+ ],
+ [
+ -26.958721160888672,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b15ffd930b50a34af9a9f1c139a7cb8a380a740ae9c814d6238a1f3b38fc43d1",
+ "prompt_hash": "f6635b82c71f883dba2330b344c3bec682d9cb4144ecb37e3271b2a55a286fd7",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 92,
+ "doc": {
+ "question": "What is the pivot scale at which the scalar spectral index \\( n_s \\) is defined?",
+ "choices": [
+ "0.01 Mpc⁻¹",
+ "0.05 Mpc⁻¹",
+ "0.1 Mpc⁻¹",
+ "0.002 Mpc⁻¹"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What is the pivot scale at which the scalar spectral index \\( n_s \\) is defined?\nAnswer:",
+ " 0.01 Mpc⁻¹"
+ ],
+ [
+ "Question:What is the pivot scale at which the scalar spectral index \\( n_s \\) is defined?\nAnswer:",
+ " 0.05 Mpc⁻¹"
+ ],
+ [
+ "Question:What is the pivot scale at which the scalar spectral index \\( n_s \\) is defined?\nAnswer:",
+ " 0.1 Mpc⁻¹"
+ ],
+ [
+ "Question:What is the pivot scale at which the scalar spectral index \\( n_s \\) is defined?\nAnswer:",
+ " 0.002 Mpc⁻¹"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -36.95471954345703,
+ false
+ ]
+ ],
+ [
+ [
+ -35.994468688964844,
+ false
+ ]
+ ],
+ [
+ [
+ -37.747215270996094,
+ false
+ ]
+ ],
+ [
+ [
+ -38.25625991821289,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -36.95471954345703,
+ false
+ ],
+ [
+ -35.994468688964844,
+ false
+ ],
+ [
+ -37.747215270996094,
+ false
+ ],
+ [
+ -38.25625991821289,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a9cf682455147fca52376d93879738465b6b84b13797a64f6269a1a35d18c95d",
+ "prompt_hash": "dd4686d8bd0abccb4657edbc015f04ac991ff9f3f8a080f433325da7e364deae",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 93,
+ "doc": {
+ "question": "Which tool is used in the analysis to perform parameter estimation from the ACT DR6 data?",
+ "choices": [
+ "CosmoMC",
+ "emcee",
+ "Cobaya",
+ "CLASS Lite"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which tool is used in the analysis to perform parameter estimation from the ACT DR6 data?\nAnswer:",
+ " CosmoMC"
+ ],
+ [
+ "Question:Which tool is used in the analysis to perform parameter estimation from the ACT DR6 data?\nAnswer:",
+ " emcee"
+ ],
+ [
+ "Question:Which tool is used in the analysis to perform parameter estimation from the ACT DR6 data?\nAnswer:",
+ " Cobaya"
+ ],
+ [
+ "Question:Which tool is used in the analysis to perform parameter estimation from the ACT DR6 data?\nAnswer:",
+ " CLASS Lite"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -13.421830177307129,
+ false
+ ]
+ ],
+ [
+ [
+ -9.822603225708008,
+ false
+ ]
+ ],
+ [
+ [
+ -18.692726135253906,
+ false
+ ]
+ ],
+ [
+ [
+ -20.142230987548828,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -13.421830177307129,
+ false
+ ],
+ [
+ -9.822603225708008,
+ false
+ ],
+ [
+ -18.692726135253906,
+ false
+ ],
+ [
+ -20.142230987548828,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "2cd48f327578d690a6428e9bf4f0b47584cec89b1e581eb69d59cd42b1bd67da",
+ "prompt_hash": "42154366caa1146e74f048ce8a5dbf3eaf9a68945c85b57db84e309e01fc7f69",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 94,
+ "doc": {
+ "question": "What value and uncertainty are used as the Gaussian prior for the optical depth \\( \\tau \\)?",
+ "choices": [
+ "0.0651 ± 0.0042",
+ "0.0566 ± 0.0058",
+ "0.078 ± 0.010",
+ "0.0483 ± 0.0060"
+ ],
+ "answer": 1
+ },
+ "target": 1,
+ "arguments": [
+ [
+ "Question:What value and uncertainty are used as the Gaussian prior for the optical depth \\( \\tau \\)?\nAnswer:",
+ " 0.0651 ± 0.0042"
+ ],
+ [
+ "Question:What value and uncertainty are used as the Gaussian prior for the optical depth \\( \\tau \\)?\nAnswer:",
+ " 0.0566 ± 0.0058"
+ ],
+ [
+ "Question:What value and uncertainty are used as the Gaussian prior for the optical depth \\( \\tau \\)?\nAnswer:",
+ " 0.078 ± 0.010"
+ ],
+ [
+ "Question:What value and uncertainty are used as the Gaussian prior for the optical depth \\( \\tau \\)?\nAnswer:",
+ " 0.0483 ± 0.0060"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -28.06600570678711,
+ false
+ ]
+ ],
+ [
+ [
+ -28.294063568115234,
+ false
+ ]
+ ],
+ [
+ [
+ -24.328777313232422,
+ false
+ ]
+ ],
+ [
+ [
+ -28.70789337158203,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -28.06600570678711,
+ false
+ ],
+ [
+ -28.294063568115234,
+ false
+ ],
+ [
+ -24.328777313232422,
+ false
+ ],
+ [
+ -28.70789337158203,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a4cd2b1fc221c05c1453a51c9f5f62f75825eeb6f72b4274b7addb69c66012dc",
+ "prompt_hash": "94164a465e85870f5248c96c2d94fe3e84964bd731cb892d71f4ff251530b93e",
+ "target_hash": "6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 95,
+ "doc": {
+ "question": "What is the main contribution of the MVAN model in encoding news propagation?",
+ "choices": [
+ "It introduces BiLSTM for sentence alignment.",
+ "It applies CNN to extract propagation features.",
+ "It adopts graph attention networks to represent propagation structure.",
+ "It uses one-hot encoding to construct social graphs."
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What is the main contribution of the MVAN model in encoding news propagation?\nAnswer:",
+ " It introduces BiLSTM for sentence alignment."
+ ],
+ [
+ "Question:What is the main contribution of the MVAN model in encoding news propagation?\nAnswer:",
+ " It applies CNN to extract propagation features."
+ ],
+ [
+ "Question:What is the main contribution of the MVAN model in encoding news propagation?\nAnswer:",
+ " It adopts graph attention networks to represent propagation structure."
+ ],
+ [
+ "Question:What is the main contribution of the MVAN model in encoding news propagation?\nAnswer:",
+ " It uses one-hot encoding to construct social graphs."
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -39.88300323486328,
+ false
+ ]
+ ],
+ [
+ [
+ -29.472034454345703,
+ false
+ ]
+ ],
+ [
+ [
+ -39.40480422973633,
+ false
+ ]
+ ],
+ [
+ [
+ -37.12493896484375,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -39.88300323486328,
+ false
+ ],
+ [
+ -29.472034454345703,
+ false
+ ],
+ [
+ -39.40480422973633,
+ false
+ ],
+ [
+ -37.12493896484375,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "b5be9a08ce04dd31d5bb102ae3666d0a353462256b40300c4106112f848bfb87",
+ "prompt_hash": "336ab1341a685871b01ac4323fd46a27465ca1db98668a9189e6645f83520a16",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 96,
+ "doc": {
+ "question": "Which user feature type is 'user_favourites_count' in the Twitter datasets?",
+ "choices": [
+ "Binary",
+ "Float",
+ "Categorical",
+ "Integer"
+ ],
+ "answer": 3
+ },
+ "target": 3,
+ "arguments": [
+ [
+ "Question:Which user feature type is 'user_favourites_count' in the Twitter datasets?\nAnswer:",
+ " Binary"
+ ],
+ [
+ "Question:Which user feature type is 'user_favourites_count' in the Twitter datasets?\nAnswer:",
+ " Float"
+ ],
+ [
+ "Question:Which user feature type is 'user_favourites_count' in the Twitter datasets?\nAnswer:",
+ " Categorical"
+ ],
+ [
+ "Question:Which user feature type is 'user_favourites_count' in the Twitter datasets?\nAnswer:",
+ " Integer"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -11.000958442687988,
+ false
+ ]
+ ],
+ [
+ [
+ -14.66506576538086,
+ false
+ ]
+ ],
+ [
+ [
+ -10.936017990112305,
+ false
+ ]
+ ],
+ [
+ [
+ -11.727876663208008,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -11.000958442687988,
+ false
+ ],
+ [
+ -14.66506576538086,
+ false
+ ],
+ [
+ -10.936017990112305,
+ false
+ ],
+ [
+ -11.727876663208008,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "a197fc0c4d3d7ca8398d8ecec9850a3e6cb87a5690525861f67d82a917fcc7d1",
+ "prompt_hash": "f9103560ad5f7d69e729ac3b93fab8b01d4bc557321f29cbe401b0835140e3a0",
+ "target_hash": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 97,
+ "doc": {
+ "question": "What word embedding dimension was used in the MVAN model?",
+ "choices": [
+ "100",
+ "200",
+ "300",
+ "500"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:What word embedding dimension was used in the MVAN model?\nAnswer:",
+ " 100"
+ ],
+ [
+ "Question:What word embedding dimension was used in the MVAN model?\nAnswer:",
+ " 200"
+ ],
+ [
+ "Question:What word embedding dimension was used in the MVAN model?\nAnswer:",
+ " 300"
+ ],
+ [
+ "Question:What word embedding dimension was used in the MVAN model?\nAnswer:",
+ " 500"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -5.8721466064453125,
+ false
+ ]
+ ],
+ [
+ [
+ -6.565039157867432,
+ false
+ ]
+ ],
+ [
+ [
+ -5.031486988067627,
+ false
+ ]
+ ],
+ [
+ [
+ -7.076432228088379,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -5.8721466064453125,
+ false
+ ],
+ [
+ -6.565039157867432,
+ false
+ ],
+ [
+ -5.031486988067627,
+ false
+ ],
+ [
+ -7.076432228088379,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "6ef15f5db9b082ecb48ca0e6d9d181b5bd0ffe6a1ffdc1937dd38651843ee670",
+ "prompt_hash": "91bfc43c337f9703914b70a8bd430ecb23f34850712d97ed186f34af0219e43f",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 1.0
+ },
+ {
+ "doc_id": 98,
+ "doc": {
+ "question": "Which model achieved the highest accuracy on the Twitter16 dataset?",
+ "choices": [
+ "GCAN",
+ "G-SEGA",
+ "MVAN",
+ "dEFEND"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:Which model achieved the highest accuracy on the Twitter16 dataset?\nAnswer:",
+ " GCAN"
+ ],
+ [
+ "Question:Which model achieved the highest accuracy on the Twitter16 dataset?\nAnswer:",
+ " G-SEGA"
+ ],
+ [
+ "Question:Which model achieved the highest accuracy on the Twitter16 dataset?\nAnswer:",
+ " MVAN"
+ ],
+ [
+ "Question:Which model achieved the highest accuracy on the Twitter16 dataset?\nAnswer:",
+ " dEFEND"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -17.666698455810547,
+ false
+ ]
+ ],
+ [
+ [
+ -27.855541229248047,
+ false
+ ]
+ ],
+ [
+ [
+ -16.631303787231445,
+ false
+ ]
+ ],
+ [
+ [
+ -18.627580642700195,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -17.666698455810547,
+ false
+ ],
+ [
+ -27.855541229248047,
+ false
+ ],
+ [
+ -16.631303787231445,
+ false
+ ],
+ [
+ -18.627580642700195,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "bad051ec13c456a6fc9882fe3ca44be60a1bf812eac65caa52942b2d1118cfe2",
+ "prompt_hash": "4dfe92318d6c256c0a28fb7bc4943cd6cb6f1705d4f3f65e20e4db4a2e7c7aa9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 1.0,
+ "acc_norm": 0.0
+ },
+ {
+ "doc_id": 99,
+ "doc": {
+ "question": "In the interpretability analysis, which word had higher attention weight in true news compared to fake news?",
+ "choices": [
+ "Obama",
+ "Future",
+ "Confirmed",
+ "Question mark"
+ ],
+ "answer": 2
+ },
+ "target": 2,
+ "arguments": [
+ [
+ "Question:In the interpretability analysis, which word had higher attention weight in true news compared to fake news?\nAnswer:",
+ " Obama"
+ ],
+ [
+ "Question:In the interpretability analysis, which word had higher attention weight in true news compared to fake news?\nAnswer:",
+ " Future"
+ ],
+ [
+ "Question:In the interpretability analysis, which word had higher attention weight in true news compared to fake news?\nAnswer:",
+ " Confirmed"
+ ],
+ [
+ "Question:In the interpretability analysis, which word had higher attention weight in true news compared to fake news?\nAnswer:",
+ " Question mark"
+ ]
+ ],
+ "resps": [
+ [
+ [
+ -10.013545036315918,
+ false
+ ]
+ ],
+ [
+ [
+ -11.475186347961426,
+ false
+ ]
+ ],
+ [
+ [
+ -13.51472282409668,
+ false
+ ]
+ ],
+ [
+ [
+ -18.312915802001953,
+ false
+ ]
+ ]
+ ],
+ "filtered_resps": [
+ [
+ -10.013545036315918,
+ false
+ ],
+ [
+ -11.475186347961426,
+ false
+ ],
+ [
+ -13.51472282409668,
+ false
+ ],
+ [
+ -18.312915802001953,
+ false
+ ]
+ ],
+ "filter": "none",
+ "metrics": [
+ "acc",
+ "acc_norm"
+ ],
+ "doc_hash": "51b47a6b7eb83ce1c6be6e998a8cdcebd4251586e393f543c6e172ccf6629260",
+ "prompt_hash": "e402c7781d1bf4d69c89a17f24c0de4d5dd9020ecde013d1a944bbefac1af9f9",
+ "target_hash": "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35",
+ "acc": 0.0,
+ "acc_norm": 0.0
+ }
+ ]
+ },
+ "config": {
+ "model": "/mnt/data/litgpt/out/eval/tinyllama_full_arc_arxiv_mc/2407",
+ "model_args": null,
+ "model_num_parameters": 1100048384,
+ "model_dtype": "torch.float32",
+ "model_revision": "main",
+ "model_sha": "",
+ "batch_size": 4,
+ "batch_sizes": [],
+ "device": "cuda",
+ "use_cache": null,
+ "limit": null,
+ "bootstrap_iters": 100000,
+ "gen_kwargs": null,
+ "random_seed": 1234,
+ "numpy_seed": 1234,
+ "torch_seed": 1234,
+ "fewshot_seed": 1234
+ },
+ "git_hash": "v0.3.1-430-gebef170",
+ "date": 1758694933.433869,
+ "pretty_env_info": "PyTorch version: 2.7.1+cu126\nIs debug build: False\nCUDA used to build PyTorch: 12.6\nROCM used to build PyTorch: N/A\n\nOS: Ubuntu 20.04.5 LTS (x86_64)\nGCC version: (Ubuntu 11.4.0-2ubuntu1~20.04) 11.4.0\nClang version: Could not collect\nCMake version: version 3.16.3\nLibc version: glibc-2.31\n\nPython version: 3.10.18 (main, Jun 5 2025, 13:14:17) [GCC 11.2.0] (64-bit runtime)\nPython platform: Linux-5.4.0-186-generic-x86_64-with-glibc2.31\nIs CUDA available: True\nCUDA runtime version: 11.8.89\nCUDA_MODULE_LOADING set to: LAZY\nGPU models and configuration: \nGPU 0: NVIDIA A100-SXM4-80GB\nGPU 1: NVIDIA A100-SXM4-80GB\nGPU 2: NVIDIA A100-SXM4-80GB\nGPU 3: NVIDIA A100-SXM4-80GB\nGPU 4: NVIDIA A100-SXM4-80GB\nGPU 5: NVIDIA A100-SXM4-80GB\nGPU 6: NVIDIA A100-SXM4-80GB\nGPU 7: NVIDIA A100-SXM4-80GB\n\nNvidia driver version: 535.129.03\ncuDNN version: Could not collect\nHIP runtime version: N/A\nMIOpen runtime version: N/A\nIs XNNPACK available: True\n\nCPU:\nArchitecture: x86_64\nCPU op-mode(s): 32-bit, 64-bit\nByte Order: Little Endian\nAddress sizes: 46 bits physical, 57 bits virtual\nCPU(s): 112\nOn-line CPU(s) list: 0-111\nThread(s) per core: 2\nCore(s) per socket: 28\nSocket(s): 2\nNUMA node(s): 2\nVendor ID: GenuineIntel\nCPU family: 6\nModel: 106\nModel name: Intel(R) Xeon(R) Platinum 8336C CPU @ 2.30GHz\nStepping: 6\nCPU MHz: 2300.042\nBogoMIPS: 4600.08\nHypervisor vendor: KVM\nVirtualization type: full\nL1d cache: 2.6 MiB\nL1i cache: 1.8 MiB\nL2 cache: 70 MiB\nL3 cache: 108 MiB\nNUMA node0 CPU(s): 0-55\nNUMA node1 CPU(s): 56-111\nVulnerability Gather data sampling: Unknown: Dependent on hypervisor status\nVulnerability Itlb multihit: Not affected\nVulnerability L1tf: Not affected\nVulnerability Mds: Not affected\nVulnerability Meltdown: Not affected\nVulnerability Mmio stale data: Vulnerable: Clear CPU buffers attempted, no microcode; SMT Host state unknown\nVulnerability Retbleed: Not affected\nVulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp\nVulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence\nVulnerability Srbds: Not affected\nVulnerability Tsx async abort: Not affected\nFlags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch cpuid_fault invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves wbnoinvd arat avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid md_clear arch_capabilities\n\nVersions of relevant libraries:\n[pip3] numpy==2.2.6\n[pip3] nvidia-cublas-cu12==12.6.4.1\n[pip3] nvidia-cuda-cupti-cu12==12.6.80\n[pip3] nvidia-cuda-nvrtc-cu12==12.6.77\n[pip3] nvidia-cuda-runtime-cu12==12.6.77\n[pip3] nvidia-cudnn-cu12==9.5.1.17\n[pip3] nvidia-cufft-cu12==11.3.0.4\n[pip3] nvidia-curand-cu12==10.3.7.77\n[pip3] nvidia-cusolver-cu12==11.7.1.2\n[pip3] nvidia-cusparse-cu12==12.5.4.2\n[pip3] nvidia-cusparselt-cu12==0.6.3\n[pip3] nvidia-nccl-cu12==2.26.2\n[pip3] nvidia-nvjitlink-cu12==12.6.85\n[pip3] nvidia-nvtx-cu12==12.6.77\n[pip3] pytorch-lightning==2.5.2\n[pip3] torch==2.7.1\n[pip3] torchaudio==2.7.1\n[pip3] torchmetrics==1.8.0\n[pip3] torchvision==0.22.1\n[pip3] triton==3.3.1\n[conda] numpy 2.2.6 pypi_0 pypi\n[conda] nvidia-cublas-cu12 12.6.4.1 pypi_0 pypi\n[conda] nvidia-cuda-cupti-cu12 12.6.80 pypi_0 pypi\n[conda] nvidia-cuda-nvrtc-cu12 12.6.77 pypi_0 pypi\n[conda] nvidia-cuda-runtime-cu12 12.6.77 pypi_0 pypi\n[conda] nvidia-cudnn-cu12 9.5.1.17 pypi_0 pypi\n[conda] nvidia-cufft-cu12 11.3.0.4 pypi_0 pypi\n[conda] nvidia-curand-cu12 10.3.7.77 pypi_0 pypi\n[conda] nvidia-cusolver-cu12 11.7.1.2 pypi_0 pypi\n[conda] nvidia-cusparse-cu12 12.5.4.2 pypi_0 pypi\n[conda] nvidia-cusparselt-cu12 0.6.3 pypi_0 pypi\n[conda] nvidia-nccl-cu12 2.26.2 pypi_0 pypi\n[conda] nvidia-nvjitlink-cu12 12.6.85 pypi_0 pypi\n[conda] nvidia-nvtx-cu12 12.6.77 pypi_0 pypi\n[conda] pytorch-lightning 2.5.2 pypi_0 pypi\n[conda] torch 2.7.1 pypi_0 pypi\n[conda] torchaudio 2.7.1 pypi_0 pypi\n[conda] torchmetrics 1.8.0 pypi_0 pypi\n[conda] torchvision 0.22.1 pypi_0 pypi\n[conda] triton 3.3.1 pypi_0 pypi",
+ "transformers_version": "4.55.0",
+ "lm_eval_version": "0.4.9.1",
+ "upper_git_hash": null,
+ "tokenizer_pad_token": [
+ "",
+ "0"
+ ],
+ "tokenizer_eos_token": [
+ "",
+ "2"
+ ],
+ "tokenizer_bos_token": [
+ "",
+ "1"
+ ],
+ "eot_token_id": 2,
+ "max_length": 2048
+}
\ No newline at end of file
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/tokenizer.json b/out/eval/tinyllama_full_arc_arxiv_mc/2407/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6e931b92caff4c79c5c56282f1e89569a0ae558
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/tokenizer.json
@@ -0,0 +1,93391 @@
+{
+ "version": "1.0",
+ "truncation": null,
+ "padding": null,
+ "added_tokens": [
+ {
+ "id": 0,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 1,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 2,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ }
+ ],
+ "normalizer": {
+ "type": "Sequence",
+ "normalizers": [
+ {
+ "type": "Prepend",
+ "prepend": "▁"
+ },
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": " "
+ },
+ "content": "▁"
+ }
+ ]
+ },
+ "pre_tokenizer": null,
+ "post_processor": {
+ "type": "TemplateProcessing",
+ "single": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ }
+ ],
+ "pair": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ },
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 1
+ }
+ },
+ {
+ "Sequence": {
+ "id": "B",
+ "type_id": 1
+ }
+ }
+ ],
+ "special_tokens": {
+ "": {
+ "id": "",
+ "ids": [
+ 1
+ ],
+ "tokens": [
+ ""
+ ]
+ }
+ }
+ },
+ "decoder": {
+ "type": "Sequence",
+ "decoders": [
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": "▁"
+ },
+ "content": " "
+ },
+ {
+ "type": "ByteFallback"
+ },
+ {
+ "type": "Fuse"
+ },
+ {
+ "type": "Strip",
+ "content": " ",
+ "start": 1,
+ "stop": 0
+ }
+ ]
+ },
+ "model": {
+ "type": "BPE",
+ "dropout": null,
+ "unk_token": "",
+ "continuing_subword_prefix": null,
+ "end_of_word_suffix": null,
+ "fuse_unk": true,
+ "byte_fallback": true,
+ "vocab": {
+ "": 0,
+ "": 1,
+ "": 2,
+ "<0x00>": 3,
+ "<0x01>": 4,
+ "<0x02>": 5,
+ "<0x03>": 6,
+ "<0x04>": 7,
+ "<0x05>": 8,
+ "<0x06>": 9,
+ "<0x07>": 10,
+ "<0x08>": 11,
+ "<0x09>": 12,
+ "<0x0A>": 13,
+ "<0x0B>": 14,
+ "<0x0C>": 15,
+ "<0x0D>": 16,
+ "<0x0E>": 17,
+ "<0x0F>": 18,
+ "<0x10>": 19,
+ "<0x11>": 20,
+ "<0x12>": 21,
+ "<0x13>": 22,
+ "<0x14>": 23,
+ "<0x15>": 24,
+ "<0x16>": 25,
+ "<0x17>": 26,
+ "<0x18>": 27,
+ "<0x19>": 28,
+ "<0x1A>": 29,
+ "<0x1B>": 30,
+ "<0x1C>": 31,
+ "<0x1D>": 32,
+ "<0x1E>": 33,
+ "<0x1F>": 34,
+ "<0x20>": 35,
+ "<0x21>": 36,
+ "<0x22>": 37,
+ "<0x23>": 38,
+ "<0x24>": 39,
+ "<0x25>": 40,
+ "<0x26>": 41,
+ "<0x27>": 42,
+ "<0x28>": 43,
+ "<0x29>": 44,
+ "<0x2A>": 45,
+ "<0x2B>": 46,
+ "<0x2C>": 47,
+ "<0x2D>": 48,
+ "<0x2E>": 49,
+ "<0x2F>": 50,
+ "<0x30>": 51,
+ "<0x31>": 52,
+ "<0x32>": 53,
+ "<0x33>": 54,
+ "<0x34>": 55,
+ "<0x35>": 56,
+ "<0x36>": 57,
+ "<0x37>": 58,
+ "<0x38>": 59,
+ "<0x39>": 60,
+ "<0x3A>": 61,
+ "<0x3B>": 62,
+ "<0x3C>": 63,
+ "<0x3D>": 64,
+ "<0x3E>": 65,
+ "<0x3F>": 66,
+ "<0x40>": 67,
+ "<0x41>": 68,
+ "<0x42>": 69,
+ "<0x43>": 70,
+ "<0x44>": 71,
+ "<0x45>": 72,
+ "<0x46>": 73,
+ "<0x47>": 74,
+ "<0x48>": 75,
+ "<0x49>": 76,
+ "<0x4A>": 77,
+ "<0x4B>": 78,
+ "<0x4C>": 79,
+ "<0x4D>": 80,
+ "<0x4E>": 81,
+ "<0x4F>": 82,
+ "<0x50>": 83,
+ "<0x51>": 84,
+ "<0x52>": 85,
+ "<0x53>": 86,
+ "<0x54>": 87,
+ "<0x55>": 88,
+ "<0x56>": 89,
+ "<0x57>": 90,
+ "<0x58>": 91,
+ "<0x59>": 92,
+ "<0x5A>": 93,
+ "<0x5B>": 94,
+ "<0x5C>": 95,
+ "<0x5D>": 96,
+ "<0x5E>": 97,
+ "<0x5F>": 98,
+ "<0x60>": 99,
+ "<0x61>": 100,
+ "<0x62>": 101,
+ "<0x63>": 102,
+ "<0x64>": 103,
+ "<0x65>": 104,
+ "<0x66>": 105,
+ "<0x67>": 106,
+ "<0x68>": 107,
+ "<0x69>": 108,
+ "<0x6A>": 109,
+ "<0x6B>": 110,
+ "<0x6C>": 111,
+ "<0x6D>": 112,
+ "<0x6E>": 113,
+ "<0x6F>": 114,
+ "<0x70>": 115,
+ "<0x71>": 116,
+ "<0x72>": 117,
+ "<0x73>": 118,
+ "<0x74>": 119,
+ "<0x75>": 120,
+ "<0x76>": 121,
+ "<0x77>": 122,
+ "<0x78>": 123,
+ "<0x79>": 124,
+ "<0x7A>": 125,
+ "<0x7B>": 126,
+ "<0x7C>": 127,
+ "<0x7D>": 128,
+ "<0x7E>": 129,
+ "<0x7F>": 130,
+ "<0x80>": 131,
+ "<0x81>": 132,
+ "<0x82>": 133,
+ "<0x83>": 134,
+ "<0x84>": 135,
+ "<0x85>": 136,
+ "<0x86>": 137,
+ "<0x87>": 138,
+ "<0x88>": 139,
+ "<0x89>": 140,
+ "<0x8A>": 141,
+ "<0x8B>": 142,
+ "<0x8C>": 143,
+ "<0x8D>": 144,
+ "<0x8E>": 145,
+ "<0x8F>": 146,
+ "<0x90>": 147,
+ "<0x91>": 148,
+ "<0x92>": 149,
+ "<0x93>": 150,
+ "<0x94>": 151,
+ "<0x95>": 152,
+ "<0x96>": 153,
+ "<0x97>": 154,
+ "<0x98>": 155,
+ "<0x99>": 156,
+ "<0x9A>": 157,
+ "<0x9B>": 158,
+ "<0x9C>": 159,
+ "<0x9D>": 160,
+ "<0x9E>": 161,
+ "<0x9F>": 162,
+ "<0xA0>": 163,
+ "<0xA1>": 164,
+ "<0xA2>": 165,
+ "<0xA3>": 166,
+ "<0xA4>": 167,
+ "<0xA5>": 168,
+ "<0xA6>": 169,
+ "<0xA7>": 170,
+ "<0xA8>": 171,
+ "<0xA9>": 172,
+ "<0xAA>": 173,
+ "<0xAB>": 174,
+ "<0xAC>": 175,
+ "<0xAD>": 176,
+ "<0xAE>": 177,
+ "<0xAF>": 178,
+ "<0xB0>": 179,
+ "<0xB1>": 180,
+ "<0xB2>": 181,
+ "<0xB3>": 182,
+ "<0xB4>": 183,
+ "<0xB5>": 184,
+ "<0xB6>": 185,
+ "<0xB7>": 186,
+ "<0xB8>": 187,
+ "<0xB9>": 188,
+ "<0xBA>": 189,
+ "<0xBB>": 190,
+ "<0xBC>": 191,
+ "<0xBD>": 192,
+ "<0xBE>": 193,
+ "<0xBF>": 194,
+ "<0xC0>": 195,
+ "<0xC1>": 196,
+ "<0xC2>": 197,
+ "<0xC3>": 198,
+ "<0xC4>": 199,
+ "<0xC5>": 200,
+ "<0xC6>": 201,
+ "<0xC7>": 202,
+ "<0xC8>": 203,
+ "<0xC9>": 204,
+ "<0xCA>": 205,
+ "<0xCB>": 206,
+ "<0xCC>": 207,
+ "<0xCD>": 208,
+ "<0xCE>": 209,
+ "<0xCF>": 210,
+ "<0xD0>": 211,
+ "<0xD1>": 212,
+ "<0xD2>": 213,
+ "<0xD3>": 214,
+ "<0xD4>": 215,
+ "<0xD5>": 216,
+ "<0xD6>": 217,
+ "<0xD7>": 218,
+ "<0xD8>": 219,
+ "<0xD9>": 220,
+ "<0xDA>": 221,
+ "<0xDB>": 222,
+ "<0xDC>": 223,
+ "<0xDD>": 224,
+ "<0xDE>": 225,
+ "<0xDF>": 226,
+ "<0xE0>": 227,
+ "<0xE1>": 228,
+ "<0xE2>": 229,
+ "<0xE3>": 230,
+ "<0xE4>": 231,
+ "<0xE5>": 232,
+ "<0xE6>": 233,
+ "<0xE7>": 234,
+ "<0xE8>": 235,
+ "<0xE9>": 236,
+ "<0xEA>": 237,
+ "<0xEB>": 238,
+ "<0xEC>": 239,
+ "<0xED>": 240,
+ "<0xEE>": 241,
+ "<0xEF>": 242,
+ "<0xF0>": 243,
+ "<0xF1>": 244,
+ "<0xF2>": 245,
+ "<0xF3>": 246,
+ "<0xF4>": 247,
+ "<0xF5>": 248,
+ "<0xF6>": 249,
+ "<0xF7>": 250,
+ "<0xF8>": 251,
+ "<0xF9>": 252,
+ "<0xFA>": 253,
+ "<0xFB>": 254,
+ "<0xFC>": 255,
+ "<0xFD>": 256,
+ "<0xFE>": 257,
+ "<0xFF>": 258,
+ "▁▁": 259,
+ "▁t": 260,
+ "er": 261,
+ "in": 262,
+ "▁a": 263,
+ "en": 264,
+ "on": 265,
+ "▁th": 266,
+ "es": 267,
+ "▁▁▁▁": 268,
+ "▁s": 269,
+ "▁d": 270,
+ "at": 271,
+ "or": 272,
+ "an": 273,
+ "▁c": 274,
+ "is": 275,
+ "re": 276,
+ "it": 277,
+ "▁the": 278,
+ "ar": 279,
+ "le": 280,
+ "▁w": 281,
+ "▁p": 282,
+ "ou": 283,
+ "al": 284,
+ "▁f": 285,
+ "▁m": 286,
+ "ed": 287,
+ "▁o": 288,
+ "▁b": 289,
+ "om": 290,
+ "ion": 291,
+ "ing": 292,
+ "ic": 293,
+ "as": 294,
+ "el": 295,
+ "ent": 296,
+ "▁in": 297,
+ "▁h": 298,
+ "nd": 299,
+ "et": 300,
+ "▁l": 301,
+ "▁n": 302,
+ "st": 303,
+ "▁to": 304,
+ "ch": 305,
+ "▁I": 306,
+ "ro": 307,
+ "▁▁▁▁▁▁▁▁": 308,
+ "il": 309,
+ "▁of": 310,
+ "de": 311,
+ "ct": 312,
+ "▁(": 313,
+ "am": 314,
+ "▁C": 315,
+ "▁de": 316,
+ "▁S": 317,
+ "▁u": 318,
+ "▁A": 319,
+ "▁\\": 320,
+ "▁e": 321,
+ "▁and": 322,
+ "▁T": 323,
+ "ol": 324,
+ "▁v": 325,
+ "im": 326,
+ "ot": 327,
+ "ad": 328,
+ "ut": 329,
+ "▁g": 330,
+ "em": 331,
+ "ur": 332,
+ "id": 333,
+ "▁*": 334,
+ "ig": 335,
+ "ra": 336,
+ "▁re": 337,
+ "▁is": 338,
+ "qu": 339,
+ "ow": 340,
+ "▁M": 341,
+ "est": 342,
+ "▁y": 343,
+ "se": 344,
+ "ve": 345,
+ "ce": 346,
+ "ie": 347,
+ "un": 348,
+ "▁P": 349,
+ "▁B": 350,
+ "ag": 351,
+ "ul": 352,
+ "▁=": 353,
+ "he": 354,
+ "end": 355,
+ "ode": 356,
+ "ter": 357,
+ "ment": 358,
+ "os": 359,
+ "▁D": 360,
+ "if": 361,
+ "ation": 362,
+ "▁for": 363,
+ "▁r": 364,
+ "▁L": 365,
+ "▁you": 366,
+ "▁be": 367,
+ "ly": 368,
+ "ver": 369,
+ "ab": 370,
+ "te": 371,
+ "▁it": 372,
+ "▁on": 373,
+ "ri": 374,
+ "us": 375,
+ "▁\"": 376,
+ "▁wh": 377,
+ "▁con": 378,
+ "▁H": 379,
+ "▁st": 380,
+ "ir": 381,
+ "▁E": 382,
+ "▁F": 383,
+ "ck": 384,
+ "▁an": 385,
+ "th": 386,
+ "eg": 387,
+ "ay": 388,
+ "ith": 389,
+ "▁R": 390,
+ "ist": 391,
+ "and": 392,
+ "▁that": 393,
+ "▁al": 394,
+ "▁$": 395,
+ "▁#": 396,
+ "od": 397,
+ "um": 398,
+ "▁W": 399,
+ "ht": 400,
+ "code": 401,
+ "▁G": 402,
+ "ate": 403,
+ "ess": 404,
+ "▁N": 405,
+ "ere": 406,
+ "pp": 407,
+ "▁as": 408,
+ "▁se": 409,
+ "▁pro": 410,
+ "▁with": 411,
+ "pe": 412,
+ "▁k": 413,
+ "ers": 414,
+ "pt": 415,
+ ");": 416,
+ "lo": 417,
+ "▁▁▁▁▁": 418,
+ "▁com": 419,
+ "ame": 420,
+ "▁`": 421,
+ "▁Com": 422,
+ "ia": 423,
+ "ant": 424,
+ "▁la": 425,
+ "▁{": 426,
+ "▁en": 427,
+ "ction": 428,
+ "▁ex": 429,
+ "ld": 430,
+ "ub": 431,
+ "▁j": 432,
+ "la": 433,
+ "ue": 434,
+ "▁J": 435,
+ "ich": 436,
+ "▁do": 437,
+ "▁O": 438,
+ "▁qu": 439,
+ "iv": 440,
+ "ort": 441,
+ "art": 442,
+ "▁un": 443,
+ "▁##": 444,
+ "▁this": 445,
+ "ke": 446,
+ "▁ha": 447,
+ "▁-": 448,
+ "out": 449,
+ "▁The": 450,
+ "▁not": 451,
+ "▁ne": 452,
+ "ill": 453,
+ "▁le": 454,
+ "ci": 455,
+ "rom": 456,
+ "ine": 457,
+ "//": 458,
+ "op": 459,
+ "egin": 460,
+ "▁Comment": 461,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 462,
+ "begin": 463,
+ "ст": 464,
+ "ass": 465,
+ "iz": 466,
+ ").": 467,
+ "og": 468,
+ "▁п": 469,
+ "▁or": 470,
+ "▁was": 471,
+ "▁at": 472,
+ "our": 473,
+ "▁i": 474,
+ "ain": 475,
+ "▁K": 476,
+ "на": 477,
+ "▁V": 478,
+ "ge": 479,
+ "▁su": 480,
+ "ap": 481,
+ "age": 482,
+ "ould": 483,
+ "ne": 484,
+ "av": 485,
+ "xt": 486,
+ "ore": 487,
+ "ile": 488,
+ "--": 489,
+ "▁в": 490,
+ "▁by": 491,
+ "li": 492,
+ "ath": 493,
+ "ра": 494,
+ "ber": 495,
+ "ach": 496,
+ "all": 497,
+ "▁Th": 498,
+ "ult": 499,
+ "▁}": 500,
+ "▁U": 501,
+ "▁us": 502,
+ "▁z": 503,
+ "ust": 504,
+ "▁have": 505,
+ "lic": 506,
+ "ни": 507,
+ "▁can": 508,
+ "tr": 509,
+ "com": 510,
+ "),": 511,
+ "▁In": 512,
+ "ind": 513,
+ "ell": 514,
+ "▁from": 515,
+ "ов": 516,
+ "to": 517,
+ "▁[": 518,
+ "able": 519,
+ "ost": 520,
+ "▁ch": 521,
+ "ect": 522,
+ "ight": 523,
+ "int": 524,
+ "▁'": 525,
+ "▁are": 526,
+ "▁im": 527,
+ "▁sh": 528,
+ "▁<": 529,
+ "▁An": 530,
+ "▁с": 531,
+ "ata": 532,
+ "ire": 533,
+ "▁tr": 534,
+ "con": 535,
+ "ord": 536,
+ "ity": 537,
+ "ard": 538,
+ "▁▁▁▁▁▁": 539,
+ "▁he": 540,
+ "▁but": 541,
+ "oc": 542,
+ "=\"": 543,
+ "▁pr": 544,
+ "ure": 545,
+ "per": 546,
+ "ack": 547,
+ "ork": 548,
+ "ong": 549,
+ "ans": 550,
+ "ко": 551,
+ "ple": 552,
+ "▁des": 553,
+ "ok": 554,
+ "orm": 555,
+ "wer": 556,
+ "ak": 557,
+ "pr": 558,
+ "ase": 559,
+ "▁el": 560,
+ "ph": 561,
+ "ac": 562,
+ "▁und": 563,
+ "▁ar": 564,
+ "▁if": 565,
+ "ud": 566,
+ "ps": 567,
+ "ite": 568,
+ "ble": 569,
+ "но": 570,
+ "fer": 571,
+ "pl": 572,
+ "ive": 573,
+ "ang": 574,
+ "ens": 575,
+ "ро": 576,
+ "▁so": 577,
+ "so": 578,
+ "ast": 579,
+ "()": 580,
+ "swer": 581,
+ "ru": 582,
+ "ies": 583,
+ "▁:": 584,
+ "au": 585,
+ "ov": 586,
+ "ре": 587,
+ "го": 588,
+ "▁der": 589,
+ "▁my": 590,
+ "▁we": 591,
+ "▁me": 592,
+ "nt": 593,
+ "▁ad": 594,
+ "urn": 595,
+ "▁your": 596,
+ "://": 597,
+ "are": 598,
+ "▁all": 599,
+ "ff": 600,
+ "io": 601,
+ "estion": 602,
+ "ime": 603,
+ "▁er": 604,
+ "lass": 605,
+ "▁и": 606,
+ "▁which": 607,
+ "ome": 608,
+ "ont": 609,
+ "▁par": 610,
+ "▁ma": 611,
+ "▁Y": 612,
+ "\",": 613,
+ "▁о": 614,
+ "ft": 615,
+ "ial": 616,
+ "cc": 617,
+ "ound": 618,
+ "▁li": 619,
+ "▁res": 620,
+ "eth": 621,
+ "ject": 622,
+ "▁app": 623,
+ "▁St": 624,
+ "ice": 625,
+ "▁am": 626,
+ "act": 627,
+ "▁del": 628,
+ "gr": 629,
+ "ated": 630,
+ "ier": 631,
+ "▁▁▁▁▁▁▁▁▁▁▁▁": 632,
+ "▁ab": 633,
+ "▁et": 634,
+ "ally": 635,
+ "..": 636,
+ "port": 637,
+ "ik": 638,
+ "▁per": 639,
+ "▁cont": 640,
+ "ри": 641,
+ "ка": 642,
+ "ser": 643,
+ "ли": 644,
+ "ll": 645,
+ "iew": 646,
+ "ign": 647,
+ "_{": 648,
+ "put": 649,
+ "one": 650,
+ "unction": 651,
+ "▁di": 652,
+ "ary": 653,
+ "ition": 654,
+ "ma": 655,
+ "ен": 656,
+ "get": 657,
+ "▁lo": 658,
+ "▁val": 659,
+ "▁Q": 660,
+ "ran": 661,
+ "▁д": 662,
+ "ence": 663,
+ "▁work": 664,
+ "▁на": 665,
+ "ip": 666,
+ "item": 667,
+ "ype": 668,
+ "▁&": 669,
+ "▁his": 670,
+ "▁use": 671,
+ "der": 672,
+ "▁Answer": 673,
+ "▁will": 674,
+ "ize": 675,
+ "та": 676,
+ "low": 677,
+ "▁Ch": 678,
+ "▁get": 679,
+ "ide": 680,
+ "ous": 681,
+ "ink": 682,
+ "ption": 683,
+ "ла": 684,
+ "turn": 685,
+ "ung": 686,
+ "ec": 687,
+ "ug": 688,
+ "form": 689,
+ "res": 690,
+ "htt": 691,
+ "oug": 692,
+ "ль": 693,
+ "▁no": 694,
+ "cl": 695,
+ "▁ro": 696,
+ "▁one": 697,
+ "tt": 698,
+ "cri": 699,
+ "du": 700,
+ "▁up": 701,
+ "то": 702,
+ "(\"": 703,
+ "▁ob": 704,
+ "we": 705,
+ "ory": 706,
+ "▁est": 707,
+ "ery": 708,
+ "iel": 709,
+ "str": 710,
+ "ob": 711,
+ "▁que": 712,
+ "ian": 713,
+ "▁out": 714,
+ "▁pl": 715,
+ "▁new": 716,
+ "ки": 717,
+ "▁+": 718,
+ "ry": 719,
+ "oth": 720,
+ "ther": 721,
+ "▁var": 722,
+ "▁would": 723,
+ "▁ser": 724,
+ "tern": 725,
+ "text": 726,
+ "▁there": 727,
+ "ish": 728,
+ "ror": 729,
+ "те": 730,
+ "▁set": 731,
+ "▁@": 732,
+ "▁по": 733,
+ "▁te": 734,
+ "ex": 735,
+ "▁return": 736,
+ "ail": 737,
+ "▁any": 738,
+ "▁It": 739,
+ "▁function": 740,
+ "{\\": 741,
+ "',": 742,
+ "és": 743,
+ "ale": 744,
+ "ан": 745,
+ "▁when": 746,
+ "ib": 747,
+ "▁go": 748,
+ "ance": 749,
+ "▁had": 750,
+ "▁Qu": 751,
+ "▁comp": 752,
+ "ле": 753,
+ "▁з": 754,
+ "math": 755,
+ "▁has": 756,
+ "▁м": 757,
+ "▁pre": 758,
+ "ener": 759,
+ "▁part": 760,
+ "elf": 761,
+ "▁die": 762,
+ "▁like": 763,
+ "ray": 764,
+ "irst": 765,
+ "▁dis": 766,
+ "▁man": 767,
+ "rit": 768,
+ "▁then": 769,
+ "▁class": 770,
+ "pro": 771,
+ "▁po": 772,
+ "▁using": 773,
+ "eb": 774,
+ "▁code": 775,
+ "own": 776,
+ "▁some": 777,
+ "ces": 778,
+ "▁$\\": 779,
+ "ер": 780,
+ "lect": 781,
+ "▁au": 782,
+ "isch": 783,
+ "▁col": 784,
+ "▁–": 785,
+ "up": 786,
+ "ons": 787,
+ "▁add": 788,
+ "ild": 789,
+ "iss": 790,
+ "val": 791,
+ "ount": 792,
+ "les": 793,
+ "vent": 794,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁": 795,
+ "▁Z": 796,
+ "In": 797,
+ "row": 798,
+ "ear": 799,
+ "ations": 800,
+ "ah": 801,
+ "que": 802,
+ "ublic": 803,
+ "ank": 804,
+ "▁sp": 805,
+ "▁Wh": 806,
+ "----": 807,
+ "sk": 808,
+ "ew": 809,
+ "ags": 810,
+ "ти": 811,
+ "ann": 812,
+ "▁—": 813,
+ "ert": 814,
+ "ace": 815,
+ "sch": 816,
+ "▁need": 817,
+ "▁à": 818,
+ "ien": 819,
+ "ough": 820,
+ "не": 821,
+ "▁def": 822,
+ "ij": 823,
+ "ern": 824,
+ "▁what": 825,
+ "▁Ar": 826,
+ "wo": 827,
+ "ml": 828,
+ "": 829,
+ "▁Re": 830,
+ "▁es": 831,
+ "▁inst": 832,
+ "bo": 833,
+ "az": 834,
+ "▁###": 835,
+ "▁б": 836,
+ "erm": 837,
+ "▁Al": 838,
+ "led": 839,
+ "да": 840,
+ "ten": 841,
+ "set": 842,
+ "ло": 843,
+ "▁comm": 844,
+ "sh": 845,
+ "ва": 846,
+ "▁/": 847,
+ "▁data": 848,
+ "▁//": 849,
+ "](": 850,
+ "▁str": 851,
+ "ose": 852,
+ "▁Un": 853,
+ "ven": 854,
+ "St": 855,
+ "...": 856,
+ "▁С": 857,
+ "yst": 858,
+ "▁«": 859,
+ "ick": 860,
+ "ix": 861,
+ "par": 862,
+ "▁у": 863,
+ "▁want": 864,
+ "ng": 865,
+ "ote": 866,
+ "▁gr": 867,
+ "▁du": 868,
+ "▁.": 869,
+ "und": 870,
+ "▁only": 871,
+ "▁sa": 872,
+ "ely": 873,
+ "vers": 874,
+ "▁ent": 875,
+ "))": 876,
+ "('": 877,
+ "▁mod": 878,
+ "ava": 879,
+ "ton": 880,
+ "▁should": 881,
+ "ement": 882,
+ "▁form": 883,
+ "▁also": 884,
+ "▁sc": 885,
+ "ings": 886,
+ "▁You": 887,
+ "ón": 888,
+ "▁kn": 889,
+ "();": 890,
+ "▁|": 891,
+ "▁were": 892,
+ "ss": 893,
+ "▁Question": 894,
+ "ise": 895,
+ "▁they": 896,
+ "▁De": 897,
+ "ond": 898,
+ "▁sol": 899,
+ "▁fol": 900,
+ "▁more": 901,
+ "▁her": 902,
+ "▁_": 903,
+ "▁é": 904,
+ "atch": 905,
+ "fter": 906,
+ "▁cre": 907,
+ "lock": 908,
+ "tring": 909,
+ "▁This": 910,
+ "ze": 911,
+ "ado": 912,
+ "ull": 913,
+ "ger": 914,
+ "be": 915,
+ "▁other": 916,
+ "▁Tags": 917,
+ "ution": 918,
+ "ict": 919,
+ "▁how": 920,
+ "▁x": 921,
+ "▁Se": 922,
+ "▁che": 923,
+ "cript": 924,
+ "▁just": 925,
+ "▁pos": 926,
+ "ange": 927,
+ "ific": 928,
+ "ree": 929,
+ "}}": 930,
+ "▁time": 931,
+ "app": 932,
+ "ны": 933,
+ "▁file": 934,
+ "ark": 935,
+ "ical": 936,
+ "▁first": 937,
+ "▁int": 938,
+ "▁В": 939,
+ "▁He": 940,
+ "ta": 941,
+ "ument": 942,
+ "ors": 943,
+ "lement": 944,
+ "rac": 945,
+ "▁ag": 946,
+ "▁does": 947,
+ "yn": 948,
+ "read": 949,
+ "ual": 950,
+ "▁Le": 951,
+ "ys": 952,
+ "▁em": 953,
+ "▁num": 954,
+ "vel": 955,
+ "ди": 956,
+ "over": 957,
+ "▁dif": 958,
+ "ethod": 959,
+ "▁If": 960,
+ "▁spe": 961,
+ "ym": 962,
+ "▁them": 963,
+ "▁into": 964,
+ "▁▁▁▁▁▁▁▁▁▁": 965,
+ "▁les": 966,
+ "▁its": 967,
+ "ese": 968,
+ "ield": 969,
+ "▁public": 970,
+ "▁П": 971,
+ "▁den": 972,
+ "ystem": 973,
+ "of": 974,
+ "▁over": 975,
+ "->": 976,
+ "▁fil": 977,
+ "name": 978,
+ "inal": 979,
+ "▁il": 980,
+ "ample": 981,
+ "▁way": 982,
+ "ica": 983,
+ "во": 984,
+ "cess": 985,
+ "itt": 986,
+ "uch": 987,
+ "▁where": 988,
+ "ми": 989,
+ "org": 990,
+ "https": 991,
+ "▁vo": 992,
+ "ient": 993,
+ "ove": 994,
+ "▁value": 995,
+ "eng": 996,
+ "▁La": 997,
+ "^{": 998,
+ "ref": 999,
+ "ied": 1000,
+ "ER": 1001,
+ "▁stat": 1002,
+ "fig": 1003,
+ "me": 1004,
+ "▁von": 1005,
+ "▁inter": 1006,
+ "roid": 1007,
+ "ater": 1008,
+ "▁their": 1009,
+ "▁bet": 1010,
+ "▁ein": 1011,
+ "}\\": 1012,
+ "\">": 1013,
+ "▁sub": 1014,
+ "▁op": 1015,
+ "▁don": 1016,
+ "ty": 1017,
+ "▁try": 1018,
+ "▁Pro": 1019,
+ "▁tra": 1020,
+ "▁same": 1021,
+ "ep": 1022,
+ "▁two": 1023,
+ "▁name": 1024,
+ "old": 1025,
+ "let": 1026,
+ "▁sim": 1027,
+ "sp": 1028,
+ "▁av": 1029,
+ "bre": 1030,
+ "blem": 1031,
+ "ey": 1032,
+ "▁could": 1033,
+ "▁cor": 1034,
+ "▁acc": 1035,
+ "ays": 1036,
+ "cre": 1037,
+ "urr": 1038,
+ "si": 1039,
+ "▁const": 1040,
+ "ues": 1041,
+ "}$": 1042,
+ "View": 1043,
+ "▁act": 1044,
+ "▁bo": 1045,
+ "▁ко": 1046,
+ "▁som": 1047,
+ "▁about": 1048,
+ "land": 1049,
+ "mer": 1050,
+ "▁list": 1051,
+ "cal": 1052,
+ "▁import": 1053,
+ "col": 1054,
+ "▁na": 1055,
+ "na": 1056,
+ "::": 1057,
+ "▁who": 1058,
+ "▁error": 1059,
+ "▁X": 1060,
+ "ator": 1061,
+ "ext": 1062,
+ "▁been": 1063,
+ "ér": 1064,
+ "▁run": 1065,
+ "pos": 1066,
+ "▁cl": 1067,
+ "**": 1068,
+ "▁К": 1069,
+ "ular": 1070,
+ "ause": 1071,
+ "▁reg": 1072,
+ "▁know": 1073,
+ "▁see": 1074,
+ "▁him": 1075,
+ "ning": 1076,
+ "▁за": 1077,
+ "ates": 1078,
+ "fore": 1079,
+ "ions": 1080,
+ "▁hel": 1081,
+ "ute": 1082,
+ "▁rem": 1083,
+ "▁го": 1084,
+ "▁Mar": 1085,
+ "ру": 1086,
+ "vice": 1087,
+ "irect": 1088,
+ "ner": 1089,
+ "▁under": 1090,
+ "rib": 1091,
+ "hr": 1092,
+ "че": 1093,
+ "▁As": 1094,
+ "▁end": 1095,
+ "ember": 1096,
+ "▁а": 1097,
+ "▁att": 1098,
+ "ina": 1099,
+ "son": 1100,
+ "▁follow": 1101,
+ "▁Sch": 1102,
+ "pect": 1103,
+ "▁rel": 1104,
+ "▁So": 1105,
+ "▁look": 1106,
+ "abel": 1107,
+ "▁problem": 1108,
+ "▁van": 1109,
+ "strong": 1110,
+ "co": 1111,
+ "pon": 1112,
+ "ca": 1113,
+ "ada": 1114,
+ "\":": 1115,
+ "cond": 1116,
+ "amb": 1117,
+ "},": 1118,
+ "quest": 1119,
+ "▁aut": 1120,
+ "▁result": 1121,
+ "▁may": 1122,
+ "Re": 1123,
+ "http": 1124,
+ "):": 1125,
+ "▁And": 1126,
+ "red": 1127,
+ "▁How": 1128,
+ "po": 1129,
+ "ско": 1130,
+ "att": 1131,
+ "oup": 1132,
+ "ced": 1133,
+ "▁type": 1134,
+ "▁than": 1135,
+ "▁cons": 1136,
+ "uf": 1137,
+ "ци": 1138,
+ "▁question": 1139,
+ "raph": 1140,
+ "igh": 1141,
+ "▁М": 1142,
+ "▁htt": 1143,
+ "ins": 1144,
+ "den": 1145,
+ "▁da": 1146,
+ "▁ver": 1147,
+ "oh": 1148,
+ "▁=>": 1149,
+ "riv": 1150,
+ "ude": 1151,
+ "▁For": 1152,
+ "▁ra": 1153,
+ "frac": 1154,
+ "ма": 1155,
+ "▁after": 1156,
+ "}{": 1157,
+ "▁method": 1158,
+ "\")": 1159,
+ "amp": 1160,
+ "ash": 1161,
+ "▁rec": 1162,
+ "▁differ": 1163,
+ "ON": 1164,
+ "ax": 1165,
+ "ament": 1166,
+ "ource": 1167,
+ "Con": 1168,
+ "its": 1169,
+ "Name": 1170,
+ "man": 1171,
+ "▁bec": 1172,
+ "che": 1173,
+ "▁En": 1174,
+ "aj": 1175,
+ "▁gener": 1176,
+ "IN": 1177,
+ "▁id": 1178,
+ "ages": 1179,
+ "▁loc": 1180,
+ "fo": 1181,
+ "br": 1182,
+ "▁she": 1183,
+ "Pro": 1184,
+ "▁una": 1185,
+ "▁к": 1186,
+ "eta": 1187,
+ "log": 1188,
+ "olog": 1189,
+ "▁sur": 1190,
+ "arg": 1191,
+ "▁--": 1192,
+ "kt": 1193,
+ "(\\": 1194,
+ "min": 1195,
+ "▁line": 1196,
+ "▁vari": 1197,
+ "ся": 1198,
+ "ics": 1199,
+ "ня": 1200,
+ "very": 1201,
+ "add": 1202,
+ "▁object": 1203,
+ "Id": 1204,
+ "▁But": 1205,
+ "▁case": 1206,
+ "▁make": 1207,
+ "▁cal": 1208,
+ "▁pass": 1209,
+ "сь": 1210,
+ "ession": 1211,
+ "net": 1212,
+ ".\"": 1213,
+ "▁г": 1214,
+ "är": 1215,
+ "де": 1216,
+ "no": 1217,
+ "ating": 1218,
+ "ato": 1219,
+ "line": 1220,
+ "ви": 1221,
+ "▁Ex": 1222,
+ "▁ass": 1223,
+ "▁vers": 1224,
+ "ля": 1225,
+ "▁ed": 1226,
+ "umn": 1227,
+ "other": 1228,
+ "ста": 1229,
+ "ative": 1230,
+ "String": 1231,
+ "▁los": 1232,
+ "wn": 1233,
+ "▁answer": 1234,
+ "▁let": 1235,
+ "▁pe": 1236,
+ "ents": 1237,
+ "▁fe": 1238,
+ "ince": 1239,
+ "ni": 1240,
+ "ider": 1241,
+ "ows": 1242,
+ "▁test": 1243,
+ "▁here": 1244,
+ "roll": 1245,
+ "▁call": 1246,
+ "ruct": 1247,
+ "▁pol": 1248,
+ "ait": 1249,
+ "▁back": 1250,
+ "ho": 1251,
+ "Ex": 1252,
+ "ress": 1253,
+ "ST": 1254,
+ "ried": 1255,
+ "date": 1256,
+ "ет": 1257,
+ "▁did": 1258,
+ "ting": 1259,
+ "▁El": 1260,
+ "▁dem": 1261,
+ ")$": 1262,
+ "ова": 1263,
+ "urrent": 1264,
+ "lace": 1265,
+ "right": 1266,
+ "ren": 1267,
+ "по": 1268,
+ "▁each": 1269,
+ "cy": 1270,
+ "block": 1271,
+ "data": 1272,
+ "▁%": 1273,
+ "▁ac": 1274,
+ "▁==": 1275,
+ "ür": 1276,
+ "▁por": 1277,
+ "ask": 1278,
+ "arch": 1279,
+ "ames": 1280,
+ "▁Con": 1281,
+ "ча": 1282,
+ "▁off": 1283,
+ "▁find": 1284,
+ "cont": 1285,
+ "▁now": 1286,
+ "work": 1287,
+ "ational": 1288,
+ "dd": 1289,
+ "ción": 1290,
+ "▁А": 1291,
+ "ault": 1292,
+ "List": 1293,
+ "▁ext": 1294,
+ "urs": 1295,
+ "ake": 1296,
+ "ule": 1297,
+ "▁point": 1298,
+ "AT": 1299,
+ "aut": 1300,
+ "▁trans": 1301,
+ "▁co": 1302,
+ "▁read": 1303,
+ "▁used": 1304,
+ "ски": 1305,
+ "ari": 1306,
+ "LE": 1307,
+ "eter": 1308,
+ "oun": 1309,
+ "ever": 1310,
+ "self": 1311,
+ "ined": 1312,
+ "idth": 1313,
+ "ux": 1314,
+ "js": 1315,
+ "▁such": 1316,
+ "▁Is": 1317,
+ "ée": 1318,
+ "ful": 1319,
+ "▁dist": 1320,
+ "▁bu": 1321,
+ "itemize": 1322,
+ "Cont": 1323,
+ "je": 1324,
+ "си": 1325,
+ "▁prov": 1326,
+ "bb": 1327,
+ "ward": 1328,
+ "esent": 1329,
+ "erson": 1330,
+ "anks": 1331,
+ "wh": 1332,
+ "not": 1333,
+ "▁We": 1334,
+ "ka": 1335,
+ "rop": 1336,
+ "atur": 1337,
+ "als": 1338,
+ "▁bel": 1339,
+ "ör": 1340,
+ "fr": 1341,
+ "▁example": 1342,
+ "▁incl": 1343,
+ "amil": 1344,
+ "▁ра": 1345,
+ "▁“": 1346,
+ "▁string": 1347,
+ "▁think": 1348,
+ "Th": 1349,
+ "▁tem": 1350,
+ "ave": 1351,
+ "▁Fran": 1352,
+ "▁number": 1353,
+ "▁si": 1354,
+ "imes": 1355,
+ "tem": 1356,
+ "my": 1357,
+ "ler": 1358,
+ "load": 1359,
+ "==": 1360,
+ "▁hand": 1361,
+ "za": 1362,
+ "▁because": 1363,
+ "▁sch": 1364,
+ "vo": 1365,
+ "this": 1366,
+ "ID": 1367,
+ "ão": 1368,
+ "▁start": 1369,
+ "▁war": 1370,
+ "▁help": 1371,
+ "ts": 1372,
+ "▁char": 1373,
+ "▁ph": 1374,
+ "▁min": 1375,
+ "til": 1376,
+ "rite": 1377,
+ "--------": 1378,
+ "els": 1379,
+ "▁mit": 1380,
+ "edia": 1381,
+ "ку": 1382,
+ "▁Sh": 1383,
+ "any": 1384,
+ "];": 1385,
+ "▁Б": 1386,
+ "ique": 1387,
+ "da": 1388,
+ "ef": 1389,
+ "dex": 1390,
+ "▁produ": 1391,
+ "▁Н": 1392,
+ "gram": 1393,
+ "▁Or": 1394,
+ "▁gre": 1395,
+ "quote": 1396,
+ "leg": 1397,
+ "orn": 1398,
+ "▁ind": 1399,
+ "▁post": 1400,
+ "▁dep": 1401,
+ "],": 1402,
+ "vi": 1403,
+ "▁user": 1404,
+ "▁>": 1405,
+ "lick": 1406,
+ "▁very": 1407,
+ "ething": 1408,
+ "▁array": 1409,
+ "▁gu": 1410,
+ "▁dur": 1411,
+ "`.": 1412,
+ "ть": 1413,
+ "lication": 1414,
+ "сти": 1415,
+ "ek": 1416,
+ "ico": 1417,
+ "▁dat": 1418,
+ "ор": 1419,
+ "html": 1420,
+ "ione": 1421,
+ "▁different": 1422,
+ "▁check": 1423,
+ "▁fr": 1424,
+ "▁Er": 1425,
+ "▁text": 1426,
+ "ні": 1427,
+ "icht": 1428,
+ "stack": 1429,
+ "EN": 1430,
+ "rag": 1431,
+ "▁every": 1432,
+ "Ar": 1433,
+ "▁before": 1434,
+ "alse": 1435,
+ "▁fin": 1436,
+ "▁dé": 1437,
+ "▁these": 1438,
+ "▁det": 1439,
+ "Val": 1440,
+ "ception": 1441,
+ "▁android": 1442,
+ "blockquote": 1443,
+ "▁je": 1444,
+ "file": 1445,
+ "ats": 1446,
+ "▁до": 1447,
+ "essage": 1448,
+ "▁again": 1449,
+ "aw": 1450,
+ "Ch": 1451,
+ "ween": 1452,
+ "▁Д": 1453,
+ "for": 1454,
+ "cial": 1455,
+ "play": 1456,
+ "pre": 1457,
+ "ida": 1458,
+ "▁Par": 1459,
+ "ny": 1460,
+ "ract": 1461,
+ "▁supp": 1462,
+ "ased": 1463,
+ "lection": 1464,
+ "▁dans": 1465,
+ "air": 1466,
+ "rol": 1467,
+ "▁thr": 1468,
+ "Data": 1469,
+ "lich": 1470,
+ "▁про": 1471,
+ "▁long": 1472,
+ "▁second": 1473,
+ "ually": 1474,
+ "ines": 1475,
+ "▁found": 1476,
+ "ength": 1477,
+ "yp": 1478,
+ "ead": 1479,
+ "▁log": 1480,
+ "ui": 1481,
+ "new": 1482,
+ "▁Р": 1483,
+ "go": 1484,
+ "aus": 1485,
+ "ody": 1486,
+ "▁son": 1487,
+ "ме": 1488,
+ "ero": 1489,
+ "ved": 1490,
+ "sub": 1491,
+ "▁right": 1492,
+ "view": 1493,
+ "▁following": 1494,
+ "')": 1495,
+ "\");": 1496,
+ "▁said": 1497,
+ "же": 1498,
+ "чи": 1499,
+ "ту": 1500,
+ "ott": 1501,
+ "се": 1502,
+ "ars": 1503,
+ "$.": 1504,
+ "gg": 1505,
+ "▁br": 1506,
+ "ool": 1507,
+ "yle": 1508,
+ "use": 1509,
+ "▁show": 1510,
+ "lease": 1511,
+ "cia": 1512,
+ "▁direct": 1513,
+ "doc": 1514,
+ "ар": 1515,
+ "ms": 1516,
+ "▁giv": 1517,
+ "▁exp": 1518,
+ "ql": 1519,
+ "ду": 1520,
+ "ве": 1521,
+ "▁Be": 1522,
+ "Com": 1523,
+ "iter": 1524,
+ "RE": 1525,
+ "mp": 1526,
+ "men": 1527,
+ "▁Ro": 1528,
+ "MA": 1529,
+ "▁Col": 1530,
+ "ister": 1531,
+ "▁well": 1532,
+ "▁": 1533,
+ "ayout": 1534,
+ "ature": 1535,
+ "ivers": 1536,
+ "zy": 1537,
+ "▁не": 1538,
+ "▁met": 1539,
+ "une": 1540,
+ "yth": 1541,
+ "Type": 1542,
+ "▁element": 1543,
+ "▁link": 1544,
+ "mod": 1545,
+ "▁between": 1546,
+ "cept": 1547,
+ "quire": 1548,
+ "▁through": 1549,
+ "▁while": 1550,
+ "▁On": 1551,
+ "the": 1552,
+ "ía": 1553,
+ "▁something": 1554,
+ "vol": 1555,
+ "▁most": 1556,
+ "sc": 1557,
+ "uss": 1558,
+ "▁car": 1559,
+ "▁sm": 1560,
+ "▁ро": 1561,
+ "ano": 1562,
+ "left": 1563,
+ "va": 1564,
+ "▁true": 1565,
+ "($": 1566,
+ "ems": 1567,
+ "▁much": 1568,
+ "ás": 1569,
+ "▁New": 1570,
+ "▁proper": 1571,
+ "era": 1572,
+ "ited": 1573,
+ "▁doc": 1574,
+ "ices": 1575,
+ "The": 1576,
+ "▁?": 1577,
+ "сто": 1578,
+ "fl": 1579,
+ "▁spec": 1580,
+ "ender": 1581,
+ "way": 1582,
+ "▁self": 1583,
+ "▁even": 1584,
+ "ів": 1585,
+ "▁се": 1586,
+ "ния": 1587,
+ "▁Pr": 1588,
+ "▁ke": 1589,
+ "emb": 1590,
+ "▁table": 1591,
+ "▁equ": 1592,
+ "lient": 1593,
+ "td": 1594,
+ "part": 1595,
+ "▁print": 1596,
+ "▁une": 1597,
+ "ify": 1598,
+ "▁->": 1599,
+ "ene": 1600,
+ "▁mon": 1601,
+ "▁dec": 1602,
+ "▁still": 1603,
+ "▁об": 1604,
+ "▁Tr": 1605,
+ "▁ф": 1606,
+ "ife": 1607,
+ "ism": 1608,
+ "by": 1609,
+ "raw": 1610,
+ "ior": 1611,
+ "▁med": 1612,
+ "orld": 1613,
+ "▁comple": 1614,
+ "ww": 1615,
+ "▁art": 1616,
+ "ron": 1617,
+ "▁Г": 1618,
+ "▁My": 1619,
+ "▁als": 1620,
+ "rect": 1621,
+ "▁auf": 1622,
+ "▁down": 1623,
+ "ather": 1624,
+ "Col": 1625,
+ "Text": 1626,
+ "back": 1627,
+ "$,": 1628,
+ "▁year": 1629,
+ "мо": 1630,
+ "pi": 1631,
+ "▁Gr": 1632,
+ "ream": 1633,
+ "▁rep": 1634,
+ "bf": 1635,
+ "www": 1636,
+ "▁wur": 1637,
+ "▁org": 1638,
+ "inter": 1639,
+ "▁Die": 1640,
+ "▁being": 1641,
+ "\".": 1642,
+ "label": 1643,
+ "▁cent": 1644,
+ "java": 1645,
+ "bar": 1646,
+ "ante": 1647,
+ "ana": 1648,
+ "__": 1649,
+ "▁solution": 1650,
+ "▁О": 1651,
+ "▁fl": 1652,
+ "▁create": 1653,
+ "ici": 1654,
+ "ste": 1655,
+ "ython": 1656,
+ "unt": 1657,
+ "ason": 1658,
+ "ference": 1659,
+ "SE": 1660,
+ "▁non": 1661,
+ "ane": 1662,
+ "▁ins": 1663,
+ "ader": 1664,
+ "_{\\": 1665,
+ "Res": 1666,
+ "▁main": 1667,
+ "пи": 1668,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 1669,
+ "▁There": 1670,
+ "▁pour": 1671,
+ "RO": 1672,
+ "`,": 1673,
+ "lish": 1674,
+ "bject": 1675,
+ "ccess": 1676,
+ "▁orig": 1677,
+ "▁▁▁": 1678,
+ "ischen": 1679,
+ "ower": 1680,
+ "▁het": 1681,
+ "uc": 1682,
+ "▁else": 1683,
+ "».": 1684,
+ "▁от": 1685,
+ "equ": 1686,
+ "sible": 1687,
+ "test": 1688,
+ "stand": 1689,
+ "én": 1690,
+ "ets": 1691,
+ "GE": 1692,
+ "ident": 1693,
+ "▁е": 1694,
+ "▁при": 1695,
+ ".,": 1696,
+ "▁das": 1697,
+ "ock": 1698,
+ ",\"": 1699,
+ "▁vol": 1700,
+ "▁fo": 1701,
+ "▁para": 1702,
+ "▁Т": 1703,
+ "▁Car": 1704,
+ "ral": 1705,
+ "▁Sp": 1706,
+ "var": 1707,
+ "▁play": 1708,
+ "ouse": 1709,
+ "▁та": 1710,
+ "ically": 1711,
+ "▁contain": 1712,
+ "ponse": 1713,
+ "▁String": 1714,
+ "án": 1715,
+ "▁both": 1716,
+ "ken": 1717,
+ "AR": 1718,
+ "ере": 1719,
+ "▁Il": 1720,
+ "▁iss": 1721,
+ "▁open": 1722,
+ "▁)": 1723,
+ "▁What": 1724,
+ "fe": 1725,
+ "rivate": 1726,
+ "reg": 1727,
+ "▁without": 1728,
+ "▁zu": 1729,
+ "vis": 1730,
+ "flow": 1731,
+ "▁http": 1732,
+ "abase": 1733,
+ "▁word": 1734,
+ "▁change": 1735,
+ "▁works": 1736,
+ "▁ge": 1737,
+ "▁!": 1738,
+ "▁een": 1739,
+ "itle": 1740,
+ "▁event": 1741,
+ "word": 1742,
+ "ando": 1743,
+ "SB": 1744,
+ "rem": 1745,
+ "▁field": 1746,
+ "ving": 1747,
+ "Ser": 1748,
+ "▁our": 1749,
+ "▁qui": 1750,
+ "▁oper": 1751,
+ "▁ist": 1752,
+ "def": 1753,
+ "▁made": 1754,
+ "ние": 1755,
+ "px": 1756,
+ "▁men": 1757,
+ "rm": 1758,
+ "ais": 1759,
+ "cent": 1760,
+ "list": 1761,
+ "To": 1762,
+ "▁To": 1763,
+ "ja": 1764,
+ "vert": 1765,
+ "▁mar": 1766,
+ "value": 1767,
+ "▁„": 1768,
+ "\";": 1769,
+ "▁aus": 1770,
+ "▁Br": 1771,
+ "ole": 1772,
+ "▁mult": 1773,
+ "ought": 1774,
+ "▁mat": 1775,
+ "▁view": 1776,
+ "fil": 1777,
+ "▁со": 1778,
+ "га": 1779,
+ "▁void": 1780,
+ "▁good": 1781,
+ "бо": 1782,
+ "CT": 1783,
+ "▁many": 1784,
+ "ben": 1785,
+ "▁во": 1786,
+ "▁ка": 1787,
+ "▁system": 1788,
+ "ino": 1789,
+ "▁another": 1790,
+ "▁rest": 1791,
+ "user": 1792,
+ "ility": 1793,
+ "ai": 1794,
+ "▁might": 1795,
+ "ustom": 1796,
+ "▁order": 1797,
+ "▁Ver": 1798,
+ "SS": 1799,
+ "})": 1800,
+ "▁eff": 1801,
+ "до": 1802,
+ "ett": 1803,
+ "▁sign": 1804,
+ "му": 1805,
+ "IT": 1806,
+ "string": 1807,
+ "elle": 1808,
+ "▁sing": 1809,
+ "cul": 1810,
+ "▁trying": 1811,
+ "▁beg": 1812,
+ "▁page": 1813,
+ "хо": 1814,
+ "▁Can": 1815,
+ "▁Ser": 1816,
+ "++": 1817,
+ "▁must": 1818,
+ "▁values": 1819,
+ "▁key": 1820,
+ "ible": 1821,
+ "].": 1822,
+ "ird": 1823,
+ "▁program": 1824,
+ "roller": 1825,
+ "▁conne": 1826,
+ "▁say": 1827,
+ "▁param": 1828,
+ "ache": 1829,
+ "velop": 1830,
+ "▁select": 1831,
+ "▁famil": 1832,
+ "▁last": 1833,
+ "▁Thanks": 1834,
+ "▁pop": 1835,
+ "}.": 1836,
+ "eq": 1837,
+ "▁doesn": 1838,
+ "['": 1839,
+ "▁term": 1840,
+ "▁ré": 1841,
+ "▁document": 1842,
+ "па": 1843,
+ "лу": 1844,
+ "ateg": 1845,
+ ".)": 1846,
+ "ling": 1847,
+ "ional": 1848,
+ "ables": 1849,
+ "▁tak": 1850,
+ "utton": 1851,
+ "▁arg": 1852,
+ "type": 1853,
+ "▁sure": 1854,
+ "▁real": 1855,
+ "▁web": 1856,
+ "▁current": 1857,
+ "▁Pl": 1858,
+ "cho": 1859,
+ "ments": 1860,
+ "▁Joh": 1861,
+ "ots": 1862,
+ "▁exist": 1863,
+ "ну": 1864,
+ "▁für": 1865,
+ "▁из": 1866,
+ "do": 1867,
+ "ного": 1868,
+ "▁las": 1869,
+ "▁null": 1870,
+ "▁inform": 1871,
+ "▁Л": 1872,
+ "▁version": 1873,
+ "▁chang": 1874,
+ "ager": 1875,
+ "▁Comm": 1876,
+ "лі": 1877,
+ "ush": 1878,
+ "▁Ge": 1879,
+ "▁high": 1880,
+ "▁input": 1881,
+ "ogle": 1882,
+ "ros": 1883,
+ "box": 1884,
+ "gen": 1885,
+ "▁ste": 1886,
+ "▁local": 1887,
+ "Im": 1888,
+ "▁process": 1889,
+ "ternal": 1890,
+ "ized": 1891,
+ "ги": 1892,
+ "ét": 1893,
+ "▁Ind": 1894,
+ "▁och": 1895,
+ "lt": 1896,
+ "▁column": 1897,
+ "▁tried": 1898,
+ "▁command": 1899,
+ "▁best": 1900,
+ "aster": 1901,
+ "за": 1902,
+ "▁prim": 1903,
+ "▁model": 1904,
+ "▁і": 1905,
+ "▁those": 1906,
+ "ities": 1907,
+ "ère": 1908,
+ "▁ре": 1909,
+ "је": 1910,
+ "ши": 1911,
+ "ques": 1912,
+ "▁Am": 1913,
+ "▁own": 1914,
+ "lin": 1915,
+ "зи": 1916,
+ "Value": 1917,
+ "thing": 1918,
+ "▁,": 1919,
+ "▁Te": 1920,
+ "▁stud": 1921,
+ "▁um": 1922,
+ "▁server": 1923,
+ "ille": 1924,
+ "▁put": 1925,
+ "ativ": 1926,
+ "gy": 1927,
+ "ови": 1928,
+ "raf": 1929,
+ "ово": 1930,
+ "▁wurde": 1931,
+ "▁When": 1932,
+ "▁div": 1933,
+ "ants": 1934,
+ "▁ter": 1935,
+ "▁partic": 1936,
+ "▁т": 1937,
+ "▁Do": 1938,
+ "▁No": 1939,
+ "sert": 1940,
+ "ido": 1941,
+ "mathcal": 1942,
+ "ade": 1943,
+ "▁II": 1944,
+ "lear": 1945,
+ "ograph": 1946,
+ "ense": 1947,
+ "▁row": 1948,
+ "num": 1949,
+ "▁possible": 1950,
+ "▁since": 1951,
+ "▁Bo": 1952,
+ "ctions": 1953,
+ "▁Im": 1954,
+ "OR": 1955,
+ "ці": 1956,
+ "▁ide": 1957,
+ "map": 1958,
+ "▁correct": 1959,
+ "ves": 1960,
+ "php": 1961,
+ "▁output": 1962,
+ "▁Ph": 1963,
+ "AL": 1964,
+ "ared": 1965,
+ "\\\\": 1966,
+ "▁image": 1967,
+ "esch": 1968,
+ "жи": 1969,
+ "▁conf": 1970,
+ "por": 1971,
+ "query": 1972,
+ "ures": 1973,
+ "ium": 1974,
+ "ends": 1975,
+ "▁Ab": 1976,
+ "SBN": 1977,
+ "ід": 1978,
+ "ether": 1979,
+ "ptions": 1980,
+ "itu": 1981,
+ "lib": 1982,
+ "ns": 1983,
+ "ki": 1984,
+ "▁working": 1985,
+ "▁como": 1986,
+ "▁Then": 1987,
+ "ML": 1988,
+ "key": 1989,
+ "class": 1990,
+ "ople": 1991,
+ "ittle": 1992,
+ "▁match": 1993,
+ "ways": 1994,
+ "mathbb": 1995,
+ "▁require": 1996,
+ "alt": 1997,
+ "▁vis": 1998,
+ "▁bl": 1999,
+ "▁called": 2000,
+ "Item": 2001,
+ "ura": 2002,
+ "vec": 2003,
+ "eme": 2004,
+ "▁della": 2005,
+ "embre": 2006,
+ "urg": 2007,
+ "Se": 2008,
+ "▁request": 2009,
+ "ische": 2010,
+ "▁port": 2011,
+ "▁instead": 2012,
+ "=\\": 2013,
+ "▁У": 2014,
+ "hor": 2015,
+ "ente": 2016,
+ "ume": 2017,
+ "erd": 2018,
+ "са": 2019,
+ "▁why": 2020,
+ "rist": 2021,
+ "▁person": 2022,
+ "▁...": 2023,
+ "▁private": 2024,
+ "▁tot": 2025,
+ "pha": 2026,
+ "ift": 2027,
+ "ita": 2028,
+ "loc": 2029,
+ "▁old": 2030,
+ "он": 2031,
+ "▁nel": 2032,
+ "']": 2033,
+ "ti": 2034,
+ "iet": 2035,
+ "cite": 2036,
+ "plement": 2037,
+ "▁above": 2038,
+ "ks": 2039,
+ "ready": 2040,
+ "▁come": 2041,
+ "section": 2042,
+ "▁Pol": 2043,
+ "▁writ": 2044,
+ "▁https": 2045,
+ "▁$$": 2046,
+ "▁»": 2047,
+ "▁build": 2048,
+ "ito": 2049,
+ "▁consider": 2050,
+ "aft": 2051,
+ "App": 2052,
+ ",\\": 2053,
+ "indows": 2054,
+ "comm": 2055,
+ "▁;": 2056,
+ "ground": 2057,
+ "▁place": 2058,
+ "By": 2059,
+ "▁project": 2060,
+ "Object": 2061,
+ "▁repr": 2062,
+ "ences": 2063,
+ "indow": 2064,
+ "zt": 2065,
+ "▁files": 2066,
+ "cz": 2067,
+ "ivity": 2068,
+ "▁init": 2069,
+ "▁prob": 2070,
+ "▁sk": 2071,
+ "orth": 2072,
+ "iment": 2073,
+ "ouble": 2074,
+ "atal": 2075,
+ "irc": 2076,
+ "▁è": 2077,
+ "▁bre": 2078,
+ "ista": 2079,
+ "input": 2080,
+ "▁И": 2081,
+ "ной": 2082,
+ "sum": 2083,
+ "path": 2084,
+ "▁cour": 2085,
+ "▁too": 2086,
+ "▁Ad": 2087,
+ "▁Gu": 2088,
+ "▁false": 2089,
+ "▁fun": 2090,
+ "▁ст": 2091,
+ "ood": 2092,
+ "ès": 2093,
+ "▁enc": 2094,
+ "bol": 2095,
+ "rl": 2096,
+ "arget": 2097,
+ "order": 2098,
+ "▁mean": 2099,
+ "пе": 2100,
+ "igen": 2101,
+ "▁пре": 2102,
+ "width": 2103,
+ ";\r": 2104,
+ "itor": 2105,
+ "▁state": 2106,
+ "▁great": 2107,
+ "enn": 2108,
+ "bin": 2109,
+ "Er": 2110,
+ "Mod": 2111,
+ "oz": 2112,
+ "▁won": 2113,
+ "▁fact": 2114,
+ "▁java": 2115,
+ "▁Univers": 2116,
+ "▁cap": 2117,
+ "istor": 2118,
+ "}(": 2119,
+ "ku": 2120,
+ "ither": 2121,
+ "ales": 2122,
+ "▁ou": 2123,
+ "ross": 2124,
+ "▁take": 2125,
+ "rix": 2126,
+ "lob": 2127,
+ "▁eine": 2128,
+ "ases": 2129,
+ "▁access": 2130,
+ "ité": 2131,
+ "istr": 2132,
+ "ization": 2133,
+ "▁appro": 2134,
+ "ball": 2135,
+ "▁mak": 2136,
+ "}^": 2137,
+ "▁Cons": 2138,
+ "press": 2139,
+ "serv": 2140,
+ "().": 2141,
+ "af": 2142,
+ "▁ref": 2143,
+ ")\\": 2144,
+ "▁contin": 2145,
+ "su": 2146,
+ "iver": 2147,
+ "▁cond": 2148,
+ "▁expect": 2149,
+ "▁charact": 2150,
+ "bert": 2151,
+ "elt": 2152,
+ "ters": 2153,
+ "script": 2154,
+ "▁Ed": 2155,
+ "apt": 2156,
+ "');": 2157,
+ "print": 2158,
+ "▁size": 2159,
+ "▁sich": 2160,
+ "face": 2161,
+ "enden": 2162,
+ "▁Amer": 2163,
+ "ified": 2164,
+ "ów": 2165,
+ "▁Su": 2166,
+ "tes": 2167,
+ "med": 2168,
+ "▁Reg": 2169,
+ "sole": 2170,
+ "▁includ": 2171,
+ "ini": 2172,
+ "inci": 2173,
+ "▁pla": 2174,
+ "▁left": 2175,
+ "df": 2176,
+ "Par": 2177,
+ "▁All": 2178,
+ "▁occ": 2179,
+ "▁At": 2180,
+ "▁cr": 2181,
+ "Qu": 2182,
+ "▁given": 2183,
+ "▁System": 2184,
+ "ican": 2185,
+ "▁final": 2186,
+ "itions": 2187,
+ "▁бы": 2188,
+ "▁perform": 2189,
+ "AN": 2190,
+ "▁Me": 2191,
+ "uro": 2192,
+ "▁That": 2193,
+ "гра": 2194,
+ "▁По": 2195,
+ "▁ви": 2196,
+ "ably": 2197,
+ "▁present": 2198,
+ "duct": 2199,
+ "ric": 2200,
+ "▁Eng": 2201,
+ "try": 2202,
+ "▁lar": 2203,
+ "bl": 2204,
+ "idd": 2205,
+ "▁är": 2206,
+ "ora": 2207,
+ "LL": 2208,
+ "oss": 2209,
+ "▁ISBN": 2210,
+ "▁three": 2211,
+ "jo": 2212,
+ "ní": 2213,
+ "rc": 2214,
+ "▁far": 2215,
+ "▁Not": 2216,
+ "▁little": 2217,
+ "dis": 2218,
+ "ati": 2219,
+ "function": 2220,
+ "▁able": 2221,
+ "less": 2222,
+ "со": 2223,
+ "▁path": 2224,
+ "▁pres": 2225,
+ "lose": 2226,
+ "PI": 2227,
+ "▁issue": 2228,
+ "ackage": 2229,
+ "time": 2230,
+ "ige": 2231,
+ "ams": 2232,
+ "▁Cl": 2233,
+ "ails": 2234,
+ "alk": 2235,
+ "ii": 2236,
+ "ше": 2237,
+ "pen": 2238,
+ "QL": 2239,
+ "▁eas": 2240,
+ "RL": 2241,
+ "cel": 2242,
+ "▁sl": 2243,
+ "▁ask": 2244,
+ "▁nom": 2245,
+ "▁top": 2246,
+ "ides": 2247,
+ "index": 2248,
+ "ém": 2249,
+ "▁happ": 2250,
+ "ox": 2251,
+ "cd": 2252,
+ "▁better": 2253,
+ "▁load": 2254,
+ "ados": 2255,
+ "zen": 2256,
+ "▁ce": 2257,
+ "▁fa": 2258,
+ "▁John": 2259,
+ "IMA": 2260,
+ "▁Bar": 2261,
+ "overflow": 2262,
+ "▁де": 2263,
+ "ness": 2264,
+ "cer": 2265,
+ "▁Here": 2266,
+ "ret": 2267,
+ "▁sz": 2268,
+ "ambda": 2269,
+ "opy": 2270,
+ "url": 2271,
+ "py": 2272,
+ "rt": 2273,
+ "▁understand": 2274,
+ "ał": 2275,
+ "her": 2276,
+ "##": 2277,
+ "▁child": 2278,
+ "▁exec": 2279,
+ "▁application": 2280,
+ "▁struct": 2281,
+ "▁я": 2282,
+ "File": 2283,
+ "▁cert": 2284,
+ "ison": 2285,
+ "▁variable": 2286,
+ "DE": 2287,
+ "rs": 2288,
+ "▁really": 2289,
+ "Port": 2290,
+ "ba": 2291,
+ "▁Ber": 2292,
+ "▁inte": 2293,
+ "▁static": 2294,
+ "▁config": 2295,
+ "▁She": 2296,
+ "estions": 2297,
+ "▁plus": 2298,
+ "▁hab": 2299,
+ "ope": 2300,
+ "▁mus": 2301,
+ "▁count": 2302,
+ "ME": 2303,
+ "▁support": 2304,
+ "▁people": 2305,
+ "▁beh": 2306,
+ "▁already": 2307,
+ "Tr": 2308,
+ "▁done": 2309,
+ "dem": 2310,
+ "size": 2311,
+ "alpha": 2312,
+ "▁disc": 2313,
+ "])": 2314,
+ "▁Man": 2315,
+ "▁mil": 2316,
+ "▁stand": 2317,
+ "▁group": 2318,
+ "▁small": 2319,
+ "▁mag": 2320,
+ "сть": 2321,
+ "▁default": 2322,
+ "▁single": 2323,
+ "link": 2324,
+ "clude": 2325,
+ "▁ear": 2326,
+ "ilar": 2327,
+ "****": 2328,
+ "▁fix": 2329,
+ "ley": 2330,
+ "▁pas": 2331,
+ "ний": 2332,
+ "ission": 2333,
+ "▁implement": 2334,
+ "itch": 2335,
+ "▁года": 2336,
+ "▁always": 2337,
+ "▁Jah": 2338,
+ "pring": 2339,
+ "ção": 2340,
+ "plate": 2341,
+ "▁descri": 2342,
+ "▁head": 2343,
+ "init": 2344,
+ "ograf": 2345,
+ "▁query": 2346,
+ "ived": 2347,
+ "▁ing": 2348,
+ "pty": 2349,
+ "ha": 2350,
+ "▁mov": 2351,
+ "▁э": 2352,
+ "ette": 2353,
+ "ily": 2354,
+ "▁got": 2355,
+ "iled": 2356,
+ "icro": 2357,
+ "▁wr": 2358,
+ "ря": 2359,
+ "▁never": 2360,
+ "ores": 2361,
+ "▁bas": 2362,
+ "ios": 2363,
+ "lack": 2364,
+ "aint": 2365,
+ "vious": 2366,
+ "▁give": 2367,
+ "idad": 2368,
+ "En": 2369,
+ "ный": 2370,
+ "table": 2371,
+ "▁На": 2372,
+ "▁pat": 2373,
+ "тор": 2374,
+ "angu": 2375,
+ "loy": 2376,
+ "▁seg": 2377,
+ "array": 2378,
+ "▁Fl": 2379,
+ "▁index": 2380,
+ "▁sw": 2381,
+ "IMAGE": 2382,
+ "▁km": 2383,
+ "би": 2384,
+ "Class": 2385,
+ "ena": 2386,
+ "мен": 2387,
+ "comp": 2388,
+ "atus": 2389,
+ "rap": 2390,
+ "▁List": 2391,
+ "Error": 2392,
+ "▁typ": 2393,
+ "▁ма": 2394,
+ "cs": 2395,
+ "':": 2396,
+ "ji": 2397,
+ "▁However": 2398,
+ "▁те": 2399,
+ "▁below": 2400,
+ "▁App": 2401,
+ "ще": 2402,
+ "}_": 2403,
+ "bum": 2404,
+ "vir": 2405,
+ "ées": 2406,
+ "▁record": 2407,
+ "tain": 2408,
+ "lem": 2409,
+ "ital": 2410,
+ "▁imp": 2411,
+ "ego": 2412,
+ "▁od": 2413,
+ "▁rece": 2414,
+ "mit": 2415,
+ "ffic": 2416,
+ "stackoverflow": 2417,
+ "ieve": 2418,
+ "▁З": 2419,
+ "▁nov": 2420,
+ "це": 2421,
+ "▁Intern": 2422,
+ "bu": 2423,
+ "▁sugg": 2424,
+ "▁loop": 2425,
+ "ride": 2426,
+ "▁$(": 2427,
+ "▁super": 2428,
+ "rid": 2429,
+ "ных": 2430,
+ "▁Per": 2431,
+ "▁dom": 2432,
+ "='": 2433,
+ "utsch": 2434,
+ "len": 2435,
+ "▁write": 2436,
+ "▁inv": 2437,
+ "outh": 2438,
+ "▁Her": 2439,
+ "▁years": 2440,
+ "▁original": 2441,
+ "ega": 2442,
+ "▁Ste": 2443,
+ "▁seems": 2444,
+ "ég": 2445,
+ "▁next": 2446,
+ "eder": 2447,
+ "▁Ne": 2448,
+ "avas": 2449,
+ "ification": 2450,
+ "Exception": 2451,
+ "▁Der": 2452,
+ "▁ve": 2453,
+ "atic": 2454,
+ "hat": 2455,
+ "brary": 2456,
+ "return": 2457,
+ "urch": 2458,
+ "ision": 2459,
+ "mi": 2460,
+ "oint": 2461,
+ "▁day": 2462,
+ "iction": 2463,
+ "ál": 2464,
+ "▁és": 2465,
+ "▁though": 2466,
+ "action": 2467,
+ "ít": 2468,
+ "ungen": 2469,
+ "ours": 2470,
+ "▁script": 2471,
+ "▁information": 2472,
+ "▁multi": 2473,
+ "▁\\\\": 2474,
+ "ster": 2475,
+ "ке": 2476,
+ "AC": 2477,
+ "cies": 2478,
+ "▁display": 2479,
+ "oman": 2480,
+ "Time": 2481,
+ "ius": 2482,
+ "));": 2483,
+ "tre": 2484,
+ "▁lim": 2485,
+ "ately": 2486,
+ "éd": 2487,
+ "iste": 2488,
+ "▁са": 2489,
+ "post": 2490,
+ "uel": 2491,
+ "img": 2492,
+ "▁ч": 2493,
+ "ска": 2494,
+ "eld": 2495,
+ "pper": 2496,
+ "ula": 2497,
+ "▁general": 2498,
+ "Al": 2499,
+ "Form": 2500,
+ "▁upon": 2501,
+ "zo": 2502,
+ "amente": 2503,
+ "▁prom": 2504,
+ "▁ü": 2505,
+ "lex": 2506,
+ "▁turn": 2507,
+ "▁ме": 2508,
+ "ention": 2509,
+ "лен": 2510,
+ "▁af": 2511,
+ "icle": 2512,
+ "ств": 2513,
+ "▁Fil": 2514,
+ "▁Ф": 2515,
+ "avascript": 2516,
+ "Man": 2517,
+ "ara": 2518,
+ "ware": 2519,
+ "align": 2520,
+ "angle": 2521,
+ "▁Sc": 2522,
+ "unic": 2523,
+ "▁fran": 2524,
+ "Un": 2525,
+ "zi": 2526,
+ "met": 2527,
+ "Add": 2528,
+ "▁pub": 2529,
+ "ков": 2530,
+ "▁gen": 2531,
+ "▁pod": 2532,
+ "▁sum": 2533,
+ "▁having": 2534,
+ "▁avec": 2535,
+ "sl": 2536,
+ "▁fig": 2537,
+ "▁Res": 2538,
+ "Date": 2539,
+ "ules": 2540,
+ "with": 2541,
+ "ский": 2542,
+ "gu": 2543,
+ "ET": 2544,
+ "▁bro": 2545,
+ "rie": 2546,
+ "aps": 2547,
+ "ending": 2548,
+ "mail": 2549,
+ "ook": 2550,
+ "▁success": 2551,
+ "berg": 2552,
+ "▁deb": 2553,
+ "elta": 2554,
+ "()`": 2555,
+ "ential": 2556,
+ "frame": 2557,
+ "Key": 2558,
+ "inn": 2559,
+ "▁simple": 2560,
+ "ival": 2561,
+ "▁care": 2562,
+ "▁Web": 2563,
+ "\").": 2564,
+ ">": 2565,
+ "▁database": 2566,
+ "▁Now": 2567,
+ "Ind": 2568,
+ "▁мо": 2569,
+ "cht": 2570,
+ "ban": 2571,
+ "ram": 2572,
+ "equation": 2573,
+ "ski": 2574,
+ "ief": 2575,
+ "lim": 2576,
+ "Get": 2577,
+ "▁tre": 2578,
+ "aten": 2579,
+ "bed": 2580,
+ "▁Je": 2581,
+ "▁results": 2582,
+ "лю": 2583,
+ "тель": 2584,
+ "db": 2585,
+ "▁bit": 2586,
+ "body": 2587,
+ "Array": 2588,
+ "mu": 2589,
+ "pression": 2590,
+ "▁ста": 2591,
+ "ony": 2592,
+ "iff": 2593,
+ "▁bar": 2594,
+ "▁Arch": 2595,
+ "bers": 2596,
+ "){": 2597,
+ "▁Mon": 2598,
+ "▁doing": 2599,
+ "▁prof": 2600,
+ "▁install": 2601,
+ "▁position": 2602,
+ "ema": 2603,
+ "▁});": 2604,
+ "Path": 2605,
+ "ali": 2606,
+ "▁&&": 2607,
+ "lev": 2608,
+ "▁cannot": 2609,
+ "▁May": 2610,
+ "inst": 2611,
+ "-\\": 2612,
+ "▁coun": 2613,
+ "▁ang": 2614,
+ "▁appear": 2615,
+ "cor": 2616,
+ "ció": 2617,
+ "ided": 2618,
+ "questions": 2619,
+ "atter": 2620,
+ "▁Pa": 2621,
+ "select": 2622,
+ "▁princi": 2623,
+ "Event": 2624,
+ "▁side": 2625,
+ "▁mem": 2626,
+ "▁Jan": 2627,
+ "ario": 2628,
+ "▁within": 2629,
+ "▁Val": 2630,
+ "odes": 2631,
+ "iddle": 2632,
+ "uration": 2633,
+ "bra": 2634,
+ "▁date": 2635,
+ "[]": 2636,
+ "▁entre": 2637,
+ "ili": 2638,
+ "Portail": 2639,
+ "docs": 2640,
+ "ской": 2641,
+ "Element": 2642,
+ "▁message": 2643,
+ "▁nach": 2644,
+ "▁during": 2645,
+ "▁gra": 2646,
+ "etwork": 2647,
+ "▁By": 2648,
+ "▁tell": 2649,
+ "ete": 2650,
+ "~\\": 2651,
+ "▁bis": 2652,
+ "▁pu": 2653,
+ "▁red": 2654,
+ "▁thing": 2655,
+ "▁sort": 2656,
+ "xim": 2657,
+ "ires": 2658,
+ "User": 2659,
+ "iod": 2660,
+ "▁Est": 2661,
+ "osed": 2662,
+ "oute": 2663,
+ "▁Les": 2664,
+ "▁sent": 2665,
+ "ribute": 2666,
+ "utes": 2667,
+ "istory": 2668,
+ "▁service": 2669,
+ "';": 2670,
+ "field": 2671,
+ "▁IN": 2672,
+ "ension": 2673,
+ "rel": 2674,
+ "▁going": 2675,
+ "web": 2676,
+ "Context": 2677,
+ "▁later": 2678,
+ "uk": 2679,
+ "layout": 2680,
+ "ona": 2681,
+ "át": 2682,
+ "----------------": 2683,
+ "▁exact": 2684,
+ "andom": 2685,
+ "▁sie": 2686,
+ "II": 2687,
+ "▁They": 2688,
+ "mente": 2689,
+ "ibli": 2690,
+ "▁fine": 2691,
+ "UT": 2692,
+ "▁develop": 2693,
+ "▁Ein": 2694,
+ "soft": 2695,
+ "off": 2696,
+ "Set": 2697,
+ "▁az": 2698,
+ "eters": 2699,
+ "ilder": 2700,
+ "ples": 2701,
+ "▁specific": 2702,
+ "▁om": 2703,
+ "error": 2704,
+ "ently": 2705,
+ "▁film": 2706,
+ "uck": 2707,
+ "ains": 2708,
+ "ación": 2709,
+ "ges": 2710,
+ "жа": 2711,
+ "▁things": 2712,
+ "Sh": 2713,
+ "▁thought": 2714,
+ "▁added": 2715,
+ "dep": 2716,
+ "ского": 2717,
+ "▁Li": 2718,
+ "ils": 2719,
+ "ync": 2720,
+ "▁то": 2721,
+ "ries": 2722,
+ "▁cu": 2723,
+ "chen": 2724,
+ "ION": 2725,
+ "▁Des": 2726,
+ "ultado": 2727,
+ "irt": 2728,
+ "▁based": 2729,
+ "▁mo": 2730,
+ "▁dest": 2731,
+ "png": 2732,
+ "reen": 2733,
+ "▁running": 2734,
+ "amma": 2735,
+ "oud": 2736,
+ "▁refer": 2737,
+ "ious": 2738,
+ "▁Jul": 2739,
+ "▁search": 2740,
+ "ald": 2741,
+ "ede": 2742,
+ "▁wrong": 2743,
+ "An": 2744,
+ "▁until": 2745,
+ "site": 2746,
+ "ayer": 2747,
+ "▁once": 2748,
+ "arr": 2749,
+ "▁against": 2750,
+ "====": 2751,
+ "▁source": 2752,
+ "arn": 2753,
+ "api": 2754,
+ "▁represent": 2755,
+ "▁aff": 2756,
+ "▁sein": 2757,
+ "▁allow": 2758,
+ "ormal": 2759,
+ "ended": 2760,
+ "▁control": 2761,
+ "mathbf": 2762,
+ "come": 2763,
+ "cur": 2764,
+ "endo": 2765,
+ "wa": 2766,
+ "▁update": 2767,
+ "▁inside": 2768,
+ "▁reason": 2769,
+ "omen": 2770,
+ "▁вы": 2771,
+ "De": 2772,
+ "▁је": 2773,
+ "sw": 2774,
+ "▁sever": 2775,
+ "Of": 2776,
+ "▁instance": 2777,
+ "▁mer": 2778,
+ "▁effect": 2779,
+ "color": 2780,
+ "ugust": 2781,
+ "ilt": 2782,
+ "des": 2783,
+ "itz": 2784,
+ "ulation": 2785,
+ "nie": 2786,
+ "▁World": 2787,
+ "▁similar": 2788,
+ "ymbol": 2789,
+ "hing": 2790,
+ "▁mark": 2791,
+ "State": 2792,
+ "▁content": 2793,
+ "▁means": 2794,
+ "amed": 2795,
+ "▁End": 2796,
+ "ND": 2797,
+ "count": 2798,
+ "▁Inst": 2799,
+ "perty": 2800,
+ "ctor": 2801,
+ "▁{\\": 2802,
+ "▁Let": 2803,
+ "▁!=": 2804,
+ "▁getting": 2805,
+ "uth": 2806,
+ "umber": 2807,
+ "▁Consultado": 2808,
+ "schaft": 2809,
+ "lete": 2810,
+ "▁Will": 2811,
+ "▁Em": 2812,
+ "head": 2813,
+ "▁leg": 2814,
+ "ном": 2815,
+ "Or": 2816,
+ "arm": 2817,
+ "pond": 2818,
+ "▁Christ": 2819,
+ "▁around": 2820,
+ "▁clear": 2821,
+ "▁href": 2822,
+ "▁See": 2823,
+ "').": 2824,
+ "▁created": 2825,
+ "▁button": 2826,
+ "ining": 2827,
+ "▁click": 2828,
+ "iam": 2829,
+ "plit": 2830,
+ "For": 2831,
+ "▁polit": 2832,
+ "▁seem": 2833,
+ "▁life": 2834,
+ "нов": 2835,
+ "▁intern": 2836,
+ "щи": 2837,
+ "sel": 2838,
+ "soci": 2839,
+ "▁stor": 2840,
+ "cle": 2841,
+ "earch": 2842,
+ "android": 2843,
+ "}^{": 2844,
+ "▁either": 2845,
+ "▁few": 2846,
+ "▁initial": 2847,
+ "length": 2848,
+ "ria": 2849,
+ "sql": 2850,
+ "wik": 2851,
+ "▁ét": 2852,
+ "uer": 2853,
+ "▁valid": 2854,
+ "And": 2855,
+ "include": 2856,
+ "ury": 2857,
+ "▁sus": 2858,
+ "ired": 2859,
+ "▁After": 2860,
+ "▁due": 2861,
+ "▁bei": 2862,
+ "ources": 2863,
+ "▁Nov": 2864,
+ "Act": 2865,
+ "▁Cont": 2866,
+ "▁break": 2867,
+ "ested": 2868,
+ "▁actually": 2869,
+ "else": 2870,
+ "tml": 2871,
+ "rer": 2872,
+ "ones": 2873,
+ "▁design": 2874,
+ "▁property": 2875,
+ "phi": 2876,
+ "ality": 2877,
+ "och": 2878,
+ "ists": 2879,
+ "▁·": 2880,
+ "udio": 2881,
+ "AB": 2882,
+ "ala": 2883,
+ "iones": 2884,
+ "фи": 2885,
+ "find": 2886,
+ "As": 2887,
+ "▁custom": 2888,
+ "▁ann": 2889,
+ "ES": 2890,
+ "OT": 2891,
+ "lambda": 2892,
+ "▁ident": 2893,
+ "▁organ": 2894,
+ "▁Cent": 2895,
+ "▁Char": 2896,
+ "▁os": 2897,
+ "▁hard": 2898,
+ "ров": 2899,
+ "▁/>": 2900,
+ "ko": 2901,
+ "▁exper": 2902,
+ "▁separ": 2903,
+ "yl": 2904,
+ "ourn": 2905,
+ "▁dev": 2906,
+ "▁auch": 2907,
+ "▁block": 2908,
+ "book": 2909,
+ "▁map": 2910,
+ "illa": 2911,
+ "▁comput": 2912,
+ "▁space": 2913,
+ "result": 2914,
+ ")}": 2915,
+ "▁echo": 2916,
+ "config": 2917,
+ "hi": 2918,
+ "▁large": 2919,
+ "▁width": 2920,
+ "▁Go": 2921,
+ "mat": 2922,
+ "▁diff": 2923,
+ "▁kind": 2924,
+ "ances": 2925,
+ "ynam": 2926,
+ "▁color": 2927,
+ "Int": 2928,
+ "sol": 2929,
+ "▁pi": 2930,
+ "▁character": 2931,
+ "oment": 2932,
+ "▁response": 2933,
+ "igma": 2934,
+ "wards": 2935,
+ "arrow": 2936,
+ "су": 2937,
+ "ties": 2938,
+ "▁über": 2939,
+ "Image": 2940,
+ "yd": 2941,
+ "▁пере": 2942,
+ "▁node": 2943,
+ "▁item": 2944,
+ "achine": 2945,
+ "ima": 2946,
+ "▁va": 2947,
+ "▁approach": 2948,
+ "▁wer": 2949,
+ "▁че": 2950,
+ "On": 2951,
+ "ollow": 2952,
+ "она": 2953,
+ "cted": 2954,
+ "ured": 2955,
+ "Controller": 2956,
+ "lied": 2957,
+ "▁jo": 2958,
+ "▁dal": 2959,
+ "unk": 2960,
+ "▁î": 2961,
+ "start": 2962,
+ "ola": 2963,
+ "▁compon": 2964,
+ "IC": 2965,
+ "bit": 2966,
+ "▁base": 2967,
+ "пу": 2968,
+ "▁idea": 2969,
+ "▁dire": 2970,
+ "▁rad": 2971,
+ "group": 2972,
+ "▁With": 2973,
+ "server": 2974,
+ "side": 2975,
+ "sing": 2976,
+ "▁dies": 2977,
+ "▁near": 2978,
+ "▁voor": 2979,
+ "▁argument": 2980,
+ "▁},": 2981,
+ "▁land": 2982,
+ "▁names": 2983,
+ "▁option": 2984,
+ "ithub": 2985,
+ "pped": 2986,
+ "aug": 2987,
+ "▁links": 2988,
+ "▁full": 2989,
+ "▁situ": 2990,
+ "▁console": 2991,
+ "▁etc": 2992,
+ "aux": 2993,
+ "▁Cor": 2994,
+ "icrosoft": 2995,
+ "▁came": 2996,
+ "local": 2997,
+ "▁known": 2998,
+ "▁multiple": 2999,
+ "anguage": 3000,
+ "▁total": 3001,
+ "ology": 3002,
+ "ät": 3003,
+ "▁Х": 3004,
+ "▁fre": 3005,
+ "▁ten": 3006,
+ "ideo": 3007,
+ "▁bes": 3008,
+ "true": 3009,
+ "Query": 3010,
+ "omm": 3011,
+ "▁Art": 3012,
+ "▁keep": 3013,
+ "▁University": 3014,
+ "reate": 3015,
+ "pport": 3016,
+ "▁python": 3017,
+ "tra": 3018,
+ "ector": 3019,
+ "рі": 3020,
+ "oph": 3021,
+ "▁conc": 3022,
+ "▁four": 3023,
+ "viron": 3024,
+ "▁via": 3025,
+ "?\"": 3026,
+ "image": 3027,
+ "oll": 3028,
+ "ные": 3029,
+ "▁context": 3030,
+ "▁sem": 3031,
+ "._": 3032,
+ "▁eng": 3033,
+ "mar": 3034,
+ "AD": 3035,
+ "▁mor": 3036,
+ "▁Cal": 3037,
+ "▁cell": 3038,
+ "imal": 3039,
+ "ATE": 3040,
+ "▁inf": 3041,
+ "ön": 3042,
+ "uffer": 3043,
+ "sq": 3044,
+ "....": 3045,
+ "▁zur": 3046,
+ "With": 3047,
+ "ран": 3048,
+ "chn": 3049,
+ "▁door": 3050,
+ "content": 3051,
+ "▁miss": 3052,
+ "▁simp": 3053,
+ "ár": 3054,
+ "ira": 3055,
+ "▁hat": 3056,
+ "Test": 3057,
+ "▁certain": 3058,
+ "NS": 3059,
+ "▁cho": 3060,
+ "▁adv": 3061,
+ "where": 3062,
+ "▁looking": 3063,
+ "▁times": 3064,
+ "них": 3065,
+ "uto": 3066,
+ "▁É": 3067,
+ "can": 3068,
+ "host": 3069,
+ "▁(*": 3070,
+ "loat": 3071,
+ "▁nicht": 3072,
+ "Field": 3073,
+ "burg": 3074,
+ "const": 3075,
+ "ades": 3076,
+ "▁Mus": 3077,
+ "▁nothing": 3078,
+ "▁incre": 3079,
+ "▁Min": 3080,
+ "▁power": 3081,
+ "▁American": 3082,
+ "ln": 3083,
+ "valid": 3084,
+ "ungs": 3085,
+ "▁National": 3086,
+ "▁San": 3087,
+ "▁York": 3088,
+ "Request": 3089,
+ "char": 3090,
+ "▁Ze": 3091,
+ "button": 3092,
+ "▁alg": 3093,
+ "SON": 3094,
+ "▁ap": 3095,
+ "uff": 3096,
+ "ability": 3097,
+ "ем": 3098,
+ "▁anything": 3099,
+ "ela": 3100,
+ "())": 3101,
+ "ба": 3102,
+ "ampion": 3103,
+ "▁pot": 3104,
+ "▁fut": 3105,
+ "ailable": 3106,
+ "▁prop": 3107,
+ "\"]": 3108,
+ "▁less": 3109,
+ "lag": 3110,
+ "▁August": 3111,
+ "It": 3112,
+ "▁please": 3113,
+ "▁style": 3114,
+ "▁Also": 3115,
+ "bt": 3116,
+ "▁probably": 3117,
+ "▁One": 3118,
+ "▁poss": 3119,
+ "UI": 3120,
+ "uit": 3121,
+ "▁West": 3122,
+ "hn": 3123,
+ "+\\": 3124,
+ "Button": 3125,
+ "json": 3126,
+ "err": 3127,
+ "rame": 3128,
+ "dom": 3129,
+ "ilon": 3130,
+ "alf": 3131,
+ "▁client": 3132,
+ "▁continu": 3133,
+ "xml": 3134,
+ "pec": 3135,
+ "ador": 3136,
+ "ls": 3137,
+ "▁however": 3138,
+ "▁Any": 3139,
+ "änd": 3140,
+ "mathrm": 3141,
+ "▁url": 3142,
+ "▁book": 3143,
+ "▁gl": 3144,
+ "ives": 3145,
+ "gi": 3146,
+ "▁tro": 3147,
+ "▁US": 3148,
+ "point": 3149,
+ "open": 3150,
+ "▁cur": 3151,
+ "▁era": 3152,
+ "▁particular": 3153,
+ "▁HT": 3154,
+ "oot": 3155,
+ "ello": 3156,
+ "lobal": 3157,
+ "▁action": 3158,
+ "▁Int": 3159,
+ "▁include": 3160,
+ "▁elements": 3161,
+ "ная": 3162,
+ "ards": 3163,
+ "▁Bl": 3164,
+ "▁hum": 3165,
+ "from": 3166,
+ "change": 3167,
+ "▁functions": 3168,
+ "hen": 3169,
+ "Service": 3170,
+ "▁height": 3171,
+ "▁Land": 3172,
+ "ias": 3173,
+ "gs": 3174,
+ "ión": 3175,
+ "лов": 3176,
+ "node": 3177,
+ ".”": 3178,
+ "hand": 3179,
+ "▁бу": 3180,
+ "▁amb": 3181,
+ "▁Lu": 3182,
+ "▁throw": 3183,
+ "▁mot": 3184,
+ "▁Act": 3185,
+ "▁world": 3186,
+ "_\\": 3187,
+ "base": 3188,
+ "▁Co": 3189,
+ "▁arch": 3190,
+ "▁####": 3191,
+ "ged": 3192,
+ "pril": 3193,
+ "older": 3194,
+ "Model": 3195,
+ "▁several": 3196,
+ "lie": 3197,
+ "check": 3198,
+ "]{": 3199,
+ "cons": 3200,
+ "▁Tra": 3201,
+ "heck": 3202,
+ "▁least": 3203,
+ "down": 3204,
+ "ebru": 3205,
+ "Def": 3206,
+ "param": 3207,
+ "ischer": 3208,
+ "▁cas": 3209,
+ "CH": 3210,
+ "▁address": 3211,
+ "▁раз": 3212,
+ "ufen": 3213,
+ "urope": 3214,
+ "ей": 3215,
+ "▁bound": 3216,
+ "CO": 3217,
+ "▁Ang": 3218,
+ "▁Ma": 3219,
+ "Index": 3220,
+ "core": 3221,
+ "ouch": 3222,
+ "atabase": 3223,
+ "ribution": 3224,
+ "document": 3225,
+ "Le": 3226,
+ "}_{": 3227,
+ "vern": 3228,
+ "▁statement": 3229,
+ "▁Brit": 3230,
+ "ono": 3231,
+ "psilon": 3232,
+ "▁level": 3233,
+ "▁product": 3234,
+ "IS": 3235,
+ "▁course": 3236,
+ "▁Mr": 3237,
+ ">\r": 3238,
+ "▁background": 3239,
+ "▁ret": 3240,
+ "ering": 3241,
+ "most": 3242,
+ "сько": 3243,
+ "▁thread": 3244,
+ "itional": 3245,
+ "ites": 3246,
+ "Pl": 3247,
+ "▁dos": 3248,
+ "ga": 3249,
+ "day": 3250,
+ "▁Gener": 3251,
+ "▁tw": 3252,
+ "Ad": 3253,
+ "\"><": 3254,
+ "▁($": 3255,
+ "▁moment": 3256,
+ "title": 3257,
+ "create": 3258,
+ "version": 3259,
+ "Manager": 3260,
+ "▁fur": 3261,
+ "pping": 3262,
+ "ijn": 3263,
+ "ос": 3264,
+ "▁rather": 3265,
+ "ptember": 3266,
+ "OS": 3267,
+ "▁site": 3268,
+ "▁caus": 3269,
+ "ani": 3270,
+ "▁home": 3271,
+ "мі": 3272,
+ "▁short": 3273,
+ "pa": 3274,
+ "▁lead": 3275,
+ "ished": 3276,
+ "cing": 3277,
+ "ording": 3278,
+ "▁prote": 3279,
+ "сле": 3280,
+ "LECT": 3281,
+ "▁didn": 3282,
+ "position": 3283,
+ "\",\"": 3284,
+ "(),": 3285,
+ "trans": 3286,
+ "▁lot": 3287,
+ "▁од": 3288,
+ "AS": 3289,
+ "▁sat": 3290,
+ "▁points": 3291,
+ "github": 3292,
+ "style": 3293,
+ "▁году": 3294,
+ "▁Dis": 3295,
+ "ponent": 3296,
+ "omet": 3297,
+ "zer": 3298,
+ "ULL": 3299,
+ "▁pa": 3300,
+ "AP": 3301,
+ "aces": 3302,
+ "▁United": 3303,
+ "ama": 3304,
+ "ety": 3305,
+ "Color": 3306,
+ "▁enough": 3307,
+ "US": 3308,
+ "▁length": 3309,
+ "());": 3310,
+ "^{\\": 3311,
+ "fty": 3312,
+ "Box": 3313,
+ "apter": 3314,
+ "▁complet": 3315,
+ "ник": 3316,
+ "max": 3317,
+ "object": 3318,
+ "({": 3319,
+ "imgur": 3320,
+ "itive": 3321,
+ "unch": 3322,
+ "▁Sub": 3323,
+ "ende": 3324,
+ "гу": 3325,
+ "ategory": 3326,
+ "ты": 3327,
+ "iano": 3328,
+ "▁upd": 3329,
+ "▁Aust": 3330,
+ "}{\\": 3331,
+ "top": 3332,
+ "las": 3333,
+ "pis": 3334,
+ "iness": 3335,
+ "▁{\r": 3336,
+ "▁Е": 3337,
+ "Gr": 3338,
+ "▁AS": 3339,
+ "▁ве": 3340,
+ "thers": 3341,
+ "▁defined": 3342,
+ "azione": 3343,
+ "▁offic": 3344,
+ "▁autom": 3345,
+ "ün": 3346,
+ "▁brow": 3347,
+ "▁serv": 3348,
+ "▁remove": 3349,
+ "iro": 3350,
+ "▁Bibli": 3351,
+ "ED": 3352,
+ "▁whole": 3353,
+ "▁ш": 3354,
+ "▁Java": 3355,
+ "▁zum": 3356,
+ "ua": 3357,
+ "pm": 3358,
+ "dev": 3359,
+ "кра": 3360,
+ "olds": 3361,
+ "▁War": 3362,
+ "än": 3363,
+ "pass": 3364,
+ "uz": 3365,
+ "[\"": 3366,
+ "▁tri": 3367,
+ "ised": 3368,
+ "ха": 3369,
+ "▁memory": 3370,
+ "▁Port": 3371,
+ "oper": 3372,
+ "Up": 3373,
+ "▁Thank": 3374,
+ "▁Mich": 3375,
+ "ych": 3376,
+ "board": 3377,
+ "бу": 3378,
+ "Inst": 3379,
+ "▁begin": 3380,
+ "ination": 3381,
+ "▁Mod": 3382,
+ "_,": 3383,
+ "▁Den": 3384,
+ "option": 3385,
+ "▁construct": 3386,
+ "▁Just": 3387,
+ "Map": 3388,
+ "run": 3389,
+ "▁respect": 3390,
+ "ham": 3391,
+ "ман": 3392,
+ "imedia": 3393,
+ "▁apply": 3394,
+ "cription": 3395,
+ "main": 3396,
+ "▁Ка": 3397,
+ "oid": 3398,
+ "Code": 3399,
+ "};": 3400,
+ "Info": 3401,
+ "▁format": 3402,
+ "Log": 3403,
+ "▁су": 3404,
+ "▁lat": 3405,
+ "utor": 3406,
+ "▁reference": 3407,
+ "▁calcul": 3408,
+ "onn": 3409,
+ "Lo": 3410,
+ "infty": 3411,
+ "▁along": 3412,
+ "▁č": 3413,
+ "▁task": 3414,
+ "▁ev": 3415,
+ "theta": 3416,
+ "ras": 3417,
+ "jor": 3418,
+ "▁бо": 3419,
+ "▁princip": 3420,
+ "My": 3421,
+ "▁einer": 3422,
+ "▁Es": 3423,
+ "omb": 3424,
+ "quad": 3425,
+ "^{-": 3426,
+ "ump": 3427,
+ "▁till": 3428,
+ "ді": 3429,
+ "▁looks": 3430,
+ "▁ok": 3431,
+ "ца": 3432,
+ "nu": 3433,
+ "Fil": 3434,
+ "▁sont": 3435,
+ "▁Med": 3436,
+ "ague": 3437,
+ "▁cost": 3438,
+ "▁Sim": 3439,
+ "▁comment": 3440,
+ "▁(\\": 3441,
+ "egen": 3442,
+ "▁parameter": 3443,
+ "▁France": 3444,
+ "rep": 3445,
+ "▁TH": 3446,
+ "▁yet": 3447,
+ "▁away": 3448,
+ "▁circ": 3449,
+ "▁API": 3450,
+ "emp": 3451,
+ "ві": 3452,
+ "Layout": 3453,
+ "▁lines": 3454,
+ "▁Part": 3455,
+ "empt": 3456,
+ "▁Bi": 3457,
+ "▁mind": 3458,
+ "ky": 3459,
+ "ging": 3460,
+ "▁report": 3461,
+ "▁Add": 3462,
+ "род": 3463,
+ "▁range": 3464,
+ "cias": 3465,
+ "lip": 3466,
+ "▁Kar": 3467,
+ "▁Commons": 3468,
+ "gerufen": 3469,
+ "aff": 3470,
+ "sec": 3471,
+ "▁html": 3472,
+ "lig": 3473,
+ "▁window": 3474,
+ "inition": 3475,
+ "cis": 3476,
+ "▁ut": 3477,
+ "eln": 3478,
+ "▁aux": 3479,
+ "▁neg": 3480,
+ "Hand": 3481,
+ "▁);": 3482,
+ "▁anal": 3483,
+ "▁fri": 3484,
+ "▁си": 3485,
+ "etch": 3486,
+ "md": 3487,
+ "page": 3488,
+ "▁library": 3489,
+ "▁:=": 3490,
+ "ROM": 3491,
+ "You": 3492,
+ "space": 3493,
+ "▁durch": 3494,
+ "▁host": 3495,
+ "aven": 3496,
+ "▁File": 3497,
+ "alle": 3498,
+ "тив": 3499,
+ "▁pap": 3500,
+ "ство": 3501,
+ "mark": 3502,
+ "▁mais": 3503,
+ "erman": 3504,
+ "Size": 3505,
+ "ек": 3506,
+ "▁Ма": 3507,
+ "▁isn": 3508,
+ "▁copy": 3509,
+ "sten": 3510,
+ "river": 3511,
+ "▁went": 3512,
+ "▁javascript": 3513,
+ "▁sam": 3514,
+ "▁frame": 3515,
+ "▁vi": 3516,
+ "▁previous": 3517,
+ "rodu": 3518,
+ "▁methods": 3519,
+ "▁necess": 3520,
+ "NA": 3521,
+ "cket": 3522,
+ "▁opt": 3523,
+ "Loc": 3524,
+ "how": 3525,
+ "▁în": 3526,
+ "ship": 3527,
+ "▁itself": 3528,
+ "▁Please": 3529,
+ "iene": 3530,
+ "вер": 3531,
+ "▁<<": 3532,
+ "▁mill": 3533,
+ "▁trad": 3534,
+ "pace": 3535,
+ "▁Har": 3536,
+ "iten": 3537,
+ "wise": 3538,
+ "write": 3539,
+ "ции": 3540,
+ "ры": 3541,
+ "Line": 3542,
+ "olo": 3543,
+ "▁accept": 3544,
+ "height": 3545,
+ "▁elect": 3546,
+ "ella": 3547,
+ "▁på": 3548,
+ "Select": 3549,
+ "▁ли": 3550,
+ "▁\\<": 3551,
+ "((": 3552,
+ "▁ID": 3553,
+ "ops": 3554,
+ "ван": 3555,
+ "ió": 3556,
+ "TP": 3557,
+ "»,": 3558,
+ "nection": 3559,
+ "parent": 3560,
+ "▁Mag": 3561,
+ "Table": 3562,
+ "Over": 3563,
+ "▁network": 3564,
+ "спо": 3565,
+ "▁assign": 3566,
+ "igger": 3567,
+ "irm": 3568,
+ ")`": 3569,
+ "ottom": 3570,
+ "beta": 3571,
+ "▁dell": 3572,
+ "▁body": 3573,
+ "▁да": 3574,
+ "▁Your": 3575,
+ "▁fue": 3576,
+ "▁package": 3577,
+ "▁light": 3578,
+ "▁**": 3579,
+ "MP": 3580,
+ "▁cou": 3581,
+ "yes": 3582,
+ ":\\": 3583,
+ "▁Ч": 3584,
+ "▁mention": 3585,
+ "ensch": 3586,
+ "▁deg": 3587,
+ "▁convert": 3588,
+ "▁Dav": 3589,
+ "adt": 3590,
+ "Result": 3591,
+ "though": 3592,
+ "▁bus": 3593,
+ "xy": 3594,
+ "▁seen": 3595,
+ "All": 3596,
+ "public": 3597,
+ "ively": 3598,
+ "▁Rec": 3599,
+ "▁His": 3600,
+ "sim": 3601,
+ "▁för": 3602,
+ "▁histor": 3603,
+ "▁sett": 3604,
+ "rat": 3605,
+ "abled": 3606,
+ "▁»,": 3607,
+ "google": 3608,
+ "Web": 3609,
+ "él": 3610,
+ "▁title": 3611,
+ "▁Janu": 3612,
+ "ја": 3613,
+ "▁took": 3614,
+ "iden": 3615,
+ "sz": 3616,
+ "▁Get": 3617,
+ "▁objects": 3618,
+ "▁common": 3619,
+ "▁changes": 3620,
+ "▁Lond": 3621,
+ "▁extern": 3622,
+ "▁ju": 3623,
+ "Is": 3624,
+ "▁available": 3625,
+ "tri": 3626,
+ "▁más": 3627,
+ "osa": 3628,
+ "Be": 3629,
+ "▁Data": 3630,
+ "ural": 3631,
+ "▁hom": 3632,
+ "▁account": 3633,
+ "oo": 3634,
+ "▁perm": 3635,
+ "respond": 3636,
+ "yt": 3637,
+ "▁send": 3638,
+ "▁returns": 3639,
+ "ivid": 3640,
+ "▁expla": 3641,
+ "ín": 3642,
+ "▁nor": 3643,
+ "If": 3644,
+ "▁From": 3645,
+ "▁target": 3646,
+ "fect": 3647,
+ "ент": 3648,
+ "▁uit": 3649,
+ "▁Jo": 3650,
+ "▁variables": 3651,
+ "▁series": 3652,
+ "▁func": 3653,
+ "▁himself": 3654,
+ "▁ча": 3655,
+ "anti": 3656,
+ "▁ach": 3657,
+ "ialog": 3658,
+ "▁std": 3659,
+ "ae": 3660,
+ "▁foot": 3661,
+ "▁unter": 3662,
+ "gress": 3663,
+ "Not": 3664,
+ "rad": 3665,
+ "fér": 3666,
+ "▁util": 3667,
+ "orem": 3668,
+ "▁sou": 3669,
+ "opt": 3670,
+ "▁og": 3671,
+ "▁uma": 3672,
+ "itar": 3673,
+ "▁Ok": 3674,
+ "ück": 3675,
+ "sqrt": 3676,
+ "▁ant": 3677,
+ "▁werden": 3678,
+ "år": 3679,
+ "});": 3680,
+ "▁Paris": 3681,
+ "▁exception": 3682,
+ "▁determ": 3683,
+ "▁Vol": 3684,
+ "▁Sam": 3685,
+ "▁ess": 3686,
+ "lies": 3687,
+ "ioni": 3688,
+ "oding": 3689,
+ "idget": 3690,
+ "▁pri": 3691,
+ "▁whether": 3692,
+ "▁под": 3693,
+ "▁numbers": 3694,
+ "▁~": 3695,
+ "event": 3696,
+ "▁shows": 3697,
+ "atures": 3698,
+ "▁house": 3699,
+ "▁face": 3700,
+ "▁się": 3701,
+ "vironment": 3702,
+ "van": 3703,
+ "▁including": 3704,
+ "▁<-": 3705,
+ "times": 3706,
+ "now": 3707,
+ "▁pur": 3708,
+ "ifier": 3709,
+ "▁emp": 3710,
+ "▁cla": 3711,
+ "mon": 3712,
+ "▁Das": 3713,
+ "ady": 3714,
+ "▁від": 3715,
+ "▁ц": 3716,
+ "abor": 3717,
+ "OST": 3718,
+ "▁band": 3719,
+ "▁ú": 3720,
+ "▁exactly": 3721,
+ "iert": 3722,
+ "avig": 3723,
+ "▁redu": 3724,
+ "▁SE": 3725,
+ "lished": 3726,
+ "Bu": 3727,
+ "Message": 3728,
+ "cell": 3729,
+ "fully": 3730,
+ "▁sv": 3731,
+ "▁makes": 3732,
+ "pol": 3733,
+ "▁required": 3734,
+ "ferrer": 3735,
+ "▁pers": 3736,
+ "▁mi": 3737,
+ "FI": 3738,
+ "▁Paul": 3739,
+ "▁UI": 3740,
+ "▁Bel": 3741,
+ "inc": 3742,
+ "▁contains": 3743,
+ "Out": 3744,
+ "asure": 3745,
+ "pu": 3746,
+ "oto": 3747,
+ "▁game": 3748,
+ "zn": 3749,
+ "▁Why": 3750,
+ "orith": 3751,
+ "big": 3752,
+ "кий": 3753,
+ "sigma": 3754,
+ "▁quite": 3755,
+ "▁jed": 3756,
+ "rec": 3757,
+ "▁SQL": 3758,
+ "бе": 3759,
+ "▁Mart": 3760,
+ "ya": 3761,
+ "▁school": 3762,
+ "▁simply": 3763,
+ "▁vor": 3764,
+ "▁double": 3765,
+ "рав": 3766,
+ "▁Str": 3767,
+ "iem": 3768,
+ "▁album": 3769,
+ "▁resol": 3770,
+ "▁dei": 3771,
+ "▁Wik": 3772,
+ "▁aw": 3773,
+ "umb": 3774,
+ "ols": 3775,
+ "▁*/": 3776,
+ "▁ze": 3777,
+ "▁anim": 3778,
+ "/>": 3779,
+ "ris": 3780,
+ "resh": 3781,
+ "No": 3782,
+ "iques": 3783,
+ "current": 3784,
+ "▁period": 3785,
+ "▁April": 3786,
+ "▁store": 3787,
+ "','": 3788,
+ "▁Set": 3789,
+ "={": 3790,
+ "ached": 3791,
+ "▁Mal": 3792,
+ "▁Pal": 3793,
+ "antes": 3794,
+ "aterial": 3795,
+ "▁worked": 3796,
+ "leq": 3797,
+ "oreferrer": 3798,
+ "▁happen": 3799,
+ "▁box": 3800,
+ "ney": 3801,
+ "▁close": 3802,
+ "▁gran": 3803,
+ "▁lie": 3804,
+ "▁ir": 3805,
+ "▁expected": 3806,
+ "▁для": 3807,
+ "click": 3808,
+ "și": 3809,
+ "▁parte": 3810,
+ "ogn": 3811,
+ "▁Form": 3812,
+ "▁memb": 3813,
+ "▁plan": 3814,
+ "▁team": 3815,
+ "][": 3816,
+ "▁commun": 3817,
+ "orry": 3818,
+ "ency": 3819,
+ "gl": 3820,
+ "inary": 3821,
+ "cdot": 3822,
+ "^\\": 3823,
+ "▁First": 3824,
+ "ander": 3825,
+ "▁Dec": 3826,
+ "request": 3827,
+ "ства": 3828,
+ "▁structure": 3829,
+ "▁||": 3830,
+ "▁Comp": 3831,
+ "actory": 3832,
+ "▁Mil": 3833,
+ "▁Some": 3834,
+ "Stream": 3835,
+ "▁assum": 3836,
+ "uen": 3837,
+ "▁words": 3838,
+ "▁September": 3839,
+ "▁Ко": 3840,
+ "▁days": 3841,
+ "ories": 3842,
+ "став": 3843,
+ "sm": 3844,
+ "vin": 3845,
+ "partial": 3846,
+ "▁parent": 3847,
+ "oj": 3848,
+ "нии": 3849,
+ "!\"": 3850,
+ "ugin": 3851,
+ "▁Windows": 3852,
+ "Ed": 3853,
+ ":}": 3854,
+ "▁q": 3855,
+ "▁ben": 3856,
+ "iana": 3857,
+ "▁label": 3858,
+ "state": 3859,
+ "uted": 3860,
+ "▁()": 3861,
+ "▁сво": 3862,
+ "▁edit": 3863,
+ "uring": 3864,
+ "▁NS": 3865,
+ "▁Jahr": 3866,
+ "▁provide": 3867,
+ "He": 3868,
+ "▁Yes": 3869,
+ "anel": 3870,
+ "ename": 3871,
+ "▁Don": 3872,
+ "isk": 3873,
+ "gra": 3874,
+ "elij": 3875,
+ "▁root": 3876,
+ "*/": 3877,
+ "▁Fre": 3878,
+ "▁Mor": 3879,
+ "used": 3880,
+ "range": 3881,
+ "▁tamb": 3882,
+ "▁module": 3883,
+ "▁directory": 3884,
+ "ounds": 3885,
+ "Activity": 3886,
+ "▁mu": 3887,
+ "info": 3888,
+ "▁free": 3889,
+ "orge": 3890,
+ "tab": 3891,
+ ")=": 3892,
+ "lang": 3893,
+ "▁ос": 3894,
+ "▁FROM": 3895,
+ "▁enter": 3896,
+ "▁became": 3897,
+ "idae": 3898,
+ "хи": 3899,
+ "▁States": 3900,
+ "verse": 3901,
+ "▁expl": 3902,
+ "ynt": 3903,
+ "UN": 3904,
+ "ee": 3905,
+ "endent": 3906,
+ "▁making": 3907,
+ "▁\"$": 3908,
+ "uni": 3909,
+ "quence": 3910,
+ "▁lui": 3911,
+ "HT": 3912,
+ "▁uses": 3913,
+ "zie": 3914,
+ "nia": 3915,
+ "Content": 3916,
+ "▁Count": 3917,
+ "▁standard": 3918,
+ "ENT": 3919,
+ "▁кон": 3920,
+ "fort": 3921,
+ "adas": 3922,
+ "зу": 3923,
+ "System": 3924,
+ "▁Sw": 3925,
+ "▁ever": 3926,
+ "LO": 3927,
+ "▁correspond": 3928,
+ "▁Po": 3929,
+ "argin": 3930,
+ "кт": 3931,
+ "ій": 3932,
+ "▁remain": 3933,
+ "cio": 3934,
+ "▁actual": 3935,
+ "сту": 3936,
+ "▁sind": 3937,
+ "▁Pe": 3938,
+ "▁changed": 3939,
+ "▁Note": 3940,
+ "skie": 3941,
+ "▁family": 3942,
+ "ità": 3943,
+ "cos": 3944,
+ "txt": 3945,
+ "ker": 3946,
+ "ceed": 3947,
+ "▁arr": 3948,
+ "▁cam": 3949,
+ "izer": 3950,
+ "▁Dan": 3951,
+ "hel": 3952,
+ "icult": 3953,
+ "HP": 3954,
+ "iler": 3955,
+ "▁Sal": 3956,
+ "▁connection": 3957,
+ "usion": 3958,
+ "kn": 3959,
+ "RI": 3960,
+ "▁vom": 3961,
+ "Listener": 3962,
+ "▁ö": 3963,
+ "▁dim": 3964,
+ "▁press": 3965,
+ "▁esc": 3966,
+ "▁Try": 3967,
+ "atalog": 3968,
+ "▁thanks": 3969,
+ "DO": 3970,
+ "▁written": 3971,
+ "dir": 3972,
+ "rew": 3973,
+ "▁fire": 3974,
+ "▁Nach": 3975,
+ "▁á": 3976,
+ "enc": 3977,
+ "▁origin": 3978,
+ "▁November": 3979,
+ "▁};": 3980,
+ "Count": 3981,
+ "▁За": 3982,
+ "▁graph": 3983,
+ "▁mis": 3984,
+ "▁External": 3985,
+ "▁▁▁▁▁▁▁▁▁": 3986,
+ "▁options": 3987,
+ "▁URL": 3988,
+ "▁php": 3989,
+ "▁integr": 3990,
+ "Config": 3991,
+ "▁Text": 3992,
+ "inner": 3993,
+ "▁crit": 3994,
+ ",”": 3995,
+ "▁tog": 3996,
+ "$$": 3997,
+ "nof": 3998,
+ "▁ses": 3999,
+ "ühr": 4000,
+ "▁Since": 4001,
+ "Des": 4002,
+ "ube": 4003,
+ "▁section": 4004,
+ "▁gi": 4005,
+ "ford": 4006,
+ "▁Ass": 4007,
+ "ainer": 4008,
+ "ttp": 4009,
+ "▁behav": 4010,
+ "ports": 4011,
+ "draw": 4012,
+ "This": 4013,
+ "ranch": 4014,
+ "inding": 4015,
+ "▁estab": 4016,
+ "▁obtain": 4017,
+ "rich": 4018,
+ "licit": 4019,
+ "ев": 4020,
+ "▁qual": 4021,
+ "▁za": 4022,
+ "▁har": 4023,
+ "▁fac": 4024,
+ "aar": 4025,
+ "jet": 4026,
+ "icles": 4027,
+ "▁Aus": 4028,
+ "▁hor": 4029,
+ "▁remov": 4030,
+ "▁wie": 4031,
+ "Client": 4032,
+ "▁natur": 4033,
+ "hip": 4034,
+ "Sub": 4035,
+ "▁random": 4036,
+ "DF": 4037,
+ "▁area": 4038,
+ "tag": 4039,
+ "Pr": 4040,
+ "▁Ital": 4041,
+ "▁roku": 4042,
+ "nofollow": 4043,
+ "*}": 4044,
+ "▁others": 4045,
+ "▁limit": 4046,
+ "▁sil": 4047,
+ "▁sav": 4048,
+ "▁often": 4049,
+ "▁render": 4050,
+ "DB": 4051,
+ "▁Mc": 4052,
+ "▁zijn": 4053,
+ "жен": 4054,
+ "▁tag": 4055,
+ "ming": 4056,
+ "lichen": 4057,
+ "pack": 4058,
+ "▁Ag": 4059,
+ "▁sense": 4060,
+ "pg": 4061,
+ "Method": 4062,
+ "aged": 4063,
+ "ág": 4064,
+ "ła": 4065,
+ "▁interest": 4066,
+ "▁associ": 4067,
+ "volution": 4068,
+ "▁empty": 4069,
+ "iche": 4070,
+ "▁gro": 4071,
+ "▁types": 4072,
+ "▁Sie": 4073,
+ "Inter": 4074,
+ "▁noreferrer": 4075,
+ "▁gives": 4076,
+ "hal": 4077,
+ "▁save": 4078,
+ "▁font": 4079,
+ "ruction": 4080,
+ "Script": 4081,
+ "▁alla": 4082,
+ "▁says": 4083,
+ "▁fu": 4084,
+ "ape": 4085,
+ "▁language": 4086,
+ "iger": 4087,
+ "▁King": 4088,
+ "bor": 4089,
+ "uv": 4090,
+ "▁shall": 4091,
+ "▁Europe": 4092,
+ "▁einem": 4093,
+ "▁water": 4094,
+ "▁govern": 4095,
+ "anz": 4096,
+ "ators": 4097,
+ "▁month": 4098,
+ "ye": 4099,
+ "▁important": 4100,
+ "atz": 4101,
+ "first": 4102,
+ "▁Trans": 4103,
+ "▁Mad": 4104,
+ "▁bra": 4105,
+ "ika": 4106,
+ "▁Saint": 4107,
+ "oria": 4108,
+ "kre": 4109,
+ "ements": 4110,
+ "▁Ben": 4111,
+ "lav": 4112,
+ "▁admin": 4113,
+ "▁Hen": 4114,
+ "ril": 4115,
+ "▁Sm": 4116,
+ "cat": 4117,
+ "▁Refer": 4118,
+ "▁Ш": 4119,
+ "▁pract": 4120,
+ "▁Pat": 4121,
+ "▁Gre": 4122,
+ "▁young": 4123,
+ "▁Inter": 4124,
+ "oma": 4125,
+ "teger": 4126,
+ "ibility": 4127,
+ "▁parameters": 4128,
+ "▁everything": 4129,
+ "dat": 4130,
+ "urop": 4131,
+ "olean": 4132,
+ "▁returned": 4133,
+ "▁Class": 4134,
+ "acy": 4135,
+ "####": 4136,
+ "▁př": 4137,
+ "▁folder": 4138,
+ "▁kon": 4139,
+ "▁guess": 4140,
+ "gt": 4141,
+ "jen": 4142,
+ "annel": 4143,
+ "icon": 4144,
+ "▁comb": 4145,
+ "rict": 4146,
+ "▁hij": 4147,
+ "▁author": 4148,
+ "see": 4149,
+ "here": 4150,
+ "stra": 4151,
+ "▁entire": 4152,
+ "▁directly": 4153,
+ "raft": 4154,
+ "heet": 4155,
+ "ester": 4156,
+ "▁ми": 4157,
+ "▁mass": 4158,
+ "untu": 4159,
+ "▁users": 4160,
+ "chi": 4161,
+ "PE": 4162,
+ "▁component": 4163,
+ "Click": 4164,
+ "Att": 4165,
+ "▁sobre": 4166,
+ "ands": 4167,
+ "▁Hol": 4168,
+ "▁Sant": 4169,
+ "ori": 4170,
+ "▁sua": 4171,
+ "std": 4172,
+ "entic": 4173,
+ "CC": 4174,
+ "▁filter": 4175,
+ "SQL": 4176,
+ "▁God": 4177,
+ "At": 4178,
+ "▁му": 4179,
+ "▁performance": 4180,
+ "delta": 4181,
+ "ande": 4182,
+ "amer": 4183,
+ "ды": 4184,
+ "▁cult": 4185,
+ "▁Nor": 4186,
+ "but": 4187,
+ "▁lik": 4188,
+ "********": 4189,
+ "ствен": 4190,
+ "▁comme": 4191,
+ "▁dr": 4192,
+ "imer": 4193,
+ "ordin": 4194,
+ "▁condition": 4195,
+ "este": 4196,
+ "([": 4197,
+ "FF": 4198,
+ "ться": 4199,
+ "imo": 4200,
+ "rab": 4201,
+ "іль": 4202,
+ "▁half": 4203,
+ "each": 4204,
+ "Dis": 4205,
+ "▁rows": 4206,
+ "▁hon": 4207,
+ "▁together": 4208,
+ "▁și": 4209,
+ "medi": 4210,
+ "agn": 4211,
+ "alled": 4212,
+ "▁vill": 4213,
+ "ING": 4214,
+ "idden": 4215,
+ "▁draw": 4216,
+ "yntax": 4217,
+ "▁attempt": 4218,
+ "URL": 4219,
+ "pose": 4220,
+ "▁indic": 4221,
+ "ника": 4222,
+ "▁English": 4223,
+ "▁déc": 4224,
+ "▁needs": 4225,
+ "▁normal": 4226,
+ "urt": 4227,
+ "▁но": 4228,
+ "}}\\": 4229,
+ "last": 4230,
+ "▁Fin": 4231,
+ "▁Febru": 4232,
+ "ila": 4233,
+ "▁country": 4234,
+ "▁fields": 4235,
+ "▁max": 4236,
+ "lés": 4237,
+ "owie": 4238,
+ "▁deux": 4239,
+ "▁built": 4240,
+ "▁Main": 4241,
+ "▁camp": 4242,
+ "ivo": 4243,
+ "iva": 4244,
+ "icy": 4245,
+ "zione": 4246,
+ "Node": 4247,
+ "▁:)": 4248,
+ "▁among": 4249,
+ "▁Ob": 4250,
+ "▁cases": 4251,
+ "haps": 4252,
+ "sers": 4253,
+ "arter": 4254,
+ "ści": 4255,
+ "▁iter": 4256,
+ "▁named": 4257,
+ "exec": 4258,
+ "▁season": 4259,
+ "tot": 4260,
+ "=>": 4261,
+ "graph": 4262,
+ "▁nil": 4263,
+ "acional": 4264,
+ "▁NULL": 4265,
+ "▁special": 4266,
+ "сте": 4267,
+ "css": 4268,
+ "▁\\(": 4269,
+ "vs": 4270,
+ "ael": 4271,
+ "▁city": 4272,
+ "ova": 4273,
+ "▁article": 4274,
+ "▁South": 4275,
+ "Action": 4276,
+ "ça": 4277,
+ "spring": 4278,
+ "itude": 4279,
+ "▁complex": 4280,
+ "▁что": 4281,
+ "build": 4282,
+ "gamma": 4283,
+ "▁Ent": 4284,
+ "iers": 4285,
+ "'.": 4286,
+ "car": 4287,
+ "apache": 4288,
+ "ingen": 4289,
+ "Input": 4290,
+ ": ": 4291,
+ "▁dynam": 4292,
+ "alls": 4293,
+ "show": 4294,
+ "|\\": 4295,
+ "▁wird": 4296,
+ "Bar": 4297,
+ "alth": 4298,
+ "model": 4299,
+ "Trans": 4300,
+ "Row": 4301,
+ "abe": 4302,
+ "▁lib": 4303,
+ "null": 4304,
+ "ragment": 4305,
+ "▁State": 4306,
+ "▁law": 4307,
+ "Frame": 4308,
+ "▁Lo": 4309,
+ "geb": 4310,
+ "}$.": 4311,
+ "▁needed": 4312,
+ "▁contr": 4313,
+ "aries": 4314,
+ "▁screen": 4315,
+ "yr": 4316,
+ "mm": 4317,
+ "▁shown": 4318,
+ "▁bad": 4319,
+ "▁cast": 4320,
+ "▁Test": 4321,
+ "▁Auf": 4322,
+ "▁quant": 4323,
+ "iga": 4324,
+ "▁ren": 4325,
+ "▁Mac": 4326,
+ "▁transform": 4327,
+ "▁difference": 4328,
+ "▁tit": 4329,
+ "TE": 4330,
+ "▁step": 4331,
+ "▁capt": 4332,
+ "▁collection": 4333,
+ "ictionary": 4334,
+ "▁Tom": 4335,
+ "rier": 4336,
+ "▁move": 4337,
+ "cope": 4338,
+ "ords": 4339,
+ "▁further": 4340,
+ "▁columns": 4341,
+ "▁Lin": 4342,
+ "▁fixed": 4343,
+ "▁children": 4344,
+ "MS": 4345,
+ "mo": 4346,
+ "una": 4347,
+ "▁individ": 4348,
+ "tty": 4349,
+ "aste": 4350,
+ "src": 4351,
+ "match": 4352,
+ "wi": 4353,
+ "▁х": 4354,
+ "▁ди": 4355,
+ "▁ord": 4356,
+ "iving": 4357,
+ "▁Bro": 4358,
+ "▁almost": 4359,
+ "▁Pres": 4360,
+ "reci": 4361,
+ "aring": 4362,
+ "▁///": 4363,
+ "ется": 4364,
+ "▁sig": 4365,
+ "light": 4366,
+ "▁Red": 4367,
+ "▁suggest": 4368,
+ "olf": 4369,
+ "▁été": 4370,
+ "isation": 4371,
+ "зна": 4372,
+ "New": 4373,
+ "стан": 4374,
+ "LA": 4375,
+ "unicip": 4376,
+ "▁figure": 4377,
+ "mt": 4378,
+ "iale": 4379,
+ "▁catch": 4380,
+ "default": 4381,
+ "▁tele": 4382,
+ "▁matter": 4383,
+ "cast": 4384,
+ "▁Rich": 4385,
+ "▁handle": 4386,
+ "valu": 4387,
+ "$-": 4388,
+ "об": 4389,
+ "▁json": 4390,
+ "Create": 4391,
+ "▁exam": 4392,
+ "аль": 4393,
+ "ют": 4394,
+ "ored": 4395,
+ "idos": 4396,
+ "append": 4397,
+ "▁Array": 4398,
+ "кс": 4399,
+ "}[": 4400,
+ "rive": 4401,
+ "▁club": 4402,
+ "mann": 4403,
+ "▁este": 4404,
+ "esta": 4405,
+ "▁Gi": 4406,
+ "▁Jap": 4407,
+ "▁Name": 4408,
+ "Column": 4409,
+ "oups": 4410,
+ "ismo": 4411,
+ "▁City": 4412,
+ "▁classes": 4413,
+ "▁infl": 4414,
+ "hl": 4415,
+ "ром": 4416,
+ "▁adding": 4417,
+ "▁fail": 4418,
+ "xx": 4419,
+ "ões": 4420,
+ "Sc": 4421,
+ "util": 4422,
+ "▁location": 4423,
+ "lege": 4424,
+ "ago": 4425,
+ "▁properties": 4426,
+ "abil": 4427,
+ "vas": 4428,
+ "}$,": 4429,
+ "itted": 4430,
+ "ód": 4431,
+ "▁Dem": 4432,
+ "▁asked": 4433,
+ "▁tab": 4434,
+ "Source": 4435,
+ "▁errors": 4436,
+ "ographie": 4437,
+ "▁жи": 4438,
+ "▁mal": 4439,
+ "stract": 4440,
+ "▁dro": 4441,
+ "rak": 4442,
+ "▁note": 4443,
+ "▁setting": 4444,
+ "▁fem": 4445,
+ "▁saw": 4446,
+ "iar": 4447,
+ "HER": 4448,
+ "ес": 4449,
+ "▁pred": 4450,
+ "▁Out": 4451,
+ "▁items": 4452,
+ "лан": 4453,
+ "▁werd": 4454,
+ "ersion": 4455,
+ "lia": 4456,
+ "▁sin": 4457,
+ "ichte": 4458,
+ "▁feel": 4459,
+ "▁пра": 4460,
+ "▁oder": 4461,
+ "UE": 4462,
+ "ocument": 4463,
+ "▁mode": 4464,
+ "▁Na": 4465,
+ "ден": 4466,
+ "mes": 4467,
+ "framework": 4468,
+ "▁auto": 4469,
+ "ным": 4470,
+ "uby": 4471,
+ "▁template": 4472,
+ "▁mess": 4473,
+ "ieder": 4474,
+ "▁related": 4475,
+ "oken": 4476,
+ "▁follows": 4477,
+ "search": 4478,
+ "ami": 4479,
+ "▁wait": 4480,
+ "igr": 4481,
+ "▁low": 4482,
+ "ских": 4483,
+ "ская": 4484,
+ "▁Mark": 4485,
+ "▁ill": 4486,
+ "amento": 4487,
+ "\\<": 4488,
+ "▁df": 4489,
+ "osition": 4490,
+ "▁Ви": 4491,
+ "isf": 4492,
+ "▁Deutsch": 4493,
+ "ahl": 4494,
+ "war": 4495,
+ "itect": 4496,
+ "▁sal": 4497,
+ "elen": 4498,
+ "ById": 4499,
+ "▁gru": 4500,
+ "sv": 4501,
+ "▁passed": 4502,
+ "▁añ": 4503,
+ "Sch": 4504,
+ "▁solve": 4505,
+ "weise": 4506,
+ "atos": 4507,
+ "▁meg": 4508,
+ "▁member": 4509,
+ "ername": 4510,
+ "▁connect": 4511,
+ "ips": 4512,
+ "▁round": 4513,
+ "▁]": 4514,
+ "nes": 4515,
+ "▁dir": 4516,
+ "▁London": 4517,
+ "dy": 4518,
+ "FA": 4519,
+ "▁received": 4520,
+ "reet": 4521,
+ "▁Log": 4522,
+ "▁School": 4523,
+ "ango": 4524,
+ "▁These": 4525,
+ "▁Mont": 4526,
+ "▁ener": 4527,
+ "lad": 4528,
+ "▁define": 4529,
+ "sign": 4530,
+ "▁cle": 4531,
+ "figure": 4532,
+ "▁View": 4533,
+ "textbf": 4534,
+ "$\\": 4535,
+ "зы": 4536,
+ "number": 4537,
+ "▁din": 4538,
+ "eller": 4539,
+ "orithm": 4540,
+ "false": 4541,
+ "fol": 4542,
+ "fficient": 4543,
+ "▁HTML": 4544,
+ "liche": 4545,
+ "▁Mo": 4546,
+ "▁introdu": 4547,
+ "exp": 4548,
+ "▁strong": 4549,
+ "▁thus": 4550,
+ "/)": 4551,
+ "▁ele": 4552,
+ "▁так": 4553,
+ "▁па": 4554,
+ "▁dont": 4555,
+ "▁cause": 4556,
+ "Number": 4557,
+ "▁images": 4558,
+ "▁sample": 4559,
+ "▁sci": 4560,
+ "like": 4561,
+ "▁Lou": 4562,
+ "div": 4563,
+ "anc": 4564,
+ "▁front": 4565,
+ "nen": 4566,
+ "▁missing": 4567,
+ "aria": 4568,
+ "pres": 4569,
+ "▁пред": 4570,
+ "DI": 4571,
+ "filter": 4572,
+ "▁Mit": 4573,
+ "UR": 4574,
+ "▁opp": 4575,
+ "▁sql": 4576,
+ "▁року": 4577,
+ "eren": 4578,
+ "emat": 4579,
+ "ís": 4580,
+ "▁Jean": 4581,
+ "éc": 4582,
+ "▁ci": 4583,
+ "enne": 4584,
+ "atform": 4585,
+ "▁taken": 4586,
+ "▁Of": 4587,
+ "▁насе": 4588,
+ "▁err": 4589,
+ "OP": 4590,
+ "From": 4591,
+ "Default": 4592,
+ "▁General": 4593,
+ "wiki": 4594,
+ "▁grand": 4595,
+ "▁einen": 4596,
+ "Reg": 4597,
+ "Handler": 4598,
+ "conom": 4599,
+ "anger": 4600,
+ "▁был": 4601,
+ "▁Los": 4602,
+ "▁expression": 4603,
+ "ша": 4604,
+ "yal": 4605,
+ "▁$('": 4606,
+ "▁switch": 4607,
+ "▁vector": 4608,
+ "▁Thom": 4609,
+ "▁virt": 4610,
+ "leased": 4611,
+ "▁cover": 4612,
+ "▁resp": 4613,
+ "ako": 4614,
+ "rench": 4615,
+ "ota": 4616,
+ "Cell": 4617,
+ "anged": 4618,
+ "▁+=": 4619,
+ "lac": 4620,
+ "ska": 4621,
+ "next": 4622,
+ "▁International": 4623,
+ "▁Wil": 4624,
+ "▁ont": 4625,
+ "ibr": 4626,
+ "ustr": 4627,
+ "▁black": 4628,
+ "▁selected": 4629,
+ "cher": 4630,
+ "▁liter": 4631,
+ "root": 4632,
+ "лся": 4633,
+ "▁Life": 4634,
+ "▁insert": 4635,
+ "▁matrix": 4636,
+ "ises": 4637,
+ ")]": 4638,
+ "▁pel": 4639,
+ "Override": 4640,
+ "rypt": 4641,
+ "▁former": 4642,
+ "▁Film": 4643,
+ "▁North": 4644,
+ "client": 4645,
+ "▁night": 4646,
+ "ходи": 4647,
+ "▁Austral": 4648,
+ "▁Ret": 4649,
+ "rho": 4650,
+ "▁пер": 4651,
+ "ipedia": 4652,
+ "▁express": 4653,
+ "▁third": 4654,
+ "▁major": 4655,
+ "▁grad": 4656,
+ "owe": 4657,
+ "▁believe": 4658,
+ "ournal": 4659,
+ "▁status": 4660,
+ "unc": 4661,
+ "▁dou": 4662,
+ "▁JSON": 4663,
+ "uis": 4664,
+ "▁population": 4665,
+ "enz": 4666,
+ "▁William": 4667,
+ "sf": 4668,
+ "▁Object": 4669,
+ "▁cin": 4670,
+ "▁Di": 4671,
+ "curity": 4672,
+ "▁Open": 4673,
+ "▁ле": 4674,
+ "lar": 4675,
+ "adding": 4676,
+ "▁kom": 4677,
+ "}(\\": 4678,
+ "▁kil": 4679,
+ "umer": 4680,
+ "\"/>": 4681,
+ "▁feature": 4682,
+ "▁Are": 4683,
+ "cks": 4684,
+ "▁Internet": 4685,
+ "▁ih": 4686,
+ "▁started": 4687,
+ "▁early": 4688,
+ "▁began": 4689,
+ "TH": 4690,
+ "python": 4691,
+ "asp": 4692,
+ "▁Fr": 4693,
+ "▁clos": 4694,
+ "istic": 4695,
+ "▁music": 4696,
+ "▁dig": 4697,
+ "▁ital": 4698,
+ "▁David": 4699,
+ "▁website": 4700,
+ "▁controller": 4701,
+ "▁Mer": 4702,
+ "context": 4703,
+ "product": 4704,
+ "osp": 4705,
+ "▁▁▁▁▁▁▁": 4706,
+ "▁jun": 4707,
+ "rown": 4708,
+ "▁Az": 4709,
+ "\":\"": 4710,
+ "▁aan": 4711,
+ "▁Date": 4712,
+ "mult": 4713,
+ "▁browser": 4714,
+ "ред": 4715,
+ "which": 4716,
+ "RA": 4717,
+ "quare": 4718,
+ "▁Russ": 4719,
+ "▁soon": 4720,
+ "▁Pre": 4721,
+ "tau": 4722,
+ "▁week": 4723,
+ "▁ба": 4724,
+ "▁oct": 4725,
+ "▁town": 4726,
+ "roy": 4727,
+ "▁els": 4728,
+ "blic": 4729,
+ "undle": 4730,
+ "▁Histor": 4731,
+ "▁foi": 4732,
+ "▁models": 4733,
+ "зо": 4734,
+ "onym": 4735,
+ "Param": 4736,
+ "▁Met": 4737,
+ "gener": 4738,
+ "ją": 4739,
+ "▁espe": 4740,
+ "CE": 4741,
+ "▁device": 4742,
+ "ellow": 4743,
+ "▁debug": 4744,
+ "érie": 4745,
+ "using": 4746,
+ "анг": 4747,
+ "▁*)": 4748,
+ "udi": 4749,
+ "▁Miss": 4750,
+ "ком": 4751,
+ "posed": 4752,
+ "▁zwe": 4753,
+ "ін": 4754,
+ "▁Robert": 4755,
+ "▁Oct": 4756,
+ "lop": 4757,
+ "jar": 4758,
+ "▁aver": 4759,
+ "▁habit": 4760,
+ "▁::": 4761,
+ "äng": 4762,
+ "Start": 4763,
+ "▁pow": 4764,
+ "▁src": 4765,
+ "▁pattern": 4766,
+ "▁Э": 4767,
+ "▁bi": 4768,
+ "otes": 4769,
+ "▁__": 4770,
+ "▁sens": 4771,
+ "▁avoid": 4772,
+ "example": 4773,
+ "utt": 4774,
+ "Label": 4775,
+ "tex": 4776,
+ "boot": 4777,
+ "esto": 4778,
+ "▁March": 4779,
+ "▁easy": 4780,
+ "icture": 4781,
+ "Group": 4782,
+ "▁father": 4783,
+ "▁updated": 4784,
+ "▁Vo": 4785,
+ "▁III": 4786,
+ "omega": 4787,
+ "▁alle": 4788,
+ "Rec": 4789,
+ "yg": 4790,
+ "зе": 4791,
+ "▁Dim": 4792,
+ "nect": 4793,
+ "▁Tor": 4794,
+ "▁deutsch": 4795,
+ "▁white": 4796,
+ "▁national": 4797,
+ "ppe": 4798,
+ "▁air": 4799,
+ "▁password": 4800,
+ "det": 4801,
+ "▁big": 4802,
+ "▁Use": 4803,
+ "call": 4804,
+ "▁extra": 4805,
+ "We": 4806,
+ "ania": 4807,
+ "▁hold": 4808,
+ "Control": 4809,
+ "▁CO": 4810,
+ "▁мі": 4811,
+ "iti": 4812,
+ "▁Ke": 4813,
+ "enu": 4814,
+ "▁Park": 4815,
+ "том": 4816,
+ "▁auth": 4817,
+ "▁center": 4818,
+ "Ph": 4819,
+ "тов": 4820,
+ "iding": 4821,
+ "▁across": 4822,
+ "▁song": 4823,
+ "▁phys": 4824,
+ "▁numer": 4825,
+ "ща": 4826,
+ "▁Alex": 4827,
+ "▁problems": 4828,
+ "▁Error": 4829,
+ "format": 4830,
+ "▁Acc": 4831,
+ "▁six": 4832,
+ "▁db": 4833,
+ "▁Cast": 4834,
+ "oms": 4835,
+ "project": 4836,
+ "▁vert": 4837,
+ "cret": 4838,
+ "▁header": 4839,
+ "▁stream": 4840,
+ "ids": 4841,
+ "▁tor": 4842,
+ "▁sept": 4843,
+ "▁estim": 4844,
+ "▁decl": 4845,
+ "▁gave": 4846,
+ "▁player": 4847,
+ "ysis": 4848,
+ "▁дру": 4849,
+ "amm": 4850,
+ "що": 4851,
+ "▁(\"": 4852,
+ "▁ax": 4853,
+ "Property": 4854,
+ "usr": 4855,
+ "▁someone": 4856,
+ "▁impro": 4857,
+ "aden": 4858,
+ "rote": 4859,
+ "▁Ми": 4860,
+ "ih": 4861,
+ "++)": 4862,
+ "▁video": 4863,
+ "▁exists": 4864,
+ "кла": 4865,
+ "▁complete": 4866,
+ "▁session": 4867,
+ "▁constant": 4868,
+ "icos": 4869,
+ "▁pack": 4870,
+ "rome": 4871,
+ "egr": 4872,
+ "Application": 4873,
+ "▁yes": 4874,
+ "▁elle": 4875,
+ "▁email": 4876,
+ "orf": 4877,
+ "case": 4878,
+ "▁pointer": 4879,
+ "▁regard": 4880,
+ "sen": 4881,
+ "status": 4882,
+ "▁mes": 4883,
+ "▁delle": 4884,
+ "ington": 4885,
+ "▁Bas": 4886,
+ ")^": 4887,
+ "develop": 4888,
+ "▁force": 4889,
+ "▁characters": 4890,
+ "▁cross": 4891,
+ "▁death": 4892,
+ "▁takes": 4893,
+ "éri": 4894,
+ "igne": 4895,
+ "чен": 4896,
+ "UP": 4897,
+ ".:": 4898,
+ "Thread": 4899,
+ "ju": 4900,
+ "iny": 4901,
+ "▁details": 4902,
+ "▁xml": 4903,
+ "tait": 4904,
+ "output": 4905,
+ "message": 4906,
+ "''": 4907,
+ "▁British": 4908,
+ "ville": 4909,
+ "▁Div": 4910,
+ "▁User": 4911,
+ "cm": 4912,
+ "чно": 4913,
+ "column": 4914,
+ "eqref": 4915,
+ "ór": 4916,
+ "onom": 4917,
+ "▁Post": 4918,
+ "ellen": 4919,
+ "Ab": 4920,
+ "ulté": 4921,
+ "▁perfect": 4922,
+ "(){": 4923,
+ "vision": 4924,
+ "active": 4925,
+ "lier": 4926,
+ "rij": 4927,
+ "sd": 4928,
+ "▁kö": 4929,
+ "▁nie": 4930,
+ "▁relig": 4931,
+ "▁ot": 4932,
+ "▁machine": 4933,
+ "▁held": 4934,
+ ")$.": 4935,
+ "========": 4936,
+ "cker": 4937,
+ "вы": 4938,
+ "born": 4939,
+ "▁past": 4940,
+ "рия": 4941,
+ "▁Dr": 4942,
+ "▁regular": 4943,
+ "▁provided": 4944,
+ "TER": 4945,
+ "▁univers": 4946,
+ "▁gets": 4947,
+ "▁nu": 4948,
+ "▁/*": 4949,
+ "ober": 4950,
+ "fin": 4951,
+ "▁nella": 4952,
+ "▁become": 4953,
+ "▁``": 4954,
+ "▁history": 4955,
+ "▁Sol": 4956,
+ "▁Rad": 4957,
+ "▁terms": 4958,
+ "▁events": 4959,
+ "lymp": 4960,
+ ")))": 4961,
+ "рова": 4962,
+ "▁absol": 4963,
+ "▁soft": 4964,
+ "links": 4965,
+ "▁hope": 4966,
+ "▁subject": 4967,
+ "\"),": 4968,
+ "▁creating": 4969,
+ "▁}\r": 4970,
+ "▁Sk": 4971,
+ "▁flow": 4972,
+ "▁Ра": 4973,
+ "▁assert": 4974,
+ "zet": 4975,
+ "▁Frank": 4976,
+ "sa": 4977,
+ "▁distribution": 4978,
+ "cu": 4979,
+ "band": 4980,
+ "izz": 4981,
+ "▁job": 4982,
+ "iner": 4983,
+ "struct": 4984,
+ "ák": 4985,
+ "TO": 4986,
+ "auf": 4987,
+ "▁extends": 4988,
+ "▁Gra": 4989,
+ "display": 4990,
+ "▁signific": 4991,
+ "oney": 4992,
+ "source": 4993,
+ "microsoft": 4994,
+ "inder": 4995,
+ "▁quick": 4996,
+ "▁wonder": 4997,
+ "Instance": 4998,
+ "elles": 4999,
+ "ème": 5000,
+ "▁company": 5001,
+ "uß": 5002,
+ ".}": 5003,
+ "▁separate": 5004,
+ "UM": 5005,
+ "HERE": 5006,
+ "▁writing": 5007,
+ "itution": 5008,
+ "▁Gesch": 5009,
+ "мя": 5010,
+ "▁James": 5011,
+ "▁DE": 5012,
+ "▁Spe": 5013,
+ "process": 5014,
+ "Str": 5015,
+ "▁sym": 5016,
+ "▁ao": 5017,
+ "▁wy": 5018,
+ "▁anyone": 5019,
+ "▁Up": 5020,
+ "useum": 5021,
+ "aron": 5022,
+ "▁definition": 5023,
+ "▁`$": 5024,
+ "▁fav": 5025,
+ "ributes": 5026,
+ "▁Ré": 5027,
+ "ografia": 5028,
+ "element": 5029,
+ "cap": 5030,
+ "pat": 5031,
+ "▁Bra": 5032,
+ ")(": 5033,
+ "▁according": 5034,
+ "ге": 5035,
+ "▁pie": 5036,
+ "eli": 5037,
+ "}\"": 5038,
+ "▁activ": 5039,
+ "▁stop": 5040,
+ "patch": 5041,
+ "ті": 5042,
+ "▁Jose": 5043,
+ "End": 5044,
+ "▁prze": 5045,
+ "▁age": 5046,
+ "itory": 5047,
+ "▁PHP": 5048,
+ "agement": 5049,
+ "▁`.": 5050,
+ "▁pretty": 5051,
+ "▁recomm": 5052,
+ "▁sud": 5053,
+ "▁requ": 5054,
+ "▁обла": 5055,
+ "atives": 5056,
+ "▁High": 5057,
+ "áz": 5058,
+ "oul": 5059,
+ "rest": 5060,
+ "▁Ter": 5061,
+ "under": 5062,
+ "thern": 5063,
+ "center": 5064,
+ "▁ur": 5065,
+ "lat": 5066,
+ "▁interface": 5067,
+ "▁ин": 5068,
+ "▁whose": 5069,
+ "icas": 5070,
+ "amen": 5071,
+ "Filter": 5072,
+ "▁station": 5073,
+ "Page": 5074,
+ "▁arm": 5075,
+ "▁eyes": 5076,
+ "▁рай": 5077,
+ "▁seu": 5078,
+ "oli": 5079,
+ "win": 5080,
+ "lik": 5081,
+ "gex": 5082,
+ "chan": 5083,
+ "idence": 5084,
+ "args": 5085,
+ "aking": 5086,
+ "▁Google": 5087,
+ "▁Stud": 5088,
+ "▁ho": 5089,
+ "торы": 5090,
+ "Su": 5091,
+ "▁automat": 5092,
+ "ême": 5093,
+ "▁cy": 5094,
+ "lor": 5095,
+ "▁stack": 5096,
+ "▁SELECT": 5097,
+ "AF": 5098,
+ "▁>>": 5099,
+ "▁compet": 5100,
+ "▁pair": 5101,
+ "▁inglés": 5102,
+ "Response": 5103,
+ "▁Fig": 5104,
+ "grad": 5105,
+ "▁documentation": 5106,
+ "▁cant": 5107,
+ "▁appreci": 5108,
+ "ån": 5109,
+ "▁learn": 5110,
+ "▁indep": 5111,
+ "▁pal": 5112,
+ "package": 5113,
+ "ares": 5114,
+ "▁Berlin": 5115,
+ "бли": 5116,
+ "reich": 5117,
+ "ён": 5118,
+ "▁satisf": 5119,
+ "▁region": 5120,
+ "▁friend": 5121,
+ "▁George": 5122,
+ "▁Во": 5123,
+ "▁\"\"": 5124,
+ "▁desde": 5125,
+ "Factory": 5126,
+ "▁County": 5127,
+ "ouv": 5128,
+ "▁‘": 5129,
+ "▁installed": 5130,
+ "▁wanted": 5131,
+ "▁Python": 5132,
+ "▁interpre": 5133,
+ "▁included": 5134,
+ "▁((": 5135,
+ "▁altern": 5136,
+ "isto": 5137,
+ "gn": 5138,
+ "▁border": 5139,
+ "pdf": 5140,
+ "▁dup": 5141,
+ "▁download": 5142,
+ "just": 5143,
+ "▁members": 5144,
+ "child": 5145,
+ "▁pay": 5146,
+ "▁cer": 5147,
+ "▁looked": 5148,
+ "▁correctly": 5149,
+ "auth": 5150,
+ "▁стан": 5151,
+ "▁esp": 5152,
+ "▁desc": 5153,
+ "eben": 5154,
+ "▁questions": 5155,
+ "mal": 5156,
+ "▁abgerufen": 5157,
+ "▁Band": 5158,
+ "▁[]": 5159,
+ "Base": 5160,
+ "▁ris": 5161,
+ "▁fort": 5162,
+ "▁Id": 5163,
+ "▁various": 5164,
+ "▁League": 5165,
+ "▁Hand": 5166,
+ "▁Type": 5167,
+ "irl": 5168,
+ "▁Fe": 5169,
+ "ién": 5170,
+ "itter": 5171,
+ "▁fast": 5172,
+ "sta": 5173,
+ "▁except": 5174,
+ "icz": 5175,
+ "▁French": 5176,
+ "▁environment": 5177,
+ "▁conse": 5178,
+ "ур": 5179,
+ "ого": 5180,
+ "▁necessary": 5181,
+ "target": 5182,
+ "▁reading": 5183,
+ "home": 5184,
+ "zeich": 5185,
+ "▁equal": 5186,
+ "▁più": 5187,
+ "▁prem": 5188,
+ "▁difficult": 5189,
+ "▁unit": 5190,
+ "▁replace": 5191,
+ "▁heart": 5192,
+ "▁talk": 5193,
+ "AM": 5194,
+ "▁RE": 5195,
+ "▁Person": 5196,
+ "endency": 5197,
+ "▁imm": 5198,
+ "▁human": 5199,
+ "dn": 5200,
+ "▁Kir": 5201,
+ "▁Aut": 5202,
+ "known": 5203,
+ "▁frequ": 5204,
+ "system": 5205,
+ "лав": 5206,
+ "▁Sz": 5207,
+ "▁Gal": 5208,
+ "ное": 5209,
+ "selves": 5210,
+ "rightarrow": 5211,
+ "▁Са": 5212,
+ "=\"@": 5213,
+ "▁building": 5214,
+ "import": 5215,
+ "▁fam": 5216,
+ "▁delete": 5217,
+ "aire": 5218,
+ "mary": 5219,
+ "▁fund": 5220,
+ "▁particip": 5221,
+ "▁syn": 5222,
+ "sin": 5223,
+ "▁lower": 5224,
+ "▁zero": 5225,
+ "▁sec": 5226,
+ "▁fra": 5227,
+ "Point": 5228,
+ "▁failed": 5229,
+ "iento": 5230,
+ "cup": 5231,
+ "▁slow": 5232,
+ "▁nation": 5233,
+ "ähr": 5234,
+ "▁info": 5235,
+ "▁Public": 5236,
+ "▁decla": 5237,
+ "▁Та": 5238,
+ "▁sold": 5239,
+ "▁Rem": 5240,
+ "▁Phil": 5241,
+ "стра": 5242,
+ "▁mehr": 5243,
+ "▁Work": 5244,
+ "▁Nord": 5245,
+ "▁fait": 5246,
+ "▁gew": 5247,
+ "println": 5248,
+ "obile": 5249,
+ "▁Kon": 5250,
+ "▁assume": 5251,
+ "lands": 5252,
+ "▁amount": 5253,
+ "▁Press": 5254,
+ "ých": 5255,
+ "▁maxim": 5256,
+ "▁Champion": 5257,
+ "library": 5258,
+ "añ": 5259,
+ "▁Wal": 5260,
+ "Comm": 5261,
+ "]]": 5262,
+ "▁zw": 5263,
+ "▁social": 5264,
+ "LI": 5265,
+ "▁Unter": 5266,
+ "vor": 5267,
+ "Delta": 5268,
+ "email": 5269,
+ "raint": 5270,
+ "oni": 5271,
+ "▁alt": 5272,
+ "▁né": 5273,
+ "ция": 5274,
+ "ography": 5275,
+ "▁mentioned": 5276,
+ "▁<=": 5277,
+ "▁cette": 5278,
+ "▁currently": 5279,
+ "vare": 5280,
+ "izing": 5281,
+ "▁Def": 5282,
+ "icol": 5283,
+ "ünd": 5284,
+ "▁configuration": 5285,
+ "estig": 5286,
+ "III": 5287,
+ "lam": 5288,
+ "ière": 5289,
+ "▁Ear": 5290,
+ "▁tu": 5291,
+ "Ent": 5292,
+ "▁Using": 5293,
+ "▁ком": 5294,
+ "cie": 5295,
+ "▁proof": 5296,
+ "▁invol": 5297,
+ "▁History": 5298,
+ "><": 5299,
+ "▁AND": 5300,
+ "avy": 5301,
+ "▁relations": 5302,
+ "${": 5303,
+ "▁comes": 5304,
+ "▁direction": 5305,
+ "▁June": 5306,
+ "▁Way": 5307,
+ "Component": 5308,
+ "ech": 5309,
+ "▁Peter": 5310,
+ "sg": 5311,
+ "▁stra": 5312,
+ "uct": 5313,
+ "▁implementation": 5314,
+ "attle": 5315,
+ "▁cz": 5316,
+ "plot": 5317,
+ "▁played": 5318,
+ "\">": 5319,
+ "▁five": 5320,
+ "▁coll": 5321,
+ "▁Charles": 5322,
+ "Tra": 5323,
+ "▁suo": 5324,
+ "files": 5325,
+ "entes": 5326,
+ "response": 5327,
+ "How": 5328,
+ "▁Soci": 5329,
+ "▁ign": 5330,
+ "▁led": 5331,
+ "▁German": 5332,
+ "udo": 5333,
+ "▁Du": 5334,
+ "▁tim": 5335,
+ "ounter": 5336,
+ "▁attack": 5337,
+ "uri": 5338,
+ "▁ар": 5339,
+ "esse": 5340,
+ "ivil": 5341,
+ "▁Ju": 5342,
+ "▁vel": 5343,
+ "matrix": 5344,
+ "▁Mat": 5345,
+ "gio": 5346,
+ "▁Zeit": 5347,
+ "VER": 5348,
+ "has": 5349,
+ "Connection": 5350,
+ "▁ihr": 5351,
+ "▁attribute": 5352,
+ "▁discuss": 5353,
+ "▁domain": 5354,
+ "bind": 5355,
+ "▁Sec": 5356,
+ "rik": 5357,
+ "close": 5358,
+ "gin": 5359,
+ "▁love": 5360,
+ "anto": 5361,
+ "gent": 5362,
+ "aba": 5363,
+ "jango": 5364,
+ "bi": 5365,
+ "▁obser": 5366,
+ "itting": 5367,
+ "▁ру": 5368,
+ "}=": 5369,
+ "agen": 5370,
+ "BC": 5371,
+ "some": 5372,
+ "▁Bu": 5373,
+ "▁soci": 5374,
+ "▁individual": 5375,
+ "▁deal": 5376,
+ "▁outside": 5377,
+ "rio": 5378,
+ "Exec": 5379,
+ "andid": 5380,
+ "▁business": 5381,
+ "▁tempor": 5382,
+ "▁Tur": 5383,
+ "▁(!": 5384,
+ "riter": 5385,
+ "▁google": 5386,
+ "]:": 5387,
+ "itte": 5388,
+ "xi": 5389,
+ "▁Па": 5390,
+ "hol": 5391,
+ "нь": 5392,
+ "ring": 5393,
+ "▁sul": 5394,
+ "ности": 5395,
+ "_.": 5396,
+ "gar": 5397,
+ "Task": 5398,
+ "▁Check": 5399,
+ "▁modern": 5400,
+ "▁win": 5401,
+ "uster": 5402,
+ "han": 5403,
+ "formation": 5404,
+ "void": 5405,
+ "▁фи": 5406,
+ "▁useful": 5407,
+ "▁England": 5408,
+ "los": 5409,
+ "etime": 5410,
+ "eur": 5411,
+ "▁unique": 5412,
+ "▁как": 5413,
+ "ying": 5414,
+ "obj": 5415,
+ "uid": 5416,
+ "▁windows": 5417,
+ "▁distance": 5418,
+ "▁nombre": 5419,
+ "ія": 5420,
+ "ocus": 5421,
+ "ahn": 5422,
+ "ierte": 5423,
+ "▁dar": 5424,
+ "SI": 5425,
+ "long": 5426,
+ "asta": 5427,
+ "iven": 5428,
+ "▁told": 5429,
+ "▁Gru": 5430,
+ "foo": 5431,
+ "▁calling": 5432,
+ "iembre": 5433,
+ "▁future": 5434,
+ "près": 5435,
+ "leep": 5436,
+ "avigation": 5437,
+ "POST": 5438,
+ "▁described": 5439,
+ "▁noch": 5440,
+ "unit": 5441,
+ "allen": 5442,
+ "▁branch": 5443,
+ "fa": 5444,
+ "▁fill": 5445,
+ "▁obj": 5446,
+ "▁tree": 5447,
+ "▁wurden": 5448,
+ "▁Liter": 5449,
+ "rot": 5450,
+ "split": 5451,
+ "emein": 5452,
+ "module": 5453,
+ "CA": 5454,
+ "▁operator": 5455,
+ "▁wrote": 5456,
+ "▁Jack": 5457,
+ "ologie": 5458,
+ "▁Ant": 5459,
+ "тер": 5460,
+ "stream": 5461,
+ "▁Que": 5462,
+ "epsilon": 5463,
+ "non": 5464,
+ "stein": 5465,
+ "▁simpl": 5466,
+ "pub": 5467,
+ "▁July": 5468,
+ "▁nature": 5469,
+ "▁Database": 5470,
+ "ól": 5471,
+ "ним": 5472,
+ "▁VI": 5473,
+ "être": 5474,
+ "iles": 5475,
+ "▁wel": 5476,
+ "'),": 5477,
+ "▁mut": 5478,
+ "location": 5479,
+ "▁therefore": 5480,
+ "elli": 5481,
+ "▁І": 5482,
+ "né": 5483,
+ "▁ав": 5484,
+ "ledge": 5485,
+ "▁conver": 5486,
+ "ím": 5487,
+ "▁XV": 5488,
+ "vider": 5489,
+ "▁January": 5490,
+ "▁usually": 5491,
+ "▁released": 5492,
+ "▁Mi": 5493,
+ "Head": 5494,
+ "iller": 5495,
+ "▁jan": 5496,
+ "▁letter": 5497,
+ "produ": 5498,
+ "rd": 5499,
+ "▁Cam": 5500,
+ ",'": 5501,
+ "▁Ц": 5502,
+ "▁push": 5503,
+ "update": 5504,
+ "▁maybe": 5505,
+ "Http": 5506,
+ "@\"": 5507,
+ "мер": 5508,
+ "service": 5509,
+ "parse": 5510,
+ "▁dass": 5511,
+ "ên": 5512,
+ ")\"": 5513,
+ "more": 5514,
+ "/*": 5515,
+ "▁mas": 5516,
+ "▁likely": 5517,
+ "▁material": 5518,
+ "▁[[": 5519,
+ "▁longer": 5520,
+ "bal": 5521,
+ "▁Archiv": 5522,
+ "igt": 5523,
+ "▁egy": 5524,
+ "idge": 5525,
+ "igu": 5526,
+ "conf": 5527,
+ "▁inc": 5528,
+ "consulté": 5529,
+ "▁mai": 5530,
+ "Work": 5531,
+ "▁гра": 5532,
+ "▁October": 5533,
+ "▁global": 5534,
+ "▁sel": 5535,
+ "▁municip": 5536,
+ "▁viol": 5537,
+ "▁Does": 5538,
+ "▁\\[": 5539,
+ "ском": 5540,
+ "▁compos": 5541,
+ "бря": 5542,
+ "вя": 5543,
+ "▁respons": 5544,
+ "▁considered": 5545,
+ "▁Japan": 5546,
+ "pes": 5547,
+ "osto": 5548,
+ "▁milit": 5549,
+ "SP": 5550,
+ "сы": 5551,
+ "attr": 5552,
+ "cil": 5553,
+ "irectory": 5554,
+ "aving": 5555,
+ "▁Del": 5556,
+ "▁prevent": 5557,
+ "idade": 5558,
+ "git": 5559,
+ "iform": 5560,
+ "outer": 5561,
+ "inct": 5562,
+ "level": 5563,
+ "atever": 5564,
+ "▁repe": 5565,
+ "▁exc": 5566,
+ "дар": 5567,
+ "Style": 5568,
+ "▁Thomas": 5569,
+ "eline": 5570,
+ "▁ж": 5571,
+ "untime": 5572,
+ "▁larg": 5573,
+ "True": 5574,
+ ".*": 5575,
+ "creen": 5576,
+ "yles": 5577,
+ "▁transl": 5578,
+ "▁Со": 5579,
+ "ensions": 5580,
+ "äl": 5581,
+ "isse": 5582,
+ "▁volt": 5583,
+ "cially": 5584,
+ "nik": 5585,
+ ".]": 5586,
+ "▁Stadt": 5587,
+ "мы": 5588,
+ "fill": 5589,
+ "lov": 5590,
+ "▁\"/": 5591,
+ "Sp": 5592,
+ "▁Air": 5593,
+ "Call": 5594,
+ "▁nur": 5595,
+ "Check": 5596,
+ "ience": 5597,
+ "efined": 5598,
+ "▁вре": 5599,
+ "ło": 5600,
+ "dz": 5601,
+ "▁ор": 5602,
+ "iker": 5603,
+ "owa": 5604,
+ "ович": 5605,
+ "ré": 5606,
+ "OL": 5607,
+ "▁linear": 5608,
+ "▁export": 5609,
+ "ahr": 5610,
+ "icial": 5611,
+ "Rep": 5612,
+ "▁natural": 5613,
+ "▁cop": 5614,
+ "▁})": 5615,
+ "ções": 5616,
+ "zz": 5617,
+ "What": 5618,
+ "▁House": 5619,
+ "Ref": 5620,
+ "inger": 5621,
+ "▁taking": 5622,
+ "ně": 5623,
+ "▁Einz": 5624,
+ "▁dam": 5625,
+ "▁issues": 5626,
+ "Builder": 5627,
+ "edit": 5628,
+ "▁prz": 5629,
+ "password": 5630,
+ "Gener": 5631,
+ "rim": 5632,
+ "▁parts": 5633,
+ "---": 5634,
+ "iginal": 5635,
+ "▁Sci": 5636,
+ "▁mother": 5637,
+ "rea": 5638,
+ "▁container": 5639,
+ "дя": 5640,
+ "▁IP": 5641,
+ "▁none": 5642,
+ "▁followed": 5643,
+ "▁ple": 5644,
+ "▁measure": 5645,
+ "▁tout": 5646,
+ "Ext": 5647,
+ "▁TV": 5648,
+ "▁explain": 5649,
+ "▁paper": 5650,
+ "сті": 5651,
+ "ws": 5652,
+ "Wik": 5653,
+ "▁mm": 5654,
+ "▁Norm": 5655,
+ "▁Server": 5656,
+ "font": 5657,
+ "ecause": 5658,
+ "TR": 5659,
+ "▁би": 5660,
+ "La": 5661,
+ "▁ens": 5662,
+ "▁retr": 5663,
+ "▁Sil": 5664,
+ "▁sequence": 5665,
+ "arc": 5666,
+ "IV": 5667,
+ "zá": 5668,
+ "▁Android": 5669,
+ "▁Super": 5670,
+ "▁roz": 5671,
+ "ovie": 5672,
+ "Om": 5673,
+ "▁Well": 5674,
+ "make": 5675,
+ "orph": 5676,
+ "▁Jer": 5677,
+ "▁Ros": 5678,
+ "reference": 5679,
+ "▁features": 5680,
+ "▁Ger": 5681,
+ "▁Leg": 5682,
+ "▁late": 5683,
+ "▁additional": 5684,
+ "▁flo": 5685,
+ "▁его": 5686,
+ "▁algorithm": 5687,
+ "BA": 5688,
+ "kar": 5689,
+ "IP": 5690,
+ "]);": 5691,
+ "▁appears": 5692,
+ "yw": 5693,
+ "▁temp": 5694,
+ "▁aussi": 5695,
+ "method": 5696,
+ "▁pet": 5697,
+ "strap": 5698,
+ "arning": 5699,
+ "▁cut": 5700,
+ "▁Sa": 5701,
+ "▁track": 5702,
+ "▁employ": 5703,
+ "▁inde": 5704,
+ "rav": 5705,
+ "▁generate": 5706,
+ "bes": 5707,
+ "arts": 5708,
+ "Status": 5709,
+ "uge": 5710,
+ "alis": 5711,
+ "▁override": 5712,
+ "▁fi": 5713,
+ "▁lost": 5714,
+ "oted": 5715,
+ "▁room": 5716,
+ "▁calls": 5717,
+ "▁consist": 5718,
+ "рен": 5719,
+ "▁village": 5720,
+ "dist": 5721,
+ "▁techn": 5722,
+ "enza": 5723,
+ "▁роз": 5724,
+ "▁Catalog": 5725,
+ "▁becom": 5726,
+ "rows": 5727,
+ "▁Nel": 5728,
+ "comple": 5729,
+ "▁premi": 5730,
+ "▁rot": 5731,
+ "▁Weblinks": 5732,
+ "▁football": 5733,
+ "▁compar": 5734,
+ "▁live": 5735,
+ "ких": 5736,
+ "▁equival": 5737,
+ "cape": 5738,
+ "▁Gen": 5739,
+ "nder": 5740,
+ "▁Vis": 5741,
+ "▁behind": 5742,
+ "gers": 5743,
+ "voke": 5744,
+ "▁media": 5745,
+ "EX": 5746,
+ "that": 5747,
+ "▁sono": 5748,
+ "▁mysql": 5749,
+ "ev": 5750,
+ "▁rule": 5751,
+ "дов": 5752,
+ "acc": 5753,
+ "▁WHERE": 5754,
+ "ене": 5755,
+ "Grid": 5756,
+ "▁jul": 5757,
+ "▁mort": 5758,
+ "▁generated": 5759,
+ "encia": 5760,
+ "acter": 5761,
+ "clud": 5762,
+ "▁scen": 5763,
+ "▁closed": 5764,
+ "▁Michael": 5765,
+ "▁mount": 5766,
+ ")$,": 5767,
+ "▁drop": 5768,
+ "▁combin": 5769,
+ "tocol": 5770,
+ "▁goes": 5771,
+ "▁geb": 5772,
+ "MD": 5773,
+ "▁Anton": 5774,
+ "▁$(\"": 5775,
+ "Tem": 5776,
+ "▁ca": 5777,
+ "▁instru": 5778,
+ "eds": 5779,
+ "▁tool": 5780,
+ "mys": 5781,
+ "▁route": 5782,
+ "\"))": 5783,
+ "пре": 5784,
+ "▁float": 5785,
+ "▁services": 5786,
+ "▁чи": 5787,
+ "кі": 5788,
+ "embly": 5789,
+ "aker": 5790,
+ "▁Son": 5791,
+ "▁Math": 5792,
+ "asse": 5793,
+ "ously": 5794,
+ "lications": 5795,
+ "▁ru": 5796,
+ "▁що": 5797,
+ "▁Const": 5798,
+ "▁immedi": 5799,
+ "FO": 5800,
+ "oro": 5801,
+ "▁production": 5802,
+ "rei": 5803,
+ "▁jquery": 5804,
+ "annt": 5805,
+ "▁While": 5806,
+ "▁sn": 5807,
+ "▁годи": 5808,
+ "Format": 5809,
+ "▁star": 5810,
+ "▁Sen": 5811,
+ "▁ko": 5812,
+ "NAME": 5813,
+ "▁prés": 5814,
+ "cha": 5815,
+ "what": 5816,
+ "omin": 5817,
+ "endant": 5818,
+ "hy": 5819,
+ "▁observ": 5820,
+ "▁prefer": 5821,
+ "ун": 5822,
+ "▁constructor": 5823,
+ "bs": 5824,
+ "▁mac": 5825,
+ "▁Bre": 5826,
+ "▁Instit": 5827,
+ "▁story": 5828,
+ "▁symbol": 5829,
+ "eles": 5830,
+ "ße": 5831,
+ "asing": 5832,
+ "▁west": 5833,
+ "ians": 5834,
+ "▁master": 5835,
+ "ез": 5836,
+ "▁ways": 5837,
+ "bm": 5838,
+ "▁pick": 5839,
+ "▁depart": 5840,
+ "Back": 5841,
+ "enk": 5842,
+ "lipse": 5843,
+ "▁math": 5844,
+ "▁Francis": 5845,
+ "▁December": 5846,
+ "fs": 5847,
+ "rum": 5848,
+ "▁development": 5849,
+ "LT": 5850,
+ "ernel": 5851,
+ "▁True": 5852,
+ "▁More": 5853,
+ "rangle": 5854,
+ "▁conditions": 5855,
+ "Options": 5856,
+ "▁gli": 5857,
+ "▁operation": 5858,
+ "ék": 5859,
+ "acht": 5860,
+ "ights": 5861,
+ "▁mist": 5862,
+ "anda": 5863,
+ "▁energy": 5864,
+ "▁же": 5865,
+ "▁women": 5866,
+ "akt": 5867,
+ "▁CH": 5868,
+ "gebra": 5869,
+ "▁meet": 5870,
+ "iu": 5871,
+ "well": 5872,
+ "öl": 5873,
+ "▁government": 5874,
+ "▁Jos": 5875,
+ "ieg": 5876,
+ "▁syntax": 5877,
+ "fix": 5878,
+ "▁Pet": 5879,
+ "jquery": 5880,
+ "▁card": 5881,
+ "▁principal": 5882,
+ "▁dru": 5883,
+ "▁territ": 5884,
+ "▁пов": 5885,
+ "▁SS": 5886,
+ "рии": 5887,
+ "tres": 5888,
+ "agne": 5889,
+ "lying": 5890,
+ "tilde": 5891,
+ "bern": 5892,
+ "enter": 5893,
+ "Per": 5894,
+ "▁somet": 5895,
+ "Load": 5896,
+ "lice": 5897,
+ "▁sous": 5898,
+ "▁Louis": 5899,
+ "▁logic": 5900,
+ "▁Other": 5901,
+ "▁cir": 5902,
+ "év": 5903,
+ "chron": 5904,
+ "▁han": 5905,
+ "▁margin": 5906,
+ "Window": 5907,
+ "ères": 5908,
+ "nych": 5909,
+ "push": 5910,
+ "bolds": 5911,
+ "▁layout": 5912,
+ "▁[`": 5913,
+ "Char": 5914,
+ "▁Cap": 5915,
+ "boldsymbol": 5916,
+ "▁Roman": 5917,
+ "▁Max": 5918,
+ ":(": 5919,
+ "▁Code": 5920,
+ "ising": 5921,
+ "▁states": 5922,
+ "▁existing": 5923,
+ "support": 5924,
+ "▁research": 5925,
+ "licate": 5926,
+ "vari": 5927,
+ "▁bij": 5928,
+ "▁appe": 5929,
+ "▁happens": 5930,
+ "\\\"": 5931,
+ "▁concern": 5932,
+ "west": 5933,
+ "▁saying": 5934,
+ "pid": 5935,
+ "▁recogn": 5936,
+ "▁Het": 5937,
+ "Child": 5938,
+ "▁cs": 5939,
+ "\\,": 5940,
+ "▁clean": 5941,
+ "lections": 5942,
+ "access": 5943,
+ "ву": 5944,
+ "про": 5945,
+ "acity": 5946,
+ "▁Off": 5947,
+ "▁easily": 5948,
+ "èque": 5949,
+ "▁jako": 5950,
+ "▁iz": 5951,
+ "▁Ha": 5952,
+ "▁Det": 5953,
+ "▁forma": 5954,
+ "sche": 5955,
+ "swers": 5956,
+ "▁offer": 5957,
+ "quired": 5958,
+ "Users": 5959,
+ "▁subst": 5960,
+ ">(": 5961,
+ "▁ground": 5962,
+ "unn": 5963,
+ "rod": 5964,
+ "spe": 5965,
+ "ursor": 5966,
+ "▁leave": 5967,
+ "erk": 5968,
+ "▁tal": 5969,
+ "▁bottom": 5970,
+ "IO": 5971,
+ "▁popular": 5972,
+ "igo": 5973,
+ "▁Time": 5974,
+ "values": 5975,
+ "▁Loc": 5976,
+ "▁Club": 5977,
+ "▁anche": 5978,
+ "iał": 5979,
+ "ії": 5980,
+ "Omega": 5981,
+ "▁located": 5982,
+ "Url": 5983,
+ "▁Esp": 5984,
+ "лы": 5985,
+ "ць": 5986,
+ "ulate": 5987,
+ "▁join": 5988,
+ "aves": 5989,
+ "vet": 5990,
+ "lio": 5991,
+ "remove": 5992,
+ "▁token": 5993,
+ "▁optim": 5994,
+ "▁claim": 5995,
+ "ological": 5996,
+ "▁css": 5997,
+ "▁although": 5998,
+ "▁priv": 5999,
+ "▁Ba": 6000,
+ "ül": 6001,
+ "entication": 6002,
+ "▁ven": 6003,
+ "Server": 6004,
+ "▁Cong": 6005,
+ "NET": 6006,
+ "CON": 6007,
+ "dt": 6008,
+ "perties": 6009,
+ "▁epis": 6010,
+ "wikipedia": 6011,
+ "▁engine": 6012,
+ "▁fer": 6013,
+ "getElement": 6014,
+ "▁Cla": 6015,
+ "ří": 6016,
+ "▁rom": 6017,
+ "varepsilon": 6018,
+ "▁prime": 6019,
+ "istry": 6020,
+ "pected": 6021,
+ "orage": 6022,
+ "▁touch": 6023,
+ "▁['": 6024,
+ "▁dan": 6025,
+ "Em": 6026,
+ "aciones": 6027,
+ "Can": 6028,
+ "▁whom": 6029,
+ "▁behavior": 6030,
+ "▁strings": 6031,
+ "▁Europ": 6032,
+ "▁Rom": 6033,
+ "circ": 6034,
+ "▁pun": 6035,
+ "▁register": 6036,
+ "buntu": 6037,
+ "rain": 6038,
+ "Ob": 6039,
+ "TA": 6040,
+ "▁sometimes": 6041,
+ "▁ment": 6042,
+ "▁integer": 6043,
+ "▁Jac": 6044,
+ "legate": 6045,
+ "othing": 6046,
+ "▁sound": 6047,
+ "laces": 6048,
+ "▁Ба": 6049,
+ "rb": 6050,
+ "di": 6051,
+ "ления": 6052,
+ "▁themselves": 6053,
+ "▁Black": 6054,
+ "▁settings": 6055,
+ "▁norm": 6056,
+ "▁runs": 6057,
+ "▁NOT": 6058,
+ "KE": 6059,
+ "▁perhaps": 6060,
+ "▁Я": 6061,
+ "▁mol": 6062,
+ "▁ans": 6063,
+ "atre": 6064,
+ "▁Dies": 6065,
+ "Token": 6066,
+ "anie": 6067,
+ "▁allowed": 6068,
+ "Range": 6069,
+ "▁Gro": 6070,
+ "via": 6071,
+ "utorial": 6072,
+ "ensor": 6073,
+ "estival": 6074,
+ ");\r": 6075,
+ "краї": 6076,
+ "▁turned": 6077,
+ "scope": 6078,
+ "▁bien": 6079,
+ "=$": 6080,
+ "▁extension": 6081,
+ "atore": 6082,
+ "▁Ро": 6083,
+ "▁specify": 6084,
+ "edu": 6085,
+ "Datos": 6086,
+ "▁stored": 6087,
+ "▁parse": 6088,
+ "▁answers": 6089,
+ "ills": 6090,
+ "▁heard": 6091,
+ "lu": 6092,
+ "▁THE": 6093,
+ "▁gén": 6094,
+ "▁ful": 6095,
+ "ez": 6096,
+ "▁Prem": 6097,
+ "then": 6098,
+ "dp": 6099,
+ "ського": 6100,
+ "▁Si": 6101,
+ "ço": 6102,
+ "Edit": 6103,
+ "ків": 6104,
+ "▁Ли": 6105,
+ "▁Sing": 6106,
+ "▁categ": 6107,
+ "Equ": 6108,
+ "▁guer": 6109,
+ "Width": 6110,
+ "▁Christian": 6111,
+ "stat": 6112,
+ "Write": 6113,
+ "▁woman": 6114,
+ "wood": 6115,
+ "Vis": 6116,
+ "раз": 6117,
+ "▁$$\\": 6118,
+ "oder": 6119,
+ "▁bool": 6120,
+ "▁international": 6121,
+ "ность": 6122,
+ "▁Richard": 6123,
+ "▁addition": 6124,
+ "▁Music": 6125,
+ "▁aber": 6126,
+ "tó": 6127,
+ "▁hier": 6128,
+ "ugh": 6129,
+ "▁pob": 6130,
+ "▁tables": 6131,
+ "Do": 6132,
+ "▁higher": 6133,
+ "psi": 6134,
+ "rá": 6135,
+ "▁active": 6136,
+ "▁Table": 6137,
+ "ње": 6138,
+ "▁description": 6139,
+ "▁seemed": 6140,
+ "íst": 6141,
+ "▁myself": 6142,
+ "▁menu": 6143,
+ "del": 6144,
+ "▁ž": 6145,
+ "ele": 6146,
+ "Aut": 6147,
+ "▁гру": 6148,
+ "mut": 6149,
+ "oon": 6150,
+ "asc": 6151,
+ "bug": 6152,
+ "▁moved": 6153,
+ "CL": 6154,
+ "▁datas": 6155,
+ "SO": 6156,
+ "оло": 6157,
+ "▁Georg": 6158,
+ "▁reach": 6159,
+ ":\"": 6160,
+ "▁evalu": 6161,
+ "▁Hel": 6162,
+ "▁River": 6163,
+ "▁Ар": 6164,
+ "////": 6165,
+ "▁sets": 6166,
+ "▁Olymp": 6167,
+ "Adapter": 6168,
+ ".'": 6169,
+ "overn": 6170,
+ "▁Lord": 6171,
+ "!--": 6172,
+ "jpg": 6173,
+ "imento": 6174,
+ "▁Prof": 6175,
+ "▁achieve": 6176,
+ "}:": 6177,
+ "▁incor": 6178,
+ "▁onder": 6179,
+ "engl": 6180,
+ "ABLE": 6181,
+ "▁Mary": 6182,
+ "▁waren": 6183,
+ "lage": 6184,
+ "Dec": 6185,
+ "англ": 6186,
+ "encias": 6187,
+ "лей": 6188,
+ "▁Machine": 6189,
+ "▁Ан": 6190,
+ "uda": 6191,
+ "▁ś": 6192,
+ "▁XX": 6193,
+ "only": 6194,
+ "ление": 6195,
+ "▁también": 6196,
+ "nej": 6197,
+ "▁relative": 6198,
+ "▁hours": 6199,
+ "▁indeed": 6200,
+ "undo": 6201,
+ "ingu": 6202,
+ "area": 6203,
+ "▁Create": 6204,
+ "beit": 6205,
+ "▁removed": 6206,
+ "master": 6207,
+ "haus": 6208,
+ "▁Bern": 6209,
+ "▁speed": 6210,
+ "▁Bay": 6211,
+ "▁Att": 6212,
+ "▁None": 6213,
+ "application": 6214,
+ "üd": 6215,
+ "▁fit": 6216,
+ "▁Maria": 6217,
+ "▁nord": 6218,
+ "▁split": 6219,
+ "▁stru": 6220,
+ "▁official": 6221,
+ "▁execute": 6222,
+ "ouve": 6223,
+ "{{": 6224,
+ "▁Ap": 6225,
+ "▁ку": 6226,
+ "IL": 6227,
+ "▁^": 6228,
+ "dim": 6229,
+ "▁setup": 6230,
+ "ск": 6231,
+ "▁share": 6232,
+ "▁minutes": 6233,
+ "gle": 6234,
+ "oco": 6235,
+ "stell": 6236,
+ "▁Coun": 6237,
+ "▁temper": 6238,
+ "keit": 6239,
+ "ський": 6240,
+ "ao": 6241,
+ "▁Long": 6242,
+ "(&": 6243,
+ "кан": 6244,
+ "▁dens": 6245,
+ "But": 6246,
+ "XX": 6247,
+ "DATE": 6248,
+ "gan": 6249,
+ ".).": 6250,
+ "▁entry": 6251,
+ "install": 6252,
+ "▁зна": 6253,
+ "▁Som": 6254,
+ "Command": 6255,
+ "ßen": 6256,
+ "▁starting": 6257,
+ "▁sto": 6258,
+ "IG": 6259,
+ "▁minim": 6260,
+ "▁explicit": 6261,
+ "▁bytes": 6262,
+ "▁party": 6263,
+ "tober": 6264,
+ "▁Grand": 6265,
+ "▁Vor": 6266,
+ "▁leur": 6267,
+ "Document": 6268,
+ "erc": 6269,
+ "ensive": 6270,
+ "CP": 6271,
+ "env": 6272,
+ "▁arguments": 6273,
+ "▁Gran": 6274,
+ "arily": 6275,
+ "▁lin": 6276,
+ "tn": 6277,
+ "(-": 6278,
+ "geq": 6279,
+ "▁Famil": 6280,
+ "▁Бо": 6281,
+ "▁tour": 6282,
+ "▁nav": 6283,
+ "▁properly": 6284,
+ "▁Mrs": 6285,
+ "▁Mel": 6286,
+ "▁scale": 6287,
+ "astic": 6288,
+ "ds": 6289,
+ "▁Sir": 6290,
+ "▁Church": 6291,
+ "}^{\\": 6292,
+ "you": 6293,
+ "/.": 6294,
+ "So": 6295,
+ "▁brought": 6296,
+ "▁role": 6297,
+ "▁Sur": 6298,
+ "▁fond": 6299,
+ "▁ges": 6300,
+ "że": 6301,
+ "eten": 6302,
+ "▁était": 6303,
+ "SER": 6304,
+ "▁которы": 6305,
+ "▁equation": 6306,
+ "aspx": 6307,
+ "▁Afr": 6308,
+ "▁dit": 6309,
+ "empty": 6310,
+ "alement": 6311,
+ "wrap": 6312,
+ "▁Bet": 6313,
+ "▁collect": 6314,
+ "▁git": 6315,
+ "▁vie": 6316,
+ "▁..": 6317,
+ "рой": 6318,
+ "▁": 6319,
+ "▁educ": 6320,
+ "kl": 6321,
+ "ensis": 6322,
+ "▁OR": 6323,
+ "▁Hi": 6324,
+ "▁Cour": 6325,
+ "бы": 6326,
+ "cert": 6327,
+ "▁Ges": 6328,
+ "essor": 6329,
+ "Main": 6330,
+ "▁лю": 6331,
+ "cade": 6332,
+ "dot": 6333,
+ "augh": 6334,
+ "hib": 6335,
+ "▁automatically": 6336,
+ "▁spir": 6337,
+ "present": 6338,
+ "▁February": 6339,
+ "▁Elle": 6340,
+ "custom": 6341,
+ "▁proget": 6342,
+ "▁administr": 6343,
+ "AA": 6344,
+ "▁born": 6345,
+ "▁College": 6346,
+ "athol": 6347,
+ "`)": 6348,
+ "ierre": 6349,
+ "▁ran": 6350,
+ "▁profession": 6351,
+ "ogen": 6352,
+ "}_{\\": 6353,
+ "▁activity": 6354,
+ "▁scroll": 6355,
+ "▁prove": 6356,
+ "ibrary": 6357,
+ "eries": 6358,
+ "Read": 6359,
+ "year": 6360,
+ "▁lang": 6361,
+ "Det": 6362,
+ "▁knew": 6363,
+ "▁protected": 6364,
+ "▁wor": 6365,
+ "▁effic": 6366,
+ "▁rég": 6367,
+ "▁theory": 6368,
+ "▁published": 6369,
+ "real": 6370,
+ "▁Tour": 6371,
+ "▁durante": 6372,
+ "äs": 6373,
+ "▁positive": 6374,
+ "▁forward": 6375,
+ "▁Rel": 6376,
+ "{\"": 6377,
+ "park": 6378,
+ "▁Um": 6379,
+ "▁eer": 6380,
+ "enta": 6381,
+ "▁imag": 6382,
+ "ної": 6383,
+ "piel": 6384,
+ "▁jQuery": 6385,
+ "isme": 6386,
+ "chni": 6387,
+ "organ": 6388,
+ "▁args": 6389,
+ "oir": 6390,
+ "heim": 6391,
+ "rian": 6392,
+ "eless": 6393,
+ "uses": 6394,
+ "дин": 6395,
+ "ición": 6396,
+ "▁indust": 6397,
+ "▁wish": 6398,
+ "ány": 6399,
+ "oca": 6400,
+ "▁angular": 6401,
+ "ieved": 6402,
+ "▁occur": 6403,
+ "SELECT": 6404,
+ "onia": 6405,
+ "admin": 6406,
+ "▁Best": 6407,
+ "▁это": 6408,
+ "огра": 6409,
+ "▁loss": 6410,
+ "▁bal": 6411,
+ "▁Рос": 6412,
+ "▁career": 6413,
+ "▁пе": 6414,
+ "IX": 6415,
+ "▁fall": 6416,
+ "▁Rob": 6417,
+ "▁OP": 6418,
+ "ened": 6419,
+ "graphics": 6420,
+ "▁coming": 6421,
+ "Update": 6422,
+ "▁died": 6423,
+ "eden": 6424,
+ "▁abs": 6425,
+ "▁inner": 6426,
+ "▁trav": 6427,
+ "стоя": 6428,
+ "zą": 6429,
+ "ép": 6430,
+ "▁Group": 6431,
+ "▁cel": 6432,
+ "▁stuff": 6433,
+ "▁situation": 6434,
+ "▁${": 6435,
+ "acle": 6436,
+ "▁purpose": 6437,
+ "▁Fire": 6438,
+ "▁Oh": 6439,
+ "▁Second": 6440,
+ "▁upload": 6441,
+ "ostał": 6442,
+ "ющи": 6443,
+ "Auth": 6444,
+ "▁showing": 6445,
+ "▁completely": 6446,
+ "avel": 6447,
+ "bd": 6448,
+ "▁proced": 6449,
+ "▁Ö": 6450,
+ "control": 6451,
+ "▁thank": 6452,
+ "undred": 6453,
+ "▁tom": 6454,
+ "▁examples": 6455,
+ "▁remember": 6456,
+ "▁рабо": 6457,
+ "▁possib": 6458,
+ "▁detect": 6459,
+ "▁poor": 6460,
+ "▁Op": 6461,
+ "▁century": 6462,
+ "utter": 6463,
+ "▁login": 6464,
+ "unst": 6465,
+ "Output": 6466,
+ "▁otherwise": 6467,
+ "lan": 6468,
+ "тур": 6469,
+ "▁сов": 6470,
+ "▁groups": 6471,
+ "rip": 6472,
+ "▁shell": 6473,
+ "▁district": 6474,
+ "▁records": 6475,
+ "▁siè": 6476,
+ "fortun": 6477,
+ "enty": 6478,
+ "▁Tre": 6479,
+ "▁changing": 6480,
+ "след": 6481,
+ "aught": 6482,
+ "▁deep": 6483,
+ "subset": 6484,
+ "agy": 6485,
+ "endar": 6486,
+ "jax": 6487,
+ "OM": 6488,
+ "El": 6489,
+ "imate": 6490,
+ "ardo": 6491,
+ "▁plot": 6492,
+ "▁visit": 6493,
+ "▁bug": 6494,
+ "▁все": 6495,
+ "▁opened": 6496,
+ "▁repla": 6497,
+ "▁Henry": 6498,
+ "▁pp": 6499,
+ "bas": 6500,
+ "▁dark": 6501,
+ "▁Martin": 6502,
+ "▁resource": 6503,
+ "iling": 6504,
+ "▁watch": 6505,
+ "replace": 6506,
+ "▁release": 6507,
+ "Location": 6508,
+ "▁learning": 6509,
+ "menu": 6510,
+ "▁allows": 6511,
+ "ър": 6512,
+ "Length": 6513,
+ "▁whatever": 6514,
+ "▁pages": 6515,
+ "▁compiler": 6516,
+ "▁также": 6517,
+ "▁Pan": 6518,
+ "command": 6519,
+ "▁road": 6520,
+ "▁unless": 6521,
+ "`?": 6522,
+ "▁discover": 6523,
+ "▁он": 6524,
+ "}]": 6525,
+ "bour": 6526,
+ "▁Could": 6527,
+ "▁regex": 6528,
+ "▁ps": 6529,
+ "CD": 6530,
+ "из": 6531,
+ "▁wife": 6532,
+ "amenti": 6533,
+ "▁fair": 6534,
+ "▁DB": 6535,
+ "▁Cup": 6536,
+ "enen": 6537,
+ "ajax": 6538,
+ "othèque": 6539,
+ "▁seiner": 6540,
+ "icker": 6541,
+ "ám": 6542,
+ "exchange": 6543,
+ "oles": 6544,
+ "IF": 6545,
+ "▁До": 6546,
+ "ohn": 6547,
+ "▁grow": 6548,
+ "▁Thus": 6549,
+ "spec": 6550,
+ "▁hatte": 6551,
+ "#,": 6552,
+ "allel": 6553,
+ "▁rate": 6554,
+ "▁central": 6555,
+ "▁Van": 6556,
+ "iforn": 6557,
+ "Run": 6558,
+ "▁study": 6559,
+ "▁XML": 6560,
+ "▁Che": 6561,
+ "▁beaut": 6562,
+ "mid": 6563,
+ "▁advance": 6564,
+ "Ver": 6565,
+ "тя": 6566,
+ "▁hands": 6567,
+ "▁lay": 6568,
+ "▁š": 6569,
+ "▁OS": 6570,
+ "▁{}": 6571,
+ "Pre": 6572,
+ "▁Hall": 6573,
+ "imp": 6574,
+ "▁sun": 6575,
+ "▁steps": 6576,
+ "▁jud": 6577,
+ "qui": 6578,
+ "▁boot": 6579,
+ "▁%>": 6580,
+ "▁Ва": 6581,
+ "nost": 6582,
+ "▁nem": 6583,
+ "▁pen": 6584,
+ "Open": 6585,
+ "▁church": 6586,
+ "кон": 6587,
+ "▁average": 6588,
+ "▁comments": 6589,
+ "▁corresponding": 6590,
+ "levant": 6591,
+ "▁bed": 6592,
+ "▁meaning": 6593,
+ "Version": 6594,
+ "Link": 6595,
+ "bel": 6596,
+ "▁extract": 6597,
+ "ść": 6598,
+ "▁IV": 6599,
+ "▁Ir": 6600,
+ "▁computer": 6601,
+ "▁affect": 6602,
+ "▁Ста": 6603,
+ "AX": 6604,
+ "sort": 6605,
+ "▁species": 6606,
+ "▁Oper": 6607,
+ "▁hash": 6608,
+ "ches": 6609,
+ "▁Einzeln": 6610,
+ "▁keys": 6611,
+ "▁marzo": 6612,
+ "▁interpret": 6613,
+ "hood": 6614,
+ "▁coordin": 6615,
+ "ös": 6616,
+ "rage": 6617,
+ "etz": 6618,
+ "iza": 6619,
+ "дер": 6620,
+ "üt": 6621,
+ "^*": 6622,
+ "▁modify": 6623,
+ "▁termin": 6624,
+ "▁cred": 6625,
+ "zon": 6626,
+ "ную": 6627,
+ "▁mie": 6628,
+ "▁''": 6629,
+ "▁Mos": 6630,
+ "▁connected": 6631,
+ "NO": 6632,
+ "▁compile": 6633,
+ "▁\"\\": 6634,
+ "▁cat": 6635,
+ "fiddle": 6636,
+ "uta": 6637,
+ "Access": 6638,
+ "▁Sto": 6639,
+ "▁Bur": 6640,
+ "▁north": 6641,
+ "Gamma": 6642,
+ "▁alloc": 6643,
+ "Init": 6644,
+ "▁Link": 6645,
+ "ialize": 6646,
+ "Impl": 6647,
+ "oupe": 6648,
+ "ropri": 6649,
+ "▁Gold": 6650,
+ "▁solo": 6651,
+ "▁Dist": 6652,
+ ",-": 6653,
+ "nav": 6654,
+ "▁alert": 6655,
+ "esis": 6656,
+ "▁Os": 6657,
+ "///": 6658,
+ "▁feb": 6659,
+ "▁-->": 6660,
+ "foot": 6661,
+ "▁Fried": 6662,
+ "▁Einzelnach": 6663,
+ "▁rev": 6664,
+ "zeit": 6665,
+ "▁Stat": 6666,
+ "▁Seg": 6667,
+ "▁blo": 6668,
+ "wick": 6669,
+ "EL": 6670,
+ "caption": 6671,
+ "header": 6672,
+ "▁president": 6673,
+ "▁multip": 6674,
+ "▁Einzelnachweise": 6675,
+ "▁seine": 6676,
+ "?”": 6677,
+ "Function": 6678,
+ "▁Stand": 6679,
+ "▁Function": 6680,
+ "▁?>": 6681,
+ "▁Bill": 6682,
+ "▁spect": 6683,
+ "▁redirect": 6684,
+ "rupt": 6685,
+ "▁walk": 6686,
+ "вши": 6687,
+ "springframework": 6688,
+ "place": 6689,
+ "ého": 6690,
+ "Entity": 6691,
+ "▁Service": 6692,
+ "inte": 6693,
+ "▁training": 6694,
+ "▁(`": 6695,
+ "фор": 6696,
+ "▁кра": 6697,
+ "aur": 6698,
+ "▁fetch": 6699,
+ "▁†": 6700,
+ "▁même": 6701,
+ "▁('": 6702,
+ "atively": 6703,
+ "▁execut": 6704,
+ "äch": 6705,
+ "▁Catalogue": 6706,
+ "based": 6707,
+ "Attribute": 6708,
+ "▁spring": 6709,
+ "phone": 6710,
+ "тра": 6711,
+ "▁пи": 6712,
+ "тера": 6713,
+ "▁`\\": 6714,
+ "▁Od": 6715,
+ "One": 6716,
+ "send": 6717,
+ "bon": 6718,
+ "▁°": 6719,
+ "MO": 6720,
+ "▁asking": 6721,
+ "▁où": 6722,
+ "▁ingår": 6723,
+ "▁testing": 6724,
+ "▁фа": 6725,
+ "▁Book": 6726,
+ "imm": 6727,
+ "▁progress": 6728,
+ "bro": 6729,
+ "First": 6730,
+ "▁phot": 6731,
+ "▁ON": 6732,
+ "Template": 6733,
+ "developer": 6734,
+ "annot": 6735,
+ "▁>=": 6736,
+ "mission": 6737,
+ "▁któ": 6738,
+ "pc": 6739,
+ "bach": 6740,
+ "zent": 6741,
+ "ued": 6742,
+ "▁ones": 6743,
+ "ји": 6744,
+ "▁rout": 6745,
+ "▁Ки": 6746,
+ "Post": 6747,
+ "ції": 6748,
+ "▁Vir": 6749,
+ "nek": 6750,
+ "aging": 6751,
+ "▁ок": 6752,
+ "izont": 6753,
+ "▁agosto": 6754,
+ "▁choose": 6755,
+ "▁\r": 6756,
+ "▁systems": 6757,
+ "loss": 6758,
+ "iente": 6759,
+ "▁Cre": 6760,
+ "▁contra": 6761,
+ "ums": 6762,
+ "▁beginning": 6763,
+ "emy": 6764,
+ "istics": 6765,
+ "▁served": 6766,
+ "Down": 6767,
+ "options": 6768,
+ "▁Govern": 6769,
+ "▁BY": 6770,
+ "▁jest": 6771,
+ "té": 6772,
+ "▁continue": 6773,
+ "pers": 6774,
+ "▁easier": 6775,
+ "▁cos": 6776,
+ "esso": 6777,
+ ">>": 6778,
+ "Net": 6779,
+ "▁Bor": 6780,
+ "▁Cr": 6781,
+ "▁transfer": 6782,
+ "▁CSS": 6783,
+ "▁finns": 6784,
+ "▁хо": 6785,
+ "username": 6786,
+ "▁constru": 6787,
+ "▁pain": 6788,
+ "▁Tem": 6789,
+ "▁specified": 6790,
+ "▁brit": 6791,
+ "ские": 6792,
+ "irk": 6793,
+ "rapper": 6794,
+ "▁counter": 6795,
+ "▁[\"": 6796,
+ "oded": 6797,
+ "дан": 6798,
+ "property": 6799,
+ "hard": 6800,
+ "istrict": 6801,
+ ")/": 6802,
+ "▁Pour": 6803,
+ "▁Where": 6804,
+ "▁===": 6805,
+ "▁sowie": 6806,
+ "▁Про": 6807,
+ "▁dess": 6808,
+ "▁tras": 6809,
+ "▁уча": 6810,
+ "▁Over": 6811,
+ "note": 6812,
+ "▁America": 6813,
+ "cp": 6814,
+ "▁grande": 6815,
+ "Me": 6816,
+ ")-": 6817,
+ "Mode": 6818,
+ "▁passing": 6819,
+ "▁giving": 6820,
+ "Cl": 6821,
+ "}/": 6822,
+ "Menu": 6823,
+ "!!": 6824,
+ "angular": 6825,
+ "▁launch": 6826,
+ "varphi": 6827,
+ "▁Johann": 6828,
+ "▁foreach": 6829,
+ "ró": 6830,
+ "sequ": 6831,
+ "ifi": 6832,
+ "Am": 6833,
+ "arp": 6834,
+ "▁buffer": 6835,
+ "▁ni": 6836,
+ "▁mix": 6837,
+ "▁Museum": 6838,
+ "▁meant": 6839,
+ "asi": 6840,
+ "▁kan": 6841,
+ "прав": 6842,
+ "Comp": 6843,
+ "istoire": 6844,
+ "iful": 6845,
+ "jer": 6846,
+ "issions": 6847,
+ "Resource": 6848,
+ "▁воз": 6849,
+ "▁ST": 6850,
+ "▁solutions": 6851,
+ "▁belong": 6852,
+ "▁Associ": 6853,
+ "cf": 6854,
+ "▁Mär": 6855,
+ "▁grid": 6856,
+ "Mult": 6857,
+ "▁requires": 6858,
+ "kk": 6859,
+ "▁teach": 6860,
+ "emeinde": 6861,
+ "▁square": 6862,
+ "▁коман": 6863,
+ "▁Event": 6864,
+ "▁rules": 6865,
+ "▁bur": 6866,
+ "▁eing": 6867,
+ "▁Mai": 6868,
+ "▁nam": 6869,
+ "▁slä": 6870,
+ "hör": 6871,
+ "▁tip": 6872,
+ "▁Literatur": 6873,
+ "▁scope": 6874,
+ "overline": 6875,
+ "▁exit": 6876,
+ ")?": 6877,
+ "bet": 6878,
+ "▁vict": 6879,
+ "Off": 6880,
+ "▁approxim": 6881,
+ "▁Geb": 6882,
+ "ktop": 6883,
+ "heit": 6884,
+ "▁Ю": 6885,
+ "template": 6886,
+ "рон": 6887,
+ "▁uno": 6888,
+ "Serv": 6889,
+ "▁framework": 6890,
+ "operator": 6891,
+ "▁generally": 6892,
+ "▁hundred": 6893,
+ "▁divers": 6894,
+ "ovi": 6895,
+ "▁rés": 6896,
+ "abs": 6897,
+ "▁gal": 6898,
+ "çais": 6899,
+ "▁feet": 6900,
+ "▁virtual": 6901,
+ "czy": 6902,
+ "ску": 6903,
+ "./": 6904,
+ "hu": 6905,
+ "ancy": 6906,
+ "▁recommend": 6907,
+ "▁під": 6908,
+ "▁money": 6909,
+ "▁versions": 6910,
+ "▁helps": 6911,
+ "▁Hor": 6912,
+ "Items": 6913,
+ "look": 6914,
+ "connect": 6915,
+ "anges": 6916,
+ "ViewController": 6917,
+ "elijk": 6918,
+ "▁occup": 6919,
+ "▁editor": 6920,
+ "auto": 6921,
+ "ög": 6922,
+ "▁seconds": 6923,
+ "▁obvious": 6924,
+ "vm": 6925,
+ "akes": 6926,
+ "▁gegen": 6927,
+ "▁til": 6928,
+ "jection": 6929,
+ "лення": 6930,
+ "▁operations": 6931,
+ "▁East": 6932,
+ "ogy": 6933,
+ "▁Polit": 6934,
+ "uten": 6935,
+ "▁Joseph": 6936,
+ "\"`": 6937,
+ "▁Company": 6938,
+ "▁callback": 6939,
+ "▁sen": 6940,
+ "cción": 6941,
+ "▁associated": 6942,
+ "▁containing": 6943,
+ "▁practice": 6944,
+ "elijke": 6945,
+ "oke": 6946,
+ "éra": 6947,
+ "uns": 6948,
+ "anta": 6949,
+ "vey": 6950,
+ "zu": 6951,
+ "▁Bes": 6952,
+ "▁Flor": 6953,
+ "mem": 6954,
+ "ycz": 6955,
+ "▁architect": 6956,
+ "▁anni": 6957,
+ "▁contact": 6958,
+ "YPE": 6959,
+ "▁Cas": 6960,
+ "▁полу": 6961,
+ "ovo": 6962,
+ "▁bring": 6963,
+ "▁concept": 6964,
+ "▁js": 6965,
+ "▁Referencias": 6966,
+ "emble": 6967,
+ "▁н": 6968,
+ "▁supported": 6969,
+ "Big": 6970,
+ "▁Hans": 6971,
+ "erv": 6972,
+ "▁Maj": 6973,
+ "▁arriv": 6974,
+ "▁Have": 6975,
+ "▁probability": 6976,
+ "▁Pop": 6977,
+ "▁Pass": 6978,
+ "token": 6979,
+ "Provider": 6980,
+ "▁Ra": 6981,
+ "Reader": 6982,
+ "ooth": 6983,
+ "lap": 6984,
+ "▁assist": 6985,
+ "adow": 6986,
+ "▁tests": 6987,
+ "сси": 6988,
+ "▁king": 6989,
+ "langle": 6990,
+ "▁Sum": 6991,
+ "OIN": 6992,
+ "▁security": 6993,
+ "nis": 6994,
+ "../": 6995,
+ "▁basic": 6996,
+ "unity": 6997,
+ "`:": 6998,
+ "▁кото": 6999,
+ "kow": 7000,
+ "▁Bibliothèque": 7001,
+ "asion": 7002,
+ "alo": 7003,
+ "ifest": 7004,
+ "▁novembre": 7005,
+ "▁peu": 7006,
+ "▁Ж": 7007,
+ "enschaft": 7008,
+ "clus": 7009,
+ "ју": 7010,
+ "Height": 7011,
+ "ún": 7012,
+ "▁tur": 7013,
+ "▁ideas": 7014,
+ "▁ces": 7015,
+ "frak": 7016,
+ "▁premier": 7017,
+ "itation": 7018,
+ "▁sé": 7019,
+ "HTML": 7020,
+ "▁Royal": 7021,
+ "ської": 7022,
+ "▁byte": 7023,
+ "PS": 7024,
+ "▁segu": 7025,
+ "inen": 7026,
+ "▁Great": 7027,
+ "▁Ку": 7028,
+ "▁external": 7029,
+ "Title": 7030,
+ "Top": 7031,
+ "Process": 7032,
+ "ität": 7033,
+ "▁`/": 7034,
+ "▁secret": 7035,
+ "pository": 7036,
+ "▁potential": 7037,
+ "▁Bud": 7038,
+ "names": 7039,
+ "asons": 7040,
+ "stackexchange": 7041,
+ "background": 7042,
+ "пер": 7043,
+ "сов": 7044,
+ "after": 7045,
+ "▁pero": 7046,
+ "▁software": 7047,
+ "▁sed": 7048,
+ "▁arrays": 7049,
+ "tmp": 7050,
+ "▁asp": 7051,
+ "scale": 7052,
+ "▁Lat": 7053,
+ "anal": 7054,
+ "▁gem": 7055,
+ "PU": 7056,
+ "▁Altri": 7057,
+ "That": 7058,
+ "▁Ни": 7059,
+ "ifact": 7060,
+ "Address": 7061,
+ "▁south": 7062,
+ "▁formula": 7063,
+ "▁Colleg": 7064,
+ "▁ін": 7065,
+ "ktion": 7066,
+ "▁sac": 7067,
+ "SH": 7068,
+ "ajo": 7069,
+ "etc": 7070,
+ "vc": 7071,
+ "`](": 7072,
+ "▁Dur": 7073,
+ "▁Ме": 7074,
+ "▁Smith": 7075,
+ "items": 7076,
+ "CK": 7077,
+ "elo": 7078,
+ "▁plugin": 7079,
+ "▁serie": 7080,
+ "ienne": 7081,
+ "▁или": 7082,
+ "Mar": 7083,
+ "▁Image": 7084,
+ "got": 7085,
+ "andas": 7086,
+ "▁matches": 7087,
+ "▁worth": 7088,
+ "▁Deb": 7089,
+ "▁cache": 7090,
+ "▁felt": 7091,
+ "ersch": 7092,
+ "izes": 7093,
+ "Oper": 7094,
+ "▁Jahre": 7095,
+ "▁commune": 7096,
+ "thread": 7097,
+ "▁ny": 7098,
+ "dec": 7099,
+ "ouw": 7100,
+ "▁surface": 7101,
+ "▁Por": 7102,
+ "▁Street": 7103,
+ "при": 7104,
+ "▁candid": 7105,
+ "▁Return": 7106,
+ "▁Kom": 7107,
+ "gru": 7108,
+ "▁ти": 7109,
+ "[\\": 7110,
+ "▁depends": 7111,
+ "▁influ": 7112,
+ "▁towards": 7113,
+ "ained": 7114,
+ "▁rank": 7115,
+ "▁Januar": 7116,
+ "▁components": 7117,
+ "gest": 7118,
+ "getElementById": 7119,
+ "▁checked": 7120,
+ "airs": 7121,
+ "join": 7122,
+ "▁dead": 7123,
+ "▁hit": 7124,
+ "ény": 7125,
+ "▁equivalent": 7126,
+ "▁Пре": 7127,
+ "▁appropri": 7128,
+ "Pass": 7129,
+ "▁primer": 7130,
+ "englisch": 7131,
+ "▁appar": 7132,
+ "▁During": 7133,
+ "▁knowledge": 7134,
+ "▁trigger": 7135,
+ "▁core": 7136,
+ "▁Ol": 7137,
+ "▁Produ": 7138,
+ "▁Fern": 7139,
+ "▁нача": 7140,
+ "Te": 7141,
+ "▁Mot": 7142,
+ "erve": 7143,
+ "тво": 7144,
+ "▁mid": 7145,
+ "▁finally": 7146,
+ "aires": 7147,
+ "▁especially": 7148,
+ "▁tut": 7149,
+ "▁receive": 7150,
+ "adre": 7151,
+ "▁neigh": 7152,
+ "ktet": 7153,
+ "ilde": 7154,
+ "▁radio": 7155,
+ "▁driver": 7156,
+ "лись": 7157,
+ "endencies": 7158,
+ "▁IE": 7159,
+ "▁saved": 7160,
+ "ffect": 7161,
+ "▁Wayback": 7162,
+ "iat": 7163,
+ "▁padding": 7164,
+ "window": 7165,
+ "тиче": 7166,
+ "▁mur": 7167,
+ "actor": 7168,
+ "▁Han": 7169,
+ "ональ": 7170,
+ "▁gar": 7171,
+ "▁familjen": 7172,
+ "ós": 7173,
+ "▁nationale": 7174,
+ "▁pré": 7175,
+ "ded": 7176,
+ "onal": 7177,
+ "▁President": 7178,
+ "▁\\,": 7179,
+ "▁placed": 7180,
+ "erni": 7181,
+ "▁signal": 7182,
+ "nab": 7183,
+ "hm": 7184,
+ "Mon": 7185,
+ "▁vs": 7186,
+ "SC": 7187,
+ "▁progetti": 7188,
+ "▁Ü": 7189,
+ "▁forms": 7190,
+ "▁messages": 7191,
+ "inf": 7192,
+ "users": 7193,
+ "GET": 7194,
+ "▁dels": 7195,
+ "Collection": 7196,
+ "▁Good": 7197,
+ "▁Maybe": 7198,
+ "▁compr": 7199,
+ "▁larger": 7200,
+ "gres": 7201,
+ "aper": 7202,
+ "▁При": 7203,
+ "undes": 7204,
+ "▁sea": 7205,
+ "▁Spring": 7206,
+ "ulo": 7207,
+ "▁mechan": 7208,
+ "▁sans": 7209,
+ "GB": 7210,
+ "Valid": 7211,
+ "▁communic": 7212,
+ "▁pra": 7213,
+ "vier": 7214,
+ "▁Се": 7215,
+ "▁ain": 7216,
+ "тура": 7217,
+ "kom": 7218,
+ "skiego": 7219,
+ "ково": 7220,
+ "adata": 7221,
+ "▁Ре": 7222,
+ "▁boolean": 7223,
+ "sets": 7224,
+ "▁effort": 7225,
+ ".[": 7226,
+ "▁został": 7227,
+ "PA": 7228,
+ "▁Vict": 7229,
+ "SD": 7230,
+ "ował": 7231,
+ "▁emb": 7232,
+ "▁prima": 7233,
+ "▁hour": 7234,
+ "subsection": 7235,
+ "▁Fort": 7236,
+ "mathfrak": 7237,
+ "igin": 7238,
+ "GL": 7239,
+ ")+": 7240,
+ "fi": 7241,
+ "▁anci": 7242,
+ "▁pan": 7243,
+ "\\)": 7244,
+ "▁lug": 7245,
+ "▁deploy": 7246,
+ "domain": 7247,
+ "▁slight": 7248,
+ "JSON": 7249,
+ "▁morning": 7250,
+ "▁hi": 7251,
+ "▁compare": 7252,
+ "ije": 7253,
+ "▁blue": 7254,
+ "▁Ac": 7255,
+ "▁middle": 7256,
+ "anden": 7257,
+ "▁shared": 7258,
+ "▁Camp": 7259,
+ "▁Á": 7260,
+ "ounded": 7261,
+ "uw": 7262,
+ "ierung": 7263,
+ "Stack": 7264,
+ "▁eines": 7265,
+ "▁Da": 7266,
+ "lij": 7267,
+ "enti": 7268,
+ "▁й": 7269,
+ "Util": 7270,
+ "▁experience": 7271,
+ "▁await": 7272,
+ "uls": 7273,
+ "▁requests": 7274,
+ "▁impos": 7275,
+ "▁constraint": 7276,
+ "Change": 7277,
+ "emph": 7278,
+ "бер": 7279,
+ "▁Another": 7280,
+ "Custom": 7281,
+ "▁significant": 7282,
+ "cr": 7283,
+ "▁million": 7284,
+ "reek": 7285,
+ "▁dalla": 7286,
+ "▁Germ": 7287,
+ "otal": 7288,
+ "ateur": 7289,
+ "btn": 7290,
+ "▁thinking": 7291,
+ "▁interval": 7292,
+ "onne": 7293,
+ "▁liv": 7294,
+ "():": 7295,
+ "▁Ве": 7296,
+ "oe": 7297,
+ "▁Ev": 7298,
+ "meta": 7299,
+ "▁broad": 7300,
+ "Rem": 7301,
+ "apply": 7302,
+ "▁couple": 7303,
+ "▁techni": 7304,
+ "idades": 7305,
+ "▁goal": 7306,
+ "▁CD": 7307,
+ "hab": 7308,
+ "▁explan": 7309,
+ "anner": 7310,
+ "▁Because": 7311,
+ "blog": 7312,
+ "includegraphics": 7313,
+ "▁voice": 7314,
+ "▁Map": 7315,
+ "vention": 7316,
+ "Session": 7317,
+ "▁Liens": 7318,
+ "▁sor": 7319,
+ "category": 7320,
+ "ashington": 7321,
+ "▁März": 7322,
+ "pop": 7323,
+ "illet": 7324,
+ "▁zwei": 7325,
+ "▁Lie": 7326,
+ "Null": 7327,
+ "address": 7328,
+ "▁factor": 7329,
+ "▁ligne": 7330,
+ "▁HTTP": 7331,
+ "▁suf": 7332,
+ "▁personal": 7333,
+ "cip": 7334,
+ "▁Dar": 7335,
+ "▁adm": 7336,
+ "кой": 7337,
+ "▁Ext": 7338,
+ "▁god": 7339,
+ "aa": 7340,
+ "Right": 7341,
+ "été": 7342,
+ "▁dynamic": 7343,
+ "▁maintain": 7344,
+ "tor": 7345,
+ "########": 7346,
+ "▁Fra": 7347,
+ "▁choice": 7348,
+ "▁сто": 7349,
+ "СР": 7350,
+ "▁Feder": 7351,
+ "ston": 7352,
+ "▁flag": 7353,
+ "kit": 7354,
+ "Module": 7355,
+ "▁спо": 7356,
+ "▁Stra": 7357,
+ "icks": 7358,
+ "▁haven": 7359,
+ "▁Mass": 7360,
+ "▁Emp": 7361,
+ "▁Pi": 7362,
+ "▁Pen": 7363,
+ "Rect": 7364,
+ "▁Kr": 7365,
+ "itat": 7366,
+ "eler": 7367,
+ "ября": 7368,
+ "itet": 7369,
+ "▁Start": 7370,
+ "▁produced": 7371,
+ "▁пол": 7372,
+ "(_": 7373,
+ "▁delet": 7374,
+ "▁hot": 7375,
+ "▁Geschichte": 7376,
+ "~~": 7377,
+ "▁months": 7378,
+ "▁tod": 7379,
+ "▁ни": 7380,
+ "ús": 7381,
+ "temp": 7382,
+ "▁Dez": 7383,
+ "ypes": 7384,
+ "▁cui": 7385,
+ "ommun": 7386,
+ "actions": 7387,
+ "▁eigen": 7388,
+ "▁immediately": 7389,
+ "PL": 7390,
+ "▁Го": 7391,
+ "▁Bal": 7392,
+ "ље": 7393,
+ "ului": 7394,
+ "▁online": 7395,
+ "▁años": 7396,
+ "▁namespace": 7397,
+ "▁mond": 7398,
+ "▁Base": 7399,
+ "▁Canada": 7400,
+ "etzt": 7401,
+ "}-": 7402,
+ "▁defin": 7403,
+ "▁doubt": 7404,
+ "▁investig": 7405,
+ "views": 7406,
+ "▁Line": 7407,
+ "▁stage": 7408,
+ "ettings": 7409,
+ "ubre": 7410,
+ "float": 7411,
+ "▁Play": 7412,
+ "▁Las": 7413,
+ "ptr": 7414,
+ "▁becomes": 7415,
+ "estamp": 7416,
+ "▁independent": 7417,
+ "▁analysis": 7418,
+ "▁Look": 7419,
+ "lain": 7420,
+ "▁рас": 7421,
+ "Reference": 7422,
+ "▁sorry": 7423,
+ "▁supposed": 7424,
+ "ût": 7425,
+ "▁degree": 7426,
+ "utz": 7427,
+ "MM": 7428,
+ "▁desired": 7429,
+ "ły": 7430,
+ "▁len": 7431,
+ "▁alone": 7432,
+ "signed": 7433,
+ "▁Sta": 7434,
+ "Person": 7435,
+ "▁applied": 7436,
+ "▁Back": 7437,
+ "▁mars": 7438,
+ "Part": 7439,
+ "▁Did": 7440,
+ "▁externes": 7441,
+ "▁np": 7442,
+ "ongo": 7443,
+ "▁esta": 7444,
+ "Block": 7445,
+ "▁pou": 7446,
+ "adores": 7447,
+ "▁Studio": 7448,
+ ".$": 7449,
+ "▁reached": 7450,
+ "bot": 7451,
+ "▁Juni": 7452,
+ "tons": 7453,
+ "itel": 7454,
+ "▁Gar": 7455,
+ "▁articles": 7456,
+ "▁District": 7457,
+ "▁trouble": 7458,
+ "lide": 7459,
+ "▁Found": 7460,
+ "ád": 7461,
+ "▁equip": 7462,
+ "▁internal": 7463,
+ "'],": 7464,
+ "▁async": 7465,
+ "UB": 7466,
+ "gel": 7467,
+ "▁ai": 7468,
+ "ensure": 7469,
+ "▁appeared": 7470,
+ "▁$_": 7471,
+ "▁maximum": 7472,
+ "▁Си": 7473,
+ "рь": 7474,
+ "▁announ": 7475,
+ "лась": 7476,
+ "▁cm": 7477,
+ "ган": 7478,
+ "aupt": 7479,
+ "▁latter": 7480,
+ "▁platform": 7481,
+ "▁dra": 7482,
+ "▁capital": 7483,
+ "▁solved": 7484,
+ "riz": 7485,
+ "edic": 7486,
+ "▁Mur": 7487,
+ "▁Top": 7488,
+ "тся": 7489,
+ "Panel": 7490,
+ "rule": 7491,
+ "etic": 7492,
+ "▁Ren": 7493,
+ "▁Wikimedia": 7494,
+ "▁TO": 7495,
+ "second": 7496,
+ "isl": 7497,
+ "▁hy": 7498,
+ "▁niet": 7499,
+ "▁loaded": 7500,
+ "dig": 7501,
+ "▁mayo": 7502,
+ "[:": 7503,
+ "Acc": 7504,
+ "▁bek": 7505,
+ "нию": 7506,
+ "login": 7507,
+ "tx": 7508,
+ "▁Fur": 7509,
+ "▁Santa": 7510,
+ "azz": 7511,
+ "▁conduct": 7512,
+ "▁India": 7513,
+ "Order": 7514,
+ "irth": 7515,
+ "tw": 7516,
+ "}+": 7517,
+ "▁wieder": 7518,
+ "▁Edu": 7519,
+ "AV": 7520,
+ "▁```": 7521,
+ "▁manually": 7522,
+ "▁Read": 7523,
+ "fortunately": 7524,
+ "▁Run": 7525,
+ "▁Award": 7526,
+ "▁Foot": 7527,
+ "*)": 7528,
+ "params": 7529,
+ "пі": 7530,
+ "▁native": 7531,
+ "rift": 7532,
+ "▁ä": 7533,
+ "ATH": 7534,
+ "▁yourself": 7535,
+ "▁prior": 7536,
+ "▁cit": 7537,
+ "äh": 7538,
+ "▁treat": 7539,
+ "▁meas": 7540,
+ "ributed": 7541,
+ "▁clar": 7542,
+ "card": 7543,
+ "ROR": 7544,
+ "illes": 7545,
+ "▁layer": 7546,
+ "auer": 7547,
+ "▁rat": 7548,
+ "bernate": 7549,
+ "▁stato": 7550,
+ "▁China": 7551,
+ "▁$('#": 7552,
+ "▁naar": 7553,
+ "zip": 7554,
+ "▁${\\": 7555,
+ "▁appreciated": 7556,
+ "▁име": 7557,
+ "ży": 7558,
+ "▁przez": 7559,
+ "▁Indian": 7560,
+ "▁Tod": 7561,
+ "▁Source": 7562,
+ "▁други": 7563,
+ "internal": 7564,
+ "ionale": 7565,
+ "Product": 7566,
+ "▁Men": 7567,
+ "▁upper": 7568,
+ "▁Every": 7569,
+ "},\\": 7570,
+ "▁printf": 7571,
+ "▁continued": 7572,
+ "▁nodes": 7573,
+ "лки": 7574,
+ "▁nice": 7575,
+ "modules": 7576,
+ "eign": 7577,
+ "▁Mex": 7578,
+ "▁According": 7579,
+ "▁undefined": 7580,
+ "▁binary": 7581,
+ "cut": 7582,
+ "Current": 7583,
+ "edy": 7584,
+ "}}{": 7585,
+ "bles": 7586,
+ "▁вой": 7587,
+ "scri": 7588,
+ "eqn": 7589,
+ "Changed": 7590,
+ "▁köz": 7591,
+ "▁remote": 7592,
+ "вля": 7593,
+ "▁quel": 7594,
+ "▁align": 7595,
+ "▁пар": 7596,
+ "SV": 7597,
+ "yer": 7598,
+ "▁Californ": 7599,
+ "▁places": 7600,
+ "▁primary": 7601,
+ "▁conv": 7602,
+ "▁Juli": 7603,
+ "▁visual": 7604,
+ "▁Select": 7605,
+ "atory": 7606,
+ "=(": 7607,
+ "iser": 7608,
+ "▁intent": 7609,
+ "sur": 7610,
+ "container": 7611,
+ "iced": 7612,
+ "▁board": 7613,
+ "astr": 7614,
+ "omial": 7615,
+ "вет": 7616,
+ "зва": 7617,
+ "▁cru": 7618,
+ "▁Oktober": 7619,
+ "save": 7620,
+ "▁greater": 7621,
+ "▁inn": 7622,
+ "▁picture": 7623,
+ "▁То": 7624,
+ "▁obtained": 7625,
+ "Wikimedia": 7626,
+ "úblic": 7627,
+ "▁lors": 7628,
+ "▁mont": 7629,
+ "obre": 7630,
+ "▁civil": 7631,
+ "▁construction": 7632,
+ "▁Welt": 7633,
+ "▁Under": 7634,
+ "undert": 7635,
+ "▁edge": 7636,
+ "▁Liste": 7637,
+ "csv": 7638,
+ "▁experiment": 7639,
+ "localhost": 7640,
+ "▁Edit": 7641,
+ "greg": 7642,
+ "ová": 7643,
+ "ља": 7644,
+ "msg": 7645,
+ "▁Green": 7646,
+ "Dialog": 7647,
+ "Ident": 7648,
+ "▁JS": 7649,
+ "^{(": 7650,
+ "▁släktet": 7651,
+ "____": 7652,
+ "Project": 7653,
+ "▁beskre": 7654,
+ "▁ber": 7655,
+ "▁wouldn": 7656,
+ "▁react": 7657,
+ "Hel": 7658,
+ "zw": 7659,
+ "▁Washington": 7660,
+ "orie": 7661,
+ "task": 7662,
+ "▁category": 7663,
+ "▁artist": 7664,
+ "anno": 7665,
+ "▁ook": 7666,
+ "ammen": 7667,
+ "▁Minister": 7668,
+ "▁declar": 7669,
+ "▁Key": 7670,
+ ",.": 7671,
+ "▁mach": 7672,
+ "▁ww": 7673,
+ "isen": 7674,
+ "Fran": 7675,
+ "▁Росси": 7676,
+ "бор": 7677,
+ "три": 7678,
+ "▁rock": 7679,
+ "quis": 7680,
+ "mos": 7681,
+ "пера": 7682,
+ "▁esterni": 7683,
+ "▁gold": 7684,
+ "Windows": 7685,
+ "%%": 7686,
+ "▁partial": 7687,
+ "▁weight": 7688,
+ "▁spr": 7689,
+ "}).": 7690,
+ "▁français": 7691,
+ "fun": 7692,
+ "▁thous": 7693,
+ "holder": 7694,
+ "▁gone": 7695,
+ "▁Č": 7696,
+ "▁rend": 7697,
+ "DA": 7698,
+ "▁answered": 7699,
+ "▁False": 7700,
+ "Buffer": 7701,
+ "▁daugh": 7702,
+ ".--": 7703,
+ "▁Show": 7704,
+ "▁rect": 7705,
+ "▁Kre": 7706,
+ "dr": 7707,
+ "osoph": 7708,
+ "▁yield": 7709,
+ "urity": 7710,
+ "toString": 7711,
+ "aval": 7712,
+ "Pol": 7713,
+ "▁lock": 7714,
+ "imation": 7715,
+ "antic": 7716,
+ "Local": 7717,
+ "▁beskrevs": 7718,
+ "ités": 7719,
+ "grid": 7720,
+ "ут": 7721,
+ "▁_{": 7722,
+ "сі": 7723,
+ "FILE": 7724,
+ "▁км": 7725,
+ "▁speak": 7726,
+ "summary": 7727,
+ "prop": 7728,
+ "javascript": 7729,
+ "zk": 7730,
+ "izontal": 7731,
+ "▁trois": 7732,
+ "▁Rod": 7733,
+ "prise": 7734,
+ "рово": 7735,
+ "▁odd": 7736,
+ "▁gest": 7737,
+ "▁produce": 7738,
+ "▁waar": 7739,
+ "▁Av": 7740,
+ "ribu": 7741,
+ "вання": 7742,
+ "▁finished": 7743,
+ "▁adapt": 7744,
+ "▁Sar": 7745,
+ "textit": 7746,
+ "▁Ce": 7747,
+ "▁Fa": 7748,
+ "osen": 7749,
+ "▁deriv": 7750,
+ "▁ship": 7751,
+ "▁opin": 7752,
+ "▁Even": 7753,
+ "gesch": 7754,
+ "▁suppose": 7755,
+ "▁Fer": 7756,
+ "ское": 7757,
+ "▁worden": 7758,
+ "sey": 7759,
+ "hline": 7760,
+ "▁Union": 7761,
+ "▁/**": 7762,
+ "▁vez": 7763,
+ "▁Collegamenti": 7764,
+ "▁Society": 7765,
+ "▁econom": 7766,
+ "ší": 7767,
+ "oi": 7768,
+ "▁orient": 7769,
+ "▁Teil": 7770,
+ "rent": 7771,
+ "лекс": 7772,
+ "▁solid": 7773,
+ "▁cart": 7774,
+ "****************": 7775,
+ "▁cab": 7776,
+ "▁Message": 7777,
+ "dots": 7778,
+ "▁ég": 7779,
+ "▁twe": 7780,
+ "aga": 7781,
+ "▁naz": 7782,
+ "▁Microsoft": 7783,
+ "▁underarter": 7784,
+ "ppen": 7785,
+ "▁recent": 7786,
+ "▁net": 7787,
+ "▁resources": 7788,
+ "Ste": 7789,
+ ".\\": 7790,
+ "▁SO": 7791,
+ "лом": 7792,
+ "▁cele": 7793,
+ "▁lic": 7794,
+ "▁benef": 7795,
+ "ldots": 7796,
+ "▁serial": 7797,
+ "Integer": 7798,
+ "cles": 7799,
+ "▁miles": 7800,
+ "▁Ale": 7801,
+ "▁entered": 7802,
+ "▁Two": 7803,
+ "wie": 7804,
+ "▁includes": 7805,
+ "▁Each": 7806,
+ "elling": 7807,
+ "quer": 7808,
+ "▁Dom": 7809,
+ "pf": 7810,
+ "WS": 7811,
+ "▁straight": 7812,
+ "▁Stan": 7813,
+ "▁nos": 7814,
+ "ícul": 7815,
+ "atro": 7816,
+ "▁Center": 7817,
+ "FT": 7818,
+ "▁Inga": 7819,
+ "ilo": 7820,
+ "▁www": 7821,
+ "jsfiddle": 7822,
+ "nic": 7823,
+ "▁European": 7824,
+ "▁commer": 7825,
+ "▁girl": 7826,
+ "total": 7827,
+ "▁Star": 7828,
+ "▁suggested": 7829,
+ "pal": 7830,
+ "▁zwischen": 7831,
+ "писа": 7832,
+ "IM": 7833,
+ "▁handler": 7834,
+ "▁Program": 7835,
+ "xsl": 7836,
+ "ály": 7837,
+ "BU": 7838,
+ ",--": 7839,
+ "▁vid": 7840,
+ "▁established": 7841,
+ "▁Spiel": 7842,
+ "ometry": 7843,
+ "unes": 7844,
+ "▁sit": 7845,
+ "▁inher": 7846,
+ "▁puis": 7847,
+ "▁être": 7848,
+ "▁Most": 7849,
+ "Header": 7850,
+ "insert": 7851,
+ "▁sist": 7852,
+ "▁favor": 7853,
+ "dest": 7854,
+ "▁entity": 7855,
+ "Cal": 7856,
+ "▁Therefore": 7857,
+ "DD": 7858,
+ ";;": 7859,
+ "▁Dezember": 7860,
+ "▁Rh": 7861,
+ "iments": 7862,
+ "▁returning": 7863,
+ "sto": 7864,
+ "▁Value": 7865,
+ "▁liber": 7866,
+ "▁Result": 7867,
+ "▁bind": 7868,
+ "voir": 7869,
+ "▁Tim": 7870,
+ "▁Movie": 7871,
+ "weg": 7872,
+ "ket": 7873,
+ "▁исто": 7874,
+ "▁friends": 7875,
+ "▁fn": 7876,
+ "▁él": 7877,
+ "▁&=": 7878,
+ "arden": 7879,
+ "fficial": 7880,
+ "▁community": 7881,
+ "▁api": 7882,
+ "Args": 7883,
+ "ieren": 7884,
+ "▁dann": 7885,
+ "omorph": 7886,
+ "adr": 7887,
+ "loop": 7888,
+ "uman": 7889,
+ "▁vous": 7890,
+ "bst": 7891,
+ "submit": 7892,
+ "\\|": 7893,
+ "тин": 7894,
+ "Container": 7895,
+ "asket": 7896,
+ "?)": 7897,
+ "Sec": 7898,
+ "▁drive": 7899,
+ "Ass": 7900,
+ "▁swe": 7901,
+ "▁amer": 7902,
+ "▁mine": 7903,
+ "▁Ham": 7904,
+ "▁avait": 7905,
+ "▁Hon": 7906,
+ "▁après": 7907,
+ "▁Mann": 7908,
+ "ська": 7909,
+ "▁increase": 7910,
+ "▁ty": 7911,
+ "sky": 7912,
+ "▁accur": 7913,
+ "article": 7914,
+ "weight": 7915,
+ "▁sex": 7916,
+ "▁listade": 7917,
+ "/**": 7918,
+ "▁está": 7919,
+ "}}$": 7920,
+ "argo": 7921,
+ "define": 7922,
+ "▁состав": 7923,
+ "session": 7924,
+ "ads": 7925,
+ "стви": 7926,
+ "▁Law": 7927,
+ "▁dialog": 7928,
+ "▁duplicate": 7929,
+ "▁ép": 7930,
+ "▁voc": 7931,
+ "fri": 7932,
+ "▁green": 7933,
+ "▁hidden": 7934,
+ "▁Island": 7935,
+ "▁diag": 7936,
+ "owej": 7937,
+ "mysql": 7938,
+ "teil": 7939,
+ "rä": 7940,
+ "ikan": 7941,
+ "▁José": 7942,
+ "aled": 7943,
+ "Runtime": 7944,
+ "▁train": 7945,
+ "▁Division": 7946,
+ "ниц": 7947,
+ "▁Span": 7948,
+ "нима": 7949,
+ ")=\\": 7950,
+ "тан": 7951,
+ "▁stay": 7952,
+ "▁foo": 7953,
+ "▁accom": 7954,
+ "▁hers": 7955,
+ "▁нау": 7956,
+ "▁Mün": 7957,
+ "ideos": 7958,
+ "static": 7959,
+ "▁ready": 7960,
+ "]`": 7961,
+ "▁visible": 7962,
+ "▁Hope": 7963,
+ "ulated": 7964,
+ "▁Cult": 7965,
+ "стро": 7966,
+ "Co": 7967,
+ "▁smaller": 7968,
+ "atura": 7969,
+ "▁perfectly": 7970,
+ "req": 7971,
+ "▁proposed": 7972,
+ "▁degli": 7973,
+ "Search": 7974,
+ "▁ich": 7975,
+ "Max": 7976,
+ "▁volume": 7977,
+ "execute": 7978,
+ "gre": 7979,
+ "▁sport": 7980,
+ "udad": 7981,
+ "PT": 7982,
+ "▁Records": 7983,
+ "▁cook": 7984,
+ "▁expand": 7985,
+ "бі": 7986,
+ "▁altri": 7987,
+ "ppet": 7988,
+ "arse": 7989,
+ "▁wet": 7990,
+ "▁Bob": 7991,
+ "▁FC": 7992,
+ "▁Association": 7993,
+ "uje": 7994,
+ "▁fel": 7995,
+ "▁слу": 7996,
+ "▁Big": 7997,
+ "/\\": 7998,
+ "Ge": 7999,
+ "while": 8000,
+ "{(": 8001,
+ "▁sufficient": 8002,
+ "Position": 8003,
+ "▁understanding": 8004,
+ "▁nue": 8005,
+ "▁raz": 8006,
+ "▁ye": 8007,
+ "hem": 8008,
+ "Num": 8009,
+ "▁Project": 8010,
+ "▁Its": 8011,
+ "▁hasta": 8012,
+ "enso": 8013,
+ "▁wire": 8014,
+ "Ret": 8015,
+ "uj": 8016,
+ "proof": 8017,
+ "▁relevant": 8018,
+ "▁partir": 8019,
+ "▁ago": 8020,
+ "ificate": 8021,
+ "▁domin": 8022,
+ "▁boy": 8023,
+ "▁plant": 8024,
+ "▁encoding": 8025,
+ "▁throws": 8026,
+ "▁Rock": 8027,
+ "zone": 8028,
+ "gang": 8029,
+ "widget": 8030,
+ "▁interesting": 8031,
+ "DER": 8032,
+ "▁demon": 8033,
+ "▁office": 8034,
+ "amt": 8035,
+ "äter": 8036,
+ "▁White": 8037,
+ "▁versch": 8038,
+ "▁dieser": 8039,
+ "▁Mount": 8040,
+ "▁students": 8041,
+ "▁Pub": 8042,
+ "▁Де": 8043,
+ "ija": 8044,
+ "▁Cy": 8045,
+ "▁California": 8046,
+ "▁abril": 8047,
+ "äll": 8048,
+ "▁чем": 8049,
+ "TV": 8050,
+ "▁més": 8051,
+ "▁declared": 8052,
+ "▁ю": 8053,
+ "ől": 8054,
+ "appa": 8055,
+ "▁Бе": 8056,
+ "echo": 8057,
+ "numer": 8058,
+ "▁posted": 8059,
+ "▁вер": 8060,
+ "▁године": 8061,
+ "▁weak": 8062,
+ "▁Republic": 8063,
+ "▁champion": 8064,
+ "ensuremath": 8065,
+ "your": 8066,
+ "▁Ober": 8067,
+ "▁Central": 8068,
+ "isa": 8069,
+ "анд": 8070,
+ "yy": 8071,
+ "▁fully": 8072,
+ "▁SD": 8073,
+ "▁Linux": 8074,
+ "▁Scott": 8075,
+ "partment": 8076,
+ "kon": 8077,
+ "▁contract": 8078,
+ "▁OF": 8079,
+ "▁ale": 8080,
+ "▁Ann": 8081,
+ "▁над": 8082,
+ "lah": 8083,
+ "▁Next": 8084,
+ "oren": 8085,
+ "▁disk": 8086,
+ "▁eg": 8087,
+ "atu": 8088,
+ "логи": 8089,
+ "▁games": 8090,
+ "Left": 8091,
+ "▁lu": 8092,
+ "▁finite": 8093,
+ "▁ки": 8094,
+ "▁crash": 8095,
+ "pher": 8096,
+ "exe": 8097,
+ "ATION": 8098,
+ "▁brother": 8099,
+ "Eng": 8100,
+ "tat": 8101,
+ "▁Integer": 8102,
+ "ному": 8103,
+ "▁colon": 8104,
+ "iqu": 8105,
+ ")).": 8106,
+ "ivi": 8107,
+ "▁Method": 8108,
+ "arten": 8109,
+ "Uni": 8110,
+ "vector": 8111,
+ "▁wood": 8112,
+ "рт": 8113,
+ "▁Ле": 8114,
+ "▁siècle": 8115,
+ "▁gent": 8116,
+ "}\r": 8117,
+ "▁contents": 8118,
+ "▁compan": 8119,
+ "Go": 8120,
+ "▁jou": 8121,
+ "uent": 8122,
+ "Async": 8123,
+ "printf": 8124,
+ "▁Model": 8125,
+ "▁kept": 8126,
+ "ASE": 8127,
+ "▁provides": 8128,
+ "▁Abgerufen": 8129,
+ "▁Gall": 8130,
+ "▁Alf": 8131,
+ "SA": 8132,
+ "▁Mem": 8133,
+ "▁kter": 8134,
+ "▁Bru": 8135,
+ "Android": 8136,
+ "(:": 8137,
+ "▁Украї": 8138,
+ "Ne": 8139,
+ "Min": 8140,
+ "atr": 8141,
+ "▁Hal": 8142,
+ "delete": 8143,
+ "odo": 8144,
+ "▁não": 8145,
+ "ène": 8146,
+ "▁calculate": 8147,
+ "Json": 8148,
+ "keys": 8149,
+ "ней": 8150,
+ "▁hence": 8151,
+ "▁ow": 8152,
+ "▁Lib": 8153,
+ "eno": 8154,
+ "▁Love": 8155,
+ "osi": 8156,
+ "wide": 8157,
+ "▁score": 8158,
+ "full": 8159,
+ "вод": 8160,
+ "▁determine": 8161,
+ "▁spaces": 8162,
+ "лова": 8163,
+ "▁peut": 8164,
+ "éral": 8165,
+ "ół": 8166,
+ "▁appoint": 8167,
+ "▁Tw": 8168,
+ "": 8169,
+ "▁Order": 8170,
+ "▁hop": 8171,
+ "random": 8172,
+ "cache": 8173,
+ "▁destroy": 8174,
+ "▁race": 8175,
+ "Tag": 8176,
+ "▁rid": 8177,
+ "▁negative": 8178,
+ "Car": 8179,
+ "ensional": 8180,
+ "dk": 8181,
+ "▁cro": 8182,
+ "▁THEN": 8183,
+ "▁$.": 8184,
+ "ensk": 8185,
+ "NE": 8186,
+ "HO": 8187,
+ "▁kle": 8188,
+ "ospital": 8189,
+ "kte": 8190,
+ "férences": 8191,
+ "udes": 8192,
+ "IR": 8193,
+ "otion": 8194,
+ "▁Real": 8195,
+ "▁Februar": 8196,
+ "ин": 8197,
+ "▁Old": 8198,
+ "кого": 8199,
+ "leich": 8200,
+ "▁р": 8201,
+ "ían": 8202,
+ "▁га": 8203,
+ "cide": 8204,
+ "lab": 8205,
+ "▁pull": 8206,
+ "▁'/": 8207,
+ "Long": 8208,
+ ",$": 8209,
+ "▁appropriate": 8210,
+ "▁была": 8211,
+ "führ": 8212,
+ "▁Media": 8213,
+ "▁manner": 8214,
+ "▁Ге": 8215,
+ "description": 8216,
+ "Bean": 8217,
+ "▁Lar": 8218,
+ "'];": 8219,
+ "▁relation": 8220,
+ "▁Sorry": 8221,
+ "har": 8222,
+ "cpp": 8223,
+ "▁Ko": 8224,
+ "▁execution": 8225,
+ "inos": 8226,
+ "▁bul": 8227,
+ "grade": 8228,
+ "▁Mu": 8229,
+ "▁pil": 8230,
+ "writ": 8231,
+ "ifications": 8232,
+ "inese": 8233,
+ "▁Phili": 8234,
+ "dx": 8235,
+ "▁leading": 8236,
+ "▁Journal": 8237,
+ "oved": 8238,
+ "▁contro": 8239,
+ "нова": 8240,
+ "Yes": 8241,
+ "▁channel": 8242,
+ ")),": 8243,
+ "isten": 8244,
+ "aka": 8245,
+ "ToString": 8246,
+ "mas": 8247,
+ "▁ett": 8248,
+ "▁forces": 8249,
+ "ulations": 8250,
+ "▁Call": 8251,
+ "▁explanation": 8252,
+ "oring": 8253,
+ "ATA": 8254,
+ "chter": 8255,
+ "when": 8256,
+ "VC": 8257,
+ "▁Jahrh": 8258,
+ "Case": 8259,
+ "▁commands": 8260,
+ "▁rich": 8261,
+ "bus": 8262,
+ "Fe": 8263,
+ "mbox": 8264,
+ "▁recon": 8265,
+ "ño": 8266,
+ "▁shape": 8267,
+ "owy": 8268,
+ "entry": 8269,
+ "itable": 8270,
+ "▁election": 8271,
+ "ється": 8272,
+ "▁prep": 8273,
+ "vá": 8274,
+ "▁infin": 8275,
+ "lot": 8276,
+ "▁books": 8277,
+ "▁USA": 8278,
+ "лин": 8279,
+ "▁pom": 8280,
+ "▁nas": 8281,
+ "▁tags": 8282,
+ "▁executed": 8283,
+ "aille": 8284,
+ "lung": 8285,
+ "▁JavaScript": 8286,
+ "▁ball": 8287,
+ "▁ainsi": 8288,
+ "▁Pri": 8289,
+ "{$": 8290,
+ "▁UN": 8291,
+ "▁Ram": 8292,
+ "▁hear": 8293,
+ "▁Ubuntu": 8294,
+ ">();": 8295,
+ "▁pure": 8296,
+ "▁embed": 8297,
+ "ação": 8298,
+ "controller": 8299,
+ "▁married": 8300,
+ "▁Fol": 8301,
+ "famil": 8302,
+ "▁prec": 8303,
+ "▁recurs": 8304,
+ "pad": 8305,
+ "istration": 8306,
+ "▁respectively": 8307,
+ "[$": 8308,
+ "autor": 8309,
+ "▁grav": 8310,
+ "iera": 8311,
+ "azioni": 8312,
+ "▁Bul": 8313,
+ "▁Australia": 8314,
+ "mond": 8315,
+ "▁Tro": 8316,
+ "▁Ele": 8317,
+ "packages": 8318,
+ "msdn": 8319,
+ "▁Als": 8320,
+ "▁przy": 8321,
+ "ART": 8322,
+ "▁charge": 8323,
+ "▁applications": 8324,
+ "Unit": 8325,
+ "aren": 8326,
+ "▁sudden": 8327,
+ "ometer": 8328,
+ "▁dot": 8329,
+ "acji": 8330,
+ "ктор": 8331,
+ "imin": 8332,
+ "ening": 8333,
+ "▁donde": 8334,
+ "▁Ho": 8335,
+ "tree": 8336,
+ "mb": 8337,
+ "▁drag": 8338,
+ "aje": 8339,
+ "▁invalid": 8340,
+ "▁finish": 8341,
+ "laim": 8342,
+ "▁feed": 8343,
+ "▁Nap": 8344,
+ "room": 8345,
+ "images": 8346,
+ "▁сай": 8347,
+ "▁succ": 8348,
+ "iffer": 8349,
+ "▁año": 8350,
+ "▁cual": 8351,
+ "мери": 8352,
+ "DR": 8353,
+ "▁Bilder": 8354,
+ "бра": 8355,
+ "rait": 8356,
+ "pan": 8357,
+ "ень": 8358,
+ "▁distinct": 8359,
+ "▁Kn": 8360,
+ "önig": 8361,
+ "anced": 8362,
+ "▁loading": 8363,
+ "▁Techn": 8364,
+ "▁Sel": 8365,
+ "mus": 8366,
+ "▁rail": 8367,
+ "▁student": 8368,
+ "▁notice": 8369,
+ "▁sla": 8370,
+ "▁Да": 8371,
+ "▁guard": 8372,
+ "▁Day": 8373,
+ "вали": 8374,
+ "Option": 8375,
+ "aison": 8376,
+ "ipp": 8377,
+ "▁Jun": 8378,
+ "▁fell": 8379,
+ "▁absolute": 8380,
+ "ове": 8381,
+ "debug": 8382,
+ "▁Sud": 8383,
+ "пы": 8384,
+ "ugins": 8385,
+ "▁views": 8386,
+ "lay": 8387,
+ "▁surr": 8388,
+ "▁stood": 8389,
+ "▁ві": 8390,
+ "selected": 8391,
+ "гі": 8392,
+ "▁attributes": 8393,
+ "final": 8394,
+ "enda": 8395,
+ "▁Bon": 8396,
+ "ners": 8397,
+ "▁Wer": 8398,
+ "bur": 8399,
+ "ittel": 8400,
+ "▁moving": 8401,
+ "▁Plan": 8402,
+ "isches": 8403,
+ "Java": 8404,
+ "▁basis": 8405,
+ "▁Bus": 8406,
+ "▁Au": 8407,
+ "▁Ill": 8408,
+ "▁время": 8409,
+ "▁цент": 8410,
+ "handle": 8411,
+ "ступ": 8412,
+ "▁Far": 8413,
+ "▁oraz": 8414,
+ "ocr": 8415,
+ "▁seit": 8416,
+ "onder": 8417,
+ "дом": 8418,
+ ":/": 8419,
+ "chor": 8420,
+ "▁Town": 8421,
+ "▁definit": 8422,
+ "react": 8423,
+ "▁piece": 8424,
+ "▁Karl": 8425,
+ "CI": 8426,
+ "▁Application": 8427,
+ "unter": 8428,
+ "▁formed": 8429,
+ "▁пу": 8430,
+ "Bo": 8431,
+ "▁Daniel": 8432,
+ "▁пла": 8433,
+ "Body": 8434,
+ "})$": 8435,
+ "▁были": 8436,
+ "▁earth": 8437,
+ "гла": 8438,
+ "There": 8439,
+ "▁стра": 8440,
+ "▁ville": 8441,
+ "▁centre": 8442,
+ ")\r": 8443,
+ "▁helpful": 8444,
+ "▁++": 8445,
+ "▁CG": 8446,
+ "izione": 8447,
+ "▁Game": 8448,
+ "▁Which": 8449,
+ "▁pip": 8450,
+ "▁Portug": 8451,
+ "DS": 8452,
+ "▁describe": 8453,
+ "▁checking": 8454,
+ "▁manager": 8455,
+ "BO": 8456,
+ "▁Bundes": 8457,
+ "buch": 8458,
+ "▁decided": 8459,
+ "▁Jahrhundert": 8460,
+ "▁fif": 8461,
+ "efficient": 8462,
+ "anci": 8463,
+ "braries": 8464,
+ "▁fails": 8465,
+ "▁kernel": 8466,
+ "▁Gl": 8467,
+ "▁Nacional": 8468,
+ "▁proceed": 8469,
+ "▁fuer": 8470,
+ "▁living": 8471,
+ "▁successfully": 8472,
+ "▁faster": 8473,
+ "▁contre": 8474,
+ "▁prison": 8475,
+ "ORT": 8476,
+ "help": 8477,
+ "▁autor": 8478,
+ "ław": 8479,
+ "ają": 8480,
+ "▁Arm": 8481,
+ "▁provin": 8482,
+ "▁naam": 8483,
+ "/#": 8484,
+ "sed": 8485,
+ "▁gesch": 8486,
+ "▁мар": 8487,
+ "esk": 8488,
+ "term": 8489,
+ "▁Tex": 8490,
+ "iring": 8491,
+ "▁tools": 8492,
+ "PDF": 8493,
+ "▁ult": 8494,
+ "issenschaft": 8495,
+ "▁couldn": 8496,
+ "ding": 8497,
+ "Dep": 8498,
+ "{-": 8499,
+ "▁predict": 8500,
+ "antage": 8501,
+ "▁Like": 8502,
+ "▁Би": 8503,
+ "tools": 8504,
+ "estra": 8505,
+ "▁ki": 8506,
+ "▁Jim": 8507,
+ "star": 8508,
+ "▁remark": 8509,
+ "óg": 8510,
+ "nabla": 8511,
+ "▁Although": 8512,
+ "mode": 8513,
+ "Host": 8514,
+ "▁strange": 8515,
+ "None": 8516,
+ "black": 8517,
+ "▁Festival": 8518,
+ "▁IS": 8519,
+ "anza": 8520,
+ "▁(-": 8521,
+ "icket": 8522,
+ "кола": 8523,
+ "▁Jes": 8524,
+ "▁flex": 8525,
+ "▁À": 8526,
+ "▁Network": 8527,
+ "▁EX": 8528,
+ "▁enero": 8529,
+ "!”": 8530,
+ "▁Ort": 8531,
+ "▁alors": 8532,
+ "▁Original": 8533,
+ "▁zo": 8534,
+ "ными": 8535,
+ "▁spl": 8536,
+ "Draw": 8537,
+ "yond": 8538,
+ "──": 8539,
+ "▁Ot": 8540,
+ "▁dram": 8541,
+ "▁division": 8542,
+ "▁efficient": 8543,
+ "▁Га": 8544,
+ "▁vier": 8545,
+ "nak": 8546,
+ "LS": 8547,
+ "▁spirit": 8548,
+ "zeichnet": 8549,
+ "▁dici": 8550,
+ "clear": 8551,
+ "copy": 8552,
+ "yar": 8553,
+ "▁році": 8554,
+ "usqu": 8555,
+ "▁nous": 8556,
+ "▁blev": 8557,
+ "жде": 8558,
+ "Arg": 8559,
+ "▁performed": 8560,
+ "▁Make": 8561,
+ "▁Carol": 8562,
+ "etto": 8563,
+ "▁Sand": 8564,
+ "▁Disc": 8565,
+ "Enc": 8566,
+ "rero": 8567,
+ "hash": 8568,
+ "▁focus": 8569,
+ "▁attention": 8570,
+ "▁agre": 8571,
+ "▁divis": 8572,
+ "▁было": 8573,
+ "▁ej": 8574,
+ "▁march": 8575,
+ "▁phase": 8576,
+ "ías": 8577,
+ "▁phil": 8578,
+ "▁Pap": 8579,
+ "▁river": 8580,
+ "▁caused": 8581,
+ "plugin": 8582,
+ "▁Team": 8583,
+ "uler": 8584,
+ "▁$(\"#": 8585,
+ "iej": 8586,
+ "ISBN": 8587,
+ "nam": 8588,
+ "▁fight": 8589,
+ "vid": 8590,
+ "▁Lud": 8591,
+ "Selected": 8592,
+ ":@\"": 8593,
+ "▁Pod": 8594,
+ "▁années": 8595,
+ "arios": 8596,
+ "▁deutscher": 8597,
+ "▁NA": 8598,
+ "▁ию": 8599,
+ "▁dictionary": 8600,
+ "▁Ла": 8601,
+ "▁Tri": 8602,
+ "èn": 8603,
+ "▁political": 8604,
+ "ridge": 8605,
+ "atten": 8606,
+ "▁circle": 8607,
+ "▁transport": 8608,
+ "emas": 8609,
+ "FC": 8610,
+ "▁replaced": 8611,
+ "▁Aud": 8612,
+ "iska": 8613,
+ "Configuration": 8614,
+ "▁soort": 8615,
+ "▁Не": 8616,
+ "▁sequ": 8617,
+ "PRO": 8618,
+ "▁bud": 8619,
+ "▁{{": 8620,
+ "ließ": 8621,
+ "▁Mas": 8622,
+ "ders": 8623,
+ "usammen": 8624,
+ "esa": 8625,
+ "▁Ly": 8626,
+ "вро": 8627,
+ "mac": 8628,
+ "▁испо": 8629,
+ "▁suc": 8630,
+ "uy": 8631,
+ "▁illustr": 8632,
+ "▁primera": 8633,
+ "ilation": 8634,
+ "▁storage": 8635,
+ "▁params": 8636,
+ "kaz": 8637,
+ "▁terminal": 8638,
+ "раль": 8639,
+ "▁holds": 8640,
+ "лось": 8641,
+ "▁nad": 8642,
+ "”.": 8643,
+ "▁octubre": 8644,
+ "bul": 8645,
+ "▁hus": 8646,
+ "ULT": 8647,
+ "▁également": 8648,
+ "▁Mill": 8649,
+ "ład": 8650,
+ "▁contiene": 8651,
+ "\"?": 8652,
+ "▁>>>": 8653,
+ "Que": 8654,
+ " ": 8655,
+ "▁plain": 8656,
+ "ativa": 8657,
+ "ocker": 8658,
+ "Names": 8659,
+ "▁Jud": 8660,
+ "▁agree": 8661,
+ "▁Gemeinde": 8662,
+ "lare": 8663,
+ "каза": 8664,
+ "▁starts": 8665,
+ "▁price": 8666,
+ "Target": 8667,
+ "cus": 8668,
+ "▁Instead": 8669,
+ ".;": 8670,
+ "▁alternative": 8671,
+ "▁вла": 8672,
+ "IE": 8673,
+ "▁organiz": 8674,
+ "inu": 8675,
+ "▁completed": 8676,
+ "▁carry": 8677,
+ "atom": 8678,
+ "▁depending": 8679,
+ "▁Our": 8680,
+ "▁insp": 8681,
+ "▁&\\": 8682,
+ "aily": 8683,
+ "irection": 8684,
+ "фа": 8685,
+ "▁defe": 8686,
+ "TAC": 8687,
+ "▁designed": 8688,
+ "▁voir": 8689,
+ "break": 8690,
+ "▁partie": 8691,
+ "▁Jahren": 8692,
+ "▁studio": 8693,
+ "▁jour": 8694,
+ "▁Notes": 8695,
+ "fire": 8696,
+ "house": 8697,
+ "success": 8698,
+ "▁Juan": 8699,
+ "JS": 8700,
+ "▁Custom": 8701,
+ "▁besch": 8702,
+ "▁stated": 8703,
+ "bootstrap": 8704,
+ "ött": 8705,
+ "ozzá": 8706,
+ "▁CON": 8707,
+ "hav": 8708,
+ "▁sleep": 8709,
+ "eda": 8710,
+ "hot": 8711,
+ "ánd": 8712,
+ "▁Sy": 8713,
+ "▁temps": 8714,
+ "amar": 8715,
+ "▁scal": 8716,
+ "▁ast": 8717,
+ "▁opening": 8718,
+ "clipse": 8719,
+ "▁programming": 8720,
+ "▁letters": 8721,
+ "▁profile": 8722,
+ "nah": 8723,
+ "▁beyond": 8724,
+ "▁Further": 8725,
+ "faces": 8726,
+ "▁chart": 8727,
+ "зда": 8728,
+ "aign": 8729,
+ "ній": 8730,
+ "▁Rol": 8731,
+ "овано": 8732,
+ "terior": 8733,
+ "wed": 8734,
+ "▁herself": 8735,
+ "▁ng": 8736,
+ "anguages": 8737,
+ "}=\\": 8738,
+ "ynamic": 8739,
+ "▁jug": 8740,
+ "▁Example": 8741,
+ "▁(†": 8742,
+ "▁playing": 8743,
+ "▁usage": 8744,
+ "▁managed": 8745,
+ "▁Natur": 8746,
+ "тери": 8747,
+ "▁Et": 8748,
+ "eria": 8749,
+ "▁daughter": 8750,
+ "нием": 8751,
+ "Fragment": 8752,
+ "▁hol": 8753,
+ "Fl": 8754,
+ "ографи": 8755,
+ "▁ihn": 8756,
+ "üh": 8757,
+ "instance": 8758,
+ "▁comun": 8759,
+ "▁truth": 8760,
+ "▁само": 8761,
+ "▁implemented": 8762,
+ "▁anyway": 8763,
+ "▁Cro": 8764,
+ "фе": 8765,
+ "GC": 8766,
+ "ubuntu": 8767,
+ "types": 8768,
+ "ês": 8769,
+ ".~\\": 8770,
+ "fold": 8771,
+ "▁joined": 8772,
+ "??": 8773,
+ "▁mé": 8774,
+ "▁wild": 8775,
+ "клю": 8776,
+ "rowser": 8777,
+ "▁Home": 8778,
+ "skiej": 8779,
+ "▁JOIN": 8780,
+ "▁juin": 8781,
+ "hof": 8782,
+ "▁dataset": 8783,
+ "жду": 8784,
+ "'))": 8785,
+ "▁miejs": 8786,
+ "API": 8787,
+ "▁edited": 8788,
+ "ools": 8789,
+ "▁seeing": 8790,
+ "ijd": 8791,
+ "▁procedure": 8792,
+ "▁Bras": 8793,
+ "▁signed": 8794,
+ "▁externos": 8795,
+ "▁disapp": 8796,
+ "▁Direct": 8797,
+ "cyc": 8798,
+ "▁consult": 8799,
+ "örd": 8800,
+ "Widget": 8801,
+ "cious": 8802,
+ "sect": 8803,
+ "▁Ди": 8804,
+ "▁wind": 8805,
+ "▁Archivado": 8806,
+ "aml": 8807,
+ "сс": 8808,
+ "Wh": 8809,
+ "kbd": 8810,
+ "▁Army": 8811,
+ "▁suffer": 8812,
+ "artifact": 8813,
+ "▁resolve": 8814,
+ "▁Sport": 8815,
+ "▁це": 8816,
+ "idas": 8817,
+ "▁tax": 8818,
+ "idi": 8819,
+ "▁actions": 8820,
+ "пра": 8821,
+ "pués": 8822,
+ "▁naj": 8823,
+ "False": 8824,
+ "▁chance": 8825,
+ "▁тако": 8826,
+ "äd": 8827,
+ "▁dol": 8828,
+ "▁env": 8829,
+ "▁basically": 8830,
+ "▁Council": 8831,
+ "zte": 8832,
+ "▁displayed": 8833,
+ "nil": 8834,
+ "complete": 8835,
+ "▁Lem": 8836,
+ "iance": 8837,
+ "▁основ": 8838,
+ "▁depend": 8839,
+ "plom": 8840,
+ "ensus": 8841,
+ "uts": 8842,
+ "▁Hot": 8843,
+ "bitr": 8844,
+ "▁validation": 8845,
+ "abb": 8846,
+ "▁тре": 8847,
+ "km": 8848,
+ "zd": 8849,
+ "öff": 8850,
+ "WE": 8851,
+ "▁interested": 8852,
+ "▁{\"": 8853,
+ "aro": 8854,
+ "▁correl": 8855,
+ "▁dedic": 8856,
+ "▁lists": 8857,
+ "▁Bibliografia": 8858,
+ "▁earlier": 8859,
+ "program": 8860,
+ "▁première": 8861,
+ "front": 8862,
+ "Tab": 8863,
+ "ству": 8864,
+ "drop": 8865,
+ "▁fear": 8866,
+ "▁Enlaces": 8867,
+ "▁Capt": 8868,
+ "▁realiz": 8869,
+ "▁hal": 8870,
+ "▁instances": 8871,
+ "▁susp": 8872,
+ "illing": 8873,
+ "%;": 8874,
+ "{}": 8875,
+ "||": 8876,
+ "▁partition": 8877,
+ "▁Build": 8878,
+ "▁wo": 8879,
+ "▁Пер": 8880,
+ "▁director": 8881,
+ "▁Sin": 8882,
+ "тия": 8883,
+ "rsg": 8884,
+ "ouver": 8885,
+ "▁nearly": 8886,
+ "oda": 8887,
+ "ктив": 8888,
+ "▁sir": 8889,
+ "IME": 8890,
+ "▁janvier": 8891,
+ "▁Win": 8892,
+ "Build": 8893,
+ "ieurs": 8894,
+ "INE": 8895,
+ "double": 8896,
+ "Last": 8897,
+ "▁policy": 8898,
+ "store": 8899,
+ "▁observed": 8900,
+ "▁familie": 8901,
+ "nica": 8902,
+ "rey": 8903,
+ "зь": 8904,
+ "▁Year": 8905,
+ "▁developed": 8906,
+ "▁Institute": 8907,
+ "▁reply": 8908,
+ "Comple": 8909,
+ "ician": 8910,
+ "▁Guer": 8911,
+ "▁dall": 8912,
+ "▁desp": 8913,
+ "▁Football": 8914,
+ "Empty": 8915,
+ "cken": 8916,
+ "unda": 8917,
+ "▁Ur": 8918,
+ "▁ig": 8919,
+ "▁Atl": 8920,
+ "author": 8921,
+ "▁Bol": 8922,
+ "zig": 8923,
+ "nat": 8924,
+ "št": 8925,
+ "security": 8926,
+ "onic": 8927,
+ "▁pes": 8928,
+ "itan": 8929,
+ "▁Extern": 8930,
+ "jan": 8931,
+ "VAL": 8932,
+ "▁им": 8933,
+ "bold": 8934,
+ "▁ва": 8935,
+ "▁Мо": 8936,
+ "▁disput": 8937,
+ "▁trick": 8938,
+ "▁ped": 8939,
+ ")^{": 8940,
+ "into": 8941,
+ "Sim": 8942,
+ "▁parallel": 8943,
+ "fox": 8944,
+ "normal": 8945,
+ "inent": 8946,
+ "педи": 8947,
+ "hold": 8948,
+ "OK": 8949,
+ "▁chem": 8950,
+ "▁twice": 8951,
+ "▁username": 8952,
+ "ič": 8953,
+ "▁representation": 8954,
+ "▁journal": 8955,
+ "▁:-": 8956,
+ "▁batt": 8957,
+ "\\%": 8958,
+ "▁certainly": 8959,
+ "▁Exception": 8960,
+ "eps": 8961,
+ "shot": 8962,
+ "ategy": 8963,
+ "Show": 8964,
+ "▁Carl": 8965,
+ "rig": 8966,
+ "▁reported": 8967,
+ "bottom": 8968,
+ "TF": 8969,
+ "▁Francisco": 8970,
+ "nap": 8971,
+ "▁Championship": 8972,
+ "▁court": 8973,
+ "▁sources": 8974,
+ "iour": 8975,
+ "▁conserv": 8976,
+ "dict": 8977,
+ "▁Ру": 8978,
+ "IB": 8979,
+ "▁Ve": 8980,
+ "▁№": 8981,
+ "▁ER": 8982,
+ "\"));": 8983,
+ "▁Point": 8984,
+ "azine": 8985,
+ "▁internet": 8986,
+ "дна": 8987,
+ "▁carried": 8988,
+ "▁Field": 8989,
+ "axis": 8990,
+ "▁Sun": 8991,
+ "▁ave": 8992,
+ "пис": 8993,
+ "ян": 8994,
+ "asy": 8995,
+ "▁julio": 8996,
+ "▁depuis": 8997,
+ "▁suggestion": 8998,
+ "[[": 8999,
+ "▁Archive": 9000,
+ "ęp": 9001,
+ "▁Pra": 9002,
+ "reh": 9003,
+ "▁demonstr": 9004,
+ "фі": 9005,
+ "cmd": 9006,
+ "▁wasn": 9007,
+ "▁phone": 9008,
+ "upload": 9009,
+ "aya": 9010,
+ "тора": 9011,
+ "lines": 9012,
+ "▁indu": 9013,
+ "▁vot": 9014,
+ "▁espa": 9015,
+ "▁bin": 9016,
+ "▁после": 9017,
+ "plan": 9018,
+ "▁junio": 9019,
+ "orial": 9020,
+ "free": 9021,
+ "sterreich": 9022,
+ "▁ду": 9023,
+ "▁linked": 9024,
+ "▁enable": 9025,
+ "PC": 9026,
+ "▁density": 9027,
+ "▁Egy": 9028,
+ "yo": 9029,
+ "endre": 9030,
+ "▁съ": 9031,
+ "▁italiano": 9032,
+ "▁AR": 9033,
+ "▁Pers": 9034,
+ "férés": 9035,
+ "▁скла": 9036,
+ "Var": 9037,
+ "▁Once": 9038,
+ "Red": 9039,
+ "buffer": 9040,
+ "▁Enter": 9041,
+ "▁Š": 9042,
+ "imiento": 9043,
+ "Store": 9044,
+ "▁health": 9045,
+ "vat": 9046,
+ "IST": 9047,
+ "Oh": 9048,
+ "▁kw": 9049,
+ "▁riv": 9050,
+ "▁somewhere": 9051,
+ "ografie": 9052,
+ "private": 9053,
+ "кти": 9054,
+ "▁delay": 9055,
+ "▁Http": 9056,
+ "job": 9057,
+ "rael": 9058,
+ "empor": 9059,
+ "▁diciembre": 9060,
+ "ête": 9061,
+ "цу": 9062,
+ "▁commit": 9063,
+ "oso": 9064,
+ "Values": 9065,
+ "▁headers": 9066,
+ "transform": 9067,
+ "▁processing": 9068,
+ "rå": 9069,
+ "▁Ah": 9070,
+ "▁Node": 9071,
+ "------------": 9072,
+ "▁faire": 9073,
+ "▁hun": 9074,
+ "Player": 9075,
+ "▁review": 9076,
+ "гда": 9077,
+ "▁limited": 9078,
+ "▁Property": 9079,
+ "▁serve": 9080,
+ "riage": 9081,
+ "▁Master": 9082,
+ "▁kann": 9083,
+ "crete": 9084,
+ "phere": 9085,
+ "ёр": 9086,
+ "▁chief": 9087,
+ "▁scene": 9088,
+ "kin": 9089,
+ "▁uniform": 9090,
+ "▁febrero": 9091,
+ "\"}": 9092,
+ "illo": 9093,
+ "ITE": 9094,
+ "ouvel": 9095,
+ "usepackage": 9096,
+ "enth": 9097,
+ "▁quickly": 9098,
+ "Lambda": 9099,
+ "xes": 9100,
+ "▁cells": 9101,
+ "rog": 9102,
+ "amin": 9103,
+ "▁Мар": 9104,
+ "▁mayor": 9105,
+ "player": 9106,
+ "++;": 9107,
+ "▁Насе": 9108,
+ "▁safe": 9109,
+ "▁veloc": 9110,
+ "▁обра": 9111,
+ "Database": 9112,
+ "neh": 9113,
+ "Vert": 9114,
+ "▁fle": 9115,
+ "▁фор": 9116,
+ "▁foreign": 9117,
+ "Abstract": 9118,
+ "▁magn": 9119,
+ "▁modified": 9120,
+ "▁military": 9121,
+ "▁monde": 9122,
+ "▁Action": 9123,
+ "▁bank": 9124,
+ "Serial": 9125,
+ "▁continuous": 9126,
+ "▁gel": 9127,
+ "▁physical": 9128,
+ "▁introduced": 9129,
+ "uture": 9130,
+ "rick": 9131,
+ "▁presented": 9132,
+ "▁Prov": 9133,
+ "▁Both": 9134,
+ "Pos": 9135,
+ "super": 9136,
+ "": 9137,
+ "▁finding": 9138,
+ "nel": 9139,
+ "unde": 9140,
+ "▁från": 9141,
+ "skim": 9142,
+ "▁Hill": 9143,
+ "fn": 9144,
+ "▁Canad": 9145,
+ "▁intended": 9146,
+ "ozzáférés": 9147,
+ "▁juillet": 9148,
+ "▁Wars": 9149,
+ "▁successful": 9150,
+ "▁charg": 9151,
+ "iele": 9152,
+ "omething": 9153,
+ "oku": 9154,
+ "fetch": 9155,
+ "▁}}": 9156,
+ "bank": 9157,
+ "operatorname": 9158,
+ "▁Color": 9159,
+ "▁Card": 9160,
+ "tu": 9161,
+ "▁\",": 9162,
+ "wid": 9163,
+ "▁gep": 9164,
+ "XML": 9165,
+ "================": 9166,
+ "▁Virgin": 9167,
+ "ährend": 9168,
+ "licated": 9169,
+ "Dir": 9170,
+ "zero": 9171,
+ "▁Kal": 9172,
+ "▁Party": 9173,
+ "▁å": 9174,
+ "price": 9175,
+ "don": 9176,
+ "▁warning": 9177,
+ "▁Bad": 9178,
+ "▁Supp": 9179,
+ "▁Liga": 9180,
+ "▁Pierre": 9181,
+ "Record": 9182,
+ "ulator": 9183,
+ "▁Rome": 9184,
+ "▁theorem": 9185,
+ "▁entirely": 9186,
+ "ским": 9187,
+ "het": 9188,
+ "▁dopo": 9189,
+ "Next": 9190,
+ "mlung": 9191,
+ "wig": 9192,
+ "▁Ath": 9193,
+ "▁Sou": 9194,
+ "licher": 9195,
+ "▁sudo": 9196,
+ "ests": 9197,
+ "хів": 9198,
+ "▁septiembre": 9199,
+ "▁micro": 9200,
+ "▁trop": 9201,
+ "fit": 9202,
+ "Core": 9203,
+ "▁Radio": 9204,
+ "▁Organ": 9205,
+ "▁Power": 9206,
+ "CF": 9207,
+ "▁Last": 9208,
+ "▁oppos": 9209,
+ "▁offset": 9210,
+ "▁regia": 9211,
+ "▁minimum": 9212,
+ "▁helped": 9213,
+ "andon": 9214,
+ "ifying": 9215,
+ "ruit": 9216,
+ "enschapp": 9217,
+ "▁bere": 9218,
+ "VM": 9219,
+ "▁Awards": 9220,
+ "▁agr": 9221,
+ "ynomial": 9222,
+ "enced": 9223,
+ "▁devices": 9224,
+ "▁bot": 9225,
+ "▁firm": 9226,
+ "▁writer": 9227,
+ "▁ring": 9228,
+ ".-": 9229,
+ "istes": 9230,
+ "lä": 9231,
+ "▁mel": 9232,
+ "entation": 9233,
+ "▁Schw": 9234,
+ "▁nome": 9235,
+ "▁pobla": 9236,
+ "▁woj": 9237,
+ "▁ul": 9238,
+ "ento": 9239,
+ "ых": 9240,
+ "▁resist": 9241,
+ "▁remains": 9242,
+ "▁Ca": 9243,
+ "aña": 9244,
+ "▁Court": 9245,
+ "utable": 9246,
+ "entially": 9247,
+ "▁trat": 9248,
+ "▁Visual": 9249,
+ "▁restrict": 9250,
+ "▁previously": 9251,
+ "cation": 9252,
+ "▁осо": 9253,
+ "▁MySQL": 9254,
+ "för": 9255,
+ "cala": 9256,
+ "▁culture": 9257,
+ "live": 9258,
+ "▁accepted": 9259,
+ "Did": 9260,
+ "▁hous": 9261,
+ "▁selection": 9262,
+ "▁decre": 9263,
+ "margin": 9264,
+ "urb": 9265,
+ "▁Inc": 9266,
+ "▁Many": 9267,
+ "ibt": 9268,
+ "▁succeed": 9269,
+ "Binding": 9270,
+ "cí": 9271,
+ "▁Rog": 9272,
+ "▁shouldn": 9273,
+ "cloud": 9274,
+ "▁dz": 9275,
+ "вав": 9276,
+ "▁pix": 9277,
+ "small": 9278,
+ "▁projects": 9279,
+ "▁OK": 9280,
+ "▁latest": 9281,
+ "▁references": 9282,
+ "Program": 9283,
+ "▁erst": 9284,
+ "▁як": 9285,
+ "▁kam": 9286,
+ "▁Camb": 9287,
+ "ellt": 9288,
+ "öd": 9289,
+ "none": 9290,
+ "▁jusqu": 9291,
+ "king": 9292,
+ "▁Ped": 9293,
+ "assert": 9294,
+ "CS": 9295,
+ "rito": 9296,
+ "essa": 9297,
+ "лько": 9298,
+ "▁Von": 9299,
+ "▁Edward": 9300,
+ "▁impossible": 9301,
+ "np": 9302,
+ "words": 9303,
+ "ielt": 9304,
+ "▁Page": 9305,
+ "lers": 9306,
+ "▁pier": 9307,
+ "▁области": 9308,
+ "ittee": 9309,
+ "▁([": 9310,
+ "▁trust": 9311,
+ "NG": 9312,
+ "redu": 9313,
+ "<<": 9314,
+ "rial": 9315,
+ "▁products": 9316,
+ "▁Ern": 9317,
+ "rière": 9318,
+ "гов": 9319,
+ "▁Reich": 9320,
+ "▁Road": 9321,
+ "▁nested": 9322,
+ "Display": 9323,
+ "▁strength": 9324,
+ "ografía": 9325,
+ "▁announced": 9326,
+ "▁Science": 9327,
+ "▁райо": 9328,
+ "Parameter": 9329,
+ "▁Task": 9330,
+ "uments": 9331,
+ "▁adopt": 9332,
+ "▁Only": 9333,
+ "ють": 9334,
+ "▁cli": 9335,
+ "▁lem": 9336,
+ "stood": 9337,
+ "▁FI": 9338,
+ "ências": 9339,
+ "ponents": 9340,
+ "]$": 9341,
+ "comment": 9342,
+ "▁ya": 9343,
+ "should": 9344,
+ "ike": 9345,
+ "tim": 9346,
+ "ellig": 9347,
+ "▁sending": 9348,
+ "▁ajax": 9349,
+ "▁noviembre": 9350,
+ "umes": 9351,
+ "▁weiter": 9352,
+ "▁Dans": 9353,
+ "opp": 9354,
+ "▁septembre": 9355,
+ "otimes": 9356,
+ "ző": 9357,
+ "▁ep": 9358,
+ "vere": 9359,
+ "▁oh": 9360,
+ ":=": 9361,
+ "▁Song": 9362,
+ "”,": 9363,
+ "▁viv": 9364,
+ "▁queries": 9365,
+ "▁vá": 9366,
+ "▁décembre": 9367,
+ "▁unable": 9368,
+ "▁erh": 9369,
+ "▁`-": 9370,
+ "▁Lee": 9371,
+ "▁ersten": 9372,
+ "ôt": 9373,
+ "стве": 9374,
+ "TS": 9375,
+ "▁fragment": 9376,
+ "▁wide": 9377,
+ "▁suff": 9378,
+ "▁dut": 9379,
+ "▁Vere": 9380,
+ "іс": 9381,
+ "ading": 9382,
+ "iego": 9383,
+ "icago": 9384,
+ "▁Argent": 9385,
+ "orer": 9386,
+ "ennes": 9387,
+ "▁Leb": 9388,
+ "linux": 9389,
+ "acing": 9390,
+ "▁broken": 9391,
+ "tp": 9392,
+ "ío": 9393,
+ "abeth": 9394,
+ "istas": 9395,
+ "gew": 9396,
+ "ième": 9397,
+ "cas": 9398,
+ "▁preced": 9399,
+ "▁Dal": 9400,
+ "▁compared": 9401,
+ "equiv": 9402,
+ "illy": 9403,
+ "teen": 9404,
+ "▁Console": 9405,
+ "▁strict": 9406,
+ "itaire": 9407,
+ "▁ED": 9408,
+ "entials": 9409,
+ "▁perman": 9410,
+ "▁tous": 9411,
+ "▁geme": 9412,
+ "▁extrem": 9413,
+ "▁окру": 9414,
+ "kg": 9415,
+ "▁heavy": 9416,
+ "▁avril": 9417,
+ "▁anti": 9418,
+ "▁octobre": 9419,
+ "utf": 9420,
+ "helm": 9421,
+ "amples": 9422,
+ "▁(_": 9423,
+ "aken": 9424,
+ "▁dear": 9425,
+ "▁opinion": 9426,
+ "▁fish": 9427,
+ "▁Alexander": 9428,
+ "iw": 9429,
+ "им": 9430,
+ "cadem": 9431,
+ "▁reflect": 9432,
+ "▁др": 9433,
+ "▁trib": 9434,
+ "common": 9435,
+ "▁clearly": 9436,
+ "▁saf": 9437,
+ "=\"@+": 9438,
+ "▁Мос": 9439,
+ "сите": 9440,
+ "eqnarray": 9441,
+ "nung": 9442,
+ "▁relationship": 9443,
+ "▁Sem": 9444,
+ "▁killed": 9445,
+ "ted": 9446,
+ "uno": 9447,
+ "▁лі": 9448,
+ "▁wid": 9449,
+ "anning": 9450,
+ "▁panel": 9451,
+ "▁Leben": 9452,
+ "▁ruby": 9453,
+ "ansion": 9454,
+ "▁aren": 9455,
+ "tabular": 9456,
+ "alet": 9457,
+ "}$$": 9458,
+ "▁Lake": 9459,
+ "▁suite": 9460,
+ "▁minor": 9461,
+ "Hozzáférés": 9462,
+ "▁xmlns": 9463,
+ "DIR": 9464,
+ "driver": 9465,
+ "ints": 9466,
+ "▁vic": 9467,
+ "AND": 9468,
+ "prim": 9469,
+ "сылки": 9470,
+ "▁Ox": 9471,
+ "TC": 9472,
+ "rivial": 9473,
+ "atie": 9474,
+ "▁eight": 9475,
+ "▁conflic": 9476,
+ "angel": 9477,
+ "▁Begr": 9478,
+ "▁explicitly": 9479,
+ "ются": 9480,
+ "▁Dev": 9481,
+ "render": 9482,
+ "▁reprodu": 9483,
+ "▁cré": 9484,
+ "Gu": 9485,
+ "MB": 9486,
+ "▁kön": 9487,
+ "▁remained": 9488,
+ "▁kl": 9489,
+ "хов": 9490,
+ "▁byl": 9491,
+ "Phi": 9492,
+ "▁detail": 9493,
+ "jav": 9494,
+ "▁mouse": 9495,
+ "Bas": 9496,
+ "ię": 9497,
+ "asser": 9498,
+ "hs": 9499,
+ "▁shift": 9500,
+ "▁últ": 9501,
+ "rand": 9502,
+ "▁btn": 9503,
+ "raz": 9504,
+ "▁pul": 9505,
+ "▁statements": 9506,
+ "filename": 9507,
+ "▁prompt": 9508,
+ "élé": 9509,
+ "ikz": 9510,
+ "▁Sus": 9511,
+ "▁debut": 9512,
+ "Stat": 9513,
+ "forms": 9514,
+ "▁Hein": 9515,
+ "stadt": 9516,
+ "ennis": 9517,
+ "пол": 9518,
+ "arante": 9519,
+ "цій": 9520,
+ "▁queue": 9521,
+ "▁reci": 9522,
+ "▁sta": 9523,
+ "ynchron": 9524,
+ "centering": 9525,
+ "Some": 9526,
+ "Graph": 9527,
+ "▁tested": 9528,
+ "▁Kunst": 9529,
+ "ом": 9530,
+ "▁Nothing": 9531,
+ "ieu": 9532,
+ "“.": 9533,
+ "Bundle": 9534,
+ "▁oficial": 9535,
+ "allow": 9536,
+ "▁React": 9537,
+ "▁Library": 9538,
+ "blue": 9539,
+ "▁verw": 9540,
+ "▁pare": 9541,
+ "▁Friedrich": 9542,
+ "▁aware": 9543,
+ "Exp": 9544,
+ "▁effects": 9545,
+ "▁горо": 9546,
+ "lopedia": 9547,
+ "▁Ven": 9548,
+ "rale": 9549,
+ "▁Final": 9550,
+ "▁propos": 9551,
+ "lacement": 9552,
+ "kten": 9553,
+ "▁novel": 9554,
+ "orter": 9555,
+ "▁Germany": 9556,
+ "▁django": 9557,
+ "▁transition": 9558,
+ "▁happened": 9559,
+ "▁beautiful": 9560,
+ "▁neither": 9561,
+ "▁libraries": 9562,
+ "▁hide": 9563,
+ "alg": 9564,
+ "▁aspect": 9565,
+ "▁forget": 9566,
+ "cademy": 9567,
+ "onte": 9568,
+ "refix": 9569,
+ "▁cloud": 9570,
+ "ned": 9571,
+ "cdots": 9572,
+ "register": 9573,
+ "nym": 9574,
+ ".):": 9575,
+ "▁Jew": 9576,
+ "▁très": 9577,
+ "ниче": 9578,
+ "▁Dor": 9579,
+ "▁proc": 9580,
+ "▁gan": 9581,
+ "▁є": 9582,
+ "▁Sav": 9583,
+ "ví": 9584,
+ "Settings": 9585,
+ "▁Vari": 9586,
+ "▁cours": 9587,
+ "Ro": 9588,
+ "▁conj": 9589,
+ "▁reasons": 9590,
+ "▁reader": 9591,
+ "лександ": 9592,
+ "icate": 9593,
+ "}),": 9594,
+ "▁tasks": 9595,
+ "▁Ray": 9596,
+ "▁ric": 9597,
+ "Ke": 9598,
+ "onie": 9599,
+ "rf": 9600,
+ ")[": 9601,
+ "▁subsequ": 9602,
+ "▁Turn": 9603,
+ "▁VIAF": 9604,
+ "mathsf": 9605,
+ "HE": 9606,
+ "▁declare": 9607,
+ "▁protocol": 9608,
+ "▁PC": 9609,
+ "цион": 9610,
+ "ViewById": 9611,
+ "▁animation": 9612,
+ "▁confused": 9613,
+ "вич": 9614,
+ "▁enabled": 9615,
+ "owo": 9616,
+ "ást": 9617,
+ "öt": 9618,
+ "▁mand": 9619,
+ "▁Rail": 9620,
+ "fields": 9621,
+ "▁Kap": 9622,
+ "▁algebra": 9623,
+ "▁Су": 9624,
+ "férence": 9625,
+ "▁Current": 9626,
+ "сно": 9627,
+ "▁Lim": 9628,
+ "Params": 9629,
+ "▁Antonio": 9630,
+ "▁tv": 9631,
+ "late": 9632,
+ "ifer": 9633,
+ "Entry": 9634,
+ "▁Serv": 9635,
+ "▁musical": 9636,
+ "▁trace": 9637,
+ "▁scient": 9638,
+ "fic": 9639,
+ "▁forgot": 9640,
+ "video": 9641,
+ "▁older": 9642,
+ "Tree": 9643,
+ "▁uns": 9644,
+ "ники": 9645,
+ "▁Europa": 9646,
+ "▁Zwe": 9647,
+ "▁бе": 9648,
+ "▁vec": 9649,
+ "жу": 9650,
+ "▁▁▁▁▁▁▁▁▁▁▁": 9651,
+ "Match": 9652,
+ "span": 9653,
+ "▁blank": 9654,
+ "▁später": 9655,
+ "▁Ty": 9656,
+ "▁dict": 9657,
+ "ña": 9658,
+ "▁confirm": 9659,
+ "▁vý": 9660,
+ "зан": 9661,
+ "Rel": 9662,
+ "film": 9663,
+ "▁Rot": 9664,
+ "▁Hy": 9665,
+ "ках": 9666,
+ "▁demand": 9667,
+ "▁minist": 9668,
+ "▁Madrid": 9669,
+ "▁usual": 9670,
+ "spiel": 9671,
+ "eros": 9672,
+ "▁tutorial": 9673,
+ "▁Ссылки": 9674,
+ "sys": 9675,
+ "циаль": 9676,
+ "▁spread": 9677,
+ "▁convers": 9678,
+ "▁roll": 9679,
+ "artifactId": 9680,
+ "▁Number": 9681,
+ "▁symmet": 9682,
+ "▁Mult": 9683,
+ "expected": 9684,
+ "▁axis": 9685,
+ "▁matching": 9686,
+ "▁food": 9687,
+ "groupId": 9688,
+ "Mapp": 9689,
+ "▁свя": 9690,
+ "▁vend": 9691,
+ "Found": 9692,
+ "otto": 9693,
+ "Cat": 9694,
+ "crit": 9695,
+ "istent": 9696,
+ "▁drei": 9697,
+ "▁ended": 9698,
+ "▁Tele": 9699,
+ "component": 9700,
+ "▁involved": 9701,
+ "▁Estados": 9702,
+ "▁danger": 9703,
+ "▁chain": 9704,
+ "▁Prom": 9705,
+ "hom": 9706,
+ "▁polít": 9707,
+ "cop": 9708,
+ "▁nap": 9709,
+ "rif": 9710,
+ "plements": 9711,
+ "▁vent": 9712,
+ "anna": 9713,
+ "anted": 9714,
+ "dated": 9715,
+ "anth": 9716,
+ "▁threads": 9717,
+ "зова": 9718,
+ "▁станов": 9719,
+ "▁eerst": 9720,
+ "buf": 9721,
+ "heid": 9722,
+ "▁Ru": 9723,
+ "▁Prim": 9724,
+ "▁migr": 9725,
+ "▁Unidos": 9726,
+ "▁arbitr": 9727,
+ "▁roman": 9728,
+ "ountry": 9729,
+ "ultur": 9730,
+ "▁König": 9731,
+ "▁annot": 9732,
+ "aching": 9733,
+ "▁Haupt": 9734,
+ "umin": 9735,
+ "▁hem": 9736,
+ "ckets": 9737,
+ "bau": 9738,
+ "ection": 9739,
+ "eft": 9740,
+ "▁packages": 9741,
+ "▁Kur": 9742,
+ "thur": 9743,
+ "▁pays": 9744,
+ "liament": 9745,
+ "▁Бу": 9746,
+ "▁cada": 9747,
+ "points": 9748,
+ "ocket": 9749,
+ "▁verb": 9750,
+ "лее": 9751,
+ "▁submit": 9752,
+ "▁san": 9753,
+ "ruby": 9754,
+ "▁east": 9755,
+ "kov": 9756,
+ "▁Verlag": 9757,
+ "▁spot": 9758,
+ "ppo": 9759,
+ "Each": 9760,
+ "jekt": 9761,
+ "▁Biographie": 9762,
+ "▁news": 9763,
+ "▁país": 9764,
+ "ufact": 9765,
+ "▁dia": 9766,
+ "кова": 9767,
+ "▁accompl": 9768,
+ "▁Ét": 9769,
+ "ilities": 9770,
+ "▁ihm": 9771,
+ "invoke": 9772,
+ "▁append": 9773,
+ ".),": 9774,
+ "▁lab": 9775,
+ "anging": 9776,
+ "istan": 9777,
+ "resol": 9778,
+ "▁Section": 9779,
+ "Parent": 9780,
+ "moz": 9781,
+ "Mat": 9782,
+ "styles": 9783,
+ "unden": 9784,
+ "“,": 9785,
+ "irtschaft": 9786,
+ "ким": 9787,
+ "▁Finally": 9788,
+ "phen": 9789,
+ "▁Pac": 9790,
+ "▁ArrayList": 9791,
+ "▁recover": 9792,
+ "▁education": 9793,
+ "models": 9794,
+ "ped": 9795,
+ "▁happy": 9796,
+ "чу": 9797,
+ "▁guerra": 9798,
+ "media": 9799,
+ "OF": 9800,
+ "▁ensure": 9801,
+ "Mark": 9802,
+ "database": 9803,
+ "oggle": 9804,
+ "▁publish": 9805,
+ "OW": 9806,
+ "▁Bau": 9807,
+ "?.": 9808,
+ "▁части": 9809,
+ "▁repository": 9810,
+ "▁Matt": 9811,
+ "high": 9812,
+ "oven": 9813,
+ "▁ger": 9814,
+ "▁unknown": 9815,
+ "Amer": 9816,
+ "▁Brown": 9817,
+ "ALL": 9818,
+ "▁resulting": 9819,
+ "▁bor": 9820,
+ "▁poet": 9821,
+ "ними": 9822,
+ "Email": 9823,
+ "Font": 9824,
+ "▁hist": 9825,
+ "▁today": 9826,
+ "▁Berg": 9827,
+ "▁buttons": 9828,
+ "тал": 9829,
+ "▁sni": 9830,
+ "▁челов": 9831,
+ "Cre": 9832,
+ "▁union": 9833,
+ "▁zich": 9834,
+ "ishop": 9835,
+ "▁quando": 9836,
+ "Po": 9837,
+ "CTION": 9838,
+ "▁Cost": 9839,
+ "судар": 9840,
+ "erved": 9841,
+ "Note": 9842,
+ "Equal": 9843,
+ "лия": 9844,
+ "бур": 9845,
+ "▁abstract": 9846,
+ "stop": 9847,
+ "▁advice": 9848,
+ "▁icon": 9849,
+ "▁travel": 9850,
+ "BS": 9851,
+ "vens": 9852,
+ "▁batch": 9853,
+ "lique": 9854,
+ "sheet": 9855,
+ "▁ihre": 9856,
+ "emon": 9857,
+ "berto": 9858,
+ "▁assigned": 9859,
+ "ью": 9860,
+ "Phone": 9861,
+ "▁award": 9862,
+ "▁functionality": 9863,
+ "alla": 9864,
+ "▁Dam": 9865,
+ "▁ciudad": 9866,
+ "▁cluster": 9867,
+ "Description": 9868,
+ "▁sheet": 9869,
+ "▁Australian": 9870,
+ "▁».": 9871,
+ "▁\"<": 9872,
+ "▁wondering": 9873,
+ "aine": 9874,
+ "▁represented": 9875,
+ "kappa": 9876,
+ "nb": 9877,
+ "▁sy": 9878,
+ "▁Kö": 9879,
+ "=\"#": 9880,
+ "▁seven": 9881,
+ "Directory": 9882,
+ "▁sister": 9883,
+ "plates": 9884,
+ "▁luck": 9885,
+ "▁remaining": 9886,
+ "▁Vill": 9887,
+ "werk": 9888,
+ "anni": 9889,
+ "etti": 9890,
+ "func": 9891,
+ "▁ban": 9892,
+ "ims": 9893,
+ "miss": 9894,
+ "agraph": 9895,
+ "екси": 9896,
+ "▁Ref": 9897,
+ "nitt": 9898,
+ "▁Gab": 9899,
+ "▁andere": 9900,
+ "▁jedoch": 9901,
+ "results": 9902,
+ "!\\": 9903,
+ "▁listed": 9904,
+ "▁loro": 9905,
+ "▁knows": 9906,
+ "жно": 9907,
+ "Rad": 9908,
+ "▁socket": 9909,
+ "multi": 9910,
+ "▁рі": 9911,
+ "rails": 9912,
+ "▁tar": 9913,
+ "▁gentle": 9914,
+ "sett": 9915,
+ "services": 9916,
+ "bound": 9917,
+ "igkeit": 9918,
+ "aja": 9919,
+ "▁cmd": 9920,
+ "agger": 9921,
+ "▁ba": 9922,
+ "▁Belg": 9923,
+ "▁Kle": 9924,
+ "▁wordt": 9925,
+ "▁fost": 9926,
+ "▁dimension": 9927,
+ "Ang": 9928,
+ "uming": 9929,
+ "Obj": 9930,
+ "нен": 9931,
+ "▁Marie": 9932,
+ "exists": 9933,
+ "тро": 9934,
+ "▁боль": 9935,
+ "emente": 9936,
+ "▁Jon": 9937,
+ "SERT": 9938,
+ "▁highest": 9939,
+ "aki": 9940,
+ "▁tres": 9941,
+ "▁circum": 9942,
+ "▁Down": 9943,
+ "ommen": 9944,
+ "urer": 9945,
+ "▁causes": 9946,
+ "venue": 9947,
+ "issance": 9948,
+ "▁influence": 9949,
+ "▁fat": 9950,
+ "реди": 9951,
+ "}\\\\": 9952,
+ "▁entr": 9953,
+ "▁Sign": 9954,
+ "▁кла": 9955,
+ "▁binding": 9956,
+ "essen": 9957,
+ "▁Фран": 9958,
+ "▁Local": 9959,
+ "▁явля": 9960,
+ "appro": 9961,
+ "▁dependencies": 9962,
+ "▁talking": 9963,
+ "▁zurück": 9964,
+ "connection": 9965,
+ "Active": 9966,
+ "bbe": 9967,
+ "irls": 9968,
+ "▁Inf": 9969,
+ "wd": 9970,
+ "▁ис": 9971,
+ "road": 9972,
+ "▁conven": 9973,
+ "ět": 9974,
+ "вез": 9975,
+ "▁entries": 9976,
+ "esc": 9977,
+ "▁bits": 9978,
+ "asso": 9979,
+ "WR": 9980,
+ "ships": 9981,
+ "▁dés": 9982,
+ "esp": 9983,
+ "Make": 9984,
+ "▁familiar": 9985,
+ "Art": 9986,
+ "▁army": 9987,
+ "ctr": 9988,
+ "éric": 9989,
+ "queue": 9990,
+ "▁\\{": 9991,
+ "uela": 9992,
+ "amiento": 9993,
+ "ших": 9994,
+ "▁\"\"\"": 9995,
+ "contr": 9996,
+ "лле": 9997,
+ "FS": 9998,
+ "▁market": 9999,
+ "ång": 10000,
+ "citep": 10001,
+ "Ill": 10002,
+ "rank": 10003,
+ "▁sender": 10004,
+ "▁beim": 10005,
+ "рак": 10006,
+ "▁compat": 10007,
+ "▁occurs": 10008,
+ "▁diese": 10009,
+ "ститу": 10010,
+ "awa": 10011,
+ "▁iOS": 10012,
+ "▁Chinese": 10013,
+ "▁TR": 10014,
+ "▁Ken": 10015,
+ "▁Une": 10016,
+ "▁creates": 10017,
+ "▁showed": 10018,
+ "▁év": 10019,
+ "ologia": 10020,
+ "▁protest": 10021,
+ "▁Pf": 10022,
+ "▁squad": 10023,
+ "++,": 10024,
+ "áv": 10025,
+ "▁essere": 10026,
+ "зя": 10027,
+ "kol": 10028,
+ "▁slightly": 10029,
+ "addr": 10030,
+ "ân": 10031,
+ "▁reduce": 10032,
+ "▁\\(\\": 10033,
+ "▁Dep": 10034,
+ "▁generic": 10035,
+ "Loader": 10036,
+ "ți": 10037,
+ "▁пос": 10038,
+ "▁occasion": 10039,
+ "▁Lady": 10040,
+ "entity": 10041,
+ "▁avant": 10042,
+ "▁Pas": 10043,
+ "aggio": 10044,
+ "\\{": 10045,
+ "пад": 10046,
+ "atholic": 10047,
+ "Password": 10048,
+ "▁respond": 10049,
+ "▁Non": 10050,
+ "AG": 10051,
+ "neg": 10052,
+ "▁ус": 10053,
+ "blob": 10054,
+ "cke": 10055,
+ "▁Consider": 10056,
+ "▁Care": 10057,
+ "iki": 10058,
+ "▁Chicago": 10059,
+ "inden": 10060,
+ "▁Cop": 10061,
+ "]+": 10062,
+ "öm": 10063,
+ "évrier": 10064,
+ "кло": 10065,
+ "alen": 10066,
+ "▁maj": 10067,
+ "racy": 10068,
+ "orte": 10069,
+ "ients": 10070,
+ "ells": 10071,
+ "activity": 10072,
+ "▁runtime": 10073,
+ "NULL": 10074,
+ "▁possibly": 10075,
+ "▁stri": 10076,
+ "izi": 10077,
+ "▁mir": 10078,
+ "▁Version": 10079,
+ "prime": 10080,
+ "▁twenty": 10081,
+ "▁Mah": 10082,
+ "▁sounds": 10083,
+ "шен": 10084,
+ "clusion": 10085,
+ "acz": 10086,
+ "▁determined": 10087,
+ "▁Rep": 10088,
+ "▁Landes": 10089,
+ "▁wall": 10090,
+ "igi": 10091,
+ "▁reset": 10092,
+ "шо": 10093,
+ "yan": 10094,
+ "Met": 10095,
+ "ei": 10096,
+ "▁appearance": 10097,
+ "▁fois": 10098,
+ "▁nell": 10099,
+ "esi": 10100,
+ "ёт": 10101,
+ "loor": 10102,
+ "▁Ul": 10103,
+ "▁resolution": 10104,
+ "▁fot": 10105,
+ "▁throughout": 10106,
+ "▁ri": 10107,
+ "Level": 10108,
+ "pool": 10109,
+ "▁identity": 10110,
+ "▁janu": 10111,
+ "▁imper": 10112,
+ "▁över": 10113,
+ "}`": 10114,
+ "▁infer": 10115,
+ "▁dates": 10116,
+ "▁Standard": 10117,
+ "force": 10118,
+ "ockey": 10119,
+ "tera": 10120,
+ "▁distingu": 10121,
+ "▁presence": 10122,
+ "lica": 10123,
+ "▁leaving": 10124,
+ "itung": 10125,
+ "éb": 10126,
+ "▁establish": 10127,
+ "▁maar": 10128,
+ "adi": 10129,
+ "▁News": 10130,
+ "azon": 10131,
+ "folg": 10132,
+ "▁Hence": 10133,
+ "▁Ye": 10134,
+ "▁fab": 10135,
+ "▁führ": 10136,
+ "itmap": 10137,
+ "▁Vers": 10138,
+ "rov": 10139,
+ "Sign": 10140,
+ "device": 10141,
+ "Sigma": 10142,
+ "▁wetenschapp": 10143,
+ "▁Ps": 10144,
+ "PATH": 10145,
+ "▁torn": 10146,
+ "vest": 10147,
+ "стов": 10148,
+ "account": 10149,
+ "▁largest": 10150,
+ "▁percent": 10151,
+ "▁Women": 10152,
+ "▁img": 10153,
+ "tool": 10154,
+ "▁roce": 10155,
+ "▁ay": 10156,
+ "inet": 10157,
+ "▁août": 10158,
+ "▁polynomial": 10159,
+ "▁integral": 10160,
+ "▁areas": 10161,
+ "}'": 10162,
+ "▁hyp": 10163,
+ "loyee": 10164,
+ "таль": 10165,
+ "▁proxy": 10166,
+ "▁Wy": 10167,
+ "▁Мекси": 10168,
+ "▁escape": 10169,
+ "olar": 10170,
+ "▁mistake": 10171,
+ ")}{": 10172,
+ "▁Pot": 10173,
+ "▁processes": 10174,
+ "\">\r": 10175,
+ "halten": 10176,
+ "zza": 10177,
+ "amo": 10178,
+ "кре": 10179,
+ "▁Wood": 10180,
+ "ør": 10181,
+ "▁сер": 10182,
+ "ocia": 10183,
+ "two": 10184,
+ "profile": 10185,
+ "▁Ast": 10186,
+ "embro": 10187,
+ "▁arms": 10188,
+ "inas": 10189,
+ "innen": 10190,
+ "▁msg": 10191,
+ "INT": 10192,
+ "▁batter": 10193,
+ "ignment": 10194,
+ "▁vy": 10195,
+ "Hrsg": 10196,
+ "▁Grund": 10197,
+ "roc": 10198,
+ "seg": 10199,
+ "▁decor": 10200,
+ "▁eventually": 10201,
+ ">,": 10202,
+ "▁pag": 10203,
+ "anten": 10204,
+ "▁strugg": 10205,
+ "}^\\": 10206,
+ "daten": 10207,
+ "▁rela": 10208,
+ "пов": 10209,
+ "▁коро": 10210,
+ "▁Bos": 10211,
+ "▁labor": 10212,
+ "▁Secret": 10213,
+ "ugen": 10214,
+ "▁jap": 10215,
+ "▁husband": 10216,
+ "▁Album": 10217,
+ "▁etwa": 10218,
+ "▁произ": 10219,
+ "richt": 10220,
+ "rach": 10221,
+ "bat": 10222,
+ "▁prepar": 10223,
+ "▁Stock": 10224,
+ "▁lack": 10225,
+ "хід": 10226,
+ "▁hogy": 10227,
+ "▁Chrome": 10228,
+ "▁Admin": 10229,
+ "▁comparison": 10230,
+ "▁increasing": 10231,
+ "нг": 10232,
+ "imi": 10233,
+ "Db": 10234,
+ "▁gef": 10235,
+ "ucht": 10236,
+ "ése": 10237,
+ "gence": 10238,
+ "▁Core": 10239,
+ "▁incorrect": 10240,
+ "▁assuming": 10241,
+ "ourse": 10242,
+ "ieron": 10243,
+ "▁Theorem": 10244,
+ "▁casa": 10245,
+ "jes": 10246,
+ "▁дере": 10247,
+ "▁`\"": 10248,
+ "LD": 10249,
+ "äß": 10250,
+ "Deb": 10251,
+ "▁suiv": 10252,
+ "▁Bank": 10253,
+ "libs": 10254,
+ "▁Leon": 10255,
+ "▁quart": 10256,
+ "▁professional": 10257,
+ "▁tiene": 10258,
+ "▁accomp": 10259,
+ "стер": 10260,
+ "▁UK": 10261,
+ "NN": 10262,
+ "▁lí": 10263,
+ "ця": 10264,
+ "kel": 10265,
+ "▁•": 10266,
+ "▁dise": 10267,
+ "onto": 10268,
+ "▁má": 10269,
+ "ifs": 10270,
+ "bild": 10271,
+ "▁compute": 10272,
+ "▁éd": 10273,
+ "ję": 10274,
+ "▁Mé": 10275,
+ "▁languages": 10276,
+ "▁Times": 10277,
+ "cen": 10278,
+ "▁авто": 10279,
+ "ým": 10280,
+ "enez": 10281,
+ "▁upp": 10282,
+ "▁méd": 10283,
+ "▁cuando": 10284,
+ "од": 10285,
+ "Intent": 10286,
+ "eerd": 10287,
+ "▁Tal": 10288,
+ "offset": 10289,
+ "▁haben": 10290,
+ "reme": 10291,
+ "▁Stack": 10292,
+ "▁dri": 10293,
+ "▁seinem": 10294,
+ "▁février": 10295,
+ "▁combination": 10296,
+ "▁soll": 10297,
+ "▁movement": 10298,
+ "Spec": 10299,
+ "кры": 10300,
+ "retch": 10301,
+ "Offset": 10302,
+ "Root": 10303,
+ "Ар": 10304,
+ "wart": 10305,
+ "▁Follow": 10306,
+ "▁Social": 10307,
+ "ников": 10308,
+ "▁→": 10309,
+ "Don": 10310,
+ "▁harm": 10311,
+ "agr": 10312,
+ "nego": 10313,
+ "resource": 10314,
+ "▁Luc": 10315,
+ "▁seinen": 10316,
+ "▁Department": 10317,
+ "▁Update": 10318,
+ "▁Texas": 10319,
+ "▁reve": 10320,
+ "▁Pos": 10321,
+ "▁shot": 10322,
+ "othe": 10323,
+ "▁repeated": 10324,
+ "▁recently": 10325,
+ "ában": 10326,
+ "aks": 10327,
+ "пан": 10328,
+ "▁cha": 10329,
+ "ohl": 10330,
+ "▁tend": 10331,
+ "▁дво": 10332,
+ "chts": 10333,
+ "çaise": 10334,
+ "pling": 10335,
+ "album": 10336,
+ "ej": 10337,
+ "▁`[": 10338,
+ "maps": 10339,
+ "▁units": 10340,
+ "▁": 15110,
+ "▁pří": 15111,
+ "pandas": 15112,
+ "▁Plus": 15113,
+ "yll": 15114,
+ "▁terror": 15115,
+ "▁crim": 15116,
+ "▁zak": 15117,
+ "issue": 15118,
+ "panel": 15119,
+ "svg": 15120,
+ "▁reb": 15121,
+ "Customer": 15122,
+ "switch": 15123,
+ "обра": 15124,
+ "▁Championships": 15125,
+ "clo": 15126,
+ "atte": 15127,
+ "▁anymore": 15128,
+ "▁excellent": 15129,
+ "▁opportunity": 15130,
+ "▁Bahn": 15131,
+ "чин": 15132,
+ "eting": 15133,
+ "▁incident": 15134,
+ "tom": 15135,
+ "Pers": 15136,
+ "bben": 15137,
+ "ственной": 15138,
+ "их": 15139,
+ "router": 15140,
+ "▁newly": 15141,
+ "▁silence": 15142,
+ "▁GNU": 15143,
+ "▁Rails": 15144,
+ "▁Amb": 15145,
+ "▁Qual": 15146,
+ "▁Schaus": 15147,
+ "▁Sohn": 15148,
+ "▁ALL": 15149,
+ "▁royal": 15150,
+ "▁£": 15151,
+ "wię": 15152,
+ "▁entfer": 15153,
+ "▁Remove": 15154,
+ "▁hardly": 15155,
+ "Using": 15156,
+ "лог": 15157,
+ "▁Ich": 15158,
+ "▁derni": 15159,
+ "▁Connection": 15160,
+ "fish": 15161,
+ "▁Inform": 15162,
+ "▁Ener": 15163,
+ "roit": 15164,
+ "Bbb": 15165,
+ "ViewModel": 15166,
+ "Video": 15167,
+ "iley": 15168,
+ "▁много": 15169,
+ "▁Gem": 15170,
+ "▁compreh": 15171,
+ "enumerate": 15172,
+ "ulas": 15173,
+ "▁Bah": 15174,
+ "▁Yet": 15175,
+ "BR": 15176,
+ "хра": 15177,
+ "▁county": 15178,
+ "▁Hist": 15179,
+ "▁Гу": 15180,
+ "▁Ј": 15181,
+ "▁mari": 15182,
+ "▁Clar": 15183,
+ "Bitmap": 15184,
+ "▁Cz": 15185,
+ "▁mån": 15186,
+ "▁mere": 15187,
+ "▁musique": 15188,
+ "also": 15189,
+ "dates": 15190,
+ "▁DVD": 15191,
+ "▁gol": 15192,
+ "fony": 15193,
+ "▁Castle": 15194,
+ "▁фами": 15195,
+ "▁arrang": 15196,
+ "▁Business": 15197,
+ "▁Kaz": 15198,
+ "▁osc": 15199,
+ "▁secolo": 15200,
+ "▁affected": 15201,
+ "▁Health": 15202,
+ "reb": 15203,
+ "editor": 15204,
+ "▁owned": 15205,
+ "tl": 15206,
+ "▁ví": 15207,
+ "чних": 15208,
+ "кви": 15209,
+ "▁devient": 15210,
+ "Mutable": 15211,
+ "▁tegen": 15212,
+ "Register": 15213,
+ "єю": 15214,
+ "▁caracter": 15215,
+ "лли": 15216,
+ "▁nouvelle": 15217,
+ "oko": 15218,
+ "ichtet": 15219,
+ "▁evol": 15220,
+ "▁Hab": 15221,
+ "▁militar": 15222,
+ "▁puts": 15223,
+ "endif": 15224,
+ "▁Davis": 15225,
+ "▁Scotland": 15226,
+ "regular": 15227,
+ "▁Context": 15228,
+ "ispiel": 15229,
+ "▁Gallery": 15230,
+ "\",\r": 15231,
+ "▁arc": 15232,
+ "▁INFO": 15233,
+ "▁cod": 15234,
+ "дів": 15235,
+ "▁varchar": 15236,
+ "▁toujours": 15237,
+ "atial": 15238,
+ "▁hanno": 15239,
+ "▁профес": 15240,
+ "▁launched": 15241,
+ "▁населення": 15242,
+ "▁ton": 15243,
+ "aused": 15244,
+ "▁із": 15245,
+ "▁tö": 15246,
+ "▁Pur": 15247,
+ "▁olymp": 15248,
+ "ARN": 15249,
+ "óm": 15250,
+ "▁august": 15251,
+ "▁furn": 15252,
+ "▁Colomb": 15253,
+ "▁Staats": 15254,
+ "hora": 15255,
+ "▁мор": 15256,
+ "canvas": 15257,
+ "▁grave": 15258,
+ "▁composition": 15259,
+ "acja": 15260,
+ "▁которые": 15261,
+ "▁чо": 15262,
+ "General": 15263,
+ "ані": 15264,
+ "▁Johannes": 15265,
+ "кар": 15266,
+ "▁част": 15267,
+ "▁Васи": 15268,
+ "ssh": 15269,
+ "▁replacing": 15270,
+ "▁<>": 15271,
+ "ців": 15272,
+ "laus": 15273,
+ "eny": 15274,
+ "ähl": 15275,
+ "▁marg": 15276,
+ "cience": 15277,
+ "▁instruction": 15278,
+ "▁који": 15279,
+ "Editor": 15280,
+ "▁fundamental": 15281,
+ "mund": 15282,
+ "▁exceptions": 15283,
+ "▁plate": 15284,
+ "▁Lis": 15285,
+ "▁deren": 15286,
+ "prep": 15287,
+ "▁januari": 15288,
+ "Scope": 15289,
+ "ynast": 15290,
+ "rv": 15291,
+ "orsz": 15292,
+ "▁Tony": 15293,
+ "▁ді": 15294,
+ "▁одна": 15295,
+ "▁sab": 15296,
+ "oti": 15297,
+ "jel": 15298,
+ "▁generator": 15299,
+ "▁'.": 15300,
+ "▁sharp": 15301,
+ "▁только": 15302,
+ "▁accounts": 15303,
+ "▁že": 15304,
+ "▁foram": 15305,
+ "▁gouvern": 15306,
+ "TIME": 15307,
+ "▁Soviet": 15308,
+ "▁Gé": 15309,
+ "▁exped": 15310,
+ "▁ordinary": 15311,
+ "▁Conserv": 15312,
+ "▁compla": 15313,
+ "tei": 15314,
+ "▁captain": 15315,
+ "▁Samuel": 15316,
+ "▁Dark": 15317,
+ "▁він": 15318,
+ "▁delight": 15319,
+ "recht": 15320,
+ "dia": 15321,
+ "esses": 15322,
+ "ulp": 15323,
+ "шки": 15324,
+ "bez": 15325,
+ "▁detection": 15326,
+ "▁cookie": 15327,
+ "antry": 15328,
+ "Multi": 15329,
+ "oba": 15330,
+ "▁joy": 15331,
+ "▁safety": 15332,
+ "|^": 15333,
+ "pod": 15334,
+ "adém": 15335,
+ "▁Chron": 15336,
+ "▁Django": 15337,
+ "▁ehemal": 15338,
+ "kh": 15339,
+ "èle": 15340,
+ "▁poc": 15341,
+ "Bottom": 15342,
+ "launch": 15343,
+ "nem": 15344,
+ "▁GROUP": 15345,
+ "ního": 15346,
+ "▁Gib": 15347,
+ "sdk": 15348,
+ "BE": 15349,
+ "▁Gene": 15350,
+ "▁Staff": 15351,
+ "▁subsequent": 15352,
+ "icion": 15353,
+ "▁victory": 15354,
+ "▁canon": 15355,
+ "izar": 15356,
+ "izia": 15357,
+ "▁mate": 15358,
+ "▁layers": 15359,
+ "sudo": 15360,
+ "schule": 15361,
+ "periment": 15362,
+ "ület": 15363,
+ "ARCHAR": 15364,
+ "▁террито": 15365,
+ "▁measures": 15366,
+ "▁zou": 15367,
+ "opsis": 15368,
+ "нами": 15369,
+ "tbody": 15370,
+ "▁ese": 15371,
+ "sterdam": 15372,
+ "▁photo": 15373,
+ "ynchronous": 15374,
+ "setminus": 15375,
+ "▁loads": 15376,
+ "▁pleasure": 15377,
+ "▁meille": 15378,
+ "}\\,": 15379,
+ "qual": 15380,
+ "▁favour": 15381,
+ "▁rod": 15382,
+ "Der": 15383,
+ "рабо": 15384,
+ "▁pressed": 15385,
+ "rę": 15386,
+ "ieving": 15387,
+ "material": 15388,
+ "virt": 15389,
+ "▁capable": 15390,
+ "сло": 15391,
+ "ushed": 15392,
+ "▁побе": 15393,
+ "usetts": 15394,
+ "unsigned": 15395,
+ "ków": 15396,
+ "▁ov": 15397,
+ "egeben": 15398,
+ "▁applying": 15399,
+ "▁galax": 15400,
+ "▁Oracle": 15401,
+ "▁Stuttgart": 15402,
+ "Infl": 15403,
+ "achusetts": 15404,
+ "▁deel": 15405,
+ "lire": 15406,
+ "▁statunit": 15407,
+ "▁Politiker": 15408,
+ "▁beauty": 15409,
+ ")>": 15410,
+ "▁Columbia": 15411,
+ "▁zewnętrzne": 15412,
+ "▁програ": 15413,
+ "▁dx": 15414,
+ "cknow": 15415,
+ "▁dub": 15416,
+ "unächst": 15417,
+ "findViewById": 15418,
+ "▁Mand": 15419,
+ "áll": 15420,
+ "naire": 15421,
+ "▁destin": 15422,
+ "isting": 15423,
+ "aggi": 15424,
+ "chart": 15425,
+ "▁justice": 15426,
+ "Simple": 15427,
+ "▁unfortunately": 15428,
+ "ір": 15429,
+ "▁questa": 15430,
+ "▁Governor": 15431,
+ "яв": 15432,
+ "▁música": 15433,
+ "▁equipo": 15434,
+ "▁Dest": 15435,
+ "elect": 15436,
+ "StackTrace": 15437,
+ "зом": 15438,
+ "proc": 15439,
+ "entin": 15440,
+ "adora": 15441,
+ "▁Лю": 15442,
+ "▁registered": 15443,
+ "HL": 15444,
+ "facebook": 15445,
+ "▁storing": 15446,
+ "▁Currently": 15447,
+ "▁quadr": 15448,
+ "Standard": 15449,
+ "trim": 15450,
+ "ears": 15451,
+ "sender": 15452,
+ "▁Vas": 15453,
+ "▁edific": 15454,
+ "▁Bür": 15455,
+ "▁Country": 15456,
+ "tha": 15457,
+ ";\"": 15458,
+ "nor": 15459,
+ "▁Doctor": 15460,
+ "rument": 15461,
+ "Gen": 15462,
+ "▁Buen": 15463,
+ "rade": 15464,
+ "▁kun": 15465,
+ "navigation": 15466,
+ "Pay": 15467,
+ "▁captured": 15468,
+ "▁struck": 15469,
+ "venir": 15470,
+ "ément": 15471,
+ "▁Tree": 15472,
+ "▁xx": 15473,
+ "▁narr": 15474,
+ "льного": 15475,
+ "▁installing": 15476,
+ "▁association": 15477,
+ "▁inserted": 15478,
+ "erner": 15479,
+ "validate": 15480,
+ "▁lut": 15481,
+ "▁glo": 15482,
+ "▁technology": 15483,
+ "▁Place": 15484,
+ "$?": 15485,
+ "▁zv": 15486,
+ "слі": 15487,
+ "EP": 15488,
+ "▁atmos": 15489,
+ "ugo": 15490,
+ "ért": 15491,
+ "▁Werk": 15492,
+ "▁%}": 15493,
+ "tele": 15494,
+ "Span": 15495,
+ "▁Raj": 15496,
+ "▁Personen": 15497,
+ "▁Cant": 15498,
+ "▁combat": 15499,
+ "▁observation": 15500,
+ "parameter": 15501,
+ "▁agreed": 15502,
+ "pur": 15503,
+ "▁shadow": 15504,
+ "▁gł": 15505,
+ "Keys": 15506,
+ "Cred": 15507,
+ "ouri": 15508,
+ "▁pale": 15509,
+ "ické": 15510,
+ "▁Week": 15511,
+ "▁Prime": 15512,
+ ">.": 15513,
+ "Initial": 15514,
+ "▁один": 15515,
+ "▁'',": 15516,
+ "▁учи": 15517,
+ "▁Inv": 15518,
+ "cola": 15519,
+ "cible": 15520,
+ "▁Theatre": 15521,
+ "▁bem": 15522,
+ "▁satisfy": 15523,
+ "xl": 15524,
+ "▁разви": 15525,
+ "▁pixel": 15526,
+ "lán": 15527,
+ "▁twee": 15528,
+ "çon": 15529,
+ "нения": 15530,
+ "▁AT": 15531,
+ "ège": 15532,
+ "▁Mort": 15533,
+ "▁mysq": 15534,
+ "ften": 15535,
+ "▁пес": 15536,
+ "éma": 15537,
+ "▁Services": 15538,
+ "customer": 15539,
+ "▁AWS": 15540,
+ "ът": 15541,
+ "▁Ach": 15542,
+ "%.": 15543,
+ "▁clarify": 15544,
+ "▁университе": 15545,
+ "xture": 15546,
+ "umi": 15547,
+ "▁så": 15548,
+ "▁Pel": 15549,
+ "serial": 15550,
+ "URI": 15551,
+ "▁rg": 15552,
+ "▁соста": 15553,
+ "chestra": 15554,
+ "].[": 15555,
+ "wen": 15556,
+ "▁Londres": 15557,
+ "▁anys": 15558,
+ "DataSource": 15559,
+ "▁районе": 15560,
+ "▁rein": 15561,
+ "▁metadata": 15562,
+ "umble": 15563,
+ "arbeit": 15564,
+ "hner": 15565,
+ "cient": 15566,
+ "▁norte": 15567,
+ "▁она": 15568,
+ "▁scored": 15569,
+ "▁ray": 15570,
+ "▁февра": 15571,
+ "▁protagon": 15572,
+ "▁Sac": 15573,
+ "▁commonly": 15574,
+ "LinearLayout": 15575,
+ "▁applic": 15576,
+ "▁мая": 15577,
+ "За": 15578,
+ "▁accessible": 15579,
+ "iewer": 15580,
+ "flag": 15581,
+ "▁Rück": 15582,
+ "äu": 15583,
+ "▁erano": 15584,
+ "▁authentic": 15585,
+ "▁Ry": 15586,
+ "▁неско": 15587,
+ "▁embargo": 15588,
+ "▁dry": 15589,
+ "▁reasonable": 15590,
+ "▁Module": 15591,
+ "▁acceler": 15592,
+ "▁interview": 15593,
+ "▁Creek": 15594,
+ "▁alpha": 15595,
+ "serie": 15596,
+ "They": 15597,
+ "ючи": 15598,
+ "▁Hof": 15599,
+ "▁CR": 15600,
+ "modal": 15601,
+ "▁sequences": 15602,
+ "closed": 15603,
+ ")}$": 15604,
+ "▁Чер": 15605,
+ "▁ORDER": 15606,
+ "Rightarrow": 15607,
+ "hausen": 15608,
+ "}}_": 15609,
+ "▁també": 15610,
+ "▁magnetic": 15611,
+ "▁McC": 15612,
+ "▁winning": 15613,
+ "underline": 15614,
+ "▁Billboard": 15615,
+ "naio": 15616,
+ "▁liqu": 15617,
+ "displaystyle": 15618,
+ "timeout": 15619,
+ "▁considerable": 15620,
+ "▁eben": 15621,
+ "ifferent": 15622,
+ "anu": 15623,
+ "▁Сов": 15624,
+ "[(": 15625,
+ "▁:-)": 15626,
+ "leitung": 15627,
+ "formed": 15628,
+ "▁Manager": 15629,
+ "▁onclick": 15630,
+ "TY": 15631,
+ "тах": 15632,
+ "CV": 15633,
+ "runtime": 15634,
+ "poque": 15635,
+ "▁Ло": 15636,
+ "Temp": 15637,
+ "loaded": 15638,
+ "▁!==": 15639,
+ "▁singer": 15640,
+ "far": 15641,
+ "▁Comple": 15642,
+ "▁Österreich": 15643,
+ "Policy": 15644,
+ "▁worker": 15645,
+ "Wrapper": 15646,
+ "obi": 15647,
+ "▁discussed": 15648,
+ "▁buy": 15649,
+ "▁января": 15650,
+ "▁Din": 15651,
+ "▁ged": 15652,
+ "ској": 15653,
+ "Europe": 15654,
+ "▁tall": 15655,
+ "hos": 15656,
+ "лаго": 15657,
+ "▁Block": 15658,
+ "▁identified": 15659,
+ "ListView": 15660,
+ "▁attempting": 15661,
+ "▁typical": 15662,
+ "psum": 15663,
+ "oster": 15664,
+ "▁журна": 15665,
+ "Pe": 15666,
+ "merce": 15667,
+ "▁unexpected": 15668,
+ "hui": 15669,
+ "letter": 15670,
+ "▁nuevo": 15671,
+ "▁або": 15672,
+ "▁VALUES": 15673,
+ "▁Iz": 15674,
+ "Flags": 15675,
+ "▁TRUE": 15676,
+ "ización": 15677,
+ "▁growing": 15678,
+ "estre": 15679,
+ "▁poly": 15680,
+ "▁Stone": 15681,
+ "▁VIII": 15682,
+ "▁localhost": 15683,
+ "ählt": 15684,
+ "▁embedded": 15685,
+ "jdbc": 15686,
+ "▁convention": 15687,
+ "▁scala": 15688,
+ "сок": 15689,
+ "▁analog": 15690,
+ "▁\"+": 15691,
+ "цю": 15692,
+ "occ": 15693,
+ "▁litt": 15694,
+ "PN": 15695,
+ "▁актив": 15696,
+ "attributes": 15697,
+ "▁Ferd": 15698,
+ "▁azure": 15699,
+ "ști": 15700,
+ "ños": 15701,
+ "ping": 15702,
+ "▁teacher": 15703,
+ "}&": 15704,
+ "ipe": 15705,
+ "▁Nob": 15706,
+ "▁има": 15707,
+ "Bind": 15708,
+ "▁magic": 15709,
+ "▁Transport": 15710,
+ "ixel": 15711,
+ "▁computed": 15712,
+ "agna": 15713,
+ "erst": 15714,
+ "HA": 15715,
+ "Wait": 15716,
+ "▁authors": 15717,
+ "▁;)": 15718,
+ "clam": 15719,
+ "▁Pennsylvan": 15720,
+ "▁drug": 15721,
+ "▁vain": 15722,
+ "▁employed": 15723,
+ "▁individuals": 15724,
+ "▁ange": 15725,
+ "utat": 15726,
+ "▁$-": 15727,
+ "correct": 15728,
+ "▁experiments": 15729,
+ "Argument": 15730,
+ "▁IB": 15731,
+ "▁père": 15732,
+ "▁Brian": 15733,
+ "berger": 15734,
+ "Mac": 15735,
+ "iast": 15736,
+ "Perm": 15737,
+ "Cast": 15738,
+ "▁{};": 15739,
+ "▁Student": 15740,
+ "▁statt": 15741,
+ "algebra": 15742,
+ "▁equals": 15743,
+ "▁projet": 15744,
+ "▁président": 15745,
+ "ActivityThread": 15746,
+ "▁einz": 15747,
+ "enia": 15748,
+ "rez": 15749,
+ "essional": 15750,
+ "▁августа": 15751,
+ "override": 15752,
+ "news": 15753,
+ "▁planet": 15754,
+ "nn": 15755,
+ "▁Wis": 15756,
+ "твер": 15757,
+ "▁Valid": 15758,
+ "▁Gef": 15759,
+ "град": 15760,
+ "▁eig": 15761,
+ "antom": 15762,
+ "▁Meister": 15763,
+ "flags": 15764,
+ "fficiale": 15765,
+ "шая": 15766,
+ "-,": 15767,
+ "ationen": 15768,
+ "mouse": 15769,
+ "standard": 15770,
+ "Single": 15771,
+ "▁bol": 15772,
+ "isis": 15773,
+ "▁fruit": 15774,
+ "course": 15775,
+ "itants": 15776,
+ "▁étaient": 15777,
+ "TextField": 15778,
+ "▁фон": 15779,
+ "▁aircraft": 15780,
+ "▁ISSN": 15781,
+ "▁western": 15782,
+ "▁representing": 15783,
+ "Esp": 15784,
+ "▁Else": 15785,
+ "▁sizes": 15786,
+ "▁satisfied": 15787,
+ "otos": 15788,
+ "UD": 15789,
+ "Final": 15790,
+ "ój": 15791,
+ "ève": 15792,
+ "▁Roy": 15793,
+ "ffen": 15794,
+ "▁salt": 15795,
+ "▁Label": 15796,
+ "Sk": 15797,
+ "▁кре": 15798,
+ "▁Литература": 15799,
+ "▁см": 15800,
+ "Attributes": 15801,
+ "aye": 15802,
+ "ськ": 15803,
+ "▁высо": 15804,
+ "-)": 15805,
+ "oses": 15806,
+ "calcul": 15807,
+ "▁Cannot": 15808,
+ "Generic": 15809,
+ "emo": 15810,
+ "▁Autor": 15811,
+ "лён": 15812,
+ "лага": 15813,
+ "vote": 15814,
+ "licates": 15815,
+ "rus": 15816,
+ "éli": 15817,
+ "opf": 15818,
+ "atique": 15819,
+ "scala": 15820,
+ "▁Ohio": 15821,
+ "▁Britann": 15822,
+ "▁bef": 15823,
+ "▁Евро": 15824,
+ "▁Career": 15825,
+ "isée": 15826,
+ "ót": 15827,
+ "bose": 15828,
+ "▁Бер": 15829,
+ "▁Controller": 15830,
+ "pole": 15831,
+ "▁allen": 15832,
+ "▁hack": 15833,
+ "▁extent": 15834,
+ "▁calci": 15835,
+ "Mer": 15836,
+ "▁summary": 15837,
+ "Mart": 15838,
+ "▁historical": 15839,
+ "imat": 15840,
+ "bud": 15841,
+ "▁FOR": 15842,
+ "export": 15843,
+ "edi": 15844,
+ "Mapping": 15845,
+ "▁Ay": 15846,
+ "▁Ruby": 15847,
+ "▁definitions": 15848,
+ "▁{$": 15849,
+ "▁yours": 15850,
+ "rias": 15851,
+ "Touch": 15852,
+ "▁Gaz": 15853,
+ "▁Autom": 15854,
+ "▁истори": 15855,
+ "▁delen": 15856,
+ "▁Kinder": 15857,
+ "}}%": 15858,
+ "▁performing": 15859,
+ "FR": 15860,
+ "▁Sig": 15861,
+ "▁Brad": 15862,
+ "bras": 15863,
+ "▁Jar": 15864,
+ "pkg": 15865,
+ "wr": 15866,
+ "▁Pays": 15867,
+ "NC": 15868,
+ "▁opposed": 15869,
+ "Try": 15870,
+ "▁везе": 15871,
+ "▁Bog": 15872,
+ "▁writes": 15873,
+ "▁stories": 15874,
+ "▁mater": 15875,
+ "▁stagione": 15876,
+ "▁sty": 15877,
+ "▁compatible": 15878,
+ "heast": 15879,
+ "▁Guy": 15880,
+ "egründ": 15881,
+ "▁identifier": 15882,
+ "▁heads": 15883,
+ "пози": 15884,
+ "▁stup": 15885,
+ "▁tf": 15886,
+ "▁још": 15887,
+ "▁Hugh": 15888,
+ "▁cards": 15889,
+ "ovy": 15890,
+ "▁Toast": 15891,
+ "allas": 15892,
+ "▁públic": 15893,
+ "▁assumes": 15894,
+ "▁чемпиона": 15895,
+ "ycler": 15896,
+ "▁Junior": 15897,
+ "▁Fich": 15898,
+ "▁estimated": 15899,
+ "zerw": 15900,
+ "dialog": 15901,
+ "шин": 15902,
+ "shell": 15903,
+ "▁них": 15904,
+ "▁pitch": 15905,
+ "дол": 15906,
+ "outube": 15907,
+ "▁Santi": 15908,
+ "OnClickListener": 15909,
+ "▁Magyar": 15910,
+ "▁vue": 15911,
+ "ião": 15912,
+ "▁`#": 15913,
+ "collect": 15914,
+ "▁Rou": 15915,
+ "analysis": 15916,
+ "istrzost": 15917,
+ "▁Digital": 15918,
+ "▁crist": 15919,
+ "riere": 15920,
+ "▁campo": 15921,
+ "Us": 15922,
+ "▁circa": 15923,
+ "▁Component": 15924,
+ "▁NSString": 15925,
+ "pd": 15926,
+ "▁prince": 15927,
+ "▁invoke": 15928,
+ "▁Marine": 15929,
+ "Allow": 15930,
+ "estic": 15931,
+ "ристи": 15932,
+ "bone": 15933,
+ "туры": 15934,
+ "▁passion": 15935,
+ "áció": 15936,
+ "▁orn": 15937,
+ "вед": 15938,
+ "▁invari": 15939,
+ "▁ні": 15940,
+ "Remove": 15941,
+ "encies": 15942,
+ "ilib": 15943,
+ "▁Director": 15944,
+ "\"\"": 15945,
+ "▁Conse": 15946,
+ "googleapis": 15947,
+ "ók": 15948,
+ "▁Укра": 15949,
+ "▁Having": 15950,
+ "Domain": 15951,
+ "ierz": 15952,
+ "нологи": 15953,
+ "Cho": 15954,
+ "undefined": 15955,
+ "alloc": 15956,
+ "▁pied": 15957,
+ "▁fraction": 15958,
+ "bia": 15959,
+ "▁поло": 15960,
+ "ugno": 15961,
+ "minister": 15962,
+ "▁principale": 15963,
+ "▁refused": 15964,
+ "browser": 15965,
+ "*,": 15966,
+ "▁Hospital": 15967,
+ "▁universal": 15968,
+ "▁Ernst": 15969,
+ "who": 15970,
+ "▁Gard": 15971,
+ "'_": 15972,
+ "conde": 15973,
+ "▁[{": 15974,
+ "sob": 15975,
+ "▁Crit": 15976,
+ "▁декабря": 15977,
+ "▁punto": 15978,
+ "▁eingesetzt": 15979,
+ "▁tör": 15980,
+ "▁Ni": 15981,
+ "▁worry": 15982,
+ "▁legend": 15983,
+ "▁були": 15984,
+ "▁komm": 15985,
+ "rijk": 15986,
+ "effect": 15987,
+ "Ori": 15988,
+ "RES": 15989,
+ "▁Peters": 15990,
+ "▁Baron": 15991,
+ "▁Got": 15992,
+ "▁honest": 15993,
+ "äre": 15994,
+ "ász": 15995,
+ "▁noble": 15996,
+ "▁conclusion": 15997,
+ "▁formatting": 15998,
+ "▁otto": 15999,
+ "▁deleg": 16000,
+ "мб": 16001,
+ "ptop": 16002,
+ "▁sends": 16003,
+ "urname": 16004,
+ "▁festival": 16005,
+ ",": 16006,
+ "рус": 16007,
+ "▁doch": 16008,
+ "subject": 16009,
+ "▁careful": 16010,
+ "quent": 16011,
+ "▁Load": 16012,
+ "temperaturen": 16013,
+ "▁rue": 16014,
+ "Memory": 16015,
+ "ța": 16016,
+ "iona": 16017,
+ "▁dentro": 16018,
+ "▁begann": 16019,
+ "▁Aqu": 16020,
+ "▁scientific": 16021,
+ "kań": 16022,
+ "лок": 16023,
+ "elde": 16024,
+ "▁Those": 16025,
+ "quier": 16026,
+ "actér": 16027,
+ "▁Auflage": 16028,
+ ")'": 16029,
+ "▁gradient": 16030,
+ "integer": 16031,
+ "▁Import": 16032,
+ "SK": 16033,
+ "▁Status": 16034,
+ "▁explo": 16035,
+ "AE": 16036,
+ "Shell": 16037,
+ "▁Paulo": 16038,
+ ".»": 16039,
+ "}": 16040,
+ "flex": 16041,
+ "▁комп": 16042,
+ "onden": 16043,
+ "accept": 16044,
+ "▁miejsce": 16045,
+ "Hub": 16046,
+ "alleng": 16047,
+ "WN": 16048,
+ "▁implementing": 16049,
+ "▁лу": 16050,
+ "▁confusing": 16051,
+ "▁Install": 16052,
+ "▁rou": 16053,
+ "▁проек": 16054,
+ "Accessor": 16055,
+ "љашње": 16056,
+ "odio": 16057,
+ "▁applies": 16058,
+ "ющий": 16059,
+ "▁Mundial": 16060,
+ "État": 16061,
+ "ietnam": 16062,
+ "hum": 16063,
+ "▁сбор": 16064,
+ "ordinate": 16065,
+ "France": 16066,
+ "▁prend": 16067,
+ "eltemperaturen": 16068,
+ "▁trabaj": 16069,
+ "Axis": 16070,
+ "▁мно": 16071,
+ "primary": 16072,
+ "▁Seite": 16073,
+ "permission": 16074,
+ "▁orden": 16075,
+ "since": 16076,
+ "▁ic": 16077,
+ "▁Brazil": 16078,
+ "▁bare": 16079,
+ "▁Nar": 16080,
+ "▁Jur": 16081,
+ "▁freedom": 16082,
+ "▁medical": 16083,
+ "ischof": 16084,
+ "▁сп": 16085,
+ "ież": 16086,
+ "▁bootstrap": 16087,
+ "▁…": 16088,
+ "▁facil": 16089,
+ "cord": 16090,
+ "ване": 16091,
+ "▁Allen": 16092,
+ "avid": 16093,
+ "ingham": 16094,
+ "zas": 16095,
+ "▁inspect": 16096,
+ "itten": 16097,
+ "osti": 16098,
+ "uh": 16099,
+ "cé": 16100,
+ "▁#####": 16101,
+ "cius": 16102,
+ "omy": 16103,
+ "▁Seine": 16104,
+ "bres": 16105,
+ "▁genus": 16106,
+ "Other": 16107,
+ "▁Golden": 16108,
+ "mul": 16109,
+ "▁Спољашње": 16110,
+ "▁gennaio": 16111,
+ "▁carefully": 16112,
+ "aal": 16113,
+ "▁analyt": 16114,
+ "neur": 16115,
+ "▁stretch": 16116,
+ "▁Occ": 16117,
+ "olas": 16118,
+ "▁firebase": 16119,
+ "▁expecting": 16120,
+ "basic": 16121,
+ "condition": 16122,
+ "prov": 16123,
+ "▁Wasser": 16124,
+ "▁concaten": 16125,
+ "▁evil": 16126,
+ "▁coefficients": 16127,
+ "West": 16128,
+ "iry": 16129,
+ "phas": 16130,
+ "▁Jam": 16131,
+ "fois": 16132,
+ "▁consid": 16133,
+ "▁mainten": 16134,
+ "nim": 16135,
+ "esser": 16136,
+ "esz": 16137,
+ "unta": 16138,
+ "uest": 16139,
+ "▁credentials": 16140,
+ "_;": 16141,
+ "Dim": 16142,
+ "преде": 16143,
+ "▁Bü": 16144,
+ "built": 16145,
+ "▁Academ": 16146,
+ "▁audi": 16147,
+ "▁två": 16148,
+ "inand": 16149,
+ "▁Theater": 16150,
+ "▁genre": 16151,
+ "ços": 16152,
+ "gresql": 16153,
+ "▁weap": 16154,
+ "▁Rab": 16155,
+ "▁’": 16156,
+ "▁adult": 16157,
+ "▁dém": 16158,
+ "``": 16159,
+ "▁stabil": 16160,
+ "▁corresponds": 16161,
+ "▁Eastern": 16162,
+ "unnel": 16163,
+ "Worker": 16164,
+ "▁coh": 16165,
+ "лка": 16166,
+ "▁Massachusetts": 16167,
+ "pio": 16168,
+ "▁ports": 16169,
+ "agg": 16170,
+ "▁Debug": 16171,
+ "▁breath": 16172,
+ "MIN": 16173,
+ "Variable": 16174,
+ "batch": 16175,
+ "ссе": 16176,
+ "▁preg": 16177,
+ "▁roles": 16178,
+ "paste": 16179,
+ "▁referenced": 16180,
+ "adrat": 16181,
+ "чё": 16182,
+ "binom": 16183,
+ "▁defining": 16184,
+ "▁Budapest": 16185,
+ "▁дви": 16186,
+ "▁taught": 16187,
+ "▁hole": 16188,
+ "▁quella": 16189,
+ "Msg": 16190,
+ "aska": 16191,
+ "scan": 16192,
+ "▁propose": 16193,
+ "▁Биография": 16194,
+ "{{\\": 16195,
+ "textt": 16196,
+ "▁Alb": 16197,
+ "▁Sydney": 16198,
+ "▁backup": 16199,
+ "▁credit": 16200,
+ "▁францу": 16201,
+ "stats": 16202,
+ "\\\":": 16203,
+ "▁Пере": 16204,
+ "▁accordingly": 16205,
+ "▁Len": 16206,
+ "zna": 16207,
+ "▁Regional": 16208,
+ "▁изда": 16209,
+ "▁jú": 16210,
+ "histor": 16211,
+ "▁entities": 16212,
+ "Star": 16213,
+ "оне": 16214,
+ "']['": 16215,
+ "▁Nova": 16216,
+ "die": 16217,
+ "▁`'": 16218,
+ "▁obten": 16219,
+ "anst": 16220,
+ "▁Relig": 16221,
+ "▁trig": 16222,
+ "▁режи": 16223,
+ "▁Personal": 16224,
+ "▁tone": 16225,
+ "▁aid": 16226,
+ "Visual": 16227,
+ "Submit": 16228,
+ "▁moves": 16229,
+ "▁Bridge": 16230,
+ "▁Boy": 16231,
+ "▁accurate": 16232,
+ "osta": 16233,
+ "atto": 16234,
+ "▁defeated": 16235,
+ "▁datab": 16236,
+ "ginx": 16237,
+ "▁Liv": 16238,
+ "lywood": 16239,
+ "TW": 16240,
+ "rium": 16241,
+ "ipped": 16242,
+ "Fail": 16243,
+ "REQUEST": 16244,
+ "▁ignor": 16245,
+ "▁sitting": 16246,
+ "▁molto": 16247,
+ "▁endpoint": 16248,
+ "ución": 16249,
+ "▁collections": 16250,
+ "▁Ту": 16251,
+ "tembre": 16252,
+ "▁nécess": 16253,
+ "▁interact": 16254,
+ "▁otras": 16255,
+ "▁curr": 16256,
+ "▁tracks": 16257,
+ "▁família": 16258,
+ "▁numerical": 16259,
+ "legt": 16260,
+ "]/": 16261,
+ "▁Mario": 16262,
+ "▁tort": 16263,
+ "bg": 16264,
+ "ssl": 16265,
+ "texttt": 16266,
+ "▁spark": 16267,
+ "дии": 16268,
+ "▁probable": 16269,
+ "%%%%": 16270,
+ "phia": 16271,
+ "],[": 16272,
+ "▁boxes": 16273,
+ "▁academ": 16274,
+ "▁Slo": 16275,
+ "äude": 16276,
+ "▁witness": 16277,
+ "▁editing": 16278,
+ "лина": 16279,
+ "▁lookup": 16280,
+ "▁Buck": 16281,
+ "дня": 16282,
+ "▁jours": 16283,
+ "++){": 16284,
+ "▁indices": 16285,
+ "▁flight": 16286,
+ "▁computation": 16287,
+ "Plugin": 16288,
+ "▁realize": 16289,
+ "isset": 16290,
+ "▁derivative": 16291,
+ "linewidth": 16292,
+ "bund": 16293,
+ "▁thor": 16294,
+ "▁.=": 16295,
+ "▁sí": 16296,
+ "▁Click": 16297,
+ "▁Sebast": 16298,
+ ">'": 16299,
+ "havior": 16300,
+ "lei": 16301,
+ "ulf": 16302,
+ "▁geometry": 16303,
+ "prev": 16304,
+ "empl": 16305,
+ "▁Lé": 16306,
+ "anson": 16307,
+ "▁Alice": 16308,
+ "prototype": 16309,
+ "READ": 16310,
+ "icular": 16311,
+ "▁бі": 16312,
+ "▁deutsche": 16313,
+ "▁Represent": 16314,
+ "sites": 16315,
+ "▁Mean": 16316,
+ "▁diss": 16317,
+ "▁Zur": 16318,
+ "▁през": 16319,
+ "PAR": 16320,
+ "▁'#": 16321,
+ "▁Dra": 16322,
+ "сон": 16323,
+ "▁steht": 16324,
+ "markt": 16325,
+ "▁ease": 16326,
+ "Drawing": 16327,
+ "=%": 16328,
+ "Stop": 16329,
+ "▁serving": 16330,
+ "▁także": 16331,
+ "▁DNS": 16332,
+ "▁literal": 16333,
+ "Die": 16334,
+ "▁вос": 16335,
+ "▁senior": 16336,
+ "acion": 16337,
+ "▁ubuntu": 16338,
+ "▁Frankfurt": 16339,
+ "▁Sunday": 16340,
+ "áb": 16341,
+ "▁journey": 16342,
+ "issa": 16343,
+ "berry": 16344,
+ "▁sep": 16345,
+ "▁ion": 16346,
+ "wert": 16347,
+ "ország": 16348,
+ "serve": 16349,
+ "▁Milano": 16350,
+ "▁века": 16351,
+ "рах": 16352,
+ "▁июля": 16353,
+ "▁manera": 16354,
+ "▁stations": 16355,
+ "▁adopted": 16356,
+ "▁anybody": 16357,
+ "VERSION": 16358,
+ "FE": 16359,
+ "dorf": 16360,
+ "...,": 16361,
+ "▁образова": 16362,
+ "Logger": 16363,
+ "фициаль": 16364,
+ "WRITE": 16365,
+ "▁ham": 16366,
+ "▁Future": 16367,
+ "oten": 16368,
+ "▁AG": 16369,
+ "▁trained": 16370,
+ "▁Nich": 16371,
+ "▁university": 16372,
+ "▁Olympics": 16373,
+ "▁doit": 16374,
+ "▁cultural": 16375,
+ "Conf": 16376,
+ "▁Conference": 16377,
+ "orno": 16378,
+ "▁MP": 16379,
+ "▁bou": 16380,
+ "cin": 16381,
+ "High": 16382,
+ "annte": 16383,
+ "▁displaying": 16384,
+ "▁chapter": 16385,
+ "▁Frauen": 16386,
+ "▁realized": 16387,
+ "▁attempted": 16388,
+ "▁preferred": 16389,
+ "Dat": 16390,
+ "▁trouve": 16391,
+ "▁intention": 16392,
+ "▁Notice": 16393,
+ "timestamp": 16394,
+ "*(": 16395,
+ "▁Ша": 16396,
+ "anas": 16397,
+ "cla": 16398,
+ "isz": 16399,
+ "tbl": 16400,
+ "Arr": 16401,
+ "▁inverse": 16402,
+ "▁terrible": 16403,
+ "▁occupied": 16404,
+ "JAX": 16405,
+ "<-": 16406,
+ "▁Philosoph": 16407,
+ "▁Corps": 16408,
+ "builder": 16409,
+ "▁begins": 16410,
+ "▁census": 16411,
+ ".’": 16412,
+ "▁proven": 16413,
+ "metric": 16414,
+ "▁increases": 16415,
+ "wich": 16416,
+ "▁ABC": 16417,
+ "projects": 16418,
+ "▁Thor": 16419,
+ "▁confidence": 16420,
+ "▁ufficiale": 16421,
+ "elm": 16422,
+ "▁garden": 16423,
+ "▁robust": 16424,
+ "▁così": 16425,
+ "iedz": 16426,
+ "▁Islam": 16427,
+ "▁Address": 16428,
+ "▁divide": 16429,
+ "▁Eu": 16430,
+ "catal": 16431,
+ "detail": 16432,
+ "ependant": 16433,
+ "fg": 16434,
+ "▁bew": 16435,
+ "▁fis": 16436,
+ "▁BO": 16437,
+ "▁wsp": 16438,
+ "▁pipeline": 16439,
+ "hd": 16440,
+ "▁Session": 16441,
+ "länd": 16442,
+ "iveau": 16443,
+ "estr": 16444,
+ "▁particle": 16445,
+ "▁laravel": 16446,
+ "pic": 16447,
+ "▁nau": 16448,
+ "▁fins": 16449,
+ "▁Vil": 16450,
+ "▁fus": 16451,
+ "▁quasi": 16452,
+ "operation": 16453,
+ "▁aller": 16454,
+ "▁analy": 16455,
+ "▁Он": 16456,
+ "▁Mes": 16457,
+ "▁опера": 16458,
+ "▁handled": 16459,
+ "▁deprec": 16460,
+ "tto": 16461,
+ "▁Ek": 16462,
+ "▁stran": 16463,
+ "▁anglais": 16464,
+ "jure": 16465,
+ "▁Silver": 16466,
+ "▁closely": 16467,
+ "enkins": 16468,
+ "anos": 16469,
+ "sted": 16470,
+ "▁сентября": 16471,
+ "brand": 16472,
+ "ньо": 16473,
+ "▁présent": 16474,
+ "rok": 16475,
+ "mount": 16476,
+ "▁Anthony": 16477,
+ "▁Furthermore": 16478,
+ "inha": 16479,
+ "▁архи": 16480,
+ "▁разли": 16481,
+ "▁октября": 16482,
+ "▁pint": 16483,
+ "ný": 16484,
+ "pts": 16485,
+ "▁italien": 16486,
+ "▁реги": 16487,
+ "лез": 16488,
+ "дина": 16489,
+ "atherine": 16490,
+ "Internal": 16491,
+ "Question": 16492,
+ "▁settlement": 16493,
+ "▁Все": 16494,
+ "▁folders": 16495,
+ "дри": 16496,
+ "▁valor": 16497,
+ "▁Miller": 16498,
+ "▁Assert": 16499,
+ "▁patient": 16500,
+ "▁Nieder": 16501,
+ "▁EP": 16502,
+ "▁Agr": 16503,
+ "▁onde": 16504,
+ "▁scop": 16505,
+ "sequence": 16506,
+ "▁PL": 16507,
+ "▁seek": 16508,
+ "javase": 16509,
+ "▁Vector": 16510,
+ "▁ná": 16511,
+ "▁categoría": 16512,
+ "clone": 16513,
+ "NR": 16514,
+ "available": 16515,
+ "▁Besch": 16516,
+ "▁eclipse": 16517,
+ "wicklung": 16518,
+ "deploy": 16519,
+ "enie": 16520,
+ "▁\")": 16521,
+ "äst": 16522,
+ "▁sync": 16523,
+ "CODE": 16524,
+ "▁Че": 16525,
+ "▁floating": 16526,
+ "/`": 16527,
+ "▁retired": 16528,
+ "deb": 16529,
+ "▁particul": 16530,
+ "▁collected": 16531,
+ "▁downloaded": 16532,
+ "nice": 16533,
+ "▁Buffer": 16534,
+ "▁Account": 16535,
+ "▁maggio": 16536,
+ "▁реда": 16537,
+ "▁sales": 16538,
+ "▁statunitense": 16539,
+ "▁Ki": 16540,
+ "▁Ferr": 16541,
+ "Lock": 16542,
+ "▁Isabel": 16543,
+ "clar": 16544,
+ "▁pov": 16545,
+ "atra": 16546,
+ "▁Frau": 16547,
+ "▁sorting": 16548,
+ "▁phrase": 16549,
+ "▁апреля": 16550,
+ "▁деятель": 16551,
+ "▁André": 16552,
+ "definition": 16553,
+ "writing": 16554,
+ "éré": 16555,
+ "щу": 16556,
+ "▁Ord": 16557,
+ "▁rum": 16558,
+ "▁Turk": 16559,
+ "▁Ivan": 16560,
+ "theless": 16561,
+ "▁ги": 16562,
+ "▁sake": 16563,
+ "▁Based": 16564,
+ "deck": 16565,
+ "orus": 16566,
+ "▁tutti": 16567,
+ "▁blan": 16568,
+ "▁Пу": 16569,
+ "Detail": 16570,
+ "▁Но": 16571,
+ "▁Sky": 16572,
+ "▁près": 16573,
+ "мой": 16574,
+ "coln": 16575,
+ "ческой": 16576,
+ "eti": 16577,
+ "▁arrow": 16578,
+ "▁Cha": 16579,
+ "chmark": 16580,
+ "œur": 16581,
+ "fab": 16582,
+ "куль": 16583,
+ "GridView": 16584,
+ "▁Background": 16585,
+ "sn": 16586,
+ "▁seguito": 16587,
+ "▁nic": 16588,
+ "cou": 16589,
+ "тів": 16590,
+ "▁bzw": 16591,
+ "addEventListener": 16592,
+ "sync": 16593,
+ "azzo": 16594,
+ "abstract": 16595,
+ "assets": 16596,
+ "▁Dru": 16597,
+ "зд": 16598,
+ "ordnet": 16599,
+ "▁bigger": 16600,
+ "▁initialized": 16601,
+ "каз": 16602,
+ "ogene": 16603,
+ "viously": 16604,
+ "▁guid": 16605,
+ "scheidung": 16606,
+ "▁Zent": 16607,
+ "▁frames": 16608,
+ "rieben": 16609,
+ "▁issued": 16610,
+ "▁dow": 16611,
+ "▁describes": 16612,
+ "ilst": 16613,
+ "▁criteria": 16614,
+ "▁gentleman": 16615,
+ "Basic": 16616,
+ "nez": 16617,
+ "Dev": 16618,
+ "Move": 16619,
+ "▁estaba": 16620,
+ "▁settembre": 16621,
+ "circle": 16622,
+ "▁fais": 16623,
+ "▁myst": 16624,
+ "▁archiv": 16625,
+ "dynamic": 16626,
+ "jà": 16627,
+ "itas": 16628,
+ "▁який": 16629,
+ "▁dor": 16630,
+ "▁Amazon": 16631,
+ "▁neces": 16632,
+ "▁Marcel": 16633,
+ "▁ella": 16634,
+ "рок": 16635,
+ "▁Pennsylvania": 16636,
+ "cular": 16637,
+ "Pack": 16638,
+ "itage": 16639,
+ "▁Burn": 16640,
+ "▁RO": 16641,
+ "▁они": 16642,
+ "~$": 16643,
+ "TeX": 16644,
+ "assign": 16645,
+ "▁beat": 16646,
+ "idense": 16647,
+ "acent": 16648,
+ "Alert": 16649,
+ "▁strateg": 16650,
+ "▁månaden": 16651,
+ "LOC": 16652,
+ "▁catalog": 16653,
+ "printStackTrace": 16654,
+ "()).": 16655,
+ "usted": 16656,
+ "▁Framework": 16657,
+ "ECK": 16658,
+ "▁até": 16659,
+ "Framework": 16660,
+ "▁attacks": 16661,
+ "▁Bert": 16662,
+ "▁тран": 16663,
+ ":%": 16664,
+ "arsi": 16665,
+ "notation": 16666,
+ "▁logical": 16667,
+ "weet": 16668,
+ "▁visited": 16669,
+ "bru": 16670,
+ "▁surprise": 16671,
+ "^^": 16672,
+ "inale": 16673,
+ "remote": 16674,
+ "'},": 16675,
+ "Syntax": 16676,
+ "iane": 16677,
+ "onnen": 16678,
+ "▁breaking": 16679,
+ "parser": 16680,
+ "apk": 16681,
+ "▁Miguel": 16682,
+ "▁§": 16683,
+ "▁acting": 16684,
+ "▁gebru": 16685,
+ "AtIndex": 16686,
+ "ються": 16687,
+ "▁offers": 16688,
+ "▁prac": 16689,
+ "▁grant": 16690,
+ "ternoon": 16691,
+ "▁acquired": 16692,
+ "▁Ny": 16693,
+ "▁comma": 16694,
+ "ník": 16695,
+ "▁Step": 16696,
+ "inners": 16697,
+ "▁SA": 16698,
+ "▁wat": 16699,
+ "days": 16700,
+ "▁rectangle": 16701,
+ "dar": 16702,
+ "▁trac": 16703,
+ "▁Indones": 16704,
+ "▁feedback": 16705,
+ "▁breaks": 16706,
+ "partition": 16707,
+ "icans": 16708,
+ "▁Notices": 16709,
+ "▁improved": 16710,
+ "phan": 16711,
+ "▁differential": 16712,
+ "scripts": 16713,
+ "▁XIII": 16714,
+ "▁Labor": 16715,
+ "▁precision": 16716,
+ "▁seed": 16717,
+ "bundle": 16718,
+ "idents": 16719,
+ "hre": 16720,
+ "▁Douglas": 16721,
+ "uld": 16722,
+ "▁secondary": 16723,
+ "▁brig": 16724,
+ "▁confirmed": 16725,
+ "▁claims": 16726,
+ "Role": 16727,
+ "▁Jewish": 16728,
+ "▁před": 16729,
+ "▁hotel": 16730,
+ "▁compte": 16731,
+ "▁recursive": 16732,
+ "](#)": 16733,
+ "▁rotate": 16734,
+ "▁chrome": 16735,
+ "inea": 16736,
+ "%;\r": 16737,
+ "▁Environment": 16738,
+ "platz": 16739,
+ "▁Single": 16740,
+ "▁sevent": 16741,
+ "▁posting": 16742,
+ "▁dealing": 16743,
+ "parameters": 16744,
+ "граф": 16745,
+ "Authentication": 16746,
+ "touch": 16747,
+ "Az": 16748,
+ "▁gray": 16749,
+ "encing": 16750,
+ "boldmath": 16751,
+ "▁сайте": 16752,
+ "▁Za": 16753,
+ "anje": 16754,
+ "▁polar": 16755,
+ "▁ули": 16756,
+ "kil": 16757,
+ "▁hover": 16758,
+ "▁REST": 16759,
+ "▁Come": 16760,
+ "jb": 16761,
+ "▁Georgia": 16762,
+ "▁Estado": 16763,
+ "OutputStream": 16764,
+ "ћи": 16765,
+ "▁dump": 16766,
+ "▁Age": 16767,
+ "▁swo": 16768,
+ "mobile": 16769,
+ "occup": 16770,
+ "шего": 16771,
+ "▁constitution": 16772,
+ "good": 16773,
+ "aku": 16774,
+ "▁анг": 16775,
+ "ieck": 16776,
+ "▁Psych": 16777,
+ "▁roots": 16778,
+ "▁vest": 16779,
+ "▁годах": 16780,
+ "▁República": 16781,
+ "▁pian": 16782,
+ "igration": 16783,
+ "▁préc": 16784,
+ "▁generates": 16785,
+ "LY": 16786,
+ "(`": 16787,
+ "▁=~": 16788,
+ "шения": 16789,
+ "▁Rah": 16790,
+ "▁connecting": 16791,
+ "ží": 16792,
+ "▁fő": 16793,
+ "▁appel": 16794,
+ "▁Railway": 16795,
+ "гли": 16796,
+ "▁développ": 16797,
+ "▁apo": 16798,
+ "fran": 16799,
+ "▁immediate": 16800,
+ "вого": 16801,
+ "Runner": 16802,
+ "äg": 16803,
+ "Something": 16804,
+ "▁généra": 16805,
+ "EventArgs": 16806,
+ "inction": 16807,
+ "gly": 16808,
+ "▁Due": 16809,
+ "▁prost": 16810,
+ "▁referring": 16811,
+ "▁jog": 16812,
+ "▁executable": 16813,
+ "▁Dream": 16814,
+ "acs": 16815,
+ "▁Cole": 16816,
+ "ampf": 16817,
+ "▁Bis": 16818,
+ "▁июня": 16819,
+ "lieder": 16820,
+ "тек": 16821,
+ "▁vb": 16822,
+ "▁mom": 16823,
+ "▁:(": 16824,
+ "▁dernier": 16825,
+ "'=>": 16826,
+ "▁этого": 16827,
+ "▁neue": 16828,
+ "▁Ча": 16829,
+ "▁weitere": 16830,
+ "▁alleg": 16831,
+ "▁reality": 16832,
+ "▁judge": 16833,
+ "▁Balt": 16834,
+ "▁thin": 16835,
+ "▁Ged": 16836,
+ "ieval": 16837,
+ "mx": 16838,
+ "ціональ": 16839,
+ "▁выпу": 16840,
+ "▁IX": 16841,
+ "▁blind": 16842,
+ "▁Motor": 16843,
+ "▁ша": 16844,
+ "▁approximation": 16845,
+ "dam": 16846,
+ "▁fog": 16847,
+ "кор": 16848,
+ "▁Writ": 16849,
+ "▁ling": 16850,
+ "▁писа": 16851,
+ "▁Mars": 16852,
+ "otti": 16853,
+ "Enum": 16854,
+ "▁Trib": 16855,
+ "▁merc": 16856,
+ "zung": 16857,
+ "vanced": 16858,
+ "cfg": 16859,
+ "нах": 16860,
+ "schen": 16861,
+ "\"].": 16862,
+ "bek": 16863,
+ "▁ster": 16864,
+ "jp": 16865,
+ "▁Rap": 16866,
+ "▁recording": 16867,
+ "▁peint": 16868,
+ "▁lets": 16869,
+ "änge": 16870,
+ ">\";": 16871,
+ "▁місце": 16872,
+ "▁caval": 16873,
+ "▁CSV": 16874,
+ "▁entstand": 16875,
+ "▁helper": 16876,
+ "endet": 16877,
+ "▁Gram": 16878,
+ "▁Diego": 16879,
+ "▁Bishop": 16880,
+ "TAG": 16881,
+ "▁ecc": 16882,
+ "▁Een": 16883,
+ "▁AV": 16884,
+ "City": 16885,
+ "▁Guide": 16886,
+ "hind": 16887,
+ "rical": 16888,
+ "▁Основ": 16889,
+ "Bus": 16890,
+ "▁zunächst": 16891,
+ "▁tick": 16892,
+ "▁Colonel": 16893,
+ "Thanks": 16894,
+ "▁ferm": 16895,
+ "▁granted": 16896,
+ "▁threshold": 16897,
+ "omorphic": 16898,
+ "▁Hun": 16899,
+ "enis": 16900,
+ "▁прав": 16901,
+ "▁які": 16902,
+ "PG": 16903,
+ "▁ws": 16904,
+ "▁technical": 16905,
+ "estro": 16906,
+ "klär": 16907,
+ "vars": 16908,
+ "ocrat": 16909,
+ "▁општи": 16910,
+ "onso": 16911,
+ "iba": 16912,
+ "▁Save": 16913,
+ "▁programa": 16914,
+ "▁въ": 16915,
+ "▁invån": 16916,
+ ">()": 16917,
+ "▁mejor": 16918,
+ "▁слова": 16919,
+ "▁replacement": 16920,
+ "▁impr": 16921,
+ "▁Francesco": 16922,
+ "▁Hotel": 16923,
+ "▁UPDATE": 16924,
+ "▁музы": 16925,
+ "ugs": 16926,
+ "vard": 16927,
+ "▁faz": 16928,
+ "inton": 16929,
+ "▁arts": 16930,
+ "▁Ky": 16931,
+ "▁Ils": 16932,
+ "▁sera": 16933,
+ "▁Volume": 16934,
+ "▁giugno": 16935,
+ "▁asym": 16936,
+ "▁Pir": 16937,
+ "▁NAS": 16938,
+ "▁Tam": 16939,
+ "ěl": 16940,
+ "Sequ": 16941,
+ "kmal": 16942,
+ "▁Eins": 16943,
+ "▁компа": 16944,
+ "obe": 16945,
+ "oor": 16946,
+ "▁heap": 16947,
+ "ctl": 16948,
+ "▁separately": 16949,
+ "reader": 16950,
+ "▁significantly": 16951,
+ "▁Lag": 16952,
+ "notes": 16953,
+ "▁sele": 16954,
+ "▁dedicated": 16955,
+ "▁Host": 16956,
+ "choice": 16957,
+ "wing": 16958,
+ "▁Titel": 16959,
+ "▁befindet": 16960,
+ "large": 16961,
+ "▁conten": 16962,
+ "JavaScript": 16963,
+ "▁deser": 16964,
+ "▁Gordon": 16965,
+ "спе": 16966,
+ "▁patri": 16967,
+ "▁Random": 16968,
+ "▁Returns": 16969,
+ "ым": 16970,
+ "рома": 16971,
+ "▁Studies": 16972,
+ "Sl": 16973,
+ "▁frü": 16974,
+ "TEXT": 16975,
+ "inate": 16976,
+ "▁Tol": 16977,
+ "▁everywhere": 16978,
+ "arta": 16979,
+ "▁orbit": 16980,
+ "▁Aires": 16981,
+ "▁Iss": 16982,
+ "▁też": 16983,
+ "▁diverse": 16984,
+ "▁numeric": 16985,
+ "maz": 16986,
+ "▁mise": 16987,
+ "▁battery": 16988,
+ "▁Akadem": 16989,
+ "нение": 16990,
+ "▁simultane": 16991,
+ "▁Dead": 16992,
+ "▁clust": 16993,
+ "▁otro": 16994,
+ "▁cerca": 16995,
+ "()`,": 16996,
+ "roz": 16997,
+ "ăt": 16998,
+ "▁MO": 16999,
+ "riften": 17000,
+ "important": 17001,
+ "▁jeho": 17002,
+ "▁findViewById": 17003,
+ "▁consequence": 17004,
+ "▁measured": 17005,
+ "ishes": 17006,
+ "▁sze": 17007,
+ "iendo": 17008,
+ "▁Wahl": 17009,
+ "strip": 17010,
+ "ARD": 17011,
+ "▁opacity": 17012,
+ "WORD": 17013,
+ "▁Ві": 17014,
+ "▁Location": 17015,
+ "rai": 17016,
+ "пен": 17017,
+ "▁rif": 17018,
+ "aussian": 17019,
+ "FileName": 17020,
+ "▁disco": 17021,
+ "ilen": 17022,
+ "▁vagy": 17023,
+ "licity": 17024,
+ "Border": 17025,
+ "▁Track": 17026,
+ "бом": 17027,
+ "fact": 17028,
+ "oka": 17029,
+ "▁gior": 17030,
+ "▁XVII": 17031,
+ "▁där": 17032,
+ "Site": 17033,
+ "ało": 17034,
+ "ská": 17035,
+ "▁pixels": 17036,
+ "vity": 17037,
+ "jQuery": 17038,
+ "▁sculpt": 17039,
+ "▁cargo": 17040,
+ "▁directive": 17041,
+ "▁wal": 17042,
+ "▁conna": 17043,
+ "▁Through": 17044,
+ "▁этом": 17045,
+ "Static": 17046,
+ "omsnitt": 17047,
+ "▁rund": 17048,
+ "▁claimed": 17049,
+ "зня": 17050,
+ "sha": 17051,
+ "▁rag": 17052,
+ "crement": 17053,
+ "▁fünf": 17054,
+ "▁rival": 17055,
+ "rin": 17056,
+ "slash": 17057,
+ "▁thirty": 17058,
+ "sleep": 17059,
+ "ологи": 17060,
+ "SM": 17061,
+ "gate": 17062,
+ "izations": 17063,
+ "vik": 17064,
+ "▁bless": 17065,
+ "▁Illinois": 17066,
+ "▁TE": 17067,
+ "uting": 17068,
+ "▁solving": 17069,
+ "GER": 17070,
+ "▁XIV": 17071,
+ "▁Indians": 17072,
+ "express": 17073,
+ "▁Heil": 17074,
+ "▁mujer": 17075,
+ "▁invånare": 17076,
+ "']);": 17077,
+ "▁aur": 17078,
+ "boost": 17079,
+ "GO": 17080,
+ "▁nin": 17081,
+ "tok": 17082,
+ "god": 17083,
+ "oter": 17084,
+ ")$$": 17085,
+ "▁descend": 17086,
+ "рю": 17087,
+ "▁Language": 17088,
+ "▁diver": 17089,
+ "▁Assuming": 17090,
+ "▁frequent": 17091,
+ "чні": 17092,
+ "▁Biography": 17093,
+ ",[": 17094,
+ "urm": 17095,
+ "▁walked": 17096,
+ "▁federal": 17097,
+ "▁Michigan": 17098,
+ "▁facts": 17099,
+ "▁Integr": 17100,
+ "LES": 17101,
+ "▁Alan": 17102,
+ "▁coup": 17103,
+ "Ber": 17104,
+ "▁particles": 17105,
+ "ће": 17106,
+ "Inflater": 17107,
+ "+(": 17108,
+ "Bound": 17109,
+ "▁Sü": 17110,
+ "Audio": 17111,
+ "citet": 17112,
+ "yect": 17113,
+ "▁nr": 17114,
+ "xe": 17115,
+ "▁Brun": 17116,
+ "▁_,": 17117,
+ "avor": 17118,
+ "▁discipl": 17119,
+ "alm": 17120,
+ "▁ноября": 17121,
+ "▁SSL": 17122,
+ "▁Kaiser": 17123,
+ "▁recher": 17124,
+ "ygon": 17125,
+ "▁regardless": 17126,
+ "▁configur": 17127,
+ "▁unnecess": 17128,
+ "▁Clark": 17129,
+ "PHP": 17130,
+ "▁FALSE": 17131,
+ "▁pad": 17132,
+ "$}": 17133,
+ "▁valu": 17134,
+ "▁disease": 17135,
+ "▁maior": 17136,
+ "▁hommes": 17137,
+ "▁Edition": 17138,
+ "slant": 17139,
+ "▁ending": 17140,
+ "▁settled": 17141,
+ "urus": 17142,
+ "hed": 17143,
+ "Pattern": 17144,
+ "▁година": 17145,
+ "▁Philadel": 17146,
+ "tikzpicture": 17147,
+ "▁coal": 17148,
+ "▁sede": 17149,
+ "▁satisfies": 17150,
+ "▁trim": 17151,
+ "▁bat": 17152,
+ "▁américain": 17153,
+ "▁luglio": 17154,
+ "▁поча": 17155,
+ "ffff": 17156,
+ "▁Target": 17157,
+ "generate": 17158,
+ "▁Zie": 17159,
+ "ția": 17160,
+ "▁gard": 17161,
+ "▁workers": 17162,
+ "▁Job": 17163,
+ "▁urban": 17164,
+ "ahlen": 17165,
+ "▁Building": 17166,
+ "▁neu": 17167,
+ "▁chron": 17168,
+ "▁Earl": 17169,
+ "gro": 17170,
+ "USE": 17171,
+ "▁XII": 17172,
+ "▁wealth": 17173,
+ "inae": 17174,
+ "▁Бра": 17175,
+ "▁libert": 17176,
+ "iros": 17177,
+ ":$": 17178,
+ "lee": 17179,
+ "ieves": 17180,
+ "▁Justice": 17181,
+ "▁oil": 17182,
+ "▁Athlet": 17183,
+ "▁clo": 17184,
+ "Scale": 17185,
+ "▁lips": 17186,
+ "▁april": 17187,
+ "▁impression": 17188,
+ "▁perce": 17189,
+ "▁участи": 17190,
+ "vil": 17191,
+ "éch": 17192,
+ "▁equality": 17193,
+ "▁мет": 17194,
+ "▁annotation": 17195,
+ "ernal": 17196,
+ "▁Mach": 17197,
+ "▁intitul": 17198,
+ "problem": 17199,
+ "ющих": 17200,
+ "oplus": 17201,
+ "▁thousands": 17202,
+ "▁calculations": 17203,
+ "umps": 17204,
+ "▁triangle": 17205,
+ "phal": 17206,
+ "▁Dorf": 17207,
+ "▁dollars": 17208,
+ "▁denen": 17209,
+ "lès": 17210,
+ "olid": 17211,
+ "▁Results": 17212,
+ "▁Stadium": 17213,
+ "▁Desp": 17214,
+ "▁Eisen": 17215,
+ "imir": 17216,
+ "▁sotto": 17217,
+ "▁či": 17218,
+ "atable": 17219,
+ "orum": 17220,
+ "▁convergence": 17221,
+ "▁jeune": 17222,
+ "oking": 17223,
+ "▁живо": 17224,
+ "aining": 17225,
+ "pointer": 17226,
+ "culo": 17227,
+ "▁jsou": 17228,
+ "▁grab": 17229,
+ "akte": 17230,
+ "▁hoping": 17231,
+ "▁Mak": 17232,
+ "▁sag": 17233,
+ "origine": 17234,
+ "▁послед": 17235,
+ "▁Veg": 17236,
+ "▁theoret": 17237,
+ "▁Tru": 17238,
+ "nement": 17239,
+ "▁faces": 17240,
+ "Hor": 17241,
+ "Join": 17242,
+ "arel": 17243,
+ "▁около": 17244,
+ "However": 17245,
+ "▁catal": 17246,
+ "bourg": 17247,
+ "▁mysqli": 17248,
+ "acions": 17249,
+ "▁Initial": 17250,
+ "▁rain": 17251,
+ "iture": 17252,
+ "▁Sciences": 17253,
+ "▁Kreis": 17254,
+ ".__": 17255,
+ "▁cinq": 17256,
+ "▁Auß": 17257,
+ "ithmet": 17258,
+ "itors": 17259,
+ "amazon": 17260,
+ "▁gap": 17261,
+ "▁ignored": 17262,
+ "adv": 17263,
+ "кої": 17264,
+ "▁часть": 17265,
+ "▁corpor": 17266,
+ "цер": 17267,
+ "▁crime": 17268,
+ "uous": 17269,
+ "▁налази": 17270,
+ "DataFrame": 17271,
+ "води": 17272,
+ "Ign": 17273,
+ "▁Lincoln": 17274,
+ "▁menos": 17275,
+ "▁Luft": 17276,
+ "▁Lind": 17277,
+ "▁Cook": 17278,
+ "▁materials": 17279,
+ "apped": 17280,
+ "ignore": 17281,
+ "▁откры": 17282,
+ "fried": 17283,
+ "▁gouvernement": 17284,
+ "▁fired": 17285,
+ "▁screenshot": 17286,
+ "сен": 17287,
+ "▁[(": 17288,
+ "▁организа": 17289,
+ "Graphics": 17290,
+ "▁проти": 17291,
+ "▁phen": 17292,
+ "craft": 17293,
+ "▁brain": 17294,
+ "▁Como": 17295,
+ "▁Everything": 17296,
+ "anes": 17297,
+ "IGN": 17298,
+ "▁nederbörd": 17299,
+ "▁Forest": 17300,
+ "zahl": 17301,
+ "▁Among": 17302,
+ "Qt": 17303,
+ "▁togg": 17304,
+ "▁variant": 17305,
+ "▁hill": 17306,
+ "писи": 17307,
+ "colon": 17308,
+ "▁dicembre": 17309,
+ "гор": 17310,
+ "▁Wind": 17311,
+ "ünstler": 17312,
+ "▁=\\": 17313,
+ "saved": 17314,
+ "▁nej": 17315,
+ "unte": 17316,
+ "utto": 17317,
+ "▁recens": 17318,
+ "▁sick": 17319,
+ "▁desen": 17320,
+ "UST": 17321,
+ "▁worst": 17322,
+ "▁Angel": 17323,
+ "odox": 17324,
+ "▁Province": 17325,
+ "▁Maz": 17326,
+ "▁agreement": 17327,
+ "▁Bass": 17328,
+ "▁segunda": 17329,
+ "onces": 17330,
+ "▁Linki": 17331,
+ "▁CL": 17332,
+ "▁já": 17333,
+ "itement": 17334,
+ "▁área": 17335,
+ "▁scalar": 17336,
+ "▁Рес": 17337,
+ "awt": 17338,
+ "sieme": 17339,
+ "▁juni": 17340,
+ "▁худож": 17341,
+ "ikus": 17342,
+ "▁lid": 17343,
+ "ppel": 17344,
+ "avi": 17345,
+ "▁balance": 17346,
+ "ipping": 17347,
+ "cussion": 17348,
+ "ческих": 17349,
+ "(\".": 17350,
+ "Also": 17351,
+ "▁whis": 17352,
+ "HOME": 17353,
+ "▁brown": 17354,
+ "▁día": 17355,
+ "▁può": 17356,
+ "plotlib": 17357,
+ "▁Jahrhunderts": 17358,
+ "DK": 17359,
+ "▁anchor": 17360,
+ "...]": 17361,
+ "▁Austria": 17362,
+ "▁marca": 17363,
+ "▁gez": 17364,
+ "iously": 17365,
+ "▁lazy": 17366,
+ "xa": 17367,
+ "▁Channel": 17368,
+ "▁neuen": 17369,
+ "das": 17370,
+ "▁searched": 17371,
+ "▁staat": 17372,
+ "▁Так": 17373,
+ "▁Josef": 17374,
+ "▁Sher": 17375,
+ "pois": 17376,
+ "▁enem": 17377,
+ "▁accessing": 17378,
+ "▁неко": 17379,
+ "▁furono": 17380,
+ "▁pseudo": 17381,
+ "?>": 17382,
+ "▁estadoun": 17383,
+ "▁Види": 17384,
+ "▁motiv": 17385,
+ "▁recall": 17386,
+ "isson": 17387,
+ "ób": 17388,
+ ")--": 17389,
+ "▁Erz": 17390,
+ "▁савез": 17391,
+ "Direct": 17392,
+ "соб": 17393,
+ "▁sho": 17394,
+ "völker": 17395,
+ "Ap": 17396,
+ "gens": 17397,
+ "ништво": 17398,
+ "▁Amsterdam": 17399,
+ "usk": 17400,
+ "пло": 17401,
+ "▁simulation": 17402,
+ "▁BC": 17403,
+ "▁Woj": 17404,
+ "autom": 17405,
+ "Alex": 17406,
+ "▁economic": 17407,
+ "гом": 17408,
+ "ikai": 17409,
+ "▁altre": 17410,
+ "▁'-": 17411,
+ "▁Weg": 17412,
+ "NotFound": 17413,
+ "йской": 17414,
+ "▁converting": 17415,
+ "phabet": 17416,
+ "atrice": 17417,
+ "bourne": 17418,
+ "alom": 17419,
+ "▁comparing": 17420,
+ "▁Zo": 17421,
+ "▁fla": 17422,
+ "вая": 17423,
+ "▁entra": 17424,
+ "▁charset": 17425,
+ "developers": 17426,
+ "ística": 17427,
+ "}>": 17428,
+ "▁Jazz": 17429,
+ "▁Howard": 17430,
+ "шта": 17431,
+ "▁clone": 17432,
+ "door": 17433,
+ "▁Pin": 17434,
+ "***": 17435,
+ "▁silent": 17436,
+ "ecycle": 17437,
+ "isce": 17438,
+ "▁mud": 17439,
+ "▁Display": 17440,
+ "▁lip": 17441,
+ "▁использова": 17442,
+ "▁characteristic": 17443,
+ "▁sb": 17444,
+ "firebase": 17445,
+ "▁Bew": 17446,
+ "Calendar": 17447,
+ "▁uso": 17448,
+ "èse": 17449,
+ "▁Rat": 17450,
+ "▁esper": 17451,
+ "▁throwing": 17452,
+ "▁rodz": 17453,
+ "▁yards": 17454,
+ "▁grass": 17455,
+ "▁marker": 17456,
+ "▁Kos": 17457,
+ "Theta": 17458,
+ "▁organis": 17459,
+ "kernel": 17460,
+ "▁personas": 17461,
+ "keep": 17462,
+ "▁exclaimed": 17463,
+ "oslav": 17464,
+ "▁Entertain": 17465,
+ "нер": 17466,
+ "▁inwon": 17467,
+ "▁Rand": 17468,
+ "reduce": 17469,
+ "fac": 17470,
+ "expression": 17471,
+ "yj": 17472,
+ "▁differenti": 17473,
+ "aglia": 17474,
+ "▁templates": 17475,
+ "▁mű": 17476,
+ "▁prv": 17477,
+ "▁mois": 17478,
+ "▁gewann": 17479,
+ "▁була": 17480,
+ "bibli": 17481,
+ "demo": 17482,
+ "▁Anderson": 17483,
+ "▁ред": 17484,
+ "▁porque": 17485,
+ "▁Pologne": 17486,
+ "▁trip": 17487,
+ "▁exemple": 17488,
+ "▁Internacional": 17489,
+ "▁као": 17490,
+ "Insert": 17491,
+ "general": 17492,
+ "SESSION": 17493,
+ "berga": 17494,
+ "hält": 17495,
+ "unas": 17496,
+ "мира": 17497,
+ "▁yields": 17498,
+ "mapsto": 17499,
+ "spot": 17500,
+ "▁+\\": 17501,
+ "лла": 17502,
+ "▁precisely": 17503,
+ "▁член": 17504,
+ "shadow": 17505,
+ "Are": 17506,
+ "unal": 17507,
+ "▁dispar": 17508,
+ "▁título": 17509,
+ "nest": 17510,
+ "▁Low": 17511,
+ "▁prot": 17512,
+ "▁Costa": 17513,
+ "named": 17514,
+ "▁gained": 17515,
+ "lesia": 17516,
+ "▁administration": 17517,
+ "Import": 17518,
+ "branch": 17519,
+ "▁sympath": 17520,
+ "voj": 17521,
+ "▁EC": 17522,
+ "▁municipio": 17523,
+ "▁animated": 17524,
+ "▁directories": 17525,
+ "▁roof": 17526,
+ "ząd": 17527,
+ "imet": 17528,
+ "proto": 17529,
+ "bla": 17530,
+ ":]": 17531,
+ "have": 17532,
+ "atem": 17533,
+ "▁ns": 17534,
+ "▁sector": 17535,
+ "three": 17536,
+ "owane": 17537,
+ "wers": 17538,
+ "ових": 17539,
+ "rence": 17540,
+ "▁extr": 17541,
+ "igten": 17542,
+ "▁occident": 17543,
+ "ță": 17544,
+ "▁eat": 17545,
+ "▁hydro": 17546,
+ "ubernetes": 17547,
+ "[@": 17548,
+ "▁Moon": 17549,
+ "▁Sho": 17550,
+ "▁elsewhere": 17551,
+ "üller": 17552,
+ "Upload": 17553,
+ "ланд": 17554,
+ "▁För": 17555,
+ "wissenschaft": 17556,
+ "KS": 17557,
+ "▁physics": 17558,
+ "tz": 17559,
+ "▁серед": 17560,
+ "▁Arbeit": 17561,
+ "▁мест": 17562,
+ "▁Gebiet": 17563,
+ "▁insect": 17564,
+ "Ah": 17565,
+ "izado": 17566,
+ "▁temple": 17567,
+ "▁annual": 17568,
+ "stad": 17569,
+ "▁habitat": 17570,
+ "▁AB": 17571,
+ "wort": 17572,
+ "▁repos": 17573,
+ "▁Neu": 17574,
+ "▁$(\".": 17575,
+ "Vorlage": 17576,
+ "▁reprezent": 17577,
+ "estanden": 17578,
+ "Intern": 17579,
+ ".`": 17580,
+ "▁failing": 17581,
+ "▁Material": 17582,
+ "▁effectively": 17583,
+ "телем": 17584,
+ "▁гла": 17585,
+ "▁nahm": 17586,
+ "▁differently": 17587,
+ "extension": 17588,
+ "▁Verm": 17589,
+ "enabled": 17590,
+ "configure": 17591,
+ "nio": 17592,
+ "ciones": 17593,
+ "▁Beach": 17594,
+ "сона": 17595,
+ "▁copying": 17596,
+ "▁україн": 17597,
+ "▁призна": 17598,
+ "zh": 17599,
+ "Desktop": 17600,
+ "▁sost": 17601,
+ "▁subsequently": 17602,
+ "▁Lehr": 17603,
+ "▁ó": 17604,
+ "lär": 17605,
+ "odor": 17606,
+ "phon": 17607,
+ "nc": 17608,
+ "iterator": 17609,
+ "▁эти": 17610,
+ "▁europé": 17611,
+ "▁Toronto": 17612,
+ "ódigo": 17613,
+ "▁posto": 17614,
+ "ffe": 17615,
+ "▁crew": 17616,
+ "▁Schwar": 17617,
+ "Sa": 17618,
+ "square": 17619,
+ "▁beside": 17620,
+ "▁Мі": 17621,
+ "▁ath": 17622,
+ "▁advent": 17623,
+ "cji": 17624,
+ "written": 17625,
+ "▁russ": 17626,
+ "rost": 17627,
+ "HI": 17628,
+ "▁dice": 17629,
+ "cca": 17630,
+ "▁dép": 17631,
+ "ply": 17632,
+ "bigg": 17633,
+ "ział": 17634,
+ "ütt": 17635,
+ "▁одно": 17636,
+ "JECT": 17637,
+ "ському": 17638,
+ "nos": 17639,
+ "mock": 17640,
+ "Launch": 17641,
+ "same": 17642,
+ "▁jobs": 17643,
+ "▁widely": 17644,
+ "▁defines": 17645,
+ "▁Pse": 17646,
+ "▁neighbour": 17647,
+ "ющие": 17648,
+ "▁closer": 17649,
+ "▁располо": 17650,
+ "▁clubs": 17651,
+ "fly": 17652,
+ "шим": 17653,
+ "▁suffered": 17654,
+ "▁nar": 17655,
+ "▁lavor": 17656,
+ "Extension": 17657,
+ "itionally": 17658,
+ "▁grace": 17659,
+ "▁Campeonato": 17660,
+ "▁Christmas": 17661,
+ "middle": 17662,
+ "othek": 17663,
+ "elements": 17664,
+ "▁sondern": 17665,
+ "▁tarde": 17666,
+ "▁permanent": 17667,
+ "▁conclude": 17668,
+ "Seg": 17669,
+ "▁акаде": 17670,
+ "}\",": 17671,
+ "▁февраля": 17672,
+ "řed": 17673,
+ "▁IL": 17674,
+ "jud": 17675,
+ "▁USS": 17676,
+ "▁Nature": 17677,
+ "ifference": 17678,
+ "Serializer": 17679,
+ "▁twelve": 17680,
+ "tid": 17681,
+ "мия": 17682,
+ "ческого": 17683,
+ "▁calendar": 17684,
+ "concat": 17685,
+ "▁intersection": 17686,
+ "▁PA": 17687,
+ "azure": 17688,
+ "▁située": 17689,
+ "▁kinds": 17690,
+ "▁ausge": 17691,
+ "▁rural": 17692,
+ "Theme": 17693,
+ "▁tale": 17694,
+ "noindent": 17695,
+ "going": 17696,
+ "rx": 17697,
+ "agi": 17698,
+ "wrapper": 17699,
+ "▁Coast": 17700,
+ "mbH": 17701,
+ "▁перед": 17702,
+ "spre": 17703,
+ "▁}\\": 17704,
+ "▁LI": 17705,
+ "znam": 17706,
+ "itled": 17707,
+ "Sample": 17708,
+ "uliar": 17709,
+ "*\\": 17710,
+ "▁resistance": 17711,
+ "stock": 17712,
+ "ked": 17713,
+ "▁HE": 17714,
+ "▁possession": 17715,
+ "▁Ring": 17716,
+ "▁magyar": 17717,
+ "outs": 17718,
+ "▁Secretary": 17719,
+ "nde": 17720,
+ "▁Wald": 17721,
+ "-(": 17722,
+ "▁ISO": 17723,
+ "▁afternoon": 17724,
+ "ionen": 17725,
+ "▁stops": 17726,
+ "▁constants": 17727,
+ "guard": 17728,
+ "bow": 17729,
+ "▁ers": 17730,
+ "▁Firebase": 17731,
+ "▁Clear": 17732,
+ "▁Holy": 17733,
+ "Win": 17734,
+ "▁titles": 17735,
+ "▁трав": 17736,
+ "▁contrib": 17737,
+ "häng": 17738,
+ "▁photograph": 17739,
+ "▁Distribution": 17740,
+ "ifts": 17741,
+ "▁aunque": 17742,
+ "comb": 17743,
+ "ADD": 17744,
+ "▁publication": 17745,
+ "▁служ": 17746,
+ "▁кня": 17747,
+ "▁ayant": 17748,
+ "▁restore": 17749,
+ "▁belief": 17750,
+ "▁vég": 17751,
+ "▁extensions": 17752,
+ "▁decom": 17753,
+ "вший": 17754,
+ "WT": 17755,
+ "▁parti": 17756,
+ "▁gioc": 17757,
+ "▁мира": 17758,
+ "▁issu": 17759,
+ "pipe": 17760,
+ "▁props": 17761,
+ "▁willing": 17762,
+ "▁nest": 17763,
+ "aso": 17764,
+ "pot": 17765,
+ "▁handles": 17766,
+ "▁фо": 17767,
+ "▁moder": 17768,
+ "▁ebenfalls": 17769,
+ "▁fighting": 17770,
+ "umbn": 17771,
+ "▁transparent": 17772,
+ "▁Krist": 17773,
+ "▁homes": 17774,
+ "▁voyage": 17775,
+ "Failed": 17776,
+ "▁Bird": 17777,
+ "▁Heart": 17778,
+ "Counter": 17779,
+ "▁Scottish": 17780,
+ "ática": 17781,
+ "▁arbeit": 17782,
+ "^{-\\": 17783,
+ "▁Sor": 17784,
+ "▁engaged": 17785,
+ "▁aside": 17786,
+ "▁Fou": 17787,
+ "▁wiel": 17788,
+ "▁reconst": 17789,
+ "ousin": 17790,
+ "▁hosted": 17791,
+ "▁classe": 17792,
+ "▁contest": 17793,
+ "...\"": 17794,
+ "мом": 17795,
+ "▁bean": 17796,
+ "gem": 17797,
+ "▁consultato": 17798,
+ "▁bio": 17799,
+ "▁subjects": 17800,
+ "boBox": 17801,
+ "▁Schrift": 17802,
+ "▁dinner": 17803,
+ "ăr": 17804,
+ "▁równ": 17805,
+ "▁%%": 17806,
+ "bage": 17807,
+ "▁veröff": 17808,
+ "▁detected": 17809,
+ "ienn": 17810,
+ "rose": 17811,
+ "▁Ton": 17812,
+ "Complete": 17813,
+ "▁proto": 17814,
+ "ichts": 17815,
+ "STAT": 17816,
+ "Checked": 17817,
+ "▁inten": 17818,
+ "▁smile": 17819,
+ "▁strip": 17820,
+ "neut": 17821,
+ "');\r": 17822,
+ "four": 17823,
+ "▁todas": 17824,
+ "Controls": 17825,
+ "▁thorough": 17826,
+ "rup": 17827,
+ "▁држави": 17828,
+ "ită": 17829,
+ "Protocol": 17830,
+ "Ка": 17831,
+ "▁expanded": 17832,
+ "extra": 17833,
+ "oport": 17834,
+ "▁Станов": 17835,
+ "leases": 17836,
+ "▁notion": 17837,
+ "▁guest": 17838,
+ "▁Islands": 17839,
+ "icked": 17840,
+ "▁Dave": 17841,
+ "▁reflection": 17842,
+ "liv": 17843,
+ "ální": 17844,
+ "▁revealed": 17845,
+ "▁sog": 17846,
+ "▁Tax": 17847,
+ "▁periodo": 17848,
+ "▁Weltkrie": 17849,
+ "catalina": 17850,
+ "qué": 17851,
+ "▁Father": 17852,
+ "▁Bir": 17853,
+ "expect": 17854,
+ "▁regression": 17855,
+ "iné": 17856,
+ "▁dabei": 17857,
+ "perm": 17858,
+ "мене": 17859,
+ "▁Abd": 17860,
+ "▁CF": 17861,
+ "arks": 17862,
+ "resolve": 17863,
+ "wedge": 17864,
+ "▁initialization": 17865,
+ "▁Véase": 17866,
+ "▁приня": 17867,
+ "stmt": 17868,
+ "▁income": 17869,
+ "MY": 17870,
+ "▁odkazy": 17871,
+ "▁Siehe": 17872,
+ "▁bodies": 17873,
+ "▁soc": 17874,
+ "Random": 17875,
+ "▁senza": 17876,
+ "ablo": 17877,
+ "▁regarded": 17878,
+ "onCreate": 17879,
+ "▁Magazine": 17880,
+ "▁Raf": 17881,
+ "▁Buenos": 17882,
+ "ил": 17883,
+ ")));": 17884,
+ "capt": 17885,
+ "redirect": 17886,
+ "▁petit": 17887,
+ "▁farm": 17888,
+ "▁rôle": 17889,
+ "▁статьи": 17890,
+ " ": 17891,
+ "subfigure": 17892,
+ "èces": 17893,
+ "ziel": 17894,
+ "▁окон": 17895,
+ "EE": 17896,
+ "mee": 17897,
+ "▁perten": 17898,
+ "▁représent": 17899,
+ "▁LA": 17900,
+ "?'": 17901,
+ "▁тру": 17902,
+ "▁rational": 17903,
+ "osof": 17904,
+ "▁kne": 17905,
+ "▁artists": 17906,
+ "Flow": 17907,
+ "▁Аль": 17908,
+ "izard": 17909,
+ "▁numero": 17910,
+ "actic": 17911,
+ "▁destruct": 17912,
+ "▁Пра": 17913,
+ "onsieur": 17914,
+ "qt": 17915,
+ "abestanden": 17916,
+ "ność": 17917,
+ "Connect": 17918,
+ "▁oracle": 17919,
+ "▁Stockholm": 17920,
+ "sizeof": 17921,
+ "▁gemäß": 17922,
+ "ACT": 17923,
+ "▁expert": 17924,
+ "utions": 17925,
+ "▁hacia": 17926,
+ "▁logger": 17927,
+ "▁fool": 17928,
+ "rypto": 17929,
+ "ær": 17930,
+ "▁cidade": 17931,
+ "▁составе": 17932,
+ "oker": 17933,
+ "▁Transfer": 17934,
+ "▁denied": 17935,
+ "Track": 17936,
+ "▁radi": 17937,
+ "zec": 17938,
+ "▁Historic": 17939,
+ "▁Einwohner": 17940,
+ "кою": 17941,
+ "▁хра": 17942,
+ "▁Category": 17943,
+ "▁Disney": 17944,
+ "▁swap": 17945,
+ "Begin": 17946,
+ "▁mientras": 17947,
+ "▁dance": 17948,
+ "▁tête": 17949,
+ "▁droit": 17950,
+ "erta": 17951,
+ "▁birds": 17952,
+ "▁convin": 17953,
+ "parator": 17954,
+ "дра": 17955,
+ "▁ES": 17956,
+ "▁Ressources": 17957,
+ "EGIN": 17958,
+ "ücke": 17959,
+ "▁Cruz": 17960,
+ "abling": 17961,
+ "▁\"@": 17962,
+ "▁metres": 17963,
+ "▁Beg": 17964,
+ "▁Gründ": 17965,
+ "▁Boh": 17966,
+ "▁mile": 17967,
+ "▁Technology": 17968,
+ "\"+": 17969,
+ "acco": 17970,
+ "▁ss": 17971,
+ "▁Fed": 17972,
+ "▁Hend": 17973,
+ "usch": 17974,
+ "itä": 17975,
+ "folk": 17976,
+ "▁absor": 17977,
+ "antal": 17978,
+ "odge": 17979,
+ "▁WHEN": 17980,
+ "▁Externí": 17981,
+ "▁Regiment": 17982,
+ "▁evaluation": 17983,
+ "▁Tai": 17984,
+ "▁vocals": 17985,
+ "▁experimental": 17986,
+ "embed": 17987,
+ "▁Minn": 17988,
+ "▁вме": 17989,
+ "prec": 17990,
+ "every": 17991,
+ "▁hoof": 17992,
+ "▁Fernando": 17993,
+ "▁Bibliographie": 17994,
+ "▁nag": 17995,
+ "amerikanischer": 17996,
+ "▁marks": 17997,
+ "▁UTC": 17998,
+ "▁uncertain": 17999,
+ "дия": 18000,
+ "olia": 18001,
+ "▁cup": 18002,
+ "▁fille": 18003,
+ "▁dok": 18004,
+ "useppe": 18005,
+ "esterd": 18006,
+ "▁Brand": 18007,
+ "▁Third": 18008,
+ "PP": 18009,
+ "nodes": 18010,
+ "▁Pad": 18011,
+ "▁loved": 18012,
+ "swing": 18013,
+ "▁surprised": 18014,
+ "ardi": 18015,
+ "▁GR": 18016,
+ "]\"": 18017,
+ "▁equally": 18018,
+ "ihe": 18019,
+ "care": 18020,
+ "писок": 18021,
+ "lijk": 18022,
+ "rinn": 18023,
+ "▁\\[\\": 18024,
+ "▁sons": 18025,
+ "▁tät": 18026,
+ "icamente": 18027,
+ "▁listing": 18028,
+ "iellement": 18029,
+ "▁nyelven": 18030,
+ "▁ds": 18031,
+ "▁agricult": 18032,
+ "▁Hermann": 18033,
+ "▁besides": 18034,
+ "progress": 18035,
+ "▁peculiar": 18036,
+ "focus": 18037,
+ "cn": 18038,
+ "-$": 18039,
+ "ственный": 18040,
+ "ourg": 18041,
+ "▁wyn": 18042,
+ "▁conducted": 18043,
+ "▁Становништво": 18044,
+ "connected": 18045,
+ "▁bott": 18046,
+ "▁смер": 18047,
+ "▁Poz": 18048,
+ "unct": 18049,
+ "conda": 18050,
+ "▁савезној": 18051,
+ "▁havet": 18052,
+ "ligt": 18053,
+ "orted": 18054,
+ "▁entering": 18055,
+ "multip": 18056,
+ "▁Temple": 18057,
+ "▁Plant": 18058,
+ "typeof": 18059,
+ "▁Vlad": 18060,
+ "▁qued": 18061,
+ "▁reste": 18062,
+ "▁май": 18063,
+ "▁Very": 18064,
+ "ambiguation": 18065,
+ "▁challeng": 18066,
+ "▁respective": 18067,
+ "▁тор": 18068,
+ "Ctrl": 18069,
+ "▁absence": 18070,
+ "aru": 18071,
+ "вое": 18072,
+ "▁först": 18073,
+ "▁sq": 18074,
+ "▁Emperor": 18075,
+ "▁Ign": 18076,
+ "▁това": 18077,
+ ":`": 18078,
+ "adoop": 18079,
+ "▁Madame": 18080,
+ "▁gruppo": 18081,
+ "stud": 18082,
+ "▁externas": 18083,
+ "▁Александр": 18084,
+ "▁dign": 18085,
+ "▁живе": 18086,
+ "Amount": 18087,
+ "▁correlate": 18088,
+ "▁Fant": 18089,
+ "▁rails": 18090,
+ "fp": 18091,
+ "министратив": 18092,
+ "▁bought": 18093,
+ "▁filters": 18094,
+ "▁ancora": 18095,
+ "▁partner": 18096,
+ "▁quand": 18097,
+ "symbol": 18098,
+ "ulating": 18099,
+ "▁zd": 18100,
+ "awn": 18101,
+ "▁Grant": 18102,
+ "because": 18103,
+ "rable": 18104,
+ "\\}": 18105,
+ "ísticas": 18106,
+ "▁уче": 18107,
+ "▁période": 18108,
+ "▁ske": 18109,
+ "▁Anyway": 18110,
+ "▁indexes": 18111,
+ "▁directions": 18112,
+ "▁RAM": 18113,
+ "chrome": 18114,
+ "▁apost": 18115,
+ "▁warnings": 18116,
+ "▁Airport": 18117,
+ "VI": 18118,
+ "abile": 18119,
+ "▁lord": 18120,
+ "provider": 18121,
+ "▁Ji": 18122,
+ "ostream": 18123,
+ "▁gemeente": 18124,
+ "tableView": 18125,
+ "Extra": 18126,
+ "cursor": 18127,
+ "eground": 18128,
+ "▁Moz": 18129,
+ "▁rib": 18130,
+ "▁morph": 18131,
+ "loads": 18132,
+ "elsk": 18133,
+ "▁MAX": 18134,
+ "▁Santiago": 18135,
+ "▁Him": 18136,
+ "codes": 18137,
+ "▁lanz": 18138,
+ "▁counts": 18139,
+ "rinningsområ": 18140,
+ "щё": 18141,
+ "▁spé": 18142,
+ "▁pierws": 18143,
+ "▁Sver": 18144,
+ "▁acknow": 18145,
+ "Boolean": 18146,
+ "▁фамили": 18147,
+ "▁Senate": 18148,
+ "шов": 18149,
+ "agers": 18150,
+ "▁Nueva": 18151,
+ "bil": 18152,
+ "kiem": 18153,
+ "▁Mey": 18154,
+ "wij": 18155,
+ "▁GmbH": 18156,
+ "validation": 18157,
+ "▁ensuite": 18158,
+ "inking": 18159,
+ "▁campion": 18160,
+ "▁financial": 18161,
+ "izon": 18162,
+ "Headers": 18163,
+ "▁deprecated": 18164,
+ "▁fonction": 18165,
+ "REG": 18166,
+ "▁volumes": 18167,
+ "▁Chi": 18168,
+ "▁encountered": 18169,
+ "lak": 18170,
+ "рая": 18171,
+ "▁continues": 18172,
+ "▁~[": 18173,
+ "uerte": 18174,
+ "▁\\;": 18175,
+ "▁Dok": 18176,
+ "▁weights": 18177,
+ "▁rh": 18178,
+ "▁Napole": 18179,
+ "▁naturally": 18180,
+ "sku": 18181,
+ "pas": 18182,
+ "▁gegründ": 18183,
+ "etr": 18184,
+ "▁Ku": 18185,
+ "icted": 18186,
+ "▁fabric": 18187,
+ "▁ASC": 18188,
+ "▁Entertainment": 18189,
+ "▁energ": 18190,
+ "клад": 18191,
+ "omon": 18192,
+ "theme": 18193,
+ "▁харак": 18194,
+ "▁draft": 18195,
+ "▁channels": 18196,
+ "▁desert": 18197,
+ "▁través": 18198,
+ "▁Lock": 18199,
+ "▁siendo": 18200,
+ "фек": 18201,
+ "même": 18202,
+ "▁packet": 18203,
+ "▁Mountain": 18204,
+ "▁Fahr": 18205,
+ "braio": 18206,
+ "пере": 18207,
+ "▁genannt": 18208,
+ "▁deployment": 18209,
+ "Pal": 18210,
+ "ног": 18211,
+ "стру": 18212,
+ "Prim": 18213,
+ "für": 18214,
+ "▁dangerous": 18215,
+ "▁szám": 18216,
+ "reck": 18217,
+ "▁popup": 18218,
+ "icky": 18219,
+ "inar": 18220,
+ "cowo": 18221,
+ "нцикло": 18222,
+ "ítás": 18223,
+ "▁plugins": 18224,
+ "▁driven": 18225,
+ "лев": 18226,
+ "▁\"(": 18227,
+ "tta": 18228,
+ "▁Ú": 18229,
+ "▁eb": 18230,
+ "▁'';": 18231,
+ "▁knock": 18232,
+ "▁основа": 18233,
+ "▁maison": 18234,
+ "гля": 18235,
+ "▁Honor": 18236,
+ "tail": 18237,
+ "ritz": 18238,
+ "▁guys": 18239,
+ "▁combinations": 18240,
+ "ondere": 18241,
+ "▁Ald": 18242,
+ "▁fiddle": 18243,
+ "дав": 18244,
+ "urd": 18245,
+ "▁projection": 18246,
+ "▁También": 18247,
+ "verb": 18248,
+ "▁terre": 18249,
+ "rugu": 18250,
+ "▁september": 18251,
+ "▁=": 18572,
+ "▁Beat": 18573,
+ "▁Sax": 18574,
+ "vertical": 18575,
+ "кто": 18576,
+ "▁plants": 18577,
+ "▁Références": 18578,
+ "▁ogni": 18579,
+ "▁curs": 18580,
+ "▁SK": 18581,
+ "они": 18582,
+ "▁destac": 18583,
+ "\");\r": 18584,
+ "▁Sure": 18585,
+ "▁partido": 18586,
+ "▁Folge": 18587,
+ "▁Moore": 18588,
+ "▁wz": 18589,
+ "скус": 18590,
+ "ltre": 18591,
+ "ondo": 18592,
+ "▁pose": 18593,
+ "imos": 18594,
+ "бой": 18595,
+ "ципа": 18596,
+ "jus": 18597,
+ ".....": 18598,
+ "▁época": 18599,
+ "▁quanto": 18600,
+ "▁Support": 18601,
+ "geschichte": 18602,
+ "SERVER": 18603,
+ "▁Georges": 18604,
+ "enum": 18605,
+ "▁herm": 18606,
+ "▁nebo": 18607,
+ "▁Chr": 18608,
+ "character": 18609,
+ "▁***": 18610,
+ "▁Forsch": 18611,
+ "iami": 18612,
+ "▁¿": 18613,
+ "cych": 18614,
+ "▁fifth": 18615,
+ "sent": 18616,
+ "▁anderem": 18617,
+ "▁proportion": 18618,
+ "▁prest": 18619,
+ "▁Girl": 18620,
+ "▁drama": 18621,
+ "wand": 18622,
+ "▁Mail": 18623,
+ "▁Lux": 18624,
+ "▁který": 18625,
+ "▁Gesellschaft": 18626,
+ "▁Hinweis": 18627,
+ "nisse": 18628,
+ "▁mondo": 18629,
+ "Eq": 18630,
+ "▁perí": 18631,
+ "▁eastern": 18632,
+ "▁UEFA": 18633,
+ "uale": 18634,
+ "▁convex": 18635,
+ "▁поль": 18636,
+ "▁Hey": 18637,
+ "zenie": 18638,
+ "initely": 18639,
+ "▁Zusammen": 18640,
+ "SSL": 18641,
+ "ocal": 18642,
+ "▁canal": 18643,
+ "voy": 18644,
+ "▁Кри": 18645,
+ "▁között": 18646,
+ "▁cars": 18647,
+ "▁versión": 18648,
+ "Environment": 18649,
+ "Her": 18650,
+ "▁señ": 18651,
+ "▁spatial": 18652,
+ "ymi": 18653,
+ "Fire": 18654,
+ "▁veget": 18655,
+ "▁Wie": 18656,
+ "▁znaj": 18657,
+ "▁damage": 18658,
+ "▁endl": 18659,
+ "gif": 18660,
+ "▁quali": 18661,
+ "▁которых": 18662,
+ "ellan": 18663,
+ "▁mens": 18664,
+ "▁plug": 18665,
+ "▁abund": 18666,
+ "FIG": 18667,
+ "▁sf": 18668,
+ "▁confl": 18669,
+ "▁населения": 18670,
+ "▁principles": 18671,
+ "▁Gabriel": 18672,
+ "ibe": 18673,
+ "▁{%": 18674,
+ "▁població": 18675,
+ "ніципа": 18676,
+ "▁extreme": 18677,
+ "▁asse": 18678,
+ "▁vu": 18679,
+ "Mock": 18680,
+ "▁spielte": 18681,
+ "▁Aer": 18682,
+ "▁datos": 18683,
+ "endes": 18684,
+ "▁Gel": 18685,
+ "▁Gor": 18686,
+ "Christ": 18687,
+ "chos": 18688,
+ "Processor": 18689,
+ "▁instruct": 18690,
+ "▁picked": 18691,
+ "nahme": 18692,
+ "fahr": 18693,
+ "▁indicated": 18694,
+ "▁%.": 18695,
+ "▁ts": 18696,
+ "▁notable": 18697,
+ "▁qualified": 18698,
+ "▁Ал": 18699,
+ "Black": 18700,
+ "▁council": 18701,
+ "▁overhead": 18702,
+ "aci": 18703,
+ "année": 18704,
+ "▁initWith": 18705,
+ "bió": 18706,
+ "▁introduction": 18707,
+ "▁companion": 18708,
+ "▁expon": 18709,
+ "▁kör": 18710,
+ "oby": 18711,
+ "burn": 18712,
+ "gnu": 18713,
+ "virtual": 18714,
+ "▁intellect": 18715,
+ "▁держа": 18716,
+ "'+": 18717,
+ "бле": 18718,
+ "▁strictly": 18719,
+ "▁recognize": 18720,
+ "hour": 18721,
+ "▁Wrest": 18722,
+ "ennen": 18723,
+ "$).": 18724,
+ "fff": 18725,
+ "▁Centro": 18726,
+ "▁Pitt": 18727,
+ "▁dział": 18728,
+ "▁cela": 18729,
+ "▁francese": 18730,
+ "рами": 18731,
+ "special": 18732,
+ "▁Dup": 18733,
+ "toire": 18734,
+ "каль": 18735,
+ "COUNT": 18736,
+ "▁Brook": 18737,
+ "▁руково": 18738,
+ "publique": 18739,
+ "▁seconda": 18740,
+ "▁compt": 18741,
+ "▁bland": 18742,
+ "Before": 18743,
+ "▁Pack": 18744,
+ "alty": 18745,
+ "öder": 18746,
+ "▁intervals": 18747,
+ "▁Datenbank": 18748,
+ "Movie": 18749,
+ "▁transm": 18750,
+ "▁tap": 18751,
+ "▁поч": 18752,
+ "fon": 18753,
+ "iai": 18754,
+ "▁fib": 18755,
+ "▁wyd": 18756,
+ "▁hung": 18757,
+ "▁alive": 18758,
+ "Clear": 18759,
+ "▁pushed": 18760,
+ "▁tuple": 18761,
+ "achen": 18762,
+ "гово": 18763,
+ "▁revers": 18764,
+ "▁augment": 18765,
+ "▁challenge": 18766,
+ "lost": 18767,
+ "▁deuxième": 18768,
+ "structor": 18769,
+ "▁mehrerer": 18770,
+ "atural": 18771,
+ "Split": 18772,
+ "стем": 18773,
+ "шла": 18774,
+ ")\\\\": 18775,
+ "▁Dog": 18776,
+ "▁developers": 18777,
+ "▁nod": 18778,
+ "▁сторо": 18779,
+ "▁NaN": 18780,
+ "▁priest": 18781,
+ "▁exha": 18782,
+ "UND": 18783,
+ "pair": 18784,
+ "alone": 18785,
+ "▁moon": 18786,
+ "▁#!/": 18787,
+ "▁guns": 18788,
+ "rola": 18789,
+ "чита": 18790,
+ "▁Encyclopedia": 18791,
+ "atis": 18792,
+ "▁'\"": 18793,
+ "zych": 18794,
+ "▁superfic": 18795,
+ "▁эк": 18796,
+ "едера": 18797,
+ "feed": 18798,
+ "LAY": 18799,
+ "Fi": 18800,
+ "unks": 18801,
+ "isecond": 18802,
+ "▁'@": 18803,
+ "▁Adding": 18804,
+ "рое": 18805,
+ "▁tang": 18806,
+ "цо": 18807,
+ "hung": 18808,
+ "bis": 18809,
+ "ského": 18810,
+ "▁advert": 18811,
+ "▁занима": 18812,
+ "uzz": 18813,
+ "ágina": 18814,
+ "▁Tel": 18815,
+ "sig": 18816,
+ "▁Ez": 18817,
+ "▁guarantee": 18818,
+ "▁teaching": 18819,
+ "oty": 18820,
+ "termin": 18821,
+ "▁distributions": 18822,
+ "FLA": 18823,
+ "▁Giuseppe": 18824,
+ "querySelector": 18825,
+ "▁/\\": 18826,
+ "▁Squad": 18827,
+ "gz": 18828,
+ "delay": 18829,
+ "▁surrounding": 18830,
+ "▁manus": 18831,
+ "▁Hou": 18832,
+ "²,": 18833,
+ "▁cultiv": 18834,
+ "▁troubles": 18835,
+ "▁raison": 18836,
+ "expand": 18837,
+ "▁cov": 18838,
+ "nungen": 18839,
+ ")){": 18840,
+ "▁geen": 18841,
+ "▁außer": 18842,
+ "▁Лі": 18843,
+ "ři": 18844,
+ "▁situations": 18845,
+ "▁telep": 18846,
+ "▁Jed": 18847,
+ "▁travail": 18848,
+ "lias": 18849,
+ "bullet": 18850,
+ "▁selecting": 18851,
+ "avier": 18852,
+ "▁essential": 18853,
+ "(/": 18854,
+ "yyyy": 18855,
+ "ště": 18856,
+ "ulty": 18857,
+ "▁kra": 18858,
+ "▁tabs": 18859,
+ "▁experienced": 18860,
+ "azi": 18861,
+ "▁Directory": 18862,
+ "▁cron": 18863,
+ "▁spend": 18864,
+ "▁RA": 18865,
+ "▁selenium": 18866,
+ "▁Thé": 18867,
+ "Elements": 18868,
+ "cii": 18869,
+ "▁plat": 18870,
+ "▁archive": 18871,
+ "▁assistance": 18872,
+ "▁neck": 18873,
+ "▁Avenue": 18874,
+ "▁wheel": 18875,
+ "▁hade": 18876,
+ "Common": 18877,
+ "▁Dialog": 18878,
+ "▁forg": 18879,
+ "▁surely": 18880,
+ "▁hockey": 18881,
+ "któ": 18882,
+ "▁tk": 18883,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 18884,
+ "▁Bruce": 18885,
+ "▁enorm": 18886,
+ ",’": 18887,
+ "▁Christopher": 18888,
+ "jev": 18889,
+ "▁quad": 18890,
+ "▁AJAX": 18891,
+ "▁relief": 18892,
+ "▁modes": 18893,
+ "sklär": 18894,
+ "▁Vid": 18895,
+ "▁Serial": 18896,
+ "▁tokens": 18897,
+ "▁Poland": 18898,
+ "\\]": 18899,
+ "▁vide": 18900,
+ "rooms": 18901,
+ "omas": 18902,
+ "▁Bureau": 18903,
+ "cx": 18904,
+ "ностью": 18905,
+ "▁signs": 18906,
+ "шение": 18907,
+ "lossen": 18908,
+ "▁Queens": 18909,
+ "▁membre": 18910,
+ "▁mez": 18911,
+ "▁Bool": 18912,
+ "▁Naj": 18913,
+ "▁Memory": 18914,
+ "▁Khan": 18915,
+ "▁là": 18916,
+ "▁Hud": 18917,
+ "▁dismiss": 18918,
+ "ighth": 18919,
+ "▁fs": 18920,
+ "prevent": 18921,
+ "▁меда": 18922,
+ "▁Police": 18923,
+ "▁ско": 18924,
+ "finite": 18925,
+ "▁ami": 18926,
+ "▁Much": 18927,
+ "owania": 18928,
+ "ORY": 18929,
+ "iors": 18930,
+ "▁Premio": 18931,
+ "▁textbox": 18932,
+ "dm": 18933,
+ "▁afin": 18934,
+ "▁Donald": 18935,
+ "▁Priv": 18936,
+ "▁decid": 18937,
+ "▁Maurice": 18938,
+ "agan": 18939,
+ "▁Britannica": 18940,
+ "▁oft": 18941,
+ "▁consecutive": 18942,
+ "\"?>": 18943,
+ "овий": 18944,
+ "student": 18945,
+ "▁peque": 18946,
+ "▁dieses": 18947,
+ "▁retour": 18948,
+ "étr": 18949,
+ "▁сез": 18950,
+ "▁kre": 18951,
+ "▁votes": 18952,
+ "ruption": 18953,
+ "izada": 18954,
+ "▁Wiel": 18955,
+ "▁Gray": 18956,
+ "▁Leop": 18957,
+ "teilung": 18958,
+ "(['": 18959,
+ "▁whites": 18960,
+ "frica": 18961,
+ "animation": 18962,
+ "curl": 18963,
+ "lings": 18964,
+ "=\"$": 18965,
+ "loyd": 18966,
+ "textsc": 18967,
+ "ору": 18968,
+ "▁села": 18969,
+ "esian": 18970,
+ "▁Mission": 18971,
+ "▁неза": 18972,
+ "▁ultimately": 18973,
+ "бов": 18974,
+ "olen": 18975,
+ "скому": 18976,
+ "nete": 18977,
+ "▁Dit": 18978,
+ "▁costru": 18979,
+ "dependent": 18980,
+ "▁Resource": 18981,
+ "▁hosts": 18982,
+ "▁rear": 18983,
+ "Duration": 18984,
+ "ників": 18985,
+ "Ма": 18986,
+ "▁planning": 18987,
+ "▁prediction": 18988,
+ "▁Lyn": 18989,
+ "▁kir": 18990,
+ "▁Legisl": 18991,
+ "мат": 18992,
+ "▁Soccer": 18993,
+ "▁survey": 18994,
+ "▁estadounidense": 18995,
+ "orgen": 18996,
+ "jourd": 18997,
+ "▁aprile": 18998,
+ "▁ids": 18999,
+ "ське": 19000,
+ "▁employee": 19001,
+ "▁Schauspieler": 19002,
+ "ръ": 19003,
+ "▁multimedia": 19004,
+ "▁свою": 19005,
+ "▁wine": 19006,
+ "▁EU": 19007,
+ "ică": 19008,
+ "▁Rhein": 19009,
+ "▁Palmar": 19010,
+ "oteca": 19011,
+ "▁prepare": 19012,
+ "▁Tot": 19013,
+ "▁Null": 19014,
+ "▁kin": 19015,
+ "inals": 19016,
+ "▁Newton": 19017,
+ "▁tbl": 19018,
+ "▁Sold": 19019,
+ "▁verf": 19020,
+ "aturing": 19021,
+ "▁laptop": 19022,
+ "▁Совет": 19023,
+ "secret": 19024,
+ "▁Olympic": 19025,
+ "▁footballer": 19026,
+ "▁Rudolf": 19027,
+ "▁conhe": 19028,
+ "zysk": 19029,
+ "▁evaluated": 19030,
+ "»)": 19031,
+ "shop": 19032,
+ "repository": 19033,
+ "▁zach": 19034,
+ "▁losing": 19035,
+ "etter": 19036,
+ "▁Wirtschaft": 19037,
+ "так": 19038,
+ "▁unnecessary": 19039,
+ "▁Phot": 19040,
+ "anska": 19041,
+ "▁Native": 19042,
+ "CCE": 19043,
+ "▁fifty": 19044,
+ "▁erw": 19045,
+ "rh": 19046,
+ "issent": 19047,
+ "}{(": 19048,
+ "▁lanç": 19049,
+ "▁Xcode": 19050,
+ "город": 19051,
+ "cir": 19052,
+ "▁película": 19053,
+ "▁Oscar": 19054,
+ "▁shore": 19055,
+ "▁supplied": 19056,
+ "examples": 19057,
+ "Mess": 19058,
+ "VICE": 19059,
+ "▁exclude": 19060,
+ "▁hen": 19061,
+ "▁губер": 19062,
+ "▁Fragment": 19063,
+ "▁Bitte": 19064,
+ "▁Besides": 19065,
+ "▁hes": 19066,
+ "▁ihrem": 19067,
+ "▁Serge": 19068,
+ "▁artific": 19069,
+ "=\"${": 19070,
+ "лово": 19071,
+ "uteur": 19072,
+ "taire": 19073,
+ "пас": 19074,
+ "▁easiest": 19075,
+ "▁famiglia": 19076,
+ "Normal": 19077,
+ "▁dalle": 19078,
+ "▁nations": 19079,
+ "rp": 19080,
+ "thead": 19081,
+ "▁області": 19082,
+ "▁Democratic": 19083,
+ "▁челове": 19084,
+ "мож": 19085,
+ "▁гер": 19086,
+ "▁smallest": 19087,
+ "▁Publishing": 19088,
+ "▁Ts": 19089,
+ "▁laughed": 19090,
+ "lle": 19091,
+ "▁Amt": 19092,
+ "▁IIS": 19093,
+ "FORM": 19094,
+ "Mag": 19095,
+ "дон": 19096,
+ "▁storia": 19097,
+ "▁organized": 19098,
+ "ční": 19099,
+ "▁ox": 19100,
+ "lingen": 19101,
+ "▁luego": 19102,
+ "cció": 19103,
+ "▁rely": 19104,
+ "▁tussen": 19105,
+ "erten": 19106,
+ "▁honour": 19107,
+ "▁Claude": 19108,
+ "▁Korea": 19109,
+ "▁Metropol": 19110,
+ "Super": 19111,
+ "rien": 19112,
+ "érature": 19113,
+ "attro": 19114,
+ "▁біль": 19115,
+ "▁Herbert": 19116,
+ "▁auteurs": 19117,
+ "▁darauf": 19118,
+ "▁mental": 19119,
+ "▁rang": 19120,
+ "▁són": 19121,
+ "▁Soph": 19122,
+ ")\",": 19123,
+ "Descriptor": 19124,
+ "prepare": 19125,
+ "▁Landkreis": 19126,
+ "HC": 19127,
+ "cross": 19128,
+ "лиза": 19129,
+ "▁Login": 19130,
+ "onen": 19131,
+ "Feature": 19132,
+ "▁museum": 19133,
+ "vek": 19134,
+ "▁Nelson": 19135,
+ "▁rejo": 19136,
+ "▁команди": 19137,
+ "▁summar": 19138,
+ "▁следу": 19139,
+ "ämp": 19140,
+ "▁Gas": 19141,
+ "вом": 19142,
+ "VALUE": 19143,
+ "inge": 19144,
+ "period": 19145,
+ "lassen": 19146,
+ "ával": 19147,
+ "▁altogether": 19148,
+ "umph": 19149,
+ "istro": 19150,
+ "ąż": 19151,
+ "▁Keep": 19152,
+ "▁Marco": 19153,
+ "▁étant": 19154,
+ "▁Dre": 19155,
+ "geometry": 19156,
+ "▁Kas": 19157,
+ "messages": 19158,
+ "Cook": 19159,
+ "▁Side": 19160,
+ "▁коми": 19161,
+ "стри": 19162,
+ "▁excess": 19163,
+ "▁Biografia": 19164,
+ "XXXX": 19165,
+ "▁Nie": 19166,
+ "vendor": 19167,
+ "xsd": 19168,
+ "Mill": 19169,
+ "processing": 19170,
+ "▁Missouri": 19171,
+ "▁permett": 19172,
+ "▁apar": 19173,
+ "▁crowd": 19174,
+ "fert": 19175,
+ "▁Dou": 19176,
+ "rí": 19177,
+ "▁CC": 19178,
+ "▁payment": 19179,
+ "▁Hollywood": 19180,
+ "▁Virtual": 19181,
+ "▁spoken": 19182,
+ "▁tram": 19183,
+ "▁Community": 19184,
+ "▁administrative": 19185,
+ "▁воло": 19186,
+ "gior": 19187,
+ "visor": 19188,
+ "▁Украи": 19189,
+ "stage": 19190,
+ "▁Format": 19191,
+ "▁convenient": 19192,
+ "На": 19193,
+ "▁median": 19194,
+ "▁вра": 19195,
+ "▁Према": 19196,
+ "enig": 19197,
+ "▁Opera": 19198,
+ "rés": 19199,
+ "▁fmt": 19200,
+ "▁efficiency": 19201,
+ "male": 19202,
+ "Master": 19203,
+ "Series": 19204,
+ "▁syd": 19205,
+ "generic": 19206,
+ "interval": 19207,
+ "▁efect": 19208,
+ "▁inwoners": 19209,
+ "лимпи": 19210,
+ "irement": 19211,
+ "Err": 19212,
+ "öh": 19213,
+ "▁lying": 19214,
+ "▁Settings": 19215,
+ "!=": 19216,
+ "ematic": 19217,
+ "argv": 19218,
+ "▁Basic": 19219,
+ "▁consideration": 19220,
+ "▁habe": 19221,
+ "-%": 19222,
+ "▁mountains": 19223,
+ "▁peak": 19224,
+ "▁fallen": 19225,
+ "eded": 19226,
+ "logic": 19227,
+ "▁matched": 19228,
+ "▁typing": 19229,
+ ")},": 19230,
+ "▁fancy": 19231,
+ "▁elegant": 19232,
+ "ال": 19233,
+ "▁участ": 19234,
+ "▁Sarah": 19235,
+ "▁Verd": 19236,
+ "▁tego": 19237,
+ "rules": 19238,
+ "▁mounted": 19239,
+ "▁ім": 19240,
+ "еру": 19241,
+ "stoff": 19242,
+ "fahren": 19243,
+ "distance": 19244,
+ "▁License": 19245,
+ "▁LEFT": 19246,
+ "▁wp": 19247,
+ "/{": 19248,
+ "▁amazon": 19249,
+ ">&": 19250,
+ "▁első": 19251,
+ "quarters": 19252,
+ "▁shock": 19253,
+ "nick": 19254,
+ "▁Archite": 19255,
+ "▁Square": 19256,
+ "▁rates": 19257,
+ "iore": 19258,
+ "▁Nat": 19259,
+ "▁Charlot": 19260,
+ "reichen": 19261,
+ "▁variation": 19262,
+ "osis": 19263,
+ "life": 19264,
+ "slide": 19265,
+ "abi": 19266,
+ "uki": 19267,
+ "mysq": 19268,
+ "▁primitive": 19269,
+ "▁universitaire": 19270,
+ "LENG": 19271,
+ "ależ": 19272,
+ "ebook": 19273,
+ "syn": 19274,
+ "▁Gegen": 19275,
+ "▁Kü": 19276,
+ "▁але": 19277,
+ "▁Lub": 19278,
+ "concurrent": 19279,
+ "izzato": 19280,
+ "▁stub": 19281,
+ "▁ie": 19282,
+ "▁'./": 19283,
+ "cod": 19284,
+ "▁internacional": 19285,
+ "▁Glas": 19286,
+ "▁mare": 19287,
+ "▁Neb": 19288,
+ "▁GB": 19289,
+ "kwargs": 19290,
+ "▁aument": 19291,
+ "WID": 19292,
+ "▁род": 19293,
+ "punkt": 19294,
+ "▁Grad": 19295,
+ "SN": 19296,
+ "AMP": 19297,
+ "▁Born": 19298,
+ "▁Guerre": 19299,
+ "готов": 19300,
+ "▁medio": 19301,
+ "Med": 19302,
+ "supp": 19303,
+ "actual": 19304,
+ "dropdown": 19305,
+ "▁oktober": 19306,
+ "▁ř": 19307,
+ "▁circular": 19308,
+ "▁skin": 19309,
+ "▁emphas": 19310,
+ "▁голов": 19311,
+ "▁pue": 19312,
+ "▁informations": 19313,
+ "▁Wolfgang": 19314,
+ "▁useless": 19315,
+ "ит": 19316,
+ "▁Joan": 19317,
+ "▁бор": 19318,
+ "▁Glad": 19319,
+ "▁Know": 19320,
+ "ként": 19321,
+ "speed": 19322,
+ "▁Kevin": 19323,
+ "unft": 19324,
+ "▁arqu": 19325,
+ "▁Casa": 19326,
+ "(...": 19327,
+ "▁rapidly": 19328,
+ "▁proble": 19329,
+ "▁Википеди": 19330,
+ "žen": 19331,
+ "▁Neben": 19332,
+ "▁Meter": 19333,
+ "Children": 19334,
+ "cem": 19335,
+ "igos": 19336,
+ "aju": 19337,
+ "▁Retrie": 19338,
+ "▁Hell": 19339,
+ "▁gig": 19340,
+ "▁controvers": 19341,
+ "▁zoom": 19342,
+ "▁cens": 19343,
+ "▁alcuni": 19344,
+ "▁Header": 19345,
+ "Meta": 19346,
+ "Required": 19347,
+ "▁институ": 19348,
+ "▁skup": 19349,
+ "▁ingles": 19350,
+ "égl": 19351,
+ "bij": 19352,
+ "▁tér": 19353,
+ "▁compag": 19354,
+ "▁committed": 19355,
+ "▁processed": 19356,
+ "Lower": 19357,
+ "▁Foreign": 19358,
+ "▁seq": 19359,
+ "sheets": 19360,
+ "▁Fem": 19361,
+ "hoz": 19362,
+ "inks": 19363,
+ "▁kall": 19364,
+ "variant": 19365,
+ "▁libro": 19366,
+ "▁clicks": 19367,
+ "▁gobierno": 19368,
+ "iegel": 19369,
+ "мого": 19370,
+ "geme": 19371,
+ "▁tower": 19372,
+ "▁parish": 19373,
+ "▁TCP": 19374,
+ "▁ls": 19375,
+ "▁nginx": 19376,
+ "NaN": 19377,
+ "▁Dir": 19378,
+ "▁Begriffe": 19379,
+ "arie": 19380,
+ "ímp": 19381,
+ "icios": 19382,
+ "▁sharing": 19383,
+ "▁cinéma": 19384,
+ "bec": 19385,
+ "RED": 19386,
+ "▁Kra": 19387,
+ "abol": 19388,
+ "▁flux": 19389,
+ "▁expensive": 19390,
+ "▁суще": 19391,
+ "▁`_": 19392,
+ "ocz": 19393,
+ "лист": 19394,
+ "▁acquaint": 19395,
+ "▁wise": 19396,
+ "▁pouvoir": 19397,
+ "▁devant": 19398,
+ "▁momentum": 19399,
+ "immer": 19400,
+ "▁Coupe": 19401,
+ "indexOf": 19402,
+ "▁doesnt": 19403,
+ "▁зав": 19404,
+ "▁license": 19405,
+ "▁â": 19406,
+ "CSS": 19407,
+ "▁rice": 19408,
+ "Team": 19409,
+ "▁ano": 19410,
+ "lit": 19411,
+ "▁merged": 19412,
+ "▁Cell": 19413,
+ "лл": 19414,
+ "boy": 19415,
+ "asts": 19416,
+ "▁sell": 19417,
+ "▁große": 19418,
+ "▁virtuel": 19419,
+ "Cancel": 19420,
+ "▁sj": 19421,
+ "gment": 19422,
+ ".<": 19423,
+ "чай": 19424,
+ "ië": 19425,
+ "akh": 19426,
+ "izers": 19427,
+ "prit": 19428,
+ "▁Tib": 19429,
+ "▁elaborate": 19430,
+ "▁fé": 19431,
+ "▁меди": 19432,
+ "LENGTH": 19433,
+ "▁primarily": 19434,
+ "▁scores": 19435,
+ "▁carrying": 19436,
+ "▁lake": 19437,
+ "compose": 19438,
+ "▁Township": 19439,
+ "unge": 19440,
+ "▁alberga": 19441,
+ "anych": 19442,
+ "quelle": 19443,
+ "▁Ark": 19444,
+ "▁pris": 19445,
+ "▁voll": 19446,
+ "шли": 19447,
+ "Validation": 19448,
+ "▁ceux": 19449,
+ "▁populate": 19450,
+ "\"\r": 19451,
+ "▁femmes": 19452,
+ "ANG": 19453,
+ "▁Despite": 19454,
+ "вые": 19455,
+ "iske": 19456,
+ "zug": 19457,
+ "нача": 19458,
+ "▁hatten": 19459,
+ "INSERT": 19460,
+ "Employee": 19461,
+ "▁moments": 19462,
+ "▁última": 19463,
+ "▁holder": 19464,
+ "blank": 19465,
+ "Collections": 19466,
+ "athers": 19467,
+ "▁grade": 19468,
+ "▁affairs": 19469,
+ ".$$": 19470,
+ "▁delta": 19471,
+ "▁Jugend": 19472,
+ "▁español": 19473,
+ "▁OUT": 19474,
+ "▁mathematical": 19475,
+ "▁mongo": 19476,
+ "▁Фе": 19477,
+ "uling": 19478,
+ "▁revolution": 19479,
+ "▁coin": 19480,
+ "▁subclass": 19481,
+ "\"=>": 19482,
+ "äche": 19483,
+ "▁pyg": 19484,
+ "щая": 19485,
+ "illery": 19486,
+ "▁comenz": 19487,
+ "depth": 19488,
+ "▁cél": 19489,
+ "▁resize": 19490,
+ "▁Same": 19491,
+ "▁strik": 19492,
+ "▁tir": 19493,
+ "▁scarc": 19494,
+ "▁Member": 19495,
+ "subscribe": 19496,
+ "óż": 19497,
+ "útbol": 19498,
+ "except": 19499,
+ "▁driving": 19500,
+ "kie": 19501,
+ "zony": 19502,
+ "èmes": 19503,
+ "David": 19504,
+ "issant": 19505,
+ "▁ты": 19506,
+ "▁élect": 19507,
+ "▁rename": 19508,
+ "▁Running": 19509,
+ "▁interfaces": 19510,
+ "////////////////": 19511,
+ "▁Walker": 19512,
+ "▁société": 19513,
+ "▁asks": 19514,
+ "brid": 19515,
+ "▁jewe": 19516,
+ "▁seines": 19517,
+ "▁agents": 19518,
+ "▁MY": 19519,
+ "▁Lawrence": 19520,
+ "dess": 19521,
+ "iesen": 19522,
+ "▁людях": 19523,
+ "прави": 19524,
+ "▁ancest": 19525,
+ "▁welche": 19526,
+ "raum": 19527,
+ "▁orb": 19528,
+ "scal": 19529,
+ "▁Lear": 19530,
+ "▁wear": 19531,
+ "▁slave": 19532,
+ "▁renamed": 19533,
+ "čen": 19534,
+ "maste": 19535,
+ "angles": 19536,
+ "▁América": 19537,
+ "▁ti": 19538,
+ "▁demsel": 19539,
+ "▁beneath": 19540,
+ "binary": 19541,
+ "▁edición": 19542,
+ "▁kilomet": 19543,
+ "uits": 19544,
+ "▁cuatro": 19545,
+ "▁entrance": 19546,
+ "ondissement": 19547,
+ "▁bag": 19548,
+ "▁Armen": 19549,
+ "ijo": 19550,
+ "▁Lors": 19551,
+ "▁demselben": 19552,
+ "êm": 19553,
+ "▁discrete": 19554,
+ "▁prominent": 19555,
+ "▁Jay": 19556,
+ "decor": 19557,
+ "DL": 19558,
+ "▁dí": 19559,
+ "Struct": 19560,
+ "▁Production": 19561,
+ "they": 19562,
+ "arius": 19563,
+ "schnitt": 19564,
+ "▁Cou": 19565,
+ "▁lex": 19566,
+ "youtube": 19567,
+ "▁работа": 19568,
+ "station": 19569,
+ "sep": 19570,
+ "▁mirror": 19571,
+ "▁hits": 19572,
+ "▁Beck": 19573,
+ "atically": 19574,
+ "▁Laz": 19575,
+ "▁winner": 19576,
+ "DEX": 19577,
+ "▁INT": 19578,
+ "}^{-": 19579,
+ "▁wegen": 19580,
+ "mad": 19581,
+ "Angle": 19582,
+ "zing": 19583,
+ "▁Bayern": 19584,
+ "sal": 19585,
+ "äger": 19586,
+ "▁busy": 19587,
+ "▁stör": 19588,
+ "▁folk": 19589,
+ "▁prix": 19590,
+ "▁allocated": 19591,
+ "▁pt": 19592,
+ "affen": 19593,
+ "cluster": 19594,
+ "▁complement": 19595,
+ "árs": 19596,
+ "▁Amerika": 19597,
+ "рій": 19598,
+ "▁valley": 19599,
+ "▁rooms": 19600,
+ "▁moi": 19601,
+ ".\",": 19602,
+ ";;;;": 19603,
+ "▁lowest": 19604,
+ "nog": 19605,
+ "▁landet": 19606,
+ "▁programme": 19607,
+ "chio": 19608,
+ "▁Während": 19609,
+ "ández": 19610,
+ "▁долж": 19611,
+ "▁ouv": 19612,
+ "omány": 19613,
+ "▁Википедии": 19614,
+ "▁só": 19615,
+ "▁elektr": 19616,
+ "Desc": 19617,
+ "▁Beaut": 19618,
+ "нар": 19619,
+ "▁може": 19620,
+ "Pierre": 19621,
+ "esota": 19622,
+ "▁operated": 19623,
+ "▁forte": 19624,
+ "рис": 19625,
+ "▁opposition": 19626,
+ "alia": 19627,
+ "▁Syl": 19628,
+ "getName": 19629,
+ "вели": 19630,
+ "fik": 19631,
+ "▁comprom": 19632,
+ "▁TextView": 19633,
+ "Spring": 19634,
+ "metadata": 19635,
+ "engu": 19636,
+ "/,": 19637,
+ "▁carri": 19638,
+ "istol": 19639,
+ "▁diagonal": 19640,
+ "lista": 19641,
+ "izen": 19642,
+ "▁rende": 19643,
+ "gcc": 19644,
+ "beck": 19645,
+ "lius": 19646,
+ "iral": 19647,
+ "Resolver": 19648,
+ "▁percentage": 19649,
+ "▁attra": 19650,
+ "strings": 19651,
+ "wiąz": 19652,
+ "ods": 19653,
+ "волю": 19654,
+ "ęż": 19655,
+ "▁newspaper": 19656,
+ "imiter": 19657,
+ "ABC": 19658,
+ "▁Manchester": 19659,
+ "[{": 19660,
+ "Agent": 19661,
+ "▁Wor": 19662,
+ "▁Kath": 19663,
+ "▁пові": 19664,
+ "▁entonces": 19665,
+ "▁niveau": 19666,
+ "atted": 19667,
+ "learn": 19668,
+ "atiques": 19669,
+ "▁уби": 19670,
+ "▁quindi": 19671,
+ "binding": 19672,
+ "▁imported": 19673,
+ "▁Horn": 19674,
+ "emberg": 19675,
+ "complex": 19676,
+ "▁neural": 19677,
+ "information": 19678,
+ "▁recognition": 19679,
+ "ingt": 19680,
+ "▁inhabitants": 19681,
+ "vue": 19682,
+ "▁Bevölker": 19683,
+ "▁curves": 19684,
+ "▁leb": 19685,
+ "дій": 19686,
+ "▁sow": 19687,
+ "▁sentiment": 19688,
+ "PH": 19689,
+ "rache": 19690,
+ "▁-(": 19691,
+ "▁estable": 19692,
+ "▁Ferdinand": 19693,
+ "▁écrit": 19694,
+ "▁primeiro": 19695,
+ "▁tex": 19696,
+ "▁intermediate": 19697,
+ "verage": 19698,
+ "ibus": 19699,
+ "▁serves": 19700,
+ "ivas": 19701,
+ "▁bru": 19702,
+ "▁lum": 19703,
+ "attice": 19704,
+ "чный": 19705,
+ "▁Dres": 19706,
+ "▁videos": 19707,
+ "duration": 19708,
+ "▁abit": 19709,
+ "▁egg": 19710,
+ "ographical": 19711,
+ "alph": 19712,
+ "STATE": 19713,
+ "▁пара": 19714,
+ "reading": 19715,
+ "▁vehicle": 19716,
+ "▁fortune": 19717,
+ "ultats": 19718,
+ "▁Storia": 19719,
+ "midt": 19720,
+ "łącz": 19721,
+ "▁Memorial": 19722,
+ "▁vas": 19723,
+ "▁зан": 19724,
+ "▁utility": 19725,
+ "▁obsc": 19726,
+ "▁relacion": 19727,
+ "▁runat": 19728,
+ "Release": 19729,
+ "take": 19730,
+ "▁Oliver": 19731,
+ "▁Sid": 19732,
+ "ulos": 19733,
+ "▁Garc": 19734,
+ "▁розта": 19735,
+ "▁Sak": 19736,
+ "Py": 19737,
+ "führt": 19738,
+ "▁trabal": 19739,
+ "*{": 19740,
+ "▁zes": 19741,
+ "▁szere": 19742,
+ "▁varios": 19743,
+ "▁otra": 19744,
+ "▁eval": 19745,
+ "▁situé": 19746,
+ "▁wounded": 19747,
+ "▁Vincent": 19748,
+ "▁викори": 19749,
+ "▁encode": 19750,
+ "Modal": 19751,
+ "▁forb": 19752,
+ "▁dynamics": 19753,
+ "▁depos": 19754,
+ "arde": 19755,
+ "▁streets": 19756,
+ "▁Komm": 19757,
+ "=$(": 19758,
+ "▁повер": 19759,
+ "▁dois": 19760,
+ "▁vitt": 19761,
+ "▁automatisch": 19762,
+ "▁reload": 19763,
+ "▁Verwalt": 19764,
+ "bero": 19765,
+ "▁hub": 19766,
+ "▁mos": 19767,
+ "▁tutto": 19768,
+ "▁Frederick": 19769,
+ "łow": 19770,
+ "antages": 19771,
+ "aque": 19772,
+ "paper": 19773,
+ "▁einige": 19774,
+ "`),": 19775,
+ "dj": 19776,
+ "▁Ple": 19777,
+ "▁%,": 19778,
+ "▁Bitmap": 19779,
+ "▁friendly": 19780,
+ "▁truly": 19781,
+ "▁stroke": 19782,
+ "roph": 19783,
+ "▁engl": 19784,
+ "▁coff": 19785,
+ "▁dust": 19786,
+ "▁Jahres": 19787,
+ "ppi": 19788,
+ "▁wys": 19789,
+ "factor": 19790,
+ "schluss": 19791,
+ "▁деревня": 19792,
+ "▁Past": 19793,
+ "▁дома": 19794,
+ "COM": 19795,
+ "▁pueden": 19796,
+ "▁gift": 19797,
+ "▁Gla": 19798,
+ "▁triggered": 19799,
+ "ély": 19800,
+ "ülés": 19801,
+ "▁Oliv": 19802,
+ "▁verso": 19803,
+ "▁lle": 19804,
+ "▁Gli": 19805,
+ "▁Ltd": 19806,
+ "oa": 19807,
+ "▁territorio": 19808,
+ "ordre": 19809,
+ "▁deck": 19810,
+ "dra": 19811,
+ "aszt": 19812,
+ "▁concerning": 19813,
+ "▁Additionally": 19814,
+ "▁které": 19815,
+ "▁grund": 19816,
+ "▁Gest": 19817,
+ "▁misunder": 19818,
+ "pret": 19819,
+ "────": 19820,
+ "▁reputation": 19821,
+ "zia": 19822,
+ "▁успе": 19823,
+ "▁escaped": 19824,
+ "▁Prag": 19825,
+ "perform": 19826,
+ "▁austral": 19827,
+ "▁Vater": 19828,
+ "час": 19829,
+ "▁races": 19830,
+ "▁Byte": 19831,
+ "Mask": 19832,
+ "▁Territ": 19833,
+ "стю": 19834,
+ "▁Voci": 19835,
+ "▁Fichier": 19836,
+ "▁Населення": 19837,
+ "▁Unterscheidung": 19838,
+ "teenth": 19839,
+ "▁pilot": 19840,
+ "▁ji": 19841,
+ "▁двух": 19842,
+ "▁orientation": 19843,
+ "indre": 19844,
+ "▁Dort": 19845,
+ "ças": 19846,
+ "пли": 19847,
+ "▁reaction": 19848,
+ "▁consisting": 19849,
+ "▁ferro": 19850,
+ "тисти": 19851,
+ "yard": 19852,
+ "▁сві": 19853,
+ "▁interpretation": 19854,
+ "ią": 19855,
+ "rah": 19856,
+ "▁fand": 19857,
+ "Public": 19858,
+ "▁universe": 19859,
+ "▁retir": 19860,
+ "▁conscious": 19861,
+ "arqu": 19862,
+ "▁waste": 19863,
+ "▁Bib": 19864,
+ "yclerView": 19865,
+ "▁listening": 19866,
+ "gleich": 19867,
+ "niejs": 19868,
+ "▁correlation": 19869,
+ "▁receiver": 19870,
+ "▁уда": 19871,
+ "▁courage": 19872,
+ "uchs": 19873,
+ "fass": 19874,
+ "▁chunk": 19875,
+ "▁Anfang": 19876,
+ "▁großen": 19877,
+ "continue": 19878,
+ "▁Warszawa": 19879,
+ "hé": 19880,
+ "iy": 19881,
+ "ivement": 19882,
+ "▁α": 19883,
+ "▁exposed": 19884,
+ "▁zahl": 19885,
+ "▁sacr": 19886,
+ "▁Looks": 19887,
+ "▁eager": 19888,
+ "enten": 19889,
+ "Cursor": 19890,
+ "/_": 19891,
+ "ixa": 19892,
+ "рела": 19893,
+ "знача": 19894,
+ "▁фамилией": 19895,
+ "▁argent": 19896,
+ "▁Anders": 19897,
+ "œuvre": 19898,
+ "▁Isa": 19899,
+ "мента": 19900,
+ "▁advers": 19901,
+ "riction": 19902,
+ "GP": 19903,
+ "▁після": 19904,
+ "▁preserve": 19905,
+ "▁Garden": 19906,
+ "Rate": 19907,
+ "après": 19908,
+ "▁readable": 19909,
+ "indu": 19910,
+ "▁skill": 19911,
+ "▁helping": 19912,
+ "ographique": 19913,
+ "cling": 19914,
+ "ologist": 19915,
+ "▁Filter": 19916,
+ "▁finger": 19917,
+ "▁Vall": 19918,
+ "▁Polish": 19919,
+ "lg": 19920,
+ "▁Familien": 19921,
+ "▁waters": 19922,
+ "▁pseud": 19923,
+ "aza": 19924,
+ "_)": 19925,
+ "ARY": 19926,
+ "▁среди": 19927,
+ "▁Must": 19928,
+ "▁Bod": 19929,
+ "anon": 19930,
+ "▁lado": 19931,
+ "▁tight": 19932,
+ "imen": 19933,
+ "appen": 19934,
+ "frames": 19935,
+ "ingers": 19936,
+ "▁COVID": 19937,
+ "▁зі": 19938,
+ "▁све": 19939,
+ "▁ць": 19940,
+ "▁Left": 19941,
+ "]];": 19942,
+ "чь": 19943,
+ "фика": 19944,
+ "▁сло": 19945,
+ "▁пі": 19946,
+ "▁existe": 19947,
+ "▁Atlantic": 19948,
+ "▁maintained": 19949,
+ "▁irre": 19950,
+ "▁année": 19951,
+ "▁commented": 19952,
+ "веро": 19953,
+ "berta": 19954,
+ "▁Lad": 19955,
+ "▁Upon": 19956,
+ "▁pause": 19957,
+ "mill": 19958,
+ "opter": 19959,
+ "UK": 19960,
+ "рес": 19961,
+ "нциклопеди": 19962,
+ "▁alongside": 19963,
+ "▁robot": 19964,
+ "▁fert": 19965,
+ "▁moy": 19966,
+ "▁ade": 19967,
+ "Mapper": 19968,
+ ")->": 19969,
+ "igua": 19970,
+ "étique": 19971,
+ "тка": 19972,
+ "alias": 19973,
+ "▁ори": 19974,
+ "▁Magn": 19975,
+ "▁gehörte": 19976,
+ "imb": 19977,
+ ")}{\\": 19978,
+ "▁Wikipédia": 19979,
+ "▁urs": 19980,
+ "▁ende": 19981,
+ "leb": 19982,
+ "▁GC": 19983,
+ "Hol": 19984,
+ "ancing": 19985,
+ "Union": 19986,
+ "▁tenía": 19987,
+ "TT": 19988,
+ "▁estate": 19989,
+ "há": 19990,
+ "▁полі": 19991,
+ "ultan": 19992,
+ "▁Hockey": 19993,
+ "ulse": 19994,
+ "▁choices": 19995,
+ "scher": 19996,
+ "▁[],": 19997,
+ "▁potentially": 19998,
+ "▁Übers": 19999,
+ "▁admit": 20000,
+ "Comment": 20001,
+ "стя": 20002,
+ "▁Vien": 20003,
+ "▁ці": 20004,
+ "▁permut": 20005,
+ "cgi": 20006,
+ "▁crít": 20007,
+ "Console": 20008,
+ "ctic": 20009,
+ "▁okres": 20010,
+ "awk": 20011,
+ "football": 20012,
+ "ouest": 20013,
+ "CTYPE": 20014,
+ "ologique": 20015,
+ "▁constit": 20016,
+ "▁interests": 20017,
+ "▁Progress": 20018,
+ "▁Menu": 20019,
+ "▁také": 20020,
+ "▁Asian": 20021,
+ "▁защи": 20022,
+ "▁younger": 20023,
+ "▁wished": 20024,
+ "▁Sort": 20025,
+ "▁audience": 20026,
+ "amba": 20027,
+ "▁gehört": 20028,
+ "▁Kansas": 20029,
+ "yaume": 20030,
+ "▁Professional": 20031,
+ "âce": 20032,
+ "▁fatto": 20033,
+ "tod": 20034,
+ "▁datasets": 20035,
+ "▁fare": 20036,
+ "▁waves": 20037,
+ "~/": 20038,
+ "▁measurement": 20039,
+ "▁wol": 20040,
+ "indust": 20041,
+ "▁struggling": 20042,
+ "▁pulled": 20043,
+ "▁caratter": 20044,
+ "▁Externe": 20045,
+ "▁действи": 20046,
+ "cnt": 20047,
+ "liches": 20048,
+ "▁Possible": 20049,
+ "▁faced": 20050,
+ "▁hypothesis": 20051,
+ "▁kilom": 20052,
+ "▁när": 20053,
+ "boolean": 20054,
+ "PY": 20055,
+ "ampa": 20056,
+ "▁kiss": 20057,
+ "▁astero": 20058,
+ "▁negli": 20059,
+ "aments": 20060,
+ "▁Stu": 20061,
+ "ató": 20062,
+ "▁Constitution": 20063,
+ "▁interpol": 20064,
+ "▁Unable": 20065,
+ "▁pis": 20066,
+ "▁parc": 20067,
+ "\"])": 20068,
+ "pler": 20069,
+ "▁autory": 20070,
+ "▁algunos": 20071,
+ "ywna": 20072,
+ "}))": 20073,
+ "▁falls": 20074,
+ "▁équip": 20075,
+ "▁emit": 20076,
+ "▁profil": 20077,
+ "gets": 20078,
+ "фо": 20079,
+ "▁Military": 20080,
+ "▁nombreux": 20081,
+ "oct": 20082,
+ "Replace": 20083,
+ "▁seasons": 20084,
+ "▁château": 20085,
+ "▁typeof": 20086,
+ "polit": 20087,
+ "▁rand": 20088,
+ "▁quar": 20089,
+ "▁erstmals": 20090,
+ "сини": 20091,
+ "▁payload": 20092,
+ "По": 20093,
+ "кін": 20094,
+ "repo": 20095,
+ "▁Pav": 20096,
+ "Score": 20097,
+ "erves": 20098,
+ "▁sollte": 20099,
+ "▁між": 20100,
+ "ébec": 20101,
+ "▁clip": 20102,
+ "▁Nice": 20103,
+ "▁neben": 20104,
+ "▁assass": 20105,
+ "itories": 20106,
+ "▁unity": 20107,
+ "▁ен": 20108,
+ "▁Institut": 20109,
+ "▁internationale": 20110,
+ "▁наук": 20111,
+ "▁comand": 20112,
+ "▁kleine": 20113,
+ "▁adjacent": 20114,
+ "▁delivered": 20115,
+ "▁ше": 20116,
+ "зем": 20117,
+ "▁cot": 20118,
+ "visual": 20119,
+ "вает": 20120,
+ "▁Census": 20121,
+ "\\_": 20122,
+ "▁territory": 20123,
+ "чил": 20124,
+ "чные": 20125,
+ "flutter": 20126,
+ "DidLoad": 20127,
+ "Documents": 20128,
+ "▁dob": 20129,
+ "Bre": 20130,
+ "animate": 20131,
+ "▁biz": 20132,
+ "▁bata": 20133,
+ "▁SU": 20134,
+ "eso": 20135,
+ "▁priority": 20136,
+ "ván": 20137,
+ "iras": 20138,
+ "▁charged": 20139,
+ "▁Micro": 20140,
+ "atoire": 20141,
+ "чер": 20142,
+ "abad": 20143,
+ "uru": 20144,
+ "▁vš": 20145,
+ "dire": 20146,
+ "▁Twitter": 20147,
+ "▁мето": 20148,
+ ")..": 20149,
+ "▁Цент": 20150,
+ "▁entwick": 20151,
+ "▁Mind": 20152,
+ "▁функ": 20153,
+ "Future": 20154,
+ "lst": 20155,
+ "łoż": 20156,
+ "fli": 20157,
+ "tensor": 20158,
+ "▁topology": 20159,
+ "▁arte": 20160,
+ "ERT": 20161,
+ "▁variance": 20162,
+ "Images": 20163,
+ "▁(@": 20164,
+ "ArrayList": 20165,
+ "OC": 20166,
+ "▁Демо": 20167,
+ "aucoup": 20168,
+ "▁denotes": 20169,
+ "imon": 20170,
+ "њи": 20171,
+ "▁Przyp": 20172,
+ "▁Zag": 20173,
+ "▁дире": 20174,
+ "▁Similarly": 20175,
+ "бро": 20176,
+ "▁militaire": 20177,
+ "▁тому": 20178,
+ "▁Johnny": 20179,
+ "▁Мексику": 20180,
+ "ћа": 20181,
+ "Supp": 20182,
+ "▁junior": 20183,
+ "oltre": 20184,
+ "▁Моск": 20185,
+ "▁admitted": 20186,
+ "▁religios": 20187,
+ "зяй": 20188,
+ "его": 20189,
+ "▁tears": 20190,
+ "ingo": 20191,
+ "odu": 20192,
+ "iveness": 20193,
+ "▁logo": 20194,
+ "▁último": 20195,
+ "▁aliment": 20196,
+ "▁UITableView": 20197,
+ ")!": 20198,
+ "▁nj": 20199,
+ "lette": 20200,
+ "▁resident": 20201,
+ "▁termine": 20202,
+ "▁уже": 20203,
+ "▁Сте": 20204,
+ "office": 20205,
+ "▁carte": 20206,
+ "▁livre": 20207,
+ "▁Москов": 20208,
+ "▁elections": 20209,
+ "зиден": 20210,
+ "Trigger": 20211,
+ "▁Benjamin": 20212,
+ "addClass": 20213,
+ "ског": 20214,
+ "▁Observable": 20215,
+ "Cla": 20216,
+ "gemein": 20217,
+ "▁consent": 20218,
+ "ври": 20219,
+ "▁unfold": 20220,
+ "▁governor": 20221,
+ "нал": 20222,
+ "▁toda": 20223,
+ "Remote": 20224,
+ "arias": 20225,
+ "▁instal": 20226,
+ "fixed": 20227,
+ "▁decay": 20228,
+ "▁дерев": 20229,
+ "xyz": 20230,
+ "▁DATE": 20231,
+ "imar": 20232,
+ "ntil": 20233,
+ "▁startup": 20234,
+ "alion": 20235,
+ "▁kolej": 20236,
+ "cios": 20237,
+ "▁ranges": 20238,
+ "▁stupid": 20239,
+ "▁implementations": 20240,
+ "▁rm": 20241,
+ "ének": 20242,
+ "▁gcc": 20243,
+ "▁scène": 20244,
+ "Navigation": 20245,
+ "▁ ": 20246,
+ "▁кан": 20247,
+ "▁towns": 20248,
+ "Username": 20249,
+ "▁фе": 20250,
+ "▁leaders": 20251,
+ "oit": 20252,
+ "wär": 20253,
+ "▁dummy": 20254,
+ "▁assistant": 20255,
+ "{$\\": 20256,
+ "бір": 20257,
+ "▁roy": 20258,
+ "▁Layout": 20259,
+ "▁Jung": 20260,
+ "Lines": 20261,
+ "▁Holland": 20262,
+ "пор": 20263,
+ "▁Гри": 20264,
+ "▁Bened": 20265,
+ "▁Под": 20266,
+ "xls": 20267,
+ "▁Gol": 20268,
+ "▁Aleks": 20269,
+ "▁ejemplo": 20270,
+ "▁sezon": 20271,
+ "arding": 20272,
+ "footnote": 20273,
+ "▁Congrès": 20274,
+ "refer": 20275,
+ "ската": 20276,
+ "Iterator": 20277,
+ "▁ourselves": 20278,
+ "▁Mic": 20279,
+ "▁código": 20280,
+ "▁площа": 20281,
+ "▁\\$": 20282,
+ "▁Charlie": 20283,
+ "Nodes": 20284,
+ "▁puzz": 20285,
+ "▁Identifier": 20286,
+ "▁flutter": 20287,
+ "▁prü": 20288,
+ "▁ort": 20289,
+ "▁Cort": 20290,
+ "asticsearch": 20291,
+ "▁Свя": 20292,
+ "▁Bull": 20293,
+ "udem": 20294,
+ "▁apparent": 20295,
+ ":--": 20296,
+ "▁Хар": 20297,
+ "▁Lap": 20298,
+ "▁comport": 20299,
+ "matically": 20300,
+ "▁curios": 20301,
+ "▁может": 20302,
+ "▁Bh": 20303,
+ "apping": 20304,
+ "▁basketball": 20305,
+ "zetek": 20306,
+ "▁runt": 20307,
+ "▁Milan": 20308,
+ "fection": 20309,
+ "ría": 20310,
+ "▁Kin": 20311,
+ "▁slower": 20312,
+ "both": 20313,
+ "▁Instituto": 20314,
+ "▁Historical": 20315,
+ "▁również": 20316,
+ "matches": 20317,
+ "yci": 20318,
+ "▁espèce": 20319,
+ "▁Schweizer": 20320,
+ "NT": 20321,
+ "SF": 20322,
+ "acia": 20323,
+ "forge": 20324,
+ "Points": 20325,
+ "numbers": 20326,
+ "▁falling": 20327,
+ "▁inheritance": 20328,
+ "▁Erst": 20329,
+ "▁customers": 20330,
+ "▁actu": 20331,
+ "▁migration": 20332,
+ "\\'": 20333,
+ "Plan": 20334,
+ "Mr": 20335,
+ "othy": 20336,
+ "▁upgrad": 20337,
+ "бира": 20338,
+ "▁Offic": 20339,
+ "▁Wait": 20340,
+ "▁toler": 20341,
+ "ardon": 20342,
+ "▁slide": 20343,
+ ")_": 20344,
+ "▁став": 20345,
+ "▁nuclear": 20346,
+ "▁Bil": 20347,
+ "owner": 20348,
+ "▁Harris": 20349,
+ "Information": 20350,
+ "▁pó": 20351,
+ "▁включа": 20352,
+ "▁nuovo": 20353,
+ "▁Cav": 20354,
+ "▁Descri": 20355,
+ "▁ак": 20356,
+ "ództ": 20357,
+ "▁reactjs": 20358,
+ "▁Adams": 20359,
+ "▁Alternatively": 20360,
+ "струк": 20361,
+ ")`,": 20362,
+ "substring": 20363,
+ "▁massive": 20364,
+ "▁heavily": 20365,
+ "▁сезо": 20366,
+ "▁Ana": 20367,
+ "▁vale": 20368,
+ "Pad": 20369,
+ "▁Either": 20370,
+ "▁rs": 20371,
+ "anche": 20372,
+ "▁uploaded": 20373,
+ "▁(/": 20374,
+ "▁спор": 20375,
+ "▁reduction": 20376,
+ "▁Tokyo": 20377,
+ "gren": 20378,
+ "▁migli": 20379,
+ "▁iterator": 20380,
+ "stav": 20381,
+ "▁supporting": 20382,
+ "▁österreich": 20383,
+ "▁NSLog": 20384,
+ "istiques": 20385,
+ "rimin": 20386,
+ "MODE": 20387,
+ "}}}\\": 20388,
+ "▁explos": 20389,
+ "оте": 20390,
+ "▁(„": 20391,
+ "Sal": 20392,
+ "▁simplest": 20393,
+ "▁già": 20394,
+ "▁тан": 20395,
+ "▁cyl": 20396,
+ "bir": 20397,
+ "▁measurements": 20398,
+ "Created": 20399,
+ "erek": 20400,
+ "lookup": 20401,
+ "wirtschaft": 20402,
+ "▁Воло": 20403,
+ "timer": 20404,
+ "derr": 20405,
+ "▁стала": 20406,
+ "▁scenes": 20407,
+ "▁persu": 20408,
+ "liest": 20409,
+ "▁schedule": 20410,
+ "tal": 20411,
+ "лено": 20412,
+ "▁painting": 20413,
+ "▁improvement": 20414,
+ "software": 20415,
+ "▁governo": 20416,
+ "▁Hir": 20417,
+ "Execution": 20418,
+ "▁Okay": 20419,
+ "Prop": 20420,
+ "loster": 20421,
+ "ніципалі": 20422,
+ "▁peuvent": 20423,
+ "olu": 20424,
+ "▁Фа": 20425,
+ "rollo": 20426,
+ "▁коло": 20427,
+ "▁carrière": 20428,
+ "▁toggle": 20429,
+ "▁($\\": 20430,
+ "▁aggregate": 20431,
+ "▁Бі": 20432,
+ "textarea": 20433,
+ "Ok": 20434,
+ "itto": 20435,
+ "▁stim": 20436,
+ "▁recursion": 20437,
+ "▁Federation": 20438,
+ ")_{": 20439,
+ "ategor": 20440,
+ "▁distribu": 20441,
+ "Cloud": 20442,
+ "▁madre": 20443,
+ "▁iv": 20444,
+ "▁Lieutenant": 20445,
+ "▁substant": 20446,
+ "▁leaf": 20447,
+ "▁Kontrola": 20448,
+ "VA": 20449,
+ "▁tomb": 20450,
+ "эн": 20451,
+ "atoes": 20452,
+ "▁godine": 20453,
+ "▁#>": 20454,
+ "Cert": 20455,
+ "▁empresa": 20456,
+ "Props": 20457,
+ "▁planned": 20458,
+ "▁randomly": 20459,
+ "jähr": 20460,
+ "elem": 20461,
+ "▁Operation": 20462,
+ "*`": 20463,
+ "protocol": 20464,
+ "()));": 20465,
+ "wel": 20466,
+ "▁praw": 20467,
+ "▁сим": 20468,
+ "▁wob": 20469,
+ "▁hace": 20470,
+ "▁nearest": 20471,
+ "disable": 20472,
+ "▁Commun": 20473,
+ "▁revel": 20474,
+ "Free": 20475,
+ "▁brackets": 20476,
+ "IOException": 20477,
+ "▁alto": 20478,
+ "▁marry": 20479,
+ "▁auc": 20480,
+ "),\\": 20481,
+ "▁typo": 20482,
+ "edad": 20483,
+ "ará": 20484,
+ "icator": 20485,
+ "tatywna": 20486,
+ "▁buff": 20487,
+ "orders": 20488,
+ "▁asynchronous": 20489,
+ "▁econ": 20490,
+ "▁feu": 20491,
+ "▁Iron": 20492,
+ "▁rising": 20493,
+ "Radius": 20494,
+ "clk": 20495,
+ "▁zweiten": 20496,
+ "`'": 20497,
+ "▁uniqu": 20498,
+ "▁FM": 20499,
+ "▁Bran": 20500,
+ "▁flu": 20501,
+ "▁sensitive": 20502,
+ "urre": 20503,
+ "▁Iter": 20504,
+ "▁Sein": 20505,
+ "▁diferentes": 20506,
+ "▁него": 20507,
+ "chia": 20508,
+ "▁Anleitung": 20509,
+ "aturday": 20510,
+ "▁shorter": 20511,
+ "▁translated": 20512,
+ "▁Rés": 20513,
+ "▁rode": 20514,
+ "drag": 20515,
+ "▁lange": 20516,
+ "Bi": 20517,
+ "üb": 20518,
+ "leur": 20519,
+ "▁ordering": 20520,
+ "alous": 20521,
+ "▁Кор": 20522,
+ "archar": 20523,
+ "destroy": 20524,
+ "ervation": 20525,
+ "]],": 20526,
+ "AccessorImpl": 20527,
+ "▁autorytatywna": 20528,
+ "Sequence": 20529,
+ "▁proyect": 20530,
+ "▁bran": 20531,
+ "▁(+": 20532,
+ "▁Kab": 20533,
+ "▁zem": 20534,
+ "▁Calcul": 20535,
+ "▁seul": 20536,
+ "▁Niger": 20537,
+ "▁chiam": 20538,
+ "throw": 20539,
+ "▁Planet": 20540,
+ "bildung": 20541,
+ "▁zones": 20542,
+ "transition": 20543,
+ "лений": 20544,
+ "▁mapped": 20545,
+ "onaut": 20546,
+ "Pair": 20547,
+ "ilian": 20548,
+ "▁Morgan": 20549,
+ "▁unto": 20550,
+ "jou": 20551,
+ "▁hid": 20552,
+ "▁Meta": 20553,
+ "▁elles": 20554,
+ "Lou": 20555,
+ "rama": 20556,
+ "geordnet": 20557,
+ "▁scarcely": 20558,
+ "▁mint": 20559,
+ "Focus": 20560,
+ "▁Alter": 20561,
+ "▁dio": 20562,
+ "▁ampl": 20563,
+ "ièrement": 20564,
+ "▁исследова": 20565,
+ "LED": 20566,
+ "algorithm": 20567,
+ "▁сайті": 20568,
+ "▁\"\")": 20569,
+ "History": 20570,
+ "pk": 20571,
+ "▁Whit": 20572,
+ "▁систем": 20573,
+ "▁Kirchen": 20574,
+ "rà": 20575,
+ "APP": 20576,
+ "▁<%": 20577,
+ "antine": 20578,
+ "▁Disk": 20579,
+ "conv": 20580,
+ "welt": 20581,
+ "▁Fut": 20582,
+ "▁Nom": 20583,
+ "ordo": 20584,
+ "ellij": 20585,
+ "▁receives": 20586,
+ "cow": 20587,
+ "ytu": 20588,
+ "▁obras": 20589,
+ "▁purchase": 20590,
+ "▁earned": 20591,
+ "▁accessed": 20592,
+ "axi": 20593,
+ "▁Mans": 20594,
+ "ivan": 20595,
+ "▁tuvo": 20596,
+ "▁Trace": 20597,
+ "rimonio": 20598,
+ "▁desenvol": 20599,
+ "érique": 20600,
+ "▁resulted": 20601,
+ "▁computing": 20602,
+ "▁inspired": 20603,
+ "▁Prize": 20604,
+ "*\"": 20605,
+ "Comput": 20606,
+ "▁extensive": 20607,
+ "èg": 20608,
+ "▁Portály": 20609,
+ "▁castle": 20610,
+ "▁*.": 20611,
+ "▁photos": 20612,
+ "▁voet": 20613,
+ "ONG": 20614,
+ "▁Alle": 20615,
+ "▁threaten": 20616,
+ "stüt": 20617,
+ "▁albums": 20618,
+ "▁dense": 20619,
+ "flat": 20620,
+ "continu": 20621,
+ "Subject": 20622,
+ "▁readonly": 20623,
+ "Opt": 20624,
+ "писко": 20625,
+ "▁Aber": 20626,
+ "▁Position": 20627,
+ "▁Today": 20628,
+ "▁mini": 20629,
+ "▁Bef": 20630,
+ "listen": 20631,
+ "ственного": 20632,
+ "SUB": 20633,
+ "ossa": 20634,
+ "▁Pope": 20635,
+ "▁Jimmy": 20636,
+ "▁Дру": 20637,
+ "ungsseite": 20638,
+ "▁tren": 20639,
+ "optim": 20640,
+ "itsch": 20641,
+ "▁samt": 20642,
+ "▁испол": 20643,
+ "&=": 20644,
+ "▁Przypisy": 20645,
+ "▁продол": 20646,
+ "Cr": 20647,
+ "ermann": 20648,
+ "▁матери": 20649,
+ "▁Hugo": 20650,
+ "▁Deze": 20651,
+ "TRUE": 20652,
+ "▁defeat": 20653,
+ "▁watched": 20654,
+ "▁Gent": 20655,
+ "AUT": 20656,
+ "orous": 20657,
+ "▁опреде": 20658,
+ "orientation": 20659,
+ "▁distinguished": 20660,
+ "▁mesmo": 20661,
+ "▁sli": 20662,
+ "мена": 20663,
+ "mittel": 20664,
+ "gericht": 20665,
+ "eton": 20666,
+ "->{": 20667,
+ "▁wont": 20668,
+ "▁weg": 20669,
+ "▁classific": 20670,
+ "ilus": 20671,
+ "▁MD": 20672,
+ "tasks": 20673,
+ "▁chim": 20674,
+ "await": 20675,
+ "▁gang": 20676,
+ "▁wię": 20677,
+ "through": 20678,
+ "▁Russell": 20679,
+ "▁guessing": 20680,
+ "▁акт": 20681,
+ "блі": 20682,
+ "categories": 20683,
+ "сут": 20684,
+ "▁Fen": 20685,
+ "▁муж": 20686,
+ "▁newer": 20687,
+ "▁Async": 20688,
+ "▁terme": 20689,
+ ">/": 20690,
+ "пара": 20691,
+ "▁Trust": 20692,
+ "▁Opt": 20693,
+ "▁dah": 20694,
+ "▁wonderful": 20695,
+ "adratkil": 20696,
+ "▁Гра": 20697,
+ "mapping": 20698,
+ "▁discovery": 20699,
+ "▁BE": 20700,
+ "Enable": 20701,
+ "▁Friend": 20702,
+ "сня": 20703,
+ "▁controlled": 20704,
+ "чної": 20705,
+ "▁contributions": 20706,
+ "jší": 20707,
+ "▁Lev": 20708,
+ "▁francés": 20709,
+ "▁mic": 20710,
+ "zik": 20711,
+ "▁alem": 20712,
+ "cancel": 20713,
+ "!'": 20714,
+ "▁grat": 20715,
+ "▁Begriffsklär": 20716,
+ "Camera": 20717,
+ "ificación": 20718,
+ "ród": 20719,
+ "▁Arnold": 20720,
+ "▁bezeichneter": 20721,
+ "▁fought": 20722,
+ "▁deput": 20723,
+ "▁Drop": 20724,
+ "tax": 20725,
+ "dg": 20726,
+ "▁Hop": 20727,
+ "GN": 20728,
+ "▁Kirch": 20729,
+ "▁Бар": 20730,
+ "Invoke": 20731,
+ "▁erhalten": 20732,
+ "▁veel": 20733,
+ "▁wordpress": 20734,
+ "▁INNER": 20735,
+ "transaction": 20736,
+ "▁déjà": 20737,
+ "Fact": 20738,
+ "▁надмор": 20739,
+ "▁angularjs": 20740,
+ "▁át": 20741,
+ "▁alap": 20742,
+ "▁Price": 20743,
+ "▁effet": 20744,
+ "▁sphere": 20745,
+ "ClassLoader": 20746,
+ "▁rugby": 20747,
+ "▁kingdom": 20748,
+ "▁Mut": 20749,
+ "▁кино": 20750,
+ "▁reward": 20751,
+ "cit": 20752,
+ "▁presente": 20753,
+ "Sto": 20754,
+ "Character": 20755,
+ "logs": 20756,
+ "▁centrale": 20757,
+ "▁mouv": 20758,
+ "▁okay": 20759,
+ "▁aplic": 20760,
+ "More": 20761,
+ "ények": 20762,
+ "▁Köln": 20763,
+ "nett": 20764,
+ "▁истории": 20765,
+ "▁describing": 20766,
+ "▁soldier": 20767,
+ "▁Need": 20768,
+ "Light": 20769,
+ "▁\"\\<": 20770,
+ "▁hav": 20771,
+ "ermo": 20772,
+ "▁inferior": 20773,
+ "lea": 20774,
+ "▁gg": 20775,
+ "▁конце": 20776,
+ "fragment": 20777,
+ "sb": 20778,
+ "Country": 20779,
+ "▁vě": 20780,
+ "▁Beng": 20781,
+ "▁Это": 20782,
+ "▁водо": 20783,
+ "мар": 20784,
+ "STRING": 20785,
+ "▁új": 20786,
+ "multiple": 20787,
+ "statement": 20788,
+ "▁involves": 20789,
+ "▁tecn": 20790,
+ "Student": 20791,
+ "gré": 20792,
+ "▁lean": 20793,
+ "▁bringing": 20794,
+ "▁Medical": 20795,
+ "▁програм": 20796,
+ "▁Vog": 20797,
+ "▁жов": 20798,
+ "▁Spirit": 20799,
+ "nth": 20800,
+ "▁standards": 20801,
+ "▁Profile": 20802,
+ "▁ez": 20803,
+ "▁территории": 20804,
+ "▁stem": 20805,
+ "uil": 20806,
+ "▁Og": 20807,
+ "Btn": 20808,
+ "nal": 20809,
+ "▁nearby": 20810,
+ "▁producing": 20811,
+ "criv": 20812,
+ "▁assumptions": 20813,
+ "▁Spark": 20814,
+ "▁Lot": 20815,
+ "itudes": 20816,
+ "afka": 20817,
+ "five": 20818,
+ "atio": 20819,
+ "▁distinguish": 20820,
+ "rock": 20821,
+ "église": 20822,
+ "▁rappres": 20823,
+ ">\\<": 20824,
+ "лій": 20825,
+ "▁мини": 20826,
+ "▁intitulé": 20827,
+ "}}(\\": 20828,
+ "▁Rout": 20829,
+ "▁Border": 20830,
+ "▁overrid": 20831,
+ "HOST": 20832,
+ "ritten": 20833,
+ "say": 20834,
+ "▁Чи": 20835,
+ "ichtung": 20836,
+ "▁straightforward": 20837,
+ "obb": 20838,
+ "▁Terra": 20839,
+ "▁[:": 20840,
+ "Ben": 20841,
+ "▁composite": 20842,
+ ")+\\": 20843,
+ "▁crown": 20844,
+ "direction": 20845,
+ "▁несколько": 20846,
+ "▁avail": 20847,
+ "▁purchased": 20848,
+ "hook": 20849,
+ "eties": 20850,
+ "▁fase": 20851,
+ "▁Rum": 20852,
+ "▁genom": 20853,
+ "▁dét": 20854,
+ "ową": 20855,
+ "mpeg": 20856,
+ "▁Ін": 20857,
+ "desktop": 20858,
+ "▁injection": 20859,
+ "agle": 20860,
+ "▁Edd": 20861,
+ "_{(": 20862,
+ "▁Hem": 20863,
+ "utos": 20864,
+ "proj": 20865,
+ "▁superficie": 20866,
+ "Plot": 20867,
+ "▁Docker": 20868,
+ "ätz": 20869,
+ "kreich": 20870,
+ "▁unclear": 20871,
+ "▁Unity": 20872,
+ "▁streams": 20873,
+ "вид": 20874,
+ "▁simplified": 20875,
+ "Fill": 20876,
+ "▁sant": 20877,
+ "▁Kommun": 20878,
+ "▁duc": 20879,
+ "▁две": 20880,
+ "▁obs": 20881,
+ "žit": 20882,
+ "▁Janeiro": 20883,
+ "бя": 20884,
+ "▁presso": 20885,
+ "▁Ministry": 20886,
+ "▁burst": 20887,
+ "▁reaching": 20888,
+ "liter": 20889,
+ "▁responses": 20890,
+ "▁Eug": 20891,
+ "▁sod": 20892,
+ "▁Cord": 20893,
+ "▁Perm": 20894,
+ "parts": 20895,
+ "цима": 20896,
+ "variables": 20897,
+ "▁forgotten": 20898,
+ "Fern": 20899,
+ "ostęp": 20900,
+ "vl": 20901,
+ "▁См": 20902,
+ "kim": 20903,
+ "ając": 20904,
+ "наль": 20905,
+ "гле": 20906,
+ "helper": 20907,
+ "dup": 20908,
+ "euw": 20909,
+ "fra": 20910,
+ "ellite": 20911,
+ "anya": 20912,
+ "▁reign": 20913,
+ "gesamt": 20914,
+ "седа": 20915,
+ "▁Ryan": 20916,
+ "▁formatted": 20917,
+ "▁Borg": 20918,
+ "walk": 20919,
+ "▁ал": 20920,
+ "agnostics": 20921,
+ "▁Cape": 20922,
+ "▁Franco": 20923,
+ "▁fug": 20924,
+ ":)": 20925,
+ "юз": 20926,
+ "Fetch": 20927,
+ "▁roughly": 20928,
+ "▁Mis": 20929,
+ "uetooth": 20930,
+ "▁Venezuela": 20931,
+ "▁astronom": 20932,
+ "\")`": 20933,
+ "ombres": 20934,
+ "▁которой": 20935,
+ "óp": 20936,
+ "owed": 20937,
+ "HR": 20938,
+ "▁Camer": 20939,
+ "кие": 20940,
+ "parison": 20941,
+ "▁Bij": 20942,
+ "templates": 20943,
+ "environment": 20944,
+ "ização": 20945,
+ "▁ér": 20946,
+ "▁plenty": 20947,
+ "▁TypeError": 20948,
+ "▁forty": 20949,
+ "коном": 20950,
+ "▁Sed": 20951,
+ "▁thats": 20952,
+ "▁gravity": 20953,
+ "▁spiritual": 20954,
+ "▁duplicates": 20955,
+ "▁encryption": 20956,
+ "▁reven": 20957,
+ "getInstance": 20958,
+ "ällor": 20959,
+ "disk": 20960,
+ "▁thro": 20961,
+ "▁Nak": 20962,
+ "▁poł": 20963,
+ "▁heraus": 20964,
+ "invalid": 20965,
+ "sBy": 20966,
+ "Boot": 20967,
+ "▁bucket": 20968,
+ "▁Parse": 20969,
+ "hex": 20970,
+ "Conne": 20971,
+ "▁Computer": 20972,
+ "zyk": 20973,
+ "▁induced": 20974,
+ "▁Bruno": 20975,
+ "▁addressed": 20976,
+ "mania": 20977,
+ "▁inclus": 20978,
+ "ounced": 20979,
+ "scriptsize": 20980,
+ "▁Epis": 20981,
+ "▁vocal": 20982,
+ "▁Jonathan": 20983,
+ "ум": 20984,
+ "staden": 20985,
+ "▁Children": 20986,
+ "пей": 20987,
+ "Italia": 20988,
+ "reibung": 20989,
+ "▁nost": 20990,
+ "▁ещё": 20991,
+ "▁Werke": 20992,
+ "▁actress": 20993,
+ "▁Minnesota": 20994,
+ "rike": 20995,
+ "▁tek": 20996,
+ "▁primeira": 20997,
+ "▁frat": 20998,
+ "▁Configuration": 20999,
+ "▁bid": 21000,
+ "trigger": 21001,
+ "Contents": 21002,
+ "▁constantly": 21003,
+ "!!!": 21004,
+ "▁dread": 21005,
+ "▁hundreds": 21006,
+ "istische": 21007,
+ "▁cardinal": 21008,
+ "TABLE": 21009,
+ "▁estos": 21010,
+ "assoc": 21011,
+ "gray": 21012,
+ "▁Schloss": 21013,
+ "▁sche": 21014,
+ "cong": 21015,
+ "▁koji": 21016,
+ "ètes": 21017,
+ "▁Era": 21018,
+ "omi": 21019,
+ "▁SR": 21020,
+ "▁wrapped": 21021,
+ "▁trunc": 21022,
+ "▁ah": 21023,
+ "egos": 21024,
+ "oki": 21025,
+ "mouth": 21026,
+ "logging": 21027,
+ "▁fasc": 21028,
+ "▁Sample": 21029,
+ "▁conte": 21030,
+ "▁villa": 21031,
+ "comments": 21032,
+ "▁batal": 21033,
+ "▁García": 21034,
+ "▁Norte": 21035,
+ "▁wechsel": 21036,
+ "▁Museo": 21037,
+ "▁enfants": 21038,
+ "▁whisper": 21039,
+ "nake": 21040,
+ "▁jednak": 21041,
+ "lês": 21042,
+ "enders": 21043,
+ "▁äl": 21044,
+ "▁VB": 21045,
+ "▁cookies": 21046,
+ "zeti": 21047,
+ "atum": 21048,
+ "▁dedu": 21049,
+ "▁arranged": 21050,
+ "laz": 21051,
+ "▁cuenta": 21052,
+ "yml": 21053,
+ "▁flav": 21054,
+ "MR": 21055,
+ "emet": 21056,
+ "біль": 21057,
+ "cmp": 21058,
+ "ituto": 21059,
+ "zett": 21060,
+ "▁envi": 21061,
+ "▁kot": 21062,
+ "$:": 21063,
+ "upper": 21064,
+ "▁Alberto": 21065,
+ "kb": 21066,
+ "Anal": 21067,
+ "ört": 21068,
+ "▁[-": 21069,
+ "▁führte": 21070,
+ "iah": 21071,
+ "▁Tun": 21072,
+ "▁искус": 21073,
+ "uwe": 21074,
+ "ispecies": 21075,
+ "Pub": 21076,
+ "Sync": 21077,
+ "▁Colombia": 21078,
+ "akers": 21079,
+ "▁Imperial": 21080,
+ "oving": 21081,
+ "▁intelligence": 21082,
+ "▁equipment": 21083,
+ "ein": 21084,
+ "dagger": 21085,
+ "▁Edge": 21086,
+ "▁Республи": 21087,
+ "adratkilometer": 21088,
+ "▁Anto": 21089,
+ "▁charges": 21090,
+ "▁Ocean": 21091,
+ "▁simplify": 21092,
+ "▁miesz": 21093,
+ "running": 21094,
+ "▁Lac": 21095,
+ "genommen": 21096,
+ "▁representative": 21097,
+ "=.": 21098,
+ "▁Pred": 21099,
+ "▁spite": 21100,
+ "ciale": 21101,
+ "▁nave": 21102,
+ "▁extens": 21103,
+ "▁neutral": 21104,
+ "▁которая": 21105,
+ ".": 21106,
+ "▁CS": 21107,
+ "uky": 21108,
+ "▁whilst": 21109,
+ "▁lingu": 21110,
+ "extract": 21111,
+ "zeichnung": 21112,
+ "▁Feld": 21113,
+ "▁valuable": 21114,
+ "urable": 21115,
+ "▁Jen": 21116,
+ "▁struggle": 21117,
+ "▁committee": 21118,
+ "▁Wohn": 21119,
+ "▁sqlite": 21120,
+ "▁Temp": 21121,
+ "▁COUNT": 21122,
+ "consin": 21123,
+ "міні": 21124,
+ "usage": 21125,
+ "▁quest": 21126,
+ "дян": 21127,
+ "eared": 21128,
+ "▁Schne": 21129,
+ "▁dod": 21130,
+ "▁recht": 21131,
+ "▁kao": 21132,
+ "Capt": 21133,
+ "labels": 21134,
+ "▁ellos": 21135,
+ "▁industri": 21136,
+ "▁Colorado": 21137,
+ "▁contrary": 21138,
+ "▁Dum": 21139,
+ "Bel": 21140,
+ "▁Vent": 21141,
+ "▁authorities": 21142,
+ "YES": 21143,
+ "ensed": 21144,
+ "umbnail": 21145,
+ "izzazione": 21146,
+ "kou": 21147,
+ "rica": 21148,
+ "▁sect": 21149,
+ "tests": 21150,
+ "▁Klein": 21151,
+ "▁legs": 21152,
+ "▁Pietro": 21153,
+ "fu": 21154,
+ "thy": 21155,
+ "▁bast": 21156,
+ "▁tedes": 21157,
+ "ettes": 21158,
+ "▁repet": 21159,
+ "acre": 21160,
+ "retto": 21161,
+ "▁remainder": 21162,
+ "▁Geg": 21163,
+ "▁Гор": 21164,
+ "▁Rechts": 21165,
+ "▁filtering": 21166,
+ "ouss": 21167,
+ "▁deployed": 21168,
+ "▁prüfe": 21169,
+ "▁bitmap": 21170,
+ "▁sovi": 21171,
+ "▁<%=": 21172,
+ "▁entferne": 21173,
+ "kill": 21174,
+ "tabs": 21175,
+ "Expr": 21176,
+ "кому": 21177,
+ "▁Republican": 21178,
+ "▁Size": 21179,
+ "▁poll": 21180,
+ "▁rien": 21181,
+ "▁клуб": 21182,
+ "énd": 21183,
+ "▁Bio": 21184,
+ "▁perl": 21185,
+ "▁Andreas": 21186,
+ "вин": 21187,
+ "▁distant": 21188,
+ "▁Finn": 21189,
+ "▁Mitch": 21190,
+ "▁%{": 21191,
+ "▁charm": 21192,
+ "▁Mul": 21193,
+ "perate": 21194,
+ "▁sciences": 21195,
+ "▁monot": 21196,
+ "▁debido": 21197,
+ "rizona": 21198,
+ "iec": 21199,
+ "▁alarm": 21200,
+ "▁promoted": 21201,
+ "▁letzten": 21202,
+ "atin": 21203,
+ "▁conclus": 21204,
+ "herr": 21205,
+ "▁éch": 21206,
+ "edish": 21207,
+ "gor": 21208,
+ "▁stycz": 21209,
+ "▁impress": 21210,
+ "ruits": 21211,
+ "ierungs": 21212,
+ "▁parsed": 21213,
+ "▁río": 21214,
+ "▁Pakistan": 21215,
+ "igner": 21216,
+ "▁watching": 21217,
+ "▁databases": 21218,
+ "eding": 21219,
+ "▁Specific": 21220,
+ "▁generale": 21221,
+ "lax": 21222,
+ "▁Looking": 21223,
+ "▁bond": 21224,
+ "▁vista": 21225,
+ "▁ec": 21226,
+ "▁grud": 21227,
+ "▁deleting": 21228,
+ "tac": 21229,
+ "▁jazz": 21230,
+ "jm": 21231,
+ "▁pół": 21232,
+ "Language": 21233,
+ "delegate": 21234,
+ "▁registry": 21235,
+ "▁Shared": 21236,
+ "строй": 21237,
+ "Music": 21238,
+ "▁vessel": 21239,
+ ".@": 21240,
+ "▁Wür": 21241,
+ "▁fed": 21242,
+ "▁eredet": 21243,
+ "▁Gö": 21244,
+ "upt": 21245,
+ "▁pleasant": 21246,
+ "▁tableView": 21247,
+ "▁counting": 21248,
+ "▁Kriegs": 21249,
+ "▁получил": 21250,
+ "▁],": 21251,
+ "виа": 21252,
+ "▁až": 21253,
+ "ToList": 21254,
+ "▁Advent": 21255,
+ "▁sketch": 21256,
+ "pn": 21257,
+ "▁sier": 21258,
+ "▁находится": 21259,
+ "iop": 21260,
+ "▁ly": 21261,
+ "▁Schl": 21262,
+ "Contract": 21263,
+ "associ": 21264,
+ "▁Pear": 21265,
+ "▁whe": 21266,
+ "▁Delete": 21267,
+ "▁elem": 21268,
+ "ätte": 21269,
+ "▁česk": 21270,
+ "▁MC": 21271,
+ "▁shout": 21272,
+ "akespe": 21273,
+ "▁defaults": 21274,
+ "penas": 21275,
+ "òria": 21276,
+ "▁hierarchy": 21277,
+ "ipt": 21278,
+ "▁Elis": 21279,
+ "likely": 21280,
+ "Rot": 21281,
+ "▁cow": 21282,
+ "▁strike": 21283,
+ "▁березня": 21284,
+ "▁ensemble": 21285,
+ "▁Pseud": 21286,
+ "Virtual": 21287,
+ "▁її": 21288,
+ "ROOT": 21289,
+ "сия": 21290,
+ "▁соб": 21291,
+ "▁invert": 21292,
+ "▁switching": 21293,
+ "htaccess": 21294,
+ "▁награ": 21295,
+ "▁Norman": 21296,
+ "▁inglês": 21297,
+ "![": 21298,
+ "ousel": 21299,
+ "DOCTYPE": 21300,
+ "▁suppress": 21301,
+ "▁accompanied": 21302,
+ "▁Bé": 21303,
+ "implies": 21304,
+ "nut": 21305,
+ "▁Syntax": 21306,
+ "inho": 21307,
+ "▁tam": 21308,
+ "▁focused": 21309,
+ "avano": 21310,
+ "▁Baden": 21311,
+ "had": 21312,
+ "▁({": 21313,
+ "Ty": 21314,
+ "▁рос": 21315,
+ "▁чолові": 21316,
+ "oge": 21317,
+ "jsp": 21318,
+ "Blue": 21319,
+ "▁suas": 21320,
+ "apers": 21321,
+ "Short": 21322,
+ "Renderer": 21323,
+ "▁sendo": 21324,
+ "▁Cec": 21325,
+ "▁`__": 21326,
+ "▁Municipal": 21327,
+ "dotnet": 21328,
+ "▁bev": 21329,
+ "▁DA": 21330,
+ "MenuItem": 21331,
+ "▁amp": 21332,
+ "▁uri": 21333,
+ "▁fier": 21334,
+ "слен": 21335,
+ "),(": 21336,
+ "cules": 21337,
+ "illas": 21338,
+ "LOCK": 21339,
+ "▁derive": 21340,
+ "uben": 21341,
+ "▁GT": 21342,
+ "▁Mack": 21343,
+ "▁scholar": 21344,
+ ")}}": 21345,
+ "зм": 21346,
+ ">::": 21347,
+ "шёл": 21348,
+ "▁principales": 21349,
+ "▁цар": 21350,
+ "▁tied": 21351,
+ "▁alta": 21352,
+ "▁Cit": 21353,
+ "lined": 21354,
+ "major": 21355,
+ "▁punk": 21356,
+ "▁cinco": 21357,
+ "ický": 21358,
+ "▁raggi": 21359,
+ "typen": 21360,
+ "тельство": 21361,
+ "▁conference": 21362,
+ "▁сіль": 21363,
+ "▁heut": 21364,
+ "iš": 21365,
+ "ета": 21366,
+ "velope": 21367,
+ "hbox": 21368,
+ "nown": 21369,
+ "▁zar": 21370,
+ "ktiv": 21371,
+ "ieß": 21372,
+ "▁стре": 21373,
+ "▁EventArgs": 21374,
+ "▁Ira": 21375,
+ "▁VBA": 21376,
+ "▁Santo": 21377,
+ "▁Fach": 21378,
+ "▁FF": 21379,
+ "▁Raymond": 21380,
+ "мец": 21381,
+ "implementation": 21382,
+ "▁brothers": 21383,
+ "▁côté": 21384,
+ "▁controllers": 21385,
+ "▁Cle": 21386,
+ "▁cable": 21387,
+ "▁confer": 21388,
+ "▁{-": 21389,
+ "▁czł": 21390,
+ "▁Filip": 21391,
+ "atorio": 21392,
+ "▁wicht": 21393,
+ "▁beaucoup": 21394,
+ "▁Lit": 21395,
+ "▁sessions": 21396,
+ "▁Success": 21397,
+ "▁routing": 21398,
+ "niu": 21399,
+ "▁Vice": 21400,
+ "▁krit": 21401,
+ "updated": 21402,
+ "▁Invalid": 21403,
+ "▁Mannschaft": 21404,
+ "▁aos": 21405,
+ "▁tudi": 21406,
+ "▁després": 21407,
+ "qua": 21408,
+ "Contains": 21409,
+ "Company": 21410,
+ "▁persona": 21411,
+ "adapter": 21412,
+ "сни": 21413,
+ "▁voj": 21414,
+ "▁escri": 21415,
+ "agt": 21416,
+ "▁ство": 21417,
+ "▁distrito": 21418,
+ "apan": 21419,
+ "▁aspects": 21420,
+ "▁zal": 21421,
+ ")^{\\": 21422,
+ "▁système": 21423,
+ "▁ана": 21424,
+ "iums": 21425,
+ "▁premiers": 21426,
+ "▁поэ": 21427,
+ "▁mère": 21428,
+ "▁Gun": 21429,
+ "aping": 21430,
+ "▁Rain": 21431,
+ "▁igual": 21432,
+ "▁processor": 21433,
+ "')`": 21434,
+ "bling": 21435,
+ "▁mism": 21436,
+ "bráz": 21437,
+ "▁closest": 21438,
+ "▁Reading": 21439,
+ "▁попу": 21440,
+ "cono": 21441,
+ "▁kult": 21442,
+ "▁!!": 21443,
+ "▁Expression": 21444,
+ "▁induction": 21445,
+ "ahren": 21446,
+ "▁cp": 21447,
+ "▁violence": 21448,
+ "ientí": 21449,
+ "cente": 21450,
+ "▁Dob": 21451,
+ "jack": 21452,
+ "song": 21453,
+ "bucket": 21454,
+ "▁deport": 21455,
+ "кими": 21456,
+ "lm": 21457,
+ "▁innoc": 21458,
+ "Changes": 21459,
+ "▁prohib": 21460,
+ "angol": 21461,
+ "iseconds": 21462,
+ "▁пор": 21463,
+ "▁hip": 21464,
+ "▁pů": 21465,
+ "endorf": 21466,
+ "▁scheduled": 21467,
+ "▁Flug": 21468,
+ "acyj": 21469,
+ "▁Films": 21470,
+ "athedral": 21471,
+ "Power": 21472,
+ "ardin": 21473,
+ "kap": 21474,
+ "icken": 21475,
+ "resize": 21476,
+ "eus": 21477,
+ "rr": 21478,
+ "лян": 21479,
+ "▁Hav": 21480,
+ "▁ora": 21481,
+ "FROM": 21482,
+ "лося": 21483,
+ "▁terug": 21484,
+ "▁Width": 21485,
+ "▁accepts": 21486,
+ "бен": 21487,
+ "▁mich": 21488,
+ "▁Czech": 21489,
+ "▁Bedeut": 21490,
+ "▁вид": 21491,
+ "ôme": 21492,
+ "▁Loop": 21493,
+ "spect": 21494,
+ "ük": 21495,
+ "eston": 21496,
+ "▁slot": 21497,
+ "▁została": 21498,
+ "▁Charlotte": 21499,
+ "▁составляет": 21500,
+ "▁Promise": 21501,
+ "▁epo": 21502,
+ "▁diction": 21503,
+ "▁Franklin": 21504,
+ "▁Riv": 21505,
+ "руг": 21506,
+ "cida": 21507,
+ "▁Explorer": 21508,
+ "cookie": 21509,
+ "▁formerly": 21510,
+ "▁municipality": 21511,
+ "▁Stefan": 21512,
+ "lists": 21513,
+ "COMP": 21514,
+ "Len": 21515,
+ "▁Staat": 21516,
+ "▁NBA": 21517,
+ "dens": 21518,
+ "▁oscill": 21519,
+ "!.": 21520,
+ "▁PO": 21521,
+ "ône": 21522,
+ "eses": 21523,
+ "▁националь": 21524,
+ "voor": 21525,
+ "▁копи": 21526,
+ "▁пози": 21527,
+ "ulu": 21528,
+ "Constraint": 21529,
+ "▁своей": 21530,
+ "▁algebraic": 21531,
+ "чня": 21532,
+ "Dict": 21533,
+ "▁appearing": 21534,
+ "▁prav": 21535,
+ "▁Universal": 21536,
+ "Browser": 21537,
+ "▁Singap": 21538,
+ "ennessee": 21539,
+ "]_": 21540,
+ "▁Sof": 21541,
+ "▁Cad": 21542,
+ "ounce": 21543,
+ "▁costs": 21544,
+ "]{\\": 21545,
+ "../../": 21546,
+ "ській": 21547,
+ "ühl": 21548,
+ "iety": 21549,
+ "пр": 21550,
+ "▁interpreted": 21551,
+ "ajn": 21552,
+ "colog": 21553,
+ "YS": 21554,
+ "mans": 21555,
+ "▁metrics": 21556,
+ "▁registr": 21557,
+ "istance": 21558,
+ "▁Поль": 21559,
+ "▁anonymous": 21560,
+ "▁institutions": 21561,
+ "▁zdob": 21562,
+ "prüng": 21563,
+ "▁арти": 21564,
+ "▁estat": 21565,
+ "acci": 21566,
+ "▁academic": 21567,
+ "▁chiesa": 21568,
+ "▁Gian": 21569,
+ "contrib": 21570,
+ "umed": 21571,
+ "▁Gir": 21572,
+ "▁baseball": 21573,
+ "numeric": 21574,
+ "Generator": 21575,
+ "GM": 21576,
+ "▁tiny": 21577,
+ "▁distinction": 21578,
+ "гер": 21579,
+ "▁rust": 21580,
+ "▁FIFA": 21581,
+ "▁Properties": 21582,
+ "^-": 21583,
+ "▁экс": 21584,
+ "▁Stanis": 21585,
+ "▁Ajax": 21586,
+ "escape": 21587,
+ "▁consp": 21588,
+ "▁Chen": 21589,
+ "▁Naval": 21590,
+ "Bit": 21591,
+ "▁bât": 21592,
+ "скими": 21593,
+ "drive": 21594,
+ "▁Round": 21595,
+ "photo": 21596,
+ "▁Level": 21597,
+ "▁geg": 21598,
+ "Tom": 21599,
+ "▁Mobile": 21600,
+ "▁Trop": 21601,
+ "Direction": 21602,
+ "isan": 21603,
+ ")^{-": 21604,
+ "▁Setting": 21605,
+ "▁Probably": 21606,
+ "лья": 21607,
+ "▁assets": 21608,
+ "▁atte": 21609,
+ "▁bulk": 21610,
+ "ést": 21611,
+ "▁wing": 21612,
+ "nius": 21613,
+ "▁wins": 21614,
+ "▁lud": 21615,
+ "ushing": 21616,
+ "▁deven": 21617,
+ "ограф": 21618,
+ "burger": 21619,
+ "▁embar": 21620,
+ "FilterChain": 21621,
+ "▁tum": 21622,
+ "▁öss": 21623,
+ "▁nommé": 21624,
+ "▁pir": 21625,
+ "▁luc": 21626,
+ "dbo": 21627,
+ "agues": 21628,
+ "▁alcan": 21629,
+ "ouwen": 21630,
+ "▁Stanley": 21631,
+ "циали": 21632,
+ "▁grown": 21633,
+ "▁preserved": 21634,
+ "▁solar": 21635,
+ "▁Население": 21636,
+ "▁performances": 21637,
+ "▁Cow": 21638,
+ "▁engineering": 21639,
+ "▁scaling": 21640,
+ "atomic": 21641,
+ "endance": 21642,
+ "▁ace": 21643,
+ "ängen": 21644,
+ "Anim": 21645,
+ "phase": 21646,
+ "zburg": 21647,
+ "Old": 21648,
+ "▁servant": 21649,
+ "▁gemeins": 21650,
+ "▁Observ": 21651,
+ "translate": 21652,
+ "▁covering": 21653,
+ "▁están": 21654,
+ "▁problema": 21655,
+ "▁установ": 21656,
+ "▁llev": 21657,
+ "▁czerw": 21658,
+ "éal": 21659,
+ "mez": 21660,
+ "REE": 21661,
+ "ERR": 21662,
+ "тури": 21663,
+ "segu": 21664,
+ "▁profit": 21665,
+ "▁multiplication": 21666,
+ "kommen": 21667,
+ "▁faut": 21668,
+ "▁candidates": 21669,
+ "▁Uri": 21670,
+ "▁Laura": 21671,
+ "▁sap": 21672,
+ "▁висини": 21673,
+ "▁Between": 21674,
+ "fade": 21675,
+ "▁reserved": 21676,
+ "▁involving": 21677,
+ "▁Mare": 21678,
+ "▁Container": 21679,
+ "▁назна": 21680,
+ "▁DEBUG": 21681,
+ "▁hurt": 21682,
+ "▁Polski": 21683,
+ "▁lux": 21684,
+ "CB": 21685,
+ "wach": 21686,
+ "▁период": 21687,
+ "▁Catherine": 21688,
+ "▁ganz": 21689,
+ "uchte": 21690,
+ "▁consumer": 21691,
+ "▁crossed": 21692,
+ "ordered": 21693,
+ "away": 21694,
+ "techn": 21695,
+ "▁subscri": 21696,
+ "▁shortcut": 21697,
+ "▁производ": 21698,
+ "▁simultaneously": 21699,
+ "▁rating": 21700,
+ "▁Kings": 21701,
+ "▁relationships": 21702,
+ "▁Sex": 21703,
+ "▁Tool": 21704,
+ "agh": 21705,
+ "acters": 21706,
+ "logger": 21707,
+ "homme": 21708,
+ "engers": 21709,
+ "▁Ri": 21710,
+ "earance": 21711,
+ "▁appearances": 21712,
+ "Real": 21713,
+ "▁passe": 21714,
+ "iclopedia": 21715,
+ "чко": 21716,
+ "terre": 21717,
+ "▁Ontario": 21718,
+ "▁переда": 21719,
+ "footer": 21720,
+ "archivi": 21721,
+ "ifiz": 21722,
+ "▁Protest": 21723,
+ "▁LIN": 21724,
+ "unnable": 21725,
+ "▁centuries": 21726,
+ "▁Bayer": 21727,
+ "цію": 21728,
+ "овин": 21729,
+ "▁Andrea": 21730,
+ "selection": 21731,
+ "▁calm": 21732,
+ "▁modification": 21733,
+ "▁shortly": 21734,
+ "inaire": 21735,
+ "▁fusion": 21736,
+ "▁feelings": 21737,
+ "PK": 21738,
+ "▁Roberto": 21739,
+ "гне": 21740,
+ "Shared": 21741,
+ "▁mehrere": 21742,
+ "▁Niem": 21743,
+ "omp": 21744,
+ "Env": 21745,
+ "▁Article": 21746,
+ "▁Pok": 21747,
+ "▁VARCHAR": 21748,
+ "▁dil": 21749,
+ "▁afford": 21750,
+ "▁confront": 21751,
+ "owanie": 21752,
+ "▁ministre": 21753,
+ "adesh": 21754,
+ "▁Poly": 21755,
+ "▁Распо": 21756,
+ "▁Gruppe": 21757,
+ "▁Helen": 21758,
+ "▁cc": 21759,
+ "▁portrait": 21760,
+ "bew": 21761,
+ "▁beta": 21762,
+ "▁Wir": 21763,
+ "▁Audio": 21764,
+ "▁(\\<": 21765,
+ "riority": 21766,
+ "▁nit": 21767,
+ "▁представи": 21768,
+ "▁Vie": 21769,
+ "▁wür": 21770,
+ "▁Hold": 21771,
+ "▁Sad": 21772,
+ "▁Tochter": 21773,
+ "▁oltre": 21774,
+ "▁Activ": 21775,
+ "▁Jason": 21776,
+ "▁wieku": 21777,
+ "▁regards": 21778,
+ "▁taste": 21779,
+ "agnostic": 21780,
+ "лася": 21781,
+ "▁Self": 21782,
+ "▁apr": 21783,
+ "▁Deep": 21784,
+ "scop": 21785,
+ "Activ": 21786,
+ "▁typedef": 21787,
+ "ContentView": 21788,
+ "compiler": 21789,
+ "▁Roth": 21790,
+ "xc": 21791,
+ "зик": 21792,
+ "▁largo": 21793,
+ "▁Rena": 21794,
+ "heiten": 21795,
+ "▁platforms": 21796,
+ "ulla": 21797,
+ "▁glance": 21798,
+ "▁mascul": 21799,
+ "▁mex": 21800,
+ "▁Jorge": 21801,
+ "▁funcion": 21802,
+ "choose": 21803,
+ "▁reviews": 21804,
+ "▁Alban": 21805,
+ "▁Glo": 21806,
+ "▁Species": 21807,
+ "▁Fame": 21808,
+ "▁Roll": 21809,
+ "▁Puerto": 21810,
+ "▁\\)": 21811,
+ "ymnas": 21812,
+ "environ": 21813,
+ "▁iphone": 21814,
+ "▁Wrestling": 21815,
+ "ały": 21816,
+ "▁Indiana": 21817,
+ "Radio": 21818,
+ "VS": 21819,
+ "▁independence": 21820,
+ "тай": 21821,
+ "▁decode": 21822,
+ "White": 21823,
+ "▁journ": 21824,
+ "ículo": 21825,
+ "▁Barb": 21826,
+ "▁Evangel": 21827,
+ "▁Andy": 21828,
+ "▁Welcome": 21829,
+ "▁Device": 21830,
+ "gef": 21831,
+ "▁remembered": 21832,
+ "▁variations": 21833,
+ "▁Adolf": 21834,
+ "itaine": 21835,
+ "▁надморској": 21836,
+ "▁steam": 21837,
+ "▁concerns": 21838,
+ "▁`|": 21839,
+ "▁био": 21840,
+ "тельства": 21841,
+ "▁quattro": 21842,
+ "extend": 21843,
+ "▁trabajo": 21844,
+ "enberg": 21845,
+ "▁scenarios": 21846,
+ "ânt": 21847,
+ "▁kommt": 21848,
+ "▁domestic": 21849,
+ "▁Basketball": 21850,
+ "▁Cooper": 21851,
+ "sock": 21852,
+ "держа": 21853,
+ "={\\": 21854,
+ "▁inici": 21855,
+ "▁Phill": 21856,
+ "▁генерал": 21857,
+ "archiviato": 21858,
+ "ън": 21859,
+ "Rob": 21860,
+ "▁tong": 21861,
+ "▁characteristics": 21862,
+ "▁amaz": 21863,
+ "▁Mode": 21864,
+ "▁inaugur": 21865,
+ "wehr": 21866,
+ "rant": 21867,
+ "ionali": 21868,
+ "▁Mother": 21869,
+ "Ma": 21870,
+ "équ": 21871,
+ "▁Kelly": 21872,
+ "cile": 21873,
+ "▁besteht": 21874,
+ "▁estimates": 21875,
+ "ruguay": 21876,
+ "▁Ans": 21877,
+ "Mad": 21878,
+ "▁нав": 21879,
+ "▁données": 21880,
+ "▁tropical": 21881,
+ "▁Several": 21882,
+ "elter": 21883,
+ "▁Pho": 21884,
+ "kem": 21885,
+ "▁Customer": 21886,
+ "▁складі": 21887,
+ "▁courses": 21888,
+ "Platform": 21889,
+ "navbar": 21890,
+ "learning": 21891,
+ "▁Swedish": 21892,
+ "▁zast": 21893,
+ "▁Lig": 21894,
+ "management": 21895,
+ "▁lod": 21896,
+ "uffle": 21897,
+ "Texture": 21898,
+ "arga": 21899,
+ "átum": 21900,
+ "▁DDR": 21901,
+ "нії": 21902,
+ "▁Société": 21903,
+ "▁domains": 21904,
+ "▁permitted": 21905,
+ "▁externe": 21906,
+ "▁quelque": 21907,
+ "vt": 21908,
+ "yman": 21909,
+ "▁Ward": 21910,
+ "▁agli": 21911,
+ "▁andra": 21912,
+ "Snapshot": 21913,
+ "▁må": 21914,
+ "▁yeah": 21915,
+ "дена": 21916,
+ "ępu": 21917,
+ "askell": 21918,
+ "▁République": 21919,
+ "inject": 21920,
+ "▁';": 21921,
+ "änn": 21922,
+ "▁zelf": 21923,
+ "▁Entwicklung": 21924,
+ "ária": 21925,
+ "onomy": 21926,
+ "▁svil": 21927,
+ "iese": 21928,
+ "▁conser": 21929,
+ "▁nim": 21930,
+ "▁rész": 21931,
+ "▁Итали": 21932,
+ "▁partici": 21933,
+ "▁Lion": 21934,
+ "sr": 21935,
+ "always": 21936,
+ "▁Владимир": 21937,
+ "ческие": 21938,
+ "[,": 21939,
+ "▁Definition": 21940,
+ "nant": 21941,
+ "oem": 21942,
+ "Ids": 21943,
+ "▁вне": 21944,
+ "▁[...]": 21945,
+ "▁направ": 21946,
+ "▁GO": 21947,
+ "▁års": 21948,
+ "▁után": 21949,
+ "▁outros": 21950,
+ "▁región": 21951,
+ "▁Mong": 21952,
+ "▁filme": 21953,
+ "▁triple": 21954,
+ "▁spons": 21955,
+ "Develop": 21956,
+ "▁outcome": 21957,
+ "▁Bible": 21958,
+ "▁имени": 21959,
+ "Canvas": 21960,
+ "пута": 21961,
+ "curr": 21962,
+ "ások": 21963,
+ "){\\": 21964,
+ "ningar": 21965,
+ "`;": 21966,
+ "▁Flash": 21967,
+ ":#": 21968,
+ "must": 21969,
+ "cpu": 21970,
+ "▁formats": 21971,
+ "Har": 21972,
+ "▁episodio": 21973,
+ "▁Rosa": 21974,
+ "▁dès": 21975,
+ "emit": 21976,
+ "riteria": 21977,
+ "Annotation": 21978,
+ "Flag": 21979,
+ "gmail": 21980,
+ "▁Normal": 21981,
+ "ollary": 21982,
+ "▁foss": 21983,
+ "▁concurrent": 21984,
+ "▁crashes": 21985,
+ "▁виде": 21986,
+ "▁Minor": 21987,
+ "▁Sit": 21988,
+ "▁SN": 21989,
+ "▁scar": 21990,
+ "▁femin": 21991,
+ "▁specification": 21992,
+ "soap": 21993,
+ "▁operate": 21994,
+ "▁principalmente": 21995,
+ "▁aust": 21996,
+ "ibile": 21997,
+ "itime": 21998,
+ "лежа": 21999,
+ "iframe": 22000,
+ "▁concepts": 22001,
+ "▁tack": 22002,
+ "▁viss": 22003,
+ "▁carbon": 22004,
+ "tery": 22005,
+ "▁naming": 22006,
+ "▁Orts": 22007,
+ "idente": 22008,
+ "▁Capit": 22009,
+ "▁expr": 22010,
+ "▁насељу": 22011,
+ "▁Selected": 22012,
+ "▁hinter": 22013,
+ "▁iframe": 22014,
+ "▁zb": 22015,
+ "indexPath": 22016,
+ "coll": 22017,
+ "▁wrześ": 22018,
+ "▁acht": 22019,
+ "▁gradually": 22020,
+ "▁чу": 22021,
+ "зей": 22022,
+ "haft": 22023,
+ "▁tran": 22024,
+ "▁laquelle": 22025,
+ "ytics": 22026,
+ "IDE": 22027,
+ "▁pygame": 22028,
+ "▁Package": 22029,
+ "▁className": 22030,
+ "Bal": 22031,
+ "perl": 22032,
+ "тина": 22033,
+ "Occ": 22034,
+ "▁infrastr": 22035,
+ "▁Champions": 22036,
+ "▁classic": 22037,
+ "▁Raw": 22038,
+ "▁partially": 22039,
+ "▁Ted": 22040,
+ "▁stolet": 22041,
+ "rained": 22042,
+ "WHERE": 22043,
+ "▁vall": 22044,
+ "▁Julia": 22045,
+ "zat": 22046,
+ "▁surrounded": 22047,
+ "SEE": 22048,
+ "▁walking": 22049,
+ "Bad": 22050,
+ "FOR": 22051,
+ "contre": 22052,
+ "▁Palest": 22053,
+ "ático": 22054,
+ "▁engineer": 22055,
+ "▁partners": 22056,
+ "▁Jews": 22057,
+ "ilers": 22058,
+ "▁cerem": 22059,
+ "▁interactions": 22060,
+ "acu": 22061,
+ "sty": 22062,
+ "▁Princess": 22063,
+ "sharp": 22064,
+ "▁Singles": 22065,
+ "▁їх": 22066,
+ "chez": 22067,
+ "Receiver": 22068,
+ "▁patients": 22069,
+ "stringify": 22070,
+ "▁competed": 22071,
+ "bey": 22072,
+ "$;": 22073,
+ "▁Bd": 22074,
+ "hadoop": 22075,
+ "▁División": 22076,
+ "öld": 22077,
+ "▁restricted": 22078,
+ "▁commander": 22079,
+ "▁Highway": 22080,
+ "▁Česk": 22081,
+ "▁myth": 22082,
+ "чан": 22083,
+ "raham": 22084,
+ "▁enqu": 22085,
+ "▁pog": 22086,
+ "▁comuna": 22087,
+ "▁println": 22088,
+ "▁круп": 22089,
+ "▁depois": 22090,
+ "▁seats": 22091,
+ "▁neighb": 22092,
+ "циона": 22093,
+ "agine": 22094,
+ "▁clothes": 22095,
+ "▁Prior": 22096,
+ "Brain": 22097,
+ "FFFF": 22098,
+ "':'": 22099,
+ "features": 22100,
+ "▁filesystem": 22101,
+ "▁singles": 22102,
+ "▁Melbourne": 22103,
+ "▁destruction": 22104,
+ "▁Lyon": 22105,
+ "▁Insel": 22106,
+ "Nav": 22107,
+ "▁Replace": 22108,
+ "▁lé": 22109,
+ "Who": 22110,
+ "▁Estad": 22111,
+ "▁dimensional": 22112,
+ "▁öff": 22113,
+ "▁grands": 22114,
+ "джа": 22115,
+ "plane": 22116,
+ "ності": 22117,
+ "▁Origin": 22118,
+ "WI": 22119,
+ "änner": 22120,
+ "▁Cry": 22121,
+ "ITION": 22122,
+ "▁född": 22123,
+ "▁cultura": 22124,
+ "▁Rank": 22125,
+ "▁vuel": 22126,
+ "▁zag": 22127,
+ "▁Maxim": 22128,
+ "ону": 22129,
+ "()))": 22130,
+ "Raw": 22131,
+ "kirche": 22132,
+ "▁además": 22133,
+ "▁tie": 22134,
+ "▁Style": 22135,
+ "сков": 22136,
+ "istant": 22137,
+ "olph": 22138,
+ "▁Zür": 22139,
+ "▁Info": 22140,
+ "DOM": 22141,
+ "usc": 22142,
+ "nahm": 22143,
+ "▁Федера": 22144,
+ "▁Fot": 22145,
+ "▁specifying": 22146,
+ "▁titolo": 22147,
+ "▁Boys": 22148,
+ "iech": 22149,
+ "Place": 22150,
+ "▁Hoff": 22151,
+ "▁cached": 22152,
+ "валь": 22153,
+ "isher": 22154,
+ "rolling": 22155,
+ "opens": 22156,
+ "▁hr": 22157,
+ "------": 22158,
+ "▁maggior": 22159,
+ "▁transactions": 22160,
+ "▁criminal": 22161,
+ "▁retre": 22162,
+ "▁Campbell": 22163,
+ ")):": 22164,
+ "▁ned": 22165,
+ "Pager": 22166,
+ "▁Hero": 22167,
+ "(__": 22168,
+ "▁uncle": 22169,
+ "▁reaches": 22170,
+ "arto": 22171,
+ "▁hello": 22172,
+ "Preferences": 22173,
+ "▁затем": 22174,
+ "Named": 22175,
+ "▁readers": 22176,
+ "хі": 22177,
+ "kern": 22178,
+ "▁упо": 22179,
+ "кин": 22180,
+ "▁lav": 22181,
+ "▁nob": 22182,
+ "▁secre": 22183,
+ "▁ListView": 22184,
+ "вания": 22185,
+ "▁Mayor": 22186,
+ "borough": 22187,
+ "▁filosof": 22188,
+ "нення": 22189,
+ "фри": 22190,
+ "▁patr": 22191,
+ "FM": 22192,
+ "▁acid": 22193,
+ "▁Salvador": 22194,
+ "▁abb": 22195,
+ "▁Graham": 22196,
+ "policy": 22197,
+ "negative": 22198,
+ "ńskiego": 22199,
+ "▁Heimat": 22200,
+ "▁dazu": 22201,
+ "▁mely": 22202,
+ "▁ride": 22203,
+ "▁duties": 22204,
+ "overy": 22205,
+ "▁Proposition": 22206,
+ "▁Paolo": 22207,
+ "/'": 22208,
+ "▁Mau": 22209,
+ "imenti": 22210,
+ "Saint": 22211,
+ "father": 22212,
+ "▁equilib": 22213,
+ "phony": 22214,
+ "▁clas": 22215,
+ "▁отли": 22216,
+ "▁Buffered": 22217,
+ "rek": 22218,
+ "▁mitt": 22219,
+ "▁Hur": 22220,
+ "▁Harvard": 22221,
+ "▁demonstrate": 22222,
+ "uario": 22223,
+ "▁dolor": 22224,
+ "▁rejected": 22225,
+ "▁Müller": 22226,
+ "▁nac": 22227,
+ "▁Belle": 22228,
+ "▁gathered": 22229,
+ "nr": 22230,
+ "frika": 22231,
+ "öll": 22232,
+ "▁chemical": 22233,
+ "nig": 22234,
+ "▁calc": 22235,
+ "▁DEFAULT": 22236,
+ "▁philosophy": 22237,
+ "▁Laravel": 22238,
+ "▁alignment": 22239,
+ "EV": 22240,
+ "eor": 22241,
+ "▁dzie": 22242,
+ "▁mest": 22243,
+ "▁Io": 22244,
+ "CRE": 22245,
+ "зви": 22246,
+ "▁Medic": 22247,
+ "▁nä": 22248,
+ "▁zab": 22249,
+ "▁Slov": 22250,
+ "utlich": 22251,
+ "▁amplit": 22252,
+ "▁Frankreich": 22253,
+ "▁кіль": 22254,
+ "IND": 22255,
+ "execution": 22256,
+ "▁Karriere": 22257,
+ "dostęp": 22258,
+ "▁réal": 22259,
+ "engo": 22260,
+ "▁severe": 22261,
+ "зма": 22262,
+ "▁турни": 22263,
+ "▁Carter": 22264,
+ "▁Robinson": 22265,
+ "getElementsBy": 22266,
+ "▁prototype": 22267,
+ "▁japon": 22268,
+ "führung": 22269,
+ "▁consegu": 22270,
+ "▁studi": 22271,
+ "▁lire": 22272,
+ "▁schließ": 22273,
+ "▁Buff": 22274,
+ "▁redund": 22275,
+ "▁ern": 22276,
+ "▁myster": 22277,
+ "▁proprio": 22278,
+ "ateful": 22279,
+ "▁Parent": 22280,
+ "▁ladies": 22281,
+ "rack": 22282,
+ "тика": 22283,
+ "enburg": 22284,
+ "▁качестве": 22285,
+ "▁EF": 22286,
+ "▁stam": 22287,
+ "▁nueva": 22288,
+ "▁filtered": 22289,
+ "reten": 22290,
+ "▁Ian": 22291,
+ "▁Matthew": 22292,
+ "kih": 22293,
+ "▁ő": 22294,
+ "▁компози": 22295,
+ "▁forever": 22296,
+ "oires": 22297,
+ ":\\\\": 22298,
+ "▁études": 22299,
+ "▁soup": 22300,
+ "▁pleased": 22301,
+ ")}(": 22302,
+ "▁Stop": 22303,
+ "Setter": 22304,
+ "▁Help": 22305,
+ "▁bars": 22306,
+ "▁ERR": 22307,
+ "▁(?": 22308,
+ "▁poetry": 22309,
+ "▁Util": 22310,
+ "AK": 22311,
+ "▁fick": 22312,
+ "▁IM": 22313,
+ "▁proud": 22314,
+ "носи": 22315,
+ "▁muerte": 22316,
+ "▁Palmarès": 22317,
+ "▁Nas": 22318,
+ "щих": 22319,
+ "▁quer": 22320,
+ "▁apenas": 22321,
+ "]['": 22322,
+ "▁Konst": 22323,
+ "пон": 22324,
+ "▁Schiff": 22325,
+ "▁mp": 22326,
+ "▁благо": 22327,
+ "fram": 22328,
+ "▁household": 22329,
+ "▁tract": 22330,
+ "encoding": 22331,
+ "▁undert": 22332,
+ "▁Aug": 22333,
+ "ован": 22334,
+ "▁Arten": 22335,
+ "▁invoked": 22336,
+ "▁dynast": 22337,
+ "▁fleet": 22338,
+ "чество": 22339,
+ "▁Murray": 22340,
+ "▁gut": 22341,
+ "elihood": 22342,
+ "▁SSH": 22343,
+ "ответ": 22344,
+ "▁personally": 22345,
+ "прия": 22346,
+ "▁financi": 22347,
+ "▁Thompson": 22348,
+ "alu": 22349,
+ "identity": 22350,
+ "▁Grab": 22351,
+ "addle": 22352,
+ "Ét": 22353,
+ "▁Tob": 22354,
+ "▁verlor": 22355,
+ "▁Sainte": 22356,
+ "▁dop": 22357,
+ "▁вере": 22358,
+ "___": 22359,
+ "▁promotion": 22360,
+ "▁-=": 22361,
+ "▁отде": 22362,
+ "▁ambigu": 22363,
+ "ORDER": 22364,
+ "▁Communic": 22365,
+ "▁imply": 22366,
+ "oned": 22367,
+ "cluding": 22368,
+ "▁collision": 22369,
+ "▁fragments": 22370,
+ "scription": 22371,
+ "▁'{": 22372,
+ "лях": 22373,
+ "▁hans": 22374,
+ "ус": 22375,
+ "wire": 22376,
+ "namespace": 22377,
+ "▁sword": 22378,
+ "refresh": 22379,
+ "▁kwam": 22380,
+ "zs": 22381,
+ "commons": 22382,
+ "▁cosa": 22383,
+ "▁regime": 22384,
+ "grep": 22385,
+ "▁dioc": 22386,
+ "▁Contact": 22387,
+ "▁estas": 22388,
+ "▁Stewart": 22389,
+ "▁viele": 22390,
+ "това": 22391,
+ "▁Ran": 22392,
+ "annes": 22393,
+ "iday": 22394,
+ "▁snapshot": 22395,
+ "orrow": 22396,
+ "▁zač": 22397,
+ "▁участие": 22398,
+ "▁promised": 22399,
+ "Assembly": 22400,
+ "▁championship": 22401,
+ "▁Define": 22402,
+ "▁eren": 22403,
+ "▁ново": 22404,
+ "▁thinks": 22405,
+ "Age": 22406,
+ "▁gev": 22407,
+ "varchar": 22408,
+ "ività": 22409,
+ "compos": 22410,
+ "▁Mutter": 22411,
+ "CONT": 22412,
+ "armée": 22413,
+ "agnet": 22414,
+ "▁Brow": 22415,
+ ".—": 22416,
+ "▁Television": 22417,
+ "▁Для": 22418,
+ "▁vm": 22419,
+ "▁ordin": 22420,
+ "▁Михай": 22421,
+ "▁aproxim": 22422,
+ "')->": 22423,
+ "▁zoo": 22424,
+ "ippi": 22425,
+ "▁sino": 22426,
+ "▁Québec": 22427,
+ "rages": 22428,
+ "äck": 22429,
+ "eing": 22430,
+ "arlo": 22431,
+ "pios": 22432,
+ "▁Chan": 22433,
+ "▁elli": 22434,
+ "▁incons": 22435,
+ "gestellt": 22436,
+ "ppers": 22437,
+ "Jean": 22438,
+ "anstalt": 22439,
+ "▁Dance": 22440,
+ "▁toen": 22441,
+ "▁decis": 22442,
+ "▁Резу": 22443,
+ "▁officially": 22444,
+ "ätze": 22445,
+ "▁доро": 22446,
+ "▁enumer": 22447,
+ "▁troisième": 22448,
+ "typ": 22449,
+ "offs": 22450,
+ "боль": 22451,
+ "odn": 22452,
+ "▁Zar": 22453,
+ "▁друго": 22454,
+ "quia": 22455,
+ "▁Nicolas": 22456,
+ "пису": 22457,
+ "▁mob": 22458,
+ "paces": 22459,
+ "нього": 22460,
+ "Alg": 22461,
+ "éroï": 22462,
+ "Errors": 22463,
+ "▁гре": 22464,
+ "▁женщи": 22465,
+ "inch": 22466,
+ "▁Korean": 22467,
+ "▁Apost": 22468,
+ "▁Liver": 22469,
+ "▁elementary": 22470,
+ "▁DI": 22471,
+ "виси": 22472,
+ "▁soil": 22473,
+ "▁DLL": 22474,
+ "▁risp": 22475,
+ "▁Shakespe": 22476,
+ "▁Gaussian": 22477,
+ "▁Kurt": 22478,
+ "Vertex": 22479,
+ "ebol": 22480,
+ "organisation": 22481,
+ "ären": 22482,
+ "▁YES": 22483,
+ "CUR": 22484,
+ "▁началь": 22485,
+ "▁постро": 22486,
+ "▁Luigi": 22487,
+ "▁caching": 22488,
+ "preventDefault": 22489,
+ "amd": 22490,
+ "▁Vit": 22491,
+ "subst": 22492,
+ "▁строи": 22493,
+ "▁Campion": 22494,
+ "chr": 22495,
+ "фере": 22496,
+ "▁Список": 22497,
+ "NF": 22498,
+ "▁cím": 22499,
+ "▁hé": 22500,
+ "rebbe": 22501,
+ "ocy": 22502,
+ "below": 22503,
+ "▁bylo": 22504,
+ "▁Уи": 22505,
+ "▁\\({\\": 22506,
+ "▁`:": 22507,
+ "giore": 22508,
+ "San": 22509,
+ "▁Gate": 22510,
+ "▁вс": 22511,
+ "▁olimp": 22512,
+ "▁Matrix": 22513,
+ "▁hearing": 22514,
+ "rii": 22515,
+ "tfrac": 22516,
+ "▁allemand": 22517,
+ "▁Vue": 22518,
+ "лн": 22519,
+ "▁compiling": 22520,
+ "▁Ens": 22521,
+ "▁investigation": 22522,
+ "▁Ax": 22523,
+ "▁chars": 22524,
+ "▁targets": 22525,
+ "▁loud": 22526,
+ "usement": 22527,
+ "▁Nether": 22528,
+ "commerce": 22529,
+ "IGHT": 22530,
+ "ocoa": 22531,
+ "ifecycle": 22532,
+ "▁Leo": 22533,
+ "priv": 22534,
+ "▁goods": 22535,
+ "adamente": 22536,
+ "Austral": 22537,
+ "▁reboot": 22538,
+ "Gest": 22539,
+ "▁representations": 22540,
+ "ceu": 22541,
+ "▁doctrine": 22542,
+ "cers": 22543,
+ "▁Krak": 22544,
+ "▁advoc": 22545,
+ "▁squadra": 22546,
+ "▁arbeitete": 22547,
+ "üst": 22548,
+ "▁pill": 22549,
+ "Answer": 22550,
+ "▁квіт": 22551,
+ "▁Wa": 22552,
+ "umann": 22553,
+ "▁Dynam": 22554,
+ "Famil": 22555,
+ "▁tennis": 22556,
+ "▁Engineering": 22557,
+ "▁circles": 22558,
+ "▁Maryland": 22559,
+ "▁besta": 22560,
+ "▁bases": 22561,
+ "▁znajdu": 22562,
+ "ктора": 22563,
+ "▁arrest": 22564,
+ "лер": 22565,
+ "▁Gia": 22566,
+ "▁remarkable": 22567,
+ "▁могу": 22568,
+ "▁Supreme": 22569,
+ "▁`%": 22570,
+ "dor": 22571,
+ "▁aujourd": 22572,
+ "▁wis": 22573,
+ "WIDTH": 22574,
+ "▁misma": 22575,
+ "▁fluid": 22576,
+ "▁petite": 22577,
+ "▁Tow": 22578,
+ "Registry": 22579,
+ "emed": 22580,
+ "▁Wisconsin": 22581,
+ "▁Racing": 22582,
+ "▁registration": 22583,
+ "/%": 22584,
+ "third": 22585,
+ "▁monuments": 22586,
+ "чей": 22587,
+ "▁jet": 22588,
+ "▁Urban": 22589,
+ "álva": 22590,
+ "▁milieu": 22591,
+ "▁possess": 22592,
+ "▁germ": 22593,
+ "dependencies": 22594,
+ "▁enemies": 22595,
+ "▁samen": 22596,
+ "▁Werner": 22597,
+ "▁hizo": 22598,
+ "▁td": 22599,
+ "▁yesterday": 22600,
+ "▁Ад": 22601,
+ "▁hasn": 22602,
+ "cellation": 22603,
+ "ování": 22604,
+ "lika": 22605,
+ "Week": 22606,
+ "▁Ing": 22607,
+ "▁Email": 22608,
+ "▁mètres": 22609,
+ "▁OCLC": 22610,
+ "▁amongst": 22611,
+ "▁splend": 22612,
+ "fur": 22613,
+ "antics": 22614,
+ "▁XXX": 22615,
+ "▁группы": 22616,
+ "lach": 22617,
+ "▁cousin": 22618,
+ "▁invariant": 22619,
+ "ђу": 22620,
+ "▁Beispiel": 22621,
+ "▁harder": 22622,
+ "▁bell": 22623,
+ "▁orch": 22624,
+ "tb": 22625,
+ "Footnote": 22626,
+ "regon": 22627,
+ "Martin": 22628,
+ "▁incon": 22629,
+ "▁attacked": 22630,
+ "_{-": 22631,
+ "▁Tras": 22632,
+ "party": 22633,
+ "iteit": 22634,
+ "▁saint": 22635,
+ "rások": 22636,
+ "▁containers": 22637,
+ "Mo": 22638,
+ "▁Sn": 22639,
+ "quantity": 22640,
+ "▁ras": 22641,
+ "▁Canal": 22642,
+ "ccion": 22643,
+ "uvo": 22644,
+ "▁idx": 22645,
+ "typename": 22646,
+ "▁Rugby": 22647,
+ "▁Seems": 22648,
+ "▁transmit": 22649,
+ "▁Präsident": 22650,
+ "зне": 22651,
+ "▁Baker": 22652,
+ "inth": 22653,
+ "▁több": 22654,
+ "verein": 22655,
+ "▁especie": 22656,
+ ",(": 22657,
+ "▁téc": 22658,
+ "▁WITH": 22659,
+ "▁unos": 22660,
+ "▁politics": 22661,
+ "createElement": 22662,
+ "▁stats": 22663,
+ "▁Tennessee": 22664,
+ "▁Bedeutung": 22665,
+ "▁Screen": 22666,
+ "▁Straße": 22667,
+ "anze": 22668,
+ "▁partly": 22669,
+ "manuel": 22670,
+ "olation": 22671,
+ "horizontal": 22672,
+ "érieure": 22673,
+ "ampio": 22674,
+ "▁струк": 22675,
+ "Weight": 22676,
+ "Land": 22677,
+ "poly": 22678,
+ "▁Dak": 22679,
+ "▁Assume": 22680,
+ "\".$": 22681,
+ "▁casi": 22682,
+ "▁gross": 22683,
+ "▁entertain": 22684,
+ "▁década": 22685,
+ "'.$": 22686,
+ "encer": 22687,
+ "▁guaranteed": 22688,
+ "]$.": 22689,
+ "лися": 22690,
+ "▁acceptable": 22691,
+ "raise": 22692,
+ "irus": 22693,
+ "weit": 22694,
+ "▁Ана": 22695,
+ "▁hills": 22696,
+ "ipage": 22697,
+ "BIT": 22698,
+ "▁nucle": 22699,
+ "▁utilis": 22700,
+ "CAA": 22701,
+ "ènes": 22702,
+ "▁Schweiz": 22703,
+ "▁AA": 22704,
+ "ninger": 22705,
+ "▁bands": 22706,
+ "▁tender": 22707,
+ "som": 22708,
+ "Warning": 22709,
+ "▁Bischof": 22710,
+ "▁Arc": 22711,
+ "▁Woman": 22712,
+ "▁transmission": 22713,
+ "чни": 22714,
+ "istre": 22715,
+ "BY": 22716,
+ "▁SI": 22717,
+ "▁Пар": 22718,
+ "▁}).": 22719,
+ "▁presenta": 22720,
+ "▁René": 22721,
+ "▁happiness": 22722,
+ "▁Punk": 22723,
+ "cols": 22724,
+ "▁Desde": 22725,
+ "рёх": 22726,
+ "▁мона": 22727,
+ "▁scratch": 22728,
+ "▁tcp": 22729,
+ "êtes": 22730,
+ "itated": 22731,
+ "▁diferen": 22732,
+ "geh": 22733,
+ "nahmen": 22734,
+ "Пе": 22735,
+ "cki": 22736,
+ "▁Teatro": 22737,
+ "▁Remember": 22738,
+ "▁fright": 22739,
+ "▁Yam": 22740,
+ "western": 22741,
+ "leted": 22742,
+ "▁встре": 22743,
+ "▁település": 22744,
+ "зин": 22745,
+ "▁Quant": 22746,
+ "▁supre": 22747,
+ "ája": 22748,
+ "дія": 22749,
+ "▁carrera": 22750,
+ "kret": 22751,
+ "para": 22752,
+ "▁SUM": 22753,
+ "▁pit": 22754,
+ "źdz": 22755,
+ "éo": 22756,
+ "рення": 22757,
+ "▁Chor": 22758,
+ "▁voix": 22759,
+ "▁executive": 22760,
+ "▁allerdings": 22761,
+ "Maybe": 22762,
+ "▁день": 22763,
+ "▁flying": 22764,
+ "▁parliament": 22765,
+ "ждан": 22766,
+ "▁fram": 22767,
+ "▁жовт": 22768,
+ "▁ugly": 22769,
+ "▁буду": 22770,
+ "igny": 22771,
+ "\\|_{": 22772,
+ "▁bitter": 22773,
+ "sce": 22774,
+ "▁pole": 22775,
+ "Verlag": 22776,
+ "▁totalité": 22777,
+ "▁foundation": 22778,
+ "jt": 22779,
+ "▁slice": 22780,
+ "ifique": 22781,
+ "▁integrate": 22782,
+ "strij": 22783,
+ "▁asympt": 22784,
+ "▁ему": 22785,
+ "▁perturb": 22786,
+ "▁Flow": 22787,
+ "jboss": 22788,
+ "RIG": 22789,
+ "▁Aless": 22790,
+ "XXX": 22791,
+ "▁summ": 22792,
+ "sqlite": 22793,
+ "▁cheer": 22794,
+ "prob": 22795,
+ "▁GPU": 22796,
+ "ził": 22797,
+ "(*)": 22798,
+ "▁induct": 22799,
+ "RAY": 22800,
+ "blatt": 22801,
+ "questa": 22802,
+ "oru": 22803,
+ "▁Inside": 22804,
+ "▁McG": 22805,
+ "▁Nep": 22806,
+ "мп": 22807,
+ "▁inve": 22808,
+ "▁Animal": 22809,
+ "▁sob": 22810,
+ "ított": 22811,
+ "loyment": 22812,
+ "▁bund": 22813,
+ "Station": 22814,
+ "▁BEGIN": 22815,
+ "▁partiellement": 22816,
+ "igg": 22817,
+ "estore": 22818,
+ "▁coinc": 22819,
+ "▁Sommer": 22820,
+ "▁md": 22821,
+ "▁locked": 22822,
+ "mathchar": 22823,
+ "arma": 22824,
+ "pent": 22825,
+ "arium": 22826,
+ "▁ears": 22827,
+ "▁Songs": 22828,
+ "▁similarly": 22829,
+ "▁literally": 22830,
+ "▁inches": 22831,
+ "▁affection": 22832,
+ "lp": 22833,
+ "▁concluded": 22834,
+ "▁муніципалі": 22835,
+ "▁памя": 22836,
+ "estaur": 22837,
+ "▁Josh": 22838,
+ "▁Fritz": 22839,
+ "DBC": 22840,
+ "дён": 22841,
+ "posa": 22842,
+ "▁golden": 22843,
+ "▁pc": 22844,
+ "▁comte": 22845,
+ "▁Ziel": 22846,
+ "▁présente": 22847,
+ "marks": 22848,
+ "igneur": 22849,
+ "▁Drive": 22850,
+ "▁neglect": 22851,
+ "▁rozp": 22852,
+ "▁Five": 22853,
+ "spaces": 22854,
+ "▁Medi": 22855,
+ "▁existed": 22856,
+ "▁była": 22857,
+ "джи": 22858,
+ "▁frente": 22859,
+ "тник": 22860,
+ "odd": 22861,
+ "▁answering": 22862,
+ "bian": 22863,
+ "▁Eugen": 22864,
+ "▁Publications": 22865,
+ "▁Dia": 22866,
+ "lá": 22867,
+ "▁'_": 22868,
+ "▁recuper": 22869,
+ "ому": 22870,
+ "▁Append": 22871,
+ "obar": 22872,
+ "▁employees": 22873,
+ "▁compens": 22874,
+ "emetery": 22875,
+ "▁элект": 22876,
+ "MON": 22877,
+ "olin": 22878,
+ "▁historic": 22879,
+ "his": 22880,
+ "ąd": 22881,
+ "nm": 22882,
+ "▁Goth": 22883,
+ "▁stress": 22884,
+ "▁partecip": 22885,
+ "▁Aw": 22886,
+ "▁sar": 22887,
+ "▁hu": 22888,
+ "▁matplotlib": 22889,
+ "▁Myst": 22890,
+ "();`": 22891,
+ "schein": 22892,
+ "Longrightarrow": 22893,
+ "▁ря": 22894,
+ "▁Isra": 22895,
+ "[^": 22896,
+ "nou": 22897,
+ "▁synd": 22898,
+ "working": 22899,
+ "▁Nation": 22900,
+ "▁Pent": 22901,
+ "▁klass": 22902,
+ "▁applicable": 22903,
+ "▁Diam": 22904,
+ "▁brasile": 22905,
+ "▁pac": 22906,
+ "▁Height": 22907,
+ "Put": 22908,
+ "▁intro": 22909,
+ "▁unusual": 22910,
+ "nas": 22911,
+ "▁Gebäude": 22912,
+ "▁beam": 22913,
+ "▁Rect": 22914,
+ "▁Primera": 22915,
+ "▁haut": 22916,
+ "▁trait": 22917,
+ "prüft": 22918,
+ "inación": 22919,
+ "▁configurations": 22920,
+ "▁gilt": 22921,
+ "▁territoire": 22922,
+ "hez": 22923,
+ "▁alte": 22924,
+ "relative": 22925,
+ "Excel": 22926,
+ "▁Wright": 22927,
+ "GV": 22928,
+ "поли": 22929,
+ "Quant": 22930,
+ "▁gauge": 22931,
+ "▁multiply": 22932,
+ "ASS": 22933,
+ "ственно": 22934,
+ "ану": 22935,
+ "▁jeden": 22936,
+ "▁literary": 22937,
+ "▁Dro": 22938,
+ "▁advise": 22939,
+ "itzen": 22940,
+ "▁disag": 22941,
+ "website": 22942,
+ "▁дія": 22943,
+ "▁observer": 22944,
+ "▁január": 22945,
+ "vě": 22946,
+ "kup": 22947,
+ "▁Ses": 22948,
+ "▁wojew": 22949,
+ "▁stages": 22950,
+ "▁времени": 22951,
+ "łuż": 22952,
+ "нос": 22953,
+ "Download": 22954,
+ "ipo": 22955,
+ "▁graf": 22956,
+ "▁робо": 22957,
+ "▁Nikol": 22958,
+ "▁fic": 22959,
+ "▁joining": 22960,
+ "▁diversos": 22961,
+ "▁LIKE": 22962,
+ "▁Fitz": 22963,
+ "▁dimin": 22964,
+ "▁distrib": 22965,
+ "Sam": 22966,
+ "koz": 22967,
+ "▁alphabet": 22968,
+ "oser": 22969,
+ "OUR": 22970,
+ "uka": 22971,
+ "кая": 22972,
+ "▁steel": 22973,
+ "▁`--": 22974,
+ "▁tener": 22975,
+ "marker": 22976,
+ "▁Heaven": 22977,
+ "newcommand": 22978,
+ "▁prisoners": 22979,
+ "▁Knight": 22980,
+ "▁presents": 22981,
+ "▁questi": 22982,
+ "▁trains": 22983,
+ "opera": 22984,
+ "▁Linear": 22985,
+ "▁ME": 22986,
+ "▁Buc": 22987,
+ "Leg": 22988,
+ "▁agua": 22989,
+ "▁Griff": 22990,
+ "olg": 22991,
+ "dst": 22992,
+ ".\r": 22993,
+ "▁persones": 22994,
+ "Mal": 22995,
+ "бере": 22996,
+ "folge": 22997,
+ "▁acab": 22998,
+ "ctu": 22999,
+ "ptic": 23000,
+ "▁Navigation": 23001,
+ "Russ": 23002,
+ "галь": 23003,
+ "▁Ful": 23004,
+ "▁має": 23005,
+ "чная": 23006,
+ "wner": 23007,
+ "contra": 23008,
+ "▁joueur": 23009,
+ "▁Jess": 23010,
+ "▁renew": 23011,
+ "▁lap": 23012,
+ "▁casting": 23013,
+ "gal": 23014,
+ "▁tématu": 23015,
+ "▁называ": 23016,
+ "зах": 23017,
+ "чне": 23018,
+ ")-\\": 23019,
+ "▁часто": 23020,
+ "}$-": 23021,
+ "▁licz": 23022,
+ "▁emot": 23023,
+ "harm": 23024,
+ "▁occasionally": 23025,
+ "▁horror": 23026,
+ "east": 23027,
+ "▁printer": 23028,
+ "aran": 23029,
+ "▁Mississ": 23030,
+ "follow": 23031,
+ "▁Barry": 23032,
+ "▁investigate": 23033,
+ "gow": 23034,
+ "▁Americans": 23035,
+ "Since": 23036,
+ "▁відо": 23037,
+ "▁reun": 23038,
+ "osci": 23039,
+ "▁Chapter": 23040,
+ "▁bay": 23041,
+ "роме": 23042,
+ "ethe": 23043,
+ "édie": 23044,
+ "comot": 23045,
+ "▁miejscowo": 23046,
+ "▁studierte": 23047,
+ "ouvert": 23048,
+ "▁кур": 23049,
+ "▁DESC": 23050,
+ "▁touched": 23051,
+ "▁Jerry": 23052,
+ "uese": 23053,
+ "лище": 23054,
+ "authentication": 23055,
+ "▁colle": 23056,
+ "heart": 23057,
+ "▁regiment": 23058,
+ "cribed": 23059,
+ "▁Боль": 23060,
+ "▁проис": 23061,
+ "ceae": 23062,
+ "▁masses": 23063,
+ "▁scrolling": 23064,
+ "usto": 23065,
+ "SW": 23066,
+ "ovat": 23067,
+ "▁grâce": 23068,
+ "▁Архив": 23069,
+ "▁Север": 23070,
+ "avait": 23071,
+ "▁Marshall": 23072,
+ "▁HashMap": 23073,
+ "acon": 23074,
+ "ücken": 23075,
+ "[])": 23076,
+ "▁evangel": 23077,
+ "etzung": 23078,
+ "ttemberg": 23079,
+ "sters": 23080,
+ "TM": 23081,
+ "▁литера": 23082,
+ "quot": 23083,
+ "Pred": 23084,
+ "▁werk": 23085,
+ "▁haber": 23086,
+ "lava": 23087,
+ "vous": 23088,
+ "▁Late": 23089,
+ "cycle": 23090,
+ "тирова": 23091,
+ "▁проду": 23092,
+ "▁populations": 23093,
+ "▁Yan": 23094,
+ "Prefix": 23095,
+ "actéristiques": 23096,
+ "+'": 23097,
+ "()`](": 23098,
+ "▁Ль": 23099,
+ "филь": 23100,
+ "▁жизни": 23101,
+ "ftp": 23102,
+ "▁всех": 23103,
+ "▁gdzie": 23104,
+ "▁videa": 23105,
+ "oauth": 23106,
+ "▁pid": 23107,
+ "ům": 23108,
+ "▁pesso": 23109,
+ "▁tracking": 23110,
+ "izin": 23111,
+ "▁Morris": 23112,
+ "щий": 23113,
+ "▁Provinz": 23114,
+ "▁Mitte": 23115,
+ "▁artificial": 23116,
+ "brázky": 23117,
+ "▁дости": 23118,
+ "▁restored": 23119,
+ "▁communicate": 23120,
+ "agit": 23121,
+ "Recogn": 23122,
+ "▁lon": 23123,
+ "▁заня": 23124,
+ "▁Argument": 23125,
+ "flush": 23126,
+ "мана": 23127,
+ "seconds": 23128,
+ "UC": 23129,
+ "▁Ruth": 23130,
+ "▁tub": 23131,
+ "▁Bret": 23132,
+ "▁Pere": 23133,
+ "▁responsibility": 23134,
+ "ńczy": 23135,
+ "▁environments": 23136,
+ "kee": 23137,
+ "▁groot": 23138,
+ "▁painted": 23139,
+ "▁Éditions": 23140,
+ "cpy": 23141,
+ "árt": 23142,
+ "lichkeit": 23143,
+ "arda": 23144,
+ "Batch": 23145,
+ "▁Leopold": 23146,
+ "reason": 23147,
+ "noreferrer": 23148,
+ "sens": 23149,
+ "▁rocks": 23150,
+ "▁Hitler": 23151,
+ "лат": 23152,
+ "▁quoted": 23153,
+ "▁колле": 23154,
+ "▁уров": 23155,
+ "bag": 23156,
+ ".\")": 23157,
+ "▁ML": 23158,
+ "▁komt": 23159,
+ "▁[_": 23160,
+ "▁spectral": 23161,
+ "edo": 23162,
+ "▁insieme": 23163,
+ "▁suffering": 23164,
+ "slider": 23165,
+ "▁Kennedy": 23166,
+ "olate": 23167,
+ "▁Patri": 23168,
+ "зии": 23169,
+ "OH": 23170,
+ "▁теа": 23171,
+ "▁права": 23172,
+ "мах": 23173,
+ "rewrite": 23174,
+ "▁Einsatz": 23175,
+ "external": 23176,
+ "holds": 23177,
+ "▁Places": 23178,
+ "atype": 23179,
+ "▁vulner": 23180,
+ "▁abandoned": 23181,
+ "Origin": 23182,
+ "▁maximal": 23183,
+ "AAAA": 23184,
+ "▁Baseball": 23185,
+ "▁Close": 23186,
+ "▁painter": 23187,
+ "▁assigning": 23188,
+ "NB": 23189,
+ "blast": 23190,
+ "▁Künstler": 23191,
+ ")](": 23192,
+ "fach": 23193,
+ "▁Constantin": 23194,
+ "okes": 23195,
+ "▁nobody": 23196,
+ "▁subtract": 23197,
+ "▁fosse": 23198,
+ "▁certific": 23199,
+ "▁muse": 23200,
+ "/),": 23201,
+ "▁Profil": 23202,
+ "▁proxim": 23203,
+ "▁Jerusalem": 23204,
+ "▁simplicity": 23205,
+ "▁wsz": 23206,
+ "NUMBER": 23207,
+ "uttavia": 23208,
+ "UITableView": 23209,
+ "ichter": 23210,
+ "жан": 23211,
+ "▁Lav": 23212,
+ "itchen": 23213,
+ "▁Чем": 23214,
+ "Tu": 23215,
+ "▁geom": 23216,
+ "▁zvuky": 23217,
+ "▁Survey": 23218,
+ "ANCE": 23219,
+ "▁encrypted": 23220,
+ "prof": 23221,
+ "▁dare": 23222,
+ "▁Loren": 23223,
+ "тв": 23224,
+ "▁Алек": 23225,
+ "▁computers": 23226,
+ "▁expectation": 23227,
+ "▁substantial": 23228,
+ "▁Дми": 23229,
+ "▁`{": 23230,
+ "▁дра": 23231,
+ "ubble": 23232,
+ "▁performs": 23233,
+ "▁Krieg": 23234,
+ "▁incoming": 23235,
+ "▁Classification": 23236,
+ "WebView": 23237,
+ "▁episodes": 23238,
+ "apper": 23239,
+ "äufig": 23240,
+ "▁giov": 23241,
+ "▁Depart": 23242,
+ "бора": 23243,
+ "edly": 23244,
+ "ospod": 23245,
+ "▁ptr": 23246,
+ "▁dátum": 23247,
+ "▁estimation": 23248,
+ "icole": 23249,
+ "▁----": 23250,
+ "▁princes": 23251,
+ "HEAD": 23252,
+ "▁diffusion": 23253,
+ "▁drie": 23254,
+ "▁Ada": 23255,
+ "нице": 23256,
+ "nginx": 23257,
+ "shal": 23258,
+ "▁februari": 23259,
+ "▁Tat": 23260,
+ "looking": 23261,
+ "kund": 23262,
+ "▁Dean": 23263,
+ "mongodb": 23264,
+ "вших": 23265,
+ "▁Aur": 23266,
+ "▁Flora": 23267,
+ "▁Studios": 23268,
+ "ције": 23269,
+ "eil": 23270,
+ "Install": 23271,
+ "▁franch": 23272,
+ "▁HMS": 23273,
+ "▁practices": 23274,
+ "lej": 23275,
+ "dale": 23276,
+ "▁poste": 23277,
+ "▁Hels": 23278,
+ "▁reliable": 23279,
+ "ździer": 23280,
+ "▁verse": 23281,
+ "ermeister": 23282,
+ "▁quit": 23283,
+ "ético": 23284,
+ "ilis": 23285,
+ "edor": 23286,
+ "▁Cultural": 23287,
+ "дже": 23288,
+ "▁liked": 23289,
+ "▁mongodb": 23290,
+ "▁Broadway": 23291,
+ "▁IR": 23292,
+ "eszt": 23293,
+ "hov": 23294,
+ "▁míst": 23295,
+ "reiche": 23296,
+ "▁kB": 23297,
+ "стом": 23298,
+ "▁SQLite": 23299,
+ "▁torneo": 23300,
+ "\\.": 23301,
+ "Ord": 23302,
+ "▁Administration": 23303,
+ "▁зда": 23304,
+ "▁Hinter": 23305,
+ "▁Via": 23306,
+ "Decimal": 23307,
+ "orious": 23308,
+ "▁nécessaire": 23309,
+ "wx": 23310,
+ "▁tej": 23311,
+ "▁tema": 23312,
+ "Obrázky": 23313,
+ "рите": 23314,
+ "▁builds": 23315,
+ "▁laten": 23316,
+ "▁гг": 23317,
+ "Visibility": 23318,
+ "läu": 23319,
+ "▁sechs": 23320,
+ "▁луч": 23321,
+ "cera": 23322,
+ "Could": 23323,
+ "▁traject": 23324,
+ "}}^{": 23325,
+ "▁Japon": 23326,
+ "another": 23327,
+ "IK": 23328,
+ "▁belonging": 23329,
+ "▁facilities": 23330,
+ "▁Daily": 23331,
+ "▁dece": 23332,
+ "intro": 23333,
+ "▁случа": 23334,
+ "Namespace": 23335,
+ "▁Bak": 23336,
+ "locale": 23337,
+ "UG": 23338,
+ "=${": 23339,
+ "▁compañ": 23340,
+ "jąc": 23341,
+ "▁arithmetic": 23342,
+ "forum": 23343,
+ "▁porta": 23344,
+ "onk": 23345,
+ "▁gender": 23346,
+ "▁expects": 23347,
+ "бка": 23348,
+ "▁nak": 23349,
+ "▁Grace": 23350,
+ "▁stro": 23351,
+ "ividual": 23352,
+ "▁COM": 23353,
+ "▁Farm": 23354,
+ "▁canton": 23355,
+ "тому": 23356,
+ "javax": 23357,
+ "сей": 23358,
+ "▁briefly": 23359,
+ "Face": 23360,
+ "rotate": 23361,
+ "constant": 23362,
+ "▁gallery": 23363,
+ "astro": 23364,
+ "allery": 23365,
+ "▁DJ": 23366,
+ "charge": 23367,
+ "ходить": 23368,
+ "Cent": 23369,
+ "\\\",": 23370,
+ "▁donna": 23371,
+ "arca": 23372,
+ "lade": 23373,
+ "zin": 23374,
+ "▁Ned": 23375,
+ "▁hosting": 23376,
+ "idor": 23377,
+ "itative": 23378,
+ "igs": 23379,
+ "▁пря": 23380,
+ "▁ticket": 23381,
+ "▁studying": 23382,
+ "▁designer": 23383,
+ "lapsed": 23384,
+ "▁laat": 23385,
+ "▁dix": 23386,
+ "▁integrated": 23387,
+ "▁informed": 23388,
+ "▁behave": 23389,
+ "▁labour": 23390,
+ "estellt": 23391,
+ "calendar": 23392,
+ "▁killing": 23393,
+ "▁twitter": 23394,
+ "iae": 23395,
+ "▁historique": 23396,
+ "DEFAULT": 23397,
+ "iała": 23398,
+ "▁theoretical": 23399,
+ "▁unders": 23400,
+ "ляет": 23401,
+ "atan": 23402,
+ "▁surname": 23403,
+ "▁intercept": 23404,
+ "гласно": 23405,
+ "▁општини": 23406,
+ "▁tired": 23407,
+ "▁Beth": 23408,
+ "▁административ": 23409,
+ "Li": 23410,
+ "▁Тур": 23411,
+ "▁Scanner": 23412,
+ "▁Stern": 23413,
+ "▁вместе": 23414,
+ "▁reporting": 23415,
+ "▁sull": 23416,
+ "цией": 23417,
+ "berts": 23418,
+ "ogonal": 23419,
+ "ők": 23420,
+ "▁ipsum": 23421,
+ "▁seulement": 23422,
+ "▁Seiten": 23423,
+ "wordpress": 23424,
+ "▁featuring": 23425,
+ "istischen": 23426,
+ "jub": 23427,
+ "▁étr": 23428,
+ "▁tea": 23429,
+ "▁adapted": 23430,
+ "▁scales": 23431,
+ "▁nan": 23432,
+ "getValue": 23433,
+ "▁Blues": 23434,
+ "acles": 23435,
+ "▁stati": 23436,
+ "▁entitled": 23437,
+ "▁Ralph": 23438,
+ "gravity": 23439,
+ "▁entrepr": 23440,
+ "któber": 23441,
+ "limat": 23442,
+ "lis": 23443,
+ "Demo": 23444,
+ "relation": 23445,
+ "▁nep": 23446,
+ "prowad": 23447,
+ "itis": 23448,
+ "▁pup": 23449,
+ "nehmer": 23450,
+ "▁disappoint": 23451,
+ "▁etwas": 23452,
+ "annon": 23453,
+ "▁approved": 23454,
+ "▁clever": 23455,
+ "Loading": 23456,
+ "▁verz": 23457,
+ "resse": 23458,
+ "▁inspir": 23459,
+ "▁sampling": 23460,
+ "▁Bek": 23461,
+ "})$.": 23462,
+ "▁грома": 23463,
+ "▁specie": 23464,
+ "▁repub": 23465,
+ "▁loader": 23466,
+ "▁erf": 23467,
+ "▁shoulder": 23468,
+ "rais": 23469,
+ "▁мате": 23470,
+ "▁Month": 23471,
+ "Scene": 23472,
+ "▁blocking": 23473,
+ "▁ocean": 23474,
+ "geben": 23475,
+ "▁Kilometer": 23476,
+ "▁bedeut": 23477,
+ "▁Mix": 23478,
+ "fmt": 23479,
+ "▁Norweg": 23480,
+ "▁IDs": 23481,
+ "parallel": 23482,
+ "▁anticip": 23483,
+ "▁revis": 23484,
+ "хан": 23485,
+ "▁свет": 23486,
+ "CASE": 23487,
+ "▁führt": 23488,
+ "▁atomic": 23489,
+ "▁darkness": 23490,
+ "▁Fußballspieler": 23491,
+ "▁Жи": 23492,
+ "quisition": 23493,
+ "▁Sieg": 23494,
+ "Circ": 23495,
+ "▁cientí": 23496,
+ "nelle": 23497,
+ "SHA": 23498,
+ "▁urb": 23499,
+ "▁ksi": 23500,
+ "leqslant": 23501,
+ "▁фрон": 23502,
+ "▁defect": 23503,
+ "▁rá": 23504,
+ "▁stronger": 23505,
+ "▁pł": 23506,
+ "▁communities": 23507,
+ "нина": 23508,
+ "enas": 23509,
+ "iennent": 23510,
+ "▁safely": 23511,
+ "▁тя": 23512,
+ "▁benchmark": 23513,
+ "▁Braun": 23514,
+ "methods": 23515,
+ "argument": 23516,
+ "vos": 23517,
+ "obox": 23518,
+ "рови": 23519,
+ "▁recherche": 23520,
+ "mn": 23521,
+ "▁brings": 23522,
+ "machine": 23523,
+ "CESS": 23524,
+ "hosts": 23525,
+ "▁NY": 23526,
+ "Autow": 23527,
+ "▁современ": 23528,
+ "▁Gary": 23529,
+ "▁sensor": 23530,
+ "▁documented": 23531,
+ "▁prendre": 23532,
+ "▁peer": 23533,
+ "enix": 23534,
+ "hai": 23535,
+ "arbe": 23536,
+ "цент": 23537,
+ "_(": 23538,
+ "▁URI": 23539,
+ "ева": 23540,
+ "▁Regie": 23541,
+ "▁Monument": 23542,
+ "▁onderwerp": 23543,
+ "Bag": 23544,
+ "tit": 23545,
+ "▁stir": 23546,
+ "▁nerv": 23547,
+ "сторія": 23548,
+ "▁sov": 23549,
+ "▁writers": 23550,
+ "▁sorts": 23551,
+ "absolute": 23552,
+ "▁difficulties": 23553,
+ "▁parlament": 23554,
+ "▁IEnumerable": 23555,
+ "▁dissol": 23556,
+ "▁CHECK": 23557,
+ "arina": 23558,
+ "inburgh": 23559,
+ "DM": 23560,
+ "▁eind": 23561,
+ "▁budget": 23562,
+ "▁certains": 23563,
+ "▁första": 23564,
+ "anja": 23565,
+ "▁годов": 23566,
+ "▁тек": 23567,
+ "▁Duch": 23568,
+ "gui": 23569,
+ "▁Teams": 23570,
+ "▁многи": 23571,
+ "Marie": 23572,
+ "Integr": 23573,
+ "ThreadPool": 23574,
+ "rust": 23575,
+ "ík": 23576,
+ "%\"": 23577,
+ "enf": 23578,
+ "spl": 23579,
+ "▁begun": 23580,
+ "lou": 23581,
+ "▁RewriteRule": 23582,
+ "tuple": 23583,
+ "aneous": 23584,
+ "▁marine": 23585,
+ "attan": 23586,
+ "ikal": 23587,
+ "▁graduated": 23588,
+ "illé": 23589,
+ "▁прове": 23590,
+ "▁Роз": 23591,
+ "',\r": 23592,
+ "▁Pfarr": 23593,
+ "▁nivel": 23594,
+ "▁працю": 23595,
+ "music": 23596,
+ "▁setTimeout": 23597,
+ "ERS": 23598,
+ "▁Erik": 23599,
+ "pit": 23600,
+ "▁Хро": 23601,
+ "▁pił": 23602,
+ "▁peri": 23603,
+ "док": 23604,
+ "uszt": 23605,
+ "▁Bear": 23606,
+ "ClassName": 23607,
+ "▁Parlament": 23608,
+ "▁aix": 23609,
+ "▁invited": 23610,
+ "▁PATH": 23611,
+ "xter": 23612,
+ "▁Race": 23613,
+ "▁hecho": 23614,
+ "▁Tower": 23615,
+ "▁utf": 23616,
+ "actly": 23617,
+ "▁буде": 23618,
+ "▁angles": 23619,
+ "няя": 23620,
+ "ouvelles": 23621,
+ "▁climate": 23622,
+ "▁singing": 23623,
+ "▁navigate": 23624,
+ ">';": 23625,
+ "adows": 23626,
+ "▁leta": 23627,
+ "▁Sitz": 23628,
+ "▁partitions": 23629,
+ "▁dock": 23630,
+ "▁ży": 23631,
+ "▁allocate": 23632,
+ "▁benefits": 23633,
+ "▁nieder": 23634,
+ "xpath": 23635,
+ "meck": 23636,
+ "älle": 23637,
+ "▁coupling": 23638,
+ "жил": 23639,
+ "ForKey": 23640,
+ "argent": 23641,
+ "clou": 23642,
+ "▁instruments": 23643,
+ "▁enthus": 23644,
+ "▁még": 23645,
+ "▁Пав": 23646,
+ "▁Rach": 23647,
+ "-----": 23648,
+ "▁APIs": 23649,
+ "▁Vier": 23650,
+ "Cmd": 23651,
+ "itore": 23652,
+ "▁Cuba": 23653,
+ "▁dátummal": 23654,
+ "▁embedding": 23655,
+ "stdio": 23656,
+ "▁Gilbert": 23657,
+ "▁geprüft": 23658,
+ "▁stating": 23659,
+ "▁triggers": 23660,
+ "+=": 23661,
+ "▁spécial": 23662,
+ "▁deliber": 23663,
+ "мин": 23664,
+ "Produ": 23665,
+ "▁Stati": 23666,
+ "▁zus": 23667,
+ "ktionen": 23668,
+ "Dispatcher": 23669,
+ "idal": 23670,
+ "▁LP": 23671,
+ "optera": 23672,
+ "▁estar": 23673,
+ "▁значи": 23674,
+ "смо": 23675,
+ "ouses": 23676,
+ "engono": 23677,
+ "▁WPF": 23678,
+ "publish": 23679,
+ "▁teor": 23680,
+ "elif": 23681,
+ "▁erg": 23682,
+ "▁separation": 23683,
+ "Pan": 23684,
+ "▁Orchestra": 23685,
+ "Peter": 23686,
+ "bounds": 23687,
+ "▁Shakespeare": 23688,
+ "▁cantante": 23689,
+ "▁demi": 23690,
+ "▁Popular": 23691,
+ "фр": 23692,
+ "arring": 23693,
+ "цин": 23694,
+ "▁Ис": 23695,
+ "von": 23696,
+ "▁substitution": 23697,
+ "▁línea": 23698,
+ "\\}$.": 23699,
+ "como": 23700,
+ "▁важ": 23701,
+ "wagen": 23702,
+ "▁rarely": 23703,
+ "▁periods": 23704,
+ "glob": 23705,
+ "▁Frid": 23706,
+ "▁Terr": 23707,
+ "▁Release": 23708,
+ "Brainz": 23709,
+ "▁граф": 23710,
+ "DIS": 23711,
+ "compatible": 23712,
+ "▁poč": 23713,
+ "LIN": 23714,
+ "▁Källor": 23715,
+ "▁Arizona": 23716,
+ "ppy": 23717,
+ "Seq": 23718,
+ "▁Ain": 23719,
+ "▁Tourn": 23720,
+ "brow": 23721,
+ "▁Kör": 23722,
+ "▁ash": 23723,
+ "ogeneous": 23724,
+ "▁dialect": 23725,
+ "▁насеља": 23726,
+ "mysqli": 23727,
+ "цов": 23728,
+ "▁flor": 23729,
+ "▁фло": 23730,
+ "IAB": 23731,
+ "▁Within": 23732,
+ "^(": 23733,
+ "▁bois": 23734,
+ "▁tank": 23735,
+ "▁affili": 23736,
+ "▁hijo": 23737,
+ "▁Kate": 23738,
+ "▁Verl": 23739,
+ "▁Miami": 23740,
+ "▁typescript": 23741,
+ "њу": 23742,
+ "▁Vern": 23743,
+ "▁висо": 23744,
+ "iemann": 23745,
+ "▁coverage": 23746,
+ "brie": 23747,
+ "▁Starting": 23748,
+ "numpy": 23749,
+ "▁Jenkins": 23750,
+ "▁két": 23751,
+ "▁grup": 23752,
+ "▁Scient": 23753,
+ "▁interrupt": 23754,
+ "▁blob": 23755,
+ "ugel": 23756,
+ "▁Orth": 23757,
+ "abama": 23758,
+ "▁Bapt": 23759,
+ "ownik": 23760,
+ "▁быть": 23761,
+ "▁Julius": 23762,
+ "▁През": 23763,
+ "▁substitute": 23764,
+ "supported": 23765,
+ "chy": 23766,
+ "egyzetek": 23767,
+ "▁Performance": 23768,
+ "lessly": 23769,
+ "Constructor": 23770,
+ "▁extending": 23771,
+ "▁Muslim": 23772,
+ "Overflow": 23773,
+ "▁Jenn": 23774,
+ "▁produz": 23775,
+ "мії": 23776,
+ "▁países": 23777,
+ "▁eux": 23778,
+ "▁fate": 23779,
+ "ologe": 23780,
+ "ук": 23781,
+ "▁wobei": 23782,
+ "▁Sachsen": 23783,
+ "▁сайт": 23784,
+ "Models": 23785,
+ "▁Fast": 23786,
+ "besondere": 23787,
+ "▁FR": 23788,
+ "▁acon": 23789,
+ "▁Denkmal": 23790,
+ "▁anch": 23791,
+ "▁público": 23792,
+ "▁Tas": 23793,
+ "▁cand": 23794,
+ "▁paździer": 23795,
+ "▁Мон": 23796,
+ "▁versus": 23797,
+ "rut": 23798,
+ "GT": 23799,
+ "▁inserting": 23800,
+ "▁canad": 23801,
+ "єм": 23802,
+ "▁Metro": 23803,
+ "▁Herzog": 23804,
+ "Ignore": 23805,
+ "▁decrease": 23806,
+ "▁пун": 23807,
+ "▁Fischer": 23808,
+ "▁Mall": 23809,
+ "▁nörd": 23810,
+ "iostream": 23811,
+ "▁Luxemb": 23812,
+ "payload": 23813,
+ "▁Zeitung": 23814,
+ "▁modifying": 23815,
+ "▁Cher": 23816,
+ "▁Luci": 23817,
+ "nx": 23818,
+ "▁loose": 23819,
+ "▁topics": 23820,
+ "▁varied": 23821,
+ "▁pg": 23822,
+ "ajes": 23823,
+ "umm": 23824,
+ "Views": 23825,
+ "▁Beau": 23826,
+ "MAP": 23827,
+ "ipeline": 23828,
+ "▁Interest": 23829,
+ "arith": 23830,
+ "▁según": 23831,
+ "▁Gemeins": 23832,
+ "▁Attribute": 23833,
+ "community": 23834,
+ "▁центр": 23835,
+ "▁kilometer": 23836,
+ "▁économ": 23837,
+ "laration": 23838,
+ "▁къ": 23839,
+ "▁carriage": 23840,
+ "▁Lane": 23841,
+ "▁необ": 23842,
+ "kur": 23843,
+ "▁AF": 23844,
+ "INTER": 23845,
+ "))$": 23846,
+ "▁beide": 23847,
+ "destination": 23848,
+ "▁fonts": 23849,
+ "appendChild": 23850,
+ "▁MAR": 23851,
+ "▁gay": 23852,
+ "mil": 23853,
+ "lesh": 23854,
+ "èt": 23855,
+ "▁Wang": 23856,
+ "▁Years": 23857,
+ "▁Symbol": 23858,
+ "Live": 23859,
+ "quency": 23860,
+ "▁Users": 23861,
+ "▁Unicode": 23862,
+ "▁Sau": 23863,
+ "▁tons": 23864,
+ "▁Ні": 23865,
+ "▁краї": 23866,
+ "AXI": 23867,
+ "▁Pick": 23868,
+ "AI": 23869,
+ "▁hath": 23870,
+ "▁ainda": 23871,
+ "▁papa": 23872,
+ "▁Censo": 23873,
+ "▁Bald": 23874,
+ "▁Насеље": 23875,
+ "▁simulations": 23876,
+ "▁jaren": 23877,
+ "▁inherited": 23878,
+ "▁той": 23879,
+ "▁feels": 23880,
+ "ression": 23881,
+ "▁október": 23882,
+ "bid": 23883,
+ "ási": 23884,
+ "▁muss": 23885,
+ "ventory": 23886,
+ "▁meist": 23887,
+ "▁bore": 23888,
+ "▁slider": 23889,
+ "дели": 23890,
+ "\\;": 23891,
+ "▁extracted": 23892,
+ "кур": 23893,
+ "Edge": 23894,
+ "▁perf": 23895,
+ "▁Brigade": 23896,
+ "▁град": 23897,
+ "ienie": 23898,
+ "▁Norden": 23899,
+ "▁cancer": 23900,
+ "\"/": 23901,
+ "Cur": 23902,
+ "▁Сере": 23903,
+ "▁liquid": 23904,
+ "structure": 23905,
+ "▁choosing": 23906,
+ "▁Perl": 23907,
+ "Side": 23908,
+ "üs": 23909,
+ "ритор": 23910,
+ "▁kost": 23911,
+ "▁packets": 23912,
+ "▁которого": 23913,
+ "▁Comun": 23914,
+ "▁fingers": 23915,
+ "ográfica": 23916,
+ ">:": 23917,
+ "▁championnat": 23918,
+ "▁blieb": 23919,
+ "▁Situ": 23920,
+ "▁suic": 23921,
+ "andis": 23922,
+ "Fre": 23923,
+ "▁Conc": 23924,
+ "▁republic": 23925,
+ "▁armed": 23926,
+ "▁hell": 23927,
+ "▁hög": 23928,
+ "ragma": 23929,
+ "▁ense": 23930,
+ "▁acres": 23931,
+ "▁Від": 23932,
+ "▁Reform": 23933,
+ "MainActivity": 23934,
+ "keeper": 23935,
+ "erb": 23936,
+ "▁monaster": 23937,
+ "subsubsection": 23938,
+ "▁Див": 23939,
+ "▁creature": 23940,
+ "▁indicating": 23941,
+ "▁urls": 23942,
+ "▁kein": 23943,
+ "образ": 23944,
+ "pick": 23945,
+ "▁Admir": 23946,
+ "▁oldest": 23947,
+ "▁muz": 23948,
+ "▁contradiction": 23949,
+ "▁probabil": 23950,
+ "illiant": 23951,
+ "▁pav": 23952,
+ "▁papel": 23953,
+ "ubs": 23954,
+ "▁жена": 23955,
+ "AML": 23956,
+ "▁recip": 23957,
+ "▁COL": 23958,
+ "added": 23959,
+ "▁clue": 23960,
+ "▁Ukraine": 23961,
+ "▁jelent": 23962,
+ "чень": 23963,
+ "▁mathematics": 23964,
+ "Accept": 23965,
+ "▁сот": 23966,
+ "▁север": 23967,
+ "▁isolated": 23968,
+ "▁поя": 23969,
+ "wür": 23970,
+ "Router": 23971,
+ "CAT": 23972,
+ "rgb": 23973,
+ "▁Lov": 23974,
+ "mutable": 23975,
+ "▁Wes": 23976,
+ "▁Italien": 23977,
+ "Drag": 23978,
+ "enium": 23979,
+ "atting": 23980,
+ "tcp": 23981,
+ "▁erfolgte": 23982,
+ "▁Beit": 23983,
+ "гато": 23984,
+ "▁Systems": 23985,
+ "▁reserve": 23986,
+ "eree": 23987,
+ "▁Пари": 23988,
+ "▁зали": 23989,
+ "▁rent": 23990,
+ "▁sunt": 23991,
+ "▁Girls": 23992,
+ "▁Ernest": 23993,
+ "▁fits": 23994,
+ "▁oppon": 23995,
+ "▁живело": 23996,
+ "▁avaient": 23997,
+ "▁Florence": 23998,
+ "▁числе": 23999,
+ "▁engines": 24000,
+ "Dynamic": 24001,
+ "▁stycznia": 24002,
+ "▁bias": 24003,
+ "▁Exchange": 24004,
+ "дий": 24005,
+ "▁historiques": 24006,
+ "▁Hä": 24007,
+ "hod": 24008,
+ "▁wł": 24009,
+ "schap": 24010,
+ "▁lac": 24011,
+ "▁Foi": 24012,
+ "▁dwell": 24013,
+ "▁Unternehmen": 24014,
+ "URN": 24015,
+ "▁kilometres": 24016,
+ "▁Однако": 24017,
+ "кли": 24018,
+ "▁Sri": 24019,
+ "Groups": 24020,
+ "mind": 24021,
+ "oslov": 24022,
+ "fern": 24023,
+ "egu": 24024,
+ "abeled": 24025,
+ "Fiddle": 24026,
+ "▁Century": 24027,
+ "/-": 24028,
+ "▁Jegyzetek": 24029,
+ "Hen": 24030,
+ "ensemble": 24031,
+ "▁Gut": 24032,
+ "_{{\\": 24033,
+ "▁ranking": 24034,
+ "+$": 24035,
+ "ала": 24036,
+ "▁#{": 24037,
+ "imientos": 24038,
+ "achim": 24039,
+ "rides": 24040,
+ "▁Klaus": 24041,
+ "▁intend": 24042,
+ "▁Kentucky": 24043,
+ "cipe": 24044,
+ "▁Dienst": 24045,
+ "▁situated": 24046,
+ "▁póź": 24047,
+ "▁scrit": 24048,
+ "clip": 24049,
+ "нет": 24050,
+ "tables": 24051,
+ "▁Nied": 24052,
+ "▁McK": 24053,
+ "▁powst": 24054,
+ "▁kunnen": 24055,
+ "▁Evans": 24056,
+ "жды": 24057,
+ "вать": 24058,
+ "uchar": 24059,
+ "▁residents": 24060,
+ "iak": 24061,
+ "▁Resol": 24062,
+ "▁veces": 24063,
+ "▁satisfying": 24064,
+ "INF": 24065,
+ "▁син": 24066,
+ "▁crossing": 24067,
+ "iben": 24068,
+ "▁широ": 24069,
+ "pto": 24070,
+ "ILL": 24071,
+ "▁роль": 24072,
+ "▁aktiv": 24073,
+ "▁обращения": 24074,
+ "Wikispecies": 24075,
+ "▁Höhe": 24076,
+ "cro": 24077,
+ "════": 24078,
+ "altra": 24079,
+ "▁FILE": 24080,
+ "▁ups": 24081,
+ "▁allocation": 24082,
+ "Michael": 24083,
+ "▁acknowled": 24084,
+ "Linux": 24085,
+ "▁metros": 24086,
+ "tte": 24087,
+ "afen": 24088,
+ "▁xcode": 24089,
+ "▁тради": 24090,
+ "species": 24091,
+ "▁injury": 24092,
+ "▁самы": 24093,
+ "▁lattice": 24094,
+ "Material": 24095,
+ "andenburg": 24096,
+ "▁huvudstaden": 24097,
+ "story": 24098,
+ "▁varying": 24099,
+ "▁követ": 24100,
+ "▁Российской": 24101,
+ "irse": 24102,
+ "▁drum": 24103,
+ "Pressed": 24104,
+ "Lar": 24105,
+ "▁Agu": 24106,
+ "▁weil": 24107,
+ "▁commence": 24108,
+ "▁Según": 24109,
+ "Gesture": 24110,
+ "Shape": 24111,
+ "▁Vors": 24112,
+ "▁succès": 24113,
+ "▁corrected": 24114,
+ "Kar": 24115,
+ "▁cruel": 24116,
+ "▁politico": 24117,
+ "▁Schriftsteller": 24118,
+ "▁risult": 24119,
+ "etu": 24120,
+ "archiv": 24121,
+ "▁género": 24122,
+ "▁Lü": 24123,
+ "▁triumph": 24124,
+ "ORS": 24125,
+ "Lu": 24126,
+ "▁personnel": 24127,
+ "▁Hills": 24128,
+ "asset": 24129,
+ "domin": 24130,
+ "Receive": 24131,
+ "▁Oak": 24132,
+ "▁Kno": 24133,
+ "▁Theory": 24134,
+ "irie": 24135,
+ "owan": 24136,
+ "▁estava": 24137,
+ "▁executes": 24138,
+ "йт": 24139,
+ "ópez": 24140,
+ "поло": 24141,
+ "ética": 24142,
+ "▁название": 24143,
+ "▁converges": 24144,
+ "▁notre": 24145,
+ "▁populated": 24146,
+ "▁movements": 24147,
+ "▁statistical": 24148,
+ "▁Zweiten": 24149,
+ "quin": 24150,
+ "▁importantes": 24151,
+ "▁klein": 24152,
+ "▁Segunda": 24153,
+ "schließend": 24154,
+ "Failure": 24155,
+ "nar": 24156,
+ "dag": 24157,
+ "▁ruolo": 24158,
+ "▁fiction": 24159,
+ "▁использу": 24160,
+ "▁crisis": 24161,
+ "▁Getting": 24162,
+ ",%": 24163,
+ "▁армии": 24164,
+ "▁campus": 24165,
+ "▁footer": 24166,
+ "▁días": 24167,
+ "бан": 24168,
+ "▁liberty": 24169,
+ "▁gh": 24170,
+ "▁chamber": 24171,
+ "▁districts": 24172,
+ "▁excited": 24173,
+ "▁canción": 24174,
+ "tero": 24175,
+ "▁Working": 24176,
+ "▁części": 24177,
+ "льный": 24178,
+ "▁forum": 24179,
+ "▁Ehe": 24180,
+ "▁ката": 24181,
+ "itations": 24182,
+ "Tools": 24183,
+ "achiv": 24184,
+ "▁cres": 24185,
+ "asto": 24186,
+ "▁rever": 24187,
+ "▁nazionale": 24188,
+ "▁doors": 24189,
+ "▁Nancy": 24190,
+ "▁islands": 24191,
+ "Imp": 24192,
+ "▁Chair": 24193,
+ "▁vorm": 24194,
+ "sein": 24195,
+ "▁доку": 24196,
+ "erset": 24197,
+ "▁tätig": 24198,
+ "▁Krit": 24199,
+ "▁пя": 24200,
+ "▁conservation": 24201,
+ "▁Partido": 24202,
+ "minipage": 24203,
+ "Validator": 24204,
+ "▁recovery": 24205,
+ "▁NASA": 24206,
+ "▁breast": 24207,
+ "ilty": 24208,
+ "analy": 24209,
+ "elines": 24210,
+ "▁Saturday": 24211,
+ "emark": 24212,
+ "cej": 24213,
+ "Zero": 24214,
+ "▁Turner": 24215,
+ "secure": 24216,
+ "Exists": 24217,
+ "▁Rick": 24218,
+ "evalu": 24219,
+ "ctrl": 24220,
+ "▁compression": 24221,
+ "▁CURL": 24222,
+ "textcolor": 24223,
+ ")\\,": 24224,
+ "longrightarrow": 24225,
+ "▁Fernseh": 24226,
+ "icha": 24227,
+ "▁loi": 24228,
+ "▁Оте": 24229,
+ "▁cave": 24230,
+ "▁dozen": 24231,
+ "▁explaining": 24232,
+ "▁innov": 24233,
+ "▁Nicholas": 24234,
+ "▁diameter": 24235,
+ "▁Marian": 24236,
+ "▁fires": 24237,
+ "▁artifact": 24238,
+ "▁Parker": 24239,
+ "▁Bund": 24240,
+ "▁verte": 24241,
+ "▁talent": 24242,
+ "▁Lucas": 24243,
+ "reverse": 24244,
+ "▁folgenden": 24245,
+ "▁Sah": 24246,
+ "jections": 24247,
+ "▁invece": 24248,
+ "▁costitu": 24249,
+ "▁ssl": 24250,
+ "}}^": 24251,
+ "▁violent": 24252,
+ "▁spos": 24253,
+ "Rout": 24254,
+ "jdk": 24255,
+ "▁заме": 24256,
+ "▁furent": 24257,
+ "andal": 24258,
+ "Hom": 24259,
+ "▁Senior": 24260,
+ "▁pounds": 24261,
+ "▁Discogs": 24262,
+ "▁зе": 24263,
+ "'}[": 24264,
+ "▁Napoleon": 24265,
+ "ordinates": 24266,
+ "àn": 24267,
+ "▁kurz": 24268,
+ "▁vere": 24269,
+ "▁reuse": 24270,
+ "▁Ген": 24271,
+ "▁Syst": 24272,
+ "▁disappeared": 24273,
+ "▁Watch": 24274,
+ "bibliothek": 24275,
+ "▁корпу": 24276,
+ "▁Cs": 24277,
+ "▁}`": 24278,
+ "▁rör": 24279,
+ "▁дела": 24280,
+ "VB": 24281,
+ "▁calculus": 24282,
+ "рода": 24283,
+ "▁judgment": 24284,
+ "atile": 24285,
+ "▁longue": 24286,
+ "▁Hus": 24287,
+ "Jac": 24288,
+ "}})": 24289,
+ "RIPT": 24290,
+ "IABot": 24291,
+ "▁após": 24292,
+ "▁aston": 24293,
+ "Webachiv": 24294,
+ "▁URLs": 24295,
+ "▁coat": 24296,
+ "▁эконо": 24297,
+ "▁lear": 24298,
+ "extensions": 24299,
+ "▁Classic": 24300,
+ "TI": 24301,
+ "▁Tage": 24302,
+ "▁lá": 24303,
+ "▁semb": 24304,
+ "▁développement": 24305,
+ "ISTS": 24306,
+ "▁solves": 24307,
+ ",\\,": 24308,
+ "▁чемпі": 24309,
+ "ordinary": 24310,
+ "▁Bav": 24311,
+ "▁muchos": 24312,
+ "Self": 24313,
+ "▁Май": 24314,
+ "▁Diet": 24315,
+ "▁necessity": 24316,
+ "від": 24317,
+ "▁mano": 24318,
+ "▁Ср": 24319,
+ "▁carre": 24320,
+ "▁Camera": 24321,
+ "▁Narod": 24322,
+ "▁Phone": 24323,
+ "▁polym": 24324,
+ "imore": 24325,
+ "isEmpty": 24326,
+ "▁Houston": 24327,
+ "▁Rece": 24328,
+ "▁presentation": 24329,
+ "ниципа": 24330,
+ "▁Db": 24331,
+ "▁confident": 24332,
+ "▁}{": 24333,
+ "▁bullet": 24334,
+ "▁{},": 24335,
+ "ANGE": 24336,
+ "▁Notre": 24337,
+ "chin": 24338,
+ "▁Dragon": 24339,
+ "erca": 24340,
+ "iali": 24341,
+ "▁asset": 24342,
+ "▁muito": 24343,
+ "▁deeply": 24344,
+ "▁restriction": 24345,
+ "▁commerce": 24346,
+ "▁Bomb": 24347,
+ "caught": 24348,
+ "qq": 24349,
+ "▁Arag": 24350,
+ "▁немец": 24351,
+ "▁Analysis": 24352,
+ "▁článku": 24353,
+ "▁baby": 24354,
+ "▁echter": 24355,
+ "▁одного": 24356,
+ "жена": 24357,
+ "▁whitespace": 24358,
+ "çu": 24359,
+ "LIST": 24360,
+ "frique": 24361,
+ "▁varias": 24362,
+ "▁Wit": 24363,
+ "▁Licencia": 24364,
+ "Exit": 24365,
+ "▁sierp": 24366,
+ "▁assemb": 24367,
+ "▁splitting": 24368,
+ "▁palace": 24369,
+ "▁blocked": 24370,
+ "▁boundaries": 24371,
+ "▁iterations": 24372,
+ "▁Rotten": 24373,
+ "▁Verkehr": 24374,
+ "▁weer": 24375,
+ "Tests": 24376,
+ "ifting": 24377,
+ "▁regul": 24378,
+ "▁persist": 24379,
+ "▁Solution": 24380,
+ "pb": 24381,
+ "▁collapse": 24382,
+ "▁arrested": 24383,
+ "▁predicate": 24384,
+ "▁Zone": 24385,
+ "▁ingen": 24386,
+ "zález": 24387,
+ "▁banks": 24388,
+ "plant": 24389,
+ "▁Nella": 24390,
+ "▁бан": 24391,
+ "▁Snow": 24392,
+ "▁Kreuz": 24393,
+ "ício": 24394,
+ "▁enters": 24395,
+ "▁expose": 24396,
+ "či": 24397,
+ "шие": 24398,
+ "Qual": 24399,
+ "▁landscape": 24400,
+ "▁подацима": 24401,
+ "mai": 24402,
+ "stag": 24403,
+ "ований": 24404,
+ "DEF": 24405,
+ "[]{": 24406,
+ "▁dernière": 24407,
+ "icut": 24408,
+ "▁Xml": 24409,
+ "▁subgroup": 24410,
+ "▁Polsce": 24411,
+ "▁Warning": 24412,
+ "▁vehicles": 24413,
+ "iot": 24414,
+ "▁dll": 24415,
+ "ront": 24416,
+ "▁Louise": 24417,
+ "▁ara": 24418,
+ "▁Scala": 24419,
+ "▁canonical": 24420,
+ "▁placing": 24421,
+ "ERY": 24422,
+ "▁Jag": 24423,
+ "▁virus": 24424,
+ "emu": 24425,
+ "▁});\r": 24426,
+ "▁мм": 24427,
+ "▁Trying": 24428,
+ "▁Lexikon": 24429,
+ "abord": 24430,
+ "▁expedition": 24431,
+ "▁demanded": 24432,
+ "Zyg": 24433,
+ "lein": 24434,
+ "▁verwendet": 24435,
+ "рина": 24436,
+ "wol": 24437,
+ "▁pivot": 24438,
+ "▁однако": 24439,
+ "▁propriet": 24440,
+ "▁awards": 24441,
+ "tout": 24442,
+ "▁assim": 24443,
+ "▁Storm": 24444,
+ "Limit": 24445,
+ "elin": 24446,
+ "wealth": 24447,
+ "uez": 24448,
+ "▁rappresent": 24449,
+ "▁resta": 24450,
+ "▁gegründet": 24451,
+ "▁journalist": 24452,
+ "isie": 24453,
+ "▁facility": 24454,
+ "illed": 24455,
+ "ulk": 24456,
+ "▁PK": 24457,
+ "Anchor": 24458,
+ "▁_)": 24459,
+ "VF": 24460,
+ "LAB": 24461,
+ "▁nå": 24462,
+ "odos": 24463,
+ "▁billion": 24464,
+ "virti": 24465,
+ "▁Jeux": 24466,
+ "юза": 24467,
+ "tomcat": 24468,
+ "▁charts": 24469,
+ "▁Bundle": 24470,
+ "▁lst": 24471,
+ "▁exer": 24472,
+ "▁females": 24473,
+ "▁obliged": 24474,
+ "▁aby": 24475,
+ "rolled": 24476,
+ "dri": 24477,
+ "▁Sche": 24478,
+ "▁vessels": 24479,
+ "IMARY": 24480,
+ "▁reasoning": 24481,
+ "▁проте": 24482,
+ "FILES": 24483,
+ "verk": 24484,
+ "osos": 24485,
+ "▁комму": 24486,
+ "дії": 24487,
+ "▁dd": 24488,
+ "▁соответ": 24489,
+ "▁IOException": 24490,
+ "ských": 24491,
+ "▁CLI": 24492,
+ "▁ње": 24493,
+ "CM": 24494,
+ "TD": 24495,
+ "▁possibilities": 24496,
+ "▁Compos": 24497,
+ "half": 24498,
+ "▁webpage": 24499,
+ "▁swing": 24500,
+ "▁zas": 24501,
+ "▁cycl": 24502,
+ "leid": 24503,
+ "istica": 24504,
+ "▁Insert": 24505,
+ "▁Sweden": 24506,
+ "▁wanting": 24507,
+ "▁ال": 24508,
+ "▁eeuw": 24509,
+ "▁Administr": 24510,
+ "▁Warren": 24511,
+ "▁bs": 24512,
+ "▁pam": 24513,
+ "anus": 24514,
+ "Dra": 24515,
+ "expl": 24516,
+ "▁Kant": 24517,
+ "▁Austin": 24518,
+ "▁csak": 24519,
+ "▁theatre": 24520,
+ "▁compatibility": 24521,
+ "матиче": 24522,
+ "setState": 24523,
+ "бю": 24524,
+ "}{|": 24525,
+ "▁Dy": 24526,
+ "▁Zwischen": 24527,
+ "Alt": 24528,
+ "CLARE": 24529,
+ "steps": 24530,
+ "▁Lage": 24531,
+ "▁Mitt": 24532,
+ "▁Dublin": 24533,
+ "▁работы": 24534,
+ "deep": 24535,
+ "▁flows": 24536,
+ "▁Palace": 24537,
+ "unix": 24538,
+ "refs": 24539,
+ "umar": 24540,
+ "aset": 24541,
+ "cov": 24542,
+ "▁ping": 24543,
+ "▁Safari": 24544,
+ "flug": 24545,
+ "creens": 24546,
+ "{#": 24547,
+ "▁реа": 24548,
+ "adors": 24549,
+ "▁amor": 24550,
+ "uce": 24551,
+ "demic": 24552,
+ "▁Netherlands": 24553,
+ "▁clusters": 24554,
+ "▁enfor": 24555,
+ "marine": 24556,
+ "▁bugs": 24557,
+ "izzata": 24558,
+ "▁scra": 24559,
+ "Les": 24560,
+ "quick": 24561,
+ "▁turno": 24562,
+ "_*": 24563,
+ "ера": 24564,
+ "Generated": 24565,
+ ">[": 24566,
+ "▁estre": 24567,
+ "orde": 24568,
+ "▁verg": 24569,
+ "роз": 24570,
+ "▁pau": 24571,
+ "includes": 24572,
+ "assa": 24573,
+ "aders": 24574,
+ "▁Герма": 24575,
+ "▁estaven": 24576,
+ "▁earliest": 24577,
+ "▁resultado": 24578,
+ "mun": 24579,
+ "▁plots": 24580,
+ "din": 24581,
+ "sorted": 24582,
+ "▁preference": 24583,
+ "rió": 24584,
+ "туре": 24585,
+ "▁Ligue": 24586,
+ "▁завер": 24587,
+ "phr": 24588,
+ "▁pocket": 24589,
+ "▁parl": 24590,
+ "▁lak": 24591,
+ "▁powie": 24592,
+ "▁altres": 24593,
+ "$};": 24594,
+ "plain": 24595,
+ "▁Cred": 24596,
+ "itza": 24597,
+ "perp": 24598,
+ "Green": 24599,
+ "▁devoted": 24600,
+ "production": 24601,
+ "worker": 24602,
+ "elsen": 24603,
+ "▁vern": 24604,
+ "▁március": 24605,
+ "▁Confeder": 24606,
+ "▁Liverpool": 24607,
+ "▁музи": 24608,
+ "▁emails": 24609,
+ "▁distances": 24610,
+ "▁segments": 24611,
+ "▁anth": 24612,
+ "▁wrest": 24613,
+ "▁hoog": 24614,
+ "▁cinema": 24615,
+ "rror": 24616,
+ "▁geboren": 24617,
+ "▁éc": 24618,
+ "Marker": 24619,
+ "▁Compet": 24620,
+ "▁листо": 24621,
+ "allowed": 24622,
+ "volume": 24623,
+ "Espagne": 24624,
+ "Ze": 24625,
+ "▁fixes": 24626,
+ "▁rond": 24627,
+ "▁arrangement": 24628,
+ "/~": 24629,
+ ".](": 24630,
+ "▁Források": 24631,
+ "▁weiteren": 24632,
+ "excel": 24633,
+ "▁змі": 24634,
+ "▁moderne": 24635,
+ "English": 24636,
+ "▁Transfermarkt": 24637,
+ "▁bearing": 24638,
+ "▁cleared": 24639,
+ "▁сам": 24640,
+ "▁divs": 24641,
+ "ći": 24642,
+ "▁этой": 24643,
+ "▁Геор": 24644,
+ "scene": 24645,
+ "▁ages": 24646,
+ "GEN": 24647,
+ "rän": 24648,
+ "▁Toul": 24649,
+ "▁Abs": 24650,
+ "ját": 24651,
+ "▁mediante": 24652,
+ "▁empres": 24653,
+ "▁Employee": 24654,
+ "▁polynomials": 24655,
+ "▁optimize": 24656,
+ "▁выступа": 24657,
+ "fare": 24658,
+ "вей": 24659,
+ "xf": 24660,
+ "quez": 24661,
+ "▁botan": 24662,
+ "▁defend": 24663,
+ "▁Quart": 24664,
+ "Mont": 24665,
+ "vb": 24666,
+ "tick": 24667,
+ "WD": 24668,
+ "mine": 24669,
+ "▁modific": 24670,
+ "notification": 24671,
+ "▁denn": 24672,
+ "▁algo": 24673,
+ "▁Spo": 24674,
+ "▁mistrzost": 24675,
+ "/:": 24676,
+ "▁apresent": 24677,
+ "▁прод": 24678,
+ "Volume": 24679,
+ "ską": 24680,
+ "protected": 24681,
+ "▁Turkish": 24682,
+ "azy": 24683,
+ "▁pouv": 24684,
+ "▁período": 24685,
+ "skog": 24686,
+ "▁entropy": 24687,
+ "zed": 24688,
+ "тори": 24689,
+ "▁lij": 24690,
+ "boards": 24691,
+ "▁стату": 24692,
+ "Bool": 24693,
+ "▁polity": 24694,
+ "@\",": 24695,
+ "▁рік": 24696,
+ "née": 24697,
+ "▁Zug": 24698,
+ "▁Uniti": 24699,
+ "émet": 24700,
+ "atience": 24701,
+ "dimen": 24702,
+ "▁Steven": 24703,
+ "Ha": 24704,
+ "ACTION": 24705,
+ "▁wand": 24706,
+ "▁Navar": 24707,
+ "▁січня": 24708,
+ "Watch": 24709,
+ "▁Stuart": 24710,
+ "▁zde": 24711,
+ "▁контро": 24712,
+ "dataset": 24713,
+ "yó": 24714,
+ "▁Bush": 24715,
+ "▁себя": 24716,
+ "▁worthy": 24717,
+ "▁Ble": 24718,
+ "▁propor": 24719,
+ "▁Village": 24720,
+ "▁ry": 24721,
+ "▁voit": 24722,
+ "▁копия": 24723,
+ "▁zp": 24724,
+ "▁cura": 24725,
+ "▁Html": 24726,
+ "▁Dieser": 24727,
+ "▁Days": 24728,
+ "onnes": 24729,
+ "▁antigu": 24730,
+ "▁Staaten": 24731,
+ "▁faint": 24732,
+ "ongs": 24733,
+ "▁öst": 24734,
+ "Redirect": 24735,
+ "ель": 24736,
+ "atorial": 24737,
+ "▁bother": 24738,
+ "EditText": 24739,
+ "▁Giul": 24740,
+ "▁заво": 24741,
+ "▁pueblo": 24742,
+ "▁Mississippi": 24743,
+ "jak": 24744,
+ "▁wings": 24745,
+ "onc": 24746,
+ "ível": 24747,
+ "iencia": 24748,
+ "entlicht": 24749,
+ "▁BTW": 24750,
+ "ornal": 24751,
+ "▁Коро": 24752,
+ "▁одним": 24753,
+ "▁salv": 24754,
+ "▁finden": 24755,
+ "geo": 24756,
+ "▁авиа": 24757,
+ "attung": 24758,
+ "viv": 24759,
+ "▁Luther": 24760,
+ "▁общи": 24761,
+ "▁Rolle": 24762,
+ "▁Abraham": 24763,
+ "▁centered": 24764,
+ "▁slash": 24765,
+ "isat": 24766,
+ "emann": 24767,
+ "Os": 24768,
+ "парта": 24769,
+ "▁Pablo": 24770,
+ "▁collaboration": 24771,
+ "paths": 24772,
+ "édition": 24773,
+ "▁viewed": 24774,
+ "▁consisted": 24775,
+ "▁recovered": 24776,
+ "▁Mexican": 24777,
+ "▁Fix": 24778,
+ "▁spell": 24779,
+ "Special": 24780,
+ "▁Ст": 24781,
+ "esseur": 24782,
+ "▁Украины": 24783,
+ "former": 24784,
+ "▁św": 24785,
+ "▁zeros": 24786,
+ "▁Straßen": 24787,
+ "▁organisation": 24788,
+ "üssen": 24789,
+ "▁Sierra": 24790,
+ "▁Season": 24791,
+ "▁volont": 24792,
+ "BeanFactory": 24793,
+ "▁помощ": 24794,
+ "▁pressing": 24795,
+ "▁equivalence": 24796,
+ "▁catt": 24797,
+ "icity": 24798,
+ "▁accomplished": 24799,
+ "▁yo": 24800,
+ "▁sic": 24801,
+ "▁imports": 24802,
+ "▁accommod": 24803,
+ "▁Porto": 24804,
+ "▁яка": 24805,
+ "▁loan": 24806,
+ "тики": 24807,
+ "▁checkout": 24808,
+ "▁assess": 24809,
+ "▁Population": 24810,
+ "urent": 24811,
+ "clojure": 24812,
+ "▁Santos": 24813,
+ "▁információ": 24814,
+ "POS": 24815,
+ "▁gare": 24816,
+ "▁kick": 24817,
+ "▁radical": 24818,
+ "▁Peace": 24819,
+ "▁streaming": 24820,
+ "camp": 24821,
+ "ząt": 24822,
+ "говор": 24823,
+ "▁Regierung": 24824,
+ "▁proceeded": 24825,
+ "fm": 24826,
+ "лены": 24827,
+ "▁earnest": 24828,
+ "▁Parad": 24829,
+ "requests": 24830,
+ "▁Raum": 24831,
+ "šč": 24832,
+ "▁policies": 24833,
+ "▁Tig": 24834,
+ "▁sitt": 24835,
+ "▁Energy": 24836,
+ "▁purely": 24837,
+ "▁Haut": 24838,
+ "▁Speed": 24839,
+ "bio": 24840,
+ "▁orange": 24841,
+ "▁biggest": 24842,
+ "▁britannique": 24843,
+ "▁Notable": 24844,
+ "vu": 24845,
+ "лении": 24846,
+ "бин": 24847,
+ "▁Nash": 24848,
+ "щение": 24849,
+ "▁ciel": 24850,
+ "adémie": 24851,
+ "▁грудня": 24852,
+ "▁joue": 24853,
+ "▁voted": 24854,
+ "rico": 24855,
+ "▁гор": 24856,
+ "▁команду": 24857,
+ "itivity": 24858,
+ "▁ще": 24859,
+ "▁definite": 24860,
+ "uropa": 24861,
+ "!\");": 24862,
+ "Defaults": 24863,
+ "▁некоторы": 24864,
+ "édération": 24865,
+ "▁silly": 24866,
+ "▁talked": 24867,
+ "reu": 24868,
+ "▁Lomb": 24869,
+ "▁statue": 24870,
+ "кта": 24871,
+ "юр": 24872,
+ "umably": 24873,
+ "▁городе": 24874,
+ "▁Runtime": 24875,
+ "▁diagn": 24876,
+ "▁retro": 24877,
+ "▁Sverige": 24878,
+ "▁inicial": 24879,
+ "ienza": 24880,
+ "▁figlio": 24881,
+ "▁zog": 24882,
+ "▁rey": 24883,
+ "▁Rund": 24884,
+ "тный": 24885,
+ "▁ceased": 24886,
+ "erno": 24887,
+ "▁esa": 24888,
+ "▁trouv": 24889,
+ "▁Gemeinden": 24890,
+ "▁comercial": 24891,
+ "skap": 24892,
+ "enario": 24893,
+ "▁juris": 24894,
+ "TB": 24895,
+ "нала": 24896,
+ "▁vij": 24897,
+ "VO": 24898,
+ "▁clin": 24899,
+ "jör": 24900,
+ "сан": 24901,
+ "owała": 24902,
+ "ribución": 24903,
+ "▁ursprüng": 24904,
+ "▁condem": 24905,
+ "▁Stage": 24906,
+ "▁mixing": 24907,
+ "▁різ": 24908,
+ "▁fans": 24909,
+ "ház": 24910,
+ "social": 24911,
+ "zan": 24912,
+ "▁свой": 24913,
+ "Cookie": 24914,
+ "▁Roland": 24915,
+ "azionale": 24916,
+ "▁Sloven": 24917,
+ "▁Fiche": 24918,
+ "▁Sé": 24919,
+ "hä": 24920,
+ "▁officials": 24921,
+ "▁înt": 24922,
+ "Interceptor": 24923,
+ "Tables": 24924,
+ "▁davon": 24925,
+ "initialize": 24926,
+ "]=\"": 24927,
+ "▁Body": 24928,
+ "▁Upper": 24929,
+ "▁Collect": 24930,
+ "▁Zürich": 24931,
+ "Horizontal": 24932,
+ "Typ": 24933,
+ "▁político": 24934,
+ "▁RewriteCond": 24935,
+ "▁hoped": 24936,
+ "▁anxious": 24937,
+ "Liter": 24938,
+ "jahr": 24939,
+ "▁assemble": 24940,
+ "▁crypt": 24941,
+ "lahoma": 24942,
+ "ASH": 24943,
+ "▁Бри": 24944,
+ "▁Cic": 24945,
+ "twitter": 24946,
+ "hyper": 24947,
+ "▁Tell": 24948,
+ "ільки": 24949,
+ "вобо": 24950,
+ "▁bazie": 24951,
+ "▁contemporary": 24952,
+ "▁Parameter": 24953,
+ "stwa": 24954,
+ "▁bekend": 24955,
+ "cock": 24956,
+ "previous": 24957,
+ "enska": 24958,
+ "▁caller": 24959,
+ "]])": 24960,
+ "▁Raz": 24961,
+ "▁Selon": 24962,
+ "▁proposal": 24963,
+ "▁bý": 24964,
+ "▁Sied": 24965,
+ "▁Arbeits": 24966,
+ "▁pride": 24967,
+ "▁slope": 24968,
+ "idé": 24969,
+ "gradient": 24970,
+ "▁Джерела": 24971,
+ "▁SH": 24972,
+ "▁разрабо": 24973,
+ "iversity": 24974,
+ "сподар": 24975,
+ "\\{\\": 24976,
+ "▁стали": 24977,
+ "▁Einzel": 24978,
+ "▁rgba": 24979,
+ "▁Anim": 24980,
+ "▁alles": 24981,
+ "бар": 24982,
+ "erte": 24983,
+ "▁réalisé": 24984,
+ "Institut": 24985,
+ "▁markup": 24986,
+ "▁vars": 24987,
+ "▁gam": 24988,
+ "▁Василь": 24989,
+ "izza": 24990,
+ "▁Cob": 24991,
+ "▁Metal": 24992,
+ "▁leak": 24993,
+ "▁Lanc": 24994,
+ "Switch": 24995,
+ "Delay": 24996,
+ "atuur": 24997,
+ "▁четы": 24998,
+ "▁англий": 24999,
+ "▁legacy": 25000,
+ "▁desarroll": 25001,
+ "▁topological": 25002,
+ "▁jeweils": 25003,
+ "▁Nederlandse": 25004,
+ "▁atmosphere": 25005,
+ "urban": 25006,
+ "▁slov": 25007,
+ "▁lawyer": 25008,
+ "pecially": 25009,
+ "▁alternate": 25010,
+ "▁paramet": 25011,
+ "▁establishment": 25012,
+ "▁woods": 25013,
+ "PD": 25014,
+ "▁наи": 25015,
+ "▁mang": 25016,
+ "▁wechselte": 25017,
+ "ську": 25018,
+ ".=": 25019,
+ "▁fifteen": 25020,
+ "SUM": 25021,
+ "▁Fro": 25022,
+ "▁LED": 25023,
+ "owano": 25024,
+ "ствие": 25025,
+ "▁Données": 25026,
+ "tol": 25027,
+ "żyn": 25028,
+ "cref": 25029,
+ "ствии": 25030,
+ "horn": 25031,
+ "▁сооб": 25032,
+ "▁оборо": 25033,
+ "▁Complete": 25034,
+ "“)": 25035,
+ "▁kindly": 25036,
+ "▁Chamber": 25037,
+ "ség": 25038,
+ "WH": 25039,
+ "▁ambient": 25040,
+ "кро": 25041,
+ "▁cheval": 25042,
+ "▁написа": 25043,
+ "flu": 25044,
+ "▁Offiz": 25045,
+ "mate": 25046,
+ "natural": 25047,
+ "separ": 25048,
+ "empre": 25049,
+ "ViewHolder": 25050,
+ "fw": 25051,
+ "▁letech": 25052,
+ "▁trailing": 25053,
+ "atri": 25054,
+ "▁Gó": 25055,
+ "▁Bonn": 25056,
+ "▁unlikely": 25057,
+ "RAM": 25058,
+ "enst": 25059,
+ "Stats": 25060,
+ "▁политиче": 25061,
+ ")--(": 25062,
+ "▁trom": 25063,
+ "!...": 25064,
+ "▁Meanwhile": 25065,
+ "стана": 25066,
+ "▁Reino": 25067,
+ "▁Arist": 25068,
+ "$}}%": 25069,
+ "▁solem": 25070,
+ "closure": 25071,
+ "ignation": 25072,
+ "łod": 25073,
+ "▁divor": 25074,
+ "▁международ": 25075,
+ "=\"": 25076,
+ "▁molt": 25077,
+ "▁skills": 25078,
+ "▁Cir": 25079,
+ "▁Después": 25080,
+ "▁lun": 25081,
+ "▁coron": 25082,
+ "▁Comics": 25083,
+ "стори": 25084,
+ "▁Items": 25085,
+ "▁Think": 25086,
+ "игра": 25087,
+ "▁grows": 25088,
+ "portal": 25089,
+ "▁nich": 25090,
+ "▁restrictions": 25091,
+ "▁Lau": 25092,
+ "шення": 25093,
+ "▁Sozial": 25094,
+ "▁кі": 25095,
+ "mana": 25096,
+ "▁lieutenant": 25097,
+ "Attr": 25098,
+ "umeric": 25099,
+ "▁drives": 25100,
+ "asis": 25101,
+ "бай": 25102,
+ "NL": 25103,
+ "Zygote": 25104,
+ "physics": 25105,
+ "▁internally": 25106,
+ "вается": 25107,
+ "Hidden": 25108,
+ "▁Дата": 25109,
+ "▁unsafe": 25110,
+ "▁Roc": 25111,
+ "▁instantiate": 25112,
+ "udni": 25113,
+ "▁Room": 25114,
+ "▁Пред": 25115,
+ "▁maja": 25116,
+ "achment": 25117,
+ "uuid": 25118,
+ "Projects": 25119,
+ "Gre": 25120,
+ "▁взя": 25121,
+ "▁Blood": 25122,
+ "icile": 25123,
+ "▁Nouvelle": 25124,
+ "Does": 25125,
+ "▁nieuwe": 25126,
+ "ále": 25127,
+ "angs": 25128,
+ "weak": 25129,
+ "▁aantal": 25130,
+ "▁Ев": 25131,
+ "▁Dresden": 25132,
+ "▁Lost": 25133,
+ "ката": 25134,
+ "▁involve": 25135,
+ "▁declaring": 25136,
+ "▁Political": 25137,
+ "érez": 25138,
+ "kop": 25139,
+ "notify": 25140,
+ "▁Curt": 25141,
+ "▁schließlich": 25142,
+ "ghan": 25143,
+ "цена": 25144,
+ "▁kwiet": 25145,
+ "ügel": 25146,
+ "▁Sob": 25147,
+ "▁substr": 25148,
+ "▁ellen": 25149,
+ "ionario": 25150,
+ "enson": 25151,
+ "WIN": 25152,
+ "спорт": 25153,
+ "emer": 25154,
+ "nome": 25155,
+ "▁smiled": 25156,
+ "▁Schmidt": 25157,
+ "▁smoke": 25158,
+ "▁Token": 25159,
+ "▁vague": 25160,
+ "▁provision": 25161,
+ "yaml": 25162,
+ "нитель": 25163,
+ "onial": 25164,
+ "époque": 25165,
+ "▁NC": 25166,
+ "▁NFL": 25167,
+ "teck": 25168,
+ "▁allo": 25169,
+ "▁précéd": 25170,
+ "central": 25171,
+ "▁majd": 25172,
+ "▁chrom": 25173,
+ "▁Zum": 25174,
+ "verso": 25175,
+ "▁verschiedenen": 25176,
+ "▁старо": 25177,
+ "▁quelle": 25178,
+ "▁rép": 25179,
+ "ROW": 25180,
+ "▁ihnen": 25181,
+ "▁sensible": 25182,
+ "|$": 25183,
+ "▁schw": 25184,
+ "▁BR": 25185,
+ "▁Options": 25186,
+ "▁tens": 25187,
+ "▁conquist": 25188,
+ "▁ließ": 25189,
+ "ovis": 25190,
+ "▁міста": 25191,
+ "▁ela": 25192,
+ "rifice": 25193,
+ "▁lok": 25194,
+ "▁Queensland": 25195,
+ "Binary": 25196,
+ "▁Rahmen": 25197,
+ "▁abol": 25198,
+ "▁část": 25199,
+ "▁Edinburgh": 25200,
+ "inde": 25201,
+ "▁calculating": 25202,
+ "▁Oregon": 25203,
+ "▁legit": 25204,
+ "▁Nachdem": 25205,
+ "athon": 25206,
+ "Private": 25207,
+ "illaume": 25208,
+ "▁observable": 25209,
+ "leans": 25210,
+ "▁remarked": 25211,
+ "▁halt": 25212,
+ "ницы": 25213,
+ "▁stamp": 25214,
+ "▁Adv": 25215,
+ "Louis": 25216,
+ "imming": 25217,
+ "gruppe": 25218,
+ "▁Policy": 25219,
+ "▁vrij": 25220,
+ "ftrag": 25221,
+ "▁offices": 25222,
+ "▁participated": 25223,
+ "▁escol": 25224,
+ "▁\"": 25225,
+ "▁nombreuses": 25226,
+ "▁divid": 25227,
+ "▁advis": 25228,
+ "лтати": 25229,
+ "▁==>": 25230,
+ "Orientation": 25231,
+ "cid": 25232,
+ "Cart": 25233,
+ "▁murm": 25234,
+ "▁assez": 25235,
+ "▁linking": 25236,
+ "building": 25237,
+ "▁reconna": 25238,
+ "▁shook": 25239,
+ "managed": 25240,
+ "landa": 25241,
+ "▁León": 25242,
+ "▁création": 25243,
+ "дой": 25244,
+ "ocity": 25245,
+ "▁wij": 25246,
+ "▁wieś": 25247,
+ "xtart": 25248,
+ "▁Move": 25249,
+ "lungen": 25250,
+ "ствует": 25251,
+ "orney": 25252,
+ "optional": 25253,
+ "macro": 25254,
+ "Condition": 25255,
+ "▁squares": 25256,
+ "▁mistaken": 25257,
+ "ánt": 25258,
+ "▁Ris": 25259,
+ "▁sentences": 25260,
+ "erea": 25261,
+ "▁mij": 25262,
+ "Und": 25263,
+ "▁nombr": 25264,
+ "zA": 25265,
+ "▁Independent": 25266,
+ "▁preview": 25267,
+ "imas": 25268,
+ "▁males": 25269,
+ "inental": 25270,
+ "Thank": 25271,
+ "▁popol": 25272,
+ "▁pover": 25273,
+ "▁grasp": 25274,
+ "▁imped": 25275,
+ "▁campionato": 25276,
+ "▁Wei": 25277,
+ "▁titled": 25278,
+ "▁Además": 25279,
+ "▁Password": 25280,
+ "▁Pam": 25281,
+ "UILD": 25282,
+ "▁липня": 25283,
+ "werb": 25284,
+ "................": 25285,
+ "▁Río": 25286,
+ "▁teeth": 25287,
+ "bp": 25288,
+ "▁SW": 25289,
+ "ulaire": 25290,
+ "▁seized": 25291,
+ "▁Stef": 25292,
+ "úl": 25293,
+ "▁viz": 25294,
+ "iony": 25295,
+ "▁junt": 25296,
+ "▁která": 25297,
+ "▁września": 25298,
+ "<>": 25299,
+ "▁surg": 25300,
+ "▁tutte": 25301,
+ "▁Hob": 25302,
+ "повід": 25303,
+ "▁wohl": 25304,
+ "▁trag": 25305,
+ "▁Crown": 25306,
+ "▁trova": 25307,
+ "стову": 25308,
+ "▁Vienna": 25309,
+ "esehen": 25310,
+ "▁metropol": 25311,
+ "▁reflected": 25312,
+ "тета": 25313,
+ "▁traduc": 25314,
+ "▁Bast": 25315,
+ "▁erschien": 25316,
+ "woord": 25317,
+ "()\"": 25318,
+ "talet": 25319,
+ "▁roads": 25320,
+ "ведения": 25321,
+ "ührung": 25322,
+ "▁cogn": 25323,
+ "▁Valle": 25324,
+ "▁landing": 25325,
+ "▁Regex": 25326,
+ "▁Iowa": 25327,
+ "dział": 25328,
+ "▁erreichte": 25329,
+ "aum": 25330,
+ "▁founder": 25331,
+ "apolis": 25332,
+ "Compiler": 25333,
+ "▁kop": 25334,
+ "▁marc": 25335,
+ "▁територ": 25336,
+ "))`": 25337,
+ "▁lei": 25338,
+ "geon": 25339,
+ "▁weapons": 25340,
+ "▁horn": 25341,
+ "▁elif": 25342,
+ "▁Capital": 25343,
+ "će": 25344,
+ "▁forall": 25345,
+ "▁эта": 25346,
+ "preview": 25347,
+ "▁DNA": 25348,
+ "▁sid": 25349,
+ "orch": 25350,
+ "▁Ras": 25351,
+ "▁arab": 25352,
+ "Best": 25353,
+ "▁счита": 25354,
+ "▁López": 25355,
+ "ança": 25356,
+ "▁funkc": 25357,
+ "▁tienen": 25358,
+ ";&": 25359,
+ "museum": 25360,
+ "▁Err": 25361,
+ "▁resort": 25362,
+ "Nov": 25363,
+ "▁kal": 25364,
+ "MW": 25365,
+ "шь": 25366,
+ "anchor": 25367,
+ "▁роман": 25368,
+ "leading": 25369,
+ "▁manten": 25370,
+ "▁Silva": 25371,
+ "dade": 25372,
+ "▁designated": 25373,
+ "▁revista": 25374,
+ "Oct": 25375,
+ "percent": 25376,
+ "▁уні": 25377,
+ "identifier": 25378,
+ "mass": 25379,
+ "@@": 25380,
+ "ulsion": 25381,
+ "germeister": 25382,
+ "▁predicted": 25383,
+ "▁сви": 25384,
+ "жной": 25385,
+ "▁Ergeb": 25386,
+ "▁cust": 25387,
+ "▁removes": 25388,
+ "charg": 25389,
+ "пример": 25390,
+ "▁forming": 25391,
+ "asma": 25392,
+ "stdout": 25393,
+ "Fun": 25394,
+ "yme": 25395,
+ "tered": 25396,
+ "ursive": 25397,
+ "ighed": 25398,
+ "▁след": 25399,
+ "verband": 25400,
+ "▁LOG": 25401,
+ "rams": 25402,
+ "éon": 25403,
+ "endra": 25404,
+ "▁Bereich": 25405,
+ "▁temporal": 25406,
+ "▁langue": 25407,
+ "▁Inn": 25408,
+ "▁moreover": 25409,
+ "▁tutorials": 25410,
+ "Middle": 25411,
+ "▁советский": 25412,
+ "▁maintenance": 25413,
+ "asures": 25414,
+ "▁válto": 25415,
+ "BASE": 25416,
+ "▁disappear": 25417,
+ "ския": 25418,
+ "▁conocido": 25419,
+ "▁Нау": 25420,
+ "▁Libert": 25421,
+ "▁Harold": 25422,
+ "▁lifetime": 25423,
+ "▁Tür": 25424,
+ "▁zawod": 25425,
+ "omic": 25426,
+ "▁Retrieved": 25427,
+ "architecture": 25428,
+ "čka": 25429,
+ "iformes": 25430,
+ "development": 25431,
+ "ordnung": 25432,
+ "Inf": 25433,
+ "leben": 25434,
+ "▁Stars": 25435,
+ "signal": 25436,
+ "▁grammar": 25437,
+ "▁corso": 25438,
+ "▁Wagner": 25439,
+ "▁geht": 25440,
+ "▁royale": 25441,
+ "warn": 25442,
+ "umbled": 25443,
+ "▁instit": 25444,
+ "▁Ши": 25445,
+ "hh": 25446,
+ "▁refuge": 25447,
+ "▁favorite": 25448,
+ "ierto": 25449,
+ "▁condado": 25450,
+ "▁Ther": 25451,
+ "▁человека": 25452,
+ "▁Food": 25453,
+ "▁seizo": 25454,
+ "▁Initialize": 25455,
+ "▁connu": 25456,
+ "▁overlap": 25457,
+ "▁Emil": 25458,
+ "▁Martí": 25459,
+ "▁жовтня": 25460,
+ "erva": 25461,
+ "▁boats": 25462,
+ "ações": 25463,
+ "▁derrot": 25464,
+ "▁malloc": 25465,
+ "▁conject": 25466,
+ "jk": 25467,
+ "▁sare": 25468,
+ "лемен": 25469,
+ "▁sums": 25470,
+ "Authorization": 25471,
+ "▁Kun": 25472,
+ "]$,": 25473,
+ "gemeinde": 25474,
+ "odot": 25475,
+ "defin": 25476,
+ "▁emission": 25477,
+ "▁Крас": 25478,
+ "▁appart": 25479,
+ "▁stopping": 25480,
+ "▁Сред": 25481,
+ "▁conjug": 25482,
+ "▁insight": 25483,
+ "▁Broadcast": 25484,
+ "▁PMID": 25485,
+ "▁advantages": 25486,
+ "enes": 25487,
+ "▁residence": 25488,
+ "ljen": 25489,
+ "isseur": 25490,
+ "▁pubblicato": 25491,
+ "▁GitHub": 25492,
+ "▁Peru": 25493,
+ "▁galaxies": 25494,
+ "▁annotations": 25495,
+ "gas": 25496,
+ "▁répond": 25497,
+ "Js": 25498,
+ "▁independently": 25499,
+ "NP": 25500,
+ "▁inqu": 25501,
+ "▁grounds": 25502,
+ "Components": 25503,
+ "▁anten": 25504,
+ "▁вз": 25505,
+ "▁hos": 25506,
+ "▁sint": 25507,
+ "▁hiding": 25508,
+ "▁województ": 25509,
+ "Messages": 25510,
+ "▁показа": 25511,
+ "===": 25512,
+ "▁Abstract": 25513,
+ "▁läng": 25514,
+ "▁Formula": 25515,
+ "dawn": 25516,
+ "▁designs": 25517,
+ "Img": 25518,
+ "▁Portuguese": 25519,
+ "▁incluy": 25520,
+ "avigator": 25521,
+ "▁Brothers": 25522,
+ "▁continent": 25523,
+ "▁evidently": 25524,
+ "race": 25525,
+ "цького": 25526,
+ "▁reck": 25527,
+ "▁серпня": 25528,
+ "▁Grey": 25529,
+ "▁appeal": 25530,
+ "▁unlike": 25531,
+ "▁powershell": 25532,
+ "▁racc": 25533,
+ "fers": 25534,
+ "▁burning": 25535,
+ "fasst": 25536,
+ "installed": 25537,
+ "▁Give": 25538,
+ "▁colonial": 25539,
+ "▁€": 25540,
+ "▁Rö": 25541,
+ "▁christ": 25542,
+ "nehm": 25543,
+ "там": 25544,
+ "▁corpo": 25545,
+ "▁convirti": 25546,
+ "yter": 25547,
+ "Sym": 25548,
+ "▁Greece": 25549,
+ "▁moth": 25550,
+ "▁Johan": 25551,
+ "▁monarch": 25552,
+ "▁Download": 25553,
+ "▁craft": 25554,
+ "už": 25555,
+ "▁Luke": 25556,
+ "▁suffix": 25557,
+ "\\/": 25558,
+ "Have": 25559,
+ "▁карь": 25560,
+ "▁comfortable": 25561,
+ "▁tips": 25562,
+ "▁Після": 25563,
+ "▁броја": 25564,
+ "▁информа": 25565,
+ "MQ": 25566,
+ "бран": 25567,
+ "▁tx": 25568,
+ "▁slaves": 25569,
+ "▁firewall": 25570,
+ "▁Forces": 25571,
+ "atif": 25572,
+ "▁Quellen": 25573,
+ "▁théâtre": 25574,
+ "льных": 25575,
+ "▁расположен": 25576,
+ "▁Details": 25577,
+ "ką": 25578,
+ "▁longitud": 25579,
+ "INST": 25580,
+ "▁naval": 25581,
+ "Fernseh": 25582,
+ "essel": 25583,
+ "Grad": 25584,
+ "▁belang": 25585,
+ "▁aggi": 25586,
+ "ZygoteInit": 25587,
+ "łów": 25588,
+ "▁Sug": 25589,
+ "sil": 25590,
+ "▁exterior": 25591,
+ "щі": 25592,
+ "ORD": 25593,
+ "enser": 25594,
+ "▁rapide": 25595,
+ "▁темпера": 25596,
+ "incie": 25597,
+ "Si": 25598,
+ "avam": 25599,
+ "arded": 25600,
+ "▁Added": 25601,
+ "Endpoint": 25602,
+ "hardt": 25603,
+ "стран": 25604,
+ "▁estilo": 25605,
+ "▁Haz": 25606,
+ "▁musste": 25607,
+ "uo": 25608,
+ "iii": 25609,
+ "▁ří": 25610,
+ "anzen": 25611,
+ "жений": 25612,
+ "aha": 25613,
+ "ARNING": 25614,
+ "▁renov": 25615,
+ "▁divine": 25616,
+ "▁convinced": 25617,
+ "▁humans": 25618,
+ "▁departure": 25619,
+ "▁Mediter": 25620,
+ "qa": 25621,
+ "▁possessed": 25622,
+ "▁церкви": 25623,
+ "giv": 25624,
+ "▁свої": 25625,
+ "▁Ortste": 25626,
+ "Rich": 25627,
+ "puis": 25628,
+ "increment": 25629,
+ "▁Hannover": 25630,
+ "▁ucz": 25631,
+ "Done": 25632,
+ "▁alguns": 25633,
+ "FIX": 25634,
+ "▁Heritage": 25635,
+ "removeClass": 25636,
+ "фер": 25637,
+ "▁abc": 25638,
+ "Dr": 25639,
+ "▁семей": 25640,
+ "{:": 25641,
+ "▁seule": 25642,
+ "zeichnungen": 25643,
+ "addy": 25644,
+ "▁París": 25645,
+ "üsseld": 25646,
+ "▁reception": 25647,
+ "folio": 25648,
+ "tiny": 25649,
+ "▁recensement": 25650,
+ "▁Nur": 25651,
+ "▁kier": 25652,
+ "▁gmina": 25653,
+ "staat": 25654,
+ "ándose": 25655,
+ "ческая": 25656,
+ "▁speaker": 25657,
+ "▁exponential": 25658,
+ "▁Dieu": 25659,
+ "▁приз": 25660,
+ "▁Rafael": 25661,
+ "▁ggplot": 25662,
+ "▁Template": 25663,
+ "oure": 25664,
+ "▁Inner": 25665,
+ "ogne": 25666,
+ "igare": 25667,
+ "▁Arte": 25668,
+ "▁Cov": 25669,
+ "▁aufgrund": 25670,
+ "▁Бы": 25671,
+ "▁ceremony": 25672,
+ "▁Spart": 25673,
+ "jective": 25674,
+ "yi": 25675,
+ "▁inizi": 25676,
+ "▁latin": 25677,
+ "▁Nevertheless": 25678,
+ "▁Done": 25679,
+ "тря": 25680,
+ "▁Arr": 25681,
+ "season": 25682,
+ "▁складу": 25683,
+ "▁podczas": 25684,
+ "▁Beautiful": 25685,
+ "▁Weltkrieg": 25686,
+ "▁зо": 25687,
+ "▁overcome": 25688,
+ "▁Praha": 25689,
+ "▁району": 25690,
+ "▁subscription": 25691,
+ "igent": 25692,
+ "▁пока": 25693,
+ "latex": 25694,
+ "▁beach": 25695,
+ "▁роках": 25696,
+ "geg": 25697,
+ "▁probl": 25698,
+ "arguments": 25699,
+ "▁organizations": 25700,
+ "▁Nan": 25701,
+ "▁stones": 25702,
+ "▁Hunter": 25703,
+ "▁regularly": 25704,
+ "шого": 25705,
+ "▁flexible": 25706,
+ "opts": 25707,
+ "ář": 25708,
+ "witz": 25709,
+ "▁')": 25710,
+ "PASS": 25711,
+ "▁kraj": 25712,
+ "▁fake": 25713,
+ "heits": 25714,
+ "osph": 25715,
+ "parseInt": 25716,
+ "FALSE": 25717,
+ "▁profess": 25718,
+ "people": 25719,
+ "▁precip": 25720,
+ "dirname": 25721,
+ "▁perpet": 25722,
+ "▁Updated": 25723,
+ "rayed": 25724,
+ "▁provoc": 25725,
+ "▁травня": 25726,
+ "▁categorie": 25727,
+ "▁тео": 25728,
+ "сну": 25729,
+ "otr": 25730,
+ "▁Верхов": 25731,
+ "▁compét": 25732,
+ "Cost": 25733,
+ "▁wider": 25734,
+ "▁Obviously": 25735,
+ "писан": 25736,
+ "▁настоя": 25737,
+ "▁seeking": 25738,
+ "()),": 25739,
+ "▁équipe": 25740,
+ "▁commits": 25741,
+ "▁Svens": 25742,
+ "ябре": 25743,
+ "atern": 25744,
+ "▁heter": 25745,
+ "▁Bootstrap": 25746,
+ "éné": 25747,
+ "▁derivatives": 25748,
+ "▁Detroit": 25749,
+ "▁provincial": 25750,
+ "onomie": 25751,
+ "EB": 25752,
+ "▁cuer": 25753,
+ "▁относи": 25754,
+ "▁ней": 25755,
+ ")».": 25756,
+ "▁Ciudad": 25757,
+ "IAL": 25758,
+ "zyst": 25759,
+ ")\")": 25760,
+ "▁Alc": 25761,
+ "blogs": 25762,
+ "▁parmi": 25763,
+ "▁Albums": 25764,
+ "▁Boliv": 25765,
+ "▁clés": 25766,
+ "Products": 25767,
+ "uerdo": 25768,
+ "▁gelang": 25769,
+ "znik": 25770,
+ "hagen": 25771,
+ "anonymous": 25772,
+ "▁svg": 25773,
+ "▁Conseil": 25774,
+ "▁Ari": 25775,
+ "coli": 25776,
+ "▁czy": 25777,
+ "▁CV": 25778,
+ "▁ford": 25779,
+ "▁Außer": 25780,
+ "▁CI": 25781,
+ "▁tempt": 25782,
+ "▁Organisation": 25783,
+ "áš": 25784,
+ "▁cycles": 25785,
+ "▁geslacht": 25786,
+ "▁людей": 25787,
+ "ými": 25788,
+ "▁Spieler": 25789,
+ "efe": 25790,
+ "▁Marvel": 25791,
+ "▁portal": 25792,
+ "▁Серг": 25793,
+ "▁grado": 25794,
+ "▁handlers": 25795,
+ "▁Interface": 25796,
+ "AME": 25797,
+ "▁seriously": 25798,
+ "▁Binding": 25799,
+ "▁Rang": 25800,
+ "▁nada": 25801,
+ "oce": 25802,
+ "▁integra": 25803,
+ "ocracy": 25804,
+ "▁альбо": 25805,
+ "▁stability": 25806,
+ "Uns": 25807,
+ "▁veter": 25808,
+ "------+": 25809,
+ "▁serait": 25810,
+ "▁omitted": 25811,
+ "▁uncertainty": 25812,
+ "onian": 25813,
+ "▁resto": 25814,
+ "▁желез": 25815,
+ "▁одной": 25816,
+ "▁Bevölkerung": 25817,
+ "▁Kraft": 25818,
+ "стр": 25819,
+ "▁Moscow": 25820,
+ "lane": 25821,
+ "arab": 25822,
+ "▁spole": 25823,
+ "▁своего": 25824,
+ "?:": 25825,
+ "START": 25826,
+ "▁интер": 25827,
+ "▁sympt": 25828,
+ "▁Lorenzo": 25829,
+ "▁ejec": 25830,
+ "▁prosper": 25831,
+ "DAT": 25832,
+ "лимпий": 25833,
+ "▁shapes": 25834,
+ "valueOf": 25835,
+ "▁associate": 25836,
+ "▁Medien": 25837,
+ "ENV": 25838,
+ "▁сре": 25839,
+ "▁државе": 25840,
+ "▁theories": 25841,
+ "heb": 25842,
+ "▁Wayne": 25843,
+ "▁StringBuilder": 25844,
+ "iwers": 25845,
+ "▁Maps": 25846,
+ "Phys": 25847,
+ "\\}\\": 25848,
+ "▁Parte": 25849,
+ "▁Hudson": 25850,
+ "лон": 25851,
+ "Lng": 25852,
+ "▁ры": 25853,
+ "стей": 25854,
+ "lau": 25855,
+ "ancer": 25856,
+ "▁Coppa": 25857,
+ "▁війсь": 25858,
+ "▁ucc": 25859,
+ "▁Pattern": 25860,
+ "▁garbage": 25861,
+ "▁González": 25862,
+ "▁Encyclop": 25863,
+ "etten": 25864,
+ "External": 25865,
+ "REF": 25866,
+ ">;": 25867,
+ "lijke": 25868,
+ "▁intersect": 25869,
+ "▁Unless": 25870,
+ "▁deeper": 25871,
+ "▁жі": 25872,
+ "dent": 25873,
+ "lef": 25874,
+ "▁chanson": 25875,
+ "▁diffus": 25876,
+ "▁primi": 25877,
+ "▁Wieder": 25878,
+ "▁aws": 25879,
+ "owana": 25880,
+ "▁sociale": 25881,
+ "ikk": 25882,
+ "льной": 25883,
+ "▁divisions": 25884,
+ "лосо": 25885,
+ "▁Claud": 25886,
+ "▁Ya": 25887,
+ "▁voce": 25888,
+ "▁Branch": 25889,
+ "▁fitted": 25890,
+ "orr": 25891,
+ "ôtel": 25892,
+ "stroke": 25893,
+ "listener": 25894,
+ "iman": 25895,
+ "восто": 25896,
+ "▁Shah": 25897,
+ "Introduction": 25898,
+ "▁newline": 25899,
+ "▁tile": 25900,
+ "']))": 25901,
+ "▁travaux": 25902,
+ "CONFIG": 25903,
+ "▁quadratic": 25904,
+ "onneur": 25905,
+ "▁Giorg": 25906,
+ "▁identific": 25907,
+ "éricaine": 25908,
+ "▁UIView": 25909,
+ "▁Liberal": 25910,
+ "▁Koch": 25911,
+ "▁Berliner": 25912,
+ "▁notifications": 25913,
+ "▁Susan": 25914,
+ "▁cadre": 25915,
+ "▁Kloster": 25916,
+ "▁examine": 25917,
+ "▁един": 25918,
+ "▁UNION": 25919,
+ "▁alten": 25920,
+ "▁finit": 25921,
+ "▁pedig": 25922,
+ "cyk": 25923,
+ "▁mouvement": 25924,
+ "IOS": 25925,
+ "▁британ": 25926,
+ "▁bout": 25927,
+ "▁автор": 25928,
+ "ництво": 25929,
+ "ето": 25930,
+ "lera": 25931,
+ "cls": 25932,
+ "▁Ley": 25933,
+ "amy": 25934,
+ "agens": 25935,
+ "ashed": 25936,
+ "▁okrę": 25937,
+ "гро": 25938,
+ "ellett": 25939,
+ "▁Fellow": 25940,
+ "▁manifold": 25941,
+ "$),": 25942,
+ "lder": 25943,
+ "▁voz": 25944,
+ "▁begg": 25945,
+ "▁baron": 25946,
+ "▁fid": 25947,
+ "▁firing": 25948,
+ "ilda": 25949,
+ "dek": 25950,
+ "AU": 25951,
+ "itare": 25952,
+ "▁Ara": 25953,
+ "▁Exit": 25954,
+ "▁cinemat": 25955,
+ "▁intros": 25956,
+ "▁contacts": 25957,
+ "пени": 25958,
+ "▁möglich": 25959,
+ "▁Singapore": 25960,
+ "ström": 25961,
+ "▁Hern": 25962,
+ "▁sixth": 25963,
+ "▁publications": 25964,
+ "vie": 25965,
+ "▁Hat": 25966,
+ "▁accepting": 25967,
+ "ác": 25968,
+ "stwo": 25969,
+ "▁quietly": 25970,
+ "Photo": 25971,
+ "▁basket": 25972,
+ "▁eigenvalues": 25973,
+ "▁médec": 25974,
+ "▁Olimp": 25975,
+ "▁церков": 25976,
+ "alin": 25977,
+ "consum": 25978,
+ "▁lassen": 25979,
+ "▁анти": 25980,
+ "▁Seq": 25981,
+ "\";\r": 25982,
+ "rare": 25983,
+ "▁$|\\": 25984,
+ "▁nick": 25985,
+ "dflare": 25986,
+ "Vec": 25987,
+ "bindung": 25988,
+ "▁bg": 25989,
+ "changes": 25990,
+ "Days": 25991,
+ "▁Mouse": 25992,
+ "▁waited": 25993,
+ "▁Tomatoes": 25994,
+ "▁fas": 25995,
+ "verte": 25996,
+ "▁succession": 25997,
+ "сор": 25998,
+ "▁sols": 25999,
+ "▁Render": 26000,
+ "▁leadership": 26001,
+ "▁significance": 26002,
+ "▁gauche": 26003,
+ "cano": 26004,
+ "▁Pie": 26005,
+ "ensoort": 26006,
+ "▁cambio": 26007,
+ "▁уз": 26008,
+ "▁endeav": 26009,
+ "Completed": 26010,
+ "▁Архивная": 26011,
+ "jd": 26012,
+ "órico": 26013,
+ "▁churches": 26014,
+ "▁animate": 26015,
+ "SG": 26016,
+ "compute": 26017,
+ "▁uniformly": 26018,
+ "INIT": 26019,
+ "lles": 26020,
+ "HttpRequest": 26021,
+ "Ко": 26022,
+ "Diff": 26023,
+ "▁sah": 26024,
+ "airo": 26025,
+ "maybe": 26026,
+ "UTE": 26027,
+ "▁Dow": 26028,
+ "human": 26029,
+ "▁aurait": 26030,
+ "dark": 26031,
+ "▁repair": 26032,
+ "▁ner": 26033,
+ "▁Dabei": 26034,
+ "▁Botan": 26035,
+ "Original": 26036,
+ "ază": 26037,
+ "▁NAT": 26038,
+ "imper": 26039,
+ "▁Youth": 26040,
+ "thes": 26041,
+ "▁округа": 26042,
+ "▁Flo": 26043,
+ "▁breakfast": 26044,
+ "urls": 26045,
+ "▁übernahm": 26046,
+ "ários": 26047,
+ "▁Orange": 26048,
+ "▁Affairs": 26049,
+ "ske": 26050,
+ "▁notify": 26051,
+ "imoine": 26052,
+ "▁Arena": 26053,
+ "▁liberal": 26054,
+ "▁obec": 26055,
+ "ifa": 26056,
+ "guez": 26057,
+ "iono": 26058,
+ "ператор": 26059,
+ "▁retained": 26060,
+ "failed": 26061,
+ "bine": 26062,
+ "тных": 26063,
+ "▁CGRect": 26064,
+ "camera": 26065,
+ "idenote": 26066,
+ "KB": 26067,
+ "▁lights": 26068,
+ "▁Pictures": 26069,
+ "▁Squadron": 26070,
+ "▁Volk": 26071,
+ "▁burg": 26072,
+ ",]": 26073,
+ "Gi": 26074,
+ "êque": 26075,
+ "makeText": 26076,
+ "▁everybody": 26077,
+ "▁Hyper": 26078,
+ "▁Deux": 26079,
+ "▁glory": 26080,
+ "presentation": 26081,
+ "onica": 26082,
+ "▁frère": 26083,
+ "aget": 26084,
+ "▁hints": 26085,
+ "▁tunnel": 26086,
+ "▁Ej": 26087,
+ "ális": 26088,
+ "▁Viv": 26089,
+ "ственных": 26090,
+ "▁caps": 26091,
+ "PART": 26092,
+ "oci": 26093,
+ "▁prices": 26094,
+ "currency": 26095,
+ "▁achter": 26096,
+ "romagnet": 26097,
+ "gender": 26098,
+ "▁suis": 26099,
+ "versions": 26100,
+ "▁Training": 26101,
+ "inside": 26102,
+ "ege": 26103,
+ "▁totale": 26104,
+ "▁Daar": 26105,
+ "▁grudnia": 26106,
+ "▁Ier": 26107,
+ "▁occasions": 26108,
+ "▁kde": 26109,
+ "▁tensorflow": 26110,
+ "▁ór": 26111,
+ "Methods": 26112,
+ "▁looping": 26113,
+ "▁directeur": 26114,
+ "kę": 26115,
+ "▁isomorphism": 26116,
+ "▁João": 26117,
+ "▁aligned": 26118,
+ "онов": 26119,
+ "urger": 26120,
+ "▁nova": 26121,
+ "morrow": 26122,
+ "altern": 26123,
+ "HD": 26124,
+ "▁marqu": 26125,
+ "ativas": 26126,
+ "ggreg": 26127,
+ "▁ancien": 26128,
+ "nit": 26129,
+ "▁secured": 26130,
+ "mier": 26131,
+ "▁Ole": 26132,
+ "▁инте": 26133,
+ "▁minus": 26134,
+ "▁clearer": 26135,
+ "▁nello": 26136,
+ "▁információk": 26137,
+ "▁propre": 26138,
+ "{.": 26139,
+ "ilog": 26140,
+ "▁Quick": 26141,
+ "▁accus": 26142,
+ "employee": 26143,
+ "▁зу": 26144,
+ "цький": 26145,
+ "фіцій": 26146,
+ "▁публи": 26147,
+ "▁bent": 26148,
+ "▁позво": 26149,
+ "▁Пор": 26150,
+ "ází": 26151,
+ "ánico": 26152,
+ "emptyset": 26153,
+ "▁surtout": 26154,
+ "reno": 26155,
+ "unya": 26156,
+ "▁уез": 26157,
+ "▁Millionen": 26158,
+ "▁listopada": 26159,
+ "▁Maine": 26160,
+ "▁grupos": 26161,
+ "▁Storage": 26162,
+ "▁apple": 26163,
+ "▁Lö": 26164,
+ "oused": 26165,
+ "дро": 26166,
+ "sci": 26167,
+ "▁hibernate": 26168,
+ "dog": 26169,
+ "▁восто": 26170,
+ "▁intensity": 26171,
+ "legend": 26172,
+ "▁Wille": 26173,
+ "▁szerint": 26174,
+ "gesellschaft": 26175,
+ "▁Living": 26176,
+ "allo": 26177,
+ "▁Split": 26178,
+ "dru": 26179,
+ "need": 26180,
+ "▁Джон": 26181,
+ "▁Swiss": 26182,
+ "▁spraw": 26183,
+ "▁beho": 26184,
+ "▁fotograf": 26185,
+ "▁rencontre": 26186,
+ "▁kis": 26187,
+ "▁signing": 26188,
+ "akult": 26189,
+ "▁indexing": 26190,
+ "apor": 26191,
+ "▁conception": 26192,
+ "aggreg": 26193,
+ "▁Савез": 26194,
+ "▁affair": 26195,
+ "ění": 26196,
+ "August": 26197,
+ "▁секре": 26198,
+ "▁mieszkań": 26199,
+ "UIImage": 26200,
+ "▁bishop": 26201,
+ "▁servants": 26202,
+ "▁trail": 26203,
+ "digit": 26204,
+ "▁joins": 26205,
+ "▁Near": 26206,
+ "öffentlich": 26207,
+ ">{": 26208,
+ "▁skład": 26209,
+ "geführt": 26210,
+ "▁Holz": 26211,
+ "▁Militär": 26212,
+ "achi": 26213,
+ "Upper": 26214,
+ "pine": 26215,
+ "utzt": 26216,
+ "▁nuova": 26217,
+ "ibration": 26218,
+ "▁Bien": 26219,
+ "▁первый": 26220,
+ "▁Creating": 26221,
+ "Once": 26222,
+ "▁einmal": 26223,
+ "▁geometric": 26224,
+ "stvo": 26225,
+ "▁kW": 26226,
+ "▁decomposition": 26227,
+ "▁comedy": 26228,
+ "▁activation": 26229,
+ "▁angry": 26230,
+ "illeurs": 26231,
+ "▁instantly": 26232,
+ "▁suggesting": 26233,
+ "▁Clay": 26234,
+ "cot": 26235,
+ "▁Gén": 26236,
+ "($(": 26237,
+ "unwrap": 26238,
+ "▁lifted": 26239,
+ "▁Kit": 26240,
+ "▁linea": 26241,
+ "ок": 26242,
+ "hart": 26243,
+ "->_": 26244,
+ "▁nuit": 26245,
+ "▁Issue": 26246,
+ "лии": 26247,
+ "▁röm": 26248,
+ "Tasks": 26249,
+ "▁Sr": 26250,
+ "▁seis": 26251,
+ "asia": 26252,
+ "}}$.": 26253,
+ ":{": 26254,
+ "controls": 26255,
+ "▁Stim": 26256,
+ "▁Recht": 26257,
+ "ociación": 26258,
+ "▁Natal": 26259,
+ "▁Philippines": 26260,
+ "ulen": 26261,
+ "Fixed": 26262,
+ "▁switched": 26263,
+ "Zip": 26264,
+ "ospel": 26265,
+ "▁начале": 26266,
+ "▁Blan": 26267,
+ "urst": 26268,
+ "▁autour": 26269,
+ "Ca": 26270,
+ "▁latitude": 26271,
+ "▁Frei": 26272,
+ "▁Musée": 26273,
+ "▁Kurz": 26274,
+ "▁região": 26275,
+ "swap": 26276,
+ "▁hate": 26277,
+ "▁modifications": 26278,
+ "▁Ком": 26279,
+ "▁Antoine": 26280,
+ "uga": 26281,
+ "RECT": 26282,
+ "éter": 26283,
+ "GROUP": 26284,
+ "▁sacrific": 26285,
+ "▁Whe": 26286,
+ "▁Stevens": 26287,
+ "ologische": 26288,
+ "Summary": 26289,
+ "obs": 26290,
+ "hnen": 26291,
+ "<%=": 26292,
+ "dienst": 26293,
+ "remark": 26294,
+ "▁veröffentlicht": 26295,
+ "ел": 26296,
+ "▁Mock": 26297,
+ "▁Льв": 26298,
+ "▁três": 26299,
+ "gb": 26300,
+ "▁celebrated": 26301,
+ "▁Eb": 26302,
+ "▁costa": 26303,
+ "▁Geographic": 26304,
+ "▁attachment": 26305,
+ "mannschaft": 26306,
+ "▁dependence": 26307,
+ "��": 26308,
+ "▁attitude": 26309,
+ "etal": 26310,
+ "vic": 26311,
+ "baut": 26312,
+ "▁дов": 26313,
+ "▁interven": 26314,
+ "▁Gü": 26315,
+ "ónica": 26316,
+ "▁Pon": 26317,
+ "▁disponible": 26318,
+ "▁Feb": 26319,
+ "▁worship": 26320,
+ "▁Specifically": 26321,
+ "Hy": 26322,
+ "iju": 26323,
+ "▁cb": 26324,
+ "▁spac": 26325,
+ "leveland": 26326,
+ "▁localidad": 26327,
+ "▁preceding": 26328,
+ "▁Hessen": 26329,
+ "xp": 26330,
+ "▁Wein": 26331,
+ "▁Româ": 26332,
+ "▁giorno": 26333,
+ "▁квітня": 26334,
+ "llaços": 26335,
+ "▁Academia": 26336,
+ "▁kül": 26337,
+ "▁Års": 26338,
+ "▁нај": 26339,
+ "uclide": 26340,
+ "Internet": 26341,
+ "orton": 26342,
+ "▁corn": 26343,
+ "ями": 26344,
+ "▁\"*": 26345,
+ "▁Felix": 26346,
+ "apat": 26347,
+ "▁свои": 26348,
+ "MIT": 26349,
+ "made": 26350,
+ "▁locomot": 26351,
+ "хода": 26352,
+ "FP": 26353,
+ "▁pm": 26354,
+ ".*;": 26355,
+ "▁Hamm": 26356,
+ "`}": 26357,
+ "LayoutInflater": 26358,
+ "==\"": 26359,
+ "▁Eur": 26360,
+ "▁dogs": 26361,
+ "жении": 26362,
+ "▁azon": 26363,
+ "▁emulator": 26364,
+ "▁ricon": 26365,
+ "beeld": 26366,
+ "▁ну": 26367,
+ "▁approximate": 26368,
+ "LM": 26369,
+ "▁Bond": 26370,
+ "▁enh": 26371,
+ "ędz": 26372,
+ "▁solit": 26373,
+ "RelativeLayout": 26374,
+ "eteor": 26375,
+ "amentos": 26376,
+ "▁indirect": 26377,
+ "iből": 26378,
+ "▁gros": 26379,
+ "▁Originals": 26380,
+ "commands": 26381,
+ "Export": 26382,
+ "▁Avec": 26383,
+ "▁solemn": 26384,
+ "▁correction": 26385,
+ "▁проводи": 26386,
+ "▁Mosk": 26387,
+ "▁подо": 26388,
+ "▁gebied": 26389,
+ "▁następ": 26390,
+ "▁Driver": 26391,
+ "▁Ook": 26392,
+ "▁Vec": 26393,
+ "▁lungo": 26394,
+ "ficos": 26395,
+ "▁svol": 26396,
+ "▁kid": 26397,
+ "nja": 26398,
+ "▁Hr": 26399,
+ "▁поддер": 26400,
+ "▁visibility": 26401,
+ "▁Méd": 26402,
+ "▁cpu": 26403,
+ "discussion": 26404,
+ "Asset": 26405,
+ "▁defense": 26406,
+ "▁Anyone": 26407,
+ "▁Justin": 26408,
+ "iszt": 26409,
+ "▁Collins": 26410,
+ "▁Valent": 26411,
+ "▁Pale": 26412,
+ "▁fuel": 26413,
+ "▁nose": 26414,
+ "ríguez": 26415,
+ "▁Schles": 26416,
+ "▁Malays": 26417,
+ "▁commut": 26418,
+ "dro": 26419,
+ "uing": 26420,
+ "▁Rico": 26421,
+ "▁Emma": 26422,
+ "orp": 26423,
+ "▁Kirk": 26424,
+ "▁Quando": 26425,
+ "▁Neue": 26426,
+ "▁demande": 26427,
+ "▁Cover": 26428,
+ "▁rescue": 26429,
+ "▁gewählt": 26430,
+ "▁Calendar": 26431,
+ "▁Madonna": 26432,
+ "WP": 26433,
+ "oshi": 26434,
+ "▁Maven": 26435,
+ "▁belle": 26436,
+ "▁wx": 26437,
+ "▁sugar": 26438,
+ "▁Betrieb": 26439,
+ "▁equilibrium": 26440,
+ "EAR": 26441,
+ "▁texts": 26442,
+ "слов": 26443,
+ "▁czerwca": 26444,
+ "▁Düsseld": 26445,
+ "▁ELSE": 26446,
+ "▁amery": 26447,
+ "▁ani": 26448,
+ "▁obey": 26449,
+ "▁Nell": 26450,
+ "▁inne": 26451,
+ "▁тро": 26452,
+ "FD": 26453,
+ "cco": 26454,
+ "▁Zob": 26455,
+ "alette": 26456,
+ "▁május": 26457,
+ "ected": 26458,
+ "▁Turkey": 26459,
+ "▁Whether": 26460,
+ "qi": 26461,
+ "▁што": 26462,
+ "▁headquarters": 26463,
+ "endi": 26464,
+ "arus": 26465,
+ "opus": 26466,
+ "▁золо": 26467,
+ "▁destru": 26468,
+ "▁Lok": 26469,
+ "▁satisfaction": 26470,
+ "()\r": 26471,
+ "▁Тер": 26472,
+ "Jose": 26473,
+ "▁conquer": 26474,
+ "▁Effect": 26475,
+ "LayoutParams": 26476,
+ "iez": 26477,
+ "▁externs": 26478,
+ "▁gegenüber": 26479,
+ "▁ESP": 26480,
+ "olta": 26481,
+ "processor": 26482,
+ "▁Kult": 26483,
+ "▁Atlanta": 26484,
+ "▁tier": 26485,
+ "Operator": 26486,
+ "▁диа": 26487,
+ "▁пись": 26488,
+ "▁groß": 26489,
+ "▁hearts": 26490,
+ "▁millimeter": 26491,
+ "although": 26492,
+ "alles": 26493,
+ "▁Magic": 26494,
+ "training": 26495,
+ "oline": 26496,
+ "▁органі": 26497,
+ ">\\<^": 26498,
+ "ціаль": 26499,
+ "exports": 26500,
+ "Workbook": 26501,
+ "▁вересня": 26502,
+ "▁teles": 26503,
+ "▁economy": 26504,
+ "▁trap": 26505,
+ "▁refuse": 26506,
+ "▁stranger": 26507,
+ "▁instinct": 26508,
+ "пода": 26509,
+ "olan": 26510,
+ "▁ning": 26511,
+ "inflate": 26512,
+ "itatea": 26513,
+ "acks": 26514,
+ "▁Joy": 26515,
+ "FLAG": 26516,
+ "ailand": 26517,
+ "▁sorti": 26518,
+ "▁впер": 26519,
+ "▁pén": 26520,
+ "Nothing": 26521,
+ "▁száz": 26522,
+ "▁Áng": 26523,
+ "▁AUT": 26524,
+ "Actions": 26525,
+ "Every": 26526,
+ "▁червня": 26527,
+ "▁автомо": 26528,
+ "▁routine": 26529,
+ "▁estruct": 26530,
+ "▁Gang": 26531,
+ "▁holes": 26532,
+ "thesis": 26533,
+ "▁concl": 26534,
+ "▁pé": 26535,
+ "riers": 26536,
+ "ровой": 26537,
+ "adic": 26538,
+ "Speed": 26539,
+ "▁commanded": 26540,
+ "▁Nazionale": 26541,
+ "Managed": 26542,
+ "▁DECLARE": 26543,
+ "▁sedan": 26544,
+ "Strings": 26545,
+ "▁sacred": 26546,
+ "tersuch": 26547,
+ "▁abitanti": 26548,
+ "brit": 26549,
+ "▁NCAA": 26550,
+ "▁СП": 26551,
+ "▁aged": 26552,
+ "▁Chiesa": 26553,
+ "▁revision": 26554,
+ "opro": 26555,
+ "▁overwrite": 26556,
+ "embros": 26557,
+ "▁sortie": 26558,
+ "▁otten": 26559,
+ "xiv": 26560,
+ "▁deli": 26561,
+ "▁Asp": 26562,
+ "▁balls": 26563,
+ "kaf": 26564,
+ "▁brave": 26565,
+ "▁всего": 26566,
+ "egn": 26567,
+ "jpeg": 26568,
+ "▁Osten": 26569,
+ "Constants": 26570,
+ "▁Infantry": 26571,
+ "▁Nev": 26572,
+ "▁яких": 26573,
+ "▁муниципа": 26574,
+ "cija": 26575,
+ "▁poem": 26576,
+ "▁negro": 26577,
+ "хар": 26578,
+ "▁Ask": 26579,
+ "▁avo": 26580,
+ "▁Meyer": 26581,
+ "▁Westen": 26582,
+ "▁oko": 26583,
+ "agin": 26584,
+ "▁Süden": 26585,
+ "entries": 26586,
+ "▁Republik": 26587,
+ "CollectionView": 26588,
+ "-------": 26589,
+ "▁firefox": 26590,
+ "▁alcune": 26591,
+ "▁фото": 26592,
+ "▁отрима": 26593,
+ "~~~~~~~~": 26594,
+ "▁Раз": 26595,
+ "▁Complex": 26596,
+ "▁pia": 26597,
+ "▁publicada": 26598,
+ "wei": 26599,
+ "cedure": 26600,
+ "occupation": 26601,
+ "▁medicine": 26602,
+ "▁drove": 26603,
+ "Problem": 26604,
+ "▁beginner": 26605,
+ "▁thoroughly": 26606,
+ "uria": 26607,
+ "avant": 26608,
+ "ucha": 26609,
+ "▁lever": 26610,
+ "▁teatro": 26611,
+ "AVA": 26612,
+ "squ": 26613,
+ "trat": 26614,
+ "ivatal": 26615,
+ "▁dirty": 26616,
+ "▁seconde": 26617,
+ "▁gravit": 26618,
+ "▁proposition": 26619,
+ "hbar": 26620,
+ "omini": 26621,
+ "▁”": 26622,
+ "▁Camil": 26623,
+ "▁queen": 26624,
+ "modifier": 26625,
+ "Jan": 26626,
+ "▁lyr": 26627,
+ "ComboBox": 26628,
+ "ionic": 26629,
+ "▁holy": 26630,
+ "▁Sebastian": 26631,
+ "|_{": 26632,
+ "▁{@": 26633,
+ "▁можно": 26634,
+ "▁Creative": 26635,
+ "▁interess": 26636,
+ "▁CT": 26637,
+ "ições": 26638,
+ "▁chant": 26639,
+ "▁współ": 26640,
+ "▁Мексика": 26641,
+ "▁ranked": 26642,
+ "▁października": 26643,
+ "▁brut": 26644,
+ "▁farther": 26645,
+ "▁Verb": 26646,
+ "▁Seven": 26647,
+ "lbl": 26648,
+ "▁mentions": 26649,
+ "▁Fight": 26650,
+ "ifen": 26651,
+ "▁bog": 26652,
+ "▁regres": 26653,
+ "▁scoring": 26654,
+ "icane": 26655,
+ "▁Elli": 26656,
+ "▁pierw": 26657,
+ "measure": 26658,
+ "ńskiej": 26659,
+ "#{": 26660,
+ "▁деся": 26661,
+ "▁varmaste": 26662,
+ "▁Unix": 26663,
+ "IZ": 26664,
+ "itié": 26665,
+ "Primary": 26666,
+ "▁Springer": 26667,
+ "üng": 26668,
+ "▁anv": 26669,
+ "▁versione": 26670,
+ "▁shoulders": 26671,
+ "▁брига": 26672,
+ "▁jav": 26673,
+ "ltal": 26674,
+ "▁kallaste": 26675,
+ "▁Mitchell": 26676,
+ "▁wireless": 26677,
+ "▁Ál": 26678,
+ "respons": 26679,
+ "could": 26680,
+ "▁relax": 26681,
+ "Lond": 26682,
+ "ńcz": 26683,
+ "ствовал": 26684,
+ "▁polski": 26685,
+ "enç": 26686,
+ "zar": 26687,
+ "▁dtype": 26688,
+ "owned": 26689,
+ "unknown": 26690,
+ "▁mutable": 26691,
+ "▁siempre": 26692,
+ "▁Montreal": 26693,
+ "▁locate": 26694,
+ "▁traces": 26695,
+ "▁insgesamt": 26696,
+ "▁Nil": 26697,
+ "▁прода": 26698,
+ "▁Warner": 26699,
+ "▁Nau": 26700,
+ "triangle": 26701,
+ "▁concentration": 26702,
+ "▁gentlemen": 26703,
+ "ächt": 26704,
+ "filters": 26705,
+ "incipal": 26706,
+ "VALID": 26707,
+ "▁депута": 26708,
+ "adó": 26709,
+ "▁konst": 26710,
+ "gså": 26711,
+ "agas": 26712,
+ "▁meilleur": 26713,
+ "▁данным": 26714,
+ "єдна": 26715,
+ "encoded": 26716,
+ "<'": 26717,
+ "▁sheets": 26718,
+ "cuador": 26719,
+ "▁використову": 26720,
+ "▁Deput": 26721,
+ "▁manière": 26722,
+ "ąg": 26723,
+ "csol": 26724,
+ ")$-": 26725,
+ "UIView": 26726,
+ "▁millones": 26727,
+ "▁Ehren": 26728,
+ "Sil": 26729,
+ "▁atac": 26730,
+ "▁Cold": 26731,
+ "\"\\": 26732,
+ "▁approached": 26733,
+ "▁Årsmed": 26734,
+ "WM": 26735,
+ "▁Deport": 26736,
+ "mis": 26737,
+ "andbox": 26738,
+ "observ": 26739,
+ "setting": 26740,
+ "ható": 26741,
+ "▁strat": 26742,
+ "▁spre": 26743,
+ "▁personne": 26744,
+ "▁dirige": 26745,
+ "pull": 26746,
+ "dating": 26747,
+ "▁Fact": 26748,
+ "▁manipulate": 26749,
+ "▁MAC": 26750,
+ "▁dej": 26751,
+ "ultimo": 26752,
+ "FX": 26753,
+ "Life": 26754,
+ "▁crack": 26755,
+ "▁mí": 26756,
+ "▁пове": 26757,
+ "▁wore": 26758,
+ "université": 26759,
+ "▁formulas": 26760,
+ "▁Elisabeth": 26761,
+ "plots": 26762,
+ "mile": 26763,
+ "▁menor": 26764,
+ "тил": 26765,
+ "keyword": 26766,
+ "▁Baltimore": 26767,
+ "hrer": 26768,
+ "▁Clement": 26769,
+ "vim": 26770,
+ "rass": 26771,
+ "Take": 26772,
+ "▁című": 26773,
+ "▁Convention": 26774,
+ "atge": 26775,
+ "seed": 26776,
+ "▁Dí": 26777,
+ "▁Spider": 26778,
+ "ahoo": 26779,
+ "▁имеет": 26780,
+ "ührt": 26781,
+ "▁пописа": 26782,
+ "▁Cot": 26783,
+ "▁nobles": 26784,
+ "RESS": 26785,
+ "▁chemin": 26786,
+ "▁główn": 26787,
+ "GG": 26788,
+ "▁Germania": 26789,
+ "▁Alexandre": 26790,
+ "hens": 26791,
+ "swift": 26792,
+ "oop": 26793,
+ "Subview": 26794,
+ "▁requiring": 26795,
+ "ędzy": 26796,
+ "▁fict": 26797,
+ "▁Констан": 26798,
+ "▁déput": 26799,
+ "▁surprising": 26800,
+ "▁deix": 26801,
+ "▁unterschied": 26802,
+ "inson": 26803,
+ "▁Character": 26804,
+ "▁gestion": 26805,
+ "chus": 26806,
+ "comes": 26807,
+ "▁neur": 26808,
+ "▁yeux": 26809,
+ "ollar": 26810,
+ "▁parad": 26811,
+ "▁maggiore": 26812,
+ "TRAN": 26813,
+ "▁votre": 26814,
+ "▁descent": 26815,
+ "▁Icon": 26816,
+ "▁Judge": 26817,
+ "▁occupation": 26818,
+ "eping": 26819,
+ "▁tongue": 26820,
+ "▁Enllaços": 26821,
+ "ruf": 26822,
+ "▁protein": 26823,
+ "▁visitors": 26824,
+ "axy": 26825,
+ "esten": 26826,
+ "blica": 26827,
+ "hw": 26828,
+ "▁spirits": 26829,
+ "▁reduces": 26830,
+ "▁мен": 26831,
+ "▁Lamb": 26832,
+ "▁Mine": 26833,
+ "▁verified": 26834,
+ "▁Baby": 26835,
+ "▁prize": 26836,
+ "вър": 26837,
+ "▁ratings": 26838,
+ "▁fore": 26839,
+ "asha": 26840,
+ "urrence": 26841,
+ "▁intér": 26842,
+ "▁Olímp": 26843,
+ "cra": 26844,
+ "▁computational": 26845,
+ "irche": 26846,
+ ".: ": 26847,
+ "▁illustrated": 26848,
+ "▁Share": 26849,
+ "▁households": 26850,
+ "▁convolution": 26851,
+ "oemd": 26852,
+ "▁zdoby": 26853,
+ "ccc": 26854,
+ "▁quantities": 26855,
+ "Che": 26856,
+ "Should": 26857,
+ "▁genius": 26858,
+ "adj": 26859,
+ "хва": 26860,
+ "Петер": 26861,
+ "EMA": 26862,
+ "▁Rights": 26863,
+ "▁Eli": 26864,
+ "VAR": 26865,
+ "шло": 26866,
+ "▁збір": 26867,
+ "iftung": 26868,
+ "▁contributed": 26869,
+ "zef": 26870,
+ "▁CHAR": 26871,
+ "▁Sib": 26872,
+ "▁Mant": 26873,
+ "▁связи": 26874,
+ "▁javafx": 26875,
+ "▁cependant": 26876,
+ "▁intu": 26877,
+ "▁твор": 26878,
+ "▁Ó": 26879,
+ "guer": 26880,
+ "rado": 26881,
+ "▁Revol": 26882,
+ "▁fémin": 26883,
+ "▁Orleans": 26884,
+ "▁poj": 26885,
+ "▁prez": 26886,
+ "Tex": 26887,
+ "ouwd": 26888,
+ "?(": 26889,
+ "▁LIM": 26890,
+ "istique": 26891,
+ "esar": 26892,
+ "▁heures": 26893,
+ "icki": 26894,
+ "▁dbo": 26895,
+ "skih": 26896,
+ "confirm": 26897,
+ "▁világ": 26898,
+ "▁ciutat": 26899,
+ "▁DR": 26900,
+ "▁Hawai": 26901,
+ "ched": 26902,
+ "▁spher": 26903,
+ "▁Artikel": 26904,
+ "▁Multiple": 26905,
+ "ciu": 26906,
+ "▁мы": 26907,
+ "▁lipca": 26908,
+ "](/": 26909,
+ "Strategy": 26910,
+ "▁Alabama": 26911,
+ "SDK": 26912,
+ "UTC": 26913,
+ "__.": 26914,
+ "Arguments": 26915,
+ "▁setContentView": 26916,
+ "île": 26917,
+ "ByVal": 26918,
+ "▁JVM": 26919,
+ "ющего": 26920,
+ "▁Leonard": 26921,
+ "▁justify": 26922,
+ "цем": 26923,
+ "▁nab": 26924,
+ "CCESS": 26925,
+ "▁hopes": 26926,
+ ")&": 26927,
+ "sero": 26928,
+ "▁зай": 26929,
+ "слід": 26930,
+ "▁Rég": 26931,
+ "▁Sang": 26932,
+ "▁fung": 26933,
+ "baar": 26934,
+ "▁coffee": 26935,
+ "assembly": 26936,
+ "▁Він": 26937,
+ "эй": 26938,
+ "▁comprend": 26939,
+ "filled": 26940,
+ "рд": 26941,
+ "odia": 26942,
+ "▁gens": 26943,
+ "fluss": 26944,
+ "Drawable": 26945,
+ "▁surve": 26946,
+ "Setup": 26947,
+ "▁należ": 26948,
+ "▁conjunto": 26949,
+ "▁Его": 26950,
+ "▁oldal": 26951,
+ "▁verbose": 26952,
+ "▁Electric": 26953,
+ "▁Harrison": 26954,
+ "engen": 26955,
+ "paragraph": 26956,
+ "▁nouvelles": 26957,
+ "▁време": 26958,
+ "▁memor": 26959,
+ "▁mayoría": 26960,
+ "сад": 26961,
+ "▁bataille": 26962,
+ "▁thermal": 26963,
+ "▁Хронологи": 26964,
+ "▁Better": 26965,
+ "bye": 26966,
+ "▁театра": 26967,
+ "roe": 26968,
+ "▁segle": 26969,
+ "rott": 26970,
+ "▁opinions": 26971,
+ ")})": 26972,
+ "ühle": 26973,
+ "▁Gün": 26974,
+ "▁Щ": 26975,
+ "ból": 26976,
+ "▁Larry": 26977,
+ "▁solic": 26978,
+ "▁zwar": 26979,
+ "▁Caroline": 26980,
+ "▁Reichs": 26981,
+ "Extensions": 26982,
+ "migr": 26983,
+ ":@": 26984,
+ "▁enumerate": 26985,
+ "▁eigenen": 26986,
+ "▁explore": 26987,
+ "ému": 26988,
+ "▁gat": 26989,
+ "▁imperial": 26990,
+ "▁Usually": 26991,
+ "▁tud": 26992,
+ "▁укра": 26993,
+ "him": 26994,
+ "▁corners": 26995,
+ "▁SER": 26996,
+ "▁interpreter": 26997,
+ "▁Ice": 26998,
+ "▁amounts": 26999,
+ "▁Pala": 27000,
+ "▁tinha": 27001,
+ "vole": 27002,
+ "▁gle": 27003,
+ "ucci": 27004,
+ "▁siehe": 27005,
+ "Jack": 27006,
+ "▁woll": 27007,
+ "▁elder": 27008,
+ "▁кораб": 27009,
+ "▁engag": 27010,
+ "▁Laurent": 27011,
+ "▁achiev": 27012,
+ "istik": 27013,
+ "arct": 27014,
+ "тного": 27015,
+ "▁gir": 27016,
+ "▁Singh": 27017,
+ "mathop": 27018,
+ "USA": 27019,
+ "▁Projekt": 27020,
+ "▁debe": 27021,
+ "richtung": 27022,
+ "▁Tsch": 27023,
+ "uminate": 27024,
+ "▁szó": 27025,
+ "lyph": 27026,
+ "зидент": 27027,
+ "▁limitations": 27028,
+ "ющей": 27029,
+ "▁bila": 27030,
+ "Push": 27031,
+ "▁offering": 27032,
+ "iennes": 27033,
+ "Fri": 27034,
+ "▁postgresql": 27035,
+ "▁Tommy": 27036,
+ "▁particolare": 27037,
+ "▁století": 27038,
+ "▁arrib": 27039,
+ "▁Eva": 27040,
+ "school": 27041,
+ "▁vendor": 27042,
+ "▁Dallas": 27043,
+ "▁prolong": 27044,
+ "CREATE": 27045,
+ "▁suivante": 27046,
+ "STATUS": 27047,
+ "là": 27048,
+ "kv": 27049,
+ "▁häufig": 27050,
+ "▁Agricult": 27051,
+ "▁huit": 27052,
+ "▁inoltre": 27053,
+ "▁Lloyd": 27054,
+ "▁француз": 27055,
+ "▁выпол": 27056,
+ "▁faithful": 27057,
+ "▁Вар": 27058,
+ "▁verl": 27059,
+ "▁juego": 27060,
+ "▁Резултати": 27061,
+ ",...,": 27062,
+ "▁implicitly": 27063,
+ "irks": 27064,
+ "Calcul": 27065,
+ "▁meses": 27066,
+ "omed": 27067,
+ "▁pak": 27068,
+ "herit": 27069,
+ "▁optical": 27070,
+ "▁Історія": 27071,
+ "veis": 27072,
+ "▁capitale": 27073,
+ "placeholder": 27074,
+ "intrag": 27075,
+ "▁Atlas": 27076,
+ ")];": 27077,
+ "icons": 27078,
+ "▁Bent": 27079,
+ "▁Widget": 27080,
+ "▁volunt": 27081,
+ "avo": 27082,
+ "égr": 27083,
+ "lige": 27084,
+ "▁NAME": 27085,
+ "▁abstra": 27086,
+ "▁fís": 27087,
+ "▁Browser": 27088,
+ "▁bush": 27089,
+ "hall": 27090,
+ "▁clouds": 27091,
+ "▁SUB": 27092,
+ "▁tandis": 27093,
+ "▁Commonwealth": 27094,
+ "тая": 27095,
+ "▁exhaust": 27096,
+ "________________": 27097,
+ "▁Statistics": 27098,
+ "▁Religion": 27099,
+ "▁Muham": 27100,
+ "uals": 27101,
+ "goto": 27102,
+ "Digital": 27103,
+ "Family": 27104,
+ "▁Bun": 27105,
+ "letin": 27106,
+ "Management": 27107,
+ "▁capabilities": 27108,
+ "annten": 27109,
+ "▁себе": 27110,
+ "▁stays": 27111,
+ "kter": 27112,
+ "▁dost": 27113,
+ "▁Тре": 27114,
+ "лович": 27115,
+ "▁dying": 27116,
+ "sections": 27117,
+ "ános": 27118,
+ "▁apparten": 27119,
+ "▁zoals": 27120,
+ "▁dressed": 27121,
+ "▁compress": 27122,
+ "ńska": 27123,
+ "▁sierpnia": 27124,
+ "▁титу": 27125,
+ "dictionary": 27126,
+ "▁rabb": 27127,
+ "▁vérit": 27128,
+ "Во": 27129,
+ "▁singleton": 27130,
+ "▁vital": 27131,
+ "Refresh": 27132,
+ "мель": 27133,
+ "▁Zh": 27134,
+ "▁Afghan": 27135,
+ "inkel": 27136,
+ "aaaa": 27137,
+ "▁participants": 27138,
+ "arin": 27139,
+ "▁Mold": 27140,
+ "▁primeros": 27141,
+ "▁ран": 27142,
+ "▁Амери": 27143,
+ "▁restaurant": 27144,
+ "ével": 27145,
+ "▁SL": 27146,
+ "▁Rey": 27147,
+ "chas": 27148,
+ "▁electrons": 27149,
+ "▁Pitts": 27150,
+ "▁Jules": 27151,
+ "май": 27152,
+ "enant": 27153,
+ "-}": 27154,
+ "лад": 27155,
+ "▁Москва": 27156,
+ "gom": 27157,
+ "▁Fernández": 27158,
+ "fund": 27159,
+ "interno": 27160,
+ "▁Mari": 27161,
+ "▁rius": 27162,
+ "▁Prozent": 27163,
+ "стрі": 27164,
+ "▁внут": 27165,
+ "anterie": 27166,
+ "▁прис": 27167,
+ "▁обы": 27168,
+ "▁Marina": 27169,
+ "▁occurrence": 27170,
+ "rikt": 27171,
+ "▁физи": 27172,
+ "▁schwer": 27173,
+ "▁Гре": 27174,
+ "Reset": 27175,
+ "▁mucho": 27176,
+ "andr": 27177,
+ "▁Wies": 27178,
+ "▁Keith": 27179,
+ "▁Julian": 27180,
+ "▁cole": 27181,
+ "ciendo": 27182,
+ "▁Contempor": 27183,
+ "etry": 27184,
+ "elian": 27185,
+ "гии": 27186,
+ "▁голо": 27187,
+ "▁dél": 27188,
+ "▁decent": 27189,
+ "РСР": 27190,
+ "▁szeptember": 27191,
+ "мест": 27192,
+ "castle": 27193,
+ "▁держав": 27194,
+ "}\")": 27195,
+ "▁ASCII": 27196,
+ "▁Glen": 27197,
+ "itzerland": 27198,
+ "Toggle": 27199,
+ "▁tradicional": 27200,
+ "▁Plat": 27201,
+ "vee": 27202,
+ "abgerufen": 27203,
+ "(|": 27204,
+ "CLI": 27205,
+ "}}$,": 27206,
+ "▁Bowl": 27207,
+ "▁Male": 27208,
+ "▁Bres": 27209,
+ "▁пси": 27210,
+ "▁Challenge": 27211,
+ "zó": 27212,
+ "▁projekt": 27213,
+ "▁negoti": 27214,
+ "above": 27215,
+ "▁перио": 27216,
+ "▁longest": 27217,
+ "authentic": 27218,
+ "▁tradu": 27219,
+ "▁mujeres": 27220,
+ "▁Andre": 27221,
+ "▁hadn": 27222,
+ "▁Schule": 27223,
+ "odel": 27224,
+ "bled": 27225,
+ "▁Trade": 27226,
+ "▁mobil": 27227,
+ "▁algunas": 27228,
+ "▁Lak": 27229,
+ "▁Connecticut": 27230,
+ "▁alco": 27231,
+ "▁Selbst": 27232,
+ "ił": 27233,
+ "▁alb": 27234,
+ "ouverneur": 27235,
+ "▁sr": 27236,
+ "▁vba": 27237,
+ "loped": 27238,
+ "▁Partei": 27239,
+ "uate": 27240,
+ "▁Authentication": 27241,
+ "bei": 27242,
+ "}}.": 27243,
+ "▁konnten": 27244,
+ "▁допо": 27245,
+ "▁hyd": 27246,
+ "Office": 27247,
+ "données": 27248,
+ "▁Cleveland": 27249,
+ "rita": 27250,
+ "íos": 27251,
+ "▁выше": 27252,
+ "▁Roberts": 27253,
+ "▁élections": 27254,
+ "▁'')": 27255,
+ "▁publishing": 27256,
+ "▁bapt": 27257,
+ "<>();": 27258,
+ "missing": 27259,
+ "ровано": 27260,
+ "▁housing": 27261,
+ "▁inference": 27262,
+ "▁Renaissance": 27263,
+ "▁règ": 27264,
+ "▁Steph": 27265,
+ "CES": 27266,
+ "ERE": 27267,
+ "кет": 27268,
+ "OU": 27269,
+ "▁grouping": 27270,
+ "verkehr": 27271,
+ "jih": 27272,
+ "agli": 27273,
+ "▁milk": 27274,
+ "lait": 27275,
+ "Stage": 27276,
+ "▁byly": 27277,
+ "▁wooden": 27278,
+ "keley": 27279,
+ "etra": 27280,
+ "▁Peg": 27281,
+ "▁donné": 27282,
+ "adal": 27283,
+ "sequently": 27284,
+ "▁insbesondere": 27285,
+ "ELD": 27286,
+ "▁Mam": 27287,
+ "▁volte": 27288,
+ "▁prospect": 27289,
+ "нове": 27290,
+ "▁denoted": 27291,
+ "▁overlay": 27292,
+ "Permission": 27293,
+ "een": 27294,
+ "▁EM": 27295,
+ "▁uz": 27296,
+ "Mc": 27297,
+ "olit": 27298,
+ "▁servi": 27299,
+ "▁Heidel": 27300,
+ "▁Wiener": 27301,
+ "▁illegal": 27302,
+ "▁predictions": 27303,
+ "▁goog": 27304,
+ "hon": 27305,
+ "▁Cinema": 27306,
+ "▁револю": 27307,
+ "▁Rule": 27308,
+ "wod": 27309,
+ "▁radiation": 27310,
+ "oł": 27311,
+ "ової": 27312,
+ "▁Perform": 27313,
+ "▁prisoner": 27314,
+ "▁amet": 27315,
+ "▁figura": 27316,
+ "▁Commander": 27317,
+ "▁официаль": 27318,
+ "▁trov": 27319,
+ "▁acted": 27320,
+ "▁workflow": 27321,
+ "▁Республики": 27322,
+ "▁guidance": 27323,
+ "▁мене": 27324,
+ "National": 27325,
+ "▁Kel": 27326,
+ "webpack": 27327,
+ "простра": 27328,
+ "▁llamado": 27329,
+ "alog": 27330,
+ "terra": 27331,
+ "ixen": 27332,
+ "legraph": 27333,
+ "äischen": 27334,
+ "▁teachers": 27335,
+ "uden": 27336,
+ "▁også": 27337,
+ "possible": 27338,
+ "▁Soul": 27339,
+ "▁Geography": 27340,
+ "▁зада": 27341,
+ "hit": 27342,
+ "▁anger": 27343,
+ "▁remporte": 27344,
+ "Pod": 27345,
+ "чке": 27346,
+ "▁aria": 27347,
+ "▁Astronom": 27348,
+ "chapter": 27349,
+ "▁fork": 27350,
+ "▁Cuando": 27351,
+ "mense": 27352,
+ "▁Christians": 27353,
+ "gc": 27354,
+ "▁#(": 27355,
+ "Organ": 27356,
+ "▁steady": 27357,
+ "pse": 27358,
+ "жить": 27359,
+ "ignes": 27360,
+ "aterra": 27361,
+ "movie": 27362,
+ "posta": 27363,
+ "raste": 27364,
+ "▁Ressource": 27365,
+ "▁País": 27366,
+ "▁();": 27367,
+ "▁penalty": 27368,
+ "тт": 27369,
+ "▁trasfer": 27370,
+ "century": 27371,
+ "▁cleaner": 27372,
+ "selenium": 27373,
+ "ortheast": 27374,
+ "xic": 27375,
+ "лії": 27376,
+ "▁inglese": 27377,
+ "▁Tang": 27378,
+ "▁gods": 27379,
+ "frent": 27380,
+ "ciente": 27381,
+ "starts": 27382,
+ "▁musica": 27383,
+ "ymnasium": 27384,
+ "----+": 27385,
+ "▁terrest": 27386,
+ "▁retrieved": 27387,
+ "iare": 27388,
+ "unning": 27389,
+ "▁Marcus": 27390,
+ "▁promote": 27391,
+ "warning": 27392,
+ "тый": 27393,
+ "})$,": 27394,
+ "Transport": 27395,
+ "▁reson": 27396,
+ "▁Clo": 27397,
+ "▁erm": 27398,
+ "▁eliminate": 27399,
+ "heimer": 27400,
+ "▁saves": 27401,
+ "▁prayer": 27402,
+ "Classes": 27403,
+ "Express": 27404,
+ "▁Akademie": 27405,
+ "Else": 27406,
+ "Turn": 27407,
+ "▁ikke": 27408,
+ "▁rei": 27409,
+ "▁dirett": 27410,
+ "▁Rost": 27411,
+ "▁Papa": 27412,
+ "▁jsf": 27413,
+ "лением": 27414,
+ "▁Tul": 27415,
+ "▁Zak": 27416,
+ "▁niemieck": 27417,
+ "Tw": 27418,
+ "amour": 27419,
+ "nested": 27420,
+ "ppets": 27421,
+ "шп": 27422,
+ "dit": 27423,
+ "зен": 27424,
+ "zyma": 27425,
+ "hrte": 27426,
+ "Constraints": 27427,
+ "▁ownership": 27428,
+ "Arm": 27429,
+ "▁consumption": 27430,
+ "▁fet": 27431,
+ "ivari": 27432,
+ "chrom": 27433,
+ "setAttribute": 27434,
+ "▁compose": 27435,
+ "▁backing": 27436,
+ "▁Paz": 27437,
+ "▁scri": 27438,
+ "▁Mechan": 27439,
+ "▁Norway": 27440,
+ "▁Jup": 27441,
+ "▁mér": 27442,
+ "▁administrator": 27443,
+ "▁cabe": 27444,
+ "ivalent": 27445,
+ "▁throne": 27446,
+ "▁dues": 27447,
+ "▁humor": 27448,
+ "▁Adri": 27449,
+ "▁abort": 27450,
+ "ñas": 27451,
+ "▁Київ": 27452,
+ "jící": 27453,
+ "▁zweite": 27454,
+ "▁doub": 27455,
+ "ershell": 27456,
+ "шой": 27457,
+ "▁Fam": 27458,
+ "åk": 27459,
+ "▁tweede": 27460,
+ "▁Rib": 27461,
+ "▁før": 27462,
+ "pción": 27463,
+ "inned": 27464,
+ "rvm": 27465,
+ "▁Appar": 27466,
+ "▁Dj": 27467,
+ "▁Shang": 27468,
+ "Distance": 27469,
+ "▁dawn": 27470,
+ "▁Matth": 27471,
+ "▁errichtet": 27472,
+ "phantom": 27473,
+ "▁releases": 27474,
+ "Recognizer": 27475,
+ "▁Kop": 27476,
+ "▁Pul": 27477,
+ "ué": 27478,
+ "nats": 27479,
+ "relax": 27480,
+ "▁fled": 27481,
+ "▁experiences": 27482,
+ "щее": 27483,
+ "меня": 27484,
+ "▁персона": 27485,
+ "▁Identity": 27486,
+ "rets": 27487,
+ "kunft": 27488,
+ "larg": 27489,
+ "ListItem": 27490,
+ "vd": 27491,
+ "runner": 27492,
+ "lant": 27493,
+ "ipart": 27494,
+ "bay": 27495,
+ "iei": 27496,
+ "▁lengths": 27497,
+ "▁cattle": 27498,
+ "jets": 27499,
+ "▁sehen": 27500,
+ "Jul": 27501,
+ "fatt": 27502,
+ "▁surrender": 27503,
+ "▁Trump": 27504,
+ "дного": 27505,
+ "▁Fourier": 27506,
+ "ieben": 27507,
+ "_\"": 27508,
+ "▁früher": 27509,
+ "▁garant": 27510,
+ "uclidean": 27511,
+ "ägt": 27512,
+ "▁півден": 27513,
+ "Pages": 27514,
+ "▁rivers": 27515,
+ "▁donner": 27516,
+ "svn": 27517,
+ "▁ł": 27518,
+ "ově": 27519,
+ "▁Leist": 27520,
+ "arial": 27521,
+ "ových": 27522,
+ "▁filling": 27523,
+ "▁musicale": 27524,
+ "maxim": 27525,
+ "▁dashed": 27526,
+ "▁Нов": 27527,
+ "Drawer": 27528,
+ "▁Medicine": 27529,
+ "▁dokument": 27530,
+ "owel": 27531,
+ "vić": 27532,
+ "hely": 27533,
+ "▁elet": 27534,
+ "Seconds": 27535,
+ "▁Gonz": 27536,
+ "rou": 27537,
+ "▁finales": 27538,
+ "rn": 27539,
+ "fø": 27540,
+ "▁indexed": 27541,
+ "className": 27542,
+ "▁ober": 27543,
+ "▁duas": 27544,
+ "▁optimized": 27545,
+ "▁kdy": 27546,
+ "versary": 27547,
+ "energy": 27548,
+ "▁центра": 27549,
+ "▁currency": 27550,
+ "zyż": 27551,
+ "Like": 27552,
+ "▁Ги": 27553,
+ "sono": 27554,
+ "▁palab": 27555,
+ "▁pushing": 27556,
+ "ublik": 27557,
+ "▁Hass": 27558,
+ "}\\,\\": 27559,
+ "unker": 27560,
+ "▁Factory": 27561,
+ "▁Resources": 27562,
+ "datei": 27563,
+ "▁Tools": 27564,
+ "▁stehen": 27565,
+ "sime": 27566,
+ "▁Ху": 27567,
+ "▁hoch": 27568,
+ "▁Rodríguez": 27569,
+ "zeitig": 27570,
+ "▁Terry": 27571,
+ "▁обу": 27572,
+ "Usage": 27573,
+ "urchase": 27574,
+ "lö": 27575,
+ "▁Introduction": 27576,
+ "▁participation": 27577,
+ "ος": 27578,
+ "ogli": 27579,
+ "apy": 27580,
+ "▁hopefully": 27581,
+ "ponder": 27582,
+ "▁Yang": 27583,
+ "▁promises": 27584,
+ "▁верну": 27585,
+ "▁остров": 27586,
+ "^{+": 27587,
+ "▁mostra": 27588,
+ "▁CURLOPT": 27589,
+ "HH": 27590,
+ "▁stdout": 27591,
+ "▁brilliant": 27592,
+ "▁manuscript": 27593,
+ "▁decir": 27594,
+ "▁Bolog": 27595,
+ "▁места": 27596,
+ "▁invisible": 27597,
+ "▁Chal": 27598,
+ "▁analyze": 27599,
+ "prilis": 27600,
+ "attend": 27601,
+ "Mvc": 27602,
+ "than": 27603,
+ "cko": 27604,
+ "▁Quebec": 27605,
+ "▁planta": 27606,
+ "▁télévis": 27607,
+ "▁uninstall": 27608,
+ "ències": 27609,
+ "▁gminie": 27610,
+ "▁Pref": 27611,
+ "▁lequel": 27612,
+ "Invocation": 27613,
+ "▁Í": 27614,
+ "▁transformed": 27615,
+ "MAN": 27616,
+ "gebaut": 27617,
+ "▁сохра": 27618,
+ "▁второй": 27619,
+ "▁Lith": 27620,
+ "wendung": 27621,
+ "▁Politik": 27622,
+ "▁Senator": 27623,
+ "▁LL": 27624,
+ "ждение": 27625,
+ "ште": 27626,
+ "▁Cés": 27627,
+ "▁bande": 27628,
+ "▁historian": 27629,
+ "▁passwords": 27630,
+ "malloc": 27631,
+ "▁semif": 27632,
+ "▁rå": 27633,
+ "unicí": 27634,
+ "Available": 27635,
+ "Optional": 27636,
+ "▁Twe": 27637,
+ "▁kró": 27638,
+ "▁subsets": 27639,
+ "▁DAT": 27640,
+ "▁doubles": 27641,
+ "никами": 27642,
+ "▁зв": 27643,
+ "gegeben": 27644,
+ "▁Попис": 27645,
+ "▁július": 27646,
+ "▁meteor": 27647,
+ "Mount": 27648,
+ "ivent": 27649,
+ "▁Nathan": 27650,
+ "▁Schutz": 27651,
+ "egov": 27652,
+ "▁död": 27653,
+ "▁meat": 27654,
+ "▁пункт": 27655,
+ "▁minds": 27656,
+ "elivery": 27657,
+ "▁TLS": 27658,
+ "рем": 27659,
+ "ckså": 27660,
+ "▁stayed": 27661,
+ "▁Bin": 27662,
+ "▁Pia": 27663,
+ "▁имен": 27664,
+ "▁Bobby": 27665,
+ "▁produit": 27666,
+ "empio": 27667,
+ "▁reducing": 27668,
+ "▁Yu": 27669,
+ "▁Geschäft": 27670,
+ "▁perché": 27671,
+ "▁cors": 27672,
+ "▁icons": 27673,
+ "AppData": 27674,
+ "▁Hog": 27675,
+ "▁рів": 27676,
+ "▁Sans": 27677,
+ "▁siège": 27678,
+ "stellen": 27679,
+ "Brush": 27680,
+ "OFF": 27681,
+ "▁visitor": 27682,
+ "▁bath": 27683,
+ "▁fee": 27684,
+ "atisf": 27685,
+ "▁curv": 27686,
+ "▁folgender": 27687,
+ "▁conscience": 27688,
+ "▁Seattle": 27689,
+ "▁medieval": 27690,
+ "distribution": 27691,
+ "▁DM": 27692,
+ "▁мя": 27693,
+ "▁RUN": 27694,
+ "akov": 27695,
+ "ceil": 27696,
+ "▁letting": 27697,
+ "▁dov": 27698,
+ "▁оби": 27699,
+ "kiej": 27700,
+ "▁direkt": 27701,
+ "▁tm": 27702,
+ "colors": 27703,
+ "▁altro": 27704,
+ "▁tijdens": 27705,
+ "]{'": 27706,
+ "▁Bom": 27707,
+ "▁kunst": 27708,
+ "▁shelter": 27709,
+ "▁rav": 27710,
+ "predict": 27711,
+ "▁comenzó": 27712,
+ "▁świat": 27713,
+ "▁Durant": 27714,
+ "▁schemes": 27715,
+ "▁mesh": 27716,
+ "▁indicator": 27717,
+ "▁Emer": 27718,
+ "▁guilty": 27719,
+ "нец": 27720,
+ "▁consequences": 27721,
+ "cludes": 27722,
+ "▁Lower": 27723,
+ "▁поме": 27724,
+ "▁pace": 27725,
+ "даго": 27726,
+ "▁ambos": 27727,
+ "lb": 27728,
+ "▁educated": 27729,
+ "urale": 27730,
+ "anh": 27731,
+ "esség": 27732,
+ "▁associations": 27733,
+ "town": 27734,
+ "▁trif": 27735,
+ "samples": 27736,
+ "bos": 27737,
+ "▁Spect": 27738,
+ "▁Це": 27739,
+ "altung": 27740,
+ "▁Lob": 27741,
+ "▁curiosity": 27742,
+ "▁Weiter": 27743,
+ "estone": 27744,
+ "▁demol": 27745,
+ "▁apolog": 27746,
+ "▁Dynamic": 27747,
+ "Inner": 27748,
+ "esper": 27749,
+ "ecz": 27750,
+ "uellement": 27751,
+ "▁Hamiltonian": 27752,
+ "Atlas": 27753,
+ "▁argue": 27754,
+ "Foreign": 27755,
+ "collapse": 27756,
+ "▁términ": 27757,
+ "▁electronic": 27758,
+ "▁NR": 27759,
+ "▁corr": 27760,
+ "temps": 27761,
+ "IndexPath": 27762,
+ "яз": 27763,
+ "▁talál": 27764,
+ "today": 27765,
+ "wave": 27766,
+ "▁sib": 27767,
+ "▁спи": 27768,
+ "▁convey": 27769,
+ "▁Géographie": 27770,
+ "▁Нью": 27771,
+ "▁Hibernate": 27772,
+ "▁tin": 27773,
+ "dic": 27774,
+ "ppings": 27775,
+ "sweise": 27776,
+ "▁rolling": 27777,
+ "▁selects": 27778,
+ ")\\)": 27779,
+ "▁poeta": 27780,
+ "▁степени": 27781,
+ "▁Abr": 27782,
+ "▁höch": 27783,
+ "▁stern": 27784,
+ "▁fjär": 27785,
+ "▁installer": 27786,
+ "decl": 27787,
+ "▁miser": 27788,
+ "groupby": 27789,
+ "substr": 27790,
+ "▁phenomen": 27791,
+ "▁Wing": 27792,
+ "▁fills": 27793,
+ "▁único": 27794,
+ "Running": 27795,
+ "Come": 27796,
+ "irable": 27797,
+ "simeq": 27798,
+ "▁remp": 27799,
+ "kele": 27800,
+ "liers": 27801,
+ "▁kwietnia": 27802,
+ "▁interrupted": 27803,
+ "▁Jet": 27804,
+ "=\\{": 27805,
+ "ído": 27806,
+ "▁Taiwan": 27807,
+ "▁возра": 27808,
+ "▁alternatives": 27809,
+ "▁Tir": 27810,
+ "▁Reserve": 27811,
+ "▁Кур": 27812,
+ "▁Nobel": 27813,
+ "▁работал": 27814,
+ "▁axes": 27815,
+ "▁Cependant": 27816,
+ "ká": 27817,
+ "▁erneut": 27818,
+ "▁Demo": 27819,
+ "communic": 27820,
+ "constructor": 27821,
+ "▁Monday": 27822,
+ "Nil": 27823,
+ "HashMap": 27824,
+ "payment": 27825,
+ "▁fixing": 27826,
+ "▁ADD": 27827,
+ "review": 27828,
+ "▁possibil": 27829,
+ "▁grote": 27830,
+ "▁grouped": 27831,
+ "▁Lima": 27832,
+ "▁Augen": 27833,
+ "▁också": 27834,
+ "onas": 27835,
+ "▁debate": 27836,
+ "▁Ingl": 27837,
+ "Da": 27838,
+ "SOUR": 27839,
+ "ettbe": 27840,
+ "▁Battalion": 27841,
+ "▁Float": 27842,
+ "▁cone": 27843,
+ "readsheet": 27844,
+ "court": 27845,
+ "ligen": 27846,
+ "▁Beginn": 27847,
+ "▁LIMIT": 27848,
+ "▁enjoyed": 27849,
+ "▁Jakob": 27850,
+ "▁telt": 27851,
+ "backend": 27852,
+ "▁Gemeinsame": 27853,
+ "lint": 27854,
+ "alling": 27855,
+ "▁bör": 27856,
+ "grand": 27857,
+ "▁diverses": 27858,
+ "▁związ": 27859,
+ "▁Kompon": 27860,
+ "▁innerhalb": 27861,
+ "▁desarrollo": 27862,
+ "▁Masters": 27863,
+ "ioso": 27864,
+ "]`.": 27865,
+ "▁francesa": 27866,
+ "Aff": 27867,
+ "inek": 27868,
+ "▁dessin": 27869,
+ "`.`": 27870,
+ "▁ranks": 27871,
+ "берг": 27872,
+ "▁skal": 27873,
+ "▁Sultan": 27874,
+ "АН": 27875,
+ "▁способ": 27876,
+ "▁contradict": 27877,
+ "▁recom": 27878,
+ "▁Oklahoma": 27879,
+ "▁Vladimir": 27880,
+ "▁meters": 27881,
+ "transport": 27882,
+ "▁consulté": 27883,
+ "▁ATP": 27884,
+ "ebb": 27885,
+ "▁volunte": 27886,
+ "▁outline": 27887,
+ "LIC": 27888,
+ "▁euro": 27889,
+ "CharField": 27890,
+ "medium": 27891,
+ "▁Belgique": 27892,
+ "Proc": 27893,
+ "routes": 27894,
+ "▁contribu": 27895,
+ "!}": 27896,
+ "ším": 27897,
+ "▁Less": 27898,
+ "▁Kost": 27899,
+ "▁eredetiből": 27900,
+ "reven": 27901,
+ "verify": 27902,
+ "▁Salt": 27903,
+ "▁shooting": 27904,
+ "▁dispose": 27905,
+ "ují": 27906,
+ "▁tierra": 27907,
+ "▁poison": 27908,
+ "sak": 27909,
+ "perimental": 27910,
+ "▁Né": 27911,
+ "▁Kid": 27912,
+ "agyar": 27913,
+ "▁archiválva": 27914,
+ "bereich": 27915,
+ "íz": 27916,
+ "▁Ritter": 27917,
+ "▁Хронологија": 27918,
+ "zeum": 27919,
+ "дах": 27920,
+ "▁gründ": 27921,
+ "▁programmer": 27922,
+ "▁conseil": 27923,
+ "▁encrypt": 27924,
+ "integration": 27925,
+ "Culture": 27926,
+ "▁Circle": 27927,
+ "Observable": 27928,
+ "▁genomsnitt": 27929,
+ "▁Selection": 27930,
+ "▁irregular": 27931,
+ "Autres": 27932,
+ "Percent": 27933,
+ "fault": 27934,
+ "▁virtue": 27935,
+ "ąpi": 27936,
+ "▁sess": 27937,
+ "▁Также": 27938,
+ "Timestamp": 27939,
+ "▁littérature": 27940,
+ "▁moż": 27941,
+ "▁borrow": 27942,
+ "▁conced": 27943,
+ "чник": 27944,
+ "▁Lund": 27945,
+ "IONS": 27946,
+ "ynie": 27947,
+ "▁Shin": 27948,
+ "▁osob": 27949,
+ "bě": 27950,
+ "▁intuit": 27951,
+ "▁нап": 27952,
+ "▁proph": 27953,
+ "▁pitt": 27954,
+ "▁IBM": 27955,
+ "▁Till": 27956,
+ "▁hina": 27957,
+ "ittest": 27958,
+ "generator": 27959,
+ "▁Nin": 27960,
+ "▁Kot": 27961,
+ "▁passer": 27962,
+ "▁disposition": 27963,
+ "uning": 27964,
+ "▁fame": 27965,
+ "▁tenia": 27966,
+ "ancement": 27967,
+ "▁Suisse": 27968,
+ "`-": 27969,
+ "▁hombres": 27970,
+ "▁infinity": 27971,
+ "▁оконча": 27972,
+ "▁cosm": 27973,
+ "▁Dennis": 27974,
+ "baz": 27975,
+ "haupt": 27976,
+ "▁mighty": 27977,
+ "▁prede": 27978,
+ "usable": 27979,
+ "▁wszyst": 27980,
+ "▁lb": 27981,
+ "ABASE": 27982,
+ "jna": 27983,
+ "нев": 27984,
+ "▁ases": 27985,
+ "▁finalmente": 27986,
+ "йм": 27987,
+ "pection": 27988,
+ "▁Studien": 27989,
+ "▁Norwegian": 27990,
+ "cego": 27991,
+ "INDEX": 27992,
+ "orten": 27993,
+ "▁friendship": 27994,
+ "metro": 27995,
+ "thick": 27996,
+ "▁Zel": 27997,
+ "LOW": 27998,
+ "▁thereby": 27999,
+ "unted": 28000,
+ "▁surfaces": 28001,
+ "ющим": 28002,
+ "%).": 28003,
+ "▁Wonder": 28004,
+ "▁redundant": 28005,
+ "▁Gros": 28006,
+ "▁websites": 28007,
+ "▁vio": 28008,
+ "▁ocas": 28009,
+ "vés": 28010,
+ "▁Gam": 28011,
+ "dw": 28012,
+ "Indicator": 28013,
+ "▁Kob": 28014,
+ "▁jack": 28015,
+ "Hint": 28016,
+ "▁Apol": 28017,
+ "▁другие": 28018,
+ "▁NUM": 28019,
+ "▁ofic": 28020,
+ "ystycz": 28021,
+ "▁wereld": 28022,
+ "мости": 28023,
+ "LEFT": 28024,
+ "▁Types": 28025,
+ "seen": 28026,
+ "uncia": 28027,
+ "▁narod": 28028,
+ "▁этот": 28029,
+ "Sidenote": 28030,
+ "ueil": 28031,
+ "▁отме": 28032,
+ "▁courts": 28033,
+ "fir": 28034,
+ "urz": 28035,
+ "ченко": 28036,
+ "Credentials": 28037,
+ "▁imagination": 28038,
+ "itats": 28039,
+ "buff": 28040,
+ "flash": 28041,
+ "▁badly": 28042,
+ "▁worn": 28043,
+ "▁округу": 28044,
+ "catalog": 28045,
+ "lime": 28046,
+ "▁Gill": 28047,
+ "▁Sent": 28048,
+ "iella": 28049,
+ "▁Craig": 28050,
+ "▁Sele": 28051,
+ "▁Independ": 28052,
+ "▁provincie": 28053,
+ "ossen": 28054,
+ "▁запад": 28055,
+ "▁infant": 28056,
+ "▁prevents": 28057,
+ "▁provinces": 28058,
+ "afé": 28059,
+ "beg": 28060,
+ "▁colours": 28061,
+ "BF": 28062,
+ "ën": 28063,
+ "▁Между": 28064,
+ "în": 28065,
+ "Observer": 28066,
+ "forsch": 28067,
+ "ígen": 28068,
+ "umption": 28069,
+ "▁Illustr": 28070,
+ "рист": 28071,
+ "▁полови": 28072,
+ "▁`&": 28073,
+ "▁ore": 28074,
+ "▁supplies": 28075,
+ "▁parenthes": 28076,
+ "Foundation": 28077,
+ "▁vou": 28078,
+ "▁Tout": 28079,
+ "Donald": 28080,
+ "▁RET": 28081,
+ "weig": 28082,
+ "▁producción": 28083,
+ "mix": 28084,
+ "▁utwor": 28085,
+ "▁föl": 28086,
+ "▁então": 28087,
+ "▁Sister": 28088,
+ "Tags": 28089,
+ "▁Савезне": 28090,
+ "▁privileges": 28091,
+ "▁nazw": 28092,
+ "▁Rav": 28093,
+ "▁repro": 28094,
+ "▁Mason": 28095,
+ "▁Platform": 28096,
+ "▁пробле": 28097,
+ "▁Pérez": 28098,
+ "▁blanc": 28099,
+ "Behavior": 28100,
+ "фици": 28101,
+ "eken": 28102,
+ "▁meets": 28103,
+ "(.*": 28104,
+ "▁få": 28105,
+ "epen": 28106,
+ "maker": 28107,
+ "▁loyal": 28108,
+ "members": 28109,
+ "meisterschaft": 28110,
+ "goal": 28111,
+ "шлен": 28112,
+ "▁северо": 28113,
+ "iende": 28114,
+ "дні": 28115,
+ "Proof": 28116,
+ "▁explic": 28117,
+ "▁electro": 28118,
+ "iels": 28119,
+ "reload": 28120,
+ "▁eleven": 28121,
+ "▁partidos": 28122,
+ "îne": 28123,
+ "▁Regin": 28124,
+ "▁éx": 28125,
+ "▁Bulg": 28126,
+ "▁networking": 28127,
+ "▁separator": 28128,
+ "UserName": 28129,
+ "▁edificio": 28130,
+ "▁Mie": 28131,
+ "▁idle": 28132,
+ "yed": 28133,
+ "▁passengers": 28134,
+ "+)": 28135,
+ "meno": 28136,
+ "eggi": 28137,
+ "▁nicely": 28138,
+ "endencia": 28139,
+ "чий": 28140,
+ "étés": 28141,
+ "ightarrow": 28142,
+ "▁orthogonal": 28143,
+ "▁Half": 28144,
+ "▁fewer": 28145,
+ "▁propi": 28146,
+ "▁primit": 28147,
+ "icale": 28148,
+ "▁flower": 28149,
+ "merk": 28150,
+ "▁Отече": 28151,
+ "▁persistent": 28152,
+ "▁Ville": 28153,
+ "Men": 28154,
+ "gaben": 28155,
+ "▁Isaac": 28156,
+ "ativity": 28157,
+ "▁północ": 28158,
+ "▁rok": 28159,
+ "cards": 28160,
+ "дения": 28161,
+ "▁юго": 28162,
+ "▁extraordinary": 28163,
+ "▁kyr": 28164,
+ "(\",": 28165,
+ "))]": 28166,
+ "▁unix": 28167,
+ "кол": 28168,
+ "▁sink": 28169,
+ "apsed": 28170,
+ "▁kommen": 28171,
+ "▁forcing": 28172,
+ "About": 28173,
+ "▁Halle": 28174,
+ "▁Majesty": 28175,
+ "▁Switch": 28176,
+ "▁abroad": 28177,
+ "▁acceleration": 28178,
+ "urbed": 28179,
+ "▁остан": 28180,
+ "Ready": 28181,
+ "▁півні": 28182,
+ "Bra": 28183,
+ "▁цього": 28184,
+ "▁plut": 28185,
+ "▁Train": 28186,
+ "▁április": 28187,
+ "▁puesto": 28188,
+ "▁toss": 28189,
+ "▁irrelevant": 28190,
+ "▁dip": 28191,
+ "segment": 28192,
+ "opacity": 28193,
+ "▁lorsque": 28194,
+ "▁verschill": 28195,
+ "ена": 28196,
+ "▁Doc": 28197,
+ "%%%%%%%%": 28198,
+ "▁borders": 28199,
+ "gebras": 28200,
+ "▁ries": 28201,
+ "▁Olympedia": 28202,
+ "▁Generation": 28203,
+ "metros": 28204,
+ "▁horizon": 28205,
+ "▁adaptation": 28206,
+ "▁Zahl": 28207,
+ "▁nahe": 28208,
+ "▁Bug": 28209,
+ "Picture": 28210,
+ "љи": 28211,
+ "RGB": 28212,
+ "Owner": 28213,
+ "adin": 28214,
+ "▁Catalunya": 28215,
+ "ných": 28216,
+ "▁cualquier": 28217,
+ "▁Institution": 28218,
+ "insen": 28219,
+ "▁Brasile": 28220,
+ "▁fitting": 28221,
+ "Deleg": 28222,
+ "ictwo": 28223,
+ "▁Exper": 28224,
+ "ochastic": 28225,
+ "▁dus": 28226,
+ "▁пора": 28227,
+ "▁substring": 28228,
+ "ссии": 28229,
+ "oin": 28230,
+ "▁школа": 28231,
+ "▁cx": 28232,
+ "▁%)": 28233,
+ "▁Buddh": 28234,
+ "▁pending": 28235,
+ "▁Entry": 28236,
+ "▁Berl": 28237,
+ "▁cler": 28238,
+ "▁Soc": 28239,
+ "▁rounded": 28240,
+ "▁mv": 28241,
+ "ített": 28242,
+ "▁Diplom": 28243,
+ "▁französischen": 28244,
+ "▁Gan": 28245,
+ "▁Investig": 28246,
+ "▁indexPath": 28247,
+ "▁molti": 28248,
+ "persistence": 28249,
+ "▁XIXe": 28250,
+ "▁Electron": 28251,
+ "bü": 28252,
+ "gele": 28253,
+ "▁Maler": 28254,
+ "▁proyecto": 28255,
+ "▁Bath": 28256,
+ "ellers": 28257,
+ "▁GP": 28258,
+ "oning": 28259,
+ "cloudflare": 28260,
+ "▁při": 28261,
+ "▁ded": 28262,
+ "▁Odkazy": 28263,
+ "▁Msg": 28264,
+ "▁Being": 28265,
+ "▁Depuis": 28266,
+ "▁Primary": 28267,
+ "▁Appro": 28268,
+ "▁formally": 28269,
+ "ступил": 28270,
+ "▁fuera": 28271,
+ "▁Root": 28272,
+ "▁autonom": 28273,
+ "▁secretary": 28274,
+ "▁osób": 28275,
+ "▁cuales": 28276,
+ "▁Depending": 28277,
+ "▁asi": 28278,
+ "vera": 28279,
+ "▁russe": 28280,
+ "▁proves": 28281,
+ "▁presiden": 28282,
+ "RU": 28283,
+ "▁Watson": 28284,
+ "▁webpack": 28285,
+ "elligence": 28286,
+ "кам": 28287,
+ "▁Officer": 28288,
+ "▁delivery": 28289,
+ "ждён": 28290,
+ "▁импе": 28291,
+ "▁wil": 28292,
+ "▁vesc": 28293,
+ "usztus": 28294,
+ "▁Geoff": 28295,
+ "()}": 28296,
+ "▁Fore": 28297,
+ "▁wenig": 28298,
+ "▁Airl": 28299,
+ "▁Efter": 28300,
+ "▁Break": 28301,
+ "▁Städ": 28302,
+ "ismiss": 28303,
+ "íp": 28304,
+ "▁avoided": 28305,
+ "▁assertion": 28306,
+ "DN": 28307,
+ "▁teat": 28308,
+ "ína": 28309,
+ "▁mechanical": 28310,
+ "isu": 28311,
+ "@{": 28312,
+ "▁nou": 28313,
+ "Italie": 28314,
+ "sourceforge": 28315,
+ "▁svo": 28316,
+ "▁király": 28317,
+ "▁References": 28318,
+ "six": 28319,
+ "▁Archives": 28320,
+ "▁finishing": 28321,
+ "acje": 28322,
+ "état": 28323,
+ "iffs": 28324,
+ "▁stead": 28325,
+ "▁feas": 28326,
+ "aware": 28327,
+ "lande": 28328,
+ "Inject": 28329,
+ "▁Agent": 28330,
+ "▁Normdatei": 28331,
+ "▁amen": 28332,
+ "▁Architecture": 28333,
+ "aze": 28334,
+ "ște": 28335,
+ "▁usar": 28336,
+ "▁cores": 28337,
+ "лін": 28338,
+ "▁Castro": 28339,
+ "▁væ": 28340,
+ ">\",": 28341,
+ "omena": 28342,
+ "▁gesam": 28343,
+ "▁Martín": 28344,
+ "egung": 28345,
+ "▁společ": 28346,
+ "▁amplitude": 28347,
+ "▁importing": 28348,
+ "▁listview": 28349,
+ "THE": 28350,
+ "ziale": 28351,
+ "cedes": 28352,
+ "▁particulier": 28353,
+ "▁Расподела": 28354,
+ "▁край": 28355,
+ "▁divent": 28356,
+ "▁ké": 28357,
+ "quit": 28358,
+ "тором": 28359,
+ "CheckBox": 28360,
+ "▁Zobacz": 28361,
+ "phe": 28362,
+ "pta": 28363,
+ "▁sjö": 28364,
+ "▁розташ": 28365,
+ "▁tedesco": 28366,
+ "▁stal": 28367,
+ "▁Beruf": 28368,
+ "овая": 28369,
+ "▁svě": 28370,
+ "▁flush": 28371,
+ "▁відбу": 28372,
+ "▁radial": 28373,
+ "▁différentes": 28374,
+ "анта": 28375,
+ "▁Perry": 28376,
+ "Coll": 28377,
+ "liqu": 28378,
+ "▁Optional": 28379,
+ "▁Санкт": 28380,
+ "▁LINQ": 28381,
+ "▁Franc": 28382,
+ "cije": 28383,
+ "▁Guillaume": 28384,
+ "know": 28385,
+ "▁Units": 28386,
+ "olk": 28387,
+ "▁Système": 28388,
+ "▁Sales": 28389,
+ "▁ehemaligen": 28390,
+ "мирова": 28391,
+ "xhtml": 28392,
+ "setopt": 28393,
+ "▁mellan": 28394,
+ "▁zie": 28395,
+ "▁giant": 28396,
+ "Board": 28397,
+ "▁Caval": 28398,
+ "▁defence": 28399,
+ "----------": 28400,
+ "pshire": 28401,
+ "mart": 28402,
+ "▁Dioc": 28403,
+ "iskt": 28404,
+ "▁inse": 28405,
+ "▁épisode": 28406,
+ "чик": 28407,
+ "bars": 28408,
+ "Sito": 28409,
+ "▁integrity": 28410,
+ "auff": 28411,
+ "▁vär": 28412,
+ "Azure": 28413,
+ "▁starb": 28414,
+ "▁контра": 28415,
+ "▁Мексичка": 28416,
+ "▁запа": 28417,
+ "▁Mountains": 28418,
+ "}}=": 28419,
+ "▁pulling": 28420,
+ "▁satellite": 28421,
+ "▁atoms": 28422,
+ "▁profesor": 28423,
+ "▁repeatedly": 28424,
+ "▁invasion": 28425,
+ "programming": 28426,
+ "├──": 28427,
+ "▁Lip": 28428,
+ "вшие": 28429,
+ "▁keen": 28430,
+ "▁critics": 28431,
+ "▁Nicola": 28432,
+ "▁Cand": 28433,
+ "▁distint": 28434,
+ "▁heading": 28435,
+ "pragma": 28436,
+ "{|": 28437,
+ "ymen": 28438,
+ "▁terrain": 28439,
+ "iedenis": 28440,
+ "▁besonders": 28441,
+ "▁nominated": 28442,
+ "BOOL": 28443,
+ "▁Kay": 28444,
+ "cian": 28445,
+ "stelle": 28446,
+ "▁dispute": 28447,
+ "▁щ": 28448,
+ "DataSet": 28449,
+ "nothing": 28450,
+ "Autom": 28451,
+ "hören": 28452,
+ "▁shed": 28453,
+ "▁paused": 28454,
+ "san": 28455,
+ "▁nunca": 28456,
+ "!(\"": 28457,
+ "▁położ": 28458,
+ "Secret": 28459,
+ "▁Domain": 28460,
+ "▁возмож": 28461,
+ "XV": 28462,
+ "lv": 28463,
+ "ikh": 28464,
+ "▁Sony": 28465,
+ "mq": 28466,
+ "otrop": 28467,
+ "▁Logger": 28468,
+ "▁threat": 28469,
+ "asted": 28470,
+ "зько": 28471,
+ "▁freely": 28472,
+ "▁improvements": 28473,
+ "istema": 28474,
+ "▁illustrate": 28475,
+ "▁tact": 28476,
+ "▁figur": 28477,
+ "ués": 28478,
+ "riminal": 28479,
+ "odon": 28480,
+ "intendo": 28481,
+ "▁influenced": 28482,
+ "FFER": 28483,
+ "▁Ghost": 28484,
+ "▁совер": 28485,
+ "nad": 28486,
+ "ioned": 28487,
+ "▁Events": 28488,
+ "▁wrapping": 28489,
+ "---------+": 28490,
+ "fif": 28491,
+ "▁(**": 28492,
+ "={{": 28493,
+ "маль": 28494,
+ "▁losses": 28495,
+ "▁Galerie": 28496,
+ "tel": 28497,
+ "▁лютого": 28498,
+ "▁Kru": 28499,
+ "▁Polen": 28500,
+ "нім": 28501,
+ "near": 28502,
+ "▁shame": 28503,
+ "▁moyenne": 28504,
+ "▁CP": 28505,
+ "preis": 28506,
+ "▁passenger": 28507,
+ "lek": 28508,
+ "ionales": 28509,
+ "kafka": 28510,
+ "▁participe": 28511,
+ "▁membership": 28512,
+ "[_": 28513,
+ "lando": 28514,
+ "stelling": 28515,
+ "Sem": 28516,
+ "gon": 28517,
+ "▁Correct": 28518,
+ "▁valle": 28519,
+ "▁readily": 28520,
+ "▁Dokument": 28521,
+ "honneur": 28522,
+ "▁testim": 28523,
+ "ulative": 28524,
+ "doFilter": 28525,
+ "▁dominant": 28526,
+ "ammer": 28527,
+ "▁која": 28528,
+ "▁Monsieur": 28529,
+ "zeg": 28530,
+ "▁війни": 28531,
+ "▁Fo": 28532,
+ "▁Amy": 28533,
+ "▁¡": 28534,
+ "▁február": 28535,
+ "▁downloading": 28536,
+ "▁leng": 28537,
+ "\\}$,": 28538,
+ "▁neat": 28539,
+ "▁Cache": 28540,
+ "ICATION": 28541,
+ "▁deve": 28542,
+ "▁sorrow": 28543,
+ "slow": 28544,
+ "▁hinaus": 28545,
+ "▁reconoc": 28546,
+ "▁Linked": 28547,
+ "▁Shaw": 28548,
+ "market": 28549,
+ "▁Dic": 28550,
+ "▁Ski": 28551,
+ "▁delimiter": 28552,
+ "▁MainActivity": 28553,
+ "▁Musical": 28554,
+ "▁Reyn": 28555,
+ "ScrollView": 28556,
+ "▁conventional": 28557,
+ "ença": 28558,
+ "▁refactor": 28559,
+ "'-": 28560,
+ "▁Hed": 28561,
+ "sprech": 28562,
+ "▁athlet": 28563,
+ "▁especies": 28564,
+ "▁Schön": 28565,
+ "▁kleinen": 28566,
+ "шко": 28567,
+ "▁Йо": 28568,
+ "▁Happy": 28569,
+ "multirow": 28570,
+ "▁augusti": 28571,
+ "▁Gand": 28572,
+ "▁appointment": 28573,
+ "▁Mediabestanden": 28574,
+ "Three": 28575,
+ "▁Kenneth": 28576,
+ "NEW": 28577,
+ "▁Notification": 28578,
+ "▁Marx": 28579,
+ "▁insc": 28580,
+ "Mor": 28581,
+ "вый": 28582,
+ "väst": 28583,
+ "vidia": 28584,
+ "▁demonstrated": 28585,
+ "fonts": 28586,
+ "▁kamen": 28587,
+ "▁Ster": 28588,
+ "▁mieszkańców": 28589,
+ "▁Koh": 28590,
+ "~$\\": 28591,
+ "»).": 28592,
+ "rene": 28593,
+ "insic": 28594,
+ "ická": 28595,
+ "xygen": 28596,
+ "▁mn": 28597,
+ "▁sched": 28598,
+ "ASC": 28599,
+ "Ig": 28600,
+ "▁Constant": 28601,
+ "▁opportun": 28602,
+ "▁MyClass": 28603,
+ "sef": 28604,
+ "oped": 28605,
+ "▁injured": 28606,
+ "VIS": 28607,
+ "▁Pero": 28608,
+ "▁Until": 28609,
+ "▁flesh": 28610,
+ "orphism": 28611,
+ "▁Portal": 28612,
+ "▁gminy": 28613,
+ "▁власти": 28614,
+ "▁Nä": 28615,
+ "ктиче": 28616,
+ "▁hrab": 28617,
+ "▁Cub": 28618,
+ "avoir": 28619,
+ "▁Lars": 28620,
+ "▁Бело": 28621,
+ "▁seizoen": 28622,
+ "▁Genomsnitt": 28623,
+ "▁Lil": 28624,
+ "▁Pool": 28625,
+ "▁Dios": 28626,
+ "TX": 28627,
+ "aes": 28628,
+ "autore": 28629,
+ "Alpha": 28630,
+ "states": 28631,
+ "Lab": 28632,
+ "nederbörd": 28633,
+ "erton": 28634,
+ "▁brid": 28635,
+ "▁richt": 28636,
+ "▁Ela": 28637,
+ "▁сла": 28638,
+ "▁weapon": 28639,
+ "▁combatt": 28640,
+ "agar": 28641,
+ "▁regnig": 28642,
+ "▁utilisé": 28643,
+ "▁servir": 28644,
+ "▁brick": 28645,
+ "▁gateway": 28646,
+ "▁torraste": 28647,
+ "▁procedures": 28648,
+ "▁årsnederbörd": 28649,
+ "▁Genomsnittlig": 28650,
+ "чёт": 28651,
+ "▁områ": 28652,
+ "▁regnigaste": 28653,
+ "▁честь": 28654,
+ "▁amid": 28655,
+ "▁grateful": 28656,
+ "▁DIS": 28657,
+ "DAY": 28658,
+ "▁ору": 28659,
+ "▁rivière": 28660,
+ "heure": 28661,
+ "▁Richmond": 28662,
+ "▁Compar": 28663,
+ "▁Нор": 28664,
+ "DOC": 28665,
+ "esia": 28666,
+ "calc": 28667,
+ "▁IU": 28668,
+ "▁vorg": 28669,
+ "▁habían": 28670,
+ "çoit": 28671,
+ "▁arist": 28672,
+ "▁кли": 28673,
+ "▁Sue": 28674,
+ "▁Touch": 28675,
+ "▁Writing": 28676,
+ "ifiable": 28677,
+ "▁wc": 28678,
+ "▁withdraw": 28679,
+ "зар": 28680,
+ "▁presently": 28681,
+ "▁FK": 28682,
+ "▁prakt": 28683,
+ "▁colored": 28684,
+ "usb": 28685,
+ "▁Perú": 28686,
+ "▁plata": 28687,
+ "▁wishes": 28688,
+ "▁кам": 28689,
+ "azar": 28690,
+ "ável": 28691,
+ "▁lamp": 28692,
+ "bishop": 28693,
+ "▁inclusion": 28694,
+ "jq": 28695,
+ "arth": 28696,
+ "▁Flag": 28697,
+ "▁нор": 28698,
+ "ædia": 28699,
+ "UNCTION": 28700,
+ "▁Bahnhof": 28701,
+ "▁approaching": 28702,
+ "▁Gött": 28703,
+ "▁cube": 28704,
+ "▁argued": 28705,
+ "▁Things": 28706,
+ "Gui": 28707,
+ "дови": 28708,
+ "▁recre": 28709,
+ "▁réseau": 28710,
+ "▁significa": 28711,
+ "Git": 28712,
+ "gebracht": 28713,
+ "▁liga": 28714,
+ "▁assured": 28715,
+ "alus": 28716,
+ "рит": 28717,
+ "▁энциклопеди": 28718,
+ "▁%).": 28719,
+ "▁Première": 28720,
+ "▁declarations": 28721,
+ "▁tricky": 28722,
+ "▁profiles": 28723,
+ "▁Fon": 28724,
+ "▁Jas": 28725,
+ "âr": 28726,
+ "babel": 28727,
+ "▁Friday": 28728,
+ "▁június": 28729,
+ "▁cols": 28730,
+ "▁EXISTS": 28731,
+ "▁Italiana": 28732,
+ "▁authorization": 28733,
+ "▁sulle": 28734,
+ "▁Emb": 28735,
+ "▁Variable": 28736,
+ "trees": 28737,
+ "▁Fly": 28738,
+ "riors": 28739,
+ "▁damals": 28740,
+ "▁findet": 28741,
+ "▁Sept": 28742,
+ "▁mundial": 28743,
+ "▁removal": 28744,
+ "▁longitude": 28745,
+ "clic": 28746,
+ "▁fade": 28747,
+ "▁gradle": 28748,
+ "▁zák": 28749,
+ "▁timing": 28750,
+ "trightarrow": 28751,
+ "atia": 28752,
+ "-.": 28753,
+ "uche": 28754,
+ "▁serialize": 28755,
+ "▁Hmm": 28756,
+ "▁Representatives": 28757,
+ "bah": 28758,
+ "rend": 28759,
+ "assador": 28760,
+ "▁shield": 28761,
+ "ucion": 28762,
+ "▁américaine": 28763,
+ "zę": 28764,
+ "villa": 28765,
+ "▁hombre": 28766,
+ "áss": 28767,
+ "▁SF": 28768,
+ "▁repeating": 28769,
+ "▁criter": 28770,
+ "▁Struct": 28771,
+ "???": 28772,
+ "▁cheap": 28773,
+ "▁rings": 28774,
+ "abhäng": 28775,
+ "▁corte": 28776,
+ "▁administ": 28777,
+ "ixon": 28778,
+ "gypt": 28779,
+ "▁puntos": 28780,
+ "▁mezi": 28781,
+ "▁pochod": 28782,
+ "isko": 28783,
+ "nię": 28784,
+ "▁осу": 28785,
+ "▁ár": 28786,
+ "тельной": 28787,
+ "▁Metropolitan": 28788,
+ "jin": 28789,
+ "zess": 28790,
+ "▁віці": 28791,
+ "▁conflicts": 28792,
+ "ijst": 28793,
+ "▁Market": 28794,
+ "стров": 28795,
+ "▁\",\"": 28796,
+ "▁Scroll": 28797,
+ "gun": 28798,
+ "тара": 28799,
+ "▁amateur": 28800,
+ "▁róż": 28801,
+ "poss": 28802,
+ "▁generalized": 28803,
+ "▁Harm": 28804,
+ "cita": 28805,
+ "▁Switzerland": 28806,
+ "icola": 28807,
+ "▁muit": 28808,
+ "located": 28809,
+ "▁có": 28810,
+ "▁arose": 28811,
+ "▁communauté": 28812,
+ "})^": 28813,
+ "visibility": 28814,
+ "ída": 28815,
+ "▁FB": 28816,
+ "▁Freund": 28817,
+ "gat": 28818,
+ "\":{\"": 28819,
+ "intellij": 28820,
+ "ifie": 28821,
+ "hmen": 28822,
+ "▁édition": 28823,
+ "▁које": 28824,
+ "▁інших": 28825,
+ "oming": 28826,
+ "▁arquitect": 28827,
+ "▁Presidente": 28828,
+ "▁Під": 28829,
+ "▁cabin": 28830,
+ "Theorem": 28831,
+ "▁Gay": 28832,
+ "ifice": 28833,
+ "▁hect": 28834,
+ "lą": 28835,
+ "irmingham": 28836,
+ "▁semantic": 28837,
+ "▁Louisiana": 28838,
+ "▁sacrifice": 28839,
+ "▁Christoph": 28840,
+ "▁Executive": 28841,
+ "_+": 28842,
+ "ják": 28843,
+ "▁seria": 28844,
+ "▁Overflow": 28845,
+ "▁Lucy": 28846,
+ "▁melhor": 28847,
+ "▁voices": 28848,
+ "cza": 28849,
+ "▁капи": 28850,
+ "▁университета": 28851,
+ "INCT": 28852,
+ "▁coloc": 28853,
+ "▁prue": 28854,
+ "▁geomet": 28855,
+ "▁diretto": 28856,
+ "reso": 28857,
+ "▁Akt": 28858,
+ "▁unh": 28859,
+ "▁сери": 28860,
+ "▁Alert": 28861,
+ "Wel": 28862,
+ "audi": 28863,
+ "äler": 28864,
+ "▁guests": 28865,
+ "▁иде": 28866,
+ "Studio": 28867,
+ "▁кате": 28868,
+ "▁exponent": 28869,
+ "rze": 28870,
+ "pmod": 28871,
+ "rolle": 28872,
+ "▁Limited": 28873,
+ "Allemagne": 28874,
+ "▁pity": 28875,
+ "▁lä": 28876,
+ "▁runner": 28877,
+ "kende": 28878,
+ "EQ": 28879,
+ "▁MM": 28880,
+ "szág": 28881,
+ "поді": 28882,
+ "▁regret": 28883,
+ "▁publié": 28884,
+ "▁departamento": 28885,
+ "▁accused": 28886,
+ "hp": 28887,
+ "▁Pfl": 28888,
+ "▁Sint": 28889,
+ "▁ekonom": 28890,
+ "ractor": 28891,
+ "▁Пів": 28892,
+ "▁awful": 28893,
+ "ować": 28894,
+ "]->": 28895,
+ "▁Fine": 28896,
+ "Са": 28897,
+ "tis": 28898,
+ "éta": 28899,
+ "▁Роди": 28900,
+ "▁Düsseldorf": 28901,
+ "LOB": 28902,
+ "osas": 28903,
+ "werke": 28904,
+ "▁lance": 28905,
+ "▁листопада": 28906,
+ "▁incomplete": 28907,
+ "▁Picture": 28908,
+ "('\\": 28909,
+ "esters": 28910,
+ "▁belonged": 28911,
+ "▁Sank": 28912,
+ "ammed": 28913,
+ "▁repositories": 28914,
+ "▁addr": 28915,
+ "Collect": 28916,
+ "Hot": 28917,
+ "▁tyl": 28918,
+ "▁instanceof": 28919,
+ "▁bonus": 28920,
+ "ový": 28921,
+ "▁моря": 28922,
+ "▁interactive": 28923,
+ "▁Mys": 28924,
+ "▁Edmund": 28925,
+ "fileName": 28926,
+ "emor": 28927,
+ "▁Три": 28928,
+ "▁Rosen": 28929,
+ "▁Prima": 28930,
+ "▁voting": 28931,
+ "▁XP": 28932,
+ "▁Zero": 28933,
+ "▁Led": 28934,
+ "amsung": 28935,
+ "▁enables": 28936,
+ "▁redirects": 28937,
+ "AST": 28938,
+ "Paint": 28939,
+ "acker": 28940,
+ "lecht": 28941,
+ "▁chairman": 28942,
+ "▁Aven": 28943,
+ "▁Sach": 28944,
+ "(\"<": 28945,
+ "кер": 28946,
+ "▁mistakes": 28947,
+ "▁Weit": 28948,
+ "▁prowad": 28949,
+ "▁didnt": 28950,
+ "énario": 28951,
+ "unless": 28952,
+ "▁backwards": 28953,
+ "boa": 28954,
+ "duino": 28955,
+ "```": 28956,
+ "stor": 28957,
+ "Completion": 28958,
+ "puesta": 28959,
+ "▁dinast": 28960,
+ "últ": 28961,
+ "▁SY": 28962,
+ "ifolia": 28963,
+ "œuvres": 28964,
+ "▁racing": 28965,
+ "▁cabinet": 28966,
+ "▁cutting": 28967,
+ "▁thumb": 28968,
+ "▁Кара": 28969,
+ "highlight": 28970,
+ "куп": 28971,
+ "▁sd": 28972,
+ "▁національ": 28973,
+ "▁campagne": 28974,
+ "▁registers": 28975,
+ "▁educational": 28976,
+ "▁pesar": 28977,
+ "üge": 28978,
+ "▁oro": 28979,
+ "burgo": 28980,
+ "▁Athletics": 28981,
+ "▁MTV": 28982,
+ "getMessage": 28983,
+ "▁Hyp": 28984,
+ "▁victim": 28985,
+ "))\\": 28986,
+ "▁drums": 28987,
+ "hostname": 28988,
+ "tał": 28989,
+ "making": 28990,
+ "▁powiat": 28991,
+ "őd": 28992,
+ "threads": 28993,
+ "▁absolv": 28994,
+ "▁люди": 28995,
+ "▁stepped": 28996,
+ "exist": 28997,
+ "▁NK": 28998,
+ "▁ves": 28999,
+ "istiche": 29000,
+ "%'": 29001,
+ "ativos": 29002,
+ "▁такой": 29003,
+ "▁MongoDB": 29004,
+ "▁Ung": 29005,
+ "▁Рус": 29006,
+ "▁elim": 29007,
+ "▁Fif": 29008,
+ "icación": 29009,
+ "▁Tennis": 29010,
+ "▁Jefferson": 29011,
+ "ján": 29012,
+ "fog": 29013,
+ "anha": 29014,
+ "zor": 29015,
+ "▁університе": 29016,
+ "ahu": 29017,
+ "iada": 29018,
+ "Sdk": 29019,
+ "Setting": 29020,
+ "▁Kill": 29021,
+ "▁Wend": 29022,
+ "▁bald": 29023,
+ "▁Kub": 29024,
+ "▁visto": 29025,
+ "▁jeunes": 29026,
+ "collections": 29027,
+ "ací": 29028,
+ "вропей": 29029,
+ "▁arise": 29030,
+ "оні": 29031,
+ "MAIN": 29032,
+ "доступ": 29033,
+ "▁berg": 29034,
+ "▁criticism": 29035,
+ "▁Torre": 29036,
+ "▁descript": 29037,
+ "ières": 29038,
+ "▁estudio": 29039,
+ "▁ili": 29040,
+ "▁militare": 29041,
+ "▁Clara": 29042,
+ "▁Ellen": 29043,
+ "limited": 29044,
+ "лм": 29045,
+ "▁Españ": 29046,
+ "▁infinitely": 29047,
+ "America": 29048,
+ "ouc": 29049,
+ "glass": 29050,
+ "▁rud": 29051,
+ "▁zat": 29052,
+ "▁rin": 29053,
+ "▁Bibliografía": 29054,
+ "▁merchant": 29055,
+ "tensorflow": 29056,
+ "▁dér": 29057,
+ "▁ActiveRecord": 29058,
+ "IES": 29059,
+ "▁linker": 29060,
+ "▁estudios": 29061,
+ "cdnjs": 29062,
+ "▁Государ": 29063,
+ "ánchez": 29064,
+ "appe": 29065,
+ "club": 29066,
+ "▁další": 29067,
+ "▁Algorithm": 29068,
+ "dfs": 29069,
+ "▁Bac": 29070,
+ "▁кафе": 29071,
+ "▁&=\\": 29072,
+ "▁ат": 29073,
+ "▁Глав": 29074,
+ "▁Mou": 29075,
+ "Machine": 29076,
+ "(...)": 29077,
+ "▁compart": 29078,
+ "▁augusztus": 29079,
+ "avan": 29080,
+ "▁rolled": 29081,
+ "▁еди": 29082,
+ "Scan": 29083,
+ "▁регі": 29084,
+ "▁świata": 29085,
+ "▁mines": 29086,
+ "},{": 29087,
+ "▁Tier": 29088,
+ "Cannot": 29089,
+ "мін": 29090,
+ "▁NEW": 29091,
+ "▁Вол": 29092,
+ "▁Manh": 29093,
+ "▁Gregory": 29094,
+ "▁principe": 29095,
+ "ISO": 29096,
+ "prog": 29097,
+ "▁Fail": 29098,
+ "▁aa": 29099,
+ "▁fecha": 29100,
+ "▁WCF": 29101,
+ "▁magistr": 29102,
+ "▁Zach": 29103,
+ "▁unicode": 29104,
+ "▁converter": 29105,
+ "▁dispers": 29106,
+ "ksam": 29107,
+ "▁Uncle": 29108,
+ "PropertyChanged": 29109,
+ "▁lider": 29110,
+ "▁opts": 29111,
+ "▁там": 29112,
+ "locked": 29113,
+ "zak": 29114,
+ "▁counted": 29115,
+ "▁persone": 29116,
+ "▁hurried": 29117,
+ "ätter": 29118,
+ "▁outras": 29119,
+ "▁genu": 29120,
+ "BD": 29121,
+ "veg": 29122,
+ "due": 29123,
+ "▁Pract": 29124,
+ "▁posible": 29125,
+ "▁contribute": 29126,
+ "UMN": 29127,
+ "▁Bürger": 29128,
+ "▁wars": 29129,
+ "▁exhibition": 29130,
+ "hill": 29131,
+ "▁astr": 29132,
+ "▁музе": 29133,
+ "▁CASE": 29134,
+ "manifest": 29135,
+ "yellow": 29136,
+ "Fn": 29137,
+ "▁RC": 29138,
+ "▁sott": 29139,
+ "▁sujet": 29140,
+ "▁Socket": 29141,
+ "▁Chine": 29142,
+ "▁frameworks": 29143,
+ "Hold": 29144,
+ "êts": 29145,
+ "▁філь": 29146,
+ "Loaded": 29147,
+ "ophe": 29148,
+ "texte": 29149,
+ "▁expres": 29150,
+ "▁consume": 29151,
+ "▁Richtung": 29152,
+ "ografi": 29153,
+ "▁magnific": 29154,
+ "àt": 29155,
+ "▁indul": 29156,
+ "ryty": 29157,
+ "▁offici": 29158,
+ "▁assault": 29159,
+ "rund": 29160,
+ "▁variants": 29161,
+ "▁сельсов": 29162,
+ "▁excitement": 29163,
+ "Times": 29164,
+ "kotlin": 29165,
+ "▁gering": 29166,
+ "▁Engel": 29167,
+ "▁Timer": 29168,
+ "²).": 29169,
+ "▁Ng": 29170,
+ "ässt": 29171,
+ "schau": 29172,
+ "SError": 29173,
+ "▁Edwards": 29174,
+ "▁Terminal": 29175,
+ "lict": 29176,
+ "Under": 29177,
+ "▁spawn": 29178,
+ "ürgen": 29179,
+ "▁Außerdem": 29180,
+ "▁kitchen": 29181,
+ "fahrt": 29182,
+ "▁Colors": 29183,
+ "▁система": 29184,
+ "▁terminated": 29185,
+ "▁LaTeX": 29186,
+ "igkeiten": 29187,
+ "▁mesure": 29188,
+ "▁Amts": 29189,
+ "▁empir": 29190,
+ "▁striking": 29191,
+ "▁exclusive": 29192,
+ "тех": 29193,
+ "▁rez": 29194,
+ "▁quan": 29195,
+ "▁Glasgow": 29196,
+ "▁lecture": 29197,
+ "▁Testament": 29198,
+ "▁funds": 29199,
+ "▁stessa": 29200,
+ "▁tribes": 29201,
+ "▁parfois": 29202,
+ "▁treball": 29203,
+ "nitz": 29204,
+ "bove": 29205,
+ "▁заслу": 29206,
+ "▁absent": 29207,
+ "▁Lauf": 29208,
+ "Smith": 29209,
+ "▁Николай": 29210,
+ "▁européenne": 29211,
+ "lr": 29212,
+ "▁programma": 29213,
+ "▁midst": 29214,
+ "▁daughters": 29215,
+ "Syn": 29216,
+ "oben": 29217,
+ "ână": 29218,
+ "idan": 29219,
+ "▁ther": 29220,
+ "odore": 29221,
+ "sdl": 29222,
+ "▁Quint": 29223,
+ "▁casos": 29224,
+ "▁Zam": 29225,
+ "▁страны": 29226,
+ "▁sprite": 29227,
+ "кал": 29228,
+ "▁nasc": 29229,
+ "▁сотруд": 29230,
+ "▁trava": 29231,
+ "▁хозяй": 29232,
+ "▁Uruguay": 29233,
+ "▁sparse": 29234,
+ "▁поле": 29235,
+ "▁mystery": 29236,
+ "▁Mang": 29237,
+ "registr": 29238,
+ "▁CGFloat": 29239,
+ "▁submission": 29240,
+ "вана": 29241,
+ "▁\":": 29242,
+ "▁Traceback": 29243,
+ "▁Pit": 29244,
+ "▁Ehr": 29245,
+ "▁сра": 29246,
+ "▁Graphics": 29247,
+ "Updated": 29248,
+ "▁svensk": 29249,
+ "▁spacing": 29250,
+ "tritt": 29251,
+ "▁Guinea": 29252,
+ "▁França": 29253,
+ "Associ": 29254,
+ "▁Tová": 29255,
+ "stab": 29256,
+ "▁Learning": 29257,
+ "▁Bright": 29258,
+ "śc": 29259,
+ "▁idő": 29260,
+ "}}_{\\": 29261,
+ "▁droite": 29262,
+ "▁raising": 29263,
+ "getting": 29264,
+ "ythm": 29265,
+ "onyme": 29266,
+ "żs": 29267,
+ "▁blah": 29268,
+ "TagName": 29269,
+ "Vertical": 29270,
+ "▁aper": 29271,
+ "postgresql": 29272,
+ "▁Handle": 29273,
+ "zew": 29274,
+ "▁skulle": 29275,
+ "▁opere": 29276,
+ "layers": 29277,
+ "▁possono": 29278,
+ "▁relate": 29279,
+ "ąc": 29280,
+ "▁Mih": 29281,
+ "âge": 29282,
+ "▁Świ": 29283,
+ "isses": 29284,
+ "▁servlet": 29285,
+ "Los": 29286,
+ "▁Advanced": 29287,
+ "atica": 29288,
+ "▁ced": 29289,
+ "▁elementos": 29290,
+ "рона": 29291,
+ "iks": 29292,
+ "arf": 29293,
+ "ariat": 29294,
+ "Mobile": 29295,
+ "agua": 29296,
+ "▁timp": 29297,
+ "▁Comité": 29298,
+ "▁combining": 29299,
+ "wohl": 29300,
+ "▁Study": 29301,
+ "coordinate": 29302,
+ "▁recommendation": 29303,
+ "▁transformations": 29304,
+ "until": 29305,
+ "bounded": 29306,
+ "▁изу": 29307,
+ "hanced": 29308,
+ "▁вопро": 29309,
+ "▁Prés": 29310,
+ "▁coord": 29311,
+ "xty": 29312,
+ "▁$,": 29313,
+ "▁champions": 29314,
+ "Den": 29315,
+ "Mil": 29316,
+ "(',": 29317,
+ "▁Preis": 29318,
+ "▁eigh": 29319,
+ "▁markers": 29320,
+ "▁gewesen": 29321,
+ "ätten": 29322,
+ "▁pione": 29323,
+ "mv": 29324,
+ "▁ју": 29325,
+ "zeichnis": 29326,
+ "hoff": 29327,
+ "News": 29328,
+ "▁Stanisław": 29329,
+ "▁Brandenburg": 29330,
+ "▁Feuer": 29331,
+ "=&": 29332,
+ "жет": 29333,
+ "▁Neil": 29334,
+ "▁wirk": 29335,
+ "▁società": 29336,
+ "▁spare": 29337,
+ "▁civile": 29338,
+ "sprach": 29339,
+ "▁disse": 29340,
+ "▁gates": 29341,
+ "▁anom": 29342,
+ "▁Федерации": 29343,
+ "▁tib": 29344,
+ "▁fútbol": 29345,
+ "▁Wikiped": 29346,
+ "iate": 29347,
+ "Front": 29348,
+ "▁craw": 29349,
+ "▁Rak": 29350,
+ "▁зву": 29351,
+ "street": 29352,
+ "▁Agency": 29353,
+ "вало": 29354,
+ "▁Рас": 29355,
+ "▁mkdir": 29356,
+ "ację": 29357,
+ "▁shares": 29358,
+ "Story": 29359,
+ "▁remarks": 29360,
+ "▁keywords": 29361,
+ "Bob": 29362,
+ "▁toe": 29363,
+ "▁Vitt": 29364,
+ "▁rhs": 29365,
+ "ROP": 29366,
+ "oris": 29367,
+ "/@": 29368,
+ "сии": 29369,
+ "▁traverse": 29370,
+ "▁referencing": 29371,
+ "präsident": 29372,
+ "rong": 29373,
+ "'):": 29374,
+ "aties": 29375,
+ "AW": 29376,
+ "Outlet": 29377,
+ "▁évol": 29378,
+ "ikes": 29379,
+ "▁environmental": 29380,
+ "icum": 29381,
+ "▁Lied": 29382,
+ "▁warn": 29383,
+ "▁Butler": 29384,
+ "▁%),": 29385,
+ "▁Zeitschrift": 29386,
+ "▁Montr": 29387,
+ "важа": 29388,
+ "▁Mercur": 29389,
+ "jekte": 29390,
+ "meter": 29391,
+ "ducation": 29392,
+ "▁attributed": 29393,
+ "*$": 29394,
+ "▁unf": 29395,
+ "▁Vertrag": 29396,
+ "zien": 29397,
+ "▁Роб": 29398,
+ "lices": 29399,
+ "pply": 29400,
+ "ansen": 29401,
+ "▁zeit": 29402,
+ "▁immense": 29403,
+ "▁lutego": 29404,
+ "▁Bulgar": 29405,
+ "▁miembros": 29406,
+ "▁Националь": 29407,
+ "▁Allow": 29408,
+ "▁anglès": 29409,
+ "дви": 29410,
+ "▁Toy": 29411,
+ "туа": 29412,
+ "▁yard": 29413,
+ "(%": 29414,
+ "isser": 29415,
+ "▁golf": 29416,
+ "▁Ukrain": 29417,
+ "▁hosp": 29418,
+ "Include": 29419,
+ "▁Lisa": 29420,
+ "▁csal": 29421,
+ "▁Mira": 29422,
+ "recogn": 29423,
+ "▁Ке": 29424,
+ "▁hitting": 29425,
+ "кономі": 29426,
+ "▁Tournament": 29427,
+ "LOAD": 29428,
+ "▁Guardian": 29429,
+ "▁daher": 29430,
+ "▁timezone": 29431,
+ "▁tomcat": 29432,
+ "▁successor": 29433,
+ "▁Void": 29434,
+ "▁começ": 29435,
+ "▁converts": 29436,
+ "ächs": 29437,
+ "osex": 29438,
+ "xelles": 29439,
+ "aser": 29440,
+ "▁És": 29441,
+ "▁mou": 29442,
+ "▁ung": 29443,
+ "▁origen": 29444,
+ "▁Crow": 29445,
+ "▁Erd": 29446,
+ "▁sieben": 29447,
+ "lua": 29448,
+ "▁BB": 29449,
+ "RENT": 29450,
+ "▁piłkar": 29451,
+ "▁marque": 29452,
+ "▁Labour": 29453,
+ "viders": 29454,
+ "▁exempl": 29455,
+ "Sound": 29456,
+ "▁Wass": 29457,
+ "arrison": 29458,
+ "▁течение": 29459,
+ "▁Oficina": 29460,
+ "▁Daw": 29461,
+ "▁Kauf": 29462,
+ "ént": 29463,
+ "éső": 29464,
+ "▁=\"": 29465,
+ "▁kat": 29466,
+ "diction": 29467,
+ "▁Voll": 29468,
+ "▁highway": 29469,
+ "James": 29470,
+ "zeuge": 29471,
+ "▁modelo": 29472,
+ "Throw": 29473,
+ "▁Forum": 29474,
+ "(\"@": 29475,
+ "▁enfer": 29476,
+ "▁специаль": 29477,
+ "Numbers": 29478,
+ "▁Binary": 29479,
+ "▁Martínez": 29480,
+ "▁Stato": 29481,
+ "▁festiv": 29482,
+ "▁katol": 29483,
+ "▁Аб": 29484,
+ "▁limitation": 29485,
+ "▁STR": 29486,
+ "▁Официаль": 29487,
+ "ipes": 29488,
+ "▁Isn": 29489,
+ "▁ruled": 29490,
+ "▁cí": 29491,
+ "geber": 29492,
+ "▁lavoro": 29493,
+ "▁parentheses": 29494,
+ "оз": 29495,
+ "▁équipes": 29496,
+ "▁efficiently": 29497,
+ "▁Period": 29498,
+ "▁Regarding": 29499,
+ "leaf": 29500,
+ "▁similarity": 29501,
+ "▁gesture": 29502,
+ "datab": 29503,
+ "▁terminate": 29504,
+ "▁semantics": 29505,
+ "▁Alo": 29506,
+ "▁cig": 29507,
+ "▁OpenGL": 29508,
+ "▁heutigen": 29509,
+ "xaml": 29510,
+ "▁frequencies": 29511,
+ ")}.": 29512,
+ "▁threatened": 29513,
+ "тик": 29514,
+ "▁calcio": 29515,
+ "▁Riemann": 29516,
+ "slug": 29517,
+ "▁Finale": 29518,
+ "LR": 29519,
+ "▁Derby": 29520,
+ "▁още": 29521,
+ "▁deviation": 29522,
+ "ächen": 29523,
+ "▁Cris": 29524,
+ "ново": 29525,
+ "▁столі": 29526,
+ "▁relev": 29527,
+ "▁splendid": 29528,
+ "▁учё": 29529,
+ "erving": 29530,
+ "gable": 29531,
+ "▁générale": 29532,
+ "pom": 29533,
+ "▁Cheers": 29534,
+ "▁imprison": 29535,
+ "▁indent": 29536,
+ "▁analyz": 29537,
+ "▁revert": 29538,
+ "érer": 29539,
+ "▁phases": 29540,
+ "FirstName": 29541,
+ "▁mig": 29542,
+ "▁disturb": 29543,
+ "▁mixture": 29544,
+ "▁){": 29545,
+ "inture": 29546,
+ "▁Tried": 29547,
+ "▁sooner": 29548,
+ "▁pels": 29549,
+ "▁établ": 29550,
+ "etro": 29551,
+ "itie": 29552,
+ "▁quartier": 29553,
+ "▁гово": 29554,
+ "▁város": 29555,
+ "ufe": 29556,
+ "heten": 29557,
+ "хом": 29558,
+ "▁soap": 29559,
+ "utors": 29560,
+ "▁duch": 29561,
+ "syntax": 29562,
+ "▁tribe": 29563,
+ "▁chante": 29564,
+ "Tri": 29565,
+ "▁Mate": 29566,
+ "quality": 29567,
+ "uola": 29568,
+ "=\".": 29569,
+ "chk": 29570,
+ "▁всі": 29571,
+ "▁przeci": 29572,
+ "▁Meteor": 29573,
+ "▁scattered": 29574,
+ "Plus": 29575,
+ "trad": 29576,
+ "▁stackoverflow": 29577,
+ "▁retra": 29578,
+ "▁éditions": 29579,
+ "▁sain": 29580,
+ "cribe": 29581,
+ "ignon": 29582,
+ "ucker": 29583,
+ "▁мало": 29584,
+ "▁tenir": 29585,
+ "▁exports": 29586,
+ "▁auxili": 29587,
+ "▁]]": 29588,
+ "▁CBS": 29589,
+ "uniform": 29590,
+ "▁periodic": 29591,
+ "agrant": 29592,
+ "▁emple": 29593,
+ "Wil": 29594,
+ "▁fres": 29595,
+ "▁strutt": 29596,
+ "▁світ": 29597,
+ "▁betre": 29598,
+ "▁объек": 29599,
+ "тися": 29600,
+ "▁bisher": 29601,
+ "baum": 29602,
+ "ishi": 29603,
+ "▁Gazette": 29604,
+ "backgroundColor": 29605,
+ "jl": 29606,
+ "▁fiel": 29607,
+ "▁према": 29608,
+ "▁protagonista": 29609,
+ "▁Muhammad": 29610,
+ "▁simulate": 29611,
+ "▁Hook": 29612,
+ "fest": 29613,
+ "▁своих": 29614,
+ "Sender": 29615,
+ "▁listened": 29616,
+ "жі": 29617,
+ "jest": 29618,
+ "kord": 29619,
+ "Choice": 29620,
+ "▁hoofd": 29621,
+ "reducible": 29622,
+ "hpp": 29623,
+ "▁Wu": 29624,
+ "ši": 29625,
+ "▁Marse": 29626,
+ "▁soir": 29627,
+ "westen": 29628,
+ "emos": 29629,
+ "▁Duc": 29630,
+ "▁amerik": 29631,
+ "|}{": 29632,
+ "▁Gul": 29633,
+ "▁Sprache": 29634,
+ "▁mismatch": 29635,
+ "Scal": 29636,
+ "Pixel": 29637,
+ "EF": 29638,
+ "▁Sep": 29639,
+ "▁powiecie": 29640,
+ "urk": 29641,
+ "▁Napoli": 29642,
+ "▁neighbourhood": 29643,
+ "стоян": 29644,
+ "▁searches": 29645,
+ "yrus": 29646,
+ "пет": 29647,
+ "Help": 29648,
+ "pont": 29649,
+ "▁Orient": 29650,
+ "▁Alfonso": 29651,
+ "▁monitoring": 29652,
+ "iao": 29653,
+ "édé": 29654,
+ "▁César": 29655,
+ "шее": 29656,
+ "Shift": 29657,
+ "suit": 29658,
+ "coded": 29659,
+ "ното": 29660,
+ "▁Parti": 29661,
+ "▁lasci": 29662,
+ "▁awesome": 29663,
+ "usta": 29664,
+ "▁Сове": 29665,
+ "▁Fland": 29666,
+ "oom": 29667,
+ "▁devi": 29668,
+ "engelsk": 29669,
+ "endum": 29670,
+ "▁Pascal": 29671,
+ "▁Bind": 29672,
+ "▁siguientes": 29673,
+ "JB": 29674,
+ "▁Petersburg": 29675,
+ "▁incorrectly": 29676,
+ "▁Bash": 29677,
+ "▁pelos": 29678,
+ "▁zespo": 29679,
+ "NSURL": 29680,
+ "▁přek": 29681,
+ "▁Crime": 29682,
+ "nach": 29683,
+ "▁thrust": 29684,
+ "▁Cultura": 29685,
+ "WF": 29686,
+ "▁Solo": 29687,
+ "▁invas": 29688,
+ "▁individually": 29689,
+ "ibm": 29690,
+ "▁etapa": 29691,
+ "▁handed": 29692,
+ "▁wherever": 29693,
+ "▁interpolation": 29694,
+ "▁musée": 29695,
+ "▁CNN": 29696,
+ "idia": 29697,
+ "ństw": 29698,
+ "▁przew": 29699,
+ "ughing": 29700,
+ "▁actors": 29701,
+ "▁Oriental": 29702,
+ "▁convenience": 29703,
+ "▁miasta": 29704,
+ "brains": 29705,
+ "▁меся": 29706,
+ "▁infatti": 29707,
+ "▁AllMovie": 29708,
+ "▁critique": 29709,
+ "▁successo": 29710,
+ "ancouver": 29711,
+ "▁fá": 29712,
+ "ългар": 29713,
+ "▁wisdom": 29714,
+ "▁Phoenix": 29715,
+ "hole": 29716,
+ "▁información": 29717,
+ "▁Airlines": 29718,
+ ".«": 29719,
+ "mort": 29720,
+ "userId": 29721,
+ "▁*/\r": 29722,
+ "▁Congo": 29723,
+ "▁\"`": 29724,
+ "corr": 29725,
+ "▁problemas": 29726,
+ "▁bib": 29727,
+ "▁później": 29728,
+ "▁fileName": 29729,
+ "zott": 29730,
+ "macht": 29731,
+ "▁Ulrich": 29732,
+ "Cy": 29733,
+ "endpoint": 29734,
+ "▁sheep": 29735,
+ "▁ibn": 29736,
+ "Feed": 29737,
+ "▁sympathy": 29738,
+ "▁Ib": 29739,
+ "▁territorial": 29740,
+ "rating": 29741,
+ "дами": 29742,
+ "▁dst": 29743,
+ "ую": 29744,
+ "aho": 29745,
+ "▁sug": 29746,
+ "emia": 29747,
+ "▁ted": 29748,
+ "▁Api": 29749,
+ "▁Rica": 29750,
+ "▁MR": 29751,
+ "ńskim": 29752,
+ "▁Voor": 29753,
+ "▁devil": 29754,
+ "▁Фо": 29755,
+ "▁När": 29756,
+ "▁...)": 29757,
+ "▁vois": 29758,
+ "▁abbre": 29759,
+ "▁Männer": 29760,
+ "ximo": 29761,
+ "▁intellectual": 29762,
+ "▁tales": 29763,
+ "similar": 29764,
+ "neum": 29765,
+ "▁Orig": 29766,
+ "▁postal": 29767,
+ "▁hvor": 29768,
+ "▁identification": 29769,
+ "▁Од": 29770,
+ "uesto": 29771,
+ "▁../": 29772,
+ "▁bir": 29773,
+ "▁Лон": 29774,
+ "▁esempio": 29775,
+ "▁Eing": 29776,
+ "Expand": 29777,
+ "▁PRIMARY": 29778,
+ "▁Jin": 29779,
+ "▁však": 29780,
+ "ourses": 29781,
+ "▁Betty": 29782,
+ "▁WM": 29783,
+ "▁flask": 29784,
+ "hlen": 29785,
+ "▁Adel": 29786,
+ "laravel": 29787,
+ "▁дет": 29788,
+ "ською": 29789,
+ "▁Mundo": 29790,
+ "iczn": 29791,
+ "ifié": 29792,
+ "▁Мор": 29793,
+ "▁древ": 29794,
+ "DateFormat": 29795,
+ "ським": 29796,
+ "▁dated": 29797,
+ "коли": 29798,
+ "▁результате": 29799,
+ "\\).": 29800,
+ "▁delayed": 29801,
+ "sound": 29802,
+ "▁Мак": 29803,
+ "▁\"...": 29804,
+ "▁binnen": 29805,
+ "▁факуль": 29806,
+ "▁polygon": 29807,
+ "▁eggs": 29808,
+ "AtIndexPath": 29809,
+ "менталь": 29810,
+ "▁incred": 29811,
+ "chunk": 29812,
+ "webdriver": 29813,
+ "▁свобо": 29814,
+ "▁między": 29815,
+ "Received": 29816,
+ "▁Monde": 29817,
+ "▁JQuery": 29818,
+ "Butt": 29819,
+ "▁PDO": 29820,
+ "▁forec": 29821,
+ "▁discipline": 29822,
+ "chev": 29823,
+ "нат": 29824,
+ "▁redis": 29825,
+ "▁hunting": 29826,
+ "▁alk": 29827,
+ "▁proofs": 29828,
+ "PRI": 29829,
+ "▁chip": 29830,
+ "ésie": 29831,
+ "▁HO": 29832,
+ "▁rug": 29833,
+ "zos": 29834,
+ "▁sorte": 29835,
+ "▁zeigt": 29836,
+ "▁Physics": 29837,
+ "legte": 29838,
+ "▁proportional": 29839,
+ "▁toolbar": 29840,
+ "vement": 29841,
+ "notin": 29842,
+ "▁první": 29843,
+ "blah": 29844,
+ "▁présence": 29845,
+ "▁lloc": 29846,
+ "▁líder": 29847,
+ "▁Accept": 29848,
+ "▁Always": 29849,
+ "▁\"{": 29850,
+ "▁diversi": 29851,
+ "ikor": 29852,
+ "Period": 29853,
+ "жён": 29854,
+ "▁Alliance": 29855,
+ "▁relay": 29856,
+ "Bro": 29857,
+ "jön": 29858,
+ "▁Baud": 29859,
+ "▁Bian": 29860,
+ "')[": 29861,
+ "чив": 29862,
+ "▁Poss": 29863,
+ "▁Mitglieder": 29864,
+ "▁nev": 29865,
+ "Daniel": 29866,
+ "▁tends": 29867,
+ "▁compagnie": 29868,
+ "▁livres": 29869,
+ "lub": 29870,
+ "▁": 29871,
+ "e": 29872,
+ "t": 29873,
+ "a": 29874,
+ "i": 29875,
+ "n": 29876,
+ "o": 29877,
+ "r": 29878,
+ "s": 29879,
+ "l": 29880,
+ "d": 29881,
+ "h": 29882,
+ "c": 29883,
+ "u": 29884,
+ "m": 29885,
+ "p": 29886,
+ "g": 29887,
+ "f": 29888,
+ ".": 29889,
+ "b": 29890,
+ "y": 29891,
+ ",": 29892,
+ "w": 29893,
+ "v": 29894,
+ "k": 29895,
+ "1": 29896,
+ ")": 29897,
+ "(": 29898,
+ "-": 29899,
+ "0": 29900,
+ ":": 29901,
+ "I": 29902,
+ "S": 29903,
+ "о": 29904,
+ "\\": 29905,
+ "2": 29906,
+ "C": 29907,
+ "\"": 29908,
+ "A": 29909,
+ "а": 29910,
+ "T": 29911,
+ "{": 29912,
+ "}": 29913,
+ "/": 29914,
+ "'": 29915,
+ "x": 29916,
+ "и": 29917,
+ "_": 29918,
+ "е": 29919,
+ "z": 29920,
+ "н": 29921,
+ "=": 29922,
+ "E": 29923,
+ "M": 29924,
+ "P": 29925,
+ "j": 29926,
+ "р": 29927,
+ "D": 29928,
+ "9": 29929,
+ "*": 29930,
+ "L": 29931,
+ "т": 29932,
+ "B": 29933,
+ "R": 29934,
+ "с": 29935,
+ ";": 29936,
+ "#": 29937,
+ "$": 29938,
+ "q": 29939,
+ "N": 29940,
+ "3": 29941,
+ "в": 29942,
+ "F": 29943,
+ "л": 29944,
+ "5": 29945,
+ "4": 29946,
+ "8": 29947,
+ "é": 29948,
+ "O": 29949,
+ "H": 29950,
+ "к": 29951,
+ "`": 29952,
+ "6": 29953,
+ "G": 29954,
+ "7": 29955,
+ "W": 29956,
+ "д": 29957,
+ ">": 29958,
+ "м": 29959,
+ "у": 29960,
+ "[": 29961,
+ "]": 29962,
+ "V": 29963,
+ "п": 29964,
+ "U": 29965,
+ "<": 29966,
+ "J": 29967,
+ "K": 29968,
+ "г": 29969,
+ "я": 29970,
+ "і": 29971,
+ "з": 29972,
+ "?": 29973,
+ "+": 29974,
+ "б": 29975,
+ "á": 29976,
+ "й": 29977,
+ "ь": 29978,
+ "Y": 29979,
+ "ó": 29980,
+ "ч": 29981,
+ "ы": 29982,
+ "í": 29983,
+ "Q": 29984,
+ "^": 29985,
+ "ä": 29986,
+ "&": 29987,
+ "х": 29988,
+ "|": 29989,
+ "X": 29990,
+ "!": 29991,
+ "@": 29992,
+ "ü": 29993,
+ "–": 29994,
+ "%": 29995,
+ "ц": 29996,
+ "ö": 29997,
+ "ж": 29998,
+ "Z": 29999,
+ "è": 30000,
+ "à": 30001,
+ "ш": 30002,
+ "—": 30003,
+ "\r": 30004,
+ "ю": 30005,
+ "ł": 30006,
+ "»": 30007,
+ "С": 30008,
+ "«": 30009,
+ "’": 30010,
+ "ф": 30011,
+ "В": 30012,
+ "П": 30013,
+ "К": 30014,
+ "“": 30015,
+ "ј": 30016,
+ "М": 30017,
+ "А": 30018,
+ "ç": 30019,
+ "å": 30020,
+ "щ": 30021,
+ "~": 30022,
+ "ę": 30023,
+ "”": 30024,
+ "ą": 30025,
+ "č": 30026,
+ "Р": 30027,
+ "ї": 30028,
+ "Н": 30029,
+ "ú": 30030,
+ "Б": 30031,
+ "Д": 30032,
+ "ã": 30033,
+ "ß": 30034,
+ "ă": 30035,
+ "ě": 30036,
+ "ê": 30037,
+ "О": 30038,
+ "š": 30039,
+ "Г": 30040,
+ "Т": 30041,
+ "ż": 30042,
+ "ё": 30043,
+ "ž": 30044,
+ "ś": 30045,
+ "ñ": 30046,
+ "ř": 30047,
+ "ő": 30048,
+ "„": 30049,
+ "Л": 30050,
+ "э": 30051,
+ "ý": 30052,
+ "У": 30053,
+ "И": 30054,
+ "ъ": 30055,
+ "є": 30056,
+ "â": 30057,
+ "î": 30058,
+ "ò": 30059,
+ "З": 30060,
+ "Ф": 30061,
+ "É": 30062,
+ "ć": 30063,
+ "·": 30064,
+ "ș": 30065,
+ "ń": 30066,
+ "ț": 30067,
+ "Х": 30068,
+ "ô": 30069,
+ "Е": 30070,
+ "ù": 30071,
+ "ů": 30072,
+ "°": 30073,
+ "Ш": 30074,
+ "љ": 30075,
+ "Ч": 30076,
+ "ø": 30077,
+ "æ": 30078,
+ "њ": 30079,
+ " ": 30080,
+ " ": 30081,
+ "Э": 30082,
+ "ë": 30083,
+ "õ": 30084,
+ "ï": 30085,
+ "‘": 30086,
+ "†": 30087,
+ "²": 30088,
+ "ű": 30089,
+ "І": 30090,
+ "─": 30091,
+ "Ц": 30092,
+ "ћ": 30093,
+ "Ö": 30094,
+ "û": 30095,
+ "Я": 30096,
+ "ì": 30097,
+ "…": 30098,
+ "ō": 30099,
+ "Ж": 30100,
+ "Ю": 30101,
+ "Á": 30102,
+ "́": 30103,
+ "Ü": 30104,
+ "º": 30105,
+ "œ": 30106,
+ "ā": 30107,
+ "Č": 30108,
+ "ź": 30109,
+ "α": 30110,
+ "│": 30111,
+ "ا": 30112,
+ "À": 30113,
+ "═": 30114,
+ "Š": 30115,
+ "ђ": 30116,
+ "№": 30117,
+ " ": 30118,
+ "•": 30119,
+ "−": 30120,
+ "→": 30121,
+ "×": 30122,
+ "ο": 30123,
+ "₂": 30124,
+ "Ä": 30125,
+ "Î": 30126,
+ "Ś": 30127,
+ "đ": 30128,
+ "Å": 30129,
+ "ı": 30130,
+ "": 30131,
+ "ū": 30132,
+ "ν": 30133,
+ "Й": 30134,
+ "ª": 30135,
+ "ι": 30136,
+ "τ": 30137,
+ "ل": 30138,
+ "′": 30139,
+ "�": 30140,
+ "È": 30141,
+ "λ": 30142,
+ "": 30143,
+ "Ž": 30144,
+ "ς": 30145,
+ "ň": 30146,
+ "ρ": 30147,
+ "₁": 30148,
+ "Є": 30149,
+ "ī": 30150,
+ "ε": 30151,
+ "§": 30152,
+ "Ł": 30153,
+ "Ј": 30154,
+ "£": 30155,
+ "ر": 30156,
+ "Ż": 30157,
+ "¿": 30158,
+ "م": 30159,
+ "″": 30160,
+ "Ú": 30161,
+ "ن": 30162,
+ "ي": 30163,
+ "σ": 30164,
+ "´": 30165,
+ "": 30166,
+ "μ": 30167,
+ "³": 30168,
+ "ş": 30169,
+ "π": 30170,
+ "و": 30171,
+ "د": 30172,
+ "κ": 30173,
+ "₃": 30174,
+ "Í": 30175,
+ "ˈ": 30176,
+ "ب": 30177,
+ "Ó": 30178,
+ "Ã": 30179,
+ "¡": 30180,
+ "€": 30181,
+ "ť": 30182,
+ "η": 30183,
+ "ə": 30184,
+ "ー": 30185,
+ "Щ": 30186,
+ "β": 30187,
+ "├": 30188,
+ "ð": 30189,
+ "ґ": 30190,
+ "": 30191,
+ "υ": 30192,
+ "¹": 30193,
+ "₄": 30194,
+ "ت": 30195,
+ "י": 30196,
+ "γ": 30197,
+ "س": 30198,
+ "の": 30199,
+ "ğ": 30200,
+ "δ": 30201,
+ "ی": 30202,
+ "ン": 30203,
+ "ه": 30204,
+ "ו": 30205,
+ "ω": 30206,
+ "ί": 30207,
+ "█": 30208,
+ "θ": 30209,
+ "的": 30210,
+ "©": 30211,
+ "Â": 30212,
+ "↑": 30213,
+ ",": 30214,
+ "ː": 30215,
+ "ά": 30216,
+ "―": 30217,
+ "ع": 30218,
+ "Ç": 30219,
+ "₀": 30220,
+ "±": 30221,
+ "Ø": 30222,
+ "ď": 30223,
+ "Ř": 30224,
+ "Œ": 30225,
+ "½": 30226,
+ "└": 30227,
+ "ό": 30228,
+ "‚": 30229,
+ "ē": 30230,
+ "₅": 30231,
+ "Æ": 30232,
+ "Ș": 30233,
+ "ɛ": 30234,
+ "ה": 30235,
+ "ר": 30236,
+ "φ": 30237,
+ "₆": 30238,
+ "ė": 30239,
+ "ح": 30240,
+ "ف": 30241,
+ "ة": 30242,
+ "İ": 30243,
+ " ": 30244,
+ "←": 30245,
+ "║": 30246,
+ "ɔ": 30247,
+ "≤": 30248,
+ "ל": 30249,
+ "Đ": 30250,
+ "ա": 30251,
+ "Ō": 30252,
+ "א": 30253,
+ "്": 30254,
+ "ス": 30255,
+ "ش": 30256,
+ "大": 30257,
+ "ル": 30258,
+ "џ": 30259,
+ "イ": 30260,
+ "⟩": 30261,
+ " ": 30262,
+ "µ": 30263,
+ "∈": 30264,
+ "ق": 30265,
+ "⟨": 30266,
+ "。": 30267,
+ "Ґ": 30268,
+ "ा": 30269,
+ "ج": 30270,
+ "ʿ": 30271,
+ "ა": 30272,
+ "έ": 30273,
+ "χ": 30274,
+ "中": 30275,
+ "ב": 30276,
+ "ი": 30277,
+ "₈": 30278,
+ "ト": 30279,
+ "ή": 30280,
+ "ラ": 30281,
+ "Џ": 30282,
+ "ك": 30283,
+ "₇": 30284,
+ "מ": 30285,
+ "ת": 30286,
+ "一": 30287,
+ "Π": 30288,
+ "า": 30289,
+ "・": 30290,
+ "Σ": 30291,
+ "Α": 30292,
+ "Δ": 30293,
+ "ש": 30294,
+ "ز": 30295,
+ "्": 30296,
+ "ร": 30297,
+ "い": 30298,
+ "ʻ": 30299,
+ "Њ": 30300,
+ "₉": 30301,
+ "ʼ": 30302,
+ "リ": 30303,
+ "‐": 30304,
+ "ク": 30305,
+ "∞": 30306,
+ "⁄": 30307,
+ "ύ": 30308,
+ "Ş": 30309,
+ "ア": 30310,
+ "Ε": 30311,
+ "ɪ": 30312,
+ "人": 30313,
+ "Κ": 30314,
+ "∀": 30315,
+ "र": 30316,
+ "ッ": 30317,
+ "►": 30318,
+ "子": 30319,
+ "¬": 30320,
+ "خ": 30321,
+ "◄": 30322,
+ "َ": 30323,
+ "ע": 30324,
+ "日": 30325,
+ "し": 30326,
+ "ḥ": 30327,
+ "נ": 30328,
+ "山": 30329,
+ "、": 30330,
+ "Ї": 30331,
+ "る": 30332,
+ "文": 30333,
+ "Ñ": 30334,
+ "ド": 30335,
+ "ד": 30336,
+ "ն": 30337,
+ "Ђ": 30338,
+ "Γ": 30339,
+ "þ": 30340,
+ "": 30341,
+ "®": 30342,
+ "ک": 30343,
+ "": 30344,
+ "⚭": 30345,
+ "本": 30346,
+ "ℕ": 30347,
+ "น": 30348,
+ "ѝ": 30349,
+ "̶": 30350,
+ "อ": 30351,
+ "ў": 30352,
+ "に": 30353,
+ "数": 30354,
+ "ე": 30355,
+ "国": 30356,
+ "Ω": 30357,
+ " ": 30358,
+ "ǎ": 30359,
+ "ص": 30360,
+ "": 30361,
+ "Μ": 30362,
+ " ": 30363,
+ "と": 30364,
+ "": 30365,
+ "た": 30366,
+ "ط": 30367,
+ "ր": 30368,
+ "タ": 30369,
+ "ÿ": 30370,
+ "な": 30371,
+ "أ": 30372,
+ "シ": 30373,
+ "新": 30374,
+ "﹕": 30375,
+ "ʃ": 30376,
+ "ľ": 30377,
+ "ロ": 30378,
+ "⁴": 30379,
+ "்": 30380,
+ "⇒": 30381,
+ "ţ": 30382,
+ ":": 30383,
+ "Ț": 30384,
+ "ക": 30385,
+ "≥": 30386,
+ "ി": 30387,
+ "マ": 30388,
+ "ん": 30389,
+ "ṣ": 30390,
+ "ジ": 30391,
+ "是": 30392,
+ "이": 30393,
+ "⋅": 30394,
+ "田": 30395,
+ "を": 30396,
+ "道": 30397,
+ "ง": 30398,
+ "¨": 30399,
+ "ـ": 30400,
+ "เ": 30401,
+ "村": 30402,
+ "Ê": 30403,
+ "ם": 30404,
+ "›": 30405,
+ "用": 30406,
+ "ώ": 30407,
+ "天": 30408,
+ ")": 30409,
+ "་": 30410,
+ "镇": 30411,
+ "か": 30412,
+ "不": 30413,
+ "Τ": 30414,
+ "学": 30415,
+ "ư": 30416,
+ "有": 30417,
+ "ո": 30418,
+ "(": 30419,
+ "レ": 30420,
+ "گ": 30421,
+ "": 30422,
+ "フ": 30423,
+ "न": 30424,
+ "ก": 30425,
+ "ɑ": 30426,
+ "す": 30427,
+ "ח": 30428,
+ "上": 30429,
+ "": 30430,
+ "∧": 30431,
+ "ṭ": 30432,
+ "ק": 30433,
+ "ξ": 30434,
+ "¤": 30435,
+ "ि": 30436,
+ "会": 30437,
+ "ന": 30438,
+ "カ": 30439,
+ "ų": 30440,
+ "ま": 30441,
+ "ു": 30442,
+ "͡": 30443,
+ "क": 30444,
+ "া": 30445,
+ "小": 30446,
+ "ן": 30447,
+ "行": 30448,
+ "は": 30449,
+ "ʁ": 30450,
+ "Ő": 30451,
+ "Þ": 30452,
+ "り": 30453,
+ "キ": 30454,
+ "Λ": 30455,
+ "რ": 30456,
+ "三": 30457,
+ "が": 30458,
+ "コ": 30459,
+ "ζ": 30460,
+ "市": 30461,
+ "王": 30462,
+ "ℝ": 30463,
+ "Ź": 30464,
+ "う": 30465,
+ "て": 30466,
+ "区": 30467,
+ "ാ": 30468,
+ "": 30469,
+ "年": 30470,
+ "פ": 30471,
+ "ի": 30472,
+ "ſ": 30473,
+ "‹": 30474,
+ "त": 30475,
+ "ŏ": 30476,
+ "‑": 30477,
+ "̃": 30478,
+ "Ć": 30479,
+ "ى": 30480,
+ "「": 30481,
+ "」": 30482,
+ "ს": 30483,
+ "Ā": 30484,
+ "म": 30485,
+ "生": 30486,
+ "≠": 30487,
+ "Љ": 30488,
+ "स": 30489,
+ "↔": 30490,
+ "Ο": 30491,
+ "ว": 30492,
+ "ლ": 30493,
+ "成": 30494,
+ "定": 30495,
+ "ล": 30496,
+ "¶": 30497,
+ "כ": 30498,
+ "で": 30499,
+ "ּ": 30500,
+ "ม": 30501,
+ "个": 30502,
+ "和": 30503,
+ "ס": 30504,
+ "在": 30505,
+ "Β": 30506,
+ "ิ": 30507,
+ "Ι": 30508,
+ "⁵": 30509,
+ "ั": 30510,
+ "ɡ": 30511,
+ "━": 30512,
+ "ら": 30513,
+ "オ": 30514,
+ "¼": 30515,
+ "ե": 30516,
+ "バ": 30517,
+ "ָ": 30518,
+ "ŋ": 30519,
+ "ŭ": 30520,
+ "グ": 30521,
+ "⁶": 30522,
+ "Ь": 30523,
+ "⁰": 30524,
+ "方": 30525,
+ "บ": 30526,
+ "": 30527,
+ "高": 30528,
+ "ệ": 30529,
+ "Ν": 30530,
+ "ѣ": 30531,
+ "ィ": 30532,
+ "地": 30533,
+ "月": 30534,
+ "Ô": 30535,
+ "™": 30536,
+ "ウ": 30537,
+ "き": 30538,
+ "公": 30539,
+ "ạ": 30540,
+ "ო": 30541,
+ "ɾ": 30542,
+ "่": 30543,
+ "出": 30544,
+ "法": 30545,
+ "Θ": 30546,
+ "ส": 30547,
+ "名": 30548,
+ "ย": 30549,
+ "ത": 30550,
+ "Φ": 30551,
+ "↓": 30552,
+ "れ": 30553,
+ "ג": 30554,
+ "Ё": 30555,
+ "ơ": 30556,
+ "下": 30557,
+ "ә": 30558,
+ "ψ": 30559,
+ "┼": 30560,
+ "ャ": 30561,
+ "√": 30562,
+ "¥": 30563,
+ "社": 30564,
+ "ṇ": 30565,
+ "さ": 30566,
+ "ِ": 30567,
+ "く": 30568,
+ "े": 30569,
+ "Ы": 30570,
+ "ἐ": 30571,
+ "テ": 30572,
+ "为": 30573,
+ "乡": 30574,
+ "川": 30575,
+ "ナ": 30576,
+ "之": 30577,
+ "字": 30578,
+ "ム": 30579,
+ "ी": 30580,
+ "海": 30581,
+ "ブ": 30582,
+ "≈": 30583,
+ "!": 30584,
+ "پ": 30585,
+ "¯": 30586,
+ "ἀ": 30587,
+ "": 30588,
+ "こ": 30589,
+ "ְ": 30590,
+ "東": 30591,
+ "明": 30592,
+ "ὶ": 30593,
+ "时": 30594,
+ "ท": 30595,
+ "ɨ": 30596,
+ "デ": 30597,
+ "️": 30598,
+ "ʊ": 30599,
+ "エ": 30600,
+ "南": 30601,
+ "西": 30602,
+ "ल": 30603,
+ "メ": 30604,
+ "プ": 30605,
+ "平": 30606,
+ "式": 30607,
+ "ῖ": 30608,
+ "қ": 30609,
+ "व": 30610,
+ "غ": 30611,
+ "Ò": 30612,
+ "家": 30613,
+ "ʒ": 30614,
+ "サ": 30615,
+ "≡": 30616,
+ "ダ": 30617,
+ "ต": 30618,
+ "∃": 30619,
+ "₹": 30620,
+ "प": 30621,
+ "第": 30622,
+ "ര": 30623,
+ "ض": 30624,
+ "▄": 30625,
+ "城": 30626,
+ "ミ": 30627,
+ "ɐ": 30628,
+ "¦": 30629,
+ "美": 30630,
+ "件": 30631,
+ "ნ": 30632,
+ "Ð": 30633,
+ "ַ": 30634,
+ "ニ": 30635,
+ "部": 30636,
+ "ņ": 30637,
+ "ǐ": 30638,
+ "ט": 30639,
+ "य": 30640,
+ "あ": 30641,
+ "¾": 30642,
+ "ả": 30643,
+ "ち": 30644,
+ "ュ": 30645,
+ "÷": 30646,
+ "女": 30647,
+ "神": 30648,
+ "♦": 30649,
+ "¢": 30650,
+ "以": 30651,
+ "้": 30652,
+ "র": 30653,
+ "太": 30654,
+ "্": 30655,
+ "チ": 30656,
+ "յ": 30657,
+ "前": 30658,
+ "金": 30659,
+ "ւ": 30660,
+ "野": 30661,
+ "北": 30662,
+ "ห": 30663,
+ "‰": 30664,
+ "っ": 30665,
+ "加": 30666,
+ "原": 30667,
+ "ʲ": 30668,
+ "置": 30669,
+ "安": 30670,
+ "ガ": 30671,
+ "我": 30672,
+ "Ḥ": 30673,
+ "യ": 30674,
+ "京": 30675,
+ "▀": 30676,
+ "მ": 30677,
+ "ვ": 30678,
+ "ʾ": 30679,
+ "∨": 30680,
+ "ִ": 30681,
+ "可": 30682,
+ "取": 30683,
+ "县": 30684,
+ "二": 30685,
+ "▒": 30686,
+ "理": 30687,
+ "自": 30688,
+ "信": 30689,
+ "代": 30690,
+ "ี": 30691,
+ "צ": 30692,
+ "်": 30693,
+ "द": 30694,
+ "⁸": 30695,
+ "̯": 30696,
+ "お": 30697,
+ "要": 30698,
+ "ῦ": 30699,
+ "க": 30700,
+ "ễ": 30701,
+ "ु": 30702,
+ "ƒ": 30703,
+ "ʰ": 30704,
+ "化": 30705,
+ "✓": 30706,
+ "പ": 30707,
+ "의": 30708,
+ "다": 30709,
+ "木": 30710,
+ "ُ": 30711,
+ "̀": 30712,
+ "ˌ": 30713,
+ "ह": 30714,
+ "パ": 30715,
+ "水": 30716,
+ "ế": 30717,
+ "ด": 30718,
+ "ズ": 30719,
+ "⁹": 30720,
+ "島": 30721,
+ "": 30722,
+ "も": 30723,
+ "正": 30724,
+ "■": 30725,
+ "آ": 30726,
+ "พ": 30727,
+ "内": 30728,
+ "Ì": 30729,
+ "ǔ": 30730,
+ "┬": 30731,
+ "作": 30732,
+ "合": 30733,
+ "ὸ": 30734,
+ "み": 30735,
+ "▼": 30736,
+ "ῶ": 30737,
+ "⊙": 30738,
+ "~": 30739,
+ "ị": 30740,
+ "ْ": 30741,
+ "回": 30742,
+ "了": 30743,
+ "所": 30744,
+ "事": 30745,
+ "表": 30746,
+ "ำ": 30747,
+ "分": 30748,
+ "⁷": 30749,
+ "ү": 30750,
+ "": 30751,
+ "入": 30752,
+ "全": 30753,
+ "إ": 30754,
+ "里": 30755,
+ "Χ": 30756,
+ "ं": 30757,
+ "ハ": 30758,
+ "ค": 30759,
+ "⁻": 30760,
+ "モ": 30761,
+ "郎": 30762,
+ "据": 30763,
+ "●": 30764,
+ "州": 30765,
+ "∩": 30766,
+ "者": 30767,
+ "通": 30768,
+ "都": 30769,
+ "ℤ": 30770,
+ "♭": 30771,
+ "╌": 30772,
+ "つ": 30773,
+ "ḍ": 30774,
+ "江": 30775,
+ "ז": 30776,
+ "Ý": 30777,
+ "ө": 30778,
+ "์": 30779,
+ "到": 30780,
+ "ி": 30781,
+ "ʂ": 30782,
+ "对": 30783,
+ "스": 30784,
+ "使": 30785,
+ "ি": 30786,
+ "よ": 30787,
+ "Ἀ": 30788,
+ "Ï": 30789,
+ "∘": 30790,
+ "사": 30791,
+ "ন": 30792,
+ "世": 30793,
+ "ɕ": 30794,
+ "կ": 30795,
+ "უ": 30796,
+ "ട": 30797,
+ "ბ": 30798,
+ "ो": 30799,
+ "വ": 30800,
+ "果": 30801,
+ "十": 30802,
+ "ุ": 30803,
+ "藤": 30804,
+ "来": 30805,
+ "面": 30806,
+ "け": 30807,
+ "ĕ": 30808,
+ "ビ": 30809,
+ "这": 30810,
+ "지": 30811,
+ "ം": 30812,
+ "街": 30813,
+ "石": 30814,
+ "能": 30815,
+ "空": 30816,
+ "տ": 30817,
+ "ئ": 30818,
+ "武": 30819,
+ "ʹ": 30820,
+ "ϕ": 30821,
+ "后": 30822,
+ "ะ": 30823,
+ "元": 30824,
+ "ʔ": 30825,
+ "리": 30826,
+ "기": 30827,
+ "河": 30828,
+ "町": 30829,
+ "花": 30830,
+ "ὐ": 30831,
+ "类": 30832,
+ "░": 30833,
+ "物": 30834,
+ "Η": 30835,
+ "¸": 30836,
+ "ு": 30837,
+ "თ": 30838,
+ "ث": 30839,
+ "െ": 30840,
+ "╠": 30841,
+ "⊆": 30842,
+ "》": 30843,
+ "ツ": 30844,
+ "版": 30845,
+ "动": 30846,
+ "如": 30847,
+ "真": 30848,
+ "ɲ": 30849,
+ "号": 30850,
+ "ذ": 30851,
+ "정": 30852,
+ "林": 30853,
+ "書": 30854,
+ "民": 30855,
+ "口": 30856,
+ "ّ": 30857,
+ "示": 30858,
+ "മ": 30859,
+ "아": 30860,
+ "图": 30861,
+ "∪": 30862,
+ "戦": 30863,
+ "李": 30864,
+ "ല": 30865,
+ "《": 30866,
+ "光": 30867,
+ "白": 30868,
+ "心": 30869,
+ "த": 30870,
+ "ज": 30871,
+ "设": 30872,
+ "ί": 30873,
+ "路": 30874,
+ "ग": 30875,
+ "∥": 30876,
+ "한": 30877,
+ "最": 30878,
+ "Ћ": 30879,
+ "手": 30880,
+ "ս": 30881,
+ "?": 30882,
+ "型": 30883,
+ "ầ": 30884,
+ "セ": 30885,
+ "建": 30886,
+ "ェ": 30887,
+ "主": 30888,
+ "시": 30889,
+ "대": 30890,
+ "ῆ": 30891,
+ "‡": 30892,
+ "集": 30893,
+ "დ": 30894,
+ "目": 30895,
+ "Ρ": 30896,
+ "ァ": 30897,
+ "度": 30898,
+ "長": 30899,
+ "星": 30900,
+ "ノ": 30901,
+ "ộ": 30902,
+ "가": 30903,
+ "五": 30904,
+ "چ": 30905,
+ "로": 30906,
+ "ョ": 30907,
+ "重": 30908,
+ "于": 30909,
+ "发": 30910,
+ "史": 30911,
+ "ظ": 30912,
+ "ช": 30913,
+ "え": 30914,
+ "國": 30915,
+ "ĭ": 30916,
+ "ப": 30917,
+ "인": 30918,
+ "你": 30919,
+ "駅": 30920,
+ "‒": 30921,
+ "♥": 30922,
+ "多": 30923,
+ "ħ": 30924,
+ "Қ": 30925,
+ "ồ": 30926,
+ "士": 30927,
+ "四": 30928,
+ "┴": 30929,
+ "ம": 30930,
+ "司": 30931,
+ "ে": 30932,
+ "ὰ": 30933,
+ "∂": 30934,
+ "╬": 30935,
+ "次": 30936,
+ "Ľ": 30937,
+ "⟶": 30938,
+ "立": 30939,
+ "点": 30940,
+ "音": 30941,
+ "⠀": 30942,
+ "器": 30943,
+ "하": 30944,
+ "井": 30945,
+ "存": 30946,
+ "ֹ": 30947,
+ "当": 30948,
+ "Ë": 30949,
+ "★": 30950,
+ "寺": 30951,
+ "性": 30952,
+ "也": 30953,
+ "め": 30954,
+ "だ": 30955,
+ "位": 30956,
+ "ങ": 30957,
+ "ہ": 30958,
+ "值": 30959,
+ "古": 30960,
+ "გ": 30961,
+ "ব": 30962,
+ "院": 30963,
+ "േ": 30964,
+ "▶": 30965,
+ "ர": 30966,
+ "界": 30967,
+ "語": 30968,
+ "സ": 30969,
+ "수": 30970,
+ "ǒ": 30971,
+ "愛": 30972,
+ "✔": 30973,
+ "時": 30974,
+ "ọ": 30975,
+ "റ": 30976,
+ "մ": 30977,
+ "ケ": 30978,
+ "东": 30979,
+ "同": 30980,
+ "주": 30981,
+ "保": 30982,
+ "Õ": 30983,
+ "ố": 30984,
+ "ἰ": 30985,
+ "青": 30986,
+ "ゴ": 30987,
+ "体": 30988,
+ "清": 30989,
+ "相": 30990,
+ "จ": 30991,
+ "ء": 30992,
+ "情": 30993,
+ "𝕜": 30994,
+ "ক": 30995,
+ "ḫ": 30996,
+ "ờ": 30997,
+ "将": 30998,
+ "族": 30999,
+ "동": 31000,
+ "Υ": 31001,
+ "┌": 31002,
+ "ボ": 31003,
+ "宮": 31004,
+ "』": 31005,
+ "ম": 31006,
+ "『": 31007,
+ "ļ": 31008,
+ "श": 31009,
+ "ป": 31010,
+ "Ա": 31011,
+ "ब": 31012,
+ "자": 31013,
+ "政": 31014,
+ "ா": 31015,
+ "间": 31016,
+ "fi": 31017,
+ "松": 31018,
+ "ṃ": 31019,
+ "始": 31020,
+ "息": 31021,
+ "少": 31022,
+ "教": 31023,
+ "获": 31024,
+ "列": 31025,
+ "开": 31026,
+ "ტ": 31027,
+ "ワ": 31028,
+ "კ": 31029,
+ "科": 31030,
+ "春": 31031,
+ "治": 31032,
+ "吉": 31033,
+ "ས": 31034,
+ "ศ": 31035,
+ "ɒ": 31036,
+ "台": 31037,
+ "ネ": 31038,
+ "း": 31039,
+ "ĩ": 31040,
+ "工": 31041,
+ "ά": 31042,
+ "知": 31043,
+ "八": 31044,
+ "場": 31045,
+ "画": 31046,
+ "百": 31047,
+ "☆": 31048,
+ "記": 31049,
+ "得": 31050,
+ "ソ": 31051,
+ "氏": 31052,
+ "ာ": 31053,
+ "에": 31054,
+ "ল": 31055,
+ "ṛ": 31056,
+ "关": 31057,
+ "ġ": 31058,
+ "έ": 31059,
+ "∑": 31060,
+ "ベ": 31061,
+ "标": 31062,
+ "니": 31063,
+ "ὴ": 31064,
+ "ֵ": 31065,
+ "外": 31066,
+ "♠": 31067,
+ "わ": 31068,
+ "間": 31069,
+ "ภ": 31070,
+ "校": 31071,
+ "制": 31072,
+ "แ": 31073,
+ "力": 31074,
+ "門": 31075,
+ "好": 31076,
+ "ғ": 31077,
+ "Ù": 31078,
+ "ℓ": 31079,
+ "ֶ": 31080,
+ "는": 31081,
+ "┐": 31082,
+ "∗": 31083,
+ "指": 31084,
+ "色": 31085,
+ "返": 31086,
+ "馬": 31087,
+ "请": 31088,
+ "≫": 31089,
+ "風": 31090,
+ "ό": 31091,
+ "接": 31092,
+ "서": 31093,
+ "↳": 31094,
+ "せ": 31095,
+ "志": 31096,
+ "̲": 31097,
+ "魔": 31098,
+ "ң": 31099,
+ "更": 31100,
+ "程": 31101,
+ "김": 31102,
+ "郡": 31103,
+ "ོ": 31104,
+ "ũ": 31105,
+ "ച": 31106,
+ "利": 31107,
+ "県": 31108,
+ "周": 31109,
+ "そ": 31110,
+ "や": 31111,
+ "谷": 31112,
+ "香": 31113,
+ "♯": 31114,
+ "じ": 31115,
+ "،": 31116,
+ "期": 31117,
+ "∅": 31118,
+ "┘": 31119,
+ "初": 31120,
+ "福": 31121,
+ "片": 31122,
+ "ザ": 31123,
+ "動": 31124,
+ "参": 31125,
+ "성": 31126,
+ "Ə": 31127,
+ "╦": 31128,
+ "어": 31129,
+ "ხ": 31130,
+ "義": 31131,
+ "च": 31132,
+ "象": 31133,
+ "功": 31134,
+ "♂": 31135,
+ "도": 31136,
+ "고": 31137,
+ "过": 31138,
+ "վ": 31139,
+ "皇": 31140,
+ "特": 31141,
+ "ậ": 31142,
+ "长": 31143,
+ "英": 31144,
+ "ấ": 31145,
+ "ണ": 31146,
+ "Ъ": 31147,
+ "স": 31148,
+ "其": 31149,
+ "ত": 31150,
+ "流": 31151,
+ "除": 31152,
+ "일": 31153,
+ "ু": 31154,
+ "្": 31155,
+ "永": 31156,
+ "直": 31157,
+ "상": 31158,
+ "千": 31159,
+ "ắ": 31160,
+ "館": 31161,
+ "Ť": 31162,
+ "朝": 31163,
+ "ட": 31164,
+ "ɣ": 31165,
+ "单": 31166,
+ "ʀ": 31167,
+ "格": 31168,
+ "德": 31169,
+ "전": 31170,
+ "☺": 31171,
+ "ピ": 31172,
+ "歌": 31173,
+ "进": 31174,
+ "限": 31175,
+ "夫": 31176,
+ "트": 31177,
+ "⊢": 31178,
+ "園": 31179,
+ "量": 31180,
+ "土": 31181,
+ "放": 31182,
+ "码": 31183,
+ "等": 31184,
+ "系": 31185,
+ "∼": 31186,
+ "華": 31187,
+ "↵": 31188,
+ "소": 31189,
+ "常": 31190,
+ "否": 31191,
+ "見": 31192,
+ "源": 31193,
+ "ׁ": 31194,
+ "实": 31195,
+ "博": 31196,
+ "라": 31197,
+ "원": 31198,
+ "보": 31199,
+ "⊕": 31200,
+ "解": 31201,
+ "〜": 31202,
+ "男": 31203,
+ "দ": 31204,
+ "ポ": 31205,
+ "ろ": 31206,
+ "나": 31207,
+ "ག": 31208,
+ "無": 31209,
+ "Û": 31210,
+ "̥": 31211,
+ "ұ": 31212,
+ "查": 31213,
+ "̣": 31214,
+ "╗": 31215,
+ "╩": 31216,
+ "条": 31217,
+ "য": 31218,
+ "ὁ": 31219,
+ "後": 31220,
+ "他": 31221,
+ "网": 31222,
+ "ல": 31223,
+ "≃": 31224,
+ "화": 31225,
+ "ە": 31226,
+ "阿": 31227,
+ "ေ": 31228,
+ "户": 31229,
+ "∫": 31230,
+ "구": 31231,
+ "ར": 31232,
+ "မ": 31233,
+ "▸": 31234,
+ "լ": 31235,
+ "○": 31236,
+ "命": 31237,
+ "就": 31238,
+ "龍": 31239,
+ "君": 31240,
+ "夏": 31241,
+ "": 31242,
+ "言": 31243,
+ "先": 31244,
+ "➜": 31245,
+ "შ": 31246,
+ "ძ": 31247,
+ "ਾ": 31248,
+ "வ": 31249,
+ "ど": 31250,
+ "ヒ": 31251,
+ "ไ": 31252,
+ "ன": 31253,
+ "ば": 31254,
+ "ギ": 31255,
+ "գ": 31256,
+ "ἄ": 31257,
+ "ヤ": 31258,
+ "典": 31259,
+ "府": 31260,
+ "̄": 31261,
+ "신": 31262,
+ "组": 31263,
+ "改": 31264,
+ "ὲ": 31265,
+ "华": 31266,
+ "与": 31267,
+ "调": 31268,
+ "╝": 31269,
+ "ヴ": 31270,
+ "ქ": 31271,
+ "由": 31272,
+ "修": 31273,
+ "學": 31274,
+ "♣": 31275,
+ "消": 31276,
+ "符": 31277,
+ "ʌ": 31278,
+ "부": 31279,
+ "ớ": 31280,
+ "‾": 31281,
+ "▲": 31282,
+ "录": 31283,
+ "ള": 31284,
+ "연": 31285,
+ "을": 31286,
+ "ひ": 31287,
+ "영": 31288,
+ "┤": 31289,
+ "已": 31290,
+ "陽": 31291,
+ "င": 31292,
+ "국": 31293,
+ "容": 31294,
+ "未": 31295,
+ "宗": 31296,
+ "ᴇ": 31297,
+ "び": 31298,
+ "장": 31299,
+ "龙": 31300,
+ "්": 31301,
+ "提": 31302,
+ "ĝ": 31303,
+ "六": 31304,
+ "形": 31305,
+ "제": 31306,
+ "Հ": 31307,
+ "伊": 31308,
+ "ϵ": 31309,
+ "ข": 31310,
+ "Ű": 31311,
+ "ゃ": 31312,
+ "火": 31313,
+ "Ṣ": 31314,
+ "佐": 31315,
+ "⊥": 31316,
+ "̪": 31317,
+ "ứ": 31318,
+ "□": 31319,
+ "结": 31320,
+ "九": 31321,
+ "雄": 31322,
+ "թ": 31323,
+ "ា": 31324,
+ "而": 31325,
+ "བ": 31326,
+ "우": 31327,
+ "张": 31328,
+ "ट": 31329,
+ "ष": 31330,
+ "向": 31331,
+ "ῥ": 31332,
+ "选": 31333,
+ "공": 31334,
+ "ゲ": 31335,
+ "ʐ": 31336,
+ "仁": 31337,
+ "堂": 31338,
+ "ך": 31339,
+ "ု": 31340,
+ "ἔ": 31341,
+ "അ": 31342,
+ "ề": 31343,
+ "ད": 31344,
+ "선": 31345,
+ "오": 31346,
+ "久": 31347,
+ "": 31348,
+ "义": 31349,
+ "अ": 31350,
+ "╔": 31351,
+ "无": 31352,
+ "
": 31353,
+ "은": 31354,
+ "ʷ": 31355,
+ "那": 31356,
+ "線": 31357,
+ "务": 31358,
+ "基": 31359,
+ "属": 31360,
+ "配": 31361,
+ "미": 31362,
+ "軍": 31363,
+ "โ": 31364,
+ "津": 31365,
+ "完": 31366,
+ "研": 31367,
+ "注": 31368,
+ "失": 31369,
+ "应": 31370,
+ "က": 31371,
+ "╚": 31372,
+ "友": 31373,
+ "章": 31374,
+ "Ψ": 31375,
+ "求": 31376,
+ "ण": 31377,
+ "경": 31378,
+ "": 31379,
+ "भ": 31380,
+ "们": 31381,
+ "模": 31382,
+ "需": 31383,
+ "ச": 31384,
+ "電": 31385,
+ "প": 31386,
+ "դ": 31387,
+ "へ": 31388,
+ "此": 31389,
+ "夜": 31390,
+ "或": 31391,
+ "橋": 31392,
+ "根": 31393,
+ "Ī": 31394,
+ "玉": 31395,
+ "ู": 31396,
+ "ṅ": 31397,
+ "交": 31398,
+ "品": 31399,
+ "良": 31400,
+ "ང": 31401,
+ "ォ": 31402,
+ "则": 31403,
+ "開": 31404,
+ "Ζ": 31405,
+ "문": 31406,
+ "被": 31407,
+ "조": 31408,
+ "株": 31409,
+ "记": 31410,
+ "會": 31411,
+ "经": 31412,
+ "ू": 31413,
+ "ょ": 31414,
+ "转": 31415,
+ "崎": 31416,
+ "마": 31417,
+ "⌘": 31418,
+ "比": 31419,
+ "造": 31420,
+ "ܐ": 31421,
+ "ื": 31422,
+ "没": 31423,
+ "现": 31424,
+ "七": 31425,
+ "Ά": 31426,
+ "商": 31427,
+ "ை": 31428,
+ "机": 31429,
+ "阳": 31430,
+ "ĉ": 31431,
+ "角": 31432,
+ "站": 31433,
+ "բ": 31434,
+ "해": 31435,
+ "及": 31436,
+ "ध": 31437,
+ "術": 31438,
+ "认": 31439,
+ "": 31440,
+ "创": 31441,
+ "編": 31442,
+ "ղ": 31443,
+ "ḩ": 31444,
+ "伝": 31445,
+ "岡": 31446,
+ "ड": 31447,
+ "ホ": 31448,
+ "港": 31449,
+ "任": 31450,
+ "登": 31451,
+ "ི": 31452,
+ "็": 31453,
+ "布": 31454,
+ "究": 31455,
+ "帝": 31456,
+ "여": 31457,
+ "산": 31458,
+ "န": 31459,
+ "◦": 31460,
+ "密": 31461,
+ "变": 31462,
+ "序": 31463,
+ "♀": 31464,
+ "∣": 31465,
+ "计": 31466,
+ "曲": 31467,
+ "Ă": 31468,
+ "ύ": 31469,
+ "ʋ": 31470,
+ "传": 31471,
+ "】": 31472,
+ "包": 31473,
+ "意": 31474,
+ "去": 31475,
+ "沙": 31476,
+ "⸮": 31477,
+ "【": 31478,
+ "写": 31479,
+ "超": 31480,
+ "ய": 31481,
+ "今": 31482,
+ "┈": 31483,
+ "森": 31484,
+ "ි": 31485,
+ "⊗": 31486,
+ "비": 31487,
+ "հ": 31488,
+ "Ḩ": 31489,
+ "ǫ": 31490,
+ "黄": 31491,
+ "∙": 31492,
+ "드": 31493,
+ "🌍": 31494,
+ "景": 31495,
+ "湖": 31496,
+ "ք": 31497,
+ "ိ": 31498,
+ "ⁿ": 31499,
+ "̂": 31500,
+ "ペ": 31501,
+ "何": 31502,
+ "宇": 31503,
+ "張": 31504,
+ "语": 31505,
+ "老": 31506,
+ "例": 31507,
+ "Ṭ": 31508,
+ "鉄": 31509,
+ "克": 31510,
+ "☉": 31511,
+ "": 31512,
+ "ɹ": 31513,
+ "ἱ": 31514,
+ "ⴰ": 31515,
+ "然": 31516,
+ "를": 31517,
+ "ǧ": 31518,
+ "報": 31519,
+ "服": 31520,
+ "Ď": 31521,
+ "想": 31522,
+ "‖": 31523,
+ "ユ": 31524,
+ "実": 31525,
+ "载": 31526,
+ "요": 31527,
+ "ℚ": 31528,
+ "波": 31529,
+ "马": 31530,
+ "状": 31531,
+ "线": 31532,
+ "유": 31533,
+ "洋": 31534,
+ "万": 31535,
+ "진": 31536,
+ "জ": 31537,
+ "添": 31538,
+ "球": 31539,
+ "機": 31540,
+ "支": 31541,
+ "显": 31542,
+ "拉": 31543,
+ "ὑ": 31544,
+ "送": 31545,
+ "隊": 31546,
+ "ธ": 31547,
+ "处": 31548,
+ "師": 31549,
+ "⊂": 31550,
+ "像": 31551,
+ "়": 31552,
+ "黒": 31553,
+ "ց": 31554,
+ "": 31555,
+ "ủ": 31556,
+ "只": 31557,
+ "起": 31558,
+ "段": 31559,
+ "တ": 31560,
+ "區": 31561,
+ "選": 31562,
+ "천": 31563,
+ "業": 31564,
+ "算": 31565,
+ "广": 31566,
+ "រ": 31567,
+ "视": 31568,
+ "秋": 31569,
+ "因": 31570,
+ "년": 31571,
+ "ے": 31572,
+ "输": 31573,
+ "̱": 31574,
+ "Մ": 31575,
+ "∆": 31576,
+ "康": 31577,
+ "세": 31578,
+ "思": 31579,
+ "死": 31580,
+ "聖": 31581,
+ "민": 31582,
+ "-": 31583,
+ "头": 31584,
+ "ർ": 31585,
+ "∉": 31586,
+ "車": 31587,
+ "┃": 31588,
+ "▇": 31589,
+ "按": 31590,
+ "⍵": 31591,
+ "夢": 31592,
+ "汉": 31593,
+ "从": 31594,
+ "ী": 31595,
+ "题": 31596,
+ "ˆ": 31597,
+ "ἡ": 31598,
+ "展": 31599,
+ "省": 31600,
+ "ུ": 31601,
+ "葉": 31602,
+ "호": 31603,
+ "ਰ": 31604,
+ "素": 31605,
+ "関": 31606,
+ "그": 31607,
+ ";": 31608,
+ "න": 31609,
+ "页": 31610,
+ "共": 31611,
+ "宿": 31612,
+ "态": 31613,
+ "ན": 31614,
+ "技": 31615,
+ "乐": 31616,
+ "控": 31617,
+ "移": 31618,
+ "影": 31619,
+ "ụ": 31620,
+ "ゆ": 31621,
+ "ご": 31622,
+ "್": 31623,
+ "管": 31624,
+ "ൾ": 31625,
+ "╣": 31626,
+ "戸": 31627,
+ "⇔": 31628,
+ "函": 31629,
+ "ẓ": 31630,
+ "尾": 31631,
+ "场": 31632,
+ "介": 31633,
+ "": 31634,
+ "育": 31635,
+ "ර": 31636,
+ "泉": 31637,
+ "ൽ": 31638,
+ "说": 31639,
+ "换": 31640,
+ "必": 31641,
+ "紀": 31642,
+ "མ": 31643,
+ "ེ": 31644,
+ "ợ": 31645,
+ "ൻ": 31646,
+ "宝": 31647,
+ "気": 31648,
+ "门": 31649,
+ "令": 31650,
+ "左": 31651,
+ "漢": 31652,
+ "若": 31653,
+ "屋": 31654,
+ "局": 31655,
+ "打": 31656,
+ "発": 31657,
+ "问": 31658,
+ "恋": 31659,
+ "兵": 31660,
+ "別": 31661,
+ "ા": 31662,
+ "Ս": 31663,
+ "߬": 31664,
+ "গ": 31665,
+ "并": 31666,
+ "ख": 31667,
+ "ή": 31668,
+ "节": 31669,
+ "ʑ": 31670,
+ "ץ": 31671,
+ "Ḫ": 31672,
+ "ℂ": 31673,
+ "引": 31674,
+ "统": 31675,
+ "智": 31676,
+ "̩": 31677,
+ "ै": 31678,
+ "电": 31679,
+ "현": 31680,
+ "✅": 31681,
+ "赤": 31682,
+ "断": 31683,
+ "ね": 31684,
+ "称": 31685,
+ "শ": 31686,
+ "身": 31687,
+ "首": 31688,
+ "付": 31689,
+ "⅓": 31690,
+ "ਸ": 31691,
+ "連": 31692,
+ "ზ": 31693,
+ "官": 31694,
+ "持": 31695,
+ "奈": 31696,
+ "御": 31697,
+ "親": 31698,
+ "군": 31699,
+ "库": 31700,
+ "秀": 31701,
+ "址": 31702,
+ "守": 31703,
+ "活": 31704,
+ "ལ": 31705,
+ "ふ": 31706,
+ "藏": 31707,
+ "ស": 31708,
+ "竹": 31709,
+ "草": 31710,
+ "結": 31711,
+ "ා": 31712,
+ "昌": 31713,
+ "樹": 31714,
+ "ள": 31715,
+ "무": 31716,
+ "হ": 31717,
+ "ゼ": 31718,
+ "̈": 31719,
+ "շ": 31720,
+ "勝": 31721,
+ "足": 31722,
+ "ရ": 31723,
+ "위": 31724,
+ "į": 31725,
+ "Ἰ": 31726,
+ "航": 31727,
+ "陳": 31728,
+ "业": 31729,
+ "富": 31730,
+ "雪": 31731,
+ "आ": 31732,
+ "再": 31733,
+ "안": 31734,
+ "默": 31735,
+ "박": 31736,
+ "용": 31737,
+ "✿": 31738,
+ "楽": 31739,
+ "沢": 31740,
+ "羅": 31741,
+ "Ė": 31742,
+ "ʎ": 31743,
+ "忠": 31744,
+ "错": 31745,
+ "단": 31746,
+ "면": 31747,
+ "ķ": 31748,
+ "桥": 31749,
+ "雲": 31750,
+ "该": 31751,
+ "ṯ": 31752,
+ "岩": 31753,
+ "남": 31754,
+ "ỹ": 31755,
+ "专": 31756,
+ "切": 31757,
+ "店": 31758,
+ "朱": 31759,
+ "ף": 31760,
+ "ず": 31761,
+ "幸": 31762,
+ "母": 31763,
+ "ɫ": 31764,
+ "々": 31765,
+ "∷": 31766,
+ "串": 31767,
+ "击": 31768,
+ "Ἐ": 31769,
+ "設": 31770,
+ "⊤": 31771,
+ "ₗ": 31772,
+ "經": 31773,
+ "강": 31774,
+ "ပ": 31775,
+ "।": 31776,
+ "ѐ": 31777,
+ "ᾶ": 31778,
+ "➖": 31779,
+ "座": 31780,
+ "씨": 31781,
+ "ぶ": 31782,
+ "Ţ": 31783,
+ "云": 31784,
+ "告": 31785,
+ "変": 31786,
+ "试": 31787,
+ "隆": 31788,
+ "개": 31789,
+ "պ": 31790,
+ "判": 31791,
+ "劉": 31792,
+ "˜": 31793,
+ "ˠ": 31794,
+ "编": 31795,
+ "ณ": 31796,
+ "ữ": 31797,
+ "达": 31798,
+ "Ě": 31799,
+ "ܝ": 31800,
+ "ြ": 31801,
+ "ḷ": 31802,
+ "右": 31803,
+ "들": 31804,
+ "ŝ": 31805,
+ "ӏ": 31806,
+ "్": 31807,
+ "എ": 31808,
+ "ற": 31809,
+ "复": 31810,
+ "看": 31811,
+ "話": 31812,
+ "坂": 31813,
+ "尔": 31814,
+ "衛": 31815,
+ "զ": 31816,
+ "차": 31817,
+ "丸": 31818,
+ "样": 31819,
+ "鬼": 31820,
+ "़": 31821,
+ "학": 31822,
+ "喜": 31823,
+ "斯": 31824,
+ "銀": 31825,
+ "만": 31826,
+ "Ξ": 31827,
+ "ც": 31828,
+ "群": 31829,
+ "近": 31830,
+ "塔": 31831,
+ "ϊ": 31832,
+ "ந": 31833,
+ "む": 31834,
+ "确": 31835,
+ "索": 31836,
+ "∇": 31837,
+ "非": 31838,
+ "望": 31839,
+ "❯": 31840,
+ "希": 31841,
+ "ỳ": 31842,
+ "甲": 31843,
+ "越": 31844,
+ "鳥": 31845,
+ "麻": 31846,
+ "雅": 31847,
+ "拳": 31848,
+ "ក": 31849,
+ "溪": 31850,
+ "测": 31851,
+ "话": 31852,
+ "池": 31853,
+ "菜": 31854,
+ "食": 31855,
+ "터": 31856,
+ "ਿ": 31857,
+ "渡": 31858,
+ "速": 31859,
+ "ھ": 31860,
+ "ರ": 31861,
+ "陈": 31862,
+ "健": 31863,
+ "ো": 31864,
+ "ක": 31865,
+ "ὺ": 31866,
+ "军": 31867,
+ "庄": 31868,
+ "红": 31869,
+ "Ħ": 31870,
+ "論": 31871,
+ "Ÿ": 31872,
+ "Έ": 31873,
+ "ự": 31874,
+ "孝": 31875,
+ "頭": 31876,
+ "飛": 31877,
+ "˚": 31878,
+ "▓": 31879,
+ "ً": 31880,
+ "": 31881,
+ "么": 31882,
+ "達": 31883,
+ "ѫ": 31884,
+ "巴": 31885,
+ "洞": 31886,
+ "貴": 31887,
+ "项": 31888,
+ "ദ": 31889,
+ "ɵ": 31890,
+ "̍": 31891,
+ "ҡ": 31892,
+ "种": 31893,
+ "运": 31894,
+ "식": 31895,
+ "ྱ": 31896,
+ "ḳ": 31897,
+ "彦": 31898,
+ "⥤": 31899,
+ "书": 31900,
+ "构": 31901,
+ "米": 31902,
+ "连": 31903,
+ "操": 31904,
+ "装": 31905,
+ "과": 31906,
+ "ぐ": 31907,
+ "反": 31908,
+ "̌": 31909,
+ "仮": 31910,
+ "员": 31911,
+ "昭": 31912,
+ "ശ": 31913,
+ "兴": 31914,
+ "客": 31915,
+ "删": 31916,
+ "ම": 31917,
+ "ව": 31918,
+ "პ": 31919,
+ "ċ": 31920,
+ "ഷ": 31921,
+ "သ": 31922,
+ "ᵉ": 31923,
+ "居": 31924,
+ "타": 31925,
+ "𝓝": 31926,
+ "थ": 31927,
+ "現": 31928,
+ "ˇ": 31929,
+ "종": 31930,
+ "助": 31931,
+ "唐": 31932,
+ "瀬": 31933,
+ "ន": 31934,
+ "微": 31935,
+ "1": 31936,
+ "Ġ": 31937,
+ "ほ": 31938,
+ "舞": 31939,
+ "내": 31940,
+ "중": 31941,
+ "Ē": 31942,
+ "导": 31943,
+ "效": 31944,
+ "방": 31945,
+ "ḏ": 31946,
+ "深": 31947,
+ "梅": 31948,
+ "料": 31949,
+ "월": 31950,
+ "每": 31951,
+ "洲": 31952,
+ "회": 31953,
+ "茶": 31954,
+ "败": 31955,
+ "ഞ": 31956,
+ "ể": 31957,
+ "ヨ": 31958,
+ "些": 31959,
+ "双": 31960,
+ "嘉": 31961,
+ "모": 31962,
+ "바": 31963,
+ "ษ": 31964,
+ "進": 31965,
+ "음": 31966,
+ "ญ": 31967,
+ "丁": 31968,
+ "故": 31969,
+ "計": 31970,
+ "遠": 31971,
+ "교": 31972,
+ "재": 31973,
+ "候": 31974,
+ "房": 31975,
+ "명": 31976,
+ "两": 31977,
+ "ფ": 31978,
+ "才": 31979,
+ "합": 31980,
+ "止": 31981,
+ "番": 31982,
+ "ɯ": 31983,
+ "奇": 31984,
+ "怪": 31985,
+ "联": 31986,
+ "역": 31987,
+ "泰": 31988,
+ "백": 31989,
+ "ὀ": 31990,
+ "げ": 31991,
+ "べ": 31992,
+ "边": 31993,
+ "还": 31994,
+ "黃": 31995,
+ "왕": 31996,
+ "收": 31997,
+ "弘": 31998,
+ "给": 31999
+ },
+ "merges": [
+ "▁ t",
+ "e r",
+ "i n",
+ "▁ a",
+ "e n",
+ "o n",
+ "▁t h",
+ "▁ th",
+ "e s",
+ "▁ s",
+ "▁ d",
+ "a t",
+ "o r",
+ "a n",
+ "▁ c",
+ "i s",
+ "r e",
+ "i t",
+ "▁t he",
+ "▁th e",
+ "▁ the",
+ "a r",
+ "l e",
+ "▁ w",
+ "▁ p",
+ "o u",
+ "a l",
+ "▁ f",
+ "▁ m",
+ "e d",
+ "▁ o",
+ "▁ b",
+ "o m",
+ "io n",
+ "i on",
+ "in g",
+ "i ng",
+ "i c",
+ "a s",
+ "e l",
+ "en t",
+ "e nt",
+ "▁i n",
+ "▁ in",
+ "▁ h",
+ "n d",
+ "e t",
+ "▁ l",
+ "▁ n",
+ "s t",
+ "▁t o",
+ "▁ to",
+ "c h",
+ "▁ I",
+ "r o",
+ "i l",
+ "▁o f",
+ "▁ of",
+ "d e",
+ "c t",
+ "▁ (",
+ "a m",
+ "▁ C",
+ "▁d e",
+ "▁ de",
+ "▁ S",
+ "▁ u",
+ "▁ A",
+ "▁ \\",
+ "▁ e",
+ "▁a nd",
+ "▁an d",
+ "▁ and",
+ "▁ T",
+ "o l",
+ "▁ v",
+ "i m",
+ "o t",
+ "a d",
+ "u t",
+ "▁ g",
+ "e m",
+ "u r",
+ "i d",
+ "▁ *",
+ "i g",
+ "r a",
+ "▁r e",
+ "▁ re",
+ "▁i s",
+ "▁ is",
+ "q u",
+ "o w",
+ "▁ M",
+ "es t",
+ "e st",
+ "▁ y",
+ "s e",
+ "v e",
+ "c e",
+ "i e",
+ "u n",
+ "▁ P",
+ "▁ B",
+ "a g",
+ "u l",
+ "▁ =",
+ "h e",
+ "en d",
+ "e nd",
+ "od e",
+ "o de",
+ "te r",
+ "t er",
+ "me nt",
+ "men t",
+ "m ent",
+ "o s",
+ "▁ D",
+ "i f",
+ "at ion",
+ "ati on",
+ "atio n",
+ "a tion",
+ "▁f or",
+ "▁fo r",
+ "▁ for",
+ "▁ r",
+ "▁ L",
+ "▁y ou",
+ "▁yo u",
+ "▁ you",
+ "▁b e",
+ "▁ be",
+ "l y",
+ "ve r",
+ "v er",
+ "a b",
+ "t e",
+ "▁i t",
+ "▁ it",
+ "▁o n",
+ "▁ on",
+ "r i",
+ "u s",
+ "▁ \"",
+ "▁w h",
+ "▁ wh",
+ "▁c on",
+ "▁co n",
+ "▁ con",
+ "▁ H",
+ "▁s t",
+ "▁ st",
+ "i r",
+ "▁ E",
+ "▁ F",
+ "c k",
+ "▁a n",
+ "▁ an",
+ "t h",
+ "e g",
+ "a y",
+ "it h",
+ "i th",
+ "▁ R",
+ "is t",
+ "i st",
+ "an d",
+ "a nd",
+ "▁t hat",
+ "▁th at",
+ "▁ that",
+ "▁a l",
+ "▁ al",
+ "▁ $",
+ "▁ #",
+ "o d",
+ "u m",
+ "▁ W",
+ "h t",
+ "co de",
+ "cod e",
+ "c ode",
+ "▁ G",
+ "at e",
+ "a te",
+ "es s",
+ "e ss",
+ "▁ N",
+ "er e",
+ "e re",
+ "p p",
+ "▁a s",
+ "▁ as",
+ "▁s e",
+ "▁ se",
+ "▁p ro",
+ "▁pr o",
+ "▁ pro",
+ "▁w ith",
+ "▁wit h",
+ "▁ with",
+ "p e",
+ "▁ k",
+ "er s",
+ "e rs",
+ "p t",
+ ") ;",
+ "l o",
+ "▁c om",
+ "▁co m",
+ "▁ com",
+ "am e",
+ "a me",
+ "▁ `",
+ "▁C om",
+ "▁Co m",
+ "▁ Com",
+ "i a",
+ "an t",
+ "a nt",
+ "▁l a",
+ "▁ la",
+ "▁ {",
+ "▁e n",
+ "▁ en",
+ "ct ion",
+ "c tion",
+ "▁e x",
+ "▁ ex",
+ "l d",
+ "u b",
+ "▁ j",
+ "l a",
+ "u e",
+ "▁ J",
+ "ic h",
+ "i ch",
+ "▁d o",
+ "▁ do",
+ "▁ O",
+ "▁q u",
+ "▁ qu",
+ "i v",
+ "or t",
+ "o rt",
+ "ar t",
+ "a rt",
+ "▁u n",
+ "▁ un",
+ "▁# #",
+ "▁ ##",
+ "▁t his",
+ "▁th is",
+ "▁ this",
+ "k e",
+ "▁h a",
+ "▁ ha",
+ "▁ -",
+ "ou t",
+ "o ut",
+ "▁T he",
+ "▁Th e",
+ "▁ The",
+ "▁n ot",
+ "▁no t",
+ "▁ not",
+ "▁n e",
+ "▁ ne",
+ "il l",
+ "i ll",
+ "▁l e",
+ "▁ le",
+ "c i",
+ "ro m",
+ "r om",
+ "in e",
+ "i ne",
+ "/ /",
+ "o p",
+ "eg in",
+ "e gin",
+ "▁Com ment",
+ "▁Comm ent",
+ "▁ Comment",
+ "be gin",
+ "beg in",
+ "b egin",
+ "с т",
+ "as s",
+ "a ss",
+ "i z",
+ ") .",
+ "o g",
+ "▁ п",
+ "▁o r",
+ "▁ or",
+ "▁w as",
+ "▁wa s",
+ "▁ was",
+ "▁a t",
+ "▁ at",
+ "ou r",
+ "o ur",
+ "▁ i",
+ "ai n",
+ "a in",
+ "▁ K",
+ "н а",
+ "▁ V",
+ "g e",
+ "▁s u",
+ "▁ su",
+ "a p",
+ "ag e",
+ "a ge",
+ "ou ld",
+ "oul d",
+ "o uld",
+ "n e",
+ "a v",
+ "x t",
+ "or e",
+ "o re",
+ "il e",
+ "i le",
+ "- -",
+ "▁ в",
+ "▁b y",
+ "▁ by",
+ "l i",
+ "at h",
+ "a th",
+ "р а",
+ "be r",
+ "b er",
+ "ac h",
+ "a ch",
+ "al l",
+ "a ll",
+ "▁T h",
+ "▁ Th",
+ "ul t",
+ "u lt",
+ "▁ }",
+ "▁ U",
+ "▁u s",
+ "▁ us",
+ "▁ z",
+ "us t",
+ "u st",
+ "▁h ave",
+ "▁ha ve",
+ "▁hav e",
+ "▁ have",
+ "li c",
+ "l ic",
+ "н и",
+ "▁c an",
+ "▁ca n",
+ "▁ can",
+ "t r",
+ "co m",
+ "c om",
+ ") ,",
+ "▁I n",
+ "▁ In",
+ "in d",
+ "i nd",
+ "el l",
+ "e ll",
+ "▁f rom",
+ "▁fr om",
+ "▁fro m",
+ "▁ from",
+ "о в",
+ "t o",
+ "▁ [",
+ "ab le",
+ "abl e",
+ "a ble",
+ "os t",
+ "o st",
+ "▁c h",
+ "▁ ch",
+ "ec t",
+ "e ct",
+ "ig ht",
+ "igh t",
+ "in t",
+ "i nt",
+ "▁ '",
+ "▁a re",
+ "▁ar e",
+ "▁ are",
+ "▁i m",
+ "▁ im",
+ "▁s h",
+ "▁ sh",
+ "▁ <",
+ "▁A n",
+ "▁ An",
+ "▁ с",
+ "at a",
+ "a ta",
+ "ir e",
+ "i re",
+ "▁t r",
+ "▁ tr",
+ "co n",
+ "c on",
+ "or d",
+ "o rd",
+ "it y",
+ "i ty",
+ "ar d",
+ "a rd",
+ "▁h e",
+ "▁ he",
+ "▁b ut",
+ "▁bu t",
+ "▁ but",
+ "o c",
+ "= \"",
+ "▁p r",
+ "▁ pr",
+ "ur e",
+ "u re",
+ "pe r",
+ "p er",
+ "ac k",
+ "a ck",
+ "or k",
+ "on g",
+ "o ng",
+ "an s",
+ "a ns",
+ "к о",
+ "pl e",
+ "p le",
+ "▁d es",
+ "▁de s",
+ "▁ des",
+ "o k",
+ "or m",
+ "o rm",
+ "we r",
+ "w er",
+ "a k",
+ "p r",
+ "as e",
+ "a se",
+ "▁e l",
+ "▁ el",
+ "p h",
+ "a c",
+ "▁u nd",
+ "▁un d",
+ "▁ und",
+ "▁a r",
+ "▁ ar",
+ "▁i f",
+ "▁ if",
+ "u d",
+ "p s",
+ "it e",
+ "i te",
+ "bl e",
+ "b le",
+ "н о",
+ "fe r",
+ "f er",
+ "p l",
+ "iv e",
+ "i ve",
+ "an g",
+ "a ng",
+ "en s",
+ "e ns",
+ "р о",
+ "▁s o",
+ "▁ so",
+ "s o",
+ "as t",
+ "a st",
+ "( )",
+ "sw er",
+ "s wer",
+ "r u",
+ "ie s",
+ "i es",
+ "▁ :",
+ "a u",
+ "o v",
+ "р е",
+ "г о",
+ "▁d er",
+ "▁de r",
+ "▁ der",
+ "▁m y",
+ "▁ my",
+ "▁w e",
+ "▁ we",
+ "▁m e",
+ "▁ me",
+ "n t",
+ "▁a d",
+ "▁ ad",
+ "ur n",
+ "u rn",
+ "▁y our",
+ "▁you r",
+ "▁yo ur",
+ "▁ your",
+ ":/ /",
+ ": //",
+ "ar e",
+ "a re",
+ "▁a ll",
+ "▁al l",
+ "▁ all",
+ "f f",
+ "i o",
+ "es tion",
+ "est ion",
+ "esti on",
+ "im e",
+ "i me",
+ "▁e r",
+ "▁ er",
+ "la ss",
+ "las s",
+ "l ass",
+ "▁ и",
+ "▁wh ich",
+ "▁ which",
+ "om e",
+ "o me",
+ "on t",
+ "o nt",
+ "▁p ar",
+ "▁pa r",
+ "▁ par",
+ "▁m a",
+ "▁ ma",
+ "▁ Y",
+ "\" ,",
+ "▁ о",
+ "f t",
+ "ia l",
+ "i al",
+ "c c",
+ "ou nd",
+ "oun d",
+ "o und",
+ "▁l i",
+ "▁ li",
+ "▁re s",
+ "▁r es",
+ "▁ res",
+ "et h",
+ "e th",
+ "je ct",
+ "j ect",
+ "▁a pp",
+ "▁ap p",
+ "▁ app",
+ "▁S t",
+ "▁ St",
+ "ic e",
+ "i ce",
+ "▁a m",
+ "▁ am",
+ "ac t",
+ "a ct",
+ "▁d el",
+ "▁de l",
+ "▁ del",
+ "g r",
+ "at ed",
+ "ate d",
+ "a ted",
+ "ie r",
+ "i er",
+ "▁a b",
+ "▁ ab",
+ "▁e t",
+ "▁ et",
+ "al ly",
+ "all y",
+ ". .",
+ "po rt",
+ "por t",
+ "p ort",
+ "i k",
+ "▁p er",
+ "▁pe r",
+ "▁ per",
+ "▁c ont",
+ "▁con t",
+ "▁co nt",
+ "▁ cont",
+ "р и",
+ "к а",
+ "se r",
+ "s er",
+ "л и",
+ "l l",
+ "ie w",
+ "i ew",
+ "ig n",
+ "i gn",
+ "_ {",
+ "pu t",
+ "p ut",
+ "on e",
+ "o ne",
+ "un ction",
+ "unc tion",
+ "unct ion",
+ "▁d i",
+ "▁ di",
+ "ar y",
+ "a ry",
+ "it ion",
+ "iti on",
+ "i tion",
+ "m a",
+ "е н",
+ "ge t",
+ "g et",
+ "▁l o",
+ "▁ lo",
+ "▁v al",
+ "▁va l",
+ "▁ val",
+ "▁ Q",
+ "ra n",
+ "r an",
+ "▁ д",
+ "en ce",
+ "enc e",
+ "▁w ork",
+ "▁wor k",
+ "▁ work",
+ "▁н а",
+ "▁ на",
+ "i p",
+ "it em",
+ "ite m",
+ "i tem",
+ "yp e",
+ "y pe",
+ "▁ &",
+ "▁h is",
+ "▁hi s",
+ "▁ his",
+ "▁u se",
+ "▁us e",
+ "▁ use",
+ "de r",
+ "d er",
+ "▁An swer",
+ "▁Ans wer",
+ "▁ Answer",
+ "▁w ill",
+ "▁wil l",
+ "▁ will",
+ "iz e",
+ "i ze",
+ "т а",
+ "lo w",
+ "l ow",
+ "▁C h",
+ "▁ Ch",
+ "▁g et",
+ "▁ge t",
+ "▁ get",
+ "id e",
+ "i de",
+ "ou s",
+ "o us",
+ "in k",
+ "pt ion",
+ "p tion",
+ "л а",
+ "tu rn",
+ "t urn",
+ "un g",
+ "u ng",
+ "e c",
+ "u g",
+ "fo rm",
+ "for m",
+ "f orm",
+ "re s",
+ "r es",
+ "ht t",
+ "h tt",
+ "ou g",
+ "o ug",
+ "л ь",
+ "▁n o",
+ "▁ no",
+ "c l",
+ "▁r o",
+ "▁ ro",
+ "▁o ne",
+ "▁on e",
+ "▁ one",
+ "t t",
+ "cr i",
+ "c ri",
+ "d u",
+ "▁u p",
+ "▁ up",
+ "т о",
+ "( \"",
+ "▁o b",
+ "▁ ob",
+ "w e",
+ "or y",
+ "o ry",
+ "▁e st",
+ "▁es t",
+ "▁ est",
+ "er y",
+ "e ry",
+ "ie l",
+ "i el",
+ "st r",
+ "s tr",
+ "o b",
+ "▁qu e",
+ "▁q ue",
+ "▁ que",
+ "ia n",
+ "i an",
+ "▁o ut",
+ "▁ou t",
+ "▁ out",
+ "▁p l",
+ "▁ pl",
+ "▁n ew",
+ "▁ne w",
+ "▁ new",
+ "к и",
+ "▁ +",
+ "r y",
+ "ot h",
+ "o th",
+ "th er",
+ "the r",
+ "t her",
+ "▁v ar",
+ "▁va r",
+ "▁ var",
+ "▁w ould",
+ "▁wo uld",
+ "▁s er",
+ "▁se r",
+ "▁ ser",
+ "ter n",
+ "te rn",
+ "t ern",
+ "te xt",
+ "tex t",
+ "t ext",
+ "▁t here",
+ "▁th ere",
+ "▁the re",
+ "▁ther e",
+ "▁ there",
+ "is h",
+ "i sh",
+ "ro r",
+ "r or",
+ "т е",
+ "▁s et",
+ "▁se t",
+ "▁ set",
+ "▁ @",
+ "▁п о",
+ "▁ по",
+ "▁t e",
+ "▁ te",
+ "e x",
+ "▁re turn",
+ "▁ret urn",
+ "▁ return",
+ "ai l",
+ "a il",
+ "▁a ny",
+ "▁an y",
+ "▁ any",
+ "▁I t",
+ "▁ It",
+ "▁f unction",
+ "▁fun ction",
+ "▁func tion",
+ "▁ function",
+ "{ \\",
+ "' ,",
+ "é s",
+ "al e",
+ "a le",
+ "а н",
+ "▁w hen",
+ "▁wh en",
+ "▁whe n",
+ "▁ when",
+ "i b",
+ "▁g o",
+ "▁ go",
+ "an ce",
+ "anc e",
+ "▁h ad",
+ "▁ha d",
+ "▁ had",
+ "▁Q u",
+ "▁ Qu",
+ "▁c omp",
+ "▁com p",
+ "▁co mp",
+ "▁ comp",
+ "л е",
+ "▁ з",
+ "ma th",
+ "mat h",
+ "m ath",
+ "▁h as",
+ "▁ha s",
+ "▁ has",
+ "▁ м",
+ "▁p re",
+ "▁pr e",
+ "▁ pre",
+ "en er",
+ "ene r",
+ "e ner",
+ "▁p art",
+ "▁par t",
+ "▁pa rt",
+ "▁ part",
+ "el f",
+ "▁d ie",
+ "▁di e",
+ "▁ die",
+ "▁l ike",
+ "▁li ke",
+ "▁lik e",
+ "▁ like",
+ "ra y",
+ "r ay",
+ "ir st",
+ "irs t",
+ "▁d is",
+ "▁di s",
+ "▁ dis",
+ "▁m an",
+ "▁ma n",
+ "▁ man",
+ "ri t",
+ "r it",
+ "▁t hen",
+ "▁th en",
+ "▁the n",
+ "▁ then",
+ "▁c lass",
+ "▁cl ass",
+ "▁cla ss",
+ "▁clas s",
+ "▁ class",
+ "pr o",
+ "p ro",
+ "▁p o",
+ "▁ po",
+ "▁u sing",
+ "▁us ing",
+ "▁ using",
+ "e b",
+ "▁c ode",
+ "▁co de",
+ "▁cod e",
+ "▁ code",
+ "ow n",
+ "o wn",
+ "▁s ome",
+ "▁so me",
+ "▁som e",
+ "▁ some",
+ "ce s",
+ "c es",
+ "▁$ \\",
+ "▁ $\\",
+ "е р",
+ "le ct",
+ "l ect",
+ "▁a u",
+ "▁ au",
+ "is ch",
+ "isc h",
+ "i sch",
+ "▁c ol",
+ "▁co l",
+ "▁ col",
+ "▁ –",
+ "u p",
+ "on s",
+ "o ns",
+ "▁a dd",
+ "▁ad d",
+ "▁ add",
+ "il d",
+ "i ld",
+ "is s",
+ "i ss",
+ "va l",
+ "v al",
+ "ou nt",
+ "oun t",
+ "o unt",
+ "le s",
+ "l es",
+ "ve nt",
+ "ven t",
+ "v ent",
+ "▁ Z",
+ "I n",
+ "ro w",
+ "r ow",
+ "ea r",
+ "e ar",
+ "at ions",
+ "ation s",
+ "ati ons",
+ "atio ns",
+ "a h",
+ "qu e",
+ "q ue",
+ "ub lic",
+ "u blic",
+ "an k",
+ "▁s p",
+ "▁ sp",
+ "▁W h",
+ "▁ Wh",
+ "-- --",
+ "--- -",
+ "- ---",
+ "s k",
+ "e w",
+ "ag s",
+ "a gs",
+ "т и",
+ "an n",
+ "a nn",
+ "▁ —",
+ "er t",
+ "e rt",
+ "ac e",
+ "a ce",
+ "sc h",
+ "s ch",
+ "▁n eed",
+ "▁ne ed",
+ "▁ need",
+ "▁ à",
+ "ie n",
+ "i en",
+ "ou gh",
+ "oug h",
+ "o ugh",
+ "н е",
+ "▁d ef",
+ "▁de f",
+ "▁ def",
+ "i j",
+ "er n",
+ "e rn",
+ "▁w hat",
+ "▁wh at",
+ "▁ what",
+ "▁A r",
+ "▁ Ar",
+ "w o",
+ "m l",
+ "< /",
+ "▁R e",
+ "▁ Re",
+ "▁e s",
+ "▁ es",
+ "▁in st",
+ "▁ins t",
+ "▁ inst",
+ "b o",
+ "a z",
+ "▁# ##",
+ "▁## #",
+ "▁ б",
+ "er m",
+ "e rm",
+ "▁A l",
+ "▁ Al",
+ "le d",
+ "l ed",
+ "д а",
+ "te n",
+ "t en",
+ "se t",
+ "s et",
+ "л о",
+ "▁c omm",
+ "▁com m",
+ "▁co mm",
+ "▁ comm",
+ "s h",
+ "в а",
+ "▁ /",
+ "▁d ata",
+ "▁da ta",
+ "▁dat a",
+ "▁ data",
+ "▁/ /",
+ "▁ //",
+ "] (",
+ "▁s tr",
+ "▁st r",
+ "▁ str",
+ "os e",
+ "o se",
+ "▁U n",
+ "▁ Un",
+ "ve n",
+ "v en",
+ "S t",
+ ".. .",
+ ". ..",
+ "▁ С",
+ "ys t",
+ "y st",
+ "▁ «",
+ "ic k",
+ "i ck",
+ "i x",
+ "pa r",
+ "p ar",
+ "▁ у",
+ "▁w ant",
+ "▁wa nt",
+ "n g",
+ "ot e",
+ "o te",
+ "▁g r",
+ "▁ gr",
+ "▁d u",
+ "▁ du",
+ "▁ .",
+ "un d",
+ "u nd",
+ "▁on ly",
+ "▁ only",
+ "▁s a",
+ "▁ sa",
+ "el y",
+ "e ly",
+ "ve rs",
+ "ver s",
+ "v ers",
+ "▁e nt",
+ "▁en t",
+ "▁ ent",
+ ") )",
+ "( '",
+ "▁m od",
+ "▁mo d",
+ "▁ mod",
+ "av a",
+ "a va",
+ "to n",
+ "t on",
+ "▁sh ould",
+ "▁sho uld",
+ "▁ should",
+ "em ent",
+ "eme nt",
+ "emen t",
+ "e ment",
+ "▁f orm",
+ "▁for m",
+ "▁fo rm",
+ "▁ form",
+ "▁al so",
+ "▁als o",
+ "▁ also",
+ "▁s c",
+ "▁ sc",
+ "in gs",
+ "ing s",
+ "▁Y ou",
+ "▁ You",
+ "ó n",
+ "▁k n",
+ "▁ kn",
+ "() ;",
+ "( );",
+ "▁ |",
+ "▁w ere",
+ "▁we re",
+ "▁wer e",
+ "s s",
+ "▁Qu estion",
+ "▁ Question",
+ "is e",
+ "i se",
+ "▁th ey",
+ "▁the y",
+ "▁ they",
+ "▁D e",
+ "▁ De",
+ "on d",
+ "o nd",
+ "▁s ol",
+ "▁so l",
+ "▁ sol",
+ "▁f ol",
+ "▁fo l",
+ "▁ fol",
+ "▁m ore",
+ "▁mo re",
+ "▁mor e",
+ "▁ more",
+ "▁h er",
+ "▁he r",
+ "▁ her",
+ "▁ _",
+ "▁ é",
+ "at ch",
+ "ft er",
+ "fte r",
+ "f ter",
+ "▁c re",
+ "▁cr e",
+ "▁ cre",
+ "lo ck",
+ "loc k",
+ "l ock",
+ "tr ing",
+ "tri ng",
+ "t ring",
+ "▁T his",
+ "▁Th is",
+ "▁ This",
+ "z e",
+ "ad o",
+ "a do",
+ "ul l",
+ "u ll",
+ "ge r",
+ "g er",
+ "b e",
+ "▁o ther",
+ "▁ot her",
+ "▁ other",
+ "▁T ags",
+ "▁Tag s",
+ "▁Ta gs",
+ "▁ Tags",
+ "ut ion",
+ "uti on",
+ "u tion",
+ "ic t",
+ "i ct",
+ "▁h ow",
+ "▁ho w",
+ "▁ how",
+ "▁ x",
+ "▁S e",
+ "▁ Se",
+ "▁c he",
+ "▁ch e",
+ "▁ che",
+ "cri pt",
+ "cr ipt",
+ "▁j ust",
+ "▁ju st",
+ "▁ just",
+ "▁p os",
+ "▁po s",
+ "▁ pos",
+ "an ge",
+ "ang e",
+ "if ic",
+ "ifi c",
+ "i fic",
+ "re e",
+ "r ee",
+ "} }",
+ "▁t ime",
+ "▁tim e",
+ "▁ti me",
+ "▁ time",
+ "ap p",
+ "a pp",
+ "н ы",
+ "▁f ile",
+ "▁fil e",
+ "▁fi le",
+ "▁ file",
+ "ar k",
+ "ic al",
+ "ica l",
+ "i cal",
+ "▁f irst",
+ "▁fir st",
+ "▁ first",
+ "▁in t",
+ "▁i nt",
+ "▁ int",
+ "▁ В",
+ "▁H e",
+ "▁ He",
+ "t a",
+ "um ent",
+ "ume nt",
+ "umen t",
+ "u ment",
+ "or s",
+ "o rs",
+ "le ment",
+ "lem ent",
+ "l ement",
+ "ra c",
+ "r ac",
+ "▁a g",
+ "▁ ag",
+ "▁do es",
+ "▁ does",
+ "y n",
+ "re ad",
+ "rea d",
+ "r ead",
+ "ua l",
+ "u al",
+ "▁L e",
+ "▁ Le",
+ "y s",
+ "▁e m",
+ "▁ em",
+ "▁n um",
+ "▁nu m",
+ "▁ num",
+ "ve l",
+ "v el",
+ "д и",
+ "ov er",
+ "ove r",
+ "o ver",
+ "▁d if",
+ "▁di f",
+ "et hod",
+ "eth od",
+ "▁I f",
+ "▁ If",
+ "▁s pe",
+ "▁sp e",
+ "▁ spe",
+ "y m",
+ "▁t hem",
+ "▁th em",
+ "▁the m",
+ "▁in to",
+ "▁int o",
+ "▁ into",
+ "▁l es",
+ "▁le s",
+ "▁ les",
+ "▁it s",
+ "▁i ts",
+ "▁ its",
+ "es e",
+ "e se",
+ "ie ld",
+ "iel d",
+ "i eld",
+ "▁p ublic",
+ "▁pub lic",
+ "▁pu blic",
+ "▁publi c",
+ "▁ public",
+ "▁ П",
+ "▁d en",
+ "▁de n",
+ "▁ den",
+ "yst em",
+ "ys tem",
+ "o f",
+ "▁o ver",
+ "▁ov er",
+ "▁ over",
+ "- >",
+ "▁f il",
+ "▁fi l",
+ "▁ fil",
+ "na me",
+ "nam e",
+ "n ame",
+ "in al",
+ "ina l",
+ "i nal",
+ "▁i l",
+ "▁ il",
+ "am ple",
+ "amp le",
+ "▁w ay",
+ "▁wa y",
+ "▁ way",
+ "ic a",
+ "i ca",
+ "в о",
+ "ce ss",
+ "ces s",
+ "c ess",
+ "it t",
+ "i tt",
+ "uc h",
+ "u ch",
+ "▁w here",
+ "▁wh ere",
+ "▁whe re",
+ "▁ where",
+ "м и",
+ "or g",
+ "o rg",
+ "htt ps",
+ "http s",
+ "▁v o",
+ "▁ vo",
+ "ie nt",
+ "ien t",
+ "i ent",
+ "ov e",
+ "o ve",
+ "▁val ue",
+ "▁valu e",
+ "▁ value",
+ "en g",
+ "e ng",
+ "▁L a",
+ "▁ La",
+ "^ {",
+ "re f",
+ "r ef",
+ "ie d",
+ "i ed",
+ "E R",
+ "▁s tat",
+ "▁st at",
+ "▁sta t",
+ "▁ stat",
+ "fi g",
+ "f ig",
+ "m e",
+ "▁v on",
+ "▁vo n",
+ "▁ von",
+ "▁in ter",
+ "▁int er",
+ "▁inte r",
+ "▁ inter",
+ "ro id",
+ "r oid",
+ "at er",
+ "ate r",
+ "a ter",
+ "▁the ir",
+ "▁b et",
+ "▁be t",
+ "▁ bet",
+ "▁e in",
+ "▁ ein",
+ "} \\",
+ "\" >",
+ "▁s ub",
+ "▁su b",
+ "▁ sub",
+ "▁o p",
+ "▁ op",
+ "▁d on",
+ "▁do n",
+ "▁ don",
+ "t y",
+ "▁t ry",
+ "▁tr y",
+ "▁ try",
+ "▁P ro",
+ "▁Pr o",
+ "▁ Pro",
+ "▁t ra",
+ "▁tr a",
+ "▁ tra",
+ "▁s ame",
+ "▁sa me",
+ "▁sam e",
+ "▁ same",
+ "e p",
+ "▁t wo",
+ "▁tw o",
+ "▁ two",
+ "▁n ame",
+ "▁na me",
+ "▁nam e",
+ "▁ name",
+ "ol d",
+ "o ld",
+ "le t",
+ "l et",
+ "▁s im",
+ "▁si m",
+ "▁ sim",
+ "s p",
+ "▁a v",
+ "▁ av",
+ "br e",
+ "b re",
+ "ble m",
+ "bl em",
+ "b lem",
+ "e y",
+ "▁c ould",
+ "▁co uld",
+ "▁cou ld",
+ "▁ could",
+ "▁c or",
+ "▁co r",
+ "▁ cor",
+ "▁a cc",
+ "▁ac c",
+ "▁ acc",
+ "ay s",
+ "a ys",
+ "cr e",
+ "c re",
+ "ur r",
+ "u rr",
+ "s i",
+ "▁con st",
+ "▁cons t",
+ "▁ const",
+ "ue s",
+ "u es",
+ "} $",
+ "V iew",
+ "▁a ct",
+ "▁ac t",
+ "▁ act",
+ "▁b o",
+ "▁ bo",
+ "▁к о",
+ "▁ ко",
+ "▁s om",
+ "▁so m",
+ "▁ som",
+ "▁ab out",
+ "▁ about",
+ "la nd",
+ "lan d",
+ "l and",
+ "me r",
+ "m er",
+ "▁l ist",
+ "▁li st",
+ "▁ list",
+ "ca l",
+ "c al",
+ "▁im port",
+ "▁imp ort",
+ "▁ import",
+ "co l",
+ "c ol",
+ "▁n a",
+ "▁ na",
+ "n a",
+ ": :",
+ "▁w ho",
+ "▁wh o",
+ "▁ who",
+ "▁e rror",
+ "▁er ror",
+ "▁err or",
+ "▁ error",
+ "▁ X",
+ "at or",
+ "ato r",
+ "a tor",
+ "ex t",
+ "e xt",
+ "▁b een",
+ "▁be en",
+ "é r",
+ "▁r un",
+ "▁ru n",
+ "▁ run",
+ "po s",
+ "p os",
+ "▁c l",
+ "▁ cl",
+ "* *",
+ "▁ К",
+ "ul ar",
+ "ula r",
+ "u lar",
+ "au se",
+ "aus e",
+ "a use",
+ "▁re g",
+ "▁r eg",
+ "▁ reg",
+ "▁k now",
+ "▁kn ow",
+ "▁ know",
+ "▁s ee",
+ "▁se e",
+ "▁ see",
+ "▁h im",
+ "▁hi m",
+ "▁ him",
+ "ni ng",
+ "n ing",
+ "▁з а",
+ "▁ за",
+ "at es",
+ "ate s",
+ "a tes",
+ "fo re",
+ "for e",
+ "f ore",
+ "ion s",
+ "io ns",
+ "i ons",
+ "▁h el",
+ "▁he l",
+ "▁ hel",
+ "ut e",
+ "u te",
+ "▁re m",
+ "▁r em",
+ "▁ rem",
+ "▁г о",
+ "▁ го",
+ "▁M ar",
+ "▁Ma r",
+ "▁ Mar",
+ "р у",
+ "vi ce",
+ "vic e",
+ "v ice",
+ "ir ect",
+ "ire ct",
+ "i rect",
+ "ne r",
+ "n er",
+ "▁u nder",
+ "▁un der",
+ "▁und er",
+ "▁ under",
+ "ri b",
+ "r ib",
+ "h r",
+ "ч е",
+ "▁A s",
+ "▁ As",
+ "▁e nd",
+ "▁en d",
+ "▁ end",
+ "em ber",
+ "emb er",
+ "▁ а",
+ "▁a tt",
+ "▁at t",
+ "▁ att",
+ "in a",
+ "i na",
+ "so n",
+ "s on",
+ "▁f ollow",
+ "▁fol low",
+ "▁ follow",
+ "▁S ch",
+ "▁Sc h",
+ "▁ Sch",
+ "pe ct",
+ "pec t",
+ "p ect",
+ "▁re l",
+ "▁r el",
+ "▁ rel",
+ "▁S o",
+ "▁ So",
+ "▁l ook",
+ "▁lo ok",
+ "▁ look",
+ "ab el",
+ "abe l",
+ "a bel",
+ "▁pro blem",
+ "▁prob lem",
+ "▁proble m",
+ "▁probl em",
+ "▁ problem",
+ "▁v an",
+ "▁va n",
+ "▁ van",
+ "st rong",
+ "str ong",
+ "c o",
+ "po n",
+ "p on",
+ "c a",
+ "ad a",
+ "a da",
+ "\" :",
+ "con d",
+ "co nd",
+ "c ond",
+ "am b",
+ "a mb",
+ "} ,",
+ "qu est",
+ "que st",
+ "ques t",
+ "q uest",
+ "▁a ut",
+ "▁au t",
+ "▁ aut",
+ "▁res ult",
+ "▁ result",
+ "▁m ay",
+ "▁ma y",
+ "▁ may",
+ "R e",
+ "ht tp",
+ "htt p",
+ "h ttp",
+ ") :",
+ "▁A nd",
+ "▁An d",
+ "▁ And",
+ "re d",
+ "r ed",
+ "▁H ow",
+ "▁Ho w",
+ "▁ How",
+ "p o",
+ "ск о",
+ "с ко",
+ "at t",
+ "a tt",
+ "ou p",
+ "o up",
+ "ce d",
+ "c ed",
+ "▁t ype",
+ "▁typ e",
+ "▁ty pe",
+ "▁ type",
+ "▁t han",
+ "▁th an",
+ "▁ than",
+ "▁c ons",
+ "▁con s",
+ "▁co ns",
+ "▁ cons",
+ "u f",
+ "ц и",
+ "▁qu estion",
+ "▁quest ion",
+ "▁questi on",
+ "▁ question",
+ "ra ph",
+ "rap h",
+ "r aph",
+ "ig h",
+ "i gh",
+ "▁ М",
+ "▁h tt",
+ "▁ htt",
+ "in s",
+ "i ns",
+ "de n",
+ "d en",
+ "▁d a",
+ "▁ da",
+ "▁v er",
+ "▁ve r",
+ "▁ ver",
+ "o h",
+ "▁= >",
+ "▁ =>",
+ "ri v",
+ "r iv",
+ "ud e",
+ "u de",
+ "▁F or",
+ "▁Fo r",
+ "▁ For",
+ "▁r a",
+ "▁ ra",
+ "fr ac",
+ "fra c",
+ "f rac",
+ "м а",
+ "▁a fter",
+ "▁af ter",
+ "▁ after",
+ "} {",
+ "▁m ethod",
+ "▁met hod",
+ "▁ method",
+ "\" )",
+ "am p",
+ "a mp",
+ "as h",
+ "a sh",
+ "▁re c",
+ "▁r ec",
+ "▁ rec",
+ "▁d iffer",
+ "▁dif fer",
+ "▁diff er",
+ "O N",
+ "a x",
+ "am ent",
+ "ame nt",
+ "amen t",
+ "a ment",
+ "our ce",
+ "Co n",
+ "C on",
+ "it s",
+ "i ts",
+ "Na me",
+ "N ame",
+ "ma n",
+ "m an",
+ "▁b ec",
+ "▁be c",
+ "▁ bec",
+ "ch e",
+ "c he",
+ "▁E n",
+ "▁ En",
+ "a j",
+ "▁g ener",
+ "▁ge ner",
+ "▁gen er",
+ "▁gene r",
+ "▁ gener",
+ "I N",
+ "▁i d",
+ "▁ id",
+ "ag es",
+ "age s",
+ "a ges",
+ "▁l oc",
+ "▁lo c",
+ "▁ loc",
+ "f o",
+ "b r",
+ "▁s he",
+ "▁sh e",
+ "▁ she",
+ "Pr o",
+ "P ro",
+ "▁u na",
+ "▁un a",
+ "▁ una",
+ "▁ к",
+ "et a",
+ "e ta",
+ "lo g",
+ "l og",
+ "ol og",
+ "olo g",
+ "o log",
+ "▁s ur",
+ "▁su r",
+ "▁ sur",
+ "ar g",
+ "a rg",
+ "▁- -",
+ "▁ --",
+ "k t",
+ "( \\",
+ "mi n",
+ "m in",
+ "▁l ine",
+ "▁li ne",
+ "▁lin e",
+ "▁ line",
+ "▁v ari",
+ "▁var i",
+ "▁va ri",
+ "▁ vari",
+ "с я",
+ "ic s",
+ "i cs",
+ "н я",
+ "ve ry",
+ "ver y",
+ "v ery",
+ "ad d",
+ "a dd",
+ "▁o bject",
+ "▁ob ject",
+ "▁obj ect",
+ "▁ object",
+ "I d",
+ "▁B ut",
+ "▁Bu t",
+ "▁ But",
+ "▁c ase",
+ "▁cas e",
+ "▁ca se",
+ "▁ case",
+ "▁m ake",
+ "▁ma ke",
+ "▁mak e",
+ "▁ make",
+ "▁c al",
+ "▁ca l",
+ "▁ cal",
+ "▁p ass",
+ "▁pas s",
+ "▁pa ss",
+ "▁ pass",
+ "с ь",
+ "ess ion",
+ "ne t",
+ "n et",
+ ". \"",
+ "▁ г",
+ "ä r",
+ "д е",
+ "n o",
+ "at ing",
+ "ati ng",
+ "atin g",
+ "a ting",
+ "at o",
+ "a to",
+ "li ne",
+ "lin e",
+ "l ine",
+ "в и",
+ "▁E x",
+ "▁ Ex",
+ "▁a ss",
+ "▁as s",
+ "▁ ass",
+ "▁v ers",
+ "▁ver s",
+ "▁ve rs",
+ "▁ vers",
+ "л я",
+ "▁e d",
+ "▁ ed",
+ "um n",
+ "u mn",
+ "ot her",
+ "oth er",
+ "othe r",
+ "o ther",
+ "ст а",
+ "с та",
+ "at ive",
+ "ativ e",
+ "ati ve",
+ "St ring",
+ "Str ing",
+ "S tring",
+ "▁l os",
+ "▁lo s",
+ "▁ los",
+ "w n",
+ "▁an swer",
+ "▁ans wer",
+ "▁ answer",
+ "▁l et",
+ "▁le t",
+ "▁ let",
+ "▁p e",
+ "▁ pe",
+ "en ts",
+ "ent s",
+ "▁f e",
+ "▁ fe",
+ "in ce",
+ "inc e",
+ "n i",
+ "id er",
+ "ide r",
+ "i der",
+ "ow s",
+ "o ws",
+ "▁t est",
+ "▁te st",
+ "▁ test",
+ "▁h ere",
+ "▁he re",
+ "▁her e",
+ "▁ here",
+ "ro ll",
+ "rol l",
+ "r oll",
+ "▁c all",
+ "▁cal l",
+ "▁ca ll",
+ "▁ call",
+ "ru ct",
+ "r uct",
+ "▁p ol",
+ "▁po l",
+ "▁ pol",
+ "ai t",
+ "a it",
+ "▁b ack",
+ "▁ba ck",
+ "▁ back",
+ "h o",
+ "E x",
+ "re ss",
+ "res s",
+ "r ess",
+ "S T",
+ "ri ed",
+ "rie d",
+ "r ied",
+ "da te",
+ "dat e",
+ "d ate",
+ "е т",
+ "▁d id",
+ "▁di d",
+ "▁ did",
+ "ti ng",
+ "t ing",
+ "▁E l",
+ "▁ El",
+ "▁d em",
+ "▁de m",
+ "▁ dem",
+ ") $",
+ "ов а",
+ "о ва",
+ "ur rent",
+ "urr ent",
+ "urre nt",
+ "la ce",
+ "lac e",
+ "l ace",
+ "rig ht",
+ "r ight",
+ "re n",
+ "r en",
+ "п о",
+ "▁e ach",
+ "▁ each",
+ "c y",
+ "bl ock",
+ "blo ck",
+ "b lock",
+ "da ta",
+ "dat a",
+ "d ata",
+ "▁ %",
+ "▁a c",
+ "▁ ac",
+ "▁= =",
+ "▁ ==",
+ "ü r",
+ "▁p or",
+ "▁po r",
+ "▁ por",
+ "as k",
+ "a sk",
+ "ar ch",
+ "arc h",
+ "am es",
+ "ame s",
+ "a mes",
+ "▁C on",
+ "▁Co n",
+ "▁ Con",
+ "ч а",
+ "▁o ff",
+ "▁of f",
+ "▁ off",
+ "▁f ind",
+ "▁fin d",
+ "▁fi nd",
+ "▁ find",
+ "con t",
+ "co nt",
+ "c ont",
+ "▁n ow",
+ "▁no w",
+ "▁ now",
+ "wor k",
+ "w ork",
+ "at ional",
+ "ation al",
+ "ati onal",
+ "atio nal",
+ "d d",
+ "ci ón",
+ "ció n",
+ "c ión",
+ "▁ А",
+ "au lt",
+ "a ult",
+ "Li st",
+ "L ist",
+ "▁e xt",
+ "▁ex t",
+ "▁ ext",
+ "ur s",
+ "u rs",
+ "ak e",
+ "a ke",
+ "ul e",
+ "u le",
+ "▁p oint",
+ "▁po int",
+ "▁poi nt",
+ "▁ point",
+ "A T",
+ "au t",
+ "a ut",
+ "▁tr ans",
+ "▁tra ns",
+ "▁tran s",
+ "▁ trans",
+ "▁c o",
+ "▁ co",
+ "▁re ad",
+ "▁r ead",
+ "▁ read",
+ "▁u sed",
+ "▁us ed",
+ "▁use d",
+ "▁ used",
+ "ск и",
+ "с ки",
+ "ar i",
+ "a ri",
+ "L E",
+ "et er",
+ "ete r",
+ "e ter",
+ "ou n",
+ "o un",
+ "ev er",
+ "e ver",
+ "sel f",
+ "s elf",
+ "in ed",
+ "ine d",
+ "i ned",
+ "id th",
+ "u x",
+ "j s",
+ "▁s uch",
+ "▁su ch",
+ "▁suc h",
+ "▁ such",
+ "▁I s",
+ "▁ Is",
+ "é e",
+ "fu l",
+ "f ul",
+ "▁d ist",
+ "▁di st",
+ "▁dis t",
+ "▁ dist",
+ "▁b u",
+ "▁ bu",
+ "item ize",
+ "Con t",
+ "Co nt",
+ "C ont",
+ "j e",
+ "с и",
+ "▁p rov",
+ "▁pro v",
+ "▁pr ov",
+ "▁ prov",
+ "b b",
+ "wa rd",
+ "war d",
+ "w ard",
+ "es ent",
+ "ese nt",
+ "esen t",
+ "e sent",
+ "er son",
+ "ers on",
+ "an ks",
+ "ank s",
+ "w h",
+ "no t",
+ "n ot",
+ "▁W e",
+ "▁ We",
+ "k a",
+ "ro p",
+ "r op",
+ "at ur",
+ "atu r",
+ "al s",
+ "a ls",
+ "▁b el",
+ "▁be l",
+ "▁ bel",
+ "ö r",
+ "f r",
+ "▁ex ample",
+ "▁exam ple",
+ "▁ example",
+ "▁in cl",
+ "▁inc l",
+ "am il",
+ "ami l",
+ "a mil",
+ "▁р а",
+ "▁ ра",
+ "▁ “",
+ "▁s tring",
+ "▁st ring",
+ "▁str ing",
+ "▁stri ng",
+ "▁ string",
+ "▁th ink",
+ "▁thin k",
+ "T h",
+ "▁t em",
+ "▁te m",
+ "▁ tem",
+ "av e",
+ "a ve",
+ "▁F ran",
+ "▁Fr an",
+ "▁Fra n",
+ "▁ Fran",
+ "▁n umber",
+ "▁num ber",
+ "▁ number",
+ "▁s i",
+ "▁ si",
+ "im es",
+ "ime s",
+ "i mes",
+ "te m",
+ "t em",
+ "m y",
+ "le r",
+ "l er",
+ "lo ad",
+ "= =",
+ "▁h and",
+ "▁ha nd",
+ "▁han d",
+ "▁ hand",
+ "z a",
+ "▁b ecause",
+ "▁bec ause",
+ "▁ because",
+ "▁s ch",
+ "▁sc h",
+ "▁ sch",
+ "v o",
+ "th is",
+ "t his",
+ "I D",
+ "ã o",
+ "▁st art",
+ "▁star t",
+ "▁sta rt",
+ "▁ start",
+ "▁w ar",
+ "▁wa r",
+ "▁ war",
+ "▁he lp",
+ "▁hel p",
+ "▁ help",
+ "t s",
+ "▁c har",
+ "▁ch ar",
+ "▁cha r",
+ "▁ char",
+ "▁p h",
+ "▁ ph",
+ "▁m in",
+ "▁mi n",
+ "▁ min",
+ "ti l",
+ "t il",
+ "ri te",
+ "rit e",
+ "r ite",
+ "-- ------",
+ "---- ----",
+ "--- -----",
+ "------ --",
+ "----- ---",
+ "------- -",
+ "- -------",
+ "el s",
+ "e ls",
+ "▁m it",
+ "▁mi t",
+ "▁ mit",
+ "ed ia",
+ "edi a",
+ "e dia",
+ "к у",
+ "▁S h",
+ "▁ Sh",
+ "an y",
+ "a ny",
+ "] ;",
+ "▁ Б",
+ "iqu e",
+ "i que",
+ "d a",
+ "e f",
+ "de x",
+ "d ex",
+ "▁p rodu",
+ "▁pro du",
+ "▁pr odu",
+ "▁prod u",
+ "▁ produ",
+ "▁ Н",
+ "gr am",
+ "gra m",
+ "g ram",
+ "▁O r",
+ "▁ Or",
+ "▁g re",
+ "▁gr e",
+ "▁ gre",
+ "qu ote",
+ "quot e",
+ "le g",
+ "l eg",
+ "or n",
+ "o rn",
+ "▁in d",
+ "▁i nd",
+ "▁ ind",
+ "▁p ost",
+ "▁po st",
+ "▁pos t",
+ "▁ post",
+ "▁d ep",
+ "▁de p",
+ "▁ dep",
+ "] ,",
+ "v i",
+ "▁u ser",
+ "▁us er",
+ "▁use r",
+ "▁ user",
+ "▁ >",
+ "li ck",
+ "lic k",
+ "l ick",
+ "▁v ery",
+ "▁ver y",
+ "▁ve ry",
+ "▁ very",
+ "et hing",
+ "eth ing",
+ "e thing",
+ "▁ar ray",
+ "▁arr ay",
+ "▁ array",
+ "▁g u",
+ "▁ gu",
+ "▁d ur",
+ "▁du r",
+ "` .",
+ "т ь",
+ "li cation",
+ "lic ation",
+ "lica tion",
+ "ст и",
+ "с ти",
+ "e k",
+ "ic o",
+ "i co",
+ "▁d at",
+ "▁da t",
+ "▁ dat",
+ "о р",
+ "ht ml",
+ "htm l",
+ "h tml",
+ "ion e",
+ "io ne",
+ "i one",
+ "▁d ifferent",
+ "▁differ ent",
+ "▁c heck",
+ "▁che ck",
+ "▁ check",
+ "▁f r",
+ "▁ fr",
+ "▁E r",
+ "▁ Er",
+ "▁t ext",
+ "▁te xt",
+ "▁tex t",
+ "▁ text",
+ "н і",
+ "ic ht",
+ "ich t",
+ "i cht",
+ "st ack",
+ "sta ck",
+ "E N",
+ "ra g",
+ "r ag",
+ "▁e very",
+ "▁ev ery",
+ "▁ever y",
+ "▁ every",
+ "A r",
+ "▁be fore",
+ "▁bef ore",
+ "▁ before",
+ "al se",
+ "als e",
+ "▁f in",
+ "▁fi n",
+ "▁ fin",
+ "▁d é",
+ "▁th ese",
+ "▁the se",
+ "▁d et",
+ "▁de t",
+ "▁ det",
+ "V al",
+ "ce ption",
+ "cept ion",
+ "cep tion",
+ "▁and roid",
+ "▁ android",
+ "block quote",
+ "▁j e",
+ "▁ je",
+ "fil e",
+ "fi le",
+ "f ile",
+ "at s",
+ "a ts",
+ "▁д о",
+ "▁ до",
+ "ess age",
+ "essa ge",
+ "▁ag ain",
+ "a w",
+ "C h",
+ "we en",
+ "w een",
+ "▁ Д",
+ "fo r",
+ "f or",
+ "ci al",
+ "cia l",
+ "c ial",
+ "pl ay",
+ "pla y",
+ "p lay",
+ "pr e",
+ "p re",
+ "id a",
+ "i da",
+ "▁P ar",
+ "▁Pa r",
+ "▁ Par",
+ "n y",
+ "ra ct",
+ "rac t",
+ "r act",
+ "▁s upp",
+ "▁su pp",
+ "▁sup p",
+ "▁ supp",
+ "as ed",
+ "ase d",
+ "a sed",
+ "le ction",
+ "lect ion",
+ "l ection",
+ "▁d ans",
+ "▁da ns",
+ "▁dan s",
+ "ai r",
+ "a ir",
+ "ro l",
+ "r ol",
+ "▁t hr",
+ "▁th r",
+ "Dat a",
+ "Da ta",
+ "D ata",
+ "li ch",
+ "lic h",
+ "l ich",
+ "▁п ро",
+ "▁пр о",
+ "▁ про",
+ "▁l ong",
+ "▁lo ng",
+ "▁lon g",
+ "▁ long",
+ "▁se cond",
+ "▁sec ond",
+ "▁ second",
+ "ual ly",
+ "u ally",
+ "in es",
+ "ine s",
+ "i nes",
+ "▁f ound",
+ "▁fo und",
+ "▁fou nd",
+ "▁ found",
+ "eng th",
+ "y p",
+ "ea d",
+ "e ad",
+ "▁l og",
+ "▁lo g",
+ "▁ log",
+ "u i",
+ "ne w",
+ "n ew",
+ "▁ Р",
+ "g o",
+ "au s",
+ "a us",
+ "od y",
+ "o dy",
+ "▁s on",
+ "▁so n",
+ "▁ son",
+ "м е",
+ "er o",
+ "e ro",
+ "ve d",
+ "v ed",
+ "su b",
+ "s ub",
+ "▁r ight",
+ "▁rig ht",
+ "▁ right",
+ "vi ew",
+ "vie w",
+ "v iew",
+ "▁follow ing",
+ "' )",
+ "\") ;",
+ "\" );",
+ "▁sa id",
+ "ж е",
+ "ч и",
+ "т у",
+ "ot t",
+ "o tt",
+ "с е",
+ "ar s",
+ "a rs",
+ "$ .",
+ "g g",
+ "▁b r",
+ "▁ br",
+ "oo l",
+ "o ol",
+ "yl e",
+ "y le",
+ "us e",
+ "u se",
+ "▁s how",
+ "▁sh ow",
+ "▁sho w",
+ "▁ show",
+ "le ase",
+ "lea se",
+ "ci a",
+ "c ia",
+ "▁d irect",
+ "▁di rect",
+ "▁dire ct",
+ "▁dir ect",
+ "▁ direct",
+ "do c",
+ "d oc",
+ "а р",
+ "m s",
+ "▁g iv",
+ "▁gi v",
+ "▁ giv",
+ "▁e xp",
+ "▁ex p",
+ "▁ exp",
+ "q l",
+ "д у",
+ "в е",
+ "▁B e",
+ "▁ Be",
+ "Co m",
+ "C om",
+ "it er",
+ "ite r",
+ "i ter",
+ "R E",
+ "m p",
+ "me n",
+ "m en",
+ "▁R o",
+ "▁ Ro",
+ "M A",
+ "▁C ol",
+ "▁Co l",
+ "▁ Col",
+ "is ter",
+ "ist er",
+ "iste r",
+ "i ster",
+ "▁w ell",
+ "▁we ll",
+ "▁wel l",
+ "▁ well",
+ "▁< /",
+ "▁ ",
+ "ay out",
+ "at ure",
+ "atur e",
+ "atu re",
+ "iv ers",
+ "ive rs",
+ "iver s",
+ "i vers",
+ "z y",
+ "▁н е",
+ "▁ не",
+ "▁m et",
+ "▁me t",
+ "▁ met",
+ "un e",
+ "u ne",
+ "yt h",
+ "y th",
+ "Ty pe",
+ "Typ e",
+ "T ype",
+ "▁e lement",
+ "▁el ement",
+ "▁ele ment",
+ "▁elem ent",
+ "▁ element",
+ "▁l ink",
+ "▁lin k",
+ "▁ link",
+ "mo d",
+ "m od",
+ "▁bet ween",
+ "▁ between",
+ "ce pt",
+ "cep t",
+ "qu ire",
+ "qui re",
+ "▁th rough",
+ "▁thr ough",
+ "▁thro ugh",
+ "▁ through",
+ "▁wh ile",
+ "▁ while",
+ "▁O n",
+ "▁ On",
+ "th e",
+ "t he",
+ "í a",
+ "▁s omething",
+ "▁some thing",
+ "▁som ething",
+ "▁somet hing",
+ "▁ something",
+ "vo l",
+ "v ol",
+ "▁m ost",
+ "▁mo st",
+ "▁mos t",
+ "▁ most",
+ "s c",
+ "us s",
+ "u ss",
+ "▁c ar",
+ "▁ca r",
+ "▁ car",
+ "▁s m",
+ "▁ sm",
+ "▁р о",
+ "▁ ро",
+ "an o",
+ "a no",
+ "le ft",
+ "lef t",
+ "l eft",
+ "v a",
+ "▁tr ue",
+ "▁ true",
+ "( $",
+ "em s",
+ "e ms",
+ "▁m uch",
+ "▁mu ch",
+ "á s",
+ "▁N ew",
+ "▁Ne w",
+ "▁ New",
+ "▁pro per",
+ "▁pr oper",
+ "▁prop er",
+ "er a",
+ "e ra",
+ "it ed",
+ "ite d",
+ "i ted",
+ "▁d oc",
+ "▁do c",
+ "▁ doc",
+ "ic es",
+ "ice s",
+ "i ces",
+ "Th e",
+ "T he",
+ "▁ ?",
+ "ст о",
+ "с то",
+ "f l",
+ "▁s pec",
+ "▁sp ec",
+ "▁spe c",
+ "▁ spec",
+ "en der",
+ "end er",
+ "ende r",
+ "e nder",
+ "wa y",
+ "w ay",
+ "▁s elf",
+ "▁sel f",
+ "▁ self",
+ "▁e ven",
+ "▁ev en",
+ "▁ even",
+ "і в",
+ "▁с е",
+ "▁ се",
+ "ни я",
+ "▁P r",
+ "▁ Pr",
+ "▁k e",
+ "▁ ke",
+ "em b",
+ "e mb",
+ "▁t able",
+ "▁tab le",
+ "▁ta ble",
+ "▁ table",
+ "▁e qu",
+ "▁eq u",
+ "▁ equ",
+ "li ent",
+ "lie nt",
+ "l ient",
+ "t d",
+ "par t",
+ "pa rt",
+ "p art",
+ "▁pr int",
+ "▁pri nt",
+ "▁prin t",
+ "▁ print",
+ "▁u ne",
+ "▁un e",
+ "▁ une",
+ "if y",
+ "▁- >",
+ "▁ ->",
+ "en e",
+ "e ne",
+ "▁m on",
+ "▁mo n",
+ "▁ mon",
+ "▁d ec",
+ "▁de c",
+ "▁ dec",
+ "▁st ill",
+ "▁о б",
+ "▁ об",
+ "▁T r",
+ "▁ Tr",
+ "▁ ф",
+ "if e",
+ "i fe",
+ "is m",
+ "i sm",
+ "b y",
+ "ra w",
+ "r aw",
+ "io r",
+ "i or",
+ "▁m ed",
+ "▁me d",
+ "▁ med",
+ "or ld",
+ "▁com ple",
+ "▁comp le",
+ "▁compl e",
+ "▁ comple",
+ "w w",
+ "▁a rt",
+ "▁ar t",
+ "▁ art",
+ "ro n",
+ "r on",
+ "▁ Г",
+ "▁M y",
+ "▁ My",
+ "▁a ls",
+ "▁al s",
+ "▁ als",
+ "re ct",
+ "rec t",
+ "r ect",
+ "▁a uf",
+ "▁au f",
+ "▁ auf",
+ "▁d own",
+ "▁do wn",
+ "▁dow n",
+ "▁ down",
+ "at her",
+ "ath er",
+ "a ther",
+ "Co l",
+ "C ol",
+ "Te xt",
+ "Tex t",
+ "T ext",
+ "ba ck",
+ "b ack",
+ "$ ,",
+ "▁y ear",
+ "▁ye ar",
+ "▁ year",
+ "м о",
+ "p i",
+ "▁G r",
+ "▁ Gr",
+ "re am",
+ "rea m",
+ "▁re p",
+ "▁r ep",
+ "▁ rep",
+ "b f",
+ "ww w",
+ "w ww",
+ "▁w ur",
+ "▁o rg",
+ "▁or g",
+ "▁ org",
+ "in ter",
+ "int er",
+ "inte r",
+ "▁D ie",
+ "▁Di e",
+ "▁ Die",
+ "▁b eing",
+ "▁be ing",
+ "▁bei ng",
+ "\" .",
+ "la bel",
+ "lab el",
+ "l abel",
+ "▁c ent",
+ "▁ce nt",
+ "▁ cent",
+ "ja va",
+ "jav a",
+ "j ava",
+ "ba r",
+ "b ar",
+ "an te",
+ "ant e",
+ "an a",
+ "a na",
+ "_ _",
+ "▁sol ution",
+ "▁ О",
+ "▁f l",
+ "▁ fl",
+ "▁c reate",
+ "▁cre ate",
+ "▁ create",
+ "ic i",
+ "i ci",
+ "st e",
+ "s te",
+ "yth on",
+ "yt hon",
+ "un t",
+ "u nt",
+ "as on",
+ "aso n",
+ "a son",
+ "fer ence",
+ "fe rence",
+ "S E",
+ "▁n on",
+ "▁no n",
+ "▁ non",
+ "an e",
+ "a ne",
+ "▁in s",
+ "▁i ns",
+ "▁ ins",
+ "ad er",
+ "ade r",
+ "a der",
+ "_{ \\",
+ "_ {\\",
+ "Re s",
+ "R es",
+ "▁m ain",
+ "▁ma in",
+ "▁mai n",
+ "▁ main",
+ "п и",
+ "▁T here",
+ "▁The re",
+ "▁Th ere",
+ "▁Ther e",
+ "▁ There",
+ "▁p our",
+ "▁po ur",
+ "▁pou r",
+ "R O",
+ "` ,",
+ "li sh",
+ "lis h",
+ "l ish",
+ "b ject",
+ "cc ess",
+ "c cess",
+ "▁o rig",
+ "▁or ig",
+ "▁ orig",
+ "is chen",
+ "isch en",
+ "ische n",
+ "isc hen",
+ "i schen",
+ "ow er",
+ "owe r",
+ "o wer",
+ "▁h et",
+ "▁he t",
+ "▁ het",
+ "u c",
+ "▁el se",
+ "▁els e",
+ "▁ else",
+ "» .",
+ "▁о т",
+ "▁ от",
+ "eq u",
+ "e qu",
+ "si ble",
+ "s ible",
+ "te st",
+ "tes t",
+ "t est",
+ "st and",
+ "sta nd",
+ "stan d",
+ "é n",
+ "et s",
+ "e ts",
+ "G E",
+ "id ent",
+ "ide nt",
+ "iden t",
+ "i dent",
+ "▁ е",
+ "▁п ри",
+ "▁пр и",
+ "▁ при",
+ ". ,",
+ "▁d as",
+ "▁da s",
+ "▁ das",
+ "oc k",
+ "o ck",
+ ", \"",
+ "▁v ol",
+ "▁vo l",
+ "▁ vol",
+ "▁f o",
+ "▁ fo",
+ "▁p ara",
+ "▁par a",
+ "▁pa ra",
+ "▁ para",
+ "▁ Т",
+ "▁C ar",
+ "▁Ca r",
+ "▁ Car",
+ "ra l",
+ "r al",
+ "▁S p",
+ "▁ Sp",
+ "va r",
+ "v ar",
+ "▁p lay",
+ "▁pl ay",
+ "▁pla y",
+ "▁ play",
+ "ou se",
+ "ous e",
+ "o use",
+ "▁т а",
+ "▁ та",
+ "ic ally",
+ "ical ly",
+ "▁con tain",
+ "▁cont ain",
+ "pon se",
+ "▁S tring",
+ "▁St ring",
+ "▁Str ing",
+ "▁ String",
+ "á n",
+ "▁b oth",
+ "▁bo th",
+ "▁bot h",
+ "▁ both",
+ "ke n",
+ "k en",
+ "A R",
+ "ер е",
+ "е ре",
+ "▁I l",
+ "▁ Il",
+ "▁is s",
+ "▁i ss",
+ "▁ iss",
+ "▁o pen",
+ "▁op en",
+ "▁ open",
+ "▁ )",
+ "▁W hat",
+ "▁Wh at",
+ "▁ What",
+ "f e",
+ "riv ate",
+ "re g",
+ "r eg",
+ "▁with out",
+ "▁ without",
+ "▁z u",
+ "▁ zu",
+ "vi s",
+ "v is",
+ "fl ow",
+ "f low",
+ "▁h ttp",
+ "▁htt p",
+ "▁ http",
+ "ab ase",
+ "aba se",
+ "a base",
+ "▁w ord",
+ "▁wor d",
+ "▁wo rd",
+ "▁ word",
+ "▁ch ange",
+ "▁chang e",
+ "▁ change",
+ "▁work s",
+ "▁wor ks",
+ "▁ works",
+ "▁g e",
+ "▁ ge",
+ "▁ !",
+ "▁e en",
+ "▁ een",
+ "it le",
+ "▁e vent",
+ "▁even t",
+ "▁ev ent",
+ "▁ event",
+ "wo rd",
+ "wor d",
+ "w ord",
+ "an do",
+ "and o",
+ "S B",
+ "re m",
+ "r em",
+ "▁f ield",
+ "▁fi eld",
+ "▁fiel d",
+ "▁ field",
+ "vi ng",
+ "vin g",
+ "v ing",
+ "Se r",
+ "S er",
+ "▁o ur",
+ "▁ou r",
+ "▁ our",
+ "▁qu i",
+ "▁q ui",
+ "▁ qui",
+ "▁o per",
+ "▁op er",
+ "▁ oper",
+ "▁is t",
+ "▁i st",
+ "▁ ist",
+ "de f",
+ "d ef",
+ "▁m ade",
+ "▁ma de",
+ "▁mad e",
+ "▁ made",
+ "ни е",
+ "p x",
+ "▁m en",
+ "▁me n",
+ "▁ men",
+ "r m",
+ "ai s",
+ "a is",
+ "ce nt",
+ "cen t",
+ "c ent",
+ "li st",
+ "lis t",
+ "l ist",
+ "T o",
+ "▁T o",
+ "▁ To",
+ "j a",
+ "ve rt",
+ "ver t",
+ "v ert",
+ "▁m ar",
+ "▁ma r",
+ "▁ mar",
+ "val ue",
+ "valu e",
+ "▁ „",
+ "\" ;",
+ "▁a us",
+ "▁au s",
+ "▁ aus",
+ "▁B r",
+ "▁ Br",
+ "ol e",
+ "o le",
+ "▁m ult",
+ "▁mu lt",
+ "▁mul t",
+ "▁ mult",
+ "oug ht",
+ "ough t",
+ "▁m at",
+ "▁ma t",
+ "▁ mat",
+ "▁v iew",
+ "▁vi ew",
+ "▁vie w",
+ "▁ view",
+ "fi l",
+ "f il",
+ "▁с о",
+ "▁ со",
+ "г а",
+ "▁v oid",
+ "▁vo id",
+ "▁ void",
+ "▁g ood",
+ "▁go od",
+ "▁ good",
+ "б о",
+ "C T",
+ "▁m any",
+ "▁ma ny",
+ "▁man y",
+ "▁ many",
+ "be n",
+ "b en",
+ "▁в о",
+ "▁ во",
+ "▁к а",
+ "▁ ка",
+ "▁s ystem",
+ "▁sys tem",
+ "▁syst em",
+ "▁ system",
+ "in o",
+ "i no",
+ "▁an other",
+ "▁ano ther",
+ "▁ another",
+ "▁re st",
+ "▁r est",
+ "▁res t",
+ "▁ rest",
+ "us er",
+ "use r",
+ "u ser",
+ "il ity",
+ "ili ty",
+ "a i",
+ "▁m ight",
+ "▁mig ht",
+ "us tom",
+ "ust om",
+ "usto m",
+ "▁or der",
+ "▁ord er",
+ "▁ order",
+ "▁V er",
+ "▁Ve r",
+ "▁ Ver",
+ "S S",
+ "} )",
+ "▁e ff",
+ "▁ eff",
+ "д о",
+ "et t",
+ "e tt",
+ "▁s ign",
+ "▁si gn",
+ "▁sig n",
+ "▁ sign",
+ "м у",
+ "I T",
+ "st ring",
+ "str ing",
+ "s tring",
+ "el le",
+ "ell e",
+ "e lle",
+ "▁s ing",
+ "▁si ng",
+ "▁sin g",
+ "▁ sing",
+ "cu l",
+ "c ul",
+ "▁tr ying",
+ "▁try ing",
+ "▁b eg",
+ "▁be g",
+ "▁ beg",
+ "▁p age",
+ "▁pa ge",
+ "▁pag e",
+ "▁ page",
+ "х о",
+ "▁C an",
+ "▁Ca n",
+ "▁ Can",
+ "▁S er",
+ "▁Se r",
+ "▁ Ser",
+ "+ +",
+ "▁m ust",
+ "▁mus t",
+ "▁mu st",
+ "▁ must",
+ "▁val ues",
+ "▁value s",
+ "▁valu es",
+ "▁ values",
+ "▁k ey",
+ "▁ke y",
+ "▁ key",
+ "ib le",
+ "i ble",
+ "] .",
+ "ir d",
+ "i rd",
+ "▁pro gram",
+ "▁pr ogram",
+ "▁ program",
+ "roll er",
+ "rol ler",
+ "rolle r",
+ "▁c onne",
+ "▁con ne",
+ "▁conn e",
+ "▁ conne",
+ "▁s ay",
+ "▁sa y",
+ "▁ say",
+ "▁p aram",
+ "▁par am",
+ "▁para m",
+ "▁pa ram",
+ "▁ param",
+ "ach e",
+ "ac he",
+ "a che",
+ "ve lop",
+ "vel op",
+ "▁s elect",
+ "▁se lect",
+ "▁sel ect",
+ "▁sele ct",
+ "▁ select",
+ "▁f amil",
+ "▁fa mil",
+ "▁fam il",
+ "▁ famil",
+ "▁l ast",
+ "▁la st",
+ "▁las t",
+ "▁ last",
+ "▁Th anks",
+ "▁Thank s",
+ "▁ Thanks",
+ "▁p op",
+ "▁po p",
+ "▁ pop",
+ "} .",
+ "e q",
+ "▁does n",
+ "[ '",
+ "▁t erm",
+ "▁te rm",
+ "▁ter m",
+ "▁ term",
+ "▁r é",
+ "▁ ré",
+ "▁d ocument",
+ "▁doc ument",
+ "▁ document",
+ "п а",
+ "л у",
+ "at eg",
+ "ate g",
+ ". )",
+ "li ng",
+ "lin g",
+ "l ing",
+ "ion al",
+ "io nal",
+ "iona l",
+ "i onal",
+ "ab les",
+ "able s",
+ "abl es",
+ "a bles",
+ "▁t ak",
+ "▁ta k",
+ "ut ton",
+ "utt on",
+ "utto n",
+ "▁a rg",
+ "▁ar g",
+ "▁ arg",
+ "ty pe",
+ "typ e",
+ "t ype",
+ "▁s ure",
+ "▁su re",
+ "▁sur e",
+ "▁re al",
+ "▁ real",
+ "▁w eb",
+ "▁we b",
+ "▁ web",
+ "▁c urrent",
+ "▁cur rent",
+ "▁curr ent",
+ "▁ current",
+ "▁P l",
+ "▁ Pl",
+ "ch o",
+ "c ho",
+ "ment s",
+ "men ts",
+ "m ents",
+ "▁J oh",
+ "▁Jo h",
+ "ot s",
+ "o ts",
+ "▁ex ist",
+ "▁ exist",
+ "н у",
+ "▁f ür",
+ "▁ für",
+ "▁и з",
+ "▁ из",
+ "d o",
+ "но го",
+ "ног о",
+ "н ого",
+ "▁l as",
+ "▁la s",
+ "▁ las",
+ "▁n ull",
+ "▁nu ll",
+ "▁ null",
+ "▁in form",
+ "▁inf orm",
+ "▁info rm",
+ "▁ Л",
+ "▁v ersion",
+ "▁vers ion",
+ "▁ version",
+ "▁c hang",
+ "▁ch ang",
+ "▁cha ng",
+ "ag er",
+ "age r",
+ "a ger",
+ "▁C omm",
+ "▁Com m",
+ "▁Co mm",
+ "▁ Comm",
+ "л і",
+ "us h",
+ "u sh",
+ "▁G e",
+ "▁ Ge",
+ "▁h igh",
+ "▁hi gh",
+ "▁ high",
+ "▁in put",
+ "▁ input",
+ "og le",
+ "o gle",
+ "ro s",
+ "r os",
+ "bo x",
+ "b ox",
+ "ge n",
+ "g en",
+ "▁s te",
+ "▁st e",
+ "▁ ste",
+ "▁l ocal",
+ "▁lo cal",
+ "▁loc al",
+ "▁ local",
+ "I m",
+ "▁pro cess",
+ "▁proc ess",
+ "▁proces s",
+ "▁ process",
+ "ter nal",
+ "tern al",
+ "t ernal",
+ "iz ed",
+ "ize d",
+ "i zed",
+ "г и",
+ "é t",
+ "▁I nd",
+ "▁In d",
+ "▁ Ind",
+ "▁o ch",
+ "▁oc h",
+ "▁ och",
+ "l t",
+ "▁col umn",
+ "▁ column",
+ "▁t ried",
+ "▁tr ied",
+ "▁tri ed",
+ "▁comm and",
+ "▁comma nd",
+ "▁ command",
+ "▁b est",
+ "▁be st",
+ "▁bes t",
+ "▁ best",
+ "as ter",
+ "ast er",
+ "aste r",
+ "a ster",
+ "з а",
+ "▁p rim",
+ "▁pr im",
+ "▁pri m",
+ "▁ prim",
+ "▁m odel",
+ "▁mod el",
+ "▁mo del",
+ "▁mode l",
+ "▁ model",
+ "▁ і",
+ "▁th ose",
+ "it ies",
+ "iti es",
+ "itie s",
+ "i ties",
+ "è re",
+ "▁р е",
+ "▁ ре",
+ "ј е",
+ "ш и",
+ "qu es",
+ "que s",
+ "q ues",
+ "▁A m",
+ "▁ Am",
+ "▁o wn",
+ "▁ow n",
+ "▁ own",
+ "li n",
+ "l in",
+ "з и",
+ "Val ue",
+ "th ing",
+ "t hing",
+ "▁ ,",
+ "▁T e",
+ "▁ Te",
+ "▁st ud",
+ "▁ stud",
+ "▁u m",
+ "▁ um",
+ "▁ser ver",
+ "▁serv er",
+ "▁serve r",
+ "▁ server",
+ "il le",
+ "ill e",
+ "i lle",
+ "▁p ut",
+ "▁pu t",
+ "▁ put",
+ "at iv",
+ "ati v",
+ "g y",
+ "ов и",
+ "о ви",
+ "ra f",
+ "r af",
+ "ов о",
+ "о во",
+ "▁wur de",
+ "▁W hen",
+ "▁Wh en",
+ "▁Whe n",
+ "▁ When",
+ "▁d iv",
+ "▁di v",
+ "▁ div",
+ "an ts",
+ "ant s",
+ "▁t er",
+ "▁te r",
+ "▁ ter",
+ "▁part ic",
+ "▁parti c",
+ "▁ т",
+ "▁D o",
+ "▁ Do",
+ "▁N o",
+ "▁ No",
+ "se rt",
+ "ser t",
+ "s ert",
+ "id o",
+ "i do",
+ "math cal",
+ "ad e",
+ "a de",
+ "▁I I",
+ "▁ II",
+ "le ar",
+ "lea r",
+ "l ear",
+ "og raph",
+ "o graph",
+ "en se",
+ "ens e",
+ "▁r ow",
+ "▁ro w",
+ "▁ row",
+ "nu m",
+ "n um",
+ "▁pos sible",
+ "▁poss ible",
+ "▁possib le",
+ "▁ possible",
+ "▁s ince",
+ "▁sin ce",
+ "▁ since",
+ "▁B o",
+ "▁ Bo",
+ "ct ions",
+ "ction s",
+ "▁I m",
+ "▁ Im",
+ "O R",
+ "ц і",
+ "▁i de",
+ "▁id e",
+ "▁ ide",
+ "ma p",
+ "m ap",
+ "▁cor rect",
+ "▁corre ct",
+ "▁corr ect",
+ "▁ correct",
+ "ve s",
+ "v es",
+ "ph p",
+ "p hp",
+ "▁out put",
+ "▁ output",
+ "▁P h",
+ "▁ Ph",
+ "A L",
+ "ar ed",
+ "are d",
+ "a red",
+ "\\ \\",
+ "▁im age",
+ "▁imag e",
+ "▁ image",
+ "es ch",
+ "esc h",
+ "e sch",
+ "ж и",
+ "▁con f",
+ "▁ conf",
+ "po r",
+ "p or",
+ "qu ery",
+ "que ry",
+ "quer y",
+ "ur es",
+ "ure s",
+ "u res",
+ "iu m",
+ "i um",
+ "en ds",
+ "end s",
+ "▁A b",
+ "▁ Ab",
+ "SB N",
+ "і д",
+ "et her",
+ "eth er",
+ "ethe r",
+ "e ther",
+ "pt ions",
+ "ption s",
+ "it u",
+ "i tu",
+ "li b",
+ "l ib",
+ "n s",
+ "k i",
+ "▁work ing",
+ "▁wor king",
+ "▁ working",
+ "▁c omo",
+ "▁com o",
+ "▁co mo",
+ "▁ como",
+ "▁T hen",
+ "▁The n",
+ "▁Th en",
+ "▁ Then",
+ "M L",
+ "ke y",
+ "k ey",
+ "cl ass",
+ "cla ss",
+ "c lass",
+ "op le",
+ "o ple",
+ "itt le",
+ "▁m atch",
+ "▁mat ch",
+ "▁ match",
+ "way s",
+ "wa ys",
+ "w ays",
+ "math bb",
+ "▁re quire",
+ "▁requ ire",
+ "▁ require",
+ "al t",
+ "a lt",
+ "▁v is",
+ "▁vi s",
+ "▁ vis",
+ "▁b l",
+ "▁ bl",
+ "▁c alled",
+ "▁cal led",
+ "▁call ed",
+ "▁ called",
+ "It em",
+ "I tem",
+ "ur a",
+ "u ra",
+ "ve c",
+ "v ec",
+ "em e",
+ "e me",
+ "▁d ella",
+ "▁de lla",
+ "▁del la",
+ "▁dell a",
+ "em bre",
+ "emb re",
+ "ur g",
+ "u rg",
+ "S e",
+ "▁re quest",
+ "▁requ est",
+ "▁req uest",
+ "▁ request",
+ "is che",
+ "isch e",
+ "isc he",
+ "i sche",
+ "▁p ort",
+ "▁po rt",
+ "▁por t",
+ "▁ port",
+ "▁inst ead",
+ "= \\",
+ "▁ У",
+ "ho r",
+ "h or",
+ "en te",
+ "ent e",
+ "um e",
+ "u me",
+ "er d",
+ "e rd",
+ "с а",
+ "▁w hy",
+ "▁wh y",
+ "▁ why",
+ "ri st",
+ "ris t",
+ "r ist",
+ "▁p erson",
+ "▁per son",
+ "▁pers on",
+ "▁ person",
+ "▁. ..",
+ "▁.. .",
+ "▁ ...",
+ "▁p rivate",
+ "▁priv ate",
+ "▁ private",
+ "▁t ot",
+ "▁to t",
+ "▁ tot",
+ "ph a",
+ "p ha",
+ "if t",
+ "i ft",
+ "it a",
+ "i ta",
+ "lo c",
+ "l oc",
+ "▁o ld",
+ "▁ol d",
+ "▁ old",
+ "о н",
+ "▁n el",
+ "▁ne l",
+ "▁ nel",
+ "' ]",
+ "t i",
+ "ie t",
+ "i et",
+ "ci te",
+ "cit e",
+ "c ite",
+ "ple ment",
+ "pl ement",
+ "p lement",
+ "▁a bove",
+ "▁ab ove",
+ "▁ above",
+ "k s",
+ "re ady",
+ "read y",
+ "rea dy",
+ "▁c ome",
+ "▁com e",
+ "▁co me",
+ "▁ come",
+ "se ction",
+ "sec tion",
+ "sect ion",
+ "s ection",
+ "▁P ol",
+ "▁Po l",
+ "▁ Pol",
+ "▁w rit",
+ "▁wr it",
+ "▁ writ",
+ "▁htt ps",
+ "▁http s",
+ "▁ https",
+ "▁$ $",
+ "▁ $$",
+ "▁ »",
+ "▁bu ild",
+ "▁ build",
+ "it o",
+ "i to",
+ "▁cons ider",
+ "▁consid er",
+ "af t",
+ "a ft",
+ "Ap p",
+ "A pp",
+ ", \\",
+ "ind ows",
+ "indow s",
+ "indo ws",
+ "com m",
+ "co mm",
+ "c omm",
+ "▁ ;",
+ "gr ound",
+ "gro und",
+ "g round",
+ "▁p lace",
+ "▁pl ace",
+ "▁pla ce",
+ "▁ place",
+ "B y",
+ "▁pro ject",
+ "▁ project",
+ "Ob ject",
+ "Obj ect",
+ "O bject",
+ "▁re pr",
+ "▁rep r",
+ "en ces",
+ "ence s",
+ "enc es",
+ "ind ow",
+ "indo w",
+ "z t",
+ "▁f iles",
+ "▁file s",
+ "▁fil es",
+ "▁fi les",
+ "▁ files",
+ "c z",
+ "iv ity",
+ "ivi ty",
+ "i vity",
+ "▁in it",
+ "▁i nit",
+ "▁ init",
+ "▁p rob",
+ "▁pro b",
+ "▁pr ob",
+ "▁ prob",
+ "▁s k",
+ "▁ sk",
+ "or th",
+ "ort h",
+ "im ent",
+ "ime nt",
+ "imen t",
+ "i ment",
+ "ou ble",
+ "at al",
+ "ata l",
+ "a tal",
+ "ir c",
+ "i rc",
+ "▁ è",
+ "▁b re",
+ "▁br e",
+ "▁ bre",
+ "is ta",
+ "ist a",
+ "i sta",
+ "in put",
+ "▁ И",
+ "но й",
+ "su m",
+ "s um",
+ "pa th",
+ "pat h",
+ "p ath",
+ "▁c our",
+ "▁co ur",
+ "▁cou r",
+ "▁t oo",
+ "▁to o",
+ "▁A d",
+ "▁ Ad",
+ "▁G u",
+ "▁ Gu",
+ "▁f alse",
+ "▁fal se",
+ "▁ false",
+ "▁f un",
+ "▁fu n",
+ "▁ fun",
+ "▁с т",
+ "▁ ст",
+ "oo d",
+ "o od",
+ "è s",
+ "▁e nc",
+ "▁en c",
+ "▁ enc",
+ "bo l",
+ "b ol",
+ "r l",
+ "ar get",
+ "arg et",
+ "or der",
+ "ord er",
+ "orde r",
+ "▁me an",
+ "▁ mean",
+ "п е",
+ "ig en",
+ "ige n",
+ "i gen",
+ "▁п ре",
+ "▁пр е",
+ "▁ пре",
+ "wid th",
+ "w idth",
+ "; \r",
+ "it or",
+ "ito r",
+ "i tor",
+ "▁st ate",
+ "▁stat e",
+ "▁sta te",
+ "▁ state",
+ "▁gre at",
+ "en n",
+ "e nn",
+ "bi n",
+ "b in",
+ "E r",
+ "Mo d",
+ "M od",
+ "o z",
+ "▁w on",
+ "▁wo n",
+ "▁ won",
+ "▁f act",
+ "▁fa ct",
+ "▁fac t",
+ "▁ fact",
+ "▁j ava",
+ "▁ja va",
+ "▁jav a",
+ "▁ java",
+ "▁Un ivers",
+ "▁ Univers",
+ "▁c ap",
+ "▁ca p",
+ "▁ cap",
+ "is tor",
+ "ist or",
+ "isto r",
+ "i stor",
+ "} (",
+ "k u",
+ "it her",
+ "ith er",
+ "i ther",
+ "al es",
+ "ale s",
+ "a les",
+ "▁o u",
+ "▁ ou",
+ "ro ss",
+ "ros s",
+ "r oss",
+ "▁t ake",
+ "▁tak e",
+ "▁ta ke",
+ "▁ take",
+ "ri x",
+ "r ix",
+ "lo b",
+ "l ob",
+ "▁e ine",
+ "▁ein e",
+ "as es",
+ "ase s",
+ "▁a ccess",
+ "▁acc ess",
+ "▁ac cess",
+ "▁ access",
+ "it é",
+ "i té",
+ "is tr",
+ "ist r",
+ "i str",
+ "iz ation",
+ "iza tion",
+ "▁app ro",
+ "▁ap pro",
+ "▁ appro",
+ "ba ll",
+ "bal l",
+ "b all",
+ "▁m ak",
+ "▁ma k",
+ "} ^",
+ "▁C ons",
+ "▁Con s",
+ "▁Co ns",
+ "▁ Cons",
+ "pr ess",
+ "pre ss",
+ "pres s",
+ "p ress",
+ "se rv",
+ "ser v",
+ "s erv",
+ "() .",
+ "( ).",
+ "a f",
+ "▁re f",
+ "▁r ef",
+ "▁ ref",
+ ") \\",
+ "▁cont in",
+ "s u",
+ "iv er",
+ "ive r",
+ "i ver",
+ "▁c ond",
+ "▁con d",
+ "▁co nd",
+ "▁ cond",
+ "▁ex pect",
+ "▁exp ect",
+ "▁ expect",
+ "▁char act",
+ "▁cha ract",
+ "ber t",
+ "be rt",
+ "b ert",
+ "el t",
+ "e lt",
+ "ter s",
+ "te rs",
+ "t ers",
+ "scri pt",
+ "scr ipt",
+ "s cript",
+ "▁E d",
+ "▁ Ed",
+ "ap t",
+ "a pt",
+ "') ;",
+ "' );",
+ "pr int",
+ "▁s ize",
+ "▁si ze",
+ "▁ size",
+ "▁s ich",
+ "▁si ch",
+ "▁sic h",
+ "fa ce",
+ "fac e",
+ "f ace",
+ "en den",
+ "end en",
+ "ende n",
+ "▁A mer",
+ "▁Am er",
+ "▁ Amer",
+ "if ied",
+ "ifi ed",
+ "ifie d",
+ "ó w",
+ "▁S u",
+ "▁ Su",
+ "te s",
+ "t es",
+ "me d",
+ "m ed",
+ "▁R eg",
+ "▁Re g",
+ "▁ Reg",
+ "so le",
+ "sol e",
+ "s ole",
+ "▁in clud",
+ "▁incl ud",
+ "▁inclu d",
+ "▁ includ",
+ "in i",
+ "i ni",
+ "in ci",
+ "inc i",
+ "▁p la",
+ "▁pl a",
+ "▁ pla",
+ "▁l eft",
+ "▁le ft",
+ "▁ left",
+ "d f",
+ "Pa r",
+ "P ar",
+ "▁A ll",
+ "▁Al l",
+ "▁ All",
+ "▁o cc",
+ "▁oc c",
+ "▁ occ",
+ "▁A t",
+ "▁ At",
+ "▁c r",
+ "▁ cr",
+ "Q u",
+ "▁g iven",
+ "▁giv en",
+ "▁give n",
+ "▁gi ven",
+ "▁S ystem",
+ "▁Syst em",
+ "▁ System",
+ "ic an",
+ "ica n",
+ "i can",
+ "▁f inal",
+ "▁fin al",
+ "▁fi nal",
+ "▁ final",
+ "it ions",
+ "ition s",
+ "iti ons",
+ "▁б ы",
+ "▁ бы",
+ "▁per form",
+ "▁perf orm",
+ "▁ perform",
+ "A N",
+ "▁M e",
+ "▁ Me",
+ "ur o",
+ "u ro",
+ "▁T hat",
+ "▁Th at",
+ "▁ That",
+ "г ра",
+ "▁П о",
+ "▁ По",
+ "▁в и",
+ "▁ ви",
+ "ab ly",
+ "abl y",
+ "▁pr esent",
+ "▁pre sent",
+ "▁pres ent",
+ "▁ present",
+ "du ct",
+ "d uct",
+ "ri c",
+ "r ic",
+ "▁E ng",
+ "▁En g",
+ "▁ Eng",
+ "tr y",
+ "t ry",
+ "▁l ar",
+ "▁la r",
+ "▁ lar",
+ "b l",
+ "id d",
+ "i dd",
+ "▁ä r",
+ "▁ är",
+ "or a",
+ "o ra",
+ "L L",
+ "os s",
+ "o ss",
+ "▁I SBN",
+ "▁ ISBN",
+ "▁th ree",
+ "▁thr ee",
+ "▁thre e",
+ "▁ three",
+ "j o",
+ "n í",
+ "r c",
+ "▁f ar",
+ "▁fa r",
+ "▁ far",
+ "▁N ot",
+ "▁No t",
+ "▁ Not",
+ "▁l ittle",
+ "▁litt le",
+ "di s",
+ "d is",
+ "at i",
+ "a ti",
+ "fun ction",
+ "func tion",
+ "f unction",
+ "▁a ble",
+ "▁ab le",
+ "▁ able",
+ "le ss",
+ "les s",
+ "l ess",
+ "с о",
+ "▁p ath",
+ "▁pat h",
+ "▁pa th",
+ "▁ path",
+ "▁p res",
+ "▁pr es",
+ "▁pre s",
+ "▁ pres",
+ "lo se",
+ "los e",
+ "l ose",
+ "P I",
+ "▁iss ue",
+ "▁issu e",
+ "▁ issue",
+ "ack age",
+ "ti me",
+ "tim e",
+ "t ime",
+ "ig e",
+ "i ge",
+ "am s",
+ "a ms",
+ "▁C l",
+ "▁ Cl",
+ "ail s",
+ "ai ls",
+ "a ils",
+ "al k",
+ "i i",
+ "ш е",
+ "pe n",
+ "p en",
+ "Q L",
+ "▁e as",
+ "R L",
+ "ce l",
+ "c el",
+ "▁s l",
+ "▁ sl",
+ "▁a sk",
+ "▁as k",
+ "▁ ask",
+ "▁n om",
+ "▁no m",
+ "▁ nom",
+ "▁t op",
+ "▁to p",
+ "▁ top",
+ "id es",
+ "ide s",
+ "i des",
+ "in dex",
+ "ind ex",
+ "inde x",
+ "é m",
+ "▁h app",
+ "▁ha pp",
+ "o x",
+ "c d",
+ "▁b etter",
+ "▁bet ter",
+ "▁lo ad",
+ "▁ load",
+ "ad os",
+ "ado s",
+ "ze n",
+ "z en",
+ "▁c e",
+ "▁ ce",
+ "▁f a",
+ "▁ fa",
+ "▁J ohn",
+ "▁Joh n",
+ "▁Jo hn",
+ "▁ John",
+ "IM A",
+ "I MA",
+ "▁B ar",
+ "▁Ba r",
+ "▁ Bar",
+ "over flow",
+ "▁д е",
+ "▁ де",
+ "ne ss",
+ "nes s",
+ "n ess",
+ "ce r",
+ "c er",
+ "▁H ere",
+ "▁He re",
+ "▁Her e",
+ "▁ Here",
+ "re t",
+ "r et",
+ "▁s z",
+ "▁ sz",
+ "amb da",
+ "op y",
+ "o py",
+ "ur l",
+ "u rl",
+ "p y",
+ "r t",
+ "▁under stand",
+ "a ł",
+ "he r",
+ "h er",
+ "# #",
+ "▁ch ild",
+ "▁chi ld",
+ "▁ child",
+ "▁ex ec",
+ "▁ exec",
+ "▁app lication",
+ "▁applic ation",
+ "▁ application",
+ "▁st ruct",
+ "▁str uct",
+ "▁stru ct",
+ "▁ struct",
+ "▁ я",
+ "Fil e",
+ "Fi le",
+ "F ile",
+ "▁c ert",
+ "▁ce rt",
+ "▁cer t",
+ "▁ cert",
+ "is on",
+ "iso n",
+ "i son",
+ "▁vari able",
+ "▁ variable",
+ "D E",
+ "r s",
+ "▁re ally",
+ "▁real ly",
+ "Po rt",
+ "P ort",
+ "b a",
+ "▁B er",
+ "▁Be r",
+ "▁ Ber",
+ "▁in te",
+ "▁int e",
+ "▁ inte",
+ "▁st atic",
+ "▁stat ic",
+ "▁stati c",
+ "▁ static",
+ "▁con fig",
+ "▁conf ig",
+ "▁ config",
+ "▁S he",
+ "▁Sh e",
+ "▁ She",
+ "est ions",
+ "estion s",
+ "esti ons",
+ "▁p lus",
+ "▁pl us",
+ "▁ plus",
+ "▁h ab",
+ "▁ha b",
+ "▁ hab",
+ "op e",
+ "o pe",
+ "▁m us",
+ "▁mu s",
+ "▁ mus",
+ "▁c ount",
+ "▁co unt",
+ "▁coun t",
+ "▁cou nt",
+ "▁ count",
+ "M E",
+ "▁su pport",
+ "▁supp ort",
+ "▁sup port",
+ "▁ support",
+ "▁pe ople",
+ "▁ people",
+ "▁b eh",
+ "▁be h",
+ "▁al ready",
+ "T r",
+ "▁d one",
+ "▁do ne",
+ "▁don e",
+ "▁ done",
+ "de m",
+ "d em",
+ "si ze",
+ "s ize",
+ "al pha",
+ "alph a",
+ "▁d isc",
+ "▁di sc",
+ "▁dis c",
+ "] )",
+ "▁M an",
+ "▁Ma n",
+ "▁ Man",
+ "▁m il",
+ "▁mi l",
+ "▁ mil",
+ "▁st and",
+ "▁sta nd",
+ "▁stan d",
+ "▁ stand",
+ "▁gr oup",
+ "▁gro up",
+ "▁ group",
+ "▁sm all",
+ "▁ small",
+ "▁m ag",
+ "▁ma g",
+ "▁ mag",
+ "ст ь",
+ "с ть",
+ "▁de fault",
+ "▁def ault",
+ "▁ default",
+ "▁sing le",
+ "▁sin gle",
+ "▁ single",
+ "lin k",
+ "l ink",
+ "cl ude",
+ "clud e",
+ "▁e ar",
+ "▁ ear",
+ "il ar",
+ "ila r",
+ "i lar",
+ "** **",
+ "*** *",
+ "* ***",
+ "▁f ix",
+ "▁fi x",
+ "▁ fix",
+ "le y",
+ "l ey",
+ "▁p as",
+ "▁pa s",
+ "▁ pas",
+ "ни й",
+ "iss ion",
+ "▁im plement",
+ "▁imp lement",
+ "▁impl ement",
+ "it ch",
+ "▁го да",
+ "▁год а",
+ "▁al ways",
+ "▁ always",
+ "▁J ah",
+ "▁Ja h",
+ "pr ing",
+ "p ring",
+ "ç ão",
+ "pl ate",
+ "pla te",
+ "p late",
+ "▁de scri",
+ "▁des cri",
+ "▁desc ri",
+ "▁h ead",
+ "▁he ad",
+ "▁ head",
+ "in it",
+ "ini t",
+ "i nit",
+ "og raf",
+ "▁qu ery",
+ "▁que ry",
+ "▁quer y",
+ "▁ query",
+ "iv ed",
+ "ive d",
+ "i ved",
+ "▁in g",
+ "▁i ng",
+ "▁ ing",
+ "pt y",
+ "p ty",
+ "h a",
+ "▁m ov",
+ "▁mo v",
+ "▁ mov",
+ "▁ э",
+ "et te",
+ "ett e",
+ "e tte",
+ "il y",
+ "i ly",
+ "▁g ot",
+ "▁go t",
+ "▁ got",
+ "il ed",
+ "ile d",
+ "i led",
+ "ic ro",
+ "i cro",
+ "▁w r",
+ "▁ wr",
+ "р я",
+ "▁n ever",
+ "▁ne ver",
+ "▁nev er",
+ "or es",
+ "ore s",
+ "o res",
+ "▁b as",
+ "▁ba s",
+ "▁ bas",
+ "io s",
+ "i os",
+ "la ck",
+ "lac k",
+ "l ack",
+ "ain t",
+ "ai nt",
+ "a int",
+ "vi ous",
+ "v ious",
+ "▁g ive",
+ "▁giv e",
+ "▁gi ve",
+ "id ad",
+ "ida d",
+ "E n",
+ "ны й",
+ "н ый",
+ "ta ble",
+ "tab le",
+ "t able",
+ "▁Н а",
+ "▁ На",
+ "▁p at",
+ "▁pa t",
+ "▁ pat",
+ "то р",
+ "т ор",
+ "an gu",
+ "ang u",
+ "lo y",
+ "l oy",
+ "▁s eg",
+ "▁se g",
+ "▁ seg",
+ "ar ray",
+ "arr ay",
+ "▁F l",
+ "▁ Fl",
+ "▁in dex",
+ "▁ind ex",
+ "▁inde x",
+ "▁ index",
+ "▁s w",
+ "▁ sw",
+ "IMA GE",
+ "IM AGE",
+ "▁k m",
+ "▁ km",
+ "б и",
+ "Cl ass",
+ "Cla ss",
+ "C lass",
+ "en a",
+ "e na",
+ "ме н",
+ "м ен",
+ "com p",
+ "co mp",
+ "c omp",
+ "at us",
+ "atu s",
+ "ra p",
+ "r ap",
+ "▁L ist",
+ "▁Li st",
+ "▁Lis t",
+ "▁ List",
+ "Er ror",
+ "Err or",
+ "E rror",
+ "▁t yp",
+ "▁ty p",
+ "▁ typ",
+ "▁м а",
+ "▁ ма",
+ "c s",
+ "' :",
+ "j i",
+ "▁How ever",
+ "▁ However",
+ "▁т е",
+ "▁ те",
+ "▁be low",
+ "▁bel ow",
+ "▁ below",
+ "▁A pp",
+ "▁Ap p",
+ "▁ App",
+ "щ е",
+ "} _",
+ "bu m",
+ "b um",
+ "vi r",
+ "v ir",
+ "ée s",
+ "é es",
+ "▁re cord",
+ "▁rec ord",
+ "▁ record",
+ "ta in",
+ "t ain",
+ "le m",
+ "l em",
+ "it al",
+ "ita l",
+ "i tal",
+ "▁i mp",
+ "▁im p",
+ "▁ imp",
+ "eg o",
+ "e go",
+ "▁o d",
+ "▁ od",
+ "▁re ce",
+ "▁rec e",
+ "▁ rece",
+ "mi t",
+ "m it",
+ "ff ic",
+ "f fic",
+ "stack overflow",
+ "ie ve",
+ "iev e",
+ "▁ З",
+ "▁n ov",
+ "▁no v",
+ "▁ nov",
+ "ц е",
+ "▁In tern",
+ "▁Int ern",
+ "▁Inter n",
+ "▁ Intern",
+ "b u",
+ "▁s ugg",
+ "▁su gg",
+ "▁sug g",
+ "▁l oop",
+ "▁lo op",
+ "▁ loop",
+ "ri de",
+ "rid e",
+ "r ide",
+ "▁$ (",
+ "▁ $(",
+ "▁s uper",
+ "▁su per",
+ "▁sup er",
+ "▁ super",
+ "ri d",
+ "r id",
+ "ны х",
+ "н ых",
+ "▁P er",
+ "▁Pe r",
+ "▁ Per",
+ "▁d om",
+ "▁do m",
+ "▁ dom",
+ "= '",
+ "ut sch",
+ "uts ch",
+ "le n",
+ "l en",
+ "▁w rite",
+ "▁writ e",
+ "▁wr ite",
+ "▁ write",
+ "▁in v",
+ "▁ inv",
+ "ou th",
+ "out h",
+ "o uth",
+ "▁H er",
+ "▁He r",
+ "▁ Her",
+ "▁y ears",
+ "▁year s",
+ "▁ye ars",
+ "▁or iginal",
+ "▁orig inal",
+ "▁origin al",
+ "▁ original",
+ "eg a",
+ "e ga",
+ "▁S te",
+ "▁St e",
+ "▁ Ste",
+ "▁se ems",
+ "▁see ms",
+ "▁seem s",
+ "é g",
+ "▁n ext",
+ "▁ne xt",
+ "▁ next",
+ "ed er",
+ "ede r",
+ "e der",
+ "▁N e",
+ "▁ Ne",
+ "av as",
+ "ava s",
+ "a vas",
+ "ific ation",
+ "ifi cation",
+ "ifica tion",
+ "Ex ception",
+ "▁D er",
+ "▁De r",
+ "▁ Der",
+ "▁v e",
+ "▁ ve",
+ "at ic",
+ "ati c",
+ "ha t",
+ "h at",
+ "br ary",
+ "bra ry",
+ "re turn",
+ "ret urn",
+ "ur ch",
+ "is ion",
+ "isi on",
+ "m i",
+ "oi nt",
+ "oin t",
+ "o int",
+ "▁d ay",
+ "▁da y",
+ "▁ day",
+ "ic tion",
+ "ict ion",
+ "i ction",
+ "á l",
+ "▁é s",
+ "▁ és",
+ "▁th ough",
+ "▁thou gh",
+ "▁ though",
+ "ac tion",
+ "act ion",
+ "a ction",
+ "í t",
+ "un gen",
+ "ung en",
+ "unge n",
+ "ou rs",
+ "our s",
+ "o urs",
+ "▁s cript",
+ "▁scr ipt",
+ "▁scri pt",
+ "▁ script",
+ "▁in formation",
+ "▁inform ation",
+ "▁ information",
+ "▁mult i",
+ "▁mul ti",
+ "▁ multi",
+ "▁\\ \\",
+ "▁ \\\\",
+ "st er",
+ "ste r",
+ "s ter",
+ "к е",
+ "A C",
+ "ci es",
+ "cie s",
+ "c ies",
+ "▁dis play",
+ "▁disp lay",
+ "▁ display",
+ "om an",
+ "oma n",
+ "o man",
+ "Tim e",
+ "T ime",
+ "iu s",
+ "i us",
+ ")) ;",
+ ") );",
+ "tr e",
+ "t re",
+ "▁l im",
+ "▁li m",
+ "▁ lim",
+ "at ely",
+ "ate ly",
+ "atel y",
+ "é d",
+ "is te",
+ "ist e",
+ "i ste",
+ "▁с а",
+ "▁ са",
+ "pos t",
+ "po st",
+ "p ost",
+ "ue l",
+ "u el",
+ "im g",
+ "▁ ч",
+ "ск а",
+ "с ка",
+ "el d",
+ "e ld",
+ "pp er",
+ "ppe r",
+ "p per",
+ "ul a",
+ "u la",
+ "▁gener al",
+ "▁gen eral",
+ "▁gene ral",
+ "▁ general",
+ "A l",
+ "For m",
+ "F orm",
+ "▁u pon",
+ "▁up on",
+ "z o",
+ "am ente",
+ "ament e",
+ "amen te",
+ "a mente",
+ "▁p rom",
+ "▁pro m",
+ "▁pr om",
+ "▁ prom",
+ "▁ ü",
+ "le x",
+ "l ex",
+ "▁t urn",
+ "▁tu rn",
+ "▁tur n",
+ "▁ turn",
+ "▁м е",
+ "▁ ме",
+ "en tion",
+ "ent ion",
+ "enti on",
+ "ле н",
+ "л ен",
+ "▁a f",
+ "▁ af",
+ "ic le",
+ "i cle",
+ "ст в",
+ "с тв",
+ "▁F il",
+ "▁ Fil",
+ "▁ Ф",
+ "ava script",
+ "avas cript",
+ "Ma n",
+ "M an",
+ "ar a",
+ "a ra",
+ "wa re",
+ "war e",
+ "w are",
+ "al ign",
+ "ali gn",
+ "an gle",
+ "ang le",
+ "▁S c",
+ "▁ Sc",
+ "un ic",
+ "uni c",
+ "u nic",
+ "▁f ran",
+ "▁fr an",
+ "▁fra n",
+ "▁ fran",
+ "U n",
+ "z i",
+ "me t",
+ "m et",
+ "Ad d",
+ "A dd",
+ "▁p ub",
+ "▁pu b",
+ "▁ pub",
+ "ко в",
+ "к ов",
+ "▁g en",
+ "▁ge n",
+ "▁ gen",
+ "▁p od",
+ "▁po d",
+ "▁ pod",
+ "▁s um",
+ "▁su m",
+ "▁ sum",
+ "▁h aving",
+ "▁ha ving",
+ "▁hav ing",
+ "▁a vec",
+ "▁av ec",
+ "▁ave c",
+ "s l",
+ "▁f ig",
+ "▁fi g",
+ "▁ fig",
+ "▁R es",
+ "▁Re s",
+ "▁ Res",
+ "Dat e",
+ "Da te",
+ "D ate",
+ "ul es",
+ "ule s",
+ "u les",
+ "wi th",
+ "w ith",
+ "ски й",
+ "с кий",
+ "g u",
+ "E T",
+ "▁b ro",
+ "▁br o",
+ "▁ bro",
+ "ri e",
+ "r ie",
+ "ap s",
+ "a ps",
+ "en ding",
+ "end ing",
+ "endi ng",
+ "ma il",
+ "mai l",
+ "m ail",
+ "oo k",
+ "o ok",
+ "▁su ccess",
+ "▁succ ess",
+ "▁suc cess",
+ "▁ success",
+ "ber g",
+ "be rg",
+ "b erg",
+ "▁d eb",
+ "▁de b",
+ "▁ deb",
+ "el ta",
+ "elt a",
+ "() `",
+ "( )`",
+ "ent ial",
+ "enti al",
+ "fr ame",
+ "fra me",
+ "fram e",
+ "f rame",
+ "Ke y",
+ "K ey",
+ "in n",
+ "i nn",
+ "▁sim ple",
+ "▁simp le",
+ "▁simpl e",
+ "▁ simple",
+ "iv al",
+ "iva l",
+ "i val",
+ "▁c are",
+ "▁car e",
+ "▁ca re",
+ "▁ care",
+ "▁W eb",
+ "▁We b",
+ "▁ Web",
+ "\") .",
+ "\" ).",
+ ">< /",
+ "> ",
+ "▁d atabase",
+ "▁data base",
+ "▁dat abase",
+ "▁datab ase",
+ "▁ database",
+ "▁N ow",
+ "▁No w",
+ "▁ Now",
+ "In d",
+ "I nd",
+ "▁м о",
+ "▁ мо",
+ "ch t",
+ "c ht",
+ "ba n",
+ "b an",
+ "ra m",
+ "r am",
+ "equ ation",
+ "sk i",
+ "s ki",
+ "ie f",
+ "i ef",
+ "li m",
+ "l im",
+ "Ge t",
+ "G et",
+ "▁t re",
+ "▁tr e",
+ "▁ tre",
+ "at en",
+ "ate n",
+ "a ten",
+ "be d",
+ "b ed",
+ "▁J e",
+ "▁ Je",
+ "▁result s",
+ "▁ results",
+ "л ю",
+ "те ль",
+ "тел ь",
+ "т ель",
+ "d b",
+ "▁b it",
+ "▁bi t",
+ "▁ bit",
+ "bo dy",
+ "b ody",
+ "Ar ray",
+ "Arr ay",
+ "m u",
+ "pr ession",
+ "press ion",
+ "p ression",
+ "▁с та",
+ "▁ст а",
+ "▁ ста",
+ "on y",
+ "o ny",
+ "if f",
+ "i ff",
+ "▁b ar",
+ "▁ba r",
+ "▁ bar",
+ "▁Ar ch",
+ "▁Arc h",
+ "▁ Arch",
+ "ber s",
+ "be rs",
+ "b ers",
+ ") {",
+ "▁M on",
+ "▁Mo n",
+ "▁ Mon",
+ "▁do ing",
+ "▁doi ng",
+ "▁pro f",
+ "▁pr of",
+ "▁ prof",
+ "▁inst all",
+ "▁instal l",
+ "▁ install",
+ "▁p osition",
+ "▁pos ition",
+ "▁posit ion",
+ "▁ position",
+ "em a",
+ "e ma",
+ "▁} );",
+ "▁}) ;",
+ "▁ });",
+ "Pat h",
+ "Pa th",
+ "P ath",
+ "al i",
+ "a li",
+ "▁& &",
+ "▁ &&",
+ "le v",
+ "l ev",
+ "▁c annot",
+ "▁can not",
+ "▁M ay",
+ "▁Ma y",
+ "▁ May",
+ "in st",
+ "ins t",
+ "- \\",
+ "▁c oun",
+ "▁co un",
+ "▁cou n",
+ "▁a ng",
+ "▁an g",
+ "▁ ang",
+ "▁app ear",
+ "▁appe ar",
+ "co r",
+ "c or",
+ "ci ó",
+ "c ió",
+ "id ed",
+ "ide d",
+ "i ded",
+ "qu estions",
+ "quest ions",
+ "question s",
+ "at ter",
+ "att er",
+ "atte r",
+ "▁P a",
+ "▁ Pa",
+ "se lect",
+ "sel ect",
+ "s elect",
+ "▁pr inci",
+ "▁prin ci",
+ "E vent",
+ "▁s ide",
+ "▁si de",
+ "▁sid e",
+ "▁ side",
+ "▁m em",
+ "▁me m",
+ "▁ mem",
+ "▁J an",
+ "▁Ja n",
+ "▁ Jan",
+ "ar io",
+ "ari o",
+ "a rio",
+ "▁with in",
+ "▁wit hin",
+ "▁V al",
+ "▁Va l",
+ "▁ Val",
+ "ode s",
+ "od es",
+ "o des",
+ "idd le",
+ "ur ation",
+ "ura tion",
+ "br a",
+ "b ra",
+ "▁d ate",
+ "▁da te",
+ "▁dat e",
+ "▁ date",
+ "[ ]",
+ "▁en tre",
+ "▁ent re",
+ "▁entr e",
+ "▁ entre",
+ "il i",
+ "i li",
+ "Port ail",
+ "doc s",
+ "do cs",
+ "d ocs",
+ "ско й",
+ "с кой",
+ "El ement",
+ "E lement",
+ "▁m essage",
+ "▁mess age",
+ "▁ message",
+ "▁n ach",
+ "▁na ch",
+ "▁nac h",
+ "▁ nach",
+ "▁d uring",
+ "▁du ring",
+ "▁dur ing",
+ "▁g ra",
+ "▁gr a",
+ "▁ gra",
+ "et work",
+ "▁B y",
+ "▁ By",
+ "▁t ell",
+ "▁te ll",
+ "▁tel l",
+ "et e",
+ "e te",
+ "~ \\",
+ "▁b is",
+ "▁bi s",
+ "▁ bis",
+ "▁p u",
+ "▁ pu",
+ "▁re d",
+ "▁r ed",
+ "▁ red",
+ "▁t hing",
+ "▁th ing",
+ "▁thin g",
+ "▁ thing",
+ "▁s ort",
+ "▁so rt",
+ "▁sor t",
+ "▁ sort",
+ "xi m",
+ "x im",
+ "ir es",
+ "ire s",
+ "i res",
+ "Use r",
+ "Us er",
+ "U ser",
+ "io d",
+ "i od",
+ "▁E st",
+ "▁Es t",
+ "▁ Est",
+ "os ed",
+ "ose d",
+ "o sed",
+ "ou te",
+ "out e",
+ "o ute",
+ "▁L es",
+ "▁Le s",
+ "▁ Les",
+ "▁s ent",
+ "▁se nt",
+ "▁sen t",
+ "▁ sent",
+ "rib ute",
+ "ribu te",
+ "ut es",
+ "ute s",
+ "u tes",
+ "ist ory",
+ "istor y",
+ "isto ry",
+ "i story",
+ "▁ser vice",
+ "▁serv ice",
+ "▁servi ce",
+ "▁ service",
+ "' ;",
+ "fi eld",
+ "f ield",
+ "▁I N",
+ "▁ IN",
+ "ens ion",
+ "re l",
+ "r el",
+ "▁go ing",
+ "▁ going",
+ "we b",
+ "w eb",
+ "Con text",
+ "Cont ext",
+ "▁l ater",
+ "▁la ter",
+ "▁lat er",
+ "▁late r",
+ "u k",
+ "lay out",
+ "l ayout",
+ "on a",
+ "o na",
+ "á t",
+ "---- ------------",
+ "-------- --------",
+ "------------ ----",
+ "------ ----------",
+ "---------- ------",
+ "▁ex act",
+ "an dom",
+ "and om",
+ "ando m",
+ "▁s ie",
+ "▁si e",
+ "I I",
+ "▁The y",
+ "▁Th ey",
+ "▁ They",
+ "ment e",
+ "men te",
+ "m ente",
+ "ib li",
+ "▁f ine",
+ "▁fin e",
+ "▁fi ne",
+ "U T",
+ "▁de velop",
+ "▁deve lop",
+ "▁ develop",
+ "▁E in",
+ "so ft",
+ "of f",
+ "o ff",
+ "Se t",
+ "S et",
+ "▁a z",
+ "▁ az",
+ "et ers",
+ "eter s",
+ "ete rs",
+ "e ters",
+ "il der",
+ "ild er",
+ "ilde r",
+ "i lder",
+ "ple s",
+ "pl es",
+ "p les",
+ "▁spec ific",
+ "▁ specific",
+ "▁o m",
+ "▁ om",
+ "er ror",
+ "err or",
+ "e rror",
+ "ent ly",
+ "▁fil m",
+ "▁fi lm",
+ "▁ film",
+ "uc k",
+ "u ck",
+ "ain s",
+ "ai ns",
+ "a ins",
+ "ac ión",
+ "ació n",
+ "aci ón",
+ "a ción",
+ "ge s",
+ "g es",
+ "ж а",
+ "▁th ings",
+ "▁thing s",
+ "▁thin gs",
+ "S h",
+ "▁th ought",
+ "▁though t",
+ "▁ad ded",
+ "▁add ed",
+ "▁ added",
+ "de p",
+ "d ep",
+ "ско го",
+ "ск ого",
+ "ског о",
+ "с кого",
+ "▁L i",
+ "▁ Li",
+ "il s",
+ "i ls",
+ "yn c",
+ "y nc",
+ "▁т о",
+ "▁ то",
+ "ri es",
+ "rie s",
+ "r ies",
+ "▁c u",
+ "▁ cu",
+ "ch en",
+ "che n",
+ "c hen",
+ "IO N",
+ "I ON",
+ "▁D es",
+ "▁De s",
+ "▁ Des",
+ "ult ado",
+ "ir t",
+ "i rt",
+ "▁b ased",
+ "▁bas ed",
+ "▁base d",
+ "▁ba sed",
+ "▁ based",
+ "▁m o",
+ "▁ mo",
+ "▁d est",
+ "▁de st",
+ "▁des t",
+ "▁ dest",
+ "pn g",
+ "p ng",
+ "re en",
+ "ree n",
+ "r een",
+ "▁r unning",
+ "▁run ning",
+ "▁ running",
+ "am ma",
+ "amm a",
+ "ou d",
+ "o ud",
+ "▁re fer",
+ "▁ref er",
+ "▁ refer",
+ "io us",
+ "i ous",
+ "▁J ul",
+ "▁Ju l",
+ "▁ Jul",
+ "▁s earch",
+ "▁se arch",
+ "▁ search",
+ "al d",
+ "a ld",
+ "ed e",
+ "e de",
+ "▁w rong",
+ "▁wr ong",
+ "A n",
+ "▁u ntil",
+ "▁un til",
+ "▁ until",
+ "si te",
+ "s ite",
+ "ay er",
+ "aye r",
+ "a yer",
+ "▁on ce",
+ "▁ once",
+ "ar r",
+ "a rr",
+ "▁again st",
+ "== ==",
+ "=== =",
+ "= ===",
+ "▁s ource",
+ "▁ source",
+ "ar n",
+ "a rn",
+ "ap i",
+ "a pi",
+ "▁re present",
+ "▁repr esent",
+ "▁repres ent",
+ "▁repre sent",
+ "▁a ff",
+ "▁af f",
+ "▁ aff",
+ "▁s ein",
+ "▁se in",
+ "▁sei n",
+ "▁ sein",
+ "▁al low",
+ "▁all ow",
+ "▁allo w",
+ "▁ allow",
+ "or mal",
+ "orm al",
+ "en ded",
+ "end ed",
+ "ende d",
+ "▁cont rol",
+ "▁contr ol",
+ "▁contro l",
+ "▁ control",
+ "math bf",
+ "com e",
+ "co me",
+ "c ome",
+ "cu r",
+ "c ur",
+ "en do",
+ "end o",
+ "w a",
+ "▁up date",
+ "▁upd ate",
+ "▁ update",
+ "▁in side",
+ "▁ins ide",
+ "▁ inside",
+ "▁re ason",
+ "▁ reason",
+ "om en",
+ "ome n",
+ "o men",
+ "▁в ы",
+ "▁ вы",
+ "D e",
+ "▁ј е",
+ "▁ је",
+ "s w",
+ "▁s ever",
+ "▁se ver",
+ "O f",
+ "▁inst ance",
+ "▁ instance",
+ "▁m er",
+ "▁me r",
+ "▁ mer",
+ "▁e ffect",
+ "▁eff ect",
+ "▁ effect",
+ "col or",
+ "co lor",
+ "colo r",
+ "ug ust",
+ "il t",
+ "i lt",
+ "de s",
+ "d es",
+ "it z",
+ "i tz",
+ "ul ation",
+ "ula tion",
+ "u lation",
+ "ni e",
+ "n ie",
+ "▁W orld",
+ "▁Wor ld",
+ "▁ World",
+ "▁sim ilar",
+ "▁ similar",
+ "ym bol",
+ "hi ng",
+ "hin g",
+ "h ing",
+ "▁m ark",
+ "▁mar k",
+ "▁ mark",
+ "St ate",
+ "Stat e",
+ "▁cont ent",
+ "▁conten t",
+ "▁conte nt",
+ "▁ content",
+ "▁me ans",
+ "▁mean s",
+ "am ed",
+ "ame d",
+ "a med",
+ "▁E nd",
+ "▁En d",
+ "▁ End",
+ "N D",
+ "co unt",
+ "cou nt",
+ "c ount",
+ "▁In st",
+ "▁Ins t",
+ "▁ Inst",
+ "per ty",
+ "pert y",
+ "ct or",
+ "c tor",
+ "▁{ \\",
+ "▁ {\\",
+ "▁L et",
+ "▁Le t",
+ "▁ Let",
+ "▁! =",
+ "▁ !=",
+ "▁get ting",
+ "▁ getting",
+ "ut h",
+ "u th",
+ "um ber",
+ "umb er",
+ "▁Cons ultado",
+ "sch aft",
+ "sc haft",
+ "le te",
+ "let e",
+ "l ete",
+ "▁W ill",
+ "▁Wil l",
+ "▁Wi ll",
+ "▁ Will",
+ "▁E m",
+ "▁ Em",
+ "he ad",
+ "h ead",
+ "▁l eg",
+ "▁le g",
+ "▁ leg",
+ "но м",
+ "н ом",
+ "O r",
+ "ar m",
+ "a rm",
+ "pon d",
+ "po nd",
+ "p ond",
+ "▁Ch rist",
+ "▁Chris t",
+ "▁Chr ist",
+ "▁ Christ",
+ "▁a round",
+ "▁ar ound",
+ "▁ around",
+ "▁c lear",
+ "▁cl ear",
+ "▁cle ar",
+ "▁ clear",
+ "▁h ref",
+ "▁hr ef",
+ "▁ href",
+ "▁S ee",
+ "▁Se e",
+ "▁ See",
+ "') .",
+ "' ).",
+ "▁cre ated",
+ "▁create d",
+ "▁ created",
+ "▁b utton",
+ "▁but ton",
+ "▁ button",
+ "in ing",
+ "ini ng",
+ "i ning",
+ "▁c lick",
+ "▁cl ick",
+ "▁cli ck",
+ "▁ click",
+ "ia m",
+ "i am",
+ "pl it",
+ "p lit",
+ "F or",
+ "▁p olit",
+ "▁po lit",
+ "▁pol it",
+ "▁ polit",
+ "▁se em",
+ "▁see m",
+ "▁l ife",
+ "▁li fe",
+ "▁lif e",
+ "▁ life",
+ "но в",
+ "н ов",
+ "▁in tern",
+ "▁int ern",
+ "▁inter n",
+ "▁inte rn",
+ "▁ intern",
+ "щ и",
+ "se l",
+ "s el",
+ "so ci",
+ "s oci",
+ "▁s tor",
+ "▁st or",
+ "▁sto r",
+ "▁ stor",
+ "cl e",
+ "c le",
+ "ear ch",
+ "e arch",
+ "and roid",
+ "andro id",
+ "andr oid",
+ "}^ {",
+ "} ^{",
+ "▁e ither",
+ "▁f ew",
+ "▁fe w",
+ "▁init ial",
+ "▁initi al",
+ "▁ initial",
+ "l ength",
+ "ri a",
+ "r ia",
+ "sq l",
+ "s ql",
+ "wi k",
+ "w ik",
+ "▁é t",
+ "▁ ét",
+ "ue r",
+ "u er",
+ "▁val id",
+ "▁ valid",
+ "An d",
+ "A nd",
+ "in clude",
+ "includ e",
+ "ur y",
+ "u ry",
+ "▁s us",
+ "▁su s",
+ "ir ed",
+ "ire d",
+ "i red",
+ "▁A fter",
+ "▁Af ter",
+ "▁ After",
+ "▁d ue",
+ "▁du e",
+ "▁ due",
+ "▁b ei",
+ "▁be i",
+ "▁ bei",
+ "our ces",
+ "ource s",
+ "▁N ov",
+ "▁No v",
+ "▁ Nov",
+ "Ac t",
+ "A ct",
+ "▁C ont",
+ "▁Con t",
+ "▁Co nt",
+ "▁ Cont",
+ "▁bre ak",
+ "▁ break",
+ "es ted",
+ "est ed",
+ "este d",
+ "e sted",
+ "▁act ually",
+ "▁actual ly",
+ "▁actu ally",
+ "el se",
+ "els e",
+ "tm l",
+ "t ml",
+ "re r",
+ "r er",
+ "on es",
+ "one s",
+ "o nes",
+ "▁de sign",
+ "▁des ign",
+ "▁ design",
+ "▁pro perty",
+ "▁proper ty",
+ "▁ property",
+ "ph i",
+ "p hi",
+ "al ity",
+ "ali ty",
+ "oc h",
+ "o ch",
+ "is ts",
+ "ist s",
+ "▁ ·",
+ "ud io",
+ "udi o",
+ "A B",
+ "al a",
+ "a la",
+ "ion es",
+ "io nes",
+ "ione s",
+ "i ones",
+ "ф и",
+ "fin d",
+ "fi nd",
+ "f ind",
+ "A s",
+ "▁c ustom",
+ "▁cust om",
+ "▁ custom",
+ "▁a nn",
+ "▁an n",
+ "▁ ann",
+ "E S",
+ "O T",
+ "l ambda",
+ "▁i dent",
+ "▁id ent",
+ "▁ide nt",
+ "▁ ident",
+ "▁or gan",
+ "▁org an",
+ "▁ organ",
+ "▁C ent",
+ "▁Ce nt",
+ "▁ Cent",
+ "▁C har",
+ "▁Ch ar",
+ "▁Cha r",
+ "▁ Char",
+ "▁o s",
+ "▁ os",
+ "▁h ard",
+ "▁ha rd",
+ "▁har d",
+ "▁ hard",
+ "ро в",
+ "р ов",
+ "▁/ >",
+ "▁ />",
+ "k o",
+ "▁ex per",
+ "▁exp er",
+ "▁se par",
+ "▁sep ar",
+ "▁ separ",
+ "y l",
+ "ou rn",
+ "our n",
+ "o urn",
+ "▁d ev",
+ "▁de v",
+ "▁ dev",
+ "▁a uch",
+ "▁au ch",
+ "▁auc h",
+ "▁ auch",
+ "▁b lock",
+ "▁bl ock",
+ "▁blo ck",
+ "▁ block",
+ "bo ok",
+ "b ook",
+ "▁m ap",
+ "▁ma p",
+ "▁ map",
+ "il la",
+ "ill a",
+ "i lla",
+ "▁com put",
+ "▁comp ut",
+ "▁ comput",
+ "▁s pace",
+ "▁sp ace",
+ "▁spac e",
+ "▁ space",
+ "res ult",
+ ") }",
+ "▁e cho",
+ "▁ec ho",
+ "▁ echo",
+ "con fig",
+ "conf ig",
+ "h i",
+ "▁lar ge",
+ "▁larg e",
+ "▁ large",
+ "▁w idth",
+ "▁wid th",
+ "▁ width",
+ "▁G o",
+ "▁ Go",
+ "ma t",
+ "m at",
+ "▁d iff",
+ "▁di ff",
+ "▁dif f",
+ "▁ diff",
+ "▁k ind",
+ "▁ki nd",
+ "▁kin d",
+ "▁ kind",
+ "an ces",
+ "ance s",
+ "anc es",
+ "yn am",
+ "yna m",
+ "y nam",
+ "▁col or",
+ "▁co lor",
+ "▁ color",
+ "In t",
+ "I nt",
+ "so l",
+ "s ol",
+ "▁p i",
+ "▁ pi",
+ "▁char acter",
+ "▁charact er",
+ "▁ character",
+ "om ent",
+ "ome nt",
+ "omen t",
+ "o ment",
+ "▁res ponse",
+ "▁respons e",
+ "▁ response",
+ "ig ma",
+ "ward s",
+ "war ds",
+ "w ards",
+ "ar row",
+ "arr ow",
+ "с у",
+ "ti es",
+ "t ies",
+ "▁ü ber",
+ "▁ über",
+ "Im age",
+ "y d",
+ "▁п ере",
+ "▁пер е",
+ "▁пе ре",
+ "▁ пере",
+ "▁n ode",
+ "▁no de",
+ "▁nod e",
+ "▁ node",
+ "▁it em",
+ "▁i tem",
+ "▁ item",
+ "ach ine",
+ "achi ne",
+ "im a",
+ "i ma",
+ "▁v a",
+ "▁ va",
+ "▁appro ach",
+ "▁w er",
+ "▁we r",
+ "▁ wer",
+ "▁ч е",
+ "▁ че",
+ "O n",
+ "ol low",
+ "oll ow",
+ "он а",
+ "о на",
+ "ct ed",
+ "c ted",
+ "ur ed",
+ "ure d",
+ "u red",
+ "Cont roller",
+ "Control ler",
+ "li ed",
+ "lie d",
+ "l ied",
+ "▁j o",
+ "▁ jo",
+ "▁d al",
+ "▁da l",
+ "▁ dal",
+ "un k",
+ "▁ î",
+ "st art",
+ "sta rt",
+ "star t",
+ "ol a",
+ "o la",
+ "▁com pon",
+ "▁comp on",
+ "I C",
+ "bi t",
+ "b it",
+ "▁b ase",
+ "▁bas e",
+ "▁ba se",
+ "▁ base",
+ "п у",
+ "▁id ea",
+ "▁ide a",
+ "▁ idea",
+ "▁d ire",
+ "▁di re",
+ "▁dir e",
+ "▁ dire",
+ "▁r ad",
+ "▁ra d",
+ "▁ rad",
+ "gr oup",
+ "gro up",
+ "▁W ith",
+ "▁Wi th",
+ "▁Wit h",
+ "▁ With",
+ "ser ver",
+ "serv er",
+ "serve r",
+ "si de",
+ "s ide",
+ "si ng",
+ "sin g",
+ "s ing",
+ "▁d ies",
+ "▁di es",
+ "▁die s",
+ "▁n ear",
+ "▁ne ar",
+ "▁ near",
+ "▁v oor",
+ "▁vo or",
+ "▁ voor",
+ "▁arg ument",
+ "▁ argument",
+ "▁} ,",
+ "▁ },",
+ "▁l and",
+ "▁la nd",
+ "▁lan d",
+ "▁ land",
+ "▁n ames",
+ "▁name s",
+ "▁na mes",
+ "▁nam es",
+ "▁ names",
+ "▁o ption",
+ "▁op tion",
+ "▁opt ion",
+ "▁ option",
+ "ith ub",
+ "pp ed",
+ "ppe d",
+ "p ped",
+ "au g",
+ "a ug",
+ "▁l inks",
+ "▁link s",
+ "▁lin ks",
+ "▁ links",
+ "▁f ull",
+ "▁fu ll",
+ "▁ful l",
+ "▁ full",
+ "▁s itu",
+ "▁si tu",
+ "▁sit u",
+ "▁con sole",
+ "▁cons ole",
+ "▁ console",
+ "▁e tc",
+ "▁et c",
+ "▁ etc",
+ "au x",
+ "a ux",
+ "▁C or",
+ "▁Co r",
+ "▁ Cor",
+ "icro soft",
+ "▁c ame",
+ "▁cam e",
+ "▁ca me",
+ "lo cal",
+ "loc al",
+ "l ocal",
+ "▁k nown",
+ "▁kn own",
+ "▁know n",
+ "▁ known",
+ "▁multi ple",
+ "▁multip le",
+ "▁ multiple",
+ "angu age",
+ "▁t otal",
+ "▁to tal",
+ "▁tot al",
+ "▁ total",
+ "ol ogy",
+ "olog y",
+ "olo gy",
+ "ä t",
+ "▁ Х",
+ "▁f re",
+ "▁fr e",
+ "▁ fre",
+ "▁t en",
+ "▁te n",
+ "▁ ten",
+ "ide o",
+ "▁b es",
+ "▁be s",
+ "▁ bes",
+ "tr ue",
+ "Qu ery",
+ "Que ry",
+ "om m",
+ "o mm",
+ "▁A rt",
+ "▁Ar t",
+ "▁ Art",
+ "▁ke ep",
+ "▁ keep",
+ "▁Un iversity",
+ "▁Univers ity",
+ "re ate",
+ "rea te",
+ "pp ort",
+ "ppo rt",
+ "p port",
+ "▁p ython",
+ "▁ python",
+ "tr a",
+ "t ra",
+ "ect or",
+ "ec tor",
+ "e ctor",
+ "р і",
+ "op h",
+ "o ph",
+ "▁c onc",
+ "▁con c",
+ "▁co nc",
+ "▁f our",
+ "▁fo ur",
+ "▁fou r",
+ "▁ four",
+ "vi ron",
+ "vir on",
+ "▁v ia",
+ "▁vi a",
+ "▁ via",
+ "? \"",
+ "im age",
+ "ima ge",
+ "ol l",
+ "o ll",
+ "ны е",
+ "н ые",
+ "▁con text",
+ "▁cont ext",
+ "▁conte xt",
+ "▁ context",
+ "▁s em",
+ "▁se m",
+ "▁ sem",
+ ". _",
+ "▁e ng",
+ "▁en g",
+ "▁ eng",
+ "ma r",
+ "m ar",
+ "A D",
+ "▁m or",
+ "▁mo r",
+ "▁ mor",
+ "▁C al",
+ "▁Ca l",
+ "▁ Cal",
+ "▁c ell",
+ "▁ce ll",
+ "▁cel l",
+ "▁ cell",
+ "im al",
+ "ima l",
+ "i mal",
+ "AT E",
+ "A TE",
+ "▁in f",
+ "▁ inf",
+ "ö n",
+ "uf fer",
+ "uff er",
+ "s q",
+ ".. ..",
+ "... .",
+ ". ...",
+ "▁z ur",
+ "▁zu r",
+ "W ith",
+ "ра н",
+ "р ан",
+ "ch n",
+ "c hn",
+ "▁d oor",
+ "▁do or",
+ "▁ door",
+ "cont ent",
+ "▁m iss",
+ "▁mi ss",
+ "▁mis s",
+ "▁ miss",
+ "▁s imp",
+ "▁sim p",
+ "▁si mp",
+ "▁ simp",
+ "á r",
+ "ir a",
+ "i ra",
+ "▁h at",
+ "▁ha t",
+ "▁ hat",
+ "Te st",
+ "T est",
+ "▁c ertain",
+ "▁cert ain",
+ "▁cer tain",
+ "▁ certain",
+ "N S",
+ "▁c ho",
+ "▁ch o",
+ "▁ cho",
+ "▁ad v",
+ "▁ adv",
+ "wh ere",
+ "w here",
+ "▁lo oking",
+ "▁look ing",
+ "▁ looking",
+ "▁t imes",
+ "▁time s",
+ "▁tim es",
+ "▁ti mes",
+ "▁ times",
+ "ни х",
+ "н их",
+ "ut o",
+ "u to",
+ "▁ É",
+ "ca n",
+ "c an",
+ "ho st",
+ "hos t",
+ "h ost",
+ "▁( *",
+ "▁ (*",
+ "lo at",
+ "▁n icht",
+ "▁ni cht",
+ "▁nic ht",
+ "▁nich t",
+ "Fi eld",
+ "F ield",
+ "bu rg",
+ "bur g",
+ "b urg",
+ "con st",
+ "cons t",
+ "ad es",
+ "ade s",
+ "a des",
+ "▁M us",
+ "▁Mu s",
+ "▁ Mus",
+ "▁n othing",
+ "▁not hing",
+ "▁no thing",
+ "▁ nothing",
+ "▁in cre",
+ "▁inc re",
+ "▁M in",
+ "▁Mi n",
+ "▁ Min",
+ "▁p ower",
+ "▁po wer",
+ "▁pow er",
+ "▁ power",
+ "▁Amer ican",
+ "▁America n",
+ "▁ American",
+ "l n",
+ "val id",
+ "un gs",
+ "ung s",
+ "▁N ational",
+ "▁Nat ional",
+ "▁Nation al",
+ "▁ National",
+ "▁S an",
+ "▁Sa n",
+ "▁ San",
+ "▁Y ork",
+ "Re quest",
+ "ch ar",
+ "cha r",
+ "c har",
+ "▁Z e",
+ "▁ Ze",
+ "but ton",
+ "b utton",
+ "▁a lg",
+ "▁al g",
+ "▁ alg",
+ "SO N",
+ "S ON",
+ "▁a p",
+ "▁ ap",
+ "uf f",
+ "u ff",
+ "ab ility",
+ "abil ity",
+ "е м",
+ "▁any thing",
+ "el a",
+ "e la",
+ "() )",
+ "( ))",
+ "б а",
+ "amp ion",
+ "ampio n",
+ "▁p ot",
+ "▁po t",
+ "▁ pot",
+ "▁f ut",
+ "▁fu t",
+ "ail able",
+ "▁p rop",
+ "▁pro p",
+ "▁pr op",
+ "▁ prop",
+ "\" ]",
+ "▁l ess",
+ "▁le ss",
+ "▁les s",
+ "▁ less",
+ "la g",
+ "l ag",
+ "▁A ugust",
+ "▁Aug ust",
+ "▁ August",
+ "I t",
+ "▁p lease",
+ "▁ple ase",
+ "▁st yle",
+ "▁sty le",
+ "▁ style",
+ "▁Al so",
+ "▁Als o",
+ "▁ Also",
+ "b t",
+ "▁pro bably",
+ "▁prob ably",
+ "▁O ne",
+ "▁On e",
+ "▁ One",
+ "▁p oss",
+ "▁po ss",
+ "▁pos s",
+ "▁ poss",
+ "U I",
+ "ui t",
+ "u it",
+ "▁W est",
+ "▁We st",
+ "▁Wes t",
+ "▁ West",
+ "h n",
+ "+ \\",
+ "But ton",
+ "Butt on",
+ "B utton",
+ "js on",
+ "j son",
+ "er r",
+ "e rr",
+ "ra me",
+ "ram e",
+ "r ame",
+ "do m",
+ "d om",
+ "il on",
+ "ilo n",
+ "i lon",
+ "al f",
+ "▁c lient",
+ "▁cl ient",
+ "▁cli ent",
+ "▁ client",
+ "▁cont inu",
+ "▁contin u",
+ "▁ continu",
+ "x ml",
+ "pe c",
+ "p ec",
+ "ad or",
+ "ado r",
+ "a dor",
+ "l s",
+ "▁how ever",
+ "▁A ny",
+ "▁An y",
+ "▁ Any",
+ "än d",
+ "ä nd",
+ "math rm",
+ "▁u rl",
+ "▁ur l",
+ "▁ url",
+ "▁b ook",
+ "▁bo ok",
+ "▁ book",
+ "▁g l",
+ "▁ gl",
+ "iv es",
+ "ive s",
+ "i ves",
+ "g i",
+ "▁t ro",
+ "▁tr o",
+ "▁U S",
+ "▁ US",
+ "po int",
+ "p oint",
+ "op en",
+ "ope n",
+ "o pen",
+ "▁c ur",
+ "▁cu r",
+ "▁ cur",
+ "▁e ra",
+ "▁er a",
+ "▁ era",
+ "▁part icular",
+ "▁partic ular",
+ "▁particul ar",
+ "▁parti cular",
+ "▁H T",
+ "▁ HT",
+ "oo t",
+ "o ot",
+ "el lo",
+ "ell o",
+ "lo bal",
+ "lob al",
+ "▁a ction",
+ "▁act ion",
+ "▁ac tion",
+ "▁ action",
+ "▁I nt",
+ "▁In t",
+ "▁ Int",
+ "▁in clude",
+ "▁incl ude",
+ "▁includ e",
+ "▁inclu de",
+ "▁ include",
+ "▁el ements",
+ "▁element s",
+ "▁ele ments",
+ "▁elem ents",
+ "▁ elements",
+ "на я",
+ "ar ds",
+ "ard s",
+ "▁B l",
+ "▁ Bl",
+ "▁h um",
+ "▁hu m",
+ "▁ hum",
+ "fr om",
+ "f rom",
+ "ch ange",
+ "chan ge",
+ "▁function s",
+ "▁fun ctions",
+ "▁ functions",
+ "he n",
+ "h en",
+ "Ser vice",
+ "Serv ice",
+ "▁he ight",
+ "▁ height",
+ "▁L and",
+ "▁La nd",
+ "▁Lan d",
+ "▁ Land",
+ "ia s",
+ "i as",
+ "g s",
+ "ió n",
+ "i ón",
+ "ло в",
+ "л ов",
+ "no de",
+ "n ode",
+ ". ”",
+ "ha nd",
+ "han d",
+ "h and",
+ "▁б у",
+ "▁ бу",
+ "▁a mb",
+ "▁am b",
+ "▁ amb",
+ "▁L u",
+ "▁ Lu",
+ "▁th row",
+ "▁thr ow",
+ "▁thro w",
+ "▁ throw",
+ "▁m ot",
+ "▁mo t",
+ "▁ mot",
+ "▁A ct",
+ "▁Ac t",
+ "▁ Act",
+ "▁w orld",
+ "▁wor ld",
+ "▁ world",
+ "_ \\",
+ "ba se",
+ "bas e",
+ "b ase",
+ "▁C o",
+ "▁ Co",
+ "▁ar ch",
+ "▁arc h",
+ "▁ arch",
+ "▁## ##",
+ "▁### #",
+ "▁ ####",
+ "ge d",
+ "g ed",
+ "pr il",
+ "p ril",
+ "ol der",
+ "old er",
+ "o lder",
+ "Mod el",
+ "Mode l",
+ "Mo del",
+ "M odel",
+ "▁sever al",
+ "li e",
+ "l ie",
+ "che ck",
+ "c heck",
+ "] {",
+ "con s",
+ "co ns",
+ "c ons",
+ "▁T ra",
+ "▁Tr a",
+ "▁ Tra",
+ "he ck",
+ "▁l east",
+ "▁le ast",
+ "do wn",
+ "d own",
+ "eb ru",
+ "e bru",
+ "De f",
+ "D ef",
+ "par am",
+ "pa ram",
+ "para m",
+ "p aram",
+ "is cher",
+ "isch er",
+ "ische r",
+ "isc her",
+ "i scher",
+ "▁c as",
+ "▁ca s",
+ "▁ cas",
+ "C H",
+ "▁add ress",
+ "▁addr ess",
+ "▁ address",
+ "▁ра з",
+ "▁ раз",
+ "uf en",
+ "ufe n",
+ "u fen",
+ "ur ope",
+ "uro pe",
+ "urop e",
+ "е й",
+ "▁b ound",
+ "▁bo und",
+ "▁bou nd",
+ "▁ bound",
+ "C O",
+ "▁A ng",
+ "▁An g",
+ "▁ Ang",
+ "▁M a",
+ "▁ Ma",
+ "In dex",
+ "Ind ex",
+ "co re",
+ "cor e",
+ "c ore",
+ "ou ch",
+ "ouc h",
+ "o uch",
+ "at abase",
+ "ata base",
+ "rib ution",
+ "ribu tion",
+ "doc ument",
+ "d ocument",
+ "L e",
+ "}_ {",
+ "} _{",
+ "ve rn",
+ "ver n",
+ "v ern",
+ "▁stat ement",
+ "▁state ment",
+ "▁ statement",
+ "▁B rit",
+ "▁Br it",
+ "on o",
+ "o no",
+ "ps ilon",
+ "psi lon",
+ "▁le vel",
+ "▁lev el",
+ "▁ level",
+ "▁pro duct",
+ "▁produ ct",
+ "▁prod uct",
+ "▁ product",
+ "I S",
+ "▁c ourse",
+ "▁cour se",
+ "▁cours e",
+ "▁ course",
+ "▁M r",
+ "▁ Mr",
+ "> \r",
+ "▁back ground",
+ "▁ background",
+ "▁re t",
+ "▁r et",
+ "▁ ret",
+ "er ing",
+ "eri ng",
+ "e ring",
+ "mo st",
+ "mos t",
+ "m ost",
+ "сь ко",
+ "ськ о",
+ "▁th read",
+ "▁thr ead",
+ "▁thre ad",
+ "▁ thread",
+ "it ional",
+ "ition al",
+ "iti onal",
+ "it es",
+ "ite s",
+ "i tes",
+ "P l",
+ "▁d os",
+ "▁do s",
+ "g a",
+ "da y",
+ "d ay",
+ "▁G ener",
+ "▁Ge ner",
+ "▁Gen er",
+ "▁Gene r",
+ "▁ Gener",
+ "▁t w",
+ "▁ tw",
+ "A d",
+ "\"> <",
+ "\" ><",
+ "▁( $",
+ "▁ ($",
+ "▁m oment",
+ "▁mo ment",
+ "▁mom ent",
+ "tit le",
+ "t itle",
+ "cre ate",
+ "c reate",
+ "vers ion",
+ "v ersion",
+ "Man ager",
+ "▁f ur",
+ "▁fu r",
+ "▁ fur",
+ "pp ing",
+ "ppi ng",
+ "p ping",
+ "ij n",
+ "о с",
+ "▁r ather",
+ "▁ra ther",
+ "▁rat her",
+ "pt ember",
+ "O S",
+ "▁s ite",
+ "▁si te",
+ "▁sit e",
+ "▁ site",
+ "▁c aus",
+ "▁ca us",
+ "an i",
+ "a ni",
+ "▁h ome",
+ "▁hom e",
+ "▁ho me",
+ "▁ home",
+ "м і",
+ "▁sh ort",
+ "▁sho rt",
+ "▁ short",
+ "p a",
+ "▁l ead",
+ "▁le ad",
+ "is hed",
+ "ish ed",
+ "ci ng",
+ "cin g",
+ "c ing",
+ "or ding",
+ "ord ing",
+ "ordin g",
+ "▁p rote",
+ "▁pro te",
+ "▁pr ote",
+ "▁prot e",
+ "▁ prote",
+ "с ле",
+ "LE CT",
+ "L ECT",
+ "▁di dn",
+ "▁did n",
+ "pos ition",
+ "p osition",
+ "\", \"",
+ "\" ,\"",
+ "() ,",
+ "( ),",
+ "tr ans",
+ "tra ns",
+ "▁l ot",
+ "▁lo t",
+ "▁ lot",
+ "▁о д",
+ "▁ од",
+ "A S",
+ "▁s at",
+ "▁sa t",
+ "▁po ints",
+ "▁point s",
+ "▁ points",
+ "g ithub",
+ "st yle",
+ "sty le",
+ "▁го ду",
+ "▁год у",
+ "▁D is",
+ "▁Di s",
+ "▁ Dis",
+ "pon ent",
+ "om et",
+ "ome t",
+ "o met",
+ "ze r",
+ "z er",
+ "UL L",
+ "U LL",
+ "▁p a",
+ "▁ pa",
+ "A P",
+ "ac es",
+ "ace s",
+ "a ces",
+ "▁Un ited",
+ "▁Unit ed",
+ "am a",
+ "a ma",
+ "et y",
+ "e ty",
+ "Col or",
+ "Co lor",
+ "▁en ough",
+ "U S",
+ "▁l ength",
+ "▁leng th",
+ "▁ length",
+ "() );",
+ "()) ;",
+ "( ));",
+ "^{ \\",
+ "^ {\\",
+ "ft y",
+ "f ty",
+ "Bo x",
+ "B ox",
+ "ap ter",
+ "apt er",
+ "▁comp let",
+ "▁comple t",
+ "▁compl et",
+ "ни к",
+ "ma x",
+ "m ax",
+ "ob ject",
+ "obj ect",
+ "o bject",
+ "( {",
+ "img ur",
+ "it ive",
+ "iti ve",
+ "un ch",
+ "unc h",
+ "▁S ub",
+ "▁Su b",
+ "▁ Sub",
+ "en de",
+ "end e",
+ "e nde",
+ "г у",
+ "ateg ory",
+ "ategor y",
+ "т ы",
+ "ia no",
+ "ian o",
+ "i ano",
+ "▁u pd",
+ "▁up d",
+ "▁A ust",
+ "▁Aus t",
+ "▁Au st",
+ "}{ \\",
+ "} {\\",
+ "to p",
+ "t op",
+ "la s",
+ "l as",
+ "pi s",
+ "p is",
+ "in ess",
+ "ine ss",
+ "ines s",
+ "i ness",
+ "▁{ \r",
+ "▁ {\r",
+ "▁ Е",
+ "G r",
+ "▁A S",
+ "▁ AS",
+ "▁в е",
+ "▁ ве",
+ "th ers",
+ "ther s",
+ "the rs",
+ "▁d efined",
+ "▁def ined",
+ "▁define d",
+ "▁defin ed",
+ "▁ defined",
+ "az ione",
+ "azi one",
+ "a zione",
+ "▁o ffic",
+ "▁of fic",
+ "▁off ic",
+ "▁au tom",
+ "▁aut om",
+ "▁auto m",
+ "▁ autom",
+ "ü n",
+ "▁b row",
+ "▁br ow",
+ "▁bro w",
+ "▁ brow",
+ "▁s erv",
+ "▁se rv",
+ "▁ser v",
+ "▁ serv",
+ "▁re move",
+ "▁rem ove",
+ "▁remov e",
+ "▁ remove",
+ "ir o",
+ "i ro",
+ "▁B ibli",
+ "▁Bib li",
+ "E D",
+ "▁w hole",
+ "▁wh ole",
+ "▁who le",
+ "▁ ш",
+ "▁J ava",
+ "▁Ja va",
+ "▁ Java",
+ "▁z um",
+ "▁zu m",
+ "u a",
+ "p m",
+ "de v",
+ "d ev",
+ "к ра",
+ "ol ds",
+ "old s",
+ "▁W ar",
+ "▁Wa r",
+ "ä n",
+ "pa ss",
+ "pas s",
+ "p ass",
+ "u z",
+ "[ \"",
+ "▁t ri",
+ "▁tr i",
+ "▁ tri",
+ "is ed",
+ "ise d",
+ "i sed",
+ "х а",
+ "▁mem ory",
+ "▁memor y",
+ "▁ memory",
+ "▁P ort",
+ "▁Po rt",
+ "▁Por t",
+ "▁ Port",
+ "op er",
+ "ope r",
+ "o per",
+ "U p",
+ "▁Th ank",
+ "▁ Thank",
+ "▁M ich",
+ "▁Mi ch",
+ "▁Mic h",
+ "▁ Mich",
+ "yc h",
+ "y ch",
+ "bo ard",
+ "boa rd",
+ "б у",
+ "In st",
+ "▁b egin",
+ "▁be gin",
+ "▁beg in",
+ "▁ begin",
+ "in ation",
+ "ina tion",
+ "▁M od",
+ "▁Mo d",
+ "▁ Mod",
+ "_ ,",
+ "▁D en",
+ "▁De n",
+ "▁ Den",
+ "op tion",
+ "opt ion",
+ "o ption",
+ "▁con struct",
+ "▁const ruct",
+ "▁constru ct",
+ "▁ construct",
+ "▁J ust",
+ "▁Ju st",
+ "▁ Just",
+ "Ma p",
+ "M ap",
+ "ru n",
+ "r un",
+ "▁re spect",
+ "▁res pect",
+ "▁resp ect",
+ "ha m",
+ "h am",
+ "ма н",
+ "м ан",
+ "im edia",
+ "ime dia",
+ "i media",
+ "▁a pply",
+ "▁app ly",
+ "▁ap ply",
+ "▁ apply",
+ "cri ption",
+ "cript ion",
+ "ma in",
+ "mai n",
+ "m ain",
+ "▁К а",
+ "▁ Ка",
+ "oi d",
+ "o id",
+ "Co de",
+ "C ode",
+ "} ;",
+ "In fo",
+ "Inf o",
+ "▁for mat",
+ "▁form at",
+ "▁forma t",
+ "▁ format",
+ "Lo g",
+ "L og",
+ "▁с у",
+ "▁ су",
+ "▁l at",
+ "▁la t",
+ "▁ lat",
+ "ut or",
+ "uto r",
+ "u tor",
+ "▁re ference",
+ "▁refer ence",
+ "▁ reference",
+ "▁cal cul",
+ "▁calc ul",
+ "▁ calcul",
+ "on n",
+ "o nn",
+ "L o",
+ "in fty",
+ "inf ty",
+ "▁a long",
+ "▁al ong",
+ "▁ č",
+ "▁t ask",
+ "▁ta sk",
+ "▁ task",
+ "▁e v",
+ "▁ ev",
+ "th eta",
+ "the ta",
+ "ra s",
+ "r as",
+ "jo r",
+ "j or",
+ "▁б о",
+ "▁ бо",
+ "▁princi p",
+ "▁prin cip",
+ "M y",
+ "▁e iner",
+ "▁ein er",
+ "▁eine r",
+ "▁E s",
+ "▁ Es",
+ "om b",
+ "o mb",
+ "qu ad",
+ "qua d",
+ "^{ -",
+ "^ {-",
+ "um p",
+ "u mp",
+ "▁t ill",
+ "▁til l",
+ "▁ti ll",
+ "д і",
+ "▁lo oks",
+ "▁look s",
+ "▁o k",
+ "▁ ok",
+ "ц а",
+ "n u",
+ "Fi l",
+ "F il",
+ "▁s ont",
+ "▁so nt",
+ "▁son t",
+ "▁M ed",
+ "▁Me d",
+ "▁ Med",
+ "ag ue",
+ "agu e",
+ "a gue",
+ "▁c ost",
+ "▁co st",
+ "▁cos t",
+ "▁ cost",
+ "▁S im",
+ "▁Si m",
+ "▁ Sim",
+ "▁com ment",
+ "▁comm ent",
+ "▁comme nt",
+ "▁ comment",
+ "▁( \\",
+ "▁ (\\",
+ "eg en",
+ "ege n",
+ "e gen",
+ "▁para meter",
+ "▁param eter",
+ "▁paramet er",
+ "▁ parameter",
+ "▁F rance",
+ "▁Fran ce",
+ "▁Fr ance",
+ "▁Franc e",
+ "▁ France",
+ "re p",
+ "r ep",
+ "▁T H",
+ "▁ TH",
+ "▁y et",
+ "▁ye t",
+ "▁a way",
+ "▁aw ay",
+ "▁ away",
+ "▁c irc",
+ "▁ci rc",
+ "▁cir c",
+ "▁ circ",
+ "▁A PI",
+ "▁AP I",
+ "▁ API",
+ "em p",
+ "e mp",
+ "в і",
+ "L ayout",
+ "▁l ines",
+ "▁li nes",
+ "▁line s",
+ "▁lin es",
+ "▁ lines",
+ "▁P art",
+ "▁Par t",
+ "▁Pa rt",
+ "▁ Part",
+ "em pt",
+ "emp t",
+ "▁B i",
+ "▁ Bi",
+ "▁m ind",
+ "▁min d",
+ "▁mi nd",
+ "▁ mind",
+ "k y",
+ "gi ng",
+ "gin g",
+ "g ing",
+ "▁re port",
+ "▁rep ort",
+ "▁repo rt",
+ "▁ report",
+ "▁A dd",
+ "▁Ad d",
+ "▁ Add",
+ "ро д",
+ "р од",
+ "▁r ange",
+ "▁ran ge",
+ "▁rang e",
+ "▁ range",
+ "ci as",
+ "cia s",
+ "c ias",
+ "li p",
+ "l ip",
+ "▁K ar",
+ "▁Ka r",
+ "▁ Kar",
+ "▁Comm ons",
+ "▁Common s",
+ "ger ufen",
+ "af f",
+ "a ff",
+ "se c",
+ "s ec",
+ "▁h tml",
+ "▁ html",
+ "li g",
+ "l ig",
+ "▁w indow",
+ "▁wind ow",
+ "▁ window",
+ "in ition",
+ "ini tion",
+ "init ion",
+ "ci s",
+ "c is",
+ "▁u t",
+ "▁ ut",
+ "el n",
+ "e ln",
+ "▁a ux",
+ "▁au x",
+ "▁ aux",
+ "▁n eg",
+ "▁ne g",
+ "▁ neg",
+ "Ha nd",
+ "H and",
+ "▁) ;",
+ "▁ );",
+ "▁a nal",
+ "▁an al",
+ "▁ anal",
+ "▁f ri",
+ "▁fr i",
+ "▁ fri",
+ "▁с и",
+ "▁ си",
+ "et ch",
+ "etc h",
+ "m d",
+ "pa ge",
+ "pag e",
+ "p age",
+ "▁l ibrary",
+ "▁li brary",
+ "▁ library",
+ "▁: =",
+ "▁ :=",
+ "RO M",
+ "R OM",
+ "Y ou",
+ "sp ace",
+ "s pace",
+ "▁d urch",
+ "▁dur ch",
+ "▁h ost",
+ "▁ho st",
+ "▁hos t",
+ "▁ host",
+ "av en",
+ "ave n",
+ "a ven",
+ "▁F ile",
+ "▁Fil e",
+ "▁ File",
+ "al le",
+ "all e",
+ "a lle",
+ "ти в",
+ "▁p ap",
+ "▁pa p",
+ "ст во",
+ "ств о",
+ "с тво",
+ "mar k",
+ "m ark",
+ "▁m ais",
+ "▁ma is",
+ "▁mai s",
+ "er man",
+ "erm an",
+ "Si ze",
+ "S ize",
+ "е к",
+ "▁М а",
+ "▁ Ма",
+ "▁is n",
+ "▁i sn",
+ "▁c opy",
+ "▁co py",
+ "▁cop y",
+ "▁ copy",
+ "st en",
+ "ste n",
+ "s ten",
+ "ri ver",
+ "riv er",
+ "rive r",
+ "r iver",
+ "▁w ent",
+ "▁we nt",
+ "▁wen t",
+ "▁j avascript",
+ "▁java script",
+ "▁ javascript",
+ "▁s am",
+ "▁sa m",
+ "▁ sam",
+ "▁f rame",
+ "▁fr ame",
+ "▁fra me",
+ "▁fram e",
+ "▁ frame",
+ "▁v i",
+ "▁ vi",
+ "▁pre vious",
+ "▁prev ious",
+ "▁ previous",
+ "ro du",
+ "rod u",
+ "r odu",
+ "▁method s",
+ "▁ methods",
+ "▁ne cess",
+ "▁neces s",
+ "▁ necess",
+ "N A",
+ "ck et",
+ "cke t",
+ "c ket",
+ "▁o pt",
+ "▁op t",
+ "▁ opt",
+ "Lo c",
+ "L oc",
+ "ho w",
+ "h ow",
+ "▁î n",
+ "▁ în",
+ "sh ip",
+ "s hip",
+ "▁it self",
+ "▁its elf",
+ "▁P lease",
+ "▁Ple ase",
+ "▁ Please",
+ "ie ne",
+ "ien e",
+ "i ene",
+ "ве р",
+ "в ер",
+ "▁< <",
+ "▁ <<",
+ "▁m ill",
+ "▁mil l",
+ "▁mi ll",
+ "▁ mill",
+ "▁t rad",
+ "▁tr ad",
+ "▁tra d",
+ "▁ trad",
+ "pa ce",
+ "p ace",
+ "▁H ar",
+ "▁Ha r",
+ "▁ Har",
+ "it en",
+ "ite n",
+ "i ten",
+ "wi se",
+ "w ise",
+ "writ e",
+ "wr ite",
+ "w rite",
+ "ци и",
+ "р ы",
+ "Lin e",
+ "Li ne",
+ "L ine",
+ "ol o",
+ "o lo",
+ "▁ac cept",
+ "▁ accept",
+ "he ight",
+ "▁e lect",
+ "▁el ect",
+ "▁ele ct",
+ "▁ elect",
+ "el la",
+ "ell a",
+ "e lla",
+ "▁p å",
+ "Se lect",
+ "S elect",
+ "▁ ли",
+ "▁\\ <",
+ "▁ \\<",
+ "( (",
+ "▁I D",
+ "▁ ID",
+ "op s",
+ "o ps",
+ "ва н",
+ "в ан",
+ "i ó",
+ "T P",
+ "» ,",
+ "ne ction",
+ "nect ion",
+ "n ection",
+ "par ent",
+ "pa rent",
+ "▁M ag",
+ "▁Ma g",
+ "▁ Mag",
+ "Tab le",
+ "T able",
+ "O ver",
+ "▁n etwork",
+ "▁net work",
+ "▁ network",
+ "с по",
+ "▁as sign",
+ "▁ass ign",
+ "▁ assign",
+ "ig ger",
+ "igg er",
+ "ir m",
+ "i rm",
+ ") `",
+ "ot tom",
+ "ott om",
+ "otto m",
+ "be ta",
+ "bet a",
+ "b eta",
+ "▁d ell",
+ "▁de ll",
+ "▁del l",
+ "▁b ody",
+ "▁bo dy",
+ "▁bod y",
+ "▁ body",
+ "▁д а",
+ "▁ да",
+ "▁Y our",
+ "▁You r",
+ "▁ Your",
+ "▁f ue",
+ "▁fu e",
+ "▁p ackage",
+ "▁pack age",
+ "▁ package",
+ "▁l ight",
+ "▁lig ht",
+ "▁ light",
+ "▁* *",
+ "▁ **",
+ "M P",
+ "▁c ou",
+ "▁co u",
+ "▁ cou",
+ "ye s",
+ "y es",
+ ": \\",
+ "▁ Ч",
+ "▁m ention",
+ "▁men tion",
+ "▁ment ion",
+ "en sch",
+ "ens ch",
+ "▁d eg",
+ "▁de g",
+ "▁ deg",
+ "▁con vert",
+ "▁conver t",
+ "▁conv ert",
+ "▁ convert",
+ "▁D av",
+ "▁Da v",
+ "ad t",
+ "a dt",
+ "Res ult",
+ "th ough",
+ "▁b us",
+ "▁bu s",
+ "▁ bus",
+ "x y",
+ "▁s een",
+ "▁se en",
+ "▁see n",
+ "▁ seen",
+ "Al l",
+ "A ll",
+ "pu blic",
+ "pub lic",
+ "p ublic",
+ "iv ely",
+ "ive ly",
+ "ivel y",
+ "▁R ec",
+ "▁Re c",
+ "▁ Rec",
+ "▁H is",
+ "▁Hi s",
+ "si m",
+ "s im",
+ "▁f ör",
+ "▁fö r",
+ "▁ för",
+ "▁h istor",
+ "▁his tor",
+ "▁hi stor",
+ "▁hist or",
+ "▁ histor",
+ "▁s ett",
+ "▁se tt",
+ "▁set t",
+ "▁ sett",
+ "ra t",
+ "r at",
+ "ab led",
+ "able d",
+ "abl ed",
+ "a bled",
+ "▁» ,",
+ "▁ »,",
+ "go ogle",
+ "We b",
+ "W eb",
+ "é l",
+ "▁t itle",
+ "▁tit le",
+ "▁ title",
+ "▁J anu",
+ "▁Jan u",
+ "▁Ja nu",
+ "ј а",
+ "▁t ook",
+ "▁to ok",
+ "▁too k",
+ "id en",
+ "ide n",
+ "i den",
+ "s z",
+ "▁G et",
+ "▁Ge t",
+ "▁ Get",
+ "▁object s",
+ "▁ objects",
+ "▁com mon",
+ "▁comm on",
+ "▁ common",
+ "▁ch anges",
+ "▁change s",
+ "▁chang es",
+ "▁ changes",
+ "▁L ond",
+ "▁Lo nd",
+ "▁ Lond",
+ "▁ex tern",
+ "▁ext ern",
+ "▁j u",
+ "▁ ju",
+ "I s",
+ "▁av ailable",
+ "▁avail able",
+ "▁ available",
+ "tr i",
+ "t ri",
+ "▁m ás",
+ "▁má s",
+ "os a",
+ "o sa",
+ "B e",
+ "▁D ata",
+ "▁Da ta",
+ "▁Dat a",
+ "▁ Data",
+ "ur al",
+ "ura l",
+ "u ral",
+ "▁h om",
+ "▁ho m",
+ "▁ hom",
+ "▁acc ount",
+ "▁ac count",
+ "▁ account",
+ "o o",
+ "▁p erm",
+ "▁per m",
+ "▁pe rm",
+ "▁ perm",
+ "res pond",
+ "resp ond",
+ "y t",
+ "▁s end",
+ "▁se nd",
+ "▁sen d",
+ "▁ send",
+ "▁return s",
+ "▁ returns",
+ "iv id",
+ "ivi d",
+ "i vid",
+ "▁ex pla",
+ "▁exp la",
+ "▁expl a",
+ "í n",
+ "▁n or",
+ "▁no r",
+ "▁ nor",
+ "I f",
+ "▁F rom",
+ "▁Fr om",
+ "▁Fro m",
+ "▁ From",
+ "▁t arget",
+ "▁tar get",
+ "▁ target",
+ "fe ct",
+ "f ect",
+ "ен т",
+ "▁u it",
+ "▁ui t",
+ "▁ uit",
+ "▁J o",
+ "▁ Jo",
+ "▁vari ables",
+ "▁variable s",
+ "▁ variables",
+ "▁s eries",
+ "▁se ries",
+ "▁ser ies",
+ "▁serie s",
+ "▁ series",
+ "▁f unc",
+ "▁fun c",
+ "▁fu nc",
+ "▁ func",
+ "▁him self",
+ "▁ч а",
+ "▁ ча",
+ "an ti",
+ "ant i",
+ "▁a ch",
+ "▁ac h",
+ "▁ ach",
+ "ia log",
+ "ial og",
+ "i alog",
+ "▁s td",
+ "▁st d",
+ "▁ std",
+ "a e",
+ "▁f oot",
+ "▁fo ot",
+ "▁foo t",
+ "▁ foot",
+ "▁un ter",
+ "▁ unter",
+ "gr ess",
+ "gres s",
+ "gre ss",
+ "g ress",
+ "No t",
+ "N ot",
+ "ra d",
+ "r ad",
+ "f ér",
+ "▁u til",
+ "▁ut il",
+ "▁ util",
+ "or em",
+ "ore m",
+ "o rem",
+ "▁s ou",
+ "▁so u",
+ "op t",
+ "o pt",
+ "▁o g",
+ "▁ og",
+ "▁u ma",
+ "▁um a",
+ "▁ uma",
+ "it ar",
+ "ita r",
+ "i tar",
+ "▁O k",
+ "▁ Ok",
+ "ü ck",
+ "sq rt",
+ "▁a nt",
+ "▁an t",
+ "▁ ant",
+ "▁wer den",
+ "▁werd en",
+ "å r",
+ "}) ;",
+ "} );",
+ "▁P aris",
+ "▁Par is",
+ "▁Pa ris",
+ "▁ex ception",
+ "▁except ion",
+ "▁ exception",
+ "▁de term",
+ "▁det erm",
+ "▁V ol",
+ "▁Vo l",
+ "▁ Vol",
+ "▁S am",
+ "▁Sa m",
+ "▁ Sam",
+ "▁e ss",
+ "▁es s",
+ "▁ ess",
+ "li es",
+ "lie s",
+ "l ies",
+ "ion i",
+ "io ni",
+ "i oni",
+ "od ing",
+ "odi ng",
+ "o ding",
+ "id get",
+ "idge t",
+ "▁p ri",
+ "▁pr i",
+ "▁wh ether",
+ "▁whe ther",
+ "▁п од",
+ "▁по д",
+ "▁num bers",
+ "▁number s",
+ "▁ numbers",
+ "▁ ~",
+ "ev ent",
+ "even t",
+ "e vent",
+ "▁sh ows",
+ "▁show s",
+ "▁sho ws",
+ "at ures",
+ "atur es",
+ "ature s",
+ "atu res",
+ "▁h ouse",
+ "▁ho use",
+ "▁hous e",
+ "▁ house",
+ "▁f ace",
+ "▁fa ce",
+ "▁fac e",
+ "▁ face",
+ "▁s ię",
+ "▁si ę",
+ "viron ment",
+ "va n",
+ "v an",
+ "▁in cluding",
+ "▁includ ing",
+ "▁inclu ding",
+ "▁ including",
+ "▁< -",
+ "▁ <-",
+ "ti mes",
+ "time s",
+ "tim es",
+ "t imes",
+ "no w",
+ "n ow",
+ "▁p ur",
+ "▁pu r",
+ "▁ pur",
+ "if ier",
+ "ifi er",
+ "ifie r",
+ "▁e mp",
+ "▁em p",
+ "▁ emp",
+ "▁c la",
+ "▁cl a",
+ "▁ cla",
+ "mo n",
+ "m on",
+ "▁D as",
+ "▁Da s",
+ "ad y",
+ "a dy",
+ "▁в ід",
+ "▁ві д",
+ "▁ від",
+ "▁ ц",
+ "ab or",
+ "a bor",
+ "OS T",
+ "O ST",
+ "▁b and",
+ "▁ban d",
+ "▁ba nd",
+ "▁ band",
+ "▁ ú",
+ "▁ex actly",
+ "▁exact ly",
+ "ie rt",
+ "ier t",
+ "i ert",
+ "av ig",
+ "avi g",
+ "▁re du",
+ "▁r edu",
+ "▁red u",
+ "▁ redu",
+ "▁S E",
+ "▁ SE",
+ "lish ed",
+ "lis hed",
+ "l ished",
+ "B u",
+ "Mess age",
+ "M essage",
+ "ce ll",
+ "cel l",
+ "c ell",
+ "ful ly",
+ "full y",
+ "▁s v",
+ "▁ sv",
+ "▁m akes",
+ "▁ma kes",
+ "▁make s",
+ "▁mak es",
+ "po l",
+ "p ol",
+ "▁re quired",
+ "▁require d",
+ "▁requ ired",
+ "▁ required",
+ "fer rer",
+ "▁p ers",
+ "▁per s",
+ "▁pe rs",
+ "▁ pers",
+ "▁m i",
+ "▁ mi",
+ "F I",
+ "▁Pa ul",
+ "▁ Paul",
+ "▁U I",
+ "▁ UI",
+ "▁B el",
+ "▁Be l",
+ "▁ Bel",
+ "in c",
+ "i nc",
+ "▁cont ains",
+ "▁contain s",
+ "▁ contains",
+ "O ut",
+ "as ure",
+ "p u",
+ "ot o",
+ "o to",
+ "▁g ame",
+ "▁ga me",
+ "▁gam e",
+ "▁ game",
+ "z n",
+ "▁W hy",
+ "▁Wh y",
+ "▁ Why",
+ "or ith",
+ "ori th",
+ "bi g",
+ "b ig",
+ "ки й",
+ "sig ma",
+ "s igma",
+ "▁qu ite",
+ "▁qui te",
+ "▁quit e",
+ "▁j ed",
+ "▁je d",
+ "▁ jed",
+ "re c",
+ "r ec",
+ "▁S QL",
+ "▁ SQL",
+ "б е",
+ "▁M art",
+ "▁Mar t",
+ "▁Ma rt",
+ "▁ Mart",
+ "y a",
+ "▁sch ool",
+ "▁ school",
+ "▁sim ply",
+ "▁simp ly",
+ "▁simpl y",
+ "▁v or",
+ "▁vo r",
+ "▁ vor",
+ "▁d ouble",
+ "▁dou ble",
+ "▁doub le",
+ "▁ double",
+ "ра в",
+ "▁S tr",
+ "▁St r",
+ "▁ Str",
+ "ie m",
+ "i em",
+ "▁al bum",
+ "▁alb um",
+ "▁ album",
+ "▁re sol",
+ "▁res ol",
+ "▁ resol",
+ "▁d ei",
+ "▁de i",
+ "▁W ik",
+ "▁Wi k",
+ "▁ Wik",
+ "▁a w",
+ "▁ aw",
+ "um b",
+ "u mb",
+ "ol s",
+ "o ls",
+ "▁* /",
+ "▁ */",
+ "▁z e",
+ "▁ ze",
+ "▁a nim",
+ "▁an im",
+ "▁ani m",
+ "▁ anim",
+ "/ >",
+ "ri s",
+ "r is",
+ "re sh",
+ "res h",
+ "r esh",
+ "N o",
+ "ique s",
+ "iqu es",
+ "i ques",
+ "cur rent",
+ "curr ent",
+ "c urrent",
+ "▁per iod",
+ "▁peri od",
+ "▁ period",
+ "▁A pril",
+ "▁Ap ril",
+ "▁st ore",
+ "▁stor e",
+ "▁sto re",
+ "▁ store",
+ "', '",
+ "' ,'",
+ "▁S et",
+ "▁Se t",
+ "▁ Set",
+ "= {",
+ "ach ed",
+ "ac hed",
+ "ache d",
+ "a ched",
+ "▁M al",
+ "▁Ma l",
+ "▁ Mal",
+ "▁P al",
+ "▁Pa l",
+ "▁ Pal",
+ "an tes",
+ "ant es",
+ "ante s",
+ "ate rial",
+ "ater ial",
+ "▁work ed",
+ "▁wor ked",
+ "le q",
+ "l eq",
+ "ore ferrer",
+ "▁h appen",
+ "▁ha ppen",
+ "▁happ en",
+ "▁b ox",
+ "▁bo x",
+ "▁ box",
+ "ne y",
+ "n ey",
+ "▁c lose",
+ "▁cl ose",
+ "▁clos e",
+ "▁clo se",
+ "▁ close",
+ "▁g ran",
+ "▁gr an",
+ "▁gra n",
+ "▁l ie",
+ "▁li e",
+ "▁ lie",
+ "▁i r",
+ "▁ ir",
+ "▁ex pected",
+ "▁exp ected",
+ "▁expect ed",
+ "▁ expected",
+ "▁д ля",
+ "cl ick",
+ "cli ck",
+ "clic k",
+ "c lick",
+ "ș i",
+ "▁p arte",
+ "▁par te",
+ "▁part e",
+ "og n",
+ "o gn",
+ "▁F orm",
+ "▁For m",
+ "▁Fo rm",
+ "▁ Form",
+ "▁m emb",
+ "▁me mb",
+ "▁mem b",
+ "▁p lan",
+ "▁pl an",
+ "▁pla n",
+ "▁ plan",
+ "▁te am",
+ "▁tea m",
+ "▁ team",
+ "] [",
+ "▁c ommun",
+ "▁com mun",
+ "▁comm un",
+ "or ry",
+ "orr y",
+ "en cy",
+ "enc y",
+ "g l",
+ "in ary",
+ "ina ry",
+ "inar y",
+ "cd ot",
+ "c dot",
+ "^ \\",
+ "▁F irst",
+ "▁Fir st",
+ "▁ First",
+ "an der",
+ "and er",
+ "ande r",
+ "a nder",
+ "▁D ec",
+ "▁De c",
+ "▁ Dec",
+ "re quest",
+ "req uest",
+ "ст ва",
+ "ств а",
+ "с тва",
+ "▁str ucture",
+ "▁struct ure",
+ "▁ structure",
+ "▁| |",
+ "▁ ||",
+ "▁C omp",
+ "▁Com p",
+ "▁Co mp",
+ "▁ Comp",
+ "act ory",
+ "actor y",
+ "▁M il",
+ "▁Mi l",
+ "▁ Mil",
+ "▁S ome",
+ "▁So me",
+ "▁Som e",
+ "▁ Some",
+ "St ream",
+ "▁as sum",
+ "▁ass um",
+ "ue n",
+ "u en",
+ "▁w ords",
+ "▁word s",
+ "▁wor ds",
+ "▁ words",
+ "▁Se ptember",
+ "▁Sept ember",
+ "▁К о",
+ "▁ Ко",
+ "▁d ays",
+ "▁da ys",
+ "▁day s",
+ "▁ days",
+ "or ies",
+ "ori es",
+ "orie s",
+ "o ries",
+ "ста в",
+ "s m",
+ "vi n",
+ "v in",
+ "part ial",
+ "▁par ent",
+ "▁pa rent",
+ "▁pare nt",
+ "▁ parent",
+ "o j",
+ "ни и",
+ "! \"",
+ "ug in",
+ "u gin",
+ "▁W indows",
+ "▁Wind ows",
+ "▁Window s",
+ "▁ Windows",
+ "E d",
+ ": }",
+ "▁ q",
+ "▁b en",
+ "▁be n",
+ "▁ ben",
+ "ia na",
+ "ian a",
+ "i ana",
+ "▁l abel",
+ "▁la bel",
+ "▁lab el",
+ "▁ label",
+ "st ate",
+ "sta te",
+ "stat e",
+ "ut ed",
+ "ute d",
+ "u ted",
+ "▁( )",
+ "▁ ()",
+ "▁с во",
+ "▁e dit",
+ "▁ed it",
+ "▁ edit",
+ "ur ing",
+ "uri ng",
+ "u ring",
+ "▁N S",
+ "▁ NS",
+ "▁J ahr",
+ "▁Jah r",
+ "▁Ja hr",
+ "▁prov ide",
+ "H e",
+ "▁Y es",
+ "▁Ye s",
+ "▁ Yes",
+ "an el",
+ "ane l",
+ "a nel",
+ "en ame",
+ "ena me",
+ "e name",
+ "▁D on",
+ "▁Do n",
+ "▁ Don",
+ "is k",
+ "i sk",
+ "gr a",
+ "g ra",
+ "el ij",
+ "eli j",
+ "e lij",
+ "▁r oot",
+ "▁ro ot",
+ "▁ root",
+ "* /",
+ "▁F re",
+ "▁Fr e",
+ "▁ Fre",
+ "▁M or",
+ "▁Mo r",
+ "▁ Mor",
+ "us ed",
+ "use d",
+ "u sed",
+ "ran ge",
+ "r ange",
+ "▁t amb",
+ "▁ta mb",
+ "▁tam b",
+ "▁mod ule",
+ "▁ module",
+ "▁d irectory",
+ "▁direct ory",
+ "▁director y",
+ "▁ directory",
+ "ound s",
+ "oun ds",
+ "Act ivity",
+ "Activ ity",
+ "▁m u",
+ "▁ mu",
+ "in fo",
+ "inf o",
+ "▁f ree",
+ "▁fr ee",
+ "▁fre e",
+ "▁ free",
+ "or ge",
+ "org e",
+ "ta b",
+ "t ab",
+ ") =",
+ "la ng",
+ "lan g",
+ "l ang",
+ "▁о с",
+ "▁ ос",
+ "▁F ROM",
+ "▁FR OM",
+ "▁ FROM",
+ "▁en ter",
+ "▁ent er",
+ "▁ enter",
+ "▁bec ame",
+ "id ae",
+ "ida e",
+ "х и",
+ "▁St ates",
+ "▁State s",
+ "▁Stat es",
+ "▁Sta tes",
+ "ver se",
+ "vers e",
+ "▁ex pl",
+ "▁exp l",
+ "▁ expl",
+ "yn t",
+ "y nt",
+ "U N",
+ "e e",
+ "en dent",
+ "end ent",
+ "enden t",
+ "ende nt",
+ "▁m aking",
+ "▁ma king",
+ "▁mak ing",
+ "▁ making",
+ "▁\" $",
+ "un i",
+ "u ni",
+ "qu ence",
+ "▁l ui",
+ "▁lu i",
+ "H T",
+ "▁us es",
+ "▁use s",
+ "▁ uses",
+ "zi e",
+ "z ie",
+ "ni a",
+ "n ia",
+ "Cont ent",
+ "▁C ount",
+ "▁Co unt",
+ "▁Coun t",
+ "▁Cou nt",
+ "▁ Count",
+ "▁stand ard",
+ "▁ standard",
+ "EN T",
+ "E NT",
+ "▁ко н",
+ "▁к он",
+ "▁ кон",
+ "fo rt",
+ "for t",
+ "f ort",
+ "ad as",
+ "ada s",
+ "a das",
+ "з у",
+ "S ystem",
+ "▁S w",
+ "▁ Sw",
+ "▁e ver",
+ "▁ev er",
+ "▁ ever",
+ "L O",
+ "▁cor respond",
+ "▁P o",
+ "▁ Po",
+ "ar gin",
+ "arg in",
+ "к т",
+ "і й",
+ "▁re main",
+ "▁rem ain",
+ "ci o",
+ "c io",
+ "▁act ual",
+ "▁actu al",
+ "▁ actual",
+ "ст у",
+ "с ту",
+ "▁s ind",
+ "▁si nd",
+ "▁sin d",
+ "▁P e",
+ "▁ Pe",
+ "▁ch anged",
+ "▁change d",
+ "▁chang ed",
+ "▁ changed",
+ "▁N ote",
+ "▁No te",
+ "▁Not e",
+ "▁ Note",
+ "sk ie",
+ "ski e",
+ "s kie",
+ "▁famil y",
+ "▁fam ily",
+ "▁ family",
+ "it à",
+ "co s",
+ "c os",
+ "tx t",
+ "t xt",
+ "ke r",
+ "k er",
+ "ce ed",
+ "c eed",
+ "▁a rr",
+ "▁ar r",
+ "▁ arr",
+ "▁c am",
+ "▁ca m",
+ "▁ cam",
+ "iz er",
+ "ize r",
+ "i zer",
+ "▁D an",
+ "▁Da n",
+ "▁ Dan",
+ "he l",
+ "h el",
+ "ic ult",
+ "icul t",
+ "H P",
+ "il er",
+ "ile r",
+ "i ler",
+ "▁S al",
+ "▁Sa l",
+ "▁ Sal",
+ "▁con nection",
+ "▁conne ction",
+ "▁connect ion",
+ "▁conn ection",
+ "▁ connection",
+ "us ion",
+ "k n",
+ "R I",
+ "▁v om",
+ "▁vo m",
+ "List ener",
+ "▁ ö",
+ "▁d im",
+ "▁di m",
+ "▁ dim",
+ "▁p ress",
+ "▁pr ess",
+ "▁pre ss",
+ "▁pres s",
+ "▁ press",
+ "▁e sc",
+ "▁es c",
+ "▁ esc",
+ "▁T ry",
+ "▁Tr y",
+ "▁ Try",
+ "at alog",
+ "ata log",
+ "atal og",
+ "▁th anks",
+ "▁than ks",
+ "▁thank s",
+ "D O",
+ "▁w ritten",
+ "▁writ ten",
+ "▁wr itten",
+ "▁ written",
+ "di r",
+ "d ir",
+ "re w",
+ "r ew",
+ "▁f ire",
+ "▁fi re",
+ "▁fir e",
+ "▁ fire",
+ "▁N ach",
+ "▁Na ch",
+ "▁ á",
+ "en c",
+ "e nc",
+ "▁or igin",
+ "▁orig in",
+ "▁ origin",
+ "▁Nov ember",
+ "▁} ;",
+ "▁ };",
+ "Co unt",
+ "C ount",
+ "▁З а",
+ "▁ За",
+ "▁g raph",
+ "▁gr aph",
+ "▁gra ph",
+ "▁ graph",
+ "▁m is",
+ "▁mi s",
+ "▁ mis",
+ "▁Ex ternal",
+ "▁Ext ernal",
+ "▁Extern al",
+ "▁Externa l",
+ "▁ External",
+ "▁o ptions",
+ "▁option s",
+ "▁opt ions",
+ "▁ options",
+ "▁U RL",
+ "▁ URL",
+ "▁p hp",
+ "▁ph p",
+ "▁ php",
+ "▁in tegr",
+ "▁int egr",
+ "▁inte gr",
+ "▁ integr",
+ "Con fig",
+ "Conf ig",
+ "▁T ext",
+ "▁Te xt",
+ "▁Tex t",
+ "▁ Text",
+ "in ner",
+ "inn er",
+ "▁c rit",
+ "▁cr it",
+ "▁cri t",
+ "▁ crit",
+ ", ”",
+ "▁t og",
+ "▁to g",
+ "$ $",
+ "no f",
+ "n of",
+ "▁s es",
+ "▁se s",
+ "üh r",
+ "ü hr",
+ "▁S ince",
+ "▁Sin ce",
+ "▁ Since",
+ "De s",
+ "D es",
+ "ub e",
+ "u be",
+ "▁s ection",
+ "▁se ction",
+ "▁sec tion",
+ "▁sect ion",
+ "▁ section",
+ "▁g i",
+ "▁ gi",
+ "fo rd",
+ "for d",
+ "f ord",
+ "▁A ss",
+ "▁As s",
+ "▁ Ass",
+ "ain er",
+ "ai ner",
+ "aine r",
+ "a iner",
+ "tt p",
+ "t tp",
+ "▁be hav",
+ "▁beh av",
+ "port s",
+ "por ts",
+ "dr aw",
+ "dra w",
+ "d raw",
+ "Th is",
+ "T his",
+ "ran ch",
+ "r anch",
+ "in ding",
+ "ind ing",
+ "indi ng",
+ "▁e stab",
+ "▁est ab",
+ "▁es tab",
+ "▁esta b",
+ "▁ob tain",
+ "▁obt ain",
+ "ri ch",
+ "ric h",
+ "r ich",
+ "li cit",
+ "lic it",
+ "е в",
+ "▁qu al",
+ "▁q ual",
+ "▁ qual",
+ "▁z a",
+ "▁ za",
+ "▁h ar",
+ "▁ha r",
+ "▁ har",
+ "▁f ac",
+ "▁fa c",
+ "▁ fac",
+ "aa r",
+ "a ar",
+ "je t",
+ "j et",
+ "ic les",
+ "icle s",
+ "i cles",
+ "▁A us",
+ "▁Au s",
+ "▁ Aus",
+ "▁h or",
+ "▁ho r",
+ "▁ hor",
+ "▁re mov",
+ "▁rem ov",
+ "▁w ie",
+ "▁ wie",
+ "Cl ient",
+ "C lient",
+ "▁n atur",
+ "▁nat ur",
+ "hi p",
+ "h ip",
+ "Su b",
+ "S ub",
+ "▁r andom",
+ "▁ran dom",
+ "▁rand om",
+ "▁ random",
+ "D F",
+ "▁a rea",
+ "▁are a",
+ "▁ar ea",
+ "▁ area",
+ "ta g",
+ "t ag",
+ "P r",
+ "▁I tal",
+ "▁It al",
+ "▁ Ital",
+ "▁r oku",
+ "▁ro ku",
+ "▁rok u",
+ "no follow",
+ "nof ollow",
+ "* }",
+ "▁o thers",
+ "▁other s",
+ "▁l imit",
+ "▁li mit",
+ "▁lim it",
+ "▁ limit",
+ "▁s il",
+ "▁si l",
+ "▁ sil",
+ "▁s av",
+ "▁sa v",
+ "▁o ften",
+ "▁of ten",
+ "▁oft en",
+ "▁re nder",
+ "▁r ender",
+ "▁ren der",
+ "▁rend er",
+ "▁rende r",
+ "▁ render",
+ "D B",
+ "▁M c",
+ "▁ Mc",
+ "▁z ijn",
+ "▁zij n",
+ "же н",
+ "ж ен",
+ "▁t ag",
+ "▁ta g",
+ "▁ tag",
+ "min g",
+ "mi ng",
+ "m ing",
+ "li chen",
+ "lic hen",
+ "lich en",
+ "liche n",
+ "l ichen",
+ "pa ck",
+ "p ack",
+ "▁A g",
+ "▁ Ag",
+ "▁s ense",
+ "▁sens e",
+ "▁sen se",
+ "p g",
+ "Met hod",
+ "M ethod",
+ "ag ed",
+ "age d",
+ "a ged",
+ "á g",
+ "ł a",
+ "▁inter est",
+ "▁inte rest",
+ "▁as soci",
+ "▁ass oci",
+ "▁ associ",
+ "vol ution",
+ "▁em pty",
+ "▁emp ty",
+ "▁ empty",
+ "ic he",
+ "ich e",
+ "i che",
+ "▁g ro",
+ "▁gr o",
+ "▁ gro",
+ "▁t ypes",
+ "▁type s",
+ "▁typ es",
+ "▁ty pes",
+ "▁ types",
+ "▁S ie",
+ "▁Si e",
+ "In ter",
+ "Int er",
+ "▁n oreferrer",
+ "▁ noreferrer",
+ "▁g ives",
+ "▁giv es",
+ "▁give s",
+ "▁gi ves",
+ "ha l",
+ "h al",
+ "▁s ave",
+ "▁sa ve",
+ "▁sav e",
+ "▁ save",
+ "▁f ont",
+ "▁fo nt",
+ "▁fon t",
+ "▁ font",
+ "ru ction",
+ "ruct ion",
+ "S cript",
+ "▁a lla",
+ "▁al la",
+ "▁all a",
+ "▁ alla",
+ "▁s ays",
+ "▁sa ys",
+ "▁say s",
+ "▁f u",
+ "▁ fu",
+ "ap e",
+ "a pe",
+ "▁l anguage",
+ "▁ language",
+ "ig er",
+ "ige r",
+ "i ger",
+ "▁K ing",
+ "▁Ki ng",
+ "▁Kin g",
+ "bo r",
+ "b or",
+ "u v",
+ "▁s hall",
+ "▁sh all",
+ "▁E urope",
+ "▁Europ e",
+ "▁Euro pe",
+ "▁Eur ope",
+ "▁ Europe",
+ "▁ein em",
+ "▁eine m",
+ "▁w ater",
+ "▁wa ter",
+ "▁wat er",
+ "▁ water",
+ "▁g overn",
+ "▁go vern",
+ "▁gover n",
+ "an z",
+ "at ors",
+ "ator s",
+ "ato rs",
+ "▁mon th",
+ "▁mo nth",
+ "▁mont h",
+ "▁ month",
+ "y e",
+ "▁import ant",
+ "▁ important",
+ "at z",
+ "a tz",
+ "fir st",
+ "f irst",
+ "▁Tr ans",
+ "▁Tra ns",
+ "▁ Trans",
+ "▁M ad",
+ "▁Ma d",
+ "▁ Mad",
+ "▁b ra",
+ "▁br a",
+ "▁ bra",
+ "ik a",
+ "i ka",
+ "▁S aint",
+ "▁Sa int",
+ "▁Sain t",
+ "▁ Saint",
+ "or ia",
+ "ori a",
+ "o ria",
+ "kr e",
+ "k re",
+ "em ents",
+ "ement s",
+ "emen ts",
+ "e ments",
+ "▁B en",
+ "▁Be n",
+ "▁ Ben",
+ "la v",
+ "l av",
+ "▁ad min",
+ "▁adm in",
+ "▁ admin",
+ "▁H en",
+ "▁He n",
+ "▁ Hen",
+ "ri l",
+ "r il",
+ "▁S m",
+ "▁ Sm",
+ "ca t",
+ "c at",
+ "▁Re fer",
+ "▁Ref er",
+ "▁ Ш",
+ "▁p ract",
+ "▁pr act",
+ "▁pra ct",
+ "▁prac t",
+ "▁P at",
+ "▁Pa t",
+ "▁ Pat",
+ "▁G re",
+ "▁Gr e",
+ "▁ Gre",
+ "▁you ng",
+ "▁yo ung",
+ "▁In ter",
+ "▁Int er",
+ "▁ Inter",
+ "om a",
+ "o ma",
+ "te ger",
+ "ib ility",
+ "ibil ity",
+ "▁param eters",
+ "▁parameter s",
+ "▁paramet ers",
+ "▁ parameters",
+ "▁every thing",
+ "da t",
+ "d at",
+ "ur op",
+ "uro p",
+ "u rop",
+ "ole an",
+ "o lean",
+ "▁return ed",
+ "▁C lass",
+ "▁Cl ass",
+ "▁Cla ss",
+ "▁ Class",
+ "ac y",
+ "a cy",
+ "## ##",
+ "▁p ř",
+ "▁f older",
+ "▁fol der",
+ "▁fo lder",
+ "▁ folder",
+ "▁k on",
+ "▁ko n",
+ "▁ kon",
+ "▁gu ess",
+ "g t",
+ "je n",
+ "j en",
+ "an nel",
+ "ann el",
+ "anne l",
+ "ic on",
+ "ico n",
+ "i con",
+ "▁c omb",
+ "▁com b",
+ "▁co mb",
+ "▁ comb",
+ "ri ct",
+ "ric t",
+ "r ict",
+ "▁h ij",
+ "▁hi j",
+ "▁aut hor",
+ "▁auth or",
+ "▁ author",
+ "se e",
+ "s ee",
+ "he re",
+ "her e",
+ "h ere",
+ "st ra",
+ "str a",
+ "s tra",
+ "▁ent ire",
+ "▁direct ly",
+ "ra ft",
+ "raf t",
+ "r aft",
+ "he et",
+ "es ter",
+ "est er",
+ "este r",
+ "e ster",
+ "▁м и",
+ "▁ ми",
+ "▁m ass",
+ "▁ma ss",
+ "▁mas s",
+ "▁ mass",
+ "un tu",
+ "unt u",
+ "▁u sers",
+ "▁us ers",
+ "▁use rs",
+ "▁user s",
+ "▁ users",
+ "ch i",
+ "c hi",
+ "P E",
+ "▁com ponent",
+ "▁compon ent",
+ "▁ component",
+ "Cl ick",
+ "C lick",
+ "At t",
+ "A tt",
+ "▁s obre",
+ "▁so bre",
+ "▁sob re",
+ "an ds",
+ "and s",
+ "▁H ol",
+ "▁Ho l",
+ "▁ Hol",
+ "▁S ant",
+ "▁San t",
+ "▁Sa nt",
+ "or i",
+ "o ri",
+ "▁s ua",
+ "▁su a",
+ "st d",
+ "s td",
+ "ent ic",
+ "enti c",
+ "C C",
+ "▁fil ter",
+ "▁ filter",
+ "S QL",
+ "▁G od",
+ "▁Go d",
+ "A t",
+ "▁м у",
+ "▁ му",
+ "▁per formance",
+ "▁perform ance",
+ "del ta",
+ "d elta",
+ "an de",
+ "and e",
+ "a nde",
+ "am er",
+ "ame r",
+ "a mer",
+ "д ы",
+ "▁c ult",
+ "▁cu lt",
+ "▁cul t",
+ "▁N or",
+ "▁No r",
+ "bu t",
+ "b ut",
+ "▁l ik",
+ "▁li k",
+ "▁ lik",
+ "**** ****",
+ "ст вен",
+ "ств ен",
+ "стве н",
+ "▁com me",
+ "▁comm e",
+ "▁d r",
+ "▁ dr",
+ "im er",
+ "ime r",
+ "i mer",
+ "or din",
+ "ord in",
+ "▁cond ition",
+ "▁ condition",
+ "es te",
+ "est e",
+ "e ste",
+ "( [",
+ "F F",
+ "ть ся",
+ "im o",
+ "i mo",
+ "ra b",
+ "r ab",
+ "і ль",
+ "▁h alf",
+ "▁hal f",
+ "▁ half",
+ "ea ch",
+ "e ach",
+ "Di s",
+ "D is",
+ "▁r ows",
+ "▁ro ws",
+ "▁row s",
+ "▁ rows",
+ "▁h on",
+ "▁ho n",
+ "▁ hon",
+ "▁t ogether",
+ "▁tog ether",
+ "▁ și",
+ "me di",
+ "med i",
+ "m edi",
+ "ag n",
+ "a gn",
+ "al led",
+ "all ed",
+ "alle d",
+ "▁v ill",
+ "▁vi ll",
+ "▁vil l",
+ "IN G",
+ "I NG",
+ "id den",
+ "idd en",
+ "▁d raw",
+ "▁dr aw",
+ "▁dra w",
+ "▁ draw",
+ "yn tax",
+ "ynt ax",
+ "▁att empt",
+ "UR L",
+ "U RL",
+ "pos e",
+ "po se",
+ "p ose",
+ "▁in dic",
+ "▁ind ic",
+ "ни ка",
+ "ник а",
+ "▁Eng lish",
+ "▁ English",
+ "▁d éc",
+ "▁dé c",
+ "▁ne eds",
+ "▁need s",
+ "▁n ormal",
+ "▁nor mal",
+ "▁norm al",
+ "▁ normal",
+ "ur t",
+ "u rt",
+ "▁н о",
+ "▁ но",
+ "}} \\",
+ "} }\\",
+ "la st",
+ "las t",
+ "l ast",
+ "▁F in",
+ "▁ Fin",
+ "▁F ebru",
+ "▁Fe bru",
+ "▁Feb ru",
+ "il a",
+ "i la",
+ "▁c ountry",
+ "▁count ry",
+ "▁coun try",
+ "▁ country",
+ "▁field s",
+ "▁fiel ds",
+ "▁ fields",
+ "▁m ax",
+ "▁ma x",
+ "▁ max",
+ "lé s",
+ "l és",
+ "ow ie",
+ "owi e",
+ "o wie",
+ "▁de ux",
+ "▁bu ilt",
+ "▁ built",
+ "▁M ain",
+ "▁Ma in",
+ "▁Mai n",
+ "▁ Main",
+ "▁c amp",
+ "▁cam p",
+ "▁ca mp",
+ "▁ camp",
+ "iv o",
+ "i vo",
+ "iv a",
+ "i va",
+ "ic y",
+ "i cy",
+ "zi one",
+ "z ione",
+ "No de",
+ "N ode",
+ "▁: )",
+ "▁ :)",
+ "▁am ong",
+ "▁O b",
+ "▁ Ob",
+ "▁c ases",
+ "▁case s",
+ "▁cas es",
+ "▁ cases",
+ "ha ps",
+ "h aps",
+ "se rs",
+ "ser s",
+ "s ers",
+ "ar ter",
+ "art er",
+ "arte r",
+ "śc i",
+ "ś ci",
+ "▁it er",
+ "▁i ter",
+ "▁ iter",
+ "▁n amed",
+ "▁name d",
+ "▁na med",
+ "▁nam ed",
+ "▁ named",
+ "ex ec",
+ "exe c",
+ "▁se ason",
+ "▁sea son",
+ "▁ season",
+ "to t",
+ "t ot",
+ "= >",
+ "gr aph",
+ "gra ph",
+ "g raph",
+ "▁n il",
+ "▁ni l",
+ "▁ nil",
+ "ac ional",
+ "acion al",
+ "aci onal",
+ "▁N ULL",
+ "▁ NULL",
+ "▁spe cial",
+ "▁spec ial",
+ "▁ special",
+ "ст е",
+ "с те",
+ "cs s",
+ "c ss",
+ "▁\\ (",
+ "v s",
+ "ae l",
+ "a el",
+ "▁c ity",
+ "▁ci ty",
+ "▁cit y",
+ "▁ city",
+ "ov a",
+ "o va",
+ "▁art icle",
+ "▁ article",
+ "▁S outh",
+ "▁So uth",
+ "▁Sou th",
+ "Act ion",
+ "Ac tion",
+ "A ction",
+ "ç a",
+ "sp ring",
+ "spr ing",
+ "s pring",
+ "it ude",
+ "itu de",
+ "itud e",
+ "▁com plex",
+ "▁comp lex",
+ "▁comple x",
+ "▁compl ex",
+ "▁ complex",
+ "▁ч то",
+ "bu ild",
+ "g amma",
+ "▁E nt",
+ "▁En t",
+ "▁ Ent",
+ "ie rs",
+ "ier s",
+ "i ers",
+ "' .",
+ "ca r",
+ "c ar",
+ "ap ache",
+ "apa che",
+ "in gen",
+ "ing en",
+ "inge n",
+ "In put",
+ ": ",
+ "▁d ynam",
+ "▁dy nam",
+ "al ls",
+ "all s",
+ "sh ow",
+ "s how",
+ "| \\",
+ "▁w ird",
+ "▁wir d",
+ "B ar",
+ "al th",
+ "alt h",
+ "mod el",
+ "mo del",
+ "mode l",
+ "m odel",
+ "Tr ans",
+ "Tra ns",
+ "Ro w",
+ "R ow",
+ "ab e",
+ "a be",
+ "▁l ib",
+ "▁li b",
+ "▁ lib",
+ "nu ll",
+ "n ull",
+ "ra gment",
+ "rag ment",
+ "▁St ate",
+ "▁Stat e",
+ "▁Sta te",
+ "▁ State",
+ "▁l aw",
+ "▁la w",
+ "▁ law",
+ "Fr ame",
+ "F rame",
+ "▁L o",
+ "▁ Lo",
+ "ge b",
+ "g eb",
+ "}$ .",
+ "} $.",
+ "▁ne eded",
+ "▁need ed",
+ "▁con tr",
+ "▁cont r",
+ "▁ contr",
+ "ar ies",
+ "ari es",
+ "arie s",
+ "a ries",
+ "▁s creen",
+ "▁sc reen",
+ "▁scr een",
+ "▁ screen",
+ "y r",
+ "m m",
+ "▁sh own",
+ "▁show n",
+ "▁sho wn",
+ "▁b ad",
+ "▁ba d",
+ "▁ bad",
+ "▁c ast",
+ "▁cas t",
+ "▁ca st",
+ "▁ cast",
+ "▁T est",
+ "▁Te st",
+ "▁ Test",
+ "▁A uf",
+ "▁Au f",
+ "▁qu ant",
+ "▁quan t",
+ "▁ quant",
+ "ig a",
+ "i ga",
+ "▁re n",
+ "▁r en",
+ "▁ ren",
+ "▁M ac",
+ "▁Ma c",
+ "▁ Mac",
+ "▁trans form",
+ "▁ transform",
+ "▁d ifference",
+ "▁dif ference",
+ "▁differ ence",
+ "▁t it",
+ "▁ti t",
+ "▁ tit",
+ "T E",
+ "▁st ep",
+ "▁ste p",
+ "▁ step",
+ "▁c apt",
+ "▁cap t",
+ "▁ca pt",
+ "▁ capt",
+ "▁col lection",
+ "▁coll ection",
+ "▁collect ion",
+ "▁colle ction",
+ "▁ collection",
+ "iction ary",
+ "▁T om",
+ "▁To m",
+ "▁ Tom",
+ "ri er",
+ "rie r",
+ "r ier",
+ "▁m ove",
+ "▁mov e",
+ "▁mo ve",
+ "▁ move",
+ "co pe",
+ "cop e",
+ "c ope",
+ "or ds",
+ "ord s",
+ "▁fur ther",
+ "▁column s",
+ "▁ columns",
+ "▁L in",
+ "▁Li n",
+ "▁ Lin",
+ "▁f ixed",
+ "▁fix ed",
+ "▁ fixed",
+ "▁child ren",
+ "▁ children",
+ "M S",
+ "m o",
+ "un a",
+ "u na",
+ "▁ind ivid",
+ "tt y",
+ "t ty",
+ "as te",
+ "ast e",
+ "a ste",
+ "sr c",
+ "s rc",
+ "mat ch",
+ "m atch",
+ "w i",
+ "▁ х",
+ "▁д и",
+ "▁ ди",
+ "▁o rd",
+ "▁or d",
+ "▁ ord",
+ "iv ing",
+ "ivi ng",
+ "i ving",
+ "▁B ro",
+ "▁Br o",
+ "▁ Bro",
+ "▁al most",
+ "▁P res",
+ "▁Pr es",
+ "▁Pre s",
+ "▁ Pres",
+ "re ci",
+ "rec i",
+ "ar ing",
+ "ari ng",
+ "arin g",
+ "a ring",
+ "▁/ //",
+ "▁// /",
+ "▁ ///",
+ "ет ся",
+ "е тся",
+ "▁s ig",
+ "▁si g",
+ "▁ sig",
+ "lig ht",
+ "l ight",
+ "▁R ed",
+ "▁Re d",
+ "▁ Red",
+ "▁sugg est",
+ "▁sug gest",
+ "ol f",
+ "▁é té",
+ "▁ét é",
+ "▁ été",
+ "is ation",
+ "isa tion",
+ "isat ion",
+ "з на",
+ "Ne w",
+ "N ew",
+ "ст ан",
+ "ста н",
+ "с тан",
+ "L A",
+ "un icip",
+ "unic ip",
+ "uni cip",
+ "▁fig ure",
+ "▁figur e",
+ "▁ figure",
+ "m t",
+ "ia le",
+ "ial e",
+ "i ale",
+ "▁c atch",
+ "▁cat ch",
+ "▁ catch",
+ "de fault",
+ "def ault",
+ "▁t ele",
+ "▁te le",
+ "▁tel e",
+ "▁ tele",
+ "▁m atter",
+ "▁mat ter",
+ "ca st",
+ "cas t",
+ "c ast",
+ "▁R ich",
+ "▁Ric h",
+ "▁Ri ch",
+ "▁ Rich",
+ "▁hand le",
+ "▁ handle",
+ "val u",
+ "va lu",
+ "v alu",
+ "$ -",
+ "о б",
+ "▁j son",
+ "▁js on",
+ "▁ json",
+ "Cre ate",
+ "C reate",
+ "▁ex am",
+ "ал ь",
+ "а ль",
+ "ю т",
+ "or ed",
+ "ore d",
+ "o red",
+ "id os",
+ "ido s",
+ "ap pend",
+ "app end",
+ "appen d",
+ "appe nd",
+ "▁Ar ray",
+ "▁Arr ay",
+ "▁ Array",
+ "к с",
+ "} [",
+ "ri ve",
+ "riv e",
+ "r ive",
+ "▁c lub",
+ "▁cl ub",
+ "▁ club",
+ "ma nn",
+ "man n",
+ "m ann",
+ "▁e ste",
+ "▁est e",
+ "▁es te",
+ "▁ este",
+ "es ta",
+ "est a",
+ "e sta",
+ "▁G i",
+ "▁ Gi",
+ "▁J ap",
+ "▁Ja p",
+ "▁N ame",
+ "▁Na me",
+ "▁Nam e",
+ "▁ Name",
+ "Col umn",
+ "ou ps",
+ "oup s",
+ "o ups",
+ "is mo",
+ "ism o",
+ "▁C ity",
+ "▁Ci ty",
+ "▁Cit y",
+ "▁ City",
+ "▁class es",
+ "▁classe s",
+ "▁ classes",
+ "▁in fl",
+ "▁inf l",
+ "▁ infl",
+ "h l",
+ "ро м",
+ "р ом",
+ "▁ad ding",
+ "▁add ing",
+ "▁ adding",
+ "▁f ail",
+ "▁fa il",
+ "▁ fail",
+ "x x",
+ "õ es",
+ "S c",
+ "ut il",
+ "uti l",
+ "u til",
+ "▁l ocation",
+ "▁lo cation",
+ "▁loc ation",
+ "▁ location",
+ "le ge",
+ "leg e",
+ "l ege",
+ "ag o",
+ "a go",
+ "▁pro perties",
+ "▁proper ties",
+ "▁ properties",
+ "ab il",
+ "abi l",
+ "a bil",
+ "va s",
+ "v as",
+ "}$ ,",
+ "} $,",
+ "it ted",
+ "itt ed",
+ "itte d",
+ "ó d",
+ "▁D em",
+ "▁De m",
+ "▁as ked",
+ "▁ask ed",
+ "▁t ab",
+ "▁ta b",
+ "▁ tab",
+ "S ource",
+ "▁error s",
+ "▁err ors",
+ "▁ errors",
+ "ograph ie",
+ "▁ж и",
+ "▁ жи",
+ "▁m al",
+ "▁ma l",
+ "▁ mal",
+ "st ract",
+ "str act",
+ "stra ct",
+ "▁d ro",
+ "▁dr o",
+ "▁ dro",
+ "ra k",
+ "r ak",
+ "▁n ote",
+ "▁not e",
+ "▁no te",
+ "▁ note",
+ "▁set ting",
+ "▁sett ing",
+ "▁ setting",
+ "▁f em",
+ "▁fe m",
+ "▁s aw",
+ "▁sa w",
+ "ia r",
+ "i ar",
+ "HE R",
+ "H ER",
+ "е с",
+ "▁p red",
+ "▁pr ed",
+ "▁pre d",
+ "▁ pred",
+ "▁O ut",
+ "▁ Out",
+ "▁it ems",
+ "▁item s",
+ "▁ items",
+ "ла н",
+ "л ан",
+ "▁w erd",
+ "▁we rd",
+ "▁wer d",
+ "ers ion",
+ "li a",
+ "l ia",
+ "▁s in",
+ "▁si n",
+ "▁ sin",
+ "ich te",
+ "icht e",
+ "i chte",
+ "▁fe el",
+ "▁fee l",
+ "▁п ра",
+ "▁пр а",
+ "▁ пра",
+ "▁o der",
+ "▁od er",
+ "▁ oder",
+ "U E",
+ "oc ument",
+ "▁m ode",
+ "▁mod e",
+ "▁mo de",
+ "▁ mode",
+ "▁N a",
+ "▁ Na",
+ "де н",
+ "д ен",
+ "me s",
+ "m es",
+ "frame work",
+ "▁a uto",
+ "▁au to",
+ "▁aut o",
+ "▁ auto",
+ "ны м",
+ "н ым",
+ "ub y",
+ "u by",
+ "▁tem plate",
+ "▁temp late",
+ "▁ template",
+ "▁m ess",
+ "▁me ss",
+ "▁mes s",
+ "▁ mess",
+ "ie der",
+ "ied er",
+ "i eder",
+ "▁rel ated",
+ "▁rela ted",
+ "▁relate d",
+ "▁ related",
+ "ok en",
+ "oke n",
+ "o ken",
+ "▁follow s",
+ "se arch",
+ "s earch",
+ "am i",
+ "a mi",
+ "▁w ait",
+ "▁wa it",
+ "▁ wait",
+ "ig r",
+ "i gr",
+ "▁l ow",
+ "▁lo w",
+ "▁ low",
+ "ски х",
+ "ск их",
+ "с ких",
+ "ска я",
+ "с кая",
+ "▁M ark",
+ "▁Mar k",
+ "▁ Mark",
+ "▁i ll",
+ "▁il l",
+ "▁ ill",
+ "am ento",
+ "ament o",
+ "amen to",
+ "\\ <",
+ "▁d f",
+ "▁ df",
+ "os ition",
+ "osi tion",
+ "▁В и",
+ "is f",
+ "i sf",
+ "▁De utsch",
+ "ah l",
+ "a hl",
+ "wa r",
+ "w ar",
+ "it ect",
+ "ite ct",
+ "▁s al",
+ "▁sa l",
+ "▁ sal",
+ "el en",
+ "ele n",
+ "e len",
+ "By Id",
+ "▁g ru",
+ "▁gr u",
+ "▁ gru",
+ "s v",
+ "▁pass ed",
+ "▁pas sed",
+ "▁passe d",
+ "▁a ñ",
+ "▁ añ",
+ "Sc h",
+ "S ch",
+ "▁sol ve",
+ "we ise",
+ "weis e",
+ "wei se",
+ "at os",
+ "ato s",
+ "▁m eg",
+ "▁me g",
+ "▁m ember",
+ "▁mem ber",
+ "▁memb er",
+ "▁ member",
+ "er name",
+ "ern ame",
+ "erna me",
+ "▁con nect",
+ "▁conne ct",
+ "▁conn ect",
+ "▁ connect",
+ "ip s",
+ "i ps",
+ "▁r ound",
+ "▁ro und",
+ "▁rou nd",
+ "▁ round",
+ "▁ ]",
+ "ne s",
+ "n es",
+ "▁d ir",
+ "▁di r",
+ "▁ dir",
+ "▁Lond on",
+ "d y",
+ "F A",
+ "▁rece ived",
+ "▁receive d",
+ "re et",
+ "ree t",
+ "▁L og",
+ "▁Lo g",
+ "▁ Log",
+ "▁Sch ool",
+ "an go",
+ "ang o",
+ "▁The se",
+ "▁Th ese",
+ "▁M ont",
+ "▁Mon t",
+ "▁Mo nt",
+ "▁ Mont",
+ "▁e ner",
+ "▁en er",
+ "▁ ener",
+ "la d",
+ "l ad",
+ "▁def ine",
+ "▁defin e",
+ "▁ define",
+ "si gn",
+ "sig n",
+ "s ign",
+ "▁c le",
+ "▁cl e",
+ "▁ cle",
+ "fig ure",
+ "▁V iew",
+ "▁Vi ew",
+ "▁Vie w",
+ "▁ View",
+ "text bf",
+ "$ \\",
+ "з ы",
+ "num ber",
+ "n umber",
+ "▁d in",
+ "▁di n",
+ "▁ din",
+ "el ler",
+ "ell er",
+ "elle r",
+ "orith m",
+ "ori thm",
+ "fal se",
+ "f alse",
+ "fo l",
+ "f ol",
+ "ffic ient",
+ "▁HT ML",
+ "▁ HTML",
+ "li che",
+ "lic he",
+ "lich e",
+ "l iche",
+ "▁M o",
+ "▁ Mo",
+ "▁int rodu",
+ "▁intr odu",
+ "▁intro du",
+ "ex p",
+ "e xp",
+ "▁st rong",
+ "▁str ong",
+ "▁stro ng",
+ "▁ strong",
+ "▁t hus",
+ "▁th us",
+ "/ )",
+ "▁e le",
+ "▁el e",
+ "▁ ele",
+ "▁та к",
+ "▁ так",
+ "▁п а",
+ "▁ па",
+ "▁d ont",
+ "▁do nt",
+ "▁don t",
+ "▁c ause",
+ "▁caus e",
+ "▁ca use",
+ "Num ber",
+ "N umber",
+ "▁im ages",
+ "▁image s",
+ "▁imag es",
+ "▁ images",
+ "▁s ample",
+ "▁sam ple",
+ "▁ sample",
+ "▁s ci",
+ "▁sc i",
+ "▁ sci",
+ "li ke",
+ "lik e",
+ "l ike",
+ "▁L ou",
+ "▁Lo u",
+ "▁ Lou",
+ "di v",
+ "d iv",
+ "an c",
+ "a nc",
+ "▁f ront",
+ "▁fr ont",
+ "▁fro nt",
+ "▁ front",
+ "ne n",
+ "n en",
+ "▁miss ing",
+ "▁mis sing",
+ "▁ missing",
+ "ar ia",
+ "ari a",
+ "a ria",
+ "pr es",
+ "pre s",
+ "p res",
+ "▁п ред",
+ "▁пре д",
+ "D I",
+ "fil ter",
+ "▁M it",
+ "▁Mi t",
+ "U R",
+ "▁o pp",
+ "▁op p",
+ "▁ opp",
+ "▁s ql",
+ "▁sq l",
+ "▁ sql",
+ "▁ро ку",
+ "er en",
+ "ere n",
+ "e ren",
+ "em at",
+ "ema t",
+ "e mat",
+ "í s",
+ "▁Je an",
+ "▁ Jean",
+ "é c",
+ "▁c i",
+ "▁ ci",
+ "en ne",
+ "enn e",
+ "at form",
+ "▁t aken",
+ "▁tak en",
+ "▁take n",
+ "▁ta ken",
+ "▁O f",
+ "▁ Of",
+ "▁на се",
+ "▁e rr",
+ "▁er r",
+ "▁ err",
+ "O P",
+ "Fr om",
+ "F rom",
+ "De fault",
+ "Def ault",
+ "▁Gener al",
+ "▁Gen eral",
+ "▁Gene ral",
+ "▁ General",
+ "wik i",
+ "wi ki",
+ "w iki",
+ "▁g rand",
+ "▁gr and",
+ "▁gra nd",
+ "▁gran d",
+ "▁ grand",
+ "▁e inen",
+ "▁ein en",
+ "▁eine n",
+ "Re g",
+ "R eg",
+ "Hand ler",
+ "Handle r",
+ "con om",
+ "co nom",
+ "cono m",
+ "c onom",
+ "an ger",
+ "ang er",
+ "ange r",
+ "▁бы л",
+ "▁L os",
+ "▁Lo s",
+ "▁ Los",
+ "▁ex pression",
+ "▁exp ression",
+ "▁express ion",
+ "▁expr ession",
+ "▁ expression",
+ "ш а",
+ "ya l",
+ "y al",
+ "▁$ ('",
+ "▁$( '",
+ "▁sw itch",
+ "▁ switch",
+ "▁v ector",
+ "▁ve ctor",
+ "▁vec tor",
+ "▁ vector",
+ "▁T hom",
+ "▁Th om",
+ "▁v irt",
+ "▁vi rt",
+ "▁vir t",
+ "▁ virt",
+ "le ased",
+ "lease d",
+ "lea sed",
+ "▁c over",
+ "▁co ver",
+ "▁cov er",
+ "▁ cover",
+ "▁re sp",
+ "▁r esp",
+ "▁res p",
+ "▁ resp",
+ "ak o",
+ "a ko",
+ "ren ch",
+ "ot a",
+ "o ta",
+ "C ell",
+ "an ged",
+ "ang ed",
+ "ange d",
+ "▁+ =",
+ "▁ +=",
+ "la c",
+ "l ac",
+ "sk a",
+ "s ka",
+ "ne xt",
+ "nex t",
+ "n ext",
+ "▁Intern ational",
+ "▁W il",
+ "▁Wi l",
+ "▁ Wil",
+ "▁o nt",
+ "▁on t",
+ "▁ ont",
+ "ib r",
+ "i br",
+ "us tr",
+ "ust r",
+ "u str",
+ "▁b lack",
+ "▁bl ack",
+ "▁bla ck",
+ "▁ black",
+ "▁select ed",
+ "▁sel ected",
+ "▁sele cted",
+ "▁ selected",
+ "ch er",
+ "che r",
+ "c her",
+ "▁l iter",
+ "▁li ter",
+ "▁lit er",
+ "▁ liter",
+ "ro ot",
+ "r oot",
+ "л ся",
+ "▁L ife",
+ "▁Li fe",
+ "▁ Life",
+ "▁in sert",
+ "▁ins ert",
+ "▁inser t",
+ "▁inse rt",
+ "▁ insert",
+ "▁mat rix",
+ "▁ matrix",
+ "is es",
+ "ise s",
+ ") ]",
+ "▁p el",
+ "▁pe l",
+ "▁ pel",
+ "Over ride",
+ "ry pt",
+ "▁for mer",
+ "▁form er",
+ "▁forme r",
+ "▁ former",
+ "▁Fil m",
+ "▁N orth",
+ "▁Nor th",
+ "cl ient",
+ "cli ent",
+ "c lient",
+ "▁n ight",
+ "▁ night",
+ "хо ди",
+ "ход и",
+ "▁A ustral",
+ "▁Aust ral",
+ "▁ Austral",
+ "▁R et",
+ "▁Re t",
+ "▁ Ret",
+ "rh o",
+ "r ho",
+ "▁п ер",
+ "▁пе р",
+ "▁ пер",
+ "ip edia",
+ "ipe dia",
+ "▁ex press",
+ "▁exp ress",
+ "▁expr ess",
+ "▁expres s",
+ "▁ express",
+ "▁th ird",
+ "▁ third",
+ "▁ma jor",
+ "▁maj or",
+ "▁ major",
+ "▁g rad",
+ "▁gr ad",
+ "▁gra d",
+ "▁ grad",
+ "ow e",
+ "o we",
+ "▁bel ieve",
+ "our nal",
+ "ourn al",
+ "▁st atus",
+ "▁stat us",
+ "▁ status",
+ "un c",
+ "u nc",
+ "▁d ou",
+ "▁do u",
+ "▁J SON",
+ "▁JS ON",
+ "▁ JSON",
+ "ui s",
+ "u is",
+ "▁pop ulation",
+ "▁popula tion",
+ "▁popul ation",
+ "en z",
+ "▁Will iam",
+ "s f",
+ "▁O bject",
+ "▁Ob ject",
+ "▁ Object",
+ "▁c in",
+ "▁ci n",
+ "▁ cin",
+ "▁D i",
+ "▁ Di",
+ "cur ity",
+ "c urity",
+ "▁O pen",
+ "▁Op en",
+ "▁ Open",
+ "▁ ле",
+ "la r",
+ "l ar",
+ "ad ding",
+ "add ing",
+ "▁k om",
+ "▁ko m",
+ "▁ kom",
+ "}( \\",
+ "} (\\",
+ "▁k il",
+ "▁ki l",
+ "▁ kil",
+ "um er",
+ "ume r",
+ "u mer",
+ "\"/ >",
+ "\" />",
+ "▁fe ature",
+ "▁ feature",
+ "▁A re",
+ "▁Ar e",
+ "▁ Are",
+ "ck s",
+ "c ks",
+ "▁Intern et",
+ "▁Inter net",
+ "▁ Internet",
+ "▁i h",
+ "▁ ih",
+ "▁start ed",
+ "▁star ted",
+ "▁ear ly",
+ "▁be gan",
+ "▁beg an",
+ "T H",
+ "p ython",
+ "as p",
+ "a sp",
+ "▁F r",
+ "▁ Fr",
+ "▁c los",
+ "▁cl os",
+ "▁clo s",
+ "▁ clos",
+ "ist ic",
+ "isti c",
+ "▁mus ic",
+ "▁ music",
+ "▁d ig",
+ "▁di g",
+ "▁ dig",
+ "▁it al",
+ "▁i tal",
+ "▁ ital",
+ "▁D avid",
+ "▁Dav id",
+ "▁Da vid",
+ "▁ David",
+ "▁web site",
+ "▁ website",
+ "▁cont roller",
+ "▁control ler",
+ "▁ controller",
+ "▁M er",
+ "▁Me r",
+ "▁ Mer",
+ "con text",
+ "cont ext",
+ "pro duct",
+ "produ ct",
+ "prod uct",
+ "os p",
+ "o sp",
+ "▁j un",
+ "▁ju n",
+ "ro wn",
+ "row n",
+ "r own",
+ "▁A z",
+ "▁ Az",
+ "\": \"",
+ "\" :\"",
+ "▁a an",
+ "▁aa n",
+ "▁D ate",
+ "▁Da te",
+ "▁Dat e",
+ "▁ Date",
+ "mu lt",
+ "mul t",
+ "m ult",
+ "▁b rowser",
+ "▁brow ser",
+ "▁ browser",
+ "ре д",
+ "wh ich",
+ "R A",
+ "qu are",
+ "qua re",
+ "▁R uss",
+ "▁Ru ss",
+ "▁Rus s",
+ "▁ Russ",
+ "▁s oon",
+ "▁so on",
+ "▁P re",
+ "▁Pr e",
+ "▁ Pre",
+ "ta u",
+ "t au",
+ "▁we ek",
+ "▁ week",
+ "▁б а",
+ "▁ ба",
+ "▁o ct",
+ "▁oc t",
+ "▁ oct",
+ "▁t own",
+ "▁to wn",
+ "▁ town",
+ "ro y",
+ "r oy",
+ "▁e ls",
+ "▁el s",
+ "▁ els",
+ "bl ic",
+ "b lic",
+ "und le",
+ "▁H istor",
+ "▁His tor",
+ "▁Hi stor",
+ "▁Hist or",
+ "▁f oi",
+ "▁fo i",
+ "▁mod els",
+ "▁model s",
+ "▁mode ls",
+ "▁ models",
+ "з о",
+ "on ym",
+ "ony m",
+ "o nym",
+ "Par am",
+ "Pa ram",
+ "P aram",
+ "▁M et",
+ "▁Me t",
+ "▁ Met",
+ "ge ner",
+ "gen er",
+ "g ener",
+ "j ą",
+ "▁e spe",
+ "▁es pe",
+ "▁esp e",
+ "C E",
+ "▁de vice",
+ "▁dev ice",
+ "▁devi ce",
+ "▁ device",
+ "el low",
+ "ell ow",
+ "ello w",
+ "▁de bug",
+ "▁deb ug",
+ "▁ debug",
+ "ér ie",
+ "éri e",
+ "é rie",
+ "us ing",
+ "u sing",
+ "ан г",
+ "а нг",
+ "▁* )",
+ "▁ *)",
+ "ud i",
+ "u di",
+ "▁M iss",
+ "▁Mi ss",
+ "▁Mis s",
+ "▁ Miss",
+ "ко м",
+ "к ом",
+ "pos ed",
+ "po sed",
+ "pose d",
+ "p osed",
+ "▁z we",
+ "▁zw e",
+ "і н",
+ "▁Ro bert",
+ "▁Rob ert",
+ "▁O ct",
+ "▁ Oct",
+ "lo p",
+ "l op",
+ "ja r",
+ "j ar",
+ "▁a ver",
+ "▁av er",
+ "▁ave r",
+ "▁ aver",
+ "▁ha bit",
+ "▁hab it",
+ "▁: :",
+ "▁ ::",
+ "än g",
+ "ä ng",
+ "St art",
+ "Star t",
+ "▁p ow",
+ "▁po w",
+ "▁ pow",
+ "▁s rc",
+ "▁sr c",
+ "▁ src",
+ "▁pat tern",
+ "▁ pattern",
+ "▁ Э",
+ "▁b i",
+ "▁ bi",
+ "ot es",
+ "ote s",
+ "o tes",
+ "▁_ _",
+ "▁ __",
+ "▁s ens",
+ "▁se ns",
+ "▁sen s",
+ "▁ sens",
+ "▁a void",
+ "▁av oid",
+ "▁avo id",
+ "ex ample",
+ "ut t",
+ "u tt",
+ "La bel",
+ "Lab el",
+ "L abel",
+ "te x",
+ "t ex",
+ "bo ot",
+ "b oot",
+ "es to",
+ "est o",
+ "e sto",
+ "▁M arch",
+ "▁Mar ch",
+ "▁Marc h",
+ "▁e asy",
+ "▁eas y",
+ "ict ure",
+ "Gr oup",
+ "▁f ather",
+ "▁fa ther",
+ "▁fat her",
+ "▁ father",
+ "▁up dated",
+ "▁update d",
+ "▁upd ated",
+ "▁ updated",
+ "▁V o",
+ "▁I II",
+ "▁II I",
+ "▁ III",
+ "om ega",
+ "ome ga",
+ "▁a lle",
+ "▁al le",
+ "▁all e",
+ "▁ alle",
+ "Re c",
+ "R ec",
+ "y g",
+ "з е",
+ "▁D im",
+ "▁Di m",
+ "▁ Dim",
+ "ne ct",
+ "n ect",
+ "▁T or",
+ "▁To r",
+ "▁de utsch",
+ "▁ deutsch",
+ "▁wh ite",
+ "▁ white",
+ "▁n ational",
+ "▁nation al",
+ "▁nat ional",
+ "pp e",
+ "p pe",
+ "▁a ir",
+ "▁ai r",
+ "▁ air",
+ "▁pass word",
+ "▁ password",
+ "de t",
+ "d et",
+ "▁b ig",
+ "▁bi g",
+ "▁ big",
+ "▁U se",
+ "▁Us e",
+ "▁ Use",
+ "cal l",
+ "ca ll",
+ "c all",
+ "▁ex tra",
+ "▁ext ra",
+ "▁extr a",
+ "▁ extra",
+ "W e",
+ "an ia",
+ "ani a",
+ "a nia",
+ "▁h old",
+ "▁ho ld",
+ "▁hol d",
+ "▁ hold",
+ "Cont rol",
+ "▁C O",
+ "▁ CO",
+ "▁м і",
+ "▁ мі",
+ "it i",
+ "i ti",
+ "▁K e",
+ "▁ Ke",
+ "en u",
+ "e nu",
+ "▁P ark",
+ "▁Par k",
+ "то м",
+ "т ом",
+ "▁a uth",
+ "▁au th",
+ "▁aut h",
+ "▁ auth",
+ "▁c enter",
+ "▁cent er",
+ "▁ center",
+ "P h",
+ "то в",
+ "т ов",
+ "id ing",
+ "idi ng",
+ "i ding",
+ "▁a cross",
+ "▁ac ross",
+ "▁s ong",
+ "▁so ng",
+ "▁son g",
+ "▁ song",
+ "▁ph ys",
+ "▁ phys",
+ "▁n umer",
+ "▁num er",
+ "▁nu mer",
+ "▁ numer",
+ "щ а",
+ "▁A lex",
+ "▁Al ex",
+ "▁Ale x",
+ "▁ Alex",
+ "▁problem s",
+ "▁proble ms",
+ "▁probl ems",
+ "▁E rror",
+ "▁Er ror",
+ "▁Err or",
+ "▁ Error",
+ "form at",
+ "for mat",
+ "▁A cc",
+ "▁Ac c",
+ "▁ Acc",
+ "▁s ix",
+ "▁si x",
+ "▁ six",
+ "▁d b",
+ "▁ db",
+ "▁C ast",
+ "▁Cas t",
+ "▁Ca st",
+ "▁ Cast",
+ "om s",
+ "o ms",
+ "pro ject",
+ "proj ect",
+ "▁v ert",
+ "▁ver t",
+ "▁ve rt",
+ "▁ vert",
+ "cre t",
+ "cr et",
+ "c ret",
+ "▁he ader",
+ "▁head er",
+ "▁ header",
+ "▁st ream",
+ "▁stre am",
+ "▁ stream",
+ "id s",
+ "i ds",
+ "▁t or",
+ "▁to r",
+ "▁ tor",
+ "▁se pt",
+ "▁sep t",
+ "▁est im",
+ "▁es tim",
+ "▁de cl",
+ "▁dec l",
+ "▁ decl",
+ "▁g ave",
+ "▁ga ve",
+ "▁p layer",
+ "▁pl ayer",
+ "▁play er",
+ "▁pla yer",
+ "▁ player",
+ "ys is",
+ "▁д ру",
+ "▁др у",
+ "am m",
+ "a mm",
+ "щ о",
+ "▁( \"",
+ "▁ (\"",
+ "▁a x",
+ "▁ ax",
+ "Pro perty",
+ "us r",
+ "u sr",
+ "▁some one",
+ "▁im pro",
+ "▁imp ro",
+ "▁impr o",
+ "ad en",
+ "ade n",
+ "a den",
+ "ro te",
+ "rot e",
+ "r ote",
+ "▁М и",
+ "i h",
+ "++ )",
+ "+ +)",
+ "▁v ideo",
+ "▁vide o",
+ "▁ video",
+ "▁ex ists",
+ "▁exist s",
+ "▁ exists",
+ "к ла",
+ "▁comp lete",
+ "▁comple te",
+ "▁complet e",
+ "▁compl ete",
+ "▁ complete",
+ "▁s ession",
+ "▁sess ion",
+ "▁ session",
+ "▁const ant",
+ "▁ constant",
+ "ic os",
+ "ico s",
+ "i cos",
+ "▁p ack",
+ "▁pa ck",
+ "▁pac k",
+ "▁ pack",
+ "ro me",
+ "rom e",
+ "r ome",
+ "eg r",
+ "e gr",
+ "App lication",
+ "▁y es",
+ "▁ye s",
+ "▁ yes",
+ "▁e lle",
+ "▁el le",
+ "▁ell e",
+ "▁ elle",
+ "▁e mail",
+ "▁em ail",
+ "▁ email",
+ "or f",
+ "o rf",
+ "ca se",
+ "cas e",
+ "c ase",
+ "▁po inter",
+ "▁point er",
+ "▁ pointer",
+ "▁reg ard",
+ "se n",
+ "s en",
+ "st atus",
+ "stat us",
+ "▁m es",
+ "▁me s",
+ "▁ mes",
+ "▁d elle",
+ "▁de lle",
+ "▁del le",
+ "▁dell e",
+ "ing ton",
+ "ingt on",
+ "▁B as",
+ "▁Ba s",
+ "▁ Bas",
+ ") ^",
+ "de velop",
+ "▁for ce",
+ "▁ force",
+ "▁char acters",
+ "▁charact ers",
+ "▁character s",
+ "▁c ross",
+ "▁cr oss",
+ "▁cro ss",
+ "▁ cross",
+ "▁de ath",
+ "▁t akes",
+ "▁tak es",
+ "▁take s",
+ "▁ta kes",
+ "ér i",
+ "é ri",
+ "ig ne",
+ "ign e",
+ "че н",
+ "ч ен",
+ "U P",
+ ". :",
+ "Th read",
+ "j u",
+ "in y",
+ "i ny",
+ "▁det ails",
+ "▁detail s",
+ "▁ details",
+ "▁x ml",
+ "▁ xml",
+ "ta it",
+ "t ait",
+ "out put",
+ "mess age",
+ "m essage",
+ "' '",
+ "▁Brit ish",
+ "vi lle",
+ "vil le",
+ "v ille",
+ "▁D iv",
+ "▁Di v",
+ "▁ Div",
+ "▁U ser",
+ "▁Use r",
+ "▁Us er",
+ "▁ User",
+ "c m",
+ "ч но",
+ "col umn",
+ "eq ref",
+ "ó r",
+ "on om",
+ "ono m",
+ "o nom",
+ "▁P ost",
+ "▁Po st",
+ "▁Pos t",
+ "▁ Post",
+ "el len",
+ "ell en",
+ "elle n",
+ "A b",
+ "ul té",
+ "ult é",
+ "▁per fect",
+ "▁perf ect",
+ "() {",
+ "( ){",
+ "vis ion",
+ "v ision",
+ "act ive",
+ "activ e",
+ "li er",
+ "lie r",
+ "l ier",
+ "ri j",
+ "r ij",
+ "s d",
+ "▁k ö",
+ "▁ kö",
+ "▁n ie",
+ "▁ni e",
+ "▁ nie",
+ "▁re lig",
+ "▁rel ig",
+ "▁reli g",
+ "▁o t",
+ "▁ ot",
+ "▁m achine",
+ "▁mach ine",
+ "▁ machine",
+ "▁h eld",
+ "▁he ld",
+ "▁hel d",
+ ")$ .",
+ ") $.",
+ "==== ====",
+ "ck er",
+ "cke r",
+ "c ker",
+ "в ы",
+ "bo rn",
+ "bor n",
+ "b orn",
+ "▁p ast",
+ "▁pas t",
+ "▁pa st",
+ "ри я",
+ "▁D r",
+ "▁ Dr",
+ "▁reg ular",
+ "▁regul ar",
+ "▁ regular",
+ "▁prov ided",
+ "▁provide d",
+ "TE R",
+ "T ER",
+ "▁un ivers",
+ "▁ univers",
+ "▁g ets",
+ "▁get s",
+ "▁ge ts",
+ "▁ gets",
+ "▁n u",
+ "▁ nu",
+ "▁/ *",
+ "▁ /*",
+ "ob er",
+ "obe r",
+ "o ber",
+ "fi n",
+ "f in",
+ "▁n ella",
+ "▁ne lla",
+ "▁nel la",
+ "▁nell a",
+ "▁be come",
+ "▁bec ome",
+ "▁becom e",
+ "▁` `",
+ "▁ ``",
+ "▁h istory",
+ "▁histor y",
+ "▁hi story",
+ "▁hist ory",
+ "▁ history",
+ "▁S ol",
+ "▁So l",
+ "▁ Sol",
+ "▁R ad",
+ "▁Ra d",
+ "▁ Rad",
+ "▁term s",
+ "▁ter ms",
+ "▁even ts",
+ "▁event s",
+ "▁ev ents",
+ "▁ events",
+ "ly mp",
+ ")) )",
+ ") ))",
+ "ро ва",
+ "ров а",
+ "р ова",
+ "▁ab sol",
+ "▁abs ol",
+ "▁so ft",
+ "▁ soft",
+ "lin ks",
+ "link s",
+ "l inks",
+ "▁h ope",
+ "▁ho pe",
+ "▁hop e",
+ "▁su bject",
+ "▁sub ject",
+ "▁ subject",
+ "\") ,",
+ "\" ),",
+ "▁cre ating",
+ "▁} \r",
+ "▁ }\r",
+ "▁S k",
+ "▁ Sk",
+ "▁f low",
+ "▁fl ow",
+ "▁flo w",
+ "▁ flow",
+ "▁Р а",
+ "▁as sert",
+ "▁ass ert",
+ "▁asse rt",
+ "▁ assert",
+ "ze t",
+ "z et",
+ "▁F rank",
+ "▁Fran k",
+ "▁Fr ank",
+ "s a",
+ "▁dist ribution",
+ "▁distribu tion",
+ "▁distrib ution",
+ "▁ distribution",
+ "c u",
+ "ba nd",
+ "ban d",
+ "b and",
+ "iz z",
+ "i zz",
+ "▁j ob",
+ "▁jo b",
+ "▁ job",
+ "in er",
+ "ine r",
+ "i ner",
+ "st ruct",
+ "str uct",
+ "stru ct",
+ "á k",
+ "T O",
+ "au f",
+ "a uf",
+ "▁ext ends",
+ "▁extend s",
+ "▁G ra",
+ "▁Gr a",
+ "dis play",
+ "▁sign ific",
+ "on ey",
+ "one y",
+ "o ney",
+ "s ource",
+ "m icrosoft",
+ "in der",
+ "ind er",
+ "inde r",
+ "i nder",
+ "▁qu ick",
+ "▁qui ck",
+ "▁ quick",
+ "▁w onder",
+ "▁won der",
+ "▁wo nder",
+ "Inst ance",
+ "el les",
+ "ell es",
+ "elle s",
+ "e lles",
+ "è me",
+ "▁comp any",
+ "▁compan y",
+ "▁ company",
+ "u ß",
+ ". }",
+ "▁separ ate",
+ "U M",
+ "HER E",
+ "HE RE",
+ "H ERE",
+ "▁writ ing",
+ "▁wr iting",
+ "▁ writing",
+ "it ution",
+ "itu tion",
+ "itut ion",
+ "▁G esch",
+ "▁Ge sch",
+ "▁Ges ch",
+ "м я",
+ "▁J ames",
+ "▁Ja mes",
+ "▁Jam es",
+ "▁ James",
+ "▁D E",
+ "▁ DE",
+ "▁S pe",
+ "▁Sp e",
+ "▁ Spe",
+ "pro cess",
+ "proc ess",
+ "St r",
+ "S tr",
+ "▁s ym",
+ "▁sy m",
+ "▁ sym",
+ "▁a o",
+ "▁ ao",
+ "▁w y",
+ "▁ wy",
+ "▁any one",
+ "▁U p",
+ "▁ Up",
+ "use um",
+ "ar on",
+ "aro n",
+ "a ron",
+ "▁def inition",
+ "▁defin ition",
+ "▁definit ion",
+ "▁ definition",
+ "▁` $",
+ "▁f av",
+ "▁fa v",
+ "rib utes",
+ "ribute s",
+ "ribu tes",
+ "▁R é",
+ "ograf ia",
+ "ografi a",
+ "el ement",
+ "ele ment",
+ "elem ent",
+ "e lement",
+ "ca p",
+ "c ap",
+ "pa t",
+ "p at",
+ "▁B ra",
+ "▁Br a",
+ "▁ Bra",
+ ") (",
+ "▁acc ording",
+ "▁accord ing",
+ "г е",
+ "▁p ie",
+ "▁pi e",
+ "▁ pie",
+ "el i",
+ "e li",
+ "} \"",
+ "▁act iv",
+ "▁ activ",
+ "▁s top",
+ "▁st op",
+ "▁sto p",
+ "▁ stop",
+ "pat ch",
+ "p atch",
+ "т і",
+ "▁J ose",
+ "▁Jo se",
+ "▁Jos e",
+ "▁ Jose",
+ "En d",
+ "E nd",
+ "▁p rze",
+ "▁pr ze",
+ "▁prz e",
+ "▁a ge",
+ "▁ag e",
+ "▁ age",
+ "it ory",
+ "ito ry",
+ "itor y",
+ "▁P HP",
+ "▁ PHP",
+ "ag ement",
+ "age ment",
+ "agem ent",
+ "▁` .",
+ "▁ `.",
+ "▁pre tty",
+ "▁pret ty",
+ "▁re comm",
+ "▁rec omm",
+ "▁recom m",
+ "▁s ud",
+ "▁su d",
+ "▁re qu",
+ "▁r equ",
+ "▁req u",
+ "▁об ла",
+ "at ives",
+ "ative s",
+ "ativ es",
+ "ati ves",
+ "▁H igh",
+ "▁Hi gh",
+ "▁ High",
+ "á z",
+ "ou l",
+ "o ul",
+ "re st",
+ "res t",
+ "r est",
+ "▁T er",
+ "▁Te r",
+ "un der",
+ "und er",
+ "unde r",
+ "u nder",
+ "th ern",
+ "ther n",
+ "the rn",
+ "cent er",
+ "cen ter",
+ "cente r",
+ "c enter",
+ "▁u r",
+ "▁ ur",
+ "la t",
+ "l at",
+ "▁inter face",
+ "▁ interface",
+ "▁и н",
+ "▁ ин",
+ "▁wh ose",
+ "▁who se",
+ "ic as",
+ "ica s",
+ "i cas",
+ "am en",
+ "ame n",
+ "a men",
+ "Fil ter",
+ "▁st ation",
+ "▁stat ion",
+ "▁sta tion",
+ "▁stati on",
+ "▁ station",
+ "Pa ge",
+ "P age",
+ "▁a rm",
+ "▁ar m",
+ "▁ arm",
+ "▁e yes",
+ "▁eye s",
+ "▁ра й",
+ "▁s eu",
+ "▁se u",
+ "ol i",
+ "o li",
+ "wi n",
+ "w in",
+ "li k",
+ "l ik",
+ "ge x",
+ "g ex",
+ "ch an",
+ "cha n",
+ "c han",
+ "id ence",
+ "iden ce",
+ "ar gs",
+ "arg s",
+ "ak ing",
+ "aki ng",
+ "a king",
+ "▁Go ogle",
+ "▁ Google",
+ "▁St ud",
+ "▁Stu d",
+ "▁h o",
+ "▁ ho",
+ "то ры",
+ "тор ы",
+ "S u",
+ "▁autom at",
+ "▁auto mat",
+ "êm e",
+ "ê me",
+ "▁c y",
+ "▁ cy",
+ "lo r",
+ "l or",
+ "▁st ack",
+ "▁sta ck",
+ "▁ stack",
+ "▁SE LECT",
+ "▁ SELECT",
+ "A F",
+ "▁> >",
+ "▁ >>",
+ "▁com pet",
+ "▁comp et",
+ "▁p air",
+ "▁pa ir",
+ "▁ pair",
+ "▁ing lés",
+ "Res ponse",
+ "▁F ig",
+ "▁ Fig",
+ "gr ad",
+ "gra d",
+ "g rad",
+ "▁document ation",
+ "▁ documentation",
+ "▁c ant",
+ "▁can t",
+ "▁ca nt",
+ "▁app reci",
+ "å n",
+ "▁le arn",
+ "▁lear n",
+ "▁ learn",
+ "▁in dep",
+ "▁ind ep",
+ "▁inde p",
+ "▁p al",
+ "▁pa l",
+ "▁ pal",
+ "pack age",
+ "p ackage",
+ "ar es",
+ "are s",
+ "a res",
+ "▁Ber lin",
+ "▁Berl in",
+ "б ли",
+ "re ich",
+ "rei ch",
+ "ё н",
+ "▁s atisf",
+ "▁sat isf",
+ "▁reg ion",
+ "▁ region",
+ "▁fri end",
+ "▁ friend",
+ "▁Ge orge",
+ "▁Georg e",
+ "▁В о",
+ "▁ Во",
+ "▁\" \"",
+ "▁ \"\"",
+ "▁des de",
+ "Fact ory",
+ "F actory",
+ "▁Count y",
+ "▁Coun ty",
+ "ou v",
+ "o uv",
+ "▁ ‘",
+ "▁inst alled",
+ "▁install ed",
+ "▁instal led",
+ "▁ installed",
+ "▁w anted",
+ "▁want ed",
+ "▁P ython",
+ "▁ Python",
+ "▁inter pre",
+ "▁in cluded",
+ "▁includ ed",
+ "▁include d",
+ "▁inclu ded",
+ "▁( (",
+ "▁ ((",
+ "▁al tern",
+ "▁alt ern",
+ "▁alter n",
+ "▁alte rn",
+ "▁ altern",
+ "is to",
+ "ist o",
+ "i sto",
+ "g n",
+ "▁b order",
+ "▁bor der",
+ "▁bord er",
+ "▁ border",
+ "pd f",
+ "p df",
+ "▁d up",
+ "▁du p",
+ "▁ dup",
+ "▁down load",
+ "▁ download",
+ "ju st",
+ "jus t",
+ "j ust",
+ "▁m embers",
+ "▁mem bers",
+ "▁memb ers",
+ "▁member s",
+ "▁ members",
+ "ch ild",
+ "chi ld",
+ "▁p ay",
+ "▁pa y",
+ "▁ pay",
+ "▁c er",
+ "▁ce r",
+ "▁ cer",
+ "▁lo oked",
+ "▁look ed",
+ "▁correct ly",
+ "au th",
+ "aut h",
+ "a uth",
+ "▁с тан",
+ "▁ст ан",
+ "▁ста н",
+ "▁ стан",
+ "▁e sp",
+ "▁es p",
+ "▁ esp",
+ "▁d esc",
+ "▁de sc",
+ "▁des c",
+ "▁ desc",
+ "eb en",
+ "e ben",
+ "▁qu estions",
+ "▁question s",
+ "▁quest ions",
+ "▁questi ons",
+ "▁ questions",
+ "ma l",
+ "m al",
+ "▁ab gerufen",
+ "▁ abgerufen",
+ "▁B and",
+ "▁Ba nd",
+ "▁Ban d",
+ "▁[ ]",
+ "▁ []",
+ "Bas e",
+ "B ase",
+ "▁r is",
+ "▁ri s",
+ "▁ ris",
+ "▁f ort",
+ "▁for t",
+ "▁fo rt",
+ "▁ fort",
+ "▁I d",
+ "▁ Id",
+ "▁var ious",
+ "▁vari ous",
+ "▁Le ague",
+ "▁H and",
+ "▁Ha nd",
+ "▁Han d",
+ "▁ Hand",
+ "▁T ype",
+ "▁Ty pe",
+ "▁Typ e",
+ "▁ Type",
+ "ir l",
+ "i rl",
+ "▁F e",
+ "▁ Fe",
+ "i én",
+ "it ter",
+ "itt er",
+ "itte r",
+ "▁f ast",
+ "▁fa st",
+ "▁fas t",
+ "▁ fast",
+ "st a",
+ "s ta",
+ "▁ex cept",
+ "▁ except",
+ "ic z",
+ "i cz",
+ "▁F rench",
+ "▁en vironment",
+ "▁environ ment",
+ "▁ environment",
+ "▁con se",
+ "▁cons e",
+ "у р",
+ "о го",
+ "▁necess ary",
+ "tar get",
+ "t arget",
+ "▁re ading",
+ "▁read ing",
+ "▁ reading",
+ "ho me",
+ "hom e",
+ "h ome",
+ "ze ich",
+ "▁e qual",
+ "▁equ al",
+ "▁eq ual",
+ "▁ equal",
+ "▁pi ù",
+ "▁p rem",
+ "▁pr em",
+ "▁pre m",
+ "▁diff icult",
+ "▁u nit",
+ "▁un it",
+ "▁ unit",
+ "▁re place",
+ "▁rep lace",
+ "▁repla ce",
+ "▁ replace",
+ "▁he art",
+ "▁hear t",
+ "▁ heart",
+ "▁t alk",
+ "▁tal k",
+ "A M",
+ "▁R E",
+ "▁ RE",
+ "▁P erson",
+ "▁Per son",
+ "▁Pers on",
+ "▁ Person",
+ "end ency",
+ "enden cy",
+ "▁i mm",
+ "▁im m",
+ "▁ imm",
+ "▁h uman",
+ "▁hum an",
+ "▁hu man",
+ "▁ human",
+ "d n",
+ "▁K ir",
+ "▁Ki r",
+ "▁A ut",
+ "▁Au t",
+ "▁ Aut",
+ "kn own",
+ "know n",
+ "k nown",
+ "▁fr equ",
+ "▁fre qu",
+ "sys tem",
+ "s ystem",
+ "ла в",
+ "▁S z",
+ "▁G al",
+ "▁Ga l",
+ "но е",
+ "sel ves",
+ "right arrow",
+ "r ightarrow",
+ "▁С а",
+ "▁ Са",
+ "=\" @",
+ "▁build ing",
+ "▁ building",
+ "im port",
+ "imp ort",
+ "▁f am",
+ "▁fa m",
+ "▁de lete",
+ "▁del ete",
+ "▁delet e",
+ "▁ delete",
+ "air e",
+ "ai re",
+ "a ire",
+ "ma ry",
+ "mar y",
+ "m ary",
+ "▁f und",
+ "▁fun d",
+ "▁fu nd",
+ "▁ fund",
+ "▁part icip",
+ "▁partic ip",
+ "▁parti cip",
+ "▁partici p",
+ "▁s yn",
+ "▁sy n",
+ "▁ syn",
+ "si n",
+ "s in",
+ "▁l ower",
+ "▁lo wer",
+ "▁low er",
+ "▁ lower",
+ "▁z ero",
+ "▁ze ro",
+ "▁ zero",
+ "▁s ec",
+ "▁se c",
+ "▁ sec",
+ "▁f ra",
+ "▁fr a",
+ "▁ fra",
+ "Po int",
+ "P oint",
+ "▁fa iled",
+ "▁fail ed",
+ "▁ failed",
+ "ien to",
+ "ient o",
+ "i ento",
+ "cu p",
+ "c up",
+ "▁s low",
+ "▁sl ow",
+ "▁slo w",
+ "▁ slow",
+ "▁n ation",
+ "▁na tion",
+ "▁nat ion",
+ "äh r",
+ "ä hr",
+ "▁in fo",
+ "▁inf o",
+ "▁ info",
+ "▁P ublic",
+ "▁Pub lic",
+ "▁Pu blic",
+ "▁ Public",
+ "▁de cla",
+ "▁dec la",
+ "▁decl a",
+ "▁Т а",
+ "▁s old",
+ "▁so ld",
+ "▁sol d",
+ "▁R em",
+ "▁Re m",
+ "▁ Rem",
+ "▁Ph il",
+ "ст ра",
+ "стр а",
+ "с тра",
+ "▁me hr",
+ "▁W ork",
+ "▁Wor k",
+ "▁ Work",
+ "▁N ord",
+ "▁No rd",
+ "▁Nor d",
+ "▁f ait",
+ "▁fa it",
+ "▁g ew",
+ "▁ge w",
+ "▁ gew",
+ "print ln",
+ "ob ile",
+ "obil e",
+ "obi le",
+ "▁K on",
+ "▁Ko n",
+ "▁ass ume",
+ "▁assum e",
+ "land s",
+ "lan ds",
+ "l ands",
+ "▁a mount",
+ "▁am ount",
+ "▁ amount",
+ "▁P ress",
+ "▁Pr ess",
+ "▁Pres s",
+ "▁Pre ss",
+ "▁ Press",
+ "ý ch",
+ "▁ma xim",
+ "▁max im",
+ "▁ maxim",
+ "▁Ch ampion",
+ "▁Champ ion",
+ "li brary",
+ "l ibrary",
+ "a ñ",
+ "▁W al",
+ "▁Wa l",
+ "Com m",
+ "Co mm",
+ "C omm",
+ "] ]",
+ "▁z w",
+ "▁ zw",
+ "▁so cial",
+ "▁soci al",
+ "▁soc ial",
+ "▁ social",
+ "L I",
+ "▁Un ter",
+ "vo r",
+ "v or",
+ "Del ta",
+ "D elta",
+ "em ail",
+ "ema il",
+ "e mail",
+ "ra int",
+ "rain t",
+ "rai nt",
+ "r aint",
+ "on i",
+ "o ni",
+ "▁a lt",
+ "▁al t",
+ "▁ alt",
+ "▁n é",
+ "▁ né",
+ "ци я",
+ "ograph y",
+ "▁mention ed",
+ "▁ment ioned",
+ "▁< =",
+ "▁ <=",
+ "▁c ette",
+ "▁ce tte",
+ "▁cet te",
+ "▁current ly",
+ "▁curr ently",
+ "va re",
+ "var e",
+ "v are",
+ "iz ing",
+ "izi ng",
+ "izin g",
+ "i zing",
+ "▁D ef",
+ "▁De f",
+ "▁ Def",
+ "ic ol",
+ "ico l",
+ "i col",
+ "ün d",
+ "ü nd",
+ "▁config uration",
+ "▁configur ation",
+ "▁ configuration",
+ "est ig",
+ "esti g",
+ "II I",
+ "I II",
+ "la m",
+ "l am",
+ "i ère",
+ "▁E ar",
+ "▁t u",
+ "▁ tu",
+ "En t",
+ "E nt",
+ "▁U sing",
+ "▁Us ing",
+ "▁ Using",
+ "▁ко м",
+ "▁к ом",
+ "▁ ком",
+ "ci e",
+ "c ie",
+ "▁pro of",
+ "▁ proof",
+ "▁in vol",
+ "▁inv ol",
+ "▁H istory",
+ "▁Histor y",
+ "▁Hi story",
+ "▁Hist ory",
+ "▁ History",
+ "> <",
+ "▁A ND",
+ "▁AN D",
+ "▁ AND",
+ "av y",
+ "a vy",
+ "▁rel ations",
+ "▁relation s",
+ "$ {",
+ "▁com es",
+ "▁co mes",
+ "▁come s",
+ "▁ comes",
+ "▁d irection",
+ "▁direct ion",
+ "▁dire ction",
+ "▁dir ection",
+ "▁ direction",
+ "▁J une",
+ "▁Ju ne",
+ "▁Jun e",
+ "▁W ay",
+ "▁Wa y",
+ "Com ponent",
+ "ec h",
+ "e ch",
+ "▁P eter",
+ "▁Pe ter",
+ "▁Pet er",
+ "▁ Peter",
+ "s g",
+ "▁s tra",
+ "▁st ra",
+ "▁str a",
+ "▁ stra",
+ "uc t",
+ "u ct",
+ "▁im plementation",
+ "▁implement ation",
+ "▁ implementation",
+ "att le",
+ "▁c z",
+ "▁ cz",
+ "pl ot",
+ "p lot",
+ "▁play ed",
+ "▁pla yed",
+ "\"> ",
+ "\">< /",
+ "\" >",
+ "▁f ive",
+ "▁fi ve",
+ "▁ five",
+ "▁c oll",
+ "▁col l",
+ "▁co ll",
+ "▁ coll",
+ "▁Char les",
+ "Tr a",
+ "T ra",
+ "▁s uo",
+ "▁su o",
+ "file s",
+ "fil es",
+ "fi les",
+ "f iles",
+ "en tes",
+ "ent es",
+ "ente s",
+ "res ponse",
+ "respons e",
+ "H ow",
+ "▁S oci",
+ "▁So ci",
+ "▁Soc i",
+ "▁i gn",
+ "▁ig n",
+ "▁ ign",
+ "▁l ed",
+ "▁le d",
+ "▁ led",
+ "▁G erman",
+ "▁Ger man",
+ "▁Germ an",
+ "ud o",
+ "u do",
+ "▁D u",
+ "▁t im",
+ "▁ti m",
+ "▁ tim",
+ "ount er",
+ "oun ter",
+ "o unter",
+ "▁att ack",
+ "ur i",
+ "u ri",
+ "▁а р",
+ "▁ ар",
+ "es se",
+ "ess e",
+ "iv il",
+ "ivi l",
+ "i vil",
+ "▁J u",
+ "▁v el",
+ "▁ve l",
+ "▁ vel",
+ "mat rix",
+ "▁M at",
+ "▁Ma t",
+ "▁ Mat",
+ "gi o",
+ "g io",
+ "▁Ze it",
+ "VE R",
+ "V ER",
+ "ha s",
+ "h as",
+ "Con nection",
+ "Connect ion",
+ "Conne ction",
+ "▁i hr",
+ "▁ih r",
+ "▁att ribute",
+ "▁ attribute",
+ "▁dis cuss",
+ "▁disc uss",
+ "▁do main",
+ "▁dom ain",
+ "▁ domain",
+ "bin d",
+ "bi nd",
+ "b ind",
+ "▁S ec",
+ "▁Se c",
+ "▁ Sec",
+ "ri k",
+ "r ik",
+ "cl ose",
+ "clos e",
+ "clo se",
+ "c lose",
+ "gi n",
+ "g in",
+ "▁l ove",
+ "▁lo ve",
+ "▁lov e",
+ "an to",
+ "ant o",
+ "ge nt",
+ "gen t",
+ "g ent",
+ "ab a",
+ "a ba",
+ "jan go",
+ "j ango",
+ "b i",
+ "▁ob ser",
+ "▁obs er",
+ "it ting",
+ "itt ing",
+ "▁р у",
+ "▁ ру",
+ "} =",
+ "ag en",
+ "age n",
+ "a gen",
+ "B C",
+ "so me",
+ "som e",
+ "s ome",
+ "▁B u",
+ "▁ Bu",
+ "▁s oci",
+ "▁so ci",
+ "▁soc i",
+ "▁ soci",
+ "▁ind ividual",
+ "▁individ ual",
+ "▁de al",
+ "▁out side",
+ "ri o",
+ "r io",
+ "Ex ec",
+ "an did",
+ "and id",
+ "▁bus iness",
+ "▁t empor",
+ "▁tem por",
+ "▁temp or",
+ "▁tempo r",
+ "▁T ur",
+ "▁Tu r",
+ "▁( !",
+ "▁ (!",
+ "ri ter",
+ "rit er",
+ "rite r",
+ "r iter",
+ "▁go ogle",
+ "▁goog le",
+ "▁ google",
+ "] :",
+ "it te",
+ "itt e",
+ "i tte",
+ "x i",
+ "▁П а",
+ "ho l",
+ "h ol",
+ "н ь",
+ "ri ng",
+ "rin g",
+ "r ing",
+ "▁s ul",
+ "▁su l",
+ "но сти",
+ "ност и",
+ "нос ти",
+ "_ .",
+ "ga r",
+ "g ar",
+ "T ask",
+ "▁C heck",
+ "▁Che ck",
+ "▁ Check",
+ "▁mod ern",
+ "▁mo dern",
+ "▁mode rn",
+ "▁moder n",
+ "▁w in",
+ "▁ win",
+ "us ter",
+ "ust er",
+ "u ster",
+ "ha n",
+ "h an",
+ "form ation",
+ "format ion",
+ "vo id",
+ "v oid",
+ "▁ф и",
+ "▁ фи",
+ "▁use ful",
+ "▁Eng land",
+ "lo s",
+ "l os",
+ "et ime",
+ "eti me",
+ "e time",
+ "eu r",
+ "e ur",
+ "▁un ique",
+ "▁uniqu e",
+ "▁ unique",
+ "▁ка к",
+ "yi ng",
+ "y ing",
+ "ob j",
+ "ui d",
+ "u id",
+ "▁w indows",
+ "▁window s",
+ "▁wind ows",
+ "▁ windows",
+ "▁d istance",
+ "▁dist ance",
+ "▁ distance",
+ "▁nom bre",
+ "▁nombr e",
+ "і я",
+ "oc us",
+ "o cus",
+ "ah n",
+ "a hn",
+ "ier te",
+ "iert e",
+ "i erte",
+ "▁d ar",
+ "▁da r",
+ "▁ dar",
+ "S I",
+ "lo ng",
+ "lon g",
+ "l ong",
+ "as ta",
+ "ast a",
+ "a sta",
+ "iv en",
+ "ive n",
+ "i ven",
+ "▁t old",
+ "▁to ld",
+ "▁G ru",
+ "▁Gr u",
+ "fo o",
+ "f oo",
+ "▁c alling",
+ "▁cal ling",
+ "▁call ing",
+ "iem bre",
+ "i embre",
+ "▁f uture",
+ "▁fut ure",
+ "pr ès",
+ "p rès",
+ "le ep",
+ "lee p",
+ "avig ation",
+ "PO ST",
+ "POS T",
+ "P OST",
+ "▁des cribed",
+ "▁descri bed",
+ "▁describe d",
+ "▁n och",
+ "▁no ch",
+ "un it",
+ "uni t",
+ "u nit",
+ "al len",
+ "all en",
+ "alle n",
+ "▁b ranch",
+ "▁br anch",
+ "▁bran ch",
+ "▁ branch",
+ "f a",
+ "▁f ill",
+ "▁fil l",
+ "▁fi ll",
+ "▁ fill",
+ "▁ob j",
+ "▁ obj",
+ "▁t ree",
+ "▁tr ee",
+ "▁tre e",
+ "▁ tree",
+ "▁wur den",
+ "▁wurde n",
+ "▁L iter",
+ "▁Li ter",
+ "▁Lit er",
+ "▁ Liter",
+ "ro t",
+ "r ot",
+ "sp lit",
+ "spl it",
+ "s plit",
+ "em ein",
+ "eme in",
+ "mod ule",
+ "C A",
+ "▁oper ator",
+ "▁opera tor",
+ "▁ operator",
+ "▁w rote",
+ "▁wr ote",
+ "▁J ack",
+ "▁Jac k",
+ "▁Ja ck",
+ "▁ Jack",
+ "olog ie",
+ "olo gie",
+ "▁A nt",
+ "▁An t",
+ "▁ Ant",
+ "те р",
+ "т ер",
+ "st ream",
+ "stre am",
+ "▁Q ue",
+ "▁Qu e",
+ "▁ Que",
+ "eps ilon",
+ "e psilon",
+ "no n",
+ "n on",
+ "st ein",
+ "ste in",
+ "▁s impl",
+ "▁sim pl",
+ "▁simp l",
+ "pu b",
+ "p ub",
+ "▁J uly",
+ "▁Jul y",
+ "▁Ju ly",
+ "▁n ature",
+ "▁natur e",
+ "▁nat ure",
+ "▁D atabase",
+ "▁Data base",
+ "▁Dat abase",
+ "▁ Database",
+ "ó l",
+ "ни м",
+ "н им",
+ "▁V I",
+ "▁ VI",
+ "êt re",
+ "ê tre",
+ "il es",
+ "ile s",
+ "i les",
+ "▁w el",
+ "▁we l",
+ "▁ wel",
+ "') ,",
+ "' ),",
+ "▁m ut",
+ "▁mu t",
+ "▁ mut",
+ "lo cation",
+ "loc ation",
+ "l ocation",
+ "▁there fore",
+ "el li",
+ "ell i",
+ "▁ І",
+ "n é",
+ "▁а в",
+ "led ge",
+ "l edge",
+ "▁con ver",
+ "▁conv er",
+ "í m",
+ "▁X V",
+ "▁ XV",
+ "vi der",
+ "vid er",
+ "v ider",
+ "▁Janu ary",
+ "▁Januar y",
+ "▁us ually",
+ "▁usual ly",
+ "▁re leased",
+ "▁release d",
+ "▁M i",
+ "He ad",
+ "H ead",
+ "il ler",
+ "ill er",
+ "ille r",
+ "▁j an",
+ "▁ja n",
+ "▁ jan",
+ "▁l etter",
+ "▁let ter",
+ "▁lett er",
+ "▁ letter",
+ "pr odu",
+ "pro du",
+ "prod u",
+ "p rodu",
+ "r d",
+ "▁C am",
+ "▁Ca m",
+ "▁ Cam",
+ ", '",
+ "▁ Ц",
+ "▁p ush",
+ "▁pu sh",
+ "▁ push",
+ "up date",
+ "▁may be",
+ "▁ maybe",
+ "H ttp",
+ "@ \"",
+ "ме р",
+ "м ер",
+ "ser vice",
+ "serv ice",
+ "par se",
+ "p arse",
+ "▁d ass",
+ "▁da ss",
+ "▁das s",
+ "ê n",
+ ") \"",
+ "mo re",
+ "mor e",
+ "m ore",
+ "/ *",
+ "▁m as",
+ "▁ma s",
+ "▁ mas",
+ "▁like ly",
+ "▁lik ely",
+ "▁ likely",
+ "▁m aterial",
+ "▁mate rial",
+ "▁mater ial",
+ "▁ material",
+ "▁[ [",
+ "▁ [[",
+ "▁long er",
+ "▁lon ger",
+ "ba l",
+ "b al",
+ "▁Arch iv",
+ "ig t",
+ "i gt",
+ "▁e gy",
+ "▁eg y",
+ "▁ egy",
+ "id ge",
+ "ig u",
+ "i gu",
+ "con f",
+ "▁in c",
+ "▁i nc",
+ "▁ inc",
+ "cons ulté",
+ "▁m ai",
+ "▁ma i",
+ "▁ mai",
+ "W ork",
+ "▁г ра",
+ "▁ гра",
+ "▁Oct ober",
+ "▁g lobal",
+ "▁glob al",
+ "▁glo bal",
+ "▁ global",
+ "▁s el",
+ "▁se l",
+ "▁ sel",
+ "▁m unicip",
+ "▁vi ol",
+ "▁vio l",
+ "▁Do es",
+ "▁ Does",
+ "▁\\ [",
+ "ско м",
+ "ск ом",
+ "с ком",
+ "▁com pos",
+ "▁comp os",
+ "▁ compos",
+ "б ря",
+ "в я",
+ "▁resp ons",
+ "▁ respons",
+ "▁consider ed",
+ "▁consid ered",
+ "▁J apan",
+ "▁Jap an",
+ "▁Ja pan",
+ "pe s",
+ "p es",
+ "os to",
+ "ost o",
+ "o sto",
+ "▁mil it",
+ "▁mi lit",
+ "S P",
+ "с ы",
+ "at tr",
+ "att r",
+ "ci l",
+ "c il",
+ "irect ory",
+ "av ing",
+ "avi ng",
+ "a ving",
+ "▁D el",
+ "▁De l",
+ "▁ Del",
+ "▁pr event",
+ "▁pre vent",
+ "▁prev ent",
+ "▁ prevent",
+ "id ade",
+ "ida de",
+ "idad e",
+ "i dade",
+ "gi t",
+ "g it",
+ "if orm",
+ "i form",
+ "ou ter",
+ "out er",
+ "oute r",
+ "o uter",
+ "in ct",
+ "inc t",
+ "le vel",
+ "lev el",
+ "at ever",
+ "ate ver",
+ "▁re pe",
+ "▁rep e",
+ "▁e xc",
+ "▁ex c",
+ "да р",
+ "д ар",
+ "St yle",
+ "▁Th omas",
+ "▁Thom as",
+ "el ine",
+ "eli ne",
+ "elin e",
+ "e line",
+ "▁ ж",
+ "un time",
+ "unt ime",
+ "▁l arg",
+ "▁la rg",
+ "▁lar g",
+ "▁ larg",
+ "Tr ue",
+ ". *",
+ "cre en",
+ "cr een",
+ "c reen",
+ "yle s",
+ "yl es",
+ "y les",
+ "▁trans l",
+ "▁tran sl",
+ "▁С о",
+ "ens ions",
+ "ension s",
+ "ä l",
+ "is se",
+ "iss e",
+ "▁v olt",
+ "▁vo lt",
+ "▁vol t",
+ "ci ally",
+ "cial ly",
+ "ni k",
+ "n ik",
+ ". ]",
+ "▁St adt",
+ "▁Sta dt",
+ "▁Stad t",
+ "м ы",
+ "fil l",
+ "fi ll",
+ "f ill",
+ "lo v",
+ "l ov",
+ "▁\" /",
+ "▁ \"/",
+ "S p",
+ "▁A ir",
+ "Cal l",
+ "Ca ll",
+ "C all",
+ "▁n ur",
+ "▁nu r",
+ "Che ck",
+ "C heck",
+ "ien ce",
+ "i ence",
+ "ef ined",
+ "▁в ре",
+ "ł o",
+ "d z",
+ "▁о р",
+ "▁ ор",
+ "ik er",
+ "ike r",
+ "i ker",
+ "ow a",
+ "o wa",
+ "ови ч",
+ "о вич",
+ "r é",
+ "O L",
+ "▁li near",
+ "▁line ar",
+ "▁lin ear",
+ "▁linea r",
+ "▁ linear",
+ "▁ex port",
+ "▁exp ort",
+ "▁ export",
+ "ah r",
+ "a hr",
+ "ic ial",
+ "ici al",
+ "icia l",
+ "i cial",
+ "Re p",
+ "R ep",
+ "▁n atural",
+ "▁natur al",
+ "▁nat ural",
+ "▁ natural",
+ "▁c op",
+ "▁co p",
+ "▁ cop",
+ "▁} )",
+ "▁ })",
+ "ç ões",
+ "z z",
+ "Wh at",
+ "W hat",
+ "▁H ouse",
+ "▁Ho use",
+ "▁Hou se",
+ "Re f",
+ "R ef",
+ "in ger",
+ "ing er",
+ "inge r",
+ "▁t aking",
+ "▁tak ing",
+ "▁ta king",
+ "n ě",
+ "▁Ein z",
+ "▁d am",
+ "▁da m",
+ "▁ dam",
+ "▁iss ues",
+ "▁issue s",
+ "▁issu es",
+ "▁ issues",
+ "Bu ilder",
+ "Build er",
+ "ed it",
+ "edi t",
+ "e dit",
+ "▁p rz",
+ "▁pr z",
+ "pass word",
+ "Ge ner",
+ "Gen er",
+ "G ener",
+ "ri m",
+ "r im",
+ "▁p arts",
+ "▁par ts",
+ "▁part s",
+ "▁ parts",
+ "-- -",
+ "- --",
+ "ig inal",
+ "igin al",
+ "igi nal",
+ "▁S ci",
+ "▁Sc i",
+ "▁m other",
+ "▁mo ther",
+ "▁mot her",
+ "▁moth er",
+ "re a",
+ "r ea",
+ "▁cont ainer",
+ "▁contain er",
+ "▁ container",
+ "д я",
+ "▁I P",
+ "▁ IP",
+ "▁n one",
+ "▁no ne",
+ "▁non e",
+ "▁ none",
+ "▁follow ed",
+ "▁p le",
+ "▁pl e",
+ "▁ ple",
+ "▁me asure",
+ "▁meas ure",
+ "▁ measure",
+ "▁t out",
+ "▁to ut",
+ "▁tou t",
+ "▁ tout",
+ "Ex t",
+ "E xt",
+ "▁T V",
+ "▁ TV",
+ "▁ex plain",
+ "▁exp lain",
+ "▁expla in",
+ "▁expl ain",
+ "▁p aper",
+ "▁pa per",
+ "▁pap er",
+ "▁ paper",
+ "ст і",
+ "с ті",
+ "w s",
+ "W ik",
+ "▁m m",
+ "▁ mm",
+ "▁N orm",
+ "▁No rm",
+ "▁Nor m",
+ "▁Ser ver",
+ "▁Serv er",
+ "▁ Server",
+ "fo nt",
+ "fon t",
+ "f ont",
+ "ec ause",
+ "eca use",
+ "T R",
+ "▁б и",
+ "▁ би",
+ "L a",
+ "▁e ns",
+ "▁en s",
+ "▁ ens",
+ "▁re tr",
+ "▁r etr",
+ "▁ret r",
+ "▁S il",
+ "▁Si l",
+ "▁ Sil",
+ "▁se quence",
+ "▁sequ ence",
+ "▁ sequence",
+ "ar c",
+ "a rc",
+ "I V",
+ "z á",
+ "▁And roid",
+ "▁ Android",
+ "▁S uper",
+ "▁Su per",
+ "▁Sup er",
+ "▁ Super",
+ "▁r oz",
+ "▁ro z",
+ "▁ roz",
+ "ov ie",
+ "ovi e",
+ "o vie",
+ "O m",
+ "▁W ell",
+ "▁We ll",
+ "▁Wel l",
+ "▁ Well",
+ "ma ke",
+ "m ake",
+ "or ph",
+ "orp h",
+ "▁J er",
+ "▁Je r",
+ "▁R os",
+ "▁Ro s",
+ "re ference",
+ "refer ence",
+ "▁fe atures",
+ "▁feature s",
+ "▁ features",
+ "▁G er",
+ "▁Ge r",
+ "▁L eg",
+ "▁Le g",
+ "▁ Leg",
+ "▁l ate",
+ "▁la te",
+ "▁lat e",
+ "▁ late",
+ "▁add itional",
+ "▁addition al",
+ "▁f lo",
+ "▁fl o",
+ "▁е го",
+ "▁ его",
+ "▁alg orithm",
+ "▁ algorithm",
+ "B A",
+ "ka r",
+ "k ar",
+ "I P",
+ "]) ;",
+ "] );",
+ "▁app ears",
+ "▁appear s",
+ "▁appe ars",
+ "y w",
+ "▁t emp",
+ "▁te mp",
+ "▁tem p",
+ "▁ temp",
+ "▁aus si",
+ "met hod",
+ "m ethod",
+ "▁p et",
+ "▁pe t",
+ "▁ pet",
+ "st rap",
+ "str ap",
+ "stra p",
+ "ar ning",
+ "arn ing",
+ "▁c ut",
+ "▁cu t",
+ "▁ cut",
+ "▁S a",
+ "▁ Sa",
+ "▁t rack",
+ "▁tr ack",
+ "▁tra ck",
+ "▁trac k",
+ "▁ track",
+ "▁emp loy",
+ "▁in de",
+ "▁i nde",
+ "▁ind e",
+ "▁ inde",
+ "ra v",
+ "r av",
+ "▁gener ate",
+ "▁gene rate",
+ "▁ generate",
+ "be s",
+ "b es",
+ "ar ts",
+ "art s",
+ "St atus",
+ "Stat us",
+ "ug e",
+ "u ge",
+ "al is",
+ "ali s",
+ "a lis",
+ "▁over ride",
+ "▁overrid e",
+ "▁ override",
+ "▁f i",
+ "▁ fi",
+ "▁l ost",
+ "▁lo st",
+ "▁los t",
+ "▁ lost",
+ "ot ed",
+ "ote d",
+ "o ted",
+ "▁r oom",
+ "▁ro om",
+ "▁ room",
+ "▁c alls",
+ "▁cal ls",
+ "▁call s",
+ "▁cons ist",
+ "ре н",
+ "р ен",
+ "▁vill age",
+ "▁vil lage",
+ "▁villa ge",
+ "dis t",
+ "di st",
+ "d ist",
+ "▁te chn",
+ "▁tec hn",
+ "▁ techn",
+ "en za",
+ "enz a",
+ "▁ро з",
+ "▁р оз",
+ "▁ роз",
+ "▁C atalog",
+ "▁Cat alog",
+ "▁Catal og",
+ "▁be com",
+ "▁bec om",
+ "ro ws",
+ "row s",
+ "r ows",
+ "▁N el",
+ "▁Ne l",
+ "com ple",
+ "comp le",
+ "▁pr emi",
+ "▁pre mi",
+ "▁prem i",
+ "▁r ot",
+ "▁ro t",
+ "▁ rot",
+ "▁Web links",
+ "▁foot ball",
+ "▁ football",
+ "▁com par",
+ "▁comp ar",
+ "▁l ive",
+ "▁li ve",
+ "▁liv e",
+ "▁ live",
+ "ки х",
+ "к их",
+ "▁equ ival",
+ "ca pe",
+ "cap e",
+ "c ape",
+ "▁G en",
+ "▁Ge n",
+ "▁ Gen",
+ "nd er",
+ "nde r",
+ "n der",
+ "▁V is",
+ "▁Vi s",
+ "▁ Vis",
+ "▁be hind",
+ "▁beh ind",
+ "ge rs",
+ "ger s",
+ "g ers",
+ "vo ke",
+ "v oke",
+ "▁m edia",
+ "▁me dia",
+ "▁med ia",
+ "▁medi a",
+ "▁ media",
+ "E X",
+ "th at",
+ "tha t",
+ "t hat",
+ "▁s ono",
+ "▁so no",
+ "▁son o",
+ "▁ sono",
+ "▁my sql",
+ "▁mysq l",
+ "▁ mysql",
+ "e v",
+ "▁r ule",
+ "▁ru le",
+ "▁ rule",
+ "до в",
+ "д ов",
+ "ac c",
+ "a cc",
+ "▁W HERE",
+ "▁WH ERE",
+ "▁ WHERE",
+ "ен е",
+ "е не",
+ "Gr id",
+ "G rid",
+ "▁j ul",
+ "▁ju l",
+ "▁m ort",
+ "▁mo rt",
+ "▁mor t",
+ "▁ mort",
+ "▁gener ated",
+ "▁generate d",
+ "▁ generated",
+ "en cia",
+ "enc ia",
+ "enci a",
+ "ac ter",
+ "act er",
+ "cl ud",
+ "▁s cen",
+ "▁sc en",
+ "▁cl osed",
+ "▁close d",
+ "▁clos ed",
+ "▁clo sed",
+ "▁ closed",
+ "▁Mich ael",
+ "▁ Michael",
+ "▁m ount",
+ "▁mo unt",
+ "▁mou nt",
+ "▁ mount",
+ ")$ ,",
+ ") $,",
+ "▁d rop",
+ "▁dr op",
+ "▁dro p",
+ "▁ drop",
+ "▁com bin",
+ "▁comb in",
+ "to col",
+ "▁go es",
+ "▁g eb",
+ "▁ge b",
+ "▁ geb",
+ "M D",
+ "▁An ton",
+ "▁Ant on",
+ "▁Anto n",
+ "▁$ (\"",
+ "▁$( \"",
+ "Te m",
+ "T em",
+ "▁c a",
+ "▁ ca",
+ "▁in stru",
+ "▁inst ru",
+ "ed s",
+ "e ds",
+ "▁t ool",
+ "▁to ol",
+ "▁too l",
+ "▁ tool",
+ "my s",
+ "m ys",
+ "▁r oute",
+ "▁ro ute",
+ "▁rout e",
+ "▁rou te",
+ "▁ route",
+ "\") )",
+ "\" ))",
+ "пр е",
+ "п ре",
+ "▁f loat",
+ "▁flo at",
+ "▁ float",
+ "▁service s",
+ "▁serv ices",
+ "▁servi ces",
+ "▁ services",
+ "▁ч и",
+ "▁ чи",
+ "к і",
+ "emb ly",
+ "embl y",
+ "ak er",
+ "ake r",
+ "a ker",
+ "▁S on",
+ "▁So n",
+ "▁M ath",
+ "▁Ma th",
+ "▁Mat h",
+ "▁ Math",
+ "as se",
+ "ass e",
+ "ous ly",
+ "lic ations",
+ "lication s",
+ "▁r u",
+ "▁ ru",
+ "▁щ о",
+ "▁ що",
+ "▁Con st",
+ "▁Cons t",
+ "▁ Const",
+ "▁im medi",
+ "▁imm edi",
+ "F O",
+ "or o",
+ "o ro",
+ "▁p roduction",
+ "▁produ ction",
+ "▁product ion",
+ "▁ production",
+ "re i",
+ "r ei",
+ "▁j query",
+ "▁ jquery",
+ "an nt",
+ "ann t",
+ "▁Wh ile",
+ "▁s n",
+ "▁ sn",
+ "▁го ди",
+ "▁год и",
+ "Form at",
+ "For mat",
+ "▁s tar",
+ "▁st ar",
+ "▁sta r",
+ "▁ star",
+ "▁S en",
+ "▁Se n",
+ "▁k o",
+ "▁ ko",
+ "NA ME",
+ "N AME",
+ "▁p rés",
+ "▁pr és",
+ "▁pré s",
+ "▁ prés",
+ "ch a",
+ "c ha",
+ "wh at",
+ "w hat",
+ "om in",
+ "omi n",
+ "o min",
+ "end ant",
+ "enda nt",
+ "h y",
+ "▁ob serv",
+ "▁obser v",
+ "▁obs erv",
+ "▁ observ",
+ "▁p refer",
+ "▁pre fer",
+ "у н",
+ "▁con structor",
+ "▁construct or",
+ "▁constru ctor",
+ "▁ constructor",
+ "b s",
+ "▁m ac",
+ "▁ma c",
+ "▁ mac",
+ "▁B re",
+ "▁Br e",
+ "▁ Bre",
+ "▁Inst it",
+ "▁Ins tit",
+ "▁st ory",
+ "▁stor y",
+ "▁sto ry",
+ "▁ story",
+ "▁s ymbol",
+ "▁sym bol",
+ "▁ symbol",
+ "el es",
+ "ele s",
+ "e les",
+ "ß e",
+ "as ing",
+ "asi ng",
+ "a sing",
+ "▁w est",
+ "▁we st",
+ "▁ west",
+ "ia ns",
+ "ian s",
+ "i ans",
+ "▁m aster",
+ "▁ma ster",
+ "▁mas ter",
+ "▁ master",
+ "е з",
+ "▁w ays",
+ "▁way s",
+ "▁wa ys",
+ "▁ ways",
+ "b m",
+ "▁p ick",
+ "▁pi ck",
+ "▁pic k",
+ "▁ pick",
+ "▁de part",
+ "▁dep art",
+ "B ack",
+ "en k",
+ "li pse",
+ "lip se",
+ "▁m ath",
+ "▁ma th",
+ "▁mat h",
+ "▁ math",
+ "▁Fran cis",
+ "▁Franc is",
+ "▁Dec ember",
+ "f s",
+ "ru m",
+ "r um",
+ "▁develop ment",
+ "▁ development",
+ "L T",
+ "er nel",
+ "ern el",
+ "erne l",
+ "▁Tr ue",
+ "▁Tru e",
+ "▁ True",
+ "▁M ore",
+ "▁Mor e",
+ "▁Mo re",
+ "▁ More",
+ "ran gle",
+ "r angle",
+ "▁cond itions",
+ "▁condition s",
+ "Option s",
+ "Opt ions",
+ "O ptions",
+ "▁g li",
+ "▁gl i",
+ "▁oper ation",
+ "▁opera tion",
+ "▁ operation",
+ "é k",
+ "ach t",
+ "ac ht",
+ "a cht",
+ "ight s",
+ "igh ts",
+ "▁m ist",
+ "▁mi st",
+ "▁mis t",
+ "an da",
+ "and a",
+ "▁ener gy",
+ "▁energ y",
+ "▁ energy",
+ "▁ж е",
+ "▁ же",
+ "▁w omen",
+ "▁wo men",
+ "ak t",
+ "a kt",
+ "▁C H",
+ "▁ CH",
+ "ge bra",
+ "geb ra",
+ "▁me et",
+ "i u",
+ "we ll",
+ "wel l",
+ "w ell",
+ "ö l",
+ "▁govern ment",
+ "▁J os",
+ "▁Jo s",
+ "ie g",
+ "i eg",
+ "▁s yntax",
+ "▁syn tax",
+ "▁ syntax",
+ "fi x",
+ "f ix",
+ "▁P et",
+ "▁Pe t",
+ "j query",
+ "▁c ard",
+ "▁car d",
+ "▁ca rd",
+ "▁ card",
+ "▁pr incipal",
+ "▁princi pal",
+ "▁princip al",
+ "▁d ru",
+ "▁dr u",
+ "▁ dru",
+ "▁ter rit",
+ "▁п ов",
+ "▁по в",
+ "▁ пов",
+ "▁S S",
+ "▁ SS",
+ "ри и",
+ "tr es",
+ "tre s",
+ "t res",
+ "ag ne",
+ "agn e",
+ "ly ing",
+ "l ying",
+ "til de",
+ "t ilde",
+ "ber n",
+ "be rn",
+ "b ern",
+ "en ter",
+ "ent er",
+ "ente r",
+ "Pe r",
+ "P er",
+ "▁s omet",
+ "▁so met",
+ "▁some t",
+ "▁som et",
+ "Lo ad",
+ "li ce",
+ "lic e",
+ "l ice",
+ "▁s ous",
+ "▁so us",
+ "▁sou s",
+ "▁Lo uis",
+ "▁Lou is",
+ "▁ Louis",
+ "▁log ic",
+ "▁ logic",
+ "▁O ther",
+ "▁Ot her",
+ "▁ Other",
+ "▁c ir",
+ "▁ci r",
+ "▁ cir",
+ "é v",
+ "ch ron",
+ "chr on",
+ "▁h an",
+ "▁ha n",
+ "▁ han",
+ "▁m argin",
+ "▁mar gin",
+ "▁marg in",
+ "▁ margin",
+ "W indow",
+ "ère s",
+ "è res",
+ "ny ch",
+ "n ych",
+ "pu sh",
+ "pus h",
+ "p ush",
+ "bol ds",
+ "bold s",
+ "b olds",
+ "▁l ayout",
+ "▁lay out",
+ "▁ layout",
+ "▁[ `",
+ "Ch ar",
+ "C har",
+ "▁C ap",
+ "▁Ca p",
+ "▁ Cap",
+ "bolds ymbol",
+ "bold symbol",
+ "▁R oman",
+ "▁Ro man",
+ "▁Rom an",
+ "▁Roma n",
+ "▁M ax",
+ "▁Ma x",
+ "▁ Max",
+ ": (",
+ "▁C ode",
+ "▁Co de",
+ "▁ Code",
+ "is ing",
+ "isi ng",
+ "i sing",
+ "▁st ates",
+ "▁stat es",
+ "▁state s",
+ "▁sta tes",
+ "▁ states",
+ "▁ex isting",
+ "▁exist ing",
+ "su pport",
+ "sup port",
+ "supp ort",
+ "▁re search",
+ "▁res earch",
+ "lic ate",
+ "lica te",
+ "l icate",
+ "va ri",
+ "var i",
+ "v ari",
+ "▁b ij",
+ "▁bi j",
+ "▁ bij",
+ "▁a ppe",
+ "▁app e",
+ "▁ap pe",
+ "▁ appe",
+ "▁happ ens",
+ "▁happen s",
+ "\\ \"",
+ "▁conc ern",
+ "▁conce rn",
+ "we st",
+ "w est",
+ "▁sa ying",
+ "▁say ing",
+ "pi d",
+ "p id",
+ "▁rec ogn",
+ "▁ recogn",
+ "▁H et",
+ "▁He t",
+ "Ch ild",
+ "▁c s",
+ "▁ cs",
+ "\\ ,",
+ "▁c lean",
+ "▁cle an",
+ "▁ clean",
+ "le ctions",
+ "lect ions",
+ "lection s",
+ "ac cess",
+ "acc ess",
+ "a ccess",
+ "в у",
+ "пр о",
+ "п ро",
+ "ac ity",
+ "aci ty",
+ "a city",
+ "▁O ff",
+ "▁Of f",
+ "▁ Off",
+ "▁eas ily",
+ "è que",
+ "▁j ako",
+ "▁ja ko",
+ "▁jak o",
+ "▁i z",
+ "▁ iz",
+ "▁H a",
+ "▁ Ha",
+ "▁D et",
+ "▁De t",
+ "▁ Det",
+ "▁for ma",
+ "▁form a",
+ "sch e",
+ "sc he",
+ "s che",
+ "swer s",
+ "sw ers",
+ "s wers",
+ "▁of fer",
+ "▁off er",
+ "qu ired",
+ "quire d",
+ "qui red",
+ "User s",
+ "Use rs",
+ "Us ers",
+ "U sers",
+ "▁su bst",
+ "▁sub st",
+ "▁subs t",
+ "▁ subst",
+ "> (",
+ "▁g round",
+ "▁gr ound",
+ "▁gro und",
+ "▁ ground",
+ "un n",
+ "u nn",
+ "ro d",
+ "r od",
+ "sp e",
+ "s pe",
+ "urs or",
+ "▁le ave",
+ "er k",
+ "▁t al",
+ "▁ta l",
+ "▁ tal",
+ "▁b ottom",
+ "▁bot tom",
+ "▁bott om",
+ "▁ bottom",
+ "I O",
+ "▁pop ular",
+ "▁popula r",
+ "▁popul ar",
+ "ig o",
+ "i go",
+ "▁T ime",
+ "▁Tim e",
+ "▁Ti me",
+ "▁ Time",
+ "val ues",
+ "value s",
+ "valu es",
+ "▁L oc",
+ "▁Lo c",
+ "▁ Loc",
+ "▁C lub",
+ "▁Cl ub",
+ "▁an che",
+ "▁anc he",
+ "▁anch e",
+ "▁ anche",
+ "ia ł",
+ "i ał",
+ "і ї",
+ "Om ega",
+ "▁loc ated",
+ "▁locate d",
+ "▁ located",
+ "U rl",
+ "▁E sp",
+ "▁Es p",
+ "▁ Esp",
+ "л ы",
+ "ц ь",
+ "ul ate",
+ "ula te",
+ "u late",
+ "▁j oin",
+ "▁jo in",
+ "▁ join",
+ "av es",
+ "ave s",
+ "a ves",
+ "ve t",
+ "v et",
+ "li o",
+ "l io",
+ "re move",
+ "rem ove",
+ "▁t oken",
+ "▁to ken",
+ "▁ token",
+ "▁op tim",
+ "▁opt im",
+ "▁ optim",
+ "▁c laim",
+ "▁cla im",
+ "olog ical",
+ "▁c ss",
+ "▁cs s",
+ "▁ css",
+ "▁al though",
+ "▁ although",
+ "▁p riv",
+ "▁pr iv",
+ "▁pri v",
+ "▁ priv",
+ "▁B a",
+ "ü l",
+ "entic ation",
+ "enti cation",
+ "▁v en",
+ "▁ve n",
+ "▁ ven",
+ "Ser ver",
+ "Serv er",
+ "▁C ong",
+ "▁Con g",
+ "▁Co ng",
+ "NE T",
+ "N ET",
+ "CO N",
+ "C ON",
+ "d t",
+ "per ties",
+ "pert ies",
+ "▁e pis",
+ "▁ep is",
+ "wik ipedia",
+ "▁eng ine",
+ "▁ engine",
+ "▁f er",
+ "▁fe r",
+ "▁ fer",
+ "get Element",
+ "▁C la",
+ "▁Cl a",
+ "▁ Cla",
+ "ř í",
+ "▁r om",
+ "▁ro m",
+ "▁ rom",
+ "var epsilon",
+ "vare psilon",
+ "▁pr ime",
+ "▁prim e",
+ "▁pri me",
+ "▁ prime",
+ "is try",
+ "ist ry",
+ "istr y",
+ "pe cted",
+ "pect ed",
+ "pec ted",
+ "p ected",
+ "or age",
+ "ora ge",
+ "o rage",
+ "▁t ouch",
+ "▁to uch",
+ "▁tou ch",
+ "▁ touch",
+ "▁[ '",
+ "▁ ['",
+ "▁d an",
+ "▁da n",
+ "▁ dan",
+ "E m",
+ "ac iones",
+ "acion es",
+ "aci ones",
+ "a ciones",
+ "Ca n",
+ "C an",
+ "▁w hom",
+ "▁wh om",
+ "▁who m",
+ "▁be havior",
+ "▁behav ior",
+ "▁str ings",
+ "▁string s",
+ "▁ strings",
+ "▁E urop",
+ "▁Euro p",
+ "▁Eu rop",
+ "▁Eur op",
+ "▁R om",
+ "▁Ro m",
+ "ci rc",
+ "cir c",
+ "c irc",
+ "▁p un",
+ "▁pu n",
+ "▁reg ister",
+ "▁ register",
+ "b untu",
+ "ra in",
+ "rai n",
+ "r ain",
+ "O b",
+ "T A",
+ "▁s ometimes",
+ "▁some times",
+ "▁somet imes",
+ "▁m ent",
+ "▁me nt",
+ "▁men t",
+ "▁ ment",
+ "▁in teger",
+ "▁inte ger",
+ "▁ integer",
+ "▁J ac",
+ "▁Ja c",
+ "▁ Jac",
+ "le gate",
+ "leg ate",
+ "ot hing",
+ "oth ing",
+ "o thing",
+ "▁s ound",
+ "▁so und",
+ "▁sou nd",
+ "▁ sound",
+ "la ces",
+ "lace s",
+ "lac es",
+ "l aces",
+ "▁Б а",
+ "r b",
+ "d i",
+ "ле ния",
+ "▁them selves",
+ "▁B lack",
+ "▁Bl ack",
+ "▁Bla ck",
+ "▁ Black",
+ "▁s ettings",
+ "▁sett ings",
+ "▁setting s",
+ "▁ settings",
+ "▁n orm",
+ "▁no rm",
+ "▁nor m",
+ "▁ norm",
+ "▁r uns",
+ "▁run s",
+ "▁ru ns",
+ "▁N OT",
+ "▁NO T",
+ "▁ NOT",
+ "K E",
+ "▁per haps",
+ "▁ Я",
+ "▁m ol",
+ "▁mo l",
+ "▁a ns",
+ "▁an s",
+ "▁ ans",
+ "at re",
+ "atr e",
+ "a tre",
+ "▁D ies",
+ "▁Die s",
+ "▁Di es",
+ "To ken",
+ "T oken",
+ "an ie",
+ "ani e",
+ "a nie",
+ "▁all owed",
+ "▁allow ed",
+ "▁allo wed",
+ "▁ allowed",
+ "R ange",
+ "▁G ro",
+ "▁Gr o",
+ "vi a",
+ "v ia",
+ "ut orial",
+ "uto rial",
+ "utor ial",
+ "ens or",
+ "enso r",
+ "est ival",
+ "esti val",
+ "); \r",
+ ") ;\r",
+ "кра ї",
+ "▁turn ed",
+ "▁tur ned",
+ "sc ope",
+ "scop e",
+ "s cope",
+ "▁b ien",
+ "▁bi en",
+ "= $",
+ "▁ext ension",
+ "▁extens ion",
+ "▁ extension",
+ "at ore",
+ "ator e",
+ "ato re",
+ "▁Р о",
+ "▁spec ify",
+ "ed u",
+ "e du",
+ "Dat os",
+ "D atos",
+ "▁st ored",
+ "▁stor ed",
+ "▁store d",
+ "▁sto red",
+ "▁p arse",
+ "▁par se",
+ "▁ parse",
+ "▁an swers",
+ "▁answer s",
+ "▁ans wers",
+ "il ls",
+ "ill s",
+ "▁he ard",
+ "▁hear d",
+ "l u",
+ "▁T HE",
+ "▁TH E",
+ "▁ THE",
+ "▁g én",
+ "▁gé n",
+ "▁f ul",
+ "▁fu l",
+ "▁ ful",
+ "e z",
+ "▁P rem",
+ "▁Pr em",
+ "▁Pre m",
+ "th en",
+ "the n",
+ "t hen",
+ "d p",
+ "сь кого",
+ "сько го",
+ "ськ ого",
+ "▁S i",
+ "▁ Si",
+ "ç o",
+ "Ed it",
+ "E dit",
+ "кі в",
+ "к ів",
+ "▁Л и",
+ "▁S ing",
+ "▁Si ng",
+ "▁Sin g",
+ "▁ Sing",
+ "▁c ateg",
+ "▁cat eg",
+ "Eq u",
+ "E qu",
+ "▁g uer",
+ "▁gu er",
+ "▁ guer",
+ "W idth",
+ "▁Christ ian",
+ "st at",
+ "sta t",
+ "s tat",
+ "W rite",
+ "▁w oman",
+ "▁wo man",
+ "wo od",
+ "w ood",
+ "V is",
+ "ра з",
+ "▁$ $\\",
+ "▁$$ \\",
+ "ode r",
+ "od er",
+ "o der",
+ "▁b ool",
+ "▁bo ol",
+ "▁ bool",
+ "▁intern ational",
+ "но сть",
+ "ност ь",
+ "нос ть",
+ "▁Rich ard",
+ "▁Ric hard",
+ "▁add ition",
+ "▁Mus ic",
+ "▁ Music",
+ "▁a ber",
+ "▁ab er",
+ "t ó",
+ "▁h ier",
+ "▁hi er",
+ "ug h",
+ "u gh",
+ "▁p ob",
+ "▁po b",
+ "▁t ables",
+ "▁table s",
+ "▁tab les",
+ "▁ta bles",
+ "▁ tables",
+ "D o",
+ "▁high er",
+ "ps i",
+ "p si",
+ "r á",
+ "▁act ive",
+ "▁activ e",
+ "▁ active",
+ "▁T able",
+ "▁Ta ble",
+ "▁Tab le",
+ "▁ Table",
+ "њ е",
+ "▁de scription",
+ "▁des cription",
+ "▁descri ption",
+ "▁descript ion",
+ "▁ description",
+ "▁se emed",
+ "▁see med",
+ "▁seem ed",
+ "ís t",
+ "í st",
+ "▁my self",
+ "▁m enu",
+ "▁me nu",
+ "▁men u",
+ "▁ menu",
+ "de l",
+ "d el",
+ "▁ ž",
+ "el e",
+ "e le",
+ "A ut",
+ "▁г ру",
+ "mu t",
+ "m ut",
+ "oo n",
+ "o on",
+ "as c",
+ "a sc",
+ "bu g",
+ "b ug",
+ "▁m oved",
+ "▁mov ed",
+ "▁mo ved",
+ "▁move d",
+ "C L",
+ "▁data s",
+ "▁dat as",
+ "▁ datas",
+ "S O",
+ "о ло",
+ "▁Ge org",
+ "▁re ach",
+ "▁r each",
+ ": \"",
+ "▁e valu",
+ "▁ev alu",
+ "▁eval u",
+ "▁ evalu",
+ "▁H el",
+ "▁He l",
+ "▁ Hel",
+ "▁R iver",
+ "▁Riv er",
+ "▁Ri ver",
+ "▁А р",
+ "▁ Ар",
+ "// //",
+ "/// /",
+ "/ ///",
+ "▁s ets",
+ "▁se ts",
+ "▁set s",
+ "▁ sets",
+ "▁O lymp",
+ "Ad apter",
+ ". '",
+ "ov ern",
+ "over n",
+ "ove rn",
+ "o vern",
+ "▁L ord",
+ "▁Lo rd",
+ "▁Lor d",
+ "! --",
+ "jp g",
+ "j pg",
+ "im ento",
+ "iment o",
+ "imen to",
+ "▁Pro f",
+ "▁Pr of",
+ "▁ach ieve",
+ "▁achiev e",
+ "} :",
+ "▁in cor",
+ "▁inc or",
+ "▁o nder",
+ "▁on der",
+ "▁onde r",
+ "▁ onder",
+ "en gl",
+ "eng l",
+ "AB LE",
+ "▁M ary",
+ "▁Mar y",
+ "▁Ma ry",
+ "▁w aren",
+ "▁war en",
+ "▁wa ren",
+ "la ge",
+ "lag e",
+ "l age",
+ "De c",
+ "D ec",
+ "анг л",
+ "en cias",
+ "enc ias",
+ "encia s",
+ "enci as",
+ "ле й",
+ "л ей",
+ "▁M achine",
+ "▁Mach ine",
+ "▁ Machine",
+ "▁А н",
+ "ud a",
+ "u da",
+ "▁ ś",
+ "▁X X",
+ "▁ XX",
+ "on ly",
+ "ле ние",
+ "▁tamb ién",
+ "ne j",
+ "n ej",
+ "▁rel ative",
+ "▁relativ e",
+ "▁ relative",
+ "▁h ours",
+ "▁ho urs",
+ "▁hour s",
+ "▁ind eed",
+ "▁inde ed",
+ "un do",
+ "und o",
+ "in gu",
+ "ing u",
+ "ar ea",
+ "are a",
+ "a rea",
+ "▁C reate",
+ "▁Cre ate",
+ "▁ Create",
+ "be it",
+ "bei t",
+ "▁rem oved",
+ "▁remove d",
+ "▁remov ed",
+ "ma ster",
+ "mas ter",
+ "maste r",
+ "m aster",
+ "ha us",
+ "h aus",
+ "▁B ern",
+ "▁Be rn",
+ "▁Ber n",
+ "▁sp eed",
+ "▁spe ed",
+ "▁ speed",
+ "▁B ay",
+ "▁Ba y",
+ "▁A tt",
+ "▁At t",
+ "▁ Att",
+ "▁N one",
+ "▁No ne",
+ "▁Non e",
+ "▁ None",
+ "app lication",
+ "ü d",
+ "▁f it",
+ "▁fi t",
+ "▁ fit",
+ "▁M aria",
+ "▁Mar ia",
+ "▁Ma ria",
+ "▁Mari a",
+ "▁n ord",
+ "▁no rd",
+ "▁nor d",
+ "▁s plit",
+ "▁sp lit",
+ "▁spl it",
+ "▁ split",
+ "▁st ru",
+ "▁str u",
+ "▁ stru",
+ "▁o fficial",
+ "▁off icial",
+ "▁offic ial",
+ "▁offici al",
+ "▁exec ute",
+ "▁execut e",
+ "▁ execute",
+ "ou ve",
+ "ouv e",
+ "o uve",
+ "{ {",
+ "▁A p",
+ "▁ Ap",
+ "▁к у",
+ "▁ ку",
+ "I L",
+ "▁ ^",
+ "di m",
+ "d im",
+ "▁set up",
+ "▁ setup",
+ "с к",
+ "▁sh are",
+ "▁ share",
+ "▁min utes",
+ "▁minute s",
+ "gl e",
+ "g le",
+ "oc o",
+ "o co",
+ "st ell",
+ "ste ll",
+ "▁C oun",
+ "▁Co un",
+ "▁Cou n",
+ "▁tem per",
+ "▁temp er",
+ "▁ temper",
+ "ke it",
+ "сь кий",
+ "a o",
+ "▁L ong",
+ "▁Lo ng",
+ "▁ Long",
+ "( &",
+ "ка н",
+ "к ан",
+ "▁d ens",
+ "▁de ns",
+ "▁den s",
+ "▁ dens",
+ "Bu t",
+ "B ut",
+ "X X",
+ "DA TE",
+ "DAT E",
+ "D ATE",
+ "ga n",
+ "g an",
+ ".) .",
+ ". ).",
+ "▁en try",
+ "▁ent ry",
+ "▁entr y",
+ "▁ entry",
+ "inst all",
+ "▁з на",
+ "▁ зна",
+ "▁S om",
+ "▁So m",
+ "Comm and",
+ "ße n",
+ "ß en",
+ "▁start ing",
+ "▁star ting",
+ "▁s to",
+ "▁st o",
+ "▁ sto",
+ "I G",
+ "▁min im",
+ "▁mi nim",
+ "▁mini m",
+ "▁exp licit",
+ "▁explic it",
+ "▁by tes",
+ "▁byte s",
+ "▁ bytes",
+ "▁par ty",
+ "▁part y",
+ "▁ party",
+ "to ber",
+ "t ober",
+ "▁G rand",
+ "▁Gr and",
+ "▁Gra nd",
+ "▁Gran d",
+ "▁V or",
+ "▁Vo r",
+ "▁ Vor",
+ "▁l eur",
+ "▁le ur",
+ "▁ leur",
+ "Doc ument",
+ "D ocument",
+ "er c",
+ "e rc",
+ "ens ive",
+ "C P",
+ "en v",
+ "▁arg uments",
+ "▁argument s",
+ "▁ arguments",
+ "▁G ran",
+ "▁Gr an",
+ "▁Gra n",
+ "ar ily",
+ "ari ly",
+ "▁l in",
+ "▁li n",
+ "▁ lin",
+ "t n",
+ "( -",
+ "ge q",
+ "g eq",
+ "▁F amil",
+ "▁Fa mil",
+ "▁Fam il",
+ "▁ Famil",
+ "▁Б о",
+ "▁t our",
+ "▁to ur",
+ "▁tou r",
+ "▁n av",
+ "▁na v",
+ "▁ nav",
+ "▁proper ly",
+ "▁M rs",
+ "▁Mr s",
+ "▁M el",
+ "▁Me l",
+ "▁sc ale",
+ "▁scal e",
+ "▁ scale",
+ "ast ic",
+ "d s",
+ "▁S ir",
+ "▁Si r",
+ "▁Ch urch",
+ "}^ {\\",
+ "}^{ \\",
+ "} ^{\\",
+ "yo u",
+ "y ou",
+ "/ .",
+ "S o",
+ "▁br ought",
+ "▁r ole",
+ "▁ro le",
+ "▁rol e",
+ "▁ role",
+ "▁S ur",
+ "▁Su r",
+ "▁ Sur",
+ "▁f ond",
+ "▁fo nd",
+ "▁fon d",
+ "▁g es",
+ "▁ge s",
+ "▁ ges",
+ "ż e",
+ "et en",
+ "ete n",
+ "e ten",
+ "▁é tait",
+ "▁ét ait",
+ "▁ était",
+ "SE R",
+ "S ER",
+ "▁ко торы",
+ "▁кото ры",
+ "▁equ ation",
+ "▁ equation",
+ "as px",
+ "asp x",
+ "▁A fr",
+ "▁Af r",
+ "▁d it",
+ "▁di t",
+ "▁ dit",
+ "em pty",
+ "emp ty",
+ "empt y",
+ "al ement",
+ "ale ment",
+ "alem ent",
+ "a lement",
+ "wr ap",
+ "w rap",
+ "▁B et",
+ "▁Be t",
+ "▁col lect",
+ "▁coll ect",
+ "▁colle ct",
+ "▁ collect",
+ "▁g it",
+ "▁gi t",
+ "▁ git",
+ "▁v ie",
+ "▁vi e",
+ "▁ vie",
+ "▁. .",
+ "▁ ..",
+ "ро й",
+ "▁< ?",
+ "▁ ",
+ "▁ed uc",
+ "k l",
+ "ens is",
+ "▁O R",
+ "▁ OR",
+ "▁H i",
+ "▁ Hi",
+ "▁C our",
+ "▁Co ur",
+ "▁Cou r",
+ "б ы",
+ "ce rt",
+ "cer t",
+ "c ert",
+ "▁G es",
+ "▁Ge s",
+ "ess or",
+ "esso r",
+ "Ma in",
+ "M ain",
+ "▁ лю",
+ "ca de",
+ "c ade",
+ "do t",
+ "d ot",
+ "au gh",
+ "aug h",
+ "a ugh",
+ "hi b",
+ "h ib",
+ "▁autom atically",
+ "▁auto matically",
+ "▁automat ically",
+ "▁automatic ally",
+ "▁sp ir",
+ "pr esent",
+ "pre sent",
+ "pres ent",
+ "▁Febru ary",
+ "▁Februar y",
+ "▁E lle",
+ "▁El le",
+ "▁Ell e",
+ "cus tom",
+ "c ustom",
+ "▁pro get",
+ "▁admin istr",
+ "▁administ r",
+ "A A",
+ "▁b orn",
+ "▁bo rn",
+ "▁bor n",
+ "▁ born",
+ "▁Col lege",
+ "▁Colleg e",
+ "▁Coll ege",
+ "at hol",
+ "ath ol",
+ "` )",
+ "ier re",
+ "▁r an",
+ "▁ra n",
+ "▁ ran",
+ "▁prof ession",
+ "▁profess ion",
+ "og en",
+ "oge n",
+ "o gen",
+ "}_ {\\",
+ "}_{ \\",
+ "} _{\\",
+ "▁act ivity",
+ "▁activ ity",
+ "▁ activity",
+ "▁sc roll",
+ "▁scr oll",
+ "▁ scroll",
+ "▁pro ve",
+ "▁pr ove",
+ "▁prov e",
+ "ibr ary",
+ "i brary",
+ "er ies",
+ "erie s",
+ "eri es",
+ "e ries",
+ "Re ad",
+ "R ead",
+ "ye ar",
+ "y ear",
+ "▁l ang",
+ "▁la ng",
+ "▁lan g",
+ "▁ lang",
+ "De t",
+ "D et",
+ "▁k new",
+ "▁kn ew",
+ "▁kne w",
+ "▁prote cted",
+ "▁protect ed",
+ "▁prot ected",
+ "▁ protected",
+ "▁w or",
+ "▁wo r",
+ "▁ wor",
+ "▁e ffic",
+ "▁eff ic",
+ "▁r ég",
+ "▁ré g",
+ "▁the ory",
+ "▁ theory",
+ "▁pub lished",
+ "▁publish ed",
+ "re al",
+ "rea l",
+ "▁T our",
+ "▁To ur",
+ "▁dur ante",
+ "▁durant e",
+ "ä s",
+ "▁pos itive",
+ "▁posit ive",
+ "▁for ward",
+ "▁ forward",
+ "▁R el",
+ "▁Re l",
+ "▁ Rel",
+ "{ \"",
+ "par k",
+ "p ark",
+ "▁U m",
+ "▁e er",
+ "en ta",
+ "ent a",
+ "▁i mag",
+ "▁im ag",
+ "но ї",
+ "pi el",
+ "pie l",
+ "p iel",
+ "▁j Query",
+ "▁ jQuery",
+ "is me",
+ "ism e",
+ "ch ni",
+ "chn i",
+ "or gan",
+ "org an",
+ "▁ar gs",
+ "▁arg s",
+ "▁ args",
+ "oi r",
+ "o ir",
+ "he im",
+ "ri an",
+ "ria n",
+ "r ian",
+ "el ess",
+ "eles s",
+ "ele ss",
+ "e less",
+ "us es",
+ "use s",
+ "ди н",
+ "д ин",
+ "ic ión",
+ "ici ón",
+ "ició n",
+ "i ción",
+ "▁ind ust",
+ "▁indu st",
+ "▁ indust",
+ "▁w ish",
+ "▁wis h",
+ "án y",
+ "á ny",
+ "oc a",
+ "o ca",
+ "▁ang ular",
+ "▁ angular",
+ "ie ved",
+ "ieve d",
+ "iev ed",
+ "▁occ ur",
+ "▁oc cur",
+ "SE LECT",
+ "on ia",
+ "oni a",
+ "o nia",
+ "ad min",
+ "▁B est",
+ "▁Be st",
+ "▁Bes t",
+ "▁ Best",
+ "▁э то",
+ "о гра",
+ "▁l oss",
+ "▁lo ss",
+ "▁los s",
+ "▁ loss",
+ "▁b al",
+ "▁ba l",
+ "▁ bal",
+ "▁Р ос",
+ "▁Ро с",
+ "▁care er",
+ "▁п е",
+ "▁ пе",
+ "I X",
+ "▁f all",
+ "▁fa ll",
+ "▁fal l",
+ "▁ fall",
+ "▁R ob",
+ "▁Ro b",
+ "▁ Rob",
+ "▁O P",
+ "▁ OP",
+ "en ed",
+ "ene d",
+ "e ned",
+ "graph ics",
+ "▁c oming",
+ "▁com ing",
+ "▁co ming",
+ "▁ coming",
+ "Up date",
+ "▁d ied",
+ "▁di ed",
+ "▁die d",
+ "ed en",
+ "ede n",
+ "e den",
+ "▁a bs",
+ "▁ab s",
+ "▁ abs",
+ "▁in ner",
+ "▁inn er",
+ "▁inne r",
+ "▁ inner",
+ "▁t rav",
+ "▁tr av",
+ "▁tra v",
+ "сто я",
+ "z ą",
+ "é p",
+ "▁Gr oup",
+ "▁Gro up",
+ "▁ Group",
+ "▁c el",
+ "▁ce l",
+ "▁ cel",
+ "▁st uff",
+ "▁situ ation",
+ "▁$ {",
+ "▁ ${",
+ "ac le",
+ "a cle",
+ "▁pur pose",
+ "▁F ire",
+ "▁Fir e",
+ "▁ Fire",
+ "▁O h",
+ "▁ Oh",
+ "▁Se cond",
+ "▁Sec ond",
+ "▁ Second",
+ "▁up load",
+ "▁ upload",
+ "os tał",
+ "ost ał",
+ "osta ł",
+ "ю щи",
+ "Aut h",
+ "A uth",
+ "▁show ing",
+ "▁sho wing",
+ "▁complet ely",
+ "▁complete ly",
+ "av el",
+ "ave l",
+ "a vel",
+ "b d",
+ "▁pro ced",
+ "▁proc ed",
+ "▁ Ö",
+ "cont rol",
+ "contr ol",
+ "▁th ank",
+ "▁than k",
+ "und red",
+ "▁t om",
+ "▁to m",
+ "▁ tom",
+ "▁ex amples",
+ "▁example s",
+ "▁exam ples",
+ "▁ examples",
+ "▁re member",
+ "▁rem ember",
+ "▁ра бо",
+ "▁ рабо",
+ "▁poss ib",
+ "▁det ect",
+ "▁p oor",
+ "▁po or",
+ "▁O p",
+ "▁ Op",
+ "▁cent ury",
+ "▁ century",
+ "ut ter",
+ "utt er",
+ "▁lo gin",
+ "▁log in",
+ "▁ login",
+ "un st",
+ "uns t",
+ "Out put",
+ "▁other wise",
+ "la n",
+ "l an",
+ "ту р",
+ "т ур",
+ "▁с ов",
+ "▁со в",
+ "▁ сов",
+ "▁gr oups",
+ "▁group s",
+ "▁gro ups",
+ "▁ groups",
+ "ri p",
+ "r ip",
+ "▁s hell",
+ "▁sh ell",
+ "▁she ll",
+ "▁ shell",
+ "▁d istrict",
+ "▁dist rict",
+ "▁rec ords",
+ "▁record s",
+ "▁si è",
+ "fort un",
+ "en ty",
+ "ent y",
+ "▁T re",
+ "▁Tr e",
+ "▁ch anging",
+ "▁chang ing",
+ "сле д",
+ "aug ht",
+ "augh t",
+ "▁de ep",
+ "▁ deep",
+ "sub set",
+ "ag y",
+ "a gy",
+ "en dar",
+ "end ar",
+ "enda r",
+ "ja x",
+ "j ax",
+ "O M",
+ "E l",
+ "im ate",
+ "ima te",
+ "imat e",
+ "i mate",
+ "ar do",
+ "ard o",
+ "▁p lot",
+ "▁pl ot",
+ "▁ plot",
+ "▁vis it",
+ "▁b ug",
+ "▁bu g",
+ "▁ bug",
+ "▁в се",
+ "▁вс е",
+ "▁op ened",
+ "▁open ed",
+ "▁re pla",
+ "▁rep la",
+ "▁Hen ry",
+ "▁p p",
+ "▁ pp",
+ "ba s",
+ "b as",
+ "▁d ark",
+ "▁dar k",
+ "▁ dark",
+ "▁Mart in",
+ "▁ Martin",
+ "▁re source",
+ "▁res ource",
+ "▁ resource",
+ "il ing",
+ "ili ng",
+ "i ling",
+ "▁w atch",
+ "▁wat ch",
+ "▁ watch",
+ "re place",
+ "rep lace",
+ "▁re lease",
+ "▁ release",
+ "Lo cation",
+ "Loc ation",
+ "L ocation",
+ "▁le arning",
+ "▁learn ing",
+ "▁lear ning",
+ "▁ learning",
+ "me nu",
+ "men u",
+ "m enu",
+ "▁all ows",
+ "▁allow s",
+ "▁allo ws",
+ "ъ р",
+ "L ength",
+ "▁wh atever",
+ "▁what ever",
+ "▁p ages",
+ "▁page s",
+ "▁pa ges",
+ "▁pag es",
+ "▁ pages",
+ "▁comp iler",
+ "▁compile r",
+ "▁ compiler",
+ "▁так же",
+ "▁P an",
+ "▁Pa n",
+ "▁ Pan",
+ "comm and",
+ "▁ro ad",
+ "▁ road",
+ "▁un less",
+ "▁ unless",
+ "` ?",
+ "▁dis cover",
+ "▁disc over",
+ "▁disco ver",
+ "▁о н",
+ "▁ он",
+ "} ]",
+ "bo ur",
+ "b our",
+ "▁C ould",
+ "▁Co uld",
+ "▁Cou ld",
+ "▁ Could",
+ "▁re gex",
+ "▁reg ex",
+ "▁ regex",
+ "▁p s",
+ "▁ ps",
+ "C D",
+ "и з",
+ "▁w ife",
+ "am enti",
+ "ament i",
+ "amen ti",
+ "▁f air",
+ "▁fa ir",
+ "▁D B",
+ "▁ DB",
+ "▁C up",
+ "▁Cu p",
+ "en en",
+ "ene n",
+ "e nen",
+ "aj ax",
+ "aja x",
+ "a jax",
+ "oth èque",
+ "▁se iner",
+ "▁sein er",
+ "▁seine r",
+ "▁sei ner",
+ "ic ker",
+ "ick er",
+ "i cker",
+ "á m",
+ "ex change",
+ "ol es",
+ "ole s",
+ "o les",
+ "I F",
+ "▁Д о",
+ "oh n",
+ "o hn",
+ "▁g row",
+ "▁gr ow",
+ "▁gro w",
+ "▁T hus",
+ "▁Th us",
+ "sp ec",
+ "spe c",
+ "s pec",
+ "▁h atte",
+ "▁ha tte",
+ "▁hat te",
+ "# ,",
+ "all el",
+ "alle l",
+ "▁r ate",
+ "▁ra te",
+ "▁rat e",
+ "▁ rate",
+ "▁cent ral",
+ "▁ central",
+ "▁V an",
+ "▁Va n",
+ "if orn",
+ "R un",
+ "▁stud y",
+ "▁X ML",
+ "▁ XML",
+ "▁C he",
+ "▁Ch e",
+ "▁ Che",
+ "▁be aut",
+ "mi d",
+ "m id",
+ "▁adv ance",
+ "V er",
+ "т я",
+ "▁h ands",
+ "▁hand s",
+ "▁han ds",
+ "▁l ay",
+ "▁la y",
+ "▁ lay",
+ "▁ š",
+ "▁O S",
+ "▁ OS",
+ "▁{ }",
+ "▁ {}",
+ "Pr e",
+ "P re",
+ "▁H all",
+ "▁Ha ll",
+ "▁Hal l",
+ "im p",
+ "i mp",
+ "▁s un",
+ "▁su n",
+ "▁ sun",
+ "▁st eps",
+ "▁ste ps",
+ "▁step s",
+ "▁ steps",
+ "▁j ud",
+ "▁ju d",
+ "▁ jud",
+ "qu i",
+ "q ui",
+ "▁b oot",
+ "▁bo ot",
+ "▁ boot",
+ "▁% >",
+ "▁В а",
+ "no st",
+ "nos t",
+ "n ost",
+ "▁n em",
+ "▁ne m",
+ "▁ nem",
+ "▁p en",
+ "▁pe n",
+ "▁ pen",
+ "Op en",
+ "O pen",
+ "▁ch urch",
+ "ко н",
+ "к он",
+ "▁a verage",
+ "▁aver age",
+ "▁ave rage",
+ "▁com ments",
+ "▁comm ents",
+ "▁comment s",
+ "▁ comments",
+ "▁correspond ing",
+ "lev ant",
+ "▁b ed",
+ "▁be d",
+ "▁ bed",
+ "▁mean ing",
+ "V ersion",
+ "Lin k",
+ "L ink",
+ "be l",
+ "b el",
+ "▁ext ract",
+ "▁extra ct",
+ "▁extr act",
+ "▁ extract",
+ "ś ć",
+ "▁I V",
+ "▁ IV",
+ "▁I r",
+ "▁comp uter",
+ "▁comput er",
+ "▁compute r",
+ "▁a ffect",
+ "▁af fect",
+ "▁aff ect",
+ "▁С та",
+ "▁Ст а",
+ "A X",
+ "so rt",
+ "s ort",
+ "▁s pecies",
+ "▁spe cies",
+ "▁spec ies",
+ "▁specie s",
+ "▁ species",
+ "▁O per",
+ "▁Op er",
+ "▁ Oper",
+ "▁h ash",
+ "▁ha sh",
+ "▁has h",
+ "▁ hash",
+ "ch es",
+ "che s",
+ "c hes",
+ "▁Einz eln",
+ "▁Einzel n",
+ "▁ke ys",
+ "▁key s",
+ "▁ keys",
+ "▁mar zo",
+ "▁inter pret",
+ "▁interpre t",
+ "ho od",
+ "h ood",
+ "▁co ordin",
+ "▁coord in",
+ "ö s",
+ "ra ge",
+ "rag e",
+ "r age",
+ "et z",
+ "e tz",
+ "iz a",
+ "i za",
+ "де р",
+ "д ер",
+ "ü t",
+ "^ *",
+ "▁mod ify",
+ "▁term in",
+ "▁ter min",
+ "▁ termin",
+ "▁c red",
+ "▁cre d",
+ "▁cr ed",
+ "▁ cred",
+ "zo n",
+ "z on",
+ "ну ю",
+ "н ую",
+ "▁m ie",
+ "▁mi e",
+ "▁' '",
+ "▁ ''",
+ "▁M os",
+ "▁Mo s",
+ "▁conne cted",
+ "▁connect ed",
+ "▁conn ected",
+ "▁ connected",
+ "N O",
+ "▁comp ile",
+ "▁ compile",
+ "▁\" \\",
+ "▁ \"\\",
+ "▁c at",
+ "▁ca t",
+ "▁ cat",
+ "f iddle",
+ "ut a",
+ "u ta",
+ "Acc ess",
+ "Ac cess",
+ "A ccess",
+ "▁S to",
+ "▁St o",
+ "▁ Sto",
+ "▁B ur",
+ "▁Bu r",
+ "▁n orth",
+ "▁nor th",
+ "G amma",
+ "▁al loc",
+ "▁all oc",
+ "▁allo c",
+ "▁ alloc",
+ "In it",
+ "I nit",
+ "▁L ink",
+ "▁Lin k",
+ "▁ Link",
+ "ial ize",
+ "iali ze",
+ "Im pl",
+ "Imp l",
+ "ou pe",
+ "oup e",
+ "rop ri",
+ "▁G old",
+ "▁Go ld",
+ "▁Gol d",
+ "▁s olo",
+ "▁so lo",
+ "▁sol o",
+ "▁D ist",
+ "▁Dis t",
+ "▁Di st",
+ "▁ Dist",
+ ", -",
+ "na v",
+ "n av",
+ "▁al ert",
+ "▁ale rt",
+ "▁ alert",
+ "es is",
+ "esi s",
+ "▁O s",
+ "▁ Os",
+ "// /",
+ "/ //",
+ "▁f eb",
+ "▁fe b",
+ "▁- ->",
+ "▁-- >",
+ "▁ -->",
+ "fo ot",
+ "foo t",
+ "f oot",
+ "▁F ried",
+ "▁Fr ied",
+ "▁Fri ed",
+ "▁Einzeln ach",
+ "▁Einzel nach",
+ "▁re v",
+ "▁r ev",
+ "▁ rev",
+ "ze it",
+ "▁S tat",
+ "▁St at",
+ "▁Sta t",
+ "▁ Stat",
+ "▁S eg",
+ "▁Se g",
+ "▁ Seg",
+ "▁b lo",
+ "▁bl o",
+ "▁ blo",
+ "wi ck",
+ "w ick",
+ "E L",
+ "ca ption",
+ "cap tion",
+ "capt ion",
+ "he ader",
+ "head er",
+ "▁pres ident",
+ "▁presiden t",
+ "▁mult ip",
+ "▁multi p",
+ "▁mul tip",
+ "▁ multip",
+ "▁Einzelnach weise",
+ "▁se ine",
+ "▁sein e",
+ "▁sei ne",
+ "? ”",
+ "Func tion",
+ "Fun ction",
+ "F unction",
+ "▁St and",
+ "▁Sta nd",
+ "▁Stan d",
+ "▁ Stand",
+ "▁F unction",
+ "▁Fun ction",
+ "▁ Function",
+ "▁? >",
+ "▁ ?>",
+ "▁B ill",
+ "▁Bi ll",
+ "▁Bil l",
+ "▁s pect",
+ "▁sp ect",
+ "▁spe ct",
+ "▁spec t",
+ "▁ spect",
+ "▁re direct",
+ "▁red irect",
+ "▁ redirect",
+ "ru pt",
+ "rup t",
+ "r upt",
+ "▁w alk",
+ "▁wal k",
+ "▁ walk",
+ "в ши",
+ "spring framework",
+ "pl ace",
+ "pla ce",
+ "p lace",
+ "é ho",
+ "Ent ity",
+ "▁Ser vice",
+ "▁Serv ice",
+ "▁ Service",
+ "in te",
+ "int e",
+ "▁tr aining",
+ "▁tra ining",
+ "▁train ing",
+ "▁ training",
+ "▁( `",
+ "▁ (`",
+ "фо р",
+ "ф ор",
+ "▁к ра",
+ "▁ кра",
+ "au r",
+ "a ur",
+ "▁f etch",
+ "▁fet ch",
+ "▁ fetch",
+ "▁ †",
+ "▁m ême",
+ "▁ même",
+ "▁( '",
+ "▁ ('",
+ "at ively",
+ "ative ly",
+ "ativ ely",
+ "▁exec ut",
+ "ä ch",
+ "▁Catalog ue",
+ "ba sed",
+ "base d",
+ "bas ed",
+ "b ased",
+ "Att ribute",
+ "▁s pring",
+ "▁sp ring",
+ "▁spr ing",
+ "▁ spring",
+ "ph one",
+ "phon e",
+ "т ра",
+ "▁п и",
+ "▁ пи",
+ "те ра",
+ "тер а",
+ "т ера",
+ "▁` \\",
+ "▁O d",
+ "On e",
+ "O ne",
+ "se nd",
+ "sen d",
+ "s end",
+ "bo n",
+ "b on",
+ "▁ °",
+ "M O",
+ "▁as king",
+ "▁ask ing",
+ "▁o ù",
+ "▁ing år",
+ "▁test ing",
+ "▁ testing",
+ "▁ф а",
+ "▁ фа",
+ "▁B ook",
+ "▁Bo ok",
+ "▁ Book",
+ "im m",
+ "i mm",
+ "▁pro gress",
+ "▁ progress",
+ "br o",
+ "b ro",
+ "F irst",
+ "▁p hot",
+ "▁ph ot",
+ "▁O N",
+ "▁ ON",
+ "Tem plate",
+ "Temp late",
+ "develop er",
+ "an not",
+ "ann ot",
+ "anno t",
+ "▁> =",
+ "▁ >=",
+ "miss ion",
+ "m ission",
+ "▁k tó",
+ "▁ któ",
+ "p c",
+ "ba ch",
+ "b ach",
+ "ze nt",
+ "zen t",
+ "z ent",
+ "ue d",
+ "u ed",
+ "▁o nes",
+ "▁on es",
+ "▁one s",
+ "▁ ones",
+ "ј и",
+ "▁r out",
+ "▁ro ut",
+ "▁rou t",
+ "▁ rout",
+ "▁К и",
+ "Pos t",
+ "Po st",
+ "P ost",
+ "ці ї",
+ "ц ії",
+ "▁V ir",
+ "▁Vi r",
+ "ne k",
+ "n ek",
+ "ag ing",
+ "agi ng",
+ "agin g",
+ "a ging",
+ "▁о к",
+ "▁ ок",
+ "iz ont",
+ "izo nt",
+ "izon t",
+ "▁ag osto",
+ "▁ago sto",
+ "▁cho ose",
+ "▁ choose",
+ "▁ \r",
+ "▁system s",
+ "▁syst ems",
+ "lo ss",
+ "los s",
+ "l oss",
+ "ien te",
+ "ient e",
+ "i ente",
+ "▁C re",
+ "▁Cr e",
+ "▁ Cre",
+ "▁con tra",
+ "▁cont ra",
+ "▁contr a",
+ "▁ contra",
+ "um s",
+ "u ms",
+ "▁begin ning",
+ "em y",
+ "e my",
+ "ist ics",
+ "istic s",
+ "isti cs",
+ "▁s erved",
+ "▁ser ved",
+ "▁serv ed",
+ "▁serve d",
+ "Do wn",
+ "D own",
+ "option s",
+ "opt ions",
+ "o ptions",
+ "▁G overn",
+ "▁Go vern",
+ "▁B Y",
+ "▁ BY",
+ "▁j est",
+ "▁je st",
+ "▁ jest",
+ "t é",
+ "▁cont inue",
+ "▁contin ue",
+ "▁continu e",
+ "▁ continue",
+ "pe rs",
+ "per s",
+ "p ers",
+ "▁eas ier",
+ "▁c os",
+ "▁co s",
+ "▁ cos",
+ "es so",
+ "ess o",
+ "> >",
+ "Ne t",
+ "N et",
+ "▁B or",
+ "▁Bo r",
+ "▁C r",
+ "▁ Cr",
+ "▁trans fer",
+ "▁C SS",
+ "▁CS S",
+ "▁ CSS",
+ "▁fin ns",
+ "▁х о",
+ "▁ хо",
+ "us ername",
+ "user name",
+ "▁con stru",
+ "▁const ru",
+ "▁p ain",
+ "▁pa in",
+ "▁T em",
+ "▁Te m",
+ "▁ Tem",
+ "▁spec ified",
+ "▁b rit",
+ "▁br it",
+ "▁ brit",
+ "ски е",
+ "с кие",
+ "ir k",
+ "ra pper",
+ "rap per",
+ "r apper",
+ "▁c ounter",
+ "▁co unter",
+ "▁count er",
+ "▁coun ter",
+ "▁ counter",
+ "▁[ \"",
+ "▁ [\"",
+ "ode d",
+ "od ed",
+ "o ded",
+ "да н",
+ "д ан",
+ "pro perty",
+ "ha rd",
+ "har d",
+ "h ard",
+ "ist rict",
+ "istr ict",
+ ") /",
+ "▁P our",
+ "▁Po ur",
+ "▁W here",
+ "▁Wh ere",
+ "▁Whe re",
+ "▁ Where",
+ "▁= ==",
+ "▁== =",
+ "▁ ===",
+ "▁s owie",
+ "▁so wie",
+ "▁sow ie",
+ "▁П ро",
+ "▁d ess",
+ "▁de ss",
+ "▁des s",
+ "▁ dess",
+ "▁t ras",
+ "▁tr as",
+ "▁tra s",
+ "▁ tras",
+ "▁у ча",
+ "▁O ver",
+ "▁ Over",
+ "no te",
+ "not e",
+ "n ote",
+ "▁Amer ica",
+ "▁ America",
+ "c p",
+ "▁gr ande",
+ "▁gra nde",
+ "▁gran de",
+ "▁grand e",
+ "M e",
+ ") -",
+ "Mod e",
+ "Mo de",
+ "M ode",
+ "▁pass ing",
+ "▁pas sing",
+ "▁g iving",
+ "▁giv ing",
+ "▁gi ving",
+ "C l",
+ "} /",
+ "Me nu",
+ "Men u",
+ "M enu",
+ "! !",
+ "ang ular",
+ "angu lar",
+ "▁la unch",
+ "▁ launch",
+ "var phi",
+ "▁Joh ann",
+ "▁Johan n",
+ "▁for each",
+ "▁fore ach",
+ "▁ foreach",
+ "r ó",
+ "se qu",
+ "seq u",
+ "s equ",
+ "if i",
+ "i fi",
+ "A m",
+ "ar p",
+ "a rp",
+ "▁b uffer",
+ "▁buf fer",
+ "▁buff er",
+ "▁ buffer",
+ "▁n i",
+ "▁ ni",
+ "▁m ix",
+ "▁mi x",
+ "▁ mix",
+ "▁M useum",
+ "▁Muse um",
+ "▁me ant",
+ "▁mean t",
+ "as i",
+ "a si",
+ "▁k an",
+ "▁ka n",
+ "▁ kan",
+ "пра в",
+ "п рав",
+ "Com p",
+ "Co mp",
+ "C omp",
+ "is toire",
+ "ist oire",
+ "isto ire",
+ "if ul",
+ "i ful",
+ "je r",
+ "j er",
+ "iss ions",
+ "ission s",
+ "Re source",
+ "Res ource",
+ "▁в оз",
+ "▁во з",
+ "▁S T",
+ "▁ ST",
+ "▁sol utions",
+ "▁solution s",
+ "▁be long",
+ "▁bel ong",
+ "▁As soci",
+ "▁Ass oci",
+ "▁ Associ",
+ "c f",
+ "▁M är",
+ "▁g rid",
+ "▁gr id",
+ "▁ grid",
+ "M ult",
+ "▁require s",
+ "▁requ ires",
+ "k k",
+ "▁t each",
+ "▁te ach",
+ "▁tea ch",
+ "eme inde",
+ "emein de",
+ "▁s quare",
+ "▁squ are",
+ "▁ square",
+ "▁ко ман",
+ "▁ком ан",
+ "▁E vent",
+ "▁Ev ent",
+ "▁Even t",
+ "▁ Event",
+ "▁r ules",
+ "▁rule s",
+ "▁ru les",
+ "▁ rules",
+ "▁b ur",
+ "▁bu r",
+ "▁ bur",
+ "▁e ing",
+ "▁ein g",
+ "▁ eing",
+ "▁M ai",
+ "▁Ma i",
+ "▁n am",
+ "▁na m",
+ "▁ nam",
+ "▁s lä",
+ "▁sl ä",
+ "hö r",
+ "h ör",
+ "▁t ip",
+ "▁ti p",
+ "▁ tip",
+ "▁Liter atur",
+ "▁s cope",
+ "▁sc ope",
+ "▁scop e",
+ "▁ scope",
+ "over line",
+ "▁ex it",
+ "▁ exit",
+ ") ?",
+ "be t",
+ "b et",
+ "▁v ict",
+ "▁vi ct",
+ "▁vic t",
+ "Of f",
+ "O ff",
+ "▁appro xim",
+ "▁G eb",
+ "▁Ge b",
+ "kt op",
+ "k top",
+ "he it",
+ "▁ Ю",
+ "tem plate",
+ "temp late",
+ "ро н",
+ "р он",
+ "▁u no",
+ "▁un o",
+ "▁ uno",
+ "Ser v",
+ "Se rv",
+ "S erv",
+ "▁frame work",
+ "▁ framework",
+ "oper ator",
+ "opera tor",
+ "▁gener ally",
+ "▁general ly",
+ "▁h undred",
+ "▁d ivers",
+ "▁di vers",
+ "▁div ers",
+ "▁diver s",
+ "ov i",
+ "o vi",
+ "▁r és",
+ "▁ré s",
+ "▁ rés",
+ "ab s",
+ "a bs",
+ "▁g al",
+ "▁ga l",
+ "▁ gal",
+ "ça is",
+ "ç ais",
+ "▁fe et",
+ "▁fee t",
+ "▁v irtual",
+ "▁virt ual",
+ "▁ virtual",
+ "cz y",
+ "c zy",
+ "ск у",
+ "с ку",
+ ". /",
+ "h u",
+ "an cy",
+ "anc y",
+ "▁recomm end",
+ "▁п ід",
+ "▁пі д",
+ "▁m oney",
+ "▁mon ey",
+ "▁mo ney",
+ "▁vers ions",
+ "▁version s",
+ "▁ versions",
+ "▁hel ps",
+ "▁help s",
+ "▁H or",
+ "▁Ho r",
+ "▁ Hor",
+ "Item s",
+ "It ems",
+ "lo ok",
+ "l ook",
+ "con nect",
+ "conne ct",
+ "conn ect",
+ "an ges",
+ "ang es",
+ "ange s",
+ "View Controller",
+ "el ijk",
+ "elij k",
+ "eli jk",
+ "e lijk",
+ "▁occ up",
+ "▁oc cup",
+ "▁ occup",
+ "▁ed itor",
+ "▁edit or",
+ "▁ editor",
+ "au to",
+ "aut o",
+ "a uto",
+ "ö g",
+ "▁second s",
+ "▁sec onds",
+ "▁ seconds",
+ "▁ob vious",
+ "v m",
+ "ak es",
+ "ake s",
+ "a kes",
+ "▁g egen",
+ "▁ge gen",
+ "▁geg en",
+ "▁t il",
+ "▁ti l",
+ "▁ til",
+ "ject ion",
+ "je ction",
+ "j ection",
+ "ле ння",
+ "лен ня",
+ "▁oper ations",
+ "▁operation s",
+ "▁E ast",
+ "og y",
+ "o gy",
+ "▁P olit",
+ "▁Pol it",
+ "▁Po lit",
+ "ut en",
+ "ute n",
+ "u ten",
+ "▁Jose ph",
+ "\" `",
+ "▁Comp any",
+ "▁ Company",
+ "▁call back",
+ "▁ callback",
+ "▁s en",
+ "▁se n",
+ "▁ sen",
+ "cc ión",
+ "cció n",
+ "c ción",
+ "▁associ ated",
+ "▁associate d",
+ "▁cont aining",
+ "▁contain ing",
+ "▁pract ice",
+ "elij ke",
+ "elijk e",
+ "e lijke",
+ "ok e",
+ "o ke",
+ "ér a",
+ "é ra",
+ "un s",
+ "u ns",
+ "an ta",
+ "ant a",
+ "ve y",
+ "v ey",
+ "z u",
+ "▁B es",
+ "▁Be s",
+ "▁F lor",
+ "▁Fl or",
+ "▁Flo r",
+ "me m",
+ "m em",
+ "yc z",
+ "y cz",
+ "▁arch itect",
+ "▁an ni",
+ "▁ann i",
+ "▁ anni",
+ "▁cont act",
+ "▁ contact",
+ "Y PE",
+ "▁C as",
+ "▁Ca s",
+ "▁по лу",
+ "▁пол у",
+ "ov o",
+ "o vo",
+ "▁b ring",
+ "▁br ing",
+ "▁con cept",
+ "▁conce pt",
+ "▁j s",
+ "▁ js",
+ "▁Refer encias",
+ "em ble",
+ "emb le",
+ "embl e",
+ "▁ н",
+ "▁supp orted",
+ "▁support ed",
+ "▁ supported",
+ "Bi g",
+ "B ig",
+ "▁H ans",
+ "▁Ha ns",
+ "▁Han s",
+ "er v",
+ "e rv",
+ "▁M aj",
+ "▁Ma j",
+ "▁ar riv",
+ "▁arr iv",
+ "▁H ave",
+ "▁Ha ve",
+ "▁Hav e",
+ "▁ Have",
+ "▁prob ability",
+ "▁probabil ity",
+ "▁P op",
+ "▁Po p",
+ "▁ Pop",
+ "▁P ass",
+ "▁Pa ss",
+ "▁Pas s",
+ "▁ Pass",
+ "to ken",
+ "tok en",
+ "t oken",
+ "Pro vider",
+ "▁R a",
+ "Re ader",
+ "Read er",
+ "oot h",
+ "oo th",
+ "o oth",
+ "la p",
+ "l ap",
+ "▁ass ist",
+ "ad ow",
+ "ado w",
+ "▁t ests",
+ "▁test s",
+ "▁ tests",
+ "сс и",
+ "с си",
+ "▁k ing",
+ "▁ki ng",
+ "▁kin g",
+ "▁ king",
+ "lang le",
+ "lan gle",
+ "l angle",
+ "▁S um",
+ "▁Su m",
+ "▁ Sum",
+ "O IN",
+ "▁se curity",
+ "▁sec urity",
+ "▁ security",
+ "ni s",
+ "n is",
+ ".. /",
+ ". ./",
+ "▁bas ic",
+ "▁ basic",
+ "un ity",
+ "uni ty",
+ "unit y",
+ "` :",
+ "▁ко то",
+ "ko w",
+ "k ow",
+ "▁Bibli othèque",
+ "as ion",
+ "asi on",
+ "al o",
+ "a lo",
+ "if est",
+ "ife st",
+ "i fest",
+ "▁nov embre",
+ "▁p eu",
+ "▁pe u",
+ "▁ Ж",
+ "en schaft",
+ "ensch aft",
+ "cl us",
+ "c lus",
+ "ј у",
+ "He ight",
+ "ú n",
+ "▁t ur",
+ "▁tu r",
+ "▁ide as",
+ "▁idea s",
+ "▁c es",
+ "▁ce s",
+ "▁ ces",
+ "fr ak",
+ "fra k",
+ "f rak",
+ "▁pre mier",
+ "▁prem ier",
+ "▁premi er",
+ "it ation",
+ "ita tion",
+ "itat ion",
+ "▁s é",
+ "HT ML",
+ "▁Ro yal",
+ "▁Roy al",
+ "сь кої",
+ "сько ї",
+ "▁by te",
+ "▁ byte",
+ "P S",
+ "▁s egu",
+ "▁se gu",
+ "▁seg u",
+ "▁ segu",
+ "in en",
+ "ine n",
+ "i nen",
+ "▁Gre at",
+ "▁К у",
+ "▁ex ternal",
+ "▁ext ernal",
+ "▁extern al",
+ "▁ external",
+ "T itle",
+ "To p",
+ "T op",
+ "Pro cess",
+ "Proc ess",
+ "it ät",
+ "itä t",
+ "▁` /",
+ "▁se cret",
+ "▁sec ret",
+ "▁secre t",
+ "▁ secret",
+ "pos itory",
+ "▁pot ential",
+ "▁B ud",
+ "▁Bu d",
+ "name s",
+ "na mes",
+ "nam es",
+ "n ames",
+ "as ons",
+ "ason s",
+ "aso ns",
+ "stack exchange",
+ "back ground",
+ "пе р",
+ "п ер",
+ "со в",
+ "с ов",
+ "aft er",
+ "af ter",
+ "a fter",
+ "▁p ero",
+ "▁per o",
+ "▁pe ro",
+ "▁so ftware",
+ "▁soft ware",
+ "▁ software",
+ "▁s ed",
+ "▁se d",
+ "▁ sed",
+ "▁array s",
+ "▁arr ays",
+ "tm p",
+ "t mp",
+ "▁a sp",
+ "▁as p",
+ "▁ asp",
+ "sc ale",
+ "scal e",
+ "▁L at",
+ "▁La t",
+ "▁ Lat",
+ "an al",
+ "ana l",
+ "a nal",
+ "▁g em",
+ "▁ge m",
+ "▁ gem",
+ "P U",
+ "▁Al tri",
+ "▁Alt ri",
+ "Th at",
+ "T hat",
+ "▁Н и",
+ "if act",
+ "ifa ct",
+ "i fact",
+ "Add ress",
+ "▁s outh",
+ "▁so uth",
+ "▁sou th",
+ "▁sout h",
+ "▁form ula",
+ "▁Col leg",
+ "▁Coll eg",
+ "▁і н",
+ "▁ ін",
+ "kt ion",
+ "k tion",
+ "▁s ac",
+ "▁sa c",
+ "S H",
+ "aj o",
+ "a jo",
+ "et c",
+ "e tc",
+ "v c",
+ "` ](",
+ "▁D ur",
+ "▁Du r",
+ "▁М е",
+ "▁Sm ith",
+ "▁ Smith",
+ "it ems",
+ "ite ms",
+ "item s",
+ "C K",
+ "el o",
+ "e lo",
+ "▁pl ugin",
+ "▁plug in",
+ "▁ plugin",
+ "▁s erie",
+ "▁se rie",
+ "▁ser ie",
+ "▁ serie",
+ "ien ne",
+ "ienn e",
+ "i enne",
+ "▁и ли",
+ "Ma r",
+ "M ar",
+ "▁Im age",
+ "▁ Image",
+ "go t",
+ "g ot",
+ "an das",
+ "and as",
+ "anda s",
+ "▁mat ches",
+ "▁match es",
+ "▁ matches",
+ "▁w orth",
+ "▁wor th",
+ "▁ worth",
+ "▁D eb",
+ "▁De b",
+ "▁ Deb",
+ "▁c ache",
+ "▁ca che",
+ "▁ cache",
+ "▁f elt",
+ "▁fe lt",
+ "▁fel t",
+ "er sch",
+ "ers ch",
+ "iz es",
+ "ize s",
+ "i zes",
+ "Op er",
+ "O per",
+ "▁Jah re",
+ "▁Jahr e",
+ "▁Ja hre",
+ "▁comm une",
+ "▁commun e",
+ "th read",
+ "▁n y",
+ "▁ ny",
+ "de c",
+ "d ec",
+ "ou w",
+ "o uw",
+ "▁sur face",
+ "▁P or",
+ "▁Po r",
+ "▁St reet",
+ "▁Stre et",
+ "пр и",
+ "п ри",
+ "▁c andid",
+ "▁can did",
+ "▁cand id",
+ "▁Re turn",
+ "▁Ret urn",
+ "▁ Return",
+ "▁K om",
+ "▁Ko m",
+ "gr u",
+ "g ru",
+ "▁т и",
+ "▁ ти",
+ "[ \\",
+ "▁dep ends",
+ "▁depend s",
+ "▁in flu",
+ "▁inf lu",
+ "▁infl u",
+ "▁to wards",
+ "▁toward s",
+ "ain ed",
+ "ai ned",
+ "aine d",
+ "a ined",
+ "▁r ank",
+ "▁ran k",
+ "▁ rank",
+ "▁Janu ar",
+ "▁com ponents",
+ "▁compon ents",
+ "▁component s",
+ "▁ components",
+ "ge st",
+ "ges t",
+ "g est",
+ "getElement ById",
+ "▁check ed",
+ "▁ checked",
+ "air s",
+ "ai rs",
+ "a irs",
+ "jo in",
+ "j oin",
+ "▁d ead",
+ "▁de ad",
+ "▁h it",
+ "▁hi t",
+ "▁ hit",
+ "én y",
+ "é ny",
+ "▁equ ivalent",
+ "▁equival ent",
+ "▁П ре",
+ "▁app ropri",
+ "Pa ss",
+ "P ass",
+ "▁pr imer",
+ "▁prim er",
+ "▁pri mer",
+ "▁prime r",
+ "engl isch",
+ "▁app ar",
+ "▁ap par",
+ "▁D uring",
+ "▁Du ring",
+ "▁Dur ing",
+ "▁know ledge",
+ "▁tr igger",
+ "▁trig ger",
+ "▁ trigger",
+ "▁c ore",
+ "▁cor e",
+ "▁co re",
+ "▁ core",
+ "▁O l",
+ "▁P rodu",
+ "▁Pro du",
+ "▁Pr odu",
+ "▁ Produ",
+ "▁F ern",
+ "▁Fe rn",
+ "▁Fer n",
+ "▁ Fern",
+ "▁на ча",
+ "▁ нача",
+ "T e",
+ "▁M ot",
+ "▁Mo t",
+ "er ve",
+ "erv e",
+ "тв о",
+ "т во",
+ "▁m id",
+ "▁mi d",
+ "▁ mid",
+ "▁fin ally",
+ "▁final ly",
+ "air es",
+ "ai res",
+ "aire s",
+ "a ires",
+ "▁es pecially",
+ "▁espe cially",
+ "▁especial ly",
+ "▁t ut",
+ "▁tu t",
+ "▁rece ive",
+ "ad re",
+ "adr e",
+ "▁ne igh",
+ "▁nei gh",
+ "kt et",
+ "kte t",
+ "il de",
+ "ild e",
+ "▁rad io",
+ "▁radi o",
+ "▁ radio",
+ "▁d river",
+ "▁dr iver",
+ "▁drive r",
+ "▁dri ver",
+ "▁driv er",
+ "▁ driver",
+ "ли сь",
+ "end encies",
+ "enden cies",
+ "▁I E",
+ "▁ IE",
+ "▁s aved",
+ "▁sa ved",
+ "▁sav ed",
+ "▁save d",
+ "▁ saved",
+ "ff ect",
+ "ffe ct",
+ "f fect",
+ "▁Way back",
+ "ia t",
+ "i at",
+ "▁p adding",
+ "▁pad ding",
+ "▁ padding",
+ "wind ow",
+ "w indow",
+ "ти че",
+ "▁m ur",
+ "▁mu r",
+ "ac tor",
+ "act or",
+ "a ctor",
+ "▁H an",
+ "▁Ha n",
+ "он аль",
+ "она ль",
+ "о наль",
+ "▁g ar",
+ "▁ga r",
+ "▁ gar",
+ "▁famil jen",
+ "ó s",
+ "▁n ationale",
+ "▁national e",
+ "▁nation ale",
+ "▁nat ionale",
+ "▁p ré",
+ "▁pr é",
+ "de d",
+ "d ed",
+ "on al",
+ "ona l",
+ "o nal",
+ "▁Pres ident",
+ "▁\\ ,",
+ "▁ \\,",
+ "▁place d",
+ "▁pla ced",
+ "er ni",
+ "ern i",
+ "▁sign al",
+ "▁sig nal",
+ "▁ signal",
+ "na b",
+ "n ab",
+ "h m",
+ "Mo n",
+ "M on",
+ "▁v s",
+ "▁ vs",
+ "S C",
+ "▁proget ti",
+ "▁ Ü",
+ "▁for ms",
+ "▁form s",
+ "▁ forms",
+ "▁message s",
+ "▁mess ages",
+ "▁ messages",
+ "in f",
+ "us ers",
+ "use rs",
+ "user s",
+ "u sers",
+ "GE T",
+ "G ET",
+ "▁d els",
+ "▁de ls",
+ "▁del s",
+ "Col lection",
+ "Coll ection",
+ "Collect ion",
+ "▁G ood",
+ "▁Go od",
+ "▁ Good",
+ "▁May be",
+ "▁ Maybe",
+ "▁com pr",
+ "▁comp r",
+ "▁lar ger",
+ "▁large r",
+ "▁larg er",
+ "gr es",
+ "gre s",
+ "g res",
+ "ap er",
+ "ape r",
+ "a per",
+ "▁П ри",
+ "un des",
+ "und es",
+ "unde s",
+ "▁s ea",
+ "▁se a",
+ "▁S pring",
+ "▁Sp ring",
+ "▁Spr ing",
+ "▁ Spring",
+ "ul o",
+ "u lo",
+ "▁me chan",
+ "▁s ans",
+ "▁sa ns",
+ "▁san s",
+ "G B",
+ "Val id",
+ "▁comm unic",
+ "▁commun ic",
+ "▁ communic",
+ "▁p ra",
+ "▁pr a",
+ "vi er",
+ "vie r",
+ "v ier",
+ "▁С е",
+ "▁a in",
+ "▁ai n",
+ "▁ ain",
+ "ту ра",
+ "тур а",
+ "ko m",
+ "k om",
+ "sk iego",
+ "ski ego",
+ "skie go",
+ "ко во",
+ "ков о",
+ "к ово",
+ "ad ata",
+ "ada ta",
+ "a data",
+ "▁Р е",
+ "▁bo olean",
+ "▁ boolean",
+ "se ts",
+ "set s",
+ "s ets",
+ "▁eff ort",
+ ". [",
+ "▁z ostał",
+ "P A",
+ "▁V ict",
+ "▁Vi ct",
+ "▁Vic t",
+ "S D",
+ "ow ał",
+ "owa ł",
+ "▁e mb",
+ "▁em b",
+ "▁ emb",
+ "▁pr ima",
+ "▁prim a",
+ "▁pri ma",
+ "▁h our",
+ "▁ho ur",
+ "▁ hour",
+ "sub section",
+ "▁F ort",
+ "▁For t",
+ "▁Fo rt",
+ "math frak",
+ "ig in",
+ "igi n",
+ "i gin",
+ "G L",
+ ") +",
+ "f i",
+ "▁an ci",
+ "▁anc i",
+ "▁ anci",
+ "▁p an",
+ "▁pa n",
+ "▁ pan",
+ "\\ )",
+ "▁l ug",
+ "▁lu g",
+ "▁dep loy",
+ "▁ deploy",
+ "do main",
+ "dom ain",
+ "▁s light",
+ "▁sl ight",
+ "JS ON",
+ "J SON",
+ "▁mor ning",
+ "▁h i",
+ "▁ hi",
+ "▁comp are",
+ "▁compar e",
+ "▁ compare",
+ "ij e",
+ "i je",
+ "▁bl ue",
+ "▁ blue",
+ "▁A c",
+ "▁ Ac",
+ "▁m iddle",
+ "▁ middle",
+ "an den",
+ "and en",
+ "ande n",
+ "▁sh ared",
+ "▁share d",
+ "▁ shared",
+ "▁C amp",
+ "▁Cam p",
+ "▁Ca mp",
+ "▁ Á",
+ "ound ed",
+ "oun ded",
+ "u w",
+ "ier ung",
+ "St ack",
+ "▁e ines",
+ "▁ein es",
+ "▁eine s",
+ "▁D a",
+ "▁ Da",
+ "li j",
+ "l ij",
+ "en ti",
+ "ent i",
+ "▁ й",
+ "U til",
+ "▁exper ience",
+ "▁experien ce",
+ "▁a wait",
+ "▁aw ait",
+ "▁ await",
+ "ul s",
+ "u ls",
+ "▁request s",
+ "▁requ ests",
+ "▁ requests",
+ "▁im pos",
+ "▁imp os",
+ "▁const raint",
+ "▁ constraint",
+ "Ch ange",
+ "em ph",
+ "emp h",
+ "бе р",
+ "б ер",
+ "▁An other",
+ "C ustom",
+ "▁signific ant",
+ "▁significa nt",
+ "c r",
+ "▁mill ion",
+ "re ek",
+ "ree k",
+ "▁d alla",
+ "▁da lla",
+ "▁dal la",
+ "▁dall a",
+ "▁G erm",
+ "▁Ge rm",
+ "▁Ger m",
+ "ot al",
+ "ota l",
+ "o tal",
+ "at eur",
+ "ate ur",
+ "bt n",
+ "b tn",
+ "▁th inking",
+ "▁think ing",
+ "▁thin king",
+ "▁inter val",
+ "▁ interval",
+ "on ne",
+ "onn e",
+ "▁l iv",
+ "▁li v",
+ "▁ liv",
+ "() :",
+ "( ):",
+ "▁В е",
+ "o e",
+ "▁E v",
+ "me ta",
+ "met a",
+ "m eta",
+ "▁b road",
+ "▁bro ad",
+ "Re m",
+ "R em",
+ "ap ply",
+ "app ly",
+ "a pply",
+ "▁cou ple",
+ "▁coup le",
+ "▁te chni",
+ "▁techn i",
+ "id ades",
+ "ida des",
+ "idad es",
+ "idade s",
+ "▁go al",
+ "▁ goal",
+ "▁C D",
+ "▁ CD",
+ "ha b",
+ "h ab",
+ "▁ex plan",
+ "▁exp lan",
+ "▁expla n",
+ "▁expl an",
+ "an ner",
+ "ann er",
+ "anne r",
+ "▁B ecause",
+ "bl og",
+ "blo g",
+ "b log",
+ "include graphics",
+ "▁vo ice",
+ "▁ voice",
+ "▁M ap",
+ "▁Ma p",
+ "▁ Map",
+ "vent ion",
+ "ven tion",
+ "v ention",
+ "S ession",
+ "▁L iens",
+ "▁Li ens",
+ "▁Lie ns",
+ "▁s or",
+ "▁so r",
+ "c ategory",
+ "ash ington",
+ "▁Mär z",
+ "po p",
+ "p op",
+ "il let",
+ "ill et",
+ "ille t",
+ "▁z wei",
+ "▁zwe i",
+ "▁zw ei",
+ "▁L ie",
+ "▁Li e",
+ "N ull",
+ "add ress",
+ "addr ess",
+ "▁f actor",
+ "▁fact or",
+ "▁fa ctor",
+ "▁fac tor",
+ "▁ factor",
+ "▁l igne",
+ "▁lig ne",
+ "▁HT TP",
+ "▁ HTTP",
+ "▁s uf",
+ "▁su f",
+ "▁person al",
+ "▁pers onal",
+ "▁persona l",
+ "ci p",
+ "c ip",
+ "▁D ar",
+ "▁Da r",
+ "▁a dm",
+ "▁ad m",
+ "ко й",
+ "▁E xt",
+ "▁Ex t",
+ "▁ Ext",
+ "▁g od",
+ "▁go d",
+ "▁ god",
+ "a a",
+ "R ight",
+ "ét é",
+ "é té",
+ "▁d ynamic",
+ "▁dynam ic",
+ "▁ dynamic",
+ "▁main tain",
+ "to r",
+ "t or",
+ "#### ####",
+ "▁F ra",
+ "▁Fr a",
+ "▁cho ice",
+ "▁ choice",
+ "▁с то",
+ "▁ст о",
+ "▁ сто",
+ "С Р",
+ "▁F eder",
+ "▁Fe der",
+ "▁Fed er",
+ "st on",
+ "sto n",
+ "s ton",
+ "▁f lag",
+ "▁fl ag",
+ "▁fla g",
+ "▁ flag",
+ "ki t",
+ "k it",
+ "Mod ule",
+ "▁с по",
+ "▁сп о",
+ "▁ спо",
+ "▁S tra",
+ "▁St ra",
+ "▁Str a",
+ "ic ks",
+ "ick s",
+ "i cks",
+ "▁h aven",
+ "▁ha ven",
+ "▁have n",
+ "▁hav en",
+ "▁M ass",
+ "▁Ma ss",
+ "▁Mas s",
+ "▁E mp",
+ "▁Em p",
+ "▁ Emp",
+ "▁P i",
+ "▁ Pi",
+ "▁P en",
+ "▁Pe n",
+ "Re ct",
+ "Rec t",
+ "R ect",
+ "▁K r",
+ "it at",
+ "ita t",
+ "i tat",
+ "el er",
+ "ele r",
+ "e ler",
+ "я бря",
+ "it et",
+ "ite t",
+ "▁St art",
+ "▁Sta rt",
+ "▁Star t",
+ "▁ Start",
+ "▁produ ced",
+ "▁produce d",
+ "▁по л",
+ "▁ пол",
+ "( _",
+ "▁de let",
+ "▁del et",
+ "▁h ot",
+ "▁ho t",
+ "▁ hot",
+ "▁Gesch ichte",
+ "~ ~",
+ "▁month s",
+ "▁mont hs",
+ "▁t od",
+ "▁to d",
+ "▁ tod",
+ "▁н и",
+ "▁ ни",
+ "ú s",
+ "te mp",
+ "tem p",
+ "t emp",
+ "▁D ez",
+ "▁De z",
+ "ype s",
+ "yp es",
+ "y pes",
+ "▁c ui",
+ "▁cu i",
+ "om mun",
+ "omm un",
+ "act ions",
+ "action s",
+ "a ctions",
+ "▁e igen",
+ "▁eig en",
+ "▁immedi ately",
+ "▁immediate ly",
+ "P L",
+ "▁Г о",
+ "▁B al",
+ "▁Ba l",
+ "▁ Bal",
+ "љ е",
+ "ul ui",
+ "ulu i",
+ "▁on line",
+ "▁ online",
+ "▁a ños",
+ "▁añ os",
+ "▁año s",
+ "▁name space",
+ "▁names pace",
+ "▁ namespace",
+ "▁m ond",
+ "▁mon d",
+ "▁mo nd",
+ "▁ mond",
+ "▁B ase",
+ "▁Bas e",
+ "▁Ba se",
+ "▁ Base",
+ "▁Can ada",
+ "▁Canad a",
+ "et zt",
+ "etz t",
+ "} -",
+ "▁de fin",
+ "▁def in",
+ "▁ defin",
+ "▁dou bt",
+ "▁doub t",
+ "▁inv estig",
+ "▁invest ig",
+ "view s",
+ "vie ws",
+ "▁L ine",
+ "▁Li ne",
+ "▁Lin e",
+ "▁ Line",
+ "▁st age",
+ "▁sta ge",
+ "▁stag e",
+ "▁ stage",
+ "ett ings",
+ "ub re",
+ "u bre",
+ "f loat",
+ "▁P lay",
+ "▁Pl ay",
+ "▁Pla y",
+ "▁ Play",
+ "▁L as",
+ "▁La s",
+ "pt r",
+ "p tr",
+ "▁be comes",
+ "▁become s",
+ "▁becom es",
+ "est amp",
+ "esta mp",
+ "▁in dependent",
+ "▁indep endent",
+ "▁independ ent",
+ "▁anal ysis",
+ "▁ analysis",
+ "▁L ook",
+ "▁Lo ok",
+ "▁ Look",
+ "la in",
+ "l ain",
+ "▁ра с",
+ "Re ference",
+ "▁s orry",
+ "▁sor ry",
+ "▁supp osed",
+ "▁suppose d",
+ "▁sup posed",
+ "û t",
+ "▁deg ree",
+ "ut z",
+ "u tz",
+ "M M",
+ "▁des ired",
+ "▁desire d",
+ "ł y",
+ "▁l en",
+ "▁le n",
+ "▁ len",
+ "▁al one",
+ "▁ alone",
+ "sign ed",
+ "sig ned",
+ "s igned",
+ "▁S ta",
+ "▁St a",
+ "Per son",
+ "Pers on",
+ "P erson",
+ "▁app lied",
+ "▁B ack",
+ "▁Ba ck",
+ "▁Bac k",
+ "▁ Back",
+ "▁m ars",
+ "▁ma rs",
+ "▁mar s",
+ "Par t",
+ "Pa rt",
+ "P art",
+ "▁D id",
+ "▁Di d",
+ "▁ Did",
+ "▁extern es",
+ "▁externe s",
+ "▁n p",
+ "▁ np",
+ "on go",
+ "ong o",
+ "▁e sta",
+ "▁est a",
+ "▁es ta",
+ "▁ esta",
+ "Bl ock",
+ "B lock",
+ "▁p ou",
+ "▁po u",
+ "ad ores",
+ "ado res",
+ "ador es",
+ "▁St udio",
+ "▁Stud io",
+ "▁ Studio",
+ ". $",
+ "▁re ached",
+ "▁reach ed",
+ "bo t",
+ "b ot",
+ "▁J uni",
+ "▁Ju ni",
+ "▁Jun i",
+ "to ns",
+ "ton s",
+ "t ons",
+ "it el",
+ "ite l",
+ "i tel",
+ "▁G ar",
+ "▁Ga r",
+ "▁art icles",
+ "▁article s",
+ "▁ articles",
+ "▁D istrict",
+ "▁Dist rict",
+ "▁tr ouble",
+ "▁trou ble",
+ "li de",
+ "l ide",
+ "▁F ound",
+ "▁Fou nd",
+ "▁Fo und",
+ "▁ Found",
+ "á d",
+ "▁e quip",
+ "▁equ ip",
+ "▁in ternal",
+ "▁int ernal",
+ "▁inter nal",
+ "▁intern al",
+ "▁ internal",
+ "'] ,",
+ "' ],",
+ "▁a sync",
+ "▁as ync",
+ "▁ async",
+ "U B",
+ "ge l",
+ "g el",
+ "▁a i",
+ "▁ ai",
+ "ens ure",
+ "▁app eared",
+ "▁appear ed",
+ "▁appe ared",
+ "▁$ _",
+ "▁ $_",
+ "▁max imum",
+ "▁maxim um",
+ "▁С и",
+ "р ь",
+ "▁ann oun",
+ "▁anno un",
+ "ла сь",
+ "▁c m",
+ "▁ cm",
+ "га н",
+ "г ан",
+ "au pt",
+ "a upt",
+ "▁l atter",
+ "▁lat ter",
+ "▁pl atform",
+ "▁plat form",
+ "▁ platform",
+ "▁d ra",
+ "▁dr a",
+ "▁ dra",
+ "▁cap ital",
+ "▁capit al",
+ "▁sol ved",
+ "▁solve d",
+ "ri z",
+ "r iz",
+ "ed ic",
+ "edi c",
+ "e dic",
+ "▁M ur",
+ "▁Mu r",
+ "▁T op",
+ "▁To p",
+ "▁ Top",
+ "т ся",
+ "Pa nel",
+ "Pane l",
+ "Pan el",
+ "P anel",
+ "ru le",
+ "r ule",
+ "et ic",
+ "eti c",
+ "▁R en",
+ "▁Re n",
+ "▁Wik imedia",
+ "▁ Wikimedia",
+ "▁T O",
+ "▁ TO",
+ "se cond",
+ "sec ond",
+ "is l",
+ "i sl",
+ "▁h y",
+ "▁ hy",
+ "▁n iet",
+ "▁nie t",
+ "▁ni et",
+ "▁lo aded",
+ "▁load ed",
+ "▁ loaded",
+ "di g",
+ "d ig",
+ "▁ma yo",
+ "▁may o",
+ "[ :",
+ "Ac c",
+ "A cc",
+ "▁b ek",
+ "▁be k",
+ "▁ bek",
+ "ни ю",
+ "lo gin",
+ "log in",
+ "t x",
+ "▁F ur",
+ "▁Fu r",
+ "▁S anta",
+ "▁San ta",
+ "▁Sant a",
+ "az z",
+ "a zz",
+ "▁con duct",
+ "▁cond uct",
+ "▁condu ct",
+ "▁In dia",
+ "▁Ind ia",
+ "Or der",
+ "Ord er",
+ "ir th",
+ "irt h",
+ "t w",
+ "} +",
+ "▁w ieder",
+ "▁wie der",
+ "▁E du",
+ "▁Ed u",
+ "A V",
+ "▁` ``",
+ "▁`` `",
+ "▁ ```",
+ "▁man ually",
+ "▁manual ly",
+ "▁R ead",
+ "▁Re ad",
+ "▁ Read",
+ "fortun ately",
+ "▁R un",
+ "▁Ru n",
+ "▁ Run",
+ "▁A ward",
+ "▁Aw ard",
+ "▁F oot",
+ "▁Foo t",
+ "▁Fo ot",
+ "▁ Foot",
+ "* )",
+ "par ams",
+ "param s",
+ "pa rams",
+ "para ms",
+ "п і",
+ "▁n ative",
+ "▁nat ive",
+ "▁ native",
+ "ri ft",
+ "rif t",
+ "r ift",
+ "▁ ä",
+ "AT H",
+ "A TH",
+ "▁your self",
+ "▁yours elf",
+ "▁p rior",
+ "▁pr ior",
+ "▁pri or",
+ "▁c it",
+ "▁ci t",
+ "▁ cit",
+ "ä h",
+ "▁tre at",
+ "▁me as",
+ "rib uted",
+ "ribute d",
+ "ribu ted",
+ "▁c lar",
+ "▁cl ar",
+ "▁cla r",
+ "▁ clar",
+ "ca rd",
+ "car d",
+ "c ard",
+ "RO R",
+ "R OR",
+ "il les",
+ "ill es",
+ "ille s",
+ "i lles",
+ "▁l ayer",
+ "▁la yer",
+ "▁lay er",
+ "▁ layer",
+ "au er",
+ "a uer",
+ "▁r at",
+ "▁ra t",
+ "▁ rat",
+ "bern ate",
+ "▁st ato",
+ "▁stat o",
+ "▁sta to",
+ "▁Ch ina",
+ "▁Chi na",
+ "▁$ ('#",
+ "▁$(' #",
+ "▁n aar",
+ "▁na ar",
+ "zi p",
+ "z ip",
+ "▁$ {\\",
+ "▁${ \\",
+ "▁appreci ated",
+ "▁appreciate d",
+ "▁и ме",
+ "▁им е",
+ "ż y",
+ "▁prze z",
+ "▁prz ez",
+ "▁Ind ian",
+ "▁India n",
+ "▁T od",
+ "▁To d",
+ "▁S ource",
+ "▁ Source",
+ "▁дру ги",
+ "in ternal",
+ "int ernal",
+ "inter nal",
+ "intern al",
+ "ion ale",
+ "ional e",
+ "iona le",
+ "Pro duct",
+ "Produ ct",
+ "▁M en",
+ "▁Me n",
+ "▁ Men",
+ "▁u pper",
+ "▁up per",
+ "▁upp er",
+ "▁ upper",
+ "▁E very",
+ "▁Ev ery",
+ "▁Ever y",
+ "▁ Every",
+ "}, \\",
+ "} ,\\",
+ "▁print f",
+ "▁prin tf",
+ "▁ printf",
+ "▁contin ued",
+ "▁continu ed",
+ "▁continue d",
+ "▁n odes",
+ "▁no des",
+ "▁node s",
+ "▁nod es",
+ "▁ nodes",
+ "л ки",
+ "▁n ice",
+ "▁ni ce",
+ "▁nic e",
+ "▁ nice",
+ "mod ules",
+ "module s",
+ "ei gn",
+ "e ign",
+ "▁M ex",
+ "▁Me x",
+ "▁Acc ording",
+ "▁un defined",
+ "▁und efined",
+ "▁ undefined",
+ "▁b inary",
+ "▁bin ary",
+ "▁ binary",
+ "cu t",
+ "c ut",
+ "Cur rent",
+ "C urrent",
+ "ed y",
+ "e dy",
+ "}} {",
+ "} }{",
+ "ble s",
+ "bl es",
+ "b les",
+ "▁во й",
+ "▁ вой",
+ "sc ri",
+ "scr i",
+ "s cri",
+ "eq n",
+ "Ch anged",
+ "Change d",
+ "▁kö z",
+ "▁rem ote",
+ "▁ remote",
+ "в ля",
+ "▁qu el",
+ "▁que l",
+ "▁q uel",
+ "▁ quel",
+ "▁al ign",
+ "▁ali gn",
+ "▁ align",
+ "▁п ар",
+ "▁па р",
+ "▁ пар",
+ "S V",
+ "ye r",
+ "y er",
+ "▁Cal iforn",
+ "▁p laces",
+ "▁pl aces",
+ "▁place s",
+ "▁pla ces",
+ "▁prim ary",
+ "▁pri mary",
+ "▁prima ry",
+ "▁ primary",
+ "▁con v",
+ "▁ conv",
+ "▁J uli",
+ "▁Jul i",
+ "▁Ju li",
+ "▁vis ual",
+ "▁ visual",
+ "▁S elect",
+ "▁Se lect",
+ "▁Sel ect",
+ "▁Sele ct",
+ "▁ Select",
+ "at ory",
+ "ator y",
+ "ato ry",
+ "= (",
+ "is er",
+ "ise r",
+ "i ser",
+ "▁int ent",
+ "▁inte nt",
+ "▁inten t",
+ "▁ intent",
+ "su r",
+ "s ur",
+ "cont ainer",
+ "ic ed",
+ "ice d",
+ "i ced",
+ "▁bo ard",
+ "▁ board",
+ "as tr",
+ "ast r",
+ "a str",
+ "om ial",
+ "omi al",
+ "ве т",
+ "в ет",
+ "з ва",
+ "▁c ru",
+ "▁cr u",
+ "▁Ok tober",
+ "sa ve",
+ "s ave",
+ "▁gre ater",
+ "▁great er",
+ "▁in n",
+ "▁i nn",
+ "▁ inn",
+ "▁p icture",
+ "▁ picture",
+ "▁Т о",
+ "▁obtain ed",
+ "▁obt ained",
+ "Wik imedia",
+ "ú blic",
+ "▁l ors",
+ "▁lo rs",
+ "▁m ont",
+ "▁mon t",
+ "▁mo nt",
+ "▁ mont",
+ "ob re",
+ "o bre",
+ "▁c ivil",
+ "▁ci vil",
+ "▁civ il",
+ "▁const ruction",
+ "▁construct ion",
+ "▁constru ction",
+ "▁W elt",
+ "▁We lt",
+ "▁Wel t",
+ "▁U nder",
+ "▁Un der",
+ "▁Und er",
+ "▁ Under",
+ "und ert",
+ "under t",
+ "unde rt",
+ "▁ed ge",
+ "▁ edge",
+ "▁L iste",
+ "▁List e",
+ "▁Li ste",
+ "▁Lis te",
+ "cs v",
+ "c sv",
+ "▁ex periment",
+ "▁exper iment",
+ "local host",
+ "▁E dit",
+ "▁Ed it",
+ "▁ Edit",
+ "gr eg",
+ "gre g",
+ "g reg",
+ "ov á",
+ "o vá",
+ "љ а",
+ "ms g",
+ "m sg",
+ "▁G reen",
+ "▁Gr een",
+ "▁Gre en",
+ "▁Gree n",
+ "▁ Green",
+ "Di alog",
+ "D ialog",
+ "Id ent",
+ "I dent",
+ "▁J S",
+ "▁ JS",
+ "^{ (",
+ "^ {(",
+ "▁slä ktet",
+ "__ __",
+ "___ _",
+ "_ ___",
+ "Pro ject",
+ "▁bes kre",
+ "▁b er",
+ "▁be r",
+ "▁ ber",
+ "▁would n",
+ "▁re act",
+ "▁ react",
+ "He l",
+ "H el",
+ "z w",
+ "▁W ashington",
+ "or ie",
+ "ori e",
+ "o rie",
+ "ta sk",
+ "t ask",
+ "▁c ategory",
+ "▁categ ory",
+ "▁categor y",
+ "▁ category",
+ "▁art ist",
+ "an no",
+ "ann o",
+ "▁o ok",
+ "▁ ook",
+ "am men",
+ "amm en",
+ "▁Min ister",
+ "▁de clar",
+ "▁dec lar",
+ "▁decl ar",
+ "▁decla r",
+ "▁K ey",
+ "▁Ke y",
+ "▁ Key",
+ ", .",
+ "▁m ach",
+ "▁ma ch",
+ "▁mac h",
+ "▁w w",
+ "▁ ww",
+ "is en",
+ "ise n",
+ "i sen",
+ "Fr an",
+ "F ran",
+ "▁Ро сси",
+ "▁Рос си",
+ "бо р",
+ "б ор",
+ "т ри",
+ "▁r ock",
+ "▁ro ck",
+ "▁ rock",
+ "qu is",
+ "qui s",
+ "q uis",
+ "mo s",
+ "m os",
+ "пе ра",
+ "пер а",
+ "п ера",
+ "▁est erni",
+ "▁g old",
+ "▁go ld",
+ "▁gol d",
+ "Window s",
+ "W indows",
+ "% %",
+ "▁part ial",
+ "▁parti al",
+ "▁ partial",
+ "▁we ight",
+ "▁ weight",
+ "▁s pr",
+ "▁sp r",
+ "▁ spr",
+ "}) .",
+ "} ).",
+ "▁fran çais",
+ "fu n",
+ "f un",
+ "▁th ous",
+ "▁thou s",
+ "ho lder",
+ "hol der",
+ "hold er",
+ "h older",
+ "▁g one",
+ "▁go ne",
+ "▁ Č",
+ "▁re nd",
+ "▁r end",
+ "▁ren d",
+ "▁ rend",
+ "D A",
+ "▁answer ed",
+ "▁F alse",
+ "▁Fal se",
+ "▁ False",
+ "B uffer",
+ "▁d augh",
+ "▁da ugh",
+ ".- -",
+ ". --",
+ "▁S how",
+ "▁Sh ow",
+ "▁Sho w",
+ "▁ Show",
+ "▁re ct",
+ "▁r ect",
+ "▁rec t",
+ "▁ rect",
+ "▁K re",
+ "▁Kr e",
+ "d r",
+ "os oph",
+ "oso ph",
+ "▁y ield",
+ "ur ity",
+ "uri ty",
+ "to String",
+ "av al",
+ "ava l",
+ "a val",
+ "Po l",
+ "P ol",
+ "▁l ock",
+ "▁lo ck",
+ "▁loc k",
+ "▁ lock",
+ "im ation",
+ "ima tion",
+ "imat ion",
+ "ant ic",
+ "anti c",
+ "Lo cal",
+ "Loc al",
+ "L ocal",
+ "▁beskre vs",
+ "it és",
+ "ité s",
+ "gr id",
+ "g rid",
+ "у т",
+ "▁_ {",
+ "▁ _{",
+ "с і",
+ "FI LE",
+ "▁к м",
+ "▁spe ak",
+ "sum mary",
+ "pr op",
+ "pro p",
+ "p rop",
+ "java script",
+ "j avascript",
+ "z k",
+ "izont al",
+ "izon tal",
+ "▁tr ois",
+ "▁tro is",
+ "▁R od",
+ "▁Ro d",
+ "pr ise",
+ "ро во",
+ "ров о",
+ "р ово",
+ "▁o dd",
+ "▁od d",
+ "▁ odd",
+ "▁g est",
+ "▁ge st",
+ "▁ges t",
+ "▁ gest",
+ "▁produ ce",
+ "▁prod uce",
+ "▁w aar",
+ "▁wa ar",
+ "▁A v",
+ "▁ Av",
+ "ri bu",
+ "rib u",
+ "ва ння",
+ "ван ня",
+ "▁fin ished",
+ "▁finish ed",
+ "▁ad apt",
+ "▁S ar",
+ "▁Sa r",
+ "text it",
+ "tex tit",
+ "▁C e",
+ "▁F a",
+ "▁ Fa",
+ "os en",
+ "ose n",
+ "o sen",
+ "▁de riv",
+ "▁der iv",
+ "▁s hip",
+ "▁sh ip",
+ "▁ ship",
+ "▁o pin",
+ "▁op in",
+ "▁E ven",
+ "▁Ev en",
+ "ge sch",
+ "ges ch",
+ "g esch",
+ "▁supp ose",
+ "▁sup pose",
+ "▁F er",
+ "▁Fe r",
+ "ско е",
+ "▁w orden",
+ "▁word en",
+ "▁wor den",
+ "se y",
+ "s ey",
+ "hl ine",
+ "h line",
+ "▁Un ion",
+ "▁ Union",
+ "▁/ **",
+ "▁/* *",
+ "▁ /**",
+ "▁v ez",
+ "▁ve z",
+ "▁ vez",
+ "▁Colleg amenti",
+ "▁Soci ety",
+ "▁Soc iety",
+ "▁e conom",
+ "▁econ om",
+ "▁ec onom",
+ "š í",
+ "o i",
+ "▁or ient",
+ "▁ orient",
+ "▁T eil",
+ "▁Te il",
+ "re nt",
+ "ren t",
+ "r ent",
+ "ле кс",
+ "лек с",
+ "▁s olid",
+ "▁sol id",
+ "▁c art",
+ "▁car t",
+ "▁ca rt",
+ "▁ cart",
+ "******** ********",
+ "▁c ab",
+ "▁ca b",
+ "▁M essage",
+ "▁Mess age",
+ "▁ Message",
+ "do ts",
+ "dot s",
+ "d ots",
+ "▁é g",
+ "▁ ég",
+ "▁t we",
+ "▁tw e",
+ "ag a",
+ "a ga",
+ "▁n az",
+ "▁na z",
+ "▁M icrosoft",
+ "▁Micro soft",
+ "▁ Microsoft",
+ "▁under arter",
+ "pp en",
+ "ppe n",
+ "p pen",
+ "▁re cent",
+ "▁rec ent",
+ "▁rece nt",
+ "▁n et",
+ "▁ne t",
+ "▁ net",
+ "▁res ources",
+ "▁resource s",
+ "▁ resources",
+ "St e",
+ "S te",
+ ". \\",
+ "▁S O",
+ "▁ SO",
+ "ло м",
+ "л ом",
+ "▁c ele",
+ "▁ce le",
+ "▁cel e",
+ "▁l ic",
+ "▁li c",
+ "▁ lic",
+ "▁ben ef",
+ "▁bene f",
+ "ld ots",
+ "l dots",
+ "▁se rial",
+ "▁ser ial",
+ "▁seria l",
+ "▁ serial",
+ "In teger",
+ "cl es",
+ "cle s",
+ "c les",
+ "▁m iles",
+ "▁mil es",
+ "▁mi les",
+ "▁mile s",
+ "▁A le",
+ "▁Al e",
+ "▁en tered",
+ "▁ent ered",
+ "▁enter ed",
+ "▁T wo",
+ "▁Tw o",
+ "▁ Two",
+ "wi e",
+ "w ie",
+ "▁in cludes",
+ "▁incl udes",
+ "▁includ es",
+ "▁include s",
+ "▁inclu des",
+ "▁ includes",
+ "▁E ach",
+ "▁ Each",
+ "el ling",
+ "ell ing",
+ "elli ng",
+ "qu er",
+ "que r",
+ "q uer",
+ "▁D om",
+ "▁Do m",
+ "▁ Dom",
+ "p f",
+ "W S",
+ "▁stra ight",
+ "▁S tan",
+ "▁St an",
+ "▁Sta n",
+ "▁n os",
+ "▁no s",
+ "▁ nos",
+ "í cul",
+ "at ro",
+ "atr o",
+ "▁C enter",
+ "▁Cent er",
+ "▁ Center",
+ "F T",
+ "▁In ga",
+ "▁Ing a",
+ "il o",
+ "i lo",
+ "▁w ww",
+ "▁ww w",
+ "▁ www",
+ "js fiddle",
+ "ni c",
+ "n ic",
+ "▁Europe an",
+ "▁com mer",
+ "▁comm er",
+ "▁comme r",
+ "▁g irl",
+ "▁gi rl",
+ "▁gir l",
+ "to tal",
+ "tot al",
+ "t otal",
+ "▁S tar",
+ "▁St ar",
+ "▁Sta r",
+ "▁ Star",
+ "▁sugg ested",
+ "▁suggest ed",
+ "pa l",
+ "p al",
+ "▁zw ischen",
+ "пи са",
+ "пис а",
+ "I M",
+ "▁hand ler",
+ "▁handle r",
+ "▁ handler",
+ "▁Pro gram",
+ "▁Pr ogram",
+ "▁ Program",
+ "xs l",
+ "x sl",
+ "ál y",
+ "á ly",
+ "B U",
+ ",- -",
+ ", --",
+ "▁v id",
+ "▁vi d",
+ "▁ vid",
+ "▁estab lished",
+ "▁establish ed",
+ "▁S piel",
+ "▁Sp iel",
+ "om etry",
+ "ome try",
+ "omet ry",
+ "un es",
+ "une s",
+ "u nes",
+ "▁s it",
+ "▁si t",
+ "▁in her",
+ "▁p uis",
+ "▁pu is",
+ "▁ puis",
+ "▁ être",
+ "▁M ost",
+ "▁Mo st",
+ "▁Mos t",
+ "He ader",
+ "Head er",
+ "in sert",
+ "ins ert",
+ "▁s ist",
+ "▁si st",
+ "▁f avor",
+ "▁fa vor",
+ "▁fav or",
+ "de st",
+ "des t",
+ "d est",
+ "▁ent ity",
+ "▁ entity",
+ "Ca l",
+ "C al",
+ "▁There fore",
+ "D D",
+ "; ;",
+ "▁Dez ember",
+ "▁R h",
+ "im ents",
+ "iment s",
+ "imen ts",
+ "i ments",
+ "▁return ing",
+ "st o",
+ "s to",
+ "▁Val ue",
+ "▁ Value",
+ "▁l iber",
+ "▁li ber",
+ "▁lib er",
+ "▁Res ult",
+ "▁ Result",
+ "▁b ind",
+ "▁bi nd",
+ "▁bin d",
+ "▁ bind",
+ "vo ir",
+ "v oir",
+ "▁T im",
+ "▁Ti m",
+ "▁ Tim",
+ "▁M ovie",
+ "▁Mo vie",
+ "▁Mov ie",
+ "▁ Movie",
+ "we g",
+ "w eg",
+ "ke t",
+ "k et",
+ "▁и сто",
+ "▁ис то",
+ "▁fri ends",
+ "▁friend s",
+ "▁f n",
+ "▁ fn",
+ "▁é l",
+ "▁ él",
+ "▁& =",
+ "▁ &=",
+ "ar den",
+ "ard en",
+ "arde n",
+ "ff icial",
+ "ffic ial",
+ "▁comm unity",
+ "▁commun ity",
+ "▁ community",
+ "▁a pi",
+ "▁ap i",
+ "▁ api",
+ "Ar gs",
+ "Arg s",
+ "ie ren",
+ "ier en",
+ "iere n",
+ "i eren",
+ "▁d ann",
+ "▁da nn",
+ "▁dan n",
+ "om orph",
+ "ad r",
+ "a dr",
+ "lo op",
+ "l oop",
+ "um an",
+ "uma n",
+ "u man",
+ "▁v ous",
+ "▁vo us",
+ "▁vou s",
+ "▁ vous",
+ "bs t",
+ "b st",
+ "sub mit",
+ "\\ |",
+ "ти н",
+ "т ин",
+ "Cont ainer",
+ "as ket",
+ "ask et",
+ "? )",
+ "Se c",
+ "S ec",
+ "▁d rive",
+ "▁dr ive",
+ "▁dri ve",
+ "▁driv e",
+ "▁ drive",
+ "As s",
+ "A ss",
+ "▁s we",
+ "▁sw e",
+ "▁a mer",
+ "▁am er",
+ "▁ amer",
+ "▁m ine",
+ "▁min e",
+ "▁mi ne",
+ "▁ mine",
+ "▁H am",
+ "▁Ha m",
+ "▁av ait",
+ "▁ avait",
+ "▁H on",
+ "▁Ho n",
+ "▁a près",
+ "▁ap rès",
+ "▁apr ès",
+ "▁ après",
+ "▁M ann",
+ "▁Man n",
+ "▁Ma nn",
+ "сь ка",
+ "ськ а",
+ "▁incre ase",
+ "▁t y",
+ "▁ ty",
+ "sk y",
+ "s ky",
+ "▁acc ur",
+ "▁ac cur",
+ "art icle",
+ "we ight",
+ "weig ht",
+ "▁s ex",
+ "▁se x",
+ "▁ sex",
+ "▁list ade",
+ "▁lista de",
+ "/* *",
+ "/ **",
+ "▁est á",
+ "}} $",
+ "} }$",
+ "ar go",
+ "arg o",
+ "def ine",
+ "defin e",
+ "▁со став",
+ "▁соста в",
+ "s ession",
+ "ad s",
+ "a ds",
+ "ст ви",
+ "ств и",
+ "▁L aw",
+ "▁La w",
+ "▁d ialog",
+ "▁di alog",
+ "▁dia log",
+ "▁ dialog",
+ "▁dup licate",
+ "▁é p",
+ "▁ ép",
+ "▁v oc",
+ "▁vo c",
+ "fr i",
+ "f ri",
+ "▁g reen",
+ "▁gr een",
+ "▁gre en",
+ "▁ green",
+ "▁h idden",
+ "▁hid den",
+ "▁ hidden",
+ "▁Is land",
+ "▁di ag",
+ "▁dia g",
+ "ow ej",
+ "owe j",
+ "my sql",
+ "mys ql",
+ "mysq l",
+ "te il",
+ "tei l",
+ "t eil",
+ "r ä",
+ "ik an",
+ "ika n",
+ "i kan",
+ "▁Jos é",
+ "al ed",
+ "ale d",
+ "a led",
+ "Run time",
+ "R untime",
+ "▁t rain",
+ "▁tr ain",
+ "▁tra in",
+ "▁ train",
+ "▁Di vision",
+ "▁Div ision",
+ "ни ц",
+ "▁S pan",
+ "▁Sp an",
+ "▁ Span",
+ "ни ма",
+ "ним а",
+ ")= \\",
+ ") =\\",
+ "та н",
+ "т ан",
+ "▁st ay",
+ "▁sta y",
+ "▁f oo",
+ "▁fo o",
+ "▁ foo",
+ "▁acc om",
+ "▁ac com",
+ "▁h ers",
+ "▁he rs",
+ "▁her s",
+ "▁на у",
+ "▁M ün",
+ "ide os",
+ "ideo s",
+ "st atic",
+ "stat ic",
+ "▁re ady",
+ "▁read y",
+ "▁ ready",
+ "] `",
+ "▁vis ible",
+ "▁vi sible",
+ "▁ visible",
+ "▁H ope",
+ "▁Ho pe",
+ "▁Hop e",
+ "ul ated",
+ "ula ted",
+ "ulate d",
+ "▁C ult",
+ "▁Cu lt",
+ "ст ро",
+ "стр о",
+ "с тро",
+ "C o",
+ "▁sm aller",
+ "▁small er",
+ "at ura",
+ "atur a",
+ "atu ra",
+ "▁perfect ly",
+ "re q",
+ "r eq",
+ "▁pro posed",
+ "▁prop osed",
+ "▁propos ed",
+ "▁propose d",
+ "▁deg li",
+ "Se arch",
+ "S earch",
+ "▁i ch",
+ "▁ic h",
+ "▁ ich",
+ "Ma x",
+ "M ax",
+ "▁vol ume",
+ "▁ volume",
+ "exec ute",
+ "gr e",
+ "g re",
+ "▁s port",
+ "▁sp ort",
+ "▁spo rt",
+ "ud ad",
+ "uda d",
+ "P T",
+ "▁Rec ords",
+ "▁Record s",
+ "▁c ook",
+ "▁co ok",
+ "▁ cook",
+ "▁exp and",
+ "▁ expand",
+ "б і",
+ "▁al tri",
+ "▁alt ri",
+ "pp et",
+ "ppe t",
+ "p pet",
+ "ar se",
+ "ars e",
+ "▁w et",
+ "▁we t",
+ "▁B ob",
+ "▁Bo b",
+ "▁ Bob",
+ "▁F C",
+ "▁ FC",
+ "▁Associ ation",
+ "uj e",
+ "u je",
+ "▁f el",
+ "▁fe l",
+ "▁ fel",
+ "▁с лу",
+ "▁ слу",
+ "▁B ig",
+ "▁Bi g",
+ "▁ Big",
+ "/ \\",
+ "G e",
+ "wh ile",
+ "{ (",
+ "▁su fficient",
+ "Pos ition",
+ "P osition",
+ "▁under standing",
+ "▁understand ing",
+ "▁n ue",
+ "▁nu e",
+ "▁r az",
+ "▁ra z",
+ "▁ raz",
+ "▁y e",
+ "▁ ye",
+ "he m",
+ "h em",
+ "N um",
+ "▁Pro ject",
+ "▁ Project",
+ "▁I ts",
+ "▁It s",
+ "▁h asta",
+ "▁ha sta",
+ "▁has ta",
+ "▁hast a",
+ "en so",
+ "ens o",
+ "▁w ire",
+ "▁wir e",
+ "▁ wire",
+ "Re t",
+ "R et",
+ "u j",
+ "pro of",
+ "▁re levant",
+ "▁relev ant",
+ "▁part ir",
+ "▁parti r",
+ "▁a go",
+ "▁ag o",
+ "▁ ago",
+ "if icate",
+ "ific ate",
+ "ifica te",
+ "▁d omin",
+ "▁do min",
+ "▁dom in",
+ "▁ domin",
+ "▁b oy",
+ "▁bo y",
+ "▁ boy",
+ "▁p lant",
+ "▁pl ant",
+ "▁pla nt",
+ "▁plan t",
+ "▁ plant",
+ "▁enc oding",
+ "▁ encoding",
+ "▁th rows",
+ "▁thr ows",
+ "▁throw s",
+ "▁thro ws",
+ "▁R ock",
+ "▁Ro ck",
+ "▁Roc k",
+ "zo ne",
+ "zon e",
+ "z one",
+ "ga ng",
+ "gan g",
+ "g ang",
+ "wid get",
+ "w idget",
+ "▁interest ing",
+ "DE R",
+ "D ER",
+ "▁d emon",
+ "▁de mon",
+ "▁dem on",
+ "▁demo n",
+ "▁off ice",
+ "▁offic e",
+ "▁ office",
+ "am t",
+ "a mt",
+ "ät er",
+ "ä ter",
+ "▁Wh ite",
+ "▁Whit e",
+ "▁ White",
+ "▁v ersch",
+ "▁ver sch",
+ "▁vers ch",
+ "▁die ser",
+ "▁dies er",
+ "▁diese r",
+ "▁M ount",
+ "▁Mo unt",
+ "▁Mou nt",
+ "▁ Mount",
+ "▁stud ents",
+ "▁student s",
+ "▁P ub",
+ "▁Pu b",
+ "▁ Pub",
+ "▁Д е",
+ "ij a",
+ "i ja",
+ "▁C y",
+ "▁ Cy",
+ "▁Californ ia",
+ "▁ab ril",
+ "äl l",
+ "ä ll",
+ "▁ч ем",
+ "▁че м",
+ "T V",
+ "▁m és",
+ "▁mé s",
+ "▁decl ared",
+ "▁decla red",
+ "▁declar ed",
+ "▁declare d",
+ "▁ ю",
+ "ő l",
+ "ap pa",
+ "app a",
+ "a ppa",
+ "▁Б е",
+ "ec ho",
+ "ech o",
+ "e cho",
+ "num er",
+ "nu mer",
+ "n umer",
+ "▁po sted",
+ "▁pos ted",
+ "▁post ed",
+ "▁poste d",
+ "▁в ер",
+ "▁ве р",
+ "▁ вер",
+ "▁годи не",
+ "▁we ak",
+ "▁ weak",
+ "▁Re public",
+ "▁Rep ublic",
+ "▁Repub lic",
+ "▁ch ampion",
+ "▁champ ion",
+ "ensure math",
+ "you r",
+ "yo ur",
+ "y our",
+ "▁O ber",
+ "▁Ob er",
+ "▁Cent ral",
+ "is a",
+ "i sa",
+ "ан д",
+ "а нд",
+ "y y",
+ "▁full y",
+ "▁ful ly",
+ "▁ fully",
+ "▁S D",
+ "▁ SD",
+ "▁Lin ux",
+ "▁ Linux",
+ "▁Sc ott",
+ "▁Scot t",
+ "part ment",
+ "ko n",
+ "k on",
+ "▁cont ract",
+ "▁contr act",
+ "▁contra ct",
+ "▁O F",
+ "▁ OF",
+ "▁a le",
+ "▁al e",
+ "▁ ale",
+ "▁A nn",
+ "▁An n",
+ "▁на д",
+ "▁ над",
+ "la h",
+ "l ah",
+ "▁N ext",
+ "▁Ne xt",
+ "▁ Next",
+ "or en",
+ "ore n",
+ "o ren",
+ "▁d isk",
+ "▁di sk",
+ "▁dis k",
+ "▁ disk",
+ "▁e g",
+ "▁ eg",
+ "at u",
+ "a tu",
+ "ло ги",
+ "лог и",
+ "▁g ames",
+ "▁game s",
+ "▁ga mes",
+ "▁gam es",
+ "Le ft",
+ "L eft",
+ "▁l u",
+ "▁ lu",
+ "▁fin ite",
+ "▁finit e",
+ "▁ finite",
+ "▁к и",
+ "▁ ки",
+ "▁cr ash",
+ "▁cra sh",
+ "ph er",
+ "phe r",
+ "p her",
+ "ex e",
+ "e xe",
+ "AT ION",
+ "▁br other",
+ "▁bro ther",
+ "En g",
+ "E ng",
+ "ta t",
+ "t at",
+ "▁In teger",
+ "▁ Integer",
+ "но му",
+ "ном у",
+ "н ому",
+ "▁col on",
+ "▁co lon",
+ "▁ colon",
+ "i qu",
+ ")) .",
+ ") ).",
+ "iv i",
+ "i vi",
+ "▁M ethod",
+ "▁Met hod",
+ "▁ Method",
+ "ar ten",
+ "art en",
+ "arte n",
+ "Un i",
+ "U ni",
+ "ve ctor",
+ "vec tor",
+ "v ector",
+ "▁w ood",
+ "▁wo od",
+ "▁ wood",
+ "р т",
+ "▁Л е",
+ "▁siè cle",
+ "▁g ent",
+ "▁ge nt",
+ "▁gen t",
+ "▁ gent",
+ "} \r",
+ "▁cont ents",
+ "▁content s",
+ "▁conten ts",
+ "▁ contents",
+ "▁com pan",
+ "▁comp an",
+ "G o",
+ "▁j ou",
+ "▁jo u",
+ "▁ jou",
+ "ue nt",
+ "uen t",
+ "u ent",
+ "As ync",
+ "A sync",
+ "print f",
+ "▁M odel",
+ "▁Mod el",
+ "▁Mo del",
+ "▁Mode l",
+ "▁ Model",
+ "▁ke pt",
+ "AS E",
+ "A SE",
+ "▁prov ides",
+ "▁provide s",
+ "▁Ab gerufen",
+ "▁G all",
+ "▁Gal l",
+ "▁Ga ll",
+ "▁Al f",
+ "S A",
+ "▁M em",
+ "▁Me m",
+ "▁ Mem",
+ "▁k ter",
+ "▁ kter",
+ "▁B ru",
+ "▁Br u",
+ "And roid",
+ "( :",
+ "▁У краї",
+ "▁Укра ї",
+ "N e",
+ "M in",
+ "at r",
+ "a tr",
+ "▁H al",
+ "▁Ha l",
+ "de lete",
+ "del ete",
+ "od o",
+ "o do",
+ "▁n ão",
+ "èn e",
+ "è ne",
+ "▁calcul ate",
+ "▁calc ulate",
+ "Js on",
+ "J son",
+ "ke ys",
+ "key s",
+ "не й",
+ "н ей",
+ "▁h ence",
+ "▁hen ce",
+ "▁o w",
+ "▁ ow",
+ "▁L ib",
+ "▁Li b",
+ "▁ Lib",
+ "en o",
+ "e no",
+ "▁L ove",
+ "▁Lo ve",
+ "▁Lov e",
+ "os i",
+ "o si",
+ "wi de",
+ "wid e",
+ "w ide",
+ "▁s core",
+ "▁sc ore",
+ "▁ score",
+ "ful l",
+ "fu ll",
+ "f ull",
+ "во д",
+ "в од",
+ "▁determ ine",
+ "▁determin e",
+ "▁s paces",
+ "▁sp aces",
+ "▁space s",
+ "▁spac es",
+ "▁ spaces",
+ "ло ва",
+ "лов а",
+ "л ова",
+ "▁pe ut",
+ "▁peu t",
+ "ér al",
+ "éra l",
+ "é ral",
+ "ó ł",
+ "▁app oint",
+ "▁ap point",
+ "▁T w",
+ "▁ Tw",
+ "< ?",
+ "▁Or der",
+ "▁Ord er",
+ "▁ Order",
+ "▁h op",
+ "▁ho p",
+ "ran dom",
+ "rand om",
+ "r andom",
+ "ca che",
+ "c ache",
+ "▁dest roy",
+ "▁ destroy",
+ "▁r ace",
+ "▁ra ce",
+ "▁rac e",
+ "▁ race",
+ "T ag",
+ "▁r id",
+ "▁ri d",
+ "▁ rid",
+ "▁neg ative",
+ "▁ negative",
+ "Ca r",
+ "C ar",
+ "ens ional",
+ "ension al",
+ "d k",
+ "▁c ro",
+ "▁cr o",
+ "▁ cro",
+ "▁TH EN",
+ "▁THE N",
+ "▁$ .",
+ "▁ $.",
+ "en sk",
+ "ens k",
+ "N E",
+ "H O",
+ "▁k le",
+ "▁kl e",
+ "osp ital",
+ "kt e",
+ "k te",
+ "fér ences",
+ "férence s",
+ "ud es",
+ "ude s",
+ "u des",
+ "I R",
+ "ot ion",
+ "oti on",
+ "o tion",
+ "▁Re al",
+ "▁ Real",
+ "▁Febru ar",
+ "и н",
+ "▁O ld",
+ "▁Ol d",
+ "▁ Old",
+ "ко го",
+ "к ого",
+ "le ich",
+ "lei ch",
+ "▁ р",
+ "ía n",
+ "í an",
+ "▁г а",
+ "▁ га",
+ "ci de",
+ "cid e",
+ "c ide",
+ "la b",
+ "l ab",
+ "▁p ull",
+ "▁pu ll",
+ "▁pul l",
+ "▁ pull",
+ "▁' /",
+ "Lo ng",
+ "L ong",
+ ", $",
+ "▁appropri ate",
+ "▁бы ла",
+ "▁был а",
+ "f ühr",
+ "▁M edia",
+ "▁Me dia",
+ "▁Med ia",
+ "▁Medi a",
+ "▁ Media",
+ "▁m anner",
+ "▁man ner",
+ "▁Г е",
+ "de scription",
+ "des cription",
+ "Be an",
+ "▁L ar",
+ "▁La r",
+ "▁ Lar",
+ "'] ;",
+ "' ];",
+ "▁re lation",
+ "▁rel ation",
+ "▁rela tion",
+ "▁ relation",
+ "▁S orry",
+ "▁Sor ry",
+ "ha r",
+ "h ar",
+ "cp p",
+ "c pp",
+ "▁K o",
+ "▁exec ution",
+ "▁execut ion",
+ "▁ execution",
+ "in os",
+ "ino s",
+ "i nos",
+ "▁b ul",
+ "▁bu l",
+ "▁ bul",
+ "gr ade",
+ "gra de",
+ "grad e",
+ "g rade",
+ "▁M u",
+ "▁p il",
+ "▁pi l",
+ "wr it",
+ "w rit",
+ "ific ations",
+ "ification s",
+ "in ese",
+ "ine se",
+ "ines e",
+ "▁Ph ili",
+ "▁Phil i",
+ "d x",
+ "▁le ading",
+ "▁lead ing",
+ "▁ leading",
+ "▁J ournal",
+ "ov ed",
+ "ove d",
+ "o ved",
+ "▁cont ro",
+ "▁contr o",
+ "но ва",
+ "нов а",
+ "н ова",
+ "Y es",
+ "▁ch annel",
+ "▁ channel",
+ ")) ,",
+ ") ),",
+ "is ten",
+ "ist en",
+ "iste n",
+ "i sten",
+ "ak a",
+ "a ka",
+ "To String",
+ "ma s",
+ "m as",
+ "▁e tt",
+ "▁et t",
+ "▁ ett",
+ "▁for ces",
+ "▁force s",
+ "ul ations",
+ "ulation s",
+ "▁C all",
+ "▁Cal l",
+ "▁Ca ll",
+ "▁ Call",
+ "▁explan ation",
+ "or ing",
+ "ori ng",
+ "o ring",
+ "AT A",
+ "A TA",
+ "ch ter",
+ "cht er",
+ "chte r",
+ "wh en",
+ "w hen",
+ "V C",
+ "▁Jah rh",
+ "▁Jahr h",
+ "Ca se",
+ "C ase",
+ "▁comm ands",
+ "▁command s",
+ "▁ commands",
+ "▁r ich",
+ "▁ric h",
+ "▁ri ch",
+ "▁ rich",
+ "bu s",
+ "b us",
+ "F e",
+ "mb ox",
+ "m box",
+ "▁re con",
+ "▁rec on",
+ "ñ o",
+ "▁s hape",
+ "▁sh ape",
+ "▁ shape",
+ "ow y",
+ "o wy",
+ "en try",
+ "ent ry",
+ "entr y",
+ "it able",
+ "ita ble",
+ "i table",
+ "▁e lection",
+ "▁el ection",
+ "▁elect ion",
+ "▁ele ction",
+ "є ться",
+ "▁p rep",
+ "▁pr ep",
+ "▁pre p",
+ "▁ prep",
+ "v á",
+ "▁in fin",
+ "▁inf in",
+ "lo t",
+ "l ot",
+ "▁bo oks",
+ "▁book s",
+ "▁ books",
+ "▁U SA",
+ "▁US A",
+ "▁ USA",
+ "ли н",
+ "л ин",
+ "▁p om",
+ "▁po m",
+ "▁ pom",
+ "▁n as",
+ "▁na s",
+ "▁ nas",
+ "▁t ags",
+ "▁tag s",
+ "▁ta gs",
+ "▁ tags",
+ "▁exec uted",
+ "▁execute d",
+ "▁execut ed",
+ "ail le",
+ "ai lle",
+ "a ille",
+ "lu ng",
+ "l ung",
+ "▁Java Script",
+ "▁ JavaScript",
+ "▁b all",
+ "▁bal l",
+ "▁ba ll",
+ "▁ ball",
+ "▁ain si",
+ "▁P ri",
+ "▁Pr i",
+ "{ $",
+ "▁U N",
+ "▁ UN",
+ "▁R am",
+ "▁Ra m",
+ "▁h ear",
+ "▁he ar",
+ "▁U buntu",
+ ">( );",
+ ">() ;",
+ "> ();",
+ "▁p ure",
+ "▁pu re",
+ "▁pur e",
+ "▁em bed",
+ "▁emb ed",
+ "▁ embed",
+ "a ção",
+ "cont roller",
+ "control ler",
+ "▁mar ried",
+ "▁F ol",
+ "▁Fo l",
+ "fa mil",
+ "f amil",
+ "▁p rec",
+ "▁pr ec",
+ "▁pre c",
+ "▁ prec",
+ "▁rec urs",
+ "pa d",
+ "p ad",
+ "istr ation",
+ "istra tion",
+ "▁respect ively",
+ "▁respective ly",
+ "[ $",
+ "au tor",
+ "aut or",
+ "auto r",
+ "a utor",
+ "▁g rav",
+ "▁gr av",
+ "▁gra v",
+ "ie ra",
+ "ier a",
+ "i era",
+ "az ioni",
+ "azi oni",
+ "a zioni",
+ "▁B ul",
+ "▁Bu l",
+ "▁Austral ia",
+ "mon d",
+ "mo nd",
+ "m ond",
+ "▁T ro",
+ "▁Tr o",
+ "▁E le",
+ "▁El e",
+ "pack ages",
+ "package s",
+ "ms dn",
+ "▁A ls",
+ "▁Al s",
+ "▁pr zy",
+ "▁prz y",
+ "AR T",
+ "A RT",
+ "▁char ge",
+ "▁charg e",
+ "▁ charge",
+ "▁app lications",
+ "▁application s",
+ "▁applic ations",
+ "Un it",
+ "Uni t",
+ "U nit",
+ "ar en",
+ "are n",
+ "a ren",
+ "▁sud den",
+ "om eter",
+ "ome ter",
+ "omet er",
+ "o meter",
+ "▁d ot",
+ "▁do t",
+ "▁ dot",
+ "ac ji",
+ "a cji",
+ "кт ор",
+ "кто р",
+ "к тор",
+ "im in",
+ "imi n",
+ "i min",
+ "en ing",
+ "eni ng",
+ "e ning",
+ "▁d onde",
+ "▁do nde",
+ "▁don de",
+ "▁H o",
+ "tr ee",
+ "tre e",
+ "t ree",
+ "m b",
+ "▁d rag",
+ "▁dr ag",
+ "▁dra g",
+ "▁ drag",
+ "aj e",
+ "a je",
+ "▁in valid",
+ "▁ invalid",
+ "▁fin ish",
+ "la im",
+ "▁f eed",
+ "▁fe ed",
+ "▁fee d",
+ "▁ feed",
+ "▁N ap",
+ "▁Na p",
+ "ro om",
+ "r oom",
+ "im ages",
+ "ima ges",
+ "image s",
+ "▁са й",
+ "▁su cc",
+ "▁suc c",
+ "if fer",
+ "iff er",
+ "iffe r",
+ "▁a ño",
+ "▁añ o",
+ "▁c ual",
+ "▁cu al",
+ "ме ри",
+ "мер и",
+ "D R",
+ "▁B ilder",
+ "▁Bi lder",
+ "▁Bild er",
+ "▁Bil der",
+ "б ра",
+ "ra it",
+ "rai t",
+ "r ait",
+ "pa n",
+ "p an",
+ "ен ь",
+ "е нь",
+ "▁dist inct",
+ "▁K n",
+ "ön ig",
+ "ö nig",
+ "an ced",
+ "ance d",
+ "anc ed",
+ "▁lo ading",
+ "▁load ing",
+ "▁ loading",
+ "▁Te chn",
+ "▁S el",
+ "▁Se l",
+ "mu s",
+ "m us",
+ "▁r ail",
+ "▁ra il",
+ "▁st udent",
+ "▁stud ent",
+ "▁ student",
+ "▁not ice",
+ "▁s la",
+ "▁sl a",
+ "▁Д а",
+ "▁gu ard",
+ "▁ guard",
+ "▁D ay",
+ "▁Da y",
+ "▁ Day",
+ "ва ли",
+ "вал и",
+ "в али",
+ "Op tion",
+ "Opt ion",
+ "O ption",
+ "ais on",
+ "ai son",
+ "a ison",
+ "ip p",
+ "i pp",
+ "▁J un",
+ "▁Ju n",
+ "▁f ell",
+ "▁fe ll",
+ "▁fel l",
+ "▁ab solute",
+ "▁absol ute",
+ "▁ absolute",
+ "ов е",
+ "о ве",
+ "de bug",
+ "deb ug",
+ "▁S ud",
+ "▁Su d",
+ "п ы",
+ "ug ins",
+ "ugin s",
+ "▁view s",
+ "▁vie ws",
+ "▁ views",
+ "la y",
+ "l ay",
+ "▁s urr",
+ "▁su rr",
+ "▁sur r",
+ "▁st ood",
+ "▁sto od",
+ "▁ stood",
+ "▁в і",
+ "▁ ві",
+ "select ed",
+ "sel ected",
+ "г і",
+ "▁att ributes",
+ "▁attribute s",
+ "▁ attributes",
+ "fin al",
+ "fi nal",
+ "f inal",
+ "en da",
+ "end a",
+ "▁B on",
+ "▁Bo n",
+ "ne rs",
+ "ner s",
+ "n ers",
+ "▁W er",
+ "▁We r",
+ "bu r",
+ "b ur",
+ "it tel",
+ "itt el",
+ "itte l",
+ "▁m oving",
+ "▁mov ing",
+ "▁mo ving",
+ "▁P lan",
+ "▁Pl an",
+ "▁Pla n",
+ "▁ Plan",
+ "is ches",
+ "isch es",
+ "ische s",
+ "isc hes",
+ "J ava",
+ "▁b asis",
+ "▁bas is",
+ "▁B us",
+ "▁Bu s",
+ "▁ Bus",
+ "▁A u",
+ "▁I ll",
+ "▁Il l",
+ "▁ Ill",
+ "▁вре мя",
+ "▁ц ент",
+ "▁ цент",
+ "hand le",
+ "сту п",
+ "▁F ar",
+ "▁Fa r",
+ "▁o raz",
+ "▁or az",
+ "▁ora z",
+ "oc r",
+ "o cr",
+ "▁se it",
+ "▁sei t",
+ "on der",
+ "ond er",
+ "onde r",
+ "o nder",
+ "до м",
+ "д ом",
+ ": /",
+ "ch or",
+ "cho r",
+ "c hor",
+ "▁T own",
+ "▁To wn",
+ "▁Tow n",
+ "▁def init",
+ "▁defin it",
+ "re act",
+ "rea ct",
+ "▁pie ce",
+ "▁Kar l",
+ "▁Ka rl",
+ "C I",
+ "▁App lication",
+ "▁ Application",
+ "un ter",
+ "unt er",
+ "unte r",
+ "▁for med",
+ "▁form ed",
+ "▁forme d",
+ "▁ formed",
+ "▁п у",
+ "▁ пу",
+ "B o",
+ "▁Dan iel",
+ "▁ Daniel",
+ "▁п ла",
+ "▁ пла",
+ "Bo dy",
+ "B ody",
+ "}) $",
+ "} )$",
+ "▁бы ли",
+ "▁был и",
+ "▁e arth",
+ "▁ear th",
+ "г ла",
+ "Th ere",
+ "The re",
+ "T here",
+ "▁с тра",
+ "▁ст ра",
+ "▁ стра",
+ "▁v ille",
+ "▁vi lle",
+ "▁vill e",
+ "▁vil le",
+ "▁ ville",
+ "▁c entre",
+ "▁cent re",
+ ") \r",
+ "▁help ful",
+ "▁+ +",
+ "▁ ++",
+ "▁C G",
+ "▁ CG",
+ "iz ione",
+ "izi one",
+ "izio ne",
+ "i zione",
+ "▁G ame",
+ "▁Ga me",
+ "▁Gam e",
+ "▁ Game",
+ "▁Wh ich",
+ "▁p ip",
+ "▁pi p",
+ "▁ pip",
+ "▁Port ug",
+ "D S",
+ "▁de scribe",
+ "▁des cribe",
+ "▁descri be",
+ "▁check ing",
+ "▁man ager",
+ "▁manage r",
+ "▁ manager",
+ "B O",
+ "▁B undes",
+ "▁Bund es",
+ "▁Bun des",
+ "bu ch",
+ "b uch",
+ "▁dec ided",
+ "▁decide d",
+ "▁decid ed",
+ "▁Jahrh undert",
+ "▁f if",
+ "▁fi f",
+ "▁ fif",
+ "e fficient",
+ "an ci",
+ "anc i",
+ "br aries",
+ "bra ries",
+ "▁f ails",
+ "▁fa ils",
+ "▁fail s",
+ "▁k ernel",
+ "▁ker nel",
+ "▁ kernel",
+ "▁G l",
+ "▁N acional",
+ "▁pro ceed",
+ "▁proc eed",
+ "▁f uer",
+ "▁fue r",
+ "▁fu er",
+ "▁l iving",
+ "▁li ving",
+ "▁liv ing",
+ "▁success fully",
+ "▁successful ly",
+ "▁f aster",
+ "▁fa ster",
+ "▁fast er",
+ "▁fas ter",
+ "▁con tre",
+ "▁cont re",
+ "▁contr e",
+ "▁ contre",
+ "▁pr ison",
+ "▁pri son",
+ "▁pris on",
+ "OR T",
+ "O RT",
+ "he lp",
+ "hel p",
+ "▁a utor",
+ "▁au tor",
+ "▁aut or",
+ "▁auto r",
+ "▁ autor",
+ "ła w",
+ "ł aw",
+ "aj ą",
+ "a ją",
+ "▁A rm",
+ "▁Ar m",
+ "▁ Arm",
+ "▁pro vin",
+ "▁prov in",
+ "▁na am",
+ "/ #",
+ "se d",
+ "s ed",
+ "▁g esch",
+ "▁ge sch",
+ "▁ges ch",
+ "▁ gesch",
+ "▁м ар",
+ "▁ма р",
+ "▁ мар",
+ "es k",
+ "e sk",
+ "ter m",
+ "te rm",
+ "t erm",
+ "▁T ex",
+ "▁Te x",
+ "▁ Tex",
+ "ir ing",
+ "iri ng",
+ "i ring",
+ "▁t ools",
+ "▁to ols",
+ "▁too ls",
+ "▁tool s",
+ "▁ tools",
+ "PD F",
+ "P DF",
+ "▁u lt",
+ "▁ul t",
+ "▁ ult",
+ "iss enschaft",
+ "issen schaft",
+ "▁could n",
+ "di ng",
+ "din g",
+ "d ing",
+ "De p",
+ "D ep",
+ "{ -",
+ "▁pre dict",
+ "▁pred ict",
+ "▁ predict",
+ "ant age",
+ "anta ge",
+ "▁L ike",
+ "▁Li ke",
+ "▁ Like",
+ "▁Б и",
+ "to ols",
+ "tool s",
+ "t ools",
+ "es tra",
+ "est ra",
+ "estr a",
+ "e stra",
+ "▁k i",
+ "▁ ki",
+ "▁J im",
+ "▁Ji m",
+ "st ar",
+ "sta r",
+ "s tar",
+ "▁re mark",
+ "▁r emark",
+ "▁rem ark",
+ "▁ remark",
+ "ó g",
+ "na bla",
+ "nab la",
+ "▁Al though",
+ "mod e",
+ "mo de",
+ "m ode",
+ "H ost",
+ "▁st range",
+ "▁str ange",
+ "▁stran ge",
+ "No ne",
+ "Non e",
+ "N one",
+ "bl ack",
+ "bla ck",
+ "b lack",
+ "▁F estival",
+ "▁Fest ival",
+ "▁I S",
+ "▁ IS",
+ "an za",
+ "anz a",
+ "▁( -",
+ "▁ (-",
+ "ic ket",
+ "ick et",
+ "i cket",
+ "ко ла",
+ "кол а",
+ "▁J es",
+ "▁Je s",
+ "▁f lex",
+ "▁fl ex",
+ "▁fle x",
+ "▁ flex",
+ "▁ À",
+ "▁N etwork",
+ "▁Net work",
+ "▁ Network",
+ "▁E X",
+ "▁ EX",
+ "▁e nero",
+ "▁en ero",
+ "▁ener o",
+ "! ”",
+ "▁O rt",
+ "▁Or t",
+ "▁al ors",
+ "▁Or iginal",
+ "▁Origin al",
+ "▁Orig inal",
+ "▁ Original",
+ "▁z o",
+ "▁ zo",
+ "ны ми",
+ "ным и",
+ "▁s pl",
+ "▁sp l",
+ "▁ spl",
+ "Dra w",
+ "Dr aw",
+ "D raw",
+ "yo nd",
+ "y ond",
+ "─ ─",
+ "▁O t",
+ "▁d ram",
+ "▁dr am",
+ "▁dra m",
+ "▁di vision",
+ "▁div ision",
+ "▁divis ion",
+ "▁e fficient",
+ "▁effic ient",
+ "▁ efficient",
+ "▁Г а",
+ "▁v ier",
+ "▁vi er",
+ "▁vie r",
+ "▁ vier",
+ "na k",
+ "n ak",
+ "L S",
+ "▁sp irit",
+ "▁spir it",
+ "zeich net",
+ "▁d ici",
+ "▁di ci",
+ "▁dic i",
+ "cl ear",
+ "cle ar",
+ "c lear",
+ "co py",
+ "cop y",
+ "c opy",
+ "ya r",
+ "y ar",
+ "▁ро ці",
+ "us qu",
+ "u squ",
+ "▁n ous",
+ "▁no us",
+ "▁nou s",
+ "▁b lev",
+ "▁bl ev",
+ "▁ble v",
+ "ж де",
+ "Ar g",
+ "A rg",
+ "▁per formed",
+ "▁perform ed",
+ "▁M ake",
+ "▁Ma ke",
+ "▁Mak e",
+ "▁ Make",
+ "▁Car ol",
+ "▁Ca rol",
+ "et to",
+ "ett o",
+ "e tto",
+ "▁S and",
+ "▁San d",
+ "▁Sa nd",
+ "▁D isc",
+ "▁Dis c",
+ "▁Di sc",
+ "En c",
+ "E nc",
+ "re ro",
+ "rer o",
+ "r ero",
+ "ha sh",
+ "has h",
+ "h ash",
+ "▁f ocus",
+ "▁fo cus",
+ "▁foc us",
+ "▁ focus",
+ "▁att ention",
+ "▁a gre",
+ "▁ag re",
+ "▁agr e",
+ "▁di vis",
+ "▁div is",
+ "▁бы ло",
+ "▁был о",
+ "▁e j",
+ "▁ ej",
+ "▁m arch",
+ "▁mar ch",
+ "▁marc h",
+ "▁ph ase",
+ "▁ phase",
+ "ía s",
+ "í as",
+ "▁ph il",
+ "▁P ap",
+ "▁Pa p",
+ "▁r iver",
+ "▁riv er",
+ "▁ri ver",
+ "▁ river",
+ "▁c aused",
+ "▁caus ed",
+ "▁cause d",
+ "▁ca used",
+ "pl ugin",
+ "▁Te am",
+ "▁ Team",
+ "ul er",
+ "ule r",
+ "u ler",
+ "▁$ (\"#",
+ "▁$(\" #",
+ "ie j",
+ "i ej",
+ "I SBN",
+ "na m",
+ "n am",
+ "▁f ight",
+ "▁fig ht",
+ "vi d",
+ "v id",
+ "▁L ud",
+ "▁Lu d",
+ "Select ed",
+ ":@ \"",
+ ": @\"",
+ "▁P od",
+ "▁Po d",
+ "▁ Pod",
+ "▁ann ées",
+ "▁année s",
+ "ar ios",
+ "ari os",
+ "ario s",
+ "a rios",
+ "▁deutsch er",
+ "▁deutsche r",
+ "▁N A",
+ "▁ NA",
+ "▁и ю",
+ "▁d ictionary",
+ "▁diction ary",
+ "▁ dictionary",
+ "▁Л а",
+ "▁T ri",
+ "▁Tr i",
+ "▁ Tri",
+ "è n",
+ "▁polit ical",
+ "rid ge",
+ "r idge",
+ "at ten",
+ "att en",
+ "atte n",
+ "▁circ le",
+ "▁cir cle",
+ "▁ circle",
+ "▁trans port",
+ "▁ transport",
+ "em as",
+ "ema s",
+ "e mas",
+ "F C",
+ "▁replace d",
+ "▁repla ced",
+ "▁A ud",
+ "▁Au d",
+ "is ka",
+ "isk a",
+ "i ska",
+ "Config uration",
+ "▁so ort",
+ "▁Н е",
+ "▁s equ",
+ "▁se qu",
+ "▁seq u",
+ "▁ sequ",
+ "PR O",
+ "P RO",
+ "▁b ud",
+ "▁bu d",
+ "▁ bud",
+ "▁{ {",
+ "▁ {{",
+ "lie ß",
+ "l ieß",
+ "▁M as",
+ "▁Ma s",
+ "de rs",
+ "der s",
+ "d ers",
+ "us ammen",
+ "es a",
+ "e sa",
+ "▁L y",
+ "в ро",
+ "ma c",
+ "m ac",
+ "▁и спо",
+ "▁ис по",
+ "▁s uc",
+ "▁su c",
+ "u y",
+ "▁ill ustr",
+ "▁prim era",
+ "▁prime ra",
+ "▁primer a",
+ "il ation",
+ "ila tion",
+ "i lation",
+ "▁st orage",
+ "▁stor age",
+ "▁sto rage",
+ "▁ storage",
+ "▁par ams",
+ "▁para ms",
+ "▁param s",
+ "▁pa rams",
+ "▁ params",
+ "ka z",
+ "k az",
+ "▁term inal",
+ "▁termin al",
+ "ра ль",
+ "рал ь",
+ "р аль",
+ "▁h olds",
+ "▁hold s",
+ "▁hol ds",
+ "▁ holds",
+ "ло сь",
+ "▁n ad",
+ "▁na d",
+ "▁ nad",
+ "” .",
+ "▁oct ubre",
+ "bu l",
+ "b ul",
+ "▁h us",
+ "▁hu s",
+ "▁ hus",
+ "UL T",
+ "U LT",
+ "▁ég alement",
+ "▁M ill",
+ "▁Mil l",
+ "▁Mi ll",
+ "▁ Mill",
+ "ła d",
+ "ł ad",
+ "▁cont iene",
+ "\" ?",
+ "▁> >>",
+ "▁>> >",
+ "Qu e",
+ "Q ue",
+ " ",
+ "▁p lain",
+ "▁pl ain",
+ "▁pla in",
+ "▁ plain",
+ "at iva",
+ "ativ a",
+ "ati va",
+ "oc ker",
+ "ock er",
+ "o cker",
+ "Name s",
+ "Na mes",
+ "N ames",
+ "▁J ud",
+ "▁Ju d",
+ "▁ag ree",
+ "▁agre e",
+ "▁agr ee",
+ "▁G emeinde",
+ "▁Geme inde",
+ "la re",
+ "lar e",
+ "l are",
+ "ка за",
+ "каз а",
+ "▁st arts",
+ "▁start s",
+ "▁star ts",
+ "▁ starts",
+ "▁p rice",
+ "▁pr ice",
+ "▁pri ce",
+ "▁ price",
+ "T arget",
+ "cu s",
+ "c us",
+ "▁Inst ead",
+ ". ;",
+ "▁altern ative",
+ "▁alter native",
+ "▁в ла",
+ "I E",
+ "▁organ iz",
+ "in u",
+ "i nu",
+ "▁comp leted",
+ "▁comple ted",
+ "▁complet ed",
+ "▁complete d",
+ "▁car ry",
+ "at om",
+ "ato m",
+ "a tom",
+ "▁dep ending",
+ "▁depend ing",
+ "▁O ur",
+ "▁in sp",
+ "▁ins p",
+ "▁& \\",
+ "▁ &\\",
+ "ail y",
+ "ai ly",
+ "a ily",
+ "ir ection",
+ "ire ction",
+ "irect ion",
+ "ф а",
+ "▁d efe",
+ "▁de fe",
+ "▁def e",
+ "TA C",
+ "T AC",
+ "▁de signed",
+ "▁des igned",
+ "▁design ed",
+ "▁v oir",
+ "▁vo ir",
+ "▁ voir",
+ "bre ak",
+ "▁part ie",
+ "▁parti e",
+ "▁J ahren",
+ "▁Jah ren",
+ "▁Jahr en",
+ "▁Jahre n",
+ "▁Ja hren",
+ "▁st udio",
+ "▁stud io",
+ "▁studi o",
+ "▁ studio",
+ "▁j our",
+ "▁jo ur",
+ "▁jou r",
+ "▁N otes",
+ "▁No tes",
+ "▁Not es",
+ "▁Note s",
+ "fi re",
+ "fir e",
+ "f ire",
+ "ho use",
+ "hou se",
+ "h ouse",
+ "su ccess",
+ "▁J uan",
+ "▁Ju an",
+ "J S",
+ "▁C ustom",
+ "▁ Custom",
+ "▁b esch",
+ "▁be sch",
+ "▁bes ch",
+ "▁st ated",
+ "▁stat ed",
+ "▁state d",
+ "▁sta ted",
+ "boot strap",
+ "öt t",
+ "ö tt",
+ "oz zá",
+ "▁C ON",
+ "▁CO N",
+ "▁ CON",
+ "ha v",
+ "h av",
+ "▁s leep",
+ "▁sle ep",
+ "▁ sleep",
+ "ed a",
+ "e da",
+ "ho t",
+ "h ot",
+ "án d",
+ "á nd",
+ "▁S y",
+ "▁tem ps",
+ "▁temp s",
+ "▁ temps",
+ "am ar",
+ "ama r",
+ "a mar",
+ "▁s cal",
+ "▁sc al",
+ "▁ scal",
+ "▁a st",
+ "▁as t",
+ "▁ ast",
+ "▁op ening",
+ "▁open ing",
+ "cli pse",
+ "clip se",
+ "c lipse",
+ "▁program ming",
+ "▁ programming",
+ "▁let ters",
+ "▁letter s",
+ "▁lett ers",
+ "▁pro file",
+ "▁prof ile",
+ "▁profil e",
+ "▁ profile",
+ "na h",
+ "n ah",
+ "▁be yond",
+ "▁Fur ther",
+ "face s",
+ "fa ces",
+ "fac es",
+ "f aces",
+ "▁c hart",
+ "▁ch art",
+ "▁char t",
+ "▁cha rt",
+ "▁ chart",
+ "зд а",
+ "з да",
+ "ai gn",
+ "a ign",
+ "ні й",
+ "н ій",
+ "▁R ol",
+ "▁Ro l",
+ "ова но",
+ "ован о",
+ "ter ior",
+ "te rior",
+ "we d",
+ "w ed",
+ "▁her self",
+ "▁hers elf",
+ "▁n g",
+ "▁ ng",
+ "angu ages",
+ "anguage s",
+ "}= \\",
+ "} =\\",
+ "ynam ic",
+ "yna mic",
+ "▁j ug",
+ "▁ju g",
+ "▁Ex ample",
+ "▁ Example",
+ "▁( †",
+ "▁play ing",
+ "▁pla ying",
+ "▁us age",
+ "▁ usage",
+ "▁man aged",
+ "▁manage d",
+ "▁ managed",
+ "▁N atur",
+ "▁Nat ur",
+ "те ри",
+ "тер и",
+ "▁E t",
+ "er ia",
+ "eri a",
+ "e ria",
+ "▁daugh ter",
+ "ни ем",
+ "ние м",
+ "F ragment",
+ "▁h ol",
+ "▁ho l",
+ "▁ hol",
+ "F l",
+ "огра фи",
+ "ограф и",
+ "о графи",
+ "▁i hn",
+ "▁ih n",
+ "ü h",
+ "inst ance",
+ "▁com un",
+ "▁co mun",
+ "▁tr uth",
+ "▁са мо",
+ "▁сам о",
+ "▁implement ed",
+ "▁any way",
+ "▁C ro",
+ "▁Cr o",
+ "ф е",
+ "G C",
+ "ub untu",
+ "u buntu",
+ "ty pes",
+ "type s",
+ "typ es",
+ "t ypes",
+ "ê s",
+ ".~ \\",
+ ". ~\\",
+ "fo ld",
+ "fol d",
+ "f old",
+ "▁jo ined",
+ "▁join ed",
+ "? ?",
+ "▁m é",
+ "▁ mé",
+ "▁w ild",
+ "▁wil d",
+ "к лю",
+ "row ser",
+ "rows er",
+ "▁H ome",
+ "▁Ho me",
+ "▁Hom e",
+ "▁ Home",
+ "sk iej",
+ "ski ej",
+ "skie j",
+ "s kiej",
+ "▁J OIN",
+ "▁ju in",
+ "ho f",
+ "h of",
+ "▁data set",
+ "▁dat aset",
+ "▁datas et",
+ "▁ dataset",
+ "ж ду",
+ "') )",
+ "' ))",
+ "▁mie js",
+ "AP I",
+ "A PI",
+ "▁ed ited",
+ "▁edit ed",
+ "ool s",
+ "oo ls",
+ "o ols",
+ "▁se eing",
+ "▁see ing",
+ "ij d",
+ "i jd",
+ "▁pro cedure",
+ "▁proced ure",
+ "▁B ras",
+ "▁Br as",
+ "▁Bra s",
+ "▁s igned",
+ "▁sign ed",
+ "▁sig ned",
+ "▁ signed",
+ "▁extern os",
+ "▁dis app",
+ "▁D irect",
+ "▁Di rect",
+ "▁Dire ct",
+ "▁Dir ect",
+ "▁ Direct",
+ "cy c",
+ "c yc",
+ "▁cons ult",
+ "ör d",
+ "ö rd",
+ "W idget",
+ "ci ous",
+ "cio us",
+ "c ious",
+ "se ct",
+ "sec t",
+ "s ect",
+ "▁Д и",
+ "▁w ind",
+ "▁win d",
+ "▁ wind",
+ "▁Archiv ado",
+ "am l",
+ "a ml",
+ "с с",
+ "W h",
+ "kb d",
+ "k bd",
+ "▁Ar my",
+ "▁Arm y",
+ "▁s uffer",
+ "▁suf fer",
+ "▁suff er",
+ "art ifact",
+ "▁resol ve",
+ "▁ resolve",
+ "▁S port",
+ "▁Sp ort",
+ "▁Spo rt",
+ "▁ц е",
+ "▁ це",
+ "id as",
+ "ida s",
+ "i das",
+ "▁t ax",
+ "▁ta x",
+ "▁ tax",
+ "id i",
+ "i di",
+ "▁a ctions",
+ "▁act ions",
+ "▁action s",
+ "▁ actions",
+ "пр а",
+ "п ра",
+ "pu és",
+ "p ués",
+ "▁n aj",
+ "▁na j",
+ "F alse",
+ "▁ch ance",
+ "▁та ко",
+ "▁так о",
+ "ä d",
+ "▁d ol",
+ "▁do l",
+ "▁en v",
+ "▁ env",
+ "▁bas ically",
+ "▁basic ally",
+ "▁Coun cil",
+ "zt e",
+ "z te",
+ "▁display ed",
+ "ni l",
+ "n il",
+ "comp lete",
+ "comple te",
+ "▁L em",
+ "▁Le m",
+ "ian ce",
+ "i ance",
+ "▁ос нов",
+ "▁de pend",
+ "▁dep end",
+ "pl om",
+ "ens us",
+ "ut s",
+ "u ts",
+ "▁H ot",
+ "▁Ho t",
+ "▁ Hot",
+ "bit r",
+ "bi tr",
+ "▁valid ation",
+ "▁ validation",
+ "ab b",
+ "a bb",
+ "▁т ре",
+ "▁ тре",
+ "k m",
+ "z d",
+ "ö ff",
+ "W E",
+ "▁inter ested",
+ "▁interest ed",
+ "▁{ \"",
+ "▁ {\"",
+ "ar o",
+ "a ro",
+ "▁cor rel",
+ "▁corre l",
+ "▁corr el",
+ "▁d edic",
+ "▁de dic",
+ "▁ded ic",
+ "▁l ists",
+ "▁list s",
+ "▁ lists",
+ "▁Bibli ografia",
+ "▁ear lier",
+ "pr ogram",
+ "pro gram",
+ "prog ram",
+ "▁prem ière",
+ "▁premi ère",
+ "fr ont",
+ "f ront",
+ "T ab",
+ "ст ву",
+ "ств у",
+ "dr op",
+ "dro p",
+ "d rop",
+ "▁f ear",
+ "▁fe ar",
+ "▁En laces",
+ "▁C apt",
+ "▁Cap t",
+ "▁Ca pt",
+ "▁ Capt",
+ "▁real iz",
+ "▁h al",
+ "▁ha l",
+ "▁ hal",
+ "▁inst ances",
+ "▁instance s",
+ "▁su sp",
+ "▁sus p",
+ "il ling",
+ "ill ing",
+ "illi ng",
+ "% ;",
+ "{ }",
+ "| |",
+ "▁part ition",
+ "▁parti tion",
+ "▁ partition",
+ "▁Bu ild",
+ "▁ Build",
+ "▁w o",
+ "▁ wo",
+ "▁П ер",
+ "▁Пе р",
+ "▁direct or",
+ "▁dire ctor",
+ "▁dir ector",
+ "▁S in",
+ "▁Si n",
+ "ти я",
+ "rs g",
+ "r sg",
+ "ou ver",
+ "ouv er",
+ "ouve r",
+ "▁near ly",
+ "od a",
+ "o da",
+ "кти в",
+ "к тив",
+ "▁s ir",
+ "▁si r",
+ "IM E",
+ "I ME",
+ "▁jan vier",
+ "▁W in",
+ "▁Wi n",
+ "▁ Win",
+ "Bu ild",
+ "ie urs",
+ "ieu rs",
+ "ieur s",
+ "i eurs",
+ "IN E",
+ "I NE",
+ "d ouble",
+ "La st",
+ "L ast",
+ "▁pol icy",
+ "▁polic y",
+ "▁ policy",
+ "st ore",
+ "sto re",
+ "stor e",
+ "▁obser ved",
+ "▁observ ed",
+ "▁observe d",
+ "▁obs erved",
+ "▁famil ie",
+ "ni ca",
+ "nic a",
+ "n ica",
+ "re y",
+ "r ey",
+ "з ь",
+ "▁Y ear",
+ "▁Ye ar",
+ "▁ Year",
+ "▁develop ed",
+ "▁deve loped",
+ "▁Inst itute",
+ "▁Instit ute",
+ "▁Institut e",
+ "▁re ply",
+ "▁rep ly",
+ "Com ple",
+ "Comp le",
+ "ic ian",
+ "ici an",
+ "icia n",
+ "i cian",
+ "▁G uer",
+ "▁Gu er",
+ "▁d all",
+ "▁da ll",
+ "▁dal l",
+ "▁d esp",
+ "▁de sp",
+ "▁des p",
+ "▁Foot ball",
+ "Em pty",
+ "Emp ty",
+ "ck en",
+ "cke n",
+ "c ken",
+ "un da",
+ "und a",
+ "▁U r",
+ "▁i g",
+ "▁ ig",
+ "▁A tl",
+ "▁At l",
+ "aut hor",
+ "auth or",
+ "▁B ol",
+ "▁Bo l",
+ "zi g",
+ "z ig",
+ "na t",
+ "n at",
+ "š t",
+ "se curity",
+ "sec urity",
+ "on ic",
+ "oni c",
+ "o nic",
+ "▁p es",
+ "▁pe s",
+ "▁ pes",
+ "it an",
+ "ita n",
+ "i tan",
+ "▁Ex tern",
+ "▁Ext ern",
+ "ja n",
+ "j an",
+ "VA L",
+ "V AL",
+ "▁и м",
+ "▁ им",
+ "bo ld",
+ "bol d",
+ "b old",
+ "▁в а",
+ "▁ ва",
+ "▁М о",
+ "▁dis put",
+ "▁disp ut",
+ "▁t rick",
+ "▁tr ick",
+ "▁tri ck",
+ "▁p ed",
+ "▁pe d",
+ "▁ ped",
+ ")^ {",
+ ") ^{",
+ "in to",
+ "int o",
+ "Si m",
+ "S im",
+ "▁par allel",
+ "▁ parallel",
+ "fo x",
+ "f ox",
+ "norm al",
+ "nor mal",
+ "n ormal",
+ "in ent",
+ "ine nt",
+ "inen t",
+ "пе ди",
+ "п еди",
+ "ho ld",
+ "hol d",
+ "h old",
+ "O K",
+ "▁c hem",
+ "▁ch em",
+ "▁che m",
+ "▁ chem",
+ "▁tw ice",
+ "▁us ername",
+ "▁user name",
+ "▁ username",
+ "i č",
+ "▁re presentation",
+ "▁represent ation",
+ "▁repres entation",
+ "▁j ournal",
+ "▁jour nal",
+ "▁journ al",
+ "▁: -",
+ "▁ :-",
+ "▁b att",
+ "▁ba tt",
+ "▁bat t",
+ "\\ %",
+ "▁certain ly",
+ "▁Ex ception",
+ "▁ Exception",
+ "ep s",
+ "e ps",
+ "sh ot",
+ "s hot",
+ "at egy",
+ "ate gy",
+ "ateg y",
+ "Sh ow",
+ "S how",
+ "▁Car l",
+ "▁Ca rl",
+ "ri g",
+ "r ig",
+ "▁rep orted",
+ "▁report ed",
+ "bot tom",
+ "b ottom",
+ "T F",
+ "▁Francis co",
+ "na p",
+ "n ap",
+ "▁Champion ship",
+ "▁Champions hip",
+ "▁c ourt",
+ "▁co urt",
+ "▁cour t",
+ "▁cou rt",
+ "▁ court",
+ "▁s ources",
+ "▁source s",
+ "io ur",
+ "i our",
+ "▁con serv",
+ "▁cons erv",
+ "▁conse rv",
+ "▁conser v",
+ "di ct",
+ "dic t",
+ "d ict",
+ "▁Р у",
+ "I B",
+ "▁V e",
+ "▁ №",
+ "▁E R",
+ "▁ ER",
+ "\") );",
+ "\")) ;",
+ "\" ));",
+ "▁P oint",
+ "▁Po int",
+ "▁ Point",
+ "az ine",
+ "azi ne",
+ "▁inter net",
+ "▁intern et",
+ "д на",
+ "▁car ried",
+ "▁carri ed",
+ "▁F ield",
+ "▁ Field",
+ "ax is",
+ "axi s",
+ "a xis",
+ "▁S un",
+ "▁Su n",
+ "▁a ve",
+ "▁av e",
+ "▁ ave",
+ "пи с",
+ "п ис",
+ "я н",
+ "as y",
+ "▁ju lio",
+ "▁jul io",
+ "▁juli o",
+ "▁de puis",
+ "▁dep uis",
+ "▁sugg estion",
+ "▁suggest ion",
+ "[ [",
+ "▁Arch ive",
+ "▁Archiv e",
+ "ę p",
+ "▁P ra",
+ "▁Pr a",
+ "re h",
+ "r eh",
+ "▁demon str",
+ "ф і",
+ "cm d",
+ "c md",
+ "▁was n",
+ "▁wa sn",
+ "▁ph one",
+ "▁ phone",
+ "up load",
+ "ay a",
+ "a ya",
+ "то ра",
+ "тор а",
+ "li nes",
+ "line s",
+ "lin es",
+ "l ines",
+ "▁in du",
+ "▁ind u",
+ "▁ indu",
+ "▁v ot",
+ "▁vo t",
+ "▁es pa",
+ "▁esp a",
+ "▁b in",
+ "▁bi n",
+ "▁ bin",
+ "▁по сле",
+ "▁пос ле",
+ "pl an",
+ "pla n",
+ "p lan",
+ "▁ju nio",
+ "▁jun io",
+ "▁juni o",
+ "or ial",
+ "oria l",
+ "ori al",
+ "o rial",
+ "fr ee",
+ "fre e",
+ "f ree",
+ "ster reich",
+ "▁д у",
+ "▁ ду",
+ "▁link ed",
+ "▁lin ked",
+ "▁en able",
+ "▁ enable",
+ "P C",
+ "▁dens ity",
+ "▁E gy",
+ "▁Eg y",
+ "y o",
+ "end re",
+ "▁с ъ",
+ "▁ital iano",
+ "▁A R",
+ "▁ AR",
+ "▁P ers",
+ "▁Per s",
+ "▁Pe rs",
+ "▁ Pers",
+ "fér és",
+ "▁с кла",
+ "V ar",
+ "▁On ce",
+ "▁ Once",
+ "Re d",
+ "R ed",
+ "buf fer",
+ "buff er",
+ "b uffer",
+ "▁En ter",
+ "▁Ent er",
+ "▁ Enter",
+ "▁ Š",
+ "im iento",
+ "imi ento",
+ "St ore",
+ "Sto re",
+ "▁he alth",
+ "va t",
+ "v at",
+ "IS T",
+ "I ST",
+ "O h",
+ "▁k w",
+ "▁ kw",
+ "▁r iv",
+ "▁ri v",
+ "▁ riv",
+ "▁some where",
+ "ograf ie",
+ "ografi e",
+ "priv ate",
+ "p rivate",
+ "кт и",
+ "к ти",
+ "▁de lay",
+ "▁del ay",
+ "▁ delay",
+ "▁H ttp",
+ "▁ Http",
+ "jo b",
+ "j ob",
+ "ra el",
+ "r ael",
+ "em por",
+ "emp or",
+ "▁dici embre",
+ "▁dic iembre",
+ "êt e",
+ "ê te",
+ "ц у",
+ "▁com mit",
+ "▁comm it",
+ "▁ commit",
+ "os o",
+ "o so",
+ "Val ues",
+ "Value s",
+ "▁he aders",
+ "▁head ers",
+ "▁header s",
+ "▁ headers",
+ "trans form",
+ "▁process ing",
+ "▁proces sing",
+ "▁ processing",
+ "r å",
+ "▁A h",
+ "▁ Ah",
+ "▁N ode",
+ "▁No de",
+ "▁ Node",
+ "-- ----------",
+ "---- --------",
+ "-------- ----",
+ "------ ------",
+ "----- -------",
+ "------- -----",
+ "---------- --",
+ "▁f aire",
+ "▁fa ire",
+ "▁fair e",
+ "▁h un",
+ "▁hu n",
+ "Pl ayer",
+ "Play er",
+ "P layer",
+ "▁re view",
+ "▁rev iew",
+ "▁ review",
+ "г да",
+ "▁lim ited",
+ "▁limit ed",
+ "▁ limited",
+ "▁Pro perty",
+ "▁ Property",
+ "▁s erve",
+ "▁ser ve",
+ "▁serv e",
+ "▁ serve",
+ "ri age",
+ "ria ge",
+ "▁M aster",
+ "▁Ma ster",
+ "▁Mas ter",
+ "▁ Master",
+ "▁k ann",
+ "▁kan n",
+ "▁ka nn",
+ "cre te",
+ "cret e",
+ "cr ete",
+ "ph ere",
+ "pher e",
+ "phe re",
+ "p here",
+ "ё р",
+ "▁ch ief",
+ "▁chi ef",
+ "▁sc ene",
+ "▁scen e",
+ "▁ scene",
+ "ki n",
+ "k in",
+ "▁un iform",
+ "▁ uniform",
+ "▁feb rero",
+ "\" }",
+ "il lo",
+ "ill o",
+ "IT E",
+ "I TE",
+ "ou vel",
+ "ouv el",
+ "ouve l",
+ "use package",
+ "en th",
+ "ent h",
+ "e nth",
+ "▁quick ly",
+ "L ambda",
+ "xe s",
+ "x es",
+ "▁c ells",
+ "▁cell s",
+ "▁cel ls",
+ "ro g",
+ "r og",
+ "am in",
+ "ami n",
+ "a min",
+ "▁М ар",
+ "▁Ма р",
+ "▁may or",
+ "▁mayo r",
+ "pl ayer",
+ "play er",
+ "pla yer",
+ "p layer",
+ "++ ;",
+ "▁На се",
+ "▁sa fe",
+ "▁saf e",
+ "▁ safe",
+ "▁ve loc",
+ "▁vel oc",
+ "▁о бра",
+ "▁об ра",
+ "▁ обра",
+ "Data base",
+ "Dat abase",
+ "D atabase",
+ "ne h",
+ "n eh",
+ "Ver t",
+ "V ert",
+ "▁f le",
+ "▁fl e",
+ "▁ф ор",
+ "▁фо р",
+ "▁ фор",
+ "▁f oreign",
+ "▁for eign",
+ "▁fore ign",
+ "Ab stract",
+ "▁m agn",
+ "▁ma gn",
+ "▁mag n",
+ "▁mod ified",
+ "▁milit ary",
+ "▁militar y",
+ "▁m onde",
+ "▁mon de",
+ "▁mo nde",
+ "▁mond e",
+ "▁A ction",
+ "▁Act ion",
+ "▁Ac tion",
+ "▁ Action",
+ "▁b ank",
+ "▁ban k",
+ "▁ bank",
+ "Ser ial",
+ "Se rial",
+ "▁contin uous",
+ "▁continu ous",
+ "▁g el",
+ "▁ge l",
+ "▁ gel",
+ "▁phys ical",
+ "▁introdu ced",
+ "▁introduce d",
+ "ut ure",
+ "ri ck",
+ "ric k",
+ "r ick",
+ "▁present ed",
+ "▁pres ented",
+ "▁presente d",
+ "▁P rov",
+ "▁Pro v",
+ "▁Pr ov",
+ "▁B oth",
+ "▁Bo th",
+ "▁Bot h",
+ "Po s",
+ "P os",
+ "su per",
+ "sup er",
+ "s uper",
+ "& #",
+ "▁f inding",
+ "▁find ing",
+ "▁fin ding",
+ "ne l",
+ "n el",
+ "un de",
+ "und e",
+ "u nde",
+ "▁fr ån",
+ "sk im",
+ "ski m",
+ "s kim",
+ "▁H ill",
+ "▁Hi ll",
+ "▁Hil l",
+ "f n",
+ "▁Can ad",
+ "▁Ca nad",
+ "▁int ended",
+ "▁inten ded",
+ "▁intend ed",
+ "ozzá férés",
+ "▁ju illet",
+ "▁W ars",
+ "▁War s",
+ "▁Wa rs",
+ "▁success ful",
+ "▁ch arg",
+ "▁char g",
+ "▁cha rg",
+ "▁ charg",
+ "ie le",
+ "iel e",
+ "i ele",
+ "om ething",
+ "ome thing",
+ "omet hing",
+ "ok u",
+ "o ku",
+ "f etch",
+ "▁} }",
+ "▁ }}",
+ "ban k",
+ "b ank",
+ "operator name",
+ "▁Col or",
+ "▁Co lor",
+ "▁ Color",
+ "▁C ard",
+ "▁Car d",
+ "▁Ca rd",
+ "▁ Card",
+ "t u",
+ "▁\" ,",
+ "▁ \",",
+ "wi d",
+ "w id",
+ "▁g ep",
+ "▁ge p",
+ "X ML",
+ "======== ========",
+ "▁Vir gin",
+ "ähr end",
+ "äh rend",
+ "lic ated",
+ "licate d",
+ "lica ted",
+ "Di r",
+ "D ir",
+ "ze ro",
+ "zer o",
+ "z ero",
+ "▁K al",
+ "▁Ka l",
+ "▁Par ty",
+ "▁Part y",
+ "▁ å",
+ "pr ice",
+ "p rice",
+ "do n",
+ "d on",
+ "▁w arning",
+ "▁war ning",
+ "▁warn ing",
+ "▁ warning",
+ "▁B ad",
+ "▁Ba d",
+ "▁ Bad",
+ "▁S upp",
+ "▁Su pp",
+ "▁Sup p",
+ "▁ Supp",
+ "▁L iga",
+ "▁Li ga",
+ "▁Lig a",
+ "▁P ierre",
+ "▁Pier re",
+ "▁ Pierre",
+ "Re cord",
+ "Rec ord",
+ "ul ator",
+ "ula tor",
+ "▁R ome",
+ "▁Ro me",
+ "▁Rom e",
+ "▁the orem",
+ "▁ theorem",
+ "▁entire ly",
+ "ски м",
+ "ск им",
+ "с ким",
+ "he t",
+ "h et",
+ "▁d opo",
+ "▁do po",
+ "▁dop o",
+ "Ne xt",
+ "N ext",
+ "ml ung",
+ "m lung",
+ "wi g",
+ "w ig",
+ "▁A th",
+ "▁At h",
+ "▁S ou",
+ "▁So u",
+ "li cher",
+ "lic her",
+ "lich er",
+ "liche r",
+ "l icher",
+ "▁s udo",
+ "▁su do",
+ "▁sud o",
+ "▁ sudo",
+ "es ts",
+ "est s",
+ "хі в",
+ "х ів",
+ "▁sept iembre",
+ "▁m icro",
+ "▁mi cro",
+ "▁mic ro",
+ "▁t rop",
+ "▁tr op",
+ "▁tro p",
+ "fi t",
+ "f it",
+ "Co re",
+ "Cor e",
+ "C ore",
+ "▁Rad io",
+ "▁ Radio",
+ "▁Or gan",
+ "▁ Organ",
+ "▁P ower",
+ "▁Po wer",
+ "▁Pow er",
+ "▁ Power",
+ "C F",
+ "▁L ast",
+ "▁La st",
+ "▁Las t",
+ "▁ Last",
+ "▁op pos",
+ "▁opp os",
+ "▁off set",
+ "▁ offset",
+ "▁re gia",
+ "▁reg ia",
+ "▁min imum",
+ "▁minim um",
+ "▁hel ped",
+ "▁help ed",
+ "an don",
+ "and on",
+ "ando n",
+ "if ying",
+ "ify ing",
+ "ru it",
+ "r uit",
+ "ensch app",
+ "▁b ere",
+ "▁be re",
+ "▁ber e",
+ "▁ bere",
+ "V M",
+ "▁A wards",
+ "▁Award s",
+ "▁Aw ards",
+ "▁a gr",
+ "▁ag r",
+ "▁ agr",
+ "yn omial",
+ "en ced",
+ "ence d",
+ "enc ed",
+ "▁dev ices",
+ "▁device s",
+ "▁devi ces",
+ "▁b ot",
+ "▁bo t",
+ "▁ bot",
+ "▁f irm",
+ "▁fi rm",
+ "▁fir m",
+ "▁w riter",
+ "▁writ er",
+ "▁wr iter",
+ "▁write r",
+ "▁ writer",
+ "▁r ing",
+ "▁ri ng",
+ "▁rin g",
+ "▁ ring",
+ ". -",
+ "is tes",
+ "ist es",
+ "iste s",
+ "l ä",
+ "▁m el",
+ "▁me l",
+ "▁ mel",
+ "ent ation",
+ "enta tion",
+ "▁Sch w",
+ "▁Sc hw",
+ "▁n ome",
+ "▁no me",
+ "▁nom e",
+ "▁ nome",
+ "▁po bla",
+ "▁pob la",
+ "▁w oj",
+ "▁wo j",
+ "▁u l",
+ "▁ ul",
+ "en to",
+ "ent o",
+ "ы х",
+ "▁res ist",
+ "▁rem ains",
+ "▁remain s",
+ "▁C a",
+ "▁ Ca",
+ "añ a",
+ "a ña",
+ "▁C ourt",
+ "▁Co urt",
+ "▁Cour t",
+ "▁Cou rt",
+ "ut able",
+ "uta ble",
+ "u table",
+ "ential ly",
+ "enti ally",
+ "▁t rat",
+ "▁tr at",
+ "▁tra t",
+ "▁ trat",
+ "▁Vis ual",
+ "▁ Visual",
+ "▁rest rict",
+ "▁pre viously",
+ "▁previous ly",
+ "▁prev iously",
+ "ca tion",
+ "cat ion",
+ "c ation",
+ "▁о со",
+ "▁ос о",
+ "▁My SQL",
+ "f ör",
+ "cal a",
+ "ca la",
+ "c ala",
+ "▁c ulture",
+ "▁cult ure",
+ "li ve",
+ "liv e",
+ "l ive",
+ "▁accept ed",
+ "Di d",
+ "D id",
+ "▁h ous",
+ "▁ho us",
+ "▁se lection",
+ "▁select ion",
+ "▁sel ection",
+ "▁sele ction",
+ "▁ selection",
+ "▁de cre",
+ "▁dec re",
+ "mar gin",
+ "m argin",
+ "ur b",
+ "u rb",
+ "▁I nc",
+ "▁In c",
+ "▁M any",
+ "▁Man y",
+ "▁Ma ny",
+ "▁ Many",
+ "ib t",
+ "i bt",
+ "▁succ eed",
+ "▁suc ceed",
+ "Bind ing",
+ "B inding",
+ "c í",
+ "▁R og",
+ "▁Ro g",
+ "▁should n",
+ "cl oud",
+ "clo ud",
+ "clou d",
+ "▁d z",
+ "▁ dz",
+ "ва в",
+ "▁p ix",
+ "▁pi x",
+ "sm all",
+ "▁project s",
+ "▁ projects",
+ "▁O K",
+ "▁ OK",
+ "▁la test",
+ "▁lat est",
+ "▁late st",
+ "▁ latest",
+ "▁re ferences",
+ "▁refer ences",
+ "▁reference s",
+ "Pro gram",
+ "Pr ogram",
+ "▁er st",
+ "▁ers t",
+ "▁ erst",
+ "▁я к",
+ "▁k am",
+ "▁ka m",
+ "▁C amb",
+ "▁Cam b",
+ "▁Ca mb",
+ "el lt",
+ "ell t",
+ "ö d",
+ "no ne",
+ "non e",
+ "n one",
+ "▁j usqu",
+ "▁ju squ",
+ "ki ng",
+ "kin g",
+ "k ing",
+ "▁P ed",
+ "▁Pe d",
+ "as sert",
+ "ass ert",
+ "asse rt",
+ "asser t",
+ "C S",
+ "ri to",
+ "rit o",
+ "r ito",
+ "es sa",
+ "ess a",
+ "ль ко",
+ "▁V on",
+ "▁Vo n",
+ "▁Ed ward",
+ "▁im possible",
+ "▁impos sible",
+ "n p",
+ "word s",
+ "wor ds",
+ "w ords",
+ "ie lt",
+ "iel t",
+ "i elt",
+ "▁P age",
+ "▁Pa ge",
+ "▁ Page",
+ "le rs",
+ "ler s",
+ "l ers",
+ "▁p ier",
+ "▁pi er",
+ "▁pie r",
+ "▁обла сти",
+ "itt ee",
+ "itte e",
+ "▁( [",
+ "▁ ([",
+ "▁t rust",
+ "▁tr ust",
+ "N G",
+ "re du",
+ "red u",
+ "r edu",
+ "< <",
+ "ri al",
+ "ria l",
+ "r ial",
+ "▁product s",
+ "▁ products",
+ "▁E rn",
+ "▁Er n",
+ "ri ère",
+ "r ière",
+ "го в",
+ "г ов",
+ "▁Re ich",
+ "▁Ro ad",
+ "▁n ested",
+ "▁ne sted",
+ "▁nest ed",
+ "▁ nested",
+ "Dis play",
+ "▁str ength",
+ "ograf ía",
+ "▁ann ounced",
+ "▁announ ced",
+ "▁S cience",
+ "▁Sc ience",
+ "▁Sci ence",
+ "▁рай о",
+ "Param eter",
+ "▁T ask",
+ "▁Ta sk",
+ "▁Tas k",
+ "▁ Task",
+ "um ents",
+ "ument s",
+ "umen ts",
+ "u ments",
+ "▁ad opt",
+ "▁On ly",
+ "▁ Only",
+ "ют ь",
+ "ю ть",
+ "▁c li",
+ "▁cl i",
+ "▁ cli",
+ "▁l em",
+ "▁le m",
+ "▁ lem",
+ "st ood",
+ "sto od",
+ "▁F I",
+ "▁ FI",
+ "ên cias",
+ "ência s",
+ "pon ents",
+ "ponent s",
+ "] $",
+ "com ment",
+ "comm ent",
+ "▁y a",
+ "▁ ya",
+ "sh ould",
+ "ik e",
+ "i ke",
+ "ti m",
+ "t im",
+ "el lig",
+ "ell ig",
+ "elli g",
+ "▁s ending",
+ "▁send ing",
+ "▁sen ding",
+ "▁a jax",
+ "▁aj ax",
+ "▁ ajax",
+ "▁nov iembre",
+ "um es",
+ "ume s",
+ "u mes",
+ "▁we iter",
+ "▁weit er",
+ "▁D ans",
+ "▁Dan s",
+ "▁Da ns",
+ "op p",
+ "o pp",
+ "▁sept embre",
+ "▁sep tembre",
+ "ot imes",
+ "oti mes",
+ "o times",
+ "z ő",
+ "▁e p",
+ "▁ ep",
+ "ve re",
+ "ver e",
+ "v ere",
+ "▁o h",
+ "▁ oh",
+ ": =",
+ "▁S ong",
+ "▁So ng",
+ "▁Son g",
+ "” ,",
+ "▁v iv",
+ "▁vi v",
+ "▁ viv",
+ "▁qu eries",
+ "▁que ries",
+ "▁quer ies",
+ "▁v á",
+ "▁ vá",
+ "▁déc embre",
+ "▁un able",
+ "▁una ble",
+ "▁e rh",
+ "▁er h",
+ "▁` -",
+ "▁ `-",
+ "▁L ee",
+ "▁Le e",
+ "▁er sten",
+ "▁erst en",
+ "▁erste n",
+ "▁ers ten",
+ "ô t",
+ "ст ве",
+ "ств е",
+ "T S",
+ "▁f ragment",
+ "▁fra gment",
+ "▁frag ment",
+ "▁ fragment",
+ "▁w ide",
+ "▁wid e",
+ "▁ wide",
+ "▁s uff",
+ "▁su ff",
+ "▁suf f",
+ "▁d ut",
+ "▁du t",
+ "▁V ere",
+ "▁Ver e",
+ "▁Ve re",
+ "і с",
+ "ad ing",
+ "adi ng",
+ "adin g",
+ "a ding",
+ "ie go",
+ "ieg o",
+ "i ego",
+ "ic ago",
+ "ica go",
+ "▁Ar gent",
+ "▁Arg ent",
+ "or er",
+ "ore r",
+ "o rer",
+ "en nes",
+ "enn es",
+ "enne s",
+ "▁L eb",
+ "▁Le b",
+ "lin ux",
+ "ac ing",
+ "aci ng",
+ "a cing",
+ "▁br oken",
+ "▁bro ken",
+ "▁broke n",
+ "t p",
+ "í o",
+ "ab eth",
+ "abe th",
+ "abet h",
+ "ist as",
+ "ista s",
+ "ge w",
+ "g ew",
+ "i ème",
+ "ca s",
+ "c as",
+ "▁pre ced",
+ "▁prec ed",
+ "▁D al",
+ "▁Da l",
+ "▁comp ared",
+ "▁compar ed",
+ "▁compare d",
+ "equ iv",
+ "il ly",
+ "ill y",
+ "te en",
+ "t een",
+ "▁Con sole",
+ "▁Cons ole",
+ "▁ Console",
+ "▁st rict",
+ "▁str ict",
+ "▁stri ct",
+ "it aire",
+ "ita ire",
+ "i taire",
+ "▁E D",
+ "▁ ED",
+ "ential s",
+ "enti als",
+ "▁p erman",
+ "▁per man",
+ "▁perm an",
+ "▁t ous",
+ "▁to us",
+ "▁tou s",
+ "▁g eme",
+ "▁ge me",
+ "▁gem e",
+ "▁ geme",
+ "▁ext rem",
+ "▁extr em",
+ "▁ок ру",
+ "k g",
+ "▁he avy",
+ "▁heav y",
+ "▁av ril",
+ "▁an ti",
+ "▁ant i",
+ "▁ anti",
+ "▁oct obre",
+ "ut f",
+ "u tf",
+ "he lm",
+ "hel m",
+ "h elm",
+ "am ples",
+ "ample s",
+ "amp les",
+ "▁( _",
+ "▁ (_",
+ "ak en",
+ "ake n",
+ "a ken",
+ "▁d ear",
+ "▁de ar",
+ "▁opin ion",
+ "▁f ish",
+ "▁fi sh",
+ "▁fis h",
+ "▁ fish",
+ "▁Alex ander",
+ "▁Alexand er",
+ "i w",
+ "и м",
+ "ca dem",
+ "cade m",
+ "c adem",
+ "▁ref lect",
+ "▁ reflect",
+ "▁д р",
+ "▁t rib",
+ "▁tr ib",
+ "▁tri b",
+ "com mon",
+ "comm on",
+ "▁clear ly",
+ "▁s af",
+ "▁sa f",
+ "=\"@ +",
+ "▁М ос",
+ "▁Мо с",
+ "си те",
+ "eqn array",
+ "nu ng",
+ "n ung",
+ "▁relations hip",
+ "▁relation ship",
+ "▁S em",
+ "▁Se m",
+ "▁ Sem",
+ "▁k illed",
+ "▁kil led",
+ "▁kill ed",
+ "te d",
+ "t ed",
+ "un o",
+ "u no",
+ "▁ лі",
+ "▁w id",
+ "▁ wid",
+ "an ning",
+ "ann ing",
+ "anni ng",
+ "▁p anel",
+ "▁pa nel",
+ "▁pan el",
+ "▁ panel",
+ "▁L eben",
+ "▁Le ben",
+ "▁Leb en",
+ "▁r uby",
+ "▁ru by",
+ "▁rub y",
+ "▁ ruby",
+ "ans ion",
+ "▁a ren",
+ "▁are n",
+ "▁ar en",
+ "▁ aren",
+ "tab ular",
+ "al et",
+ "ale t",
+ "a let",
+ "}$ $",
+ "} $$",
+ "▁L ake",
+ "▁La ke",
+ "▁Lak e",
+ "▁su ite",
+ "▁suit e",
+ "▁ suite",
+ "▁min or",
+ "▁mi nor",
+ "H ozzáférés",
+ "▁xml ns",
+ "▁ xmlns",
+ "DI R",
+ "D IR",
+ "dr iver",
+ "drive r",
+ "dri ver",
+ "d river",
+ "in ts",
+ "int s",
+ "▁v ic",
+ "▁vi c",
+ "▁ vic",
+ "AN D",
+ "A ND",
+ "pr im",
+ "p rim",
+ "сы лки",
+ "▁O x",
+ "T C",
+ "riv ial",
+ "at ie",
+ "ati e",
+ "▁e ight",
+ "▁eig ht",
+ "▁eigh t",
+ "▁conf lic",
+ "▁confl ic",
+ "an gel",
+ "ang el",
+ "ange l",
+ "▁B egr",
+ "▁Be gr",
+ "▁Beg r",
+ "▁explicit ly",
+ "ют ся",
+ "ю тся",
+ "▁D ev",
+ "▁De v",
+ "▁ Dev",
+ "re nder",
+ "ren der",
+ "rend er",
+ "r ender",
+ "▁re produ",
+ "▁rep rodu",
+ "▁repr odu",
+ "▁repro du",
+ "▁c ré",
+ "▁cr é",
+ "G u",
+ "M B",
+ "▁k ön",
+ "▁kö n",
+ "▁rem ained",
+ "▁remain ed",
+ "▁k l",
+ "▁ kl",
+ "хо в",
+ "х ов",
+ "▁b yl",
+ "▁by l",
+ "Ph i",
+ "P hi",
+ "▁de tail",
+ "▁det ail",
+ "▁ detail",
+ "ja v",
+ "j av",
+ "▁m ouse",
+ "▁mo use",
+ "▁mou se",
+ "▁ mouse",
+ "B as",
+ "i ę",
+ "as ser",
+ "ass er",
+ "asse r",
+ "h s",
+ "▁sh ift",
+ "▁ shift",
+ "▁ú lt",
+ "▁ últ",
+ "ra nd",
+ "ran d",
+ "r and",
+ "▁b tn",
+ "▁ btn",
+ "ra z",
+ "r az",
+ "▁p ul",
+ "▁pu l",
+ "▁stat ements",
+ "▁state ments",
+ "▁statement s",
+ "file name",
+ "fil ename",
+ "▁prom pt",
+ "él é",
+ "é lé",
+ "ik z",
+ "▁S us",
+ "▁Su s",
+ "▁de but",
+ "▁deb ut",
+ "St at",
+ "S tat",
+ "form s",
+ "for ms",
+ "▁H ein",
+ "▁He in",
+ "st adt",
+ "sta dt",
+ "stad t",
+ "en nis",
+ "enn is",
+ "по л",
+ "ar ante",
+ "aran te",
+ "ці й",
+ "ц ій",
+ "▁que ue",
+ "▁ queue",
+ "▁re ci",
+ "▁rec i",
+ "▁ reci",
+ "▁s ta",
+ "▁st a",
+ "▁ sta",
+ "yn chron",
+ "cent ering",
+ "center ing",
+ "cente ring",
+ "So me",
+ "S ome",
+ "Gr aph",
+ "G raph",
+ "▁t ested",
+ "▁te sted",
+ "▁test ed",
+ "▁K unst",
+ "▁Kun st",
+ "о м",
+ "▁N othing",
+ "▁No thing",
+ "▁Not hing",
+ "▁ Nothing",
+ "ie u",
+ "i eu",
+ "“ .",
+ "B undle",
+ "▁of icial",
+ "▁ofic ial",
+ "al low",
+ "all ow",
+ "allo w",
+ "▁Re act",
+ "▁L ibrary",
+ "▁Li brary",
+ "▁ Library",
+ "bl ue",
+ "▁ver w",
+ "▁ve rw",
+ "▁p are",
+ "▁par e",
+ "▁pa re",
+ "▁Fried rich",
+ "▁a ware",
+ "▁aw are",
+ "▁ aware",
+ "Ex p",
+ "E xp",
+ "▁effect s",
+ "▁го ро",
+ "▁гор о",
+ "lop edia",
+ "loped ia",
+ "▁V en",
+ "▁Ve n",
+ "ra le",
+ "ral e",
+ "r ale",
+ "▁F inal",
+ "▁Fin al",
+ "▁ Final",
+ "▁pro pos",
+ "▁prop os",
+ "la cement",
+ "lace ment",
+ "lac ement",
+ "kt en",
+ "kte n",
+ "k ten",
+ "▁no vel",
+ "▁nov el",
+ "or ter",
+ "ort er",
+ "orte r",
+ "▁German y",
+ "▁Ger many",
+ "▁Germ any",
+ "▁d jango",
+ "▁ django",
+ "▁trans ition",
+ "▁ transition",
+ "▁happ ened",
+ "▁happen ed",
+ "▁beaut iful",
+ "▁ne ither",
+ "▁nei ther",
+ "▁li braries",
+ "▁h ide",
+ "▁hi de",
+ "▁hid e",
+ "▁ hide",
+ "al g",
+ "a lg",
+ "▁a spect",
+ "▁as pect",
+ "▁asp ect",
+ "▁for get",
+ "▁forg et",
+ "cade my",
+ "cadem y",
+ "on te",
+ "ont e",
+ "re fix",
+ "ref ix",
+ "▁cl oud",
+ "▁clo ud",
+ "▁ cloud",
+ "ne d",
+ "n ed",
+ "cd ots",
+ "cdot s",
+ "c dots",
+ "reg ister",
+ "ny m",
+ "n ym",
+ ".) :",
+ ". ):",
+ "▁J ew",
+ "▁Je w",
+ "▁t rès",
+ "▁tr ès",
+ "ни че",
+ "▁D or",
+ "▁Do r",
+ "▁p roc",
+ "▁pro c",
+ "▁pr oc",
+ "▁ proc",
+ "▁g an",
+ "▁ga n",
+ "▁ gan",
+ "▁ є",
+ "▁S av",
+ "▁Sa v",
+ "v í",
+ "Setting s",
+ "S ettings",
+ "▁V ari",
+ "▁Var i",
+ "▁Va ri",
+ "▁ Vari",
+ "▁c ours",
+ "▁co urs",
+ "▁cour s",
+ "▁cou rs",
+ "R o",
+ "▁con j",
+ "▁re asons",
+ "▁reason s",
+ "▁re ader",
+ "▁read er",
+ "▁ reader",
+ "лекс анд",
+ "ic ate",
+ "ica te",
+ "}) ,",
+ "} ),",
+ "▁task s",
+ "▁ tasks",
+ "▁R ay",
+ "▁Ra y",
+ "▁r ic",
+ "▁ri c",
+ "▁ ric",
+ "K e",
+ "on ie",
+ "oni e",
+ "o nie",
+ "r f",
+ ") [",
+ "▁sub sequ",
+ "▁subs equ",
+ "▁T urn",
+ "▁Tur n",
+ "▁Tu rn",
+ "▁ Turn",
+ "▁VI AF",
+ "math sf",
+ "H E",
+ "▁dec lare",
+ "▁decl are",
+ "▁decla re",
+ "▁declar e",
+ "▁pro tocol",
+ "▁proto col",
+ "▁ protocol",
+ "▁P C",
+ "▁ PC",
+ "ци он",
+ "View ById",
+ "▁an imation",
+ "▁anim ation",
+ "▁ animation",
+ "▁conf used",
+ "ви ч",
+ "▁en abled",
+ "▁enable d",
+ "▁ enabled",
+ "ow o",
+ "o wo",
+ "ás t",
+ "á st",
+ "ö t",
+ "▁m and",
+ "▁ma nd",
+ "▁man d",
+ "▁R ail",
+ "▁Ra il",
+ "field s",
+ "▁K ap",
+ "▁Ka p",
+ "▁al gebra",
+ "▁ algebra",
+ "▁С у",
+ "fér ence",
+ "▁C urrent",
+ "▁Cur rent",
+ "▁ Current",
+ "с но",
+ "▁L im",
+ "▁Li m",
+ "Par ams",
+ "Param s",
+ "Pa rams",
+ "▁Ant onio",
+ "▁Anton io",
+ "▁Anto nio",
+ "▁t v",
+ "▁ tv",
+ "la te",
+ "lat e",
+ "l ate",
+ "if er",
+ "ife r",
+ "i fer",
+ "En try",
+ "Ent ry",
+ "▁S erv",
+ "▁Se rv",
+ "▁Ser v",
+ "▁ Serv",
+ "▁mus ical",
+ "▁music al",
+ "▁musica l",
+ "▁t race",
+ "▁tr ace",
+ "▁tra ce",
+ "▁trac e",
+ "▁ trace",
+ "▁s cient",
+ "▁sc ient",
+ "▁sci ent",
+ "fi c",
+ "f ic",
+ "▁for got",
+ "▁forg ot",
+ "v ideo",
+ "▁o lder",
+ "▁old er",
+ "▁ol der",
+ "▁ older",
+ "Tr ee",
+ "T ree",
+ "▁u ns",
+ "▁un s",
+ "▁ uns",
+ "ни ки",
+ "ник и",
+ "▁E uropa",
+ "▁Europ a",
+ "▁Euro pa",
+ "▁Z we",
+ "▁Zw e",
+ "▁б е",
+ "▁ бе",
+ "▁v ec",
+ "▁ve c",
+ "▁ vec",
+ "ж у",
+ "Mat ch",
+ "M atch",
+ "sp an",
+ "s pan",
+ "▁bl ank",
+ "▁blan k",
+ "▁ blank",
+ "▁sp äter",
+ "▁T y",
+ "▁ Ty",
+ "▁d ict",
+ "▁di ct",
+ "▁dic t",
+ "▁ dict",
+ "ñ a",
+ "▁conf irm",
+ "▁confir m",
+ "▁ confirm",
+ "▁v ý",
+ "за н",
+ "з ан",
+ "Re l",
+ "R el",
+ "fil m",
+ "fi lm",
+ "▁R ot",
+ "▁Ro t",
+ "▁ Rot",
+ "▁H y",
+ "▁ Hy",
+ "ка х",
+ "▁dem and",
+ "▁min ist",
+ "▁mini st",
+ "▁Mad rid",
+ "▁us ual",
+ "sp iel",
+ "s piel",
+ "er os",
+ "ero s",
+ "e ros",
+ "▁t utorial",
+ "▁tut orial",
+ "▁ tutorial",
+ "▁С сылки",
+ "s ys",
+ "ци аль",
+ "▁sp read",
+ "▁spr ead",
+ "▁spre ad",
+ "▁con vers",
+ "▁conver s",
+ "▁conv ers",
+ "▁r oll",
+ "▁ro ll",
+ "▁rol l",
+ "▁ roll",
+ "artifact Id",
+ "▁N umber",
+ "▁Num ber",
+ "▁ Number",
+ "▁sym met",
+ "▁M ult",
+ "▁Mu lt",
+ "▁Mul t",
+ "▁ Mult",
+ "ex pected",
+ "exp ected",
+ "expect ed",
+ "▁a xis",
+ "▁ax is",
+ "▁ axis",
+ "▁match ing",
+ "▁f ood",
+ "▁fo od",
+ "▁foo d",
+ "group Id",
+ "Map p",
+ "Ma pp",
+ "M app",
+ "▁с вя",
+ "▁v end",
+ "▁ve nd",
+ "▁ven d",
+ "F ound",
+ "ot to",
+ "ott o",
+ "o tto",
+ "Ca t",
+ "C at",
+ "cri t",
+ "cr it",
+ "c rit",
+ "ist ent",
+ "iste nt",
+ "isten t",
+ "▁d rei",
+ "▁dr ei",
+ "▁dre i",
+ "▁en ded",
+ "▁end ed",
+ "▁ende d",
+ "▁ ended",
+ "▁T ele",
+ "▁Te le",
+ "▁Tel e",
+ "com ponent",
+ "▁invol ved",
+ "▁involve d",
+ "▁Est ados",
+ "▁Estado s",
+ "▁Estad os",
+ "▁d anger",
+ "▁dan ger",
+ "▁ch ain",
+ "▁cha in",
+ "▁ chain",
+ "▁P rom",
+ "▁Pro m",
+ "▁Pr om",
+ "▁ Prom",
+ "ho m",
+ "h om",
+ "▁pol ít",
+ "co p",
+ "c op",
+ "▁n ap",
+ "▁na p",
+ "▁ nap",
+ "ri f",
+ "r if",
+ "ple ments",
+ "pl ements",
+ "plement s",
+ "▁v ent",
+ "▁ve nt",
+ "▁ven t",
+ "▁ vent",
+ "an na",
+ "ann a",
+ "an ted",
+ "ant ed",
+ "ante d",
+ "date d",
+ "da ted",
+ "dat ed",
+ "d ated",
+ "an th",
+ "ant h",
+ "a nth",
+ "▁thread s",
+ "▁thre ads",
+ "▁ threads",
+ "зо ва",
+ "зов а",
+ "з ова",
+ "▁ста нов",
+ "▁стан ов",
+ "▁ станов",
+ "▁e erst",
+ "▁eer st",
+ "bu f",
+ "b uf",
+ "he id",
+ "▁R u",
+ "▁P rim",
+ "▁Pr im",
+ "▁Pri m",
+ "▁ Prim",
+ "▁m igr",
+ "▁mi gr",
+ "▁mig r",
+ "▁ migr",
+ "▁Un idos",
+ "▁ar bitr",
+ "▁r oman",
+ "▁ro man",
+ "▁rom an",
+ "ount ry",
+ "oun try",
+ "ult ur",
+ "▁K önig",
+ "▁Kö nig",
+ "▁an not",
+ "▁ann ot",
+ "▁anno t",
+ "▁ annot",
+ "ach ing",
+ "ac hing",
+ "achi ng",
+ "▁H aupt",
+ "▁Ha upt",
+ "um in",
+ "umi n",
+ "u min",
+ "▁h em",
+ "▁he m",
+ "▁ hem",
+ "ck ets",
+ "cket s",
+ "cke ts",
+ "ba u",
+ "b au",
+ "ect ion",
+ "ec tion",
+ "e ction",
+ "ef t",
+ "e ft",
+ "▁package s",
+ "▁pack ages",
+ "▁ packages",
+ "▁K ur",
+ "▁Ku r",
+ "th ur",
+ "▁p ays",
+ "▁pa ys",
+ "▁pay s",
+ "li ament",
+ "lia ment",
+ "▁Б у",
+ "▁c ada",
+ "▁ca da",
+ "▁cad a",
+ "po ints",
+ "point s",
+ "oc ket",
+ "ock et",
+ "o cket",
+ "▁v erb",
+ "▁ver b",
+ "▁ve rb",
+ "▁ verb",
+ "ле е",
+ "▁sub mit",
+ "▁subm it",
+ "▁ submit",
+ "▁s an",
+ "▁sa n",
+ "▁ san",
+ "ru by",
+ "r uby",
+ "▁e ast",
+ "▁eas t",
+ "▁ east",
+ "ko v",
+ "k ov",
+ "▁Ver lag",
+ "▁Verl ag",
+ "▁ Verlag",
+ "▁s pot",
+ "▁sp ot",
+ "▁spo t",
+ "▁ spot",
+ "pp o",
+ "p po",
+ "E ach",
+ "je kt",
+ "▁Bi ographie",
+ "▁ne ws",
+ "▁new s",
+ "▁ news",
+ "▁pa ís",
+ "uf act",
+ "u fact",
+ "▁d ia",
+ "▁di a",
+ "▁ dia",
+ "ко ва",
+ "ков а",
+ "к ова",
+ "▁accom pl",
+ "▁accomp l",
+ "▁É t",
+ "▁ Ét",
+ "il ities",
+ "ili ties",
+ "▁i hm",
+ "▁ih m",
+ "in voke",
+ "inv oke",
+ "▁app end",
+ "▁ap pend",
+ "▁appe nd",
+ "▁ append",
+ ".) ,",
+ ". ),",
+ "▁l ab",
+ "▁la b",
+ "▁ lab",
+ "an ging",
+ "ang ing",
+ "is tan",
+ "ist an",
+ "ista n",
+ "i stan",
+ "re sol",
+ "res ol",
+ "reso l",
+ "▁S ection",
+ "▁Se ction",
+ "▁Sec tion",
+ "▁ Section",
+ "Par ent",
+ "Pa rent",
+ "mo z",
+ "m oz",
+ "Ma t",
+ "M at",
+ "st yles",
+ "style s",
+ "sty les",
+ "un den",
+ "und en",
+ "unde n",
+ "“ ,",
+ "irt schaft",
+ "ки м",
+ "к им",
+ "▁Fin ally",
+ "▁Final ly",
+ "ph en",
+ "phe n",
+ "p hen",
+ "▁P ac",
+ "▁Pa c",
+ "▁Array List",
+ "▁ ArrayList",
+ "▁re cover",
+ "▁rec over",
+ "▁e ducation",
+ "▁educ ation",
+ "mod els",
+ "model s",
+ "mode ls",
+ "pe d",
+ "p ed",
+ "▁h appy",
+ "▁ha ppy",
+ "▁happ y",
+ "ч у",
+ "▁guer ra",
+ "me dia",
+ "med ia",
+ "medi a",
+ "m edia",
+ "O F",
+ "▁ens ure",
+ "▁ ensure",
+ "Mar k",
+ "M ark",
+ "data base",
+ "dat abase",
+ "datab ase",
+ "d atabase",
+ "og gle",
+ "▁pub lish",
+ "▁publi sh",
+ "▁ publish",
+ "O W",
+ "▁B au",
+ "▁Ba u",
+ "? .",
+ "▁ча сти",
+ "▁час ти",
+ "▁част и",
+ "▁re pository",
+ "▁repos itory",
+ "▁ repository",
+ "▁M att",
+ "▁Ma tt",
+ "▁Mat t",
+ "hi gh",
+ "h igh",
+ "ov en",
+ "ove n",
+ "o ven",
+ "▁g er",
+ "▁ge r",
+ "▁ ger",
+ "▁un known",
+ "▁ unknown",
+ "Am er",
+ "A mer",
+ "▁B rown",
+ "▁Br own",
+ "▁Bro wn",
+ "▁Brow n",
+ "AL L",
+ "A LL",
+ "▁result ing",
+ "▁b or",
+ "▁bo r",
+ "▁ bor",
+ "▁po et",
+ "ни ми",
+ "ним и",
+ "Em ail",
+ "E mail",
+ "F ont",
+ "▁h ist",
+ "▁his t",
+ "▁hi st",
+ "▁to day",
+ "▁tod ay",
+ "▁toda y",
+ "▁ today",
+ "▁B erg",
+ "▁Be rg",
+ "▁Ber g",
+ "▁but tons",
+ "▁button s",
+ "та л",
+ "т ал",
+ "▁s ni",
+ "▁sn i",
+ "▁че лов",
+ "Cr e",
+ "C re",
+ "▁un ion",
+ "▁ union",
+ "▁z ich",
+ "ish op",
+ "i shop",
+ "▁qu ando",
+ "▁quand o",
+ "▁quan do",
+ "P o",
+ "CT ION",
+ "▁C ost",
+ "▁Co st",
+ "▁Cos t",
+ "▁ Cost",
+ "су дар",
+ "er ved",
+ "erv ed",
+ "erve d",
+ "Not e",
+ "No te",
+ "N ote",
+ "Equ al",
+ "Eq ual",
+ "E qual",
+ "ли я",
+ "бу р",
+ "б ур",
+ "▁ab stract",
+ "▁abstra ct",
+ "▁ abstract",
+ "st op",
+ "sto p",
+ "s top",
+ "▁ad vice",
+ "▁adv ice",
+ "▁i con",
+ "▁ic on",
+ "▁ icon",
+ "▁tr avel",
+ "▁tra vel",
+ "▁trav el",
+ "B S",
+ "ve ns",
+ "ven s",
+ "v ens",
+ "▁b atch",
+ "▁bat ch",
+ "▁ batch",
+ "li que",
+ "liqu e",
+ "l ique",
+ "she et",
+ "s heet",
+ "▁i hre",
+ "▁ih re",
+ "▁ihr e",
+ "em on",
+ "emo n",
+ "e mon",
+ "ber to",
+ "bert o",
+ "▁as signed",
+ "▁ass igned",
+ "▁assign ed",
+ "ь ю",
+ "Ph one",
+ "▁a ward",
+ "▁aw ard",
+ "▁function ality",
+ "▁functional ity",
+ "al la",
+ "all a",
+ "a lla",
+ "▁D am",
+ "▁Da m",
+ "▁ci udad",
+ "▁cl uster",
+ "▁clust er",
+ "▁ cluster",
+ "De scription",
+ "Des cription",
+ "▁s heet",
+ "▁she et",
+ "▁ sheet",
+ "▁Austral ian",
+ "▁Australia n",
+ "▁» .",
+ "▁ ».",
+ "▁\" <",
+ "▁wonder ing",
+ "ain e",
+ "ai ne",
+ "a ine",
+ "▁represent ed",
+ "▁repres ented",
+ "ka ppa",
+ "kap pa",
+ "k appa",
+ "n b",
+ "▁s y",
+ "▁K ö",
+ "=\" #",
+ "▁s even",
+ "▁se ven",
+ "Direct ory",
+ "D irectory",
+ "▁s ister",
+ "▁si ster",
+ "▁sist er",
+ "pl ates",
+ "plate s",
+ "pla tes",
+ "▁l uck",
+ "▁lu ck",
+ "▁luc k",
+ "▁rem aining",
+ "▁remain ing",
+ "▁V ill",
+ "▁Vi ll",
+ "▁Vil l",
+ "wer k",
+ "w erk",
+ "an ni",
+ "ann i",
+ "et ti",
+ "ett i",
+ "fun c",
+ "fu nc",
+ "f unc",
+ "▁b an",
+ "▁ba n",
+ "▁ ban",
+ "im s",
+ "i ms",
+ "mi ss",
+ "mis s",
+ "m iss",
+ "ag raph",
+ "agr aph",
+ "a graph",
+ "ек си",
+ "е кси",
+ "▁R ef",
+ "▁Re f",
+ "▁ Ref",
+ "ni tt",
+ "nit t",
+ "n itt",
+ "▁G ab",
+ "▁Ga b",
+ "▁and ere",
+ "▁jed och",
+ "result s",
+ "! \\",
+ "▁l isted",
+ "▁li sted",
+ "▁list ed",
+ "▁liste d",
+ "▁l oro",
+ "▁lo ro",
+ "▁kn ows",
+ "▁know s",
+ "ж но",
+ "R ad",
+ "▁s ocket",
+ "▁so cket",
+ "▁soc ket",
+ "▁ socket",
+ "mult i",
+ "mul ti",
+ "▁р і",
+ "▁ рі",
+ "ra ils",
+ "rai ls",
+ "r ails",
+ "▁t ar",
+ "▁ta r",
+ "▁ tar",
+ "▁gent le",
+ "se tt",
+ "set t",
+ "s ett",
+ "serv ices",
+ "service s",
+ "bo und",
+ "b ound",
+ "ig keit",
+ "aj a",
+ "a ja",
+ "▁c md",
+ "▁cm d",
+ "▁ cmd",
+ "ag ger",
+ "agg er",
+ "▁b a",
+ "▁ ba",
+ "▁Be lg",
+ "▁Bel g",
+ "▁K le",
+ "▁Kl e",
+ "▁word t",
+ "▁wor dt",
+ "▁f ost",
+ "▁fo st",
+ "▁fos t",
+ "▁dim ension",
+ "An g",
+ "A ng",
+ "um ing",
+ "umin g",
+ "umi ng",
+ "u ming",
+ "Ob j",
+ "не н",
+ "н ен",
+ "▁M arie",
+ "▁Mar ie",
+ "▁Ma rie",
+ "▁Mari e",
+ "▁ Marie",
+ "ex ists",
+ "exist s",
+ "т ро",
+ "▁бо ль",
+ "▁ боль",
+ "em ente",
+ "ement e",
+ "emen te",
+ "e mente",
+ "▁J on",
+ "▁Jo n",
+ "SE RT",
+ "SER T",
+ "S ERT",
+ "▁high est",
+ "ak i",
+ "a ki",
+ "▁t res",
+ "▁tr es",
+ "▁tre s",
+ "▁ tres",
+ "▁circ um",
+ "▁D own",
+ "▁Do wn",
+ "▁Dow n",
+ "▁ Down",
+ "om men",
+ "omm en",
+ "ur er",
+ "ure r",
+ "u rer",
+ "▁caus es",
+ "▁cause s",
+ "▁ca uses",
+ "ven ue",
+ "iss ance",
+ "▁influ ence",
+ "▁influen ce",
+ "▁f at",
+ "▁fa t",
+ "ре ди",
+ "ред и",
+ "р еди",
+ "}\\ \\",
+ "} \\\\",
+ "▁en tr",
+ "▁ent r",
+ "▁ entr",
+ "▁S ign",
+ "▁Si gn",
+ "▁Sig n",
+ "▁ Sign",
+ "▁к ла",
+ "▁ кла",
+ "▁b inding",
+ "▁bind ing",
+ "▁bin ding",
+ "▁ binding",
+ "es sen",
+ "ess en",
+ "esse n",
+ "▁Ф ран",
+ "▁L ocal",
+ "▁Lo cal",
+ "▁Loc al",
+ "▁ Local",
+ "▁я вля",
+ "ap pro",
+ "app ro",
+ "▁dep endencies",
+ "▁depend encies",
+ "▁ dependencies",
+ "▁talk ing",
+ "▁tal king",
+ "▁zur ück",
+ "con nection",
+ "connect ion",
+ "conne ction",
+ "conn ection",
+ "Act ive",
+ "Activ e",
+ "bb e",
+ "b be",
+ "ir ls",
+ "irl s",
+ "▁In f",
+ "▁ Inf",
+ "w d",
+ "▁и с",
+ "▁ ис",
+ "ro ad",
+ "▁con ven",
+ "▁conv en",
+ "ě t",
+ "ве з",
+ "в ез",
+ "▁ent ries",
+ "▁entr ies",
+ "▁ entries",
+ "es c",
+ "e sc",
+ "▁b its",
+ "▁bit s",
+ "▁bi ts",
+ "▁ bits",
+ "as so",
+ "ass o",
+ "W R",
+ "sh ips",
+ "ship s",
+ "s hips",
+ "▁d és",
+ "▁dé s",
+ "es p",
+ "e sp",
+ "Ma ke",
+ "M ake",
+ "▁famil iar",
+ "▁familia r",
+ "Ar t",
+ "A rt",
+ "▁ar my",
+ "▁arm y",
+ "ct r",
+ "c tr",
+ "ér ic",
+ "éri c",
+ "é ric",
+ "que ue",
+ "▁\\ {",
+ "▁ \\{",
+ "ue la",
+ "uel a",
+ "u ela",
+ "am iento",
+ "ami ento",
+ "ши х",
+ "ш их",
+ "▁\" \"\"",
+ "▁\"\" \"",
+ "con tr",
+ "cont r",
+ "лл е",
+ "л ле",
+ "F S",
+ "▁mar ket",
+ "▁mark et",
+ "▁ market",
+ "ån g",
+ "å ng",
+ "cite p",
+ "cit ep",
+ "Il l",
+ "I ll",
+ "ran k",
+ "r ank",
+ "▁s ender",
+ "▁se nder",
+ "▁send er",
+ "▁sen der",
+ "▁ sender",
+ "▁be im",
+ "▁bei m",
+ "ра к",
+ "▁com pat",
+ "▁comp at",
+ "▁ compat",
+ "▁occ urs",
+ "▁occur s",
+ "▁d iese",
+ "▁di ese",
+ "▁die se",
+ "▁dies e",
+ "сти ту",
+ "aw a",
+ "a wa",
+ "▁i OS",
+ "▁Ch inese",
+ "▁Chine se",
+ "▁T R",
+ "▁ TR",
+ "▁K en",
+ "▁Ke n",
+ "▁U ne",
+ "▁Un e",
+ "▁cre ates",
+ "▁create s",
+ "▁sh owed",
+ "▁show ed",
+ "▁sho wed",
+ "▁é v",
+ "▁ év",
+ "olog ia",
+ "olo gia",
+ "▁pro test",
+ "▁prote st",
+ "▁prot est",
+ "▁P f",
+ "▁s quad",
+ "▁squ ad",
+ "++ ,",
+ "á v",
+ "▁ess ere",
+ "з я",
+ "ko l",
+ "k ol",
+ "▁slight ly",
+ "ad dr",
+ "add r",
+ "â n",
+ "▁red uce",
+ "▁redu ce",
+ "▁ reduce",
+ "▁\\ (\\",
+ "▁\\( \\",
+ "▁D ep",
+ "▁De p",
+ "▁ Dep",
+ "▁gener ic",
+ "▁gene ric",
+ "▁ generic",
+ "Lo ader",
+ "Load er",
+ "ț i",
+ "▁п ос",
+ "▁по с",
+ "▁occ asion",
+ "▁occas ion",
+ "▁L ady",
+ "▁La dy",
+ "▁Lad y",
+ "ent ity",
+ "enti ty",
+ "▁av ant",
+ "▁ avant",
+ "▁P as",
+ "▁Pa s",
+ "ag gio",
+ "aggi o",
+ "agg io",
+ "\\ {",
+ "па д",
+ "athol ic",
+ "Pass word",
+ "▁res pond",
+ "▁resp ond",
+ "▁ respond",
+ "▁N on",
+ "▁No n",
+ "▁ Non",
+ "A G",
+ "ne g",
+ "n eg",
+ "▁у с",
+ "▁ ус",
+ "bl ob",
+ "blo b",
+ "b lob",
+ "ck e",
+ "c ke",
+ "▁Cons ider",
+ "▁C are",
+ "▁Car e",
+ "▁Ca re",
+ "ik i",
+ "i ki",
+ "▁Ch icago",
+ "in den",
+ "ind en",
+ "inde n",
+ "▁C op",
+ "▁Co p",
+ "] +",
+ "ö m",
+ "év rier",
+ "к ло",
+ "al en",
+ "ale n",
+ "a len",
+ "▁m aj",
+ "▁ma j",
+ "ra cy",
+ "rac y",
+ "r acy",
+ "or te",
+ "ort e",
+ "ien ts",
+ "ient s",
+ "i ents",
+ "el ls",
+ "ell s",
+ "act ivity",
+ "activ ity",
+ "▁r untime",
+ "▁run time",
+ "▁runt ime",
+ "▁ runtime",
+ "NU LL",
+ "N ULL",
+ "▁poss ibly",
+ "▁possib ly",
+ "▁s tri",
+ "▁st ri",
+ "▁str i",
+ "iz i",
+ "i zi",
+ "▁m ir",
+ "▁mi r",
+ "▁ mir",
+ "▁V ersion",
+ "▁Vers ion",
+ "▁ Version",
+ "pr ime",
+ "prim e",
+ "▁tw enty",
+ "▁M ah",
+ "▁Ma h",
+ "▁s ounds",
+ "▁sound s",
+ "ше н",
+ "ш ен",
+ "cl usion",
+ "clus ion",
+ "ac z",
+ "a cz",
+ "▁determ ined",
+ "▁determine d",
+ "▁determin ed",
+ "▁R ep",
+ "▁Re p",
+ "▁ Rep",
+ "▁Land es",
+ "▁Lan des",
+ "▁w all",
+ "▁wa ll",
+ "▁wal l",
+ "▁ wall",
+ "ig i",
+ "i gi",
+ "▁re set",
+ "▁res et",
+ "▁ reset",
+ "ш о",
+ "ya n",
+ "y an",
+ "Me t",
+ "M et",
+ "e i",
+ "▁app earance",
+ "▁appear ance",
+ "▁f ois",
+ "▁fo is",
+ "▁foi s",
+ "▁ fois",
+ "▁n ell",
+ "▁ne ll",
+ "▁nel l",
+ "▁ nell",
+ "es i",
+ "e si",
+ "ё т",
+ "lo or",
+ "l oor",
+ "▁U l",
+ "▁resol ution",
+ "▁f ot",
+ "▁fo t",
+ "▁through out",
+ "▁r i",
+ "▁ ri",
+ "Le vel",
+ "po ol",
+ "p ool",
+ "▁id entity",
+ "▁ident ity",
+ "▁ identity",
+ "▁j anu",
+ "▁jan u",
+ "▁ja nu",
+ "▁im per",
+ "▁imp er",
+ "▁ imper",
+ "▁ö ver",
+ "} `",
+ "▁in fer",
+ "▁inf er",
+ "▁d ates",
+ "▁da tes",
+ "▁dat es",
+ "▁date s",
+ "▁ dates",
+ "▁Stand ard",
+ "▁ Standard",
+ "for ce",
+ "oc key",
+ "ock ey",
+ "ter a",
+ "te ra",
+ "t era",
+ "▁dist ingu",
+ "▁pres ence",
+ "li ca",
+ "lic a",
+ "l ica",
+ "▁le aving",
+ "it ung",
+ "itu ng",
+ "é b",
+ "▁estab lish",
+ "▁m aar",
+ "▁ma ar",
+ "ad i",
+ "a di",
+ "▁New s",
+ "▁Ne ws",
+ "▁ News",
+ "az on",
+ "a zon",
+ "fo lg",
+ "fol g",
+ "f olg",
+ "▁H ence",
+ "▁Hen ce",
+ "▁Y e",
+ "▁f ab",
+ "▁fa b",
+ "▁ fab",
+ "▁f ühr",
+ "▁ führ",
+ "it map",
+ "▁V ers",
+ "▁Ver s",
+ "▁Ve rs",
+ "ro v",
+ "r ov",
+ "Si gn",
+ "S ign",
+ "de vice",
+ "dev ice",
+ "S igma",
+ "▁wet enschapp",
+ "▁P s",
+ "PA TH",
+ "P ATH",
+ "▁t orn",
+ "▁to rn",
+ "▁tor n",
+ "ve st",
+ "ves t",
+ "v est",
+ "ст ов",
+ "сто в",
+ "с тов",
+ "ac count",
+ "acc ount",
+ "acco unt",
+ "▁lar gest",
+ "▁large st",
+ "▁larg est",
+ "▁per cent",
+ "▁perce nt",
+ "▁ percent",
+ "▁W omen",
+ "▁Wo men",
+ "▁im g",
+ "▁ img",
+ "to ol",
+ "t ool",
+ "▁r oce",
+ "▁ro ce",
+ "▁a y",
+ "▁ ay",
+ "in et",
+ "ine t",
+ "i net",
+ "▁ao ût",
+ "▁pol ynomial",
+ "▁integr al",
+ "▁integra l",
+ "▁a reas",
+ "▁are as",
+ "▁area s",
+ "} '",
+ "▁h yp",
+ "▁hy p",
+ "loy ee",
+ "та ль",
+ "тал ь",
+ "т аль",
+ "▁pro xy",
+ "▁ proxy",
+ "▁W y",
+ "▁М екси",
+ "▁Ме кси",
+ "▁es cape",
+ "▁esc ape",
+ "▁ escape",
+ "ol ar",
+ "ola r",
+ "o lar",
+ "▁mis take",
+ "▁mist ake",
+ ")} {",
+ ") }{",
+ "▁P ot",
+ "▁Po t",
+ "▁process es",
+ "▁proc esses",
+ "\"> \r",
+ "\" >\r",
+ "hal ten",
+ "halt en",
+ "zz a",
+ "z za",
+ "am o",
+ "a mo",
+ "к ре",
+ "▁W ood",
+ "▁Wo od",
+ "ø r",
+ "▁с ер",
+ "▁се р",
+ "▁ сер",
+ "oc ia",
+ "oci a",
+ "o cia",
+ "tw o",
+ "t wo",
+ "pro file",
+ "prof ile",
+ "▁A st",
+ "▁As t",
+ "em bro",
+ "emb ro",
+ "▁ar ms",
+ "▁arm s",
+ "in as",
+ "ina s",
+ "i nas",
+ "in nen",
+ "inn en",
+ "▁m sg",
+ "▁ms g",
+ "▁ msg",
+ "IN T",
+ "I NT",
+ "▁b atter",
+ "▁batt er",
+ "▁bat ter",
+ "ign ment",
+ "▁v y",
+ "▁ vy",
+ "H rsg",
+ "▁G rund",
+ "▁Gr und",
+ "▁Gru nd",
+ "ro c",
+ "r oc",
+ "se g",
+ "s eg",
+ "▁de cor",
+ "▁dec or",
+ "▁ decor",
+ "▁event ually",
+ "> ,",
+ "▁p ag",
+ "▁pa g",
+ "▁ pag",
+ "an ten",
+ "ant en",
+ "ante n",
+ "a nten",
+ "▁str ugg",
+ "▁stru gg",
+ "}^ \\",
+ "} ^\\",
+ "date n",
+ "da ten",
+ "dat en",
+ "d aten",
+ "▁re la",
+ "▁r ela",
+ "▁rel a",
+ "по в",
+ "п ов",
+ "▁ко ро",
+ "▁кор о",
+ "▁B os",
+ "▁Bo s",
+ "▁l abor",
+ "▁la bor",
+ "▁lab or",
+ "▁Se cret",
+ "▁Sec ret",
+ "▁ Secret",
+ "ug en",
+ "uge n",
+ "u gen",
+ "▁j ap",
+ "▁ja p",
+ "▁hus band",
+ "▁Al bum",
+ "▁Alb um",
+ "▁et wa",
+ "▁про из",
+ "ri cht",
+ "ric ht",
+ "rich t",
+ "r icht",
+ "ra ch",
+ "rac h",
+ "r ach",
+ "ba t",
+ "b at",
+ "▁pre par",
+ "▁prep ar",
+ "▁St ock",
+ "▁Sto ck",
+ "▁l ack",
+ "▁la ck",
+ "▁lac k",
+ "▁ lack",
+ "хі д",
+ "х ід",
+ "▁h ogy",
+ "▁ho gy",
+ "▁Ch rome",
+ "▁Chr ome",
+ "▁Ad min",
+ "▁ Admin",
+ "▁com parison",
+ "▁compar ison",
+ "▁incre asing",
+ "н г",
+ "im i",
+ "i mi",
+ "D b",
+ "▁g ef",
+ "▁ge f",
+ "▁ gef",
+ "uch t",
+ "uc ht",
+ "u cht",
+ "és e",
+ "é se",
+ "gen ce",
+ "g ence",
+ "▁C ore",
+ "▁Cor e",
+ "▁Co re",
+ "▁ Core",
+ "▁in correct",
+ "▁incor rect",
+ "▁ass uming",
+ "▁assum ing",
+ "our se",
+ "ours e",
+ "ie ron",
+ "ier on",
+ "iero n",
+ "▁The orem",
+ "▁ Theorem",
+ "▁c asa",
+ "▁cas a",
+ "▁ca sa",
+ "je s",
+ "j es",
+ "▁д ере",
+ "▁де ре",
+ "▁` \"",
+ "L D",
+ "ä ß",
+ "De b",
+ "D eb",
+ "▁su iv",
+ "▁B ank",
+ "▁Ban k",
+ "li bs",
+ "lib s",
+ "▁Le on",
+ "▁Leo n",
+ "▁qu art",
+ "▁quar t",
+ "▁prof essional",
+ "▁profession al",
+ "▁profess ional",
+ "▁t iene",
+ "▁ti ene",
+ "▁tie ne",
+ "▁acc omp",
+ "▁ac comp",
+ "▁accom p",
+ "ст ер",
+ "сте р",
+ "с тер",
+ "▁U K",
+ "▁ UK",
+ "N N",
+ "▁l í",
+ "ц я",
+ "ke l",
+ "k el",
+ "▁ •",
+ "▁d ise",
+ "▁di se",
+ "▁dis e",
+ "on to",
+ "ont o",
+ "▁m á",
+ "if s",
+ "i fs",
+ "bi ld",
+ "bil d",
+ "b ild",
+ "▁comp ute",
+ "▁comput e",
+ "▁ compute",
+ "▁é d",
+ "▁ éd",
+ "j ę",
+ "▁M é",
+ "▁l anguages",
+ "▁language s",
+ "▁T imes",
+ "▁Time s",
+ "▁Tim es",
+ "▁Ti mes",
+ "▁ Times",
+ "ce n",
+ "c en",
+ "▁ав то",
+ "ý m",
+ "en ez",
+ "ene z",
+ "e nez",
+ "▁u pp",
+ "▁up p",
+ "▁ upp",
+ "▁m éd",
+ "▁mé d",
+ "▁cu ando",
+ "о д",
+ "Int ent",
+ "ee rd",
+ "e erd",
+ "▁T al",
+ "▁Ta l",
+ "off set",
+ "offs et",
+ "▁h aben",
+ "▁ha ben",
+ "▁hab en",
+ "▁habe n",
+ "re me",
+ "rem e",
+ "r eme",
+ "▁St ack",
+ "▁Sta ck",
+ "▁ Stack",
+ "▁d ri",
+ "▁dr i",
+ "▁ dri",
+ "▁sein em",
+ "▁seine m",
+ "▁sei nem",
+ "▁f évrier",
+ "▁comb ination",
+ "▁combin ation",
+ "▁s oll",
+ "▁so ll",
+ "▁sol l",
+ "▁mov ement",
+ "▁mo vement",
+ "▁move ment",
+ "Sp ec",
+ "Spe c",
+ "S pec",
+ "к ры",
+ "ret ch",
+ "r etch",
+ "Off set",
+ "Ro ot",
+ "R oot",
+ "А р",
+ "wa rt",
+ "war t",
+ "w art",
+ "▁F ollow",
+ "▁Fol low",
+ "▁So cial",
+ "▁Soci al",
+ "▁Soc ial",
+ "ни ков",
+ "ник ов",
+ "▁ →",
+ "Do n",
+ "D on",
+ "▁h arm",
+ "▁ha rm",
+ "▁har m",
+ "▁ harm",
+ "ag r",
+ "a gr",
+ "ne go",
+ "neg o",
+ "n ego",
+ "re source",
+ "res ource",
+ "▁L uc",
+ "▁Lu c",
+ "▁se inen",
+ "▁sein en",
+ "▁seine n",
+ "▁sei nen",
+ "▁De partment",
+ "▁Depart ment",
+ "▁Up date",
+ "▁ Update",
+ "▁Tex as",
+ "▁re ve",
+ "▁rev e",
+ "▁P os",
+ "▁Po s",
+ "▁ Pos",
+ "▁s hot",
+ "▁sh ot",
+ "▁sho t",
+ "▁ shot",
+ "ot he",
+ "oth e",
+ "o the",
+ "▁repe ated",
+ "▁repeat ed",
+ "▁rec ently",
+ "▁recent ly",
+ "áb an",
+ "á ban",
+ "ak s",
+ "a ks",
+ "па н",
+ "п ан",
+ "▁c ha",
+ "▁ch a",
+ "▁ cha",
+ "oh l",
+ "o hl",
+ "▁t end",
+ "▁te nd",
+ "▁ten d",
+ "▁д во",
+ "ch ts",
+ "cht s",
+ "ça ise",
+ "çais e",
+ "pl ing",
+ "p ling",
+ "al bum",
+ "e j",
+ "▁` [",
+ "ma ps",
+ "map s",
+ "m aps",
+ "▁un its",
+ "▁unit s",
+ "▁< !--",
+ "▁",
+ "St and",
+ "▁techn ique",
+ "▁techni que",
+ "▁E ss",
+ "▁Es s",
+ "▁Ox ford",
+ "▁ ла",
+ "t ikz",
+ "ли й",
+ "Log in",
+ "Lo gin",
+ "▁min ister",
+ "▁minist er",
+ "▁mini ster",
+ "▁ minister",
+ "▁c url",
+ "▁cu rl",
+ "▁cur l",
+ "▁ curl",
+ "ka n",
+ "k an",
+ "▁m aps",
+ "▁ma ps",
+ "▁map s",
+ "▁ maps",
+ "in da",
+ "ind a",
+ "ri eb",
+ "rie b",
+ "r ieb",
+ "▁E ND",
+ "▁EN D",
+ "▁ END",
+ "if ies",
+ "ifi es",
+ "ifie s",
+ "con sole",
+ "cons ole",
+ "bu ry",
+ "bur y",
+ "b ury",
+ "▁L E",
+ "▁ LE",
+ "▁indep end",
+ "▁inde pend",
+ "▁t a",
+ "▁ ta",
+ "▁ Ś",
+ "on el",
+ "one l",
+ "o nel",
+ "és z",
+ "é sz",
+ "▁I st",
+ "▁Is t",
+ "ut ive",
+ "uti ve",
+ "ё л",
+ "▁Reg ion",
+ "▁ Region",
+ "▁( =",
+ "▁comp act",
+ "ço is",
+ "ç ois",
+ "▁label s",
+ "▁lab els",
+ "▁ labels",
+ "autor ité",
+ "▁s tan",
+ "▁st an",
+ "▁sta n",
+ "▁ stan",
+ "▁fran çaise",
+ "▁français e",
+ "▁rem oving",
+ "▁remov ing",
+ "y c",
+ "} |",
+ "▁Ex ec",
+ "▁ Exec",
+ "($ _",
+ "( $_",
+ "ma g",
+ "m ag",
+ "be fore",
+ "▁stop ped",
+ "▁sto pped",
+ "ми и",
+ "▁ref resh",
+ "▁ refresh",
+ "un kt",
+ "unk t",
+ "ic io",
+ "ici o",
+ "i cio",
+ "X ml",
+ "▁T ab",
+ "▁Ta b",
+ "▁ Tab",
+ "▁f ounded",
+ "▁found ed",
+ "▁f al",
+ "▁fa l",
+ "▁ fal",
+ "f x",
+ "▁Histor ia",
+ "▁Hist oria",
+ "▁Ear ly",
+ "▁Earl y",
+ "Do m",
+ "D om",
+ "▁de cide",
+ "▁dec ide",
+ "▁decid e",
+ "▁under stood",
+ "▁j ur",
+ "▁ju r",
+ "▁N r",
+ "▁cap ac",
+ "wa s",
+ "w as",
+ "▁en emy",
+ "▁enem y",
+ "▁program s",
+ "▁m ask",
+ "▁ma sk",
+ "▁mas k",
+ "▁ mask",
+ "ск е",
+ "с ке",
+ "▁gr oupe",
+ "▁group e",
+ "ca m",
+ "c am",
+ "▁w idget",
+ "▁wid get",
+ "▁ widget",
+ "RE ATE",
+ "▁se va",
+ "▁Bar cel",
+ "▁p erd",
+ "▁per d",
+ "▁pe rd",
+ "▁М у",
+ "ran ce",
+ "r ance",
+ "TY PE",
+ "T YPE",
+ "▁{ '",
+ "▁ {'",
+ "▁b ill",
+ "▁bi ll",
+ "▁bil l",
+ "▁\" _",
+ "' `",
+ "ba hn",
+ "bah n",
+ "b ahn",
+ "▁cont ained",
+ "▁contain ed",
+ "Cl ose",
+ "C lose",
+ "ru g",
+ "r ug",
+ "eg y",
+ "e gy",
+ "▁s ight",
+ "▁sig ht",
+ "▁Pro vin",
+ "▁Prov in",
+ "н ю",
+ "ar z",
+ "a rz",
+ "ще н",
+ "щ ен",
+ "▁J oe",
+ "▁Jo e",
+ "▁de leted",
+ "▁delete d",
+ "▁delet ed",
+ "▁A uto",
+ "▁Aut o",
+ "▁Au to",
+ "▁ Auto",
+ "▁m eter",
+ "▁me ter",
+ "▁met er",
+ "▁ meter",
+ "C G",
+ "ъ л",
+ "▁p ent",
+ "▁pe nt",
+ "▁pen t",
+ "▁ pent",
+ "▁be zeichnet",
+ "Su m",
+ "S um",
+ "db c",
+ "d bc",
+ "▁Pl atz",
+ "▁Pla tz",
+ "▁Plat z",
+ "ect ors",
+ "ector s",
+ "e ctors",
+ "▁L ittle",
+ "QU E",
+ "Q UE",
+ "ці я",
+ "ц ія",
+ "те ля",
+ "тел я",
+ "nig ht",
+ "n ight",
+ "▁l l",
+ "▁ ll",
+ "▁most ly",
+ "UI D",
+ "U ID",
+ "▁b ez",
+ "▁be z",
+ "▁ bez",
+ "do b",
+ "d ob",
+ "кс и",
+ "к си",
+ "ter ne",
+ "tern e",
+ "t erne",
+ "▁cor ner",
+ "▁corn er",
+ "at y",
+ "a ty",
+ "▁impro ve",
+ "▁improv e",
+ "▁impr ove",
+ "▁in tr",
+ "▁int r",
+ "▁` @",
+ "ar od",
+ "aro d",
+ "a rod",
+ "▁install ation",
+ "▁instal lation",
+ "▁Refer ências",
+ "ig an",
+ "iga n",
+ "i gan",
+ "▁crit ic",
+ "ad el",
+ "ade l",
+ "a del",
+ "▁се ло",
+ ", \r",
+ "at ori",
+ "ator i",
+ "ato ri",
+ "▁F ri",
+ "▁Fr i",
+ "▁ Fri",
+ "▁ré férences",
+ "▁Int ent",
+ "▁ Intent",
+ "▁t ant",
+ "▁tan t",
+ "▁ta nt",
+ "un ci",
+ "unc i",
+ "▁level s",
+ "▁lev els",
+ "er es",
+ "ere s",
+ "e res",
+ "▁e mer",
+ "▁em er",
+ "▁ emer",
+ "sa fe",
+ "t k",
+ "▁c ham",
+ "▁ch am",
+ "▁cha m",
+ "▁great ly",
+ "▁we it",
+ "▁ weit",
+ "▁co ach",
+ "▁to ward",
+ "Hom e",
+ "H ome",
+ "▁Bo olean",
+ "▁ Boolean",
+ "те л",
+ "т ел",
+ "▁m ock",
+ "▁mo ck",
+ "▁ mock",
+ "▁appreci ate",
+ "▁C ross",
+ "▁Cr oss",
+ "▁Cro ss",
+ "▁T ake",
+ "▁Ta ke",
+ "▁Tak e",
+ "▁ Take",
+ "D P",
+ "▁s ides",
+ "▁si des",
+ "▁side s",
+ "▁sid es",
+ "▁Norm daten",
+ "де й",
+ "д ей",
+ "st al",
+ "sta l",
+ "s tal",
+ "▁c out",
+ "▁co ut",
+ "▁cou t",
+ "▁ cout",
+ "b n",
+ "▁V ert",
+ "▁Ver t",
+ "▁Ve rt",
+ "▁ Vert",
+ "▁b ird",
+ "▁bi rd",
+ "▁bir d",
+ "▁ bird",
+ "▁dynam ically",
+ "▁dynamic ally",
+ "▁D ol",
+ "▁Do l",
+ "▁B urg",
+ "▁Bu rg",
+ "▁Bur g",
+ "▁d og",
+ "▁do g",
+ "▁ dog",
+ "ät t",
+ "ä tt",
+ "▁n uc",
+ "▁nu c",
+ "E C",
+ "By tes",
+ "Byte s",
+ "▁a k",
+ "▁ ak",
+ "re land",
+ "rel and",
+ "r eland",
+ "▁gu itar",
+ "▁reg arding",
+ "▁regard ing",
+ "▁F uß",
+ "▁Fu ß",
+ "▁до л",
+ "▁ дол",
+ "au ss",
+ "aus s",
+ "a uss",
+ "▁j ej",
+ "▁je j",
+ "ac o",
+ "a co",
+ "▁up dates",
+ "▁update s",
+ "▁upd ates",
+ "ру к",
+ "р ук",
+ "(' /",
+ "▁c old",
+ "▁col d",
+ "▁co ld",
+ "▁G iven",
+ "▁Gi ven",
+ "▁Give n",
+ "hi n",
+ "h in",
+ "▁fe eling",
+ "▁feel ing",
+ "▁fee ling",
+ "ig li",
+ "fa h",
+ "f ah",
+ "ст ре",
+ "стр е",
+ "с тре",
+ "bo ol",
+ "b ool",
+ "init ial",
+ "▁станов ника",
+ "▁An na",
+ "▁Ann a",
+ "▁h ors",
+ "▁hor s",
+ "▁ho rs",
+ "▁d oll",
+ "▁do ll",
+ "▁dol l",
+ "▁con sum",
+ "▁cons um",
+ "▁ consum",
+ "ub er",
+ "ube r",
+ "u ber",
+ "stand ing",
+ "stan ding",
+ "act iv",
+ "з і",
+ "check ed",
+ "▁perm issions",
+ "▁permission s",
+ "▁M onte",
+ "▁Mon te",
+ "▁Mont e",
+ "Write Line",
+ "pl us",
+ "p lus",
+ "▁E qu",
+ "▁Eq u",
+ "▁ Equ",
+ "▁и х",
+ "▁ их",
+ "ч ки",
+ "un que",
+ "▁L O",
+ "▁ LO",
+ "e a",
+ "sam ple",
+ "s ample",
+ "ie sz",
+ "ies z",
+ "i esz",
+ "or al",
+ "ora l",
+ "o ral",
+ "▁И н",
+ "os ton",
+ "ost on",
+ "osto n",
+ "o ston",
+ "▁S imon",
+ "▁Sim on",
+ "▁Si mon",
+ "fa st",
+ "fas t",
+ "f ast",
+ "m k",
+ "as sen",
+ "ass en",
+ "asse n",
+ "▁arch itecture",
+ "▁architect ure",
+ "▁ architecture",
+ "ens es",
+ "ense s",
+ "▁ Å",
+ "▁to pic",
+ "▁top ic",
+ "▁ topic",
+ "▁dis able",
+ "▁ disable",
+ "▁C ru",
+ "▁Cr u",
+ "▁Cont rol",
+ "▁ Control",
+ "▁cre ation",
+ "▁hy per",
+ "▁hyp er",
+ "▁ hyper",
+ "it ud",
+ "itu d",
+ "же ния",
+ "ar am",
+ "ara m",
+ "a ram",
+ "▁г де",
+ "ien st",
+ "iens t",
+ "i enst",
+ "ed ule",
+ "edu le",
+ "▁B ot",
+ "▁Bo t",
+ "▁О с",
+ "▁The ir",
+ "an ne",
+ "ann e",
+ "M icrosoft",
+ "▁P M",
+ "▁ PM",
+ "yd ro",
+ "y dro",
+ "ent lich",
+ "▁E ine",
+ "▁Ein e",
+ "CH AR",
+ ": '",
+ "We ll",
+ "Wel l",
+ "W ell",
+ "le ton",
+ "let on",
+ "l eton",
+ "▁support s",
+ "▁sup ports",
+ "'] )",
+ "' ])",
+ "man ual",
+ "▁v ice",
+ "▁vi ce",
+ "▁vic e",
+ "▁ vice",
+ "as a",
+ "a sa",
+ "cl os",
+ "clo s",
+ "c los",
+ "vi sed",
+ "vis ed",
+ "v ised",
+ "▁p ok",
+ "▁po k",
+ "tr ack",
+ "tra ck",
+ "t rack",
+ "но ст",
+ "нос т",
+ "... .....",
+ ".... ....",
+ "..... ...",
+ "▁' \\",
+ "▁ '\\",
+ "² .",
+ "▁or ders",
+ "▁order s",
+ "▁ord ers",
+ "▁ orders",
+ "et ta",
+ "ett a",
+ "e tta",
+ "▁con version",
+ "▁conv ersion",
+ "▁convers ion",
+ "▁t rade",
+ "▁tr ade",
+ "▁tra de",
+ "▁trad e",
+ "cl i",
+ "c li",
+ "▁И сто",
+ "▁Ис то",
+ "▁a kt",
+ "▁ak t",
+ "▁ akt",
+ "▁sub set",
+ "▁subs et",
+ "▁ subset",
+ "▁a ug",
+ "▁au g",
+ "▁ aug",
+ "▁le aves",
+ "▁leave s",
+ "Mat h",
+ "Ma th",
+ "M ath",
+ "an ned",
+ "ann ed",
+ "anne d",
+ "ka l",
+ "k al",
+ "▁Ве ли",
+ "▁n og",
+ "▁no g",
+ "▁ nog",
+ "▁e th",
+ "▁et h",
+ "▁ eth",
+ "▁h air",
+ "▁ha ir",
+ "ar ound",
+ "aro und",
+ "a round",
+ "▁java x",
+ "▁jav ax",
+ "▁ javax",
+ "во й",
+ "▁C entre",
+ "▁Cent re",
+ "ö ß",
+ "ut i",
+ "u ti",
+ "▁n avigation",
+ "▁navig ation",
+ "▁ navigation",
+ "▁P S",
+ "▁ PS",
+ "▁w a",
+ "▁ wa",
+ "▁Ро ссии",
+ "▁Рос сии",
+ "▁Росси и",
+ "us a",
+ "u sa",
+ "ze ta",
+ "zet a",
+ "z eta",
+ "▁P DF",
+ "▁ PDF",
+ "▁m ismo",
+ "▁mis mo",
+ "▁mism o",
+ "pro perties",
+ "me ister",
+ "ль та",
+ "for ward",
+ "▁O st",
+ "▁Os t",
+ "ki ns",
+ "kin s",
+ "k ins",
+ "▁s ido",
+ "▁si do",
+ "▁sid o",
+ "зо в",
+ "з ов",
+ "ta gs",
+ "tag s",
+ "t ags",
+ "▁a ctor",
+ "▁act or",
+ "▁ac tor",
+ "▁ actor",
+ "▁f ly",
+ "▁fl y",
+ "▁ fly",
+ "C R",
+ "ag ini",
+ "agi ni",
+ "agin i",
+ "▁l ett",
+ "▁le tt",
+ "▁let t",
+ "▁ lett",
+ "en i",
+ "e ni",
+ "te ch",
+ "t ech",
+ "▁E nc",
+ "▁En c",
+ "▁ Enc",
+ "or acle",
+ "ora cle",
+ "o racle",
+ "amil ton",
+ "ze j",
+ "z ej",
+ "fe n",
+ "f en",
+ "ume rate",
+ "umer ate",
+ "▁qu esto",
+ "▁que sto",
+ "▁q uesto",
+ "▁quest o",
+ "da rt",
+ "dar t",
+ "d art",
+ "▁K ore",
+ "▁Ko re",
+ "▁Kor e",
+ "ap is",
+ "api s",
+ "a pis",
+ "ep er",
+ "e per",
+ "Sc reen",
+ "S creen",
+ "wa ll",
+ "wal l",
+ "w all",
+ "▁is land",
+ "sh e",
+ "s he",
+ "▁l igger",
+ "▁lig ger",
+ "в ся",
+ "fa ng",
+ "fan g",
+ "f ang",
+ "▁t ard",
+ "▁tar d",
+ "▁ta rd",
+ "▁pla ats",
+ "▁п ло",
+ "▁ пло",
+ "▁Off ice",
+ "▁Offic e",
+ "▁ Office",
+ "▁S ET",
+ "▁SE T",
+ "▁ SET",
+ "▁circ uit",
+ "je d",
+ "j ed",
+ "Sa ve",
+ "S ave",
+ "ль но",
+ "So cket",
+ "S ocket",
+ "▁In dex",
+ "▁Ind ex",
+ "▁ Index",
+ "AC K",
+ "A CK",
+ "id ers",
+ "ide rs",
+ "ider s",
+ "i ders",
+ "er er",
+ "ere r",
+ "e rer",
+ "▁С ША",
+ "▁l ady",
+ "▁la dy",
+ "▁lad y",
+ "▁sch eme",
+ "▁sche me",
+ "ie lle",
+ "iel le",
+ "i elle",
+ "▁ex erc",
+ "▁exer c",
+ ")} \\",
+ ") }\\",
+ "Date Time",
+ "at han",
+ "ath an",
+ "a than",
+ "▁Prof essor",
+ "▁mo ins",
+ "▁moi ns",
+ "▁Ex cel",
+ "▁ Excel",
+ "▁H ay",
+ "▁Ha y",
+ "▁Mus ik",
+ "▁ ї",
+ "ę d",
+ "▁\" .",
+ "▁ \".",
+ "▁бу в",
+ "▁inst rument",
+ "▁instru ment",
+ "па р",
+ "п ар",
+ "▁б ере",
+ "▁бе ре",
+ "▁ бере",
+ "▁polit ique",
+ "▁trad ition",
+ "▁V M",
+ "▁ VM",
+ "▁Ar ts",
+ "▁Art s",
+ "▁C i",
+ "Us e",
+ "U se",
+ "▁a ggreg",
+ "▁ag greg",
+ "▁ aggreg",
+ "▁we eks",
+ "▁week s",
+ "▁o pport",
+ "▁op port",
+ "▁opp ort",
+ "it ing",
+ "iti ng",
+ "i ting",
+ "▁vert ical",
+ "▁ vertical",
+ "▁N az",
+ "▁Na z",
+ ".. .)",
+ "... )",
+ "iz o",
+ "i zo",
+ "▁c ycle",
+ "▁cy cle",
+ "▁cycl e",
+ "▁ cycle",
+ "▁tem po",
+ "▁temp o",
+ "т ре",
+ "▁hand ling",
+ "ist ence",
+ "isten ce",
+ "▁p aste",
+ "▁pas te",
+ "▁pa ste",
+ "▁past e",
+ "▁ paste",
+ "▁en jo",
+ "RO UP",
+ "▁o uter",
+ "▁out er",
+ "▁ou ter",
+ "▁ outer",
+ "▁su pply",
+ "▁supp ly",
+ "▁sup ply",
+ "em an",
+ "ema n",
+ "e man",
+ "▁acc ident",
+ "▁\\ ]",
+ "▁ \\]",
+ "▁те х",
+ "▁ тех",
+ "Po ol",
+ "P ool",
+ "ot ing",
+ "oti ng",
+ "o ting",
+ "onym ous",
+ "▁Gi ov",
+ "▁u d",
+ "▁ ud",
+ "▁. /",
+ "▁ ./",
+ "ER ROR",
+ "ERR OR",
+ "con struct",
+ "const ruct",
+ "text width",
+ "qu ipe",
+ "qui pe",
+ "quip e",
+ "case s",
+ "cas es",
+ "c ases",
+ "▁а д",
+ "▁R ow",
+ "▁Ro w",
+ "▁ Row",
+ "Hol der",
+ "Hold er",
+ "H older",
+ "wa n",
+ "w an",
+ "ar na",
+ "arn a",
+ "Me m",
+ "M em",
+ "▁Canad ian",
+ "▁Com mission",
+ "▁Comm ission",
+ "su n",
+ "s un",
+ "▁app s",
+ "▁ap ps",
+ "▁ apps",
+ "▁B lo",
+ "▁Bl o",
+ "▁i hrer",
+ "▁ih rer",
+ "▁ihr er",
+ "▁ihre r",
+ "▁famil le",
+ "▁fam ille",
+ "▁m ě",
+ "▁p y",
+ "▁ py",
+ "и с",
+ "▁т ого",
+ "▁то го",
+ "▁ того",
+ "▁Ag ain",
+ "▁ign ore",
+ "▁ignor e",
+ "▁ ignore",
+ "▁tele vision",
+ "▁televis ion",
+ "Pa t",
+ "P at",
+ "hi de",
+ "h ide",
+ "▁R ev",
+ "▁Re v",
+ "▁b ear",
+ "▁be ar",
+ "ph y",
+ "p hy",
+ "▁no ise",
+ "▁w ra",
+ "▁wr a",
+ "at ionale",
+ "ation ale",
+ "ational e",
+ "▁coll abor",
+ "bor der",
+ "b order",
+ "▁el ected",
+ "▁elect ed",
+ "▁ele cted",
+ "▁sur pr",
+ "▁a voir",
+ "▁av oir",
+ "▁avo ir",
+ "▁ avoir",
+ "▁ass embly",
+ "▁assemb ly",
+ "▁ assembly",
+ "▁об ще",
+ "▁arbitr ary",
+ "▁br ief",
+ "▁- --",
+ "▁-- -",
+ "▁ ---",
+ "▁M aur",
+ "▁Ma ur",
+ "▁Mau r",
+ "gr ession",
+ "gress ion",
+ "g ression",
+ "ic ia",
+ "ici a",
+ "i cia",
+ "▁lie gt",
+ "▁Fig ure",
+ "▁on to",
+ "▁ont o",
+ "▁ onto",
+ "Re pository",
+ "Repos itory",
+ "▁dé f",
+ "▁f orth",
+ "▁for th",
+ "▁fort h",
+ "▁cl icked",
+ "▁click ed",
+ "se ite",
+ "▁n otes",
+ "▁not es",
+ "▁no tes",
+ "▁note s",
+ "▁ notes",
+ "nat ive",
+ "n ative",
+ "▁ED IT",
+ "▁ EDIT",
+ "ы е",
+ "M T",
+ "am ental",
+ "ament al",
+ "amen tal",
+ "▁r ose",
+ "▁ro se",
+ "▁ros e",
+ "▁ rose",
+ "▁pu ede",
+ "▁pue de",
+ "De legate",
+ "Deleg ate",
+ "ub a",
+ "u ba",
+ "ne o",
+ "xi s",
+ "x is",
+ "▁Ar thur",
+ "UR E",
+ "U RE",
+ "am ing",
+ "ami ng",
+ "amin g",
+ "a ming",
+ "De vice",
+ "Dev ice",
+ "▁d iam",
+ "▁di am",
+ "▁dia m",
+ "st änd",
+ "▁p ron",
+ "▁pro n",
+ "▁pr on",
+ "oi s",
+ "o is",
+ "com ing",
+ "co ming",
+ "c oming",
+ "Param eters",
+ "Parameter s",
+ "uv ud",
+ "▁ab ility",
+ "▁ ability",
+ "▁m ét",
+ "▁mé t",
+ "▁Un fortunately",
+ "f d",
+ "D ictionary",
+ "so cket",
+ "sock et",
+ "s ocket",
+ "▁con oc",
+ "▁co noc",
+ "cont ains",
+ "es sed",
+ "ess ed",
+ "esse d",
+ "▁gel dig",
+ "▁geld ig",
+ "ни ца",
+ "ниц а",
+ "▁point ed",
+ "es ti",
+ "est i",
+ "no m",
+ "n om",
+ "ографи я",
+ "▁represent s",
+ "▁repres ents",
+ "▁man ip",
+ "wor ld",
+ "w orld",
+ "▁resol ved",
+ "▁resolve d",
+ "te gr",
+ "t egr",
+ "▁d ort",
+ "▁do rt",
+ "▁dor t",
+ "as tern",
+ "ast ern",
+ "aster n",
+ "aste rn",
+ "▁camp aign",
+ "▁pr imo",
+ "▁prim o",
+ "▁pri mo",
+ "▁; ;",
+ "▁ ;;",
+ "▁sni ppet",
+ "▁N ik",
+ "▁Ni k",
+ "To tal",
+ "T otal",
+ "iss ement",
+ "isse ment",
+ "AC E",
+ "A CE",
+ "▁ver ify",
+ "▁ verify",
+ "if fe",
+ "iff e",
+ "i ffe",
+ "la gen",
+ "lag en",
+ "lage n",
+ "l agen",
+ "ie ur",
+ "ieu r",
+ "i eur",
+ "▁convert ed",
+ "▁conver ted",
+ "▁Mil it",
+ "▁Mi lit",
+ "▁A lg",
+ "▁Al g",
+ "▁ Alg",
+ "▁R on",
+ "▁Ro n",
+ "▁k onn",
+ "▁kon n",
+ "▁ko nn",
+ "ap ple",
+ "app le",
+ "▁dis pos",
+ "▁disp os",
+ "stell ung",
+ "▁re tain",
+ "▁ret ain",
+ "▁m entre",
+ "▁men tre",
+ "▁ment re",
+ "▁ne ut",
+ "▁neu t",
+ "▁ neut",
+ "▁N ight",
+ "ch é",
+ "c hé",
+ "at ti",
+ "att i",
+ "▁o bra",
+ "▁ob ra",
+ "▁super ior",
+ "▁Con gress",
+ "▁Cong ress",
+ "ё м",
+ "▁c odes",
+ "▁code s",
+ "▁co des",
+ "▁cod es",
+ "▁ codes",
+ "▁A ma",
+ "▁Am a",
+ "▁E arth",
+ "▁Ear th",
+ "▁oppos ite",
+ "▁p ool",
+ "▁po ol",
+ "▁ pool",
+ "▁D un",
+ "▁Du n",
+ "же ние",
+ "▁\" ${",
+ "▁\"$ {",
+ "in v",
+ "▁у ни",
+ "▁And rew",
+ "▁Andre w",
+ "те лей",
+ "тел ей",
+ "▁by ł",
+ "Un ivers",
+ "Uni vers",
+ "▁Ang ular",
+ "an im",
+ "ani m",
+ "a nim",
+ "до ва",
+ "дов а",
+ "д ова",
+ "BU G",
+ "B UG",
+ "ut ely",
+ "ute ly",
+ "▁draw ing",
+ "▁dra wing",
+ "▁g ain",
+ "▁ga in",
+ "▁four th",
+ "▁Pro blem",
+ "▁ Problem",
+ "▁sudden ly",
+ "▁ Ä",
+ "on na",
+ "onn a",
+ "▁K ont",
+ "▁Kon t",
+ "▁Ko nt",
+ "▁Bilder n",
+ "▁Bild ern",
+ "▁Bil dern",
+ "▁konn te",
+ "ž e",
+ "Tr ace",
+ "Tra ce",
+ "T race",
+ "▁sec ure",
+ "▁ secure",
+ "▁któ ry",
+ "▁e q",
+ "▁ eq",
+ "▁f ormal",
+ "▁for mal",
+ "▁form al",
+ "▁forma l",
+ "amer ikan",
+ "▁A nal",
+ "▁An al",
+ "▁Ana l",
+ "▁ Anal",
+ "▁R ewrite",
+ "▁Re write",
+ "▁D ouble",
+ "▁Dou ble",
+ "▁ Double",
+ "cre ated",
+ "create d",
+ "N U",
+ "MD b",
+ "M Db",
+ "ap es",
+ "ape s",
+ "a pes",
+ "Un is",
+ "Uni s",
+ "U nis",
+ "▁e special",
+ "▁espe cial",
+ "▁espec ial",
+ "}) \\",
+ "} )\\",
+ "ed om",
+ "edo m",
+ "e dom",
+ "▁c ategor",
+ "▁categ or",
+ "Re turn",
+ "Ret urn",
+ "▁H amb",
+ "▁Ha mb",
+ "▁Ham b",
+ "▁R io",
+ "▁Ri o",
+ "▁M ir",
+ "▁Mi r",
+ "▁G eme",
+ "▁Ge me",
+ "▁Gem e",
+ "ab ilities",
+ "abil ities",
+ "tr z",
+ "t rz",
+ "us et",
+ "use t",
+ "u set",
+ "ier ra",
+ "net work",
+ "n etwork",
+ "▁do ctor",
+ "▁doc tor",
+ "eur s",
+ "eu rs",
+ "e urs",
+ "▁l isten",
+ "▁li sten",
+ "▁list en",
+ "▁liste n",
+ "▁ listen",
+ "д ж",
+ "▁H ö",
+ "▁cons ists",
+ "▁consist s",
+ "as m",
+ "a sm",
+ "Ch r",
+ "C hr",
+ "al and",
+ "ala nd",
+ "a land",
+ "▁испо ль",
+ "▁ис поль",
+ "▁испол ь",
+ "▁lug ar",
+ "▁lu gar",
+ "▁def initely",
+ "▁definit ely",
+ "▁definite ly",
+ "mo ve",
+ "mov e",
+ "m ove",
+ "úblic a",
+ "ú blica",
+ "▁l än",
+ "▁lä n",
+ "is mus",
+ "ism us",
+ "▁др жа",
+ "▁d t",
+ "▁ dt",
+ "▁Per haps",
+ "▁Bra sil",
+ "▁Bras il",
+ "Jo hn",
+ "J ohn",
+ "▁prom ise",
+ "ł u",
+ "re ens",
+ "ree ns",
+ "reen s",
+ "▁ps ych",
+ "▁W ho",
+ "▁Wh o",
+ "▁ Who",
+ "ря д",
+ "▁IN TO",
+ "▁INT O",
+ "▁Pe ople",
+ "▁Will iams",
+ "▁William s",
+ "▁M arg",
+ "▁Mar g",
+ "▁Ma rg",
+ "▁д ан",
+ "▁да н",
+ "▁ дан",
+ "re cord",
+ "rec ord",
+ "▁E uro",
+ "▁Eu ro",
+ "▁Eur o",
+ "▁Virgin ia",
+ "▁R est",
+ "▁Re st",
+ "▁Res t",
+ "▁ Rest",
+ "▁C orn",
+ "▁Cor n",
+ "▁Co rn",
+ "}} ,",
+ "} },",
+ "▁G rid",
+ "▁Gr id",
+ "▁ Grid",
+ "▁in ject",
+ "▁inj ect",
+ "▁ inject",
+ "на н",
+ "н ан",
+ "▁c row",
+ "▁cr ow",
+ "▁cro w",
+ "▁Ph ys",
+ "▁ Phys",
+ "▁D O",
+ "▁ DO",
+ "▁\" -",
+ "▁incre ased",
+ "▁increase d",
+ "ach er",
+ "ac her",
+ "ache r",
+ "a cher",
+ "pe at",
+ "Li n",
+ "L in",
+ "▁D ub",
+ "▁Du b",
+ "ri ces",
+ "ric es",
+ "rice s",
+ "r ices",
+ "ag nost",
+ "agn ost",
+ "d l",
+ "▁cur ve",
+ "▁curv e",
+ "ü g",
+ "ri ce",
+ "ric e",
+ "r ice",
+ "l anguage",
+ "Click Listener",
+ "▁municip al",
+ "▁O ri",
+ "▁Or i",
+ "▁ Ori",
+ "▁B ild",
+ "▁Bi ld",
+ "▁Bil d",
+ "▁C ab",
+ "▁Ca b",
+ "▁V ar",
+ "▁Va r",
+ "▁ Var",
+ "▁n oted",
+ "▁not ed",
+ "▁no ted",
+ "▁note d",
+ "▁ Î",
+ "▁s ubs",
+ "▁su bs",
+ "▁sub s",
+ "ia tion",
+ "iat ion",
+ "i ation",
+ "W OR",
+ "in gly",
+ "ing ly",
+ "▁R us",
+ "▁Ru s",
+ "ie ns",
+ "ien s",
+ "i ens",
+ "IN FO",
+ "INF O",
+ "к ва",
+ "at ivo",
+ "ativ o",
+ "ati vo",
+ "ge nde",
+ "gen de",
+ "g ende",
+ "▁Fran z",
+ "▁Fr anz",
+ "▁is ol",
+ "▁i sol",
+ "ed es",
+ "ede s",
+ "e des",
+ "ni er",
+ "nie r",
+ "n ier",
+ "▁N O",
+ "▁ NO",
+ "▁H as",
+ "▁Ha s",
+ "▁ Has",
+ "be ans",
+ "bean s",
+ "▁p andas",
+ "▁pan das",
+ "▁ pandas",
+ "(\" %",
+ "ві т",
+ "ут бо",
+ "▁g ather",
+ "▁ga ther",
+ "▁gat her",
+ "▁le gal",
+ "▁leg al",
+ "▁ legal",
+ "in clud",
+ "▁circum st",
+ "cript or",
+ "ri ble",
+ "rib le",
+ "r ible",
+ "▁S üd",
+ "▁Sü d",
+ "▁a pro",
+ "▁ap ro",
+ "▁apr o",
+ "Ap i",
+ "A pi",
+ "▁на й",
+ "▁Afr ican",
+ "▁Africa n",
+ "ow ski",
+ "ows ki",
+ "▁John son",
+ "ie k",
+ "i ek",
+ "▁v ote",
+ "▁vo te",
+ "▁vot e",
+ "▁ vote",
+ "▁K an",
+ "▁Ka n",
+ "▁b ibli",
+ "▁bib li",
+ "▁ bibli",
+ "▁h aar",
+ "▁ha ar",
+ "▁v r",
+ "▁ vr",
+ "]) ,",
+ "] ),",
+ "subset eq",
+ "Par ser",
+ "Parse r",
+ "ia ni",
+ "ian i",
+ "i ani",
+ "is é",
+ "id ea",
+ "ide a",
+ "On ly",
+ "▁á l",
+ "▁ ál",
+ "▁C atal",
+ "▁Ca tal",
+ "▁Cat al",
+ "▁C ase",
+ "▁Cas e",
+ "▁Ca se",
+ "▁ Case",
+ "se h",
+ "s eh",
+ "▁en counter",
+ "▁enc ounter",
+ "▁re form",
+ "▁ref orm",
+ "ми ни",
+ "мин и",
+ "▁S tre",
+ "▁St re",
+ "▁Str e",
+ "ex ception",
+ "except ion",
+ "▁T ar",
+ "▁Ta r",
+ "та р",
+ "т ар",
+ "tr l",
+ "t rl",
+ "▁А лександ",
+ "ле кт",
+ "лек т",
+ "equ al",
+ "eq ual",
+ "e qual",
+ "O p",
+ "▁l if",
+ "▁li f",
+ "▁й ого",
+ "▁volt age",
+ "▁volta ge",
+ "sh ire",
+ "s hire",
+ "▁Gro ß",
+ "в ня",
+ "ning s",
+ "n ings",
+ "н ци",
+ "▁l ag",
+ "▁la g",
+ "▁ lag",
+ "▁and eren",
+ "▁andere n",
+ "▁v ac",
+ "▁va c",
+ "▁ma cro",
+ "▁mac ro",
+ "▁ macro",
+ "= [",
+ "Th en",
+ "The n",
+ "T hen",
+ "▁control s",
+ "▁contr ols",
+ "▁contro ls",
+ "▁ controls",
+ "se q",
+ "s eq",
+ "olog ies",
+ "ologie s",
+ "▁select or",
+ "▁sel ector",
+ "▁sele ctor",
+ "▁ selector",
+ "▁Украї ни",
+ "хів овано",
+ "ы й",
+ "allen ge",
+ "alleng e",
+ "▁I MDb",
+ "▁IM Db",
+ "um my",
+ "umm y",
+ "ye n",
+ "y en",
+ "▁b este",
+ "▁be ste",
+ "▁best e",
+ "▁bes te",
+ "▁B ox",
+ "▁Bo x",
+ "▁ Box",
+ "▁ch air",
+ "▁cha ir",
+ "▁S ab",
+ "▁Sa b",
+ "er de",
+ "erd e",
+ "▁n ast",
+ "▁na st",
+ "▁nas t",
+ "iv amente",
+ "iva mente",
+ "▁об ъ",
+ "▁require ments",
+ "▁requirement s",
+ "▁me eting",
+ "▁meet ing",
+ "▁fin an",
+ "▁fi nan",
+ "▁A dam",
+ "▁Ad am",
+ "▁Ada m",
+ "▁tele vis",
+ "▁b right",
+ "▁br ight",
+ "▁brig ht",
+ "▁G it",
+ "▁Gi t",
+ "▁ Git",
+ "E G",
+ "▁G il",
+ "▁Gi l",
+ "r ès",
+ "▁C ond",
+ "▁Con d",
+ "▁Co nd",
+ "▁ Cond",
+ "▁f t",
+ "▁ ft",
+ "▁бу ло",
+ "- +",
+ "EN D",
+ "E ND",
+ "er ne",
+ "ern e",
+ "▁Com put",
+ "▁Comp ut",
+ "▁ Comput",
+ "▁i ls",
+ "▁il s",
+ "▁ ils",
+ "▁g all",
+ "▁gal l",
+ "▁ga ll",
+ "▁c sv",
+ "▁cs v",
+ "▁ csv",
+ "łu g",
+ "ł ug",
+ "▁sum mer",
+ "▁summ er",
+ "ga me",
+ "g ame",
+ "▁pos ts",
+ "▁post s",
+ "▁ posts",
+ "Ар хівовано",
+ "▁z ij",
+ "▁de termin",
+ "▁determ in",
+ "▁ab andon",
+ "co unter",
+ "count er",
+ "c ounter",
+ "▁require ment",
+ "▁requ irement",
+ "▁T it",
+ "▁Ti t",
+ "irt ual",
+ "▁V ideos",
+ "▁Video s",
+ "▁qu iet",
+ "▁qui et",
+ "▁T erm",
+ "▁Te rm",
+ "▁Ter m",
+ "▁ Term",
+ "▁time out",
+ "▁ timeout",
+ "Pr int",
+ "▁in vent",
+ "▁inv ent",
+ "▁inve nt",
+ "la is",
+ "l ais",
+ "▁mon itor",
+ "ha lb",
+ "hal b",
+ "▁W ild",
+ "▁Wil d",
+ "▁Wi ld",
+ "▁le ader",
+ "▁lead er",
+ "▁с ель",
+ "▁се ль",
+ "▁util iz",
+ "▁par ents",
+ "▁parent s",
+ "▁for ced",
+ "▁force d",
+ "▁pro ved",
+ "▁pr oved",
+ "▁prov ed",
+ "▁prove d",
+ "▁effect ive",
+ "▁l lam",
+ "▁ll am",
+ "▁С по",
+ "or b",
+ "o rb",
+ "gg i",
+ "g gi",
+ "▁ass umption",
+ "▁assum ption",
+ "▁su bm",
+ "▁sub m",
+ "▁в ій",
+ "▁ві й",
+ "il ia",
+ "ili a",
+ "i lia",
+ "▁re verse",
+ "▁revers e",
+ "▁rever se",
+ "▁ reverse",
+ "' \"",
+ "▁qu otes",
+ "▁quot es",
+ "▁quote s",
+ "▁s ites",
+ "▁si tes",
+ "▁site s",
+ "▁sit es",
+ "▁ sites",
+ "ig ung",
+ "igu ng",
+ "▁A rg",
+ "▁Ar g",
+ "▁ Arg",
+ "D ouble",
+ "▁s creens",
+ "▁sc reens",
+ "▁screen s",
+ "▁cl ause",
+ "▁cla use",
+ "▁b undle",
+ "▁bund le",
+ "▁ bundle",
+ "▁phil osoph",
+ "▁N um",
+ "▁Nu m",
+ "▁ Num",
+ "▁g leich",
+ "▁gle ich",
+ "▁ gleich",
+ "ul y",
+ "u ly",
+ "dir ect",
+ "di rect",
+ "dire ct",
+ "d irect",
+ "asket ball",
+ "ow any",
+ "owa ny",
+ "owan y",
+ "\\} $",
+ "\\ }$",
+ "▁rad ius",
+ "▁radi us",
+ "▁ radius",
+ "▁S earch",
+ "▁Se arch",
+ "▁ Search",
+ "Pro perties",
+ "▁e lev",
+ "▁el ev",
+ "▁ele v",
+ "▁p rod",
+ "▁pro d",
+ "▁pr od",
+ "▁ prod",
+ "▁\" %",
+ "is ión",
+ "isi ón",
+ "De bug",
+ "Deb ug",
+ "Se cond",
+ "Sec ond",
+ "( !",
+ "▁C atholic",
+ "ро ван",
+ "ров ан",
+ "рова н",
+ "р ован",
+ "le z",
+ "l ez",
+ "P a",
+ "ps on",
+ "p son",
+ "▁er ste",
+ "▁erst e",
+ "▁ers te",
+ "▁F u",
+ "▁l it",
+ "▁li t",
+ "▁ lit",
+ "▁S aison",
+ "▁Sa ison",
+ "▁H ash",
+ "▁Ha sh",
+ "▁Has h",
+ "▁ Hash",
+ "▁ex em",
+ "▁пред став",
+ ") *",
+ "▁e u",
+ "▁ eu",
+ "▁ │",
+ "▁g ab",
+ "▁ga b",
+ "eta iled",
+ "Co py",
+ "C opy",
+ "▁д ва",
+ "ev en",
+ "e ven",
+ "K ind",
+ "▁Jack son",
+ "а л",
+ "▁con sec",
+ "▁cons ec",
+ "▁conse c",
+ "US ER",
+ "USE R",
+ "U SER",
+ "▁T ok",
+ "▁To k",
+ "( .",
+ "▁$ |",
+ "▁T amb",
+ "▁Ta mb",
+ "▁Tam b",
+ "▁Lem ma",
+ "ha ng",
+ "han g",
+ "h ang",
+ "▁cont ribution",
+ "▁contrib ution",
+ "▁contribu tion",
+ "roll ers",
+ "rol lers",
+ "roller s",
+ "rolle rs",
+ "▁stud ies",
+ "▁studi es",
+ "▁p oi",
+ "▁po i",
+ "ge ms",
+ "gem s",
+ "g ems",
+ "▁U P",
+ "▁ UP",
+ "▁W ol",
+ "▁Wo l",
+ "> \"",
+ "▁f loor",
+ "▁fl oor",
+ "▁flo or",
+ "▁ floor",
+ "▁init ialize",
+ "▁initial ize",
+ "▁ initialize",
+ "▁L ew",
+ "▁Le w",
+ "ze k",
+ "z ek",
+ "ar te",
+ "art e",
+ "▁pos itions",
+ "▁position s",
+ "▁posit ions",
+ "▁por tion",
+ "▁port ion",
+ "co ver",
+ "cov er",
+ "c over",
+ "w p",
+ "ов ого",
+ "ово го",
+ "о вого",
+ "▁p iano",
+ "▁pi ano",
+ "▁pian o",
+ "▁pia no",
+ "▁m etal",
+ "▁me tal",
+ "▁met al",
+ "▁meta l",
+ "▁s amples",
+ "▁sam ples",
+ "▁sample s",
+ "▁ samples",
+ "▁С ан",
+ "▁Са н",
+ "vari able",
+ "▁ста ть",
+ "▁inte gers",
+ "▁integer s",
+ "Wh ere",
+ "W here",
+ "famil y",
+ "▁n un",
+ "▁nu n",
+ "▁in crement",
+ "▁incre ment",
+ "▁ increment",
+ "ix ed",
+ "▁he eft",
+ "ft e",
+ "f te",
+ "▁v il",
+ "▁vi l",
+ "▁ vil",
+ "▁ot ros",
+ "▁otro s",
+ "Mult imedia",
+ "Multi media",
+ "▁Hen ri",
+ "ad ed",
+ "ade d",
+ "a ded",
+ "ге н",
+ "г ен",
+ "▁cap it",
+ "▁ca pit",
+ "▁други х",
+ "is p",
+ "i sp",
+ "IT Y",
+ "I TY",
+ "▁constraint s",
+ "▁K irche",
+ "▁Kir che",
+ "▁Kirch e",
+ "fo und",
+ "f ound",
+ "ши й",
+ "▁p ic",
+ "▁pi c",
+ "▁ pic",
+ "▁t ou",
+ "▁to u",
+ "cre d",
+ "cr ed",
+ "c red",
+ "ро б",
+ "р об",
+ "▁M ess",
+ "▁Me ss",
+ "▁Mes s",
+ "▁ Mess",
+ "Jo b",
+ "J ob",
+ "▁M ais",
+ "▁Ma is",
+ "▁Mai s",
+ "▁st yles",
+ "▁style s",
+ "▁sty les",
+ "▁ styles",
+ "fa ll",
+ "fal l",
+ "f all",
+ "▁U k",
+ "▁st reet",
+ "▁stre et",
+ "▁ street",
+ "oc cer",
+ "occ er",
+ "es en",
+ "ese n",
+ "e sen",
+ "▁col ors",
+ "▁color s",
+ "▁ colors",
+ "ce an",
+ "ю ще",
+ "con ne",
+ "conn e",
+ "c onne",
+ "▁r atio",
+ "▁rat io",
+ "an ton",
+ "ant on",
+ "anto n",
+ "▁F el",
+ "▁Fe l",
+ "▁custom er",
+ "▁cust omer",
+ "▁ customer",
+ "▁P rix",
+ "▁Pr ix",
+ "▁Pri x",
+ "rá s",
+ "r ás",
+ "pr ed",
+ "pre d",
+ "p red",
+ "▁elect ron",
+ "▁electro n",
+ "s ym",
+ "▁ве ли",
+ "▁ вели",
+ "▁over flow",
+ "▁ overflow",
+ "▁$ [",
+ "▁P OST",
+ "▁PO ST",
+ "▁ POST",
+ "▁C in",
+ "▁Ci n",
+ "sc heid",
+ "sche id",
+ "(\" /",
+ "( \"/",
+ "▁search ing",
+ "▁pur poses",
+ "▁purpose s",
+ "▁arr ived",
+ "▁arriv ed",
+ "▁arrive d",
+ "▁p unt",
+ "▁pu nt",
+ "▁pun t",
+ "▁l ad",
+ "▁la d",
+ "▁ lad",
+ "P ython",
+ "▁le ads",
+ "▁lead s",
+ "▁s and",
+ "▁sa nd",
+ "▁san d",
+ "па да",
+ "пад а",
+ "▁comm unes",
+ "▁commun es",
+ "▁commune s",
+ "▁CH AP",
+ "▁c aso",
+ "▁cas o",
+ "▁ca so",
+ "r z",
+ "▁d w",
+ "▁ dw",
+ "ac a",
+ "a ca",
+ "▁Col umb",
+ "child ren",
+ "ê t",
+ "sch emas",
+ "sche mas",
+ "schema s",
+ "▁instru ctions",
+ "▁instruction s",
+ "▁instruct ions",
+ "▁- \\",
+ "▁ -\\",
+ "▁Is rael",
+ "▁Isra el",
+ "no ści",
+ "▁об раз",
+ "▁обра з",
+ "▁ образ",
+ "▁со вет",
+ "▁сов ет",
+ "▁imm agini",
+ "▁F red",
+ "▁Fre d",
+ "▁Fr ed",
+ "▁G lobal",
+ "▁Glo bal",
+ "▁ Global",
+ "▁th ick",
+ "▁ thick",
+ "▁fue ron",
+ "▁fuer on",
+ "▁th rown",
+ "▁thr own",
+ "▁throw n",
+ "▁thro wn",
+ "▁c lock",
+ "▁cl ock",
+ "▁clo ck",
+ "▁ clock",
+ "en able",
+ "ena ble",
+ "'' '",
+ "' ''",
+ "▁S und",
+ "▁Su nd",
+ "▁Sun d",
+ "▁cont empor",
+ "an swer",
+ "ans wer",
+ "▁man ufact",
+ "▁i o",
+ "▁ io",
+ "q quad",
+ "OU T",
+ "O UT",
+ "▁L ab",
+ "▁La b",
+ "▁ Lab",
+ "▁Z w",
+ "le gal",
+ "leg al",
+ "▁V el",
+ "▁Ve l",
+ "▁ra ise",
+ "▁ raise",
+ "▁de liver",
+ "▁del iver",
+ "▁deli ver",
+ "▁V oir",
+ "▁Vo ir",
+ "▁ass umed",
+ "▁assum ed",
+ "▁assume d",
+ "Le t",
+ "L et",
+ "ier ten",
+ "iert en",
+ "ierte n",
+ "i erten",
+ "▁K ong",
+ "▁Kon g",
+ "▁Ko ng",
+ "▁E xp",
+ "▁Ex p",
+ "▁ Exp",
+ "▁J ug",
+ "▁Ju g",
+ "▁dec laration",
+ "▁declar ation",
+ "▁F ish",
+ "m é",
+ "▁spe ech",
+ "▁t ent",
+ "▁te nt",
+ "▁ten t",
+ "▁R oute",
+ "▁Ro ute",
+ "▁Rou te",
+ "▁Rout e",
+ "▁ Route",
+ "__ (",
+ "_ _(",
+ "▁ré alis",
+ "▁réal is",
+ "▁De sign",
+ "▁Des ign",
+ "set Text",
+ "▁St ation",
+ "▁Stat ion",
+ "▁Sta tion",
+ "▁Stati on",
+ "▁ Station",
+ "ar chy",
+ "arch y",
+ "arc hy",
+ "▁ка то",
+ "▁d ent",
+ "▁de nt",
+ "▁den t",
+ "▁ dent",
+ "▁K l",
+ "i ß",
+ "▁r isk",
+ "▁ris k",
+ "▁ri sk",
+ "▁B road",
+ "▁Bro ad",
+ "▁v ectors",
+ "▁ve ctors",
+ "▁vector s",
+ "▁S pec",
+ "▁Sp ec",
+ "▁Spe c",
+ "▁ Spec",
+ "▁ro utes",
+ "▁route s",
+ "▁rout es",
+ "▁rou tes",
+ "▁ routes",
+ "ym n",
+ "y mn",
+ "▁G reg",
+ "▁Gr eg",
+ "▁Gre g",
+ "▁полу чи",
+ "gi e",
+ "g ie",
+ "OR M",
+ "ве де",
+ "вед е",
+ "в еде",
+ "wa lt",
+ "wal t",
+ "w alt",
+ "▁e fter",
+ "P tr",
+ "▁su bt",
+ "▁sub t",
+ "▁b irth",
+ "▁bir th",
+ "▁dr awn",
+ "▁draw n",
+ "▁dra wn",
+ "me ss",
+ "mes s",
+ "m ess",
+ "мери кан",
+ "V E",
+ "▁P ut",
+ "▁Pu t",
+ "▁ Put",
+ "▁a sc",
+ "▁as c",
+ "▁ asc",
+ "▁f eder",
+ "▁fe der",
+ "▁fed er",
+ "с ли",
+ "▁P rin",
+ "▁Pr in",
+ "▁Pri n",
+ "▁s tick",
+ "▁st ick",
+ "re set",
+ "res et",
+ "y k",
+ "st udio",
+ "stud io",
+ "▁St ill",
+ "Con st",
+ "Cons t",
+ "ac ió",
+ "aci ó",
+ "a ció",
+ "▁Portug al",
+ "▁script s",
+ "▁scri pts",
+ "▁ scripts",
+ "und ial",
+ "▁l ives",
+ "▁li ves",
+ "▁live s",
+ "▁liv es",
+ "▁s zer",
+ "▁sz er",
+ "▁sze r",
+ "▁est ado",
+ "▁esta do",
+ "▁estad o",
+ "fo lder",
+ "fol der",
+ "fold er",
+ "f older",
+ "▁communic ation",
+ "Ro ute",
+ "Rout e",
+ "R oute",
+ "▁sw ift",
+ "▁ swift",
+ "те н",
+ "т ен",
+ "▁k ill",
+ "▁kil l",
+ "▁ki ll",
+ "▁ kill",
+ "▁P R",
+ "▁ PR",
+ "jo int",
+ "join t",
+ "j oint",
+ "▁ob jective",
+ "▁object ive",
+ "▁comp licated",
+ "▁Ü ber",
+ "es h",
+ "e sh",
+ "p icture",
+ "ra ine",
+ "rain e",
+ "rai ne",
+ "r aine",
+ "com put",
+ "comp ut",
+ "▁pro port",
+ "▁pr oport",
+ "▁prop ort",
+ "▁propor t",
+ "og s",
+ "o gs",
+ "ül t",
+ "ü lt",
+ "▁quant um",
+ "к ри",
+ "▁s op",
+ "▁so p",
+ "▁lo ops",
+ "▁loop s",
+ "▁Re ference",
+ "▁Refer ence",
+ "▁ Reference",
+ "▁n ei",
+ "▁ne i",
+ "IC E",
+ "I CE",
+ "▁v erm",
+ "▁ver m",
+ "▁ve rm",
+ "▁a dj",
+ "▁ad j",
+ "▁ adj",
+ "▁per ò",
+ "▁t rou",
+ "▁tr ou",
+ "▁tro u",
+ "is ions",
+ "ision s",
+ "isi ons",
+ "▁App le",
+ "▁Ap ple",
+ "serv able",
+ "▁B oston",
+ "▁Bo ston",
+ "▁Bos ton",
+ "or et",
+ "ore t",
+ "o ret",
+ "ok s",
+ "o ks",
+ "▁k g",
+ "▁ kg",
+ "def ined",
+ "define d",
+ "defin ed",
+ "d efined",
+ "pl atform",
+ "cl er",
+ "cle r",
+ "c ler",
+ "ograph ic",
+ "ri tt",
+ "rit t",
+ "r itt",
+ "▁d ic",
+ "▁di c",
+ "▁ dic",
+ "▁M ond",
+ "▁Mon d",
+ "▁Mo nd",
+ "▁I reland",
+ "▁Ir eland",
+ "▁U na",
+ "▁Un a",
+ "▁commer cial",
+ "▁P u",
+ "D i",
+ "▁е ё",
+ "▁pre cis",
+ "▁prec is",
+ "на род",
+ "нар од",
+ "▁qu atre",
+ "ust ral",
+ "ustr al",
+ "▁d ag",
+ "▁da g",
+ "▁ dag",
+ "ig ue",
+ "igu e",
+ "i gue",
+ "▁b urn",
+ "▁bu rn",
+ "▁bur n",
+ "▁ burn",
+ "▁offic er",
+ "▁office r",
+ "▁А в",
+ "▁high light",
+ "▁ highlight",
+ "▁Supp ose",
+ "▁Sup pose",
+ "od i",
+ "o di",
+ "serv let",
+ "▁En cyc",
+ "▁Enc yc",
+ "▁R ange",
+ "▁Ran ge",
+ "▁Rang e",
+ "▁ Range",
+ "ти й",
+ "P lease",
+ "▁ро ків",
+ "qu ant",
+ "qua nt",
+ "▁f lat",
+ "▁fl at",
+ "▁fla t",
+ "▁ flat",
+ "▁Ré férence",
+ "сле дова",
+ "след ова",
+ "ro le",
+ "rol e",
+ "r ole",
+ "▁d iesen",
+ "▁di esen",
+ "▁die sen",
+ "▁dies en",
+ "▁diese n",
+ "}} (",
+ "} }(",
+ "▁Ind ust",
+ "▁nú mer",
+ "▁\" ;",
+ "▁ \";",
+ "lu s",
+ "l us",
+ "ô le",
+ "▁z m",
+ "▁ zm",
+ "de g",
+ "d eg",
+ "▁r ough",
+ "▁ro ugh",
+ "▁rou gh",
+ "▁ rough",
+ "In v",
+ "▁h ur",
+ "▁hu r",
+ "▁R ess",
+ "▁Re ss",
+ "▁Res s",
+ "ch s",
+ "c hs",
+ "▁turn s",
+ "▁tur ns",
+ "ne ro",
+ "ner o",
+ "n ero",
+ "function s",
+ "fun ctions",
+ "ал и",
+ "а ли",
+ "▁hab itants",
+ "▁habit ants",
+ "а т",
+ "iss ues",
+ "issue s",
+ "▁h uge",
+ "▁hu ge",
+ "Util s",
+ "▁S at",
+ "▁Sa t",
+ "▁го судар",
+ "▁co ast",
+ "sh ape",
+ "sha pe",
+ "s hape",
+ "L C",
+ "▁log ging",
+ "▁ logging",
+ "en dor",
+ "end or",
+ "endo r",
+ "▁l ies",
+ "▁li es",
+ "▁lie s",
+ "▁ lies",
+ "▁d ifer",
+ "▁di fer",
+ "▁dif er",
+ "▁crit ical",
+ "▁critic al",
+ "X T",
+ "ми на",
+ "мин а",
+ "an sk",
+ "ans k",
+ "Result s",
+ "k c",
+ "ivers e",
+ "iver se",
+ "i verse",
+ "EX T",
+ "E XT",
+ "AL SE",
+ "▁v ál",
+ "▁vá l",
+ "P i",
+ "comp ile",
+ "hel lo",
+ "hell o",
+ "h ello",
+ "▁чем пи",
+ "▁It alia",
+ "▁Ital ia",
+ "▁ Italia",
+ "ко ло",
+ "кол о",
+ "к оло",
+ "▁ed ition",
+ "▁edit ion",
+ "gr und",
+ "gru nd",
+ "g rund",
+ "▁data frame",
+ "▁Follow ing",
+ "re ib",
+ "rei b",
+ "▁J eff",
+ "▁Je ff",
+ "▁citt à",
+ "IT able",
+ "I Table",
+ "▁$ (\\",
+ "▁$( \\",
+ "▁redu ced",
+ "▁reduce d",
+ "ob il",
+ "obi l",
+ "o bil",
+ "▁any where",
+ "' (",
+ "▁p hr",
+ "▁ph r",
+ "▁ phr",
+ "▁K h",
+ "▁F rame",
+ "▁Fr ame",
+ "▁Fra me",
+ "▁ Frame",
+ "▁man ual",
+ "▁ manual",
+ "▁c ra",
+ "▁cr a",
+ "▁ cra",
+ "▁V S",
+ "▁ VS",
+ "% =",
+ "Instance State",
+ "▁б ра",
+ "▁ бра",
+ "▁D rag",
+ "▁Dr ag",
+ "▁Dra g",
+ "▁ Drag",
+ "▁H err",
+ "▁He rr",
+ "▁Her r",
+ "▁г у",
+ "▁ гу",
+ "▁m ús",
+ "To ol",
+ "T ool",
+ "▁P rivate",
+ "▁Priv ate",
+ "▁ Private",
+ "▁s ynchron",
+ "▁syn chron",
+ "ir ation",
+ "ira tion",
+ "irat ion",
+ "▁о бо",
+ "▁об о",
+ "▁typ ically",
+ "▁typical ly",
+ "▁imp licit",
+ "or ient",
+ "ori ent",
+ "orie nt",
+ "▁t imer",
+ "▁time r",
+ "▁tim er",
+ "▁ti mer",
+ "▁ timer",
+ "▁kön nen",
+ "ie st",
+ "ies t",
+ "i est",
+ "ra id",
+ "rai d",
+ "▁expression s",
+ "▁express ions",
+ "▁expr essions",
+ "▁a im",
+ "▁ai m",
+ "▁s tre",
+ "▁st re",
+ "▁str e",
+ "▁ stre",
+ "▁w rap",
+ "▁wr ap",
+ "▁wra p",
+ "▁ wrap",
+ "▁B art",
+ "▁Bar t",
+ "▁Ba rt",
+ "▁b ron",
+ "▁br on",
+ "▁bro n",
+ "▁key board",
+ "po w",
+ "p ow",
+ "▁gru po",
+ "▁grup o",
+ "▁ре зу",
+ "▁prof essor",
+ "▁profess or",
+ "▁H ead",
+ "▁He ad",
+ "▁ Head",
+ "но ю",
+ "min us",
+ "m inus",
+ "▁Mich el",
+ "▁Mic hel",
+ "NO T",
+ "N OT",
+ "mo r",
+ "m or",
+ "] }",
+ "wide hat",
+ "ar is",
+ "ari s",
+ "a ris",
+ "тера тура",
+ "de fn",
+ "def n",
+ "is trz",
+ "ist rz",
+ "istr z",
+ "▁t anto",
+ "▁tan to",
+ "▁tant o",
+ "▁P ow",
+ "▁Po w",
+ "▁ind icate",
+ "▁indic ate",
+ "▁W inter",
+ "▁Win ter",
+ "res hold",
+ "resh old",
+ "рі в",
+ "р ів",
+ "▁` (",
+ "▁o wner",
+ "▁own er",
+ "▁ow ner",
+ "▁ owner",
+ "▁d isp",
+ "▁di sp",
+ "▁dis p",
+ "▁к ри",
+ "▁ кри",
+ "ме т",
+ "м ет",
+ "мен т",
+ "м ент",
+ "re port",
+ "rep ort",
+ "repo rt",
+ "re quire",
+ "▁v oy",
+ "▁vo y",
+ "▁ voy",
+ "▁A P",
+ "▁ AP",
+ "▁Esp aña",
+ "▁Españ a",
+ "▁S ão",
+ "j är",
+ "No n",
+ "N on",
+ "Li brary",
+ "L ibrary",
+ "ich ten",
+ "icht en",
+ "ichte n",
+ "i chten",
+ "▁struct ures",
+ "▁structure s",
+ "▁m uy",
+ "▁mu y",
+ "ár io",
+ "á rio",
+ "▁cert ificate",
+ "▁certific ate",
+ "чно го",
+ "ч ного",
+ "▁prov ince",
+ "▁provin ce",
+ "pa ges",
+ "page s",
+ "pag es",
+ "p ages",
+ "da l",
+ "d al",
+ "▁Fre der",
+ "▁Fr eder",
+ "▁Fred er",
+ "ь е",
+ "Exec ute",
+ "▁an cient",
+ "▁anci ent",
+ "▁anc ient",
+ "▁ancien t",
+ "▁fil ms",
+ "▁film s",
+ "▁Al fred",
+ "▁Alf red",
+ "Aut o",
+ "A uto",
+ "▁a tom",
+ "▁at om",
+ "▁ atom",
+ "▁e ll",
+ "▁el l",
+ "▁ ell",
+ "▁H arr",
+ "▁Har r",
+ "▁Ha rr",
+ "й н",
+ "▁\" #",
+ "▁n acional",
+ "▁nac ional",
+ "▁neigh bor",
+ "▁neighb or",
+ "сту па",
+ "ступ а",
+ "▁w it",
+ "Po p",
+ "P op",
+ "▁G reek",
+ "▁Gre ek",
+ "▁Gree k",
+ "▁re peat",
+ "▁repe at",
+ "▁ repeat",
+ "ba d",
+ "b ad",
+ "▁S C",
+ "▁ SC",
+ "▁Date Time",
+ "▁ DateTime",
+ "ш ти",
+ "▁W H",
+ "▁ WH",
+ "▁пра ви",
+ "▁прав и",
+ "▁ прави",
+ "▁Т и",
+ "▁s aison",
+ "▁sa ison",
+ "▁H art",
+ "▁Har t",
+ "▁Ha rt",
+ "direct ory",
+ "d irectory",
+ "ua n",
+ "u an",
+ "no rm",
+ "nor m",
+ "n orm",
+ "▁Phil ipp",
+ "▁Phili pp",
+ "▁Philip p",
+ "▁su spect",
+ "▁sus pect",
+ "▁susp ect",
+ "▁an no",
+ "▁ann o",
+ "▁ anno",
+ "b c",
+ "с ла",
+ "$ (",
+ "▁be find",
+ "▁bef ind",
+ "oc s",
+ "o cs",
+ "la test",
+ "lat est",
+ "late st",
+ ";\" >",
+ "; \">",
+ "▁after wards",
+ "PU T",
+ "P UT",
+ "▁j a",
+ "▁ ja",
+ "▁H il",
+ "▁Hi l",
+ "y z",
+ "▁B our",
+ "▁Bo ur",
+ "▁Bou r",
+ "▁la id",
+ "▁Д же",
+ "▁Дж е",
+ "pi e",
+ "p ie",
+ "w atch",
+ "▁E q",
+ "▁ Eq",
+ "cont act",
+ "ib er",
+ "ibe r",
+ "i ber",
+ "check box",
+ "▁esp añ",
+ "▁espa ñ",
+ "an se",
+ "ans e",
+ "▁ш ко",
+ "▁ шко",
+ "ef f",
+ "e ff",
+ "xx x",
+ "x xx",
+ "▁G ET",
+ "▁ GET",
+ "▁l ov",
+ "▁lo v",
+ "▁ lov",
+ "it ute",
+ "itu te",
+ "itut e",
+ "ze ch",
+ "zec h",
+ "z ech",
+ "ter e",
+ "te re",
+ "t ere",
+ "▁p urs",
+ "▁pu rs",
+ "▁pur s",
+ "ke ns",
+ "ken s",
+ "k ens",
+ "ian te",
+ "i ante",
+ "▁F ree",
+ "▁Fre e",
+ "▁Fr ee",
+ "▁ Free",
+ "▁ор гани",
+ "▁орган и",
+ "kre is",
+ "▁{ :",
+ "▁ {:",
+ "sh ared",
+ "share d",
+ "sha red",
+ "▁G raph",
+ "▁Gr aph",
+ "▁Gra ph",
+ "▁ Graph",
+ "▁conne ctions",
+ "▁connection s",
+ "▁connect ions",
+ "▁D OM",
+ "▁DO M",
+ "▁ DOM",
+ "▁C art",
+ "▁Car t",
+ "▁Ca rt",
+ "▁ Cart",
+ "ss on",
+ "s son",
+ "▁H amilton",
+ "те ли",
+ "тел и",
+ "▁r estaur",
+ "▁rest aur",
+ "▁resta ur",
+ "Re sol",
+ "Res ol",
+ "Dr iver",
+ "D river",
+ "▁en f",
+ "▁ enf",
+ "ED IT",
+ "▁p rev",
+ "▁pr ev",
+ "▁pre v",
+ "▁ prev",
+ "▁i k",
+ "▁ ik",
+ "▁s ă",
+ "j ö",
+ "▁С ССР",
+ "▁col our",
+ "ch ten",
+ "cht en",
+ "chte n",
+ "▁e stad",
+ "▁est ad",
+ "▁esta d",
+ "in ois",
+ "ino is",
+ "▁con fir",
+ "▁conf ir",
+ "▁v é",
+ "▁ vé",
+ "▁C es",
+ "▁Ce s",
+ "▁N ever",
+ "▁Ne ver",
+ "▁Nev er",
+ "om er",
+ "ome r",
+ "o mer",
+ "ж да",
+ "с лу",
+ "че ния",
+ "dl l",
+ "d ll",
+ "▁y outh",
+ "▁you th",
+ "▁yo uth",
+ "em en",
+ "eme n",
+ "e men",
+ "▁stud ied",
+ "▁studi ed",
+ "▁K il",
+ "▁Ki l",
+ "ci on",
+ "cio n",
+ "c ion",
+ "▁n avig",
+ "▁nav ig",
+ "re quired",
+ "require d",
+ "orith ms",
+ "orithm s",
+ "il or",
+ "ilo r",
+ "i lor",
+ "▁Deutsch en",
+ "▁Deutsche n",
+ "▁person s",
+ "▁pers ons",
+ "▁Barcel ona",
+ "▁form ation",
+ "▁format ion",
+ "▁forma tion",
+ "▁ formation",
+ "ab ei",
+ "abe i",
+ "a bei",
+ "▁про тив",
+ "▁проти в",
+ "Eng ine",
+ "ON E",
+ "O NE",
+ "og rá",
+ "Ca p",
+ "C ap",
+ "ri r",
+ "r ir",
+ "▁g ate",
+ "▁ga te",
+ "▁gat e",
+ "▁ gate",
+ "or ation",
+ "ora tion",
+ "ma ven",
+ "m aven",
+ "▁comb ined",
+ "▁combin ed",
+ "▁combine d",
+ "▁at tr",
+ "▁att r",
+ "▁ attr",
+ "▁h ook",
+ "▁ho ok",
+ "▁ hook",
+ "▁которы й",
+ "▁ser vers",
+ "▁server s",
+ "▁serv ers",
+ "▁serve rs",
+ "uct ure",
+ "же ння",
+ "жен ня",
+ "t v",
+ "▁re q",
+ "▁r eq",
+ "▁ req",
+ "ja l",
+ "j al",
+ "▁loc ally",
+ "▁local ly",
+ "}} {\\",
+ "}}{ \\",
+ "} }{\\",
+ "B r",
+ "▁H ier",
+ "▁Hi er",
+ "мо р",
+ "м ор",
+ "▁a part",
+ "▁ap art",
+ "▁apar t",
+ "\"] ,",
+ "\" ],",
+ "▁%> %",
+ "▁z usammen",
+ "▁zus ammen",
+ "▁ident ify",
+ "▁Al tern",
+ "▁Alt ern",
+ "▁Alter n",
+ "▁б ро",
+ "▁ бро",
+ "▁ц и",
+ "▁ ци",
+ "g h",
+ "▁T en",
+ "▁Te n",
+ "R S",
+ "фор ма",
+ "▁n elle",
+ "▁ne lle",
+ "▁nel le",
+ "▁nell e",
+ "▁ nelle",
+ "▁H in",
+ "▁Hi n",
+ "ound ing",
+ "oun ding",
+ "▁re prés",
+ "▁rep rés",
+ "▁repr és",
+ "ap h",
+ "a ph",
+ "▁[ \\",
+ "▁ [\\",
+ "▁S ports",
+ "▁Sport s",
+ "ра л",
+ "р ал",
+ "▁t hre",
+ "▁th re",
+ "▁thr e",
+ "▁p rin",
+ "▁pr in",
+ "▁pri n",
+ "▁El iz",
+ "▁Eli z",
+ "▁F our",
+ "▁Fou r",
+ "▁Fo ur",
+ "▁soci ety",
+ "▁soc iety",
+ "Trans action",
+ "▁v eg",
+ "▁ve g",
+ "▁ veg",
+ "▁sch ools",
+ "▁school s",
+ "▁over all",
+ "▁t ail",
+ "▁ta il",
+ "▁ tail",
+ "üb er",
+ "ü ber",
+ "▁S ov",
+ "▁So v",
+ "▁С ер",
+ "▁Се р",
+ "▁r app",
+ "▁ra pp",
+ "▁rap p",
+ "▁tra ffic",
+ "qu estion",
+ "quest ion",
+ "ques tion",
+ "▁en viron",
+ "▁envi ron",
+ "▁ environ",
+ "ate ien",
+ "ic us",
+ "i cus",
+ "▁n arrow",
+ "▁narr ow",
+ "▁nar row",
+ "▁p ray",
+ "▁pr ay",
+ "▁pra y",
+ "▁B ou",
+ "▁Bo u",
+ "▁C lient",
+ "▁Cl ient",
+ "▁ Client",
+ "ab l",
+ "a bl",
+ "▁Aud iod",
+ "▁Audio d",
+ "▁n pm",
+ "▁np m",
+ "▁ npm",
+ "▁Col umn",
+ "▁ Column",
+ "▁G ames",
+ "▁Game s",
+ "▁Ga mes",
+ "▁Gam es",
+ "av er",
+ "ave r",
+ "a ver",
+ "ony mes",
+ "onym es",
+ "onyme s",
+ "▁По сле",
+ "n ą",
+ "▁N u",
+ "▁D ick",
+ "▁Di ck",
+ "▁Dic k",
+ "▁t ensor",
+ "▁tens or",
+ "▁ tensor",
+ "▁@ \"",
+ "▁ @\"",
+ "v é",
+ "I con",
+ "▁по да",
+ "▁под а",
+ "▁ пода",
+ "▁G on",
+ "▁Go n",
+ "/) .",
+ "/ ).",
+ "is tra",
+ "ist ra",
+ "istr a",
+ "i stra",
+ "▁Audiod ateien",
+ "De lete",
+ "Del ete",
+ "}} }",
+ "} }}",
+ "▁j ump",
+ "▁ju mp",
+ "▁О б",
+ "▁princi ple",
+ "▁princip le",
+ "▁Ét ats",
+ "ok ed",
+ "oke d",
+ "o ked",
+ "▁В ла",
+ "Inter val",
+ "▁s au",
+ "▁sa u",
+ "en code",
+ "enc ode",
+ "▁p on",
+ "▁po n",
+ "▁ pon",
+ "cat ch",
+ "c atch",
+ "▁t iem",
+ "▁ti em",
+ "▁tie m",
+ "▁G ust",
+ "▁Gu st",
+ "M C",
+ "lim its",
+ "limit s",
+ "▁ke eping",
+ "▁keep ing",
+ "▁s ongs",
+ "▁son gs",
+ "▁song s",
+ "▁ав гу",
+ "▁рай он",
+ "▁райо н",
+ "▁not ification",
+ "▁ notification",
+ "▁off ered",
+ "▁offer ed",
+ "Co r",
+ "C or",
+ "▁sh ut",
+ "error s",
+ "err ors",
+ "▁E N",
+ "▁ EN",
+ "▁lat ach",
+ "▁sel bst",
+ "▁check box",
+ "▁ checkbox",
+ "▁c ool",
+ "▁co ol",
+ "▁f actory",
+ "▁fact ory",
+ "▁factor y",
+ "▁ factory",
+ "▁pa id",
+ "dim ensional",
+ "ni ej",
+ "nie j",
+ "n iej",
+ "pt on",
+ "pto n",
+ "p ton",
+ "▁p in",
+ "▁pi n",
+ "▁ pin",
+ "ak ed",
+ "ake d",
+ "a ked",
+ "▁re li",
+ "▁r eli",
+ "▁rel i",
+ "▁T aylor",
+ "▁S omething",
+ "▁Some thing",
+ "▁Som ething",
+ "▁ Something",
+ "im um",
+ "▁V in",
+ "▁Vi n",
+ "▁iter ation",
+ "Fin d",
+ "Fi nd",
+ "F ind",
+ "ко ви",
+ "ков и",
+ "к ови",
+ "▁bo ys",
+ "▁boy s",
+ "▁Sim ple",
+ "▁ Simple",
+ "▁C rist",
+ "▁Cr ist",
+ "▁Cris t",
+ "▁W as",
+ "▁Wa s",
+ "ân d",
+ "â nd",
+ "▁V a",
+ "▁т ра",
+ "▁ тра",
+ "▁dest ination",
+ "▁destin ation",
+ "▁ destination",
+ "li mp",
+ "lim p",
+ "l imp",
+ "▁K at",
+ "▁Ka t",
+ "wor th",
+ "wort h",
+ "w orth",
+ "▁K or",
+ "▁Ko r",
+ "i ção",
+ "= `",
+ "▁fair ly",
+ "fall s",
+ "fal ls",
+ "f alls",
+ "▁re ject",
+ "▁d ream",
+ "▁dre am",
+ "be ll",
+ "bel l",
+ "b ell",
+ "▁t oute",
+ "▁to ute",
+ "▁tout e",
+ "▁tou te",
+ "▁$ \\{",
+ "▁$\\ {",
+ "▁st one",
+ "▁sto ne",
+ "▁ stone",
+ "▁prote ct",
+ "▁prot ect",
+ "▁ex cell",
+ "▁exc ell",
+ "▁excel l",
+ "▁Me xico",
+ "▁Mex ico",
+ "▁d ash",
+ "▁da sh",
+ "▁das h",
+ "▁ dash",
+ "▁f ault",
+ "▁fa ult",
+ "▁ fault",
+ "p matrix",
+ "al ler",
+ "all er",
+ "alle r",
+ "▁guer re",
+ "or igin",
+ "ori gin",
+ "orig in",
+ "hi bernate",
+ "í lia",
+ "▁Reg ister",
+ "▁ Register",
+ "un to",
+ "unt o",
+ "▁B at",
+ "▁Ba t",
+ "▁b ow",
+ "▁bo w",
+ "▁ bow",
+ "сь ких",
+ "ськ их",
+ "et à",
+ "▁L uis",
+ "▁Lu is",
+ "▁f ou",
+ "▁fo u",
+ "▁Cam bridge",
+ "▁Camb ridge",
+ "▁o tt",
+ "▁ot t",
+ "▁ ott",
+ "su p",
+ "s up",
+ "re as",
+ "rea s",
+ "▁point ers",
+ "▁pointer s",
+ "▁Bo ard",
+ "▁ Board",
+ "▁р и",
+ "▁ ри",
+ "▁d riv",
+ "▁dr iv",
+ "▁dri v",
+ "ни н",
+ "н ин",
+ "▁C irc",
+ "▁Ci rc",
+ "▁Cir c",
+ "▁ Circ",
+ "▁t hou",
+ "▁th ou",
+ "Di v",
+ "D iv",
+ "sp ark",
+ "s park",
+ "la ment",
+ "lam ent",
+ "l ament",
+ "▁V AL",
+ "▁ VAL",
+ "Se nd",
+ "S end",
+ "▁Ir ish",
+ "o y",
+ "▁T u",
+ "▁ Tu",
+ "▁t rivial",
+ "Form s",
+ "For ms",
+ "▁as í",
+ "▁Im per",
+ "▁Imp er",
+ "▁sign ature",
+ "un os",
+ "uno s",
+ "u nos",
+ "▁N eg",
+ "▁Ne g",
+ "▁can cel",
+ "▁ cancel",
+ "▁Hein rich",
+ "ee d",
+ "e ed",
+ "Ill ustration",
+ "▁s ulla",
+ "▁su lla",
+ "▁sul la",
+ "▁sull a",
+ "▁qu arter",
+ "▁quart er",
+ "▁quar ter",
+ "as z",
+ "a sz",
+ "▁b log",
+ "▁bl og",
+ "▁blo g",
+ "▁ blog",
+ "fi ca",
+ "fic a",
+ "f ica",
+ "wo n",
+ "w on",
+ "qu et",
+ "que t",
+ "q uet",
+ "]) )",
+ "] ))",
+ "▁gener ation",
+ "▁c aught",
+ "▁ caught",
+ "▁l ands",
+ "▁land s",
+ "▁lan ds",
+ "▁ lands",
+ "▁King dom",
+ "schaft en",
+ "ro ns",
+ "ron s",
+ "r ons",
+ "ann els",
+ "annel s",
+ "anne ls",
+ "▁Spe cial",
+ "▁Spec ial",
+ "▁ Special",
+ "t utorial",
+ "ti p",
+ "t ip",
+ "▁\" \",",
+ "▁\"\" ,",
+ "▁Az ure",
+ "▁ Azure",
+ "▁b ounded",
+ "▁bound ed",
+ "▁ bounded",
+ "S m",
+ "ta r",
+ "t ar",
+ "ве н",
+ "в ен",
+ "▁з ем",
+ "▁зе м",
+ "▁ зем",
+ "▁not ation",
+ "▁ notation",
+ "▁ap ache",
+ "▁ apache",
+ "▁g az",
+ "▁ga z",
+ "ier no",
+ "i erno",
+ "an gen",
+ "ang en",
+ "ange n",
+ "pect ive",
+ "▁elect ric",
+ "▁s emi",
+ "▁se mi",
+ "▁sem i",
+ "MA X",
+ "M AX",
+ "ed erb",
+ "eder b",
+ "ede rb",
+ "object s",
+ "▁dif ferences",
+ "▁differ ences",
+ "▁difference s",
+ "is ted",
+ "ist ed",
+ "iste d",
+ "i sted",
+ "hr ef",
+ "hre f",
+ "h ref",
+ "ic ip",
+ "ici p",
+ "i cip",
+ "▁num py",
+ "▁ numpy",
+ "▁ф утбо",
+ "lo ader",
+ "load er",
+ "▁d ich",
+ "▁di ch",
+ "▁dic h",
+ "љ у",
+ "▁D é",
+ "H z",
+ "▁P aram",
+ "▁Par am",
+ "▁Pa ram",
+ "▁Para m",
+ "▁ Param",
+ "document ation",
+ "ir craft",
+ "irc raft",
+ "E M",
+ "▁inst itution",
+ "▁instit ution",
+ "com pat",
+ "comp at",
+ "▁а ль",
+ "▁ал ь",
+ "▁ аль",
+ "сла в",
+ "с лав",
+ "▁N et",
+ "▁Ne t",
+ "▁ Net",
+ "ци ональ",
+ "цион аль",
+ "циона ль",
+ "▁broad cast",
+ "date time",
+ "dat etime",
+ "as ync",
+ "asy nc",
+ "a sync",
+ "vr e",
+ "v re",
+ "me an",
+ "▁C hem",
+ "▁Ch em",
+ "▁Che m",
+ "▁est imate",
+ "▁estim ate",
+ "ic ana",
+ "ica na",
+ "ican a",
+ "▁g rep",
+ "▁gr ep",
+ "▁gre p",
+ "▁ grep",
+ "te k",
+ "t ek",
+ "ä m",
+ "or ig",
+ "ori g",
+ "o rig",
+ "▁Vict or",
+ "▁Vi ctor",
+ "▁Vic tor",
+ "ut enant",
+ "ute nant",
+ "uten ant",
+ "an ga",
+ "ang a",
+ "pi n",
+ "p in",
+ "▁ver tex",
+ "▁vert ex",
+ "▁verte x",
+ "▁CHAP TER",
+ "ci ty",
+ "cit y",
+ "c ity",
+ "ug by",
+ "gr een",
+ "gre en",
+ "g reen",
+ "▁K er",
+ "▁Ke r",
+ "▁dif fér",
+ "▁diff ér",
+ "▁necess arily",
+ "D C",
+ "Line ar",
+ "Lin ear",
+ "Li near",
+ "al em",
+ "ale m",
+ "a lem",
+ "▁L ater",
+ "▁La ter",
+ "▁Lat er",
+ "▁Late r",
+ "▁m eta",
+ "▁me ta",
+ "▁met a",
+ "▁ meta",
+ "je m",
+ "j em",
+ "ra gen",
+ "rag en",
+ "rage n",
+ "r agen",
+ "Ma y",
+ "M ay",
+ "▁Mitg lied",
+ "▁s orted",
+ "▁sort ed",
+ "▁sor ted",
+ "▁sorte d",
+ "▁ sorted",
+ "us sen",
+ "uss en",
+ "▁sp oke",
+ "▁spo ke",
+ "▁dis abled",
+ "▁disable d",
+ "▁ disabled",
+ "▁accompl ish",
+ "▁accomp lish",
+ "▁Russ ia",
+ "th ere",
+ "ther e",
+ "the re",
+ "t here",
+ "ee s",
+ "e es",
+ "▁h all",
+ "▁ha ll",
+ "▁hal l",
+ "▁ hall",
+ "▁met ric",
+ "▁ metric",
+ "att ribute",
+ "то го",
+ "т ого",
+ "ab out",
+ "▁L am",
+ "▁La m",
+ "ch annel",
+ "chan nel",
+ "▁e pisode",
+ "▁epis ode",
+ "▁$ ('.",
+ "▁$( '.",
+ "▁$(' .",
+ "▁ ought",
+ "▁E ste",
+ "▁Est e",
+ "▁Es te",
+ "Object s",
+ "▁valid ate",
+ "▁ validate",
+ "▁r im",
+ "▁ri m",
+ "▁ rim",
+ "▁numer ous",
+ "▁numero us",
+ "▁J avascript",
+ "▁Java script",
+ "▁G L",
+ "▁ GL",
+ "▁It aly",
+ "▁Ital y",
+ "ederb örd",
+ "on ato",
+ "ona to",
+ "bo oks",
+ "book s",
+ "st one",
+ "ston e",
+ "sto ne",
+ "х у",
+ "▁j el",
+ "▁je l",
+ "▁ jel",
+ "ir i",
+ "i ri",
+ "▁A SP",
+ "▁AS P",
+ "G A",
+ "▁st ata",
+ "▁stat a",
+ "▁sta ta",
+ "▁b az",
+ "▁ba z",
+ "▁ baz",
+ "Da y",
+ "D ay",
+ "th m",
+ "t hm",
+ "d h",
+ "▁F iles",
+ "▁Fil es",
+ "▁File s",
+ "▁ Files",
+ "Android Runtime",
+ "▁che cks",
+ "▁check s",
+ "k r",
+ "▁v enne",
+ "▁ven ne",
+ "S L",
+ "av ia",
+ "avi a",
+ "a via",
+ "ka zy",
+ "kaz y",
+ "k azy",
+ "▁Th ree",
+ "▁ Three",
+ "Ad min",
+ "▁col lege",
+ "▁coll ege",
+ "▁colleg e",
+ "▁colle ge",
+ "G lobal",
+ "ti on",
+ "t ion",
+ "▁cur ious",
+ "sh ort",
+ "▁b ass",
+ "▁bas s",
+ "▁ba ss",
+ "де ла",
+ "▁де я",
+ "Sch ema",
+ "' \\",
+ "di ff",
+ "d iff",
+ "▁C A",
+ "▁ CA",
+ "▁Cor por",
+ "▁oper ators",
+ "▁operator s",
+ "om rå",
+ "▁ed ges",
+ "▁edge s",
+ "); `",
+ ") ;`",
+ "in ds",
+ "ind s",
+ "▁g ing",
+ "▁gi ng",
+ "▁ ging",
+ "& &",
+ "}- \\",
+ "} -\\",
+ "ra no",
+ "ran o",
+ "r ano",
+ "▁s ão",
+ "▁ad ds",
+ "▁add s",
+ "el or",
+ "elo r",
+ "e lor",
+ "▁un signed",
+ "▁uns igned",
+ "▁ unsigned",
+ "▁п р",
+ "▁ пр",
+ "▁Con fig",
+ "▁Conf ig",
+ "▁ Config",
+ "▁E sc",
+ "▁Es c",
+ "▁ch ose",
+ "▁cho se",
+ "▁pie ces",
+ "▁piece s",
+ "▁reg ions",
+ "▁region s",
+ "Es t",
+ "E st",
+ "▁B attle",
+ "▁Batt le",
+ "▁f oc",
+ "▁fo c",
+ "▁L ight",
+ "▁Lig ht",
+ "▁ Light",
+ "pad ding",
+ "p adding",
+ "ab en",
+ "abe n",
+ "a ben",
+ "▁e urop",
+ "▁eu rop",
+ "▁euro p",
+ "il lon",
+ "ill on",
+ "illo n",
+ "▁е сть",
+ "▁b ord",
+ "▁bo rd",
+ "▁bor d",
+ "▁о тно",
+ "▁от но",
+ "▁H ong",
+ "▁Hon g",
+ "▁Ho ng",
+ "▁v ul",
+ "▁vu l",
+ "pl ugins",
+ "plugin s",
+ "▁' <",
+ "▁k ur",
+ "▁ kur",
+ "reg ion",
+ "▁Re pub",
+ "▁Rep ub",
+ "ic her",
+ "ich er",
+ "iche r",
+ "i cher",
+ "}_ \\",
+ "} _\\",
+ "▁me dal",
+ "▁med al",
+ "▁More over",
+ "B I",
+ "A v",
+ "ut er",
+ "ute r",
+ "u ter",
+ "▁s can",
+ "▁sc an",
+ "▁ scan",
+ "▁M unicip",
+ "▁Mun icip",
+ "▁contr ast",
+ "▁contra st",
+ "▁I g",
+ "▁ Ig",
+ "▁го род",
+ "▁горо д",
+ "▁гор од",
+ "▁ город",
+ "rel ated",
+ "al ing",
+ "ali ng",
+ "alin g",
+ "a ling",
+ "▁м ат",
+ "▁ма т",
+ "▁ мат",
+ "ün st",
+ "▁Ch ris",
+ "▁Chr is",
+ "w y",
+ "▁Act ually",
+ "▁Univers idad",
+ "Event Listener",
+ "▁tempor ada",
+ "▁ass ignment",
+ "▁assign ment",
+ "▁M ike",
+ "▁Mi ke",
+ "▁Mik e",
+ "▁w ährend",
+ "▁ś wi",
+ "▁św i",
+ "▁с ред",
+ "▁сре д",
+ "ка де",
+ "▁calcul ated",
+ "▁calculate d",
+ "▁calc ulated",
+ "▁el ler",
+ "▁elle r",
+ "▁ell er",
+ "▁ eller",
+ "▁A sh",
+ "▁As h",
+ "ri el",
+ "rie l",
+ "r iel",
+ "▁hard ware",
+ "▁int ens",
+ "▁inte ns",
+ "▁inten s",
+ "(' .",
+ "( '.",
+ "il li",
+ "ill i",
+ "ag on",
+ "ago n",
+ "a gon",
+ "▁G y",
+ "▁he ute",
+ "▁heut e",
+ "▁s le",
+ "▁sl e",
+ "▁liter ature",
+ "se m",
+ "s em",
+ "man ager",
+ "mana ger",
+ "▁Gr ande",
+ "▁Gra nde",
+ "▁Grand e",
+ "▁Gran de",
+ "▁m ixed",
+ "▁mix ed",
+ "▁В ер",
+ "▁Ве р",
+ "í cí",
+ "▁s oit",
+ "▁so it",
+ "▁wel come",
+ "че ние",
+ "▁Univers ität",
+ "▁bu ilder",
+ "▁build er",
+ "▁ builder",
+ "sim ple",
+ "simp le",
+ "ic ode",
+ "ico de",
+ "i code",
+ "ř e",
+ "in dent",
+ "ind ent",
+ "inden t",
+ "inde nt",
+ "op o",
+ "o po",
+ "▁ad vanced",
+ "▁adv anced",
+ "▁advance d",
+ "tem per",
+ "temp er",
+ "ed ge",
+ "▁dat etime",
+ "▁date time",
+ "▁ datetime",
+ "▁d onc",
+ "▁do nc",
+ "▁don c",
+ "ла ння",
+ "лан ня",
+ "▁v erd",
+ "▁ver d",
+ "▁ve rd",
+ "д но",
+ "it os",
+ "ito s",
+ "▁he at",
+ "vi sible",
+ "vis ible",
+ "me l",
+ "m el",
+ "▁Giov anni",
+ "▁var iety",
+ "▁vari ety",
+ "▁r outer",
+ "▁ro uter",
+ "▁route r",
+ "▁rout er",
+ "▁rou ter",
+ "▁ router",
+ "Vec tor",
+ "V ector",
+ "▁W alk",
+ "▁Wal k",
+ "▁ob viously",
+ "▁obvious ly",
+ "he in",
+ "h ein",
+ "Fi n",
+ "F in",
+ "ITable View",
+ "Y ear",
+ "▁E conom",
+ "▁vel ocity",
+ "▁veloc ity",
+ "▁C ivil",
+ "▁Ci vil",
+ "▁ ј",
+ "al ert",
+ "ale rt",
+ "aler t",
+ "Ident ifier",
+ "èn cia",
+ "▁normal ly",
+ "▁norm ally",
+ "▁E gypt",
+ "▁Egy pt",
+ "▁c tx",
+ "▁ ctx",
+ "▁Ver ein",
+ "▁Vere in",
+ "▁H u",
+ "ult ure",
+ "ultur e",
+ "ни те",
+ "l é",
+ "▁W ien",
+ "▁Wi en",
+ "▁Wie n",
+ "▁P rz",
+ "▁Pr z",
+ "By te",
+ "▁n ah",
+ "▁na h",
+ "▁ nah",
+ "is ms",
+ "ism s",
+ "▁Pub lish",
+ "▁He rz",
+ "▁Her z",
+ "ic ul",
+ "i cul",
+ "pis ode",
+ "ч і",
+ "▁die sem",
+ "▁dies em",
+ "▁diese m",
+ "k ö",
+ "Vis ible",
+ "▁r ig",
+ "▁ri g",
+ "▁ rig",
+ "`) .",
+ "` ).",
+ "Par se",
+ "P arse",
+ "▁Jac ques",
+ "N I",
+ "▁g lass",
+ "▁gl ass",
+ "▁gla ss",
+ "▁ glass",
+ "-- -+",
+ "--- +",
+ "- --+",
+ "▁initial ly",
+ "▁initi ally",
+ "▁k r",
+ "▁ kr",
+ "CC N",
+ "C CN",
+ "pl ays",
+ "play s",
+ "pla ys",
+ "▁s igu",
+ "▁si gu",
+ "▁sig u",
+ "F older",
+ "st orage",
+ "sto rage",
+ "stor age",
+ "▁\\ |",
+ "▁ \\|",
+ "iv os",
+ "ivo s",
+ "i vos",
+ "ск ую",
+ "ску ю",
+ "▁M oh",
+ "▁Mo h",
+ "▁Comm ittee",
+ "▁K im",
+ "▁Ki m",
+ "e u",
+ "те м",
+ "т ем",
+ "▁orig inale",
+ "▁original e",
+ "▁origin ale",
+ "ir s",
+ "i rs",
+ "▁R eb",
+ "▁Re b",
+ "it ut",
+ "itu t",
+ "n l",
+ "▁P ier",
+ "▁Pi er",
+ "▁Pie r",
+ "▁] ;",
+ "▁ ];",
+ "▁F al",
+ "▁Fa l",
+ "▁\" \";",
+ "▁\"\" ;",
+ "mv c",
+ "m vc",
+ "▁fe male",
+ "▁fem ale",
+ "▁b ridge",
+ "▁br idge",
+ "▁brid ge",
+ "▁ bridge",
+ "▁t ít",
+ "kt r",
+ "k tr",
+ "> )",
+ "▁se at",
+ "▁sea t",
+ "▁v ess",
+ "▁ve ss",
+ "▁ves s",
+ "▁U SB",
+ "▁US B",
+ "▁Art icles",
+ "▁Article s",
+ "▁De scription",
+ "▁Des cription",
+ "▁Descri ption",
+ "▁ Description",
+ "▁o c",
+ "▁ oc",
+ "▁h ouses",
+ "▁house s",
+ "▁ho uses",
+ "▁hous es",
+ "▁П ет",
+ "▁Пе т",
+ "lo n",
+ "l on",
+ "Not ification",
+ "▁press ure",
+ "▁ку ль",
+ "▁ куль",
+ "ig ned",
+ "ign ed",
+ "igne d",
+ "▁relig ious",
+ "fa n",
+ "f an",
+ "ig lia",
+ "igli a",
+ "▁class ification",
+ "▁classific ation",
+ "og ether",
+ "oge ther",
+ "▁S DK",
+ "▁SD K",
+ "▁ SDK",
+ "▁H uman",
+ "▁Hu man",
+ "▁Hum an",
+ "▁com mission",
+ "▁comm ission",
+ "▁О р",
+ "▁an tes",
+ "▁ant es",
+ "▁ante s",
+ "▁ antes",
+ "D T",
+ "èt e",
+ "è te",
+ "pr és",
+ "p rés",
+ "/ \"",
+ "▁( «",
+ "▁h ö",
+ "▁ hö",
+ "▁ча с",
+ "▁ час",
+ "▁j ak",
+ "▁ja k",
+ "▁ jak",
+ "ie nen",
+ "ien en",
+ "iene n",
+ "i enen",
+ "ug g",
+ "u gg",
+ "W A",
+ "▁place holder",
+ "▁ placeholder",
+ "Wil l",
+ "W ill",
+ ", ,",
+ "▁K am",
+ "▁Ka m",
+ "▁w en",
+ "▁we n",
+ "▁ wen",
+ "▁Sch ul",
+ "ți e",
+ "ț ie",
+ "▁a ud",
+ "▁au d",
+ "▁ aud",
+ "▁s ue",
+ "▁su e",
+ "▁re ferred",
+ "▁refer red",
+ "ва т",
+ "в ат",
+ "▁P ara",
+ "▁Par a",
+ "▁Pa ra",
+ "▁b la",
+ "▁bl a",
+ "▁ bla",
+ "UE S",
+ "U ES",
+ "▁stat ist",
+ "▁stati st",
+ "▁т у",
+ "▁ ту",
+ "▁Wars za",
+ "gu e",
+ "g ue",
+ "▁I de",
+ "▁Id e",
+ "math scr",
+ "▁l ieu",
+ "▁li eu",
+ "▁lie u",
+ "▁b od",
+ "▁bo d",
+ "▁r us",
+ "▁ru s",
+ "▁ rus",
+ "▁bo at",
+ "xs pace",
+ "x space",
+ "▁mod al",
+ "▁mo dal",
+ "▁ modal",
+ "ле к",
+ "л ек",
+ "to pic",
+ "top ic",
+ "ma ny",
+ "man y",
+ "m any",
+ "sk ý",
+ "▁organ ization",
+ "▁organiz ation",
+ "▁г ене",
+ "▁ге не",
+ "▁Wil son",
+ "▁com fort",
+ "ib il",
+ "i bil",
+ ": -",
+ "▁an imal",
+ "▁anim al",
+ "▁ani mal",
+ "Re port",
+ "Rep ort",
+ "ка ми",
+ "кам и",
+ "jo n",
+ "j on",
+ "▁k er",
+ "▁ke r",
+ "▁ ker",
+ "▁к ни",
+ "moz illa",
+ "Pr ice",
+ "P rice",
+ "ant in",
+ "anti n",
+ "em ento",
+ "ement o",
+ "emen to",
+ "ma y",
+ "m ay",
+ "▁l ung",
+ "▁lu ng",
+ "▁lun g",
+ "▁ lung",
+ "▁b low",
+ "▁bl ow",
+ "▁blo w",
+ "ede ut",
+ "▁type d",
+ "▁typ ed",
+ "▁ty ped",
+ "▁dec ember",
+ "▁. ...",
+ "▁... .",
+ "▁.. ..",
+ "▁ ....",
+ "li ance",
+ "l iance",
+ "▁v iel",
+ "▁vi el",
+ "▁vie l",
+ "▁Ф и",
+ "pr esa",
+ "pre sa",
+ "pres a",
+ "▁ос іб",
+ "▁N am",
+ "▁Na m",
+ "▁G ren",
+ "▁Gr en",
+ "▁Gre n",
+ "си лання",
+ "VI D",
+ "V ID",
+ "st re",
+ "str e",
+ "s tre",
+ "we is",
+ "wei s",
+ "▁prote ction",
+ "▁protect ion",
+ "▁prot ection",
+ "ta ient",
+ "t aient",
+ "▁offic ers",
+ "▁office rs",
+ "▁officer s",
+ "т но",
+ "▁B rig",
+ "▁Br ig",
+ "▁int ellig",
+ "▁intel lig",
+ "я х",
+ "IT H",
+ "I TH",
+ "▁separ ated",
+ "▁separate d",
+ "▁L CCN",
+ "ní m",
+ "n ím",
+ "cl ock",
+ "clo ck",
+ "c lock",
+ "▁ap are",
+ "▁apar e",
+ "яв и",
+ "я ви",
+ "▁Eliz abeth",
+ "▁W ater",
+ "▁Wat er",
+ "▁Wa ter",
+ "geb iet",
+ "▁con vent",
+ "▁conv ent",
+ "▁conven t",
+ "fu rt",
+ "fur t",
+ "f urt",
+ "▁be iden",
+ "▁bei den",
+ "▁beide n",
+ "ba sh",
+ "bas h",
+ "b ash",
+ "▁че рез",
+ "▁чер ез",
+ "▁u b",
+ "▁ ub",
+ "▁Stat ist",
+ "▁Stati st",
+ "▁lim its",
+ "▁limit s",
+ "▁ limits",
+ "V ol",
+ "ct x",
+ "c tx",
+ "▁но в",
+ "▁н ов",
+ "▁ нов",
+ "gu ide",
+ "gui de",
+ "mi c",
+ "m ic",
+ "ie sa",
+ "ies a",
+ "i esa",
+ "▁h uvud",
+ "R T",
+ "Fi g",
+ "F ig",
+ "▁l ect",
+ "▁le ct",
+ "▁ lect",
+ "con n",
+ "co nn",
+ "c onn",
+ "im it",
+ "imi t",
+ "i mit",
+ "га р",
+ "г ар",
+ "▁b ajo",
+ "▁ba jo",
+ "scri be",
+ "scr ibe",
+ "s cribe",
+ "re gex",
+ "reg ex",
+ "▁C ass",
+ "▁Cas s",
+ "▁Ca ss",
+ "▁pro pag",
+ "▁prop ag",
+ "' $",
+ "▁prof es",
+ "un ique",
+ "uni que",
+ "▁S ql",
+ "▁ Sql",
+ "un ion",
+ "uni on",
+ "ri os",
+ "rio s",
+ "r ios",
+ "pi p",
+ "p ip",
+ "-- +",
+ "- -+",
+ "ka dem",
+ "k adem",
+ "column s",
+ "▁v ary",
+ "▁var y",
+ "▁va ry",
+ "▁bere its",
+ "▁d oi",
+ "▁do i",
+ "▁Com mon",
+ "▁Comm on",
+ "▁ Common",
+ "▁Ro bin",
+ "▁Rob in",
+ "▁ ×",
+ "▁s ei",
+ "▁se i",
+ "▁s yst",
+ "▁sy st",
+ "▁sys t",
+ "▁v ä",
+ "▁ vä",
+ "▁De fault",
+ "▁Def ault",
+ "▁ Default",
+ "▁t ym",
+ "▁ty m",
+ "pe l",
+ "p el",
+ "▁bel ieved",
+ "▁believe d",
+ "▁pro vider",
+ "▁prov ider",
+ "▁provide r",
+ "▁ provider",
+ "▁min imal",
+ "▁minim al",
+ "▁mini mal",
+ "та ли",
+ "тал и",
+ "т али",
+ "ain es",
+ "ai nes",
+ "aine s",
+ "a ines",
+ "K it",
+ "iz io",
+ "izi o",
+ "is sen",
+ "iss en",
+ "isse n",
+ "pr essed",
+ "press ed",
+ "pres sed",
+ "▁s tag",
+ "▁st ag",
+ "▁sta g",
+ "▁ stag",
+ "▁u int",
+ "▁ui nt",
+ "▁ uint",
+ "ko r",
+ "k or",
+ "▁ра спо",
+ "▁рас по",
+ "▁in herit",
+ "▁inher it",
+ "▁comp iled",
+ "▁compile d",
+ "▁f ebru",
+ "▁fe bru",
+ "▁feb ru",
+ "▁t mp",
+ "▁tm p",
+ "▁ tmp",
+ "work s",
+ "wor ks",
+ "ч на",
+ "draw able",
+ "▁N av",
+ "▁Na v",
+ "▁ Nav",
+ "▁though ts",
+ "▁thought s",
+ "ro ute",
+ "rout e",
+ "rou te",
+ "r oute",
+ "▁con cert",
+ "▁conc ert",
+ "▁conce rt",
+ "▁option al",
+ "▁opt ional",
+ "▁ optional",
+ "▁b ras",
+ "▁br as",
+ "▁bra s",
+ "▁ bras",
+ "▁prov iding",
+ "со м",
+ "с ом",
+ "id x",
+ "i dx",
+ "emp lo",
+ "empl o",
+ "▁ко ли",
+ "▁ коли",
+ "▁B ere",
+ "▁Be re",
+ "▁Ber e",
+ "▁E ls",
+ "▁El s",
+ "ре мен",
+ "рем ен",
+ "▁де ка",
+ "co ut",
+ "cou t",
+ "c out",
+ "la yer",
+ "lay er",
+ "l ayer",
+ "▁g lob",
+ "▁gl ob",
+ "▁glo b",
+ "▁ glob",
+ "fore ach",
+ "for each",
+ "▁E ducation",
+ "▁Edu cation",
+ "P O",
+ "▁im prov",
+ "▁imp rov",
+ "▁impro v",
+ "▁impr ov",
+ "▁cl ients",
+ "▁client s",
+ "▁cli ents",
+ "gr oups",
+ "group s",
+ "gro ups",
+ "▁k ont",
+ "▁kon t",
+ "▁ko nt",
+ "De l",
+ "D el",
+ "re tt",
+ "ret t",
+ "r ett",
+ "▁s up",
+ "▁su p",
+ "▁ sup",
+ "▁m og",
+ "▁mo g",
+ "ta n",
+ "t an",
+ "▁com pl",
+ "▁comp l",
+ "ir ty",
+ "irt y",
+ "▁nouve au",
+ "os z",
+ "o sz",
+ "▁N avy",
+ "▁Na vy",
+ "▁Nav y",
+ "ber e",
+ "be re",
+ "b ere",
+ "ma sk",
+ "mas k",
+ "m ask",
+ "ov é",
+ "o vé",
+ "zi l",
+ "z il",
+ "PE R",
+ "P ER",
+ "▁pobla ción",
+ "▁població n",
+ "▁d etailed",
+ "▁detail ed",
+ "ле т",
+ "л ет",
+ "▁famil ies",
+ "▁familie s",
+ "ab et",
+ "abe t",
+ "a bet",
+ "е вич",
+ "änd er",
+ "än der",
+ "ände r",
+ "ä nder",
+ "▁å r",
+ "▁ år",
+ "▁p endant",
+ "▁b il",
+ "▁bi l",
+ "▁ bil",
+ "▁h int",
+ "▁hi nt",
+ "▁hin t",
+ "ode n",
+ "od en",
+ "o den",
+ "▁exp ansion",
+ "▁p ont",
+ "▁po nt",
+ "▁pon t",
+ "▁ pont",
+ "as ant",
+ "asa nt",
+ "▁K ind",
+ "▁Ki nd",
+ "▁Kin d",
+ "▁ Kind",
+ "ij i",
+ "i ji",
+ "▁A uth",
+ "▁Aut h",
+ "▁Au th",
+ "▁ Auth",
+ "laim ed",
+ "ref lect",
+ "] =",
+ "by tes",
+ "byte s",
+ "ho ver",
+ "hov er",
+ "h over",
+ "▁ц ер",
+ "▁це р",
+ "▁ цер",
+ "grad le",
+ "Ar ch",
+ "ap est",
+ "ape st",
+ "apes t",
+ "ás a",
+ "á sa",
+ "Car d",
+ "Ca rd",
+ "C ard",
+ "▁tempor ary",
+ "▁départ ement",
+ "class es",
+ "жи ва",
+ "▁х удо",
+ "▁m ole",
+ "▁mo le",
+ "▁mol e",
+ "R Y",
+ "L P",
+ "▁p ec",
+ "▁pe c",
+ "▁ pec",
+ "rodu ction",
+ "▁Gu ard",
+ "▁Par liament",
+ "▁inst anti",
+ "▁instant i",
+ "▁not amment",
+ "▁D oug",
+ "▁Do ug",
+ "▁Dou g",
+ "▁Mar sh",
+ "▁Mars h",
+ ". ~",
+ "▁\\ \"",
+ "▁ \\\"",
+ "▁t hé",
+ "▁th é",
+ "▁li bre",
+ "▁lib re",
+ "do es",
+ "▁dé but",
+ "▁U nit",
+ "▁Un it",
+ "▁ Unit",
+ "▁с ту",
+ "▁ст у",
+ "▁ сту",
+ "▁le ague",
+ "▁qu ale",
+ "▁q uale",
+ "▁qual e",
+ "▁состав ля",
+ "▁соста вля",
+ "Se curity",
+ "Sec urity",
+ "▁appar ently",
+ "▁apparent ly",
+ "▁tro ops",
+ "ic ano",
+ "ica no",
+ "ican o",
+ "i cano",
+ "▁M B",
+ "▁ MB",
+ "en ze",
+ "enz e",
+ "lo ading",
+ "load ing",
+ "▁dist ributed",
+ "▁distribu ted",
+ "▁distrib uted",
+ "write r",
+ "writ er",
+ "wr iter",
+ "w riter",
+ "res ources",
+ "resource s",
+ "h ö",
+ "ut ils",
+ "util s",
+ "uti ls",
+ "▁prep ared",
+ "▁prepar ed",
+ "▁prepare d",
+ "ci er",
+ "cie r",
+ "c ier",
+ "op ol",
+ "opo l",
+ "o pol",
+ "▁län kar",
+ "he s",
+ "h es",
+ "н ва",
+ "▁op ens",
+ "▁open s",
+ "▁ opens",
+ "ag og",
+ "ago g",
+ "inter face",
+ "▁F und",
+ "▁Fu nd",
+ "▁Fun d",
+ "▁pent ru",
+ "ní ch",
+ "n ích",
+ "▁config ured",
+ "▁configure d",
+ "▁configur ed",
+ "▁Web site",
+ "▁list ener",
+ "▁listen er",
+ "▁liste ner",
+ "▁ listener",
+ "iv el",
+ "ive l",
+ "i vel",
+ "n ę",
+ "min a",
+ "mi na",
+ "m ina",
+ "▁in vest",
+ "▁inv est",
+ "▁inve st",
+ "▁м іс",
+ "▁мі с",
+ "▁d av",
+ "▁da v",
+ "▁p atch",
+ "▁pat ch",
+ "▁ patch",
+ "pi eler",
+ "piel er",
+ "pie ler",
+ "▁Ext erna",
+ "▁Extern a",
+ "t f",
+ "▁e red",
+ "▁er ed",
+ "▁ere d",
+ "▁ ered",
+ "▁Ass embly",
+ "▁ Assembly",
+ "▁s out",
+ "▁so ut",
+ "▁sou t",
+ "▁v erk",
+ "▁ver k",
+ "▁ verk",
+ "me rs",
+ "mer s",
+ "m ers",
+ "t oggle",
+ "▁up dating",
+ "▁upd ating",
+ "▁K ent",
+ "▁Ke nt",
+ "▁Ken t",
+ "ec a",
+ "e ca",
+ "FA ULT",
+ "▁tit re",
+ "▁ti tre",
+ "▁K enn",
+ "▁Ke nn",
+ "▁Ken n",
+ "▁Ми ха",
+ "ст ор",
+ "сто р",
+ "с тор",
+ "▁p ode",
+ "▁po de",
+ "▁pod e",
+ "▁S eb",
+ "▁Se b",
+ "це в",
+ "ц ев",
+ "E Y",
+ "▁sil ver",
+ "▁cap acity",
+ "▁capac ity",
+ "▁comple tion",
+ "▁complet ion",
+ "▁Pe dro",
+ "▁Ped ro",
+ "fe l",
+ "f el",
+ "va no",
+ "van o",
+ "v ano",
+ "ze ug",
+ "▁in terior",
+ "▁inter ior",
+ "▁inte rior",
+ "▁Res ponse",
+ "▁ Response",
+ "éd ia",
+ "é dia",
+ "▁World Cat",
+ "▁c ă",
+ "qu el",
+ "que l",
+ "q uel",
+ "So l",
+ "S ol",
+ "іс ля",
+ "▁D omin",
+ "▁Do min",
+ "▁Dom in",
+ "▁c um",
+ "▁cu m",
+ "ce p",
+ "c ep",
+ "▁M use",
+ "▁Mus e",
+ "▁Mu se",
+ "▁M aría",
+ "▁Mar ía",
+ "▁Ma ría",
+ "▁function al",
+ "▁ad apter",
+ "▁adapt er",
+ "▁ adapter",
+ "config uration",
+ "▁t ipo",
+ "▁tip o",
+ "▁ti po",
+ "▁B ry",
+ "▁Br y",
+ "v y",
+ "U L",
+ "▁tra vers",
+ "▁trav ers",
+ "! (",
+ "▁absol utely",
+ "▁absolute ly",
+ "л та",
+ "тт я",
+ "т тя",
+ "▁I T",
+ "▁ IT",
+ "▁во ен",
+ "yc le",
+ "y cle",
+ "be st",
+ "bes t",
+ "b est",
+ "▁construct ed",
+ "▁constru cted",
+ "▁фи ль",
+ "▁ филь",
+ "ci do",
+ "cid o",
+ "c ido",
+ "ex it",
+ "ga rt",
+ "gar t",
+ "g art",
+ "▁provin cia",
+ "ve z",
+ "v ez",
+ "ci pl",
+ "cip l",
+ "▁Face book",
+ "▁Fac ebook",
+ "▁y ellow",
+ "▁ yellow",
+ "▁Sum mer",
+ "▁point ing",
+ "▁poss ibility",
+ "▁possib ility",
+ "▁possibil ity",
+ "▁leg isl",
+ "▁мо ж",
+ "▁ мож",
+ "de rn",
+ "der n",
+ "d ern",
+ "ко но",
+ "кон о",
+ "▁mechan ism",
+ "▁Bern ard",
+ "ex pr",
+ "exp r",
+ "ло ви",
+ "лов и",
+ "л ови",
+ "▁dig its",
+ "▁digit s",
+ "▁de legate",
+ "▁deleg ate",
+ "▁ delegate",
+ "og ram",
+ "o gram",
+ "▁D ictionary",
+ "▁ Dictionary",
+ "is y",
+ "▁s po",
+ "▁sp o",
+ "/ $",
+ "clude d",
+ "clud ed",
+ "▁M VC",
+ "▁t ém",
+ "▁té m",
+ "▁print ed",
+ "▁prin ted",
+ "▁G ott",
+ "▁Go tt",
+ "▁Got t",
+ "▁O m",
+ "▁ Om",
+ "ans as",
+ "▁D urch",
+ "▁Dur ch",
+ "▁I dent",
+ "▁Id ent",
+ "▁Ide nt",
+ "▁ Ident",
+ "Q U",
+ "ht m",
+ "h tm",
+ "▁S ul",
+ "▁Su l",
+ "'] .",
+ "' ].",
+ "▁du ty",
+ "▁dut y",
+ "▁Aut hor",
+ "▁Auth or",
+ "▁ Author",
+ "▁n ě",
+ "▁ ně",
+ "ow ego",
+ "owe go",
+ "pu s",
+ "p us",
+ "em bl",
+ "emb l",
+ "Exec utor",
+ "B L",
+ "▁M ens",
+ "▁Me ns",
+ "▁Men s",
+ "dis patch",
+ "▁M id",
+ "▁Mi d",
+ "ap ps",
+ "app s",
+ "Trans form",
+ "▁D at",
+ "▁Da t",
+ "▁ Dat",
+ "▁im pl",
+ "▁imp l",
+ "▁ impl",
+ "ou x",
+ "o ux",
+ "ho lm",
+ "hol m",
+ "▁I ns",
+ "▁In s",
+ "▁Emp ire",
+ "ру п",
+ "▁Ap ache",
+ "SI ON",
+ "S ION",
+ "▁pass age",
+ "######## ########",
+ "▁ex pressed",
+ "▁express ed",
+ "▁expr essed",
+ "▁expres sed",
+ "на д",
+ "▁o l",
+ "▁ ol",
+ "▁h avia",
+ "▁ha via",
+ "▁hav ia",
+ "▁бо лее",
+ "▁enjo y",
+ "form ance",
+ "▁dim ensions",
+ "▁dimension s",
+ "▁ч ер",
+ "▁че р",
+ "▁ чер",
+ "Se e",
+ "S ee",
+ "▁m outh",
+ "▁mo uth",
+ "▁mou th",
+ "▁ mouth",
+ "▁g au",
+ "▁ga u",
+ "ien cy",
+ "i ency",
+ "▁Carol ina",
+ "Dis t",
+ "Di st",
+ "D ist",
+ "rad io",
+ "li mit",
+ "lim it",
+ "l imit",
+ "/ ?",
+ "▁B all",
+ "▁Ba ll",
+ "▁Bal l",
+ "ні сть",
+ "Mem ber",
+ "M ember",
+ "wa ter",
+ "w ater",
+ "▁mur der",
+ "▁stand ing",
+ "▁stan ding",
+ "▁ standing",
+ "▁V II",
+ "▁VI I",
+ "Cent er",
+ "C enter",
+ "pp a",
+ "p pa",
+ "ur eau",
+ "ure au",
+ "▁Le ip",
+ "▁ob jet",
+ "▁obj et",
+ "▁Act ivity",
+ "▁Activ ity",
+ "▁ Activity",
+ "em bers",
+ "ember s",
+ "emb ers",
+ "v r",
+ "▁con du",
+ "▁cond u",
+ "Cell s",
+ "C ells",
+ "in us",
+ "inu s",
+ "▁' ,",
+ "▁ ',",
+ "▁af raid",
+ "▁х а",
+ "▁ ха",
+ "▁V ic",
+ "▁Vi c",
+ "test ing",
+ "tes ting",
+ "Tu be",
+ "T ube",
+ "▁v ast",
+ "▁va st",
+ "▁vas t",
+ "P M",
+ "ni h",
+ "n ih",
+ "SS N",
+ "S SN",
+ "▁Ch ile",
+ "▁Chi le",
+ "yl van",
+ "▁B ow",
+ "▁Bo w",
+ "▁relig ion",
+ "op her",
+ "oph er",
+ "ophe r",
+ "o pher",
+ "▁C oll",
+ "▁Col l",
+ "▁Co ll",
+ "▁ Coll",
+ "▁dig ital",
+ "▁digit al",
+ "zi oni",
+ "z ioni",
+ "Se ction",
+ "Sec tion",
+ "S ection",
+ "▁резу льта",
+ "Foo t",
+ "F oot",
+ "con vert",
+ "conv ert",
+ "▁rece iving",
+ "Cont act",
+ "▁h ero",
+ "▁he ro",
+ "▁her o",
+ "sa m",
+ "s am",
+ "▁pos terior",
+ "▁poster ior",
+ "▁poste rior",
+ "ow i",
+ "o wi",
+ "An t",
+ "A nt",
+ "▁fl ags",
+ "▁flag s",
+ "▁fla gs",
+ "▁ flags",
+ "▁Ze aland",
+ "▁b ounds",
+ "▁bound s",
+ "▁ bounds",
+ "▁where as",
+ "▁whe reas",
+ "in fl",
+ "inf l",
+ "Pl ay",
+ "P lay",
+ "▁d emo",
+ "▁de mo",
+ "▁dem o",
+ "▁ demo",
+ "▁g ibt",
+ "▁gi bt",
+ "▁h ospital",
+ "▁hosp ital",
+ "▁v olta",
+ "▁vol ta",
+ "▁volt a",
+ "л ё",
+ "▁f ashion",
+ "▁ex ceed",
+ "▁exc eed",
+ "el enium",
+ "elen ium",
+ "It er",
+ "I ter",
+ "kr ie",
+ "k rie",
+ "▁integr ation",
+ "▁integra tion",
+ "▁ integration",
+ "▁Other wise",
+ "ad u",
+ "a du",
+ "Sh e",
+ "S he",
+ "on de",
+ "ond e",
+ "o nde",
+ "ui nt",
+ "u int",
+ "rad ius",
+ "▁r am",
+ "▁ra m",
+ "▁ ram",
+ "▁ál bum",
+ "▁т ур",
+ "▁ту р",
+ "▁ тур",
+ "▁d y",
+ "▁ dy",
+ "▁O tt",
+ "▁Ot t",
+ "▁пер и",
+ "▁пе ри",
+ "re v",
+ "r ev",
+ "ri or",
+ "rio r",
+ "r ior",
+ "í d",
+ "ir at",
+ "ira t",
+ "i rat",
+ "▁в клю",
+ "▁import ante",
+ "▁important e",
+ "▁Du ke",
+ "▁caus a",
+ "▁ca usa",
+ "▁Math emat",
+ "▁di plom",
+ "▁N icol",
+ "▁Nic ol",
+ "▁Ni col",
+ "▁ex clus",
+ "▁exc lus",
+ "▁debug ging",
+ "▁G h",
+ "or iginal",
+ "origin al",
+ "orig inal",
+ "ly n",
+ "l yn",
+ "▁P la",
+ "▁Pl a",
+ "su ite",
+ "suit e",
+ "ch at",
+ "cha t",
+ "c hat",
+ "▁e stud",
+ "▁est ud",
+ "ue lle",
+ "uel le",
+ "u elle",
+ "▁p ert",
+ "▁per t",
+ "▁pe rt",
+ "▁ pert",
+ "▁import ance",
+ "▁appro aches",
+ "▁approach es",
+ "▁d la",
+ "▁про ф",
+ "Pr es",
+ "Pre s",
+ "P res",
+ "< \\",
+ "pre fix",
+ "p refix",
+ "SS ION",
+ "S SION",
+ "ро ди",
+ "род и",
+ "count ry",
+ "c ountry",
+ "it zer",
+ "itz er",
+ "▁ко р",
+ "▁к ор",
+ "▁ кор",
+ "▁sing ular",
+ "go v",
+ "g ov",
+ "ри н",
+ "р ин",
+ "▁F A",
+ "▁ FA",
+ "▁mat rices",
+ "ol are",
+ "ola re",
+ "olar e",
+ "o lare",
+ "ni ka",
+ "nik a",
+ "n ika",
+ "po wer",
+ "pow er",
+ "p ower",
+ "ll a",
+ "l la",
+ "▁des ire",
+ "▁famil ia",
+ "▁fam ilia",
+ "до р",
+ "д ор",
+ "▁f an",
+ "▁fa n",
+ "▁ fan",
+ "gener ated",
+ "generate d",
+ "▁C os",
+ "▁Co s",
+ "▁ż e",
+ "▁ że",
+ "▁D iese",
+ "▁Die se",
+ "▁Di ese",
+ "▁Dies e",
+ "mo v",
+ "m ov",
+ "▁de note",
+ "▁den ote",
+ "\") ]",
+ "\" )]",
+ "ou vern",
+ "ouv ern",
+ "ouve rn",
+ "ouver n",
+ "am an",
+ "ama n",
+ "a man",
+ "▁in ser",
+ "▁ins er",
+ "▁inse r",
+ "ij k",
+ "i jk",
+ "ot ta",
+ "ott a",
+ "o tta",
+ "er al",
+ "era l",
+ "e ral",
+ "де ль",
+ "д ель",
+ "() ->",
+ "( )->",
+ "▁p oder",
+ "▁po der",
+ "▁pod er",
+ "▁pode r",
+ "ig es",
+ "ige s",
+ "i ges",
+ "▁On line",
+ "▁we ird",
+ "ia c",
+ "i ac",
+ "▁quel ques",
+ "▁quelque s",
+ "ère nt",
+ "è rent",
+ "▁t el",
+ "▁te l",
+ "▁ tel",
+ "▁L atin",
+ "▁Lat in",
+ "ver ter",
+ "vert er",
+ "verte r",
+ "ля р",
+ "ро и",
+ "▁p df",
+ "▁pd f",
+ "▁ pdf",
+ "▁key word",
+ "▁ keyword",
+ "Hand le",
+ "A fter",
+ "re ce",
+ "rec e",
+ "▁ident ical",
+ "style sheet",
+ "styles heet",
+ "▁стан ови",
+ "▁станов и",
+ "▁k a",
+ "▁ ka",
+ "ce ment",
+ "cem ent",
+ "c ement",
+ "те т",
+ "т ет",
+ "▁c hat",
+ "▁ch at",
+ "▁cha t",
+ "▁ chat",
+ "▁M un",
+ "▁Mu n",
+ "ał a",
+ "a ła",
+ "AN T",
+ "A NT",
+ "ol óg",
+ "▁f ant",
+ "▁fa nt",
+ "▁fan t",
+ "▁for est",
+ "▁fo rest",
+ "▁fore st",
+ "▁ви ко",
+ "cu ss",
+ "cus s",
+ "c uss",
+ "▁se hr",
+ "pa g",
+ "p ag",
+ "ot ic",
+ "oti c",
+ "▁á ll",
+ "▁ál l",
+ "▁ áll",
+ "ма ти",
+ "мат и",
+ "▁\" '",
+ "+ \"",
+ "An imation",
+ "Anim ation",
+ "ходи т",
+ "ход ит",
+ "az u",
+ "a zu",
+ "▁pl ays",
+ "▁play s",
+ "▁pla ys",
+ "▁ plays",
+ "iz ioni",
+ "izi oni",
+ "izio ni",
+ "i zioni",
+ "ми че",
+ "▁b omb",
+ "▁bo mb",
+ "▁bom b",
+ "▁mer ely",
+ "▁mere ly",
+ "▁hold ing",
+ "▁hol ding",
+ "▁w enn",
+ "▁we nn",
+ "▁wen n",
+ "▁m edic",
+ "▁me dic",
+ "▁med ic",
+ "▁medi c",
+ "▁spe aking",
+ "▁speak ing",
+ "ong odb",
+ "ongo db",
+ "▁Cam pe",
+ "▁Camp e",
+ "in ity",
+ "ini ty",
+ "init y",
+ "▁я нва",
+ "() `.",
+ "()` .",
+ "( )`.",
+ "lu ss",
+ "lus s",
+ "l uss",
+ "▁H istoire",
+ "▁His toire",
+ "▁Hist oire",
+ "▁oper ating",
+ "▁opera ting",
+ "Ch annel",
+ "▁accur acy",
+ "▁b os",
+ "▁bo s",
+ "▁ bos",
+ "▁ev ident",
+ "ци ю",
+ "event s",
+ "ev ents",
+ "even ts",
+ "text rm",
+ "or eign",
+ "ore ign",
+ "▁i i",
+ "▁ ii",
+ "hr en",
+ "hre n",
+ "h ren",
+ "lo wer",
+ "low er",
+ "l ower",
+ "▁т ом",
+ "▁то м",
+ "▁ том",
+ "▁Ab out",
+ "▁ About",
+ "▁a j",
+ "▁ aj",
+ "er i",
+ "e ri",
+ "сту пи",
+ "ступ и",
+ "▁di git",
+ "▁dig it",
+ "▁ digit",
+ "▁Sp ain",
+ "▁D aten",
+ "▁Date n",
+ "▁Da ten",
+ "▁Dat en",
+ "▁for me",
+ "▁form e",
+ "▁ш та",
+ "▁ шта",
+ "▁B ach",
+ "▁Ba ch",
+ "▁Bac h",
+ "no number",
+ "non umber",
+ "▁recomm ended",
+ "▁recommend ed",
+ "▁re ads",
+ "▁read s",
+ "his toire",
+ "h istoire",
+ "▁s ang",
+ "▁sa ng",
+ "▁san g",
+ "▁? ?",
+ "▁ ??",
+ "▁с тал",
+ "▁ст ал",
+ "▁ста л",
+ "sc ore",
+ "s core",
+ "fa s",
+ "f as",
+ "▁c ub",
+ "▁cu b",
+ "▁g rew",
+ "▁gr ew",
+ "▁gre w",
+ "▁cent ro",
+ "▁bek annt",
+ "Event s",
+ "BE R",
+ "B ER",
+ "he w",
+ "h ew",
+ "сс а",
+ "с са",
+ "▁major ity",
+ "ît re",
+ "î tre",
+ "en ci",
+ "enc i",
+ "▁Qu ery",
+ "▁Que ry",
+ "▁ Query",
+ "▁któ re",
+ "i ć",
+ "▁complex ity",
+ "▁Fran çois",
+ "const raint",
+ "ур на",
+ "═ ═",
+ "▁iter ate",
+ "le tt",
+ "let t",
+ "l ett",
+ "pe ror",
+ "per or",
+ "▁Neder land",
+ "sh are",
+ "sha re",
+ "▁incl u",
+ "▁inc lu",
+ "än ger",
+ "äng er",
+ "änge r",
+ "▁N ic",
+ "▁Ni c",
+ "ч о",
+ "F ull",
+ "▁ra pport",
+ "▁rapp ort",
+ "▁rap port",
+ "ec lipse",
+ "e clipse",
+ "▁indust ry",
+ "he aders",
+ "head ers",
+ "header s",
+ "▁Р и",
+ "ch sel",
+ "chs el",
+ "▁po lic",
+ "▁pol ic",
+ "sch ied",
+ "% ,",
+ "O D",
+ "▁J ak",
+ "▁Ja k",
+ "({ \\",
+ "( {\\",
+ "al igned",
+ "align ed",
+ "▁frequ ently",
+ "▁frequent ly",
+ "▁su oi",
+ "▁suo i",
+ "▁ess entially",
+ "▁essential ly",
+ "▁R ic",
+ "▁Ri c",
+ "▁re ports",
+ "▁report s",
+ "▁dec imal",
+ "ra r",
+ "r ar",
+ "▁F oo",
+ "▁Fo o",
+ "▁ Foo",
+ "▁K a",
+ "▁D C",
+ "▁ DC",
+ "▁sim pler",
+ "▁simple r",
+ "▁simp ler",
+ "▁simpl er",
+ "Pa ne",
+ "Pan e",
+ "P ane",
+ "? }",
+ "So rt",
+ "S ort",
+ "▁pos it",
+ "cd n",
+ "c dn",
+ "kt ur",
+ "▁aw k",
+ "▁ awk",
+ "зе р",
+ "з ер",
+ "P F",
+ "u ur",
+ "▁R oss",
+ "▁Ro ss",
+ "▁Ros s",
+ "▁m ant",
+ "▁ma nt",
+ "▁man t",
+ "N a",
+ "Con s",
+ "Co ns",
+ "C ons",
+ ")) ))",
+ "))) )",
+ ") )))",
+ "▁techn iques",
+ "▁techni ques",
+ "▁technique s",
+ "im pl",
+ "imp l",
+ "▁dro pped",
+ "▁drop ped",
+ "▁L ista",
+ "▁List a",
+ "▁Li sta",
+ "▁Lis ta",
+ "▁Bas ically",
+ "▁Basic ally",
+ "en tal",
+ "ent al",
+ "enta l",
+ "▁cel ui",
+ "▁str ategy",
+ "▁strateg y",
+ "▁strat egy",
+ "▁W ales",
+ "▁Wal es",
+ "▁Wa les",
+ "na n",
+ "n an",
+ "▁g min",
+ "▁gr öß",
+ "▁eer ste",
+ "▁eerst e",
+ "T im",
+ "nt en",
+ "n ten",
+ "re sp",
+ "res p",
+ "r esp",
+ "▁s table",
+ "▁st able",
+ "▁sta ble",
+ "▁ stable",
+ "no v",
+ "n ov",
+ "ro b",
+ "r ob",
+ "но ј",
+ "▁mar riage",
+ "get String",
+ "Aut hor",
+ "Auth or",
+ "▁G raf",
+ "▁Gr af",
+ "▁Gra f",
+ "▁di agram",
+ "▁diag ram",
+ "▁dia gram",
+ "gi a",
+ "g ia",
+ "Net work",
+ "N etwork",
+ "▁com posed",
+ "▁comp osed",
+ "▁compos ed",
+ "▁compose d",
+ "▁miss ed",
+ "▁mis sed",
+ "▁M eg",
+ "▁Me g",
+ "▁пра во",
+ "▁прав о",
+ "▁hom onymes",
+ "▁Bo oks",
+ "▁Book s",
+ "▁en cou",
+ "▁enc ou",
+ "port e",
+ "por te",
+ "p orte",
+ "▁rot ation",
+ "▁f ir",
+ "▁fi r",
+ "▁ fir",
+ "те льно",
+ "тель но",
+ "▁g un",
+ "▁gu n",
+ "▁ gun",
+ "▁A ff",
+ "▁Af f",
+ "▁ Aff",
+ "но к",
+ "н ок",
+ "▁Fuß ball",
+ "▁St ory",
+ "▁Sto ry",
+ "▁ Story",
+ "▁Ch ap",
+ "▁Cha p",
+ "▁) .",
+ "▁ ).",
+ "▁Se it",
+ "мо н",
+ "м он",
+ "▁t élé",
+ "▁té lé",
+ "▁cop ied",
+ "▁cons istent",
+ "▁consist ent",
+ "▁dr ink",
+ "▁C ham",
+ "▁Ch am",
+ "▁Cha m",
+ "▁mat ters",
+ "▁matter s",
+ "▁render ed",
+ "▁rend ered",
+ "▁rende red",
+ "▁hyp oth",
+ "œ uv",
+ "▁me er",
+ "▁par sing",
+ "▁P RO",
+ "▁PR O",
+ "▁ PRO",
+ "se ries",
+ "ser ies",
+ "serie s",
+ "s eries",
+ "▁z á",
+ "▁ zá",
+ "stra ße",
+ "▁B oot",
+ "▁Bo ot",
+ "▁ Boot",
+ "▁re po",
+ "▁rep o",
+ "▁ repo",
+ "wo r",
+ "w or",
+ "▁St ream",
+ "▁Stre am",
+ "▁ Stream",
+ "▁A N",
+ "▁ AN",
+ "▁п ів",
+ "▁пі в",
+ "▁S M",
+ "▁ SM",
+ "▁A rn",
+ "▁Ar n",
+ "▁ Ž",
+ "▁[ ];",
+ "▁[] ;",
+ "Res ources",
+ "Resource s",
+ "▁el abor",
+ "▁ela bor",
+ "▁E th",
+ "▁Et h",
+ "▁l iste",
+ "▁li ste",
+ "▁list e",
+ "▁rel atively",
+ "▁relative ly",
+ "▁relativ ely",
+ "ch ant",
+ "chan t",
+ "cha nt",
+ "=\" \"",
+ "= \"\"",
+ "▁l ift",
+ "▁li ft",
+ "▁lif t",
+ "C N",
+ "Service s",
+ "Serv ices",
+ "ME NT",
+ "M ENT",
+ "▁и гра",
+ "▁иг ра",
+ "▁ игра",
+ "б ре",
+ "▁J ord",
+ "▁Jo rd",
+ "▁t ec",
+ "▁te c",
+ "ш ка",
+ "▁S up",
+ "▁Su p",
+ "▁infl uen",
+ "▁influ en",
+ "on ds",
+ "ond s",
+ "hand ler",
+ "handle r",
+ "▁b anda",
+ "▁band a",
+ "▁ban da",
+ "▁vert ices",
+ "▁z ap",
+ "▁za p",
+ "▁c ord",
+ "▁cor d",
+ "▁co rd",
+ "▁ cord",
+ "al ter",
+ "alt er",
+ "ze nia",
+ "zen ia",
+ "z enia",
+ "ât eau",
+ "âte au",
+ "▁know ing",
+ "▁Argent ina",
+ "Ar ea",
+ "Are a",
+ "A rea",
+ "ан е",
+ "а не",
+ "f c",
+ "=\" /",
+ "= \"/",
+ "▁M ik",
+ "▁Mi k",
+ "at ă",
+ "ie ux",
+ "ieu x",
+ "▁deutsch en",
+ "▁deutsche n",
+ "▁trad itional",
+ "▁tradition al",
+ "de code",
+ "dec ode",
+ "ve x",
+ "v ex",
+ "▁size of",
+ "▁ sizeof",
+ "▁F un",
+ "▁Fu n",
+ "▁ Fun",
+ "▁par ser",
+ "▁parse r",
+ "▁ parser",
+ "▁Flor ida",
+ "▁build ings",
+ "▁building s",
+ "▁Man uel",
+ "ri le",
+ "ril e",
+ "r ile",
+ "▁log ged",
+ "▁strong ly",
+ "▁re vol",
+ "▁rev ol",
+ "не е",
+ "xi co",
+ "xic o",
+ "x ico",
+ "▁F air",
+ "▁Fa ir",
+ "ca rt",
+ "car t",
+ "c art",
+ "▁W ort",
+ "▁Wo rt",
+ "▁Wor t",
+ "▁Jes us",
+ "em es",
+ "eme s",
+ "e mes",
+ "sch rift",
+ "Input Stream",
+ "wa d",
+ "w ad",
+ "▁gran des",
+ "▁grand es",
+ "▁grande s",
+ "▁númer o",
+ "▁O tto",
+ "▁Ot to",
+ "▁Ott o",
+ "ien tes",
+ "ient es",
+ "iente s",
+ "i entes",
+ "▁fam ous",
+ "ol ogne",
+ "olog ne",
+ "J e",
+ "ни ш",
+ "▁Guer ra",
+ "bar a",
+ "ba ra",
+ "b ara",
+ "▁c ad",
+ "▁ca d",
+ "el ve",
+ "br ace",
+ "bra ce",
+ "b race",
+ "▁J r",
+ "st able",
+ "sta ble",
+ "stab le",
+ "s table",
+ "EC T",
+ "E CT",
+ "lem ma",
+ "med iate",
+ "medi ate",
+ "media te",
+ "▁v in",
+ "▁vi n",
+ "▁ vin",
+ "▁mon ument",
+ "▁c v",
+ "▁ cv",
+ "▁w inter",
+ "▁win ter",
+ "▁trans formation",
+ "▁transform ation",
+ "▁N ick",
+ "▁Nic k",
+ "▁Ni ck",
+ "str onom",
+ "▁f rag",
+ "▁fr ag",
+ "▁fra g",
+ "▁in tel",
+ "▁int el",
+ "▁inte l",
+ "ra ction",
+ "rac tion",
+ "ract ion",
+ "r action",
+ "▁consider ing",
+ "▁consid ering",
+ "▁F le",
+ "▁Fl e",
+ "▁ ло",
+ "▁A près",
+ "▁Ap rès",
+ "▁A M",
+ "▁ AM",
+ "▁H um",
+ "▁Hu m",
+ "▁m undo",
+ "NE R",
+ "N ER",
+ "▁Be low",
+ "▁Bel ow",
+ "▁го рода",
+ "▁горо да",
+ "▁город а",
+ "ar ters",
+ "art ers",
+ "arter s",
+ "arte rs",
+ "-- \"",
+ "▁П е",
+ "▁ Пе",
+ "î t",
+ "▁t xt",
+ "▁tx t",
+ "▁ txt",
+ "an gers",
+ "ang ers",
+ "ange rs",
+ "anger s",
+ "▁t hy",
+ "▁th y",
+ "▁ thy",
+ "CL A",
+ "C LA",
+ "ib les",
+ "ible s",
+ "i bles",
+ "▁request ed",
+ "▁requ ested",
+ "▁Alex and",
+ "▁fact ors",
+ "▁fa ctors",
+ "▁factor s",
+ "▁produ ces",
+ "▁produce s",
+ "ning en",
+ "n ingen",
+ "▁со стоя",
+ "▁optim ization",
+ "ch od",
+ "cho d",
+ "c hod",
+ "> `",
+ "▁Wik ip",
+ "nost i",
+ "nos ti",
+ "n osti",
+ "▁compet ition",
+ "▁H ann",
+ "▁Ha nn",
+ "▁Han n",
+ "▁z ona",
+ "▁zo na",
+ "d c",
+ "de sign",
+ "des ign",
+ "▁Z u",
+ "▁e spec",
+ "▁es pec",
+ "▁espe c",
+ "▁esp ec",
+ "equ ality",
+ "equal ity",
+ "e quality",
+ "▁A bb",
+ "▁Ab b",
+ "▁develop er",
+ "▁ developer",
+ "▁\" ^",
+ "▁Sh ort",
+ "▁Sho rt",
+ "▁ Short",
+ "▁pl ans",
+ "▁pla ns",
+ "▁plan s",
+ "▁v it",
+ "▁vi t",
+ "iz able",
+ "iza ble",
+ "burg h",
+ "bur gh",
+ "ag em",
+ "age m",
+ "a gem",
+ "▁Pr int",
+ "▁Pri nt",
+ "▁Prin t",
+ "▁ Print",
+ "í v",
+ "▁su itable",
+ "▁suit able",
+ "pi cker",
+ "pic ker",
+ "pick er",
+ "p icker",
+ "Pro file",
+ "an dy",
+ "and y",
+ "▁qu ot",
+ "▁ quot",
+ "▁Dur ante",
+ "▁Durant e",
+ "▁Fran cia",
+ "▁Fr ancia",
+ "▁Franc ia",
+ "▁t art",
+ "▁tar t",
+ "▁ta rt",
+ "▁V enez",
+ "▁Ve nez",
+ "▁Ven ez",
+ "▁dis patch",
+ "▁disp atch",
+ "▁ dispatch",
+ "▁observ ations",
+ "▁observation s",
+ "▁ ż",
+ "In valid",
+ "▁occ urr",
+ "▁occur r",
+ "▁oc curr",
+ "т ки",
+ "Mem ento",
+ "M emento",
+ "▁S yd",
+ "▁Sy d",
+ "▁tiem po",
+ "▁st aff",
+ "▁sta ff",
+ "▁se ctions",
+ "▁section s",
+ "▁sect ions",
+ "▁ sections",
+ "▁s sh",
+ "▁ss h",
+ "▁ ssh",
+ "▁N GC",
+ "ë l",
+ "▁er re",
+ "▁err e",
+ "▁div ided",
+ "▁divide d",
+ "▁divid ed",
+ "▁With out",
+ "▁du rant",
+ "▁dur ant",
+ "▁j aar",
+ "▁ja ar",
+ "▁ −",
+ "▁sold iers",
+ "▁soldier s",
+ "ун к",
+ "la pse",
+ "lap se",
+ "laps e",
+ "▁Val ley",
+ "▁Vall ey",
+ "▁Valle y",
+ "▁( :",
+ "▁ (:",
+ "re ra",
+ "rer a",
+ "r era",
+ "▁d ével",
+ "▁dé vel",
+ "▁p éri",
+ "▁pé ri",
+ "▁calcul ation",
+ "▁calc ulation",
+ "▁ke ine",
+ "▁kein e",
+ "er tain",
+ "ert ain",
+ "erta in",
+ "▁те ле",
+ "ру д",
+ "▁c ul",
+ "▁cu l",
+ "▁ cul",
+ "▁cl oth",
+ "▁clo th",
+ "; }",
+ "▁pr zed",
+ "▁prze d",
+ "▁prz ed",
+ "Mon th",
+ "Mo nth",
+ "Mont h",
+ "Pi cker",
+ "P icker",
+ "▁S V",
+ "▁ SV",
+ "ar ian",
+ "ari an",
+ "aria n",
+ "a rian",
+ "▁Re view",
+ "▁Rev iew",
+ "▁h ang",
+ "▁ha ng",
+ "▁han g",
+ "▁ hang",
+ "▁о кт",
+ "▁ок т",
+ "▁F ront",
+ "▁Fr ont",
+ "▁Fro nt",
+ "▁ Front",
+ "ot lin",
+ "▁trans lation",
+ "▁transl ation",
+ "▁m odo",
+ "▁mod o",
+ "▁mo do",
+ "▁stat istics",
+ "▁statist ics",
+ "▁N ue",
+ "▁Nu e",
+ "▁Ни кола",
+ "NU M",
+ "N UM",
+ "▁s hips",
+ "▁sh ips",
+ "▁ship s",
+ "▁ ships",
+ "▁Re port",
+ "▁Rep ort",
+ "▁ Report",
+ "{ [",
+ "E ffect",
+ "ie ri",
+ "ier i",
+ "i eri",
+ "▁par ties",
+ "▁part ies",
+ "▁partie s",
+ "▁parti es",
+ "pl a",
+ "p la",
+ "r w",
+ "▁Work s",
+ "▁Wor ks",
+ "▁i ron",
+ "▁ir on",
+ "▁att ract",
+ "▁attr act",
+ "▁attra ct",
+ "▁c ort",
+ "▁cor t",
+ "▁co rt",
+ "n á",
+ "▁Ste ve",
+ "▁b ene",
+ "▁be ne",
+ "▁ben e",
+ "то н",
+ "т он",
+ "ícul a",
+ "Tw o",
+ "T wo",
+ "▁г лав",
+ "▁гла в",
+ "▁V ideo",
+ "▁ Video",
+ "▁power ful",
+ "au ch",
+ "auc h",
+ "a uch",
+ "ma nde",
+ "man de",
+ "m ande",
+ "äch st",
+ "ächs t",
+ "La t",
+ "L at",
+ "▁z na",
+ "▁zn a",
+ "▁ zna",
+ "▁fig ures",
+ "▁figure s",
+ "▁figur es",
+ "▁a lias",
+ "▁al ias",
+ "▁ali as",
+ "▁ alias",
+ "ne x",
+ "n ex",
+ "▁c ategories",
+ "▁categ ories",
+ "▁categor ies",
+ "▁categorie s",
+ "▁ categories",
+ "cal led",
+ "call ed",
+ "c alled",
+ "▁Sim ilar",
+ "▁g irls",
+ "▁girl s",
+ "▁gir ls",
+ "pe z",
+ "p ez",
+ "▁j oint",
+ "▁jo int",
+ "▁join t",
+ "▁ joint",
+ "ро го",
+ "р ого",
+ "ik en",
+ "ike n",
+ "i ken",
+ "чи на",
+ "чин а",
+ "an cia",
+ "anc ia",
+ "anci a",
+ "▁t ijd",
+ "▁ti jd",
+ "▁R ose",
+ "▁Ro se",
+ "▁Ros e",
+ "▁alg orithms",
+ "▁algorithm s",
+ "▁print ing",
+ "▁prin ting",
+ "ne a",
+ "n ea",
+ "▁exec uting",
+ "▁execut ing",
+ "▁l ambda",
+ "▁ lambda",
+ "▁reg ional",
+ "▁region al",
+ "▁Co pa",
+ "▁Cop a",
+ "F oo",
+ "ph ys",
+ "phy s",
+ "z m",
+ "▁L aur",
+ "▁La ur",
+ "▁Lau r",
+ "▁candid ate",
+ "▁J a",
+ "zy m",
+ "z ym",
+ "Ex ample",
+ "▁s piel",
+ "▁sp iel",
+ "▁ spiel",
+ "▁д ей",
+ "▁де й",
+ "▁ дей",
+ "ne hmen",
+ "neh men",
+ "nehm en",
+ "ke iten",
+ "keit en",
+ "▁с ент",
+ "int ent",
+ "inte nt",
+ ". (",
+ "▁пер вы",
+ "pr om",
+ "pro m",
+ "p rom",
+ "▁n at",
+ "▁na t",
+ "▁ nat",
+ "▁im agine",
+ "▁imag ine",
+ "call back",
+ "com ponents",
+ "component s",
+ "with out",
+ "▁a quest",
+ "▁aqu est",
+ "Su pport",
+ "Supp ort",
+ "▁respons ible",
+ "▁j ego",
+ "▁je go",
+ "l j",
+ "wi ll",
+ "w ill",
+ "le an",
+ "lea n",
+ "el and",
+ "ela nd",
+ "e land",
+ "olog ía",
+ "m c",
+ "Pro xy",
+ "▁o cup",
+ "▁oc up",
+ "▁на ходи",
+ "▁r ub",
+ "▁ru b",
+ "ні в",
+ "н ів",
+ "▁F all",
+ "▁Fa ll",
+ "▁Fal l",
+ "am os",
+ "amo s",
+ "a mos",
+ "▁E p",
+ "en tre",
+ "ent re",
+ "entr e",
+ "fa il",
+ "f ail",
+ "W orld",
+ "▁Ed itor",
+ "▁Edit or",
+ "▁ Editor",
+ "▁ex pos",
+ "▁exp os",
+ "▁f inds",
+ "▁find s",
+ "▁fin ds",
+ "▁C ulture",
+ "▁Cult ure",
+ "▁ Culture",
+ "LE ASE",
+ "▁m ovie",
+ "▁mov ie",
+ "▁mo vie",
+ "▁ movie",
+ "< =",
+ "omet ric",
+ "o metric",
+ "el ing",
+ "eli ng",
+ "elin g",
+ "e ling",
+ "numer able",
+ "ou rd",
+ "our d",
+ "o urd",
+ "▁S ea",
+ "▁Se a",
+ "▁b ild",
+ "▁bi ld",
+ "▁bil d",
+ "▁ bild",
+ "▁о ста",
+ "▁ос та",
+ "▁ост а",
+ "bl o",
+ "b lo",
+ "▁l ose",
+ "▁lo se",
+ "▁los e",
+ "▁ lose",
+ "at eurs",
+ "ate urs",
+ "ateur s",
+ "ou red",
+ "our ed",
+ "oure d",
+ "o ured",
+ "▁B att",
+ "▁Ba tt",
+ "▁Bat t",
+ "() ;\r",
+ "(); \r",
+ "( );\r",
+ "▁p oz",
+ "▁po z",
+ "pos ts",
+ "post s",
+ "pe nd",
+ "pen d",
+ "p end",
+ "cer tain",
+ "cert ain",
+ "c ertain",
+ "ни ком",
+ "ник ом",
+ "J ust",
+ "web kit",
+ "dem ás",
+ "~~ ~~",
+ "▁indic ates",
+ "▁indicate s",
+ "▁p ark",
+ "▁par k",
+ "▁ park",
+ "ri que",
+ "r ique",
+ "vo d",
+ "v od",
+ "▁Ch amp",
+ "▁Cham p",
+ "▁Cha mp",
+ "ft ware",
+ "OP T",
+ "O PT",
+ "dj ango",
+ "d jango",
+ "re lease",
+ "▁ È",
+ "S R",
+ "▁polit ician",
+ "▁r oi",
+ "▁ro i",
+ "at uren",
+ "atur en",
+ "ature n",
+ "atu ren",
+ "▁Deutsch e",
+ "ta gon",
+ "tag on",
+ "t agon",
+ "▁M ov",
+ "▁Mo v",
+ "ob ierno",
+ "obi erno",
+ "▁da ß",
+ "ut her",
+ "uth er",
+ "u ther",
+ "in di",
+ "ind i",
+ "▁Wik ipedia",
+ "▁Wikip edia",
+ "▁Wikiped ia",
+ "▁a nos",
+ "▁an os",
+ "▁ano s",
+ "▁ anos",
+ "▁ob serve",
+ "▁obser ve",
+ "▁observ e",
+ "▁obs erve",
+ "el ly",
+ "ell y",
+ "▁rail way",
+ "at on",
+ "ato n",
+ "a ton",
+ "▁e num",
+ "▁en um",
+ "▁ enum",
+ "hu s",
+ "h us",
+ "▁in hab",
+ "P si",
+ "oir e",
+ "oi re",
+ "o ire",
+ "▁Х о",
+ "▁S pace",
+ "▁Sp ace",
+ "▁ Space",
+ "▁Ар хи",
+ "▁an terior",
+ "▁ante rior",
+ "▁ Ł",
+ "is ons",
+ "ison s",
+ "iso ns",
+ "I l",
+ "▁am éric",
+ "la ps",
+ "lap s",
+ "l aps",
+ "▁B BC",
+ "▁BB C",
+ "QUE ST",
+ "Con stra",
+ "Const ra",
+ "Cons tra",
+ "mon t",
+ "mo nt",
+ "m ont",
+ "ä ft",
+ "▁ä ven",
+ "ub ern",
+ "ube rn",
+ "uber n",
+ "u bern",
+ "< !--",
+ "▁c oding",
+ "▁co ding",
+ "▁cod ing",
+ "the ory",
+ "at hed",
+ "ath ed",
+ "▁Ar be",
+ "▁ш и",
+ "▁ ши",
+ "for Each",
+ "om orphism",
+ "omorph ism",
+ "det ails",
+ "detail s",
+ "ach sen",
+ "in tegr",
+ "int egr",
+ "inte gr",
+ "V or",
+ "Un known",
+ "ace ae",
+ "a ceae",
+ "in ue",
+ "inu e",
+ "es ome",
+ "eso me",
+ "e some",
+ "▁F ir",
+ "ch ain",
+ "cha in",
+ "▁extrem ely",
+ "▁extreme ly",
+ "mult icol",
+ "multi col",
+ "▁Sw ift",
+ "▁address es",
+ "▁addr esses",
+ "hs pace",
+ "h space",
+ "▁Ro ger",
+ "▁Rog er",
+ "▁d essen",
+ "▁des sen",
+ "▁dess en",
+ "▁con sequ",
+ "▁cons equ",
+ "▁conse qu",
+ "ual mente",
+ "▁Pre mier",
+ "▁Prem ier",
+ "▁Re cord",
+ "▁Rec ord",
+ "▁ Record",
+ "▁B ron",
+ "▁Br on",
+ "▁Bro n",
+ "ki r",
+ "k ir",
+ "se x",
+ "s ex",
+ "in tern",
+ "int ern",
+ "inter n",
+ "inte rn",
+ "▁benef it",
+ "▁bene fit",
+ "um en",
+ "ume n",
+ "u men",
+ "▁be coming",
+ "▁bec oming",
+ "▁becom ing",
+ "▁l ig",
+ "▁li g",
+ "▁ lig",
+ "▁pop ula",
+ "▁popul a",
+ "os c",
+ "o sc",
+ "▁c iv",
+ "▁ci v",
+ "▁great est",
+ "▁pro ces",
+ "▁proc es",
+ "] *",
+ "▁ме сто",
+ "▁мест о",
+ "▁' $",
+ "▁ '$",
+ "he ll",
+ "hel l",
+ "h ell",
+ "(\" \\",
+ "( \"\\",
+ "▁n ine",
+ "▁ni ne",
+ "▁nin e",
+ "▁F ac",
+ "▁Fa c",
+ "ul pt",
+ "ulp t",
+ "jo urs",
+ "jou rs",
+ "j ours",
+ "▁C opy",
+ "▁Co py",
+ "▁Cop y",
+ "▁ Copy",
+ "▁activ ities",
+ "▁Dem ocr",
+ "▁Demo cr",
+ "E s",
+ "Su ccess",
+ "▁E sta",
+ "▁Est a",
+ "▁Es ta",
+ "it ul",
+ "itu l",
+ "is ti",
+ "ist i",
+ "▁B ed",
+ "▁Be d",
+ "ja s",
+ "j as",
+ "▁т ем",
+ "▁те м",
+ "▁ тем",
+ "▁H ung",
+ "▁Hu ng",
+ "▁Hun g",
+ "G ame",
+ "▁he av",
+ "onn ées",
+ "▁branch es",
+ "▁bran ches",
+ "bo rg",
+ "bor g",
+ "b org",
+ "▁v l",
+ "▁ vl",
+ "▁slow ly",
+ "F a",
+ "Go ogle",
+ "em i",
+ "e mi",
+ "▁circumst ances",
+ "▁' %",
+ "▁U nd",
+ "▁Un d",
+ "▁ Und",
+ "▁Vict oria",
+ "▁Victor ia",
+ "▁T yp",
+ "▁Ty p",
+ "▁ Typ",
+ "rupt ed",
+ "rup ted",
+ "▁rel ativ",
+ "▁s lo",
+ "▁sl o",
+ "▁p adre",
+ "▁pad re",
+ "▁d aily",
+ "▁da ily",
+ "▁dai ly",
+ "▁or th",
+ "▁ort h",
+ "▁ orth",
+ "чни й",
+ "ч ний",
+ "▁fran zös",
+ "▁t eil",
+ "▁te il",
+ "▁ teil",
+ "▁Se curity",
+ "▁Sec urity",
+ "▁ Security",
+ "or don",
+ "ord on",
+ "ordo n",
+ "▁s weet",
+ "▁swe et",
+ "SI ZE",
+ "▁C el",
+ "▁Ce l",
+ "èt res",
+ "è tres",
+ "om mes",
+ "omm es",
+ "▁с і",
+ "▁ сі",
+ "▁effort s",
+ "ą z",
+ "▁oh ne",
+ "▁South ern",
+ "▁Sou thern",
+ "▁approxim ately",
+ "▁approximate ly",
+ "це н",
+ "ц ен",
+ "(' #",
+ "▁s aving",
+ "▁sa ving",
+ "▁sav ing",
+ "nb sp",
+ "▁trans late",
+ "▁transl ate",
+ "▁ translate",
+ "▁Î n",
+ "mem ber",
+ "m ember",
+ "▁l aws",
+ "▁la ws",
+ "▁law s",
+ "▁ж ен",
+ "▁же н",
+ "▁ жен",
+ "▁си сте",
+ "t c",
+ "> \\",
+ "el te",
+ "elt e",
+ "▁e hem",
+ "▁con trad",
+ "▁cont rad",
+ "▁contr ad",
+ "▁contra d",
+ "▁ру с",
+ "▁р ус",
+ "▁ рус",
+ "ь я",
+ "▁M iddle",
+ "▁ Middle",
+ "qu ip",
+ "qui p",
+ "▁c hez",
+ "▁ch ez",
+ "▁che z",
+ "▁ chez",
+ "Field s",
+ "▁per mit",
+ "▁perm it",
+ "ik el",
+ "ike l",
+ "i kel",
+ "▁w ir",
+ "▁t rial",
+ "▁tr ial",
+ "▁tri al",
+ "▁ver schied",
+ "▁versch ied",
+ "▁ф ев",
+ "▁фе в",
+ "▁m ale",
+ "▁ma le",
+ "▁mal e",
+ "▁ male",
+ "▁я зы",
+ "▁ny el",
+ "ak ter",
+ "akt er",
+ "akte r",
+ "a kter",
+ "▁den omin",
+ "cept or",
+ "cep tor",
+ "▁W at",
+ "▁Wa t",
+ "▁f ino",
+ "▁fin o",
+ "▁fi no",
+ "▁XV III",
+ "▁XVI II",
+ "▁XVII I",
+ "ry ption",
+ "rypt ion",
+ "de sc",
+ "des c",
+ "d esc",
+ "ap a",
+ "a pa",
+ "ле на",
+ "лен а",
+ "л ена",
+ "▁k ol",
+ "▁ko l",
+ "▁ kol",
+ "▁ Є",
+ "▁dep endent",
+ "▁depend ent",
+ "▁ dependent",
+ "▁C ra",
+ "▁Cr a",
+ "▁st orm",
+ "▁stor m",
+ "▁sto rm",
+ "▁Г ер",
+ "▁Ге р",
+ "▁p ipe",
+ "▁pi pe",
+ "▁pip e",
+ "▁ pipe",
+ "▁att ended",
+ "▁attend ed",
+ "▁v ita",
+ "▁vi ta",
+ "▁vit a",
+ "uz ione",
+ "u zione",
+ "cz as",
+ "cza s",
+ "c zas",
+ "on da",
+ "ond a",
+ "▁b old",
+ "▁bo ld",
+ "▁bol d",
+ "▁ bold",
+ "Column s",
+ "ic ió",
+ "ici ó",
+ "i ció",
+ "▁c zę",
+ "▁cz ę",
+ "▁из вест",
+ "▁Cl oud",
+ "▁Clo ud",
+ "▁ Cloud",
+ "▁w arm",
+ "▁war m",
+ "▁wa rm",
+ "▁с ы",
+ "▁ сы",
+ "▁с те",
+ "▁ст е",
+ "▁ сте",
+ "▁produ cer",
+ "▁produce r",
+ "▁Lud wig",
+ "▁Nor thern",
+ "▁North ern",
+ "ł ą",
+ "NS String",
+ "▁H ad",
+ "▁Ha d",
+ "▁И ван",
+ "▁E g",
+ "▁I mp",
+ "▁Im p",
+ "▁ Imp",
+ "ш і",
+ "▁A uch",
+ "▁Au ch",
+ "то к",
+ "т ок",
+ "▁H it",
+ "▁Hi t",
+ "▁qu ien",
+ "▁qui en",
+ "▁de partment",
+ "▁depart ment",
+ "▁erh ielt",
+ "▁u i",
+ "▁ ui",
+ "▁S pr",
+ "▁Sp r",
+ "се р",
+ "с ер",
+ "ou rt",
+ "our t",
+ "o urt",
+ "▁Ste phen",
+ "▁Step hen",
+ "▁Steph en",
+ "te am",
+ "▁z ip",
+ "▁ zip",
+ "▁B ang",
+ "▁Ba ng",
+ "▁Ban g",
+ "▁grow th",
+ "▁j am",
+ "▁ja m",
+ "▁K ais",
+ "▁Ka is",
+ "b matrix",
+ "▁As ia",
+ "▁rég ion",
+ "= /",
+ "▁Pac ific",
+ "▁author ity",
+ "▁# [",
+ "та ми",
+ "там и",
+ "▁every one",
+ "▁att end",
+ "▁atte nd",
+ "▁ attend",
+ "▁tim estamp",
+ "▁ timestamp",
+ "▁t ries",
+ "▁tr ies",
+ "▁tri es",
+ "▁f f",
+ "▁ ff",
+ "ше й",
+ "ш ей",
+ "▁develop ing",
+ "ol t",
+ "o lt",
+ "up s",
+ "u ps",
+ "▁moment o",
+ "▁mom ento",
+ "▁S ain",
+ "▁Sa in",
+ "Te rm",
+ "T erm",
+ "▁c elle",
+ "▁ce lle",
+ "▁cell e",
+ "▁cel le",
+ "G R",
+ "Mo use",
+ "M ouse",
+ "▁челов ек",
+ "▁челове к",
+ "▁Col lection",
+ "▁Coll ection",
+ "▁Collect ion",
+ "▁ Collection",
+ "ât re",
+ "â tre",
+ "▁W rite",
+ "▁Writ e",
+ "▁ Write",
+ "▁P om",
+ "▁Po m",
+ "[ -",
+ "Ca m",
+ "C am",
+ "▁loc ations",
+ "▁location s",
+ "▁J son",
+ "▁ Json",
+ "el led",
+ "ell ed",
+ "elle d",
+ "select or",
+ "sel ector",
+ "re peat",
+ "ct ors",
+ "ctor s",
+ "ot te",
+ "ott e",
+ "o tte",
+ "ви зи",
+ "änd e",
+ "än de",
+ "ä nde",
+ "▁ach ieved",
+ "▁achieve d",
+ "▁achiev ed",
+ "▁main ly",
+ "____ ____",
+ "! )",
+ "▁явля ется",
+ "▁c ities",
+ "▁ci ties",
+ "▁cit ies",
+ "sing le",
+ "sin gle",
+ "г ре",
+ "▁P ak",
+ "▁Pa k",
+ "▁allow ing",
+ "▁allo wing",
+ "fer red",
+ "▁а пре",
+ "хо дя",
+ "ход я",
+ "▁brow sers",
+ "▁browser s",
+ "▁es crit",
+ "▁esc rit",
+ "▁escri t",
+ "▁mount ain",
+ "▁network s",
+ "▁net works",
+ "ki nd",
+ "kin d",
+ "k ind",
+ "li ver",
+ "live r",
+ "liv er",
+ "l iver",
+ "▁cl osing",
+ "▁clos ing",
+ "▁clo sing",
+ "▁sk ip",
+ "▁ski p",
+ "▁ skip",
+ "ú t",
+ "▁d uration",
+ "▁dur ation",
+ "▁ duration",
+ "ét ait",
+ "éta it",
+ "é tait",
+ "▁s cr",
+ "▁sc r",
+ "▁ scr",
+ "B B",
+ "ór ia",
+ "ó ria",
+ "▁K ultur",
+ "▁Kult ur",
+ "▁output s",
+ "multi column",
+ "multicol umn",
+ "▁bel ongs",
+ "▁belong s",
+ "fe ature",
+ "uc ky",
+ "uck y",
+ "▁j uli",
+ "▁ju li",
+ "▁jul i",
+ "▁рай она",
+ "▁райо на",
+ "▁район а",
+ "з во",
+ "fact ory",
+ "factor y",
+ "f actory",
+ "Fun c",
+ "F unc",
+ "▁ut ter",
+ "▁ utter",
+ "▁TO DO",
+ "▁o bt",
+ "▁ob t",
+ "ateg ories",
+ "ategor ies",
+ "▁com bine",
+ "▁comb ine",
+ "▁combin e",
+ "▁W all",
+ "▁Wal l",
+ "▁Wa ll",
+ "▁under lying",
+ "ar ono",
+ "aron o",
+ "aro no",
+ "▁P rote",
+ "▁Pro te",
+ "▁Pr ote",
+ "c ów",
+ "st an",
+ "sta n",
+ "s tan",
+ "▁G ew",
+ "▁Ge w",
+ "▁opt imal",
+ "▁optim al",
+ "▁Archiv link",
+ "▁S cript",
+ "▁ Script",
+ "▁destroy ed",
+ "х е",
+ "▁Fire fox",
+ "▁s ole",
+ "▁so le",
+ "▁sol e",
+ "▁ sole",
+ "La yer",
+ "L ayer",
+ "т ку",
+ "▁st ores",
+ "▁stor es",
+ "▁store s",
+ "▁sto res",
+ "▁dis plays",
+ "▁display s",
+ "is hing",
+ "ish ing",
+ "ishi ng",
+ "▁о ст",
+ "▁ос т",
+ "▁inst ant",
+ "▁el ő",
+ "▁habit antes",
+ "▁Ein wo",
+ "▁a li",
+ "▁al i",
+ "▁ ali",
+ "▁ER ROR",
+ "▁ERR OR",
+ "▁ ERROR",
+ "▁a head",
+ "▁ah ead",
+ "▁go als",
+ "▁goal s",
+ "▁m ár",
+ "▁má r",
+ "▁s ą",
+ "▁m art",
+ "▁ma rt",
+ "▁mar t",
+ "▁ mart",
+ "мини стра",
+ "F r",
+ "▁V illa",
+ "▁Vill a",
+ "▁Vi lla",
+ "▁Vil la",
+ "▁M arc",
+ "▁Mar c",
+ "▁Ma rc",
+ "ro py",
+ "rop y",
+ "r opy",
+ "ag ram",
+ "agr am",
+ "a gram",
+ "ha pe",
+ "h ape",
+ "ме й",
+ "м ей",
+ "▁A L",
+ "▁ AL",
+ "▁conne xes",
+ "▁En tre",
+ "▁Ent re",
+ "St ep",
+ "Ste p",
+ "лі в",
+ "л ів",
+ "▁De ath",
+ "▁r ise",
+ "▁ris e",
+ "▁ri se",
+ "▁f os",
+ "▁fo s",
+ "▁l ev",
+ "▁le v",
+ "▁ lev",
+ "ga be",
+ "g abe",
+ "▁b roke",
+ "▁br oke",
+ "▁bro ke",
+ "product s",
+ "▁m edi",
+ "▁me di",
+ "▁med i",
+ "▁ medi",
+ "▁dis pon",
+ "▁disp on",
+ "Pack age",
+ "P ackage",
+ "Image View",
+ "▁N ag",
+ "▁Na g",
+ "uj ą",
+ "u ją",
+ "W ord",
+ "▁k ole",
+ "▁ko le",
+ "▁kol e",
+ "ße r",
+ "ß er",
+ ")` .",
+ ") `.",
+ "▁r ol",
+ "▁ro l",
+ "▁ rol",
+ "▁ í",
+ "те й",
+ "т ей",
+ "Pro gress",
+ "be an",
+ "▁s empre",
+ "▁sem pre",
+ "State ment",
+ "Stat ement",
+ "UP DATE",
+ "▁mond iale",
+ "▁w rapper",
+ "▁wr apper",
+ "▁wra pper",
+ "▁wrap per",
+ "▁ wrapper",
+ "▁C hart",
+ "▁Ch art",
+ "▁Char t",
+ "▁Cha rt",
+ "▁ Chart",
+ "▁on Click",
+ "че ння",
+ "чен ня",
+ "LO G",
+ "some thing",
+ "som ething",
+ "s omething",
+ "▁IN SERT",
+ "▁ INSERT",
+ "ще ния",
+ "ue t",
+ "u et",
+ "wer p",
+ "we rp",
+ "ro und",
+ "rou nd",
+ "r ound",
+ "ic hen",
+ "ich en",
+ "iche n",
+ "i chen",
+ "▁X VI",
+ "▁XV I",
+ "з ни",
+ "▁ave va",
+ "▁St ore",
+ "▁Sto re",
+ "▁ Store",
+ "▁x s",
+ "▁ xs",
+ "ra cht",
+ "rac ht",
+ "rach t",
+ "r acht",
+ "sc ar",
+ "s car",
+ "▁op era",
+ "▁oper a",
+ "▁ opera",
+ "▁deg rees",
+ "▁degree s",
+ "▁cit iz",
+ "äs ident",
+ "▁class ical",
+ "▁classic al",
+ "▁Jer sey",
+ "▁er sch",
+ "▁ers ch",
+ "▁ ersch",
+ "▁treat ment",
+ "▁насе ље",
+ "н ня",
+ "▁bo ost",
+ "▁ boost",
+ "am ount",
+ "amo unt",
+ "a mount",
+ "▁со зда",
+ "ér ieur",
+ "érie ur",
+ "éri eur",
+ "▁t elling",
+ "▁tell ing",
+ "▁tel ling",
+ "Ha s",
+ "H as",
+ "▁in iti",
+ "▁init i",
+ "▁П и",
+ "ev al",
+ "e val",
+ "▁M atch",
+ "▁Mat ch",
+ "▁ Match",
+ "▁cor re",
+ "▁corr e",
+ "Point er",
+ "Po inter",
+ "▁pass es",
+ "▁passe s",
+ "comp any",
+ "▁а н",
+ "▁ ан",
+ "ach es",
+ "ac hes",
+ "ache s",
+ "a ches",
+ "▁sig lo",
+ "не м",
+ "н ем",
+ "▁ex change",
+ "▁ exchange",
+ "ci to",
+ "cit o",
+ "c ito",
+ "▁B ab",
+ "▁Ba b",
+ "Do c",
+ "D oc",
+ "ze ś",
+ "▁на род",
+ "▁ народ",
+ "▁conf lict",
+ "▁conflic t",
+ "▁confl ict",
+ "▁nov ember",
+ "ea u",
+ "e au",
+ "ö v",
+ "▁H ub",
+ "▁Hu b",
+ "▁ Hub",
+ "▁p oco",
+ "▁po co",
+ "▁poc o",
+ "en sa",
+ "ens a",
+ "sch ließ",
+ "lass e",
+ "las se",
+ "l asse",
+ "data s",
+ "dat as",
+ "▁с ти",
+ "▁ст и",
+ "▁ сти",
+ "un ivers",
+ "uni vers",
+ "ek s",
+ "e ks",
+ "▁C ho",
+ "▁Ch o",
+ "▁ Cho",
+ "▁c ô",
+ "▁( .",
+ "▁ (.",
+ "ew nę",
+ "▁Ch ief",
+ "▁Chi ef",
+ "▁ch ef",
+ "▁che f",
+ "▁у прав",
+ "ul i",
+ "u li",
+ "▁' ''",
+ "▁'' '",
+ "▁ '''",
+ "nap shot",
+ "▁re lac",
+ "▁rel ac",
+ "▁rela c",
+ "ég e",
+ "é ge",
+ "w t",
+ "we nd",
+ "wen d",
+ "w end",
+ "os ing",
+ "osi ng",
+ "o sing",
+ "▁ha cer",
+ "▁hace r",
+ "▁ф ран",
+ "au tres",
+ "aut res",
+ "autre s",
+ "▁f ils",
+ "▁fil s",
+ "▁fi ls",
+ "er ed",
+ "ere d",
+ "e red",
+ "▁По силання",
+ "▁th erm",
+ "▁the rm",
+ "▁ther m",
+ "ер жа",
+ "su ch",
+ "s uch",
+ "▁i hren",
+ "▁ih ren",
+ "▁ihr en",
+ "▁ihre n",
+ "▁en contr",
+ "▁l ots",
+ "▁lo ts",
+ "▁lot s",
+ "lo go",
+ "log o",
+ "l ogo",
+ "▁W i",
+ "/ (",
+ "ш ње",
+ "DA TA",
+ "DAT A",
+ "D ATA",
+ "▁P layer",
+ "▁Pl ayer",
+ "▁Play er",
+ "▁Pla yer",
+ "▁ Player",
+ "▁Leip zig",
+ "▁rel atives",
+ "▁relative s",
+ "▁relativ es",
+ "ре в",
+ "р ев",
+ "▁new sp",
+ "▁news p",
+ "? ,",
+ "▁St utt",
+ "▁Stu tt",
+ "▁d ual",
+ "▁du al",
+ "▁compan ies",
+ "▁z am",
+ "▁za m",
+ "put ation",
+ "▁in equality",
+ "▁t rem",
+ "▁tr em",
+ "▁tre m",
+ "hi ps",
+ "hip s",
+ "h ips",
+ "an ch",
+ "anc h",
+ "▁ Ż",
+ "бур г",
+ "▁cop ies",
+ "da sh",
+ "das h",
+ "d ash",
+ "во р",
+ "в ор",
+ "spiel er",
+ "s pieler",
+ "▁Re volution",
+ "▁Revol ution",
+ "es ty",
+ "est y",
+ "e sty",
+ "▁j unto",
+ "▁jun to",
+ "▁junt o",
+ "▁Ind eed",
+ "ok al",
+ "oka l",
+ "o kal",
+ "ctr ine",
+ "▁F ord",
+ "▁For d",
+ "▁Fo rd",
+ "▁C REATE",
+ "▁ CREATE",
+ "▁w alls",
+ "▁wall s",
+ "▁wal ls",
+ "▁a ute",
+ "▁au te",
+ "▁aut e",
+ "S U",
+ "wh y",
+ "w hy",
+ "plement ation",
+ "ro ut",
+ "rou t",
+ "r out",
+ "Mat rix",
+ "▁s ad",
+ "▁sa d",
+ "ан а",
+ "а на",
+ "▁P ic",
+ "▁Pi c",
+ ". “",
+ "▁A C",
+ "▁ AC",
+ "▁F est",
+ "▁Fe st",
+ "▁des ktop",
+ "▁ desktop",
+ "▁P ay",
+ "▁Pa y",
+ "▁ Pay",
+ "ome times",
+ "omet imes",
+ "▁T ak",
+ "▁Ta k",
+ "ра б",
+ "▁S ever",
+ "▁Se ver",
+ "▁nor thern",
+ "▁north ern",
+ "an ter",
+ "ant er",
+ "ante r",
+ "▁Mod ern",
+ "▁Mo dern",
+ "▁Mode rn",
+ "wa l",
+ "w al",
+ "{ \r",
+ "on line",
+ "ö k",
+ "▁brit ann",
+ "$ _",
+ "▁j ar",
+ "▁ja r",
+ "▁ jar",
+ "T L",
+ "xx xx",
+ "xxx x",
+ "x xxx",
+ "mer ge",
+ "▁N amen",
+ "▁Name n",
+ "▁Na men",
+ "▁Nam en",
+ "▁K EY",
+ "▁ KEY",
+ "▁re fers",
+ "▁ref ers",
+ "▁refer s",
+ "▁h in",
+ "▁hi n",
+ "▁ hin",
+ "▁Vol ks",
+ "▁Volk s",
+ "st eller",
+ "stell er",
+ "stelle r",
+ "vi ation",
+ "via tion",
+ "v iation",
+ "on io",
+ "oni o",
+ "o nio",
+ "ight er",
+ "igh ter",
+ "Com pat",
+ "Comp at",
+ "▁C E",
+ "▁ CE",
+ "▁p ró",
+ "▁pr ó",
+ "▁encuent ra",
+ "the orem",
+ "▁pub li",
+ "▁Develop ment",
+ "н д",
+ "▁r os",
+ "▁ro s",
+ "▁ ros",
+ "▁s hr",
+ "▁sh r",
+ "se au",
+ "s eau",
+ "▁gener ating",
+ "▁gene rating",
+ "▁difficult y",
+ "▁Ex press",
+ "▁Exp ress",
+ "▁ Express",
+ "Al ignment",
+ "de utsch",
+ "▁Вла ди",
+ "▁sugg ests",
+ "▁suggest s",
+ "▁Famil y",
+ "▁Fam ily",
+ "▁ Family",
+ "bb i",
+ "b bi",
+ "]) .",
+ "] ).",
+ "st aw",
+ "sta w",
+ "▁pres idente",
+ "▁president e",
+ "▁presiden te",
+ "▁st esso",
+ "in x",
+ "i nx",
+ "set up",
+ "▁con form",
+ "▁conf orm",
+ "▁f ro",
+ "▁fr o",
+ "=\\ \"",
+ "= \\\"",
+ "▁d å",
+ "ic iones",
+ "ici ones",
+ "icio nes",
+ "icion es",
+ "i ciones",
+ "▁e volution",
+ "▁evol ution",
+ "pr ote",
+ "pro te",
+ "p rote",
+ "▁pr ints",
+ "▁print s",
+ "▁prin ts",
+ "▁P ont",
+ "▁Po nt",
+ "▁Pon t",
+ "▁conf usion",
+ "▁ Й",
+ "▁d ello",
+ "▁del lo",
+ "▁dell o",
+ "▁man if",
+ "Def inition",
+ "ár a",
+ "á ra",
+ "ma ls",
+ "mal s",
+ "m als",
+ "▁s ale",
+ "▁sa le",
+ "▁sal e",
+ "▁drop down",
+ "▁ dropdown",
+ "Ch ain",
+ "Amer ican",
+ "America n",
+ "▁m k",
+ "▁ mk",
+ "▁B ez",
+ "▁Be z",
+ "▁F ue",
+ "▁Fu e",
+ "▁N E",
+ "▁ NE",
+ "гра фи",
+ "граф и",
+ "doc ker",
+ "do cker",
+ "d ocker",
+ "▁^ {",
+ "▁ ^{",
+ "As sert",
+ "Ass ert",
+ "▁hor izontal",
+ "▁horizon tal",
+ "▁ horizontal",
+ "(@ \"",
+ "( @\"",
+ "▁д ву",
+ "pro xy",
+ "U ri",
+ "gen cy",
+ "g ency",
+ "▁\" [",
+ "▁Q t",
+ "▁ Qt",
+ "▁N ames",
+ "▁Name s",
+ "▁Na mes",
+ "▁Nam es",
+ "▁ Names",
+ "▁evalu ate",
+ "▁eval uate",
+ "! /",
+ "▁ein ges",
+ "▁eing es",
+ "▁syn th",
+ "▁sy nth",
+ "▁You Tube",
+ "▁turn ing",
+ "▁tur ning",
+ "▁E ric",
+ "▁Er ic",
+ "▁б ли",
+ "▁ бли",
+ "▁k lub",
+ "▁kl ub",
+ "pl orer",
+ "▁s ports",
+ "▁sport s",
+ "▁s ia",
+ "▁si a",
+ "о ш",
+ "▁d ai",
+ "▁da i",
+ "▁e urope",
+ "▁europ e",
+ "▁euro pe",
+ "ic ians",
+ "ici ans",
+ "ician s",
+ "icia ns",
+ "ings områ",
+ "▁d re",
+ "▁dr e",
+ "▁work around",
+ "▁s uit",
+ "▁su it",
+ "▁ suit",
+ "amb igu",
+ "▁quant ity",
+ "▁ quantity",
+ "▁seg undo",
+ "Sym bol",
+ "S ymbol",
+ "▁m oral",
+ "▁mo ral",
+ "▁mor al",
+ "Ch art",
+ "Char t",
+ "C hart",
+ "▁da mit",
+ "▁dam it",
+ "▁attempt s",
+ "▁d onn",
+ "▁do nn",
+ "▁don n",
+ "jo s",
+ "j os",
+ "▁e re",
+ "▁er e",
+ "▁ ere",
+ "▁hom me",
+ "▁ homme",
+ "si mp",
+ "sim p",
+ "s imp",
+ "rypt ed",
+ "▁act s",
+ "▁ac ts",
+ "inner HTML",
+ "▁tourn ament",
+ "▁s ky",
+ "▁sk y",
+ "▁ sky",
+ "Time r",
+ "Tim er",
+ "T imer",
+ "▁mill ions",
+ "▁million s",
+ "^ +",
+ "ag ent",
+ "age nt",
+ "agen t",
+ "a gent",
+ "') );",
+ "')) ;",
+ "' ));",
+ "▁o st",
+ "▁os t",
+ "▁ ost",
+ "▁g la",
+ "▁gl a",
+ "▁по мо",
+ "▁f ün",
+ "ст вом",
+ "ств ом",
+ "ство м",
+ "ewnę trz",
+ "▁Mé xico",
+ "▁l ub",
+ "▁lu b",
+ "▁ lub",
+ "▁É d",
+ "if ik",
+ "ifi k",
+ "i fik",
+ "че ский",
+ "▁im mer",
+ "▁imm er",
+ "▁ immer",
+ "en sen",
+ "ens en",
+ "ense n",
+ "an ny",
+ "ann y",
+ "in line",
+ "▁g over",
+ "▁go ver",
+ "au c",
+ "a uc",
+ "▁re pre",
+ "▁rep re",
+ "▁repr e",
+ "▁histor ia",
+ "▁hist oria",
+ "A g",
+ "▁p lt",
+ "▁pl t",
+ "▁Pr inci",
+ "▁Prin ci",
+ "im eter",
+ "ime ter",
+ "imet er",
+ "i meter",
+ "ő s",
+ "š e",
+ "▁U E",
+ "▁ UE",
+ "Equ als",
+ "Equal s",
+ "Eq uals",
+ "Dis patch",
+ "le gen",
+ "leg en",
+ "lege n",
+ "l egen",
+ "ла зи",
+ "чно й",
+ "ч ной",
+ "▁st ell",
+ "▁ste ll",
+ "▁ stell",
+ "ń st",
+ "▁c ri",
+ "▁cr i",
+ "▁ cri",
+ "▁In dep",
+ "▁Ind ep",
+ "è de",
+ "}\\ )",
+ "} \\)",
+ "▁w yst",
+ "▁wy st",
+ "▁wys t",
+ "▁fig ured",
+ "▁figure d",
+ "▁figur ed",
+ "AT CH",
+ "éb en",
+ "é ben",
+ "la cht",
+ "lac ht",
+ "lach t",
+ "l acht",
+ "▁succeed ed",
+ "gr y",
+ "g ry",
+ "▁p ret",
+ "▁pr et",
+ "▁pre t",
+ "▁ pret",
+ "▁S af",
+ "▁Sa f",
+ "▁\" );",
+ "▁\") ;",
+ "▁ \");",
+ "e h",
+ "▁offic iel",
+ "▁offici el",
+ "краї н",
+ "wi nd",
+ "win d",
+ "w ind",
+ "▁sc atter",
+ "▁F ox",
+ "▁Fo x",
+ "ic ious",
+ "ici ous",
+ "icio us",
+ "i cious",
+ "Man y",
+ "Ma ny",
+ "M any",
+ "up er",
+ "u per",
+ "▁Con vert",
+ "▁ Convert",
+ "st erd",
+ "ste rd",
+ "ster d",
+ "▁St ein",
+ "▁Ste in",
+ "▁О т",
+ "}^ {(",
+ "}^{ (",
+ "} ^{(",
+ "bet ween",
+ "hi re",
+ "h ire",
+ "▁on Create",
+ "▁ onCreate",
+ "; ",
+ "b ably",
+ "S Y",
+ "mo t",
+ "m ot",
+ "▁D ire",
+ "▁Di re",
+ "▁Dir e",
+ "itect ure",
+ "то й",
+ "▁co ordinate",
+ "▁coordin ate",
+ "▁coord inate",
+ "▁ coordinate",
+ "(\" #",
+ "▁s üd",
+ "O B",
+ "▁m orte",
+ "▁mor te",
+ "▁mort e",
+ "▁we ather",
+ "▁h ely",
+ "▁he ly",
+ "▁hel y",
+ "▁ hely",
+ "▁priv ile",
+ "RE LEASE",
+ "at el",
+ "ate l",
+ "a tel",
+ "▁recogn ized",
+ "▁recognize d",
+ "▁Th ough",
+ "сси й",
+ "mem ory",
+ "▁comp ilation",
+ "bit s",
+ "bi ts",
+ "b its",
+ "▁w ed",
+ "▁we d",
+ "▁ wed",
+ "}} _{",
+ "}}_ {",
+ "} }_{",
+ "▁G UI",
+ "п ня",
+ "▁sou thern",
+ "▁south ern",
+ "▁h ay",
+ "▁ha y",
+ "ov ić",
+ "ovi ć",
+ "o vić",
+ "la uf",
+ "lau f",
+ "l auf",
+ "▁E L",
+ "▁ EL",
+ "▁F ull",
+ "▁Fu ll",
+ "▁Ful l",
+ "▁ Full",
+ "▁Ham burg",
+ "▁Hamb urg",
+ "▁M ittel",
+ "▁Mit tel",
+ "▁Mitte l",
+ "▁Mitt el",
+ "D U",
+ "appro x",
+ "H S",
+ "▁про це",
+ "▁mag azine",
+ "▁M ig",
+ "▁Mi g",
+ "▁click ing",
+ "en tr",
+ "ent r",
+ "▁au tre",
+ "▁aut re",
+ "▁ autre",
+ "▁t é",
+ "▁ té",
+ "▁h á",
+ "▁ há",
+ "ст ы",
+ "с ты",
+ "▁M A",
+ "▁ MA",
+ "ap py",
+ "app y",
+ "a ppy",
+ "st ví",
+ "▁se lon",
+ "▁sel on",
+ "▁g ek",
+ "▁ge k",
+ "▁S l",
+ "▁ Sl",
+ "fr astr",
+ "fra str",
+ "Li b",
+ "L ib",
+ "▁Д у",
+ "▁f acing",
+ "▁fa cing",
+ "▁fac ing",
+ "▁с тар",
+ "▁ст ар",
+ "▁ста р",
+ "▁D utch",
+ "at ar",
+ "ata r",
+ "a tar",
+ "▁ke eps",
+ "▁keep s",
+ "▁Pat rick",
+ "▁Patri ck",
+ "il io",
+ "ili o",
+ "i lio",
+ "▁v ig",
+ "▁vi g",
+ "тв а",
+ "т ва",
+ "▁Feder al",
+ "▁Fed eral",
+ "▁par agraph",
+ "▁para graph",
+ "▁ paragraph",
+ "▁inter action",
+ "▁inte raction",
+ "▁interact ion",
+ "▁occ as",
+ "▁oc cas",
+ "▁I ran",
+ "▁Ir an",
+ "▁Ira n",
+ "▁machine s",
+ "▁mach ines",
+ "(( )",
+ "( ()",
+ "ur ies",
+ "uri es",
+ "u ries",
+ "▁ро ди",
+ "▁род и",
+ "▁ роди",
+ "▁а мерикан",
+ "up p",
+ "u pp",
+ "▁i ce",
+ "▁ic e",
+ "▁ ice",
+ "▁S ay",
+ "▁Sa y",
+ "▁s ail",
+ "▁sa il",
+ "▁B egin",
+ "▁Be gin",
+ "▁Beg in",
+ "▁ Begin",
+ "fi co",
+ "fic o",
+ "f ico",
+ "og a",
+ "o ga",
+ "▁d esar",
+ "▁des ar",
+ "▁d v",
+ "▁ра ди",
+ "oh en",
+ "o hen",
+ "er ei",
+ "ere i",
+ "e rei",
+ "án ak",
+ "á nak",
+ "▁d aar",
+ "▁da ar",
+ "if iers",
+ "ifier s",
+ "ifi ers",
+ "ifie rs",
+ "▁th ee",
+ "▁the e",
+ "▁by la",
+ "▁byl a",
+ "ва ла",
+ "вал а",
+ "в ала",
+ "an dro",
+ "and ro",
+ "andr o",
+ "▁м оло",
+ "▁мо ло",
+ "▁tot ally",
+ "▁total ly",
+ "io m",
+ "i om",
+ "▁a er",
+ "ns ylvan",
+ "▁cor ps",
+ "▁tre ated",
+ "▁treat ed",
+ "▁com une",
+ "▁comun e",
+ "M ich",
+ "vo ice",
+ "pg f",
+ "▁a nx",
+ "▁an x",
+ "▁Phil ip",
+ "▁Phili p",
+ "▁e k",
+ "▁ ek",
+ "▁Men schen",
+ "▁Mens chen",
+ "▁d ere",
+ "▁de re",
+ "▁der e",
+ "▁per met",
+ "▁perm et",
+ "Ma il",
+ "M ail",
+ "▁V é",
+ "en ted",
+ "ent ed",
+ "ente d",
+ "▁b unch",
+ "▁P iet",
+ "▁Pi et",
+ "▁Pie t",
+ "att ach",
+ "atta ch",
+ "▁p orte",
+ "▁por te",
+ "▁port e",
+ "▁ porte",
+ "да т",
+ "д ат",
+ "▁Brit ain",
+ "Enc oding",
+ "▁` <",
+ "Sp ace",
+ "S pace",
+ "▁r ap",
+ "▁ra p",
+ "▁ rap",
+ "▁pop ul",
+ "fl oor",
+ "f loor",
+ "spec ific",
+ "cle an",
+ "c lean",
+ "▁con qu",
+ "f b",
+ "▁introdu ce",
+ "▁Ent ity",
+ "▁ Entity",
+ "▁er folg",
+ "▁erf olg",
+ "at ol",
+ "ato l",
+ "a tol",
+ "ient os",
+ "iento s",
+ "ки педи",
+ "▁U t",
+ "▁б ри",
+ "▁ бри",
+ "ed uler",
+ "edu ler",
+ "edule r",
+ "▁conc entr",
+ "▁concent r",
+ "▁c her",
+ "▁ch er",
+ "▁che r",
+ "▁ cher",
+ "▁up grade",
+ "▁upgrad e",
+ "▁p ictures",
+ "▁picture s",
+ "▁Famil ie",
+ "M us",
+ "Lo ok",
+ "L ook",
+ "▁e ran",
+ "▁er an",
+ "▁era n",
+ "▁g ram",
+ "▁gr am",
+ "▁gra m",
+ "▁ gram",
+ "▁W o",
+ "np m",
+ "n pm",
+ "▁Sal v",
+ "▁Sa lv",
+ "▁c d",
+ "▁ cd",
+ "▁В ы",
+ "wa hl",
+ "w ahl",
+ "tr ain",
+ "tra in",
+ "t rain",
+ "ch em",
+ "che m",
+ "c hem",
+ "▁P il",
+ "▁Pi l",
+ "▁Con nect",
+ "▁ Connect",
+ "č e",
+ "▁h ast",
+ "▁ha st",
+ "▁has t",
+ "▁Mult i",
+ "▁Mul ti",
+ "▁ Multi",
+ "at ta",
+ "att a",
+ "a tta",
+ "▁S ound",
+ "▁So und",
+ "▁Sou nd",
+ "▁ Sound",
+ "sol ute",
+ "▁qu ote",
+ "▁quot e",
+ "▁ quote",
+ "▁o bst",
+ "▁ob st",
+ "▁obs t",
+ "cc iones",
+ "ccion es",
+ "c ciones",
+ "ib ly",
+ "▁b rand",
+ "▁br and",
+ "▁bra nd",
+ "▁bran d",
+ "▁ brand",
+ "▁convers ation",
+ "▁to utes",
+ "▁tout es",
+ "▁tou tes",
+ "▁toute s",
+ "▁R ub",
+ "▁Ru b",
+ "ie nia",
+ "ien ia",
+ "i enia",
+ "ir it",
+ "iri t",
+ "i rit",
+ "▁А нд",
+ "▁Ан д",
+ "edu led",
+ "edule d",
+ "▁T otal",
+ "▁To tal",
+ "▁Tot al",
+ "▁ Total",
+ "Di g",
+ "D ig",
+ "er em",
+ "ere m",
+ "e rem",
+ "▁s ki",
+ "▁sk i",
+ "▁ ski",
+ "De st",
+ "Des t",
+ "D est",
+ "Y Y",
+ "е ди",
+ "al y",
+ "a ly",
+ "▁back end",
+ "▁ backend",
+ "ul us",
+ "ulu s",
+ "u lus",
+ "▁feature d",
+ "▁person n",
+ "▁pers onn",
+ "▁sc hon",
+ "▁sch on",
+ "tr ace",
+ "tra ce",
+ "t race",
+ "▁I DE",
+ "▁ID E",
+ "▁ IDE",
+ "á j",
+ "▁anim als",
+ "▁animal s",
+ "▁ani mals",
+ "▁s now",
+ "▁sn ow",
+ "uv e",
+ "u ve",
+ "uer to",
+ "▁d rew",
+ "▁dr ew",
+ "▁dre w",
+ "▁Ye ah",
+ "▁S v",
+ "\\, \\",
+ "\\ ,\\",
+ "▁S erie",
+ "▁Se rie",
+ "▁Ser ie",
+ "▁second o",
+ "▁sec ondo",
+ "▁Leb ens",
+ "▁Leben s",
+ "▁acc ord",
+ "▁ac cord",
+ "▁C et",
+ "▁Ce t",
+ "er ade",
+ "era de",
+ "e rade",
+ "▁desp ite",
+ "▁C arlo",
+ "▁Car lo",
+ "▁Carl o",
+ "▁z ewnętrz",
+ "▁l ista",
+ "▁li sta",
+ "▁list a",
+ "▁ lista",
+ "ni co",
+ "nic o",
+ "n ico",
+ "▁Corpor ation",
+ "vs pace",
+ "v space",
+ "▁вой ны",
+ "▁st ands",
+ "▁stand s",
+ "▁stan ds",
+ "▁wor se",
+ "▁sim ult",
+ "▁si mult",
+ "▁pract ical",
+ "CO L",
+ "C OL",
+ "ch anged",
+ "change d",
+ "chan ged",
+ "▁Исто рия",
+ "б ри",
+ "in do",
+ "ind o",
+ "▁Lew is",
+ "▁pattern s",
+ "if ica",
+ "ific a",
+ "ifi ca",
+ "i fica",
+ "▁s mart",
+ "▁sm art",
+ "▁concern ed",
+ "ți i",
+ "ț ii",
+ "▁H ello",
+ "▁Hel lo",
+ "▁Hell o",
+ "▁ Hello",
+ "re ll",
+ "rel l",
+ "r ell",
+ "▁L ex",
+ "▁Le x",
+ "▁в то",
+ "▁cond itional",
+ "▁condition al",
+ "ot ted",
+ "ott ed",
+ "otte d",
+ "▁sh oot",
+ "▁sho ot",
+ "▁W ed",
+ "▁We d",
+ "▁мар та",
+ "au d",
+ "a ud",
+ "▁an te",
+ "▁ant e",
+ "▁ ante",
+ "ien tras",
+ "ient ras",
+ "▁p apers",
+ "▁pa pers",
+ "▁pap ers",
+ "▁paper s",
+ "▁port ug",
+ "▁Man agement",
+ "▁ Management",
+ "▁exerc ise",
+ "▁Begr iff",
+ "com mit",
+ "comm it",
+ "▁render ing",
+ "▁rend ering",
+ "▁rende ring",
+ "▁c zas",
+ "▁cz as",
+ "▁ czas",
+ "Dr op",
+ "D rop",
+ "er g",
+ "e rg",
+ "▁m ul",
+ "▁mu l",
+ "▁ mul",
+ "▁T an",
+ "▁Ta n",
+ "ie ro",
+ "ier o",
+ "i ero",
+ "▁loc ale",
+ "▁local e",
+ "▁ locale",
+ "▁in aug",
+ "du mp",
+ "d ump",
+ "ци й",
+ "▁symbol s",
+ "in ta",
+ "int a",
+ "▁aw arded",
+ "▁award ed",
+ "▁s ust",
+ "▁su st",
+ "▁sus t",
+ "▁S end",
+ "▁Se nd",
+ "▁Sen d",
+ "▁ Send",
+ "ї в",
+ "Re st",
+ "Res t",
+ "R est",
+ "zt en",
+ "zte n",
+ "z ten",
+ "ли м",
+ "л им",
+ "ri val",
+ "riv al",
+ "r ival",
+ "PO RT",
+ "P ORT",
+ "öl ker",
+ "im ately",
+ "imate ly",
+ "imat ely",
+ "ig te",
+ "igt e",
+ "ч ных",
+ "▁ter ra",
+ "▁ terra",
+ "ög lich",
+ "▁H om",
+ "▁Ho m",
+ "▁ Hom",
+ "▁h ex",
+ "▁he x",
+ "▁ hex",
+ "do ne",
+ "don e",
+ "d one",
+ "am ps",
+ "amp s",
+ "▁c et",
+ "▁ce t",
+ "PR E",
+ "P RE",
+ "ös t",
+ "ö st",
+ "▁fem me",
+ "Se lection",
+ "Select ion",
+ "▁z aw",
+ "▁za w",
+ "sp r",
+ "s pr",
+ "▁horse s",
+ "▁hors es",
+ "▁s nap",
+ "▁sn ap",
+ "Text Box",
+ "▁E clipse",
+ "ul le",
+ "ull e",
+ "u lle",
+ "ow ym",
+ "owy m",
+ "▁c omer",
+ "▁com er",
+ "▁co mer",
+ "▁come r",
+ "ne cess",
+ "co ok",
+ "c ook",
+ "en ger",
+ "eng er",
+ "-- >",
+ "- ->",
+ "▁p ří",
+ "▁př í",
+ "pan das",
+ "p andas",
+ "▁P lus",
+ "▁Pl us",
+ "▁ Plus",
+ "yl l",
+ "y ll",
+ "▁t error",
+ "▁te rror",
+ "▁ter ror",
+ "▁c rim",
+ "▁cr im",
+ "▁cri m",
+ "▁z ak",
+ "▁za k",
+ "▁ zak",
+ "iss ue",
+ "pa nel",
+ "pan el",
+ "p anel",
+ "sv g",
+ "▁re b",
+ "▁r eb",
+ "▁ reb",
+ "Custom er",
+ "sw itch",
+ "об ра",
+ "о бра",
+ "▁Champion ships",
+ "▁Championship s",
+ "▁Champions hips",
+ "cl o",
+ "c lo",
+ "at te",
+ "att e",
+ "a tte",
+ "▁any more",
+ "▁excell ent",
+ "▁opport unity",
+ "▁opportun ity",
+ "▁B ahn",
+ "▁Ba hn",
+ "▁Bah n",
+ "чи н",
+ "ч ин",
+ "et ing",
+ "eti ng",
+ "e ting",
+ "▁inc ident",
+ "to m",
+ "t om",
+ "Per s",
+ "Pe rs",
+ "P ers",
+ "bb en",
+ "bbe n",
+ "b ben",
+ "ствен ной",
+ "ственно й",
+ "и х",
+ "ro uter",
+ "route r",
+ "rout er",
+ "rou ter",
+ "r outer",
+ "▁new ly",
+ "▁sil ence",
+ "▁G NU",
+ "▁R ails",
+ "▁Ra ils",
+ "▁Rail s",
+ "▁A mb",
+ "▁Am b",
+ "▁Q ual",
+ "▁Qu al",
+ "▁ Qual",
+ "▁Sch aus",
+ "▁Sc haus",
+ "▁S ohn",
+ "▁So hn",
+ "▁A LL",
+ "▁AL L",
+ "▁ ALL",
+ "▁ro yal",
+ "▁roy al",
+ "▁ £",
+ "wi ę",
+ "w ię",
+ "▁ent fer",
+ "▁Re move",
+ "▁Rem ove",
+ "▁ Remove",
+ "▁hard ly",
+ "Us ing",
+ "U sing",
+ "ло г",
+ "▁I ch",
+ "▁d erni",
+ "▁der ni",
+ "▁Con nection",
+ "▁Connect ion",
+ "▁ Connection",
+ "fi sh",
+ "f ish",
+ "▁In form",
+ "▁Inf orm",
+ "▁Info rm",
+ "▁E ner",
+ "▁En er",
+ "ro it",
+ "r oit",
+ "B bb",
+ "View Model",
+ "V ideo",
+ "il ey",
+ "ile y",
+ "i ley",
+ "▁м ного",
+ "▁мно го",
+ "▁G em",
+ "▁Ge m",
+ "▁comp reh",
+ "▁compr eh",
+ "en umerate",
+ "ul as",
+ "ula s",
+ "u las",
+ "▁B ah",
+ "▁Ba h",
+ "▁Y et",
+ "▁Ye t",
+ "B R",
+ "х ра",
+ "▁count y",
+ "▁coun ty",
+ "▁H ist",
+ "▁His t",
+ "▁Hi st",
+ "▁Г у",
+ "▁ Ј",
+ "▁m ari",
+ "▁ma ri",
+ "▁mar i",
+ "▁C lar",
+ "▁Cl ar",
+ "▁Cla r",
+ "Bit map",
+ "B itmap",
+ "▁C z",
+ "▁m ån",
+ "▁må n",
+ "▁m ere",
+ "▁me re",
+ "▁mer e",
+ "▁mus ique",
+ "al so",
+ "als o",
+ "date s",
+ "da tes",
+ "dat es",
+ "d ates",
+ "▁D VD",
+ "▁g ol",
+ "▁go l",
+ "fo ny",
+ "fon y",
+ "f ony",
+ "▁Cast le",
+ "▁фа ми",
+ "▁arr ang",
+ "▁Bus iness",
+ "▁K az",
+ "▁Ka z",
+ "▁o sc",
+ "▁os c",
+ "▁ osc",
+ "▁se colo",
+ "▁sec olo",
+ "▁aff ected",
+ "▁affect ed",
+ "▁He alth",
+ "re b",
+ "r eb",
+ "ed itor",
+ "edit or",
+ "edi tor",
+ "▁own ed",
+ "▁ow ned",
+ "▁ owned",
+ "t l",
+ "▁v í",
+ "▁ ví",
+ "чни х",
+ "ч них",
+ "к ви",
+ "▁dev ient",
+ "▁devi ent",
+ "M utable",
+ "▁t egen",
+ "▁te gen",
+ "Reg ister",
+ "є ю",
+ "▁car acter",
+ "лл и",
+ "л ли",
+ "▁n ouvelle",
+ "▁nouve lle",
+ "ok o",
+ "o ko",
+ "icht et",
+ "ichte t",
+ "▁e vol",
+ "▁ev ol",
+ "▁H ab",
+ "▁Ha b",
+ "▁mil itar",
+ "▁milit ar",
+ "▁p uts",
+ "▁put s",
+ "▁pu ts",
+ "end if",
+ "endi f",
+ "▁Dav is",
+ "▁Da vis",
+ "▁Scot land",
+ "reg ular",
+ "▁Con text",
+ "▁Cont ext",
+ "▁ Context",
+ "is piel",
+ "isp iel",
+ "i spiel",
+ "▁G allery",
+ "▁Gall ery",
+ "\", \r",
+ "\" ,\r",
+ "▁a rc",
+ "▁ar c",
+ "▁ arc",
+ "▁IN FO",
+ "▁ INFO",
+ "▁c od",
+ "▁co d",
+ "▁ cod",
+ "ді в",
+ "д ів",
+ "▁v archar",
+ "▁var char",
+ "▁ varchar",
+ "▁tou jours",
+ "at ial",
+ "ati al",
+ "atia l",
+ "▁h anno",
+ "▁han no",
+ "▁проф ес",
+ "▁launch ed",
+ "▁насе лення",
+ "▁t on",
+ "▁to n",
+ "▁ ton",
+ "au sed",
+ "ause d",
+ "aus ed",
+ "a used",
+ "▁і з",
+ "▁t ö",
+ "▁P ur",
+ "▁Pu r",
+ "▁o lymp",
+ "AR N",
+ "ó m",
+ "▁a ugust",
+ "▁aug ust",
+ "▁f urn",
+ "▁fur n",
+ "▁fu rn",
+ "▁Col omb",
+ "▁Sta ats",
+ "▁Staat s",
+ "ho ra",
+ "hor a",
+ "h ora",
+ "▁м ор",
+ "▁мо р",
+ "▁ мор",
+ "can vas",
+ "▁gr ave",
+ "▁gra ve",
+ "▁grav e",
+ "▁com position",
+ "▁comp osition",
+ "▁compos ition",
+ "ac ja",
+ "▁которы е",
+ "▁ч о",
+ "▁ чо",
+ "Gener al",
+ "Gen eral",
+ "ан і",
+ "а ні",
+ "▁Joh annes",
+ "▁Johann es",
+ "▁Johan nes",
+ "ка р",
+ "к ар",
+ "▁ча ст",
+ "▁час т",
+ "▁Ва си",
+ "ss h",
+ "s sh",
+ "▁repla cing",
+ "▁< >",
+ "▁ <>",
+ "ці в",
+ "ц ів",
+ "la us",
+ "lau s",
+ "l aus",
+ "en y",
+ "e ny",
+ "äh l",
+ "ä hl",
+ "▁m arg",
+ "▁ma rg",
+ "▁mar g",
+ "ci ence",
+ "c ience",
+ "▁inst ruction",
+ "▁instru ction",
+ "▁instruct ion",
+ "▁ко ји",
+ "Ed itor",
+ "Edit or",
+ "▁fund amental",
+ "mu nd",
+ "mun d",
+ "m und",
+ "▁exception s",
+ "▁except ions",
+ "▁p late",
+ "▁pl ate",
+ "▁pla te",
+ "▁plat e",
+ "▁ plate",
+ "▁L is",
+ "▁Li s",
+ "▁d eren",
+ "▁de ren",
+ "▁der en",
+ "▁dere n",
+ "pr ep",
+ "pre p",
+ "p rep",
+ "▁janu ari",
+ "Sc ope",
+ "S cope",
+ "yn ast",
+ "yna st",
+ "r v",
+ "or sz",
+ "ors z",
+ "▁T ony",
+ "▁To ny",
+ "▁Ton y",
+ "▁д і",
+ "▁ ді",
+ "▁о дна",
+ "▁од на",
+ "▁s ab",
+ "▁sa b",
+ "ot i",
+ "o ti",
+ "je l",
+ "j el",
+ "▁gener ator",
+ "▁ generator",
+ "▁' .",
+ "▁ '.",
+ "▁sh arp",
+ "▁ sharp",
+ "▁то лько",
+ "▁account s",
+ "▁ž e",
+ "▁ že",
+ "▁for am",
+ "▁fo ram",
+ "▁g ouvern",
+ "TI ME",
+ "T IME",
+ "▁Sov iet",
+ "▁G é",
+ "▁ex ped",
+ "▁exp ed",
+ "▁ord inary",
+ "▁ordin ary",
+ "▁ ordinary",
+ "▁Con serv",
+ "▁Cons erv",
+ "▁Conse rv",
+ "▁com pla",
+ "▁comp la",
+ "▁compl a",
+ "te i",
+ "t ei",
+ "▁cap tain",
+ "▁capt ain",
+ "▁Sam uel",
+ "▁D ark",
+ "▁Dar k",
+ "▁в ін",
+ "▁ві н",
+ "▁de light",
+ "▁del ight",
+ "re cht",
+ "rec ht",
+ "di a",
+ "d ia",
+ "ess es",
+ "esse s",
+ "ul p",
+ "u lp",
+ "ш ки",
+ "be z",
+ "b ez",
+ "▁det ection",
+ "▁detect ion",
+ "▁cook ie",
+ "▁ cookie",
+ "an try",
+ "ant ry",
+ "Mult i",
+ "ob a",
+ "o ba",
+ "▁j oy",
+ "▁jo y",
+ "▁safe ty",
+ "▁saf ety",
+ "| ^",
+ "po d",
+ "p od",
+ "ad ém",
+ "▁Ch ron",
+ "▁Chr on",
+ "▁D jango",
+ "▁Dj ango",
+ "▁ehem al",
+ "k h",
+ "è le",
+ "▁p oc",
+ "▁po c",
+ "B ottom",
+ "la unch",
+ "ne m",
+ "n em",
+ "▁G ROUP",
+ "▁ GROUP",
+ "ní ho",
+ "▁G ib",
+ "▁Gi b",
+ "sd k",
+ "s dk",
+ "B E",
+ "▁G ene",
+ "▁Ge ne",
+ "▁Gen e",
+ "▁St aff",
+ "▁Sta ff",
+ "▁subsequ ent",
+ "ic ion",
+ "ici on",
+ "icio n",
+ "i cion",
+ "▁vict ory",
+ "▁c anon",
+ "▁can on",
+ "▁ca non",
+ "iz ar",
+ "iza r",
+ "i zar",
+ "iz ia",
+ "izi a",
+ "i zia",
+ "▁m ate",
+ "▁ma te",
+ "▁mat e",
+ "▁ mate",
+ "▁lay ers",
+ "▁layer s",
+ "▁ layers",
+ "su do",
+ "s udo",
+ "sch ule",
+ "per iment",
+ "ül et",
+ "ü let",
+ "AR CHAR",
+ "▁тер рито",
+ "▁me asures",
+ "▁measure s",
+ "▁meas ures",
+ "▁z ou",
+ "▁zo u",
+ "ops is",
+ "на ми",
+ "tb ody",
+ "t body",
+ "▁e se",
+ "▁es e",
+ "▁ ese",
+ "ster dam",
+ "sterd am",
+ "▁ph oto",
+ "▁phot o",
+ "▁ photo",
+ "ynchron ous",
+ "set minus",
+ "▁lo ads",
+ "▁load s",
+ "▁ loads",
+ "▁ple asure",
+ "▁me ille",
+ "}\\ ,",
+ "} \\,",
+ "qu al",
+ "qua l",
+ "q ual",
+ "▁fav our",
+ "▁r od",
+ "▁ro d",
+ "▁ rod",
+ "De r",
+ "D er",
+ "ра бо",
+ "раб о",
+ "▁pr essed",
+ "▁pres sed",
+ "▁press ed",
+ "▁ pressed",
+ "r ę",
+ "ie ving",
+ "iev ing",
+ "mate rial",
+ "m aterial",
+ "vi rt",
+ "vir t",
+ "v irt",
+ "▁cap able",
+ "с ло",
+ "us hed",
+ "ush ed",
+ "▁по бе",
+ "uset ts",
+ "un signed",
+ "uns igned",
+ "k ów",
+ "▁o v",
+ "▁ ov",
+ "eg eben",
+ "ege ben",
+ "e geben",
+ "▁app lying",
+ "▁apply ing",
+ "▁gal ax",
+ "▁ga lax",
+ "▁O racle",
+ "▁Or acle",
+ "▁Stutt gart",
+ "In fl",
+ "Inf l",
+ "ach usetts",
+ "▁de el",
+ "li re",
+ "l ire",
+ "▁stat unit",
+ "▁Polit iker",
+ "▁Politik er",
+ "▁beaut y",
+ ") >",
+ "▁Columb ia",
+ "▁zewnętrz ne",
+ "▁про гра",
+ "▁пр огра",
+ "▁d x",
+ "▁ dx",
+ "ck now",
+ "c know",
+ "▁d ub",
+ "▁du b",
+ "un ächst",
+ "find ViewById",
+ "▁M and",
+ "▁Man d",
+ "▁Ma nd",
+ "ál l",
+ "á ll",
+ "na ire",
+ "n aire",
+ "▁dest in",
+ "is ting",
+ "ist ing",
+ "isti ng",
+ "ag gi",
+ "agg i",
+ "a ggi",
+ "ch art",
+ "char t",
+ "cha rt",
+ "c hart",
+ "▁just ice",
+ "Sim ple",
+ "▁un fortunately",
+ "і р",
+ "▁qu esta",
+ "▁que sta",
+ "▁quest a",
+ "▁ questa",
+ "▁Govern or",
+ "я в",
+ "▁mús ica",
+ "▁equ ipo",
+ "▁equip o",
+ "▁D est",
+ "▁De st",
+ "▁Des t",
+ "▁ Dest",
+ "el ect",
+ "ele ct",
+ "e lect",
+ "Stack Trace",
+ "зо м",
+ "з ом",
+ "pr oc",
+ "pro c",
+ "p roc",
+ "ent in",
+ "enti n",
+ "ad ora",
+ "ado ra",
+ "ador a",
+ "▁Л ю",
+ "▁register ed",
+ "H L",
+ "face book",
+ "fac ebook",
+ "▁st oring",
+ "▁stor ing",
+ "▁sto ring",
+ "▁Current ly",
+ "▁qu adr",
+ "▁quad r",
+ "Stand ard",
+ "tr im",
+ "tri m",
+ "t rim",
+ "ear s",
+ "ea rs",
+ "e ars",
+ "se nder",
+ "sen der",
+ "send er",
+ "s ender",
+ "▁V as",
+ "▁Va s",
+ "▁ed ific",
+ "▁B ür",
+ "▁Bü r",
+ "▁C ountry",
+ "▁Count ry",
+ "▁Coun try",
+ "▁ Country",
+ "th a",
+ "t ha",
+ "; \"",
+ "no r",
+ "n or",
+ "▁Do ctor",
+ "▁Doc tor",
+ "ru ment",
+ "rum ent",
+ "r ument",
+ "Ge n",
+ "G en",
+ "▁B uen",
+ "▁Bu en",
+ "ra de",
+ "rad e",
+ "r ade",
+ "▁k un",
+ "n avigation",
+ "Pa y",
+ "P ay",
+ "▁capt ured",
+ "▁capture d",
+ "▁st ruck",
+ "▁str uck",
+ "▁stru ck",
+ "ven ir",
+ "ém ent",
+ "é ment",
+ "▁T ree",
+ "▁Tr ee",
+ "▁Tre e",
+ "▁ Tree",
+ "▁x x",
+ "▁ xx",
+ "▁n arr",
+ "▁na rr",
+ "▁nar r",
+ "ль ного",
+ "льно го",
+ "▁inst alling",
+ "▁install ing",
+ "▁instal ling",
+ "▁associ ation",
+ "▁insert ed",
+ "▁inser ted",
+ "er ner",
+ "ern er",
+ "erne r",
+ "valid ate",
+ "▁l ut",
+ "▁lu t",
+ "▁g lo",
+ "▁gl o",
+ "▁techn ology",
+ "▁P lace",
+ "▁Pl ace",
+ "▁Pla ce",
+ "▁ Place",
+ "$ ?",
+ "▁z v",
+ "с лі",
+ "E P",
+ "▁at mos",
+ "ug o",
+ "u go",
+ "ér t",
+ "é rt",
+ "▁W erk",
+ "▁Wer k",
+ "▁% }",
+ "te le",
+ "tel e",
+ "t ele",
+ "Sp an",
+ "S pan",
+ "▁R aj",
+ "▁Ra j",
+ "▁Person en",
+ "▁Pers onen",
+ "▁C ant",
+ "▁Can t",
+ "▁Ca nt",
+ "▁com bat",
+ "▁comb at",
+ "▁observ ation",
+ "▁obs ervation",
+ "param eter",
+ "para meter",
+ "▁agre ed",
+ "▁agree d",
+ "▁agr eed",
+ "pu r",
+ "p ur",
+ "▁sh adow",
+ "▁ shadow",
+ "▁g ł",
+ "Key s",
+ "Ke ys",
+ "Cre d",
+ "Cr ed",
+ "C red",
+ "ou ri",
+ "our i",
+ "o uri",
+ "▁p ale",
+ "▁pa le",
+ "▁pal e",
+ "ic ké",
+ "ick é",
+ "▁We ek",
+ "▁ Week",
+ "▁Pr ime",
+ "▁Pri me",
+ "▁Prim e",
+ "> .",
+ "Init ial",
+ "▁о дин",
+ "▁од ин",
+ "▁' ',",
+ "▁'' ,",
+ "▁у чи",
+ "▁In v",
+ "▁ Inv",
+ "col a",
+ "co la",
+ "c ola",
+ "ci ble",
+ "c ible",
+ "▁The atre",
+ "▁b em",
+ "▁be m",
+ "▁satisf y",
+ "x l",
+ "▁ра зви",
+ "▁раз ви",
+ "▁p ixel",
+ "▁pix el",
+ "lá n",
+ "l án",
+ "▁tw ee",
+ "▁twe e",
+ "ço n",
+ "ç on",
+ "не ния",
+ "▁A T",
+ "▁ AT",
+ "èg e",
+ "è ge",
+ "▁M ort",
+ "▁Mor t",
+ "▁Mo rt",
+ "▁my sq",
+ "▁ mysq",
+ "ft en",
+ "fte n",
+ "f ten",
+ "▁п ес",
+ "▁пе с",
+ "ém a",
+ "é ma",
+ "▁Service s",
+ "▁Serv ices",
+ "▁ Services",
+ "custom er",
+ "▁A WS",
+ "ъ т",
+ "▁A ch",
+ "▁Ac h",
+ "% .",
+ "▁clar ify",
+ "▁уни версите",
+ "xt ure",
+ "um i",
+ "u mi",
+ "▁s å",
+ "▁P el",
+ "▁Pe l",
+ "se rial",
+ "ser ial",
+ "UR I",
+ "U RI",
+ "▁r g",
+ "▁ rg",
+ "▁со ста",
+ "ch estra",
+ "che stra",
+ "ches tra",
+ "]. [",
+ "] .[",
+ "we n",
+ "w en",
+ "▁Lond res",
+ "▁an ys",
+ "▁any s",
+ "Data Source",
+ "▁рай оне",
+ "▁райо не",
+ "▁район е",
+ "▁re in",
+ "▁r ein",
+ "▁rei n",
+ "▁met adata",
+ "▁meta data",
+ "▁ metadata",
+ "um ble",
+ "umb le",
+ "ar beit",
+ "arbe it",
+ "hn er",
+ "h ner",
+ "ci ent",
+ "cie nt",
+ "c ient",
+ "▁n orte",
+ "▁nor te",
+ "▁о на",
+ "▁он а",
+ "▁ она",
+ "▁sc ored",
+ "▁score d",
+ "▁r ay",
+ "▁ra y",
+ "▁ ray",
+ "▁фев ра",
+ "▁фе вра",
+ "▁pro tagon",
+ "▁prot agon",
+ "▁S ac",
+ "▁Sa c",
+ "▁comm only",
+ "▁common ly",
+ "Linear Layout",
+ "▁app lic",
+ "▁ма я",
+ "З а",
+ "▁access ible",
+ "ie wer",
+ "iew er",
+ "fl ag",
+ "f lag",
+ "▁R ück",
+ "ä u",
+ "▁e rano",
+ "▁er ano",
+ "▁era no",
+ "▁eran o",
+ "▁auth entic",
+ "▁ authentic",
+ "▁R y",
+ "▁не ско",
+ "▁emb argo",
+ "▁embar go",
+ "▁d ry",
+ "▁dr y",
+ "▁reason able",
+ "▁Mod ule",
+ "▁ Module",
+ "▁acc eler",
+ "▁inter view",
+ "▁C reek",
+ "▁Cre ek",
+ "▁al pha",
+ "▁ alpha",
+ "se rie",
+ "ser ie",
+ "s erie",
+ "Th ey",
+ "The y",
+ "ю чи",
+ "▁H of",
+ "▁Ho f",
+ "▁C R",
+ "▁ CR",
+ "mod al",
+ "mo dal",
+ "▁sequence s",
+ "▁sequ ences",
+ "cl osed",
+ "close d",
+ "clos ed",
+ "clo sed",
+ ")} $",
+ ") }$",
+ "▁Ч ер",
+ "▁Че р",
+ "▁OR DER",
+ "▁ ORDER",
+ "Right arrow",
+ "R ightarrow",
+ "haus en",
+ "}} _",
+ "} }_",
+ "▁tamb é",
+ "▁magn etic",
+ "▁magnet ic",
+ "▁Mc C",
+ "▁win ning",
+ "under line",
+ "▁Bill board",
+ "na io",
+ "▁l iqu",
+ "▁li qu",
+ "▁ liqu",
+ "display style",
+ "time out",
+ "▁consider able",
+ "▁e ben",
+ "▁eb en",
+ "▁ eben",
+ "iffer ent",
+ "iffe rent",
+ "an u",
+ "a nu",
+ "▁С ов",
+ "▁Со в",
+ "[ (",
+ "▁: -)",
+ "▁:- )",
+ "le itung",
+ "form ed",
+ "for med",
+ "▁Man ager",
+ "▁ Manager",
+ "▁on click",
+ "T Y",
+ "та х",
+ "C V",
+ "run time",
+ "r untime",
+ "po que",
+ "▁Л о",
+ "Tem p",
+ "Te mp",
+ "T emp",
+ "lo aded",
+ "load ed",
+ "▁! ==",
+ "▁!= =",
+ "▁s inger",
+ "▁sing er",
+ "▁sin ger",
+ "fa r",
+ "f ar",
+ "▁Com ple",
+ "▁Comp le",
+ "▁ Comple",
+ "▁Ö sterreich",
+ "Pol icy",
+ "▁work er",
+ "▁wor ker",
+ "▁ worker",
+ "W rapper",
+ "ob i",
+ "o bi",
+ "▁discuss ed",
+ "▁b uy",
+ "▁bu y",
+ "▁янва ря",
+ "▁D in",
+ "▁Di n",
+ "▁g ed",
+ "▁ge d",
+ "▁ ged",
+ "ско ј",
+ "E urope",
+ "▁t all",
+ "▁tal l",
+ "▁ta ll",
+ "ho s",
+ "h os",
+ "ла го",
+ "▁B lock",
+ "▁Bl ock",
+ "▁Blo ck",
+ "▁ Block",
+ "▁ident ified",
+ "List View",
+ "▁attempt ing",
+ "▁typ ical",
+ "ps um",
+ "p sum",
+ "os ter",
+ "ost er",
+ "o ster",
+ "▁ж урна",
+ "P e",
+ "mer ce",
+ "▁un expected",
+ "hu i",
+ "h ui",
+ "let ter",
+ "lett er",
+ "lette r",
+ "l etter",
+ "▁nue vo",
+ "▁а бо",
+ "▁VAL UES",
+ "▁I z",
+ "Fl ags",
+ "Flag s",
+ "▁TR UE",
+ "▁ TRUE",
+ "iz ación",
+ "iza ción",
+ "▁gro wing",
+ "▁grow ing",
+ "es tre",
+ "est re",
+ "estr e",
+ "e stre",
+ "▁p oly",
+ "▁po ly",
+ "▁pol y",
+ "▁ poly",
+ "▁St one",
+ "▁Sto ne",
+ "▁V III",
+ "▁VI II",
+ "▁VII I",
+ "▁local host",
+ "▁ localhost",
+ "äh lt",
+ "ähl t",
+ "▁embed ded",
+ "jd bc",
+ "j dbc",
+ "▁con vention",
+ "▁conv ention",
+ "▁conven tion",
+ "▁convent ion",
+ "▁s cala",
+ "▁sc ala",
+ "▁scal a",
+ "▁ scala",
+ "со к",
+ "с ок",
+ "▁an alog",
+ "▁anal og",
+ "▁\" +",
+ "▁ \"+",
+ "ц ю",
+ "oc c",
+ "o cc",
+ "▁l itt",
+ "▁li tt",
+ "▁lit t",
+ "P N",
+ "▁а ктив",
+ "▁ак тив",
+ "att ributes",
+ "attribute s",
+ "▁F erd",
+ "▁Fe rd",
+ "▁Fer d",
+ "▁az ure",
+ "▁ azure",
+ "ș ti",
+ "ño s",
+ "ñ os",
+ "pi ng",
+ "pin g",
+ "p ing",
+ "▁te acher",
+ "▁teach er",
+ "▁tea cher",
+ "} &",
+ "ip e",
+ "i pe",
+ "▁N ob",
+ "▁No b",
+ "▁и ма",
+ "▁им а",
+ "Bi nd",
+ "B ind",
+ "▁mag ic",
+ "▁Trans port",
+ "▁ Transport",
+ "ix el",
+ "▁comp uted",
+ "▁comput ed",
+ "▁compute d",
+ "ag na",
+ "agn a",
+ "er st",
+ "ers t",
+ "H A",
+ "W ait",
+ "▁author s",
+ "▁auth ors",
+ "▁; )",
+ "cl am",
+ "cla m",
+ "c lam",
+ "▁Pen nsylvan",
+ "▁d rug",
+ "▁dr ug",
+ "▁dru g",
+ "▁v ain",
+ "▁va in",
+ "▁employ ed",
+ "▁individ uals",
+ "▁individual s",
+ "▁an ge",
+ "▁ang e",
+ "▁ ange",
+ "ut at",
+ "uta t",
+ "u tat",
+ "▁$ -",
+ "▁ $-",
+ "cor rect",
+ "corr ect",
+ "▁exper iments",
+ "▁experiment s",
+ "Arg ument",
+ "▁I B",
+ "▁ IB",
+ "▁p ère",
+ "▁B rian",
+ "▁Br ian",
+ "ber ger",
+ "berg er",
+ "Ma c",
+ "M ac",
+ "ia st",
+ "ias t",
+ "i ast",
+ "Per m",
+ "Pe rm",
+ "P erm",
+ "Ca st",
+ "C ast",
+ "▁{ };",
+ "▁{} ;",
+ "▁St udent",
+ "▁Stud ent",
+ "▁Stu dent",
+ "▁ Student",
+ "▁st att",
+ "▁stat t",
+ "▁sta tt",
+ "al gebra",
+ "▁equ als",
+ "▁equal s",
+ "▁eq uals",
+ "▁ equals",
+ "▁pro jet",
+ "▁prés ident",
+ "Activity Thread",
+ "▁ein z",
+ "en ia",
+ "eni a",
+ "e nia",
+ "re z",
+ "r ez",
+ "ess ional",
+ "ession al",
+ "▁авгу ста",
+ "over ride",
+ "ne ws",
+ "new s",
+ "▁pla net",
+ "▁plan et",
+ "▁plane t",
+ "n n",
+ "▁W is",
+ "▁Wi s",
+ "тв ер",
+ "т вер",
+ "▁Val id",
+ "▁ Valid",
+ "▁G ef",
+ "▁Ge f",
+ "гра д",
+ "▁e ig",
+ "an tom",
+ "ant om",
+ "anto m",
+ "▁Me ister",
+ "fl ags",
+ "flag s",
+ "ffic iale",
+ "fficial e",
+ "ша я",
+ "- ,",
+ "at ionen",
+ "ation en",
+ "ati onen",
+ "atio nen",
+ "mo use",
+ "m ouse",
+ "stand ard",
+ "Sing le",
+ "▁b ol",
+ "▁bo l",
+ "▁ bol",
+ "is is",
+ "isi s",
+ "▁f ruit",
+ "▁fr uit",
+ "c ourse",
+ "it ants",
+ "itan ts",
+ "▁é taient",
+ "▁ét aient",
+ "Text Field",
+ "▁ф он",
+ "▁фо н",
+ "▁a ircraft",
+ "▁air craft",
+ "▁I SSN",
+ "▁IS SN",
+ "▁west ern",
+ "▁ western",
+ "▁represent ing",
+ "Es p",
+ "E sp",
+ "▁El se",
+ "▁Els e",
+ "▁ Else",
+ "▁s izes",
+ "▁si zes",
+ "▁size s",
+ "▁satisf ied",
+ "ot os",
+ "oto s",
+ "U D",
+ "Fin al",
+ "Fi nal",
+ "F inal",
+ "ó j",
+ "è ve",
+ "▁R oy",
+ "▁Ro y",
+ "ff en",
+ "ffe n",
+ "f fen",
+ "▁s alt",
+ "▁sa lt",
+ "▁sal t",
+ "▁L abel",
+ "▁La bel",
+ "▁Lab el",
+ "▁ Label",
+ "S k",
+ "▁к ре",
+ "▁ кре",
+ "▁Ли тература",
+ "▁с м",
+ "Att ributes",
+ "Attribute s",
+ "ay e",
+ "a ye",
+ "сь к",
+ "▁вы со",
+ "- )",
+ "os es",
+ "ose s",
+ "cal cul",
+ "calc ul",
+ "▁C annot",
+ "▁Can not",
+ "▁ Cannot",
+ "Gener ic",
+ "em o",
+ "e mo",
+ "▁A utor",
+ "▁Aut or",
+ "▁Au tor",
+ "▁Auto r",
+ "лё н",
+ "л ён",
+ "ла га",
+ "vo te",
+ "v ote",
+ "lic ates",
+ "licate s",
+ "lica tes",
+ "ru s",
+ "r us",
+ "él i",
+ "é li",
+ "op f",
+ "o pf",
+ "at ique",
+ "ati que",
+ "sc ala",
+ "scal a",
+ "s cala",
+ "▁Oh io",
+ "▁Brit ann",
+ "▁b ef",
+ "▁be f",
+ "▁Е вро",
+ "▁Ев ро",
+ "▁Care er",
+ "is ée",
+ "isé e",
+ "ó t",
+ "bo se",
+ "bos e",
+ "b ose",
+ "▁Б ер",
+ "▁Бе р",
+ "▁Cont roller",
+ "▁Control ler",
+ "▁ Controller",
+ "po le",
+ "pol e",
+ "p ole",
+ "▁al len",
+ "▁all en",
+ "▁alle n",
+ "▁ allen",
+ "▁h ack",
+ "▁ha ck",
+ "▁ext ent",
+ "▁cal ci",
+ "▁calc i",
+ "Me r",
+ "M er",
+ "▁sum mary",
+ "▁summar y",
+ "▁summ ary",
+ "▁ summary",
+ "Mar t",
+ "Ma rt",
+ "M art",
+ "▁histor ical",
+ "▁historic al",
+ "im at",
+ "ima t",
+ "i mat",
+ "bu d",
+ "b ud",
+ "▁F OR",
+ "▁FO R",
+ "▁ FOR",
+ "ex port",
+ "exp ort",
+ "ed i",
+ "e di",
+ "Map ping",
+ "Mapp ing",
+ "Ma pping",
+ "M apping",
+ "▁A y",
+ "▁R uby",
+ "▁Ru by",
+ "▁Rub y",
+ "▁definition s",
+ "▁defin itions",
+ "▁definit ions",
+ "▁{ $",
+ "▁ {$",
+ "▁y ours",
+ "▁you rs",
+ "▁your s",
+ "▁yo urs",
+ "ri as",
+ "ria s",
+ "r ias",
+ "To uch",
+ "T ouch",
+ "▁G az",
+ "▁Ga z",
+ "▁Aut om",
+ "▁Au tom",
+ "▁Auto m",
+ "▁ Autom",
+ "▁и стори",
+ "▁исто ри",
+ "▁ис тори",
+ "▁d elen",
+ "▁de len",
+ "▁del en",
+ "▁K inder",
+ "▁Kind er",
+ "▁Ki nder",
+ "▁Kin der",
+ "}} %",
+ "} }%",
+ "▁perform ing",
+ "F R",
+ "▁S ig",
+ "▁Si g",
+ "▁B rad",
+ "▁Br ad",
+ "▁Bra d",
+ "br as",
+ "bra s",
+ "b ras",
+ "▁J ar",
+ "▁Ja r",
+ "pk g",
+ "p kg",
+ "w r",
+ "▁P ays",
+ "▁Pa ys",
+ "▁Pay s",
+ "N C",
+ "▁op posed",
+ "▁opp osed",
+ "▁oppos ed",
+ "Tr y",
+ "T ry",
+ "▁ве зе",
+ "▁B og",
+ "▁Bo g",
+ "▁writ es",
+ "▁wr ites",
+ "▁write s",
+ "▁st ories",
+ "▁stor ies",
+ "▁sto ries",
+ "▁m ater",
+ "▁ma ter",
+ "▁mat er",
+ "▁mate r",
+ "▁stag ione",
+ "▁s ty",
+ "▁st y",
+ "▁ sty",
+ "▁compat ible",
+ "▁ compatible",
+ "he ast",
+ "h east",
+ "▁G uy",
+ "▁Gu y",
+ "egr ünd",
+ "▁ident ifier",
+ "▁ identifier",
+ "▁he ads",
+ "▁head s",
+ "по зи",
+ "▁st up",
+ "▁t f",
+ "▁ tf",
+ "▁ј ош",
+ "▁H ugh",
+ "▁Hu gh",
+ "▁c ards",
+ "▁car ds",
+ "▁card s",
+ "▁ cards",
+ "ov y",
+ "o vy",
+ "▁To ast",
+ "al las",
+ "all as",
+ "alla s",
+ "▁p úblic",
+ "▁ass umes",
+ "▁assum es",
+ "▁assume s",
+ "▁чемпи она",
+ "yc ler",
+ "ycle r",
+ "y cler",
+ "▁Juni or",
+ "▁Jun ior",
+ "▁F ich",
+ "▁estim ated",
+ "▁estimate d",
+ "ze rw",
+ "zer w",
+ "di alog",
+ "dia log",
+ "d ialog",
+ "ши н",
+ "ш ин",
+ "sh ell",
+ "she ll",
+ "s hell",
+ "▁н их",
+ "▁ни х",
+ "▁ них",
+ "▁p itch",
+ "▁pit ch",
+ "до л",
+ "out ube",
+ "▁S anti",
+ "▁San ti",
+ "▁Sant i",
+ "On ClickListener",
+ "▁M agyar",
+ "▁Mag yar",
+ "▁v ue",
+ "▁vu e",
+ "▁ vue",
+ "i ão",
+ "▁` #",
+ "col lect",
+ "coll ect",
+ "▁R ou",
+ "▁Ro u",
+ "anal ysis",
+ "istrz ost",
+ "▁Dig ital",
+ "▁ Digital",
+ "▁c rist",
+ "▁cr ist",
+ "▁cri st",
+ "ri ere",
+ "rie re",
+ "rier e",
+ "r iere",
+ "▁cam po",
+ "▁camp o",
+ "U s",
+ "▁circ a",
+ "▁cir ca",
+ "▁Com ponent",
+ "▁ Component",
+ "▁NS String",
+ "▁ NSString",
+ "p d",
+ "▁pr ince",
+ "▁prin ce",
+ "▁in voke",
+ "▁inv oke",
+ "▁ invoke",
+ "▁Mar ine",
+ "▁Mari ne",
+ "Al low",
+ "All ow",
+ "est ic",
+ "esti c",
+ "ри сти",
+ "рис ти",
+ "рист и",
+ "bo ne",
+ "bon e",
+ "b one",
+ "ту ры",
+ "тур ы",
+ "▁pass ion",
+ "ác ió",
+ "á ció",
+ "▁o rn",
+ "▁or n",
+ "▁ orn",
+ "ве д",
+ "▁in vari",
+ "▁inv ari",
+ "▁н і",
+ "▁ ні",
+ "Re move",
+ "Rem ove",
+ "en cies",
+ "enc ies",
+ "enci es",
+ "il ib",
+ "ili b",
+ "i lib",
+ "▁Direct or",
+ "▁Dire ctor",
+ "▁Dir ector",
+ "\" \"",
+ "▁Con se",
+ "▁Cons e",
+ "google apis",
+ "ó k",
+ "▁У кра",
+ "▁H aving",
+ "▁Ha ving",
+ "▁Hav ing",
+ "Do main",
+ "Dom ain",
+ "ie rz",
+ "ier z",
+ "но логи",
+ "н ологи",
+ "Ch o",
+ "C ho",
+ "un defined",
+ "und efined",
+ "al loc",
+ "all oc",
+ "allo c",
+ "▁p ied",
+ "▁pi ed",
+ "▁pie d",
+ "▁f raction",
+ "▁fr action",
+ "▁fra ction",
+ "bi a",
+ "b ia",
+ "▁п оло",
+ "▁по ло",
+ "▁пол о",
+ "▁ поло",
+ "ug no",
+ "min ister",
+ "▁princip ale",
+ "▁principal e",
+ "▁ref used",
+ "▁refuse d",
+ "brow ser",
+ "b rowser",
+ "* ,",
+ "▁H ospital",
+ "▁univers al",
+ "▁Ern st",
+ "wh o",
+ "w ho",
+ "▁G ard",
+ "▁Gar d",
+ "▁Ga rd",
+ "' _",
+ "con de",
+ "co nde",
+ "cond e",
+ "c onde",
+ "▁[ {",
+ "▁ [{",
+ "so b",
+ "s ob",
+ "▁C rit",
+ "▁Cr it",
+ "▁дека бря",
+ "▁p unto",
+ "▁pun to",
+ "▁punt o",
+ "▁einges etzt",
+ "▁t ör",
+ "▁tö r",
+ "▁N i",
+ "▁w orry",
+ "▁wor ry",
+ "▁leg end",
+ "▁ legend",
+ "▁бу ли",
+ "▁k omm",
+ "▁kom m",
+ "▁ko mm",
+ "ri jk",
+ "rij k",
+ "r ijk",
+ "ef fect",
+ "eff ect",
+ "e ffect",
+ "Or i",
+ "O ri",
+ "RE S",
+ "R ES",
+ "▁P eters",
+ "▁Pe ters",
+ "▁Peter s",
+ "▁Pet ers",
+ "▁B aron",
+ "▁Bar on",
+ "▁Ba ron",
+ "▁G ot",
+ "▁Go t",
+ "▁hon est",
+ "▁ho nest",
+ "är e",
+ "ä re",
+ "ás z",
+ "á sz",
+ "▁no ble",
+ "▁nob le",
+ "▁con clusion",
+ "▁conclus ion",
+ "▁concl usion",
+ "▁form atting",
+ "▁format ting",
+ "▁formatt ing",
+ "▁o tto",
+ "▁ot to",
+ "▁ott o",
+ "▁ otto",
+ "▁de leg",
+ "▁del eg",
+ "м б",
+ "pt op",
+ "pto p",
+ "p top",
+ "▁s ends",
+ "▁send s",
+ "▁sen ds",
+ "ur name",
+ "urn ame",
+ "▁f estival",
+ "▁fest ival",
+ "▁festiv al",
+ ", ",
+ "ру с",
+ "р ус",
+ "▁d och",
+ "▁do ch",
+ "▁doc h",
+ "sub ject",
+ "su bject",
+ "▁care ful",
+ "qu ent",
+ "que nt",
+ "q uent",
+ "▁Lo ad",
+ "▁ Load",
+ "temper aturen",
+ "▁r ue",
+ "▁ru e",
+ "Mem ory",
+ "ț a",
+ "ion a",
+ "io na",
+ "i ona",
+ "▁dent ro",
+ "▁beg ann",
+ "▁began n",
+ "▁A qu",
+ "▁scient ific",
+ "ka ń",
+ "ло к",
+ "л ок",
+ "el de",
+ "eld e",
+ "▁Th ose",
+ "qu ier",
+ "qui er",
+ "act ér",
+ "▁Auf lage",
+ ") '",
+ "▁grad ient",
+ "▁ gradient",
+ "in teger",
+ "inte ger",
+ "▁Im port",
+ "▁Imp ort",
+ "▁ Import",
+ "S K",
+ "▁St atus",
+ "▁Stat us",
+ "▁ Status",
+ "▁exp lo",
+ "▁expl o",
+ "A E",
+ "Sh ell",
+ "She ll",
+ "S hell",
+ "▁Pa ulo",
+ "▁Paul o",
+ ". »",
+ "} ",
+ "fl ex",
+ "f lex",
+ "▁ко мп",
+ "▁ком п",
+ "on den",
+ "ond en",
+ "onde n",
+ "ac cept",
+ "▁miejs ce",
+ "H ub",
+ "all eng",
+ "alle ng",
+ "allen g",
+ "W N",
+ "▁implement ing",
+ "▁ лу",
+ "▁conf using",
+ "▁Inst all",
+ "▁ Install",
+ "▁r ou",
+ "▁ro u",
+ "▁ rou",
+ "▁про ек",
+ "Access or",
+ "Acc essor",
+ "ља шње",
+ "od io",
+ "odi o",
+ "▁app lies",
+ "ющи й",
+ "ю щий",
+ "▁M undial",
+ "Ét at",
+ "É tat",
+ "iet nam",
+ "hu m",
+ "h um",
+ "▁с бор",
+ "ord inate",
+ "ordin ate",
+ "Fran ce",
+ "Fr ance",
+ "F rance",
+ "▁p rend",
+ "▁pr end",
+ "▁pre nd",
+ "el temperaturen",
+ "▁trab aj",
+ "A xis",
+ "▁м но",
+ "prim ary",
+ "▁Se ite",
+ "▁Seit e",
+ "per mission",
+ "perm ission",
+ "▁or den",
+ "▁ord en",
+ "▁ orden",
+ "sin ce",
+ "s ince",
+ "▁i c",
+ "▁ ic",
+ "▁Bra zil",
+ "▁b are",
+ "▁bar e",
+ "▁ba re",
+ "▁ bare",
+ "▁N ar",
+ "▁Na r",
+ "▁J ur",
+ "▁Ju r",
+ "▁fre edom",
+ "▁free dom",
+ "▁med ical",
+ "▁medic al",
+ "▁medi cal",
+ "isch of",
+ "isc hof",
+ "▁с п",
+ "ie ż",
+ "▁boot strap",
+ "▁ bootstrap",
+ "▁ …",
+ "▁fa cil",
+ "▁fac il",
+ "co rd",
+ "cor d",
+ "c ord",
+ "ва не",
+ "ван е",
+ "в ане",
+ "▁Al len",
+ "▁All en",
+ "▁Alle n",
+ "av id",
+ "avi d",
+ "a vid",
+ "ing ham",
+ "za s",
+ "z as",
+ "▁in spect",
+ "▁ins pect",
+ "▁insp ect",
+ "it ten",
+ "itt en",
+ "itte n",
+ "os ti",
+ "ost i",
+ "u h",
+ "c é",
+ "▁# ####",
+ "▁### ##",
+ "▁#### #",
+ "ci us",
+ "ciu s",
+ "c ius",
+ "om y",
+ "o my",
+ "▁Se ine",
+ "▁Sein e",
+ "bre s",
+ "br es",
+ "b res",
+ "▁gen us",
+ "▁genu s",
+ "O ther",
+ "▁Gold en",
+ "▁Gol den",
+ "mu l",
+ "m ul",
+ "▁Спо љашње",
+ "▁gen naio",
+ "▁care fully",
+ "▁careful ly",
+ "aa l",
+ "a al",
+ "▁anal yt",
+ "▁analy t",
+ "ne ur",
+ "n eur",
+ "▁st retch",
+ "▁str etch",
+ "▁O cc",
+ "▁ Occ",
+ "ol as",
+ "ola s",
+ "o las",
+ "▁fire base",
+ "▁ firebase",
+ "▁expect ing",
+ "bas ic",
+ "cond ition",
+ "pr ov",
+ "pro v",
+ "p rov",
+ "▁W asser",
+ "▁Was ser",
+ "▁Wass er",
+ "▁conc aten",
+ "▁e vil",
+ "▁ev il",
+ "▁coefficient s",
+ "We st",
+ "W est",
+ "ir y",
+ "i ry",
+ "ph as",
+ "pha s",
+ "p has",
+ "▁J am",
+ "▁Ja m",
+ "fo is",
+ "f ois",
+ "▁cons id",
+ "▁main ten",
+ "▁mai nten",
+ "ni m",
+ "n im",
+ "es ser",
+ "ess er",
+ "esse r",
+ "es z",
+ "e sz",
+ "un ta",
+ "unt a",
+ "ue st",
+ "ues t",
+ "u est",
+ "▁cred entials",
+ "_ ;",
+ "Di m",
+ "D im",
+ "пре де",
+ "пр еде",
+ "▁B ü",
+ "bu ilt",
+ "▁A cadem",
+ "▁Ac adem",
+ "▁a udi",
+ "▁au di",
+ "▁aud i",
+ "▁ audi",
+ "▁tv å",
+ "in and",
+ "ina nd",
+ "▁The ater",
+ "▁gen re",
+ "ço s",
+ "ç os",
+ "gres ql",
+ "gre sql",
+ "▁we ap",
+ "▁R ab",
+ "▁Ra b",
+ "▁ ’",
+ "▁ad ult",
+ "▁d ém",
+ "▁dé m",
+ "` `",
+ "▁st abil",
+ "▁sta bil",
+ "▁correspond s",
+ "▁E astern",
+ "▁East ern",
+ "un nel",
+ "unn el",
+ "Work er",
+ "▁c oh",
+ "▁co h",
+ "л ка",
+ "▁Mass achusetts",
+ "pi o",
+ "p io",
+ "▁por ts",
+ "▁port s",
+ "▁ ports",
+ "ag g",
+ "a gg",
+ "▁De bug",
+ "▁Deb ug",
+ "▁ Debug",
+ "▁bre ath",
+ "MI N",
+ "M IN",
+ "Vari able",
+ "bat ch",
+ "b atch",
+ "сс е",
+ "с се",
+ "▁p reg",
+ "▁pr eg",
+ "▁pre g",
+ "▁r oles",
+ "▁ro les",
+ "▁role s",
+ "▁rol es",
+ "pa ste",
+ "pas te",
+ "p aste",
+ "▁refer enced",
+ "▁reference d",
+ "ad rat",
+ "adr at",
+ "ч ё",
+ "bin om",
+ "bi nom",
+ "▁def ining",
+ "▁defin ing",
+ "▁Bud apest",
+ "▁д ви",
+ "▁ дви",
+ "▁t aught",
+ "▁h ole",
+ "▁ho le",
+ "▁hol e",
+ "▁ hole",
+ "▁qu ella",
+ "▁que lla",
+ "▁quel la",
+ "M sg",
+ "as ka",
+ "ask a",
+ "a ska",
+ "sc an",
+ "s can",
+ "▁pro pose",
+ "▁prop ose",
+ "▁propos e",
+ "▁Би ография",
+ "{{ \\",
+ "{ {\\",
+ "text t",
+ "tex tt",
+ "▁A lb",
+ "▁Al b",
+ "▁Syd ney",
+ "▁back up",
+ "▁cre dit",
+ "▁cr edit",
+ "▁cred it",
+ "▁фран цу",
+ "st ats",
+ "sta ts",
+ "stat s",
+ "\\\" :",
+ "\\ \":",
+ "▁П ере",
+ "▁Пер е",
+ "▁Пе ре",
+ "▁according ly",
+ "▁accord ingly",
+ "▁L en",
+ "▁Le n",
+ "▁ Len",
+ "zn a",
+ "z na",
+ "▁Reg ional",
+ "▁Region al",
+ "▁и зда",
+ "▁из да",
+ "▁j ú",
+ "hi stor",
+ "his tor",
+ "h istor",
+ "▁ent ities",
+ "St ar",
+ "S tar",
+ "он е",
+ "о не",
+ "'] ['",
+ "' ]['",
+ "▁N ova",
+ "▁No va",
+ "▁Nov a",
+ "di e",
+ "d ie",
+ "▁` '",
+ "▁ `'",
+ "▁ob ten",
+ "▁obt en",
+ "an st",
+ "ans t",
+ "▁Re lig",
+ "▁Rel ig",
+ "▁t rig",
+ "▁tr ig",
+ "▁tri g",
+ "▁ре жи",
+ "▁Person al",
+ "▁Pers onal",
+ "▁t one",
+ "▁to ne",
+ "▁ton e",
+ "▁a id",
+ "▁ai d",
+ "Vis ual",
+ "Sub mit",
+ "▁mov es",
+ "▁mo ves",
+ "▁move s",
+ "▁B ridge",
+ "▁Br idge",
+ "▁B oy",
+ "▁Bo y",
+ "▁accur ate",
+ "os ta",
+ "ost a",
+ "o sta",
+ "at to",
+ "att o",
+ "a tto",
+ "▁defe ated",
+ "▁defeat ed",
+ "▁data b",
+ "▁da tab",
+ "▁dat ab",
+ "▁ datab",
+ "gi nx",
+ "gin x",
+ "g inx",
+ "▁L iv",
+ "▁Li v",
+ "ly wood",
+ "T W",
+ "ri um",
+ "r ium",
+ "ip ped",
+ "ipp ed",
+ "i pped",
+ "Fa il",
+ "F ail",
+ "RE QUEST",
+ "▁ign or",
+ "▁ig nor",
+ "▁s itting",
+ "▁sit ting",
+ "▁sitt ing",
+ "▁mol to",
+ "▁molt o",
+ "▁end point",
+ "▁ endpoint",
+ "uc ión",
+ "u ción",
+ "▁col lections",
+ "▁collection s",
+ "▁collect ions",
+ "▁colle ctions",
+ "▁ collections",
+ "▁Т у",
+ "tem bre",
+ "t embre",
+ "▁né cess",
+ "▁inter act",
+ "▁inte ract",
+ "▁o tras",
+ "▁ot ras",
+ "▁otra s",
+ "▁c urr",
+ "▁cu rr",
+ "▁cur r",
+ "▁ curr",
+ "▁tr acks",
+ "▁tra cks",
+ "▁track s",
+ "▁trac ks",
+ "▁fam ília",
+ "▁numer ical",
+ "▁numeric al",
+ "le gt",
+ "leg t",
+ "] /",
+ "▁M ario",
+ "▁Mar io",
+ "▁Ma rio",
+ "▁Mari o",
+ "▁t ort",
+ "▁to rt",
+ "▁tor t",
+ "b g",
+ "ss l",
+ "s sl",
+ "text tt",
+ "textt t",
+ "▁s park",
+ "▁sp ark",
+ "▁ spark",
+ "ди и",
+ "▁prob able",
+ "%% %%",
+ "ph ia",
+ "phi a",
+ "], [",
+ "] ,[",
+ "▁bo xes",
+ "▁box es",
+ "▁a cadem",
+ "▁ac adem",
+ "▁S lo",
+ "▁Sl o",
+ "äu de",
+ "ä ude",
+ "▁wit ness",
+ "▁ed iting",
+ "▁edit ing",
+ "ли на",
+ "лин а",
+ "▁look up",
+ "▁ lookup",
+ "▁B uck",
+ "▁Bu ck",
+ "▁Buc k",
+ "д ня",
+ "▁j ours",
+ "▁jo urs",
+ "▁jou rs",
+ "▁jour s",
+ "▁ jours",
+ "++ ){",
+ "++) {",
+ "▁ind ices",
+ "▁indic es",
+ "▁f light",
+ "▁fl ight",
+ "▁com putation",
+ "▁comput ation",
+ "Pl ugin",
+ "▁real ize",
+ "▁realiz e",
+ "is set",
+ "iss et",
+ "isse t",
+ "▁deriv ative",
+ "line width",
+ "bu nd",
+ "b und",
+ "▁t hor",
+ "▁th or",
+ "▁. =",
+ "▁ .=",
+ "▁s í",
+ "▁C lick",
+ "▁Cl ick",
+ "▁ Click",
+ "▁Seb ast",
+ "> '",
+ "hav ior",
+ "le i",
+ "l ei",
+ "ul f",
+ "▁ge ometry",
+ "▁geom etry",
+ "▁geomet ry",
+ "▁ geometry",
+ "pr ev",
+ "pre v",
+ "p rev",
+ "em pl",
+ "emp l",
+ "▁L é",
+ "an son",
+ "ans on",
+ "▁A lice",
+ "▁Al ice",
+ "▁Ali ce",
+ "pro totype",
+ "proto type",
+ "RE AD",
+ "ic ular",
+ "icul ar",
+ "i cular",
+ "▁б і",
+ "▁ бі",
+ "▁deutsch e",
+ "▁Re present",
+ "si tes",
+ "site s",
+ "s ites",
+ "▁Me an",
+ "▁d iss",
+ "▁di ss",
+ "▁dis s",
+ "▁Z ur",
+ "▁Zu r",
+ "▁п рез",
+ "▁пре з",
+ "▁пр ез",
+ "PA R",
+ "P AR",
+ "▁' #",
+ "▁D ra",
+ "▁Dr a",
+ "▁ Dra",
+ "со н",
+ "с он",
+ "▁ste ht",
+ "mar kt",
+ "mark t",
+ "▁e ase",
+ "▁eas e",
+ "Draw ing",
+ "Dra wing",
+ "= %",
+ "St op",
+ "Sto p",
+ "S top",
+ "▁s erving",
+ "▁ser ving",
+ "▁serv ing",
+ "▁servi ng",
+ "▁tak że",
+ "▁D NS",
+ "▁liter al",
+ "▁lit eral",
+ "Di e",
+ "D ie",
+ "▁в ос",
+ "▁во с",
+ "▁sen ior",
+ "ac ion",
+ "aci on",
+ "a cion",
+ "▁u buntu",
+ "▁ub untu",
+ "▁ ubuntu",
+ "▁Frank furt",
+ "▁Sun day",
+ "▁Sund ay",
+ "á b",
+ "▁jour ney",
+ "▁journ ey",
+ "is sa",
+ "iss a",
+ "ber ry",
+ "▁s ep",
+ "▁se p",
+ "▁ sep",
+ "▁i on",
+ "▁io n",
+ "▁ ion",
+ "wer t",
+ "we rt",
+ "w ert",
+ "or szág",
+ "orsz ág",
+ "ser ve",
+ "serv e",
+ "s erve",
+ "▁Mil ano",
+ "▁Milan o",
+ "▁ве ка",
+ "ра х",
+ "▁ию ля",
+ "▁man era",
+ "▁st ations",
+ "▁stat ions",
+ "▁station s",
+ "▁stati ons",
+ "▁adopt ed",
+ "▁any body",
+ "VER SION",
+ "F E",
+ "do rf",
+ "dor f",
+ "d orf",
+ ".. .,",
+ "... ,",
+ "▁обра зова",
+ "▁образ ова",
+ "Log ger",
+ "фи циаль",
+ "фици аль",
+ "WR ITE",
+ "▁h am",
+ "▁ha m",
+ "▁ ham",
+ "▁F uture",
+ "▁Fut ure",
+ "▁ Future",
+ "ot en",
+ "ote n",
+ "o ten",
+ "▁A G",
+ "▁ AG",
+ "▁t rained",
+ "▁tr ained",
+ "▁tra ined",
+ "▁train ed",
+ "▁N ich",
+ "▁Nic h",
+ "▁Ni ch",
+ "▁un iversity",
+ "▁univers ity",
+ "▁Olymp ics",
+ "▁Olympic s",
+ "▁d oit",
+ "▁do it",
+ "▁doi t",
+ "▁cult ural",
+ "▁cultura l",
+ "Con f",
+ "▁Con ference",
+ "or no",
+ "orn o",
+ "▁M P",
+ "▁ MP",
+ "▁b ou",
+ "▁bo u",
+ "ci n",
+ "c in",
+ "Hi gh",
+ "H igh",
+ "ann te",
+ "annt e",
+ "▁display ing",
+ "▁ch apter",
+ "▁chap ter",
+ "▁ chapter",
+ "▁Fra uen",
+ "▁Frau en",
+ "▁real ized",
+ "▁realiz ed",
+ "▁realize d",
+ "▁attempt ed",
+ "▁pre ferred",
+ "▁prefer red",
+ "Da t",
+ "D at",
+ "▁tr ouve",
+ "▁tro uve",
+ "▁trou ve",
+ "▁trouv e",
+ "▁int ention",
+ "▁intent ion",
+ "▁inten tion",
+ "▁Not ice",
+ "tim estamp",
+ "* (",
+ "▁Ш а",
+ "an as",
+ "ana s",
+ "a nas",
+ "cl a",
+ "c la",
+ "is z",
+ "i sz",
+ "tb l",
+ "t bl",
+ "Ar r",
+ "A rr",
+ "▁in verse",
+ "▁ter rible",
+ "▁occup ied",
+ "J AX",
+ "< -",
+ "▁Phil osoph",
+ "▁Cor ps",
+ "bu ilder",
+ "build er",
+ "▁beg ins",
+ "▁begin s",
+ "▁c ensus",
+ "▁cens us",
+ ". ’",
+ "▁pro ven",
+ "▁pr oven",
+ "▁prov en",
+ "▁prove n",
+ "met ric",
+ "▁incre ases",
+ "▁increase s",
+ "wi ch",
+ "w ich",
+ "▁A BC",
+ "▁AB C",
+ "▁ ABC",
+ "project s",
+ "▁T hor",
+ "▁Th or",
+ "▁conf idence",
+ "▁u fficiale",
+ "el m",
+ "e lm",
+ "▁g arden",
+ "▁gar den",
+ "▁gard en",
+ "▁rob ust",
+ "▁cos ì",
+ "ie dz",
+ "ied z",
+ "▁Is lam",
+ "▁Add ress",
+ "▁ Address",
+ "▁div ide",
+ "▁divid e",
+ "▁E u",
+ "ca tal",
+ "cat al",
+ "c atal",
+ "de tail",
+ "det ail",
+ "ep endant",
+ "f g",
+ "▁b ew",
+ "▁be w",
+ "▁ bew",
+ "▁f is",
+ "▁fi s",
+ "▁B O",
+ "▁ BO",
+ "▁w sp",
+ "▁ws p",
+ "▁p ipeline",
+ "▁pip eline",
+ "▁pipe line",
+ "h d",
+ "▁S ession",
+ "▁ Session",
+ "lä nd",
+ "l änd",
+ "iv eau",
+ "ive au",
+ "es tr",
+ "est r",
+ "e str",
+ "▁p article",
+ "▁part icle",
+ "▁partic le",
+ "▁parti cle",
+ "▁lar avel",
+ "▁ laravel",
+ "pi c",
+ "p ic",
+ "▁n au",
+ "▁na u",
+ "▁f ins",
+ "▁fin s",
+ "▁fi ns",
+ "▁V il",
+ "▁Vi l",
+ "▁f us",
+ "▁fu s",
+ "▁qu asi",
+ "oper ation",
+ "opera tion",
+ "▁al ler",
+ "▁all er",
+ "▁alle r",
+ "▁ aller",
+ "▁an aly",
+ "▁anal y",
+ "▁ analy",
+ "▁О н",
+ "▁M es",
+ "▁Me s",
+ "▁о пера",
+ "▁оп ера",
+ "▁hand led",
+ "▁handle d",
+ "▁de prec",
+ "▁dep rec",
+ "tt o",
+ "t to",
+ "▁E k",
+ "▁st ran",
+ "▁str an",
+ "▁stra n",
+ "▁ang lais",
+ "ju re",
+ "j ure",
+ "▁Sil ver",
+ "▁close ly",
+ "▁clos ely",
+ "en kins",
+ "enk ins",
+ "an os",
+ "ano s",
+ "a nos",
+ "st ed",
+ "ste d",
+ "s ted",
+ "▁сент ября",
+ "br and",
+ "bra nd",
+ "b rand",
+ "нь о",
+ "▁prés ent",
+ "▁pré sent",
+ "ro k",
+ "r ok",
+ "mo unt",
+ "m ount",
+ "▁Anth ony",
+ "▁Further more",
+ "in ha",
+ "▁ар хи",
+ "▁раз ли",
+ "▁окт ября",
+ "▁p int",
+ "▁pi nt",
+ "▁pin t",
+ "n ý",
+ "pt s",
+ "p ts",
+ "▁ital ien",
+ "▁ре ги",
+ "ле з",
+ "л ез",
+ "ди на",
+ "дин а",
+ "ather ine",
+ "In ternal",
+ "Int ernal",
+ "Inter nal",
+ "Intern al",
+ "Qu estion",
+ "▁sett lement",
+ "▁В се",
+ "▁fol ders",
+ "▁folder s",
+ "д ри",
+ "▁val or",
+ "▁va lor",
+ "▁M iller",
+ "▁Mil ler",
+ "▁Mill er",
+ "▁As sert",
+ "▁Ass ert",
+ "▁ Assert",
+ "▁pat ient",
+ "▁N ieder",
+ "▁Ni eder",
+ "▁Nie der",
+ "▁Nied er",
+ "▁E P",
+ "▁ EP",
+ "▁A gr",
+ "▁Ag r",
+ "▁o nde",
+ "▁on de",
+ "▁ onde",
+ "▁s cop",
+ "▁sc op",
+ "▁ scop",
+ "se quence",
+ "sequ ence",
+ "▁P L",
+ "▁ PL",
+ "▁se ek",
+ "▁see k",
+ "java se",
+ "jav ase",
+ "▁V ector",
+ "▁Ve ctor",
+ "▁Vec tor",
+ "▁ Vector",
+ "▁n á",
+ "▁ ná",
+ "▁categor ía",
+ "cl one",
+ "clo ne",
+ "N R",
+ "av ailable",
+ "▁B esch",
+ "▁Be sch",
+ "▁Bes ch",
+ "▁e clipse",
+ "▁ec lipse",
+ "▁ eclipse",
+ "wick lung",
+ "dep loy",
+ "en ie",
+ "eni e",
+ "e nie",
+ "▁\" )",
+ "▁ \")",
+ "äs t",
+ "ä st",
+ "▁s ync",
+ "▁syn c",
+ "▁sy nc",
+ "▁ sync",
+ "CO DE",
+ "▁Ч е",
+ "▁flo ating",
+ "▁float ing",
+ "/ `",
+ "▁ret ired",
+ "▁retir ed",
+ "de b",
+ "d eb",
+ "▁part icul",
+ "▁partic ul",
+ "▁parti cul",
+ "▁coll ected",
+ "▁collect ed",
+ "▁colle cted",
+ "▁down loaded",
+ "▁download ed",
+ "ni ce",
+ "nic e",
+ "n ice",
+ "▁B uffer",
+ "▁Buff er",
+ "▁ Buffer",
+ "▁Acc ount",
+ "▁Ac count",
+ "▁ Account",
+ "▁m aggio",
+ "▁mag gio",
+ "▁ре да",
+ "▁ред а",
+ "▁s ales",
+ "▁sa les",
+ "▁sal es",
+ "▁sale s",
+ "▁statunit ense",
+ "▁K i",
+ "▁F err",
+ "▁Fe rr",
+ "▁Fer r",
+ "Lo ck",
+ "Loc k",
+ "L ock",
+ "▁Is abel",
+ "▁Isa bel",
+ "cl ar",
+ "cla r",
+ "c lar",
+ "▁p ov",
+ "▁po v",
+ "at ra",
+ "atr a",
+ "a tra",
+ "▁Fr au",
+ "▁Fra u",
+ "▁sort ing",
+ "▁sor ting",
+ "▁sorti ng",
+ "▁phr ase",
+ "▁апре ля",
+ "▁дея тель",
+ "▁And ré",
+ "def inition",
+ "defin ition",
+ "writ ing",
+ "wr iting",
+ "ér é",
+ "é ré",
+ "щ у",
+ "▁O rd",
+ "▁Or d",
+ "▁ Ord",
+ "▁r um",
+ "▁ru m",
+ "▁ rum",
+ "▁T urk",
+ "▁Tur k",
+ "▁I van",
+ "th eless",
+ "the less",
+ "▁г и",
+ "▁ ги",
+ "▁s ake",
+ "▁sa ke",
+ "▁B ased",
+ "▁Bas ed",
+ "▁Ba sed",
+ "▁Base d",
+ "de ck",
+ "dec k",
+ "or us",
+ "oru s",
+ "o rus",
+ "▁tut ti",
+ "▁b lan",
+ "▁bl an",
+ "▁bla n",
+ "▁П у",
+ "De tail",
+ "Det ail",
+ "▁Н о",
+ "▁S ky",
+ "▁Sk y",
+ "▁p rès",
+ "▁pr ès",
+ "▁ près",
+ "мо й",
+ "col n",
+ "co ln",
+ "че ской",
+ "et i",
+ "e ti",
+ "▁ar row",
+ "▁arr ow",
+ "▁ arrow",
+ "▁C ha",
+ "▁Ch a",
+ "ch mark",
+ "œ ur",
+ "fa b",
+ "f ab",
+ "ку ль",
+ "Grid View",
+ "▁Back ground",
+ "▁ Background",
+ "s n",
+ "▁segu ito",
+ "▁n ic",
+ "▁ni c",
+ "▁ nic",
+ "co u",
+ "c ou",
+ "ті в",
+ "т ів",
+ "▁b zw",
+ "add EventListener",
+ "syn c",
+ "s ync",
+ "az zo",
+ "azz o",
+ "ab stract",
+ "as sets",
+ "ass ets",
+ "asse ts",
+ "asset s",
+ "▁D ru",
+ "▁Dr u",
+ "з д",
+ "ord net",
+ "▁b igger",
+ "▁big ger",
+ "▁initial ized",
+ "▁initialize d",
+ "ка з",
+ "og ene",
+ "ogen e",
+ "oge ne",
+ "vi ously",
+ "vious ly",
+ "v iously",
+ "▁g uid",
+ "▁gu id",
+ "scheid ung",
+ "▁Z ent",
+ "▁Ze nt",
+ "▁fr ames",
+ "▁frame s",
+ "▁fra mes",
+ "▁fram es",
+ "▁ frames",
+ "ri eben",
+ "rie ben",
+ "rieb en",
+ "r ieben",
+ "▁iss ued",
+ "▁issue d",
+ "▁issu ed",
+ "▁d ow",
+ "▁do w",
+ "▁descri bes",
+ "▁describe s",
+ "il st",
+ "ils t",
+ "i lst",
+ "▁c riteria",
+ "▁crit eria",
+ "▁criter ia",
+ "▁gentle man",
+ "Bas ic",
+ "ne z",
+ "n ez",
+ "De v",
+ "D ev",
+ "Mo ve",
+ "M ove",
+ "▁est aba",
+ "▁estab a",
+ "▁esta ba",
+ "▁set tembre",
+ "▁sett embre",
+ "circ le",
+ "cir cle",
+ "▁f ais",
+ "▁fa is",
+ "▁m yst",
+ "▁my st",
+ "▁arch iv",
+ "▁ archiv",
+ "d ynamic",
+ "j à",
+ "it as",
+ "ita s",
+ "▁я кий",
+ "▁d or",
+ "▁do r",
+ "▁ dor",
+ "▁Am azon",
+ "▁Ama zon",
+ "▁ne ces",
+ "▁Mar cel",
+ "▁Marc el",
+ "▁e lla",
+ "▁el la",
+ "▁ell a",
+ "▁ ella",
+ "ро к",
+ "р ок",
+ "▁Pennsylvan ia",
+ "cul ar",
+ "cu lar",
+ "c ular",
+ "Pa ck",
+ "P ack",
+ "it age",
+ "ita ge",
+ "▁B urn",
+ "▁Bu rn",
+ "▁Bur n",
+ "▁R O",
+ "▁ RO",
+ "▁о ни",
+ "▁он и",
+ "▁ они",
+ "~ $",
+ "Te X",
+ "as sign",
+ "ass ign",
+ "▁be at",
+ "id ense",
+ "iden se",
+ "ac ent",
+ "ace nt",
+ "a cent",
+ "Al ert",
+ "▁str ateg",
+ "▁strat eg",
+ "▁mån aden",
+ "LO C",
+ "L OC",
+ "▁c atalog",
+ "▁cat alog",
+ "▁catal og",
+ "▁ catalog",
+ "print StackTrace",
+ "() ).",
+ "()) .",
+ "( )).",
+ "us ted",
+ "ust ed",
+ "u sted",
+ "▁Frame work",
+ "▁ Framework",
+ "EC K",
+ "E CK",
+ "▁a té",
+ "▁at é",
+ "Frame work",
+ "▁att acks",
+ "▁attack s",
+ "▁B ert",
+ "▁Be rt",
+ "▁Ber t",
+ "▁т ран",
+ "▁тра н",
+ ": %",
+ "ar si",
+ "ars i",
+ "not ation",
+ "▁log ical",
+ "▁logic al",
+ "we et",
+ "▁vis ited",
+ "▁visit ed",
+ "br u",
+ "b ru",
+ "▁sur prise",
+ "▁surpr ise",
+ "^ ^",
+ "in ale",
+ "inal e",
+ "ina le",
+ "rem ote",
+ "'} ,",
+ "' },",
+ "Syn tax",
+ "S yntax",
+ "ia ne",
+ "ian e",
+ "i ane",
+ "on nen",
+ "onn en",
+ "onne n",
+ "▁bre aking",
+ "▁break ing",
+ "par ser",
+ "parse r",
+ "ap k",
+ "a pk",
+ "▁Mig uel",
+ "▁ §",
+ "▁act ing",
+ "▁ac ting",
+ "▁g ebru",
+ "▁ge bru",
+ "▁geb ru",
+ "At Index",
+ "ють ся",
+ "ю ться",
+ "▁of fers",
+ "▁off ers",
+ "▁offer s",
+ "▁p rac",
+ "▁pr ac",
+ "▁pra c",
+ "▁g rant",
+ "▁gr ant",
+ "▁gra nt",
+ "▁gran t",
+ "tern oon",
+ "▁ac quired",
+ "▁acqu ired",
+ "▁N y",
+ "▁com ma",
+ "▁comm a",
+ "ní k",
+ "n ík",
+ "▁St ep",
+ "▁Ste p",
+ "▁ Step",
+ "in ners",
+ "inn ers",
+ "inner s",
+ "▁S A",
+ "▁ SA",
+ "▁w at",
+ "▁wa t",
+ "da ys",
+ "day s",
+ "d ays",
+ "▁rect angle",
+ "da r",
+ "d ar",
+ "▁t rac",
+ "▁tr ac",
+ "▁tra c",
+ "▁Ind ones",
+ "▁feed back",
+ "▁bre aks",
+ "▁break s",
+ "part ition",
+ "ic ans",
+ "ica ns",
+ "ican s",
+ "▁Not ices",
+ "▁Notice s",
+ "▁impro ved",
+ "▁improve d",
+ "▁improv ed",
+ "▁impr oved",
+ "ph an",
+ "pha n",
+ "p han",
+ "▁differ ential",
+ "▁different ial",
+ "▁differenti al",
+ "script s",
+ "scri pts",
+ "▁X III",
+ "▁XII I",
+ "▁XI II",
+ "▁L abor",
+ "▁La bor",
+ "▁Lab or",
+ "▁prec ision",
+ "▁precis ion",
+ "▁s eed",
+ "▁se ed",
+ "▁see d",
+ "▁ seed",
+ "bund le",
+ "b undle",
+ "id ents",
+ "ident s",
+ "iden ts",
+ "hr e",
+ "h re",
+ "▁Doug las",
+ "ul d",
+ "u ld",
+ "▁second ary",
+ "▁seconda ry",
+ "▁b rig",
+ "▁br ig",
+ "▁confirm ed",
+ "▁confir med",
+ "▁cla ims",
+ "▁claim s",
+ "Ro le",
+ "R ole",
+ "▁Jew ish",
+ "▁p řed",
+ "▁př ed",
+ "▁ho tel",
+ "▁hot el",
+ "▁comp te",
+ "▁compt e",
+ "▁rec ursive",
+ "▁recurs ive",
+ "](# )",
+ "▁rot ate",
+ "▁ rotate",
+ "▁ch rome",
+ "▁chr ome",
+ "▁chrom e",
+ "▁ chrome",
+ "in ea",
+ "ine a",
+ "i nea",
+ "%; \r",
+ "% ;\r",
+ "▁En vironment",
+ "▁ Environment",
+ "pl atz",
+ "pla tz",
+ "▁Sing le",
+ "▁Sin gle",
+ "▁ Single",
+ "▁s event",
+ "▁se vent",
+ "▁seven t",
+ "▁pos ting",
+ "▁post ing",
+ "▁de aling",
+ "▁deal ing",
+ "param eters",
+ "parameter s",
+ "гра ф",
+ "Auth entication",
+ "to uch",
+ "t ouch",
+ "A z",
+ "▁g ray",
+ "▁gr ay",
+ "▁gra y",
+ "▁ gray",
+ "en cing",
+ "enc ing",
+ "enci ng",
+ "bold math",
+ "▁сай те",
+ "▁сайт е",
+ "▁Z a",
+ "an je",
+ "▁p olar",
+ "▁po lar",
+ "▁pol ar",
+ "▁у ли",
+ "ki l",
+ "k il",
+ "▁h over",
+ "▁ho ver",
+ "▁ hover",
+ "▁RE ST",
+ "▁C ome",
+ "▁Com e",
+ "▁Co me",
+ "▁ Come",
+ "j b",
+ "▁Georg ia",
+ "▁Est ado",
+ "▁Esta do",
+ "▁Estad o",
+ "Output Stream",
+ "ћ и",
+ "▁d ump",
+ "▁du mp",
+ "▁ dump",
+ "▁A ge",
+ "▁Ag e",
+ "▁ Age",
+ "▁s wo",
+ "▁sw o",
+ "m obile",
+ "oc cup",
+ "occ up",
+ "ше го",
+ "ш его",
+ "▁const itution",
+ "▁constitu tion",
+ "▁constit ution",
+ "go od",
+ "g ood",
+ "ak u",
+ "a ku",
+ "▁а нг",
+ "▁ан г",
+ "▁ анг",
+ "ie ck",
+ "iec k",
+ "▁Ps ych",
+ "▁ro ots",
+ "▁root s",
+ "▁v est",
+ "▁ve st",
+ "▁ves t",
+ "▁ vest",
+ "▁го дах",
+ "▁года х",
+ "▁Rep ública",
+ "▁p ian",
+ "▁pi an",
+ "▁pia n",
+ "igr ation",
+ "▁pr éc",
+ "▁pré c",
+ "▁gener ates",
+ "▁generate s",
+ "L Y",
+ "( `",
+ "▁= ~",
+ "ше ния",
+ "▁R ah",
+ "▁Ra h",
+ "▁connect ing",
+ "ž í",
+ "▁f ő",
+ "▁a ppel",
+ "▁app el",
+ "▁ap pel",
+ "▁appe l",
+ "▁Rail way",
+ "г ли",
+ "▁dével opp",
+ "▁a po",
+ "▁ap o",
+ "fr an",
+ "fra n",
+ "f ran",
+ "▁im mediate",
+ "▁immedi ate",
+ "во го",
+ "в ого",
+ "Run ner",
+ "ä g",
+ "Some thing",
+ "S omething",
+ "▁gén éra",
+ "Event Args",
+ "in ction",
+ "inc tion",
+ "inct ion",
+ "gl y",
+ "g ly",
+ "▁D ue",
+ "▁Du e",
+ "▁p rost",
+ "▁pro st",
+ "▁pr ost",
+ "▁pros t",
+ "▁refer ring",
+ "▁j og",
+ "▁jo g",
+ "▁exec utable",
+ "▁execut able",
+ "▁D ream",
+ "▁Dre am",
+ "ac s",
+ "a cs",
+ "▁C ole",
+ "▁Col e",
+ "▁Co le",
+ "am pf",
+ "amp f",
+ "▁B is",
+ "▁Bi s",
+ "▁ию ня",
+ "li eder",
+ "lied er",
+ "lie der",
+ "l ieder",
+ "те к",
+ "т ек",
+ "▁v b",
+ "▁ vb",
+ "▁m om",
+ "▁mo m",
+ "▁: (",
+ "▁ :(",
+ "▁der nier",
+ "▁derni er",
+ "' =>",
+ "▁э того",
+ "▁это го",
+ "▁ne ue",
+ "▁neu e",
+ "▁Ч а",
+ "▁weiter e",
+ "▁weit ere",
+ "▁al leg",
+ "▁all eg",
+ "▁alle g",
+ "▁re ality",
+ "▁real ity",
+ "▁jud ge",
+ "▁B alt",
+ "▁Ba lt",
+ "▁Bal t",
+ "▁t hin",
+ "▁th in",
+ "▁G ed",
+ "▁Ge d",
+ "ie val",
+ "iev al",
+ "i eval",
+ "m x",
+ "ці ональ",
+ "▁вы пу",
+ "▁I X",
+ "▁ IX",
+ "▁bl ind",
+ "▁Mo tor",
+ "▁Mot or",
+ "▁ш а",
+ "▁ ша",
+ "▁approxim ation",
+ "da m",
+ "d am",
+ "▁f og",
+ "▁fo g",
+ "▁ fog",
+ "ко р",
+ "к ор",
+ "▁W rit",
+ "▁l ing",
+ "▁li ng",
+ "▁lin g",
+ "▁ ling",
+ "▁пи са",
+ "▁ писа",
+ "▁M ars",
+ "▁Mar s",
+ "▁Ma rs",
+ "ot ti",
+ "ott i",
+ "En um",
+ "E num",
+ "▁T rib",
+ "▁Tr ib",
+ "▁Tri b",
+ "▁m erc",
+ "▁me rc",
+ "▁mer c",
+ "zu ng",
+ "z ung",
+ "van ced",
+ "v anced",
+ "cf g",
+ "c fg",
+ "на х",
+ "sch en",
+ "sc hen",
+ "sche n",
+ "s chen",
+ "\"] .",
+ "\" ].",
+ "be k",
+ "b ek",
+ "▁s ter",
+ "▁st er",
+ "▁ste r",
+ "▁ ster",
+ "j p",
+ "▁R ap",
+ "▁Ra p",
+ "▁rec ording",
+ "▁record ing",
+ "▁pe int",
+ "▁l ets",
+ "▁le ts",
+ "▁let s",
+ "▁ lets",
+ "än ge",
+ "äng e",
+ ">\" ;",
+ "> \";",
+ "▁міс це",
+ "▁c aval",
+ "▁ca val",
+ "▁cav al",
+ "▁C SV",
+ "▁CS V",
+ "▁ent stand",
+ "▁hel per",
+ "▁help er",
+ "▁ helper",
+ "en det",
+ "end et",
+ "ende t",
+ "▁G ram",
+ "▁Gr am",
+ "▁Gra m",
+ "▁D iego",
+ "▁Die go",
+ "▁Di ego",
+ "▁B ishop",
+ "▁Bi shop",
+ "TA G",
+ "T AG",
+ "▁e cc",
+ "▁ec c",
+ "▁E en",
+ "▁A V",
+ "▁ AV",
+ "C ity",
+ "▁Gu ide",
+ "hi nd",
+ "hin d",
+ "h ind",
+ "ri cal",
+ "ric al",
+ "rica l",
+ "r ical",
+ "▁Ос нов",
+ "Bu s",
+ "B us",
+ "▁z unächst",
+ "▁t ick",
+ "▁ti ck",
+ "▁ tick",
+ "▁Col onel",
+ "Th anks",
+ "Thank s",
+ "▁f erm",
+ "▁fe rm",
+ "▁fer m",
+ "▁gr anted",
+ "▁gran ted",
+ "▁grant ed",
+ "▁th reshold",
+ "omorph ic",
+ "▁H un",
+ "▁Hu n",
+ "en is",
+ "eni s",
+ "e nis",
+ "▁п рав",
+ "▁пра в",
+ "▁ прав",
+ "▁я кі",
+ "▁як і",
+ "P G",
+ "▁w s",
+ "▁ ws",
+ "▁techn ical",
+ "▁techni cal",
+ "est ro",
+ "estr o",
+ "kl är",
+ "k lär",
+ "va rs",
+ "var s",
+ "v ars",
+ "oc rat",
+ "ocr at",
+ "▁оп шти",
+ "on so",
+ "ons o",
+ "ib a",
+ "i ba",
+ "▁S ave",
+ "▁Sa ve",
+ "▁Sav e",
+ "▁ Save",
+ "▁program a",
+ "▁в ъ",
+ "▁inv ån",
+ ">( )",
+ "> ()",
+ "▁me jor",
+ "▁с лова",
+ "▁сло ва",
+ "▁rep lacement",
+ "▁replace ment",
+ "▁repla cement",
+ "▁im pr",
+ "▁imp r",
+ "▁Frances co",
+ "▁Ho tel",
+ "▁Hot el",
+ "▁UP DATE",
+ "▁ UPDATE",
+ "▁му зы",
+ "ug s",
+ "u gs",
+ "va rd",
+ "var d",
+ "v ard",
+ "▁f az",
+ "▁fa z",
+ "in ton",
+ "int on",
+ "into n",
+ "▁ar ts",
+ "▁art s",
+ "▁ arts",
+ "▁K y",
+ "▁I ls",
+ "▁Il s",
+ "▁s era",
+ "▁se ra",
+ "▁ser a",
+ "▁Vol ume",
+ "▁ Volume",
+ "▁gi ugno",
+ "▁a sym",
+ "▁as ym",
+ "▁P ir",
+ "▁Pi r",
+ "▁N AS",
+ "▁NA S",
+ "▁T am",
+ "▁Ta m",
+ "ě l",
+ "Se qu",
+ "Seq u",
+ "S equ",
+ "km al",
+ "k mal",
+ "▁E ins",
+ "▁Ein s",
+ "▁ком па",
+ "▁комп а",
+ "ob e",
+ "o be",
+ "oo r",
+ "o or",
+ "▁he ap",
+ "ct l",
+ "c tl",
+ "▁separ ately",
+ "▁separate ly",
+ "re ader",
+ "read er",
+ "rea der",
+ "▁signific antly",
+ "▁significant ly",
+ "▁L ag",
+ "▁La g",
+ "no tes",
+ "not es",
+ "note s",
+ "n otes",
+ "▁s ele",
+ "▁se le",
+ "▁sel e",
+ "▁dedic ated",
+ "▁H ost",
+ "▁Ho st",
+ "▁ Host",
+ "cho ice",
+ "wi ng",
+ "win g",
+ "w ing",
+ "▁T itel",
+ "▁Tit el",
+ "▁Ti tel",
+ "▁befind et",
+ "lar ge",
+ "larg e",
+ "▁con ten",
+ "▁cont en",
+ "▁co nten",
+ "▁conte n",
+ "Java Script",
+ "▁de ser",
+ "▁des er",
+ "▁G ordon",
+ "▁Gor don",
+ "с пе",
+ "▁p atri",
+ "▁pat ri",
+ "▁pa tri",
+ "▁patr i",
+ "▁R andom",
+ "▁Rand om",
+ "▁Ran dom",
+ "▁ Random",
+ "▁Return s",
+ "ы м",
+ "ро ма",
+ "ром а",
+ "▁Stud ies",
+ "S l",
+ "▁fr ü",
+ "TE XT",
+ "T EXT",
+ "in ate",
+ "ina te",
+ "▁T ol",
+ "▁To l",
+ "▁every where",
+ "ar ta",
+ "art a",
+ "▁or bit",
+ "▁orb it",
+ "▁A ires",
+ "▁Air es",
+ "▁I ss",
+ "▁Is s",
+ "▁te ż",
+ "▁d iverse",
+ "▁di verse",
+ "▁divers e",
+ "▁diver se",
+ "▁n umeric",
+ "▁numer ic",
+ "▁ numeric",
+ "ma z",
+ "m az",
+ "▁m ise",
+ "▁mi se",
+ "▁mis e",
+ "▁batt ery",
+ "▁batter y",
+ "▁bat tery",
+ "▁A kadem",
+ "▁Ak adem",
+ "не ние",
+ "▁simult ane",
+ "▁D ead",
+ "▁De ad",
+ "▁cl ust",
+ "▁ot ro",
+ "▁c erca",
+ "▁cer ca",
+ "() `,",
+ "()` ,",
+ "( )`,",
+ "ro z",
+ "r oz",
+ "ă t",
+ "▁M O",
+ "▁ MO",
+ "ri ften",
+ "rift en",
+ "rif ten",
+ "import ant",
+ "▁je ho",
+ "▁find ViewById",
+ "▁ findViewById",
+ "▁con sequence",
+ "▁conse quence",
+ "▁consequ ence",
+ "▁measure d",
+ "▁meas ured",
+ "is hes",
+ "ish es",
+ "▁s ze",
+ "▁sz e",
+ "ien do",
+ "i endo",
+ "▁W ahl",
+ "▁Wa hl",
+ "st rip",
+ "str ip",
+ "AR D",
+ "▁op acity",
+ "▁ opacity",
+ "WOR D",
+ "W ORD",
+ "▁В і",
+ "▁L ocation",
+ "▁Lo cation",
+ "▁Loc ation",
+ "▁ Location",
+ "ra i",
+ "r ai",
+ "пе н",
+ "п ен",
+ "▁r if",
+ "▁ri f",
+ "▁ rif",
+ "auss ian",
+ "File Name",
+ "▁dis co",
+ "▁disc o",
+ "il en",
+ "ile n",
+ "i len",
+ "▁v agy",
+ "▁va gy",
+ "li city",
+ "lic ity",
+ "licit y",
+ "l icity",
+ "B order",
+ "▁T rack",
+ "▁Tr ack",
+ "▁Tra ck",
+ "▁ Track",
+ "бо м",
+ "б ом",
+ "fa ct",
+ "fac t",
+ "f act",
+ "ok a",
+ "o ka",
+ "▁g ior",
+ "▁gi or",
+ "▁ gior",
+ "▁XV II",
+ "▁XVI I",
+ "▁d är",
+ "Si te",
+ "S ite",
+ "ał o",
+ "a ło",
+ "sk á",
+ "s ká",
+ "▁pix els",
+ "▁pixel s",
+ "vi ty",
+ "v ity",
+ "j Query",
+ "▁sc ulpt",
+ "▁c argo",
+ "▁car go",
+ "▁direct ive",
+ "▁w al",
+ "▁wa l",
+ "▁ wal",
+ "▁c onna",
+ "▁con na",
+ "▁conn a",
+ "▁Th rough",
+ "▁э том",
+ "▁это м",
+ "St atic",
+ "Stat ic",
+ "oms nitt",
+ "▁r und",
+ "▁run d",
+ "▁ru nd",
+ "▁ rund",
+ "▁c laimed",
+ "▁claim ed",
+ "з ня",
+ "sh a",
+ "s ha",
+ "▁r ag",
+ "▁ra g",
+ "▁ rag",
+ "cre ment",
+ "cr ement",
+ "▁fün f",
+ "▁r ival",
+ "▁riv al",
+ "▁ri val",
+ "▁ rival",
+ "ri n",
+ "r in",
+ "sl ash",
+ "▁th irty",
+ "s leep",
+ "оло ги",
+ "о логи",
+ "S M",
+ "ga te",
+ "gat e",
+ "g ate",
+ "iz ations",
+ "ization s",
+ "vi k",
+ "v ik",
+ "▁b less",
+ "▁bl ess",
+ "▁ble ss",
+ "▁Ill inois",
+ "▁T E",
+ "▁ TE",
+ "ut ing",
+ "uti ng",
+ "u ting",
+ "▁sol ving",
+ "GE R",
+ "G ER",
+ "▁X IV",
+ "▁XI V",
+ "▁Ind ians",
+ "▁India ns",
+ "▁Indian s",
+ "ex press",
+ "exp ress",
+ "expr ess",
+ "▁H eil",
+ "▁He il",
+ "▁mu jer",
+ "▁invån are",
+ "'] );",
+ "']) ;",
+ "' ]);",
+ "▁a ur",
+ "▁au r",
+ "▁ aur",
+ "bo ost",
+ "G O",
+ "▁n in",
+ "▁ni n",
+ "to k",
+ "t ok",
+ "go d",
+ "g od",
+ "ot er",
+ "ote r",
+ "o ter",
+ ")$ $",
+ ") $$",
+ "▁desc end",
+ "р ю",
+ "▁L anguage",
+ "▁ Language",
+ "▁d iver",
+ "▁di ver",
+ "▁div er",
+ "▁Ass uming",
+ "▁fre quent",
+ "▁frequ ent",
+ "ч ні",
+ "▁Bi ography",
+ ", [",
+ "ur m",
+ "u rm",
+ "▁walk ed",
+ "▁wal ked",
+ "▁feder al",
+ "▁fed eral",
+ "▁Mich igan",
+ "▁fact s",
+ "▁fac ts",
+ "▁In tegr",
+ "▁Int egr",
+ "▁ Integr",
+ "LE S",
+ "L ES",
+ "▁A lan",
+ "▁Al an",
+ "▁c oup",
+ "▁co up",
+ "▁cou p",
+ "Be r",
+ "B er",
+ "▁p articles",
+ "▁part icles",
+ "▁partic les",
+ "▁particle s",
+ "▁parti cles",
+ "ћ е",
+ "Infl ater",
+ "+ (",
+ "Bo und",
+ "B ound",
+ "▁S ü",
+ "A udio",
+ "cite t",
+ "cit et",
+ "c itet",
+ "ye ct",
+ "y ect",
+ "▁n r",
+ "▁ nr",
+ "x e",
+ "▁B run",
+ "▁Br un",
+ "▁Bru n",
+ "▁_ ,",
+ "▁ _,",
+ "av or",
+ "avo r",
+ "a vor",
+ "▁dis cipl",
+ "al m",
+ "a lm",
+ "▁но ября",
+ "▁S SL",
+ "▁SS L",
+ "▁ SSL",
+ "▁Ka iser",
+ "▁Kais er",
+ "▁re cher",
+ "▁rec her",
+ "yg on",
+ "y gon",
+ "▁regard less",
+ "▁config ur",
+ "▁un necess",
+ "▁Cl ark",
+ "▁Clar k",
+ "PH P",
+ "P HP",
+ "▁F ALSE",
+ "▁ FALSE",
+ "▁p ad",
+ "▁pa d",
+ "▁ pad",
+ "$ }",
+ "▁v alu",
+ "▁val u",
+ "▁va lu",
+ "▁ valu",
+ "▁dise ase",
+ "▁ma ior",
+ "▁mai or",
+ "▁h ommes",
+ "▁hom mes",
+ "▁homme s",
+ "▁Ed ition",
+ "▁Edit ion",
+ "sl ant",
+ "s lant",
+ "▁en ding",
+ "▁end ing",
+ "▁ ending",
+ "▁sett led",
+ "ur us",
+ "uru s",
+ "u rus",
+ "he d",
+ "h ed",
+ "Pat tern",
+ "▁го дина",
+ "▁годи на",
+ "▁Phil adel",
+ "tikz picture",
+ "▁co al",
+ "▁s ede",
+ "▁se de",
+ "▁sed e",
+ "▁satisf ies",
+ "▁t rim",
+ "▁tr im",
+ "▁tri m",
+ "▁ trim",
+ "▁b at",
+ "▁ba t",
+ "▁ bat",
+ "▁améric ain",
+ "▁lug lio",
+ "▁по ча",
+ "▁поч а",
+ "ff ff",
+ "fff f",
+ "f fff",
+ "▁T arget",
+ "▁Tar get",
+ "▁ Target",
+ "gener ate",
+ "▁Z ie",
+ "ți a",
+ "ț ia",
+ "▁g ard",
+ "▁gar d",
+ "▁ga rd",
+ "▁work ers",
+ "▁worker s",
+ "▁J ob",
+ "▁Jo b",
+ "▁ Job",
+ "▁ur ban",
+ "▁urb an",
+ "▁ urban",
+ "ah len",
+ "ahl en",
+ "a hlen",
+ "▁Build ing",
+ "▁n eu",
+ "▁ne u",
+ "▁ch ron",
+ "▁chr on",
+ "▁ chron",
+ "▁Ear l",
+ "gr o",
+ "g ro",
+ "US E",
+ "U SE",
+ "▁X II",
+ "▁XI I",
+ "▁we alth",
+ "▁ wealth",
+ "in ae",
+ "ina e",
+ "▁Б ра",
+ "▁li bert",
+ "▁lib ert",
+ "▁liber t",
+ "ir os",
+ "iro s",
+ "i ros",
+ ": $",
+ "le e",
+ "l ee",
+ "ie ves",
+ "ieve s",
+ "iev es",
+ "▁Just ice",
+ "▁o il",
+ "▁Ath let",
+ "▁c lo",
+ "▁cl o",
+ "▁ clo",
+ "Sc ale",
+ "Scal e",
+ "▁l ips",
+ "▁li ps",
+ "▁lip s",
+ "▁a pril",
+ "▁ap ril",
+ "▁apr il",
+ "▁im pression",
+ "▁imp ression",
+ "▁impr ession",
+ "▁impress ion",
+ "▁per ce",
+ "▁уча сти",
+ "▁участ и",
+ "vi l",
+ "v il",
+ "éc h",
+ "é ch",
+ "▁e quality",
+ "▁equ ality",
+ "▁equal ity",
+ "▁ equality",
+ "▁м ет",
+ "▁ме т",
+ "▁ мет",
+ "▁an notation",
+ "▁annot ation",
+ "▁ annotation",
+ "er nal",
+ "ern al",
+ "erna l",
+ "▁M ach",
+ "▁Ma ch",
+ "▁Mac h",
+ "▁int itul",
+ "pro blem",
+ "prob lem",
+ "ющи х",
+ "ю щих",
+ "op lus",
+ "o plus",
+ "▁thous ands",
+ "▁thousand s",
+ "▁calcul ations",
+ "▁calculation s",
+ "▁calc ulations",
+ "um ps",
+ "ump s",
+ "▁tri angle",
+ "▁ triangle",
+ "ph al",
+ "pha l",
+ "p hal",
+ "▁D orf",
+ "▁Do rf",
+ "▁Dor f",
+ "▁doll ars",
+ "▁d enen",
+ "▁de nen",
+ "▁den en",
+ "l ès",
+ "ol id",
+ "oli d",
+ "▁Result s",
+ "▁ Results",
+ "▁Stad ium",
+ "▁D esp",
+ "▁De sp",
+ "▁Des p",
+ "▁E isen",
+ "im ir",
+ "imi r",
+ "i mir",
+ "▁s otto",
+ "▁so tto",
+ "▁sott o",
+ "▁č i",
+ "▁ či",
+ "at able",
+ "ata ble",
+ "a table",
+ "or um",
+ "oru m",
+ "o rum",
+ "▁conver gence",
+ "▁je une",
+ "▁jeu ne",
+ "ok ing",
+ "oki ng",
+ "o king",
+ "▁жи во",
+ "ain ing",
+ "ai ning",
+ "a ining",
+ "po inter",
+ "point er",
+ "cul o",
+ "cu lo",
+ "c ulo",
+ "▁js ou",
+ "▁g rab",
+ "▁gr ab",
+ "▁gra b",
+ "ak te",
+ "akt e",
+ "a kte",
+ "▁ho ping",
+ "▁hop ing",
+ "▁M ak",
+ "▁Ma k",
+ "▁s ag",
+ "▁sa g",
+ "origin e",
+ "orig ine",
+ "▁по след",
+ "▁после д",
+ "▁V eg",
+ "▁Ve g",
+ "▁the oret",
+ "▁T ru",
+ "▁Tr u",
+ "ne ment",
+ "nem ent",
+ "n ement",
+ "▁f aces",
+ "▁fa ces",
+ "▁face s",
+ "▁fac es",
+ "▁ faces",
+ "H or",
+ "Jo in",
+ "J oin",
+ "ar el",
+ "are l",
+ "a rel",
+ "▁о коло",
+ "▁ок оло",
+ "How ever",
+ "▁c atal",
+ "▁ca tal",
+ "▁cat al",
+ "▁ catal",
+ "bo urg",
+ "bour g",
+ "b ourg",
+ "▁mysql i",
+ "▁mysq li",
+ "▁ mysqli",
+ "ac ions",
+ "acion s",
+ "aci ons",
+ "▁Init ial",
+ "▁ Initial",
+ "▁r ain",
+ "▁ra in",
+ "▁ rain",
+ "it ure",
+ "itu re",
+ "▁Sci ences",
+ "▁Science s",
+ "▁Kre is",
+ "._ _",
+ ". __",
+ "▁cin q",
+ "▁A uß",
+ "▁Au ß",
+ "ith met",
+ "it ors",
+ "ito rs",
+ "itor s",
+ "am azon",
+ "ama zon",
+ "▁g ap",
+ "▁ga p",
+ "▁ign ored",
+ "▁ignore d",
+ "▁ignor ed",
+ "ad v",
+ "ко ї",
+ "▁ча сть",
+ "▁час ть",
+ "▁част ь",
+ "▁cor por",
+ "▁corpo r",
+ "це р",
+ "ц ер",
+ "▁cr ime",
+ "▁cri me",
+ "▁crim e",
+ "uo us",
+ "u ous",
+ "▁на лази",
+ "Data Frame",
+ "во ди",
+ "вод и",
+ "Ig n",
+ "I gn",
+ "▁Lin coln",
+ "▁me nos",
+ "▁men os",
+ "▁Lu ft",
+ "▁L ind",
+ "▁Li nd",
+ "▁Lin d",
+ "▁C ook",
+ "▁Co ok",
+ "▁ Cook",
+ "▁material s",
+ "ap ped",
+ "app ed",
+ "appe d",
+ "a pped",
+ "ign ore",
+ "▁от кры",
+ "fr ied",
+ "fri ed",
+ "f ried",
+ "▁gouvern ement",
+ "▁f ired",
+ "▁fire d",
+ "▁fi red",
+ "▁fir ed",
+ "▁screen shot",
+ "▁screens hot",
+ "се н",
+ "с ен",
+ "▁[ (",
+ "▁ [(",
+ "▁органи за",
+ "Graph ics",
+ "▁про ти",
+ "▁p hen",
+ "▁ph en",
+ "▁ phen",
+ "cr aft",
+ "cra ft",
+ "c raft",
+ "▁b rain",
+ "▁br ain",
+ "▁bra in",
+ "▁C omo",
+ "▁Com o",
+ "▁Co mo",
+ "▁Every thing",
+ "an es",
+ "ane s",
+ "a nes",
+ "IG N",
+ "I GN",
+ "▁n ederbörd",
+ "▁ nederbörd",
+ "▁For est",
+ "▁Fore st",
+ "▁Fo rest",
+ "za hl",
+ "z ahl",
+ "▁Am ong",
+ "Q t",
+ "▁to gg",
+ "▁tog g",
+ "▁vari ant",
+ "▁ variant",
+ "▁h ill",
+ "▁hi ll",
+ "▁ hill",
+ "пи си",
+ "пис и",
+ "col on",
+ "co lon",
+ "colo n",
+ "▁dic embre",
+ "го р",
+ "г ор",
+ "▁W ind",
+ "▁Win d",
+ "▁Wi nd",
+ "ünst ler",
+ "▁= \\",
+ "▁ =\\",
+ "sa ved",
+ "save d",
+ "s aved",
+ "▁n ej",
+ "▁ne j",
+ "▁ nej",
+ "un te",
+ "unt e",
+ "ut to",
+ "utt o",
+ "u tto",
+ "▁rec ens",
+ "▁rece ns",
+ "▁s ick",
+ "▁si ck",
+ "▁sic k",
+ "▁d esen",
+ "▁de sen",
+ "▁des en",
+ "US T",
+ "U ST",
+ "▁wor st",
+ "▁An gel",
+ "▁Ang el",
+ "od ox",
+ "odo x",
+ "▁Prov ince",
+ "▁Provin ce",
+ "▁M az",
+ "▁Ma z",
+ "▁agre ement",
+ "▁agree ment",
+ "▁B ass",
+ "▁Bas s",
+ "▁Ba ss",
+ "▁seg unda",
+ "on ces",
+ "once s",
+ "onc es",
+ "▁Lin ki",
+ "▁Link i",
+ "▁C L",
+ "▁ CL",
+ "▁j á",
+ "it ement",
+ "ite ment",
+ "item ent",
+ "▁á rea",
+ "▁ár ea",
+ "▁scal ar",
+ "▁scala r",
+ "▁Р ес",
+ "▁Ре с",
+ "aw t",
+ "a wt",
+ "si eme",
+ "▁j uni",
+ "▁ju ni",
+ "▁jun i",
+ "▁худо ж",
+ "ik us",
+ "iku s",
+ "▁l id",
+ "▁li d",
+ "pp el",
+ "ppe l",
+ "p pel",
+ "av i",
+ "a vi",
+ "▁bal ance",
+ "ip ping",
+ "ipp ing",
+ "ippi ng",
+ "i pping",
+ "cuss ion",
+ "че ских",
+ "(\" .",
+ "( \".",
+ "Al so",
+ "▁w his",
+ "▁wh is",
+ "HO ME",
+ "▁b rown",
+ "▁br own",
+ "▁bro wn",
+ "▁brow n",
+ "▁d ía",
+ "▁dí a",
+ "▁pu ò",
+ "plot lib",
+ "▁Jahrhundert s",
+ "D K",
+ "▁an chor",
+ "▁anc hor",
+ "▁anch or",
+ "▁ anchor",
+ ".. .]",
+ "... ]",
+ "▁Aust ria",
+ "▁m arca",
+ "▁mar ca",
+ "▁marc a",
+ "▁g ez",
+ "▁ge z",
+ "ious ly",
+ "i ously",
+ "▁l azy",
+ "▁la zy",
+ "x a",
+ "▁Ch annel",
+ "▁Chan nel",
+ "▁ Channel",
+ "▁ne uen",
+ "▁neue n",
+ "▁neu en",
+ "da s",
+ "d as",
+ "▁search ed",
+ "▁sta at",
+ "▁ staat",
+ "▁Та к",
+ "▁Jo sef",
+ "▁Jose f",
+ "▁Jos ef",
+ "▁S her",
+ "▁Sh er",
+ "▁She r",
+ "po is",
+ "p ois",
+ "▁e nem",
+ "▁en em",
+ "▁access ing",
+ "▁не ко",
+ "▁fur ono",
+ "▁pse udo",
+ "▁pseud o",
+ "? >",
+ "▁estado un",
+ "▁estad oun",
+ "▁Ви ди",
+ "▁mot iv",
+ "▁re call",
+ "▁rec all",
+ "is son",
+ "iss on",
+ "i sson",
+ "ó b",
+ ")- -",
+ ") --",
+ "▁E rz",
+ "▁Er z",
+ "▁са вез",
+ "Dir ect",
+ "Di rect",
+ "D irect",
+ "со б",
+ "с об",
+ "▁s ho",
+ "▁sh o",
+ "v ölker",
+ "A p",
+ "ge ns",
+ "gen s",
+ "g ens",
+ "ниш тво",
+ "▁Am sterdam",
+ "us k",
+ "u sk",
+ "п ло",
+ "▁sim ulation",
+ "▁B C",
+ "▁ BC",
+ "▁W oj",
+ "▁Wo j",
+ "au tom",
+ "aut om",
+ "auto m",
+ "Al ex",
+ "A lex",
+ "▁econom ic",
+ "▁econ omic",
+ "го м",
+ "г ом",
+ "ik ai",
+ "ika i",
+ "▁a ltre",
+ "▁al tre",
+ "▁alt re",
+ "▁' -",
+ "▁ '-",
+ "▁W eg",
+ "▁We g",
+ "Not Found",
+ "й ской",
+ "▁convert ing",
+ "▁conver ting",
+ "ph abet",
+ "pha bet",
+ "at rice",
+ "atr ice",
+ "atri ce",
+ "bour ne",
+ "al om",
+ "alo m",
+ "▁comp aring",
+ "▁compar ing",
+ "▁Z o",
+ "▁f la",
+ "▁fl a",
+ "ва я",
+ "▁en tra",
+ "▁ent ra",
+ "▁entr a",
+ "▁char set",
+ "▁chars et",
+ "develop ers",
+ "developer s",
+ "íst ica",
+ "} >",
+ "▁J azz",
+ "▁Ja zz",
+ "▁How ard",
+ "▁Ho ward",
+ "ш та",
+ "▁cl one",
+ "▁clo ne",
+ "▁ clone",
+ "do or",
+ "d oor",
+ "▁P in",
+ "▁Pi n",
+ "** *",
+ "* **",
+ "▁sil ent",
+ "ec ycle",
+ "e cycle",
+ "is ce",
+ "isc e",
+ "i sce",
+ "▁m ud",
+ "▁mu d",
+ "▁Dis play",
+ "▁ Display",
+ "▁l ip",
+ "▁li p",
+ "▁ lip",
+ "▁исполь зова",
+ "▁character istic",
+ "▁s b",
+ "▁ sb",
+ "fire base",
+ "▁B ew",
+ "▁Be w",
+ "Cal endar",
+ "▁u so",
+ "▁us o",
+ "▁ uso",
+ "ès e",
+ "è se",
+ "▁R at",
+ "▁Ra t",
+ "▁es per",
+ "▁espe r",
+ "▁esp er",
+ "▁ esper",
+ "▁throw ing",
+ "▁thro wing",
+ "▁ro dz",
+ "▁rod z",
+ "▁y ards",
+ "▁yard s",
+ "▁g rass",
+ "▁gr ass",
+ "▁gra ss",
+ "▁mar ker",
+ "▁mark er",
+ "▁ marker",
+ "▁K os",
+ "▁Ko s",
+ "Th eta",
+ "The ta",
+ "▁organ is",
+ "ker nel",
+ "kern el",
+ "k ernel",
+ "▁person as",
+ "▁pers onas",
+ "▁persona s",
+ "ke ep",
+ "kee p",
+ "▁exc laimed",
+ "os lav",
+ "▁Ent ertain",
+ "▁Enter tain",
+ "не р",
+ "н ер",
+ "▁in won",
+ "▁R and",
+ "▁Ra nd",
+ "▁Ran d",
+ "red uce",
+ "redu ce",
+ "fa c",
+ "f ac",
+ "ex pression",
+ "exp ression",
+ "expr ession",
+ "express ion",
+ "y j",
+ "▁differ enti",
+ "▁different i",
+ "ag lia",
+ "agli a",
+ "▁tem plates",
+ "▁template s",
+ "▁ templates",
+ "▁m ű",
+ "▁p rv",
+ "▁pr v",
+ "▁m ois",
+ "▁mo is",
+ "▁moi s",
+ "▁gew ann",
+ "▁бу ла",
+ "bib li",
+ "b ibli",
+ "de mo",
+ "dem o",
+ "d emo",
+ "▁And erson",
+ "▁Anders on",
+ "▁ре д",
+ "▁ ред",
+ "▁por que",
+ "▁P ologne",
+ "▁Pol ogne",
+ "▁t rip",
+ "▁tr ip",
+ "▁tri p",
+ "▁exem ple",
+ "▁exempl e",
+ "▁Intern acional",
+ "▁ка о",
+ "In sert",
+ "gen eral",
+ "gener al",
+ "SE SSION",
+ "ber ga",
+ "berg a",
+ "hä lt",
+ "h ält",
+ "un as",
+ "una s",
+ "u nas",
+ "ми ра",
+ "мир а",
+ "▁yield s",
+ "map sto",
+ "maps to",
+ "sp ot",
+ "s pot",
+ "▁+ \\",
+ "▁ +\\",
+ "лл а",
+ "л ла",
+ "▁precis ely",
+ "▁precise ly",
+ "▁ч лен",
+ "sh adow",
+ "Ar e",
+ "A re",
+ "un al",
+ "una l",
+ "u nal",
+ "▁dis par",
+ "▁disp ar",
+ "▁tít ulo",
+ "ne st",
+ "nes t",
+ "n est",
+ "▁L ow",
+ "▁Lo w",
+ "▁p rot",
+ "▁pro t",
+ "▁pr ot",
+ "▁C osta",
+ "▁Co sta",
+ "▁Cost a",
+ "▁Cos ta",
+ "name d",
+ "na med",
+ "nam ed",
+ "n amed",
+ "▁g ained",
+ "▁ga ined",
+ "▁gain ed",
+ "les ia",
+ "l esia",
+ "▁admin istration",
+ "▁administr ation",
+ "Im port",
+ "Imp ort",
+ "br anch",
+ "b ranch",
+ "▁sym path",
+ "vo j",
+ "v oj",
+ "▁E C",
+ "▁ EC",
+ "▁municip io",
+ "▁anim ated",
+ "▁animate d",
+ "▁direct ories",
+ "▁director ies",
+ "▁ro of",
+ "zą d",
+ "z ąd",
+ "im et",
+ "ime t",
+ "i met",
+ "pr oto",
+ "pro to",
+ "bl a",
+ "b la",
+ ": ]",
+ "ha ve",
+ "hav e",
+ "h ave",
+ "at em",
+ "ate m",
+ "a tem",
+ "▁n s",
+ "▁ ns",
+ "▁s ector",
+ "▁se ctor",
+ "▁sec tor",
+ "▁sect or",
+ "th ree",
+ "ow ane",
+ "owa ne",
+ "owan e",
+ "wer s",
+ "we rs",
+ "w ers",
+ "ов их",
+ "ови х",
+ "ren ce",
+ "r ence",
+ "▁ex tr",
+ "▁ext r",
+ "ig ten",
+ "igt en",
+ "igte n",
+ "▁occ ident",
+ "ț ă",
+ "▁e at",
+ "▁h ydro",
+ "▁hy dro",
+ "▁hyd ro",
+ "ubern etes",
+ "[ @",
+ "▁M oon",
+ "▁Mo on",
+ "▁S ho",
+ "▁Sh o",
+ "▁else where",
+ "ül ler",
+ "üll er",
+ "Up load",
+ "ла нд",
+ "лан д",
+ "л анд",
+ "▁F ör",
+ "w issenschaft",
+ "K S",
+ "▁phys ics",
+ "▁ physics",
+ "t z",
+ "▁се ред",
+ "▁Ar beit",
+ "▁Arbe it",
+ "▁ме ст",
+ "▁ мест",
+ "▁Geb iet",
+ "▁in sect",
+ "▁ins ect",
+ "▁inse ct",
+ "A h",
+ "iz ado",
+ "iza do",
+ "▁tem ple",
+ "▁temp le",
+ "▁ann ual",
+ "st ad",
+ "sta d",
+ "▁hab itat",
+ "▁habit at",
+ "▁A B",
+ "▁ AB",
+ "wo rt",
+ "wor t",
+ "w ort",
+ "▁re pos",
+ "▁rep os",
+ "▁repo s",
+ "▁N eu",
+ "▁Ne u",
+ "▁$ (\".",
+ "▁$( \".",
+ "▁$(\" .",
+ "Vor lage",
+ "▁repre zent",
+ "est anden",
+ "In tern",
+ "Int ern",
+ "Inter n",
+ ". `",
+ "▁fa iling",
+ "▁fail ing",
+ "▁M aterial",
+ "▁Mate rial",
+ "▁ Material",
+ "▁effect ively",
+ "▁effective ly",
+ "те лем",
+ "тел ем",
+ "▁г ла",
+ "▁ гла",
+ "▁na hm",
+ "▁nah m",
+ "▁ nahm",
+ "▁differ ently",
+ "▁different ly",
+ "ext ension",
+ "▁V erm",
+ "▁Ver m",
+ "▁Ve rm",
+ "en abled",
+ "ena bled",
+ "enable d",
+ "con figure",
+ "config ure",
+ "ni o",
+ "n io",
+ "ci ones",
+ "cio nes",
+ "cion es",
+ "c iones",
+ "▁B each",
+ "▁Be ach",
+ "со на",
+ "сон а",
+ "с она",
+ "▁copy ing",
+ "▁cop ying",
+ "▁у країн",
+ "▁при зна",
+ "▁приз на",
+ "z h",
+ "Des ktop",
+ "▁s ost",
+ "▁so st",
+ "▁sub sequently",
+ "▁subsequ ently",
+ "▁subsequent ly",
+ "▁Le hr",
+ "▁ ó",
+ "lä r",
+ "l är",
+ "od or",
+ "odo r",
+ "o dor",
+ "ph on",
+ "p hon",
+ "n c",
+ "iter ator",
+ "▁э ти",
+ "▁europ é",
+ "▁Tor onto",
+ "ód igo",
+ "▁p osto",
+ "▁po sto",
+ "▁pos to",
+ "▁post o",
+ "ff e",
+ "f fe",
+ "▁c rew",
+ "▁cre w",
+ "▁cr ew",
+ "▁Sch war",
+ "▁Schw ar",
+ "S a",
+ "squ are",
+ "s quare",
+ "▁be side",
+ "▁bes ide",
+ "▁М і",
+ "▁a th",
+ "▁at h",
+ "▁ ath",
+ "▁ad vent",
+ "▁adv ent",
+ "c ji",
+ "writ ten",
+ "wr itten",
+ "w ritten",
+ "▁r uss",
+ "▁ru ss",
+ "▁rus s",
+ "ro st",
+ "ros t",
+ "r ost",
+ "H I",
+ "▁d ice",
+ "▁di ce",
+ "▁dic e",
+ "cc a",
+ "c ca",
+ "▁d ép",
+ "▁dé p",
+ "pl y",
+ "p ly",
+ "big g",
+ "bi gg",
+ "b igg",
+ "zi ał",
+ "zia ł",
+ "z iał",
+ "üt t",
+ "ü tt",
+ "▁о дно",
+ "▁од но",
+ "J ECT",
+ "сь кому",
+ "сько му",
+ "ськ ому",
+ "no s",
+ "n os",
+ "mo ck",
+ "m ock",
+ "La unch",
+ "sa me",
+ "sam e",
+ "s ame",
+ "▁j obs",
+ "▁jo bs",
+ "▁job s",
+ "▁wide ly",
+ "▁wid ely",
+ "▁def ines",
+ "▁define s",
+ "▁defin es",
+ "▁P se",
+ "▁Ps e",
+ "▁neigh bour",
+ "▁neighb our",
+ "ющи е",
+ "▁cl oser",
+ "▁close r",
+ "▁clos er",
+ "▁clo ser",
+ "▁рас поло",
+ "▁распо ло",
+ "▁cl ubs",
+ "▁club s",
+ "fl y",
+ "f ly",
+ "ши м",
+ "ш им",
+ "▁suffer ed",
+ "▁suff ered",
+ "▁n ar",
+ "▁na r",
+ "▁ nar",
+ "▁l avor",
+ "▁la vor",
+ "▁lav or",
+ "Ext ension",
+ "ition ally",
+ "itional ly",
+ "▁g race",
+ "▁gr ace",
+ "▁gra ce",
+ "▁Campe onato",
+ "▁Christ mas",
+ "m iddle",
+ "oth ek",
+ "othe k",
+ "el ements",
+ "element s",
+ "ele ments",
+ "elem ents",
+ "▁son dern",
+ "▁t arde",
+ "▁tar de",
+ "▁tard e",
+ "▁perman ent",
+ "▁con clude",
+ "▁concl ude",
+ "Se g",
+ "S eg",
+ "▁а каде",
+ "}\" ,",
+ "} \",",
+ "▁февра ля",
+ "ře d",
+ "ř ed",
+ "▁I L",
+ "▁ IL",
+ "ju d",
+ "j ud",
+ "▁U SS",
+ "▁US S",
+ "▁N ature",
+ "▁Natur e",
+ "▁Nat ure",
+ "if ference",
+ "iffer ence",
+ "iffe rence",
+ "Serial izer",
+ "▁tw elve",
+ "ti d",
+ "t id",
+ "ми я",
+ "че ского",
+ "▁cal endar",
+ "▁ calendar",
+ "con cat",
+ "▁inter section",
+ "▁intersect ion",
+ "▁P A",
+ "▁ PA",
+ "az ure",
+ "azu re",
+ "▁situ ée",
+ "▁situé e",
+ "▁k inds",
+ "▁kind s",
+ "▁kin ds",
+ "▁aus ge",
+ "▁r ural",
+ "▁ru ral",
+ "Th eme",
+ "The me",
+ "▁t ale",
+ "▁tal e",
+ "▁ta le",
+ "no indent",
+ "go ing",
+ "r x",
+ "ag i",
+ "a gi",
+ "wrap per",
+ "wr apper",
+ "w rapper",
+ "▁Co ast",
+ "mb H",
+ "▁пере д",
+ "▁пе ред",
+ "sp re",
+ "spr e",
+ "s pre",
+ "▁} \\",
+ "▁ }\\",
+ "▁L I",
+ "▁ LI",
+ "zn am",
+ "zna m",
+ "z nam",
+ "it led",
+ "itle d",
+ "Sam ple",
+ "S ample",
+ "ul iar",
+ "uli ar",
+ "* \\",
+ "▁res istance",
+ "▁resist ance",
+ "st ock",
+ "sto ck",
+ "ke d",
+ "k ed",
+ "▁H E",
+ "▁ HE",
+ "▁pos session",
+ "▁poss ession",
+ "▁possess ion",
+ "▁R ing",
+ "▁Ri ng",
+ "▁m agyar",
+ "▁mag yar",
+ "ou ts",
+ "out s",
+ "o uts",
+ "▁Secret ary",
+ "nd e",
+ "n de",
+ "▁W ald",
+ "▁Wal d",
+ "▁Wa ld",
+ "- (",
+ "▁I SO",
+ "▁IS O",
+ "▁ ISO",
+ "▁af ternoon",
+ "ion en",
+ "io nen",
+ "ione n",
+ "i onen",
+ "▁st ops",
+ "▁stop s",
+ "▁sto ps",
+ "▁const ants",
+ "▁constant s",
+ "gu ard",
+ "bo w",
+ "b ow",
+ "▁e rs",
+ "▁er s",
+ "▁ ers",
+ "▁Fire base",
+ "▁C lear",
+ "▁Cl ear",
+ "▁Cle ar",
+ "▁ Clear",
+ "▁H oly",
+ "▁Hol y",
+ "▁Ho ly",
+ "W in",
+ "▁title s",
+ "▁tit les",
+ "▁т рав",
+ "▁тра в",
+ "▁cont rib",
+ "▁contr ib",
+ "▁ contrib",
+ "hä ng",
+ "h äng",
+ "▁phot ograph",
+ "▁photo graph",
+ "▁Dist ribution",
+ "if ts",
+ "ift s",
+ "▁a unque",
+ "com b",
+ "co mb",
+ "c omb",
+ "AD D",
+ "A DD",
+ "▁public ation",
+ "▁pub lication",
+ "▁publi cation",
+ "▁слу ж",
+ "▁к ня",
+ "▁ay ant",
+ "▁re store",
+ "▁r estore",
+ "▁rest ore",
+ "▁resto re",
+ "▁bel ief",
+ "▁v ég",
+ "▁vé g",
+ "▁ext ensions",
+ "▁extension s",
+ "▁extens ions",
+ "▁ extensions",
+ "▁de com",
+ "▁dec om",
+ "вши й",
+ "в ший",
+ "W T",
+ "▁par ti",
+ "▁part i",
+ "▁gi oc",
+ "▁ми ра",
+ "▁ мира",
+ "▁is su",
+ "▁iss u",
+ "pi pe",
+ "pip e",
+ "p ipe",
+ "▁pro ps",
+ "▁pr ops",
+ "▁prop s",
+ "▁ props",
+ "▁w illing",
+ "▁will ing",
+ "▁wil ling",
+ "▁n est",
+ "▁ne st",
+ "▁ nest",
+ "as o",
+ "a so",
+ "po t",
+ "p ot",
+ "▁hand les",
+ "▁handle s",
+ "▁ф о",
+ "▁ фо",
+ "▁m oder",
+ "▁mod er",
+ "▁mo der",
+ "▁mode r",
+ "▁eben falls",
+ "▁fight ing",
+ "um bn",
+ "umb n",
+ "▁trans parent",
+ "▁K rist",
+ "▁Kr ist",
+ "▁home s",
+ "▁hom es",
+ "▁ho mes",
+ "▁voy age",
+ "Fa iled",
+ "Fail ed",
+ "▁B ird",
+ "▁Bi rd",
+ "▁Bir d",
+ "▁He art",
+ "Count er",
+ "Co unter",
+ "C ounter",
+ "▁Scott ish",
+ "át ica",
+ "▁ar beit",
+ "▁ arbeit",
+ "^{ -\\",
+ "^{- \\",
+ "▁S or",
+ "▁So r",
+ "▁eng aged",
+ "▁engag ed",
+ "▁a side",
+ "▁as ide",
+ "▁asi de",
+ "▁F ou",
+ "▁Fo u",
+ "▁w iel",
+ "▁wie l",
+ "▁re const",
+ "▁recon st",
+ "ou sin",
+ "ous in",
+ "▁host ed",
+ "▁ho sted",
+ "▁hos ted",
+ "▁c lasse",
+ "▁class e",
+ "▁cl asse",
+ "▁clas se",
+ "▁con test",
+ "▁cont est",
+ "▁conte st",
+ ".. .\"",
+ "... \"",
+ "мо м",
+ "м ом",
+ "▁be an",
+ "▁ bean",
+ "ge m",
+ "g em",
+ "▁consult ato",
+ "▁b io",
+ "▁bi o",
+ "▁ bio",
+ "▁subject s",
+ "bo Box",
+ "▁Sch rift",
+ "▁d inner",
+ "▁din ner",
+ "ă r",
+ "▁r ówn",
+ "▁% %",
+ "▁ %%",
+ "ba ge",
+ "bag e",
+ "b age",
+ "▁ver öff",
+ "▁det ected",
+ "▁detect ed",
+ "ie nn",
+ "ien n",
+ "i enn",
+ "ro se",
+ "ros e",
+ "r ose",
+ "▁T on",
+ "▁To n",
+ "Comp lete",
+ "Comple te",
+ "▁pro to",
+ "▁pr oto",
+ "▁prot o",
+ "▁ proto",
+ "ich ts",
+ "icht s",
+ "i chts",
+ "ST AT",
+ "Check ed",
+ "▁in ten",
+ "▁i nten",
+ "▁int en",
+ "▁inte n",
+ "▁s mile",
+ "▁sm ile",
+ "▁st rip",
+ "▁str ip",
+ "▁stri p",
+ "▁ strip",
+ "ne ut",
+ "') ;\r",
+ "'); \r",
+ "' );\r",
+ "fo ur",
+ "f our",
+ "▁to das",
+ "▁tod as",
+ "▁toda s",
+ "Control s",
+ "▁thor ough",
+ "ru p",
+ "r up",
+ "▁држа ви",
+ "it ă",
+ "Pro tocol",
+ "К а",
+ "▁expand ed",
+ "ex tra",
+ "ext ra",
+ "op ort",
+ "opo rt",
+ "o port",
+ "▁Ста нов",
+ "le ases",
+ "lease s",
+ "▁n otion",
+ "▁not ion",
+ "▁no tion",
+ "▁g uest",
+ "▁gu est",
+ "▁Is lands",
+ "▁Island s",
+ "ic ked",
+ "ick ed",
+ "▁D ave",
+ "▁Dav e",
+ "▁Da ve",
+ "▁ref lection",
+ "▁reflect ion",
+ "li v",
+ "l iv",
+ "ál ní",
+ "▁reve aled",
+ "▁s og",
+ "▁so g",
+ "▁T ax",
+ "▁Ta x",
+ "▁period o",
+ "▁peri odo",
+ "▁Welt krie",
+ "catal ina",
+ "qu é",
+ "q ué",
+ "▁F ather",
+ "▁Fa ther",
+ "▁B ir",
+ "▁Bi r",
+ "ex pect",
+ "exp ect",
+ "▁re gression",
+ "▁reg ression",
+ "in é",
+ "i né",
+ "▁d abei",
+ "▁da bei",
+ "pe rm",
+ "per m",
+ "p erm",
+ "ме не",
+ "мен е",
+ "м ене",
+ "▁A bd",
+ "▁Ab d",
+ "▁C F",
+ "▁ CF",
+ "ar ks",
+ "ark s",
+ "resol ve",
+ "wed ge",
+ "w edge",
+ "▁initial ization",
+ "▁Vé ase",
+ "▁при ня",
+ "st mt",
+ "▁in come",
+ "▁inc ome",
+ "M Y",
+ "▁od kazy",
+ "▁Sie he",
+ "▁bod ies",
+ "▁s oc",
+ "▁so c",
+ "R andom",
+ "▁s enza",
+ "▁sen za",
+ "ab lo",
+ "abl o",
+ "a blo",
+ "▁reg arded",
+ "▁regard ed",
+ "on Create",
+ "▁Mag azine",
+ "▁R af",
+ "▁Ra f",
+ "▁Buen os",
+ "и л",
+ ")) );",
+ "))) ;",
+ ") ));",
+ "ca pt",
+ "cap t",
+ "c apt",
+ "re direct",
+ "red irect",
+ "▁pe tit",
+ "▁pet it",
+ "▁f arm",
+ "▁far m",
+ "▁fa rm",
+ "▁r ôle",
+ "▁стать и",
+ " ",
+ "sub figure",
+ "èce s",
+ "è ces",
+ "zi el",
+ "zie l",
+ "z iel",
+ "▁о кон",
+ "▁ок он",
+ "E E",
+ "me e",
+ "m ee",
+ "▁p erten",
+ "▁per ten",
+ "▁pert en",
+ "▁représ ent",
+ "▁L A",
+ "▁ LA",
+ "? '",
+ "▁т ру",
+ "▁r ational",
+ "▁rat ional",
+ "▁ratio nal",
+ "os of",
+ "oso f",
+ "▁k ne",
+ "▁kn e",
+ "▁art ists",
+ "▁artist s",
+ "Fl ow",
+ "F low",
+ "▁А ль",
+ "▁Ал ь",
+ "iz ard",
+ "iza rd",
+ "izar d",
+ "▁num ero",
+ "▁numer o",
+ "act ic",
+ "a ctic",
+ "▁de struct",
+ "▁dest ruct",
+ "▁destru ct",
+ "▁П ра",
+ "ons ieur",
+ "q t",
+ "ab estanden",
+ "no ść",
+ "Con nect",
+ "Conne ct",
+ "▁o racle",
+ "▁or acle",
+ "▁ora cle",
+ "▁ oracle",
+ "▁Stock holm",
+ "size of",
+ "▁gem äß",
+ "AC T",
+ "A CT",
+ "▁ex pert",
+ "▁exp ert",
+ "▁exper t",
+ "ut ions",
+ "ution s",
+ "uti ons",
+ "▁h acia",
+ "▁ha cia",
+ "▁log ger",
+ "▁ logger",
+ "▁f ool",
+ "▁fo ol",
+ "▁foo l",
+ "ry pto",
+ "rypt o",
+ "æ r",
+ "▁c idade",
+ "▁ci dade",
+ "▁состав е",
+ "▁соста ве",
+ "ok er",
+ "oke r",
+ "o ker",
+ "▁Trans fer",
+ "▁den ied",
+ "Tr ack",
+ "Tra ck",
+ "T rack",
+ "▁r adi",
+ "▁ra di",
+ "▁rad i",
+ "ze c",
+ "z ec",
+ "▁Histor ic",
+ "▁Einwo hner",
+ "ко ю",
+ "▁х ра",
+ "▁ хра",
+ "▁C ategory",
+ "▁ Category",
+ "▁Dis ney",
+ "▁sw ap",
+ "▁ swap",
+ "Be gin",
+ "B egin",
+ "▁m ientras",
+ "▁d ance",
+ "▁dan ce",
+ "▁t ête",
+ "▁d roit",
+ "▁dr oit",
+ "▁dro it",
+ "er ta",
+ "ert a",
+ "▁bird s",
+ "▁bir ds",
+ "▁con vin",
+ "▁conv in",
+ "par ator",
+ "para tor",
+ "д ра",
+ "▁E S",
+ "▁ ES",
+ "▁Ress ources",
+ "▁Ressource s",
+ "EG IN",
+ "ück e",
+ "ü cke",
+ "▁Cr uz",
+ "▁Cru z",
+ "ab ling",
+ "abl ing",
+ "a bling",
+ "▁\" @",
+ "▁me tres",
+ "▁met res",
+ "▁B eg",
+ "▁Be g",
+ "▁Gr ünd",
+ "▁B oh",
+ "▁Bo h",
+ "▁m ile",
+ "▁mil e",
+ "▁mi le",
+ "▁ mile",
+ "▁Techn ology",
+ "\" +",
+ "ac co",
+ "acc o",
+ "a cco",
+ "▁s s",
+ "▁ ss",
+ "▁F ed",
+ "▁Fe d",
+ "▁H end",
+ "▁He nd",
+ "▁Hen d",
+ "us ch",
+ "usc h",
+ "u sch",
+ "it ä",
+ "fol k",
+ "f olk",
+ "▁abs or",
+ "an tal",
+ "ant al",
+ "anta l",
+ "od ge",
+ "▁WH EN",
+ "▁Extern í",
+ "▁Reg iment",
+ "▁evalu ation",
+ "▁T ai",
+ "▁Ta i",
+ "▁voc als",
+ "▁vocal s",
+ "▁ex perimental",
+ "▁experiment al",
+ "em bed",
+ "emb ed",
+ "▁M inn",
+ "▁Min n",
+ "▁Mi nn",
+ "▁в ме",
+ "pr ec",
+ "pre c",
+ "p rec",
+ "ever y",
+ "ev ery",
+ "e very",
+ "▁ho of",
+ "▁Fern ando",
+ "▁Bibli ographie",
+ "▁n ag",
+ "▁na g",
+ "amerikan ischer",
+ "▁m arks",
+ "▁mar ks",
+ "▁mark s",
+ "▁ marks",
+ "▁U TC",
+ "▁ UTC",
+ "▁un certain",
+ "ди я",
+ "ol ia",
+ "oli a",
+ "o lia",
+ "▁c up",
+ "▁cu p",
+ "▁ cup",
+ "▁f ille",
+ "▁fil le",
+ "▁fill e",
+ "▁fi lle",
+ "▁d ok",
+ "▁do k",
+ "use ppe",
+ "est erd",
+ "ester d",
+ "este rd",
+ "e sterd",
+ "▁B rand",
+ "▁Br and",
+ "▁Bra nd",
+ "▁Bran d",
+ "▁Th ird",
+ "P P",
+ "no des",
+ "node s",
+ "n odes",
+ "▁P ad",
+ "▁Pa d",
+ "▁ Pad",
+ "▁l oved",
+ "▁lo ved",
+ "▁love d",
+ "▁lov ed",
+ "sw ing",
+ "s wing",
+ "▁surpr ised",
+ "▁surprise d",
+ "ar di",
+ "ard i",
+ "▁G R",
+ "▁ GR",
+ "] \"",
+ "▁equ ally",
+ "▁equal ly",
+ "▁eq ually",
+ "ih e",
+ "i he",
+ "ca re",
+ "car e",
+ "c are",
+ "пи сок",
+ "пис ок",
+ "li jk",
+ "lij k",
+ "l ijk",
+ "ri nn",
+ "rin n",
+ "r inn",
+ "▁\\ [\\",
+ "▁\\[ \\",
+ "▁s ons",
+ "▁so ns",
+ "▁son s",
+ "▁t ät",
+ "ic amente",
+ "ica mente",
+ "▁l isting",
+ "▁list ing",
+ "iel lement",
+ "ielle ment",
+ "▁nyel ven",
+ "▁d s",
+ "▁ ds",
+ "▁agr icult",
+ "▁H ermann",
+ "▁Her mann",
+ "▁Herm ann",
+ "▁bes ides",
+ "▁beside s",
+ "pro gress",
+ "prog ress",
+ "▁pec uliar",
+ "fo cus",
+ "f ocus",
+ "c n",
+ "- $",
+ "ствен ный",
+ "ou rg",
+ "our g",
+ "o urg",
+ "▁w yn",
+ "▁wy n",
+ "▁conduct ed",
+ "▁condu cted",
+ "▁Станов ништво",
+ "connect ed",
+ "conne cted",
+ "conn ected",
+ "▁b ott",
+ "▁bo tt",
+ "▁bot t",
+ "▁с мер",
+ "▁см ер",
+ "▁P oz",
+ "▁Po z",
+ "un ct",
+ "unc t",
+ "con da",
+ "cond a",
+ "c onda",
+ "▁савез ној",
+ "▁ha vet",
+ "▁have t",
+ "▁hav et",
+ "li gt",
+ "lig t",
+ "l igt",
+ "or ted",
+ "ort ed",
+ "orte d",
+ "▁ent ering",
+ "▁enter ing",
+ "mult ip",
+ "multi p",
+ "mul tip",
+ "▁Tem ple",
+ "▁Temp le",
+ "▁P lant",
+ "▁Pl ant",
+ "▁Plan t",
+ "▁Pla nt",
+ "type of",
+ "▁V lad",
+ "▁qu ed",
+ "▁que d",
+ "▁q ued",
+ "▁re ste",
+ "▁r este",
+ "▁res te",
+ "▁rest e",
+ "▁ма й",
+ "▁ май",
+ "▁V ery",
+ "▁Ver y",
+ "▁Ve ry",
+ "ambigu ation",
+ "▁ch alleng",
+ "▁res pective",
+ "▁respect ive",
+ "▁т ор",
+ "▁то р",
+ "▁ тор",
+ "C trl",
+ "▁abs ence",
+ "ar u",
+ "a ru",
+ "во е",
+ "▁för st",
+ "▁s q",
+ "▁ sq",
+ "▁Em peror",
+ "▁I gn",
+ "▁Ig n",
+ "▁ Ign",
+ "▁т ова",
+ "▁то ва",
+ "▁ това",
+ ": `",
+ "ad oop",
+ "ado op",
+ "▁Mad ame",
+ "▁gru ppo",
+ "▁grup po",
+ "st ud",
+ "▁extern as",
+ "▁Александ р",
+ "▁d ign",
+ "▁di gn",
+ "▁dig n",
+ "▁жи ве",
+ "Am ount",
+ "A mount",
+ "▁correl ate",
+ "▁corre late",
+ "▁F ant",
+ "▁Fa nt",
+ "▁r ails",
+ "▁ra ils",
+ "▁rail s",
+ "▁ rails",
+ "f p",
+ "министра тив",
+ "▁b ought",
+ "▁fil ters",
+ "▁filter s",
+ "▁ filters",
+ "▁anc ora",
+ "▁part ner",
+ "▁qu and",
+ "▁quan d",
+ "sym bol",
+ "s ymbol",
+ "ul ating",
+ "ula ting",
+ "▁z d",
+ "▁ zd",
+ "aw n",
+ "a wn",
+ "▁G rant",
+ "▁Gr ant",
+ "▁Gra nt",
+ "▁Gran t",
+ "bec ause",
+ "b ecause",
+ "ra ble",
+ "rab le",
+ "r able",
+ "\\ }",
+ "íst icas",
+ "ística s",
+ "▁у че",
+ "▁péri ode",
+ "▁s ke",
+ "▁sk e",
+ "▁ ske",
+ "▁Any way",
+ "▁index es",
+ "▁inde xes",
+ "▁direct ions",
+ "▁dire ctions",
+ "▁direction s",
+ "▁R AM",
+ "▁RA M",
+ "▁ RAM",
+ "ch rome",
+ "chr ome",
+ "chrom e",
+ "▁a post",
+ "▁ap ost",
+ "▁apo st",
+ "▁war nings",
+ "▁warning s",
+ "▁warn ings",
+ "▁Air port",
+ "V I",
+ "ab ile",
+ "abil e",
+ "abi le",
+ "▁l ord",
+ "▁lo rd",
+ "pro vider",
+ "prov ider",
+ "▁J i",
+ "ost ream",
+ "o stream",
+ "▁geme ente",
+ "table View",
+ "Ex tra",
+ "Ext ra",
+ "c ursor",
+ "eg round",
+ "egr ound",
+ "e ground",
+ "▁M oz",
+ "▁Mo z",
+ "▁r ib",
+ "▁ri b",
+ "▁ rib",
+ "▁m orph",
+ "▁mor ph",
+ "lo ads",
+ "load s",
+ "el sk",
+ "els k",
+ "▁M AX",
+ "▁MA X",
+ "▁ MAX",
+ "▁Santi ago",
+ "▁H im",
+ "▁Hi m",
+ "code s",
+ "co des",
+ "cod es",
+ "c odes",
+ "▁l anz",
+ "▁lan z",
+ "▁count s",
+ "▁coun ts",
+ "rinn ingsområ",
+ "щ ё",
+ "▁sp é",
+ "▁pier ws",
+ "▁pierw s",
+ "▁S ver",
+ "▁Sv er",
+ "▁a cknow",
+ "▁ac know",
+ "Bo olean",
+ "▁фами ли",
+ "▁Sen ate",
+ "шо в",
+ "ш ов",
+ "ag ers",
+ "age rs",
+ "ager s",
+ "a gers",
+ "▁Nue va",
+ "bi l",
+ "b il",
+ "ki em",
+ "kie m",
+ "k iem",
+ "▁M ey",
+ "▁Me y",
+ "wi j",
+ "w ij",
+ "▁G mbH",
+ "valid ation",
+ "▁en suite",
+ "in king",
+ "ink ing",
+ "▁c ampion",
+ "▁camp ion",
+ "▁finan cial",
+ "▁financi al",
+ "iz on",
+ "izo n",
+ "i zon",
+ "He aders",
+ "Head ers",
+ "Header s",
+ "▁deprec ated",
+ "▁fon ction",
+ "RE G",
+ "R EG",
+ "▁vol umes",
+ "▁volume s",
+ "▁C hi",
+ "▁Ch i",
+ "▁encounter ed",
+ "la k",
+ "l ak",
+ "ра я",
+ "▁contin ues",
+ "▁continu es",
+ "▁continue s",
+ "▁~ [",
+ "uer te",
+ "u erte",
+ "▁\\ ;",
+ "▁ \\;",
+ "▁D ok",
+ "▁Do k",
+ "▁we ights",
+ "▁weight s",
+ "▁r h",
+ "▁ rh",
+ "▁Na pole",
+ "▁Nap ole",
+ "▁natur ally",
+ "▁natural ly",
+ "sk u",
+ "s ku",
+ "pa s",
+ "p as",
+ "▁g egründ",
+ "et r",
+ "e tr",
+ "▁K u",
+ "ic ted",
+ "ict ed",
+ "i cted",
+ "▁fab ric",
+ "▁A SC",
+ "▁AS C",
+ "▁ ASC",
+ "▁Entertain ment",
+ "▁en erg",
+ "▁ener g",
+ "кла д",
+ "к лад",
+ "om on",
+ "omo n",
+ "o mon",
+ "th eme",
+ "the me",
+ "▁ха рак",
+ "▁d raft",
+ "▁dr aft",
+ "▁dra ft",
+ "▁ch annels",
+ "▁channel s",
+ "▁de sert",
+ "▁des ert",
+ "▁deser t",
+ "▁tra vés",
+ "▁trav és",
+ "▁L ock",
+ "▁Lo ck",
+ "▁Loc k",
+ "▁ Lock",
+ "▁s iendo",
+ "▁si endo",
+ "фе к",
+ "ф ек",
+ "m ême",
+ "▁pa cket",
+ "▁pack et",
+ "▁pac ket",
+ "▁Mount ain",
+ "▁F ahr",
+ "▁Fa hr",
+ "bra io",
+ "пе ре",
+ "пер е",
+ "п ере",
+ "▁gen annt",
+ "▁dep loyment",
+ "▁deploy ment",
+ "Pa l",
+ "P al",
+ "но г",
+ "ст ру",
+ "стр у",
+ "Pr im",
+ "P rim",
+ "f ür",
+ "▁danger ous",
+ "▁sz ám",
+ "re ck",
+ "rec k",
+ "▁pop up",
+ "ic ky",
+ "ick y",
+ "in ar",
+ "ina r",
+ "i nar",
+ "co wo",
+ "cow o",
+ "c owo",
+ "нци кло",
+ "ít ás",
+ "▁pl ugins",
+ "▁plugin s",
+ "▁plug ins",
+ "▁ plugins",
+ "▁dr iven",
+ "▁drive n",
+ "▁dri ven",
+ "▁driv en",
+ "ле в",
+ "л ев",
+ "▁\" (",
+ "tt a",
+ "t ta",
+ "▁ Ú",
+ "▁e b",
+ "▁ eb",
+ "▁' ';",
+ "▁'' ;",
+ "▁kn ock",
+ "▁ос нова",
+ "▁основ а",
+ "▁m aison",
+ "▁ma ison",
+ "▁mais on",
+ "▁mai son",
+ "г ля",
+ "▁Hon or",
+ "▁Ho nor",
+ "ta il",
+ "t ail",
+ "ri tz",
+ "rit z",
+ "r itz",
+ "▁gu ys",
+ "▁combin ations",
+ "▁combination s",
+ "ond ere",
+ "onder e",
+ "onde re",
+ "▁A ld",
+ "▁Al d",
+ "▁f iddle",
+ "▁ fiddle",
+ "да в",
+ "ur d",
+ "u rd",
+ "▁pro jection",
+ "▁project ion",
+ "▁Tamb ién",
+ "ve rb",
+ "ver b",
+ "v erb",
+ "▁ter re",
+ "▁ terre",
+ "ru gu",
+ "rug u",
+ "▁se ptember",
+ "▁sept ember",
+ "▁< !",
+ "co st",
+ "cos t",
+ "c ost",
+ "▁n ut",
+ "▁nu t",
+ "▁ nut",
+ "{ %",
+ "▁ub ic",
+ "am arin",
+ "ama rin",
+ "amar in",
+ "ти и",
+ "▁pat ron",
+ "▁patr on",
+ "▁am ely",
+ "▁e sto",
+ "▁est o",
+ "▁es to",
+ "▁ esto",
+ "▁li stop",
+ "▁list op",
+ "fa l",
+ "f al",
+ "▁P rop",
+ "▁Pro p",
+ "▁Pr op",
+ "▁ Prop",
+ "▁O nt",
+ "▁On t",
+ "▁M ade",
+ "▁Ma de",
+ "▁Mad e",
+ "TE ST",
+ "▁N em",
+ "▁Ne m",
+ "▁N ations",
+ "▁Nat ions",
+ "▁Nation s",
+ "▁в у",
+ "▁ ву",
+ "in cluding",
+ "includ ing",
+ "▁spect rum",
+ "▁L an",
+ "▁La n",
+ "▁E ver",
+ "▁Ev er",
+ "Pa ul",
+ "t m",
+ "App end",
+ "Ap pend",
+ "Rel ative",
+ "dis abled",
+ "disable d",
+ "return s",
+ "▁flow ers",
+ "▁flo wers",
+ "▁flower s",
+ "ik u",
+ "i ku",
+ "▁| \\",
+ "▁ |\\",
+ "▁Jord an",
+ "▁Sm all",
+ "▁c ic",
+ "▁ci c",
+ "▁sex ual",
+ "au tre",
+ "aut re",
+ "ва л",
+ "в ал",
+ "▁r ip",
+ "▁ri p",
+ "▁ rip",
+ "ou st",
+ "ous t",
+ "o ust",
+ "▁Philadel phia",
+ "▁u k",
+ "▁ uk",
+ "▁M ongo",
+ "▁Mon go",
+ "▁Mong o",
+ "xml ns",
+ "▁sh op",
+ "▁sho p",
+ "▁ shop",
+ "▁debug ger",
+ "▁z aj",
+ "▁za j",
+ "▁B illy",
+ "▁Bill y",
+ "▁Bil ly",
+ "▁n iem",
+ "▁nie m",
+ "▁ni em",
+ "ol is",
+ "oli s",
+ "o lis",
+ "▁ро ссий",
+ "ag ner",
+ "agn er",
+ "agne r",
+ "▁m aven",
+ "▁ma ven",
+ "▁ maven",
+ "▁Gu stav",
+ "▁Gust av",
+ "A us",
+ "comp are",
+ "▁j eu",
+ "▁je u",
+ "ud er",
+ "ude r",
+ "u der",
+ "ish ment",
+ "▁ди визи",
+ "▁Fin land",
+ "ну т",
+ "н ут",
+ "z és",
+ "▁Liga ções",
+ "▁Lig ações",
+ "▁qu ello",
+ "▁quel lo",
+ "an notation",
+ "annot ation",
+ "▁th rew",
+ "▁thr ew",
+ "▁thre w",
+ "▁Pro of",
+ "▁ Proof",
+ "▁A rea",
+ "▁Ar ea",
+ "▁Are a",
+ "▁ Area",
+ "as hi",
+ "ash i",
+ "▁F O",
+ "▁ FO",
+ "ja min",
+ "j amin",
+ "ден т",
+ "д ент",
+ "▁un us",
+ "fri end",
+ ".\" );",
+ ".\") ;",
+ ". \");",
+ "▁tra kten",
+ "document class",
+ "an ka",
+ "ank a",
+ "▁ar rive",
+ "▁arr ive",
+ "▁arriv e",
+ "▁d onne",
+ "▁don ne",
+ "▁donn e",
+ "ol y",
+ "o ly",
+ "▁R ein",
+ "▁Re in",
+ "▁face book",
+ "▁fac ebook",
+ "▁ facebook",
+ "ic ina",
+ "ici na",
+ "sl ice",
+ "s lice",
+ "▁n agy",
+ "▁na gy",
+ "▁nag y",
+ "▁he bben",
+ "▁I C",
+ "▁ IC",
+ "▁B ag",
+ "▁Ba g",
+ "▁ Bag",
+ "▁circ ul",
+ "▁cir cul",
+ "ác t",
+ "á ct",
+ "mit t",
+ "mi tt",
+ "m itt",
+ "▁g rey",
+ "▁gr ey",
+ "▁gre y",
+ "▁c av",
+ "▁ca v",
+ "▁осо би",
+ "▁sym metric",
+ "▁symmet ric",
+ "▁S ic",
+ "▁Si c",
+ "▁med ium",
+ "▁medi um",
+ "▁ medium",
+ "▁U TF",
+ "▁ UTF",
+ "▁D opo",
+ "▁Do po",
+ "í ch",
+ "bar e",
+ "ba re",
+ "b are",
+ "dz ie",
+ "d zie",
+ "▁he aven",
+ "▁heav en",
+ "▁cam pe",
+ "▁camp e",
+ "ester day",
+ "esterd ay",
+ "▁W issenschaft",
+ "по ль",
+ "пол ь",
+ "di d",
+ "d id",
+ "al er",
+ "ale r",
+ "a ler",
+ "▁citiz ens",
+ "▁Marg aret",
+ "▁s ought",
+ "ch arts",
+ "char ts",
+ "chart s",
+ "CL C",
+ "C LC",
+ "ol ly",
+ "oll y",
+ "ys z",
+ "y sz",
+ "wa ld",
+ "wal d",
+ "w ald",
+ "▁f en",
+ "▁fe n",
+ "▁ fen",
+ "▁S ix",
+ "▁Si x",
+ "▁U rs",
+ "▁Ur s",
+ "▁ор ган",
+ "▁T rad",
+ "▁Tr ad",
+ "▁Tra d",
+ "cu e",
+ "c ue",
+ "sch utz",
+ "▁prec ise",
+ "▁precis e",
+ "▁W indow",
+ "▁Wind ow",
+ "▁ Window",
+ "ти е",
+ "ло ві",
+ "лов і",
+ "it ori",
+ "ito ri",
+ "itor i",
+ "dis ambiguation",
+ "▁х и",
+ "▁ хи",
+ "▁N atural",
+ "▁Natur al",
+ "▁Nat ural",
+ "da n",
+ "d an",
+ "▁con crete",
+ "ци ја",
+ "▁s pel",
+ "▁sp el",
+ "▁spe l",
+ "▁Fa iled",
+ "▁Fail ed",
+ "▁ Failed",
+ "ści e",
+ "śc ie",
+ "ś cie",
+ "▁b uf",
+ "▁bu f",
+ "▁ buf",
+ "uc a",
+ "u ca",
+ "ic ional",
+ "ici onal",
+ "icio nal",
+ "icion al",
+ "▁ott obre",
+ "▁otto bre",
+ "▁ф і",
+ "▁ фі",
+ "▁submit ted",
+ "▁subm itted",
+ "la ve",
+ "lav e",
+ "l ave",
+ "▁P lot",
+ "▁Pl ot",
+ "▁ Plot",
+ "▁col leg",
+ "▁coll eg",
+ "▁colle g",
+ "ad em",
+ "ade m",
+ "a dem",
+ "▁ch aque",
+ "▁cha que",
+ "▁neighbor hood",
+ "▁calci atore",
+ "Lo op",
+ "L oop",
+ "▁G ast",
+ "▁Ga st",
+ "▁Gas t",
+ "▁ко гда",
+ "▁indust rial",
+ "▁industri al",
+ "▁f atal",
+ "▁fa tal",
+ "▁fat al",
+ "▁C ert",
+ "▁Ce rt",
+ "▁Cer t",
+ "▁ Cert",
+ "la tion",
+ "lat ion",
+ "l ation",
+ "▁О дна",
+ "▁Од на",
+ "▁jam ais",
+ "▁acc um",
+ "Id entity",
+ "Ident ity",
+ "▁Me dal",
+ "▁Med al",
+ "Met adata",
+ "Meta data",
+ "▁лю дя",
+ "br idge",
+ "brid ge",
+ "b ridge",
+ "Go od",
+ "G ood",
+ "▁что бы",
+ "▁comp oser",
+ "▁compos er",
+ "▁compose r",
+ "▁b read",
+ "▁br ead",
+ "▁bre ad",
+ "▁clos ure",
+ "▁ closure",
+ "▁large ly",
+ "▁larg ely",
+ "F B",
+ "▁обла сть",
+ "▁autom atic",
+ "▁automat ic",
+ "ar ía",
+ "a ría",
+ "▁sufficient ly",
+ "▁ital iana",
+ "▁ка че",
+ "▁J ó",
+ "hi story",
+ "histor y",
+ "h istory",
+ "▁H D",
+ "▁ HD",
+ "▁sigu iente",
+ "ne ll",
+ "nel l",
+ "n ell",
+ "▁G ree",
+ "▁Gr ee",
+ "▁Gre e",
+ "▁T i",
+ "▁trans ferred",
+ "▁transfer red",
+ "équ ipe",
+ "é quipe",
+ "▁Phili ppe",
+ "▁Philipp e",
+ "▁Philip pe",
+ "▁encou rag",
+ "▁V ietnam",
+ "▁graph s",
+ "▁symmet ry",
+ "fr ed",
+ "fre d",
+ "f red",
+ "we ek",
+ "▁bron ze",
+ "ry s",
+ "r ys",
+ "▁name ly",
+ "▁nam ely",
+ "on ders",
+ "ond ers",
+ "onder s",
+ "onde rs",
+ "lem agne",
+ "X Y",
+ "Con vert",
+ "}] (",
+ "} ](",
+ "Reg ion",
+ "pe cies",
+ "pec ies",
+ "▁te xture",
+ "▁text ure",
+ "▁c hr",
+ "▁ch r",
+ "▁ chr",
+ "не го",
+ "н его",
+ "▁some body",
+ "a qu",
+ "er as",
+ "era s",
+ "e ras",
+ "▁Н ово",
+ "▁Но во",
+ "▁Нов о",
+ "▁d ez",
+ "▁de z",
+ "an iu",
+ "ani u",
+ "a niu",
+ "ok rat",
+ "▁co vers",
+ "▁cover s",
+ "▁cov ers",
+ "▁sign als",
+ "▁signal s",
+ "ђ е",
+ "▁H eb",
+ "▁He b",
+ "▁An ti",
+ "▁Ant i",
+ "IV E",
+ "I VE",
+ "▁re ss",
+ "▁r ess",
+ "▁res s",
+ "▁ ress",
+ "LE TE",
+ "yn a",
+ "y na",
+ "п ла",
+ "жде ния",
+ "ж дения",
+ "▁ch amp",
+ "▁cha mp",
+ "▁cham p",
+ "▁vill ages",
+ "▁village s",
+ "▁villa ges",
+ "Z one",
+ "▁i Phone",
+ "▁sou vent",
+ "сь кі",
+ "ськ і",
+ "▁feb braio",
+ "ér cito",
+ "▁X I",
+ "ok at",
+ "oka t",
+ "▁mem bres",
+ "▁memb res",
+ "▁membre s",
+ "ju nit",
+ "j unit",
+ "▁D raw",
+ "▁Dr aw",
+ "▁Dra w",
+ "▁ Draw",
+ "▁п рово",
+ "▁про во",
+ "▁пров о",
+ "▁пр ово",
+ "aud io",
+ "audi o",
+ "a udio",
+ "en dl",
+ "end l",
+ "▁N ad",
+ "▁Na d",
+ "▁magn itude",
+ "Su r",
+ "S ur",
+ "ic ing",
+ "ici ng",
+ "i cing",
+ "▁un w",
+ "▁о три",
+ "▁от ри",
+ "▁B ey",
+ "▁Be y",
+ "▁V ik",
+ "▁Vi k",
+ "▁polít ica",
+ "port er",
+ "por ter",
+ "porte r",
+ "p orter",
+ "▁Bar bara",
+ "▁Barb ara",
+ "ál t",
+ "á lt",
+ "bi b",
+ "b ib",
+ "▁accom pan",
+ "▁accomp an",
+ "V P",
+ "▁en coded",
+ "▁enc oded",
+ "▁encode d",
+ "▁ encoded",
+ "▁S ometimes",
+ "▁Some times",
+ "bi rd",
+ "bir d",
+ "b ird",
+ "▁U lt",
+ "▁Ul t",
+ "▁t un",
+ "▁tu n",
+ "get Text",
+ "▁ar rival",
+ "▁arr ival",
+ "▁arriv al",
+ "script style",
+ "{ `",
+ "▁pers pective",
+ "LI NE",
+ "LIN E",
+ "L INE",
+ "Form atter",
+ "Format ter",
+ "▁b om",
+ "▁bo m",
+ "в ра",
+ "DE BUG",
+ "Bound s",
+ "B ounds",
+ "▁T itle",
+ "▁Tit le",
+ "▁ Title",
+ "l ó",
+ "Da n",
+ "D an",
+ "▁g ene",
+ "▁ge ne",
+ "▁gen e",
+ "▁B it",
+ "▁Bi t",
+ "▁ Bit",
+ "▁reprodu ce",
+ "▁graph ics",
+ "▁ graphics",
+ "▁с ем",
+ "▁се м",
+ "р ё",
+ "▁ре ки",
+ "us alem",
+ "usa lem",
+ "ро ж",
+ "▁D ES",
+ "▁DE S",
+ "▁So ftware",
+ "ur ance",
+ "u rance",
+ "ithmet ic",
+ "en ess",
+ "ene ss",
+ "enes s",
+ "e ness",
+ "ic hi",
+ "ich i",
+ "i chi",
+ "Con verter",
+ "Convert er",
+ "▁g ithub",
+ "▁ github",
+ "erd ings",
+ "gl ise",
+ "ác h",
+ "á ch",
+ "▁bu ried",
+ "▁bur ied",
+ "▁v ision",
+ "▁vis ion",
+ "▁ vision",
+ "M iss",
+ "▁s ees",
+ "▁se es",
+ "▁see s",
+ "▁person nes",
+ "▁pers onnes",
+ "▁personn es",
+ "▁personne s",
+ "▁In tel",
+ "▁Int el",
+ "el ia",
+ "eli a",
+ "e lia",
+ "▁č lán",
+ "▁c hi",
+ "▁ch i",
+ "▁ chi",
+ "▁k las",
+ "▁kl as",
+ "au té",
+ "aut é",
+ "▁st ark",
+ "▁star k",
+ "cz e",
+ "c ze",
+ "▁dr ivers",
+ "▁driver s",
+ "▁drive rs",
+ "▁dri vers",
+ "▁driv ers",
+ "v n",
+ "! ,",
+ "▁го ды",
+ "▁год ы",
+ "H i",
+ "▁expla ins",
+ "▁expl ains",
+ "▁explain s",
+ "art icles",
+ "article s",
+ "▁z ug",
+ "▁zu g",
+ "▁ zug",
+ "Pro m",
+ "Pr om",
+ "P rom",
+ "> =",
+ "▁Be at",
+ "▁S ax",
+ "▁Sa x",
+ "vert ical",
+ "кт о",
+ "к то",
+ "▁pl ants",
+ "▁plan ts",
+ "▁plant s",
+ "▁Ré férences",
+ "▁Référence s",
+ "▁og ni",
+ "▁c urs",
+ "▁cu rs",
+ "▁cur s",
+ "▁S K",
+ "▁ SK",
+ "он и",
+ "о ни",
+ "▁des tac",
+ "▁dest ac",
+ "\") ;\r",
+ "\"); \r",
+ "\" );\r",
+ "▁S ure",
+ "▁Su re",
+ "▁Sur e",
+ "▁part ido",
+ "▁parti do",
+ "▁Fol ge",
+ "▁Mo ore",
+ "▁w z",
+ "ск ус",
+ "ску с",
+ "lt re",
+ "l tre",
+ "on do",
+ "ond o",
+ "▁p ose",
+ "▁po se",
+ "▁pos e",
+ "▁ pose",
+ "im os",
+ "imo s",
+ "i mos",
+ "бо й",
+ "ци па",
+ "ju s",
+ "j us",
+ ".. ...",
+ "... ..",
+ ".... .",
+ ". ....",
+ "▁ép oca",
+ "▁qu anto",
+ "▁quant o",
+ "▁quan to",
+ "▁Su pport",
+ "▁Supp ort",
+ "▁Sup port",
+ "▁ Support",
+ "gesch ichte",
+ "SER VER",
+ "▁George s",
+ "▁Georg es",
+ "en um",
+ "enu m",
+ "e num",
+ "▁h erm",
+ "▁he rm",
+ "▁her m",
+ "▁ne bo",
+ "▁C hr",
+ "▁Ch r",
+ "▁ Chr",
+ "char acter",
+ "▁* **",
+ "▁** *",
+ "▁ ***",
+ "▁For sch",
+ "ia mi",
+ "iam i",
+ "i ami",
+ "▁ ¿",
+ "cy ch",
+ "cyc h",
+ "c ych",
+ "▁fif th",
+ "se nt",
+ "sen t",
+ "s ent",
+ "▁and erem",
+ "▁andere m",
+ "▁proport ion",
+ "▁propor tion",
+ "▁p rest",
+ "▁pr est",
+ "▁pre st",
+ "▁pres t",
+ "▁G irl",
+ "▁Gi rl",
+ "▁Gir l",
+ "▁d rama",
+ "▁dr ama",
+ "▁dra ma",
+ "▁dram a",
+ "wa nd",
+ "wan d",
+ "w and",
+ "▁M ail",
+ "▁Ma il",
+ "▁Mai l",
+ "▁ Mail",
+ "▁L ux",
+ "▁Lu x",
+ "▁kter ý",
+ "▁Ges ellschaft",
+ "▁Hin weis",
+ "nis se",
+ "n isse",
+ "▁m ondo",
+ "▁mon do",
+ "▁mond o",
+ "E q",
+ "▁per í",
+ "▁pe rí",
+ "▁e astern",
+ "▁eas tern",
+ "▁east ern",
+ "▁UE FA",
+ "ual e",
+ "ua le",
+ "u ale",
+ "▁con vex",
+ "▁conv ex",
+ "▁по ль",
+ "▁пол ь",
+ "▁ поль",
+ "▁H ey",
+ "▁He y",
+ "ze nie",
+ "zen ie",
+ "z enie",
+ "init ely",
+ "▁Z usammen",
+ "SS L",
+ "S SL",
+ "oc al",
+ "oca l",
+ "o cal",
+ "▁c anal",
+ "▁can al",
+ "▁ca nal",
+ "vo y",
+ "v oy",
+ "▁К ри",
+ "▁köz ött",
+ "▁c ars",
+ "▁car s",
+ "▁ca rs",
+ "▁vers ión",
+ "En vironment",
+ "He r",
+ "H er",
+ "▁se ñ",
+ "▁sp atial",
+ "ym i",
+ "y mi",
+ "Fi re",
+ "F ire",
+ "▁ve get",
+ "▁veg et",
+ "▁W ie",
+ "▁Wi e",
+ "▁zn aj",
+ "▁zna j",
+ "▁dam age",
+ "▁en dl",
+ "▁end l",
+ "▁ endl",
+ "gi f",
+ "g if",
+ "▁qu ali",
+ "▁qual i",
+ "▁которы х",
+ "el lan",
+ "ell an",
+ "ella n",
+ "▁m ens",
+ "▁me ns",
+ "▁men s",
+ "▁pl ug",
+ "▁a bund",
+ "▁ab und",
+ "FI G",
+ "F IG",
+ "▁s f",
+ "▁ sf",
+ "▁con fl",
+ "▁conf l",
+ "▁насе ления",
+ "▁princi ples",
+ "▁princip les",
+ "▁principle s",
+ "▁Gab riel",
+ "ib e",
+ "i be",
+ "▁{ %",
+ "▁ {%",
+ "▁pobla ció",
+ "ні ципа",
+ "▁ext reme",
+ "▁extrem e",
+ "▁extr eme",
+ "▁as se",
+ "▁ass e",
+ "▁ asse",
+ "▁v u",
+ "▁ vu",
+ "Mo ck",
+ "M ock",
+ "▁spiel te",
+ "▁A er",
+ "▁d atos",
+ "▁dat os",
+ "en des",
+ "end es",
+ "ende s",
+ "▁G el",
+ "▁Ge l",
+ "▁G or",
+ "▁Go r",
+ "Ch rist",
+ "Chr ist",
+ "ch os",
+ "cho s",
+ "c hos",
+ "Process or",
+ "Proc essor",
+ "▁in struct",
+ "▁inst ruct",
+ "▁instru ct",
+ "▁p icked",
+ "▁pick ed",
+ "▁pic ked",
+ "nah me",
+ "nahm e",
+ "fa hr",
+ "fah r",
+ "f ahr",
+ "▁indic ated",
+ "▁indicate d",
+ "▁% .",
+ "▁ %.",
+ "▁t s",
+ "▁ ts",
+ "▁not able",
+ "▁no table",
+ "▁qual ified",
+ "▁А л",
+ "Bl ack",
+ "B lack",
+ "▁coun cil",
+ "▁over head",
+ "ac i",
+ "a ci",
+ "an née",
+ "ann ée",
+ "▁init With",
+ "bi ó",
+ "b ió",
+ "▁int roduction",
+ "▁introdu ction",
+ "▁compan ion",
+ "▁ex pon",
+ "▁exp on",
+ "▁k ör",
+ "▁kö r",
+ "ob y",
+ "o by",
+ "bu rn",
+ "bur n",
+ "b urn",
+ "gn u",
+ "g nu",
+ "virt ual",
+ "v irtual",
+ "▁intel lect",
+ "▁д ержа",
+ "▁ держа",
+ "' +",
+ "б ле",
+ "▁strict ly",
+ "▁recogn ize",
+ "ho ur",
+ "hou r",
+ "h our",
+ "▁W rest",
+ "en nen",
+ "enn en",
+ "enne n",
+ "$) .",
+ "$ ).",
+ "ff f",
+ "f ff",
+ "▁Cent ro",
+ "▁P itt",
+ "▁Pi tt",
+ "▁Pit t",
+ "▁d ział",
+ "▁dz iał",
+ "▁ dział",
+ "▁c ela",
+ "▁ce la",
+ "▁cel a",
+ "▁frances e",
+ "▁franc ese",
+ "ра ми",
+ "spe cial",
+ "spec ial",
+ "▁D up",
+ "▁Du p",
+ "to ire",
+ "t oire",
+ "ка ль",
+ "кал ь",
+ "к аль",
+ "CO UNT",
+ "▁Br ook",
+ "▁Bro ok",
+ "▁ру ково",
+ "pub lique",
+ "▁se conda",
+ "▁second a",
+ "▁sec onda",
+ "▁com pt",
+ "▁comp t",
+ "▁b land",
+ "▁bl and",
+ "▁bla nd",
+ "▁blan d",
+ "Be fore",
+ "▁P ack",
+ "▁Pa ck",
+ "▁Pac k",
+ "▁ Pack",
+ "al ty",
+ "alt y",
+ "öd er",
+ "ö der",
+ "▁interval s",
+ "▁Daten bank",
+ "Mo vie",
+ "M ovie",
+ "▁trans m",
+ "▁tran sm",
+ "▁t ap",
+ "▁ta p",
+ "▁по ч",
+ "fo n",
+ "f on",
+ "ia i",
+ "i ai",
+ "▁f ib",
+ "▁fi b",
+ "▁w yd",
+ "▁wy d",
+ "▁h ung",
+ "▁hun g",
+ "▁hu ng",
+ "▁ hung",
+ "▁a live",
+ "▁al ive",
+ "▁ali ve",
+ "Cl ear",
+ "C lear",
+ "▁p ushed",
+ "▁push ed",
+ "▁tu ple",
+ "▁ tuple",
+ "ach en",
+ "ac hen",
+ "ache n",
+ "a chen",
+ "го во",
+ "гов о",
+ "г ово",
+ "▁re vers",
+ "▁rev ers",
+ "▁reve rs",
+ "▁rever s",
+ "▁au gment",
+ "▁aug ment",
+ "▁ch allenge",
+ "▁challeng e",
+ "lo st",
+ "los t",
+ "l ost",
+ "▁deux ième",
+ "struct or",
+ "stru ctor",
+ "▁mehr erer",
+ "▁mehrere r",
+ "at ural",
+ "atur al",
+ "atura l",
+ "atu ral",
+ "Sp lit",
+ "S plit",
+ "ст ем",
+ "сте м",
+ "с тем",
+ "ш ла",
+ ")\\ \\",
+ ") \\\\",
+ "▁D og",
+ "▁Do g",
+ "▁develop ers",
+ "▁developer s",
+ "▁ developers",
+ "▁n od",
+ "▁no d",
+ "▁сто ро",
+ "▁Na N",
+ "▁ NaN",
+ "▁pr iest",
+ "▁pri est",
+ "▁ex ha",
+ "UN D",
+ "U ND",
+ "pa ir",
+ "p air",
+ "al one",
+ "alo ne",
+ "▁m oon",
+ "▁mo on",
+ "▁# !/",
+ "▁g uns",
+ "▁gu ns",
+ "▁gun s",
+ "ro la",
+ "rol a",
+ "r ola",
+ "чи та",
+ "▁Encyc lopedia",
+ "▁Encyclop edia",
+ "at is",
+ "ati s",
+ "a tis",
+ "▁' \"",
+ "▁ '\"",
+ "zy ch",
+ "z ych",
+ "▁super fic",
+ "▁э к",
+ "еде ра",
+ "fe ed",
+ "f eed",
+ "LA Y",
+ "F i",
+ "un ks",
+ "unk s",
+ "ise cond",
+ "i second",
+ "▁' @",
+ "▁Ad ding",
+ "▁Add ing",
+ "ро е",
+ "▁t ang",
+ "▁tan g",
+ "▁ta ng",
+ "ц о",
+ "hu ng",
+ "h ung",
+ "bi s",
+ "b is",
+ "sk ého",
+ "ské ho",
+ "▁ad vert",
+ "▁adv ert",
+ "▁за нима",
+ "uz z",
+ "u zz",
+ "ág ina",
+ "▁T el",
+ "▁Te l",
+ "si g",
+ "s ig",
+ "▁E z",
+ "▁guarante e",
+ "▁te aching",
+ "▁teach ing",
+ "ot y",
+ "o ty",
+ "ter min",
+ "term in",
+ "▁distribution s",
+ "▁distrib utions",
+ "FL A",
+ "F LA",
+ "▁Gi useppe",
+ "query Selector",
+ "▁/ \\",
+ "▁ /\\",
+ "▁S quad",
+ "g z",
+ "de lay",
+ "del ay",
+ "▁surr ounding",
+ "▁m anus",
+ "▁man us",
+ "▁H ou",
+ "▁Ho u",
+ "² ,",
+ "▁cult iv",
+ "▁trouble s",
+ "▁trou bles",
+ "▁r aison",
+ "▁ra ison",
+ "exp and",
+ "▁c ov",
+ "▁co v",
+ "▁ cov",
+ "nung en",
+ "n ungen",
+ ")) {",
+ ") ){",
+ "▁g een",
+ "▁ge en",
+ "▁au ßer",
+ "▁Л і",
+ "ř i",
+ "▁situ ations",
+ "▁situation s",
+ "▁tele p",
+ "▁tel ep",
+ "▁J ed",
+ "▁Je d",
+ "▁trav ail",
+ "▁trava il",
+ "li as",
+ "lia s",
+ "l ias",
+ "bul let",
+ "▁select ing",
+ "av ier",
+ "avi er",
+ "a vier",
+ "▁ess ential",
+ "( /",
+ "yy yy",
+ "št ě",
+ "ul ty",
+ "ult y",
+ "▁k ra",
+ "▁kr a",
+ "▁t abs",
+ "▁tab s",
+ "▁ta bs",
+ "▁ tabs",
+ "▁experience d",
+ "▁experien ced",
+ "az i",
+ "a zi",
+ "▁D irectory",
+ "▁Direct ory",
+ "▁Director y",
+ "▁ Directory",
+ "▁c ron",
+ "▁cr on",
+ "▁cro n",
+ "▁s pend",
+ "▁sp end",
+ "▁spe nd",
+ "▁R A",
+ "▁ RA",
+ "▁s elenium",
+ "▁sel enium",
+ "▁ selenium",
+ "▁T hé",
+ "▁Th é",
+ "Element s",
+ "El ements",
+ "ci i",
+ "c ii",
+ "▁p lat",
+ "▁pl at",
+ "▁pla t",
+ "▁arch ive",
+ "▁archiv e",
+ "▁ archive",
+ "▁ass istance",
+ "▁assist ance",
+ "▁ne ck",
+ "▁A venue",
+ "▁Aven ue",
+ "▁w heel",
+ "▁whe el",
+ "▁h ade",
+ "▁ha de",
+ "▁had e",
+ "Com mon",
+ "Comm on",
+ "▁D ialog",
+ "▁Di alog",
+ "▁Dia log",
+ "▁ Dialog",
+ "▁f org",
+ "▁for g",
+ "▁fo rg",
+ "▁sur ely",
+ "▁sure ly",
+ "▁h ockey",
+ "kt ó",
+ "k tó",
+ "▁t k",
+ "▁ tk",
+ "▁Br uce",
+ "▁Bru ce",
+ "▁e norm",
+ "▁en orm",
+ ", ’",
+ "▁Christ opher",
+ "▁Christoph er",
+ "je v",
+ "j ev",
+ "▁qu ad",
+ "▁ quad",
+ "▁A JAX",
+ "▁rel ief",
+ "▁reli ef",
+ "▁m odes",
+ "▁mod es",
+ "▁mo des",
+ "▁mode s",
+ "sk lär",
+ "s klär",
+ "▁V id",
+ "▁Vi d",
+ "▁Se rial",
+ "▁Ser ial",
+ "▁ Serial",
+ "▁to kens",
+ "▁token s",
+ "▁Pol and",
+ "▁Po land",
+ "\\ ]",
+ "▁v ide",
+ "▁vi de",
+ "▁vid e",
+ "ro oms",
+ "room s",
+ "om as",
+ "oma s",
+ "o mas",
+ "▁B ureau",
+ "▁Bur eau",
+ "c x",
+ "ность ю",
+ "ност ью",
+ "▁sign s",
+ "▁sig ns",
+ "ше ние",
+ "los sen",
+ "loss en",
+ "l ossen",
+ "▁Que ens",
+ "▁Queen s",
+ "▁m embre",
+ "▁mem bre",
+ "▁memb re",
+ "▁m ez",
+ "▁me z",
+ "▁ mez",
+ "▁B ool",
+ "▁Bo ol",
+ "▁ Bool",
+ "▁N aj",
+ "▁Na j",
+ "▁Mem ory",
+ "▁ Memory",
+ "▁K han",
+ "▁Kh an",
+ "▁l à",
+ "▁ là",
+ "▁H ud",
+ "▁Hu d",
+ "▁d ismiss",
+ "▁dis miss",
+ "ight h",
+ "igh th",
+ "▁f s",
+ "▁ fs",
+ "pr event",
+ "pre vent",
+ "prev ent",
+ "▁ме да",
+ "▁Pol ice",
+ "▁Po lice",
+ "▁с ко",
+ "▁ ско",
+ "fin ite",
+ "▁a mi",
+ "▁am i",
+ "▁ ami",
+ "▁M uch",
+ "▁Mu ch",
+ "ow ania",
+ "owa nia",
+ "owan ia",
+ "OR Y",
+ "O RY",
+ "io rs",
+ "ior s",
+ "i ors",
+ "▁Prem io",
+ "▁text box",
+ "d m",
+ "▁a fin",
+ "▁af in",
+ "▁Don ald",
+ "▁ Donald",
+ "▁P riv",
+ "▁Pr iv",
+ "▁Pri v",
+ "▁de cid",
+ "▁dec id",
+ "▁Maur ice",
+ "▁Mau rice",
+ "ag an",
+ "aga n",
+ "a gan",
+ "▁Britann ica",
+ "▁o ft",
+ "▁of t",
+ "▁consec utive",
+ "\"? >",
+ "\" ?>",
+ "ови й",
+ "st udent",
+ "stud ent",
+ "▁pe que",
+ "▁di eses",
+ "▁dies es",
+ "▁diese s",
+ "▁ret our",
+ "ét r",
+ "é tr",
+ "▁с ез",
+ "▁се з",
+ "▁k re",
+ "▁kr e",
+ "▁ kre",
+ "▁v otes",
+ "▁vo tes",
+ "▁vot es",
+ "▁vote s",
+ "ru ption",
+ "rupt ion",
+ "rup tion",
+ "iz ada",
+ "iza da",
+ "▁W iel",
+ "▁Wi el",
+ "▁Wie l",
+ "▁G ray",
+ "▁Gr ay",
+ "▁Gra y",
+ "▁Le op",
+ "▁Leo p",
+ "teil ung",
+ "tei lung",
+ "([ '",
+ "( ['",
+ "▁wh ites",
+ "▁white s",
+ "fr ica",
+ "fri ca",
+ "f rica",
+ "an imation",
+ "anim ation",
+ "cur l",
+ "cu rl",
+ "c url",
+ "ling s",
+ "lin gs",
+ "l ings",
+ "=\" $",
+ "lo yd",
+ "loy d",
+ "text sc",
+ "ор у",
+ "о ру",
+ "▁се ла",
+ "es ian",
+ "esi an",
+ "esia n",
+ "▁M ission",
+ "▁Miss ion",
+ "▁не за",
+ "▁ult imately",
+ "бо в",
+ "б ов",
+ "ol en",
+ "ole n",
+ "o len",
+ "ско му",
+ "ском у",
+ "ск ому",
+ "с кому",
+ "ne te",
+ "net e",
+ "n ete",
+ "▁D it",
+ "▁Di t",
+ "▁co stru",
+ "▁cost ru",
+ "dep endent",
+ "▁Re source",
+ "▁Res ource",
+ "▁ Resource",
+ "▁host s",
+ "▁hos ts",
+ "▁ hosts",
+ "▁re ar",
+ "▁r ear",
+ "D uration",
+ "ни ків",
+ "ник ів",
+ "М а",
+ "▁pl anning",
+ "▁plan ning",
+ "▁pre diction",
+ "▁pred iction",
+ "▁predict ion",
+ "▁L yn",
+ "▁Ly n",
+ "▁k ir",
+ "▁ki r",
+ "▁ kir",
+ "▁Leg isl",
+ "ма т",
+ "м ат",
+ "▁S occer",
+ "▁Soc cer",
+ "▁sur vey",
+ "▁surv ey",
+ "▁surve y",
+ "▁estadoun idense",
+ "or gen",
+ "org en",
+ "orge n",
+ "jo urd",
+ "jou rd",
+ "j ourd",
+ "▁ap rile",
+ "▁april e",
+ "▁apr ile",
+ "▁i ds",
+ "▁id s",
+ "▁ ids",
+ "сь ке",
+ "ськ е",
+ "▁emp loyee",
+ "▁employ ee",
+ "▁ employee",
+ "▁Schaus pieler",
+ "р ъ",
+ "▁mult imedia",
+ "▁multi media",
+ "▁сво ю",
+ "▁w ine",
+ "▁win e",
+ "▁E U",
+ "ic ă",
+ "▁R hein",
+ "▁Rh ein",
+ "▁Pal mar",
+ "ot eca",
+ "ote ca",
+ "▁prep are",
+ "▁prepar e",
+ "▁ prepare",
+ "▁T ot",
+ "▁To t",
+ "▁N ull",
+ "▁Nu ll",
+ "▁ Null",
+ "▁k in",
+ "▁ki n",
+ "▁ kin",
+ "in als",
+ "inal s",
+ "ina ls",
+ "▁New ton",
+ "▁t bl",
+ "▁ tbl",
+ "▁S old",
+ "▁So ld",
+ "▁Sol d",
+ "▁ver f",
+ "▁ve rf",
+ "at uring",
+ "atur ing",
+ "atu ring",
+ "▁la ptop",
+ "▁lap top",
+ "▁Со вет",
+ "▁Сов ет",
+ "▁Сове т",
+ "se cret",
+ "sec ret",
+ "▁Olymp ic",
+ "▁football er",
+ "▁Rud olf",
+ "▁con he",
+ "zy sk",
+ "▁evalu ated",
+ "▁evaluate d",
+ "» )",
+ "sh op",
+ "re pository",
+ "▁z ach",
+ "▁za ch",
+ "▁l osing",
+ "▁lo sing",
+ "▁los ing",
+ "et ter",
+ "ett er",
+ "ette r",
+ "▁W irtschaft",
+ "та к",
+ "▁unnecess ary",
+ "▁P hot",
+ "▁Ph ot",
+ "▁Pho t",
+ "an ska",
+ "ans ka",
+ "ansk a",
+ "▁N ative",
+ "▁Nat ive",
+ "▁ Native",
+ "CC E",
+ "C CE",
+ "▁fi fty",
+ "▁fif ty",
+ "▁e rw",
+ "▁er w",
+ "r h",
+ "is sent",
+ "iss ent",
+ "isse nt",
+ "issen t",
+ "}{ (",
+ "} {(",
+ "▁lan ç",
+ "▁X code",
+ "го род",
+ "гор од",
+ "ci r",
+ "c ir",
+ "▁pel ícula",
+ "▁O scar",
+ "▁Os car",
+ "▁sh ore",
+ "▁sho re",
+ "▁supp lied",
+ "ex amples",
+ "example s",
+ "Me ss",
+ "M ess",
+ "VI CE",
+ "V ICE",
+ "▁ex clude",
+ "▁h en",
+ "▁he n",
+ "▁ hen",
+ "▁гу бер",
+ "▁F ragment",
+ "▁Fra gment",
+ "▁ Fragment",
+ "▁B itte",
+ "▁Bi tte",
+ "▁Bit te",
+ "▁Bes ides",
+ "▁h es",
+ "▁he s",
+ "▁ hes",
+ "▁ih rem",
+ "▁ihr em",
+ "▁ihre m",
+ "▁Ser ge",
+ "▁art ific",
+ "=\" ${",
+ "=\"$ {",
+ "ло во",
+ "лов о",
+ "л ово",
+ "ut eur",
+ "ute ur",
+ "ta ire",
+ "t aire",
+ "па с",
+ "▁eas iest",
+ "▁fam iglia",
+ "N ormal",
+ "▁d alle",
+ "▁da lle",
+ "▁dal le",
+ "▁dall e",
+ "▁n ations",
+ "▁nation s",
+ "▁nat ions",
+ "r p",
+ "th ead",
+ "the ad",
+ "t head",
+ "▁обла сті",
+ "▁Democr atic",
+ "▁челов е",
+ "мо ж",
+ "▁г ер",
+ "▁ге р",
+ "▁ гер",
+ "▁small est",
+ "▁Publish ing",
+ "▁T s",
+ "▁laugh ed",
+ "ll e",
+ "l le",
+ "▁A mt",
+ "▁Am t",
+ "▁I IS",
+ "▁II S",
+ "FOR M",
+ "F ORM",
+ "Ma g",
+ "M ag",
+ "до н",
+ "д он",
+ "▁st oria",
+ "▁stor ia",
+ "▁sto ria",
+ "▁organ ized",
+ "▁organiz ed",
+ "č ní",
+ "▁o x",
+ "▁ ox",
+ "ling en",
+ "lin gen",
+ "l ingen",
+ "▁lu ego",
+ "cc ió",
+ "c ció",
+ "▁re ly",
+ "▁r ely",
+ "▁rel y",
+ "▁t ussen",
+ "er ten",
+ "ert en",
+ "erte n",
+ "▁hon our",
+ "▁Cla ude",
+ "▁Claud e",
+ "▁Ko rea",
+ "▁Kore a",
+ "▁Kor ea",
+ "▁Met ropol",
+ "▁Metro pol",
+ "Su per",
+ "S uper",
+ "ri en",
+ "rie n",
+ "r ien",
+ "ér ature",
+ "att ro",
+ "attr o",
+ "▁б іль",
+ "▁бі ль",
+ "▁ біль",
+ "▁Her bert",
+ "▁aut eurs",
+ "▁aute urs",
+ "▁dar auf",
+ "▁m ental",
+ "▁men tal",
+ "▁ment al",
+ "▁r ang",
+ "▁ra ng",
+ "▁ran g",
+ "▁s ón",
+ "▁só n",
+ "▁S oph",
+ "▁So ph",
+ ")\" ,",
+ ") \",",
+ "Des criptor",
+ "prep are",
+ "▁Land kreis",
+ "H C",
+ "cr oss",
+ "cro ss",
+ "c ross",
+ "ли за",
+ "▁Lo gin",
+ "▁Log in",
+ "▁ Login",
+ "on en",
+ "one n",
+ "o nen",
+ "Fe ature",
+ "▁m useum",
+ "▁muse um",
+ "▁ museum",
+ "ve k",
+ "v ek",
+ "▁Nel son",
+ "▁re jo",
+ "▁коман ди",
+ "▁sum mar",
+ "▁summ ar",
+ "▁сле ду",
+ "▁след у",
+ "äm p",
+ "ä mp",
+ "▁G as",
+ "▁Ga s",
+ "во м",
+ "в ом",
+ "VAL UE",
+ "in ge",
+ "ing e",
+ "per iod",
+ "lass en",
+ "las sen",
+ "lasse n",
+ "l assen",
+ "áv al",
+ "á val",
+ "▁alt ogether",
+ "um ph",
+ "ump h",
+ "ist ro",
+ "istr o",
+ "ą ż",
+ "▁Ke ep",
+ "▁Mar co",
+ "▁Marc o",
+ "▁ét ant",
+ "▁D re",
+ "▁Dr e",
+ "ge ometry",
+ "▁K as",
+ "▁Ka s",
+ "message s",
+ "mess ages",
+ "Co ok",
+ "C ook",
+ "▁S ide",
+ "▁Si de",
+ "▁Sid e",
+ "▁ Side",
+ "▁ко ми",
+ "▁ком и",
+ "ст ри",
+ "стр и",
+ "с три",
+ "▁ex cess",
+ "▁exc ess",
+ "▁Bi ografia",
+ "XX XX",
+ "XXX X",
+ "X XXX",
+ "▁N ie",
+ "▁Ni e",
+ "ven dor",
+ "v endor",
+ "xs d",
+ "x sd",
+ "Mil l",
+ "M ill",
+ "process ing",
+ "▁Miss ouri",
+ "▁perm ett",
+ "▁permet t",
+ "▁a par",
+ "▁ap ar",
+ "▁cro wd",
+ "▁crow d",
+ "fer t",
+ "fe rt",
+ "f ert",
+ "▁D ou",
+ "▁Do u",
+ "r í",
+ "▁C C",
+ "▁ CC",
+ "▁pay ment",
+ "▁ payment",
+ "▁Hol lywood",
+ "▁V irtual",
+ "▁ Virtual",
+ "▁sp oken",
+ "▁spoke n",
+ "▁spo ken",
+ "▁t ram",
+ "▁tr am",
+ "▁tra m",
+ "▁Comm unity",
+ "▁Commun ity",
+ "▁administr ative",
+ "▁в оло",
+ "▁во ло",
+ "gi or",
+ "gio r",
+ "g ior",
+ "vis or",
+ "▁Укра и",
+ "st age",
+ "sta ge",
+ "stag e",
+ "▁For mat",
+ "▁Form at",
+ "▁ Format",
+ "▁conven ient",
+ "Н а",
+ "▁med ian",
+ "▁media n",
+ "▁medi an",
+ "▁в ра",
+ "▁ вра",
+ "▁Пре ма",
+ "en ig",
+ "eni g",
+ "e nig",
+ "▁Op era",
+ "▁Oper a",
+ "ré s",
+ "r és",
+ "▁f mt",
+ "▁ fmt",
+ "▁effic iency",
+ "ma le",
+ "mal e",
+ "m ale",
+ "Ma ster",
+ "M aster",
+ "Ser ies",
+ "Se ries",
+ "S eries",
+ "▁s yd",
+ "▁sy d",
+ "gener ic",
+ "inter val",
+ "▁e fect",
+ "▁inwon ers",
+ "лим пи",
+ "ir ement",
+ "ire ment",
+ "Er r",
+ "E rr",
+ "ö h",
+ "▁l ying",
+ "▁ly ing",
+ "▁ lying",
+ "▁S ettings",
+ "▁Setting s",
+ "▁ Settings",
+ "! =",
+ "em atic",
+ "emat ic",
+ "arg v",
+ "▁Bas ic",
+ "▁ Basic",
+ "▁consider ation",
+ "▁h abe",
+ "▁ha be",
+ "▁hab e",
+ "- %",
+ "▁mount ains",
+ "▁mountain s",
+ "▁pe ak",
+ "▁f allen",
+ "▁fall en",
+ "▁fal len",
+ "ed ed",
+ "ede d",
+ "e ded",
+ "log ic",
+ "▁mat ched",
+ "▁match ed",
+ "▁typ ing",
+ "▁ty ping",
+ ")} ,",
+ ") },",
+ "▁f ancy",
+ "▁fan cy",
+ "▁eleg ant",
+ "ا ل",
+ "▁уча ст",
+ "▁Sa rah",
+ "▁Sar ah",
+ "▁V erd",
+ "▁Ver d",
+ "▁Ve rd",
+ "▁t ego",
+ "▁te go",
+ "ru les",
+ "rule s",
+ "r ules",
+ "▁mo unted",
+ "▁mount ed",
+ "▁і м",
+ "ер у",
+ "е ру",
+ "st off",
+ "sto ff",
+ "fa hren",
+ "fah ren",
+ "fahr en",
+ "f ahren",
+ "dist ance",
+ "d istance",
+ "▁Lic ense",
+ "▁LE FT",
+ "▁ LEFT",
+ "▁w p",
+ "▁ wp",
+ "/ {",
+ "▁am azon",
+ "▁amaz on",
+ "▁ amazon",
+ "> &",
+ "▁els ő",
+ "qu arters",
+ "▁sh ock",
+ "▁sho ck",
+ "ni ck",
+ "nic k",
+ "n ick",
+ "▁Arch ite",
+ "▁S quare",
+ "▁r ates",
+ "▁ra tes",
+ "▁rate s",
+ "▁rat es",
+ "io re",
+ "ior e",
+ "i ore",
+ "▁N at",
+ "▁Na t",
+ "▁Char lot",
+ "re ichen",
+ "reich en",
+ "rei chen",
+ "reiche n",
+ "▁var iation",
+ "▁vari ation",
+ "os is",
+ "osi s",
+ "li fe",
+ "l ife",
+ "sl ide",
+ "s lide",
+ "ab i",
+ "a bi",
+ "uk i",
+ "u ki",
+ "my sq",
+ "mys q",
+ "▁prim itive",
+ "▁primit ive",
+ "▁univers itaire",
+ "LE NG",
+ "ale ż",
+ "eb ook",
+ "e book",
+ "s yn",
+ "▁G egen",
+ "▁Ge gen",
+ "▁Geg en",
+ "▁K ü",
+ "▁а ле",
+ "▁ал е",
+ "▁L ub",
+ "▁Lu b",
+ "con current",
+ "izz ato",
+ "izza to",
+ "▁st ub",
+ "▁i e",
+ "▁ ie",
+ "▁' ./",
+ "▁'. /",
+ "co d",
+ "c od",
+ "▁intern acional",
+ "▁G las",
+ "▁Gl as",
+ "▁Gla s",
+ "▁m are",
+ "▁ma re",
+ "▁mar e",
+ "▁N eb",
+ "▁Ne b",
+ "▁G B",
+ "▁ GB",
+ "kw args",
+ "▁a ument",
+ "▁au ment",
+ "WI D",
+ "W ID",
+ "▁ро д",
+ "▁р од",
+ "▁ род",
+ "p unkt",
+ "▁G rad",
+ "▁Gr ad",
+ "▁Gra d",
+ "▁ Grad",
+ "S N",
+ "AM P",
+ "A MP",
+ "▁B orn",
+ "▁Bo rn",
+ "▁Bor n",
+ "▁Guer re",
+ "го тов",
+ "▁med io",
+ "▁medi o",
+ "Me d",
+ "M ed",
+ "su pp",
+ "sup p",
+ "s upp",
+ "act ual",
+ "drop down",
+ "▁ok tober",
+ "▁ ř",
+ "▁circ ular",
+ "▁cir cular",
+ "▁circul ar",
+ "▁s kin",
+ "▁sk in",
+ "▁ski n",
+ "▁em phas",
+ "▁emp has",
+ "▁го лов",
+ "▁голо в",
+ "▁p ue",
+ "▁pu e",
+ "▁inform ations",
+ "▁information s",
+ "▁Wolf gang",
+ "▁us eless",
+ "▁use less",
+ "и т",
+ "▁Jo an",
+ "▁б ор",
+ "▁бо р",
+ "▁ бор",
+ "▁G lad",
+ "▁Gl ad",
+ "▁Gla d",
+ "▁K now",
+ "▁Kn ow",
+ "▁Kno w",
+ "ké nt",
+ "k ént",
+ "sp eed",
+ "spe ed",
+ "▁Ke vin",
+ "un ft",
+ "▁ar qu",
+ "▁ arqu",
+ "▁C asa",
+ "▁Cas a",
+ "▁Ca sa",
+ "(. ..",
+ "( ...",
+ "▁rapid ly",
+ "▁pro ble",
+ "▁prob le",
+ "▁probl e",
+ "▁Ви кипеди",
+ "že n",
+ "ž en",
+ "▁N eben",
+ "▁Ne ben",
+ "▁Neb en",
+ "▁M eter",
+ "▁Me ter",
+ "▁Met er",
+ "Child ren",
+ "ce m",
+ "c em",
+ "ig os",
+ "igo s",
+ "aj u",
+ "a ju",
+ "▁Ret rie",
+ "▁H ell",
+ "▁He ll",
+ "▁Hel l",
+ "▁g ig",
+ "▁gi g",
+ "▁contro vers",
+ "▁z oom",
+ "▁zo om",
+ "▁zoo m",
+ "▁c ens",
+ "▁ce ns",
+ "▁alc uni",
+ "▁He ader",
+ "▁Head er",
+ "▁ Header",
+ "Me ta",
+ "Met a",
+ "M eta",
+ "Re quired",
+ "▁ин ститу",
+ "▁s kup",
+ "▁sk up",
+ "▁ing les",
+ "ég l",
+ "é gl",
+ "bi j",
+ "b ij",
+ "▁t ér",
+ "▁té r",
+ "▁com pag",
+ "▁comp ag",
+ "▁comm itted",
+ "▁commit ted",
+ "▁process ed",
+ "▁proc essed",
+ "▁proces sed",
+ "Lo wer",
+ "L ower",
+ "▁F oreign",
+ "▁For eign",
+ "▁Fore ign",
+ "▁ Foreign",
+ "▁s eq",
+ "▁se q",
+ "▁ seq",
+ "sheet s",
+ "she ets",
+ "▁F em",
+ "▁Fe m",
+ "ho z",
+ "h oz",
+ "in ks",
+ "ink s",
+ "▁k all",
+ "▁ka ll",
+ "▁kal l",
+ "vari ant",
+ "▁li bro",
+ "▁lib ro",
+ "▁cl icks",
+ "▁click s",
+ "▁cli cks",
+ "▁g obierno",
+ "ie gel",
+ "ieg el",
+ "мо го",
+ "м ого",
+ "ge me",
+ "gem e",
+ "g eme",
+ "▁t ower",
+ "▁to wer",
+ "▁par ish",
+ "▁T CP",
+ "▁l s",
+ "▁ ls",
+ "▁n ginx",
+ "▁ng inx",
+ "▁ nginx",
+ "Na N",
+ "▁D ir",
+ "▁Di r",
+ "▁ Dir",
+ "▁Begr iffe",
+ "▁Begriff e",
+ "ar ie",
+ "ari e",
+ "a rie",
+ "ím p",
+ "í mp",
+ "ic ios",
+ "ici os",
+ "icio s",
+ "i cios",
+ "▁sh aring",
+ "▁cin éma",
+ "be c",
+ "b ec",
+ "RE D",
+ "R ED",
+ "▁K ra",
+ "▁Kr a",
+ "ab ol",
+ "a bol",
+ "▁fl ux",
+ "▁flu x",
+ "▁exp ensive",
+ "▁су ще",
+ "▁` _",
+ "oc z",
+ "o cz",
+ "ли ст",
+ "▁acqu aint",
+ "▁w ise",
+ "▁wis e",
+ "▁ wise",
+ "▁pou voir",
+ "▁pouv oir",
+ "▁dev ant",
+ "▁moment um",
+ "im mer",
+ "imm er",
+ "▁C oupe",
+ "▁Cou pe",
+ "index Of",
+ "▁does nt",
+ "▁doesn t",
+ "▁за в",
+ "▁lic ense",
+ "▁ â",
+ "CS S",
+ "C SS",
+ "▁r ice",
+ "▁ric e",
+ "▁ri ce",
+ "▁ rice",
+ "Te am",
+ "▁a no",
+ "▁an o",
+ "▁ ano",
+ "li t",
+ "l it",
+ "▁mer ged",
+ "▁merge d",
+ "▁C ell",
+ "▁Ce ll",
+ "▁Cel l",
+ "▁ Cell",
+ "л л",
+ "bo y",
+ "b oy",
+ "as ts",
+ "ast s",
+ "▁s ell",
+ "▁se ll",
+ "▁sel l",
+ "▁gro ße",
+ "▁groß e",
+ "▁virt uel",
+ "▁virtue l",
+ "Can cel",
+ "▁s j",
+ "g ment",
+ ". <",
+ "ча й",
+ "i ë",
+ "ak h",
+ "a kh",
+ "iz ers",
+ "ize rs",
+ "izer s",
+ "pr it",
+ "p rit",
+ "▁T ib",
+ "▁Ti b",
+ "▁elabor ate",
+ "▁f é",
+ "▁м еди",
+ "▁ме ди",
+ "LENG TH",
+ "▁prim arily",
+ "▁sc ores",
+ "▁score s",
+ "▁carry ing",
+ "▁l ake",
+ "▁la ke",
+ "▁lak e",
+ "com pose",
+ "comp ose",
+ "compos e",
+ "▁Town ship",
+ "un ge",
+ "ung e",
+ "▁al berga",
+ "an ych",
+ "any ch",
+ "a nych",
+ "qu elle",
+ "que lle",
+ "quel le",
+ "q uelle",
+ "▁Ar k",
+ "▁p ris",
+ "▁pr is",
+ "▁pri s",
+ "▁v oll",
+ "▁vo ll",
+ "▁vol l",
+ "ш ли",
+ "Valid ation",
+ "▁ce ux",
+ "▁pop ulate",
+ "▁popula te",
+ "▁popul ate",
+ "\" \r",
+ "▁fem mes",
+ "▁femme s",
+ "AN G",
+ "A NG",
+ "▁Desp ite",
+ "вы е",
+ "в ые",
+ "is ke",
+ "isk e",
+ "i ske",
+ "zu g",
+ "z ug",
+ "на ча",
+ "▁h atten",
+ "▁hat ten",
+ "▁hatte n",
+ "IN SERT",
+ "Emp loyee",
+ "▁mo ments",
+ "▁moment s",
+ "▁mom ents",
+ "▁últ ima",
+ "▁h older",
+ "▁hold er",
+ "▁ho lder",
+ "▁hol der",
+ "▁ holder",
+ "bl ank",
+ "Col lections",
+ "Collection s",
+ "Collect ions",
+ "ath ers",
+ "ather s",
+ "a thers",
+ "▁g rade",
+ "▁gr ade",
+ "▁gra de",
+ "▁grad e",
+ "▁ grade",
+ "▁aff airs",
+ "▁affair s",
+ ".$ $",
+ ". $$",
+ "▁d elta",
+ "▁del ta",
+ "▁ delta",
+ "▁Jug end",
+ "▁españ ol",
+ "▁O UT",
+ "▁ OUT",
+ "▁mathemat ical",
+ "▁m ongo",
+ "▁mon go",
+ "▁Ф е",
+ "ul ing",
+ "uli ng",
+ "u ling",
+ "▁re volution",
+ "▁revol ution",
+ "▁c oin",
+ "▁co in",
+ "▁sub class",
+ "\" =>",
+ "äch e",
+ "ä che",
+ "▁p yg",
+ "▁py g",
+ "ща я",
+ "ill ery",
+ "ille ry",
+ "iller y",
+ "▁com enz",
+ "dep th",
+ "▁c él",
+ "▁re size",
+ "▁res ize",
+ "▁ resize",
+ "▁S ame",
+ "▁Sam e",
+ "▁Sa me",
+ "▁st rik",
+ "▁str ik",
+ "▁stri k",
+ "▁t ir",
+ "▁ti r",
+ "▁sc arc",
+ "▁scar c",
+ "▁M ember",
+ "▁Mem ber",
+ "▁ Member",
+ "sub scribe",
+ "ó ż",
+ "út bol",
+ "ex cept",
+ "▁dr iving",
+ "▁dri ving",
+ "▁driv ing",
+ "ki e",
+ "k ie",
+ "zo ny",
+ "zon y",
+ "z ony",
+ "ème s",
+ "è mes",
+ "Da vid",
+ "D avid",
+ "iss ant",
+ "issa nt",
+ "▁т ы",
+ "▁ ты",
+ "▁é lect",
+ "▁él ect",
+ "▁re name",
+ "▁r ename",
+ "▁ren ame",
+ "▁R unning",
+ "▁Run ning",
+ "▁ Running",
+ "▁inter faces",
+ "▁interface s",
+ "//////// ////////",
+ "▁Wal ker",
+ "▁Walk er",
+ "▁soci été",
+ "▁as ks",
+ "▁ask s",
+ "br id",
+ "b rid",
+ "▁je we",
+ "▁se ines",
+ "▁sein es",
+ "▁seine s",
+ "▁sei nes",
+ "▁ag ents",
+ "▁agent s",
+ "▁M Y",
+ "▁ MY",
+ "▁Law rence",
+ "de ss",
+ "des s",
+ "d ess",
+ "ie sen",
+ "ies en",
+ "iese n",
+ "i esen",
+ "▁людя х",
+ "прав и",
+ "пра ви",
+ "▁anc est",
+ "▁wel che",
+ "ra um",
+ "r aum",
+ "▁o rb",
+ "▁or b",
+ "▁ orb",
+ "sc al",
+ "s cal",
+ "▁L ear",
+ "▁Le ar",
+ "▁w ear",
+ "▁we ar",
+ "▁s lave",
+ "▁sl ave",
+ "▁sla ve",
+ "▁re named",
+ "▁ren amed",
+ "▁rename d",
+ "če n",
+ "č en",
+ "ma ste",
+ "mas te",
+ "m aste",
+ "ang les",
+ "angle s",
+ "▁Am érica",
+ "▁t i",
+ "▁ ti",
+ "▁dem sel",
+ "▁bene ath",
+ "bin ary",
+ "b inary",
+ "▁ed ición",
+ "▁kil omet",
+ "▁kilom et",
+ "ui ts",
+ "uit s",
+ "u its",
+ "▁cu atro",
+ "▁ent rance",
+ "▁entr ance",
+ "ond issement",
+ "▁b ag",
+ "▁ba g",
+ "▁ bag",
+ "▁Ar men",
+ "▁Arm en",
+ "ij o",
+ "i jo",
+ "▁L ors",
+ "▁Lo rs",
+ "▁Lor s",
+ "▁demsel ben",
+ "ê m",
+ "▁dis crete",
+ "▁prom inent",
+ "▁J ay",
+ "▁Ja y",
+ "de cor",
+ "dec or",
+ "D L",
+ "▁d í",
+ "St ruct",
+ "Str uct",
+ "▁P roduction",
+ "▁Produ ction",
+ "▁Product ion",
+ "th ey",
+ "the y",
+ "ar ius",
+ "ari us",
+ "sch nitt",
+ "▁C ou",
+ "▁Co u",
+ "▁l ex",
+ "▁le x",
+ "▁ lex",
+ "y outube",
+ "▁рабо та",
+ "st ation",
+ "sta tion",
+ "stat ion",
+ "se p",
+ "s ep",
+ "▁mi rror",
+ "▁mir ror",
+ "▁h its",
+ "▁hit s",
+ "▁hi ts",
+ "▁Be ck",
+ "at ically",
+ "atic ally",
+ "▁L az",
+ "▁La z",
+ "▁w inner",
+ "▁win ner",
+ "DE X",
+ "D EX",
+ "▁I NT",
+ "▁IN T",
+ "▁ INT",
+ "}^ {-",
+ "}^{ -",
+ "} ^{-",
+ "▁w egen",
+ "▁we gen",
+ "▁weg en",
+ "ma d",
+ "m ad",
+ "An gle",
+ "Ang le",
+ "zi ng",
+ "zin g",
+ "z ing",
+ "▁Bay ern",
+ "▁Bayer n",
+ "sa l",
+ "s al",
+ "äg er",
+ "ä ger",
+ "▁bus y",
+ "▁st ör",
+ "▁f olk",
+ "▁fol k",
+ "▁ folk",
+ "▁p rix",
+ "▁pr ix",
+ "▁pri x",
+ "▁al located",
+ "▁alloc ated",
+ "▁allocate d",
+ "▁p t",
+ "▁ pt",
+ "af fen",
+ "aff en",
+ "a ffen",
+ "cl uster",
+ "clus ter",
+ "▁com plement",
+ "▁comp lement",
+ "▁comple ment",
+ "▁compl ement",
+ "ár s",
+ "á rs",
+ "▁Amer ika",
+ "рі й",
+ "р ій",
+ "▁val ley",
+ "▁vall ey",
+ "▁valle y",
+ "▁ro oms",
+ "▁room s",
+ "▁ rooms",
+ "▁m oi",
+ "▁mo i",
+ ".\" ,",
+ ". \",",
+ ";; ;;",
+ "▁lo west",
+ "▁low est",
+ "no g",
+ "n og",
+ "▁land et",
+ "▁lan det",
+ "▁program me",
+ "ch io",
+ "chi o",
+ "▁W ährend",
+ "ánd ez",
+ "▁дол ж",
+ "▁o uv",
+ "▁ou v",
+ "▁ ouv",
+ "om ány",
+ "▁Википеди и",
+ "▁s ó",
+ "▁ele ktr",
+ "De sc",
+ "Des c",
+ "D esc",
+ "▁Be aut",
+ "▁Beau t",
+ "на р",
+ "н ар",
+ "▁мо же",
+ "▁мож е",
+ "P ierre",
+ "es ota",
+ "eso ta",
+ "▁oper ated",
+ "▁opera ted",
+ "▁operate d",
+ "▁f orte",
+ "▁for te",
+ "▁fort e",
+ "ри с",
+ "р ис",
+ "▁op position",
+ "▁opp osition",
+ "▁oppos ition",
+ "al ia",
+ "ali a",
+ "a lia",
+ "▁S yl",
+ "▁Sy l",
+ "get Name",
+ "ве ли",
+ "fi k",
+ "f ik",
+ "▁com prom",
+ "▁comp rom",
+ "▁compr om",
+ "▁Text View",
+ "▁ TextView",
+ "Sp ring",
+ "S pring",
+ "met adata",
+ "meta data",
+ "en gu",
+ "eng u",
+ "/ ,",
+ "▁car ri",
+ "is tol",
+ "ist ol",
+ "isto l",
+ "▁diag onal",
+ "li sta",
+ "list a",
+ "lis ta",
+ "l ista",
+ "iz en",
+ "ize n",
+ "i zen",
+ "▁re nde",
+ "▁r ende",
+ "▁ren de",
+ "▁rend e",
+ "gc c",
+ "g cc",
+ "be ck",
+ "bec k",
+ "li us",
+ "l ius",
+ "ir al",
+ "ira l",
+ "i ral",
+ "Resol ver",
+ "▁percent age",
+ "▁at tra",
+ "▁att ra",
+ "▁attr a",
+ "str ings",
+ "string s",
+ "wi ąz",
+ "od s",
+ "o ds",
+ "во лю",
+ "ę ż",
+ "▁news paper",
+ "▁newsp aper",
+ "im iter",
+ "imi ter",
+ "imit er",
+ "AB C",
+ "A BC",
+ "▁Man chester",
+ "[ {",
+ "Ag ent",
+ "Age nt",
+ "A gent",
+ "▁W or",
+ "▁Wo r",
+ "▁K ath",
+ "▁Kat h",
+ "▁Ka th",
+ "▁по ві",
+ "▁пов і",
+ "▁ent onces",
+ "▁n iveau",
+ "at ted",
+ "att ed",
+ "atte d",
+ "le arn",
+ "lear n",
+ "lea rn",
+ "at iques",
+ "ati ques",
+ "atique s",
+ "▁у би",
+ "▁qu indi",
+ "bin ding",
+ "bind ing",
+ "b inding",
+ "▁import ed",
+ "▁imp orted",
+ "▁H orn",
+ "▁Hor n",
+ "▁Ho rn",
+ "em berg",
+ "ember g",
+ "emb erg",
+ "com plex",
+ "comp lex",
+ "comple x",
+ "▁ne ural",
+ "▁neu ral",
+ "▁neur al",
+ "in formation",
+ "▁recogn ition",
+ "in gt",
+ "ing t",
+ "▁inhab itants",
+ "vu e",
+ "v ue",
+ "▁Be völker",
+ "▁cur ves",
+ "▁curve s",
+ "▁curv es",
+ "▁l eb",
+ "▁le b",
+ "▁ leb",
+ "ді й",
+ "д ій",
+ "▁s ow",
+ "▁so w",
+ "▁sent iment",
+ "P H",
+ "ra che",
+ "rac he",
+ "rach e",
+ "r ache",
+ "▁- (",
+ "▁ -(",
+ "▁e stable",
+ "▁est able",
+ "▁es table",
+ "▁estab le",
+ "▁esta ble",
+ "▁Ferd inand",
+ "▁é crit",
+ "▁éc rit",
+ "▁prime iro",
+ "▁t ex",
+ "▁te x",
+ "▁ tex",
+ "▁inter mediate",
+ "ve rage",
+ "ver age",
+ "vera ge",
+ "ib us",
+ "i bus",
+ "▁s erves",
+ "▁ser ves",
+ "▁serv es",
+ "▁serve s",
+ "iv as",
+ "iva s",
+ "i vas",
+ "▁b ru",
+ "▁br u",
+ "▁ bru",
+ "▁l um",
+ "▁lu m",
+ "att ice",
+ "atti ce",
+ "ч ный",
+ "▁D res",
+ "▁Dr es",
+ "▁Dre s",
+ "▁v ideos",
+ "▁video s",
+ "▁vide os",
+ "d uration",
+ "▁a bit",
+ "▁ab it",
+ "▁e gg",
+ "▁eg g",
+ "ograph ical",
+ "ographic al",
+ "al ph",
+ "ST ATE",
+ "STAT E",
+ "▁па ра",
+ "▁пар а",
+ "▁ пара",
+ "re ading",
+ "read ing",
+ "rea ding",
+ "▁veh icle",
+ "▁fort une",
+ "ult ats",
+ "▁St oria",
+ "▁Sto ria",
+ "mi dt",
+ "mid t",
+ "łą cz",
+ "▁Mem orial",
+ "▁v as",
+ "▁va s",
+ "▁ vas",
+ "▁з ан",
+ "▁за н",
+ "▁ зан",
+ "▁ut ility",
+ "▁util ity",
+ "▁ob sc",
+ "▁obs c",
+ "▁rel acion",
+ "▁rela cion",
+ "▁relac ion",
+ "▁run at",
+ "▁ru nat",
+ "Re lease",
+ "ta ke",
+ "t ake",
+ "▁O liver",
+ "▁Ol iver",
+ "▁Oliv er",
+ "▁S id",
+ "▁Si d",
+ "ul os",
+ "ulo s",
+ "u los",
+ "▁G arc",
+ "▁Gar c",
+ "▁Ga rc",
+ "▁роз та",
+ "▁S ak",
+ "▁Sa k",
+ "P y",
+ "führ t",
+ "f ührt",
+ "▁tra bal",
+ "▁trab al",
+ "* {",
+ "▁z es",
+ "▁ze s",
+ "▁ zes",
+ "▁sz ere",
+ "▁szer e",
+ "▁sze re",
+ "▁v arios",
+ "▁var ios",
+ "▁vari os",
+ "▁va rios",
+ "▁o tra",
+ "▁ot ra",
+ "▁e val",
+ "▁ev al",
+ "▁ eval",
+ "▁situ é",
+ "▁sit ué",
+ "▁w ounded",
+ "▁Vin cent",
+ "▁вико ри",
+ "▁en code",
+ "▁enc ode",
+ "▁ encode",
+ "Mod al",
+ "Mo dal",
+ "▁f orb",
+ "▁for b",
+ "▁fo rb",
+ "▁dynam ics",
+ "▁dynamic s",
+ "▁de pos",
+ "▁dep os",
+ "ar de",
+ "ard e",
+ "▁street s",
+ "▁stre ets",
+ "▁K omm",
+ "▁Kom m",
+ "▁Ko mm",
+ "=$ (",
+ "= $(",
+ "▁по вер",
+ "▁пов ер",
+ "▁пове р",
+ "▁d ois",
+ "▁do is",
+ "▁doi s",
+ "▁v itt",
+ "▁vi tt",
+ "▁vit t",
+ "▁automat isch",
+ "▁re load",
+ "▁ reload",
+ "▁Ver walt",
+ "ber o",
+ "be ro",
+ "b ero",
+ "▁h ub",
+ "▁hu b",
+ "▁m os",
+ "▁mo s",
+ "▁ mos",
+ "▁t utto",
+ "▁tu tto",
+ "▁tut to",
+ "▁Freder ick",
+ "ło w",
+ "ł ow",
+ "ant ages",
+ "anta ges",
+ "antage s",
+ "aqu e",
+ "a que",
+ "pa per",
+ "p aper",
+ "▁ein ige",
+ "`) ,",
+ "` ),",
+ "d j",
+ "▁P le",
+ "▁Pl e",
+ "▁% ,",
+ "▁ %,",
+ "▁B itmap",
+ "▁Bit map",
+ "▁ Bitmap",
+ "▁friend ly",
+ "▁tr uly",
+ "▁st roke",
+ "▁str oke",
+ "▁stro ke",
+ "▁ stroke",
+ "ro ph",
+ "rop h",
+ "r oph",
+ "▁en gl",
+ "▁eng l",
+ "▁ engl",
+ "▁c off",
+ "▁co ff",
+ "▁d ust",
+ "▁du st",
+ "▁dus t",
+ "▁Jah res",
+ "▁Jahr es",
+ "▁Jahre s",
+ "pp i",
+ "p pi",
+ "▁w ys",
+ "▁wy s",
+ "fa ctor",
+ "fact or",
+ "fac tor",
+ "f actor",
+ "sch luss",
+ "▁дере вня",
+ "▁дерев ня",
+ "▁P ast",
+ "▁Pa st",
+ "▁Pas t",
+ "▁до ма",
+ "CO M",
+ "C OM",
+ "▁pu eden",
+ "▁puede n",
+ "▁pue den",
+ "▁g ift",
+ "▁gi ft",
+ "▁G la",
+ "▁Gl a",
+ "▁trigger ed",
+ "él y",
+ "é ly",
+ "ül és",
+ "ü lés",
+ "▁O liv",
+ "▁Ol iv",
+ "▁ver so",
+ "▁vers o",
+ "▁ verso",
+ "▁l le",
+ "▁ll e",
+ "▁ lle",
+ "▁G li",
+ "▁Gl i",
+ "▁L td",
+ "o a",
+ "▁territ orio",
+ "ord re",
+ "▁de ck",
+ "▁dec k",
+ "▁ deck",
+ "dr a",
+ "d ra",
+ "as zt",
+ "asz t",
+ "▁concern ing",
+ "▁Add itionally",
+ "▁kter é",
+ "▁g rund",
+ "▁gr und",
+ "▁gru nd",
+ "▁ grund",
+ "▁G est",
+ "▁Ge st",
+ "▁Ges t",
+ "▁ Gest",
+ "▁mis under",
+ "pr et",
+ "pre t",
+ "p ret",
+ "── ──",
+ "▁re putation",
+ "zi a",
+ "z ia",
+ "▁у спе",
+ "▁ус пе",
+ "▁esc aped",
+ "▁escape d",
+ "▁P rag",
+ "▁Pr ag",
+ "▁Pra g",
+ "per form",
+ "▁a ustral",
+ "▁aust ral",
+ "▁V ater",
+ "▁Va ter",
+ "ча с",
+ "▁r aces",
+ "▁ra ces",
+ "▁race s",
+ "▁rac es",
+ "▁By te",
+ "▁ Byte",
+ "Ma sk",
+ "M ask",
+ "▁Ter rit",
+ "▁Terr it",
+ "ст ю",
+ "▁V oci",
+ "▁Vo ci",
+ "▁Fich ier",
+ "▁Насе лення",
+ "▁Unter scheidung",
+ "te enth",
+ "teen th",
+ "▁pi lot",
+ "▁pil ot",
+ "▁j i",
+ "▁ ji",
+ "▁дву х",
+ "▁orient ation",
+ "▁ orientation",
+ "ind re",
+ "▁D ort",
+ "▁Do rt",
+ "▁Dor t",
+ "ça s",
+ "ç as",
+ "п ли",
+ "▁re action",
+ "▁react ion",
+ "▁cons isting",
+ "▁consist ing",
+ "▁fer ro",
+ "ти сти",
+ "ya rd",
+ "yar d",
+ "y ard",
+ "▁с ві",
+ "▁interpret ation",
+ "i ą",
+ "ra h",
+ "r ah",
+ "▁f and",
+ "▁fa nd",
+ "▁fan d",
+ "Pub lic",
+ "P ublic",
+ "▁un iverse",
+ "▁univers e",
+ "▁ret ir",
+ "▁cons cious",
+ "ar qu",
+ "▁w aste",
+ "▁was te",
+ "▁wa ste",
+ "▁B ib",
+ "▁Bi b",
+ "ycler View",
+ "▁list ening",
+ "▁listen ing",
+ "▁liste ning",
+ "gle ich",
+ "g leich",
+ "nie js",
+ "niej s",
+ "▁cor relation",
+ "▁correl ation",
+ "▁corre lation",
+ "▁rece iver",
+ "▁receive r",
+ "▁у да",
+ "▁cour age",
+ "▁cou rage",
+ "uch s",
+ "uc hs",
+ "u chs",
+ "fa ss",
+ "fas s",
+ "f ass",
+ "▁ch unk",
+ "▁ chunk",
+ "▁An fang",
+ "▁gro ßen",
+ "▁große n",
+ "▁groß en",
+ "cont inue",
+ "continu e",
+ "▁Warsza wa",
+ "h é",
+ "i y",
+ "iv ement",
+ "ive ment",
+ "i vement",
+ "▁ α",
+ "▁ex posed",
+ "▁exp osed",
+ "▁expos ed",
+ "▁expose d",
+ "▁z ahl",
+ "▁za hl",
+ "▁ zahl",
+ "▁sa cr",
+ "▁sac r",
+ "▁Lo oks",
+ "▁Look s",
+ "▁e ager",
+ "en ten",
+ "ent en",
+ "ente n",
+ "e nten",
+ "C ursor",
+ "/ _",
+ "ix a",
+ "i xa",
+ "ре ла",
+ "зна ча",
+ "з нача",
+ "▁фамили ей",
+ "▁ar gent",
+ "▁arg ent",
+ "▁ argent",
+ "▁An ders",
+ "▁And ers",
+ "œuv re",
+ "▁I sa",
+ "▁Is a",
+ "мен та",
+ "мент а",
+ "▁ad vers",
+ "▁adv ers",
+ "ri ction",
+ "ric tion",
+ "rict ion",
+ "r iction",
+ "G P",
+ "▁п ісля",
+ "▁pre serve",
+ "▁pres erve",
+ "▁G arden",
+ "▁Gar den",
+ "▁Gard en",
+ "R ate",
+ "ap rès",
+ "a près",
+ "▁read able",
+ "in du",
+ "ind u",
+ "▁s kill",
+ "▁sk ill",
+ "▁ski ll",
+ "▁hel ping",
+ "▁help ing",
+ "ograph ique",
+ "cl ing",
+ "cli ng",
+ "c ling",
+ "olog ist",
+ "▁Fil ter",
+ "▁ Filter",
+ "▁f inger",
+ "▁fin ger",
+ "▁V all",
+ "▁Val l",
+ "▁Va ll",
+ "▁Pol ish",
+ "▁Po lish",
+ "l g",
+ "▁Famil ien",
+ "▁Familie n",
+ "▁w aters",
+ "▁water s",
+ "▁wa ters",
+ "▁wat ers",
+ "▁pse ud",
+ "az a",
+ "a za",
+ "_ )",
+ "AR Y",
+ "A RY",
+ "▁с реди",
+ "▁сред и",
+ "▁сре ди",
+ "▁M ust",
+ "▁Mus t",
+ "▁Mu st",
+ "▁B od",
+ "▁Bo d",
+ "an on",
+ "ano n",
+ "a non",
+ "▁l ado",
+ "▁la do",
+ "▁lad o",
+ "▁t ight",
+ "im en",
+ "ime n",
+ "i men",
+ "ap pen",
+ "app en",
+ "appe n",
+ "a ppen",
+ "fr ames",
+ "frame s",
+ "fra mes",
+ "fram es",
+ "in gers",
+ "ing ers",
+ "inger s",
+ "inge rs",
+ "▁CO VID",
+ "▁з і",
+ "▁ зі",
+ "▁с ве",
+ "▁ц ь",
+ "▁ ць",
+ "▁L eft",
+ "▁Le ft",
+ "▁ Left",
+ "]] ;",
+ "] ];",
+ "ч ь",
+ "фи ка",
+ "▁с ло",
+ "▁ сло",
+ "▁п і",
+ "▁ пі",
+ "▁ex iste",
+ "▁exist e",
+ "▁Atl antic",
+ "▁maintain ed",
+ "▁ir re",
+ "▁an née",
+ "▁ann ée",
+ "▁ année",
+ "▁comm ented",
+ "▁comment ed",
+ "ве ро",
+ "вер о",
+ "ber ta",
+ "bert a",
+ "b erta",
+ "▁L ad",
+ "▁La d",
+ "▁U pon",
+ "▁Up on",
+ "▁p ause",
+ "▁pa use",
+ "▁pau se",
+ "mi ll",
+ "mil l",
+ "m ill",
+ "op ter",
+ "opt er",
+ "U K",
+ "ре с",
+ "р ес",
+ "нцикло педи",
+ "▁along side",
+ "▁ro bot",
+ "▁rob ot",
+ "▁f ert",
+ "▁fe rt",
+ "▁fer t",
+ "▁ fert",
+ "▁m oy",
+ "▁mo y",
+ "▁a de",
+ "▁ad e",
+ "▁ ade",
+ "Map per",
+ "Mapp er",
+ "Ma pper",
+ "M apper",
+ ")- >",
+ ") ->",
+ "ig ua",
+ "igu a",
+ "ét ique",
+ "т ка",
+ "al ias",
+ "ali as",
+ "alia s",
+ "a lias",
+ "▁о ри",
+ "▁ор и",
+ "▁M agn",
+ "▁Ma gn",
+ "▁Mag n",
+ "▁gehör te",
+ "▁gehört e",
+ "im b",
+ "i mb",
+ ")} {\\",
+ ")}{ \\",
+ ") }{\\",
+ "▁Wikip édia",
+ "▁u rs",
+ "▁ur s",
+ "▁ urs",
+ "▁e nde",
+ "▁en de",
+ "▁end e",
+ "▁ ende",
+ "le b",
+ "l eb",
+ "▁G C",
+ "▁ GC",
+ "H ol",
+ "an cing",
+ "anc ing",
+ "anci ng",
+ "Un ion",
+ "Uni on",
+ "▁ten ía",
+ "T T",
+ "▁e state",
+ "▁est ate",
+ "▁esta te",
+ "▁estat e",
+ "h á",
+ "▁по лі",
+ "▁пол і",
+ "ul tan",
+ "ult an",
+ "▁H ockey",
+ "ul se",
+ "uls e",
+ "▁cho ices",
+ "▁choice s",
+ "sch er",
+ "sc her",
+ "sche r",
+ "s cher",
+ "▁[ ],",
+ "▁[] ,",
+ "▁pot entially",
+ "▁potential ly",
+ "▁Ü bers",
+ "▁Über s",
+ "▁ad mit",
+ "▁adm it",
+ "Com ment",
+ "Comm ent",
+ "ст я",
+ "с тя",
+ "▁V ien",
+ "▁Vi en",
+ "▁Vie n",
+ "▁ц і",
+ "▁ ці",
+ "▁per mut",
+ "▁perm ut",
+ "c gi",
+ "▁cr ít",
+ "Con sole",
+ "Cons ole",
+ "ct ic",
+ "▁ok res",
+ "aw k",
+ "foot ball",
+ "ou est",
+ "o uest",
+ "CT YPE",
+ "C TYPE",
+ "olog ique",
+ "▁const it",
+ "▁cons tit",
+ "▁inter ests",
+ "▁interest s",
+ "▁Pro gress",
+ "▁ Progress",
+ "▁M enu",
+ "▁Me nu",
+ "▁Men u",
+ "▁ Menu",
+ "▁tak é",
+ "▁ta ké",
+ "▁As ian",
+ "▁Asia n",
+ "▁за щи",
+ "▁young er",
+ "▁w ished",
+ "▁wish ed",
+ "▁wis hed",
+ "▁S ort",
+ "▁So rt",
+ "▁Sor t",
+ "▁ Sort",
+ "▁aud ience",
+ "▁audi ence",
+ "am ba",
+ "amb a",
+ "▁gehör t",
+ "▁K ansas",
+ "ya ume",
+ "▁Prof essional",
+ "â ce",
+ "▁f atto",
+ "▁fa tto",
+ "▁fat to",
+ "to d",
+ "t od",
+ "▁data sets",
+ "▁datas ets",
+ "▁dataset s",
+ "▁f are",
+ "▁far e",
+ "▁fa re",
+ "▁ fare",
+ "▁w aves",
+ "▁wave s",
+ "▁wa ves",
+ "~ /",
+ "▁measure ment",
+ "▁w ol",
+ "▁wo l",
+ "▁ wol",
+ "ind ust",
+ "indu st",
+ "▁strugg ling",
+ "▁pull ed",
+ "▁pul led",
+ "▁car atter",
+ "▁Ex terne",
+ "▁Ext erne",
+ "▁Extern e",
+ "▁дей стви",
+ "cn t",
+ "c nt",
+ "li ches",
+ "lic hes",
+ "lich es",
+ "liche s",
+ "▁Pos sible",
+ "▁Poss ible",
+ "▁fa ced",
+ "▁face d",
+ "▁fac ed",
+ "▁hypoth esis",
+ "▁kil om",
+ "▁n är",
+ "▁nä r",
+ "bo olean",
+ "P Y",
+ "am pa",
+ "amp a",
+ "▁k iss",
+ "▁ki ss",
+ "▁kis s",
+ "▁as tero",
+ "▁ast ero",
+ "▁neg li",
+ "am ents",
+ "ament s",
+ "amen ts",
+ "a ments",
+ "▁S tu",
+ "▁St u",
+ "at ó",
+ "a tó",
+ "▁Const itution",
+ "▁inter pol",
+ "▁Un able",
+ "▁Una ble",
+ "▁p is",
+ "▁pi s",
+ "▁ pis",
+ "▁p arc",
+ "▁par c",
+ "▁pa rc",
+ "\"] )",
+ "\" ])",
+ "ple r",
+ "pl er",
+ "p ler",
+ "▁aut ory",
+ "▁auto ry",
+ "▁autor y",
+ "▁alg unos",
+ "yw na",
+ "}) )",
+ "} ))",
+ "▁f alls",
+ "▁fall s",
+ "▁fal ls",
+ "▁ falls",
+ "▁é quip",
+ "▁e mit",
+ "▁em it",
+ "▁ emit",
+ "▁pro fil",
+ "▁prof il",
+ "ge ts",
+ "get s",
+ "g ets",
+ "ф о",
+ "▁Milit ary",
+ "▁nombre ux",
+ "oc t",
+ "o ct",
+ "Re place",
+ "Rep lace",
+ "▁se asons",
+ "▁season s",
+ "▁ch âteau",
+ "▁type of",
+ "▁ typeof",
+ "po lit",
+ "pol it",
+ "p olit",
+ "▁r and",
+ "▁ra nd",
+ "▁ran d",
+ "▁ rand",
+ "▁qu ar",
+ "▁erst mals",
+ "си ни",
+ "▁pay load",
+ "▁ payload",
+ "П о",
+ "кі н",
+ "к ін",
+ "re po",
+ "rep o",
+ "▁P av",
+ "▁Pa v",
+ "Sc ore",
+ "S core",
+ "er ves",
+ "erv es",
+ "erve s",
+ "▁soll te",
+ "▁мі ж",
+ "éb ec",
+ "é bec",
+ "▁c lip",
+ "▁cl ip",
+ "▁cli p",
+ "▁ clip",
+ "▁N ice",
+ "▁Nic e",
+ "▁Ni ce",
+ "▁n eben",
+ "▁ne ben",
+ "▁ass ass",
+ "it ories",
+ "ito ries",
+ "itor ies",
+ "itori es",
+ "▁un ity",
+ "▁unit y",
+ "▁ unity",
+ "▁е н",
+ "▁ ен",
+ "▁Inst itut",
+ "▁Instit ut",
+ "▁ Institut",
+ "▁intern ationale",
+ "▁international e",
+ "▁на ук",
+ "▁нау к",
+ "▁com and",
+ "▁kle ine",
+ "▁klein e",
+ "▁adj acent",
+ "▁deliver ed",
+ "▁ш е",
+ "▁ ше",
+ "зе м",
+ "з ем",
+ "▁c ot",
+ "▁co t",
+ "▁ cot",
+ "vis ual",
+ "ва ет",
+ "▁C ensus",
+ "\\ _",
+ "▁territ ory",
+ "чи л",
+ "ч ил",
+ "ч ные",
+ "fl utter",
+ "Did Load",
+ "Document s",
+ "Doc uments",
+ "▁d ob",
+ "▁do b",
+ "▁ dob",
+ "Br e",
+ "B re",
+ "an imate",
+ "ani mate",
+ "anim ate",
+ "▁b iz",
+ "▁bi z",
+ "▁b ata",
+ "▁ba ta",
+ "▁bat a",
+ "▁S U",
+ "▁ SU",
+ "es o",
+ "e so",
+ "▁p riority",
+ "▁prior ity",
+ "vá n",
+ "v án",
+ "ir as",
+ "ira s",
+ "i ras",
+ "▁char ged",
+ "▁charge d",
+ "▁charg ed",
+ "▁M icro",
+ "▁Mi cro",
+ "▁Mic ro",
+ "at oire",
+ "ato ire",
+ "a toire",
+ "че р",
+ "ч ер",
+ "ab ad",
+ "aba d",
+ "a bad",
+ "ur u",
+ "u ru",
+ "▁v š",
+ "dir e",
+ "di re",
+ "d ire",
+ "▁Tw itter",
+ "▁м ето",
+ "▁ме то",
+ "▁мет о",
+ "). .",
+ ") ..",
+ "▁Ц ент",
+ "▁ent wick",
+ "▁M ind",
+ "▁Min d",
+ "▁Mi nd",
+ "▁ф унк",
+ "F uture",
+ "ls t",
+ "l st",
+ "ło ż",
+ "fl i",
+ "f li",
+ "t ensor",
+ "▁top ology",
+ "▁ar te",
+ "▁art e",
+ "▁ arte",
+ "ER T",
+ "E RT",
+ "▁var iance",
+ "▁vari ance",
+ "Im ages",
+ "Image s",
+ "▁( @",
+ "▁ (@",
+ "Array List",
+ "O C",
+ "▁Де мо",
+ "auc oup",
+ "▁de notes",
+ "▁den otes",
+ "▁denote s",
+ "im on",
+ "imo n",
+ "i mon",
+ "њ и",
+ "▁Prz yp",
+ "▁Z ag",
+ "▁Za g",
+ "▁ди ре",
+ "▁Similar ly",
+ "б ро",
+ "▁mil itaire",
+ "▁milit aire",
+ "▁т ому",
+ "▁то му",
+ "▁том у",
+ "▁ тому",
+ "▁John ny",
+ "▁Мекси ку",
+ "ћ а",
+ "Su pp",
+ "S upp",
+ "▁jun ior",
+ "▁junio r",
+ "▁juni or",
+ "ol tre",
+ "olt re",
+ "o ltre",
+ "▁Мо ск",
+ "▁Мос к",
+ "▁adm itted",
+ "▁admit ted",
+ "▁relig ios",
+ "зя й",
+ "е го",
+ "▁t ears",
+ "▁te ars",
+ "▁tea rs",
+ "in go",
+ "ing o",
+ "od u",
+ "o du",
+ "iv eness",
+ "ive ness",
+ "iven ess",
+ "▁l ogo",
+ "▁lo go",
+ "▁log o",
+ "▁ logo",
+ "▁últ imo",
+ "▁al iment",
+ "▁ali ment",
+ "▁U ITableView",
+ "▁ UITableView",
+ ") !",
+ "▁n j",
+ "le tte",
+ "let te",
+ "lett e",
+ "l ette",
+ "▁res ident",
+ "▁resid ent",
+ "▁term ine",
+ "▁ter mine",
+ "▁termin e",
+ "▁у же",
+ "▁С те",
+ "▁Ст е",
+ "off ice",
+ "▁c arte",
+ "▁car te",
+ "▁cart e",
+ "▁li vre",
+ "▁liv re",
+ "▁Мо сков",
+ "▁Мос ков",
+ "▁Моск ов",
+ "▁e lections",
+ "▁elect ions",
+ "▁ele ctions",
+ "▁election s",
+ "зи ден",
+ "Tr igger",
+ "▁Ben jamin",
+ "add Class",
+ "ско г",
+ "▁Ob servable",
+ "▁Observ able",
+ "▁ Observable",
+ "Cl a",
+ "C la",
+ "gem ein",
+ "geme in",
+ "g emein",
+ "▁con sent",
+ "▁cons ent",
+ "▁conse nt",
+ "в ри",
+ "▁un fold",
+ "▁unf old",
+ "▁govern or",
+ "▁gover nor",
+ "▁governo r",
+ "на л",
+ "н ал",
+ "▁t oda",
+ "▁to da",
+ "▁tod a",
+ "Rem ote",
+ "ar ias",
+ "ari as",
+ "aria s",
+ "a rias",
+ "▁in stal",
+ "▁inst al",
+ "▁ins tal",
+ "fix ed",
+ "f ixed",
+ "▁dec ay",
+ "▁де рев",
+ "▁дере в",
+ "xy z",
+ "x yz",
+ "▁D ATE",
+ "▁DA TE",
+ "▁DAT E",
+ "▁ DATE",
+ "im ar",
+ "ima r",
+ "i mar",
+ "nt il",
+ "n til",
+ "▁start up",
+ "al ion",
+ "ali on",
+ "▁ko lej",
+ "▁kol ej",
+ "▁kole j",
+ "ci os",
+ "cio s",
+ "c ios",
+ "▁r anges",
+ "▁range s",
+ "▁ran ges",
+ "▁rang es",
+ "▁stup id",
+ "▁implement ations",
+ "▁implementation s",
+ "▁r m",
+ "▁ rm",
+ "én ek",
+ "é nek",
+ "▁g cc",
+ "▁ gcc",
+ "▁sc ène",
+ "N avigation",
+ "▁ ",
+ "▁к ан",
+ "▁ка н",
+ "▁ кан",
+ "▁town s",
+ "User name",
+ "Us ername",
+ "▁ф е",
+ "▁ фе",
+ "▁le aders",
+ "▁lead ers",
+ "▁leader s",
+ "oi t",
+ "o it",
+ "w är",
+ "▁d ummy",
+ "▁ass istant",
+ "▁assist ant",
+ "{$ \\",
+ "{ $\\",
+ "бі р",
+ "б ір",
+ "▁r oy",
+ "▁ro y",
+ "▁ roy",
+ "▁L ayout",
+ "▁ Layout",
+ "▁J ung",
+ "▁Ju ng",
+ "▁Jun g",
+ "Line s",
+ "Lin es",
+ "Li nes",
+ "L ines",
+ "▁Hol land",
+ "по р",
+ "п ор",
+ "▁Г ри",
+ "▁B ened",
+ "▁Be ned",
+ "▁Ben ed",
+ "▁П од",
+ "▁По д",
+ "xl s",
+ "x ls",
+ "▁G ol",
+ "▁Go l",
+ "▁Al eks",
+ "▁Ale ks",
+ "▁ej emplo",
+ "▁se zon",
+ "ar ding",
+ "ard ing",
+ "ardi ng",
+ "ardin g",
+ "foot note",
+ "▁Cong rès",
+ "re fer",
+ "ref er",
+ "ска та",
+ "с ката",
+ "Iter ator",
+ "▁our selves",
+ "▁M ic",
+ "▁Mi c",
+ "▁c ódigo",
+ "▁пло ща",
+ "▁\\ $",
+ "▁Char lie",
+ "No des",
+ "Node s",
+ "N odes",
+ "▁p uzz",
+ "▁pu zz",
+ "▁Ident ifier",
+ "▁ Identifier",
+ "▁fl utter",
+ "▁ flutter",
+ "▁pr ü",
+ "▁ prü",
+ "▁o rt",
+ "▁or t",
+ "▁ ort",
+ "▁C ort",
+ "▁Cor t",
+ "▁Co rt",
+ "astic search",
+ "▁С вя",
+ "▁B ull",
+ "▁Bu ll",
+ "▁Bul l",
+ "ud em",
+ "ude m",
+ "u dem",
+ "▁ap parent",
+ "▁appar ent",
+ ":- -",
+ ": --",
+ "▁Х ар",
+ "▁Ха р",
+ "▁L ap",
+ "▁La p",
+ "▁com port",
+ "▁comp ort",
+ "mat ically",
+ "m atically",
+ "▁cu rios",
+ "▁cur ios",
+ "▁мо жет",
+ "▁мож ет",
+ "▁може т",
+ "▁B h",
+ "ap ping",
+ "app ing",
+ "a pping",
+ "▁b asketball",
+ "▁basket ball",
+ "ze tek",
+ "zet ek",
+ "▁r unt",
+ "▁run t",
+ "▁ru nt",
+ "▁Mil an",
+ "▁Mi lan",
+ "fe ction",
+ "fect ion",
+ "f ection",
+ "rí a",
+ "r ía",
+ "▁K in",
+ "▁Ki n",
+ "▁s lower",
+ "▁sl ower",
+ "▁slow er",
+ "▁slo wer",
+ "bo th",
+ "bot h",
+ "b oth",
+ "▁Inst ituto",
+ "▁Instit uto",
+ "▁Institut o",
+ "▁Histor ical",
+ "▁Historic al",
+ "▁równ ież",
+ "mat ches",
+ "match es",
+ "yc i",
+ "y ci",
+ "▁esp èce",
+ "▁Schwe izer",
+ "▁Schweiz er",
+ "N T",
+ "S F",
+ "ac ia",
+ "aci a",
+ "a cia",
+ "for ge",
+ "f orge",
+ "Point s",
+ "Po ints",
+ "num bers",
+ "number s",
+ "▁f alling",
+ "▁fall ing",
+ "▁fal ling",
+ "▁inherit ance",
+ "▁Er st",
+ "▁custom ers",
+ "▁customer s",
+ "▁a ctu",
+ "▁act u",
+ "▁ac tu",
+ "▁m igration",
+ "▁migr ation",
+ "\\ '",
+ "Pl an",
+ "P lan",
+ "M r",
+ "ot hy",
+ "oth y",
+ "o thy",
+ "▁up grad",
+ "би ра",
+ "▁O ffic",
+ "▁Of fic",
+ "▁Off ic",
+ "▁W ait",
+ "▁Wa it",
+ "▁ Wait",
+ "▁to ler",
+ "ar don",
+ "ard on",
+ "ardo n",
+ "▁s lide",
+ "▁sl ide",
+ "▁sli de",
+ "▁ slide",
+ ") _",
+ "▁ста в",
+ "▁ став",
+ "▁nu clear",
+ "▁nuc lear",
+ "▁nucle ar",
+ "▁B il",
+ "▁Bi l",
+ "ow ner",
+ "own er",
+ "o wner",
+ "▁Har ris",
+ "▁Harr is",
+ "In formation",
+ "▁p ó",
+ "▁вклю ча",
+ "▁nu ovo",
+ "▁C av",
+ "▁Ca v",
+ "▁De scri",
+ "▁Des cri",
+ "▁а к",
+ "ód zt",
+ "▁react js",
+ "▁Ad ams",
+ "▁Adam s",
+ "▁Ada ms",
+ "▁Altern atively",
+ "ст рук",
+ "стру к",
+ "стр ук",
+ ")` ,",
+ ") `,",
+ "sub string",
+ "subst ring",
+ "substr ing",
+ "▁mass ive",
+ "▁heav ily",
+ "▁се зо",
+ "▁сез о",
+ "▁A na",
+ "▁An a",
+ "▁v ale",
+ "▁val e",
+ "▁va le",
+ "Pa d",
+ "P ad",
+ "▁E ither",
+ "▁r s",
+ "▁ rs",
+ "an che",
+ "anc he",
+ "anch e",
+ "▁up loaded",
+ "▁upload ed",
+ "▁( /",
+ "▁ (/",
+ "▁с пор",
+ "▁спо р",
+ "▁сп ор",
+ "▁redu ction",
+ "▁Tok yo",
+ "gr en",
+ "gre n",
+ "g ren",
+ "▁m igli",
+ "▁mig li",
+ "▁iter ator",
+ "▁ iterator",
+ "st av",
+ "sta v",
+ "▁support ing",
+ "▁ö sterreich",
+ "▁NS Log",
+ "ist iques",
+ "isti ques",
+ "istique s",
+ "ri min",
+ "rim in",
+ "r imin",
+ "MO DE",
+ "}} }\\",
+ "}}} \\",
+ "} }}\\",
+ "▁exp los",
+ "▁expl os",
+ "▁explo s",
+ "от е",
+ "о те",
+ "▁( „",
+ "Sa l",
+ "S al",
+ "▁simple st",
+ "▁simpl est",
+ "▁gi à",
+ "▁та н",
+ "▁т ан",
+ "▁ тан",
+ "▁c yl",
+ "▁cy l",
+ "bi r",
+ "b ir",
+ "▁measure ments",
+ "▁measurement s",
+ "Create d",
+ "Cre ated",
+ "er ek",
+ "ere k",
+ "e rek",
+ "look up",
+ "w irtschaft",
+ "▁В оло",
+ "▁Во ло",
+ "▁Вол о",
+ "ti mer",
+ "time r",
+ "tim er",
+ "t imer",
+ "de rr",
+ "der r",
+ "d err",
+ "▁ст ала",
+ "▁ста ла",
+ "▁стал а",
+ "▁sc enes",
+ "▁scen es",
+ "▁scene s",
+ "▁per su",
+ "▁pers u",
+ "li est",
+ "lie st",
+ "lies t",
+ "l iest",
+ "▁sch edule",
+ "▁sched ule",
+ "ta l",
+ "t al",
+ "ле но",
+ "лен о",
+ "▁pain ting",
+ "▁paint ing",
+ "▁impro vement",
+ "▁improve ment",
+ "▁improv ement",
+ "so ftware",
+ "soft ware",
+ "▁govern o",
+ "▁gover no",
+ "▁H ir",
+ "▁Hi r",
+ "Exec ution",
+ "▁Ok ay",
+ "Pro p",
+ "Pr op",
+ "P rop",
+ "lo ster",
+ "los ter",
+ "lost er",
+ "l oster",
+ "ніципа лі",
+ "▁peu vent",
+ "ol u",
+ "o lu",
+ "▁Ф а",
+ "roll o",
+ "rol lo",
+ "▁ко ло",
+ "▁к оло",
+ "▁ коло",
+ "▁car rière",
+ "▁carri ère",
+ "▁t oggle",
+ "▁tog gle",
+ "▁togg le",
+ "▁ toggle",
+ "▁( $\\",
+ "▁($ \\",
+ "▁aggreg ate",
+ "▁Б і",
+ "text area",
+ "O k",
+ "it to",
+ "itt o",
+ "i tto",
+ "▁s tim",
+ "▁st im",
+ "▁recurs ion",
+ "▁Feder ation",
+ ")_ {",
+ ") _{",
+ "ate gor",
+ "ateg or",
+ "▁dist ribu",
+ "▁distrib u",
+ "Cl oud",
+ "▁m adre",
+ "▁mad re",
+ "▁i v",
+ "▁ iv",
+ "▁Lie utenant",
+ "▁subst ant",
+ "▁le af",
+ "▁ leaf",
+ "▁Kont rola",
+ "V A",
+ "▁t omb",
+ "▁to mb",
+ "▁tom b",
+ "э н",
+ "ato es",
+ "▁god ine",
+ "▁# >",
+ "C ert",
+ "▁em presa",
+ "▁empres a",
+ "Pro ps",
+ "Pr ops",
+ "Prop s",
+ "▁pl anned",
+ "▁plan ned",
+ "▁random ly",
+ "j ähr",
+ "el em",
+ "ele m",
+ "e lem",
+ "▁Oper ation",
+ "▁Opera tion",
+ "▁ Operation",
+ "* `",
+ "pro tocol",
+ "proto col",
+ "() ));",
+ "()) );",
+ "())) ;",
+ "( )));",
+ "we l",
+ "w el",
+ "▁p raw",
+ "▁pr aw",
+ "▁pra w",
+ "▁с им",
+ "▁си м",
+ "▁w ob",
+ "▁wo b",
+ "▁h ace",
+ "▁ha ce",
+ "▁near est",
+ "dis able",
+ "▁C ommun",
+ "▁Com mun",
+ "▁Comm un",
+ "▁re vel",
+ "▁rev el",
+ "▁reve l",
+ "Fr ee",
+ "Fre e",
+ "F ree",
+ "▁bra ckets",
+ "IO Exception",
+ "▁al to",
+ "▁alt o",
+ "▁mar ry",
+ "▁a uc",
+ "▁au c",
+ "▁ auc",
+ "), \\",
+ ") ,\\",
+ "▁typ o",
+ "▁ty po",
+ "ed ad",
+ "eda d",
+ "ar á",
+ "a rá",
+ "ic ator",
+ "ica tor",
+ "tat ywna",
+ "▁b uff",
+ "▁bu ff",
+ "▁buf f",
+ "▁ buff",
+ "or ders",
+ "ord ers",
+ "order s",
+ "orde rs",
+ "▁as ynchronous",
+ "▁e con",
+ "▁ec on",
+ "▁f eu",
+ "▁fe u",
+ "▁I ron",
+ "▁Ir on",
+ "▁r ising",
+ "▁ris ing",
+ "▁ri sing",
+ "Rad ius",
+ "cl k",
+ "▁zwe iten",
+ "▁zwei ten",
+ "▁zweite n",
+ "` '",
+ "▁un iqu",
+ "▁F M",
+ "▁ FM",
+ "▁B ran",
+ "▁Br an",
+ "▁Bra n",
+ "▁f lu",
+ "▁fl u",
+ "▁ flu",
+ "▁sens itive",
+ "ur re",
+ "urr e",
+ "▁I ter",
+ "▁It er",
+ "▁ Iter",
+ "▁S ein",
+ "▁Se in",
+ "▁difer entes",
+ "▁diferen tes",
+ "▁не го",
+ "▁н его",
+ "▁ него",
+ "ch ia",
+ "chi a",
+ "▁An leitung",
+ "atur day",
+ "▁sh orter",
+ "▁short er",
+ "▁transl ated",
+ "▁translate d",
+ "▁R és",
+ "▁Ré s",
+ "▁r ode",
+ "▁ro de",
+ "▁rod e",
+ "dr ag",
+ "dra g",
+ "d rag",
+ "▁l ange",
+ "▁lang e",
+ "▁lan ge",
+ "B i",
+ "ü b",
+ "le ur",
+ "l eur",
+ "▁order ing",
+ "▁ord ering",
+ "al ous",
+ "alo us",
+ "▁К ор",
+ "▁Ко р",
+ "ar char",
+ "arch ar",
+ "arc har",
+ "dest roy",
+ "erv ation",
+ "erva tion",
+ "]] ,",
+ "] ],",
+ "Accessor Impl",
+ "▁autory tatywna",
+ "Se quence",
+ "Sequ ence",
+ "▁pro yect",
+ "▁b ran",
+ "▁br an",
+ "▁bra n",
+ "▁( +",
+ "▁K ab",
+ "▁Ka b",
+ "▁z em",
+ "▁ze m",
+ "▁ zem",
+ "▁Cal cul",
+ "▁ Calcul",
+ "▁se ul",
+ "▁seu l",
+ "▁N iger",
+ "▁Ni ger",
+ "▁ch iam",
+ "▁chi am",
+ "th row",
+ "▁Plan et",
+ "▁Pla net",
+ "bild ung",
+ "▁z ones",
+ "▁zo nes",
+ "▁zone s",
+ "trans ition",
+ "ле ний",
+ "▁m apped",
+ "▁ma pped",
+ "▁map ped",
+ "on aut",
+ "ona ut",
+ "Pa ir",
+ "P air",
+ "il ian",
+ "ili an",
+ "ilia n",
+ "▁M organ",
+ "▁Mor gan",
+ "▁un to",
+ "▁ unto",
+ "jo u",
+ "j ou",
+ "▁h id",
+ "▁hi d",
+ "▁M eta",
+ "▁Me ta",
+ "▁Met a",
+ "▁ Meta",
+ "▁e lles",
+ "▁el les",
+ "▁elle s",
+ "▁ell es",
+ "▁ elles",
+ "Lo u",
+ "L ou",
+ "ra ma",
+ "ram a",
+ "r ama",
+ "ge ordnet",
+ "▁scarc ely",
+ "▁m int",
+ "▁min t",
+ "▁mi nt",
+ "F ocus",
+ "▁Al ter",
+ "▁Alt er",
+ "▁d io",
+ "▁di o",
+ "▁am pl",
+ "▁amp l",
+ "ière ment",
+ "▁ис следова",
+ "LE D",
+ "L ED",
+ "alg orithm",
+ "▁сай ті",
+ "▁сайт і",
+ "▁\" \")",
+ "▁\"\" )",
+ "Hi story",
+ "H istory",
+ "p k",
+ "▁W hit",
+ "▁Wh it",
+ "▁си стем",
+ "▁систе м",
+ "▁Kir chen",
+ "▁Kirche n",
+ "▁Kirch en",
+ "r à",
+ "AP P",
+ "A PP",
+ "▁< %",
+ "ant ine",
+ "anti ne",
+ "antin e",
+ "▁D isk",
+ "▁Dis k",
+ "▁Di sk",
+ "con v",
+ "we lt",
+ "wel t",
+ "w elt",
+ "▁F ut",
+ "▁Fu t",
+ "▁N om",
+ "▁No m",
+ "or do",
+ "ord o",
+ "el lij",
+ "ell ij",
+ "elli j",
+ "▁rece ives",
+ "▁receive s",
+ "co w",
+ "c ow",
+ "yt u",
+ "y tu",
+ "▁o bras",
+ "▁ob ras",
+ "▁obra s",
+ "▁p urchase",
+ "▁purch ase",
+ "▁ear ned",
+ "▁acc essed",
+ "▁access ed",
+ "ax i",
+ "a xi",
+ "▁M ans",
+ "▁Man s",
+ "▁Ma ns",
+ "iv an",
+ "iva n",
+ "i van",
+ "▁t uvo",
+ "▁tu vo",
+ "▁T race",
+ "▁Tr ace",
+ "▁Tra ce",
+ "▁ Trace",
+ "rim onio",
+ "▁desen vol",
+ "ér ique",
+ "éri que",
+ "é rique",
+ "▁result ed",
+ "▁comp uting",
+ "▁comput ing",
+ "▁insp ired",
+ "▁inspir ed",
+ "▁Pr ize",
+ "▁Pri ze",
+ "* \"",
+ "Com put",
+ "Comp ut",
+ "▁ext ensive",
+ "▁extens ive",
+ "è g",
+ "▁Port ály",
+ "▁cast le",
+ "▁ castle",
+ "▁* .",
+ "▁ *.",
+ "▁ph otos",
+ "▁phot os",
+ "▁photo s",
+ "▁vo et",
+ "ON G",
+ "O NG",
+ "▁A lle",
+ "▁Al le",
+ "▁All e",
+ "▁thre aten",
+ "▁threat en",
+ "st üt",
+ "▁album s",
+ "▁alb ums",
+ "▁d ense",
+ "▁den se",
+ "▁dens e",
+ "fl at",
+ "f lat",
+ "cont inu",
+ "Sub ject",
+ "Su bject",
+ "▁read only",
+ "Op t",
+ "O pt",
+ "пи ско",
+ "пис ко",
+ "▁A ber",
+ "▁Ab er",
+ "▁P osition",
+ "▁Pos ition",
+ "▁ Position",
+ "▁To day",
+ "▁Tod ay",
+ "▁m ini",
+ "▁min i",
+ "▁mi ni",
+ "▁B ef",
+ "▁Be f",
+ "li sten",
+ "list en",
+ "lis ten",
+ "l isten",
+ "ствен ного",
+ "ственно го",
+ "SU B",
+ "S UB",
+ "os sa",
+ "oss a",
+ "▁P ope",
+ "▁Po pe",
+ "▁Pop e",
+ "▁Jim my",
+ "▁Д ру",
+ "ungs seite",
+ "▁t ren",
+ "▁tr en",
+ "▁tre n",
+ "op tim",
+ "opt im",
+ "it sch",
+ "its ch",
+ "▁s amt",
+ "▁sa mt",
+ "▁sam t",
+ "▁испо л",
+ "▁ис пол",
+ "& =",
+ "▁Przyp isy",
+ "▁про дол",
+ "C r",
+ "er mann",
+ "erm ann",
+ "erman n",
+ "▁ма тери",
+ "▁мате ри",
+ "▁H ugo",
+ "▁Hu go",
+ "▁De ze",
+ "▁Dez e",
+ "TR UE",
+ "▁defe at",
+ "▁watch ed",
+ "▁wat ched",
+ "▁G ent",
+ "▁Ge nt",
+ "▁Gen t",
+ "AU T",
+ "A UT",
+ "or ous",
+ "oro us",
+ "▁о преде",
+ "ori entation",
+ "orient ation",
+ "▁distingu ished",
+ "▁distinguish ed",
+ "▁mes mo",
+ "▁s li",
+ "▁sl i",
+ "ме на",
+ "мен а",
+ "м ена",
+ "mit tel",
+ "mitt el",
+ "m ittel",
+ "ge richt",
+ "ger icht",
+ "et on",
+ "eto n",
+ "e ton",
+ "-> {",
+ "- >{",
+ "▁w ont",
+ "▁won t",
+ "▁wo nt",
+ "▁w eg",
+ "▁we g",
+ "▁ weg",
+ "▁class ific",
+ "il us",
+ "i lus",
+ "▁M D",
+ "▁ MD",
+ "task s",
+ "▁c him",
+ "▁ch im",
+ "▁chi m",
+ "aw ait",
+ "awa it",
+ "a wait",
+ "▁g ang",
+ "▁gan g",
+ "▁ga ng",
+ "▁ gang",
+ "▁w ię",
+ "▁ wię",
+ "th rough",
+ "▁Russ ell",
+ "▁guess ing",
+ "▁а кт",
+ "▁ак т",
+ "б лі",
+ "c ategories",
+ "су т",
+ "с ут",
+ "▁F en",
+ "▁Fe n",
+ "▁му ж",
+ "▁ne wer",
+ "▁new er",
+ "▁A sync",
+ "▁As ync",
+ "▁ Async",
+ "▁t erme",
+ "▁term e",
+ "▁ter me",
+ "> /",
+ "па ра",
+ "пар а",
+ "▁T rust",
+ "▁Tr ust",
+ "▁Tru st",
+ "▁O pt",
+ "▁Op t",
+ "▁ Opt",
+ "▁d ah",
+ "▁da h",
+ "▁wonder ful",
+ "adrat kil",
+ "▁Г ра",
+ "ma pping",
+ "map ping",
+ "m apping",
+ "▁disc overy",
+ "▁discover y",
+ "▁disco very",
+ "▁B E",
+ "▁ BE",
+ "En able",
+ "▁Fri end",
+ "с ня",
+ "▁cont rolled",
+ "▁control led",
+ "чно ї",
+ "ч ної",
+ "▁contribution s",
+ "▁contrib utions",
+ "j ší",
+ "▁L ev",
+ "▁Le v",
+ "▁franc és",
+ "▁m ic",
+ "▁mi c",
+ "▁ mic",
+ "zi k",
+ "z ik",
+ "▁a lem",
+ "▁al em",
+ "▁ale m",
+ "▁ alem",
+ "can cel",
+ "! '",
+ "▁g rat",
+ "▁gr at",
+ "▁gra t",
+ "▁Begriff sklär",
+ "Cam era",
+ "if icación",
+ "ific ación",
+ "ifica ción",
+ "ró d",
+ "r ód",
+ "▁Arn old",
+ "▁bezeichnet er",
+ "▁f ought",
+ "▁de put",
+ "▁dep ut",
+ "▁D rop",
+ "▁Dr op",
+ "▁Dro p",
+ "▁ Drop",
+ "ta x",
+ "t ax",
+ "d g",
+ "▁H op",
+ "▁Ho p",
+ "G N",
+ "▁Kir ch",
+ "▁Б ар",
+ "▁Ба р",
+ "In voke",
+ "Inv oke",
+ "▁er halten",
+ "▁ve el",
+ "▁word press",
+ "▁ wordpress",
+ "▁IN NER",
+ "trans action",
+ "▁dé jà",
+ "Fa ct",
+ "F act",
+ "▁над мор",
+ "▁angular js",
+ "▁á t",
+ "▁ át",
+ "▁a lap",
+ "▁al ap",
+ "▁P rice",
+ "▁Pr ice",
+ "▁Pri ce",
+ "▁ Price",
+ "▁eff et",
+ "▁s phere",
+ "▁sp here",
+ "▁spher e",
+ "Class Loader",
+ "▁r ugby",
+ "▁rug by",
+ "▁king dom",
+ "▁M ut",
+ "▁Mu t",
+ "▁ки но",
+ "▁re ward",
+ "ci t",
+ "c it",
+ "▁present e",
+ "▁pres ente",
+ "St o",
+ "S to",
+ "Char acter",
+ "lo gs",
+ "log s",
+ "l ogs",
+ "▁cent rale",
+ "▁central e",
+ "▁m ouv",
+ "▁mo uv",
+ "▁mou v",
+ "▁ok ay",
+ "▁ap lic",
+ "Mo re",
+ "Mor e",
+ "M ore",
+ "ény ek",
+ "▁Kö ln",
+ "ne tt",
+ "net t",
+ "n ett",
+ "▁исто рии",
+ "▁истори и",
+ "▁descri bing",
+ "▁sold ier",
+ "▁N eed",
+ "▁Ne ed",
+ "L ight",
+ "▁\" \\<",
+ "▁\"\\ <",
+ "▁h av",
+ "▁ha v",
+ "▁ hav",
+ "er mo",
+ "erm o",
+ "▁infer ior",
+ "le a",
+ "l ea",
+ "▁g g",
+ "▁ gg",
+ "▁кон це",
+ "fra gment",
+ "f ragment",
+ "s b",
+ "Count ry",
+ "C ountry",
+ "▁v ě",
+ "▁ vě",
+ "▁B eng",
+ "▁Be ng",
+ "▁Ben g",
+ "▁Э то",
+ "▁во до",
+ "ма р",
+ "м ар",
+ "STR ING",
+ "▁ú j",
+ "multi ple",
+ "multip le",
+ "state ment",
+ "stat ement",
+ "▁invol ves",
+ "▁involve s",
+ "▁te cn",
+ "▁tec n",
+ "St udent",
+ "gr é",
+ "g ré",
+ "▁le an",
+ "▁ lean",
+ "▁bring ing",
+ "▁Med ical",
+ "▁Medic al",
+ "▁Medi cal",
+ "▁програ м",
+ "▁V og",
+ "▁Vo g",
+ "▁ж ов",
+ "▁Sp irit",
+ "nt h",
+ "n th",
+ "▁stand ards",
+ "▁standard s",
+ "▁Pro file",
+ "▁Prof ile",
+ "▁Profil e",
+ "▁ Profile",
+ "▁e z",
+ "▁ ez",
+ "▁террито рии",
+ "▁s tem",
+ "▁st em",
+ "▁ste m",
+ "ui l",
+ "u il",
+ "▁O g",
+ "B tn",
+ "na l",
+ "n al",
+ "▁near by",
+ "▁produ cing",
+ "cri v",
+ "cr iv",
+ "c riv",
+ "▁assum ptions",
+ "▁assumption s",
+ "▁S park",
+ "▁Sp ark",
+ "▁L ot",
+ "▁Lo t",
+ "it udes",
+ "itu des",
+ "itude s",
+ "itud es",
+ "af ka",
+ "fi ve",
+ "f ive",
+ "at io",
+ "ati o",
+ "▁distingu ish",
+ "ro ck",
+ "roc k",
+ "r ock",
+ "égl ise",
+ "é glise",
+ "▁rapp res",
+ "▁rap pres",
+ ">\\ <",
+ "> \\<",
+ "лі й",
+ "л ій",
+ "▁ми ни",
+ "▁ мини",
+ "▁intitul é",
+ "}} (\\",
+ "}}( \\",
+ "} }(\\",
+ "▁R out",
+ "▁Ro ut",
+ "▁Rou t",
+ "▁ Rout",
+ "▁B order",
+ "▁Bor der",
+ "▁ Border",
+ "▁over rid",
+ "HO ST",
+ "H OST",
+ "rit ten",
+ "ritt en",
+ "r itten",
+ "sa y",
+ "s ay",
+ "▁Ч и",
+ "icht ung",
+ "▁straight forward",
+ "ob b",
+ "o bb",
+ "▁Ter ra",
+ "▁Terr a",
+ "▁[ :",
+ "▁ [:",
+ "Be n",
+ "B en",
+ "▁compos ite",
+ ")+ \\",
+ ") +\\",
+ "▁c rown",
+ "▁cr own",
+ "▁cro wn",
+ "▁crow n",
+ "dir ection",
+ "direct ion",
+ "dire ction",
+ "d irection",
+ "▁неско лько",
+ "▁av ail",
+ "▁purch ased",
+ "▁purchase d",
+ "ho ok",
+ "h ook",
+ "et ies",
+ "eti es",
+ "e ties",
+ "▁f ase",
+ "▁fa se",
+ "▁fas e",
+ "▁R um",
+ "▁Ru m",
+ "▁ge nom",
+ "▁gen om",
+ "▁d ét",
+ "▁dé t",
+ "ow ą",
+ "mp eg",
+ "▁І н",
+ "des ktop",
+ "▁in jection",
+ "▁inj ection",
+ "▁inject ion",
+ "ag le",
+ "a gle",
+ "▁E dd",
+ "▁Ed d",
+ "_{ (",
+ "_ {(",
+ "▁H em",
+ "▁He m",
+ "ut os",
+ "uto s",
+ "pr oj",
+ "pro j",
+ "▁superfic ie",
+ "Pl ot",
+ "P lot",
+ "▁D ocker",
+ "▁Do cker",
+ "▁Doc ker",
+ "ät z",
+ "ä tz",
+ "kre ich",
+ "k reich",
+ "▁un clear",
+ "▁uncle ar",
+ "▁Un ity",
+ "▁Unit y",
+ "▁stream s",
+ "▁stre ams",
+ "ви д",
+ "▁simpl ified",
+ "Fil l",
+ "Fi ll",
+ "F ill",
+ "▁s ant",
+ "▁sa nt",
+ "▁san t",
+ "▁K ommun",
+ "▁Kom mun",
+ "▁Komm un",
+ "▁d uc",
+ "▁du c",
+ "▁д ве",
+ "▁o bs",
+ "▁ob s",
+ "▁ obs",
+ "ž it",
+ "▁Jane iro",
+ "б я",
+ "▁pr esso",
+ "▁pres so",
+ "▁press o",
+ "▁Min istry",
+ "▁b urst",
+ "▁bur st",
+ "▁re aching",
+ "▁reach ing",
+ "li ter",
+ "lit er",
+ "l iter",
+ "▁response s",
+ "▁respons es",
+ "▁E ug",
+ "▁Eu g",
+ "▁s od",
+ "▁so d",
+ "▁C ord",
+ "▁Cor d",
+ "▁Co rd",
+ "▁P erm",
+ "▁Per m",
+ "▁Pe rm",
+ "▁ Perm",
+ "par ts",
+ "part s",
+ "p arts",
+ "ци ма",
+ "vari ables",
+ "variable s",
+ "▁forgot ten",
+ "Fe rn",
+ "F ern",
+ "ost ęp",
+ "v l",
+ "▁С м",
+ "ki m",
+ "k im",
+ "aj ąc",
+ "ają c",
+ "a jąc",
+ "на ль",
+ "нал ь",
+ "н аль",
+ "г ле",
+ "hel per",
+ "help er",
+ "du p",
+ "d up",
+ "eu w",
+ "e uw",
+ "fr a",
+ "f ra",
+ "ell ite",
+ "elli te",
+ "an ya",
+ "any a",
+ "▁re ign",
+ "▁r eign",
+ "▁rei gn",
+ "ges amt",
+ "се да",
+ "▁R yan",
+ "▁Ry an",
+ "▁form atted",
+ "▁format ted",
+ "▁formatt ed",
+ "▁B org",
+ "▁Bo rg",
+ "▁Bor g",
+ "wal k",
+ "w alk",
+ "▁а л",
+ "▁ ал",
+ "agnost ics",
+ "agnostic s",
+ "▁C ape",
+ "▁Cap e",
+ "▁Ca pe",
+ "▁Fran co",
+ "▁Franc o",
+ "▁f ug",
+ "▁fu g",
+ ": )",
+ "ю з",
+ "F etch",
+ "▁rough ly",
+ "▁M is",
+ "▁Mi s",
+ "uet ooth",
+ "▁Venez uela",
+ "▁a stronom",
+ "▁astr onom",
+ "\") `",
+ "\" )`",
+ "om bres",
+ "omb res",
+ "▁кото рой",
+ "ó p",
+ "ow ed",
+ "owe d",
+ "o wed",
+ "H R",
+ "▁C amer",
+ "▁Cam er",
+ "▁Ca mer",
+ "ки е",
+ "par ison",
+ "▁B ij",
+ "▁Bi j",
+ "tem plates",
+ "template s",
+ "en vironment",
+ "environ ment",
+ "iz ação",
+ "iza ção",
+ "▁é r",
+ "▁ ér",
+ "▁pl enty",
+ "▁Type Error",
+ "▁for ty",
+ "▁fort y",
+ "ко ном",
+ "кон ом",
+ "коно м",
+ "▁S ed",
+ "▁Se d",
+ "▁th ats",
+ "▁that s",
+ "▁gra vity",
+ "▁grav ity",
+ "▁gravit y",
+ "▁ gravity",
+ "▁spirit ual",
+ "▁dup licates",
+ "▁duplicate s",
+ "▁enc ryption",
+ "▁encrypt ion",
+ "▁re ven",
+ "▁r even",
+ "▁rev en",
+ "▁reve n",
+ "▁ reven",
+ "get Instance",
+ "äl lor",
+ "äll or",
+ "dis k",
+ "di sk",
+ "d isk",
+ "▁th ro",
+ "▁thr o",
+ "▁N ak",
+ "▁Na k",
+ "▁p oł",
+ "▁po ł",
+ "▁her aus",
+ "in valid",
+ "s By",
+ "Bo ot",
+ "B oot",
+ "▁bu cket",
+ "▁ bucket",
+ "▁P arse",
+ "▁Par se",
+ "▁ Parse",
+ "he x",
+ "h ex",
+ "Con ne",
+ "C onne",
+ "▁Comp uter",
+ "▁Comput er",
+ "zy k",
+ "z yk",
+ "▁indu ced",
+ "▁Br uno",
+ "▁Bru no",
+ "▁Brun o",
+ "▁address ed",
+ "▁addr essed",
+ "ma nia",
+ "man ia",
+ "m ania",
+ "▁in clus",
+ "▁incl us",
+ "▁inc lus",
+ "▁inclu s",
+ "oun ced",
+ "ounce d",
+ "script size",
+ "scripts ize",
+ "▁E pis",
+ "▁Ep is",
+ "▁v ocal",
+ "▁vo cal",
+ "▁voc al",
+ "▁Jon athan",
+ "у м",
+ "st aden",
+ "sta den",
+ "stad en",
+ "▁Child ren",
+ "▁ Children",
+ "пе й",
+ "п ей",
+ "It alia",
+ "Ital ia",
+ "reib ung",
+ "▁n ost",
+ "▁no st",
+ "▁nos t",
+ "▁ nost",
+ "▁е щё",
+ "▁Wer ke",
+ "▁Werk e",
+ "▁act ress",
+ "▁Minn esota",
+ "ri ke",
+ "rik e",
+ "r ike",
+ "▁t ek",
+ "▁te k",
+ "▁ tek",
+ "▁prime ira",
+ "▁f rat",
+ "▁fr at",
+ "▁fra t",
+ "▁Config uration",
+ "▁ Configuration",
+ "▁b id",
+ "▁bi d",
+ "▁ bid",
+ "tr igger",
+ "Cont ents",
+ "Content s",
+ "▁const antly",
+ "▁constant ly",
+ "!! !",
+ "! !!",
+ "▁d read",
+ "▁dr ead",
+ "▁dre ad",
+ "▁hundred s",
+ "ist ische",
+ "isti sche",
+ "▁card inal",
+ "T ABLE",
+ "▁est os",
+ "▁esto s",
+ "ass oc",
+ "asso c",
+ "gr ay",
+ "gra y",
+ "g ray",
+ "▁Sch loss",
+ "▁Schl oss",
+ "▁s che",
+ "▁sc he",
+ "▁sch e",
+ "▁ sche",
+ "con g",
+ "co ng",
+ "c ong",
+ "▁ko ji",
+ "ète s",
+ "èt es",
+ "è tes",
+ "▁E ra",
+ "▁Er a",
+ "om i",
+ "o mi",
+ "▁S R",
+ "▁ SR",
+ "▁wr apped",
+ "▁wra pped",
+ "▁wrap ped",
+ "▁tr unc",
+ "▁a h",
+ "▁ ah",
+ "eg os",
+ "ego s",
+ "ok i",
+ "o ki",
+ "mo uth",
+ "m outh",
+ "log ging",
+ "▁f asc",
+ "▁fa sc",
+ "▁fas c",
+ "▁S ample",
+ "▁Sam ple",
+ "▁ Sample",
+ "▁c onte",
+ "▁con te",
+ "▁cont e",
+ "▁v illa",
+ "▁vi lla",
+ "▁vill a",
+ "▁vil la",
+ "▁ villa",
+ "com ments",
+ "comm ents",
+ "comment s",
+ "▁b atal",
+ "▁ba tal",
+ "▁bat al",
+ "▁bata l",
+ "▁Garc ía",
+ "▁N orte",
+ "▁Nor te",
+ "▁we chsel",
+ "▁Muse o",
+ "▁enf ants",
+ "▁whis per",
+ "na ke",
+ "nak e",
+ "n ake",
+ "▁jed nak",
+ "l ês",
+ "en ders",
+ "end ers",
+ "ender s",
+ "ende rs",
+ "▁ä l",
+ "▁ äl",
+ "▁V B",
+ "▁ VB",
+ "▁cook ies",
+ "▁cookie s",
+ "ze ti",
+ "zet i",
+ "z eti",
+ "at um",
+ "atu m",
+ "▁d edu",
+ "▁de du",
+ "▁ded u",
+ "▁arr anged",
+ "▁arrang ed",
+ "la z",
+ "l az",
+ "▁cu enta",
+ "ym l",
+ "y ml",
+ "▁f lav",
+ "▁fl av",
+ "▁fla v",
+ "M R",
+ "em et",
+ "eme t",
+ "e met",
+ "бі ль",
+ "б іль",
+ "cm p",
+ "c mp",
+ "it uto",
+ "itu to",
+ "itut o",
+ "ze tt",
+ "zet t",
+ "z ett",
+ "▁en vi",
+ "▁env i",
+ "▁k ot",
+ "▁ko t",
+ "$ :",
+ "up per",
+ "upp er",
+ "u pper",
+ "▁Al berto",
+ "▁Albert o",
+ "k b",
+ "An al",
+ "A nal",
+ "ör t",
+ "ö rt",
+ "▁[ -",
+ "▁ [-",
+ "▁führ te",
+ "▁führt e",
+ "ia h",
+ "i ah",
+ "▁T un",
+ "▁Tu n",
+ "▁и скус",
+ "uw e",
+ "u we",
+ "is pecies",
+ "i species",
+ "P ub",
+ "Syn c",
+ "S ync",
+ "▁Colomb ia",
+ "ak ers",
+ "ake rs",
+ "aker s",
+ "▁Imper ial",
+ "ov ing",
+ "ovi ng",
+ "o ving",
+ "▁int elligence",
+ "▁intellig ence",
+ "▁equip ment",
+ "ei n",
+ "e in",
+ "dag ger",
+ "d agger",
+ "▁Ed ge",
+ "▁ Edge",
+ "▁Рес публи",
+ "adratkil ometer",
+ "▁An to",
+ "▁Ant o",
+ "▁char ges",
+ "▁charge s",
+ "▁charg es",
+ "▁O cean",
+ "▁simpl ify",
+ "▁m iesz",
+ "▁mi esz",
+ "▁mie sz",
+ "run ning",
+ "r unning",
+ "▁L ac",
+ "▁La c",
+ "gen ommen",
+ "▁represent ative",
+ "= .",
+ "▁P red",
+ "▁Pr ed",
+ "▁Pre d",
+ "▁ Pred",
+ "▁sp ite",
+ "ci ale",
+ "cial e",
+ "cia le",
+ "c iale",
+ "▁n ave",
+ "▁na ve",
+ "▁nav e",
+ "▁ext ens",
+ "▁neut ral",
+ "▁кото рая",
+ ".< /",
+ ". ",
+ "▁C S",
+ "▁ CS",
+ "uk y",
+ "u ky",
+ "▁wh ilst",
+ "▁l ingu",
+ "▁lin gu",
+ "▁ling u",
+ "ext ract",
+ "extra ct",
+ "zeich nung",
+ "▁F eld",
+ "▁Fe ld",
+ "▁Fel d",
+ "▁valu able",
+ "ur able",
+ "ura ble",
+ "u rable",
+ "▁J en",
+ "▁Je n",
+ "▁strugg le",
+ "▁comm ittee",
+ "▁W ohn",
+ "▁Wo hn",
+ "▁sql ite",
+ "▁ sqlite",
+ "▁T emp",
+ "▁Te mp",
+ "▁Tem p",
+ "▁ Temp",
+ "▁CO UNT",
+ "▁ COUNT",
+ "con sin",
+ "cons in",
+ "мі ні",
+ "мін і",
+ "us age",
+ "usa ge",
+ "▁qu est",
+ "▁que st",
+ "▁q uest",
+ "▁ quest",
+ "дя н",
+ "д ян",
+ "ear ed",
+ "ea red",
+ "e ared",
+ "▁Sch ne",
+ "▁d od",
+ "▁do d",
+ "▁re cht",
+ "▁rec ht",
+ "▁ recht",
+ "▁k ao",
+ "▁ka o",
+ "Cap t",
+ "Ca pt",
+ "C apt",
+ "label s",
+ "lab els",
+ "▁el los",
+ "▁ell os",
+ "▁indust ri",
+ "▁Color ado",
+ "▁contr ary",
+ "▁contra ry",
+ "▁D um",
+ "▁Du m",
+ "Be l",
+ "B el",
+ "▁V ent",
+ "▁Ve nt",
+ "▁Ven t",
+ "▁author ities",
+ "Y ES",
+ "en sed",
+ "ens ed",
+ "ense d",
+ "umbn ail",
+ "izz azione",
+ "izza zione",
+ "ko u",
+ "k ou",
+ "ri ca",
+ "ric a",
+ "r ica",
+ "▁s ect",
+ "▁se ct",
+ "▁sec t",
+ "▁ sect",
+ "test s",
+ "tes ts",
+ "t ests",
+ "▁K lein",
+ "▁Kle in",
+ "▁Kl ein",
+ "▁le gs",
+ "▁leg s",
+ "▁Pi etro",
+ "▁Piet ro",
+ "f u",
+ "th y",
+ "t hy",
+ "▁b ast",
+ "▁bas t",
+ "▁ba st",
+ "▁t edes",
+ "▁te des",
+ "▁ted es",
+ "et tes",
+ "ett es",
+ "ette s",
+ "▁re pet",
+ "▁rep et",
+ "▁repe t",
+ "ac re",
+ "a cre",
+ "re tto",
+ "ret to",
+ "rett o",
+ "r etto",
+ "▁remain der",
+ "▁G eg",
+ "▁Ge g",
+ "▁Г ор",
+ "▁Го р",
+ "▁Re chts",
+ "▁Recht s",
+ "▁filter ing",
+ "ou ss",
+ "ous s",
+ "o uss",
+ "▁deploy ed",
+ "▁prü fe",
+ "▁b itmap",
+ "▁bit map",
+ "▁s ovi",
+ "▁so vi",
+ "▁sov i",
+ "▁< %=",
+ "▁<% =",
+ "▁ <%=",
+ "▁entfer ne",
+ "ki ll",
+ "kil l",
+ "k ill",
+ "ta bs",
+ "tab s",
+ "t abs",
+ "Ex pr",
+ "Exp r",
+ "ко му",
+ "ком у",
+ "к ому",
+ "▁Republic an",
+ "▁S ize",
+ "▁Si ze",
+ "▁ Size",
+ "▁p oll",
+ "▁po ll",
+ "▁pol l",
+ "▁r ien",
+ "▁ri en",
+ "▁ rien",
+ "▁клу б",
+ "én d",
+ "é nd",
+ "▁B io",
+ "▁Bi o",
+ "▁per l",
+ "▁pe rl",
+ "▁ perl",
+ "▁And reas",
+ "▁Andrea s",
+ "▁Andre as",
+ "ви н",
+ "в ин",
+ "▁d istant",
+ "▁dist ant",
+ "▁F inn",
+ "▁Fin n",
+ "▁M itch",
+ "▁Mit ch",
+ "▁% {",
+ "▁c harm",
+ "▁ch arm",
+ "▁char m",
+ "▁cha rm",
+ "▁M ul",
+ "▁Mu l",
+ "pe rate",
+ "per ate",
+ "▁sci ences",
+ "▁science s",
+ "▁mon ot",
+ "▁mo not",
+ "▁deb ido",
+ "riz ona",
+ "ie c",
+ "i ec",
+ "▁al arm",
+ "▁prom oted",
+ "▁promote d",
+ "▁let zten",
+ "at in",
+ "ati n",
+ "▁con clus",
+ "▁conc lus",
+ "▁concl us",
+ "he rr",
+ "her r",
+ "h err",
+ "▁é ch",
+ "▁éc h",
+ "▁ éch",
+ "ed ish",
+ "edi sh",
+ "go r",
+ "g or",
+ "▁st ycz",
+ "▁sty cz",
+ "▁im press",
+ "▁imp ress",
+ "▁impr ess",
+ "ru its",
+ "ruit s",
+ "r uits",
+ "ier ungs",
+ "ierung s",
+ "▁par sed",
+ "▁parse d",
+ "▁r ío",
+ "▁Pak istan",
+ "ig ner",
+ "ign er",
+ "igne r",
+ "▁watch ing",
+ "▁database s",
+ "▁datab ases",
+ "ed ing",
+ "edi ng",
+ "e ding",
+ "▁Spec ific",
+ "▁gener ale",
+ "▁general e",
+ "▁gene rale",
+ "la x",
+ "l ax",
+ "▁Lo oking",
+ "▁Look ing",
+ "▁b ond",
+ "▁bo nd",
+ "▁bon d",
+ "▁v ista",
+ "▁vis ta",
+ "▁vi sta",
+ "▁e c",
+ "▁ ec",
+ "▁gr ud",
+ "▁gru d",
+ "▁del eting",
+ "▁delet ing",
+ "ta c",
+ "t ac",
+ "▁j azz",
+ "▁ja zz",
+ "j m",
+ "▁p ół",
+ "▁pó ł",
+ "L anguage",
+ "de legate",
+ "▁reg istry",
+ "▁registr y",
+ "▁Sh ared",
+ "▁Share d",
+ "▁ Shared",
+ "ст рой",
+ "стро й",
+ "Mus ic",
+ "▁v essel",
+ "▁vess el",
+ "▁ves sel",
+ ". @",
+ "▁W ür",
+ "▁f ed",
+ "▁fe d",
+ "▁ered et",
+ "▁ere det",
+ "▁G ö",
+ "up t",
+ "u pt",
+ "▁ple asant",
+ "▁table View",
+ "▁ tableView",
+ "▁count ing",
+ "▁coun ting",
+ "▁Krie gs",
+ "▁Krieg s",
+ "▁полу чил",
+ "▁получи л",
+ "▁] ,",
+ "▁ ],",
+ "ви а",
+ "▁a ž",
+ "To List",
+ "▁Ad vent",
+ "▁Adv ent",
+ "▁sk etch",
+ "p n",
+ "▁s ier",
+ "▁si er",
+ "▁sie r",
+ "▁находи тся",
+ "io p",
+ "i op",
+ "▁l y",
+ "▁ ly",
+ "▁Sch l",
+ "▁Sc hl",
+ "Cont ract",
+ "as soci",
+ "ass oci",
+ "asso ci",
+ "assoc i",
+ "▁P ear",
+ "▁Pe ar",
+ "▁w he",
+ "▁wh e",
+ "▁De lete",
+ "▁Del ete",
+ "▁ Delete",
+ "▁e lem",
+ "▁el em",
+ "▁ele m",
+ "▁ elem",
+ "ät te",
+ "ätt e",
+ "ä tte",
+ "▁č esk",
+ "▁M C",
+ "▁ MC",
+ "▁sh out",
+ "▁sho ut",
+ "ake spe",
+ "akes pe",
+ "▁default s",
+ "pe nas",
+ "pen as",
+ "p enas",
+ "ò ria",
+ "▁hier archy",
+ "ip t",
+ "i pt",
+ "▁E lis",
+ "▁El is",
+ "▁Eli s",
+ "like ly",
+ "lik ely",
+ "Ro t",
+ "R ot",
+ "▁c ow",
+ "▁co w",
+ "▁ cow",
+ "▁st rike",
+ "▁str ike",
+ "▁stri ke",
+ "▁strik e",
+ "▁бере зня",
+ "▁ens emble",
+ "▁ ensemble",
+ "▁Pse ud",
+ "V irtual",
+ "▁ї ї",
+ "RO OT",
+ "си я",
+ "▁с об",
+ "▁со б",
+ "▁ соб",
+ "▁in vert",
+ "▁inv ert",
+ "▁inve rt",
+ "▁switch ing",
+ "ht access",
+ "▁на гра",
+ "▁Nor man",
+ "▁Norm an",
+ "▁ing lês",
+ "! [",
+ "ou sel",
+ "ous el",
+ "ouse l",
+ "DO CTYPE",
+ "DOC TYPE",
+ "▁supp ress",
+ "▁sup press",
+ "▁accompan ied",
+ "▁B é",
+ "imp lies",
+ "impl ies",
+ "nu t",
+ "n ut",
+ "▁S yntax",
+ "▁Syn tax",
+ "▁ Syntax",
+ "in ho",
+ "▁t am",
+ "▁ta m",
+ "▁focus ed",
+ "▁foc used",
+ "av ano",
+ "ava no",
+ "avan o",
+ "a vano",
+ "▁B aden",
+ "▁Ba den",
+ "▁Bad en",
+ "ha d",
+ "h ad",
+ "▁( {",
+ "▁ ({",
+ "T y",
+ "▁ро с",
+ "▁р ос",
+ "▁ рос",
+ "▁чо лові",
+ "og e",
+ "o ge",
+ "js p",
+ "j sp",
+ "Bl ue",
+ "▁su as",
+ "▁sua s",
+ "ap ers",
+ "ape rs",
+ "aper s",
+ "a pers",
+ "Sh ort",
+ "Render er",
+ "▁s endo",
+ "▁send o",
+ "▁sen do",
+ "▁C ec",
+ "▁Ce c",
+ "▁` __",
+ "▁`_ _",
+ "▁Municip al",
+ "dot net",
+ "▁b ev",
+ "▁be v",
+ "▁D A",
+ "▁ DA",
+ "Menu Item",
+ "▁a mp",
+ "▁am p",
+ "▁ amp",
+ "▁u ri",
+ "▁ur i",
+ "▁ uri",
+ "▁f ier",
+ "▁fi er",
+ "сле н",
+ "с лен",
+ "), (",
+ ") ,(",
+ "cul es",
+ "cu les",
+ "c ules",
+ "il las",
+ "ill as",
+ "illa s",
+ "LO CK",
+ "LOC K",
+ "▁de rive",
+ "▁der ive",
+ "▁deriv e",
+ "ub en",
+ "ube n",
+ "u ben",
+ "▁G T",
+ "▁ GT",
+ "▁M ack",
+ "▁Ma ck",
+ "▁Mac k",
+ "▁sch olar",
+ ")} }",
+ ") }}",
+ "з м",
+ ">: :",
+ "> ::",
+ "ш ёл",
+ "▁princip ales",
+ "▁principal es",
+ "▁principale s",
+ "▁ц ар",
+ "▁t ied",
+ "▁ti ed",
+ "▁tie d",
+ "▁al ta",
+ "▁alt a",
+ "▁C it",
+ "▁Ci t",
+ "li ned",
+ "line d",
+ "lin ed",
+ "l ined",
+ "ma jor",
+ "▁p unk",
+ "▁pun k",
+ "▁cin co",
+ "ick ý",
+ "▁r aggi",
+ "▁ra ggi",
+ "▁rag gi",
+ "ty pen",
+ "type n",
+ "typ en",
+ "тель ство",
+ "▁con ference",
+ "▁confer ence",
+ "▁с іль",
+ "▁сі ль",
+ "▁he ut",
+ "i š",
+ "ет а",
+ "е та",
+ "vel ope",
+ "velop e",
+ "h box",
+ "no wn",
+ "now n",
+ "n own",
+ "▁z ar",
+ "▁za r",
+ "▁ zar",
+ "kt iv",
+ "ie ß",
+ "▁с тре",
+ "▁ст ре",
+ "▁ стре",
+ "▁Event Args",
+ "▁ EventArgs",
+ "▁I ra",
+ "▁Ir a",
+ "▁V BA",
+ "▁VB A",
+ "▁S anto",
+ "▁San to",
+ "▁Sant o",
+ "▁F ach",
+ "▁Fa ch",
+ "▁Fac h",
+ "▁F F",
+ "▁ FF",
+ "▁Ray mond",
+ "ме ц",
+ "im plementation",
+ "▁bro thers",
+ "▁brother s",
+ "▁cô té",
+ "▁cont rollers",
+ "▁control lers",
+ "▁controller s",
+ "▁C le",
+ "▁Cl e",
+ "▁c able",
+ "▁ca ble",
+ "▁cab le",
+ "▁con fer",
+ "▁conf er",
+ "▁{ -",
+ "▁ {-",
+ "▁cz ł",
+ "▁Fil ip",
+ "at orio",
+ "ator io",
+ "ato rio",
+ "atori o",
+ "▁w icht",
+ "▁be aucoup",
+ "▁L it",
+ "▁Li t",
+ "▁s essions",
+ "▁session s",
+ "▁sess ions",
+ "▁Su ccess",
+ "▁ Success",
+ "▁ro uting",
+ "▁rout ing",
+ "▁rou ting",
+ "ni u",
+ "n iu",
+ "▁V ice",
+ "▁Vi ce",
+ "▁Vic e",
+ "▁k rit",
+ "▁kr it",
+ "up dated",
+ "update d",
+ "▁In valid",
+ "▁ Invalid",
+ "▁Mann schaft",
+ "▁a os",
+ "▁ao s",
+ "▁t udi",
+ "▁tu di",
+ "▁tud i",
+ "▁des prés",
+ "▁desp rés",
+ "qu a",
+ "q ua",
+ "Cont ains",
+ "Comp any",
+ "▁person a",
+ "▁pers ona",
+ "ad apter",
+ "с ни",
+ "▁v oj",
+ "▁vo j",
+ "▁ voj",
+ "▁e scri",
+ "▁es cri",
+ "▁esc ri",
+ "ag t",
+ "a gt",
+ "▁с тво",
+ "▁ст во",
+ "▁ ство",
+ "▁dist rito",
+ "ap an",
+ "apa n",
+ "a pan",
+ "▁aspect s",
+ "▁z al",
+ "▁za l",
+ ")^ {\\",
+ ")^{ \\",
+ ") ^{\\",
+ "▁syst ème",
+ "▁а на",
+ "▁ан а",
+ "▁ ана",
+ "ium s",
+ "iu ms",
+ "i ums",
+ "▁prem iers",
+ "▁premi ers",
+ "▁premier s",
+ "▁по э",
+ "▁m ère",
+ "▁G un",
+ "▁Gu n",
+ "ap ing",
+ "api ng",
+ "a ping",
+ "▁R ain",
+ "▁Ra in",
+ "▁ig ual",
+ "▁process or",
+ "▁proc essor",
+ "▁ processor",
+ "') `",
+ "' )`",
+ "bl ing",
+ "b ling",
+ "▁m ism",
+ "▁mi sm",
+ "▁mis m",
+ "br áz",
+ "▁close st",
+ "▁clos est",
+ "▁Re ading",
+ "▁Read ing",
+ "▁по пу",
+ "con o",
+ "co no",
+ "c ono",
+ "▁k ult",
+ "▁! !",
+ "▁ !!",
+ "▁Ex pression",
+ "▁Exp ression",
+ "▁Express ion",
+ "▁ Expression",
+ "▁indu ction",
+ "▁induct ion",
+ "ah ren",
+ "ahr en",
+ "a hren",
+ "▁c p",
+ "▁ cp",
+ "▁viol ence",
+ "ient í",
+ "cent e",
+ "cen te",
+ "c ente",
+ "▁D ob",
+ "▁Do b",
+ "ja ck",
+ "j ack",
+ "so ng",
+ "son g",
+ "s ong",
+ "bu cket",
+ "▁de port",
+ "▁dep ort",
+ "ки ми",
+ "ким и",
+ "l m",
+ "▁in noc",
+ "▁inn oc",
+ "Ch anges",
+ "Change s",
+ "▁pro hib",
+ "ang ol",
+ "ango l",
+ "isecond s",
+ "i seconds",
+ "▁п ор",
+ "▁по р",
+ "▁ пор",
+ "▁h ip",
+ "▁hi p",
+ "▁ hip",
+ "▁p ů",
+ "en dorf",
+ "end orf",
+ "endo rf",
+ "endor f",
+ "▁sch eduled",
+ "▁schedule d",
+ "▁Fl ug",
+ "ac yj",
+ "acy j",
+ "▁Fil ms",
+ "▁Film s",
+ "athed ral",
+ "Po wer",
+ "P ower",
+ "ar din",
+ "ard in",
+ "ardi n",
+ "ka p",
+ "k ap",
+ "ic ken",
+ "ick en",
+ "i cken",
+ "re size",
+ "res ize",
+ "eu s",
+ "e us",
+ "r r",
+ "ля н",
+ "л ян",
+ "▁H av",
+ "▁Ha v",
+ "▁o ra",
+ "▁or a",
+ "▁ ora",
+ "FR OM",
+ "F ROM",
+ "ло ся",
+ "▁te rug",
+ "▁ter ug",
+ "▁W idth",
+ "▁ Width",
+ "▁accept s",
+ "бе н",
+ "б ен",
+ "▁m ich",
+ "▁mi ch",
+ "▁mic h",
+ "▁C zech",
+ "▁Cz ech",
+ "▁B edeut",
+ "▁ви д",
+ "▁ вид",
+ "ô me",
+ "▁L oop",
+ "▁Lo op",
+ "▁ Loop",
+ "sp ect",
+ "spe ct",
+ "spec t",
+ "s pect",
+ "ü k",
+ "es ton",
+ "est on",
+ "esto n",
+ "e ston",
+ "▁s lot",
+ "▁sl ot",
+ "▁slo t",
+ "▁został a",
+ "▁Charlot te",
+ "▁состав ляет",
+ "▁составля ет",
+ "▁Prom ise",
+ "▁e po",
+ "▁ep o",
+ "▁d iction",
+ "▁di ction",
+ "▁dict ion",
+ "▁dic tion",
+ "▁ diction",
+ "▁Frank lin",
+ "▁R iv",
+ "▁Ri v",
+ "ру г",
+ "ci da",
+ "cid a",
+ "c ida",
+ "▁Ex plorer",
+ "cook ie",
+ "▁former ly",
+ "▁municip ality",
+ "▁municipal ity",
+ "▁Ste fan",
+ "▁Stef an",
+ "list s",
+ "lis ts",
+ "l ists",
+ "CO MP",
+ "COM P",
+ "Le n",
+ "L en",
+ "▁Sta at",
+ "▁N BA",
+ "de ns",
+ "den s",
+ "d ens",
+ "▁osc ill",
+ "! .",
+ "▁P O",
+ "▁ PO",
+ "ô ne",
+ "es es",
+ "ese s",
+ "▁на циональ",
+ "vo or",
+ "v oor",
+ "▁ко пи",
+ "▁по зи",
+ "▁ пози",
+ "ul u",
+ "u lu",
+ "Const raint",
+ "Constra int",
+ "▁сво ей",
+ "▁algebra ic",
+ "ч ня",
+ "Di ct",
+ "D ict",
+ "▁appear ing",
+ "▁appe aring",
+ "▁p rav",
+ "▁pr av",
+ "▁pra v",
+ "▁Univers al",
+ "B rowser",
+ "▁Sing ap",
+ "ennes see",
+ "] _",
+ "▁S of",
+ "▁So f",
+ "▁C ad",
+ "▁Ca d",
+ "oun ce",
+ "▁cost s",
+ "▁cos ts",
+ "]{ \\",
+ "] {\\",
+ "../ ../",
+ "ськ ій",
+ "ські й",
+ "üh l",
+ "ü hl",
+ "ie ty",
+ "iet y",
+ "i ety",
+ "п р",
+ "▁interpre ted",
+ "▁interpret ed",
+ "aj n",
+ "col og",
+ "co log",
+ "colo g",
+ "c olog",
+ "Y S",
+ "ma ns",
+ "man s",
+ "m ans",
+ "▁met rics",
+ "▁metric s",
+ "▁reg istr",
+ "▁ registr",
+ "ist ance",
+ "istan ce",
+ "▁По ль",
+ "▁an onymous",
+ "▁ anonymous",
+ "▁institution s",
+ "▁instit utions",
+ "▁z dob",
+ "▁zd ob",
+ "pr üng",
+ "prü ng",
+ "▁ар ти",
+ "▁e stat",
+ "▁est at",
+ "▁es tat",
+ "▁esta t",
+ "ac ci",
+ "acc i",
+ "▁academ ic",
+ "▁ch iesa",
+ "▁chi esa",
+ "▁G ian",
+ "▁Gi an",
+ "▁Gia n",
+ "cont rib",
+ "contr ib",
+ "um ed",
+ "ume d",
+ "u med",
+ "▁G ir",
+ "▁Gi r",
+ "▁base ball",
+ "numer ic",
+ "n umeric",
+ "Gener ator",
+ "G M",
+ "▁t iny",
+ "▁ti ny",
+ "▁tin y",
+ "▁ tiny",
+ "▁dist inction",
+ "▁distinct ion",
+ "ге р",
+ "г ер",
+ "▁r ust",
+ "▁ru st",
+ "▁rus t",
+ "▁ rust",
+ "▁FI FA",
+ "▁Pro perties",
+ "▁ Properties",
+ "^ -",
+ "▁э кс",
+ "▁эк с",
+ "▁Sta nis",
+ "▁Stan is",
+ "▁A jax",
+ "es cape",
+ "esc ape",
+ "▁con sp",
+ "▁cons p",
+ "▁C hen",
+ "▁Ch en",
+ "▁Che n",
+ "▁N aval",
+ "▁Na val",
+ "▁Nav al",
+ "Bi t",
+ "B it",
+ "▁b ât",
+ "ски ми",
+ "ским и",
+ "с кими",
+ "dr ive",
+ "dri ve",
+ "d rive",
+ "▁R ound",
+ "▁Ro und",
+ "▁Rou nd",
+ "ph oto",
+ "▁Le vel",
+ "▁Lev el",
+ "▁ Level",
+ "▁g eg",
+ "▁ge g",
+ "▁ geg",
+ "To m",
+ "T om",
+ "▁M obile",
+ "▁ Mobile",
+ "▁T rop",
+ "▁Tr op",
+ "▁Tro p",
+ "Dir ection",
+ "Direct ion",
+ "D irection",
+ "is an",
+ "isa n",
+ "i san",
+ ")^ {-",
+ ")^{ -",
+ ") ^{-",
+ "▁Set ting",
+ "▁ Setting",
+ "▁Pro bably",
+ "ль я",
+ "л ья",
+ "▁as sets",
+ "▁ass ets",
+ "▁asse ts",
+ "▁asset s",
+ "▁ assets",
+ "▁a tte",
+ "▁at te",
+ "▁att e",
+ "▁ atte",
+ "▁b ulk",
+ "▁bul k",
+ "és t",
+ "é st",
+ "▁w ing",
+ "▁win g",
+ "▁ wing",
+ "ni us",
+ "niu s",
+ "n ius",
+ "▁w ins",
+ "▁win s",
+ "▁l ud",
+ "▁lu d",
+ "us hing",
+ "ush ing",
+ "▁d even",
+ "▁de ven",
+ "▁dev en",
+ "▁deve n",
+ "огра ф",
+ "о граф",
+ "burg er",
+ "bur ger",
+ "b urger",
+ "▁em bar",
+ "▁emb ar",
+ "Filter Chain",
+ "▁t um",
+ "▁tu m",
+ "▁ö ss",
+ "▁nom mé",
+ "▁p ir",
+ "▁pi r",
+ "▁l uc",
+ "▁lu c",
+ "db o",
+ "d bo",
+ "ag ues",
+ "ague s",
+ "agu es",
+ "▁al can",
+ "▁alc an",
+ "ou wen",
+ "ouw en",
+ "▁Stan ley",
+ "ци али",
+ "▁g rown",
+ "▁gr own",
+ "▁gro wn",
+ "▁grow n",
+ "▁pres erved",
+ "▁preserve d",
+ "▁s olar",
+ "▁so lar",
+ "▁sol ar",
+ "▁Насе ление",
+ "▁perform ances",
+ "▁performance s",
+ "▁C ow",
+ "▁Co w",
+ "▁engine ering",
+ "▁engineer ing",
+ "▁sc aling",
+ "▁scal ing",
+ "at omic",
+ "ato mic",
+ "atom ic",
+ "end ance",
+ "▁a ce",
+ "▁ac e",
+ "▁ ace",
+ "än gen",
+ "äng en",
+ "änge n",
+ "An im",
+ "A nim",
+ "ph ase",
+ "pha se",
+ "phas e",
+ "z burg",
+ "O ld",
+ "▁serv ant",
+ "▁geme ins",
+ "▁Ob serv",
+ "trans late",
+ "▁cover ing",
+ "▁cov ering",
+ "▁est án",
+ "▁está n",
+ "▁problem a",
+ "▁proble ma",
+ "▁probl ema",
+ "▁у станов",
+ "▁l lev",
+ "▁ll ev",
+ "▁lle v",
+ "▁c zerw",
+ "é al",
+ "me z",
+ "m ez",
+ "RE E",
+ "R EE",
+ "ER R",
+ "ту ри",
+ "тур и",
+ "se gu",
+ "seg u",
+ "s egu",
+ "▁pro fit",
+ "▁prof it",
+ "▁multip lication",
+ "kom men",
+ "k ommen",
+ "▁f aut",
+ "▁fa ut",
+ "▁candid ates",
+ "▁candidate s",
+ "▁U ri",
+ "▁Ur i",
+ "▁ Uri",
+ "▁La ura",
+ "▁Laur a",
+ "▁Lau ra",
+ "▁s ap",
+ "▁sa p",
+ "▁ви сини",
+ "▁Bet ween",
+ "fa de",
+ "f ade",
+ "▁res erved",
+ "▁reserve d",
+ "▁invol ving",
+ "▁M are",
+ "▁Mar e",
+ "▁Ma re",
+ "▁Cont ainer",
+ "▁ Container",
+ "▁на зна",
+ "▁DE BUG",
+ "▁ DEBUG",
+ "▁h urt",
+ "▁hur t",
+ "▁hu rt",
+ "▁Pol ski",
+ "▁l ux",
+ "▁lu x",
+ "C B",
+ "wa ch",
+ "w ach",
+ "▁пери од",
+ "▁перио д",
+ "▁C atherine",
+ "▁g anz",
+ "▁gan z",
+ "uch te",
+ "ucht e",
+ "u chte",
+ "▁cons umer",
+ "▁consum er",
+ "▁consume r",
+ "▁cross ed",
+ "ord ered",
+ "order ed",
+ "orde red",
+ "aw ay",
+ "awa y",
+ "a way",
+ "te chn",
+ "tech n",
+ "▁sub scri",
+ "▁subs cri",
+ "▁short cut",
+ "▁произ вод",
+ "▁simultane ously",
+ "▁r ating",
+ "▁ra ting",
+ "▁rat ing",
+ "▁ rating",
+ "▁K ings",
+ "▁King s",
+ "▁Kin gs",
+ "▁relations hips",
+ "▁relation ships",
+ "▁relationship s",
+ "▁S ex",
+ "▁Se x",
+ "▁T ool",
+ "▁To ol",
+ "▁ Tool",
+ "ag h",
+ "a gh",
+ "ac ters",
+ "act ers",
+ "acter s",
+ "log ger",
+ "hom me",
+ "en gers",
+ "eng ers",
+ "enger s",
+ "▁R i",
+ "ear ance",
+ "ea rance",
+ "▁appear ances",
+ "▁appearance s",
+ "Re al",
+ "▁p asse",
+ "▁pass e",
+ "▁pas se",
+ "ic lopedia",
+ "ч ко",
+ "ter re",
+ "▁Ont ario",
+ "▁пере да",
+ "▁перед а",
+ "fo oter",
+ "foo ter",
+ "foot er",
+ "arch ivi",
+ "archiv i",
+ "if iz",
+ "ifi z",
+ "▁Pro test",
+ "▁Prote st",
+ "▁L IN",
+ "▁LI N",
+ "▁ LIN",
+ "unn able",
+ "▁cent uries",
+ "▁B ayer",
+ "▁Ba yer",
+ "▁Bay er",
+ "ці ю",
+ "ов ин",
+ "ови н",
+ "о вин",
+ "▁And rea",
+ "▁Andre a",
+ "se lection",
+ "select ion",
+ "sel ection",
+ "▁c alm",
+ "▁cal m",
+ "▁ca lm",
+ "▁mod ification",
+ "▁modific ation",
+ "▁short ly",
+ "in aire",
+ "ina ire",
+ "i naire",
+ "▁f usion",
+ "▁fus ion",
+ "▁feel ings",
+ "▁feeling s",
+ "▁fee lings",
+ "P K",
+ "▁Ro berto",
+ "▁Robert o",
+ "г не",
+ "Sh ared",
+ "▁mehr ere",
+ "▁N iem",
+ "▁Ni em",
+ "▁Nie m",
+ "om p",
+ "o mp",
+ "En v",
+ "▁Art icle",
+ "▁P ok",
+ "▁Po k",
+ "▁V ARCHAR",
+ "▁d il",
+ "▁di l",
+ "▁af ford",
+ "▁aff ord",
+ "▁con front",
+ "▁conf ront",
+ "ow anie",
+ "owa nie",
+ "owan ie",
+ "▁min istre",
+ "▁minist re",
+ "▁mini stre",
+ "ad esh",
+ "ade sh",
+ "ades h",
+ "▁P oly",
+ "▁Pol y",
+ "▁Po ly",
+ "▁Ра спо",
+ "▁Рас по",
+ "▁Gru ppe",
+ "▁H elen",
+ "▁He len",
+ "▁Hel en",
+ "▁c c",
+ "▁ cc",
+ "▁port rait",
+ "be w",
+ "b ew",
+ "▁b eta",
+ "▁be ta",
+ "▁bet a",
+ "▁ beta",
+ "▁W ir",
+ "▁Wi r",
+ "▁A udio",
+ "▁Aud io",
+ "▁ Audio",
+ "▁( \\<",
+ "▁(\\ <",
+ "rior ity",
+ "▁n it",
+ "▁ni t",
+ "▁ nit",
+ "▁пред стави",
+ "▁представ и",
+ "▁V ie",
+ "▁Vi e",
+ "▁w ür",
+ "▁ wür",
+ "▁H old",
+ "▁Hol d",
+ "▁Ho ld",
+ "▁ Hold",
+ "▁S ad",
+ "▁Sa d",
+ "▁To chter",
+ "▁o ltre",
+ "▁ol tre",
+ "▁ oltre",
+ "▁Act iv",
+ "▁ Activ",
+ "▁J ason",
+ "▁Ja son",
+ "▁Jas on",
+ "▁wie ku",
+ "▁reg ards",
+ "▁regard s",
+ "▁t aste",
+ "▁ta ste",
+ "agnost ic",
+ "ла ся",
+ "▁S elf",
+ "▁Sel f",
+ "▁ Self",
+ "▁a pr",
+ "▁ap r",
+ "▁De ep",
+ "sc op",
+ "s cop",
+ "Act iv",
+ "▁type def",
+ "▁typed ef",
+ "Content View",
+ "comp iler",
+ "compile r",
+ "▁R oth",
+ "▁Ro th",
+ "▁Rot h",
+ "x c",
+ "зи к",
+ "▁l argo",
+ "▁lar go",
+ "▁larg o",
+ "▁R ena",
+ "▁Re na",
+ "▁Ren a",
+ "he iten",
+ "heit en",
+ "▁platform s",
+ "▁plat forms",
+ "ul la",
+ "ull a",
+ "u lla",
+ "▁gl ance",
+ "▁mas cul",
+ "▁m ex",
+ "▁me x",
+ "▁J orge",
+ "▁fun cion",
+ "▁func ion",
+ "cho ose",
+ "▁re views",
+ "▁review s",
+ "▁Al ban",
+ "▁Alb an",
+ "▁G lo",
+ "▁Gl o",
+ "▁S pecies",
+ "▁Spe cies",
+ "▁Spec ies",
+ "▁F ame",
+ "▁Fa me",
+ "▁Fam e",
+ "▁R oll",
+ "▁Ro ll",
+ "▁Rol l",
+ "▁P uerto",
+ "▁\\ )",
+ "▁ \\)",
+ "ym nas",
+ "ymn as",
+ "en viron",
+ "▁i phone",
+ "▁Wrest ling",
+ "ał y",
+ "a ły",
+ "▁Ind iana",
+ "▁India na",
+ "▁Indian a",
+ "Rad io",
+ "V S",
+ "▁independ ence",
+ "та й",
+ "▁de code",
+ "▁dec ode",
+ "▁ decode",
+ "Wh ite",
+ "▁j ourn",
+ "▁jo urn",
+ "▁jou rn",
+ "▁jour n",
+ "ícul o",
+ "í culo",
+ "▁Bar b",
+ "▁Ba rb",
+ "▁Ev angel",
+ "▁An dy",
+ "▁And y",
+ "▁Wel come",
+ "▁De vice",
+ "▁Dev ice",
+ "▁ Device",
+ "ge f",
+ "g ef",
+ "▁remember ed",
+ "▁vari ations",
+ "▁variation s",
+ "▁Ad olf",
+ "it aine",
+ "ita ine",
+ "▁надмор ској",
+ "▁s team",
+ "▁ste am",
+ "▁concern s",
+ "▁` |",
+ "▁би о",
+ "тель ства",
+ "▁qu attro",
+ "ext end",
+ "▁trab ajo",
+ "▁trabaj o",
+ "en berg",
+ "▁scen arios",
+ "▁scenario s",
+ "ân t",
+ "â nt",
+ "▁kom mt",
+ "▁komm t",
+ "▁dom estic",
+ "▁B asketball",
+ "▁Co oper",
+ "so ck",
+ "s ock",
+ "дер жа",
+ "д ержа",
+ "={ \\",
+ "= {\\",
+ "▁in ici",
+ "▁P hill",
+ "▁Ph ill",
+ "▁Phil l",
+ "▁гене рал",
+ "archivi ato",
+ "ъ н",
+ "Ro b",
+ "R ob",
+ "▁t ong",
+ "▁to ng",
+ "▁ton g",
+ "▁character istics",
+ "▁characteristic s",
+ "▁a maz",
+ "▁am az",
+ "▁M ode",
+ "▁Mod e",
+ "▁Mo de",
+ "▁ Mode",
+ "▁inaug ur",
+ "we hr",
+ "ra nt",
+ "ran t",
+ "r ant",
+ "ion ali",
+ "ional i",
+ "iona li",
+ "▁M other",
+ "▁Mo ther",
+ "▁Mot her",
+ "M a",
+ "é qu",
+ "▁K elly",
+ "▁Kel ly",
+ "ci le",
+ "cil e",
+ "c ile",
+ "▁beste ht",
+ "▁estim ates",
+ "▁estimate s",
+ "rugu ay",
+ "▁A ns",
+ "▁An s",
+ "Ma d",
+ "M ad",
+ "▁на в",
+ "▁d onnées",
+ "▁donn ées",
+ "▁donné es",
+ "▁ données",
+ "▁trop ical",
+ "▁Sever al",
+ "el ter",
+ "elt er",
+ "elte r",
+ "▁P ho",
+ "▁Ph o",
+ "ke m",
+ "k em",
+ "▁Custom er",
+ "▁ Customer",
+ "▁скла ді",
+ "▁c ourses",
+ "▁course s",
+ "▁cours es",
+ "Pl atform",
+ "nav bar",
+ "le arning",
+ "lear ning",
+ "learn ing",
+ "▁Sw edish",
+ "▁z ast",
+ "▁za st",
+ "▁zas t",
+ "▁L ig",
+ "▁Li g",
+ "man agement",
+ "▁l od",
+ "▁lo d",
+ "uff le",
+ "Text ure",
+ "Te xture",
+ "ar ga",
+ "arg a",
+ "át um",
+ "▁D DR",
+ "ні ї",
+ "н ії",
+ "▁Soci été",
+ "▁dom ains",
+ "▁domain s",
+ "▁perm itted",
+ "▁permit ted",
+ "▁ex terne",
+ "▁ext erne",
+ "▁extern e",
+ "▁quel que",
+ "v t",
+ "ym an",
+ "y man",
+ "▁W ard",
+ "▁War d",
+ "▁Wa rd",
+ "▁ag li",
+ "▁ agli",
+ "▁and ra",
+ "▁an dra",
+ "▁ andra",
+ "S napshot",
+ "▁m å",
+ "▁ye ah",
+ "де на",
+ "ден а",
+ "д ена",
+ "ęp u",
+ "ę pu",
+ "ask ell",
+ "▁Ré publique",
+ "in ject",
+ "▁' ;",
+ "▁ ';",
+ "än n",
+ "ä nn",
+ "▁z elf",
+ "▁Ent wicklung",
+ "ár ia",
+ "á ria",
+ "on omy",
+ "ono my",
+ "onom y",
+ "▁s vil",
+ "▁sv il",
+ "ie se",
+ "ies e",
+ "i ese",
+ "▁con ser",
+ "▁cons er",
+ "▁conse r",
+ "▁n im",
+ "▁ni m",
+ "▁ nim",
+ "▁r ész",
+ "▁ré sz",
+ "▁rés z",
+ "▁И тали",
+ "▁part ici",
+ "▁partic i",
+ "▁parti ci",
+ "▁L ion",
+ "▁Li on",
+ "s r",
+ "al ways",
+ "▁Влади мир",
+ "че ские",
+ "[ ,",
+ "▁Def inition",
+ "▁ Definition",
+ "na nt",
+ "nan t",
+ "n ant",
+ "oe m",
+ "o em",
+ "Id s",
+ "I ds",
+ "▁в не",
+ "▁[ ...]",
+ "▁на прав",
+ "▁нап рав",
+ "▁G O",
+ "▁ GO",
+ "▁å rs",
+ "▁år s",
+ "▁ut án",
+ "▁out ros",
+ "▁reg ión",
+ "▁M ong",
+ "▁Mon g",
+ "▁Mo ng",
+ "▁fil me",
+ "▁film e",
+ "▁tri ple",
+ "▁trip le",
+ "▁sp ons",
+ "▁spo ns",
+ "De velop",
+ "▁out come",
+ "▁B ible",
+ "▁Bi ble",
+ "▁Bib le",
+ "▁и мени",
+ "▁име ни",
+ "▁имен и",
+ "Can vas",
+ "пу та",
+ "cur r",
+ "cu rr",
+ "c urr",
+ "ás ok",
+ "){ \\",
+ ") {\\",
+ "ning ar",
+ "` ;",
+ "▁Fl ash",
+ ": #",
+ "mu st",
+ "mus t",
+ "m ust",
+ "cp u",
+ "c pu",
+ "▁form ats",
+ "▁format s",
+ "▁forma ts",
+ "Ha r",
+ "H ar",
+ "▁epis odio",
+ "▁R osa",
+ "▁Ro sa",
+ "▁Ros a",
+ "▁d ès",
+ "em it",
+ "emi t",
+ "e mit",
+ "rit eria",
+ "rite ria",
+ "riter ia",
+ "An notation",
+ "Fl ag",
+ "F lag",
+ "g mail",
+ "▁N ormal",
+ "▁Nor mal",
+ "▁Norm al",
+ "▁ Normal",
+ "oll ary",
+ "ollar y",
+ "▁f oss",
+ "▁fo ss",
+ "▁fos s",
+ "▁con current",
+ "▁conc urrent",
+ "▁ concurrent",
+ "▁crash es",
+ "▁ви де",
+ "▁вид е",
+ "▁Min or",
+ "▁Mi nor",
+ "▁S it",
+ "▁Si t",
+ "▁S N",
+ "▁ SN",
+ "▁s car",
+ "▁sc ar",
+ "▁ scar",
+ "▁fe min",
+ "▁fem in",
+ "▁spec ification",
+ "▁specific ation",
+ "so ap",
+ "▁o perate",
+ "▁oper ate",
+ "▁opera te",
+ "▁principal mente",
+ "▁a ust",
+ "▁au st",
+ "▁aus t",
+ "ib ile",
+ "ibil e",
+ "it ime",
+ "iti me",
+ "i time",
+ "ле жа",
+ "if rame",
+ "i frame",
+ "▁concept s",
+ "▁conce pts",
+ "▁t ack",
+ "▁ta ck",
+ "▁v iss",
+ "▁vis s",
+ "▁vi ss",
+ "▁car bon",
+ "ter y",
+ "te ry",
+ "t ery",
+ "▁n aming",
+ "▁na ming",
+ "▁nam ing",
+ "▁Or ts",
+ "▁Ort s",
+ "id ente",
+ "ident e",
+ "iden te",
+ "▁Cap it",
+ "▁Ca pit",
+ "▁ex pr",
+ "▁exp r",
+ "▁ expr",
+ "▁насе љу",
+ "▁Select ed",
+ "▁Sel ected",
+ "▁Sele cted",
+ "▁ Selected",
+ "▁h inter",
+ "▁hint er",
+ "▁hin ter",
+ "▁i frame",
+ "▁if rame",
+ "▁ iframe",
+ "▁z b",
+ "index Path",
+ "col l",
+ "co ll",
+ "c oll",
+ "▁wr ześ",
+ "▁a cht",
+ "▁ac ht",
+ "▁ach t",
+ "▁ acht",
+ "▁grad ually",
+ "▁gradu ally",
+ "▁ч у",
+ "▁ чу",
+ "зе й",
+ "з ей",
+ "ha ft",
+ "h aft",
+ "▁t ran",
+ "▁tr an",
+ "▁tra n",
+ "▁la quelle",
+ "yt ics",
+ "ID E",
+ "I DE",
+ "▁py game",
+ "▁pyg ame",
+ "▁P ackage",
+ "▁Pack age",
+ "▁ Package",
+ "▁class Name",
+ "▁ className",
+ "B al",
+ "pe rl",
+ "per l",
+ "ти на",
+ "тин а",
+ "O cc",
+ "▁in frastr",
+ "▁Champion s",
+ "▁Champ ions",
+ "▁class ic",
+ "▁R aw",
+ "▁Ra w",
+ "▁ Raw",
+ "▁partial ly",
+ "▁parti ally",
+ "▁T ed",
+ "▁Te d",
+ "▁sto let",
+ "ra ined",
+ "rain ed",
+ "raine d",
+ "rai ned",
+ "r ained",
+ "WH ERE",
+ "W HERE",
+ "▁v all",
+ "▁val l",
+ "▁va ll",
+ "▁Jul ia",
+ "▁Ju lia",
+ "▁Juli a",
+ "za t",
+ "z at",
+ "▁surr ounded",
+ "SE E",
+ "S EE",
+ "▁walk ing",
+ "▁wal king",
+ "B ad",
+ "FO R",
+ "F OR",
+ "con tre",
+ "cont re",
+ "contr e",
+ "▁Pal est",
+ "▁Pale st",
+ "át ico",
+ "▁engine er",
+ "▁part ners",
+ "▁partner s",
+ "▁Je ws",
+ "▁Jew s",
+ "il ers",
+ "ile rs",
+ "iler s",
+ "i lers",
+ "▁c erem",
+ "▁ce rem",
+ "▁cer em",
+ "▁inter actions",
+ "▁interaction s",
+ "▁interact ions",
+ "ac u",
+ "a cu",
+ "st y",
+ "s ty",
+ "▁Prince ss",
+ "▁Prin cess",
+ "sh arp",
+ "sha rp",
+ "▁Sing les",
+ "▁Single s",
+ "▁ї х",
+ "ch ez",
+ "che z",
+ "c hez",
+ "Rece iver",
+ "Receive r",
+ "▁pat ients",
+ "▁patient s",
+ "string ify",
+ "▁compet ed",
+ "be y",
+ "b ey",
+ "$ ;",
+ "▁B d",
+ "had oop",
+ "h adoop",
+ "▁Div isión",
+ "öl d",
+ "ö ld",
+ "▁restrict ed",
+ "▁comm ander",
+ "▁command er",
+ "▁comma nder",
+ "▁High way",
+ "▁Č esk",
+ "▁m yth",
+ "▁my th",
+ "ча н",
+ "ч ан",
+ "ra ham",
+ "rah am",
+ "▁en qu",
+ "▁p og",
+ "▁po g",
+ "▁com una",
+ "▁comun a",
+ "▁print ln",
+ "▁ println",
+ "▁к руп",
+ "▁de pois",
+ "▁dep ois",
+ "▁se ats",
+ "▁sea ts",
+ "▁seat s",
+ "▁neigh b",
+ "ци она",
+ "цион а",
+ "ag ine",
+ "agi ne",
+ "agin e",
+ "▁cloth es",
+ "▁clo thes",
+ "▁P rior",
+ "▁Pr ior",
+ "▁Pri or",
+ "Br ain",
+ "Bra in",
+ "B rain",
+ "FF FF",
+ "': '",
+ "' :'",
+ "fe atures",
+ "feature s",
+ "▁file system",
+ "▁files ystem",
+ "▁sing les",
+ "▁single s",
+ "▁Mel bourne",
+ "▁dest ruction",
+ "▁destruct ion",
+ "▁destru ction",
+ "▁Ly on",
+ "▁In sel",
+ "▁Ins el",
+ "Na v",
+ "N av",
+ "▁Re place",
+ "▁Rep lace",
+ "▁ Replace",
+ "▁l é",
+ "▁ lé",
+ "Wh o",
+ "W ho",
+ "▁E stad",
+ "▁Est ad",
+ "▁Esta d",
+ "▁dim ensional",
+ "▁dimension al",
+ "▁ dimensional",
+ "▁ö ff",
+ "▁ öff",
+ "▁gr ands",
+ "▁gran ds",
+ "▁grand s",
+ "дж а",
+ "д жа",
+ "pl ane",
+ "plan e",
+ "pla ne",
+ "p lane",
+ "но сті",
+ "ност і",
+ "нос ті",
+ "▁Or igin",
+ "▁Ori gin",
+ "▁Orig in",
+ "▁ Origin",
+ "W I",
+ "än ner",
+ "änn er",
+ "▁C ry",
+ "▁Cr y",
+ "IT ION",
+ "▁fö dd",
+ "▁cult ura",
+ "▁R ank",
+ "▁Ran k",
+ "▁v uel",
+ "▁vue l",
+ "▁vu el",
+ "▁z ag",
+ "▁za g",
+ "▁Ma xim",
+ "▁Max im",
+ "он у",
+ "о ну",
+ "() ))",
+ "()) )",
+ "( )))",
+ "R aw",
+ "kir che",
+ "k irche",
+ "▁a demás",
+ "▁t ie",
+ "▁ti e",
+ "▁St yle",
+ "▁ Style",
+ "ско в",
+ "ск ов",
+ "с ков",
+ "ist ant",
+ "ista nt",
+ "istan t",
+ "ol ph",
+ "▁Z ür",
+ "▁In fo",
+ "▁Inf o",
+ "▁ Info",
+ "DO M",
+ "D OM",
+ "us c",
+ "u sc",
+ "na hm",
+ "nah m",
+ "▁Ф едера",
+ "▁F ot",
+ "▁Fo t",
+ "▁spec ifying",
+ "▁specify ing",
+ "▁tit olo",
+ "▁Bo ys",
+ "▁Boy s",
+ "ie ch",
+ "iec h",
+ "i ech",
+ "Pl ace",
+ "P lace",
+ "▁H off",
+ "▁Ho ff",
+ "▁Hof f",
+ "▁c ached",
+ "▁ca ched",
+ "▁cache d",
+ "ва ль",
+ "вал ь",
+ "в аль",
+ "is her",
+ "ish er",
+ "roll ing",
+ "rol ling",
+ "op ens",
+ "ope ns",
+ "open s",
+ "▁h r",
+ "▁ hr",
+ "-- ----",
+ "---- --",
+ "--- ---",
+ "----- -",
+ "- -----",
+ "▁mag gior",
+ "▁maggio r",
+ "▁trans actions",
+ "▁transaction s",
+ "▁c riminal",
+ "▁crim inal",
+ "▁re tre",
+ "▁ret re",
+ "▁retr e",
+ "▁Camp bell",
+ ")) :",
+ ") ):",
+ "▁n ed",
+ "▁ne d",
+ "▁ ned",
+ "Page r",
+ "Pa ger",
+ "P ager",
+ "▁H ero",
+ "▁He ro",
+ "▁Her o",
+ "(_ _",
+ "( __",
+ "▁un cle",
+ "▁re aches",
+ "▁reach es",
+ "ar to",
+ "art o",
+ "▁h ello",
+ "▁hel lo",
+ "▁hell o",
+ "▁ hello",
+ "Pre ferences",
+ "▁за тем",
+ "Name d",
+ "Na med",
+ "N amed",
+ "▁re aders",
+ "▁read ers",
+ "▁reader s",
+ "х і",
+ "ke rn",
+ "ker n",
+ "k ern",
+ "▁у по",
+ "ки н",
+ "к ин",
+ "▁l av",
+ "▁la v",
+ "▁ lav",
+ "▁n ob",
+ "▁no b",
+ "▁se cre",
+ "▁sec re",
+ "▁List View",
+ "▁ ListView",
+ "ва ния",
+ "▁May or",
+ "bo rough",
+ "bor ough",
+ "▁fil osof",
+ "не ння",
+ "нен ня",
+ "фр и",
+ "ф ри",
+ "▁p atr",
+ "▁pat r",
+ "▁pa tr",
+ "F M",
+ "▁a cid",
+ "▁ac id",
+ "▁Salv ador",
+ "▁a bb",
+ "▁ab b",
+ "▁ abb",
+ "▁G raham",
+ "▁Gra ham",
+ "pol icy",
+ "neg ative",
+ "ński ego",
+ "ń skiego",
+ "▁He imat",
+ "▁d azu",
+ "▁da zu",
+ "▁m ely",
+ "▁me ly",
+ "▁mel y",
+ "▁r ide",
+ "▁rid e",
+ "▁ri de",
+ "▁ ride",
+ "▁du ties",
+ "▁dut ies",
+ "ov ery",
+ "over y",
+ "ove ry",
+ "o very",
+ "▁Pro position",
+ "▁Prop osition",
+ "▁Pa olo",
+ "/ '",
+ "▁M au",
+ "▁Ma u",
+ "im enti",
+ "iment i",
+ "imen ti",
+ "Sa int",
+ "S aint",
+ "fa ther",
+ "f ather",
+ "▁equ ilib",
+ "ph ony",
+ "phon y",
+ "▁c las",
+ "▁cl as",
+ "▁cla s",
+ "▁от ли",
+ "▁Buffer ed",
+ "▁Buff ered",
+ "re k",
+ "r ek",
+ "▁m itt",
+ "▁mit t",
+ "▁mi tt",
+ "▁ mitt",
+ "▁H ur",
+ "▁Hu r",
+ "▁Har vard",
+ "▁demonstr ate",
+ "ua rio",
+ "u ario",
+ "▁do lor",
+ "▁dol or",
+ "▁reject ed",
+ "▁M üller",
+ "▁n ac",
+ "▁na c",
+ "▁B elle",
+ "▁Be lle",
+ "▁Bel le",
+ "▁Bell e",
+ "▁gather ed",
+ "n r",
+ "fr ika",
+ "fri ka",
+ "öl l",
+ "ö ll",
+ "▁chem ical",
+ "ni g",
+ "n ig",
+ "▁cal c",
+ "▁ calc",
+ "▁DE FAULT",
+ "▁ DEFAULT",
+ "▁philosoph y",
+ "▁Lar avel",
+ "▁al ignment",
+ "▁align ment",
+ "E V",
+ "e or",
+ "▁d zie",
+ "▁dz ie",
+ "▁ dzie",
+ "▁m est",
+ "▁me st",
+ "▁mes t",
+ "▁I o",
+ "CR E",
+ "C RE",
+ "з ви",
+ "▁M edic",
+ "▁Me dic",
+ "▁Med ic",
+ "▁Medi c",
+ "▁n ä",
+ "▁z ab",
+ "▁za b",
+ "▁S lov",
+ "▁Sl ov",
+ "▁Slo v",
+ "ut lich",
+ "▁am plit",
+ "▁ampl it",
+ "▁amp lit",
+ "▁Fran kreich",
+ "▁Frank reich",
+ "▁к іль",
+ "▁кі ль",
+ "IN D",
+ "I ND",
+ "exec ution",
+ "▁Kar riere",
+ "d ostęp",
+ "▁r éal",
+ "▁ré al",
+ "en go",
+ "eng o",
+ "▁se vere",
+ "▁sever e",
+ "зм а",
+ "з ма",
+ "▁тур ни",
+ "▁C arter",
+ "▁Car ter",
+ "▁Cart er",
+ "▁Rob inson",
+ "▁Robin son",
+ "getElement sBy",
+ "▁pro totype",
+ "▁proto type",
+ "▁ prototype",
+ "▁jap on",
+ "▁ja pon",
+ "führ ung",
+ "f ührung",
+ "▁con segu",
+ "▁cons egu",
+ "▁conse gu",
+ "▁st udi",
+ "▁stud i",
+ "▁l ire",
+ "▁li re",
+ "▁ lire",
+ "▁sch ließ",
+ "▁ schließ",
+ "▁B uff",
+ "▁Bu ff",
+ "▁red und",
+ "▁redu nd",
+ "▁e rn",
+ "▁er n",
+ "▁ ern",
+ "▁my ster",
+ "▁myst er",
+ "▁prop rio",
+ "▁propri o",
+ "ate ful",
+ "▁Par ent",
+ "▁Pa rent",
+ "▁ Parent",
+ "▁lad ies",
+ "ra ck",
+ "rac k",
+ "r ack",
+ "ти ка",
+ "тик а",
+ "en burg",
+ "▁каче стве",
+ "▁E F",
+ "▁ EF",
+ "▁st am",
+ "▁sta m",
+ "▁nue va",
+ "▁fil tered",
+ "▁filter ed",
+ "re ten",
+ "ret en",
+ "r eten",
+ "▁I an",
+ "▁Matt hew",
+ "▁Matth ew",
+ "ki h",
+ "k ih",
+ "▁ ő",
+ "▁ком пози",
+ "▁for ever",
+ "▁fore ver",
+ "oir es",
+ "oi res",
+ "oire s",
+ "o ires",
+ ":\\ \\",
+ ": \\\\",
+ "▁ét udes",
+ "▁s oup",
+ "▁so up",
+ "▁sou p",
+ "▁p leased",
+ "▁please d",
+ "▁ple ased",
+ ")} (",
+ ") }(",
+ "▁S top",
+ "▁St op",
+ "▁Sto p",
+ "▁ Stop",
+ "Set ter",
+ "S etter",
+ "▁He lp",
+ "▁Hel p",
+ "▁ Help",
+ "▁b ars",
+ "▁bar s",
+ "▁ba rs",
+ "▁ bars",
+ "▁ER R",
+ "▁ ERR",
+ "▁( ?",
+ "▁ (?",
+ "▁po etry",
+ "▁poet ry",
+ "▁U til",
+ "▁Ut il",
+ "▁ Util",
+ "A K",
+ "▁f ick",
+ "▁fi ck",
+ "▁fic k",
+ "▁I M",
+ "▁ IM",
+ "▁pro ud",
+ "▁pr oud",
+ "но си",
+ "нос и",
+ "▁m uerte",
+ "▁mu erte",
+ "▁Palmar ès",
+ "▁N as",
+ "▁Na s",
+ "щи х",
+ "щ их",
+ "▁qu er",
+ "▁que r",
+ "▁q uer",
+ "▁ quer",
+ "▁a penas",
+ "▁ap enas",
+ "][ '",
+ "] ['",
+ "▁Kon st",
+ "по н",
+ "п он",
+ "▁Sch iff",
+ "▁m p",
+ "▁ mp",
+ "▁б лаго",
+ "fr am",
+ "fra m",
+ "f ram",
+ "▁house hold",
+ "▁t ract",
+ "▁tr act",
+ "▁tra ct",
+ "▁trac t",
+ "enc oding",
+ "▁und ert",
+ "▁under t",
+ "▁ undert",
+ "▁A ug",
+ "▁Au g",
+ "ов ан",
+ "ова н",
+ "о ван",
+ "▁Ar ten",
+ "▁Art en",
+ "▁Arte n",
+ "▁inv oked",
+ "▁invoke d",
+ "▁d ynast",
+ "▁fle et",
+ "че ство",
+ "▁Mur ray",
+ "▁g ut",
+ "▁gu t",
+ "eli hood",
+ "▁S SH",
+ "▁SS H",
+ "от вет",
+ "▁person ally",
+ "▁personal ly",
+ "при я",
+ "п рия",
+ "▁fin anci",
+ "▁finan ci",
+ "▁Thom pson",
+ "al u",
+ "a lu",
+ "id entity",
+ "ident ity",
+ "▁G rab",
+ "▁Gr ab",
+ "▁Gra b",
+ "add le",
+ "É t",
+ "▁T ob",
+ "▁To b",
+ "▁ver lor",
+ "▁verl or",
+ "▁Saint e",
+ "▁Sa inte",
+ "▁Sain te",
+ "▁d op",
+ "▁do p",
+ "▁в ере",
+ "▁ве ре",
+ "▁вер е",
+ "__ _",
+ "_ __",
+ "▁prom otion",
+ "▁- =",
+ "▁от де",
+ "▁amb igu",
+ "▁ ambigu",
+ "OR DER",
+ "ORD ER",
+ "▁Comm unic",
+ "▁Commun ic",
+ "▁im ply",
+ "▁imp ly",
+ "▁impl y",
+ "on ed",
+ "one d",
+ "o ned",
+ "clud ing",
+ "▁coll ision",
+ "▁fragment s",
+ "▁frag ments",
+ "script ion",
+ "scri ption",
+ "s cription",
+ "▁' {",
+ "ля х",
+ "л ях",
+ "▁h ans",
+ "▁ha ns",
+ "▁han s",
+ "у с",
+ "wi re",
+ "w ire",
+ "name space",
+ "names pace",
+ "▁s word",
+ "▁sw ord",
+ "▁swo rd",
+ "ref resh",
+ "▁kw am",
+ "z s",
+ "comm ons",
+ "common s",
+ "▁c osa",
+ "▁co sa",
+ "▁cos a",
+ "▁reg ime",
+ "gr ep",
+ "gre p",
+ "g rep",
+ "▁di oc",
+ "▁dio c",
+ "▁Cont act",
+ "▁ Contact",
+ "▁est as",
+ "▁esta s",
+ "▁Ste wart",
+ "▁v iele",
+ "▁vi ele",
+ "▁vie le",
+ "▁viel e",
+ "то ва",
+ "тов а",
+ "т ова",
+ "▁R an",
+ "▁Ra n",
+ "an nes",
+ "ann es",
+ "anne s",
+ "id ay",
+ "ida y",
+ "i day",
+ "▁s napshot",
+ "▁snap shot",
+ "or row",
+ "orr ow",
+ "▁za č",
+ "▁участи е",
+ "▁prom ised",
+ "▁promise d",
+ "Ass embly",
+ "▁champion ship",
+ "▁champions hip",
+ "▁Def ine",
+ "▁e ren",
+ "▁er en",
+ "▁ere n",
+ "▁ eren",
+ "▁но во",
+ "▁н ово",
+ "▁нов о",
+ "▁ ново",
+ "▁th inks",
+ "▁think s",
+ "▁thin ks",
+ "Ag e",
+ "A ge",
+ "▁g ev",
+ "▁ge v",
+ "var char",
+ "v archar",
+ "iv ità",
+ "com pos",
+ "comp os",
+ "▁M utter",
+ "▁Mut ter",
+ "CO NT",
+ "CON T",
+ "arm ée",
+ "ag net",
+ "agn et",
+ "agne t",
+ "▁B row",
+ "▁Br ow",
+ "▁Bro w",
+ ". —",
+ "▁Tele vision",
+ "▁Д ля",
+ "▁v m",
+ "▁ vm",
+ "▁or din",
+ "▁ord in",
+ "▁ ordin",
+ "▁Миха й",
+ "▁apro xim",
+ "') ->",
+ "' )->",
+ "▁z oo",
+ "▁zo o",
+ "ip pi",
+ "ipp i",
+ "i ppi",
+ "▁s ino",
+ "▁si no",
+ "▁sin o",
+ "▁Qu ébec",
+ "ra ges",
+ "rag es",
+ "rage s",
+ "r ages",
+ "ä ck",
+ "ei ng",
+ "ein g",
+ "e ing",
+ "ar lo",
+ "pi os",
+ "pio s",
+ "p ios",
+ "▁C han",
+ "▁Ch an",
+ "▁Cha n",
+ "▁el li",
+ "▁ell i",
+ "▁ elli",
+ "▁in cons",
+ "▁inc ons",
+ "▁incon s",
+ "gest ellt",
+ "g estellt",
+ "pp ers",
+ "pper s",
+ "ppe rs",
+ "p pers",
+ "Je an",
+ "anst alt",
+ "▁D ance",
+ "▁Dan ce",
+ "▁to en",
+ "▁toe n",
+ "▁de cis",
+ "▁dec is",
+ "▁Ре зу",
+ "▁official ly",
+ "▁offici ally",
+ "ät ze",
+ "ätz e",
+ "▁до ро",
+ "▁e numer",
+ "▁en umer",
+ "▁enum er",
+ "▁trois ième",
+ "ty p",
+ "t yp",
+ "of fs",
+ "off s",
+ "бо ль",
+ "od n",
+ "o dn",
+ "▁Z ar",
+ "▁Za r",
+ "▁дру го",
+ "qu ia",
+ "qui a",
+ "▁Nicol as",
+ "▁Nic olas",
+ "▁Nicola s",
+ "пи су",
+ "пис у",
+ "▁m ob",
+ "▁mo b",
+ "pa ces",
+ "pace s",
+ "p aces",
+ "нь ого",
+ "ньо го",
+ "Al g",
+ "A lg",
+ "éro ï",
+ "Error s",
+ "Err ors",
+ "▁г ре",
+ "▁ гре",
+ "▁жен щи",
+ "in ch",
+ "inc h",
+ "▁Kore an",
+ "▁Korea n",
+ "▁A post",
+ "▁Ap ost",
+ "▁L iver",
+ "▁Li ver",
+ "▁Live r",
+ "▁Liv er",
+ "▁element ary",
+ "▁D I",
+ "▁ DI",
+ "ви си",
+ "▁so il",
+ "▁D LL",
+ "▁r isp",
+ "▁ris p",
+ "▁ri sp",
+ "▁Sh akespe",
+ "▁G aussian",
+ "▁K urt",
+ "▁Kur t",
+ "▁Ku rt",
+ "Ver tex",
+ "Vert ex",
+ "eb ol",
+ "e bol",
+ "organ isation",
+ "är en",
+ "äre n",
+ "ä ren",
+ "▁Y ES",
+ "▁ YES",
+ "C UR",
+ "▁нача ль",
+ "▁по стро",
+ "▁пос тро",
+ "▁Lu igi",
+ "▁c aching",
+ "prevent Default",
+ "am d",
+ "a md",
+ "▁V it",
+ "▁Vi t",
+ "sub st",
+ "su bst",
+ "▁ст рои",
+ "▁C ampion",
+ "▁Camp ion",
+ "ch r",
+ "c hr",
+ "фе ре",
+ "фер е",
+ "ф ере",
+ "▁С писок",
+ "N F",
+ "▁c ím",
+ "▁cí m",
+ "▁h é",
+ "▁ hé",
+ "re bbe",
+ "reb be",
+ "oc y",
+ "o cy",
+ "be low",
+ "bel ow",
+ "▁by lo",
+ "▁byl o",
+ "▁У и",
+ "▁\\ ({\\",
+ "▁\\( {\\",
+ "▁` :",
+ "▁ `:",
+ "gi ore",
+ "gio re",
+ "gior e",
+ "g iore",
+ "Sa n",
+ "S an",
+ "▁G ate",
+ "▁Ga te",
+ "▁в с",
+ "▁o limp",
+ "▁ol imp",
+ "▁Mat rix",
+ "▁ Matrix",
+ "▁he aring",
+ "▁hear ing",
+ "ri i",
+ "r ii",
+ "tf rac",
+ "t frac",
+ "▁allem and",
+ "▁V ue",
+ "л н",
+ "▁comp iling",
+ "▁E ns",
+ "▁En s",
+ "▁investig ation",
+ "▁A x",
+ "▁ch ars",
+ "▁char s",
+ "▁cha rs",
+ "▁target s",
+ "▁tar gets",
+ "▁l oud",
+ "▁lo ud",
+ "us ement",
+ "use ment",
+ "▁N ether",
+ "▁Ne ther",
+ "▁Net her",
+ "com merce",
+ "IG HT",
+ "oc oa",
+ "oco a",
+ "if ecycle",
+ "ife cycle",
+ "▁Le o",
+ "pr iv",
+ "p riv",
+ "▁go ods",
+ "▁good s",
+ "ad amente",
+ "ada mente",
+ "A ustral",
+ "▁re boot",
+ "▁reb oot",
+ "Ge st",
+ "G est",
+ "▁represent ations",
+ "▁representation s",
+ "ce u",
+ "c eu",
+ "▁do ctrine",
+ "ce rs",
+ "cer s",
+ "c ers",
+ "▁K rak",
+ "▁Kr ak",
+ "▁Kra k",
+ "▁adv oc",
+ "▁squad ra",
+ "▁arbeit ete",
+ "üs t",
+ "ü st",
+ "▁p ill",
+ "▁pi ll",
+ "▁pil l",
+ "An swer",
+ "▁к віт",
+ "▁W a",
+ "um ann",
+ "uman n",
+ "uma nn",
+ "u mann",
+ "▁D ynam",
+ "▁Dy nam",
+ "Fa mil",
+ "F amil",
+ "▁t ennis",
+ "▁ten nis",
+ "▁Engine ering",
+ "▁circ les",
+ "▁cir cles",
+ "▁circle s",
+ "▁Mary land",
+ "▁b esta",
+ "▁be sta",
+ "▁best a",
+ "▁bes ta",
+ "▁b ases",
+ "▁bas es",
+ "▁base s",
+ "▁znaj du",
+ "ктор а",
+ "кто ра",
+ "к тора",
+ "▁ar rest",
+ "▁arr est",
+ "ле р",
+ "л ер",
+ "▁G ia",
+ "▁Gi a",
+ "▁remark able",
+ "▁мо гу",
+ "▁Sup reme",
+ "▁` %",
+ "do r",
+ "d or",
+ "▁au jourd",
+ "▁w is",
+ "WID TH",
+ "▁mis ma",
+ "▁mism a",
+ "▁fl uid",
+ "▁flu id",
+ "▁pet ite",
+ "▁petit e",
+ "▁T ow",
+ "▁To w",
+ "Reg istry",
+ "em ed",
+ "eme d",
+ "e med",
+ "▁Wis consin",
+ "▁R acing",
+ "▁Ra cing",
+ "▁reg istration",
+ "▁registr ation",
+ "/ %",
+ "th ird",
+ "▁mon uments",
+ "▁monument s",
+ "че й",
+ "ч ей",
+ "▁j et",
+ "▁je t",
+ "▁ jet",
+ "▁Ur ban",
+ "ál va",
+ "▁mil ieu",
+ "▁poss ess",
+ "▁g erm",
+ "▁ge rm",
+ "▁ger m",
+ "dep endencies",
+ "▁enem ies",
+ "▁s amen",
+ "▁sa men",
+ "▁same n",
+ "▁sam en",
+ "▁W erner",
+ "▁Wer ner",
+ "▁h izo",
+ "▁hi zo",
+ "▁t d",
+ "▁ td",
+ "▁y esterday",
+ "▁А д",
+ "▁ha sn",
+ "▁has n",
+ "cel lation",
+ "cell ation",
+ "ov ání",
+ "ová ní",
+ "li ka",
+ "lik a",
+ "l ika",
+ "We ek",
+ "▁I ng",
+ "▁In g",
+ "▁E mail",
+ "▁Em ail",
+ "▁ Email",
+ "▁m ètres",
+ "▁O CLC",
+ "▁among st",
+ "▁spl end",
+ "fu r",
+ "f ur",
+ "ant ics",
+ "anti cs",
+ "antic s",
+ "▁X XX",
+ "▁XX X",
+ "▁ XXX",
+ "▁груп пы",
+ "la ch",
+ "lac h",
+ "l ach",
+ "▁c ousin",
+ "▁cou sin",
+ "▁in variant",
+ "▁invari ant",
+ "ђ у",
+ "▁Be ispiel",
+ "▁Bei spiel",
+ "▁hard er",
+ "▁har der",
+ "▁b ell",
+ "▁be ll",
+ "▁bel l",
+ "▁ bell",
+ "▁or ch",
+ "▁ orch",
+ "t b",
+ "Foot note",
+ "re gon",
+ "reg on",
+ "Mart in",
+ "▁in con",
+ "▁inc on",
+ "▁attack ed",
+ "_{ -",
+ "_ {-",
+ "▁T ras",
+ "▁Tr as",
+ "▁Tra s",
+ "par ty",
+ "part y",
+ "ite it",
+ "▁s aint",
+ "▁sa int",
+ "▁sain t",
+ "rás ok",
+ "r ások",
+ "▁contain ers",
+ "▁container s",
+ "M o",
+ "▁S n",
+ "quant ity",
+ "▁r as",
+ "▁ra s",
+ "▁ ras",
+ "▁C anal",
+ "▁Can al",
+ "▁Ca nal",
+ "cc ion",
+ "c cion",
+ "uv o",
+ "u vo",
+ "▁i dx",
+ "▁id x",
+ "▁ idx",
+ "type name",
+ "typen ame",
+ "typ ename",
+ "▁R ugby",
+ "▁Se ems",
+ "▁See ms",
+ "▁trans mit",
+ "▁transm it",
+ "▁Pr äsident",
+ "з не",
+ "▁B aker",
+ "▁Ba ker",
+ "▁Bak er",
+ "in th",
+ "int h",
+ "i nth",
+ "▁tö bb",
+ "ver ein",
+ "vere in",
+ "▁espe cie",
+ "▁espec ie",
+ ", (",
+ "▁t éc",
+ "▁té c",
+ "▁W ITH",
+ "▁u nos",
+ "▁un os",
+ "▁uno s",
+ "▁ unos",
+ "▁polit ics",
+ "create Element",
+ "▁st ats",
+ "▁stat s",
+ "▁sta ts",
+ "▁ stats",
+ "▁T ennessee",
+ "▁Bedeut ung",
+ "▁S creen",
+ "▁Sc reen",
+ "▁ Screen",
+ "▁Stra ße",
+ "an ze",
+ "anz e",
+ "▁part ly",
+ "man uel",
+ "ol ation",
+ "ola tion",
+ "o lation",
+ "hor izontal",
+ "érie ure",
+ "érieur e",
+ "am pio",
+ "amp io",
+ "▁ст рук",
+ "▁ струк",
+ "We ight",
+ "La nd",
+ "L and",
+ "po ly",
+ "pol y",
+ "p oly",
+ "▁D ak",
+ "▁Da k",
+ "▁Ass ume",
+ "\". $",
+ "\" .$",
+ "▁c asi",
+ "▁cas i",
+ "▁ca si",
+ "▁g ross",
+ "▁gr oss",
+ "▁gro ss",
+ "▁gros s",
+ "▁ent ertain",
+ "▁enter tain",
+ "▁déc ada",
+ "'. $",
+ "' .$",
+ "en cer",
+ "ence r",
+ "enc er",
+ "▁guarante ed",
+ "▁guarantee d",
+ "]$ .",
+ "] $.",
+ "ли ся",
+ "▁accept able",
+ "ra ise",
+ "rai se",
+ "rais e",
+ "ir us",
+ "i rus",
+ "we it",
+ "wei t",
+ "▁А на",
+ "▁Ан а",
+ "▁h ills",
+ "▁hill s",
+ "ip age",
+ "i page",
+ "BI T",
+ "B IT",
+ "▁nu cle",
+ "▁nuc le",
+ "▁ut ilis",
+ "▁util is",
+ "CA A",
+ "C AA",
+ "ène s",
+ "èn es",
+ "è nes",
+ "▁Schwe iz",
+ "▁A A",
+ "▁ AA",
+ "ning er",
+ "n inger",
+ "▁b ands",
+ "▁band s",
+ "▁ban ds",
+ "▁t ender",
+ "▁te nder",
+ "▁ten der",
+ "▁tend er",
+ "so m",
+ "s om",
+ "W arning",
+ "▁B ischof",
+ "▁A rc",
+ "▁Ar c",
+ "▁W oman",
+ "▁Wo man",
+ "▁trans mission",
+ "▁transm ission",
+ "ч ни",
+ "is tre",
+ "ist re",
+ "istr e",
+ "i stre",
+ "B Y",
+ "▁S I",
+ "▁ SI",
+ "▁П ар",
+ "▁Па р",
+ "▁} ).",
+ "▁}) .",
+ "▁ }).",
+ "▁present a",
+ "▁pres enta",
+ "▁Re né",
+ "▁Ren é",
+ "▁happ iness",
+ "▁P unk",
+ "col s",
+ "co ls",
+ "c ols",
+ "▁Des de",
+ "рё х",
+ "▁м она",
+ "▁мо на",
+ "▁scr atch",
+ "▁t cp",
+ "▁ tcp",
+ "ête s",
+ "êt es",
+ "ê tes",
+ "it ated",
+ "ita ted",
+ "itat ed",
+ "itate d",
+ "▁dif eren",
+ "▁difer en",
+ "ge h",
+ "g eh",
+ "na hmen",
+ "nah men",
+ "nahme n",
+ "nahm en",
+ "П е",
+ "ck i",
+ "c ki",
+ "▁Te atro",
+ "▁Re member",
+ "▁Rem ember",
+ "▁f right",
+ "▁fr ight",
+ "▁Y am",
+ "▁Ya m",
+ "west ern",
+ "le ted",
+ "let ed",
+ "lete d",
+ "▁в стре",
+ "▁вс тре",
+ "▁telep ülés",
+ "зи н",
+ "з ин",
+ "▁Qu ant",
+ "▁ Quant",
+ "▁su pre",
+ "▁sup re",
+ "áj a",
+ "á ja",
+ "ді я",
+ "д ія",
+ "▁car rera",
+ "▁carre ra",
+ "kre t",
+ "kr et",
+ "k ret",
+ "par a",
+ "pa ra",
+ "p ara",
+ "▁S UM",
+ "▁SU M",
+ "▁ SUM",
+ "▁p it",
+ "▁pi t",
+ "▁ pit",
+ "ź dz",
+ "é o",
+ "ре ння",
+ "рен ня",
+ "▁C hor",
+ "▁Ch or",
+ "▁Cho r",
+ "▁vo ix",
+ "▁exec utive",
+ "▁execut ive",
+ "▁all erdings",
+ "May be",
+ "▁д ень",
+ "▁де нь",
+ "▁f lying",
+ "▁fl ying",
+ "▁fly ing",
+ "▁par liament",
+ "жда н",
+ "ж дан",
+ "▁f ram",
+ "▁fr am",
+ "▁fra m",
+ "▁ fram",
+ "▁жов т",
+ "▁u gly",
+ "▁бу ду",
+ "ig ny",
+ "ign y",
+ "\\| _{",
+ "\\ |_{",
+ "▁b itter",
+ "▁bit ter",
+ "sc e",
+ "s ce",
+ "▁p ole",
+ "▁po le",
+ "▁pol e",
+ "▁ pole",
+ "Ver lag",
+ "▁total ité",
+ "▁found ation",
+ "j t",
+ "▁s lice",
+ "▁sl ice",
+ "▁sli ce",
+ "▁ slice",
+ "if ique",
+ "ifi que",
+ "▁integr ate",
+ "▁integra te",
+ "st rij",
+ "str ij",
+ "▁asym pt",
+ "▁е му",
+ "▁pert urb",
+ "▁F low",
+ "▁Fl ow",
+ "▁Flo w",
+ "▁ Flow",
+ "jb oss",
+ "RI G",
+ "R IG",
+ "▁A less",
+ "▁Al ess",
+ "▁Ale ss",
+ "XX X",
+ "X XX",
+ "▁s umm",
+ "▁su mm",
+ "▁sum m",
+ "sql ite",
+ "▁che er",
+ "pr ob",
+ "pro b",
+ "p rob",
+ "▁G PU",
+ "▁GP U",
+ "zi ł",
+ "z ił",
+ "(* )",
+ "( *)",
+ "▁in duct",
+ "▁ind uct",
+ "▁indu ct",
+ "RA Y",
+ "bl att",
+ "bla tt",
+ "qu esta",
+ "que sta",
+ "quest a",
+ "ques ta",
+ "or u",
+ "o ru",
+ "▁In side",
+ "▁Ins ide",
+ "▁Mc G",
+ "▁N ep",
+ "▁Ne p",
+ "м п",
+ "▁in ve",
+ "▁inv e",
+ "▁An imal",
+ "▁Anim al",
+ "▁s ob",
+ "▁so b",
+ "▁ sob",
+ "ít ott",
+ "loy ment",
+ "▁b und",
+ "▁bu nd",
+ "▁ bund",
+ "St ation",
+ "Stat ion",
+ "▁B EGIN",
+ "▁part iellement",
+ "ig g",
+ "i gg",
+ "est ore",
+ "esto re",
+ "e store",
+ "▁co inc",
+ "▁coin c",
+ "▁Som mer",
+ "▁m d",
+ "▁ md",
+ "▁loc ked",
+ "▁lock ed",
+ "▁ locked",
+ "math char",
+ "ar ma",
+ "arm a",
+ "pe nt",
+ "pen t",
+ "p ent",
+ "ar ium",
+ "ari um",
+ "a rium",
+ "▁e ars",
+ "▁ear s",
+ "▁ ears",
+ "▁S ongs",
+ "▁Son gs",
+ "▁Song s",
+ "▁similar ly",
+ "▁liter ally",
+ "▁literal ly",
+ "▁in ches",
+ "▁inc hes",
+ "▁af fection",
+ "▁aff ection",
+ "▁affect ion",
+ "l p",
+ "▁con cluded",
+ "▁conclude d",
+ "▁му ніципалі",
+ "▁па мя",
+ "est aur",
+ "esta ur",
+ "▁J osh",
+ "▁Jo sh",
+ "▁Jos h",
+ "▁F ritz",
+ "▁Fr itz",
+ "▁Fri tz",
+ "DB C",
+ "D BC",
+ "д ён",
+ "pos a",
+ "po sa",
+ "p osa",
+ "▁gold en",
+ "▁gol den",
+ "▁p c",
+ "▁ pc",
+ "▁com te",
+ "▁Z iel",
+ "▁Zie l",
+ "▁prés ente",
+ "▁présent e",
+ "mar ks",
+ "mark s",
+ "m arks",
+ "ig neur",
+ "ign eur",
+ "igne ur",
+ "▁D rive",
+ "▁Dr ive",
+ "▁neg lect",
+ "▁roz p",
+ "▁F ive",
+ "sp aces",
+ "space s",
+ "s paces",
+ "▁M edi",
+ "▁Me di",
+ "▁Med i",
+ "▁ex isted",
+ "▁exist ed",
+ "▁existe d",
+ "▁by ła",
+ "▁był a",
+ "дж и",
+ "д жи",
+ "▁fr ente",
+ "т ник",
+ "od d",
+ "o dd",
+ "▁answer ing",
+ "bi an",
+ "bia n",
+ "b ian",
+ "▁E ugen",
+ "▁Eu gen",
+ "▁Eug en",
+ "▁Public ations",
+ "▁Pub lications",
+ "▁D ia",
+ "▁Di a",
+ "l á",
+ "▁' _",
+ "▁ '_",
+ "▁rec uper",
+ "ом у",
+ "о му",
+ "▁App end",
+ "▁Ap pend",
+ "▁ Append",
+ "ob ar",
+ "oba r",
+ "o bar",
+ "▁employ ees",
+ "▁employee s",
+ "▁comp ens",
+ "eme tery",
+ "emet ery",
+ "▁э лект",
+ "MO N",
+ "M ON",
+ "ol in",
+ "oli n",
+ "o lin",
+ "▁histor ic",
+ "hi s",
+ "h is",
+ "ą d",
+ "n m",
+ "▁G oth",
+ "▁Go th",
+ "▁Got h",
+ "▁st ress",
+ "▁str ess",
+ "▁stre ss",
+ "▁parte cip",
+ "▁A w",
+ "▁s ar",
+ "▁sa r",
+ "▁h u",
+ "▁ hu",
+ "▁mat plotlib",
+ "▁M yst",
+ "▁My st",
+ "▁Mys t",
+ "() ;`",
+ "(); `",
+ "( );`",
+ "sch ein",
+ "sc hein",
+ "sche in",
+ "Long rightarrow",
+ "▁р я",
+ "▁ ря",
+ "▁Is ra",
+ "[ ^",
+ "no u",
+ "n ou",
+ "▁syn d",
+ "▁sy nd",
+ "work ing",
+ "wor king",
+ "▁N ation",
+ "▁Na tion",
+ "▁Nat ion",
+ "▁P ent",
+ "▁Pe nt",
+ "▁Pen t",
+ "▁k lass",
+ "▁kl ass",
+ "▁klas s",
+ "▁applic able",
+ "▁D iam",
+ "▁Di am",
+ "▁Dia m",
+ "▁bras ile",
+ "▁p ac",
+ "▁pa c",
+ "▁He ight",
+ "▁ Height",
+ "P ut",
+ "▁int ro",
+ "▁intr o",
+ "▁ intro",
+ "▁unus ual",
+ "na s",
+ "n as",
+ "▁Geb äude",
+ "▁be am",
+ "▁R ect",
+ "▁Re ct",
+ "▁Rec t",
+ "▁ Rect",
+ "▁Prim era",
+ "▁Prime ra",
+ "▁h aut",
+ "▁ha ut",
+ "▁t rait",
+ "▁tr ait",
+ "▁tra it",
+ "prü ft",
+ "in ación",
+ "ina ción",
+ "▁configuration s",
+ "▁configur ations",
+ "▁g ilt",
+ "▁gi lt",
+ "▁territ oire",
+ "he z",
+ "h ez",
+ "▁al te",
+ "▁alt e",
+ "rel ative",
+ "Ex cel",
+ "▁W right",
+ "G V",
+ "по ли",
+ "пол и",
+ "Qu ant",
+ "▁ga uge",
+ "▁gau ge",
+ "▁multi ply",
+ "▁multip ly",
+ "AS S",
+ "A SS",
+ "ствен но",
+ "ан у",
+ "а ну",
+ "▁j eden",
+ "▁je den",
+ "▁jed en",
+ "▁liter ary",
+ "▁D ro",
+ "▁Dr o",
+ "▁adv ise",
+ "▁advis e",
+ "it zen",
+ "itz en",
+ "▁dis ag",
+ "web site",
+ "▁д ія",
+ "▁ді я",
+ "▁ дія",
+ "▁ob server",
+ "▁obser ver",
+ "▁observ er",
+ "▁observe r",
+ "▁janu ár",
+ "v ě",
+ "ku p",
+ "k up",
+ "▁S es",
+ "▁Se s",
+ "▁woj ew",
+ "▁st ages",
+ "▁stage s",
+ "▁sta ges",
+ "▁stag es",
+ "▁вре мени",
+ "▁време ни",
+ "łu ż",
+ "но с",
+ "н ос",
+ "Down load",
+ "ip o",
+ "i po",
+ "▁g raf",
+ "▁gr af",
+ "▁gra f",
+ "▁ро бо",
+ "▁Nik ol",
+ "▁Ni kol",
+ "▁f ic",
+ "▁fi c",
+ "▁ fic",
+ "▁jo ining",
+ "▁join ing",
+ "▁divers os",
+ "▁LI KE",
+ "▁F itz",
+ "▁d imin",
+ "▁di min",
+ "▁dim in",
+ "▁dist rib",
+ "Sa m",
+ "S am",
+ "ko z",
+ "k oz",
+ "▁al phabet",
+ "▁alpha bet",
+ "os er",
+ "ose r",
+ "o ser",
+ "OU R",
+ "O UR",
+ "uk a",
+ "u ka",
+ "ка я",
+ "▁ste el",
+ "▁` --",
+ "▁`- -",
+ "▁t ener",
+ "▁te ner",
+ "▁ten er",
+ "mar ker",
+ "mark er",
+ "▁He aven",
+ "new command",
+ "▁prison ers",
+ "▁prisoner s",
+ "▁K night",
+ "▁Kn ight",
+ "▁present s",
+ "▁pres ents",
+ "▁qu esti",
+ "▁quest i",
+ "▁tr ains",
+ "▁tra ins",
+ "▁train s",
+ "op era",
+ "ope ra",
+ "oper a",
+ "▁Li near",
+ "▁Lin ear",
+ "▁Line ar",
+ "▁ Linear",
+ "▁M E",
+ "▁ ME",
+ "▁B uc",
+ "▁Bu c",
+ "Le g",
+ "L eg",
+ "▁ag ua",
+ "▁ agua",
+ "▁Gr iff",
+ "ol g",
+ "o lg",
+ "ds t",
+ "d st",
+ ". \r",
+ "▁person es",
+ "▁pers ones",
+ "▁persone s",
+ "Ma l",
+ "M al",
+ "бе ре",
+ "бер е",
+ "б ере",
+ "fol ge",
+ "folg e",
+ "▁ac ab",
+ "ct u",
+ "c tu",
+ "pt ic",
+ "▁N avigation",
+ "▁ Navigation",
+ "R uss",
+ "га ль",
+ "г аль",
+ "▁F ul",
+ "▁Fu l",
+ "▁ма є",
+ "чна я",
+ "ч ная",
+ "wn er",
+ "w ner",
+ "con tra",
+ "cont ra",
+ "contr a",
+ "▁jou eur",
+ "▁joue ur",
+ "▁J ess",
+ "▁Je ss",
+ "▁Jes s",
+ "▁re new",
+ "▁ren ew",
+ "▁l ap",
+ "▁la p",
+ "▁ lap",
+ "▁cas ting",
+ "▁cast ing",
+ "ga l",
+ "g al",
+ "▁tém atu",
+ "▁на зыва",
+ "за х",
+ "ч не",
+ ")- \\",
+ ") -\\",
+ "▁ча сто",
+ "▁час то",
+ "▁част о",
+ "}$ -",
+ "} $-",
+ "▁l icz",
+ "▁li cz",
+ "▁lic z",
+ "▁e mot",
+ "▁em ot",
+ "ha rm",
+ "har m",
+ "h arm",
+ "▁occasion ally",
+ "▁hor ror",
+ "▁ho rror",
+ "ea st",
+ "e ast",
+ "▁pr inter",
+ "▁print er",
+ "▁prin ter",
+ "ar an",
+ "ara n",
+ "a ran",
+ "▁Miss iss",
+ "fol low",
+ "f ollow",
+ "▁Bar ry",
+ "▁investig ate",
+ "go w",
+ "g ow",
+ "▁Amer icans",
+ "▁American s",
+ "▁America ns",
+ "S ince",
+ "▁від о",
+ "▁ві до",
+ "▁re un",
+ "os ci",
+ "osc i",
+ "o sci",
+ "▁Ch apter",
+ "▁Chap ter",
+ "▁b ay",
+ "▁ba y",
+ "▁ bay",
+ "ро ме",
+ "ром е",
+ "et he",
+ "eth e",
+ "e the",
+ "éd ie",
+ "é die",
+ "com ot",
+ "co mot",
+ "como t",
+ "▁miejs cowo",
+ "▁stud ierte",
+ "▁studi erte",
+ "ou vert",
+ "ouv ert",
+ "ouve rt",
+ "ouver t",
+ "▁к ур",
+ "▁ку р",
+ "▁ кур",
+ "▁DE SC",
+ "▁DES C",
+ "▁touch ed",
+ "▁tou ched",
+ "▁Jer ry",
+ "ue se",
+ "ues e",
+ "u ese",
+ "ли ще",
+ "auth entication",
+ "authentic ation",
+ "▁col le",
+ "▁co lle",
+ "▁coll e",
+ "he art",
+ "▁reg iment",
+ "▁regime nt",
+ "cri bed",
+ "cribe d",
+ "▁Бо ль",
+ "▁про ис",
+ "ce ae",
+ "▁mass es",
+ "▁sc rolling",
+ "▁scroll ing",
+ "us to",
+ "ust o",
+ "u sto",
+ "S W",
+ "ov at",
+ "ova t",
+ "o vat",
+ "▁gr âce",
+ "▁Архи в",
+ "▁Се вер",
+ "av ait",
+ "ava it",
+ "▁Marsh all",
+ "▁Mars hall",
+ "▁Hash Map",
+ "▁ HashMap",
+ "ac on",
+ "aco n",
+ "a con",
+ "ück en",
+ "ücke n",
+ "ü cken",
+ "[] )",
+ "[ ])",
+ "▁ev angel",
+ "et zung",
+ "etz ung",
+ "tt emberg",
+ "st ers",
+ "ste rs",
+ "ster s",
+ "s ters",
+ "T M",
+ "▁ли тера",
+ "qu ot",
+ "Pr ed",
+ "Pre d",
+ "P red",
+ "▁w erk",
+ "▁wer k",
+ "▁ werk",
+ "▁ha ber",
+ "▁hab er",
+ "▁habe r",
+ "la va",
+ "lav a",
+ "l ava",
+ "vo us",
+ "v ous",
+ "▁L ate",
+ "▁La te",
+ "▁Lat e",
+ "cy cle",
+ "cyc le",
+ "c ycle",
+ "ти рова",
+ "▁про ду",
+ "▁прод у",
+ "▁pop ulations",
+ "▁population s",
+ "▁popul ations",
+ "▁Y an",
+ "▁Ya n",
+ "Pre fix",
+ "P refix",
+ "actér istiques",
+ "+ '",
+ "() `](",
+ "()` ](",
+ "▁Л ь",
+ "фи ль",
+ "▁жи зни",
+ "ft p",
+ "f tp",
+ "▁все х",
+ "▁g dzie",
+ "▁v idea",
+ "▁vid ea",
+ "▁vide a",
+ "oa uth",
+ "o auth",
+ "▁p id",
+ "▁pi d",
+ "▁ pid",
+ "ů m",
+ "▁p esso",
+ "▁pes so",
+ "▁track ing",
+ "▁trac king",
+ "iz in",
+ "izi n",
+ "i zin",
+ "▁Mor ris",
+ "щи й",
+ "▁Provin z",
+ "▁M itte",
+ "▁Mit te",
+ "▁Mi tte",
+ "▁Mitt e",
+ "▁artific ial",
+ "bráz ky",
+ "▁до сти",
+ "▁rest ored",
+ "▁restore d",
+ "▁resto red",
+ "▁commun icate",
+ "▁communic ate",
+ "ag it",
+ "agi t",
+ "a git",
+ "Rec ogn",
+ "▁l on",
+ "▁lo n",
+ "▁ lon",
+ "▁за ня",
+ "▁зан я",
+ "▁Arg ument",
+ "▁ Argument",
+ "fl ush",
+ "flu sh",
+ "ма на",
+ "ман а",
+ "м ана",
+ "sec onds",
+ "second s",
+ "U C",
+ "▁R uth",
+ "▁Ru th",
+ "▁t ub",
+ "▁tu b",
+ "▁B ret",
+ "▁Br et",
+ "▁Bre t",
+ "▁P ere",
+ "▁Per e",
+ "▁Pe re",
+ "▁respons ibility",
+ "ńcz y",
+ "ń czy",
+ "▁environment s",
+ "▁environ ments",
+ "ke e",
+ "k ee",
+ "▁g root",
+ "▁gr oot",
+ "▁gro ot",
+ "▁pain ted",
+ "▁paint ed",
+ "▁Éd itions",
+ "cp y",
+ "c py",
+ "ár t",
+ "á rt",
+ "lich keit",
+ "ar da",
+ "ard a",
+ "B atch",
+ "▁Leop old",
+ "re ason",
+ "rea son",
+ "reas on",
+ "n oreferrer",
+ "se ns",
+ "sen s",
+ "s ens",
+ "▁ro cks",
+ "▁rock s",
+ "▁Hit ler",
+ "ла т",
+ "л ат",
+ "▁qu oted",
+ "▁quot ed",
+ "▁quote d",
+ "▁ко лле",
+ "▁у ров",
+ "ba g",
+ "b ag",
+ ".\" )",
+ ". \")",
+ "▁M L",
+ "▁ ML",
+ "▁kom t",
+ "▁ko mt",
+ "▁[ _",
+ "▁ [_",
+ "▁spect ral",
+ "ed o",
+ "e do",
+ "▁in sieme",
+ "▁suffer ing",
+ "▁suff ering",
+ "sl ider",
+ "slide r",
+ "▁Kenn edy",
+ "ol ate",
+ "ola te",
+ "o late",
+ "▁P atri",
+ "▁Pa tri",
+ "▁Pat ri",
+ "зи и",
+ "O H",
+ "▁те а",
+ "▁пра ва",
+ "▁прав а",
+ "ма х",
+ "re write",
+ "rew rite",
+ "r ewrite",
+ "▁Eins atz",
+ "ex ternal",
+ "ext ernal",
+ "hol ds",
+ "hold s",
+ "h olds",
+ "▁P laces",
+ "▁Pl aces",
+ "▁Pla ces",
+ "▁Place s",
+ "at ype",
+ "aty pe",
+ "a type",
+ "▁vul ner",
+ "▁abandon ed",
+ "Or igin",
+ "Ori gin",
+ "▁max imal",
+ "▁maxim al",
+ "AA AA",
+ "▁Base ball",
+ "▁C lose",
+ "▁Cl ose",
+ "▁Clo se",
+ "▁ Close",
+ "▁pa inter",
+ "▁pain ter",
+ "▁paint er",
+ "▁assign ing",
+ "N B",
+ "bl ast",
+ "bla st",
+ "b last",
+ "▁K ünstler",
+ ")] (",
+ ") ](",
+ "fa ch",
+ "fac h",
+ "f ach",
+ "▁Const antin",
+ "▁Constant in",
+ "ok es",
+ "oke s",
+ "o kes",
+ "▁no body",
+ "▁nob ody",
+ "▁subt ract",
+ "▁fos se",
+ "▁foss e",
+ "▁cert ific",
+ "▁m use",
+ "▁mus e",
+ "▁mu se",
+ "/) ,",
+ "/ ),",
+ "▁Pro fil",
+ "▁Prof il",
+ "▁pro xim",
+ "▁Jer usalem",
+ "▁simp licity",
+ "▁simpl icity",
+ "▁w sz",
+ "▁ws z",
+ "NUM BER",
+ "utt avia",
+ "U ITableView",
+ "ich ter",
+ "icht er",
+ "ichte r",
+ "i chter",
+ "жа н",
+ "ж ан",
+ "▁L av",
+ "▁La v",
+ "it chen",
+ "itch en",
+ "▁Ч ем",
+ "▁Че м",
+ "T u",
+ "▁ge om",
+ "▁zv uky",
+ "▁Sur vey",
+ "AN CE",
+ "▁enc rypted",
+ "▁encrypt ed",
+ "pr of",
+ "pro f",
+ "▁d are",
+ "▁da re",
+ "▁dar e",
+ "▁L oren",
+ "▁Lo ren",
+ "▁Lor en",
+ "т в",
+ "▁А лек",
+ "▁Ал ек",
+ "▁comput ers",
+ "▁computer s",
+ "▁compute rs",
+ "▁expect ation",
+ "▁substant ial",
+ "▁Д ми",
+ "▁` {",
+ "▁д ра",
+ "▁др а",
+ "▁ дра",
+ "ub ble",
+ "▁per forms",
+ "▁perform s",
+ "▁Kr ieg",
+ "▁Krie g",
+ "▁in coming",
+ "▁inc oming",
+ "▁Class ification",
+ "Web View",
+ "▁epis odes",
+ "▁episode s",
+ "ap per",
+ "app er",
+ "appe r",
+ "a pper",
+ "äu fig",
+ "▁gi ov",
+ "▁De part",
+ "▁Dep art",
+ "бо ра",
+ "бор а",
+ "ed ly",
+ "os pod",
+ "osp od",
+ "▁p tr",
+ "▁pt r",
+ "▁ ptr",
+ "▁d átum",
+ "▁est imation",
+ "▁estim ation",
+ "ic ole",
+ "ico le",
+ "icol e",
+ "i cole",
+ "▁- ---",
+ "▁-- --",
+ "▁--- -",
+ "▁ ----",
+ "▁prin ces",
+ "▁prince s",
+ "HE AD",
+ "▁diff usion",
+ "▁diffus ion",
+ "▁d rie",
+ "▁dr ie",
+ "▁dri e",
+ "▁A da",
+ "▁Ad a",
+ "ни це",
+ "ниц е",
+ "ng inx",
+ "n ginx",
+ "sh al",
+ "sha l",
+ "s hal",
+ "▁febru ari",
+ "▁T at",
+ "▁Ta t",
+ "lo oking",
+ "look ing",
+ "ku nd",
+ "k und",
+ "▁De an",
+ "m ongodb",
+ "вши х",
+ "в ших",
+ "▁A ur",
+ "▁Au r",
+ "▁Fl ora",
+ "▁Flor a",
+ "▁Flo ra",
+ "▁Stud ios",
+ "▁Studio s",
+ "ци је",
+ "ei l",
+ "e il",
+ "Inst all",
+ "▁f ranch",
+ "▁fr anch",
+ "▁fran ch",
+ "▁franc h",
+ "▁H MS",
+ "▁pract ices",
+ "▁practice s",
+ "le j",
+ "l ej",
+ "da le",
+ "dal e",
+ "d ale",
+ "▁po ste",
+ "▁pos te",
+ "▁post e",
+ "▁H els",
+ "▁He ls",
+ "▁Hel s",
+ "▁reli able",
+ "źdz ier",
+ "▁ver se",
+ "▁vers e",
+ "▁ verse",
+ "er meister",
+ "erme ister",
+ "▁qu it",
+ "▁qui t",
+ "▁q uit",
+ "▁ quit",
+ "ét ico",
+ "il is",
+ "ili s",
+ "i lis",
+ "ed or",
+ "edo r",
+ "e dor",
+ "▁Cult ural",
+ "▁Cultura l",
+ "дж е",
+ "д же",
+ "▁li ked",
+ "▁like d",
+ "▁lik ed",
+ "▁m ongodb",
+ "▁mongo db",
+ "▁ mongodb",
+ "▁Broad way",
+ "▁I R",
+ "▁ IR",
+ "es zt",
+ "esz t",
+ "ho v",
+ "h ov",
+ "▁m íst",
+ "▁mí st",
+ "re iche",
+ "reich e",
+ "rei che",
+ "▁k B",
+ "ст ом",
+ "сто м",
+ "с том",
+ "▁SQL ite",
+ "▁tor neo",
+ "\\ .",
+ "Or d",
+ "O rd",
+ "▁Admin istration",
+ "▁Administr ation",
+ "▁з да",
+ "▁ зда",
+ "▁H inter",
+ "▁Hin ter",
+ "▁V ia",
+ "▁Vi a",
+ "Dec imal",
+ "or ious",
+ "ori ous",
+ "orio us",
+ "▁nécess aire",
+ "w x",
+ "▁t ej",
+ "▁te j",
+ "▁t ema",
+ "▁te ma",
+ "▁tem a",
+ "O brázky",
+ "ри те",
+ "рит е",
+ "▁build s",
+ "▁l aten",
+ "▁la ten",
+ "▁lat en",
+ "▁late n",
+ "▁г г",
+ "Vis ibility",
+ "lä u",
+ "l äu",
+ "▁se chs",
+ "▁sec hs",
+ "▁лу ч",
+ "ce ra",
+ "cer a",
+ "c era",
+ "Co uld",
+ "C ould",
+ "▁tra ject",
+ "}} ^{",
+ "}}^ {",
+ "} }^{",
+ "▁Jap on",
+ "▁Ja pon",
+ "an other",
+ "ano ther",
+ "I K",
+ "▁belong ing",
+ "▁fac ilities",
+ "▁facil ities",
+ "▁D aily",
+ "▁Da ily",
+ "▁de ce",
+ "▁dec e",
+ "int ro",
+ "▁слу ча",
+ "Name space",
+ "Names pace",
+ "▁B ak",
+ "▁Ba k",
+ "loc ale",
+ "local e",
+ "U G",
+ "=$ {",
+ "= ${",
+ "▁comp añ",
+ "ją c",
+ "j ąc",
+ "▁ar ithmetic",
+ "fo rum",
+ "for um",
+ "f orum",
+ "▁por ta",
+ "▁port a",
+ "on k",
+ "▁g ender",
+ "▁ge nder",
+ "▁gen der",
+ "▁ gender",
+ "▁expect s",
+ "б ка",
+ "▁n ak",
+ "▁na k",
+ "▁ nak",
+ "▁G race",
+ "▁Gr ace",
+ "▁Gra ce",
+ "▁st ro",
+ "▁str o",
+ "ivid ual",
+ "▁C OM",
+ "▁CO M",
+ "▁ COM",
+ "▁F arm",
+ "▁Fa rm",
+ "▁Far m",
+ "▁c anton",
+ "▁can ton",
+ "▁cant on",
+ "то му",
+ "том у",
+ "т ому",
+ "java x",
+ "jav ax",
+ "се й",
+ "с ей",
+ "▁brief ly",
+ "Fa ce",
+ "F ace",
+ "rot ate",
+ "const ant",
+ "▁g allery",
+ "▁gall ery",
+ "ast ro",
+ "astr o",
+ "all ery",
+ "alle ry",
+ "aller y",
+ "▁D J",
+ "char ge",
+ "charg e",
+ "ходи ть",
+ "ходит ь",
+ "C ent",
+ "\\\" ,",
+ "\\ \",",
+ "▁d onna",
+ "▁don na",
+ "▁donn a",
+ "ar ca",
+ "arc a",
+ "la de",
+ "lad e",
+ "l ade",
+ "zi n",
+ "z in",
+ "▁N ed",
+ "▁Ne d",
+ "▁host ing",
+ "▁hos ting",
+ "id or",
+ "ido r",
+ "i dor",
+ "it ative",
+ "itat ive",
+ "ig s",
+ "i gs",
+ "▁п ря",
+ "▁пр я",
+ "▁t icket",
+ "▁tick et",
+ "▁ti cket",
+ "▁stud ying",
+ "▁study ing",
+ "▁des igner",
+ "▁design er",
+ "lap sed",
+ "lapse d",
+ "laps ed",
+ "l apsed",
+ "▁la at",
+ "▁d ix",
+ "▁di x",
+ "▁integr ated",
+ "▁integrate d",
+ "▁integra ted",
+ "▁in formed",
+ "▁inform ed",
+ "▁be have",
+ "▁beh ave",
+ "▁behav e",
+ "▁la bour",
+ "▁lab our",
+ "est ellt",
+ "cal endar",
+ "▁k illing",
+ "▁kil ling",
+ "▁kill ing",
+ "▁tw itter",
+ "▁ twitter",
+ "ia e",
+ "i ae",
+ "▁histor ique",
+ "DE FAULT",
+ "ia ła",
+ "iał a",
+ "i ała",
+ "▁theoret ical",
+ "▁un ders",
+ "▁und ers",
+ "▁under s",
+ "ля ет",
+ "at an",
+ "ata n",
+ "a tan",
+ "▁s urname",
+ "▁sur name",
+ "▁inter cept",
+ "гла сно",
+ "▁општи ни",
+ "▁t ired",
+ "▁tir ed",
+ "▁ti red",
+ "▁B eth",
+ "▁Be th",
+ "▁Bet h",
+ "▁ад министратив",
+ "L i",
+ "▁Т ур",
+ "▁Ту р",
+ "▁Sc anner",
+ "▁S tern",
+ "▁St ern",
+ "▁Ste rn",
+ "▁Ster n",
+ "▁вме сте",
+ "▁report ing",
+ "▁s ull",
+ "▁su ll",
+ "▁sul l",
+ "ци ей",
+ "ber ts",
+ "bert s",
+ "og onal",
+ "ogo nal",
+ "ő k",
+ "▁i psum",
+ "▁ip sum",
+ "▁seu lement",
+ "▁seul ement",
+ "▁seule ment",
+ "▁Se iten",
+ "▁Seit en",
+ "▁Seite n",
+ "word press",
+ "▁fe aturing",
+ "ist ischen",
+ "isti schen",
+ "istische n",
+ "ju b",
+ "j ub",
+ "▁é tr",
+ "▁ét r",
+ "▁ étr",
+ "▁t ea",
+ "▁te a",
+ "▁adapt ed",
+ "▁sc ales",
+ "▁scale s",
+ "▁scal es",
+ "▁n an",
+ "▁na n",
+ "▁ nan",
+ "get Value",
+ "▁Bl ues",
+ "▁Blue s",
+ "ac les",
+ "acle s",
+ "a cles",
+ "▁st ati",
+ "▁stat i",
+ "▁sta ti",
+ "▁ent itled",
+ "▁R alph",
+ "gra vity",
+ "▁entre pr",
+ "któ ber",
+ "li mat",
+ "lim at",
+ "l imat",
+ "li s",
+ "l is",
+ "De mo",
+ "D emo",
+ "re lation",
+ "rel ation",
+ "▁n ep",
+ "▁ne p",
+ "pro wad",
+ "it is",
+ "iti s",
+ "i tis",
+ "▁p up",
+ "▁pu p",
+ "neh mer",
+ "nehm er",
+ "▁disapp oint",
+ "▁et was",
+ "▁etwa s",
+ "an non",
+ "ann on",
+ "anno n",
+ "▁appro ved",
+ "▁cl ever",
+ "▁cle ver",
+ "Lo ading",
+ "Load ing",
+ "▁ver z",
+ "▁ve rz",
+ "res se",
+ "ress e",
+ "r esse",
+ "▁insp ir",
+ "▁sam pling",
+ "▁B ek",
+ "▁Be k",
+ "}) $.",
+ "})$ .",
+ "} )$.",
+ "▁г рома",
+ "▁spe cie",
+ "▁spec ie",
+ "▁re pub",
+ "▁rep ub",
+ "▁lo ader",
+ "▁load er",
+ "▁ loader",
+ "▁e rf",
+ "▁er f",
+ "▁should er",
+ "ra is",
+ "rai s",
+ "r ais",
+ "▁ма те",
+ "▁мат е",
+ "▁Mon th",
+ "▁Mont h",
+ "▁Mo nth",
+ "▁ Month",
+ "Sc ene",
+ "▁block ing",
+ "▁o cean",
+ "ge ben",
+ "geb en",
+ "g eben",
+ "▁Kil ometer",
+ "▁b edeut",
+ "▁M ix",
+ "▁Mi x",
+ "fm t",
+ "f mt",
+ "▁Nor weg",
+ "▁ID s",
+ "par allel",
+ "▁ant icip",
+ "▁anti cip",
+ "▁re vis",
+ "▁rev is",
+ "ха н",
+ "х ан",
+ "▁с вет",
+ "▁све т",
+ "CA SE",
+ "C ASE",
+ "▁f ührt",
+ "▁führ t",
+ "▁ führt",
+ "▁at omic",
+ "▁atom ic",
+ "▁ atomic",
+ "▁dark ness",
+ "▁Fußball spieler",
+ "▁Ж и",
+ "quis ition",
+ "▁S ieg",
+ "▁Sie g",
+ "▁Si eg",
+ "C irc",
+ "▁c ientí",
+ "ne lle",
+ "nel le",
+ "nell e",
+ "n elle",
+ "SH A",
+ "S HA",
+ "▁u rb",
+ "▁ur b",
+ "▁ urb",
+ "▁k si",
+ "leq slant",
+ "▁ф рон",
+ "▁de fect",
+ "▁def ect",
+ "▁defe ct",
+ "▁r á",
+ "▁ rá",
+ "▁strong er",
+ "▁p ł",
+ "▁commun ities",
+ "ни на",
+ "нин а",
+ "en as",
+ "ena s",
+ "e nas",
+ "ienne nt",
+ "ienn ent",
+ "▁safe ly",
+ "▁saf ely",
+ "▁т я",
+ "▁ тя",
+ "▁ben chmark",
+ "▁Bra un",
+ "method s",
+ "arg ument",
+ "vo s",
+ "v os",
+ "ob ox",
+ "o box",
+ "ро ви",
+ "ров и",
+ "р ови",
+ "▁recher che",
+ "m n",
+ "▁br ings",
+ "▁bring s",
+ "m achine",
+ "CE SS",
+ "CES S",
+ "host s",
+ "hos ts",
+ "▁N Y",
+ "Aut ow",
+ "Auto w",
+ "▁сов ремен",
+ "▁G ary",
+ "▁Gar y",
+ "▁Ga ry",
+ "▁s ensor",
+ "▁sens or",
+ "▁document ed",
+ "▁pr endre",
+ "▁prend re",
+ "▁pe er",
+ "en ix",
+ "eni x",
+ "ha i",
+ "h ai",
+ "ar be",
+ "цен т",
+ "ц ент",
+ "_ (",
+ "▁U RI",
+ "▁ URI",
+ "ев а",
+ "е ва",
+ "▁Re gie",
+ "▁Reg ie",
+ "▁Mon ument",
+ "▁onder werp",
+ "B ag",
+ "ti t",
+ "t it",
+ "▁st ir",
+ "▁n erv",
+ "▁ne rv",
+ "▁ner v",
+ "стор ія",
+ "▁s ov",
+ "▁so v",
+ "▁writ ers",
+ "▁write rs",
+ "▁writer s",
+ "▁sort s",
+ "▁sor ts",
+ "ab solute",
+ "▁difficult ies",
+ "▁par lament",
+ "▁parl ament",
+ "▁IE numerable",
+ "▁dis sol",
+ "▁diss ol",
+ "▁CH ECK",
+ "ar ina",
+ "ari na",
+ "arin a",
+ "in burgh",
+ "D M",
+ "▁e ind",
+ "▁ein d",
+ "▁bud get",
+ "▁cert ains",
+ "▁certain s",
+ "▁för sta",
+ "▁först a",
+ "an ja",
+ "a nja",
+ "▁го дов",
+ "▁год ов",
+ "▁т ек",
+ "▁те к",
+ "▁ тек",
+ "▁D uch",
+ "▁Du ch",
+ "▁Duc h",
+ "gu i",
+ "g ui",
+ "▁Te ams",
+ "▁Team s",
+ "▁мно ги",
+ "Mar ie",
+ "Ma rie",
+ "M arie",
+ "In tegr",
+ "Int egr",
+ "Thread Pool",
+ "ru st",
+ "rus t",
+ "r ust",
+ "í k",
+ "% \"",
+ "en f",
+ "sp l",
+ "s pl",
+ "▁be gun",
+ "▁beg un",
+ "lo u",
+ "l ou",
+ "▁Rewrite Rule",
+ "tu ple",
+ "ane ous",
+ "▁mar ine",
+ "▁mari ne",
+ "▁ marine",
+ "at tan",
+ "att an",
+ "atta n",
+ "ik al",
+ "ika l",
+ "i kal",
+ "▁gradu ated",
+ "il lé",
+ "ill é",
+ "▁про ве",
+ "▁пров е",
+ "▁пр ове",
+ "▁Р оз",
+ "▁Ро з",
+ "', \r",
+ "' ,\r",
+ "▁Pf arr",
+ "▁n ivel",
+ "▁ni vel",
+ "▁пра цю",
+ "mus ic",
+ "▁set Timeout",
+ "ER S",
+ "E RS",
+ "▁E rik",
+ "▁Er ik",
+ "pi t",
+ "p it",
+ "▁Х ро",
+ "▁p ił",
+ "▁pi ł",
+ "▁p eri",
+ "▁per i",
+ "▁pe ri",
+ "до к",
+ "д ок",
+ "us zt",
+ "usz t",
+ "▁B ear",
+ "▁Be ar",
+ "Class Name",
+ "▁Par lament",
+ "▁a ix",
+ "▁ai x",
+ "▁inv ited",
+ "▁P ATH",
+ "▁PA TH",
+ "▁ PATH",
+ "xt er",
+ "x ter",
+ "▁R ace",
+ "▁Ra ce",
+ "▁h echo",
+ "▁he cho",
+ "▁T ower",
+ "▁To wer",
+ "▁Tow er",
+ "▁u tf",
+ "▁ut f",
+ "▁ utf",
+ "act ly",
+ "▁бу де",
+ "▁ang les",
+ "▁angle s",
+ "▁ angles",
+ "ня я",
+ "ouv elles",
+ "ouve lles",
+ "ouvel les",
+ "ouvelle s",
+ "▁cl imate",
+ "▁cli mate",
+ "▁clim ate",
+ "▁sing ing",
+ "▁sin ging",
+ "▁navig ate",
+ ">' ;",
+ "> ';",
+ "ad ows",
+ "ado ws",
+ "adow s",
+ "▁l eta",
+ "▁le ta",
+ "▁let a",
+ "▁S itz",
+ "▁Si tz",
+ "▁Sit z",
+ "▁part itions",
+ "▁partition s",
+ "▁d ock",
+ "▁do ck",
+ "▁doc k",
+ "▁ż y",
+ "▁ ży",
+ "▁alloc ate",
+ "▁benef its",
+ "▁benefit s",
+ "▁n ieder",
+ "▁nie der",
+ "▁ni eder",
+ "xp ath",
+ "x path",
+ "me ck",
+ "äl le",
+ "äll e",
+ "ä lle",
+ "▁cou pling",
+ "▁coup ling",
+ "жи л",
+ "ж ил",
+ "For Key",
+ "ar gent",
+ "arg ent",
+ "cl ou",
+ "clo u",
+ "c lou",
+ "▁instru ments",
+ "▁instrument s",
+ "▁ent hus",
+ "▁m ég",
+ "▁mé g",
+ "▁Па в",
+ "▁R ach",
+ "▁Ra ch",
+ "-- ---",
+ "---- -",
+ "--- --",
+ "- ----",
+ "▁API s",
+ "▁AP Is",
+ "▁V ier",
+ "▁Vi er",
+ "▁Vie r",
+ "C md",
+ "it ore",
+ "ito re",
+ "itor e",
+ "▁C uba",
+ "▁Cu ba",
+ "▁Cub a",
+ "▁dátum mal",
+ "▁embed ding",
+ "std io",
+ "▁Gil bert",
+ "▁ge prüft",
+ "▁st ating",
+ "▁stat ing",
+ "▁sta ting",
+ "▁stati ng",
+ "▁trigger s",
+ "▁trig gers",
+ "+ =",
+ "▁spé cial",
+ "▁del iber",
+ "▁deli ber",
+ "ми н",
+ "м ин",
+ "Pro du",
+ "Pr odu",
+ "P rodu",
+ "▁St ati",
+ "▁Stat i",
+ "▁Sta ti",
+ "▁z us",
+ "▁zu s",
+ "kt ionen",
+ "ktion en",
+ "Dispatch er",
+ "id al",
+ "ida l",
+ "i dal",
+ "▁L P",
+ "▁ LP",
+ "op tera",
+ "opt era",
+ "opter a",
+ "▁e star",
+ "▁est ar",
+ "▁es tar",
+ "▁esta r",
+ "▁зна чи",
+ "с мо",
+ "ous es",
+ "ouse s",
+ "o uses",
+ "eng ono",
+ "engo no",
+ "▁W PF",
+ "pub lish",
+ "▁t eor",
+ "▁te or",
+ "el if",
+ "eli f",
+ "▁e rg",
+ "▁er g",
+ "▁ erg",
+ "▁separ ation",
+ "Pa n",
+ "P an",
+ "▁Or chestra",
+ "Pe ter",
+ "P eter",
+ "bound s",
+ "b ounds",
+ "▁Shakespe are",
+ "▁cant ante",
+ "▁d emi",
+ "▁de mi",
+ "▁dem i",
+ "▁Pop ular",
+ "ф р",
+ "ar ring",
+ "arr ing",
+ "ци н",
+ "ц ин",
+ "▁И с",
+ "vo n",
+ "v on",
+ "▁subst itution",
+ "▁lí nea",
+ "\\}$ .",
+ "\\} $.",
+ "\\ }$.",
+ "com o",
+ "co mo",
+ "c omo",
+ "▁ва ж",
+ "wa gen",
+ "w agen",
+ "▁rare ly",
+ "▁period s",
+ "▁peri ods",
+ "gl ob",
+ "g lob",
+ "▁F rid",
+ "▁Fr id",
+ "▁Fri d",
+ "▁T err",
+ "▁Te rr",
+ "▁Ter r",
+ "▁Re lease",
+ "▁ Release",
+ "Brain z",
+ "▁гра ф",
+ "▁ граф",
+ "DI S",
+ "D IS",
+ "compat ible",
+ "▁po č",
+ "LI N",
+ "L IN",
+ "▁K ällor",
+ "▁A rizona",
+ "pp y",
+ "p py",
+ "Se q",
+ "S eq",
+ "▁A in",
+ "▁T ourn",
+ "▁To urn",
+ "▁Tour n",
+ "br ow",
+ "bro w",
+ "b row",
+ "▁K ör",
+ "▁Kö r",
+ "▁a sh",
+ "▁as h",
+ "▁ ash",
+ "ogene ous",
+ "▁dia lect",
+ "▁насе ља",
+ "mysql i",
+ "mysq li",
+ "цо в",
+ "ц ов",
+ "▁f lor",
+ "▁fl or",
+ "▁flo r",
+ "▁ф ло",
+ "IA B",
+ "I AB",
+ "▁With in",
+ "▁Wit hin",
+ "^ (",
+ "▁b ois",
+ "▁bo is",
+ "▁t ank",
+ "▁tan k",
+ "▁aff ili",
+ "▁h ijo",
+ "▁hij o",
+ "▁hi jo",
+ "▁K ate",
+ "▁Kat e",
+ "▁Ka te",
+ "▁Ver l",
+ "▁Ve rl",
+ "▁M iami",
+ "▁Mi ami",
+ "▁type script",
+ "▁types cript",
+ "њ у",
+ "▁V ern",
+ "▁Ver n",
+ "▁Ve rn",
+ "▁ви со",
+ "ie mann",
+ "iem ann",
+ "i emann",
+ "▁co verage",
+ "▁cover age",
+ "br ie",
+ "b rie",
+ "▁Start ing",
+ "▁Star ting",
+ "num py",
+ "▁J enkins",
+ "▁Jen kins",
+ "▁k ét",
+ "▁ké t",
+ "▁g rup",
+ "▁gr up",
+ "▁gru p",
+ "▁S cient",
+ "▁Sc ient",
+ "▁Sci ent",
+ "▁inter rupt",
+ "▁b lob",
+ "▁bl ob",
+ "▁blo b",
+ "▁ blob",
+ "ug el",
+ "uge l",
+ "u gel",
+ "▁Or th",
+ "▁Ort h",
+ "ab ama",
+ "aba ma",
+ "▁B apt",
+ "▁Ba pt",
+ "ow nik",
+ "own ik",
+ "▁бы ть",
+ "▁Jul ius",
+ "▁Ju lius",
+ "▁Juli us",
+ "▁П рез",
+ "▁Пре з",
+ "▁subst itute",
+ "support ed",
+ "supp orted",
+ "ch y",
+ "c hy",
+ "egy zetek",
+ "▁Per formance",
+ "▁Perform ance",
+ "less ly",
+ "Con structor",
+ "▁ext ending",
+ "▁extend ing",
+ "▁Mus lim",
+ "Over flow",
+ "▁J enn",
+ "▁Je nn",
+ "▁Jen n",
+ "▁produ z",
+ "▁prod uz",
+ "мі ї",
+ "м ії",
+ "▁país es",
+ "▁e ux",
+ "▁eu x",
+ "▁f ate",
+ "▁fa te",
+ "▁fat e",
+ "ol oge",
+ "olog e",
+ "olo ge",
+ "у к",
+ "▁wo bei",
+ "▁wob ei",
+ "▁S achsen",
+ "▁Sach sen",
+ "▁са йт",
+ "▁сай т",
+ "Mod els",
+ "Model s",
+ "Mode ls",
+ "▁F ast",
+ "▁Fa st",
+ "bes ondere",
+ "▁F R",
+ "▁ FR",
+ "▁a con",
+ "▁ac on",
+ "▁ acon",
+ "▁Den kmal",
+ "▁an ch",
+ "▁anc h",
+ "▁ anch",
+ "▁públic o",
+ "▁T as",
+ "▁Ta s",
+ "▁c and",
+ "▁can d",
+ "▁ca nd",
+ "▁pa ździer",
+ "▁М он",
+ "▁Мо н",
+ "▁vers us",
+ "ru t",
+ "r ut",
+ "G T",
+ "▁insert ing",
+ "▁inser ting",
+ "▁can ad",
+ "▁ca nad",
+ "є м",
+ "▁M etro",
+ "▁Met ro",
+ "▁Herz og",
+ "Ign ore",
+ "▁decre ase",
+ "▁п ун",
+ "▁пу н",
+ "▁F ischer",
+ "▁M all",
+ "▁Ma ll",
+ "▁Mal l",
+ "▁n örd",
+ "io stream",
+ "i ostream",
+ "▁Lux emb",
+ "pay load",
+ "▁Ze itung",
+ "▁Zeit ung",
+ "▁mod ifying",
+ "▁modify ing",
+ "▁C her",
+ "▁Ch er",
+ "▁Che r",
+ "▁Lu ci",
+ "▁Luc i",
+ "n x",
+ "▁lo ose",
+ "▁top ics",
+ "▁topic s",
+ "▁var ied",
+ "▁vari ed",
+ "▁va ried",
+ "▁p g",
+ "▁ pg",
+ "aj es",
+ "aje s",
+ "a jes",
+ "um m",
+ "u mm",
+ "View s",
+ "▁B eau",
+ "▁Be au",
+ "MA P",
+ "M AP",
+ "ip eline",
+ "ipe line",
+ "▁Inter est",
+ "ar ith",
+ "ari th",
+ "▁seg ún",
+ "▁Geme ins",
+ "▁Att ribute",
+ "▁ Attribute",
+ "comm unity",
+ "▁цент р",
+ "▁kil ometer",
+ "▁kilomet er",
+ "▁kilom eter",
+ "▁é conom",
+ "▁éc onom",
+ "lar ation",
+ "▁к ъ",
+ "▁car riage",
+ "▁carri age",
+ "▁L ane",
+ "▁La ne",
+ "▁Lan e",
+ "▁не об",
+ "ku r",
+ "k ur",
+ "▁A F",
+ "▁ AF",
+ "IN TER",
+ "INT ER",
+ ")) $",
+ ") )$",
+ "▁be ide",
+ "▁bei de",
+ "dest ination",
+ "▁font s",
+ "▁fon ts",
+ "▁ fonts",
+ "append Child",
+ "▁M AR",
+ "▁MA R",
+ "▁g ay",
+ "▁ga y",
+ "mi l",
+ "m il",
+ "le sh",
+ "les h",
+ "l esh",
+ "è t",
+ "▁W ang",
+ "▁Wa ng",
+ "▁Y ears",
+ "▁Year s",
+ "▁Ye ars",
+ "▁S ymbol",
+ "▁Sym bol",
+ "▁ Symbol",
+ "Li ve",
+ "L ive",
+ "qu ency",
+ "▁U sers",
+ "▁Use rs",
+ "▁User s",
+ "▁Us ers",
+ "▁ Users",
+ "▁Un icode",
+ "▁S au",
+ "▁Sa u",
+ "▁t ons",
+ "▁to ns",
+ "▁ton s",
+ "▁ tons",
+ "▁Н і",
+ "▁кра ї",
+ "▁ краї",
+ "AX I",
+ "▁P ick",
+ "▁Pi ck",
+ "▁Pic k",
+ "A I",
+ "▁h ath",
+ "▁ha th",
+ "▁hat h",
+ "▁a inda",
+ "▁ain da",
+ "▁p apa",
+ "▁pa pa",
+ "▁pap a",
+ "▁C enso",
+ "▁B ald",
+ "▁Ba ld",
+ "▁Bal d",
+ "▁Насе ље",
+ "▁sim ulations",
+ "▁simulation s",
+ "▁j aren",
+ "▁ja ren",
+ "▁jar en",
+ "▁inher ited",
+ "▁inherit ed",
+ "▁то й",
+ "▁ той",
+ "▁fe els",
+ "▁feel s",
+ "▁fee ls",
+ "ress ion",
+ "r ession",
+ "▁o któber",
+ "bi d",
+ "b id",
+ "ás i",
+ "á si",
+ "▁m uss",
+ "▁mus s",
+ "▁mu ss",
+ "vent ory",
+ "▁me ist",
+ "▁b ore",
+ "▁bo re",
+ "▁bor e",
+ "▁sl ider",
+ "▁slide r",
+ "▁sli der",
+ "▁ slider",
+ "де ли",
+ "\\ ;",
+ "▁extra cted",
+ "▁extract ed",
+ "ку р",
+ "к ур",
+ "Ed ge",
+ "▁per f",
+ "▁pe rf",
+ "▁Brig ade",
+ "▁гра д",
+ "▁ град",
+ "ie nie",
+ "ien ie",
+ "i enie",
+ "▁N orden",
+ "▁Nor den",
+ "▁Nord en",
+ "▁c ancer",
+ "▁can cer",
+ "\" /",
+ "C ur",
+ "▁С ере",
+ "▁Се ре",
+ "▁Сер е",
+ "▁liqu id",
+ "str ucture",
+ "struct ure",
+ "▁cho osing",
+ "▁Per l",
+ "▁Pe rl",
+ "Si de",
+ "S ide",
+ "ü s",
+ "ри тор",
+ "рито р",
+ "рит ор",
+ "▁k ost",
+ "▁ko st",
+ "▁pa ckets",
+ "▁pack ets",
+ "▁packet s",
+ "▁кото рого",
+ "▁Com un",
+ "▁Co mun",
+ "▁f ingers",
+ "▁fin gers",
+ "▁finger s",
+ "ográ fica",
+ "> :",
+ "▁champion nat",
+ "▁bl ieb",
+ "▁S itu",
+ "▁Si tu",
+ "▁Sit u",
+ "▁su ic",
+ "an dis",
+ "and is",
+ "Fr e",
+ "F re",
+ "▁C onc",
+ "▁Con c",
+ "▁Co nc",
+ "▁re public",
+ "▁rep ublic",
+ "▁repub lic",
+ "▁ar med",
+ "▁arm ed",
+ "▁h ell",
+ "▁he ll",
+ "▁hel l",
+ "▁ hell",
+ "▁h ög",
+ "▁hö g",
+ "rag ma",
+ "▁en se",
+ "▁ens e",
+ "▁ ense",
+ "▁ac res",
+ "▁В ід",
+ "▁Ві д",
+ "▁Re form",
+ "▁Ref orm",
+ "Main Activity",
+ "ke eper",
+ "keep er",
+ "kee per",
+ "er b",
+ "e rb",
+ "▁mon aster",
+ "sub subsection",
+ "▁Ди в",
+ "▁cre ature",
+ "▁indic ating",
+ "▁url s",
+ "▁ur ls",
+ "▁ urls",
+ "▁k ein",
+ "▁ke in",
+ "об раз",
+ "обра з",
+ "pi ck",
+ "pic k",
+ "p ick",
+ "▁Ad mir",
+ "▁old est",
+ "▁ol dest",
+ "▁m uz",
+ "▁mu z",
+ "▁contra diction",
+ "▁contrad iction",
+ "▁contradict ion",
+ "▁prob abil",
+ "illi ant",
+ "▁p av",
+ "▁pa v",
+ "▁pa pel",
+ "▁pap el",
+ "ub s",
+ "u bs",
+ "▁ж ена",
+ "▁же на",
+ "▁жен а",
+ "▁ жена",
+ "AM L",
+ "A ML",
+ "▁re cip",
+ "▁rec ip",
+ "▁reci p",
+ "▁C OL",
+ "▁CO L",
+ "▁ COL",
+ "ad ded",
+ "add ed",
+ "▁cl ue",
+ "▁Uk raine",
+ "▁Ukrain e",
+ "▁jel ent",
+ "че нь",
+ "чен ь",
+ "ч ень",
+ "▁mathemat ics",
+ "Ac cept",
+ "▁с от",
+ "▁со т",
+ "▁се вер",
+ "▁isol ated",
+ "▁по я",
+ "w ür",
+ "Ro uter",
+ "Route r",
+ "Rout er",
+ "R outer",
+ "CA T",
+ "C AT",
+ "rg b",
+ "r gb",
+ "▁L ov",
+ "▁Lo v",
+ "mu table",
+ "mut able",
+ "m utable",
+ "▁W es",
+ "▁We s",
+ "▁Ital ien",
+ "Dra g",
+ "Dr ag",
+ "D rag",
+ "en ium",
+ "eni um",
+ "at ting",
+ "att ing",
+ "atti ng",
+ "tc p",
+ "t cp",
+ "▁erfolg te",
+ "▁Be it",
+ "▁Bei t",
+ "га то",
+ "▁System s",
+ "▁Syst ems",
+ "▁re serve",
+ "▁res erve",
+ "er ee",
+ "ere e",
+ "e ree",
+ "▁Па ри",
+ "▁Пар и",
+ "▁з али",
+ "▁за ли",
+ "▁re nt",
+ "▁r ent",
+ "▁ren t",
+ "▁ rent",
+ "▁s unt",
+ "▁su nt",
+ "▁sun t",
+ "▁G irls",
+ "▁Girl s",
+ "▁Gir ls",
+ "▁Er nest",
+ "▁Ern est",
+ "▁f its",
+ "▁fi ts",
+ "▁fit s",
+ "▁op pon",
+ "▁opp on",
+ "▁живе ло",
+ "▁av aient",
+ "▁Flor ence",
+ "▁Flo rence",
+ "▁чи сле",
+ "▁eng ines",
+ "▁engine s",
+ "D ynamic",
+ "▁stycz nia",
+ "▁b ias",
+ "▁bi as",
+ "▁Ex change",
+ "ди й",
+ "▁histor iques",
+ "▁historique s",
+ "▁H ä",
+ "ho d",
+ "h od",
+ "▁w ł",
+ "sch ap",
+ "▁l ac",
+ "▁la c",
+ "▁ lac",
+ "▁F oi",
+ "▁Fo i",
+ "▁d well",
+ "▁dw ell",
+ "▁Unter nehmen",
+ "UR N",
+ "▁kilomet res",
+ "▁Одна ко",
+ "к ли",
+ "▁S ri",
+ "▁Sr i",
+ "Gr oups",
+ "Group s",
+ "min d",
+ "mi nd",
+ "m ind",
+ "os lov",
+ "fer n",
+ "fe rn",
+ "f ern",
+ "eg u",
+ "e gu",
+ "abel ed",
+ "abe led",
+ "F iddle",
+ "▁Cent ury",
+ "/ -",
+ "▁J egyzetek",
+ "He n",
+ "H en",
+ "ens emble",
+ "▁G ut",
+ "▁Gu t",
+ "_{ {\\",
+ "_ {{\\",
+ "▁ran king",
+ "▁rank ing",
+ "+ $",
+ "ал а",
+ "а ла",
+ "▁# {",
+ "▁ #{",
+ "im ientos",
+ "imiento s",
+ "ach im",
+ "ac him",
+ "achi m",
+ "ri des",
+ "ride s",
+ "rid es",
+ "r ides",
+ "▁K laus",
+ "▁Kl aus",
+ "▁int end",
+ "▁inte nd",
+ "▁inten d",
+ "▁Kent ucky",
+ "ci pe",
+ "cip e",
+ "c ipe",
+ "▁D ienst",
+ "▁Di enst",
+ "▁situ ated",
+ "▁pó ź",
+ "▁s crit",
+ "▁sc rit",
+ "▁scr it",
+ "▁scri t",
+ "cl ip",
+ "cli p",
+ "c lip",
+ "не т",
+ "н ет",
+ "ta bles",
+ "table s",
+ "tab les",
+ "t ables",
+ "▁N ied",
+ "▁Ni ed",
+ "▁Nie d",
+ "▁Mc K",
+ "▁pow st",
+ "▁kun nen",
+ "▁Ev ans",
+ "▁Eva ns",
+ "ж ды",
+ "ва ть",
+ "ват ь",
+ "uch ar",
+ "uc har",
+ "ucha r",
+ "u char",
+ "▁res idents",
+ "▁resid ents",
+ "▁resident s",
+ "ia k",
+ "i ak",
+ "▁Re sol",
+ "▁Res ol",
+ "▁ Resol",
+ "▁ve ces",
+ "▁vec es",
+ "▁satisf ying",
+ "▁satisfy ing",
+ "IN F",
+ "I NF",
+ "▁с ин",
+ "▁си н",
+ "▁cross ing",
+ "ib en",
+ "ibe n",
+ "i ben",
+ "▁ши ро",
+ "pt o",
+ "p to",
+ "IL L",
+ "I LL",
+ "▁ро ль",
+ "▁a ktiv",
+ "▁akt iv",
+ "▁обра щения",
+ "Wik ispecies",
+ "▁Hö he",
+ "cr o",
+ "c ro",
+ "══ ══",
+ "al tra",
+ "alt ra",
+ "▁FI LE",
+ "▁ FILE",
+ "▁u ps",
+ "▁up s",
+ "▁ ups",
+ "▁al location",
+ "▁all ocation",
+ "▁alloc ation",
+ "▁allo cation",
+ "Mich ael",
+ "▁acknow led",
+ "Lin ux",
+ "▁met ros",
+ "▁ metros",
+ "tt e",
+ "t te",
+ "af en",
+ "a fen",
+ "▁x code",
+ "▁тра ди",
+ "spe cies",
+ "spec ies",
+ "s pecies",
+ "▁inj ury",
+ "▁са мы",
+ "▁сам ы",
+ "▁l attice",
+ "M aterial",
+ "and enburg",
+ "anden burg",
+ "▁huvud staden",
+ "st ory",
+ "sto ry",
+ "stor y",
+ "▁var ying",
+ "▁vary ing",
+ "▁kö vet",
+ "▁Росси йской",
+ "ir se",
+ "irs e",
+ "▁d rum",
+ "▁dr um",
+ "▁dru m",
+ "Pr essed",
+ "Press ed",
+ "Pres sed",
+ "La r",
+ "L ar",
+ "▁A gu",
+ "▁Ag u",
+ "▁w eil",
+ "▁we il",
+ "▁comm ence",
+ "▁Seg ún",
+ "Gest ure",
+ "Sh ape",
+ "S hape",
+ "▁V ors",
+ "▁Vo rs",
+ "▁Vor s",
+ "▁succ ès",
+ "▁correct ed",
+ "▁corre cted",
+ "▁corr ected",
+ "K ar",
+ "▁cr uel",
+ "▁cru el",
+ "▁polit ico",
+ "▁Schrift steller",
+ "▁ris ult",
+ "et u",
+ "e tu",
+ "arch iv",
+ "▁gén ero",
+ "▁gé nero",
+ "▁L ü",
+ "▁tri umph",
+ "OR S",
+ "O RS",
+ "L u",
+ "▁person nel",
+ "▁personn el",
+ "▁personne l",
+ "▁H ills",
+ "▁Hill s",
+ "▁Hil ls",
+ "as set",
+ "ass et",
+ "asse t",
+ "do min",
+ "dom in",
+ "d omin",
+ "Rece ive",
+ "▁O ak",
+ "▁K no",
+ "▁Kn o",
+ "▁The ory",
+ "ir ie",
+ "iri e",
+ "i rie",
+ "ow an",
+ "owa n",
+ "o wan",
+ "▁est ava",
+ "▁esta va",
+ "▁exec utes",
+ "▁execute s",
+ "▁execut es",
+ "й т",
+ "óp ez",
+ "ó pez",
+ "по ло",
+ "пол о",
+ "п оло",
+ "ét ica",
+ "▁назва ние",
+ "▁conver ges",
+ "▁not re",
+ "▁no tre",
+ "▁pop ulated",
+ "▁popula ted",
+ "▁popul ated",
+ "▁populate d",
+ "▁mov ements",
+ "▁move ments",
+ "▁movement s",
+ "▁statist ical",
+ "▁Zwe iten",
+ "qu in",
+ "qui n",
+ "▁import antes",
+ "▁important es",
+ "▁importante s",
+ "▁k lein",
+ "▁kle in",
+ "▁kl ein",
+ "▁Seg unda",
+ "schließ end",
+ "Fail ure",
+ "na r",
+ "n ar",
+ "da g",
+ "d ag",
+ "▁ru olo",
+ "▁f iction",
+ "▁fi ction",
+ "▁fic tion",
+ "▁fict ion",
+ "▁исполь зу",
+ "▁cr isis",
+ "▁Get ting",
+ ", %",
+ "▁ар мии",
+ "▁cam pus",
+ "▁camp us",
+ "▁fo oter",
+ "▁foot er",
+ "▁foo ter",
+ "▁ footer",
+ "▁d ías",
+ "▁día s",
+ "▁dí as",
+ "ба н",
+ "б ан",
+ "▁liber ty",
+ "▁libert y",
+ "▁g h",
+ "▁ gh",
+ "▁cham ber",
+ "▁district s",
+ "▁exc ited",
+ "▁can ción",
+ "ter o",
+ "te ro",
+ "t ero",
+ "▁Work ing",
+ "▁Wor king",
+ "▁czę ści",
+ "ль ный",
+ "▁f orum",
+ "▁for um",
+ "▁fo rum",
+ "▁ forum",
+ "▁E he",
+ "▁ка та",
+ "▁ ката",
+ "it ations",
+ "itation s",
+ "itat ions",
+ "To ols",
+ "Tool s",
+ "T ools",
+ "ach iv",
+ "achi v",
+ "▁c res",
+ "▁cre s",
+ "▁cr es",
+ "as to",
+ "ast o",
+ "a sto",
+ "▁re ver",
+ "▁r ever",
+ "▁rev er",
+ "▁reve r",
+ "▁n azionale",
+ "▁naz ionale",
+ "▁do ors",
+ "▁door s",
+ "▁N ancy",
+ "▁Nan cy",
+ "▁is lands",
+ "▁island s",
+ "Im p",
+ "I mp",
+ "▁Ch air",
+ "▁Cha ir",
+ "▁v orm",
+ "▁vo rm",
+ "▁vor m",
+ "se in",
+ "s ein",
+ "▁до ку",
+ "er set",
+ "ers et",
+ "▁tät ig",
+ "▁K rit",
+ "▁Kr it",
+ "▁п я",
+ "▁cons ervation",
+ "▁conserv ation",
+ "▁Part ido",
+ "▁Parti do",
+ "min ipage",
+ "Valid ator",
+ "▁rec overy",
+ "▁recover y",
+ "▁NA SA",
+ "▁NAS A",
+ "▁br east",
+ "▁bre ast",
+ "il ty",
+ "ilt y",
+ "an aly",
+ "ana ly",
+ "anal y",
+ "el ines",
+ "eli nes",
+ "eline s",
+ "elin es",
+ "e lines",
+ "▁S aturday",
+ "em ark",
+ "e mark",
+ "ce j",
+ "c ej",
+ "Ze ro",
+ "Z ero",
+ "▁Tur ner",
+ "▁Turn er",
+ "sec ure",
+ "Ex ists",
+ "▁R ick",
+ "▁Ric k",
+ "▁Ri ck",
+ "ev alu",
+ "eval u",
+ "e valu",
+ "ct rl",
+ "ctr l",
+ "c trl",
+ "▁com pression",
+ "▁comp ression",
+ "▁compr ession",
+ "▁compress ion",
+ "▁C URL",
+ "text color",
+ ")\\ ,",
+ ") \\,",
+ "long rightarrow",
+ "▁Fern seh",
+ "▁ Fernseh",
+ "ic ha",
+ "ich a",
+ "i cha",
+ "▁l oi",
+ "▁lo i",
+ "▁О те",
+ "▁От е",
+ "▁c ave",
+ "▁ca ve",
+ "▁cav e",
+ "▁do zen",
+ "▁expla ining",
+ "▁expl aining",
+ "▁explain ing",
+ "▁in nov",
+ "▁inn ov",
+ "▁Nich olas",
+ "▁dia meter",
+ "▁diam eter",
+ "▁M arian",
+ "▁Mar ian",
+ "▁Ma rian",
+ "▁Maria n",
+ "▁Mari an",
+ "▁f ires",
+ "▁fire s",
+ "▁fi res",
+ "▁fir es",
+ "▁art ifact",
+ "▁ artifact",
+ "▁Par ker",
+ "▁Park er",
+ "▁B und",
+ "▁Bu nd",
+ "▁Bun d",
+ "▁v erte",
+ "▁ver te",
+ "▁vert e",
+ "▁ verte",
+ "▁tal ent",
+ "▁tale nt",
+ "▁Lu cas",
+ "▁Luc as",
+ "re verse",
+ "▁folg enden",
+ "▁S ah",
+ "▁Sa h",
+ "ject ions",
+ "je ctions",
+ "jection s",
+ "▁inve ce",
+ "▁cost itu",
+ "▁s sl",
+ "▁ss l",
+ "▁ ssl",
+ "}} ^",
+ "} }^",
+ "▁viol ent",
+ "▁s pos",
+ "▁sp os",
+ "▁spo s",
+ "Ro ut",
+ "R out",
+ "jd k",
+ "j dk",
+ "▁за ме",
+ "▁f urent",
+ "▁fur ent",
+ "▁fu rent",
+ "an dal",
+ "and al",
+ "anda l",
+ "H om",
+ "▁Sen ior",
+ "▁p ounds",
+ "▁Disc ogs",
+ "▁з е",
+ "▁ зе",
+ "'} [",
+ "' }[",
+ "▁Napole on",
+ "ordin ates",
+ "ordinate s",
+ "à n",
+ "▁k urz",
+ "▁kur z",
+ "▁v ere",
+ "▁ver e",
+ "▁ve re",
+ "▁ vere",
+ "▁re use",
+ "▁Г ен",
+ "▁Ге н",
+ "▁S yst",
+ "▁Sy st",
+ "▁disapp eared",
+ "▁disappear ed",
+ "▁W atch",
+ "▁Wat ch",
+ "▁ Watch",
+ "bibli othek",
+ "▁кор пу",
+ "▁C s",
+ "▁} `",
+ "▁ }`",
+ "▁r ör",
+ "▁де ла",
+ "▁ дела",
+ "V B",
+ "▁calcul us",
+ "▁calc ulus",
+ "ро да",
+ "род а",
+ "▁jud gment",
+ "at ile",
+ "ati le",
+ "▁long ue",
+ "▁lon gue",
+ "▁H us",
+ "▁Hu s",
+ "J ac",
+ "}} )",
+ "} })",
+ "RI PT",
+ "IAB ot",
+ "▁ap ós",
+ "▁a ston",
+ "▁as ton",
+ "▁ast on",
+ "Web achiv",
+ "▁URL s",
+ "▁co at",
+ "▁э коно",
+ "▁l ear",
+ "▁le ar",
+ "▁ lear",
+ "ext ensions",
+ "extension s",
+ "▁Class ic",
+ "T I",
+ "▁T age",
+ "▁Tag e",
+ "▁Ta ge",
+ "▁l á",
+ "▁ lá",
+ "▁s emb",
+ "▁se mb",
+ "▁sem b",
+ "▁développ ement",
+ "IS TS",
+ "IST S",
+ "▁sol ves",
+ "▁solve s",
+ ",\\ ,",
+ ", \\,",
+ "▁чем пі",
+ "ord inary",
+ "ordin ary",
+ "▁B av",
+ "▁Ba v",
+ "▁much os",
+ "▁mu chos",
+ "▁mucho s",
+ "S elf",
+ "▁Ма й",
+ "▁D iet",
+ "▁Die t",
+ "▁Di et",
+ "▁necess ity",
+ "ві д",
+ "в ід",
+ "▁m ano",
+ "▁ma no",
+ "▁man o",
+ "▁С р",
+ "▁car re",
+ "▁Cam era",
+ "▁Camer a",
+ "▁ Camera",
+ "▁N arod",
+ "▁Na rod",
+ "▁Nar od",
+ "▁Ph one",
+ "▁Pho ne",
+ "▁ Phone",
+ "▁pol ym",
+ "▁poly m",
+ "im ore",
+ "imo re",
+ "i more",
+ "is Empty",
+ "▁Hou ston",
+ "▁Re ce",
+ "▁Rec e",
+ "▁ Rece",
+ "▁present ation",
+ "▁pres entation",
+ "▁presenta tion",
+ "▁ presentation",
+ "ни ципа",
+ "ници па",
+ "▁D b",
+ "▁ Db",
+ "▁conf ident",
+ "▁} {",
+ "▁ }{",
+ "▁bul let",
+ "▁ bullet",
+ "▁{ },",
+ "▁{} ,",
+ "AN GE",
+ "ANG E",
+ "▁No tre",
+ "▁Not re",
+ "ch in",
+ "chi n",
+ "c hin",
+ "▁Dr agon",
+ "▁Drag on",
+ "▁Dra gon",
+ "er ca",
+ "erc a",
+ "ia li",
+ "ial i",
+ "i ali",
+ "▁as set",
+ "▁ass et",
+ "▁asse t",
+ "▁ asset",
+ "▁mu ito",
+ "▁muit o",
+ "▁deep ly",
+ "▁rest riction",
+ "▁restrict ion",
+ "▁com merce",
+ "▁commer ce",
+ "▁ commerce",
+ "▁B omb",
+ "▁Bo mb",
+ "▁Bom b",
+ "c aught",
+ "q q",
+ "▁A rag",
+ "▁Ar ag",
+ "▁Ara g",
+ "▁не мец",
+ "▁Anal ysis",
+ "▁člán ku",
+ "▁b aby",
+ "▁ba by",
+ "▁e chter",
+ "▁о дного",
+ "▁од ного",
+ "▁одно го",
+ "же на",
+ "жен а",
+ "ж ена",
+ "▁white space",
+ "▁whites pace",
+ "ç u",
+ "LI ST",
+ "L IST",
+ "fr ique",
+ "fri que",
+ "f rique",
+ "▁v arias",
+ "▁var ias",
+ "▁vari as",
+ "▁va rias",
+ "▁W it",
+ "▁Wi t",
+ "▁Lic encia",
+ "Ex it",
+ "▁sie rp",
+ "▁sier p",
+ "▁ass emb",
+ "▁asse mb",
+ "▁split ting",
+ "▁spl itting",
+ "▁pa lace",
+ "▁pal ace",
+ "▁b locked",
+ "▁block ed",
+ "▁bound aries",
+ "▁iter ations",
+ "▁iteration s",
+ "▁Rot ten",
+ "▁Ver kehr",
+ "▁we er",
+ "Test s",
+ "T ests",
+ "if ting",
+ "ift ing",
+ "▁reg ul",
+ "▁pers ist",
+ "▁Sol ution",
+ "p b",
+ "▁col lapse",
+ "▁ collapse",
+ "▁arr ested",
+ "▁arrest ed",
+ "▁pred icate",
+ "▁Z one",
+ "▁Zo ne",
+ "▁ Zone",
+ "▁in gen",
+ "▁ing en",
+ "▁ ingen",
+ "zá lez",
+ "▁b anks",
+ "▁bank s",
+ "▁ban ks",
+ "pl ant",
+ "plan t",
+ "pla nt",
+ "p lant",
+ "▁N ella",
+ "▁Ne lla",
+ "▁Nel la",
+ "▁Nell a",
+ "▁б ан",
+ "▁ба н",
+ "▁ бан",
+ "▁S now",
+ "▁Sn ow",
+ "▁Kre uz",
+ "í cio",
+ "▁en ters",
+ "▁ent ers",
+ "▁enter s",
+ "▁ex pose",
+ "▁exp ose",
+ "▁expos e",
+ "č i",
+ "ши е",
+ "Qu al",
+ "Q ual",
+ "▁lands cape",
+ "▁пода цима",
+ "ma i",
+ "m ai",
+ "st ag",
+ "sta g",
+ "s tag",
+ "ова ний",
+ "DE F",
+ "D EF",
+ "[] {",
+ "[ ]{",
+ "▁derni ère",
+ "ic ut",
+ "i cut",
+ "▁X ml",
+ "▁ Xml",
+ "▁sub group",
+ "▁Pol sce",
+ "▁W arning",
+ "▁War ning",
+ "▁ Warning",
+ "▁veh icles",
+ "▁vehicle s",
+ "io t",
+ "i ot",
+ "▁d ll",
+ "▁ dll",
+ "ro nt",
+ "ron t",
+ "r ont",
+ "▁Lou ise",
+ "▁Louis e",
+ "▁a ra",
+ "▁ar a",
+ "▁ ara",
+ "▁S cala",
+ "▁Sc ala",
+ "▁canon ical",
+ "▁pl acing",
+ "▁pla cing",
+ "ER Y",
+ "E RY",
+ "▁J ag",
+ "▁Ja g",
+ "▁v irus",
+ "▁vi rus",
+ "▁vir us",
+ "em u",
+ "e mu",
+ "▁} );\r",
+ "▁}); \r",
+ "▁}) ;\r",
+ "▁м м",
+ "▁Tr ying",
+ "▁Try ing",
+ "▁Lex ikon",
+ "ab ord",
+ "abor d",
+ "▁exped ition",
+ "▁demand ed",
+ "▁demande d",
+ "Z yg",
+ "le in",
+ "lei n",
+ "l ein",
+ "▁verw endet",
+ "ри на",
+ "рин а",
+ "wo l",
+ "w ol",
+ "▁p ivot",
+ "▁одна ко",
+ "▁propri et",
+ "▁a wards",
+ "▁aw ards",
+ "▁award s",
+ "to ut",
+ "t out",
+ "▁as sim",
+ "▁ass im",
+ "▁St orm",
+ "▁Sto rm",
+ "Li mit",
+ "L imit",
+ "el in",
+ "eli n",
+ "e lin",
+ "we alth",
+ "ue z",
+ "u ez",
+ "▁rap present",
+ "▁rappres ent",
+ "▁re sta",
+ "▁r esta",
+ "▁res ta",
+ "▁rest a",
+ "▁gegründ et",
+ "▁journal ist",
+ "is ie",
+ "isi e",
+ "▁fac ility",
+ "▁facil ity",
+ "il led",
+ "ill ed",
+ "ille d",
+ "ul k",
+ "▁P K",
+ "▁ PK",
+ "An chor",
+ "▁_ )",
+ "▁ _)",
+ "V F",
+ "LA B",
+ "L AB",
+ "▁n å",
+ "od os",
+ "odo s",
+ "▁bill ion",
+ "vir ti",
+ "virt i",
+ "▁Je ux",
+ "юз а",
+ "ю за",
+ "tom cat",
+ "▁ch arts",
+ "▁char ts",
+ "▁chart s",
+ "▁ charts",
+ "▁B undle",
+ "▁Bund le",
+ "▁ Bundle",
+ "▁l st",
+ "▁ls t",
+ "▁ lst",
+ "▁ex er",
+ "▁fem ales",
+ "▁female s",
+ "▁oblig ed",
+ "▁a by",
+ "▁ab y",
+ "▁ aby",
+ "roll ed",
+ "rol led",
+ "rolle d",
+ "dr i",
+ "d ri",
+ "▁S che",
+ "▁Sch e",
+ "▁Sc he",
+ "▁vess els",
+ "▁vessel s",
+ "IMA RY",
+ "IM ARY",
+ "▁reason ing",
+ "▁про те",
+ "▁пр оте",
+ "FI LES",
+ "FILE S",
+ "ver k",
+ "v erk",
+ "os os",
+ "oso s",
+ "▁ком му",
+ "ді ї",
+ "д ії",
+ "▁d d",
+ "▁ dd",
+ "▁со ответ",
+ "▁IO Exception",
+ "▁ IOException",
+ "sk ých",
+ "ský ch",
+ "▁C LI",
+ "▁CL I",
+ "▁ CLI",
+ "▁ ње",
+ "C M",
+ "T D",
+ "▁possib ilities",
+ "▁possibil ities",
+ "▁Com pos",
+ "▁Comp os",
+ "hal f",
+ "h alf",
+ "▁web page",
+ "▁s wing",
+ "▁sw ing",
+ "▁ swing",
+ "▁z as",
+ "▁za s",
+ "▁ zas",
+ "▁cy cl",
+ "le id",
+ "lei d",
+ "ist ica",
+ "istic a",
+ "isti ca",
+ "▁In sert",
+ "▁Ins ert",
+ "▁ Insert",
+ "▁Sw eden",
+ "▁want ing",
+ "▁ ال",
+ "▁e euw",
+ "▁Admin istr",
+ "▁War ren",
+ "▁b s",
+ "▁ bs",
+ "▁p am",
+ "▁pa m",
+ "an us",
+ "anu s",
+ "Dr a",
+ "D ra",
+ "ex pl",
+ "exp l",
+ "▁K ant",
+ "▁Kan t",
+ "▁Ka nt",
+ "▁Aust in",
+ "▁c sak",
+ "▁cs ak",
+ "▁the atre",
+ "▁compat ibility",
+ "ма тиче",
+ "мати че",
+ "set State",
+ "б ю",
+ "}{ |",
+ "} {|",
+ "▁D y",
+ "▁Zw ischen",
+ "Al t",
+ "A lt",
+ "CLA RE",
+ "st eps",
+ "ste ps",
+ "step s",
+ "▁L age",
+ "▁La ge",
+ "▁Lag e",
+ "▁M itt",
+ "▁Mit t",
+ "▁Mi tt",
+ "▁Dub lin",
+ "▁рабо ты",
+ "de ep",
+ "▁fl ows",
+ "▁flow s",
+ "▁flo ws",
+ "▁Pa lace",
+ "▁Pal ace",
+ "▁Pala ce",
+ "un ix",
+ "uni x",
+ "re fs",
+ "ref s",
+ "um ar",
+ "uma r",
+ "u mar",
+ "as et",
+ "ase t",
+ "a set",
+ "co v",
+ "c ov",
+ "▁p ing",
+ "▁pi ng",
+ "▁pin g",
+ "▁ ping",
+ "▁Saf ari",
+ "fl ug",
+ "flu g",
+ "cre ens",
+ "creen s",
+ "c reens",
+ "{ #",
+ "▁ре а",
+ "ad ors",
+ "ado rs",
+ "ador s",
+ "▁a mor",
+ "▁am or",
+ "uc e",
+ "u ce",
+ "de mic",
+ "dem ic",
+ "▁Nether lands",
+ "▁cluster s",
+ "▁clust ers",
+ "▁en for",
+ "▁enf or",
+ "mar ine",
+ "▁b ugs",
+ "▁bu gs",
+ "▁bug s",
+ "izz ata",
+ "izza ta",
+ "▁s cra",
+ "▁sc ra",
+ "▁scr a",
+ "Le s",
+ "L es",
+ "qu ick",
+ "qui ck",
+ "▁turn o",
+ "▁tur no",
+ "_ *",
+ "ер а",
+ "е ра",
+ "Gener ated",
+ "> [",
+ "▁e stre",
+ "▁est re",
+ "▁es tre",
+ "▁ estre",
+ "or de",
+ "ord e",
+ "▁v erg",
+ "▁ver g",
+ "▁ve rg",
+ "ро з",
+ "р оз",
+ "▁p au",
+ "▁pa u",
+ "in cludes",
+ "include s",
+ "includ es",
+ "as sa",
+ "ass a",
+ "ad ers",
+ "ader s",
+ "ade rs",
+ "a ders",
+ "▁Гер ма",
+ "▁est aven",
+ "▁esta ven",
+ "▁ear liest",
+ "▁res ultado",
+ "▁result ado",
+ "mu n",
+ "m un",
+ "▁pl ots",
+ "▁plot s",
+ "▁ plots",
+ "di n",
+ "d in",
+ "sort ed",
+ "s orted",
+ "▁p reference",
+ "▁pre ference",
+ "▁prefer ence",
+ "ri ó",
+ "r ió",
+ "ту ре",
+ "тур е",
+ "▁L igue",
+ "▁Li gue",
+ "▁Lig ue",
+ "▁за вер",
+ "▁зав ер",
+ "ph r",
+ "p hr",
+ "▁p ocket",
+ "▁po cket",
+ "▁poc ket",
+ "▁par l",
+ "▁pa rl",
+ "▁l ak",
+ "▁la k",
+ "▁ lak",
+ "▁p owie",
+ "▁po wie",
+ "▁pow ie",
+ "▁al tres",
+ "▁alt res",
+ "▁altre s",
+ "$} ;",
+ "$ };",
+ "pl ain",
+ "pla in",
+ "p lain",
+ "▁C red",
+ "▁Cre d",
+ "▁Cr ed",
+ "▁ Cred",
+ "it za",
+ "itz a",
+ "pe rp",
+ "per p",
+ "Gr een",
+ "Gre en",
+ "G reen",
+ "▁dev oted",
+ "product ion",
+ "produ ction",
+ "p roduction",
+ "work er",
+ "wor ker",
+ "el sen",
+ "els en",
+ "else n",
+ "▁v ern",
+ "▁ver n",
+ "▁ve rn",
+ "▁ vern",
+ "▁már cius",
+ "▁Conf eder",
+ "▁Liver pool",
+ "▁му зи",
+ "▁em ails",
+ "▁email s",
+ "▁dist ances",
+ "▁distance s",
+ "▁seg ments",
+ "▁segment s",
+ "▁a nth",
+ "▁an th",
+ "▁ant h",
+ "▁ anth",
+ "▁w rest",
+ "▁wr est",
+ "▁ho og",
+ "▁cin ema",
+ "rr or",
+ "r ror",
+ "▁geb oren",
+ "▁é c",
+ "▁ éc",
+ "Mar ker",
+ "Mark er",
+ "▁Com pet",
+ "▁Comp et",
+ "▁ли сто",
+ "all owed",
+ "allow ed",
+ "allo wed",
+ "vol ume",
+ "Esp agne",
+ "Z e",
+ "▁fix es",
+ "▁fi xes",
+ "▁r ond",
+ "▁ro nd",
+ "▁arrang ement",
+ "/ ~",
+ ".] (",
+ ". ](",
+ "▁For rások",
+ "▁weiter en",
+ "▁weit eren",
+ "▁weitere n",
+ "ex cel",
+ "▁з мі",
+ "▁mod erne",
+ "▁modern e",
+ "▁moder ne",
+ "Eng lish",
+ "▁Transfer markt",
+ "▁be aring",
+ "▁bear ing",
+ "▁cl eared",
+ "▁clear ed",
+ "▁cle ared",
+ "▁са м",
+ "▁di vs",
+ "▁div s",
+ "ć i",
+ "▁э той",
+ "▁это й",
+ "▁Ге ор",
+ "sc ene",
+ "sce ne",
+ "▁a ges",
+ "▁ag es",
+ "▁age s",
+ "▁ ages",
+ "GE N",
+ "G EN",
+ "rä n",
+ "r än",
+ "▁T oul",
+ "▁To ul",
+ "▁A bs",
+ "▁Ab s",
+ "j át",
+ "▁med iante",
+ "▁medi ante",
+ "▁median te",
+ "▁em pres",
+ "▁emp res",
+ "▁Emp loyee",
+ "▁ Employee",
+ "▁polynomial s",
+ "▁optim ize",
+ "▁вы ступа",
+ "fa re",
+ "far e",
+ "f are",
+ "ве й",
+ "в ей",
+ "x f",
+ "qu ez",
+ "que z",
+ "q uez",
+ "▁bo tan",
+ "▁bot an",
+ "▁def end",
+ "▁defe nd",
+ "▁Qu art",
+ "Mon t",
+ "Mo nt",
+ "M ont",
+ "v b",
+ "ti ck",
+ "t ick",
+ "W D",
+ "min e",
+ "mi ne",
+ "m ine",
+ "▁mod ific",
+ "not ification",
+ "▁d enn",
+ "▁de nn",
+ "▁den n",
+ "▁al go",
+ "▁alg o",
+ "▁S po",
+ "▁Sp o",
+ "▁m istrzost",
+ "/ :",
+ "▁a present",
+ "▁apr esent",
+ "▁п род",
+ "▁про д",
+ "▁пр од",
+ "Vol ume",
+ "sk ą",
+ "s ką",
+ "prote cted",
+ "▁Turk ish",
+ "az y",
+ "a zy",
+ "▁p ouv",
+ "▁po uv",
+ "▁pou v",
+ "▁perí odo",
+ "sk og",
+ "sko g",
+ "▁ent ropy",
+ "▁entr opy",
+ "ze d",
+ "z ed",
+ "то ри",
+ "тор и",
+ "▁l ij",
+ "▁li j",
+ "▁ lij",
+ "bo ards",
+ "board s",
+ "▁ста ту",
+ "Bo ol",
+ "B ool",
+ "▁pol ity",
+ "▁polit y",
+ "@\" ,",
+ "@ \",",
+ "▁рі к",
+ "né e",
+ "n ée",
+ "▁Z ug",
+ "▁Zu g",
+ "▁Un iti",
+ "▁Unit i",
+ "ém et",
+ "é met",
+ "at ience",
+ "ati ence",
+ "di men",
+ "dim en",
+ "d imen",
+ "▁St even",
+ "▁Ste ven",
+ "▁Steve n",
+ "H a",
+ "ACT ION",
+ "A CTION",
+ "▁w and",
+ "▁wa nd",
+ "▁ wand",
+ "▁Na var",
+ "▁Nav ar",
+ "▁сі чня",
+ "W atch",
+ "▁Stu art",
+ "▁z de",
+ "▁zd e",
+ "▁кон тро",
+ "data set",
+ "dat aset",
+ "datas et",
+ "y ó",
+ "▁B ush",
+ "▁Bu sh",
+ "▁Bus h",
+ "▁се бя",
+ "▁wor thy",
+ "▁worth y",
+ "▁B le",
+ "▁Bl e",
+ "▁pro por",
+ "▁prop or",
+ "▁Vill age",
+ "▁Villa ge",
+ "▁Vil lage",
+ "▁r y",
+ "▁ ry",
+ "▁v oit",
+ "▁vo it",
+ "▁копи я",
+ "▁z p",
+ "▁c ura",
+ "▁cu ra",
+ "▁cur a",
+ "▁H tml",
+ "▁ Html",
+ "▁Die ser",
+ "▁Dies er",
+ "▁Diese r",
+ "▁D ays",
+ "▁Da ys",
+ "▁Day s",
+ "▁ Days",
+ "on nes",
+ "onn es",
+ "onne s",
+ "▁ant igu",
+ "▁anti gu",
+ "▁Sta aten",
+ "▁Staat en",
+ "▁f aint",
+ "▁fa int",
+ "on gs",
+ "ong s",
+ "▁ö st",
+ "▁ öst",
+ "Re direct",
+ "Red irect",
+ "ел ь",
+ "е ль",
+ "at orial",
+ "ator ial",
+ "ato rial",
+ "atori al",
+ "▁b other",
+ "▁bo ther",
+ "▁both er",
+ "▁bot her",
+ "Edit Text",
+ "▁Gi ul",
+ "▁за во",
+ "▁зав о",
+ "▁pue blo",
+ "▁Mississ ippi",
+ "ja k",
+ "j ak",
+ "▁w ings",
+ "▁win gs",
+ "▁wing s",
+ "on c",
+ "o nc",
+ "ív el",
+ "í vel",
+ "ien cia",
+ "i encia",
+ "ent licht",
+ "entlich t",
+ "▁B TW",
+ "or nal",
+ "orn al",
+ "▁Ко ро",
+ "▁Кор о",
+ "▁од ним",
+ "▁sa lv",
+ "▁sal v",
+ "▁f inden",
+ "▁find en",
+ "▁fin den",
+ "ge o",
+ "▁а виа",
+ "att ung",
+ "vi v",
+ "v iv",
+ "▁L uther",
+ "▁Lu ther",
+ "▁об щи",
+ "▁Ro lle",
+ "▁Rol le",
+ "▁Roll e",
+ "▁Ab raham",
+ "▁cent ered",
+ "▁center ed",
+ "▁sl ash",
+ "▁sla sh",
+ "▁ slash",
+ "is at",
+ "isa t",
+ "em ann",
+ "ema nn",
+ "eman n",
+ "e mann",
+ "O s",
+ "пар та",
+ "▁P ablo",
+ "▁Pa blo",
+ "▁collabor ation",
+ "path s",
+ "pat hs",
+ "éd ition",
+ "▁view ed",
+ "▁vie wed",
+ "▁cons isted",
+ "▁consist ed",
+ "▁recover ed",
+ "▁Mex ican",
+ "▁F ix",
+ "▁sp ell",
+ "▁spe ll",
+ "▁spel l",
+ "Spec ial",
+ "Spe cial",
+ "▁С т",
+ "ess eur",
+ "esse ur",
+ "▁Украи ны",
+ "form er",
+ "for mer",
+ "▁ś w",
+ "▁z eros",
+ "▁ze ros",
+ "▁zero s",
+ "▁Stra ßen",
+ "▁Straße n",
+ "▁organ isation",
+ "▁organis ation",
+ "▁ organisation",
+ "üss en",
+ "üs sen",
+ "▁S ierra",
+ "▁Se ason",
+ "▁Sea son",
+ "▁vol ont",
+ "Bean Factory",
+ "▁помо щ",
+ "▁pres sing",
+ "▁press ing",
+ "▁equival ence",
+ "▁c att",
+ "▁ca tt",
+ "▁cat t",
+ "ic ity",
+ "ici ty",
+ "i city",
+ "▁accompl ished",
+ "▁accomp lished",
+ "▁accomplish ed",
+ "▁y o",
+ "▁ yo",
+ "▁s ic",
+ "▁si c",
+ "▁im ports",
+ "▁import s",
+ "▁accom mod",
+ "▁Port o",
+ "▁Por to",
+ "▁я ка",
+ "▁як а",
+ "▁lo an",
+ "ти ки",
+ "тик и",
+ "▁check out",
+ "▁ass ess",
+ "▁asse ss",
+ "▁Pop ulation",
+ "ur ent",
+ "ure nt",
+ "uren t",
+ "u rent",
+ "clo jure",
+ "▁Sant os",
+ "▁Santo s",
+ "▁inform áció",
+ "PO S",
+ "P OS",
+ "▁g are",
+ "▁gar e",
+ "▁ga re",
+ "▁k ick",
+ "▁ki ck",
+ "▁rad ical",
+ "▁radi cal",
+ "▁Pe ace",
+ "▁stream ing",
+ "▁stre aming",
+ "ca mp",
+ "cam p",
+ "c amp",
+ "zą t",
+ "го вор",
+ "гов ор",
+ "гово р",
+ "▁Reg ierung",
+ "▁proceed ed",
+ "f m",
+ "ле ны",
+ "лен ы",
+ "▁ear nest",
+ "▁Par ad",
+ "▁Pa rad",
+ "▁Para d",
+ "request s",
+ "▁R aum",
+ "▁Ra um",
+ "š č",
+ "▁polic ies",
+ "▁T ig",
+ "▁Ti g",
+ "▁s itt",
+ "▁si tt",
+ "▁sit t",
+ "▁Ener gy",
+ "▁pur ely",
+ "▁pure ly",
+ "▁H aut",
+ "▁Ha ut",
+ "▁Sp eed",
+ "▁Spe ed",
+ "▁ Speed",
+ "bi o",
+ "b io",
+ "▁o range",
+ "▁or ange",
+ "▁big gest",
+ "▁britann ique",
+ "▁No table",
+ "▁Not able",
+ "v u",
+ "ле нии",
+ "би н",
+ "б ин",
+ "▁N ash",
+ "▁Na sh",
+ "▁Nas h",
+ "ще ние",
+ "▁c iel",
+ "▁ci el",
+ "adém ie",
+ "▁гру дня",
+ "▁jo ue",
+ "▁jou e",
+ "▁v oted",
+ "▁vo ted",
+ "▁vot ed",
+ "▁vote d",
+ "ri co",
+ "ric o",
+ "r ico",
+ "▁го р",
+ "▁г ор",
+ "▁ гор",
+ "▁коман ду",
+ "it ivity",
+ "iti vity",
+ "▁щ е",
+ "▁ ще",
+ "▁de finite",
+ "▁defin ite",
+ "▁definit e",
+ "uro pa",
+ "urop a",
+ "!\" );",
+ "! \");",
+ "Default s",
+ "▁неко торы",
+ "éd ération",
+ "▁s illy",
+ "▁sil ly",
+ "▁talk ed",
+ "▁tal ked",
+ "re u",
+ "r eu",
+ "▁L omb",
+ "▁Lo mb",
+ "▁stat ue",
+ "кт а",
+ "к та",
+ "ю р",
+ "um ably",
+ "▁горо де",
+ "▁город е",
+ "▁R untime",
+ "▁Run time",
+ "▁ Runtime",
+ "▁di agn",
+ "▁diag n",
+ "▁dia gn",
+ "▁r etro",
+ "▁ret ro",
+ "▁retr o",
+ "▁Sver ige",
+ "▁in icial",
+ "▁inici al",
+ "ien za",
+ "i enza",
+ "▁fig lio",
+ "▁z og",
+ "▁zo g",
+ "▁re y",
+ "▁r ey",
+ "▁ rey",
+ "▁R und",
+ "▁Run d",
+ "▁Ru nd",
+ "т ный",
+ "▁ce ased",
+ "er no",
+ "ern o",
+ "▁e sa",
+ "▁es a",
+ "▁ esa",
+ "▁tr ouv",
+ "▁tro uv",
+ "▁trou v",
+ "▁Gemeinde n",
+ "▁Geme inden",
+ "▁comer cial",
+ "sk ap",
+ "ska p",
+ "s kap",
+ "en ario",
+ "ena rio",
+ "▁ju ris",
+ "▁jur is",
+ "T B",
+ "на ла",
+ "нал а",
+ "н ала",
+ "▁v ij",
+ "▁vi j",
+ "V O",
+ "▁c lin",
+ "▁cl in",
+ "▁cli n",
+ "jö r",
+ "j ör",
+ "са н",
+ "с ан",
+ "ow ała",
+ "owa ła",
+ "ował a",
+ "rib ución",
+ "ribu ción",
+ "▁urs prüng",
+ "▁con dem",
+ "▁cond em",
+ "▁St age",
+ "▁Sta ge",
+ "▁ Stage",
+ "▁mix ing",
+ "▁рі з",
+ "▁f ans",
+ "▁fa ns",
+ "▁fan s",
+ "há z",
+ "h áz",
+ "so cial",
+ "soci al",
+ "za n",
+ "z an",
+ "▁с вой",
+ "▁сво й",
+ "Cook ie",
+ "▁Ro land",
+ "▁Rol and",
+ "az ionale",
+ "▁Sl oven",
+ "▁Slo ven",
+ "▁Slov en",
+ "▁F iche",
+ "▁Fich e",
+ "▁S é",
+ "h ä",
+ "▁official s",
+ "▁offici als",
+ "▁î nt",
+ "▁în t",
+ "Inter ceptor",
+ "Table s",
+ "Tab les",
+ "T ables",
+ "▁da von",
+ "▁dav on",
+ "init ialize",
+ "initial ize",
+ "]= \"",
+ "] =\"",
+ "▁B ody",
+ "▁Bo dy",
+ "▁Bod y",
+ "▁ Body",
+ "▁U pper",
+ "▁Up per",
+ "▁ Upper",
+ "▁Col lect",
+ "▁Coll ect",
+ "▁ Collect",
+ "▁Zür ich",
+ "Hor izontal",
+ "Ty p",
+ "T yp",
+ "▁polít ico",
+ "▁Rewrite Cond",
+ "▁h oped",
+ "▁hope d",
+ "▁ho ped",
+ "▁hop ed",
+ "▁anx ious",
+ "Li ter",
+ "L iter",
+ "ja hr",
+ "j ahr",
+ "▁ass emble",
+ "▁assemb le",
+ "▁c rypt",
+ "▁cry pt",
+ "lah oma",
+ "AS H",
+ "A SH",
+ "▁Б ри",
+ "▁C ic",
+ "▁Ci c",
+ "tw itter",
+ "hy per",
+ "▁T ell",
+ "▁Te ll",
+ "▁Tel l",
+ "іль ки",
+ "во бо",
+ "▁ba zie",
+ "▁baz ie",
+ "▁contempor ary",
+ "▁Param eter",
+ "▁Para meter",
+ "▁ Parameter",
+ "st wa",
+ "▁bek end",
+ "co ck",
+ "c ock",
+ "pre vious",
+ "prev ious",
+ "en ska",
+ "ens ka",
+ "ensk a",
+ "▁c aller",
+ "▁cal ler",
+ "▁call er",
+ "]] )",
+ "] ])",
+ "▁R az",
+ "▁Ra z",
+ "▁Se lon",
+ "▁Sel on",
+ "▁propos al",
+ "▁b ý",
+ "▁S ied",
+ "▁Sie d",
+ "▁Si ed",
+ "▁Arbe its",
+ "▁Arbeit s",
+ "▁p ride",
+ "▁pr ide",
+ "▁pri de",
+ "▁sl ope",
+ "▁slo pe",
+ "id é",
+ "grad ient",
+ "▁Дже рела",
+ "▁S H",
+ "▁ SH",
+ "▁раз рабо",
+ "ivers ity",
+ "спо дар",
+ "\\{ \\",
+ "\\ {\\",
+ "▁с тали",
+ "▁ст али",
+ "▁ста ли",
+ "▁стал и",
+ "▁Ein zel",
+ "▁Einz el",
+ "▁rg ba",
+ "▁A nim",
+ "▁An im",
+ "▁ Anim",
+ "▁a lles",
+ "▁al les",
+ "▁all es",
+ "▁alle s",
+ "▁ alles",
+ "ба р",
+ "б ар",
+ "er te",
+ "ert e",
+ "▁réalis é",
+ "▁réal isé",
+ "Inst itut",
+ "▁mar kup",
+ "▁mark up",
+ "▁v ars",
+ "▁var s",
+ "▁va rs",
+ "▁ vars",
+ "▁g am",
+ "▁ga m",
+ "▁Васи ль",
+ "iz za",
+ "izz a",
+ "i zza",
+ "▁C ob",
+ "▁Co b",
+ "▁M etal",
+ "▁Me tal",
+ "▁Met al",
+ "▁Meta l",
+ "▁le ak",
+ "▁L anc",
+ "▁La nc",
+ "▁Lan c",
+ "Sw itch",
+ "De lay",
+ "Del ay",
+ "at uur",
+ "atu ur",
+ "▁че ты",
+ "▁анг лий",
+ "▁leg acy",
+ "▁desar roll",
+ "▁top ological",
+ "▁jewe ils",
+ "▁Nederland se",
+ "▁atmos phere",
+ "ur ban",
+ "urb an",
+ "▁s lov",
+ "▁sl ov",
+ "▁slo v",
+ "▁law yer",
+ "pe cially",
+ "▁altern ate",
+ "▁para met",
+ "▁param et",
+ "▁establish ment",
+ "▁wood s",
+ "▁wo ods",
+ "P D",
+ "▁на и",
+ "▁m ang",
+ "▁ma ng",
+ "▁man g",
+ "▁wechsel te",
+ "сь ку",
+ "ськ у",
+ ". =",
+ "▁fif teen",
+ "SU M",
+ "S UM",
+ "▁F ro",
+ "▁Fr o",
+ "▁L ED",
+ "▁LE D",
+ "▁ LED",
+ "ow ano",
+ "owa no",
+ "owan o",
+ "стви е",
+ "▁D onnées",
+ "to l",
+ "t ol",
+ "ży n",
+ "ż yn",
+ "cre f",
+ "cr ef",
+ "c ref",
+ "стви и",
+ "ho rn",
+ "hor n",
+ "h orn",
+ "▁со об",
+ "▁обо ро",
+ "▁Comp lete",
+ "▁Comple te",
+ "▁ Complete",
+ "“ )",
+ "▁kind ly",
+ "▁Cham ber",
+ "s ég",
+ "W H",
+ "▁amb ient",
+ "к ро",
+ "▁ch eval",
+ "▁che val",
+ "▁на писа",
+ "fl u",
+ "f lu",
+ "▁Off iz",
+ "ma te",
+ "mat e",
+ "m ate",
+ "nat ural",
+ "n atural",
+ "se par",
+ "sep ar",
+ "em pre",
+ "emp re",
+ "View Holder",
+ "f w",
+ "▁le tech",
+ "▁let ech",
+ "▁tra iling",
+ "▁trail ing",
+ "at ri",
+ "atr i",
+ "a tri",
+ "▁G ó",
+ "▁B onn",
+ "▁Bo nn",
+ "▁Bon n",
+ "▁un likely",
+ "▁unlike ly",
+ "RA M",
+ "R AM",
+ "en st",
+ "ens t",
+ "St ats",
+ "Stat s",
+ "▁поли тиче",
+ ")- -(",
+ ")-- (",
+ "▁t rom",
+ "▁tr om",
+ "▁tro m",
+ "!. ..",
+ "! ...",
+ "▁Mean while",
+ "ст ана",
+ "ста на",
+ "стан а",
+ "▁Re ino",
+ "▁Rein o",
+ "▁A rist",
+ "▁Ar ist",
+ "▁Ari st",
+ "$} }%",
+ "$ }}%",
+ "▁so lem",
+ "▁sol em",
+ "▁sole m",
+ "clos ure",
+ "ign ation",
+ "ło d",
+ "ł od",
+ "▁di vor",
+ "▁div or",
+ "▁между народ",
+ "=\" ",
+ "▁m olt",
+ "▁mo lt",
+ "▁mol t",
+ "▁sk ills",
+ "▁skill s",
+ "▁C ir",
+ "▁Ci r",
+ "▁Des pués",
+ "▁Desp ués",
+ "▁l un",
+ "▁lu n",
+ "▁cor on",
+ "▁co ron",
+ "▁Com ics",
+ "сто ри",
+ "стор и",
+ "с тори",
+ "▁It ems",
+ "▁Item s",
+ "▁ Items",
+ "▁Th ink",
+ "и гра",
+ "▁g rows",
+ "▁gr ows",
+ "▁gro ws",
+ "▁grow s",
+ "port al",
+ "por tal",
+ "▁n ich",
+ "▁ni ch",
+ "▁nic h",
+ "▁restrict ions",
+ "▁restriction s",
+ "▁L au",
+ "▁La u",
+ "ше ння",
+ "шен ня",
+ "▁So zial",
+ "▁к і",
+ "▁ кі",
+ "ma na",
+ "man a",
+ "m ana",
+ "▁lie utenant",
+ "Att r",
+ "At tr",
+ "ume ric",
+ "umer ic",
+ "▁dr ives",
+ "▁drive s",
+ "▁dri ves",
+ "▁driv es",
+ "as is",
+ "asi s",
+ "ба й",
+ "N L",
+ "Zyg ote",
+ "phys ics",
+ "▁intern ally",
+ "▁internal ly",
+ "ва ется",
+ "вает ся",
+ "H idden",
+ "▁Да та",
+ "▁un safe",
+ "▁R oc",
+ "▁Ro c",
+ "▁instanti ate",
+ "▁instant iate",
+ "ud ni",
+ "▁R oom",
+ "▁Ro om",
+ "▁П ред",
+ "▁Пре д",
+ "▁m aja",
+ "▁ma ja",
+ "▁maj a",
+ "ach ment",
+ "u uid",
+ "Project s",
+ "Gr e",
+ "G re",
+ "▁в зя",
+ "▁вз я",
+ "▁Bl ood",
+ "▁Blo od",
+ "ic ile",
+ "ici le",
+ "i cile",
+ "▁N ouvelle",
+ "Do es",
+ "▁nie uwe",
+ "ál e",
+ "á le",
+ "an gs",
+ "ang s",
+ "we ak",
+ "▁a antal",
+ "▁aan tal",
+ "▁Е в",
+ "▁Dres den",
+ "▁L ost",
+ "▁Lo st",
+ "▁Los t",
+ "ка та",
+ "▁invol ve",
+ "▁decl aring",
+ "▁decla ring",
+ "▁declar ing",
+ "▁Polit ical",
+ "ér ez",
+ "ére z",
+ "é rez",
+ "ko p",
+ "k op",
+ "not ify",
+ "▁C urt",
+ "▁Cu rt",
+ "▁Cur t",
+ "▁schließ lich",
+ "gh an",
+ "g han",
+ "це на",
+ "цен а",
+ "ц ена",
+ "▁kw iet",
+ "üg el",
+ "üge l",
+ "ü gel",
+ "▁S ob",
+ "▁So b",
+ "▁sub str",
+ "▁subst r",
+ "▁subs tr",
+ "▁ substr",
+ "▁el len",
+ "▁elle n",
+ "▁ell en",
+ "▁ ellen",
+ "ion ario",
+ "iona rio",
+ "en son",
+ "ens on",
+ "enso n",
+ "WI N",
+ "W IN",
+ "спо рт",
+ "em er",
+ "eme r",
+ "e mer",
+ "no me",
+ "nom e",
+ "n ome",
+ "▁sm iled",
+ "▁smile d",
+ "▁Sch midt",
+ "▁sm oke",
+ "▁T oken",
+ "▁To ken",
+ "▁Tok en",
+ "▁ Token",
+ "▁v ague",
+ "▁va gue",
+ "▁pro vision",
+ "▁prov ision",
+ "ya ml",
+ "y aml",
+ "ни тель",
+ "ните ль",
+ "on ial",
+ "oni al",
+ "onia l",
+ "é poque",
+ "▁N C",
+ "▁ NC",
+ "▁N FL",
+ "te ck",
+ "▁al lo",
+ "▁all o",
+ "▁ allo",
+ "▁préc éd",
+ "cent ral",
+ "▁ma jd",
+ "▁maj d",
+ "▁ch rom",
+ "▁chr om",
+ "▁ chrom",
+ "▁Z um",
+ "▁Zu m",
+ "ver so",
+ "vers o",
+ "▁verschied enen",
+ "▁ста ро",
+ "▁стар о",
+ "▁qu elle",
+ "▁que lle",
+ "▁q uelle",
+ "▁quel le",
+ "▁ quelle",
+ "▁r ép",
+ "▁ré p",
+ "RO W",
+ "R OW",
+ "▁i hnen",
+ "▁ih nen",
+ "▁ihn en",
+ "▁sens ible",
+ "▁sen sible",
+ "| $",
+ "▁sc hw",
+ "▁sch w",
+ "▁B R",
+ "▁ BR",
+ "▁O ptions",
+ "▁Option s",
+ "▁Opt ions",
+ "▁ Options",
+ "▁t ens",
+ "▁te ns",
+ "▁ten s",
+ "▁conqu ist",
+ "▁l ieß",
+ "▁lie ß",
+ "▁ ließ",
+ "ov is",
+ "ovi s",
+ "o vis",
+ "▁мі ста",
+ "▁міс та",
+ "▁e la",
+ "▁el a",
+ "▁ ela",
+ "rif ice",
+ "r ifice",
+ "▁l ok",
+ "▁lo k",
+ "▁Queens land",
+ "B inary",
+ "▁Ra hmen",
+ "▁Rah men",
+ "▁a bol",
+ "▁ab ol",
+ "▁ abol",
+ "▁č ást",
+ "▁Ed inburgh",
+ "in de",
+ "ind e",
+ "i nde",
+ "▁calcul ating",
+ "▁calc ulating",
+ "▁O regon",
+ "▁le git",
+ "▁leg it",
+ "▁Nach dem",
+ "at hon",
+ "ath on",
+ "P rivate",
+ "illa ume",
+ "▁ob servable",
+ "▁observ able",
+ "le ans",
+ "lean s",
+ "lea ns",
+ "▁remark ed",
+ "▁h alt",
+ "▁ha lt",
+ "▁hal t",
+ "▁ halt",
+ "ни цы",
+ "ниц ы",
+ "▁st amp",
+ "▁sta mp",
+ "▁stam p",
+ "▁Ad v",
+ "Lo uis",
+ "Lou is",
+ "im ming",
+ "imm ing",
+ "gru ppe",
+ "▁Pol icy",
+ "▁ Policy",
+ "▁v rij",
+ "▁vr ij",
+ "ft rag",
+ "▁off ices",
+ "▁offic es",
+ "▁office s",
+ "▁particip ated",
+ "▁es col",
+ "▁esc ol",
+ "▁\" ",
+ "▁\"< /",
+ "▁nombre uses",
+ "▁d ivid",
+ "▁di vid",
+ "▁div id",
+ "▁ad vis",
+ "▁adv is",
+ "лта ти",
+ "▁= =>",
+ "▁== >",
+ "Ori entation",
+ "ci d",
+ "c id",
+ "Car t",
+ "Ca rt",
+ "C art",
+ "▁m urm",
+ "▁mu rm",
+ "▁mur m",
+ "▁ass ez",
+ "▁asse z",
+ "▁l inking",
+ "▁link ing",
+ "▁lin king",
+ "build ing",
+ "▁rec onna",
+ "▁recon na",
+ "▁s hook",
+ "▁sh ook",
+ "▁sho ok",
+ "man aged",
+ "mana ged",
+ "land a",
+ "lan da",
+ "l anda",
+ "▁Le ón",
+ "▁cré ation",
+ "до й",
+ "oc ity",
+ "oci ty",
+ "o city",
+ "▁w ij",
+ "▁ wij",
+ "▁wie ś",
+ "xt art",
+ "▁M ove",
+ "▁Mo ve",
+ "▁Mov e",
+ "▁ Move",
+ "lung en",
+ "l ungen",
+ "ству ет",
+ "or ney",
+ "orn ey",
+ "option al",
+ "opt ional",
+ "ma cro",
+ "mac ro",
+ "Cond ition",
+ "▁square s",
+ "▁squ ares",
+ "▁mist aken",
+ "▁mistake n",
+ "án t",
+ "á nt",
+ "▁R is",
+ "▁Ri s",
+ "▁sent ences",
+ "▁sentence s",
+ "er ea",
+ "ere a",
+ "e rea",
+ "▁m ij",
+ "▁mi j",
+ "Un d",
+ "U nd",
+ "▁nom br",
+ "z A",
+ "▁In dependent",
+ "▁Indep endent",
+ "▁Independ ent",
+ "▁p review",
+ "▁pre view",
+ "▁prev iew",
+ "▁ preview",
+ "im as",
+ "ima s",
+ "i mas",
+ "▁m ales",
+ "▁ma les",
+ "▁mal es",
+ "▁male s",
+ "in ental",
+ "inen tal",
+ "inent al",
+ "Th ank",
+ "▁p opol",
+ "▁po pol",
+ "▁pop ol",
+ "▁p over",
+ "▁po ver",
+ "▁pov er",
+ "▁gr asp",
+ "▁gra sp",
+ "▁im ped",
+ "▁imp ed",
+ "▁campion ato",
+ "▁W ei",
+ "▁We i",
+ "▁t itled",
+ "▁title d",
+ "▁tit led",
+ "▁A demás",
+ "▁Pass word",
+ "▁ Password",
+ "▁P am",
+ "▁Pa m",
+ "UI LD",
+ "▁ли пня",
+ "wer b",
+ "we rb",
+ "w erb",
+ "........ ........",
+ "▁R ío",
+ "▁te eth",
+ "b p",
+ "▁S W",
+ "▁ SW",
+ "ul aire",
+ "ula ire",
+ "▁se ized",
+ "▁sei zed",
+ "▁St ef",
+ "▁Ste f",
+ "ú l",
+ "▁v iz",
+ "▁vi z",
+ "ion y",
+ "io ny",
+ "i ony",
+ "▁j unt",
+ "▁ju nt",
+ "▁jun t",
+ "▁kter á",
+ "▁wrześ nia",
+ "< >",
+ "▁s urg",
+ "▁su rg",
+ "▁sur g",
+ "▁tu tte",
+ "▁tut te",
+ "▁H ob",
+ "▁Ho b",
+ "по від",
+ "пов ід",
+ "▁w ohl",
+ "▁wo hl",
+ "▁ wohl",
+ "▁t rag",
+ "▁tr ag",
+ "▁tra g",
+ "▁C rown",
+ "▁Cr own",
+ "▁Cro wn",
+ "▁Crow n",
+ "▁tr ova",
+ "▁tro va",
+ "▁trov a",
+ "сто ву",
+ "стов у",
+ "▁Vien na",
+ "ese hen",
+ "▁met ropol",
+ "▁reflect ed",
+ "те та",
+ "тет а",
+ "т ета",
+ "▁trad uc",
+ "▁tradu c",
+ "▁B ast",
+ "▁Bas t",
+ "▁Ba st",
+ "▁ersch ien",
+ "wo ord",
+ "() \"",
+ "( )\"",
+ "ta let",
+ "tal et",
+ "t alet",
+ "▁ro ads",
+ "▁road s",
+ "ве дения",
+ "веде ния",
+ "ühr ung",
+ "▁c ogn",
+ "▁co gn",
+ "▁V alle",
+ "▁Val le",
+ "▁Va lle",
+ "▁Vall e",
+ "▁land ing",
+ "▁lan ding",
+ "▁Re gex",
+ "▁Reg ex",
+ "▁I owa",
+ "▁Io wa",
+ "dz iał",
+ "d ział",
+ "▁erre ichte",
+ "au m",
+ "a um",
+ "▁found er",
+ "▁fo under",
+ "▁fou nder",
+ "ap olis",
+ "Comp iler",
+ "▁k op",
+ "▁ko p",
+ "▁ kop",
+ "▁m arc",
+ "▁ma rc",
+ "▁mar c",
+ "▁те ритор",
+ ")) `",
+ ") )`",
+ "▁l ei",
+ "▁le i",
+ "▁ lei",
+ "ge on",
+ "geo n",
+ "▁weap ons",
+ "▁weapon s",
+ "▁h orn",
+ "▁hor n",
+ "▁ho rn",
+ "▁ horn",
+ "▁el if",
+ "▁ elif",
+ "▁Cap ital",
+ "▁Capit al",
+ "ć e",
+ "▁for all",
+ "▁ forall",
+ "▁э та",
+ "pre view",
+ "prev iew",
+ "p review",
+ "▁D NA",
+ "▁s id",
+ "▁si d",
+ "or ch",
+ "▁R as",
+ "▁Ra s",
+ "▁a rab",
+ "▁ar ab",
+ "▁ara b",
+ "▁ arab",
+ "Be st",
+ "B est",
+ "▁с чита",
+ "▁L ópez",
+ "an ça",
+ "▁fun kc",
+ "▁t ienen",
+ "▁tiene n",
+ "▁ti enen",
+ "▁tie nen",
+ "; &",
+ "m useum",
+ "▁E rr",
+ "▁Er r",
+ "▁ Err",
+ "▁re sort",
+ "▁res ort",
+ "No v",
+ "N ov",
+ "▁k al",
+ "▁ka l",
+ "▁ kal",
+ "M W",
+ "ш ь",
+ "an chor",
+ "anc hor",
+ "anch or",
+ "▁ро ман",
+ "le ading",
+ "lea ding",
+ "▁m anten",
+ "▁ma nten",
+ "▁man ten",
+ "▁mant en",
+ "▁Sil va",
+ "da de",
+ "d ade",
+ "▁design ated",
+ "▁rev ista",
+ "▁revis ta",
+ "O ct",
+ "per cent",
+ "▁у ні",
+ "ident ifier",
+ "ma ss",
+ "mas s",
+ "m ass",
+ "@ @",
+ "uls ion",
+ "ger meister",
+ "g ermeister",
+ "▁pred icted",
+ "▁predict ed",
+ "▁с ви",
+ "жно й",
+ "ж ной",
+ "▁Er geb",
+ "▁c ust",
+ "▁cu st",
+ "▁remove s",
+ "▁remov es",
+ "ch arg",
+ "char g",
+ "cha rg",
+ "при мер",
+ "▁for ming",
+ "▁form ing",
+ "as ma",
+ "asm a",
+ "std out",
+ "F un",
+ "ym e",
+ "y me",
+ "ter ed",
+ "te red",
+ "tere d",
+ "t ered",
+ "urs ive",
+ "ig hed",
+ "igh ed",
+ "▁сле д",
+ "▁ след",
+ "ver band",
+ "verb and",
+ "▁LO G",
+ "▁ LOG",
+ "ra ms",
+ "ram s",
+ "r ams",
+ "éo n",
+ "é on",
+ "en dra",
+ "end ra",
+ "▁Be reich",
+ "▁Bere ich",
+ "▁tempor al",
+ "▁temp oral",
+ "▁tempo ral",
+ "▁lang ue",
+ "▁lan gue",
+ "▁I nn",
+ "▁In n",
+ "▁more over",
+ "▁tutorial s",
+ "M iddle",
+ "▁совет ский",
+ "▁mainten ance",
+ "as ures",
+ "asure s",
+ "▁vál to",
+ "BA SE",
+ "B ASE",
+ "▁disapp ear",
+ "ски я",
+ "▁conoc ido",
+ "▁На у",
+ "▁Li bert",
+ "▁Lib ert",
+ "▁Liber t",
+ "▁Har old",
+ "▁life time",
+ "▁lif etime",
+ "▁T ür",
+ "▁za wod",
+ "▁zaw od",
+ "om ic",
+ "omi c",
+ "o mic",
+ "▁Retrie ved",
+ "arch itecture",
+ "č ka",
+ "iform es",
+ "develop ment",
+ "ord nung",
+ "In f",
+ "le ben",
+ "leb en",
+ "l eben",
+ "▁St ars",
+ "▁Sta rs",
+ "▁Star s",
+ "sign al",
+ "sig nal",
+ "▁gram mar",
+ "▁cor so",
+ "▁cors o",
+ "▁W agner",
+ "▁ge ht",
+ "▁royal e",
+ "▁roy ale",
+ "wa rn",
+ "war n",
+ "w arn",
+ "um bled",
+ "umb led",
+ "umble d",
+ "▁inst it",
+ "▁ins tit",
+ "▁Ш и",
+ "h h",
+ "▁ref uge",
+ "▁favor ite",
+ "ier to",
+ "iert o",
+ "▁cond ado",
+ "▁T her",
+ "▁The r",
+ "▁Th er",
+ "▁человек а",
+ "▁челове ка",
+ "▁F ood",
+ "▁Foo d",
+ "▁Fo od",
+ "▁se izo",
+ "▁sei zo",
+ "▁Init ialize",
+ "▁Initial ize",
+ "▁con nu",
+ "▁conn u",
+ "▁over lap",
+ "▁E mil",
+ "▁Em il",
+ "▁Mart í",
+ "▁жовт ня",
+ "er va",
+ "erv a",
+ "▁bo ats",
+ "▁boat s",
+ "a ções",
+ "▁der rot",
+ "▁m alloc",
+ "▁mal loc",
+ "▁ malloc",
+ "▁con ject",
+ "▁conj ect",
+ "j k",
+ "▁s are",
+ "▁sa re",
+ "▁sar e",
+ "ле мен",
+ "лем ен",
+ "▁s ums",
+ "▁su ms",
+ "▁sum s",
+ "Author ization",
+ "▁K un",
+ "▁Ku n",
+ "]$ ,",
+ "] $,",
+ "geme inde",
+ "gemein de",
+ "g emeinde",
+ "od ot",
+ "odo t",
+ "o dot",
+ "de fin",
+ "def in",
+ "▁e mission",
+ "▁em ission",
+ "▁Кра с",
+ "▁app art",
+ "▁ap part",
+ "▁appar t",
+ "▁stop ping",
+ "▁sto pping",
+ "▁С ред",
+ "▁conj ug",
+ "▁ins ight",
+ "▁Broad cast",
+ "▁PM ID",
+ "▁adv antages",
+ "▁advantage s",
+ "en es",
+ "ene s",
+ "e nes",
+ "▁res idence",
+ "▁resid ence",
+ "lj en",
+ "l jen",
+ "iss eur",
+ "isse ur",
+ "▁pubblic ato",
+ "▁Git Hub",
+ "▁Per u",
+ "▁Pe ru",
+ "▁galax ies",
+ "▁annot ations",
+ "▁annotation s",
+ "ga s",
+ "g as",
+ "▁ré pond",
+ "▁rép ond",
+ "J s",
+ "▁independent ly",
+ "▁independ ently",
+ "N P",
+ "▁in qu",
+ "▁gr ounds",
+ "▁ground s",
+ "Com ponents",
+ "Component s",
+ "▁a nten",
+ "▁an ten",
+ "▁ant en",
+ "▁ante n",
+ "▁ anten",
+ "▁в з",
+ "▁h os",
+ "▁ho s",
+ "▁ hos",
+ "▁s int",
+ "▁si nt",
+ "▁sin t",
+ "▁h iding",
+ "▁hi ding",
+ "▁hid ing",
+ "▁wojew ództ",
+ "Message s",
+ "Mess ages",
+ "▁по каза",
+ "▁пока за",
+ "== =",
+ "= ==",
+ "▁Ab stract",
+ "▁ Abstract",
+ "▁l äng",
+ "▁län g",
+ "▁lä ng",
+ "▁Form ula",
+ "da wn",
+ "d awn",
+ "▁design s",
+ "Im g",
+ "▁Portug uese",
+ "▁incl uy",
+ "▁inclu y",
+ "avig ator",
+ "▁Bro thers",
+ "▁cont inent",
+ "▁contin ent",
+ "▁evident ly",
+ "ra ce",
+ "rac e",
+ "r ace",
+ "ць кого",
+ "▁re ck",
+ "▁rec k",
+ "▁ reck",
+ "▁сер пня",
+ "▁G rey",
+ "▁Gr ey",
+ "▁Gre y",
+ "▁appe al",
+ "▁un like",
+ "▁power shell",
+ "▁pow ershell",
+ "▁powers hell",
+ "▁r acc",
+ "▁ra cc",
+ "▁rac c",
+ "fer s",
+ "fe rs",
+ "f ers",
+ "▁bur ning",
+ "▁burn ing",
+ "fas st",
+ "fass t",
+ "inst alled",
+ "install ed",
+ "▁G ive",
+ "▁Gi ve",
+ "▁col onial",
+ "▁colon ial",
+ "▁ €",
+ "▁R ö",
+ "▁ch rist",
+ "▁chr ist",
+ "ne hm",
+ "neh m",
+ "та м",
+ "▁cor po",
+ "▁con virti",
+ "yt er",
+ "y ter",
+ "S ym",
+ "▁Gree ce",
+ "▁m oth",
+ "▁mo th",
+ "▁mot h",
+ "▁Joh an",
+ "▁Jo han",
+ "▁mon arch",
+ "▁Down load",
+ "▁ Download",
+ "▁c raft",
+ "▁cr aft",
+ "▁cra ft",
+ "▁ craft",
+ "u ž",
+ "▁Lu ke",
+ "▁suf fix",
+ "▁suff ix",
+ "\\ /",
+ "Ha ve",
+ "H ave",
+ "▁ка рь",
+ "▁кар ь",
+ "▁comfort able",
+ "▁t ips",
+ "▁tip s",
+ "▁ti ps",
+ "▁П ісля",
+ "▁бро ја",
+ "▁ин форма",
+ "M Q",
+ "бра н",
+ "б ран",
+ "▁t x",
+ "▁ tx",
+ "▁sl aves",
+ "▁sla ves",
+ "▁slave s",
+ "▁fire wall",
+ "▁For ces",
+ "▁Force s",
+ "at if",
+ "ati f",
+ "▁Qu ellen",
+ "▁thé âtre",
+ "ль ных",
+ "▁располо жен",
+ "▁Det ails",
+ "▁ Details",
+ "k ą",
+ "▁long itud",
+ "IN ST",
+ "▁n aval",
+ "▁na val",
+ "▁nav al",
+ "Fern seh",
+ "es sel",
+ "ess el",
+ "esse l",
+ "Gr ad",
+ "G rad",
+ "▁be lang",
+ "▁bel ang",
+ "▁a ggi",
+ "▁ag gi",
+ "▁ aggi",
+ "Zygote Init",
+ "ł ów",
+ "▁S ug",
+ "▁Su g",
+ "si l",
+ "s il",
+ "▁ex terior",
+ "щ і",
+ "OR D",
+ "en ser",
+ "ens er",
+ "ense r",
+ "▁rapid e",
+ "▁rap ide",
+ "▁тем пера",
+ "in cie",
+ "inci e",
+ "inc ie",
+ "S i",
+ "av am",
+ "ava m",
+ "ar ded",
+ "ard ed",
+ "arde d",
+ "▁Ad ded",
+ "▁Add ed",
+ "End point",
+ "hard t",
+ "har dt",
+ "ст ран",
+ "стра н",
+ "стр ан",
+ "▁est ilo",
+ "▁H az",
+ "▁Ha z",
+ "▁mus ste",
+ "▁muss te",
+ "u o",
+ "ii i",
+ "i ii",
+ "▁ř í",
+ "▁ ří",
+ "an zen",
+ "anz en",
+ "anze n",
+ "же ний",
+ "ah a",
+ "a ha",
+ "ARN ING",
+ "▁re nov",
+ "▁ren ov",
+ "▁div ine",
+ "▁convin ced",
+ "▁hum ans",
+ "▁human s",
+ "▁hu mans",
+ "▁depart ure",
+ "▁Med iter",
+ "▁Medi ter",
+ "q a",
+ "▁poss essed",
+ "▁possess ed",
+ "▁цер кви",
+ "gi v",
+ "g iv",
+ "▁сво ї",
+ "▁Ort ste",
+ "▁Orts te",
+ "R ich",
+ "pu is",
+ "p uis",
+ "in crement",
+ "▁Hann over",
+ "▁u cz",
+ "Do ne",
+ "Don e",
+ "D one",
+ "▁alg uns",
+ "FI X",
+ "F IX",
+ "▁Her itage",
+ "remove Class",
+ "фе р",
+ "ф ер",
+ "▁a bc",
+ "▁ab c",
+ "▁ abc",
+ "D r",
+ "▁се мей",
+ "▁сем ей",
+ "{ :",
+ "▁se ule",
+ "▁seu le",
+ "▁seul e",
+ "zeich nungen",
+ "zeichnung en",
+ "ad dy",
+ "add y",
+ "▁Par ís",
+ "üss eld",
+ "▁re ception",
+ "▁rece ption",
+ "fo lio",
+ "fol io",
+ "ti ny",
+ "t iny",
+ "▁recens ement",
+ "▁N ur",
+ "▁Nu r",
+ "▁k ier",
+ "▁ki er",
+ "▁g mina",
+ "▁gmin a",
+ "sta at",
+ "ánd ose",
+ "че ская",
+ "▁spe aker",
+ "▁speak er",
+ "▁expon ential",
+ "▁exponent ial",
+ "▁D ieu",
+ "▁Die u",
+ "▁Di eu",
+ "▁при з",
+ "▁пр из",
+ "▁Raf ael",
+ "▁gg plot",
+ "▁Tem plate",
+ "▁Temp late",
+ "▁ Template",
+ "ou re",
+ "our e",
+ "o ure",
+ "▁In ner",
+ "▁Inn er",
+ "▁ Inner",
+ "og ne",
+ "ogn e",
+ "ig are",
+ "iga re",
+ "▁Ar te",
+ "▁Art e",
+ "▁C ov",
+ "▁Co v",
+ "▁auf grund",
+ "▁Б ы",
+ "▁cerem ony",
+ "▁S part",
+ "▁Sp art",
+ "ject ive",
+ "y i",
+ "▁in izi",
+ "▁l atin",
+ "▁lat in",
+ "▁Never theless",
+ "▁D one",
+ "▁Do ne",
+ "▁Don e",
+ "▁ Done",
+ "т ря",
+ "▁A rr",
+ "▁Ar r",
+ "▁ Arr",
+ "se ason",
+ "▁скла ду",
+ "▁pod czas",
+ "▁Beaut iful",
+ "▁Weltkrie g",
+ "▁з о",
+ "▁ зо",
+ "▁over come",
+ "▁Pr aha",
+ "▁Pra ha",
+ "▁рай ону",
+ "▁райо ну",
+ "▁район у",
+ "▁sub scription",
+ "▁subs cription",
+ "▁subscri ption",
+ "ig ent",
+ "igen t",
+ "ige nt",
+ "i gent",
+ "▁по ка",
+ "la tex",
+ "lat ex",
+ "late x",
+ "▁b each",
+ "▁be ach",
+ "▁ро ках",
+ "ge g",
+ "g eg",
+ "▁pro bl",
+ "▁prob l",
+ "arg uments",
+ "argument s",
+ "▁organ izations",
+ "▁organiz ations",
+ "▁organization s",
+ "▁N an",
+ "▁Na n",
+ "▁st ones",
+ "▁sto nes",
+ "▁stone s",
+ "▁H unter",
+ "▁Hun ter",
+ "▁regular ly",
+ "шо го",
+ "ш ого",
+ "▁flex ible",
+ "op ts",
+ "opt s",
+ "o pts",
+ "á ř",
+ "wi tz",
+ "w itz",
+ "▁' )",
+ "▁ ')",
+ "PA SS",
+ "P ASS",
+ "▁k raj",
+ "▁kr aj",
+ "▁kra j",
+ "▁f ake",
+ "▁fa ke",
+ "he its",
+ "heit s",
+ "os ph",
+ "osp h",
+ "parse Int",
+ "F ALSE",
+ "▁prof ess",
+ "▁profes s",
+ "pe ople",
+ "▁pre cip",
+ "▁prec ip",
+ "dir name",
+ "▁per pet",
+ "▁Up dated",
+ "▁Update d",
+ "▁ Updated",
+ "ra yed",
+ "ray ed",
+ "▁prov oc",
+ "▁тра вня",
+ "▁трав ня",
+ "▁categ orie",
+ "▁categor ie",
+ "▁те о",
+ "с ну",
+ "ot r",
+ "o tr",
+ "▁Вер хов",
+ "▁comp ét",
+ "Co st",
+ "C ost",
+ "▁w ider",
+ "▁wide r",
+ "▁wid er",
+ "▁Ob viously",
+ "пи сан",
+ "писа н",
+ "пис ан",
+ "▁на стоя",
+ "▁see king",
+ "▁seek ing",
+ "() ),",
+ "()) ,",
+ "( )),",
+ "▁é quipe",
+ "▁équip e",
+ "▁ équipe",
+ "▁comm its",
+ "▁commit s",
+ "▁S vens",
+ "▁Sv ens",
+ "я бре",
+ "at ern",
+ "ate rn",
+ "ater n",
+ "a tern",
+ "▁h eter",
+ "▁he ter",
+ "▁het er",
+ "▁Boot strap",
+ "én é",
+ "é né",
+ "▁deriv atives",
+ "▁derivative s",
+ "▁Det roit",
+ "▁provin cial",
+ "▁provincia l",
+ "onom ie",
+ "E B",
+ "▁c uer",
+ "▁cu er",
+ "▁от носи",
+ "▁отно си",
+ "▁не й",
+ "▁н ей",
+ "▁ ней",
+ ") ».",
+ "▁Ci udad",
+ "IA L",
+ "I AL",
+ "zy st",
+ "z yst",
+ ")\" )",
+ ") \")",
+ "▁Al c",
+ "bl ogs",
+ "blog s",
+ "blo gs",
+ "b logs",
+ "▁par mi",
+ "▁Album s",
+ "▁Alb ums",
+ "▁Bo liv",
+ "▁Bol iv",
+ "▁c lés",
+ "▁cl és",
+ "Product s",
+ "uer do",
+ "▁ge lang",
+ "▁gel ang",
+ "zn ik",
+ "z nik",
+ "ha gen",
+ "h agen",
+ "an onymous",
+ "▁sv g",
+ "▁ svg",
+ "▁Cons eil",
+ "▁Conse il",
+ "▁A ri",
+ "▁Ar i",
+ "col i",
+ "co li",
+ "c oli",
+ "▁c zy",
+ "▁cz y",
+ "▁ czy",
+ "▁C V",
+ "▁ CV",
+ "▁f ord",
+ "▁for d",
+ "▁fo rd",
+ "▁ ford",
+ "▁Au ßer",
+ "▁Auß er",
+ "▁C I",
+ "▁ CI",
+ "▁t empt",
+ "▁tem pt",
+ "▁temp t",
+ "▁Organ isation",
+ "á š",
+ "▁cy cles",
+ "▁cycle s",
+ "▁cycl es",
+ "▁ges lacht",
+ "▁лю дей",
+ "ým i",
+ "ý mi",
+ "▁S pieler",
+ "▁Spiel er",
+ "ef e",
+ "e fe",
+ "▁Mar vel",
+ "▁por tal",
+ "▁port al",
+ "▁porta l",
+ "▁ portal",
+ "▁Сер г",
+ "▁g rado",
+ "▁gr ado",
+ "▁gra do",
+ "▁grad o",
+ "▁hand lers",
+ "▁handle rs",
+ "▁handler s",
+ "▁Inter face",
+ "▁ Interface",
+ "AM E",
+ "A ME",
+ "▁ser iously",
+ "▁serious ly",
+ "▁B inding",
+ "▁Bin ding",
+ "▁Bind ing",
+ "▁ Binding",
+ "▁R ang",
+ "▁Ra ng",
+ "▁Ran g",
+ "▁n ada",
+ "▁na da",
+ "▁nad a",
+ "oc e",
+ "o ce",
+ "▁inte gra",
+ "▁integr a",
+ "oc racy",
+ "ocr acy",
+ "▁аль бо",
+ "▁st ability",
+ "▁stabil ity",
+ "Un s",
+ "U ns",
+ "▁v eter",
+ "▁ve ter",
+ "-- ----+",
+ "---- --+",
+ "--- ---+",
+ "------ +",
+ "----- -+",
+ "▁se rait",
+ "▁ser ait",
+ "▁sera it",
+ "▁om itted",
+ "▁uncertain ty",
+ "on ian",
+ "oni an",
+ "onia n",
+ "▁re sto",
+ "▁r esto",
+ "▁res to",
+ "▁rest o",
+ "▁же лез",
+ "▁од ной",
+ "▁одно й",
+ "▁Bevölker ung",
+ "▁K raft",
+ "▁Kr aft",
+ "▁Kra ft",
+ "ст р",
+ "▁Mos cow",
+ "la ne",
+ "lan e",
+ "l ane",
+ "ar ab",
+ "ara b",
+ "a rab",
+ "▁s pole",
+ "▁sp ole",
+ "▁spo le",
+ "▁сво его",
+ "? :",
+ "ST ART",
+ "▁ин тер",
+ "▁инте р",
+ "▁sym pt",
+ "▁Loren zo",
+ "▁ej ec",
+ "▁pros per",
+ "DA T",
+ "D AT",
+ "лимпи й",
+ "▁sh apes",
+ "▁shape s",
+ "value Of",
+ "▁associ ate",
+ "▁Med ien",
+ "▁Medi en",
+ "EN V",
+ "▁с ре",
+ "▁држа ве",
+ "▁the ories",
+ "he b",
+ "h eb",
+ "▁Way ne",
+ "▁String Builder",
+ "iw ers",
+ "i wers",
+ "▁M aps",
+ "▁Ma ps",
+ "▁Map s",
+ "Ph ys",
+ "\\} \\",
+ "\\ }\\",
+ "▁P arte",
+ "▁Par te",
+ "▁Part e",
+ "▁Hud son",
+ "ло н",
+ "л он",
+ "L ng",
+ "▁р ы",
+ "▁ ры",
+ "ст ей",
+ "сте й",
+ "с тей",
+ "la u",
+ "l au",
+ "an cer",
+ "ance r",
+ "anc er",
+ "▁Co ppa",
+ "▁Cop pa",
+ "▁вій сь",
+ "▁u cc",
+ "▁Pat tern",
+ "▁ Pattern",
+ "▁gar bage",
+ "▁Gon zález",
+ "▁Encyc lop",
+ "et ten",
+ "ett en",
+ "ette n",
+ "Ex ternal",
+ "Ext ernal",
+ "RE F",
+ "R EF",
+ "> ;",
+ "lij ke",
+ "lijk e",
+ "▁inter sect",
+ "▁Un less",
+ "▁de eper",
+ "▁deep er",
+ "▁ж і",
+ "▁ жі",
+ "de nt",
+ "den t",
+ "d ent",
+ "le f",
+ "l ef",
+ "▁ch anson",
+ "▁diff us",
+ "▁pr imi",
+ "▁prim i",
+ "▁pri mi",
+ "▁W ieder",
+ "▁Wi eder",
+ "▁Wie der",
+ "▁a ws",
+ "▁aw s",
+ "▁ aws",
+ "ow ana",
+ "owa na",
+ "owan a",
+ "▁so ciale",
+ "▁social e",
+ "▁soci ale",
+ "▁soc iale",
+ "ik k",
+ "i kk",
+ "ль ной",
+ "льно й",
+ "▁div isions",
+ "▁division s",
+ "▁divis ions",
+ "ло со",
+ "▁Cl aud",
+ "▁Cla ud",
+ "▁Y a",
+ "▁v oce",
+ "▁vo ce",
+ "▁voc e",
+ "▁B ranch",
+ "▁Br anch",
+ "▁Bran ch",
+ "▁f itted",
+ "▁fit ted",
+ "or r",
+ "o rr",
+ "ôt el",
+ "ô tel",
+ "st roke",
+ "str oke",
+ "list ener",
+ "listen er",
+ "im an",
+ "ima n",
+ "i man",
+ "во сто",
+ "▁Sh ah",
+ "Int roduction",
+ "▁new line",
+ "▁t ile",
+ "▁til e",
+ "▁ti le",
+ "'] ))",
+ "']) )",
+ "' ]))",
+ "▁trav aux",
+ "▁trava ux",
+ "CON FIG",
+ "▁quadr atic",
+ "on neur",
+ "onn eur",
+ "onne ur",
+ "▁Gi org",
+ "▁ident ific",
+ "éric aine",
+ "érica ine",
+ "▁UI View",
+ "▁ UIView",
+ "▁Lib eral",
+ "▁Liber al",
+ "▁K och",
+ "▁Ko ch",
+ "▁Berlin er",
+ "▁Berl iner",
+ "▁not ifications",
+ "▁notification s",
+ "▁Su san",
+ "▁Sus an",
+ "▁c adre",
+ "▁cad re",
+ "▁K loster",
+ "▁Kl oster",
+ "▁exam ine",
+ "▁е дин",
+ "▁еди н",
+ "▁UN ION",
+ "▁al ten",
+ "▁alt en",
+ "▁alte n",
+ "▁f init",
+ "▁fin it",
+ "▁fi nit",
+ "▁pe dig",
+ "▁ped ig",
+ "cy k",
+ "c yk",
+ "▁mouv ement",
+ "▁mou vement",
+ "IO S",
+ "I OS",
+ "▁бри тан",
+ "▁b out",
+ "▁bo ut",
+ "▁bou t",
+ "▁ав тор",
+ "▁авто р",
+ "ниц тво",
+ "ет о",
+ "е то",
+ "le ra",
+ "ler a",
+ "l era",
+ "cl s",
+ "c ls",
+ "▁L ey",
+ "▁Le y",
+ "am y",
+ "a my",
+ "ag ens",
+ "age ns",
+ "agen s",
+ "a gens",
+ "as hed",
+ "ash ed",
+ "▁ok rę",
+ "г ро",
+ "el lett",
+ "ell ett",
+ "elle tt",
+ "▁F ellow",
+ "▁Fel low",
+ "▁manif old",
+ "$) ,",
+ "$ ),",
+ "ld er",
+ "l der",
+ "▁v oz",
+ "▁vo z",
+ "▁be gg",
+ "▁beg g",
+ "▁b aron",
+ "▁bar on",
+ "▁ba ron",
+ "▁f id",
+ "▁fi d",
+ "▁f iring",
+ "▁fi ring",
+ "▁fir ing",
+ "il da",
+ "ild a",
+ "de k",
+ "d ek",
+ "A U",
+ "it are",
+ "ita re",
+ "itar e",
+ "▁A ra",
+ "▁Ar a",
+ "▁Ex it",
+ "▁ Exit",
+ "▁cin emat",
+ "▁cinema t",
+ "▁int ros",
+ "▁intr os",
+ "▁intro s",
+ "▁contact s",
+ "пе ни",
+ "пен и",
+ "▁m öglich",
+ "▁Singap ore",
+ "str öm",
+ "▁H ern",
+ "▁He rn",
+ "▁Her n",
+ "▁six th",
+ "▁public ations",
+ "▁pub lications",
+ "▁publication s",
+ "vi e",
+ "v ie",
+ "▁H at",
+ "▁Ha t",
+ "▁accept ing",
+ "á c",
+ "st wo",
+ "s two",
+ "▁quiet ly",
+ "Ph oto",
+ "▁b asket",
+ "▁bas ket",
+ "▁eigen values",
+ "▁mé dec",
+ "▁méd ec",
+ "▁O limp",
+ "▁Ol imp",
+ "▁цер ков",
+ "al in",
+ "ali n",
+ "a lin",
+ "con sum",
+ "cons um",
+ "▁l assen",
+ "▁las sen",
+ "▁ lassen",
+ "▁ан ти",
+ "▁S eq",
+ "▁Se q",
+ "▁ Seq",
+ "\"; \r",
+ "\" ;\r",
+ "ra re",
+ "rar e",
+ "r are",
+ "▁$ |\\",
+ "▁$| \\",
+ "▁n ick",
+ "▁ni ck",
+ "▁nic k",
+ "▁ nick",
+ "df lare",
+ "V ec",
+ "bind ung",
+ "▁b g",
+ "▁ bg",
+ "ch anges",
+ "change s",
+ "chan ges",
+ "Day s",
+ "Da ys",
+ "D ays",
+ "▁M ouse",
+ "▁Mo use",
+ "▁Mou se",
+ "▁ Mouse",
+ "▁wait ed",
+ "▁wa ited",
+ "▁Tom atoes",
+ "▁f as",
+ "▁fa s",
+ "▁ fas",
+ "ver te",
+ "vert e",
+ "v erte",
+ "▁success ion",
+ "▁succ ession",
+ "со р",
+ "с ор",
+ "▁s ols",
+ "▁so ls",
+ "▁sol s",
+ "▁R ender",
+ "▁Re nder",
+ "▁Ren der",
+ "▁ Render",
+ "▁lead ership",
+ "▁leader ship",
+ "▁leaders hip",
+ "▁signific ance",
+ "▁ga uche",
+ "▁gau che",
+ "ca no",
+ "can o",
+ "c ano",
+ "▁P ie",
+ "▁Pi e",
+ "enso ort",
+ "▁cam bio",
+ "▁camb io",
+ "▁у з",
+ "▁ende av",
+ "Comp leted",
+ "Comple ted",
+ "Complete d",
+ "▁Архив ная",
+ "j d",
+ "ór ico",
+ "ó rico",
+ "▁church es",
+ "▁an imate",
+ "▁anim ate",
+ "▁ani mate",
+ "▁ animate",
+ "S G",
+ "comp ute",
+ "comput e",
+ "▁uniform ly",
+ "IN IT",
+ "ll es",
+ "lle s",
+ "l les",
+ "Http Request",
+ "К о",
+ "Di ff",
+ "D iff",
+ "▁s ah",
+ "▁sa h",
+ "air o",
+ "ai ro",
+ "a iro",
+ "may be",
+ "UT E",
+ "U TE",
+ "▁D ow",
+ "▁Do w",
+ "hu man",
+ "hum an",
+ "h uman",
+ "▁au rait",
+ "▁aur ait",
+ "dar k",
+ "d ark",
+ "▁re pair",
+ "▁rep air",
+ "▁n er",
+ "▁ne r",
+ "▁ ner",
+ "▁D abei",
+ "▁Da bei",
+ "▁Bo tan",
+ "▁Bot an",
+ "Or iginal",
+ "Origin al",
+ "az ă",
+ "▁N AT",
+ "▁NA T",
+ "im per",
+ "imp er",
+ "▁Y outh",
+ "▁You th",
+ "th es",
+ "the s",
+ "t hes",
+ "▁окру га",
+ "▁F lo",
+ "▁Fl o",
+ "▁break fast",
+ "ur ls",
+ "url s",
+ "▁über nahm",
+ "ár ios",
+ "ário s",
+ "á rios",
+ "▁O range",
+ "▁Or ange",
+ "▁Aff airs",
+ "sk e",
+ "s ke",
+ "▁not ify",
+ "▁ notify",
+ "imo ine",
+ "▁Ar ena",
+ "▁Are na",
+ "▁lib eral",
+ "▁liber al",
+ "▁o bec",
+ "▁ob ec",
+ "if a",
+ "i fa",
+ "gu ez",
+ "gue z",
+ "g uez",
+ "ion o",
+ "io no",
+ "i ono",
+ "пера тор",
+ "▁ret ained",
+ "▁retain ed",
+ "fa iled",
+ "fail ed",
+ "bin e",
+ "bi ne",
+ "b ine",
+ "т ных",
+ "▁CG Rect",
+ "cam era",
+ "ide note",
+ "iden ote",
+ "K B",
+ "▁l ights",
+ "▁light s",
+ "▁P ictures",
+ "▁Picture s",
+ "▁Squad ron",
+ "▁V olk",
+ "▁Vol k",
+ "▁b urg",
+ "▁bu rg",
+ "▁bur g",
+ "▁ burg",
+ ", ]",
+ "G i",
+ "ê que",
+ "make Text",
+ "▁every body",
+ "▁Hy per",
+ "▁Hyp er",
+ "▁De ux",
+ "▁gl ory",
+ "▁glo ry",
+ "pres entation",
+ "present ation",
+ "on ica",
+ "oni ca",
+ "onic a",
+ "o nica",
+ "▁fr ère",
+ "ag et",
+ "age t",
+ "a get",
+ "▁h ints",
+ "▁hint s",
+ "▁hin ts",
+ "▁t unnel",
+ "▁tun nel",
+ "▁E j",
+ "ál is",
+ "á lis",
+ "▁V iv",
+ "▁Vi v",
+ "ствен ных",
+ "▁c aps",
+ "▁cap s",
+ "▁ca ps",
+ "PA RT",
+ "PAR T",
+ "P ART",
+ "oc i",
+ "o ci",
+ "▁p rices",
+ "▁pr ices",
+ "▁pri ces",
+ "▁price s",
+ "curr ency",
+ "c urrency",
+ "▁a chter",
+ "▁ach ter",
+ "▁acht er",
+ "rom agnet",
+ "ge nder",
+ "gen der",
+ "gende r",
+ "g ender",
+ "▁s uis",
+ "▁su is",
+ "vers ions",
+ "version s",
+ "▁Tr aining",
+ "▁Tra ining",
+ "▁Train ing",
+ "in side",
+ "ins ide",
+ "eg e",
+ "e ge",
+ "▁tot ale",
+ "▁total e",
+ "▁D aar",
+ "▁Da ar",
+ "▁grud nia",
+ "▁I er",
+ "▁occasion s",
+ "▁occas ions",
+ "▁k de",
+ "▁tensor flow",
+ "▁ tensorflow",
+ "▁ó r",
+ "▁ ór",
+ "Method s",
+ "▁loop ing",
+ "▁direct eur",
+ "k ę",
+ "▁is omorphism",
+ "▁Jo ão",
+ "▁al igned",
+ "▁align ed",
+ "▁ aligned",
+ "он ов",
+ "о нов",
+ "ur ger",
+ "urg er",
+ "▁n ova",
+ "▁no va",
+ "▁nov a",
+ "mor row",
+ "m orrow",
+ "al tern",
+ "alt ern",
+ "alter n",
+ "H D",
+ "▁m arqu",
+ "▁mar qu",
+ "at ivas",
+ "ativ as",
+ "ati vas",
+ "ativa s",
+ "gg reg",
+ "g greg",
+ "▁anci en",
+ "▁anc ien",
+ "ni t",
+ "n it",
+ "▁sec ured",
+ "▁secure d",
+ "mi er",
+ "m ier",
+ "▁O le",
+ "▁Ol e",
+ "▁ин те",
+ "▁m inus",
+ "▁min us",
+ "▁ minus",
+ "▁clear er",
+ "▁n ello",
+ "▁nel lo",
+ "▁nell o",
+ "▁információ k",
+ "▁pro pre",
+ "▁prop re",
+ "{ .",
+ "il og",
+ "ilo g",
+ "i log",
+ "▁Qu ick",
+ "▁acc us",
+ "▁ac cus",
+ "emp loyee",
+ "▁з у",
+ "▁ зу",
+ "ць кий",
+ "фі цій",
+ "▁пу бли",
+ "▁ публи",
+ "▁b ent",
+ "▁be nt",
+ "▁ben t",
+ "▁по зво",
+ "▁П ор",
+ "▁По р",
+ "áz í",
+ "án ico",
+ "á nico",
+ "empty set",
+ "▁sur tout",
+ "re no",
+ "ren o",
+ "r eno",
+ "un ya",
+ "▁у ез",
+ "▁Mill ionen",
+ "▁listop ada",
+ "▁M aine",
+ "▁Ma ine",
+ "▁Main e",
+ "▁Mai ne",
+ "▁gru pos",
+ "▁grupo s",
+ "▁grup os",
+ "▁St orage",
+ "▁Sto rage",
+ "▁ Storage",
+ "▁app le",
+ "▁ap ple",
+ "▁ apple",
+ "▁L ö",
+ "ou sed",
+ "ous ed",
+ "ouse d",
+ "o used",
+ "д ро",
+ "sc i",
+ "s ci",
+ "▁hi bernate",
+ "▁ hibernate",
+ "do g",
+ "d og",
+ "▁во сто",
+ "▁вос то",
+ "▁ восто",
+ "▁intens ity",
+ "leg end",
+ "lege nd",
+ "legen d",
+ "▁W ille",
+ "▁Will e",
+ "▁Wil le",
+ "▁Wi lle",
+ "▁szer int",
+ "ges ellschaft",
+ "▁L iving",
+ "▁Li ving",
+ "▁Liv ing",
+ "al lo",
+ "all o",
+ "▁S plit",
+ "▁Sp lit",
+ "▁ Split",
+ "dr u",
+ "d ru",
+ "ne ed",
+ "n eed",
+ "▁Дж он",
+ "▁Sw iss",
+ "▁sp raw",
+ "▁spr aw",
+ "▁be ho",
+ "▁beh o",
+ "▁fot ograf",
+ "▁ren contre",
+ "▁k is",
+ "▁ki s",
+ "▁sign ing",
+ "▁sig ning",
+ "ak ult",
+ "aku lt",
+ "▁index ing",
+ "ap or",
+ "a por",
+ "▁con ception",
+ "▁concept ion",
+ "▁conce ption",
+ "ag greg",
+ "agg reg",
+ "a ggreg",
+ "▁Са вез",
+ "▁aff air",
+ "ě ní",
+ "A ugust",
+ "▁се кре",
+ "▁miesz kań",
+ "UI Image",
+ "▁b ishop",
+ "▁bi shop",
+ "▁ bishop",
+ "▁serv ants",
+ "▁servant s",
+ "▁tr ail",
+ "▁tra il",
+ "di git",
+ "dig it",
+ "▁jo ins",
+ "▁join s",
+ "▁N ear",
+ "▁Ne ar",
+ "öff entlich",
+ "> {",
+ "▁sk ład",
+ "ge führt",
+ "gef ührt",
+ "▁Hol z",
+ "▁Milit är",
+ "ach i",
+ "ac hi",
+ "a chi",
+ "Up per",
+ "U pper",
+ "pi ne",
+ "pin e",
+ "p ine",
+ "ut zt",
+ "utz t",
+ "▁nu ova",
+ "ibr ation",
+ "▁B ien",
+ "▁Bi en",
+ "▁пер вый",
+ "▁первы й",
+ "▁Cre ating",
+ "On ce",
+ "▁ein mal",
+ "▁ge ometric",
+ "▁geomet ric",
+ "st vo",
+ "▁k W",
+ "▁decom position",
+ "▁com edy",
+ "▁come dy",
+ "▁activ ation",
+ "▁an gry",
+ "▁ang ry",
+ "ill eurs",
+ "ille urs",
+ "▁inst antly",
+ "▁instant ly",
+ "▁suggest ing",
+ "▁C lay",
+ "▁Cl ay",
+ "▁Cla y",
+ "co t",
+ "c ot",
+ "▁G én",
+ "▁Gé n",
+ "($ (",
+ "( $(",
+ "un wrap",
+ "▁lif ted",
+ "▁lift ed",
+ "▁K it",
+ "▁Ki t",
+ "▁ Kit",
+ "▁l inea",
+ "▁li nea",
+ "▁line a",
+ "▁lin ea",
+ "о к",
+ "ha rt",
+ "har t",
+ "h art",
+ "-> _",
+ "▁n uit",
+ "▁nu it",
+ "▁Iss ue",
+ "ли и",
+ "▁r öm",
+ "Task s",
+ "▁S r",
+ "▁se is",
+ "▁sei s",
+ "as ia",
+ "asi a",
+ "}} $.",
+ "}}$ .",
+ "} }$.",
+ ": {",
+ "control s",
+ "contr ols",
+ "▁S tim",
+ "▁St im",
+ "▁Re cht",
+ "▁Rec ht",
+ "ocia ción",
+ "oci ación",
+ "▁N atal",
+ "▁Na tal",
+ "▁Nat al",
+ "▁Philipp ines",
+ "ul en",
+ "ule n",
+ "u len",
+ "F ixed",
+ "▁switch ed",
+ "Z ip",
+ "os pel",
+ "osp el",
+ "▁нача ле",
+ "▁B lan",
+ "▁Bl an",
+ "▁Bla n",
+ "ur st",
+ "urs t",
+ "▁aut our",
+ "▁auto ur",
+ "C a",
+ "▁lat itude",
+ "▁F rei",
+ "▁Fre i",
+ "▁Fr ei",
+ "▁Mus ée",
+ "▁K urz",
+ "▁Kur z",
+ "▁Ku rz",
+ "▁reg ião",
+ "sw ap",
+ "▁h ate",
+ "▁ha te",
+ "▁hat e",
+ "▁mod ifications",
+ "▁modification s",
+ "▁modific ations",
+ "▁К ом",
+ "▁Ко м",
+ "▁Anto ine",
+ "ug a",
+ "u ga",
+ "RE CT",
+ "R ECT",
+ "ét er",
+ "é ter",
+ "G ROUP",
+ "▁sacr ific",
+ "▁W he",
+ "▁Wh e",
+ "▁Ste vens",
+ "▁Steve ns",
+ "▁Steven s",
+ "olog ische",
+ "Sum mary",
+ "ob s",
+ "o bs",
+ "hn en",
+ "h nen",
+ "< %=",
+ "di enst",
+ "d ienst",
+ "re mark",
+ "rem ark",
+ "r emark",
+ "▁veröff entlicht",
+ "е л",
+ "▁M ock",
+ "▁Mo ck",
+ "▁ Mock",
+ "▁Ль в",
+ "▁tr ês",
+ "g b",
+ "▁celebr ated",
+ "▁E b",
+ "▁c osta",
+ "▁co sta",
+ "▁cost a",
+ "▁cos ta",
+ "▁Ge ographic",
+ "▁att achment",
+ "▁attach ment",
+ "mann schaft",
+ "▁depend ence",
+ "� �",
+ "▁att itude",
+ "et al",
+ "eta l",
+ "e tal",
+ "vi c",
+ "v ic",
+ "ba ut",
+ "bau t",
+ "b aut",
+ "▁д ов",
+ "▁до в",
+ "▁ дов",
+ "▁inter ven",
+ "▁G ü",
+ "ón ica",
+ "ó nica",
+ "▁P on",
+ "▁Po n",
+ "▁dispon ible",
+ "▁F eb",
+ "▁Fe b",
+ "▁wor ship",
+ "▁Specific ally",
+ "H y",
+ "ij u",
+ "i ju",
+ "▁c b",
+ "▁ cb",
+ "▁sp ac",
+ "lev eland",
+ "level and",
+ "▁local idad",
+ "▁prec eding",
+ "▁preced ing",
+ "▁H essen",
+ "x p",
+ "▁W ein",
+ "▁We in",
+ "▁Wei n",
+ "▁Rom â",
+ "▁gi orno",
+ "▁gior no",
+ "▁квіт ня",
+ "lla ços",
+ "▁Academ ia",
+ "▁k ül",
+ "▁Å rs",
+ "▁на ј",
+ "uc lide",
+ "Inter net",
+ "Intern et",
+ "or ton",
+ "ort on",
+ "▁c orn",
+ "▁cor n",
+ "▁co rn",
+ "я ми",
+ "▁\" *",
+ "▁Fel ix",
+ "ap at",
+ "apa t",
+ "a pat",
+ "▁сво и",
+ "MI T",
+ "M IT",
+ "ma de",
+ "mad e",
+ "m ade",
+ "▁lo comot",
+ "хо да",
+ "ход а",
+ "F P",
+ "▁p m",
+ "▁ pm",
+ ".* ;",
+ "▁H amm",
+ "▁Ha mm",
+ "▁Ham m",
+ "` }",
+ "Layout Inflater",
+ "== \"",
+ "= =\"",
+ "▁E ur",
+ "▁Eu r",
+ "▁d ogs",
+ "▁do gs",
+ "▁dog s",
+ "же нии",
+ "▁a zon",
+ "▁az on",
+ "▁ azon",
+ "▁em ulator",
+ "▁r icon",
+ "▁ric on",
+ "▁ri con",
+ "be eld",
+ "▁н у",
+ "▁ ну",
+ "▁approxim ate",
+ "L M",
+ "▁B ond",
+ "▁Bo nd",
+ "▁Bon d",
+ "▁en h",
+ "ęd z",
+ "ę dz",
+ "▁s olit",
+ "▁so lit",
+ "▁sol it",
+ "Relative Layout",
+ "et eor",
+ "ete or",
+ "ament os",
+ "amento s",
+ "▁in direct",
+ "▁ind irect",
+ "ib ől",
+ "▁g ros",
+ "▁gr os",
+ "▁gro s",
+ "▁Original s",
+ "▁Origin als",
+ "▁Orig inals",
+ "comm ands",
+ "command s",
+ "Ex port",
+ "Exp ort",
+ "▁A vec",
+ "▁Av ec",
+ "▁sole mn",
+ "▁solem n",
+ "▁correct ion",
+ "▁corre ction",
+ "▁corr ection",
+ "▁про води",
+ "▁прово ди",
+ "▁Mo sk",
+ "▁Mos k",
+ "▁по до",
+ "▁под о",
+ "▁geb ied",
+ "▁nast ęp",
+ "▁D river",
+ "▁Dr iver",
+ "▁Drive r",
+ "▁ Driver",
+ "▁O ok",
+ "▁V ec",
+ "▁Ve c",
+ "▁ Vec",
+ "▁lung o",
+ "▁lun go",
+ "fi cos",
+ "fic os",
+ "fico s",
+ "f icos",
+ "▁s vol",
+ "▁sv ol",
+ "▁svo l",
+ "▁k id",
+ "▁ki d",
+ "n ja",
+ "▁H r",
+ "▁под дер",
+ "▁vis ibility",
+ "▁ visibility",
+ "▁M éd",
+ "▁Mé d",
+ "▁c pu",
+ "▁cp u",
+ "▁ cpu",
+ "dis cussion",
+ "As set",
+ "Ass et",
+ "▁def ense",
+ "▁Any one",
+ "▁Just in",
+ "is zt",
+ "isz t",
+ "▁Coll ins",
+ "▁Val ent",
+ "▁P ale",
+ "▁Pa le",
+ "▁Pal e",
+ "▁f uel",
+ "▁fue l",
+ "▁fu el",
+ "▁n ose",
+ "▁no se",
+ "▁nos e",
+ "rí guez",
+ "▁Sch les",
+ "▁Schl es",
+ "▁Mal ays",
+ "▁com mut",
+ "▁comm ut",
+ "dr o",
+ "d ro",
+ "ui ng",
+ "u ing",
+ "▁R ico",
+ "▁Ric o",
+ "▁Ri co",
+ "▁Em ma",
+ "or p",
+ "o rp",
+ "▁K irk",
+ "▁Kir k",
+ "▁Qu ando",
+ "▁Ne ue",
+ "▁Neu e",
+ "▁de mande",
+ "▁dem ande",
+ "▁demand e",
+ "▁C over",
+ "▁Co ver",
+ "▁Cov er",
+ "▁res cue",
+ "▁gew ählt",
+ "▁Cal endar",
+ "▁ Calendar",
+ "▁Mad onna",
+ "W P",
+ "os hi",
+ "osh i",
+ "▁M aven",
+ "▁Ma ven",
+ "▁b elle",
+ "▁be lle",
+ "▁bel le",
+ "▁bell e",
+ "▁w x",
+ "▁ wx",
+ "▁su gar",
+ "▁sug ar",
+ "▁Bet rieb",
+ "▁equilib rium",
+ "E AR",
+ "▁text s",
+ "▁tex ts",
+ "сло в",
+ "с лов",
+ "▁czerw ca",
+ "▁D üsseld",
+ "▁EL SE",
+ "▁am ery",
+ "▁amer y",
+ "▁a ni",
+ "▁an i",
+ "▁ ani",
+ "▁o bey",
+ "▁ob ey",
+ "▁N ell",
+ "▁Ne ll",
+ "▁Nel l",
+ "▁in ne",
+ "▁inn e",
+ "▁т ро",
+ "▁ тро",
+ "F D",
+ "cc o",
+ "c co",
+ "▁Z ob",
+ "▁Zo b",
+ "al ette",
+ "ale tte",
+ "alet te",
+ "a lette",
+ "▁má jus",
+ "ect ed",
+ "ec ted",
+ "e cted",
+ "▁Tur key",
+ "▁Turk ey",
+ "▁Wh ether",
+ "▁Whe ther",
+ "q i",
+ "▁ш то",
+ "▁head quarters",
+ "en di",
+ "end i",
+ "ar us",
+ "aru s",
+ "a rus",
+ "op us",
+ "o pus",
+ "▁з оло",
+ "▁зо ло",
+ "▁de stru",
+ "▁dest ru",
+ "▁L ok",
+ "▁Lo k",
+ "▁satisf action",
+ "() \r",
+ "( )\r",
+ "▁Т ер",
+ "▁Те р",
+ "Jo se",
+ "J ose",
+ "▁con quer",
+ "▁conqu er",
+ "▁E ffect",
+ "▁ Effect",
+ "Layout Params",
+ "ie z",
+ "i ez",
+ "▁extern s",
+ "▁gegen über",
+ "▁E SP",
+ "▁ES P",
+ "ol ta",
+ "olt a",
+ "process or",
+ "proc essor",
+ "▁K ult",
+ "▁Ku lt",
+ "▁Atl anta",
+ "▁t ier",
+ "▁ti er",
+ "▁tie r",
+ "Oper ator",
+ "▁ди а",
+ "▁пи сь",
+ "▁gro ß",
+ "▁he arts",
+ "▁heart s",
+ "▁hear ts",
+ "▁mill imeter",
+ "al though",
+ "alth ough",
+ "al les",
+ "all es",
+ "alle s",
+ "a lles",
+ "▁Mag ic",
+ "tr aining",
+ "tra ining",
+ "train ing",
+ "ol ine",
+ "oli ne",
+ "olin e",
+ "o line",
+ "▁орган і",
+ ">\\< ^",
+ "> \\<^",
+ "ці аль",
+ "ex ports",
+ "export s",
+ "Work book",
+ "▁вере сня",
+ "▁t eles",
+ "▁te les",
+ "▁tele s",
+ "▁tel es",
+ "▁econom y",
+ "▁econ omy",
+ "▁ec onomy",
+ "▁t rap",
+ "▁tr ap",
+ "▁tra p",
+ "▁ref use",
+ "▁str anger",
+ "▁strange r",
+ "▁stran ger",
+ "▁inst inct",
+ "по да",
+ "ol an",
+ "ola n",
+ "o lan",
+ "▁n ing",
+ "▁ni ng",
+ "▁nin g",
+ "▁ ning",
+ "inf late",
+ "infl ate",
+ "itat ea",
+ "itate a",
+ "ack s",
+ "ac ks",
+ "a cks",
+ "▁J oy",
+ "▁Jo y",
+ "FL AG",
+ "FLA G",
+ "ail and",
+ "ai land",
+ "▁sort i",
+ "▁sor ti",
+ "▁в пер",
+ "▁p én",
+ "▁pé n",
+ "Not hing",
+ "No thing",
+ "N othing",
+ "▁sz áz",
+ "▁Á ng",
+ "▁A UT",
+ "▁ AUT",
+ "Act ions",
+ "Action s",
+ "A ctions",
+ "E very",
+ "▁чер вня",
+ "▁авто мо",
+ "▁rout ine",
+ "▁e struct",
+ "▁est ruct",
+ "▁G ang",
+ "▁Ga ng",
+ "▁Gan g",
+ "▁h oles",
+ "▁ho les",
+ "▁hol es",
+ "▁hole s",
+ "th esis",
+ "thes is",
+ "▁con cl",
+ "▁conc l",
+ "▁p é",
+ "ri ers",
+ "rie rs",
+ "rier s",
+ "r iers",
+ "ро вой",
+ "рово й",
+ "р овой",
+ "ad ic",
+ "adi c",
+ "a dic",
+ "Sp eed",
+ "Spe ed",
+ "▁command ed",
+ "▁N azionale",
+ "▁Naz ionale",
+ "Man aged",
+ "▁DE CLARE",
+ "▁se dan",
+ "▁sed an",
+ "String s",
+ "Str ings",
+ "▁sa cred",
+ "▁sac red",
+ "▁sacr ed",
+ "ter such",
+ "ters uch",
+ "▁abit anti",
+ "br it",
+ "b rit",
+ "▁N CAA",
+ "▁NC AA",
+ "▁С П",
+ "▁a ged",
+ "▁ag ed",
+ "▁age d",
+ "▁ aged",
+ "▁Ch iesa",
+ "▁Chi esa",
+ "▁re vision",
+ "▁rev ision",
+ "▁revis ion",
+ "op ro",
+ "o pro",
+ "▁over write",
+ "emb ros",
+ "embro s",
+ "▁sort ie",
+ "▁sorti e",
+ "▁ot ten",
+ "▁ott en",
+ "xi v",
+ "x iv",
+ "▁d eli",
+ "▁de li",
+ "▁del i",
+ "▁A sp",
+ "▁As p",
+ "▁b alls",
+ "▁bal ls",
+ "▁ball s",
+ "ka f",
+ "k af",
+ "▁br ave",
+ "▁bra ve",
+ "▁все го",
+ "▁вс его",
+ "eg n",
+ "e gn",
+ "jp eg",
+ "▁O sten",
+ "▁Os ten",
+ "▁Ost en",
+ "Const ants",
+ "▁Inf antry",
+ "▁N ev",
+ "▁Ne v",
+ "▁я ких",
+ "▁як их",
+ "▁му ниципа",
+ "ci ja",
+ "c ija",
+ "▁p oem",
+ "▁po em",
+ "▁ne gro",
+ "▁neg ro",
+ "ха р",
+ "х ар",
+ "▁A sk",
+ "▁As k",
+ "▁a vo",
+ "▁av o",
+ "▁ avo",
+ "▁Me yer",
+ "▁Mey er",
+ "▁W esten",
+ "▁We sten",
+ "▁West en",
+ "▁Wes ten",
+ "▁o ko",
+ "▁ok o",
+ "▁ oko",
+ "ag in",
+ "agi n",
+ "a gin",
+ "▁Süd en",
+ "▁Sü den",
+ "ent ries",
+ "entr ies",
+ "▁Rep ublik",
+ "▁Repub lik",
+ "Collection View",
+ "-- -----",
+ "---- ---",
+ "--- ----",
+ "------ -",
+ "----- --",
+ "- ------",
+ "▁fire fox",
+ "▁alc une",
+ "▁фо то",
+ "▁отри ма",
+ "~~~~ ~~~~",
+ "▁Ра з",
+ "▁Com plex",
+ "▁Comp lex",
+ "▁Comple x",
+ "▁p ia",
+ "▁pi a",
+ "▁public ada",
+ "we i",
+ "w ei",
+ "ced ure",
+ "occup ation",
+ "▁medic ine",
+ "▁dr ove",
+ "▁dro ve",
+ "Pro blem",
+ "▁beg inner",
+ "▁begin ner",
+ "▁thorough ly",
+ "ur ia",
+ "uri a",
+ "u ria",
+ "av ant",
+ "ava nt",
+ "avan t",
+ "uch a",
+ "uc ha",
+ "u cha",
+ "▁l ever",
+ "▁le ver",
+ "▁lev er",
+ "▁te atro",
+ "▁teat ro",
+ "AV A",
+ "A VA",
+ "sq u",
+ "s qu",
+ "tr at",
+ "tra t",
+ "t rat",
+ "iv atal",
+ "iva tal",
+ "▁d irty",
+ "▁dir ty",
+ "▁se conde",
+ "▁second e",
+ "▁sec onde",
+ "▁grav it",
+ "▁pro position",
+ "▁prop osition",
+ "▁propos ition",
+ "h bar",
+ "om ini",
+ "omin i",
+ "omi ni",
+ "▁ ”",
+ "▁C amil",
+ "▁Cam il",
+ "▁Ca mil",
+ "▁qu een",
+ "▁que en",
+ "mod ifier",
+ "J an",
+ "▁l yr",
+ "▁ly r",
+ "Com boBox",
+ "ion ic",
+ "io nic",
+ "ioni c",
+ "i onic",
+ "▁h oly",
+ "▁ho ly",
+ "▁hol y",
+ "▁Sebast ian",
+ "| _{",
+ "▁{ @",
+ "▁мо жно",
+ "▁мож но",
+ "▁Cre ative",
+ "▁inter ess",
+ "▁inte ress",
+ "▁C T",
+ "▁ CT",
+ "i ções",
+ "▁ch ant",
+ "▁cha nt",
+ "▁ chant",
+ "▁wsp ół",
+ "▁Мекси ка",
+ "▁ran ked",
+ "▁rank ed",
+ "▁paździer nika",
+ "▁b rut",
+ "▁br ut",
+ "▁bru t",
+ "▁far ther",
+ "▁V erb",
+ "▁Ver b",
+ "▁Ve rb",
+ "▁S even",
+ "▁Se ven",
+ "lb l",
+ "l bl",
+ "▁mention s",
+ "▁ment ions",
+ "▁F ight",
+ "▁Fig ht",
+ "if en",
+ "ife n",
+ "i fen",
+ "▁b og",
+ "▁bo g",
+ "▁re gres",
+ "▁reg res",
+ "▁sc oring",
+ "ic ane",
+ "ica ne",
+ "ican e",
+ "▁El li",
+ "▁Ell i",
+ "▁pie rw",
+ "▁pier w",
+ "me asure",
+ "ński ej",
+ "ń skiej",
+ "# {",
+ "▁де ся",
+ "▁var maste",
+ "▁Un ix",
+ "I Z",
+ "iti é",
+ "Prim ary",
+ "▁Spring er",
+ "▁Spr inger",
+ "ün g",
+ "ü ng",
+ "▁an v",
+ "▁vers ione",
+ "▁version e",
+ "▁should ers",
+ "▁shoulder s",
+ "▁бри га",
+ "▁j av",
+ "▁ja v",
+ "▁ jav",
+ "lt al",
+ "l tal",
+ "▁kall aste",
+ "▁Mitch ell",
+ "▁wire less",
+ "▁wir eless",
+ "▁Á l",
+ "resp ons",
+ "co uld",
+ "cou ld",
+ "c ould",
+ "▁re lax",
+ "▁rel ax",
+ "▁rela x",
+ "▁ relax",
+ "Lo nd",
+ "L ond",
+ "ń cz",
+ "ство вал",
+ "ствова л",
+ "▁pol ski",
+ "en ç",
+ "za r",
+ "z ar",
+ "▁d type",
+ "▁dt ype",
+ "ow ned",
+ "own ed",
+ "un known",
+ "unk nown",
+ "▁m utable",
+ "▁mu table",
+ "▁mut able",
+ "▁ mutable",
+ "▁si empre",
+ "▁Mont real",
+ "▁loc ate",
+ "▁tr aces",
+ "▁tra ces",
+ "▁trace s",
+ "▁trac es",
+ "▁ins gesamt",
+ "▁N il",
+ "▁Ni l",
+ "▁ Nil",
+ "▁п рода",
+ "▁про да",
+ "▁прод а",
+ "▁War ner",
+ "▁N au",
+ "▁Na u",
+ "tri angle",
+ "▁concentr ation",
+ "▁gentle men",
+ "äch t",
+ "ä cht",
+ "fil ters",
+ "filter s",
+ "inci pal",
+ "VAL ID",
+ "▁де пута",
+ "ad ó",
+ "▁kon st",
+ "gs å",
+ "ag as",
+ "aga s",
+ "a gas",
+ "▁meille ur",
+ "▁дан ным",
+ "є дна",
+ "en coded",
+ "enc oded",
+ "encode d",
+ "< '",
+ "▁she ets",
+ "▁sheet s",
+ "▁ sheets",
+ "cu ador",
+ "▁викори стову",
+ "▁De put",
+ "▁Dep ut",
+ "▁man ière",
+ "ą g",
+ "cs ol",
+ "c sol",
+ ")$ -",
+ ") $-",
+ "UI View",
+ "▁mill ones",
+ "▁E hren",
+ "▁Ehr en",
+ "Si l",
+ "S il",
+ "▁a tac",
+ "▁at ac",
+ "▁C old",
+ "▁Col d",
+ "▁Co ld",
+ "\" \\",
+ "▁appro ached",
+ "▁approach ed",
+ "▁Års med",
+ "W M",
+ "▁De port",
+ "▁Dep ort",
+ "mi s",
+ "m is",
+ "and box",
+ "ob serv",
+ "obs erv",
+ "set ting",
+ "sett ing",
+ "ha tó",
+ "hat ó",
+ "h ató",
+ "▁s trat",
+ "▁st rat",
+ "▁str at",
+ "▁stra t",
+ "▁s pre",
+ "▁sp re",
+ "▁spr e",
+ "▁ spre",
+ "▁person ne",
+ "▁pers onne",
+ "▁personn e",
+ "▁dir ige",
+ "▁dirig e",
+ "pu ll",
+ "p ull",
+ "da ting",
+ "dat ing",
+ "d ating",
+ "▁F act",
+ "▁Fa ct",
+ "▁Fac t",
+ "▁ Fact",
+ "▁manip ulate",
+ "▁M AC",
+ "▁MA C",
+ "▁d ej",
+ "▁de j",
+ "ult imo",
+ "F X",
+ "Li fe",
+ "L ife",
+ "▁c rack",
+ "▁cr ack",
+ "▁cra ck",
+ "▁m í",
+ "▁п ове",
+ "▁по ве",
+ "▁пов е",
+ "▁w ore",
+ "▁wor e",
+ "▁wo re",
+ "univers ité",
+ "▁form ulas",
+ "▁formula s",
+ "▁Elis abeth",
+ "pl ots",
+ "plot s",
+ "mi le",
+ "mil e",
+ "m ile",
+ "▁me nor",
+ "▁men or",
+ "ти л",
+ "т ил",
+ "key word",
+ "▁Balt imore",
+ "hr er",
+ "hre r",
+ "h rer",
+ "▁C lement",
+ "▁Cl ement",
+ "▁Cle ment",
+ "vi m",
+ "v im",
+ "ra ss",
+ "ras s",
+ "r ass",
+ "T ake",
+ "▁cím ű",
+ "▁Con vention",
+ "at ge",
+ "se ed",
+ "see d",
+ "s eed",
+ "▁D í",
+ "▁Sp ider",
+ "ah oo",
+ "aho o",
+ "▁име ет",
+ "ühr t",
+ "üh rt",
+ "▁по писа",
+ "▁C ot",
+ "▁Co t",
+ "▁no bles",
+ "▁noble s",
+ "▁nob les",
+ "RE SS",
+ "RES S",
+ "▁che min",
+ "▁chem in",
+ "▁gł ówn",
+ "G G",
+ "▁German ia",
+ "▁Ger mania",
+ "▁Germ ania",
+ "▁Alexand re",
+ "he ns",
+ "hen s",
+ "h ens",
+ "sw ift",
+ "oo p",
+ "o op",
+ "Sub view",
+ "▁requ iring",
+ "ęd zy",
+ "ędz y",
+ "▁f ict",
+ "▁fi ct",
+ "▁fic t",
+ "▁Кон стан",
+ "▁dé put",
+ "▁dép ut",
+ "▁surpr ising",
+ "▁de ix",
+ "▁dei x",
+ "▁unter schied",
+ "in son",
+ "ins on",
+ "▁Char acter",
+ "▁ Character",
+ "▁g estion",
+ "▁ges tion",
+ "▁gest ion",
+ "ch us",
+ "c hus",
+ "com es",
+ "co mes",
+ "come s",
+ "▁n eur",
+ "▁ne ur",
+ "▁neu r",
+ "▁ neur",
+ "▁ye ux",
+ "ol lar",
+ "oll ar",
+ "▁par ad",
+ "▁para d",
+ "▁pa rad",
+ "▁mag giore",
+ "▁maggio re",
+ "▁maggior e",
+ "TR AN",
+ "▁vo tre",
+ "▁vot re",
+ "▁des cent",
+ "▁desc ent",
+ "▁I con",
+ "▁ Icon",
+ "▁Jud ge",
+ "▁occup ation",
+ "▁ occupation",
+ "ep ing",
+ "e ping",
+ "▁ton gue",
+ "▁tong ue",
+ "▁En llaços",
+ "ru f",
+ "r uf",
+ "▁prote in",
+ "▁prot ein",
+ "▁vis itors",
+ "▁visit ors",
+ "▁visitor s",
+ "ax y",
+ "a xy",
+ "es ten",
+ "est en",
+ "este n",
+ "e sten",
+ "bl ica",
+ "blic a",
+ "b lica",
+ "h w",
+ "▁spir its",
+ "▁spirit s",
+ "▁redu ces",
+ "▁reduce s",
+ "▁м ен",
+ "▁ме н",
+ "▁ мен",
+ "▁L amb",
+ "▁La mb",
+ "▁Lam b",
+ "▁M ine",
+ "▁Min e",
+ "▁Mi ne",
+ "▁ver ified",
+ "▁B aby",
+ "▁Ba by",
+ "▁Bab y",
+ "▁pr ize",
+ "▁pri ze",
+ "в ър",
+ "▁rat ings",
+ "▁rating s",
+ "▁f ore",
+ "▁for e",
+ "▁fo re",
+ "▁ fore",
+ "as ha",
+ "ash a",
+ "a sha",
+ "ur rence",
+ "urr ence",
+ "▁int ér",
+ "▁Ol ímp",
+ "cr a",
+ "c ra",
+ "▁comput ational",
+ "▁computation al",
+ "ir che",
+ "irc he",
+ ".: ",
+ "▁illustr ated",
+ "▁illustrate d",
+ "▁Sh are",
+ "▁house holds",
+ "▁household s",
+ "▁con volution",
+ "oe md",
+ "oem d",
+ "▁zd oby",
+ "▁zdob y",
+ "cc c",
+ "c cc",
+ "▁quant ities",
+ "Ch e",
+ "C he",
+ "Sh ould",
+ "▁ge nius",
+ "▁gen ius",
+ "ad j",
+ "a dj",
+ "х ва",
+ "Пе тер",
+ "EM A",
+ "E MA",
+ "▁R ights",
+ "▁Right s",
+ "▁E li",
+ "▁El i",
+ "VA R",
+ "V AR",
+ "ш ло",
+ "▁з бір",
+ "ift ung",
+ "▁cont ributed",
+ "▁contrib uted",
+ "▁contribu ted",
+ "▁contribute d",
+ "ze f",
+ "z ef",
+ "▁CH AR",
+ "▁ CHAR",
+ "▁S ib",
+ "▁Si b",
+ "▁M ant",
+ "▁Man t",
+ "▁Ma nt",
+ "▁свя зи",
+ "▁java fx",
+ "▁c ependant",
+ "▁in tu",
+ "▁int u",
+ "▁т вор",
+ "▁ Ó",
+ "gu er",
+ "gue r",
+ "g uer",
+ "ra do",
+ "rad o",
+ "r ado",
+ "▁Re vol",
+ "▁Rev ol",
+ "▁fé min",
+ "▁Or leans",
+ "▁p oj",
+ "▁po j",
+ "▁p rez",
+ "▁pr ez",
+ "▁pre z",
+ "Te x",
+ "T ex",
+ "ou wd",
+ "ouw d",
+ "? (",
+ "▁L IM",
+ "▁LI M",
+ "ist ique",
+ "isti que",
+ "es ar",
+ "esa r",
+ "▁he ures",
+ "ic ki",
+ "ick i",
+ "i cki",
+ "▁d bo",
+ "▁db o",
+ "▁ dbo",
+ "sk ih",
+ "ski h",
+ "s kih",
+ "conf irm",
+ "▁vil ág",
+ "▁ci utat",
+ "▁D R",
+ "▁ DR",
+ "▁Haw ai",
+ "ch ed",
+ "che d",
+ "c hed",
+ "▁s pher",
+ "▁sp her",
+ "▁Art ikel",
+ "▁Multi ple",
+ "ci u",
+ "c iu",
+ "▁м ы",
+ "▁ мы",
+ "▁lip ca",
+ "]( /",
+ "] (/",
+ "Str ategy",
+ "▁Al abama",
+ "SD K",
+ "S DK",
+ "UT C",
+ "U TC",
+ "__ .",
+ "_ _.",
+ "Arg uments",
+ "Argument s",
+ "▁set ContentView",
+ "î le",
+ "By Val",
+ "▁J VM",
+ "юще го",
+ "▁Leon ard",
+ "▁just ify",
+ "це м",
+ "ц ем",
+ "▁n ab",
+ "▁na b",
+ "▁ nab",
+ "CCE SS",
+ "C CESS",
+ "▁hope s",
+ "▁ho pes",
+ "▁hop es",
+ ") &",
+ "se ro",
+ "ser o",
+ "s ero",
+ "▁за й",
+ "слі д",
+ "▁R ég",
+ "▁Ré g",
+ "▁S ang",
+ "▁San g",
+ "▁Sa ng",
+ "▁f ung",
+ "▁fun g",
+ "▁fu ng",
+ "ba ar",
+ "b aar",
+ "▁coff ee",
+ "ass embly",
+ "▁В ін",
+ "▁Ві н",
+ "э й",
+ "▁comp rend",
+ "▁compr end",
+ "fil led",
+ "fill ed",
+ "f illed",
+ "р д",
+ "od ia",
+ "odi a",
+ "o dia",
+ "▁g ens",
+ "▁ge ns",
+ "▁gen s",
+ "▁ gens",
+ "fl uss",
+ "flu ss",
+ "f luss",
+ "Draw able",
+ "▁sur ve",
+ "▁surv e",
+ "Set up",
+ "▁n ależ",
+ "▁conj unto",
+ "▁Е го",
+ "▁old al",
+ "▁ol dal",
+ "▁ver bose",
+ "▁verb ose",
+ "▁Elect ric",
+ "▁H arrison",
+ "▁Harr ison",
+ "▁Harris on",
+ "en gen",
+ "eng en",
+ "par agraph",
+ "para graph",
+ "▁n ouvelles",
+ "▁nouve lles",
+ "▁nouvelle s",
+ "▁вре ме",
+ "▁m emor",
+ "▁me mor",
+ "▁mem or",
+ "▁mayo ría",
+ "▁mayor ía",
+ "са д",
+ "▁bat aille",
+ "▁bata ille",
+ "▁therm al",
+ "▁ther mal",
+ "▁Хро нологи",
+ "▁B etter",
+ "▁Bet ter",
+ "by e",
+ "b ye",
+ "▁теа тра",
+ "ro e",
+ "r oe",
+ "▁se gle",
+ "▁seg le",
+ "ro tt",
+ "rot t",
+ "r ott",
+ "▁opin ions",
+ "▁opinion s",
+ ")} )",
+ ") })",
+ "üh le",
+ "ühl e",
+ "▁G ün",
+ "▁Gü n",
+ "▁ Щ",
+ "b ól",
+ "▁Lar ry",
+ "▁so lic",
+ "▁sol ic",
+ "▁z war",
+ "▁zw ar",
+ "▁Car oline",
+ "▁Carol ine",
+ "▁Reich s",
+ "Ext ensions",
+ "Extension s",
+ "mi gr",
+ "m igr",
+ ": @",
+ "▁en umerate",
+ "▁enumer ate",
+ "▁ enumerate",
+ "▁eigen en",
+ "▁eig enen",
+ "▁expl ore",
+ "▁explo re",
+ "ém u",
+ "é mu",
+ "▁g at",
+ "▁ga t",
+ "▁ gat",
+ "▁imper ial",
+ "▁Us ually",
+ "▁t ud",
+ "▁tu d",
+ "▁у кра",
+ "hi m",
+ "h im",
+ "▁cor ners",
+ "▁corner s",
+ "▁corn ers",
+ "▁S ER",
+ "▁SE R",
+ "▁ SER",
+ "▁interpre ter",
+ "▁interpret er",
+ "▁I ce",
+ "▁amount s",
+ "▁P ala",
+ "▁Pa la",
+ "▁Pal a",
+ "▁t inha",
+ "▁tin ha",
+ "vo le",
+ "vol e",
+ "v ole",
+ "▁g le",
+ "▁gl e",
+ "▁ gle",
+ "uc ci",
+ "▁sie he",
+ "Jac k",
+ "J ack",
+ "▁w oll",
+ "▁wo ll",
+ "▁wol l",
+ "▁e lder",
+ "▁el der",
+ "▁ко раб",
+ "▁eng ag",
+ "▁La urent",
+ "▁Laur ent",
+ "▁Lau rent",
+ "▁ach iev",
+ "ist ik",
+ "isti k",
+ "ar ct",
+ "arc t",
+ "тно го",
+ "т ного",
+ "▁g ir",
+ "▁gi r",
+ "▁Sing h",
+ "▁Sin gh",
+ "math op",
+ "US A",
+ "U SA",
+ "▁Pro jekt",
+ "▁de be",
+ "▁deb e",
+ "richt ung",
+ "r ichtung",
+ "▁T sch",
+ "▁Ts ch",
+ "um inate",
+ "umin ate",
+ "▁s zó",
+ "▁sz ó",
+ "ly ph",
+ "зи дент",
+ "зиден т",
+ "▁lim itations",
+ "▁limit ations",
+ "▁limitation s",
+ "юще й",
+ "▁b ila",
+ "▁bi la",
+ "▁bil a",
+ "P ush",
+ "▁off ering",
+ "▁offer ing",
+ "ien nes",
+ "ienne s",
+ "ienn es",
+ "i ennes",
+ "Fr i",
+ "F ri",
+ "▁post gresql",
+ "▁ postgresql",
+ "▁Tom my",
+ "▁partic olare",
+ "▁stolet í",
+ "▁ar rib",
+ "▁arr ib",
+ "▁E va",
+ "▁Ev a",
+ "sch ool",
+ "▁v endor",
+ "▁ven dor",
+ "▁vend or",
+ "▁ vendor",
+ "▁D allas",
+ "▁Dal las",
+ "▁pro long",
+ "CRE ATE",
+ "C REATE",
+ "▁suiv ante",
+ "STAT US",
+ "l à",
+ "k v",
+ "▁h äufig",
+ "▁Agr icult",
+ "▁h uit",
+ "▁hu it",
+ "▁in oltre",
+ "▁L loyd",
+ "▁францу з",
+ "▁вы пол",
+ "▁faith ful",
+ "▁В ар",
+ "▁Ва р",
+ "▁ver l",
+ "▁ve rl",
+ "▁ju ego",
+ "▁Резу лтати",
+ ", ...,",
+ "▁implicit ly",
+ "ir ks",
+ "irk s",
+ "Cal cul",
+ "▁m eses",
+ "▁mes es",
+ "om ed",
+ "ome d",
+ "o med",
+ "▁p ak",
+ "▁pa k",
+ "he rit",
+ "her it",
+ "▁opt ical",
+ "▁І сторія",
+ "ve is",
+ "▁capital e",
+ "▁capit ale",
+ "place holder",
+ "int rag",
+ "▁At las",
+ "▁Atl as",
+ "▁ Atlas",
+ ")] ;",
+ ") ];",
+ "ic ons",
+ "ico ns",
+ "icon s",
+ "i cons",
+ "▁B ent",
+ "▁Be nt",
+ "▁Ben t",
+ "▁W idget",
+ "▁ Widget",
+ "▁vol unt",
+ "av o",
+ "a vo",
+ "ég r",
+ "é gr",
+ "li ge",
+ "lig e",
+ "l ige",
+ "▁N AME",
+ "▁NA ME",
+ "▁ NAME",
+ "▁ab stra",
+ "▁abs tra",
+ "▁f ís",
+ "▁B rowser",
+ "▁Brow ser",
+ "▁ Browser",
+ "▁b ush",
+ "▁bu sh",
+ "▁bus h",
+ "ha ll",
+ "hal l",
+ "h all",
+ "▁cloud s",
+ "▁S UB",
+ "▁SU B",
+ "▁ SUB",
+ "▁t andis",
+ "▁tan dis",
+ "▁Common wealth",
+ "та я",
+ "▁exha ust",
+ "________ ________",
+ "▁Stat istics",
+ "▁Statist ics",
+ "▁Relig ion",
+ "▁Mu ham",
+ "ual s",
+ "ua ls",
+ "u als",
+ "go to",
+ "got o",
+ "g oto",
+ "Dig ital",
+ "Famil y",
+ "▁B un",
+ "▁Bu n",
+ "let in",
+ "Man agement",
+ "▁cap abilities",
+ "an nten",
+ "ann ten",
+ "annt en",
+ "annte n",
+ "▁се бе",
+ "▁st ays",
+ "▁stay s",
+ "▁sta ys",
+ "kt er",
+ "kte r",
+ "k ter",
+ "▁d ost",
+ "▁do st",
+ "▁dos t",
+ "▁Т ре",
+ "ло вич",
+ "лови ч",
+ "л ович",
+ "▁d ying",
+ "▁dy ing",
+ "se ctions",
+ "section s",
+ "sect ions",
+ "án os",
+ "á nos",
+ "▁app arten",
+ "▁appar ten",
+ "▁appart en",
+ "▁zo als",
+ "▁dr essed",
+ "▁dress ed",
+ "▁com press",
+ "▁comp ress",
+ "▁compr ess",
+ "ń ska",
+ "▁sierp nia",
+ "▁ти ту",
+ "diction ary",
+ "d ictionary",
+ "▁r abb",
+ "▁ra bb",
+ "▁vé rit",
+ "В о",
+ "▁sing leton",
+ "▁single ton",
+ "▁v ital",
+ "▁vi tal",
+ "▁vit al",
+ "▁vita l",
+ "Ref resh",
+ "ме ль",
+ "м ель",
+ "▁Z h",
+ "▁Af ghan",
+ "in kel",
+ "ink el",
+ "aa aa",
+ "▁particip ants",
+ "ar in",
+ "ari n",
+ "a rin",
+ "▁M old",
+ "▁Mo ld",
+ "▁Mol d",
+ "▁prim eros",
+ "▁prime ros",
+ "▁primer os",
+ "▁ра н",
+ "▁р ан",
+ "▁ ран",
+ "▁А мери",
+ "▁restaur ant",
+ "év el",
+ "é vel",
+ "▁S L",
+ "▁ SL",
+ "▁R ey",
+ "▁Re y",
+ "ch as",
+ "cha s",
+ "c has",
+ "▁elect rons",
+ "▁electron s",
+ "▁electro ns",
+ "▁Pitt s",
+ "▁Pit ts",
+ "▁J ules",
+ "▁Jul es",
+ "▁Ju les",
+ "ма й",
+ "en ant",
+ "ena nt",
+ "e nant",
+ "- }",
+ "ла д",
+ "▁Мос ква",
+ "▁Моск ва",
+ "go m",
+ "g om",
+ "▁Fern ández",
+ "fun d",
+ "fu nd",
+ "f und",
+ "int erno",
+ "inter no",
+ "intern o",
+ "▁M ari",
+ "▁Mar i",
+ "▁Ma ri",
+ "▁r ius",
+ "▁ri us",
+ "▁Pro zent",
+ "ст рі",
+ "стр і",
+ "▁в нут",
+ "ant erie",
+ "ante rie",
+ "anter ie",
+ "▁п рис",
+ "▁при с",
+ "▁пр ис",
+ "▁о бы",
+ "▁об ы",
+ "▁M arina",
+ "▁Mar ina",
+ "▁Mari na",
+ "▁occ urrence",
+ "▁occur rence",
+ "▁occurr ence",
+ "ri kt",
+ "rik t",
+ "r ikt",
+ "▁фи зи",
+ "▁sch wer",
+ "▁schw er",
+ "▁Г ре",
+ "Re set",
+ "Res et",
+ "▁much o",
+ "▁mu cho",
+ "an dr",
+ "and r",
+ "▁W ies",
+ "▁Wi es",
+ "▁Wie s",
+ "▁Ke ith",
+ "▁Jul ian",
+ "▁Juli an",
+ "▁Julia n",
+ "▁c ole",
+ "▁col e",
+ "▁co le",
+ "▁ cole",
+ "ci endo",
+ "c iendo",
+ "▁Cont empor",
+ "et ry",
+ "etr y",
+ "e try",
+ "el ian",
+ "eli an",
+ "elia n",
+ "ги и",
+ "▁го ло",
+ "▁г оло",
+ "▁d él",
+ "▁dé l",
+ "▁de cent",
+ "▁dec ent",
+ "▁dece nt",
+ "Р СР",
+ "▁sze ptember",
+ "ме ст",
+ "cast le",
+ "▁держа в",
+ "}\" )",
+ "} \")",
+ "▁ASC II",
+ "▁G len",
+ "▁Gl en",
+ "itzer land",
+ "T oggle",
+ "▁trad icional",
+ "▁P lat",
+ "▁Pl at",
+ "▁Pla t",
+ "ve e",
+ "v ee",
+ "ab gerufen",
+ "( |",
+ "CL I",
+ "C LI",
+ "}} $,",
+ "}}$ ,",
+ "} }$,",
+ "▁Bow l",
+ "▁M ale",
+ "▁Ma le",
+ "▁Mal e",
+ "▁B res",
+ "▁Br es",
+ "▁Bre s",
+ "▁п си",
+ "▁Ch allenge",
+ "z ó",
+ "▁pro jekt",
+ "▁neg oti",
+ "ab ove",
+ "a bove",
+ "▁пери о",
+ "▁long est",
+ "▁lon gest",
+ "auth entic",
+ "▁tr adu",
+ "▁tra du",
+ "▁trad u",
+ "▁mujer es",
+ "▁And re",
+ "▁ha dn",
+ "▁had n",
+ "▁Sch ule",
+ "▁Schul e",
+ "ode l",
+ "od el",
+ "o del",
+ "ble d",
+ "bl ed",
+ "b led",
+ "▁T rade",
+ "▁Tr ade",
+ "▁Tra de",
+ "▁Trad e",
+ "▁m obil",
+ "▁mo bil",
+ "▁mob il",
+ "▁alg unas",
+ "▁L ak",
+ "▁La k",
+ "▁Connect icut",
+ "▁al co",
+ "▁alc o",
+ "▁Sel bst",
+ "i ł",
+ "▁a lb",
+ "▁al b",
+ "ouver neur",
+ "ouvern eur",
+ "▁s r",
+ "▁ sr",
+ "▁v ba",
+ "▁vb a",
+ "lo ped",
+ "lop ed",
+ "l oped",
+ "▁Par tei",
+ "▁Part ei",
+ "▁Parte i",
+ "ua te",
+ "u ate",
+ "▁Auth entication",
+ "▁ Authentication",
+ "be i",
+ "b ei",
+ "}} .",
+ "} }.",
+ "▁kon nten",
+ "▁konn ten",
+ "▁konnte n",
+ "▁до по",
+ "▁h yd",
+ "▁hy d",
+ "Off ice",
+ "d onnées",
+ "▁C leveland",
+ "ri ta",
+ "rit a",
+ "r ita",
+ "ío s",
+ "í os",
+ "▁вы ше",
+ "▁Ro berts",
+ "▁Robert s",
+ "▁é lections",
+ "▁élect ions",
+ "▁' ')",
+ "▁'' )",
+ "▁publish ing",
+ "▁b apt",
+ "▁ba pt",
+ "<> ();",
+ "< >();",
+ "miss ing",
+ "mis sing",
+ "рова но",
+ "рован о",
+ "р овано",
+ "▁ho using",
+ "▁hous ing",
+ "▁in ference",
+ "▁infer ence",
+ "▁Rena issance",
+ "▁r èg",
+ "▁Ste ph",
+ "▁Step h",
+ "CE S",
+ "C ES",
+ "ER E",
+ "E RE",
+ "ке т",
+ "к ет",
+ "O U",
+ "▁group ing",
+ "ver kehr",
+ "ji h",
+ "j ih",
+ "ag li",
+ "▁mil k",
+ "la it",
+ "l ait",
+ "St age",
+ "▁by ly",
+ "▁byl y",
+ "▁wood en",
+ "▁wo oden",
+ "ke ley",
+ "kel ey",
+ "kele y",
+ "et ra",
+ "etr a",
+ "e tra",
+ "▁P eg",
+ "▁Pe g",
+ "▁don né",
+ "▁donn é",
+ "ad al",
+ "ada l",
+ "a dal",
+ "sequ ently",
+ "▁ins besondere",
+ "EL D",
+ "E LD",
+ "▁M am",
+ "▁Ma m",
+ "▁vol te",
+ "▁volt e",
+ "▁pro spect",
+ "▁pros pect",
+ "но ве",
+ "нов е",
+ "н ове",
+ "▁den oted",
+ "▁denote d",
+ "▁over lay",
+ "Per mission",
+ "Perm ission",
+ "ee n",
+ "e en",
+ "▁E M",
+ "▁ EM",
+ "▁u z",
+ "▁ uz",
+ "M c",
+ "ol it",
+ "oli t",
+ "o lit",
+ "▁ser vi",
+ "▁serv i",
+ "▁He idel",
+ "▁Wien er",
+ "▁Wi ener",
+ "▁Wie ner",
+ "▁il legal",
+ "▁predict ions",
+ "▁prediction s",
+ "▁go og",
+ "ho n",
+ "h on",
+ "▁Cin ema",
+ "▁ре волю",
+ "▁R ule",
+ "▁Ru le",
+ "▁ Rule",
+ "wo d",
+ "w od",
+ "▁rad iation",
+ "▁radi ation",
+ "o ł",
+ "ово ї",
+ "▁Per form",
+ "▁prison er",
+ "▁a met",
+ "▁am et",
+ "▁fig ura",
+ "▁figur a",
+ "▁Comm ander",
+ "▁Command er",
+ "▁о фициаль",
+ "▁t rov",
+ "▁tr ov",
+ "▁tro v",
+ "▁a cted",
+ "▁act ed",
+ "▁ac ted",
+ "▁work flow",
+ "▁Республи ки",
+ "▁guid ance",
+ "▁м ене",
+ "▁ме не",
+ "▁мен е",
+ "▁ мене",
+ "N ational",
+ "▁K el",
+ "▁Ke l",
+ "web pack",
+ "про стра",
+ "▁llam ado",
+ "al og",
+ "alo g",
+ "a log",
+ "ter ra",
+ "ix en",
+ "le graph",
+ "leg raph",
+ "ä ischen",
+ "▁teach ers",
+ "▁teacher s",
+ "ud en",
+ "ude n",
+ "u den",
+ "▁o gså",
+ "pos sible",
+ "poss ible",
+ "▁S oul",
+ "▁So ul",
+ "▁Sou l",
+ "▁Ge ography",
+ "▁за да",
+ "hi t",
+ "h it",
+ "▁an ger",
+ "▁ang er",
+ "▁ange r",
+ "▁ anger",
+ "▁rem porte",
+ "▁remp orte",
+ "Po d",
+ "P od",
+ "ч ке",
+ "▁a ria",
+ "▁ar ia",
+ "▁ aria",
+ "▁A stronom",
+ "ch apter",
+ "▁f ork",
+ "▁for k",
+ "▁Cu ando",
+ "men se",
+ "m ense",
+ "▁Christ ians",
+ "▁Christian s",
+ "g c",
+ "▁# (",
+ "Or gan",
+ "▁ste ady",
+ "▁stead y",
+ "ps e",
+ "p se",
+ "жи ть",
+ "ig nes",
+ "ign es",
+ "igne s",
+ "ater ra",
+ "a terra",
+ "mo vie",
+ "mov ie",
+ "m ovie",
+ "pos ta",
+ "po sta",
+ "post a",
+ "p osta",
+ "ra ste",
+ "ras te",
+ "r aste",
+ "▁Res source",
+ "▁Ress ource",
+ "▁Pa ís",
+ "▁( );",
+ "▁() ;",
+ "▁ ();",
+ "▁pen alty",
+ "т т",
+ "▁tras fer",
+ "cent ury",
+ "▁clean er",
+ "sel enium",
+ "s elenium",
+ "ort heast",
+ "orth east",
+ "xi c",
+ "x ic",
+ "лі ї",
+ "л ії",
+ "▁ingles e",
+ "▁T ang",
+ "▁Ta ng",
+ "▁Tan g",
+ "▁g ods",
+ "▁go ds",
+ "▁god s",
+ "fr ent",
+ "fre nt",
+ "f rent",
+ "ci ente",
+ "cient e",
+ "c iente",
+ "st arts",
+ "start s",
+ "star ts",
+ "▁mus ica",
+ "▁music a",
+ "ymnas ium",
+ "-- --+",
+ "---- +",
+ "--- -+",
+ "- ---+",
+ "▁ter rest",
+ "▁terre st",
+ "▁retr ieved",
+ "▁retrieve d",
+ "ia re",
+ "iar e",
+ "i are",
+ "un ning",
+ "unn ing",
+ "▁Mar cus",
+ "▁Marc us",
+ "▁prom ote",
+ "war ning",
+ "warn ing",
+ "w arning",
+ "ты й",
+ "т ый",
+ "}) $,",
+ "})$ ,",
+ "} )$,",
+ "Trans port",
+ "▁re son",
+ "▁res on",
+ "▁C lo",
+ "▁Cl o",
+ "▁e rm",
+ "▁er m",
+ "▁ erm",
+ "▁elimin ate",
+ "▁elim inate",
+ "he imer",
+ "heim er",
+ "▁s aves",
+ "▁sa ves",
+ "▁sav es",
+ "▁save s",
+ "▁pr ayer",
+ "▁pra yer",
+ "▁pray er",
+ "Class es",
+ "Ex press",
+ "Exp ress",
+ "Expr ess",
+ "▁Akadem ie",
+ "El se",
+ "Tu rn",
+ "T urn",
+ "▁ik ke",
+ "▁re i",
+ "▁r ei",
+ "▁ rei",
+ "▁di rett",
+ "▁dire tt",
+ "▁dir ett",
+ "▁R ost",
+ "▁Ro st",
+ "▁Ros t",
+ "▁P apa",
+ "▁Pa pa",
+ "▁Pap a",
+ "▁j sf",
+ "▁js f",
+ "ле нием",
+ "ление м",
+ "▁T ul",
+ "▁Tu l",
+ "▁Z ak",
+ "▁Za k",
+ "▁niem ieck",
+ "T w",
+ "am our",
+ "amo ur",
+ "ne sted",
+ "nes ted",
+ "nest ed",
+ "n ested",
+ "pp ets",
+ "ppe ts",
+ "ppet s",
+ "ш п",
+ "di t",
+ "d it",
+ "зе н",
+ "з ен",
+ "zy ma",
+ "zym a",
+ "hr te",
+ "Constra ints",
+ "Constraint s",
+ "▁own ership",
+ "▁owner ship",
+ "Ar m",
+ "A rm",
+ "▁cons umption",
+ "▁consum ption",
+ "▁f et",
+ "▁fe t",
+ "iv ari",
+ "iva ri",
+ "i vari",
+ "ch rom",
+ "chr om",
+ "set Attribute",
+ "▁com pose",
+ "▁comp ose",
+ "▁compos e",
+ "▁ compose",
+ "▁back ing",
+ "▁P az",
+ "▁Pa z",
+ "▁s cri",
+ "▁sc ri",
+ "▁scr i",
+ "▁ scri",
+ "▁Me chan",
+ "▁Nor way",
+ "▁J up",
+ "▁Ju p",
+ "▁m ér",
+ "▁mé r",
+ "▁administr ator",
+ "▁c abe",
+ "▁ca be",
+ "▁cab e",
+ "ival ent",
+ "▁thr one",
+ "▁thro ne",
+ "▁d ues",
+ "▁du es",
+ "▁due s",
+ "▁hum or",
+ "▁hu mor",
+ "▁A dri",
+ "▁Ad ri",
+ "▁ab ort",
+ "ña s",
+ "ñ as",
+ "▁Ки їв",
+ "j ící",
+ "▁zwe ite",
+ "▁zwei te",
+ "▁do ub",
+ "▁dou b",
+ "er shell",
+ "ers hell",
+ "шо й",
+ "▁F am",
+ "▁Fa m",
+ "å k",
+ "▁twe ede",
+ "▁twee de",
+ "▁R ib",
+ "▁Ri b",
+ "▁f ør",
+ "pc ión",
+ "p ción",
+ "in ned",
+ "inn ed",
+ "rv m",
+ "r vm",
+ "▁App ar",
+ "▁Ap par",
+ "▁D j",
+ "▁S hang",
+ "▁Sh ang",
+ "Dist ance",
+ "D istance",
+ "▁d awn",
+ "▁da wn",
+ "▁ dawn",
+ "▁Mat th",
+ "▁Matt h",
+ "▁err ichtet",
+ "ph antom",
+ "phan tom",
+ "▁re leases",
+ "▁release s",
+ "Recogn izer",
+ "▁K op",
+ "▁Ko p",
+ "▁P ul",
+ "▁Pu l",
+ "u é",
+ "na ts",
+ "nat s",
+ "n ats",
+ "re lax",
+ "rel ax",
+ "▁f led",
+ "▁fl ed",
+ "▁fle d",
+ "▁experience s",
+ "▁experien ces",
+ "ще е",
+ "ме ня",
+ "мен я",
+ "▁пер сона",
+ "▁Id entity",
+ "▁Ident ity",
+ "▁ Identity",
+ "re ts",
+ "ret s",
+ "r ets",
+ "k unft",
+ "la rg",
+ "lar g",
+ "l arg",
+ "List Item",
+ "v d",
+ "run ner",
+ "la nt",
+ "lan t",
+ "l ant",
+ "ip art",
+ "i part",
+ "ba y",
+ "b ay",
+ "ie i",
+ "i ei",
+ "▁length s",
+ "▁c attle",
+ "▁catt le",
+ "je ts",
+ "jet s",
+ "j ets",
+ "▁se hen",
+ "J ul",
+ "fa tt",
+ "f att",
+ "▁sur render",
+ "▁surr ender",
+ "▁Tr ump",
+ "▁Tru mp",
+ "дно го",
+ "д ного",
+ "▁Four ier",
+ "▁Fou rier",
+ "ie ben",
+ "ieb en",
+ "i eben",
+ "_ \"",
+ "▁frü her",
+ "▁gar ant",
+ "▁ga rant",
+ "uclide an",
+ "äg t",
+ "ä gt",
+ "▁пів ден",
+ "Page s",
+ "Pa ges",
+ "P ages",
+ "▁r ivers",
+ "▁river s",
+ "▁riv ers",
+ "▁ri vers",
+ "▁don ner",
+ "▁donn er",
+ "▁donne r",
+ "sv n",
+ "s vn",
+ "▁ ł",
+ "ov ě",
+ "o vě",
+ "▁Le ist",
+ "ar ial",
+ "ari al",
+ "aria l",
+ "a rial",
+ "ov ých",
+ "ový ch",
+ "▁f illing",
+ "▁fil ling",
+ "▁fill ing",
+ "▁mus icale",
+ "▁music ale",
+ "▁musical e",
+ "▁musica le",
+ "ma xim",
+ "max im",
+ "▁d ashed",
+ "▁das hed",
+ "▁dash ed",
+ "▁Н ов",
+ "▁Но в",
+ "Draw er",
+ "Dra wer",
+ "▁Medic ine",
+ "▁dok ument",
+ "ow el",
+ "owe l",
+ "o wel",
+ "vi ć",
+ "v ić",
+ "he ly",
+ "hel y",
+ "h ely",
+ "▁e let",
+ "▁el et",
+ "▁ele t",
+ "Sec onds",
+ "Second s",
+ "▁Gon z",
+ "ro u",
+ "r ou",
+ "▁fin ales",
+ "▁final es",
+ "▁finale s",
+ "r n",
+ "f ø",
+ "▁index ed",
+ "class Name",
+ "▁o ber",
+ "▁ob er",
+ "▁ ober",
+ "▁du as",
+ "▁optim ized",
+ "▁optimize d",
+ "▁k dy",
+ "vers ary",
+ "ener gy",
+ "▁цент ра",
+ "▁центр а",
+ "▁c urrency",
+ "▁curr ency",
+ "▁ currency",
+ "zy ż",
+ "Li ke",
+ "L ike",
+ "▁Г и",
+ "so no",
+ "son o",
+ "s ono",
+ "▁pa lab",
+ "▁pal ab",
+ "▁p ushing",
+ "▁push ing",
+ "ub lik",
+ "▁H ass",
+ "▁Ha ss",
+ "▁Has s",
+ "}\\ ,\\",
+ "}\\, \\",
+ "} \\,\\",
+ "un ker",
+ "unk er",
+ "▁F actory",
+ "▁Fact ory",
+ "▁ Factory",
+ "▁Res ources",
+ "▁Resource s",
+ "▁ Resources",
+ "date i",
+ "da tei",
+ "dat ei",
+ "▁T ools",
+ "▁To ols",
+ "▁Tool s",
+ "▁ Tools",
+ "▁ste hen",
+ "si me",
+ "sim e",
+ "s ime",
+ "▁Х у",
+ "▁h och",
+ "▁ho ch",
+ "▁Rod ríguez",
+ "zeit ig",
+ "▁Ter ry",
+ "▁Terr y",
+ "▁о бу",
+ "▁об у",
+ "Us age",
+ "urch ase",
+ "l ö",
+ "▁Int roduction",
+ "▁ Introduction",
+ "▁particip ation",
+ "ο ς",
+ "og li",
+ "ap y",
+ "a py",
+ "▁hope fully",
+ "pon der",
+ "po nder",
+ "pond er",
+ "p onder",
+ "▁Y ang",
+ "▁Yan g",
+ "▁Ya ng",
+ "▁prom ises",
+ "▁promise s",
+ "▁вер ну",
+ "▁о стров",
+ "▁ост ров",
+ "^{ +",
+ "▁most ra",
+ "▁mo stra",
+ "▁mos tra",
+ "▁CURL OPT",
+ "H H",
+ "▁std out",
+ "▁ stdout",
+ "▁br illiant",
+ "▁manus cript",
+ "▁de cir",
+ "▁dec ir",
+ "▁B olog",
+ "▁Bo log",
+ "▁Bol og",
+ "▁ме ста",
+ "▁мест а",
+ "▁in visible",
+ "▁C hal",
+ "▁Ch al",
+ "▁Cha l",
+ "▁analy ze",
+ "▁analyz e",
+ "pr ilis",
+ "pril is",
+ "att end",
+ "atten d",
+ "atte nd",
+ "M vc",
+ "th an",
+ "tha n",
+ "t han",
+ "ck o",
+ "c ko",
+ "▁Que bec",
+ "▁pl anta",
+ "▁plan ta",
+ "▁plant a",
+ "▁télé vis",
+ "▁un install",
+ "èn cies",
+ "▁gmin ie",
+ "▁P ref",
+ "▁Pr ef",
+ "▁Pre f",
+ "▁le quel",
+ "Inv ocation",
+ "▁ Í",
+ "▁trans formed",
+ "▁transform ed",
+ "MA N",
+ "M AN",
+ "ge baut",
+ "geb aut",
+ "▁со хра",
+ "▁вто рой",
+ "▁L ith",
+ "▁Li th",
+ "▁Lit h",
+ "wend ung",
+ "▁Polit ik",
+ "▁Sen ator",
+ "▁L L",
+ "▁ LL",
+ "жде ние",
+ "ш те",
+ "▁C és",
+ "▁b ande",
+ "▁band e",
+ "▁ban de",
+ "▁ba nde",
+ "▁histor ian",
+ "▁historia n",
+ "▁pass words",
+ "▁password s",
+ "mal loc",
+ "m alloc",
+ "▁sem if",
+ "▁semi f",
+ "▁r å",
+ "▁ rå",
+ "unic í",
+ "uni cí",
+ "Av ailable",
+ "Option al",
+ "Opt ional",
+ "▁T we",
+ "▁Tw e",
+ "▁k ró",
+ "▁kr ó",
+ "▁sub sets",
+ "▁subset s",
+ "▁subs ets",
+ "▁D AT",
+ "▁DA T",
+ "▁ DAT",
+ "▁double s",
+ "▁dou bles",
+ "▁doub les",
+ "ни ками",
+ "ника ми",
+ "▁з в",
+ "ge geben",
+ "geg eben",
+ "g egeben",
+ "▁По пис",
+ "▁jú lius",
+ "▁m eteor",
+ "▁met eor",
+ "Mo unt",
+ "M ount",
+ "iv ent",
+ "ive nt",
+ "iven t",
+ "i vent",
+ "▁N athan",
+ "▁Na than",
+ "▁Nat han",
+ "▁Sch utz",
+ "eg ov",
+ "ego v",
+ "e gov",
+ "▁d öd",
+ "▁me at",
+ "▁пун кт",
+ "▁m inds",
+ "▁min ds",
+ "▁mind s",
+ "eli very",
+ "▁T LS",
+ "ре м",
+ "р ем",
+ "cks å",
+ "▁stay ed",
+ "▁sta yed",
+ "▁B in",
+ "▁Bi n",
+ "▁P ia",
+ "▁Pi a",
+ "▁и мен",
+ "▁име н",
+ "▁им ен",
+ "▁Bob by",
+ "▁produ it",
+ "▁prod uit",
+ "em pio",
+ "emp io",
+ "▁redu cing",
+ "▁Y u",
+ "▁Gesch äft",
+ "▁per ché",
+ "▁c ors",
+ "▁cor s",
+ "▁co rs",
+ "▁i cons",
+ "▁icon s",
+ "▁ic ons",
+ "▁ icons",
+ "App Data",
+ "▁H og",
+ "▁Ho g",
+ "▁р ів",
+ "▁рі в",
+ "▁ рів",
+ "▁S ans",
+ "▁San s",
+ "▁Sa ns",
+ "▁si ège",
+ "▁siè ge",
+ "st ellen",
+ "stell en",
+ "stelle n",
+ "Br ush",
+ "OF F",
+ "O FF",
+ "▁vis itor",
+ "▁visit or",
+ "▁b ath",
+ "▁ba th",
+ "▁bat h",
+ "▁f ee",
+ "▁fe e",
+ "at isf",
+ "ati sf",
+ "atis f",
+ "▁cu rv",
+ "▁cur v",
+ "▁fol gender",
+ "▁folg ender",
+ "▁cons cience",
+ "▁Se attle",
+ "▁med ieval",
+ "▁medi eval",
+ "dist ribution",
+ "▁D M",
+ "▁ DM",
+ "▁м я",
+ "▁ мя",
+ "▁R UN",
+ "ak ov",
+ "ako v",
+ "a kov",
+ "ce il",
+ "c eil",
+ "▁let ting",
+ "▁lett ing",
+ "▁d ov",
+ "▁do v",
+ "▁о би",
+ "▁об и",
+ "ki ej",
+ "kie j",
+ "k iej",
+ "▁dire kt",
+ "▁t m",
+ "▁ tm",
+ "col ors",
+ "color s",
+ "colo rs",
+ "▁alt ro",
+ "▁tijd ens",
+ "]{ '",
+ "] {'",
+ "▁B om",
+ "▁Bo m",
+ "▁k unst",
+ "▁kun st",
+ "▁sh elter",
+ "▁r av",
+ "▁ra v",
+ "▁ rav",
+ "pre dict",
+ "pred ict",
+ "▁comenz ó",
+ "▁świ at",
+ "▁św iat",
+ "▁Du rant",
+ "▁Dur ant",
+ "▁sch emes",
+ "▁scheme s",
+ "▁sche mes",
+ "▁m esh",
+ "▁me sh",
+ "▁mes h",
+ "▁ind icator",
+ "▁indic ator",
+ "▁E mer",
+ "▁Em er",
+ "▁gu ilty",
+ "не ц",
+ "▁consequ ences",
+ "▁consequence s",
+ "cl udes",
+ "clude s",
+ "clud es",
+ "▁L ower",
+ "▁Lo wer",
+ "▁Low er",
+ "▁ Lower",
+ "▁по ме",
+ "▁p ace",
+ "▁pa ce",
+ "▁pac e",
+ "▁ pace",
+ "да го",
+ "▁am bos",
+ "▁amb os",
+ "l b",
+ "▁educ ated",
+ "ur ale",
+ "ura le",
+ "ural e",
+ "u rale",
+ "an h",
+ "es ség",
+ "ess ég",
+ "▁associ ations",
+ "▁association s",
+ "to wn",
+ "t own",
+ "▁t rif",
+ "▁tr if",
+ "▁tri f",
+ "sample s",
+ "sam ples",
+ "s amples",
+ "bo s",
+ "b os",
+ "▁S pect",
+ "▁Sp ect",
+ "▁Spe ct",
+ "▁Spec t",
+ "▁Ц е",
+ "alt ung",
+ "▁L ob",
+ "▁Lo b",
+ "▁curios ity",
+ "▁We iter",
+ "▁Wei ter",
+ "▁Weit er",
+ "est one",
+ "esto ne",
+ "eston e",
+ "e stone",
+ "▁dem ol",
+ "▁demo l",
+ "▁ap olog",
+ "▁apo log",
+ "▁D ynamic",
+ "▁Dynam ic",
+ "▁ Dynamic",
+ "In ner",
+ "es per",
+ "esp er",
+ "ec z",
+ "e cz",
+ "uel lement",
+ "uelle ment",
+ "▁Hamilton ian",
+ "At las",
+ "▁ar gue",
+ "▁arg ue",
+ "For eign",
+ "F oreign",
+ "col lapse",
+ "▁tér min",
+ "▁electron ic",
+ "▁electro nic",
+ "▁N R",
+ "▁ NR",
+ "▁c orr",
+ "▁cor r",
+ "▁co rr",
+ "▁ corr",
+ "tem ps",
+ "temp s",
+ "Index Path",
+ "я з",
+ "▁tal ál",
+ "to day",
+ "tod ay",
+ "wa ve",
+ "w ave",
+ "▁s ib",
+ "▁si b",
+ "▁с пи",
+ "▁сп и",
+ "▁con vey",
+ "▁conv ey",
+ "▁Gé ographie",
+ "▁Н ью",
+ "▁Hi bernate",
+ "▁t in",
+ "▁ti n",
+ "di c",
+ "d ic",
+ "pp ings",
+ "pping s",
+ "s weise",
+ "▁roll ing",
+ "▁rol ling",
+ "▁ rolling",
+ "▁select s",
+ ")\\ )",
+ ") \\)",
+ "▁po eta",
+ "▁poet a",
+ "▁сте пени",
+ "▁A br",
+ "▁Ab r",
+ "▁hö ch",
+ "▁s tern",
+ "▁st ern",
+ "▁ste rn",
+ "▁ster n",
+ "▁f jär",
+ "▁inst aller",
+ "▁install er",
+ "▁instal ler",
+ "de cl",
+ "dec l",
+ "▁m iser",
+ "▁mi ser",
+ "▁mis er",
+ "▁mise r",
+ "group by",
+ "sub str",
+ "subst r",
+ "▁phen omen",
+ "▁W ing",
+ "▁Win g",
+ "▁Wi ng",
+ "▁f ills",
+ "▁fil ls",
+ "▁fill s",
+ "▁ú nico",
+ "Run ning",
+ "R unning",
+ "Com e",
+ "Co me",
+ "C ome",
+ "ir able",
+ "ira ble",
+ "i rable",
+ "sim eq",
+ "sime q",
+ "▁re mp",
+ "▁r emp",
+ "▁rem p",
+ "ke le",
+ "kel e",
+ "k ele",
+ "li ers",
+ "lie rs",
+ "lier s",
+ "l iers",
+ "▁kwiet nia",
+ "▁inter rupted",
+ "▁interrupt ed",
+ "▁J et",
+ "▁Je t",
+ "=\\ {",
+ "= \\{",
+ "íd o",
+ "í do",
+ "▁Tai wan",
+ "▁воз ра",
+ "▁altern atives",
+ "▁alternative s",
+ "▁T ir",
+ "▁Ti r",
+ "▁Re serve",
+ "▁Res erve",
+ "▁К ур",
+ "▁Ку р",
+ "▁No bel",
+ "▁Nob el",
+ "▁рабо тал",
+ "▁работа л",
+ "▁a xes",
+ "▁ax es",
+ "▁C ependant",
+ "k á",
+ "▁er neut",
+ "▁D emo",
+ "▁De mo",
+ "▁Dem o",
+ "▁ Demo",
+ "comm unic",
+ "con structor",
+ "construct or",
+ "▁Mon day",
+ "▁Mond ay",
+ "N il",
+ "Hash Map",
+ "pay ment",
+ "▁fix ing",
+ "▁A DD",
+ "▁AD D",
+ "▁ ADD",
+ "re view",
+ "rev iew",
+ "▁poss ibil",
+ "▁possib il",
+ "▁g rote",
+ "▁gr ote",
+ "▁gro te",
+ "▁group ed",
+ "▁groupe d",
+ "▁L ima",
+ "▁Li ma",
+ "▁Lim a",
+ "▁A ugen",
+ "▁Au gen",
+ "▁Aug en",
+ "▁o ckså",
+ "on as",
+ "ona s",
+ "o nas",
+ "▁deb ate",
+ "▁In gl",
+ "▁Ing l",
+ "D a",
+ "SO UR",
+ "S OUR",
+ "ett be",
+ "▁Batt alion",
+ "▁F loat",
+ "▁Flo at",
+ "▁ Float",
+ "▁c one",
+ "▁con e",
+ "▁co ne",
+ "read sheet",
+ "co urt",
+ "cou rt",
+ "c ourt",
+ "li gen",
+ "lig en",
+ "lige n",
+ "l igen",
+ "▁Begin n",
+ "▁Beg inn",
+ "▁LI MIT",
+ "▁LIM IT",
+ "▁enjo yed",
+ "▁enjoy ed",
+ "▁Jak ob",
+ "▁t elt",
+ "▁te lt",
+ "▁tel t",
+ "back end",
+ "▁Gemeins ame",
+ "li nt",
+ "lin t",
+ "l int",
+ "al ling",
+ "all ing",
+ "▁b ör",
+ "gr and",
+ "gra nd",
+ "g rand",
+ "▁divers es",
+ "▁diverse s",
+ "▁z wiąz",
+ "▁Kom pon",
+ "▁inner halb",
+ "▁desar rollo",
+ "▁desarroll o",
+ "▁Ma sters",
+ "▁Mas ters",
+ "▁Master s",
+ "io so",
+ "ios o",
+ "i oso",
+ "]` .",
+ "] `.",
+ "▁frances a",
+ "▁franc esa",
+ "A ff",
+ "in ek",
+ "ine k",
+ "i nek",
+ "▁des sin",
+ "▁dess in",
+ "`. `",
+ "` .`",
+ "▁r anks",
+ "▁ran ks",
+ "▁rank s",
+ "бер г",
+ "▁s kal",
+ "▁sk al",
+ "▁S ultan",
+ "▁Sul tan",
+ "А Н",
+ "▁спо соб",
+ "▁contra dict",
+ "▁contrad ict",
+ "▁re com",
+ "▁rec om",
+ "▁Ok lahoma",
+ "▁Vlad imir",
+ "▁m eters",
+ "▁me ters",
+ "▁met ers",
+ "▁meter s",
+ "trans port",
+ "▁cons ulté",
+ "▁consult é",
+ "▁ consulté",
+ "▁A TP",
+ "▁AT P",
+ "eb b",
+ "e bb",
+ "▁vol unte",
+ "▁volunt e",
+ "▁out line",
+ "LI C",
+ "L IC",
+ "▁e uro",
+ "▁eu ro",
+ "Char Field",
+ "med ium",
+ "medi um",
+ "▁Belg ique",
+ "Pro c",
+ "Pr oc",
+ "P roc",
+ "ro utes",
+ "route s",
+ "rout es",
+ "rou tes",
+ "▁cont ribu",
+ "▁contrib u",
+ "! }",
+ "ší m",
+ "š ím",
+ "▁L ess",
+ "▁Le ss",
+ "▁Les s",
+ "▁K ost",
+ "▁Ko st",
+ "▁Kos t",
+ "▁eredet iből",
+ "re ven",
+ "rev en",
+ "r even",
+ "ver ify",
+ "▁S alt",
+ "▁Sal t",
+ "▁Sa lt",
+ "▁shoot ing",
+ "▁sho oting",
+ "▁dis pose",
+ "▁dispos e",
+ "▁disp ose",
+ "uj í",
+ "▁t ierra",
+ "▁tier ra",
+ "▁po ison",
+ "▁poi son",
+ "sa k",
+ "s ak",
+ "periment al",
+ "▁N é",
+ "▁K id",
+ "▁Ki d",
+ "ag yar",
+ "agy ar",
+ "▁archiv álva",
+ "be reich",
+ "bere ich",
+ "í z",
+ "▁R itter",
+ "▁Хронологи ја",
+ "ze um",
+ "да х",
+ "▁gr ünd",
+ "▁program mer",
+ "▁programme r",
+ "▁cons eil",
+ "▁conse il",
+ "▁enc rypt",
+ "integr ation",
+ "C ulture",
+ "▁Circ le",
+ "▁Cir cle",
+ "Ob servable",
+ "▁gen omsnitt",
+ "▁Se lection",
+ "▁Select ion",
+ "▁Sel ection",
+ "▁Sele ction",
+ "▁ Selection",
+ "▁ir regular",
+ "Aut res",
+ "Per cent",
+ "fa ult",
+ "f ault",
+ "▁virt ue",
+ "ą pi",
+ "▁s ess",
+ "▁se ss",
+ "▁ses s",
+ "▁Так же",
+ "Tim estamp",
+ "▁litt érature",
+ "▁mo ż",
+ "▁b orrow",
+ "▁bor row",
+ "▁con ced",
+ "▁conc ed",
+ "▁conce d",
+ "чни к",
+ "ч ник",
+ "▁L und",
+ "▁Lu nd",
+ "ION S",
+ "IO NS",
+ "yn ie",
+ "y nie",
+ "▁S hin",
+ "▁Sh in",
+ "▁o sob",
+ "▁os ob",
+ "b ě",
+ "▁int uit",
+ "▁intu it",
+ "▁на п",
+ "▁p roph",
+ "▁pro ph",
+ "▁pr oph",
+ "▁prop h",
+ "▁p itt",
+ "▁pi tt",
+ "▁pit t",
+ "▁IB M",
+ "▁T ill",
+ "▁Ti ll",
+ "▁h ina",
+ "▁hi na",
+ "▁hin a",
+ "it test",
+ "itt est",
+ "itte st",
+ "gener ator",
+ "▁N in",
+ "▁Ni n",
+ "▁K ot",
+ "▁Ko t",
+ "▁p asser",
+ "▁pass er",
+ "▁pas ser",
+ "▁passe r",
+ "▁dis position",
+ "▁dispos ition",
+ "▁disp osition",
+ "un ing",
+ "uni ng",
+ "u ning",
+ "▁f ame",
+ "▁fa me",
+ "▁fam e",
+ "▁t enia",
+ "▁te nia",
+ "▁ten ia",
+ "an cement",
+ "ance ment",
+ "anc ement",
+ "▁Su isse",
+ "` -",
+ "▁h ombres",
+ "▁hom bres",
+ "▁hombre s",
+ "▁inf inity",
+ "▁infin ity",
+ "▁окон ча",
+ "▁co sm",
+ "▁cos m",
+ "▁D ennis",
+ "▁Den nis",
+ "ba z",
+ "b az",
+ "ha upt",
+ "h aupt",
+ "▁might y",
+ "▁pr ede",
+ "▁pre de",
+ "▁pred e",
+ "us able",
+ "usa ble",
+ "▁ws zyst",
+ "▁wsz yst",
+ "▁l b",
+ "▁ lb",
+ "AB ASE",
+ "A BASE",
+ "j na",
+ "не в",
+ "н ев",
+ "▁as es",
+ "▁ ases",
+ "▁final mente",
+ "й м",
+ "pe ction",
+ "pect ion",
+ "pec tion",
+ "p ection",
+ "▁Stud ien",
+ "▁Norweg ian",
+ "ce go",
+ "c ego",
+ "IN DEX",
+ "IND EX",
+ "or ten",
+ "ort en",
+ "orte n",
+ "▁friend ship",
+ "▁friends hip",
+ "met ro",
+ "m etro",
+ "th ick",
+ "▁Z el",
+ "▁Ze l",
+ "LO W",
+ "L OW",
+ "▁there by",
+ "un ted",
+ "unt ed",
+ "unte d",
+ "▁sur faces",
+ "▁surface s",
+ "ющи м",
+ "%) .",
+ "% ).",
+ "▁W onder",
+ "▁Wo nder",
+ "▁redund ant",
+ "▁G ros",
+ "▁Gr os",
+ "▁Gro s",
+ "▁web sites",
+ "▁website s",
+ "▁v io",
+ "▁vi o",
+ "▁o cas",
+ "▁oc as",
+ "vé s",
+ "v és",
+ "▁G am",
+ "▁Ga m",
+ "d w",
+ "Ind icator",
+ "▁K ob",
+ "▁Ko b",
+ "▁j ack",
+ "▁ja ck",
+ "▁ jack",
+ "Hi nt",
+ "H int",
+ "▁A pol",
+ "▁Ap ol",
+ "▁други е",
+ "▁N UM",
+ "▁ NUM",
+ "▁o fic",
+ "▁of ic",
+ "yst ycz",
+ "▁were ld",
+ "▁wer eld",
+ "мо сти",
+ "LE FT",
+ "▁T ypes",
+ "▁Type s",
+ "▁Ty pes",
+ "▁Typ es",
+ "▁ Types",
+ "se en",
+ "see n",
+ "s een",
+ "un cia",
+ "unc ia",
+ "unci a",
+ "▁n arod",
+ "▁na rod",
+ "▁nar od",
+ "▁это т",
+ "Side note",
+ "S idenote",
+ "ue il",
+ "u eil",
+ "▁от ме",
+ "▁cour ts",
+ "▁court s",
+ "fi r",
+ "f ir",
+ "ur z",
+ "u rz",
+ "чен ко",
+ "Cred entials",
+ "▁imag ination",
+ "it ats",
+ "ita ts",
+ "itat s",
+ "bu ff",
+ "buf f",
+ "b uff",
+ "fl ash",
+ "▁bad ly",
+ "▁w orn",
+ "▁wor n",
+ "▁wo rn",
+ "▁окру гу",
+ "cat alog",
+ "catal og",
+ "c atalog",
+ "li me",
+ "lim e",
+ "l ime",
+ "▁G ill",
+ "▁Gi ll",
+ "▁Gil l",
+ "▁S ent",
+ "▁Se nt",
+ "▁Sen t",
+ "ie lla",
+ "iel la",
+ "i ella",
+ "▁Cra ig",
+ "▁S ele",
+ "▁Se le",
+ "▁Sel e",
+ "▁Indep end",
+ "▁prov incie",
+ "▁provin cie",
+ "os sen",
+ "oss en",
+ "▁за пад",
+ "▁запа д",
+ "▁inf ant",
+ "▁pr events",
+ "▁prevent s",
+ "▁prev ents",
+ "▁provin ces",
+ "▁province s",
+ "af é",
+ "be g",
+ "b eg",
+ "▁col ours",
+ "▁colour s",
+ "B F",
+ "ë n",
+ "▁Ме жду",
+ "î n",
+ "Ob server",
+ "for sch",
+ "í gen",
+ "um ption",
+ "ump tion",
+ "▁Ill ustr",
+ "ри ст",
+ "рис т",
+ "▁по лови",
+ "▁пол ови",
+ "▁поло ви",
+ "▁` &",
+ "▁o re",
+ "▁or e",
+ "▁ ore",
+ "▁supp lies",
+ "▁parent hes",
+ "Found ation",
+ "▁v ou",
+ "▁vo u",
+ "▁T out",
+ "▁To ut",
+ "Don ald",
+ "▁R ET",
+ "▁RE T",
+ "we ig",
+ "wei g",
+ "▁produ cción",
+ "mi x",
+ "m ix",
+ "▁ut wor",
+ "▁f öl",
+ "▁fö l",
+ "▁ent ão",
+ "▁S ister",
+ "▁Si ster",
+ "Tag s",
+ "T ags",
+ "▁Савез не",
+ "▁privile ges",
+ "▁na zw",
+ "▁naz w",
+ "▁R av",
+ "▁Ra v",
+ "▁re pro",
+ "▁rep ro",
+ "▁repr o",
+ "▁M ason",
+ "▁Ma son",
+ "▁Mas on",
+ "▁Pl atform",
+ "▁Plat form",
+ "▁ Platform",
+ "▁про бле",
+ "▁P érez",
+ "▁bl anc",
+ "▁bla nc",
+ "▁blan c",
+ "Be havior",
+ "фи ци",
+ "ek en",
+ "e ken",
+ "▁me ets",
+ "▁meet s",
+ "(. *",
+ "( .*",
+ "▁f å",
+ "ep en",
+ "e pen",
+ "ma ker",
+ "make r",
+ "m aker",
+ "▁lo yal",
+ "mem bers",
+ "member s",
+ "m embers",
+ "meister schaft",
+ "go al",
+ "ш лен",
+ "▁се веро",
+ "▁север о",
+ "ie nde",
+ "ien de",
+ "i ende",
+ "д ні",
+ "Pro of",
+ "▁exp lic",
+ "▁expl ic",
+ "▁elect ro",
+ "ie ls",
+ "iel s",
+ "i els",
+ "re load",
+ "▁el even",
+ "▁ele ven",
+ "▁elev en",
+ "▁part idos",
+ "▁partido s",
+ "în e",
+ "î ne",
+ "▁R egin",
+ "▁Re gin",
+ "▁Reg in",
+ "▁é x",
+ "▁Bu lg",
+ "▁Bul g",
+ "▁network ing",
+ "▁net working",
+ "▁se parator",
+ "▁separ ator",
+ "User Name",
+ "▁edific io",
+ "▁M ie",
+ "▁Mi e",
+ "▁id le",
+ "ye d",
+ "y ed",
+ "▁pass engers",
+ "▁passenger s",
+ "+ )",
+ "me no",
+ "men o",
+ "m eno",
+ "eg gi",
+ "e ggi",
+ "▁nice ly",
+ "▁nic ely",
+ "end encia",
+ "enden cia",
+ "чи й",
+ "ét és",
+ "été s",
+ "ight arrow",
+ "▁orth ogonal",
+ "▁H alf",
+ "▁Hal f",
+ "▁fe wer",
+ "▁few er",
+ "▁pro pi",
+ "▁prop i",
+ "▁pr imit",
+ "▁prim it",
+ "▁pri mit",
+ "▁primi t",
+ "ic ale",
+ "ical e",
+ "ica le",
+ "▁f lower",
+ "▁fl ower",
+ "▁flow er",
+ "▁flo wer",
+ "mer k",
+ "m erk",
+ "▁Оте че",
+ "▁pers istent",
+ "▁persist ent",
+ "▁V ille",
+ "▁Vill e",
+ "▁Vi lle",
+ "▁Vil le",
+ "Me n",
+ "M en",
+ "ga ben",
+ "gabe n",
+ "g aben",
+ "▁Isa ac",
+ "at ivity",
+ "ativ ity",
+ "ati vity",
+ "▁pół noc",
+ "▁r ok",
+ "▁ro k",
+ "▁ rok",
+ "car ds",
+ "card s",
+ "c ards",
+ "де ния",
+ "▁ю го",
+ "▁extra ordinary",
+ "▁k yr",
+ "(\" ,",
+ "( \",",
+ ")) ]",
+ ") )]",
+ "▁un ix",
+ "▁ unix",
+ "ко л",
+ "▁s ink",
+ "▁sin k",
+ "ap sed",
+ "aps ed",
+ "▁k ommen",
+ "▁kom men",
+ "▁komm en",
+ "▁ kommen",
+ "▁for cing",
+ "Ab out",
+ "▁H alle",
+ "▁Ha lle",
+ "▁Hall e",
+ "▁Hal le",
+ "▁Maj esty",
+ "▁Sw itch",
+ "▁ Switch",
+ "▁ab road",
+ "▁acceler ation",
+ "ur bed",
+ "urb ed",
+ "▁о стан",
+ "▁ос тан",
+ "▁оста н",
+ "▁ост ан",
+ "Re ady",
+ "Read y",
+ "▁пів ні",
+ "Br a",
+ "B ra",
+ "▁ць ого",
+ "▁pl ut",
+ "▁T rain",
+ "▁Tr ain",
+ "▁Tra in",
+ "▁á prilis",
+ "▁p uesto",
+ "▁pu esto",
+ "▁pue sto",
+ "▁t oss",
+ "▁to ss",
+ "▁irre levant",
+ "▁d ip",
+ "▁di p",
+ "se gment",
+ "seg ment",
+ "op acity",
+ "▁lors que",
+ "▁versch ill",
+ "ен а",
+ "е на",
+ "▁D oc",
+ "▁Do c",
+ "▁ Doc",
+ "%%%% %%%%",
+ "▁b orders",
+ "▁border s",
+ "▁bor ders",
+ "▁bord ers",
+ "ge bras",
+ "geb ras",
+ "gebra s",
+ "▁r ies",
+ "▁ri es",
+ "▁ ries",
+ "▁Olymp edia",
+ "▁Gener ation",
+ "met ros",
+ "metro s",
+ "▁hor izon",
+ "▁adapt ation",
+ "▁Z ahl",
+ "▁Za hl",
+ "▁na he",
+ "▁nah e",
+ "▁B ug",
+ "▁Bu g",
+ "P icture",
+ "љ и",
+ "R GB",
+ "O wner",
+ "ad in",
+ "adi n",
+ "a din",
+ "▁Catal unya",
+ "ný ch",
+ "n ých",
+ "▁cual quier",
+ "▁Inst itution",
+ "▁Instit ution",
+ "▁Institut ion",
+ "in sen",
+ "ins en",
+ "▁Bras ile",
+ "▁Brasil e",
+ "▁f itting",
+ "▁fit ting",
+ "De leg",
+ "Del eg",
+ "ic two",
+ "ict wo",
+ "▁Ex per",
+ "▁Exp er",
+ "och astic",
+ "▁d us",
+ "▁du s",
+ "▁по ра",
+ "▁пор а",
+ "▁sub string",
+ "▁subst ring",
+ "▁subs tring",
+ "▁substr ing",
+ "▁ substring",
+ "сси и",
+ "с сии",
+ "oi n",
+ "o in",
+ "▁ш кола",
+ "▁шко ла",
+ "▁c x",
+ "▁ cx",
+ "▁% )",
+ "▁ %)",
+ "▁Bud dh",
+ "▁p ending",
+ "▁pen ding",
+ "▁En try",
+ "▁Ent ry",
+ "▁ Entry",
+ "▁Be rl",
+ "▁Ber l",
+ "▁c ler",
+ "▁cl er",
+ "▁cle r",
+ "▁ cler",
+ "▁S oc",
+ "▁So c",
+ "▁r ounded",
+ "▁round ed",
+ "▁m v",
+ "▁ mv",
+ "ít ett",
+ "▁Di plom",
+ "▁französ ischen",
+ "▁G an",
+ "▁Ga n",
+ "▁Inv estig",
+ "▁index Path",
+ "▁ indexPath",
+ "▁mol ti",
+ "▁molt i",
+ "pers istence",
+ "▁XIX e",
+ "▁Elect ron",
+ "b ü",
+ "ge le",
+ "gel e",
+ "g ele",
+ "▁M aler",
+ "▁Ma ler",
+ "▁Mal er",
+ "▁Male r",
+ "▁proyect o",
+ "▁B ath",
+ "▁Ba th",
+ "▁Bat h",
+ "el lers",
+ "ell ers",
+ "elle rs",
+ "eller s",
+ "▁G P",
+ "▁ GP",
+ "on ing",
+ "oni ng",
+ "o ning",
+ "clou dflare",
+ "▁p ři",
+ "▁př i",
+ "▁d ed",
+ "▁de d",
+ "▁ ded",
+ "▁Od kazy",
+ "▁M sg",
+ "▁ Msg",
+ "▁B eing",
+ "▁Be ing",
+ "▁Bei ng",
+ "▁De puis",
+ "▁Dep uis",
+ "▁Pri mary",
+ "▁Prim ary",
+ "▁Prima ry",
+ "▁ Primary",
+ "▁App ro",
+ "▁Ap pro",
+ "▁form ally",
+ "▁formal ly",
+ "ступ ил",
+ "ступи л",
+ "▁fue ra",
+ "▁fu era",
+ "▁fuer a",
+ "▁R oot",
+ "▁Ro ot",
+ "▁ Root",
+ "▁aut onom",
+ "▁auto nom",
+ "▁secret ary",
+ "▁os ób",
+ "▁cu ales",
+ "▁cual es",
+ "▁Dep ending",
+ "▁a si",
+ "▁as i",
+ "▁ asi",
+ "ve ra",
+ "ver a",
+ "v era",
+ "▁rus se",
+ "▁russ e",
+ "▁pro ves",
+ "▁prov es",
+ "▁prove s",
+ "▁pres iden",
+ "R U",
+ "▁Wat son",
+ "▁web pack",
+ "▁ webpack",
+ "elli gence",
+ "ellig ence",
+ "ка м",
+ "▁Office r",
+ "▁Offic er",
+ "▁d elivery",
+ "▁deliver y",
+ "▁deli very",
+ "ж дён",
+ "▁им пе",
+ "▁w il",
+ "▁v esc",
+ "▁ve sc",
+ "▁ves c",
+ "uszt us",
+ "▁Ge off",
+ "() }",
+ "( )}",
+ "▁F ore",
+ "▁For e",
+ "▁Fo re",
+ "▁w enig",
+ "▁we nig",
+ "▁wen ig",
+ "▁A irl",
+ "▁Air l",
+ "▁E fter",
+ "▁Bre ak",
+ "▁St äd",
+ "is miss",
+ "ism iss",
+ "í p",
+ "▁avoid ed",
+ "▁avo ided",
+ "▁assert ion",
+ "D N",
+ "▁te at",
+ "▁tea t",
+ "ín a",
+ "í na",
+ "▁mechan ical",
+ "is u",
+ "i su",
+ "@ {",
+ "▁n ou",
+ "▁no u",
+ "▁ nou",
+ "Ital ie",
+ "source forge",
+ "▁s vo",
+ "▁sv o",
+ "▁kir ály",
+ "▁Re ferences",
+ "▁Refer ences",
+ "▁Reference s",
+ "si x",
+ "s ix",
+ "▁Arch ives",
+ "▁Archiv es",
+ "▁Archive s",
+ "▁fin ishing",
+ "▁finish ing",
+ "ac je",
+ "ét at",
+ "éta t",
+ "é tat",
+ "if fs",
+ "iff s",
+ "▁st ead",
+ "▁ste ad",
+ "▁fe as",
+ "aw are",
+ "awa re",
+ "a ware",
+ "la nde",
+ "land e",
+ "lan de",
+ "l ande",
+ "In ject",
+ "▁A gent",
+ "▁Ag ent",
+ "▁Age nt",
+ "▁ Agent",
+ "▁Norm datei",
+ "▁a men",
+ "▁am en",
+ "▁ amen",
+ "▁Arch itecture",
+ "az e",
+ "a ze",
+ "ș te",
+ "▁us ar",
+ "▁c ores",
+ "▁cor es",
+ "▁co res",
+ "▁core s",
+ "лі н",
+ "л ін",
+ "▁C astro",
+ "▁Cast ro",
+ "▁v æ",
+ ">\" ,",
+ "> \",",
+ "om ena",
+ "ome na",
+ "omen a",
+ "▁ge sam",
+ "▁ges am",
+ "▁Mart ín",
+ "▁Martí n",
+ "eg ung",
+ "egu ng",
+ "▁spole č",
+ "▁ampl itude",
+ "▁amplit ude",
+ "▁import ing",
+ "▁list view",
+ "TH E",
+ "T HE",
+ "zi ale",
+ "zial e",
+ "zia le",
+ "z iale",
+ "ce des",
+ "ced es",
+ "c edes",
+ "▁particul ier",
+ "▁Распо дела",
+ "▁кра й",
+ "▁d ivent",
+ "▁di vent",
+ "▁div ent",
+ "▁k é",
+ "▁ ké",
+ "qu it",
+ "qui t",
+ "q uit",
+ "то ром",
+ "тор ом",
+ "Check Box",
+ "▁Zob acz",
+ "ph e",
+ "p he",
+ "pt a",
+ "p ta",
+ "▁s jö",
+ "▁sj ö",
+ "▁розта ш",
+ "▁tedes co",
+ "▁s tal",
+ "▁st al",
+ "▁sta l",
+ "▁ stal",
+ "▁Be ruf",
+ "▁Ber uf",
+ "ова я",
+ "о вая",
+ "▁s vě",
+ "▁sv ě",
+ "▁fl ush",
+ "▁flu sh",
+ "▁ flush",
+ "▁від бу",
+ "▁rad ial",
+ "▁radi al",
+ "▁différ entes",
+ "ан та",
+ "▁Per ry",
+ "Col l",
+ "Co ll",
+ "C oll",
+ "li qu",
+ "l iqu",
+ "▁Option al",
+ "▁Opt ional",
+ "▁ Optional",
+ "▁Сан кт",
+ "▁LIN Q",
+ "▁Fran c",
+ "▁Fr anc",
+ "▁Fra nc",
+ "ci je",
+ "c ije",
+ "▁Gu illaume",
+ "kn ow",
+ "k now",
+ "▁Un its",
+ "▁Unit s",
+ "ol k",
+ "▁Syst ème",
+ "▁S ales",
+ "▁Sal es",
+ "▁Sa les",
+ "▁ehemal igen",
+ "ми рова",
+ "мир ова",
+ "x html",
+ "set opt",
+ "▁m ellan",
+ "▁mel lan",
+ "▁z ie",
+ "▁ zie",
+ "▁gi ant",
+ "Bo ard",
+ "▁C aval",
+ "▁Ca val",
+ "▁Cav al",
+ "▁def ence",
+ "-- --------",
+ "---- ------",
+ "-------- --",
+ "--- -------",
+ "------ ----",
+ "----- -----",
+ "------- ---",
+ "ps hire",
+ "p shire",
+ "ma rt",
+ "mar t",
+ "m art",
+ "▁Di oc",
+ "is kt",
+ "isk t",
+ "▁in se",
+ "▁ins e",
+ "▁é pisode",
+ "чи к",
+ "bar s",
+ "ba rs",
+ "b ars",
+ "Si to",
+ "S ito",
+ "▁integr ity",
+ "au ff",
+ "auf f",
+ "a uff",
+ "▁v är",
+ "▁vä r",
+ "Az ure",
+ "▁star b",
+ "▁sta rb",
+ "▁кон тра",
+ "▁Мекси чка",
+ "▁за па",
+ "▁Mount ains",
+ "▁Mountain s",
+ "}} =",
+ "} }=",
+ "▁pull ing",
+ "▁pul ling",
+ "▁sat ellite",
+ "▁at oms",
+ "▁atom s",
+ "▁profes or",
+ "▁repeated ly",
+ "▁repeat edly",
+ "▁inv asion",
+ "▁invas ion",
+ "program ming",
+ "├ ──",
+ "▁L ip",
+ "▁Li p",
+ "вши е",
+ "в шие",
+ "▁k een",
+ "▁ke en",
+ "▁crit ics",
+ "▁critic s",
+ "▁N icola",
+ "▁Nicol a",
+ "▁Nic ola",
+ "▁Ni cola",
+ "▁C and",
+ "▁Can d",
+ "▁Ca nd",
+ "▁dist int",
+ "▁he ading",
+ "▁head ing",
+ "p ragma",
+ "{ |",
+ "ym en",
+ "yme n",
+ "y men",
+ "▁ter rain",
+ "▁terra in",
+ "ied enis",
+ "▁bes onders",
+ "▁nomin ated",
+ "BO OL",
+ "▁K ay",
+ "▁Ka y",
+ "ci an",
+ "cia n",
+ "c ian",
+ "st elle",
+ "ste lle",
+ "stell e",
+ "▁disput e",
+ "▁disp ute",
+ "▁ щ",
+ "Data Set",
+ "no thing",
+ "not hing",
+ "n othing",
+ "Aut om",
+ "Auto m",
+ "hör en",
+ "hö ren",
+ "▁s hed",
+ "▁sh ed",
+ "▁she d",
+ "▁p aused",
+ "▁pa used",
+ "▁pause d",
+ "▁pau sed",
+ "sa n",
+ "s an",
+ "▁nun ca",
+ "!( \"",
+ "! (\"",
+ "▁po łoż",
+ "Se cret",
+ "Sec ret",
+ "▁Do main",
+ "▁Dom ain",
+ "▁ Domain",
+ "▁воз мож",
+ "X V",
+ "l v",
+ "ik h",
+ "i kh",
+ "▁S ony",
+ "▁So ny",
+ "▁Son y",
+ "m q",
+ "ot rop",
+ "otr op",
+ "▁Log ger",
+ "▁ Logger",
+ "▁thre at",
+ "as ted",
+ "ast ed",
+ "aste d",
+ "a sted",
+ "зь ко",
+ "▁fre ely",
+ "▁free ly",
+ "▁improve ments",
+ "▁improv ements",
+ "▁improvement s",
+ "ist ema",
+ "iste ma",
+ "▁illustr ate",
+ "▁t act",
+ "▁ta ct",
+ "▁fig ur",
+ "ué s",
+ "u és",
+ "rim inal",
+ "rimin al",
+ "od on",
+ "odo n",
+ "o don",
+ "int endo",
+ "▁influ enced",
+ "▁influence d",
+ "▁influen ced",
+ "FF ER",
+ "▁G host",
+ "▁Gh ost",
+ "▁со вер",
+ "▁сов ер",
+ "na d",
+ "n ad",
+ "ion ed",
+ "io ned",
+ "ione d",
+ "i oned",
+ "▁Event s",
+ "▁Ev ents",
+ "▁Even ts",
+ "▁ Events",
+ "▁wr apping",
+ "▁wra pping",
+ "▁wrap ping",
+ "-------- -+",
+ "--- ------+",
+ "------ ---+",
+ "----- ----+",
+ "------- --+",
+ "fi f",
+ "f if",
+ "▁( **",
+ "▁(* *",
+ "={ {",
+ "= {{",
+ "ма ль",
+ "м аль",
+ "▁loss es",
+ "▁Gal erie",
+ "te l",
+ "t el",
+ "▁лю того",
+ "▁K ru",
+ "▁Kr u",
+ "▁P olen",
+ "▁Pol en",
+ "▁Po len",
+ "ні м",
+ "ne ar",
+ "nea r",
+ "n ear",
+ "▁sh ame",
+ "▁moy enne",
+ "▁C P",
+ "▁ CP",
+ "pre is",
+ "▁pass enger",
+ "le k",
+ "l ek",
+ "ion ales",
+ "ional es",
+ "ionale s",
+ "iona les",
+ "kaf ka",
+ "k afka",
+ "▁partic ipe",
+ "▁particip e",
+ "▁parti cipe",
+ "▁partici pe",
+ "▁memb ership",
+ "▁member ship",
+ "▁members hip",
+ "[ _",
+ "land o",
+ "lan do",
+ "l ando",
+ "st elling",
+ "stell ing",
+ "Se m",
+ "S em",
+ "go n",
+ "g on",
+ "▁Cor rect",
+ "▁v alle",
+ "▁val le",
+ "▁va lle",
+ "▁vall e",
+ "▁read ily",
+ "▁Dok ument",
+ "hon neur",
+ "h onneur",
+ "▁test im",
+ "ul ative",
+ "do Filter",
+ "▁domin ant",
+ "am mer",
+ "amm er",
+ "▁ко ја",
+ "▁M onsieur",
+ "ze g",
+ "z eg",
+ "▁вій ни",
+ "▁F o",
+ "▁A my",
+ "▁Am y",
+ "▁ ¡",
+ "▁febru ár",
+ "▁down loading",
+ "▁download ing",
+ "▁l eng",
+ "▁le ng",
+ "▁len g",
+ "\\}$ ,",
+ "\\} $,",
+ "\\ }$,",
+ "▁ne at",
+ "▁C ache",
+ "▁Ca che",
+ "▁ Cache",
+ "IC ATION",
+ "▁de ve",
+ "▁dev e",
+ "▁s orrow",
+ "▁sor row",
+ "sl ow",
+ "s low",
+ "▁hin aus",
+ "▁hina us",
+ "▁recon oc",
+ "▁Lin ked",
+ "▁Link ed",
+ "▁Sh aw",
+ "mar ket",
+ "mark et",
+ "▁D ic",
+ "▁Di c",
+ "▁S ki",
+ "▁Sk i",
+ "▁del imiter",
+ "▁Main Activity",
+ "▁ MainActivity",
+ "▁Mus ical",
+ "▁Music al",
+ "▁Re yn",
+ "▁Rey n",
+ "Scroll View",
+ "▁convent ional",
+ "▁convention al",
+ "en ça",
+ "enç a",
+ "▁re factor",
+ "▁ref actor",
+ "' -",
+ "▁H ed",
+ "▁He d",
+ "spr ech",
+ "spre ch",
+ "▁ath let",
+ "▁e species",
+ "▁es pecies",
+ "▁espe cies",
+ "▁espec ies",
+ "▁especie s",
+ "▁Sch ön",
+ "▁kle inen",
+ "▁kleine n",
+ "▁klein en",
+ "ш ко",
+ "▁Й о",
+ "▁H appy",
+ "▁Ha ppy",
+ "multi row",
+ "▁august i",
+ "▁G and",
+ "▁Ga nd",
+ "▁Gan d",
+ "▁appoint ment",
+ "▁Medi abestanden",
+ "Th ree",
+ "▁Kenn eth",
+ "NE W",
+ "▁Not ification",
+ "▁ Notification",
+ "▁Mar x",
+ "▁Ma rx",
+ "▁in sc",
+ "▁ins c",
+ "Mo r",
+ "M or",
+ "вы й",
+ "в ый",
+ "vä st",
+ "v äst",
+ "vi dia",
+ "vid ia",
+ "v idia",
+ "▁demonstr ated",
+ "▁demonstrate d",
+ "font s",
+ "fon ts",
+ "▁k amen",
+ "▁kam en",
+ "▁ka men",
+ "▁S ter",
+ "▁St er",
+ "▁Ste r",
+ "▁mieszkań ców",
+ "▁K oh",
+ "▁Ko h",
+ "~$ \\",
+ "~ $\\",
+ "») .",
+ "» ).",
+ "re ne",
+ "ren e",
+ "r ene",
+ "ins ic",
+ "ic ká",
+ "ick á",
+ "xy gen",
+ "▁m n",
+ "▁ mn",
+ "▁s ched",
+ "▁sc hed",
+ "▁sch ed",
+ "▁sche d",
+ "AS C",
+ "A SC",
+ "I g",
+ "▁Const ant",
+ "▁opport un",
+ "▁My Class",
+ "se f",
+ "s ef",
+ "op ed",
+ "ope d",
+ "o ped",
+ "▁inj ured",
+ "VI S",
+ "V IS",
+ "▁P ero",
+ "▁Per o",
+ "▁Pe ro",
+ "▁U ntil",
+ "▁Un til",
+ "▁f lesh",
+ "▁fl esh",
+ "▁fle sh",
+ "orph ism",
+ "▁Port al",
+ "▁Por tal",
+ "▁gmin y",
+ "▁вла сти",
+ "▁N ä",
+ "кти че",
+ "к тиче",
+ "▁h rab",
+ "▁hr ab",
+ "▁C ub",
+ "▁Cu b",
+ "av oir",
+ "avo ir",
+ "a voir",
+ "▁L ars",
+ "▁La rs",
+ "▁Lar s",
+ "▁Бе ло",
+ "▁seizo en",
+ "▁Gen omsnitt",
+ "▁L il",
+ "▁Li l",
+ "▁P ool",
+ "▁Po ol",
+ "▁ Pool",
+ "▁D ios",
+ "▁Di os",
+ "T X",
+ "ae s",
+ "a es",
+ "aut ore",
+ "auto re",
+ "autor e",
+ "Al pha",
+ "st ates",
+ "state s",
+ "sta tes",
+ "stat es",
+ "La b",
+ "L ab",
+ "n ederbörd",
+ "er ton",
+ "ert on",
+ "▁b rid",
+ "▁br id",
+ "▁ brid",
+ "▁r icht",
+ "▁rich t",
+ "▁ric ht",
+ "▁ri cht",
+ "▁ richt",
+ "▁E la",
+ "▁El a",
+ "▁с ла",
+ "▁ сла",
+ "▁weap on",
+ "▁comb att",
+ "▁combat t",
+ "ag ar",
+ "aga r",
+ "a gar",
+ "▁reg nig",
+ "▁util isé",
+ "▁utilis é",
+ "▁ser vir",
+ "▁serv ir",
+ "▁servi r",
+ "▁b rick",
+ "▁br ick",
+ "▁gate way",
+ "▁tor raste",
+ "▁proced ures",
+ "▁procedure s",
+ "▁års nederbörd",
+ "▁Genomsnitt lig",
+ "чё т",
+ "ч ёт",
+ "▁om rå",
+ "▁ områ",
+ "▁regnig aste",
+ "▁че сть",
+ "▁a mid",
+ "▁am id",
+ "▁ami d",
+ "▁gr ateful",
+ "▁D IS",
+ "▁DI S",
+ "▁ DIS",
+ "DA Y",
+ "▁о ру",
+ "▁ор у",
+ "▁ ору",
+ "▁riv ière",
+ "he ure",
+ "▁Rich mond",
+ "▁Com par",
+ "▁Comp ar",
+ "▁Н ор",
+ "▁Но р",
+ "DO C",
+ "D OC",
+ "es ia",
+ "esi a",
+ "cal c",
+ "▁I U",
+ "▁v org",
+ "▁vo rg",
+ "▁vor g",
+ "▁hab ían",
+ "▁había n",
+ "ço it",
+ "ç oit",
+ "▁a rist",
+ "▁ar ist",
+ "▁к ли",
+ "▁ кли",
+ "▁S ue",
+ "▁Su e",
+ "▁T ouch",
+ "▁To uch",
+ "▁ Touch",
+ "▁Writ ing",
+ "ifi able",
+ "▁w c",
+ "▁with draw",
+ "за р",
+ "з ар",
+ "▁present ly",
+ "▁pres ently",
+ "▁F K",
+ "▁pr akt",
+ "▁pra kt",
+ "▁col ored",
+ "▁color ed",
+ "us b",
+ "u sb",
+ "▁Per ú",
+ "▁pl ata",
+ "▁pla ta",
+ "▁plat a",
+ "▁w ishes",
+ "▁wish es",
+ "▁wis hes",
+ "▁ка м",
+ "▁ кам",
+ "az ar",
+ "aza r",
+ "a zar",
+ "áv el",
+ "á vel",
+ "▁l amp",
+ "▁la mp",
+ "bi shop",
+ "b ishop",
+ "▁in clusion",
+ "▁incl usion",
+ "▁inclus ion",
+ "j q",
+ "ar th",
+ "art h",
+ "▁F lag",
+ "▁Fl ag",
+ "▁ Flag",
+ "▁но р",
+ "▁н ор",
+ "æ dia",
+ "UN CTION",
+ "▁Bahn hof",
+ "▁appro aching",
+ "▁approach ing",
+ "▁G ött",
+ "▁Gö tt",
+ "▁c ube",
+ "▁cu be",
+ "▁cub e",
+ "▁arg ued",
+ "▁argue d",
+ "▁Th ings",
+ "Gu i",
+ "G ui",
+ "до ви",
+ "дов и",
+ "д ови",
+ "▁re cre",
+ "▁rec re",
+ "▁ré seau",
+ "▁rés eau",
+ "▁sign ifica",
+ "▁signific a",
+ "Gi t",
+ "G it",
+ "geb racht",
+ "gebra cht",
+ "▁l iga",
+ "▁li ga",
+ "▁lig a",
+ "▁ liga",
+ "▁ass ured",
+ "al us",
+ "alu s",
+ "a lus",
+ "ри т",
+ "р ит",
+ "▁э нциклопеди",
+ "▁% ).",
+ "▁%) .",
+ "▁ %).",
+ "▁Prem ière",
+ "▁declar ations",
+ "▁declaration s",
+ "▁tr icky",
+ "▁trick y",
+ "▁pro files",
+ "▁prof iles",
+ "▁profile s",
+ "▁profil es",
+ "▁F on",
+ "▁Fo n",
+ "▁J as",
+ "▁Ja s",
+ "â r",
+ "ba bel",
+ "b abel",
+ "▁Fr iday",
+ "▁Fri day",
+ "▁Frid ay",
+ "▁jú nius",
+ "▁c ols",
+ "▁col s",
+ "▁co ls",
+ "▁ cols",
+ "▁EX ISTS",
+ "▁Ital iana",
+ "▁Italian a",
+ "▁Italia na",
+ "▁author ization",
+ "▁s ulle",
+ "▁su lle",
+ "▁sul le",
+ "▁sull e",
+ "▁E mb",
+ "▁Em b",
+ "▁Vari able",
+ "▁ Variable",
+ "tr ees",
+ "tre es",
+ "tree s",
+ "t rees",
+ "▁F ly",
+ "▁Fl y",
+ "ri ors",
+ "rio rs",
+ "rior s",
+ "r iors",
+ "▁da mals",
+ "▁dam als",
+ "▁find et",
+ "▁fin det",
+ "▁Se pt",
+ "▁Sep t",
+ "▁m undial",
+ "▁rem oval",
+ "▁remov al",
+ "▁long itude",
+ "▁longitud e",
+ "cl ic",
+ "cli c",
+ "c lic",
+ "▁f ade",
+ "▁fa de",
+ "▁ fade",
+ "▁grad le",
+ "▁ gradle",
+ "▁z ák",
+ "▁zá k",
+ "▁tim ing",
+ "▁ti ming",
+ "tr ightarrow",
+ "t rightarrow",
+ "at ia",
+ "ati a",
+ "- .",
+ "uch e",
+ "uc he",
+ "u che",
+ "▁ser ialize",
+ "▁serial ize",
+ "▁H mm",
+ "▁Represent atives",
+ "ba h",
+ "b ah",
+ "re nd",
+ "ren d",
+ "r end",
+ "ass ador",
+ "assa dor",
+ "▁sh ield",
+ "uc ion",
+ "u cion",
+ "▁am éricaine",
+ "▁améric aine",
+ "▁américain e",
+ "z ę",
+ "vi lla",
+ "vil la",
+ "v illa",
+ "▁hom bre",
+ "ás s",
+ "á ss",
+ "▁S F",
+ "▁ SF",
+ "▁repe ating",
+ "▁repeat ing",
+ "▁c riter",
+ "▁cr iter",
+ "▁crit er",
+ "▁cri ter",
+ "▁St ruct",
+ "▁Str uct",
+ "▁ Struct",
+ "?? ?",
+ "? ??",
+ "▁che ap",
+ "▁r ings",
+ "▁ring s",
+ "▁rin gs",
+ "ab häng",
+ "▁c orte",
+ "▁cor te",
+ "▁cort e",
+ "▁admin ist",
+ "ix on",
+ "gy pt",
+ "▁punt os",
+ "▁punto s",
+ "▁me zi",
+ "▁mez i",
+ "▁po chod",
+ "▁poc hod",
+ "is ko",
+ "isk o",
+ "i sko",
+ "ni ę",
+ "n ię",
+ "▁о су",
+ "▁ос у",
+ "▁á r",
+ "▁ ár",
+ "те льной",
+ "тель ной",
+ "тельно й",
+ "▁Metropol itan",
+ "ji n",
+ "j in",
+ "ze ss",
+ "zes s",
+ "z ess",
+ "▁ві ці",
+ "▁conflic ts",
+ "▁conflict s",
+ "ij st",
+ "▁Mar ket",
+ "▁Mark et",
+ "ст ров",
+ "стро в",
+ "стр ов",
+ "▁\" ,\"",
+ "▁\", \"",
+ "▁ \",\"",
+ "▁Sc roll",
+ "▁ Scroll",
+ "gu n",
+ "g un",
+ "та ра",
+ "тар а",
+ "▁am ateur",
+ "▁r óż",
+ "pos s",
+ "po ss",
+ "p oss",
+ "▁general ized",
+ "▁H arm",
+ "▁Har m",
+ "▁Ha rm",
+ "ci ta",
+ "cit a",
+ "c ita",
+ "▁Sw itzerland",
+ "ic ola",
+ "ico la",
+ "icol a",
+ "i cola",
+ "▁m uit",
+ "▁mu it",
+ "loc ated",
+ "▁c ó",
+ "▁a rose",
+ "▁ar ose",
+ "▁commun auté",
+ "}) ^",
+ "} )^",
+ "vis ibility",
+ "íd a",
+ "í da",
+ "▁F B",
+ "▁ FB",
+ "▁Fre und",
+ "ga t",
+ "g at",
+ "\": {\"",
+ "int ellij",
+ "if ie",
+ "ifi e",
+ "hm en",
+ "h men",
+ "▁éd ition",
+ "▁ édition",
+ "▁ко је",
+ "▁ін ших",
+ "om ing",
+ "omin g",
+ "omi ng",
+ "o ming",
+ "▁arqu itect",
+ "▁Pres idente",
+ "▁President e",
+ "▁П ід",
+ "▁ca bin",
+ "▁cab in",
+ "The orem",
+ "▁G ay",
+ "▁Ga y",
+ "if ice",
+ "ific e",
+ "ifi ce",
+ "▁h ect",
+ "▁he ct",
+ "l ą",
+ "irm ingham",
+ "▁sem antic",
+ "▁Louis iana",
+ "▁sac rifice",
+ "▁sacr ifice",
+ "▁sacrific e",
+ "▁Christ oph",
+ "▁Exec utive",
+ "_ +",
+ "j ák",
+ "▁s eria",
+ "▁se ria",
+ "▁ser ia",
+ "▁Over flow",
+ "▁ Overflow",
+ "▁Lu cy",
+ "▁Luc y",
+ "▁mel hor",
+ "▁vo ices",
+ "▁voice s",
+ "cz a",
+ "c za",
+ "▁ка пи",
+ "▁университе та",
+ "IN CT",
+ "▁col oc",
+ "▁co loc",
+ "▁pr ue",
+ "▁ge omet",
+ "▁geom et",
+ "▁di retto",
+ "▁dire tto",
+ "▁dir etto",
+ "▁dirett o",
+ "re so",
+ "res o",
+ "r eso",
+ "▁A kt",
+ "▁Ak t",
+ "▁un h",
+ "▁се ри",
+ "▁сер и",
+ "▁Al ert",
+ "▁Ale rt",
+ "▁ Alert",
+ "We l",
+ "W el",
+ "au di",
+ "aud i",
+ "a udi",
+ "äl er",
+ "ä ler",
+ "▁gu ests",
+ "▁guest s",
+ "▁и де",
+ "St udio",
+ "▁ка те",
+ "▁ex ponent",
+ "▁expon ent",
+ "rz e",
+ "r ze",
+ "pm od",
+ "p mod",
+ "ro lle",
+ "roll e",
+ "rol le",
+ "▁Lim ited",
+ "Al lemagne",
+ "▁p ity",
+ "▁pi ty",
+ "▁pit y",
+ "▁l ä",
+ "▁ lä",
+ "▁run ner",
+ "▁ runner",
+ "ke nde",
+ "ken de",
+ "k ende",
+ "E Q",
+ "▁M M",
+ "▁ MM",
+ "sz ág",
+ "по ді",
+ "▁reg ret",
+ "▁publi é",
+ "▁depart amento",
+ "▁acc used",
+ "▁accus ed",
+ "h p",
+ "▁P fl",
+ "▁Pf l",
+ "▁S int",
+ "▁Si nt",
+ "▁Sin t",
+ "▁ek onom",
+ "ra ctor",
+ "rac tor",
+ "ract or",
+ "r actor",
+ "▁П ів",
+ "▁aw ful",
+ "owa ć",
+ "] ->",
+ "▁F ine",
+ "▁Fin e",
+ "С а",
+ "ti s",
+ "t is",
+ "ét a",
+ "é ta",
+ "▁Ро ди",
+ "▁Düsseld orf",
+ "LO B",
+ "L OB",
+ "os as",
+ "osa s",
+ "wer ke",
+ "werk e",
+ "▁l ance",
+ "▁lan ce",
+ "▁листо пада",
+ "▁in complete",
+ "▁P icture",
+ "▁ Picture",
+ "(' \\",
+ "( '\\",
+ "es ters",
+ "est ers",
+ "ester s",
+ "este rs",
+ "e sters",
+ "▁belong ed",
+ "▁S ank",
+ "▁San k",
+ "am med",
+ "amm ed",
+ "▁repos itories",
+ "▁ad dr",
+ "▁add r",
+ "▁ addr",
+ "Col lect",
+ "Coll ect",
+ "H ot",
+ "▁t yl",
+ "▁ty l",
+ "▁instance of",
+ "▁bon us",
+ "ov ý",
+ "▁мо ря",
+ "▁мор я",
+ "▁inter active",
+ "▁interact ive",
+ "▁M ys",
+ "▁My s",
+ "▁Ed mund",
+ "file Name",
+ "em or",
+ "emo r",
+ "e mor",
+ "▁Т ри",
+ "▁R osen",
+ "▁Ro sen",
+ "▁Ros en",
+ "▁Rose n",
+ "▁Pr ima",
+ "▁Pri ma",
+ "▁Prim a",
+ "▁v oting",
+ "▁vo ting",
+ "▁vot ing",
+ "▁X P",
+ "▁Z ero",
+ "▁Ze ro",
+ "▁ Zero",
+ "▁L ed",
+ "▁Le d",
+ "ams ung",
+ "▁en ables",
+ "▁enable s",
+ "▁redirect s",
+ "AS T",
+ "A ST",
+ "Pa int",
+ "P aint",
+ "ack er",
+ "ac ker",
+ "a cker",
+ "le cht",
+ "▁chair man",
+ "▁A ven",
+ "▁Av en",
+ "▁S ach",
+ "▁Sa ch",
+ "▁Sac h",
+ "(\" <",
+ "ке р",
+ "к ер",
+ "▁mist akes",
+ "▁mistake s",
+ "▁We it",
+ "▁Wei t",
+ "▁pro wad",
+ "▁ prowad",
+ "▁did nt",
+ "▁didn t",
+ "én ario",
+ "un less",
+ "▁back wards",
+ "bo a",
+ "b oa",
+ "du ino",
+ "`` `",
+ "` ``",
+ "st or",
+ "sto r",
+ "s tor",
+ "Comple tion",
+ "pu esta",
+ "▁din ast",
+ "úl t",
+ "ú lt",
+ "▁S Y",
+ "▁ SY",
+ "if olia",
+ "œuv res",
+ "œuvre s",
+ "▁r acing",
+ "▁ra cing",
+ "▁rac ing",
+ "▁cab inet",
+ "▁cabin et",
+ "▁cut ting",
+ "▁th umb",
+ "▁Ка ра",
+ "▁Кар а",
+ "high light",
+ "ку п",
+ "▁s d",
+ "▁ sd",
+ "▁на ціональ",
+ "▁camp agne",
+ "▁register s",
+ "▁educ ational",
+ "▁education al",
+ "▁p esar",
+ "▁pes ar",
+ "üg e",
+ "ü ge",
+ "▁o ro",
+ "▁or o",
+ "▁ oro",
+ "burg o",
+ "bur go",
+ "▁Athlet ics",
+ "▁M TV",
+ "get Message",
+ "▁H yp",
+ "▁Hy p",
+ "▁vict im",
+ "▁vic tim",
+ ")) \\",
+ ") )\\",
+ "▁dr ums",
+ "▁dru ms",
+ "▁drum s",
+ "host name",
+ "ta ł",
+ "t ał",
+ "ma king",
+ "m aking",
+ "▁pow iat",
+ "ő d",
+ "thread s",
+ "▁absol v",
+ "▁лю ди",
+ "▁ste pped",
+ "▁step ped",
+ "ex ist",
+ "▁N K",
+ "▁v es",
+ "▁ve s",
+ "▁ ves",
+ "ist iche",
+ "istic he",
+ "isti che",
+ "% '",
+ "at ivos",
+ "ativ os",
+ "ati vos",
+ "ativo s",
+ "▁та кой",
+ "▁тако й",
+ "▁Mongo DB",
+ "▁U ng",
+ "▁Un g",
+ "▁Р ус",
+ "▁Ру с",
+ "▁e lim",
+ "▁el im",
+ "▁F if",
+ "ic ación",
+ "ica ción",
+ "▁T ennis",
+ "▁Ten nis",
+ "▁Jeff erson",
+ "j án",
+ "fo g",
+ "f og",
+ "an ha",
+ "anh a",
+ "zo r",
+ "z or",
+ "▁уні версите",
+ "ah u",
+ "a hu",
+ "ia da",
+ "i ada",
+ "S dk",
+ "Set ting",
+ "▁K ill",
+ "▁Kil l",
+ "▁Ki ll",
+ "▁W end",
+ "▁We nd",
+ "▁b ald",
+ "▁bal d",
+ "▁ba ld",
+ "▁K ub",
+ "▁Ku b",
+ "▁v isto",
+ "▁vis to",
+ "▁vi sto",
+ "▁je unes",
+ "▁jeune s",
+ "▁jeu nes",
+ "col lections",
+ "collection s",
+ "collect ions",
+ "ac í",
+ "a cí",
+ "вро пей",
+ "▁ar ise",
+ "он і",
+ "о ні",
+ "MA IN",
+ "до ступ",
+ "▁b erg",
+ "▁be rg",
+ "▁ber g",
+ "▁ berg",
+ "▁critic ism",
+ "▁Tor re",
+ "▁de script",
+ "▁des cript",
+ "▁descri pt",
+ "ière s",
+ "i ères",
+ "▁e studio",
+ "▁est udio",
+ "▁estud io",
+ "▁i li",
+ "▁il i",
+ "▁ ili",
+ "▁mil itare",
+ "▁milit are",
+ "▁militar e",
+ "▁Cl ara",
+ "▁Cla ra",
+ "▁Clar a",
+ "▁El len",
+ "▁Elle n",
+ "▁Ell en",
+ "lim ited",
+ "limit ed",
+ "л м",
+ "▁Esp añ",
+ "▁inf initely",
+ "▁infinite ly",
+ "Amer ica",
+ "ou c",
+ "o uc",
+ "gl ass",
+ "g lass",
+ "▁r ud",
+ "▁ru d",
+ "▁z at",
+ "▁za t",
+ "▁ zat",
+ "▁r in",
+ "▁ri n",
+ "▁ rin",
+ "▁Bibli ografía",
+ "▁mer chant",
+ "tensor flow",
+ "▁d ér",
+ "▁dé r",
+ "▁Active Record",
+ "IE S",
+ "I ES",
+ "▁link er",
+ "▁lin ker",
+ "▁estud ios",
+ "▁estudio s",
+ "cdn js",
+ "▁Го судар",
+ "án chez",
+ "ap pe",
+ "app e",
+ "a ppe",
+ "cl ub",
+ "c lub",
+ "▁dal ší",
+ "▁Alg orithm",
+ "df s",
+ "d fs",
+ "▁B ac",
+ "▁Ba c",
+ "▁ка фе",
+ "▁& =\\",
+ "▁&= \\",
+ "▁а т",
+ "▁ ат",
+ "▁Г лав",
+ "▁M ou",
+ "▁Mo u",
+ "M achine",
+ "(... )",
+ "( ...)",
+ "▁com part",
+ "▁comp art",
+ "▁compar t",
+ "▁aug usztus",
+ "av an",
+ "ava n",
+ "a van",
+ "▁roll ed",
+ "▁rol led",
+ "▁ rolled",
+ "▁е ди",
+ "▁ еди",
+ "Sc an",
+ "S can",
+ "▁ре гі",
+ "▁świ ata",
+ "▁świat a",
+ "▁m ines",
+ "▁min es",
+ "▁mi nes",
+ "▁mine s",
+ "}, {",
+ "▁T ier",
+ "▁Ti er",
+ "Can not",
+ "C annot",
+ "мі н",
+ "м ін",
+ "▁NE W",
+ "▁ NEW",
+ "▁Во л",
+ "▁M anh",
+ "▁Man h",
+ "▁Greg ory",
+ "▁princi pe",
+ "▁princip e",
+ "▁prin cipe",
+ "IS O",
+ "I SO",
+ "pr og",
+ "pro g",
+ "p rog",
+ "▁F ail",
+ "▁Fa il",
+ "▁ Fail",
+ "▁a a",
+ "▁ aa",
+ "▁fe cha",
+ "▁W CF",
+ "▁mag istr",
+ "▁Z ach",
+ "▁Za ch",
+ "▁un icode",
+ "▁con verter",
+ "▁convert er",
+ "▁conver ter",
+ "▁dis pers",
+ "▁disp ers",
+ "ks am",
+ "k sam",
+ "▁Un cle",
+ "Property Changed",
+ "▁l ider",
+ "▁li der",
+ "▁lid er",
+ "▁o pts",
+ "▁op ts",
+ "▁opt s",
+ "▁ opts",
+ "▁та м",
+ "▁ там",
+ "lock ed",
+ "loc ked",
+ "za k",
+ "z ak",
+ "▁co unted",
+ "▁count ed",
+ "▁coun ted",
+ "▁person e",
+ "▁pers one",
+ "▁hur ried",
+ "ät ter",
+ "ätt er",
+ "ätte r",
+ "▁out ras",
+ "▁ou tras",
+ "▁g enu",
+ "▁ge nu",
+ "▁gen u",
+ "B D",
+ "ve g",
+ "v eg",
+ "du e",
+ "d ue",
+ "▁P ract",
+ "▁Pr act",
+ "▁Pra ct",
+ "▁po sible",
+ "▁pos ible",
+ "▁cont ribute",
+ "▁contrib ute",
+ "▁contribu te",
+ "UM N",
+ "▁Bür ger",
+ "▁w ars",
+ "▁war s",
+ "▁wa rs",
+ "▁exhib ition",
+ "hi ll",
+ "h ill",
+ "▁a str",
+ "▁as tr",
+ "▁ast r",
+ "▁ astr",
+ "▁му зе",
+ "▁C ASE",
+ "▁CA SE",
+ "▁ CASE",
+ "man ifest",
+ "y ellow",
+ "F n",
+ "▁R C",
+ "▁ RC",
+ "▁s ott",
+ "▁so tt",
+ "▁su jet",
+ "▁S ocket",
+ "▁So cket",
+ "▁Soc ket",
+ "▁ Socket",
+ "▁Ch ine",
+ "▁Chi ne",
+ "▁frame works",
+ "▁framework s",
+ "Hol d",
+ "H old",
+ "êt s",
+ "ê ts",
+ "▁ф іль",
+ "▁фі ль",
+ "Lo aded",
+ "Load ed",
+ "op he",
+ "oph e",
+ "o phe",
+ "text e",
+ "tex te",
+ "▁ex pres",
+ "▁exp res",
+ "▁expr es",
+ "▁cons ume",
+ "▁consum e",
+ "▁R ichtung",
+ "ograf i",
+ "▁magn ific",
+ "à t",
+ "▁ind ul",
+ "▁indu l",
+ "ry ty",
+ "▁off ici",
+ "▁offic i",
+ "▁ass ault",
+ "ru nd",
+ "run d",
+ "r und",
+ "▁vari ants",
+ "▁variant s",
+ "▁сель сов",
+ "▁exc itement",
+ "Time s",
+ "Tim es",
+ "T imes",
+ "k otlin",
+ "▁g ering",
+ "▁ge ring",
+ "▁ger ing",
+ "▁En gel",
+ "▁Eng el",
+ "▁T imer",
+ "▁Time r",
+ "▁Tim er",
+ "▁Ti mer",
+ "▁ Timer",
+ "² ).",
+ "▁N g",
+ "äs st",
+ "sch au",
+ "SE rror",
+ "S Error",
+ "▁Ed wards",
+ "▁Edward s",
+ "▁Term inal",
+ "li ct",
+ "lic t",
+ "l ict",
+ "Un der",
+ "Und er",
+ "U nder",
+ "▁sp awn",
+ "ür gen",
+ "▁Außer dem",
+ "▁k itchen",
+ "fah rt",
+ "fahr t",
+ "▁Col ors",
+ "▁Color s",
+ "▁систе ма",
+ "▁систем а",
+ "▁termin ated",
+ "▁terminate d",
+ "▁La TeX",
+ "ig keiten",
+ "igkeit en",
+ "▁mes ure",
+ "▁Am ts",
+ "▁Amt s",
+ "▁emp ir",
+ "▁stri king",
+ "▁strik ing",
+ "▁exclus ive",
+ "те х",
+ "▁re z",
+ "▁r ez",
+ "▁ rez",
+ "▁qu an",
+ "▁q uan",
+ "▁Glas gow",
+ "▁lect ure",
+ "▁Test ament",
+ "▁fun ds",
+ "▁fund s",
+ "▁st essa",
+ "▁tri bes",
+ "▁trib es",
+ "▁tribe s",
+ "▁par fois",
+ "▁tre ball",
+ "ni tz",
+ "nit z",
+ "n itz",
+ "bo ve",
+ "b ove",
+ "▁за слу",
+ "▁ab sent",
+ "▁abs ent",
+ "▁L auf",
+ "▁La uf",
+ "▁Lau f",
+ "Sm ith",
+ "▁Никола й",
+ "▁europé enne",
+ "l r",
+ "▁program ma",
+ "▁mi dst",
+ "▁mid st",
+ "▁daugh ters",
+ "▁daughter s",
+ "S yn",
+ "ob en",
+ "obe n",
+ "o ben",
+ "ân ă",
+ "id an",
+ "ida n",
+ "i dan",
+ "▁t her",
+ "▁th er",
+ "▁the r",
+ "▁ ther",
+ "od ore",
+ "odo re",
+ "odor e",
+ "sd l",
+ "s dl",
+ "▁Q uint",
+ "▁Qu int",
+ "▁cas os",
+ "▁caso s",
+ "▁Z am",
+ "▁Za m",
+ "▁стра ны",
+ "▁sp rite",
+ "▁spr ite",
+ "ка л",
+ "к ал",
+ "▁n asc",
+ "▁na sc",
+ "▁nas c",
+ "▁сот руд",
+ "▁tr ava",
+ "▁tra va",
+ "▁trav a",
+ "▁хо зяй",
+ "▁U ruguay",
+ "▁s parse",
+ "▁sp arse",
+ "▁по ле",
+ "▁пол е",
+ "▁myst ery",
+ "▁myster y",
+ "▁M ang",
+ "▁Man g",
+ "▁Ma ng",
+ "reg istr",
+ "▁CG Float",
+ "▁sub mission",
+ "▁subm ission",
+ "ва на",
+ "ван а",
+ "в ана",
+ "▁\" :",
+ "▁ \":",
+ "▁Trace back",
+ "▁P it",
+ "▁Pi t",
+ "▁E hr",
+ "▁с ра",
+ "▁Graph ics",
+ "▁ Graphics",
+ "Up dated",
+ "Update d",
+ "▁sv ensk",
+ "▁sp acing",
+ "▁spac ing",
+ "tr itt",
+ "tri tt",
+ "t ritt",
+ "▁Gu inea",
+ "▁Fran ça",
+ "▁Fr ança",
+ "As soci",
+ "Ass oci",
+ "▁T ová",
+ "▁To vá",
+ "st ab",
+ "sta b",
+ "s tab",
+ "▁Le arning",
+ "▁Lear ning",
+ "▁B right",
+ "▁Br ight",
+ "▁Brig ht",
+ "ś c",
+ "▁id ő",
+ "}} _{\\",
+ "}}_{ \\",
+ "}}_ {\\",
+ "} }_{\\",
+ "▁dro ite",
+ "▁droit e",
+ "▁ra ising",
+ "get ting",
+ "yth m",
+ "yt hm",
+ "y thm",
+ "on yme",
+ "ony me",
+ "onym e",
+ "ż s",
+ "▁b lah",
+ "▁bl ah",
+ "▁bla h",
+ "▁ blah",
+ "Tag Name",
+ "Vert ical",
+ "▁a per",
+ "▁ap er",
+ "▁ aper",
+ "post gresql",
+ "▁Hand le",
+ "▁ Handle",
+ "ze w",
+ "z ew",
+ "▁sk ulle",
+ "▁op ere",
+ "▁oper e",
+ "lay ers",
+ "layer s",
+ "▁pos sono",
+ "▁poss ono",
+ "▁re late",
+ "▁rel ate",
+ "▁rela te",
+ "ą c",
+ "▁M ih",
+ "▁Mi h",
+ "â ge",
+ "▁Ś wi",
+ "iss es",
+ "isse s",
+ "▁serv let",
+ "▁ servlet",
+ "Lo s",
+ "L os",
+ "▁Ad vanced",
+ "▁Adv anced",
+ "at ica",
+ "ati ca",
+ "atic a",
+ "▁c ed",
+ "▁ce d",
+ "▁ ced",
+ "▁element os",
+ "ро на",
+ "рон а",
+ "р она",
+ "ik s",
+ "i ks",
+ "ar f",
+ "a rf",
+ "ar iat",
+ "ari at",
+ "aria t",
+ "M obile",
+ "ag ua",
+ "agu a",
+ "▁t imp",
+ "▁tim p",
+ "▁ti mp",
+ "▁Com ité",
+ "▁comb ining",
+ "▁combin ing",
+ "wo hl",
+ "w ohl",
+ "▁Stud y",
+ "▁Stu dy",
+ "co ordinate",
+ "▁recommend ation",
+ "▁transform ations",
+ "▁transformation s",
+ "un til",
+ "unt il",
+ "u ntil",
+ "bound ed",
+ "b ounded",
+ "▁и зу",
+ "▁из у",
+ "han ced",
+ "h anced",
+ "▁во про",
+ "▁P rés",
+ "▁Pr és",
+ "▁co ord",
+ "xt y",
+ "x ty",
+ "▁$ ,",
+ "▁ $,",
+ "▁champion s",
+ "▁champ ions",
+ "De n",
+ "D en",
+ "M il",
+ "(' ,",
+ "( ',",
+ "▁Pre is",
+ "▁e igh",
+ "▁eig h",
+ "▁mark ers",
+ "▁marker s",
+ "▁gew esen",
+ "ät ten",
+ "ätt en",
+ "ätte n",
+ "▁p ione",
+ "▁pi one",
+ "m v",
+ "▁ј у",
+ "▁ ју",
+ "zeich nis",
+ "ho ff",
+ "hof f",
+ "h off",
+ "New s",
+ "Ne ws",
+ "▁Stanis ław",
+ "▁Br andenburg",
+ "▁Brand enburg",
+ "▁Fe uer",
+ "= &",
+ "же т",
+ "ж ет",
+ "▁N eil",
+ "▁Ne il",
+ "▁w irk",
+ "▁wir k",
+ "▁soci età",
+ "▁sp are",
+ "▁civil e",
+ "▁civ ile",
+ "sp rach",
+ "spr ach",
+ "▁d isse",
+ "▁dis se",
+ "▁diss e",
+ "▁g ates",
+ "▁ga tes",
+ "▁gate s",
+ "▁gat es",
+ "▁a nom",
+ "▁an om",
+ "▁ano m",
+ "▁Федера ции",
+ "▁t ib",
+ "▁ti b",
+ "▁f útbol",
+ "▁Wikip ed",
+ "ia te",
+ "iat e",
+ "i ate",
+ "Fr ont",
+ "F ront",
+ "▁c raw",
+ "▁cr aw",
+ "▁cra w",
+ "▁R ak",
+ "▁Ra k",
+ "▁з ву",
+ "▁зв у",
+ "st reet",
+ "stre et",
+ "▁A gency",
+ "▁Ag ency",
+ "ва ло",
+ "вал о",
+ "▁Ра с",
+ "▁mk dir",
+ "ac ję",
+ "▁sh ares",
+ "▁share s",
+ "St ory",
+ "Sto ry",
+ "▁re marks",
+ "▁rem arks",
+ "▁remark s",
+ "▁key words",
+ "▁keyword s",
+ "Bo b",
+ "B ob",
+ "▁t oe",
+ "▁to e",
+ "▁V itt",
+ "▁Vi tt",
+ "▁Vit t",
+ "▁r hs",
+ "▁rh s",
+ "RO P",
+ "R OP",
+ "or is",
+ "ori s",
+ "o ris",
+ "/ @",
+ "си и",
+ "▁tra verse",
+ "▁travers e",
+ "▁refer encing",
+ "pr äsident",
+ "ro ng",
+ "ron g",
+ "r ong",
+ "') :",
+ "' ):",
+ "at ies",
+ "ati es",
+ "atie s",
+ "a ties",
+ "A W",
+ "Out let",
+ "▁é vol",
+ "▁év ol",
+ "ik es",
+ "ike s",
+ "i kes",
+ "▁environment al",
+ "ic um",
+ "▁L ied",
+ "▁Li ed",
+ "▁Lie d",
+ "▁w arn",
+ "▁war n",
+ "▁wa rn",
+ "▁ warn",
+ "▁But ler",
+ "▁% ),",
+ "▁%) ,",
+ "▁Zeit schrift",
+ "▁Mon tr",
+ "▁Mont r",
+ "ва жа",
+ "▁Mer cur",
+ "je kte",
+ "jekt e",
+ "me ter",
+ "met er",
+ "m eter",
+ "du cation",
+ "▁att ributed",
+ "▁attribute d",
+ "* $",
+ "▁un f",
+ "▁Vert rag",
+ "zi en",
+ "zie n",
+ "z ien",
+ "▁Р об",
+ "▁Ро б",
+ "li ces",
+ "lic es",
+ "lice s",
+ "l ices",
+ "pp ly",
+ "p ply",
+ "an sen",
+ "ans en",
+ "anse n",
+ "▁ze it",
+ "▁ zeit",
+ "▁im mense",
+ "▁imm ense",
+ "▁lut ego",
+ "▁Bul gar",
+ "▁Bulg ar",
+ "▁mi embros",
+ "▁На циональ",
+ "▁Al low",
+ "▁All ow",
+ "▁ Allow",
+ "▁ang lès",
+ "д ви",
+ "▁T oy",
+ "▁To y",
+ "ту а",
+ "▁y ard",
+ "▁ya rd",
+ "▁ yard",
+ "( %",
+ "is ser",
+ "iss er",
+ "isse r",
+ "▁g olf",
+ "▁gol f",
+ "▁Uk rain",
+ "▁h osp",
+ "▁ho sp",
+ "▁hos p",
+ "In clude",
+ "▁L isa",
+ "▁Li sa",
+ "▁Lis a",
+ "▁c sal",
+ "▁cs al",
+ "▁M ira",
+ "▁Mi ra",
+ "▁Mir a",
+ "rec ogn",
+ "▁К е",
+ "▁h itting",
+ "▁hit ting",
+ "коно мі",
+ "коном і",
+ "▁Tourn ament",
+ "LO AD",
+ "▁Guard ian",
+ "▁da her",
+ "▁dah er",
+ "▁time zone",
+ "▁tom cat",
+ "▁ tomcat",
+ "▁success or",
+ "▁succ essor",
+ "▁successo r",
+ "▁V oid",
+ "▁Vo id",
+ "▁come ç",
+ "▁convert s",
+ "▁conver ts",
+ "äch s",
+ "ä chs",
+ "os ex",
+ "ose x",
+ "o sex",
+ "xe lles",
+ "x elles",
+ "as er",
+ "ase r",
+ "a ser",
+ "▁É s",
+ "▁m ou",
+ "▁mo u",
+ "▁u ng",
+ "▁un g",
+ "▁ ung",
+ "▁or igen",
+ "▁orig en",
+ "▁C row",
+ "▁Cr ow",
+ "▁Cro w",
+ "▁E rd",
+ "▁Er d",
+ "▁s ieben",
+ "▁si eben",
+ "▁sie ben",
+ "lu a",
+ "l ua",
+ "▁B B",
+ "▁ BB",
+ "RE NT",
+ "R ENT",
+ "▁pił kar",
+ "▁mar que",
+ "▁marqu e",
+ "▁La bour",
+ "▁Lab our",
+ "vi ders",
+ "vider s",
+ "vid ers",
+ "v iders",
+ "▁ex empl",
+ "▁exem pl",
+ "So und",
+ "S ound",
+ "▁W ass",
+ "▁Was s",
+ "▁Wa ss",
+ "arr ison",
+ "▁те чение",
+ "▁Of icina",
+ "▁D aw",
+ "▁Da w",
+ "▁K auf",
+ "▁Ka uf",
+ "én t",
+ "é nt",
+ "és ő",
+ "▁= \"",
+ "▁ =\"",
+ "▁k at",
+ "▁ka t",
+ "di ction",
+ "dict ion",
+ "dic tion",
+ "d iction",
+ "▁V oll",
+ "▁Vol l",
+ "▁Vo ll",
+ "▁high way",
+ "J ames",
+ "ze uge",
+ "zeug e",
+ "▁mod elo",
+ "▁model o",
+ "▁mode lo",
+ "Th row",
+ "▁F orum",
+ "▁For um",
+ "▁Fo rum",
+ "(\" @",
+ "▁en fer",
+ "▁enf er",
+ "▁спе циаль",
+ "Number s",
+ "Num bers",
+ "▁B inary",
+ "▁Bin ary",
+ "▁ Binary",
+ "▁Martí nez",
+ "▁Martín ez",
+ "▁St ato",
+ "▁Stat o",
+ "▁Sta to",
+ "▁fest iv",
+ "▁k atol",
+ "▁ka tol",
+ "▁kat ol",
+ "▁А б",
+ "▁lim itation",
+ "▁limit ation",
+ "▁S TR",
+ "▁ST R",
+ "▁ STR",
+ "▁О фициаль",
+ "ip es",
+ "ipe s",
+ "i pes",
+ "▁I sn",
+ "▁Is n",
+ "▁rule d",
+ "▁ru led",
+ "▁c í",
+ "▁ cí",
+ "ge ber",
+ "geb er",
+ "▁lavor o",
+ "▁lav oro",
+ "▁parenthes es",
+ "о з",
+ "▁équip es",
+ "▁équipe s",
+ "▁efficient ly",
+ "▁Per iod",
+ "▁ Period",
+ "▁Reg arding",
+ "le af",
+ "lea f",
+ "▁similar ity",
+ "▁gest ure",
+ "data b",
+ "da tab",
+ "dat ab",
+ "▁term inate",
+ "▁termin ate",
+ "▁sem antics",
+ "▁semantic s",
+ "▁A lo",
+ "▁Al o",
+ "▁c ig",
+ "▁ci g",
+ "▁Open GL",
+ "▁heut igen",
+ "xa ml",
+ "x aml",
+ "▁frequ encies",
+ ")} .",
+ ") }.",
+ "▁threaten ed",
+ "▁threat ened",
+ "ти к",
+ "▁cal cio",
+ "▁calci o",
+ "▁calc io",
+ "▁R iemann",
+ "▁Ri emann",
+ "sl ug",
+ "▁F inale",
+ "▁Fin ale",
+ "▁Final e",
+ "L R",
+ "▁Der by",
+ "▁о ще",
+ "▁de viation",
+ "▁dev iation",
+ "▁devi ation",
+ "äch en",
+ "äche n",
+ "ä chen",
+ "▁C ris",
+ "▁Cr is",
+ "но во",
+ "нов о",
+ "н ово",
+ "▁сто лі",
+ "▁re lev",
+ "▁rel ev",
+ "▁splend id",
+ "▁у чё",
+ "er ving",
+ "erv ing",
+ "ga ble",
+ "g able",
+ "▁général e",
+ "▁généra le",
+ "po m",
+ "p om",
+ "▁Che ers",
+ "▁impr ison",
+ "▁in dent",
+ "▁ind ent",
+ "▁inde nt",
+ "▁ indent",
+ "▁anal yz",
+ "▁analy z",
+ "▁re vert",
+ "▁rev ert",
+ "▁reve rt",
+ "▁rever t",
+ "ér er",
+ "ére r",
+ "é rer",
+ "▁ph ases",
+ "▁phase s",
+ "First Name",
+ "▁m ig",
+ "▁mi g",
+ "▁dist urb",
+ "▁mi xture",
+ "▁) {",
+ "▁ ){",
+ "int ure",
+ "▁T ried",
+ "▁Tr ied",
+ "▁Tri ed",
+ "▁soon er",
+ "▁p els",
+ "▁pe ls",
+ "▁pel s",
+ "▁ét abl",
+ "et ro",
+ "etr o",
+ "it ie",
+ "iti e",
+ "▁quart ier",
+ "▁го во",
+ "▁г ово",
+ "▁ гово",
+ "▁vá ros",
+ "uf e",
+ "u fe",
+ "he ten",
+ "het en",
+ "h eten",
+ "хо м",
+ "х ом",
+ "▁so ap",
+ "▁ soap",
+ "ut ors",
+ "uto rs",
+ "utor s",
+ "▁d uch",
+ "▁du ch",
+ "▁duc h",
+ "syn tax",
+ "s yntax",
+ "▁tr ibe",
+ "▁tri be",
+ "▁trib e",
+ "▁ch ante",
+ "▁chant e",
+ "Tr i",
+ "T ri",
+ "▁M ate",
+ "▁Ma te",
+ "▁Mat e",
+ "qu ality",
+ "qual ity",
+ "uo la",
+ "u ola",
+ "=\" .",
+ "= \".",
+ "ch k",
+ "▁в сі",
+ "▁вс і",
+ "▁prze ci",
+ "▁M eteor",
+ "▁Met eor",
+ "▁scatter ed",
+ "Pl us",
+ "P lus",
+ "tr ad",
+ "tra d",
+ "t rad",
+ "▁stack overflow",
+ "▁ stackoverflow",
+ "▁re tra",
+ "▁r etra",
+ "▁ret ra",
+ "▁retr a",
+ "▁éd itions",
+ "▁édition s",
+ "▁s ain",
+ "▁sa in",
+ "cri be",
+ "cr ibe",
+ "ig non",
+ "ign on",
+ "uc ker",
+ "uck er",
+ "u cker",
+ "▁ма ло",
+ "▁ten ir",
+ "▁ex ports",
+ "▁export s",
+ "▁ exports",
+ "▁aux ili",
+ "▁] ]",
+ "▁ ]]",
+ "▁C BS",
+ "un iform",
+ "uni form",
+ "▁period ic",
+ "ag rant",
+ "agr ant",
+ "▁em ple",
+ "▁emp le",
+ "W il",
+ "▁f res",
+ "▁fr es",
+ "▁fre s",
+ "▁str utt",
+ "▁stru tt",
+ "▁с віт",
+ "▁сві т",
+ "▁be tre",
+ "▁bet re",
+ "▁объ ек",
+ "ти ся",
+ "▁b isher",
+ "▁bis her",
+ "ba um",
+ "bau m",
+ "b aum",
+ "is hi",
+ "ish i",
+ "▁Gaz ette",
+ "background Color",
+ "j l",
+ "▁f iel",
+ "▁fi el",
+ "▁пре ма",
+ "▁protagon ista",
+ "▁Muham mad",
+ "▁sim ulate",
+ "▁H ook",
+ "▁Ho ok",
+ "fe st",
+ "f est",
+ "▁сво их",
+ "▁свои х",
+ "Se nder",
+ "Send er",
+ "S ender",
+ "▁list ened",
+ "▁listen ed",
+ "▁liste ned",
+ "ж і",
+ "je st",
+ "jes t",
+ "j est",
+ "ko rd",
+ "kor d",
+ "k ord",
+ "Cho ice",
+ "▁hoof d",
+ "redu cible",
+ "hp p",
+ "h pp",
+ "▁W u",
+ "š i",
+ "▁M arse",
+ "▁Mar se",
+ "▁Mars e",
+ "▁s oir",
+ "▁so ir",
+ "we sten",
+ "west en",
+ "w esten",
+ "em os",
+ "emo s",
+ "e mos",
+ "▁D uc",
+ "▁Du c",
+ "▁amer ik",
+ "| }{",
+ "▁G ul",
+ "▁Gu l",
+ "▁Sp rache",
+ "▁Spr ache",
+ "▁mis match",
+ "▁mism atch",
+ "Sc al",
+ "S cal",
+ "P ixel",
+ "E F",
+ "▁S ep",
+ "▁Se p",
+ "▁powie cie",
+ "ur k",
+ "▁Nap oli",
+ "▁neighbour hood",
+ "сто ян",
+ "стоя н",
+ "▁search es",
+ "yr us",
+ "y rus",
+ "пе т",
+ "п ет",
+ "He lp",
+ "Hel p",
+ "pon t",
+ "po nt",
+ "p ont",
+ "▁Or ient",
+ "▁Ori ent",
+ "▁Alf onso",
+ "▁monitor ing",
+ "ia o",
+ "i ao",
+ "éd é",
+ "▁Cés ar",
+ "ше е",
+ "Sh ift",
+ "su it",
+ "s uit",
+ "code d",
+ "co ded",
+ "cod ed",
+ "c oded",
+ "но то",
+ "▁Par ti",
+ "▁Part i",
+ "▁la sci",
+ "▁las ci",
+ "▁aw esome",
+ "us ta",
+ "ust a",
+ "u sta",
+ "▁С ове",
+ "▁Со ве",
+ "▁Сов е",
+ "▁F land",
+ "▁Fl and",
+ "oo m",
+ "o om",
+ "▁de vi",
+ "▁dev i",
+ "eng elsk",
+ "end um",
+ "▁Pa scal",
+ "▁Pas cal",
+ "▁B ind",
+ "▁Bi nd",
+ "▁Bin d",
+ "▁ Bind",
+ "▁sigu ientes",
+ "▁siguiente s",
+ "J B",
+ "▁Peters burg",
+ "▁incorrect ly",
+ "▁B ash",
+ "▁Bas h",
+ "▁Ba sh",
+ "▁pe los",
+ "▁pel os",
+ "▁pelo s",
+ "▁zes po",
+ "NS URL",
+ "▁př ek",
+ "▁Cr ime",
+ "na ch",
+ "n ach",
+ "▁th rust",
+ "▁thr ust",
+ "▁Cult ura",
+ "W F",
+ "▁S olo",
+ "▁So lo",
+ "▁Sol o",
+ "▁in vas",
+ "▁inv as",
+ "▁individ ually",
+ "▁individual ly",
+ "ib m",
+ "i bm",
+ "▁et apa",
+ "▁hand ed",
+ "▁han ded",
+ "▁where ver",
+ "▁interpol ation",
+ "▁mus ée",
+ "▁C NN",
+ "id ia",
+ "idi a",
+ "i dia",
+ "ńst w",
+ "▁pr zew",
+ "▁prze w",
+ "▁prz ew",
+ "ug hing",
+ "ugh ing",
+ "▁a ctors",
+ "▁act ors",
+ "▁actor s",
+ "▁Ori ental",
+ "▁Orient al",
+ "▁conven ience",
+ "▁mi asta",
+ "br ains",
+ "bra ins",
+ "▁ме ся",
+ "▁inf atti",
+ "▁All Movie",
+ "▁crit ique",
+ "▁success o",
+ "▁succ esso",
+ "anc ouver",
+ "▁f á",
+ "ъл гар",
+ "▁wis dom",
+ "▁Pho enix",
+ "ho le",
+ "hol e",
+ "h ole",
+ "▁inform ación",
+ "▁Air lines",
+ "▁Airl ines",
+ ". «",
+ "mo rt",
+ "mor t",
+ "m ort",
+ "user Id",
+ "▁*/ \r",
+ "▁C ongo",
+ "▁Con go",
+ "▁Cong o",
+ "▁\" `",
+ "▁ \"`",
+ "co rr",
+ "cor r",
+ "c orr",
+ "▁problem as",
+ "▁proble mas",
+ "▁problema s",
+ "▁probl emas",
+ "▁b ib",
+ "▁bi b",
+ "▁ bib",
+ "▁póź niej",
+ "▁file Name",
+ "▁ fileName",
+ "zo tt",
+ "z ott",
+ "ma cht",
+ "mac ht",
+ "m acht",
+ "▁Ul rich",
+ "C y",
+ "end point",
+ "▁she ep",
+ "▁i bn",
+ "Fe ed",
+ "F eed",
+ "▁sympath y",
+ "▁I b",
+ "▁territ orial",
+ "ra ting",
+ "rat ing",
+ "r ating",
+ "да ми",
+ "▁d st",
+ "▁ds t",
+ "▁ dst",
+ "у ю",
+ "ah o",
+ "a ho",
+ "▁s ug",
+ "▁su g",
+ "em ia",
+ "emi a",
+ "▁t ed",
+ "▁te d",
+ "▁ ted",
+ "▁A pi",
+ "▁Ap i",
+ "▁ Api",
+ "▁R ica",
+ "▁Ric a",
+ "▁Ri ca",
+ "▁M R",
+ "▁ MR",
+ "ński m",
+ "ń skim",
+ "▁V oor",
+ "▁Vo or",
+ "▁de vil",
+ "▁dev il",
+ "▁devi l",
+ "▁Ф о",
+ "▁N är",
+ "▁Nä r",
+ "▁... )",
+ "▁.. .)",
+ "▁ ...)",
+ "▁v ois",
+ "▁vo is",
+ "▁ab bre",
+ "▁abb re",
+ "▁M änner",
+ "xim o",
+ "xi mo",
+ "x imo",
+ "▁intellect ual",
+ "▁t ales",
+ "▁tal es",
+ "▁ta les",
+ "▁tale s",
+ "sim ilar",
+ "ne um",
+ "▁O rig",
+ "▁Or ig",
+ "▁Ori g",
+ "▁po stal",
+ "▁pos tal",
+ "▁post al",
+ "▁h vor",
+ "▁ident ification",
+ "▁identific ation",
+ "▁О д",
+ "ue sto",
+ "ues to",
+ "uest o",
+ "u esto",
+ "▁. ./",
+ "▁.. /",
+ "▁ ../",
+ "▁b ir",
+ "▁bi r",
+ "▁ bir",
+ "▁Л он",
+ "▁Ло н",
+ "▁es empio",
+ "▁E ing",
+ "▁Ein g",
+ "Exp and",
+ "▁PR IMARY",
+ "▁J in",
+ "▁Ji n",
+ "▁vš ak",
+ "ours es",
+ "ourse s",
+ "▁Be tty",
+ "▁Bet ty",
+ "▁W M",
+ "▁ WM",
+ "▁fl ask",
+ "▁fla sk",
+ "hl en",
+ "h len",
+ "▁A del",
+ "▁Ad el",
+ "lar avel",
+ "▁д ет",
+ "▁де т",
+ "сь кою",
+ "сько ю",
+ "▁M undo",
+ "▁Mun do",
+ "ic zn",
+ "icz n",
+ "ifi é",
+ "▁М ор",
+ "▁Мо р",
+ "▁д рев",
+ "▁др ев",
+ "Date Format",
+ "сь ким",
+ "ськ им",
+ "▁d ated",
+ "▁da ted",
+ "▁dat ed",
+ "▁date d",
+ "▁ dated",
+ "ко ли",
+ "кол и",
+ "▁результа те",
+ "\\) .",
+ "\\ ).",
+ "▁delay ed",
+ "so und",
+ "s ound",
+ "▁Ма к",
+ "▁\" ...",
+ "▁\". ..",
+ "▁b innen",
+ "▁bin nen",
+ "▁фа куль",
+ "▁pol ygon",
+ "▁poly gon",
+ "▁eg gs",
+ "▁egg s",
+ "At IndexPath",
+ "AtIndex Path",
+ "мен таль",
+ "мент аль",
+ "мента ль",
+ "▁in cred",
+ "▁incre d",
+ "▁inc red",
+ "ch unk",
+ "web driver",
+ "▁с вобо",
+ "▁сво бо",
+ "▁mi ędzy",
+ "Rece ived",
+ "Receive d",
+ "▁M onde",
+ "▁Mon de",
+ "▁Mo nde",
+ "▁Mond e",
+ "▁J Query",
+ "Bu tt",
+ "But t",
+ "B utt",
+ "▁P DO",
+ "▁for ec",
+ "▁fo rec",
+ "▁fore c",
+ "▁discipl ine",
+ "ch ev",
+ "che v",
+ "на т",
+ "н ат",
+ "▁re dis",
+ "▁red is",
+ "▁hun ting",
+ "▁al k",
+ "▁ alk",
+ "▁proof s",
+ "PR I",
+ "P RI",
+ "▁c hip",
+ "▁ch ip",
+ "▁chi p",
+ "és ie",
+ "▁H O",
+ "▁ HO",
+ "▁r ug",
+ "▁ru g",
+ "▁ rug",
+ "zo s",
+ "z os",
+ "▁s orte",
+ "▁sort e",
+ "▁sor te",
+ "▁ze igt",
+ "▁Phys ics",
+ "leg te",
+ "legt e",
+ "▁proport ional",
+ "▁proportion al",
+ "▁tool bar",
+ "ve ment",
+ "v ement",
+ "not in",
+ "▁prv ní",
+ "bl ah",
+ "bla h",
+ "b lah",
+ "▁prés ence",
+ "▁l loc",
+ "▁ll oc",
+ "▁lí der",
+ "▁Ac cept",
+ "▁ Accept",
+ "▁Al ways",
+ "▁\" {",
+ "▁divers i",
+ "▁diver si",
+ "ik or",
+ "iko r",
+ "i kor",
+ "Per iod",
+ "ж ён",
+ "▁Al liance",
+ "▁All iance",
+ "▁re lay",
+ "▁rel ay",
+ "▁rela y",
+ "Br o",
+ "B ro",
+ "jö n",
+ "j ön",
+ "▁B aud",
+ "▁Ba ud",
+ "▁Bau d",
+ "▁B ian",
+ "▁Bi an",
+ "') [",
+ "' )[",
+ "чи в",
+ "▁P oss",
+ "▁Po ss",
+ "▁Pos s",
+ "▁Mitg lieder",
+ "▁Mitglied er",
+ "▁n ev",
+ "▁ne v",
+ "Dan iel",
+ "▁t ends",
+ "▁ten ds",
+ "▁tend s",
+ "▁compag nie",
+ "▁liv res",
+ "▁livre s",
+ "lu b",
+ "l ub",
+ "▁ ▁",
+ "▁▁ ▁▁",
+ "▁▁▁ ▁",
+ "▁ ▁▁▁",
+ "▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁",
+ "▁▁▁▁ ▁",
+ "▁▁▁ ▁▁",
+ "▁ ▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁",
+ "▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁",
+ "▁ ▁▁",
+ "▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/tokenizer_config.json b/out/eval/tinyllama_full_arc_arxiv_mc/2407/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ef41cbc275000b29afe157ba487f0530b8c26dc
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/tokenizer_config.json
@@ -0,0 +1,35 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "bos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "clean_up_tokenization_spaces": false,
+ "eos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "legacy": false,
+ "model_max_length": 1000000000000000019884624838656,
+ "pad_token": null,
+ "padding_side": "right",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizer",
+ "unk_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/out/eval/tinyllama_full_arc_arxiv_mc/2407/values.json b/out/eval/tinyllama_full_arc_arxiv_mc/2407/values.json
new file mode 100644
index 0000000000000000000000000000000000000000..472fa5dc1e1d31b17a4cc71883df56a6063612af
--- /dev/null
+++ b/out/eval/tinyllama_full_arc_arxiv_mc/2407/values.json
@@ -0,0 +1,286 @@
+{
+ "tasks": [
+ {
+ "task": "arxiv_mc",
+ "metric": "acc",
+ "value": 0.16583333333333333
+ },
+ {
+ "task": "arxiv_mc",
+ "metric": "acc_stderr",
+ "value": 0.01074491240245708
+ },
+ {
+ "task": "arxiv_mc",
+ "metric": "acc_norm",
+ "value": 0.23916666666666667
+ },
+ {
+ "task": "arxiv_mc",
+ "metric": "acc_norm_stderr",
+ "value": 0.012288331311441483
+ },
+ {
+ "task": "arxiv_mc_2407",
+ "metric": "acc",
+ "value": 0.2
+ },
+ {
+ "task": "arxiv_mc_2407",
+ "metric": "acc_stderr",
+ "value": 0.04020151261036846
+ },
+ {
+ "task": "arxiv_mc_2407",
+ "metric": "acc_norm",
+ "value": 0.33
+ },
+ {
+ "task": "arxiv_mc_2407",
+ "metric": "acc_norm_stderr",
+ "value": 0.047258156262526045
+ },
+ {
+ "task": "arxiv_mc_2408",
+ "metric": "acc",
+ "value": 0.16
+ },
+ {
+ "task": "arxiv_mc_2408",
+ "metric": "acc_stderr",
+ "value": 0.036845294917747115
+ },
+ {
+ "task": "arxiv_mc_2408",
+ "metric": "acc_norm",
+ "value": 0.18
+ },
+ {
+ "task": "arxiv_mc_2408",
+ "metric": "acc_norm_stderr",
+ "value": 0.03861229196653697
+ },
+ {
+ "task": "arxiv_mc_2409",
+ "metric": "acc",
+ "value": 0.14
+ },
+ {
+ "task": "arxiv_mc_2409",
+ "metric": "acc_stderr",
+ "value": 0.03487350880197772
+ },
+ {
+ "task": "arxiv_mc_2409",
+ "metric": "acc_norm",
+ "value": 0.24
+ },
+ {
+ "task": "arxiv_mc_2409",
+ "metric": "acc_norm_stderr",
+ "value": 0.04292346959909283
+ },
+ {
+ "task": "arxiv_mc_2410",
+ "metric": "acc",
+ "value": 0.2
+ },
+ {
+ "task": "arxiv_mc_2410",
+ "metric": "acc_stderr",
+ "value": 0.04020151261036846
+ },
+ {
+ "task": "arxiv_mc_2410",
+ "metric": "acc_norm",
+ "value": 0.23
+ },
+ {
+ "task": "arxiv_mc_2410",
+ "metric": "acc_norm_stderr",
+ "value": 0.042295258468165044
+ },
+ {
+ "task": "arxiv_mc_2411",
+ "metric": "acc",
+ "value": 0.24
+ },
+ {
+ "task": "arxiv_mc_2411",
+ "metric": "acc_stderr",
+ "value": 0.04292346959909282
+ },
+ {
+ "task": "arxiv_mc_2411",
+ "metric": "acc_norm",
+ "value": 0.34
+ },
+ {
+ "task": "arxiv_mc_2411",
+ "metric": "acc_norm_stderr",
+ "value": 0.04760952285695235
+ },
+ {
+ "task": "arxiv_mc_2412",
+ "metric": "acc",
+ "value": 0.11
+ },
+ {
+ "task": "arxiv_mc_2412",
+ "metric": "acc_stderr",
+ "value": 0.031446603773522035
+ },
+ {
+ "task": "arxiv_mc_2412",
+ "metric": "acc_norm",
+ "value": 0.23
+ },
+ {
+ "task": "arxiv_mc_2412",
+ "metric": "acc_norm_stderr",
+ "value": 0.04229525846816506
+ },
+ {
+ "task": "arxiv_mc_2501",
+ "metric": "acc",
+ "value": 0.14
+ },
+ {
+ "task": "arxiv_mc_2501",
+ "metric": "acc_stderr",
+ "value": 0.03487350880197771
+ },
+ {
+ "task": "arxiv_mc_2501",
+ "metric": "acc_norm",
+ "value": 0.24
+ },
+ {
+ "task": "arxiv_mc_2501",
+ "metric": "acc_norm_stderr",
+ "value": 0.04292346959909284
+ },
+ {
+ "task": "arxiv_mc_2502",
+ "metric": "acc",
+ "value": 0.14
+ },
+ {
+ "task": "arxiv_mc_2502",
+ "metric": "acc_stderr",
+ "value": 0.034873508801977704
+ },
+ {
+ "task": "arxiv_mc_2502",
+ "metric": "acc_norm",
+ "value": 0.2
+ },
+ {
+ "task": "arxiv_mc_2502",
+ "metric": "acc_norm_stderr",
+ "value": 0.040201512610368445
+ },
+ {
+ "task": "arxiv_mc_2503",
+ "metric": "acc",
+ "value": 0.17
+ },
+ {
+ "task": "arxiv_mc_2503",
+ "metric": "acc_stderr",
+ "value": 0.0377525168068637
+ },
+ {
+ "task": "arxiv_mc_2503",
+ "metric": "acc_norm",
+ "value": 0.2
+ },
+ {
+ "task": "arxiv_mc_2503",
+ "metric": "acc_norm_stderr",
+ "value": 0.04020151261036843
+ },
+ {
+ "task": "arxiv_mc_2504",
+ "metric": "acc",
+ "value": 0.15
+ },
+ {
+ "task": "arxiv_mc_2504",
+ "metric": "acc_stderr",
+ "value": 0.035887028128263734
+ },
+ {
+ "task": "arxiv_mc_2504",
+ "metric": "acc_norm",
+ "value": 0.17
+ },
+ {
+ "task": "arxiv_mc_2504",
+ "metric": "acc_norm_stderr",
+ "value": 0.0377525168068637
+ },
+ {
+ "task": "arxiv_mc_2505",
+ "metric": "acc",
+ "value": 0.19
+ },
+ {
+ "task": "arxiv_mc_2505",
+ "metric": "acc_stderr",
+ "value": 0.03942772444036623
+ },
+ {
+ "task": "arxiv_mc_2505",
+ "metric": "acc_norm",
+ "value": 0.24
+ },
+ {
+ "task": "arxiv_mc_2505",
+ "metric": "acc_norm_stderr",
+ "value": 0.042923469599092816
+ },
+ {
+ "task": "arxiv_mc_2506",
+ "metric": "acc",
+ "value": 0.15
+ },
+ {
+ "task": "arxiv_mc_2506",
+ "metric": "acc_stderr",
+ "value": 0.03588702812826371
+ },
+ {
+ "task": "arxiv_mc_2506",
+ "metric": "acc_norm",
+ "value": 0.27
+ },
+ {
+ "task": "arxiv_mc_2506",
+ "metric": "acc_norm_stderr",
+ "value": 0.0446196043338474
+ }
+ ],
+ "groups": [
+ {
+ "group": "arxiv_mc",
+ "metric": "acc",
+ "value": 0.16583333333333333
+ },
+ {
+ "group": "arxiv_mc",
+ "metric": "acc_stderr",
+ "value": 0.01074491240245708
+ },
+ {
+ "group": "arxiv_mc",
+ "metric": "acc_norm",
+ "value": 0.23916666666666667
+ },
+ {
+ "group": "arxiv_mc",
+ "metric": "acc_norm_stderr",
+ "value": 0.012288331311441483
+ }
+ ]
+}
\ No newline at end of file
diff --git a/out/eval/tinyllama_full_ppl/2407_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2407_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..804fbc2aad7aa7805c4a31783e58e8ffc551e679
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2407_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3401238918304443, "val_ppl": 3.8195166829675764, "rank": 2}
+{"month": "2407", "val_loss": 1.3308329582214355, "val_ppl": 3.784194150788953, "rank": 1}
+{"month": "2407", "val_loss": 1.4430962800979614, "val_ppl": 4.23378452615237, "rank": 3}
+{"month": "2407", "val_loss": 1.3418890237808228, "val_ppl": 3.826264587618703, "rank": 0}
+{"month": "2408", "val_loss": 1.4649615287780762, "val_ppl": 4.327376757626807, "rank": 2}
+{"month": "2408", "val_loss": 1.4553765058517456, "val_ppl": 4.286096902413764, "rank": 1}
+{"month": "2408", "val_loss": 1.4550942182540894, "val_ppl": 4.284887161171367, "rank": 3}
+{"month": "2408", "val_loss": 1.4382472038269043, "val_ppl": 4.213304277344344, "rank": 0}
+{"month": "2409", "val_loss": 1.4172937870025635, "val_ppl": 4.125939646771969, "rank": 2}
+{"month": "2409", "val_loss": 1.470693588256836, "val_ppl": 4.352252765856388, "rank": 1}
+{"month": "2409", "val_loss": 1.4720611572265625, "val_ppl": 4.35820884343254, "rank": 3}
+{"month": "2409", "val_loss": 1.4188635349273682, "val_ppl": 4.132421418012854, "rank": 0}
+{"month": "2410", "val_loss": 1.3499130010604858, "val_ppl": 3.8570899533641967, "rank": 2}
+{"month": "2410", "val_loss": 1.3595799207687378, "val_ppl": 3.894556935633931, "rank": 1}
+{"month": "2410", "val_loss": 1.4495704174041748, "val_ppl": 4.261283548672918, "rank": 3}
+{"month": "2410", "val_loss": 1.5745606422424316, "val_ppl": 4.828619660488959, "rank": 0}
+{"month": "2411", "val_loss": 1.4264885187149048, "val_ppl": 4.164051500513005, "rank": 2}
+{"month": "2411", "val_loss": 1.4281030893325806, "val_ppl": 4.170780086142855, "rank": 1}
+{"month": "2411", "val_loss": 1.4030014276504517, "val_ppl": 4.067389640213666, "rank": 3}
+{"month": "2411", "val_loss": 1.4369604587554932, "val_ppl": 4.207886315346613, "rank": 0}
+{"month": "2412", "val_loss": 1.4747017621994019, "val_ppl": 4.369732359207785, "rank": 1}
+{"month": "2412", "val_loss": 1.408434271812439, "val_ppl": 4.089547269247822, "rank": 3}
+{"month": "2412", "val_loss": 1.411298155784607, "val_ppl": 4.1012760450356875, "rank": 2}
+{"month": "2412", "val_loss": 1.4237630367279053, "val_ppl": 4.152717904926461, "rank": 0}
+{"month": "2501", "val_loss": 1.3047839403152466, "val_ppl": 3.6868924188297223, "rank": 1}
+{"month": "2501", "val_loss": 1.4822993278503418, "val_ppl": 4.403058124724474, "rank": 2}
+{"month": "2501", "val_loss": 1.355212688446045, "val_ppl": 3.8775855865882565, "rank": 3}
+{"month": "2501", "val_loss": 1.4138273000717163, "val_ppl": 4.111661892031496, "rank": 0}
+{"month": "2502", "val_loss": 1.3723409175872803, "val_ppl": 3.944573818198906, "rank": 1}
+{"month": "2502", "val_loss": 1.4143813848495483, "val_ppl": 4.113940732574589, "rank": 2}
+{"month": "2502", "val_loss": 1.421377182006836, "val_ppl": 4.142821933177419, "rank": 3}
+{"month": "2502", "val_loss": 1.404603362083435, "val_ppl": 4.073910553373853, "rank": 0}
+{"month": "2503", "val_loss": 1.426881194114685, "val_ppl": 4.165686942178515, "rank": 1}
+{"month": "2503", "val_loss": 1.438934326171875, "val_ppl": 4.216200327715984, "rank": 2}
+{"month": "2503", "val_loss": 1.4343088865280151, "val_ppl": 4.196743580268452, "rank": 3}
+{"month": "2503", "val_loss": 1.456992745399475, "val_ppl": 4.293029862886088, "rank": 0}
+{"month": "2504", "val_loss": 1.4529080390930176, "val_ppl": 4.275529862244869, "rank": 2}
+{"month": "2504", "val_loss": 1.4284093379974365, "val_ppl": 4.172057577580683, "rank": 3}
+{"month": "2504", "val_loss": 1.4099334478378296, "val_ppl": 4.095682818453564, "rank": 1}
+{"month": "2504", "val_loss": 1.4458612203598022, "val_ppl": 4.245506885792738, "rank": 0}
+{"month": "2505", "val_loss": 1.4609925746917725, "val_ppl": 4.3102356366241965, "rank": 2}
+{"month": "2505", "val_loss": 1.4186663627624512, "val_ppl": 4.131606699858025, "rank": 3}
+{"month": "2505", "val_loss": 1.4786559343338013, "val_ppl": 4.387045239634099, "rank": 1}
+{"month": "2505", "val_loss": 1.4452773332595825, "val_ppl": 4.243028712645302, "rank": 0}
+{"month": "2506", "val_loss": 1.4663327932357788, "val_ppl": 4.333314805956465, "rank": 2}
+{"month": "2506", "val_loss": 1.3949086666107178, "val_ppl": 4.0346060615577555, "rank": 3}
+{"month": "2506", "val_loss": 1.4446309804916382, "val_ppl": 4.240287105410576, "rank": 1}
+{"month": "2506", "val_loss": 1.443738341331482, "val_ppl": 4.23650374792772, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2408_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2408_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..ccd7369e6525d5e6747b09936763664f6994754a
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2408_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.362528920173645, "val_ppl": 3.906058933075612, "rank": 2}
+{"month": "2407", "val_loss": 1.4777755737304688, "val_ppl": 4.3831847573976574, "rank": 3}
+{"month": "2407", "val_loss": 1.3729832172393799, "val_ppl": 3.9471082304289324, "rank": 0}
+{"month": "2407", "val_loss": 1.3674103021621704, "val_ppl": 3.9251725111825952, "rank": 1}
+{"month": "2408", "val_loss": 1.2508023977279663, "val_ppl": 3.4931447246362146, "rank": 2}
+{"month": "2408", "val_loss": 1.2579619884490967, "val_ppl": 3.5182439540845136, "rank": 3}
+{"month": "2408", "val_loss": 1.2399872541427612, "val_ppl": 3.4555694202874743, "rank": 0}
+{"month": "2408", "val_loss": 1.2464643716812134, "val_ppl": 3.478024192179584, "rank": 1}
+{"month": "2409", "val_loss": 1.4675408601760864, "val_ppl": 4.338552903664771, "rank": 3}
+{"month": "2409", "val_loss": 1.4120129346847534, "val_ppl": 4.104208598555189, "rank": 2}
+{"month": "2409", "val_loss": 1.4647713899612427, "val_ppl": 4.326554033548489, "rank": 1}
+{"month": "2409", "val_loss": 1.4133905172348022, "val_ppl": 4.109866380838644, "rank": 0}
+{"month": "2410", "val_loss": 1.4405683279037476, "val_ppl": 4.223095237966944, "rank": 3}
+{"month": "2410", "val_loss": 1.3448939323425293, "val_ppl": 3.8377794547343513, "rank": 2}
+{"month": "2410", "val_loss": 1.3568646907806396, "val_ppl": 3.883996661126899, "rank": 1}
+{"month": "2410", "val_loss": 1.573472261428833, "val_ppl": 4.823367142382782, "rank": 0}
+{"month": "2411", "val_loss": 1.3975845575332642, "val_ppl": 4.045416684867629, "rank": 3}
+{"month": "2411", "val_loss": 1.4199227094650269, "val_ppl": 4.1368006923562195, "rank": 2}
+{"month": "2411", "val_loss": 1.4218403100967407, "val_ppl": 4.144741034746768, "rank": 1}
+{"month": "2411", "val_loss": 1.4330910444259644, "val_ppl": 4.1916357201597405, "rank": 0}
+{"month": "2412", "val_loss": 1.4037216901779175, "val_ppl": 4.070320283845813, "rank": 3}
+{"month": "2412", "val_loss": 1.4028061628341675, "val_ppl": 4.066595499659191, "rank": 2}
+{"month": "2412", "val_loss": 1.4695839881896973, "val_ppl": 4.347426184178079, "rank": 1}
+{"month": "2412", "val_loss": 1.417596459388733, "val_ppl": 4.1271886437789655, "rank": 0}
+{"month": "2501", "val_loss": 1.3509228229522705, "val_ppl": 3.8609868945147734, "rank": 3}
+{"month": "2501", "val_loss": 1.2983866930007935, "val_ppl": 3.663381738204649, "rank": 1}
+{"month": "2501", "val_loss": 1.476736307144165, "val_ppl": 4.378631826202121, "rank": 2}
+{"month": "2501", "val_loss": 1.4069976806640625, "val_ppl": 4.083676479811697, "rank": 0}
+{"month": "2502", "val_loss": 1.4095300436019897, "val_ppl": 4.094030935866561, "rank": 2}
+{"month": "2502", "val_loss": 1.4141857624053955, "val_ppl": 4.113136032144681, "rank": 3}
+{"month": "2502", "val_loss": 1.3664177656173706, "val_ppl": 3.9212785667813335, "rank": 1}
+{"month": "2502", "val_loss": 1.3973371982574463, "val_ppl": 4.044416137278543, "rank": 0}
+{"month": "2503", "val_loss": 1.4294711351394653, "val_ppl": 4.1764898090418745, "rank": 2}
+{"month": "2503", "val_loss": 1.4288697242736816, "val_ppl": 4.1739787778462905, "rank": 3}
+{"month": "2503", "val_loss": 1.419816255569458, "val_ppl": 4.136360337246501, "rank": 1}
+{"month": "2503", "val_loss": 1.4511704444885254, "val_ppl": 4.2681071753028474, "rank": 0}
+{"month": "2504", "val_loss": 1.4489697217941284, "val_ppl": 4.2587245830087355, "rank": 2}
+{"month": "2504", "val_loss": 1.4048845767974854, "val_ppl": 4.075056358066205, "rank": 1}
+{"month": "2504", "val_loss": 1.4212480783462524, "val_ppl": 4.142287114224986, "rank": 3}
+{"month": "2504", "val_loss": 1.4392225742340088, "val_ppl": 4.21741581446245, "rank": 0}
+{"month": "2505", "val_loss": 1.417108178138733, "val_ppl": 4.125173906868153, "rank": 3}
+{"month": "2505", "val_loss": 1.454293131828308, "val_ppl": 4.2814559707540765, "rank": 2}
+{"month": "2505", "val_loss": 1.47247314453125, "val_ppl": 4.360004740065115, "rank": 1}
+{"month": "2505", "val_loss": 1.438664197921753, "val_ppl": 4.215061566711977, "rank": 0}
+{"month": "2506", "val_loss": 1.3888366222381592, "val_ppl": 4.010181981617138, "rank": 3}
+{"month": "2506", "val_loss": 1.460412859916687, "val_ppl": 4.307737653470374, "rank": 2}
+{"month": "2506", "val_loss": 1.4377959966659546, "val_ppl": 4.211403633107536, "rank": 1}
+{"month": "2506", "val_loss": 1.438284993171692, "val_ppl": 4.2134634983607855, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2409_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2409_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..780e9b2446bf12b81df4d7ade569dc74b8614864
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2409_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.485063910484314, "val_ppl": 4.415247584373104, "rank": 3}
+{"month": "2407", "val_loss": 1.3649768829345703, "val_ppl": 3.915632533012995, "rank": 2}
+{"month": "2407", "val_loss": 1.3764039278030396, "val_ppl": 3.9606332646741, "rank": 1}
+{"month": "2407", "val_loss": 1.379693627357483, "val_ppl": 3.97368401291081, "rank": 0}
+{"month": "2408", "val_loss": 1.3427562713623047, "val_ppl": 3.8295843456464147, "rank": 2}
+{"month": "2408", "val_loss": 1.3247745037078857, "val_ppl": 3.7613370917958093, "rank": 3}
+{"month": "2408", "val_loss": 1.3265122175216675, "val_ppl": 3.7678789014688667, "rank": 0}
+{"month": "2408", "val_loss": 1.31806480884552, "val_ppl": 3.7361841462953675, "rank": 1}
+{"month": "2409", "val_loss": 1.2037886381149292, "val_ppl": 3.332719502488496, "rank": 2}
+{"month": "2409", "val_loss": 1.261081337928772, "val_ppl": 3.5292357212007732, "rank": 1}
+{"month": "2409", "val_loss": 1.2550549507141113, "val_ppl": 3.508031137862438, "rank": 3}
+{"month": "2409", "val_loss": 1.2141947746276855, "val_ppl": 3.367581310364588, "rank": 0}
+{"month": "2410", "val_loss": 1.3304420709609985, "val_ppl": 3.78271524656563, "rank": 2}
+{"month": "2410", "val_loss": 1.4265085458755493, "val_ppl": 4.164134895476417, "rank": 3}
+{"month": "2410", "val_loss": 1.3427306413650513, "val_ppl": 3.829486194667964, "rank": 1}
+{"month": "2410", "val_loss": 1.5633049011230469, "val_ppl": 4.774574696275717, "rank": 0}
+{"month": "2411", "val_loss": 1.3834478855133057, "val_ppl": 3.9886302870557864, "rank": 3}
+{"month": "2411", "val_loss": 1.4033945798873901, "val_ppl": 4.0689890579359425, "rank": 2}
+{"month": "2411", "val_loss": 1.4083776473999023, "val_ppl": 4.089315707592243, "rank": 1}
+{"month": "2411", "val_loss": 1.4190096855163574, "val_ppl": 4.133025417973448, "rank": 0}
+{"month": "2412", "val_loss": 1.3886818885803223, "val_ppl": 4.009561519494955, "rank": 2}
+{"month": "2412", "val_loss": 1.3894152641296387, "val_ppl": 4.012503112391143, "rank": 3}
+{"month": "2412", "val_loss": 1.4546624422073364, "val_ppl": 4.2830374488916, "rank": 1}
+{"month": "2412", "val_loss": 1.4025143384933472, "val_ppl": 4.065408941249854, "rank": 0}
+{"month": "2501", "val_loss": 1.4628865718841553, "val_ppl": 4.318406946594848, "rank": 2}
+{"month": "2501", "val_loss": 1.3351476192474365, "val_ppl": 3.8005569403668753, "rank": 3}
+{"month": "2501", "val_loss": 1.2839248180389404, "val_ppl": 3.610783619993481, "rank": 1}
+{"month": "2501", "val_loss": 1.3923919200897217, "val_ppl": 4.024464747699859, "rank": 0}
+{"month": "2502", "val_loss": 1.3984625339508057, "val_ppl": 4.048970024962219, "rank": 3}
+{"month": "2502", "val_loss": 1.351839303970337, "val_ppl": 3.8645270377038248, "rank": 1}
+{"month": "2502", "val_loss": 1.3960250616073608, "val_ppl": 4.039112790755192, "rank": 2}
+{"month": "2502", "val_loss": 1.383058786392212, "val_ppl": 3.987078616413143, "rank": 0}
+{"month": "2503", "val_loss": 1.4119216203689575, "val_ppl": 4.1038338426656775, "rank": 3}
+{"month": "2503", "val_loss": 1.4145982265472412, "val_ppl": 4.114832903193648, "rank": 2}
+{"month": "2503", "val_loss": 1.4040486812591553, "val_ppl": 4.0716514599059, "rank": 1}
+{"month": "2503", "val_loss": 1.4355839490890503, "val_ppl": 4.202098103836741, "rank": 0}
+{"month": "2504", "val_loss": 1.407296895980835, "val_ppl": 4.084898561186815, "rank": 3}
+{"month": "2504", "val_loss": 1.4341951608657837, "val_ppl": 4.196266329963888, "rank": 2}
+{"month": "2504", "val_loss": 1.3897756338119507, "val_ppl": 4.013949357438815, "rank": 1}
+{"month": "2504", "val_loss": 1.423025131225586, "val_ppl": 4.149654721843654, "rank": 0}
+{"month": "2505", "val_loss": 1.4383201599121094, "val_ppl": 4.213611674743316, "rank": 2}
+{"month": "2505", "val_loss": 1.406368374824524, "val_ppl": 4.081107406807272, "rank": 3}
+{"month": "2505", "val_loss": 1.454991102218628, "val_ppl": 4.284445343374549, "rank": 1}
+{"month": "2505", "val_loss": 1.4232839345932007, "val_ppl": 4.150728805442337, "rank": 0}
+{"month": "2506", "val_loss": 1.443969964981079, "val_ppl": 4.237485136039307, "rank": 2}
+{"month": "2506", "val_loss": 1.3735177516937256, "val_ppl": 3.9492186597714762, "rank": 3}
+{"month": "2506", "val_loss": 1.4226653575897217, "val_ppl": 4.148162054004164, "rank": 1}
+{"month": "2506", "val_loss": 1.4236834049224854, "val_ppl": 4.152387229668601, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2410_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2410_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..d410f4d96c0c5e5634fa2ce4a5a918315a4ec47d
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2410_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3625130653381348, "val_ppl": 3.9059970036446767, "rank": 2}
+{"month": "2407", "val_loss": 1.4842785596847534, "val_ppl": 4.4117814274051845, "rank": 3}
+{"month": "2407", "val_loss": 1.377859115600586, "val_ppl": 3.9664009253683554, "rank": 1}
+{"month": "2407", "val_loss": 1.3787990808486938, "val_ppl": 3.9701309571737657, "rank": 0}
+{"month": "2408", "val_loss": 1.343483805656433, "val_ppl": 3.832371513347234, "rank": 3}
+{"month": "2408", "val_loss": 1.3664422035217285, "val_ppl": 3.921374395782834, "rank": 2}
+{"month": "2408", "val_loss": 1.344637393951416, "val_ppl": 3.836795043242655, "rank": 1}
+{"month": "2408", "val_loss": 1.3435213565826416, "val_ppl": 3.832515425149129, "rank": 0}
+{"month": "2409", "val_loss": 1.2931017875671387, "val_ppl": 3.6440721816842823, "rank": 2}
+{"month": "2409", "val_loss": 1.3426209688186646, "val_ppl": 3.829066228195459, "rank": 3}
+{"month": "2409", "val_loss": 1.3356683254241943, "val_ppl": 3.80253642916214, "rank": 1}
+{"month": "2409", "val_loss": 1.298521876335144, "val_ppl": 3.663876999837824, "rank": 0}
+{"month": "2410", "val_loss": 1.1201715469360352, "val_ppl": 3.065380014740353, "rank": 1}
+{"month": "2410", "val_loss": 1.2227020263671875, "val_ppl": 3.3963523801706224, "rank": 3}
+{"month": "2410", "val_loss": 1.1426008939743042, "val_ppl": 3.1349113431069515, "rank": 2}
+{"month": "2410", "val_loss": 1.3279122114181519, "val_ppl": 3.7731576031464997, "rank": 0}
+{"month": "2411", "val_loss": 1.3699663877487183, "val_ppl": 3.935218421697037, "rank": 3}
+{"month": "2411", "val_loss": 1.3956365585327148, "val_ppl": 4.0375438877986864, "rank": 1}
+{"month": "2411", "val_loss": 1.3899426460266113, "val_ppl": 4.014619791994358, "rank": 2}
+{"month": "2411", "val_loss": 1.4060338735580444, "val_ppl": 4.079742499505393, "rank": 0}
+{"month": "2412", "val_loss": 1.3763186931610107, "val_ppl": 3.9602956959020594, "rank": 3}
+{"month": "2412", "val_loss": 1.3741707801818848, "val_ppl": 3.951798454310262, "rank": 2}
+{"month": "2412", "val_loss": 1.4407111406326294, "val_ppl": 4.223698392790274, "rank": 1}
+{"month": "2412", "val_loss": 1.3878103494644165, "val_ppl": 4.006068552143023, "rank": 0}
+{"month": "2501", "val_loss": 1.2720528841018677, "val_ppl": 3.5681700884164584, "rank": 1}
+{"month": "2501", "val_loss": 1.4463121891021729, "val_ppl": 4.247421908468978, "rank": 2}
+{"month": "2501", "val_loss": 1.3237147331237793, "val_ppl": 3.7573530488476545, "rank": 3}
+{"month": "2501", "val_loss": 1.3789067268371582, "val_ppl": 3.970558348848071, "rank": 0}
+{"month": "2502", "val_loss": 1.3828585147857666, "val_ppl": 3.9862801977265754, "rank": 3}
+{"month": "2502", "val_loss": 1.3822216987609863, "val_ppl": 3.983742478733221, "rank": 2}
+{"month": "2502", "val_loss": 1.336174726486206, "val_ppl": 3.8044625252956084, "rank": 1}
+{"month": "2502", "val_loss": 1.3672521114349365, "val_ppl": 3.9245516343983025, "rank": 0}
+{"month": "2503", "val_loss": 1.3872737884521484, "val_ppl": 4.003919628511345, "rank": 1}
+{"month": "2503", "val_loss": 1.3932018280029297, "val_ppl": 4.0277255138273516, "rank": 2}
+{"month": "2503", "val_loss": 1.3974146842956543, "val_ppl": 4.04472953520371, "rank": 3}
+{"month": "2503", "val_loss": 1.4191503524780273, "val_ppl": 4.133606838993904, "rank": 0}
+{"month": "2504", "val_loss": 1.4196085929870605, "val_ppl": 4.1355014591586485, "rank": 2}
+{"month": "2504", "val_loss": 1.3901379108428955, "val_ppl": 4.0154037825308855, "rank": 3}
+{"month": "2504", "val_loss": 1.3766632080078125, "val_ppl": 3.961660311618713, "rank": 1}
+{"month": "2504", "val_loss": 1.40700101852417, "val_ppl": 4.083690110575259, "rank": 0}
+{"month": "2505", "val_loss": 1.4231395721435547, "val_ppl": 4.150129639313753, "rank": 2}
+{"month": "2505", "val_loss": 1.391589879989624, "val_ppl": 4.021238259650132, "rank": 3}
+{"month": "2505", "val_loss": 1.4063525199890137, "val_ppl": 4.081042702033581, "rank": 0}
+{"month": "2505", "val_loss": 1.4384384155273438, "val_ppl": 4.214109987447828, "rank": 1}
+{"month": "2506", "val_loss": 1.4291367530822754, "val_ppl": 4.175093499251175, "rank": 2}
+{"month": "2506", "val_loss": 1.357244849205017, "val_ppl": 3.885473475871877, "rank": 3}
+{"month": "2506", "val_loss": 1.4066842794418335, "val_ppl": 4.082396851140804, "rank": 1}
+{"month": "2506", "val_loss": 1.4085280895233154, "val_ppl": 4.089930959209319, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2411_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2411_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..754979bbb79bf968610497dcea03ad1195c365ef
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2411_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.4872686862945557, "val_ppl": 4.424992954673992, "rank": 3}
+{"month": "2407", "val_loss": 1.3803930282592773, "val_ppl": 3.9764641832063625, "rank": 1}
+{"month": "2407", "val_loss": 1.380758285522461, "val_ppl": 3.9779168809191128, "rank": 0}
+{"month": "2407", "val_loss": 1.3626710176467896, "val_ppl": 3.906614013616793, "rank": 2}
+{"month": "2408", "val_loss": 1.3559932708740234, "val_ppl": 3.88061354339132, "rank": 1}
+{"month": "2408", "val_loss": 1.353184461593628, "val_ppl": 3.869728933609592, "rank": 3}
+{"month": "2408", "val_loss": 1.3515592813491821, "val_ppl": 3.8634450342130005, "rank": 0}
+{"month": "2408", "val_loss": 1.377118468284607, "val_ppl": 3.963464308801716, "rank": 2}
+{"month": "2409", "val_loss": 1.3564050197601318, "val_ppl": 3.8822117106944525, "rank": 1}
+{"month": "2409", "val_loss": 1.313551425933838, "val_ppl": 3.7193593136317187, "rank": 2}
+{"month": "2409", "val_loss": 1.3636155128479004, "val_ppl": 3.910305534842863, "rank": 3}
+{"month": "2409", "val_loss": 1.317995309829712, "val_ppl": 3.735924494197209, "rank": 0}
+{"month": "2410", "val_loss": 1.1867964267730713, "val_ppl": 3.2765676514970967, "rank": 1}
+{"month": "2410", "val_loss": 1.307090163230896, "val_ppl": 3.695405026826404, "rank": 3}
+{"month": "2410", "val_loss": 1.220895767211914, "val_ppl": 3.3902232246774173, "rank": 2}
+{"month": "2410", "val_loss": 1.3971407413482666, "val_ppl": 4.043621661827428, "rank": 0}
+{"month": "2411", "val_loss": 1.1956223249435425, "val_ppl": 3.305614296752107, "rank": 1}
+{"month": "2411", "val_loss": 1.1755108833312988, "val_ppl": 3.239797679744836, "rank": 3}
+{"month": "2411", "val_loss": 1.1895569562911987, "val_ppl": 3.2856252092930816, "rank": 2}
+{"month": "2411", "val_loss": 1.2081102132797241, "val_ppl": 3.3471532661552215, "rank": 0}
+{"month": "2412", "val_loss": 1.4345154762268066, "val_ppl": 4.197610673823818, "rank": 1}
+{"month": "2412", "val_loss": 1.3702863454818726, "val_ppl": 3.9364777267141564, "rank": 3}
+{"month": "2412", "val_loss": 1.366951823234558, "val_ppl": 3.9233733147773107, "rank": 2}
+{"month": "2412", "val_loss": 1.3812273740768433, "val_ppl": 3.979783313925192, "rank": 0}
+{"month": "2501", "val_loss": 1.2640061378479004, "val_ppl": 3.539573139623763, "rank": 1}
+{"month": "2501", "val_loss": 1.3158841133117676, "val_ppl": 3.7280455433470294, "rank": 3}
+{"month": "2501", "val_loss": 1.4420026540756226, "val_ppl": 4.229156880139874, "rank": 2}
+{"month": "2501", "val_loss": 1.3726694583892822, "val_ppl": 3.945869984554801, "rank": 0}
+{"month": "2502", "val_loss": 1.3292156457901, "val_ppl": 3.7780788730366375, "rank": 1}
+{"month": "2502", "val_loss": 1.3757652044296265, "val_ppl": 3.958104323367374, "rank": 3}
+{"month": "2502", "val_loss": 1.37555992603302, "val_ppl": 3.9572918934482804, "rank": 2}
+{"month": "2502", "val_loss": 1.3592376708984375, "val_ppl": 3.8932242520962257, "rank": 0}
+{"month": "2503", "val_loss": 1.382246494293213, "val_ppl": 3.9838412589728835, "rank": 1}
+{"month": "2503", "val_loss": 1.3877980709075928, "val_ppl": 4.006019363704648, "rank": 2}
+{"month": "2503", "val_loss": 1.3916492462158203, "val_ppl": 4.021476992476507, "rank": 3}
+{"month": "2503", "val_loss": 1.413512110710144, "val_ppl": 4.110366144158445, "rank": 0}
+{"month": "2504", "val_loss": 1.3709253072738647, "val_ppl": 3.938993789324889, "rank": 1}
+{"month": "2504", "val_loss": 1.3838448524475098, "val_ppl": 3.99021395570376, "rank": 3}
+{"month": "2504", "val_loss": 1.412560224533081, "val_ppl": 4.1064554050277025, "rank": 2}
+{"month": "2504", "val_loss": 1.4007281064987183, "val_ppl": 4.058153659465043, "rank": 0}
+{"month": "2505", "val_loss": 1.4315732717514038, "val_ppl": 4.1852785955573495, "rank": 1}
+{"month": "2505", "val_loss": 1.3883154392242432, "val_ppl": 4.008092487437342, "rank": 3}
+{"month": "2505", "val_loss": 1.4160114526748657, "val_ppl": 4.120652203588402, "rank": 2}
+{"month": "2505", "val_loss": 1.40048086643219, "val_ppl": 4.057150445306773, "rank": 0}
+{"month": "2506", "val_loss": 1.399654507637024, "val_ppl": 4.053799168222336, "rank": 1}
+{"month": "2506", "val_loss": 1.3464387655258179, "val_ppl": 3.843712765593928, "rank": 3}
+{"month": "2506", "val_loss": 1.41997492313385, "val_ppl": 4.137016695536668, "rank": 2}
+{"month": "2506", "val_loss": 1.4047600030899048, "val_ppl": 4.07454874480537, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2412_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2412_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..ec601e287562b80e769ac05e4a8383c36fa12597
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2412_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3782442808151245, "val_ppl": 3.967928939281734, "rank": 1}
+{"month": "2407", "val_loss": 1.3587948083877563, "val_ppl": 3.8915004707565366, "rank": 2}
+{"month": "2407", "val_loss": 1.484456181526184, "val_ppl": 4.412565125745221, "rank": 3}
+{"month": "2407", "val_loss": 1.3787559270858765, "val_ppl": 3.969959634780716, "rank": 0}
+{"month": "2408", "val_loss": 1.3571078777313232, "val_ppl": 3.8849413132902675, "rank": 3}
+{"month": "2408", "val_loss": 1.3691238164901733, "val_ppl": 3.9319041162241612, "rank": 1}
+{"month": "2408", "val_loss": 1.3808587789535522, "val_ppl": 3.9783166555220966, "rank": 2}
+{"month": "2408", "val_loss": 1.3539905548095703, "val_ppl": 3.8728495534367693, "rank": 0}
+{"month": "2409", "val_loss": 1.3734060525894165, "val_ppl": 3.94877756022013, "rank": 3}
+{"month": "2409", "val_loss": 1.3212684392929077, "val_ppl": 3.7481726927662833, "rank": 2}
+{"month": "2409", "val_loss": 1.3657238483428955, "val_ppl": 3.9185584677168284, "rank": 1}
+{"month": "2409", "val_loss": 1.3255603313446045, "val_ppl": 3.7642940160978116, "rank": 0}
+{"month": "2410", "val_loss": 1.3290104866027832, "val_ppl": 3.7773038449502105, "rank": 3}
+{"month": "2410", "val_loss": 1.2516566514968872, "val_ppl": 3.4961300316059427, "rank": 2}
+{"month": "2410", "val_loss": 1.2153445482254028, "val_ppl": 3.3714554932332, "rank": 1}
+{"month": "2410", "val_loss": 1.42904794216156, "val_ppl": 4.17472272181822, "rank": 0}
+{"month": "2411", "val_loss": 1.2613422870635986, "val_ppl": 3.5301567923799566, "rank": 3}
+{"month": "2411", "val_loss": 1.2760306596755981, "val_ppl": 3.582391734743703, "rank": 2}
+{"month": "2411", "val_loss": 1.285882830619812, "val_ppl": 3.617860505803003, "rank": 1}
+{"month": "2411", "val_loss": 1.2950170040130615, "val_ppl": 3.6510580562523245, "rank": 0}
+{"month": "2412", "val_loss": 1.1880321502685547, "val_ppl": 3.280619085839347, "rank": 3}
+{"month": "2412", "val_loss": 1.174311637878418, "val_ppl": 3.23591469589988, "rank": 2}
+{"month": "2412", "val_loss": 1.2153664827346802, "val_ppl": 3.3715294452660425, "rank": 1}
+{"month": "2412", "val_loss": 1.1955198049545288, "val_ppl": 3.3052754225817056, "rank": 0}
+{"month": "2501", "val_loss": 1.2543935775756836, "val_ppl": 3.5057117873616903, "rank": 1}
+{"month": "2501", "val_loss": 1.3072620630264282, "val_ppl": 3.6960403207968113, "rank": 3}
+{"month": "2501", "val_loss": 1.431100606918335, "val_ppl": 4.183300828995806, "rank": 2}
+{"month": "2501", "val_loss": 1.363690733909607, "val_ppl": 3.910599683239729, "rank": 0}
+{"month": "2502", "val_loss": 1.3675878047943115, "val_ppl": 3.925869301474164, "rank": 2}
+{"month": "2502", "val_loss": 1.3212547302246094, "val_ppl": 3.7481213091630554, "rank": 1}
+{"month": "2502", "val_loss": 1.3653277158737183, "val_ppl": 3.917006506886729, "rank": 3}
+{"month": "2502", "val_loss": 1.3507195711135864, "val_ppl": 3.860202221575138, "rank": 0}
+{"month": "2503", "val_loss": 1.373247504234314, "val_ppl": 3.948151537662026, "rank": 1}
+{"month": "2503", "val_loss": 1.3825314044952393, "val_ppl": 3.984976457697989, "rank": 3}
+{"month": "2503", "val_loss": 1.3770406246185303, "val_ppl": 3.963155790217819, "rank": 2}
+{"month": "2503", "val_loss": 1.4045662879943848, "val_ppl": 4.073759519650951, "rank": 0}
+{"month": "2504", "val_loss": 1.3610591888427734, "val_ppl": 3.9003222925742276, "rank": 1}
+{"month": "2504", "val_loss": 1.403161644935608, "val_ppl": 4.06804135854637, "rank": 2}
+{"month": "2504", "val_loss": 1.3903228044509888, "val_ppl": 4.016146273663006, "rank": 3}
+{"month": "2504", "val_loss": 1.392061710357666, "val_ppl": 4.023136049660439, "rank": 0}
+{"month": "2505", "val_loss": 1.4227709770202637, "val_ppl": 4.148600203656255, "rank": 1}
+{"month": "2505", "val_loss": 1.4052388668060303, "val_ppl": 4.076500365601742, "rank": 2}
+{"month": "2505", "val_loss": 1.3831570148468018, "val_ppl": 3.9874702802199122, "rank": 3}
+{"month": "2505", "val_loss": 1.3908045291900635, "val_ppl": 4.018081416744498, "rank": 0}
+{"month": "2506", "val_loss": 1.3897762298583984, "val_ppl": 4.013951749939784, "rank": 1}
+{"month": "2506", "val_loss": 1.4103389978408813, "val_ppl": 4.097344159488747, "rank": 2}
+{"month": "2506", "val_loss": 1.3398425579071045, "val_ppl": 3.8184422744947573, "rank": 3}
+{"month": "2506", "val_loss": 1.3940926790237427, "val_ppl": 4.031315215920382, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2501_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2501_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..c65e43369b152582e1ac751dffb12ed575c6b03b
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2501_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3783442974090576, "val_ppl": 3.9683258178661007, "rank": 1}
+{"month": "2407", "val_loss": 1.357728362083435, "val_ppl": 3.887352606591555, "rank": 2}
+{"month": "2407", "val_loss": 1.4858531951904297, "val_ppl": 4.418733847411226, "rank": 3}
+{"month": "2407", "val_loss": 1.3790404796600342, "val_ppl": 3.971089457753489, "rank": 0}
+{"month": "2408", "val_loss": 1.377319574356079, "val_ppl": 3.9642614656921378, "rank": 1}
+{"month": "2408", "val_loss": 1.3847516775131226, "val_ppl": 3.993834022871699, "rank": 2}
+{"month": "2408", "val_loss": 1.3561714887619019, "val_ppl": 3.881305199771634, "rank": 0}
+{"month": "2408", "val_loss": 1.360430121421814, "val_ppl": 3.8978694984560485, "rank": 3}
+{"month": "2409", "val_loss": 1.3282513618469238, "val_ppl": 3.774437488189944, "rank": 2}
+{"month": "2409", "val_loss": 1.3735781908035278, "val_ppl": 3.9494573542448554, "rank": 1}
+{"month": "2409", "val_loss": 1.380165696144104, "val_ppl": 3.9755603079365143, "rank": 3}
+{"month": "2409", "val_loss": 1.3311713933944702, "val_ppl": 3.7854750719333303, "rank": 0}
+{"month": "2410", "val_loss": 1.2320774793624878, "val_ppl": 3.428344458038245, "rank": 1}
+{"month": "2410", "val_loss": 1.2514721155166626, "val_ppl": 3.495484929347687, "rank": 2}
+{"month": "2410", "val_loss": 1.3410519361495972, "val_ppl": 3.8230630090464723, "rank": 3}
+{"month": "2410", "val_loss": 1.4509130716323853, "val_ppl": 4.26700882171809, "rank": 0}
+{"month": "2411", "val_loss": 1.3084417581558228, "val_ppl": 3.7004030944267363, "rank": 1}
+{"month": "2411", "val_loss": 1.2990156412124634, "val_ppl": 3.6656865403221652, "rank": 2}
+{"month": "2411", "val_loss": 1.2843645811080933, "val_ppl": 3.6123718584789755, "rank": 3}
+{"month": "2411", "val_loss": 1.3189146518707275, "val_ppl": 3.7393606659133263, "rank": 0}
+{"month": "2412", "val_loss": 1.294278860092163, "val_ppl": 3.64836404434983, "rank": 1}
+{"month": "2412", "val_loss": 1.2398717403411865, "val_ppl": 3.455170277380833, "rank": 2}
+{"month": "2412", "val_loss": 1.2651678323745728, "val_ppl": 3.5436874316794036, "rank": 3}
+{"month": "2412", "val_loss": 1.2743967771530151, "val_ppl": 3.576543306622572, "rank": 0}
+{"month": "2501", "val_loss": 1.0652884244918823, "val_ppl": 2.901675777739739, "rank": 1}
+{"month": "2501", "val_loss": 1.2210872173309326, "val_ppl": 3.3908723454524234, "rank": 2}
+{"month": "2501", "val_loss": 1.1067190170288086, "val_ppl": 3.0244190305731404, "rank": 3}
+{"month": "2501", "val_loss": 1.1719378232955933, "val_ppl": 3.228242344378744, "rank": 0}
+{"month": "2502", "val_loss": 1.3164821863174438, "val_ppl": 3.7302758536281435, "rank": 1}
+{"month": "2502", "val_loss": 1.363810658454895, "val_ppl": 3.91106868825059, "rank": 2}
+{"month": "2502", "val_loss": 1.3627955913543701, "val_ppl": 3.907100705322421, "rank": 3}
+{"month": "2502", "val_loss": 1.345758080482483, "val_ppl": 3.841097298059314, "rank": 0}
+{"month": "2503", "val_loss": 1.3666791915893555, "val_ppl": 3.922303824850782, "rank": 1}
+{"month": "2503", "val_loss": 1.3726155757904053, "val_ppl": 3.94565737655319, "rank": 2}
+{"month": "2503", "val_loss": 1.3766626119613647, "val_ppl": 3.9616579502858604, "rank": 3}
+{"month": "2503", "val_loss": 1.399308443069458, "val_ppl": 4.052396534681069, "rank": 0}
+{"month": "2504", "val_loss": 1.399798035621643, "val_ppl": 4.054381043603703, "rank": 2}
+{"month": "2504", "val_loss": 1.3561919927597046, "val_ppl": 3.8813847828608052, "rank": 1}
+{"month": "2504", "val_loss": 1.370149850845337, "val_ppl": 3.9359404552857864, "rank": 3}
+{"month": "2504", "val_loss": 1.3867660760879517, "val_ppl": 4.00188730497225, "rank": 0}
+{"month": "2505", "val_loss": 1.4181791543960571, "val_ppl": 4.1295942367914344, "rank": 1}
+{"month": "2505", "val_loss": 1.4010032415390015, "val_ppl": 4.05927035334938, "rank": 2}
+{"month": "2505", "val_loss": 1.3774075508117676, "val_ppl": 3.9646102427071694, "rank": 3}
+{"month": "2505", "val_loss": 1.3868693113327026, "val_ppl": 4.0023004621134675, "rank": 0}
+{"month": "2506", "val_loss": 1.3827481269836426, "val_ppl": 3.985840185303347, "rank": 1}
+{"month": "2506", "val_loss": 1.4075006246566772, "val_ppl": 4.085730856940013, "rank": 2}
+{"month": "2506", "val_loss": 1.3346399068832397, "val_ppl": 3.7986278403728155, "rank": 3}
+{"month": "2506", "val_loss": 1.3886206150054932, "val_ppl": 4.0093158468538554, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2502_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2502_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..3d6b6f7de010d995575c24a4253def59464d81ab
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2502_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.389784812927246, "val_ppl": 4.013986202111857, "rank": 1}
+{"month": "2407", "val_loss": 1.4970101118087769, "val_ppl": 4.468309333036476, "rank": 3}
+{"month": "2407", "val_loss": 1.3675390481948853, "val_ppl": 3.9256778941034565, "rank": 2}
+{"month": "2407", "val_loss": 1.3898423910140991, "val_ppl": 4.014217326411813, "rank": 0}
+{"month": "2408", "val_loss": 1.374636173248291, "val_ppl": 3.9536380219385396, "rank": 3}
+{"month": "2408", "val_loss": 1.3933799266815186, "val_ppl": 4.0284429103008685, "rank": 1}
+{"month": "2408", "val_loss": 1.3999831676483154, "val_ppl": 4.055131708867155, "rank": 2}
+{"month": "2408", "val_loss": 1.3687928915023804, "val_ppl": 3.9306031661728094, "rank": 0}
+{"month": "2409", "val_loss": 1.395447015762329, "val_ppl": 4.03677867306739, "rank": 3}
+{"month": "2409", "val_loss": 1.343111515045166, "val_ppl": 3.8309450229648916, "rank": 2}
+{"month": "2409", "val_loss": 1.3898648023605347, "val_ppl": 4.014307291435097, "rank": 1}
+{"month": "2409", "val_loss": 1.3465914726257324, "val_ppl": 3.8442997726421972, "rank": 0}
+{"month": "2410", "val_loss": 1.3588275909423828, "val_ppl": 3.891628046174411, "rank": 3}
+{"month": "2410", "val_loss": 1.255449891090393, "val_ppl": 3.50941687462372, "rank": 1}
+{"month": "2410", "val_loss": 1.2674424648284912, "val_ppl": 3.551757192508603, "rank": 2}
+{"month": "2410", "val_loss": 1.477976679801941, "val_ppl": 4.384066331106696, "rank": 0}
+{"month": "2411", "val_loss": 1.3067752122879028, "val_ppl": 3.6942413387904045, "rank": 3}
+{"month": "2411", "val_loss": 1.3318047523498535, "val_ppl": 3.787873395890325, "rank": 1}
+{"month": "2411", "val_loss": 1.3207299709320068, "val_ppl": 3.746154963650434, "rank": 2}
+{"month": "2411", "val_loss": 1.3419889211654663, "val_ppl": 3.8266468405366756, "rank": 0}
+{"month": "2412", "val_loss": 1.2993762493133545, "val_ppl": 3.667008654952229, "rank": 3}
+{"month": "2412", "val_loss": 1.3355236053466797, "val_ppl": 3.8019861656134113, "rank": 1}
+{"month": "2412", "val_loss": 1.2765796184539795, "val_ppl": 3.584358860020035, "rank": 2}
+{"month": "2412", "val_loss": 1.3083142042160034, "val_ppl": 3.6999311235346357, "rank": 0}
+{"month": "2501", "val_loss": 1.1876649856567383, "val_ppl": 3.2794147797090027, "rank": 3}
+{"month": "2501", "val_loss": 1.3005791902542114, "val_ppl": 3.6714225040613866, "rank": 2}
+{"month": "2501", "val_loss": 1.1361421346664429, "val_ppl": 3.1147289520533255, "rank": 1}
+{"month": "2501", "val_loss": 1.2662453651428223, "val_ppl": 3.547507928993338, "rank": 0}
+{"month": "2502", "val_loss": 1.2709853649139404, "val_ppl": 3.564363030796358, "rank": 3}
+{"month": "2502", "val_loss": 1.2623100280761719, "val_ppl": 3.5335747234580506, "rank": 2}
+{"month": "2502", "val_loss": 1.2210376262664795, "val_ppl": 3.3907041926528603, "rank": 1}
+{"month": "2502", "val_loss": 1.2513947486877441, "val_ppl": 3.4952145052242347, "rank": 0}
+{"month": "2503", "val_loss": 1.3833730220794678, "val_ppl": 3.988331695673115, "rank": 3}
+{"month": "2503", "val_loss": 1.3756709098815918, "val_ppl": 3.9577311133052415, "rank": 2}
+{"month": "2503", "val_loss": 1.3723313808441162, "val_ppl": 3.944536199990888, "rank": 1}
+{"month": "2503", "val_loss": 1.4046249389648438, "val_ppl": 4.073998456607068, "rank": 0}
+{"month": "2504", "val_loss": 1.374788522720337, "val_ppl": 3.954240402488857, "rank": 3}
+{"month": "2504", "val_loss": 1.361840009689331, "val_ppl": 3.9033689348146594, "rank": 1}
+{"month": "2504", "val_loss": 1.4049596786499023, "val_ppl": 4.075362413839933, "rank": 2}
+{"month": "2504", "val_loss": 1.3914070129394531, "val_ppl": 4.020502974903281, "rank": 0}
+{"month": "2505", "val_loss": 1.3854467868804932, "val_ppl": 3.9966111394007573, "rank": 3}
+{"month": "2505", "val_loss": 1.4217602014541626, "val_ppl": 4.144409018467501, "rank": 1}
+{"month": "2505", "val_loss": 1.4040462970733643, "val_ppl": 4.071641752343916, "rank": 2}
+{"month": "2505", "val_loss": 1.3897738456726074, "val_ppl": 4.013942179944464, "rank": 0}
+{"month": "2506", "val_loss": 1.3384960889816284, "val_ppl": 3.813304320452405, "rank": 3}
+{"month": "2506", "val_loss": 1.409783959388733, "val_ppl": 4.095070606941456, "rank": 2}
+{"month": "2506", "val_loss": 1.38762366771698, "val_ppl": 4.005320762066909, "rank": 1}
+{"month": "2506", "val_loss": 1.3930325508117676, "val_ppl": 4.0270437694691115, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2503_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2503_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..97f2b08e166a21a244aa2a1bd8222b0138d13bcb
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2503_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3750275373458862, "val_ppl": 3.9551856367358944, "rank": 1}
+{"month": "2407", "val_loss": 1.351642370223999, "val_ppl": 3.8637660568503303, "rank": 2}
+{"month": "2407", "val_loss": 1.4804177284240723, "val_ppl": 4.3947811225264575, "rank": 3}
+{"month": "2407", "val_loss": 1.3743596076965332, "val_ppl": 3.9525447330475427, "rank": 0}
+{"month": "2408", "val_loss": 1.386157512664795, "val_ppl": 3.999452643632908, "rank": 2}
+{"month": "2408", "val_loss": 1.4937636852264404, "val_ppl": 4.453826815773728, "rank": 1}
+{"month": "2408", "val_loss": 1.3591234683990479, "val_ppl": 3.892779661543111, "rank": 3}
+{"month": "2408", "val_loss": 1.3547393083572388, "val_ppl": 3.87575044917195, "rank": 0}
+{"month": "2409", "val_loss": 1.3781161308288574, "val_ppl": 3.96742048182276, "rank": 1}
+{"month": "2409", "val_loss": 1.3837770223617554, "val_ppl": 3.9899433083280873, "rank": 3}
+{"month": "2409", "val_loss": 1.3320260047912598, "val_ppl": 3.788711564846948, "rank": 2}
+{"month": "2409", "val_loss": 1.335019826889038, "val_ppl": 3.800071289264149, "rank": 0}
+{"month": "2410", "val_loss": 1.3475985527038574, "val_ppl": 3.8481732404763345, "rank": 3}
+{"month": "2410", "val_loss": 1.2578691244125366, "val_ppl": 3.5179172509190564, "rank": 2}
+{"month": "2410", "val_loss": 1.2470775842666626, "val_ppl": 3.480157614440563, "rank": 1}
+{"month": "2410", "val_loss": 1.4719674587249756, "val_ppl": 4.357800504924959, "rank": 0}
+{"month": "2411", "val_loss": 1.299828052520752, "val_ppl": 3.6686657955466195, "rank": 3}
+{"month": "2411", "val_loss": 1.3239314556121826, "val_ppl": 3.758167439995461, "rank": 1}
+{"month": "2411", "val_loss": 1.3137497901916504, "val_ppl": 3.7200971747617237, "rank": 2}
+{"month": "2411", "val_loss": 1.3354482650756836, "val_ppl": 3.8016997337354335, "rank": 0}
+{"month": "2412", "val_loss": 1.2984434366226196, "val_ppl": 3.663589617650467, "rank": 3}
+{"month": "2412", "val_loss": 1.339747428894043, "val_ppl": 3.8180790471267567, "rank": 1}
+{"month": "2412", "val_loss": 1.2780399322509766, "val_ppl": 3.5895969724297587, "rank": 2}
+{"month": "2412", "val_loss": 1.3083512783050537, "val_ppl": 3.700068297653377, "rank": 0}
+{"month": "2501", "val_loss": 1.1546884775161743, "val_ppl": 3.173034791866407, "rank": 1}
+{"month": "2501", "val_loss": 1.2086535692214966, "val_ppl": 3.3489724559594474, "rank": 3}
+{"month": "2501", "val_loss": 1.3222025632858276, "val_ppl": 3.751675586622086, "rank": 2}
+{"month": "2501", "val_loss": 1.28230619430542, "val_ppl": 3.6049438474017994, "rank": 0}
+{"month": "2502", "val_loss": 1.2521331310272217, "val_ppl": 3.4977962629324266, "rank": 1}
+{"month": "2502", "val_loss": 1.3050870895385742, "val_ppl": 3.688010266831799, "rank": 3}
+{"month": "2502", "val_loss": 1.302799940109253, "val_ppl": 3.6795848749925577, "rank": 2}
+{"month": "2502", "val_loss": 1.288698673248291, "val_ppl": 3.6280621880642956, "rank": 0}
+{"month": "2503", "val_loss": 1.214766502380371, "val_ppl": 3.3695072005491222, "rank": 1}
+{"month": "2503", "val_loss": 1.2219327688217163, "val_ppl": 3.3937407151254075, "rank": 3}
+{"month": "2503", "val_loss": 1.220775842666626, "val_ppl": 3.389816678076718, "rank": 2}
+{"month": "2503", "val_loss": 1.2361000776290894, "val_ppl": 3.4421630852718375, "rank": 0}
+{"month": "2504", "val_loss": 1.385560393333435, "val_ppl": 3.9970652060080525, "rank": 2}
+{"month": "2504", "val_loss": 1.3557701110839844, "val_ppl": 3.87974764310841, "rank": 3}
+{"month": "2504", "val_loss": 1.3426629304885864, "val_ppl": 3.8292269055797576, "rank": 1}
+{"month": "2504", "val_loss": 1.3721874952316284, "val_ppl": 3.943968678813817, "rank": 0}
+{"month": "2505", "val_loss": 1.40034818649292, "val_ppl": 4.056612178541471, "rank": 1}
+{"month": "2505", "val_loss": 1.384765863418579, "val_ppl": 3.9938906794254176, "rank": 2}
+{"month": "2505", "val_loss": 1.3612457513809204, "val_ppl": 3.9010500144814335, "rank": 3}
+{"month": "2505", "val_loss": 1.3702034950256348, "val_ppl": 3.9361516012485365, "rank": 0}
+{"month": "2506", "val_loss": 1.3674838542938232, "val_ppl": 3.925461226605585, "rank": 1}
+{"month": "2506", "val_loss": 1.3887150287628174, "val_ppl": 4.0096943992972545, "rank": 2}
+{"month": "2506", "val_loss": 1.3191498517990112, "val_ppl": 3.7402402667107433, "rank": 3}
+{"month": "2506", "val_loss": 1.3736218214035034, "val_ppl": 3.949629675198005, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2504_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2504_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..aa7dd8fe006acfc7a1c540a5300023cb6698076f
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2504_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3716778755187988, "val_ppl": 3.941959266689815, "rank": 1}
+{"month": "2407", "val_loss": 1.4776803255081177, "val_ppl": 4.382767286723264, "rank": 3}
+{"month": "2407", "val_loss": 1.347822904586792, "val_ppl": 3.849036682242465, "rank": 2}
+{"month": "2407", "val_loss": 1.3711199760437012, "val_ppl": 3.93976066304101, "rank": 0}
+{"month": "2408", "val_loss": 1.401880145072937, "val_ppl": 4.062831503031604, "rank": 1}
+{"month": "2408", "val_loss": 1.3588833808898926, "val_ppl": 3.8918451659553286, "rank": 3}
+{"month": "2408", "val_loss": 1.3827102184295654, "val_ppl": 3.985689090729046, "rank": 2}
+{"month": "2408", "val_loss": 1.353049874305725, "val_ppl": 3.8692081523335546, "rank": 0}
+{"month": "2409", "val_loss": 1.3835453987121582, "val_ppl": 3.989019250118325, "rank": 3}
+{"month": "2409", "val_loss": 1.332214593887329, "val_ppl": 3.789426141914834, "rank": 2}
+{"month": "2409", "val_loss": 1.377260446548462, "val_ppl": 3.964027074532436, "rank": 1}
+{"month": "2409", "val_loss": 1.3329232931137085, "val_ppl": 3.7921126571432198, "rank": 0}
+{"month": "2410", "val_loss": 1.3486977815628052, "val_ppl": 3.8524055892903113, "rank": 3}
+{"month": "2410", "val_loss": 1.2545320987701416, "val_ppl": 3.506197436381466, "rank": 1}
+{"month": "2410", "val_loss": 1.259204387664795, "val_ppl": 3.5226177340414995, "rank": 2}
+{"month": "2410", "val_loss": 1.478383183479309, "val_ppl": 4.385848832464249, "rank": 0}
+{"month": "2411", "val_loss": 1.3028100728988647, "val_ppl": 3.679622159640853, "rank": 3}
+{"month": "2411", "val_loss": 1.3172374963760376, "val_ppl": 3.733094432818327, "rank": 2}
+{"month": "2411", "val_loss": 1.3259265422821045, "val_ppl": 3.765672794184871, "rank": 1}
+{"month": "2411", "val_loss": 1.3385316133499146, "val_ppl": 3.8134397880856588, "rank": 0}
+{"month": "2412", "val_loss": 1.3043403625488281, "val_ppl": 3.6852573579906798, "rank": 3}
+{"month": "2412", "val_loss": 1.3489910364151, "val_ppl": 3.8535354915889473, "rank": 1}
+{"month": "2412", "val_loss": 1.286210298538208, "val_ppl": 3.6190454330541266, "rank": 2}
+{"month": "2412", "val_loss": 1.313018560409546, "val_ppl": 3.7173779232352304, "rank": 0}
+{"month": "2501", "val_loss": 1.169766902923584, "val_ppl": 3.2212416889896964, "rank": 1}
+{"month": "2501", "val_loss": 1.225522518157959, "val_ppl": 3.405945286174342, "rank": 3}
+{"month": "2501", "val_loss": 1.3390706777572632, "val_ppl": 3.8154960319191207, "rank": 2}
+{"month": "2501", "val_loss": 1.2922718524932861, "val_ppl": 3.64104909302623, "rank": 0}
+{"month": "2502", "val_loss": 1.2632309198379517, "val_ppl": 3.5368302620797953, "rank": 1}
+{"month": "2502", "val_loss": 1.312567114830017, "val_ppl": 3.715700108153944, "rank": 2}
+{"month": "2502", "val_loss": 1.31294584274292, "val_ppl": 3.7171076140149326, "rank": 3}
+{"month": "2502", "val_loss": 1.2959154844284058, "val_ppl": 3.6543399345420573, "rank": 0}
+{"month": "2503", "val_loss": 1.2550021409988403, "val_ppl": 3.5078458846285137, "rank": 1}
+{"month": "2503", "val_loss": 1.2640619277954102, "val_ppl": 3.539770617732025, "rank": 3}
+{"month": "2503", "val_loss": 1.2608894109725952, "val_ppl": 3.5285584307284013, "rank": 2}
+{"month": "2503", "val_loss": 1.2823632955551147, "val_ppl": 3.605149700077732, "rank": 0}
+{"month": "2504", "val_loss": 1.1968814134597778, "val_ppl": 3.3097789790538905, "rank": 3}
+{"month": "2504", "val_loss": 1.182829737663269, "val_ppl": 3.263596270003539, "rank": 1}
+{"month": "2504", "val_loss": 1.2168452739715576, "val_ppl": 3.37651892175237, "rank": 2}
+{"month": "2504", "val_loss": 1.2108113765716553, "val_ppl": 3.356206695581145, "rank": 0}
+{"month": "2505", "val_loss": 1.356763243675232, "val_ppl": 3.8836026608936436, "rank": 3}
+{"month": "2505", "val_loss": 1.377718210220337, "val_ppl": 3.965842077511006, "rank": 2}
+{"month": "2505", "val_loss": 1.3953715562820435, "val_ppl": 4.036474071339381, "rank": 1}
+{"month": "2505", "val_loss": 1.3636515140533447, "val_ppl": 3.910446313089851, "rank": 0}
+{"month": "2506", "val_loss": 1.312946081161499, "val_ppl": 3.717108500242554, "rank": 3}
+{"month": "2506", "val_loss": 1.382845401763916, "val_ppl": 3.986227925889962, "rank": 2}
+{"month": "2506", "val_loss": 1.361128807067871, "val_ppl": 3.9005938355416054, "rank": 1}
+{"month": "2506", "val_loss": 1.3666119575500488, "val_ppl": 3.9220401213862734, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2505_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2505_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..83ff112f004d8a10b2d2982e822efff2a1f8099d
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2505_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3652172088623047, "val_ppl": 3.9165736741199333, "rank": 1}
+{"month": "2407", "val_loss": 1.3433244228363037, "val_ppl": 3.8317607478417104, "rank": 2}
+{"month": "2407", "val_loss": 1.4723854064941406, "val_ppl": 4.359622218588521, "rank": 3}
+{"month": "2407", "val_loss": 1.3655695915222168, "val_ppl": 3.9179540499649335, "rank": 0}
+{"month": "2408", "val_loss": 1.35477876663208, "val_ppl": 3.8759033826156144, "rank": 3}
+{"month": "2408", "val_loss": 1.3801125288009644, "val_ppl": 3.9753489435763405, "rank": 2}
+{"month": "2408", "val_loss": 1.385939359664917, "val_ppl": 3.998580246202348, "rank": 1}
+{"month": "2408", "val_loss": 1.3476709127426147, "val_ppl": 3.848451704515873, "rank": 0}
+{"month": "2409", "val_loss": 1.3752022981643677, "val_ppl": 3.9558769086168772, "rank": 1}
+{"month": "2409", "val_loss": 1.3809441328048706, "val_ppl": 3.978656234662397, "rank": 3}
+{"month": "2409", "val_loss": 1.3283706903457642, "val_ppl": 3.7748879130231012, "rank": 2}
+{"month": "2409", "val_loss": 1.3296685218811035, "val_ppl": 3.7797902621225106, "rank": 0}
+{"month": "2410", "val_loss": 1.2533364295959473, "val_ppl": 3.5020076894629115, "rank": 1}
+{"month": "2410", "val_loss": 1.2572494745254517, "val_ppl": 3.515738049132549, "rank": 2}
+{"month": "2410", "val_loss": 1.3460733890533447, "val_ppl": 3.8423086199189527, "rank": 3}
+{"month": "2410", "val_loss": 1.4800992012023926, "val_ppl": 4.393381488028286, "rank": 0}
+{"month": "2411", "val_loss": 1.301889181137085, "val_ppl": 3.676235185665151, "rank": 3}
+{"month": "2411", "val_loss": 1.3251783847808838, "val_ppl": 3.7628565314721607, "rank": 1}
+{"month": "2411", "val_loss": 1.3162167072296143, "val_ppl": 3.729285674838866, "rank": 2}
+{"month": "2411", "val_loss": 1.3367761373519897, "val_ppl": 3.8067512585623304, "rank": 0}
+{"month": "2412", "val_loss": 1.3032184839248657, "val_ppl": 3.68112526482384, "rank": 3}
+{"month": "2412", "val_loss": 1.2887285947799683, "val_ppl": 3.6281707468660973, "rank": 2}
+{"month": "2412", "val_loss": 1.3526333570480347, "val_ppl": 3.8675968959458515, "rank": 1}
+{"month": "2412", "val_loss": 1.312622308731079, "val_ppl": 3.7159051977978863, "rank": 0}
+{"month": "2501", "val_loss": 1.2314767837524414, "val_ppl": 3.42628568498245, "rank": 3}
+{"month": "2501", "val_loss": 1.1755895614624023, "val_ppl": 3.240052590999271, "rank": 1}
+{"month": "2501", "val_loss": 1.3453058004379272, "val_ppl": 3.8393604392051124, "rank": 2}
+{"month": "2501", "val_loss": 1.2971463203430176, "val_ppl": 3.658840596597748, "rank": 0}
+{"month": "2502", "val_loss": 1.3109381198883057, "val_ppl": 3.7096521788333914, "rank": 3}
+{"month": "2502", "val_loss": 1.3125088214874268, "val_ppl": 3.71548351388764, "rank": 2}
+{"month": "2502", "val_loss": 1.2632075548171997, "val_ppl": 3.536747624932739, "rank": 1}
+{"month": "2502", "val_loss": 1.2943825721740723, "val_ppl": 3.6487424434023694, "rank": 0}
+{"month": "2503", "val_loss": 1.2815933227539062, "val_ppl": 3.6023749012612845, "rank": 3}
+{"month": "2503", "val_loss": 1.2694473266601562, "val_ppl": 3.5588851178043472, "rank": 1}
+{"month": "2503", "val_loss": 1.2766252756118774, "val_ppl": 3.584522515394461, "rank": 2}
+{"month": "2503", "val_loss": 1.3005294799804688, "val_ppl": 3.6712400011798563, "rank": 0}
+{"month": "2504", "val_loss": 1.2438342571258545, "val_ppl": 3.4688886092089977, "rank": 3}
+{"month": "2504", "val_loss": 1.2299442291259766, "val_ppl": 3.421038736648781, "rank": 1}
+{"month": "2504", "val_loss": 1.2697575092315674, "val_ppl": 3.5599891931651597, "rank": 2}
+{"month": "2504", "val_loss": 1.2601072788238525, "val_ppl": 3.525799710723447, "rank": 0}
+{"month": "2505", "val_loss": 1.1921498775482178, "val_ppl": 3.2941556313178153, "rank": 3}
+{"month": "2505", "val_loss": 1.2409684658050537, "val_ppl": 3.458961729316943, "rank": 1}
+{"month": "2505", "val_loss": 1.233127236366272, "val_ppl": 3.4319452763058815, "rank": 2}
+{"month": "2505", "val_loss": 1.2091745138168335, "val_ppl": 3.3507175395667828, "rank": 0}
+{"month": "2506", "val_loss": 1.299733281135559, "val_ppl": 3.668318127482118, "rank": 3}
+{"month": "2506", "val_loss": 1.370139479637146, "val_ppl": 3.935899635039575, "rank": 2}
+{"month": "2506", "val_loss": 1.347625970840454, "val_ppl": 3.8482787516623427, "rank": 1}
+{"month": "2506", "val_loss": 1.3548290729522705, "val_ppl": 3.8760983699567144, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/2506_full/ppl_metrics.jsonl b/out/eval/tinyllama_full_ppl/2506_full/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..726a2c5b398c81bd56714796047369811548cb7c
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/2506_full/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3618621826171875, "val_ppl": 3.903455484891979, "rank": 1}
+{"month": "2407", "val_loss": 1.466034173965454, "val_ppl": 4.332020987840148, "rank": 3}
+{"month": "2407", "val_loss": 1.3366416692733765, "val_ppl": 3.8062394064494893, "rank": 2}
+{"month": "2407", "val_loss": 1.36124849319458, "val_ppl": 3.9010607104483137, "rank": 0}
+{"month": "2408", "val_loss": 1.385949969291687, "val_ppl": 3.9986226698714193, "rank": 1}
+{"month": "2408", "val_loss": 1.3526601791381836, "val_ppl": 3.8677006343696885, "rank": 3}
+{"month": "2408", "val_loss": 1.3772622346878052, "val_ppl": 3.964034162771543, "rank": 2}
+{"month": "2408", "val_loss": 1.3442561626434326, "val_ppl": 3.835332615629164, "rank": 0}
+{"month": "2409", "val_loss": 1.3720901012420654, "val_ppl": 3.9435845786743022, "rank": 1}
+{"month": "2409", "val_loss": 1.3777810335159302, "val_ppl": 3.9660912326064075, "rank": 3}
+{"month": "2409", "val_loss": 1.326973557472229, "val_ppl": 3.769617575564065, "rank": 2}
+{"month": "2409", "val_loss": 1.3267178535461426, "val_ppl": 3.7686537927769215, "rank": 0}
+{"month": "2410", "val_loss": 1.2524324655532837, "val_ppl": 3.4988434308379883, "rank": 1}
+{"month": "2410", "val_loss": 1.253597378730774, "val_ppl": 3.5029216545836506, "rank": 2}
+{"month": "2410", "val_loss": 1.3430856466293335, "val_ppl": 3.830845923767781, "rank": 3}
+{"month": "2410", "val_loss": 1.4804177284240723, "val_ppl": 4.3947811225264575, "rank": 0}
+{"month": "2411", "val_loss": 1.323195219039917, "val_ppl": 3.7554015579781224, "rank": 1}
+{"month": "2411", "val_loss": 1.3000028133392334, "val_ppl": 3.669306990610039, "rank": 3}
+{"month": "2411", "val_loss": 1.314009428024292, "val_ppl": 3.7210631781294787, "rank": 2}
+{"month": "2411", "val_loss": 1.3349963426589966, "val_ppl": 3.7999820485636966, "rank": 0}
+{"month": "2412", "val_loss": 1.3537620306015015, "val_ppl": 3.871964614678416, "rank": 1}
+{"month": "2412", "val_loss": 1.3022390604019165, "val_ppl": 3.6775216491695883, "rank": 3}
+{"month": "2412", "val_loss": 1.2904226779937744, "val_ppl": 3.6343223792425356, "rank": 2}
+{"month": "2412", "val_loss": 1.3107351064682007, "val_ppl": 3.7088991460976284, "rank": 0}
+{"month": "2501", "val_loss": 1.179527759552002, "val_ppl": 3.252837718581718, "rank": 1}
+{"month": "2501", "val_loss": 1.2344462871551514, "val_ppl": 3.4364751733553267, "rank": 3}
+{"month": "2501", "val_loss": 1.3506817817687988, "val_ppl": 3.8600563498186538, "rank": 2}
+{"month": "2501", "val_loss": 1.298401951789856, "val_ppl": 3.6634376374003237, "rank": 0}
+{"month": "2502", "val_loss": 1.2634650468826294, "val_ppl": 3.5376584266406605, "rank": 1}
+{"month": "2502", "val_loss": 1.311538815498352, "val_ppl": 3.7118812200326206, "rank": 2}
+{"month": "2502", "val_loss": 1.3092021942138672, "val_ppl": 3.7032180845433813, "rank": 3}
+{"month": "2502", "val_loss": 1.2927899360656738, "val_ppl": 3.6429359494800457, "rank": 0}
+{"month": "2503", "val_loss": 1.2783737182617188, "val_ppl": 3.5907953296696737, "rank": 1}
+{"month": "2503", "val_loss": 1.282991886138916, "val_ppl": 3.607416575626065, "rank": 2}
+{"month": "2503", "val_loss": 1.2896969318389893, "val_ppl": 3.6316857406314456, "rank": 3}
+{"month": "2503", "val_loss": 1.3098281621932983, "val_ppl": 3.705536906163481, "rank": 0}
+{"month": "2504", "val_loss": 1.2505710124969482, "val_ppl": 3.4923365560398696, "rank": 1}
+{"month": "2504", "val_loss": 1.264019250869751, "val_ppl": 3.539619554428003, "rank": 3}
+{"month": "2504", "val_loss": 1.2903332710266113, "val_ppl": 3.6339974600261518, "rank": 2}
+{"month": "2504", "val_loss": 1.2804818153381348, "val_ppl": 3.598373059294661, "rank": 0}
+{"month": "2505", "val_loss": 1.283597707748413, "val_ppl": 3.6096026886724375, "rank": 1}
+{"month": "2505", "val_loss": 1.2304975986480713, "val_ppl": 3.4229323591077034, "rank": 3}
+{"month": "2505", "val_loss": 1.2728612422943115, "val_ppl": 3.5710556140514793, "rank": 2}
+{"month": "2505", "val_loss": 1.2519699335098267, "val_ppl": 3.497225477842584, "rank": 0}
+{"month": "2506", "val_loss": 1.2108864784240723, "val_ppl": 3.356458762386301, "rank": 1}
+{"month": "2506", "val_loss": 1.1685001850128174, "val_ppl": 3.2171638677172303, "rank": 3}
+{"month": "2506", "val_loss": 1.2257535457611084, "val_ppl": 3.406732244451307, "rank": 2}
+{"month": "2506", "val_loss": 1.2078310251235962, "val_ppl": 3.3462189110430756, "rank": 0}
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2407_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2407_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..078aa2c66d6b2f6ead5df7b3853ef5058481eab1
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2407_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 3] Seed set to 42
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2407_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2407_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2407_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.342 | val ppl: 3.826
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 28.86 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.438 | val ppl: 4.213
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.22 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.419 | val ppl: 4.132
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.35 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.575 | val ppl: 4.829
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.27 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.437 | val ppl: 4.208
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.37 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.424 | val ppl: 4.153
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.414 | val ppl: 4.112
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.405 | val ppl: 4.074
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.457 | val ppl: 4.293
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.78 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.446 | val ppl: 4.246
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.63 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.445 | val ppl: 4.243
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.49 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.444 | val ppl: 4.237
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2408_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2408_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d9b6db50d8326746263a928e82dcd953ce3ea2dd
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2408_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2408_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2408_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2408_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.373 | val ppl: 3.947
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.32 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.240 | val ppl: 3.456
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.29 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.413 | val ppl: 4.110
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.42 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.573 | val ppl: 4.823
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.34 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.433 | val ppl: 4.192
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.39 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.418 | val ppl: 4.127
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.407 | val ppl: 4.084
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.397 | val ppl: 4.044
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.451 | val ppl: 4.268
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.439 | val ppl: 4.217
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.439 | val ppl: 4.215
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.438 | val ppl: 4.213
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2409_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2409_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a2d194d542d402716476ee04a6e2cb0cc578ad02
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2409_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2409_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2409_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.05 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2409_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.380 | val ppl: 3.974
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 26.48 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.327 | val ppl: 3.768
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.39 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.214 | val ppl: 3.368
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.46 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.563 | val ppl: 4.775
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.38 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.419 | val ppl: 4.133
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.403 | val ppl: 4.065
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.392 | val ppl: 4.024
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.55 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.383 | val ppl: 3.987
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.436 | val ppl: 4.202
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.69 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.423 | val ppl: 4.150
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.79 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.423 | val ppl: 4.151
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.424 | val ppl: 4.152
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2410_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2410_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..79471cf96165eefed5d32edb4f09b1e651084f86
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2410_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2410_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2410_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2410_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.379 | val ppl: 3.970
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 39.76 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.344 | val ppl: 3.833
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.36 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.299 | val ppl: 3.664
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.48 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.328 | val ppl: 3.773
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.406 | val ppl: 4.080
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.388 | val ppl: 4.006
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.379 | val ppl: 3.971
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.57 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.367 | val ppl: 3.925
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.419 | val ppl: 4.134
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.91 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.407 | val ppl: 4.084
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.406 | val ppl: 4.081
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.409 | val ppl: 4.090
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.57 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2411_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2411_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9950b488d8a924eb04b2271288696a25c235f770
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2411_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2411_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2411_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.02 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2411_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.381 | val ppl: 3.978
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.20 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.352 | val ppl: 3.863
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.318 | val ppl: 3.736
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.48 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.397 | val ppl: 4.044
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.51 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.208 | val ppl: 3.347
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.35 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.381 | val ppl: 3.980
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.373 | val ppl: 3.946
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.46 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.359 | val ppl: 3.893
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.46 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.414 | val ppl: 4.110
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.401 | val ppl: 4.058
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.85 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.400 | val ppl: 4.057
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.405 | val ppl: 4.075
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2412_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2412_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fddba891e24463f8934e542f48e1e3d085dbee7d
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2412_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2412_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2412_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.03 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2412_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.379 | val ppl: 3.970
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.47 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.354 | val ppl: 3.873
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.32 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.326 | val ppl: 3.764
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.42 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.429 | val ppl: 4.175
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.35 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.295 | val ppl: 3.651
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.34 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.196 | val ppl: 3.305
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.364 | val ppl: 3.911
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.351 | val ppl: 3.860
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.405 | val ppl: 4.074
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.84 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.392 | val ppl: 4.023
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.71 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.391 | val ppl: 4.018
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.394 | val ppl: 4.031
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2501_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2501_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..51e05cbc5fb8b20424eaef1f2b3af57a3565814b
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2501_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2501_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2501_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2501_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.379 | val ppl: 3.971
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.13 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.356 | val ppl: 3.881
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.37 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.331 | val ppl: 3.785
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.451 | val ppl: 4.267
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.39 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.319 | val ppl: 3.739
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.34 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.274 | val ppl: 3.577
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.172 | val ppl: 3.228
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.346 | val ppl: 3.841
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.399 | val ppl: 4.052
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.69 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.387 | val ppl: 4.002
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.77 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.387 | val ppl: 4.002
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.48 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.389 | val ppl: 4.009
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2502_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2502_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e95b6ed5a4670a1d4d32c9a5d0e47e5d1f260905
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2502_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 1] Seed set to 42
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2502_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2502_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2502_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.390 | val ppl: 4.014
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.33 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.369 | val ppl: 3.931
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.35 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.347 | val ppl: 3.844
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.41 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.478 | val ppl: 4.384
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.31 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.342 | val ppl: 3.827
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.34 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.308 | val ppl: 3.700
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.266 | val ppl: 3.548
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.251 | val ppl: 3.495
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.405 | val ppl: 4.074
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.65 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.391 | val ppl: 4.021
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.71 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.390 | val ppl: 4.014
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.393 | val ppl: 4.027
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2503_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2503_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e6c42aad74112851e8d715ddb44e0644ee02b292
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2503_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 3] Seed set to 42
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2503_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2503_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2503_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.374 | val ppl: 3.953
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.00 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.355 | val ppl: 3.876
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.38 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.335 | val ppl: 3.800
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.51 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.472 | val ppl: 4.358
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.33 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.335 | val ppl: 3.802
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.308 | val ppl: 3.700
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.282 | val ppl: 3.605
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.289 | val ppl: 3.628
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.236 | val ppl: 3.442
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.372 | val ppl: 3.944
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.71 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.370 | val ppl: 3.936
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.374 | val ppl: 3.950
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.54 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2504_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2504_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2c4572058bad9e262dc0d479e96363aeb64cfa83
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2504_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2504_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2504_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2504_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.371 | val ppl: 3.940
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.01 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.353 | val ppl: 3.869
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.35 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.333 | val ppl: 3.792
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.478 | val ppl: 4.386
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.35 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.339 | val ppl: 3.813
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.41 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.313 | val ppl: 3.717
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.292 | val ppl: 3.641
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.296 | val ppl: 3.654
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.46 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.282 | val ppl: 3.605
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.74 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.211 | val ppl: 3.356
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.62 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.364 | val ppl: 3.910
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.46 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.367 | val ppl: 3.922
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.43 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2505_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2505_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..88cc217ccd910223b21928ede2ba4095913da527
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2505_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 1] Seed set to 42
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2505_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2505_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.02 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2505_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.366 | val ppl: 3.918
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.348 | val ppl: 3.848
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.31 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.330 | val ppl: 3.780
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.480 | val ppl: 4.393
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.36 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.337 | val ppl: 3.807
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.46 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.313 | val ppl: 3.716
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.51 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.297 | val ppl: 3.659
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.294 | val ppl: 3.649
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.301 | val ppl: 3.671
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.77 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.260 | val ppl: 3.526
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.73 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.209 | val ppl: 3.351
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.54 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.355 | val ppl: 3.876
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.59 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_full_ppl/teelogs/2506_full.txt b/out/eval/tinyllama_full_ppl/teelogs/2506_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2b365f1b904b7e325ff0ec2980ae97308e19c646
--- /dev/null
+++ b/out/eval/tinyllama_full_ppl/teelogs/2506_full.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 3] Seed set to 42
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2506_full/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_full_ppl/2506_full'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.02 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2506_full/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.361 | val ppl: 3.901
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.04 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.344 | val ppl: 3.835
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.327 | val ppl: 3.769
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.62 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.480 | val ppl: 4.395
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.335 | val ppl: 3.800
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.34 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.311 | val ppl: 3.709
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.47 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.298 | val ppl: 3.663
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.51 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.293 | val ppl: 3.643
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.310 | val ppl: 3.706
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.70 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.280 | val ppl: 3.598
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.73 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.252 | val ppl: 3.497
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.50 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.208 | val ppl: 3.346
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.44 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2407_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2407_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..0e6abc051d0c526f399a3c98caab124ce0d88bf1
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2407_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3750953674316406, "val_ppl": 3.955453926415762, "rank": 1}
+{"month": "2407", "val_loss": 1.4800548553466797, "val_ppl": 4.393186664086576, "rank": 3}
+{"month": "2407", "val_loss": 1.381713628768921, "val_ppl": 3.981718972808508, "rank": 0}
+{"month": "2407", "val_loss": 1.368841528892517, "val_ppl": 3.9307943451016594, "rank": 2}
+{"month": "2408", "val_loss": 1.430887222290039, "val_ppl": 4.182408272135705, "rank": 1}
+{"month": "2408", "val_loss": 1.4422876834869385, "val_ppl": 4.230362486044191, "rank": 3}
+{"month": "2408", "val_loss": 1.4243435859680176, "val_ppl": 4.155129462096676, "rank": 0}
+{"month": "2408", "val_loss": 1.4489446878433228, "val_ppl": 4.2586179716414865, "rank": 2}
+{"month": "2409", "val_loss": 1.4569498300552368, "val_ppl": 4.292845629984934, "rank": 1}
+{"month": "2409", "val_loss": 1.4572302103042603, "val_ppl": 4.294049427864377, "rank": 3}
+{"month": "2409", "val_loss": 1.4032644033432007, "val_ppl": 4.068459405476947, "rank": 2}
+{"month": "2409", "val_loss": 1.407649040222168, "val_ppl": 4.086337287996379, "rank": 0}
+{"month": "2410", "val_loss": 1.3465720415115356, "val_ppl": 3.8442250743400463, "rank": 1}
+{"month": "2410", "val_loss": 1.4371012449264526, "val_ppl": 4.208478769252463, "rank": 3}
+{"month": "2410", "val_loss": 1.338346242904663, "val_ppl": 3.8127329545692477, "rank": 2}
+{"month": "2410", "val_loss": 1.5572352409362793, "val_ppl": 4.745682422176978, "rank": 0}
+{"month": "2411", "val_loss": 1.4147425889968872, "val_ppl": 4.115426973431123, "rank": 1}
+{"month": "2411", "val_loss": 1.390373945236206, "val_ppl": 4.016351667788952, "rank": 3}
+{"month": "2411", "val_loss": 1.4134562015533447, "val_ppl": 4.11013634347723, "rank": 2}
+{"month": "2411", "val_loss": 1.4223836660385132, "val_ppl": 4.146993716363654, "rank": 0}
+{"month": "2412", "val_loss": 1.4636696577072144, "val_ppl": 4.321789954272724, "rank": 1}
+{"month": "2412", "val_loss": 1.4000083208084106, "val_ppl": 4.055233709527049, "rank": 2}
+{"month": "2412", "val_loss": 1.3968398571014404, "val_ppl": 4.042405182788126, "rank": 3}
+{"month": "2412", "val_loss": 1.4119924306869507, "val_ppl": 4.104124446733829, "rank": 0}
+{"month": "2501", "val_loss": 1.2946631908416748, "val_ppl": 3.6497664923221635, "rank": 1}
+{"month": "2501", "val_loss": 1.3443431854248047, "val_ppl": 3.835666391463703, "rank": 3}
+{"month": "2501", "val_loss": 1.4691357612609863, "val_ppl": 4.345477987341506, "rank": 2}
+{"month": "2501", "val_loss": 1.3999078273773193, "val_ppl": 4.054826205653775, "rank": 0}
+{"month": "2502", "val_loss": 1.3611980676651, "val_ppl": 3.900864002356052, "rank": 1}
+{"month": "2502", "val_loss": 1.4105862379074097, "val_ppl": 4.098357312372161, "rank": 3}
+{"month": "2502", "val_loss": 1.4022610187530518, "val_ppl": 4.0643792233421046, "rank": 2}
+{"month": "2502", "val_loss": 1.3924485445022583, "val_ppl": 4.024692637103963, "rank": 0}
+{"month": "2503", "val_loss": 1.4178121089935303, "val_ppl": 4.128078766352762, "rank": 1}
+{"month": "2503", "val_loss": 1.4301130771636963, "val_ppl": 4.1791717340921695, "rank": 2}
+{"month": "2503", "val_loss": 1.4248567819595337, "val_ppl": 4.157262405142952, "rank": 3}
+{"month": "2503", "val_loss": 1.4463696479797363, "val_ppl": 4.247665967575991, "rank": 0}
+{"month": "2504", "val_loss": 1.3996942043304443, "val_ppl": 4.053960093839191, "rank": 1}
+{"month": "2504", "val_loss": 1.4404526948928833, "val_ppl": 4.222606936981812, "rank": 2}
+{"month": "2504", "val_loss": 1.4176713228225708, "val_ppl": 4.127497630858708, "rank": 3}
+{"month": "2504", "val_loss": 1.4338065385818481, "val_ppl": 4.194635884193035, "rank": 0}
+{"month": "2505", "val_loss": 1.4676077365875244, "val_ppl": 4.338843060216009, "rank": 1}
+{"month": "2505", "val_loss": 1.4068015813827515, "val_ppl": 4.08287575230251, "rank": 3}
+{"month": "2505", "val_loss": 1.449688196182251, "val_ppl": 4.261785466999401, "rank": 2}
+{"month": "2505", "val_loss": 1.4365378618240356, "val_ppl": 4.206108451188253, "rank": 0}
+{"month": "2506", "val_loss": 1.4347667694091797, "val_ppl": 4.198665637315422, "rank": 1}
+{"month": "2506", "val_loss": 1.4550449848175049, "val_ppl": 4.2846762066440975, "rank": 2}
+{"month": "2506", "val_loss": 1.3848698139190674, "val_ppl": 3.9943058679395924, "rank": 3}
+{"month": "2506", "val_loss": 1.4314146041870117, "val_ppl": 4.184614580276527, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2408_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2408_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..3dd9ec1d695d01e582ef51e48b971e9c3a09a2d7
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2408_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3227208852767944, "val_ppl": 3.753620666626929, "rank": 2}
+{"month": "2407", "val_loss": 1.4279296398162842, "val_ppl": 4.170056729089114, "rank": 3}
+{"month": "2407", "val_loss": 1.3181066513061523, "val_ppl": 3.736340480704109, "rank": 1}
+{"month": "2407", "val_loss": 1.3277004957199097, "val_ppl": 3.772358851007139, "rank": 0}
+{"month": "2408", "val_loss": 1.366188645362854, "val_ppl": 3.9203802253561197, "rank": 1}
+{"month": "2408", "val_loss": 1.3756589889526367, "val_ppl": 3.957683933755029, "rank": 3}
+{"month": "2408", "val_loss": 1.3754336833953857, "val_ppl": 3.956792346014519, "rank": 2}
+{"month": "2408", "val_loss": 1.3488414287567139, "val_ppl": 3.8529590162911775, "rank": 0}
+{"month": "2409", "val_loss": 1.4458544254302979, "val_ppl": 4.245478037970748, "rank": 1}
+{"month": "2409", "val_loss": 1.4481844902038574, "val_ppl": 4.255381810528928, "rank": 3}
+{"month": "2409", "val_loss": 1.3935792446136475, "val_ppl": 4.029245931237027, "rank": 2}
+{"month": "2409", "val_loss": 1.3951737880706787, "val_ppl": 4.035675864014691, "rank": 0}
+{"month": "2410", "val_loss": 1.3266699314117432, "val_ppl": 3.768473195170705, "rank": 2}
+{"month": "2410", "val_loss": 1.3368455171585083, "val_ppl": 3.807015379390334, "rank": 1}
+{"month": "2410", "val_loss": 1.4222930669784546, "val_ppl": 4.146618019650024, "rank": 3}
+{"month": "2410", "val_loss": 1.5507054328918457, "val_ppl": 4.714794981199762, "rank": 0}
+{"month": "2411", "val_loss": 1.4015148878097534, "val_ppl": 4.061347795300039, "rank": 2}
+{"month": "2411", "val_loss": 1.379104733467102, "val_ppl": 3.9713446235669565, "rank": 3}
+{"month": "2411", "val_loss": 1.403332233428955, "val_ppl": 4.068735378786849, "rank": 1}
+{"month": "2411", "val_loss": 1.413369059562683, "val_ppl": 4.109778193619541, "rank": 0}
+{"month": "2412", "val_loss": 1.3856803178787231, "val_ppl": 3.9975445809792083, "rank": 2}
+{"month": "2412", "val_loss": 1.3849821090698242, "val_ppl": 3.994754434304644, "rank": 3}
+{"month": "2412", "val_loss": 1.4492928981781006, "val_ppl": 4.260101124640698, "rank": 1}
+{"month": "2412", "val_loss": 1.3997039794921875, "val_ppl": 4.053999722148495, "rank": 0}
+{"month": "2501", "val_loss": 1.457403540611267, "val_ppl": 4.29479378127765, "rank": 2}
+{"month": "2501", "val_loss": 1.2810173034667969, "val_ppl": 3.6003004613548155, "rank": 1}
+{"month": "2501", "val_loss": 1.3322408199310303, "val_ppl": 3.7895255248736395, "rank": 3}
+{"month": "2501", "val_loss": 1.3881651163101196, "val_ppl": 4.007490024577674, "rank": 0}
+{"month": "2502", "val_loss": 1.3904403448104858, "val_ppl": 4.016618360683901, "rank": 2}
+{"month": "2502", "val_loss": 1.3484450578689575, "val_ppl": 3.851432118134381, "rank": 1}
+{"month": "2502", "val_loss": 1.396274209022522, "val_ppl": 4.040119250639786, "rank": 3}
+{"month": "2502", "val_loss": 1.3792256116867065, "val_ppl": 3.971824701649396, "rank": 0}
+{"month": "2503", "val_loss": 1.4112811088562012, "val_ppl": 4.101206131472483, "rank": 2}
+{"month": "2503", "val_loss": 1.402437686920166, "val_ppl": 4.065097333201659, "rank": 1}
+{"month": "2503", "val_loss": 1.4098119735717773, "val_ppl": 4.095185328605928, "rank": 3}
+{"month": "2503", "val_loss": 1.4325181245803833, "val_ppl": 4.189234936664138, "rank": 0}
+{"month": "2504", "val_loss": 1.4288362264633179, "val_ppl": 4.173838961038519, "rank": 2}
+{"month": "2504", "val_loss": 1.385773777961731, "val_ppl": 3.9979182092869685, "rank": 1}
+{"month": "2504", "val_loss": 1.4029842615127563, "val_ppl": 4.06731981944232, "rank": 3}
+{"month": "2504", "val_loss": 1.4207879304885864, "val_ppl": 4.140381488152039, "rank": 0}
+{"month": "2505", "val_loss": 1.4352474212646484, "val_ppl": 4.200684218823102, "rank": 2}
+{"month": "2505", "val_loss": 1.453142523765564, "val_ppl": 4.276532526014629, "rank": 1}
+{"month": "2505", "val_loss": 1.393764615058899, "val_ppl": 4.029992903580487, "rank": 3}
+{"month": "2505", "val_loss": 1.419776439666748, "val_ppl": 4.136195647604395, "rank": 0}
+{"month": "2506", "val_loss": 1.4411321878433228, "val_ppl": 4.225477143660136, "rank": 2}
+{"month": "2506", "val_loss": 1.37090265750885, "val_ppl": 3.938904573051534, "rank": 3}
+{"month": "2506", "val_loss": 1.4195791482925415, "val_ppl": 4.135379692374203, "rank": 1}
+{"month": "2506", "val_loss": 1.4190099239349365, "val_ppl": 4.133026403363613, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2409_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2409_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..91811c74d5ddd402c65a41d24b69a91cda181d45
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2409_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.452871322631836, "val_ppl": 4.275372882800533, "rank": 3}
+{"month": "2407", "val_loss": 1.338930606842041, "val_ppl": 3.814961629325907, "rank": 2}
+{"month": "2407", "val_loss": 1.3448058366775513, "val_ppl": 3.8374413778930183, "rank": 1}
+{"month": "2407", "val_loss": 1.350124478340149, "val_ppl": 3.8579057265106527, "rank": 0}
+{"month": "2408", "val_loss": 1.257182002067566, "val_ppl": 3.5155008416476674, "rank": 3}
+{"month": "2408", "val_loss": 1.2655918598175049, "val_ppl": 3.545190371020853, "rank": 2}
+{"month": "2408", "val_loss": 1.2532492876052856, "val_ppl": 3.5017025308377976, "rank": 0}
+{"month": "2408", "val_loss": 1.2434561252593994, "val_ppl": 3.4675771598506957, "rank": 1}
+{"month": "2409", "val_loss": 1.3859233856201172, "val_ppl": 3.998516373212516, "rank": 3}
+{"month": "2409", "val_loss": 1.3307912349700928, "val_ppl": 3.7840362651990427, "rank": 2}
+{"month": "2409", "val_loss": 1.3868496417999268, "val_ppl": 4.00222173950757, "rank": 1}
+{"month": "2409", "val_loss": 1.3342934846878052, "val_ppl": 3.7973121392839024, "rank": 0}
+{"month": "2410", "val_loss": 1.4131667613983154, "val_ppl": 4.108946877124749, "rank": 3}
+{"month": "2410", "val_loss": 1.3190091848373413, "val_ppl": 3.7397141754792047, "rank": 2}
+{"month": "2410", "val_loss": 1.330273151397705, "val_ppl": 3.7820763259227337, "rank": 1}
+{"month": "2410", "val_loss": 1.5467290878295898, "val_ppl": 4.696084553667824, "rank": 0}
+{"month": "2411", "val_loss": 1.3711628913879395, "val_ppl": 3.939929742854114, "rank": 3}
+{"month": "2411", "val_loss": 1.3914109468460083, "val_ppl": 4.020518791217399, "rank": 2}
+{"month": "2411", "val_loss": 1.3949609994888306, "val_ppl": 4.034817209629953, "rank": 1}
+{"month": "2411", "val_loss": 1.406130075454712, "val_ppl": 4.080134997350977, "rank": 0}
+{"month": "2412", "val_loss": 1.3762993812561035, "val_ppl": 3.9602192157866662, "rank": 2}
+{"month": "2412", "val_loss": 1.3768502473831177, "val_ppl": 3.962401367389713, "rank": 3}
+{"month": "2412", "val_loss": 1.4412566423416138, "val_ppl": 4.226003056023491, "rank": 1}
+{"month": "2412", "val_loss": 1.390588402748108, "val_ppl": 4.017213096941224, "rank": 0}
+{"month": "2501", "val_loss": 1.3239425420761108, "val_ppl": 3.7582091050141795, "rank": 3}
+{"month": "2501", "val_loss": 1.2728440761566162, "val_ppl": 3.57099431334524, "rank": 1}
+{"month": "2501", "val_loss": 1.4494876861572266, "val_ppl": 4.2609310219540255, "rank": 2}
+{"month": "2501", "val_loss": 1.3802821636199951, "val_ppl": 3.976023358375467, "rank": 0}
+{"month": "2502", "val_loss": 1.3863879442214966, "val_ppl": 4.000374349922564, "rank": 3}
+{"month": "2502", "val_loss": 1.3401206731796265, "val_ppl": 3.8195043892968656, "rank": 1}
+{"month": "2502", "val_loss": 1.38284432888031, "val_ppl": 3.986223649133665, "rank": 2}
+{"month": "2502", "val_loss": 1.3703280687332153, "val_ppl": 3.9366419727901696, "rank": 0}
+{"month": "2503", "val_loss": 1.400020718574524, "val_ppl": 4.055283985677769, "rank": 3}
+{"month": "2503", "val_loss": 1.3924378156661987, "val_ppl": 4.024649457068105, "rank": 1}
+{"month": "2503", "val_loss": 1.4004995822906494, "val_ppl": 4.057226379070837, "rank": 2}
+{"month": "2503", "val_loss": 1.4227557182312012, "val_ppl": 4.1485369015238005, "rank": 0}
+{"month": "2504", "val_loss": 1.42097806930542, "val_ppl": 4.141168810237309, "rank": 2}
+{"month": "2504", "val_loss": 1.3942676782608032, "val_ppl": 4.0320207547400955, "rank": 3}
+{"month": "2504", "val_loss": 1.4111273288726807, "val_ppl": 4.100575496551928, "rank": 0}
+{"month": "2504", "val_loss": 1.3774535655975342, "val_ppl": 3.964792677595455, "rank": 1}
+{"month": "2505", "val_loss": 1.4258859157562256, "val_ppl": 4.16154298665355, "rank": 2}
+{"month": "2505", "val_loss": 1.3884754180908203, "val_ppl": 4.008733748823385, "rank": 3}
+{"month": "2505", "val_loss": 1.443034052848816, "val_ppl": 4.233521077584757, "rank": 1}
+{"month": "2505", "val_loss": 1.4110037088394165, "val_ppl": 4.100068614603669, "rank": 0}
+{"month": "2506", "val_loss": 1.4320613145828247, "val_ppl": 4.187321689291483, "rank": 2}
+{"month": "2506", "val_loss": 1.3624929189682007, "val_ppl": 3.90591831277675, "rank": 3}
+{"month": "2506", "val_loss": 1.4105150699615479, "val_ppl": 4.0980656510794224, "rank": 1}
+{"month": "2506", "val_loss": 1.4106030464172363, "val_ppl": 4.098426200230269, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2410_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2410_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..e0fbc9f1e2642c4f412b8e4c05c9f36ce1eb0598
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2410_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3549160957336426, "val_ppl": 3.876435693494943, "rank": 1}
+{"month": "2407", "val_loss": 1.3432323932647705, "val_ppl": 3.8314081287678086, "rank": 2}
+{"month": "2407", "val_loss": 1.4610623121261597, "val_ppl": 4.310536231880348, "rank": 3}
+{"month": "2407", "val_loss": 1.358065128326416, "val_ppl": 3.8886619561840163, "rank": 0}
+{"month": "2408", "val_loss": 1.3285906314849854, "val_ppl": 3.7757182574812296, "rank": 2}
+{"month": "2408", "val_loss": 1.3003768920898438, "val_ppl": 3.670679857148783, "rank": 1}
+{"month": "2408", "val_loss": 1.309700608253479, "val_ppl": 3.7050642804752294, "rank": 3}
+{"month": "2408", "val_loss": 1.311104655265808, "val_ppl": 3.710270018604058, "rank": 0}
+{"month": "2409", "val_loss": 1.2245824337005615, "val_ppl": 3.402744914493597, "rank": 2}
+{"month": "2409", "val_loss": 1.2712528705596924, "val_ppl": 3.565316645573587, "rank": 1}
+{"month": "2409", "val_loss": 1.2732475996017456, "val_ppl": 3.572435584046801, "rank": 3}
+{"month": "2409", "val_loss": 1.2327024936676025, "val_ppl": 3.43048789213609, "rank": 0}
+{"month": "2410", "val_loss": 1.2678050994873047, "val_ppl": 3.5530454163294825, "rank": 1}
+{"month": "2410", "val_loss": 1.3467144966125488, "val_ppl": 3.844772742819487, "rank": 3}
+{"month": "2410", "val_loss": 1.2590763568878174, "val_ppl": 3.522166759425947, "rank": 2}
+{"month": "2410", "val_loss": 1.4884552955627441, "val_ppl": 4.430246808845233, "rank": 0}
+{"month": "2411", "val_loss": 1.3826606273651123, "val_ppl": 3.9854914410653266, "rank": 1}
+{"month": "2411", "val_loss": 1.3767210245132446, "val_ppl": 3.961889367595184, "rank": 2}
+{"month": "2411", "val_loss": 1.357962965965271, "val_ppl": 3.8882647015894567, "rank": 3}
+{"month": "2411", "val_loss": 1.3934249877929688, "val_ppl": 4.028624440505766, "rank": 0}
+{"month": "2412", "val_loss": 1.3623082637786865, "val_ppl": 3.90519713127748, "rank": 2}
+{"month": "2412", "val_loss": 1.3640416860580444, "val_ppl": 3.911972357457635, "rank": 3}
+{"month": "2412", "val_loss": 1.4281649589538574, "val_ppl": 4.171038138709939, "rank": 1}
+{"month": "2412", "val_loss": 1.3767236471176147, "val_ppl": 3.961899758077178, "rank": 0}
+{"month": "2501", "val_loss": 1.4350579977035522, "val_ppl": 4.199888585617548, "rank": 2}
+{"month": "2501", "val_loss": 1.2601087093353271, "val_ppl": 3.525804754423998, "rank": 1}
+{"month": "2501", "val_loss": 1.311072826385498, "val_ppl": 3.7101519267430936, "rank": 3}
+{"month": "2501", "val_loss": 1.3668389320373535, "val_ppl": 3.9229304254663475, "rank": 0}
+{"month": "2502", "val_loss": 1.3253873586654663, "val_ppl": 3.763642952386524, "rank": 1}
+{"month": "2502", "val_loss": 1.3695443868637085, "val_ppl": 3.9335581063922778, "rank": 2}
+{"month": "2502", "val_loss": 1.372061848640442, "val_ppl": 3.9434731637241205, "rank": 3}
+{"month": "2502", "val_loss": 1.3558523654937744, "val_ppl": 3.880066782586063, "rank": 0}
+{"month": "2503", "val_loss": 1.3829333782196045, "val_ppl": 3.986578635521317, "rank": 2}
+{"month": "2503", "val_loss": 1.3773531913757324, "val_ppl": 3.96439473458778, "rank": 1}
+{"month": "2503", "val_loss": 1.3859219551086426, "val_ppl": 3.998510653293054, "rank": 3}
+{"month": "2503", "val_loss": 1.4078385829925537, "val_ppl": 4.087111897095135, "rank": 0}
+{"month": "2504", "val_loss": 1.3796013593673706, "val_ppl": 3.9733173859878224, "rank": 3}
+{"month": "2504", "val_loss": 1.3644613027572632, "val_ppl": 3.9136142308403596, "rank": 1}
+{"month": "2504", "val_loss": 1.4070398807525635, "val_ppl": 4.0838488149568075, "rank": 2}
+{"month": "2504", "val_loss": 1.3959028720855713, "val_ppl": 4.038619283646149, "rank": 0}
+{"month": "2505", "val_loss": 1.411854863166809, "val_ppl": 4.103559891344473, "rank": 2}
+{"month": "2505", "val_loss": 1.3755701780319214, "val_ppl": 3.9573324638083878, "rank": 3}
+{"month": "2505", "val_loss": 1.4273535013198853, "val_ppl": 4.167654890837496, "rank": 1}
+{"month": "2505", "val_loss": 1.3952076435089111, "val_ppl": 4.035812495902484, "rank": 0}
+{"month": "2506", "val_loss": 1.4181493520736694, "val_ppl": 4.12947116712655, "rank": 2}
+{"month": "2506", "val_loss": 1.3476482629776, "val_ppl": 3.8483645389762384, "rank": 3}
+{"month": "2506", "val_loss": 1.395691156387329, "val_ppl": 4.03776433505079, "rank": 1}
+{"month": "2506", "val_loss": 1.396349310874939, "val_ppl": 4.040422682473499, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2411_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2411_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..1ef9875d59e85d7db9818706e68302cc0792947f
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2411_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.4649038314819336, "val_ppl": 4.327127086891235, "rank": 3}
+{"month": "2407", "val_loss": 1.3594841957092285, "val_ppl": 3.894184146782407, "rank": 1}
+{"month": "2407", "val_loss": 1.3438565731048584, "val_ppl": 3.8338003629954556, "rank": 2}
+{"month": "2407", "val_loss": 1.3605494499206543, "val_ppl": 3.8983346531245266, "rank": 0}
+{"month": "2408", "val_loss": 1.3227370977401733, "val_ppl": 3.753681522557836, "rank": 1}
+{"month": "2408", "val_loss": 1.3275078535079956, "val_ppl": 3.7716322054474984, "rank": 3}
+{"month": "2408", "val_loss": 1.348891019821167, "val_ppl": 3.853150093367908, "rank": 2}
+{"month": "2408", "val_loss": 1.326955795288086, "val_ppl": 3.7695506195171835, "rank": 0}
+{"month": "2409", "val_loss": 1.3218450546264648, "val_ppl": 3.750334569839588, "rank": 1}
+{"month": "2409", "val_loss": 1.3301475048065186, "val_ppl": 3.781601150777468, "rank": 3}
+{"month": "2409", "val_loss": 1.2808130979537964, "val_ppl": 3.5995653352131085, "rank": 2}
+{"month": "2409", "val_loss": 1.2860162258148193, "val_ppl": 3.618343143200723, "rank": 0}
+{"month": "2410", "val_loss": 1.2389432191848755, "val_ppl": 3.451963567658926, "rank": 3}
+{"month": "2410", "val_loss": 1.1231809854507446, "val_ppl": 3.0746189824987433, "rank": 1}
+{"month": "2410", "val_loss": 1.1580681800842285, "val_ppl": 3.183776847953281, "rank": 2}
+{"month": "2410", "val_loss": 1.3271770477294922, "val_ppl": 3.7703847340662935, "rank": 0}
+{"month": "2411", "val_loss": 1.2940760850906372, "val_ppl": 3.647624322326272, "rank": 3}
+{"month": "2411", "val_loss": 1.3208073377609253, "val_ppl": 3.7464448029924395, "rank": 1}
+{"month": "2411", "val_loss": 1.3154544830322266, "val_ppl": 3.7264442061142127, "rank": 2}
+{"month": "2411", "val_loss": 1.3319696187973022, "val_ppl": 3.7884979406023103, "rank": 0}
+{"month": "2412", "val_loss": 1.4197264909744263, "val_ppl": 4.135989055200163, "rank": 1}
+{"month": "2412", "val_loss": 1.3558562994003296, "val_ppl": 3.8800820464362364, "rank": 3}
+{"month": "2412", "val_loss": 1.353025197982788, "val_ppl": 3.8691126756816883, "rank": 2}
+{"month": "2412", "val_loss": 1.3669838905334473, "val_ppl": 3.923499128779296, "rank": 0}
+{"month": "2501", "val_loss": 1.4260293245315552, "val_ppl": 4.162139831232099, "rank": 2}
+{"month": "2501", "val_loss": 1.250956416130066, "val_ppl": 3.493682774638743, "rank": 1}
+{"month": "2501", "val_loss": 1.302316665649414, "val_ppl": 3.6778070552217104, "rank": 3}
+{"month": "2501", "val_loss": 1.3580492734909058, "val_ppl": 3.888600302577101, "rank": 0}
+{"month": "2502", "val_loss": 1.3620703220367432, "val_ppl": 3.9042680324095165, "rank": 3}
+{"month": "2502", "val_loss": 1.3154250383377075, "val_ppl": 3.7263344837183006, "rank": 1}
+{"month": "2502", "val_loss": 1.3609896898269653, "val_ppl": 3.90005123343284, "rank": 2}
+{"month": "2502", "val_loss": 1.3453164100646973, "val_ppl": 3.839401173602496, "rank": 0}
+{"month": "2503", "val_loss": 1.3671129941940308, "val_ppl": 3.9240056995784864, "rank": 1}
+{"month": "2503", "val_loss": 1.3724151849746704, "val_ppl": 3.9448667822694548, "rank": 2}
+{"month": "2503", "val_loss": 1.3773585557937622, "val_ppl": 3.964416001315413, "rank": 3}
+{"month": "2503", "val_loss": 1.3978807926177979, "val_ppl": 4.046615256741999, "rank": 0}
+{"month": "2504", "val_loss": 1.3555444478988647, "val_ppl": 3.8788722256762638, "rank": 1}
+{"month": "2504", "val_loss": 1.3689898252487183, "val_ppl": 3.9313773108047907, "rank": 3}
+{"month": "2504", "val_loss": 1.3982093334197998, "val_ppl": 4.047944953381682, "rank": 2}
+{"month": "2504", "val_loss": 1.3860974311828613, "val_ppl": 3.9992123578095917, "rank": 0}
+{"month": "2505", "val_loss": 1.3661315441131592, "val_ppl": 3.920156373137155, "rank": 3}
+{"month": "2505", "val_loss": 1.4162366390228271, "val_ppl": 4.121580222694043, "rank": 1}
+{"month": "2505", "val_loss": 1.3851308822631836, "val_ppl": 3.9953487908895897, "rank": 0}
+{"month": "2505", "val_loss": 1.401400089263916, "val_ppl": 4.0608815852396285, "rank": 2}
+{"month": "2506", "val_loss": 1.3351737260818481, "val_ppl": 3.8006561621727677, "rank": 3}
+{"month": "2506", "val_loss": 1.4068570137023926, "val_ppl": 4.083102081849194, "rank": 2}
+{"month": "2506", "val_loss": 1.3851244449615479, "val_ppl": 3.995323071707064, "rank": 1}
+{"month": "2506", "val_loss": 1.3873159885406494, "val_ppl": 4.004088597839254, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2412_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2412_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..485a75b6d8e33facc034a86efc58ad8489d6c0b5
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2412_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.465067982673645, "val_ppl": 4.327837448260972, "rank": 3}
+{"month": "2407", "val_loss": 1.342684268951416, "val_ppl": 3.829308616267536, "rank": 2}
+{"month": "2407", "val_loss": 1.3601380586624146, "val_ppl": 3.8967312421637783, "rank": 1}
+{"month": "2407", "val_loss": 1.3609970808029175, "val_ppl": 3.900080058724242, "rank": 0}
+{"month": "2408", "val_loss": 1.3577550649642944, "val_ppl": 3.887456411491006, "rank": 2}
+{"month": "2408", "val_loss": 1.3356753587722778, "val_ppl": 3.8025631738184984, "rank": 1}
+{"month": "2408", "val_loss": 1.33494234085083, "val_ppl": 3.799776848202719, "rank": 3}
+{"month": "2408", "val_loss": 1.3332449197769165, "val_ppl": 3.793332497839777, "rank": 0}
+{"month": "2409", "val_loss": 1.3395699262619019, "val_ppl": 3.81740138819107, "rank": 1}
+{"month": "2409", "val_loss": 1.3476072549819946, "val_ppl": 3.848206728495904, "rank": 3}
+{"month": "2409", "val_loss": 1.296966552734375, "val_ppl": 3.6581829146900167, "rank": 2}
+{"month": "2409", "val_loss": 1.300864815711975, "val_ppl": 3.672471305569828, "rank": 0}
+{"month": "2410", "val_loss": 1.2088099718093872, "val_ppl": 3.3494962848813654, "rank": 2}
+{"month": "2410", "val_loss": 1.1757605075836182, "val_ppl": 3.240606512766277, "rank": 1}
+{"month": "2410", "val_loss": 1.2941738367080688, "val_ppl": 3.647980900931346, "rank": 3}
+{"month": "2410", "val_loss": 1.3837220668792725, "val_ppl": 3.9897240450934124, "rank": 0}
+{"month": "2411", "val_loss": 1.21558678150177, "val_ppl": 3.372272270864819, "rank": 1}
+{"month": "2411", "val_loss": 1.2083185911178589, "val_ppl": 3.3478508113906886, "rank": 2}
+{"month": "2411", "val_loss": 1.1939858198165894, "val_ppl": 3.3002090660579486, "rank": 3}
+{"month": "2411", "val_loss": 1.2263739109039307, "val_ppl": 3.408846318067683, "rank": 0}
+{"month": "2412", "val_loss": 1.3011510372161865, "val_ppl": 3.673522596274908, "rank": 3}
+{"month": "2412", "val_loss": 1.2969958782196045, "val_ppl": 3.658290194252053, "rank": 2}
+{"month": "2412", "val_loss": 1.3660446405410767, "val_ppl": 3.919815712347741, "rank": 1}
+{"month": "2412", "val_loss": 1.3129427433013916, "val_ppl": 3.717096093075083, "rank": 0}
+{"month": "2501", "val_loss": 1.4185575246810913, "val_ppl": 4.131157048181936, "rank": 2}
+{"month": "2501", "val_loss": 1.2949490547180176, "val_ppl": 3.6508099778597094, "rank": 3}
+{"month": "2501", "val_loss": 1.2428746223449707, "val_ppl": 3.465561339785661, "rank": 1}
+{"month": "2501", "val_loss": 1.3503974676132202, "val_ppl": 3.8589590371552225, "rank": 0}
+{"month": "2502", "val_loss": 1.3536323308944702, "val_ppl": 3.87146245456797, "rank": 3}
+{"month": "2502", "val_loss": 1.353484869003296, "val_ppl": 3.870891603483234, "rank": 2}
+{"month": "2502", "val_loss": 1.3075426816940308, "val_ppl": 3.6970776442463933, "rank": 1}
+{"month": "2502", "val_loss": 1.3370394706726074, "val_ppl": 3.8077538350121127, "rank": 0}
+{"month": "2503", "val_loss": 1.3692889213562012, "val_ppl": 3.932553346320554, "rank": 3}
+{"month": "2503", "val_loss": 1.3648812770843506, "val_ppl": 3.9152581935303354, "rank": 2}
+{"month": "2503", "val_loss": 1.3600552082061768, "val_ppl": 3.8964084095761273, "rank": 1}
+{"month": "2503", "val_loss": 1.3906490802764893, "val_ppl": 4.017456858898289, "rank": 0}
+{"month": "2504", "val_loss": 1.361696720123291, "val_ppl": 3.902809662843772, "rank": 3}
+{"month": "2504", "val_loss": 1.389792799949646, "val_ppl": 4.014018262037598, "rank": 2}
+{"month": "2504", "val_loss": 1.3482272624969482, "val_ppl": 3.850593385382815, "rank": 1}
+{"month": "2504", "val_loss": 1.3781108856201172, "val_ppl": 3.967399671928749, "rank": 0}
+{"month": "2505", "val_loss": 1.3626641035079956, "val_ppl": 3.9065870028386667, "rank": 3}
+{"month": "2505", "val_loss": 1.4086016416549683, "val_ppl": 4.090231793413045, "rank": 1}
+{"month": "2505", "val_loss": 1.3924981355667114, "val_ppl": 4.024892230844926, "rank": 2}
+{"month": "2505", "val_loss": 1.377371907234192, "val_ppl": 3.964468932332845, "rank": 0}
+{"month": "2506", "val_loss": 1.325461745262146, "val_ppl": 3.763922927389934, "rank": 3}
+{"month": "2506", "val_loss": 1.3970954418182373, "val_ppl": 4.04343849181532, "rank": 2}
+{"month": "2506", "val_loss": 1.381382703781128, "val_ppl": 3.9804015405036934, "rank": 0}
+{"month": "2506", "val_loss": 1.3762333393096924, "val_ppl": 3.9599576838375756, "rank": 1}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2501_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2501_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..58e42239a02edba09be32804eeb2fb3219747fa0
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2501_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.360434651374817, "val_ppl": 3.8978871556616808, "rank": 0}
+{"month": "2407", "val_loss": 1.3598315715789795, "val_ppl": 3.895537127370165, "rank": 1}
+{"month": "2407", "val_loss": 1.3400651216506958, "val_ppl": 3.819292215881616, "rank": 2}
+{"month": "2407", "val_loss": 1.4656460285186768, "val_ppl": 4.330339859900558, "rank": 3}
+{"month": "2408", "val_loss": 1.3368200063705444, "val_ppl": 3.806918260667008, "rank": 0}
+{"month": "2408", "val_loss": 1.3509457111358643, "val_ppl": 3.861075266503001, "rank": 1}
+{"month": "2408", "val_loss": 1.3633396625518799, "val_ppl": 3.909227024664061, "rank": 2}
+{"month": "2408", "val_loss": 1.3403332233428955, "val_ppl": 3.8203163118624976, "rank": 3}
+{"month": "2409", "val_loss": 1.3577533960342407, "val_ppl": 3.887449923603582, "rank": 3}
+{"month": "2409", "val_loss": 1.3060150146484375, "val_ppl": 3.6914340524264686, "rank": 2}
+{"month": "2409", "val_loss": 1.3497329950332642, "val_ppl": 3.8563957164103475, "rank": 1}
+{"month": "2409", "val_loss": 1.3094863891601562, "val_ppl": 3.7042706699706596, "rank": 0}
+{"month": "2410", "val_loss": 1.2270926237106323, "val_ppl": 3.4112971802000582, "rank": 2}
+{"month": "2410", "val_loss": 1.2036281824111938, "val_ppl": 3.33218479153523, "rank": 1}
+{"month": "2410", "val_loss": 1.3144885301589966, "val_ppl": 3.7228463745739933, "rank": 3}
+{"month": "2410", "val_loss": 1.4156075716018677, "val_ppl": 4.118988286189955, "rank": 0}
+{"month": "2411", "val_loss": 1.2510403394699097, "val_ppl": 3.4939759884691153, "rank": 3}
+{"month": "2411", "val_loss": 1.266231656074524, "val_ppl": 3.5474592962982054, "rank": 2}
+{"month": "2411", "val_loss": 1.2752403020858765, "val_ppl": 3.5795614828496545, "rank": 1}
+{"month": "2411", "val_loss": 1.2847002744674683, "val_ppl": 3.613584711285387, "rank": 0}
+{"month": "2412", "val_loss": 1.1808559894561768, "val_ppl": 3.2571611055032568, "rank": 2}
+{"month": "2412", "val_loss": 1.2029743194580078, "val_ppl": 3.3300067115073957, "rank": 3}
+{"month": "2412", "val_loss": 1.2248284816741943, "val_ppl": 3.403582255993463, "rank": 1}
+{"month": "2412", "val_loss": 1.210884928703308, "val_ppl": 3.3564535608164934, "rank": 0}
+{"month": "2501", "val_loss": 1.2460795640945435, "val_ppl": 3.476686079558268, "rank": 3}
+{"month": "2501", "val_loss": 1.3663723468780518, "val_ppl": 3.921100471296779, "rank": 2}
+{"month": "2501", "val_loss": 1.2939425706863403, "val_ppl": 3.6471373444477817, "rank": 0}
+{"month": "2501", "val_loss": 1.1927367448806763, "val_ppl": 3.296089431032308, "rank": 1}
+{"month": "2502", "val_loss": 1.3482334613800049, "val_ppl": 3.850617254834891, "rank": 2}
+{"month": "2502", "val_loss": 1.347117304801941, "val_ppl": 3.8463217607242504, "rank": 3}
+{"month": "2502", "val_loss": 1.3019829988479614, "val_ppl": 3.676580097814095, "rank": 1}
+{"month": "2502", "val_loss": 1.3309487104415894, "val_ppl": 3.7846322050157855, "rank": 0}
+{"month": "2503", "val_loss": 1.3841511011123657, "val_ppl": 3.991436140536868, "rank": 0}
+{"month": "2503", "val_loss": 1.3527668714523315, "val_ppl": 3.8681133103150853, "rank": 1}
+{"month": "2503", "val_loss": 1.356732964515686, "val_ppl": 3.8834850704493404, "rank": 2}
+{"month": "2503", "val_loss": 1.362162709236145, "val_ppl": 3.9046287534614925, "rank": 3}
+{"month": "2504", "val_loss": 1.3719680309295654, "val_ppl": 3.9431032134532127, "rank": 0}
+{"month": "2504", "val_loss": 1.341391921043396, "val_ppl": 3.824363013696038, "rank": 1}
+{"month": "2504", "val_loss": 1.3837215900421143, "val_ppl": 3.98972214264519, "rank": 2}
+{"month": "2504", "val_loss": 1.3551362752914429, "val_ppl": 3.877289299361611, "rank": 3}
+{"month": "2505", "val_loss": 1.4022718667984009, "val_ppl": 4.064423314151385, "rank": 1}
+{"month": "2505", "val_loss": 1.3598928451538086, "val_ppl": 3.895775828168789, "rank": 3}
+{"month": "2505", "val_loss": 1.3853353261947632, "val_ppl": 3.9961656992075594, "rank": 2}
+{"month": "2505", "val_loss": 1.371105670928955, "val_ppl": 3.93970430471576, "rank": 0}
+{"month": "2506", "val_loss": 1.3204576969146729, "val_ppl": 3.7451351218334397, "rank": 3}
+{"month": "2506", "val_loss": 1.368915319442749, "val_ppl": 3.931084411281173, "rank": 1}
+{"month": "2506", "val_loss": 1.39112389087677, "val_ppl": 4.019364842930741, "rank": 2}
+{"month": "2506", "val_loss": 1.373218297958374, "val_ppl": 3.9480362285426476, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2502_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2502_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..413eb58d046aed2ef858e74d1c8d2c71567254bc
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2502_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.464105486869812, "val_ppl": 4.323673926884699, "rank": 3}
+{"month": "2407", "val_loss": 1.338017225265503, "val_ppl": 3.811478704520297, "rank": 2}
+{"month": "2407", "val_loss": 1.3581032752990723, "val_ppl": 3.888810299694738, "rank": 1}
+{"month": "2407", "val_loss": 1.3589168787002563, "val_ppl": 3.8919755364302135, "rank": 0}
+{"month": "2408", "val_loss": 1.3419206142425537, "val_ppl": 3.826385462992975, "rank": 3}
+{"month": "2408", "val_loss": 1.351714849472046, "val_ppl": 3.864046109857653, "rank": 1}
+{"month": "2408", "val_loss": 1.3368998765945435, "val_ppl": 3.8072223322242036, "rank": 0}
+{"month": "2408", "val_loss": 1.3656268119812012, "val_ppl": 3.9181782435081196, "rank": 2}
+{"month": "2409", "val_loss": 1.3613544702529907, "val_ppl": 3.901474155294536, "rank": 3}
+{"month": "2409", "val_loss": 1.3545418977737427, "val_ppl": 3.8749854105301402, "rank": 1}
+{"month": "2409", "val_loss": 1.3099329471588135, "val_ppl": 3.705925211064311, "rank": 2}
+{"month": "2409", "val_loss": 1.3128083944320679, "val_ppl": 3.7165967389623917, "rank": 0}
+{"month": "2410", "val_loss": 1.3226364850997925, "val_ppl": 3.7533038737471434, "rank": 3}
+{"month": "2410", "val_loss": 1.2156107425689697, "val_ppl": 3.3723530750753907, "rank": 1}
+{"month": "2410", "val_loss": 1.234234094619751, "val_ppl": 3.435746056334782, "rank": 2}
+{"month": "2410", "val_loss": 1.4319961071014404, "val_ppl": 4.187048653492464, "rank": 0}
+{"month": "2411", "val_loss": 1.267875075340271, "val_ppl": 3.553294052412278, "rank": 3}
+{"month": "2411", "val_loss": 1.2819674015045166, "val_ppl": 3.603722725244017, "rank": 2}
+{"month": "2411", "val_loss": 1.291789174079895, "val_ppl": 3.639292061301684, "rank": 1}
+{"month": "2411", "val_loss": 1.3028209209442139, "val_ppl": 3.6796620765654184, "rank": 0}
+{"month": "2412", "val_loss": 1.2533451318740845, "val_ppl": 3.5020381650404673, "rank": 3}
+{"month": "2412", "val_loss": 1.2283886671066284, "val_ppl": 3.4157212356468913, "rank": 2}
+{"month": "2412", "val_loss": 1.282898187637329, "val_ppl": 3.607078581933328, "rank": 1}
+{"month": "2412", "val_loss": 1.2623647451400757, "val_ppl": 3.533768075581785, "rank": 0}
+{"month": "2501", "val_loss": 1.2244534492492676, "val_ppl": 3.4023060416124054, "rank": 2}
+{"month": "2501", "val_loss": 1.1160712242126465, "val_ppl": 3.0528367008015307, "rank": 3}
+{"month": "2501", "val_loss": 1.0699141025543213, "val_ppl": 2.9151290870798325, "rank": 1}
+{"month": "2501", "val_loss": 1.1918898820877075, "val_ppl": 3.293299277136382, "rank": 0}
+{"month": "2502", "val_loss": 1.2968597412109375, "val_ppl": 3.657792199466701, "rank": 3}
+{"month": "2502", "val_loss": 1.2940107583999634, "val_ppl": 3.647386042883561, "rank": 2}
+{"month": "2502", "val_loss": 1.2541671991348267, "val_ppl": 3.5049182596153496, "rank": 1}
+{"month": "2502", "val_loss": 1.280544400215149, "val_ppl": 3.598598270077349, "rank": 0}
+{"month": "2503", "val_loss": 1.3492790460586548, "val_ppl": 3.8546455068121768, "rank": 2}
+{"month": "2503", "val_loss": 1.344923734664917, "val_ppl": 3.837893831179248, "rank": 1}
+{"month": "2503", "val_loss": 1.3556362390518188, "val_ppl": 3.8792282881714635, "rank": 3}
+{"month": "2503", "val_loss": 1.376808762550354, "val_ppl": 3.9622369912412263, "rank": 0}
+{"month": "2504", "val_loss": 1.3769625425338745, "val_ppl": 3.962846350832897, "rank": 2}
+{"month": "2504", "val_loss": 1.3347396850585938, "val_ppl": 3.7990068794371754, "rank": 1}
+{"month": "2504", "val_loss": 1.3473577499389648, "val_ppl": 3.847246701281319, "rank": 3}
+{"month": "2504", "val_loss": 1.3639788627624512, "val_ppl": 3.911726602181529, "rank": 0}
+{"month": "2505", "val_loss": 1.393962025642395, "val_ppl": 4.030788545362538, "rank": 1}
+{"month": "2505", "val_loss": 1.3766095638275146, "val_ppl": 3.9614477972988067, "rank": 2}
+{"month": "2505", "val_loss": 1.3525390625, "val_ppl": 3.8672322198383227, "rank": 3}
+{"month": "2505", "val_loss": 1.3631576299667358, "val_ppl": 3.9085154827267203, "rank": 0}
+{"month": "2506", "val_loss": 1.3831663131713867, "val_ppl": 3.987507357185227, "rank": 2}
+{"month": "2506", "val_loss": 1.3599456548690796, "val_ppl": 3.8959815684135286, "rank": 1}
+{"month": "2506", "val_loss": 1.312598705291748, "val_ppl": 3.715817490690089, "rank": 3}
+{"month": "2506", "val_loss": 1.3656270503997803, "val_ppl": 3.9181791776747206, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2503_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2503_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..20fe8c6a284bb0bd1d3e64720fb1a129d0a0bd45
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2503_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.3410323858261108, "val_ppl": 3.8229882676585483, "rank": 2}
+{"month": "2407", "val_loss": 1.3626735210418701, "val_ppl": 3.906623793427338, "rank": 1}
+{"month": "2407", "val_loss": 1.4682371616363525, "val_ppl": 4.341574896373905, "rank": 3}
+{"month": "2407", "val_loss": 1.3629305362701416, "val_ppl": 3.9076279842740185, "rank": 0}
+{"month": "2408", "val_loss": 1.3594955205917358, "val_ppl": 3.8942282482100525, "rank": 1}
+{"month": "2408", "val_loss": 1.3713661432266235, "val_ppl": 3.9407306222059786, "rank": 2}
+{"month": "2408", "val_loss": 1.3467620611190796, "val_ppl": 3.844955621886964, "rank": 3}
+{"month": "2408", "val_loss": 1.3419054746627808, "val_ppl": 3.8263275335635307, "rank": 0}
+{"month": "2409", "val_loss": 1.3681225776672363, "val_ppl": 3.927969311343349, "rank": 3}
+{"month": "2409", "val_loss": 1.3170602321624756, "val_ppl": 3.7324327474178443, "rank": 2}
+{"month": "2409", "val_loss": 1.362459659576416, "val_ppl": 3.905788406469621, "rank": 1}
+{"month": "2409", "val_loss": 1.3199166059494019, "val_ppl": 3.743109211205694, "rank": 0}
+{"month": "2410", "val_loss": 1.330841064453125, "val_ppl": 3.784224826467829, "rank": 3}
+{"month": "2410", "val_loss": 1.2418090105056763, "val_ppl": 3.461870363515458, "rank": 2}
+{"month": "2410", "val_loss": 1.2280137538909912, "val_ppl": 3.4144408766414682, "rank": 1}
+{"month": "2410", "val_loss": 1.4475367069244385, "val_ppl": 4.252626137980186, "rank": 0}
+{"month": "2411", "val_loss": 1.2941584587097168, "val_ppl": 3.6479248027184035, "rank": 2}
+{"month": "2411", "val_loss": 1.2800424098968506, "val_ppl": 3.596792261923554, "rank": 3}
+{"month": "2411", "val_loss": 1.304128885269165, "val_ppl": 3.6844780921911635, "rank": 1}
+{"month": "2411", "val_loss": 1.3149549961090088, "val_ppl": 3.7245833607358128, "rank": 0}
+{"month": "2412", "val_loss": 1.2732584476470947, "val_ppl": 3.572474338200227, "rank": 3}
+{"month": "2412", "val_loss": 1.3082201480865479, "val_ppl": 3.699583138699214, "rank": 1}
+{"month": "2412", "val_loss": 1.2501435279846191, "val_ppl": 3.490843955304901, "rank": 2}
+{"month": "2412", "val_loss": 1.2821033000946045, "val_ppl": 3.6042124993604974, "rank": 0}
+{"month": "2501", "val_loss": 1.1140613555908203, "val_ppl": 3.0467070620567447, "rank": 1}
+{"month": "2501", "val_loss": 1.275017499923706, "val_ppl": 3.5787640376512098, "rank": 2}
+{"month": "2501", "val_loss": 1.1658474206924438, "val_ppl": 3.208640800039254, "rank": 3}
+{"month": "2501", "val_loss": 1.2435088157653809, "val_ppl": 3.4677598730593613, "rank": 0}
+{"month": "2502", "val_loss": 1.2570209503173828, "val_ppl": 3.5149347096738466, "rank": 2}
+{"month": "2502", "val_loss": 1.2095506191253662, "val_ppl": 3.3519779992387364, "rank": 1}
+{"month": "2502", "val_loss": 1.2636585235595703, "val_ppl": 3.5383429472544505, "rank": 3}
+{"month": "2502", "val_loss": 1.2454272508621216, "val_ppl": 3.4744189307495708, "rank": 0}
+{"month": "2503", "val_loss": 1.3052154779434204, "val_ppl": 3.688483794984126, "rank": 1}
+{"month": "2503", "val_loss": 1.3085711002349854, "val_ppl": 3.7008817432107564, "rank": 2}
+{"month": "2503", "val_loss": 1.3138184547424316, "val_ppl": 3.7203526223330874, "rank": 3}
+{"month": "2503", "val_loss": 1.3332726955413818, "val_ppl": 3.7934378620130538, "rank": 0}
+{"month": "2504", "val_loss": 1.3348702192306519, "val_ppl": 3.7995028120221965, "rank": 1}
+{"month": "2504", "val_loss": 1.3773003816604614, "val_ppl": 3.96418538155861, "rank": 2}
+{"month": "2504", "val_loss": 1.3471875190734863, "val_ppl": 3.8465918368862986, "rank": 3}
+{"month": "2504", "val_loss": 1.3637118339538574, "val_ppl": 3.9106821979366204, "rank": 0}
+{"month": "2505", "val_loss": 1.39271879196167, "val_ppl": 4.025780447046369, "rank": 1}
+{"month": "2505", "val_loss": 1.3504046201705933, "val_ppl": 3.8589866386798466, "rank": 3}
+{"month": "2505", "val_loss": 1.3760533332824707, "val_ppl": 3.959244931738703, "rank": 2}
+{"month": "2505", "val_loss": 1.361973524093628, "val_ppl": 3.9038901255852054, "rank": 0}
+{"month": "2506", "val_loss": 1.3119456768035889, "val_ppl": 3.713391748137568, "rank": 3}
+{"month": "2506", "val_loss": 1.381341814994812, "val_ppl": 3.9802387900430096, "rank": 2}
+{"month": "2506", "val_loss": 1.3592684268951416, "val_ppl": 3.8933439939298715, "rank": 1}
+{"month": "2506", "val_loss": 1.3649981021881104, "val_ppl": 3.9157156206940087, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2504_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2504_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..7b886d633b7053310e7401e5f460758b5901af3a
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2504_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.356481909751892, "val_ppl": 3.882510225397149, "rank": 1}
+{"month": "2407", "val_loss": 1.460983395576477, "val_ppl": 4.310196072655919, "rank": 3}
+{"month": "2407", "val_loss": 1.3335970640182495, "val_ppl": 3.7946685332591357, "rank": 2}
+{"month": "2407", "val_loss": 1.3559597730636597, "val_ppl": 3.8804835535119486, "rank": 0}
+{"month": "2408", "val_loss": 1.372115135192871, "val_ppl": 3.9436833034123726, "rank": 1}
+{"month": "2408", "val_loss": 1.3667670488357544, "val_ppl": 3.922648442802744, "rank": 2}
+{"month": "2408", "val_loss": 1.3419878482818604, "val_ppl": 3.826642734992217, "rank": 3}
+{"month": "2408", "val_loss": 1.3366848230361938, "val_ppl": 3.8064036635461918, "rank": 0}
+{"month": "2409", "val_loss": 1.3594273328781128, "val_ppl": 3.8939627187425074, "rank": 1}
+{"month": "2409", "val_loss": 1.3656580448150635, "val_ppl": 3.9183006212293336, "rank": 3}
+{"month": "2409", "val_loss": 1.3146697282791138, "val_ppl": 3.723521008457901, "rank": 2}
+{"month": "2409", "val_loss": 1.3166842460632324, "val_ppl": 3.7310296683740924, "rank": 0}
+{"month": "2410", "val_loss": 1.3299325704574585, "val_ppl": 3.780788442138351, "rank": 3}
+{"month": "2410", "val_loss": 1.2315729856491089, "val_ppl": 3.426615316019181, "rank": 1}
+{"month": "2410", "val_loss": 1.2413125038146973, "val_ppl": 3.460151948354285, "rank": 2}
+{"month": "2410", "val_loss": 1.4535961151123047, "val_ppl": 4.278472764166836, "rank": 0}
+{"month": "2411", "val_loss": 1.2825652360916138, "val_ppl": 3.6058777994562403, "rank": 3}
+{"month": "2411", "val_loss": 1.3059194087982178, "val_ppl": 3.6910811466055558, "rank": 1}
+{"month": "2411", "val_loss": 1.296887755393982, "val_ppl": 3.657894670962236, "rank": 2}
+{"month": "2411", "val_loss": 1.3182069063186646, "val_ppl": 3.736715086343485, "rank": 0}
+{"month": "2412", "val_loss": 1.2823463678359985, "val_ppl": 3.6050886736327583, "rank": 3}
+{"month": "2412", "val_loss": 1.3226853609085083, "val_ppl": 3.753487323992432, "rank": 1}
+{"month": "2412", "val_loss": 1.2618706226348877, "val_ppl": 3.532022392573674, "rank": 2}
+{"month": "2412", "val_loss": 1.2908992767333984, "val_ppl": 3.636054905534999, "rank": 0}
+{"month": "2501", "val_loss": 1.3066805601119995, "val_ppl": 3.6938916873572714, "rank": 2}
+{"month": "2501", "val_loss": 1.1408915519714355, "val_ppl": 3.1295572847349864, "rank": 1}
+{"month": "2501", "val_loss": 1.1956537961959839, "val_ppl": 3.3057183302111373, "rank": 3}
+{"month": "2501", "val_loss": 1.2655938863754272, "val_ppl": 3.545197555561766, "rank": 0}
+{"month": "2502", "val_loss": 1.2873002290725708, "val_ppl": 3.622992091577973, "rank": 2}
+{"month": "2502", "val_loss": 1.238358974456787, "val_ppl": 3.4499473651781543, "rank": 1}
+{"month": "2502", "val_loss": 1.2895877361297607, "val_ppl": 3.631289197782085, "rank": 3}
+{"month": "2502", "val_loss": 1.272734522819519, "val_ppl": 3.570603120430094, "rank": 0}
+{"month": "2503", "val_loss": 1.2124392986297607, "val_ppl": 3.3616747880990596, "rank": 2}
+{"month": "2503", "val_loss": 1.20689857006073, "val_ppl": 3.343100166548534, "rank": 1}
+{"month": "2503", "val_loss": 1.2141156196594238, "val_ppl": 3.3673147601223747, "rank": 3}
+{"month": "2503", "val_loss": 1.228868007659912, "val_ppl": 3.417358921827192, "rank": 0}
+{"month": "2504", "val_loss": 1.2947896718978882, "val_ppl": 3.650228147837768, "rank": 3}
+{"month": "2504", "val_loss": 1.3206188678741455, "val_ppl": 3.7457387774989552, "rank": 2}
+{"month": "2504", "val_loss": 1.2801324129104614, "val_ppl": 3.5971159986348806, "rank": 1}
+{"month": "2504", "val_loss": 1.3103479146957397, "val_ppl": 3.7074633688418794, "rank": 0}
+{"month": "2505", "val_loss": 1.3811291456222534, "val_ppl": 3.9793924051601586, "rank": 1}
+{"month": "2505", "val_loss": 1.339751124382019, "val_ppl": 3.818093156818038, "rank": 3}
+{"month": "2505", "val_loss": 1.3649084568023682, "val_ppl": 3.915364610590188, "rank": 2}
+{"month": "2505", "val_loss": 1.3503994941711426, "val_ppl": 3.8589668575671556, "rank": 0}
+{"month": "2506", "val_loss": 1.3697962760925293, "val_ppl": 3.9345490521092557, "rank": 2}
+{"month": "2506", "val_loss": 1.3481359481811523, "val_ppl": 3.850241787135641, "rank": 1}
+{"month": "2506", "val_loss": 1.3007241487503052, "val_ppl": 3.6719547465217013, "rank": 3}
+{"month": "2506", "val_loss": 1.3537240028381348, "val_ppl": 3.871817375323894, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2505_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2505_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..7ab4a0440b413a1f313118b2f36846983bcafe21
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2505_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.4575474262237549, "val_ppl": 4.295411784771217, "rank": 3}
+{"month": "2407", "val_loss": 1.352201223373413, "val_ppl": 3.86592593815182, "rank": 1}
+{"month": "2407", "val_loss": 1.3520671129226685, "val_ppl": 3.865407511845679, "rank": 0}
+{"month": "2407", "val_loss": 1.3300355672836304, "val_ppl": 3.781177871402963, "rank": 2}
+{"month": "2408", "val_loss": 1.3628829717636108, "val_ppl": 3.9074421242974444, "rank": 1}
+{"month": "2408", "val_loss": 1.3400084972381592, "val_ppl": 3.8190759568264148, "rank": 3}
+{"month": "2408", "val_loss": 1.3631829023361206, "val_ppl": 3.9086142614219264, "rank": 2}
+{"month": "2408", "val_loss": 1.3338117599487305, "val_ppl": 3.7954833206133856, "rank": 0}
+{"month": "2409", "val_loss": 1.3587754964828491, "val_ppl": 3.8914253191951613, "rank": 1}
+{"month": "2409", "val_loss": 1.3643890619277954, "val_ppl": 3.9133315183139237, "rank": 3}
+{"month": "2409", "val_loss": 1.313193440437317, "val_ppl": 3.7180280752373243, "rank": 2}
+{"month": "2409", "val_loss": 1.3145678043365479, "val_ppl": 3.7231415118567153, "rank": 0}
+{"month": "2410", "val_loss": 1.2352157831192017, "val_ppl": 3.4391205448025763, "rank": 1}
+{"month": "2410", "val_loss": 1.329819917678833, "val_ppl": 3.7803625498043765, "rank": 3}
+{"month": "2410", "val_loss": 1.2415363788604736, "val_ppl": 3.4609266767480573, "rank": 2}
+{"month": "2410", "val_loss": 1.4587942361831665, "val_ppl": 4.300770687036386, "rank": 0}
+{"month": "2411", "val_loss": 1.3070111274719238, "val_ppl": 3.695112969227048, "rank": 1}
+{"month": "2411", "val_loss": 1.2842785120010376, "val_ppl": 3.6120609582384082, "rank": 3}
+{"month": "2411", "val_loss": 1.2987346649169922, "val_ppl": 3.664656713982877, "rank": 2}
+{"month": "2411", "val_loss": 1.319348692893982, "val_ppl": 3.7409840541261308, "rank": 0}
+{"month": "2412", "val_loss": 1.3298938274383545, "val_ppl": 3.7806419658169945, "rank": 1}
+{"month": "2412", "val_loss": 1.285728096961975, "val_ppl": 3.6173007443214837, "rank": 3}
+{"month": "2412", "val_loss": 1.2678104639053345, "val_ppl": 3.553064476401498, "rank": 2}
+{"month": "2412", "val_loss": 1.2940407991409302, "val_ppl": 3.6474956147086828, "rank": 0}
+{"month": "2501", "val_loss": 1.1531809568405151, "val_ppl": 3.1682549800508752, "rank": 1}
+{"month": "2501", "val_loss": 1.2084121704101562, "val_ppl": 3.3481641155594986, "rank": 3}
+{"month": "2501", "val_loss": 1.319230318069458, "val_ppl": 3.7405412420045976, "rank": 2}
+{"month": "2501", "val_loss": 1.2748034000396729, "val_ppl": 3.577997906702967, "rank": 0}
+{"month": "2502", "val_loss": 1.245327115058899, "val_ppl": 3.474071034437937, "rank": 1}
+{"month": "2502", "val_loss": 1.2937572002410889, "val_ppl": 3.6464613356323117, "rank": 2}
+{"month": "2502", "val_loss": 1.2939183712005615, "val_ppl": 3.647049086667382, "rank": 3}
+{"month": "2502", "val_loss": 1.277478814125061, "val_ppl": 3.5875833494967933, "rank": 0}
+{"month": "2503", "val_loss": 1.2377700805664062, "val_ppl": 3.4479163103492523, "rank": 1}
+{"month": "2503", "val_loss": 1.2478617429733276, "val_ppl": 3.4828876805971722, "rank": 3}
+{"month": "2503", "val_loss": 1.2442184686660767, "val_ppl": 3.4702216523132745, "rank": 2}
+{"month": "2503", "val_loss": 1.26557457447052, "val_ppl": 3.5451290917047813, "rank": 0}
+{"month": "2504", "val_loss": 1.172600507736206, "val_ppl": 3.2303823593498877, "rank": 1}
+{"month": "2504", "val_loss": 1.1860157251358032, "val_ppl": 3.27401062803303, "rank": 3}
+{"month": "2504", "val_loss": 1.2075231075286865, "val_ppl": 3.3451887099806026, "rank": 2}
+{"month": "2504", "val_loss": 1.200887680053711, "val_ppl": 3.323065432778012, "rank": 0}
+{"month": "2505", "val_loss": 1.3315463066101074, "val_ppl": 3.7868945626415496, "rank": 1}
+{"month": "2505", "val_loss": 1.2758326530456543, "val_ppl": 3.5816824676512784, "rank": 3}
+{"month": "2505", "val_loss": 1.3189786672592163, "val_ppl": 3.7396000502011115, "rank": 2}
+{"month": "2505", "val_loss": 1.30096435546875, "val_ppl": 3.6728368806646734, "rank": 0}
+{"month": "2506", "val_loss": 1.291404366493225, "val_ppl": 3.637891903519334, "rank": 3}
+{"month": "2506", "val_loss": 1.3388832807540894, "val_ppl": 3.814781086388535, "rank": 1}
+{"month": "2506", "val_loss": 1.3606152534484863, "val_ppl": 3.898591185737655, "rank": 2}
+{"month": "2506", "val_loss": 1.3452956676483154, "val_ppl": 3.8393215359706376, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/2506_lr4e-5/ppl_metrics.jsonl b/out/eval/tinyllama_lr4e-5_ppl/2506_lr4e-5/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..d5a33d07ffa631ef480104d6811ad4146eaf4fc4
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/2506_lr4e-5/ppl_metrics.jsonl
@@ -0,0 +1,48 @@
+{"month": "2407", "val_loss": 1.452453851699829, "val_ppl": 4.273588411406859, "rank": 3}
+{"month": "2407", "val_loss": 1.3249921798706055, "val_ppl": 3.762155934338665, "rank": 2}
+{"month": "2407", "val_loss": 1.34760582447052, "val_ppl": 3.8482012235959595, "rank": 1}
+{"month": "2407", "val_loss": 1.347491979598999, "val_ppl": 3.84776315055873, "rank": 0}
+{"month": "2408", "val_loss": 1.3374072313308716, "val_ppl": 3.809154434595911, "rank": 3}
+{"month": "2408", "val_loss": 1.3618518114089966, "val_ppl": 3.9034150015524123, "rank": 2}
+{"month": "2408", "val_loss": 1.3618093729019165, "val_ppl": 3.9032493499622603, "rank": 1}
+{"month": "2408", "val_loss": 1.3297473192214966, "val_ppl": 3.780088111277116, "rank": 0}
+{"month": "2409", "val_loss": 1.3624857664108276, "val_ppl": 3.905890375571835, "rank": 3}
+{"month": "2409", "val_loss": 1.310767650604248, "val_ppl": 3.709019850980132, "rank": 2}
+{"month": "2409", "val_loss": 1.3566431999206543, "val_ppl": 3.8831364866301565, "rank": 1}
+{"month": "2409", "val_loss": 1.311659574508667, "val_ppl": 3.7123294902009443, "rank": 0}
+{"month": "2410", "val_loss": 1.2396279573440552, "val_ppl": 3.4543280682773143, "rank": 2}
+{"month": "2410", "val_loss": 1.3275914192199707, "val_ppl": 3.771947397747506, "rank": 3}
+{"month": "2410", "val_loss": 1.236013650894165, "val_ppl": 3.441865603210687, "rank": 1}
+{"month": "2410", "val_loss": 1.4610273838043213, "val_ppl": 4.310385674712915, "rank": 0}
+{"month": "2411", "val_loss": 1.2842575311660767, "val_ppl": 3.6119851749785754, "rank": 3}
+{"month": "2411", "val_loss": 1.298125982284546, "val_ppl": 3.6624267798171455, "rank": 2}
+{"month": "2411", "val_loss": 1.3067034482955933, "val_ppl": 3.693976234795952, "rank": 1}
+{"month": "2411", "val_loss": 1.3191540241241455, "val_ppl": 3.740255872241772, "rank": 0}
+{"month": "2412", "val_loss": 1.2720458507537842, "val_ppl": 3.5681449923224604, "rank": 2}
+{"month": "2412", "val_loss": 1.2859954833984375, "val_ppl": 3.6182680907990212, "rank": 3}
+{"month": "2412", "val_loss": 1.3341214656829834, "val_ppl": 3.7966589856077384, "rank": 1}
+{"month": "2412", "val_loss": 1.2946375608444214, "val_ppl": 3.6496729500157397, "rank": 0}
+{"month": "2501", "val_loss": 1.2152924537658691, "val_ppl": 3.371279863656142, "rank": 3}
+{"month": "2501", "val_loss": 1.3274351358413696, "val_ppl": 3.771357951125835, "rank": 2}
+{"month": "2501", "val_loss": 1.1594691276550293, "val_ppl": 3.188240278180246, "rank": 1}
+{"month": "2501", "val_loss": 1.2798991203308105, "val_ppl": 3.5962769160439327, "rank": 0}
+{"month": "2502", "val_loss": 1.294901728630066, "val_ppl": 3.6506372033940044, "rank": 2}
+{"month": "2502", "val_loss": 1.2934616804122925, "val_ppl": 3.645383893213334, "rank": 3}
+{"month": "2502", "val_loss": 1.246895670890808, "val_ppl": 3.4795245848004397, "rank": 1}
+{"month": "2502", "val_loss": 1.2767177820205688, "val_ppl": 3.5848541220368673, "rank": 0}
+{"month": "2503", "val_loss": 1.2647380828857422, "val_ppl": 3.542164861002482, "rank": 3}
+{"month": "2503", "val_loss": 1.259168028831482, "val_ppl": 3.5224896580988423, "rank": 2}
+{"month": "2503", "val_loss": 1.25327467918396, "val_ppl": 3.5017914457219432, "rank": 1}
+{"month": "2503", "val_loss": 1.283529281616211, "val_ppl": 3.609355705971797, "rank": 0}
+{"month": "2504", "val_loss": 1.254141092300415, "val_ppl": 3.504826758489127, "rank": 2}
+{"month": "2504", "val_loss": 1.2286570072174072, "val_ppl": 3.4166379336495756, "rank": 3}
+{"month": "2504", "val_loss": 1.2152169942855835, "val_ppl": 3.37102547822775, "rank": 1}
+{"month": "2504", "val_loss": 1.2448800802230835, "val_ppl": 3.472518350741154, "rank": 0}
+{"month": "2505", "val_loss": 1.1796128749847412, "val_ppl": 3.2531145970549145, "rank": 3}
+{"month": "2505", "val_loss": 1.2219434976577759, "val_ppl": 3.3937771262084926, "rank": 2}
+{"month": "2505", "val_loss": 1.2303227186203003, "val_ppl": 3.422333808940445, "rank": 1}
+{"month": "2505", "val_loss": 1.1991503238677979, "val_ppl": 3.3172970967702358, "rank": 0}
+{"month": "2506", "val_loss": 1.3135509490966797, "val_ppl": 3.7193575401034162, "rank": 2}
+{"month": "2506", "val_loss": 1.2467104196548462, "val_ppl": 3.4788800582720567, "rank": 3}
+{"month": "2506", "val_loss": 1.2932528257369995, "val_ppl": 3.644622617244788, "rank": 1}
+{"month": "2506", "val_loss": 1.2966184616088867, "val_ppl": 3.656909755282601, "rank": 0}
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2407_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2407_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d34a7a0d0e18731ebca60dee1fc4851348847c9a
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2407_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 1] Seed set to 42
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2407_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2407_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2407_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.382 | val ppl: 3.982
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.25 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.424 | val ppl: 4.155
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.45 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.408 | val ppl: 4.086
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.557 | val ppl: 4.746
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.55 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.422 | val ppl: 4.147
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.62 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.412 | val ppl: 4.104
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.74 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.400 | val ppl: 4.055
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.77 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.392 | val ppl: 4.025
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.74 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.446 | val ppl: 4.248
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.89 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.434 | val ppl: 4.195
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.99 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.437 | val ppl: 4.206
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.71 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.431 | val ppl: 4.185
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.76 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2408_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2408_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0133eb1099180b73d61912fe054caef850d8d40b
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2408_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2408_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2408_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2408_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.328 | val ppl: 3.772
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.47 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.349 | val ppl: 3.853
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.395 | val ppl: 4.036
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.551 | val ppl: 4.715
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.413 | val ppl: 4.110
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.59 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.400 | val ppl: 4.054
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.388 | val ppl: 4.007
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.75 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.379 | val ppl: 3.972
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.77 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.433 | val ppl: 4.189
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 23.03 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.421 | val ppl: 4.140
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.91 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.420 | val ppl: 4.136
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.73 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.419 | val ppl: 4.133
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.74 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2409_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2409_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d1c9ee62c1c503a68ba341d1ff41e55eec6fbe86
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2409_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2409_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2409_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2409_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.350 | val ppl: 3.858
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 30.29 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.253 | val ppl: 3.502
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.334 | val ppl: 3.797
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.71 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.547 | val ppl: 4.696
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.64 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.406 | val ppl: 4.080
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.59 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.391 | val ppl: 4.017
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.74 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.380 | val ppl: 3.976
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.68 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.370 | val ppl: 3.937
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.74 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.423 | val ppl: 4.149
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.88 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.411 | val ppl: 4.101
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 23.01 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.411 | val ppl: 4.100
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.78 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.411 | val ppl: 4.098
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.75 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2410_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2410_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0859bd1620e4fa2904f9d46887e4aa1d4e42d4db
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2410_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2410_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2410_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.02 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2410_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.358 | val ppl: 3.889
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.73 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.311 | val ppl: 3.710
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.51 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.233 | val ppl: 3.430
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.488 | val ppl: 4.430
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.57 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.393 | val ppl: 4.029
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.60 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.377 | val ppl: 3.962
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.69 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.367 | val ppl: 3.923
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.356 | val ppl: 3.880
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.69 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.408 | val ppl: 4.087
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.94 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.396 | val ppl: 4.039
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.90 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.395 | val ppl: 4.036
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.70 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.396 | val ppl: 4.040
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.70 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2411_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2411_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b497af91fbc7add3733e1c92882511185bd21c42
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2411_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2411_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2411_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2411_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.361 | val ppl: 3.898
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.327 | val ppl: 3.770
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.59 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.286 | val ppl: 3.618
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.327 | val ppl: 3.770
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.63 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.332 | val ppl: 3.788
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.63 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.367 | val ppl: 3.923
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.82 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.358 | val ppl: 3.889
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.77 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.345 | val ppl: 3.839
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 23.08 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.398 | val ppl: 4.047
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.96 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.386 | val ppl: 3.999
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.97 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.385 | val ppl: 3.995
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.70 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.387 | val ppl: 4.004
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.82 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2412_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2412_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ff6f33b0b7e05528f5ed1c778f8d03ced4479368
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2412_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2412_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2412_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.03 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2412_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.361 | val ppl: 3.900
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 26.42 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.333 | val ppl: 3.793
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.52 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.301 | val ppl: 3.672
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.65 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.384 | val ppl: 3.990
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.226 | val ppl: 3.409
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.58 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.313 | val ppl: 3.717
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.65 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.350 | val ppl: 3.859
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.76 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.337 | val ppl: 3.808
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.68 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.391 | val ppl: 4.017
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.94 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.378 | val ppl: 3.967
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.89 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.377 | val ppl: 3.964
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.41 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.381 | val ppl: 3.980
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.33 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2501_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2501_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..31b077e97a09e0cf16597ae71d9dcf944efff8da
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2501_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2501_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2501_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.02 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2501_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.360 | val ppl: 3.898
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 50.06 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.337 | val ppl: 3.807
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 48.30 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.309 | val ppl: 3.704
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 41.85 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.416 | val ppl: 4.119
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.285 | val ppl: 3.614
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.54 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.211 | val ppl: 3.356
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.294 | val ppl: 3.647
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 23.07 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.331 | val ppl: 3.785
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.48 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.384 | val ppl: 3.991
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 46.96 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.372 | val ppl: 3.943
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 48.82 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.371 | val ppl: 3.940
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 48.54 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.373 | val ppl: 3.948
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 44.07 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2502_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2502_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8a3cb39c1b6ec03205ffe630bc227cd00ca122eb
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2502_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2502_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2502_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2502_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.359 | val ppl: 3.892
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.30 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.337 | val ppl: 3.807
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.51 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.313 | val ppl: 3.717
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.79 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.432 | val ppl: 4.187
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.58 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.303 | val ppl: 3.680
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.57 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.262 | val ppl: 3.534
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.65 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.192 | val ppl: 3.293
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.69 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.281 | val ppl: 3.599
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.68 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.377 | val ppl: 3.962
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.88 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.364 | val ppl: 3.912
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.89 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.363 | val ppl: 3.909
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.68 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.366 | val ppl: 3.918
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2503_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2503_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8091afce85d95886ae7440f70271dc6942756463
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2503_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 3] Seed set to 42
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2503_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2503_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.02 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2503_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.363 | val ppl: 3.908
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.33 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.342 | val ppl: 3.826
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.49 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.320 | val ppl: 3.743
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.64 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.448 | val ppl: 4.253
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.57 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.315 | val ppl: 3.725
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.59 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.282 | val ppl: 3.604
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.244 | val ppl: 3.468
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.245 | val ppl: 3.474
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.64 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.333 | val ppl: 3.793
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.92 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.364 | val ppl: 3.911
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.87 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.362 | val ppl: 3.904
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.68 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.365 | val ppl: 3.916
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.65 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2504_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2504_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c0b0fbf2d8206154ca676d81c7bd9bb8fb73ff1b
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2504_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2504_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2504_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2504_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.356 | val ppl: 3.880
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.32 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.337 | val ppl: 3.806
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.317 | val ppl: 3.731
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.63 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.454 | val ppl: 4.278
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.57 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.318 | val ppl: 3.737
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.291 | val ppl: 3.636
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.266 | val ppl: 3.545
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.66 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.273 | val ppl: 3.571
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.229 | val ppl: 3.417
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.94 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.310 | val ppl: 3.707
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.99 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.350 | val ppl: 3.859
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.72 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.354 | val ppl: 3.872
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.70 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2505_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2505_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..494460ca73850a1b787847484f2343d239e40628
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2505_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2505_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2505_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2505_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.352 | val ppl: 3.865
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 25.33 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.334 | val ppl: 3.795
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.56 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.315 | val ppl: 3.723
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.73 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.459 | val ppl: 4.301
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.58 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.319 | val ppl: 3.741
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.58 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.294 | val ppl: 3.647
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.73 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.275 | val ppl: 3.578
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.71 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.277 | val ppl: 3.588
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.67 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.266 | val ppl: 3.545
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.95 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.201 | val ppl: 3.323
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.92 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.301 | val ppl: 3.673
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.71 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.345 | val ppl: 3.839
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.70 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/eval/tinyllama_lr4e-5_ppl/teelogs/2506_lr4e-5.txt b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2506_lr4e-5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e8fe255509bbebda9604fdc0e0bf352cb464a06f
--- /dev/null
+++ b/out/eval/tinyllama_lr4e-5_ppl/teelogs/2506_lr4e-5.txt
@@ -0,0 +1,253 @@
+Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
+Initializing distributed: GLOBAL_RANK: 2, MEMBER: 3/4
+[rank: 2] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 3, MEMBER: 4/4
+[rank: 3] Seed set to 42
+Initializing distributed: GLOBAL_RANK: 1, MEMBER: 2/4
+[rank: 1] Seed set to 42
+----------------------------------------------------------------------------------------------------
+distributed_backend=nccl
+All distributed processes registered. Starting with 4 processes
+----------------------------------------------------------------------------------------------------
+
+[rank: 0] Seed set to 42
+All GPUs are fully connected via NVLink.
+{'data': {'batch_size': 1,
+ 'data_path': None,
+ 'num_workers': 0,
+ 'ppl': True,
+ 'seed': 42,
+ 'seq_length': 2048,
+ 'use_starcoder': True},
+ 'data_dir': PosixPath('litgpt/data/arxiv_tinyllama_tokenized'),
+ 'devices': 'auto',
+ 'eval': {'evaluate_example': 'first',
+ 'final_validation': True,
+ 'initial_validation': False,
+ 'interval': 50,
+ 'max_iters': 200,
+ 'max_new_tokens': None},
+ 'initial_checkpoint_dir': PosixPath('out/pretrain/tinyllama/2506_lr4e-5/final'),
+ 'log': {'group': None, 'project': None, 'run': None},
+ 'logger_name': 'tensorboard',
+ 'model_config': {'attention_logit_softcapping': None,
+ 'attention_scores_scalar': None,
+ 'attn_bias': False,
+ 'bias': False,
+ 'block_size': 2048,
+ 'final_logit_softcapping': None,
+ 'gelu_approximate': 'none',
+ 'head_size': 64,
+ 'hf_config': {'name': 'TinyLlama-1.1B-intermediate-step-1431k-3T',
+ 'org': 'TinyLlama'},
+ 'intermediate_size': 5632,
+ 'lm_head_bias': False,
+ 'mlp_class_name': 'LLaMAMLP',
+ 'moe_intermediate_size': None,
+ 'n_embd': 2048,
+ 'n_expert': 0,
+ 'n_expert_per_token': 0,
+ 'n_head': 32,
+ 'n_layer': 22,
+ 'n_query_groups': 4,
+ 'name': 'tiny-llama-1.1b',
+ 'norm_1': True,
+ 'norm_2': True,
+ 'norm_class_name': 'RMSNorm',
+ 'norm_eps': 1e-05,
+ 'norm_qk': False,
+ 'norm_qk_type': 'default',
+ 'padded_vocab_size': 32000,
+ 'padding_multiple': 64,
+ 'parallel_residual': False,
+ 'post_attention_norm': False,
+ 'post_mlp_norm': False,
+ 'rope_adjustments': None,
+ 'rope_base': 10000,
+ 'rope_condense_ratio': 1,
+ 'rope_indices': None,
+ 'rope_local_base_freq': None,
+ 'rotary_percentage': 1.0,
+ 'scale_embeddings': False,
+ 'shared_attention_norm': False,
+ 'sliding_window_indices': None,
+ 'sliding_window_size': None,
+ 'vocab_size': 32000},
+ 'model_name': 'tiny-llama-1.1b',
+ 'multi_month': True,
+ 'num_nodes': 1,
+ 'optimizer': "{'class_path': 'torch.optim.AdamW', 'init_args': {'lr': 0.0004, "
+ "'weight_decay': 0.1, 'betas': [0.9, 0.95]}}",
+ 'out_dir': PosixPath('out/eval/tinyllama_lr4e-5_ppl/2506_lr4e-5'),
+ 'precision': 'bf16-mixed',
+ 'resume': False,
+ 'seed': 42,
+ 'tokenizer_dir': PosixPath('checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T'),
+ 'train': {'epochs': None,
+ 'global_batch_size': 512,
+ 'log_interval': 1,
+ 'lr_warmup_fraction': None,
+ 'lr_warmup_steps': 20,
+ 'max_norm': 1.0,
+ 'max_seq_length': 2048,
+ 'max_steps': None,
+ 'max_tokens': 209715200,
+ 'micro_batch_size': 4,
+ 'min_lr': 4e-05,
+ 'save_interval': 100,
+ 'tie_embeddings': None}}
+Time to instantiate model: 0.04 seconds.
+Total parameters: 1,100,048,384
+[ok] out/pretrain/tinyllama/2506_lr4e-5/final/lit_model.pth already 'model' only
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+/mnt/data/litgpt/litgpt/perplexity.py:461: UserWarning: A newer version of litdata is available (0.2.56). Please consider upgrading with `pip install -U litdata`. Not all functionalities of the platform can be guaranteed to work with the current version.
+ train_dataloader = data.train_dataloader()
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.347 | val ppl: 3.848
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 24.49 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.330 | val ppl: 3.780
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.53 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.312 | val ppl: 3.712
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.68 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.461 | val ppl: 4.310
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.62 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.319 | val ppl: 3.740
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.62 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.295 | val ppl: 3.650
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.69 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.280 | val ppl: 3.596
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.70 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.277 | val ppl: 3.585
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.68 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.284 | val ppl: 3.609
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.94 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.245 | val ppl: 3.473
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.91 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.199 | val ppl: 3.317
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.75 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
+Measured TFLOPs: 239.66
+Validating ...
+Final evaluation | val loss: 1.297 | val ppl: 3.657
+----------------------------------------
+| Performance
+| - Total tokens : 0
+| - Training Time : 22.75 s
+| - Tok/sec : 0.00 tok/s
+| ----------------------------------------
+| Memory Usage
+| - Memory Used : 4.26 GB
+----------------------------------------
diff --git a/out/finetune/tinyllama_full_arc/2503/final/config.json b/out/finetune/tinyllama_full_arc/2503/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2503/final/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/finetune/tinyllama_full_arc/2503/final/generation_config.json b/out/finetune/tinyllama_full_arc/2503/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2503/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/finetune/tinyllama_full_arc/2503/final/hyperparameters.yaml b/out/finetune/tinyllama_full_arc/2503/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..4af78bd2bb60d74fe6a0a7fd08d4ef04b399d3b4
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2503/final/hyperparameters.yaml
@@ -0,0 +1,43 @@
+checkpoint_dir: out/pretrain/tinyllama/2503_full/final
+out_dir: out/finetune/tinyllama_full_arc/2503
+precision: bf16-true
+devices: 1
+num_nodes: 1
+resume: false
+data:
+ class_path: litgpt.data.JSON
+ init_args:
+ json_path: litgpt/data/arc_finetune/train.json
+ mask_prompt: false
+ val_split_fraction: 0.02
+ prompt_style: default
+ ignore_index: -100
+ seed: 42
+ num_workers: 4
+train:
+ save_interval: 800
+ log_interval: 1
+ global_batch_size: 32
+ micro_batch_size: 4
+ lr_warmup_steps: 1000
+ epochs: 1
+ max_seq_length: 512
+ min_lr: 6.0e-05
+eval:
+ interval: 25
+ max_new_tokens: 100
+ max_iters: 100
+ initial_validation: false
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 0.0002
+ weight_decay: 0.0
+ betas:
+ - 0.9
+ - 0.95
+logger_name: csv
+seed: 1337
diff --git a/out/finetune/tinyllama_full_arc/2503/final/model_config.yaml b/out/finetune/tinyllama_full_arc/2503/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d31881309289cb59520314f7da89a8ef38f3c77e
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2503/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 64
+hf_config:
+ name: TinyLlama-1.1B-intermediate-step-1431k-3T
+ org: TinyLlama
+intermediate_size: 5632
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 2048
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 22
+n_query_groups: 4
+name: tiny-llama-1.1b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-05
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/finetune/tinyllama_full_arc/2503/final/prompt_style.yaml b/out/finetune/tinyllama_full_arc/2503/final/prompt_style.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..941ee04454a29d3bc5e7d95772771250ed72f339
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2503/final/prompt_style.yaml
@@ -0,0 +1 @@
+class_path: litgpt.prompts.Default
diff --git a/out/finetune/tinyllama_full_arc/2503/final/tokenizer.json b/out/finetune/tinyllama_full_arc/2503/final/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6e931b92caff4c79c5c56282f1e89569a0ae558
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2503/final/tokenizer.json
@@ -0,0 +1,93391 @@
+{
+ "version": "1.0",
+ "truncation": null,
+ "padding": null,
+ "added_tokens": [
+ {
+ "id": 0,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 1,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 2,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ }
+ ],
+ "normalizer": {
+ "type": "Sequence",
+ "normalizers": [
+ {
+ "type": "Prepend",
+ "prepend": "▁"
+ },
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": " "
+ },
+ "content": "▁"
+ }
+ ]
+ },
+ "pre_tokenizer": null,
+ "post_processor": {
+ "type": "TemplateProcessing",
+ "single": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ }
+ ],
+ "pair": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ },
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 1
+ }
+ },
+ {
+ "Sequence": {
+ "id": "B",
+ "type_id": 1
+ }
+ }
+ ],
+ "special_tokens": {
+ "": {
+ "id": "",
+ "ids": [
+ 1
+ ],
+ "tokens": [
+ ""
+ ]
+ }
+ }
+ },
+ "decoder": {
+ "type": "Sequence",
+ "decoders": [
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": "▁"
+ },
+ "content": " "
+ },
+ {
+ "type": "ByteFallback"
+ },
+ {
+ "type": "Fuse"
+ },
+ {
+ "type": "Strip",
+ "content": " ",
+ "start": 1,
+ "stop": 0
+ }
+ ]
+ },
+ "model": {
+ "type": "BPE",
+ "dropout": null,
+ "unk_token": "",
+ "continuing_subword_prefix": null,
+ "end_of_word_suffix": null,
+ "fuse_unk": true,
+ "byte_fallback": true,
+ "vocab": {
+ "": 0,
+ "": 1,
+ "": 2,
+ "<0x00>": 3,
+ "<0x01>": 4,
+ "<0x02>": 5,
+ "<0x03>": 6,
+ "<0x04>": 7,
+ "<0x05>": 8,
+ "<0x06>": 9,
+ "<0x07>": 10,
+ "<0x08>": 11,
+ "<0x09>": 12,
+ "<0x0A>": 13,
+ "<0x0B>": 14,
+ "<0x0C>": 15,
+ "<0x0D>": 16,
+ "<0x0E>": 17,
+ "<0x0F>": 18,
+ "<0x10>": 19,
+ "<0x11>": 20,
+ "<0x12>": 21,
+ "<0x13>": 22,
+ "<0x14>": 23,
+ "<0x15>": 24,
+ "<0x16>": 25,
+ "<0x17>": 26,
+ "<0x18>": 27,
+ "<0x19>": 28,
+ "<0x1A>": 29,
+ "<0x1B>": 30,
+ "<0x1C>": 31,
+ "<0x1D>": 32,
+ "<0x1E>": 33,
+ "<0x1F>": 34,
+ "<0x20>": 35,
+ "<0x21>": 36,
+ "<0x22>": 37,
+ "<0x23>": 38,
+ "<0x24>": 39,
+ "<0x25>": 40,
+ "<0x26>": 41,
+ "<0x27>": 42,
+ "<0x28>": 43,
+ "<0x29>": 44,
+ "<0x2A>": 45,
+ "<0x2B>": 46,
+ "<0x2C>": 47,
+ "<0x2D>": 48,
+ "<0x2E>": 49,
+ "<0x2F>": 50,
+ "<0x30>": 51,
+ "<0x31>": 52,
+ "<0x32>": 53,
+ "<0x33>": 54,
+ "<0x34>": 55,
+ "<0x35>": 56,
+ "<0x36>": 57,
+ "<0x37>": 58,
+ "<0x38>": 59,
+ "<0x39>": 60,
+ "<0x3A>": 61,
+ "<0x3B>": 62,
+ "<0x3C>": 63,
+ "<0x3D>": 64,
+ "<0x3E>": 65,
+ "<0x3F>": 66,
+ "<0x40>": 67,
+ "<0x41>": 68,
+ "<0x42>": 69,
+ "<0x43>": 70,
+ "<0x44>": 71,
+ "<0x45>": 72,
+ "<0x46>": 73,
+ "<0x47>": 74,
+ "<0x48>": 75,
+ "<0x49>": 76,
+ "<0x4A>": 77,
+ "<0x4B>": 78,
+ "<0x4C>": 79,
+ "<0x4D>": 80,
+ "<0x4E>": 81,
+ "<0x4F>": 82,
+ "<0x50>": 83,
+ "<0x51>": 84,
+ "<0x52>": 85,
+ "<0x53>": 86,
+ "<0x54>": 87,
+ "<0x55>": 88,
+ "<0x56>": 89,
+ "<0x57>": 90,
+ "<0x58>": 91,
+ "<0x59>": 92,
+ "<0x5A>": 93,
+ "<0x5B>": 94,
+ "<0x5C>": 95,
+ "<0x5D>": 96,
+ "<0x5E>": 97,
+ "<0x5F>": 98,
+ "<0x60>": 99,
+ "<0x61>": 100,
+ "<0x62>": 101,
+ "<0x63>": 102,
+ "<0x64>": 103,
+ "<0x65>": 104,
+ "<0x66>": 105,
+ "<0x67>": 106,
+ "<0x68>": 107,
+ "<0x69>": 108,
+ "<0x6A>": 109,
+ "<0x6B>": 110,
+ "<0x6C>": 111,
+ "<0x6D>": 112,
+ "<0x6E>": 113,
+ "<0x6F>": 114,
+ "<0x70>": 115,
+ "<0x71>": 116,
+ "<0x72>": 117,
+ "<0x73>": 118,
+ "<0x74>": 119,
+ "<0x75>": 120,
+ "<0x76>": 121,
+ "<0x77>": 122,
+ "<0x78>": 123,
+ "<0x79>": 124,
+ "<0x7A>": 125,
+ "<0x7B>": 126,
+ "<0x7C>": 127,
+ "<0x7D>": 128,
+ "<0x7E>": 129,
+ "<0x7F>": 130,
+ "<0x80>": 131,
+ "<0x81>": 132,
+ "<0x82>": 133,
+ "<0x83>": 134,
+ "<0x84>": 135,
+ "<0x85>": 136,
+ "<0x86>": 137,
+ "<0x87>": 138,
+ "<0x88>": 139,
+ "<0x89>": 140,
+ "<0x8A>": 141,
+ "<0x8B>": 142,
+ "<0x8C>": 143,
+ "<0x8D>": 144,
+ "<0x8E>": 145,
+ "<0x8F>": 146,
+ "<0x90>": 147,
+ "<0x91>": 148,
+ "<0x92>": 149,
+ "<0x93>": 150,
+ "<0x94>": 151,
+ "<0x95>": 152,
+ "<0x96>": 153,
+ "<0x97>": 154,
+ "<0x98>": 155,
+ "<0x99>": 156,
+ "<0x9A>": 157,
+ "<0x9B>": 158,
+ "<0x9C>": 159,
+ "<0x9D>": 160,
+ "<0x9E>": 161,
+ "<0x9F>": 162,
+ "<0xA0>": 163,
+ "<0xA1>": 164,
+ "<0xA2>": 165,
+ "<0xA3>": 166,
+ "<0xA4>": 167,
+ "<0xA5>": 168,
+ "<0xA6>": 169,
+ "<0xA7>": 170,
+ "<0xA8>": 171,
+ "<0xA9>": 172,
+ "<0xAA>": 173,
+ "<0xAB>": 174,
+ "<0xAC>": 175,
+ "<0xAD>": 176,
+ "<0xAE>": 177,
+ "<0xAF>": 178,
+ "<0xB0>": 179,
+ "<0xB1>": 180,
+ "<0xB2>": 181,
+ "<0xB3>": 182,
+ "<0xB4>": 183,
+ "<0xB5>": 184,
+ "<0xB6>": 185,
+ "<0xB7>": 186,
+ "<0xB8>": 187,
+ "<0xB9>": 188,
+ "<0xBA>": 189,
+ "<0xBB>": 190,
+ "<0xBC>": 191,
+ "<0xBD>": 192,
+ "<0xBE>": 193,
+ "<0xBF>": 194,
+ "<0xC0>": 195,
+ "<0xC1>": 196,
+ "<0xC2>": 197,
+ "<0xC3>": 198,
+ "<0xC4>": 199,
+ "<0xC5>": 200,
+ "<0xC6>": 201,
+ "<0xC7>": 202,
+ "<0xC8>": 203,
+ "<0xC9>": 204,
+ "<0xCA>": 205,
+ "<0xCB>": 206,
+ "<0xCC>": 207,
+ "<0xCD>": 208,
+ "<0xCE>": 209,
+ "<0xCF>": 210,
+ "<0xD0>": 211,
+ "<0xD1>": 212,
+ "<0xD2>": 213,
+ "<0xD3>": 214,
+ "<0xD4>": 215,
+ "<0xD5>": 216,
+ "<0xD6>": 217,
+ "<0xD7>": 218,
+ "<0xD8>": 219,
+ "<0xD9>": 220,
+ "<0xDA>": 221,
+ "<0xDB>": 222,
+ "<0xDC>": 223,
+ "<0xDD>": 224,
+ "<0xDE>": 225,
+ "<0xDF>": 226,
+ "<0xE0>": 227,
+ "<0xE1>": 228,
+ "<0xE2>": 229,
+ "<0xE3>": 230,
+ "<0xE4>": 231,
+ "<0xE5>": 232,
+ "<0xE6>": 233,
+ "<0xE7>": 234,
+ "<0xE8>": 235,
+ "<0xE9>": 236,
+ "<0xEA>": 237,
+ "<0xEB>": 238,
+ "<0xEC>": 239,
+ "<0xED>": 240,
+ "<0xEE>": 241,
+ "<0xEF>": 242,
+ "<0xF0>": 243,
+ "<0xF1>": 244,
+ "<0xF2>": 245,
+ "<0xF3>": 246,
+ "<0xF4>": 247,
+ "<0xF5>": 248,
+ "<0xF6>": 249,
+ "<0xF7>": 250,
+ "<0xF8>": 251,
+ "<0xF9>": 252,
+ "<0xFA>": 253,
+ "<0xFB>": 254,
+ "<0xFC>": 255,
+ "<0xFD>": 256,
+ "<0xFE>": 257,
+ "<0xFF>": 258,
+ "▁▁": 259,
+ "▁t": 260,
+ "er": 261,
+ "in": 262,
+ "▁a": 263,
+ "en": 264,
+ "on": 265,
+ "▁th": 266,
+ "es": 267,
+ "▁▁▁▁": 268,
+ "▁s": 269,
+ "▁d": 270,
+ "at": 271,
+ "or": 272,
+ "an": 273,
+ "▁c": 274,
+ "is": 275,
+ "re": 276,
+ "it": 277,
+ "▁the": 278,
+ "ar": 279,
+ "le": 280,
+ "▁w": 281,
+ "▁p": 282,
+ "ou": 283,
+ "al": 284,
+ "▁f": 285,
+ "▁m": 286,
+ "ed": 287,
+ "▁o": 288,
+ "▁b": 289,
+ "om": 290,
+ "ion": 291,
+ "ing": 292,
+ "ic": 293,
+ "as": 294,
+ "el": 295,
+ "ent": 296,
+ "▁in": 297,
+ "▁h": 298,
+ "nd": 299,
+ "et": 300,
+ "▁l": 301,
+ "▁n": 302,
+ "st": 303,
+ "▁to": 304,
+ "ch": 305,
+ "▁I": 306,
+ "ro": 307,
+ "▁▁▁▁▁▁▁▁": 308,
+ "il": 309,
+ "▁of": 310,
+ "de": 311,
+ "ct": 312,
+ "▁(": 313,
+ "am": 314,
+ "▁C": 315,
+ "▁de": 316,
+ "▁S": 317,
+ "▁u": 318,
+ "▁A": 319,
+ "▁\\": 320,
+ "▁e": 321,
+ "▁and": 322,
+ "▁T": 323,
+ "ol": 324,
+ "▁v": 325,
+ "im": 326,
+ "ot": 327,
+ "ad": 328,
+ "ut": 329,
+ "▁g": 330,
+ "em": 331,
+ "ur": 332,
+ "id": 333,
+ "▁*": 334,
+ "ig": 335,
+ "ra": 336,
+ "▁re": 337,
+ "▁is": 338,
+ "qu": 339,
+ "ow": 340,
+ "▁M": 341,
+ "est": 342,
+ "▁y": 343,
+ "se": 344,
+ "ve": 345,
+ "ce": 346,
+ "ie": 347,
+ "un": 348,
+ "▁P": 349,
+ "▁B": 350,
+ "ag": 351,
+ "ul": 352,
+ "▁=": 353,
+ "he": 354,
+ "end": 355,
+ "ode": 356,
+ "ter": 357,
+ "ment": 358,
+ "os": 359,
+ "▁D": 360,
+ "if": 361,
+ "ation": 362,
+ "▁for": 363,
+ "▁r": 364,
+ "▁L": 365,
+ "▁you": 366,
+ "▁be": 367,
+ "ly": 368,
+ "ver": 369,
+ "ab": 370,
+ "te": 371,
+ "▁it": 372,
+ "▁on": 373,
+ "ri": 374,
+ "us": 375,
+ "▁\"": 376,
+ "▁wh": 377,
+ "▁con": 378,
+ "▁H": 379,
+ "▁st": 380,
+ "ir": 381,
+ "▁E": 382,
+ "▁F": 383,
+ "ck": 384,
+ "▁an": 385,
+ "th": 386,
+ "eg": 387,
+ "ay": 388,
+ "ith": 389,
+ "▁R": 390,
+ "ist": 391,
+ "and": 392,
+ "▁that": 393,
+ "▁al": 394,
+ "▁$": 395,
+ "▁#": 396,
+ "od": 397,
+ "um": 398,
+ "▁W": 399,
+ "ht": 400,
+ "code": 401,
+ "▁G": 402,
+ "ate": 403,
+ "ess": 404,
+ "▁N": 405,
+ "ere": 406,
+ "pp": 407,
+ "▁as": 408,
+ "▁se": 409,
+ "▁pro": 410,
+ "▁with": 411,
+ "pe": 412,
+ "▁k": 413,
+ "ers": 414,
+ "pt": 415,
+ ");": 416,
+ "lo": 417,
+ "▁▁▁▁▁": 418,
+ "▁com": 419,
+ "ame": 420,
+ "▁`": 421,
+ "▁Com": 422,
+ "ia": 423,
+ "ant": 424,
+ "▁la": 425,
+ "▁{": 426,
+ "▁en": 427,
+ "ction": 428,
+ "▁ex": 429,
+ "ld": 430,
+ "ub": 431,
+ "▁j": 432,
+ "la": 433,
+ "ue": 434,
+ "▁J": 435,
+ "ich": 436,
+ "▁do": 437,
+ "▁O": 438,
+ "▁qu": 439,
+ "iv": 440,
+ "ort": 441,
+ "art": 442,
+ "▁un": 443,
+ "▁##": 444,
+ "▁this": 445,
+ "ke": 446,
+ "▁ha": 447,
+ "▁-": 448,
+ "out": 449,
+ "▁The": 450,
+ "▁not": 451,
+ "▁ne": 452,
+ "ill": 453,
+ "▁le": 454,
+ "ci": 455,
+ "rom": 456,
+ "ine": 457,
+ "//": 458,
+ "op": 459,
+ "egin": 460,
+ "▁Comment": 461,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 462,
+ "begin": 463,
+ "ст": 464,
+ "ass": 465,
+ "iz": 466,
+ ").": 467,
+ "og": 468,
+ "▁п": 469,
+ "▁or": 470,
+ "▁was": 471,
+ "▁at": 472,
+ "our": 473,
+ "▁i": 474,
+ "ain": 475,
+ "▁K": 476,
+ "на": 477,
+ "▁V": 478,
+ "ge": 479,
+ "▁su": 480,
+ "ap": 481,
+ "age": 482,
+ "ould": 483,
+ "ne": 484,
+ "av": 485,
+ "xt": 486,
+ "ore": 487,
+ "ile": 488,
+ "--": 489,
+ "▁в": 490,
+ "▁by": 491,
+ "li": 492,
+ "ath": 493,
+ "ра": 494,
+ "ber": 495,
+ "ach": 496,
+ "all": 497,
+ "▁Th": 498,
+ "ult": 499,
+ "▁}": 500,
+ "▁U": 501,
+ "▁us": 502,
+ "▁z": 503,
+ "ust": 504,
+ "▁have": 505,
+ "lic": 506,
+ "ни": 507,
+ "▁can": 508,
+ "tr": 509,
+ "com": 510,
+ "),": 511,
+ "▁In": 512,
+ "ind": 513,
+ "ell": 514,
+ "▁from": 515,
+ "ов": 516,
+ "to": 517,
+ "▁[": 518,
+ "able": 519,
+ "ost": 520,
+ "▁ch": 521,
+ "ect": 522,
+ "ight": 523,
+ "int": 524,
+ "▁'": 525,
+ "▁are": 526,
+ "▁im": 527,
+ "▁sh": 528,
+ "▁<": 529,
+ "▁An": 530,
+ "▁с": 531,
+ "ata": 532,
+ "ire": 533,
+ "▁tr": 534,
+ "con": 535,
+ "ord": 536,
+ "ity": 537,
+ "ard": 538,
+ "▁▁▁▁▁▁": 539,
+ "▁he": 540,
+ "▁but": 541,
+ "oc": 542,
+ "=\"": 543,
+ "▁pr": 544,
+ "ure": 545,
+ "per": 546,
+ "ack": 547,
+ "ork": 548,
+ "ong": 549,
+ "ans": 550,
+ "ко": 551,
+ "ple": 552,
+ "▁des": 553,
+ "ok": 554,
+ "orm": 555,
+ "wer": 556,
+ "ak": 557,
+ "pr": 558,
+ "ase": 559,
+ "▁el": 560,
+ "ph": 561,
+ "ac": 562,
+ "▁und": 563,
+ "▁ar": 564,
+ "▁if": 565,
+ "ud": 566,
+ "ps": 567,
+ "ite": 568,
+ "ble": 569,
+ "но": 570,
+ "fer": 571,
+ "pl": 572,
+ "ive": 573,
+ "ang": 574,
+ "ens": 575,
+ "ро": 576,
+ "▁so": 577,
+ "so": 578,
+ "ast": 579,
+ "()": 580,
+ "swer": 581,
+ "ru": 582,
+ "ies": 583,
+ "▁:": 584,
+ "au": 585,
+ "ov": 586,
+ "ре": 587,
+ "го": 588,
+ "▁der": 589,
+ "▁my": 590,
+ "▁we": 591,
+ "▁me": 592,
+ "nt": 593,
+ "▁ad": 594,
+ "urn": 595,
+ "▁your": 596,
+ "://": 597,
+ "are": 598,
+ "▁all": 599,
+ "ff": 600,
+ "io": 601,
+ "estion": 602,
+ "ime": 603,
+ "▁er": 604,
+ "lass": 605,
+ "▁и": 606,
+ "▁which": 607,
+ "ome": 608,
+ "ont": 609,
+ "▁par": 610,
+ "▁ma": 611,
+ "▁Y": 612,
+ "\",": 613,
+ "▁о": 614,
+ "ft": 615,
+ "ial": 616,
+ "cc": 617,
+ "ound": 618,
+ "▁li": 619,
+ "▁res": 620,
+ "eth": 621,
+ "ject": 622,
+ "▁app": 623,
+ "▁St": 624,
+ "ice": 625,
+ "▁am": 626,
+ "act": 627,
+ "▁del": 628,
+ "gr": 629,
+ "ated": 630,
+ "ier": 631,
+ "▁▁▁▁▁▁▁▁▁▁▁▁": 632,
+ "▁ab": 633,
+ "▁et": 634,
+ "ally": 635,
+ "..": 636,
+ "port": 637,
+ "ik": 638,
+ "▁per": 639,
+ "▁cont": 640,
+ "ри": 641,
+ "ка": 642,
+ "ser": 643,
+ "ли": 644,
+ "ll": 645,
+ "iew": 646,
+ "ign": 647,
+ "_{": 648,
+ "put": 649,
+ "one": 650,
+ "unction": 651,
+ "▁di": 652,
+ "ary": 653,
+ "ition": 654,
+ "ma": 655,
+ "ен": 656,
+ "get": 657,
+ "▁lo": 658,
+ "▁val": 659,
+ "▁Q": 660,
+ "ran": 661,
+ "▁д": 662,
+ "ence": 663,
+ "▁work": 664,
+ "▁на": 665,
+ "ip": 666,
+ "item": 667,
+ "ype": 668,
+ "▁&": 669,
+ "▁his": 670,
+ "▁use": 671,
+ "der": 672,
+ "▁Answer": 673,
+ "▁will": 674,
+ "ize": 675,
+ "та": 676,
+ "low": 677,
+ "▁Ch": 678,
+ "▁get": 679,
+ "ide": 680,
+ "ous": 681,
+ "ink": 682,
+ "ption": 683,
+ "ла": 684,
+ "turn": 685,
+ "ung": 686,
+ "ec": 687,
+ "ug": 688,
+ "form": 689,
+ "res": 690,
+ "htt": 691,
+ "oug": 692,
+ "ль": 693,
+ "▁no": 694,
+ "cl": 695,
+ "▁ro": 696,
+ "▁one": 697,
+ "tt": 698,
+ "cri": 699,
+ "du": 700,
+ "▁up": 701,
+ "то": 702,
+ "(\"": 703,
+ "▁ob": 704,
+ "we": 705,
+ "ory": 706,
+ "▁est": 707,
+ "ery": 708,
+ "iel": 709,
+ "str": 710,
+ "ob": 711,
+ "▁que": 712,
+ "ian": 713,
+ "▁out": 714,
+ "▁pl": 715,
+ "▁new": 716,
+ "ки": 717,
+ "▁+": 718,
+ "ry": 719,
+ "oth": 720,
+ "ther": 721,
+ "▁var": 722,
+ "▁would": 723,
+ "▁ser": 724,
+ "tern": 725,
+ "text": 726,
+ "▁there": 727,
+ "ish": 728,
+ "ror": 729,
+ "те": 730,
+ "▁set": 731,
+ "▁@": 732,
+ "▁по": 733,
+ "▁te": 734,
+ "ex": 735,
+ "▁return": 736,
+ "ail": 737,
+ "▁any": 738,
+ "▁It": 739,
+ "▁function": 740,
+ "{\\": 741,
+ "',": 742,
+ "és": 743,
+ "ale": 744,
+ "ан": 745,
+ "▁when": 746,
+ "ib": 747,
+ "▁go": 748,
+ "ance": 749,
+ "▁had": 750,
+ "▁Qu": 751,
+ "▁comp": 752,
+ "ле": 753,
+ "▁з": 754,
+ "math": 755,
+ "▁has": 756,
+ "▁м": 757,
+ "▁pre": 758,
+ "ener": 759,
+ "▁part": 760,
+ "elf": 761,
+ "▁die": 762,
+ "▁like": 763,
+ "ray": 764,
+ "irst": 765,
+ "▁dis": 766,
+ "▁man": 767,
+ "rit": 768,
+ "▁then": 769,
+ "▁class": 770,
+ "pro": 771,
+ "▁po": 772,
+ "▁using": 773,
+ "eb": 774,
+ "▁code": 775,
+ "own": 776,
+ "▁some": 777,
+ "ces": 778,
+ "▁$\\": 779,
+ "ер": 780,
+ "lect": 781,
+ "▁au": 782,
+ "isch": 783,
+ "▁col": 784,
+ "▁–": 785,
+ "up": 786,
+ "ons": 787,
+ "▁add": 788,
+ "ild": 789,
+ "iss": 790,
+ "val": 791,
+ "ount": 792,
+ "les": 793,
+ "vent": 794,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁": 795,
+ "▁Z": 796,
+ "In": 797,
+ "row": 798,
+ "ear": 799,
+ "ations": 800,
+ "ah": 801,
+ "que": 802,
+ "ublic": 803,
+ "ank": 804,
+ "▁sp": 805,
+ "▁Wh": 806,
+ "----": 807,
+ "sk": 808,
+ "ew": 809,
+ "ags": 810,
+ "ти": 811,
+ "ann": 812,
+ "▁—": 813,
+ "ert": 814,
+ "ace": 815,
+ "sch": 816,
+ "▁need": 817,
+ "▁à": 818,
+ "ien": 819,
+ "ough": 820,
+ "не": 821,
+ "▁def": 822,
+ "ij": 823,
+ "ern": 824,
+ "▁what": 825,
+ "▁Ar": 826,
+ "wo": 827,
+ "ml": 828,
+ "": 829,
+ "▁Re": 830,
+ "▁es": 831,
+ "▁inst": 832,
+ "bo": 833,
+ "az": 834,
+ "▁###": 835,
+ "▁б": 836,
+ "erm": 837,
+ "▁Al": 838,
+ "led": 839,
+ "да": 840,
+ "ten": 841,
+ "set": 842,
+ "ло": 843,
+ "▁comm": 844,
+ "sh": 845,
+ "ва": 846,
+ "▁/": 847,
+ "▁data": 848,
+ "▁//": 849,
+ "](": 850,
+ "▁str": 851,
+ "ose": 852,
+ "▁Un": 853,
+ "ven": 854,
+ "St": 855,
+ "...": 856,
+ "▁С": 857,
+ "yst": 858,
+ "▁«": 859,
+ "ick": 860,
+ "ix": 861,
+ "par": 862,
+ "▁у": 863,
+ "▁want": 864,
+ "ng": 865,
+ "ote": 866,
+ "▁gr": 867,
+ "▁du": 868,
+ "▁.": 869,
+ "und": 870,
+ "▁only": 871,
+ "▁sa": 872,
+ "ely": 873,
+ "vers": 874,
+ "▁ent": 875,
+ "))": 876,
+ "('": 877,
+ "▁mod": 878,
+ "ava": 879,
+ "ton": 880,
+ "▁should": 881,
+ "ement": 882,
+ "▁form": 883,
+ "▁also": 884,
+ "▁sc": 885,
+ "ings": 886,
+ "▁You": 887,
+ "ón": 888,
+ "▁kn": 889,
+ "();": 890,
+ "▁|": 891,
+ "▁were": 892,
+ "ss": 893,
+ "▁Question": 894,
+ "ise": 895,
+ "▁they": 896,
+ "▁De": 897,
+ "ond": 898,
+ "▁sol": 899,
+ "▁fol": 900,
+ "▁more": 901,
+ "▁her": 902,
+ "▁_": 903,
+ "▁é": 904,
+ "atch": 905,
+ "fter": 906,
+ "▁cre": 907,
+ "lock": 908,
+ "tring": 909,
+ "▁This": 910,
+ "ze": 911,
+ "ado": 912,
+ "ull": 913,
+ "ger": 914,
+ "be": 915,
+ "▁other": 916,
+ "▁Tags": 917,
+ "ution": 918,
+ "ict": 919,
+ "▁how": 920,
+ "▁x": 921,
+ "▁Se": 922,
+ "▁che": 923,
+ "cript": 924,
+ "▁just": 925,
+ "▁pos": 926,
+ "ange": 927,
+ "ific": 928,
+ "ree": 929,
+ "}}": 930,
+ "▁time": 931,
+ "app": 932,
+ "ны": 933,
+ "▁file": 934,
+ "ark": 935,
+ "ical": 936,
+ "▁first": 937,
+ "▁int": 938,
+ "▁В": 939,
+ "▁He": 940,
+ "ta": 941,
+ "ument": 942,
+ "ors": 943,
+ "lement": 944,
+ "rac": 945,
+ "▁ag": 946,
+ "▁does": 947,
+ "yn": 948,
+ "read": 949,
+ "ual": 950,
+ "▁Le": 951,
+ "ys": 952,
+ "▁em": 953,
+ "▁num": 954,
+ "vel": 955,
+ "ди": 956,
+ "over": 957,
+ "▁dif": 958,
+ "ethod": 959,
+ "▁If": 960,
+ "▁spe": 961,
+ "ym": 962,
+ "▁them": 963,
+ "▁into": 964,
+ "▁▁▁▁▁▁▁▁▁▁": 965,
+ "▁les": 966,
+ "▁its": 967,
+ "ese": 968,
+ "ield": 969,
+ "▁public": 970,
+ "▁П": 971,
+ "▁den": 972,
+ "ystem": 973,
+ "of": 974,
+ "▁over": 975,
+ "->": 976,
+ "▁fil": 977,
+ "name": 978,
+ "inal": 979,
+ "▁il": 980,
+ "ample": 981,
+ "▁way": 982,
+ "ica": 983,
+ "во": 984,
+ "cess": 985,
+ "itt": 986,
+ "uch": 987,
+ "▁where": 988,
+ "ми": 989,
+ "org": 990,
+ "https": 991,
+ "▁vo": 992,
+ "ient": 993,
+ "ove": 994,
+ "▁value": 995,
+ "eng": 996,
+ "▁La": 997,
+ "^{": 998,
+ "ref": 999,
+ "ied": 1000,
+ "ER": 1001,
+ "▁stat": 1002,
+ "fig": 1003,
+ "me": 1004,
+ "▁von": 1005,
+ "▁inter": 1006,
+ "roid": 1007,
+ "ater": 1008,
+ "▁their": 1009,
+ "▁bet": 1010,
+ "▁ein": 1011,
+ "}\\": 1012,
+ "\">": 1013,
+ "▁sub": 1014,
+ "▁op": 1015,
+ "▁don": 1016,
+ "ty": 1017,
+ "▁try": 1018,
+ "▁Pro": 1019,
+ "▁tra": 1020,
+ "▁same": 1021,
+ "ep": 1022,
+ "▁two": 1023,
+ "▁name": 1024,
+ "old": 1025,
+ "let": 1026,
+ "▁sim": 1027,
+ "sp": 1028,
+ "▁av": 1029,
+ "bre": 1030,
+ "blem": 1031,
+ "ey": 1032,
+ "▁could": 1033,
+ "▁cor": 1034,
+ "▁acc": 1035,
+ "ays": 1036,
+ "cre": 1037,
+ "urr": 1038,
+ "si": 1039,
+ "▁const": 1040,
+ "ues": 1041,
+ "}$": 1042,
+ "View": 1043,
+ "▁act": 1044,
+ "▁bo": 1045,
+ "▁ко": 1046,
+ "▁som": 1047,
+ "▁about": 1048,
+ "land": 1049,
+ "mer": 1050,
+ "▁list": 1051,
+ "cal": 1052,
+ "▁import": 1053,
+ "col": 1054,
+ "▁na": 1055,
+ "na": 1056,
+ "::": 1057,
+ "▁who": 1058,
+ "▁error": 1059,
+ "▁X": 1060,
+ "ator": 1061,
+ "ext": 1062,
+ "▁been": 1063,
+ "ér": 1064,
+ "▁run": 1065,
+ "pos": 1066,
+ "▁cl": 1067,
+ "**": 1068,
+ "▁К": 1069,
+ "ular": 1070,
+ "ause": 1071,
+ "▁reg": 1072,
+ "▁know": 1073,
+ "▁see": 1074,
+ "▁him": 1075,
+ "ning": 1076,
+ "▁за": 1077,
+ "ates": 1078,
+ "fore": 1079,
+ "ions": 1080,
+ "▁hel": 1081,
+ "ute": 1082,
+ "▁rem": 1083,
+ "▁го": 1084,
+ "▁Mar": 1085,
+ "ру": 1086,
+ "vice": 1087,
+ "irect": 1088,
+ "ner": 1089,
+ "▁under": 1090,
+ "rib": 1091,
+ "hr": 1092,
+ "че": 1093,
+ "▁As": 1094,
+ "▁end": 1095,
+ "ember": 1096,
+ "▁а": 1097,
+ "▁att": 1098,
+ "ina": 1099,
+ "son": 1100,
+ "▁follow": 1101,
+ "▁Sch": 1102,
+ "pect": 1103,
+ "▁rel": 1104,
+ "▁So": 1105,
+ "▁look": 1106,
+ "abel": 1107,
+ "▁problem": 1108,
+ "▁van": 1109,
+ "strong": 1110,
+ "co": 1111,
+ "pon": 1112,
+ "ca": 1113,
+ "ada": 1114,
+ "\":": 1115,
+ "cond": 1116,
+ "amb": 1117,
+ "},": 1118,
+ "quest": 1119,
+ "▁aut": 1120,
+ "▁result": 1121,
+ "▁may": 1122,
+ "Re": 1123,
+ "http": 1124,
+ "):": 1125,
+ "▁And": 1126,
+ "red": 1127,
+ "▁How": 1128,
+ "po": 1129,
+ "ско": 1130,
+ "att": 1131,
+ "oup": 1132,
+ "ced": 1133,
+ "▁type": 1134,
+ "▁than": 1135,
+ "▁cons": 1136,
+ "uf": 1137,
+ "ци": 1138,
+ "▁question": 1139,
+ "raph": 1140,
+ "igh": 1141,
+ "▁М": 1142,
+ "▁htt": 1143,
+ "ins": 1144,
+ "den": 1145,
+ "▁da": 1146,
+ "▁ver": 1147,
+ "oh": 1148,
+ "▁=>": 1149,
+ "riv": 1150,
+ "ude": 1151,
+ "▁For": 1152,
+ "▁ra": 1153,
+ "frac": 1154,
+ "ма": 1155,
+ "▁after": 1156,
+ "}{": 1157,
+ "▁method": 1158,
+ "\")": 1159,
+ "amp": 1160,
+ "ash": 1161,
+ "▁rec": 1162,
+ "▁differ": 1163,
+ "ON": 1164,
+ "ax": 1165,
+ "ament": 1166,
+ "ource": 1167,
+ "Con": 1168,
+ "its": 1169,
+ "Name": 1170,
+ "man": 1171,
+ "▁bec": 1172,
+ "che": 1173,
+ "▁En": 1174,
+ "aj": 1175,
+ "▁gener": 1176,
+ "IN": 1177,
+ "▁id": 1178,
+ "ages": 1179,
+ "▁loc": 1180,
+ "fo": 1181,
+ "br": 1182,
+ "▁she": 1183,
+ "Pro": 1184,
+ "▁una": 1185,
+ "▁к": 1186,
+ "eta": 1187,
+ "log": 1188,
+ "olog": 1189,
+ "▁sur": 1190,
+ "arg": 1191,
+ "▁--": 1192,
+ "kt": 1193,
+ "(\\": 1194,
+ "min": 1195,
+ "▁line": 1196,
+ "▁vari": 1197,
+ "ся": 1198,
+ "ics": 1199,
+ "ня": 1200,
+ "very": 1201,
+ "add": 1202,
+ "▁object": 1203,
+ "Id": 1204,
+ "▁But": 1205,
+ "▁case": 1206,
+ "▁make": 1207,
+ "▁cal": 1208,
+ "▁pass": 1209,
+ "сь": 1210,
+ "ession": 1211,
+ "net": 1212,
+ ".\"": 1213,
+ "▁г": 1214,
+ "är": 1215,
+ "де": 1216,
+ "no": 1217,
+ "ating": 1218,
+ "ato": 1219,
+ "line": 1220,
+ "ви": 1221,
+ "▁Ex": 1222,
+ "▁ass": 1223,
+ "▁vers": 1224,
+ "ля": 1225,
+ "▁ed": 1226,
+ "umn": 1227,
+ "other": 1228,
+ "ста": 1229,
+ "ative": 1230,
+ "String": 1231,
+ "▁los": 1232,
+ "wn": 1233,
+ "▁answer": 1234,
+ "▁let": 1235,
+ "▁pe": 1236,
+ "ents": 1237,
+ "▁fe": 1238,
+ "ince": 1239,
+ "ni": 1240,
+ "ider": 1241,
+ "ows": 1242,
+ "▁test": 1243,
+ "▁here": 1244,
+ "roll": 1245,
+ "▁call": 1246,
+ "ruct": 1247,
+ "▁pol": 1248,
+ "ait": 1249,
+ "▁back": 1250,
+ "ho": 1251,
+ "Ex": 1252,
+ "ress": 1253,
+ "ST": 1254,
+ "ried": 1255,
+ "date": 1256,
+ "ет": 1257,
+ "▁did": 1258,
+ "ting": 1259,
+ "▁El": 1260,
+ "▁dem": 1261,
+ ")$": 1262,
+ "ова": 1263,
+ "urrent": 1264,
+ "lace": 1265,
+ "right": 1266,
+ "ren": 1267,
+ "по": 1268,
+ "▁each": 1269,
+ "cy": 1270,
+ "block": 1271,
+ "data": 1272,
+ "▁%": 1273,
+ "▁ac": 1274,
+ "▁==": 1275,
+ "ür": 1276,
+ "▁por": 1277,
+ "ask": 1278,
+ "arch": 1279,
+ "ames": 1280,
+ "▁Con": 1281,
+ "ча": 1282,
+ "▁off": 1283,
+ "▁find": 1284,
+ "cont": 1285,
+ "▁now": 1286,
+ "work": 1287,
+ "ational": 1288,
+ "dd": 1289,
+ "ción": 1290,
+ "▁А": 1291,
+ "ault": 1292,
+ "List": 1293,
+ "▁ext": 1294,
+ "urs": 1295,
+ "ake": 1296,
+ "ule": 1297,
+ "▁point": 1298,
+ "AT": 1299,
+ "aut": 1300,
+ "▁trans": 1301,
+ "▁co": 1302,
+ "▁read": 1303,
+ "▁used": 1304,
+ "ски": 1305,
+ "ari": 1306,
+ "LE": 1307,
+ "eter": 1308,
+ "oun": 1309,
+ "ever": 1310,
+ "self": 1311,
+ "ined": 1312,
+ "idth": 1313,
+ "ux": 1314,
+ "js": 1315,
+ "▁such": 1316,
+ "▁Is": 1317,
+ "ée": 1318,
+ "ful": 1319,
+ "▁dist": 1320,
+ "▁bu": 1321,
+ "itemize": 1322,
+ "Cont": 1323,
+ "je": 1324,
+ "си": 1325,
+ "▁prov": 1326,
+ "bb": 1327,
+ "ward": 1328,
+ "esent": 1329,
+ "erson": 1330,
+ "anks": 1331,
+ "wh": 1332,
+ "not": 1333,
+ "▁We": 1334,
+ "ka": 1335,
+ "rop": 1336,
+ "atur": 1337,
+ "als": 1338,
+ "▁bel": 1339,
+ "ör": 1340,
+ "fr": 1341,
+ "▁example": 1342,
+ "▁incl": 1343,
+ "amil": 1344,
+ "▁ра": 1345,
+ "▁“": 1346,
+ "▁string": 1347,
+ "▁think": 1348,
+ "Th": 1349,
+ "▁tem": 1350,
+ "ave": 1351,
+ "▁Fran": 1352,
+ "▁number": 1353,
+ "▁si": 1354,
+ "imes": 1355,
+ "tem": 1356,
+ "my": 1357,
+ "ler": 1358,
+ "load": 1359,
+ "==": 1360,
+ "▁hand": 1361,
+ "za": 1362,
+ "▁because": 1363,
+ "▁sch": 1364,
+ "vo": 1365,
+ "this": 1366,
+ "ID": 1367,
+ "ão": 1368,
+ "▁start": 1369,
+ "▁war": 1370,
+ "▁help": 1371,
+ "ts": 1372,
+ "▁char": 1373,
+ "▁ph": 1374,
+ "▁min": 1375,
+ "til": 1376,
+ "rite": 1377,
+ "--------": 1378,
+ "els": 1379,
+ "▁mit": 1380,
+ "edia": 1381,
+ "ку": 1382,
+ "▁Sh": 1383,
+ "any": 1384,
+ "];": 1385,
+ "▁Б": 1386,
+ "ique": 1387,
+ "da": 1388,
+ "ef": 1389,
+ "dex": 1390,
+ "▁produ": 1391,
+ "▁Н": 1392,
+ "gram": 1393,
+ "▁Or": 1394,
+ "▁gre": 1395,
+ "quote": 1396,
+ "leg": 1397,
+ "orn": 1398,
+ "▁ind": 1399,
+ "▁post": 1400,
+ "▁dep": 1401,
+ "],": 1402,
+ "vi": 1403,
+ "▁user": 1404,
+ "▁>": 1405,
+ "lick": 1406,
+ "▁very": 1407,
+ "ething": 1408,
+ "▁array": 1409,
+ "▁gu": 1410,
+ "▁dur": 1411,
+ "`.": 1412,
+ "ть": 1413,
+ "lication": 1414,
+ "сти": 1415,
+ "ek": 1416,
+ "ico": 1417,
+ "▁dat": 1418,
+ "ор": 1419,
+ "html": 1420,
+ "ione": 1421,
+ "▁different": 1422,
+ "▁check": 1423,
+ "▁fr": 1424,
+ "▁Er": 1425,
+ "▁text": 1426,
+ "ні": 1427,
+ "icht": 1428,
+ "stack": 1429,
+ "EN": 1430,
+ "rag": 1431,
+ "▁every": 1432,
+ "Ar": 1433,
+ "▁before": 1434,
+ "alse": 1435,
+ "▁fin": 1436,
+ "▁dé": 1437,
+ "▁these": 1438,
+ "▁det": 1439,
+ "Val": 1440,
+ "ception": 1441,
+ "▁android": 1442,
+ "blockquote": 1443,
+ "▁je": 1444,
+ "file": 1445,
+ "ats": 1446,
+ "▁до": 1447,
+ "essage": 1448,
+ "▁again": 1449,
+ "aw": 1450,
+ "Ch": 1451,
+ "ween": 1452,
+ "▁Д": 1453,
+ "for": 1454,
+ "cial": 1455,
+ "play": 1456,
+ "pre": 1457,
+ "ida": 1458,
+ "▁Par": 1459,
+ "ny": 1460,
+ "ract": 1461,
+ "▁supp": 1462,
+ "ased": 1463,
+ "lection": 1464,
+ "▁dans": 1465,
+ "air": 1466,
+ "rol": 1467,
+ "▁thr": 1468,
+ "Data": 1469,
+ "lich": 1470,
+ "▁про": 1471,
+ "▁long": 1472,
+ "▁second": 1473,
+ "ually": 1474,
+ "ines": 1475,
+ "▁found": 1476,
+ "ength": 1477,
+ "yp": 1478,
+ "ead": 1479,
+ "▁log": 1480,
+ "ui": 1481,
+ "new": 1482,
+ "▁Р": 1483,
+ "go": 1484,
+ "aus": 1485,
+ "ody": 1486,
+ "▁son": 1487,
+ "ме": 1488,
+ "ero": 1489,
+ "ved": 1490,
+ "sub": 1491,
+ "▁right": 1492,
+ "view": 1493,
+ "▁following": 1494,
+ "')": 1495,
+ "\");": 1496,
+ "▁said": 1497,
+ "же": 1498,
+ "чи": 1499,
+ "ту": 1500,
+ "ott": 1501,
+ "се": 1502,
+ "ars": 1503,
+ "$.": 1504,
+ "gg": 1505,
+ "▁br": 1506,
+ "ool": 1507,
+ "yle": 1508,
+ "use": 1509,
+ "▁show": 1510,
+ "lease": 1511,
+ "cia": 1512,
+ "▁direct": 1513,
+ "doc": 1514,
+ "ар": 1515,
+ "ms": 1516,
+ "▁giv": 1517,
+ "▁exp": 1518,
+ "ql": 1519,
+ "ду": 1520,
+ "ве": 1521,
+ "▁Be": 1522,
+ "Com": 1523,
+ "iter": 1524,
+ "RE": 1525,
+ "mp": 1526,
+ "men": 1527,
+ "▁Ro": 1528,
+ "MA": 1529,
+ "▁Col": 1530,
+ "ister": 1531,
+ "▁well": 1532,
+ "▁": 1533,
+ "ayout": 1534,
+ "ature": 1535,
+ "ivers": 1536,
+ "zy": 1537,
+ "▁не": 1538,
+ "▁met": 1539,
+ "une": 1540,
+ "yth": 1541,
+ "Type": 1542,
+ "▁element": 1543,
+ "▁link": 1544,
+ "mod": 1545,
+ "▁between": 1546,
+ "cept": 1547,
+ "quire": 1548,
+ "▁through": 1549,
+ "▁while": 1550,
+ "▁On": 1551,
+ "the": 1552,
+ "ía": 1553,
+ "▁something": 1554,
+ "vol": 1555,
+ "▁most": 1556,
+ "sc": 1557,
+ "uss": 1558,
+ "▁car": 1559,
+ "▁sm": 1560,
+ "▁ро": 1561,
+ "ano": 1562,
+ "left": 1563,
+ "va": 1564,
+ "▁true": 1565,
+ "($": 1566,
+ "ems": 1567,
+ "▁much": 1568,
+ "ás": 1569,
+ "▁New": 1570,
+ "▁proper": 1571,
+ "era": 1572,
+ "ited": 1573,
+ "▁doc": 1574,
+ "ices": 1575,
+ "The": 1576,
+ "▁?": 1577,
+ "сто": 1578,
+ "fl": 1579,
+ "▁spec": 1580,
+ "ender": 1581,
+ "way": 1582,
+ "▁self": 1583,
+ "▁even": 1584,
+ "ів": 1585,
+ "▁се": 1586,
+ "ния": 1587,
+ "▁Pr": 1588,
+ "▁ke": 1589,
+ "emb": 1590,
+ "▁table": 1591,
+ "▁equ": 1592,
+ "lient": 1593,
+ "td": 1594,
+ "part": 1595,
+ "▁print": 1596,
+ "▁une": 1597,
+ "ify": 1598,
+ "▁->": 1599,
+ "ene": 1600,
+ "▁mon": 1601,
+ "▁dec": 1602,
+ "▁still": 1603,
+ "▁об": 1604,
+ "▁Tr": 1605,
+ "▁ф": 1606,
+ "ife": 1607,
+ "ism": 1608,
+ "by": 1609,
+ "raw": 1610,
+ "ior": 1611,
+ "▁med": 1612,
+ "orld": 1613,
+ "▁comple": 1614,
+ "ww": 1615,
+ "▁art": 1616,
+ "ron": 1617,
+ "▁Г": 1618,
+ "▁My": 1619,
+ "▁als": 1620,
+ "rect": 1621,
+ "▁auf": 1622,
+ "▁down": 1623,
+ "ather": 1624,
+ "Col": 1625,
+ "Text": 1626,
+ "back": 1627,
+ "$,": 1628,
+ "▁year": 1629,
+ "мо": 1630,
+ "pi": 1631,
+ "▁Gr": 1632,
+ "ream": 1633,
+ "▁rep": 1634,
+ "bf": 1635,
+ "www": 1636,
+ "▁wur": 1637,
+ "▁org": 1638,
+ "inter": 1639,
+ "▁Die": 1640,
+ "▁being": 1641,
+ "\".": 1642,
+ "label": 1643,
+ "▁cent": 1644,
+ "java": 1645,
+ "bar": 1646,
+ "ante": 1647,
+ "ana": 1648,
+ "__": 1649,
+ "▁solution": 1650,
+ "▁О": 1651,
+ "▁fl": 1652,
+ "▁create": 1653,
+ "ici": 1654,
+ "ste": 1655,
+ "ython": 1656,
+ "unt": 1657,
+ "ason": 1658,
+ "ference": 1659,
+ "SE": 1660,
+ "▁non": 1661,
+ "ane": 1662,
+ "▁ins": 1663,
+ "ader": 1664,
+ "_{\\": 1665,
+ "Res": 1666,
+ "▁main": 1667,
+ "пи": 1668,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 1669,
+ "▁There": 1670,
+ "▁pour": 1671,
+ "RO": 1672,
+ "`,": 1673,
+ "lish": 1674,
+ "bject": 1675,
+ "ccess": 1676,
+ "▁orig": 1677,
+ "▁▁▁": 1678,
+ "ischen": 1679,
+ "ower": 1680,
+ "▁het": 1681,
+ "uc": 1682,
+ "▁else": 1683,
+ "».": 1684,
+ "▁от": 1685,
+ "equ": 1686,
+ "sible": 1687,
+ "test": 1688,
+ "stand": 1689,
+ "én": 1690,
+ "ets": 1691,
+ "GE": 1692,
+ "ident": 1693,
+ "▁е": 1694,
+ "▁при": 1695,
+ ".,": 1696,
+ "▁das": 1697,
+ "ock": 1698,
+ ",\"": 1699,
+ "▁vol": 1700,
+ "▁fo": 1701,
+ "▁para": 1702,
+ "▁Т": 1703,
+ "▁Car": 1704,
+ "ral": 1705,
+ "▁Sp": 1706,
+ "var": 1707,
+ "▁play": 1708,
+ "ouse": 1709,
+ "▁та": 1710,
+ "ically": 1711,
+ "▁contain": 1712,
+ "ponse": 1713,
+ "▁String": 1714,
+ "án": 1715,
+ "▁both": 1716,
+ "ken": 1717,
+ "AR": 1718,
+ "ере": 1719,
+ "▁Il": 1720,
+ "▁iss": 1721,
+ "▁open": 1722,
+ "▁)": 1723,
+ "▁What": 1724,
+ "fe": 1725,
+ "rivate": 1726,
+ "reg": 1727,
+ "▁without": 1728,
+ "▁zu": 1729,
+ "vis": 1730,
+ "flow": 1731,
+ "▁http": 1732,
+ "abase": 1733,
+ "▁word": 1734,
+ "▁change": 1735,
+ "▁works": 1736,
+ "▁ge": 1737,
+ "▁!": 1738,
+ "▁een": 1739,
+ "itle": 1740,
+ "▁event": 1741,
+ "word": 1742,
+ "ando": 1743,
+ "SB": 1744,
+ "rem": 1745,
+ "▁field": 1746,
+ "ving": 1747,
+ "Ser": 1748,
+ "▁our": 1749,
+ "▁qui": 1750,
+ "▁oper": 1751,
+ "▁ist": 1752,
+ "def": 1753,
+ "▁made": 1754,
+ "ние": 1755,
+ "px": 1756,
+ "▁men": 1757,
+ "rm": 1758,
+ "ais": 1759,
+ "cent": 1760,
+ "list": 1761,
+ "To": 1762,
+ "▁To": 1763,
+ "ja": 1764,
+ "vert": 1765,
+ "▁mar": 1766,
+ "value": 1767,
+ "▁„": 1768,
+ "\";": 1769,
+ "▁aus": 1770,
+ "▁Br": 1771,
+ "ole": 1772,
+ "▁mult": 1773,
+ "ought": 1774,
+ "▁mat": 1775,
+ "▁view": 1776,
+ "fil": 1777,
+ "▁со": 1778,
+ "га": 1779,
+ "▁void": 1780,
+ "▁good": 1781,
+ "бо": 1782,
+ "CT": 1783,
+ "▁many": 1784,
+ "ben": 1785,
+ "▁во": 1786,
+ "▁ка": 1787,
+ "▁system": 1788,
+ "ino": 1789,
+ "▁another": 1790,
+ "▁rest": 1791,
+ "user": 1792,
+ "ility": 1793,
+ "ai": 1794,
+ "▁might": 1795,
+ "ustom": 1796,
+ "▁order": 1797,
+ "▁Ver": 1798,
+ "SS": 1799,
+ "})": 1800,
+ "▁eff": 1801,
+ "до": 1802,
+ "ett": 1803,
+ "▁sign": 1804,
+ "му": 1805,
+ "IT": 1806,
+ "string": 1807,
+ "elle": 1808,
+ "▁sing": 1809,
+ "cul": 1810,
+ "▁trying": 1811,
+ "▁beg": 1812,
+ "▁page": 1813,
+ "хо": 1814,
+ "▁Can": 1815,
+ "▁Ser": 1816,
+ "++": 1817,
+ "▁must": 1818,
+ "▁values": 1819,
+ "▁key": 1820,
+ "ible": 1821,
+ "].": 1822,
+ "ird": 1823,
+ "▁program": 1824,
+ "roller": 1825,
+ "▁conne": 1826,
+ "▁say": 1827,
+ "▁param": 1828,
+ "ache": 1829,
+ "velop": 1830,
+ "▁select": 1831,
+ "▁famil": 1832,
+ "▁last": 1833,
+ "▁Thanks": 1834,
+ "▁pop": 1835,
+ "}.": 1836,
+ "eq": 1837,
+ "▁doesn": 1838,
+ "['": 1839,
+ "▁term": 1840,
+ "▁ré": 1841,
+ "▁document": 1842,
+ "па": 1843,
+ "лу": 1844,
+ "ateg": 1845,
+ ".)": 1846,
+ "ling": 1847,
+ "ional": 1848,
+ "ables": 1849,
+ "▁tak": 1850,
+ "utton": 1851,
+ "▁arg": 1852,
+ "type": 1853,
+ "▁sure": 1854,
+ "▁real": 1855,
+ "▁web": 1856,
+ "▁current": 1857,
+ "▁Pl": 1858,
+ "cho": 1859,
+ "ments": 1860,
+ "▁Joh": 1861,
+ "ots": 1862,
+ "▁exist": 1863,
+ "ну": 1864,
+ "▁für": 1865,
+ "▁из": 1866,
+ "do": 1867,
+ "ного": 1868,
+ "▁las": 1869,
+ "▁null": 1870,
+ "▁inform": 1871,
+ "▁Л": 1872,
+ "▁version": 1873,
+ "▁chang": 1874,
+ "ager": 1875,
+ "▁Comm": 1876,
+ "лі": 1877,
+ "ush": 1878,
+ "▁Ge": 1879,
+ "▁high": 1880,
+ "▁input": 1881,
+ "ogle": 1882,
+ "ros": 1883,
+ "box": 1884,
+ "gen": 1885,
+ "▁ste": 1886,
+ "▁local": 1887,
+ "Im": 1888,
+ "▁process": 1889,
+ "ternal": 1890,
+ "ized": 1891,
+ "ги": 1892,
+ "ét": 1893,
+ "▁Ind": 1894,
+ "▁och": 1895,
+ "lt": 1896,
+ "▁column": 1897,
+ "▁tried": 1898,
+ "▁command": 1899,
+ "▁best": 1900,
+ "aster": 1901,
+ "за": 1902,
+ "▁prim": 1903,
+ "▁model": 1904,
+ "▁і": 1905,
+ "▁those": 1906,
+ "ities": 1907,
+ "ère": 1908,
+ "▁ре": 1909,
+ "је": 1910,
+ "ши": 1911,
+ "ques": 1912,
+ "▁Am": 1913,
+ "▁own": 1914,
+ "lin": 1915,
+ "зи": 1916,
+ "Value": 1917,
+ "thing": 1918,
+ "▁,": 1919,
+ "▁Te": 1920,
+ "▁stud": 1921,
+ "▁um": 1922,
+ "▁server": 1923,
+ "ille": 1924,
+ "▁put": 1925,
+ "ativ": 1926,
+ "gy": 1927,
+ "ови": 1928,
+ "raf": 1929,
+ "ово": 1930,
+ "▁wurde": 1931,
+ "▁When": 1932,
+ "▁div": 1933,
+ "ants": 1934,
+ "▁ter": 1935,
+ "▁partic": 1936,
+ "▁т": 1937,
+ "▁Do": 1938,
+ "▁No": 1939,
+ "sert": 1940,
+ "ido": 1941,
+ "mathcal": 1942,
+ "ade": 1943,
+ "▁II": 1944,
+ "lear": 1945,
+ "ograph": 1946,
+ "ense": 1947,
+ "▁row": 1948,
+ "num": 1949,
+ "▁possible": 1950,
+ "▁since": 1951,
+ "▁Bo": 1952,
+ "ctions": 1953,
+ "▁Im": 1954,
+ "OR": 1955,
+ "ці": 1956,
+ "▁ide": 1957,
+ "map": 1958,
+ "▁correct": 1959,
+ "ves": 1960,
+ "php": 1961,
+ "▁output": 1962,
+ "▁Ph": 1963,
+ "AL": 1964,
+ "ared": 1965,
+ "\\\\": 1966,
+ "▁image": 1967,
+ "esch": 1968,
+ "жи": 1969,
+ "▁conf": 1970,
+ "por": 1971,
+ "query": 1972,
+ "ures": 1973,
+ "ium": 1974,
+ "ends": 1975,
+ "▁Ab": 1976,
+ "SBN": 1977,
+ "ід": 1978,
+ "ether": 1979,
+ "ptions": 1980,
+ "itu": 1981,
+ "lib": 1982,
+ "ns": 1983,
+ "ki": 1984,
+ "▁working": 1985,
+ "▁como": 1986,
+ "▁Then": 1987,
+ "ML": 1988,
+ "key": 1989,
+ "class": 1990,
+ "ople": 1991,
+ "ittle": 1992,
+ "▁match": 1993,
+ "ways": 1994,
+ "mathbb": 1995,
+ "▁require": 1996,
+ "alt": 1997,
+ "▁vis": 1998,
+ "▁bl": 1999,
+ "▁called": 2000,
+ "Item": 2001,
+ "ura": 2002,
+ "vec": 2003,
+ "eme": 2004,
+ "▁della": 2005,
+ "embre": 2006,
+ "urg": 2007,
+ "Se": 2008,
+ "▁request": 2009,
+ "ische": 2010,
+ "▁port": 2011,
+ "▁instead": 2012,
+ "=\\": 2013,
+ "▁У": 2014,
+ "hor": 2015,
+ "ente": 2016,
+ "ume": 2017,
+ "erd": 2018,
+ "са": 2019,
+ "▁why": 2020,
+ "rist": 2021,
+ "▁person": 2022,
+ "▁...": 2023,
+ "▁private": 2024,
+ "▁tot": 2025,
+ "pha": 2026,
+ "ift": 2027,
+ "ita": 2028,
+ "loc": 2029,
+ "▁old": 2030,
+ "он": 2031,
+ "▁nel": 2032,
+ "']": 2033,
+ "ti": 2034,
+ "iet": 2035,
+ "cite": 2036,
+ "plement": 2037,
+ "▁above": 2038,
+ "ks": 2039,
+ "ready": 2040,
+ "▁come": 2041,
+ "section": 2042,
+ "▁Pol": 2043,
+ "▁writ": 2044,
+ "▁https": 2045,
+ "▁$$": 2046,
+ "▁»": 2047,
+ "▁build": 2048,
+ "ito": 2049,
+ "▁consider": 2050,
+ "aft": 2051,
+ "App": 2052,
+ ",\\": 2053,
+ "indows": 2054,
+ "comm": 2055,
+ "▁;": 2056,
+ "ground": 2057,
+ "▁place": 2058,
+ "By": 2059,
+ "▁project": 2060,
+ "Object": 2061,
+ "▁repr": 2062,
+ "ences": 2063,
+ "indow": 2064,
+ "zt": 2065,
+ "▁files": 2066,
+ "cz": 2067,
+ "ivity": 2068,
+ "▁init": 2069,
+ "▁prob": 2070,
+ "▁sk": 2071,
+ "orth": 2072,
+ "iment": 2073,
+ "ouble": 2074,
+ "atal": 2075,
+ "irc": 2076,
+ "▁è": 2077,
+ "▁bre": 2078,
+ "ista": 2079,
+ "input": 2080,
+ "▁И": 2081,
+ "ной": 2082,
+ "sum": 2083,
+ "path": 2084,
+ "▁cour": 2085,
+ "▁too": 2086,
+ "▁Ad": 2087,
+ "▁Gu": 2088,
+ "▁false": 2089,
+ "▁fun": 2090,
+ "▁ст": 2091,
+ "ood": 2092,
+ "ès": 2093,
+ "▁enc": 2094,
+ "bol": 2095,
+ "rl": 2096,
+ "arget": 2097,
+ "order": 2098,
+ "▁mean": 2099,
+ "пе": 2100,
+ "igen": 2101,
+ "▁пре": 2102,
+ "width": 2103,
+ ";\r": 2104,
+ "itor": 2105,
+ "▁state": 2106,
+ "▁great": 2107,
+ "enn": 2108,
+ "bin": 2109,
+ "Er": 2110,
+ "Mod": 2111,
+ "oz": 2112,
+ "▁won": 2113,
+ "▁fact": 2114,
+ "▁java": 2115,
+ "▁Univers": 2116,
+ "▁cap": 2117,
+ "istor": 2118,
+ "}(": 2119,
+ "ku": 2120,
+ "ither": 2121,
+ "ales": 2122,
+ "▁ou": 2123,
+ "ross": 2124,
+ "▁take": 2125,
+ "rix": 2126,
+ "lob": 2127,
+ "▁eine": 2128,
+ "ases": 2129,
+ "▁access": 2130,
+ "ité": 2131,
+ "istr": 2132,
+ "ization": 2133,
+ "▁appro": 2134,
+ "ball": 2135,
+ "▁mak": 2136,
+ "}^": 2137,
+ "▁Cons": 2138,
+ "press": 2139,
+ "serv": 2140,
+ "().": 2141,
+ "af": 2142,
+ "▁ref": 2143,
+ ")\\": 2144,
+ "▁contin": 2145,
+ "su": 2146,
+ "iver": 2147,
+ "▁cond": 2148,
+ "▁expect": 2149,
+ "▁charact": 2150,
+ "bert": 2151,
+ "elt": 2152,
+ "ters": 2153,
+ "script": 2154,
+ "▁Ed": 2155,
+ "apt": 2156,
+ "');": 2157,
+ "print": 2158,
+ "▁size": 2159,
+ "▁sich": 2160,
+ "face": 2161,
+ "enden": 2162,
+ "▁Amer": 2163,
+ "ified": 2164,
+ "ów": 2165,
+ "▁Su": 2166,
+ "tes": 2167,
+ "med": 2168,
+ "▁Reg": 2169,
+ "sole": 2170,
+ "▁includ": 2171,
+ "ini": 2172,
+ "inci": 2173,
+ "▁pla": 2174,
+ "▁left": 2175,
+ "df": 2176,
+ "Par": 2177,
+ "▁All": 2178,
+ "▁occ": 2179,
+ "▁At": 2180,
+ "▁cr": 2181,
+ "Qu": 2182,
+ "▁given": 2183,
+ "▁System": 2184,
+ "ican": 2185,
+ "▁final": 2186,
+ "itions": 2187,
+ "▁бы": 2188,
+ "▁perform": 2189,
+ "AN": 2190,
+ "▁Me": 2191,
+ "uro": 2192,
+ "▁That": 2193,
+ "гра": 2194,
+ "▁По": 2195,
+ "▁ви": 2196,
+ "ably": 2197,
+ "▁present": 2198,
+ "duct": 2199,
+ "ric": 2200,
+ "▁Eng": 2201,
+ "try": 2202,
+ "▁lar": 2203,
+ "bl": 2204,
+ "idd": 2205,
+ "▁är": 2206,
+ "ora": 2207,
+ "LL": 2208,
+ "oss": 2209,
+ "▁ISBN": 2210,
+ "▁three": 2211,
+ "jo": 2212,
+ "ní": 2213,
+ "rc": 2214,
+ "▁far": 2215,
+ "▁Not": 2216,
+ "▁little": 2217,
+ "dis": 2218,
+ "ati": 2219,
+ "function": 2220,
+ "▁able": 2221,
+ "less": 2222,
+ "со": 2223,
+ "▁path": 2224,
+ "▁pres": 2225,
+ "lose": 2226,
+ "PI": 2227,
+ "▁issue": 2228,
+ "ackage": 2229,
+ "time": 2230,
+ "ige": 2231,
+ "ams": 2232,
+ "▁Cl": 2233,
+ "ails": 2234,
+ "alk": 2235,
+ "ii": 2236,
+ "ше": 2237,
+ "pen": 2238,
+ "QL": 2239,
+ "▁eas": 2240,
+ "RL": 2241,
+ "cel": 2242,
+ "▁sl": 2243,
+ "▁ask": 2244,
+ "▁nom": 2245,
+ "▁top": 2246,
+ "ides": 2247,
+ "index": 2248,
+ "ém": 2249,
+ "▁happ": 2250,
+ "ox": 2251,
+ "cd": 2252,
+ "▁better": 2253,
+ "▁load": 2254,
+ "ados": 2255,
+ "zen": 2256,
+ "▁ce": 2257,
+ "▁fa": 2258,
+ "▁John": 2259,
+ "IMA": 2260,
+ "▁Bar": 2261,
+ "overflow": 2262,
+ "▁де": 2263,
+ "ness": 2264,
+ "cer": 2265,
+ "▁Here": 2266,
+ "ret": 2267,
+ "▁sz": 2268,
+ "ambda": 2269,
+ "opy": 2270,
+ "url": 2271,
+ "py": 2272,
+ "rt": 2273,
+ "▁understand": 2274,
+ "ał": 2275,
+ "her": 2276,
+ "##": 2277,
+ "▁child": 2278,
+ "▁exec": 2279,
+ "▁application": 2280,
+ "▁struct": 2281,
+ "▁я": 2282,
+ "File": 2283,
+ "▁cert": 2284,
+ "ison": 2285,
+ "▁variable": 2286,
+ "DE": 2287,
+ "rs": 2288,
+ "▁really": 2289,
+ "Port": 2290,
+ "ba": 2291,
+ "▁Ber": 2292,
+ "▁inte": 2293,
+ "▁static": 2294,
+ "▁config": 2295,
+ "▁She": 2296,
+ "estions": 2297,
+ "▁plus": 2298,
+ "▁hab": 2299,
+ "ope": 2300,
+ "▁mus": 2301,
+ "▁count": 2302,
+ "ME": 2303,
+ "▁support": 2304,
+ "▁people": 2305,
+ "▁beh": 2306,
+ "▁already": 2307,
+ "Tr": 2308,
+ "▁done": 2309,
+ "dem": 2310,
+ "size": 2311,
+ "alpha": 2312,
+ "▁disc": 2313,
+ "])": 2314,
+ "▁Man": 2315,
+ "▁mil": 2316,
+ "▁stand": 2317,
+ "▁group": 2318,
+ "▁small": 2319,
+ "▁mag": 2320,
+ "сть": 2321,
+ "▁default": 2322,
+ "▁single": 2323,
+ "link": 2324,
+ "clude": 2325,
+ "▁ear": 2326,
+ "ilar": 2327,
+ "****": 2328,
+ "▁fix": 2329,
+ "ley": 2330,
+ "▁pas": 2331,
+ "ний": 2332,
+ "ission": 2333,
+ "▁implement": 2334,
+ "itch": 2335,
+ "▁года": 2336,
+ "▁always": 2337,
+ "▁Jah": 2338,
+ "pring": 2339,
+ "ção": 2340,
+ "plate": 2341,
+ "▁descri": 2342,
+ "▁head": 2343,
+ "init": 2344,
+ "ograf": 2345,
+ "▁query": 2346,
+ "ived": 2347,
+ "▁ing": 2348,
+ "pty": 2349,
+ "ha": 2350,
+ "▁mov": 2351,
+ "▁э": 2352,
+ "ette": 2353,
+ "ily": 2354,
+ "▁got": 2355,
+ "iled": 2356,
+ "icro": 2357,
+ "▁wr": 2358,
+ "ря": 2359,
+ "▁never": 2360,
+ "ores": 2361,
+ "▁bas": 2362,
+ "ios": 2363,
+ "lack": 2364,
+ "aint": 2365,
+ "vious": 2366,
+ "▁give": 2367,
+ "idad": 2368,
+ "En": 2369,
+ "ный": 2370,
+ "table": 2371,
+ "▁На": 2372,
+ "▁pat": 2373,
+ "тор": 2374,
+ "angu": 2375,
+ "loy": 2376,
+ "▁seg": 2377,
+ "array": 2378,
+ "▁Fl": 2379,
+ "▁index": 2380,
+ "▁sw": 2381,
+ "IMAGE": 2382,
+ "▁km": 2383,
+ "би": 2384,
+ "Class": 2385,
+ "ena": 2386,
+ "мен": 2387,
+ "comp": 2388,
+ "atus": 2389,
+ "rap": 2390,
+ "▁List": 2391,
+ "Error": 2392,
+ "▁typ": 2393,
+ "▁ма": 2394,
+ "cs": 2395,
+ "':": 2396,
+ "ji": 2397,
+ "▁However": 2398,
+ "▁те": 2399,
+ "▁below": 2400,
+ "▁App": 2401,
+ "ще": 2402,
+ "}_": 2403,
+ "bum": 2404,
+ "vir": 2405,
+ "ées": 2406,
+ "▁record": 2407,
+ "tain": 2408,
+ "lem": 2409,
+ "ital": 2410,
+ "▁imp": 2411,
+ "ego": 2412,
+ "▁od": 2413,
+ "▁rece": 2414,
+ "mit": 2415,
+ "ffic": 2416,
+ "stackoverflow": 2417,
+ "ieve": 2418,
+ "▁З": 2419,
+ "▁nov": 2420,
+ "це": 2421,
+ "▁Intern": 2422,
+ "bu": 2423,
+ "▁sugg": 2424,
+ "▁loop": 2425,
+ "ride": 2426,
+ "▁$(": 2427,
+ "▁super": 2428,
+ "rid": 2429,
+ "ных": 2430,
+ "▁Per": 2431,
+ "▁dom": 2432,
+ "='": 2433,
+ "utsch": 2434,
+ "len": 2435,
+ "▁write": 2436,
+ "▁inv": 2437,
+ "outh": 2438,
+ "▁Her": 2439,
+ "▁years": 2440,
+ "▁original": 2441,
+ "ega": 2442,
+ "▁Ste": 2443,
+ "▁seems": 2444,
+ "ég": 2445,
+ "▁next": 2446,
+ "eder": 2447,
+ "▁Ne": 2448,
+ "avas": 2449,
+ "ification": 2450,
+ "Exception": 2451,
+ "▁Der": 2452,
+ "▁ve": 2453,
+ "atic": 2454,
+ "hat": 2455,
+ "brary": 2456,
+ "return": 2457,
+ "urch": 2458,
+ "ision": 2459,
+ "mi": 2460,
+ "oint": 2461,
+ "▁day": 2462,
+ "iction": 2463,
+ "ál": 2464,
+ "▁és": 2465,
+ "▁though": 2466,
+ "action": 2467,
+ "ít": 2468,
+ "ungen": 2469,
+ "ours": 2470,
+ "▁script": 2471,
+ "▁information": 2472,
+ "▁multi": 2473,
+ "▁\\\\": 2474,
+ "ster": 2475,
+ "ке": 2476,
+ "AC": 2477,
+ "cies": 2478,
+ "▁display": 2479,
+ "oman": 2480,
+ "Time": 2481,
+ "ius": 2482,
+ "));": 2483,
+ "tre": 2484,
+ "▁lim": 2485,
+ "ately": 2486,
+ "éd": 2487,
+ "iste": 2488,
+ "▁са": 2489,
+ "post": 2490,
+ "uel": 2491,
+ "img": 2492,
+ "▁ч": 2493,
+ "ска": 2494,
+ "eld": 2495,
+ "pper": 2496,
+ "ula": 2497,
+ "▁general": 2498,
+ "Al": 2499,
+ "Form": 2500,
+ "▁upon": 2501,
+ "zo": 2502,
+ "amente": 2503,
+ "▁prom": 2504,
+ "▁ü": 2505,
+ "lex": 2506,
+ "▁turn": 2507,
+ "▁ме": 2508,
+ "ention": 2509,
+ "лен": 2510,
+ "▁af": 2511,
+ "icle": 2512,
+ "ств": 2513,
+ "▁Fil": 2514,
+ "▁Ф": 2515,
+ "avascript": 2516,
+ "Man": 2517,
+ "ara": 2518,
+ "ware": 2519,
+ "align": 2520,
+ "angle": 2521,
+ "▁Sc": 2522,
+ "unic": 2523,
+ "▁fran": 2524,
+ "Un": 2525,
+ "zi": 2526,
+ "met": 2527,
+ "Add": 2528,
+ "▁pub": 2529,
+ "ков": 2530,
+ "▁gen": 2531,
+ "▁pod": 2532,
+ "▁sum": 2533,
+ "▁having": 2534,
+ "▁avec": 2535,
+ "sl": 2536,
+ "▁fig": 2537,
+ "▁Res": 2538,
+ "Date": 2539,
+ "ules": 2540,
+ "with": 2541,
+ "ский": 2542,
+ "gu": 2543,
+ "ET": 2544,
+ "▁bro": 2545,
+ "rie": 2546,
+ "aps": 2547,
+ "ending": 2548,
+ "mail": 2549,
+ "ook": 2550,
+ "▁success": 2551,
+ "berg": 2552,
+ "▁deb": 2553,
+ "elta": 2554,
+ "()`": 2555,
+ "ential": 2556,
+ "frame": 2557,
+ "Key": 2558,
+ "inn": 2559,
+ "▁simple": 2560,
+ "ival": 2561,
+ "▁care": 2562,
+ "▁Web": 2563,
+ "\").": 2564,
+ ">": 2565,
+ "▁database": 2566,
+ "▁Now": 2567,
+ "Ind": 2568,
+ "▁мо": 2569,
+ "cht": 2570,
+ "ban": 2571,
+ "ram": 2572,
+ "equation": 2573,
+ "ski": 2574,
+ "ief": 2575,
+ "lim": 2576,
+ "Get": 2577,
+ "▁tre": 2578,
+ "aten": 2579,
+ "bed": 2580,
+ "▁Je": 2581,
+ "▁results": 2582,
+ "лю": 2583,
+ "тель": 2584,
+ "db": 2585,
+ "▁bit": 2586,
+ "body": 2587,
+ "Array": 2588,
+ "mu": 2589,
+ "pression": 2590,
+ "▁ста": 2591,
+ "ony": 2592,
+ "iff": 2593,
+ "▁bar": 2594,
+ "▁Arch": 2595,
+ "bers": 2596,
+ "){": 2597,
+ "▁Mon": 2598,
+ "▁doing": 2599,
+ "▁prof": 2600,
+ "▁install": 2601,
+ "▁position": 2602,
+ "ema": 2603,
+ "▁});": 2604,
+ "Path": 2605,
+ "ali": 2606,
+ "▁&&": 2607,
+ "lev": 2608,
+ "▁cannot": 2609,
+ "▁May": 2610,
+ "inst": 2611,
+ "-\\": 2612,
+ "▁coun": 2613,
+ "▁ang": 2614,
+ "▁appear": 2615,
+ "cor": 2616,
+ "ció": 2617,
+ "ided": 2618,
+ "questions": 2619,
+ "atter": 2620,
+ "▁Pa": 2621,
+ "select": 2622,
+ "▁princi": 2623,
+ "Event": 2624,
+ "▁side": 2625,
+ "▁mem": 2626,
+ "▁Jan": 2627,
+ "ario": 2628,
+ "▁within": 2629,
+ "▁Val": 2630,
+ "odes": 2631,
+ "iddle": 2632,
+ "uration": 2633,
+ "bra": 2634,
+ "▁date": 2635,
+ "[]": 2636,
+ "▁entre": 2637,
+ "ili": 2638,
+ "Portail": 2639,
+ "docs": 2640,
+ "ской": 2641,
+ "Element": 2642,
+ "▁message": 2643,
+ "▁nach": 2644,
+ "▁during": 2645,
+ "▁gra": 2646,
+ "etwork": 2647,
+ "▁By": 2648,
+ "▁tell": 2649,
+ "ete": 2650,
+ "~\\": 2651,
+ "▁bis": 2652,
+ "▁pu": 2653,
+ "▁red": 2654,
+ "▁thing": 2655,
+ "▁sort": 2656,
+ "xim": 2657,
+ "ires": 2658,
+ "User": 2659,
+ "iod": 2660,
+ "▁Est": 2661,
+ "osed": 2662,
+ "oute": 2663,
+ "▁Les": 2664,
+ "▁sent": 2665,
+ "ribute": 2666,
+ "utes": 2667,
+ "istory": 2668,
+ "▁service": 2669,
+ "';": 2670,
+ "field": 2671,
+ "▁IN": 2672,
+ "ension": 2673,
+ "rel": 2674,
+ "▁going": 2675,
+ "web": 2676,
+ "Context": 2677,
+ "▁later": 2678,
+ "uk": 2679,
+ "layout": 2680,
+ "ona": 2681,
+ "át": 2682,
+ "----------------": 2683,
+ "▁exact": 2684,
+ "andom": 2685,
+ "▁sie": 2686,
+ "II": 2687,
+ "▁They": 2688,
+ "mente": 2689,
+ "ibli": 2690,
+ "▁fine": 2691,
+ "UT": 2692,
+ "▁develop": 2693,
+ "▁Ein": 2694,
+ "soft": 2695,
+ "off": 2696,
+ "Set": 2697,
+ "▁az": 2698,
+ "eters": 2699,
+ "ilder": 2700,
+ "ples": 2701,
+ "▁specific": 2702,
+ "▁om": 2703,
+ "error": 2704,
+ "ently": 2705,
+ "▁film": 2706,
+ "uck": 2707,
+ "ains": 2708,
+ "ación": 2709,
+ "ges": 2710,
+ "жа": 2711,
+ "▁things": 2712,
+ "Sh": 2713,
+ "▁thought": 2714,
+ "▁added": 2715,
+ "dep": 2716,
+ "ского": 2717,
+ "▁Li": 2718,
+ "ils": 2719,
+ "ync": 2720,
+ "▁то": 2721,
+ "ries": 2722,
+ "▁cu": 2723,
+ "chen": 2724,
+ "ION": 2725,
+ "▁Des": 2726,
+ "ultado": 2727,
+ "irt": 2728,
+ "▁based": 2729,
+ "▁mo": 2730,
+ "▁dest": 2731,
+ "png": 2732,
+ "reen": 2733,
+ "▁running": 2734,
+ "amma": 2735,
+ "oud": 2736,
+ "▁refer": 2737,
+ "ious": 2738,
+ "▁Jul": 2739,
+ "▁search": 2740,
+ "ald": 2741,
+ "ede": 2742,
+ "▁wrong": 2743,
+ "An": 2744,
+ "▁until": 2745,
+ "site": 2746,
+ "ayer": 2747,
+ "▁once": 2748,
+ "arr": 2749,
+ "▁against": 2750,
+ "====": 2751,
+ "▁source": 2752,
+ "arn": 2753,
+ "api": 2754,
+ "▁represent": 2755,
+ "▁aff": 2756,
+ "▁sein": 2757,
+ "▁allow": 2758,
+ "ormal": 2759,
+ "ended": 2760,
+ "▁control": 2761,
+ "mathbf": 2762,
+ "come": 2763,
+ "cur": 2764,
+ "endo": 2765,
+ "wa": 2766,
+ "▁update": 2767,
+ "▁inside": 2768,
+ "▁reason": 2769,
+ "omen": 2770,
+ "▁вы": 2771,
+ "De": 2772,
+ "▁је": 2773,
+ "sw": 2774,
+ "▁sever": 2775,
+ "Of": 2776,
+ "▁instance": 2777,
+ "▁mer": 2778,
+ "▁effect": 2779,
+ "color": 2780,
+ "ugust": 2781,
+ "ilt": 2782,
+ "des": 2783,
+ "itz": 2784,
+ "ulation": 2785,
+ "nie": 2786,
+ "▁World": 2787,
+ "▁similar": 2788,
+ "ymbol": 2789,
+ "hing": 2790,
+ "▁mark": 2791,
+ "State": 2792,
+ "▁content": 2793,
+ "▁means": 2794,
+ "amed": 2795,
+ "▁End": 2796,
+ "ND": 2797,
+ "count": 2798,
+ "▁Inst": 2799,
+ "perty": 2800,
+ "ctor": 2801,
+ "▁{\\": 2802,
+ "▁Let": 2803,
+ "▁!=": 2804,
+ "▁getting": 2805,
+ "uth": 2806,
+ "umber": 2807,
+ "▁Consultado": 2808,
+ "schaft": 2809,
+ "lete": 2810,
+ "▁Will": 2811,
+ "▁Em": 2812,
+ "head": 2813,
+ "▁leg": 2814,
+ "ном": 2815,
+ "Or": 2816,
+ "arm": 2817,
+ "pond": 2818,
+ "▁Christ": 2819,
+ "▁around": 2820,
+ "▁clear": 2821,
+ "▁href": 2822,
+ "▁See": 2823,
+ "').": 2824,
+ "▁created": 2825,
+ "▁button": 2826,
+ "ining": 2827,
+ "▁click": 2828,
+ "iam": 2829,
+ "plit": 2830,
+ "For": 2831,
+ "▁polit": 2832,
+ "▁seem": 2833,
+ "▁life": 2834,
+ "нов": 2835,
+ "▁intern": 2836,
+ "щи": 2837,
+ "sel": 2838,
+ "soci": 2839,
+ "▁stor": 2840,
+ "cle": 2841,
+ "earch": 2842,
+ "android": 2843,
+ "}^{": 2844,
+ "▁either": 2845,
+ "▁few": 2846,
+ "▁initial": 2847,
+ "length": 2848,
+ "ria": 2849,
+ "sql": 2850,
+ "wik": 2851,
+ "▁ét": 2852,
+ "uer": 2853,
+ "▁valid": 2854,
+ "And": 2855,
+ "include": 2856,
+ "ury": 2857,
+ "▁sus": 2858,
+ "ired": 2859,
+ "▁After": 2860,
+ "▁due": 2861,
+ "▁bei": 2862,
+ "ources": 2863,
+ "▁Nov": 2864,
+ "Act": 2865,
+ "▁Cont": 2866,
+ "▁break": 2867,
+ "ested": 2868,
+ "▁actually": 2869,
+ "else": 2870,
+ "tml": 2871,
+ "rer": 2872,
+ "ones": 2873,
+ "▁design": 2874,
+ "▁property": 2875,
+ "phi": 2876,
+ "ality": 2877,
+ "och": 2878,
+ "ists": 2879,
+ "▁·": 2880,
+ "udio": 2881,
+ "AB": 2882,
+ "ala": 2883,
+ "iones": 2884,
+ "фи": 2885,
+ "find": 2886,
+ "As": 2887,
+ "▁custom": 2888,
+ "▁ann": 2889,
+ "ES": 2890,
+ "OT": 2891,
+ "lambda": 2892,
+ "▁ident": 2893,
+ "▁organ": 2894,
+ "▁Cent": 2895,
+ "▁Char": 2896,
+ "▁os": 2897,
+ "▁hard": 2898,
+ "ров": 2899,
+ "▁/>": 2900,
+ "ko": 2901,
+ "▁exper": 2902,
+ "▁separ": 2903,
+ "yl": 2904,
+ "ourn": 2905,
+ "▁dev": 2906,
+ "▁auch": 2907,
+ "▁block": 2908,
+ "book": 2909,
+ "▁map": 2910,
+ "illa": 2911,
+ "▁comput": 2912,
+ "▁space": 2913,
+ "result": 2914,
+ ")}": 2915,
+ "▁echo": 2916,
+ "config": 2917,
+ "hi": 2918,
+ "▁large": 2919,
+ "▁width": 2920,
+ "▁Go": 2921,
+ "mat": 2922,
+ "▁diff": 2923,
+ "▁kind": 2924,
+ "ances": 2925,
+ "ynam": 2926,
+ "▁color": 2927,
+ "Int": 2928,
+ "sol": 2929,
+ "▁pi": 2930,
+ "▁character": 2931,
+ "oment": 2932,
+ "▁response": 2933,
+ "igma": 2934,
+ "wards": 2935,
+ "arrow": 2936,
+ "су": 2937,
+ "ties": 2938,
+ "▁über": 2939,
+ "Image": 2940,
+ "yd": 2941,
+ "▁пере": 2942,
+ "▁node": 2943,
+ "▁item": 2944,
+ "achine": 2945,
+ "ima": 2946,
+ "▁va": 2947,
+ "▁approach": 2948,
+ "▁wer": 2949,
+ "▁че": 2950,
+ "On": 2951,
+ "ollow": 2952,
+ "она": 2953,
+ "cted": 2954,
+ "ured": 2955,
+ "Controller": 2956,
+ "lied": 2957,
+ "▁jo": 2958,
+ "▁dal": 2959,
+ "unk": 2960,
+ "▁î": 2961,
+ "start": 2962,
+ "ola": 2963,
+ "▁compon": 2964,
+ "IC": 2965,
+ "bit": 2966,
+ "▁base": 2967,
+ "пу": 2968,
+ "▁idea": 2969,
+ "▁dire": 2970,
+ "▁rad": 2971,
+ "group": 2972,
+ "▁With": 2973,
+ "server": 2974,
+ "side": 2975,
+ "sing": 2976,
+ "▁dies": 2977,
+ "▁near": 2978,
+ "▁voor": 2979,
+ "▁argument": 2980,
+ "▁},": 2981,
+ "▁land": 2982,
+ "▁names": 2983,
+ "▁option": 2984,
+ "ithub": 2985,
+ "pped": 2986,
+ "aug": 2987,
+ "▁links": 2988,
+ "▁full": 2989,
+ "▁situ": 2990,
+ "▁console": 2991,
+ "▁etc": 2992,
+ "aux": 2993,
+ "▁Cor": 2994,
+ "icrosoft": 2995,
+ "▁came": 2996,
+ "local": 2997,
+ "▁known": 2998,
+ "▁multiple": 2999,
+ "anguage": 3000,
+ "▁total": 3001,
+ "ology": 3002,
+ "ät": 3003,
+ "▁Х": 3004,
+ "▁fre": 3005,
+ "▁ten": 3006,
+ "ideo": 3007,
+ "▁bes": 3008,
+ "true": 3009,
+ "Query": 3010,
+ "omm": 3011,
+ "▁Art": 3012,
+ "▁keep": 3013,
+ "▁University": 3014,
+ "reate": 3015,
+ "pport": 3016,
+ "▁python": 3017,
+ "tra": 3018,
+ "ector": 3019,
+ "рі": 3020,
+ "oph": 3021,
+ "▁conc": 3022,
+ "▁four": 3023,
+ "viron": 3024,
+ "▁via": 3025,
+ "?\"": 3026,
+ "image": 3027,
+ "oll": 3028,
+ "ные": 3029,
+ "▁context": 3030,
+ "▁sem": 3031,
+ "._": 3032,
+ "▁eng": 3033,
+ "mar": 3034,
+ "AD": 3035,
+ "▁mor": 3036,
+ "▁Cal": 3037,
+ "▁cell": 3038,
+ "imal": 3039,
+ "ATE": 3040,
+ "▁inf": 3041,
+ "ön": 3042,
+ "uffer": 3043,
+ "sq": 3044,
+ "....": 3045,
+ "▁zur": 3046,
+ "With": 3047,
+ "ран": 3048,
+ "chn": 3049,
+ "▁door": 3050,
+ "content": 3051,
+ "▁miss": 3052,
+ "▁simp": 3053,
+ "ár": 3054,
+ "ira": 3055,
+ "▁hat": 3056,
+ "Test": 3057,
+ "▁certain": 3058,
+ "NS": 3059,
+ "▁cho": 3060,
+ "▁adv": 3061,
+ "where": 3062,
+ "▁looking": 3063,
+ "▁times": 3064,
+ "них": 3065,
+ "uto": 3066,
+ "▁É": 3067,
+ "can": 3068,
+ "host": 3069,
+ "▁(*": 3070,
+ "loat": 3071,
+ "▁nicht": 3072,
+ "Field": 3073,
+ "burg": 3074,
+ "const": 3075,
+ "ades": 3076,
+ "▁Mus": 3077,
+ "▁nothing": 3078,
+ "▁incre": 3079,
+ "▁Min": 3080,
+ "▁power": 3081,
+ "▁American": 3082,
+ "ln": 3083,
+ "valid": 3084,
+ "ungs": 3085,
+ "▁National": 3086,
+ "▁San": 3087,
+ "▁York": 3088,
+ "Request": 3089,
+ "char": 3090,
+ "▁Ze": 3091,
+ "button": 3092,
+ "▁alg": 3093,
+ "SON": 3094,
+ "▁ap": 3095,
+ "uff": 3096,
+ "ability": 3097,
+ "ем": 3098,
+ "▁anything": 3099,
+ "ela": 3100,
+ "())": 3101,
+ "ба": 3102,
+ "ampion": 3103,
+ "▁pot": 3104,
+ "▁fut": 3105,
+ "ailable": 3106,
+ "▁prop": 3107,
+ "\"]": 3108,
+ "▁less": 3109,
+ "lag": 3110,
+ "▁August": 3111,
+ "It": 3112,
+ "▁please": 3113,
+ "▁style": 3114,
+ "▁Also": 3115,
+ "bt": 3116,
+ "▁probably": 3117,
+ "▁One": 3118,
+ "▁poss": 3119,
+ "UI": 3120,
+ "uit": 3121,
+ "▁West": 3122,
+ "hn": 3123,
+ "+\\": 3124,
+ "Button": 3125,
+ "json": 3126,
+ "err": 3127,
+ "rame": 3128,
+ "dom": 3129,
+ "ilon": 3130,
+ "alf": 3131,
+ "▁client": 3132,
+ "▁continu": 3133,
+ "xml": 3134,
+ "pec": 3135,
+ "ador": 3136,
+ "ls": 3137,
+ "▁however": 3138,
+ "▁Any": 3139,
+ "änd": 3140,
+ "mathrm": 3141,
+ "▁url": 3142,
+ "▁book": 3143,
+ "▁gl": 3144,
+ "ives": 3145,
+ "gi": 3146,
+ "▁tro": 3147,
+ "▁US": 3148,
+ "point": 3149,
+ "open": 3150,
+ "▁cur": 3151,
+ "▁era": 3152,
+ "▁particular": 3153,
+ "▁HT": 3154,
+ "oot": 3155,
+ "ello": 3156,
+ "lobal": 3157,
+ "▁action": 3158,
+ "▁Int": 3159,
+ "▁include": 3160,
+ "▁elements": 3161,
+ "ная": 3162,
+ "ards": 3163,
+ "▁Bl": 3164,
+ "▁hum": 3165,
+ "from": 3166,
+ "change": 3167,
+ "▁functions": 3168,
+ "hen": 3169,
+ "Service": 3170,
+ "▁height": 3171,
+ "▁Land": 3172,
+ "ias": 3173,
+ "gs": 3174,
+ "ión": 3175,
+ "лов": 3176,
+ "node": 3177,
+ ".”": 3178,
+ "hand": 3179,
+ "▁бу": 3180,
+ "▁amb": 3181,
+ "▁Lu": 3182,
+ "▁throw": 3183,
+ "▁mot": 3184,
+ "▁Act": 3185,
+ "▁world": 3186,
+ "_\\": 3187,
+ "base": 3188,
+ "▁Co": 3189,
+ "▁arch": 3190,
+ "▁####": 3191,
+ "ged": 3192,
+ "pril": 3193,
+ "older": 3194,
+ "Model": 3195,
+ "▁several": 3196,
+ "lie": 3197,
+ "check": 3198,
+ "]{": 3199,
+ "cons": 3200,
+ "▁Tra": 3201,
+ "heck": 3202,
+ "▁least": 3203,
+ "down": 3204,
+ "ebru": 3205,
+ "Def": 3206,
+ "param": 3207,
+ "ischer": 3208,
+ "▁cas": 3209,
+ "CH": 3210,
+ "▁address": 3211,
+ "▁раз": 3212,
+ "ufen": 3213,
+ "urope": 3214,
+ "ей": 3215,
+ "▁bound": 3216,
+ "CO": 3217,
+ "▁Ang": 3218,
+ "▁Ma": 3219,
+ "Index": 3220,
+ "core": 3221,
+ "ouch": 3222,
+ "atabase": 3223,
+ "ribution": 3224,
+ "document": 3225,
+ "Le": 3226,
+ "}_{": 3227,
+ "vern": 3228,
+ "▁statement": 3229,
+ "▁Brit": 3230,
+ "ono": 3231,
+ "psilon": 3232,
+ "▁level": 3233,
+ "▁product": 3234,
+ "IS": 3235,
+ "▁course": 3236,
+ "▁Mr": 3237,
+ ">\r": 3238,
+ "▁background": 3239,
+ "▁ret": 3240,
+ "ering": 3241,
+ "most": 3242,
+ "сько": 3243,
+ "▁thread": 3244,
+ "itional": 3245,
+ "ites": 3246,
+ "Pl": 3247,
+ "▁dos": 3248,
+ "ga": 3249,
+ "day": 3250,
+ "▁Gener": 3251,
+ "▁tw": 3252,
+ "Ad": 3253,
+ "\"><": 3254,
+ "▁($": 3255,
+ "▁moment": 3256,
+ "title": 3257,
+ "create": 3258,
+ "version": 3259,
+ "Manager": 3260,
+ "▁fur": 3261,
+ "pping": 3262,
+ "ijn": 3263,
+ "ос": 3264,
+ "▁rather": 3265,
+ "ptember": 3266,
+ "OS": 3267,
+ "▁site": 3268,
+ "▁caus": 3269,
+ "ani": 3270,
+ "▁home": 3271,
+ "мі": 3272,
+ "▁short": 3273,
+ "pa": 3274,
+ "▁lead": 3275,
+ "ished": 3276,
+ "cing": 3277,
+ "ording": 3278,
+ "▁prote": 3279,
+ "сле": 3280,
+ "LECT": 3281,
+ "▁didn": 3282,
+ "position": 3283,
+ "\",\"": 3284,
+ "(),": 3285,
+ "trans": 3286,
+ "▁lot": 3287,
+ "▁од": 3288,
+ "AS": 3289,
+ "▁sat": 3290,
+ "▁points": 3291,
+ "github": 3292,
+ "style": 3293,
+ "▁году": 3294,
+ "▁Dis": 3295,
+ "ponent": 3296,
+ "omet": 3297,
+ "zer": 3298,
+ "ULL": 3299,
+ "▁pa": 3300,
+ "AP": 3301,
+ "aces": 3302,
+ "▁United": 3303,
+ "ama": 3304,
+ "ety": 3305,
+ "Color": 3306,
+ "▁enough": 3307,
+ "US": 3308,
+ "▁length": 3309,
+ "());": 3310,
+ "^{\\": 3311,
+ "fty": 3312,
+ "Box": 3313,
+ "apter": 3314,
+ "▁complet": 3315,
+ "ник": 3316,
+ "max": 3317,
+ "object": 3318,
+ "({": 3319,
+ "imgur": 3320,
+ "itive": 3321,
+ "unch": 3322,
+ "▁Sub": 3323,
+ "ende": 3324,
+ "гу": 3325,
+ "ategory": 3326,
+ "ты": 3327,
+ "iano": 3328,
+ "▁upd": 3329,
+ "▁Aust": 3330,
+ "}{\\": 3331,
+ "top": 3332,
+ "las": 3333,
+ "pis": 3334,
+ "iness": 3335,
+ "▁{\r": 3336,
+ "▁Е": 3337,
+ "Gr": 3338,
+ "▁AS": 3339,
+ "▁ве": 3340,
+ "thers": 3341,
+ "▁defined": 3342,
+ "azione": 3343,
+ "▁offic": 3344,
+ "▁autom": 3345,
+ "ün": 3346,
+ "▁brow": 3347,
+ "▁serv": 3348,
+ "▁remove": 3349,
+ "iro": 3350,
+ "▁Bibli": 3351,
+ "ED": 3352,
+ "▁whole": 3353,
+ "▁ш": 3354,
+ "▁Java": 3355,
+ "▁zum": 3356,
+ "ua": 3357,
+ "pm": 3358,
+ "dev": 3359,
+ "кра": 3360,
+ "olds": 3361,
+ "▁War": 3362,
+ "än": 3363,
+ "pass": 3364,
+ "uz": 3365,
+ "[\"": 3366,
+ "▁tri": 3367,
+ "ised": 3368,
+ "ха": 3369,
+ "▁memory": 3370,
+ "▁Port": 3371,
+ "oper": 3372,
+ "Up": 3373,
+ "▁Thank": 3374,
+ "▁Mich": 3375,
+ "ych": 3376,
+ "board": 3377,
+ "бу": 3378,
+ "Inst": 3379,
+ "▁begin": 3380,
+ "ination": 3381,
+ "▁Mod": 3382,
+ "_,": 3383,
+ "▁Den": 3384,
+ "option": 3385,
+ "▁construct": 3386,
+ "▁Just": 3387,
+ "Map": 3388,
+ "run": 3389,
+ "▁respect": 3390,
+ "ham": 3391,
+ "ман": 3392,
+ "imedia": 3393,
+ "▁apply": 3394,
+ "cription": 3395,
+ "main": 3396,
+ "▁Ка": 3397,
+ "oid": 3398,
+ "Code": 3399,
+ "};": 3400,
+ "Info": 3401,
+ "▁format": 3402,
+ "Log": 3403,
+ "▁су": 3404,
+ "▁lat": 3405,
+ "utor": 3406,
+ "▁reference": 3407,
+ "▁calcul": 3408,
+ "onn": 3409,
+ "Lo": 3410,
+ "infty": 3411,
+ "▁along": 3412,
+ "▁č": 3413,
+ "▁task": 3414,
+ "▁ev": 3415,
+ "theta": 3416,
+ "ras": 3417,
+ "jor": 3418,
+ "▁бо": 3419,
+ "▁princip": 3420,
+ "My": 3421,
+ "▁einer": 3422,
+ "▁Es": 3423,
+ "omb": 3424,
+ "quad": 3425,
+ "^{-": 3426,
+ "ump": 3427,
+ "▁till": 3428,
+ "ді": 3429,
+ "▁looks": 3430,
+ "▁ok": 3431,
+ "ца": 3432,
+ "nu": 3433,
+ "Fil": 3434,
+ "▁sont": 3435,
+ "▁Med": 3436,
+ "ague": 3437,
+ "▁cost": 3438,
+ "▁Sim": 3439,
+ "▁comment": 3440,
+ "▁(\\": 3441,
+ "egen": 3442,
+ "▁parameter": 3443,
+ "▁France": 3444,
+ "rep": 3445,
+ "▁TH": 3446,
+ "▁yet": 3447,
+ "▁away": 3448,
+ "▁circ": 3449,
+ "▁API": 3450,
+ "emp": 3451,
+ "ві": 3452,
+ "Layout": 3453,
+ "▁lines": 3454,
+ "▁Part": 3455,
+ "empt": 3456,
+ "▁Bi": 3457,
+ "▁mind": 3458,
+ "ky": 3459,
+ "ging": 3460,
+ "▁report": 3461,
+ "▁Add": 3462,
+ "род": 3463,
+ "▁range": 3464,
+ "cias": 3465,
+ "lip": 3466,
+ "▁Kar": 3467,
+ "▁Commons": 3468,
+ "gerufen": 3469,
+ "aff": 3470,
+ "sec": 3471,
+ "▁html": 3472,
+ "lig": 3473,
+ "▁window": 3474,
+ "inition": 3475,
+ "cis": 3476,
+ "▁ut": 3477,
+ "eln": 3478,
+ "▁aux": 3479,
+ "▁neg": 3480,
+ "Hand": 3481,
+ "▁);": 3482,
+ "▁anal": 3483,
+ "▁fri": 3484,
+ "▁си": 3485,
+ "etch": 3486,
+ "md": 3487,
+ "page": 3488,
+ "▁library": 3489,
+ "▁:=": 3490,
+ "ROM": 3491,
+ "You": 3492,
+ "space": 3493,
+ "▁durch": 3494,
+ "▁host": 3495,
+ "aven": 3496,
+ "▁File": 3497,
+ "alle": 3498,
+ "тив": 3499,
+ "▁pap": 3500,
+ "ство": 3501,
+ "mark": 3502,
+ "▁mais": 3503,
+ "erman": 3504,
+ "Size": 3505,
+ "ек": 3506,
+ "▁Ма": 3507,
+ "▁isn": 3508,
+ "▁copy": 3509,
+ "sten": 3510,
+ "river": 3511,
+ "▁went": 3512,
+ "▁javascript": 3513,
+ "▁sam": 3514,
+ "▁frame": 3515,
+ "▁vi": 3516,
+ "▁previous": 3517,
+ "rodu": 3518,
+ "▁methods": 3519,
+ "▁necess": 3520,
+ "NA": 3521,
+ "cket": 3522,
+ "▁opt": 3523,
+ "Loc": 3524,
+ "how": 3525,
+ "▁în": 3526,
+ "ship": 3527,
+ "▁itself": 3528,
+ "▁Please": 3529,
+ "iene": 3530,
+ "вер": 3531,
+ "▁<<": 3532,
+ "▁mill": 3533,
+ "▁trad": 3534,
+ "pace": 3535,
+ "▁Har": 3536,
+ "iten": 3537,
+ "wise": 3538,
+ "write": 3539,
+ "ции": 3540,
+ "ры": 3541,
+ "Line": 3542,
+ "olo": 3543,
+ "▁accept": 3544,
+ "height": 3545,
+ "▁elect": 3546,
+ "ella": 3547,
+ "▁på": 3548,
+ "Select": 3549,
+ "▁ли": 3550,
+ "▁\\<": 3551,
+ "((": 3552,
+ "▁ID": 3553,
+ "ops": 3554,
+ "ван": 3555,
+ "ió": 3556,
+ "TP": 3557,
+ "»,": 3558,
+ "nection": 3559,
+ "parent": 3560,
+ "▁Mag": 3561,
+ "Table": 3562,
+ "Over": 3563,
+ "▁network": 3564,
+ "спо": 3565,
+ "▁assign": 3566,
+ "igger": 3567,
+ "irm": 3568,
+ ")`": 3569,
+ "ottom": 3570,
+ "beta": 3571,
+ "▁dell": 3572,
+ "▁body": 3573,
+ "▁да": 3574,
+ "▁Your": 3575,
+ "▁fue": 3576,
+ "▁package": 3577,
+ "▁light": 3578,
+ "▁**": 3579,
+ "MP": 3580,
+ "▁cou": 3581,
+ "yes": 3582,
+ ":\\": 3583,
+ "▁Ч": 3584,
+ "▁mention": 3585,
+ "ensch": 3586,
+ "▁deg": 3587,
+ "▁convert": 3588,
+ "▁Dav": 3589,
+ "adt": 3590,
+ "Result": 3591,
+ "though": 3592,
+ "▁bus": 3593,
+ "xy": 3594,
+ "▁seen": 3595,
+ "All": 3596,
+ "public": 3597,
+ "ively": 3598,
+ "▁Rec": 3599,
+ "▁His": 3600,
+ "sim": 3601,
+ "▁för": 3602,
+ "▁histor": 3603,
+ "▁sett": 3604,
+ "rat": 3605,
+ "abled": 3606,
+ "▁»,": 3607,
+ "google": 3608,
+ "Web": 3609,
+ "él": 3610,
+ "▁title": 3611,
+ "▁Janu": 3612,
+ "ја": 3613,
+ "▁took": 3614,
+ "iden": 3615,
+ "sz": 3616,
+ "▁Get": 3617,
+ "▁objects": 3618,
+ "▁common": 3619,
+ "▁changes": 3620,
+ "▁Lond": 3621,
+ "▁extern": 3622,
+ "▁ju": 3623,
+ "Is": 3624,
+ "▁available": 3625,
+ "tri": 3626,
+ "▁más": 3627,
+ "osa": 3628,
+ "Be": 3629,
+ "▁Data": 3630,
+ "ural": 3631,
+ "▁hom": 3632,
+ "▁account": 3633,
+ "oo": 3634,
+ "▁perm": 3635,
+ "respond": 3636,
+ "yt": 3637,
+ "▁send": 3638,
+ "▁returns": 3639,
+ "ivid": 3640,
+ "▁expla": 3641,
+ "ín": 3642,
+ "▁nor": 3643,
+ "If": 3644,
+ "▁From": 3645,
+ "▁target": 3646,
+ "fect": 3647,
+ "ент": 3648,
+ "▁uit": 3649,
+ "▁Jo": 3650,
+ "▁variables": 3651,
+ "▁series": 3652,
+ "▁func": 3653,
+ "▁himself": 3654,
+ "▁ча": 3655,
+ "anti": 3656,
+ "▁ach": 3657,
+ "ialog": 3658,
+ "▁std": 3659,
+ "ae": 3660,
+ "▁foot": 3661,
+ "▁unter": 3662,
+ "gress": 3663,
+ "Not": 3664,
+ "rad": 3665,
+ "fér": 3666,
+ "▁util": 3667,
+ "orem": 3668,
+ "▁sou": 3669,
+ "opt": 3670,
+ "▁og": 3671,
+ "▁uma": 3672,
+ "itar": 3673,
+ "▁Ok": 3674,
+ "ück": 3675,
+ "sqrt": 3676,
+ "▁ant": 3677,
+ "▁werden": 3678,
+ "år": 3679,
+ "});": 3680,
+ "▁Paris": 3681,
+ "▁exception": 3682,
+ "▁determ": 3683,
+ "▁Vol": 3684,
+ "▁Sam": 3685,
+ "▁ess": 3686,
+ "lies": 3687,
+ "ioni": 3688,
+ "oding": 3689,
+ "idget": 3690,
+ "▁pri": 3691,
+ "▁whether": 3692,
+ "▁под": 3693,
+ "▁numbers": 3694,
+ "▁~": 3695,
+ "event": 3696,
+ "▁shows": 3697,
+ "atures": 3698,
+ "▁house": 3699,
+ "▁face": 3700,
+ "▁się": 3701,
+ "vironment": 3702,
+ "van": 3703,
+ "▁including": 3704,
+ "▁<-": 3705,
+ "times": 3706,
+ "now": 3707,
+ "▁pur": 3708,
+ "ifier": 3709,
+ "▁emp": 3710,
+ "▁cla": 3711,
+ "mon": 3712,
+ "▁Das": 3713,
+ "ady": 3714,
+ "▁від": 3715,
+ "▁ц": 3716,
+ "abor": 3717,
+ "OST": 3718,
+ "▁band": 3719,
+ "▁ú": 3720,
+ "▁exactly": 3721,
+ "iert": 3722,
+ "avig": 3723,
+ "▁redu": 3724,
+ "▁SE": 3725,
+ "lished": 3726,
+ "Bu": 3727,
+ "Message": 3728,
+ "cell": 3729,
+ "fully": 3730,
+ "▁sv": 3731,
+ "▁makes": 3732,
+ "pol": 3733,
+ "▁required": 3734,
+ "ferrer": 3735,
+ "▁pers": 3736,
+ "▁mi": 3737,
+ "FI": 3738,
+ "▁Paul": 3739,
+ "▁UI": 3740,
+ "▁Bel": 3741,
+ "inc": 3742,
+ "▁contains": 3743,
+ "Out": 3744,
+ "asure": 3745,
+ "pu": 3746,
+ "oto": 3747,
+ "▁game": 3748,
+ "zn": 3749,
+ "▁Why": 3750,
+ "orith": 3751,
+ "big": 3752,
+ "кий": 3753,
+ "sigma": 3754,
+ "▁quite": 3755,
+ "▁jed": 3756,
+ "rec": 3757,
+ "▁SQL": 3758,
+ "бе": 3759,
+ "▁Mart": 3760,
+ "ya": 3761,
+ "▁school": 3762,
+ "▁simply": 3763,
+ "▁vor": 3764,
+ "▁double": 3765,
+ "рав": 3766,
+ "▁Str": 3767,
+ "iem": 3768,
+ "▁album": 3769,
+ "▁resol": 3770,
+ "▁dei": 3771,
+ "▁Wik": 3772,
+ "▁aw": 3773,
+ "umb": 3774,
+ "ols": 3775,
+ "▁*/": 3776,
+ "▁ze": 3777,
+ "▁anim": 3778,
+ "/>": 3779,
+ "ris": 3780,
+ "resh": 3781,
+ "No": 3782,
+ "iques": 3783,
+ "current": 3784,
+ "▁period": 3785,
+ "▁April": 3786,
+ "▁store": 3787,
+ "','": 3788,
+ "▁Set": 3789,
+ "={": 3790,
+ "ached": 3791,
+ "▁Mal": 3792,
+ "▁Pal": 3793,
+ "antes": 3794,
+ "aterial": 3795,
+ "▁worked": 3796,
+ "leq": 3797,
+ "oreferrer": 3798,
+ "▁happen": 3799,
+ "▁box": 3800,
+ "ney": 3801,
+ "▁close": 3802,
+ "▁gran": 3803,
+ "▁lie": 3804,
+ "▁ir": 3805,
+ "▁expected": 3806,
+ "▁для": 3807,
+ "click": 3808,
+ "și": 3809,
+ "▁parte": 3810,
+ "ogn": 3811,
+ "▁Form": 3812,
+ "▁memb": 3813,
+ "▁plan": 3814,
+ "▁team": 3815,
+ "][": 3816,
+ "▁commun": 3817,
+ "orry": 3818,
+ "ency": 3819,
+ "gl": 3820,
+ "inary": 3821,
+ "cdot": 3822,
+ "^\\": 3823,
+ "▁First": 3824,
+ "ander": 3825,
+ "▁Dec": 3826,
+ "request": 3827,
+ "ства": 3828,
+ "▁structure": 3829,
+ "▁||": 3830,
+ "▁Comp": 3831,
+ "actory": 3832,
+ "▁Mil": 3833,
+ "▁Some": 3834,
+ "Stream": 3835,
+ "▁assum": 3836,
+ "uen": 3837,
+ "▁words": 3838,
+ "▁September": 3839,
+ "▁Ко": 3840,
+ "▁days": 3841,
+ "ories": 3842,
+ "став": 3843,
+ "sm": 3844,
+ "vin": 3845,
+ "partial": 3846,
+ "▁parent": 3847,
+ "oj": 3848,
+ "нии": 3849,
+ "!\"": 3850,
+ "ugin": 3851,
+ "▁Windows": 3852,
+ "Ed": 3853,
+ ":}": 3854,
+ "▁q": 3855,
+ "▁ben": 3856,
+ "iana": 3857,
+ "▁label": 3858,
+ "state": 3859,
+ "uted": 3860,
+ "▁()": 3861,
+ "▁сво": 3862,
+ "▁edit": 3863,
+ "uring": 3864,
+ "▁NS": 3865,
+ "▁Jahr": 3866,
+ "▁provide": 3867,
+ "He": 3868,
+ "▁Yes": 3869,
+ "anel": 3870,
+ "ename": 3871,
+ "▁Don": 3872,
+ "isk": 3873,
+ "gra": 3874,
+ "elij": 3875,
+ "▁root": 3876,
+ "*/": 3877,
+ "▁Fre": 3878,
+ "▁Mor": 3879,
+ "used": 3880,
+ "range": 3881,
+ "▁tamb": 3882,
+ "▁module": 3883,
+ "▁directory": 3884,
+ "ounds": 3885,
+ "Activity": 3886,
+ "▁mu": 3887,
+ "info": 3888,
+ "▁free": 3889,
+ "orge": 3890,
+ "tab": 3891,
+ ")=": 3892,
+ "lang": 3893,
+ "▁ос": 3894,
+ "▁FROM": 3895,
+ "▁enter": 3896,
+ "▁became": 3897,
+ "idae": 3898,
+ "хи": 3899,
+ "▁States": 3900,
+ "verse": 3901,
+ "▁expl": 3902,
+ "ynt": 3903,
+ "UN": 3904,
+ "ee": 3905,
+ "endent": 3906,
+ "▁making": 3907,
+ "▁\"$": 3908,
+ "uni": 3909,
+ "quence": 3910,
+ "▁lui": 3911,
+ "HT": 3912,
+ "▁uses": 3913,
+ "zie": 3914,
+ "nia": 3915,
+ "Content": 3916,
+ "▁Count": 3917,
+ "▁standard": 3918,
+ "ENT": 3919,
+ "▁кон": 3920,
+ "fort": 3921,
+ "adas": 3922,
+ "зу": 3923,
+ "System": 3924,
+ "▁Sw": 3925,
+ "▁ever": 3926,
+ "LO": 3927,
+ "▁correspond": 3928,
+ "▁Po": 3929,
+ "argin": 3930,
+ "кт": 3931,
+ "ій": 3932,
+ "▁remain": 3933,
+ "cio": 3934,
+ "▁actual": 3935,
+ "сту": 3936,
+ "▁sind": 3937,
+ "▁Pe": 3938,
+ "▁changed": 3939,
+ "▁Note": 3940,
+ "skie": 3941,
+ "▁family": 3942,
+ "ità": 3943,
+ "cos": 3944,
+ "txt": 3945,
+ "ker": 3946,
+ "ceed": 3947,
+ "▁arr": 3948,
+ "▁cam": 3949,
+ "izer": 3950,
+ "▁Dan": 3951,
+ "hel": 3952,
+ "icult": 3953,
+ "HP": 3954,
+ "iler": 3955,
+ "▁Sal": 3956,
+ "▁connection": 3957,
+ "usion": 3958,
+ "kn": 3959,
+ "RI": 3960,
+ "▁vom": 3961,
+ "Listener": 3962,
+ "▁ö": 3963,
+ "▁dim": 3964,
+ "▁press": 3965,
+ "▁esc": 3966,
+ "▁Try": 3967,
+ "atalog": 3968,
+ "▁thanks": 3969,
+ "DO": 3970,
+ "▁written": 3971,
+ "dir": 3972,
+ "rew": 3973,
+ "▁fire": 3974,
+ "▁Nach": 3975,
+ "▁á": 3976,
+ "enc": 3977,
+ "▁origin": 3978,
+ "▁November": 3979,
+ "▁};": 3980,
+ "Count": 3981,
+ "▁За": 3982,
+ "▁graph": 3983,
+ "▁mis": 3984,
+ "▁External": 3985,
+ "▁▁▁▁▁▁▁▁▁": 3986,
+ "▁options": 3987,
+ "▁URL": 3988,
+ "▁php": 3989,
+ "▁integr": 3990,
+ "Config": 3991,
+ "▁Text": 3992,
+ "inner": 3993,
+ "▁crit": 3994,
+ ",”": 3995,
+ "▁tog": 3996,
+ "$$": 3997,
+ "nof": 3998,
+ "▁ses": 3999,
+ "ühr": 4000,
+ "▁Since": 4001,
+ "Des": 4002,
+ "ube": 4003,
+ "▁section": 4004,
+ "▁gi": 4005,
+ "ford": 4006,
+ "▁Ass": 4007,
+ "ainer": 4008,
+ "ttp": 4009,
+ "▁behav": 4010,
+ "ports": 4011,
+ "draw": 4012,
+ "This": 4013,
+ "ranch": 4014,
+ "inding": 4015,
+ "▁estab": 4016,
+ "▁obtain": 4017,
+ "rich": 4018,
+ "licit": 4019,
+ "ев": 4020,
+ "▁qual": 4021,
+ "▁za": 4022,
+ "▁har": 4023,
+ "▁fac": 4024,
+ "aar": 4025,
+ "jet": 4026,
+ "icles": 4027,
+ "▁Aus": 4028,
+ "▁hor": 4029,
+ "▁remov": 4030,
+ "▁wie": 4031,
+ "Client": 4032,
+ "▁natur": 4033,
+ "hip": 4034,
+ "Sub": 4035,
+ "▁random": 4036,
+ "DF": 4037,
+ "▁area": 4038,
+ "tag": 4039,
+ "Pr": 4040,
+ "▁Ital": 4041,
+ "▁roku": 4042,
+ "nofollow": 4043,
+ "*}": 4044,
+ "▁others": 4045,
+ "▁limit": 4046,
+ "▁sil": 4047,
+ "▁sav": 4048,
+ "▁often": 4049,
+ "▁render": 4050,
+ "DB": 4051,
+ "▁Mc": 4052,
+ "▁zijn": 4053,
+ "жен": 4054,
+ "▁tag": 4055,
+ "ming": 4056,
+ "lichen": 4057,
+ "pack": 4058,
+ "▁Ag": 4059,
+ "▁sense": 4060,
+ "pg": 4061,
+ "Method": 4062,
+ "aged": 4063,
+ "ág": 4064,
+ "ła": 4065,
+ "▁interest": 4066,
+ "▁associ": 4067,
+ "volution": 4068,
+ "▁empty": 4069,
+ "iche": 4070,
+ "▁gro": 4071,
+ "▁types": 4072,
+ "▁Sie": 4073,
+ "Inter": 4074,
+ "▁noreferrer": 4075,
+ "▁gives": 4076,
+ "hal": 4077,
+ "▁save": 4078,
+ "▁font": 4079,
+ "ruction": 4080,
+ "Script": 4081,
+ "▁alla": 4082,
+ "▁says": 4083,
+ "▁fu": 4084,
+ "ape": 4085,
+ "▁language": 4086,
+ "iger": 4087,
+ "▁King": 4088,
+ "bor": 4089,
+ "uv": 4090,
+ "▁shall": 4091,
+ "▁Europe": 4092,
+ "▁einem": 4093,
+ "▁water": 4094,
+ "▁govern": 4095,
+ "anz": 4096,
+ "ators": 4097,
+ "▁month": 4098,
+ "ye": 4099,
+ "▁important": 4100,
+ "atz": 4101,
+ "first": 4102,
+ "▁Trans": 4103,
+ "▁Mad": 4104,
+ "▁bra": 4105,
+ "ika": 4106,
+ "▁Saint": 4107,
+ "oria": 4108,
+ "kre": 4109,
+ "ements": 4110,
+ "▁Ben": 4111,
+ "lav": 4112,
+ "▁admin": 4113,
+ "▁Hen": 4114,
+ "ril": 4115,
+ "▁Sm": 4116,
+ "cat": 4117,
+ "▁Refer": 4118,
+ "▁Ш": 4119,
+ "▁pract": 4120,
+ "▁Pat": 4121,
+ "▁Gre": 4122,
+ "▁young": 4123,
+ "▁Inter": 4124,
+ "oma": 4125,
+ "teger": 4126,
+ "ibility": 4127,
+ "▁parameters": 4128,
+ "▁everything": 4129,
+ "dat": 4130,
+ "urop": 4131,
+ "olean": 4132,
+ "▁returned": 4133,
+ "▁Class": 4134,
+ "acy": 4135,
+ "####": 4136,
+ "▁př": 4137,
+ "▁folder": 4138,
+ "▁kon": 4139,
+ "▁guess": 4140,
+ "gt": 4141,
+ "jen": 4142,
+ "annel": 4143,
+ "icon": 4144,
+ "▁comb": 4145,
+ "rict": 4146,
+ "▁hij": 4147,
+ "▁author": 4148,
+ "see": 4149,
+ "here": 4150,
+ "stra": 4151,
+ "▁entire": 4152,
+ "▁directly": 4153,
+ "raft": 4154,
+ "heet": 4155,
+ "ester": 4156,
+ "▁ми": 4157,
+ "▁mass": 4158,
+ "untu": 4159,
+ "▁users": 4160,
+ "chi": 4161,
+ "PE": 4162,
+ "▁component": 4163,
+ "Click": 4164,
+ "Att": 4165,
+ "▁sobre": 4166,
+ "ands": 4167,
+ "▁Hol": 4168,
+ "▁Sant": 4169,
+ "ori": 4170,
+ "▁sua": 4171,
+ "std": 4172,
+ "entic": 4173,
+ "CC": 4174,
+ "▁filter": 4175,
+ "SQL": 4176,
+ "▁God": 4177,
+ "At": 4178,
+ "▁му": 4179,
+ "▁performance": 4180,
+ "delta": 4181,
+ "ande": 4182,
+ "amer": 4183,
+ "ды": 4184,
+ "▁cult": 4185,
+ "▁Nor": 4186,
+ "but": 4187,
+ "▁lik": 4188,
+ "********": 4189,
+ "ствен": 4190,
+ "▁comme": 4191,
+ "▁dr": 4192,
+ "imer": 4193,
+ "ordin": 4194,
+ "▁condition": 4195,
+ "este": 4196,
+ "([": 4197,
+ "FF": 4198,
+ "ться": 4199,
+ "imo": 4200,
+ "rab": 4201,
+ "іль": 4202,
+ "▁half": 4203,
+ "each": 4204,
+ "Dis": 4205,
+ "▁rows": 4206,
+ "▁hon": 4207,
+ "▁together": 4208,
+ "▁și": 4209,
+ "medi": 4210,
+ "agn": 4211,
+ "alled": 4212,
+ "▁vill": 4213,
+ "ING": 4214,
+ "idden": 4215,
+ "▁draw": 4216,
+ "yntax": 4217,
+ "▁attempt": 4218,
+ "URL": 4219,
+ "pose": 4220,
+ "▁indic": 4221,
+ "ника": 4222,
+ "▁English": 4223,
+ "▁déc": 4224,
+ "▁needs": 4225,
+ "▁normal": 4226,
+ "urt": 4227,
+ "▁но": 4228,
+ "}}\\": 4229,
+ "last": 4230,
+ "▁Fin": 4231,
+ "▁Febru": 4232,
+ "ila": 4233,
+ "▁country": 4234,
+ "▁fields": 4235,
+ "▁max": 4236,
+ "lés": 4237,
+ "owie": 4238,
+ "▁deux": 4239,
+ "▁built": 4240,
+ "▁Main": 4241,
+ "▁camp": 4242,
+ "ivo": 4243,
+ "iva": 4244,
+ "icy": 4245,
+ "zione": 4246,
+ "Node": 4247,
+ "▁:)": 4248,
+ "▁among": 4249,
+ "▁Ob": 4250,
+ "▁cases": 4251,
+ "haps": 4252,
+ "sers": 4253,
+ "arter": 4254,
+ "ści": 4255,
+ "▁iter": 4256,
+ "▁named": 4257,
+ "exec": 4258,
+ "▁season": 4259,
+ "tot": 4260,
+ "=>": 4261,
+ "graph": 4262,
+ "▁nil": 4263,
+ "acional": 4264,
+ "▁NULL": 4265,
+ "▁special": 4266,
+ "сте": 4267,
+ "css": 4268,
+ "▁\\(": 4269,
+ "vs": 4270,
+ "ael": 4271,
+ "▁city": 4272,
+ "ova": 4273,
+ "▁article": 4274,
+ "▁South": 4275,
+ "Action": 4276,
+ "ça": 4277,
+ "spring": 4278,
+ "itude": 4279,
+ "▁complex": 4280,
+ "▁что": 4281,
+ "build": 4282,
+ "gamma": 4283,
+ "▁Ent": 4284,
+ "iers": 4285,
+ "'.": 4286,
+ "car": 4287,
+ "apache": 4288,
+ "ingen": 4289,
+ "Input": 4290,
+ ": ": 4291,
+ "▁dynam": 4292,
+ "alls": 4293,
+ "show": 4294,
+ "|\\": 4295,
+ "▁wird": 4296,
+ "Bar": 4297,
+ "alth": 4298,
+ "model": 4299,
+ "Trans": 4300,
+ "Row": 4301,
+ "abe": 4302,
+ "▁lib": 4303,
+ "null": 4304,
+ "ragment": 4305,
+ "▁State": 4306,
+ "▁law": 4307,
+ "Frame": 4308,
+ "▁Lo": 4309,
+ "geb": 4310,
+ "}$.": 4311,
+ "▁needed": 4312,
+ "▁contr": 4313,
+ "aries": 4314,
+ "▁screen": 4315,
+ "yr": 4316,
+ "mm": 4317,
+ "▁shown": 4318,
+ "▁bad": 4319,
+ "▁cast": 4320,
+ "▁Test": 4321,
+ "▁Auf": 4322,
+ "▁quant": 4323,
+ "iga": 4324,
+ "▁ren": 4325,
+ "▁Mac": 4326,
+ "▁transform": 4327,
+ "▁difference": 4328,
+ "▁tit": 4329,
+ "TE": 4330,
+ "▁step": 4331,
+ "▁capt": 4332,
+ "▁collection": 4333,
+ "ictionary": 4334,
+ "▁Tom": 4335,
+ "rier": 4336,
+ "▁move": 4337,
+ "cope": 4338,
+ "ords": 4339,
+ "▁further": 4340,
+ "▁columns": 4341,
+ "▁Lin": 4342,
+ "▁fixed": 4343,
+ "▁children": 4344,
+ "MS": 4345,
+ "mo": 4346,
+ "una": 4347,
+ "▁individ": 4348,
+ "tty": 4349,
+ "aste": 4350,
+ "src": 4351,
+ "match": 4352,
+ "wi": 4353,
+ "▁х": 4354,
+ "▁ди": 4355,
+ "▁ord": 4356,
+ "iving": 4357,
+ "▁Bro": 4358,
+ "▁almost": 4359,
+ "▁Pres": 4360,
+ "reci": 4361,
+ "aring": 4362,
+ "▁///": 4363,
+ "ется": 4364,
+ "▁sig": 4365,
+ "light": 4366,
+ "▁Red": 4367,
+ "▁suggest": 4368,
+ "olf": 4369,
+ "▁été": 4370,
+ "isation": 4371,
+ "зна": 4372,
+ "New": 4373,
+ "стан": 4374,
+ "LA": 4375,
+ "unicip": 4376,
+ "▁figure": 4377,
+ "mt": 4378,
+ "iale": 4379,
+ "▁catch": 4380,
+ "default": 4381,
+ "▁tele": 4382,
+ "▁matter": 4383,
+ "cast": 4384,
+ "▁Rich": 4385,
+ "▁handle": 4386,
+ "valu": 4387,
+ "$-": 4388,
+ "об": 4389,
+ "▁json": 4390,
+ "Create": 4391,
+ "▁exam": 4392,
+ "аль": 4393,
+ "ют": 4394,
+ "ored": 4395,
+ "idos": 4396,
+ "append": 4397,
+ "▁Array": 4398,
+ "кс": 4399,
+ "}[": 4400,
+ "rive": 4401,
+ "▁club": 4402,
+ "mann": 4403,
+ "▁este": 4404,
+ "esta": 4405,
+ "▁Gi": 4406,
+ "▁Jap": 4407,
+ "▁Name": 4408,
+ "Column": 4409,
+ "oups": 4410,
+ "ismo": 4411,
+ "▁City": 4412,
+ "▁classes": 4413,
+ "▁infl": 4414,
+ "hl": 4415,
+ "ром": 4416,
+ "▁adding": 4417,
+ "▁fail": 4418,
+ "xx": 4419,
+ "ões": 4420,
+ "Sc": 4421,
+ "util": 4422,
+ "▁location": 4423,
+ "lege": 4424,
+ "ago": 4425,
+ "▁properties": 4426,
+ "abil": 4427,
+ "vas": 4428,
+ "}$,": 4429,
+ "itted": 4430,
+ "ód": 4431,
+ "▁Dem": 4432,
+ "▁asked": 4433,
+ "▁tab": 4434,
+ "Source": 4435,
+ "▁errors": 4436,
+ "ographie": 4437,
+ "▁жи": 4438,
+ "▁mal": 4439,
+ "stract": 4440,
+ "▁dro": 4441,
+ "rak": 4442,
+ "▁note": 4443,
+ "▁setting": 4444,
+ "▁fem": 4445,
+ "▁saw": 4446,
+ "iar": 4447,
+ "HER": 4448,
+ "ес": 4449,
+ "▁pred": 4450,
+ "▁Out": 4451,
+ "▁items": 4452,
+ "лан": 4453,
+ "▁werd": 4454,
+ "ersion": 4455,
+ "lia": 4456,
+ "▁sin": 4457,
+ "ichte": 4458,
+ "▁feel": 4459,
+ "▁пра": 4460,
+ "▁oder": 4461,
+ "UE": 4462,
+ "ocument": 4463,
+ "▁mode": 4464,
+ "▁Na": 4465,
+ "ден": 4466,
+ "mes": 4467,
+ "framework": 4468,
+ "▁auto": 4469,
+ "ным": 4470,
+ "uby": 4471,
+ "▁template": 4472,
+ "▁mess": 4473,
+ "ieder": 4474,
+ "▁related": 4475,
+ "oken": 4476,
+ "▁follows": 4477,
+ "search": 4478,
+ "ami": 4479,
+ "▁wait": 4480,
+ "igr": 4481,
+ "▁low": 4482,
+ "ских": 4483,
+ "ская": 4484,
+ "▁Mark": 4485,
+ "▁ill": 4486,
+ "amento": 4487,
+ "\\<": 4488,
+ "▁df": 4489,
+ "osition": 4490,
+ "▁Ви": 4491,
+ "isf": 4492,
+ "▁Deutsch": 4493,
+ "ahl": 4494,
+ "war": 4495,
+ "itect": 4496,
+ "▁sal": 4497,
+ "elen": 4498,
+ "ById": 4499,
+ "▁gru": 4500,
+ "sv": 4501,
+ "▁passed": 4502,
+ "▁añ": 4503,
+ "Sch": 4504,
+ "▁solve": 4505,
+ "weise": 4506,
+ "atos": 4507,
+ "▁meg": 4508,
+ "▁member": 4509,
+ "ername": 4510,
+ "▁connect": 4511,
+ "ips": 4512,
+ "▁round": 4513,
+ "▁]": 4514,
+ "nes": 4515,
+ "▁dir": 4516,
+ "▁London": 4517,
+ "dy": 4518,
+ "FA": 4519,
+ "▁received": 4520,
+ "reet": 4521,
+ "▁Log": 4522,
+ "▁School": 4523,
+ "ango": 4524,
+ "▁These": 4525,
+ "▁Mont": 4526,
+ "▁ener": 4527,
+ "lad": 4528,
+ "▁define": 4529,
+ "sign": 4530,
+ "▁cle": 4531,
+ "figure": 4532,
+ "▁View": 4533,
+ "textbf": 4534,
+ "$\\": 4535,
+ "зы": 4536,
+ "number": 4537,
+ "▁din": 4538,
+ "eller": 4539,
+ "orithm": 4540,
+ "false": 4541,
+ "fol": 4542,
+ "fficient": 4543,
+ "▁HTML": 4544,
+ "liche": 4545,
+ "▁Mo": 4546,
+ "▁introdu": 4547,
+ "exp": 4548,
+ "▁strong": 4549,
+ "▁thus": 4550,
+ "/)": 4551,
+ "▁ele": 4552,
+ "▁так": 4553,
+ "▁па": 4554,
+ "▁dont": 4555,
+ "▁cause": 4556,
+ "Number": 4557,
+ "▁images": 4558,
+ "▁sample": 4559,
+ "▁sci": 4560,
+ "like": 4561,
+ "▁Lou": 4562,
+ "div": 4563,
+ "anc": 4564,
+ "▁front": 4565,
+ "nen": 4566,
+ "▁missing": 4567,
+ "aria": 4568,
+ "pres": 4569,
+ "▁пред": 4570,
+ "DI": 4571,
+ "filter": 4572,
+ "▁Mit": 4573,
+ "UR": 4574,
+ "▁opp": 4575,
+ "▁sql": 4576,
+ "▁року": 4577,
+ "eren": 4578,
+ "emat": 4579,
+ "ís": 4580,
+ "▁Jean": 4581,
+ "éc": 4582,
+ "▁ci": 4583,
+ "enne": 4584,
+ "atform": 4585,
+ "▁taken": 4586,
+ "▁Of": 4587,
+ "▁насе": 4588,
+ "▁err": 4589,
+ "OP": 4590,
+ "From": 4591,
+ "Default": 4592,
+ "▁General": 4593,
+ "wiki": 4594,
+ "▁grand": 4595,
+ "▁einen": 4596,
+ "Reg": 4597,
+ "Handler": 4598,
+ "conom": 4599,
+ "anger": 4600,
+ "▁был": 4601,
+ "▁Los": 4602,
+ "▁expression": 4603,
+ "ша": 4604,
+ "yal": 4605,
+ "▁$('": 4606,
+ "▁switch": 4607,
+ "▁vector": 4608,
+ "▁Thom": 4609,
+ "▁virt": 4610,
+ "leased": 4611,
+ "▁cover": 4612,
+ "▁resp": 4613,
+ "ako": 4614,
+ "rench": 4615,
+ "ota": 4616,
+ "Cell": 4617,
+ "anged": 4618,
+ "▁+=": 4619,
+ "lac": 4620,
+ "ska": 4621,
+ "next": 4622,
+ "▁International": 4623,
+ "▁Wil": 4624,
+ "▁ont": 4625,
+ "ibr": 4626,
+ "ustr": 4627,
+ "▁black": 4628,
+ "▁selected": 4629,
+ "cher": 4630,
+ "▁liter": 4631,
+ "root": 4632,
+ "лся": 4633,
+ "▁Life": 4634,
+ "▁insert": 4635,
+ "▁matrix": 4636,
+ "ises": 4637,
+ ")]": 4638,
+ "▁pel": 4639,
+ "Override": 4640,
+ "rypt": 4641,
+ "▁former": 4642,
+ "▁Film": 4643,
+ "▁North": 4644,
+ "client": 4645,
+ "▁night": 4646,
+ "ходи": 4647,
+ "▁Austral": 4648,
+ "▁Ret": 4649,
+ "rho": 4650,
+ "▁пер": 4651,
+ "ipedia": 4652,
+ "▁express": 4653,
+ "▁third": 4654,
+ "▁major": 4655,
+ "▁grad": 4656,
+ "owe": 4657,
+ "▁believe": 4658,
+ "ournal": 4659,
+ "▁status": 4660,
+ "unc": 4661,
+ "▁dou": 4662,
+ "▁JSON": 4663,
+ "uis": 4664,
+ "▁population": 4665,
+ "enz": 4666,
+ "▁William": 4667,
+ "sf": 4668,
+ "▁Object": 4669,
+ "▁cin": 4670,
+ "▁Di": 4671,
+ "curity": 4672,
+ "▁Open": 4673,
+ "▁ле": 4674,
+ "lar": 4675,
+ "adding": 4676,
+ "▁kom": 4677,
+ "}(\\": 4678,
+ "▁kil": 4679,
+ "umer": 4680,
+ "\"/>": 4681,
+ "▁feature": 4682,
+ "▁Are": 4683,
+ "cks": 4684,
+ "▁Internet": 4685,
+ "▁ih": 4686,
+ "▁started": 4687,
+ "▁early": 4688,
+ "▁began": 4689,
+ "TH": 4690,
+ "python": 4691,
+ "asp": 4692,
+ "▁Fr": 4693,
+ "▁clos": 4694,
+ "istic": 4695,
+ "▁music": 4696,
+ "▁dig": 4697,
+ "▁ital": 4698,
+ "▁David": 4699,
+ "▁website": 4700,
+ "▁controller": 4701,
+ "▁Mer": 4702,
+ "context": 4703,
+ "product": 4704,
+ "osp": 4705,
+ "▁▁▁▁▁▁▁": 4706,
+ "▁jun": 4707,
+ "rown": 4708,
+ "▁Az": 4709,
+ "\":\"": 4710,
+ "▁aan": 4711,
+ "▁Date": 4712,
+ "mult": 4713,
+ "▁browser": 4714,
+ "ред": 4715,
+ "which": 4716,
+ "RA": 4717,
+ "quare": 4718,
+ "▁Russ": 4719,
+ "▁soon": 4720,
+ "▁Pre": 4721,
+ "tau": 4722,
+ "▁week": 4723,
+ "▁ба": 4724,
+ "▁oct": 4725,
+ "▁town": 4726,
+ "roy": 4727,
+ "▁els": 4728,
+ "blic": 4729,
+ "undle": 4730,
+ "▁Histor": 4731,
+ "▁foi": 4732,
+ "▁models": 4733,
+ "зо": 4734,
+ "onym": 4735,
+ "Param": 4736,
+ "▁Met": 4737,
+ "gener": 4738,
+ "ją": 4739,
+ "▁espe": 4740,
+ "CE": 4741,
+ "▁device": 4742,
+ "ellow": 4743,
+ "▁debug": 4744,
+ "érie": 4745,
+ "using": 4746,
+ "анг": 4747,
+ "▁*)": 4748,
+ "udi": 4749,
+ "▁Miss": 4750,
+ "ком": 4751,
+ "posed": 4752,
+ "▁zwe": 4753,
+ "ін": 4754,
+ "▁Robert": 4755,
+ "▁Oct": 4756,
+ "lop": 4757,
+ "jar": 4758,
+ "▁aver": 4759,
+ "▁habit": 4760,
+ "▁::": 4761,
+ "äng": 4762,
+ "Start": 4763,
+ "▁pow": 4764,
+ "▁src": 4765,
+ "▁pattern": 4766,
+ "▁Э": 4767,
+ "▁bi": 4768,
+ "otes": 4769,
+ "▁__": 4770,
+ "▁sens": 4771,
+ "▁avoid": 4772,
+ "example": 4773,
+ "utt": 4774,
+ "Label": 4775,
+ "tex": 4776,
+ "boot": 4777,
+ "esto": 4778,
+ "▁March": 4779,
+ "▁easy": 4780,
+ "icture": 4781,
+ "Group": 4782,
+ "▁father": 4783,
+ "▁updated": 4784,
+ "▁Vo": 4785,
+ "▁III": 4786,
+ "omega": 4787,
+ "▁alle": 4788,
+ "Rec": 4789,
+ "yg": 4790,
+ "зе": 4791,
+ "▁Dim": 4792,
+ "nect": 4793,
+ "▁Tor": 4794,
+ "▁deutsch": 4795,
+ "▁white": 4796,
+ "▁national": 4797,
+ "ppe": 4798,
+ "▁air": 4799,
+ "▁password": 4800,
+ "det": 4801,
+ "▁big": 4802,
+ "▁Use": 4803,
+ "call": 4804,
+ "▁extra": 4805,
+ "We": 4806,
+ "ania": 4807,
+ "▁hold": 4808,
+ "Control": 4809,
+ "▁CO": 4810,
+ "▁мі": 4811,
+ "iti": 4812,
+ "▁Ke": 4813,
+ "enu": 4814,
+ "▁Park": 4815,
+ "том": 4816,
+ "▁auth": 4817,
+ "▁center": 4818,
+ "Ph": 4819,
+ "тов": 4820,
+ "iding": 4821,
+ "▁across": 4822,
+ "▁song": 4823,
+ "▁phys": 4824,
+ "▁numer": 4825,
+ "ща": 4826,
+ "▁Alex": 4827,
+ "▁problems": 4828,
+ "▁Error": 4829,
+ "format": 4830,
+ "▁Acc": 4831,
+ "▁six": 4832,
+ "▁db": 4833,
+ "▁Cast": 4834,
+ "oms": 4835,
+ "project": 4836,
+ "▁vert": 4837,
+ "cret": 4838,
+ "▁header": 4839,
+ "▁stream": 4840,
+ "ids": 4841,
+ "▁tor": 4842,
+ "▁sept": 4843,
+ "▁estim": 4844,
+ "▁decl": 4845,
+ "▁gave": 4846,
+ "▁player": 4847,
+ "ysis": 4848,
+ "▁дру": 4849,
+ "amm": 4850,
+ "що": 4851,
+ "▁(\"": 4852,
+ "▁ax": 4853,
+ "Property": 4854,
+ "usr": 4855,
+ "▁someone": 4856,
+ "▁impro": 4857,
+ "aden": 4858,
+ "rote": 4859,
+ "▁Ми": 4860,
+ "ih": 4861,
+ "++)": 4862,
+ "▁video": 4863,
+ "▁exists": 4864,
+ "кла": 4865,
+ "▁complete": 4866,
+ "▁session": 4867,
+ "▁constant": 4868,
+ "icos": 4869,
+ "▁pack": 4870,
+ "rome": 4871,
+ "egr": 4872,
+ "Application": 4873,
+ "▁yes": 4874,
+ "▁elle": 4875,
+ "▁email": 4876,
+ "orf": 4877,
+ "case": 4878,
+ "▁pointer": 4879,
+ "▁regard": 4880,
+ "sen": 4881,
+ "status": 4882,
+ "▁mes": 4883,
+ "▁delle": 4884,
+ "ington": 4885,
+ "▁Bas": 4886,
+ ")^": 4887,
+ "develop": 4888,
+ "▁force": 4889,
+ "▁characters": 4890,
+ "▁cross": 4891,
+ "▁death": 4892,
+ "▁takes": 4893,
+ "éri": 4894,
+ "igne": 4895,
+ "чен": 4896,
+ "UP": 4897,
+ ".:": 4898,
+ "Thread": 4899,
+ "ju": 4900,
+ "iny": 4901,
+ "▁details": 4902,
+ "▁xml": 4903,
+ "tait": 4904,
+ "output": 4905,
+ "message": 4906,
+ "''": 4907,
+ "▁British": 4908,
+ "ville": 4909,
+ "▁Div": 4910,
+ "▁User": 4911,
+ "cm": 4912,
+ "чно": 4913,
+ "column": 4914,
+ "eqref": 4915,
+ "ór": 4916,
+ "onom": 4917,
+ "▁Post": 4918,
+ "ellen": 4919,
+ "Ab": 4920,
+ "ulté": 4921,
+ "▁perfect": 4922,
+ "(){": 4923,
+ "vision": 4924,
+ "active": 4925,
+ "lier": 4926,
+ "rij": 4927,
+ "sd": 4928,
+ "▁kö": 4929,
+ "▁nie": 4930,
+ "▁relig": 4931,
+ "▁ot": 4932,
+ "▁machine": 4933,
+ "▁held": 4934,
+ ")$.": 4935,
+ "========": 4936,
+ "cker": 4937,
+ "вы": 4938,
+ "born": 4939,
+ "▁past": 4940,
+ "рия": 4941,
+ "▁Dr": 4942,
+ "▁regular": 4943,
+ "▁provided": 4944,
+ "TER": 4945,
+ "▁univers": 4946,
+ "▁gets": 4947,
+ "▁nu": 4948,
+ "▁/*": 4949,
+ "ober": 4950,
+ "fin": 4951,
+ "▁nella": 4952,
+ "▁become": 4953,
+ "▁``": 4954,
+ "▁history": 4955,
+ "▁Sol": 4956,
+ "▁Rad": 4957,
+ "▁terms": 4958,
+ "▁events": 4959,
+ "lymp": 4960,
+ ")))": 4961,
+ "рова": 4962,
+ "▁absol": 4963,
+ "▁soft": 4964,
+ "links": 4965,
+ "▁hope": 4966,
+ "▁subject": 4967,
+ "\"),": 4968,
+ "▁creating": 4969,
+ "▁}\r": 4970,
+ "▁Sk": 4971,
+ "▁flow": 4972,
+ "▁Ра": 4973,
+ "▁assert": 4974,
+ "zet": 4975,
+ "▁Frank": 4976,
+ "sa": 4977,
+ "▁distribution": 4978,
+ "cu": 4979,
+ "band": 4980,
+ "izz": 4981,
+ "▁job": 4982,
+ "iner": 4983,
+ "struct": 4984,
+ "ák": 4985,
+ "TO": 4986,
+ "auf": 4987,
+ "▁extends": 4988,
+ "▁Gra": 4989,
+ "display": 4990,
+ "▁signific": 4991,
+ "oney": 4992,
+ "source": 4993,
+ "microsoft": 4994,
+ "inder": 4995,
+ "▁quick": 4996,
+ "▁wonder": 4997,
+ "Instance": 4998,
+ "elles": 4999,
+ "ème": 5000,
+ "▁company": 5001,
+ "uß": 5002,
+ ".}": 5003,
+ "▁separate": 5004,
+ "UM": 5005,
+ "HERE": 5006,
+ "▁writing": 5007,
+ "itution": 5008,
+ "▁Gesch": 5009,
+ "мя": 5010,
+ "▁James": 5011,
+ "▁DE": 5012,
+ "▁Spe": 5013,
+ "process": 5014,
+ "Str": 5015,
+ "▁sym": 5016,
+ "▁ao": 5017,
+ "▁wy": 5018,
+ "▁anyone": 5019,
+ "▁Up": 5020,
+ "useum": 5021,
+ "aron": 5022,
+ "▁definition": 5023,
+ "▁`$": 5024,
+ "▁fav": 5025,
+ "ributes": 5026,
+ "▁Ré": 5027,
+ "ografia": 5028,
+ "element": 5029,
+ "cap": 5030,
+ "pat": 5031,
+ "▁Bra": 5032,
+ ")(": 5033,
+ "▁according": 5034,
+ "ге": 5035,
+ "▁pie": 5036,
+ "eli": 5037,
+ "}\"": 5038,
+ "▁activ": 5039,
+ "▁stop": 5040,
+ "patch": 5041,
+ "ті": 5042,
+ "▁Jose": 5043,
+ "End": 5044,
+ "▁prze": 5045,
+ "▁age": 5046,
+ "itory": 5047,
+ "▁PHP": 5048,
+ "agement": 5049,
+ "▁`.": 5050,
+ "▁pretty": 5051,
+ "▁recomm": 5052,
+ "▁sud": 5053,
+ "▁requ": 5054,
+ "▁обла": 5055,
+ "atives": 5056,
+ "▁High": 5057,
+ "áz": 5058,
+ "oul": 5059,
+ "rest": 5060,
+ "▁Ter": 5061,
+ "under": 5062,
+ "thern": 5063,
+ "center": 5064,
+ "▁ur": 5065,
+ "lat": 5066,
+ "▁interface": 5067,
+ "▁ин": 5068,
+ "▁whose": 5069,
+ "icas": 5070,
+ "amen": 5071,
+ "Filter": 5072,
+ "▁station": 5073,
+ "Page": 5074,
+ "▁arm": 5075,
+ "▁eyes": 5076,
+ "▁рай": 5077,
+ "▁seu": 5078,
+ "oli": 5079,
+ "win": 5080,
+ "lik": 5081,
+ "gex": 5082,
+ "chan": 5083,
+ "idence": 5084,
+ "args": 5085,
+ "aking": 5086,
+ "▁Google": 5087,
+ "▁Stud": 5088,
+ "▁ho": 5089,
+ "торы": 5090,
+ "Su": 5091,
+ "▁automat": 5092,
+ "ême": 5093,
+ "▁cy": 5094,
+ "lor": 5095,
+ "▁stack": 5096,
+ "▁SELECT": 5097,
+ "AF": 5098,
+ "▁>>": 5099,
+ "▁compet": 5100,
+ "▁pair": 5101,
+ "▁inglés": 5102,
+ "Response": 5103,
+ "▁Fig": 5104,
+ "grad": 5105,
+ "▁documentation": 5106,
+ "▁cant": 5107,
+ "▁appreci": 5108,
+ "ån": 5109,
+ "▁learn": 5110,
+ "▁indep": 5111,
+ "▁pal": 5112,
+ "package": 5113,
+ "ares": 5114,
+ "▁Berlin": 5115,
+ "бли": 5116,
+ "reich": 5117,
+ "ён": 5118,
+ "▁satisf": 5119,
+ "▁region": 5120,
+ "▁friend": 5121,
+ "▁George": 5122,
+ "▁Во": 5123,
+ "▁\"\"": 5124,
+ "▁desde": 5125,
+ "Factory": 5126,
+ "▁County": 5127,
+ "ouv": 5128,
+ "▁‘": 5129,
+ "▁installed": 5130,
+ "▁wanted": 5131,
+ "▁Python": 5132,
+ "▁interpre": 5133,
+ "▁included": 5134,
+ "▁((": 5135,
+ "▁altern": 5136,
+ "isto": 5137,
+ "gn": 5138,
+ "▁border": 5139,
+ "pdf": 5140,
+ "▁dup": 5141,
+ "▁download": 5142,
+ "just": 5143,
+ "▁members": 5144,
+ "child": 5145,
+ "▁pay": 5146,
+ "▁cer": 5147,
+ "▁looked": 5148,
+ "▁correctly": 5149,
+ "auth": 5150,
+ "▁стан": 5151,
+ "▁esp": 5152,
+ "▁desc": 5153,
+ "eben": 5154,
+ "▁questions": 5155,
+ "mal": 5156,
+ "▁abgerufen": 5157,
+ "▁Band": 5158,
+ "▁[]": 5159,
+ "Base": 5160,
+ "▁ris": 5161,
+ "▁fort": 5162,
+ "▁Id": 5163,
+ "▁various": 5164,
+ "▁League": 5165,
+ "▁Hand": 5166,
+ "▁Type": 5167,
+ "irl": 5168,
+ "▁Fe": 5169,
+ "ién": 5170,
+ "itter": 5171,
+ "▁fast": 5172,
+ "sta": 5173,
+ "▁except": 5174,
+ "icz": 5175,
+ "▁French": 5176,
+ "▁environment": 5177,
+ "▁conse": 5178,
+ "ур": 5179,
+ "ого": 5180,
+ "▁necessary": 5181,
+ "target": 5182,
+ "▁reading": 5183,
+ "home": 5184,
+ "zeich": 5185,
+ "▁equal": 5186,
+ "▁più": 5187,
+ "▁prem": 5188,
+ "▁difficult": 5189,
+ "▁unit": 5190,
+ "▁replace": 5191,
+ "▁heart": 5192,
+ "▁talk": 5193,
+ "AM": 5194,
+ "▁RE": 5195,
+ "▁Person": 5196,
+ "endency": 5197,
+ "▁imm": 5198,
+ "▁human": 5199,
+ "dn": 5200,
+ "▁Kir": 5201,
+ "▁Aut": 5202,
+ "known": 5203,
+ "▁frequ": 5204,
+ "system": 5205,
+ "лав": 5206,
+ "▁Sz": 5207,
+ "▁Gal": 5208,
+ "ное": 5209,
+ "selves": 5210,
+ "rightarrow": 5211,
+ "▁Са": 5212,
+ "=\"@": 5213,
+ "▁building": 5214,
+ "import": 5215,
+ "▁fam": 5216,
+ "▁delete": 5217,
+ "aire": 5218,
+ "mary": 5219,
+ "▁fund": 5220,
+ "▁particip": 5221,
+ "▁syn": 5222,
+ "sin": 5223,
+ "▁lower": 5224,
+ "▁zero": 5225,
+ "▁sec": 5226,
+ "▁fra": 5227,
+ "Point": 5228,
+ "▁failed": 5229,
+ "iento": 5230,
+ "cup": 5231,
+ "▁slow": 5232,
+ "▁nation": 5233,
+ "ähr": 5234,
+ "▁info": 5235,
+ "▁Public": 5236,
+ "▁decla": 5237,
+ "▁Та": 5238,
+ "▁sold": 5239,
+ "▁Rem": 5240,
+ "▁Phil": 5241,
+ "стра": 5242,
+ "▁mehr": 5243,
+ "▁Work": 5244,
+ "▁Nord": 5245,
+ "▁fait": 5246,
+ "▁gew": 5247,
+ "println": 5248,
+ "obile": 5249,
+ "▁Kon": 5250,
+ "▁assume": 5251,
+ "lands": 5252,
+ "▁amount": 5253,
+ "▁Press": 5254,
+ "ých": 5255,
+ "▁maxim": 5256,
+ "▁Champion": 5257,
+ "library": 5258,
+ "añ": 5259,
+ "▁Wal": 5260,
+ "Comm": 5261,
+ "]]": 5262,
+ "▁zw": 5263,
+ "▁social": 5264,
+ "LI": 5265,
+ "▁Unter": 5266,
+ "vor": 5267,
+ "Delta": 5268,
+ "email": 5269,
+ "raint": 5270,
+ "oni": 5271,
+ "▁alt": 5272,
+ "▁né": 5273,
+ "ция": 5274,
+ "ography": 5275,
+ "▁mentioned": 5276,
+ "▁<=": 5277,
+ "▁cette": 5278,
+ "▁currently": 5279,
+ "vare": 5280,
+ "izing": 5281,
+ "▁Def": 5282,
+ "icol": 5283,
+ "ünd": 5284,
+ "▁configuration": 5285,
+ "estig": 5286,
+ "III": 5287,
+ "lam": 5288,
+ "ière": 5289,
+ "▁Ear": 5290,
+ "▁tu": 5291,
+ "Ent": 5292,
+ "▁Using": 5293,
+ "▁ком": 5294,
+ "cie": 5295,
+ "▁proof": 5296,
+ "▁invol": 5297,
+ "▁History": 5298,
+ "><": 5299,
+ "▁AND": 5300,
+ "avy": 5301,
+ "▁relations": 5302,
+ "${": 5303,
+ "▁comes": 5304,
+ "▁direction": 5305,
+ "▁June": 5306,
+ "▁Way": 5307,
+ "Component": 5308,
+ "ech": 5309,
+ "▁Peter": 5310,
+ "sg": 5311,
+ "▁stra": 5312,
+ "uct": 5313,
+ "▁implementation": 5314,
+ "attle": 5315,
+ "▁cz": 5316,
+ "plot": 5317,
+ "▁played": 5318,
+ "\">": 5319,
+ "▁five": 5320,
+ "▁coll": 5321,
+ "▁Charles": 5322,
+ "Tra": 5323,
+ "▁suo": 5324,
+ "files": 5325,
+ "entes": 5326,
+ "response": 5327,
+ "How": 5328,
+ "▁Soci": 5329,
+ "▁ign": 5330,
+ "▁led": 5331,
+ "▁German": 5332,
+ "udo": 5333,
+ "▁Du": 5334,
+ "▁tim": 5335,
+ "ounter": 5336,
+ "▁attack": 5337,
+ "uri": 5338,
+ "▁ар": 5339,
+ "esse": 5340,
+ "ivil": 5341,
+ "▁Ju": 5342,
+ "▁vel": 5343,
+ "matrix": 5344,
+ "▁Mat": 5345,
+ "gio": 5346,
+ "▁Zeit": 5347,
+ "VER": 5348,
+ "has": 5349,
+ "Connection": 5350,
+ "▁ihr": 5351,
+ "▁attribute": 5352,
+ "▁discuss": 5353,
+ "▁domain": 5354,
+ "bind": 5355,
+ "▁Sec": 5356,
+ "rik": 5357,
+ "close": 5358,
+ "gin": 5359,
+ "▁love": 5360,
+ "anto": 5361,
+ "gent": 5362,
+ "aba": 5363,
+ "jango": 5364,
+ "bi": 5365,
+ "▁obser": 5366,
+ "itting": 5367,
+ "▁ру": 5368,
+ "}=": 5369,
+ "agen": 5370,
+ "BC": 5371,
+ "some": 5372,
+ "▁Bu": 5373,
+ "▁soci": 5374,
+ "▁individual": 5375,
+ "▁deal": 5376,
+ "▁outside": 5377,
+ "rio": 5378,
+ "Exec": 5379,
+ "andid": 5380,
+ "▁business": 5381,
+ "▁tempor": 5382,
+ "▁Tur": 5383,
+ "▁(!": 5384,
+ "riter": 5385,
+ "▁google": 5386,
+ "]:": 5387,
+ "itte": 5388,
+ "xi": 5389,
+ "▁Па": 5390,
+ "hol": 5391,
+ "нь": 5392,
+ "ring": 5393,
+ "▁sul": 5394,
+ "ности": 5395,
+ "_.": 5396,
+ "gar": 5397,
+ "Task": 5398,
+ "▁Check": 5399,
+ "▁modern": 5400,
+ "▁win": 5401,
+ "uster": 5402,
+ "han": 5403,
+ "formation": 5404,
+ "void": 5405,
+ "▁фи": 5406,
+ "▁useful": 5407,
+ "▁England": 5408,
+ "los": 5409,
+ "etime": 5410,
+ "eur": 5411,
+ "▁unique": 5412,
+ "▁как": 5413,
+ "ying": 5414,
+ "obj": 5415,
+ "uid": 5416,
+ "▁windows": 5417,
+ "▁distance": 5418,
+ "▁nombre": 5419,
+ "ія": 5420,
+ "ocus": 5421,
+ "ahn": 5422,
+ "ierte": 5423,
+ "▁dar": 5424,
+ "SI": 5425,
+ "long": 5426,
+ "asta": 5427,
+ "iven": 5428,
+ "▁told": 5429,
+ "▁Gru": 5430,
+ "foo": 5431,
+ "▁calling": 5432,
+ "iembre": 5433,
+ "▁future": 5434,
+ "près": 5435,
+ "leep": 5436,
+ "avigation": 5437,
+ "POST": 5438,
+ "▁described": 5439,
+ "▁noch": 5440,
+ "unit": 5441,
+ "allen": 5442,
+ "▁branch": 5443,
+ "fa": 5444,
+ "▁fill": 5445,
+ "▁obj": 5446,
+ "▁tree": 5447,
+ "▁wurden": 5448,
+ "▁Liter": 5449,
+ "rot": 5450,
+ "split": 5451,
+ "emein": 5452,
+ "module": 5453,
+ "CA": 5454,
+ "▁operator": 5455,
+ "▁wrote": 5456,
+ "▁Jack": 5457,
+ "ologie": 5458,
+ "▁Ant": 5459,
+ "тер": 5460,
+ "stream": 5461,
+ "▁Que": 5462,
+ "epsilon": 5463,
+ "non": 5464,
+ "stein": 5465,
+ "▁simpl": 5466,
+ "pub": 5467,
+ "▁July": 5468,
+ "▁nature": 5469,
+ "▁Database": 5470,
+ "ól": 5471,
+ "ним": 5472,
+ "▁VI": 5473,
+ "être": 5474,
+ "iles": 5475,
+ "▁wel": 5476,
+ "'),": 5477,
+ "▁mut": 5478,
+ "location": 5479,
+ "▁therefore": 5480,
+ "elli": 5481,
+ "▁І": 5482,
+ "né": 5483,
+ "▁ав": 5484,
+ "ledge": 5485,
+ "▁conver": 5486,
+ "ím": 5487,
+ "▁XV": 5488,
+ "vider": 5489,
+ "▁January": 5490,
+ "▁usually": 5491,
+ "▁released": 5492,
+ "▁Mi": 5493,
+ "Head": 5494,
+ "iller": 5495,
+ "▁jan": 5496,
+ "▁letter": 5497,
+ "produ": 5498,
+ "rd": 5499,
+ "▁Cam": 5500,
+ ",'": 5501,
+ "▁Ц": 5502,
+ "▁push": 5503,
+ "update": 5504,
+ "▁maybe": 5505,
+ "Http": 5506,
+ "@\"": 5507,
+ "мер": 5508,
+ "service": 5509,
+ "parse": 5510,
+ "▁dass": 5511,
+ "ên": 5512,
+ ")\"": 5513,
+ "more": 5514,
+ "/*": 5515,
+ "▁mas": 5516,
+ "▁likely": 5517,
+ "▁material": 5518,
+ "▁[[": 5519,
+ "▁longer": 5520,
+ "bal": 5521,
+ "▁Archiv": 5522,
+ "igt": 5523,
+ "▁egy": 5524,
+ "idge": 5525,
+ "igu": 5526,
+ "conf": 5527,
+ "▁inc": 5528,
+ "consulté": 5529,
+ "▁mai": 5530,
+ "Work": 5531,
+ "▁гра": 5532,
+ "▁October": 5533,
+ "▁global": 5534,
+ "▁sel": 5535,
+ "▁municip": 5536,
+ "▁viol": 5537,
+ "▁Does": 5538,
+ "▁\\[": 5539,
+ "ском": 5540,
+ "▁compos": 5541,
+ "бря": 5542,
+ "вя": 5543,
+ "▁respons": 5544,
+ "▁considered": 5545,
+ "▁Japan": 5546,
+ "pes": 5547,
+ "osto": 5548,
+ "▁milit": 5549,
+ "SP": 5550,
+ "сы": 5551,
+ "attr": 5552,
+ "cil": 5553,
+ "irectory": 5554,
+ "aving": 5555,
+ "▁Del": 5556,
+ "▁prevent": 5557,
+ "idade": 5558,
+ "git": 5559,
+ "iform": 5560,
+ "outer": 5561,
+ "inct": 5562,
+ "level": 5563,
+ "atever": 5564,
+ "▁repe": 5565,
+ "▁exc": 5566,
+ "дар": 5567,
+ "Style": 5568,
+ "▁Thomas": 5569,
+ "eline": 5570,
+ "▁ж": 5571,
+ "untime": 5572,
+ "▁larg": 5573,
+ "True": 5574,
+ ".*": 5575,
+ "creen": 5576,
+ "yles": 5577,
+ "▁transl": 5578,
+ "▁Со": 5579,
+ "ensions": 5580,
+ "äl": 5581,
+ "isse": 5582,
+ "▁volt": 5583,
+ "cially": 5584,
+ "nik": 5585,
+ ".]": 5586,
+ "▁Stadt": 5587,
+ "мы": 5588,
+ "fill": 5589,
+ "lov": 5590,
+ "▁\"/": 5591,
+ "Sp": 5592,
+ "▁Air": 5593,
+ "Call": 5594,
+ "▁nur": 5595,
+ "Check": 5596,
+ "ience": 5597,
+ "efined": 5598,
+ "▁вре": 5599,
+ "ło": 5600,
+ "dz": 5601,
+ "▁ор": 5602,
+ "iker": 5603,
+ "owa": 5604,
+ "ович": 5605,
+ "ré": 5606,
+ "OL": 5607,
+ "▁linear": 5608,
+ "▁export": 5609,
+ "ahr": 5610,
+ "icial": 5611,
+ "Rep": 5612,
+ "▁natural": 5613,
+ "▁cop": 5614,
+ "▁})": 5615,
+ "ções": 5616,
+ "zz": 5617,
+ "What": 5618,
+ "▁House": 5619,
+ "Ref": 5620,
+ "inger": 5621,
+ "▁taking": 5622,
+ "ně": 5623,
+ "▁Einz": 5624,
+ "▁dam": 5625,
+ "▁issues": 5626,
+ "Builder": 5627,
+ "edit": 5628,
+ "▁prz": 5629,
+ "password": 5630,
+ "Gener": 5631,
+ "rim": 5632,
+ "▁parts": 5633,
+ "---": 5634,
+ "iginal": 5635,
+ "▁Sci": 5636,
+ "▁mother": 5637,
+ "rea": 5638,
+ "▁container": 5639,
+ "дя": 5640,
+ "▁IP": 5641,
+ "▁none": 5642,
+ "▁followed": 5643,
+ "▁ple": 5644,
+ "▁measure": 5645,
+ "▁tout": 5646,
+ "Ext": 5647,
+ "▁TV": 5648,
+ "▁explain": 5649,
+ "▁paper": 5650,
+ "сті": 5651,
+ "ws": 5652,
+ "Wik": 5653,
+ "▁mm": 5654,
+ "▁Norm": 5655,
+ "▁Server": 5656,
+ "font": 5657,
+ "ecause": 5658,
+ "TR": 5659,
+ "▁би": 5660,
+ "La": 5661,
+ "▁ens": 5662,
+ "▁retr": 5663,
+ "▁Sil": 5664,
+ "▁sequence": 5665,
+ "arc": 5666,
+ "IV": 5667,
+ "zá": 5668,
+ "▁Android": 5669,
+ "▁Super": 5670,
+ "▁roz": 5671,
+ "ovie": 5672,
+ "Om": 5673,
+ "▁Well": 5674,
+ "make": 5675,
+ "orph": 5676,
+ "▁Jer": 5677,
+ "▁Ros": 5678,
+ "reference": 5679,
+ "▁features": 5680,
+ "▁Ger": 5681,
+ "▁Leg": 5682,
+ "▁late": 5683,
+ "▁additional": 5684,
+ "▁flo": 5685,
+ "▁его": 5686,
+ "▁algorithm": 5687,
+ "BA": 5688,
+ "kar": 5689,
+ "IP": 5690,
+ "]);": 5691,
+ "▁appears": 5692,
+ "yw": 5693,
+ "▁temp": 5694,
+ "▁aussi": 5695,
+ "method": 5696,
+ "▁pet": 5697,
+ "strap": 5698,
+ "arning": 5699,
+ "▁cut": 5700,
+ "▁Sa": 5701,
+ "▁track": 5702,
+ "▁employ": 5703,
+ "▁inde": 5704,
+ "rav": 5705,
+ "▁generate": 5706,
+ "bes": 5707,
+ "arts": 5708,
+ "Status": 5709,
+ "uge": 5710,
+ "alis": 5711,
+ "▁override": 5712,
+ "▁fi": 5713,
+ "▁lost": 5714,
+ "oted": 5715,
+ "▁room": 5716,
+ "▁calls": 5717,
+ "▁consist": 5718,
+ "рен": 5719,
+ "▁village": 5720,
+ "dist": 5721,
+ "▁techn": 5722,
+ "enza": 5723,
+ "▁роз": 5724,
+ "▁Catalog": 5725,
+ "▁becom": 5726,
+ "rows": 5727,
+ "▁Nel": 5728,
+ "comple": 5729,
+ "▁premi": 5730,
+ "▁rot": 5731,
+ "▁Weblinks": 5732,
+ "▁football": 5733,
+ "▁compar": 5734,
+ "▁live": 5735,
+ "ких": 5736,
+ "▁equival": 5737,
+ "cape": 5738,
+ "▁Gen": 5739,
+ "nder": 5740,
+ "▁Vis": 5741,
+ "▁behind": 5742,
+ "gers": 5743,
+ "voke": 5744,
+ "▁media": 5745,
+ "EX": 5746,
+ "that": 5747,
+ "▁sono": 5748,
+ "▁mysql": 5749,
+ "ev": 5750,
+ "▁rule": 5751,
+ "дов": 5752,
+ "acc": 5753,
+ "▁WHERE": 5754,
+ "ене": 5755,
+ "Grid": 5756,
+ "▁jul": 5757,
+ "▁mort": 5758,
+ "▁generated": 5759,
+ "encia": 5760,
+ "acter": 5761,
+ "clud": 5762,
+ "▁scen": 5763,
+ "▁closed": 5764,
+ "▁Michael": 5765,
+ "▁mount": 5766,
+ ")$,": 5767,
+ "▁drop": 5768,
+ "▁combin": 5769,
+ "tocol": 5770,
+ "▁goes": 5771,
+ "▁geb": 5772,
+ "MD": 5773,
+ "▁Anton": 5774,
+ "▁$(\"": 5775,
+ "Tem": 5776,
+ "▁ca": 5777,
+ "▁instru": 5778,
+ "eds": 5779,
+ "▁tool": 5780,
+ "mys": 5781,
+ "▁route": 5782,
+ "\"))": 5783,
+ "пре": 5784,
+ "▁float": 5785,
+ "▁services": 5786,
+ "▁чи": 5787,
+ "кі": 5788,
+ "embly": 5789,
+ "aker": 5790,
+ "▁Son": 5791,
+ "▁Math": 5792,
+ "asse": 5793,
+ "ously": 5794,
+ "lications": 5795,
+ "▁ru": 5796,
+ "▁що": 5797,
+ "▁Const": 5798,
+ "▁immedi": 5799,
+ "FO": 5800,
+ "oro": 5801,
+ "▁production": 5802,
+ "rei": 5803,
+ "▁jquery": 5804,
+ "annt": 5805,
+ "▁While": 5806,
+ "▁sn": 5807,
+ "▁годи": 5808,
+ "Format": 5809,
+ "▁star": 5810,
+ "▁Sen": 5811,
+ "▁ko": 5812,
+ "NAME": 5813,
+ "▁prés": 5814,
+ "cha": 5815,
+ "what": 5816,
+ "omin": 5817,
+ "endant": 5818,
+ "hy": 5819,
+ "▁observ": 5820,
+ "▁prefer": 5821,
+ "ун": 5822,
+ "▁constructor": 5823,
+ "bs": 5824,
+ "▁mac": 5825,
+ "▁Bre": 5826,
+ "▁Instit": 5827,
+ "▁story": 5828,
+ "▁symbol": 5829,
+ "eles": 5830,
+ "ße": 5831,
+ "asing": 5832,
+ "▁west": 5833,
+ "ians": 5834,
+ "▁master": 5835,
+ "ез": 5836,
+ "▁ways": 5837,
+ "bm": 5838,
+ "▁pick": 5839,
+ "▁depart": 5840,
+ "Back": 5841,
+ "enk": 5842,
+ "lipse": 5843,
+ "▁math": 5844,
+ "▁Francis": 5845,
+ "▁December": 5846,
+ "fs": 5847,
+ "rum": 5848,
+ "▁development": 5849,
+ "LT": 5850,
+ "ernel": 5851,
+ "▁True": 5852,
+ "▁More": 5853,
+ "rangle": 5854,
+ "▁conditions": 5855,
+ "Options": 5856,
+ "▁gli": 5857,
+ "▁operation": 5858,
+ "ék": 5859,
+ "acht": 5860,
+ "ights": 5861,
+ "▁mist": 5862,
+ "anda": 5863,
+ "▁energy": 5864,
+ "▁же": 5865,
+ "▁women": 5866,
+ "akt": 5867,
+ "▁CH": 5868,
+ "gebra": 5869,
+ "▁meet": 5870,
+ "iu": 5871,
+ "well": 5872,
+ "öl": 5873,
+ "▁government": 5874,
+ "▁Jos": 5875,
+ "ieg": 5876,
+ "▁syntax": 5877,
+ "fix": 5878,
+ "▁Pet": 5879,
+ "jquery": 5880,
+ "▁card": 5881,
+ "▁principal": 5882,
+ "▁dru": 5883,
+ "▁territ": 5884,
+ "▁пов": 5885,
+ "▁SS": 5886,
+ "рии": 5887,
+ "tres": 5888,
+ "agne": 5889,
+ "lying": 5890,
+ "tilde": 5891,
+ "bern": 5892,
+ "enter": 5893,
+ "Per": 5894,
+ "▁somet": 5895,
+ "Load": 5896,
+ "lice": 5897,
+ "▁sous": 5898,
+ "▁Louis": 5899,
+ "▁logic": 5900,
+ "▁Other": 5901,
+ "▁cir": 5902,
+ "év": 5903,
+ "chron": 5904,
+ "▁han": 5905,
+ "▁margin": 5906,
+ "Window": 5907,
+ "ères": 5908,
+ "nych": 5909,
+ "push": 5910,
+ "bolds": 5911,
+ "▁layout": 5912,
+ "▁[`": 5913,
+ "Char": 5914,
+ "▁Cap": 5915,
+ "boldsymbol": 5916,
+ "▁Roman": 5917,
+ "▁Max": 5918,
+ ":(": 5919,
+ "▁Code": 5920,
+ "ising": 5921,
+ "▁states": 5922,
+ "▁existing": 5923,
+ "support": 5924,
+ "▁research": 5925,
+ "licate": 5926,
+ "vari": 5927,
+ "▁bij": 5928,
+ "▁appe": 5929,
+ "▁happens": 5930,
+ "\\\"": 5931,
+ "▁concern": 5932,
+ "west": 5933,
+ "▁saying": 5934,
+ "pid": 5935,
+ "▁recogn": 5936,
+ "▁Het": 5937,
+ "Child": 5938,
+ "▁cs": 5939,
+ "\\,": 5940,
+ "▁clean": 5941,
+ "lections": 5942,
+ "access": 5943,
+ "ву": 5944,
+ "про": 5945,
+ "acity": 5946,
+ "▁Off": 5947,
+ "▁easily": 5948,
+ "èque": 5949,
+ "▁jako": 5950,
+ "▁iz": 5951,
+ "▁Ha": 5952,
+ "▁Det": 5953,
+ "▁forma": 5954,
+ "sche": 5955,
+ "swers": 5956,
+ "▁offer": 5957,
+ "quired": 5958,
+ "Users": 5959,
+ "▁subst": 5960,
+ ">(": 5961,
+ "▁ground": 5962,
+ "unn": 5963,
+ "rod": 5964,
+ "spe": 5965,
+ "ursor": 5966,
+ "▁leave": 5967,
+ "erk": 5968,
+ "▁tal": 5969,
+ "▁bottom": 5970,
+ "IO": 5971,
+ "▁popular": 5972,
+ "igo": 5973,
+ "▁Time": 5974,
+ "values": 5975,
+ "▁Loc": 5976,
+ "▁Club": 5977,
+ "▁anche": 5978,
+ "iał": 5979,
+ "ії": 5980,
+ "Omega": 5981,
+ "▁located": 5982,
+ "Url": 5983,
+ "▁Esp": 5984,
+ "лы": 5985,
+ "ць": 5986,
+ "ulate": 5987,
+ "▁join": 5988,
+ "aves": 5989,
+ "vet": 5990,
+ "lio": 5991,
+ "remove": 5992,
+ "▁token": 5993,
+ "▁optim": 5994,
+ "▁claim": 5995,
+ "ological": 5996,
+ "▁css": 5997,
+ "▁although": 5998,
+ "▁priv": 5999,
+ "▁Ba": 6000,
+ "ül": 6001,
+ "entication": 6002,
+ "▁ven": 6003,
+ "Server": 6004,
+ "▁Cong": 6005,
+ "NET": 6006,
+ "CON": 6007,
+ "dt": 6008,
+ "perties": 6009,
+ "▁epis": 6010,
+ "wikipedia": 6011,
+ "▁engine": 6012,
+ "▁fer": 6013,
+ "getElement": 6014,
+ "▁Cla": 6015,
+ "ří": 6016,
+ "▁rom": 6017,
+ "varepsilon": 6018,
+ "▁prime": 6019,
+ "istry": 6020,
+ "pected": 6021,
+ "orage": 6022,
+ "▁touch": 6023,
+ "▁['": 6024,
+ "▁dan": 6025,
+ "Em": 6026,
+ "aciones": 6027,
+ "Can": 6028,
+ "▁whom": 6029,
+ "▁behavior": 6030,
+ "▁strings": 6031,
+ "▁Europ": 6032,
+ "▁Rom": 6033,
+ "circ": 6034,
+ "▁pun": 6035,
+ "▁register": 6036,
+ "buntu": 6037,
+ "rain": 6038,
+ "Ob": 6039,
+ "TA": 6040,
+ "▁sometimes": 6041,
+ "▁ment": 6042,
+ "▁integer": 6043,
+ "▁Jac": 6044,
+ "legate": 6045,
+ "othing": 6046,
+ "▁sound": 6047,
+ "laces": 6048,
+ "▁Ба": 6049,
+ "rb": 6050,
+ "di": 6051,
+ "ления": 6052,
+ "▁themselves": 6053,
+ "▁Black": 6054,
+ "▁settings": 6055,
+ "▁norm": 6056,
+ "▁runs": 6057,
+ "▁NOT": 6058,
+ "KE": 6059,
+ "▁perhaps": 6060,
+ "▁Я": 6061,
+ "▁mol": 6062,
+ "▁ans": 6063,
+ "atre": 6064,
+ "▁Dies": 6065,
+ "Token": 6066,
+ "anie": 6067,
+ "▁allowed": 6068,
+ "Range": 6069,
+ "▁Gro": 6070,
+ "via": 6071,
+ "utorial": 6072,
+ "ensor": 6073,
+ "estival": 6074,
+ ");\r": 6075,
+ "краї": 6076,
+ "▁turned": 6077,
+ "scope": 6078,
+ "▁bien": 6079,
+ "=$": 6080,
+ "▁extension": 6081,
+ "atore": 6082,
+ "▁Ро": 6083,
+ "▁specify": 6084,
+ "edu": 6085,
+ "Datos": 6086,
+ "▁stored": 6087,
+ "▁parse": 6088,
+ "▁answers": 6089,
+ "ills": 6090,
+ "▁heard": 6091,
+ "lu": 6092,
+ "▁THE": 6093,
+ "▁gén": 6094,
+ "▁ful": 6095,
+ "ez": 6096,
+ "▁Prem": 6097,
+ "then": 6098,
+ "dp": 6099,
+ "ського": 6100,
+ "▁Si": 6101,
+ "ço": 6102,
+ "Edit": 6103,
+ "ків": 6104,
+ "▁Ли": 6105,
+ "▁Sing": 6106,
+ "▁categ": 6107,
+ "Equ": 6108,
+ "▁guer": 6109,
+ "Width": 6110,
+ "▁Christian": 6111,
+ "stat": 6112,
+ "Write": 6113,
+ "▁woman": 6114,
+ "wood": 6115,
+ "Vis": 6116,
+ "раз": 6117,
+ "▁$$\\": 6118,
+ "oder": 6119,
+ "▁bool": 6120,
+ "▁international": 6121,
+ "ность": 6122,
+ "▁Richard": 6123,
+ "▁addition": 6124,
+ "▁Music": 6125,
+ "▁aber": 6126,
+ "tó": 6127,
+ "▁hier": 6128,
+ "ugh": 6129,
+ "▁pob": 6130,
+ "▁tables": 6131,
+ "Do": 6132,
+ "▁higher": 6133,
+ "psi": 6134,
+ "rá": 6135,
+ "▁active": 6136,
+ "▁Table": 6137,
+ "ње": 6138,
+ "▁description": 6139,
+ "▁seemed": 6140,
+ "íst": 6141,
+ "▁myself": 6142,
+ "▁menu": 6143,
+ "del": 6144,
+ "▁ž": 6145,
+ "ele": 6146,
+ "Aut": 6147,
+ "▁гру": 6148,
+ "mut": 6149,
+ "oon": 6150,
+ "asc": 6151,
+ "bug": 6152,
+ "▁moved": 6153,
+ "CL": 6154,
+ "▁datas": 6155,
+ "SO": 6156,
+ "оло": 6157,
+ "▁Georg": 6158,
+ "▁reach": 6159,
+ ":\"": 6160,
+ "▁evalu": 6161,
+ "▁Hel": 6162,
+ "▁River": 6163,
+ "▁Ар": 6164,
+ "////": 6165,
+ "▁sets": 6166,
+ "▁Olymp": 6167,
+ "Adapter": 6168,
+ ".'": 6169,
+ "overn": 6170,
+ "▁Lord": 6171,
+ "!--": 6172,
+ "jpg": 6173,
+ "imento": 6174,
+ "▁Prof": 6175,
+ "▁achieve": 6176,
+ "}:": 6177,
+ "▁incor": 6178,
+ "▁onder": 6179,
+ "engl": 6180,
+ "ABLE": 6181,
+ "▁Mary": 6182,
+ "▁waren": 6183,
+ "lage": 6184,
+ "Dec": 6185,
+ "англ": 6186,
+ "encias": 6187,
+ "лей": 6188,
+ "▁Machine": 6189,
+ "▁Ан": 6190,
+ "uda": 6191,
+ "▁ś": 6192,
+ "▁XX": 6193,
+ "only": 6194,
+ "ление": 6195,
+ "▁también": 6196,
+ "nej": 6197,
+ "▁relative": 6198,
+ "▁hours": 6199,
+ "▁indeed": 6200,
+ "undo": 6201,
+ "ingu": 6202,
+ "area": 6203,
+ "▁Create": 6204,
+ "beit": 6205,
+ "▁removed": 6206,
+ "master": 6207,
+ "haus": 6208,
+ "▁Bern": 6209,
+ "▁speed": 6210,
+ "▁Bay": 6211,
+ "▁Att": 6212,
+ "▁None": 6213,
+ "application": 6214,
+ "üd": 6215,
+ "▁fit": 6216,
+ "▁Maria": 6217,
+ "▁nord": 6218,
+ "▁split": 6219,
+ "▁stru": 6220,
+ "▁official": 6221,
+ "▁execute": 6222,
+ "ouve": 6223,
+ "{{": 6224,
+ "▁Ap": 6225,
+ "▁ку": 6226,
+ "IL": 6227,
+ "▁^": 6228,
+ "dim": 6229,
+ "▁setup": 6230,
+ "ск": 6231,
+ "▁share": 6232,
+ "▁minutes": 6233,
+ "gle": 6234,
+ "oco": 6235,
+ "stell": 6236,
+ "▁Coun": 6237,
+ "▁temper": 6238,
+ "keit": 6239,
+ "ський": 6240,
+ "ao": 6241,
+ "▁Long": 6242,
+ "(&": 6243,
+ "кан": 6244,
+ "▁dens": 6245,
+ "But": 6246,
+ "XX": 6247,
+ "DATE": 6248,
+ "gan": 6249,
+ ".).": 6250,
+ "▁entry": 6251,
+ "install": 6252,
+ "▁зна": 6253,
+ "▁Som": 6254,
+ "Command": 6255,
+ "ßen": 6256,
+ "▁starting": 6257,
+ "▁sto": 6258,
+ "IG": 6259,
+ "▁minim": 6260,
+ "▁explicit": 6261,
+ "▁bytes": 6262,
+ "▁party": 6263,
+ "tober": 6264,
+ "▁Grand": 6265,
+ "▁Vor": 6266,
+ "▁leur": 6267,
+ "Document": 6268,
+ "erc": 6269,
+ "ensive": 6270,
+ "CP": 6271,
+ "env": 6272,
+ "▁arguments": 6273,
+ "▁Gran": 6274,
+ "arily": 6275,
+ "▁lin": 6276,
+ "tn": 6277,
+ "(-": 6278,
+ "geq": 6279,
+ "▁Famil": 6280,
+ "▁Бо": 6281,
+ "▁tour": 6282,
+ "▁nav": 6283,
+ "▁properly": 6284,
+ "▁Mrs": 6285,
+ "▁Mel": 6286,
+ "▁scale": 6287,
+ "astic": 6288,
+ "ds": 6289,
+ "▁Sir": 6290,
+ "▁Church": 6291,
+ "}^{\\": 6292,
+ "you": 6293,
+ "/.": 6294,
+ "So": 6295,
+ "▁brought": 6296,
+ "▁role": 6297,
+ "▁Sur": 6298,
+ "▁fond": 6299,
+ "▁ges": 6300,
+ "że": 6301,
+ "eten": 6302,
+ "▁était": 6303,
+ "SER": 6304,
+ "▁которы": 6305,
+ "▁equation": 6306,
+ "aspx": 6307,
+ "▁Afr": 6308,
+ "▁dit": 6309,
+ "empty": 6310,
+ "alement": 6311,
+ "wrap": 6312,
+ "▁Bet": 6313,
+ "▁collect": 6314,
+ "▁git": 6315,
+ "▁vie": 6316,
+ "▁..": 6317,
+ "рой": 6318,
+ "▁": 6319,
+ "▁educ": 6320,
+ "kl": 6321,
+ "ensis": 6322,
+ "▁OR": 6323,
+ "▁Hi": 6324,
+ "▁Cour": 6325,
+ "бы": 6326,
+ "cert": 6327,
+ "▁Ges": 6328,
+ "essor": 6329,
+ "Main": 6330,
+ "▁лю": 6331,
+ "cade": 6332,
+ "dot": 6333,
+ "augh": 6334,
+ "hib": 6335,
+ "▁automatically": 6336,
+ "▁spir": 6337,
+ "present": 6338,
+ "▁February": 6339,
+ "▁Elle": 6340,
+ "custom": 6341,
+ "▁proget": 6342,
+ "▁administr": 6343,
+ "AA": 6344,
+ "▁born": 6345,
+ "▁College": 6346,
+ "athol": 6347,
+ "`)": 6348,
+ "ierre": 6349,
+ "▁ran": 6350,
+ "▁profession": 6351,
+ "ogen": 6352,
+ "}_{\\": 6353,
+ "▁activity": 6354,
+ "▁scroll": 6355,
+ "▁prove": 6356,
+ "ibrary": 6357,
+ "eries": 6358,
+ "Read": 6359,
+ "year": 6360,
+ "▁lang": 6361,
+ "Det": 6362,
+ "▁knew": 6363,
+ "▁protected": 6364,
+ "▁wor": 6365,
+ "▁effic": 6366,
+ "▁rég": 6367,
+ "▁theory": 6368,
+ "▁published": 6369,
+ "real": 6370,
+ "▁Tour": 6371,
+ "▁durante": 6372,
+ "äs": 6373,
+ "▁positive": 6374,
+ "▁forward": 6375,
+ "▁Rel": 6376,
+ "{\"": 6377,
+ "park": 6378,
+ "▁Um": 6379,
+ "▁eer": 6380,
+ "enta": 6381,
+ "▁imag": 6382,
+ "ної": 6383,
+ "piel": 6384,
+ "▁jQuery": 6385,
+ "isme": 6386,
+ "chni": 6387,
+ "organ": 6388,
+ "▁args": 6389,
+ "oir": 6390,
+ "heim": 6391,
+ "rian": 6392,
+ "eless": 6393,
+ "uses": 6394,
+ "дин": 6395,
+ "ición": 6396,
+ "▁indust": 6397,
+ "▁wish": 6398,
+ "ány": 6399,
+ "oca": 6400,
+ "▁angular": 6401,
+ "ieved": 6402,
+ "▁occur": 6403,
+ "SELECT": 6404,
+ "onia": 6405,
+ "admin": 6406,
+ "▁Best": 6407,
+ "▁это": 6408,
+ "огра": 6409,
+ "▁loss": 6410,
+ "▁bal": 6411,
+ "▁Рос": 6412,
+ "▁career": 6413,
+ "▁пе": 6414,
+ "IX": 6415,
+ "▁fall": 6416,
+ "▁Rob": 6417,
+ "▁OP": 6418,
+ "ened": 6419,
+ "graphics": 6420,
+ "▁coming": 6421,
+ "Update": 6422,
+ "▁died": 6423,
+ "eden": 6424,
+ "▁abs": 6425,
+ "▁inner": 6426,
+ "▁trav": 6427,
+ "стоя": 6428,
+ "zą": 6429,
+ "ép": 6430,
+ "▁Group": 6431,
+ "▁cel": 6432,
+ "▁stuff": 6433,
+ "▁situation": 6434,
+ "▁${": 6435,
+ "acle": 6436,
+ "▁purpose": 6437,
+ "▁Fire": 6438,
+ "▁Oh": 6439,
+ "▁Second": 6440,
+ "▁upload": 6441,
+ "ostał": 6442,
+ "ющи": 6443,
+ "Auth": 6444,
+ "▁showing": 6445,
+ "▁completely": 6446,
+ "avel": 6447,
+ "bd": 6448,
+ "▁proced": 6449,
+ "▁Ö": 6450,
+ "control": 6451,
+ "▁thank": 6452,
+ "undred": 6453,
+ "▁tom": 6454,
+ "▁examples": 6455,
+ "▁remember": 6456,
+ "▁рабо": 6457,
+ "▁possib": 6458,
+ "▁detect": 6459,
+ "▁poor": 6460,
+ "▁Op": 6461,
+ "▁century": 6462,
+ "utter": 6463,
+ "▁login": 6464,
+ "unst": 6465,
+ "Output": 6466,
+ "▁otherwise": 6467,
+ "lan": 6468,
+ "тур": 6469,
+ "▁сов": 6470,
+ "▁groups": 6471,
+ "rip": 6472,
+ "▁shell": 6473,
+ "▁district": 6474,
+ "▁records": 6475,
+ "▁siè": 6476,
+ "fortun": 6477,
+ "enty": 6478,
+ "▁Tre": 6479,
+ "▁changing": 6480,
+ "след": 6481,
+ "aught": 6482,
+ "▁deep": 6483,
+ "subset": 6484,
+ "agy": 6485,
+ "endar": 6486,
+ "jax": 6487,
+ "OM": 6488,
+ "El": 6489,
+ "imate": 6490,
+ "ardo": 6491,
+ "▁plot": 6492,
+ "▁visit": 6493,
+ "▁bug": 6494,
+ "▁все": 6495,
+ "▁opened": 6496,
+ "▁repla": 6497,
+ "▁Henry": 6498,
+ "▁pp": 6499,
+ "bas": 6500,
+ "▁dark": 6501,
+ "▁Martin": 6502,
+ "▁resource": 6503,
+ "iling": 6504,
+ "▁watch": 6505,
+ "replace": 6506,
+ "▁release": 6507,
+ "Location": 6508,
+ "▁learning": 6509,
+ "menu": 6510,
+ "▁allows": 6511,
+ "ър": 6512,
+ "Length": 6513,
+ "▁whatever": 6514,
+ "▁pages": 6515,
+ "▁compiler": 6516,
+ "▁также": 6517,
+ "▁Pan": 6518,
+ "command": 6519,
+ "▁road": 6520,
+ "▁unless": 6521,
+ "`?": 6522,
+ "▁discover": 6523,
+ "▁он": 6524,
+ "}]": 6525,
+ "bour": 6526,
+ "▁Could": 6527,
+ "▁regex": 6528,
+ "▁ps": 6529,
+ "CD": 6530,
+ "из": 6531,
+ "▁wife": 6532,
+ "amenti": 6533,
+ "▁fair": 6534,
+ "▁DB": 6535,
+ "▁Cup": 6536,
+ "enen": 6537,
+ "ajax": 6538,
+ "othèque": 6539,
+ "▁seiner": 6540,
+ "icker": 6541,
+ "ám": 6542,
+ "exchange": 6543,
+ "oles": 6544,
+ "IF": 6545,
+ "▁До": 6546,
+ "ohn": 6547,
+ "▁grow": 6548,
+ "▁Thus": 6549,
+ "spec": 6550,
+ "▁hatte": 6551,
+ "#,": 6552,
+ "allel": 6553,
+ "▁rate": 6554,
+ "▁central": 6555,
+ "▁Van": 6556,
+ "iforn": 6557,
+ "Run": 6558,
+ "▁study": 6559,
+ "▁XML": 6560,
+ "▁Che": 6561,
+ "▁beaut": 6562,
+ "mid": 6563,
+ "▁advance": 6564,
+ "Ver": 6565,
+ "тя": 6566,
+ "▁hands": 6567,
+ "▁lay": 6568,
+ "▁š": 6569,
+ "▁OS": 6570,
+ "▁{}": 6571,
+ "Pre": 6572,
+ "▁Hall": 6573,
+ "imp": 6574,
+ "▁sun": 6575,
+ "▁steps": 6576,
+ "▁jud": 6577,
+ "qui": 6578,
+ "▁boot": 6579,
+ "▁%>": 6580,
+ "▁Ва": 6581,
+ "nost": 6582,
+ "▁nem": 6583,
+ "▁pen": 6584,
+ "Open": 6585,
+ "▁church": 6586,
+ "кон": 6587,
+ "▁average": 6588,
+ "▁comments": 6589,
+ "▁corresponding": 6590,
+ "levant": 6591,
+ "▁bed": 6592,
+ "▁meaning": 6593,
+ "Version": 6594,
+ "Link": 6595,
+ "bel": 6596,
+ "▁extract": 6597,
+ "ść": 6598,
+ "▁IV": 6599,
+ "▁Ir": 6600,
+ "▁computer": 6601,
+ "▁affect": 6602,
+ "▁Ста": 6603,
+ "AX": 6604,
+ "sort": 6605,
+ "▁species": 6606,
+ "▁Oper": 6607,
+ "▁hash": 6608,
+ "ches": 6609,
+ "▁Einzeln": 6610,
+ "▁keys": 6611,
+ "▁marzo": 6612,
+ "▁interpret": 6613,
+ "hood": 6614,
+ "▁coordin": 6615,
+ "ös": 6616,
+ "rage": 6617,
+ "etz": 6618,
+ "iza": 6619,
+ "дер": 6620,
+ "üt": 6621,
+ "^*": 6622,
+ "▁modify": 6623,
+ "▁termin": 6624,
+ "▁cred": 6625,
+ "zon": 6626,
+ "ную": 6627,
+ "▁mie": 6628,
+ "▁''": 6629,
+ "▁Mos": 6630,
+ "▁connected": 6631,
+ "NO": 6632,
+ "▁compile": 6633,
+ "▁\"\\": 6634,
+ "▁cat": 6635,
+ "fiddle": 6636,
+ "uta": 6637,
+ "Access": 6638,
+ "▁Sto": 6639,
+ "▁Bur": 6640,
+ "▁north": 6641,
+ "Gamma": 6642,
+ "▁alloc": 6643,
+ "Init": 6644,
+ "▁Link": 6645,
+ "ialize": 6646,
+ "Impl": 6647,
+ "oupe": 6648,
+ "ropri": 6649,
+ "▁Gold": 6650,
+ "▁solo": 6651,
+ "▁Dist": 6652,
+ ",-": 6653,
+ "nav": 6654,
+ "▁alert": 6655,
+ "esis": 6656,
+ "▁Os": 6657,
+ "///": 6658,
+ "▁feb": 6659,
+ "▁-->": 6660,
+ "foot": 6661,
+ "▁Fried": 6662,
+ "▁Einzelnach": 6663,
+ "▁rev": 6664,
+ "zeit": 6665,
+ "▁Stat": 6666,
+ "▁Seg": 6667,
+ "▁blo": 6668,
+ "wick": 6669,
+ "EL": 6670,
+ "caption": 6671,
+ "header": 6672,
+ "▁president": 6673,
+ "▁multip": 6674,
+ "▁Einzelnachweise": 6675,
+ "▁seine": 6676,
+ "?”": 6677,
+ "Function": 6678,
+ "▁Stand": 6679,
+ "▁Function": 6680,
+ "▁?>": 6681,
+ "▁Bill": 6682,
+ "▁spect": 6683,
+ "▁redirect": 6684,
+ "rupt": 6685,
+ "▁walk": 6686,
+ "вши": 6687,
+ "springframework": 6688,
+ "place": 6689,
+ "ého": 6690,
+ "Entity": 6691,
+ "▁Service": 6692,
+ "inte": 6693,
+ "▁training": 6694,
+ "▁(`": 6695,
+ "фор": 6696,
+ "▁кра": 6697,
+ "aur": 6698,
+ "▁fetch": 6699,
+ "▁†": 6700,
+ "▁même": 6701,
+ "▁('": 6702,
+ "atively": 6703,
+ "▁execut": 6704,
+ "äch": 6705,
+ "▁Catalogue": 6706,
+ "based": 6707,
+ "Attribute": 6708,
+ "▁spring": 6709,
+ "phone": 6710,
+ "тра": 6711,
+ "▁пи": 6712,
+ "тера": 6713,
+ "▁`\\": 6714,
+ "▁Od": 6715,
+ "One": 6716,
+ "send": 6717,
+ "bon": 6718,
+ "▁°": 6719,
+ "MO": 6720,
+ "▁asking": 6721,
+ "▁où": 6722,
+ "▁ingår": 6723,
+ "▁testing": 6724,
+ "▁фа": 6725,
+ "▁Book": 6726,
+ "imm": 6727,
+ "▁progress": 6728,
+ "bro": 6729,
+ "First": 6730,
+ "▁phot": 6731,
+ "▁ON": 6732,
+ "Template": 6733,
+ "developer": 6734,
+ "annot": 6735,
+ "▁>=": 6736,
+ "mission": 6737,
+ "▁któ": 6738,
+ "pc": 6739,
+ "bach": 6740,
+ "zent": 6741,
+ "ued": 6742,
+ "▁ones": 6743,
+ "ји": 6744,
+ "▁rout": 6745,
+ "▁Ки": 6746,
+ "Post": 6747,
+ "ції": 6748,
+ "▁Vir": 6749,
+ "nek": 6750,
+ "aging": 6751,
+ "▁ок": 6752,
+ "izont": 6753,
+ "▁agosto": 6754,
+ "▁choose": 6755,
+ "▁\r": 6756,
+ "▁systems": 6757,
+ "loss": 6758,
+ "iente": 6759,
+ "▁Cre": 6760,
+ "▁contra": 6761,
+ "ums": 6762,
+ "▁beginning": 6763,
+ "emy": 6764,
+ "istics": 6765,
+ "▁served": 6766,
+ "Down": 6767,
+ "options": 6768,
+ "▁Govern": 6769,
+ "▁BY": 6770,
+ "▁jest": 6771,
+ "té": 6772,
+ "▁continue": 6773,
+ "pers": 6774,
+ "▁easier": 6775,
+ "▁cos": 6776,
+ "esso": 6777,
+ ">>": 6778,
+ "Net": 6779,
+ "▁Bor": 6780,
+ "▁Cr": 6781,
+ "▁transfer": 6782,
+ "▁CSS": 6783,
+ "▁finns": 6784,
+ "▁хо": 6785,
+ "username": 6786,
+ "▁constru": 6787,
+ "▁pain": 6788,
+ "▁Tem": 6789,
+ "▁specified": 6790,
+ "▁brit": 6791,
+ "ские": 6792,
+ "irk": 6793,
+ "rapper": 6794,
+ "▁counter": 6795,
+ "▁[\"": 6796,
+ "oded": 6797,
+ "дан": 6798,
+ "property": 6799,
+ "hard": 6800,
+ "istrict": 6801,
+ ")/": 6802,
+ "▁Pour": 6803,
+ "▁Where": 6804,
+ "▁===": 6805,
+ "▁sowie": 6806,
+ "▁Про": 6807,
+ "▁dess": 6808,
+ "▁tras": 6809,
+ "▁уча": 6810,
+ "▁Over": 6811,
+ "note": 6812,
+ "▁America": 6813,
+ "cp": 6814,
+ "▁grande": 6815,
+ "Me": 6816,
+ ")-": 6817,
+ "Mode": 6818,
+ "▁passing": 6819,
+ "▁giving": 6820,
+ "Cl": 6821,
+ "}/": 6822,
+ "Menu": 6823,
+ "!!": 6824,
+ "angular": 6825,
+ "▁launch": 6826,
+ "varphi": 6827,
+ "▁Johann": 6828,
+ "▁foreach": 6829,
+ "ró": 6830,
+ "sequ": 6831,
+ "ifi": 6832,
+ "Am": 6833,
+ "arp": 6834,
+ "▁buffer": 6835,
+ "▁ni": 6836,
+ "▁mix": 6837,
+ "▁Museum": 6838,
+ "▁meant": 6839,
+ "asi": 6840,
+ "▁kan": 6841,
+ "прав": 6842,
+ "Comp": 6843,
+ "istoire": 6844,
+ "iful": 6845,
+ "jer": 6846,
+ "issions": 6847,
+ "Resource": 6848,
+ "▁воз": 6849,
+ "▁ST": 6850,
+ "▁solutions": 6851,
+ "▁belong": 6852,
+ "▁Associ": 6853,
+ "cf": 6854,
+ "▁Mär": 6855,
+ "▁grid": 6856,
+ "Mult": 6857,
+ "▁requires": 6858,
+ "kk": 6859,
+ "▁teach": 6860,
+ "emeinde": 6861,
+ "▁square": 6862,
+ "▁коман": 6863,
+ "▁Event": 6864,
+ "▁rules": 6865,
+ "▁bur": 6866,
+ "▁eing": 6867,
+ "▁Mai": 6868,
+ "▁nam": 6869,
+ "▁slä": 6870,
+ "hör": 6871,
+ "▁tip": 6872,
+ "▁Literatur": 6873,
+ "▁scope": 6874,
+ "overline": 6875,
+ "▁exit": 6876,
+ ")?": 6877,
+ "bet": 6878,
+ "▁vict": 6879,
+ "Off": 6880,
+ "▁approxim": 6881,
+ "▁Geb": 6882,
+ "ktop": 6883,
+ "heit": 6884,
+ "▁Ю": 6885,
+ "template": 6886,
+ "рон": 6887,
+ "▁uno": 6888,
+ "Serv": 6889,
+ "▁framework": 6890,
+ "operator": 6891,
+ "▁generally": 6892,
+ "▁hundred": 6893,
+ "▁divers": 6894,
+ "ovi": 6895,
+ "▁rés": 6896,
+ "abs": 6897,
+ "▁gal": 6898,
+ "çais": 6899,
+ "▁feet": 6900,
+ "▁virtual": 6901,
+ "czy": 6902,
+ "ску": 6903,
+ "./": 6904,
+ "hu": 6905,
+ "ancy": 6906,
+ "▁recommend": 6907,
+ "▁під": 6908,
+ "▁money": 6909,
+ "▁versions": 6910,
+ "▁helps": 6911,
+ "▁Hor": 6912,
+ "Items": 6913,
+ "look": 6914,
+ "connect": 6915,
+ "anges": 6916,
+ "ViewController": 6917,
+ "elijk": 6918,
+ "▁occup": 6919,
+ "▁editor": 6920,
+ "auto": 6921,
+ "ög": 6922,
+ "▁seconds": 6923,
+ "▁obvious": 6924,
+ "vm": 6925,
+ "akes": 6926,
+ "▁gegen": 6927,
+ "▁til": 6928,
+ "jection": 6929,
+ "лення": 6930,
+ "▁operations": 6931,
+ "▁East": 6932,
+ "ogy": 6933,
+ "▁Polit": 6934,
+ "uten": 6935,
+ "▁Joseph": 6936,
+ "\"`": 6937,
+ "▁Company": 6938,
+ "▁callback": 6939,
+ "▁sen": 6940,
+ "cción": 6941,
+ "▁associated": 6942,
+ "▁containing": 6943,
+ "▁practice": 6944,
+ "elijke": 6945,
+ "oke": 6946,
+ "éra": 6947,
+ "uns": 6948,
+ "anta": 6949,
+ "vey": 6950,
+ "zu": 6951,
+ "▁Bes": 6952,
+ "▁Flor": 6953,
+ "mem": 6954,
+ "ycz": 6955,
+ "▁architect": 6956,
+ "▁anni": 6957,
+ "▁contact": 6958,
+ "YPE": 6959,
+ "▁Cas": 6960,
+ "▁полу": 6961,
+ "ovo": 6962,
+ "▁bring": 6963,
+ "▁concept": 6964,
+ "▁js": 6965,
+ "▁Referencias": 6966,
+ "emble": 6967,
+ "▁н": 6968,
+ "▁supported": 6969,
+ "Big": 6970,
+ "▁Hans": 6971,
+ "erv": 6972,
+ "▁Maj": 6973,
+ "▁arriv": 6974,
+ "▁Have": 6975,
+ "▁probability": 6976,
+ "▁Pop": 6977,
+ "▁Pass": 6978,
+ "token": 6979,
+ "Provider": 6980,
+ "▁Ra": 6981,
+ "Reader": 6982,
+ "ooth": 6983,
+ "lap": 6984,
+ "▁assist": 6985,
+ "adow": 6986,
+ "▁tests": 6987,
+ "сси": 6988,
+ "▁king": 6989,
+ "langle": 6990,
+ "▁Sum": 6991,
+ "OIN": 6992,
+ "▁security": 6993,
+ "nis": 6994,
+ "../": 6995,
+ "▁basic": 6996,
+ "unity": 6997,
+ "`:": 6998,
+ "▁кото": 6999,
+ "kow": 7000,
+ "▁Bibliothèque": 7001,
+ "asion": 7002,
+ "alo": 7003,
+ "ifest": 7004,
+ "▁novembre": 7005,
+ "▁peu": 7006,
+ "▁Ж": 7007,
+ "enschaft": 7008,
+ "clus": 7009,
+ "ју": 7010,
+ "Height": 7011,
+ "ún": 7012,
+ "▁tur": 7013,
+ "▁ideas": 7014,
+ "▁ces": 7015,
+ "frak": 7016,
+ "▁premier": 7017,
+ "itation": 7018,
+ "▁sé": 7019,
+ "HTML": 7020,
+ "▁Royal": 7021,
+ "ської": 7022,
+ "▁byte": 7023,
+ "PS": 7024,
+ "▁segu": 7025,
+ "inen": 7026,
+ "▁Great": 7027,
+ "▁Ку": 7028,
+ "▁external": 7029,
+ "Title": 7030,
+ "Top": 7031,
+ "Process": 7032,
+ "ität": 7033,
+ "▁`/": 7034,
+ "▁secret": 7035,
+ "pository": 7036,
+ "▁potential": 7037,
+ "▁Bud": 7038,
+ "names": 7039,
+ "asons": 7040,
+ "stackexchange": 7041,
+ "background": 7042,
+ "пер": 7043,
+ "сов": 7044,
+ "after": 7045,
+ "▁pero": 7046,
+ "▁software": 7047,
+ "▁sed": 7048,
+ "▁arrays": 7049,
+ "tmp": 7050,
+ "▁asp": 7051,
+ "scale": 7052,
+ "▁Lat": 7053,
+ "anal": 7054,
+ "▁gem": 7055,
+ "PU": 7056,
+ "▁Altri": 7057,
+ "That": 7058,
+ "▁Ни": 7059,
+ "ifact": 7060,
+ "Address": 7061,
+ "▁south": 7062,
+ "▁formula": 7063,
+ "▁Colleg": 7064,
+ "▁ін": 7065,
+ "ktion": 7066,
+ "▁sac": 7067,
+ "SH": 7068,
+ "ajo": 7069,
+ "etc": 7070,
+ "vc": 7071,
+ "`](": 7072,
+ "▁Dur": 7073,
+ "▁Ме": 7074,
+ "▁Smith": 7075,
+ "items": 7076,
+ "CK": 7077,
+ "elo": 7078,
+ "▁plugin": 7079,
+ "▁serie": 7080,
+ "ienne": 7081,
+ "▁или": 7082,
+ "Mar": 7083,
+ "▁Image": 7084,
+ "got": 7085,
+ "andas": 7086,
+ "▁matches": 7087,
+ "▁worth": 7088,
+ "▁Deb": 7089,
+ "▁cache": 7090,
+ "▁felt": 7091,
+ "ersch": 7092,
+ "izes": 7093,
+ "Oper": 7094,
+ "▁Jahre": 7095,
+ "▁commune": 7096,
+ "thread": 7097,
+ "▁ny": 7098,
+ "dec": 7099,
+ "ouw": 7100,
+ "▁surface": 7101,
+ "▁Por": 7102,
+ "▁Street": 7103,
+ "при": 7104,
+ "▁candid": 7105,
+ "▁Return": 7106,
+ "▁Kom": 7107,
+ "gru": 7108,
+ "▁ти": 7109,
+ "[\\": 7110,
+ "▁depends": 7111,
+ "▁influ": 7112,
+ "▁towards": 7113,
+ "ained": 7114,
+ "▁rank": 7115,
+ "▁Januar": 7116,
+ "▁components": 7117,
+ "gest": 7118,
+ "getElementById": 7119,
+ "▁checked": 7120,
+ "airs": 7121,
+ "join": 7122,
+ "▁dead": 7123,
+ "▁hit": 7124,
+ "ény": 7125,
+ "▁equivalent": 7126,
+ "▁Пре": 7127,
+ "▁appropri": 7128,
+ "Pass": 7129,
+ "▁primer": 7130,
+ "englisch": 7131,
+ "▁appar": 7132,
+ "▁During": 7133,
+ "▁knowledge": 7134,
+ "▁trigger": 7135,
+ "▁core": 7136,
+ "▁Ol": 7137,
+ "▁Produ": 7138,
+ "▁Fern": 7139,
+ "▁нача": 7140,
+ "Te": 7141,
+ "▁Mot": 7142,
+ "erve": 7143,
+ "тво": 7144,
+ "▁mid": 7145,
+ "▁finally": 7146,
+ "aires": 7147,
+ "▁especially": 7148,
+ "▁tut": 7149,
+ "▁receive": 7150,
+ "adre": 7151,
+ "▁neigh": 7152,
+ "ktet": 7153,
+ "ilde": 7154,
+ "▁radio": 7155,
+ "▁driver": 7156,
+ "лись": 7157,
+ "endencies": 7158,
+ "▁IE": 7159,
+ "▁saved": 7160,
+ "ffect": 7161,
+ "▁Wayback": 7162,
+ "iat": 7163,
+ "▁padding": 7164,
+ "window": 7165,
+ "тиче": 7166,
+ "▁mur": 7167,
+ "actor": 7168,
+ "▁Han": 7169,
+ "ональ": 7170,
+ "▁gar": 7171,
+ "▁familjen": 7172,
+ "ós": 7173,
+ "▁nationale": 7174,
+ "▁pré": 7175,
+ "ded": 7176,
+ "onal": 7177,
+ "▁President": 7178,
+ "▁\\,": 7179,
+ "▁placed": 7180,
+ "erni": 7181,
+ "▁signal": 7182,
+ "nab": 7183,
+ "hm": 7184,
+ "Mon": 7185,
+ "▁vs": 7186,
+ "SC": 7187,
+ "▁progetti": 7188,
+ "▁Ü": 7189,
+ "▁forms": 7190,
+ "▁messages": 7191,
+ "inf": 7192,
+ "users": 7193,
+ "GET": 7194,
+ "▁dels": 7195,
+ "Collection": 7196,
+ "▁Good": 7197,
+ "▁Maybe": 7198,
+ "▁compr": 7199,
+ "▁larger": 7200,
+ "gres": 7201,
+ "aper": 7202,
+ "▁При": 7203,
+ "undes": 7204,
+ "▁sea": 7205,
+ "▁Spring": 7206,
+ "ulo": 7207,
+ "▁mechan": 7208,
+ "▁sans": 7209,
+ "GB": 7210,
+ "Valid": 7211,
+ "▁communic": 7212,
+ "▁pra": 7213,
+ "vier": 7214,
+ "▁Се": 7215,
+ "▁ain": 7216,
+ "тура": 7217,
+ "kom": 7218,
+ "skiego": 7219,
+ "ково": 7220,
+ "adata": 7221,
+ "▁Ре": 7222,
+ "▁boolean": 7223,
+ "sets": 7224,
+ "▁effort": 7225,
+ ".[": 7226,
+ "▁został": 7227,
+ "PA": 7228,
+ "▁Vict": 7229,
+ "SD": 7230,
+ "ował": 7231,
+ "▁emb": 7232,
+ "▁prima": 7233,
+ "▁hour": 7234,
+ "subsection": 7235,
+ "▁Fort": 7236,
+ "mathfrak": 7237,
+ "igin": 7238,
+ "GL": 7239,
+ ")+": 7240,
+ "fi": 7241,
+ "▁anci": 7242,
+ "▁pan": 7243,
+ "\\)": 7244,
+ "▁lug": 7245,
+ "▁deploy": 7246,
+ "domain": 7247,
+ "▁slight": 7248,
+ "JSON": 7249,
+ "▁morning": 7250,
+ "▁hi": 7251,
+ "▁compare": 7252,
+ "ije": 7253,
+ "▁blue": 7254,
+ "▁Ac": 7255,
+ "▁middle": 7256,
+ "anden": 7257,
+ "▁shared": 7258,
+ "▁Camp": 7259,
+ "▁Á": 7260,
+ "ounded": 7261,
+ "uw": 7262,
+ "ierung": 7263,
+ "Stack": 7264,
+ "▁eines": 7265,
+ "▁Da": 7266,
+ "lij": 7267,
+ "enti": 7268,
+ "▁й": 7269,
+ "Util": 7270,
+ "▁experience": 7271,
+ "▁await": 7272,
+ "uls": 7273,
+ "▁requests": 7274,
+ "▁impos": 7275,
+ "▁constraint": 7276,
+ "Change": 7277,
+ "emph": 7278,
+ "бер": 7279,
+ "▁Another": 7280,
+ "Custom": 7281,
+ "▁significant": 7282,
+ "cr": 7283,
+ "▁million": 7284,
+ "reek": 7285,
+ "▁dalla": 7286,
+ "▁Germ": 7287,
+ "otal": 7288,
+ "ateur": 7289,
+ "btn": 7290,
+ "▁thinking": 7291,
+ "▁interval": 7292,
+ "onne": 7293,
+ "▁liv": 7294,
+ "():": 7295,
+ "▁Ве": 7296,
+ "oe": 7297,
+ "▁Ev": 7298,
+ "meta": 7299,
+ "▁broad": 7300,
+ "Rem": 7301,
+ "apply": 7302,
+ "▁couple": 7303,
+ "▁techni": 7304,
+ "idades": 7305,
+ "▁goal": 7306,
+ "▁CD": 7307,
+ "hab": 7308,
+ "▁explan": 7309,
+ "anner": 7310,
+ "▁Because": 7311,
+ "blog": 7312,
+ "includegraphics": 7313,
+ "▁voice": 7314,
+ "▁Map": 7315,
+ "vention": 7316,
+ "Session": 7317,
+ "▁Liens": 7318,
+ "▁sor": 7319,
+ "category": 7320,
+ "ashington": 7321,
+ "▁März": 7322,
+ "pop": 7323,
+ "illet": 7324,
+ "▁zwei": 7325,
+ "▁Lie": 7326,
+ "Null": 7327,
+ "address": 7328,
+ "▁factor": 7329,
+ "▁ligne": 7330,
+ "▁HTTP": 7331,
+ "▁suf": 7332,
+ "▁personal": 7333,
+ "cip": 7334,
+ "▁Dar": 7335,
+ "▁adm": 7336,
+ "кой": 7337,
+ "▁Ext": 7338,
+ "▁god": 7339,
+ "aa": 7340,
+ "Right": 7341,
+ "été": 7342,
+ "▁dynamic": 7343,
+ "▁maintain": 7344,
+ "tor": 7345,
+ "########": 7346,
+ "▁Fra": 7347,
+ "▁choice": 7348,
+ "▁сто": 7349,
+ "СР": 7350,
+ "▁Feder": 7351,
+ "ston": 7352,
+ "▁flag": 7353,
+ "kit": 7354,
+ "Module": 7355,
+ "▁спо": 7356,
+ "▁Stra": 7357,
+ "icks": 7358,
+ "▁haven": 7359,
+ "▁Mass": 7360,
+ "▁Emp": 7361,
+ "▁Pi": 7362,
+ "▁Pen": 7363,
+ "Rect": 7364,
+ "▁Kr": 7365,
+ "itat": 7366,
+ "eler": 7367,
+ "ября": 7368,
+ "itet": 7369,
+ "▁Start": 7370,
+ "▁produced": 7371,
+ "▁пол": 7372,
+ "(_": 7373,
+ "▁delet": 7374,
+ "▁hot": 7375,
+ "▁Geschichte": 7376,
+ "~~": 7377,
+ "▁months": 7378,
+ "▁tod": 7379,
+ "▁ни": 7380,
+ "ús": 7381,
+ "temp": 7382,
+ "▁Dez": 7383,
+ "ypes": 7384,
+ "▁cui": 7385,
+ "ommun": 7386,
+ "actions": 7387,
+ "▁eigen": 7388,
+ "▁immediately": 7389,
+ "PL": 7390,
+ "▁Го": 7391,
+ "▁Bal": 7392,
+ "ље": 7393,
+ "ului": 7394,
+ "▁online": 7395,
+ "▁años": 7396,
+ "▁namespace": 7397,
+ "▁mond": 7398,
+ "▁Base": 7399,
+ "▁Canada": 7400,
+ "etzt": 7401,
+ "}-": 7402,
+ "▁defin": 7403,
+ "▁doubt": 7404,
+ "▁investig": 7405,
+ "views": 7406,
+ "▁Line": 7407,
+ "▁stage": 7408,
+ "ettings": 7409,
+ "ubre": 7410,
+ "float": 7411,
+ "▁Play": 7412,
+ "▁Las": 7413,
+ "ptr": 7414,
+ "▁becomes": 7415,
+ "estamp": 7416,
+ "▁independent": 7417,
+ "▁analysis": 7418,
+ "▁Look": 7419,
+ "lain": 7420,
+ "▁рас": 7421,
+ "Reference": 7422,
+ "▁sorry": 7423,
+ "▁supposed": 7424,
+ "ût": 7425,
+ "▁degree": 7426,
+ "utz": 7427,
+ "MM": 7428,
+ "▁desired": 7429,
+ "ły": 7430,
+ "▁len": 7431,
+ "▁alone": 7432,
+ "signed": 7433,
+ "▁Sta": 7434,
+ "Person": 7435,
+ "▁applied": 7436,
+ "▁Back": 7437,
+ "▁mars": 7438,
+ "Part": 7439,
+ "▁Did": 7440,
+ "▁externes": 7441,
+ "▁np": 7442,
+ "ongo": 7443,
+ "▁esta": 7444,
+ "Block": 7445,
+ "▁pou": 7446,
+ "adores": 7447,
+ "▁Studio": 7448,
+ ".$": 7449,
+ "▁reached": 7450,
+ "bot": 7451,
+ "▁Juni": 7452,
+ "tons": 7453,
+ "itel": 7454,
+ "▁Gar": 7455,
+ "▁articles": 7456,
+ "▁District": 7457,
+ "▁trouble": 7458,
+ "lide": 7459,
+ "▁Found": 7460,
+ "ád": 7461,
+ "▁equip": 7462,
+ "▁internal": 7463,
+ "'],": 7464,
+ "▁async": 7465,
+ "UB": 7466,
+ "gel": 7467,
+ "▁ai": 7468,
+ "ensure": 7469,
+ "▁appeared": 7470,
+ "▁$_": 7471,
+ "▁maximum": 7472,
+ "▁Си": 7473,
+ "рь": 7474,
+ "▁announ": 7475,
+ "лась": 7476,
+ "▁cm": 7477,
+ "ган": 7478,
+ "aupt": 7479,
+ "▁latter": 7480,
+ "▁platform": 7481,
+ "▁dra": 7482,
+ "▁capital": 7483,
+ "▁solved": 7484,
+ "riz": 7485,
+ "edic": 7486,
+ "▁Mur": 7487,
+ "▁Top": 7488,
+ "тся": 7489,
+ "Panel": 7490,
+ "rule": 7491,
+ "etic": 7492,
+ "▁Ren": 7493,
+ "▁Wikimedia": 7494,
+ "▁TO": 7495,
+ "second": 7496,
+ "isl": 7497,
+ "▁hy": 7498,
+ "▁niet": 7499,
+ "▁loaded": 7500,
+ "dig": 7501,
+ "▁mayo": 7502,
+ "[:": 7503,
+ "Acc": 7504,
+ "▁bek": 7505,
+ "нию": 7506,
+ "login": 7507,
+ "tx": 7508,
+ "▁Fur": 7509,
+ "▁Santa": 7510,
+ "azz": 7511,
+ "▁conduct": 7512,
+ "▁India": 7513,
+ "Order": 7514,
+ "irth": 7515,
+ "tw": 7516,
+ "}+": 7517,
+ "▁wieder": 7518,
+ "▁Edu": 7519,
+ "AV": 7520,
+ "▁```": 7521,
+ "▁manually": 7522,
+ "▁Read": 7523,
+ "fortunately": 7524,
+ "▁Run": 7525,
+ "▁Award": 7526,
+ "▁Foot": 7527,
+ "*)": 7528,
+ "params": 7529,
+ "пі": 7530,
+ "▁native": 7531,
+ "rift": 7532,
+ "▁ä": 7533,
+ "ATH": 7534,
+ "▁yourself": 7535,
+ "▁prior": 7536,
+ "▁cit": 7537,
+ "äh": 7538,
+ "▁treat": 7539,
+ "▁meas": 7540,
+ "ributed": 7541,
+ "▁clar": 7542,
+ "card": 7543,
+ "ROR": 7544,
+ "illes": 7545,
+ "▁layer": 7546,
+ "auer": 7547,
+ "▁rat": 7548,
+ "bernate": 7549,
+ "▁stato": 7550,
+ "▁China": 7551,
+ "▁$('#": 7552,
+ "▁naar": 7553,
+ "zip": 7554,
+ "▁${\\": 7555,
+ "▁appreciated": 7556,
+ "▁име": 7557,
+ "ży": 7558,
+ "▁przez": 7559,
+ "▁Indian": 7560,
+ "▁Tod": 7561,
+ "▁Source": 7562,
+ "▁други": 7563,
+ "internal": 7564,
+ "ionale": 7565,
+ "Product": 7566,
+ "▁Men": 7567,
+ "▁upper": 7568,
+ "▁Every": 7569,
+ "},\\": 7570,
+ "▁printf": 7571,
+ "▁continued": 7572,
+ "▁nodes": 7573,
+ "лки": 7574,
+ "▁nice": 7575,
+ "modules": 7576,
+ "eign": 7577,
+ "▁Mex": 7578,
+ "▁According": 7579,
+ "▁undefined": 7580,
+ "▁binary": 7581,
+ "cut": 7582,
+ "Current": 7583,
+ "edy": 7584,
+ "}}{": 7585,
+ "bles": 7586,
+ "▁вой": 7587,
+ "scri": 7588,
+ "eqn": 7589,
+ "Changed": 7590,
+ "▁köz": 7591,
+ "▁remote": 7592,
+ "вля": 7593,
+ "▁quel": 7594,
+ "▁align": 7595,
+ "▁пар": 7596,
+ "SV": 7597,
+ "yer": 7598,
+ "▁Californ": 7599,
+ "▁places": 7600,
+ "▁primary": 7601,
+ "▁conv": 7602,
+ "▁Juli": 7603,
+ "▁visual": 7604,
+ "▁Select": 7605,
+ "atory": 7606,
+ "=(": 7607,
+ "iser": 7608,
+ "▁intent": 7609,
+ "sur": 7610,
+ "container": 7611,
+ "iced": 7612,
+ "▁board": 7613,
+ "astr": 7614,
+ "omial": 7615,
+ "вет": 7616,
+ "зва": 7617,
+ "▁cru": 7618,
+ "▁Oktober": 7619,
+ "save": 7620,
+ "▁greater": 7621,
+ "▁inn": 7622,
+ "▁picture": 7623,
+ "▁То": 7624,
+ "▁obtained": 7625,
+ "Wikimedia": 7626,
+ "úblic": 7627,
+ "▁lors": 7628,
+ "▁mont": 7629,
+ "obre": 7630,
+ "▁civil": 7631,
+ "▁construction": 7632,
+ "▁Welt": 7633,
+ "▁Under": 7634,
+ "undert": 7635,
+ "▁edge": 7636,
+ "▁Liste": 7637,
+ "csv": 7638,
+ "▁experiment": 7639,
+ "localhost": 7640,
+ "▁Edit": 7641,
+ "greg": 7642,
+ "ová": 7643,
+ "ља": 7644,
+ "msg": 7645,
+ "▁Green": 7646,
+ "Dialog": 7647,
+ "Ident": 7648,
+ "▁JS": 7649,
+ "^{(": 7650,
+ "▁släktet": 7651,
+ "____": 7652,
+ "Project": 7653,
+ "▁beskre": 7654,
+ "▁ber": 7655,
+ "▁wouldn": 7656,
+ "▁react": 7657,
+ "Hel": 7658,
+ "zw": 7659,
+ "▁Washington": 7660,
+ "orie": 7661,
+ "task": 7662,
+ "▁category": 7663,
+ "▁artist": 7664,
+ "anno": 7665,
+ "▁ook": 7666,
+ "ammen": 7667,
+ "▁Minister": 7668,
+ "▁declar": 7669,
+ "▁Key": 7670,
+ ",.": 7671,
+ "▁mach": 7672,
+ "▁ww": 7673,
+ "isen": 7674,
+ "Fran": 7675,
+ "▁Росси": 7676,
+ "бор": 7677,
+ "три": 7678,
+ "▁rock": 7679,
+ "quis": 7680,
+ "mos": 7681,
+ "пера": 7682,
+ "▁esterni": 7683,
+ "▁gold": 7684,
+ "Windows": 7685,
+ "%%": 7686,
+ "▁partial": 7687,
+ "▁weight": 7688,
+ "▁spr": 7689,
+ "}).": 7690,
+ "▁français": 7691,
+ "fun": 7692,
+ "▁thous": 7693,
+ "holder": 7694,
+ "▁gone": 7695,
+ "▁Č": 7696,
+ "▁rend": 7697,
+ "DA": 7698,
+ "▁answered": 7699,
+ "▁False": 7700,
+ "Buffer": 7701,
+ "▁daugh": 7702,
+ ".--": 7703,
+ "▁Show": 7704,
+ "▁rect": 7705,
+ "▁Kre": 7706,
+ "dr": 7707,
+ "osoph": 7708,
+ "▁yield": 7709,
+ "urity": 7710,
+ "toString": 7711,
+ "aval": 7712,
+ "Pol": 7713,
+ "▁lock": 7714,
+ "imation": 7715,
+ "antic": 7716,
+ "Local": 7717,
+ "▁beskrevs": 7718,
+ "ités": 7719,
+ "grid": 7720,
+ "ут": 7721,
+ "▁_{": 7722,
+ "сі": 7723,
+ "FILE": 7724,
+ "▁км": 7725,
+ "▁speak": 7726,
+ "summary": 7727,
+ "prop": 7728,
+ "javascript": 7729,
+ "zk": 7730,
+ "izontal": 7731,
+ "▁trois": 7732,
+ "▁Rod": 7733,
+ "prise": 7734,
+ "рово": 7735,
+ "▁odd": 7736,
+ "▁gest": 7737,
+ "▁produce": 7738,
+ "▁waar": 7739,
+ "▁Av": 7740,
+ "ribu": 7741,
+ "вання": 7742,
+ "▁finished": 7743,
+ "▁adapt": 7744,
+ "▁Sar": 7745,
+ "textit": 7746,
+ "▁Ce": 7747,
+ "▁Fa": 7748,
+ "osen": 7749,
+ "▁deriv": 7750,
+ "▁ship": 7751,
+ "▁opin": 7752,
+ "▁Even": 7753,
+ "gesch": 7754,
+ "▁suppose": 7755,
+ "▁Fer": 7756,
+ "ское": 7757,
+ "▁worden": 7758,
+ "sey": 7759,
+ "hline": 7760,
+ "▁Union": 7761,
+ "▁/**": 7762,
+ "▁vez": 7763,
+ "▁Collegamenti": 7764,
+ "▁Society": 7765,
+ "▁econom": 7766,
+ "ší": 7767,
+ "oi": 7768,
+ "▁orient": 7769,
+ "▁Teil": 7770,
+ "rent": 7771,
+ "лекс": 7772,
+ "▁solid": 7773,
+ "▁cart": 7774,
+ "****************": 7775,
+ "▁cab": 7776,
+ "▁Message": 7777,
+ "dots": 7778,
+ "▁ég": 7779,
+ "▁twe": 7780,
+ "aga": 7781,
+ "▁naz": 7782,
+ "▁Microsoft": 7783,
+ "▁underarter": 7784,
+ "ppen": 7785,
+ "▁recent": 7786,
+ "▁net": 7787,
+ "▁resources": 7788,
+ "Ste": 7789,
+ ".\\": 7790,
+ "▁SO": 7791,
+ "лом": 7792,
+ "▁cele": 7793,
+ "▁lic": 7794,
+ "▁benef": 7795,
+ "ldots": 7796,
+ "▁serial": 7797,
+ "Integer": 7798,
+ "cles": 7799,
+ "▁miles": 7800,
+ "▁Ale": 7801,
+ "▁entered": 7802,
+ "▁Two": 7803,
+ "wie": 7804,
+ "▁includes": 7805,
+ "▁Each": 7806,
+ "elling": 7807,
+ "quer": 7808,
+ "▁Dom": 7809,
+ "pf": 7810,
+ "WS": 7811,
+ "▁straight": 7812,
+ "▁Stan": 7813,
+ "▁nos": 7814,
+ "ícul": 7815,
+ "atro": 7816,
+ "▁Center": 7817,
+ "FT": 7818,
+ "▁Inga": 7819,
+ "ilo": 7820,
+ "▁www": 7821,
+ "jsfiddle": 7822,
+ "nic": 7823,
+ "▁European": 7824,
+ "▁commer": 7825,
+ "▁girl": 7826,
+ "total": 7827,
+ "▁Star": 7828,
+ "▁suggested": 7829,
+ "pal": 7830,
+ "▁zwischen": 7831,
+ "писа": 7832,
+ "IM": 7833,
+ "▁handler": 7834,
+ "▁Program": 7835,
+ "xsl": 7836,
+ "ály": 7837,
+ "BU": 7838,
+ ",--": 7839,
+ "▁vid": 7840,
+ "▁established": 7841,
+ "▁Spiel": 7842,
+ "ometry": 7843,
+ "unes": 7844,
+ "▁sit": 7845,
+ "▁inher": 7846,
+ "▁puis": 7847,
+ "▁être": 7848,
+ "▁Most": 7849,
+ "Header": 7850,
+ "insert": 7851,
+ "▁sist": 7852,
+ "▁favor": 7853,
+ "dest": 7854,
+ "▁entity": 7855,
+ "Cal": 7856,
+ "▁Therefore": 7857,
+ "DD": 7858,
+ ";;": 7859,
+ "▁Dezember": 7860,
+ "▁Rh": 7861,
+ "iments": 7862,
+ "▁returning": 7863,
+ "sto": 7864,
+ "▁Value": 7865,
+ "▁liber": 7866,
+ "▁Result": 7867,
+ "▁bind": 7868,
+ "voir": 7869,
+ "▁Tim": 7870,
+ "▁Movie": 7871,
+ "weg": 7872,
+ "ket": 7873,
+ "▁исто": 7874,
+ "▁friends": 7875,
+ "▁fn": 7876,
+ "▁él": 7877,
+ "▁&=": 7878,
+ "arden": 7879,
+ "fficial": 7880,
+ "▁community": 7881,
+ "▁api": 7882,
+ "Args": 7883,
+ "ieren": 7884,
+ "▁dann": 7885,
+ "omorph": 7886,
+ "adr": 7887,
+ "loop": 7888,
+ "uman": 7889,
+ "▁vous": 7890,
+ "bst": 7891,
+ "submit": 7892,
+ "\\|": 7893,
+ "тин": 7894,
+ "Container": 7895,
+ "asket": 7896,
+ "?)": 7897,
+ "Sec": 7898,
+ "▁drive": 7899,
+ "Ass": 7900,
+ "▁swe": 7901,
+ "▁amer": 7902,
+ "▁mine": 7903,
+ "▁Ham": 7904,
+ "▁avait": 7905,
+ "▁Hon": 7906,
+ "▁après": 7907,
+ "▁Mann": 7908,
+ "ська": 7909,
+ "▁increase": 7910,
+ "▁ty": 7911,
+ "sky": 7912,
+ "▁accur": 7913,
+ "article": 7914,
+ "weight": 7915,
+ "▁sex": 7916,
+ "▁listade": 7917,
+ "/**": 7918,
+ "▁está": 7919,
+ "}}$": 7920,
+ "argo": 7921,
+ "define": 7922,
+ "▁состав": 7923,
+ "session": 7924,
+ "ads": 7925,
+ "стви": 7926,
+ "▁Law": 7927,
+ "▁dialog": 7928,
+ "▁duplicate": 7929,
+ "▁ép": 7930,
+ "▁voc": 7931,
+ "fri": 7932,
+ "▁green": 7933,
+ "▁hidden": 7934,
+ "▁Island": 7935,
+ "▁diag": 7936,
+ "owej": 7937,
+ "mysql": 7938,
+ "teil": 7939,
+ "rä": 7940,
+ "ikan": 7941,
+ "▁José": 7942,
+ "aled": 7943,
+ "Runtime": 7944,
+ "▁train": 7945,
+ "▁Division": 7946,
+ "ниц": 7947,
+ "▁Span": 7948,
+ "нима": 7949,
+ ")=\\": 7950,
+ "тан": 7951,
+ "▁stay": 7952,
+ "▁foo": 7953,
+ "▁accom": 7954,
+ "▁hers": 7955,
+ "▁нау": 7956,
+ "▁Mün": 7957,
+ "ideos": 7958,
+ "static": 7959,
+ "▁ready": 7960,
+ "]`": 7961,
+ "▁visible": 7962,
+ "▁Hope": 7963,
+ "ulated": 7964,
+ "▁Cult": 7965,
+ "стро": 7966,
+ "Co": 7967,
+ "▁smaller": 7968,
+ "atura": 7969,
+ "▁perfectly": 7970,
+ "req": 7971,
+ "▁proposed": 7972,
+ "▁degli": 7973,
+ "Search": 7974,
+ "▁ich": 7975,
+ "Max": 7976,
+ "▁volume": 7977,
+ "execute": 7978,
+ "gre": 7979,
+ "▁sport": 7980,
+ "udad": 7981,
+ "PT": 7982,
+ "▁Records": 7983,
+ "▁cook": 7984,
+ "▁expand": 7985,
+ "бі": 7986,
+ "▁altri": 7987,
+ "ppet": 7988,
+ "arse": 7989,
+ "▁wet": 7990,
+ "▁Bob": 7991,
+ "▁FC": 7992,
+ "▁Association": 7993,
+ "uje": 7994,
+ "▁fel": 7995,
+ "▁слу": 7996,
+ "▁Big": 7997,
+ "/\\": 7998,
+ "Ge": 7999,
+ "while": 8000,
+ "{(": 8001,
+ "▁sufficient": 8002,
+ "Position": 8003,
+ "▁understanding": 8004,
+ "▁nue": 8005,
+ "▁raz": 8006,
+ "▁ye": 8007,
+ "hem": 8008,
+ "Num": 8009,
+ "▁Project": 8010,
+ "▁Its": 8011,
+ "▁hasta": 8012,
+ "enso": 8013,
+ "▁wire": 8014,
+ "Ret": 8015,
+ "uj": 8016,
+ "proof": 8017,
+ "▁relevant": 8018,
+ "▁partir": 8019,
+ "▁ago": 8020,
+ "ificate": 8021,
+ "▁domin": 8022,
+ "▁boy": 8023,
+ "▁plant": 8024,
+ "▁encoding": 8025,
+ "▁throws": 8026,
+ "▁Rock": 8027,
+ "zone": 8028,
+ "gang": 8029,
+ "widget": 8030,
+ "▁interesting": 8031,
+ "DER": 8032,
+ "▁demon": 8033,
+ "▁office": 8034,
+ "amt": 8035,
+ "äter": 8036,
+ "▁White": 8037,
+ "▁versch": 8038,
+ "▁dieser": 8039,
+ "▁Mount": 8040,
+ "▁students": 8041,
+ "▁Pub": 8042,
+ "▁Де": 8043,
+ "ija": 8044,
+ "▁Cy": 8045,
+ "▁California": 8046,
+ "▁abril": 8047,
+ "äll": 8048,
+ "▁чем": 8049,
+ "TV": 8050,
+ "▁més": 8051,
+ "▁declared": 8052,
+ "▁ю": 8053,
+ "ől": 8054,
+ "appa": 8055,
+ "▁Бе": 8056,
+ "echo": 8057,
+ "numer": 8058,
+ "▁posted": 8059,
+ "▁вер": 8060,
+ "▁године": 8061,
+ "▁weak": 8062,
+ "▁Republic": 8063,
+ "▁champion": 8064,
+ "ensuremath": 8065,
+ "your": 8066,
+ "▁Ober": 8067,
+ "▁Central": 8068,
+ "isa": 8069,
+ "анд": 8070,
+ "yy": 8071,
+ "▁fully": 8072,
+ "▁SD": 8073,
+ "▁Linux": 8074,
+ "▁Scott": 8075,
+ "partment": 8076,
+ "kon": 8077,
+ "▁contract": 8078,
+ "▁OF": 8079,
+ "▁ale": 8080,
+ "▁Ann": 8081,
+ "▁над": 8082,
+ "lah": 8083,
+ "▁Next": 8084,
+ "oren": 8085,
+ "▁disk": 8086,
+ "▁eg": 8087,
+ "atu": 8088,
+ "логи": 8089,
+ "▁games": 8090,
+ "Left": 8091,
+ "▁lu": 8092,
+ "▁finite": 8093,
+ "▁ки": 8094,
+ "▁crash": 8095,
+ "pher": 8096,
+ "exe": 8097,
+ "ATION": 8098,
+ "▁brother": 8099,
+ "Eng": 8100,
+ "tat": 8101,
+ "▁Integer": 8102,
+ "ному": 8103,
+ "▁colon": 8104,
+ "iqu": 8105,
+ ")).": 8106,
+ "ivi": 8107,
+ "▁Method": 8108,
+ "arten": 8109,
+ "Uni": 8110,
+ "vector": 8111,
+ "▁wood": 8112,
+ "рт": 8113,
+ "▁Ле": 8114,
+ "▁siècle": 8115,
+ "▁gent": 8116,
+ "}\r": 8117,
+ "▁contents": 8118,
+ "▁compan": 8119,
+ "Go": 8120,
+ "▁jou": 8121,
+ "uent": 8122,
+ "Async": 8123,
+ "printf": 8124,
+ "▁Model": 8125,
+ "▁kept": 8126,
+ "ASE": 8127,
+ "▁provides": 8128,
+ "▁Abgerufen": 8129,
+ "▁Gall": 8130,
+ "▁Alf": 8131,
+ "SA": 8132,
+ "▁Mem": 8133,
+ "▁kter": 8134,
+ "▁Bru": 8135,
+ "Android": 8136,
+ "(:": 8137,
+ "▁Украї": 8138,
+ "Ne": 8139,
+ "Min": 8140,
+ "atr": 8141,
+ "▁Hal": 8142,
+ "delete": 8143,
+ "odo": 8144,
+ "▁não": 8145,
+ "ène": 8146,
+ "▁calculate": 8147,
+ "Json": 8148,
+ "keys": 8149,
+ "ней": 8150,
+ "▁hence": 8151,
+ "▁ow": 8152,
+ "▁Lib": 8153,
+ "eno": 8154,
+ "▁Love": 8155,
+ "osi": 8156,
+ "wide": 8157,
+ "▁score": 8158,
+ "full": 8159,
+ "вод": 8160,
+ "▁determine": 8161,
+ "▁spaces": 8162,
+ "лова": 8163,
+ "▁peut": 8164,
+ "éral": 8165,
+ "ół": 8166,
+ "▁appoint": 8167,
+ "▁Tw": 8168,
+ "": 8169,
+ "▁Order": 8170,
+ "▁hop": 8171,
+ "random": 8172,
+ "cache": 8173,
+ "▁destroy": 8174,
+ "▁race": 8175,
+ "Tag": 8176,
+ "▁rid": 8177,
+ "▁negative": 8178,
+ "Car": 8179,
+ "ensional": 8180,
+ "dk": 8181,
+ "▁cro": 8182,
+ "▁THEN": 8183,
+ "▁$.": 8184,
+ "ensk": 8185,
+ "NE": 8186,
+ "HO": 8187,
+ "▁kle": 8188,
+ "ospital": 8189,
+ "kte": 8190,
+ "férences": 8191,
+ "udes": 8192,
+ "IR": 8193,
+ "otion": 8194,
+ "▁Real": 8195,
+ "▁Februar": 8196,
+ "ин": 8197,
+ "▁Old": 8198,
+ "кого": 8199,
+ "leich": 8200,
+ "▁р": 8201,
+ "ían": 8202,
+ "▁га": 8203,
+ "cide": 8204,
+ "lab": 8205,
+ "▁pull": 8206,
+ "▁'/": 8207,
+ "Long": 8208,
+ ",$": 8209,
+ "▁appropriate": 8210,
+ "▁была": 8211,
+ "führ": 8212,
+ "▁Media": 8213,
+ "▁manner": 8214,
+ "▁Ге": 8215,
+ "description": 8216,
+ "Bean": 8217,
+ "▁Lar": 8218,
+ "'];": 8219,
+ "▁relation": 8220,
+ "▁Sorry": 8221,
+ "har": 8222,
+ "cpp": 8223,
+ "▁Ko": 8224,
+ "▁execution": 8225,
+ "inos": 8226,
+ "▁bul": 8227,
+ "grade": 8228,
+ "▁Mu": 8229,
+ "▁pil": 8230,
+ "writ": 8231,
+ "ifications": 8232,
+ "inese": 8233,
+ "▁Phili": 8234,
+ "dx": 8235,
+ "▁leading": 8236,
+ "▁Journal": 8237,
+ "oved": 8238,
+ "▁contro": 8239,
+ "нова": 8240,
+ "Yes": 8241,
+ "▁channel": 8242,
+ ")),": 8243,
+ "isten": 8244,
+ "aka": 8245,
+ "ToString": 8246,
+ "mas": 8247,
+ "▁ett": 8248,
+ "▁forces": 8249,
+ "ulations": 8250,
+ "▁Call": 8251,
+ "▁explanation": 8252,
+ "oring": 8253,
+ "ATA": 8254,
+ "chter": 8255,
+ "when": 8256,
+ "VC": 8257,
+ "▁Jahrh": 8258,
+ "Case": 8259,
+ "▁commands": 8260,
+ "▁rich": 8261,
+ "bus": 8262,
+ "Fe": 8263,
+ "mbox": 8264,
+ "▁recon": 8265,
+ "ño": 8266,
+ "▁shape": 8267,
+ "owy": 8268,
+ "entry": 8269,
+ "itable": 8270,
+ "▁election": 8271,
+ "ється": 8272,
+ "▁prep": 8273,
+ "vá": 8274,
+ "▁infin": 8275,
+ "lot": 8276,
+ "▁books": 8277,
+ "▁USA": 8278,
+ "лин": 8279,
+ "▁pom": 8280,
+ "▁nas": 8281,
+ "▁tags": 8282,
+ "▁executed": 8283,
+ "aille": 8284,
+ "lung": 8285,
+ "▁JavaScript": 8286,
+ "▁ball": 8287,
+ "▁ainsi": 8288,
+ "▁Pri": 8289,
+ "{$": 8290,
+ "▁UN": 8291,
+ "▁Ram": 8292,
+ "▁hear": 8293,
+ "▁Ubuntu": 8294,
+ ">();": 8295,
+ "▁pure": 8296,
+ "▁embed": 8297,
+ "ação": 8298,
+ "controller": 8299,
+ "▁married": 8300,
+ "▁Fol": 8301,
+ "famil": 8302,
+ "▁prec": 8303,
+ "▁recurs": 8304,
+ "pad": 8305,
+ "istration": 8306,
+ "▁respectively": 8307,
+ "[$": 8308,
+ "autor": 8309,
+ "▁grav": 8310,
+ "iera": 8311,
+ "azioni": 8312,
+ "▁Bul": 8313,
+ "▁Australia": 8314,
+ "mond": 8315,
+ "▁Tro": 8316,
+ "▁Ele": 8317,
+ "packages": 8318,
+ "msdn": 8319,
+ "▁Als": 8320,
+ "▁przy": 8321,
+ "ART": 8322,
+ "▁charge": 8323,
+ "▁applications": 8324,
+ "Unit": 8325,
+ "aren": 8326,
+ "▁sudden": 8327,
+ "ometer": 8328,
+ "▁dot": 8329,
+ "acji": 8330,
+ "ктор": 8331,
+ "imin": 8332,
+ "ening": 8333,
+ "▁donde": 8334,
+ "▁Ho": 8335,
+ "tree": 8336,
+ "mb": 8337,
+ "▁drag": 8338,
+ "aje": 8339,
+ "▁invalid": 8340,
+ "▁finish": 8341,
+ "laim": 8342,
+ "▁feed": 8343,
+ "▁Nap": 8344,
+ "room": 8345,
+ "images": 8346,
+ "▁сай": 8347,
+ "▁succ": 8348,
+ "iffer": 8349,
+ "▁año": 8350,
+ "▁cual": 8351,
+ "мери": 8352,
+ "DR": 8353,
+ "▁Bilder": 8354,
+ "бра": 8355,
+ "rait": 8356,
+ "pan": 8357,
+ "ень": 8358,
+ "▁distinct": 8359,
+ "▁Kn": 8360,
+ "önig": 8361,
+ "anced": 8362,
+ "▁loading": 8363,
+ "▁Techn": 8364,
+ "▁Sel": 8365,
+ "mus": 8366,
+ "▁rail": 8367,
+ "▁student": 8368,
+ "▁notice": 8369,
+ "▁sla": 8370,
+ "▁Да": 8371,
+ "▁guard": 8372,
+ "▁Day": 8373,
+ "вали": 8374,
+ "Option": 8375,
+ "aison": 8376,
+ "ipp": 8377,
+ "▁Jun": 8378,
+ "▁fell": 8379,
+ "▁absolute": 8380,
+ "ове": 8381,
+ "debug": 8382,
+ "▁Sud": 8383,
+ "пы": 8384,
+ "ugins": 8385,
+ "▁views": 8386,
+ "lay": 8387,
+ "▁surr": 8388,
+ "▁stood": 8389,
+ "▁ві": 8390,
+ "selected": 8391,
+ "гі": 8392,
+ "▁attributes": 8393,
+ "final": 8394,
+ "enda": 8395,
+ "▁Bon": 8396,
+ "ners": 8397,
+ "▁Wer": 8398,
+ "bur": 8399,
+ "ittel": 8400,
+ "▁moving": 8401,
+ "▁Plan": 8402,
+ "isches": 8403,
+ "Java": 8404,
+ "▁basis": 8405,
+ "▁Bus": 8406,
+ "▁Au": 8407,
+ "▁Ill": 8408,
+ "▁время": 8409,
+ "▁цент": 8410,
+ "handle": 8411,
+ "ступ": 8412,
+ "▁Far": 8413,
+ "▁oraz": 8414,
+ "ocr": 8415,
+ "▁seit": 8416,
+ "onder": 8417,
+ "дом": 8418,
+ ":/": 8419,
+ "chor": 8420,
+ "▁Town": 8421,
+ "▁definit": 8422,
+ "react": 8423,
+ "▁piece": 8424,
+ "▁Karl": 8425,
+ "CI": 8426,
+ "▁Application": 8427,
+ "unter": 8428,
+ "▁formed": 8429,
+ "▁пу": 8430,
+ "Bo": 8431,
+ "▁Daniel": 8432,
+ "▁пла": 8433,
+ "Body": 8434,
+ "})$": 8435,
+ "▁были": 8436,
+ "▁earth": 8437,
+ "гла": 8438,
+ "There": 8439,
+ "▁стра": 8440,
+ "▁ville": 8441,
+ "▁centre": 8442,
+ ")\r": 8443,
+ "▁helpful": 8444,
+ "▁++": 8445,
+ "▁CG": 8446,
+ "izione": 8447,
+ "▁Game": 8448,
+ "▁Which": 8449,
+ "▁pip": 8450,
+ "▁Portug": 8451,
+ "DS": 8452,
+ "▁describe": 8453,
+ "▁checking": 8454,
+ "▁manager": 8455,
+ "BO": 8456,
+ "▁Bundes": 8457,
+ "buch": 8458,
+ "▁decided": 8459,
+ "▁Jahrhundert": 8460,
+ "▁fif": 8461,
+ "efficient": 8462,
+ "anci": 8463,
+ "braries": 8464,
+ "▁fails": 8465,
+ "▁kernel": 8466,
+ "▁Gl": 8467,
+ "▁Nacional": 8468,
+ "▁proceed": 8469,
+ "▁fuer": 8470,
+ "▁living": 8471,
+ "▁successfully": 8472,
+ "▁faster": 8473,
+ "▁contre": 8474,
+ "▁prison": 8475,
+ "ORT": 8476,
+ "help": 8477,
+ "▁autor": 8478,
+ "ław": 8479,
+ "ają": 8480,
+ "▁Arm": 8481,
+ "▁provin": 8482,
+ "▁naam": 8483,
+ "/#": 8484,
+ "sed": 8485,
+ "▁gesch": 8486,
+ "▁мар": 8487,
+ "esk": 8488,
+ "term": 8489,
+ "▁Tex": 8490,
+ "iring": 8491,
+ "▁tools": 8492,
+ "PDF": 8493,
+ "▁ult": 8494,
+ "issenschaft": 8495,
+ "▁couldn": 8496,
+ "ding": 8497,
+ "Dep": 8498,
+ "{-": 8499,
+ "▁predict": 8500,
+ "antage": 8501,
+ "▁Like": 8502,
+ "▁Би": 8503,
+ "tools": 8504,
+ "estra": 8505,
+ "▁ki": 8506,
+ "▁Jim": 8507,
+ "star": 8508,
+ "▁remark": 8509,
+ "óg": 8510,
+ "nabla": 8511,
+ "▁Although": 8512,
+ "mode": 8513,
+ "Host": 8514,
+ "▁strange": 8515,
+ "None": 8516,
+ "black": 8517,
+ "▁Festival": 8518,
+ "▁IS": 8519,
+ "anza": 8520,
+ "▁(-": 8521,
+ "icket": 8522,
+ "кола": 8523,
+ "▁Jes": 8524,
+ "▁flex": 8525,
+ "▁À": 8526,
+ "▁Network": 8527,
+ "▁EX": 8528,
+ "▁enero": 8529,
+ "!”": 8530,
+ "▁Ort": 8531,
+ "▁alors": 8532,
+ "▁Original": 8533,
+ "▁zo": 8534,
+ "ными": 8535,
+ "▁spl": 8536,
+ "Draw": 8537,
+ "yond": 8538,
+ "──": 8539,
+ "▁Ot": 8540,
+ "▁dram": 8541,
+ "▁division": 8542,
+ "▁efficient": 8543,
+ "▁Га": 8544,
+ "▁vier": 8545,
+ "nak": 8546,
+ "LS": 8547,
+ "▁spirit": 8548,
+ "zeichnet": 8549,
+ "▁dici": 8550,
+ "clear": 8551,
+ "copy": 8552,
+ "yar": 8553,
+ "▁році": 8554,
+ "usqu": 8555,
+ "▁nous": 8556,
+ "▁blev": 8557,
+ "жде": 8558,
+ "Arg": 8559,
+ "▁performed": 8560,
+ "▁Make": 8561,
+ "▁Carol": 8562,
+ "etto": 8563,
+ "▁Sand": 8564,
+ "▁Disc": 8565,
+ "Enc": 8566,
+ "rero": 8567,
+ "hash": 8568,
+ "▁focus": 8569,
+ "▁attention": 8570,
+ "▁agre": 8571,
+ "▁divis": 8572,
+ "▁было": 8573,
+ "▁ej": 8574,
+ "▁march": 8575,
+ "▁phase": 8576,
+ "ías": 8577,
+ "▁phil": 8578,
+ "▁Pap": 8579,
+ "▁river": 8580,
+ "▁caused": 8581,
+ "plugin": 8582,
+ "▁Team": 8583,
+ "uler": 8584,
+ "▁$(\"#": 8585,
+ "iej": 8586,
+ "ISBN": 8587,
+ "nam": 8588,
+ "▁fight": 8589,
+ "vid": 8590,
+ "▁Lud": 8591,
+ "Selected": 8592,
+ ":@\"": 8593,
+ "▁Pod": 8594,
+ "▁années": 8595,
+ "arios": 8596,
+ "▁deutscher": 8597,
+ "▁NA": 8598,
+ "▁ию": 8599,
+ "▁dictionary": 8600,
+ "▁Ла": 8601,
+ "▁Tri": 8602,
+ "èn": 8603,
+ "▁political": 8604,
+ "ridge": 8605,
+ "atten": 8606,
+ "▁circle": 8607,
+ "▁transport": 8608,
+ "emas": 8609,
+ "FC": 8610,
+ "▁replaced": 8611,
+ "▁Aud": 8612,
+ "iska": 8613,
+ "Configuration": 8614,
+ "▁soort": 8615,
+ "▁Не": 8616,
+ "▁sequ": 8617,
+ "PRO": 8618,
+ "▁bud": 8619,
+ "▁{{": 8620,
+ "ließ": 8621,
+ "▁Mas": 8622,
+ "ders": 8623,
+ "usammen": 8624,
+ "esa": 8625,
+ "▁Ly": 8626,
+ "вро": 8627,
+ "mac": 8628,
+ "▁испо": 8629,
+ "▁suc": 8630,
+ "uy": 8631,
+ "▁illustr": 8632,
+ "▁primera": 8633,
+ "ilation": 8634,
+ "▁storage": 8635,
+ "▁params": 8636,
+ "kaz": 8637,
+ "▁terminal": 8638,
+ "раль": 8639,
+ "▁holds": 8640,
+ "лось": 8641,
+ "▁nad": 8642,
+ "”.": 8643,
+ "▁octubre": 8644,
+ "bul": 8645,
+ "▁hus": 8646,
+ "ULT": 8647,
+ "▁également": 8648,
+ "▁Mill": 8649,
+ "ład": 8650,
+ "▁contiene": 8651,
+ "\"?": 8652,
+ "▁>>>": 8653,
+ "Que": 8654,
+ " ": 8655,
+ "▁plain": 8656,
+ "ativa": 8657,
+ "ocker": 8658,
+ "Names": 8659,
+ "▁Jud": 8660,
+ "▁agree": 8661,
+ "▁Gemeinde": 8662,
+ "lare": 8663,
+ "каза": 8664,
+ "▁starts": 8665,
+ "▁price": 8666,
+ "Target": 8667,
+ "cus": 8668,
+ "▁Instead": 8669,
+ ".;": 8670,
+ "▁alternative": 8671,
+ "▁вла": 8672,
+ "IE": 8673,
+ "▁organiz": 8674,
+ "inu": 8675,
+ "▁completed": 8676,
+ "▁carry": 8677,
+ "atom": 8678,
+ "▁depending": 8679,
+ "▁Our": 8680,
+ "▁insp": 8681,
+ "▁&\\": 8682,
+ "aily": 8683,
+ "irection": 8684,
+ "фа": 8685,
+ "▁defe": 8686,
+ "TAC": 8687,
+ "▁designed": 8688,
+ "▁voir": 8689,
+ "break": 8690,
+ "▁partie": 8691,
+ "▁Jahren": 8692,
+ "▁studio": 8693,
+ "▁jour": 8694,
+ "▁Notes": 8695,
+ "fire": 8696,
+ "house": 8697,
+ "success": 8698,
+ "▁Juan": 8699,
+ "JS": 8700,
+ "▁Custom": 8701,
+ "▁besch": 8702,
+ "▁stated": 8703,
+ "bootstrap": 8704,
+ "ött": 8705,
+ "ozzá": 8706,
+ "▁CON": 8707,
+ "hav": 8708,
+ "▁sleep": 8709,
+ "eda": 8710,
+ "hot": 8711,
+ "ánd": 8712,
+ "▁Sy": 8713,
+ "▁temps": 8714,
+ "amar": 8715,
+ "▁scal": 8716,
+ "▁ast": 8717,
+ "▁opening": 8718,
+ "clipse": 8719,
+ "▁programming": 8720,
+ "▁letters": 8721,
+ "▁profile": 8722,
+ "nah": 8723,
+ "▁beyond": 8724,
+ "▁Further": 8725,
+ "faces": 8726,
+ "▁chart": 8727,
+ "зда": 8728,
+ "aign": 8729,
+ "ній": 8730,
+ "▁Rol": 8731,
+ "овано": 8732,
+ "terior": 8733,
+ "wed": 8734,
+ "▁herself": 8735,
+ "▁ng": 8736,
+ "anguages": 8737,
+ "}=\\": 8738,
+ "ynamic": 8739,
+ "▁jug": 8740,
+ "▁Example": 8741,
+ "▁(†": 8742,
+ "▁playing": 8743,
+ "▁usage": 8744,
+ "▁managed": 8745,
+ "▁Natur": 8746,
+ "тери": 8747,
+ "▁Et": 8748,
+ "eria": 8749,
+ "▁daughter": 8750,
+ "нием": 8751,
+ "Fragment": 8752,
+ "▁hol": 8753,
+ "Fl": 8754,
+ "ографи": 8755,
+ "▁ihn": 8756,
+ "üh": 8757,
+ "instance": 8758,
+ "▁comun": 8759,
+ "▁truth": 8760,
+ "▁само": 8761,
+ "▁implemented": 8762,
+ "▁anyway": 8763,
+ "▁Cro": 8764,
+ "фе": 8765,
+ "GC": 8766,
+ "ubuntu": 8767,
+ "types": 8768,
+ "ês": 8769,
+ ".~\\": 8770,
+ "fold": 8771,
+ "▁joined": 8772,
+ "??": 8773,
+ "▁mé": 8774,
+ "▁wild": 8775,
+ "клю": 8776,
+ "rowser": 8777,
+ "▁Home": 8778,
+ "skiej": 8779,
+ "▁JOIN": 8780,
+ "▁juin": 8781,
+ "hof": 8782,
+ "▁dataset": 8783,
+ "жду": 8784,
+ "'))": 8785,
+ "▁miejs": 8786,
+ "API": 8787,
+ "▁edited": 8788,
+ "ools": 8789,
+ "▁seeing": 8790,
+ "ijd": 8791,
+ "▁procedure": 8792,
+ "▁Bras": 8793,
+ "▁signed": 8794,
+ "▁externos": 8795,
+ "▁disapp": 8796,
+ "▁Direct": 8797,
+ "cyc": 8798,
+ "▁consult": 8799,
+ "örd": 8800,
+ "Widget": 8801,
+ "cious": 8802,
+ "sect": 8803,
+ "▁Ди": 8804,
+ "▁wind": 8805,
+ "▁Archivado": 8806,
+ "aml": 8807,
+ "сс": 8808,
+ "Wh": 8809,
+ "kbd": 8810,
+ "▁Army": 8811,
+ "▁suffer": 8812,
+ "artifact": 8813,
+ "▁resolve": 8814,
+ "▁Sport": 8815,
+ "▁це": 8816,
+ "idas": 8817,
+ "▁tax": 8818,
+ "idi": 8819,
+ "▁actions": 8820,
+ "пра": 8821,
+ "pués": 8822,
+ "▁naj": 8823,
+ "False": 8824,
+ "▁chance": 8825,
+ "▁тако": 8826,
+ "äd": 8827,
+ "▁dol": 8828,
+ "▁env": 8829,
+ "▁basically": 8830,
+ "▁Council": 8831,
+ "zte": 8832,
+ "▁displayed": 8833,
+ "nil": 8834,
+ "complete": 8835,
+ "▁Lem": 8836,
+ "iance": 8837,
+ "▁основ": 8838,
+ "▁depend": 8839,
+ "plom": 8840,
+ "ensus": 8841,
+ "uts": 8842,
+ "▁Hot": 8843,
+ "bitr": 8844,
+ "▁validation": 8845,
+ "abb": 8846,
+ "▁тре": 8847,
+ "km": 8848,
+ "zd": 8849,
+ "öff": 8850,
+ "WE": 8851,
+ "▁interested": 8852,
+ "▁{\"": 8853,
+ "aro": 8854,
+ "▁correl": 8855,
+ "▁dedic": 8856,
+ "▁lists": 8857,
+ "▁Bibliografia": 8858,
+ "▁earlier": 8859,
+ "program": 8860,
+ "▁première": 8861,
+ "front": 8862,
+ "Tab": 8863,
+ "ству": 8864,
+ "drop": 8865,
+ "▁fear": 8866,
+ "▁Enlaces": 8867,
+ "▁Capt": 8868,
+ "▁realiz": 8869,
+ "▁hal": 8870,
+ "▁instances": 8871,
+ "▁susp": 8872,
+ "illing": 8873,
+ "%;": 8874,
+ "{}": 8875,
+ "||": 8876,
+ "▁partition": 8877,
+ "▁Build": 8878,
+ "▁wo": 8879,
+ "▁Пер": 8880,
+ "▁director": 8881,
+ "▁Sin": 8882,
+ "тия": 8883,
+ "rsg": 8884,
+ "ouver": 8885,
+ "▁nearly": 8886,
+ "oda": 8887,
+ "ктив": 8888,
+ "▁sir": 8889,
+ "IME": 8890,
+ "▁janvier": 8891,
+ "▁Win": 8892,
+ "Build": 8893,
+ "ieurs": 8894,
+ "INE": 8895,
+ "double": 8896,
+ "Last": 8897,
+ "▁policy": 8898,
+ "store": 8899,
+ "▁observed": 8900,
+ "▁familie": 8901,
+ "nica": 8902,
+ "rey": 8903,
+ "зь": 8904,
+ "▁Year": 8905,
+ "▁developed": 8906,
+ "▁Institute": 8907,
+ "▁reply": 8908,
+ "Comple": 8909,
+ "ician": 8910,
+ "▁Guer": 8911,
+ "▁dall": 8912,
+ "▁desp": 8913,
+ "▁Football": 8914,
+ "Empty": 8915,
+ "cken": 8916,
+ "unda": 8917,
+ "▁Ur": 8918,
+ "▁ig": 8919,
+ "▁Atl": 8920,
+ "author": 8921,
+ "▁Bol": 8922,
+ "zig": 8923,
+ "nat": 8924,
+ "št": 8925,
+ "security": 8926,
+ "onic": 8927,
+ "▁pes": 8928,
+ "itan": 8929,
+ "▁Extern": 8930,
+ "jan": 8931,
+ "VAL": 8932,
+ "▁им": 8933,
+ "bold": 8934,
+ "▁ва": 8935,
+ "▁Мо": 8936,
+ "▁disput": 8937,
+ "▁trick": 8938,
+ "▁ped": 8939,
+ ")^{": 8940,
+ "into": 8941,
+ "Sim": 8942,
+ "▁parallel": 8943,
+ "fox": 8944,
+ "normal": 8945,
+ "inent": 8946,
+ "педи": 8947,
+ "hold": 8948,
+ "OK": 8949,
+ "▁chem": 8950,
+ "▁twice": 8951,
+ "▁username": 8952,
+ "ič": 8953,
+ "▁representation": 8954,
+ "▁journal": 8955,
+ "▁:-": 8956,
+ "▁batt": 8957,
+ "\\%": 8958,
+ "▁certainly": 8959,
+ "▁Exception": 8960,
+ "eps": 8961,
+ "shot": 8962,
+ "ategy": 8963,
+ "Show": 8964,
+ "▁Carl": 8965,
+ "rig": 8966,
+ "▁reported": 8967,
+ "bottom": 8968,
+ "TF": 8969,
+ "▁Francisco": 8970,
+ "nap": 8971,
+ "▁Championship": 8972,
+ "▁court": 8973,
+ "▁sources": 8974,
+ "iour": 8975,
+ "▁conserv": 8976,
+ "dict": 8977,
+ "▁Ру": 8978,
+ "IB": 8979,
+ "▁Ve": 8980,
+ "▁№": 8981,
+ "▁ER": 8982,
+ "\"));": 8983,
+ "▁Point": 8984,
+ "azine": 8985,
+ "▁internet": 8986,
+ "дна": 8987,
+ "▁carried": 8988,
+ "▁Field": 8989,
+ "axis": 8990,
+ "▁Sun": 8991,
+ "▁ave": 8992,
+ "пис": 8993,
+ "ян": 8994,
+ "asy": 8995,
+ "▁julio": 8996,
+ "▁depuis": 8997,
+ "▁suggestion": 8998,
+ "[[": 8999,
+ "▁Archive": 9000,
+ "ęp": 9001,
+ "▁Pra": 9002,
+ "reh": 9003,
+ "▁demonstr": 9004,
+ "фі": 9005,
+ "cmd": 9006,
+ "▁wasn": 9007,
+ "▁phone": 9008,
+ "upload": 9009,
+ "aya": 9010,
+ "тора": 9011,
+ "lines": 9012,
+ "▁indu": 9013,
+ "▁vot": 9014,
+ "▁espa": 9015,
+ "▁bin": 9016,
+ "▁после": 9017,
+ "plan": 9018,
+ "▁junio": 9019,
+ "orial": 9020,
+ "free": 9021,
+ "sterreich": 9022,
+ "▁ду": 9023,
+ "▁linked": 9024,
+ "▁enable": 9025,
+ "PC": 9026,
+ "▁density": 9027,
+ "▁Egy": 9028,
+ "yo": 9029,
+ "endre": 9030,
+ "▁съ": 9031,
+ "▁italiano": 9032,
+ "▁AR": 9033,
+ "▁Pers": 9034,
+ "férés": 9035,
+ "▁скла": 9036,
+ "Var": 9037,
+ "▁Once": 9038,
+ "Red": 9039,
+ "buffer": 9040,
+ "▁Enter": 9041,
+ "▁Š": 9042,
+ "imiento": 9043,
+ "Store": 9044,
+ "▁health": 9045,
+ "vat": 9046,
+ "IST": 9047,
+ "Oh": 9048,
+ "▁kw": 9049,
+ "▁riv": 9050,
+ "▁somewhere": 9051,
+ "ografie": 9052,
+ "private": 9053,
+ "кти": 9054,
+ "▁delay": 9055,
+ "▁Http": 9056,
+ "job": 9057,
+ "rael": 9058,
+ "empor": 9059,
+ "▁diciembre": 9060,
+ "ête": 9061,
+ "цу": 9062,
+ "▁commit": 9063,
+ "oso": 9064,
+ "Values": 9065,
+ "▁headers": 9066,
+ "transform": 9067,
+ "▁processing": 9068,
+ "rå": 9069,
+ "▁Ah": 9070,
+ "▁Node": 9071,
+ "------------": 9072,
+ "▁faire": 9073,
+ "▁hun": 9074,
+ "Player": 9075,
+ "▁review": 9076,
+ "гда": 9077,
+ "▁limited": 9078,
+ "▁Property": 9079,
+ "▁serve": 9080,
+ "riage": 9081,
+ "▁Master": 9082,
+ "▁kann": 9083,
+ "crete": 9084,
+ "phere": 9085,
+ "ёр": 9086,
+ "▁chief": 9087,
+ "▁scene": 9088,
+ "kin": 9089,
+ "▁uniform": 9090,
+ "▁febrero": 9091,
+ "\"}": 9092,
+ "illo": 9093,
+ "ITE": 9094,
+ "ouvel": 9095,
+ "usepackage": 9096,
+ "enth": 9097,
+ "▁quickly": 9098,
+ "Lambda": 9099,
+ "xes": 9100,
+ "▁cells": 9101,
+ "rog": 9102,
+ "amin": 9103,
+ "▁Мар": 9104,
+ "▁mayor": 9105,
+ "player": 9106,
+ "++;": 9107,
+ "▁Насе": 9108,
+ "▁safe": 9109,
+ "▁veloc": 9110,
+ "▁обра": 9111,
+ "Database": 9112,
+ "neh": 9113,
+ "Vert": 9114,
+ "▁fle": 9115,
+ "▁фор": 9116,
+ "▁foreign": 9117,
+ "Abstract": 9118,
+ "▁magn": 9119,
+ "▁modified": 9120,
+ "▁military": 9121,
+ "▁monde": 9122,
+ "▁Action": 9123,
+ "▁bank": 9124,
+ "Serial": 9125,
+ "▁continuous": 9126,
+ "▁gel": 9127,
+ "▁physical": 9128,
+ "▁introduced": 9129,
+ "uture": 9130,
+ "rick": 9131,
+ "▁presented": 9132,
+ "▁Prov": 9133,
+ "▁Both": 9134,
+ "Pos": 9135,
+ "super": 9136,
+ "": 9137,
+ "▁finding": 9138,
+ "nel": 9139,
+ "unde": 9140,
+ "▁från": 9141,
+ "skim": 9142,
+ "▁Hill": 9143,
+ "fn": 9144,
+ "▁Canad": 9145,
+ "▁intended": 9146,
+ "ozzáférés": 9147,
+ "▁juillet": 9148,
+ "▁Wars": 9149,
+ "▁successful": 9150,
+ "▁charg": 9151,
+ "iele": 9152,
+ "omething": 9153,
+ "oku": 9154,
+ "fetch": 9155,
+ "▁}}": 9156,
+ "bank": 9157,
+ "operatorname": 9158,
+ "▁Color": 9159,
+ "▁Card": 9160,
+ "tu": 9161,
+ "▁\",": 9162,
+ "wid": 9163,
+ "▁gep": 9164,
+ "XML": 9165,
+ "================": 9166,
+ "▁Virgin": 9167,
+ "ährend": 9168,
+ "licated": 9169,
+ "Dir": 9170,
+ "zero": 9171,
+ "▁Kal": 9172,
+ "▁Party": 9173,
+ "▁å": 9174,
+ "price": 9175,
+ "don": 9176,
+ "▁warning": 9177,
+ "▁Bad": 9178,
+ "▁Supp": 9179,
+ "▁Liga": 9180,
+ "▁Pierre": 9181,
+ "Record": 9182,
+ "ulator": 9183,
+ "▁Rome": 9184,
+ "▁theorem": 9185,
+ "▁entirely": 9186,
+ "ским": 9187,
+ "het": 9188,
+ "▁dopo": 9189,
+ "Next": 9190,
+ "mlung": 9191,
+ "wig": 9192,
+ "▁Ath": 9193,
+ "▁Sou": 9194,
+ "licher": 9195,
+ "▁sudo": 9196,
+ "ests": 9197,
+ "хів": 9198,
+ "▁septiembre": 9199,
+ "▁micro": 9200,
+ "▁trop": 9201,
+ "fit": 9202,
+ "Core": 9203,
+ "▁Radio": 9204,
+ "▁Organ": 9205,
+ "▁Power": 9206,
+ "CF": 9207,
+ "▁Last": 9208,
+ "▁oppos": 9209,
+ "▁offset": 9210,
+ "▁regia": 9211,
+ "▁minimum": 9212,
+ "▁helped": 9213,
+ "andon": 9214,
+ "ifying": 9215,
+ "ruit": 9216,
+ "enschapp": 9217,
+ "▁bere": 9218,
+ "VM": 9219,
+ "▁Awards": 9220,
+ "▁agr": 9221,
+ "ynomial": 9222,
+ "enced": 9223,
+ "▁devices": 9224,
+ "▁bot": 9225,
+ "▁firm": 9226,
+ "▁writer": 9227,
+ "▁ring": 9228,
+ ".-": 9229,
+ "istes": 9230,
+ "lä": 9231,
+ "▁mel": 9232,
+ "entation": 9233,
+ "▁Schw": 9234,
+ "▁nome": 9235,
+ "▁pobla": 9236,
+ "▁woj": 9237,
+ "▁ul": 9238,
+ "ento": 9239,
+ "ых": 9240,
+ "▁resist": 9241,
+ "▁remains": 9242,
+ "▁Ca": 9243,
+ "aña": 9244,
+ "▁Court": 9245,
+ "utable": 9246,
+ "entially": 9247,
+ "▁trat": 9248,
+ "▁Visual": 9249,
+ "▁restrict": 9250,
+ "▁previously": 9251,
+ "cation": 9252,
+ "▁осо": 9253,
+ "▁MySQL": 9254,
+ "för": 9255,
+ "cala": 9256,
+ "▁culture": 9257,
+ "live": 9258,
+ "▁accepted": 9259,
+ "Did": 9260,
+ "▁hous": 9261,
+ "▁selection": 9262,
+ "▁decre": 9263,
+ "margin": 9264,
+ "urb": 9265,
+ "▁Inc": 9266,
+ "▁Many": 9267,
+ "ibt": 9268,
+ "▁succeed": 9269,
+ "Binding": 9270,
+ "cí": 9271,
+ "▁Rog": 9272,
+ "▁shouldn": 9273,
+ "cloud": 9274,
+ "▁dz": 9275,
+ "вав": 9276,
+ "▁pix": 9277,
+ "small": 9278,
+ "▁projects": 9279,
+ "▁OK": 9280,
+ "▁latest": 9281,
+ "▁references": 9282,
+ "Program": 9283,
+ "▁erst": 9284,
+ "▁як": 9285,
+ "▁kam": 9286,
+ "▁Camb": 9287,
+ "ellt": 9288,
+ "öd": 9289,
+ "none": 9290,
+ "▁jusqu": 9291,
+ "king": 9292,
+ "▁Ped": 9293,
+ "assert": 9294,
+ "CS": 9295,
+ "rito": 9296,
+ "essa": 9297,
+ "лько": 9298,
+ "▁Von": 9299,
+ "▁Edward": 9300,
+ "▁impossible": 9301,
+ "np": 9302,
+ "words": 9303,
+ "ielt": 9304,
+ "▁Page": 9305,
+ "lers": 9306,
+ "▁pier": 9307,
+ "▁области": 9308,
+ "ittee": 9309,
+ "▁([": 9310,
+ "▁trust": 9311,
+ "NG": 9312,
+ "redu": 9313,
+ "<<": 9314,
+ "rial": 9315,
+ "▁products": 9316,
+ "▁Ern": 9317,
+ "rière": 9318,
+ "гов": 9319,
+ "▁Reich": 9320,
+ "▁Road": 9321,
+ "▁nested": 9322,
+ "Display": 9323,
+ "▁strength": 9324,
+ "ografía": 9325,
+ "▁announced": 9326,
+ "▁Science": 9327,
+ "▁райо": 9328,
+ "Parameter": 9329,
+ "▁Task": 9330,
+ "uments": 9331,
+ "▁adopt": 9332,
+ "▁Only": 9333,
+ "ють": 9334,
+ "▁cli": 9335,
+ "▁lem": 9336,
+ "stood": 9337,
+ "▁FI": 9338,
+ "ências": 9339,
+ "ponents": 9340,
+ "]$": 9341,
+ "comment": 9342,
+ "▁ya": 9343,
+ "should": 9344,
+ "ike": 9345,
+ "tim": 9346,
+ "ellig": 9347,
+ "▁sending": 9348,
+ "▁ajax": 9349,
+ "▁noviembre": 9350,
+ "umes": 9351,
+ "▁weiter": 9352,
+ "▁Dans": 9353,
+ "opp": 9354,
+ "▁septembre": 9355,
+ "otimes": 9356,
+ "ző": 9357,
+ "▁ep": 9358,
+ "vere": 9359,
+ "▁oh": 9360,
+ ":=": 9361,
+ "▁Song": 9362,
+ "”,": 9363,
+ "▁viv": 9364,
+ "▁queries": 9365,
+ "▁vá": 9366,
+ "▁décembre": 9367,
+ "▁unable": 9368,
+ "▁erh": 9369,
+ "▁`-": 9370,
+ "▁Lee": 9371,
+ "▁ersten": 9372,
+ "ôt": 9373,
+ "стве": 9374,
+ "TS": 9375,
+ "▁fragment": 9376,
+ "▁wide": 9377,
+ "▁suff": 9378,
+ "▁dut": 9379,
+ "▁Vere": 9380,
+ "іс": 9381,
+ "ading": 9382,
+ "iego": 9383,
+ "icago": 9384,
+ "▁Argent": 9385,
+ "orer": 9386,
+ "ennes": 9387,
+ "▁Leb": 9388,
+ "linux": 9389,
+ "acing": 9390,
+ "▁broken": 9391,
+ "tp": 9392,
+ "ío": 9393,
+ "abeth": 9394,
+ "istas": 9395,
+ "gew": 9396,
+ "ième": 9397,
+ "cas": 9398,
+ "▁preced": 9399,
+ "▁Dal": 9400,
+ "▁compared": 9401,
+ "equiv": 9402,
+ "illy": 9403,
+ "teen": 9404,
+ "▁Console": 9405,
+ "▁strict": 9406,
+ "itaire": 9407,
+ "▁ED": 9408,
+ "entials": 9409,
+ "▁perman": 9410,
+ "▁tous": 9411,
+ "▁geme": 9412,
+ "▁extrem": 9413,
+ "▁окру": 9414,
+ "kg": 9415,
+ "▁heavy": 9416,
+ "▁avril": 9417,
+ "▁anti": 9418,
+ "▁octobre": 9419,
+ "utf": 9420,
+ "helm": 9421,
+ "amples": 9422,
+ "▁(_": 9423,
+ "aken": 9424,
+ "▁dear": 9425,
+ "▁opinion": 9426,
+ "▁fish": 9427,
+ "▁Alexander": 9428,
+ "iw": 9429,
+ "им": 9430,
+ "cadem": 9431,
+ "▁reflect": 9432,
+ "▁др": 9433,
+ "▁trib": 9434,
+ "common": 9435,
+ "▁clearly": 9436,
+ "▁saf": 9437,
+ "=\"@+": 9438,
+ "▁Мос": 9439,
+ "сите": 9440,
+ "eqnarray": 9441,
+ "nung": 9442,
+ "▁relationship": 9443,
+ "▁Sem": 9444,
+ "▁killed": 9445,
+ "ted": 9446,
+ "uno": 9447,
+ "▁лі": 9448,
+ "▁wid": 9449,
+ "anning": 9450,
+ "▁panel": 9451,
+ "▁Leben": 9452,
+ "▁ruby": 9453,
+ "ansion": 9454,
+ "▁aren": 9455,
+ "tabular": 9456,
+ "alet": 9457,
+ "}$$": 9458,
+ "▁Lake": 9459,
+ "▁suite": 9460,
+ "▁minor": 9461,
+ "Hozzáférés": 9462,
+ "▁xmlns": 9463,
+ "DIR": 9464,
+ "driver": 9465,
+ "ints": 9466,
+ "▁vic": 9467,
+ "AND": 9468,
+ "prim": 9469,
+ "сылки": 9470,
+ "▁Ox": 9471,
+ "TC": 9472,
+ "rivial": 9473,
+ "atie": 9474,
+ "▁eight": 9475,
+ "▁conflic": 9476,
+ "angel": 9477,
+ "▁Begr": 9478,
+ "▁explicitly": 9479,
+ "ются": 9480,
+ "▁Dev": 9481,
+ "render": 9482,
+ "▁reprodu": 9483,
+ "▁cré": 9484,
+ "Gu": 9485,
+ "MB": 9486,
+ "▁kön": 9487,
+ "▁remained": 9488,
+ "▁kl": 9489,
+ "хов": 9490,
+ "▁byl": 9491,
+ "Phi": 9492,
+ "▁detail": 9493,
+ "jav": 9494,
+ "▁mouse": 9495,
+ "Bas": 9496,
+ "ię": 9497,
+ "asser": 9498,
+ "hs": 9499,
+ "▁shift": 9500,
+ "▁últ": 9501,
+ "rand": 9502,
+ "▁btn": 9503,
+ "raz": 9504,
+ "▁pul": 9505,
+ "▁statements": 9506,
+ "filename": 9507,
+ "▁prompt": 9508,
+ "élé": 9509,
+ "ikz": 9510,
+ "▁Sus": 9511,
+ "▁debut": 9512,
+ "Stat": 9513,
+ "forms": 9514,
+ "▁Hein": 9515,
+ "stadt": 9516,
+ "ennis": 9517,
+ "пол": 9518,
+ "arante": 9519,
+ "цій": 9520,
+ "▁queue": 9521,
+ "▁reci": 9522,
+ "▁sta": 9523,
+ "ynchron": 9524,
+ "centering": 9525,
+ "Some": 9526,
+ "Graph": 9527,
+ "▁tested": 9528,
+ "▁Kunst": 9529,
+ "ом": 9530,
+ "▁Nothing": 9531,
+ "ieu": 9532,
+ "“.": 9533,
+ "Bundle": 9534,
+ "▁oficial": 9535,
+ "allow": 9536,
+ "▁React": 9537,
+ "▁Library": 9538,
+ "blue": 9539,
+ "▁verw": 9540,
+ "▁pare": 9541,
+ "▁Friedrich": 9542,
+ "▁aware": 9543,
+ "Exp": 9544,
+ "▁effects": 9545,
+ "▁горо": 9546,
+ "lopedia": 9547,
+ "▁Ven": 9548,
+ "rale": 9549,
+ "▁Final": 9550,
+ "▁propos": 9551,
+ "lacement": 9552,
+ "kten": 9553,
+ "▁novel": 9554,
+ "orter": 9555,
+ "▁Germany": 9556,
+ "▁django": 9557,
+ "▁transition": 9558,
+ "▁happened": 9559,
+ "▁beautiful": 9560,
+ "▁neither": 9561,
+ "▁libraries": 9562,
+ "▁hide": 9563,
+ "alg": 9564,
+ "▁aspect": 9565,
+ "▁forget": 9566,
+ "cademy": 9567,
+ "onte": 9568,
+ "refix": 9569,
+ "▁cloud": 9570,
+ "ned": 9571,
+ "cdots": 9572,
+ "register": 9573,
+ "nym": 9574,
+ ".):": 9575,
+ "▁Jew": 9576,
+ "▁très": 9577,
+ "ниче": 9578,
+ "▁Dor": 9579,
+ "▁proc": 9580,
+ "▁gan": 9581,
+ "▁є": 9582,
+ "▁Sav": 9583,
+ "ví": 9584,
+ "Settings": 9585,
+ "▁Vari": 9586,
+ "▁cours": 9587,
+ "Ro": 9588,
+ "▁conj": 9589,
+ "▁reasons": 9590,
+ "▁reader": 9591,
+ "лександ": 9592,
+ "icate": 9593,
+ "}),": 9594,
+ "▁tasks": 9595,
+ "▁Ray": 9596,
+ "▁ric": 9597,
+ "Ke": 9598,
+ "onie": 9599,
+ "rf": 9600,
+ ")[": 9601,
+ "▁subsequ": 9602,
+ "▁Turn": 9603,
+ "▁VIAF": 9604,
+ "mathsf": 9605,
+ "HE": 9606,
+ "▁declare": 9607,
+ "▁protocol": 9608,
+ "▁PC": 9609,
+ "цион": 9610,
+ "ViewById": 9611,
+ "▁animation": 9612,
+ "▁confused": 9613,
+ "вич": 9614,
+ "▁enabled": 9615,
+ "owo": 9616,
+ "ást": 9617,
+ "öt": 9618,
+ "▁mand": 9619,
+ "▁Rail": 9620,
+ "fields": 9621,
+ "▁Kap": 9622,
+ "▁algebra": 9623,
+ "▁Су": 9624,
+ "férence": 9625,
+ "▁Current": 9626,
+ "сно": 9627,
+ "▁Lim": 9628,
+ "Params": 9629,
+ "▁Antonio": 9630,
+ "▁tv": 9631,
+ "late": 9632,
+ "ifer": 9633,
+ "Entry": 9634,
+ "▁Serv": 9635,
+ "▁musical": 9636,
+ "▁trace": 9637,
+ "▁scient": 9638,
+ "fic": 9639,
+ "▁forgot": 9640,
+ "video": 9641,
+ "▁older": 9642,
+ "Tree": 9643,
+ "▁uns": 9644,
+ "ники": 9645,
+ "▁Europa": 9646,
+ "▁Zwe": 9647,
+ "▁бе": 9648,
+ "▁vec": 9649,
+ "жу": 9650,
+ "▁▁▁▁▁▁▁▁▁▁▁": 9651,
+ "Match": 9652,
+ "span": 9653,
+ "▁blank": 9654,
+ "▁später": 9655,
+ "▁Ty": 9656,
+ "▁dict": 9657,
+ "ña": 9658,
+ "▁confirm": 9659,
+ "▁vý": 9660,
+ "зан": 9661,
+ "Rel": 9662,
+ "film": 9663,
+ "▁Rot": 9664,
+ "▁Hy": 9665,
+ "ках": 9666,
+ "▁demand": 9667,
+ "▁minist": 9668,
+ "▁Madrid": 9669,
+ "▁usual": 9670,
+ "spiel": 9671,
+ "eros": 9672,
+ "▁tutorial": 9673,
+ "▁Ссылки": 9674,
+ "sys": 9675,
+ "циаль": 9676,
+ "▁spread": 9677,
+ "▁convers": 9678,
+ "▁roll": 9679,
+ "artifactId": 9680,
+ "▁Number": 9681,
+ "▁symmet": 9682,
+ "▁Mult": 9683,
+ "expected": 9684,
+ "▁axis": 9685,
+ "▁matching": 9686,
+ "▁food": 9687,
+ "groupId": 9688,
+ "Mapp": 9689,
+ "▁свя": 9690,
+ "▁vend": 9691,
+ "Found": 9692,
+ "otto": 9693,
+ "Cat": 9694,
+ "crit": 9695,
+ "istent": 9696,
+ "▁drei": 9697,
+ "▁ended": 9698,
+ "▁Tele": 9699,
+ "component": 9700,
+ "▁involved": 9701,
+ "▁Estados": 9702,
+ "▁danger": 9703,
+ "▁chain": 9704,
+ "▁Prom": 9705,
+ "hom": 9706,
+ "▁polít": 9707,
+ "cop": 9708,
+ "▁nap": 9709,
+ "rif": 9710,
+ "plements": 9711,
+ "▁vent": 9712,
+ "anna": 9713,
+ "anted": 9714,
+ "dated": 9715,
+ "anth": 9716,
+ "▁threads": 9717,
+ "зова": 9718,
+ "▁станов": 9719,
+ "▁eerst": 9720,
+ "buf": 9721,
+ "heid": 9722,
+ "▁Ru": 9723,
+ "▁Prim": 9724,
+ "▁migr": 9725,
+ "▁Unidos": 9726,
+ "▁arbitr": 9727,
+ "▁roman": 9728,
+ "ountry": 9729,
+ "ultur": 9730,
+ "▁König": 9731,
+ "▁annot": 9732,
+ "aching": 9733,
+ "▁Haupt": 9734,
+ "umin": 9735,
+ "▁hem": 9736,
+ "ckets": 9737,
+ "bau": 9738,
+ "ection": 9739,
+ "eft": 9740,
+ "▁packages": 9741,
+ "▁Kur": 9742,
+ "thur": 9743,
+ "▁pays": 9744,
+ "liament": 9745,
+ "▁Бу": 9746,
+ "▁cada": 9747,
+ "points": 9748,
+ "ocket": 9749,
+ "▁verb": 9750,
+ "лее": 9751,
+ "▁submit": 9752,
+ "▁san": 9753,
+ "ruby": 9754,
+ "▁east": 9755,
+ "kov": 9756,
+ "▁Verlag": 9757,
+ "▁spot": 9758,
+ "ppo": 9759,
+ "Each": 9760,
+ "jekt": 9761,
+ "▁Biographie": 9762,
+ "▁news": 9763,
+ "▁país": 9764,
+ "ufact": 9765,
+ "▁dia": 9766,
+ "кова": 9767,
+ "▁accompl": 9768,
+ "▁Ét": 9769,
+ "ilities": 9770,
+ "▁ihm": 9771,
+ "invoke": 9772,
+ "▁append": 9773,
+ ".),": 9774,
+ "▁lab": 9775,
+ "anging": 9776,
+ "istan": 9777,
+ "resol": 9778,
+ "▁Section": 9779,
+ "Parent": 9780,
+ "moz": 9781,
+ "Mat": 9782,
+ "styles": 9783,
+ "unden": 9784,
+ "“,": 9785,
+ "irtschaft": 9786,
+ "ким": 9787,
+ "▁Finally": 9788,
+ "phen": 9789,
+ "▁Pac": 9790,
+ "▁ArrayList": 9791,
+ "▁recover": 9792,
+ "▁education": 9793,
+ "models": 9794,
+ "ped": 9795,
+ "▁happy": 9796,
+ "чу": 9797,
+ "▁guerra": 9798,
+ "media": 9799,
+ "OF": 9800,
+ "▁ensure": 9801,
+ "Mark": 9802,
+ "database": 9803,
+ "oggle": 9804,
+ "▁publish": 9805,
+ "OW": 9806,
+ "▁Bau": 9807,
+ "?.": 9808,
+ "▁части": 9809,
+ "▁repository": 9810,
+ "▁Matt": 9811,
+ "high": 9812,
+ "oven": 9813,
+ "▁ger": 9814,
+ "▁unknown": 9815,
+ "Amer": 9816,
+ "▁Brown": 9817,
+ "ALL": 9818,
+ "▁resulting": 9819,
+ "▁bor": 9820,
+ "▁poet": 9821,
+ "ними": 9822,
+ "Email": 9823,
+ "Font": 9824,
+ "▁hist": 9825,
+ "▁today": 9826,
+ "▁Berg": 9827,
+ "▁buttons": 9828,
+ "тал": 9829,
+ "▁sni": 9830,
+ "▁челов": 9831,
+ "Cre": 9832,
+ "▁union": 9833,
+ "▁zich": 9834,
+ "ishop": 9835,
+ "▁quando": 9836,
+ "Po": 9837,
+ "CTION": 9838,
+ "▁Cost": 9839,
+ "судар": 9840,
+ "erved": 9841,
+ "Note": 9842,
+ "Equal": 9843,
+ "лия": 9844,
+ "бур": 9845,
+ "▁abstract": 9846,
+ "stop": 9847,
+ "▁advice": 9848,
+ "▁icon": 9849,
+ "▁travel": 9850,
+ "BS": 9851,
+ "vens": 9852,
+ "▁batch": 9853,
+ "lique": 9854,
+ "sheet": 9855,
+ "▁ihre": 9856,
+ "emon": 9857,
+ "berto": 9858,
+ "▁assigned": 9859,
+ "ью": 9860,
+ "Phone": 9861,
+ "▁award": 9862,
+ "▁functionality": 9863,
+ "alla": 9864,
+ "▁Dam": 9865,
+ "▁ciudad": 9866,
+ "▁cluster": 9867,
+ "Description": 9868,
+ "▁sheet": 9869,
+ "▁Australian": 9870,
+ "▁».": 9871,
+ "▁\"<": 9872,
+ "▁wondering": 9873,
+ "aine": 9874,
+ "▁represented": 9875,
+ "kappa": 9876,
+ "nb": 9877,
+ "▁sy": 9878,
+ "▁Kö": 9879,
+ "=\"#": 9880,
+ "▁seven": 9881,
+ "Directory": 9882,
+ "▁sister": 9883,
+ "plates": 9884,
+ "▁luck": 9885,
+ "▁remaining": 9886,
+ "▁Vill": 9887,
+ "werk": 9888,
+ "anni": 9889,
+ "etti": 9890,
+ "func": 9891,
+ "▁ban": 9892,
+ "ims": 9893,
+ "miss": 9894,
+ "agraph": 9895,
+ "екси": 9896,
+ "▁Ref": 9897,
+ "nitt": 9898,
+ "▁Gab": 9899,
+ "▁andere": 9900,
+ "▁jedoch": 9901,
+ "results": 9902,
+ "!\\": 9903,
+ "▁listed": 9904,
+ "▁loro": 9905,
+ "▁knows": 9906,
+ "жно": 9907,
+ "Rad": 9908,
+ "▁socket": 9909,
+ "multi": 9910,
+ "▁рі": 9911,
+ "rails": 9912,
+ "▁tar": 9913,
+ "▁gentle": 9914,
+ "sett": 9915,
+ "services": 9916,
+ "bound": 9917,
+ "igkeit": 9918,
+ "aja": 9919,
+ "▁cmd": 9920,
+ "agger": 9921,
+ "▁ba": 9922,
+ "▁Belg": 9923,
+ "▁Kle": 9924,
+ "▁wordt": 9925,
+ "▁fost": 9926,
+ "▁dimension": 9927,
+ "Ang": 9928,
+ "uming": 9929,
+ "Obj": 9930,
+ "нен": 9931,
+ "▁Marie": 9932,
+ "exists": 9933,
+ "тро": 9934,
+ "▁боль": 9935,
+ "emente": 9936,
+ "▁Jon": 9937,
+ "SERT": 9938,
+ "▁highest": 9939,
+ "aki": 9940,
+ "▁tres": 9941,
+ "▁circum": 9942,
+ "▁Down": 9943,
+ "ommen": 9944,
+ "urer": 9945,
+ "▁causes": 9946,
+ "venue": 9947,
+ "issance": 9948,
+ "▁influence": 9949,
+ "▁fat": 9950,
+ "реди": 9951,
+ "}\\\\": 9952,
+ "▁entr": 9953,
+ "▁Sign": 9954,
+ "▁кла": 9955,
+ "▁binding": 9956,
+ "essen": 9957,
+ "▁Фран": 9958,
+ "▁Local": 9959,
+ "▁явля": 9960,
+ "appro": 9961,
+ "▁dependencies": 9962,
+ "▁talking": 9963,
+ "▁zurück": 9964,
+ "connection": 9965,
+ "Active": 9966,
+ "bbe": 9967,
+ "irls": 9968,
+ "▁Inf": 9969,
+ "wd": 9970,
+ "▁ис": 9971,
+ "road": 9972,
+ "▁conven": 9973,
+ "ět": 9974,
+ "вез": 9975,
+ "▁entries": 9976,
+ "esc": 9977,
+ "▁bits": 9978,
+ "asso": 9979,
+ "WR": 9980,
+ "ships": 9981,
+ "▁dés": 9982,
+ "esp": 9983,
+ "Make": 9984,
+ "▁familiar": 9985,
+ "Art": 9986,
+ "▁army": 9987,
+ "ctr": 9988,
+ "éric": 9989,
+ "queue": 9990,
+ "▁\\{": 9991,
+ "uela": 9992,
+ "amiento": 9993,
+ "ших": 9994,
+ "▁\"\"\"": 9995,
+ "contr": 9996,
+ "лле": 9997,
+ "FS": 9998,
+ "▁market": 9999,
+ "ång": 10000,
+ "citep": 10001,
+ "Ill": 10002,
+ "rank": 10003,
+ "▁sender": 10004,
+ "▁beim": 10005,
+ "рак": 10006,
+ "▁compat": 10007,
+ "▁occurs": 10008,
+ "▁diese": 10009,
+ "ститу": 10010,
+ "awa": 10011,
+ "▁iOS": 10012,
+ "▁Chinese": 10013,
+ "▁TR": 10014,
+ "▁Ken": 10015,
+ "▁Une": 10016,
+ "▁creates": 10017,
+ "▁showed": 10018,
+ "▁év": 10019,
+ "ologia": 10020,
+ "▁protest": 10021,
+ "▁Pf": 10022,
+ "▁squad": 10023,
+ "++,": 10024,
+ "áv": 10025,
+ "▁essere": 10026,
+ "зя": 10027,
+ "kol": 10028,
+ "▁slightly": 10029,
+ "addr": 10030,
+ "ân": 10031,
+ "▁reduce": 10032,
+ "▁\\(\\": 10033,
+ "▁Dep": 10034,
+ "▁generic": 10035,
+ "Loader": 10036,
+ "ți": 10037,
+ "▁пос": 10038,
+ "▁occasion": 10039,
+ "▁Lady": 10040,
+ "entity": 10041,
+ "▁avant": 10042,
+ "▁Pas": 10043,
+ "aggio": 10044,
+ "\\{": 10045,
+ "пад": 10046,
+ "atholic": 10047,
+ "Password": 10048,
+ "▁respond": 10049,
+ "▁Non": 10050,
+ "AG": 10051,
+ "neg": 10052,
+ "▁ус": 10053,
+ "blob": 10054,
+ "cke": 10055,
+ "▁Consider": 10056,
+ "▁Care": 10057,
+ "iki": 10058,
+ "▁Chicago": 10059,
+ "inden": 10060,
+ "▁Cop": 10061,
+ "]+": 10062,
+ "öm": 10063,
+ "évrier": 10064,
+ "кло": 10065,
+ "alen": 10066,
+ "▁maj": 10067,
+ "racy": 10068,
+ "orte": 10069,
+ "ients": 10070,
+ "ells": 10071,
+ "activity": 10072,
+ "▁runtime": 10073,
+ "NULL": 10074,
+ "▁possibly": 10075,
+ "▁stri": 10076,
+ "izi": 10077,
+ "▁mir": 10078,
+ "▁Version": 10079,
+ "prime": 10080,
+ "▁twenty": 10081,
+ "▁Mah": 10082,
+ "▁sounds": 10083,
+ "шен": 10084,
+ "clusion": 10085,
+ "acz": 10086,
+ "▁determined": 10087,
+ "▁Rep": 10088,
+ "▁Landes": 10089,
+ "▁wall": 10090,
+ "igi": 10091,
+ "▁reset": 10092,
+ "шо": 10093,
+ "yan": 10094,
+ "Met": 10095,
+ "ei": 10096,
+ "▁appearance": 10097,
+ "▁fois": 10098,
+ "▁nell": 10099,
+ "esi": 10100,
+ "ёт": 10101,
+ "loor": 10102,
+ "▁Ul": 10103,
+ "▁resolution": 10104,
+ "▁fot": 10105,
+ "▁throughout": 10106,
+ "▁ri": 10107,
+ "Level": 10108,
+ "pool": 10109,
+ "▁identity": 10110,
+ "▁janu": 10111,
+ "▁imper": 10112,
+ "▁över": 10113,
+ "}`": 10114,
+ "▁infer": 10115,
+ "▁dates": 10116,
+ "▁Standard": 10117,
+ "force": 10118,
+ "ockey": 10119,
+ "tera": 10120,
+ "▁distingu": 10121,
+ "▁presence": 10122,
+ "lica": 10123,
+ "▁leaving": 10124,
+ "itung": 10125,
+ "éb": 10126,
+ "▁establish": 10127,
+ "▁maar": 10128,
+ "adi": 10129,
+ "▁News": 10130,
+ "azon": 10131,
+ "folg": 10132,
+ "▁Hence": 10133,
+ "▁Ye": 10134,
+ "▁fab": 10135,
+ "▁führ": 10136,
+ "itmap": 10137,
+ "▁Vers": 10138,
+ "rov": 10139,
+ "Sign": 10140,
+ "device": 10141,
+ "Sigma": 10142,
+ "▁wetenschapp": 10143,
+ "▁Ps": 10144,
+ "PATH": 10145,
+ "▁torn": 10146,
+ "vest": 10147,
+ "стов": 10148,
+ "account": 10149,
+ "▁largest": 10150,
+ "▁percent": 10151,
+ "▁Women": 10152,
+ "▁img": 10153,
+ "tool": 10154,
+ "▁roce": 10155,
+ "▁ay": 10156,
+ "inet": 10157,
+ "▁août": 10158,
+ "▁polynomial": 10159,
+ "▁integral": 10160,
+ "▁areas": 10161,
+ "}'": 10162,
+ "▁hyp": 10163,
+ "loyee": 10164,
+ "таль": 10165,
+ "▁proxy": 10166,
+ "▁Wy": 10167,
+ "▁Мекси": 10168,
+ "▁escape": 10169,
+ "olar": 10170,
+ "▁mistake": 10171,
+ ")}{": 10172,
+ "▁Pot": 10173,
+ "▁processes": 10174,
+ "\">\r": 10175,
+ "halten": 10176,
+ "zza": 10177,
+ "amo": 10178,
+ "кре": 10179,
+ "▁Wood": 10180,
+ "ør": 10181,
+ "▁сер": 10182,
+ "ocia": 10183,
+ "two": 10184,
+ "profile": 10185,
+ "▁Ast": 10186,
+ "embro": 10187,
+ "▁arms": 10188,
+ "inas": 10189,
+ "innen": 10190,
+ "▁msg": 10191,
+ "INT": 10192,
+ "▁batter": 10193,
+ "ignment": 10194,
+ "▁vy": 10195,
+ "Hrsg": 10196,
+ "▁Grund": 10197,
+ "roc": 10198,
+ "seg": 10199,
+ "▁decor": 10200,
+ "▁eventually": 10201,
+ ">,": 10202,
+ "▁pag": 10203,
+ "anten": 10204,
+ "▁strugg": 10205,
+ "}^\\": 10206,
+ "daten": 10207,
+ "▁rela": 10208,
+ "пов": 10209,
+ "▁коро": 10210,
+ "▁Bos": 10211,
+ "▁labor": 10212,
+ "▁Secret": 10213,
+ "ugen": 10214,
+ "▁jap": 10215,
+ "▁husband": 10216,
+ "▁Album": 10217,
+ "▁etwa": 10218,
+ "▁произ": 10219,
+ "richt": 10220,
+ "rach": 10221,
+ "bat": 10222,
+ "▁prepar": 10223,
+ "▁Stock": 10224,
+ "▁lack": 10225,
+ "хід": 10226,
+ "▁hogy": 10227,
+ "▁Chrome": 10228,
+ "▁Admin": 10229,
+ "▁comparison": 10230,
+ "▁increasing": 10231,
+ "нг": 10232,
+ "imi": 10233,
+ "Db": 10234,
+ "▁gef": 10235,
+ "ucht": 10236,
+ "ése": 10237,
+ "gence": 10238,
+ "▁Core": 10239,
+ "▁incorrect": 10240,
+ "▁assuming": 10241,
+ "ourse": 10242,
+ "ieron": 10243,
+ "▁Theorem": 10244,
+ "▁casa": 10245,
+ "jes": 10246,
+ "▁дере": 10247,
+ "▁`\"": 10248,
+ "LD": 10249,
+ "äß": 10250,
+ "Deb": 10251,
+ "▁suiv": 10252,
+ "▁Bank": 10253,
+ "libs": 10254,
+ "▁Leon": 10255,
+ "▁quart": 10256,
+ "▁professional": 10257,
+ "▁tiene": 10258,
+ "▁accomp": 10259,
+ "стер": 10260,
+ "▁UK": 10261,
+ "NN": 10262,
+ "▁lí": 10263,
+ "ця": 10264,
+ "kel": 10265,
+ "▁•": 10266,
+ "▁dise": 10267,
+ "onto": 10268,
+ "▁má": 10269,
+ "ifs": 10270,
+ "bild": 10271,
+ "▁compute": 10272,
+ "▁éd": 10273,
+ "ję": 10274,
+ "▁Mé": 10275,
+ "▁languages": 10276,
+ "▁Times": 10277,
+ "cen": 10278,
+ "▁авто": 10279,
+ "ým": 10280,
+ "enez": 10281,
+ "▁upp": 10282,
+ "▁méd": 10283,
+ "▁cuando": 10284,
+ "од": 10285,
+ "Intent": 10286,
+ "eerd": 10287,
+ "▁Tal": 10288,
+ "offset": 10289,
+ "▁haben": 10290,
+ "reme": 10291,
+ "▁Stack": 10292,
+ "▁dri": 10293,
+ "▁seinem": 10294,
+ "▁février": 10295,
+ "▁combination": 10296,
+ "▁soll": 10297,
+ "▁movement": 10298,
+ "Spec": 10299,
+ "кры": 10300,
+ "retch": 10301,
+ "Offset": 10302,
+ "Root": 10303,
+ "Ар": 10304,
+ "wart": 10305,
+ "▁Follow": 10306,
+ "▁Social": 10307,
+ "ников": 10308,
+ "▁→": 10309,
+ "Don": 10310,
+ "▁harm": 10311,
+ "agr": 10312,
+ "nego": 10313,
+ "resource": 10314,
+ "▁Luc": 10315,
+ "▁seinen": 10316,
+ "▁Department": 10317,
+ "▁Update": 10318,
+ "▁Texas": 10319,
+ "▁reve": 10320,
+ "▁Pos": 10321,
+ "▁shot": 10322,
+ "othe": 10323,
+ "▁repeated": 10324,
+ "▁recently": 10325,
+ "ában": 10326,
+ "aks": 10327,
+ "пан": 10328,
+ "▁cha": 10329,
+ "ohl": 10330,
+ "▁tend": 10331,
+ "▁дво": 10332,
+ "chts": 10333,
+ "çaise": 10334,
+ "pling": 10335,
+ "album": 10336,
+ "ej": 10337,
+ "▁`[": 10338,
+ "maps": 10339,
+ "▁units": 10340,
+ "▁": 15110,
+ "▁pří": 15111,
+ "pandas": 15112,
+ "▁Plus": 15113,
+ "yll": 15114,
+ "▁terror": 15115,
+ "▁crim": 15116,
+ "▁zak": 15117,
+ "issue": 15118,
+ "panel": 15119,
+ "svg": 15120,
+ "▁reb": 15121,
+ "Customer": 15122,
+ "switch": 15123,
+ "обра": 15124,
+ "▁Championships": 15125,
+ "clo": 15126,
+ "atte": 15127,
+ "▁anymore": 15128,
+ "▁excellent": 15129,
+ "▁opportunity": 15130,
+ "▁Bahn": 15131,
+ "чин": 15132,
+ "eting": 15133,
+ "▁incident": 15134,
+ "tom": 15135,
+ "Pers": 15136,
+ "bben": 15137,
+ "ственной": 15138,
+ "их": 15139,
+ "router": 15140,
+ "▁newly": 15141,
+ "▁silence": 15142,
+ "▁GNU": 15143,
+ "▁Rails": 15144,
+ "▁Amb": 15145,
+ "▁Qual": 15146,
+ "▁Schaus": 15147,
+ "▁Sohn": 15148,
+ "▁ALL": 15149,
+ "▁royal": 15150,
+ "▁£": 15151,
+ "wię": 15152,
+ "▁entfer": 15153,
+ "▁Remove": 15154,
+ "▁hardly": 15155,
+ "Using": 15156,
+ "лог": 15157,
+ "▁Ich": 15158,
+ "▁derni": 15159,
+ "▁Connection": 15160,
+ "fish": 15161,
+ "▁Inform": 15162,
+ "▁Ener": 15163,
+ "roit": 15164,
+ "Bbb": 15165,
+ "ViewModel": 15166,
+ "Video": 15167,
+ "iley": 15168,
+ "▁много": 15169,
+ "▁Gem": 15170,
+ "▁compreh": 15171,
+ "enumerate": 15172,
+ "ulas": 15173,
+ "▁Bah": 15174,
+ "▁Yet": 15175,
+ "BR": 15176,
+ "хра": 15177,
+ "▁county": 15178,
+ "▁Hist": 15179,
+ "▁Гу": 15180,
+ "▁Ј": 15181,
+ "▁mari": 15182,
+ "▁Clar": 15183,
+ "Bitmap": 15184,
+ "▁Cz": 15185,
+ "▁mån": 15186,
+ "▁mere": 15187,
+ "▁musique": 15188,
+ "also": 15189,
+ "dates": 15190,
+ "▁DVD": 15191,
+ "▁gol": 15192,
+ "fony": 15193,
+ "▁Castle": 15194,
+ "▁фами": 15195,
+ "▁arrang": 15196,
+ "▁Business": 15197,
+ "▁Kaz": 15198,
+ "▁osc": 15199,
+ "▁secolo": 15200,
+ "▁affected": 15201,
+ "▁Health": 15202,
+ "reb": 15203,
+ "editor": 15204,
+ "▁owned": 15205,
+ "tl": 15206,
+ "▁ví": 15207,
+ "чних": 15208,
+ "кви": 15209,
+ "▁devient": 15210,
+ "Mutable": 15211,
+ "▁tegen": 15212,
+ "Register": 15213,
+ "єю": 15214,
+ "▁caracter": 15215,
+ "лли": 15216,
+ "▁nouvelle": 15217,
+ "oko": 15218,
+ "ichtet": 15219,
+ "▁evol": 15220,
+ "▁Hab": 15221,
+ "▁militar": 15222,
+ "▁puts": 15223,
+ "endif": 15224,
+ "▁Davis": 15225,
+ "▁Scotland": 15226,
+ "regular": 15227,
+ "▁Context": 15228,
+ "ispiel": 15229,
+ "▁Gallery": 15230,
+ "\",\r": 15231,
+ "▁arc": 15232,
+ "▁INFO": 15233,
+ "▁cod": 15234,
+ "дів": 15235,
+ "▁varchar": 15236,
+ "▁toujours": 15237,
+ "atial": 15238,
+ "▁hanno": 15239,
+ "▁профес": 15240,
+ "▁launched": 15241,
+ "▁населення": 15242,
+ "▁ton": 15243,
+ "aused": 15244,
+ "▁із": 15245,
+ "▁tö": 15246,
+ "▁Pur": 15247,
+ "▁olymp": 15248,
+ "ARN": 15249,
+ "óm": 15250,
+ "▁august": 15251,
+ "▁furn": 15252,
+ "▁Colomb": 15253,
+ "▁Staats": 15254,
+ "hora": 15255,
+ "▁мор": 15256,
+ "canvas": 15257,
+ "▁grave": 15258,
+ "▁composition": 15259,
+ "acja": 15260,
+ "▁которые": 15261,
+ "▁чо": 15262,
+ "General": 15263,
+ "ані": 15264,
+ "▁Johannes": 15265,
+ "кар": 15266,
+ "▁част": 15267,
+ "▁Васи": 15268,
+ "ssh": 15269,
+ "▁replacing": 15270,
+ "▁<>": 15271,
+ "ців": 15272,
+ "laus": 15273,
+ "eny": 15274,
+ "ähl": 15275,
+ "▁marg": 15276,
+ "cience": 15277,
+ "▁instruction": 15278,
+ "▁који": 15279,
+ "Editor": 15280,
+ "▁fundamental": 15281,
+ "mund": 15282,
+ "▁exceptions": 15283,
+ "▁plate": 15284,
+ "▁Lis": 15285,
+ "▁deren": 15286,
+ "prep": 15287,
+ "▁januari": 15288,
+ "Scope": 15289,
+ "ynast": 15290,
+ "rv": 15291,
+ "orsz": 15292,
+ "▁Tony": 15293,
+ "▁ді": 15294,
+ "▁одна": 15295,
+ "▁sab": 15296,
+ "oti": 15297,
+ "jel": 15298,
+ "▁generator": 15299,
+ "▁'.": 15300,
+ "▁sharp": 15301,
+ "▁только": 15302,
+ "▁accounts": 15303,
+ "▁že": 15304,
+ "▁foram": 15305,
+ "▁gouvern": 15306,
+ "TIME": 15307,
+ "▁Soviet": 15308,
+ "▁Gé": 15309,
+ "▁exped": 15310,
+ "▁ordinary": 15311,
+ "▁Conserv": 15312,
+ "▁compla": 15313,
+ "tei": 15314,
+ "▁captain": 15315,
+ "▁Samuel": 15316,
+ "▁Dark": 15317,
+ "▁він": 15318,
+ "▁delight": 15319,
+ "recht": 15320,
+ "dia": 15321,
+ "esses": 15322,
+ "ulp": 15323,
+ "шки": 15324,
+ "bez": 15325,
+ "▁detection": 15326,
+ "▁cookie": 15327,
+ "antry": 15328,
+ "Multi": 15329,
+ "oba": 15330,
+ "▁joy": 15331,
+ "▁safety": 15332,
+ "|^": 15333,
+ "pod": 15334,
+ "adém": 15335,
+ "▁Chron": 15336,
+ "▁Django": 15337,
+ "▁ehemal": 15338,
+ "kh": 15339,
+ "èle": 15340,
+ "▁poc": 15341,
+ "Bottom": 15342,
+ "launch": 15343,
+ "nem": 15344,
+ "▁GROUP": 15345,
+ "ního": 15346,
+ "▁Gib": 15347,
+ "sdk": 15348,
+ "BE": 15349,
+ "▁Gene": 15350,
+ "▁Staff": 15351,
+ "▁subsequent": 15352,
+ "icion": 15353,
+ "▁victory": 15354,
+ "▁canon": 15355,
+ "izar": 15356,
+ "izia": 15357,
+ "▁mate": 15358,
+ "▁layers": 15359,
+ "sudo": 15360,
+ "schule": 15361,
+ "periment": 15362,
+ "ület": 15363,
+ "ARCHAR": 15364,
+ "▁террито": 15365,
+ "▁measures": 15366,
+ "▁zou": 15367,
+ "opsis": 15368,
+ "нами": 15369,
+ "tbody": 15370,
+ "▁ese": 15371,
+ "sterdam": 15372,
+ "▁photo": 15373,
+ "ynchronous": 15374,
+ "setminus": 15375,
+ "▁loads": 15376,
+ "▁pleasure": 15377,
+ "▁meille": 15378,
+ "}\\,": 15379,
+ "qual": 15380,
+ "▁favour": 15381,
+ "▁rod": 15382,
+ "Der": 15383,
+ "рабо": 15384,
+ "▁pressed": 15385,
+ "rę": 15386,
+ "ieving": 15387,
+ "material": 15388,
+ "virt": 15389,
+ "▁capable": 15390,
+ "сло": 15391,
+ "ushed": 15392,
+ "▁побе": 15393,
+ "usetts": 15394,
+ "unsigned": 15395,
+ "ków": 15396,
+ "▁ov": 15397,
+ "egeben": 15398,
+ "▁applying": 15399,
+ "▁galax": 15400,
+ "▁Oracle": 15401,
+ "▁Stuttgart": 15402,
+ "Infl": 15403,
+ "achusetts": 15404,
+ "▁deel": 15405,
+ "lire": 15406,
+ "▁statunit": 15407,
+ "▁Politiker": 15408,
+ "▁beauty": 15409,
+ ")>": 15410,
+ "▁Columbia": 15411,
+ "▁zewnętrzne": 15412,
+ "▁програ": 15413,
+ "▁dx": 15414,
+ "cknow": 15415,
+ "▁dub": 15416,
+ "unächst": 15417,
+ "findViewById": 15418,
+ "▁Mand": 15419,
+ "áll": 15420,
+ "naire": 15421,
+ "▁destin": 15422,
+ "isting": 15423,
+ "aggi": 15424,
+ "chart": 15425,
+ "▁justice": 15426,
+ "Simple": 15427,
+ "▁unfortunately": 15428,
+ "ір": 15429,
+ "▁questa": 15430,
+ "▁Governor": 15431,
+ "яв": 15432,
+ "▁música": 15433,
+ "▁equipo": 15434,
+ "▁Dest": 15435,
+ "elect": 15436,
+ "StackTrace": 15437,
+ "зом": 15438,
+ "proc": 15439,
+ "entin": 15440,
+ "adora": 15441,
+ "▁Лю": 15442,
+ "▁registered": 15443,
+ "HL": 15444,
+ "facebook": 15445,
+ "▁storing": 15446,
+ "▁Currently": 15447,
+ "▁quadr": 15448,
+ "Standard": 15449,
+ "trim": 15450,
+ "ears": 15451,
+ "sender": 15452,
+ "▁Vas": 15453,
+ "▁edific": 15454,
+ "▁Bür": 15455,
+ "▁Country": 15456,
+ "tha": 15457,
+ ";\"": 15458,
+ "nor": 15459,
+ "▁Doctor": 15460,
+ "rument": 15461,
+ "Gen": 15462,
+ "▁Buen": 15463,
+ "rade": 15464,
+ "▁kun": 15465,
+ "navigation": 15466,
+ "Pay": 15467,
+ "▁captured": 15468,
+ "▁struck": 15469,
+ "venir": 15470,
+ "ément": 15471,
+ "▁Tree": 15472,
+ "▁xx": 15473,
+ "▁narr": 15474,
+ "льного": 15475,
+ "▁installing": 15476,
+ "▁association": 15477,
+ "▁inserted": 15478,
+ "erner": 15479,
+ "validate": 15480,
+ "▁lut": 15481,
+ "▁glo": 15482,
+ "▁technology": 15483,
+ "▁Place": 15484,
+ "$?": 15485,
+ "▁zv": 15486,
+ "слі": 15487,
+ "EP": 15488,
+ "▁atmos": 15489,
+ "ugo": 15490,
+ "ért": 15491,
+ "▁Werk": 15492,
+ "▁%}": 15493,
+ "tele": 15494,
+ "Span": 15495,
+ "▁Raj": 15496,
+ "▁Personen": 15497,
+ "▁Cant": 15498,
+ "▁combat": 15499,
+ "▁observation": 15500,
+ "parameter": 15501,
+ "▁agreed": 15502,
+ "pur": 15503,
+ "▁shadow": 15504,
+ "▁gł": 15505,
+ "Keys": 15506,
+ "Cred": 15507,
+ "ouri": 15508,
+ "▁pale": 15509,
+ "ické": 15510,
+ "▁Week": 15511,
+ "▁Prime": 15512,
+ ">.": 15513,
+ "Initial": 15514,
+ "▁один": 15515,
+ "▁'',": 15516,
+ "▁учи": 15517,
+ "▁Inv": 15518,
+ "cola": 15519,
+ "cible": 15520,
+ "▁Theatre": 15521,
+ "▁bem": 15522,
+ "▁satisfy": 15523,
+ "xl": 15524,
+ "▁разви": 15525,
+ "▁pixel": 15526,
+ "lán": 15527,
+ "▁twee": 15528,
+ "çon": 15529,
+ "нения": 15530,
+ "▁AT": 15531,
+ "ège": 15532,
+ "▁Mort": 15533,
+ "▁mysq": 15534,
+ "ften": 15535,
+ "▁пес": 15536,
+ "éma": 15537,
+ "▁Services": 15538,
+ "customer": 15539,
+ "▁AWS": 15540,
+ "ът": 15541,
+ "▁Ach": 15542,
+ "%.": 15543,
+ "▁clarify": 15544,
+ "▁университе": 15545,
+ "xture": 15546,
+ "umi": 15547,
+ "▁så": 15548,
+ "▁Pel": 15549,
+ "serial": 15550,
+ "URI": 15551,
+ "▁rg": 15552,
+ "▁соста": 15553,
+ "chestra": 15554,
+ "].[": 15555,
+ "wen": 15556,
+ "▁Londres": 15557,
+ "▁anys": 15558,
+ "DataSource": 15559,
+ "▁районе": 15560,
+ "▁rein": 15561,
+ "▁metadata": 15562,
+ "umble": 15563,
+ "arbeit": 15564,
+ "hner": 15565,
+ "cient": 15566,
+ "▁norte": 15567,
+ "▁она": 15568,
+ "▁scored": 15569,
+ "▁ray": 15570,
+ "▁февра": 15571,
+ "▁protagon": 15572,
+ "▁Sac": 15573,
+ "▁commonly": 15574,
+ "LinearLayout": 15575,
+ "▁applic": 15576,
+ "▁мая": 15577,
+ "За": 15578,
+ "▁accessible": 15579,
+ "iewer": 15580,
+ "flag": 15581,
+ "▁Rück": 15582,
+ "äu": 15583,
+ "▁erano": 15584,
+ "▁authentic": 15585,
+ "▁Ry": 15586,
+ "▁неско": 15587,
+ "▁embargo": 15588,
+ "▁dry": 15589,
+ "▁reasonable": 15590,
+ "▁Module": 15591,
+ "▁acceler": 15592,
+ "▁interview": 15593,
+ "▁Creek": 15594,
+ "▁alpha": 15595,
+ "serie": 15596,
+ "They": 15597,
+ "ючи": 15598,
+ "▁Hof": 15599,
+ "▁CR": 15600,
+ "modal": 15601,
+ "▁sequences": 15602,
+ "closed": 15603,
+ ")}$": 15604,
+ "▁Чер": 15605,
+ "▁ORDER": 15606,
+ "Rightarrow": 15607,
+ "hausen": 15608,
+ "}}_": 15609,
+ "▁també": 15610,
+ "▁magnetic": 15611,
+ "▁McC": 15612,
+ "▁winning": 15613,
+ "underline": 15614,
+ "▁Billboard": 15615,
+ "naio": 15616,
+ "▁liqu": 15617,
+ "displaystyle": 15618,
+ "timeout": 15619,
+ "▁considerable": 15620,
+ "▁eben": 15621,
+ "ifferent": 15622,
+ "anu": 15623,
+ "▁Сов": 15624,
+ "[(": 15625,
+ "▁:-)": 15626,
+ "leitung": 15627,
+ "formed": 15628,
+ "▁Manager": 15629,
+ "▁onclick": 15630,
+ "TY": 15631,
+ "тах": 15632,
+ "CV": 15633,
+ "runtime": 15634,
+ "poque": 15635,
+ "▁Ло": 15636,
+ "Temp": 15637,
+ "loaded": 15638,
+ "▁!==": 15639,
+ "▁singer": 15640,
+ "far": 15641,
+ "▁Comple": 15642,
+ "▁Österreich": 15643,
+ "Policy": 15644,
+ "▁worker": 15645,
+ "Wrapper": 15646,
+ "obi": 15647,
+ "▁discussed": 15648,
+ "▁buy": 15649,
+ "▁января": 15650,
+ "▁Din": 15651,
+ "▁ged": 15652,
+ "ској": 15653,
+ "Europe": 15654,
+ "▁tall": 15655,
+ "hos": 15656,
+ "лаго": 15657,
+ "▁Block": 15658,
+ "▁identified": 15659,
+ "ListView": 15660,
+ "▁attempting": 15661,
+ "▁typical": 15662,
+ "psum": 15663,
+ "oster": 15664,
+ "▁журна": 15665,
+ "Pe": 15666,
+ "merce": 15667,
+ "▁unexpected": 15668,
+ "hui": 15669,
+ "letter": 15670,
+ "▁nuevo": 15671,
+ "▁або": 15672,
+ "▁VALUES": 15673,
+ "▁Iz": 15674,
+ "Flags": 15675,
+ "▁TRUE": 15676,
+ "ización": 15677,
+ "▁growing": 15678,
+ "estre": 15679,
+ "▁poly": 15680,
+ "▁Stone": 15681,
+ "▁VIII": 15682,
+ "▁localhost": 15683,
+ "ählt": 15684,
+ "▁embedded": 15685,
+ "jdbc": 15686,
+ "▁convention": 15687,
+ "▁scala": 15688,
+ "сок": 15689,
+ "▁analog": 15690,
+ "▁\"+": 15691,
+ "цю": 15692,
+ "occ": 15693,
+ "▁litt": 15694,
+ "PN": 15695,
+ "▁актив": 15696,
+ "attributes": 15697,
+ "▁Ferd": 15698,
+ "▁azure": 15699,
+ "ști": 15700,
+ "ños": 15701,
+ "ping": 15702,
+ "▁teacher": 15703,
+ "}&": 15704,
+ "ipe": 15705,
+ "▁Nob": 15706,
+ "▁има": 15707,
+ "Bind": 15708,
+ "▁magic": 15709,
+ "▁Transport": 15710,
+ "ixel": 15711,
+ "▁computed": 15712,
+ "agna": 15713,
+ "erst": 15714,
+ "HA": 15715,
+ "Wait": 15716,
+ "▁authors": 15717,
+ "▁;)": 15718,
+ "clam": 15719,
+ "▁Pennsylvan": 15720,
+ "▁drug": 15721,
+ "▁vain": 15722,
+ "▁employed": 15723,
+ "▁individuals": 15724,
+ "▁ange": 15725,
+ "utat": 15726,
+ "▁$-": 15727,
+ "correct": 15728,
+ "▁experiments": 15729,
+ "Argument": 15730,
+ "▁IB": 15731,
+ "▁père": 15732,
+ "▁Brian": 15733,
+ "berger": 15734,
+ "Mac": 15735,
+ "iast": 15736,
+ "Perm": 15737,
+ "Cast": 15738,
+ "▁{};": 15739,
+ "▁Student": 15740,
+ "▁statt": 15741,
+ "algebra": 15742,
+ "▁equals": 15743,
+ "▁projet": 15744,
+ "▁président": 15745,
+ "ActivityThread": 15746,
+ "▁einz": 15747,
+ "enia": 15748,
+ "rez": 15749,
+ "essional": 15750,
+ "▁августа": 15751,
+ "override": 15752,
+ "news": 15753,
+ "▁planet": 15754,
+ "nn": 15755,
+ "▁Wis": 15756,
+ "твер": 15757,
+ "▁Valid": 15758,
+ "▁Gef": 15759,
+ "град": 15760,
+ "▁eig": 15761,
+ "antom": 15762,
+ "▁Meister": 15763,
+ "flags": 15764,
+ "fficiale": 15765,
+ "шая": 15766,
+ "-,": 15767,
+ "ationen": 15768,
+ "mouse": 15769,
+ "standard": 15770,
+ "Single": 15771,
+ "▁bol": 15772,
+ "isis": 15773,
+ "▁fruit": 15774,
+ "course": 15775,
+ "itants": 15776,
+ "▁étaient": 15777,
+ "TextField": 15778,
+ "▁фон": 15779,
+ "▁aircraft": 15780,
+ "▁ISSN": 15781,
+ "▁western": 15782,
+ "▁representing": 15783,
+ "Esp": 15784,
+ "▁Else": 15785,
+ "▁sizes": 15786,
+ "▁satisfied": 15787,
+ "otos": 15788,
+ "UD": 15789,
+ "Final": 15790,
+ "ój": 15791,
+ "ève": 15792,
+ "▁Roy": 15793,
+ "ffen": 15794,
+ "▁salt": 15795,
+ "▁Label": 15796,
+ "Sk": 15797,
+ "▁кре": 15798,
+ "▁Литература": 15799,
+ "▁см": 15800,
+ "Attributes": 15801,
+ "aye": 15802,
+ "ськ": 15803,
+ "▁высо": 15804,
+ "-)": 15805,
+ "oses": 15806,
+ "calcul": 15807,
+ "▁Cannot": 15808,
+ "Generic": 15809,
+ "emo": 15810,
+ "▁Autor": 15811,
+ "лён": 15812,
+ "лага": 15813,
+ "vote": 15814,
+ "licates": 15815,
+ "rus": 15816,
+ "éli": 15817,
+ "opf": 15818,
+ "atique": 15819,
+ "scala": 15820,
+ "▁Ohio": 15821,
+ "▁Britann": 15822,
+ "▁bef": 15823,
+ "▁Евро": 15824,
+ "▁Career": 15825,
+ "isée": 15826,
+ "ót": 15827,
+ "bose": 15828,
+ "▁Бер": 15829,
+ "▁Controller": 15830,
+ "pole": 15831,
+ "▁allen": 15832,
+ "▁hack": 15833,
+ "▁extent": 15834,
+ "▁calci": 15835,
+ "Mer": 15836,
+ "▁summary": 15837,
+ "Mart": 15838,
+ "▁historical": 15839,
+ "imat": 15840,
+ "bud": 15841,
+ "▁FOR": 15842,
+ "export": 15843,
+ "edi": 15844,
+ "Mapping": 15845,
+ "▁Ay": 15846,
+ "▁Ruby": 15847,
+ "▁definitions": 15848,
+ "▁{$": 15849,
+ "▁yours": 15850,
+ "rias": 15851,
+ "Touch": 15852,
+ "▁Gaz": 15853,
+ "▁Autom": 15854,
+ "▁истори": 15855,
+ "▁delen": 15856,
+ "▁Kinder": 15857,
+ "}}%": 15858,
+ "▁performing": 15859,
+ "FR": 15860,
+ "▁Sig": 15861,
+ "▁Brad": 15862,
+ "bras": 15863,
+ "▁Jar": 15864,
+ "pkg": 15865,
+ "wr": 15866,
+ "▁Pays": 15867,
+ "NC": 15868,
+ "▁opposed": 15869,
+ "Try": 15870,
+ "▁везе": 15871,
+ "▁Bog": 15872,
+ "▁writes": 15873,
+ "▁stories": 15874,
+ "▁mater": 15875,
+ "▁stagione": 15876,
+ "▁sty": 15877,
+ "▁compatible": 15878,
+ "heast": 15879,
+ "▁Guy": 15880,
+ "egründ": 15881,
+ "▁identifier": 15882,
+ "▁heads": 15883,
+ "пози": 15884,
+ "▁stup": 15885,
+ "▁tf": 15886,
+ "▁још": 15887,
+ "▁Hugh": 15888,
+ "▁cards": 15889,
+ "ovy": 15890,
+ "▁Toast": 15891,
+ "allas": 15892,
+ "▁públic": 15893,
+ "▁assumes": 15894,
+ "▁чемпиона": 15895,
+ "ycler": 15896,
+ "▁Junior": 15897,
+ "▁Fich": 15898,
+ "▁estimated": 15899,
+ "zerw": 15900,
+ "dialog": 15901,
+ "шин": 15902,
+ "shell": 15903,
+ "▁них": 15904,
+ "▁pitch": 15905,
+ "дол": 15906,
+ "outube": 15907,
+ "▁Santi": 15908,
+ "OnClickListener": 15909,
+ "▁Magyar": 15910,
+ "▁vue": 15911,
+ "ião": 15912,
+ "▁`#": 15913,
+ "collect": 15914,
+ "▁Rou": 15915,
+ "analysis": 15916,
+ "istrzost": 15917,
+ "▁Digital": 15918,
+ "▁crist": 15919,
+ "riere": 15920,
+ "▁campo": 15921,
+ "Us": 15922,
+ "▁circa": 15923,
+ "▁Component": 15924,
+ "▁NSString": 15925,
+ "pd": 15926,
+ "▁prince": 15927,
+ "▁invoke": 15928,
+ "▁Marine": 15929,
+ "Allow": 15930,
+ "estic": 15931,
+ "ристи": 15932,
+ "bone": 15933,
+ "туры": 15934,
+ "▁passion": 15935,
+ "áció": 15936,
+ "▁orn": 15937,
+ "вед": 15938,
+ "▁invari": 15939,
+ "▁ні": 15940,
+ "Remove": 15941,
+ "encies": 15942,
+ "ilib": 15943,
+ "▁Director": 15944,
+ "\"\"": 15945,
+ "▁Conse": 15946,
+ "googleapis": 15947,
+ "ók": 15948,
+ "▁Укра": 15949,
+ "▁Having": 15950,
+ "Domain": 15951,
+ "ierz": 15952,
+ "нологи": 15953,
+ "Cho": 15954,
+ "undefined": 15955,
+ "alloc": 15956,
+ "▁pied": 15957,
+ "▁fraction": 15958,
+ "bia": 15959,
+ "▁поло": 15960,
+ "ugno": 15961,
+ "minister": 15962,
+ "▁principale": 15963,
+ "▁refused": 15964,
+ "browser": 15965,
+ "*,": 15966,
+ "▁Hospital": 15967,
+ "▁universal": 15968,
+ "▁Ernst": 15969,
+ "who": 15970,
+ "▁Gard": 15971,
+ "'_": 15972,
+ "conde": 15973,
+ "▁[{": 15974,
+ "sob": 15975,
+ "▁Crit": 15976,
+ "▁декабря": 15977,
+ "▁punto": 15978,
+ "▁eingesetzt": 15979,
+ "▁tör": 15980,
+ "▁Ni": 15981,
+ "▁worry": 15982,
+ "▁legend": 15983,
+ "▁були": 15984,
+ "▁komm": 15985,
+ "rijk": 15986,
+ "effect": 15987,
+ "Ori": 15988,
+ "RES": 15989,
+ "▁Peters": 15990,
+ "▁Baron": 15991,
+ "▁Got": 15992,
+ "▁honest": 15993,
+ "äre": 15994,
+ "ász": 15995,
+ "▁noble": 15996,
+ "▁conclusion": 15997,
+ "▁formatting": 15998,
+ "▁otto": 15999,
+ "▁deleg": 16000,
+ "мб": 16001,
+ "ptop": 16002,
+ "▁sends": 16003,
+ "urname": 16004,
+ "▁festival": 16005,
+ ",": 16006,
+ "рус": 16007,
+ "▁doch": 16008,
+ "subject": 16009,
+ "▁careful": 16010,
+ "quent": 16011,
+ "▁Load": 16012,
+ "temperaturen": 16013,
+ "▁rue": 16014,
+ "Memory": 16015,
+ "ța": 16016,
+ "iona": 16017,
+ "▁dentro": 16018,
+ "▁begann": 16019,
+ "▁Aqu": 16020,
+ "▁scientific": 16021,
+ "kań": 16022,
+ "лок": 16023,
+ "elde": 16024,
+ "▁Those": 16025,
+ "quier": 16026,
+ "actér": 16027,
+ "▁Auflage": 16028,
+ ")'": 16029,
+ "▁gradient": 16030,
+ "integer": 16031,
+ "▁Import": 16032,
+ "SK": 16033,
+ "▁Status": 16034,
+ "▁explo": 16035,
+ "AE": 16036,
+ "Shell": 16037,
+ "▁Paulo": 16038,
+ ".»": 16039,
+ "}": 16040,
+ "flex": 16041,
+ "▁комп": 16042,
+ "onden": 16043,
+ "accept": 16044,
+ "▁miejsce": 16045,
+ "Hub": 16046,
+ "alleng": 16047,
+ "WN": 16048,
+ "▁implementing": 16049,
+ "▁лу": 16050,
+ "▁confusing": 16051,
+ "▁Install": 16052,
+ "▁rou": 16053,
+ "▁проек": 16054,
+ "Accessor": 16055,
+ "љашње": 16056,
+ "odio": 16057,
+ "▁applies": 16058,
+ "ющий": 16059,
+ "▁Mundial": 16060,
+ "État": 16061,
+ "ietnam": 16062,
+ "hum": 16063,
+ "▁сбор": 16064,
+ "ordinate": 16065,
+ "France": 16066,
+ "▁prend": 16067,
+ "eltemperaturen": 16068,
+ "▁trabaj": 16069,
+ "Axis": 16070,
+ "▁мно": 16071,
+ "primary": 16072,
+ "▁Seite": 16073,
+ "permission": 16074,
+ "▁orden": 16075,
+ "since": 16076,
+ "▁ic": 16077,
+ "▁Brazil": 16078,
+ "▁bare": 16079,
+ "▁Nar": 16080,
+ "▁Jur": 16081,
+ "▁freedom": 16082,
+ "▁medical": 16083,
+ "ischof": 16084,
+ "▁сп": 16085,
+ "ież": 16086,
+ "▁bootstrap": 16087,
+ "▁…": 16088,
+ "▁facil": 16089,
+ "cord": 16090,
+ "ване": 16091,
+ "▁Allen": 16092,
+ "avid": 16093,
+ "ingham": 16094,
+ "zas": 16095,
+ "▁inspect": 16096,
+ "itten": 16097,
+ "osti": 16098,
+ "uh": 16099,
+ "cé": 16100,
+ "▁#####": 16101,
+ "cius": 16102,
+ "omy": 16103,
+ "▁Seine": 16104,
+ "bres": 16105,
+ "▁genus": 16106,
+ "Other": 16107,
+ "▁Golden": 16108,
+ "mul": 16109,
+ "▁Спољашње": 16110,
+ "▁gennaio": 16111,
+ "▁carefully": 16112,
+ "aal": 16113,
+ "▁analyt": 16114,
+ "neur": 16115,
+ "▁stretch": 16116,
+ "▁Occ": 16117,
+ "olas": 16118,
+ "▁firebase": 16119,
+ "▁expecting": 16120,
+ "basic": 16121,
+ "condition": 16122,
+ "prov": 16123,
+ "▁Wasser": 16124,
+ "▁concaten": 16125,
+ "▁evil": 16126,
+ "▁coefficients": 16127,
+ "West": 16128,
+ "iry": 16129,
+ "phas": 16130,
+ "▁Jam": 16131,
+ "fois": 16132,
+ "▁consid": 16133,
+ "▁mainten": 16134,
+ "nim": 16135,
+ "esser": 16136,
+ "esz": 16137,
+ "unta": 16138,
+ "uest": 16139,
+ "▁credentials": 16140,
+ "_;": 16141,
+ "Dim": 16142,
+ "преде": 16143,
+ "▁Bü": 16144,
+ "built": 16145,
+ "▁Academ": 16146,
+ "▁audi": 16147,
+ "▁två": 16148,
+ "inand": 16149,
+ "▁Theater": 16150,
+ "▁genre": 16151,
+ "ços": 16152,
+ "gresql": 16153,
+ "▁weap": 16154,
+ "▁Rab": 16155,
+ "▁’": 16156,
+ "▁adult": 16157,
+ "▁dém": 16158,
+ "``": 16159,
+ "▁stabil": 16160,
+ "▁corresponds": 16161,
+ "▁Eastern": 16162,
+ "unnel": 16163,
+ "Worker": 16164,
+ "▁coh": 16165,
+ "лка": 16166,
+ "▁Massachusetts": 16167,
+ "pio": 16168,
+ "▁ports": 16169,
+ "agg": 16170,
+ "▁Debug": 16171,
+ "▁breath": 16172,
+ "MIN": 16173,
+ "Variable": 16174,
+ "batch": 16175,
+ "ссе": 16176,
+ "▁preg": 16177,
+ "▁roles": 16178,
+ "paste": 16179,
+ "▁referenced": 16180,
+ "adrat": 16181,
+ "чё": 16182,
+ "binom": 16183,
+ "▁defining": 16184,
+ "▁Budapest": 16185,
+ "▁дви": 16186,
+ "▁taught": 16187,
+ "▁hole": 16188,
+ "▁quella": 16189,
+ "Msg": 16190,
+ "aska": 16191,
+ "scan": 16192,
+ "▁propose": 16193,
+ "▁Биография": 16194,
+ "{{\\": 16195,
+ "textt": 16196,
+ "▁Alb": 16197,
+ "▁Sydney": 16198,
+ "▁backup": 16199,
+ "▁credit": 16200,
+ "▁францу": 16201,
+ "stats": 16202,
+ "\\\":": 16203,
+ "▁Пере": 16204,
+ "▁accordingly": 16205,
+ "▁Len": 16206,
+ "zna": 16207,
+ "▁Regional": 16208,
+ "▁изда": 16209,
+ "▁jú": 16210,
+ "histor": 16211,
+ "▁entities": 16212,
+ "Star": 16213,
+ "оне": 16214,
+ "']['": 16215,
+ "▁Nova": 16216,
+ "die": 16217,
+ "▁`'": 16218,
+ "▁obten": 16219,
+ "anst": 16220,
+ "▁Relig": 16221,
+ "▁trig": 16222,
+ "▁режи": 16223,
+ "▁Personal": 16224,
+ "▁tone": 16225,
+ "▁aid": 16226,
+ "Visual": 16227,
+ "Submit": 16228,
+ "▁moves": 16229,
+ "▁Bridge": 16230,
+ "▁Boy": 16231,
+ "▁accurate": 16232,
+ "osta": 16233,
+ "atto": 16234,
+ "▁defeated": 16235,
+ "▁datab": 16236,
+ "ginx": 16237,
+ "▁Liv": 16238,
+ "lywood": 16239,
+ "TW": 16240,
+ "rium": 16241,
+ "ipped": 16242,
+ "Fail": 16243,
+ "REQUEST": 16244,
+ "▁ignor": 16245,
+ "▁sitting": 16246,
+ "▁molto": 16247,
+ "▁endpoint": 16248,
+ "ución": 16249,
+ "▁collections": 16250,
+ "▁Ту": 16251,
+ "tembre": 16252,
+ "▁nécess": 16253,
+ "▁interact": 16254,
+ "▁otras": 16255,
+ "▁curr": 16256,
+ "▁tracks": 16257,
+ "▁família": 16258,
+ "▁numerical": 16259,
+ "legt": 16260,
+ "]/": 16261,
+ "▁Mario": 16262,
+ "▁tort": 16263,
+ "bg": 16264,
+ "ssl": 16265,
+ "texttt": 16266,
+ "▁spark": 16267,
+ "дии": 16268,
+ "▁probable": 16269,
+ "%%%%": 16270,
+ "phia": 16271,
+ "],[": 16272,
+ "▁boxes": 16273,
+ "▁academ": 16274,
+ "▁Slo": 16275,
+ "äude": 16276,
+ "▁witness": 16277,
+ "▁editing": 16278,
+ "лина": 16279,
+ "▁lookup": 16280,
+ "▁Buck": 16281,
+ "дня": 16282,
+ "▁jours": 16283,
+ "++){": 16284,
+ "▁indices": 16285,
+ "▁flight": 16286,
+ "▁computation": 16287,
+ "Plugin": 16288,
+ "▁realize": 16289,
+ "isset": 16290,
+ "▁derivative": 16291,
+ "linewidth": 16292,
+ "bund": 16293,
+ "▁thor": 16294,
+ "▁.=": 16295,
+ "▁sí": 16296,
+ "▁Click": 16297,
+ "▁Sebast": 16298,
+ ">'": 16299,
+ "havior": 16300,
+ "lei": 16301,
+ "ulf": 16302,
+ "▁geometry": 16303,
+ "prev": 16304,
+ "empl": 16305,
+ "▁Lé": 16306,
+ "anson": 16307,
+ "▁Alice": 16308,
+ "prototype": 16309,
+ "READ": 16310,
+ "icular": 16311,
+ "▁бі": 16312,
+ "▁deutsche": 16313,
+ "▁Represent": 16314,
+ "sites": 16315,
+ "▁Mean": 16316,
+ "▁diss": 16317,
+ "▁Zur": 16318,
+ "▁през": 16319,
+ "PAR": 16320,
+ "▁'#": 16321,
+ "▁Dra": 16322,
+ "сон": 16323,
+ "▁steht": 16324,
+ "markt": 16325,
+ "▁ease": 16326,
+ "Drawing": 16327,
+ "=%": 16328,
+ "Stop": 16329,
+ "▁serving": 16330,
+ "▁także": 16331,
+ "▁DNS": 16332,
+ "▁literal": 16333,
+ "Die": 16334,
+ "▁вос": 16335,
+ "▁senior": 16336,
+ "acion": 16337,
+ "▁ubuntu": 16338,
+ "▁Frankfurt": 16339,
+ "▁Sunday": 16340,
+ "áb": 16341,
+ "▁journey": 16342,
+ "issa": 16343,
+ "berry": 16344,
+ "▁sep": 16345,
+ "▁ion": 16346,
+ "wert": 16347,
+ "ország": 16348,
+ "serve": 16349,
+ "▁Milano": 16350,
+ "▁века": 16351,
+ "рах": 16352,
+ "▁июля": 16353,
+ "▁manera": 16354,
+ "▁stations": 16355,
+ "▁adopted": 16356,
+ "▁anybody": 16357,
+ "VERSION": 16358,
+ "FE": 16359,
+ "dorf": 16360,
+ "...,": 16361,
+ "▁образова": 16362,
+ "Logger": 16363,
+ "фициаль": 16364,
+ "WRITE": 16365,
+ "▁ham": 16366,
+ "▁Future": 16367,
+ "oten": 16368,
+ "▁AG": 16369,
+ "▁trained": 16370,
+ "▁Nich": 16371,
+ "▁university": 16372,
+ "▁Olympics": 16373,
+ "▁doit": 16374,
+ "▁cultural": 16375,
+ "Conf": 16376,
+ "▁Conference": 16377,
+ "orno": 16378,
+ "▁MP": 16379,
+ "▁bou": 16380,
+ "cin": 16381,
+ "High": 16382,
+ "annte": 16383,
+ "▁displaying": 16384,
+ "▁chapter": 16385,
+ "▁Frauen": 16386,
+ "▁realized": 16387,
+ "▁attempted": 16388,
+ "▁preferred": 16389,
+ "Dat": 16390,
+ "▁trouve": 16391,
+ "▁intention": 16392,
+ "▁Notice": 16393,
+ "timestamp": 16394,
+ "*(": 16395,
+ "▁Ша": 16396,
+ "anas": 16397,
+ "cla": 16398,
+ "isz": 16399,
+ "tbl": 16400,
+ "Arr": 16401,
+ "▁inverse": 16402,
+ "▁terrible": 16403,
+ "▁occupied": 16404,
+ "JAX": 16405,
+ "<-": 16406,
+ "▁Philosoph": 16407,
+ "▁Corps": 16408,
+ "builder": 16409,
+ "▁begins": 16410,
+ "▁census": 16411,
+ ".’": 16412,
+ "▁proven": 16413,
+ "metric": 16414,
+ "▁increases": 16415,
+ "wich": 16416,
+ "▁ABC": 16417,
+ "projects": 16418,
+ "▁Thor": 16419,
+ "▁confidence": 16420,
+ "▁ufficiale": 16421,
+ "elm": 16422,
+ "▁garden": 16423,
+ "▁robust": 16424,
+ "▁così": 16425,
+ "iedz": 16426,
+ "▁Islam": 16427,
+ "▁Address": 16428,
+ "▁divide": 16429,
+ "▁Eu": 16430,
+ "catal": 16431,
+ "detail": 16432,
+ "ependant": 16433,
+ "fg": 16434,
+ "▁bew": 16435,
+ "▁fis": 16436,
+ "▁BO": 16437,
+ "▁wsp": 16438,
+ "▁pipeline": 16439,
+ "hd": 16440,
+ "▁Session": 16441,
+ "länd": 16442,
+ "iveau": 16443,
+ "estr": 16444,
+ "▁particle": 16445,
+ "▁laravel": 16446,
+ "pic": 16447,
+ "▁nau": 16448,
+ "▁fins": 16449,
+ "▁Vil": 16450,
+ "▁fus": 16451,
+ "▁quasi": 16452,
+ "operation": 16453,
+ "▁aller": 16454,
+ "▁analy": 16455,
+ "▁Он": 16456,
+ "▁Mes": 16457,
+ "▁опера": 16458,
+ "▁handled": 16459,
+ "▁deprec": 16460,
+ "tto": 16461,
+ "▁Ek": 16462,
+ "▁stran": 16463,
+ "▁anglais": 16464,
+ "jure": 16465,
+ "▁Silver": 16466,
+ "▁closely": 16467,
+ "enkins": 16468,
+ "anos": 16469,
+ "sted": 16470,
+ "▁сентября": 16471,
+ "brand": 16472,
+ "ньо": 16473,
+ "▁présent": 16474,
+ "rok": 16475,
+ "mount": 16476,
+ "▁Anthony": 16477,
+ "▁Furthermore": 16478,
+ "inha": 16479,
+ "▁архи": 16480,
+ "▁разли": 16481,
+ "▁октября": 16482,
+ "▁pint": 16483,
+ "ný": 16484,
+ "pts": 16485,
+ "▁italien": 16486,
+ "▁реги": 16487,
+ "лез": 16488,
+ "дина": 16489,
+ "atherine": 16490,
+ "Internal": 16491,
+ "Question": 16492,
+ "▁settlement": 16493,
+ "▁Все": 16494,
+ "▁folders": 16495,
+ "дри": 16496,
+ "▁valor": 16497,
+ "▁Miller": 16498,
+ "▁Assert": 16499,
+ "▁patient": 16500,
+ "▁Nieder": 16501,
+ "▁EP": 16502,
+ "▁Agr": 16503,
+ "▁onde": 16504,
+ "▁scop": 16505,
+ "sequence": 16506,
+ "▁PL": 16507,
+ "▁seek": 16508,
+ "javase": 16509,
+ "▁Vector": 16510,
+ "▁ná": 16511,
+ "▁categoría": 16512,
+ "clone": 16513,
+ "NR": 16514,
+ "available": 16515,
+ "▁Besch": 16516,
+ "▁eclipse": 16517,
+ "wicklung": 16518,
+ "deploy": 16519,
+ "enie": 16520,
+ "▁\")": 16521,
+ "äst": 16522,
+ "▁sync": 16523,
+ "CODE": 16524,
+ "▁Че": 16525,
+ "▁floating": 16526,
+ "/`": 16527,
+ "▁retired": 16528,
+ "deb": 16529,
+ "▁particul": 16530,
+ "▁collected": 16531,
+ "▁downloaded": 16532,
+ "nice": 16533,
+ "▁Buffer": 16534,
+ "▁Account": 16535,
+ "▁maggio": 16536,
+ "▁реда": 16537,
+ "▁sales": 16538,
+ "▁statunitense": 16539,
+ "▁Ki": 16540,
+ "▁Ferr": 16541,
+ "Lock": 16542,
+ "▁Isabel": 16543,
+ "clar": 16544,
+ "▁pov": 16545,
+ "atra": 16546,
+ "▁Frau": 16547,
+ "▁sorting": 16548,
+ "▁phrase": 16549,
+ "▁апреля": 16550,
+ "▁деятель": 16551,
+ "▁André": 16552,
+ "definition": 16553,
+ "writing": 16554,
+ "éré": 16555,
+ "щу": 16556,
+ "▁Ord": 16557,
+ "▁rum": 16558,
+ "▁Turk": 16559,
+ "▁Ivan": 16560,
+ "theless": 16561,
+ "▁ги": 16562,
+ "▁sake": 16563,
+ "▁Based": 16564,
+ "deck": 16565,
+ "orus": 16566,
+ "▁tutti": 16567,
+ "▁blan": 16568,
+ "▁Пу": 16569,
+ "Detail": 16570,
+ "▁Но": 16571,
+ "▁Sky": 16572,
+ "▁près": 16573,
+ "мой": 16574,
+ "coln": 16575,
+ "ческой": 16576,
+ "eti": 16577,
+ "▁arrow": 16578,
+ "▁Cha": 16579,
+ "chmark": 16580,
+ "œur": 16581,
+ "fab": 16582,
+ "куль": 16583,
+ "GridView": 16584,
+ "▁Background": 16585,
+ "sn": 16586,
+ "▁seguito": 16587,
+ "▁nic": 16588,
+ "cou": 16589,
+ "тів": 16590,
+ "▁bzw": 16591,
+ "addEventListener": 16592,
+ "sync": 16593,
+ "azzo": 16594,
+ "abstract": 16595,
+ "assets": 16596,
+ "▁Dru": 16597,
+ "зд": 16598,
+ "ordnet": 16599,
+ "▁bigger": 16600,
+ "▁initialized": 16601,
+ "каз": 16602,
+ "ogene": 16603,
+ "viously": 16604,
+ "▁guid": 16605,
+ "scheidung": 16606,
+ "▁Zent": 16607,
+ "▁frames": 16608,
+ "rieben": 16609,
+ "▁issued": 16610,
+ "▁dow": 16611,
+ "▁describes": 16612,
+ "ilst": 16613,
+ "▁criteria": 16614,
+ "▁gentleman": 16615,
+ "Basic": 16616,
+ "nez": 16617,
+ "Dev": 16618,
+ "Move": 16619,
+ "▁estaba": 16620,
+ "▁settembre": 16621,
+ "circle": 16622,
+ "▁fais": 16623,
+ "▁myst": 16624,
+ "▁archiv": 16625,
+ "dynamic": 16626,
+ "jà": 16627,
+ "itas": 16628,
+ "▁який": 16629,
+ "▁dor": 16630,
+ "▁Amazon": 16631,
+ "▁neces": 16632,
+ "▁Marcel": 16633,
+ "▁ella": 16634,
+ "рок": 16635,
+ "▁Pennsylvania": 16636,
+ "cular": 16637,
+ "Pack": 16638,
+ "itage": 16639,
+ "▁Burn": 16640,
+ "▁RO": 16641,
+ "▁они": 16642,
+ "~$": 16643,
+ "TeX": 16644,
+ "assign": 16645,
+ "▁beat": 16646,
+ "idense": 16647,
+ "acent": 16648,
+ "Alert": 16649,
+ "▁strateg": 16650,
+ "▁månaden": 16651,
+ "LOC": 16652,
+ "▁catalog": 16653,
+ "printStackTrace": 16654,
+ "()).": 16655,
+ "usted": 16656,
+ "▁Framework": 16657,
+ "ECK": 16658,
+ "▁até": 16659,
+ "Framework": 16660,
+ "▁attacks": 16661,
+ "▁Bert": 16662,
+ "▁тран": 16663,
+ ":%": 16664,
+ "arsi": 16665,
+ "notation": 16666,
+ "▁logical": 16667,
+ "weet": 16668,
+ "▁visited": 16669,
+ "bru": 16670,
+ "▁surprise": 16671,
+ "^^": 16672,
+ "inale": 16673,
+ "remote": 16674,
+ "'},": 16675,
+ "Syntax": 16676,
+ "iane": 16677,
+ "onnen": 16678,
+ "▁breaking": 16679,
+ "parser": 16680,
+ "apk": 16681,
+ "▁Miguel": 16682,
+ "▁§": 16683,
+ "▁acting": 16684,
+ "▁gebru": 16685,
+ "AtIndex": 16686,
+ "ються": 16687,
+ "▁offers": 16688,
+ "▁prac": 16689,
+ "▁grant": 16690,
+ "ternoon": 16691,
+ "▁acquired": 16692,
+ "▁Ny": 16693,
+ "▁comma": 16694,
+ "ník": 16695,
+ "▁Step": 16696,
+ "inners": 16697,
+ "▁SA": 16698,
+ "▁wat": 16699,
+ "days": 16700,
+ "▁rectangle": 16701,
+ "dar": 16702,
+ "▁trac": 16703,
+ "▁Indones": 16704,
+ "▁feedback": 16705,
+ "▁breaks": 16706,
+ "partition": 16707,
+ "icans": 16708,
+ "▁Notices": 16709,
+ "▁improved": 16710,
+ "phan": 16711,
+ "▁differential": 16712,
+ "scripts": 16713,
+ "▁XIII": 16714,
+ "▁Labor": 16715,
+ "▁precision": 16716,
+ "▁seed": 16717,
+ "bundle": 16718,
+ "idents": 16719,
+ "hre": 16720,
+ "▁Douglas": 16721,
+ "uld": 16722,
+ "▁secondary": 16723,
+ "▁brig": 16724,
+ "▁confirmed": 16725,
+ "▁claims": 16726,
+ "Role": 16727,
+ "▁Jewish": 16728,
+ "▁před": 16729,
+ "▁hotel": 16730,
+ "▁compte": 16731,
+ "▁recursive": 16732,
+ "](#)": 16733,
+ "▁rotate": 16734,
+ "▁chrome": 16735,
+ "inea": 16736,
+ "%;\r": 16737,
+ "▁Environment": 16738,
+ "platz": 16739,
+ "▁Single": 16740,
+ "▁sevent": 16741,
+ "▁posting": 16742,
+ "▁dealing": 16743,
+ "parameters": 16744,
+ "граф": 16745,
+ "Authentication": 16746,
+ "touch": 16747,
+ "Az": 16748,
+ "▁gray": 16749,
+ "encing": 16750,
+ "boldmath": 16751,
+ "▁сайте": 16752,
+ "▁Za": 16753,
+ "anje": 16754,
+ "▁polar": 16755,
+ "▁ули": 16756,
+ "kil": 16757,
+ "▁hover": 16758,
+ "▁REST": 16759,
+ "▁Come": 16760,
+ "jb": 16761,
+ "▁Georgia": 16762,
+ "▁Estado": 16763,
+ "OutputStream": 16764,
+ "ћи": 16765,
+ "▁dump": 16766,
+ "▁Age": 16767,
+ "▁swo": 16768,
+ "mobile": 16769,
+ "occup": 16770,
+ "шего": 16771,
+ "▁constitution": 16772,
+ "good": 16773,
+ "aku": 16774,
+ "▁анг": 16775,
+ "ieck": 16776,
+ "▁Psych": 16777,
+ "▁roots": 16778,
+ "▁vest": 16779,
+ "▁годах": 16780,
+ "▁República": 16781,
+ "▁pian": 16782,
+ "igration": 16783,
+ "▁préc": 16784,
+ "▁generates": 16785,
+ "LY": 16786,
+ "(`": 16787,
+ "▁=~": 16788,
+ "шения": 16789,
+ "▁Rah": 16790,
+ "▁connecting": 16791,
+ "ží": 16792,
+ "▁fő": 16793,
+ "▁appel": 16794,
+ "▁Railway": 16795,
+ "гли": 16796,
+ "▁développ": 16797,
+ "▁apo": 16798,
+ "fran": 16799,
+ "▁immediate": 16800,
+ "вого": 16801,
+ "Runner": 16802,
+ "äg": 16803,
+ "Something": 16804,
+ "▁généra": 16805,
+ "EventArgs": 16806,
+ "inction": 16807,
+ "gly": 16808,
+ "▁Due": 16809,
+ "▁prost": 16810,
+ "▁referring": 16811,
+ "▁jog": 16812,
+ "▁executable": 16813,
+ "▁Dream": 16814,
+ "acs": 16815,
+ "▁Cole": 16816,
+ "ampf": 16817,
+ "▁Bis": 16818,
+ "▁июня": 16819,
+ "lieder": 16820,
+ "тек": 16821,
+ "▁vb": 16822,
+ "▁mom": 16823,
+ "▁:(": 16824,
+ "▁dernier": 16825,
+ "'=>": 16826,
+ "▁этого": 16827,
+ "▁neue": 16828,
+ "▁Ча": 16829,
+ "▁weitere": 16830,
+ "▁alleg": 16831,
+ "▁reality": 16832,
+ "▁judge": 16833,
+ "▁Balt": 16834,
+ "▁thin": 16835,
+ "▁Ged": 16836,
+ "ieval": 16837,
+ "mx": 16838,
+ "ціональ": 16839,
+ "▁выпу": 16840,
+ "▁IX": 16841,
+ "▁blind": 16842,
+ "▁Motor": 16843,
+ "▁ша": 16844,
+ "▁approximation": 16845,
+ "dam": 16846,
+ "▁fog": 16847,
+ "кор": 16848,
+ "▁Writ": 16849,
+ "▁ling": 16850,
+ "▁писа": 16851,
+ "▁Mars": 16852,
+ "otti": 16853,
+ "Enum": 16854,
+ "▁Trib": 16855,
+ "▁merc": 16856,
+ "zung": 16857,
+ "vanced": 16858,
+ "cfg": 16859,
+ "нах": 16860,
+ "schen": 16861,
+ "\"].": 16862,
+ "bek": 16863,
+ "▁ster": 16864,
+ "jp": 16865,
+ "▁Rap": 16866,
+ "▁recording": 16867,
+ "▁peint": 16868,
+ "▁lets": 16869,
+ "änge": 16870,
+ ">\";": 16871,
+ "▁місце": 16872,
+ "▁caval": 16873,
+ "▁CSV": 16874,
+ "▁entstand": 16875,
+ "▁helper": 16876,
+ "endet": 16877,
+ "▁Gram": 16878,
+ "▁Diego": 16879,
+ "▁Bishop": 16880,
+ "TAG": 16881,
+ "▁ecc": 16882,
+ "▁Een": 16883,
+ "▁AV": 16884,
+ "City": 16885,
+ "▁Guide": 16886,
+ "hind": 16887,
+ "rical": 16888,
+ "▁Основ": 16889,
+ "Bus": 16890,
+ "▁zunächst": 16891,
+ "▁tick": 16892,
+ "▁Colonel": 16893,
+ "Thanks": 16894,
+ "▁ferm": 16895,
+ "▁granted": 16896,
+ "▁threshold": 16897,
+ "omorphic": 16898,
+ "▁Hun": 16899,
+ "enis": 16900,
+ "▁прав": 16901,
+ "▁які": 16902,
+ "PG": 16903,
+ "▁ws": 16904,
+ "▁technical": 16905,
+ "estro": 16906,
+ "klär": 16907,
+ "vars": 16908,
+ "ocrat": 16909,
+ "▁општи": 16910,
+ "onso": 16911,
+ "iba": 16912,
+ "▁Save": 16913,
+ "▁programa": 16914,
+ "▁въ": 16915,
+ "▁invån": 16916,
+ ">()": 16917,
+ "▁mejor": 16918,
+ "▁слова": 16919,
+ "▁replacement": 16920,
+ "▁impr": 16921,
+ "▁Francesco": 16922,
+ "▁Hotel": 16923,
+ "▁UPDATE": 16924,
+ "▁музы": 16925,
+ "ugs": 16926,
+ "vard": 16927,
+ "▁faz": 16928,
+ "inton": 16929,
+ "▁arts": 16930,
+ "▁Ky": 16931,
+ "▁Ils": 16932,
+ "▁sera": 16933,
+ "▁Volume": 16934,
+ "▁giugno": 16935,
+ "▁asym": 16936,
+ "▁Pir": 16937,
+ "▁NAS": 16938,
+ "▁Tam": 16939,
+ "ěl": 16940,
+ "Sequ": 16941,
+ "kmal": 16942,
+ "▁Eins": 16943,
+ "▁компа": 16944,
+ "obe": 16945,
+ "oor": 16946,
+ "▁heap": 16947,
+ "ctl": 16948,
+ "▁separately": 16949,
+ "reader": 16950,
+ "▁significantly": 16951,
+ "▁Lag": 16952,
+ "notes": 16953,
+ "▁sele": 16954,
+ "▁dedicated": 16955,
+ "▁Host": 16956,
+ "choice": 16957,
+ "wing": 16958,
+ "▁Titel": 16959,
+ "▁befindet": 16960,
+ "large": 16961,
+ "▁conten": 16962,
+ "JavaScript": 16963,
+ "▁deser": 16964,
+ "▁Gordon": 16965,
+ "спе": 16966,
+ "▁patri": 16967,
+ "▁Random": 16968,
+ "▁Returns": 16969,
+ "ым": 16970,
+ "рома": 16971,
+ "▁Studies": 16972,
+ "Sl": 16973,
+ "▁frü": 16974,
+ "TEXT": 16975,
+ "inate": 16976,
+ "▁Tol": 16977,
+ "▁everywhere": 16978,
+ "arta": 16979,
+ "▁orbit": 16980,
+ "▁Aires": 16981,
+ "▁Iss": 16982,
+ "▁też": 16983,
+ "▁diverse": 16984,
+ "▁numeric": 16985,
+ "maz": 16986,
+ "▁mise": 16987,
+ "▁battery": 16988,
+ "▁Akadem": 16989,
+ "нение": 16990,
+ "▁simultane": 16991,
+ "▁Dead": 16992,
+ "▁clust": 16993,
+ "▁otro": 16994,
+ "▁cerca": 16995,
+ "()`,": 16996,
+ "roz": 16997,
+ "ăt": 16998,
+ "▁MO": 16999,
+ "riften": 17000,
+ "important": 17001,
+ "▁jeho": 17002,
+ "▁findViewById": 17003,
+ "▁consequence": 17004,
+ "▁measured": 17005,
+ "ishes": 17006,
+ "▁sze": 17007,
+ "iendo": 17008,
+ "▁Wahl": 17009,
+ "strip": 17010,
+ "ARD": 17011,
+ "▁opacity": 17012,
+ "WORD": 17013,
+ "▁Ві": 17014,
+ "▁Location": 17015,
+ "rai": 17016,
+ "пен": 17017,
+ "▁rif": 17018,
+ "aussian": 17019,
+ "FileName": 17020,
+ "▁disco": 17021,
+ "ilen": 17022,
+ "▁vagy": 17023,
+ "licity": 17024,
+ "Border": 17025,
+ "▁Track": 17026,
+ "бом": 17027,
+ "fact": 17028,
+ "oka": 17029,
+ "▁gior": 17030,
+ "▁XVII": 17031,
+ "▁där": 17032,
+ "Site": 17033,
+ "ało": 17034,
+ "ská": 17035,
+ "▁pixels": 17036,
+ "vity": 17037,
+ "jQuery": 17038,
+ "▁sculpt": 17039,
+ "▁cargo": 17040,
+ "▁directive": 17041,
+ "▁wal": 17042,
+ "▁conna": 17043,
+ "▁Through": 17044,
+ "▁этом": 17045,
+ "Static": 17046,
+ "omsnitt": 17047,
+ "▁rund": 17048,
+ "▁claimed": 17049,
+ "зня": 17050,
+ "sha": 17051,
+ "▁rag": 17052,
+ "crement": 17053,
+ "▁fünf": 17054,
+ "▁rival": 17055,
+ "rin": 17056,
+ "slash": 17057,
+ "▁thirty": 17058,
+ "sleep": 17059,
+ "ологи": 17060,
+ "SM": 17061,
+ "gate": 17062,
+ "izations": 17063,
+ "vik": 17064,
+ "▁bless": 17065,
+ "▁Illinois": 17066,
+ "▁TE": 17067,
+ "uting": 17068,
+ "▁solving": 17069,
+ "GER": 17070,
+ "▁XIV": 17071,
+ "▁Indians": 17072,
+ "express": 17073,
+ "▁Heil": 17074,
+ "▁mujer": 17075,
+ "▁invånare": 17076,
+ "']);": 17077,
+ "▁aur": 17078,
+ "boost": 17079,
+ "GO": 17080,
+ "▁nin": 17081,
+ "tok": 17082,
+ "god": 17083,
+ "oter": 17084,
+ ")$$": 17085,
+ "▁descend": 17086,
+ "рю": 17087,
+ "▁Language": 17088,
+ "▁diver": 17089,
+ "▁Assuming": 17090,
+ "▁frequent": 17091,
+ "чні": 17092,
+ "▁Biography": 17093,
+ ",[": 17094,
+ "urm": 17095,
+ "▁walked": 17096,
+ "▁federal": 17097,
+ "▁Michigan": 17098,
+ "▁facts": 17099,
+ "▁Integr": 17100,
+ "LES": 17101,
+ "▁Alan": 17102,
+ "▁coup": 17103,
+ "Ber": 17104,
+ "▁particles": 17105,
+ "ће": 17106,
+ "Inflater": 17107,
+ "+(": 17108,
+ "Bound": 17109,
+ "▁Sü": 17110,
+ "Audio": 17111,
+ "citet": 17112,
+ "yect": 17113,
+ "▁nr": 17114,
+ "xe": 17115,
+ "▁Brun": 17116,
+ "▁_,": 17117,
+ "avor": 17118,
+ "▁discipl": 17119,
+ "alm": 17120,
+ "▁ноября": 17121,
+ "▁SSL": 17122,
+ "▁Kaiser": 17123,
+ "▁recher": 17124,
+ "ygon": 17125,
+ "▁regardless": 17126,
+ "▁configur": 17127,
+ "▁unnecess": 17128,
+ "▁Clark": 17129,
+ "PHP": 17130,
+ "▁FALSE": 17131,
+ "▁pad": 17132,
+ "$}": 17133,
+ "▁valu": 17134,
+ "▁disease": 17135,
+ "▁maior": 17136,
+ "▁hommes": 17137,
+ "▁Edition": 17138,
+ "slant": 17139,
+ "▁ending": 17140,
+ "▁settled": 17141,
+ "urus": 17142,
+ "hed": 17143,
+ "Pattern": 17144,
+ "▁година": 17145,
+ "▁Philadel": 17146,
+ "tikzpicture": 17147,
+ "▁coal": 17148,
+ "▁sede": 17149,
+ "▁satisfies": 17150,
+ "▁trim": 17151,
+ "▁bat": 17152,
+ "▁américain": 17153,
+ "▁luglio": 17154,
+ "▁поча": 17155,
+ "ffff": 17156,
+ "▁Target": 17157,
+ "generate": 17158,
+ "▁Zie": 17159,
+ "ția": 17160,
+ "▁gard": 17161,
+ "▁workers": 17162,
+ "▁Job": 17163,
+ "▁urban": 17164,
+ "ahlen": 17165,
+ "▁Building": 17166,
+ "▁neu": 17167,
+ "▁chron": 17168,
+ "▁Earl": 17169,
+ "gro": 17170,
+ "USE": 17171,
+ "▁XII": 17172,
+ "▁wealth": 17173,
+ "inae": 17174,
+ "▁Бра": 17175,
+ "▁libert": 17176,
+ "iros": 17177,
+ ":$": 17178,
+ "lee": 17179,
+ "ieves": 17180,
+ "▁Justice": 17181,
+ "▁oil": 17182,
+ "▁Athlet": 17183,
+ "▁clo": 17184,
+ "Scale": 17185,
+ "▁lips": 17186,
+ "▁april": 17187,
+ "▁impression": 17188,
+ "▁perce": 17189,
+ "▁участи": 17190,
+ "vil": 17191,
+ "éch": 17192,
+ "▁equality": 17193,
+ "▁мет": 17194,
+ "▁annotation": 17195,
+ "ernal": 17196,
+ "▁Mach": 17197,
+ "▁intitul": 17198,
+ "problem": 17199,
+ "ющих": 17200,
+ "oplus": 17201,
+ "▁thousands": 17202,
+ "▁calculations": 17203,
+ "umps": 17204,
+ "▁triangle": 17205,
+ "phal": 17206,
+ "▁Dorf": 17207,
+ "▁dollars": 17208,
+ "▁denen": 17209,
+ "lès": 17210,
+ "olid": 17211,
+ "▁Results": 17212,
+ "▁Stadium": 17213,
+ "▁Desp": 17214,
+ "▁Eisen": 17215,
+ "imir": 17216,
+ "▁sotto": 17217,
+ "▁či": 17218,
+ "atable": 17219,
+ "orum": 17220,
+ "▁convergence": 17221,
+ "▁jeune": 17222,
+ "oking": 17223,
+ "▁живо": 17224,
+ "aining": 17225,
+ "pointer": 17226,
+ "culo": 17227,
+ "▁jsou": 17228,
+ "▁grab": 17229,
+ "akte": 17230,
+ "▁hoping": 17231,
+ "▁Mak": 17232,
+ "▁sag": 17233,
+ "origine": 17234,
+ "▁послед": 17235,
+ "▁Veg": 17236,
+ "▁theoret": 17237,
+ "▁Tru": 17238,
+ "nement": 17239,
+ "▁faces": 17240,
+ "Hor": 17241,
+ "Join": 17242,
+ "arel": 17243,
+ "▁около": 17244,
+ "However": 17245,
+ "▁catal": 17246,
+ "bourg": 17247,
+ "▁mysqli": 17248,
+ "acions": 17249,
+ "▁Initial": 17250,
+ "▁rain": 17251,
+ "iture": 17252,
+ "▁Sciences": 17253,
+ "▁Kreis": 17254,
+ ".__": 17255,
+ "▁cinq": 17256,
+ "▁Auß": 17257,
+ "ithmet": 17258,
+ "itors": 17259,
+ "amazon": 17260,
+ "▁gap": 17261,
+ "▁ignored": 17262,
+ "adv": 17263,
+ "кої": 17264,
+ "▁часть": 17265,
+ "▁corpor": 17266,
+ "цер": 17267,
+ "▁crime": 17268,
+ "uous": 17269,
+ "▁налази": 17270,
+ "DataFrame": 17271,
+ "води": 17272,
+ "Ign": 17273,
+ "▁Lincoln": 17274,
+ "▁menos": 17275,
+ "▁Luft": 17276,
+ "▁Lind": 17277,
+ "▁Cook": 17278,
+ "▁materials": 17279,
+ "apped": 17280,
+ "ignore": 17281,
+ "▁откры": 17282,
+ "fried": 17283,
+ "▁gouvernement": 17284,
+ "▁fired": 17285,
+ "▁screenshot": 17286,
+ "сен": 17287,
+ "▁[(": 17288,
+ "▁организа": 17289,
+ "Graphics": 17290,
+ "▁проти": 17291,
+ "▁phen": 17292,
+ "craft": 17293,
+ "▁brain": 17294,
+ "▁Como": 17295,
+ "▁Everything": 17296,
+ "anes": 17297,
+ "IGN": 17298,
+ "▁nederbörd": 17299,
+ "▁Forest": 17300,
+ "zahl": 17301,
+ "▁Among": 17302,
+ "Qt": 17303,
+ "▁togg": 17304,
+ "▁variant": 17305,
+ "▁hill": 17306,
+ "писи": 17307,
+ "colon": 17308,
+ "▁dicembre": 17309,
+ "гор": 17310,
+ "▁Wind": 17311,
+ "ünstler": 17312,
+ "▁=\\": 17313,
+ "saved": 17314,
+ "▁nej": 17315,
+ "unte": 17316,
+ "utto": 17317,
+ "▁recens": 17318,
+ "▁sick": 17319,
+ "▁desen": 17320,
+ "UST": 17321,
+ "▁worst": 17322,
+ "▁Angel": 17323,
+ "odox": 17324,
+ "▁Province": 17325,
+ "▁Maz": 17326,
+ "▁agreement": 17327,
+ "▁Bass": 17328,
+ "▁segunda": 17329,
+ "onces": 17330,
+ "▁Linki": 17331,
+ "▁CL": 17332,
+ "▁já": 17333,
+ "itement": 17334,
+ "▁área": 17335,
+ "▁scalar": 17336,
+ "▁Рес": 17337,
+ "awt": 17338,
+ "sieme": 17339,
+ "▁juni": 17340,
+ "▁худож": 17341,
+ "ikus": 17342,
+ "▁lid": 17343,
+ "ppel": 17344,
+ "avi": 17345,
+ "▁balance": 17346,
+ "ipping": 17347,
+ "cussion": 17348,
+ "ческих": 17349,
+ "(\".": 17350,
+ "Also": 17351,
+ "▁whis": 17352,
+ "HOME": 17353,
+ "▁brown": 17354,
+ "▁día": 17355,
+ "▁può": 17356,
+ "plotlib": 17357,
+ "▁Jahrhunderts": 17358,
+ "DK": 17359,
+ "▁anchor": 17360,
+ "...]": 17361,
+ "▁Austria": 17362,
+ "▁marca": 17363,
+ "▁gez": 17364,
+ "iously": 17365,
+ "▁lazy": 17366,
+ "xa": 17367,
+ "▁Channel": 17368,
+ "▁neuen": 17369,
+ "das": 17370,
+ "▁searched": 17371,
+ "▁staat": 17372,
+ "▁Так": 17373,
+ "▁Josef": 17374,
+ "▁Sher": 17375,
+ "pois": 17376,
+ "▁enem": 17377,
+ "▁accessing": 17378,
+ "▁неко": 17379,
+ "▁furono": 17380,
+ "▁pseudo": 17381,
+ "?>": 17382,
+ "▁estadoun": 17383,
+ "▁Види": 17384,
+ "▁motiv": 17385,
+ "▁recall": 17386,
+ "isson": 17387,
+ "ób": 17388,
+ ")--": 17389,
+ "▁Erz": 17390,
+ "▁савез": 17391,
+ "Direct": 17392,
+ "соб": 17393,
+ "▁sho": 17394,
+ "völker": 17395,
+ "Ap": 17396,
+ "gens": 17397,
+ "ништво": 17398,
+ "▁Amsterdam": 17399,
+ "usk": 17400,
+ "пло": 17401,
+ "▁simulation": 17402,
+ "▁BC": 17403,
+ "▁Woj": 17404,
+ "autom": 17405,
+ "Alex": 17406,
+ "▁economic": 17407,
+ "гом": 17408,
+ "ikai": 17409,
+ "▁altre": 17410,
+ "▁'-": 17411,
+ "▁Weg": 17412,
+ "NotFound": 17413,
+ "йской": 17414,
+ "▁converting": 17415,
+ "phabet": 17416,
+ "atrice": 17417,
+ "bourne": 17418,
+ "alom": 17419,
+ "▁comparing": 17420,
+ "▁Zo": 17421,
+ "▁fla": 17422,
+ "вая": 17423,
+ "▁entra": 17424,
+ "▁charset": 17425,
+ "developers": 17426,
+ "ística": 17427,
+ "}>": 17428,
+ "▁Jazz": 17429,
+ "▁Howard": 17430,
+ "шта": 17431,
+ "▁clone": 17432,
+ "door": 17433,
+ "▁Pin": 17434,
+ "***": 17435,
+ "▁silent": 17436,
+ "ecycle": 17437,
+ "isce": 17438,
+ "▁mud": 17439,
+ "▁Display": 17440,
+ "▁lip": 17441,
+ "▁использова": 17442,
+ "▁characteristic": 17443,
+ "▁sb": 17444,
+ "firebase": 17445,
+ "▁Bew": 17446,
+ "Calendar": 17447,
+ "▁uso": 17448,
+ "èse": 17449,
+ "▁Rat": 17450,
+ "▁esper": 17451,
+ "▁throwing": 17452,
+ "▁rodz": 17453,
+ "▁yards": 17454,
+ "▁grass": 17455,
+ "▁marker": 17456,
+ "▁Kos": 17457,
+ "Theta": 17458,
+ "▁organis": 17459,
+ "kernel": 17460,
+ "▁personas": 17461,
+ "keep": 17462,
+ "▁exclaimed": 17463,
+ "oslav": 17464,
+ "▁Entertain": 17465,
+ "нер": 17466,
+ "▁inwon": 17467,
+ "▁Rand": 17468,
+ "reduce": 17469,
+ "fac": 17470,
+ "expression": 17471,
+ "yj": 17472,
+ "▁differenti": 17473,
+ "aglia": 17474,
+ "▁templates": 17475,
+ "▁mű": 17476,
+ "▁prv": 17477,
+ "▁mois": 17478,
+ "▁gewann": 17479,
+ "▁була": 17480,
+ "bibli": 17481,
+ "demo": 17482,
+ "▁Anderson": 17483,
+ "▁ред": 17484,
+ "▁porque": 17485,
+ "▁Pologne": 17486,
+ "▁trip": 17487,
+ "▁exemple": 17488,
+ "▁Internacional": 17489,
+ "▁као": 17490,
+ "Insert": 17491,
+ "general": 17492,
+ "SESSION": 17493,
+ "berga": 17494,
+ "hält": 17495,
+ "unas": 17496,
+ "мира": 17497,
+ "▁yields": 17498,
+ "mapsto": 17499,
+ "spot": 17500,
+ "▁+\\": 17501,
+ "лла": 17502,
+ "▁precisely": 17503,
+ "▁член": 17504,
+ "shadow": 17505,
+ "Are": 17506,
+ "unal": 17507,
+ "▁dispar": 17508,
+ "▁título": 17509,
+ "nest": 17510,
+ "▁Low": 17511,
+ "▁prot": 17512,
+ "▁Costa": 17513,
+ "named": 17514,
+ "▁gained": 17515,
+ "lesia": 17516,
+ "▁administration": 17517,
+ "Import": 17518,
+ "branch": 17519,
+ "▁sympath": 17520,
+ "voj": 17521,
+ "▁EC": 17522,
+ "▁municipio": 17523,
+ "▁animated": 17524,
+ "▁directories": 17525,
+ "▁roof": 17526,
+ "ząd": 17527,
+ "imet": 17528,
+ "proto": 17529,
+ "bla": 17530,
+ ":]": 17531,
+ "have": 17532,
+ "atem": 17533,
+ "▁ns": 17534,
+ "▁sector": 17535,
+ "three": 17536,
+ "owane": 17537,
+ "wers": 17538,
+ "ових": 17539,
+ "rence": 17540,
+ "▁extr": 17541,
+ "igten": 17542,
+ "▁occident": 17543,
+ "ță": 17544,
+ "▁eat": 17545,
+ "▁hydro": 17546,
+ "ubernetes": 17547,
+ "[@": 17548,
+ "▁Moon": 17549,
+ "▁Sho": 17550,
+ "▁elsewhere": 17551,
+ "üller": 17552,
+ "Upload": 17553,
+ "ланд": 17554,
+ "▁För": 17555,
+ "wissenschaft": 17556,
+ "KS": 17557,
+ "▁physics": 17558,
+ "tz": 17559,
+ "▁серед": 17560,
+ "▁Arbeit": 17561,
+ "▁мест": 17562,
+ "▁Gebiet": 17563,
+ "▁insect": 17564,
+ "Ah": 17565,
+ "izado": 17566,
+ "▁temple": 17567,
+ "▁annual": 17568,
+ "stad": 17569,
+ "▁habitat": 17570,
+ "▁AB": 17571,
+ "wort": 17572,
+ "▁repos": 17573,
+ "▁Neu": 17574,
+ "▁$(\".": 17575,
+ "Vorlage": 17576,
+ "▁reprezent": 17577,
+ "estanden": 17578,
+ "Intern": 17579,
+ ".`": 17580,
+ "▁failing": 17581,
+ "▁Material": 17582,
+ "▁effectively": 17583,
+ "телем": 17584,
+ "▁гла": 17585,
+ "▁nahm": 17586,
+ "▁differently": 17587,
+ "extension": 17588,
+ "▁Verm": 17589,
+ "enabled": 17590,
+ "configure": 17591,
+ "nio": 17592,
+ "ciones": 17593,
+ "▁Beach": 17594,
+ "сона": 17595,
+ "▁copying": 17596,
+ "▁україн": 17597,
+ "▁призна": 17598,
+ "zh": 17599,
+ "Desktop": 17600,
+ "▁sost": 17601,
+ "▁subsequently": 17602,
+ "▁Lehr": 17603,
+ "▁ó": 17604,
+ "lär": 17605,
+ "odor": 17606,
+ "phon": 17607,
+ "nc": 17608,
+ "iterator": 17609,
+ "▁эти": 17610,
+ "▁europé": 17611,
+ "▁Toronto": 17612,
+ "ódigo": 17613,
+ "▁posto": 17614,
+ "ffe": 17615,
+ "▁crew": 17616,
+ "▁Schwar": 17617,
+ "Sa": 17618,
+ "square": 17619,
+ "▁beside": 17620,
+ "▁Мі": 17621,
+ "▁ath": 17622,
+ "▁advent": 17623,
+ "cji": 17624,
+ "written": 17625,
+ "▁russ": 17626,
+ "rost": 17627,
+ "HI": 17628,
+ "▁dice": 17629,
+ "cca": 17630,
+ "▁dép": 17631,
+ "ply": 17632,
+ "bigg": 17633,
+ "ział": 17634,
+ "ütt": 17635,
+ "▁одно": 17636,
+ "JECT": 17637,
+ "ському": 17638,
+ "nos": 17639,
+ "mock": 17640,
+ "Launch": 17641,
+ "same": 17642,
+ "▁jobs": 17643,
+ "▁widely": 17644,
+ "▁defines": 17645,
+ "▁Pse": 17646,
+ "▁neighbour": 17647,
+ "ющие": 17648,
+ "▁closer": 17649,
+ "▁располо": 17650,
+ "▁clubs": 17651,
+ "fly": 17652,
+ "шим": 17653,
+ "▁suffered": 17654,
+ "▁nar": 17655,
+ "▁lavor": 17656,
+ "Extension": 17657,
+ "itionally": 17658,
+ "▁grace": 17659,
+ "▁Campeonato": 17660,
+ "▁Christmas": 17661,
+ "middle": 17662,
+ "othek": 17663,
+ "elements": 17664,
+ "▁sondern": 17665,
+ "▁tarde": 17666,
+ "▁permanent": 17667,
+ "▁conclude": 17668,
+ "Seg": 17669,
+ "▁акаде": 17670,
+ "}\",": 17671,
+ "▁февраля": 17672,
+ "řed": 17673,
+ "▁IL": 17674,
+ "jud": 17675,
+ "▁USS": 17676,
+ "▁Nature": 17677,
+ "ifference": 17678,
+ "Serializer": 17679,
+ "▁twelve": 17680,
+ "tid": 17681,
+ "мия": 17682,
+ "ческого": 17683,
+ "▁calendar": 17684,
+ "concat": 17685,
+ "▁intersection": 17686,
+ "▁PA": 17687,
+ "azure": 17688,
+ "▁située": 17689,
+ "▁kinds": 17690,
+ "▁ausge": 17691,
+ "▁rural": 17692,
+ "Theme": 17693,
+ "▁tale": 17694,
+ "noindent": 17695,
+ "going": 17696,
+ "rx": 17697,
+ "agi": 17698,
+ "wrapper": 17699,
+ "▁Coast": 17700,
+ "mbH": 17701,
+ "▁перед": 17702,
+ "spre": 17703,
+ "▁}\\": 17704,
+ "▁LI": 17705,
+ "znam": 17706,
+ "itled": 17707,
+ "Sample": 17708,
+ "uliar": 17709,
+ "*\\": 17710,
+ "▁resistance": 17711,
+ "stock": 17712,
+ "ked": 17713,
+ "▁HE": 17714,
+ "▁possession": 17715,
+ "▁Ring": 17716,
+ "▁magyar": 17717,
+ "outs": 17718,
+ "▁Secretary": 17719,
+ "nde": 17720,
+ "▁Wald": 17721,
+ "-(": 17722,
+ "▁ISO": 17723,
+ "▁afternoon": 17724,
+ "ionen": 17725,
+ "▁stops": 17726,
+ "▁constants": 17727,
+ "guard": 17728,
+ "bow": 17729,
+ "▁ers": 17730,
+ "▁Firebase": 17731,
+ "▁Clear": 17732,
+ "▁Holy": 17733,
+ "Win": 17734,
+ "▁titles": 17735,
+ "▁трав": 17736,
+ "▁contrib": 17737,
+ "häng": 17738,
+ "▁photograph": 17739,
+ "▁Distribution": 17740,
+ "ifts": 17741,
+ "▁aunque": 17742,
+ "comb": 17743,
+ "ADD": 17744,
+ "▁publication": 17745,
+ "▁служ": 17746,
+ "▁кня": 17747,
+ "▁ayant": 17748,
+ "▁restore": 17749,
+ "▁belief": 17750,
+ "▁vég": 17751,
+ "▁extensions": 17752,
+ "▁decom": 17753,
+ "вший": 17754,
+ "WT": 17755,
+ "▁parti": 17756,
+ "▁gioc": 17757,
+ "▁мира": 17758,
+ "▁issu": 17759,
+ "pipe": 17760,
+ "▁props": 17761,
+ "▁willing": 17762,
+ "▁nest": 17763,
+ "aso": 17764,
+ "pot": 17765,
+ "▁handles": 17766,
+ "▁фо": 17767,
+ "▁moder": 17768,
+ "▁ebenfalls": 17769,
+ "▁fighting": 17770,
+ "umbn": 17771,
+ "▁transparent": 17772,
+ "▁Krist": 17773,
+ "▁homes": 17774,
+ "▁voyage": 17775,
+ "Failed": 17776,
+ "▁Bird": 17777,
+ "▁Heart": 17778,
+ "Counter": 17779,
+ "▁Scottish": 17780,
+ "ática": 17781,
+ "▁arbeit": 17782,
+ "^{-\\": 17783,
+ "▁Sor": 17784,
+ "▁engaged": 17785,
+ "▁aside": 17786,
+ "▁Fou": 17787,
+ "▁wiel": 17788,
+ "▁reconst": 17789,
+ "ousin": 17790,
+ "▁hosted": 17791,
+ "▁classe": 17792,
+ "▁contest": 17793,
+ "...\"": 17794,
+ "мом": 17795,
+ "▁bean": 17796,
+ "gem": 17797,
+ "▁consultato": 17798,
+ "▁bio": 17799,
+ "▁subjects": 17800,
+ "boBox": 17801,
+ "▁Schrift": 17802,
+ "▁dinner": 17803,
+ "ăr": 17804,
+ "▁równ": 17805,
+ "▁%%": 17806,
+ "bage": 17807,
+ "▁veröff": 17808,
+ "▁detected": 17809,
+ "ienn": 17810,
+ "rose": 17811,
+ "▁Ton": 17812,
+ "Complete": 17813,
+ "▁proto": 17814,
+ "ichts": 17815,
+ "STAT": 17816,
+ "Checked": 17817,
+ "▁inten": 17818,
+ "▁smile": 17819,
+ "▁strip": 17820,
+ "neut": 17821,
+ "');\r": 17822,
+ "four": 17823,
+ "▁todas": 17824,
+ "Controls": 17825,
+ "▁thorough": 17826,
+ "rup": 17827,
+ "▁држави": 17828,
+ "ită": 17829,
+ "Protocol": 17830,
+ "Ка": 17831,
+ "▁expanded": 17832,
+ "extra": 17833,
+ "oport": 17834,
+ "▁Станов": 17835,
+ "leases": 17836,
+ "▁notion": 17837,
+ "▁guest": 17838,
+ "▁Islands": 17839,
+ "icked": 17840,
+ "▁Dave": 17841,
+ "▁reflection": 17842,
+ "liv": 17843,
+ "ální": 17844,
+ "▁revealed": 17845,
+ "▁sog": 17846,
+ "▁Tax": 17847,
+ "▁periodo": 17848,
+ "▁Weltkrie": 17849,
+ "catalina": 17850,
+ "qué": 17851,
+ "▁Father": 17852,
+ "▁Bir": 17853,
+ "expect": 17854,
+ "▁regression": 17855,
+ "iné": 17856,
+ "▁dabei": 17857,
+ "perm": 17858,
+ "мене": 17859,
+ "▁Abd": 17860,
+ "▁CF": 17861,
+ "arks": 17862,
+ "resolve": 17863,
+ "wedge": 17864,
+ "▁initialization": 17865,
+ "▁Véase": 17866,
+ "▁приня": 17867,
+ "stmt": 17868,
+ "▁income": 17869,
+ "MY": 17870,
+ "▁odkazy": 17871,
+ "▁Siehe": 17872,
+ "▁bodies": 17873,
+ "▁soc": 17874,
+ "Random": 17875,
+ "▁senza": 17876,
+ "ablo": 17877,
+ "▁regarded": 17878,
+ "onCreate": 17879,
+ "▁Magazine": 17880,
+ "▁Raf": 17881,
+ "▁Buenos": 17882,
+ "ил": 17883,
+ ")));": 17884,
+ "capt": 17885,
+ "redirect": 17886,
+ "▁petit": 17887,
+ "▁farm": 17888,
+ "▁rôle": 17889,
+ "▁статьи": 17890,
+ " ": 17891,
+ "subfigure": 17892,
+ "èces": 17893,
+ "ziel": 17894,
+ "▁окон": 17895,
+ "EE": 17896,
+ "mee": 17897,
+ "▁perten": 17898,
+ "▁représent": 17899,
+ "▁LA": 17900,
+ "?'": 17901,
+ "▁тру": 17902,
+ "▁rational": 17903,
+ "osof": 17904,
+ "▁kne": 17905,
+ "▁artists": 17906,
+ "Flow": 17907,
+ "▁Аль": 17908,
+ "izard": 17909,
+ "▁numero": 17910,
+ "actic": 17911,
+ "▁destruct": 17912,
+ "▁Пра": 17913,
+ "onsieur": 17914,
+ "qt": 17915,
+ "abestanden": 17916,
+ "ność": 17917,
+ "Connect": 17918,
+ "▁oracle": 17919,
+ "▁Stockholm": 17920,
+ "sizeof": 17921,
+ "▁gemäß": 17922,
+ "ACT": 17923,
+ "▁expert": 17924,
+ "utions": 17925,
+ "▁hacia": 17926,
+ "▁logger": 17927,
+ "▁fool": 17928,
+ "rypto": 17929,
+ "ær": 17930,
+ "▁cidade": 17931,
+ "▁составе": 17932,
+ "oker": 17933,
+ "▁Transfer": 17934,
+ "▁denied": 17935,
+ "Track": 17936,
+ "▁radi": 17937,
+ "zec": 17938,
+ "▁Historic": 17939,
+ "▁Einwohner": 17940,
+ "кою": 17941,
+ "▁хра": 17942,
+ "▁Category": 17943,
+ "▁Disney": 17944,
+ "▁swap": 17945,
+ "Begin": 17946,
+ "▁mientras": 17947,
+ "▁dance": 17948,
+ "▁tête": 17949,
+ "▁droit": 17950,
+ "erta": 17951,
+ "▁birds": 17952,
+ "▁convin": 17953,
+ "parator": 17954,
+ "дра": 17955,
+ "▁ES": 17956,
+ "▁Ressources": 17957,
+ "EGIN": 17958,
+ "ücke": 17959,
+ "▁Cruz": 17960,
+ "abling": 17961,
+ "▁\"@": 17962,
+ "▁metres": 17963,
+ "▁Beg": 17964,
+ "▁Gründ": 17965,
+ "▁Boh": 17966,
+ "▁mile": 17967,
+ "▁Technology": 17968,
+ "\"+": 17969,
+ "acco": 17970,
+ "▁ss": 17971,
+ "▁Fed": 17972,
+ "▁Hend": 17973,
+ "usch": 17974,
+ "itä": 17975,
+ "folk": 17976,
+ "▁absor": 17977,
+ "antal": 17978,
+ "odge": 17979,
+ "▁WHEN": 17980,
+ "▁Externí": 17981,
+ "▁Regiment": 17982,
+ "▁evaluation": 17983,
+ "▁Tai": 17984,
+ "▁vocals": 17985,
+ "▁experimental": 17986,
+ "embed": 17987,
+ "▁Minn": 17988,
+ "▁вме": 17989,
+ "prec": 17990,
+ "every": 17991,
+ "▁hoof": 17992,
+ "▁Fernando": 17993,
+ "▁Bibliographie": 17994,
+ "▁nag": 17995,
+ "amerikanischer": 17996,
+ "▁marks": 17997,
+ "▁UTC": 17998,
+ "▁uncertain": 17999,
+ "дия": 18000,
+ "olia": 18001,
+ "▁cup": 18002,
+ "▁fille": 18003,
+ "▁dok": 18004,
+ "useppe": 18005,
+ "esterd": 18006,
+ "▁Brand": 18007,
+ "▁Third": 18008,
+ "PP": 18009,
+ "nodes": 18010,
+ "▁Pad": 18011,
+ "▁loved": 18012,
+ "swing": 18013,
+ "▁surprised": 18014,
+ "ardi": 18015,
+ "▁GR": 18016,
+ "]\"": 18017,
+ "▁equally": 18018,
+ "ihe": 18019,
+ "care": 18020,
+ "писок": 18021,
+ "lijk": 18022,
+ "rinn": 18023,
+ "▁\\[\\": 18024,
+ "▁sons": 18025,
+ "▁tät": 18026,
+ "icamente": 18027,
+ "▁listing": 18028,
+ "iellement": 18029,
+ "▁nyelven": 18030,
+ "▁ds": 18031,
+ "▁agricult": 18032,
+ "▁Hermann": 18033,
+ "▁besides": 18034,
+ "progress": 18035,
+ "▁peculiar": 18036,
+ "focus": 18037,
+ "cn": 18038,
+ "-$": 18039,
+ "ственный": 18040,
+ "ourg": 18041,
+ "▁wyn": 18042,
+ "▁conducted": 18043,
+ "▁Становништво": 18044,
+ "connected": 18045,
+ "▁bott": 18046,
+ "▁смер": 18047,
+ "▁Poz": 18048,
+ "unct": 18049,
+ "conda": 18050,
+ "▁савезној": 18051,
+ "▁havet": 18052,
+ "ligt": 18053,
+ "orted": 18054,
+ "▁entering": 18055,
+ "multip": 18056,
+ "▁Temple": 18057,
+ "▁Plant": 18058,
+ "typeof": 18059,
+ "▁Vlad": 18060,
+ "▁qued": 18061,
+ "▁reste": 18062,
+ "▁май": 18063,
+ "▁Very": 18064,
+ "ambiguation": 18065,
+ "▁challeng": 18066,
+ "▁respective": 18067,
+ "▁тор": 18068,
+ "Ctrl": 18069,
+ "▁absence": 18070,
+ "aru": 18071,
+ "вое": 18072,
+ "▁först": 18073,
+ "▁sq": 18074,
+ "▁Emperor": 18075,
+ "▁Ign": 18076,
+ "▁това": 18077,
+ ":`": 18078,
+ "adoop": 18079,
+ "▁Madame": 18080,
+ "▁gruppo": 18081,
+ "stud": 18082,
+ "▁externas": 18083,
+ "▁Александр": 18084,
+ "▁dign": 18085,
+ "▁живе": 18086,
+ "Amount": 18087,
+ "▁correlate": 18088,
+ "▁Fant": 18089,
+ "▁rails": 18090,
+ "fp": 18091,
+ "министратив": 18092,
+ "▁bought": 18093,
+ "▁filters": 18094,
+ "▁ancora": 18095,
+ "▁partner": 18096,
+ "▁quand": 18097,
+ "symbol": 18098,
+ "ulating": 18099,
+ "▁zd": 18100,
+ "awn": 18101,
+ "▁Grant": 18102,
+ "because": 18103,
+ "rable": 18104,
+ "\\}": 18105,
+ "ísticas": 18106,
+ "▁уче": 18107,
+ "▁période": 18108,
+ "▁ske": 18109,
+ "▁Anyway": 18110,
+ "▁indexes": 18111,
+ "▁directions": 18112,
+ "▁RAM": 18113,
+ "chrome": 18114,
+ "▁apost": 18115,
+ "▁warnings": 18116,
+ "▁Airport": 18117,
+ "VI": 18118,
+ "abile": 18119,
+ "▁lord": 18120,
+ "provider": 18121,
+ "▁Ji": 18122,
+ "ostream": 18123,
+ "▁gemeente": 18124,
+ "tableView": 18125,
+ "Extra": 18126,
+ "cursor": 18127,
+ "eground": 18128,
+ "▁Moz": 18129,
+ "▁rib": 18130,
+ "▁morph": 18131,
+ "loads": 18132,
+ "elsk": 18133,
+ "▁MAX": 18134,
+ "▁Santiago": 18135,
+ "▁Him": 18136,
+ "codes": 18137,
+ "▁lanz": 18138,
+ "▁counts": 18139,
+ "rinningsområ": 18140,
+ "щё": 18141,
+ "▁spé": 18142,
+ "▁pierws": 18143,
+ "▁Sver": 18144,
+ "▁acknow": 18145,
+ "Boolean": 18146,
+ "▁фамили": 18147,
+ "▁Senate": 18148,
+ "шов": 18149,
+ "agers": 18150,
+ "▁Nueva": 18151,
+ "bil": 18152,
+ "kiem": 18153,
+ "▁Mey": 18154,
+ "wij": 18155,
+ "▁GmbH": 18156,
+ "validation": 18157,
+ "▁ensuite": 18158,
+ "inking": 18159,
+ "▁campion": 18160,
+ "▁financial": 18161,
+ "izon": 18162,
+ "Headers": 18163,
+ "▁deprecated": 18164,
+ "▁fonction": 18165,
+ "REG": 18166,
+ "▁volumes": 18167,
+ "▁Chi": 18168,
+ "▁encountered": 18169,
+ "lak": 18170,
+ "рая": 18171,
+ "▁continues": 18172,
+ "▁~[": 18173,
+ "uerte": 18174,
+ "▁\\;": 18175,
+ "▁Dok": 18176,
+ "▁weights": 18177,
+ "▁rh": 18178,
+ "▁Napole": 18179,
+ "▁naturally": 18180,
+ "sku": 18181,
+ "pas": 18182,
+ "▁gegründ": 18183,
+ "etr": 18184,
+ "▁Ku": 18185,
+ "icted": 18186,
+ "▁fabric": 18187,
+ "▁ASC": 18188,
+ "▁Entertainment": 18189,
+ "▁energ": 18190,
+ "клад": 18191,
+ "omon": 18192,
+ "theme": 18193,
+ "▁харак": 18194,
+ "▁draft": 18195,
+ "▁channels": 18196,
+ "▁desert": 18197,
+ "▁través": 18198,
+ "▁Lock": 18199,
+ "▁siendo": 18200,
+ "фек": 18201,
+ "même": 18202,
+ "▁packet": 18203,
+ "▁Mountain": 18204,
+ "▁Fahr": 18205,
+ "braio": 18206,
+ "пере": 18207,
+ "▁genannt": 18208,
+ "▁deployment": 18209,
+ "Pal": 18210,
+ "ног": 18211,
+ "стру": 18212,
+ "Prim": 18213,
+ "für": 18214,
+ "▁dangerous": 18215,
+ "▁szám": 18216,
+ "reck": 18217,
+ "▁popup": 18218,
+ "icky": 18219,
+ "inar": 18220,
+ "cowo": 18221,
+ "нцикло": 18222,
+ "ítás": 18223,
+ "▁plugins": 18224,
+ "▁driven": 18225,
+ "лев": 18226,
+ "▁\"(": 18227,
+ "tta": 18228,
+ "▁Ú": 18229,
+ "▁eb": 18230,
+ "▁'';": 18231,
+ "▁knock": 18232,
+ "▁основа": 18233,
+ "▁maison": 18234,
+ "гля": 18235,
+ "▁Honor": 18236,
+ "tail": 18237,
+ "ritz": 18238,
+ "▁guys": 18239,
+ "▁combinations": 18240,
+ "ondere": 18241,
+ "▁Ald": 18242,
+ "▁fiddle": 18243,
+ "дав": 18244,
+ "urd": 18245,
+ "▁projection": 18246,
+ "▁También": 18247,
+ "verb": 18248,
+ "▁terre": 18249,
+ "rugu": 18250,
+ "▁september": 18251,
+ "▁=": 18572,
+ "▁Beat": 18573,
+ "▁Sax": 18574,
+ "vertical": 18575,
+ "кто": 18576,
+ "▁plants": 18577,
+ "▁Références": 18578,
+ "▁ogni": 18579,
+ "▁curs": 18580,
+ "▁SK": 18581,
+ "они": 18582,
+ "▁destac": 18583,
+ "\");\r": 18584,
+ "▁Sure": 18585,
+ "▁partido": 18586,
+ "▁Folge": 18587,
+ "▁Moore": 18588,
+ "▁wz": 18589,
+ "скус": 18590,
+ "ltre": 18591,
+ "ondo": 18592,
+ "▁pose": 18593,
+ "imos": 18594,
+ "бой": 18595,
+ "ципа": 18596,
+ "jus": 18597,
+ ".....": 18598,
+ "▁época": 18599,
+ "▁quanto": 18600,
+ "▁Support": 18601,
+ "geschichte": 18602,
+ "SERVER": 18603,
+ "▁Georges": 18604,
+ "enum": 18605,
+ "▁herm": 18606,
+ "▁nebo": 18607,
+ "▁Chr": 18608,
+ "character": 18609,
+ "▁***": 18610,
+ "▁Forsch": 18611,
+ "iami": 18612,
+ "▁¿": 18613,
+ "cych": 18614,
+ "▁fifth": 18615,
+ "sent": 18616,
+ "▁anderem": 18617,
+ "▁proportion": 18618,
+ "▁prest": 18619,
+ "▁Girl": 18620,
+ "▁drama": 18621,
+ "wand": 18622,
+ "▁Mail": 18623,
+ "▁Lux": 18624,
+ "▁který": 18625,
+ "▁Gesellschaft": 18626,
+ "▁Hinweis": 18627,
+ "nisse": 18628,
+ "▁mondo": 18629,
+ "Eq": 18630,
+ "▁perí": 18631,
+ "▁eastern": 18632,
+ "▁UEFA": 18633,
+ "uale": 18634,
+ "▁convex": 18635,
+ "▁поль": 18636,
+ "▁Hey": 18637,
+ "zenie": 18638,
+ "initely": 18639,
+ "▁Zusammen": 18640,
+ "SSL": 18641,
+ "ocal": 18642,
+ "▁canal": 18643,
+ "voy": 18644,
+ "▁Кри": 18645,
+ "▁között": 18646,
+ "▁cars": 18647,
+ "▁versión": 18648,
+ "Environment": 18649,
+ "Her": 18650,
+ "▁señ": 18651,
+ "▁spatial": 18652,
+ "ymi": 18653,
+ "Fire": 18654,
+ "▁veget": 18655,
+ "▁Wie": 18656,
+ "▁znaj": 18657,
+ "▁damage": 18658,
+ "▁endl": 18659,
+ "gif": 18660,
+ "▁quali": 18661,
+ "▁которых": 18662,
+ "ellan": 18663,
+ "▁mens": 18664,
+ "▁plug": 18665,
+ "▁abund": 18666,
+ "FIG": 18667,
+ "▁sf": 18668,
+ "▁confl": 18669,
+ "▁населения": 18670,
+ "▁principles": 18671,
+ "▁Gabriel": 18672,
+ "ibe": 18673,
+ "▁{%": 18674,
+ "▁població": 18675,
+ "ніципа": 18676,
+ "▁extreme": 18677,
+ "▁asse": 18678,
+ "▁vu": 18679,
+ "Mock": 18680,
+ "▁spielte": 18681,
+ "▁Aer": 18682,
+ "▁datos": 18683,
+ "endes": 18684,
+ "▁Gel": 18685,
+ "▁Gor": 18686,
+ "Christ": 18687,
+ "chos": 18688,
+ "Processor": 18689,
+ "▁instruct": 18690,
+ "▁picked": 18691,
+ "nahme": 18692,
+ "fahr": 18693,
+ "▁indicated": 18694,
+ "▁%.": 18695,
+ "▁ts": 18696,
+ "▁notable": 18697,
+ "▁qualified": 18698,
+ "▁Ал": 18699,
+ "Black": 18700,
+ "▁council": 18701,
+ "▁overhead": 18702,
+ "aci": 18703,
+ "année": 18704,
+ "▁initWith": 18705,
+ "bió": 18706,
+ "▁introduction": 18707,
+ "▁companion": 18708,
+ "▁expon": 18709,
+ "▁kör": 18710,
+ "oby": 18711,
+ "burn": 18712,
+ "gnu": 18713,
+ "virtual": 18714,
+ "▁intellect": 18715,
+ "▁держа": 18716,
+ "'+": 18717,
+ "бле": 18718,
+ "▁strictly": 18719,
+ "▁recognize": 18720,
+ "hour": 18721,
+ "▁Wrest": 18722,
+ "ennen": 18723,
+ "$).": 18724,
+ "fff": 18725,
+ "▁Centro": 18726,
+ "▁Pitt": 18727,
+ "▁dział": 18728,
+ "▁cela": 18729,
+ "▁francese": 18730,
+ "рами": 18731,
+ "special": 18732,
+ "▁Dup": 18733,
+ "toire": 18734,
+ "каль": 18735,
+ "COUNT": 18736,
+ "▁Brook": 18737,
+ "▁руково": 18738,
+ "publique": 18739,
+ "▁seconda": 18740,
+ "▁compt": 18741,
+ "▁bland": 18742,
+ "Before": 18743,
+ "▁Pack": 18744,
+ "alty": 18745,
+ "öder": 18746,
+ "▁intervals": 18747,
+ "▁Datenbank": 18748,
+ "Movie": 18749,
+ "▁transm": 18750,
+ "▁tap": 18751,
+ "▁поч": 18752,
+ "fon": 18753,
+ "iai": 18754,
+ "▁fib": 18755,
+ "▁wyd": 18756,
+ "▁hung": 18757,
+ "▁alive": 18758,
+ "Clear": 18759,
+ "▁pushed": 18760,
+ "▁tuple": 18761,
+ "achen": 18762,
+ "гово": 18763,
+ "▁revers": 18764,
+ "▁augment": 18765,
+ "▁challenge": 18766,
+ "lost": 18767,
+ "▁deuxième": 18768,
+ "structor": 18769,
+ "▁mehrerer": 18770,
+ "atural": 18771,
+ "Split": 18772,
+ "стем": 18773,
+ "шла": 18774,
+ ")\\\\": 18775,
+ "▁Dog": 18776,
+ "▁developers": 18777,
+ "▁nod": 18778,
+ "▁сторо": 18779,
+ "▁NaN": 18780,
+ "▁priest": 18781,
+ "▁exha": 18782,
+ "UND": 18783,
+ "pair": 18784,
+ "alone": 18785,
+ "▁moon": 18786,
+ "▁#!/": 18787,
+ "▁guns": 18788,
+ "rola": 18789,
+ "чита": 18790,
+ "▁Encyclopedia": 18791,
+ "atis": 18792,
+ "▁'\"": 18793,
+ "zych": 18794,
+ "▁superfic": 18795,
+ "▁эк": 18796,
+ "едера": 18797,
+ "feed": 18798,
+ "LAY": 18799,
+ "Fi": 18800,
+ "unks": 18801,
+ "isecond": 18802,
+ "▁'@": 18803,
+ "▁Adding": 18804,
+ "рое": 18805,
+ "▁tang": 18806,
+ "цо": 18807,
+ "hung": 18808,
+ "bis": 18809,
+ "ského": 18810,
+ "▁advert": 18811,
+ "▁занима": 18812,
+ "uzz": 18813,
+ "ágina": 18814,
+ "▁Tel": 18815,
+ "sig": 18816,
+ "▁Ez": 18817,
+ "▁guarantee": 18818,
+ "▁teaching": 18819,
+ "oty": 18820,
+ "termin": 18821,
+ "▁distributions": 18822,
+ "FLA": 18823,
+ "▁Giuseppe": 18824,
+ "querySelector": 18825,
+ "▁/\\": 18826,
+ "▁Squad": 18827,
+ "gz": 18828,
+ "delay": 18829,
+ "▁surrounding": 18830,
+ "▁manus": 18831,
+ "▁Hou": 18832,
+ "²,": 18833,
+ "▁cultiv": 18834,
+ "▁troubles": 18835,
+ "▁raison": 18836,
+ "expand": 18837,
+ "▁cov": 18838,
+ "nungen": 18839,
+ ")){": 18840,
+ "▁geen": 18841,
+ "▁außer": 18842,
+ "▁Лі": 18843,
+ "ři": 18844,
+ "▁situations": 18845,
+ "▁telep": 18846,
+ "▁Jed": 18847,
+ "▁travail": 18848,
+ "lias": 18849,
+ "bullet": 18850,
+ "▁selecting": 18851,
+ "avier": 18852,
+ "▁essential": 18853,
+ "(/": 18854,
+ "yyyy": 18855,
+ "ště": 18856,
+ "ulty": 18857,
+ "▁kra": 18858,
+ "▁tabs": 18859,
+ "▁experienced": 18860,
+ "azi": 18861,
+ "▁Directory": 18862,
+ "▁cron": 18863,
+ "▁spend": 18864,
+ "▁RA": 18865,
+ "▁selenium": 18866,
+ "▁Thé": 18867,
+ "Elements": 18868,
+ "cii": 18869,
+ "▁plat": 18870,
+ "▁archive": 18871,
+ "▁assistance": 18872,
+ "▁neck": 18873,
+ "▁Avenue": 18874,
+ "▁wheel": 18875,
+ "▁hade": 18876,
+ "Common": 18877,
+ "▁Dialog": 18878,
+ "▁forg": 18879,
+ "▁surely": 18880,
+ "▁hockey": 18881,
+ "któ": 18882,
+ "▁tk": 18883,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 18884,
+ "▁Bruce": 18885,
+ "▁enorm": 18886,
+ ",’": 18887,
+ "▁Christopher": 18888,
+ "jev": 18889,
+ "▁quad": 18890,
+ "▁AJAX": 18891,
+ "▁relief": 18892,
+ "▁modes": 18893,
+ "sklär": 18894,
+ "▁Vid": 18895,
+ "▁Serial": 18896,
+ "▁tokens": 18897,
+ "▁Poland": 18898,
+ "\\]": 18899,
+ "▁vide": 18900,
+ "rooms": 18901,
+ "omas": 18902,
+ "▁Bureau": 18903,
+ "cx": 18904,
+ "ностью": 18905,
+ "▁signs": 18906,
+ "шение": 18907,
+ "lossen": 18908,
+ "▁Queens": 18909,
+ "▁membre": 18910,
+ "▁mez": 18911,
+ "▁Bool": 18912,
+ "▁Naj": 18913,
+ "▁Memory": 18914,
+ "▁Khan": 18915,
+ "▁là": 18916,
+ "▁Hud": 18917,
+ "▁dismiss": 18918,
+ "ighth": 18919,
+ "▁fs": 18920,
+ "prevent": 18921,
+ "▁меда": 18922,
+ "▁Police": 18923,
+ "▁ско": 18924,
+ "finite": 18925,
+ "▁ami": 18926,
+ "▁Much": 18927,
+ "owania": 18928,
+ "ORY": 18929,
+ "iors": 18930,
+ "▁Premio": 18931,
+ "▁textbox": 18932,
+ "dm": 18933,
+ "▁afin": 18934,
+ "▁Donald": 18935,
+ "▁Priv": 18936,
+ "▁decid": 18937,
+ "▁Maurice": 18938,
+ "agan": 18939,
+ "▁Britannica": 18940,
+ "▁oft": 18941,
+ "▁consecutive": 18942,
+ "\"?>": 18943,
+ "овий": 18944,
+ "student": 18945,
+ "▁peque": 18946,
+ "▁dieses": 18947,
+ "▁retour": 18948,
+ "étr": 18949,
+ "▁сез": 18950,
+ "▁kre": 18951,
+ "▁votes": 18952,
+ "ruption": 18953,
+ "izada": 18954,
+ "▁Wiel": 18955,
+ "▁Gray": 18956,
+ "▁Leop": 18957,
+ "teilung": 18958,
+ "(['": 18959,
+ "▁whites": 18960,
+ "frica": 18961,
+ "animation": 18962,
+ "curl": 18963,
+ "lings": 18964,
+ "=\"$": 18965,
+ "loyd": 18966,
+ "textsc": 18967,
+ "ору": 18968,
+ "▁села": 18969,
+ "esian": 18970,
+ "▁Mission": 18971,
+ "▁неза": 18972,
+ "▁ultimately": 18973,
+ "бов": 18974,
+ "olen": 18975,
+ "скому": 18976,
+ "nete": 18977,
+ "▁Dit": 18978,
+ "▁costru": 18979,
+ "dependent": 18980,
+ "▁Resource": 18981,
+ "▁hosts": 18982,
+ "▁rear": 18983,
+ "Duration": 18984,
+ "ників": 18985,
+ "Ма": 18986,
+ "▁planning": 18987,
+ "▁prediction": 18988,
+ "▁Lyn": 18989,
+ "▁kir": 18990,
+ "▁Legisl": 18991,
+ "мат": 18992,
+ "▁Soccer": 18993,
+ "▁survey": 18994,
+ "▁estadounidense": 18995,
+ "orgen": 18996,
+ "jourd": 18997,
+ "▁aprile": 18998,
+ "▁ids": 18999,
+ "ське": 19000,
+ "▁employee": 19001,
+ "▁Schauspieler": 19002,
+ "ръ": 19003,
+ "▁multimedia": 19004,
+ "▁свою": 19005,
+ "▁wine": 19006,
+ "▁EU": 19007,
+ "ică": 19008,
+ "▁Rhein": 19009,
+ "▁Palmar": 19010,
+ "oteca": 19011,
+ "▁prepare": 19012,
+ "▁Tot": 19013,
+ "▁Null": 19014,
+ "▁kin": 19015,
+ "inals": 19016,
+ "▁Newton": 19017,
+ "▁tbl": 19018,
+ "▁Sold": 19019,
+ "▁verf": 19020,
+ "aturing": 19021,
+ "▁laptop": 19022,
+ "▁Совет": 19023,
+ "secret": 19024,
+ "▁Olympic": 19025,
+ "▁footballer": 19026,
+ "▁Rudolf": 19027,
+ "▁conhe": 19028,
+ "zysk": 19029,
+ "▁evaluated": 19030,
+ "»)": 19031,
+ "shop": 19032,
+ "repository": 19033,
+ "▁zach": 19034,
+ "▁losing": 19035,
+ "etter": 19036,
+ "▁Wirtschaft": 19037,
+ "так": 19038,
+ "▁unnecessary": 19039,
+ "▁Phot": 19040,
+ "anska": 19041,
+ "▁Native": 19042,
+ "CCE": 19043,
+ "▁fifty": 19044,
+ "▁erw": 19045,
+ "rh": 19046,
+ "issent": 19047,
+ "}{(": 19048,
+ "▁lanç": 19049,
+ "▁Xcode": 19050,
+ "город": 19051,
+ "cir": 19052,
+ "▁película": 19053,
+ "▁Oscar": 19054,
+ "▁shore": 19055,
+ "▁supplied": 19056,
+ "examples": 19057,
+ "Mess": 19058,
+ "VICE": 19059,
+ "▁exclude": 19060,
+ "▁hen": 19061,
+ "▁губер": 19062,
+ "▁Fragment": 19063,
+ "▁Bitte": 19064,
+ "▁Besides": 19065,
+ "▁hes": 19066,
+ "▁ihrem": 19067,
+ "▁Serge": 19068,
+ "▁artific": 19069,
+ "=\"${": 19070,
+ "лово": 19071,
+ "uteur": 19072,
+ "taire": 19073,
+ "пас": 19074,
+ "▁easiest": 19075,
+ "▁famiglia": 19076,
+ "Normal": 19077,
+ "▁dalle": 19078,
+ "▁nations": 19079,
+ "rp": 19080,
+ "thead": 19081,
+ "▁області": 19082,
+ "▁Democratic": 19083,
+ "▁челове": 19084,
+ "мож": 19085,
+ "▁гер": 19086,
+ "▁smallest": 19087,
+ "▁Publishing": 19088,
+ "▁Ts": 19089,
+ "▁laughed": 19090,
+ "lle": 19091,
+ "▁Amt": 19092,
+ "▁IIS": 19093,
+ "FORM": 19094,
+ "Mag": 19095,
+ "дон": 19096,
+ "▁storia": 19097,
+ "▁organized": 19098,
+ "ční": 19099,
+ "▁ox": 19100,
+ "lingen": 19101,
+ "▁luego": 19102,
+ "cció": 19103,
+ "▁rely": 19104,
+ "▁tussen": 19105,
+ "erten": 19106,
+ "▁honour": 19107,
+ "▁Claude": 19108,
+ "▁Korea": 19109,
+ "▁Metropol": 19110,
+ "Super": 19111,
+ "rien": 19112,
+ "érature": 19113,
+ "attro": 19114,
+ "▁біль": 19115,
+ "▁Herbert": 19116,
+ "▁auteurs": 19117,
+ "▁darauf": 19118,
+ "▁mental": 19119,
+ "▁rang": 19120,
+ "▁són": 19121,
+ "▁Soph": 19122,
+ ")\",": 19123,
+ "Descriptor": 19124,
+ "prepare": 19125,
+ "▁Landkreis": 19126,
+ "HC": 19127,
+ "cross": 19128,
+ "лиза": 19129,
+ "▁Login": 19130,
+ "onen": 19131,
+ "Feature": 19132,
+ "▁museum": 19133,
+ "vek": 19134,
+ "▁Nelson": 19135,
+ "▁rejo": 19136,
+ "▁команди": 19137,
+ "▁summar": 19138,
+ "▁следу": 19139,
+ "ämp": 19140,
+ "▁Gas": 19141,
+ "вом": 19142,
+ "VALUE": 19143,
+ "inge": 19144,
+ "period": 19145,
+ "lassen": 19146,
+ "ával": 19147,
+ "▁altogether": 19148,
+ "umph": 19149,
+ "istro": 19150,
+ "ąż": 19151,
+ "▁Keep": 19152,
+ "▁Marco": 19153,
+ "▁étant": 19154,
+ "▁Dre": 19155,
+ "geometry": 19156,
+ "▁Kas": 19157,
+ "messages": 19158,
+ "Cook": 19159,
+ "▁Side": 19160,
+ "▁коми": 19161,
+ "стри": 19162,
+ "▁excess": 19163,
+ "▁Biografia": 19164,
+ "XXXX": 19165,
+ "▁Nie": 19166,
+ "vendor": 19167,
+ "xsd": 19168,
+ "Mill": 19169,
+ "processing": 19170,
+ "▁Missouri": 19171,
+ "▁permett": 19172,
+ "▁apar": 19173,
+ "▁crowd": 19174,
+ "fert": 19175,
+ "▁Dou": 19176,
+ "rí": 19177,
+ "▁CC": 19178,
+ "▁payment": 19179,
+ "▁Hollywood": 19180,
+ "▁Virtual": 19181,
+ "▁spoken": 19182,
+ "▁tram": 19183,
+ "▁Community": 19184,
+ "▁administrative": 19185,
+ "▁воло": 19186,
+ "gior": 19187,
+ "visor": 19188,
+ "▁Украи": 19189,
+ "stage": 19190,
+ "▁Format": 19191,
+ "▁convenient": 19192,
+ "На": 19193,
+ "▁median": 19194,
+ "▁вра": 19195,
+ "▁Према": 19196,
+ "enig": 19197,
+ "▁Opera": 19198,
+ "rés": 19199,
+ "▁fmt": 19200,
+ "▁efficiency": 19201,
+ "male": 19202,
+ "Master": 19203,
+ "Series": 19204,
+ "▁syd": 19205,
+ "generic": 19206,
+ "interval": 19207,
+ "▁efect": 19208,
+ "▁inwoners": 19209,
+ "лимпи": 19210,
+ "irement": 19211,
+ "Err": 19212,
+ "öh": 19213,
+ "▁lying": 19214,
+ "▁Settings": 19215,
+ "!=": 19216,
+ "ematic": 19217,
+ "argv": 19218,
+ "▁Basic": 19219,
+ "▁consideration": 19220,
+ "▁habe": 19221,
+ "-%": 19222,
+ "▁mountains": 19223,
+ "▁peak": 19224,
+ "▁fallen": 19225,
+ "eded": 19226,
+ "logic": 19227,
+ "▁matched": 19228,
+ "▁typing": 19229,
+ ")},": 19230,
+ "▁fancy": 19231,
+ "▁elegant": 19232,
+ "ال": 19233,
+ "▁участ": 19234,
+ "▁Sarah": 19235,
+ "▁Verd": 19236,
+ "▁tego": 19237,
+ "rules": 19238,
+ "▁mounted": 19239,
+ "▁ім": 19240,
+ "еру": 19241,
+ "stoff": 19242,
+ "fahren": 19243,
+ "distance": 19244,
+ "▁License": 19245,
+ "▁LEFT": 19246,
+ "▁wp": 19247,
+ "/{": 19248,
+ "▁amazon": 19249,
+ ">&": 19250,
+ "▁első": 19251,
+ "quarters": 19252,
+ "▁shock": 19253,
+ "nick": 19254,
+ "▁Archite": 19255,
+ "▁Square": 19256,
+ "▁rates": 19257,
+ "iore": 19258,
+ "▁Nat": 19259,
+ "▁Charlot": 19260,
+ "reichen": 19261,
+ "▁variation": 19262,
+ "osis": 19263,
+ "life": 19264,
+ "slide": 19265,
+ "abi": 19266,
+ "uki": 19267,
+ "mysq": 19268,
+ "▁primitive": 19269,
+ "▁universitaire": 19270,
+ "LENG": 19271,
+ "ależ": 19272,
+ "ebook": 19273,
+ "syn": 19274,
+ "▁Gegen": 19275,
+ "▁Kü": 19276,
+ "▁але": 19277,
+ "▁Lub": 19278,
+ "concurrent": 19279,
+ "izzato": 19280,
+ "▁stub": 19281,
+ "▁ie": 19282,
+ "▁'./": 19283,
+ "cod": 19284,
+ "▁internacional": 19285,
+ "▁Glas": 19286,
+ "▁mare": 19287,
+ "▁Neb": 19288,
+ "▁GB": 19289,
+ "kwargs": 19290,
+ "▁aument": 19291,
+ "WID": 19292,
+ "▁род": 19293,
+ "punkt": 19294,
+ "▁Grad": 19295,
+ "SN": 19296,
+ "AMP": 19297,
+ "▁Born": 19298,
+ "▁Guerre": 19299,
+ "готов": 19300,
+ "▁medio": 19301,
+ "Med": 19302,
+ "supp": 19303,
+ "actual": 19304,
+ "dropdown": 19305,
+ "▁oktober": 19306,
+ "▁ř": 19307,
+ "▁circular": 19308,
+ "▁skin": 19309,
+ "▁emphas": 19310,
+ "▁голов": 19311,
+ "▁pue": 19312,
+ "▁informations": 19313,
+ "▁Wolfgang": 19314,
+ "▁useless": 19315,
+ "ит": 19316,
+ "▁Joan": 19317,
+ "▁бор": 19318,
+ "▁Glad": 19319,
+ "▁Know": 19320,
+ "ként": 19321,
+ "speed": 19322,
+ "▁Kevin": 19323,
+ "unft": 19324,
+ "▁arqu": 19325,
+ "▁Casa": 19326,
+ "(...": 19327,
+ "▁rapidly": 19328,
+ "▁proble": 19329,
+ "▁Википеди": 19330,
+ "žen": 19331,
+ "▁Neben": 19332,
+ "▁Meter": 19333,
+ "Children": 19334,
+ "cem": 19335,
+ "igos": 19336,
+ "aju": 19337,
+ "▁Retrie": 19338,
+ "▁Hell": 19339,
+ "▁gig": 19340,
+ "▁controvers": 19341,
+ "▁zoom": 19342,
+ "▁cens": 19343,
+ "▁alcuni": 19344,
+ "▁Header": 19345,
+ "Meta": 19346,
+ "Required": 19347,
+ "▁институ": 19348,
+ "▁skup": 19349,
+ "▁ingles": 19350,
+ "égl": 19351,
+ "bij": 19352,
+ "▁tér": 19353,
+ "▁compag": 19354,
+ "▁committed": 19355,
+ "▁processed": 19356,
+ "Lower": 19357,
+ "▁Foreign": 19358,
+ "▁seq": 19359,
+ "sheets": 19360,
+ "▁Fem": 19361,
+ "hoz": 19362,
+ "inks": 19363,
+ "▁kall": 19364,
+ "variant": 19365,
+ "▁libro": 19366,
+ "▁clicks": 19367,
+ "▁gobierno": 19368,
+ "iegel": 19369,
+ "мого": 19370,
+ "geme": 19371,
+ "▁tower": 19372,
+ "▁parish": 19373,
+ "▁TCP": 19374,
+ "▁ls": 19375,
+ "▁nginx": 19376,
+ "NaN": 19377,
+ "▁Dir": 19378,
+ "▁Begriffe": 19379,
+ "arie": 19380,
+ "ímp": 19381,
+ "icios": 19382,
+ "▁sharing": 19383,
+ "▁cinéma": 19384,
+ "bec": 19385,
+ "RED": 19386,
+ "▁Kra": 19387,
+ "abol": 19388,
+ "▁flux": 19389,
+ "▁expensive": 19390,
+ "▁суще": 19391,
+ "▁`_": 19392,
+ "ocz": 19393,
+ "лист": 19394,
+ "▁acquaint": 19395,
+ "▁wise": 19396,
+ "▁pouvoir": 19397,
+ "▁devant": 19398,
+ "▁momentum": 19399,
+ "immer": 19400,
+ "▁Coupe": 19401,
+ "indexOf": 19402,
+ "▁doesnt": 19403,
+ "▁зав": 19404,
+ "▁license": 19405,
+ "▁â": 19406,
+ "CSS": 19407,
+ "▁rice": 19408,
+ "Team": 19409,
+ "▁ano": 19410,
+ "lit": 19411,
+ "▁merged": 19412,
+ "▁Cell": 19413,
+ "лл": 19414,
+ "boy": 19415,
+ "asts": 19416,
+ "▁sell": 19417,
+ "▁große": 19418,
+ "▁virtuel": 19419,
+ "Cancel": 19420,
+ "▁sj": 19421,
+ "gment": 19422,
+ ".<": 19423,
+ "чай": 19424,
+ "ië": 19425,
+ "akh": 19426,
+ "izers": 19427,
+ "prit": 19428,
+ "▁Tib": 19429,
+ "▁elaborate": 19430,
+ "▁fé": 19431,
+ "▁меди": 19432,
+ "LENGTH": 19433,
+ "▁primarily": 19434,
+ "▁scores": 19435,
+ "▁carrying": 19436,
+ "▁lake": 19437,
+ "compose": 19438,
+ "▁Township": 19439,
+ "unge": 19440,
+ "▁alberga": 19441,
+ "anych": 19442,
+ "quelle": 19443,
+ "▁Ark": 19444,
+ "▁pris": 19445,
+ "▁voll": 19446,
+ "шли": 19447,
+ "Validation": 19448,
+ "▁ceux": 19449,
+ "▁populate": 19450,
+ "\"\r": 19451,
+ "▁femmes": 19452,
+ "ANG": 19453,
+ "▁Despite": 19454,
+ "вые": 19455,
+ "iske": 19456,
+ "zug": 19457,
+ "нача": 19458,
+ "▁hatten": 19459,
+ "INSERT": 19460,
+ "Employee": 19461,
+ "▁moments": 19462,
+ "▁última": 19463,
+ "▁holder": 19464,
+ "blank": 19465,
+ "Collections": 19466,
+ "athers": 19467,
+ "▁grade": 19468,
+ "▁affairs": 19469,
+ ".$$": 19470,
+ "▁delta": 19471,
+ "▁Jugend": 19472,
+ "▁español": 19473,
+ "▁OUT": 19474,
+ "▁mathematical": 19475,
+ "▁mongo": 19476,
+ "▁Фе": 19477,
+ "uling": 19478,
+ "▁revolution": 19479,
+ "▁coin": 19480,
+ "▁subclass": 19481,
+ "\"=>": 19482,
+ "äche": 19483,
+ "▁pyg": 19484,
+ "щая": 19485,
+ "illery": 19486,
+ "▁comenz": 19487,
+ "depth": 19488,
+ "▁cél": 19489,
+ "▁resize": 19490,
+ "▁Same": 19491,
+ "▁strik": 19492,
+ "▁tir": 19493,
+ "▁scarc": 19494,
+ "▁Member": 19495,
+ "subscribe": 19496,
+ "óż": 19497,
+ "útbol": 19498,
+ "except": 19499,
+ "▁driving": 19500,
+ "kie": 19501,
+ "zony": 19502,
+ "èmes": 19503,
+ "David": 19504,
+ "issant": 19505,
+ "▁ты": 19506,
+ "▁élect": 19507,
+ "▁rename": 19508,
+ "▁Running": 19509,
+ "▁interfaces": 19510,
+ "////////////////": 19511,
+ "▁Walker": 19512,
+ "▁société": 19513,
+ "▁asks": 19514,
+ "brid": 19515,
+ "▁jewe": 19516,
+ "▁seines": 19517,
+ "▁agents": 19518,
+ "▁MY": 19519,
+ "▁Lawrence": 19520,
+ "dess": 19521,
+ "iesen": 19522,
+ "▁людях": 19523,
+ "прави": 19524,
+ "▁ancest": 19525,
+ "▁welche": 19526,
+ "raum": 19527,
+ "▁orb": 19528,
+ "scal": 19529,
+ "▁Lear": 19530,
+ "▁wear": 19531,
+ "▁slave": 19532,
+ "▁renamed": 19533,
+ "čen": 19534,
+ "maste": 19535,
+ "angles": 19536,
+ "▁América": 19537,
+ "▁ti": 19538,
+ "▁demsel": 19539,
+ "▁beneath": 19540,
+ "binary": 19541,
+ "▁edición": 19542,
+ "▁kilomet": 19543,
+ "uits": 19544,
+ "▁cuatro": 19545,
+ "▁entrance": 19546,
+ "ondissement": 19547,
+ "▁bag": 19548,
+ "▁Armen": 19549,
+ "ijo": 19550,
+ "▁Lors": 19551,
+ "▁demselben": 19552,
+ "êm": 19553,
+ "▁discrete": 19554,
+ "▁prominent": 19555,
+ "▁Jay": 19556,
+ "decor": 19557,
+ "DL": 19558,
+ "▁dí": 19559,
+ "Struct": 19560,
+ "▁Production": 19561,
+ "they": 19562,
+ "arius": 19563,
+ "schnitt": 19564,
+ "▁Cou": 19565,
+ "▁lex": 19566,
+ "youtube": 19567,
+ "▁работа": 19568,
+ "station": 19569,
+ "sep": 19570,
+ "▁mirror": 19571,
+ "▁hits": 19572,
+ "▁Beck": 19573,
+ "atically": 19574,
+ "▁Laz": 19575,
+ "▁winner": 19576,
+ "DEX": 19577,
+ "▁INT": 19578,
+ "}^{-": 19579,
+ "▁wegen": 19580,
+ "mad": 19581,
+ "Angle": 19582,
+ "zing": 19583,
+ "▁Bayern": 19584,
+ "sal": 19585,
+ "äger": 19586,
+ "▁busy": 19587,
+ "▁stör": 19588,
+ "▁folk": 19589,
+ "▁prix": 19590,
+ "▁allocated": 19591,
+ "▁pt": 19592,
+ "affen": 19593,
+ "cluster": 19594,
+ "▁complement": 19595,
+ "árs": 19596,
+ "▁Amerika": 19597,
+ "рій": 19598,
+ "▁valley": 19599,
+ "▁rooms": 19600,
+ "▁moi": 19601,
+ ".\",": 19602,
+ ";;;;": 19603,
+ "▁lowest": 19604,
+ "nog": 19605,
+ "▁landet": 19606,
+ "▁programme": 19607,
+ "chio": 19608,
+ "▁Während": 19609,
+ "ández": 19610,
+ "▁долж": 19611,
+ "▁ouv": 19612,
+ "omány": 19613,
+ "▁Википедии": 19614,
+ "▁só": 19615,
+ "▁elektr": 19616,
+ "Desc": 19617,
+ "▁Beaut": 19618,
+ "нар": 19619,
+ "▁може": 19620,
+ "Pierre": 19621,
+ "esota": 19622,
+ "▁operated": 19623,
+ "▁forte": 19624,
+ "рис": 19625,
+ "▁opposition": 19626,
+ "alia": 19627,
+ "▁Syl": 19628,
+ "getName": 19629,
+ "вели": 19630,
+ "fik": 19631,
+ "▁comprom": 19632,
+ "▁TextView": 19633,
+ "Spring": 19634,
+ "metadata": 19635,
+ "engu": 19636,
+ "/,": 19637,
+ "▁carri": 19638,
+ "istol": 19639,
+ "▁diagonal": 19640,
+ "lista": 19641,
+ "izen": 19642,
+ "▁rende": 19643,
+ "gcc": 19644,
+ "beck": 19645,
+ "lius": 19646,
+ "iral": 19647,
+ "Resolver": 19648,
+ "▁percentage": 19649,
+ "▁attra": 19650,
+ "strings": 19651,
+ "wiąz": 19652,
+ "ods": 19653,
+ "волю": 19654,
+ "ęż": 19655,
+ "▁newspaper": 19656,
+ "imiter": 19657,
+ "ABC": 19658,
+ "▁Manchester": 19659,
+ "[{": 19660,
+ "Agent": 19661,
+ "▁Wor": 19662,
+ "▁Kath": 19663,
+ "▁пові": 19664,
+ "▁entonces": 19665,
+ "▁niveau": 19666,
+ "atted": 19667,
+ "learn": 19668,
+ "atiques": 19669,
+ "▁уби": 19670,
+ "▁quindi": 19671,
+ "binding": 19672,
+ "▁imported": 19673,
+ "▁Horn": 19674,
+ "emberg": 19675,
+ "complex": 19676,
+ "▁neural": 19677,
+ "information": 19678,
+ "▁recognition": 19679,
+ "ingt": 19680,
+ "▁inhabitants": 19681,
+ "vue": 19682,
+ "▁Bevölker": 19683,
+ "▁curves": 19684,
+ "▁leb": 19685,
+ "дій": 19686,
+ "▁sow": 19687,
+ "▁sentiment": 19688,
+ "PH": 19689,
+ "rache": 19690,
+ "▁-(": 19691,
+ "▁estable": 19692,
+ "▁Ferdinand": 19693,
+ "▁écrit": 19694,
+ "▁primeiro": 19695,
+ "▁tex": 19696,
+ "▁intermediate": 19697,
+ "verage": 19698,
+ "ibus": 19699,
+ "▁serves": 19700,
+ "ivas": 19701,
+ "▁bru": 19702,
+ "▁lum": 19703,
+ "attice": 19704,
+ "чный": 19705,
+ "▁Dres": 19706,
+ "▁videos": 19707,
+ "duration": 19708,
+ "▁abit": 19709,
+ "▁egg": 19710,
+ "ographical": 19711,
+ "alph": 19712,
+ "STATE": 19713,
+ "▁пара": 19714,
+ "reading": 19715,
+ "▁vehicle": 19716,
+ "▁fortune": 19717,
+ "ultats": 19718,
+ "▁Storia": 19719,
+ "midt": 19720,
+ "łącz": 19721,
+ "▁Memorial": 19722,
+ "▁vas": 19723,
+ "▁зан": 19724,
+ "▁utility": 19725,
+ "▁obsc": 19726,
+ "▁relacion": 19727,
+ "▁runat": 19728,
+ "Release": 19729,
+ "take": 19730,
+ "▁Oliver": 19731,
+ "▁Sid": 19732,
+ "ulos": 19733,
+ "▁Garc": 19734,
+ "▁розта": 19735,
+ "▁Sak": 19736,
+ "Py": 19737,
+ "führt": 19738,
+ "▁trabal": 19739,
+ "*{": 19740,
+ "▁zes": 19741,
+ "▁szere": 19742,
+ "▁varios": 19743,
+ "▁otra": 19744,
+ "▁eval": 19745,
+ "▁situé": 19746,
+ "▁wounded": 19747,
+ "▁Vincent": 19748,
+ "▁викори": 19749,
+ "▁encode": 19750,
+ "Modal": 19751,
+ "▁forb": 19752,
+ "▁dynamics": 19753,
+ "▁depos": 19754,
+ "arde": 19755,
+ "▁streets": 19756,
+ "▁Komm": 19757,
+ "=$(": 19758,
+ "▁повер": 19759,
+ "▁dois": 19760,
+ "▁vitt": 19761,
+ "▁automatisch": 19762,
+ "▁reload": 19763,
+ "▁Verwalt": 19764,
+ "bero": 19765,
+ "▁hub": 19766,
+ "▁mos": 19767,
+ "▁tutto": 19768,
+ "▁Frederick": 19769,
+ "łow": 19770,
+ "antages": 19771,
+ "aque": 19772,
+ "paper": 19773,
+ "▁einige": 19774,
+ "`),": 19775,
+ "dj": 19776,
+ "▁Ple": 19777,
+ "▁%,": 19778,
+ "▁Bitmap": 19779,
+ "▁friendly": 19780,
+ "▁truly": 19781,
+ "▁stroke": 19782,
+ "roph": 19783,
+ "▁engl": 19784,
+ "▁coff": 19785,
+ "▁dust": 19786,
+ "▁Jahres": 19787,
+ "ppi": 19788,
+ "▁wys": 19789,
+ "factor": 19790,
+ "schluss": 19791,
+ "▁деревня": 19792,
+ "▁Past": 19793,
+ "▁дома": 19794,
+ "COM": 19795,
+ "▁pueden": 19796,
+ "▁gift": 19797,
+ "▁Gla": 19798,
+ "▁triggered": 19799,
+ "ély": 19800,
+ "ülés": 19801,
+ "▁Oliv": 19802,
+ "▁verso": 19803,
+ "▁lle": 19804,
+ "▁Gli": 19805,
+ "▁Ltd": 19806,
+ "oa": 19807,
+ "▁territorio": 19808,
+ "ordre": 19809,
+ "▁deck": 19810,
+ "dra": 19811,
+ "aszt": 19812,
+ "▁concerning": 19813,
+ "▁Additionally": 19814,
+ "▁které": 19815,
+ "▁grund": 19816,
+ "▁Gest": 19817,
+ "▁misunder": 19818,
+ "pret": 19819,
+ "────": 19820,
+ "▁reputation": 19821,
+ "zia": 19822,
+ "▁успе": 19823,
+ "▁escaped": 19824,
+ "▁Prag": 19825,
+ "perform": 19826,
+ "▁austral": 19827,
+ "▁Vater": 19828,
+ "час": 19829,
+ "▁races": 19830,
+ "▁Byte": 19831,
+ "Mask": 19832,
+ "▁Territ": 19833,
+ "стю": 19834,
+ "▁Voci": 19835,
+ "▁Fichier": 19836,
+ "▁Населення": 19837,
+ "▁Unterscheidung": 19838,
+ "teenth": 19839,
+ "▁pilot": 19840,
+ "▁ji": 19841,
+ "▁двух": 19842,
+ "▁orientation": 19843,
+ "indre": 19844,
+ "▁Dort": 19845,
+ "ças": 19846,
+ "пли": 19847,
+ "▁reaction": 19848,
+ "▁consisting": 19849,
+ "▁ferro": 19850,
+ "тисти": 19851,
+ "yard": 19852,
+ "▁сві": 19853,
+ "▁interpretation": 19854,
+ "ią": 19855,
+ "rah": 19856,
+ "▁fand": 19857,
+ "Public": 19858,
+ "▁universe": 19859,
+ "▁retir": 19860,
+ "▁conscious": 19861,
+ "arqu": 19862,
+ "▁waste": 19863,
+ "▁Bib": 19864,
+ "yclerView": 19865,
+ "▁listening": 19866,
+ "gleich": 19867,
+ "niejs": 19868,
+ "▁correlation": 19869,
+ "▁receiver": 19870,
+ "▁уда": 19871,
+ "▁courage": 19872,
+ "uchs": 19873,
+ "fass": 19874,
+ "▁chunk": 19875,
+ "▁Anfang": 19876,
+ "▁großen": 19877,
+ "continue": 19878,
+ "▁Warszawa": 19879,
+ "hé": 19880,
+ "iy": 19881,
+ "ivement": 19882,
+ "▁α": 19883,
+ "▁exposed": 19884,
+ "▁zahl": 19885,
+ "▁sacr": 19886,
+ "▁Looks": 19887,
+ "▁eager": 19888,
+ "enten": 19889,
+ "Cursor": 19890,
+ "/_": 19891,
+ "ixa": 19892,
+ "рела": 19893,
+ "знача": 19894,
+ "▁фамилией": 19895,
+ "▁argent": 19896,
+ "▁Anders": 19897,
+ "œuvre": 19898,
+ "▁Isa": 19899,
+ "мента": 19900,
+ "▁advers": 19901,
+ "riction": 19902,
+ "GP": 19903,
+ "▁після": 19904,
+ "▁preserve": 19905,
+ "▁Garden": 19906,
+ "Rate": 19907,
+ "après": 19908,
+ "▁readable": 19909,
+ "indu": 19910,
+ "▁skill": 19911,
+ "▁helping": 19912,
+ "ographique": 19913,
+ "cling": 19914,
+ "ologist": 19915,
+ "▁Filter": 19916,
+ "▁finger": 19917,
+ "▁Vall": 19918,
+ "▁Polish": 19919,
+ "lg": 19920,
+ "▁Familien": 19921,
+ "▁waters": 19922,
+ "▁pseud": 19923,
+ "aza": 19924,
+ "_)": 19925,
+ "ARY": 19926,
+ "▁среди": 19927,
+ "▁Must": 19928,
+ "▁Bod": 19929,
+ "anon": 19930,
+ "▁lado": 19931,
+ "▁tight": 19932,
+ "imen": 19933,
+ "appen": 19934,
+ "frames": 19935,
+ "ingers": 19936,
+ "▁COVID": 19937,
+ "▁зі": 19938,
+ "▁све": 19939,
+ "▁ць": 19940,
+ "▁Left": 19941,
+ "]];": 19942,
+ "чь": 19943,
+ "фика": 19944,
+ "▁сло": 19945,
+ "▁пі": 19946,
+ "▁existe": 19947,
+ "▁Atlantic": 19948,
+ "▁maintained": 19949,
+ "▁irre": 19950,
+ "▁année": 19951,
+ "▁commented": 19952,
+ "веро": 19953,
+ "berta": 19954,
+ "▁Lad": 19955,
+ "▁Upon": 19956,
+ "▁pause": 19957,
+ "mill": 19958,
+ "opter": 19959,
+ "UK": 19960,
+ "рес": 19961,
+ "нциклопеди": 19962,
+ "▁alongside": 19963,
+ "▁robot": 19964,
+ "▁fert": 19965,
+ "▁moy": 19966,
+ "▁ade": 19967,
+ "Mapper": 19968,
+ ")->": 19969,
+ "igua": 19970,
+ "étique": 19971,
+ "тка": 19972,
+ "alias": 19973,
+ "▁ори": 19974,
+ "▁Magn": 19975,
+ "▁gehörte": 19976,
+ "imb": 19977,
+ ")}{\\": 19978,
+ "▁Wikipédia": 19979,
+ "▁urs": 19980,
+ "▁ende": 19981,
+ "leb": 19982,
+ "▁GC": 19983,
+ "Hol": 19984,
+ "ancing": 19985,
+ "Union": 19986,
+ "▁tenía": 19987,
+ "TT": 19988,
+ "▁estate": 19989,
+ "há": 19990,
+ "▁полі": 19991,
+ "ultan": 19992,
+ "▁Hockey": 19993,
+ "ulse": 19994,
+ "▁choices": 19995,
+ "scher": 19996,
+ "▁[],": 19997,
+ "▁potentially": 19998,
+ "▁Übers": 19999,
+ "▁admit": 20000,
+ "Comment": 20001,
+ "стя": 20002,
+ "▁Vien": 20003,
+ "▁ці": 20004,
+ "▁permut": 20005,
+ "cgi": 20006,
+ "▁crít": 20007,
+ "Console": 20008,
+ "ctic": 20009,
+ "▁okres": 20010,
+ "awk": 20011,
+ "football": 20012,
+ "ouest": 20013,
+ "CTYPE": 20014,
+ "ologique": 20015,
+ "▁constit": 20016,
+ "▁interests": 20017,
+ "▁Progress": 20018,
+ "▁Menu": 20019,
+ "▁také": 20020,
+ "▁Asian": 20021,
+ "▁защи": 20022,
+ "▁younger": 20023,
+ "▁wished": 20024,
+ "▁Sort": 20025,
+ "▁audience": 20026,
+ "amba": 20027,
+ "▁gehört": 20028,
+ "▁Kansas": 20029,
+ "yaume": 20030,
+ "▁Professional": 20031,
+ "âce": 20032,
+ "▁fatto": 20033,
+ "tod": 20034,
+ "▁datasets": 20035,
+ "▁fare": 20036,
+ "▁waves": 20037,
+ "~/": 20038,
+ "▁measurement": 20039,
+ "▁wol": 20040,
+ "indust": 20041,
+ "▁struggling": 20042,
+ "▁pulled": 20043,
+ "▁caratter": 20044,
+ "▁Externe": 20045,
+ "▁действи": 20046,
+ "cnt": 20047,
+ "liches": 20048,
+ "▁Possible": 20049,
+ "▁faced": 20050,
+ "▁hypothesis": 20051,
+ "▁kilom": 20052,
+ "▁när": 20053,
+ "boolean": 20054,
+ "PY": 20055,
+ "ampa": 20056,
+ "▁kiss": 20057,
+ "▁astero": 20058,
+ "▁negli": 20059,
+ "aments": 20060,
+ "▁Stu": 20061,
+ "ató": 20062,
+ "▁Constitution": 20063,
+ "▁interpol": 20064,
+ "▁Unable": 20065,
+ "▁pis": 20066,
+ "▁parc": 20067,
+ "\"])": 20068,
+ "pler": 20069,
+ "▁autory": 20070,
+ "▁algunos": 20071,
+ "ywna": 20072,
+ "}))": 20073,
+ "▁falls": 20074,
+ "▁équip": 20075,
+ "▁emit": 20076,
+ "▁profil": 20077,
+ "gets": 20078,
+ "фо": 20079,
+ "▁Military": 20080,
+ "▁nombreux": 20081,
+ "oct": 20082,
+ "Replace": 20083,
+ "▁seasons": 20084,
+ "▁château": 20085,
+ "▁typeof": 20086,
+ "polit": 20087,
+ "▁rand": 20088,
+ "▁quar": 20089,
+ "▁erstmals": 20090,
+ "сини": 20091,
+ "▁payload": 20092,
+ "По": 20093,
+ "кін": 20094,
+ "repo": 20095,
+ "▁Pav": 20096,
+ "Score": 20097,
+ "erves": 20098,
+ "▁sollte": 20099,
+ "▁між": 20100,
+ "ébec": 20101,
+ "▁clip": 20102,
+ "▁Nice": 20103,
+ "▁neben": 20104,
+ "▁assass": 20105,
+ "itories": 20106,
+ "▁unity": 20107,
+ "▁ен": 20108,
+ "▁Institut": 20109,
+ "▁internationale": 20110,
+ "▁наук": 20111,
+ "▁comand": 20112,
+ "▁kleine": 20113,
+ "▁adjacent": 20114,
+ "▁delivered": 20115,
+ "▁ше": 20116,
+ "зем": 20117,
+ "▁cot": 20118,
+ "visual": 20119,
+ "вает": 20120,
+ "▁Census": 20121,
+ "\\_": 20122,
+ "▁territory": 20123,
+ "чил": 20124,
+ "чные": 20125,
+ "flutter": 20126,
+ "DidLoad": 20127,
+ "Documents": 20128,
+ "▁dob": 20129,
+ "Bre": 20130,
+ "animate": 20131,
+ "▁biz": 20132,
+ "▁bata": 20133,
+ "▁SU": 20134,
+ "eso": 20135,
+ "▁priority": 20136,
+ "ván": 20137,
+ "iras": 20138,
+ "▁charged": 20139,
+ "▁Micro": 20140,
+ "atoire": 20141,
+ "чер": 20142,
+ "abad": 20143,
+ "uru": 20144,
+ "▁vš": 20145,
+ "dire": 20146,
+ "▁Twitter": 20147,
+ "▁мето": 20148,
+ ")..": 20149,
+ "▁Цент": 20150,
+ "▁entwick": 20151,
+ "▁Mind": 20152,
+ "▁функ": 20153,
+ "Future": 20154,
+ "lst": 20155,
+ "łoż": 20156,
+ "fli": 20157,
+ "tensor": 20158,
+ "▁topology": 20159,
+ "▁arte": 20160,
+ "ERT": 20161,
+ "▁variance": 20162,
+ "Images": 20163,
+ "▁(@": 20164,
+ "ArrayList": 20165,
+ "OC": 20166,
+ "▁Демо": 20167,
+ "aucoup": 20168,
+ "▁denotes": 20169,
+ "imon": 20170,
+ "њи": 20171,
+ "▁Przyp": 20172,
+ "▁Zag": 20173,
+ "▁дире": 20174,
+ "▁Similarly": 20175,
+ "бро": 20176,
+ "▁militaire": 20177,
+ "▁тому": 20178,
+ "▁Johnny": 20179,
+ "▁Мексику": 20180,
+ "ћа": 20181,
+ "Supp": 20182,
+ "▁junior": 20183,
+ "oltre": 20184,
+ "▁Моск": 20185,
+ "▁admitted": 20186,
+ "▁religios": 20187,
+ "зяй": 20188,
+ "его": 20189,
+ "▁tears": 20190,
+ "ingo": 20191,
+ "odu": 20192,
+ "iveness": 20193,
+ "▁logo": 20194,
+ "▁último": 20195,
+ "▁aliment": 20196,
+ "▁UITableView": 20197,
+ ")!": 20198,
+ "▁nj": 20199,
+ "lette": 20200,
+ "▁resident": 20201,
+ "▁termine": 20202,
+ "▁уже": 20203,
+ "▁Сте": 20204,
+ "office": 20205,
+ "▁carte": 20206,
+ "▁livre": 20207,
+ "▁Москов": 20208,
+ "▁elections": 20209,
+ "зиден": 20210,
+ "Trigger": 20211,
+ "▁Benjamin": 20212,
+ "addClass": 20213,
+ "ског": 20214,
+ "▁Observable": 20215,
+ "Cla": 20216,
+ "gemein": 20217,
+ "▁consent": 20218,
+ "ври": 20219,
+ "▁unfold": 20220,
+ "▁governor": 20221,
+ "нал": 20222,
+ "▁toda": 20223,
+ "Remote": 20224,
+ "arias": 20225,
+ "▁instal": 20226,
+ "fixed": 20227,
+ "▁decay": 20228,
+ "▁дерев": 20229,
+ "xyz": 20230,
+ "▁DATE": 20231,
+ "imar": 20232,
+ "ntil": 20233,
+ "▁startup": 20234,
+ "alion": 20235,
+ "▁kolej": 20236,
+ "cios": 20237,
+ "▁ranges": 20238,
+ "▁stupid": 20239,
+ "▁implementations": 20240,
+ "▁rm": 20241,
+ "ének": 20242,
+ "▁gcc": 20243,
+ "▁scène": 20244,
+ "Navigation": 20245,
+ "▁ ": 20246,
+ "▁кан": 20247,
+ "▁towns": 20248,
+ "Username": 20249,
+ "▁фе": 20250,
+ "▁leaders": 20251,
+ "oit": 20252,
+ "wär": 20253,
+ "▁dummy": 20254,
+ "▁assistant": 20255,
+ "{$\\": 20256,
+ "бір": 20257,
+ "▁roy": 20258,
+ "▁Layout": 20259,
+ "▁Jung": 20260,
+ "Lines": 20261,
+ "▁Holland": 20262,
+ "пор": 20263,
+ "▁Гри": 20264,
+ "▁Bened": 20265,
+ "▁Под": 20266,
+ "xls": 20267,
+ "▁Gol": 20268,
+ "▁Aleks": 20269,
+ "▁ejemplo": 20270,
+ "▁sezon": 20271,
+ "arding": 20272,
+ "footnote": 20273,
+ "▁Congrès": 20274,
+ "refer": 20275,
+ "ската": 20276,
+ "Iterator": 20277,
+ "▁ourselves": 20278,
+ "▁Mic": 20279,
+ "▁código": 20280,
+ "▁площа": 20281,
+ "▁\\$": 20282,
+ "▁Charlie": 20283,
+ "Nodes": 20284,
+ "▁puzz": 20285,
+ "▁Identifier": 20286,
+ "▁flutter": 20287,
+ "▁prü": 20288,
+ "▁ort": 20289,
+ "▁Cort": 20290,
+ "asticsearch": 20291,
+ "▁Свя": 20292,
+ "▁Bull": 20293,
+ "udem": 20294,
+ "▁apparent": 20295,
+ ":--": 20296,
+ "▁Хар": 20297,
+ "▁Lap": 20298,
+ "▁comport": 20299,
+ "matically": 20300,
+ "▁curios": 20301,
+ "▁может": 20302,
+ "▁Bh": 20303,
+ "apping": 20304,
+ "▁basketball": 20305,
+ "zetek": 20306,
+ "▁runt": 20307,
+ "▁Milan": 20308,
+ "fection": 20309,
+ "ría": 20310,
+ "▁Kin": 20311,
+ "▁slower": 20312,
+ "both": 20313,
+ "▁Instituto": 20314,
+ "▁Historical": 20315,
+ "▁również": 20316,
+ "matches": 20317,
+ "yci": 20318,
+ "▁espèce": 20319,
+ "▁Schweizer": 20320,
+ "NT": 20321,
+ "SF": 20322,
+ "acia": 20323,
+ "forge": 20324,
+ "Points": 20325,
+ "numbers": 20326,
+ "▁falling": 20327,
+ "▁inheritance": 20328,
+ "▁Erst": 20329,
+ "▁customers": 20330,
+ "▁actu": 20331,
+ "▁migration": 20332,
+ "\\'": 20333,
+ "Plan": 20334,
+ "Mr": 20335,
+ "othy": 20336,
+ "▁upgrad": 20337,
+ "бира": 20338,
+ "▁Offic": 20339,
+ "▁Wait": 20340,
+ "▁toler": 20341,
+ "ardon": 20342,
+ "▁slide": 20343,
+ ")_": 20344,
+ "▁став": 20345,
+ "▁nuclear": 20346,
+ "▁Bil": 20347,
+ "owner": 20348,
+ "▁Harris": 20349,
+ "Information": 20350,
+ "▁pó": 20351,
+ "▁включа": 20352,
+ "▁nuovo": 20353,
+ "▁Cav": 20354,
+ "▁Descri": 20355,
+ "▁ак": 20356,
+ "ództ": 20357,
+ "▁reactjs": 20358,
+ "▁Adams": 20359,
+ "▁Alternatively": 20360,
+ "струк": 20361,
+ ")`,": 20362,
+ "substring": 20363,
+ "▁massive": 20364,
+ "▁heavily": 20365,
+ "▁сезо": 20366,
+ "▁Ana": 20367,
+ "▁vale": 20368,
+ "Pad": 20369,
+ "▁Either": 20370,
+ "▁rs": 20371,
+ "anche": 20372,
+ "▁uploaded": 20373,
+ "▁(/": 20374,
+ "▁спор": 20375,
+ "▁reduction": 20376,
+ "▁Tokyo": 20377,
+ "gren": 20378,
+ "▁migli": 20379,
+ "▁iterator": 20380,
+ "stav": 20381,
+ "▁supporting": 20382,
+ "▁österreich": 20383,
+ "▁NSLog": 20384,
+ "istiques": 20385,
+ "rimin": 20386,
+ "MODE": 20387,
+ "}}}\\": 20388,
+ "▁explos": 20389,
+ "оте": 20390,
+ "▁(„": 20391,
+ "Sal": 20392,
+ "▁simplest": 20393,
+ "▁già": 20394,
+ "▁тан": 20395,
+ "▁cyl": 20396,
+ "bir": 20397,
+ "▁measurements": 20398,
+ "Created": 20399,
+ "erek": 20400,
+ "lookup": 20401,
+ "wirtschaft": 20402,
+ "▁Воло": 20403,
+ "timer": 20404,
+ "derr": 20405,
+ "▁стала": 20406,
+ "▁scenes": 20407,
+ "▁persu": 20408,
+ "liest": 20409,
+ "▁schedule": 20410,
+ "tal": 20411,
+ "лено": 20412,
+ "▁painting": 20413,
+ "▁improvement": 20414,
+ "software": 20415,
+ "▁governo": 20416,
+ "▁Hir": 20417,
+ "Execution": 20418,
+ "▁Okay": 20419,
+ "Prop": 20420,
+ "loster": 20421,
+ "ніципалі": 20422,
+ "▁peuvent": 20423,
+ "olu": 20424,
+ "▁Фа": 20425,
+ "rollo": 20426,
+ "▁коло": 20427,
+ "▁carrière": 20428,
+ "▁toggle": 20429,
+ "▁($\\": 20430,
+ "▁aggregate": 20431,
+ "▁Бі": 20432,
+ "textarea": 20433,
+ "Ok": 20434,
+ "itto": 20435,
+ "▁stim": 20436,
+ "▁recursion": 20437,
+ "▁Federation": 20438,
+ ")_{": 20439,
+ "ategor": 20440,
+ "▁distribu": 20441,
+ "Cloud": 20442,
+ "▁madre": 20443,
+ "▁iv": 20444,
+ "▁Lieutenant": 20445,
+ "▁substant": 20446,
+ "▁leaf": 20447,
+ "▁Kontrola": 20448,
+ "VA": 20449,
+ "▁tomb": 20450,
+ "эн": 20451,
+ "atoes": 20452,
+ "▁godine": 20453,
+ "▁#>": 20454,
+ "Cert": 20455,
+ "▁empresa": 20456,
+ "Props": 20457,
+ "▁planned": 20458,
+ "▁randomly": 20459,
+ "jähr": 20460,
+ "elem": 20461,
+ "▁Operation": 20462,
+ "*`": 20463,
+ "protocol": 20464,
+ "()));": 20465,
+ "wel": 20466,
+ "▁praw": 20467,
+ "▁сим": 20468,
+ "▁wob": 20469,
+ "▁hace": 20470,
+ "▁nearest": 20471,
+ "disable": 20472,
+ "▁Commun": 20473,
+ "▁revel": 20474,
+ "Free": 20475,
+ "▁brackets": 20476,
+ "IOException": 20477,
+ "▁alto": 20478,
+ "▁marry": 20479,
+ "▁auc": 20480,
+ "),\\": 20481,
+ "▁typo": 20482,
+ "edad": 20483,
+ "ará": 20484,
+ "icator": 20485,
+ "tatywna": 20486,
+ "▁buff": 20487,
+ "orders": 20488,
+ "▁asynchronous": 20489,
+ "▁econ": 20490,
+ "▁feu": 20491,
+ "▁Iron": 20492,
+ "▁rising": 20493,
+ "Radius": 20494,
+ "clk": 20495,
+ "▁zweiten": 20496,
+ "`'": 20497,
+ "▁uniqu": 20498,
+ "▁FM": 20499,
+ "▁Bran": 20500,
+ "▁flu": 20501,
+ "▁sensitive": 20502,
+ "urre": 20503,
+ "▁Iter": 20504,
+ "▁Sein": 20505,
+ "▁diferentes": 20506,
+ "▁него": 20507,
+ "chia": 20508,
+ "▁Anleitung": 20509,
+ "aturday": 20510,
+ "▁shorter": 20511,
+ "▁translated": 20512,
+ "▁Rés": 20513,
+ "▁rode": 20514,
+ "drag": 20515,
+ "▁lange": 20516,
+ "Bi": 20517,
+ "üb": 20518,
+ "leur": 20519,
+ "▁ordering": 20520,
+ "alous": 20521,
+ "▁Кор": 20522,
+ "archar": 20523,
+ "destroy": 20524,
+ "ervation": 20525,
+ "]],": 20526,
+ "AccessorImpl": 20527,
+ "▁autorytatywna": 20528,
+ "Sequence": 20529,
+ "▁proyect": 20530,
+ "▁bran": 20531,
+ "▁(+": 20532,
+ "▁Kab": 20533,
+ "▁zem": 20534,
+ "▁Calcul": 20535,
+ "▁seul": 20536,
+ "▁Niger": 20537,
+ "▁chiam": 20538,
+ "throw": 20539,
+ "▁Planet": 20540,
+ "bildung": 20541,
+ "▁zones": 20542,
+ "transition": 20543,
+ "лений": 20544,
+ "▁mapped": 20545,
+ "onaut": 20546,
+ "Pair": 20547,
+ "ilian": 20548,
+ "▁Morgan": 20549,
+ "▁unto": 20550,
+ "jou": 20551,
+ "▁hid": 20552,
+ "▁Meta": 20553,
+ "▁elles": 20554,
+ "Lou": 20555,
+ "rama": 20556,
+ "geordnet": 20557,
+ "▁scarcely": 20558,
+ "▁mint": 20559,
+ "Focus": 20560,
+ "▁Alter": 20561,
+ "▁dio": 20562,
+ "▁ampl": 20563,
+ "ièrement": 20564,
+ "▁исследова": 20565,
+ "LED": 20566,
+ "algorithm": 20567,
+ "▁сайті": 20568,
+ "▁\"\")": 20569,
+ "History": 20570,
+ "pk": 20571,
+ "▁Whit": 20572,
+ "▁систем": 20573,
+ "▁Kirchen": 20574,
+ "rà": 20575,
+ "APP": 20576,
+ "▁<%": 20577,
+ "antine": 20578,
+ "▁Disk": 20579,
+ "conv": 20580,
+ "welt": 20581,
+ "▁Fut": 20582,
+ "▁Nom": 20583,
+ "ordo": 20584,
+ "ellij": 20585,
+ "▁receives": 20586,
+ "cow": 20587,
+ "ytu": 20588,
+ "▁obras": 20589,
+ "▁purchase": 20590,
+ "▁earned": 20591,
+ "▁accessed": 20592,
+ "axi": 20593,
+ "▁Mans": 20594,
+ "ivan": 20595,
+ "▁tuvo": 20596,
+ "▁Trace": 20597,
+ "rimonio": 20598,
+ "▁desenvol": 20599,
+ "érique": 20600,
+ "▁resulted": 20601,
+ "▁computing": 20602,
+ "▁inspired": 20603,
+ "▁Prize": 20604,
+ "*\"": 20605,
+ "Comput": 20606,
+ "▁extensive": 20607,
+ "èg": 20608,
+ "▁Portály": 20609,
+ "▁castle": 20610,
+ "▁*.": 20611,
+ "▁photos": 20612,
+ "▁voet": 20613,
+ "ONG": 20614,
+ "▁Alle": 20615,
+ "▁threaten": 20616,
+ "stüt": 20617,
+ "▁albums": 20618,
+ "▁dense": 20619,
+ "flat": 20620,
+ "continu": 20621,
+ "Subject": 20622,
+ "▁readonly": 20623,
+ "Opt": 20624,
+ "писко": 20625,
+ "▁Aber": 20626,
+ "▁Position": 20627,
+ "▁Today": 20628,
+ "▁mini": 20629,
+ "▁Bef": 20630,
+ "listen": 20631,
+ "ственного": 20632,
+ "SUB": 20633,
+ "ossa": 20634,
+ "▁Pope": 20635,
+ "▁Jimmy": 20636,
+ "▁Дру": 20637,
+ "ungsseite": 20638,
+ "▁tren": 20639,
+ "optim": 20640,
+ "itsch": 20641,
+ "▁samt": 20642,
+ "▁испол": 20643,
+ "&=": 20644,
+ "▁Przypisy": 20645,
+ "▁продол": 20646,
+ "Cr": 20647,
+ "ermann": 20648,
+ "▁матери": 20649,
+ "▁Hugo": 20650,
+ "▁Deze": 20651,
+ "TRUE": 20652,
+ "▁defeat": 20653,
+ "▁watched": 20654,
+ "▁Gent": 20655,
+ "AUT": 20656,
+ "orous": 20657,
+ "▁опреде": 20658,
+ "orientation": 20659,
+ "▁distinguished": 20660,
+ "▁mesmo": 20661,
+ "▁sli": 20662,
+ "мена": 20663,
+ "mittel": 20664,
+ "gericht": 20665,
+ "eton": 20666,
+ "->{": 20667,
+ "▁wont": 20668,
+ "▁weg": 20669,
+ "▁classific": 20670,
+ "ilus": 20671,
+ "▁MD": 20672,
+ "tasks": 20673,
+ "▁chim": 20674,
+ "await": 20675,
+ "▁gang": 20676,
+ "▁wię": 20677,
+ "through": 20678,
+ "▁Russell": 20679,
+ "▁guessing": 20680,
+ "▁акт": 20681,
+ "блі": 20682,
+ "categories": 20683,
+ "сут": 20684,
+ "▁Fen": 20685,
+ "▁муж": 20686,
+ "▁newer": 20687,
+ "▁Async": 20688,
+ "▁terme": 20689,
+ ">/": 20690,
+ "пара": 20691,
+ "▁Trust": 20692,
+ "▁Opt": 20693,
+ "▁dah": 20694,
+ "▁wonderful": 20695,
+ "adratkil": 20696,
+ "▁Гра": 20697,
+ "mapping": 20698,
+ "▁discovery": 20699,
+ "▁BE": 20700,
+ "Enable": 20701,
+ "▁Friend": 20702,
+ "сня": 20703,
+ "▁controlled": 20704,
+ "чної": 20705,
+ "▁contributions": 20706,
+ "jší": 20707,
+ "▁Lev": 20708,
+ "▁francés": 20709,
+ "▁mic": 20710,
+ "zik": 20711,
+ "▁alem": 20712,
+ "cancel": 20713,
+ "!'": 20714,
+ "▁grat": 20715,
+ "▁Begriffsklär": 20716,
+ "Camera": 20717,
+ "ificación": 20718,
+ "ród": 20719,
+ "▁Arnold": 20720,
+ "▁bezeichneter": 20721,
+ "▁fought": 20722,
+ "▁deput": 20723,
+ "▁Drop": 20724,
+ "tax": 20725,
+ "dg": 20726,
+ "▁Hop": 20727,
+ "GN": 20728,
+ "▁Kirch": 20729,
+ "▁Бар": 20730,
+ "Invoke": 20731,
+ "▁erhalten": 20732,
+ "▁veel": 20733,
+ "▁wordpress": 20734,
+ "▁INNER": 20735,
+ "transaction": 20736,
+ "▁déjà": 20737,
+ "Fact": 20738,
+ "▁надмор": 20739,
+ "▁angularjs": 20740,
+ "▁át": 20741,
+ "▁alap": 20742,
+ "▁Price": 20743,
+ "▁effet": 20744,
+ "▁sphere": 20745,
+ "ClassLoader": 20746,
+ "▁rugby": 20747,
+ "▁kingdom": 20748,
+ "▁Mut": 20749,
+ "▁кино": 20750,
+ "▁reward": 20751,
+ "cit": 20752,
+ "▁presente": 20753,
+ "Sto": 20754,
+ "Character": 20755,
+ "logs": 20756,
+ "▁centrale": 20757,
+ "▁mouv": 20758,
+ "▁okay": 20759,
+ "▁aplic": 20760,
+ "More": 20761,
+ "ények": 20762,
+ "▁Köln": 20763,
+ "nett": 20764,
+ "▁истории": 20765,
+ "▁describing": 20766,
+ "▁soldier": 20767,
+ "▁Need": 20768,
+ "Light": 20769,
+ "▁\"\\<": 20770,
+ "▁hav": 20771,
+ "ermo": 20772,
+ "▁inferior": 20773,
+ "lea": 20774,
+ "▁gg": 20775,
+ "▁конце": 20776,
+ "fragment": 20777,
+ "sb": 20778,
+ "Country": 20779,
+ "▁vě": 20780,
+ "▁Beng": 20781,
+ "▁Это": 20782,
+ "▁водо": 20783,
+ "мар": 20784,
+ "STRING": 20785,
+ "▁új": 20786,
+ "multiple": 20787,
+ "statement": 20788,
+ "▁involves": 20789,
+ "▁tecn": 20790,
+ "Student": 20791,
+ "gré": 20792,
+ "▁lean": 20793,
+ "▁bringing": 20794,
+ "▁Medical": 20795,
+ "▁програм": 20796,
+ "▁Vog": 20797,
+ "▁жов": 20798,
+ "▁Spirit": 20799,
+ "nth": 20800,
+ "▁standards": 20801,
+ "▁Profile": 20802,
+ "▁ez": 20803,
+ "▁территории": 20804,
+ "▁stem": 20805,
+ "uil": 20806,
+ "▁Og": 20807,
+ "Btn": 20808,
+ "nal": 20809,
+ "▁nearby": 20810,
+ "▁producing": 20811,
+ "criv": 20812,
+ "▁assumptions": 20813,
+ "▁Spark": 20814,
+ "▁Lot": 20815,
+ "itudes": 20816,
+ "afka": 20817,
+ "five": 20818,
+ "atio": 20819,
+ "▁distinguish": 20820,
+ "rock": 20821,
+ "église": 20822,
+ "▁rappres": 20823,
+ ">\\<": 20824,
+ "лій": 20825,
+ "▁мини": 20826,
+ "▁intitulé": 20827,
+ "}}(\\": 20828,
+ "▁Rout": 20829,
+ "▁Border": 20830,
+ "▁overrid": 20831,
+ "HOST": 20832,
+ "ritten": 20833,
+ "say": 20834,
+ "▁Чи": 20835,
+ "ichtung": 20836,
+ "▁straightforward": 20837,
+ "obb": 20838,
+ "▁Terra": 20839,
+ "▁[:": 20840,
+ "Ben": 20841,
+ "▁composite": 20842,
+ ")+\\": 20843,
+ "▁crown": 20844,
+ "direction": 20845,
+ "▁несколько": 20846,
+ "▁avail": 20847,
+ "▁purchased": 20848,
+ "hook": 20849,
+ "eties": 20850,
+ "▁fase": 20851,
+ "▁Rum": 20852,
+ "▁genom": 20853,
+ "▁dét": 20854,
+ "ową": 20855,
+ "mpeg": 20856,
+ "▁Ін": 20857,
+ "desktop": 20858,
+ "▁injection": 20859,
+ "agle": 20860,
+ "▁Edd": 20861,
+ "_{(": 20862,
+ "▁Hem": 20863,
+ "utos": 20864,
+ "proj": 20865,
+ "▁superficie": 20866,
+ "Plot": 20867,
+ "▁Docker": 20868,
+ "ätz": 20869,
+ "kreich": 20870,
+ "▁unclear": 20871,
+ "▁Unity": 20872,
+ "▁streams": 20873,
+ "вид": 20874,
+ "▁simplified": 20875,
+ "Fill": 20876,
+ "▁sant": 20877,
+ "▁Kommun": 20878,
+ "▁duc": 20879,
+ "▁две": 20880,
+ "▁obs": 20881,
+ "žit": 20882,
+ "▁Janeiro": 20883,
+ "бя": 20884,
+ "▁presso": 20885,
+ "▁Ministry": 20886,
+ "▁burst": 20887,
+ "▁reaching": 20888,
+ "liter": 20889,
+ "▁responses": 20890,
+ "▁Eug": 20891,
+ "▁sod": 20892,
+ "▁Cord": 20893,
+ "▁Perm": 20894,
+ "parts": 20895,
+ "цима": 20896,
+ "variables": 20897,
+ "▁forgotten": 20898,
+ "Fern": 20899,
+ "ostęp": 20900,
+ "vl": 20901,
+ "▁См": 20902,
+ "kim": 20903,
+ "ając": 20904,
+ "наль": 20905,
+ "гле": 20906,
+ "helper": 20907,
+ "dup": 20908,
+ "euw": 20909,
+ "fra": 20910,
+ "ellite": 20911,
+ "anya": 20912,
+ "▁reign": 20913,
+ "gesamt": 20914,
+ "седа": 20915,
+ "▁Ryan": 20916,
+ "▁formatted": 20917,
+ "▁Borg": 20918,
+ "walk": 20919,
+ "▁ал": 20920,
+ "agnostics": 20921,
+ "▁Cape": 20922,
+ "▁Franco": 20923,
+ "▁fug": 20924,
+ ":)": 20925,
+ "юз": 20926,
+ "Fetch": 20927,
+ "▁roughly": 20928,
+ "▁Mis": 20929,
+ "uetooth": 20930,
+ "▁Venezuela": 20931,
+ "▁astronom": 20932,
+ "\")`": 20933,
+ "ombres": 20934,
+ "▁которой": 20935,
+ "óp": 20936,
+ "owed": 20937,
+ "HR": 20938,
+ "▁Camer": 20939,
+ "кие": 20940,
+ "parison": 20941,
+ "▁Bij": 20942,
+ "templates": 20943,
+ "environment": 20944,
+ "ização": 20945,
+ "▁ér": 20946,
+ "▁plenty": 20947,
+ "▁TypeError": 20948,
+ "▁forty": 20949,
+ "коном": 20950,
+ "▁Sed": 20951,
+ "▁thats": 20952,
+ "▁gravity": 20953,
+ "▁spiritual": 20954,
+ "▁duplicates": 20955,
+ "▁encryption": 20956,
+ "▁reven": 20957,
+ "getInstance": 20958,
+ "ällor": 20959,
+ "disk": 20960,
+ "▁thro": 20961,
+ "▁Nak": 20962,
+ "▁poł": 20963,
+ "▁heraus": 20964,
+ "invalid": 20965,
+ "sBy": 20966,
+ "Boot": 20967,
+ "▁bucket": 20968,
+ "▁Parse": 20969,
+ "hex": 20970,
+ "Conne": 20971,
+ "▁Computer": 20972,
+ "zyk": 20973,
+ "▁induced": 20974,
+ "▁Bruno": 20975,
+ "▁addressed": 20976,
+ "mania": 20977,
+ "▁inclus": 20978,
+ "ounced": 20979,
+ "scriptsize": 20980,
+ "▁Epis": 20981,
+ "▁vocal": 20982,
+ "▁Jonathan": 20983,
+ "ум": 20984,
+ "staden": 20985,
+ "▁Children": 20986,
+ "пей": 20987,
+ "Italia": 20988,
+ "reibung": 20989,
+ "▁nost": 20990,
+ "▁ещё": 20991,
+ "▁Werke": 20992,
+ "▁actress": 20993,
+ "▁Minnesota": 20994,
+ "rike": 20995,
+ "▁tek": 20996,
+ "▁primeira": 20997,
+ "▁frat": 20998,
+ "▁Configuration": 20999,
+ "▁bid": 21000,
+ "trigger": 21001,
+ "Contents": 21002,
+ "▁constantly": 21003,
+ "!!!": 21004,
+ "▁dread": 21005,
+ "▁hundreds": 21006,
+ "istische": 21007,
+ "▁cardinal": 21008,
+ "TABLE": 21009,
+ "▁estos": 21010,
+ "assoc": 21011,
+ "gray": 21012,
+ "▁Schloss": 21013,
+ "▁sche": 21014,
+ "cong": 21015,
+ "▁koji": 21016,
+ "ètes": 21017,
+ "▁Era": 21018,
+ "omi": 21019,
+ "▁SR": 21020,
+ "▁wrapped": 21021,
+ "▁trunc": 21022,
+ "▁ah": 21023,
+ "egos": 21024,
+ "oki": 21025,
+ "mouth": 21026,
+ "logging": 21027,
+ "▁fasc": 21028,
+ "▁Sample": 21029,
+ "▁conte": 21030,
+ "▁villa": 21031,
+ "comments": 21032,
+ "▁batal": 21033,
+ "▁García": 21034,
+ "▁Norte": 21035,
+ "▁wechsel": 21036,
+ "▁Museo": 21037,
+ "▁enfants": 21038,
+ "▁whisper": 21039,
+ "nake": 21040,
+ "▁jednak": 21041,
+ "lês": 21042,
+ "enders": 21043,
+ "▁äl": 21044,
+ "▁VB": 21045,
+ "▁cookies": 21046,
+ "zeti": 21047,
+ "atum": 21048,
+ "▁dedu": 21049,
+ "▁arranged": 21050,
+ "laz": 21051,
+ "▁cuenta": 21052,
+ "yml": 21053,
+ "▁flav": 21054,
+ "MR": 21055,
+ "emet": 21056,
+ "біль": 21057,
+ "cmp": 21058,
+ "ituto": 21059,
+ "zett": 21060,
+ "▁envi": 21061,
+ "▁kot": 21062,
+ "$:": 21063,
+ "upper": 21064,
+ "▁Alberto": 21065,
+ "kb": 21066,
+ "Anal": 21067,
+ "ört": 21068,
+ "▁[-": 21069,
+ "▁führte": 21070,
+ "iah": 21071,
+ "▁Tun": 21072,
+ "▁искус": 21073,
+ "uwe": 21074,
+ "ispecies": 21075,
+ "Pub": 21076,
+ "Sync": 21077,
+ "▁Colombia": 21078,
+ "akers": 21079,
+ "▁Imperial": 21080,
+ "oving": 21081,
+ "▁intelligence": 21082,
+ "▁equipment": 21083,
+ "ein": 21084,
+ "dagger": 21085,
+ "▁Edge": 21086,
+ "▁Республи": 21087,
+ "adratkilometer": 21088,
+ "▁Anto": 21089,
+ "▁charges": 21090,
+ "▁Ocean": 21091,
+ "▁simplify": 21092,
+ "▁miesz": 21093,
+ "running": 21094,
+ "▁Lac": 21095,
+ "genommen": 21096,
+ "▁representative": 21097,
+ "=.": 21098,
+ "▁Pred": 21099,
+ "▁spite": 21100,
+ "ciale": 21101,
+ "▁nave": 21102,
+ "▁extens": 21103,
+ "▁neutral": 21104,
+ "▁которая": 21105,
+ ".": 21106,
+ "▁CS": 21107,
+ "uky": 21108,
+ "▁whilst": 21109,
+ "▁lingu": 21110,
+ "extract": 21111,
+ "zeichnung": 21112,
+ "▁Feld": 21113,
+ "▁valuable": 21114,
+ "urable": 21115,
+ "▁Jen": 21116,
+ "▁struggle": 21117,
+ "▁committee": 21118,
+ "▁Wohn": 21119,
+ "▁sqlite": 21120,
+ "▁Temp": 21121,
+ "▁COUNT": 21122,
+ "consin": 21123,
+ "міні": 21124,
+ "usage": 21125,
+ "▁quest": 21126,
+ "дян": 21127,
+ "eared": 21128,
+ "▁Schne": 21129,
+ "▁dod": 21130,
+ "▁recht": 21131,
+ "▁kao": 21132,
+ "Capt": 21133,
+ "labels": 21134,
+ "▁ellos": 21135,
+ "▁industri": 21136,
+ "▁Colorado": 21137,
+ "▁contrary": 21138,
+ "▁Dum": 21139,
+ "Bel": 21140,
+ "▁Vent": 21141,
+ "▁authorities": 21142,
+ "YES": 21143,
+ "ensed": 21144,
+ "umbnail": 21145,
+ "izzazione": 21146,
+ "kou": 21147,
+ "rica": 21148,
+ "▁sect": 21149,
+ "tests": 21150,
+ "▁Klein": 21151,
+ "▁legs": 21152,
+ "▁Pietro": 21153,
+ "fu": 21154,
+ "thy": 21155,
+ "▁bast": 21156,
+ "▁tedes": 21157,
+ "ettes": 21158,
+ "▁repet": 21159,
+ "acre": 21160,
+ "retto": 21161,
+ "▁remainder": 21162,
+ "▁Geg": 21163,
+ "▁Гор": 21164,
+ "▁Rechts": 21165,
+ "▁filtering": 21166,
+ "ouss": 21167,
+ "▁deployed": 21168,
+ "▁prüfe": 21169,
+ "▁bitmap": 21170,
+ "▁sovi": 21171,
+ "▁<%=": 21172,
+ "▁entferne": 21173,
+ "kill": 21174,
+ "tabs": 21175,
+ "Expr": 21176,
+ "кому": 21177,
+ "▁Republican": 21178,
+ "▁Size": 21179,
+ "▁poll": 21180,
+ "▁rien": 21181,
+ "▁клуб": 21182,
+ "énd": 21183,
+ "▁Bio": 21184,
+ "▁perl": 21185,
+ "▁Andreas": 21186,
+ "вин": 21187,
+ "▁distant": 21188,
+ "▁Finn": 21189,
+ "▁Mitch": 21190,
+ "▁%{": 21191,
+ "▁charm": 21192,
+ "▁Mul": 21193,
+ "perate": 21194,
+ "▁sciences": 21195,
+ "▁monot": 21196,
+ "▁debido": 21197,
+ "rizona": 21198,
+ "iec": 21199,
+ "▁alarm": 21200,
+ "▁promoted": 21201,
+ "▁letzten": 21202,
+ "atin": 21203,
+ "▁conclus": 21204,
+ "herr": 21205,
+ "▁éch": 21206,
+ "edish": 21207,
+ "gor": 21208,
+ "▁stycz": 21209,
+ "▁impress": 21210,
+ "ruits": 21211,
+ "ierungs": 21212,
+ "▁parsed": 21213,
+ "▁río": 21214,
+ "▁Pakistan": 21215,
+ "igner": 21216,
+ "▁watching": 21217,
+ "▁databases": 21218,
+ "eding": 21219,
+ "▁Specific": 21220,
+ "▁generale": 21221,
+ "lax": 21222,
+ "▁Looking": 21223,
+ "▁bond": 21224,
+ "▁vista": 21225,
+ "▁ec": 21226,
+ "▁grud": 21227,
+ "▁deleting": 21228,
+ "tac": 21229,
+ "▁jazz": 21230,
+ "jm": 21231,
+ "▁pół": 21232,
+ "Language": 21233,
+ "delegate": 21234,
+ "▁registry": 21235,
+ "▁Shared": 21236,
+ "строй": 21237,
+ "Music": 21238,
+ "▁vessel": 21239,
+ ".@": 21240,
+ "▁Wür": 21241,
+ "▁fed": 21242,
+ "▁eredet": 21243,
+ "▁Gö": 21244,
+ "upt": 21245,
+ "▁pleasant": 21246,
+ "▁tableView": 21247,
+ "▁counting": 21248,
+ "▁Kriegs": 21249,
+ "▁получил": 21250,
+ "▁],": 21251,
+ "виа": 21252,
+ "▁až": 21253,
+ "ToList": 21254,
+ "▁Advent": 21255,
+ "▁sketch": 21256,
+ "pn": 21257,
+ "▁sier": 21258,
+ "▁находится": 21259,
+ "iop": 21260,
+ "▁ly": 21261,
+ "▁Schl": 21262,
+ "Contract": 21263,
+ "associ": 21264,
+ "▁Pear": 21265,
+ "▁whe": 21266,
+ "▁Delete": 21267,
+ "▁elem": 21268,
+ "ätte": 21269,
+ "▁česk": 21270,
+ "▁MC": 21271,
+ "▁shout": 21272,
+ "akespe": 21273,
+ "▁defaults": 21274,
+ "penas": 21275,
+ "òria": 21276,
+ "▁hierarchy": 21277,
+ "ipt": 21278,
+ "▁Elis": 21279,
+ "likely": 21280,
+ "Rot": 21281,
+ "▁cow": 21282,
+ "▁strike": 21283,
+ "▁березня": 21284,
+ "▁ensemble": 21285,
+ "▁Pseud": 21286,
+ "Virtual": 21287,
+ "▁її": 21288,
+ "ROOT": 21289,
+ "сия": 21290,
+ "▁соб": 21291,
+ "▁invert": 21292,
+ "▁switching": 21293,
+ "htaccess": 21294,
+ "▁награ": 21295,
+ "▁Norman": 21296,
+ "▁inglês": 21297,
+ "![": 21298,
+ "ousel": 21299,
+ "DOCTYPE": 21300,
+ "▁suppress": 21301,
+ "▁accompanied": 21302,
+ "▁Bé": 21303,
+ "implies": 21304,
+ "nut": 21305,
+ "▁Syntax": 21306,
+ "inho": 21307,
+ "▁tam": 21308,
+ "▁focused": 21309,
+ "avano": 21310,
+ "▁Baden": 21311,
+ "had": 21312,
+ "▁({": 21313,
+ "Ty": 21314,
+ "▁рос": 21315,
+ "▁чолові": 21316,
+ "oge": 21317,
+ "jsp": 21318,
+ "Blue": 21319,
+ "▁suas": 21320,
+ "apers": 21321,
+ "Short": 21322,
+ "Renderer": 21323,
+ "▁sendo": 21324,
+ "▁Cec": 21325,
+ "▁`__": 21326,
+ "▁Municipal": 21327,
+ "dotnet": 21328,
+ "▁bev": 21329,
+ "▁DA": 21330,
+ "MenuItem": 21331,
+ "▁amp": 21332,
+ "▁uri": 21333,
+ "▁fier": 21334,
+ "слен": 21335,
+ "),(": 21336,
+ "cules": 21337,
+ "illas": 21338,
+ "LOCK": 21339,
+ "▁derive": 21340,
+ "uben": 21341,
+ "▁GT": 21342,
+ "▁Mack": 21343,
+ "▁scholar": 21344,
+ ")}}": 21345,
+ "зм": 21346,
+ ">::": 21347,
+ "шёл": 21348,
+ "▁principales": 21349,
+ "▁цар": 21350,
+ "▁tied": 21351,
+ "▁alta": 21352,
+ "▁Cit": 21353,
+ "lined": 21354,
+ "major": 21355,
+ "▁punk": 21356,
+ "▁cinco": 21357,
+ "ický": 21358,
+ "▁raggi": 21359,
+ "typen": 21360,
+ "тельство": 21361,
+ "▁conference": 21362,
+ "▁сіль": 21363,
+ "▁heut": 21364,
+ "iš": 21365,
+ "ета": 21366,
+ "velope": 21367,
+ "hbox": 21368,
+ "nown": 21369,
+ "▁zar": 21370,
+ "ktiv": 21371,
+ "ieß": 21372,
+ "▁стре": 21373,
+ "▁EventArgs": 21374,
+ "▁Ira": 21375,
+ "▁VBA": 21376,
+ "▁Santo": 21377,
+ "▁Fach": 21378,
+ "▁FF": 21379,
+ "▁Raymond": 21380,
+ "мец": 21381,
+ "implementation": 21382,
+ "▁brothers": 21383,
+ "▁côté": 21384,
+ "▁controllers": 21385,
+ "▁Cle": 21386,
+ "▁cable": 21387,
+ "▁confer": 21388,
+ "▁{-": 21389,
+ "▁czł": 21390,
+ "▁Filip": 21391,
+ "atorio": 21392,
+ "▁wicht": 21393,
+ "▁beaucoup": 21394,
+ "▁Lit": 21395,
+ "▁sessions": 21396,
+ "▁Success": 21397,
+ "▁routing": 21398,
+ "niu": 21399,
+ "▁Vice": 21400,
+ "▁krit": 21401,
+ "updated": 21402,
+ "▁Invalid": 21403,
+ "▁Mannschaft": 21404,
+ "▁aos": 21405,
+ "▁tudi": 21406,
+ "▁després": 21407,
+ "qua": 21408,
+ "Contains": 21409,
+ "Company": 21410,
+ "▁persona": 21411,
+ "adapter": 21412,
+ "сни": 21413,
+ "▁voj": 21414,
+ "▁escri": 21415,
+ "agt": 21416,
+ "▁ство": 21417,
+ "▁distrito": 21418,
+ "apan": 21419,
+ "▁aspects": 21420,
+ "▁zal": 21421,
+ ")^{\\": 21422,
+ "▁système": 21423,
+ "▁ана": 21424,
+ "iums": 21425,
+ "▁premiers": 21426,
+ "▁поэ": 21427,
+ "▁mère": 21428,
+ "▁Gun": 21429,
+ "aping": 21430,
+ "▁Rain": 21431,
+ "▁igual": 21432,
+ "▁processor": 21433,
+ "')`": 21434,
+ "bling": 21435,
+ "▁mism": 21436,
+ "bráz": 21437,
+ "▁closest": 21438,
+ "▁Reading": 21439,
+ "▁попу": 21440,
+ "cono": 21441,
+ "▁kult": 21442,
+ "▁!!": 21443,
+ "▁Expression": 21444,
+ "▁induction": 21445,
+ "ahren": 21446,
+ "▁cp": 21447,
+ "▁violence": 21448,
+ "ientí": 21449,
+ "cente": 21450,
+ "▁Dob": 21451,
+ "jack": 21452,
+ "song": 21453,
+ "bucket": 21454,
+ "▁deport": 21455,
+ "кими": 21456,
+ "lm": 21457,
+ "▁innoc": 21458,
+ "Changes": 21459,
+ "▁prohib": 21460,
+ "angol": 21461,
+ "iseconds": 21462,
+ "▁пор": 21463,
+ "▁hip": 21464,
+ "▁pů": 21465,
+ "endorf": 21466,
+ "▁scheduled": 21467,
+ "▁Flug": 21468,
+ "acyj": 21469,
+ "▁Films": 21470,
+ "athedral": 21471,
+ "Power": 21472,
+ "ardin": 21473,
+ "kap": 21474,
+ "icken": 21475,
+ "resize": 21476,
+ "eus": 21477,
+ "rr": 21478,
+ "лян": 21479,
+ "▁Hav": 21480,
+ "▁ora": 21481,
+ "FROM": 21482,
+ "лося": 21483,
+ "▁terug": 21484,
+ "▁Width": 21485,
+ "▁accepts": 21486,
+ "бен": 21487,
+ "▁mich": 21488,
+ "▁Czech": 21489,
+ "▁Bedeut": 21490,
+ "▁вид": 21491,
+ "ôme": 21492,
+ "▁Loop": 21493,
+ "spect": 21494,
+ "ük": 21495,
+ "eston": 21496,
+ "▁slot": 21497,
+ "▁została": 21498,
+ "▁Charlotte": 21499,
+ "▁составляет": 21500,
+ "▁Promise": 21501,
+ "▁epo": 21502,
+ "▁diction": 21503,
+ "▁Franklin": 21504,
+ "▁Riv": 21505,
+ "руг": 21506,
+ "cida": 21507,
+ "▁Explorer": 21508,
+ "cookie": 21509,
+ "▁formerly": 21510,
+ "▁municipality": 21511,
+ "▁Stefan": 21512,
+ "lists": 21513,
+ "COMP": 21514,
+ "Len": 21515,
+ "▁Staat": 21516,
+ "▁NBA": 21517,
+ "dens": 21518,
+ "▁oscill": 21519,
+ "!.": 21520,
+ "▁PO": 21521,
+ "ône": 21522,
+ "eses": 21523,
+ "▁националь": 21524,
+ "voor": 21525,
+ "▁копи": 21526,
+ "▁пози": 21527,
+ "ulu": 21528,
+ "Constraint": 21529,
+ "▁своей": 21530,
+ "▁algebraic": 21531,
+ "чня": 21532,
+ "Dict": 21533,
+ "▁appearing": 21534,
+ "▁prav": 21535,
+ "▁Universal": 21536,
+ "Browser": 21537,
+ "▁Singap": 21538,
+ "ennessee": 21539,
+ "]_": 21540,
+ "▁Sof": 21541,
+ "▁Cad": 21542,
+ "ounce": 21543,
+ "▁costs": 21544,
+ "]{\\": 21545,
+ "../../": 21546,
+ "ській": 21547,
+ "ühl": 21548,
+ "iety": 21549,
+ "пр": 21550,
+ "▁interpreted": 21551,
+ "ajn": 21552,
+ "colog": 21553,
+ "YS": 21554,
+ "mans": 21555,
+ "▁metrics": 21556,
+ "▁registr": 21557,
+ "istance": 21558,
+ "▁Поль": 21559,
+ "▁anonymous": 21560,
+ "▁institutions": 21561,
+ "▁zdob": 21562,
+ "prüng": 21563,
+ "▁арти": 21564,
+ "▁estat": 21565,
+ "acci": 21566,
+ "▁academic": 21567,
+ "▁chiesa": 21568,
+ "▁Gian": 21569,
+ "contrib": 21570,
+ "umed": 21571,
+ "▁Gir": 21572,
+ "▁baseball": 21573,
+ "numeric": 21574,
+ "Generator": 21575,
+ "GM": 21576,
+ "▁tiny": 21577,
+ "▁distinction": 21578,
+ "гер": 21579,
+ "▁rust": 21580,
+ "▁FIFA": 21581,
+ "▁Properties": 21582,
+ "^-": 21583,
+ "▁экс": 21584,
+ "▁Stanis": 21585,
+ "▁Ajax": 21586,
+ "escape": 21587,
+ "▁consp": 21588,
+ "▁Chen": 21589,
+ "▁Naval": 21590,
+ "Bit": 21591,
+ "▁bât": 21592,
+ "скими": 21593,
+ "drive": 21594,
+ "▁Round": 21595,
+ "photo": 21596,
+ "▁Level": 21597,
+ "▁geg": 21598,
+ "Tom": 21599,
+ "▁Mobile": 21600,
+ "▁Trop": 21601,
+ "Direction": 21602,
+ "isan": 21603,
+ ")^{-": 21604,
+ "▁Setting": 21605,
+ "▁Probably": 21606,
+ "лья": 21607,
+ "▁assets": 21608,
+ "▁atte": 21609,
+ "▁bulk": 21610,
+ "ést": 21611,
+ "▁wing": 21612,
+ "nius": 21613,
+ "▁wins": 21614,
+ "▁lud": 21615,
+ "ushing": 21616,
+ "▁deven": 21617,
+ "ограф": 21618,
+ "burger": 21619,
+ "▁embar": 21620,
+ "FilterChain": 21621,
+ "▁tum": 21622,
+ "▁öss": 21623,
+ "▁nommé": 21624,
+ "▁pir": 21625,
+ "▁luc": 21626,
+ "dbo": 21627,
+ "agues": 21628,
+ "▁alcan": 21629,
+ "ouwen": 21630,
+ "▁Stanley": 21631,
+ "циали": 21632,
+ "▁grown": 21633,
+ "▁preserved": 21634,
+ "▁solar": 21635,
+ "▁Население": 21636,
+ "▁performances": 21637,
+ "▁Cow": 21638,
+ "▁engineering": 21639,
+ "▁scaling": 21640,
+ "atomic": 21641,
+ "endance": 21642,
+ "▁ace": 21643,
+ "ängen": 21644,
+ "Anim": 21645,
+ "phase": 21646,
+ "zburg": 21647,
+ "Old": 21648,
+ "▁servant": 21649,
+ "▁gemeins": 21650,
+ "▁Observ": 21651,
+ "translate": 21652,
+ "▁covering": 21653,
+ "▁están": 21654,
+ "▁problema": 21655,
+ "▁установ": 21656,
+ "▁llev": 21657,
+ "▁czerw": 21658,
+ "éal": 21659,
+ "mez": 21660,
+ "REE": 21661,
+ "ERR": 21662,
+ "тури": 21663,
+ "segu": 21664,
+ "▁profit": 21665,
+ "▁multiplication": 21666,
+ "kommen": 21667,
+ "▁faut": 21668,
+ "▁candidates": 21669,
+ "▁Uri": 21670,
+ "▁Laura": 21671,
+ "▁sap": 21672,
+ "▁висини": 21673,
+ "▁Between": 21674,
+ "fade": 21675,
+ "▁reserved": 21676,
+ "▁involving": 21677,
+ "▁Mare": 21678,
+ "▁Container": 21679,
+ "▁назна": 21680,
+ "▁DEBUG": 21681,
+ "▁hurt": 21682,
+ "▁Polski": 21683,
+ "▁lux": 21684,
+ "CB": 21685,
+ "wach": 21686,
+ "▁период": 21687,
+ "▁Catherine": 21688,
+ "▁ganz": 21689,
+ "uchte": 21690,
+ "▁consumer": 21691,
+ "▁crossed": 21692,
+ "ordered": 21693,
+ "away": 21694,
+ "techn": 21695,
+ "▁subscri": 21696,
+ "▁shortcut": 21697,
+ "▁производ": 21698,
+ "▁simultaneously": 21699,
+ "▁rating": 21700,
+ "▁Kings": 21701,
+ "▁relationships": 21702,
+ "▁Sex": 21703,
+ "▁Tool": 21704,
+ "agh": 21705,
+ "acters": 21706,
+ "logger": 21707,
+ "homme": 21708,
+ "engers": 21709,
+ "▁Ri": 21710,
+ "earance": 21711,
+ "▁appearances": 21712,
+ "Real": 21713,
+ "▁passe": 21714,
+ "iclopedia": 21715,
+ "чко": 21716,
+ "terre": 21717,
+ "▁Ontario": 21718,
+ "▁переда": 21719,
+ "footer": 21720,
+ "archivi": 21721,
+ "ifiz": 21722,
+ "▁Protest": 21723,
+ "▁LIN": 21724,
+ "unnable": 21725,
+ "▁centuries": 21726,
+ "▁Bayer": 21727,
+ "цію": 21728,
+ "овин": 21729,
+ "▁Andrea": 21730,
+ "selection": 21731,
+ "▁calm": 21732,
+ "▁modification": 21733,
+ "▁shortly": 21734,
+ "inaire": 21735,
+ "▁fusion": 21736,
+ "▁feelings": 21737,
+ "PK": 21738,
+ "▁Roberto": 21739,
+ "гне": 21740,
+ "Shared": 21741,
+ "▁mehrere": 21742,
+ "▁Niem": 21743,
+ "omp": 21744,
+ "Env": 21745,
+ "▁Article": 21746,
+ "▁Pok": 21747,
+ "▁VARCHAR": 21748,
+ "▁dil": 21749,
+ "▁afford": 21750,
+ "▁confront": 21751,
+ "owanie": 21752,
+ "▁ministre": 21753,
+ "adesh": 21754,
+ "▁Poly": 21755,
+ "▁Распо": 21756,
+ "▁Gruppe": 21757,
+ "▁Helen": 21758,
+ "▁cc": 21759,
+ "▁portrait": 21760,
+ "bew": 21761,
+ "▁beta": 21762,
+ "▁Wir": 21763,
+ "▁Audio": 21764,
+ "▁(\\<": 21765,
+ "riority": 21766,
+ "▁nit": 21767,
+ "▁представи": 21768,
+ "▁Vie": 21769,
+ "▁wür": 21770,
+ "▁Hold": 21771,
+ "▁Sad": 21772,
+ "▁Tochter": 21773,
+ "▁oltre": 21774,
+ "▁Activ": 21775,
+ "▁Jason": 21776,
+ "▁wieku": 21777,
+ "▁regards": 21778,
+ "▁taste": 21779,
+ "agnostic": 21780,
+ "лася": 21781,
+ "▁Self": 21782,
+ "▁apr": 21783,
+ "▁Deep": 21784,
+ "scop": 21785,
+ "Activ": 21786,
+ "▁typedef": 21787,
+ "ContentView": 21788,
+ "compiler": 21789,
+ "▁Roth": 21790,
+ "xc": 21791,
+ "зик": 21792,
+ "▁largo": 21793,
+ "▁Rena": 21794,
+ "heiten": 21795,
+ "▁platforms": 21796,
+ "ulla": 21797,
+ "▁glance": 21798,
+ "▁mascul": 21799,
+ "▁mex": 21800,
+ "▁Jorge": 21801,
+ "▁funcion": 21802,
+ "choose": 21803,
+ "▁reviews": 21804,
+ "▁Alban": 21805,
+ "▁Glo": 21806,
+ "▁Species": 21807,
+ "▁Fame": 21808,
+ "▁Roll": 21809,
+ "▁Puerto": 21810,
+ "▁\\)": 21811,
+ "ymnas": 21812,
+ "environ": 21813,
+ "▁iphone": 21814,
+ "▁Wrestling": 21815,
+ "ały": 21816,
+ "▁Indiana": 21817,
+ "Radio": 21818,
+ "VS": 21819,
+ "▁independence": 21820,
+ "тай": 21821,
+ "▁decode": 21822,
+ "White": 21823,
+ "▁journ": 21824,
+ "ículo": 21825,
+ "▁Barb": 21826,
+ "▁Evangel": 21827,
+ "▁Andy": 21828,
+ "▁Welcome": 21829,
+ "▁Device": 21830,
+ "gef": 21831,
+ "▁remembered": 21832,
+ "▁variations": 21833,
+ "▁Adolf": 21834,
+ "itaine": 21835,
+ "▁надморској": 21836,
+ "▁steam": 21837,
+ "▁concerns": 21838,
+ "▁`|": 21839,
+ "▁био": 21840,
+ "тельства": 21841,
+ "▁quattro": 21842,
+ "extend": 21843,
+ "▁trabajo": 21844,
+ "enberg": 21845,
+ "▁scenarios": 21846,
+ "ânt": 21847,
+ "▁kommt": 21848,
+ "▁domestic": 21849,
+ "▁Basketball": 21850,
+ "▁Cooper": 21851,
+ "sock": 21852,
+ "держа": 21853,
+ "={\\": 21854,
+ "▁inici": 21855,
+ "▁Phill": 21856,
+ "▁генерал": 21857,
+ "archiviato": 21858,
+ "ън": 21859,
+ "Rob": 21860,
+ "▁tong": 21861,
+ "▁characteristics": 21862,
+ "▁amaz": 21863,
+ "▁Mode": 21864,
+ "▁inaugur": 21865,
+ "wehr": 21866,
+ "rant": 21867,
+ "ionali": 21868,
+ "▁Mother": 21869,
+ "Ma": 21870,
+ "équ": 21871,
+ "▁Kelly": 21872,
+ "cile": 21873,
+ "▁besteht": 21874,
+ "▁estimates": 21875,
+ "ruguay": 21876,
+ "▁Ans": 21877,
+ "Mad": 21878,
+ "▁нав": 21879,
+ "▁données": 21880,
+ "▁tropical": 21881,
+ "▁Several": 21882,
+ "elter": 21883,
+ "▁Pho": 21884,
+ "kem": 21885,
+ "▁Customer": 21886,
+ "▁складі": 21887,
+ "▁courses": 21888,
+ "Platform": 21889,
+ "navbar": 21890,
+ "learning": 21891,
+ "▁Swedish": 21892,
+ "▁zast": 21893,
+ "▁Lig": 21894,
+ "management": 21895,
+ "▁lod": 21896,
+ "uffle": 21897,
+ "Texture": 21898,
+ "arga": 21899,
+ "átum": 21900,
+ "▁DDR": 21901,
+ "нії": 21902,
+ "▁Société": 21903,
+ "▁domains": 21904,
+ "▁permitted": 21905,
+ "▁externe": 21906,
+ "▁quelque": 21907,
+ "vt": 21908,
+ "yman": 21909,
+ "▁Ward": 21910,
+ "▁agli": 21911,
+ "▁andra": 21912,
+ "Snapshot": 21913,
+ "▁må": 21914,
+ "▁yeah": 21915,
+ "дена": 21916,
+ "ępu": 21917,
+ "askell": 21918,
+ "▁République": 21919,
+ "inject": 21920,
+ "▁';": 21921,
+ "änn": 21922,
+ "▁zelf": 21923,
+ "▁Entwicklung": 21924,
+ "ária": 21925,
+ "onomy": 21926,
+ "▁svil": 21927,
+ "iese": 21928,
+ "▁conser": 21929,
+ "▁nim": 21930,
+ "▁rész": 21931,
+ "▁Итали": 21932,
+ "▁partici": 21933,
+ "▁Lion": 21934,
+ "sr": 21935,
+ "always": 21936,
+ "▁Владимир": 21937,
+ "ческие": 21938,
+ "[,": 21939,
+ "▁Definition": 21940,
+ "nant": 21941,
+ "oem": 21942,
+ "Ids": 21943,
+ "▁вне": 21944,
+ "▁[...]": 21945,
+ "▁направ": 21946,
+ "▁GO": 21947,
+ "▁års": 21948,
+ "▁után": 21949,
+ "▁outros": 21950,
+ "▁región": 21951,
+ "▁Mong": 21952,
+ "▁filme": 21953,
+ "▁triple": 21954,
+ "▁spons": 21955,
+ "Develop": 21956,
+ "▁outcome": 21957,
+ "▁Bible": 21958,
+ "▁имени": 21959,
+ "Canvas": 21960,
+ "пута": 21961,
+ "curr": 21962,
+ "ások": 21963,
+ "){\\": 21964,
+ "ningar": 21965,
+ "`;": 21966,
+ "▁Flash": 21967,
+ ":#": 21968,
+ "must": 21969,
+ "cpu": 21970,
+ "▁formats": 21971,
+ "Har": 21972,
+ "▁episodio": 21973,
+ "▁Rosa": 21974,
+ "▁dès": 21975,
+ "emit": 21976,
+ "riteria": 21977,
+ "Annotation": 21978,
+ "Flag": 21979,
+ "gmail": 21980,
+ "▁Normal": 21981,
+ "ollary": 21982,
+ "▁foss": 21983,
+ "▁concurrent": 21984,
+ "▁crashes": 21985,
+ "▁виде": 21986,
+ "▁Minor": 21987,
+ "▁Sit": 21988,
+ "▁SN": 21989,
+ "▁scar": 21990,
+ "▁femin": 21991,
+ "▁specification": 21992,
+ "soap": 21993,
+ "▁operate": 21994,
+ "▁principalmente": 21995,
+ "▁aust": 21996,
+ "ibile": 21997,
+ "itime": 21998,
+ "лежа": 21999,
+ "iframe": 22000,
+ "▁concepts": 22001,
+ "▁tack": 22002,
+ "▁viss": 22003,
+ "▁carbon": 22004,
+ "tery": 22005,
+ "▁naming": 22006,
+ "▁Orts": 22007,
+ "idente": 22008,
+ "▁Capit": 22009,
+ "▁expr": 22010,
+ "▁насељу": 22011,
+ "▁Selected": 22012,
+ "▁hinter": 22013,
+ "▁iframe": 22014,
+ "▁zb": 22015,
+ "indexPath": 22016,
+ "coll": 22017,
+ "▁wrześ": 22018,
+ "▁acht": 22019,
+ "▁gradually": 22020,
+ "▁чу": 22021,
+ "зей": 22022,
+ "haft": 22023,
+ "▁tran": 22024,
+ "▁laquelle": 22025,
+ "ytics": 22026,
+ "IDE": 22027,
+ "▁pygame": 22028,
+ "▁Package": 22029,
+ "▁className": 22030,
+ "Bal": 22031,
+ "perl": 22032,
+ "тина": 22033,
+ "Occ": 22034,
+ "▁infrastr": 22035,
+ "▁Champions": 22036,
+ "▁classic": 22037,
+ "▁Raw": 22038,
+ "▁partially": 22039,
+ "▁Ted": 22040,
+ "▁stolet": 22041,
+ "rained": 22042,
+ "WHERE": 22043,
+ "▁vall": 22044,
+ "▁Julia": 22045,
+ "zat": 22046,
+ "▁surrounded": 22047,
+ "SEE": 22048,
+ "▁walking": 22049,
+ "Bad": 22050,
+ "FOR": 22051,
+ "contre": 22052,
+ "▁Palest": 22053,
+ "ático": 22054,
+ "▁engineer": 22055,
+ "▁partners": 22056,
+ "▁Jews": 22057,
+ "ilers": 22058,
+ "▁cerem": 22059,
+ "▁interactions": 22060,
+ "acu": 22061,
+ "sty": 22062,
+ "▁Princess": 22063,
+ "sharp": 22064,
+ "▁Singles": 22065,
+ "▁їх": 22066,
+ "chez": 22067,
+ "Receiver": 22068,
+ "▁patients": 22069,
+ "stringify": 22070,
+ "▁competed": 22071,
+ "bey": 22072,
+ "$;": 22073,
+ "▁Bd": 22074,
+ "hadoop": 22075,
+ "▁División": 22076,
+ "öld": 22077,
+ "▁restricted": 22078,
+ "▁commander": 22079,
+ "▁Highway": 22080,
+ "▁Česk": 22081,
+ "▁myth": 22082,
+ "чан": 22083,
+ "raham": 22084,
+ "▁enqu": 22085,
+ "▁pog": 22086,
+ "▁comuna": 22087,
+ "▁println": 22088,
+ "▁круп": 22089,
+ "▁depois": 22090,
+ "▁seats": 22091,
+ "▁neighb": 22092,
+ "циона": 22093,
+ "agine": 22094,
+ "▁clothes": 22095,
+ "▁Prior": 22096,
+ "Brain": 22097,
+ "FFFF": 22098,
+ "':'": 22099,
+ "features": 22100,
+ "▁filesystem": 22101,
+ "▁singles": 22102,
+ "▁Melbourne": 22103,
+ "▁destruction": 22104,
+ "▁Lyon": 22105,
+ "▁Insel": 22106,
+ "Nav": 22107,
+ "▁Replace": 22108,
+ "▁lé": 22109,
+ "Who": 22110,
+ "▁Estad": 22111,
+ "▁dimensional": 22112,
+ "▁öff": 22113,
+ "▁grands": 22114,
+ "джа": 22115,
+ "plane": 22116,
+ "ності": 22117,
+ "▁Origin": 22118,
+ "WI": 22119,
+ "änner": 22120,
+ "▁Cry": 22121,
+ "ITION": 22122,
+ "▁född": 22123,
+ "▁cultura": 22124,
+ "▁Rank": 22125,
+ "▁vuel": 22126,
+ "▁zag": 22127,
+ "▁Maxim": 22128,
+ "ону": 22129,
+ "()))": 22130,
+ "Raw": 22131,
+ "kirche": 22132,
+ "▁además": 22133,
+ "▁tie": 22134,
+ "▁Style": 22135,
+ "сков": 22136,
+ "istant": 22137,
+ "olph": 22138,
+ "▁Zür": 22139,
+ "▁Info": 22140,
+ "DOM": 22141,
+ "usc": 22142,
+ "nahm": 22143,
+ "▁Федера": 22144,
+ "▁Fot": 22145,
+ "▁specifying": 22146,
+ "▁titolo": 22147,
+ "▁Boys": 22148,
+ "iech": 22149,
+ "Place": 22150,
+ "▁Hoff": 22151,
+ "▁cached": 22152,
+ "валь": 22153,
+ "isher": 22154,
+ "rolling": 22155,
+ "opens": 22156,
+ "▁hr": 22157,
+ "------": 22158,
+ "▁maggior": 22159,
+ "▁transactions": 22160,
+ "▁criminal": 22161,
+ "▁retre": 22162,
+ "▁Campbell": 22163,
+ ")):": 22164,
+ "▁ned": 22165,
+ "Pager": 22166,
+ "▁Hero": 22167,
+ "(__": 22168,
+ "▁uncle": 22169,
+ "▁reaches": 22170,
+ "arto": 22171,
+ "▁hello": 22172,
+ "Preferences": 22173,
+ "▁затем": 22174,
+ "Named": 22175,
+ "▁readers": 22176,
+ "хі": 22177,
+ "kern": 22178,
+ "▁упо": 22179,
+ "кин": 22180,
+ "▁lav": 22181,
+ "▁nob": 22182,
+ "▁secre": 22183,
+ "▁ListView": 22184,
+ "вания": 22185,
+ "▁Mayor": 22186,
+ "borough": 22187,
+ "▁filosof": 22188,
+ "нення": 22189,
+ "фри": 22190,
+ "▁patr": 22191,
+ "FM": 22192,
+ "▁acid": 22193,
+ "▁Salvador": 22194,
+ "▁abb": 22195,
+ "▁Graham": 22196,
+ "policy": 22197,
+ "negative": 22198,
+ "ńskiego": 22199,
+ "▁Heimat": 22200,
+ "▁dazu": 22201,
+ "▁mely": 22202,
+ "▁ride": 22203,
+ "▁duties": 22204,
+ "overy": 22205,
+ "▁Proposition": 22206,
+ "▁Paolo": 22207,
+ "/'": 22208,
+ "▁Mau": 22209,
+ "imenti": 22210,
+ "Saint": 22211,
+ "father": 22212,
+ "▁equilib": 22213,
+ "phony": 22214,
+ "▁clas": 22215,
+ "▁отли": 22216,
+ "▁Buffered": 22217,
+ "rek": 22218,
+ "▁mitt": 22219,
+ "▁Hur": 22220,
+ "▁Harvard": 22221,
+ "▁demonstrate": 22222,
+ "uario": 22223,
+ "▁dolor": 22224,
+ "▁rejected": 22225,
+ "▁Müller": 22226,
+ "▁nac": 22227,
+ "▁Belle": 22228,
+ "▁gathered": 22229,
+ "nr": 22230,
+ "frika": 22231,
+ "öll": 22232,
+ "▁chemical": 22233,
+ "nig": 22234,
+ "▁calc": 22235,
+ "▁DEFAULT": 22236,
+ "▁philosophy": 22237,
+ "▁Laravel": 22238,
+ "▁alignment": 22239,
+ "EV": 22240,
+ "eor": 22241,
+ "▁dzie": 22242,
+ "▁mest": 22243,
+ "▁Io": 22244,
+ "CRE": 22245,
+ "зви": 22246,
+ "▁Medic": 22247,
+ "▁nä": 22248,
+ "▁zab": 22249,
+ "▁Slov": 22250,
+ "utlich": 22251,
+ "▁amplit": 22252,
+ "▁Frankreich": 22253,
+ "▁кіль": 22254,
+ "IND": 22255,
+ "execution": 22256,
+ "▁Karriere": 22257,
+ "dostęp": 22258,
+ "▁réal": 22259,
+ "engo": 22260,
+ "▁severe": 22261,
+ "зма": 22262,
+ "▁турни": 22263,
+ "▁Carter": 22264,
+ "▁Robinson": 22265,
+ "getElementsBy": 22266,
+ "▁prototype": 22267,
+ "▁japon": 22268,
+ "führung": 22269,
+ "▁consegu": 22270,
+ "▁studi": 22271,
+ "▁lire": 22272,
+ "▁schließ": 22273,
+ "▁Buff": 22274,
+ "▁redund": 22275,
+ "▁ern": 22276,
+ "▁myster": 22277,
+ "▁proprio": 22278,
+ "ateful": 22279,
+ "▁Parent": 22280,
+ "▁ladies": 22281,
+ "rack": 22282,
+ "тика": 22283,
+ "enburg": 22284,
+ "▁качестве": 22285,
+ "▁EF": 22286,
+ "▁stam": 22287,
+ "▁nueva": 22288,
+ "▁filtered": 22289,
+ "reten": 22290,
+ "▁Ian": 22291,
+ "▁Matthew": 22292,
+ "kih": 22293,
+ "▁ő": 22294,
+ "▁компози": 22295,
+ "▁forever": 22296,
+ "oires": 22297,
+ ":\\\\": 22298,
+ "▁études": 22299,
+ "▁soup": 22300,
+ "▁pleased": 22301,
+ ")}(": 22302,
+ "▁Stop": 22303,
+ "Setter": 22304,
+ "▁Help": 22305,
+ "▁bars": 22306,
+ "▁ERR": 22307,
+ "▁(?": 22308,
+ "▁poetry": 22309,
+ "▁Util": 22310,
+ "AK": 22311,
+ "▁fick": 22312,
+ "▁IM": 22313,
+ "▁proud": 22314,
+ "носи": 22315,
+ "▁muerte": 22316,
+ "▁Palmarès": 22317,
+ "▁Nas": 22318,
+ "щих": 22319,
+ "▁quer": 22320,
+ "▁apenas": 22321,
+ "]['": 22322,
+ "▁Konst": 22323,
+ "пон": 22324,
+ "▁Schiff": 22325,
+ "▁mp": 22326,
+ "▁благо": 22327,
+ "fram": 22328,
+ "▁household": 22329,
+ "▁tract": 22330,
+ "encoding": 22331,
+ "▁undert": 22332,
+ "▁Aug": 22333,
+ "ован": 22334,
+ "▁Arten": 22335,
+ "▁invoked": 22336,
+ "▁dynast": 22337,
+ "▁fleet": 22338,
+ "чество": 22339,
+ "▁Murray": 22340,
+ "▁gut": 22341,
+ "elihood": 22342,
+ "▁SSH": 22343,
+ "ответ": 22344,
+ "▁personally": 22345,
+ "прия": 22346,
+ "▁financi": 22347,
+ "▁Thompson": 22348,
+ "alu": 22349,
+ "identity": 22350,
+ "▁Grab": 22351,
+ "addle": 22352,
+ "Ét": 22353,
+ "▁Tob": 22354,
+ "▁verlor": 22355,
+ "▁Sainte": 22356,
+ "▁dop": 22357,
+ "▁вере": 22358,
+ "___": 22359,
+ "▁promotion": 22360,
+ "▁-=": 22361,
+ "▁отде": 22362,
+ "▁ambigu": 22363,
+ "ORDER": 22364,
+ "▁Communic": 22365,
+ "▁imply": 22366,
+ "oned": 22367,
+ "cluding": 22368,
+ "▁collision": 22369,
+ "▁fragments": 22370,
+ "scription": 22371,
+ "▁'{": 22372,
+ "лях": 22373,
+ "▁hans": 22374,
+ "ус": 22375,
+ "wire": 22376,
+ "namespace": 22377,
+ "▁sword": 22378,
+ "refresh": 22379,
+ "▁kwam": 22380,
+ "zs": 22381,
+ "commons": 22382,
+ "▁cosa": 22383,
+ "▁regime": 22384,
+ "grep": 22385,
+ "▁dioc": 22386,
+ "▁Contact": 22387,
+ "▁estas": 22388,
+ "▁Stewart": 22389,
+ "▁viele": 22390,
+ "това": 22391,
+ "▁Ran": 22392,
+ "annes": 22393,
+ "iday": 22394,
+ "▁snapshot": 22395,
+ "orrow": 22396,
+ "▁zač": 22397,
+ "▁участие": 22398,
+ "▁promised": 22399,
+ "Assembly": 22400,
+ "▁championship": 22401,
+ "▁Define": 22402,
+ "▁eren": 22403,
+ "▁ново": 22404,
+ "▁thinks": 22405,
+ "Age": 22406,
+ "▁gev": 22407,
+ "varchar": 22408,
+ "ività": 22409,
+ "compos": 22410,
+ "▁Mutter": 22411,
+ "CONT": 22412,
+ "armée": 22413,
+ "agnet": 22414,
+ "▁Brow": 22415,
+ ".—": 22416,
+ "▁Television": 22417,
+ "▁Для": 22418,
+ "▁vm": 22419,
+ "▁ordin": 22420,
+ "▁Михай": 22421,
+ "▁aproxim": 22422,
+ "')->": 22423,
+ "▁zoo": 22424,
+ "ippi": 22425,
+ "▁sino": 22426,
+ "▁Québec": 22427,
+ "rages": 22428,
+ "äck": 22429,
+ "eing": 22430,
+ "arlo": 22431,
+ "pios": 22432,
+ "▁Chan": 22433,
+ "▁elli": 22434,
+ "▁incons": 22435,
+ "gestellt": 22436,
+ "ppers": 22437,
+ "Jean": 22438,
+ "anstalt": 22439,
+ "▁Dance": 22440,
+ "▁toen": 22441,
+ "▁decis": 22442,
+ "▁Резу": 22443,
+ "▁officially": 22444,
+ "ätze": 22445,
+ "▁доро": 22446,
+ "▁enumer": 22447,
+ "▁troisième": 22448,
+ "typ": 22449,
+ "offs": 22450,
+ "боль": 22451,
+ "odn": 22452,
+ "▁Zar": 22453,
+ "▁друго": 22454,
+ "quia": 22455,
+ "▁Nicolas": 22456,
+ "пису": 22457,
+ "▁mob": 22458,
+ "paces": 22459,
+ "нього": 22460,
+ "Alg": 22461,
+ "éroï": 22462,
+ "Errors": 22463,
+ "▁гре": 22464,
+ "▁женщи": 22465,
+ "inch": 22466,
+ "▁Korean": 22467,
+ "▁Apost": 22468,
+ "▁Liver": 22469,
+ "▁elementary": 22470,
+ "▁DI": 22471,
+ "виси": 22472,
+ "▁soil": 22473,
+ "▁DLL": 22474,
+ "▁risp": 22475,
+ "▁Shakespe": 22476,
+ "▁Gaussian": 22477,
+ "▁Kurt": 22478,
+ "Vertex": 22479,
+ "ebol": 22480,
+ "organisation": 22481,
+ "ären": 22482,
+ "▁YES": 22483,
+ "CUR": 22484,
+ "▁началь": 22485,
+ "▁постро": 22486,
+ "▁Luigi": 22487,
+ "▁caching": 22488,
+ "preventDefault": 22489,
+ "amd": 22490,
+ "▁Vit": 22491,
+ "subst": 22492,
+ "▁строи": 22493,
+ "▁Campion": 22494,
+ "chr": 22495,
+ "фере": 22496,
+ "▁Список": 22497,
+ "NF": 22498,
+ "▁cím": 22499,
+ "▁hé": 22500,
+ "rebbe": 22501,
+ "ocy": 22502,
+ "below": 22503,
+ "▁bylo": 22504,
+ "▁Уи": 22505,
+ "▁\\({\\": 22506,
+ "▁`:": 22507,
+ "giore": 22508,
+ "San": 22509,
+ "▁Gate": 22510,
+ "▁вс": 22511,
+ "▁olimp": 22512,
+ "▁Matrix": 22513,
+ "▁hearing": 22514,
+ "rii": 22515,
+ "tfrac": 22516,
+ "▁allemand": 22517,
+ "▁Vue": 22518,
+ "лн": 22519,
+ "▁compiling": 22520,
+ "▁Ens": 22521,
+ "▁investigation": 22522,
+ "▁Ax": 22523,
+ "▁chars": 22524,
+ "▁targets": 22525,
+ "▁loud": 22526,
+ "usement": 22527,
+ "▁Nether": 22528,
+ "commerce": 22529,
+ "IGHT": 22530,
+ "ocoa": 22531,
+ "ifecycle": 22532,
+ "▁Leo": 22533,
+ "priv": 22534,
+ "▁goods": 22535,
+ "adamente": 22536,
+ "Austral": 22537,
+ "▁reboot": 22538,
+ "Gest": 22539,
+ "▁representations": 22540,
+ "ceu": 22541,
+ "▁doctrine": 22542,
+ "cers": 22543,
+ "▁Krak": 22544,
+ "▁advoc": 22545,
+ "▁squadra": 22546,
+ "▁arbeitete": 22547,
+ "üst": 22548,
+ "▁pill": 22549,
+ "Answer": 22550,
+ "▁квіт": 22551,
+ "▁Wa": 22552,
+ "umann": 22553,
+ "▁Dynam": 22554,
+ "Famil": 22555,
+ "▁tennis": 22556,
+ "▁Engineering": 22557,
+ "▁circles": 22558,
+ "▁Maryland": 22559,
+ "▁besta": 22560,
+ "▁bases": 22561,
+ "▁znajdu": 22562,
+ "ктора": 22563,
+ "▁arrest": 22564,
+ "лер": 22565,
+ "▁Gia": 22566,
+ "▁remarkable": 22567,
+ "▁могу": 22568,
+ "▁Supreme": 22569,
+ "▁`%": 22570,
+ "dor": 22571,
+ "▁aujourd": 22572,
+ "▁wis": 22573,
+ "WIDTH": 22574,
+ "▁misma": 22575,
+ "▁fluid": 22576,
+ "▁petite": 22577,
+ "▁Tow": 22578,
+ "Registry": 22579,
+ "emed": 22580,
+ "▁Wisconsin": 22581,
+ "▁Racing": 22582,
+ "▁registration": 22583,
+ "/%": 22584,
+ "third": 22585,
+ "▁monuments": 22586,
+ "чей": 22587,
+ "▁jet": 22588,
+ "▁Urban": 22589,
+ "álva": 22590,
+ "▁milieu": 22591,
+ "▁possess": 22592,
+ "▁germ": 22593,
+ "dependencies": 22594,
+ "▁enemies": 22595,
+ "▁samen": 22596,
+ "▁Werner": 22597,
+ "▁hizo": 22598,
+ "▁td": 22599,
+ "▁yesterday": 22600,
+ "▁Ад": 22601,
+ "▁hasn": 22602,
+ "cellation": 22603,
+ "ování": 22604,
+ "lika": 22605,
+ "Week": 22606,
+ "▁Ing": 22607,
+ "▁Email": 22608,
+ "▁mètres": 22609,
+ "▁OCLC": 22610,
+ "▁amongst": 22611,
+ "▁splend": 22612,
+ "fur": 22613,
+ "antics": 22614,
+ "▁XXX": 22615,
+ "▁группы": 22616,
+ "lach": 22617,
+ "▁cousin": 22618,
+ "▁invariant": 22619,
+ "ђу": 22620,
+ "▁Beispiel": 22621,
+ "▁harder": 22622,
+ "▁bell": 22623,
+ "▁orch": 22624,
+ "tb": 22625,
+ "Footnote": 22626,
+ "regon": 22627,
+ "Martin": 22628,
+ "▁incon": 22629,
+ "▁attacked": 22630,
+ "_{-": 22631,
+ "▁Tras": 22632,
+ "party": 22633,
+ "iteit": 22634,
+ "▁saint": 22635,
+ "rások": 22636,
+ "▁containers": 22637,
+ "Mo": 22638,
+ "▁Sn": 22639,
+ "quantity": 22640,
+ "▁ras": 22641,
+ "▁Canal": 22642,
+ "ccion": 22643,
+ "uvo": 22644,
+ "▁idx": 22645,
+ "typename": 22646,
+ "▁Rugby": 22647,
+ "▁Seems": 22648,
+ "▁transmit": 22649,
+ "▁Präsident": 22650,
+ "зне": 22651,
+ "▁Baker": 22652,
+ "inth": 22653,
+ "▁több": 22654,
+ "verein": 22655,
+ "▁especie": 22656,
+ ",(": 22657,
+ "▁téc": 22658,
+ "▁WITH": 22659,
+ "▁unos": 22660,
+ "▁politics": 22661,
+ "createElement": 22662,
+ "▁stats": 22663,
+ "▁Tennessee": 22664,
+ "▁Bedeutung": 22665,
+ "▁Screen": 22666,
+ "▁Straße": 22667,
+ "anze": 22668,
+ "▁partly": 22669,
+ "manuel": 22670,
+ "olation": 22671,
+ "horizontal": 22672,
+ "érieure": 22673,
+ "ampio": 22674,
+ "▁струк": 22675,
+ "Weight": 22676,
+ "Land": 22677,
+ "poly": 22678,
+ "▁Dak": 22679,
+ "▁Assume": 22680,
+ "\".$": 22681,
+ "▁casi": 22682,
+ "▁gross": 22683,
+ "▁entertain": 22684,
+ "▁década": 22685,
+ "'.$": 22686,
+ "encer": 22687,
+ "▁guaranteed": 22688,
+ "]$.": 22689,
+ "лися": 22690,
+ "▁acceptable": 22691,
+ "raise": 22692,
+ "irus": 22693,
+ "weit": 22694,
+ "▁Ана": 22695,
+ "▁hills": 22696,
+ "ipage": 22697,
+ "BIT": 22698,
+ "▁nucle": 22699,
+ "▁utilis": 22700,
+ "CAA": 22701,
+ "ènes": 22702,
+ "▁Schweiz": 22703,
+ "▁AA": 22704,
+ "ninger": 22705,
+ "▁bands": 22706,
+ "▁tender": 22707,
+ "som": 22708,
+ "Warning": 22709,
+ "▁Bischof": 22710,
+ "▁Arc": 22711,
+ "▁Woman": 22712,
+ "▁transmission": 22713,
+ "чни": 22714,
+ "istre": 22715,
+ "BY": 22716,
+ "▁SI": 22717,
+ "▁Пар": 22718,
+ "▁}).": 22719,
+ "▁presenta": 22720,
+ "▁René": 22721,
+ "▁happiness": 22722,
+ "▁Punk": 22723,
+ "cols": 22724,
+ "▁Desde": 22725,
+ "рёх": 22726,
+ "▁мона": 22727,
+ "▁scratch": 22728,
+ "▁tcp": 22729,
+ "êtes": 22730,
+ "itated": 22731,
+ "▁diferen": 22732,
+ "geh": 22733,
+ "nahmen": 22734,
+ "Пе": 22735,
+ "cki": 22736,
+ "▁Teatro": 22737,
+ "▁Remember": 22738,
+ "▁fright": 22739,
+ "▁Yam": 22740,
+ "western": 22741,
+ "leted": 22742,
+ "▁встре": 22743,
+ "▁település": 22744,
+ "зин": 22745,
+ "▁Quant": 22746,
+ "▁supre": 22747,
+ "ája": 22748,
+ "дія": 22749,
+ "▁carrera": 22750,
+ "kret": 22751,
+ "para": 22752,
+ "▁SUM": 22753,
+ "▁pit": 22754,
+ "źdz": 22755,
+ "éo": 22756,
+ "рення": 22757,
+ "▁Chor": 22758,
+ "▁voix": 22759,
+ "▁executive": 22760,
+ "▁allerdings": 22761,
+ "Maybe": 22762,
+ "▁день": 22763,
+ "▁flying": 22764,
+ "▁parliament": 22765,
+ "ждан": 22766,
+ "▁fram": 22767,
+ "▁жовт": 22768,
+ "▁ugly": 22769,
+ "▁буду": 22770,
+ "igny": 22771,
+ "\\|_{": 22772,
+ "▁bitter": 22773,
+ "sce": 22774,
+ "▁pole": 22775,
+ "Verlag": 22776,
+ "▁totalité": 22777,
+ "▁foundation": 22778,
+ "jt": 22779,
+ "▁slice": 22780,
+ "ifique": 22781,
+ "▁integrate": 22782,
+ "strij": 22783,
+ "▁asympt": 22784,
+ "▁ему": 22785,
+ "▁perturb": 22786,
+ "▁Flow": 22787,
+ "jboss": 22788,
+ "RIG": 22789,
+ "▁Aless": 22790,
+ "XXX": 22791,
+ "▁summ": 22792,
+ "sqlite": 22793,
+ "▁cheer": 22794,
+ "prob": 22795,
+ "▁GPU": 22796,
+ "ził": 22797,
+ "(*)": 22798,
+ "▁induct": 22799,
+ "RAY": 22800,
+ "blatt": 22801,
+ "questa": 22802,
+ "oru": 22803,
+ "▁Inside": 22804,
+ "▁McG": 22805,
+ "▁Nep": 22806,
+ "мп": 22807,
+ "▁inve": 22808,
+ "▁Animal": 22809,
+ "▁sob": 22810,
+ "ított": 22811,
+ "loyment": 22812,
+ "▁bund": 22813,
+ "Station": 22814,
+ "▁BEGIN": 22815,
+ "▁partiellement": 22816,
+ "igg": 22817,
+ "estore": 22818,
+ "▁coinc": 22819,
+ "▁Sommer": 22820,
+ "▁md": 22821,
+ "▁locked": 22822,
+ "mathchar": 22823,
+ "arma": 22824,
+ "pent": 22825,
+ "arium": 22826,
+ "▁ears": 22827,
+ "▁Songs": 22828,
+ "▁similarly": 22829,
+ "▁literally": 22830,
+ "▁inches": 22831,
+ "▁affection": 22832,
+ "lp": 22833,
+ "▁concluded": 22834,
+ "▁муніципалі": 22835,
+ "▁памя": 22836,
+ "estaur": 22837,
+ "▁Josh": 22838,
+ "▁Fritz": 22839,
+ "DBC": 22840,
+ "дён": 22841,
+ "posa": 22842,
+ "▁golden": 22843,
+ "▁pc": 22844,
+ "▁comte": 22845,
+ "▁Ziel": 22846,
+ "▁présente": 22847,
+ "marks": 22848,
+ "igneur": 22849,
+ "▁Drive": 22850,
+ "▁neglect": 22851,
+ "▁rozp": 22852,
+ "▁Five": 22853,
+ "spaces": 22854,
+ "▁Medi": 22855,
+ "▁existed": 22856,
+ "▁była": 22857,
+ "джи": 22858,
+ "▁frente": 22859,
+ "тник": 22860,
+ "odd": 22861,
+ "▁answering": 22862,
+ "bian": 22863,
+ "▁Eugen": 22864,
+ "▁Publications": 22865,
+ "▁Dia": 22866,
+ "lá": 22867,
+ "▁'_": 22868,
+ "▁recuper": 22869,
+ "ому": 22870,
+ "▁Append": 22871,
+ "obar": 22872,
+ "▁employees": 22873,
+ "▁compens": 22874,
+ "emetery": 22875,
+ "▁элект": 22876,
+ "MON": 22877,
+ "olin": 22878,
+ "▁historic": 22879,
+ "his": 22880,
+ "ąd": 22881,
+ "nm": 22882,
+ "▁Goth": 22883,
+ "▁stress": 22884,
+ "▁partecip": 22885,
+ "▁Aw": 22886,
+ "▁sar": 22887,
+ "▁hu": 22888,
+ "▁matplotlib": 22889,
+ "▁Myst": 22890,
+ "();`": 22891,
+ "schein": 22892,
+ "Longrightarrow": 22893,
+ "▁ря": 22894,
+ "▁Isra": 22895,
+ "[^": 22896,
+ "nou": 22897,
+ "▁synd": 22898,
+ "working": 22899,
+ "▁Nation": 22900,
+ "▁Pent": 22901,
+ "▁klass": 22902,
+ "▁applicable": 22903,
+ "▁Diam": 22904,
+ "▁brasile": 22905,
+ "▁pac": 22906,
+ "▁Height": 22907,
+ "Put": 22908,
+ "▁intro": 22909,
+ "▁unusual": 22910,
+ "nas": 22911,
+ "▁Gebäude": 22912,
+ "▁beam": 22913,
+ "▁Rect": 22914,
+ "▁Primera": 22915,
+ "▁haut": 22916,
+ "▁trait": 22917,
+ "prüft": 22918,
+ "inación": 22919,
+ "▁configurations": 22920,
+ "▁gilt": 22921,
+ "▁territoire": 22922,
+ "hez": 22923,
+ "▁alte": 22924,
+ "relative": 22925,
+ "Excel": 22926,
+ "▁Wright": 22927,
+ "GV": 22928,
+ "поли": 22929,
+ "Quant": 22930,
+ "▁gauge": 22931,
+ "▁multiply": 22932,
+ "ASS": 22933,
+ "ственно": 22934,
+ "ану": 22935,
+ "▁jeden": 22936,
+ "▁literary": 22937,
+ "▁Dro": 22938,
+ "▁advise": 22939,
+ "itzen": 22940,
+ "▁disag": 22941,
+ "website": 22942,
+ "▁дія": 22943,
+ "▁observer": 22944,
+ "▁január": 22945,
+ "vě": 22946,
+ "kup": 22947,
+ "▁Ses": 22948,
+ "▁wojew": 22949,
+ "▁stages": 22950,
+ "▁времени": 22951,
+ "łuż": 22952,
+ "нос": 22953,
+ "Download": 22954,
+ "ipo": 22955,
+ "▁graf": 22956,
+ "▁робо": 22957,
+ "▁Nikol": 22958,
+ "▁fic": 22959,
+ "▁joining": 22960,
+ "▁diversos": 22961,
+ "▁LIKE": 22962,
+ "▁Fitz": 22963,
+ "▁dimin": 22964,
+ "▁distrib": 22965,
+ "Sam": 22966,
+ "koz": 22967,
+ "▁alphabet": 22968,
+ "oser": 22969,
+ "OUR": 22970,
+ "uka": 22971,
+ "кая": 22972,
+ "▁steel": 22973,
+ "▁`--": 22974,
+ "▁tener": 22975,
+ "marker": 22976,
+ "▁Heaven": 22977,
+ "newcommand": 22978,
+ "▁prisoners": 22979,
+ "▁Knight": 22980,
+ "▁presents": 22981,
+ "▁questi": 22982,
+ "▁trains": 22983,
+ "opera": 22984,
+ "▁Linear": 22985,
+ "▁ME": 22986,
+ "▁Buc": 22987,
+ "Leg": 22988,
+ "▁agua": 22989,
+ "▁Griff": 22990,
+ "olg": 22991,
+ "dst": 22992,
+ ".\r": 22993,
+ "▁persones": 22994,
+ "Mal": 22995,
+ "бере": 22996,
+ "folge": 22997,
+ "▁acab": 22998,
+ "ctu": 22999,
+ "ptic": 23000,
+ "▁Navigation": 23001,
+ "Russ": 23002,
+ "галь": 23003,
+ "▁Ful": 23004,
+ "▁має": 23005,
+ "чная": 23006,
+ "wner": 23007,
+ "contra": 23008,
+ "▁joueur": 23009,
+ "▁Jess": 23010,
+ "▁renew": 23011,
+ "▁lap": 23012,
+ "▁casting": 23013,
+ "gal": 23014,
+ "▁tématu": 23015,
+ "▁называ": 23016,
+ "зах": 23017,
+ "чне": 23018,
+ ")-\\": 23019,
+ "▁часто": 23020,
+ "}$-": 23021,
+ "▁licz": 23022,
+ "▁emot": 23023,
+ "harm": 23024,
+ "▁occasionally": 23025,
+ "▁horror": 23026,
+ "east": 23027,
+ "▁printer": 23028,
+ "aran": 23029,
+ "▁Mississ": 23030,
+ "follow": 23031,
+ "▁Barry": 23032,
+ "▁investigate": 23033,
+ "gow": 23034,
+ "▁Americans": 23035,
+ "Since": 23036,
+ "▁відо": 23037,
+ "▁reun": 23038,
+ "osci": 23039,
+ "▁Chapter": 23040,
+ "▁bay": 23041,
+ "роме": 23042,
+ "ethe": 23043,
+ "édie": 23044,
+ "comot": 23045,
+ "▁miejscowo": 23046,
+ "▁studierte": 23047,
+ "ouvert": 23048,
+ "▁кур": 23049,
+ "▁DESC": 23050,
+ "▁touched": 23051,
+ "▁Jerry": 23052,
+ "uese": 23053,
+ "лище": 23054,
+ "authentication": 23055,
+ "▁colle": 23056,
+ "heart": 23057,
+ "▁regiment": 23058,
+ "cribed": 23059,
+ "▁Боль": 23060,
+ "▁проис": 23061,
+ "ceae": 23062,
+ "▁masses": 23063,
+ "▁scrolling": 23064,
+ "usto": 23065,
+ "SW": 23066,
+ "ovat": 23067,
+ "▁grâce": 23068,
+ "▁Архив": 23069,
+ "▁Север": 23070,
+ "avait": 23071,
+ "▁Marshall": 23072,
+ "▁HashMap": 23073,
+ "acon": 23074,
+ "ücken": 23075,
+ "[])": 23076,
+ "▁evangel": 23077,
+ "etzung": 23078,
+ "ttemberg": 23079,
+ "sters": 23080,
+ "TM": 23081,
+ "▁литера": 23082,
+ "quot": 23083,
+ "Pred": 23084,
+ "▁werk": 23085,
+ "▁haber": 23086,
+ "lava": 23087,
+ "vous": 23088,
+ "▁Late": 23089,
+ "cycle": 23090,
+ "тирова": 23091,
+ "▁проду": 23092,
+ "▁populations": 23093,
+ "▁Yan": 23094,
+ "Prefix": 23095,
+ "actéristiques": 23096,
+ "+'": 23097,
+ "()`](": 23098,
+ "▁Ль": 23099,
+ "филь": 23100,
+ "▁жизни": 23101,
+ "ftp": 23102,
+ "▁всех": 23103,
+ "▁gdzie": 23104,
+ "▁videa": 23105,
+ "oauth": 23106,
+ "▁pid": 23107,
+ "ům": 23108,
+ "▁pesso": 23109,
+ "▁tracking": 23110,
+ "izin": 23111,
+ "▁Morris": 23112,
+ "щий": 23113,
+ "▁Provinz": 23114,
+ "▁Mitte": 23115,
+ "▁artificial": 23116,
+ "brázky": 23117,
+ "▁дости": 23118,
+ "▁restored": 23119,
+ "▁communicate": 23120,
+ "agit": 23121,
+ "Recogn": 23122,
+ "▁lon": 23123,
+ "▁заня": 23124,
+ "▁Argument": 23125,
+ "flush": 23126,
+ "мана": 23127,
+ "seconds": 23128,
+ "UC": 23129,
+ "▁Ruth": 23130,
+ "▁tub": 23131,
+ "▁Bret": 23132,
+ "▁Pere": 23133,
+ "▁responsibility": 23134,
+ "ńczy": 23135,
+ "▁environments": 23136,
+ "kee": 23137,
+ "▁groot": 23138,
+ "▁painted": 23139,
+ "▁Éditions": 23140,
+ "cpy": 23141,
+ "árt": 23142,
+ "lichkeit": 23143,
+ "arda": 23144,
+ "Batch": 23145,
+ "▁Leopold": 23146,
+ "reason": 23147,
+ "noreferrer": 23148,
+ "sens": 23149,
+ "▁rocks": 23150,
+ "▁Hitler": 23151,
+ "лат": 23152,
+ "▁quoted": 23153,
+ "▁колле": 23154,
+ "▁уров": 23155,
+ "bag": 23156,
+ ".\")": 23157,
+ "▁ML": 23158,
+ "▁komt": 23159,
+ "▁[_": 23160,
+ "▁spectral": 23161,
+ "edo": 23162,
+ "▁insieme": 23163,
+ "▁suffering": 23164,
+ "slider": 23165,
+ "▁Kennedy": 23166,
+ "olate": 23167,
+ "▁Patri": 23168,
+ "зии": 23169,
+ "OH": 23170,
+ "▁теа": 23171,
+ "▁права": 23172,
+ "мах": 23173,
+ "rewrite": 23174,
+ "▁Einsatz": 23175,
+ "external": 23176,
+ "holds": 23177,
+ "▁Places": 23178,
+ "atype": 23179,
+ "▁vulner": 23180,
+ "▁abandoned": 23181,
+ "Origin": 23182,
+ "▁maximal": 23183,
+ "AAAA": 23184,
+ "▁Baseball": 23185,
+ "▁Close": 23186,
+ "▁painter": 23187,
+ "▁assigning": 23188,
+ "NB": 23189,
+ "blast": 23190,
+ "▁Künstler": 23191,
+ ")](": 23192,
+ "fach": 23193,
+ "▁Constantin": 23194,
+ "okes": 23195,
+ "▁nobody": 23196,
+ "▁subtract": 23197,
+ "▁fosse": 23198,
+ "▁certific": 23199,
+ "▁muse": 23200,
+ "/),": 23201,
+ "▁Profil": 23202,
+ "▁proxim": 23203,
+ "▁Jerusalem": 23204,
+ "▁simplicity": 23205,
+ "▁wsz": 23206,
+ "NUMBER": 23207,
+ "uttavia": 23208,
+ "UITableView": 23209,
+ "ichter": 23210,
+ "жан": 23211,
+ "▁Lav": 23212,
+ "itchen": 23213,
+ "▁Чем": 23214,
+ "Tu": 23215,
+ "▁geom": 23216,
+ "▁zvuky": 23217,
+ "▁Survey": 23218,
+ "ANCE": 23219,
+ "▁encrypted": 23220,
+ "prof": 23221,
+ "▁dare": 23222,
+ "▁Loren": 23223,
+ "тв": 23224,
+ "▁Алек": 23225,
+ "▁computers": 23226,
+ "▁expectation": 23227,
+ "▁substantial": 23228,
+ "▁Дми": 23229,
+ "▁`{": 23230,
+ "▁дра": 23231,
+ "ubble": 23232,
+ "▁performs": 23233,
+ "▁Krieg": 23234,
+ "▁incoming": 23235,
+ "▁Classification": 23236,
+ "WebView": 23237,
+ "▁episodes": 23238,
+ "apper": 23239,
+ "äufig": 23240,
+ "▁giov": 23241,
+ "▁Depart": 23242,
+ "бора": 23243,
+ "edly": 23244,
+ "ospod": 23245,
+ "▁ptr": 23246,
+ "▁dátum": 23247,
+ "▁estimation": 23248,
+ "icole": 23249,
+ "▁----": 23250,
+ "▁princes": 23251,
+ "HEAD": 23252,
+ "▁diffusion": 23253,
+ "▁drie": 23254,
+ "▁Ada": 23255,
+ "нице": 23256,
+ "nginx": 23257,
+ "shal": 23258,
+ "▁februari": 23259,
+ "▁Tat": 23260,
+ "looking": 23261,
+ "kund": 23262,
+ "▁Dean": 23263,
+ "mongodb": 23264,
+ "вших": 23265,
+ "▁Aur": 23266,
+ "▁Flora": 23267,
+ "▁Studios": 23268,
+ "ције": 23269,
+ "eil": 23270,
+ "Install": 23271,
+ "▁franch": 23272,
+ "▁HMS": 23273,
+ "▁practices": 23274,
+ "lej": 23275,
+ "dale": 23276,
+ "▁poste": 23277,
+ "▁Hels": 23278,
+ "▁reliable": 23279,
+ "ździer": 23280,
+ "▁verse": 23281,
+ "ermeister": 23282,
+ "▁quit": 23283,
+ "ético": 23284,
+ "ilis": 23285,
+ "edor": 23286,
+ "▁Cultural": 23287,
+ "дже": 23288,
+ "▁liked": 23289,
+ "▁mongodb": 23290,
+ "▁Broadway": 23291,
+ "▁IR": 23292,
+ "eszt": 23293,
+ "hov": 23294,
+ "▁míst": 23295,
+ "reiche": 23296,
+ "▁kB": 23297,
+ "стом": 23298,
+ "▁SQLite": 23299,
+ "▁torneo": 23300,
+ "\\.": 23301,
+ "Ord": 23302,
+ "▁Administration": 23303,
+ "▁зда": 23304,
+ "▁Hinter": 23305,
+ "▁Via": 23306,
+ "Decimal": 23307,
+ "orious": 23308,
+ "▁nécessaire": 23309,
+ "wx": 23310,
+ "▁tej": 23311,
+ "▁tema": 23312,
+ "Obrázky": 23313,
+ "рите": 23314,
+ "▁builds": 23315,
+ "▁laten": 23316,
+ "▁гг": 23317,
+ "Visibility": 23318,
+ "läu": 23319,
+ "▁sechs": 23320,
+ "▁луч": 23321,
+ "cera": 23322,
+ "Could": 23323,
+ "▁traject": 23324,
+ "}}^{": 23325,
+ "▁Japon": 23326,
+ "another": 23327,
+ "IK": 23328,
+ "▁belonging": 23329,
+ "▁facilities": 23330,
+ "▁Daily": 23331,
+ "▁dece": 23332,
+ "intro": 23333,
+ "▁случа": 23334,
+ "Namespace": 23335,
+ "▁Bak": 23336,
+ "locale": 23337,
+ "UG": 23338,
+ "=${": 23339,
+ "▁compañ": 23340,
+ "jąc": 23341,
+ "▁arithmetic": 23342,
+ "forum": 23343,
+ "▁porta": 23344,
+ "onk": 23345,
+ "▁gender": 23346,
+ "▁expects": 23347,
+ "бка": 23348,
+ "▁nak": 23349,
+ "▁Grace": 23350,
+ "▁stro": 23351,
+ "ividual": 23352,
+ "▁COM": 23353,
+ "▁Farm": 23354,
+ "▁canton": 23355,
+ "тому": 23356,
+ "javax": 23357,
+ "сей": 23358,
+ "▁briefly": 23359,
+ "Face": 23360,
+ "rotate": 23361,
+ "constant": 23362,
+ "▁gallery": 23363,
+ "astro": 23364,
+ "allery": 23365,
+ "▁DJ": 23366,
+ "charge": 23367,
+ "ходить": 23368,
+ "Cent": 23369,
+ "\\\",": 23370,
+ "▁donna": 23371,
+ "arca": 23372,
+ "lade": 23373,
+ "zin": 23374,
+ "▁Ned": 23375,
+ "▁hosting": 23376,
+ "idor": 23377,
+ "itative": 23378,
+ "igs": 23379,
+ "▁пря": 23380,
+ "▁ticket": 23381,
+ "▁studying": 23382,
+ "▁designer": 23383,
+ "lapsed": 23384,
+ "▁laat": 23385,
+ "▁dix": 23386,
+ "▁integrated": 23387,
+ "▁informed": 23388,
+ "▁behave": 23389,
+ "▁labour": 23390,
+ "estellt": 23391,
+ "calendar": 23392,
+ "▁killing": 23393,
+ "▁twitter": 23394,
+ "iae": 23395,
+ "▁historique": 23396,
+ "DEFAULT": 23397,
+ "iała": 23398,
+ "▁theoretical": 23399,
+ "▁unders": 23400,
+ "ляет": 23401,
+ "atan": 23402,
+ "▁surname": 23403,
+ "▁intercept": 23404,
+ "гласно": 23405,
+ "▁општини": 23406,
+ "▁tired": 23407,
+ "▁Beth": 23408,
+ "▁административ": 23409,
+ "Li": 23410,
+ "▁Тур": 23411,
+ "▁Scanner": 23412,
+ "▁Stern": 23413,
+ "▁вместе": 23414,
+ "▁reporting": 23415,
+ "▁sull": 23416,
+ "цией": 23417,
+ "berts": 23418,
+ "ogonal": 23419,
+ "ők": 23420,
+ "▁ipsum": 23421,
+ "▁seulement": 23422,
+ "▁Seiten": 23423,
+ "wordpress": 23424,
+ "▁featuring": 23425,
+ "istischen": 23426,
+ "jub": 23427,
+ "▁étr": 23428,
+ "▁tea": 23429,
+ "▁adapted": 23430,
+ "▁scales": 23431,
+ "▁nan": 23432,
+ "getValue": 23433,
+ "▁Blues": 23434,
+ "acles": 23435,
+ "▁stati": 23436,
+ "▁entitled": 23437,
+ "▁Ralph": 23438,
+ "gravity": 23439,
+ "▁entrepr": 23440,
+ "któber": 23441,
+ "limat": 23442,
+ "lis": 23443,
+ "Demo": 23444,
+ "relation": 23445,
+ "▁nep": 23446,
+ "prowad": 23447,
+ "itis": 23448,
+ "▁pup": 23449,
+ "nehmer": 23450,
+ "▁disappoint": 23451,
+ "▁etwas": 23452,
+ "annon": 23453,
+ "▁approved": 23454,
+ "▁clever": 23455,
+ "Loading": 23456,
+ "▁verz": 23457,
+ "resse": 23458,
+ "▁inspir": 23459,
+ "▁sampling": 23460,
+ "▁Bek": 23461,
+ "})$.": 23462,
+ "▁грома": 23463,
+ "▁specie": 23464,
+ "▁repub": 23465,
+ "▁loader": 23466,
+ "▁erf": 23467,
+ "▁shoulder": 23468,
+ "rais": 23469,
+ "▁мате": 23470,
+ "▁Month": 23471,
+ "Scene": 23472,
+ "▁blocking": 23473,
+ "▁ocean": 23474,
+ "geben": 23475,
+ "▁Kilometer": 23476,
+ "▁bedeut": 23477,
+ "▁Mix": 23478,
+ "fmt": 23479,
+ "▁Norweg": 23480,
+ "▁IDs": 23481,
+ "parallel": 23482,
+ "▁anticip": 23483,
+ "▁revis": 23484,
+ "хан": 23485,
+ "▁свет": 23486,
+ "CASE": 23487,
+ "▁führt": 23488,
+ "▁atomic": 23489,
+ "▁darkness": 23490,
+ "▁Fußballspieler": 23491,
+ "▁Жи": 23492,
+ "quisition": 23493,
+ "▁Sieg": 23494,
+ "Circ": 23495,
+ "▁cientí": 23496,
+ "nelle": 23497,
+ "SHA": 23498,
+ "▁urb": 23499,
+ "▁ksi": 23500,
+ "leqslant": 23501,
+ "▁фрон": 23502,
+ "▁defect": 23503,
+ "▁rá": 23504,
+ "▁stronger": 23505,
+ "▁pł": 23506,
+ "▁communities": 23507,
+ "нина": 23508,
+ "enas": 23509,
+ "iennent": 23510,
+ "▁safely": 23511,
+ "▁тя": 23512,
+ "▁benchmark": 23513,
+ "▁Braun": 23514,
+ "methods": 23515,
+ "argument": 23516,
+ "vos": 23517,
+ "obox": 23518,
+ "рови": 23519,
+ "▁recherche": 23520,
+ "mn": 23521,
+ "▁brings": 23522,
+ "machine": 23523,
+ "CESS": 23524,
+ "hosts": 23525,
+ "▁NY": 23526,
+ "Autow": 23527,
+ "▁современ": 23528,
+ "▁Gary": 23529,
+ "▁sensor": 23530,
+ "▁documented": 23531,
+ "▁prendre": 23532,
+ "▁peer": 23533,
+ "enix": 23534,
+ "hai": 23535,
+ "arbe": 23536,
+ "цент": 23537,
+ "_(": 23538,
+ "▁URI": 23539,
+ "ева": 23540,
+ "▁Regie": 23541,
+ "▁Monument": 23542,
+ "▁onderwerp": 23543,
+ "Bag": 23544,
+ "tit": 23545,
+ "▁stir": 23546,
+ "▁nerv": 23547,
+ "сторія": 23548,
+ "▁sov": 23549,
+ "▁writers": 23550,
+ "▁sorts": 23551,
+ "absolute": 23552,
+ "▁difficulties": 23553,
+ "▁parlament": 23554,
+ "▁IEnumerable": 23555,
+ "▁dissol": 23556,
+ "▁CHECK": 23557,
+ "arina": 23558,
+ "inburgh": 23559,
+ "DM": 23560,
+ "▁eind": 23561,
+ "▁budget": 23562,
+ "▁certains": 23563,
+ "▁första": 23564,
+ "anja": 23565,
+ "▁годов": 23566,
+ "▁тек": 23567,
+ "▁Duch": 23568,
+ "gui": 23569,
+ "▁Teams": 23570,
+ "▁многи": 23571,
+ "Marie": 23572,
+ "Integr": 23573,
+ "ThreadPool": 23574,
+ "rust": 23575,
+ "ík": 23576,
+ "%\"": 23577,
+ "enf": 23578,
+ "spl": 23579,
+ "▁begun": 23580,
+ "lou": 23581,
+ "▁RewriteRule": 23582,
+ "tuple": 23583,
+ "aneous": 23584,
+ "▁marine": 23585,
+ "attan": 23586,
+ "ikal": 23587,
+ "▁graduated": 23588,
+ "illé": 23589,
+ "▁прове": 23590,
+ "▁Роз": 23591,
+ "',\r": 23592,
+ "▁Pfarr": 23593,
+ "▁nivel": 23594,
+ "▁працю": 23595,
+ "music": 23596,
+ "▁setTimeout": 23597,
+ "ERS": 23598,
+ "▁Erik": 23599,
+ "pit": 23600,
+ "▁Хро": 23601,
+ "▁pił": 23602,
+ "▁peri": 23603,
+ "док": 23604,
+ "uszt": 23605,
+ "▁Bear": 23606,
+ "ClassName": 23607,
+ "▁Parlament": 23608,
+ "▁aix": 23609,
+ "▁invited": 23610,
+ "▁PATH": 23611,
+ "xter": 23612,
+ "▁Race": 23613,
+ "▁hecho": 23614,
+ "▁Tower": 23615,
+ "▁utf": 23616,
+ "actly": 23617,
+ "▁буде": 23618,
+ "▁angles": 23619,
+ "няя": 23620,
+ "ouvelles": 23621,
+ "▁climate": 23622,
+ "▁singing": 23623,
+ "▁navigate": 23624,
+ ">';": 23625,
+ "adows": 23626,
+ "▁leta": 23627,
+ "▁Sitz": 23628,
+ "▁partitions": 23629,
+ "▁dock": 23630,
+ "▁ży": 23631,
+ "▁allocate": 23632,
+ "▁benefits": 23633,
+ "▁nieder": 23634,
+ "xpath": 23635,
+ "meck": 23636,
+ "älle": 23637,
+ "▁coupling": 23638,
+ "жил": 23639,
+ "ForKey": 23640,
+ "argent": 23641,
+ "clou": 23642,
+ "▁instruments": 23643,
+ "▁enthus": 23644,
+ "▁még": 23645,
+ "▁Пав": 23646,
+ "▁Rach": 23647,
+ "-----": 23648,
+ "▁APIs": 23649,
+ "▁Vier": 23650,
+ "Cmd": 23651,
+ "itore": 23652,
+ "▁Cuba": 23653,
+ "▁dátummal": 23654,
+ "▁embedding": 23655,
+ "stdio": 23656,
+ "▁Gilbert": 23657,
+ "▁geprüft": 23658,
+ "▁stating": 23659,
+ "▁triggers": 23660,
+ "+=": 23661,
+ "▁spécial": 23662,
+ "▁deliber": 23663,
+ "мин": 23664,
+ "Produ": 23665,
+ "▁Stati": 23666,
+ "▁zus": 23667,
+ "ktionen": 23668,
+ "Dispatcher": 23669,
+ "idal": 23670,
+ "▁LP": 23671,
+ "optera": 23672,
+ "▁estar": 23673,
+ "▁значи": 23674,
+ "смо": 23675,
+ "ouses": 23676,
+ "engono": 23677,
+ "▁WPF": 23678,
+ "publish": 23679,
+ "▁teor": 23680,
+ "elif": 23681,
+ "▁erg": 23682,
+ "▁separation": 23683,
+ "Pan": 23684,
+ "▁Orchestra": 23685,
+ "Peter": 23686,
+ "bounds": 23687,
+ "▁Shakespeare": 23688,
+ "▁cantante": 23689,
+ "▁demi": 23690,
+ "▁Popular": 23691,
+ "фр": 23692,
+ "arring": 23693,
+ "цин": 23694,
+ "▁Ис": 23695,
+ "von": 23696,
+ "▁substitution": 23697,
+ "▁línea": 23698,
+ "\\}$.": 23699,
+ "como": 23700,
+ "▁важ": 23701,
+ "wagen": 23702,
+ "▁rarely": 23703,
+ "▁periods": 23704,
+ "glob": 23705,
+ "▁Frid": 23706,
+ "▁Terr": 23707,
+ "▁Release": 23708,
+ "Brainz": 23709,
+ "▁граф": 23710,
+ "DIS": 23711,
+ "compatible": 23712,
+ "▁poč": 23713,
+ "LIN": 23714,
+ "▁Källor": 23715,
+ "▁Arizona": 23716,
+ "ppy": 23717,
+ "Seq": 23718,
+ "▁Ain": 23719,
+ "▁Tourn": 23720,
+ "brow": 23721,
+ "▁Kör": 23722,
+ "▁ash": 23723,
+ "ogeneous": 23724,
+ "▁dialect": 23725,
+ "▁насеља": 23726,
+ "mysqli": 23727,
+ "цов": 23728,
+ "▁flor": 23729,
+ "▁фло": 23730,
+ "IAB": 23731,
+ "▁Within": 23732,
+ "^(": 23733,
+ "▁bois": 23734,
+ "▁tank": 23735,
+ "▁affili": 23736,
+ "▁hijo": 23737,
+ "▁Kate": 23738,
+ "▁Verl": 23739,
+ "▁Miami": 23740,
+ "▁typescript": 23741,
+ "њу": 23742,
+ "▁Vern": 23743,
+ "▁висо": 23744,
+ "iemann": 23745,
+ "▁coverage": 23746,
+ "brie": 23747,
+ "▁Starting": 23748,
+ "numpy": 23749,
+ "▁Jenkins": 23750,
+ "▁két": 23751,
+ "▁grup": 23752,
+ "▁Scient": 23753,
+ "▁interrupt": 23754,
+ "▁blob": 23755,
+ "ugel": 23756,
+ "▁Orth": 23757,
+ "abama": 23758,
+ "▁Bapt": 23759,
+ "ownik": 23760,
+ "▁быть": 23761,
+ "▁Julius": 23762,
+ "▁През": 23763,
+ "▁substitute": 23764,
+ "supported": 23765,
+ "chy": 23766,
+ "egyzetek": 23767,
+ "▁Performance": 23768,
+ "lessly": 23769,
+ "Constructor": 23770,
+ "▁extending": 23771,
+ "▁Muslim": 23772,
+ "Overflow": 23773,
+ "▁Jenn": 23774,
+ "▁produz": 23775,
+ "мії": 23776,
+ "▁países": 23777,
+ "▁eux": 23778,
+ "▁fate": 23779,
+ "ologe": 23780,
+ "ук": 23781,
+ "▁wobei": 23782,
+ "▁Sachsen": 23783,
+ "▁сайт": 23784,
+ "Models": 23785,
+ "▁Fast": 23786,
+ "besondere": 23787,
+ "▁FR": 23788,
+ "▁acon": 23789,
+ "▁Denkmal": 23790,
+ "▁anch": 23791,
+ "▁público": 23792,
+ "▁Tas": 23793,
+ "▁cand": 23794,
+ "▁paździer": 23795,
+ "▁Мон": 23796,
+ "▁versus": 23797,
+ "rut": 23798,
+ "GT": 23799,
+ "▁inserting": 23800,
+ "▁canad": 23801,
+ "єм": 23802,
+ "▁Metro": 23803,
+ "▁Herzog": 23804,
+ "Ignore": 23805,
+ "▁decrease": 23806,
+ "▁пун": 23807,
+ "▁Fischer": 23808,
+ "▁Mall": 23809,
+ "▁nörd": 23810,
+ "iostream": 23811,
+ "▁Luxemb": 23812,
+ "payload": 23813,
+ "▁Zeitung": 23814,
+ "▁modifying": 23815,
+ "▁Cher": 23816,
+ "▁Luci": 23817,
+ "nx": 23818,
+ "▁loose": 23819,
+ "▁topics": 23820,
+ "▁varied": 23821,
+ "▁pg": 23822,
+ "ajes": 23823,
+ "umm": 23824,
+ "Views": 23825,
+ "▁Beau": 23826,
+ "MAP": 23827,
+ "ipeline": 23828,
+ "▁Interest": 23829,
+ "arith": 23830,
+ "▁según": 23831,
+ "▁Gemeins": 23832,
+ "▁Attribute": 23833,
+ "community": 23834,
+ "▁центр": 23835,
+ "▁kilometer": 23836,
+ "▁économ": 23837,
+ "laration": 23838,
+ "▁къ": 23839,
+ "▁carriage": 23840,
+ "▁Lane": 23841,
+ "▁необ": 23842,
+ "kur": 23843,
+ "▁AF": 23844,
+ "INTER": 23845,
+ "))$": 23846,
+ "▁beide": 23847,
+ "destination": 23848,
+ "▁fonts": 23849,
+ "appendChild": 23850,
+ "▁MAR": 23851,
+ "▁gay": 23852,
+ "mil": 23853,
+ "lesh": 23854,
+ "èt": 23855,
+ "▁Wang": 23856,
+ "▁Years": 23857,
+ "▁Symbol": 23858,
+ "Live": 23859,
+ "quency": 23860,
+ "▁Users": 23861,
+ "▁Unicode": 23862,
+ "▁Sau": 23863,
+ "▁tons": 23864,
+ "▁Ні": 23865,
+ "▁краї": 23866,
+ "AXI": 23867,
+ "▁Pick": 23868,
+ "AI": 23869,
+ "▁hath": 23870,
+ "▁ainda": 23871,
+ "▁papa": 23872,
+ "▁Censo": 23873,
+ "▁Bald": 23874,
+ "▁Насеље": 23875,
+ "▁simulations": 23876,
+ "▁jaren": 23877,
+ "▁inherited": 23878,
+ "▁той": 23879,
+ "▁feels": 23880,
+ "ression": 23881,
+ "▁október": 23882,
+ "bid": 23883,
+ "ási": 23884,
+ "▁muss": 23885,
+ "ventory": 23886,
+ "▁meist": 23887,
+ "▁bore": 23888,
+ "▁slider": 23889,
+ "дели": 23890,
+ "\\;": 23891,
+ "▁extracted": 23892,
+ "кур": 23893,
+ "Edge": 23894,
+ "▁perf": 23895,
+ "▁Brigade": 23896,
+ "▁град": 23897,
+ "ienie": 23898,
+ "▁Norden": 23899,
+ "▁cancer": 23900,
+ "\"/": 23901,
+ "Cur": 23902,
+ "▁Сере": 23903,
+ "▁liquid": 23904,
+ "structure": 23905,
+ "▁choosing": 23906,
+ "▁Perl": 23907,
+ "Side": 23908,
+ "üs": 23909,
+ "ритор": 23910,
+ "▁kost": 23911,
+ "▁packets": 23912,
+ "▁которого": 23913,
+ "▁Comun": 23914,
+ "▁fingers": 23915,
+ "ográfica": 23916,
+ ">:": 23917,
+ "▁championnat": 23918,
+ "▁blieb": 23919,
+ "▁Situ": 23920,
+ "▁suic": 23921,
+ "andis": 23922,
+ "Fre": 23923,
+ "▁Conc": 23924,
+ "▁republic": 23925,
+ "▁armed": 23926,
+ "▁hell": 23927,
+ "▁hög": 23928,
+ "ragma": 23929,
+ "▁ense": 23930,
+ "▁acres": 23931,
+ "▁Від": 23932,
+ "▁Reform": 23933,
+ "MainActivity": 23934,
+ "keeper": 23935,
+ "erb": 23936,
+ "▁monaster": 23937,
+ "subsubsection": 23938,
+ "▁Див": 23939,
+ "▁creature": 23940,
+ "▁indicating": 23941,
+ "▁urls": 23942,
+ "▁kein": 23943,
+ "образ": 23944,
+ "pick": 23945,
+ "▁Admir": 23946,
+ "▁oldest": 23947,
+ "▁muz": 23948,
+ "▁contradiction": 23949,
+ "▁probabil": 23950,
+ "illiant": 23951,
+ "▁pav": 23952,
+ "▁papel": 23953,
+ "ubs": 23954,
+ "▁жена": 23955,
+ "AML": 23956,
+ "▁recip": 23957,
+ "▁COL": 23958,
+ "added": 23959,
+ "▁clue": 23960,
+ "▁Ukraine": 23961,
+ "▁jelent": 23962,
+ "чень": 23963,
+ "▁mathematics": 23964,
+ "Accept": 23965,
+ "▁сот": 23966,
+ "▁север": 23967,
+ "▁isolated": 23968,
+ "▁поя": 23969,
+ "wür": 23970,
+ "Router": 23971,
+ "CAT": 23972,
+ "rgb": 23973,
+ "▁Lov": 23974,
+ "mutable": 23975,
+ "▁Wes": 23976,
+ "▁Italien": 23977,
+ "Drag": 23978,
+ "enium": 23979,
+ "atting": 23980,
+ "tcp": 23981,
+ "▁erfolgte": 23982,
+ "▁Beit": 23983,
+ "гато": 23984,
+ "▁Systems": 23985,
+ "▁reserve": 23986,
+ "eree": 23987,
+ "▁Пари": 23988,
+ "▁зали": 23989,
+ "▁rent": 23990,
+ "▁sunt": 23991,
+ "▁Girls": 23992,
+ "▁Ernest": 23993,
+ "▁fits": 23994,
+ "▁oppon": 23995,
+ "▁живело": 23996,
+ "▁avaient": 23997,
+ "▁Florence": 23998,
+ "▁числе": 23999,
+ "▁engines": 24000,
+ "Dynamic": 24001,
+ "▁stycznia": 24002,
+ "▁bias": 24003,
+ "▁Exchange": 24004,
+ "дий": 24005,
+ "▁historiques": 24006,
+ "▁Hä": 24007,
+ "hod": 24008,
+ "▁wł": 24009,
+ "schap": 24010,
+ "▁lac": 24011,
+ "▁Foi": 24012,
+ "▁dwell": 24013,
+ "▁Unternehmen": 24014,
+ "URN": 24015,
+ "▁kilometres": 24016,
+ "▁Однако": 24017,
+ "кли": 24018,
+ "▁Sri": 24019,
+ "Groups": 24020,
+ "mind": 24021,
+ "oslov": 24022,
+ "fern": 24023,
+ "egu": 24024,
+ "abeled": 24025,
+ "Fiddle": 24026,
+ "▁Century": 24027,
+ "/-": 24028,
+ "▁Jegyzetek": 24029,
+ "Hen": 24030,
+ "ensemble": 24031,
+ "▁Gut": 24032,
+ "_{{\\": 24033,
+ "▁ranking": 24034,
+ "+$": 24035,
+ "ала": 24036,
+ "▁#{": 24037,
+ "imientos": 24038,
+ "achim": 24039,
+ "rides": 24040,
+ "▁Klaus": 24041,
+ "▁intend": 24042,
+ "▁Kentucky": 24043,
+ "cipe": 24044,
+ "▁Dienst": 24045,
+ "▁situated": 24046,
+ "▁póź": 24047,
+ "▁scrit": 24048,
+ "clip": 24049,
+ "нет": 24050,
+ "tables": 24051,
+ "▁Nied": 24052,
+ "▁McK": 24053,
+ "▁powst": 24054,
+ "▁kunnen": 24055,
+ "▁Evans": 24056,
+ "жды": 24057,
+ "вать": 24058,
+ "uchar": 24059,
+ "▁residents": 24060,
+ "iak": 24061,
+ "▁Resol": 24062,
+ "▁veces": 24063,
+ "▁satisfying": 24064,
+ "INF": 24065,
+ "▁син": 24066,
+ "▁crossing": 24067,
+ "iben": 24068,
+ "▁широ": 24069,
+ "pto": 24070,
+ "ILL": 24071,
+ "▁роль": 24072,
+ "▁aktiv": 24073,
+ "▁обращения": 24074,
+ "Wikispecies": 24075,
+ "▁Höhe": 24076,
+ "cro": 24077,
+ "════": 24078,
+ "altra": 24079,
+ "▁FILE": 24080,
+ "▁ups": 24081,
+ "▁allocation": 24082,
+ "Michael": 24083,
+ "▁acknowled": 24084,
+ "Linux": 24085,
+ "▁metros": 24086,
+ "tte": 24087,
+ "afen": 24088,
+ "▁xcode": 24089,
+ "▁тради": 24090,
+ "species": 24091,
+ "▁injury": 24092,
+ "▁самы": 24093,
+ "▁lattice": 24094,
+ "Material": 24095,
+ "andenburg": 24096,
+ "▁huvudstaden": 24097,
+ "story": 24098,
+ "▁varying": 24099,
+ "▁követ": 24100,
+ "▁Российской": 24101,
+ "irse": 24102,
+ "▁drum": 24103,
+ "Pressed": 24104,
+ "Lar": 24105,
+ "▁Agu": 24106,
+ "▁weil": 24107,
+ "▁commence": 24108,
+ "▁Según": 24109,
+ "Gesture": 24110,
+ "Shape": 24111,
+ "▁Vors": 24112,
+ "▁succès": 24113,
+ "▁corrected": 24114,
+ "Kar": 24115,
+ "▁cruel": 24116,
+ "▁politico": 24117,
+ "▁Schriftsteller": 24118,
+ "▁risult": 24119,
+ "etu": 24120,
+ "archiv": 24121,
+ "▁género": 24122,
+ "▁Lü": 24123,
+ "▁triumph": 24124,
+ "ORS": 24125,
+ "Lu": 24126,
+ "▁personnel": 24127,
+ "▁Hills": 24128,
+ "asset": 24129,
+ "domin": 24130,
+ "Receive": 24131,
+ "▁Oak": 24132,
+ "▁Kno": 24133,
+ "▁Theory": 24134,
+ "irie": 24135,
+ "owan": 24136,
+ "▁estava": 24137,
+ "▁executes": 24138,
+ "йт": 24139,
+ "ópez": 24140,
+ "поло": 24141,
+ "ética": 24142,
+ "▁название": 24143,
+ "▁converges": 24144,
+ "▁notre": 24145,
+ "▁populated": 24146,
+ "▁movements": 24147,
+ "▁statistical": 24148,
+ "▁Zweiten": 24149,
+ "quin": 24150,
+ "▁importantes": 24151,
+ "▁klein": 24152,
+ "▁Segunda": 24153,
+ "schließend": 24154,
+ "Failure": 24155,
+ "nar": 24156,
+ "dag": 24157,
+ "▁ruolo": 24158,
+ "▁fiction": 24159,
+ "▁использу": 24160,
+ "▁crisis": 24161,
+ "▁Getting": 24162,
+ ",%": 24163,
+ "▁армии": 24164,
+ "▁campus": 24165,
+ "▁footer": 24166,
+ "▁días": 24167,
+ "бан": 24168,
+ "▁liberty": 24169,
+ "▁gh": 24170,
+ "▁chamber": 24171,
+ "▁districts": 24172,
+ "▁excited": 24173,
+ "▁canción": 24174,
+ "tero": 24175,
+ "▁Working": 24176,
+ "▁części": 24177,
+ "льный": 24178,
+ "▁forum": 24179,
+ "▁Ehe": 24180,
+ "▁ката": 24181,
+ "itations": 24182,
+ "Tools": 24183,
+ "achiv": 24184,
+ "▁cres": 24185,
+ "asto": 24186,
+ "▁rever": 24187,
+ "▁nazionale": 24188,
+ "▁doors": 24189,
+ "▁Nancy": 24190,
+ "▁islands": 24191,
+ "Imp": 24192,
+ "▁Chair": 24193,
+ "▁vorm": 24194,
+ "sein": 24195,
+ "▁доку": 24196,
+ "erset": 24197,
+ "▁tätig": 24198,
+ "▁Krit": 24199,
+ "▁пя": 24200,
+ "▁conservation": 24201,
+ "▁Partido": 24202,
+ "minipage": 24203,
+ "Validator": 24204,
+ "▁recovery": 24205,
+ "▁NASA": 24206,
+ "▁breast": 24207,
+ "ilty": 24208,
+ "analy": 24209,
+ "elines": 24210,
+ "▁Saturday": 24211,
+ "emark": 24212,
+ "cej": 24213,
+ "Zero": 24214,
+ "▁Turner": 24215,
+ "secure": 24216,
+ "Exists": 24217,
+ "▁Rick": 24218,
+ "evalu": 24219,
+ "ctrl": 24220,
+ "▁compression": 24221,
+ "▁CURL": 24222,
+ "textcolor": 24223,
+ ")\\,": 24224,
+ "longrightarrow": 24225,
+ "▁Fernseh": 24226,
+ "icha": 24227,
+ "▁loi": 24228,
+ "▁Оте": 24229,
+ "▁cave": 24230,
+ "▁dozen": 24231,
+ "▁explaining": 24232,
+ "▁innov": 24233,
+ "▁Nicholas": 24234,
+ "▁diameter": 24235,
+ "▁Marian": 24236,
+ "▁fires": 24237,
+ "▁artifact": 24238,
+ "▁Parker": 24239,
+ "▁Bund": 24240,
+ "▁verte": 24241,
+ "▁talent": 24242,
+ "▁Lucas": 24243,
+ "reverse": 24244,
+ "▁folgenden": 24245,
+ "▁Sah": 24246,
+ "jections": 24247,
+ "▁invece": 24248,
+ "▁costitu": 24249,
+ "▁ssl": 24250,
+ "}}^": 24251,
+ "▁violent": 24252,
+ "▁spos": 24253,
+ "Rout": 24254,
+ "jdk": 24255,
+ "▁заме": 24256,
+ "▁furent": 24257,
+ "andal": 24258,
+ "Hom": 24259,
+ "▁Senior": 24260,
+ "▁pounds": 24261,
+ "▁Discogs": 24262,
+ "▁зе": 24263,
+ "'}[": 24264,
+ "▁Napoleon": 24265,
+ "ordinates": 24266,
+ "àn": 24267,
+ "▁kurz": 24268,
+ "▁vere": 24269,
+ "▁reuse": 24270,
+ "▁Ген": 24271,
+ "▁Syst": 24272,
+ "▁disappeared": 24273,
+ "▁Watch": 24274,
+ "bibliothek": 24275,
+ "▁корпу": 24276,
+ "▁Cs": 24277,
+ "▁}`": 24278,
+ "▁rör": 24279,
+ "▁дела": 24280,
+ "VB": 24281,
+ "▁calculus": 24282,
+ "рода": 24283,
+ "▁judgment": 24284,
+ "atile": 24285,
+ "▁longue": 24286,
+ "▁Hus": 24287,
+ "Jac": 24288,
+ "}})": 24289,
+ "RIPT": 24290,
+ "IABot": 24291,
+ "▁após": 24292,
+ "▁aston": 24293,
+ "Webachiv": 24294,
+ "▁URLs": 24295,
+ "▁coat": 24296,
+ "▁эконо": 24297,
+ "▁lear": 24298,
+ "extensions": 24299,
+ "▁Classic": 24300,
+ "TI": 24301,
+ "▁Tage": 24302,
+ "▁lá": 24303,
+ "▁semb": 24304,
+ "▁développement": 24305,
+ "ISTS": 24306,
+ "▁solves": 24307,
+ ",\\,": 24308,
+ "▁чемпі": 24309,
+ "ordinary": 24310,
+ "▁Bav": 24311,
+ "▁muchos": 24312,
+ "Self": 24313,
+ "▁Май": 24314,
+ "▁Diet": 24315,
+ "▁necessity": 24316,
+ "від": 24317,
+ "▁mano": 24318,
+ "▁Ср": 24319,
+ "▁carre": 24320,
+ "▁Camera": 24321,
+ "▁Narod": 24322,
+ "▁Phone": 24323,
+ "▁polym": 24324,
+ "imore": 24325,
+ "isEmpty": 24326,
+ "▁Houston": 24327,
+ "▁Rece": 24328,
+ "▁presentation": 24329,
+ "ниципа": 24330,
+ "▁Db": 24331,
+ "▁confident": 24332,
+ "▁}{": 24333,
+ "▁bullet": 24334,
+ "▁{},": 24335,
+ "ANGE": 24336,
+ "▁Notre": 24337,
+ "chin": 24338,
+ "▁Dragon": 24339,
+ "erca": 24340,
+ "iali": 24341,
+ "▁asset": 24342,
+ "▁muito": 24343,
+ "▁deeply": 24344,
+ "▁restriction": 24345,
+ "▁commerce": 24346,
+ "▁Bomb": 24347,
+ "caught": 24348,
+ "qq": 24349,
+ "▁Arag": 24350,
+ "▁немец": 24351,
+ "▁Analysis": 24352,
+ "▁článku": 24353,
+ "▁baby": 24354,
+ "▁echter": 24355,
+ "▁одного": 24356,
+ "жена": 24357,
+ "▁whitespace": 24358,
+ "çu": 24359,
+ "LIST": 24360,
+ "frique": 24361,
+ "▁varias": 24362,
+ "▁Wit": 24363,
+ "▁Licencia": 24364,
+ "Exit": 24365,
+ "▁sierp": 24366,
+ "▁assemb": 24367,
+ "▁splitting": 24368,
+ "▁palace": 24369,
+ "▁blocked": 24370,
+ "▁boundaries": 24371,
+ "▁iterations": 24372,
+ "▁Rotten": 24373,
+ "▁Verkehr": 24374,
+ "▁weer": 24375,
+ "Tests": 24376,
+ "ifting": 24377,
+ "▁regul": 24378,
+ "▁persist": 24379,
+ "▁Solution": 24380,
+ "pb": 24381,
+ "▁collapse": 24382,
+ "▁arrested": 24383,
+ "▁predicate": 24384,
+ "▁Zone": 24385,
+ "▁ingen": 24386,
+ "zález": 24387,
+ "▁banks": 24388,
+ "plant": 24389,
+ "▁Nella": 24390,
+ "▁бан": 24391,
+ "▁Snow": 24392,
+ "▁Kreuz": 24393,
+ "ício": 24394,
+ "▁enters": 24395,
+ "▁expose": 24396,
+ "či": 24397,
+ "шие": 24398,
+ "Qual": 24399,
+ "▁landscape": 24400,
+ "▁подацима": 24401,
+ "mai": 24402,
+ "stag": 24403,
+ "ований": 24404,
+ "DEF": 24405,
+ "[]{": 24406,
+ "▁dernière": 24407,
+ "icut": 24408,
+ "▁Xml": 24409,
+ "▁subgroup": 24410,
+ "▁Polsce": 24411,
+ "▁Warning": 24412,
+ "▁vehicles": 24413,
+ "iot": 24414,
+ "▁dll": 24415,
+ "ront": 24416,
+ "▁Louise": 24417,
+ "▁ara": 24418,
+ "▁Scala": 24419,
+ "▁canonical": 24420,
+ "▁placing": 24421,
+ "ERY": 24422,
+ "▁Jag": 24423,
+ "▁virus": 24424,
+ "emu": 24425,
+ "▁});\r": 24426,
+ "▁мм": 24427,
+ "▁Trying": 24428,
+ "▁Lexikon": 24429,
+ "abord": 24430,
+ "▁expedition": 24431,
+ "▁demanded": 24432,
+ "Zyg": 24433,
+ "lein": 24434,
+ "▁verwendet": 24435,
+ "рина": 24436,
+ "wol": 24437,
+ "▁pivot": 24438,
+ "▁однако": 24439,
+ "▁propriet": 24440,
+ "▁awards": 24441,
+ "tout": 24442,
+ "▁assim": 24443,
+ "▁Storm": 24444,
+ "Limit": 24445,
+ "elin": 24446,
+ "wealth": 24447,
+ "uez": 24448,
+ "▁rappresent": 24449,
+ "▁resta": 24450,
+ "▁gegründet": 24451,
+ "▁journalist": 24452,
+ "isie": 24453,
+ "▁facility": 24454,
+ "illed": 24455,
+ "ulk": 24456,
+ "▁PK": 24457,
+ "Anchor": 24458,
+ "▁_)": 24459,
+ "VF": 24460,
+ "LAB": 24461,
+ "▁nå": 24462,
+ "odos": 24463,
+ "▁billion": 24464,
+ "virti": 24465,
+ "▁Jeux": 24466,
+ "юза": 24467,
+ "tomcat": 24468,
+ "▁charts": 24469,
+ "▁Bundle": 24470,
+ "▁lst": 24471,
+ "▁exer": 24472,
+ "▁females": 24473,
+ "▁obliged": 24474,
+ "▁aby": 24475,
+ "rolled": 24476,
+ "dri": 24477,
+ "▁Sche": 24478,
+ "▁vessels": 24479,
+ "IMARY": 24480,
+ "▁reasoning": 24481,
+ "▁проте": 24482,
+ "FILES": 24483,
+ "verk": 24484,
+ "osos": 24485,
+ "▁комму": 24486,
+ "дії": 24487,
+ "▁dd": 24488,
+ "▁соответ": 24489,
+ "▁IOException": 24490,
+ "ských": 24491,
+ "▁CLI": 24492,
+ "▁ње": 24493,
+ "CM": 24494,
+ "TD": 24495,
+ "▁possibilities": 24496,
+ "▁Compos": 24497,
+ "half": 24498,
+ "▁webpage": 24499,
+ "▁swing": 24500,
+ "▁zas": 24501,
+ "▁cycl": 24502,
+ "leid": 24503,
+ "istica": 24504,
+ "▁Insert": 24505,
+ "▁Sweden": 24506,
+ "▁wanting": 24507,
+ "▁ال": 24508,
+ "▁eeuw": 24509,
+ "▁Administr": 24510,
+ "▁Warren": 24511,
+ "▁bs": 24512,
+ "▁pam": 24513,
+ "anus": 24514,
+ "Dra": 24515,
+ "expl": 24516,
+ "▁Kant": 24517,
+ "▁Austin": 24518,
+ "▁csak": 24519,
+ "▁theatre": 24520,
+ "▁compatibility": 24521,
+ "матиче": 24522,
+ "setState": 24523,
+ "бю": 24524,
+ "}{|": 24525,
+ "▁Dy": 24526,
+ "▁Zwischen": 24527,
+ "Alt": 24528,
+ "CLARE": 24529,
+ "steps": 24530,
+ "▁Lage": 24531,
+ "▁Mitt": 24532,
+ "▁Dublin": 24533,
+ "▁работы": 24534,
+ "deep": 24535,
+ "▁flows": 24536,
+ "▁Palace": 24537,
+ "unix": 24538,
+ "refs": 24539,
+ "umar": 24540,
+ "aset": 24541,
+ "cov": 24542,
+ "▁ping": 24543,
+ "▁Safari": 24544,
+ "flug": 24545,
+ "creens": 24546,
+ "{#": 24547,
+ "▁реа": 24548,
+ "adors": 24549,
+ "▁amor": 24550,
+ "uce": 24551,
+ "demic": 24552,
+ "▁Netherlands": 24553,
+ "▁clusters": 24554,
+ "▁enfor": 24555,
+ "marine": 24556,
+ "▁bugs": 24557,
+ "izzata": 24558,
+ "▁scra": 24559,
+ "Les": 24560,
+ "quick": 24561,
+ "▁turno": 24562,
+ "_*": 24563,
+ "ера": 24564,
+ "Generated": 24565,
+ ">[": 24566,
+ "▁estre": 24567,
+ "orde": 24568,
+ "▁verg": 24569,
+ "роз": 24570,
+ "▁pau": 24571,
+ "includes": 24572,
+ "assa": 24573,
+ "aders": 24574,
+ "▁Герма": 24575,
+ "▁estaven": 24576,
+ "▁earliest": 24577,
+ "▁resultado": 24578,
+ "mun": 24579,
+ "▁plots": 24580,
+ "din": 24581,
+ "sorted": 24582,
+ "▁preference": 24583,
+ "rió": 24584,
+ "туре": 24585,
+ "▁Ligue": 24586,
+ "▁завер": 24587,
+ "phr": 24588,
+ "▁pocket": 24589,
+ "▁parl": 24590,
+ "▁lak": 24591,
+ "▁powie": 24592,
+ "▁altres": 24593,
+ "$};": 24594,
+ "plain": 24595,
+ "▁Cred": 24596,
+ "itza": 24597,
+ "perp": 24598,
+ "Green": 24599,
+ "▁devoted": 24600,
+ "production": 24601,
+ "worker": 24602,
+ "elsen": 24603,
+ "▁vern": 24604,
+ "▁március": 24605,
+ "▁Confeder": 24606,
+ "▁Liverpool": 24607,
+ "▁музи": 24608,
+ "▁emails": 24609,
+ "▁distances": 24610,
+ "▁segments": 24611,
+ "▁anth": 24612,
+ "▁wrest": 24613,
+ "▁hoog": 24614,
+ "▁cinema": 24615,
+ "rror": 24616,
+ "▁geboren": 24617,
+ "▁éc": 24618,
+ "Marker": 24619,
+ "▁Compet": 24620,
+ "▁листо": 24621,
+ "allowed": 24622,
+ "volume": 24623,
+ "Espagne": 24624,
+ "Ze": 24625,
+ "▁fixes": 24626,
+ "▁rond": 24627,
+ "▁arrangement": 24628,
+ "/~": 24629,
+ ".](": 24630,
+ "▁Források": 24631,
+ "▁weiteren": 24632,
+ "excel": 24633,
+ "▁змі": 24634,
+ "▁moderne": 24635,
+ "English": 24636,
+ "▁Transfermarkt": 24637,
+ "▁bearing": 24638,
+ "▁cleared": 24639,
+ "▁сам": 24640,
+ "▁divs": 24641,
+ "ći": 24642,
+ "▁этой": 24643,
+ "▁Геор": 24644,
+ "scene": 24645,
+ "▁ages": 24646,
+ "GEN": 24647,
+ "rän": 24648,
+ "▁Toul": 24649,
+ "▁Abs": 24650,
+ "ját": 24651,
+ "▁mediante": 24652,
+ "▁empres": 24653,
+ "▁Employee": 24654,
+ "▁polynomials": 24655,
+ "▁optimize": 24656,
+ "▁выступа": 24657,
+ "fare": 24658,
+ "вей": 24659,
+ "xf": 24660,
+ "quez": 24661,
+ "▁botan": 24662,
+ "▁defend": 24663,
+ "▁Quart": 24664,
+ "Mont": 24665,
+ "vb": 24666,
+ "tick": 24667,
+ "WD": 24668,
+ "mine": 24669,
+ "▁modific": 24670,
+ "notification": 24671,
+ "▁denn": 24672,
+ "▁algo": 24673,
+ "▁Spo": 24674,
+ "▁mistrzost": 24675,
+ "/:": 24676,
+ "▁apresent": 24677,
+ "▁прод": 24678,
+ "Volume": 24679,
+ "ską": 24680,
+ "protected": 24681,
+ "▁Turkish": 24682,
+ "azy": 24683,
+ "▁pouv": 24684,
+ "▁período": 24685,
+ "skog": 24686,
+ "▁entropy": 24687,
+ "zed": 24688,
+ "тори": 24689,
+ "▁lij": 24690,
+ "boards": 24691,
+ "▁стату": 24692,
+ "Bool": 24693,
+ "▁polity": 24694,
+ "@\",": 24695,
+ "▁рік": 24696,
+ "née": 24697,
+ "▁Zug": 24698,
+ "▁Uniti": 24699,
+ "émet": 24700,
+ "atience": 24701,
+ "dimen": 24702,
+ "▁Steven": 24703,
+ "Ha": 24704,
+ "ACTION": 24705,
+ "▁wand": 24706,
+ "▁Navar": 24707,
+ "▁січня": 24708,
+ "Watch": 24709,
+ "▁Stuart": 24710,
+ "▁zde": 24711,
+ "▁контро": 24712,
+ "dataset": 24713,
+ "yó": 24714,
+ "▁Bush": 24715,
+ "▁себя": 24716,
+ "▁worthy": 24717,
+ "▁Ble": 24718,
+ "▁propor": 24719,
+ "▁Village": 24720,
+ "▁ry": 24721,
+ "▁voit": 24722,
+ "▁копия": 24723,
+ "▁zp": 24724,
+ "▁cura": 24725,
+ "▁Html": 24726,
+ "▁Dieser": 24727,
+ "▁Days": 24728,
+ "onnes": 24729,
+ "▁antigu": 24730,
+ "▁Staaten": 24731,
+ "▁faint": 24732,
+ "ongs": 24733,
+ "▁öst": 24734,
+ "Redirect": 24735,
+ "ель": 24736,
+ "atorial": 24737,
+ "▁bother": 24738,
+ "EditText": 24739,
+ "▁Giul": 24740,
+ "▁заво": 24741,
+ "▁pueblo": 24742,
+ "▁Mississippi": 24743,
+ "jak": 24744,
+ "▁wings": 24745,
+ "onc": 24746,
+ "ível": 24747,
+ "iencia": 24748,
+ "entlicht": 24749,
+ "▁BTW": 24750,
+ "ornal": 24751,
+ "▁Коро": 24752,
+ "▁одним": 24753,
+ "▁salv": 24754,
+ "▁finden": 24755,
+ "geo": 24756,
+ "▁авиа": 24757,
+ "attung": 24758,
+ "viv": 24759,
+ "▁Luther": 24760,
+ "▁общи": 24761,
+ "▁Rolle": 24762,
+ "▁Abraham": 24763,
+ "▁centered": 24764,
+ "▁slash": 24765,
+ "isat": 24766,
+ "emann": 24767,
+ "Os": 24768,
+ "парта": 24769,
+ "▁Pablo": 24770,
+ "▁collaboration": 24771,
+ "paths": 24772,
+ "édition": 24773,
+ "▁viewed": 24774,
+ "▁consisted": 24775,
+ "▁recovered": 24776,
+ "▁Mexican": 24777,
+ "▁Fix": 24778,
+ "▁spell": 24779,
+ "Special": 24780,
+ "▁Ст": 24781,
+ "esseur": 24782,
+ "▁Украины": 24783,
+ "former": 24784,
+ "▁św": 24785,
+ "▁zeros": 24786,
+ "▁Straßen": 24787,
+ "▁organisation": 24788,
+ "üssen": 24789,
+ "▁Sierra": 24790,
+ "▁Season": 24791,
+ "▁volont": 24792,
+ "BeanFactory": 24793,
+ "▁помощ": 24794,
+ "▁pressing": 24795,
+ "▁equivalence": 24796,
+ "▁catt": 24797,
+ "icity": 24798,
+ "▁accomplished": 24799,
+ "▁yo": 24800,
+ "▁sic": 24801,
+ "▁imports": 24802,
+ "▁accommod": 24803,
+ "▁Porto": 24804,
+ "▁яка": 24805,
+ "▁loan": 24806,
+ "тики": 24807,
+ "▁checkout": 24808,
+ "▁assess": 24809,
+ "▁Population": 24810,
+ "urent": 24811,
+ "clojure": 24812,
+ "▁Santos": 24813,
+ "▁információ": 24814,
+ "POS": 24815,
+ "▁gare": 24816,
+ "▁kick": 24817,
+ "▁radical": 24818,
+ "▁Peace": 24819,
+ "▁streaming": 24820,
+ "camp": 24821,
+ "ząt": 24822,
+ "говор": 24823,
+ "▁Regierung": 24824,
+ "▁proceeded": 24825,
+ "fm": 24826,
+ "лены": 24827,
+ "▁earnest": 24828,
+ "▁Parad": 24829,
+ "requests": 24830,
+ "▁Raum": 24831,
+ "šč": 24832,
+ "▁policies": 24833,
+ "▁Tig": 24834,
+ "▁sitt": 24835,
+ "▁Energy": 24836,
+ "▁purely": 24837,
+ "▁Haut": 24838,
+ "▁Speed": 24839,
+ "bio": 24840,
+ "▁orange": 24841,
+ "▁biggest": 24842,
+ "▁britannique": 24843,
+ "▁Notable": 24844,
+ "vu": 24845,
+ "лении": 24846,
+ "бин": 24847,
+ "▁Nash": 24848,
+ "щение": 24849,
+ "▁ciel": 24850,
+ "adémie": 24851,
+ "▁грудня": 24852,
+ "▁joue": 24853,
+ "▁voted": 24854,
+ "rico": 24855,
+ "▁гор": 24856,
+ "▁команду": 24857,
+ "itivity": 24858,
+ "▁ще": 24859,
+ "▁definite": 24860,
+ "uropa": 24861,
+ "!\");": 24862,
+ "Defaults": 24863,
+ "▁некоторы": 24864,
+ "édération": 24865,
+ "▁silly": 24866,
+ "▁talked": 24867,
+ "reu": 24868,
+ "▁Lomb": 24869,
+ "▁statue": 24870,
+ "кта": 24871,
+ "юр": 24872,
+ "umably": 24873,
+ "▁городе": 24874,
+ "▁Runtime": 24875,
+ "▁diagn": 24876,
+ "▁retro": 24877,
+ "▁Sverige": 24878,
+ "▁inicial": 24879,
+ "ienza": 24880,
+ "▁figlio": 24881,
+ "▁zog": 24882,
+ "▁rey": 24883,
+ "▁Rund": 24884,
+ "тный": 24885,
+ "▁ceased": 24886,
+ "erno": 24887,
+ "▁esa": 24888,
+ "▁trouv": 24889,
+ "▁Gemeinden": 24890,
+ "▁comercial": 24891,
+ "skap": 24892,
+ "enario": 24893,
+ "▁juris": 24894,
+ "TB": 24895,
+ "нала": 24896,
+ "▁vij": 24897,
+ "VO": 24898,
+ "▁clin": 24899,
+ "jör": 24900,
+ "сан": 24901,
+ "owała": 24902,
+ "ribución": 24903,
+ "▁ursprüng": 24904,
+ "▁condem": 24905,
+ "▁Stage": 24906,
+ "▁mixing": 24907,
+ "▁різ": 24908,
+ "▁fans": 24909,
+ "ház": 24910,
+ "social": 24911,
+ "zan": 24912,
+ "▁свой": 24913,
+ "Cookie": 24914,
+ "▁Roland": 24915,
+ "azionale": 24916,
+ "▁Sloven": 24917,
+ "▁Fiche": 24918,
+ "▁Sé": 24919,
+ "hä": 24920,
+ "▁officials": 24921,
+ "▁înt": 24922,
+ "Interceptor": 24923,
+ "Tables": 24924,
+ "▁davon": 24925,
+ "initialize": 24926,
+ "]=\"": 24927,
+ "▁Body": 24928,
+ "▁Upper": 24929,
+ "▁Collect": 24930,
+ "▁Zürich": 24931,
+ "Horizontal": 24932,
+ "Typ": 24933,
+ "▁político": 24934,
+ "▁RewriteCond": 24935,
+ "▁hoped": 24936,
+ "▁anxious": 24937,
+ "Liter": 24938,
+ "jahr": 24939,
+ "▁assemble": 24940,
+ "▁crypt": 24941,
+ "lahoma": 24942,
+ "ASH": 24943,
+ "▁Бри": 24944,
+ "▁Cic": 24945,
+ "twitter": 24946,
+ "hyper": 24947,
+ "▁Tell": 24948,
+ "ільки": 24949,
+ "вобо": 24950,
+ "▁bazie": 24951,
+ "▁contemporary": 24952,
+ "▁Parameter": 24953,
+ "stwa": 24954,
+ "▁bekend": 24955,
+ "cock": 24956,
+ "previous": 24957,
+ "enska": 24958,
+ "▁caller": 24959,
+ "]])": 24960,
+ "▁Raz": 24961,
+ "▁Selon": 24962,
+ "▁proposal": 24963,
+ "▁bý": 24964,
+ "▁Sied": 24965,
+ "▁Arbeits": 24966,
+ "▁pride": 24967,
+ "▁slope": 24968,
+ "idé": 24969,
+ "gradient": 24970,
+ "▁Джерела": 24971,
+ "▁SH": 24972,
+ "▁разрабо": 24973,
+ "iversity": 24974,
+ "сподар": 24975,
+ "\\{\\": 24976,
+ "▁стали": 24977,
+ "▁Einzel": 24978,
+ "▁rgba": 24979,
+ "▁Anim": 24980,
+ "▁alles": 24981,
+ "бар": 24982,
+ "erte": 24983,
+ "▁réalisé": 24984,
+ "Institut": 24985,
+ "▁markup": 24986,
+ "▁vars": 24987,
+ "▁gam": 24988,
+ "▁Василь": 24989,
+ "izza": 24990,
+ "▁Cob": 24991,
+ "▁Metal": 24992,
+ "▁leak": 24993,
+ "▁Lanc": 24994,
+ "Switch": 24995,
+ "Delay": 24996,
+ "atuur": 24997,
+ "▁четы": 24998,
+ "▁англий": 24999,
+ "▁legacy": 25000,
+ "▁desarroll": 25001,
+ "▁topological": 25002,
+ "▁jeweils": 25003,
+ "▁Nederlandse": 25004,
+ "▁atmosphere": 25005,
+ "urban": 25006,
+ "▁slov": 25007,
+ "▁lawyer": 25008,
+ "pecially": 25009,
+ "▁alternate": 25010,
+ "▁paramet": 25011,
+ "▁establishment": 25012,
+ "▁woods": 25013,
+ "PD": 25014,
+ "▁наи": 25015,
+ "▁mang": 25016,
+ "▁wechselte": 25017,
+ "ську": 25018,
+ ".=": 25019,
+ "▁fifteen": 25020,
+ "SUM": 25021,
+ "▁Fro": 25022,
+ "▁LED": 25023,
+ "owano": 25024,
+ "ствие": 25025,
+ "▁Données": 25026,
+ "tol": 25027,
+ "żyn": 25028,
+ "cref": 25029,
+ "ствии": 25030,
+ "horn": 25031,
+ "▁сооб": 25032,
+ "▁оборо": 25033,
+ "▁Complete": 25034,
+ "“)": 25035,
+ "▁kindly": 25036,
+ "▁Chamber": 25037,
+ "ség": 25038,
+ "WH": 25039,
+ "▁ambient": 25040,
+ "кро": 25041,
+ "▁cheval": 25042,
+ "▁написа": 25043,
+ "flu": 25044,
+ "▁Offiz": 25045,
+ "mate": 25046,
+ "natural": 25047,
+ "separ": 25048,
+ "empre": 25049,
+ "ViewHolder": 25050,
+ "fw": 25051,
+ "▁letech": 25052,
+ "▁trailing": 25053,
+ "atri": 25054,
+ "▁Gó": 25055,
+ "▁Bonn": 25056,
+ "▁unlikely": 25057,
+ "RAM": 25058,
+ "enst": 25059,
+ "Stats": 25060,
+ "▁политиче": 25061,
+ ")--(": 25062,
+ "▁trom": 25063,
+ "!...": 25064,
+ "▁Meanwhile": 25065,
+ "стана": 25066,
+ "▁Reino": 25067,
+ "▁Arist": 25068,
+ "$}}%": 25069,
+ "▁solem": 25070,
+ "closure": 25071,
+ "ignation": 25072,
+ "łod": 25073,
+ "▁divor": 25074,
+ "▁международ": 25075,
+ "=\"": 25076,
+ "▁molt": 25077,
+ "▁skills": 25078,
+ "▁Cir": 25079,
+ "▁Después": 25080,
+ "▁lun": 25081,
+ "▁coron": 25082,
+ "▁Comics": 25083,
+ "стори": 25084,
+ "▁Items": 25085,
+ "▁Think": 25086,
+ "игра": 25087,
+ "▁grows": 25088,
+ "portal": 25089,
+ "▁nich": 25090,
+ "▁restrictions": 25091,
+ "▁Lau": 25092,
+ "шення": 25093,
+ "▁Sozial": 25094,
+ "▁кі": 25095,
+ "mana": 25096,
+ "▁lieutenant": 25097,
+ "Attr": 25098,
+ "umeric": 25099,
+ "▁drives": 25100,
+ "asis": 25101,
+ "бай": 25102,
+ "NL": 25103,
+ "Zygote": 25104,
+ "physics": 25105,
+ "▁internally": 25106,
+ "вается": 25107,
+ "Hidden": 25108,
+ "▁Дата": 25109,
+ "▁unsafe": 25110,
+ "▁Roc": 25111,
+ "▁instantiate": 25112,
+ "udni": 25113,
+ "▁Room": 25114,
+ "▁Пред": 25115,
+ "▁maja": 25116,
+ "achment": 25117,
+ "uuid": 25118,
+ "Projects": 25119,
+ "Gre": 25120,
+ "▁взя": 25121,
+ "▁Blood": 25122,
+ "icile": 25123,
+ "▁Nouvelle": 25124,
+ "Does": 25125,
+ "▁nieuwe": 25126,
+ "ále": 25127,
+ "angs": 25128,
+ "weak": 25129,
+ "▁aantal": 25130,
+ "▁Ев": 25131,
+ "▁Dresden": 25132,
+ "▁Lost": 25133,
+ "ката": 25134,
+ "▁involve": 25135,
+ "▁declaring": 25136,
+ "▁Political": 25137,
+ "érez": 25138,
+ "kop": 25139,
+ "notify": 25140,
+ "▁Curt": 25141,
+ "▁schließlich": 25142,
+ "ghan": 25143,
+ "цена": 25144,
+ "▁kwiet": 25145,
+ "ügel": 25146,
+ "▁Sob": 25147,
+ "▁substr": 25148,
+ "▁ellen": 25149,
+ "ionario": 25150,
+ "enson": 25151,
+ "WIN": 25152,
+ "спорт": 25153,
+ "emer": 25154,
+ "nome": 25155,
+ "▁smiled": 25156,
+ "▁Schmidt": 25157,
+ "▁smoke": 25158,
+ "▁Token": 25159,
+ "▁vague": 25160,
+ "▁provision": 25161,
+ "yaml": 25162,
+ "нитель": 25163,
+ "onial": 25164,
+ "époque": 25165,
+ "▁NC": 25166,
+ "▁NFL": 25167,
+ "teck": 25168,
+ "▁allo": 25169,
+ "▁précéd": 25170,
+ "central": 25171,
+ "▁majd": 25172,
+ "▁chrom": 25173,
+ "▁Zum": 25174,
+ "verso": 25175,
+ "▁verschiedenen": 25176,
+ "▁старо": 25177,
+ "▁quelle": 25178,
+ "▁rép": 25179,
+ "ROW": 25180,
+ "▁ihnen": 25181,
+ "▁sensible": 25182,
+ "|$": 25183,
+ "▁schw": 25184,
+ "▁BR": 25185,
+ "▁Options": 25186,
+ "▁tens": 25187,
+ "▁conquist": 25188,
+ "▁ließ": 25189,
+ "ovis": 25190,
+ "▁міста": 25191,
+ "▁ela": 25192,
+ "rifice": 25193,
+ "▁lok": 25194,
+ "▁Queensland": 25195,
+ "Binary": 25196,
+ "▁Rahmen": 25197,
+ "▁abol": 25198,
+ "▁část": 25199,
+ "▁Edinburgh": 25200,
+ "inde": 25201,
+ "▁calculating": 25202,
+ "▁Oregon": 25203,
+ "▁legit": 25204,
+ "▁Nachdem": 25205,
+ "athon": 25206,
+ "Private": 25207,
+ "illaume": 25208,
+ "▁observable": 25209,
+ "leans": 25210,
+ "▁remarked": 25211,
+ "▁halt": 25212,
+ "ницы": 25213,
+ "▁stamp": 25214,
+ "▁Adv": 25215,
+ "Louis": 25216,
+ "imming": 25217,
+ "gruppe": 25218,
+ "▁Policy": 25219,
+ "▁vrij": 25220,
+ "ftrag": 25221,
+ "▁offices": 25222,
+ "▁participated": 25223,
+ "▁escol": 25224,
+ "▁\"": 25225,
+ "▁nombreuses": 25226,
+ "▁divid": 25227,
+ "▁advis": 25228,
+ "лтати": 25229,
+ "▁==>": 25230,
+ "Orientation": 25231,
+ "cid": 25232,
+ "Cart": 25233,
+ "▁murm": 25234,
+ "▁assez": 25235,
+ "▁linking": 25236,
+ "building": 25237,
+ "▁reconna": 25238,
+ "▁shook": 25239,
+ "managed": 25240,
+ "landa": 25241,
+ "▁León": 25242,
+ "▁création": 25243,
+ "дой": 25244,
+ "ocity": 25245,
+ "▁wij": 25246,
+ "▁wieś": 25247,
+ "xtart": 25248,
+ "▁Move": 25249,
+ "lungen": 25250,
+ "ствует": 25251,
+ "orney": 25252,
+ "optional": 25253,
+ "macro": 25254,
+ "Condition": 25255,
+ "▁squares": 25256,
+ "▁mistaken": 25257,
+ "ánt": 25258,
+ "▁Ris": 25259,
+ "▁sentences": 25260,
+ "erea": 25261,
+ "▁mij": 25262,
+ "Und": 25263,
+ "▁nombr": 25264,
+ "zA": 25265,
+ "▁Independent": 25266,
+ "▁preview": 25267,
+ "imas": 25268,
+ "▁males": 25269,
+ "inental": 25270,
+ "Thank": 25271,
+ "▁popol": 25272,
+ "▁pover": 25273,
+ "▁grasp": 25274,
+ "▁imped": 25275,
+ "▁campionato": 25276,
+ "▁Wei": 25277,
+ "▁titled": 25278,
+ "▁Además": 25279,
+ "▁Password": 25280,
+ "▁Pam": 25281,
+ "UILD": 25282,
+ "▁липня": 25283,
+ "werb": 25284,
+ "................": 25285,
+ "▁Río": 25286,
+ "▁teeth": 25287,
+ "bp": 25288,
+ "▁SW": 25289,
+ "ulaire": 25290,
+ "▁seized": 25291,
+ "▁Stef": 25292,
+ "úl": 25293,
+ "▁viz": 25294,
+ "iony": 25295,
+ "▁junt": 25296,
+ "▁která": 25297,
+ "▁września": 25298,
+ "<>": 25299,
+ "▁surg": 25300,
+ "▁tutte": 25301,
+ "▁Hob": 25302,
+ "повід": 25303,
+ "▁wohl": 25304,
+ "▁trag": 25305,
+ "▁Crown": 25306,
+ "▁trova": 25307,
+ "стову": 25308,
+ "▁Vienna": 25309,
+ "esehen": 25310,
+ "▁metropol": 25311,
+ "▁reflected": 25312,
+ "тета": 25313,
+ "▁traduc": 25314,
+ "▁Bast": 25315,
+ "▁erschien": 25316,
+ "woord": 25317,
+ "()\"": 25318,
+ "talet": 25319,
+ "▁roads": 25320,
+ "ведения": 25321,
+ "ührung": 25322,
+ "▁cogn": 25323,
+ "▁Valle": 25324,
+ "▁landing": 25325,
+ "▁Regex": 25326,
+ "▁Iowa": 25327,
+ "dział": 25328,
+ "▁erreichte": 25329,
+ "aum": 25330,
+ "▁founder": 25331,
+ "apolis": 25332,
+ "Compiler": 25333,
+ "▁kop": 25334,
+ "▁marc": 25335,
+ "▁територ": 25336,
+ "))`": 25337,
+ "▁lei": 25338,
+ "geon": 25339,
+ "▁weapons": 25340,
+ "▁horn": 25341,
+ "▁elif": 25342,
+ "▁Capital": 25343,
+ "će": 25344,
+ "▁forall": 25345,
+ "▁эта": 25346,
+ "preview": 25347,
+ "▁DNA": 25348,
+ "▁sid": 25349,
+ "orch": 25350,
+ "▁Ras": 25351,
+ "▁arab": 25352,
+ "Best": 25353,
+ "▁счита": 25354,
+ "▁López": 25355,
+ "ança": 25356,
+ "▁funkc": 25357,
+ "▁tienen": 25358,
+ ";&": 25359,
+ "museum": 25360,
+ "▁Err": 25361,
+ "▁resort": 25362,
+ "Nov": 25363,
+ "▁kal": 25364,
+ "MW": 25365,
+ "шь": 25366,
+ "anchor": 25367,
+ "▁роман": 25368,
+ "leading": 25369,
+ "▁manten": 25370,
+ "▁Silva": 25371,
+ "dade": 25372,
+ "▁designated": 25373,
+ "▁revista": 25374,
+ "Oct": 25375,
+ "percent": 25376,
+ "▁уні": 25377,
+ "identifier": 25378,
+ "mass": 25379,
+ "@@": 25380,
+ "ulsion": 25381,
+ "germeister": 25382,
+ "▁predicted": 25383,
+ "▁сви": 25384,
+ "жной": 25385,
+ "▁Ergeb": 25386,
+ "▁cust": 25387,
+ "▁removes": 25388,
+ "charg": 25389,
+ "пример": 25390,
+ "▁forming": 25391,
+ "asma": 25392,
+ "stdout": 25393,
+ "Fun": 25394,
+ "yme": 25395,
+ "tered": 25396,
+ "ursive": 25397,
+ "ighed": 25398,
+ "▁след": 25399,
+ "verband": 25400,
+ "▁LOG": 25401,
+ "rams": 25402,
+ "éon": 25403,
+ "endra": 25404,
+ "▁Bereich": 25405,
+ "▁temporal": 25406,
+ "▁langue": 25407,
+ "▁Inn": 25408,
+ "▁moreover": 25409,
+ "▁tutorials": 25410,
+ "Middle": 25411,
+ "▁советский": 25412,
+ "▁maintenance": 25413,
+ "asures": 25414,
+ "▁válto": 25415,
+ "BASE": 25416,
+ "▁disappear": 25417,
+ "ския": 25418,
+ "▁conocido": 25419,
+ "▁Нау": 25420,
+ "▁Libert": 25421,
+ "▁Harold": 25422,
+ "▁lifetime": 25423,
+ "▁Tür": 25424,
+ "▁zawod": 25425,
+ "omic": 25426,
+ "▁Retrieved": 25427,
+ "architecture": 25428,
+ "čka": 25429,
+ "iformes": 25430,
+ "development": 25431,
+ "ordnung": 25432,
+ "Inf": 25433,
+ "leben": 25434,
+ "▁Stars": 25435,
+ "signal": 25436,
+ "▁grammar": 25437,
+ "▁corso": 25438,
+ "▁Wagner": 25439,
+ "▁geht": 25440,
+ "▁royale": 25441,
+ "warn": 25442,
+ "umbled": 25443,
+ "▁instit": 25444,
+ "▁Ши": 25445,
+ "hh": 25446,
+ "▁refuge": 25447,
+ "▁favorite": 25448,
+ "ierto": 25449,
+ "▁condado": 25450,
+ "▁Ther": 25451,
+ "▁человека": 25452,
+ "▁Food": 25453,
+ "▁seizo": 25454,
+ "▁Initialize": 25455,
+ "▁connu": 25456,
+ "▁overlap": 25457,
+ "▁Emil": 25458,
+ "▁Martí": 25459,
+ "▁жовтня": 25460,
+ "erva": 25461,
+ "▁boats": 25462,
+ "ações": 25463,
+ "▁derrot": 25464,
+ "▁malloc": 25465,
+ "▁conject": 25466,
+ "jk": 25467,
+ "▁sare": 25468,
+ "лемен": 25469,
+ "▁sums": 25470,
+ "Authorization": 25471,
+ "▁Kun": 25472,
+ "]$,": 25473,
+ "gemeinde": 25474,
+ "odot": 25475,
+ "defin": 25476,
+ "▁emission": 25477,
+ "▁Крас": 25478,
+ "▁appart": 25479,
+ "▁stopping": 25480,
+ "▁Сред": 25481,
+ "▁conjug": 25482,
+ "▁insight": 25483,
+ "▁Broadcast": 25484,
+ "▁PMID": 25485,
+ "▁advantages": 25486,
+ "enes": 25487,
+ "▁residence": 25488,
+ "ljen": 25489,
+ "isseur": 25490,
+ "▁pubblicato": 25491,
+ "▁GitHub": 25492,
+ "▁Peru": 25493,
+ "▁galaxies": 25494,
+ "▁annotations": 25495,
+ "gas": 25496,
+ "▁répond": 25497,
+ "Js": 25498,
+ "▁independently": 25499,
+ "NP": 25500,
+ "▁inqu": 25501,
+ "▁grounds": 25502,
+ "Components": 25503,
+ "▁anten": 25504,
+ "▁вз": 25505,
+ "▁hos": 25506,
+ "▁sint": 25507,
+ "▁hiding": 25508,
+ "▁województ": 25509,
+ "Messages": 25510,
+ "▁показа": 25511,
+ "===": 25512,
+ "▁Abstract": 25513,
+ "▁läng": 25514,
+ "▁Formula": 25515,
+ "dawn": 25516,
+ "▁designs": 25517,
+ "Img": 25518,
+ "▁Portuguese": 25519,
+ "▁incluy": 25520,
+ "avigator": 25521,
+ "▁Brothers": 25522,
+ "▁continent": 25523,
+ "▁evidently": 25524,
+ "race": 25525,
+ "цького": 25526,
+ "▁reck": 25527,
+ "▁серпня": 25528,
+ "▁Grey": 25529,
+ "▁appeal": 25530,
+ "▁unlike": 25531,
+ "▁powershell": 25532,
+ "▁racc": 25533,
+ "fers": 25534,
+ "▁burning": 25535,
+ "fasst": 25536,
+ "installed": 25537,
+ "▁Give": 25538,
+ "▁colonial": 25539,
+ "▁€": 25540,
+ "▁Rö": 25541,
+ "▁christ": 25542,
+ "nehm": 25543,
+ "там": 25544,
+ "▁corpo": 25545,
+ "▁convirti": 25546,
+ "yter": 25547,
+ "Sym": 25548,
+ "▁Greece": 25549,
+ "▁moth": 25550,
+ "▁Johan": 25551,
+ "▁monarch": 25552,
+ "▁Download": 25553,
+ "▁craft": 25554,
+ "už": 25555,
+ "▁Luke": 25556,
+ "▁suffix": 25557,
+ "\\/": 25558,
+ "Have": 25559,
+ "▁карь": 25560,
+ "▁comfortable": 25561,
+ "▁tips": 25562,
+ "▁Після": 25563,
+ "▁броја": 25564,
+ "▁информа": 25565,
+ "MQ": 25566,
+ "бран": 25567,
+ "▁tx": 25568,
+ "▁slaves": 25569,
+ "▁firewall": 25570,
+ "▁Forces": 25571,
+ "atif": 25572,
+ "▁Quellen": 25573,
+ "▁théâtre": 25574,
+ "льных": 25575,
+ "▁расположен": 25576,
+ "▁Details": 25577,
+ "ką": 25578,
+ "▁longitud": 25579,
+ "INST": 25580,
+ "▁naval": 25581,
+ "Fernseh": 25582,
+ "essel": 25583,
+ "Grad": 25584,
+ "▁belang": 25585,
+ "▁aggi": 25586,
+ "ZygoteInit": 25587,
+ "łów": 25588,
+ "▁Sug": 25589,
+ "sil": 25590,
+ "▁exterior": 25591,
+ "щі": 25592,
+ "ORD": 25593,
+ "enser": 25594,
+ "▁rapide": 25595,
+ "▁темпера": 25596,
+ "incie": 25597,
+ "Si": 25598,
+ "avam": 25599,
+ "arded": 25600,
+ "▁Added": 25601,
+ "Endpoint": 25602,
+ "hardt": 25603,
+ "стран": 25604,
+ "▁estilo": 25605,
+ "▁Haz": 25606,
+ "▁musste": 25607,
+ "uo": 25608,
+ "iii": 25609,
+ "▁ří": 25610,
+ "anzen": 25611,
+ "жений": 25612,
+ "aha": 25613,
+ "ARNING": 25614,
+ "▁renov": 25615,
+ "▁divine": 25616,
+ "▁convinced": 25617,
+ "▁humans": 25618,
+ "▁departure": 25619,
+ "▁Mediter": 25620,
+ "qa": 25621,
+ "▁possessed": 25622,
+ "▁церкви": 25623,
+ "giv": 25624,
+ "▁свої": 25625,
+ "▁Ortste": 25626,
+ "Rich": 25627,
+ "puis": 25628,
+ "increment": 25629,
+ "▁Hannover": 25630,
+ "▁ucz": 25631,
+ "Done": 25632,
+ "▁alguns": 25633,
+ "FIX": 25634,
+ "▁Heritage": 25635,
+ "removeClass": 25636,
+ "фер": 25637,
+ "▁abc": 25638,
+ "Dr": 25639,
+ "▁семей": 25640,
+ "{:": 25641,
+ "▁seule": 25642,
+ "zeichnungen": 25643,
+ "addy": 25644,
+ "▁París": 25645,
+ "üsseld": 25646,
+ "▁reception": 25647,
+ "folio": 25648,
+ "tiny": 25649,
+ "▁recensement": 25650,
+ "▁Nur": 25651,
+ "▁kier": 25652,
+ "▁gmina": 25653,
+ "staat": 25654,
+ "ándose": 25655,
+ "ческая": 25656,
+ "▁speaker": 25657,
+ "▁exponential": 25658,
+ "▁Dieu": 25659,
+ "▁приз": 25660,
+ "▁Rafael": 25661,
+ "▁ggplot": 25662,
+ "▁Template": 25663,
+ "oure": 25664,
+ "▁Inner": 25665,
+ "ogne": 25666,
+ "igare": 25667,
+ "▁Arte": 25668,
+ "▁Cov": 25669,
+ "▁aufgrund": 25670,
+ "▁Бы": 25671,
+ "▁ceremony": 25672,
+ "▁Spart": 25673,
+ "jective": 25674,
+ "yi": 25675,
+ "▁inizi": 25676,
+ "▁latin": 25677,
+ "▁Nevertheless": 25678,
+ "▁Done": 25679,
+ "тря": 25680,
+ "▁Arr": 25681,
+ "season": 25682,
+ "▁складу": 25683,
+ "▁podczas": 25684,
+ "▁Beautiful": 25685,
+ "▁Weltkrieg": 25686,
+ "▁зо": 25687,
+ "▁overcome": 25688,
+ "▁Praha": 25689,
+ "▁району": 25690,
+ "▁subscription": 25691,
+ "igent": 25692,
+ "▁пока": 25693,
+ "latex": 25694,
+ "▁beach": 25695,
+ "▁роках": 25696,
+ "geg": 25697,
+ "▁probl": 25698,
+ "arguments": 25699,
+ "▁organizations": 25700,
+ "▁Nan": 25701,
+ "▁stones": 25702,
+ "▁Hunter": 25703,
+ "▁regularly": 25704,
+ "шого": 25705,
+ "▁flexible": 25706,
+ "opts": 25707,
+ "ář": 25708,
+ "witz": 25709,
+ "▁')": 25710,
+ "PASS": 25711,
+ "▁kraj": 25712,
+ "▁fake": 25713,
+ "heits": 25714,
+ "osph": 25715,
+ "parseInt": 25716,
+ "FALSE": 25717,
+ "▁profess": 25718,
+ "people": 25719,
+ "▁precip": 25720,
+ "dirname": 25721,
+ "▁perpet": 25722,
+ "▁Updated": 25723,
+ "rayed": 25724,
+ "▁provoc": 25725,
+ "▁травня": 25726,
+ "▁categorie": 25727,
+ "▁тео": 25728,
+ "сну": 25729,
+ "otr": 25730,
+ "▁Верхов": 25731,
+ "▁compét": 25732,
+ "Cost": 25733,
+ "▁wider": 25734,
+ "▁Obviously": 25735,
+ "писан": 25736,
+ "▁настоя": 25737,
+ "▁seeking": 25738,
+ "()),": 25739,
+ "▁équipe": 25740,
+ "▁commits": 25741,
+ "▁Svens": 25742,
+ "ябре": 25743,
+ "atern": 25744,
+ "▁heter": 25745,
+ "▁Bootstrap": 25746,
+ "éné": 25747,
+ "▁derivatives": 25748,
+ "▁Detroit": 25749,
+ "▁provincial": 25750,
+ "onomie": 25751,
+ "EB": 25752,
+ "▁cuer": 25753,
+ "▁относи": 25754,
+ "▁ней": 25755,
+ ")».": 25756,
+ "▁Ciudad": 25757,
+ "IAL": 25758,
+ "zyst": 25759,
+ ")\")": 25760,
+ "▁Alc": 25761,
+ "blogs": 25762,
+ "▁parmi": 25763,
+ "▁Albums": 25764,
+ "▁Boliv": 25765,
+ "▁clés": 25766,
+ "Products": 25767,
+ "uerdo": 25768,
+ "▁gelang": 25769,
+ "znik": 25770,
+ "hagen": 25771,
+ "anonymous": 25772,
+ "▁svg": 25773,
+ "▁Conseil": 25774,
+ "▁Ari": 25775,
+ "coli": 25776,
+ "▁czy": 25777,
+ "▁CV": 25778,
+ "▁ford": 25779,
+ "▁Außer": 25780,
+ "▁CI": 25781,
+ "▁tempt": 25782,
+ "▁Organisation": 25783,
+ "áš": 25784,
+ "▁cycles": 25785,
+ "▁geslacht": 25786,
+ "▁людей": 25787,
+ "ými": 25788,
+ "▁Spieler": 25789,
+ "efe": 25790,
+ "▁Marvel": 25791,
+ "▁portal": 25792,
+ "▁Серг": 25793,
+ "▁grado": 25794,
+ "▁handlers": 25795,
+ "▁Interface": 25796,
+ "AME": 25797,
+ "▁seriously": 25798,
+ "▁Binding": 25799,
+ "▁Rang": 25800,
+ "▁nada": 25801,
+ "oce": 25802,
+ "▁integra": 25803,
+ "ocracy": 25804,
+ "▁альбо": 25805,
+ "▁stability": 25806,
+ "Uns": 25807,
+ "▁veter": 25808,
+ "------+": 25809,
+ "▁serait": 25810,
+ "▁omitted": 25811,
+ "▁uncertainty": 25812,
+ "onian": 25813,
+ "▁resto": 25814,
+ "▁желез": 25815,
+ "▁одной": 25816,
+ "▁Bevölkerung": 25817,
+ "▁Kraft": 25818,
+ "стр": 25819,
+ "▁Moscow": 25820,
+ "lane": 25821,
+ "arab": 25822,
+ "▁spole": 25823,
+ "▁своего": 25824,
+ "?:": 25825,
+ "START": 25826,
+ "▁интер": 25827,
+ "▁sympt": 25828,
+ "▁Lorenzo": 25829,
+ "▁ejec": 25830,
+ "▁prosper": 25831,
+ "DAT": 25832,
+ "лимпий": 25833,
+ "▁shapes": 25834,
+ "valueOf": 25835,
+ "▁associate": 25836,
+ "▁Medien": 25837,
+ "ENV": 25838,
+ "▁сре": 25839,
+ "▁државе": 25840,
+ "▁theories": 25841,
+ "heb": 25842,
+ "▁Wayne": 25843,
+ "▁StringBuilder": 25844,
+ "iwers": 25845,
+ "▁Maps": 25846,
+ "Phys": 25847,
+ "\\}\\": 25848,
+ "▁Parte": 25849,
+ "▁Hudson": 25850,
+ "лон": 25851,
+ "Lng": 25852,
+ "▁ры": 25853,
+ "стей": 25854,
+ "lau": 25855,
+ "ancer": 25856,
+ "▁Coppa": 25857,
+ "▁війсь": 25858,
+ "▁ucc": 25859,
+ "▁Pattern": 25860,
+ "▁garbage": 25861,
+ "▁González": 25862,
+ "▁Encyclop": 25863,
+ "etten": 25864,
+ "External": 25865,
+ "REF": 25866,
+ ">;": 25867,
+ "lijke": 25868,
+ "▁intersect": 25869,
+ "▁Unless": 25870,
+ "▁deeper": 25871,
+ "▁жі": 25872,
+ "dent": 25873,
+ "lef": 25874,
+ "▁chanson": 25875,
+ "▁diffus": 25876,
+ "▁primi": 25877,
+ "▁Wieder": 25878,
+ "▁aws": 25879,
+ "owana": 25880,
+ "▁sociale": 25881,
+ "ikk": 25882,
+ "льной": 25883,
+ "▁divisions": 25884,
+ "лосо": 25885,
+ "▁Claud": 25886,
+ "▁Ya": 25887,
+ "▁voce": 25888,
+ "▁Branch": 25889,
+ "▁fitted": 25890,
+ "orr": 25891,
+ "ôtel": 25892,
+ "stroke": 25893,
+ "listener": 25894,
+ "iman": 25895,
+ "восто": 25896,
+ "▁Shah": 25897,
+ "Introduction": 25898,
+ "▁newline": 25899,
+ "▁tile": 25900,
+ "']))": 25901,
+ "▁travaux": 25902,
+ "CONFIG": 25903,
+ "▁quadratic": 25904,
+ "onneur": 25905,
+ "▁Giorg": 25906,
+ "▁identific": 25907,
+ "éricaine": 25908,
+ "▁UIView": 25909,
+ "▁Liberal": 25910,
+ "▁Koch": 25911,
+ "▁Berliner": 25912,
+ "▁notifications": 25913,
+ "▁Susan": 25914,
+ "▁cadre": 25915,
+ "▁Kloster": 25916,
+ "▁examine": 25917,
+ "▁един": 25918,
+ "▁UNION": 25919,
+ "▁alten": 25920,
+ "▁finit": 25921,
+ "▁pedig": 25922,
+ "cyk": 25923,
+ "▁mouvement": 25924,
+ "IOS": 25925,
+ "▁британ": 25926,
+ "▁bout": 25927,
+ "▁автор": 25928,
+ "ництво": 25929,
+ "ето": 25930,
+ "lera": 25931,
+ "cls": 25932,
+ "▁Ley": 25933,
+ "amy": 25934,
+ "agens": 25935,
+ "ashed": 25936,
+ "▁okrę": 25937,
+ "гро": 25938,
+ "ellett": 25939,
+ "▁Fellow": 25940,
+ "▁manifold": 25941,
+ "$),": 25942,
+ "lder": 25943,
+ "▁voz": 25944,
+ "▁begg": 25945,
+ "▁baron": 25946,
+ "▁fid": 25947,
+ "▁firing": 25948,
+ "ilda": 25949,
+ "dek": 25950,
+ "AU": 25951,
+ "itare": 25952,
+ "▁Ara": 25953,
+ "▁Exit": 25954,
+ "▁cinemat": 25955,
+ "▁intros": 25956,
+ "▁contacts": 25957,
+ "пени": 25958,
+ "▁möglich": 25959,
+ "▁Singapore": 25960,
+ "ström": 25961,
+ "▁Hern": 25962,
+ "▁sixth": 25963,
+ "▁publications": 25964,
+ "vie": 25965,
+ "▁Hat": 25966,
+ "▁accepting": 25967,
+ "ác": 25968,
+ "stwo": 25969,
+ "▁quietly": 25970,
+ "Photo": 25971,
+ "▁basket": 25972,
+ "▁eigenvalues": 25973,
+ "▁médec": 25974,
+ "▁Olimp": 25975,
+ "▁церков": 25976,
+ "alin": 25977,
+ "consum": 25978,
+ "▁lassen": 25979,
+ "▁анти": 25980,
+ "▁Seq": 25981,
+ "\";\r": 25982,
+ "rare": 25983,
+ "▁$|\\": 25984,
+ "▁nick": 25985,
+ "dflare": 25986,
+ "Vec": 25987,
+ "bindung": 25988,
+ "▁bg": 25989,
+ "changes": 25990,
+ "Days": 25991,
+ "▁Mouse": 25992,
+ "▁waited": 25993,
+ "▁Tomatoes": 25994,
+ "▁fas": 25995,
+ "verte": 25996,
+ "▁succession": 25997,
+ "сор": 25998,
+ "▁sols": 25999,
+ "▁Render": 26000,
+ "▁leadership": 26001,
+ "▁significance": 26002,
+ "▁gauche": 26003,
+ "cano": 26004,
+ "▁Pie": 26005,
+ "ensoort": 26006,
+ "▁cambio": 26007,
+ "▁уз": 26008,
+ "▁endeav": 26009,
+ "Completed": 26010,
+ "▁Архивная": 26011,
+ "jd": 26012,
+ "órico": 26013,
+ "▁churches": 26014,
+ "▁animate": 26015,
+ "SG": 26016,
+ "compute": 26017,
+ "▁uniformly": 26018,
+ "INIT": 26019,
+ "lles": 26020,
+ "HttpRequest": 26021,
+ "Ко": 26022,
+ "Diff": 26023,
+ "▁sah": 26024,
+ "airo": 26025,
+ "maybe": 26026,
+ "UTE": 26027,
+ "▁Dow": 26028,
+ "human": 26029,
+ "▁aurait": 26030,
+ "dark": 26031,
+ "▁repair": 26032,
+ "▁ner": 26033,
+ "▁Dabei": 26034,
+ "▁Botan": 26035,
+ "Original": 26036,
+ "ază": 26037,
+ "▁NAT": 26038,
+ "imper": 26039,
+ "▁Youth": 26040,
+ "thes": 26041,
+ "▁округа": 26042,
+ "▁Flo": 26043,
+ "▁breakfast": 26044,
+ "urls": 26045,
+ "▁übernahm": 26046,
+ "ários": 26047,
+ "▁Orange": 26048,
+ "▁Affairs": 26049,
+ "ske": 26050,
+ "▁notify": 26051,
+ "imoine": 26052,
+ "▁Arena": 26053,
+ "▁liberal": 26054,
+ "▁obec": 26055,
+ "ifa": 26056,
+ "guez": 26057,
+ "iono": 26058,
+ "ператор": 26059,
+ "▁retained": 26060,
+ "failed": 26061,
+ "bine": 26062,
+ "тных": 26063,
+ "▁CGRect": 26064,
+ "camera": 26065,
+ "idenote": 26066,
+ "KB": 26067,
+ "▁lights": 26068,
+ "▁Pictures": 26069,
+ "▁Squadron": 26070,
+ "▁Volk": 26071,
+ "▁burg": 26072,
+ ",]": 26073,
+ "Gi": 26074,
+ "êque": 26075,
+ "makeText": 26076,
+ "▁everybody": 26077,
+ "▁Hyper": 26078,
+ "▁Deux": 26079,
+ "▁glory": 26080,
+ "presentation": 26081,
+ "onica": 26082,
+ "▁frère": 26083,
+ "aget": 26084,
+ "▁hints": 26085,
+ "▁tunnel": 26086,
+ "▁Ej": 26087,
+ "ális": 26088,
+ "▁Viv": 26089,
+ "ственных": 26090,
+ "▁caps": 26091,
+ "PART": 26092,
+ "oci": 26093,
+ "▁prices": 26094,
+ "currency": 26095,
+ "▁achter": 26096,
+ "romagnet": 26097,
+ "gender": 26098,
+ "▁suis": 26099,
+ "versions": 26100,
+ "▁Training": 26101,
+ "inside": 26102,
+ "ege": 26103,
+ "▁totale": 26104,
+ "▁Daar": 26105,
+ "▁grudnia": 26106,
+ "▁Ier": 26107,
+ "▁occasions": 26108,
+ "▁kde": 26109,
+ "▁tensorflow": 26110,
+ "▁ór": 26111,
+ "Methods": 26112,
+ "▁looping": 26113,
+ "▁directeur": 26114,
+ "kę": 26115,
+ "▁isomorphism": 26116,
+ "▁João": 26117,
+ "▁aligned": 26118,
+ "онов": 26119,
+ "urger": 26120,
+ "▁nova": 26121,
+ "morrow": 26122,
+ "altern": 26123,
+ "HD": 26124,
+ "▁marqu": 26125,
+ "ativas": 26126,
+ "ggreg": 26127,
+ "▁ancien": 26128,
+ "nit": 26129,
+ "▁secured": 26130,
+ "mier": 26131,
+ "▁Ole": 26132,
+ "▁инте": 26133,
+ "▁minus": 26134,
+ "▁clearer": 26135,
+ "▁nello": 26136,
+ "▁információk": 26137,
+ "▁propre": 26138,
+ "{.": 26139,
+ "ilog": 26140,
+ "▁Quick": 26141,
+ "▁accus": 26142,
+ "employee": 26143,
+ "▁зу": 26144,
+ "цький": 26145,
+ "фіцій": 26146,
+ "▁публи": 26147,
+ "▁bent": 26148,
+ "▁позво": 26149,
+ "▁Пор": 26150,
+ "ází": 26151,
+ "ánico": 26152,
+ "emptyset": 26153,
+ "▁surtout": 26154,
+ "reno": 26155,
+ "unya": 26156,
+ "▁уез": 26157,
+ "▁Millionen": 26158,
+ "▁listopada": 26159,
+ "▁Maine": 26160,
+ "▁grupos": 26161,
+ "▁Storage": 26162,
+ "▁apple": 26163,
+ "▁Lö": 26164,
+ "oused": 26165,
+ "дро": 26166,
+ "sci": 26167,
+ "▁hibernate": 26168,
+ "dog": 26169,
+ "▁восто": 26170,
+ "▁intensity": 26171,
+ "legend": 26172,
+ "▁Wille": 26173,
+ "▁szerint": 26174,
+ "gesellschaft": 26175,
+ "▁Living": 26176,
+ "allo": 26177,
+ "▁Split": 26178,
+ "dru": 26179,
+ "need": 26180,
+ "▁Джон": 26181,
+ "▁Swiss": 26182,
+ "▁spraw": 26183,
+ "▁beho": 26184,
+ "▁fotograf": 26185,
+ "▁rencontre": 26186,
+ "▁kis": 26187,
+ "▁signing": 26188,
+ "akult": 26189,
+ "▁indexing": 26190,
+ "apor": 26191,
+ "▁conception": 26192,
+ "aggreg": 26193,
+ "▁Савез": 26194,
+ "▁affair": 26195,
+ "ění": 26196,
+ "August": 26197,
+ "▁секре": 26198,
+ "▁mieszkań": 26199,
+ "UIImage": 26200,
+ "▁bishop": 26201,
+ "▁servants": 26202,
+ "▁trail": 26203,
+ "digit": 26204,
+ "▁joins": 26205,
+ "▁Near": 26206,
+ "öffentlich": 26207,
+ ">{": 26208,
+ "▁skład": 26209,
+ "geführt": 26210,
+ "▁Holz": 26211,
+ "▁Militär": 26212,
+ "achi": 26213,
+ "Upper": 26214,
+ "pine": 26215,
+ "utzt": 26216,
+ "▁nuova": 26217,
+ "ibration": 26218,
+ "▁Bien": 26219,
+ "▁первый": 26220,
+ "▁Creating": 26221,
+ "Once": 26222,
+ "▁einmal": 26223,
+ "▁geometric": 26224,
+ "stvo": 26225,
+ "▁kW": 26226,
+ "▁decomposition": 26227,
+ "▁comedy": 26228,
+ "▁activation": 26229,
+ "▁angry": 26230,
+ "illeurs": 26231,
+ "▁instantly": 26232,
+ "▁suggesting": 26233,
+ "▁Clay": 26234,
+ "cot": 26235,
+ "▁Gén": 26236,
+ "($(": 26237,
+ "unwrap": 26238,
+ "▁lifted": 26239,
+ "▁Kit": 26240,
+ "▁linea": 26241,
+ "ок": 26242,
+ "hart": 26243,
+ "->_": 26244,
+ "▁nuit": 26245,
+ "▁Issue": 26246,
+ "лии": 26247,
+ "▁röm": 26248,
+ "Tasks": 26249,
+ "▁Sr": 26250,
+ "▁seis": 26251,
+ "asia": 26252,
+ "}}$.": 26253,
+ ":{": 26254,
+ "controls": 26255,
+ "▁Stim": 26256,
+ "▁Recht": 26257,
+ "ociación": 26258,
+ "▁Natal": 26259,
+ "▁Philippines": 26260,
+ "ulen": 26261,
+ "Fixed": 26262,
+ "▁switched": 26263,
+ "Zip": 26264,
+ "ospel": 26265,
+ "▁начале": 26266,
+ "▁Blan": 26267,
+ "urst": 26268,
+ "▁autour": 26269,
+ "Ca": 26270,
+ "▁latitude": 26271,
+ "▁Frei": 26272,
+ "▁Musée": 26273,
+ "▁Kurz": 26274,
+ "▁região": 26275,
+ "swap": 26276,
+ "▁hate": 26277,
+ "▁modifications": 26278,
+ "▁Ком": 26279,
+ "▁Antoine": 26280,
+ "uga": 26281,
+ "RECT": 26282,
+ "éter": 26283,
+ "GROUP": 26284,
+ "▁sacrific": 26285,
+ "▁Whe": 26286,
+ "▁Stevens": 26287,
+ "ologische": 26288,
+ "Summary": 26289,
+ "obs": 26290,
+ "hnen": 26291,
+ "<%=": 26292,
+ "dienst": 26293,
+ "remark": 26294,
+ "▁veröffentlicht": 26295,
+ "ел": 26296,
+ "▁Mock": 26297,
+ "▁Льв": 26298,
+ "▁três": 26299,
+ "gb": 26300,
+ "▁celebrated": 26301,
+ "▁Eb": 26302,
+ "▁costa": 26303,
+ "▁Geographic": 26304,
+ "▁attachment": 26305,
+ "mannschaft": 26306,
+ "▁dependence": 26307,
+ "��": 26308,
+ "▁attitude": 26309,
+ "etal": 26310,
+ "vic": 26311,
+ "baut": 26312,
+ "▁дов": 26313,
+ "▁interven": 26314,
+ "▁Gü": 26315,
+ "ónica": 26316,
+ "▁Pon": 26317,
+ "▁disponible": 26318,
+ "▁Feb": 26319,
+ "▁worship": 26320,
+ "▁Specifically": 26321,
+ "Hy": 26322,
+ "iju": 26323,
+ "▁cb": 26324,
+ "▁spac": 26325,
+ "leveland": 26326,
+ "▁localidad": 26327,
+ "▁preceding": 26328,
+ "▁Hessen": 26329,
+ "xp": 26330,
+ "▁Wein": 26331,
+ "▁Româ": 26332,
+ "▁giorno": 26333,
+ "▁квітня": 26334,
+ "llaços": 26335,
+ "▁Academia": 26336,
+ "▁kül": 26337,
+ "▁Års": 26338,
+ "▁нај": 26339,
+ "uclide": 26340,
+ "Internet": 26341,
+ "orton": 26342,
+ "▁corn": 26343,
+ "ями": 26344,
+ "▁\"*": 26345,
+ "▁Felix": 26346,
+ "apat": 26347,
+ "▁свои": 26348,
+ "MIT": 26349,
+ "made": 26350,
+ "▁locomot": 26351,
+ "хода": 26352,
+ "FP": 26353,
+ "▁pm": 26354,
+ ".*;": 26355,
+ "▁Hamm": 26356,
+ "`}": 26357,
+ "LayoutInflater": 26358,
+ "==\"": 26359,
+ "▁Eur": 26360,
+ "▁dogs": 26361,
+ "жении": 26362,
+ "▁azon": 26363,
+ "▁emulator": 26364,
+ "▁ricon": 26365,
+ "beeld": 26366,
+ "▁ну": 26367,
+ "▁approximate": 26368,
+ "LM": 26369,
+ "▁Bond": 26370,
+ "▁enh": 26371,
+ "ędz": 26372,
+ "▁solit": 26373,
+ "RelativeLayout": 26374,
+ "eteor": 26375,
+ "amentos": 26376,
+ "▁indirect": 26377,
+ "iből": 26378,
+ "▁gros": 26379,
+ "▁Originals": 26380,
+ "commands": 26381,
+ "Export": 26382,
+ "▁Avec": 26383,
+ "▁solemn": 26384,
+ "▁correction": 26385,
+ "▁проводи": 26386,
+ "▁Mosk": 26387,
+ "▁подо": 26388,
+ "▁gebied": 26389,
+ "▁następ": 26390,
+ "▁Driver": 26391,
+ "▁Ook": 26392,
+ "▁Vec": 26393,
+ "▁lungo": 26394,
+ "ficos": 26395,
+ "▁svol": 26396,
+ "▁kid": 26397,
+ "nja": 26398,
+ "▁Hr": 26399,
+ "▁поддер": 26400,
+ "▁visibility": 26401,
+ "▁Méd": 26402,
+ "▁cpu": 26403,
+ "discussion": 26404,
+ "Asset": 26405,
+ "▁defense": 26406,
+ "▁Anyone": 26407,
+ "▁Justin": 26408,
+ "iszt": 26409,
+ "▁Collins": 26410,
+ "▁Valent": 26411,
+ "▁Pale": 26412,
+ "▁fuel": 26413,
+ "▁nose": 26414,
+ "ríguez": 26415,
+ "▁Schles": 26416,
+ "▁Malays": 26417,
+ "▁commut": 26418,
+ "dro": 26419,
+ "uing": 26420,
+ "▁Rico": 26421,
+ "▁Emma": 26422,
+ "orp": 26423,
+ "▁Kirk": 26424,
+ "▁Quando": 26425,
+ "▁Neue": 26426,
+ "▁demande": 26427,
+ "▁Cover": 26428,
+ "▁rescue": 26429,
+ "▁gewählt": 26430,
+ "▁Calendar": 26431,
+ "▁Madonna": 26432,
+ "WP": 26433,
+ "oshi": 26434,
+ "▁Maven": 26435,
+ "▁belle": 26436,
+ "▁wx": 26437,
+ "▁sugar": 26438,
+ "▁Betrieb": 26439,
+ "▁equilibrium": 26440,
+ "EAR": 26441,
+ "▁texts": 26442,
+ "слов": 26443,
+ "▁czerwca": 26444,
+ "▁Düsseld": 26445,
+ "▁ELSE": 26446,
+ "▁amery": 26447,
+ "▁ani": 26448,
+ "▁obey": 26449,
+ "▁Nell": 26450,
+ "▁inne": 26451,
+ "▁тро": 26452,
+ "FD": 26453,
+ "cco": 26454,
+ "▁Zob": 26455,
+ "alette": 26456,
+ "▁május": 26457,
+ "ected": 26458,
+ "▁Turkey": 26459,
+ "▁Whether": 26460,
+ "qi": 26461,
+ "▁што": 26462,
+ "▁headquarters": 26463,
+ "endi": 26464,
+ "arus": 26465,
+ "opus": 26466,
+ "▁золо": 26467,
+ "▁destru": 26468,
+ "▁Lok": 26469,
+ "▁satisfaction": 26470,
+ "()\r": 26471,
+ "▁Тер": 26472,
+ "Jose": 26473,
+ "▁conquer": 26474,
+ "▁Effect": 26475,
+ "LayoutParams": 26476,
+ "iez": 26477,
+ "▁externs": 26478,
+ "▁gegenüber": 26479,
+ "▁ESP": 26480,
+ "olta": 26481,
+ "processor": 26482,
+ "▁Kult": 26483,
+ "▁Atlanta": 26484,
+ "▁tier": 26485,
+ "Operator": 26486,
+ "▁диа": 26487,
+ "▁пись": 26488,
+ "▁groß": 26489,
+ "▁hearts": 26490,
+ "▁millimeter": 26491,
+ "although": 26492,
+ "alles": 26493,
+ "▁Magic": 26494,
+ "training": 26495,
+ "oline": 26496,
+ "▁органі": 26497,
+ ">\\<^": 26498,
+ "ціаль": 26499,
+ "exports": 26500,
+ "Workbook": 26501,
+ "▁вересня": 26502,
+ "▁teles": 26503,
+ "▁economy": 26504,
+ "▁trap": 26505,
+ "▁refuse": 26506,
+ "▁stranger": 26507,
+ "▁instinct": 26508,
+ "пода": 26509,
+ "olan": 26510,
+ "▁ning": 26511,
+ "inflate": 26512,
+ "itatea": 26513,
+ "acks": 26514,
+ "▁Joy": 26515,
+ "FLAG": 26516,
+ "ailand": 26517,
+ "▁sorti": 26518,
+ "▁впер": 26519,
+ "▁pén": 26520,
+ "Nothing": 26521,
+ "▁száz": 26522,
+ "▁Áng": 26523,
+ "▁AUT": 26524,
+ "Actions": 26525,
+ "Every": 26526,
+ "▁червня": 26527,
+ "▁автомо": 26528,
+ "▁routine": 26529,
+ "▁estruct": 26530,
+ "▁Gang": 26531,
+ "▁holes": 26532,
+ "thesis": 26533,
+ "▁concl": 26534,
+ "▁pé": 26535,
+ "riers": 26536,
+ "ровой": 26537,
+ "adic": 26538,
+ "Speed": 26539,
+ "▁commanded": 26540,
+ "▁Nazionale": 26541,
+ "Managed": 26542,
+ "▁DECLARE": 26543,
+ "▁sedan": 26544,
+ "Strings": 26545,
+ "▁sacred": 26546,
+ "tersuch": 26547,
+ "▁abitanti": 26548,
+ "brit": 26549,
+ "▁NCAA": 26550,
+ "▁СП": 26551,
+ "▁aged": 26552,
+ "▁Chiesa": 26553,
+ "▁revision": 26554,
+ "opro": 26555,
+ "▁overwrite": 26556,
+ "embros": 26557,
+ "▁sortie": 26558,
+ "▁otten": 26559,
+ "xiv": 26560,
+ "▁deli": 26561,
+ "▁Asp": 26562,
+ "▁balls": 26563,
+ "kaf": 26564,
+ "▁brave": 26565,
+ "▁всего": 26566,
+ "egn": 26567,
+ "jpeg": 26568,
+ "▁Osten": 26569,
+ "Constants": 26570,
+ "▁Infantry": 26571,
+ "▁Nev": 26572,
+ "▁яких": 26573,
+ "▁муниципа": 26574,
+ "cija": 26575,
+ "▁poem": 26576,
+ "▁negro": 26577,
+ "хар": 26578,
+ "▁Ask": 26579,
+ "▁avo": 26580,
+ "▁Meyer": 26581,
+ "▁Westen": 26582,
+ "▁oko": 26583,
+ "agin": 26584,
+ "▁Süden": 26585,
+ "entries": 26586,
+ "▁Republik": 26587,
+ "CollectionView": 26588,
+ "-------": 26589,
+ "▁firefox": 26590,
+ "▁alcune": 26591,
+ "▁фото": 26592,
+ "▁отрима": 26593,
+ "~~~~~~~~": 26594,
+ "▁Раз": 26595,
+ "▁Complex": 26596,
+ "▁pia": 26597,
+ "▁publicada": 26598,
+ "wei": 26599,
+ "cedure": 26600,
+ "occupation": 26601,
+ "▁medicine": 26602,
+ "▁drove": 26603,
+ "Problem": 26604,
+ "▁beginner": 26605,
+ "▁thoroughly": 26606,
+ "uria": 26607,
+ "avant": 26608,
+ "ucha": 26609,
+ "▁lever": 26610,
+ "▁teatro": 26611,
+ "AVA": 26612,
+ "squ": 26613,
+ "trat": 26614,
+ "ivatal": 26615,
+ "▁dirty": 26616,
+ "▁seconde": 26617,
+ "▁gravit": 26618,
+ "▁proposition": 26619,
+ "hbar": 26620,
+ "omini": 26621,
+ "▁”": 26622,
+ "▁Camil": 26623,
+ "▁queen": 26624,
+ "modifier": 26625,
+ "Jan": 26626,
+ "▁lyr": 26627,
+ "ComboBox": 26628,
+ "ionic": 26629,
+ "▁holy": 26630,
+ "▁Sebastian": 26631,
+ "|_{": 26632,
+ "▁{@": 26633,
+ "▁можно": 26634,
+ "▁Creative": 26635,
+ "▁interess": 26636,
+ "▁CT": 26637,
+ "ições": 26638,
+ "▁chant": 26639,
+ "▁współ": 26640,
+ "▁Мексика": 26641,
+ "▁ranked": 26642,
+ "▁października": 26643,
+ "▁brut": 26644,
+ "▁farther": 26645,
+ "▁Verb": 26646,
+ "▁Seven": 26647,
+ "lbl": 26648,
+ "▁mentions": 26649,
+ "▁Fight": 26650,
+ "ifen": 26651,
+ "▁bog": 26652,
+ "▁regres": 26653,
+ "▁scoring": 26654,
+ "icane": 26655,
+ "▁Elli": 26656,
+ "▁pierw": 26657,
+ "measure": 26658,
+ "ńskiej": 26659,
+ "#{": 26660,
+ "▁деся": 26661,
+ "▁varmaste": 26662,
+ "▁Unix": 26663,
+ "IZ": 26664,
+ "itié": 26665,
+ "Primary": 26666,
+ "▁Springer": 26667,
+ "üng": 26668,
+ "▁anv": 26669,
+ "▁versione": 26670,
+ "▁shoulders": 26671,
+ "▁брига": 26672,
+ "▁jav": 26673,
+ "ltal": 26674,
+ "▁kallaste": 26675,
+ "▁Mitchell": 26676,
+ "▁wireless": 26677,
+ "▁Ál": 26678,
+ "respons": 26679,
+ "could": 26680,
+ "▁relax": 26681,
+ "Lond": 26682,
+ "ńcz": 26683,
+ "ствовал": 26684,
+ "▁polski": 26685,
+ "enç": 26686,
+ "zar": 26687,
+ "▁dtype": 26688,
+ "owned": 26689,
+ "unknown": 26690,
+ "▁mutable": 26691,
+ "▁siempre": 26692,
+ "▁Montreal": 26693,
+ "▁locate": 26694,
+ "▁traces": 26695,
+ "▁insgesamt": 26696,
+ "▁Nil": 26697,
+ "▁прода": 26698,
+ "▁Warner": 26699,
+ "▁Nau": 26700,
+ "triangle": 26701,
+ "▁concentration": 26702,
+ "▁gentlemen": 26703,
+ "ächt": 26704,
+ "filters": 26705,
+ "incipal": 26706,
+ "VALID": 26707,
+ "▁депута": 26708,
+ "adó": 26709,
+ "▁konst": 26710,
+ "gså": 26711,
+ "agas": 26712,
+ "▁meilleur": 26713,
+ "▁данным": 26714,
+ "єдна": 26715,
+ "encoded": 26716,
+ "<'": 26717,
+ "▁sheets": 26718,
+ "cuador": 26719,
+ "▁використову": 26720,
+ "▁Deput": 26721,
+ "▁manière": 26722,
+ "ąg": 26723,
+ "csol": 26724,
+ ")$-": 26725,
+ "UIView": 26726,
+ "▁millones": 26727,
+ "▁Ehren": 26728,
+ "Sil": 26729,
+ "▁atac": 26730,
+ "▁Cold": 26731,
+ "\"\\": 26732,
+ "▁approached": 26733,
+ "▁Årsmed": 26734,
+ "WM": 26735,
+ "▁Deport": 26736,
+ "mis": 26737,
+ "andbox": 26738,
+ "observ": 26739,
+ "setting": 26740,
+ "ható": 26741,
+ "▁strat": 26742,
+ "▁spre": 26743,
+ "▁personne": 26744,
+ "▁dirige": 26745,
+ "pull": 26746,
+ "dating": 26747,
+ "▁Fact": 26748,
+ "▁manipulate": 26749,
+ "▁MAC": 26750,
+ "▁dej": 26751,
+ "ultimo": 26752,
+ "FX": 26753,
+ "Life": 26754,
+ "▁crack": 26755,
+ "▁mí": 26756,
+ "▁пове": 26757,
+ "▁wore": 26758,
+ "université": 26759,
+ "▁formulas": 26760,
+ "▁Elisabeth": 26761,
+ "plots": 26762,
+ "mile": 26763,
+ "▁menor": 26764,
+ "тил": 26765,
+ "keyword": 26766,
+ "▁Baltimore": 26767,
+ "hrer": 26768,
+ "▁Clement": 26769,
+ "vim": 26770,
+ "rass": 26771,
+ "Take": 26772,
+ "▁című": 26773,
+ "▁Convention": 26774,
+ "atge": 26775,
+ "seed": 26776,
+ "▁Dí": 26777,
+ "▁Spider": 26778,
+ "ahoo": 26779,
+ "▁имеет": 26780,
+ "ührt": 26781,
+ "▁пописа": 26782,
+ "▁Cot": 26783,
+ "▁nobles": 26784,
+ "RESS": 26785,
+ "▁chemin": 26786,
+ "▁główn": 26787,
+ "GG": 26788,
+ "▁Germania": 26789,
+ "▁Alexandre": 26790,
+ "hens": 26791,
+ "swift": 26792,
+ "oop": 26793,
+ "Subview": 26794,
+ "▁requiring": 26795,
+ "ędzy": 26796,
+ "▁fict": 26797,
+ "▁Констан": 26798,
+ "▁déput": 26799,
+ "▁surprising": 26800,
+ "▁deix": 26801,
+ "▁unterschied": 26802,
+ "inson": 26803,
+ "▁Character": 26804,
+ "▁gestion": 26805,
+ "chus": 26806,
+ "comes": 26807,
+ "▁neur": 26808,
+ "▁yeux": 26809,
+ "ollar": 26810,
+ "▁parad": 26811,
+ "▁maggiore": 26812,
+ "TRAN": 26813,
+ "▁votre": 26814,
+ "▁descent": 26815,
+ "▁Icon": 26816,
+ "▁Judge": 26817,
+ "▁occupation": 26818,
+ "eping": 26819,
+ "▁tongue": 26820,
+ "▁Enllaços": 26821,
+ "ruf": 26822,
+ "▁protein": 26823,
+ "▁visitors": 26824,
+ "axy": 26825,
+ "esten": 26826,
+ "blica": 26827,
+ "hw": 26828,
+ "▁spirits": 26829,
+ "▁reduces": 26830,
+ "▁мен": 26831,
+ "▁Lamb": 26832,
+ "▁Mine": 26833,
+ "▁verified": 26834,
+ "▁Baby": 26835,
+ "▁prize": 26836,
+ "вър": 26837,
+ "▁ratings": 26838,
+ "▁fore": 26839,
+ "asha": 26840,
+ "urrence": 26841,
+ "▁intér": 26842,
+ "▁Olímp": 26843,
+ "cra": 26844,
+ "▁computational": 26845,
+ "irche": 26846,
+ ".: ": 26847,
+ "▁illustrated": 26848,
+ "▁Share": 26849,
+ "▁households": 26850,
+ "▁convolution": 26851,
+ "oemd": 26852,
+ "▁zdoby": 26853,
+ "ccc": 26854,
+ "▁quantities": 26855,
+ "Che": 26856,
+ "Should": 26857,
+ "▁genius": 26858,
+ "adj": 26859,
+ "хва": 26860,
+ "Петер": 26861,
+ "EMA": 26862,
+ "▁Rights": 26863,
+ "▁Eli": 26864,
+ "VAR": 26865,
+ "шло": 26866,
+ "▁збір": 26867,
+ "iftung": 26868,
+ "▁contributed": 26869,
+ "zef": 26870,
+ "▁CHAR": 26871,
+ "▁Sib": 26872,
+ "▁Mant": 26873,
+ "▁связи": 26874,
+ "▁javafx": 26875,
+ "▁cependant": 26876,
+ "▁intu": 26877,
+ "▁твор": 26878,
+ "▁Ó": 26879,
+ "guer": 26880,
+ "rado": 26881,
+ "▁Revol": 26882,
+ "▁fémin": 26883,
+ "▁Orleans": 26884,
+ "▁poj": 26885,
+ "▁prez": 26886,
+ "Tex": 26887,
+ "ouwd": 26888,
+ "?(": 26889,
+ "▁LIM": 26890,
+ "istique": 26891,
+ "esar": 26892,
+ "▁heures": 26893,
+ "icki": 26894,
+ "▁dbo": 26895,
+ "skih": 26896,
+ "confirm": 26897,
+ "▁világ": 26898,
+ "▁ciutat": 26899,
+ "▁DR": 26900,
+ "▁Hawai": 26901,
+ "ched": 26902,
+ "▁spher": 26903,
+ "▁Artikel": 26904,
+ "▁Multiple": 26905,
+ "ciu": 26906,
+ "▁мы": 26907,
+ "▁lipca": 26908,
+ "](/": 26909,
+ "Strategy": 26910,
+ "▁Alabama": 26911,
+ "SDK": 26912,
+ "UTC": 26913,
+ "__.": 26914,
+ "Arguments": 26915,
+ "▁setContentView": 26916,
+ "île": 26917,
+ "ByVal": 26918,
+ "▁JVM": 26919,
+ "ющего": 26920,
+ "▁Leonard": 26921,
+ "▁justify": 26922,
+ "цем": 26923,
+ "▁nab": 26924,
+ "CCESS": 26925,
+ "▁hopes": 26926,
+ ")&": 26927,
+ "sero": 26928,
+ "▁зай": 26929,
+ "слід": 26930,
+ "▁Rég": 26931,
+ "▁Sang": 26932,
+ "▁fung": 26933,
+ "baar": 26934,
+ "▁coffee": 26935,
+ "assembly": 26936,
+ "▁Він": 26937,
+ "эй": 26938,
+ "▁comprend": 26939,
+ "filled": 26940,
+ "рд": 26941,
+ "odia": 26942,
+ "▁gens": 26943,
+ "fluss": 26944,
+ "Drawable": 26945,
+ "▁surve": 26946,
+ "Setup": 26947,
+ "▁należ": 26948,
+ "▁conjunto": 26949,
+ "▁Его": 26950,
+ "▁oldal": 26951,
+ "▁verbose": 26952,
+ "▁Electric": 26953,
+ "▁Harrison": 26954,
+ "engen": 26955,
+ "paragraph": 26956,
+ "▁nouvelles": 26957,
+ "▁време": 26958,
+ "▁memor": 26959,
+ "▁mayoría": 26960,
+ "сад": 26961,
+ "▁bataille": 26962,
+ "▁thermal": 26963,
+ "▁Хронологи": 26964,
+ "▁Better": 26965,
+ "bye": 26966,
+ "▁театра": 26967,
+ "roe": 26968,
+ "▁segle": 26969,
+ "rott": 26970,
+ "▁opinions": 26971,
+ ")})": 26972,
+ "ühle": 26973,
+ "▁Gün": 26974,
+ "▁Щ": 26975,
+ "ból": 26976,
+ "▁Larry": 26977,
+ "▁solic": 26978,
+ "▁zwar": 26979,
+ "▁Caroline": 26980,
+ "▁Reichs": 26981,
+ "Extensions": 26982,
+ "migr": 26983,
+ ":@": 26984,
+ "▁enumerate": 26985,
+ "▁eigenen": 26986,
+ "▁explore": 26987,
+ "ému": 26988,
+ "▁gat": 26989,
+ "▁imperial": 26990,
+ "▁Usually": 26991,
+ "▁tud": 26992,
+ "▁укра": 26993,
+ "him": 26994,
+ "▁corners": 26995,
+ "▁SER": 26996,
+ "▁interpreter": 26997,
+ "▁Ice": 26998,
+ "▁amounts": 26999,
+ "▁Pala": 27000,
+ "▁tinha": 27001,
+ "vole": 27002,
+ "▁gle": 27003,
+ "ucci": 27004,
+ "▁siehe": 27005,
+ "Jack": 27006,
+ "▁woll": 27007,
+ "▁elder": 27008,
+ "▁кораб": 27009,
+ "▁engag": 27010,
+ "▁Laurent": 27011,
+ "▁achiev": 27012,
+ "istik": 27013,
+ "arct": 27014,
+ "тного": 27015,
+ "▁gir": 27016,
+ "▁Singh": 27017,
+ "mathop": 27018,
+ "USA": 27019,
+ "▁Projekt": 27020,
+ "▁debe": 27021,
+ "richtung": 27022,
+ "▁Tsch": 27023,
+ "uminate": 27024,
+ "▁szó": 27025,
+ "lyph": 27026,
+ "зидент": 27027,
+ "▁limitations": 27028,
+ "ющей": 27029,
+ "▁bila": 27030,
+ "Push": 27031,
+ "▁offering": 27032,
+ "iennes": 27033,
+ "Fri": 27034,
+ "▁postgresql": 27035,
+ "▁Tommy": 27036,
+ "▁particolare": 27037,
+ "▁století": 27038,
+ "▁arrib": 27039,
+ "▁Eva": 27040,
+ "school": 27041,
+ "▁vendor": 27042,
+ "▁Dallas": 27043,
+ "▁prolong": 27044,
+ "CREATE": 27045,
+ "▁suivante": 27046,
+ "STATUS": 27047,
+ "là": 27048,
+ "kv": 27049,
+ "▁häufig": 27050,
+ "▁Agricult": 27051,
+ "▁huit": 27052,
+ "▁inoltre": 27053,
+ "▁Lloyd": 27054,
+ "▁француз": 27055,
+ "▁выпол": 27056,
+ "▁faithful": 27057,
+ "▁Вар": 27058,
+ "▁verl": 27059,
+ "▁juego": 27060,
+ "▁Резултати": 27061,
+ ",...,": 27062,
+ "▁implicitly": 27063,
+ "irks": 27064,
+ "Calcul": 27065,
+ "▁meses": 27066,
+ "omed": 27067,
+ "▁pak": 27068,
+ "herit": 27069,
+ "▁optical": 27070,
+ "▁Історія": 27071,
+ "veis": 27072,
+ "▁capitale": 27073,
+ "placeholder": 27074,
+ "intrag": 27075,
+ "▁Atlas": 27076,
+ ")];": 27077,
+ "icons": 27078,
+ "▁Bent": 27079,
+ "▁Widget": 27080,
+ "▁volunt": 27081,
+ "avo": 27082,
+ "égr": 27083,
+ "lige": 27084,
+ "▁NAME": 27085,
+ "▁abstra": 27086,
+ "▁fís": 27087,
+ "▁Browser": 27088,
+ "▁bush": 27089,
+ "hall": 27090,
+ "▁clouds": 27091,
+ "▁SUB": 27092,
+ "▁tandis": 27093,
+ "▁Commonwealth": 27094,
+ "тая": 27095,
+ "▁exhaust": 27096,
+ "________________": 27097,
+ "▁Statistics": 27098,
+ "▁Religion": 27099,
+ "▁Muham": 27100,
+ "uals": 27101,
+ "goto": 27102,
+ "Digital": 27103,
+ "Family": 27104,
+ "▁Bun": 27105,
+ "letin": 27106,
+ "Management": 27107,
+ "▁capabilities": 27108,
+ "annten": 27109,
+ "▁себе": 27110,
+ "▁stays": 27111,
+ "kter": 27112,
+ "▁dost": 27113,
+ "▁Тре": 27114,
+ "лович": 27115,
+ "▁dying": 27116,
+ "sections": 27117,
+ "ános": 27118,
+ "▁apparten": 27119,
+ "▁zoals": 27120,
+ "▁dressed": 27121,
+ "▁compress": 27122,
+ "ńska": 27123,
+ "▁sierpnia": 27124,
+ "▁титу": 27125,
+ "dictionary": 27126,
+ "▁rabb": 27127,
+ "▁vérit": 27128,
+ "Во": 27129,
+ "▁singleton": 27130,
+ "▁vital": 27131,
+ "Refresh": 27132,
+ "мель": 27133,
+ "▁Zh": 27134,
+ "▁Afghan": 27135,
+ "inkel": 27136,
+ "aaaa": 27137,
+ "▁participants": 27138,
+ "arin": 27139,
+ "▁Mold": 27140,
+ "▁primeros": 27141,
+ "▁ран": 27142,
+ "▁Амери": 27143,
+ "▁restaurant": 27144,
+ "ével": 27145,
+ "▁SL": 27146,
+ "▁Rey": 27147,
+ "chas": 27148,
+ "▁electrons": 27149,
+ "▁Pitts": 27150,
+ "▁Jules": 27151,
+ "май": 27152,
+ "enant": 27153,
+ "-}": 27154,
+ "лад": 27155,
+ "▁Москва": 27156,
+ "gom": 27157,
+ "▁Fernández": 27158,
+ "fund": 27159,
+ "interno": 27160,
+ "▁Mari": 27161,
+ "▁rius": 27162,
+ "▁Prozent": 27163,
+ "стрі": 27164,
+ "▁внут": 27165,
+ "anterie": 27166,
+ "▁прис": 27167,
+ "▁обы": 27168,
+ "▁Marina": 27169,
+ "▁occurrence": 27170,
+ "rikt": 27171,
+ "▁физи": 27172,
+ "▁schwer": 27173,
+ "▁Гре": 27174,
+ "Reset": 27175,
+ "▁mucho": 27176,
+ "andr": 27177,
+ "▁Wies": 27178,
+ "▁Keith": 27179,
+ "▁Julian": 27180,
+ "▁cole": 27181,
+ "ciendo": 27182,
+ "▁Contempor": 27183,
+ "etry": 27184,
+ "elian": 27185,
+ "гии": 27186,
+ "▁голо": 27187,
+ "▁dél": 27188,
+ "▁decent": 27189,
+ "РСР": 27190,
+ "▁szeptember": 27191,
+ "мест": 27192,
+ "castle": 27193,
+ "▁держав": 27194,
+ "}\")": 27195,
+ "▁ASCII": 27196,
+ "▁Glen": 27197,
+ "itzerland": 27198,
+ "Toggle": 27199,
+ "▁tradicional": 27200,
+ "▁Plat": 27201,
+ "vee": 27202,
+ "abgerufen": 27203,
+ "(|": 27204,
+ "CLI": 27205,
+ "}}$,": 27206,
+ "▁Bowl": 27207,
+ "▁Male": 27208,
+ "▁Bres": 27209,
+ "▁пси": 27210,
+ "▁Challenge": 27211,
+ "zó": 27212,
+ "▁projekt": 27213,
+ "▁negoti": 27214,
+ "above": 27215,
+ "▁перио": 27216,
+ "▁longest": 27217,
+ "authentic": 27218,
+ "▁tradu": 27219,
+ "▁mujeres": 27220,
+ "▁Andre": 27221,
+ "▁hadn": 27222,
+ "▁Schule": 27223,
+ "odel": 27224,
+ "bled": 27225,
+ "▁Trade": 27226,
+ "▁mobil": 27227,
+ "▁algunas": 27228,
+ "▁Lak": 27229,
+ "▁Connecticut": 27230,
+ "▁alco": 27231,
+ "▁Selbst": 27232,
+ "ił": 27233,
+ "▁alb": 27234,
+ "ouverneur": 27235,
+ "▁sr": 27236,
+ "▁vba": 27237,
+ "loped": 27238,
+ "▁Partei": 27239,
+ "uate": 27240,
+ "▁Authentication": 27241,
+ "bei": 27242,
+ "}}.": 27243,
+ "▁konnten": 27244,
+ "▁допо": 27245,
+ "▁hyd": 27246,
+ "Office": 27247,
+ "données": 27248,
+ "▁Cleveland": 27249,
+ "rita": 27250,
+ "íos": 27251,
+ "▁выше": 27252,
+ "▁Roberts": 27253,
+ "▁élections": 27254,
+ "▁'')": 27255,
+ "▁publishing": 27256,
+ "▁bapt": 27257,
+ "<>();": 27258,
+ "missing": 27259,
+ "ровано": 27260,
+ "▁housing": 27261,
+ "▁inference": 27262,
+ "▁Renaissance": 27263,
+ "▁règ": 27264,
+ "▁Steph": 27265,
+ "CES": 27266,
+ "ERE": 27267,
+ "кет": 27268,
+ "OU": 27269,
+ "▁grouping": 27270,
+ "verkehr": 27271,
+ "jih": 27272,
+ "agli": 27273,
+ "▁milk": 27274,
+ "lait": 27275,
+ "Stage": 27276,
+ "▁byly": 27277,
+ "▁wooden": 27278,
+ "keley": 27279,
+ "etra": 27280,
+ "▁Peg": 27281,
+ "▁donné": 27282,
+ "adal": 27283,
+ "sequently": 27284,
+ "▁insbesondere": 27285,
+ "ELD": 27286,
+ "▁Mam": 27287,
+ "▁volte": 27288,
+ "▁prospect": 27289,
+ "нове": 27290,
+ "▁denoted": 27291,
+ "▁overlay": 27292,
+ "Permission": 27293,
+ "een": 27294,
+ "▁EM": 27295,
+ "▁uz": 27296,
+ "Mc": 27297,
+ "olit": 27298,
+ "▁servi": 27299,
+ "▁Heidel": 27300,
+ "▁Wiener": 27301,
+ "▁illegal": 27302,
+ "▁predictions": 27303,
+ "▁goog": 27304,
+ "hon": 27305,
+ "▁Cinema": 27306,
+ "▁револю": 27307,
+ "▁Rule": 27308,
+ "wod": 27309,
+ "▁radiation": 27310,
+ "oł": 27311,
+ "ової": 27312,
+ "▁Perform": 27313,
+ "▁prisoner": 27314,
+ "▁amet": 27315,
+ "▁figura": 27316,
+ "▁Commander": 27317,
+ "▁официаль": 27318,
+ "▁trov": 27319,
+ "▁acted": 27320,
+ "▁workflow": 27321,
+ "▁Республики": 27322,
+ "▁guidance": 27323,
+ "▁мене": 27324,
+ "National": 27325,
+ "▁Kel": 27326,
+ "webpack": 27327,
+ "простра": 27328,
+ "▁llamado": 27329,
+ "alog": 27330,
+ "terra": 27331,
+ "ixen": 27332,
+ "legraph": 27333,
+ "äischen": 27334,
+ "▁teachers": 27335,
+ "uden": 27336,
+ "▁også": 27337,
+ "possible": 27338,
+ "▁Soul": 27339,
+ "▁Geography": 27340,
+ "▁зада": 27341,
+ "hit": 27342,
+ "▁anger": 27343,
+ "▁remporte": 27344,
+ "Pod": 27345,
+ "чке": 27346,
+ "▁aria": 27347,
+ "▁Astronom": 27348,
+ "chapter": 27349,
+ "▁fork": 27350,
+ "▁Cuando": 27351,
+ "mense": 27352,
+ "▁Christians": 27353,
+ "gc": 27354,
+ "▁#(": 27355,
+ "Organ": 27356,
+ "▁steady": 27357,
+ "pse": 27358,
+ "жить": 27359,
+ "ignes": 27360,
+ "aterra": 27361,
+ "movie": 27362,
+ "posta": 27363,
+ "raste": 27364,
+ "▁Ressource": 27365,
+ "▁País": 27366,
+ "▁();": 27367,
+ "▁penalty": 27368,
+ "тт": 27369,
+ "▁trasfer": 27370,
+ "century": 27371,
+ "▁cleaner": 27372,
+ "selenium": 27373,
+ "ortheast": 27374,
+ "xic": 27375,
+ "лії": 27376,
+ "▁inglese": 27377,
+ "▁Tang": 27378,
+ "▁gods": 27379,
+ "frent": 27380,
+ "ciente": 27381,
+ "starts": 27382,
+ "▁musica": 27383,
+ "ymnasium": 27384,
+ "----+": 27385,
+ "▁terrest": 27386,
+ "▁retrieved": 27387,
+ "iare": 27388,
+ "unning": 27389,
+ "▁Marcus": 27390,
+ "▁promote": 27391,
+ "warning": 27392,
+ "тый": 27393,
+ "})$,": 27394,
+ "Transport": 27395,
+ "▁reson": 27396,
+ "▁Clo": 27397,
+ "▁erm": 27398,
+ "▁eliminate": 27399,
+ "heimer": 27400,
+ "▁saves": 27401,
+ "▁prayer": 27402,
+ "Classes": 27403,
+ "Express": 27404,
+ "▁Akademie": 27405,
+ "Else": 27406,
+ "Turn": 27407,
+ "▁ikke": 27408,
+ "▁rei": 27409,
+ "▁dirett": 27410,
+ "▁Rost": 27411,
+ "▁Papa": 27412,
+ "▁jsf": 27413,
+ "лением": 27414,
+ "▁Tul": 27415,
+ "▁Zak": 27416,
+ "▁niemieck": 27417,
+ "Tw": 27418,
+ "amour": 27419,
+ "nested": 27420,
+ "ppets": 27421,
+ "шп": 27422,
+ "dit": 27423,
+ "зен": 27424,
+ "zyma": 27425,
+ "hrte": 27426,
+ "Constraints": 27427,
+ "▁ownership": 27428,
+ "Arm": 27429,
+ "▁consumption": 27430,
+ "▁fet": 27431,
+ "ivari": 27432,
+ "chrom": 27433,
+ "setAttribute": 27434,
+ "▁compose": 27435,
+ "▁backing": 27436,
+ "▁Paz": 27437,
+ "▁scri": 27438,
+ "▁Mechan": 27439,
+ "▁Norway": 27440,
+ "▁Jup": 27441,
+ "▁mér": 27442,
+ "▁administrator": 27443,
+ "▁cabe": 27444,
+ "ivalent": 27445,
+ "▁throne": 27446,
+ "▁dues": 27447,
+ "▁humor": 27448,
+ "▁Adri": 27449,
+ "▁abort": 27450,
+ "ñas": 27451,
+ "▁Київ": 27452,
+ "jící": 27453,
+ "▁zweite": 27454,
+ "▁doub": 27455,
+ "ershell": 27456,
+ "шой": 27457,
+ "▁Fam": 27458,
+ "åk": 27459,
+ "▁tweede": 27460,
+ "▁Rib": 27461,
+ "▁før": 27462,
+ "pción": 27463,
+ "inned": 27464,
+ "rvm": 27465,
+ "▁Appar": 27466,
+ "▁Dj": 27467,
+ "▁Shang": 27468,
+ "Distance": 27469,
+ "▁dawn": 27470,
+ "▁Matth": 27471,
+ "▁errichtet": 27472,
+ "phantom": 27473,
+ "▁releases": 27474,
+ "Recognizer": 27475,
+ "▁Kop": 27476,
+ "▁Pul": 27477,
+ "ué": 27478,
+ "nats": 27479,
+ "relax": 27480,
+ "▁fled": 27481,
+ "▁experiences": 27482,
+ "щее": 27483,
+ "меня": 27484,
+ "▁персона": 27485,
+ "▁Identity": 27486,
+ "rets": 27487,
+ "kunft": 27488,
+ "larg": 27489,
+ "ListItem": 27490,
+ "vd": 27491,
+ "runner": 27492,
+ "lant": 27493,
+ "ipart": 27494,
+ "bay": 27495,
+ "iei": 27496,
+ "▁lengths": 27497,
+ "▁cattle": 27498,
+ "jets": 27499,
+ "▁sehen": 27500,
+ "Jul": 27501,
+ "fatt": 27502,
+ "▁surrender": 27503,
+ "▁Trump": 27504,
+ "дного": 27505,
+ "▁Fourier": 27506,
+ "ieben": 27507,
+ "_\"": 27508,
+ "▁früher": 27509,
+ "▁garant": 27510,
+ "uclidean": 27511,
+ "ägt": 27512,
+ "▁півден": 27513,
+ "Pages": 27514,
+ "▁rivers": 27515,
+ "▁donner": 27516,
+ "svn": 27517,
+ "▁ł": 27518,
+ "ově": 27519,
+ "▁Leist": 27520,
+ "arial": 27521,
+ "ových": 27522,
+ "▁filling": 27523,
+ "▁musicale": 27524,
+ "maxim": 27525,
+ "▁dashed": 27526,
+ "▁Нов": 27527,
+ "Drawer": 27528,
+ "▁Medicine": 27529,
+ "▁dokument": 27530,
+ "owel": 27531,
+ "vić": 27532,
+ "hely": 27533,
+ "▁elet": 27534,
+ "Seconds": 27535,
+ "▁Gonz": 27536,
+ "rou": 27537,
+ "▁finales": 27538,
+ "rn": 27539,
+ "fø": 27540,
+ "▁indexed": 27541,
+ "className": 27542,
+ "▁ober": 27543,
+ "▁duas": 27544,
+ "▁optimized": 27545,
+ "▁kdy": 27546,
+ "versary": 27547,
+ "energy": 27548,
+ "▁центра": 27549,
+ "▁currency": 27550,
+ "zyż": 27551,
+ "Like": 27552,
+ "▁Ги": 27553,
+ "sono": 27554,
+ "▁palab": 27555,
+ "▁pushing": 27556,
+ "ublik": 27557,
+ "▁Hass": 27558,
+ "}\\,\\": 27559,
+ "unker": 27560,
+ "▁Factory": 27561,
+ "▁Resources": 27562,
+ "datei": 27563,
+ "▁Tools": 27564,
+ "▁stehen": 27565,
+ "sime": 27566,
+ "▁Ху": 27567,
+ "▁hoch": 27568,
+ "▁Rodríguez": 27569,
+ "zeitig": 27570,
+ "▁Terry": 27571,
+ "▁обу": 27572,
+ "Usage": 27573,
+ "urchase": 27574,
+ "lö": 27575,
+ "▁Introduction": 27576,
+ "▁participation": 27577,
+ "ος": 27578,
+ "ogli": 27579,
+ "apy": 27580,
+ "▁hopefully": 27581,
+ "ponder": 27582,
+ "▁Yang": 27583,
+ "▁promises": 27584,
+ "▁верну": 27585,
+ "▁остров": 27586,
+ "^{+": 27587,
+ "▁mostra": 27588,
+ "▁CURLOPT": 27589,
+ "HH": 27590,
+ "▁stdout": 27591,
+ "▁brilliant": 27592,
+ "▁manuscript": 27593,
+ "▁decir": 27594,
+ "▁Bolog": 27595,
+ "▁места": 27596,
+ "▁invisible": 27597,
+ "▁Chal": 27598,
+ "▁analyze": 27599,
+ "prilis": 27600,
+ "attend": 27601,
+ "Mvc": 27602,
+ "than": 27603,
+ "cko": 27604,
+ "▁Quebec": 27605,
+ "▁planta": 27606,
+ "▁télévis": 27607,
+ "▁uninstall": 27608,
+ "ències": 27609,
+ "▁gminie": 27610,
+ "▁Pref": 27611,
+ "▁lequel": 27612,
+ "Invocation": 27613,
+ "▁Í": 27614,
+ "▁transformed": 27615,
+ "MAN": 27616,
+ "gebaut": 27617,
+ "▁сохра": 27618,
+ "▁второй": 27619,
+ "▁Lith": 27620,
+ "wendung": 27621,
+ "▁Politik": 27622,
+ "▁Senator": 27623,
+ "▁LL": 27624,
+ "ждение": 27625,
+ "ште": 27626,
+ "▁Cés": 27627,
+ "▁bande": 27628,
+ "▁historian": 27629,
+ "▁passwords": 27630,
+ "malloc": 27631,
+ "▁semif": 27632,
+ "▁rå": 27633,
+ "unicí": 27634,
+ "Available": 27635,
+ "Optional": 27636,
+ "▁Twe": 27637,
+ "▁kró": 27638,
+ "▁subsets": 27639,
+ "▁DAT": 27640,
+ "▁doubles": 27641,
+ "никами": 27642,
+ "▁зв": 27643,
+ "gegeben": 27644,
+ "▁Попис": 27645,
+ "▁július": 27646,
+ "▁meteor": 27647,
+ "Mount": 27648,
+ "ivent": 27649,
+ "▁Nathan": 27650,
+ "▁Schutz": 27651,
+ "egov": 27652,
+ "▁död": 27653,
+ "▁meat": 27654,
+ "▁пункт": 27655,
+ "▁minds": 27656,
+ "elivery": 27657,
+ "▁TLS": 27658,
+ "рем": 27659,
+ "ckså": 27660,
+ "▁stayed": 27661,
+ "▁Bin": 27662,
+ "▁Pia": 27663,
+ "▁имен": 27664,
+ "▁Bobby": 27665,
+ "▁produit": 27666,
+ "empio": 27667,
+ "▁reducing": 27668,
+ "▁Yu": 27669,
+ "▁Geschäft": 27670,
+ "▁perché": 27671,
+ "▁cors": 27672,
+ "▁icons": 27673,
+ "AppData": 27674,
+ "▁Hog": 27675,
+ "▁рів": 27676,
+ "▁Sans": 27677,
+ "▁siège": 27678,
+ "stellen": 27679,
+ "Brush": 27680,
+ "OFF": 27681,
+ "▁visitor": 27682,
+ "▁bath": 27683,
+ "▁fee": 27684,
+ "atisf": 27685,
+ "▁curv": 27686,
+ "▁folgender": 27687,
+ "▁conscience": 27688,
+ "▁Seattle": 27689,
+ "▁medieval": 27690,
+ "distribution": 27691,
+ "▁DM": 27692,
+ "▁мя": 27693,
+ "▁RUN": 27694,
+ "akov": 27695,
+ "ceil": 27696,
+ "▁letting": 27697,
+ "▁dov": 27698,
+ "▁оби": 27699,
+ "kiej": 27700,
+ "▁direkt": 27701,
+ "▁tm": 27702,
+ "colors": 27703,
+ "▁altro": 27704,
+ "▁tijdens": 27705,
+ "]{'": 27706,
+ "▁Bom": 27707,
+ "▁kunst": 27708,
+ "▁shelter": 27709,
+ "▁rav": 27710,
+ "predict": 27711,
+ "▁comenzó": 27712,
+ "▁świat": 27713,
+ "▁Durant": 27714,
+ "▁schemes": 27715,
+ "▁mesh": 27716,
+ "▁indicator": 27717,
+ "▁Emer": 27718,
+ "▁guilty": 27719,
+ "нец": 27720,
+ "▁consequences": 27721,
+ "cludes": 27722,
+ "▁Lower": 27723,
+ "▁поме": 27724,
+ "▁pace": 27725,
+ "даго": 27726,
+ "▁ambos": 27727,
+ "lb": 27728,
+ "▁educated": 27729,
+ "urale": 27730,
+ "anh": 27731,
+ "esség": 27732,
+ "▁associations": 27733,
+ "town": 27734,
+ "▁trif": 27735,
+ "samples": 27736,
+ "bos": 27737,
+ "▁Spect": 27738,
+ "▁Це": 27739,
+ "altung": 27740,
+ "▁Lob": 27741,
+ "▁curiosity": 27742,
+ "▁Weiter": 27743,
+ "estone": 27744,
+ "▁demol": 27745,
+ "▁apolog": 27746,
+ "▁Dynamic": 27747,
+ "Inner": 27748,
+ "esper": 27749,
+ "ecz": 27750,
+ "uellement": 27751,
+ "▁Hamiltonian": 27752,
+ "Atlas": 27753,
+ "▁argue": 27754,
+ "Foreign": 27755,
+ "collapse": 27756,
+ "▁términ": 27757,
+ "▁electronic": 27758,
+ "▁NR": 27759,
+ "▁corr": 27760,
+ "temps": 27761,
+ "IndexPath": 27762,
+ "яз": 27763,
+ "▁talál": 27764,
+ "today": 27765,
+ "wave": 27766,
+ "▁sib": 27767,
+ "▁спи": 27768,
+ "▁convey": 27769,
+ "▁Géographie": 27770,
+ "▁Нью": 27771,
+ "▁Hibernate": 27772,
+ "▁tin": 27773,
+ "dic": 27774,
+ "ppings": 27775,
+ "sweise": 27776,
+ "▁rolling": 27777,
+ "▁selects": 27778,
+ ")\\)": 27779,
+ "▁poeta": 27780,
+ "▁степени": 27781,
+ "▁Abr": 27782,
+ "▁höch": 27783,
+ "▁stern": 27784,
+ "▁fjär": 27785,
+ "▁installer": 27786,
+ "decl": 27787,
+ "▁miser": 27788,
+ "groupby": 27789,
+ "substr": 27790,
+ "▁phenomen": 27791,
+ "▁Wing": 27792,
+ "▁fills": 27793,
+ "▁único": 27794,
+ "Running": 27795,
+ "Come": 27796,
+ "irable": 27797,
+ "simeq": 27798,
+ "▁remp": 27799,
+ "kele": 27800,
+ "liers": 27801,
+ "▁kwietnia": 27802,
+ "▁interrupted": 27803,
+ "▁Jet": 27804,
+ "=\\{": 27805,
+ "ído": 27806,
+ "▁Taiwan": 27807,
+ "▁возра": 27808,
+ "▁alternatives": 27809,
+ "▁Tir": 27810,
+ "▁Reserve": 27811,
+ "▁Кур": 27812,
+ "▁Nobel": 27813,
+ "▁работал": 27814,
+ "▁axes": 27815,
+ "▁Cependant": 27816,
+ "ká": 27817,
+ "▁erneut": 27818,
+ "▁Demo": 27819,
+ "communic": 27820,
+ "constructor": 27821,
+ "▁Monday": 27822,
+ "Nil": 27823,
+ "HashMap": 27824,
+ "payment": 27825,
+ "▁fixing": 27826,
+ "▁ADD": 27827,
+ "review": 27828,
+ "▁possibil": 27829,
+ "▁grote": 27830,
+ "▁grouped": 27831,
+ "▁Lima": 27832,
+ "▁Augen": 27833,
+ "▁också": 27834,
+ "onas": 27835,
+ "▁debate": 27836,
+ "▁Ingl": 27837,
+ "Da": 27838,
+ "SOUR": 27839,
+ "ettbe": 27840,
+ "▁Battalion": 27841,
+ "▁Float": 27842,
+ "▁cone": 27843,
+ "readsheet": 27844,
+ "court": 27845,
+ "ligen": 27846,
+ "▁Beginn": 27847,
+ "▁LIMIT": 27848,
+ "▁enjoyed": 27849,
+ "▁Jakob": 27850,
+ "▁telt": 27851,
+ "backend": 27852,
+ "▁Gemeinsame": 27853,
+ "lint": 27854,
+ "alling": 27855,
+ "▁bör": 27856,
+ "grand": 27857,
+ "▁diverses": 27858,
+ "▁związ": 27859,
+ "▁Kompon": 27860,
+ "▁innerhalb": 27861,
+ "▁desarrollo": 27862,
+ "▁Masters": 27863,
+ "ioso": 27864,
+ "]`.": 27865,
+ "▁francesa": 27866,
+ "Aff": 27867,
+ "inek": 27868,
+ "▁dessin": 27869,
+ "`.`": 27870,
+ "▁ranks": 27871,
+ "берг": 27872,
+ "▁skal": 27873,
+ "▁Sultan": 27874,
+ "АН": 27875,
+ "▁способ": 27876,
+ "▁contradict": 27877,
+ "▁recom": 27878,
+ "▁Oklahoma": 27879,
+ "▁Vladimir": 27880,
+ "▁meters": 27881,
+ "transport": 27882,
+ "▁consulté": 27883,
+ "▁ATP": 27884,
+ "ebb": 27885,
+ "▁volunte": 27886,
+ "▁outline": 27887,
+ "LIC": 27888,
+ "▁euro": 27889,
+ "CharField": 27890,
+ "medium": 27891,
+ "▁Belgique": 27892,
+ "Proc": 27893,
+ "routes": 27894,
+ "▁contribu": 27895,
+ "!}": 27896,
+ "ším": 27897,
+ "▁Less": 27898,
+ "▁Kost": 27899,
+ "▁eredetiből": 27900,
+ "reven": 27901,
+ "verify": 27902,
+ "▁Salt": 27903,
+ "▁shooting": 27904,
+ "▁dispose": 27905,
+ "ují": 27906,
+ "▁tierra": 27907,
+ "▁poison": 27908,
+ "sak": 27909,
+ "perimental": 27910,
+ "▁Né": 27911,
+ "▁Kid": 27912,
+ "agyar": 27913,
+ "▁archiválva": 27914,
+ "bereich": 27915,
+ "íz": 27916,
+ "▁Ritter": 27917,
+ "▁Хронологија": 27918,
+ "zeum": 27919,
+ "дах": 27920,
+ "▁gründ": 27921,
+ "▁programmer": 27922,
+ "▁conseil": 27923,
+ "▁encrypt": 27924,
+ "integration": 27925,
+ "Culture": 27926,
+ "▁Circle": 27927,
+ "Observable": 27928,
+ "▁genomsnitt": 27929,
+ "▁Selection": 27930,
+ "▁irregular": 27931,
+ "Autres": 27932,
+ "Percent": 27933,
+ "fault": 27934,
+ "▁virtue": 27935,
+ "ąpi": 27936,
+ "▁sess": 27937,
+ "▁Также": 27938,
+ "Timestamp": 27939,
+ "▁littérature": 27940,
+ "▁moż": 27941,
+ "▁borrow": 27942,
+ "▁conced": 27943,
+ "чник": 27944,
+ "▁Lund": 27945,
+ "IONS": 27946,
+ "ynie": 27947,
+ "▁Shin": 27948,
+ "▁osob": 27949,
+ "bě": 27950,
+ "▁intuit": 27951,
+ "▁нап": 27952,
+ "▁proph": 27953,
+ "▁pitt": 27954,
+ "▁IBM": 27955,
+ "▁Till": 27956,
+ "▁hina": 27957,
+ "ittest": 27958,
+ "generator": 27959,
+ "▁Nin": 27960,
+ "▁Kot": 27961,
+ "▁passer": 27962,
+ "▁disposition": 27963,
+ "uning": 27964,
+ "▁fame": 27965,
+ "▁tenia": 27966,
+ "ancement": 27967,
+ "▁Suisse": 27968,
+ "`-": 27969,
+ "▁hombres": 27970,
+ "▁infinity": 27971,
+ "▁оконча": 27972,
+ "▁cosm": 27973,
+ "▁Dennis": 27974,
+ "baz": 27975,
+ "haupt": 27976,
+ "▁mighty": 27977,
+ "▁prede": 27978,
+ "usable": 27979,
+ "▁wszyst": 27980,
+ "▁lb": 27981,
+ "ABASE": 27982,
+ "jna": 27983,
+ "нев": 27984,
+ "▁ases": 27985,
+ "▁finalmente": 27986,
+ "йм": 27987,
+ "pection": 27988,
+ "▁Studien": 27989,
+ "▁Norwegian": 27990,
+ "cego": 27991,
+ "INDEX": 27992,
+ "orten": 27993,
+ "▁friendship": 27994,
+ "metro": 27995,
+ "thick": 27996,
+ "▁Zel": 27997,
+ "LOW": 27998,
+ "▁thereby": 27999,
+ "unted": 28000,
+ "▁surfaces": 28001,
+ "ющим": 28002,
+ "%).": 28003,
+ "▁Wonder": 28004,
+ "▁redundant": 28005,
+ "▁Gros": 28006,
+ "▁websites": 28007,
+ "▁vio": 28008,
+ "▁ocas": 28009,
+ "vés": 28010,
+ "▁Gam": 28011,
+ "dw": 28012,
+ "Indicator": 28013,
+ "▁Kob": 28014,
+ "▁jack": 28015,
+ "Hint": 28016,
+ "▁Apol": 28017,
+ "▁другие": 28018,
+ "▁NUM": 28019,
+ "▁ofic": 28020,
+ "ystycz": 28021,
+ "▁wereld": 28022,
+ "мости": 28023,
+ "LEFT": 28024,
+ "▁Types": 28025,
+ "seen": 28026,
+ "uncia": 28027,
+ "▁narod": 28028,
+ "▁этот": 28029,
+ "Sidenote": 28030,
+ "ueil": 28031,
+ "▁отме": 28032,
+ "▁courts": 28033,
+ "fir": 28034,
+ "urz": 28035,
+ "ченко": 28036,
+ "Credentials": 28037,
+ "▁imagination": 28038,
+ "itats": 28039,
+ "buff": 28040,
+ "flash": 28041,
+ "▁badly": 28042,
+ "▁worn": 28043,
+ "▁округу": 28044,
+ "catalog": 28045,
+ "lime": 28046,
+ "▁Gill": 28047,
+ "▁Sent": 28048,
+ "iella": 28049,
+ "▁Craig": 28050,
+ "▁Sele": 28051,
+ "▁Independ": 28052,
+ "▁provincie": 28053,
+ "ossen": 28054,
+ "▁запад": 28055,
+ "▁infant": 28056,
+ "▁prevents": 28057,
+ "▁provinces": 28058,
+ "afé": 28059,
+ "beg": 28060,
+ "▁colours": 28061,
+ "BF": 28062,
+ "ën": 28063,
+ "▁Между": 28064,
+ "în": 28065,
+ "Observer": 28066,
+ "forsch": 28067,
+ "ígen": 28068,
+ "umption": 28069,
+ "▁Illustr": 28070,
+ "рист": 28071,
+ "▁полови": 28072,
+ "▁`&": 28073,
+ "▁ore": 28074,
+ "▁supplies": 28075,
+ "▁parenthes": 28076,
+ "Foundation": 28077,
+ "▁vou": 28078,
+ "▁Tout": 28079,
+ "Donald": 28080,
+ "▁RET": 28081,
+ "weig": 28082,
+ "▁producción": 28083,
+ "mix": 28084,
+ "▁utwor": 28085,
+ "▁föl": 28086,
+ "▁então": 28087,
+ "▁Sister": 28088,
+ "Tags": 28089,
+ "▁Савезне": 28090,
+ "▁privileges": 28091,
+ "▁nazw": 28092,
+ "▁Rav": 28093,
+ "▁repro": 28094,
+ "▁Mason": 28095,
+ "▁Platform": 28096,
+ "▁пробле": 28097,
+ "▁Pérez": 28098,
+ "▁blanc": 28099,
+ "Behavior": 28100,
+ "фици": 28101,
+ "eken": 28102,
+ "▁meets": 28103,
+ "(.*": 28104,
+ "▁få": 28105,
+ "epen": 28106,
+ "maker": 28107,
+ "▁loyal": 28108,
+ "members": 28109,
+ "meisterschaft": 28110,
+ "goal": 28111,
+ "шлен": 28112,
+ "▁северо": 28113,
+ "iende": 28114,
+ "дні": 28115,
+ "Proof": 28116,
+ "▁explic": 28117,
+ "▁electro": 28118,
+ "iels": 28119,
+ "reload": 28120,
+ "▁eleven": 28121,
+ "▁partidos": 28122,
+ "îne": 28123,
+ "▁Regin": 28124,
+ "▁éx": 28125,
+ "▁Bulg": 28126,
+ "▁networking": 28127,
+ "▁separator": 28128,
+ "UserName": 28129,
+ "▁edificio": 28130,
+ "▁Mie": 28131,
+ "▁idle": 28132,
+ "yed": 28133,
+ "▁passengers": 28134,
+ "+)": 28135,
+ "meno": 28136,
+ "eggi": 28137,
+ "▁nicely": 28138,
+ "endencia": 28139,
+ "чий": 28140,
+ "étés": 28141,
+ "ightarrow": 28142,
+ "▁orthogonal": 28143,
+ "▁Half": 28144,
+ "▁fewer": 28145,
+ "▁propi": 28146,
+ "▁primit": 28147,
+ "icale": 28148,
+ "▁flower": 28149,
+ "merk": 28150,
+ "▁Отече": 28151,
+ "▁persistent": 28152,
+ "▁Ville": 28153,
+ "Men": 28154,
+ "gaben": 28155,
+ "▁Isaac": 28156,
+ "ativity": 28157,
+ "▁północ": 28158,
+ "▁rok": 28159,
+ "cards": 28160,
+ "дения": 28161,
+ "▁юго": 28162,
+ "▁extraordinary": 28163,
+ "▁kyr": 28164,
+ "(\",": 28165,
+ "))]": 28166,
+ "▁unix": 28167,
+ "кол": 28168,
+ "▁sink": 28169,
+ "apsed": 28170,
+ "▁kommen": 28171,
+ "▁forcing": 28172,
+ "About": 28173,
+ "▁Halle": 28174,
+ "▁Majesty": 28175,
+ "▁Switch": 28176,
+ "▁abroad": 28177,
+ "▁acceleration": 28178,
+ "urbed": 28179,
+ "▁остан": 28180,
+ "Ready": 28181,
+ "▁півні": 28182,
+ "Bra": 28183,
+ "▁цього": 28184,
+ "▁plut": 28185,
+ "▁Train": 28186,
+ "▁április": 28187,
+ "▁puesto": 28188,
+ "▁toss": 28189,
+ "▁irrelevant": 28190,
+ "▁dip": 28191,
+ "segment": 28192,
+ "opacity": 28193,
+ "▁lorsque": 28194,
+ "▁verschill": 28195,
+ "ена": 28196,
+ "▁Doc": 28197,
+ "%%%%%%%%": 28198,
+ "▁borders": 28199,
+ "gebras": 28200,
+ "▁ries": 28201,
+ "▁Olympedia": 28202,
+ "▁Generation": 28203,
+ "metros": 28204,
+ "▁horizon": 28205,
+ "▁adaptation": 28206,
+ "▁Zahl": 28207,
+ "▁nahe": 28208,
+ "▁Bug": 28209,
+ "Picture": 28210,
+ "љи": 28211,
+ "RGB": 28212,
+ "Owner": 28213,
+ "adin": 28214,
+ "▁Catalunya": 28215,
+ "ných": 28216,
+ "▁cualquier": 28217,
+ "▁Institution": 28218,
+ "insen": 28219,
+ "▁Brasile": 28220,
+ "▁fitting": 28221,
+ "Deleg": 28222,
+ "ictwo": 28223,
+ "▁Exper": 28224,
+ "ochastic": 28225,
+ "▁dus": 28226,
+ "▁пора": 28227,
+ "▁substring": 28228,
+ "ссии": 28229,
+ "oin": 28230,
+ "▁школа": 28231,
+ "▁cx": 28232,
+ "▁%)": 28233,
+ "▁Buddh": 28234,
+ "▁pending": 28235,
+ "▁Entry": 28236,
+ "▁Berl": 28237,
+ "▁cler": 28238,
+ "▁Soc": 28239,
+ "▁rounded": 28240,
+ "▁mv": 28241,
+ "ített": 28242,
+ "▁Diplom": 28243,
+ "▁französischen": 28244,
+ "▁Gan": 28245,
+ "▁Investig": 28246,
+ "▁indexPath": 28247,
+ "▁molti": 28248,
+ "persistence": 28249,
+ "▁XIXe": 28250,
+ "▁Electron": 28251,
+ "bü": 28252,
+ "gele": 28253,
+ "▁Maler": 28254,
+ "▁proyecto": 28255,
+ "▁Bath": 28256,
+ "ellers": 28257,
+ "▁GP": 28258,
+ "oning": 28259,
+ "cloudflare": 28260,
+ "▁při": 28261,
+ "▁ded": 28262,
+ "▁Odkazy": 28263,
+ "▁Msg": 28264,
+ "▁Being": 28265,
+ "▁Depuis": 28266,
+ "▁Primary": 28267,
+ "▁Appro": 28268,
+ "▁formally": 28269,
+ "ступил": 28270,
+ "▁fuera": 28271,
+ "▁Root": 28272,
+ "▁autonom": 28273,
+ "▁secretary": 28274,
+ "▁osób": 28275,
+ "▁cuales": 28276,
+ "▁Depending": 28277,
+ "▁asi": 28278,
+ "vera": 28279,
+ "▁russe": 28280,
+ "▁proves": 28281,
+ "▁presiden": 28282,
+ "RU": 28283,
+ "▁Watson": 28284,
+ "▁webpack": 28285,
+ "elligence": 28286,
+ "кам": 28287,
+ "▁Officer": 28288,
+ "▁delivery": 28289,
+ "ждён": 28290,
+ "▁импе": 28291,
+ "▁wil": 28292,
+ "▁vesc": 28293,
+ "usztus": 28294,
+ "▁Geoff": 28295,
+ "()}": 28296,
+ "▁Fore": 28297,
+ "▁wenig": 28298,
+ "▁Airl": 28299,
+ "▁Efter": 28300,
+ "▁Break": 28301,
+ "▁Städ": 28302,
+ "ismiss": 28303,
+ "íp": 28304,
+ "▁avoided": 28305,
+ "▁assertion": 28306,
+ "DN": 28307,
+ "▁teat": 28308,
+ "ína": 28309,
+ "▁mechanical": 28310,
+ "isu": 28311,
+ "@{": 28312,
+ "▁nou": 28313,
+ "Italie": 28314,
+ "sourceforge": 28315,
+ "▁svo": 28316,
+ "▁király": 28317,
+ "▁References": 28318,
+ "six": 28319,
+ "▁Archives": 28320,
+ "▁finishing": 28321,
+ "acje": 28322,
+ "état": 28323,
+ "iffs": 28324,
+ "▁stead": 28325,
+ "▁feas": 28326,
+ "aware": 28327,
+ "lande": 28328,
+ "Inject": 28329,
+ "▁Agent": 28330,
+ "▁Normdatei": 28331,
+ "▁amen": 28332,
+ "▁Architecture": 28333,
+ "aze": 28334,
+ "ște": 28335,
+ "▁usar": 28336,
+ "▁cores": 28337,
+ "лін": 28338,
+ "▁Castro": 28339,
+ "▁væ": 28340,
+ ">\",": 28341,
+ "omena": 28342,
+ "▁gesam": 28343,
+ "▁Martín": 28344,
+ "egung": 28345,
+ "▁společ": 28346,
+ "▁amplitude": 28347,
+ "▁importing": 28348,
+ "▁listview": 28349,
+ "THE": 28350,
+ "ziale": 28351,
+ "cedes": 28352,
+ "▁particulier": 28353,
+ "▁Расподела": 28354,
+ "▁край": 28355,
+ "▁divent": 28356,
+ "▁ké": 28357,
+ "quit": 28358,
+ "тором": 28359,
+ "CheckBox": 28360,
+ "▁Zobacz": 28361,
+ "phe": 28362,
+ "pta": 28363,
+ "▁sjö": 28364,
+ "▁розташ": 28365,
+ "▁tedesco": 28366,
+ "▁stal": 28367,
+ "▁Beruf": 28368,
+ "овая": 28369,
+ "▁svě": 28370,
+ "▁flush": 28371,
+ "▁відбу": 28372,
+ "▁radial": 28373,
+ "▁différentes": 28374,
+ "анта": 28375,
+ "▁Perry": 28376,
+ "Coll": 28377,
+ "liqu": 28378,
+ "▁Optional": 28379,
+ "▁Санкт": 28380,
+ "▁LINQ": 28381,
+ "▁Franc": 28382,
+ "cije": 28383,
+ "▁Guillaume": 28384,
+ "know": 28385,
+ "▁Units": 28386,
+ "olk": 28387,
+ "▁Système": 28388,
+ "▁Sales": 28389,
+ "▁ehemaligen": 28390,
+ "мирова": 28391,
+ "xhtml": 28392,
+ "setopt": 28393,
+ "▁mellan": 28394,
+ "▁zie": 28395,
+ "▁giant": 28396,
+ "Board": 28397,
+ "▁Caval": 28398,
+ "▁defence": 28399,
+ "----------": 28400,
+ "pshire": 28401,
+ "mart": 28402,
+ "▁Dioc": 28403,
+ "iskt": 28404,
+ "▁inse": 28405,
+ "▁épisode": 28406,
+ "чик": 28407,
+ "bars": 28408,
+ "Sito": 28409,
+ "▁integrity": 28410,
+ "auff": 28411,
+ "▁vär": 28412,
+ "Azure": 28413,
+ "▁starb": 28414,
+ "▁контра": 28415,
+ "▁Мексичка": 28416,
+ "▁запа": 28417,
+ "▁Mountains": 28418,
+ "}}=": 28419,
+ "▁pulling": 28420,
+ "▁satellite": 28421,
+ "▁atoms": 28422,
+ "▁profesor": 28423,
+ "▁repeatedly": 28424,
+ "▁invasion": 28425,
+ "programming": 28426,
+ "├──": 28427,
+ "▁Lip": 28428,
+ "вшие": 28429,
+ "▁keen": 28430,
+ "▁critics": 28431,
+ "▁Nicola": 28432,
+ "▁Cand": 28433,
+ "▁distint": 28434,
+ "▁heading": 28435,
+ "pragma": 28436,
+ "{|": 28437,
+ "ymen": 28438,
+ "▁terrain": 28439,
+ "iedenis": 28440,
+ "▁besonders": 28441,
+ "▁nominated": 28442,
+ "BOOL": 28443,
+ "▁Kay": 28444,
+ "cian": 28445,
+ "stelle": 28446,
+ "▁dispute": 28447,
+ "▁щ": 28448,
+ "DataSet": 28449,
+ "nothing": 28450,
+ "Autom": 28451,
+ "hören": 28452,
+ "▁shed": 28453,
+ "▁paused": 28454,
+ "san": 28455,
+ "▁nunca": 28456,
+ "!(\"": 28457,
+ "▁położ": 28458,
+ "Secret": 28459,
+ "▁Domain": 28460,
+ "▁возмож": 28461,
+ "XV": 28462,
+ "lv": 28463,
+ "ikh": 28464,
+ "▁Sony": 28465,
+ "mq": 28466,
+ "otrop": 28467,
+ "▁Logger": 28468,
+ "▁threat": 28469,
+ "asted": 28470,
+ "зько": 28471,
+ "▁freely": 28472,
+ "▁improvements": 28473,
+ "istema": 28474,
+ "▁illustrate": 28475,
+ "▁tact": 28476,
+ "▁figur": 28477,
+ "ués": 28478,
+ "riminal": 28479,
+ "odon": 28480,
+ "intendo": 28481,
+ "▁influenced": 28482,
+ "FFER": 28483,
+ "▁Ghost": 28484,
+ "▁совер": 28485,
+ "nad": 28486,
+ "ioned": 28487,
+ "▁Events": 28488,
+ "▁wrapping": 28489,
+ "---------+": 28490,
+ "fif": 28491,
+ "▁(**": 28492,
+ "={{": 28493,
+ "маль": 28494,
+ "▁losses": 28495,
+ "▁Galerie": 28496,
+ "tel": 28497,
+ "▁лютого": 28498,
+ "▁Kru": 28499,
+ "▁Polen": 28500,
+ "нім": 28501,
+ "near": 28502,
+ "▁shame": 28503,
+ "▁moyenne": 28504,
+ "▁CP": 28505,
+ "preis": 28506,
+ "▁passenger": 28507,
+ "lek": 28508,
+ "ionales": 28509,
+ "kafka": 28510,
+ "▁participe": 28511,
+ "▁membership": 28512,
+ "[_": 28513,
+ "lando": 28514,
+ "stelling": 28515,
+ "Sem": 28516,
+ "gon": 28517,
+ "▁Correct": 28518,
+ "▁valle": 28519,
+ "▁readily": 28520,
+ "▁Dokument": 28521,
+ "honneur": 28522,
+ "▁testim": 28523,
+ "ulative": 28524,
+ "doFilter": 28525,
+ "▁dominant": 28526,
+ "ammer": 28527,
+ "▁која": 28528,
+ "▁Monsieur": 28529,
+ "zeg": 28530,
+ "▁війни": 28531,
+ "▁Fo": 28532,
+ "▁Amy": 28533,
+ "▁¡": 28534,
+ "▁február": 28535,
+ "▁downloading": 28536,
+ "▁leng": 28537,
+ "\\}$,": 28538,
+ "▁neat": 28539,
+ "▁Cache": 28540,
+ "ICATION": 28541,
+ "▁deve": 28542,
+ "▁sorrow": 28543,
+ "slow": 28544,
+ "▁hinaus": 28545,
+ "▁reconoc": 28546,
+ "▁Linked": 28547,
+ "▁Shaw": 28548,
+ "market": 28549,
+ "▁Dic": 28550,
+ "▁Ski": 28551,
+ "▁delimiter": 28552,
+ "▁MainActivity": 28553,
+ "▁Musical": 28554,
+ "▁Reyn": 28555,
+ "ScrollView": 28556,
+ "▁conventional": 28557,
+ "ença": 28558,
+ "▁refactor": 28559,
+ "'-": 28560,
+ "▁Hed": 28561,
+ "sprech": 28562,
+ "▁athlet": 28563,
+ "▁especies": 28564,
+ "▁Schön": 28565,
+ "▁kleinen": 28566,
+ "шко": 28567,
+ "▁Йо": 28568,
+ "▁Happy": 28569,
+ "multirow": 28570,
+ "▁augusti": 28571,
+ "▁Gand": 28572,
+ "▁appointment": 28573,
+ "▁Mediabestanden": 28574,
+ "Three": 28575,
+ "▁Kenneth": 28576,
+ "NEW": 28577,
+ "▁Notification": 28578,
+ "▁Marx": 28579,
+ "▁insc": 28580,
+ "Mor": 28581,
+ "вый": 28582,
+ "väst": 28583,
+ "vidia": 28584,
+ "▁demonstrated": 28585,
+ "fonts": 28586,
+ "▁kamen": 28587,
+ "▁Ster": 28588,
+ "▁mieszkańców": 28589,
+ "▁Koh": 28590,
+ "~$\\": 28591,
+ "»).": 28592,
+ "rene": 28593,
+ "insic": 28594,
+ "ická": 28595,
+ "xygen": 28596,
+ "▁mn": 28597,
+ "▁sched": 28598,
+ "ASC": 28599,
+ "Ig": 28600,
+ "▁Constant": 28601,
+ "▁opportun": 28602,
+ "▁MyClass": 28603,
+ "sef": 28604,
+ "oped": 28605,
+ "▁injured": 28606,
+ "VIS": 28607,
+ "▁Pero": 28608,
+ "▁Until": 28609,
+ "▁flesh": 28610,
+ "orphism": 28611,
+ "▁Portal": 28612,
+ "▁gminy": 28613,
+ "▁власти": 28614,
+ "▁Nä": 28615,
+ "ктиче": 28616,
+ "▁hrab": 28617,
+ "▁Cub": 28618,
+ "avoir": 28619,
+ "▁Lars": 28620,
+ "▁Бело": 28621,
+ "▁seizoen": 28622,
+ "▁Genomsnitt": 28623,
+ "▁Lil": 28624,
+ "▁Pool": 28625,
+ "▁Dios": 28626,
+ "TX": 28627,
+ "aes": 28628,
+ "autore": 28629,
+ "Alpha": 28630,
+ "states": 28631,
+ "Lab": 28632,
+ "nederbörd": 28633,
+ "erton": 28634,
+ "▁brid": 28635,
+ "▁richt": 28636,
+ "▁Ela": 28637,
+ "▁сла": 28638,
+ "▁weapon": 28639,
+ "▁combatt": 28640,
+ "agar": 28641,
+ "▁regnig": 28642,
+ "▁utilisé": 28643,
+ "▁servir": 28644,
+ "▁brick": 28645,
+ "▁gateway": 28646,
+ "▁torraste": 28647,
+ "▁procedures": 28648,
+ "▁årsnederbörd": 28649,
+ "▁Genomsnittlig": 28650,
+ "чёт": 28651,
+ "▁områ": 28652,
+ "▁regnigaste": 28653,
+ "▁честь": 28654,
+ "▁amid": 28655,
+ "▁grateful": 28656,
+ "▁DIS": 28657,
+ "DAY": 28658,
+ "▁ору": 28659,
+ "▁rivière": 28660,
+ "heure": 28661,
+ "▁Richmond": 28662,
+ "▁Compar": 28663,
+ "▁Нор": 28664,
+ "DOC": 28665,
+ "esia": 28666,
+ "calc": 28667,
+ "▁IU": 28668,
+ "▁vorg": 28669,
+ "▁habían": 28670,
+ "çoit": 28671,
+ "▁arist": 28672,
+ "▁кли": 28673,
+ "▁Sue": 28674,
+ "▁Touch": 28675,
+ "▁Writing": 28676,
+ "ifiable": 28677,
+ "▁wc": 28678,
+ "▁withdraw": 28679,
+ "зар": 28680,
+ "▁presently": 28681,
+ "▁FK": 28682,
+ "▁prakt": 28683,
+ "▁colored": 28684,
+ "usb": 28685,
+ "▁Perú": 28686,
+ "▁plata": 28687,
+ "▁wishes": 28688,
+ "▁кам": 28689,
+ "azar": 28690,
+ "ável": 28691,
+ "▁lamp": 28692,
+ "bishop": 28693,
+ "▁inclusion": 28694,
+ "jq": 28695,
+ "arth": 28696,
+ "▁Flag": 28697,
+ "▁нор": 28698,
+ "ædia": 28699,
+ "UNCTION": 28700,
+ "▁Bahnhof": 28701,
+ "▁approaching": 28702,
+ "▁Gött": 28703,
+ "▁cube": 28704,
+ "▁argued": 28705,
+ "▁Things": 28706,
+ "Gui": 28707,
+ "дови": 28708,
+ "▁recre": 28709,
+ "▁réseau": 28710,
+ "▁significa": 28711,
+ "Git": 28712,
+ "gebracht": 28713,
+ "▁liga": 28714,
+ "▁assured": 28715,
+ "alus": 28716,
+ "рит": 28717,
+ "▁энциклопеди": 28718,
+ "▁%).": 28719,
+ "▁Première": 28720,
+ "▁declarations": 28721,
+ "▁tricky": 28722,
+ "▁profiles": 28723,
+ "▁Fon": 28724,
+ "▁Jas": 28725,
+ "âr": 28726,
+ "babel": 28727,
+ "▁Friday": 28728,
+ "▁június": 28729,
+ "▁cols": 28730,
+ "▁EXISTS": 28731,
+ "▁Italiana": 28732,
+ "▁authorization": 28733,
+ "▁sulle": 28734,
+ "▁Emb": 28735,
+ "▁Variable": 28736,
+ "trees": 28737,
+ "▁Fly": 28738,
+ "riors": 28739,
+ "▁damals": 28740,
+ "▁findet": 28741,
+ "▁Sept": 28742,
+ "▁mundial": 28743,
+ "▁removal": 28744,
+ "▁longitude": 28745,
+ "clic": 28746,
+ "▁fade": 28747,
+ "▁gradle": 28748,
+ "▁zák": 28749,
+ "▁timing": 28750,
+ "trightarrow": 28751,
+ "atia": 28752,
+ "-.": 28753,
+ "uche": 28754,
+ "▁serialize": 28755,
+ "▁Hmm": 28756,
+ "▁Representatives": 28757,
+ "bah": 28758,
+ "rend": 28759,
+ "assador": 28760,
+ "▁shield": 28761,
+ "ucion": 28762,
+ "▁américaine": 28763,
+ "zę": 28764,
+ "villa": 28765,
+ "▁hombre": 28766,
+ "áss": 28767,
+ "▁SF": 28768,
+ "▁repeating": 28769,
+ "▁criter": 28770,
+ "▁Struct": 28771,
+ "???": 28772,
+ "▁cheap": 28773,
+ "▁rings": 28774,
+ "abhäng": 28775,
+ "▁corte": 28776,
+ "▁administ": 28777,
+ "ixon": 28778,
+ "gypt": 28779,
+ "▁puntos": 28780,
+ "▁mezi": 28781,
+ "▁pochod": 28782,
+ "isko": 28783,
+ "nię": 28784,
+ "▁осу": 28785,
+ "▁ár": 28786,
+ "тельной": 28787,
+ "▁Metropolitan": 28788,
+ "jin": 28789,
+ "zess": 28790,
+ "▁віці": 28791,
+ "▁conflicts": 28792,
+ "ijst": 28793,
+ "▁Market": 28794,
+ "стров": 28795,
+ "▁\",\"": 28796,
+ "▁Scroll": 28797,
+ "gun": 28798,
+ "тара": 28799,
+ "▁amateur": 28800,
+ "▁róż": 28801,
+ "poss": 28802,
+ "▁generalized": 28803,
+ "▁Harm": 28804,
+ "cita": 28805,
+ "▁Switzerland": 28806,
+ "icola": 28807,
+ "▁muit": 28808,
+ "located": 28809,
+ "▁có": 28810,
+ "▁arose": 28811,
+ "▁communauté": 28812,
+ "})^": 28813,
+ "visibility": 28814,
+ "ída": 28815,
+ "▁FB": 28816,
+ "▁Freund": 28817,
+ "gat": 28818,
+ "\":{\"": 28819,
+ "intellij": 28820,
+ "ifie": 28821,
+ "hmen": 28822,
+ "▁édition": 28823,
+ "▁које": 28824,
+ "▁інших": 28825,
+ "oming": 28826,
+ "▁arquitect": 28827,
+ "▁Presidente": 28828,
+ "▁Під": 28829,
+ "▁cabin": 28830,
+ "Theorem": 28831,
+ "▁Gay": 28832,
+ "ifice": 28833,
+ "▁hect": 28834,
+ "lą": 28835,
+ "irmingham": 28836,
+ "▁semantic": 28837,
+ "▁Louisiana": 28838,
+ "▁sacrifice": 28839,
+ "▁Christoph": 28840,
+ "▁Executive": 28841,
+ "_+": 28842,
+ "ják": 28843,
+ "▁seria": 28844,
+ "▁Overflow": 28845,
+ "▁Lucy": 28846,
+ "▁melhor": 28847,
+ "▁voices": 28848,
+ "cza": 28849,
+ "▁капи": 28850,
+ "▁университета": 28851,
+ "INCT": 28852,
+ "▁coloc": 28853,
+ "▁prue": 28854,
+ "▁geomet": 28855,
+ "▁diretto": 28856,
+ "reso": 28857,
+ "▁Akt": 28858,
+ "▁unh": 28859,
+ "▁сери": 28860,
+ "▁Alert": 28861,
+ "Wel": 28862,
+ "audi": 28863,
+ "äler": 28864,
+ "▁guests": 28865,
+ "▁иде": 28866,
+ "Studio": 28867,
+ "▁кате": 28868,
+ "▁exponent": 28869,
+ "rze": 28870,
+ "pmod": 28871,
+ "rolle": 28872,
+ "▁Limited": 28873,
+ "Allemagne": 28874,
+ "▁pity": 28875,
+ "▁lä": 28876,
+ "▁runner": 28877,
+ "kende": 28878,
+ "EQ": 28879,
+ "▁MM": 28880,
+ "szág": 28881,
+ "поді": 28882,
+ "▁regret": 28883,
+ "▁publié": 28884,
+ "▁departamento": 28885,
+ "▁accused": 28886,
+ "hp": 28887,
+ "▁Pfl": 28888,
+ "▁Sint": 28889,
+ "▁ekonom": 28890,
+ "ractor": 28891,
+ "▁Пів": 28892,
+ "▁awful": 28893,
+ "ować": 28894,
+ "]->": 28895,
+ "▁Fine": 28896,
+ "Са": 28897,
+ "tis": 28898,
+ "éta": 28899,
+ "▁Роди": 28900,
+ "▁Düsseldorf": 28901,
+ "LOB": 28902,
+ "osas": 28903,
+ "werke": 28904,
+ "▁lance": 28905,
+ "▁листопада": 28906,
+ "▁incomplete": 28907,
+ "▁Picture": 28908,
+ "('\\": 28909,
+ "esters": 28910,
+ "▁belonged": 28911,
+ "▁Sank": 28912,
+ "ammed": 28913,
+ "▁repositories": 28914,
+ "▁addr": 28915,
+ "Collect": 28916,
+ "Hot": 28917,
+ "▁tyl": 28918,
+ "▁instanceof": 28919,
+ "▁bonus": 28920,
+ "ový": 28921,
+ "▁моря": 28922,
+ "▁interactive": 28923,
+ "▁Mys": 28924,
+ "▁Edmund": 28925,
+ "fileName": 28926,
+ "emor": 28927,
+ "▁Три": 28928,
+ "▁Rosen": 28929,
+ "▁Prima": 28930,
+ "▁voting": 28931,
+ "▁XP": 28932,
+ "▁Zero": 28933,
+ "▁Led": 28934,
+ "amsung": 28935,
+ "▁enables": 28936,
+ "▁redirects": 28937,
+ "AST": 28938,
+ "Paint": 28939,
+ "acker": 28940,
+ "lecht": 28941,
+ "▁chairman": 28942,
+ "▁Aven": 28943,
+ "▁Sach": 28944,
+ "(\"<": 28945,
+ "кер": 28946,
+ "▁mistakes": 28947,
+ "▁Weit": 28948,
+ "▁prowad": 28949,
+ "▁didnt": 28950,
+ "énario": 28951,
+ "unless": 28952,
+ "▁backwards": 28953,
+ "boa": 28954,
+ "duino": 28955,
+ "```": 28956,
+ "stor": 28957,
+ "Completion": 28958,
+ "puesta": 28959,
+ "▁dinast": 28960,
+ "últ": 28961,
+ "▁SY": 28962,
+ "ifolia": 28963,
+ "œuvres": 28964,
+ "▁racing": 28965,
+ "▁cabinet": 28966,
+ "▁cutting": 28967,
+ "▁thumb": 28968,
+ "▁Кара": 28969,
+ "highlight": 28970,
+ "куп": 28971,
+ "▁sd": 28972,
+ "▁національ": 28973,
+ "▁campagne": 28974,
+ "▁registers": 28975,
+ "▁educational": 28976,
+ "▁pesar": 28977,
+ "üge": 28978,
+ "▁oro": 28979,
+ "burgo": 28980,
+ "▁Athletics": 28981,
+ "▁MTV": 28982,
+ "getMessage": 28983,
+ "▁Hyp": 28984,
+ "▁victim": 28985,
+ "))\\": 28986,
+ "▁drums": 28987,
+ "hostname": 28988,
+ "tał": 28989,
+ "making": 28990,
+ "▁powiat": 28991,
+ "őd": 28992,
+ "threads": 28993,
+ "▁absolv": 28994,
+ "▁люди": 28995,
+ "▁stepped": 28996,
+ "exist": 28997,
+ "▁NK": 28998,
+ "▁ves": 28999,
+ "istiche": 29000,
+ "%'": 29001,
+ "ativos": 29002,
+ "▁такой": 29003,
+ "▁MongoDB": 29004,
+ "▁Ung": 29005,
+ "▁Рус": 29006,
+ "▁elim": 29007,
+ "▁Fif": 29008,
+ "icación": 29009,
+ "▁Tennis": 29010,
+ "▁Jefferson": 29011,
+ "ján": 29012,
+ "fog": 29013,
+ "anha": 29014,
+ "zor": 29015,
+ "▁університе": 29016,
+ "ahu": 29017,
+ "iada": 29018,
+ "Sdk": 29019,
+ "Setting": 29020,
+ "▁Kill": 29021,
+ "▁Wend": 29022,
+ "▁bald": 29023,
+ "▁Kub": 29024,
+ "▁visto": 29025,
+ "▁jeunes": 29026,
+ "collections": 29027,
+ "ací": 29028,
+ "вропей": 29029,
+ "▁arise": 29030,
+ "оні": 29031,
+ "MAIN": 29032,
+ "доступ": 29033,
+ "▁berg": 29034,
+ "▁criticism": 29035,
+ "▁Torre": 29036,
+ "▁descript": 29037,
+ "ières": 29038,
+ "▁estudio": 29039,
+ "▁ili": 29040,
+ "▁militare": 29041,
+ "▁Clara": 29042,
+ "▁Ellen": 29043,
+ "limited": 29044,
+ "лм": 29045,
+ "▁Españ": 29046,
+ "▁infinitely": 29047,
+ "America": 29048,
+ "ouc": 29049,
+ "glass": 29050,
+ "▁rud": 29051,
+ "▁zat": 29052,
+ "▁rin": 29053,
+ "▁Bibliografía": 29054,
+ "▁merchant": 29055,
+ "tensorflow": 29056,
+ "▁dér": 29057,
+ "▁ActiveRecord": 29058,
+ "IES": 29059,
+ "▁linker": 29060,
+ "▁estudios": 29061,
+ "cdnjs": 29062,
+ "▁Государ": 29063,
+ "ánchez": 29064,
+ "appe": 29065,
+ "club": 29066,
+ "▁další": 29067,
+ "▁Algorithm": 29068,
+ "dfs": 29069,
+ "▁Bac": 29070,
+ "▁кафе": 29071,
+ "▁&=\\": 29072,
+ "▁ат": 29073,
+ "▁Глав": 29074,
+ "▁Mou": 29075,
+ "Machine": 29076,
+ "(...)": 29077,
+ "▁compart": 29078,
+ "▁augusztus": 29079,
+ "avan": 29080,
+ "▁rolled": 29081,
+ "▁еди": 29082,
+ "Scan": 29083,
+ "▁регі": 29084,
+ "▁świata": 29085,
+ "▁mines": 29086,
+ "},{": 29087,
+ "▁Tier": 29088,
+ "Cannot": 29089,
+ "мін": 29090,
+ "▁NEW": 29091,
+ "▁Вол": 29092,
+ "▁Manh": 29093,
+ "▁Gregory": 29094,
+ "▁principe": 29095,
+ "ISO": 29096,
+ "prog": 29097,
+ "▁Fail": 29098,
+ "▁aa": 29099,
+ "▁fecha": 29100,
+ "▁WCF": 29101,
+ "▁magistr": 29102,
+ "▁Zach": 29103,
+ "▁unicode": 29104,
+ "▁converter": 29105,
+ "▁dispers": 29106,
+ "ksam": 29107,
+ "▁Uncle": 29108,
+ "PropertyChanged": 29109,
+ "▁lider": 29110,
+ "▁opts": 29111,
+ "▁там": 29112,
+ "locked": 29113,
+ "zak": 29114,
+ "▁counted": 29115,
+ "▁persone": 29116,
+ "▁hurried": 29117,
+ "ätter": 29118,
+ "▁outras": 29119,
+ "▁genu": 29120,
+ "BD": 29121,
+ "veg": 29122,
+ "due": 29123,
+ "▁Pract": 29124,
+ "▁posible": 29125,
+ "▁contribute": 29126,
+ "UMN": 29127,
+ "▁Bürger": 29128,
+ "▁wars": 29129,
+ "▁exhibition": 29130,
+ "hill": 29131,
+ "▁astr": 29132,
+ "▁музе": 29133,
+ "▁CASE": 29134,
+ "manifest": 29135,
+ "yellow": 29136,
+ "Fn": 29137,
+ "▁RC": 29138,
+ "▁sott": 29139,
+ "▁sujet": 29140,
+ "▁Socket": 29141,
+ "▁Chine": 29142,
+ "▁frameworks": 29143,
+ "Hold": 29144,
+ "êts": 29145,
+ "▁філь": 29146,
+ "Loaded": 29147,
+ "ophe": 29148,
+ "texte": 29149,
+ "▁expres": 29150,
+ "▁consume": 29151,
+ "▁Richtung": 29152,
+ "ografi": 29153,
+ "▁magnific": 29154,
+ "àt": 29155,
+ "▁indul": 29156,
+ "ryty": 29157,
+ "▁offici": 29158,
+ "▁assault": 29159,
+ "rund": 29160,
+ "▁variants": 29161,
+ "▁сельсов": 29162,
+ "▁excitement": 29163,
+ "Times": 29164,
+ "kotlin": 29165,
+ "▁gering": 29166,
+ "▁Engel": 29167,
+ "▁Timer": 29168,
+ "²).": 29169,
+ "▁Ng": 29170,
+ "ässt": 29171,
+ "schau": 29172,
+ "SError": 29173,
+ "▁Edwards": 29174,
+ "▁Terminal": 29175,
+ "lict": 29176,
+ "Under": 29177,
+ "▁spawn": 29178,
+ "ürgen": 29179,
+ "▁Außerdem": 29180,
+ "▁kitchen": 29181,
+ "fahrt": 29182,
+ "▁Colors": 29183,
+ "▁система": 29184,
+ "▁terminated": 29185,
+ "▁LaTeX": 29186,
+ "igkeiten": 29187,
+ "▁mesure": 29188,
+ "▁Amts": 29189,
+ "▁empir": 29190,
+ "▁striking": 29191,
+ "▁exclusive": 29192,
+ "тех": 29193,
+ "▁rez": 29194,
+ "▁quan": 29195,
+ "▁Glasgow": 29196,
+ "▁lecture": 29197,
+ "▁Testament": 29198,
+ "▁funds": 29199,
+ "▁stessa": 29200,
+ "▁tribes": 29201,
+ "▁parfois": 29202,
+ "▁treball": 29203,
+ "nitz": 29204,
+ "bove": 29205,
+ "▁заслу": 29206,
+ "▁absent": 29207,
+ "▁Lauf": 29208,
+ "Smith": 29209,
+ "▁Николай": 29210,
+ "▁européenne": 29211,
+ "lr": 29212,
+ "▁programma": 29213,
+ "▁midst": 29214,
+ "▁daughters": 29215,
+ "Syn": 29216,
+ "oben": 29217,
+ "ână": 29218,
+ "idan": 29219,
+ "▁ther": 29220,
+ "odore": 29221,
+ "sdl": 29222,
+ "▁Quint": 29223,
+ "▁casos": 29224,
+ "▁Zam": 29225,
+ "▁страны": 29226,
+ "▁sprite": 29227,
+ "кал": 29228,
+ "▁nasc": 29229,
+ "▁сотруд": 29230,
+ "▁trava": 29231,
+ "▁хозяй": 29232,
+ "▁Uruguay": 29233,
+ "▁sparse": 29234,
+ "▁поле": 29235,
+ "▁mystery": 29236,
+ "▁Mang": 29237,
+ "registr": 29238,
+ "▁CGFloat": 29239,
+ "▁submission": 29240,
+ "вана": 29241,
+ "▁\":": 29242,
+ "▁Traceback": 29243,
+ "▁Pit": 29244,
+ "▁Ehr": 29245,
+ "▁сра": 29246,
+ "▁Graphics": 29247,
+ "Updated": 29248,
+ "▁svensk": 29249,
+ "▁spacing": 29250,
+ "tritt": 29251,
+ "▁Guinea": 29252,
+ "▁França": 29253,
+ "Associ": 29254,
+ "▁Tová": 29255,
+ "stab": 29256,
+ "▁Learning": 29257,
+ "▁Bright": 29258,
+ "śc": 29259,
+ "▁idő": 29260,
+ "}}_{\\": 29261,
+ "▁droite": 29262,
+ "▁raising": 29263,
+ "getting": 29264,
+ "ythm": 29265,
+ "onyme": 29266,
+ "żs": 29267,
+ "▁blah": 29268,
+ "TagName": 29269,
+ "Vertical": 29270,
+ "▁aper": 29271,
+ "postgresql": 29272,
+ "▁Handle": 29273,
+ "zew": 29274,
+ "▁skulle": 29275,
+ "▁opere": 29276,
+ "layers": 29277,
+ "▁possono": 29278,
+ "▁relate": 29279,
+ "ąc": 29280,
+ "▁Mih": 29281,
+ "âge": 29282,
+ "▁Świ": 29283,
+ "isses": 29284,
+ "▁servlet": 29285,
+ "Los": 29286,
+ "▁Advanced": 29287,
+ "atica": 29288,
+ "▁ced": 29289,
+ "▁elementos": 29290,
+ "рона": 29291,
+ "iks": 29292,
+ "arf": 29293,
+ "ariat": 29294,
+ "Mobile": 29295,
+ "agua": 29296,
+ "▁timp": 29297,
+ "▁Comité": 29298,
+ "▁combining": 29299,
+ "wohl": 29300,
+ "▁Study": 29301,
+ "coordinate": 29302,
+ "▁recommendation": 29303,
+ "▁transformations": 29304,
+ "until": 29305,
+ "bounded": 29306,
+ "▁изу": 29307,
+ "hanced": 29308,
+ "▁вопро": 29309,
+ "▁Prés": 29310,
+ "▁coord": 29311,
+ "xty": 29312,
+ "▁$,": 29313,
+ "▁champions": 29314,
+ "Den": 29315,
+ "Mil": 29316,
+ "(',": 29317,
+ "▁Preis": 29318,
+ "▁eigh": 29319,
+ "▁markers": 29320,
+ "▁gewesen": 29321,
+ "ätten": 29322,
+ "▁pione": 29323,
+ "mv": 29324,
+ "▁ју": 29325,
+ "zeichnis": 29326,
+ "hoff": 29327,
+ "News": 29328,
+ "▁Stanisław": 29329,
+ "▁Brandenburg": 29330,
+ "▁Feuer": 29331,
+ "=&": 29332,
+ "жет": 29333,
+ "▁Neil": 29334,
+ "▁wirk": 29335,
+ "▁società": 29336,
+ "▁spare": 29337,
+ "▁civile": 29338,
+ "sprach": 29339,
+ "▁disse": 29340,
+ "▁gates": 29341,
+ "▁anom": 29342,
+ "▁Федерации": 29343,
+ "▁tib": 29344,
+ "▁fútbol": 29345,
+ "▁Wikiped": 29346,
+ "iate": 29347,
+ "Front": 29348,
+ "▁craw": 29349,
+ "▁Rak": 29350,
+ "▁зву": 29351,
+ "street": 29352,
+ "▁Agency": 29353,
+ "вало": 29354,
+ "▁Рас": 29355,
+ "▁mkdir": 29356,
+ "ację": 29357,
+ "▁shares": 29358,
+ "Story": 29359,
+ "▁remarks": 29360,
+ "▁keywords": 29361,
+ "Bob": 29362,
+ "▁toe": 29363,
+ "▁Vitt": 29364,
+ "▁rhs": 29365,
+ "ROP": 29366,
+ "oris": 29367,
+ "/@": 29368,
+ "сии": 29369,
+ "▁traverse": 29370,
+ "▁referencing": 29371,
+ "präsident": 29372,
+ "rong": 29373,
+ "'):": 29374,
+ "aties": 29375,
+ "AW": 29376,
+ "Outlet": 29377,
+ "▁évol": 29378,
+ "ikes": 29379,
+ "▁environmental": 29380,
+ "icum": 29381,
+ "▁Lied": 29382,
+ "▁warn": 29383,
+ "▁Butler": 29384,
+ "▁%),": 29385,
+ "▁Zeitschrift": 29386,
+ "▁Montr": 29387,
+ "важа": 29388,
+ "▁Mercur": 29389,
+ "jekte": 29390,
+ "meter": 29391,
+ "ducation": 29392,
+ "▁attributed": 29393,
+ "*$": 29394,
+ "▁unf": 29395,
+ "▁Vertrag": 29396,
+ "zien": 29397,
+ "▁Роб": 29398,
+ "lices": 29399,
+ "pply": 29400,
+ "ansen": 29401,
+ "▁zeit": 29402,
+ "▁immense": 29403,
+ "▁lutego": 29404,
+ "▁Bulgar": 29405,
+ "▁miembros": 29406,
+ "▁Националь": 29407,
+ "▁Allow": 29408,
+ "▁anglès": 29409,
+ "дви": 29410,
+ "▁Toy": 29411,
+ "туа": 29412,
+ "▁yard": 29413,
+ "(%": 29414,
+ "isser": 29415,
+ "▁golf": 29416,
+ "▁Ukrain": 29417,
+ "▁hosp": 29418,
+ "Include": 29419,
+ "▁Lisa": 29420,
+ "▁csal": 29421,
+ "▁Mira": 29422,
+ "recogn": 29423,
+ "▁Ке": 29424,
+ "▁hitting": 29425,
+ "кономі": 29426,
+ "▁Tournament": 29427,
+ "LOAD": 29428,
+ "▁Guardian": 29429,
+ "▁daher": 29430,
+ "▁timezone": 29431,
+ "▁tomcat": 29432,
+ "▁successor": 29433,
+ "▁Void": 29434,
+ "▁começ": 29435,
+ "▁converts": 29436,
+ "ächs": 29437,
+ "osex": 29438,
+ "xelles": 29439,
+ "aser": 29440,
+ "▁És": 29441,
+ "▁mou": 29442,
+ "▁ung": 29443,
+ "▁origen": 29444,
+ "▁Crow": 29445,
+ "▁Erd": 29446,
+ "▁sieben": 29447,
+ "lua": 29448,
+ "▁BB": 29449,
+ "RENT": 29450,
+ "▁piłkar": 29451,
+ "▁marque": 29452,
+ "▁Labour": 29453,
+ "viders": 29454,
+ "▁exempl": 29455,
+ "Sound": 29456,
+ "▁Wass": 29457,
+ "arrison": 29458,
+ "▁течение": 29459,
+ "▁Oficina": 29460,
+ "▁Daw": 29461,
+ "▁Kauf": 29462,
+ "ént": 29463,
+ "éső": 29464,
+ "▁=\"": 29465,
+ "▁kat": 29466,
+ "diction": 29467,
+ "▁Voll": 29468,
+ "▁highway": 29469,
+ "James": 29470,
+ "zeuge": 29471,
+ "▁modelo": 29472,
+ "Throw": 29473,
+ "▁Forum": 29474,
+ "(\"@": 29475,
+ "▁enfer": 29476,
+ "▁специаль": 29477,
+ "Numbers": 29478,
+ "▁Binary": 29479,
+ "▁Martínez": 29480,
+ "▁Stato": 29481,
+ "▁festiv": 29482,
+ "▁katol": 29483,
+ "▁Аб": 29484,
+ "▁limitation": 29485,
+ "▁STR": 29486,
+ "▁Официаль": 29487,
+ "ipes": 29488,
+ "▁Isn": 29489,
+ "▁ruled": 29490,
+ "▁cí": 29491,
+ "geber": 29492,
+ "▁lavoro": 29493,
+ "▁parentheses": 29494,
+ "оз": 29495,
+ "▁équipes": 29496,
+ "▁efficiently": 29497,
+ "▁Period": 29498,
+ "▁Regarding": 29499,
+ "leaf": 29500,
+ "▁similarity": 29501,
+ "▁gesture": 29502,
+ "datab": 29503,
+ "▁terminate": 29504,
+ "▁semantics": 29505,
+ "▁Alo": 29506,
+ "▁cig": 29507,
+ "▁OpenGL": 29508,
+ "▁heutigen": 29509,
+ "xaml": 29510,
+ "▁frequencies": 29511,
+ ")}.": 29512,
+ "▁threatened": 29513,
+ "тик": 29514,
+ "▁calcio": 29515,
+ "▁Riemann": 29516,
+ "slug": 29517,
+ "▁Finale": 29518,
+ "LR": 29519,
+ "▁Derby": 29520,
+ "▁още": 29521,
+ "▁deviation": 29522,
+ "ächen": 29523,
+ "▁Cris": 29524,
+ "ново": 29525,
+ "▁столі": 29526,
+ "▁relev": 29527,
+ "▁splendid": 29528,
+ "▁учё": 29529,
+ "erving": 29530,
+ "gable": 29531,
+ "▁générale": 29532,
+ "pom": 29533,
+ "▁Cheers": 29534,
+ "▁imprison": 29535,
+ "▁indent": 29536,
+ "▁analyz": 29537,
+ "▁revert": 29538,
+ "érer": 29539,
+ "▁phases": 29540,
+ "FirstName": 29541,
+ "▁mig": 29542,
+ "▁disturb": 29543,
+ "▁mixture": 29544,
+ "▁){": 29545,
+ "inture": 29546,
+ "▁Tried": 29547,
+ "▁sooner": 29548,
+ "▁pels": 29549,
+ "▁établ": 29550,
+ "etro": 29551,
+ "itie": 29552,
+ "▁quartier": 29553,
+ "▁гово": 29554,
+ "▁város": 29555,
+ "ufe": 29556,
+ "heten": 29557,
+ "хом": 29558,
+ "▁soap": 29559,
+ "utors": 29560,
+ "▁duch": 29561,
+ "syntax": 29562,
+ "▁tribe": 29563,
+ "▁chante": 29564,
+ "Tri": 29565,
+ "▁Mate": 29566,
+ "quality": 29567,
+ "uola": 29568,
+ "=\".": 29569,
+ "chk": 29570,
+ "▁всі": 29571,
+ "▁przeci": 29572,
+ "▁Meteor": 29573,
+ "▁scattered": 29574,
+ "Plus": 29575,
+ "trad": 29576,
+ "▁stackoverflow": 29577,
+ "▁retra": 29578,
+ "▁éditions": 29579,
+ "▁sain": 29580,
+ "cribe": 29581,
+ "ignon": 29582,
+ "ucker": 29583,
+ "▁мало": 29584,
+ "▁tenir": 29585,
+ "▁exports": 29586,
+ "▁auxili": 29587,
+ "▁]]": 29588,
+ "▁CBS": 29589,
+ "uniform": 29590,
+ "▁periodic": 29591,
+ "agrant": 29592,
+ "▁emple": 29593,
+ "Wil": 29594,
+ "▁fres": 29595,
+ "▁strutt": 29596,
+ "▁світ": 29597,
+ "▁betre": 29598,
+ "▁объек": 29599,
+ "тися": 29600,
+ "▁bisher": 29601,
+ "baum": 29602,
+ "ishi": 29603,
+ "▁Gazette": 29604,
+ "backgroundColor": 29605,
+ "jl": 29606,
+ "▁fiel": 29607,
+ "▁према": 29608,
+ "▁protagonista": 29609,
+ "▁Muhammad": 29610,
+ "▁simulate": 29611,
+ "▁Hook": 29612,
+ "fest": 29613,
+ "▁своих": 29614,
+ "Sender": 29615,
+ "▁listened": 29616,
+ "жі": 29617,
+ "jest": 29618,
+ "kord": 29619,
+ "Choice": 29620,
+ "▁hoofd": 29621,
+ "reducible": 29622,
+ "hpp": 29623,
+ "▁Wu": 29624,
+ "ši": 29625,
+ "▁Marse": 29626,
+ "▁soir": 29627,
+ "westen": 29628,
+ "emos": 29629,
+ "▁Duc": 29630,
+ "▁amerik": 29631,
+ "|}{": 29632,
+ "▁Gul": 29633,
+ "▁Sprache": 29634,
+ "▁mismatch": 29635,
+ "Scal": 29636,
+ "Pixel": 29637,
+ "EF": 29638,
+ "▁Sep": 29639,
+ "▁powiecie": 29640,
+ "urk": 29641,
+ "▁Napoli": 29642,
+ "▁neighbourhood": 29643,
+ "стоян": 29644,
+ "▁searches": 29645,
+ "yrus": 29646,
+ "пет": 29647,
+ "Help": 29648,
+ "pont": 29649,
+ "▁Orient": 29650,
+ "▁Alfonso": 29651,
+ "▁monitoring": 29652,
+ "iao": 29653,
+ "édé": 29654,
+ "▁César": 29655,
+ "шее": 29656,
+ "Shift": 29657,
+ "suit": 29658,
+ "coded": 29659,
+ "ното": 29660,
+ "▁Parti": 29661,
+ "▁lasci": 29662,
+ "▁awesome": 29663,
+ "usta": 29664,
+ "▁Сове": 29665,
+ "▁Fland": 29666,
+ "oom": 29667,
+ "▁devi": 29668,
+ "engelsk": 29669,
+ "endum": 29670,
+ "▁Pascal": 29671,
+ "▁Bind": 29672,
+ "▁siguientes": 29673,
+ "JB": 29674,
+ "▁Petersburg": 29675,
+ "▁incorrectly": 29676,
+ "▁Bash": 29677,
+ "▁pelos": 29678,
+ "▁zespo": 29679,
+ "NSURL": 29680,
+ "▁přek": 29681,
+ "▁Crime": 29682,
+ "nach": 29683,
+ "▁thrust": 29684,
+ "▁Cultura": 29685,
+ "WF": 29686,
+ "▁Solo": 29687,
+ "▁invas": 29688,
+ "▁individually": 29689,
+ "ibm": 29690,
+ "▁etapa": 29691,
+ "▁handed": 29692,
+ "▁wherever": 29693,
+ "▁interpolation": 29694,
+ "▁musée": 29695,
+ "▁CNN": 29696,
+ "idia": 29697,
+ "ństw": 29698,
+ "▁przew": 29699,
+ "ughing": 29700,
+ "▁actors": 29701,
+ "▁Oriental": 29702,
+ "▁convenience": 29703,
+ "▁miasta": 29704,
+ "brains": 29705,
+ "▁меся": 29706,
+ "▁infatti": 29707,
+ "▁AllMovie": 29708,
+ "▁critique": 29709,
+ "▁successo": 29710,
+ "ancouver": 29711,
+ "▁fá": 29712,
+ "ългар": 29713,
+ "▁wisdom": 29714,
+ "▁Phoenix": 29715,
+ "hole": 29716,
+ "▁información": 29717,
+ "▁Airlines": 29718,
+ ".«": 29719,
+ "mort": 29720,
+ "userId": 29721,
+ "▁*/\r": 29722,
+ "▁Congo": 29723,
+ "▁\"`": 29724,
+ "corr": 29725,
+ "▁problemas": 29726,
+ "▁bib": 29727,
+ "▁później": 29728,
+ "▁fileName": 29729,
+ "zott": 29730,
+ "macht": 29731,
+ "▁Ulrich": 29732,
+ "Cy": 29733,
+ "endpoint": 29734,
+ "▁sheep": 29735,
+ "▁ibn": 29736,
+ "Feed": 29737,
+ "▁sympathy": 29738,
+ "▁Ib": 29739,
+ "▁territorial": 29740,
+ "rating": 29741,
+ "дами": 29742,
+ "▁dst": 29743,
+ "ую": 29744,
+ "aho": 29745,
+ "▁sug": 29746,
+ "emia": 29747,
+ "▁ted": 29748,
+ "▁Api": 29749,
+ "▁Rica": 29750,
+ "▁MR": 29751,
+ "ńskim": 29752,
+ "▁Voor": 29753,
+ "▁devil": 29754,
+ "▁Фо": 29755,
+ "▁När": 29756,
+ "▁...)": 29757,
+ "▁vois": 29758,
+ "▁abbre": 29759,
+ "▁Männer": 29760,
+ "ximo": 29761,
+ "▁intellectual": 29762,
+ "▁tales": 29763,
+ "similar": 29764,
+ "neum": 29765,
+ "▁Orig": 29766,
+ "▁postal": 29767,
+ "▁hvor": 29768,
+ "▁identification": 29769,
+ "▁Од": 29770,
+ "uesto": 29771,
+ "▁../": 29772,
+ "▁bir": 29773,
+ "▁Лон": 29774,
+ "▁esempio": 29775,
+ "▁Eing": 29776,
+ "Expand": 29777,
+ "▁PRIMARY": 29778,
+ "▁Jin": 29779,
+ "▁však": 29780,
+ "ourses": 29781,
+ "▁Betty": 29782,
+ "▁WM": 29783,
+ "▁flask": 29784,
+ "hlen": 29785,
+ "▁Adel": 29786,
+ "laravel": 29787,
+ "▁дет": 29788,
+ "ською": 29789,
+ "▁Mundo": 29790,
+ "iczn": 29791,
+ "ifié": 29792,
+ "▁Мор": 29793,
+ "▁древ": 29794,
+ "DateFormat": 29795,
+ "ським": 29796,
+ "▁dated": 29797,
+ "коли": 29798,
+ "▁результате": 29799,
+ "\\).": 29800,
+ "▁delayed": 29801,
+ "sound": 29802,
+ "▁Мак": 29803,
+ "▁\"...": 29804,
+ "▁binnen": 29805,
+ "▁факуль": 29806,
+ "▁polygon": 29807,
+ "▁eggs": 29808,
+ "AtIndexPath": 29809,
+ "менталь": 29810,
+ "▁incred": 29811,
+ "chunk": 29812,
+ "webdriver": 29813,
+ "▁свобо": 29814,
+ "▁między": 29815,
+ "Received": 29816,
+ "▁Monde": 29817,
+ "▁JQuery": 29818,
+ "Butt": 29819,
+ "▁PDO": 29820,
+ "▁forec": 29821,
+ "▁discipline": 29822,
+ "chev": 29823,
+ "нат": 29824,
+ "▁redis": 29825,
+ "▁hunting": 29826,
+ "▁alk": 29827,
+ "▁proofs": 29828,
+ "PRI": 29829,
+ "▁chip": 29830,
+ "ésie": 29831,
+ "▁HO": 29832,
+ "▁rug": 29833,
+ "zos": 29834,
+ "▁sorte": 29835,
+ "▁zeigt": 29836,
+ "▁Physics": 29837,
+ "legte": 29838,
+ "▁proportional": 29839,
+ "▁toolbar": 29840,
+ "vement": 29841,
+ "notin": 29842,
+ "▁první": 29843,
+ "blah": 29844,
+ "▁présence": 29845,
+ "▁lloc": 29846,
+ "▁líder": 29847,
+ "▁Accept": 29848,
+ "▁Always": 29849,
+ "▁\"{": 29850,
+ "▁diversi": 29851,
+ "ikor": 29852,
+ "Period": 29853,
+ "жён": 29854,
+ "▁Alliance": 29855,
+ "▁relay": 29856,
+ "Bro": 29857,
+ "jön": 29858,
+ "▁Baud": 29859,
+ "▁Bian": 29860,
+ "')[": 29861,
+ "чив": 29862,
+ "▁Poss": 29863,
+ "▁Mitglieder": 29864,
+ "▁nev": 29865,
+ "Daniel": 29866,
+ "▁tends": 29867,
+ "▁compagnie": 29868,
+ "▁livres": 29869,
+ "lub": 29870,
+ "▁": 29871,
+ "e": 29872,
+ "t": 29873,
+ "a": 29874,
+ "i": 29875,
+ "n": 29876,
+ "o": 29877,
+ "r": 29878,
+ "s": 29879,
+ "l": 29880,
+ "d": 29881,
+ "h": 29882,
+ "c": 29883,
+ "u": 29884,
+ "m": 29885,
+ "p": 29886,
+ "g": 29887,
+ "f": 29888,
+ ".": 29889,
+ "b": 29890,
+ "y": 29891,
+ ",": 29892,
+ "w": 29893,
+ "v": 29894,
+ "k": 29895,
+ "1": 29896,
+ ")": 29897,
+ "(": 29898,
+ "-": 29899,
+ "0": 29900,
+ ":": 29901,
+ "I": 29902,
+ "S": 29903,
+ "о": 29904,
+ "\\": 29905,
+ "2": 29906,
+ "C": 29907,
+ "\"": 29908,
+ "A": 29909,
+ "а": 29910,
+ "T": 29911,
+ "{": 29912,
+ "}": 29913,
+ "/": 29914,
+ "'": 29915,
+ "x": 29916,
+ "и": 29917,
+ "_": 29918,
+ "е": 29919,
+ "z": 29920,
+ "н": 29921,
+ "=": 29922,
+ "E": 29923,
+ "M": 29924,
+ "P": 29925,
+ "j": 29926,
+ "р": 29927,
+ "D": 29928,
+ "9": 29929,
+ "*": 29930,
+ "L": 29931,
+ "т": 29932,
+ "B": 29933,
+ "R": 29934,
+ "с": 29935,
+ ";": 29936,
+ "#": 29937,
+ "$": 29938,
+ "q": 29939,
+ "N": 29940,
+ "3": 29941,
+ "в": 29942,
+ "F": 29943,
+ "л": 29944,
+ "5": 29945,
+ "4": 29946,
+ "8": 29947,
+ "é": 29948,
+ "O": 29949,
+ "H": 29950,
+ "к": 29951,
+ "`": 29952,
+ "6": 29953,
+ "G": 29954,
+ "7": 29955,
+ "W": 29956,
+ "д": 29957,
+ ">": 29958,
+ "м": 29959,
+ "у": 29960,
+ "[": 29961,
+ "]": 29962,
+ "V": 29963,
+ "п": 29964,
+ "U": 29965,
+ "<": 29966,
+ "J": 29967,
+ "K": 29968,
+ "г": 29969,
+ "я": 29970,
+ "і": 29971,
+ "з": 29972,
+ "?": 29973,
+ "+": 29974,
+ "б": 29975,
+ "á": 29976,
+ "й": 29977,
+ "ь": 29978,
+ "Y": 29979,
+ "ó": 29980,
+ "ч": 29981,
+ "ы": 29982,
+ "í": 29983,
+ "Q": 29984,
+ "^": 29985,
+ "ä": 29986,
+ "&": 29987,
+ "х": 29988,
+ "|": 29989,
+ "X": 29990,
+ "!": 29991,
+ "@": 29992,
+ "ü": 29993,
+ "–": 29994,
+ "%": 29995,
+ "ц": 29996,
+ "ö": 29997,
+ "ж": 29998,
+ "Z": 29999,
+ "è": 30000,
+ "à": 30001,
+ "ш": 30002,
+ "—": 30003,
+ "\r": 30004,
+ "ю": 30005,
+ "ł": 30006,
+ "»": 30007,
+ "С": 30008,
+ "«": 30009,
+ "’": 30010,
+ "ф": 30011,
+ "В": 30012,
+ "П": 30013,
+ "К": 30014,
+ "“": 30015,
+ "ј": 30016,
+ "М": 30017,
+ "А": 30018,
+ "ç": 30019,
+ "å": 30020,
+ "щ": 30021,
+ "~": 30022,
+ "ę": 30023,
+ "”": 30024,
+ "ą": 30025,
+ "č": 30026,
+ "Р": 30027,
+ "ї": 30028,
+ "Н": 30029,
+ "ú": 30030,
+ "Б": 30031,
+ "Д": 30032,
+ "ã": 30033,
+ "ß": 30034,
+ "ă": 30035,
+ "ě": 30036,
+ "ê": 30037,
+ "О": 30038,
+ "š": 30039,
+ "Г": 30040,
+ "Т": 30041,
+ "ż": 30042,
+ "ё": 30043,
+ "ž": 30044,
+ "ś": 30045,
+ "ñ": 30046,
+ "ř": 30047,
+ "ő": 30048,
+ "„": 30049,
+ "Л": 30050,
+ "э": 30051,
+ "ý": 30052,
+ "У": 30053,
+ "И": 30054,
+ "ъ": 30055,
+ "є": 30056,
+ "â": 30057,
+ "î": 30058,
+ "ò": 30059,
+ "З": 30060,
+ "Ф": 30061,
+ "É": 30062,
+ "ć": 30063,
+ "·": 30064,
+ "ș": 30065,
+ "ń": 30066,
+ "ț": 30067,
+ "Х": 30068,
+ "ô": 30069,
+ "Е": 30070,
+ "ù": 30071,
+ "ů": 30072,
+ "°": 30073,
+ "Ш": 30074,
+ "љ": 30075,
+ "Ч": 30076,
+ "ø": 30077,
+ "æ": 30078,
+ "њ": 30079,
+ " ": 30080,
+ " ": 30081,
+ "Э": 30082,
+ "ë": 30083,
+ "õ": 30084,
+ "ï": 30085,
+ "‘": 30086,
+ "†": 30087,
+ "²": 30088,
+ "ű": 30089,
+ "І": 30090,
+ "─": 30091,
+ "Ц": 30092,
+ "ћ": 30093,
+ "Ö": 30094,
+ "û": 30095,
+ "Я": 30096,
+ "ì": 30097,
+ "…": 30098,
+ "ō": 30099,
+ "Ж": 30100,
+ "Ю": 30101,
+ "Á": 30102,
+ "́": 30103,
+ "Ü": 30104,
+ "º": 30105,
+ "œ": 30106,
+ "ā": 30107,
+ "Č": 30108,
+ "ź": 30109,
+ "α": 30110,
+ "│": 30111,
+ "ا": 30112,
+ "À": 30113,
+ "═": 30114,
+ "Š": 30115,
+ "ђ": 30116,
+ "№": 30117,
+ " ": 30118,
+ "•": 30119,
+ "−": 30120,
+ "→": 30121,
+ "×": 30122,
+ "ο": 30123,
+ "₂": 30124,
+ "Ä": 30125,
+ "Î": 30126,
+ "Ś": 30127,
+ "đ": 30128,
+ "Å": 30129,
+ "ı": 30130,
+ "": 30131,
+ "ū": 30132,
+ "ν": 30133,
+ "Й": 30134,
+ "ª": 30135,
+ "ι": 30136,
+ "τ": 30137,
+ "ل": 30138,
+ "′": 30139,
+ "�": 30140,
+ "È": 30141,
+ "λ": 30142,
+ "": 30143,
+ "Ž": 30144,
+ "ς": 30145,
+ "ň": 30146,
+ "ρ": 30147,
+ "₁": 30148,
+ "Є": 30149,
+ "ī": 30150,
+ "ε": 30151,
+ "§": 30152,
+ "Ł": 30153,
+ "Ј": 30154,
+ "£": 30155,
+ "ر": 30156,
+ "Ż": 30157,
+ "¿": 30158,
+ "م": 30159,
+ "″": 30160,
+ "Ú": 30161,
+ "ن": 30162,
+ "ي": 30163,
+ "σ": 30164,
+ "´": 30165,
+ "": 30166,
+ "μ": 30167,
+ "³": 30168,
+ "ş": 30169,
+ "π": 30170,
+ "و": 30171,
+ "د": 30172,
+ "κ": 30173,
+ "₃": 30174,
+ "Í": 30175,
+ "ˈ": 30176,
+ "ب": 30177,
+ "Ó": 30178,
+ "Ã": 30179,
+ "¡": 30180,
+ "€": 30181,
+ "ť": 30182,
+ "η": 30183,
+ "ə": 30184,
+ "ー": 30185,
+ "Щ": 30186,
+ "β": 30187,
+ "├": 30188,
+ "ð": 30189,
+ "ґ": 30190,
+ "": 30191,
+ "υ": 30192,
+ "¹": 30193,
+ "₄": 30194,
+ "ت": 30195,
+ "י": 30196,
+ "γ": 30197,
+ "س": 30198,
+ "の": 30199,
+ "ğ": 30200,
+ "δ": 30201,
+ "ی": 30202,
+ "ン": 30203,
+ "ه": 30204,
+ "ו": 30205,
+ "ω": 30206,
+ "ί": 30207,
+ "█": 30208,
+ "θ": 30209,
+ "的": 30210,
+ "©": 30211,
+ "Â": 30212,
+ "↑": 30213,
+ ",": 30214,
+ "ː": 30215,
+ "ά": 30216,
+ "―": 30217,
+ "ع": 30218,
+ "Ç": 30219,
+ "₀": 30220,
+ "±": 30221,
+ "Ø": 30222,
+ "ď": 30223,
+ "Ř": 30224,
+ "Œ": 30225,
+ "½": 30226,
+ "└": 30227,
+ "ό": 30228,
+ "‚": 30229,
+ "ē": 30230,
+ "₅": 30231,
+ "Æ": 30232,
+ "Ș": 30233,
+ "ɛ": 30234,
+ "ה": 30235,
+ "ר": 30236,
+ "φ": 30237,
+ "₆": 30238,
+ "ė": 30239,
+ "ح": 30240,
+ "ف": 30241,
+ "ة": 30242,
+ "İ": 30243,
+ " ": 30244,
+ "←": 30245,
+ "║": 30246,
+ "ɔ": 30247,
+ "≤": 30248,
+ "ל": 30249,
+ "Đ": 30250,
+ "ա": 30251,
+ "Ō": 30252,
+ "א": 30253,
+ "്": 30254,
+ "ス": 30255,
+ "ش": 30256,
+ "大": 30257,
+ "ル": 30258,
+ "џ": 30259,
+ "イ": 30260,
+ "⟩": 30261,
+ " ": 30262,
+ "µ": 30263,
+ "∈": 30264,
+ "ق": 30265,
+ "⟨": 30266,
+ "。": 30267,
+ "Ґ": 30268,
+ "ा": 30269,
+ "ج": 30270,
+ "ʿ": 30271,
+ "ა": 30272,
+ "έ": 30273,
+ "χ": 30274,
+ "中": 30275,
+ "ב": 30276,
+ "ი": 30277,
+ "₈": 30278,
+ "ト": 30279,
+ "ή": 30280,
+ "ラ": 30281,
+ "Џ": 30282,
+ "ك": 30283,
+ "₇": 30284,
+ "מ": 30285,
+ "ת": 30286,
+ "一": 30287,
+ "Π": 30288,
+ "า": 30289,
+ "・": 30290,
+ "Σ": 30291,
+ "Α": 30292,
+ "Δ": 30293,
+ "ש": 30294,
+ "ز": 30295,
+ "्": 30296,
+ "ร": 30297,
+ "い": 30298,
+ "ʻ": 30299,
+ "Њ": 30300,
+ "₉": 30301,
+ "ʼ": 30302,
+ "リ": 30303,
+ "‐": 30304,
+ "ク": 30305,
+ "∞": 30306,
+ "⁄": 30307,
+ "ύ": 30308,
+ "Ş": 30309,
+ "ア": 30310,
+ "Ε": 30311,
+ "ɪ": 30312,
+ "人": 30313,
+ "Κ": 30314,
+ "∀": 30315,
+ "र": 30316,
+ "ッ": 30317,
+ "►": 30318,
+ "子": 30319,
+ "¬": 30320,
+ "خ": 30321,
+ "◄": 30322,
+ "َ": 30323,
+ "ע": 30324,
+ "日": 30325,
+ "し": 30326,
+ "ḥ": 30327,
+ "נ": 30328,
+ "山": 30329,
+ "、": 30330,
+ "Ї": 30331,
+ "る": 30332,
+ "文": 30333,
+ "Ñ": 30334,
+ "ド": 30335,
+ "ד": 30336,
+ "ն": 30337,
+ "Ђ": 30338,
+ "Γ": 30339,
+ "þ": 30340,
+ "": 30341,
+ "®": 30342,
+ "ک": 30343,
+ "": 30344,
+ "⚭": 30345,
+ "本": 30346,
+ "ℕ": 30347,
+ "น": 30348,
+ "ѝ": 30349,
+ "̶": 30350,
+ "อ": 30351,
+ "ў": 30352,
+ "に": 30353,
+ "数": 30354,
+ "ე": 30355,
+ "国": 30356,
+ "Ω": 30357,
+ " ": 30358,
+ "ǎ": 30359,
+ "ص": 30360,
+ "": 30361,
+ "Μ": 30362,
+ " ": 30363,
+ "と": 30364,
+ "": 30365,
+ "た": 30366,
+ "ط": 30367,
+ "ր": 30368,
+ "タ": 30369,
+ "ÿ": 30370,
+ "な": 30371,
+ "أ": 30372,
+ "シ": 30373,
+ "新": 30374,
+ "﹕": 30375,
+ "ʃ": 30376,
+ "ľ": 30377,
+ "ロ": 30378,
+ "⁴": 30379,
+ "்": 30380,
+ "⇒": 30381,
+ "ţ": 30382,
+ ":": 30383,
+ "Ț": 30384,
+ "ക": 30385,
+ "≥": 30386,
+ "ി": 30387,
+ "マ": 30388,
+ "ん": 30389,
+ "ṣ": 30390,
+ "ジ": 30391,
+ "是": 30392,
+ "이": 30393,
+ "⋅": 30394,
+ "田": 30395,
+ "を": 30396,
+ "道": 30397,
+ "ง": 30398,
+ "¨": 30399,
+ "ـ": 30400,
+ "เ": 30401,
+ "村": 30402,
+ "Ê": 30403,
+ "ם": 30404,
+ "›": 30405,
+ "用": 30406,
+ "ώ": 30407,
+ "天": 30408,
+ ")": 30409,
+ "་": 30410,
+ "镇": 30411,
+ "か": 30412,
+ "不": 30413,
+ "Τ": 30414,
+ "学": 30415,
+ "ư": 30416,
+ "有": 30417,
+ "ո": 30418,
+ "(": 30419,
+ "レ": 30420,
+ "گ": 30421,
+ "": 30422,
+ "フ": 30423,
+ "न": 30424,
+ "ก": 30425,
+ "ɑ": 30426,
+ "す": 30427,
+ "ח": 30428,
+ "上": 30429,
+ "": 30430,
+ "∧": 30431,
+ "ṭ": 30432,
+ "ק": 30433,
+ "ξ": 30434,
+ "¤": 30435,
+ "ि": 30436,
+ "会": 30437,
+ "ന": 30438,
+ "カ": 30439,
+ "ų": 30440,
+ "ま": 30441,
+ "ു": 30442,
+ "͡": 30443,
+ "क": 30444,
+ "া": 30445,
+ "小": 30446,
+ "ן": 30447,
+ "行": 30448,
+ "は": 30449,
+ "ʁ": 30450,
+ "Ő": 30451,
+ "Þ": 30452,
+ "り": 30453,
+ "キ": 30454,
+ "Λ": 30455,
+ "რ": 30456,
+ "三": 30457,
+ "が": 30458,
+ "コ": 30459,
+ "ζ": 30460,
+ "市": 30461,
+ "王": 30462,
+ "ℝ": 30463,
+ "Ź": 30464,
+ "う": 30465,
+ "て": 30466,
+ "区": 30467,
+ "ാ": 30468,
+ "": 30469,
+ "年": 30470,
+ "פ": 30471,
+ "ի": 30472,
+ "ſ": 30473,
+ "‹": 30474,
+ "त": 30475,
+ "ŏ": 30476,
+ "‑": 30477,
+ "̃": 30478,
+ "Ć": 30479,
+ "ى": 30480,
+ "「": 30481,
+ "」": 30482,
+ "ს": 30483,
+ "Ā": 30484,
+ "म": 30485,
+ "生": 30486,
+ "≠": 30487,
+ "Љ": 30488,
+ "स": 30489,
+ "↔": 30490,
+ "Ο": 30491,
+ "ว": 30492,
+ "ლ": 30493,
+ "成": 30494,
+ "定": 30495,
+ "ล": 30496,
+ "¶": 30497,
+ "כ": 30498,
+ "で": 30499,
+ "ּ": 30500,
+ "ม": 30501,
+ "个": 30502,
+ "和": 30503,
+ "ס": 30504,
+ "在": 30505,
+ "Β": 30506,
+ "ิ": 30507,
+ "Ι": 30508,
+ "⁵": 30509,
+ "ั": 30510,
+ "ɡ": 30511,
+ "━": 30512,
+ "ら": 30513,
+ "オ": 30514,
+ "¼": 30515,
+ "ե": 30516,
+ "バ": 30517,
+ "ָ": 30518,
+ "ŋ": 30519,
+ "ŭ": 30520,
+ "グ": 30521,
+ "⁶": 30522,
+ "Ь": 30523,
+ "⁰": 30524,
+ "方": 30525,
+ "บ": 30526,
+ "": 30527,
+ "高": 30528,
+ "ệ": 30529,
+ "Ν": 30530,
+ "ѣ": 30531,
+ "ィ": 30532,
+ "地": 30533,
+ "月": 30534,
+ "Ô": 30535,
+ "™": 30536,
+ "ウ": 30537,
+ "き": 30538,
+ "公": 30539,
+ "ạ": 30540,
+ "ო": 30541,
+ "ɾ": 30542,
+ "่": 30543,
+ "出": 30544,
+ "法": 30545,
+ "Θ": 30546,
+ "ส": 30547,
+ "名": 30548,
+ "ย": 30549,
+ "ത": 30550,
+ "Φ": 30551,
+ "↓": 30552,
+ "れ": 30553,
+ "ג": 30554,
+ "Ё": 30555,
+ "ơ": 30556,
+ "下": 30557,
+ "ә": 30558,
+ "ψ": 30559,
+ "┼": 30560,
+ "ャ": 30561,
+ "√": 30562,
+ "¥": 30563,
+ "社": 30564,
+ "ṇ": 30565,
+ "さ": 30566,
+ "ِ": 30567,
+ "く": 30568,
+ "े": 30569,
+ "Ы": 30570,
+ "ἐ": 30571,
+ "テ": 30572,
+ "为": 30573,
+ "乡": 30574,
+ "川": 30575,
+ "ナ": 30576,
+ "之": 30577,
+ "字": 30578,
+ "ム": 30579,
+ "ी": 30580,
+ "海": 30581,
+ "ブ": 30582,
+ "≈": 30583,
+ "!": 30584,
+ "پ": 30585,
+ "¯": 30586,
+ "ἀ": 30587,
+ "": 30588,
+ "こ": 30589,
+ "ְ": 30590,
+ "東": 30591,
+ "明": 30592,
+ "ὶ": 30593,
+ "时": 30594,
+ "ท": 30595,
+ "ɨ": 30596,
+ "デ": 30597,
+ "️": 30598,
+ "ʊ": 30599,
+ "エ": 30600,
+ "南": 30601,
+ "西": 30602,
+ "ल": 30603,
+ "メ": 30604,
+ "プ": 30605,
+ "平": 30606,
+ "式": 30607,
+ "ῖ": 30608,
+ "қ": 30609,
+ "व": 30610,
+ "غ": 30611,
+ "Ò": 30612,
+ "家": 30613,
+ "ʒ": 30614,
+ "サ": 30615,
+ "≡": 30616,
+ "ダ": 30617,
+ "ต": 30618,
+ "∃": 30619,
+ "₹": 30620,
+ "प": 30621,
+ "第": 30622,
+ "ര": 30623,
+ "ض": 30624,
+ "▄": 30625,
+ "城": 30626,
+ "ミ": 30627,
+ "ɐ": 30628,
+ "¦": 30629,
+ "美": 30630,
+ "件": 30631,
+ "ნ": 30632,
+ "Ð": 30633,
+ "ַ": 30634,
+ "ニ": 30635,
+ "部": 30636,
+ "ņ": 30637,
+ "ǐ": 30638,
+ "ט": 30639,
+ "य": 30640,
+ "あ": 30641,
+ "¾": 30642,
+ "ả": 30643,
+ "ち": 30644,
+ "ュ": 30645,
+ "÷": 30646,
+ "女": 30647,
+ "神": 30648,
+ "♦": 30649,
+ "¢": 30650,
+ "以": 30651,
+ "้": 30652,
+ "র": 30653,
+ "太": 30654,
+ "্": 30655,
+ "チ": 30656,
+ "յ": 30657,
+ "前": 30658,
+ "金": 30659,
+ "ւ": 30660,
+ "野": 30661,
+ "北": 30662,
+ "ห": 30663,
+ "‰": 30664,
+ "っ": 30665,
+ "加": 30666,
+ "原": 30667,
+ "ʲ": 30668,
+ "置": 30669,
+ "安": 30670,
+ "ガ": 30671,
+ "我": 30672,
+ "Ḥ": 30673,
+ "യ": 30674,
+ "京": 30675,
+ "▀": 30676,
+ "მ": 30677,
+ "ვ": 30678,
+ "ʾ": 30679,
+ "∨": 30680,
+ "ִ": 30681,
+ "可": 30682,
+ "取": 30683,
+ "县": 30684,
+ "二": 30685,
+ "▒": 30686,
+ "理": 30687,
+ "自": 30688,
+ "信": 30689,
+ "代": 30690,
+ "ี": 30691,
+ "צ": 30692,
+ "်": 30693,
+ "द": 30694,
+ "⁸": 30695,
+ "̯": 30696,
+ "お": 30697,
+ "要": 30698,
+ "ῦ": 30699,
+ "க": 30700,
+ "ễ": 30701,
+ "ु": 30702,
+ "ƒ": 30703,
+ "ʰ": 30704,
+ "化": 30705,
+ "✓": 30706,
+ "പ": 30707,
+ "의": 30708,
+ "다": 30709,
+ "木": 30710,
+ "ُ": 30711,
+ "̀": 30712,
+ "ˌ": 30713,
+ "ह": 30714,
+ "パ": 30715,
+ "水": 30716,
+ "ế": 30717,
+ "ด": 30718,
+ "ズ": 30719,
+ "⁹": 30720,
+ "島": 30721,
+ "": 30722,
+ "も": 30723,
+ "正": 30724,
+ "■": 30725,
+ "آ": 30726,
+ "พ": 30727,
+ "内": 30728,
+ "Ì": 30729,
+ "ǔ": 30730,
+ "┬": 30731,
+ "作": 30732,
+ "合": 30733,
+ "ὸ": 30734,
+ "み": 30735,
+ "▼": 30736,
+ "ῶ": 30737,
+ "⊙": 30738,
+ "~": 30739,
+ "ị": 30740,
+ "ْ": 30741,
+ "回": 30742,
+ "了": 30743,
+ "所": 30744,
+ "事": 30745,
+ "表": 30746,
+ "ำ": 30747,
+ "分": 30748,
+ "⁷": 30749,
+ "ү": 30750,
+ "": 30751,
+ "入": 30752,
+ "全": 30753,
+ "إ": 30754,
+ "里": 30755,
+ "Χ": 30756,
+ "ं": 30757,
+ "ハ": 30758,
+ "ค": 30759,
+ "⁻": 30760,
+ "モ": 30761,
+ "郎": 30762,
+ "据": 30763,
+ "●": 30764,
+ "州": 30765,
+ "∩": 30766,
+ "者": 30767,
+ "通": 30768,
+ "都": 30769,
+ "ℤ": 30770,
+ "♭": 30771,
+ "╌": 30772,
+ "つ": 30773,
+ "ḍ": 30774,
+ "江": 30775,
+ "ז": 30776,
+ "Ý": 30777,
+ "ө": 30778,
+ "์": 30779,
+ "到": 30780,
+ "ி": 30781,
+ "ʂ": 30782,
+ "对": 30783,
+ "스": 30784,
+ "使": 30785,
+ "ি": 30786,
+ "よ": 30787,
+ "Ἀ": 30788,
+ "Ï": 30789,
+ "∘": 30790,
+ "사": 30791,
+ "ন": 30792,
+ "世": 30793,
+ "ɕ": 30794,
+ "կ": 30795,
+ "უ": 30796,
+ "ട": 30797,
+ "ბ": 30798,
+ "ो": 30799,
+ "വ": 30800,
+ "果": 30801,
+ "十": 30802,
+ "ุ": 30803,
+ "藤": 30804,
+ "来": 30805,
+ "面": 30806,
+ "け": 30807,
+ "ĕ": 30808,
+ "ビ": 30809,
+ "这": 30810,
+ "지": 30811,
+ "ം": 30812,
+ "街": 30813,
+ "石": 30814,
+ "能": 30815,
+ "空": 30816,
+ "տ": 30817,
+ "ئ": 30818,
+ "武": 30819,
+ "ʹ": 30820,
+ "ϕ": 30821,
+ "后": 30822,
+ "ะ": 30823,
+ "元": 30824,
+ "ʔ": 30825,
+ "리": 30826,
+ "기": 30827,
+ "河": 30828,
+ "町": 30829,
+ "花": 30830,
+ "ὐ": 30831,
+ "类": 30832,
+ "░": 30833,
+ "物": 30834,
+ "Η": 30835,
+ "¸": 30836,
+ "ு": 30837,
+ "თ": 30838,
+ "ث": 30839,
+ "െ": 30840,
+ "╠": 30841,
+ "⊆": 30842,
+ "》": 30843,
+ "ツ": 30844,
+ "版": 30845,
+ "动": 30846,
+ "如": 30847,
+ "真": 30848,
+ "ɲ": 30849,
+ "号": 30850,
+ "ذ": 30851,
+ "정": 30852,
+ "林": 30853,
+ "書": 30854,
+ "民": 30855,
+ "口": 30856,
+ "ّ": 30857,
+ "示": 30858,
+ "മ": 30859,
+ "아": 30860,
+ "图": 30861,
+ "∪": 30862,
+ "戦": 30863,
+ "李": 30864,
+ "ല": 30865,
+ "《": 30866,
+ "光": 30867,
+ "白": 30868,
+ "心": 30869,
+ "த": 30870,
+ "ज": 30871,
+ "设": 30872,
+ "ί": 30873,
+ "路": 30874,
+ "ग": 30875,
+ "∥": 30876,
+ "한": 30877,
+ "最": 30878,
+ "Ћ": 30879,
+ "手": 30880,
+ "ս": 30881,
+ "?": 30882,
+ "型": 30883,
+ "ầ": 30884,
+ "セ": 30885,
+ "建": 30886,
+ "ェ": 30887,
+ "主": 30888,
+ "시": 30889,
+ "대": 30890,
+ "ῆ": 30891,
+ "‡": 30892,
+ "集": 30893,
+ "დ": 30894,
+ "目": 30895,
+ "Ρ": 30896,
+ "ァ": 30897,
+ "度": 30898,
+ "長": 30899,
+ "星": 30900,
+ "ノ": 30901,
+ "ộ": 30902,
+ "가": 30903,
+ "五": 30904,
+ "چ": 30905,
+ "로": 30906,
+ "ョ": 30907,
+ "重": 30908,
+ "于": 30909,
+ "发": 30910,
+ "史": 30911,
+ "ظ": 30912,
+ "ช": 30913,
+ "え": 30914,
+ "國": 30915,
+ "ĭ": 30916,
+ "ப": 30917,
+ "인": 30918,
+ "你": 30919,
+ "駅": 30920,
+ "‒": 30921,
+ "♥": 30922,
+ "多": 30923,
+ "ħ": 30924,
+ "Қ": 30925,
+ "ồ": 30926,
+ "士": 30927,
+ "四": 30928,
+ "┴": 30929,
+ "ம": 30930,
+ "司": 30931,
+ "ে": 30932,
+ "ὰ": 30933,
+ "∂": 30934,
+ "╬": 30935,
+ "次": 30936,
+ "Ľ": 30937,
+ "⟶": 30938,
+ "立": 30939,
+ "点": 30940,
+ "音": 30941,
+ "⠀": 30942,
+ "器": 30943,
+ "하": 30944,
+ "井": 30945,
+ "存": 30946,
+ "ֹ": 30947,
+ "当": 30948,
+ "Ë": 30949,
+ "★": 30950,
+ "寺": 30951,
+ "性": 30952,
+ "也": 30953,
+ "め": 30954,
+ "だ": 30955,
+ "位": 30956,
+ "ങ": 30957,
+ "ہ": 30958,
+ "值": 30959,
+ "古": 30960,
+ "გ": 30961,
+ "ব": 30962,
+ "院": 30963,
+ "േ": 30964,
+ "▶": 30965,
+ "ர": 30966,
+ "界": 30967,
+ "語": 30968,
+ "സ": 30969,
+ "수": 30970,
+ "ǒ": 30971,
+ "愛": 30972,
+ "✔": 30973,
+ "時": 30974,
+ "ọ": 30975,
+ "റ": 30976,
+ "մ": 30977,
+ "ケ": 30978,
+ "东": 30979,
+ "同": 30980,
+ "주": 30981,
+ "保": 30982,
+ "Õ": 30983,
+ "ố": 30984,
+ "ἰ": 30985,
+ "青": 30986,
+ "ゴ": 30987,
+ "体": 30988,
+ "清": 30989,
+ "相": 30990,
+ "จ": 30991,
+ "ء": 30992,
+ "情": 30993,
+ "𝕜": 30994,
+ "ক": 30995,
+ "ḫ": 30996,
+ "ờ": 30997,
+ "将": 30998,
+ "族": 30999,
+ "동": 31000,
+ "Υ": 31001,
+ "┌": 31002,
+ "ボ": 31003,
+ "宮": 31004,
+ "』": 31005,
+ "ম": 31006,
+ "『": 31007,
+ "ļ": 31008,
+ "श": 31009,
+ "ป": 31010,
+ "Ա": 31011,
+ "ब": 31012,
+ "자": 31013,
+ "政": 31014,
+ "ா": 31015,
+ "间": 31016,
+ "fi": 31017,
+ "松": 31018,
+ "ṃ": 31019,
+ "始": 31020,
+ "息": 31021,
+ "少": 31022,
+ "教": 31023,
+ "获": 31024,
+ "列": 31025,
+ "开": 31026,
+ "ტ": 31027,
+ "ワ": 31028,
+ "კ": 31029,
+ "科": 31030,
+ "春": 31031,
+ "治": 31032,
+ "吉": 31033,
+ "ས": 31034,
+ "ศ": 31035,
+ "ɒ": 31036,
+ "台": 31037,
+ "ネ": 31038,
+ "း": 31039,
+ "ĩ": 31040,
+ "工": 31041,
+ "ά": 31042,
+ "知": 31043,
+ "八": 31044,
+ "場": 31045,
+ "画": 31046,
+ "百": 31047,
+ "☆": 31048,
+ "記": 31049,
+ "得": 31050,
+ "ソ": 31051,
+ "氏": 31052,
+ "ာ": 31053,
+ "에": 31054,
+ "ল": 31055,
+ "ṛ": 31056,
+ "关": 31057,
+ "ġ": 31058,
+ "έ": 31059,
+ "∑": 31060,
+ "ベ": 31061,
+ "标": 31062,
+ "니": 31063,
+ "ὴ": 31064,
+ "ֵ": 31065,
+ "外": 31066,
+ "♠": 31067,
+ "わ": 31068,
+ "間": 31069,
+ "ภ": 31070,
+ "校": 31071,
+ "制": 31072,
+ "แ": 31073,
+ "力": 31074,
+ "門": 31075,
+ "好": 31076,
+ "ғ": 31077,
+ "Ù": 31078,
+ "ℓ": 31079,
+ "ֶ": 31080,
+ "는": 31081,
+ "┐": 31082,
+ "∗": 31083,
+ "指": 31084,
+ "色": 31085,
+ "返": 31086,
+ "馬": 31087,
+ "请": 31088,
+ "≫": 31089,
+ "風": 31090,
+ "ό": 31091,
+ "接": 31092,
+ "서": 31093,
+ "↳": 31094,
+ "せ": 31095,
+ "志": 31096,
+ "̲": 31097,
+ "魔": 31098,
+ "ң": 31099,
+ "更": 31100,
+ "程": 31101,
+ "김": 31102,
+ "郡": 31103,
+ "ོ": 31104,
+ "ũ": 31105,
+ "ച": 31106,
+ "利": 31107,
+ "県": 31108,
+ "周": 31109,
+ "そ": 31110,
+ "や": 31111,
+ "谷": 31112,
+ "香": 31113,
+ "♯": 31114,
+ "じ": 31115,
+ "،": 31116,
+ "期": 31117,
+ "∅": 31118,
+ "┘": 31119,
+ "初": 31120,
+ "福": 31121,
+ "片": 31122,
+ "ザ": 31123,
+ "動": 31124,
+ "参": 31125,
+ "성": 31126,
+ "Ə": 31127,
+ "╦": 31128,
+ "어": 31129,
+ "ხ": 31130,
+ "義": 31131,
+ "च": 31132,
+ "象": 31133,
+ "功": 31134,
+ "♂": 31135,
+ "도": 31136,
+ "고": 31137,
+ "过": 31138,
+ "վ": 31139,
+ "皇": 31140,
+ "特": 31141,
+ "ậ": 31142,
+ "长": 31143,
+ "英": 31144,
+ "ấ": 31145,
+ "ണ": 31146,
+ "Ъ": 31147,
+ "স": 31148,
+ "其": 31149,
+ "ত": 31150,
+ "流": 31151,
+ "除": 31152,
+ "일": 31153,
+ "ু": 31154,
+ "្": 31155,
+ "永": 31156,
+ "直": 31157,
+ "상": 31158,
+ "千": 31159,
+ "ắ": 31160,
+ "館": 31161,
+ "Ť": 31162,
+ "朝": 31163,
+ "ட": 31164,
+ "ɣ": 31165,
+ "单": 31166,
+ "ʀ": 31167,
+ "格": 31168,
+ "德": 31169,
+ "전": 31170,
+ "☺": 31171,
+ "ピ": 31172,
+ "歌": 31173,
+ "进": 31174,
+ "限": 31175,
+ "夫": 31176,
+ "트": 31177,
+ "⊢": 31178,
+ "園": 31179,
+ "量": 31180,
+ "土": 31181,
+ "放": 31182,
+ "码": 31183,
+ "等": 31184,
+ "系": 31185,
+ "∼": 31186,
+ "華": 31187,
+ "↵": 31188,
+ "소": 31189,
+ "常": 31190,
+ "否": 31191,
+ "見": 31192,
+ "源": 31193,
+ "ׁ": 31194,
+ "实": 31195,
+ "博": 31196,
+ "라": 31197,
+ "원": 31198,
+ "보": 31199,
+ "⊕": 31200,
+ "解": 31201,
+ "〜": 31202,
+ "男": 31203,
+ "দ": 31204,
+ "ポ": 31205,
+ "ろ": 31206,
+ "나": 31207,
+ "ག": 31208,
+ "無": 31209,
+ "Û": 31210,
+ "̥": 31211,
+ "ұ": 31212,
+ "查": 31213,
+ "̣": 31214,
+ "╗": 31215,
+ "╩": 31216,
+ "条": 31217,
+ "য": 31218,
+ "ὁ": 31219,
+ "後": 31220,
+ "他": 31221,
+ "网": 31222,
+ "ல": 31223,
+ "≃": 31224,
+ "화": 31225,
+ "ە": 31226,
+ "阿": 31227,
+ "ေ": 31228,
+ "户": 31229,
+ "∫": 31230,
+ "구": 31231,
+ "ར": 31232,
+ "မ": 31233,
+ "▸": 31234,
+ "լ": 31235,
+ "○": 31236,
+ "命": 31237,
+ "就": 31238,
+ "龍": 31239,
+ "君": 31240,
+ "夏": 31241,
+ "": 31242,
+ "言": 31243,
+ "先": 31244,
+ "➜": 31245,
+ "შ": 31246,
+ "ძ": 31247,
+ "ਾ": 31248,
+ "வ": 31249,
+ "ど": 31250,
+ "ヒ": 31251,
+ "ไ": 31252,
+ "ன": 31253,
+ "ば": 31254,
+ "ギ": 31255,
+ "գ": 31256,
+ "ἄ": 31257,
+ "ヤ": 31258,
+ "典": 31259,
+ "府": 31260,
+ "̄": 31261,
+ "신": 31262,
+ "组": 31263,
+ "改": 31264,
+ "ὲ": 31265,
+ "华": 31266,
+ "与": 31267,
+ "调": 31268,
+ "╝": 31269,
+ "ヴ": 31270,
+ "ქ": 31271,
+ "由": 31272,
+ "修": 31273,
+ "學": 31274,
+ "♣": 31275,
+ "消": 31276,
+ "符": 31277,
+ "ʌ": 31278,
+ "부": 31279,
+ "ớ": 31280,
+ "‾": 31281,
+ "▲": 31282,
+ "录": 31283,
+ "ള": 31284,
+ "연": 31285,
+ "을": 31286,
+ "ひ": 31287,
+ "영": 31288,
+ "┤": 31289,
+ "已": 31290,
+ "陽": 31291,
+ "င": 31292,
+ "국": 31293,
+ "容": 31294,
+ "未": 31295,
+ "宗": 31296,
+ "ᴇ": 31297,
+ "び": 31298,
+ "장": 31299,
+ "龙": 31300,
+ "්": 31301,
+ "提": 31302,
+ "ĝ": 31303,
+ "六": 31304,
+ "形": 31305,
+ "제": 31306,
+ "Հ": 31307,
+ "伊": 31308,
+ "ϵ": 31309,
+ "ข": 31310,
+ "Ű": 31311,
+ "ゃ": 31312,
+ "火": 31313,
+ "Ṣ": 31314,
+ "佐": 31315,
+ "⊥": 31316,
+ "̪": 31317,
+ "ứ": 31318,
+ "□": 31319,
+ "结": 31320,
+ "九": 31321,
+ "雄": 31322,
+ "թ": 31323,
+ "ា": 31324,
+ "而": 31325,
+ "བ": 31326,
+ "우": 31327,
+ "张": 31328,
+ "ट": 31329,
+ "ष": 31330,
+ "向": 31331,
+ "ῥ": 31332,
+ "选": 31333,
+ "공": 31334,
+ "ゲ": 31335,
+ "ʐ": 31336,
+ "仁": 31337,
+ "堂": 31338,
+ "ך": 31339,
+ "ု": 31340,
+ "ἔ": 31341,
+ "അ": 31342,
+ "ề": 31343,
+ "ད": 31344,
+ "선": 31345,
+ "오": 31346,
+ "久": 31347,
+ "": 31348,
+ "义": 31349,
+ "अ": 31350,
+ "╔": 31351,
+ "无": 31352,
+ "
": 31353,
+ "은": 31354,
+ "ʷ": 31355,
+ "那": 31356,
+ "線": 31357,
+ "务": 31358,
+ "基": 31359,
+ "属": 31360,
+ "配": 31361,
+ "미": 31362,
+ "軍": 31363,
+ "โ": 31364,
+ "津": 31365,
+ "完": 31366,
+ "研": 31367,
+ "注": 31368,
+ "失": 31369,
+ "应": 31370,
+ "က": 31371,
+ "╚": 31372,
+ "友": 31373,
+ "章": 31374,
+ "Ψ": 31375,
+ "求": 31376,
+ "ण": 31377,
+ "경": 31378,
+ "": 31379,
+ "भ": 31380,
+ "们": 31381,
+ "模": 31382,
+ "需": 31383,
+ "ச": 31384,
+ "電": 31385,
+ "প": 31386,
+ "դ": 31387,
+ "へ": 31388,
+ "此": 31389,
+ "夜": 31390,
+ "或": 31391,
+ "橋": 31392,
+ "根": 31393,
+ "Ī": 31394,
+ "玉": 31395,
+ "ู": 31396,
+ "ṅ": 31397,
+ "交": 31398,
+ "品": 31399,
+ "良": 31400,
+ "ང": 31401,
+ "ォ": 31402,
+ "则": 31403,
+ "開": 31404,
+ "Ζ": 31405,
+ "문": 31406,
+ "被": 31407,
+ "조": 31408,
+ "株": 31409,
+ "记": 31410,
+ "會": 31411,
+ "经": 31412,
+ "ू": 31413,
+ "ょ": 31414,
+ "转": 31415,
+ "崎": 31416,
+ "마": 31417,
+ "⌘": 31418,
+ "比": 31419,
+ "造": 31420,
+ "ܐ": 31421,
+ "ื": 31422,
+ "没": 31423,
+ "现": 31424,
+ "七": 31425,
+ "Ά": 31426,
+ "商": 31427,
+ "ை": 31428,
+ "机": 31429,
+ "阳": 31430,
+ "ĉ": 31431,
+ "角": 31432,
+ "站": 31433,
+ "բ": 31434,
+ "해": 31435,
+ "及": 31436,
+ "ध": 31437,
+ "術": 31438,
+ "认": 31439,
+ "": 31440,
+ "创": 31441,
+ "編": 31442,
+ "ղ": 31443,
+ "ḩ": 31444,
+ "伝": 31445,
+ "岡": 31446,
+ "ड": 31447,
+ "ホ": 31448,
+ "港": 31449,
+ "任": 31450,
+ "登": 31451,
+ "ི": 31452,
+ "็": 31453,
+ "布": 31454,
+ "究": 31455,
+ "帝": 31456,
+ "여": 31457,
+ "산": 31458,
+ "န": 31459,
+ "◦": 31460,
+ "密": 31461,
+ "变": 31462,
+ "序": 31463,
+ "♀": 31464,
+ "∣": 31465,
+ "计": 31466,
+ "曲": 31467,
+ "Ă": 31468,
+ "ύ": 31469,
+ "ʋ": 31470,
+ "传": 31471,
+ "】": 31472,
+ "包": 31473,
+ "意": 31474,
+ "去": 31475,
+ "沙": 31476,
+ "⸮": 31477,
+ "【": 31478,
+ "写": 31479,
+ "超": 31480,
+ "ய": 31481,
+ "今": 31482,
+ "┈": 31483,
+ "森": 31484,
+ "ි": 31485,
+ "⊗": 31486,
+ "비": 31487,
+ "հ": 31488,
+ "Ḩ": 31489,
+ "ǫ": 31490,
+ "黄": 31491,
+ "∙": 31492,
+ "드": 31493,
+ "🌍": 31494,
+ "景": 31495,
+ "湖": 31496,
+ "ք": 31497,
+ "ိ": 31498,
+ "ⁿ": 31499,
+ "̂": 31500,
+ "ペ": 31501,
+ "何": 31502,
+ "宇": 31503,
+ "張": 31504,
+ "语": 31505,
+ "老": 31506,
+ "例": 31507,
+ "Ṭ": 31508,
+ "鉄": 31509,
+ "克": 31510,
+ "☉": 31511,
+ "": 31512,
+ "ɹ": 31513,
+ "ἱ": 31514,
+ "ⴰ": 31515,
+ "然": 31516,
+ "를": 31517,
+ "ǧ": 31518,
+ "報": 31519,
+ "服": 31520,
+ "Ď": 31521,
+ "想": 31522,
+ "‖": 31523,
+ "ユ": 31524,
+ "実": 31525,
+ "载": 31526,
+ "요": 31527,
+ "ℚ": 31528,
+ "波": 31529,
+ "马": 31530,
+ "状": 31531,
+ "线": 31532,
+ "유": 31533,
+ "洋": 31534,
+ "万": 31535,
+ "진": 31536,
+ "জ": 31537,
+ "添": 31538,
+ "球": 31539,
+ "機": 31540,
+ "支": 31541,
+ "显": 31542,
+ "拉": 31543,
+ "ὑ": 31544,
+ "送": 31545,
+ "隊": 31546,
+ "ธ": 31547,
+ "处": 31548,
+ "師": 31549,
+ "⊂": 31550,
+ "像": 31551,
+ "়": 31552,
+ "黒": 31553,
+ "ց": 31554,
+ "": 31555,
+ "ủ": 31556,
+ "只": 31557,
+ "起": 31558,
+ "段": 31559,
+ "တ": 31560,
+ "區": 31561,
+ "選": 31562,
+ "천": 31563,
+ "業": 31564,
+ "算": 31565,
+ "广": 31566,
+ "រ": 31567,
+ "视": 31568,
+ "秋": 31569,
+ "因": 31570,
+ "년": 31571,
+ "ے": 31572,
+ "输": 31573,
+ "̱": 31574,
+ "Մ": 31575,
+ "∆": 31576,
+ "康": 31577,
+ "세": 31578,
+ "思": 31579,
+ "死": 31580,
+ "聖": 31581,
+ "민": 31582,
+ "-": 31583,
+ "头": 31584,
+ "ർ": 31585,
+ "∉": 31586,
+ "車": 31587,
+ "┃": 31588,
+ "▇": 31589,
+ "按": 31590,
+ "⍵": 31591,
+ "夢": 31592,
+ "汉": 31593,
+ "从": 31594,
+ "ী": 31595,
+ "题": 31596,
+ "ˆ": 31597,
+ "ἡ": 31598,
+ "展": 31599,
+ "省": 31600,
+ "ུ": 31601,
+ "葉": 31602,
+ "호": 31603,
+ "ਰ": 31604,
+ "素": 31605,
+ "関": 31606,
+ "그": 31607,
+ ";": 31608,
+ "න": 31609,
+ "页": 31610,
+ "共": 31611,
+ "宿": 31612,
+ "态": 31613,
+ "ན": 31614,
+ "技": 31615,
+ "乐": 31616,
+ "控": 31617,
+ "移": 31618,
+ "影": 31619,
+ "ụ": 31620,
+ "ゆ": 31621,
+ "ご": 31622,
+ "್": 31623,
+ "管": 31624,
+ "ൾ": 31625,
+ "╣": 31626,
+ "戸": 31627,
+ "⇔": 31628,
+ "函": 31629,
+ "ẓ": 31630,
+ "尾": 31631,
+ "场": 31632,
+ "介": 31633,
+ "": 31634,
+ "育": 31635,
+ "ර": 31636,
+ "泉": 31637,
+ "ൽ": 31638,
+ "说": 31639,
+ "换": 31640,
+ "必": 31641,
+ "紀": 31642,
+ "མ": 31643,
+ "ེ": 31644,
+ "ợ": 31645,
+ "ൻ": 31646,
+ "宝": 31647,
+ "気": 31648,
+ "门": 31649,
+ "令": 31650,
+ "左": 31651,
+ "漢": 31652,
+ "若": 31653,
+ "屋": 31654,
+ "局": 31655,
+ "打": 31656,
+ "発": 31657,
+ "问": 31658,
+ "恋": 31659,
+ "兵": 31660,
+ "別": 31661,
+ "ા": 31662,
+ "Ս": 31663,
+ "߬": 31664,
+ "গ": 31665,
+ "并": 31666,
+ "ख": 31667,
+ "ή": 31668,
+ "节": 31669,
+ "ʑ": 31670,
+ "ץ": 31671,
+ "Ḫ": 31672,
+ "ℂ": 31673,
+ "引": 31674,
+ "统": 31675,
+ "智": 31676,
+ "̩": 31677,
+ "ै": 31678,
+ "电": 31679,
+ "현": 31680,
+ "✅": 31681,
+ "赤": 31682,
+ "断": 31683,
+ "ね": 31684,
+ "称": 31685,
+ "শ": 31686,
+ "身": 31687,
+ "首": 31688,
+ "付": 31689,
+ "⅓": 31690,
+ "ਸ": 31691,
+ "連": 31692,
+ "ზ": 31693,
+ "官": 31694,
+ "持": 31695,
+ "奈": 31696,
+ "御": 31697,
+ "親": 31698,
+ "군": 31699,
+ "库": 31700,
+ "秀": 31701,
+ "址": 31702,
+ "守": 31703,
+ "活": 31704,
+ "ལ": 31705,
+ "ふ": 31706,
+ "藏": 31707,
+ "ស": 31708,
+ "竹": 31709,
+ "草": 31710,
+ "結": 31711,
+ "ා": 31712,
+ "昌": 31713,
+ "樹": 31714,
+ "ள": 31715,
+ "무": 31716,
+ "হ": 31717,
+ "ゼ": 31718,
+ "̈": 31719,
+ "շ": 31720,
+ "勝": 31721,
+ "足": 31722,
+ "ရ": 31723,
+ "위": 31724,
+ "į": 31725,
+ "Ἰ": 31726,
+ "航": 31727,
+ "陳": 31728,
+ "业": 31729,
+ "富": 31730,
+ "雪": 31731,
+ "आ": 31732,
+ "再": 31733,
+ "안": 31734,
+ "默": 31735,
+ "박": 31736,
+ "용": 31737,
+ "✿": 31738,
+ "楽": 31739,
+ "沢": 31740,
+ "羅": 31741,
+ "Ė": 31742,
+ "ʎ": 31743,
+ "忠": 31744,
+ "错": 31745,
+ "단": 31746,
+ "면": 31747,
+ "ķ": 31748,
+ "桥": 31749,
+ "雲": 31750,
+ "该": 31751,
+ "ṯ": 31752,
+ "岩": 31753,
+ "남": 31754,
+ "ỹ": 31755,
+ "专": 31756,
+ "切": 31757,
+ "店": 31758,
+ "朱": 31759,
+ "ף": 31760,
+ "ず": 31761,
+ "幸": 31762,
+ "母": 31763,
+ "ɫ": 31764,
+ "々": 31765,
+ "∷": 31766,
+ "串": 31767,
+ "击": 31768,
+ "Ἐ": 31769,
+ "設": 31770,
+ "⊤": 31771,
+ "ₗ": 31772,
+ "經": 31773,
+ "강": 31774,
+ "ပ": 31775,
+ "।": 31776,
+ "ѐ": 31777,
+ "ᾶ": 31778,
+ "➖": 31779,
+ "座": 31780,
+ "씨": 31781,
+ "ぶ": 31782,
+ "Ţ": 31783,
+ "云": 31784,
+ "告": 31785,
+ "変": 31786,
+ "试": 31787,
+ "隆": 31788,
+ "개": 31789,
+ "պ": 31790,
+ "判": 31791,
+ "劉": 31792,
+ "˜": 31793,
+ "ˠ": 31794,
+ "编": 31795,
+ "ณ": 31796,
+ "ữ": 31797,
+ "达": 31798,
+ "Ě": 31799,
+ "ܝ": 31800,
+ "ြ": 31801,
+ "ḷ": 31802,
+ "右": 31803,
+ "들": 31804,
+ "ŝ": 31805,
+ "ӏ": 31806,
+ "్": 31807,
+ "എ": 31808,
+ "ற": 31809,
+ "复": 31810,
+ "看": 31811,
+ "話": 31812,
+ "坂": 31813,
+ "尔": 31814,
+ "衛": 31815,
+ "զ": 31816,
+ "차": 31817,
+ "丸": 31818,
+ "样": 31819,
+ "鬼": 31820,
+ "़": 31821,
+ "학": 31822,
+ "喜": 31823,
+ "斯": 31824,
+ "銀": 31825,
+ "만": 31826,
+ "Ξ": 31827,
+ "ც": 31828,
+ "群": 31829,
+ "近": 31830,
+ "塔": 31831,
+ "ϊ": 31832,
+ "ந": 31833,
+ "む": 31834,
+ "确": 31835,
+ "索": 31836,
+ "∇": 31837,
+ "非": 31838,
+ "望": 31839,
+ "❯": 31840,
+ "希": 31841,
+ "ỳ": 31842,
+ "甲": 31843,
+ "越": 31844,
+ "鳥": 31845,
+ "麻": 31846,
+ "雅": 31847,
+ "拳": 31848,
+ "ក": 31849,
+ "溪": 31850,
+ "测": 31851,
+ "话": 31852,
+ "池": 31853,
+ "菜": 31854,
+ "食": 31855,
+ "터": 31856,
+ "ਿ": 31857,
+ "渡": 31858,
+ "速": 31859,
+ "ھ": 31860,
+ "ರ": 31861,
+ "陈": 31862,
+ "健": 31863,
+ "ো": 31864,
+ "ක": 31865,
+ "ὺ": 31866,
+ "军": 31867,
+ "庄": 31868,
+ "红": 31869,
+ "Ħ": 31870,
+ "論": 31871,
+ "Ÿ": 31872,
+ "Έ": 31873,
+ "ự": 31874,
+ "孝": 31875,
+ "頭": 31876,
+ "飛": 31877,
+ "˚": 31878,
+ "▓": 31879,
+ "ً": 31880,
+ "": 31881,
+ "么": 31882,
+ "達": 31883,
+ "ѫ": 31884,
+ "巴": 31885,
+ "洞": 31886,
+ "貴": 31887,
+ "项": 31888,
+ "ദ": 31889,
+ "ɵ": 31890,
+ "̍": 31891,
+ "ҡ": 31892,
+ "种": 31893,
+ "运": 31894,
+ "식": 31895,
+ "ྱ": 31896,
+ "ḳ": 31897,
+ "彦": 31898,
+ "⥤": 31899,
+ "书": 31900,
+ "构": 31901,
+ "米": 31902,
+ "连": 31903,
+ "操": 31904,
+ "装": 31905,
+ "과": 31906,
+ "ぐ": 31907,
+ "反": 31908,
+ "̌": 31909,
+ "仮": 31910,
+ "员": 31911,
+ "昭": 31912,
+ "ശ": 31913,
+ "兴": 31914,
+ "客": 31915,
+ "删": 31916,
+ "ම": 31917,
+ "ව": 31918,
+ "პ": 31919,
+ "ċ": 31920,
+ "ഷ": 31921,
+ "သ": 31922,
+ "ᵉ": 31923,
+ "居": 31924,
+ "타": 31925,
+ "𝓝": 31926,
+ "थ": 31927,
+ "現": 31928,
+ "ˇ": 31929,
+ "종": 31930,
+ "助": 31931,
+ "唐": 31932,
+ "瀬": 31933,
+ "ន": 31934,
+ "微": 31935,
+ "1": 31936,
+ "Ġ": 31937,
+ "ほ": 31938,
+ "舞": 31939,
+ "내": 31940,
+ "중": 31941,
+ "Ē": 31942,
+ "导": 31943,
+ "效": 31944,
+ "방": 31945,
+ "ḏ": 31946,
+ "深": 31947,
+ "梅": 31948,
+ "料": 31949,
+ "월": 31950,
+ "每": 31951,
+ "洲": 31952,
+ "회": 31953,
+ "茶": 31954,
+ "败": 31955,
+ "ഞ": 31956,
+ "ể": 31957,
+ "ヨ": 31958,
+ "些": 31959,
+ "双": 31960,
+ "嘉": 31961,
+ "모": 31962,
+ "바": 31963,
+ "ษ": 31964,
+ "進": 31965,
+ "음": 31966,
+ "ญ": 31967,
+ "丁": 31968,
+ "故": 31969,
+ "計": 31970,
+ "遠": 31971,
+ "교": 31972,
+ "재": 31973,
+ "候": 31974,
+ "房": 31975,
+ "명": 31976,
+ "两": 31977,
+ "ფ": 31978,
+ "才": 31979,
+ "합": 31980,
+ "止": 31981,
+ "番": 31982,
+ "ɯ": 31983,
+ "奇": 31984,
+ "怪": 31985,
+ "联": 31986,
+ "역": 31987,
+ "泰": 31988,
+ "백": 31989,
+ "ὀ": 31990,
+ "げ": 31991,
+ "べ": 31992,
+ "边": 31993,
+ "还": 31994,
+ "黃": 31995,
+ "왕": 31996,
+ "收": 31997,
+ "弘": 31998,
+ "给": 31999
+ },
+ "merges": [
+ "▁ t",
+ "e r",
+ "i n",
+ "▁ a",
+ "e n",
+ "o n",
+ "▁t h",
+ "▁ th",
+ "e s",
+ "▁ s",
+ "▁ d",
+ "a t",
+ "o r",
+ "a n",
+ "▁ c",
+ "i s",
+ "r e",
+ "i t",
+ "▁t he",
+ "▁th e",
+ "▁ the",
+ "a r",
+ "l e",
+ "▁ w",
+ "▁ p",
+ "o u",
+ "a l",
+ "▁ f",
+ "▁ m",
+ "e d",
+ "▁ o",
+ "▁ b",
+ "o m",
+ "io n",
+ "i on",
+ "in g",
+ "i ng",
+ "i c",
+ "a s",
+ "e l",
+ "en t",
+ "e nt",
+ "▁i n",
+ "▁ in",
+ "▁ h",
+ "n d",
+ "e t",
+ "▁ l",
+ "▁ n",
+ "s t",
+ "▁t o",
+ "▁ to",
+ "c h",
+ "▁ I",
+ "r o",
+ "i l",
+ "▁o f",
+ "▁ of",
+ "d e",
+ "c t",
+ "▁ (",
+ "a m",
+ "▁ C",
+ "▁d e",
+ "▁ de",
+ "▁ S",
+ "▁ u",
+ "▁ A",
+ "▁ \\",
+ "▁ e",
+ "▁a nd",
+ "▁an d",
+ "▁ and",
+ "▁ T",
+ "o l",
+ "▁ v",
+ "i m",
+ "o t",
+ "a d",
+ "u t",
+ "▁ g",
+ "e m",
+ "u r",
+ "i d",
+ "▁ *",
+ "i g",
+ "r a",
+ "▁r e",
+ "▁ re",
+ "▁i s",
+ "▁ is",
+ "q u",
+ "o w",
+ "▁ M",
+ "es t",
+ "e st",
+ "▁ y",
+ "s e",
+ "v e",
+ "c e",
+ "i e",
+ "u n",
+ "▁ P",
+ "▁ B",
+ "a g",
+ "u l",
+ "▁ =",
+ "h e",
+ "en d",
+ "e nd",
+ "od e",
+ "o de",
+ "te r",
+ "t er",
+ "me nt",
+ "men t",
+ "m ent",
+ "o s",
+ "▁ D",
+ "i f",
+ "at ion",
+ "ati on",
+ "atio n",
+ "a tion",
+ "▁f or",
+ "▁fo r",
+ "▁ for",
+ "▁ r",
+ "▁ L",
+ "▁y ou",
+ "▁yo u",
+ "▁ you",
+ "▁b e",
+ "▁ be",
+ "l y",
+ "ve r",
+ "v er",
+ "a b",
+ "t e",
+ "▁i t",
+ "▁ it",
+ "▁o n",
+ "▁ on",
+ "r i",
+ "u s",
+ "▁ \"",
+ "▁w h",
+ "▁ wh",
+ "▁c on",
+ "▁co n",
+ "▁ con",
+ "▁ H",
+ "▁s t",
+ "▁ st",
+ "i r",
+ "▁ E",
+ "▁ F",
+ "c k",
+ "▁a n",
+ "▁ an",
+ "t h",
+ "e g",
+ "a y",
+ "it h",
+ "i th",
+ "▁ R",
+ "is t",
+ "i st",
+ "an d",
+ "a nd",
+ "▁t hat",
+ "▁th at",
+ "▁ that",
+ "▁a l",
+ "▁ al",
+ "▁ $",
+ "▁ #",
+ "o d",
+ "u m",
+ "▁ W",
+ "h t",
+ "co de",
+ "cod e",
+ "c ode",
+ "▁ G",
+ "at e",
+ "a te",
+ "es s",
+ "e ss",
+ "▁ N",
+ "er e",
+ "e re",
+ "p p",
+ "▁a s",
+ "▁ as",
+ "▁s e",
+ "▁ se",
+ "▁p ro",
+ "▁pr o",
+ "▁ pro",
+ "▁w ith",
+ "▁wit h",
+ "▁ with",
+ "p e",
+ "▁ k",
+ "er s",
+ "e rs",
+ "p t",
+ ") ;",
+ "l o",
+ "▁c om",
+ "▁co m",
+ "▁ com",
+ "am e",
+ "a me",
+ "▁ `",
+ "▁C om",
+ "▁Co m",
+ "▁ Com",
+ "i a",
+ "an t",
+ "a nt",
+ "▁l a",
+ "▁ la",
+ "▁ {",
+ "▁e n",
+ "▁ en",
+ "ct ion",
+ "c tion",
+ "▁e x",
+ "▁ ex",
+ "l d",
+ "u b",
+ "▁ j",
+ "l a",
+ "u e",
+ "▁ J",
+ "ic h",
+ "i ch",
+ "▁d o",
+ "▁ do",
+ "▁ O",
+ "▁q u",
+ "▁ qu",
+ "i v",
+ "or t",
+ "o rt",
+ "ar t",
+ "a rt",
+ "▁u n",
+ "▁ un",
+ "▁# #",
+ "▁ ##",
+ "▁t his",
+ "▁th is",
+ "▁ this",
+ "k e",
+ "▁h a",
+ "▁ ha",
+ "▁ -",
+ "ou t",
+ "o ut",
+ "▁T he",
+ "▁Th e",
+ "▁ The",
+ "▁n ot",
+ "▁no t",
+ "▁ not",
+ "▁n e",
+ "▁ ne",
+ "il l",
+ "i ll",
+ "▁l e",
+ "▁ le",
+ "c i",
+ "ro m",
+ "r om",
+ "in e",
+ "i ne",
+ "/ /",
+ "o p",
+ "eg in",
+ "e gin",
+ "▁Com ment",
+ "▁Comm ent",
+ "▁ Comment",
+ "be gin",
+ "beg in",
+ "b egin",
+ "с т",
+ "as s",
+ "a ss",
+ "i z",
+ ") .",
+ "o g",
+ "▁ п",
+ "▁o r",
+ "▁ or",
+ "▁w as",
+ "▁wa s",
+ "▁ was",
+ "▁a t",
+ "▁ at",
+ "ou r",
+ "o ur",
+ "▁ i",
+ "ai n",
+ "a in",
+ "▁ K",
+ "н а",
+ "▁ V",
+ "g e",
+ "▁s u",
+ "▁ su",
+ "a p",
+ "ag e",
+ "a ge",
+ "ou ld",
+ "oul d",
+ "o uld",
+ "n e",
+ "a v",
+ "x t",
+ "or e",
+ "o re",
+ "il e",
+ "i le",
+ "- -",
+ "▁ в",
+ "▁b y",
+ "▁ by",
+ "l i",
+ "at h",
+ "a th",
+ "р а",
+ "be r",
+ "b er",
+ "ac h",
+ "a ch",
+ "al l",
+ "a ll",
+ "▁T h",
+ "▁ Th",
+ "ul t",
+ "u lt",
+ "▁ }",
+ "▁ U",
+ "▁u s",
+ "▁ us",
+ "▁ z",
+ "us t",
+ "u st",
+ "▁h ave",
+ "▁ha ve",
+ "▁hav e",
+ "▁ have",
+ "li c",
+ "l ic",
+ "н и",
+ "▁c an",
+ "▁ca n",
+ "▁ can",
+ "t r",
+ "co m",
+ "c om",
+ ") ,",
+ "▁I n",
+ "▁ In",
+ "in d",
+ "i nd",
+ "el l",
+ "e ll",
+ "▁f rom",
+ "▁fr om",
+ "▁fro m",
+ "▁ from",
+ "о в",
+ "t o",
+ "▁ [",
+ "ab le",
+ "abl e",
+ "a ble",
+ "os t",
+ "o st",
+ "▁c h",
+ "▁ ch",
+ "ec t",
+ "e ct",
+ "ig ht",
+ "igh t",
+ "in t",
+ "i nt",
+ "▁ '",
+ "▁a re",
+ "▁ar e",
+ "▁ are",
+ "▁i m",
+ "▁ im",
+ "▁s h",
+ "▁ sh",
+ "▁ <",
+ "▁A n",
+ "▁ An",
+ "▁ с",
+ "at a",
+ "a ta",
+ "ir e",
+ "i re",
+ "▁t r",
+ "▁ tr",
+ "co n",
+ "c on",
+ "or d",
+ "o rd",
+ "it y",
+ "i ty",
+ "ar d",
+ "a rd",
+ "▁h e",
+ "▁ he",
+ "▁b ut",
+ "▁bu t",
+ "▁ but",
+ "o c",
+ "= \"",
+ "▁p r",
+ "▁ pr",
+ "ur e",
+ "u re",
+ "pe r",
+ "p er",
+ "ac k",
+ "a ck",
+ "or k",
+ "on g",
+ "o ng",
+ "an s",
+ "a ns",
+ "к о",
+ "pl e",
+ "p le",
+ "▁d es",
+ "▁de s",
+ "▁ des",
+ "o k",
+ "or m",
+ "o rm",
+ "we r",
+ "w er",
+ "a k",
+ "p r",
+ "as e",
+ "a se",
+ "▁e l",
+ "▁ el",
+ "p h",
+ "a c",
+ "▁u nd",
+ "▁un d",
+ "▁ und",
+ "▁a r",
+ "▁ ar",
+ "▁i f",
+ "▁ if",
+ "u d",
+ "p s",
+ "it e",
+ "i te",
+ "bl e",
+ "b le",
+ "н о",
+ "fe r",
+ "f er",
+ "p l",
+ "iv e",
+ "i ve",
+ "an g",
+ "a ng",
+ "en s",
+ "e ns",
+ "р о",
+ "▁s o",
+ "▁ so",
+ "s o",
+ "as t",
+ "a st",
+ "( )",
+ "sw er",
+ "s wer",
+ "r u",
+ "ie s",
+ "i es",
+ "▁ :",
+ "a u",
+ "o v",
+ "р е",
+ "г о",
+ "▁d er",
+ "▁de r",
+ "▁ der",
+ "▁m y",
+ "▁ my",
+ "▁w e",
+ "▁ we",
+ "▁m e",
+ "▁ me",
+ "n t",
+ "▁a d",
+ "▁ ad",
+ "ur n",
+ "u rn",
+ "▁y our",
+ "▁you r",
+ "▁yo ur",
+ "▁ your",
+ ":/ /",
+ ": //",
+ "ar e",
+ "a re",
+ "▁a ll",
+ "▁al l",
+ "▁ all",
+ "f f",
+ "i o",
+ "es tion",
+ "est ion",
+ "esti on",
+ "im e",
+ "i me",
+ "▁e r",
+ "▁ er",
+ "la ss",
+ "las s",
+ "l ass",
+ "▁ и",
+ "▁wh ich",
+ "▁ which",
+ "om e",
+ "o me",
+ "on t",
+ "o nt",
+ "▁p ar",
+ "▁pa r",
+ "▁ par",
+ "▁m a",
+ "▁ ma",
+ "▁ Y",
+ "\" ,",
+ "▁ о",
+ "f t",
+ "ia l",
+ "i al",
+ "c c",
+ "ou nd",
+ "oun d",
+ "o und",
+ "▁l i",
+ "▁ li",
+ "▁re s",
+ "▁r es",
+ "▁ res",
+ "et h",
+ "e th",
+ "je ct",
+ "j ect",
+ "▁a pp",
+ "▁ap p",
+ "▁ app",
+ "▁S t",
+ "▁ St",
+ "ic e",
+ "i ce",
+ "▁a m",
+ "▁ am",
+ "ac t",
+ "a ct",
+ "▁d el",
+ "▁de l",
+ "▁ del",
+ "g r",
+ "at ed",
+ "ate d",
+ "a ted",
+ "ie r",
+ "i er",
+ "▁a b",
+ "▁ ab",
+ "▁e t",
+ "▁ et",
+ "al ly",
+ "all y",
+ ". .",
+ "po rt",
+ "por t",
+ "p ort",
+ "i k",
+ "▁p er",
+ "▁pe r",
+ "▁ per",
+ "▁c ont",
+ "▁con t",
+ "▁co nt",
+ "▁ cont",
+ "р и",
+ "к а",
+ "se r",
+ "s er",
+ "л и",
+ "l l",
+ "ie w",
+ "i ew",
+ "ig n",
+ "i gn",
+ "_ {",
+ "pu t",
+ "p ut",
+ "on e",
+ "o ne",
+ "un ction",
+ "unc tion",
+ "unct ion",
+ "▁d i",
+ "▁ di",
+ "ar y",
+ "a ry",
+ "it ion",
+ "iti on",
+ "i tion",
+ "m a",
+ "е н",
+ "ge t",
+ "g et",
+ "▁l o",
+ "▁ lo",
+ "▁v al",
+ "▁va l",
+ "▁ val",
+ "▁ Q",
+ "ra n",
+ "r an",
+ "▁ д",
+ "en ce",
+ "enc e",
+ "▁w ork",
+ "▁wor k",
+ "▁ work",
+ "▁н а",
+ "▁ на",
+ "i p",
+ "it em",
+ "ite m",
+ "i tem",
+ "yp e",
+ "y pe",
+ "▁ &",
+ "▁h is",
+ "▁hi s",
+ "▁ his",
+ "▁u se",
+ "▁us e",
+ "▁ use",
+ "de r",
+ "d er",
+ "▁An swer",
+ "▁Ans wer",
+ "▁ Answer",
+ "▁w ill",
+ "▁wil l",
+ "▁ will",
+ "iz e",
+ "i ze",
+ "т а",
+ "lo w",
+ "l ow",
+ "▁C h",
+ "▁ Ch",
+ "▁g et",
+ "▁ge t",
+ "▁ get",
+ "id e",
+ "i de",
+ "ou s",
+ "o us",
+ "in k",
+ "pt ion",
+ "p tion",
+ "л а",
+ "tu rn",
+ "t urn",
+ "un g",
+ "u ng",
+ "e c",
+ "u g",
+ "fo rm",
+ "for m",
+ "f orm",
+ "re s",
+ "r es",
+ "ht t",
+ "h tt",
+ "ou g",
+ "o ug",
+ "л ь",
+ "▁n o",
+ "▁ no",
+ "c l",
+ "▁r o",
+ "▁ ro",
+ "▁o ne",
+ "▁on e",
+ "▁ one",
+ "t t",
+ "cr i",
+ "c ri",
+ "d u",
+ "▁u p",
+ "▁ up",
+ "т о",
+ "( \"",
+ "▁o b",
+ "▁ ob",
+ "w e",
+ "or y",
+ "o ry",
+ "▁e st",
+ "▁es t",
+ "▁ est",
+ "er y",
+ "e ry",
+ "ie l",
+ "i el",
+ "st r",
+ "s tr",
+ "o b",
+ "▁qu e",
+ "▁q ue",
+ "▁ que",
+ "ia n",
+ "i an",
+ "▁o ut",
+ "▁ou t",
+ "▁ out",
+ "▁p l",
+ "▁ pl",
+ "▁n ew",
+ "▁ne w",
+ "▁ new",
+ "к и",
+ "▁ +",
+ "r y",
+ "ot h",
+ "o th",
+ "th er",
+ "the r",
+ "t her",
+ "▁v ar",
+ "▁va r",
+ "▁ var",
+ "▁w ould",
+ "▁wo uld",
+ "▁s er",
+ "▁se r",
+ "▁ ser",
+ "ter n",
+ "te rn",
+ "t ern",
+ "te xt",
+ "tex t",
+ "t ext",
+ "▁t here",
+ "▁th ere",
+ "▁the re",
+ "▁ther e",
+ "▁ there",
+ "is h",
+ "i sh",
+ "ro r",
+ "r or",
+ "т е",
+ "▁s et",
+ "▁se t",
+ "▁ set",
+ "▁ @",
+ "▁п о",
+ "▁ по",
+ "▁t e",
+ "▁ te",
+ "e x",
+ "▁re turn",
+ "▁ret urn",
+ "▁ return",
+ "ai l",
+ "a il",
+ "▁a ny",
+ "▁an y",
+ "▁ any",
+ "▁I t",
+ "▁ It",
+ "▁f unction",
+ "▁fun ction",
+ "▁func tion",
+ "▁ function",
+ "{ \\",
+ "' ,",
+ "é s",
+ "al e",
+ "a le",
+ "а н",
+ "▁w hen",
+ "▁wh en",
+ "▁whe n",
+ "▁ when",
+ "i b",
+ "▁g o",
+ "▁ go",
+ "an ce",
+ "anc e",
+ "▁h ad",
+ "▁ha d",
+ "▁ had",
+ "▁Q u",
+ "▁ Qu",
+ "▁c omp",
+ "▁com p",
+ "▁co mp",
+ "▁ comp",
+ "л е",
+ "▁ з",
+ "ma th",
+ "mat h",
+ "m ath",
+ "▁h as",
+ "▁ha s",
+ "▁ has",
+ "▁ м",
+ "▁p re",
+ "▁pr e",
+ "▁ pre",
+ "en er",
+ "ene r",
+ "e ner",
+ "▁p art",
+ "▁par t",
+ "▁pa rt",
+ "▁ part",
+ "el f",
+ "▁d ie",
+ "▁di e",
+ "▁ die",
+ "▁l ike",
+ "▁li ke",
+ "▁lik e",
+ "▁ like",
+ "ra y",
+ "r ay",
+ "ir st",
+ "irs t",
+ "▁d is",
+ "▁di s",
+ "▁ dis",
+ "▁m an",
+ "▁ma n",
+ "▁ man",
+ "ri t",
+ "r it",
+ "▁t hen",
+ "▁th en",
+ "▁the n",
+ "▁ then",
+ "▁c lass",
+ "▁cl ass",
+ "▁cla ss",
+ "▁clas s",
+ "▁ class",
+ "pr o",
+ "p ro",
+ "▁p o",
+ "▁ po",
+ "▁u sing",
+ "▁us ing",
+ "▁ using",
+ "e b",
+ "▁c ode",
+ "▁co de",
+ "▁cod e",
+ "▁ code",
+ "ow n",
+ "o wn",
+ "▁s ome",
+ "▁so me",
+ "▁som e",
+ "▁ some",
+ "ce s",
+ "c es",
+ "▁$ \\",
+ "▁ $\\",
+ "е р",
+ "le ct",
+ "l ect",
+ "▁a u",
+ "▁ au",
+ "is ch",
+ "isc h",
+ "i sch",
+ "▁c ol",
+ "▁co l",
+ "▁ col",
+ "▁ –",
+ "u p",
+ "on s",
+ "o ns",
+ "▁a dd",
+ "▁ad d",
+ "▁ add",
+ "il d",
+ "i ld",
+ "is s",
+ "i ss",
+ "va l",
+ "v al",
+ "ou nt",
+ "oun t",
+ "o unt",
+ "le s",
+ "l es",
+ "ve nt",
+ "ven t",
+ "v ent",
+ "▁ Z",
+ "I n",
+ "ro w",
+ "r ow",
+ "ea r",
+ "e ar",
+ "at ions",
+ "ation s",
+ "ati ons",
+ "atio ns",
+ "a h",
+ "qu e",
+ "q ue",
+ "ub lic",
+ "u blic",
+ "an k",
+ "▁s p",
+ "▁ sp",
+ "▁W h",
+ "▁ Wh",
+ "-- --",
+ "--- -",
+ "- ---",
+ "s k",
+ "e w",
+ "ag s",
+ "a gs",
+ "т и",
+ "an n",
+ "a nn",
+ "▁ —",
+ "er t",
+ "e rt",
+ "ac e",
+ "a ce",
+ "sc h",
+ "s ch",
+ "▁n eed",
+ "▁ne ed",
+ "▁ need",
+ "▁ à",
+ "ie n",
+ "i en",
+ "ou gh",
+ "oug h",
+ "o ugh",
+ "н е",
+ "▁d ef",
+ "▁de f",
+ "▁ def",
+ "i j",
+ "er n",
+ "e rn",
+ "▁w hat",
+ "▁wh at",
+ "▁ what",
+ "▁A r",
+ "▁ Ar",
+ "w o",
+ "m l",
+ "< /",
+ "▁R e",
+ "▁ Re",
+ "▁e s",
+ "▁ es",
+ "▁in st",
+ "▁ins t",
+ "▁ inst",
+ "b o",
+ "a z",
+ "▁# ##",
+ "▁## #",
+ "▁ б",
+ "er m",
+ "e rm",
+ "▁A l",
+ "▁ Al",
+ "le d",
+ "l ed",
+ "д а",
+ "te n",
+ "t en",
+ "se t",
+ "s et",
+ "л о",
+ "▁c omm",
+ "▁com m",
+ "▁co mm",
+ "▁ comm",
+ "s h",
+ "в а",
+ "▁ /",
+ "▁d ata",
+ "▁da ta",
+ "▁dat a",
+ "▁ data",
+ "▁/ /",
+ "▁ //",
+ "] (",
+ "▁s tr",
+ "▁st r",
+ "▁ str",
+ "os e",
+ "o se",
+ "▁U n",
+ "▁ Un",
+ "ve n",
+ "v en",
+ "S t",
+ ".. .",
+ ". ..",
+ "▁ С",
+ "ys t",
+ "y st",
+ "▁ «",
+ "ic k",
+ "i ck",
+ "i x",
+ "pa r",
+ "p ar",
+ "▁ у",
+ "▁w ant",
+ "▁wa nt",
+ "n g",
+ "ot e",
+ "o te",
+ "▁g r",
+ "▁ gr",
+ "▁d u",
+ "▁ du",
+ "▁ .",
+ "un d",
+ "u nd",
+ "▁on ly",
+ "▁ only",
+ "▁s a",
+ "▁ sa",
+ "el y",
+ "e ly",
+ "ve rs",
+ "ver s",
+ "v ers",
+ "▁e nt",
+ "▁en t",
+ "▁ ent",
+ ") )",
+ "( '",
+ "▁m od",
+ "▁mo d",
+ "▁ mod",
+ "av a",
+ "a va",
+ "to n",
+ "t on",
+ "▁sh ould",
+ "▁sho uld",
+ "▁ should",
+ "em ent",
+ "eme nt",
+ "emen t",
+ "e ment",
+ "▁f orm",
+ "▁for m",
+ "▁fo rm",
+ "▁ form",
+ "▁al so",
+ "▁als o",
+ "▁ also",
+ "▁s c",
+ "▁ sc",
+ "in gs",
+ "ing s",
+ "▁Y ou",
+ "▁ You",
+ "ó n",
+ "▁k n",
+ "▁ kn",
+ "() ;",
+ "( );",
+ "▁ |",
+ "▁w ere",
+ "▁we re",
+ "▁wer e",
+ "s s",
+ "▁Qu estion",
+ "▁ Question",
+ "is e",
+ "i se",
+ "▁th ey",
+ "▁the y",
+ "▁ they",
+ "▁D e",
+ "▁ De",
+ "on d",
+ "o nd",
+ "▁s ol",
+ "▁so l",
+ "▁ sol",
+ "▁f ol",
+ "▁fo l",
+ "▁ fol",
+ "▁m ore",
+ "▁mo re",
+ "▁mor e",
+ "▁ more",
+ "▁h er",
+ "▁he r",
+ "▁ her",
+ "▁ _",
+ "▁ é",
+ "at ch",
+ "ft er",
+ "fte r",
+ "f ter",
+ "▁c re",
+ "▁cr e",
+ "▁ cre",
+ "lo ck",
+ "loc k",
+ "l ock",
+ "tr ing",
+ "tri ng",
+ "t ring",
+ "▁T his",
+ "▁Th is",
+ "▁ This",
+ "z e",
+ "ad o",
+ "a do",
+ "ul l",
+ "u ll",
+ "ge r",
+ "g er",
+ "b e",
+ "▁o ther",
+ "▁ot her",
+ "▁ other",
+ "▁T ags",
+ "▁Tag s",
+ "▁Ta gs",
+ "▁ Tags",
+ "ut ion",
+ "uti on",
+ "u tion",
+ "ic t",
+ "i ct",
+ "▁h ow",
+ "▁ho w",
+ "▁ how",
+ "▁ x",
+ "▁S e",
+ "▁ Se",
+ "▁c he",
+ "▁ch e",
+ "▁ che",
+ "cri pt",
+ "cr ipt",
+ "▁j ust",
+ "▁ju st",
+ "▁ just",
+ "▁p os",
+ "▁po s",
+ "▁ pos",
+ "an ge",
+ "ang e",
+ "if ic",
+ "ifi c",
+ "i fic",
+ "re e",
+ "r ee",
+ "} }",
+ "▁t ime",
+ "▁tim e",
+ "▁ti me",
+ "▁ time",
+ "ap p",
+ "a pp",
+ "н ы",
+ "▁f ile",
+ "▁fil e",
+ "▁fi le",
+ "▁ file",
+ "ar k",
+ "ic al",
+ "ica l",
+ "i cal",
+ "▁f irst",
+ "▁fir st",
+ "▁ first",
+ "▁in t",
+ "▁i nt",
+ "▁ int",
+ "▁ В",
+ "▁H e",
+ "▁ He",
+ "t a",
+ "um ent",
+ "ume nt",
+ "umen t",
+ "u ment",
+ "or s",
+ "o rs",
+ "le ment",
+ "lem ent",
+ "l ement",
+ "ra c",
+ "r ac",
+ "▁a g",
+ "▁ ag",
+ "▁do es",
+ "▁ does",
+ "y n",
+ "re ad",
+ "rea d",
+ "r ead",
+ "ua l",
+ "u al",
+ "▁L e",
+ "▁ Le",
+ "y s",
+ "▁e m",
+ "▁ em",
+ "▁n um",
+ "▁nu m",
+ "▁ num",
+ "ve l",
+ "v el",
+ "д и",
+ "ov er",
+ "ove r",
+ "o ver",
+ "▁d if",
+ "▁di f",
+ "et hod",
+ "eth od",
+ "▁I f",
+ "▁ If",
+ "▁s pe",
+ "▁sp e",
+ "▁ spe",
+ "y m",
+ "▁t hem",
+ "▁th em",
+ "▁the m",
+ "▁in to",
+ "▁int o",
+ "▁ into",
+ "▁l es",
+ "▁le s",
+ "▁ les",
+ "▁it s",
+ "▁i ts",
+ "▁ its",
+ "es e",
+ "e se",
+ "ie ld",
+ "iel d",
+ "i eld",
+ "▁p ublic",
+ "▁pub lic",
+ "▁pu blic",
+ "▁publi c",
+ "▁ public",
+ "▁ П",
+ "▁d en",
+ "▁de n",
+ "▁ den",
+ "yst em",
+ "ys tem",
+ "o f",
+ "▁o ver",
+ "▁ov er",
+ "▁ over",
+ "- >",
+ "▁f il",
+ "▁fi l",
+ "▁ fil",
+ "na me",
+ "nam e",
+ "n ame",
+ "in al",
+ "ina l",
+ "i nal",
+ "▁i l",
+ "▁ il",
+ "am ple",
+ "amp le",
+ "▁w ay",
+ "▁wa y",
+ "▁ way",
+ "ic a",
+ "i ca",
+ "в о",
+ "ce ss",
+ "ces s",
+ "c ess",
+ "it t",
+ "i tt",
+ "uc h",
+ "u ch",
+ "▁w here",
+ "▁wh ere",
+ "▁whe re",
+ "▁ where",
+ "м и",
+ "or g",
+ "o rg",
+ "htt ps",
+ "http s",
+ "▁v o",
+ "▁ vo",
+ "ie nt",
+ "ien t",
+ "i ent",
+ "ov e",
+ "o ve",
+ "▁val ue",
+ "▁valu e",
+ "▁ value",
+ "en g",
+ "e ng",
+ "▁L a",
+ "▁ La",
+ "^ {",
+ "re f",
+ "r ef",
+ "ie d",
+ "i ed",
+ "E R",
+ "▁s tat",
+ "▁st at",
+ "▁sta t",
+ "▁ stat",
+ "fi g",
+ "f ig",
+ "m e",
+ "▁v on",
+ "▁vo n",
+ "▁ von",
+ "▁in ter",
+ "▁int er",
+ "▁inte r",
+ "▁ inter",
+ "ro id",
+ "r oid",
+ "at er",
+ "ate r",
+ "a ter",
+ "▁the ir",
+ "▁b et",
+ "▁be t",
+ "▁ bet",
+ "▁e in",
+ "▁ ein",
+ "} \\",
+ "\" >",
+ "▁s ub",
+ "▁su b",
+ "▁ sub",
+ "▁o p",
+ "▁ op",
+ "▁d on",
+ "▁do n",
+ "▁ don",
+ "t y",
+ "▁t ry",
+ "▁tr y",
+ "▁ try",
+ "▁P ro",
+ "▁Pr o",
+ "▁ Pro",
+ "▁t ra",
+ "▁tr a",
+ "▁ tra",
+ "▁s ame",
+ "▁sa me",
+ "▁sam e",
+ "▁ same",
+ "e p",
+ "▁t wo",
+ "▁tw o",
+ "▁ two",
+ "▁n ame",
+ "▁na me",
+ "▁nam e",
+ "▁ name",
+ "ol d",
+ "o ld",
+ "le t",
+ "l et",
+ "▁s im",
+ "▁si m",
+ "▁ sim",
+ "s p",
+ "▁a v",
+ "▁ av",
+ "br e",
+ "b re",
+ "ble m",
+ "bl em",
+ "b lem",
+ "e y",
+ "▁c ould",
+ "▁co uld",
+ "▁cou ld",
+ "▁ could",
+ "▁c or",
+ "▁co r",
+ "▁ cor",
+ "▁a cc",
+ "▁ac c",
+ "▁ acc",
+ "ay s",
+ "a ys",
+ "cr e",
+ "c re",
+ "ur r",
+ "u rr",
+ "s i",
+ "▁con st",
+ "▁cons t",
+ "▁ const",
+ "ue s",
+ "u es",
+ "} $",
+ "V iew",
+ "▁a ct",
+ "▁ac t",
+ "▁ act",
+ "▁b o",
+ "▁ bo",
+ "▁к о",
+ "▁ ко",
+ "▁s om",
+ "▁so m",
+ "▁ som",
+ "▁ab out",
+ "▁ about",
+ "la nd",
+ "lan d",
+ "l and",
+ "me r",
+ "m er",
+ "▁l ist",
+ "▁li st",
+ "▁ list",
+ "ca l",
+ "c al",
+ "▁im port",
+ "▁imp ort",
+ "▁ import",
+ "co l",
+ "c ol",
+ "▁n a",
+ "▁ na",
+ "n a",
+ ": :",
+ "▁w ho",
+ "▁wh o",
+ "▁ who",
+ "▁e rror",
+ "▁er ror",
+ "▁err or",
+ "▁ error",
+ "▁ X",
+ "at or",
+ "ato r",
+ "a tor",
+ "ex t",
+ "e xt",
+ "▁b een",
+ "▁be en",
+ "é r",
+ "▁r un",
+ "▁ru n",
+ "▁ run",
+ "po s",
+ "p os",
+ "▁c l",
+ "▁ cl",
+ "* *",
+ "▁ К",
+ "ul ar",
+ "ula r",
+ "u lar",
+ "au se",
+ "aus e",
+ "a use",
+ "▁re g",
+ "▁r eg",
+ "▁ reg",
+ "▁k now",
+ "▁kn ow",
+ "▁ know",
+ "▁s ee",
+ "▁se e",
+ "▁ see",
+ "▁h im",
+ "▁hi m",
+ "▁ him",
+ "ni ng",
+ "n ing",
+ "▁з а",
+ "▁ за",
+ "at es",
+ "ate s",
+ "a tes",
+ "fo re",
+ "for e",
+ "f ore",
+ "ion s",
+ "io ns",
+ "i ons",
+ "▁h el",
+ "▁he l",
+ "▁ hel",
+ "ut e",
+ "u te",
+ "▁re m",
+ "▁r em",
+ "▁ rem",
+ "▁г о",
+ "▁ го",
+ "▁M ar",
+ "▁Ma r",
+ "▁ Mar",
+ "р у",
+ "vi ce",
+ "vic e",
+ "v ice",
+ "ir ect",
+ "ire ct",
+ "i rect",
+ "ne r",
+ "n er",
+ "▁u nder",
+ "▁un der",
+ "▁und er",
+ "▁ under",
+ "ri b",
+ "r ib",
+ "h r",
+ "ч е",
+ "▁A s",
+ "▁ As",
+ "▁e nd",
+ "▁en d",
+ "▁ end",
+ "em ber",
+ "emb er",
+ "▁ а",
+ "▁a tt",
+ "▁at t",
+ "▁ att",
+ "in a",
+ "i na",
+ "so n",
+ "s on",
+ "▁f ollow",
+ "▁fol low",
+ "▁ follow",
+ "▁S ch",
+ "▁Sc h",
+ "▁ Sch",
+ "pe ct",
+ "pec t",
+ "p ect",
+ "▁re l",
+ "▁r el",
+ "▁ rel",
+ "▁S o",
+ "▁ So",
+ "▁l ook",
+ "▁lo ok",
+ "▁ look",
+ "ab el",
+ "abe l",
+ "a bel",
+ "▁pro blem",
+ "▁prob lem",
+ "▁proble m",
+ "▁probl em",
+ "▁ problem",
+ "▁v an",
+ "▁va n",
+ "▁ van",
+ "st rong",
+ "str ong",
+ "c o",
+ "po n",
+ "p on",
+ "c a",
+ "ad a",
+ "a da",
+ "\" :",
+ "con d",
+ "co nd",
+ "c ond",
+ "am b",
+ "a mb",
+ "} ,",
+ "qu est",
+ "que st",
+ "ques t",
+ "q uest",
+ "▁a ut",
+ "▁au t",
+ "▁ aut",
+ "▁res ult",
+ "▁ result",
+ "▁m ay",
+ "▁ma y",
+ "▁ may",
+ "R e",
+ "ht tp",
+ "htt p",
+ "h ttp",
+ ") :",
+ "▁A nd",
+ "▁An d",
+ "▁ And",
+ "re d",
+ "r ed",
+ "▁H ow",
+ "▁Ho w",
+ "▁ How",
+ "p o",
+ "ск о",
+ "с ко",
+ "at t",
+ "a tt",
+ "ou p",
+ "o up",
+ "ce d",
+ "c ed",
+ "▁t ype",
+ "▁typ e",
+ "▁ty pe",
+ "▁ type",
+ "▁t han",
+ "▁th an",
+ "▁ than",
+ "▁c ons",
+ "▁con s",
+ "▁co ns",
+ "▁ cons",
+ "u f",
+ "ц и",
+ "▁qu estion",
+ "▁quest ion",
+ "▁questi on",
+ "▁ question",
+ "ra ph",
+ "rap h",
+ "r aph",
+ "ig h",
+ "i gh",
+ "▁ М",
+ "▁h tt",
+ "▁ htt",
+ "in s",
+ "i ns",
+ "de n",
+ "d en",
+ "▁d a",
+ "▁ da",
+ "▁v er",
+ "▁ve r",
+ "▁ ver",
+ "o h",
+ "▁= >",
+ "▁ =>",
+ "ri v",
+ "r iv",
+ "ud e",
+ "u de",
+ "▁F or",
+ "▁Fo r",
+ "▁ For",
+ "▁r a",
+ "▁ ra",
+ "fr ac",
+ "fra c",
+ "f rac",
+ "м а",
+ "▁a fter",
+ "▁af ter",
+ "▁ after",
+ "} {",
+ "▁m ethod",
+ "▁met hod",
+ "▁ method",
+ "\" )",
+ "am p",
+ "a mp",
+ "as h",
+ "a sh",
+ "▁re c",
+ "▁r ec",
+ "▁ rec",
+ "▁d iffer",
+ "▁dif fer",
+ "▁diff er",
+ "O N",
+ "a x",
+ "am ent",
+ "ame nt",
+ "amen t",
+ "a ment",
+ "our ce",
+ "Co n",
+ "C on",
+ "it s",
+ "i ts",
+ "Na me",
+ "N ame",
+ "ma n",
+ "m an",
+ "▁b ec",
+ "▁be c",
+ "▁ bec",
+ "ch e",
+ "c he",
+ "▁E n",
+ "▁ En",
+ "a j",
+ "▁g ener",
+ "▁ge ner",
+ "▁gen er",
+ "▁gene r",
+ "▁ gener",
+ "I N",
+ "▁i d",
+ "▁ id",
+ "ag es",
+ "age s",
+ "a ges",
+ "▁l oc",
+ "▁lo c",
+ "▁ loc",
+ "f o",
+ "b r",
+ "▁s he",
+ "▁sh e",
+ "▁ she",
+ "Pr o",
+ "P ro",
+ "▁u na",
+ "▁un a",
+ "▁ una",
+ "▁ к",
+ "et a",
+ "e ta",
+ "lo g",
+ "l og",
+ "ol og",
+ "olo g",
+ "o log",
+ "▁s ur",
+ "▁su r",
+ "▁ sur",
+ "ar g",
+ "a rg",
+ "▁- -",
+ "▁ --",
+ "k t",
+ "( \\",
+ "mi n",
+ "m in",
+ "▁l ine",
+ "▁li ne",
+ "▁lin e",
+ "▁ line",
+ "▁v ari",
+ "▁var i",
+ "▁va ri",
+ "▁ vari",
+ "с я",
+ "ic s",
+ "i cs",
+ "н я",
+ "ve ry",
+ "ver y",
+ "v ery",
+ "ad d",
+ "a dd",
+ "▁o bject",
+ "▁ob ject",
+ "▁obj ect",
+ "▁ object",
+ "I d",
+ "▁B ut",
+ "▁Bu t",
+ "▁ But",
+ "▁c ase",
+ "▁cas e",
+ "▁ca se",
+ "▁ case",
+ "▁m ake",
+ "▁ma ke",
+ "▁mak e",
+ "▁ make",
+ "▁c al",
+ "▁ca l",
+ "▁ cal",
+ "▁p ass",
+ "▁pas s",
+ "▁pa ss",
+ "▁ pass",
+ "с ь",
+ "ess ion",
+ "ne t",
+ "n et",
+ ". \"",
+ "▁ г",
+ "ä r",
+ "д е",
+ "n o",
+ "at ing",
+ "ati ng",
+ "atin g",
+ "a ting",
+ "at o",
+ "a to",
+ "li ne",
+ "lin e",
+ "l ine",
+ "в и",
+ "▁E x",
+ "▁ Ex",
+ "▁a ss",
+ "▁as s",
+ "▁ ass",
+ "▁v ers",
+ "▁ver s",
+ "▁ve rs",
+ "▁ vers",
+ "л я",
+ "▁e d",
+ "▁ ed",
+ "um n",
+ "u mn",
+ "ot her",
+ "oth er",
+ "othe r",
+ "o ther",
+ "ст а",
+ "с та",
+ "at ive",
+ "ativ e",
+ "ati ve",
+ "St ring",
+ "Str ing",
+ "S tring",
+ "▁l os",
+ "▁lo s",
+ "▁ los",
+ "w n",
+ "▁an swer",
+ "▁ans wer",
+ "▁ answer",
+ "▁l et",
+ "▁le t",
+ "▁ let",
+ "▁p e",
+ "▁ pe",
+ "en ts",
+ "ent s",
+ "▁f e",
+ "▁ fe",
+ "in ce",
+ "inc e",
+ "n i",
+ "id er",
+ "ide r",
+ "i der",
+ "ow s",
+ "o ws",
+ "▁t est",
+ "▁te st",
+ "▁ test",
+ "▁h ere",
+ "▁he re",
+ "▁her e",
+ "▁ here",
+ "ro ll",
+ "rol l",
+ "r oll",
+ "▁c all",
+ "▁cal l",
+ "▁ca ll",
+ "▁ call",
+ "ru ct",
+ "r uct",
+ "▁p ol",
+ "▁po l",
+ "▁ pol",
+ "ai t",
+ "a it",
+ "▁b ack",
+ "▁ba ck",
+ "▁ back",
+ "h o",
+ "E x",
+ "re ss",
+ "res s",
+ "r ess",
+ "S T",
+ "ri ed",
+ "rie d",
+ "r ied",
+ "da te",
+ "dat e",
+ "d ate",
+ "е т",
+ "▁d id",
+ "▁di d",
+ "▁ did",
+ "ti ng",
+ "t ing",
+ "▁E l",
+ "▁ El",
+ "▁d em",
+ "▁de m",
+ "▁ dem",
+ ") $",
+ "ов а",
+ "о ва",
+ "ur rent",
+ "urr ent",
+ "urre nt",
+ "la ce",
+ "lac e",
+ "l ace",
+ "rig ht",
+ "r ight",
+ "re n",
+ "r en",
+ "п о",
+ "▁e ach",
+ "▁ each",
+ "c y",
+ "bl ock",
+ "blo ck",
+ "b lock",
+ "da ta",
+ "dat a",
+ "d ata",
+ "▁ %",
+ "▁a c",
+ "▁ ac",
+ "▁= =",
+ "▁ ==",
+ "ü r",
+ "▁p or",
+ "▁po r",
+ "▁ por",
+ "as k",
+ "a sk",
+ "ar ch",
+ "arc h",
+ "am es",
+ "ame s",
+ "a mes",
+ "▁C on",
+ "▁Co n",
+ "▁ Con",
+ "ч а",
+ "▁o ff",
+ "▁of f",
+ "▁ off",
+ "▁f ind",
+ "▁fin d",
+ "▁fi nd",
+ "▁ find",
+ "con t",
+ "co nt",
+ "c ont",
+ "▁n ow",
+ "▁no w",
+ "▁ now",
+ "wor k",
+ "w ork",
+ "at ional",
+ "ation al",
+ "ati onal",
+ "atio nal",
+ "d d",
+ "ci ón",
+ "ció n",
+ "c ión",
+ "▁ А",
+ "au lt",
+ "a ult",
+ "Li st",
+ "L ist",
+ "▁e xt",
+ "▁ex t",
+ "▁ ext",
+ "ur s",
+ "u rs",
+ "ak e",
+ "a ke",
+ "ul e",
+ "u le",
+ "▁p oint",
+ "▁po int",
+ "▁poi nt",
+ "▁ point",
+ "A T",
+ "au t",
+ "a ut",
+ "▁tr ans",
+ "▁tra ns",
+ "▁tran s",
+ "▁ trans",
+ "▁c o",
+ "▁ co",
+ "▁re ad",
+ "▁r ead",
+ "▁ read",
+ "▁u sed",
+ "▁us ed",
+ "▁use d",
+ "▁ used",
+ "ск и",
+ "с ки",
+ "ar i",
+ "a ri",
+ "L E",
+ "et er",
+ "ete r",
+ "e ter",
+ "ou n",
+ "o un",
+ "ev er",
+ "e ver",
+ "sel f",
+ "s elf",
+ "in ed",
+ "ine d",
+ "i ned",
+ "id th",
+ "u x",
+ "j s",
+ "▁s uch",
+ "▁su ch",
+ "▁suc h",
+ "▁ such",
+ "▁I s",
+ "▁ Is",
+ "é e",
+ "fu l",
+ "f ul",
+ "▁d ist",
+ "▁di st",
+ "▁dis t",
+ "▁ dist",
+ "▁b u",
+ "▁ bu",
+ "item ize",
+ "Con t",
+ "Co nt",
+ "C ont",
+ "j e",
+ "с и",
+ "▁p rov",
+ "▁pro v",
+ "▁pr ov",
+ "▁ prov",
+ "b b",
+ "wa rd",
+ "war d",
+ "w ard",
+ "es ent",
+ "ese nt",
+ "esen t",
+ "e sent",
+ "er son",
+ "ers on",
+ "an ks",
+ "ank s",
+ "w h",
+ "no t",
+ "n ot",
+ "▁W e",
+ "▁ We",
+ "k a",
+ "ro p",
+ "r op",
+ "at ur",
+ "atu r",
+ "al s",
+ "a ls",
+ "▁b el",
+ "▁be l",
+ "▁ bel",
+ "ö r",
+ "f r",
+ "▁ex ample",
+ "▁exam ple",
+ "▁ example",
+ "▁in cl",
+ "▁inc l",
+ "am il",
+ "ami l",
+ "a mil",
+ "▁р а",
+ "▁ ра",
+ "▁ “",
+ "▁s tring",
+ "▁st ring",
+ "▁str ing",
+ "▁stri ng",
+ "▁ string",
+ "▁th ink",
+ "▁thin k",
+ "T h",
+ "▁t em",
+ "▁te m",
+ "▁ tem",
+ "av e",
+ "a ve",
+ "▁F ran",
+ "▁Fr an",
+ "▁Fra n",
+ "▁ Fran",
+ "▁n umber",
+ "▁num ber",
+ "▁ number",
+ "▁s i",
+ "▁ si",
+ "im es",
+ "ime s",
+ "i mes",
+ "te m",
+ "t em",
+ "m y",
+ "le r",
+ "l er",
+ "lo ad",
+ "= =",
+ "▁h and",
+ "▁ha nd",
+ "▁han d",
+ "▁ hand",
+ "z a",
+ "▁b ecause",
+ "▁bec ause",
+ "▁ because",
+ "▁s ch",
+ "▁sc h",
+ "▁ sch",
+ "v o",
+ "th is",
+ "t his",
+ "I D",
+ "ã o",
+ "▁st art",
+ "▁star t",
+ "▁sta rt",
+ "▁ start",
+ "▁w ar",
+ "▁wa r",
+ "▁ war",
+ "▁he lp",
+ "▁hel p",
+ "▁ help",
+ "t s",
+ "▁c har",
+ "▁ch ar",
+ "▁cha r",
+ "▁ char",
+ "▁p h",
+ "▁ ph",
+ "▁m in",
+ "▁mi n",
+ "▁ min",
+ "ti l",
+ "t il",
+ "ri te",
+ "rit e",
+ "r ite",
+ "-- ------",
+ "---- ----",
+ "--- -----",
+ "------ --",
+ "----- ---",
+ "------- -",
+ "- -------",
+ "el s",
+ "e ls",
+ "▁m it",
+ "▁mi t",
+ "▁ mit",
+ "ed ia",
+ "edi a",
+ "e dia",
+ "к у",
+ "▁S h",
+ "▁ Sh",
+ "an y",
+ "a ny",
+ "] ;",
+ "▁ Б",
+ "iqu e",
+ "i que",
+ "d a",
+ "e f",
+ "de x",
+ "d ex",
+ "▁p rodu",
+ "▁pro du",
+ "▁pr odu",
+ "▁prod u",
+ "▁ produ",
+ "▁ Н",
+ "gr am",
+ "gra m",
+ "g ram",
+ "▁O r",
+ "▁ Or",
+ "▁g re",
+ "▁gr e",
+ "▁ gre",
+ "qu ote",
+ "quot e",
+ "le g",
+ "l eg",
+ "or n",
+ "o rn",
+ "▁in d",
+ "▁i nd",
+ "▁ ind",
+ "▁p ost",
+ "▁po st",
+ "▁pos t",
+ "▁ post",
+ "▁d ep",
+ "▁de p",
+ "▁ dep",
+ "] ,",
+ "v i",
+ "▁u ser",
+ "▁us er",
+ "▁use r",
+ "▁ user",
+ "▁ >",
+ "li ck",
+ "lic k",
+ "l ick",
+ "▁v ery",
+ "▁ver y",
+ "▁ve ry",
+ "▁ very",
+ "et hing",
+ "eth ing",
+ "e thing",
+ "▁ar ray",
+ "▁arr ay",
+ "▁ array",
+ "▁g u",
+ "▁ gu",
+ "▁d ur",
+ "▁du r",
+ "` .",
+ "т ь",
+ "li cation",
+ "lic ation",
+ "lica tion",
+ "ст и",
+ "с ти",
+ "e k",
+ "ic o",
+ "i co",
+ "▁d at",
+ "▁da t",
+ "▁ dat",
+ "о р",
+ "ht ml",
+ "htm l",
+ "h tml",
+ "ion e",
+ "io ne",
+ "i one",
+ "▁d ifferent",
+ "▁differ ent",
+ "▁c heck",
+ "▁che ck",
+ "▁ check",
+ "▁f r",
+ "▁ fr",
+ "▁E r",
+ "▁ Er",
+ "▁t ext",
+ "▁te xt",
+ "▁tex t",
+ "▁ text",
+ "н і",
+ "ic ht",
+ "ich t",
+ "i cht",
+ "st ack",
+ "sta ck",
+ "E N",
+ "ra g",
+ "r ag",
+ "▁e very",
+ "▁ev ery",
+ "▁ever y",
+ "▁ every",
+ "A r",
+ "▁be fore",
+ "▁bef ore",
+ "▁ before",
+ "al se",
+ "als e",
+ "▁f in",
+ "▁fi n",
+ "▁ fin",
+ "▁d é",
+ "▁th ese",
+ "▁the se",
+ "▁d et",
+ "▁de t",
+ "▁ det",
+ "V al",
+ "ce ption",
+ "cept ion",
+ "cep tion",
+ "▁and roid",
+ "▁ android",
+ "block quote",
+ "▁j e",
+ "▁ je",
+ "fil e",
+ "fi le",
+ "f ile",
+ "at s",
+ "a ts",
+ "▁д о",
+ "▁ до",
+ "ess age",
+ "essa ge",
+ "▁ag ain",
+ "a w",
+ "C h",
+ "we en",
+ "w een",
+ "▁ Д",
+ "fo r",
+ "f or",
+ "ci al",
+ "cia l",
+ "c ial",
+ "pl ay",
+ "pla y",
+ "p lay",
+ "pr e",
+ "p re",
+ "id a",
+ "i da",
+ "▁P ar",
+ "▁Pa r",
+ "▁ Par",
+ "n y",
+ "ra ct",
+ "rac t",
+ "r act",
+ "▁s upp",
+ "▁su pp",
+ "▁sup p",
+ "▁ supp",
+ "as ed",
+ "ase d",
+ "a sed",
+ "le ction",
+ "lect ion",
+ "l ection",
+ "▁d ans",
+ "▁da ns",
+ "▁dan s",
+ "ai r",
+ "a ir",
+ "ro l",
+ "r ol",
+ "▁t hr",
+ "▁th r",
+ "Dat a",
+ "Da ta",
+ "D ata",
+ "li ch",
+ "lic h",
+ "l ich",
+ "▁п ро",
+ "▁пр о",
+ "▁ про",
+ "▁l ong",
+ "▁lo ng",
+ "▁lon g",
+ "▁ long",
+ "▁se cond",
+ "▁sec ond",
+ "▁ second",
+ "ual ly",
+ "u ally",
+ "in es",
+ "ine s",
+ "i nes",
+ "▁f ound",
+ "▁fo und",
+ "▁fou nd",
+ "▁ found",
+ "eng th",
+ "y p",
+ "ea d",
+ "e ad",
+ "▁l og",
+ "▁lo g",
+ "▁ log",
+ "u i",
+ "ne w",
+ "n ew",
+ "▁ Р",
+ "g o",
+ "au s",
+ "a us",
+ "od y",
+ "o dy",
+ "▁s on",
+ "▁so n",
+ "▁ son",
+ "м е",
+ "er o",
+ "e ro",
+ "ve d",
+ "v ed",
+ "su b",
+ "s ub",
+ "▁r ight",
+ "▁rig ht",
+ "▁ right",
+ "vi ew",
+ "vie w",
+ "v iew",
+ "▁follow ing",
+ "' )",
+ "\") ;",
+ "\" );",
+ "▁sa id",
+ "ж е",
+ "ч и",
+ "т у",
+ "ot t",
+ "o tt",
+ "с е",
+ "ar s",
+ "a rs",
+ "$ .",
+ "g g",
+ "▁b r",
+ "▁ br",
+ "oo l",
+ "o ol",
+ "yl e",
+ "y le",
+ "us e",
+ "u se",
+ "▁s how",
+ "▁sh ow",
+ "▁sho w",
+ "▁ show",
+ "le ase",
+ "lea se",
+ "ci a",
+ "c ia",
+ "▁d irect",
+ "▁di rect",
+ "▁dire ct",
+ "▁dir ect",
+ "▁ direct",
+ "do c",
+ "d oc",
+ "а р",
+ "m s",
+ "▁g iv",
+ "▁gi v",
+ "▁ giv",
+ "▁e xp",
+ "▁ex p",
+ "▁ exp",
+ "q l",
+ "д у",
+ "в е",
+ "▁B e",
+ "▁ Be",
+ "Co m",
+ "C om",
+ "it er",
+ "ite r",
+ "i ter",
+ "R E",
+ "m p",
+ "me n",
+ "m en",
+ "▁R o",
+ "▁ Ro",
+ "M A",
+ "▁C ol",
+ "▁Co l",
+ "▁ Col",
+ "is ter",
+ "ist er",
+ "iste r",
+ "i ster",
+ "▁w ell",
+ "▁we ll",
+ "▁wel l",
+ "▁ well",
+ "▁< /",
+ "▁ ",
+ "ay out",
+ "at ure",
+ "atur e",
+ "atu re",
+ "iv ers",
+ "ive rs",
+ "iver s",
+ "i vers",
+ "z y",
+ "▁н е",
+ "▁ не",
+ "▁m et",
+ "▁me t",
+ "▁ met",
+ "un e",
+ "u ne",
+ "yt h",
+ "y th",
+ "Ty pe",
+ "Typ e",
+ "T ype",
+ "▁e lement",
+ "▁el ement",
+ "▁ele ment",
+ "▁elem ent",
+ "▁ element",
+ "▁l ink",
+ "▁lin k",
+ "▁ link",
+ "mo d",
+ "m od",
+ "▁bet ween",
+ "▁ between",
+ "ce pt",
+ "cep t",
+ "qu ire",
+ "qui re",
+ "▁th rough",
+ "▁thr ough",
+ "▁thro ugh",
+ "▁ through",
+ "▁wh ile",
+ "▁ while",
+ "▁O n",
+ "▁ On",
+ "th e",
+ "t he",
+ "í a",
+ "▁s omething",
+ "▁some thing",
+ "▁som ething",
+ "▁somet hing",
+ "▁ something",
+ "vo l",
+ "v ol",
+ "▁m ost",
+ "▁mo st",
+ "▁mos t",
+ "▁ most",
+ "s c",
+ "us s",
+ "u ss",
+ "▁c ar",
+ "▁ca r",
+ "▁ car",
+ "▁s m",
+ "▁ sm",
+ "▁р о",
+ "▁ ро",
+ "an o",
+ "a no",
+ "le ft",
+ "lef t",
+ "l eft",
+ "v a",
+ "▁tr ue",
+ "▁ true",
+ "( $",
+ "em s",
+ "e ms",
+ "▁m uch",
+ "▁mu ch",
+ "á s",
+ "▁N ew",
+ "▁Ne w",
+ "▁ New",
+ "▁pro per",
+ "▁pr oper",
+ "▁prop er",
+ "er a",
+ "e ra",
+ "it ed",
+ "ite d",
+ "i ted",
+ "▁d oc",
+ "▁do c",
+ "▁ doc",
+ "ic es",
+ "ice s",
+ "i ces",
+ "Th e",
+ "T he",
+ "▁ ?",
+ "ст о",
+ "с то",
+ "f l",
+ "▁s pec",
+ "▁sp ec",
+ "▁spe c",
+ "▁ spec",
+ "en der",
+ "end er",
+ "ende r",
+ "e nder",
+ "wa y",
+ "w ay",
+ "▁s elf",
+ "▁sel f",
+ "▁ self",
+ "▁e ven",
+ "▁ev en",
+ "▁ even",
+ "і в",
+ "▁с е",
+ "▁ се",
+ "ни я",
+ "▁P r",
+ "▁ Pr",
+ "▁k e",
+ "▁ ke",
+ "em b",
+ "e mb",
+ "▁t able",
+ "▁tab le",
+ "▁ta ble",
+ "▁ table",
+ "▁e qu",
+ "▁eq u",
+ "▁ equ",
+ "li ent",
+ "lie nt",
+ "l ient",
+ "t d",
+ "par t",
+ "pa rt",
+ "p art",
+ "▁pr int",
+ "▁pri nt",
+ "▁prin t",
+ "▁ print",
+ "▁u ne",
+ "▁un e",
+ "▁ une",
+ "if y",
+ "▁- >",
+ "▁ ->",
+ "en e",
+ "e ne",
+ "▁m on",
+ "▁mo n",
+ "▁ mon",
+ "▁d ec",
+ "▁de c",
+ "▁ dec",
+ "▁st ill",
+ "▁о б",
+ "▁ об",
+ "▁T r",
+ "▁ Tr",
+ "▁ ф",
+ "if e",
+ "i fe",
+ "is m",
+ "i sm",
+ "b y",
+ "ra w",
+ "r aw",
+ "io r",
+ "i or",
+ "▁m ed",
+ "▁me d",
+ "▁ med",
+ "or ld",
+ "▁com ple",
+ "▁comp le",
+ "▁compl e",
+ "▁ comple",
+ "w w",
+ "▁a rt",
+ "▁ar t",
+ "▁ art",
+ "ro n",
+ "r on",
+ "▁ Г",
+ "▁M y",
+ "▁ My",
+ "▁a ls",
+ "▁al s",
+ "▁ als",
+ "re ct",
+ "rec t",
+ "r ect",
+ "▁a uf",
+ "▁au f",
+ "▁ auf",
+ "▁d own",
+ "▁do wn",
+ "▁dow n",
+ "▁ down",
+ "at her",
+ "ath er",
+ "a ther",
+ "Co l",
+ "C ol",
+ "Te xt",
+ "Tex t",
+ "T ext",
+ "ba ck",
+ "b ack",
+ "$ ,",
+ "▁y ear",
+ "▁ye ar",
+ "▁ year",
+ "м о",
+ "p i",
+ "▁G r",
+ "▁ Gr",
+ "re am",
+ "rea m",
+ "▁re p",
+ "▁r ep",
+ "▁ rep",
+ "b f",
+ "ww w",
+ "w ww",
+ "▁w ur",
+ "▁o rg",
+ "▁or g",
+ "▁ org",
+ "in ter",
+ "int er",
+ "inte r",
+ "▁D ie",
+ "▁Di e",
+ "▁ Die",
+ "▁b eing",
+ "▁be ing",
+ "▁bei ng",
+ "\" .",
+ "la bel",
+ "lab el",
+ "l abel",
+ "▁c ent",
+ "▁ce nt",
+ "▁ cent",
+ "ja va",
+ "jav a",
+ "j ava",
+ "ba r",
+ "b ar",
+ "an te",
+ "ant e",
+ "an a",
+ "a na",
+ "_ _",
+ "▁sol ution",
+ "▁ О",
+ "▁f l",
+ "▁ fl",
+ "▁c reate",
+ "▁cre ate",
+ "▁ create",
+ "ic i",
+ "i ci",
+ "st e",
+ "s te",
+ "yth on",
+ "yt hon",
+ "un t",
+ "u nt",
+ "as on",
+ "aso n",
+ "a son",
+ "fer ence",
+ "fe rence",
+ "S E",
+ "▁n on",
+ "▁no n",
+ "▁ non",
+ "an e",
+ "a ne",
+ "▁in s",
+ "▁i ns",
+ "▁ ins",
+ "ad er",
+ "ade r",
+ "a der",
+ "_{ \\",
+ "_ {\\",
+ "Re s",
+ "R es",
+ "▁m ain",
+ "▁ma in",
+ "▁mai n",
+ "▁ main",
+ "п и",
+ "▁T here",
+ "▁The re",
+ "▁Th ere",
+ "▁Ther e",
+ "▁ There",
+ "▁p our",
+ "▁po ur",
+ "▁pou r",
+ "R O",
+ "` ,",
+ "li sh",
+ "lis h",
+ "l ish",
+ "b ject",
+ "cc ess",
+ "c cess",
+ "▁o rig",
+ "▁or ig",
+ "▁ orig",
+ "is chen",
+ "isch en",
+ "ische n",
+ "isc hen",
+ "i schen",
+ "ow er",
+ "owe r",
+ "o wer",
+ "▁h et",
+ "▁he t",
+ "▁ het",
+ "u c",
+ "▁el se",
+ "▁els e",
+ "▁ else",
+ "» .",
+ "▁о т",
+ "▁ от",
+ "eq u",
+ "e qu",
+ "si ble",
+ "s ible",
+ "te st",
+ "tes t",
+ "t est",
+ "st and",
+ "sta nd",
+ "stan d",
+ "é n",
+ "et s",
+ "e ts",
+ "G E",
+ "id ent",
+ "ide nt",
+ "iden t",
+ "i dent",
+ "▁ е",
+ "▁п ри",
+ "▁пр и",
+ "▁ при",
+ ". ,",
+ "▁d as",
+ "▁da s",
+ "▁ das",
+ "oc k",
+ "o ck",
+ ", \"",
+ "▁v ol",
+ "▁vo l",
+ "▁ vol",
+ "▁f o",
+ "▁ fo",
+ "▁p ara",
+ "▁par a",
+ "▁pa ra",
+ "▁ para",
+ "▁ Т",
+ "▁C ar",
+ "▁Ca r",
+ "▁ Car",
+ "ra l",
+ "r al",
+ "▁S p",
+ "▁ Sp",
+ "va r",
+ "v ar",
+ "▁p lay",
+ "▁pl ay",
+ "▁pla y",
+ "▁ play",
+ "ou se",
+ "ous e",
+ "o use",
+ "▁т а",
+ "▁ та",
+ "ic ally",
+ "ical ly",
+ "▁con tain",
+ "▁cont ain",
+ "pon se",
+ "▁S tring",
+ "▁St ring",
+ "▁Str ing",
+ "▁ String",
+ "á n",
+ "▁b oth",
+ "▁bo th",
+ "▁bot h",
+ "▁ both",
+ "ke n",
+ "k en",
+ "A R",
+ "ер е",
+ "е ре",
+ "▁I l",
+ "▁ Il",
+ "▁is s",
+ "▁i ss",
+ "▁ iss",
+ "▁o pen",
+ "▁op en",
+ "▁ open",
+ "▁ )",
+ "▁W hat",
+ "▁Wh at",
+ "▁ What",
+ "f e",
+ "riv ate",
+ "re g",
+ "r eg",
+ "▁with out",
+ "▁ without",
+ "▁z u",
+ "▁ zu",
+ "vi s",
+ "v is",
+ "fl ow",
+ "f low",
+ "▁h ttp",
+ "▁htt p",
+ "▁ http",
+ "ab ase",
+ "aba se",
+ "a base",
+ "▁w ord",
+ "▁wor d",
+ "▁wo rd",
+ "▁ word",
+ "▁ch ange",
+ "▁chang e",
+ "▁ change",
+ "▁work s",
+ "▁wor ks",
+ "▁ works",
+ "▁g e",
+ "▁ ge",
+ "▁ !",
+ "▁e en",
+ "▁ een",
+ "it le",
+ "▁e vent",
+ "▁even t",
+ "▁ev ent",
+ "▁ event",
+ "wo rd",
+ "wor d",
+ "w ord",
+ "an do",
+ "and o",
+ "S B",
+ "re m",
+ "r em",
+ "▁f ield",
+ "▁fi eld",
+ "▁fiel d",
+ "▁ field",
+ "vi ng",
+ "vin g",
+ "v ing",
+ "Se r",
+ "S er",
+ "▁o ur",
+ "▁ou r",
+ "▁ our",
+ "▁qu i",
+ "▁q ui",
+ "▁ qui",
+ "▁o per",
+ "▁op er",
+ "▁ oper",
+ "▁is t",
+ "▁i st",
+ "▁ ist",
+ "de f",
+ "d ef",
+ "▁m ade",
+ "▁ma de",
+ "▁mad e",
+ "▁ made",
+ "ни е",
+ "p x",
+ "▁m en",
+ "▁me n",
+ "▁ men",
+ "r m",
+ "ai s",
+ "a is",
+ "ce nt",
+ "cen t",
+ "c ent",
+ "li st",
+ "lis t",
+ "l ist",
+ "T o",
+ "▁T o",
+ "▁ To",
+ "j a",
+ "ve rt",
+ "ver t",
+ "v ert",
+ "▁m ar",
+ "▁ma r",
+ "▁ mar",
+ "val ue",
+ "valu e",
+ "▁ „",
+ "\" ;",
+ "▁a us",
+ "▁au s",
+ "▁ aus",
+ "▁B r",
+ "▁ Br",
+ "ol e",
+ "o le",
+ "▁m ult",
+ "▁mu lt",
+ "▁mul t",
+ "▁ mult",
+ "oug ht",
+ "ough t",
+ "▁m at",
+ "▁ma t",
+ "▁ mat",
+ "▁v iew",
+ "▁vi ew",
+ "▁vie w",
+ "▁ view",
+ "fi l",
+ "f il",
+ "▁с о",
+ "▁ со",
+ "г а",
+ "▁v oid",
+ "▁vo id",
+ "▁ void",
+ "▁g ood",
+ "▁go od",
+ "▁ good",
+ "б о",
+ "C T",
+ "▁m any",
+ "▁ma ny",
+ "▁man y",
+ "▁ many",
+ "be n",
+ "b en",
+ "▁в о",
+ "▁ во",
+ "▁к а",
+ "▁ ка",
+ "▁s ystem",
+ "▁sys tem",
+ "▁syst em",
+ "▁ system",
+ "in o",
+ "i no",
+ "▁an other",
+ "▁ano ther",
+ "▁ another",
+ "▁re st",
+ "▁r est",
+ "▁res t",
+ "▁ rest",
+ "us er",
+ "use r",
+ "u ser",
+ "il ity",
+ "ili ty",
+ "a i",
+ "▁m ight",
+ "▁mig ht",
+ "us tom",
+ "ust om",
+ "usto m",
+ "▁or der",
+ "▁ord er",
+ "▁ order",
+ "▁V er",
+ "▁Ve r",
+ "▁ Ver",
+ "S S",
+ "} )",
+ "▁e ff",
+ "▁ eff",
+ "д о",
+ "et t",
+ "e tt",
+ "▁s ign",
+ "▁si gn",
+ "▁sig n",
+ "▁ sign",
+ "м у",
+ "I T",
+ "st ring",
+ "str ing",
+ "s tring",
+ "el le",
+ "ell e",
+ "e lle",
+ "▁s ing",
+ "▁si ng",
+ "▁sin g",
+ "▁ sing",
+ "cu l",
+ "c ul",
+ "▁tr ying",
+ "▁try ing",
+ "▁b eg",
+ "▁be g",
+ "▁ beg",
+ "▁p age",
+ "▁pa ge",
+ "▁pag e",
+ "▁ page",
+ "х о",
+ "▁C an",
+ "▁Ca n",
+ "▁ Can",
+ "▁S er",
+ "▁Se r",
+ "▁ Ser",
+ "+ +",
+ "▁m ust",
+ "▁mus t",
+ "▁mu st",
+ "▁ must",
+ "▁val ues",
+ "▁value s",
+ "▁valu es",
+ "▁ values",
+ "▁k ey",
+ "▁ke y",
+ "▁ key",
+ "ib le",
+ "i ble",
+ "] .",
+ "ir d",
+ "i rd",
+ "▁pro gram",
+ "▁pr ogram",
+ "▁ program",
+ "roll er",
+ "rol ler",
+ "rolle r",
+ "▁c onne",
+ "▁con ne",
+ "▁conn e",
+ "▁ conne",
+ "▁s ay",
+ "▁sa y",
+ "▁ say",
+ "▁p aram",
+ "▁par am",
+ "▁para m",
+ "▁pa ram",
+ "▁ param",
+ "ach e",
+ "ac he",
+ "a che",
+ "ve lop",
+ "vel op",
+ "▁s elect",
+ "▁se lect",
+ "▁sel ect",
+ "▁sele ct",
+ "▁ select",
+ "▁f amil",
+ "▁fa mil",
+ "▁fam il",
+ "▁ famil",
+ "▁l ast",
+ "▁la st",
+ "▁las t",
+ "▁ last",
+ "▁Th anks",
+ "▁Thank s",
+ "▁ Thanks",
+ "▁p op",
+ "▁po p",
+ "▁ pop",
+ "} .",
+ "e q",
+ "▁does n",
+ "[ '",
+ "▁t erm",
+ "▁te rm",
+ "▁ter m",
+ "▁ term",
+ "▁r é",
+ "▁ ré",
+ "▁d ocument",
+ "▁doc ument",
+ "▁ document",
+ "п а",
+ "л у",
+ "at eg",
+ "ate g",
+ ". )",
+ "li ng",
+ "lin g",
+ "l ing",
+ "ion al",
+ "io nal",
+ "iona l",
+ "i onal",
+ "ab les",
+ "able s",
+ "abl es",
+ "a bles",
+ "▁t ak",
+ "▁ta k",
+ "ut ton",
+ "utt on",
+ "utto n",
+ "▁a rg",
+ "▁ar g",
+ "▁ arg",
+ "ty pe",
+ "typ e",
+ "t ype",
+ "▁s ure",
+ "▁su re",
+ "▁sur e",
+ "▁re al",
+ "▁ real",
+ "▁w eb",
+ "▁we b",
+ "▁ web",
+ "▁c urrent",
+ "▁cur rent",
+ "▁curr ent",
+ "▁ current",
+ "▁P l",
+ "▁ Pl",
+ "ch o",
+ "c ho",
+ "ment s",
+ "men ts",
+ "m ents",
+ "▁J oh",
+ "▁Jo h",
+ "ot s",
+ "o ts",
+ "▁ex ist",
+ "▁ exist",
+ "н у",
+ "▁f ür",
+ "▁ für",
+ "▁и з",
+ "▁ из",
+ "d o",
+ "но го",
+ "ног о",
+ "н ого",
+ "▁l as",
+ "▁la s",
+ "▁ las",
+ "▁n ull",
+ "▁nu ll",
+ "▁ null",
+ "▁in form",
+ "▁inf orm",
+ "▁info rm",
+ "▁ Л",
+ "▁v ersion",
+ "▁vers ion",
+ "▁ version",
+ "▁c hang",
+ "▁ch ang",
+ "▁cha ng",
+ "ag er",
+ "age r",
+ "a ger",
+ "▁C omm",
+ "▁Com m",
+ "▁Co mm",
+ "▁ Comm",
+ "л і",
+ "us h",
+ "u sh",
+ "▁G e",
+ "▁ Ge",
+ "▁h igh",
+ "▁hi gh",
+ "▁ high",
+ "▁in put",
+ "▁ input",
+ "og le",
+ "o gle",
+ "ro s",
+ "r os",
+ "bo x",
+ "b ox",
+ "ge n",
+ "g en",
+ "▁s te",
+ "▁st e",
+ "▁ ste",
+ "▁l ocal",
+ "▁lo cal",
+ "▁loc al",
+ "▁ local",
+ "I m",
+ "▁pro cess",
+ "▁proc ess",
+ "▁proces s",
+ "▁ process",
+ "ter nal",
+ "tern al",
+ "t ernal",
+ "iz ed",
+ "ize d",
+ "i zed",
+ "г и",
+ "é t",
+ "▁I nd",
+ "▁In d",
+ "▁ Ind",
+ "▁o ch",
+ "▁oc h",
+ "▁ och",
+ "l t",
+ "▁col umn",
+ "▁ column",
+ "▁t ried",
+ "▁tr ied",
+ "▁tri ed",
+ "▁comm and",
+ "▁comma nd",
+ "▁ command",
+ "▁b est",
+ "▁be st",
+ "▁bes t",
+ "▁ best",
+ "as ter",
+ "ast er",
+ "aste r",
+ "a ster",
+ "з а",
+ "▁p rim",
+ "▁pr im",
+ "▁pri m",
+ "▁ prim",
+ "▁m odel",
+ "▁mod el",
+ "▁mo del",
+ "▁mode l",
+ "▁ model",
+ "▁ і",
+ "▁th ose",
+ "it ies",
+ "iti es",
+ "itie s",
+ "i ties",
+ "è re",
+ "▁р е",
+ "▁ ре",
+ "ј е",
+ "ш и",
+ "qu es",
+ "que s",
+ "q ues",
+ "▁A m",
+ "▁ Am",
+ "▁o wn",
+ "▁ow n",
+ "▁ own",
+ "li n",
+ "l in",
+ "з и",
+ "Val ue",
+ "th ing",
+ "t hing",
+ "▁ ,",
+ "▁T e",
+ "▁ Te",
+ "▁st ud",
+ "▁ stud",
+ "▁u m",
+ "▁ um",
+ "▁ser ver",
+ "▁serv er",
+ "▁serve r",
+ "▁ server",
+ "il le",
+ "ill e",
+ "i lle",
+ "▁p ut",
+ "▁pu t",
+ "▁ put",
+ "at iv",
+ "ati v",
+ "g y",
+ "ов и",
+ "о ви",
+ "ra f",
+ "r af",
+ "ов о",
+ "о во",
+ "▁wur de",
+ "▁W hen",
+ "▁Wh en",
+ "▁Whe n",
+ "▁ When",
+ "▁d iv",
+ "▁di v",
+ "▁ div",
+ "an ts",
+ "ant s",
+ "▁t er",
+ "▁te r",
+ "▁ ter",
+ "▁part ic",
+ "▁parti c",
+ "▁ т",
+ "▁D o",
+ "▁ Do",
+ "▁N o",
+ "▁ No",
+ "se rt",
+ "ser t",
+ "s ert",
+ "id o",
+ "i do",
+ "math cal",
+ "ad e",
+ "a de",
+ "▁I I",
+ "▁ II",
+ "le ar",
+ "lea r",
+ "l ear",
+ "og raph",
+ "o graph",
+ "en se",
+ "ens e",
+ "▁r ow",
+ "▁ro w",
+ "▁ row",
+ "nu m",
+ "n um",
+ "▁pos sible",
+ "▁poss ible",
+ "▁possib le",
+ "▁ possible",
+ "▁s ince",
+ "▁sin ce",
+ "▁ since",
+ "▁B o",
+ "▁ Bo",
+ "ct ions",
+ "ction s",
+ "▁I m",
+ "▁ Im",
+ "O R",
+ "ц і",
+ "▁i de",
+ "▁id e",
+ "▁ ide",
+ "ma p",
+ "m ap",
+ "▁cor rect",
+ "▁corre ct",
+ "▁corr ect",
+ "▁ correct",
+ "ve s",
+ "v es",
+ "ph p",
+ "p hp",
+ "▁out put",
+ "▁ output",
+ "▁P h",
+ "▁ Ph",
+ "A L",
+ "ar ed",
+ "are d",
+ "a red",
+ "\\ \\",
+ "▁im age",
+ "▁imag e",
+ "▁ image",
+ "es ch",
+ "esc h",
+ "e sch",
+ "ж и",
+ "▁con f",
+ "▁ conf",
+ "po r",
+ "p or",
+ "qu ery",
+ "que ry",
+ "quer y",
+ "ur es",
+ "ure s",
+ "u res",
+ "iu m",
+ "i um",
+ "en ds",
+ "end s",
+ "▁A b",
+ "▁ Ab",
+ "SB N",
+ "і д",
+ "et her",
+ "eth er",
+ "ethe r",
+ "e ther",
+ "pt ions",
+ "ption s",
+ "it u",
+ "i tu",
+ "li b",
+ "l ib",
+ "n s",
+ "k i",
+ "▁work ing",
+ "▁wor king",
+ "▁ working",
+ "▁c omo",
+ "▁com o",
+ "▁co mo",
+ "▁ como",
+ "▁T hen",
+ "▁The n",
+ "▁Th en",
+ "▁ Then",
+ "M L",
+ "ke y",
+ "k ey",
+ "cl ass",
+ "cla ss",
+ "c lass",
+ "op le",
+ "o ple",
+ "itt le",
+ "▁m atch",
+ "▁mat ch",
+ "▁ match",
+ "way s",
+ "wa ys",
+ "w ays",
+ "math bb",
+ "▁re quire",
+ "▁requ ire",
+ "▁ require",
+ "al t",
+ "a lt",
+ "▁v is",
+ "▁vi s",
+ "▁ vis",
+ "▁b l",
+ "▁ bl",
+ "▁c alled",
+ "▁cal led",
+ "▁call ed",
+ "▁ called",
+ "It em",
+ "I tem",
+ "ur a",
+ "u ra",
+ "ve c",
+ "v ec",
+ "em e",
+ "e me",
+ "▁d ella",
+ "▁de lla",
+ "▁del la",
+ "▁dell a",
+ "em bre",
+ "emb re",
+ "ur g",
+ "u rg",
+ "S e",
+ "▁re quest",
+ "▁requ est",
+ "▁req uest",
+ "▁ request",
+ "is che",
+ "isch e",
+ "isc he",
+ "i sche",
+ "▁p ort",
+ "▁po rt",
+ "▁por t",
+ "▁ port",
+ "▁inst ead",
+ "= \\",
+ "▁ У",
+ "ho r",
+ "h or",
+ "en te",
+ "ent e",
+ "um e",
+ "u me",
+ "er d",
+ "e rd",
+ "с а",
+ "▁w hy",
+ "▁wh y",
+ "▁ why",
+ "ri st",
+ "ris t",
+ "r ist",
+ "▁p erson",
+ "▁per son",
+ "▁pers on",
+ "▁ person",
+ "▁. ..",
+ "▁.. .",
+ "▁ ...",
+ "▁p rivate",
+ "▁priv ate",
+ "▁ private",
+ "▁t ot",
+ "▁to t",
+ "▁ tot",
+ "ph a",
+ "p ha",
+ "if t",
+ "i ft",
+ "it a",
+ "i ta",
+ "lo c",
+ "l oc",
+ "▁o ld",
+ "▁ol d",
+ "▁ old",
+ "о н",
+ "▁n el",
+ "▁ne l",
+ "▁ nel",
+ "' ]",
+ "t i",
+ "ie t",
+ "i et",
+ "ci te",
+ "cit e",
+ "c ite",
+ "ple ment",
+ "pl ement",
+ "p lement",
+ "▁a bove",
+ "▁ab ove",
+ "▁ above",
+ "k s",
+ "re ady",
+ "read y",
+ "rea dy",
+ "▁c ome",
+ "▁com e",
+ "▁co me",
+ "▁ come",
+ "se ction",
+ "sec tion",
+ "sect ion",
+ "s ection",
+ "▁P ol",
+ "▁Po l",
+ "▁ Pol",
+ "▁w rit",
+ "▁wr it",
+ "▁ writ",
+ "▁htt ps",
+ "▁http s",
+ "▁ https",
+ "▁$ $",
+ "▁ $$",
+ "▁ »",
+ "▁bu ild",
+ "▁ build",
+ "it o",
+ "i to",
+ "▁cons ider",
+ "▁consid er",
+ "af t",
+ "a ft",
+ "Ap p",
+ "A pp",
+ ", \\",
+ "ind ows",
+ "indow s",
+ "indo ws",
+ "com m",
+ "co mm",
+ "c omm",
+ "▁ ;",
+ "gr ound",
+ "gro und",
+ "g round",
+ "▁p lace",
+ "▁pl ace",
+ "▁pla ce",
+ "▁ place",
+ "B y",
+ "▁pro ject",
+ "▁ project",
+ "Ob ject",
+ "Obj ect",
+ "O bject",
+ "▁re pr",
+ "▁rep r",
+ "en ces",
+ "ence s",
+ "enc es",
+ "ind ow",
+ "indo w",
+ "z t",
+ "▁f iles",
+ "▁file s",
+ "▁fil es",
+ "▁fi les",
+ "▁ files",
+ "c z",
+ "iv ity",
+ "ivi ty",
+ "i vity",
+ "▁in it",
+ "▁i nit",
+ "▁ init",
+ "▁p rob",
+ "▁pro b",
+ "▁pr ob",
+ "▁ prob",
+ "▁s k",
+ "▁ sk",
+ "or th",
+ "ort h",
+ "im ent",
+ "ime nt",
+ "imen t",
+ "i ment",
+ "ou ble",
+ "at al",
+ "ata l",
+ "a tal",
+ "ir c",
+ "i rc",
+ "▁ è",
+ "▁b re",
+ "▁br e",
+ "▁ bre",
+ "is ta",
+ "ist a",
+ "i sta",
+ "in put",
+ "▁ И",
+ "но й",
+ "su m",
+ "s um",
+ "pa th",
+ "pat h",
+ "p ath",
+ "▁c our",
+ "▁co ur",
+ "▁cou r",
+ "▁t oo",
+ "▁to o",
+ "▁A d",
+ "▁ Ad",
+ "▁G u",
+ "▁ Gu",
+ "▁f alse",
+ "▁fal se",
+ "▁ false",
+ "▁f un",
+ "▁fu n",
+ "▁ fun",
+ "▁с т",
+ "▁ ст",
+ "oo d",
+ "o od",
+ "è s",
+ "▁e nc",
+ "▁en c",
+ "▁ enc",
+ "bo l",
+ "b ol",
+ "r l",
+ "ar get",
+ "arg et",
+ "or der",
+ "ord er",
+ "orde r",
+ "▁me an",
+ "▁ mean",
+ "п е",
+ "ig en",
+ "ige n",
+ "i gen",
+ "▁п ре",
+ "▁пр е",
+ "▁ пре",
+ "wid th",
+ "w idth",
+ "; \r",
+ "it or",
+ "ito r",
+ "i tor",
+ "▁st ate",
+ "▁stat e",
+ "▁sta te",
+ "▁ state",
+ "▁gre at",
+ "en n",
+ "e nn",
+ "bi n",
+ "b in",
+ "E r",
+ "Mo d",
+ "M od",
+ "o z",
+ "▁w on",
+ "▁wo n",
+ "▁ won",
+ "▁f act",
+ "▁fa ct",
+ "▁fac t",
+ "▁ fact",
+ "▁j ava",
+ "▁ja va",
+ "▁jav a",
+ "▁ java",
+ "▁Un ivers",
+ "▁ Univers",
+ "▁c ap",
+ "▁ca p",
+ "▁ cap",
+ "is tor",
+ "ist or",
+ "isto r",
+ "i stor",
+ "} (",
+ "k u",
+ "it her",
+ "ith er",
+ "i ther",
+ "al es",
+ "ale s",
+ "a les",
+ "▁o u",
+ "▁ ou",
+ "ro ss",
+ "ros s",
+ "r oss",
+ "▁t ake",
+ "▁tak e",
+ "▁ta ke",
+ "▁ take",
+ "ri x",
+ "r ix",
+ "lo b",
+ "l ob",
+ "▁e ine",
+ "▁ein e",
+ "as es",
+ "ase s",
+ "▁a ccess",
+ "▁acc ess",
+ "▁ac cess",
+ "▁ access",
+ "it é",
+ "i té",
+ "is tr",
+ "ist r",
+ "i str",
+ "iz ation",
+ "iza tion",
+ "▁app ro",
+ "▁ap pro",
+ "▁ appro",
+ "ba ll",
+ "bal l",
+ "b all",
+ "▁m ak",
+ "▁ma k",
+ "} ^",
+ "▁C ons",
+ "▁Con s",
+ "▁Co ns",
+ "▁ Cons",
+ "pr ess",
+ "pre ss",
+ "pres s",
+ "p ress",
+ "se rv",
+ "ser v",
+ "s erv",
+ "() .",
+ "( ).",
+ "a f",
+ "▁re f",
+ "▁r ef",
+ "▁ ref",
+ ") \\",
+ "▁cont in",
+ "s u",
+ "iv er",
+ "ive r",
+ "i ver",
+ "▁c ond",
+ "▁con d",
+ "▁co nd",
+ "▁ cond",
+ "▁ex pect",
+ "▁exp ect",
+ "▁ expect",
+ "▁char act",
+ "▁cha ract",
+ "ber t",
+ "be rt",
+ "b ert",
+ "el t",
+ "e lt",
+ "ter s",
+ "te rs",
+ "t ers",
+ "scri pt",
+ "scr ipt",
+ "s cript",
+ "▁E d",
+ "▁ Ed",
+ "ap t",
+ "a pt",
+ "') ;",
+ "' );",
+ "pr int",
+ "▁s ize",
+ "▁si ze",
+ "▁ size",
+ "▁s ich",
+ "▁si ch",
+ "▁sic h",
+ "fa ce",
+ "fac e",
+ "f ace",
+ "en den",
+ "end en",
+ "ende n",
+ "▁A mer",
+ "▁Am er",
+ "▁ Amer",
+ "if ied",
+ "ifi ed",
+ "ifie d",
+ "ó w",
+ "▁S u",
+ "▁ Su",
+ "te s",
+ "t es",
+ "me d",
+ "m ed",
+ "▁R eg",
+ "▁Re g",
+ "▁ Reg",
+ "so le",
+ "sol e",
+ "s ole",
+ "▁in clud",
+ "▁incl ud",
+ "▁inclu d",
+ "▁ includ",
+ "in i",
+ "i ni",
+ "in ci",
+ "inc i",
+ "▁p la",
+ "▁pl a",
+ "▁ pla",
+ "▁l eft",
+ "▁le ft",
+ "▁ left",
+ "d f",
+ "Pa r",
+ "P ar",
+ "▁A ll",
+ "▁Al l",
+ "▁ All",
+ "▁o cc",
+ "▁oc c",
+ "▁ occ",
+ "▁A t",
+ "▁ At",
+ "▁c r",
+ "▁ cr",
+ "Q u",
+ "▁g iven",
+ "▁giv en",
+ "▁give n",
+ "▁gi ven",
+ "▁S ystem",
+ "▁Syst em",
+ "▁ System",
+ "ic an",
+ "ica n",
+ "i can",
+ "▁f inal",
+ "▁fin al",
+ "▁fi nal",
+ "▁ final",
+ "it ions",
+ "ition s",
+ "iti ons",
+ "▁б ы",
+ "▁ бы",
+ "▁per form",
+ "▁perf orm",
+ "▁ perform",
+ "A N",
+ "▁M e",
+ "▁ Me",
+ "ur o",
+ "u ro",
+ "▁T hat",
+ "▁Th at",
+ "▁ That",
+ "г ра",
+ "▁П о",
+ "▁ По",
+ "▁в и",
+ "▁ ви",
+ "ab ly",
+ "abl y",
+ "▁pr esent",
+ "▁pre sent",
+ "▁pres ent",
+ "▁ present",
+ "du ct",
+ "d uct",
+ "ri c",
+ "r ic",
+ "▁E ng",
+ "▁En g",
+ "▁ Eng",
+ "tr y",
+ "t ry",
+ "▁l ar",
+ "▁la r",
+ "▁ lar",
+ "b l",
+ "id d",
+ "i dd",
+ "▁ä r",
+ "▁ är",
+ "or a",
+ "o ra",
+ "L L",
+ "os s",
+ "o ss",
+ "▁I SBN",
+ "▁ ISBN",
+ "▁th ree",
+ "▁thr ee",
+ "▁thre e",
+ "▁ three",
+ "j o",
+ "n í",
+ "r c",
+ "▁f ar",
+ "▁fa r",
+ "▁ far",
+ "▁N ot",
+ "▁No t",
+ "▁ Not",
+ "▁l ittle",
+ "▁litt le",
+ "di s",
+ "d is",
+ "at i",
+ "a ti",
+ "fun ction",
+ "func tion",
+ "f unction",
+ "▁a ble",
+ "▁ab le",
+ "▁ able",
+ "le ss",
+ "les s",
+ "l ess",
+ "с о",
+ "▁p ath",
+ "▁pat h",
+ "▁pa th",
+ "▁ path",
+ "▁p res",
+ "▁pr es",
+ "▁pre s",
+ "▁ pres",
+ "lo se",
+ "los e",
+ "l ose",
+ "P I",
+ "▁iss ue",
+ "▁issu e",
+ "▁ issue",
+ "ack age",
+ "ti me",
+ "tim e",
+ "t ime",
+ "ig e",
+ "i ge",
+ "am s",
+ "a ms",
+ "▁C l",
+ "▁ Cl",
+ "ail s",
+ "ai ls",
+ "a ils",
+ "al k",
+ "i i",
+ "ш е",
+ "pe n",
+ "p en",
+ "Q L",
+ "▁e as",
+ "R L",
+ "ce l",
+ "c el",
+ "▁s l",
+ "▁ sl",
+ "▁a sk",
+ "▁as k",
+ "▁ ask",
+ "▁n om",
+ "▁no m",
+ "▁ nom",
+ "▁t op",
+ "▁to p",
+ "▁ top",
+ "id es",
+ "ide s",
+ "i des",
+ "in dex",
+ "ind ex",
+ "inde x",
+ "é m",
+ "▁h app",
+ "▁ha pp",
+ "o x",
+ "c d",
+ "▁b etter",
+ "▁bet ter",
+ "▁lo ad",
+ "▁ load",
+ "ad os",
+ "ado s",
+ "ze n",
+ "z en",
+ "▁c e",
+ "▁ ce",
+ "▁f a",
+ "▁ fa",
+ "▁J ohn",
+ "▁Joh n",
+ "▁Jo hn",
+ "▁ John",
+ "IM A",
+ "I MA",
+ "▁B ar",
+ "▁Ba r",
+ "▁ Bar",
+ "over flow",
+ "▁д е",
+ "▁ де",
+ "ne ss",
+ "nes s",
+ "n ess",
+ "ce r",
+ "c er",
+ "▁H ere",
+ "▁He re",
+ "▁Her e",
+ "▁ Here",
+ "re t",
+ "r et",
+ "▁s z",
+ "▁ sz",
+ "amb da",
+ "op y",
+ "o py",
+ "ur l",
+ "u rl",
+ "p y",
+ "r t",
+ "▁under stand",
+ "a ł",
+ "he r",
+ "h er",
+ "# #",
+ "▁ch ild",
+ "▁chi ld",
+ "▁ child",
+ "▁ex ec",
+ "▁ exec",
+ "▁app lication",
+ "▁applic ation",
+ "▁ application",
+ "▁st ruct",
+ "▁str uct",
+ "▁stru ct",
+ "▁ struct",
+ "▁ я",
+ "Fil e",
+ "Fi le",
+ "F ile",
+ "▁c ert",
+ "▁ce rt",
+ "▁cer t",
+ "▁ cert",
+ "is on",
+ "iso n",
+ "i son",
+ "▁vari able",
+ "▁ variable",
+ "D E",
+ "r s",
+ "▁re ally",
+ "▁real ly",
+ "Po rt",
+ "P ort",
+ "b a",
+ "▁B er",
+ "▁Be r",
+ "▁ Ber",
+ "▁in te",
+ "▁int e",
+ "▁ inte",
+ "▁st atic",
+ "▁stat ic",
+ "▁stati c",
+ "▁ static",
+ "▁con fig",
+ "▁conf ig",
+ "▁ config",
+ "▁S he",
+ "▁Sh e",
+ "▁ She",
+ "est ions",
+ "estion s",
+ "esti ons",
+ "▁p lus",
+ "▁pl us",
+ "▁ plus",
+ "▁h ab",
+ "▁ha b",
+ "▁ hab",
+ "op e",
+ "o pe",
+ "▁m us",
+ "▁mu s",
+ "▁ mus",
+ "▁c ount",
+ "▁co unt",
+ "▁coun t",
+ "▁cou nt",
+ "▁ count",
+ "M E",
+ "▁su pport",
+ "▁supp ort",
+ "▁sup port",
+ "▁ support",
+ "▁pe ople",
+ "▁ people",
+ "▁b eh",
+ "▁be h",
+ "▁al ready",
+ "T r",
+ "▁d one",
+ "▁do ne",
+ "▁don e",
+ "▁ done",
+ "de m",
+ "d em",
+ "si ze",
+ "s ize",
+ "al pha",
+ "alph a",
+ "▁d isc",
+ "▁di sc",
+ "▁dis c",
+ "] )",
+ "▁M an",
+ "▁Ma n",
+ "▁ Man",
+ "▁m il",
+ "▁mi l",
+ "▁ mil",
+ "▁st and",
+ "▁sta nd",
+ "▁stan d",
+ "▁ stand",
+ "▁gr oup",
+ "▁gro up",
+ "▁ group",
+ "▁sm all",
+ "▁ small",
+ "▁m ag",
+ "▁ma g",
+ "▁ mag",
+ "ст ь",
+ "с ть",
+ "▁de fault",
+ "▁def ault",
+ "▁ default",
+ "▁sing le",
+ "▁sin gle",
+ "▁ single",
+ "lin k",
+ "l ink",
+ "cl ude",
+ "clud e",
+ "▁e ar",
+ "▁ ear",
+ "il ar",
+ "ila r",
+ "i lar",
+ "** **",
+ "*** *",
+ "* ***",
+ "▁f ix",
+ "▁fi x",
+ "▁ fix",
+ "le y",
+ "l ey",
+ "▁p as",
+ "▁pa s",
+ "▁ pas",
+ "ни й",
+ "iss ion",
+ "▁im plement",
+ "▁imp lement",
+ "▁impl ement",
+ "it ch",
+ "▁го да",
+ "▁год а",
+ "▁al ways",
+ "▁ always",
+ "▁J ah",
+ "▁Ja h",
+ "pr ing",
+ "p ring",
+ "ç ão",
+ "pl ate",
+ "pla te",
+ "p late",
+ "▁de scri",
+ "▁des cri",
+ "▁desc ri",
+ "▁h ead",
+ "▁he ad",
+ "▁ head",
+ "in it",
+ "ini t",
+ "i nit",
+ "og raf",
+ "▁qu ery",
+ "▁que ry",
+ "▁quer y",
+ "▁ query",
+ "iv ed",
+ "ive d",
+ "i ved",
+ "▁in g",
+ "▁i ng",
+ "▁ ing",
+ "pt y",
+ "p ty",
+ "h a",
+ "▁m ov",
+ "▁mo v",
+ "▁ mov",
+ "▁ э",
+ "et te",
+ "ett e",
+ "e tte",
+ "il y",
+ "i ly",
+ "▁g ot",
+ "▁go t",
+ "▁ got",
+ "il ed",
+ "ile d",
+ "i led",
+ "ic ro",
+ "i cro",
+ "▁w r",
+ "▁ wr",
+ "р я",
+ "▁n ever",
+ "▁ne ver",
+ "▁nev er",
+ "or es",
+ "ore s",
+ "o res",
+ "▁b as",
+ "▁ba s",
+ "▁ bas",
+ "io s",
+ "i os",
+ "la ck",
+ "lac k",
+ "l ack",
+ "ain t",
+ "ai nt",
+ "a int",
+ "vi ous",
+ "v ious",
+ "▁g ive",
+ "▁giv e",
+ "▁gi ve",
+ "id ad",
+ "ida d",
+ "E n",
+ "ны й",
+ "н ый",
+ "ta ble",
+ "tab le",
+ "t able",
+ "▁Н а",
+ "▁ На",
+ "▁p at",
+ "▁pa t",
+ "▁ pat",
+ "то р",
+ "т ор",
+ "an gu",
+ "ang u",
+ "lo y",
+ "l oy",
+ "▁s eg",
+ "▁se g",
+ "▁ seg",
+ "ar ray",
+ "arr ay",
+ "▁F l",
+ "▁ Fl",
+ "▁in dex",
+ "▁ind ex",
+ "▁inde x",
+ "▁ index",
+ "▁s w",
+ "▁ sw",
+ "IMA GE",
+ "IM AGE",
+ "▁k m",
+ "▁ km",
+ "б и",
+ "Cl ass",
+ "Cla ss",
+ "C lass",
+ "en a",
+ "e na",
+ "ме н",
+ "м ен",
+ "com p",
+ "co mp",
+ "c omp",
+ "at us",
+ "atu s",
+ "ra p",
+ "r ap",
+ "▁L ist",
+ "▁Li st",
+ "▁Lis t",
+ "▁ List",
+ "Er ror",
+ "Err or",
+ "E rror",
+ "▁t yp",
+ "▁ty p",
+ "▁ typ",
+ "▁м а",
+ "▁ ма",
+ "c s",
+ "' :",
+ "j i",
+ "▁How ever",
+ "▁ However",
+ "▁т е",
+ "▁ те",
+ "▁be low",
+ "▁bel ow",
+ "▁ below",
+ "▁A pp",
+ "▁Ap p",
+ "▁ App",
+ "щ е",
+ "} _",
+ "bu m",
+ "b um",
+ "vi r",
+ "v ir",
+ "ée s",
+ "é es",
+ "▁re cord",
+ "▁rec ord",
+ "▁ record",
+ "ta in",
+ "t ain",
+ "le m",
+ "l em",
+ "it al",
+ "ita l",
+ "i tal",
+ "▁i mp",
+ "▁im p",
+ "▁ imp",
+ "eg o",
+ "e go",
+ "▁o d",
+ "▁ od",
+ "▁re ce",
+ "▁rec e",
+ "▁ rece",
+ "mi t",
+ "m it",
+ "ff ic",
+ "f fic",
+ "stack overflow",
+ "ie ve",
+ "iev e",
+ "▁ З",
+ "▁n ov",
+ "▁no v",
+ "▁ nov",
+ "ц е",
+ "▁In tern",
+ "▁Int ern",
+ "▁Inter n",
+ "▁ Intern",
+ "b u",
+ "▁s ugg",
+ "▁su gg",
+ "▁sug g",
+ "▁l oop",
+ "▁lo op",
+ "▁ loop",
+ "ri de",
+ "rid e",
+ "r ide",
+ "▁$ (",
+ "▁ $(",
+ "▁s uper",
+ "▁su per",
+ "▁sup er",
+ "▁ super",
+ "ri d",
+ "r id",
+ "ны х",
+ "н ых",
+ "▁P er",
+ "▁Pe r",
+ "▁ Per",
+ "▁d om",
+ "▁do m",
+ "▁ dom",
+ "= '",
+ "ut sch",
+ "uts ch",
+ "le n",
+ "l en",
+ "▁w rite",
+ "▁writ e",
+ "▁wr ite",
+ "▁ write",
+ "▁in v",
+ "▁ inv",
+ "ou th",
+ "out h",
+ "o uth",
+ "▁H er",
+ "▁He r",
+ "▁ Her",
+ "▁y ears",
+ "▁year s",
+ "▁ye ars",
+ "▁or iginal",
+ "▁orig inal",
+ "▁origin al",
+ "▁ original",
+ "eg a",
+ "e ga",
+ "▁S te",
+ "▁St e",
+ "▁ Ste",
+ "▁se ems",
+ "▁see ms",
+ "▁seem s",
+ "é g",
+ "▁n ext",
+ "▁ne xt",
+ "▁ next",
+ "ed er",
+ "ede r",
+ "e der",
+ "▁N e",
+ "▁ Ne",
+ "av as",
+ "ava s",
+ "a vas",
+ "ific ation",
+ "ifi cation",
+ "ifica tion",
+ "Ex ception",
+ "▁D er",
+ "▁De r",
+ "▁ Der",
+ "▁v e",
+ "▁ ve",
+ "at ic",
+ "ati c",
+ "ha t",
+ "h at",
+ "br ary",
+ "bra ry",
+ "re turn",
+ "ret urn",
+ "ur ch",
+ "is ion",
+ "isi on",
+ "m i",
+ "oi nt",
+ "oin t",
+ "o int",
+ "▁d ay",
+ "▁da y",
+ "▁ day",
+ "ic tion",
+ "ict ion",
+ "i ction",
+ "á l",
+ "▁é s",
+ "▁ és",
+ "▁th ough",
+ "▁thou gh",
+ "▁ though",
+ "ac tion",
+ "act ion",
+ "a ction",
+ "í t",
+ "un gen",
+ "ung en",
+ "unge n",
+ "ou rs",
+ "our s",
+ "o urs",
+ "▁s cript",
+ "▁scr ipt",
+ "▁scri pt",
+ "▁ script",
+ "▁in formation",
+ "▁inform ation",
+ "▁ information",
+ "▁mult i",
+ "▁mul ti",
+ "▁ multi",
+ "▁\\ \\",
+ "▁ \\\\",
+ "st er",
+ "ste r",
+ "s ter",
+ "к е",
+ "A C",
+ "ci es",
+ "cie s",
+ "c ies",
+ "▁dis play",
+ "▁disp lay",
+ "▁ display",
+ "om an",
+ "oma n",
+ "o man",
+ "Tim e",
+ "T ime",
+ "iu s",
+ "i us",
+ ")) ;",
+ ") );",
+ "tr e",
+ "t re",
+ "▁l im",
+ "▁li m",
+ "▁ lim",
+ "at ely",
+ "ate ly",
+ "atel y",
+ "é d",
+ "is te",
+ "ist e",
+ "i ste",
+ "▁с а",
+ "▁ са",
+ "pos t",
+ "po st",
+ "p ost",
+ "ue l",
+ "u el",
+ "im g",
+ "▁ ч",
+ "ск а",
+ "с ка",
+ "el d",
+ "e ld",
+ "pp er",
+ "ppe r",
+ "p per",
+ "ul a",
+ "u la",
+ "▁gener al",
+ "▁gen eral",
+ "▁gene ral",
+ "▁ general",
+ "A l",
+ "For m",
+ "F orm",
+ "▁u pon",
+ "▁up on",
+ "z o",
+ "am ente",
+ "ament e",
+ "amen te",
+ "a mente",
+ "▁p rom",
+ "▁pro m",
+ "▁pr om",
+ "▁ prom",
+ "▁ ü",
+ "le x",
+ "l ex",
+ "▁t urn",
+ "▁tu rn",
+ "▁tur n",
+ "▁ turn",
+ "▁м е",
+ "▁ ме",
+ "en tion",
+ "ent ion",
+ "enti on",
+ "ле н",
+ "л ен",
+ "▁a f",
+ "▁ af",
+ "ic le",
+ "i cle",
+ "ст в",
+ "с тв",
+ "▁F il",
+ "▁ Fil",
+ "▁ Ф",
+ "ava script",
+ "avas cript",
+ "Ma n",
+ "M an",
+ "ar a",
+ "a ra",
+ "wa re",
+ "war e",
+ "w are",
+ "al ign",
+ "ali gn",
+ "an gle",
+ "ang le",
+ "▁S c",
+ "▁ Sc",
+ "un ic",
+ "uni c",
+ "u nic",
+ "▁f ran",
+ "▁fr an",
+ "▁fra n",
+ "▁ fran",
+ "U n",
+ "z i",
+ "me t",
+ "m et",
+ "Ad d",
+ "A dd",
+ "▁p ub",
+ "▁pu b",
+ "▁ pub",
+ "ко в",
+ "к ов",
+ "▁g en",
+ "▁ge n",
+ "▁ gen",
+ "▁p od",
+ "▁po d",
+ "▁ pod",
+ "▁s um",
+ "▁su m",
+ "▁ sum",
+ "▁h aving",
+ "▁ha ving",
+ "▁hav ing",
+ "▁a vec",
+ "▁av ec",
+ "▁ave c",
+ "s l",
+ "▁f ig",
+ "▁fi g",
+ "▁ fig",
+ "▁R es",
+ "▁Re s",
+ "▁ Res",
+ "Dat e",
+ "Da te",
+ "D ate",
+ "ul es",
+ "ule s",
+ "u les",
+ "wi th",
+ "w ith",
+ "ски й",
+ "с кий",
+ "g u",
+ "E T",
+ "▁b ro",
+ "▁br o",
+ "▁ bro",
+ "ri e",
+ "r ie",
+ "ap s",
+ "a ps",
+ "en ding",
+ "end ing",
+ "endi ng",
+ "ma il",
+ "mai l",
+ "m ail",
+ "oo k",
+ "o ok",
+ "▁su ccess",
+ "▁succ ess",
+ "▁suc cess",
+ "▁ success",
+ "ber g",
+ "be rg",
+ "b erg",
+ "▁d eb",
+ "▁de b",
+ "▁ deb",
+ "el ta",
+ "elt a",
+ "() `",
+ "( )`",
+ "ent ial",
+ "enti al",
+ "fr ame",
+ "fra me",
+ "fram e",
+ "f rame",
+ "Ke y",
+ "K ey",
+ "in n",
+ "i nn",
+ "▁sim ple",
+ "▁simp le",
+ "▁simpl e",
+ "▁ simple",
+ "iv al",
+ "iva l",
+ "i val",
+ "▁c are",
+ "▁car e",
+ "▁ca re",
+ "▁ care",
+ "▁W eb",
+ "▁We b",
+ "▁ Web",
+ "\") .",
+ "\" ).",
+ ">< /",
+ "> ",
+ "▁d atabase",
+ "▁data base",
+ "▁dat abase",
+ "▁datab ase",
+ "▁ database",
+ "▁N ow",
+ "▁No w",
+ "▁ Now",
+ "In d",
+ "I nd",
+ "▁м о",
+ "▁ мо",
+ "ch t",
+ "c ht",
+ "ba n",
+ "b an",
+ "ra m",
+ "r am",
+ "equ ation",
+ "sk i",
+ "s ki",
+ "ie f",
+ "i ef",
+ "li m",
+ "l im",
+ "Ge t",
+ "G et",
+ "▁t re",
+ "▁tr e",
+ "▁ tre",
+ "at en",
+ "ate n",
+ "a ten",
+ "be d",
+ "b ed",
+ "▁J e",
+ "▁ Je",
+ "▁result s",
+ "▁ results",
+ "л ю",
+ "те ль",
+ "тел ь",
+ "т ель",
+ "d b",
+ "▁b it",
+ "▁bi t",
+ "▁ bit",
+ "bo dy",
+ "b ody",
+ "Ar ray",
+ "Arr ay",
+ "m u",
+ "pr ession",
+ "press ion",
+ "p ression",
+ "▁с та",
+ "▁ст а",
+ "▁ ста",
+ "on y",
+ "o ny",
+ "if f",
+ "i ff",
+ "▁b ar",
+ "▁ba r",
+ "▁ bar",
+ "▁Ar ch",
+ "▁Arc h",
+ "▁ Arch",
+ "ber s",
+ "be rs",
+ "b ers",
+ ") {",
+ "▁M on",
+ "▁Mo n",
+ "▁ Mon",
+ "▁do ing",
+ "▁doi ng",
+ "▁pro f",
+ "▁pr of",
+ "▁ prof",
+ "▁inst all",
+ "▁instal l",
+ "▁ install",
+ "▁p osition",
+ "▁pos ition",
+ "▁posit ion",
+ "▁ position",
+ "em a",
+ "e ma",
+ "▁} );",
+ "▁}) ;",
+ "▁ });",
+ "Pat h",
+ "Pa th",
+ "P ath",
+ "al i",
+ "a li",
+ "▁& &",
+ "▁ &&",
+ "le v",
+ "l ev",
+ "▁c annot",
+ "▁can not",
+ "▁M ay",
+ "▁Ma y",
+ "▁ May",
+ "in st",
+ "ins t",
+ "- \\",
+ "▁c oun",
+ "▁co un",
+ "▁cou n",
+ "▁a ng",
+ "▁an g",
+ "▁ ang",
+ "▁app ear",
+ "▁appe ar",
+ "co r",
+ "c or",
+ "ci ó",
+ "c ió",
+ "id ed",
+ "ide d",
+ "i ded",
+ "qu estions",
+ "quest ions",
+ "question s",
+ "at ter",
+ "att er",
+ "atte r",
+ "▁P a",
+ "▁ Pa",
+ "se lect",
+ "sel ect",
+ "s elect",
+ "▁pr inci",
+ "▁prin ci",
+ "E vent",
+ "▁s ide",
+ "▁si de",
+ "▁sid e",
+ "▁ side",
+ "▁m em",
+ "▁me m",
+ "▁ mem",
+ "▁J an",
+ "▁Ja n",
+ "▁ Jan",
+ "ar io",
+ "ari o",
+ "a rio",
+ "▁with in",
+ "▁wit hin",
+ "▁V al",
+ "▁Va l",
+ "▁ Val",
+ "ode s",
+ "od es",
+ "o des",
+ "idd le",
+ "ur ation",
+ "ura tion",
+ "br a",
+ "b ra",
+ "▁d ate",
+ "▁da te",
+ "▁dat e",
+ "▁ date",
+ "[ ]",
+ "▁en tre",
+ "▁ent re",
+ "▁entr e",
+ "▁ entre",
+ "il i",
+ "i li",
+ "Port ail",
+ "doc s",
+ "do cs",
+ "d ocs",
+ "ско й",
+ "с кой",
+ "El ement",
+ "E lement",
+ "▁m essage",
+ "▁mess age",
+ "▁ message",
+ "▁n ach",
+ "▁na ch",
+ "▁nac h",
+ "▁ nach",
+ "▁d uring",
+ "▁du ring",
+ "▁dur ing",
+ "▁g ra",
+ "▁gr a",
+ "▁ gra",
+ "et work",
+ "▁B y",
+ "▁ By",
+ "▁t ell",
+ "▁te ll",
+ "▁tel l",
+ "et e",
+ "e te",
+ "~ \\",
+ "▁b is",
+ "▁bi s",
+ "▁ bis",
+ "▁p u",
+ "▁ pu",
+ "▁re d",
+ "▁r ed",
+ "▁ red",
+ "▁t hing",
+ "▁th ing",
+ "▁thin g",
+ "▁ thing",
+ "▁s ort",
+ "▁so rt",
+ "▁sor t",
+ "▁ sort",
+ "xi m",
+ "x im",
+ "ir es",
+ "ire s",
+ "i res",
+ "Use r",
+ "Us er",
+ "U ser",
+ "io d",
+ "i od",
+ "▁E st",
+ "▁Es t",
+ "▁ Est",
+ "os ed",
+ "ose d",
+ "o sed",
+ "ou te",
+ "out e",
+ "o ute",
+ "▁L es",
+ "▁Le s",
+ "▁ Les",
+ "▁s ent",
+ "▁se nt",
+ "▁sen t",
+ "▁ sent",
+ "rib ute",
+ "ribu te",
+ "ut es",
+ "ute s",
+ "u tes",
+ "ist ory",
+ "istor y",
+ "isto ry",
+ "i story",
+ "▁ser vice",
+ "▁serv ice",
+ "▁servi ce",
+ "▁ service",
+ "' ;",
+ "fi eld",
+ "f ield",
+ "▁I N",
+ "▁ IN",
+ "ens ion",
+ "re l",
+ "r el",
+ "▁go ing",
+ "▁ going",
+ "we b",
+ "w eb",
+ "Con text",
+ "Cont ext",
+ "▁l ater",
+ "▁la ter",
+ "▁lat er",
+ "▁late r",
+ "u k",
+ "lay out",
+ "l ayout",
+ "on a",
+ "o na",
+ "á t",
+ "---- ------------",
+ "-------- --------",
+ "------------ ----",
+ "------ ----------",
+ "---------- ------",
+ "▁ex act",
+ "an dom",
+ "and om",
+ "ando m",
+ "▁s ie",
+ "▁si e",
+ "I I",
+ "▁The y",
+ "▁Th ey",
+ "▁ They",
+ "ment e",
+ "men te",
+ "m ente",
+ "ib li",
+ "▁f ine",
+ "▁fin e",
+ "▁fi ne",
+ "U T",
+ "▁de velop",
+ "▁deve lop",
+ "▁ develop",
+ "▁E in",
+ "so ft",
+ "of f",
+ "o ff",
+ "Se t",
+ "S et",
+ "▁a z",
+ "▁ az",
+ "et ers",
+ "eter s",
+ "ete rs",
+ "e ters",
+ "il der",
+ "ild er",
+ "ilde r",
+ "i lder",
+ "ple s",
+ "pl es",
+ "p les",
+ "▁spec ific",
+ "▁ specific",
+ "▁o m",
+ "▁ om",
+ "er ror",
+ "err or",
+ "e rror",
+ "ent ly",
+ "▁fil m",
+ "▁fi lm",
+ "▁ film",
+ "uc k",
+ "u ck",
+ "ain s",
+ "ai ns",
+ "a ins",
+ "ac ión",
+ "ació n",
+ "aci ón",
+ "a ción",
+ "ge s",
+ "g es",
+ "ж а",
+ "▁th ings",
+ "▁thing s",
+ "▁thin gs",
+ "S h",
+ "▁th ought",
+ "▁though t",
+ "▁ad ded",
+ "▁add ed",
+ "▁ added",
+ "de p",
+ "d ep",
+ "ско го",
+ "ск ого",
+ "ског о",
+ "с кого",
+ "▁L i",
+ "▁ Li",
+ "il s",
+ "i ls",
+ "yn c",
+ "y nc",
+ "▁т о",
+ "▁ то",
+ "ri es",
+ "rie s",
+ "r ies",
+ "▁c u",
+ "▁ cu",
+ "ch en",
+ "che n",
+ "c hen",
+ "IO N",
+ "I ON",
+ "▁D es",
+ "▁De s",
+ "▁ Des",
+ "ult ado",
+ "ir t",
+ "i rt",
+ "▁b ased",
+ "▁bas ed",
+ "▁base d",
+ "▁ba sed",
+ "▁ based",
+ "▁m o",
+ "▁ mo",
+ "▁d est",
+ "▁de st",
+ "▁des t",
+ "▁ dest",
+ "pn g",
+ "p ng",
+ "re en",
+ "ree n",
+ "r een",
+ "▁r unning",
+ "▁run ning",
+ "▁ running",
+ "am ma",
+ "amm a",
+ "ou d",
+ "o ud",
+ "▁re fer",
+ "▁ref er",
+ "▁ refer",
+ "io us",
+ "i ous",
+ "▁J ul",
+ "▁Ju l",
+ "▁ Jul",
+ "▁s earch",
+ "▁se arch",
+ "▁ search",
+ "al d",
+ "a ld",
+ "ed e",
+ "e de",
+ "▁w rong",
+ "▁wr ong",
+ "A n",
+ "▁u ntil",
+ "▁un til",
+ "▁ until",
+ "si te",
+ "s ite",
+ "ay er",
+ "aye r",
+ "a yer",
+ "▁on ce",
+ "▁ once",
+ "ar r",
+ "a rr",
+ "▁again st",
+ "== ==",
+ "=== =",
+ "= ===",
+ "▁s ource",
+ "▁ source",
+ "ar n",
+ "a rn",
+ "ap i",
+ "a pi",
+ "▁re present",
+ "▁repr esent",
+ "▁repres ent",
+ "▁repre sent",
+ "▁a ff",
+ "▁af f",
+ "▁ aff",
+ "▁s ein",
+ "▁se in",
+ "▁sei n",
+ "▁ sein",
+ "▁al low",
+ "▁all ow",
+ "▁allo w",
+ "▁ allow",
+ "or mal",
+ "orm al",
+ "en ded",
+ "end ed",
+ "ende d",
+ "▁cont rol",
+ "▁contr ol",
+ "▁contro l",
+ "▁ control",
+ "math bf",
+ "com e",
+ "co me",
+ "c ome",
+ "cu r",
+ "c ur",
+ "en do",
+ "end o",
+ "w a",
+ "▁up date",
+ "▁upd ate",
+ "▁ update",
+ "▁in side",
+ "▁ins ide",
+ "▁ inside",
+ "▁re ason",
+ "▁ reason",
+ "om en",
+ "ome n",
+ "o men",
+ "▁в ы",
+ "▁ вы",
+ "D e",
+ "▁ј е",
+ "▁ је",
+ "s w",
+ "▁s ever",
+ "▁se ver",
+ "O f",
+ "▁inst ance",
+ "▁ instance",
+ "▁m er",
+ "▁me r",
+ "▁ mer",
+ "▁e ffect",
+ "▁eff ect",
+ "▁ effect",
+ "col or",
+ "co lor",
+ "colo r",
+ "ug ust",
+ "il t",
+ "i lt",
+ "de s",
+ "d es",
+ "it z",
+ "i tz",
+ "ul ation",
+ "ula tion",
+ "u lation",
+ "ni e",
+ "n ie",
+ "▁W orld",
+ "▁Wor ld",
+ "▁ World",
+ "▁sim ilar",
+ "▁ similar",
+ "ym bol",
+ "hi ng",
+ "hin g",
+ "h ing",
+ "▁m ark",
+ "▁mar k",
+ "▁ mark",
+ "St ate",
+ "Stat e",
+ "▁cont ent",
+ "▁conten t",
+ "▁conte nt",
+ "▁ content",
+ "▁me ans",
+ "▁mean s",
+ "am ed",
+ "ame d",
+ "a med",
+ "▁E nd",
+ "▁En d",
+ "▁ End",
+ "N D",
+ "co unt",
+ "cou nt",
+ "c ount",
+ "▁In st",
+ "▁Ins t",
+ "▁ Inst",
+ "per ty",
+ "pert y",
+ "ct or",
+ "c tor",
+ "▁{ \\",
+ "▁ {\\",
+ "▁L et",
+ "▁Le t",
+ "▁ Let",
+ "▁! =",
+ "▁ !=",
+ "▁get ting",
+ "▁ getting",
+ "ut h",
+ "u th",
+ "um ber",
+ "umb er",
+ "▁Cons ultado",
+ "sch aft",
+ "sc haft",
+ "le te",
+ "let e",
+ "l ete",
+ "▁W ill",
+ "▁Wil l",
+ "▁Wi ll",
+ "▁ Will",
+ "▁E m",
+ "▁ Em",
+ "he ad",
+ "h ead",
+ "▁l eg",
+ "▁le g",
+ "▁ leg",
+ "но м",
+ "н ом",
+ "O r",
+ "ar m",
+ "a rm",
+ "pon d",
+ "po nd",
+ "p ond",
+ "▁Ch rist",
+ "▁Chris t",
+ "▁Chr ist",
+ "▁ Christ",
+ "▁a round",
+ "▁ar ound",
+ "▁ around",
+ "▁c lear",
+ "▁cl ear",
+ "▁cle ar",
+ "▁ clear",
+ "▁h ref",
+ "▁hr ef",
+ "▁ href",
+ "▁S ee",
+ "▁Se e",
+ "▁ See",
+ "') .",
+ "' ).",
+ "▁cre ated",
+ "▁create d",
+ "▁ created",
+ "▁b utton",
+ "▁but ton",
+ "▁ button",
+ "in ing",
+ "ini ng",
+ "i ning",
+ "▁c lick",
+ "▁cl ick",
+ "▁cli ck",
+ "▁ click",
+ "ia m",
+ "i am",
+ "pl it",
+ "p lit",
+ "F or",
+ "▁p olit",
+ "▁po lit",
+ "▁pol it",
+ "▁ polit",
+ "▁se em",
+ "▁see m",
+ "▁l ife",
+ "▁li fe",
+ "▁lif e",
+ "▁ life",
+ "но в",
+ "н ов",
+ "▁in tern",
+ "▁int ern",
+ "▁inter n",
+ "▁inte rn",
+ "▁ intern",
+ "щ и",
+ "se l",
+ "s el",
+ "so ci",
+ "s oci",
+ "▁s tor",
+ "▁st or",
+ "▁sto r",
+ "▁ stor",
+ "cl e",
+ "c le",
+ "ear ch",
+ "e arch",
+ "and roid",
+ "andro id",
+ "andr oid",
+ "}^ {",
+ "} ^{",
+ "▁e ither",
+ "▁f ew",
+ "▁fe w",
+ "▁init ial",
+ "▁initi al",
+ "▁ initial",
+ "l ength",
+ "ri a",
+ "r ia",
+ "sq l",
+ "s ql",
+ "wi k",
+ "w ik",
+ "▁é t",
+ "▁ ét",
+ "ue r",
+ "u er",
+ "▁val id",
+ "▁ valid",
+ "An d",
+ "A nd",
+ "in clude",
+ "includ e",
+ "ur y",
+ "u ry",
+ "▁s us",
+ "▁su s",
+ "ir ed",
+ "ire d",
+ "i red",
+ "▁A fter",
+ "▁Af ter",
+ "▁ After",
+ "▁d ue",
+ "▁du e",
+ "▁ due",
+ "▁b ei",
+ "▁be i",
+ "▁ bei",
+ "our ces",
+ "ource s",
+ "▁N ov",
+ "▁No v",
+ "▁ Nov",
+ "Ac t",
+ "A ct",
+ "▁C ont",
+ "▁Con t",
+ "▁Co nt",
+ "▁ Cont",
+ "▁bre ak",
+ "▁ break",
+ "es ted",
+ "est ed",
+ "este d",
+ "e sted",
+ "▁act ually",
+ "▁actual ly",
+ "▁actu ally",
+ "el se",
+ "els e",
+ "tm l",
+ "t ml",
+ "re r",
+ "r er",
+ "on es",
+ "one s",
+ "o nes",
+ "▁de sign",
+ "▁des ign",
+ "▁ design",
+ "▁pro perty",
+ "▁proper ty",
+ "▁ property",
+ "ph i",
+ "p hi",
+ "al ity",
+ "ali ty",
+ "oc h",
+ "o ch",
+ "is ts",
+ "ist s",
+ "▁ ·",
+ "ud io",
+ "udi o",
+ "A B",
+ "al a",
+ "a la",
+ "ion es",
+ "io nes",
+ "ione s",
+ "i ones",
+ "ф и",
+ "fin d",
+ "fi nd",
+ "f ind",
+ "A s",
+ "▁c ustom",
+ "▁cust om",
+ "▁ custom",
+ "▁a nn",
+ "▁an n",
+ "▁ ann",
+ "E S",
+ "O T",
+ "l ambda",
+ "▁i dent",
+ "▁id ent",
+ "▁ide nt",
+ "▁ ident",
+ "▁or gan",
+ "▁org an",
+ "▁ organ",
+ "▁C ent",
+ "▁Ce nt",
+ "▁ Cent",
+ "▁C har",
+ "▁Ch ar",
+ "▁Cha r",
+ "▁ Char",
+ "▁o s",
+ "▁ os",
+ "▁h ard",
+ "▁ha rd",
+ "▁har d",
+ "▁ hard",
+ "ро в",
+ "р ов",
+ "▁/ >",
+ "▁ />",
+ "k o",
+ "▁ex per",
+ "▁exp er",
+ "▁se par",
+ "▁sep ar",
+ "▁ separ",
+ "y l",
+ "ou rn",
+ "our n",
+ "o urn",
+ "▁d ev",
+ "▁de v",
+ "▁ dev",
+ "▁a uch",
+ "▁au ch",
+ "▁auc h",
+ "▁ auch",
+ "▁b lock",
+ "▁bl ock",
+ "▁blo ck",
+ "▁ block",
+ "bo ok",
+ "b ook",
+ "▁m ap",
+ "▁ma p",
+ "▁ map",
+ "il la",
+ "ill a",
+ "i lla",
+ "▁com put",
+ "▁comp ut",
+ "▁ comput",
+ "▁s pace",
+ "▁sp ace",
+ "▁spac e",
+ "▁ space",
+ "res ult",
+ ") }",
+ "▁e cho",
+ "▁ec ho",
+ "▁ echo",
+ "con fig",
+ "conf ig",
+ "h i",
+ "▁lar ge",
+ "▁larg e",
+ "▁ large",
+ "▁w idth",
+ "▁wid th",
+ "▁ width",
+ "▁G o",
+ "▁ Go",
+ "ma t",
+ "m at",
+ "▁d iff",
+ "▁di ff",
+ "▁dif f",
+ "▁ diff",
+ "▁k ind",
+ "▁ki nd",
+ "▁kin d",
+ "▁ kind",
+ "an ces",
+ "ance s",
+ "anc es",
+ "yn am",
+ "yna m",
+ "y nam",
+ "▁col or",
+ "▁co lor",
+ "▁ color",
+ "In t",
+ "I nt",
+ "so l",
+ "s ol",
+ "▁p i",
+ "▁ pi",
+ "▁char acter",
+ "▁charact er",
+ "▁ character",
+ "om ent",
+ "ome nt",
+ "omen t",
+ "o ment",
+ "▁res ponse",
+ "▁respons e",
+ "▁ response",
+ "ig ma",
+ "ward s",
+ "war ds",
+ "w ards",
+ "ar row",
+ "arr ow",
+ "с у",
+ "ti es",
+ "t ies",
+ "▁ü ber",
+ "▁ über",
+ "Im age",
+ "y d",
+ "▁п ере",
+ "▁пер е",
+ "▁пе ре",
+ "▁ пере",
+ "▁n ode",
+ "▁no de",
+ "▁nod e",
+ "▁ node",
+ "▁it em",
+ "▁i tem",
+ "▁ item",
+ "ach ine",
+ "achi ne",
+ "im a",
+ "i ma",
+ "▁v a",
+ "▁ va",
+ "▁appro ach",
+ "▁w er",
+ "▁we r",
+ "▁ wer",
+ "▁ч е",
+ "▁ че",
+ "O n",
+ "ol low",
+ "oll ow",
+ "он а",
+ "о на",
+ "ct ed",
+ "c ted",
+ "ur ed",
+ "ure d",
+ "u red",
+ "Cont roller",
+ "Control ler",
+ "li ed",
+ "lie d",
+ "l ied",
+ "▁j o",
+ "▁ jo",
+ "▁d al",
+ "▁da l",
+ "▁ dal",
+ "un k",
+ "▁ î",
+ "st art",
+ "sta rt",
+ "star t",
+ "ol a",
+ "o la",
+ "▁com pon",
+ "▁comp on",
+ "I C",
+ "bi t",
+ "b it",
+ "▁b ase",
+ "▁bas e",
+ "▁ba se",
+ "▁ base",
+ "п у",
+ "▁id ea",
+ "▁ide a",
+ "▁ idea",
+ "▁d ire",
+ "▁di re",
+ "▁dir e",
+ "▁ dire",
+ "▁r ad",
+ "▁ra d",
+ "▁ rad",
+ "gr oup",
+ "gro up",
+ "▁W ith",
+ "▁Wi th",
+ "▁Wit h",
+ "▁ With",
+ "ser ver",
+ "serv er",
+ "serve r",
+ "si de",
+ "s ide",
+ "si ng",
+ "sin g",
+ "s ing",
+ "▁d ies",
+ "▁di es",
+ "▁die s",
+ "▁n ear",
+ "▁ne ar",
+ "▁ near",
+ "▁v oor",
+ "▁vo or",
+ "▁ voor",
+ "▁arg ument",
+ "▁ argument",
+ "▁} ,",
+ "▁ },",
+ "▁l and",
+ "▁la nd",
+ "▁lan d",
+ "▁ land",
+ "▁n ames",
+ "▁name s",
+ "▁na mes",
+ "▁nam es",
+ "▁ names",
+ "▁o ption",
+ "▁op tion",
+ "▁opt ion",
+ "▁ option",
+ "ith ub",
+ "pp ed",
+ "ppe d",
+ "p ped",
+ "au g",
+ "a ug",
+ "▁l inks",
+ "▁link s",
+ "▁lin ks",
+ "▁ links",
+ "▁f ull",
+ "▁fu ll",
+ "▁ful l",
+ "▁ full",
+ "▁s itu",
+ "▁si tu",
+ "▁sit u",
+ "▁con sole",
+ "▁cons ole",
+ "▁ console",
+ "▁e tc",
+ "▁et c",
+ "▁ etc",
+ "au x",
+ "a ux",
+ "▁C or",
+ "▁Co r",
+ "▁ Cor",
+ "icro soft",
+ "▁c ame",
+ "▁cam e",
+ "▁ca me",
+ "lo cal",
+ "loc al",
+ "l ocal",
+ "▁k nown",
+ "▁kn own",
+ "▁know n",
+ "▁ known",
+ "▁multi ple",
+ "▁multip le",
+ "▁ multiple",
+ "angu age",
+ "▁t otal",
+ "▁to tal",
+ "▁tot al",
+ "▁ total",
+ "ol ogy",
+ "olog y",
+ "olo gy",
+ "ä t",
+ "▁ Х",
+ "▁f re",
+ "▁fr e",
+ "▁ fre",
+ "▁t en",
+ "▁te n",
+ "▁ ten",
+ "ide o",
+ "▁b es",
+ "▁be s",
+ "▁ bes",
+ "tr ue",
+ "Qu ery",
+ "Que ry",
+ "om m",
+ "o mm",
+ "▁A rt",
+ "▁Ar t",
+ "▁ Art",
+ "▁ke ep",
+ "▁ keep",
+ "▁Un iversity",
+ "▁Univers ity",
+ "re ate",
+ "rea te",
+ "pp ort",
+ "ppo rt",
+ "p port",
+ "▁p ython",
+ "▁ python",
+ "tr a",
+ "t ra",
+ "ect or",
+ "ec tor",
+ "e ctor",
+ "р і",
+ "op h",
+ "o ph",
+ "▁c onc",
+ "▁con c",
+ "▁co nc",
+ "▁f our",
+ "▁fo ur",
+ "▁fou r",
+ "▁ four",
+ "vi ron",
+ "vir on",
+ "▁v ia",
+ "▁vi a",
+ "▁ via",
+ "? \"",
+ "im age",
+ "ima ge",
+ "ol l",
+ "o ll",
+ "ны е",
+ "н ые",
+ "▁con text",
+ "▁cont ext",
+ "▁conte xt",
+ "▁ context",
+ "▁s em",
+ "▁se m",
+ "▁ sem",
+ ". _",
+ "▁e ng",
+ "▁en g",
+ "▁ eng",
+ "ma r",
+ "m ar",
+ "A D",
+ "▁m or",
+ "▁mo r",
+ "▁ mor",
+ "▁C al",
+ "▁Ca l",
+ "▁ Cal",
+ "▁c ell",
+ "▁ce ll",
+ "▁cel l",
+ "▁ cell",
+ "im al",
+ "ima l",
+ "i mal",
+ "AT E",
+ "A TE",
+ "▁in f",
+ "▁ inf",
+ "ö n",
+ "uf fer",
+ "uff er",
+ "s q",
+ ".. ..",
+ "... .",
+ ". ...",
+ "▁z ur",
+ "▁zu r",
+ "W ith",
+ "ра н",
+ "р ан",
+ "ch n",
+ "c hn",
+ "▁d oor",
+ "▁do or",
+ "▁ door",
+ "cont ent",
+ "▁m iss",
+ "▁mi ss",
+ "▁mis s",
+ "▁ miss",
+ "▁s imp",
+ "▁sim p",
+ "▁si mp",
+ "▁ simp",
+ "á r",
+ "ir a",
+ "i ra",
+ "▁h at",
+ "▁ha t",
+ "▁ hat",
+ "Te st",
+ "T est",
+ "▁c ertain",
+ "▁cert ain",
+ "▁cer tain",
+ "▁ certain",
+ "N S",
+ "▁c ho",
+ "▁ch o",
+ "▁ cho",
+ "▁ad v",
+ "▁ adv",
+ "wh ere",
+ "w here",
+ "▁lo oking",
+ "▁look ing",
+ "▁ looking",
+ "▁t imes",
+ "▁time s",
+ "▁tim es",
+ "▁ti mes",
+ "▁ times",
+ "ни х",
+ "н их",
+ "ut o",
+ "u to",
+ "▁ É",
+ "ca n",
+ "c an",
+ "ho st",
+ "hos t",
+ "h ost",
+ "▁( *",
+ "▁ (*",
+ "lo at",
+ "▁n icht",
+ "▁ni cht",
+ "▁nic ht",
+ "▁nich t",
+ "Fi eld",
+ "F ield",
+ "bu rg",
+ "bur g",
+ "b urg",
+ "con st",
+ "cons t",
+ "ad es",
+ "ade s",
+ "a des",
+ "▁M us",
+ "▁Mu s",
+ "▁ Mus",
+ "▁n othing",
+ "▁not hing",
+ "▁no thing",
+ "▁ nothing",
+ "▁in cre",
+ "▁inc re",
+ "▁M in",
+ "▁Mi n",
+ "▁ Min",
+ "▁p ower",
+ "▁po wer",
+ "▁pow er",
+ "▁ power",
+ "▁Amer ican",
+ "▁America n",
+ "▁ American",
+ "l n",
+ "val id",
+ "un gs",
+ "ung s",
+ "▁N ational",
+ "▁Nat ional",
+ "▁Nation al",
+ "▁ National",
+ "▁S an",
+ "▁Sa n",
+ "▁ San",
+ "▁Y ork",
+ "Re quest",
+ "ch ar",
+ "cha r",
+ "c har",
+ "▁Z e",
+ "▁ Ze",
+ "but ton",
+ "b utton",
+ "▁a lg",
+ "▁al g",
+ "▁ alg",
+ "SO N",
+ "S ON",
+ "▁a p",
+ "▁ ap",
+ "uf f",
+ "u ff",
+ "ab ility",
+ "abil ity",
+ "е м",
+ "▁any thing",
+ "el a",
+ "e la",
+ "() )",
+ "( ))",
+ "б а",
+ "amp ion",
+ "ampio n",
+ "▁p ot",
+ "▁po t",
+ "▁ pot",
+ "▁f ut",
+ "▁fu t",
+ "ail able",
+ "▁p rop",
+ "▁pro p",
+ "▁pr op",
+ "▁ prop",
+ "\" ]",
+ "▁l ess",
+ "▁le ss",
+ "▁les s",
+ "▁ less",
+ "la g",
+ "l ag",
+ "▁A ugust",
+ "▁Aug ust",
+ "▁ August",
+ "I t",
+ "▁p lease",
+ "▁ple ase",
+ "▁st yle",
+ "▁sty le",
+ "▁ style",
+ "▁Al so",
+ "▁Als o",
+ "▁ Also",
+ "b t",
+ "▁pro bably",
+ "▁prob ably",
+ "▁O ne",
+ "▁On e",
+ "▁ One",
+ "▁p oss",
+ "▁po ss",
+ "▁pos s",
+ "▁ poss",
+ "U I",
+ "ui t",
+ "u it",
+ "▁W est",
+ "▁We st",
+ "▁Wes t",
+ "▁ West",
+ "h n",
+ "+ \\",
+ "But ton",
+ "Butt on",
+ "B utton",
+ "js on",
+ "j son",
+ "er r",
+ "e rr",
+ "ra me",
+ "ram e",
+ "r ame",
+ "do m",
+ "d om",
+ "il on",
+ "ilo n",
+ "i lon",
+ "al f",
+ "▁c lient",
+ "▁cl ient",
+ "▁cli ent",
+ "▁ client",
+ "▁cont inu",
+ "▁contin u",
+ "▁ continu",
+ "x ml",
+ "pe c",
+ "p ec",
+ "ad or",
+ "ado r",
+ "a dor",
+ "l s",
+ "▁how ever",
+ "▁A ny",
+ "▁An y",
+ "▁ Any",
+ "än d",
+ "ä nd",
+ "math rm",
+ "▁u rl",
+ "▁ur l",
+ "▁ url",
+ "▁b ook",
+ "▁bo ok",
+ "▁ book",
+ "▁g l",
+ "▁ gl",
+ "iv es",
+ "ive s",
+ "i ves",
+ "g i",
+ "▁t ro",
+ "▁tr o",
+ "▁U S",
+ "▁ US",
+ "po int",
+ "p oint",
+ "op en",
+ "ope n",
+ "o pen",
+ "▁c ur",
+ "▁cu r",
+ "▁ cur",
+ "▁e ra",
+ "▁er a",
+ "▁ era",
+ "▁part icular",
+ "▁partic ular",
+ "▁particul ar",
+ "▁parti cular",
+ "▁H T",
+ "▁ HT",
+ "oo t",
+ "o ot",
+ "el lo",
+ "ell o",
+ "lo bal",
+ "lob al",
+ "▁a ction",
+ "▁act ion",
+ "▁ac tion",
+ "▁ action",
+ "▁I nt",
+ "▁In t",
+ "▁ Int",
+ "▁in clude",
+ "▁incl ude",
+ "▁includ e",
+ "▁inclu de",
+ "▁ include",
+ "▁el ements",
+ "▁element s",
+ "▁ele ments",
+ "▁elem ents",
+ "▁ elements",
+ "на я",
+ "ar ds",
+ "ard s",
+ "▁B l",
+ "▁ Bl",
+ "▁h um",
+ "▁hu m",
+ "▁ hum",
+ "fr om",
+ "f rom",
+ "ch ange",
+ "chan ge",
+ "▁function s",
+ "▁fun ctions",
+ "▁ functions",
+ "he n",
+ "h en",
+ "Ser vice",
+ "Serv ice",
+ "▁he ight",
+ "▁ height",
+ "▁L and",
+ "▁La nd",
+ "▁Lan d",
+ "▁ Land",
+ "ia s",
+ "i as",
+ "g s",
+ "ió n",
+ "i ón",
+ "ло в",
+ "л ов",
+ "no de",
+ "n ode",
+ ". ”",
+ "ha nd",
+ "han d",
+ "h and",
+ "▁б у",
+ "▁ бу",
+ "▁a mb",
+ "▁am b",
+ "▁ amb",
+ "▁L u",
+ "▁ Lu",
+ "▁th row",
+ "▁thr ow",
+ "▁thro w",
+ "▁ throw",
+ "▁m ot",
+ "▁mo t",
+ "▁ mot",
+ "▁A ct",
+ "▁Ac t",
+ "▁ Act",
+ "▁w orld",
+ "▁wor ld",
+ "▁ world",
+ "_ \\",
+ "ba se",
+ "bas e",
+ "b ase",
+ "▁C o",
+ "▁ Co",
+ "▁ar ch",
+ "▁arc h",
+ "▁ arch",
+ "▁## ##",
+ "▁### #",
+ "▁ ####",
+ "ge d",
+ "g ed",
+ "pr il",
+ "p ril",
+ "ol der",
+ "old er",
+ "o lder",
+ "Mod el",
+ "Mode l",
+ "Mo del",
+ "M odel",
+ "▁sever al",
+ "li e",
+ "l ie",
+ "che ck",
+ "c heck",
+ "] {",
+ "con s",
+ "co ns",
+ "c ons",
+ "▁T ra",
+ "▁Tr a",
+ "▁ Tra",
+ "he ck",
+ "▁l east",
+ "▁le ast",
+ "do wn",
+ "d own",
+ "eb ru",
+ "e bru",
+ "De f",
+ "D ef",
+ "par am",
+ "pa ram",
+ "para m",
+ "p aram",
+ "is cher",
+ "isch er",
+ "ische r",
+ "isc her",
+ "i scher",
+ "▁c as",
+ "▁ca s",
+ "▁ cas",
+ "C H",
+ "▁add ress",
+ "▁addr ess",
+ "▁ address",
+ "▁ра з",
+ "▁ раз",
+ "uf en",
+ "ufe n",
+ "u fen",
+ "ur ope",
+ "uro pe",
+ "urop e",
+ "е й",
+ "▁b ound",
+ "▁bo und",
+ "▁bou nd",
+ "▁ bound",
+ "C O",
+ "▁A ng",
+ "▁An g",
+ "▁ Ang",
+ "▁M a",
+ "▁ Ma",
+ "In dex",
+ "Ind ex",
+ "co re",
+ "cor e",
+ "c ore",
+ "ou ch",
+ "ouc h",
+ "o uch",
+ "at abase",
+ "ata base",
+ "rib ution",
+ "ribu tion",
+ "doc ument",
+ "d ocument",
+ "L e",
+ "}_ {",
+ "} _{",
+ "ve rn",
+ "ver n",
+ "v ern",
+ "▁stat ement",
+ "▁state ment",
+ "▁ statement",
+ "▁B rit",
+ "▁Br it",
+ "on o",
+ "o no",
+ "ps ilon",
+ "psi lon",
+ "▁le vel",
+ "▁lev el",
+ "▁ level",
+ "▁pro duct",
+ "▁produ ct",
+ "▁prod uct",
+ "▁ product",
+ "I S",
+ "▁c ourse",
+ "▁cour se",
+ "▁cours e",
+ "▁ course",
+ "▁M r",
+ "▁ Mr",
+ "> \r",
+ "▁back ground",
+ "▁ background",
+ "▁re t",
+ "▁r et",
+ "▁ ret",
+ "er ing",
+ "eri ng",
+ "e ring",
+ "mo st",
+ "mos t",
+ "m ost",
+ "сь ко",
+ "ськ о",
+ "▁th read",
+ "▁thr ead",
+ "▁thre ad",
+ "▁ thread",
+ "it ional",
+ "ition al",
+ "iti onal",
+ "it es",
+ "ite s",
+ "i tes",
+ "P l",
+ "▁d os",
+ "▁do s",
+ "g a",
+ "da y",
+ "d ay",
+ "▁G ener",
+ "▁Ge ner",
+ "▁Gen er",
+ "▁Gene r",
+ "▁ Gener",
+ "▁t w",
+ "▁ tw",
+ "A d",
+ "\"> <",
+ "\" ><",
+ "▁( $",
+ "▁ ($",
+ "▁m oment",
+ "▁mo ment",
+ "▁mom ent",
+ "tit le",
+ "t itle",
+ "cre ate",
+ "c reate",
+ "vers ion",
+ "v ersion",
+ "Man ager",
+ "▁f ur",
+ "▁fu r",
+ "▁ fur",
+ "pp ing",
+ "ppi ng",
+ "p ping",
+ "ij n",
+ "о с",
+ "▁r ather",
+ "▁ra ther",
+ "▁rat her",
+ "pt ember",
+ "O S",
+ "▁s ite",
+ "▁si te",
+ "▁sit e",
+ "▁ site",
+ "▁c aus",
+ "▁ca us",
+ "an i",
+ "a ni",
+ "▁h ome",
+ "▁hom e",
+ "▁ho me",
+ "▁ home",
+ "м і",
+ "▁sh ort",
+ "▁sho rt",
+ "▁ short",
+ "p a",
+ "▁l ead",
+ "▁le ad",
+ "is hed",
+ "ish ed",
+ "ci ng",
+ "cin g",
+ "c ing",
+ "or ding",
+ "ord ing",
+ "ordin g",
+ "▁p rote",
+ "▁pro te",
+ "▁pr ote",
+ "▁prot e",
+ "▁ prote",
+ "с ле",
+ "LE CT",
+ "L ECT",
+ "▁di dn",
+ "▁did n",
+ "pos ition",
+ "p osition",
+ "\", \"",
+ "\" ,\"",
+ "() ,",
+ "( ),",
+ "tr ans",
+ "tra ns",
+ "▁l ot",
+ "▁lo t",
+ "▁ lot",
+ "▁о д",
+ "▁ од",
+ "A S",
+ "▁s at",
+ "▁sa t",
+ "▁po ints",
+ "▁point s",
+ "▁ points",
+ "g ithub",
+ "st yle",
+ "sty le",
+ "▁го ду",
+ "▁год у",
+ "▁D is",
+ "▁Di s",
+ "▁ Dis",
+ "pon ent",
+ "om et",
+ "ome t",
+ "o met",
+ "ze r",
+ "z er",
+ "UL L",
+ "U LL",
+ "▁p a",
+ "▁ pa",
+ "A P",
+ "ac es",
+ "ace s",
+ "a ces",
+ "▁Un ited",
+ "▁Unit ed",
+ "am a",
+ "a ma",
+ "et y",
+ "e ty",
+ "Col or",
+ "Co lor",
+ "▁en ough",
+ "U S",
+ "▁l ength",
+ "▁leng th",
+ "▁ length",
+ "() );",
+ "()) ;",
+ "( ));",
+ "^{ \\",
+ "^ {\\",
+ "ft y",
+ "f ty",
+ "Bo x",
+ "B ox",
+ "ap ter",
+ "apt er",
+ "▁comp let",
+ "▁comple t",
+ "▁compl et",
+ "ни к",
+ "ma x",
+ "m ax",
+ "ob ject",
+ "obj ect",
+ "o bject",
+ "( {",
+ "img ur",
+ "it ive",
+ "iti ve",
+ "un ch",
+ "unc h",
+ "▁S ub",
+ "▁Su b",
+ "▁ Sub",
+ "en de",
+ "end e",
+ "e nde",
+ "г у",
+ "ateg ory",
+ "ategor y",
+ "т ы",
+ "ia no",
+ "ian o",
+ "i ano",
+ "▁u pd",
+ "▁up d",
+ "▁A ust",
+ "▁Aus t",
+ "▁Au st",
+ "}{ \\",
+ "} {\\",
+ "to p",
+ "t op",
+ "la s",
+ "l as",
+ "pi s",
+ "p is",
+ "in ess",
+ "ine ss",
+ "ines s",
+ "i ness",
+ "▁{ \r",
+ "▁ {\r",
+ "▁ Е",
+ "G r",
+ "▁A S",
+ "▁ AS",
+ "▁в е",
+ "▁ ве",
+ "th ers",
+ "ther s",
+ "the rs",
+ "▁d efined",
+ "▁def ined",
+ "▁define d",
+ "▁defin ed",
+ "▁ defined",
+ "az ione",
+ "azi one",
+ "a zione",
+ "▁o ffic",
+ "▁of fic",
+ "▁off ic",
+ "▁au tom",
+ "▁aut om",
+ "▁auto m",
+ "▁ autom",
+ "ü n",
+ "▁b row",
+ "▁br ow",
+ "▁bro w",
+ "▁ brow",
+ "▁s erv",
+ "▁se rv",
+ "▁ser v",
+ "▁ serv",
+ "▁re move",
+ "▁rem ove",
+ "▁remov e",
+ "▁ remove",
+ "ir o",
+ "i ro",
+ "▁B ibli",
+ "▁Bib li",
+ "E D",
+ "▁w hole",
+ "▁wh ole",
+ "▁who le",
+ "▁ ш",
+ "▁J ava",
+ "▁Ja va",
+ "▁ Java",
+ "▁z um",
+ "▁zu m",
+ "u a",
+ "p m",
+ "de v",
+ "d ev",
+ "к ра",
+ "ol ds",
+ "old s",
+ "▁W ar",
+ "▁Wa r",
+ "ä n",
+ "pa ss",
+ "pas s",
+ "p ass",
+ "u z",
+ "[ \"",
+ "▁t ri",
+ "▁tr i",
+ "▁ tri",
+ "is ed",
+ "ise d",
+ "i sed",
+ "х а",
+ "▁mem ory",
+ "▁memor y",
+ "▁ memory",
+ "▁P ort",
+ "▁Po rt",
+ "▁Por t",
+ "▁ Port",
+ "op er",
+ "ope r",
+ "o per",
+ "U p",
+ "▁Th ank",
+ "▁ Thank",
+ "▁M ich",
+ "▁Mi ch",
+ "▁Mic h",
+ "▁ Mich",
+ "yc h",
+ "y ch",
+ "bo ard",
+ "boa rd",
+ "б у",
+ "In st",
+ "▁b egin",
+ "▁be gin",
+ "▁beg in",
+ "▁ begin",
+ "in ation",
+ "ina tion",
+ "▁M od",
+ "▁Mo d",
+ "▁ Mod",
+ "_ ,",
+ "▁D en",
+ "▁De n",
+ "▁ Den",
+ "op tion",
+ "opt ion",
+ "o ption",
+ "▁con struct",
+ "▁const ruct",
+ "▁constru ct",
+ "▁ construct",
+ "▁J ust",
+ "▁Ju st",
+ "▁ Just",
+ "Ma p",
+ "M ap",
+ "ru n",
+ "r un",
+ "▁re spect",
+ "▁res pect",
+ "▁resp ect",
+ "ha m",
+ "h am",
+ "ма н",
+ "м ан",
+ "im edia",
+ "ime dia",
+ "i media",
+ "▁a pply",
+ "▁app ly",
+ "▁ap ply",
+ "▁ apply",
+ "cri ption",
+ "cript ion",
+ "ma in",
+ "mai n",
+ "m ain",
+ "▁К а",
+ "▁ Ка",
+ "oi d",
+ "o id",
+ "Co de",
+ "C ode",
+ "} ;",
+ "In fo",
+ "Inf o",
+ "▁for mat",
+ "▁form at",
+ "▁forma t",
+ "▁ format",
+ "Lo g",
+ "L og",
+ "▁с у",
+ "▁ су",
+ "▁l at",
+ "▁la t",
+ "▁ lat",
+ "ut or",
+ "uto r",
+ "u tor",
+ "▁re ference",
+ "▁refer ence",
+ "▁ reference",
+ "▁cal cul",
+ "▁calc ul",
+ "▁ calcul",
+ "on n",
+ "o nn",
+ "L o",
+ "in fty",
+ "inf ty",
+ "▁a long",
+ "▁al ong",
+ "▁ č",
+ "▁t ask",
+ "▁ta sk",
+ "▁ task",
+ "▁e v",
+ "▁ ev",
+ "th eta",
+ "the ta",
+ "ra s",
+ "r as",
+ "jo r",
+ "j or",
+ "▁б о",
+ "▁ бо",
+ "▁princi p",
+ "▁prin cip",
+ "M y",
+ "▁e iner",
+ "▁ein er",
+ "▁eine r",
+ "▁E s",
+ "▁ Es",
+ "om b",
+ "o mb",
+ "qu ad",
+ "qua d",
+ "^{ -",
+ "^ {-",
+ "um p",
+ "u mp",
+ "▁t ill",
+ "▁til l",
+ "▁ti ll",
+ "д і",
+ "▁lo oks",
+ "▁look s",
+ "▁o k",
+ "▁ ok",
+ "ц а",
+ "n u",
+ "Fi l",
+ "F il",
+ "▁s ont",
+ "▁so nt",
+ "▁son t",
+ "▁M ed",
+ "▁Me d",
+ "▁ Med",
+ "ag ue",
+ "agu e",
+ "a gue",
+ "▁c ost",
+ "▁co st",
+ "▁cos t",
+ "▁ cost",
+ "▁S im",
+ "▁Si m",
+ "▁ Sim",
+ "▁com ment",
+ "▁comm ent",
+ "▁comme nt",
+ "▁ comment",
+ "▁( \\",
+ "▁ (\\",
+ "eg en",
+ "ege n",
+ "e gen",
+ "▁para meter",
+ "▁param eter",
+ "▁paramet er",
+ "▁ parameter",
+ "▁F rance",
+ "▁Fran ce",
+ "▁Fr ance",
+ "▁Franc e",
+ "▁ France",
+ "re p",
+ "r ep",
+ "▁T H",
+ "▁ TH",
+ "▁y et",
+ "▁ye t",
+ "▁a way",
+ "▁aw ay",
+ "▁ away",
+ "▁c irc",
+ "▁ci rc",
+ "▁cir c",
+ "▁ circ",
+ "▁A PI",
+ "▁AP I",
+ "▁ API",
+ "em p",
+ "e mp",
+ "в і",
+ "L ayout",
+ "▁l ines",
+ "▁li nes",
+ "▁line s",
+ "▁lin es",
+ "▁ lines",
+ "▁P art",
+ "▁Par t",
+ "▁Pa rt",
+ "▁ Part",
+ "em pt",
+ "emp t",
+ "▁B i",
+ "▁ Bi",
+ "▁m ind",
+ "▁min d",
+ "▁mi nd",
+ "▁ mind",
+ "k y",
+ "gi ng",
+ "gin g",
+ "g ing",
+ "▁re port",
+ "▁rep ort",
+ "▁repo rt",
+ "▁ report",
+ "▁A dd",
+ "▁Ad d",
+ "▁ Add",
+ "ро д",
+ "р од",
+ "▁r ange",
+ "▁ran ge",
+ "▁rang e",
+ "▁ range",
+ "ci as",
+ "cia s",
+ "c ias",
+ "li p",
+ "l ip",
+ "▁K ar",
+ "▁Ka r",
+ "▁ Kar",
+ "▁Comm ons",
+ "▁Common s",
+ "ger ufen",
+ "af f",
+ "a ff",
+ "se c",
+ "s ec",
+ "▁h tml",
+ "▁ html",
+ "li g",
+ "l ig",
+ "▁w indow",
+ "▁wind ow",
+ "▁ window",
+ "in ition",
+ "ini tion",
+ "init ion",
+ "ci s",
+ "c is",
+ "▁u t",
+ "▁ ut",
+ "el n",
+ "e ln",
+ "▁a ux",
+ "▁au x",
+ "▁ aux",
+ "▁n eg",
+ "▁ne g",
+ "▁ neg",
+ "Ha nd",
+ "H and",
+ "▁) ;",
+ "▁ );",
+ "▁a nal",
+ "▁an al",
+ "▁ anal",
+ "▁f ri",
+ "▁fr i",
+ "▁ fri",
+ "▁с и",
+ "▁ си",
+ "et ch",
+ "etc h",
+ "m d",
+ "pa ge",
+ "pag e",
+ "p age",
+ "▁l ibrary",
+ "▁li brary",
+ "▁ library",
+ "▁: =",
+ "▁ :=",
+ "RO M",
+ "R OM",
+ "Y ou",
+ "sp ace",
+ "s pace",
+ "▁d urch",
+ "▁dur ch",
+ "▁h ost",
+ "▁ho st",
+ "▁hos t",
+ "▁ host",
+ "av en",
+ "ave n",
+ "a ven",
+ "▁F ile",
+ "▁Fil e",
+ "▁ File",
+ "al le",
+ "all e",
+ "a lle",
+ "ти в",
+ "▁p ap",
+ "▁pa p",
+ "ст во",
+ "ств о",
+ "с тво",
+ "mar k",
+ "m ark",
+ "▁m ais",
+ "▁ma is",
+ "▁mai s",
+ "er man",
+ "erm an",
+ "Si ze",
+ "S ize",
+ "е к",
+ "▁М а",
+ "▁ Ма",
+ "▁is n",
+ "▁i sn",
+ "▁c opy",
+ "▁co py",
+ "▁cop y",
+ "▁ copy",
+ "st en",
+ "ste n",
+ "s ten",
+ "ri ver",
+ "riv er",
+ "rive r",
+ "r iver",
+ "▁w ent",
+ "▁we nt",
+ "▁wen t",
+ "▁j avascript",
+ "▁java script",
+ "▁ javascript",
+ "▁s am",
+ "▁sa m",
+ "▁ sam",
+ "▁f rame",
+ "▁fr ame",
+ "▁fra me",
+ "▁fram e",
+ "▁ frame",
+ "▁v i",
+ "▁ vi",
+ "▁pre vious",
+ "▁prev ious",
+ "▁ previous",
+ "ro du",
+ "rod u",
+ "r odu",
+ "▁method s",
+ "▁ methods",
+ "▁ne cess",
+ "▁neces s",
+ "▁ necess",
+ "N A",
+ "ck et",
+ "cke t",
+ "c ket",
+ "▁o pt",
+ "▁op t",
+ "▁ opt",
+ "Lo c",
+ "L oc",
+ "ho w",
+ "h ow",
+ "▁î n",
+ "▁ în",
+ "sh ip",
+ "s hip",
+ "▁it self",
+ "▁its elf",
+ "▁P lease",
+ "▁Ple ase",
+ "▁ Please",
+ "ie ne",
+ "ien e",
+ "i ene",
+ "ве р",
+ "в ер",
+ "▁< <",
+ "▁ <<",
+ "▁m ill",
+ "▁mil l",
+ "▁mi ll",
+ "▁ mill",
+ "▁t rad",
+ "▁tr ad",
+ "▁tra d",
+ "▁ trad",
+ "pa ce",
+ "p ace",
+ "▁H ar",
+ "▁Ha r",
+ "▁ Har",
+ "it en",
+ "ite n",
+ "i ten",
+ "wi se",
+ "w ise",
+ "writ e",
+ "wr ite",
+ "w rite",
+ "ци и",
+ "р ы",
+ "Lin e",
+ "Li ne",
+ "L ine",
+ "ol o",
+ "o lo",
+ "▁ac cept",
+ "▁ accept",
+ "he ight",
+ "▁e lect",
+ "▁el ect",
+ "▁ele ct",
+ "▁ elect",
+ "el la",
+ "ell a",
+ "e lla",
+ "▁p å",
+ "Se lect",
+ "S elect",
+ "▁ ли",
+ "▁\\ <",
+ "▁ \\<",
+ "( (",
+ "▁I D",
+ "▁ ID",
+ "op s",
+ "o ps",
+ "ва н",
+ "в ан",
+ "i ó",
+ "T P",
+ "» ,",
+ "ne ction",
+ "nect ion",
+ "n ection",
+ "par ent",
+ "pa rent",
+ "▁M ag",
+ "▁Ma g",
+ "▁ Mag",
+ "Tab le",
+ "T able",
+ "O ver",
+ "▁n etwork",
+ "▁net work",
+ "▁ network",
+ "с по",
+ "▁as sign",
+ "▁ass ign",
+ "▁ assign",
+ "ig ger",
+ "igg er",
+ "ir m",
+ "i rm",
+ ") `",
+ "ot tom",
+ "ott om",
+ "otto m",
+ "be ta",
+ "bet a",
+ "b eta",
+ "▁d ell",
+ "▁de ll",
+ "▁del l",
+ "▁b ody",
+ "▁bo dy",
+ "▁bod y",
+ "▁ body",
+ "▁д а",
+ "▁ да",
+ "▁Y our",
+ "▁You r",
+ "▁ Your",
+ "▁f ue",
+ "▁fu e",
+ "▁p ackage",
+ "▁pack age",
+ "▁ package",
+ "▁l ight",
+ "▁lig ht",
+ "▁ light",
+ "▁* *",
+ "▁ **",
+ "M P",
+ "▁c ou",
+ "▁co u",
+ "▁ cou",
+ "ye s",
+ "y es",
+ ": \\",
+ "▁ Ч",
+ "▁m ention",
+ "▁men tion",
+ "▁ment ion",
+ "en sch",
+ "ens ch",
+ "▁d eg",
+ "▁de g",
+ "▁ deg",
+ "▁con vert",
+ "▁conver t",
+ "▁conv ert",
+ "▁ convert",
+ "▁D av",
+ "▁Da v",
+ "ad t",
+ "a dt",
+ "Res ult",
+ "th ough",
+ "▁b us",
+ "▁bu s",
+ "▁ bus",
+ "x y",
+ "▁s een",
+ "▁se en",
+ "▁see n",
+ "▁ seen",
+ "Al l",
+ "A ll",
+ "pu blic",
+ "pub lic",
+ "p ublic",
+ "iv ely",
+ "ive ly",
+ "ivel y",
+ "▁R ec",
+ "▁Re c",
+ "▁ Rec",
+ "▁H is",
+ "▁Hi s",
+ "si m",
+ "s im",
+ "▁f ör",
+ "▁fö r",
+ "▁ för",
+ "▁h istor",
+ "▁his tor",
+ "▁hi stor",
+ "▁hist or",
+ "▁ histor",
+ "▁s ett",
+ "▁se tt",
+ "▁set t",
+ "▁ sett",
+ "ra t",
+ "r at",
+ "ab led",
+ "able d",
+ "abl ed",
+ "a bled",
+ "▁» ,",
+ "▁ »,",
+ "go ogle",
+ "We b",
+ "W eb",
+ "é l",
+ "▁t itle",
+ "▁tit le",
+ "▁ title",
+ "▁J anu",
+ "▁Jan u",
+ "▁Ja nu",
+ "ј а",
+ "▁t ook",
+ "▁to ok",
+ "▁too k",
+ "id en",
+ "ide n",
+ "i den",
+ "s z",
+ "▁G et",
+ "▁Ge t",
+ "▁ Get",
+ "▁object s",
+ "▁ objects",
+ "▁com mon",
+ "▁comm on",
+ "▁ common",
+ "▁ch anges",
+ "▁change s",
+ "▁chang es",
+ "▁ changes",
+ "▁L ond",
+ "▁Lo nd",
+ "▁ Lond",
+ "▁ex tern",
+ "▁ext ern",
+ "▁j u",
+ "▁ ju",
+ "I s",
+ "▁av ailable",
+ "▁avail able",
+ "▁ available",
+ "tr i",
+ "t ri",
+ "▁m ás",
+ "▁má s",
+ "os a",
+ "o sa",
+ "B e",
+ "▁D ata",
+ "▁Da ta",
+ "▁Dat a",
+ "▁ Data",
+ "ur al",
+ "ura l",
+ "u ral",
+ "▁h om",
+ "▁ho m",
+ "▁ hom",
+ "▁acc ount",
+ "▁ac count",
+ "▁ account",
+ "o o",
+ "▁p erm",
+ "▁per m",
+ "▁pe rm",
+ "▁ perm",
+ "res pond",
+ "resp ond",
+ "y t",
+ "▁s end",
+ "▁se nd",
+ "▁sen d",
+ "▁ send",
+ "▁return s",
+ "▁ returns",
+ "iv id",
+ "ivi d",
+ "i vid",
+ "▁ex pla",
+ "▁exp la",
+ "▁expl a",
+ "í n",
+ "▁n or",
+ "▁no r",
+ "▁ nor",
+ "I f",
+ "▁F rom",
+ "▁Fr om",
+ "▁Fro m",
+ "▁ From",
+ "▁t arget",
+ "▁tar get",
+ "▁ target",
+ "fe ct",
+ "f ect",
+ "ен т",
+ "▁u it",
+ "▁ui t",
+ "▁ uit",
+ "▁J o",
+ "▁ Jo",
+ "▁vari ables",
+ "▁variable s",
+ "▁ variables",
+ "▁s eries",
+ "▁se ries",
+ "▁ser ies",
+ "▁serie s",
+ "▁ series",
+ "▁f unc",
+ "▁fun c",
+ "▁fu nc",
+ "▁ func",
+ "▁him self",
+ "▁ч а",
+ "▁ ча",
+ "an ti",
+ "ant i",
+ "▁a ch",
+ "▁ac h",
+ "▁ ach",
+ "ia log",
+ "ial og",
+ "i alog",
+ "▁s td",
+ "▁st d",
+ "▁ std",
+ "a e",
+ "▁f oot",
+ "▁fo ot",
+ "▁foo t",
+ "▁ foot",
+ "▁un ter",
+ "▁ unter",
+ "gr ess",
+ "gres s",
+ "gre ss",
+ "g ress",
+ "No t",
+ "N ot",
+ "ra d",
+ "r ad",
+ "f ér",
+ "▁u til",
+ "▁ut il",
+ "▁ util",
+ "or em",
+ "ore m",
+ "o rem",
+ "▁s ou",
+ "▁so u",
+ "op t",
+ "o pt",
+ "▁o g",
+ "▁ og",
+ "▁u ma",
+ "▁um a",
+ "▁ uma",
+ "it ar",
+ "ita r",
+ "i tar",
+ "▁O k",
+ "▁ Ok",
+ "ü ck",
+ "sq rt",
+ "▁a nt",
+ "▁an t",
+ "▁ ant",
+ "▁wer den",
+ "▁werd en",
+ "å r",
+ "}) ;",
+ "} );",
+ "▁P aris",
+ "▁Par is",
+ "▁Pa ris",
+ "▁ex ception",
+ "▁except ion",
+ "▁ exception",
+ "▁de term",
+ "▁det erm",
+ "▁V ol",
+ "▁Vo l",
+ "▁ Vol",
+ "▁S am",
+ "▁Sa m",
+ "▁ Sam",
+ "▁e ss",
+ "▁es s",
+ "▁ ess",
+ "li es",
+ "lie s",
+ "l ies",
+ "ion i",
+ "io ni",
+ "i oni",
+ "od ing",
+ "odi ng",
+ "o ding",
+ "id get",
+ "idge t",
+ "▁p ri",
+ "▁pr i",
+ "▁wh ether",
+ "▁whe ther",
+ "▁п од",
+ "▁по д",
+ "▁num bers",
+ "▁number s",
+ "▁ numbers",
+ "▁ ~",
+ "ev ent",
+ "even t",
+ "e vent",
+ "▁sh ows",
+ "▁show s",
+ "▁sho ws",
+ "at ures",
+ "atur es",
+ "ature s",
+ "atu res",
+ "▁h ouse",
+ "▁ho use",
+ "▁hous e",
+ "▁ house",
+ "▁f ace",
+ "▁fa ce",
+ "▁fac e",
+ "▁ face",
+ "▁s ię",
+ "▁si ę",
+ "viron ment",
+ "va n",
+ "v an",
+ "▁in cluding",
+ "▁includ ing",
+ "▁inclu ding",
+ "▁ including",
+ "▁< -",
+ "▁ <-",
+ "ti mes",
+ "time s",
+ "tim es",
+ "t imes",
+ "no w",
+ "n ow",
+ "▁p ur",
+ "▁pu r",
+ "▁ pur",
+ "if ier",
+ "ifi er",
+ "ifie r",
+ "▁e mp",
+ "▁em p",
+ "▁ emp",
+ "▁c la",
+ "▁cl a",
+ "▁ cla",
+ "mo n",
+ "m on",
+ "▁D as",
+ "▁Da s",
+ "ad y",
+ "a dy",
+ "▁в ід",
+ "▁ві д",
+ "▁ від",
+ "▁ ц",
+ "ab or",
+ "a bor",
+ "OS T",
+ "O ST",
+ "▁b and",
+ "▁ban d",
+ "▁ba nd",
+ "▁ band",
+ "▁ ú",
+ "▁ex actly",
+ "▁exact ly",
+ "ie rt",
+ "ier t",
+ "i ert",
+ "av ig",
+ "avi g",
+ "▁re du",
+ "▁r edu",
+ "▁red u",
+ "▁ redu",
+ "▁S E",
+ "▁ SE",
+ "lish ed",
+ "lis hed",
+ "l ished",
+ "B u",
+ "Mess age",
+ "M essage",
+ "ce ll",
+ "cel l",
+ "c ell",
+ "ful ly",
+ "full y",
+ "▁s v",
+ "▁ sv",
+ "▁m akes",
+ "▁ma kes",
+ "▁make s",
+ "▁mak es",
+ "po l",
+ "p ol",
+ "▁re quired",
+ "▁require d",
+ "▁requ ired",
+ "▁ required",
+ "fer rer",
+ "▁p ers",
+ "▁per s",
+ "▁pe rs",
+ "▁ pers",
+ "▁m i",
+ "▁ mi",
+ "F I",
+ "▁Pa ul",
+ "▁ Paul",
+ "▁U I",
+ "▁ UI",
+ "▁B el",
+ "▁Be l",
+ "▁ Bel",
+ "in c",
+ "i nc",
+ "▁cont ains",
+ "▁contain s",
+ "▁ contains",
+ "O ut",
+ "as ure",
+ "p u",
+ "ot o",
+ "o to",
+ "▁g ame",
+ "▁ga me",
+ "▁gam e",
+ "▁ game",
+ "z n",
+ "▁W hy",
+ "▁Wh y",
+ "▁ Why",
+ "or ith",
+ "ori th",
+ "bi g",
+ "b ig",
+ "ки й",
+ "sig ma",
+ "s igma",
+ "▁qu ite",
+ "▁qui te",
+ "▁quit e",
+ "▁j ed",
+ "▁je d",
+ "▁ jed",
+ "re c",
+ "r ec",
+ "▁S QL",
+ "▁ SQL",
+ "б е",
+ "▁M art",
+ "▁Mar t",
+ "▁Ma rt",
+ "▁ Mart",
+ "y a",
+ "▁sch ool",
+ "▁ school",
+ "▁sim ply",
+ "▁simp ly",
+ "▁simpl y",
+ "▁v or",
+ "▁vo r",
+ "▁ vor",
+ "▁d ouble",
+ "▁dou ble",
+ "▁doub le",
+ "▁ double",
+ "ра в",
+ "▁S tr",
+ "▁St r",
+ "▁ Str",
+ "ie m",
+ "i em",
+ "▁al bum",
+ "▁alb um",
+ "▁ album",
+ "▁re sol",
+ "▁res ol",
+ "▁ resol",
+ "▁d ei",
+ "▁de i",
+ "▁W ik",
+ "▁Wi k",
+ "▁ Wik",
+ "▁a w",
+ "▁ aw",
+ "um b",
+ "u mb",
+ "ol s",
+ "o ls",
+ "▁* /",
+ "▁ */",
+ "▁z e",
+ "▁ ze",
+ "▁a nim",
+ "▁an im",
+ "▁ani m",
+ "▁ anim",
+ "/ >",
+ "ri s",
+ "r is",
+ "re sh",
+ "res h",
+ "r esh",
+ "N o",
+ "ique s",
+ "iqu es",
+ "i ques",
+ "cur rent",
+ "curr ent",
+ "c urrent",
+ "▁per iod",
+ "▁peri od",
+ "▁ period",
+ "▁A pril",
+ "▁Ap ril",
+ "▁st ore",
+ "▁stor e",
+ "▁sto re",
+ "▁ store",
+ "', '",
+ "' ,'",
+ "▁S et",
+ "▁Se t",
+ "▁ Set",
+ "= {",
+ "ach ed",
+ "ac hed",
+ "ache d",
+ "a ched",
+ "▁M al",
+ "▁Ma l",
+ "▁ Mal",
+ "▁P al",
+ "▁Pa l",
+ "▁ Pal",
+ "an tes",
+ "ant es",
+ "ante s",
+ "ate rial",
+ "ater ial",
+ "▁work ed",
+ "▁wor ked",
+ "le q",
+ "l eq",
+ "ore ferrer",
+ "▁h appen",
+ "▁ha ppen",
+ "▁happ en",
+ "▁b ox",
+ "▁bo x",
+ "▁ box",
+ "ne y",
+ "n ey",
+ "▁c lose",
+ "▁cl ose",
+ "▁clos e",
+ "▁clo se",
+ "▁ close",
+ "▁g ran",
+ "▁gr an",
+ "▁gra n",
+ "▁l ie",
+ "▁li e",
+ "▁ lie",
+ "▁i r",
+ "▁ ir",
+ "▁ex pected",
+ "▁exp ected",
+ "▁expect ed",
+ "▁ expected",
+ "▁д ля",
+ "cl ick",
+ "cli ck",
+ "clic k",
+ "c lick",
+ "ș i",
+ "▁p arte",
+ "▁par te",
+ "▁part e",
+ "og n",
+ "o gn",
+ "▁F orm",
+ "▁For m",
+ "▁Fo rm",
+ "▁ Form",
+ "▁m emb",
+ "▁me mb",
+ "▁mem b",
+ "▁p lan",
+ "▁pl an",
+ "▁pla n",
+ "▁ plan",
+ "▁te am",
+ "▁tea m",
+ "▁ team",
+ "] [",
+ "▁c ommun",
+ "▁com mun",
+ "▁comm un",
+ "or ry",
+ "orr y",
+ "en cy",
+ "enc y",
+ "g l",
+ "in ary",
+ "ina ry",
+ "inar y",
+ "cd ot",
+ "c dot",
+ "^ \\",
+ "▁F irst",
+ "▁Fir st",
+ "▁ First",
+ "an der",
+ "and er",
+ "ande r",
+ "a nder",
+ "▁D ec",
+ "▁De c",
+ "▁ Dec",
+ "re quest",
+ "req uest",
+ "ст ва",
+ "ств а",
+ "с тва",
+ "▁str ucture",
+ "▁struct ure",
+ "▁ structure",
+ "▁| |",
+ "▁ ||",
+ "▁C omp",
+ "▁Com p",
+ "▁Co mp",
+ "▁ Comp",
+ "act ory",
+ "actor y",
+ "▁M il",
+ "▁Mi l",
+ "▁ Mil",
+ "▁S ome",
+ "▁So me",
+ "▁Som e",
+ "▁ Some",
+ "St ream",
+ "▁as sum",
+ "▁ass um",
+ "ue n",
+ "u en",
+ "▁w ords",
+ "▁word s",
+ "▁wor ds",
+ "▁ words",
+ "▁Se ptember",
+ "▁Sept ember",
+ "▁К о",
+ "▁ Ко",
+ "▁d ays",
+ "▁da ys",
+ "▁day s",
+ "▁ days",
+ "or ies",
+ "ori es",
+ "orie s",
+ "o ries",
+ "ста в",
+ "s m",
+ "vi n",
+ "v in",
+ "part ial",
+ "▁par ent",
+ "▁pa rent",
+ "▁pare nt",
+ "▁ parent",
+ "o j",
+ "ни и",
+ "! \"",
+ "ug in",
+ "u gin",
+ "▁W indows",
+ "▁Wind ows",
+ "▁Window s",
+ "▁ Windows",
+ "E d",
+ ": }",
+ "▁ q",
+ "▁b en",
+ "▁be n",
+ "▁ ben",
+ "ia na",
+ "ian a",
+ "i ana",
+ "▁l abel",
+ "▁la bel",
+ "▁lab el",
+ "▁ label",
+ "st ate",
+ "sta te",
+ "stat e",
+ "ut ed",
+ "ute d",
+ "u ted",
+ "▁( )",
+ "▁ ()",
+ "▁с во",
+ "▁e dit",
+ "▁ed it",
+ "▁ edit",
+ "ur ing",
+ "uri ng",
+ "u ring",
+ "▁N S",
+ "▁ NS",
+ "▁J ahr",
+ "▁Jah r",
+ "▁Ja hr",
+ "▁prov ide",
+ "H e",
+ "▁Y es",
+ "▁Ye s",
+ "▁ Yes",
+ "an el",
+ "ane l",
+ "a nel",
+ "en ame",
+ "ena me",
+ "e name",
+ "▁D on",
+ "▁Do n",
+ "▁ Don",
+ "is k",
+ "i sk",
+ "gr a",
+ "g ra",
+ "el ij",
+ "eli j",
+ "e lij",
+ "▁r oot",
+ "▁ro ot",
+ "▁ root",
+ "* /",
+ "▁F re",
+ "▁Fr e",
+ "▁ Fre",
+ "▁M or",
+ "▁Mo r",
+ "▁ Mor",
+ "us ed",
+ "use d",
+ "u sed",
+ "ran ge",
+ "r ange",
+ "▁t amb",
+ "▁ta mb",
+ "▁tam b",
+ "▁mod ule",
+ "▁ module",
+ "▁d irectory",
+ "▁direct ory",
+ "▁director y",
+ "▁ directory",
+ "ound s",
+ "oun ds",
+ "Act ivity",
+ "Activ ity",
+ "▁m u",
+ "▁ mu",
+ "in fo",
+ "inf o",
+ "▁f ree",
+ "▁fr ee",
+ "▁fre e",
+ "▁ free",
+ "or ge",
+ "org e",
+ "ta b",
+ "t ab",
+ ") =",
+ "la ng",
+ "lan g",
+ "l ang",
+ "▁о с",
+ "▁ ос",
+ "▁F ROM",
+ "▁FR OM",
+ "▁ FROM",
+ "▁en ter",
+ "▁ent er",
+ "▁ enter",
+ "▁bec ame",
+ "id ae",
+ "ida e",
+ "х и",
+ "▁St ates",
+ "▁State s",
+ "▁Stat es",
+ "▁Sta tes",
+ "ver se",
+ "vers e",
+ "▁ex pl",
+ "▁exp l",
+ "▁ expl",
+ "yn t",
+ "y nt",
+ "U N",
+ "e e",
+ "en dent",
+ "end ent",
+ "enden t",
+ "ende nt",
+ "▁m aking",
+ "▁ma king",
+ "▁mak ing",
+ "▁ making",
+ "▁\" $",
+ "un i",
+ "u ni",
+ "qu ence",
+ "▁l ui",
+ "▁lu i",
+ "H T",
+ "▁us es",
+ "▁use s",
+ "▁ uses",
+ "zi e",
+ "z ie",
+ "ni a",
+ "n ia",
+ "Cont ent",
+ "▁C ount",
+ "▁Co unt",
+ "▁Coun t",
+ "▁Cou nt",
+ "▁ Count",
+ "▁stand ard",
+ "▁ standard",
+ "EN T",
+ "E NT",
+ "▁ко н",
+ "▁к он",
+ "▁ кон",
+ "fo rt",
+ "for t",
+ "f ort",
+ "ad as",
+ "ada s",
+ "a das",
+ "з у",
+ "S ystem",
+ "▁S w",
+ "▁ Sw",
+ "▁e ver",
+ "▁ev er",
+ "▁ ever",
+ "L O",
+ "▁cor respond",
+ "▁P o",
+ "▁ Po",
+ "ar gin",
+ "arg in",
+ "к т",
+ "і й",
+ "▁re main",
+ "▁rem ain",
+ "ci o",
+ "c io",
+ "▁act ual",
+ "▁actu al",
+ "▁ actual",
+ "ст у",
+ "с ту",
+ "▁s ind",
+ "▁si nd",
+ "▁sin d",
+ "▁P e",
+ "▁ Pe",
+ "▁ch anged",
+ "▁change d",
+ "▁chang ed",
+ "▁ changed",
+ "▁N ote",
+ "▁No te",
+ "▁Not e",
+ "▁ Note",
+ "sk ie",
+ "ski e",
+ "s kie",
+ "▁famil y",
+ "▁fam ily",
+ "▁ family",
+ "it à",
+ "co s",
+ "c os",
+ "tx t",
+ "t xt",
+ "ke r",
+ "k er",
+ "ce ed",
+ "c eed",
+ "▁a rr",
+ "▁ar r",
+ "▁ arr",
+ "▁c am",
+ "▁ca m",
+ "▁ cam",
+ "iz er",
+ "ize r",
+ "i zer",
+ "▁D an",
+ "▁Da n",
+ "▁ Dan",
+ "he l",
+ "h el",
+ "ic ult",
+ "icul t",
+ "H P",
+ "il er",
+ "ile r",
+ "i ler",
+ "▁S al",
+ "▁Sa l",
+ "▁ Sal",
+ "▁con nection",
+ "▁conne ction",
+ "▁connect ion",
+ "▁conn ection",
+ "▁ connection",
+ "us ion",
+ "k n",
+ "R I",
+ "▁v om",
+ "▁vo m",
+ "List ener",
+ "▁ ö",
+ "▁d im",
+ "▁di m",
+ "▁ dim",
+ "▁p ress",
+ "▁pr ess",
+ "▁pre ss",
+ "▁pres s",
+ "▁ press",
+ "▁e sc",
+ "▁es c",
+ "▁ esc",
+ "▁T ry",
+ "▁Tr y",
+ "▁ Try",
+ "at alog",
+ "ata log",
+ "atal og",
+ "▁th anks",
+ "▁than ks",
+ "▁thank s",
+ "D O",
+ "▁w ritten",
+ "▁writ ten",
+ "▁wr itten",
+ "▁ written",
+ "di r",
+ "d ir",
+ "re w",
+ "r ew",
+ "▁f ire",
+ "▁fi re",
+ "▁fir e",
+ "▁ fire",
+ "▁N ach",
+ "▁Na ch",
+ "▁ á",
+ "en c",
+ "e nc",
+ "▁or igin",
+ "▁orig in",
+ "▁ origin",
+ "▁Nov ember",
+ "▁} ;",
+ "▁ };",
+ "Co unt",
+ "C ount",
+ "▁З а",
+ "▁ За",
+ "▁g raph",
+ "▁gr aph",
+ "▁gra ph",
+ "▁ graph",
+ "▁m is",
+ "▁mi s",
+ "▁ mis",
+ "▁Ex ternal",
+ "▁Ext ernal",
+ "▁Extern al",
+ "▁Externa l",
+ "▁ External",
+ "▁o ptions",
+ "▁option s",
+ "▁opt ions",
+ "▁ options",
+ "▁U RL",
+ "▁ URL",
+ "▁p hp",
+ "▁ph p",
+ "▁ php",
+ "▁in tegr",
+ "▁int egr",
+ "▁inte gr",
+ "▁ integr",
+ "Con fig",
+ "Conf ig",
+ "▁T ext",
+ "▁Te xt",
+ "▁Tex t",
+ "▁ Text",
+ "in ner",
+ "inn er",
+ "▁c rit",
+ "▁cr it",
+ "▁cri t",
+ "▁ crit",
+ ", ”",
+ "▁t og",
+ "▁to g",
+ "$ $",
+ "no f",
+ "n of",
+ "▁s es",
+ "▁se s",
+ "üh r",
+ "ü hr",
+ "▁S ince",
+ "▁Sin ce",
+ "▁ Since",
+ "De s",
+ "D es",
+ "ub e",
+ "u be",
+ "▁s ection",
+ "▁se ction",
+ "▁sec tion",
+ "▁sect ion",
+ "▁ section",
+ "▁g i",
+ "▁ gi",
+ "fo rd",
+ "for d",
+ "f ord",
+ "▁A ss",
+ "▁As s",
+ "▁ Ass",
+ "ain er",
+ "ai ner",
+ "aine r",
+ "a iner",
+ "tt p",
+ "t tp",
+ "▁be hav",
+ "▁beh av",
+ "port s",
+ "por ts",
+ "dr aw",
+ "dra w",
+ "d raw",
+ "Th is",
+ "T his",
+ "ran ch",
+ "r anch",
+ "in ding",
+ "ind ing",
+ "indi ng",
+ "▁e stab",
+ "▁est ab",
+ "▁es tab",
+ "▁esta b",
+ "▁ob tain",
+ "▁obt ain",
+ "ri ch",
+ "ric h",
+ "r ich",
+ "li cit",
+ "lic it",
+ "е в",
+ "▁qu al",
+ "▁q ual",
+ "▁ qual",
+ "▁z a",
+ "▁ za",
+ "▁h ar",
+ "▁ha r",
+ "▁ har",
+ "▁f ac",
+ "▁fa c",
+ "▁ fac",
+ "aa r",
+ "a ar",
+ "je t",
+ "j et",
+ "ic les",
+ "icle s",
+ "i cles",
+ "▁A us",
+ "▁Au s",
+ "▁ Aus",
+ "▁h or",
+ "▁ho r",
+ "▁ hor",
+ "▁re mov",
+ "▁rem ov",
+ "▁w ie",
+ "▁ wie",
+ "Cl ient",
+ "C lient",
+ "▁n atur",
+ "▁nat ur",
+ "hi p",
+ "h ip",
+ "Su b",
+ "S ub",
+ "▁r andom",
+ "▁ran dom",
+ "▁rand om",
+ "▁ random",
+ "D F",
+ "▁a rea",
+ "▁are a",
+ "▁ar ea",
+ "▁ area",
+ "ta g",
+ "t ag",
+ "P r",
+ "▁I tal",
+ "▁It al",
+ "▁ Ital",
+ "▁r oku",
+ "▁ro ku",
+ "▁rok u",
+ "no follow",
+ "nof ollow",
+ "* }",
+ "▁o thers",
+ "▁other s",
+ "▁l imit",
+ "▁li mit",
+ "▁lim it",
+ "▁ limit",
+ "▁s il",
+ "▁si l",
+ "▁ sil",
+ "▁s av",
+ "▁sa v",
+ "▁o ften",
+ "▁of ten",
+ "▁oft en",
+ "▁re nder",
+ "▁r ender",
+ "▁ren der",
+ "▁rend er",
+ "▁rende r",
+ "▁ render",
+ "D B",
+ "▁M c",
+ "▁ Mc",
+ "▁z ijn",
+ "▁zij n",
+ "же н",
+ "ж ен",
+ "▁t ag",
+ "▁ta g",
+ "▁ tag",
+ "min g",
+ "mi ng",
+ "m ing",
+ "li chen",
+ "lic hen",
+ "lich en",
+ "liche n",
+ "l ichen",
+ "pa ck",
+ "p ack",
+ "▁A g",
+ "▁ Ag",
+ "▁s ense",
+ "▁sens e",
+ "▁sen se",
+ "p g",
+ "Met hod",
+ "M ethod",
+ "ag ed",
+ "age d",
+ "a ged",
+ "á g",
+ "ł a",
+ "▁inter est",
+ "▁inte rest",
+ "▁as soci",
+ "▁ass oci",
+ "▁ associ",
+ "vol ution",
+ "▁em pty",
+ "▁emp ty",
+ "▁ empty",
+ "ic he",
+ "ich e",
+ "i che",
+ "▁g ro",
+ "▁gr o",
+ "▁ gro",
+ "▁t ypes",
+ "▁type s",
+ "▁typ es",
+ "▁ty pes",
+ "▁ types",
+ "▁S ie",
+ "▁Si e",
+ "In ter",
+ "Int er",
+ "▁n oreferrer",
+ "▁ noreferrer",
+ "▁g ives",
+ "▁giv es",
+ "▁give s",
+ "▁gi ves",
+ "ha l",
+ "h al",
+ "▁s ave",
+ "▁sa ve",
+ "▁sav e",
+ "▁ save",
+ "▁f ont",
+ "▁fo nt",
+ "▁fon t",
+ "▁ font",
+ "ru ction",
+ "ruct ion",
+ "S cript",
+ "▁a lla",
+ "▁al la",
+ "▁all a",
+ "▁ alla",
+ "▁s ays",
+ "▁sa ys",
+ "▁say s",
+ "▁f u",
+ "▁ fu",
+ "ap e",
+ "a pe",
+ "▁l anguage",
+ "▁ language",
+ "ig er",
+ "ige r",
+ "i ger",
+ "▁K ing",
+ "▁Ki ng",
+ "▁Kin g",
+ "bo r",
+ "b or",
+ "u v",
+ "▁s hall",
+ "▁sh all",
+ "▁E urope",
+ "▁Europ e",
+ "▁Euro pe",
+ "▁Eur ope",
+ "▁ Europe",
+ "▁ein em",
+ "▁eine m",
+ "▁w ater",
+ "▁wa ter",
+ "▁wat er",
+ "▁ water",
+ "▁g overn",
+ "▁go vern",
+ "▁gover n",
+ "an z",
+ "at ors",
+ "ator s",
+ "ato rs",
+ "▁mon th",
+ "▁mo nth",
+ "▁mont h",
+ "▁ month",
+ "y e",
+ "▁import ant",
+ "▁ important",
+ "at z",
+ "a tz",
+ "fir st",
+ "f irst",
+ "▁Tr ans",
+ "▁Tra ns",
+ "▁ Trans",
+ "▁M ad",
+ "▁Ma d",
+ "▁ Mad",
+ "▁b ra",
+ "▁br a",
+ "▁ bra",
+ "ik a",
+ "i ka",
+ "▁S aint",
+ "▁Sa int",
+ "▁Sain t",
+ "▁ Saint",
+ "or ia",
+ "ori a",
+ "o ria",
+ "kr e",
+ "k re",
+ "em ents",
+ "ement s",
+ "emen ts",
+ "e ments",
+ "▁B en",
+ "▁Be n",
+ "▁ Ben",
+ "la v",
+ "l av",
+ "▁ad min",
+ "▁adm in",
+ "▁ admin",
+ "▁H en",
+ "▁He n",
+ "▁ Hen",
+ "ri l",
+ "r il",
+ "▁S m",
+ "▁ Sm",
+ "ca t",
+ "c at",
+ "▁Re fer",
+ "▁Ref er",
+ "▁ Ш",
+ "▁p ract",
+ "▁pr act",
+ "▁pra ct",
+ "▁prac t",
+ "▁P at",
+ "▁Pa t",
+ "▁ Pat",
+ "▁G re",
+ "▁Gr e",
+ "▁ Gre",
+ "▁you ng",
+ "▁yo ung",
+ "▁In ter",
+ "▁Int er",
+ "▁ Inter",
+ "om a",
+ "o ma",
+ "te ger",
+ "ib ility",
+ "ibil ity",
+ "▁param eters",
+ "▁parameter s",
+ "▁paramet ers",
+ "▁ parameters",
+ "▁every thing",
+ "da t",
+ "d at",
+ "ur op",
+ "uro p",
+ "u rop",
+ "ole an",
+ "o lean",
+ "▁return ed",
+ "▁C lass",
+ "▁Cl ass",
+ "▁Cla ss",
+ "▁ Class",
+ "ac y",
+ "a cy",
+ "## ##",
+ "▁p ř",
+ "▁f older",
+ "▁fol der",
+ "▁fo lder",
+ "▁ folder",
+ "▁k on",
+ "▁ko n",
+ "▁ kon",
+ "▁gu ess",
+ "g t",
+ "je n",
+ "j en",
+ "an nel",
+ "ann el",
+ "anne l",
+ "ic on",
+ "ico n",
+ "i con",
+ "▁c omb",
+ "▁com b",
+ "▁co mb",
+ "▁ comb",
+ "ri ct",
+ "ric t",
+ "r ict",
+ "▁h ij",
+ "▁hi j",
+ "▁aut hor",
+ "▁auth or",
+ "▁ author",
+ "se e",
+ "s ee",
+ "he re",
+ "her e",
+ "h ere",
+ "st ra",
+ "str a",
+ "s tra",
+ "▁ent ire",
+ "▁direct ly",
+ "ra ft",
+ "raf t",
+ "r aft",
+ "he et",
+ "es ter",
+ "est er",
+ "este r",
+ "e ster",
+ "▁м и",
+ "▁ ми",
+ "▁m ass",
+ "▁ma ss",
+ "▁mas s",
+ "▁ mass",
+ "un tu",
+ "unt u",
+ "▁u sers",
+ "▁us ers",
+ "▁use rs",
+ "▁user s",
+ "▁ users",
+ "ch i",
+ "c hi",
+ "P E",
+ "▁com ponent",
+ "▁compon ent",
+ "▁ component",
+ "Cl ick",
+ "C lick",
+ "At t",
+ "A tt",
+ "▁s obre",
+ "▁so bre",
+ "▁sob re",
+ "an ds",
+ "and s",
+ "▁H ol",
+ "▁Ho l",
+ "▁ Hol",
+ "▁S ant",
+ "▁San t",
+ "▁Sa nt",
+ "or i",
+ "o ri",
+ "▁s ua",
+ "▁su a",
+ "st d",
+ "s td",
+ "ent ic",
+ "enti c",
+ "C C",
+ "▁fil ter",
+ "▁ filter",
+ "S QL",
+ "▁G od",
+ "▁Go d",
+ "A t",
+ "▁м у",
+ "▁ му",
+ "▁per formance",
+ "▁perform ance",
+ "del ta",
+ "d elta",
+ "an de",
+ "and e",
+ "a nde",
+ "am er",
+ "ame r",
+ "a mer",
+ "д ы",
+ "▁c ult",
+ "▁cu lt",
+ "▁cul t",
+ "▁N or",
+ "▁No r",
+ "bu t",
+ "b ut",
+ "▁l ik",
+ "▁li k",
+ "▁ lik",
+ "**** ****",
+ "ст вен",
+ "ств ен",
+ "стве н",
+ "▁com me",
+ "▁comm e",
+ "▁d r",
+ "▁ dr",
+ "im er",
+ "ime r",
+ "i mer",
+ "or din",
+ "ord in",
+ "▁cond ition",
+ "▁ condition",
+ "es te",
+ "est e",
+ "e ste",
+ "( [",
+ "F F",
+ "ть ся",
+ "im o",
+ "i mo",
+ "ra b",
+ "r ab",
+ "і ль",
+ "▁h alf",
+ "▁hal f",
+ "▁ half",
+ "ea ch",
+ "e ach",
+ "Di s",
+ "D is",
+ "▁r ows",
+ "▁ro ws",
+ "▁row s",
+ "▁ rows",
+ "▁h on",
+ "▁ho n",
+ "▁ hon",
+ "▁t ogether",
+ "▁tog ether",
+ "▁ și",
+ "me di",
+ "med i",
+ "m edi",
+ "ag n",
+ "a gn",
+ "al led",
+ "all ed",
+ "alle d",
+ "▁v ill",
+ "▁vi ll",
+ "▁vil l",
+ "IN G",
+ "I NG",
+ "id den",
+ "idd en",
+ "▁d raw",
+ "▁dr aw",
+ "▁dra w",
+ "▁ draw",
+ "yn tax",
+ "ynt ax",
+ "▁att empt",
+ "UR L",
+ "U RL",
+ "pos e",
+ "po se",
+ "p ose",
+ "▁in dic",
+ "▁ind ic",
+ "ни ка",
+ "ник а",
+ "▁Eng lish",
+ "▁ English",
+ "▁d éc",
+ "▁dé c",
+ "▁ne eds",
+ "▁need s",
+ "▁n ormal",
+ "▁nor mal",
+ "▁norm al",
+ "▁ normal",
+ "ur t",
+ "u rt",
+ "▁н о",
+ "▁ но",
+ "}} \\",
+ "} }\\",
+ "la st",
+ "las t",
+ "l ast",
+ "▁F in",
+ "▁ Fin",
+ "▁F ebru",
+ "▁Fe bru",
+ "▁Feb ru",
+ "il a",
+ "i la",
+ "▁c ountry",
+ "▁count ry",
+ "▁coun try",
+ "▁ country",
+ "▁field s",
+ "▁fiel ds",
+ "▁ fields",
+ "▁m ax",
+ "▁ma x",
+ "▁ max",
+ "lé s",
+ "l és",
+ "ow ie",
+ "owi e",
+ "o wie",
+ "▁de ux",
+ "▁bu ilt",
+ "▁ built",
+ "▁M ain",
+ "▁Ma in",
+ "▁Mai n",
+ "▁ Main",
+ "▁c amp",
+ "▁cam p",
+ "▁ca mp",
+ "▁ camp",
+ "iv o",
+ "i vo",
+ "iv a",
+ "i va",
+ "ic y",
+ "i cy",
+ "zi one",
+ "z ione",
+ "No de",
+ "N ode",
+ "▁: )",
+ "▁ :)",
+ "▁am ong",
+ "▁O b",
+ "▁ Ob",
+ "▁c ases",
+ "▁case s",
+ "▁cas es",
+ "▁ cases",
+ "ha ps",
+ "h aps",
+ "se rs",
+ "ser s",
+ "s ers",
+ "ar ter",
+ "art er",
+ "arte r",
+ "śc i",
+ "ś ci",
+ "▁it er",
+ "▁i ter",
+ "▁ iter",
+ "▁n amed",
+ "▁name d",
+ "▁na med",
+ "▁nam ed",
+ "▁ named",
+ "ex ec",
+ "exe c",
+ "▁se ason",
+ "▁sea son",
+ "▁ season",
+ "to t",
+ "t ot",
+ "= >",
+ "gr aph",
+ "gra ph",
+ "g raph",
+ "▁n il",
+ "▁ni l",
+ "▁ nil",
+ "ac ional",
+ "acion al",
+ "aci onal",
+ "▁N ULL",
+ "▁ NULL",
+ "▁spe cial",
+ "▁spec ial",
+ "▁ special",
+ "ст е",
+ "с те",
+ "cs s",
+ "c ss",
+ "▁\\ (",
+ "v s",
+ "ae l",
+ "a el",
+ "▁c ity",
+ "▁ci ty",
+ "▁cit y",
+ "▁ city",
+ "ov a",
+ "o va",
+ "▁art icle",
+ "▁ article",
+ "▁S outh",
+ "▁So uth",
+ "▁Sou th",
+ "Act ion",
+ "Ac tion",
+ "A ction",
+ "ç a",
+ "sp ring",
+ "spr ing",
+ "s pring",
+ "it ude",
+ "itu de",
+ "itud e",
+ "▁com plex",
+ "▁comp lex",
+ "▁comple x",
+ "▁compl ex",
+ "▁ complex",
+ "▁ч то",
+ "bu ild",
+ "g amma",
+ "▁E nt",
+ "▁En t",
+ "▁ Ent",
+ "ie rs",
+ "ier s",
+ "i ers",
+ "' .",
+ "ca r",
+ "c ar",
+ "ap ache",
+ "apa che",
+ "in gen",
+ "ing en",
+ "inge n",
+ "In put",
+ ": ",
+ "▁d ynam",
+ "▁dy nam",
+ "al ls",
+ "all s",
+ "sh ow",
+ "s how",
+ "| \\",
+ "▁w ird",
+ "▁wir d",
+ "B ar",
+ "al th",
+ "alt h",
+ "mod el",
+ "mo del",
+ "mode l",
+ "m odel",
+ "Tr ans",
+ "Tra ns",
+ "Ro w",
+ "R ow",
+ "ab e",
+ "a be",
+ "▁l ib",
+ "▁li b",
+ "▁ lib",
+ "nu ll",
+ "n ull",
+ "ra gment",
+ "rag ment",
+ "▁St ate",
+ "▁Stat e",
+ "▁Sta te",
+ "▁ State",
+ "▁l aw",
+ "▁la w",
+ "▁ law",
+ "Fr ame",
+ "F rame",
+ "▁L o",
+ "▁ Lo",
+ "ge b",
+ "g eb",
+ "}$ .",
+ "} $.",
+ "▁ne eded",
+ "▁need ed",
+ "▁con tr",
+ "▁cont r",
+ "▁ contr",
+ "ar ies",
+ "ari es",
+ "arie s",
+ "a ries",
+ "▁s creen",
+ "▁sc reen",
+ "▁scr een",
+ "▁ screen",
+ "y r",
+ "m m",
+ "▁sh own",
+ "▁show n",
+ "▁sho wn",
+ "▁b ad",
+ "▁ba d",
+ "▁ bad",
+ "▁c ast",
+ "▁cas t",
+ "▁ca st",
+ "▁ cast",
+ "▁T est",
+ "▁Te st",
+ "▁ Test",
+ "▁A uf",
+ "▁Au f",
+ "▁qu ant",
+ "▁quan t",
+ "▁ quant",
+ "ig a",
+ "i ga",
+ "▁re n",
+ "▁r en",
+ "▁ ren",
+ "▁M ac",
+ "▁Ma c",
+ "▁ Mac",
+ "▁trans form",
+ "▁ transform",
+ "▁d ifference",
+ "▁dif ference",
+ "▁differ ence",
+ "▁t it",
+ "▁ti t",
+ "▁ tit",
+ "T E",
+ "▁st ep",
+ "▁ste p",
+ "▁ step",
+ "▁c apt",
+ "▁cap t",
+ "▁ca pt",
+ "▁ capt",
+ "▁col lection",
+ "▁coll ection",
+ "▁collect ion",
+ "▁colle ction",
+ "▁ collection",
+ "iction ary",
+ "▁T om",
+ "▁To m",
+ "▁ Tom",
+ "ri er",
+ "rie r",
+ "r ier",
+ "▁m ove",
+ "▁mov e",
+ "▁mo ve",
+ "▁ move",
+ "co pe",
+ "cop e",
+ "c ope",
+ "or ds",
+ "ord s",
+ "▁fur ther",
+ "▁column s",
+ "▁ columns",
+ "▁L in",
+ "▁Li n",
+ "▁ Lin",
+ "▁f ixed",
+ "▁fix ed",
+ "▁ fixed",
+ "▁child ren",
+ "▁ children",
+ "M S",
+ "m o",
+ "un a",
+ "u na",
+ "▁ind ivid",
+ "tt y",
+ "t ty",
+ "as te",
+ "ast e",
+ "a ste",
+ "sr c",
+ "s rc",
+ "mat ch",
+ "m atch",
+ "w i",
+ "▁ х",
+ "▁д и",
+ "▁ ди",
+ "▁o rd",
+ "▁or d",
+ "▁ ord",
+ "iv ing",
+ "ivi ng",
+ "i ving",
+ "▁B ro",
+ "▁Br o",
+ "▁ Bro",
+ "▁al most",
+ "▁P res",
+ "▁Pr es",
+ "▁Pre s",
+ "▁ Pres",
+ "re ci",
+ "rec i",
+ "ar ing",
+ "ari ng",
+ "arin g",
+ "a ring",
+ "▁/ //",
+ "▁// /",
+ "▁ ///",
+ "ет ся",
+ "е тся",
+ "▁s ig",
+ "▁si g",
+ "▁ sig",
+ "lig ht",
+ "l ight",
+ "▁R ed",
+ "▁Re d",
+ "▁ Red",
+ "▁sugg est",
+ "▁sug gest",
+ "ol f",
+ "▁é té",
+ "▁ét é",
+ "▁ été",
+ "is ation",
+ "isa tion",
+ "isat ion",
+ "з на",
+ "Ne w",
+ "N ew",
+ "ст ан",
+ "ста н",
+ "с тан",
+ "L A",
+ "un icip",
+ "unic ip",
+ "uni cip",
+ "▁fig ure",
+ "▁figur e",
+ "▁ figure",
+ "m t",
+ "ia le",
+ "ial e",
+ "i ale",
+ "▁c atch",
+ "▁cat ch",
+ "▁ catch",
+ "de fault",
+ "def ault",
+ "▁t ele",
+ "▁te le",
+ "▁tel e",
+ "▁ tele",
+ "▁m atter",
+ "▁mat ter",
+ "ca st",
+ "cas t",
+ "c ast",
+ "▁R ich",
+ "▁Ric h",
+ "▁Ri ch",
+ "▁ Rich",
+ "▁hand le",
+ "▁ handle",
+ "val u",
+ "va lu",
+ "v alu",
+ "$ -",
+ "о б",
+ "▁j son",
+ "▁js on",
+ "▁ json",
+ "Cre ate",
+ "C reate",
+ "▁ex am",
+ "ал ь",
+ "а ль",
+ "ю т",
+ "or ed",
+ "ore d",
+ "o red",
+ "id os",
+ "ido s",
+ "ap pend",
+ "app end",
+ "appen d",
+ "appe nd",
+ "▁Ar ray",
+ "▁Arr ay",
+ "▁ Array",
+ "к с",
+ "} [",
+ "ri ve",
+ "riv e",
+ "r ive",
+ "▁c lub",
+ "▁cl ub",
+ "▁ club",
+ "ma nn",
+ "man n",
+ "m ann",
+ "▁e ste",
+ "▁est e",
+ "▁es te",
+ "▁ este",
+ "es ta",
+ "est a",
+ "e sta",
+ "▁G i",
+ "▁ Gi",
+ "▁J ap",
+ "▁Ja p",
+ "▁N ame",
+ "▁Na me",
+ "▁Nam e",
+ "▁ Name",
+ "Col umn",
+ "ou ps",
+ "oup s",
+ "o ups",
+ "is mo",
+ "ism o",
+ "▁C ity",
+ "▁Ci ty",
+ "▁Cit y",
+ "▁ City",
+ "▁class es",
+ "▁classe s",
+ "▁ classes",
+ "▁in fl",
+ "▁inf l",
+ "▁ infl",
+ "h l",
+ "ро м",
+ "р ом",
+ "▁ad ding",
+ "▁add ing",
+ "▁ adding",
+ "▁f ail",
+ "▁fa il",
+ "▁ fail",
+ "x x",
+ "õ es",
+ "S c",
+ "ut il",
+ "uti l",
+ "u til",
+ "▁l ocation",
+ "▁lo cation",
+ "▁loc ation",
+ "▁ location",
+ "le ge",
+ "leg e",
+ "l ege",
+ "ag o",
+ "a go",
+ "▁pro perties",
+ "▁proper ties",
+ "▁ properties",
+ "ab il",
+ "abi l",
+ "a bil",
+ "va s",
+ "v as",
+ "}$ ,",
+ "} $,",
+ "it ted",
+ "itt ed",
+ "itte d",
+ "ó d",
+ "▁D em",
+ "▁De m",
+ "▁as ked",
+ "▁ask ed",
+ "▁t ab",
+ "▁ta b",
+ "▁ tab",
+ "S ource",
+ "▁error s",
+ "▁err ors",
+ "▁ errors",
+ "ograph ie",
+ "▁ж и",
+ "▁ жи",
+ "▁m al",
+ "▁ma l",
+ "▁ mal",
+ "st ract",
+ "str act",
+ "stra ct",
+ "▁d ro",
+ "▁dr o",
+ "▁ dro",
+ "ra k",
+ "r ak",
+ "▁n ote",
+ "▁not e",
+ "▁no te",
+ "▁ note",
+ "▁set ting",
+ "▁sett ing",
+ "▁ setting",
+ "▁f em",
+ "▁fe m",
+ "▁s aw",
+ "▁sa w",
+ "ia r",
+ "i ar",
+ "HE R",
+ "H ER",
+ "е с",
+ "▁p red",
+ "▁pr ed",
+ "▁pre d",
+ "▁ pred",
+ "▁O ut",
+ "▁ Out",
+ "▁it ems",
+ "▁item s",
+ "▁ items",
+ "ла н",
+ "л ан",
+ "▁w erd",
+ "▁we rd",
+ "▁wer d",
+ "ers ion",
+ "li a",
+ "l ia",
+ "▁s in",
+ "▁si n",
+ "▁ sin",
+ "ich te",
+ "icht e",
+ "i chte",
+ "▁fe el",
+ "▁fee l",
+ "▁п ра",
+ "▁пр а",
+ "▁ пра",
+ "▁o der",
+ "▁od er",
+ "▁ oder",
+ "U E",
+ "oc ument",
+ "▁m ode",
+ "▁mod e",
+ "▁mo de",
+ "▁ mode",
+ "▁N a",
+ "▁ Na",
+ "де н",
+ "д ен",
+ "me s",
+ "m es",
+ "frame work",
+ "▁a uto",
+ "▁au to",
+ "▁aut o",
+ "▁ auto",
+ "ны м",
+ "н ым",
+ "ub y",
+ "u by",
+ "▁tem plate",
+ "▁temp late",
+ "▁ template",
+ "▁m ess",
+ "▁me ss",
+ "▁mes s",
+ "▁ mess",
+ "ie der",
+ "ied er",
+ "i eder",
+ "▁rel ated",
+ "▁rela ted",
+ "▁relate d",
+ "▁ related",
+ "ok en",
+ "oke n",
+ "o ken",
+ "▁follow s",
+ "se arch",
+ "s earch",
+ "am i",
+ "a mi",
+ "▁w ait",
+ "▁wa it",
+ "▁ wait",
+ "ig r",
+ "i gr",
+ "▁l ow",
+ "▁lo w",
+ "▁ low",
+ "ски х",
+ "ск их",
+ "с ких",
+ "ска я",
+ "с кая",
+ "▁M ark",
+ "▁Mar k",
+ "▁ Mark",
+ "▁i ll",
+ "▁il l",
+ "▁ ill",
+ "am ento",
+ "ament o",
+ "amen to",
+ "\\ <",
+ "▁d f",
+ "▁ df",
+ "os ition",
+ "osi tion",
+ "▁В и",
+ "is f",
+ "i sf",
+ "▁De utsch",
+ "ah l",
+ "a hl",
+ "wa r",
+ "w ar",
+ "it ect",
+ "ite ct",
+ "▁s al",
+ "▁sa l",
+ "▁ sal",
+ "el en",
+ "ele n",
+ "e len",
+ "By Id",
+ "▁g ru",
+ "▁gr u",
+ "▁ gru",
+ "s v",
+ "▁pass ed",
+ "▁pas sed",
+ "▁passe d",
+ "▁a ñ",
+ "▁ añ",
+ "Sc h",
+ "S ch",
+ "▁sol ve",
+ "we ise",
+ "weis e",
+ "wei se",
+ "at os",
+ "ato s",
+ "▁m eg",
+ "▁me g",
+ "▁m ember",
+ "▁mem ber",
+ "▁memb er",
+ "▁ member",
+ "er name",
+ "ern ame",
+ "erna me",
+ "▁con nect",
+ "▁conne ct",
+ "▁conn ect",
+ "▁ connect",
+ "ip s",
+ "i ps",
+ "▁r ound",
+ "▁ro und",
+ "▁rou nd",
+ "▁ round",
+ "▁ ]",
+ "ne s",
+ "n es",
+ "▁d ir",
+ "▁di r",
+ "▁ dir",
+ "▁Lond on",
+ "d y",
+ "F A",
+ "▁rece ived",
+ "▁receive d",
+ "re et",
+ "ree t",
+ "▁L og",
+ "▁Lo g",
+ "▁ Log",
+ "▁Sch ool",
+ "an go",
+ "ang o",
+ "▁The se",
+ "▁Th ese",
+ "▁M ont",
+ "▁Mon t",
+ "▁Mo nt",
+ "▁ Mont",
+ "▁e ner",
+ "▁en er",
+ "▁ ener",
+ "la d",
+ "l ad",
+ "▁def ine",
+ "▁defin e",
+ "▁ define",
+ "si gn",
+ "sig n",
+ "s ign",
+ "▁c le",
+ "▁cl e",
+ "▁ cle",
+ "fig ure",
+ "▁V iew",
+ "▁Vi ew",
+ "▁Vie w",
+ "▁ View",
+ "text bf",
+ "$ \\",
+ "з ы",
+ "num ber",
+ "n umber",
+ "▁d in",
+ "▁di n",
+ "▁ din",
+ "el ler",
+ "ell er",
+ "elle r",
+ "orith m",
+ "ori thm",
+ "fal se",
+ "f alse",
+ "fo l",
+ "f ol",
+ "ffic ient",
+ "▁HT ML",
+ "▁ HTML",
+ "li che",
+ "lic he",
+ "lich e",
+ "l iche",
+ "▁M o",
+ "▁ Mo",
+ "▁int rodu",
+ "▁intr odu",
+ "▁intro du",
+ "ex p",
+ "e xp",
+ "▁st rong",
+ "▁str ong",
+ "▁stro ng",
+ "▁ strong",
+ "▁t hus",
+ "▁th us",
+ "/ )",
+ "▁e le",
+ "▁el e",
+ "▁ ele",
+ "▁та к",
+ "▁ так",
+ "▁п а",
+ "▁ па",
+ "▁d ont",
+ "▁do nt",
+ "▁don t",
+ "▁c ause",
+ "▁caus e",
+ "▁ca use",
+ "Num ber",
+ "N umber",
+ "▁im ages",
+ "▁image s",
+ "▁imag es",
+ "▁ images",
+ "▁s ample",
+ "▁sam ple",
+ "▁ sample",
+ "▁s ci",
+ "▁sc i",
+ "▁ sci",
+ "li ke",
+ "lik e",
+ "l ike",
+ "▁L ou",
+ "▁Lo u",
+ "▁ Lou",
+ "di v",
+ "d iv",
+ "an c",
+ "a nc",
+ "▁f ront",
+ "▁fr ont",
+ "▁fro nt",
+ "▁ front",
+ "ne n",
+ "n en",
+ "▁miss ing",
+ "▁mis sing",
+ "▁ missing",
+ "ar ia",
+ "ari a",
+ "a ria",
+ "pr es",
+ "pre s",
+ "p res",
+ "▁п ред",
+ "▁пре д",
+ "D I",
+ "fil ter",
+ "▁M it",
+ "▁Mi t",
+ "U R",
+ "▁o pp",
+ "▁op p",
+ "▁ opp",
+ "▁s ql",
+ "▁sq l",
+ "▁ sql",
+ "▁ро ку",
+ "er en",
+ "ere n",
+ "e ren",
+ "em at",
+ "ema t",
+ "e mat",
+ "í s",
+ "▁Je an",
+ "▁ Jean",
+ "é c",
+ "▁c i",
+ "▁ ci",
+ "en ne",
+ "enn e",
+ "at form",
+ "▁t aken",
+ "▁tak en",
+ "▁take n",
+ "▁ta ken",
+ "▁O f",
+ "▁ Of",
+ "▁на се",
+ "▁e rr",
+ "▁er r",
+ "▁ err",
+ "O P",
+ "Fr om",
+ "F rom",
+ "De fault",
+ "Def ault",
+ "▁Gener al",
+ "▁Gen eral",
+ "▁Gene ral",
+ "▁ General",
+ "wik i",
+ "wi ki",
+ "w iki",
+ "▁g rand",
+ "▁gr and",
+ "▁gra nd",
+ "▁gran d",
+ "▁ grand",
+ "▁e inen",
+ "▁ein en",
+ "▁eine n",
+ "Re g",
+ "R eg",
+ "Hand ler",
+ "Handle r",
+ "con om",
+ "co nom",
+ "cono m",
+ "c onom",
+ "an ger",
+ "ang er",
+ "ange r",
+ "▁бы л",
+ "▁L os",
+ "▁Lo s",
+ "▁ Los",
+ "▁ex pression",
+ "▁exp ression",
+ "▁express ion",
+ "▁expr ession",
+ "▁ expression",
+ "ш а",
+ "ya l",
+ "y al",
+ "▁$ ('",
+ "▁$( '",
+ "▁sw itch",
+ "▁ switch",
+ "▁v ector",
+ "▁ve ctor",
+ "▁vec tor",
+ "▁ vector",
+ "▁T hom",
+ "▁Th om",
+ "▁v irt",
+ "▁vi rt",
+ "▁vir t",
+ "▁ virt",
+ "le ased",
+ "lease d",
+ "lea sed",
+ "▁c over",
+ "▁co ver",
+ "▁cov er",
+ "▁ cover",
+ "▁re sp",
+ "▁r esp",
+ "▁res p",
+ "▁ resp",
+ "ak o",
+ "a ko",
+ "ren ch",
+ "ot a",
+ "o ta",
+ "C ell",
+ "an ged",
+ "ang ed",
+ "ange d",
+ "▁+ =",
+ "▁ +=",
+ "la c",
+ "l ac",
+ "sk a",
+ "s ka",
+ "ne xt",
+ "nex t",
+ "n ext",
+ "▁Intern ational",
+ "▁W il",
+ "▁Wi l",
+ "▁ Wil",
+ "▁o nt",
+ "▁on t",
+ "▁ ont",
+ "ib r",
+ "i br",
+ "us tr",
+ "ust r",
+ "u str",
+ "▁b lack",
+ "▁bl ack",
+ "▁bla ck",
+ "▁ black",
+ "▁select ed",
+ "▁sel ected",
+ "▁sele cted",
+ "▁ selected",
+ "ch er",
+ "che r",
+ "c her",
+ "▁l iter",
+ "▁li ter",
+ "▁lit er",
+ "▁ liter",
+ "ro ot",
+ "r oot",
+ "л ся",
+ "▁L ife",
+ "▁Li fe",
+ "▁ Life",
+ "▁in sert",
+ "▁ins ert",
+ "▁inser t",
+ "▁inse rt",
+ "▁ insert",
+ "▁mat rix",
+ "▁ matrix",
+ "is es",
+ "ise s",
+ ") ]",
+ "▁p el",
+ "▁pe l",
+ "▁ pel",
+ "Over ride",
+ "ry pt",
+ "▁for mer",
+ "▁form er",
+ "▁forme r",
+ "▁ former",
+ "▁Fil m",
+ "▁N orth",
+ "▁Nor th",
+ "cl ient",
+ "cli ent",
+ "c lient",
+ "▁n ight",
+ "▁ night",
+ "хо ди",
+ "ход и",
+ "▁A ustral",
+ "▁Aust ral",
+ "▁ Austral",
+ "▁R et",
+ "▁Re t",
+ "▁ Ret",
+ "rh o",
+ "r ho",
+ "▁п ер",
+ "▁пе р",
+ "▁ пер",
+ "ip edia",
+ "ipe dia",
+ "▁ex press",
+ "▁exp ress",
+ "▁expr ess",
+ "▁expres s",
+ "▁ express",
+ "▁th ird",
+ "▁ third",
+ "▁ma jor",
+ "▁maj or",
+ "▁ major",
+ "▁g rad",
+ "▁gr ad",
+ "▁gra d",
+ "▁ grad",
+ "ow e",
+ "o we",
+ "▁bel ieve",
+ "our nal",
+ "ourn al",
+ "▁st atus",
+ "▁stat us",
+ "▁ status",
+ "un c",
+ "u nc",
+ "▁d ou",
+ "▁do u",
+ "▁J SON",
+ "▁JS ON",
+ "▁ JSON",
+ "ui s",
+ "u is",
+ "▁pop ulation",
+ "▁popula tion",
+ "▁popul ation",
+ "en z",
+ "▁Will iam",
+ "s f",
+ "▁O bject",
+ "▁Ob ject",
+ "▁ Object",
+ "▁c in",
+ "▁ci n",
+ "▁ cin",
+ "▁D i",
+ "▁ Di",
+ "cur ity",
+ "c urity",
+ "▁O pen",
+ "▁Op en",
+ "▁ Open",
+ "▁ ле",
+ "la r",
+ "l ar",
+ "ad ding",
+ "add ing",
+ "▁k om",
+ "▁ko m",
+ "▁ kom",
+ "}( \\",
+ "} (\\",
+ "▁k il",
+ "▁ki l",
+ "▁ kil",
+ "um er",
+ "ume r",
+ "u mer",
+ "\"/ >",
+ "\" />",
+ "▁fe ature",
+ "▁ feature",
+ "▁A re",
+ "▁Ar e",
+ "▁ Are",
+ "ck s",
+ "c ks",
+ "▁Intern et",
+ "▁Inter net",
+ "▁ Internet",
+ "▁i h",
+ "▁ ih",
+ "▁start ed",
+ "▁star ted",
+ "▁ear ly",
+ "▁be gan",
+ "▁beg an",
+ "T H",
+ "p ython",
+ "as p",
+ "a sp",
+ "▁F r",
+ "▁ Fr",
+ "▁c los",
+ "▁cl os",
+ "▁clo s",
+ "▁ clos",
+ "ist ic",
+ "isti c",
+ "▁mus ic",
+ "▁ music",
+ "▁d ig",
+ "▁di g",
+ "▁ dig",
+ "▁it al",
+ "▁i tal",
+ "▁ ital",
+ "▁D avid",
+ "▁Dav id",
+ "▁Da vid",
+ "▁ David",
+ "▁web site",
+ "▁ website",
+ "▁cont roller",
+ "▁control ler",
+ "▁ controller",
+ "▁M er",
+ "▁Me r",
+ "▁ Mer",
+ "con text",
+ "cont ext",
+ "pro duct",
+ "produ ct",
+ "prod uct",
+ "os p",
+ "o sp",
+ "▁j un",
+ "▁ju n",
+ "ro wn",
+ "row n",
+ "r own",
+ "▁A z",
+ "▁ Az",
+ "\": \"",
+ "\" :\"",
+ "▁a an",
+ "▁aa n",
+ "▁D ate",
+ "▁Da te",
+ "▁Dat e",
+ "▁ Date",
+ "mu lt",
+ "mul t",
+ "m ult",
+ "▁b rowser",
+ "▁brow ser",
+ "▁ browser",
+ "ре д",
+ "wh ich",
+ "R A",
+ "qu are",
+ "qua re",
+ "▁R uss",
+ "▁Ru ss",
+ "▁Rus s",
+ "▁ Russ",
+ "▁s oon",
+ "▁so on",
+ "▁P re",
+ "▁Pr e",
+ "▁ Pre",
+ "ta u",
+ "t au",
+ "▁we ek",
+ "▁ week",
+ "▁б а",
+ "▁ ба",
+ "▁o ct",
+ "▁oc t",
+ "▁ oct",
+ "▁t own",
+ "▁to wn",
+ "▁ town",
+ "ro y",
+ "r oy",
+ "▁e ls",
+ "▁el s",
+ "▁ els",
+ "bl ic",
+ "b lic",
+ "und le",
+ "▁H istor",
+ "▁His tor",
+ "▁Hi stor",
+ "▁Hist or",
+ "▁f oi",
+ "▁fo i",
+ "▁mod els",
+ "▁model s",
+ "▁mode ls",
+ "▁ models",
+ "з о",
+ "on ym",
+ "ony m",
+ "o nym",
+ "Par am",
+ "Pa ram",
+ "P aram",
+ "▁M et",
+ "▁Me t",
+ "▁ Met",
+ "ge ner",
+ "gen er",
+ "g ener",
+ "j ą",
+ "▁e spe",
+ "▁es pe",
+ "▁esp e",
+ "C E",
+ "▁de vice",
+ "▁dev ice",
+ "▁devi ce",
+ "▁ device",
+ "el low",
+ "ell ow",
+ "ello w",
+ "▁de bug",
+ "▁deb ug",
+ "▁ debug",
+ "ér ie",
+ "éri e",
+ "é rie",
+ "us ing",
+ "u sing",
+ "ан г",
+ "а нг",
+ "▁* )",
+ "▁ *)",
+ "ud i",
+ "u di",
+ "▁M iss",
+ "▁Mi ss",
+ "▁Mis s",
+ "▁ Miss",
+ "ко м",
+ "к ом",
+ "pos ed",
+ "po sed",
+ "pose d",
+ "p osed",
+ "▁z we",
+ "▁zw e",
+ "і н",
+ "▁Ro bert",
+ "▁Rob ert",
+ "▁O ct",
+ "▁ Oct",
+ "lo p",
+ "l op",
+ "ja r",
+ "j ar",
+ "▁a ver",
+ "▁av er",
+ "▁ave r",
+ "▁ aver",
+ "▁ha bit",
+ "▁hab it",
+ "▁: :",
+ "▁ ::",
+ "än g",
+ "ä ng",
+ "St art",
+ "Star t",
+ "▁p ow",
+ "▁po w",
+ "▁ pow",
+ "▁s rc",
+ "▁sr c",
+ "▁ src",
+ "▁pat tern",
+ "▁ pattern",
+ "▁ Э",
+ "▁b i",
+ "▁ bi",
+ "ot es",
+ "ote s",
+ "o tes",
+ "▁_ _",
+ "▁ __",
+ "▁s ens",
+ "▁se ns",
+ "▁sen s",
+ "▁ sens",
+ "▁a void",
+ "▁av oid",
+ "▁avo id",
+ "ex ample",
+ "ut t",
+ "u tt",
+ "La bel",
+ "Lab el",
+ "L abel",
+ "te x",
+ "t ex",
+ "bo ot",
+ "b oot",
+ "es to",
+ "est o",
+ "e sto",
+ "▁M arch",
+ "▁Mar ch",
+ "▁Marc h",
+ "▁e asy",
+ "▁eas y",
+ "ict ure",
+ "Gr oup",
+ "▁f ather",
+ "▁fa ther",
+ "▁fat her",
+ "▁ father",
+ "▁up dated",
+ "▁update d",
+ "▁upd ated",
+ "▁ updated",
+ "▁V o",
+ "▁I II",
+ "▁II I",
+ "▁ III",
+ "om ega",
+ "ome ga",
+ "▁a lle",
+ "▁al le",
+ "▁all e",
+ "▁ alle",
+ "Re c",
+ "R ec",
+ "y g",
+ "з е",
+ "▁D im",
+ "▁Di m",
+ "▁ Dim",
+ "ne ct",
+ "n ect",
+ "▁T or",
+ "▁To r",
+ "▁de utsch",
+ "▁ deutsch",
+ "▁wh ite",
+ "▁ white",
+ "▁n ational",
+ "▁nation al",
+ "▁nat ional",
+ "pp e",
+ "p pe",
+ "▁a ir",
+ "▁ai r",
+ "▁ air",
+ "▁pass word",
+ "▁ password",
+ "de t",
+ "d et",
+ "▁b ig",
+ "▁bi g",
+ "▁ big",
+ "▁U se",
+ "▁Us e",
+ "▁ Use",
+ "cal l",
+ "ca ll",
+ "c all",
+ "▁ex tra",
+ "▁ext ra",
+ "▁extr a",
+ "▁ extra",
+ "W e",
+ "an ia",
+ "ani a",
+ "a nia",
+ "▁h old",
+ "▁ho ld",
+ "▁hol d",
+ "▁ hold",
+ "Cont rol",
+ "▁C O",
+ "▁ CO",
+ "▁м і",
+ "▁ мі",
+ "it i",
+ "i ti",
+ "▁K e",
+ "▁ Ke",
+ "en u",
+ "e nu",
+ "▁P ark",
+ "▁Par k",
+ "то м",
+ "т ом",
+ "▁a uth",
+ "▁au th",
+ "▁aut h",
+ "▁ auth",
+ "▁c enter",
+ "▁cent er",
+ "▁ center",
+ "P h",
+ "то в",
+ "т ов",
+ "id ing",
+ "idi ng",
+ "i ding",
+ "▁a cross",
+ "▁ac ross",
+ "▁s ong",
+ "▁so ng",
+ "▁son g",
+ "▁ song",
+ "▁ph ys",
+ "▁ phys",
+ "▁n umer",
+ "▁num er",
+ "▁nu mer",
+ "▁ numer",
+ "щ а",
+ "▁A lex",
+ "▁Al ex",
+ "▁Ale x",
+ "▁ Alex",
+ "▁problem s",
+ "▁proble ms",
+ "▁probl ems",
+ "▁E rror",
+ "▁Er ror",
+ "▁Err or",
+ "▁ Error",
+ "form at",
+ "for mat",
+ "▁A cc",
+ "▁Ac c",
+ "▁ Acc",
+ "▁s ix",
+ "▁si x",
+ "▁ six",
+ "▁d b",
+ "▁ db",
+ "▁C ast",
+ "▁Cas t",
+ "▁Ca st",
+ "▁ Cast",
+ "om s",
+ "o ms",
+ "pro ject",
+ "proj ect",
+ "▁v ert",
+ "▁ver t",
+ "▁ve rt",
+ "▁ vert",
+ "cre t",
+ "cr et",
+ "c ret",
+ "▁he ader",
+ "▁head er",
+ "▁ header",
+ "▁st ream",
+ "▁stre am",
+ "▁ stream",
+ "id s",
+ "i ds",
+ "▁t or",
+ "▁to r",
+ "▁ tor",
+ "▁se pt",
+ "▁sep t",
+ "▁est im",
+ "▁es tim",
+ "▁de cl",
+ "▁dec l",
+ "▁ decl",
+ "▁g ave",
+ "▁ga ve",
+ "▁p layer",
+ "▁pl ayer",
+ "▁play er",
+ "▁pla yer",
+ "▁ player",
+ "ys is",
+ "▁д ру",
+ "▁др у",
+ "am m",
+ "a mm",
+ "щ о",
+ "▁( \"",
+ "▁ (\"",
+ "▁a x",
+ "▁ ax",
+ "Pro perty",
+ "us r",
+ "u sr",
+ "▁some one",
+ "▁im pro",
+ "▁imp ro",
+ "▁impr o",
+ "ad en",
+ "ade n",
+ "a den",
+ "ro te",
+ "rot e",
+ "r ote",
+ "▁М и",
+ "i h",
+ "++ )",
+ "+ +)",
+ "▁v ideo",
+ "▁vide o",
+ "▁ video",
+ "▁ex ists",
+ "▁exist s",
+ "▁ exists",
+ "к ла",
+ "▁comp lete",
+ "▁comple te",
+ "▁complet e",
+ "▁compl ete",
+ "▁ complete",
+ "▁s ession",
+ "▁sess ion",
+ "▁ session",
+ "▁const ant",
+ "▁ constant",
+ "ic os",
+ "ico s",
+ "i cos",
+ "▁p ack",
+ "▁pa ck",
+ "▁pac k",
+ "▁ pack",
+ "ro me",
+ "rom e",
+ "r ome",
+ "eg r",
+ "e gr",
+ "App lication",
+ "▁y es",
+ "▁ye s",
+ "▁ yes",
+ "▁e lle",
+ "▁el le",
+ "▁ell e",
+ "▁ elle",
+ "▁e mail",
+ "▁em ail",
+ "▁ email",
+ "or f",
+ "o rf",
+ "ca se",
+ "cas e",
+ "c ase",
+ "▁po inter",
+ "▁point er",
+ "▁ pointer",
+ "▁reg ard",
+ "se n",
+ "s en",
+ "st atus",
+ "stat us",
+ "▁m es",
+ "▁me s",
+ "▁ mes",
+ "▁d elle",
+ "▁de lle",
+ "▁del le",
+ "▁dell e",
+ "ing ton",
+ "ingt on",
+ "▁B as",
+ "▁Ba s",
+ "▁ Bas",
+ ") ^",
+ "de velop",
+ "▁for ce",
+ "▁ force",
+ "▁char acters",
+ "▁charact ers",
+ "▁character s",
+ "▁c ross",
+ "▁cr oss",
+ "▁cro ss",
+ "▁ cross",
+ "▁de ath",
+ "▁t akes",
+ "▁tak es",
+ "▁take s",
+ "▁ta kes",
+ "ér i",
+ "é ri",
+ "ig ne",
+ "ign e",
+ "че н",
+ "ч ен",
+ "U P",
+ ". :",
+ "Th read",
+ "j u",
+ "in y",
+ "i ny",
+ "▁det ails",
+ "▁detail s",
+ "▁ details",
+ "▁x ml",
+ "▁ xml",
+ "ta it",
+ "t ait",
+ "out put",
+ "mess age",
+ "m essage",
+ "' '",
+ "▁Brit ish",
+ "vi lle",
+ "vil le",
+ "v ille",
+ "▁D iv",
+ "▁Di v",
+ "▁ Div",
+ "▁U ser",
+ "▁Use r",
+ "▁Us er",
+ "▁ User",
+ "c m",
+ "ч но",
+ "col umn",
+ "eq ref",
+ "ó r",
+ "on om",
+ "ono m",
+ "o nom",
+ "▁P ost",
+ "▁Po st",
+ "▁Pos t",
+ "▁ Post",
+ "el len",
+ "ell en",
+ "elle n",
+ "A b",
+ "ul té",
+ "ult é",
+ "▁per fect",
+ "▁perf ect",
+ "() {",
+ "( ){",
+ "vis ion",
+ "v ision",
+ "act ive",
+ "activ e",
+ "li er",
+ "lie r",
+ "l ier",
+ "ri j",
+ "r ij",
+ "s d",
+ "▁k ö",
+ "▁ kö",
+ "▁n ie",
+ "▁ni e",
+ "▁ nie",
+ "▁re lig",
+ "▁rel ig",
+ "▁reli g",
+ "▁o t",
+ "▁ ot",
+ "▁m achine",
+ "▁mach ine",
+ "▁ machine",
+ "▁h eld",
+ "▁he ld",
+ "▁hel d",
+ ")$ .",
+ ") $.",
+ "==== ====",
+ "ck er",
+ "cke r",
+ "c ker",
+ "в ы",
+ "bo rn",
+ "bor n",
+ "b orn",
+ "▁p ast",
+ "▁pas t",
+ "▁pa st",
+ "ри я",
+ "▁D r",
+ "▁ Dr",
+ "▁reg ular",
+ "▁regul ar",
+ "▁ regular",
+ "▁prov ided",
+ "▁provide d",
+ "TE R",
+ "T ER",
+ "▁un ivers",
+ "▁ univers",
+ "▁g ets",
+ "▁get s",
+ "▁ge ts",
+ "▁ gets",
+ "▁n u",
+ "▁ nu",
+ "▁/ *",
+ "▁ /*",
+ "ob er",
+ "obe r",
+ "o ber",
+ "fi n",
+ "f in",
+ "▁n ella",
+ "▁ne lla",
+ "▁nel la",
+ "▁nell a",
+ "▁be come",
+ "▁bec ome",
+ "▁becom e",
+ "▁` `",
+ "▁ ``",
+ "▁h istory",
+ "▁histor y",
+ "▁hi story",
+ "▁hist ory",
+ "▁ history",
+ "▁S ol",
+ "▁So l",
+ "▁ Sol",
+ "▁R ad",
+ "▁Ra d",
+ "▁ Rad",
+ "▁term s",
+ "▁ter ms",
+ "▁even ts",
+ "▁event s",
+ "▁ev ents",
+ "▁ events",
+ "ly mp",
+ ")) )",
+ ") ))",
+ "ро ва",
+ "ров а",
+ "р ова",
+ "▁ab sol",
+ "▁abs ol",
+ "▁so ft",
+ "▁ soft",
+ "lin ks",
+ "link s",
+ "l inks",
+ "▁h ope",
+ "▁ho pe",
+ "▁hop e",
+ "▁su bject",
+ "▁sub ject",
+ "▁ subject",
+ "\") ,",
+ "\" ),",
+ "▁cre ating",
+ "▁} \r",
+ "▁ }\r",
+ "▁S k",
+ "▁ Sk",
+ "▁f low",
+ "▁fl ow",
+ "▁flo w",
+ "▁ flow",
+ "▁Р а",
+ "▁as sert",
+ "▁ass ert",
+ "▁asse rt",
+ "▁ assert",
+ "ze t",
+ "z et",
+ "▁F rank",
+ "▁Fran k",
+ "▁Fr ank",
+ "s a",
+ "▁dist ribution",
+ "▁distribu tion",
+ "▁distrib ution",
+ "▁ distribution",
+ "c u",
+ "ba nd",
+ "ban d",
+ "b and",
+ "iz z",
+ "i zz",
+ "▁j ob",
+ "▁jo b",
+ "▁ job",
+ "in er",
+ "ine r",
+ "i ner",
+ "st ruct",
+ "str uct",
+ "stru ct",
+ "á k",
+ "T O",
+ "au f",
+ "a uf",
+ "▁ext ends",
+ "▁extend s",
+ "▁G ra",
+ "▁Gr a",
+ "dis play",
+ "▁sign ific",
+ "on ey",
+ "one y",
+ "o ney",
+ "s ource",
+ "m icrosoft",
+ "in der",
+ "ind er",
+ "inde r",
+ "i nder",
+ "▁qu ick",
+ "▁qui ck",
+ "▁ quick",
+ "▁w onder",
+ "▁won der",
+ "▁wo nder",
+ "Inst ance",
+ "el les",
+ "ell es",
+ "elle s",
+ "e lles",
+ "è me",
+ "▁comp any",
+ "▁compan y",
+ "▁ company",
+ "u ß",
+ ". }",
+ "▁separ ate",
+ "U M",
+ "HER E",
+ "HE RE",
+ "H ERE",
+ "▁writ ing",
+ "▁wr iting",
+ "▁ writing",
+ "it ution",
+ "itu tion",
+ "itut ion",
+ "▁G esch",
+ "▁Ge sch",
+ "▁Ges ch",
+ "м я",
+ "▁J ames",
+ "▁Ja mes",
+ "▁Jam es",
+ "▁ James",
+ "▁D E",
+ "▁ DE",
+ "▁S pe",
+ "▁Sp e",
+ "▁ Spe",
+ "pro cess",
+ "proc ess",
+ "St r",
+ "S tr",
+ "▁s ym",
+ "▁sy m",
+ "▁ sym",
+ "▁a o",
+ "▁ ao",
+ "▁w y",
+ "▁ wy",
+ "▁any one",
+ "▁U p",
+ "▁ Up",
+ "use um",
+ "ar on",
+ "aro n",
+ "a ron",
+ "▁def inition",
+ "▁defin ition",
+ "▁definit ion",
+ "▁ definition",
+ "▁` $",
+ "▁f av",
+ "▁fa v",
+ "rib utes",
+ "ribute s",
+ "ribu tes",
+ "▁R é",
+ "ograf ia",
+ "ografi a",
+ "el ement",
+ "ele ment",
+ "elem ent",
+ "e lement",
+ "ca p",
+ "c ap",
+ "pa t",
+ "p at",
+ "▁B ra",
+ "▁Br a",
+ "▁ Bra",
+ ") (",
+ "▁acc ording",
+ "▁accord ing",
+ "г е",
+ "▁p ie",
+ "▁pi e",
+ "▁ pie",
+ "el i",
+ "e li",
+ "} \"",
+ "▁act iv",
+ "▁ activ",
+ "▁s top",
+ "▁st op",
+ "▁sto p",
+ "▁ stop",
+ "pat ch",
+ "p atch",
+ "т і",
+ "▁J ose",
+ "▁Jo se",
+ "▁Jos e",
+ "▁ Jose",
+ "En d",
+ "E nd",
+ "▁p rze",
+ "▁pr ze",
+ "▁prz e",
+ "▁a ge",
+ "▁ag e",
+ "▁ age",
+ "it ory",
+ "ito ry",
+ "itor y",
+ "▁P HP",
+ "▁ PHP",
+ "ag ement",
+ "age ment",
+ "agem ent",
+ "▁` .",
+ "▁ `.",
+ "▁pre tty",
+ "▁pret ty",
+ "▁re comm",
+ "▁rec omm",
+ "▁recom m",
+ "▁s ud",
+ "▁su d",
+ "▁re qu",
+ "▁r equ",
+ "▁req u",
+ "▁об ла",
+ "at ives",
+ "ative s",
+ "ativ es",
+ "ati ves",
+ "▁H igh",
+ "▁Hi gh",
+ "▁ High",
+ "á z",
+ "ou l",
+ "o ul",
+ "re st",
+ "res t",
+ "r est",
+ "▁T er",
+ "▁Te r",
+ "un der",
+ "und er",
+ "unde r",
+ "u nder",
+ "th ern",
+ "ther n",
+ "the rn",
+ "cent er",
+ "cen ter",
+ "cente r",
+ "c enter",
+ "▁u r",
+ "▁ ur",
+ "la t",
+ "l at",
+ "▁inter face",
+ "▁ interface",
+ "▁и н",
+ "▁ ин",
+ "▁wh ose",
+ "▁who se",
+ "ic as",
+ "ica s",
+ "i cas",
+ "am en",
+ "ame n",
+ "a men",
+ "Fil ter",
+ "▁st ation",
+ "▁stat ion",
+ "▁sta tion",
+ "▁stati on",
+ "▁ station",
+ "Pa ge",
+ "P age",
+ "▁a rm",
+ "▁ar m",
+ "▁ arm",
+ "▁e yes",
+ "▁eye s",
+ "▁ра й",
+ "▁s eu",
+ "▁se u",
+ "ol i",
+ "o li",
+ "wi n",
+ "w in",
+ "li k",
+ "l ik",
+ "ge x",
+ "g ex",
+ "ch an",
+ "cha n",
+ "c han",
+ "id ence",
+ "iden ce",
+ "ar gs",
+ "arg s",
+ "ak ing",
+ "aki ng",
+ "a king",
+ "▁Go ogle",
+ "▁ Google",
+ "▁St ud",
+ "▁Stu d",
+ "▁h o",
+ "▁ ho",
+ "то ры",
+ "тор ы",
+ "S u",
+ "▁autom at",
+ "▁auto mat",
+ "êm e",
+ "ê me",
+ "▁c y",
+ "▁ cy",
+ "lo r",
+ "l or",
+ "▁st ack",
+ "▁sta ck",
+ "▁ stack",
+ "▁SE LECT",
+ "▁ SELECT",
+ "A F",
+ "▁> >",
+ "▁ >>",
+ "▁com pet",
+ "▁comp et",
+ "▁p air",
+ "▁pa ir",
+ "▁ pair",
+ "▁ing lés",
+ "Res ponse",
+ "▁F ig",
+ "▁ Fig",
+ "gr ad",
+ "gra d",
+ "g rad",
+ "▁document ation",
+ "▁ documentation",
+ "▁c ant",
+ "▁can t",
+ "▁ca nt",
+ "▁app reci",
+ "å n",
+ "▁le arn",
+ "▁lear n",
+ "▁ learn",
+ "▁in dep",
+ "▁ind ep",
+ "▁inde p",
+ "▁p al",
+ "▁pa l",
+ "▁ pal",
+ "pack age",
+ "p ackage",
+ "ar es",
+ "are s",
+ "a res",
+ "▁Ber lin",
+ "▁Berl in",
+ "б ли",
+ "re ich",
+ "rei ch",
+ "ё н",
+ "▁s atisf",
+ "▁sat isf",
+ "▁reg ion",
+ "▁ region",
+ "▁fri end",
+ "▁ friend",
+ "▁Ge orge",
+ "▁Georg e",
+ "▁В о",
+ "▁ Во",
+ "▁\" \"",
+ "▁ \"\"",
+ "▁des de",
+ "Fact ory",
+ "F actory",
+ "▁Count y",
+ "▁Coun ty",
+ "ou v",
+ "o uv",
+ "▁ ‘",
+ "▁inst alled",
+ "▁install ed",
+ "▁instal led",
+ "▁ installed",
+ "▁w anted",
+ "▁want ed",
+ "▁P ython",
+ "▁ Python",
+ "▁inter pre",
+ "▁in cluded",
+ "▁includ ed",
+ "▁include d",
+ "▁inclu ded",
+ "▁( (",
+ "▁ ((",
+ "▁al tern",
+ "▁alt ern",
+ "▁alter n",
+ "▁alte rn",
+ "▁ altern",
+ "is to",
+ "ist o",
+ "i sto",
+ "g n",
+ "▁b order",
+ "▁bor der",
+ "▁bord er",
+ "▁ border",
+ "pd f",
+ "p df",
+ "▁d up",
+ "▁du p",
+ "▁ dup",
+ "▁down load",
+ "▁ download",
+ "ju st",
+ "jus t",
+ "j ust",
+ "▁m embers",
+ "▁mem bers",
+ "▁memb ers",
+ "▁member s",
+ "▁ members",
+ "ch ild",
+ "chi ld",
+ "▁p ay",
+ "▁pa y",
+ "▁ pay",
+ "▁c er",
+ "▁ce r",
+ "▁ cer",
+ "▁lo oked",
+ "▁look ed",
+ "▁correct ly",
+ "au th",
+ "aut h",
+ "a uth",
+ "▁с тан",
+ "▁ст ан",
+ "▁ста н",
+ "▁ стан",
+ "▁e sp",
+ "▁es p",
+ "▁ esp",
+ "▁d esc",
+ "▁de sc",
+ "▁des c",
+ "▁ desc",
+ "eb en",
+ "e ben",
+ "▁qu estions",
+ "▁question s",
+ "▁quest ions",
+ "▁questi ons",
+ "▁ questions",
+ "ma l",
+ "m al",
+ "▁ab gerufen",
+ "▁ abgerufen",
+ "▁B and",
+ "▁Ba nd",
+ "▁Ban d",
+ "▁[ ]",
+ "▁ []",
+ "Bas e",
+ "B ase",
+ "▁r is",
+ "▁ri s",
+ "▁ ris",
+ "▁f ort",
+ "▁for t",
+ "▁fo rt",
+ "▁ fort",
+ "▁I d",
+ "▁ Id",
+ "▁var ious",
+ "▁vari ous",
+ "▁Le ague",
+ "▁H and",
+ "▁Ha nd",
+ "▁Han d",
+ "▁ Hand",
+ "▁T ype",
+ "▁Ty pe",
+ "▁Typ e",
+ "▁ Type",
+ "ir l",
+ "i rl",
+ "▁F e",
+ "▁ Fe",
+ "i én",
+ "it ter",
+ "itt er",
+ "itte r",
+ "▁f ast",
+ "▁fa st",
+ "▁fas t",
+ "▁ fast",
+ "st a",
+ "s ta",
+ "▁ex cept",
+ "▁ except",
+ "ic z",
+ "i cz",
+ "▁F rench",
+ "▁en vironment",
+ "▁environ ment",
+ "▁ environment",
+ "▁con se",
+ "▁cons e",
+ "у р",
+ "о го",
+ "▁necess ary",
+ "tar get",
+ "t arget",
+ "▁re ading",
+ "▁read ing",
+ "▁ reading",
+ "ho me",
+ "hom e",
+ "h ome",
+ "ze ich",
+ "▁e qual",
+ "▁equ al",
+ "▁eq ual",
+ "▁ equal",
+ "▁pi ù",
+ "▁p rem",
+ "▁pr em",
+ "▁pre m",
+ "▁diff icult",
+ "▁u nit",
+ "▁un it",
+ "▁ unit",
+ "▁re place",
+ "▁rep lace",
+ "▁repla ce",
+ "▁ replace",
+ "▁he art",
+ "▁hear t",
+ "▁ heart",
+ "▁t alk",
+ "▁tal k",
+ "A M",
+ "▁R E",
+ "▁ RE",
+ "▁P erson",
+ "▁Per son",
+ "▁Pers on",
+ "▁ Person",
+ "end ency",
+ "enden cy",
+ "▁i mm",
+ "▁im m",
+ "▁ imm",
+ "▁h uman",
+ "▁hum an",
+ "▁hu man",
+ "▁ human",
+ "d n",
+ "▁K ir",
+ "▁Ki r",
+ "▁A ut",
+ "▁Au t",
+ "▁ Aut",
+ "kn own",
+ "know n",
+ "k nown",
+ "▁fr equ",
+ "▁fre qu",
+ "sys tem",
+ "s ystem",
+ "ла в",
+ "▁S z",
+ "▁G al",
+ "▁Ga l",
+ "но е",
+ "sel ves",
+ "right arrow",
+ "r ightarrow",
+ "▁С а",
+ "▁ Са",
+ "=\" @",
+ "▁build ing",
+ "▁ building",
+ "im port",
+ "imp ort",
+ "▁f am",
+ "▁fa m",
+ "▁de lete",
+ "▁del ete",
+ "▁delet e",
+ "▁ delete",
+ "air e",
+ "ai re",
+ "a ire",
+ "ma ry",
+ "mar y",
+ "m ary",
+ "▁f und",
+ "▁fun d",
+ "▁fu nd",
+ "▁ fund",
+ "▁part icip",
+ "▁partic ip",
+ "▁parti cip",
+ "▁partici p",
+ "▁s yn",
+ "▁sy n",
+ "▁ syn",
+ "si n",
+ "s in",
+ "▁l ower",
+ "▁lo wer",
+ "▁low er",
+ "▁ lower",
+ "▁z ero",
+ "▁ze ro",
+ "▁ zero",
+ "▁s ec",
+ "▁se c",
+ "▁ sec",
+ "▁f ra",
+ "▁fr a",
+ "▁ fra",
+ "Po int",
+ "P oint",
+ "▁fa iled",
+ "▁fail ed",
+ "▁ failed",
+ "ien to",
+ "ient o",
+ "i ento",
+ "cu p",
+ "c up",
+ "▁s low",
+ "▁sl ow",
+ "▁slo w",
+ "▁ slow",
+ "▁n ation",
+ "▁na tion",
+ "▁nat ion",
+ "äh r",
+ "ä hr",
+ "▁in fo",
+ "▁inf o",
+ "▁ info",
+ "▁P ublic",
+ "▁Pub lic",
+ "▁Pu blic",
+ "▁ Public",
+ "▁de cla",
+ "▁dec la",
+ "▁decl a",
+ "▁Т а",
+ "▁s old",
+ "▁so ld",
+ "▁sol d",
+ "▁R em",
+ "▁Re m",
+ "▁ Rem",
+ "▁Ph il",
+ "ст ра",
+ "стр а",
+ "с тра",
+ "▁me hr",
+ "▁W ork",
+ "▁Wor k",
+ "▁ Work",
+ "▁N ord",
+ "▁No rd",
+ "▁Nor d",
+ "▁f ait",
+ "▁fa it",
+ "▁g ew",
+ "▁ge w",
+ "▁ gew",
+ "print ln",
+ "ob ile",
+ "obil e",
+ "obi le",
+ "▁K on",
+ "▁Ko n",
+ "▁ass ume",
+ "▁assum e",
+ "land s",
+ "lan ds",
+ "l ands",
+ "▁a mount",
+ "▁am ount",
+ "▁ amount",
+ "▁P ress",
+ "▁Pr ess",
+ "▁Pres s",
+ "▁Pre ss",
+ "▁ Press",
+ "ý ch",
+ "▁ma xim",
+ "▁max im",
+ "▁ maxim",
+ "▁Ch ampion",
+ "▁Champ ion",
+ "li brary",
+ "l ibrary",
+ "a ñ",
+ "▁W al",
+ "▁Wa l",
+ "Com m",
+ "Co mm",
+ "C omm",
+ "] ]",
+ "▁z w",
+ "▁ zw",
+ "▁so cial",
+ "▁soci al",
+ "▁soc ial",
+ "▁ social",
+ "L I",
+ "▁Un ter",
+ "vo r",
+ "v or",
+ "Del ta",
+ "D elta",
+ "em ail",
+ "ema il",
+ "e mail",
+ "ra int",
+ "rain t",
+ "rai nt",
+ "r aint",
+ "on i",
+ "o ni",
+ "▁a lt",
+ "▁al t",
+ "▁ alt",
+ "▁n é",
+ "▁ né",
+ "ци я",
+ "ograph y",
+ "▁mention ed",
+ "▁ment ioned",
+ "▁< =",
+ "▁ <=",
+ "▁c ette",
+ "▁ce tte",
+ "▁cet te",
+ "▁current ly",
+ "▁curr ently",
+ "va re",
+ "var e",
+ "v are",
+ "iz ing",
+ "izi ng",
+ "izin g",
+ "i zing",
+ "▁D ef",
+ "▁De f",
+ "▁ Def",
+ "ic ol",
+ "ico l",
+ "i col",
+ "ün d",
+ "ü nd",
+ "▁config uration",
+ "▁configur ation",
+ "▁ configuration",
+ "est ig",
+ "esti g",
+ "II I",
+ "I II",
+ "la m",
+ "l am",
+ "i ère",
+ "▁E ar",
+ "▁t u",
+ "▁ tu",
+ "En t",
+ "E nt",
+ "▁U sing",
+ "▁Us ing",
+ "▁ Using",
+ "▁ко м",
+ "▁к ом",
+ "▁ ком",
+ "ci e",
+ "c ie",
+ "▁pro of",
+ "▁ proof",
+ "▁in vol",
+ "▁inv ol",
+ "▁H istory",
+ "▁Histor y",
+ "▁Hi story",
+ "▁Hist ory",
+ "▁ History",
+ "> <",
+ "▁A ND",
+ "▁AN D",
+ "▁ AND",
+ "av y",
+ "a vy",
+ "▁rel ations",
+ "▁relation s",
+ "$ {",
+ "▁com es",
+ "▁co mes",
+ "▁come s",
+ "▁ comes",
+ "▁d irection",
+ "▁direct ion",
+ "▁dire ction",
+ "▁dir ection",
+ "▁ direction",
+ "▁J une",
+ "▁Ju ne",
+ "▁Jun e",
+ "▁W ay",
+ "▁Wa y",
+ "Com ponent",
+ "ec h",
+ "e ch",
+ "▁P eter",
+ "▁Pe ter",
+ "▁Pet er",
+ "▁ Peter",
+ "s g",
+ "▁s tra",
+ "▁st ra",
+ "▁str a",
+ "▁ stra",
+ "uc t",
+ "u ct",
+ "▁im plementation",
+ "▁implement ation",
+ "▁ implementation",
+ "att le",
+ "▁c z",
+ "▁ cz",
+ "pl ot",
+ "p lot",
+ "▁play ed",
+ "▁pla yed",
+ "\"> ",
+ "\">< /",
+ "\" >",
+ "▁f ive",
+ "▁fi ve",
+ "▁ five",
+ "▁c oll",
+ "▁col l",
+ "▁co ll",
+ "▁ coll",
+ "▁Char les",
+ "Tr a",
+ "T ra",
+ "▁s uo",
+ "▁su o",
+ "file s",
+ "fil es",
+ "fi les",
+ "f iles",
+ "en tes",
+ "ent es",
+ "ente s",
+ "res ponse",
+ "respons e",
+ "H ow",
+ "▁S oci",
+ "▁So ci",
+ "▁Soc i",
+ "▁i gn",
+ "▁ig n",
+ "▁ ign",
+ "▁l ed",
+ "▁le d",
+ "▁ led",
+ "▁G erman",
+ "▁Ger man",
+ "▁Germ an",
+ "ud o",
+ "u do",
+ "▁D u",
+ "▁t im",
+ "▁ti m",
+ "▁ tim",
+ "ount er",
+ "oun ter",
+ "o unter",
+ "▁att ack",
+ "ur i",
+ "u ri",
+ "▁а р",
+ "▁ ар",
+ "es se",
+ "ess e",
+ "iv il",
+ "ivi l",
+ "i vil",
+ "▁J u",
+ "▁v el",
+ "▁ve l",
+ "▁ vel",
+ "mat rix",
+ "▁M at",
+ "▁Ma t",
+ "▁ Mat",
+ "gi o",
+ "g io",
+ "▁Ze it",
+ "VE R",
+ "V ER",
+ "ha s",
+ "h as",
+ "Con nection",
+ "Connect ion",
+ "Conne ction",
+ "▁i hr",
+ "▁ih r",
+ "▁att ribute",
+ "▁ attribute",
+ "▁dis cuss",
+ "▁disc uss",
+ "▁do main",
+ "▁dom ain",
+ "▁ domain",
+ "bin d",
+ "bi nd",
+ "b ind",
+ "▁S ec",
+ "▁Se c",
+ "▁ Sec",
+ "ri k",
+ "r ik",
+ "cl ose",
+ "clos e",
+ "clo se",
+ "c lose",
+ "gi n",
+ "g in",
+ "▁l ove",
+ "▁lo ve",
+ "▁lov e",
+ "an to",
+ "ant o",
+ "ge nt",
+ "gen t",
+ "g ent",
+ "ab a",
+ "a ba",
+ "jan go",
+ "j ango",
+ "b i",
+ "▁ob ser",
+ "▁obs er",
+ "it ting",
+ "itt ing",
+ "▁р у",
+ "▁ ру",
+ "} =",
+ "ag en",
+ "age n",
+ "a gen",
+ "B C",
+ "so me",
+ "som e",
+ "s ome",
+ "▁B u",
+ "▁ Bu",
+ "▁s oci",
+ "▁so ci",
+ "▁soc i",
+ "▁ soci",
+ "▁ind ividual",
+ "▁individ ual",
+ "▁de al",
+ "▁out side",
+ "ri o",
+ "r io",
+ "Ex ec",
+ "an did",
+ "and id",
+ "▁bus iness",
+ "▁t empor",
+ "▁tem por",
+ "▁temp or",
+ "▁tempo r",
+ "▁T ur",
+ "▁Tu r",
+ "▁( !",
+ "▁ (!",
+ "ri ter",
+ "rit er",
+ "rite r",
+ "r iter",
+ "▁go ogle",
+ "▁goog le",
+ "▁ google",
+ "] :",
+ "it te",
+ "itt e",
+ "i tte",
+ "x i",
+ "▁П а",
+ "ho l",
+ "h ol",
+ "н ь",
+ "ri ng",
+ "rin g",
+ "r ing",
+ "▁s ul",
+ "▁su l",
+ "но сти",
+ "ност и",
+ "нос ти",
+ "_ .",
+ "ga r",
+ "g ar",
+ "T ask",
+ "▁C heck",
+ "▁Che ck",
+ "▁ Check",
+ "▁mod ern",
+ "▁mo dern",
+ "▁mode rn",
+ "▁moder n",
+ "▁w in",
+ "▁ win",
+ "us ter",
+ "ust er",
+ "u ster",
+ "ha n",
+ "h an",
+ "form ation",
+ "format ion",
+ "vo id",
+ "v oid",
+ "▁ф и",
+ "▁ фи",
+ "▁use ful",
+ "▁Eng land",
+ "lo s",
+ "l os",
+ "et ime",
+ "eti me",
+ "e time",
+ "eu r",
+ "e ur",
+ "▁un ique",
+ "▁uniqu e",
+ "▁ unique",
+ "▁ка к",
+ "yi ng",
+ "y ing",
+ "ob j",
+ "ui d",
+ "u id",
+ "▁w indows",
+ "▁window s",
+ "▁wind ows",
+ "▁ windows",
+ "▁d istance",
+ "▁dist ance",
+ "▁ distance",
+ "▁nom bre",
+ "▁nombr e",
+ "і я",
+ "oc us",
+ "o cus",
+ "ah n",
+ "a hn",
+ "ier te",
+ "iert e",
+ "i erte",
+ "▁d ar",
+ "▁da r",
+ "▁ dar",
+ "S I",
+ "lo ng",
+ "lon g",
+ "l ong",
+ "as ta",
+ "ast a",
+ "a sta",
+ "iv en",
+ "ive n",
+ "i ven",
+ "▁t old",
+ "▁to ld",
+ "▁G ru",
+ "▁Gr u",
+ "fo o",
+ "f oo",
+ "▁c alling",
+ "▁cal ling",
+ "▁call ing",
+ "iem bre",
+ "i embre",
+ "▁f uture",
+ "▁fut ure",
+ "pr ès",
+ "p rès",
+ "le ep",
+ "lee p",
+ "avig ation",
+ "PO ST",
+ "POS T",
+ "P OST",
+ "▁des cribed",
+ "▁descri bed",
+ "▁describe d",
+ "▁n och",
+ "▁no ch",
+ "un it",
+ "uni t",
+ "u nit",
+ "al len",
+ "all en",
+ "alle n",
+ "▁b ranch",
+ "▁br anch",
+ "▁bran ch",
+ "▁ branch",
+ "f a",
+ "▁f ill",
+ "▁fil l",
+ "▁fi ll",
+ "▁ fill",
+ "▁ob j",
+ "▁ obj",
+ "▁t ree",
+ "▁tr ee",
+ "▁tre e",
+ "▁ tree",
+ "▁wur den",
+ "▁wurde n",
+ "▁L iter",
+ "▁Li ter",
+ "▁Lit er",
+ "▁ Liter",
+ "ro t",
+ "r ot",
+ "sp lit",
+ "spl it",
+ "s plit",
+ "em ein",
+ "eme in",
+ "mod ule",
+ "C A",
+ "▁oper ator",
+ "▁opera tor",
+ "▁ operator",
+ "▁w rote",
+ "▁wr ote",
+ "▁J ack",
+ "▁Jac k",
+ "▁Ja ck",
+ "▁ Jack",
+ "olog ie",
+ "olo gie",
+ "▁A nt",
+ "▁An t",
+ "▁ Ant",
+ "те р",
+ "т ер",
+ "st ream",
+ "stre am",
+ "▁Q ue",
+ "▁Qu e",
+ "▁ Que",
+ "eps ilon",
+ "e psilon",
+ "no n",
+ "n on",
+ "st ein",
+ "ste in",
+ "▁s impl",
+ "▁sim pl",
+ "▁simp l",
+ "pu b",
+ "p ub",
+ "▁J uly",
+ "▁Jul y",
+ "▁Ju ly",
+ "▁n ature",
+ "▁natur e",
+ "▁nat ure",
+ "▁D atabase",
+ "▁Data base",
+ "▁Dat abase",
+ "▁ Database",
+ "ó l",
+ "ни м",
+ "н им",
+ "▁V I",
+ "▁ VI",
+ "êt re",
+ "ê tre",
+ "il es",
+ "ile s",
+ "i les",
+ "▁w el",
+ "▁we l",
+ "▁ wel",
+ "') ,",
+ "' ),",
+ "▁m ut",
+ "▁mu t",
+ "▁ mut",
+ "lo cation",
+ "loc ation",
+ "l ocation",
+ "▁there fore",
+ "el li",
+ "ell i",
+ "▁ І",
+ "n é",
+ "▁а в",
+ "led ge",
+ "l edge",
+ "▁con ver",
+ "▁conv er",
+ "í m",
+ "▁X V",
+ "▁ XV",
+ "vi der",
+ "vid er",
+ "v ider",
+ "▁Janu ary",
+ "▁Januar y",
+ "▁us ually",
+ "▁usual ly",
+ "▁re leased",
+ "▁release d",
+ "▁M i",
+ "He ad",
+ "H ead",
+ "il ler",
+ "ill er",
+ "ille r",
+ "▁j an",
+ "▁ja n",
+ "▁ jan",
+ "▁l etter",
+ "▁let ter",
+ "▁lett er",
+ "▁ letter",
+ "pr odu",
+ "pro du",
+ "prod u",
+ "p rodu",
+ "r d",
+ "▁C am",
+ "▁Ca m",
+ "▁ Cam",
+ ", '",
+ "▁ Ц",
+ "▁p ush",
+ "▁pu sh",
+ "▁ push",
+ "up date",
+ "▁may be",
+ "▁ maybe",
+ "H ttp",
+ "@ \"",
+ "ме р",
+ "м ер",
+ "ser vice",
+ "serv ice",
+ "par se",
+ "p arse",
+ "▁d ass",
+ "▁da ss",
+ "▁das s",
+ "ê n",
+ ") \"",
+ "mo re",
+ "mor e",
+ "m ore",
+ "/ *",
+ "▁m as",
+ "▁ma s",
+ "▁ mas",
+ "▁like ly",
+ "▁lik ely",
+ "▁ likely",
+ "▁m aterial",
+ "▁mate rial",
+ "▁mater ial",
+ "▁ material",
+ "▁[ [",
+ "▁ [[",
+ "▁long er",
+ "▁lon ger",
+ "ba l",
+ "b al",
+ "▁Arch iv",
+ "ig t",
+ "i gt",
+ "▁e gy",
+ "▁eg y",
+ "▁ egy",
+ "id ge",
+ "ig u",
+ "i gu",
+ "con f",
+ "▁in c",
+ "▁i nc",
+ "▁ inc",
+ "cons ulté",
+ "▁m ai",
+ "▁ma i",
+ "▁ mai",
+ "W ork",
+ "▁г ра",
+ "▁ гра",
+ "▁Oct ober",
+ "▁g lobal",
+ "▁glob al",
+ "▁glo bal",
+ "▁ global",
+ "▁s el",
+ "▁se l",
+ "▁ sel",
+ "▁m unicip",
+ "▁vi ol",
+ "▁vio l",
+ "▁Do es",
+ "▁ Does",
+ "▁\\ [",
+ "ско м",
+ "ск ом",
+ "с ком",
+ "▁com pos",
+ "▁comp os",
+ "▁ compos",
+ "б ря",
+ "в я",
+ "▁resp ons",
+ "▁ respons",
+ "▁consider ed",
+ "▁consid ered",
+ "▁J apan",
+ "▁Jap an",
+ "▁Ja pan",
+ "pe s",
+ "p es",
+ "os to",
+ "ost o",
+ "o sto",
+ "▁mil it",
+ "▁mi lit",
+ "S P",
+ "с ы",
+ "at tr",
+ "att r",
+ "ci l",
+ "c il",
+ "irect ory",
+ "av ing",
+ "avi ng",
+ "a ving",
+ "▁D el",
+ "▁De l",
+ "▁ Del",
+ "▁pr event",
+ "▁pre vent",
+ "▁prev ent",
+ "▁ prevent",
+ "id ade",
+ "ida de",
+ "idad e",
+ "i dade",
+ "gi t",
+ "g it",
+ "if orm",
+ "i form",
+ "ou ter",
+ "out er",
+ "oute r",
+ "o uter",
+ "in ct",
+ "inc t",
+ "le vel",
+ "lev el",
+ "at ever",
+ "ate ver",
+ "▁re pe",
+ "▁rep e",
+ "▁e xc",
+ "▁ex c",
+ "да р",
+ "д ар",
+ "St yle",
+ "▁Th omas",
+ "▁Thom as",
+ "el ine",
+ "eli ne",
+ "elin e",
+ "e line",
+ "▁ ж",
+ "un time",
+ "unt ime",
+ "▁l arg",
+ "▁la rg",
+ "▁lar g",
+ "▁ larg",
+ "Tr ue",
+ ". *",
+ "cre en",
+ "cr een",
+ "c reen",
+ "yle s",
+ "yl es",
+ "y les",
+ "▁trans l",
+ "▁tran sl",
+ "▁С о",
+ "ens ions",
+ "ension s",
+ "ä l",
+ "is se",
+ "iss e",
+ "▁v olt",
+ "▁vo lt",
+ "▁vol t",
+ "ci ally",
+ "cial ly",
+ "ni k",
+ "n ik",
+ ". ]",
+ "▁St adt",
+ "▁Sta dt",
+ "▁Stad t",
+ "м ы",
+ "fil l",
+ "fi ll",
+ "f ill",
+ "lo v",
+ "l ov",
+ "▁\" /",
+ "▁ \"/",
+ "S p",
+ "▁A ir",
+ "Cal l",
+ "Ca ll",
+ "C all",
+ "▁n ur",
+ "▁nu r",
+ "Che ck",
+ "C heck",
+ "ien ce",
+ "i ence",
+ "ef ined",
+ "▁в ре",
+ "ł o",
+ "d z",
+ "▁о р",
+ "▁ ор",
+ "ik er",
+ "ike r",
+ "i ker",
+ "ow a",
+ "o wa",
+ "ови ч",
+ "о вич",
+ "r é",
+ "O L",
+ "▁li near",
+ "▁line ar",
+ "▁lin ear",
+ "▁linea r",
+ "▁ linear",
+ "▁ex port",
+ "▁exp ort",
+ "▁ export",
+ "ah r",
+ "a hr",
+ "ic ial",
+ "ici al",
+ "icia l",
+ "i cial",
+ "Re p",
+ "R ep",
+ "▁n atural",
+ "▁natur al",
+ "▁nat ural",
+ "▁ natural",
+ "▁c op",
+ "▁co p",
+ "▁ cop",
+ "▁} )",
+ "▁ })",
+ "ç ões",
+ "z z",
+ "Wh at",
+ "W hat",
+ "▁H ouse",
+ "▁Ho use",
+ "▁Hou se",
+ "Re f",
+ "R ef",
+ "in ger",
+ "ing er",
+ "inge r",
+ "▁t aking",
+ "▁tak ing",
+ "▁ta king",
+ "n ě",
+ "▁Ein z",
+ "▁d am",
+ "▁da m",
+ "▁ dam",
+ "▁iss ues",
+ "▁issue s",
+ "▁issu es",
+ "▁ issues",
+ "Bu ilder",
+ "Build er",
+ "ed it",
+ "edi t",
+ "e dit",
+ "▁p rz",
+ "▁pr z",
+ "pass word",
+ "Ge ner",
+ "Gen er",
+ "G ener",
+ "ri m",
+ "r im",
+ "▁p arts",
+ "▁par ts",
+ "▁part s",
+ "▁ parts",
+ "-- -",
+ "- --",
+ "ig inal",
+ "igin al",
+ "igi nal",
+ "▁S ci",
+ "▁Sc i",
+ "▁m other",
+ "▁mo ther",
+ "▁mot her",
+ "▁moth er",
+ "re a",
+ "r ea",
+ "▁cont ainer",
+ "▁contain er",
+ "▁ container",
+ "д я",
+ "▁I P",
+ "▁ IP",
+ "▁n one",
+ "▁no ne",
+ "▁non e",
+ "▁ none",
+ "▁follow ed",
+ "▁p le",
+ "▁pl e",
+ "▁ ple",
+ "▁me asure",
+ "▁meas ure",
+ "▁ measure",
+ "▁t out",
+ "▁to ut",
+ "▁tou t",
+ "▁ tout",
+ "Ex t",
+ "E xt",
+ "▁T V",
+ "▁ TV",
+ "▁ex plain",
+ "▁exp lain",
+ "▁expla in",
+ "▁expl ain",
+ "▁p aper",
+ "▁pa per",
+ "▁pap er",
+ "▁ paper",
+ "ст і",
+ "с ті",
+ "w s",
+ "W ik",
+ "▁m m",
+ "▁ mm",
+ "▁N orm",
+ "▁No rm",
+ "▁Nor m",
+ "▁Ser ver",
+ "▁Serv er",
+ "▁ Server",
+ "fo nt",
+ "fon t",
+ "f ont",
+ "ec ause",
+ "eca use",
+ "T R",
+ "▁б и",
+ "▁ би",
+ "L a",
+ "▁e ns",
+ "▁en s",
+ "▁ ens",
+ "▁re tr",
+ "▁r etr",
+ "▁ret r",
+ "▁S il",
+ "▁Si l",
+ "▁ Sil",
+ "▁se quence",
+ "▁sequ ence",
+ "▁ sequence",
+ "ar c",
+ "a rc",
+ "I V",
+ "z á",
+ "▁And roid",
+ "▁ Android",
+ "▁S uper",
+ "▁Su per",
+ "▁Sup er",
+ "▁ Super",
+ "▁r oz",
+ "▁ro z",
+ "▁ roz",
+ "ov ie",
+ "ovi e",
+ "o vie",
+ "O m",
+ "▁W ell",
+ "▁We ll",
+ "▁Wel l",
+ "▁ Well",
+ "ma ke",
+ "m ake",
+ "or ph",
+ "orp h",
+ "▁J er",
+ "▁Je r",
+ "▁R os",
+ "▁Ro s",
+ "re ference",
+ "refer ence",
+ "▁fe atures",
+ "▁feature s",
+ "▁ features",
+ "▁G er",
+ "▁Ge r",
+ "▁L eg",
+ "▁Le g",
+ "▁ Leg",
+ "▁l ate",
+ "▁la te",
+ "▁lat e",
+ "▁ late",
+ "▁add itional",
+ "▁addition al",
+ "▁f lo",
+ "▁fl o",
+ "▁е го",
+ "▁ его",
+ "▁alg orithm",
+ "▁ algorithm",
+ "B A",
+ "ka r",
+ "k ar",
+ "I P",
+ "]) ;",
+ "] );",
+ "▁app ears",
+ "▁appear s",
+ "▁appe ars",
+ "y w",
+ "▁t emp",
+ "▁te mp",
+ "▁tem p",
+ "▁ temp",
+ "▁aus si",
+ "met hod",
+ "m ethod",
+ "▁p et",
+ "▁pe t",
+ "▁ pet",
+ "st rap",
+ "str ap",
+ "stra p",
+ "ar ning",
+ "arn ing",
+ "▁c ut",
+ "▁cu t",
+ "▁ cut",
+ "▁S a",
+ "▁ Sa",
+ "▁t rack",
+ "▁tr ack",
+ "▁tra ck",
+ "▁trac k",
+ "▁ track",
+ "▁emp loy",
+ "▁in de",
+ "▁i nde",
+ "▁ind e",
+ "▁ inde",
+ "ra v",
+ "r av",
+ "▁gener ate",
+ "▁gene rate",
+ "▁ generate",
+ "be s",
+ "b es",
+ "ar ts",
+ "art s",
+ "St atus",
+ "Stat us",
+ "ug e",
+ "u ge",
+ "al is",
+ "ali s",
+ "a lis",
+ "▁over ride",
+ "▁overrid e",
+ "▁ override",
+ "▁f i",
+ "▁ fi",
+ "▁l ost",
+ "▁lo st",
+ "▁los t",
+ "▁ lost",
+ "ot ed",
+ "ote d",
+ "o ted",
+ "▁r oom",
+ "▁ro om",
+ "▁ room",
+ "▁c alls",
+ "▁cal ls",
+ "▁call s",
+ "▁cons ist",
+ "ре н",
+ "р ен",
+ "▁vill age",
+ "▁vil lage",
+ "▁villa ge",
+ "dis t",
+ "di st",
+ "d ist",
+ "▁te chn",
+ "▁tec hn",
+ "▁ techn",
+ "en za",
+ "enz a",
+ "▁ро з",
+ "▁р оз",
+ "▁ роз",
+ "▁C atalog",
+ "▁Cat alog",
+ "▁Catal og",
+ "▁be com",
+ "▁bec om",
+ "ro ws",
+ "row s",
+ "r ows",
+ "▁N el",
+ "▁Ne l",
+ "com ple",
+ "comp le",
+ "▁pr emi",
+ "▁pre mi",
+ "▁prem i",
+ "▁r ot",
+ "▁ro t",
+ "▁ rot",
+ "▁Web links",
+ "▁foot ball",
+ "▁ football",
+ "▁com par",
+ "▁comp ar",
+ "▁l ive",
+ "▁li ve",
+ "▁liv e",
+ "▁ live",
+ "ки х",
+ "к их",
+ "▁equ ival",
+ "ca pe",
+ "cap e",
+ "c ape",
+ "▁G en",
+ "▁Ge n",
+ "▁ Gen",
+ "nd er",
+ "nde r",
+ "n der",
+ "▁V is",
+ "▁Vi s",
+ "▁ Vis",
+ "▁be hind",
+ "▁beh ind",
+ "ge rs",
+ "ger s",
+ "g ers",
+ "vo ke",
+ "v oke",
+ "▁m edia",
+ "▁me dia",
+ "▁med ia",
+ "▁medi a",
+ "▁ media",
+ "E X",
+ "th at",
+ "tha t",
+ "t hat",
+ "▁s ono",
+ "▁so no",
+ "▁son o",
+ "▁ sono",
+ "▁my sql",
+ "▁mysq l",
+ "▁ mysql",
+ "e v",
+ "▁r ule",
+ "▁ru le",
+ "▁ rule",
+ "до в",
+ "д ов",
+ "ac c",
+ "a cc",
+ "▁W HERE",
+ "▁WH ERE",
+ "▁ WHERE",
+ "ен е",
+ "е не",
+ "Gr id",
+ "G rid",
+ "▁j ul",
+ "▁ju l",
+ "▁m ort",
+ "▁mo rt",
+ "▁mor t",
+ "▁ mort",
+ "▁gener ated",
+ "▁generate d",
+ "▁ generated",
+ "en cia",
+ "enc ia",
+ "enci a",
+ "ac ter",
+ "act er",
+ "cl ud",
+ "▁s cen",
+ "▁sc en",
+ "▁cl osed",
+ "▁close d",
+ "▁clos ed",
+ "▁clo sed",
+ "▁ closed",
+ "▁Mich ael",
+ "▁ Michael",
+ "▁m ount",
+ "▁mo unt",
+ "▁mou nt",
+ "▁ mount",
+ ")$ ,",
+ ") $,",
+ "▁d rop",
+ "▁dr op",
+ "▁dro p",
+ "▁ drop",
+ "▁com bin",
+ "▁comb in",
+ "to col",
+ "▁go es",
+ "▁g eb",
+ "▁ge b",
+ "▁ geb",
+ "M D",
+ "▁An ton",
+ "▁Ant on",
+ "▁Anto n",
+ "▁$ (\"",
+ "▁$( \"",
+ "Te m",
+ "T em",
+ "▁c a",
+ "▁ ca",
+ "▁in stru",
+ "▁inst ru",
+ "ed s",
+ "e ds",
+ "▁t ool",
+ "▁to ol",
+ "▁too l",
+ "▁ tool",
+ "my s",
+ "m ys",
+ "▁r oute",
+ "▁ro ute",
+ "▁rout e",
+ "▁rou te",
+ "▁ route",
+ "\") )",
+ "\" ))",
+ "пр е",
+ "п ре",
+ "▁f loat",
+ "▁flo at",
+ "▁ float",
+ "▁service s",
+ "▁serv ices",
+ "▁servi ces",
+ "▁ services",
+ "▁ч и",
+ "▁ чи",
+ "к і",
+ "emb ly",
+ "embl y",
+ "ak er",
+ "ake r",
+ "a ker",
+ "▁S on",
+ "▁So n",
+ "▁M ath",
+ "▁Ma th",
+ "▁Mat h",
+ "▁ Math",
+ "as se",
+ "ass e",
+ "ous ly",
+ "lic ations",
+ "lication s",
+ "▁r u",
+ "▁ ru",
+ "▁щ о",
+ "▁ що",
+ "▁Con st",
+ "▁Cons t",
+ "▁ Const",
+ "▁im medi",
+ "▁imm edi",
+ "F O",
+ "or o",
+ "o ro",
+ "▁p roduction",
+ "▁produ ction",
+ "▁product ion",
+ "▁ production",
+ "re i",
+ "r ei",
+ "▁j query",
+ "▁ jquery",
+ "an nt",
+ "ann t",
+ "▁Wh ile",
+ "▁s n",
+ "▁ sn",
+ "▁го ди",
+ "▁год и",
+ "Form at",
+ "For mat",
+ "▁s tar",
+ "▁st ar",
+ "▁sta r",
+ "▁ star",
+ "▁S en",
+ "▁Se n",
+ "▁k o",
+ "▁ ko",
+ "NA ME",
+ "N AME",
+ "▁p rés",
+ "▁pr és",
+ "▁pré s",
+ "▁ prés",
+ "ch a",
+ "c ha",
+ "wh at",
+ "w hat",
+ "om in",
+ "omi n",
+ "o min",
+ "end ant",
+ "enda nt",
+ "h y",
+ "▁ob serv",
+ "▁obser v",
+ "▁obs erv",
+ "▁ observ",
+ "▁p refer",
+ "▁pre fer",
+ "у н",
+ "▁con structor",
+ "▁construct or",
+ "▁constru ctor",
+ "▁ constructor",
+ "b s",
+ "▁m ac",
+ "▁ma c",
+ "▁ mac",
+ "▁B re",
+ "▁Br e",
+ "▁ Bre",
+ "▁Inst it",
+ "▁Ins tit",
+ "▁st ory",
+ "▁stor y",
+ "▁sto ry",
+ "▁ story",
+ "▁s ymbol",
+ "▁sym bol",
+ "▁ symbol",
+ "el es",
+ "ele s",
+ "e les",
+ "ß e",
+ "as ing",
+ "asi ng",
+ "a sing",
+ "▁w est",
+ "▁we st",
+ "▁ west",
+ "ia ns",
+ "ian s",
+ "i ans",
+ "▁m aster",
+ "▁ma ster",
+ "▁mas ter",
+ "▁ master",
+ "е з",
+ "▁w ays",
+ "▁way s",
+ "▁wa ys",
+ "▁ ways",
+ "b m",
+ "▁p ick",
+ "▁pi ck",
+ "▁pic k",
+ "▁ pick",
+ "▁de part",
+ "▁dep art",
+ "B ack",
+ "en k",
+ "li pse",
+ "lip se",
+ "▁m ath",
+ "▁ma th",
+ "▁mat h",
+ "▁ math",
+ "▁Fran cis",
+ "▁Franc is",
+ "▁Dec ember",
+ "f s",
+ "ru m",
+ "r um",
+ "▁develop ment",
+ "▁ development",
+ "L T",
+ "er nel",
+ "ern el",
+ "erne l",
+ "▁Tr ue",
+ "▁Tru e",
+ "▁ True",
+ "▁M ore",
+ "▁Mor e",
+ "▁Mo re",
+ "▁ More",
+ "ran gle",
+ "r angle",
+ "▁cond itions",
+ "▁condition s",
+ "Option s",
+ "Opt ions",
+ "O ptions",
+ "▁g li",
+ "▁gl i",
+ "▁oper ation",
+ "▁opera tion",
+ "▁ operation",
+ "é k",
+ "ach t",
+ "ac ht",
+ "a cht",
+ "ight s",
+ "igh ts",
+ "▁m ist",
+ "▁mi st",
+ "▁mis t",
+ "an da",
+ "and a",
+ "▁ener gy",
+ "▁energ y",
+ "▁ energy",
+ "▁ж е",
+ "▁ же",
+ "▁w omen",
+ "▁wo men",
+ "ak t",
+ "a kt",
+ "▁C H",
+ "▁ CH",
+ "ge bra",
+ "geb ra",
+ "▁me et",
+ "i u",
+ "we ll",
+ "wel l",
+ "w ell",
+ "ö l",
+ "▁govern ment",
+ "▁J os",
+ "▁Jo s",
+ "ie g",
+ "i eg",
+ "▁s yntax",
+ "▁syn tax",
+ "▁ syntax",
+ "fi x",
+ "f ix",
+ "▁P et",
+ "▁Pe t",
+ "j query",
+ "▁c ard",
+ "▁car d",
+ "▁ca rd",
+ "▁ card",
+ "▁pr incipal",
+ "▁princi pal",
+ "▁princip al",
+ "▁d ru",
+ "▁dr u",
+ "▁ dru",
+ "▁ter rit",
+ "▁п ов",
+ "▁по в",
+ "▁ пов",
+ "▁S S",
+ "▁ SS",
+ "ри и",
+ "tr es",
+ "tre s",
+ "t res",
+ "ag ne",
+ "agn e",
+ "ly ing",
+ "l ying",
+ "til de",
+ "t ilde",
+ "ber n",
+ "be rn",
+ "b ern",
+ "en ter",
+ "ent er",
+ "ente r",
+ "Pe r",
+ "P er",
+ "▁s omet",
+ "▁so met",
+ "▁some t",
+ "▁som et",
+ "Lo ad",
+ "li ce",
+ "lic e",
+ "l ice",
+ "▁s ous",
+ "▁so us",
+ "▁sou s",
+ "▁Lo uis",
+ "▁Lou is",
+ "▁ Louis",
+ "▁log ic",
+ "▁ logic",
+ "▁O ther",
+ "▁Ot her",
+ "▁ Other",
+ "▁c ir",
+ "▁ci r",
+ "▁ cir",
+ "é v",
+ "ch ron",
+ "chr on",
+ "▁h an",
+ "▁ha n",
+ "▁ han",
+ "▁m argin",
+ "▁mar gin",
+ "▁marg in",
+ "▁ margin",
+ "W indow",
+ "ère s",
+ "è res",
+ "ny ch",
+ "n ych",
+ "pu sh",
+ "pus h",
+ "p ush",
+ "bol ds",
+ "bold s",
+ "b olds",
+ "▁l ayout",
+ "▁lay out",
+ "▁ layout",
+ "▁[ `",
+ "Ch ar",
+ "C har",
+ "▁C ap",
+ "▁Ca p",
+ "▁ Cap",
+ "bolds ymbol",
+ "bold symbol",
+ "▁R oman",
+ "▁Ro man",
+ "▁Rom an",
+ "▁Roma n",
+ "▁M ax",
+ "▁Ma x",
+ "▁ Max",
+ ": (",
+ "▁C ode",
+ "▁Co de",
+ "▁ Code",
+ "is ing",
+ "isi ng",
+ "i sing",
+ "▁st ates",
+ "▁stat es",
+ "▁state s",
+ "▁sta tes",
+ "▁ states",
+ "▁ex isting",
+ "▁exist ing",
+ "su pport",
+ "sup port",
+ "supp ort",
+ "▁re search",
+ "▁res earch",
+ "lic ate",
+ "lica te",
+ "l icate",
+ "va ri",
+ "var i",
+ "v ari",
+ "▁b ij",
+ "▁bi j",
+ "▁ bij",
+ "▁a ppe",
+ "▁app e",
+ "▁ap pe",
+ "▁ appe",
+ "▁happ ens",
+ "▁happen s",
+ "\\ \"",
+ "▁conc ern",
+ "▁conce rn",
+ "we st",
+ "w est",
+ "▁sa ying",
+ "▁say ing",
+ "pi d",
+ "p id",
+ "▁rec ogn",
+ "▁ recogn",
+ "▁H et",
+ "▁He t",
+ "Ch ild",
+ "▁c s",
+ "▁ cs",
+ "\\ ,",
+ "▁c lean",
+ "▁cle an",
+ "▁ clean",
+ "le ctions",
+ "lect ions",
+ "lection s",
+ "ac cess",
+ "acc ess",
+ "a ccess",
+ "в у",
+ "пр о",
+ "п ро",
+ "ac ity",
+ "aci ty",
+ "a city",
+ "▁O ff",
+ "▁Of f",
+ "▁ Off",
+ "▁eas ily",
+ "è que",
+ "▁j ako",
+ "▁ja ko",
+ "▁jak o",
+ "▁i z",
+ "▁ iz",
+ "▁H a",
+ "▁ Ha",
+ "▁D et",
+ "▁De t",
+ "▁ Det",
+ "▁for ma",
+ "▁form a",
+ "sch e",
+ "sc he",
+ "s che",
+ "swer s",
+ "sw ers",
+ "s wers",
+ "▁of fer",
+ "▁off er",
+ "qu ired",
+ "quire d",
+ "qui red",
+ "User s",
+ "Use rs",
+ "Us ers",
+ "U sers",
+ "▁su bst",
+ "▁sub st",
+ "▁subs t",
+ "▁ subst",
+ "> (",
+ "▁g round",
+ "▁gr ound",
+ "▁gro und",
+ "▁ ground",
+ "un n",
+ "u nn",
+ "ro d",
+ "r od",
+ "sp e",
+ "s pe",
+ "urs or",
+ "▁le ave",
+ "er k",
+ "▁t al",
+ "▁ta l",
+ "▁ tal",
+ "▁b ottom",
+ "▁bot tom",
+ "▁bott om",
+ "▁ bottom",
+ "I O",
+ "▁pop ular",
+ "▁popula r",
+ "▁popul ar",
+ "ig o",
+ "i go",
+ "▁T ime",
+ "▁Tim e",
+ "▁Ti me",
+ "▁ Time",
+ "val ues",
+ "value s",
+ "valu es",
+ "▁L oc",
+ "▁Lo c",
+ "▁ Loc",
+ "▁C lub",
+ "▁Cl ub",
+ "▁an che",
+ "▁anc he",
+ "▁anch e",
+ "▁ anche",
+ "ia ł",
+ "i ał",
+ "і ї",
+ "Om ega",
+ "▁loc ated",
+ "▁locate d",
+ "▁ located",
+ "U rl",
+ "▁E sp",
+ "▁Es p",
+ "▁ Esp",
+ "л ы",
+ "ц ь",
+ "ul ate",
+ "ula te",
+ "u late",
+ "▁j oin",
+ "▁jo in",
+ "▁ join",
+ "av es",
+ "ave s",
+ "a ves",
+ "ve t",
+ "v et",
+ "li o",
+ "l io",
+ "re move",
+ "rem ove",
+ "▁t oken",
+ "▁to ken",
+ "▁ token",
+ "▁op tim",
+ "▁opt im",
+ "▁ optim",
+ "▁c laim",
+ "▁cla im",
+ "olog ical",
+ "▁c ss",
+ "▁cs s",
+ "▁ css",
+ "▁al though",
+ "▁ although",
+ "▁p riv",
+ "▁pr iv",
+ "▁pri v",
+ "▁ priv",
+ "▁B a",
+ "ü l",
+ "entic ation",
+ "enti cation",
+ "▁v en",
+ "▁ve n",
+ "▁ ven",
+ "Ser ver",
+ "Serv er",
+ "▁C ong",
+ "▁Con g",
+ "▁Co ng",
+ "NE T",
+ "N ET",
+ "CO N",
+ "C ON",
+ "d t",
+ "per ties",
+ "pert ies",
+ "▁e pis",
+ "▁ep is",
+ "wik ipedia",
+ "▁eng ine",
+ "▁ engine",
+ "▁f er",
+ "▁fe r",
+ "▁ fer",
+ "get Element",
+ "▁C la",
+ "▁Cl a",
+ "▁ Cla",
+ "ř í",
+ "▁r om",
+ "▁ro m",
+ "▁ rom",
+ "var epsilon",
+ "vare psilon",
+ "▁pr ime",
+ "▁prim e",
+ "▁pri me",
+ "▁ prime",
+ "is try",
+ "ist ry",
+ "istr y",
+ "pe cted",
+ "pect ed",
+ "pec ted",
+ "p ected",
+ "or age",
+ "ora ge",
+ "o rage",
+ "▁t ouch",
+ "▁to uch",
+ "▁tou ch",
+ "▁ touch",
+ "▁[ '",
+ "▁ ['",
+ "▁d an",
+ "▁da n",
+ "▁ dan",
+ "E m",
+ "ac iones",
+ "acion es",
+ "aci ones",
+ "a ciones",
+ "Ca n",
+ "C an",
+ "▁w hom",
+ "▁wh om",
+ "▁who m",
+ "▁be havior",
+ "▁behav ior",
+ "▁str ings",
+ "▁string s",
+ "▁ strings",
+ "▁E urop",
+ "▁Euro p",
+ "▁Eu rop",
+ "▁Eur op",
+ "▁R om",
+ "▁Ro m",
+ "ci rc",
+ "cir c",
+ "c irc",
+ "▁p un",
+ "▁pu n",
+ "▁reg ister",
+ "▁ register",
+ "b untu",
+ "ra in",
+ "rai n",
+ "r ain",
+ "O b",
+ "T A",
+ "▁s ometimes",
+ "▁some times",
+ "▁somet imes",
+ "▁m ent",
+ "▁me nt",
+ "▁men t",
+ "▁ ment",
+ "▁in teger",
+ "▁inte ger",
+ "▁ integer",
+ "▁J ac",
+ "▁Ja c",
+ "▁ Jac",
+ "le gate",
+ "leg ate",
+ "ot hing",
+ "oth ing",
+ "o thing",
+ "▁s ound",
+ "▁so und",
+ "▁sou nd",
+ "▁ sound",
+ "la ces",
+ "lace s",
+ "lac es",
+ "l aces",
+ "▁Б а",
+ "r b",
+ "d i",
+ "ле ния",
+ "▁them selves",
+ "▁B lack",
+ "▁Bl ack",
+ "▁Bla ck",
+ "▁ Black",
+ "▁s ettings",
+ "▁sett ings",
+ "▁setting s",
+ "▁ settings",
+ "▁n orm",
+ "▁no rm",
+ "▁nor m",
+ "▁ norm",
+ "▁r uns",
+ "▁run s",
+ "▁ru ns",
+ "▁N OT",
+ "▁NO T",
+ "▁ NOT",
+ "K E",
+ "▁per haps",
+ "▁ Я",
+ "▁m ol",
+ "▁mo l",
+ "▁a ns",
+ "▁an s",
+ "▁ ans",
+ "at re",
+ "atr e",
+ "a tre",
+ "▁D ies",
+ "▁Die s",
+ "▁Di es",
+ "To ken",
+ "T oken",
+ "an ie",
+ "ani e",
+ "a nie",
+ "▁all owed",
+ "▁allow ed",
+ "▁allo wed",
+ "▁ allowed",
+ "R ange",
+ "▁G ro",
+ "▁Gr o",
+ "vi a",
+ "v ia",
+ "ut orial",
+ "uto rial",
+ "utor ial",
+ "ens or",
+ "enso r",
+ "est ival",
+ "esti val",
+ "); \r",
+ ") ;\r",
+ "кра ї",
+ "▁turn ed",
+ "▁tur ned",
+ "sc ope",
+ "scop e",
+ "s cope",
+ "▁b ien",
+ "▁bi en",
+ "= $",
+ "▁ext ension",
+ "▁extens ion",
+ "▁ extension",
+ "at ore",
+ "ator e",
+ "ato re",
+ "▁Р о",
+ "▁spec ify",
+ "ed u",
+ "e du",
+ "Dat os",
+ "D atos",
+ "▁st ored",
+ "▁stor ed",
+ "▁store d",
+ "▁sto red",
+ "▁p arse",
+ "▁par se",
+ "▁ parse",
+ "▁an swers",
+ "▁answer s",
+ "▁ans wers",
+ "il ls",
+ "ill s",
+ "▁he ard",
+ "▁hear d",
+ "l u",
+ "▁T HE",
+ "▁TH E",
+ "▁ THE",
+ "▁g én",
+ "▁gé n",
+ "▁f ul",
+ "▁fu l",
+ "▁ ful",
+ "e z",
+ "▁P rem",
+ "▁Pr em",
+ "▁Pre m",
+ "th en",
+ "the n",
+ "t hen",
+ "d p",
+ "сь кого",
+ "сько го",
+ "ськ ого",
+ "▁S i",
+ "▁ Si",
+ "ç o",
+ "Ed it",
+ "E dit",
+ "кі в",
+ "к ів",
+ "▁Л и",
+ "▁S ing",
+ "▁Si ng",
+ "▁Sin g",
+ "▁ Sing",
+ "▁c ateg",
+ "▁cat eg",
+ "Eq u",
+ "E qu",
+ "▁g uer",
+ "▁gu er",
+ "▁ guer",
+ "W idth",
+ "▁Christ ian",
+ "st at",
+ "sta t",
+ "s tat",
+ "W rite",
+ "▁w oman",
+ "▁wo man",
+ "wo od",
+ "w ood",
+ "V is",
+ "ра з",
+ "▁$ $\\",
+ "▁$$ \\",
+ "ode r",
+ "od er",
+ "o der",
+ "▁b ool",
+ "▁bo ol",
+ "▁ bool",
+ "▁intern ational",
+ "но сть",
+ "ност ь",
+ "нос ть",
+ "▁Rich ard",
+ "▁Ric hard",
+ "▁add ition",
+ "▁Mus ic",
+ "▁ Music",
+ "▁a ber",
+ "▁ab er",
+ "t ó",
+ "▁h ier",
+ "▁hi er",
+ "ug h",
+ "u gh",
+ "▁p ob",
+ "▁po b",
+ "▁t ables",
+ "▁table s",
+ "▁tab les",
+ "▁ta bles",
+ "▁ tables",
+ "D o",
+ "▁high er",
+ "ps i",
+ "p si",
+ "r á",
+ "▁act ive",
+ "▁activ e",
+ "▁ active",
+ "▁T able",
+ "▁Ta ble",
+ "▁Tab le",
+ "▁ Table",
+ "њ е",
+ "▁de scription",
+ "▁des cription",
+ "▁descri ption",
+ "▁descript ion",
+ "▁ description",
+ "▁se emed",
+ "▁see med",
+ "▁seem ed",
+ "ís t",
+ "í st",
+ "▁my self",
+ "▁m enu",
+ "▁me nu",
+ "▁men u",
+ "▁ menu",
+ "de l",
+ "d el",
+ "▁ ž",
+ "el e",
+ "e le",
+ "A ut",
+ "▁г ру",
+ "mu t",
+ "m ut",
+ "oo n",
+ "o on",
+ "as c",
+ "a sc",
+ "bu g",
+ "b ug",
+ "▁m oved",
+ "▁mov ed",
+ "▁mo ved",
+ "▁move d",
+ "C L",
+ "▁data s",
+ "▁dat as",
+ "▁ datas",
+ "S O",
+ "о ло",
+ "▁Ge org",
+ "▁re ach",
+ "▁r each",
+ ": \"",
+ "▁e valu",
+ "▁ev alu",
+ "▁eval u",
+ "▁ evalu",
+ "▁H el",
+ "▁He l",
+ "▁ Hel",
+ "▁R iver",
+ "▁Riv er",
+ "▁Ri ver",
+ "▁А р",
+ "▁ Ар",
+ "// //",
+ "/// /",
+ "/ ///",
+ "▁s ets",
+ "▁se ts",
+ "▁set s",
+ "▁ sets",
+ "▁O lymp",
+ "Ad apter",
+ ". '",
+ "ov ern",
+ "over n",
+ "ove rn",
+ "o vern",
+ "▁L ord",
+ "▁Lo rd",
+ "▁Lor d",
+ "! --",
+ "jp g",
+ "j pg",
+ "im ento",
+ "iment o",
+ "imen to",
+ "▁Pro f",
+ "▁Pr of",
+ "▁ach ieve",
+ "▁achiev e",
+ "} :",
+ "▁in cor",
+ "▁inc or",
+ "▁o nder",
+ "▁on der",
+ "▁onde r",
+ "▁ onder",
+ "en gl",
+ "eng l",
+ "AB LE",
+ "▁M ary",
+ "▁Mar y",
+ "▁Ma ry",
+ "▁w aren",
+ "▁war en",
+ "▁wa ren",
+ "la ge",
+ "lag e",
+ "l age",
+ "De c",
+ "D ec",
+ "анг л",
+ "en cias",
+ "enc ias",
+ "encia s",
+ "enci as",
+ "ле й",
+ "л ей",
+ "▁M achine",
+ "▁Mach ine",
+ "▁ Machine",
+ "▁А н",
+ "ud a",
+ "u da",
+ "▁ ś",
+ "▁X X",
+ "▁ XX",
+ "on ly",
+ "ле ние",
+ "▁tamb ién",
+ "ne j",
+ "n ej",
+ "▁rel ative",
+ "▁relativ e",
+ "▁ relative",
+ "▁h ours",
+ "▁ho urs",
+ "▁hour s",
+ "▁ind eed",
+ "▁inde ed",
+ "un do",
+ "und o",
+ "in gu",
+ "ing u",
+ "ar ea",
+ "are a",
+ "a rea",
+ "▁C reate",
+ "▁Cre ate",
+ "▁ Create",
+ "be it",
+ "bei t",
+ "▁rem oved",
+ "▁remove d",
+ "▁remov ed",
+ "ma ster",
+ "mas ter",
+ "maste r",
+ "m aster",
+ "ha us",
+ "h aus",
+ "▁B ern",
+ "▁Be rn",
+ "▁Ber n",
+ "▁sp eed",
+ "▁spe ed",
+ "▁ speed",
+ "▁B ay",
+ "▁Ba y",
+ "▁A tt",
+ "▁At t",
+ "▁ Att",
+ "▁N one",
+ "▁No ne",
+ "▁Non e",
+ "▁ None",
+ "app lication",
+ "ü d",
+ "▁f it",
+ "▁fi t",
+ "▁ fit",
+ "▁M aria",
+ "▁Mar ia",
+ "▁Ma ria",
+ "▁Mari a",
+ "▁n ord",
+ "▁no rd",
+ "▁nor d",
+ "▁s plit",
+ "▁sp lit",
+ "▁spl it",
+ "▁ split",
+ "▁st ru",
+ "▁str u",
+ "▁ stru",
+ "▁o fficial",
+ "▁off icial",
+ "▁offic ial",
+ "▁offici al",
+ "▁exec ute",
+ "▁execut e",
+ "▁ execute",
+ "ou ve",
+ "ouv e",
+ "o uve",
+ "{ {",
+ "▁A p",
+ "▁ Ap",
+ "▁к у",
+ "▁ ку",
+ "I L",
+ "▁ ^",
+ "di m",
+ "d im",
+ "▁set up",
+ "▁ setup",
+ "с к",
+ "▁sh are",
+ "▁ share",
+ "▁min utes",
+ "▁minute s",
+ "gl e",
+ "g le",
+ "oc o",
+ "o co",
+ "st ell",
+ "ste ll",
+ "▁C oun",
+ "▁Co un",
+ "▁Cou n",
+ "▁tem per",
+ "▁temp er",
+ "▁ temper",
+ "ke it",
+ "сь кий",
+ "a o",
+ "▁L ong",
+ "▁Lo ng",
+ "▁ Long",
+ "( &",
+ "ка н",
+ "к ан",
+ "▁d ens",
+ "▁de ns",
+ "▁den s",
+ "▁ dens",
+ "Bu t",
+ "B ut",
+ "X X",
+ "DA TE",
+ "DAT E",
+ "D ATE",
+ "ga n",
+ "g an",
+ ".) .",
+ ". ).",
+ "▁en try",
+ "▁ent ry",
+ "▁entr y",
+ "▁ entry",
+ "inst all",
+ "▁з на",
+ "▁ зна",
+ "▁S om",
+ "▁So m",
+ "Comm and",
+ "ße n",
+ "ß en",
+ "▁start ing",
+ "▁star ting",
+ "▁s to",
+ "▁st o",
+ "▁ sto",
+ "I G",
+ "▁min im",
+ "▁mi nim",
+ "▁mini m",
+ "▁exp licit",
+ "▁explic it",
+ "▁by tes",
+ "▁byte s",
+ "▁ bytes",
+ "▁par ty",
+ "▁part y",
+ "▁ party",
+ "to ber",
+ "t ober",
+ "▁G rand",
+ "▁Gr and",
+ "▁Gra nd",
+ "▁Gran d",
+ "▁V or",
+ "▁Vo r",
+ "▁ Vor",
+ "▁l eur",
+ "▁le ur",
+ "▁ leur",
+ "Doc ument",
+ "D ocument",
+ "er c",
+ "e rc",
+ "ens ive",
+ "C P",
+ "en v",
+ "▁arg uments",
+ "▁argument s",
+ "▁ arguments",
+ "▁G ran",
+ "▁Gr an",
+ "▁Gra n",
+ "ar ily",
+ "ari ly",
+ "▁l in",
+ "▁li n",
+ "▁ lin",
+ "t n",
+ "( -",
+ "ge q",
+ "g eq",
+ "▁F amil",
+ "▁Fa mil",
+ "▁Fam il",
+ "▁ Famil",
+ "▁Б о",
+ "▁t our",
+ "▁to ur",
+ "▁tou r",
+ "▁n av",
+ "▁na v",
+ "▁ nav",
+ "▁proper ly",
+ "▁M rs",
+ "▁Mr s",
+ "▁M el",
+ "▁Me l",
+ "▁sc ale",
+ "▁scal e",
+ "▁ scale",
+ "ast ic",
+ "d s",
+ "▁S ir",
+ "▁Si r",
+ "▁Ch urch",
+ "}^ {\\",
+ "}^{ \\",
+ "} ^{\\",
+ "yo u",
+ "y ou",
+ "/ .",
+ "S o",
+ "▁br ought",
+ "▁r ole",
+ "▁ro le",
+ "▁rol e",
+ "▁ role",
+ "▁S ur",
+ "▁Su r",
+ "▁ Sur",
+ "▁f ond",
+ "▁fo nd",
+ "▁fon d",
+ "▁g es",
+ "▁ge s",
+ "▁ ges",
+ "ż e",
+ "et en",
+ "ete n",
+ "e ten",
+ "▁é tait",
+ "▁ét ait",
+ "▁ était",
+ "SE R",
+ "S ER",
+ "▁ко торы",
+ "▁кото ры",
+ "▁equ ation",
+ "▁ equation",
+ "as px",
+ "asp x",
+ "▁A fr",
+ "▁Af r",
+ "▁d it",
+ "▁di t",
+ "▁ dit",
+ "em pty",
+ "emp ty",
+ "empt y",
+ "al ement",
+ "ale ment",
+ "alem ent",
+ "a lement",
+ "wr ap",
+ "w rap",
+ "▁B et",
+ "▁Be t",
+ "▁col lect",
+ "▁coll ect",
+ "▁colle ct",
+ "▁ collect",
+ "▁g it",
+ "▁gi t",
+ "▁ git",
+ "▁v ie",
+ "▁vi e",
+ "▁ vie",
+ "▁. .",
+ "▁ ..",
+ "ро й",
+ "▁< ?",
+ "▁ ",
+ "▁ed uc",
+ "k l",
+ "ens is",
+ "▁O R",
+ "▁ OR",
+ "▁H i",
+ "▁ Hi",
+ "▁C our",
+ "▁Co ur",
+ "▁Cou r",
+ "б ы",
+ "ce rt",
+ "cer t",
+ "c ert",
+ "▁G es",
+ "▁Ge s",
+ "ess or",
+ "esso r",
+ "Ma in",
+ "M ain",
+ "▁ лю",
+ "ca de",
+ "c ade",
+ "do t",
+ "d ot",
+ "au gh",
+ "aug h",
+ "a ugh",
+ "hi b",
+ "h ib",
+ "▁autom atically",
+ "▁auto matically",
+ "▁automat ically",
+ "▁automatic ally",
+ "▁sp ir",
+ "pr esent",
+ "pre sent",
+ "pres ent",
+ "▁Febru ary",
+ "▁Februar y",
+ "▁E lle",
+ "▁El le",
+ "▁Ell e",
+ "cus tom",
+ "c ustom",
+ "▁pro get",
+ "▁admin istr",
+ "▁administ r",
+ "A A",
+ "▁b orn",
+ "▁bo rn",
+ "▁bor n",
+ "▁ born",
+ "▁Col lege",
+ "▁Colleg e",
+ "▁Coll ege",
+ "at hol",
+ "ath ol",
+ "` )",
+ "ier re",
+ "▁r an",
+ "▁ra n",
+ "▁ ran",
+ "▁prof ession",
+ "▁profess ion",
+ "og en",
+ "oge n",
+ "o gen",
+ "}_ {\\",
+ "}_{ \\",
+ "} _{\\",
+ "▁act ivity",
+ "▁activ ity",
+ "▁ activity",
+ "▁sc roll",
+ "▁scr oll",
+ "▁ scroll",
+ "▁pro ve",
+ "▁pr ove",
+ "▁prov e",
+ "ibr ary",
+ "i brary",
+ "er ies",
+ "erie s",
+ "eri es",
+ "e ries",
+ "Re ad",
+ "R ead",
+ "ye ar",
+ "y ear",
+ "▁l ang",
+ "▁la ng",
+ "▁lan g",
+ "▁ lang",
+ "De t",
+ "D et",
+ "▁k new",
+ "▁kn ew",
+ "▁kne w",
+ "▁prote cted",
+ "▁protect ed",
+ "▁prot ected",
+ "▁ protected",
+ "▁w or",
+ "▁wo r",
+ "▁ wor",
+ "▁e ffic",
+ "▁eff ic",
+ "▁r ég",
+ "▁ré g",
+ "▁the ory",
+ "▁ theory",
+ "▁pub lished",
+ "▁publish ed",
+ "re al",
+ "rea l",
+ "▁T our",
+ "▁To ur",
+ "▁dur ante",
+ "▁durant e",
+ "ä s",
+ "▁pos itive",
+ "▁posit ive",
+ "▁for ward",
+ "▁ forward",
+ "▁R el",
+ "▁Re l",
+ "▁ Rel",
+ "{ \"",
+ "par k",
+ "p ark",
+ "▁U m",
+ "▁e er",
+ "en ta",
+ "ent a",
+ "▁i mag",
+ "▁im ag",
+ "но ї",
+ "pi el",
+ "pie l",
+ "p iel",
+ "▁j Query",
+ "▁ jQuery",
+ "is me",
+ "ism e",
+ "ch ni",
+ "chn i",
+ "or gan",
+ "org an",
+ "▁ar gs",
+ "▁arg s",
+ "▁ args",
+ "oi r",
+ "o ir",
+ "he im",
+ "ri an",
+ "ria n",
+ "r ian",
+ "el ess",
+ "eles s",
+ "ele ss",
+ "e less",
+ "us es",
+ "use s",
+ "ди н",
+ "д ин",
+ "ic ión",
+ "ici ón",
+ "ició n",
+ "i ción",
+ "▁ind ust",
+ "▁indu st",
+ "▁ indust",
+ "▁w ish",
+ "▁wis h",
+ "án y",
+ "á ny",
+ "oc a",
+ "o ca",
+ "▁ang ular",
+ "▁ angular",
+ "ie ved",
+ "ieve d",
+ "iev ed",
+ "▁occ ur",
+ "▁oc cur",
+ "SE LECT",
+ "on ia",
+ "oni a",
+ "o nia",
+ "ad min",
+ "▁B est",
+ "▁Be st",
+ "▁Bes t",
+ "▁ Best",
+ "▁э то",
+ "о гра",
+ "▁l oss",
+ "▁lo ss",
+ "▁los s",
+ "▁ loss",
+ "▁b al",
+ "▁ba l",
+ "▁ bal",
+ "▁Р ос",
+ "▁Ро с",
+ "▁care er",
+ "▁п е",
+ "▁ пе",
+ "I X",
+ "▁f all",
+ "▁fa ll",
+ "▁fal l",
+ "▁ fall",
+ "▁R ob",
+ "▁Ro b",
+ "▁ Rob",
+ "▁O P",
+ "▁ OP",
+ "en ed",
+ "ene d",
+ "e ned",
+ "graph ics",
+ "▁c oming",
+ "▁com ing",
+ "▁co ming",
+ "▁ coming",
+ "Up date",
+ "▁d ied",
+ "▁di ed",
+ "▁die d",
+ "ed en",
+ "ede n",
+ "e den",
+ "▁a bs",
+ "▁ab s",
+ "▁ abs",
+ "▁in ner",
+ "▁inn er",
+ "▁inne r",
+ "▁ inner",
+ "▁t rav",
+ "▁tr av",
+ "▁tra v",
+ "сто я",
+ "z ą",
+ "é p",
+ "▁Gr oup",
+ "▁Gro up",
+ "▁ Group",
+ "▁c el",
+ "▁ce l",
+ "▁ cel",
+ "▁st uff",
+ "▁situ ation",
+ "▁$ {",
+ "▁ ${",
+ "ac le",
+ "a cle",
+ "▁pur pose",
+ "▁F ire",
+ "▁Fir e",
+ "▁ Fire",
+ "▁O h",
+ "▁ Oh",
+ "▁Se cond",
+ "▁Sec ond",
+ "▁ Second",
+ "▁up load",
+ "▁ upload",
+ "os tał",
+ "ost ał",
+ "osta ł",
+ "ю щи",
+ "Aut h",
+ "A uth",
+ "▁show ing",
+ "▁sho wing",
+ "▁complet ely",
+ "▁complete ly",
+ "av el",
+ "ave l",
+ "a vel",
+ "b d",
+ "▁pro ced",
+ "▁proc ed",
+ "▁ Ö",
+ "cont rol",
+ "contr ol",
+ "▁th ank",
+ "▁than k",
+ "und red",
+ "▁t om",
+ "▁to m",
+ "▁ tom",
+ "▁ex amples",
+ "▁example s",
+ "▁exam ples",
+ "▁ examples",
+ "▁re member",
+ "▁rem ember",
+ "▁ра бо",
+ "▁ рабо",
+ "▁poss ib",
+ "▁det ect",
+ "▁p oor",
+ "▁po or",
+ "▁O p",
+ "▁ Op",
+ "▁cent ury",
+ "▁ century",
+ "ut ter",
+ "utt er",
+ "▁lo gin",
+ "▁log in",
+ "▁ login",
+ "un st",
+ "uns t",
+ "Out put",
+ "▁other wise",
+ "la n",
+ "l an",
+ "ту р",
+ "т ур",
+ "▁с ов",
+ "▁со в",
+ "▁ сов",
+ "▁gr oups",
+ "▁group s",
+ "▁gro ups",
+ "▁ groups",
+ "ri p",
+ "r ip",
+ "▁s hell",
+ "▁sh ell",
+ "▁she ll",
+ "▁ shell",
+ "▁d istrict",
+ "▁dist rict",
+ "▁rec ords",
+ "▁record s",
+ "▁si è",
+ "fort un",
+ "en ty",
+ "ent y",
+ "▁T re",
+ "▁Tr e",
+ "▁ch anging",
+ "▁chang ing",
+ "сле д",
+ "aug ht",
+ "augh t",
+ "▁de ep",
+ "▁ deep",
+ "sub set",
+ "ag y",
+ "a gy",
+ "en dar",
+ "end ar",
+ "enda r",
+ "ja x",
+ "j ax",
+ "O M",
+ "E l",
+ "im ate",
+ "ima te",
+ "imat e",
+ "i mate",
+ "ar do",
+ "ard o",
+ "▁p lot",
+ "▁pl ot",
+ "▁ plot",
+ "▁vis it",
+ "▁b ug",
+ "▁bu g",
+ "▁ bug",
+ "▁в се",
+ "▁вс е",
+ "▁op ened",
+ "▁open ed",
+ "▁re pla",
+ "▁rep la",
+ "▁Hen ry",
+ "▁p p",
+ "▁ pp",
+ "ba s",
+ "b as",
+ "▁d ark",
+ "▁dar k",
+ "▁ dark",
+ "▁Mart in",
+ "▁ Martin",
+ "▁re source",
+ "▁res ource",
+ "▁ resource",
+ "il ing",
+ "ili ng",
+ "i ling",
+ "▁w atch",
+ "▁wat ch",
+ "▁ watch",
+ "re place",
+ "rep lace",
+ "▁re lease",
+ "▁ release",
+ "Lo cation",
+ "Loc ation",
+ "L ocation",
+ "▁le arning",
+ "▁learn ing",
+ "▁lear ning",
+ "▁ learning",
+ "me nu",
+ "men u",
+ "m enu",
+ "▁all ows",
+ "▁allow s",
+ "▁allo ws",
+ "ъ р",
+ "L ength",
+ "▁wh atever",
+ "▁what ever",
+ "▁p ages",
+ "▁page s",
+ "▁pa ges",
+ "▁pag es",
+ "▁ pages",
+ "▁comp iler",
+ "▁compile r",
+ "▁ compiler",
+ "▁так же",
+ "▁P an",
+ "▁Pa n",
+ "▁ Pan",
+ "comm and",
+ "▁ro ad",
+ "▁ road",
+ "▁un less",
+ "▁ unless",
+ "` ?",
+ "▁dis cover",
+ "▁disc over",
+ "▁disco ver",
+ "▁о н",
+ "▁ он",
+ "} ]",
+ "bo ur",
+ "b our",
+ "▁C ould",
+ "▁Co uld",
+ "▁Cou ld",
+ "▁ Could",
+ "▁re gex",
+ "▁reg ex",
+ "▁ regex",
+ "▁p s",
+ "▁ ps",
+ "C D",
+ "и з",
+ "▁w ife",
+ "am enti",
+ "ament i",
+ "amen ti",
+ "▁f air",
+ "▁fa ir",
+ "▁D B",
+ "▁ DB",
+ "▁C up",
+ "▁Cu p",
+ "en en",
+ "ene n",
+ "e nen",
+ "aj ax",
+ "aja x",
+ "a jax",
+ "oth èque",
+ "▁se iner",
+ "▁sein er",
+ "▁seine r",
+ "▁sei ner",
+ "ic ker",
+ "ick er",
+ "i cker",
+ "á m",
+ "ex change",
+ "ol es",
+ "ole s",
+ "o les",
+ "I F",
+ "▁Д о",
+ "oh n",
+ "o hn",
+ "▁g row",
+ "▁gr ow",
+ "▁gro w",
+ "▁T hus",
+ "▁Th us",
+ "sp ec",
+ "spe c",
+ "s pec",
+ "▁h atte",
+ "▁ha tte",
+ "▁hat te",
+ "# ,",
+ "all el",
+ "alle l",
+ "▁r ate",
+ "▁ra te",
+ "▁rat e",
+ "▁ rate",
+ "▁cent ral",
+ "▁ central",
+ "▁V an",
+ "▁Va n",
+ "if orn",
+ "R un",
+ "▁stud y",
+ "▁X ML",
+ "▁ XML",
+ "▁C he",
+ "▁Ch e",
+ "▁ Che",
+ "▁be aut",
+ "mi d",
+ "m id",
+ "▁adv ance",
+ "V er",
+ "т я",
+ "▁h ands",
+ "▁hand s",
+ "▁han ds",
+ "▁l ay",
+ "▁la y",
+ "▁ lay",
+ "▁ š",
+ "▁O S",
+ "▁ OS",
+ "▁{ }",
+ "▁ {}",
+ "Pr e",
+ "P re",
+ "▁H all",
+ "▁Ha ll",
+ "▁Hal l",
+ "im p",
+ "i mp",
+ "▁s un",
+ "▁su n",
+ "▁ sun",
+ "▁st eps",
+ "▁ste ps",
+ "▁step s",
+ "▁ steps",
+ "▁j ud",
+ "▁ju d",
+ "▁ jud",
+ "qu i",
+ "q ui",
+ "▁b oot",
+ "▁bo ot",
+ "▁ boot",
+ "▁% >",
+ "▁В а",
+ "no st",
+ "nos t",
+ "n ost",
+ "▁n em",
+ "▁ne m",
+ "▁ nem",
+ "▁p en",
+ "▁pe n",
+ "▁ pen",
+ "Op en",
+ "O pen",
+ "▁ch urch",
+ "ко н",
+ "к он",
+ "▁a verage",
+ "▁aver age",
+ "▁ave rage",
+ "▁com ments",
+ "▁comm ents",
+ "▁comment s",
+ "▁ comments",
+ "▁correspond ing",
+ "lev ant",
+ "▁b ed",
+ "▁be d",
+ "▁ bed",
+ "▁mean ing",
+ "V ersion",
+ "Lin k",
+ "L ink",
+ "be l",
+ "b el",
+ "▁ext ract",
+ "▁extra ct",
+ "▁extr act",
+ "▁ extract",
+ "ś ć",
+ "▁I V",
+ "▁ IV",
+ "▁I r",
+ "▁comp uter",
+ "▁comput er",
+ "▁compute r",
+ "▁a ffect",
+ "▁af fect",
+ "▁aff ect",
+ "▁С та",
+ "▁Ст а",
+ "A X",
+ "so rt",
+ "s ort",
+ "▁s pecies",
+ "▁spe cies",
+ "▁spec ies",
+ "▁specie s",
+ "▁ species",
+ "▁O per",
+ "▁Op er",
+ "▁ Oper",
+ "▁h ash",
+ "▁ha sh",
+ "▁has h",
+ "▁ hash",
+ "ch es",
+ "che s",
+ "c hes",
+ "▁Einz eln",
+ "▁Einzel n",
+ "▁ke ys",
+ "▁key s",
+ "▁ keys",
+ "▁mar zo",
+ "▁inter pret",
+ "▁interpre t",
+ "ho od",
+ "h ood",
+ "▁co ordin",
+ "▁coord in",
+ "ö s",
+ "ra ge",
+ "rag e",
+ "r age",
+ "et z",
+ "e tz",
+ "iz a",
+ "i za",
+ "де р",
+ "д ер",
+ "ü t",
+ "^ *",
+ "▁mod ify",
+ "▁term in",
+ "▁ter min",
+ "▁ termin",
+ "▁c red",
+ "▁cre d",
+ "▁cr ed",
+ "▁ cred",
+ "zo n",
+ "z on",
+ "ну ю",
+ "н ую",
+ "▁m ie",
+ "▁mi e",
+ "▁' '",
+ "▁ ''",
+ "▁M os",
+ "▁Mo s",
+ "▁conne cted",
+ "▁connect ed",
+ "▁conn ected",
+ "▁ connected",
+ "N O",
+ "▁comp ile",
+ "▁ compile",
+ "▁\" \\",
+ "▁ \"\\",
+ "▁c at",
+ "▁ca t",
+ "▁ cat",
+ "f iddle",
+ "ut a",
+ "u ta",
+ "Acc ess",
+ "Ac cess",
+ "A ccess",
+ "▁S to",
+ "▁St o",
+ "▁ Sto",
+ "▁B ur",
+ "▁Bu r",
+ "▁n orth",
+ "▁nor th",
+ "G amma",
+ "▁al loc",
+ "▁all oc",
+ "▁allo c",
+ "▁ alloc",
+ "In it",
+ "I nit",
+ "▁L ink",
+ "▁Lin k",
+ "▁ Link",
+ "ial ize",
+ "iali ze",
+ "Im pl",
+ "Imp l",
+ "ou pe",
+ "oup e",
+ "rop ri",
+ "▁G old",
+ "▁Go ld",
+ "▁Gol d",
+ "▁s olo",
+ "▁so lo",
+ "▁sol o",
+ "▁D ist",
+ "▁Dis t",
+ "▁Di st",
+ "▁ Dist",
+ ", -",
+ "na v",
+ "n av",
+ "▁al ert",
+ "▁ale rt",
+ "▁ alert",
+ "es is",
+ "esi s",
+ "▁O s",
+ "▁ Os",
+ "// /",
+ "/ //",
+ "▁f eb",
+ "▁fe b",
+ "▁- ->",
+ "▁-- >",
+ "▁ -->",
+ "fo ot",
+ "foo t",
+ "f oot",
+ "▁F ried",
+ "▁Fr ied",
+ "▁Fri ed",
+ "▁Einzeln ach",
+ "▁Einzel nach",
+ "▁re v",
+ "▁r ev",
+ "▁ rev",
+ "ze it",
+ "▁S tat",
+ "▁St at",
+ "▁Sta t",
+ "▁ Stat",
+ "▁S eg",
+ "▁Se g",
+ "▁ Seg",
+ "▁b lo",
+ "▁bl o",
+ "▁ blo",
+ "wi ck",
+ "w ick",
+ "E L",
+ "ca ption",
+ "cap tion",
+ "capt ion",
+ "he ader",
+ "head er",
+ "▁pres ident",
+ "▁presiden t",
+ "▁mult ip",
+ "▁multi p",
+ "▁mul tip",
+ "▁ multip",
+ "▁Einzelnach weise",
+ "▁se ine",
+ "▁sein e",
+ "▁sei ne",
+ "? ”",
+ "Func tion",
+ "Fun ction",
+ "F unction",
+ "▁St and",
+ "▁Sta nd",
+ "▁Stan d",
+ "▁ Stand",
+ "▁F unction",
+ "▁Fun ction",
+ "▁ Function",
+ "▁? >",
+ "▁ ?>",
+ "▁B ill",
+ "▁Bi ll",
+ "▁Bil l",
+ "▁s pect",
+ "▁sp ect",
+ "▁spe ct",
+ "▁spec t",
+ "▁ spect",
+ "▁re direct",
+ "▁red irect",
+ "▁ redirect",
+ "ru pt",
+ "rup t",
+ "r upt",
+ "▁w alk",
+ "▁wal k",
+ "▁ walk",
+ "в ши",
+ "spring framework",
+ "pl ace",
+ "pla ce",
+ "p lace",
+ "é ho",
+ "Ent ity",
+ "▁Ser vice",
+ "▁Serv ice",
+ "▁ Service",
+ "in te",
+ "int e",
+ "▁tr aining",
+ "▁tra ining",
+ "▁train ing",
+ "▁ training",
+ "▁( `",
+ "▁ (`",
+ "фо р",
+ "ф ор",
+ "▁к ра",
+ "▁ кра",
+ "au r",
+ "a ur",
+ "▁f etch",
+ "▁fet ch",
+ "▁ fetch",
+ "▁ †",
+ "▁m ême",
+ "▁ même",
+ "▁( '",
+ "▁ ('",
+ "at ively",
+ "ative ly",
+ "ativ ely",
+ "▁exec ut",
+ "ä ch",
+ "▁Catalog ue",
+ "ba sed",
+ "base d",
+ "bas ed",
+ "b ased",
+ "Att ribute",
+ "▁s pring",
+ "▁sp ring",
+ "▁spr ing",
+ "▁ spring",
+ "ph one",
+ "phon e",
+ "т ра",
+ "▁п и",
+ "▁ пи",
+ "те ра",
+ "тер а",
+ "т ера",
+ "▁` \\",
+ "▁O d",
+ "On e",
+ "O ne",
+ "se nd",
+ "sen d",
+ "s end",
+ "bo n",
+ "b on",
+ "▁ °",
+ "M O",
+ "▁as king",
+ "▁ask ing",
+ "▁o ù",
+ "▁ing år",
+ "▁test ing",
+ "▁ testing",
+ "▁ф а",
+ "▁ фа",
+ "▁B ook",
+ "▁Bo ok",
+ "▁ Book",
+ "im m",
+ "i mm",
+ "▁pro gress",
+ "▁ progress",
+ "br o",
+ "b ro",
+ "F irst",
+ "▁p hot",
+ "▁ph ot",
+ "▁O N",
+ "▁ ON",
+ "Tem plate",
+ "Temp late",
+ "develop er",
+ "an not",
+ "ann ot",
+ "anno t",
+ "▁> =",
+ "▁ >=",
+ "miss ion",
+ "m ission",
+ "▁k tó",
+ "▁ któ",
+ "p c",
+ "ba ch",
+ "b ach",
+ "ze nt",
+ "zen t",
+ "z ent",
+ "ue d",
+ "u ed",
+ "▁o nes",
+ "▁on es",
+ "▁one s",
+ "▁ ones",
+ "ј и",
+ "▁r out",
+ "▁ro ut",
+ "▁rou t",
+ "▁ rout",
+ "▁К и",
+ "Pos t",
+ "Po st",
+ "P ost",
+ "ці ї",
+ "ц ії",
+ "▁V ir",
+ "▁Vi r",
+ "ne k",
+ "n ek",
+ "ag ing",
+ "agi ng",
+ "agin g",
+ "a ging",
+ "▁о к",
+ "▁ ок",
+ "iz ont",
+ "izo nt",
+ "izon t",
+ "▁ag osto",
+ "▁ago sto",
+ "▁cho ose",
+ "▁ choose",
+ "▁ \r",
+ "▁system s",
+ "▁syst ems",
+ "lo ss",
+ "los s",
+ "l oss",
+ "ien te",
+ "ient e",
+ "i ente",
+ "▁C re",
+ "▁Cr e",
+ "▁ Cre",
+ "▁con tra",
+ "▁cont ra",
+ "▁contr a",
+ "▁ contra",
+ "um s",
+ "u ms",
+ "▁begin ning",
+ "em y",
+ "e my",
+ "ist ics",
+ "istic s",
+ "isti cs",
+ "▁s erved",
+ "▁ser ved",
+ "▁serv ed",
+ "▁serve d",
+ "Do wn",
+ "D own",
+ "option s",
+ "opt ions",
+ "o ptions",
+ "▁G overn",
+ "▁Go vern",
+ "▁B Y",
+ "▁ BY",
+ "▁j est",
+ "▁je st",
+ "▁ jest",
+ "t é",
+ "▁cont inue",
+ "▁contin ue",
+ "▁continu e",
+ "▁ continue",
+ "pe rs",
+ "per s",
+ "p ers",
+ "▁eas ier",
+ "▁c os",
+ "▁co s",
+ "▁ cos",
+ "es so",
+ "ess o",
+ "> >",
+ "Ne t",
+ "N et",
+ "▁B or",
+ "▁Bo r",
+ "▁C r",
+ "▁ Cr",
+ "▁trans fer",
+ "▁C SS",
+ "▁CS S",
+ "▁ CSS",
+ "▁fin ns",
+ "▁х о",
+ "▁ хо",
+ "us ername",
+ "user name",
+ "▁con stru",
+ "▁const ru",
+ "▁p ain",
+ "▁pa in",
+ "▁T em",
+ "▁Te m",
+ "▁ Tem",
+ "▁spec ified",
+ "▁b rit",
+ "▁br it",
+ "▁ brit",
+ "ски е",
+ "с кие",
+ "ir k",
+ "ra pper",
+ "rap per",
+ "r apper",
+ "▁c ounter",
+ "▁co unter",
+ "▁count er",
+ "▁coun ter",
+ "▁ counter",
+ "▁[ \"",
+ "▁ [\"",
+ "ode d",
+ "od ed",
+ "o ded",
+ "да н",
+ "д ан",
+ "pro perty",
+ "ha rd",
+ "har d",
+ "h ard",
+ "ist rict",
+ "istr ict",
+ ") /",
+ "▁P our",
+ "▁Po ur",
+ "▁W here",
+ "▁Wh ere",
+ "▁Whe re",
+ "▁ Where",
+ "▁= ==",
+ "▁== =",
+ "▁ ===",
+ "▁s owie",
+ "▁so wie",
+ "▁sow ie",
+ "▁П ро",
+ "▁d ess",
+ "▁de ss",
+ "▁des s",
+ "▁ dess",
+ "▁t ras",
+ "▁tr as",
+ "▁tra s",
+ "▁ tras",
+ "▁у ча",
+ "▁O ver",
+ "▁ Over",
+ "no te",
+ "not e",
+ "n ote",
+ "▁Amer ica",
+ "▁ America",
+ "c p",
+ "▁gr ande",
+ "▁gra nde",
+ "▁gran de",
+ "▁grand e",
+ "M e",
+ ") -",
+ "Mod e",
+ "Mo de",
+ "M ode",
+ "▁pass ing",
+ "▁pas sing",
+ "▁g iving",
+ "▁giv ing",
+ "▁gi ving",
+ "C l",
+ "} /",
+ "Me nu",
+ "Men u",
+ "M enu",
+ "! !",
+ "ang ular",
+ "angu lar",
+ "▁la unch",
+ "▁ launch",
+ "var phi",
+ "▁Joh ann",
+ "▁Johan n",
+ "▁for each",
+ "▁fore ach",
+ "▁ foreach",
+ "r ó",
+ "se qu",
+ "seq u",
+ "s equ",
+ "if i",
+ "i fi",
+ "A m",
+ "ar p",
+ "a rp",
+ "▁b uffer",
+ "▁buf fer",
+ "▁buff er",
+ "▁ buffer",
+ "▁n i",
+ "▁ ni",
+ "▁m ix",
+ "▁mi x",
+ "▁ mix",
+ "▁M useum",
+ "▁Muse um",
+ "▁me ant",
+ "▁mean t",
+ "as i",
+ "a si",
+ "▁k an",
+ "▁ka n",
+ "▁ kan",
+ "пра в",
+ "п рав",
+ "Com p",
+ "Co mp",
+ "C omp",
+ "is toire",
+ "ist oire",
+ "isto ire",
+ "if ul",
+ "i ful",
+ "je r",
+ "j er",
+ "iss ions",
+ "ission s",
+ "Re source",
+ "Res ource",
+ "▁в оз",
+ "▁во з",
+ "▁S T",
+ "▁ ST",
+ "▁sol utions",
+ "▁solution s",
+ "▁be long",
+ "▁bel ong",
+ "▁As soci",
+ "▁Ass oci",
+ "▁ Associ",
+ "c f",
+ "▁M är",
+ "▁g rid",
+ "▁gr id",
+ "▁ grid",
+ "M ult",
+ "▁require s",
+ "▁requ ires",
+ "k k",
+ "▁t each",
+ "▁te ach",
+ "▁tea ch",
+ "eme inde",
+ "emein de",
+ "▁s quare",
+ "▁squ are",
+ "▁ square",
+ "▁ко ман",
+ "▁ком ан",
+ "▁E vent",
+ "▁Ev ent",
+ "▁Even t",
+ "▁ Event",
+ "▁r ules",
+ "▁rule s",
+ "▁ru les",
+ "▁ rules",
+ "▁b ur",
+ "▁bu r",
+ "▁ bur",
+ "▁e ing",
+ "▁ein g",
+ "▁ eing",
+ "▁M ai",
+ "▁Ma i",
+ "▁n am",
+ "▁na m",
+ "▁ nam",
+ "▁s lä",
+ "▁sl ä",
+ "hö r",
+ "h ör",
+ "▁t ip",
+ "▁ti p",
+ "▁ tip",
+ "▁Liter atur",
+ "▁s cope",
+ "▁sc ope",
+ "▁scop e",
+ "▁ scope",
+ "over line",
+ "▁ex it",
+ "▁ exit",
+ ") ?",
+ "be t",
+ "b et",
+ "▁v ict",
+ "▁vi ct",
+ "▁vic t",
+ "Of f",
+ "O ff",
+ "▁appro xim",
+ "▁G eb",
+ "▁Ge b",
+ "kt op",
+ "k top",
+ "he it",
+ "▁ Ю",
+ "tem plate",
+ "temp late",
+ "ро н",
+ "р он",
+ "▁u no",
+ "▁un o",
+ "▁ uno",
+ "Ser v",
+ "Se rv",
+ "S erv",
+ "▁frame work",
+ "▁ framework",
+ "oper ator",
+ "opera tor",
+ "▁gener ally",
+ "▁general ly",
+ "▁h undred",
+ "▁d ivers",
+ "▁di vers",
+ "▁div ers",
+ "▁diver s",
+ "ov i",
+ "o vi",
+ "▁r és",
+ "▁ré s",
+ "▁ rés",
+ "ab s",
+ "a bs",
+ "▁g al",
+ "▁ga l",
+ "▁ gal",
+ "ça is",
+ "ç ais",
+ "▁fe et",
+ "▁fee t",
+ "▁v irtual",
+ "▁virt ual",
+ "▁ virtual",
+ "cz y",
+ "c zy",
+ "ск у",
+ "с ку",
+ ". /",
+ "h u",
+ "an cy",
+ "anc y",
+ "▁recomm end",
+ "▁п ід",
+ "▁пі д",
+ "▁m oney",
+ "▁mon ey",
+ "▁mo ney",
+ "▁vers ions",
+ "▁version s",
+ "▁ versions",
+ "▁hel ps",
+ "▁help s",
+ "▁H or",
+ "▁Ho r",
+ "▁ Hor",
+ "Item s",
+ "It ems",
+ "lo ok",
+ "l ook",
+ "con nect",
+ "conne ct",
+ "conn ect",
+ "an ges",
+ "ang es",
+ "ange s",
+ "View Controller",
+ "el ijk",
+ "elij k",
+ "eli jk",
+ "e lijk",
+ "▁occ up",
+ "▁oc cup",
+ "▁ occup",
+ "▁ed itor",
+ "▁edit or",
+ "▁ editor",
+ "au to",
+ "aut o",
+ "a uto",
+ "ö g",
+ "▁second s",
+ "▁sec onds",
+ "▁ seconds",
+ "▁ob vious",
+ "v m",
+ "ak es",
+ "ake s",
+ "a kes",
+ "▁g egen",
+ "▁ge gen",
+ "▁geg en",
+ "▁t il",
+ "▁ti l",
+ "▁ til",
+ "ject ion",
+ "je ction",
+ "j ection",
+ "ле ння",
+ "лен ня",
+ "▁oper ations",
+ "▁operation s",
+ "▁E ast",
+ "og y",
+ "o gy",
+ "▁P olit",
+ "▁Pol it",
+ "▁Po lit",
+ "ut en",
+ "ute n",
+ "u ten",
+ "▁Jose ph",
+ "\" `",
+ "▁Comp any",
+ "▁ Company",
+ "▁call back",
+ "▁ callback",
+ "▁s en",
+ "▁se n",
+ "▁ sen",
+ "cc ión",
+ "cció n",
+ "c ción",
+ "▁associ ated",
+ "▁associate d",
+ "▁cont aining",
+ "▁contain ing",
+ "▁pract ice",
+ "elij ke",
+ "elijk e",
+ "e lijke",
+ "ok e",
+ "o ke",
+ "ér a",
+ "é ra",
+ "un s",
+ "u ns",
+ "an ta",
+ "ant a",
+ "ve y",
+ "v ey",
+ "z u",
+ "▁B es",
+ "▁Be s",
+ "▁F lor",
+ "▁Fl or",
+ "▁Flo r",
+ "me m",
+ "m em",
+ "yc z",
+ "y cz",
+ "▁arch itect",
+ "▁an ni",
+ "▁ann i",
+ "▁ anni",
+ "▁cont act",
+ "▁ contact",
+ "Y PE",
+ "▁C as",
+ "▁Ca s",
+ "▁по лу",
+ "▁пол у",
+ "ov o",
+ "o vo",
+ "▁b ring",
+ "▁br ing",
+ "▁con cept",
+ "▁conce pt",
+ "▁j s",
+ "▁ js",
+ "▁Refer encias",
+ "em ble",
+ "emb le",
+ "embl e",
+ "▁ н",
+ "▁supp orted",
+ "▁support ed",
+ "▁ supported",
+ "Bi g",
+ "B ig",
+ "▁H ans",
+ "▁Ha ns",
+ "▁Han s",
+ "er v",
+ "e rv",
+ "▁M aj",
+ "▁Ma j",
+ "▁ar riv",
+ "▁arr iv",
+ "▁H ave",
+ "▁Ha ve",
+ "▁Hav e",
+ "▁ Have",
+ "▁prob ability",
+ "▁probabil ity",
+ "▁P op",
+ "▁Po p",
+ "▁ Pop",
+ "▁P ass",
+ "▁Pa ss",
+ "▁Pas s",
+ "▁ Pass",
+ "to ken",
+ "tok en",
+ "t oken",
+ "Pro vider",
+ "▁R a",
+ "Re ader",
+ "Read er",
+ "oot h",
+ "oo th",
+ "o oth",
+ "la p",
+ "l ap",
+ "▁ass ist",
+ "ad ow",
+ "ado w",
+ "▁t ests",
+ "▁test s",
+ "▁ tests",
+ "сс и",
+ "с си",
+ "▁k ing",
+ "▁ki ng",
+ "▁kin g",
+ "▁ king",
+ "lang le",
+ "lan gle",
+ "l angle",
+ "▁S um",
+ "▁Su m",
+ "▁ Sum",
+ "O IN",
+ "▁se curity",
+ "▁sec urity",
+ "▁ security",
+ "ni s",
+ "n is",
+ ".. /",
+ ". ./",
+ "▁bas ic",
+ "▁ basic",
+ "un ity",
+ "uni ty",
+ "unit y",
+ "` :",
+ "▁ко то",
+ "ko w",
+ "k ow",
+ "▁Bibli othèque",
+ "as ion",
+ "asi on",
+ "al o",
+ "a lo",
+ "if est",
+ "ife st",
+ "i fest",
+ "▁nov embre",
+ "▁p eu",
+ "▁pe u",
+ "▁ Ж",
+ "en schaft",
+ "ensch aft",
+ "cl us",
+ "c lus",
+ "ј у",
+ "He ight",
+ "ú n",
+ "▁t ur",
+ "▁tu r",
+ "▁ide as",
+ "▁idea s",
+ "▁c es",
+ "▁ce s",
+ "▁ ces",
+ "fr ak",
+ "fra k",
+ "f rak",
+ "▁pre mier",
+ "▁prem ier",
+ "▁premi er",
+ "it ation",
+ "ita tion",
+ "itat ion",
+ "▁s é",
+ "HT ML",
+ "▁Ro yal",
+ "▁Roy al",
+ "сь кої",
+ "сько ї",
+ "▁by te",
+ "▁ byte",
+ "P S",
+ "▁s egu",
+ "▁se gu",
+ "▁seg u",
+ "▁ segu",
+ "in en",
+ "ine n",
+ "i nen",
+ "▁Gre at",
+ "▁К у",
+ "▁ex ternal",
+ "▁ext ernal",
+ "▁extern al",
+ "▁ external",
+ "T itle",
+ "To p",
+ "T op",
+ "Pro cess",
+ "Proc ess",
+ "it ät",
+ "itä t",
+ "▁` /",
+ "▁se cret",
+ "▁sec ret",
+ "▁secre t",
+ "▁ secret",
+ "pos itory",
+ "▁pot ential",
+ "▁B ud",
+ "▁Bu d",
+ "name s",
+ "na mes",
+ "nam es",
+ "n ames",
+ "as ons",
+ "ason s",
+ "aso ns",
+ "stack exchange",
+ "back ground",
+ "пе р",
+ "п ер",
+ "со в",
+ "с ов",
+ "aft er",
+ "af ter",
+ "a fter",
+ "▁p ero",
+ "▁per o",
+ "▁pe ro",
+ "▁so ftware",
+ "▁soft ware",
+ "▁ software",
+ "▁s ed",
+ "▁se d",
+ "▁ sed",
+ "▁array s",
+ "▁arr ays",
+ "tm p",
+ "t mp",
+ "▁a sp",
+ "▁as p",
+ "▁ asp",
+ "sc ale",
+ "scal e",
+ "▁L at",
+ "▁La t",
+ "▁ Lat",
+ "an al",
+ "ana l",
+ "a nal",
+ "▁g em",
+ "▁ge m",
+ "▁ gem",
+ "P U",
+ "▁Al tri",
+ "▁Alt ri",
+ "Th at",
+ "T hat",
+ "▁Н и",
+ "if act",
+ "ifa ct",
+ "i fact",
+ "Add ress",
+ "▁s outh",
+ "▁so uth",
+ "▁sou th",
+ "▁sout h",
+ "▁form ula",
+ "▁Col leg",
+ "▁Coll eg",
+ "▁і н",
+ "▁ ін",
+ "kt ion",
+ "k tion",
+ "▁s ac",
+ "▁sa c",
+ "S H",
+ "aj o",
+ "a jo",
+ "et c",
+ "e tc",
+ "v c",
+ "` ](",
+ "▁D ur",
+ "▁Du r",
+ "▁М е",
+ "▁Sm ith",
+ "▁ Smith",
+ "it ems",
+ "ite ms",
+ "item s",
+ "C K",
+ "el o",
+ "e lo",
+ "▁pl ugin",
+ "▁plug in",
+ "▁ plugin",
+ "▁s erie",
+ "▁se rie",
+ "▁ser ie",
+ "▁ serie",
+ "ien ne",
+ "ienn e",
+ "i enne",
+ "▁и ли",
+ "Ma r",
+ "M ar",
+ "▁Im age",
+ "▁ Image",
+ "go t",
+ "g ot",
+ "an das",
+ "and as",
+ "anda s",
+ "▁mat ches",
+ "▁match es",
+ "▁ matches",
+ "▁w orth",
+ "▁wor th",
+ "▁ worth",
+ "▁D eb",
+ "▁De b",
+ "▁ Deb",
+ "▁c ache",
+ "▁ca che",
+ "▁ cache",
+ "▁f elt",
+ "▁fe lt",
+ "▁fel t",
+ "er sch",
+ "ers ch",
+ "iz es",
+ "ize s",
+ "i zes",
+ "Op er",
+ "O per",
+ "▁Jah re",
+ "▁Jahr e",
+ "▁Ja hre",
+ "▁comm une",
+ "▁commun e",
+ "th read",
+ "▁n y",
+ "▁ ny",
+ "de c",
+ "d ec",
+ "ou w",
+ "o uw",
+ "▁sur face",
+ "▁P or",
+ "▁Po r",
+ "▁St reet",
+ "▁Stre et",
+ "пр и",
+ "п ри",
+ "▁c andid",
+ "▁can did",
+ "▁cand id",
+ "▁Re turn",
+ "▁Ret urn",
+ "▁ Return",
+ "▁K om",
+ "▁Ko m",
+ "gr u",
+ "g ru",
+ "▁т и",
+ "▁ ти",
+ "[ \\",
+ "▁dep ends",
+ "▁depend s",
+ "▁in flu",
+ "▁inf lu",
+ "▁infl u",
+ "▁to wards",
+ "▁toward s",
+ "ain ed",
+ "ai ned",
+ "aine d",
+ "a ined",
+ "▁r ank",
+ "▁ran k",
+ "▁ rank",
+ "▁Janu ar",
+ "▁com ponents",
+ "▁compon ents",
+ "▁component s",
+ "▁ components",
+ "ge st",
+ "ges t",
+ "g est",
+ "getElement ById",
+ "▁check ed",
+ "▁ checked",
+ "air s",
+ "ai rs",
+ "a irs",
+ "jo in",
+ "j oin",
+ "▁d ead",
+ "▁de ad",
+ "▁h it",
+ "▁hi t",
+ "▁ hit",
+ "én y",
+ "é ny",
+ "▁equ ivalent",
+ "▁equival ent",
+ "▁П ре",
+ "▁app ropri",
+ "Pa ss",
+ "P ass",
+ "▁pr imer",
+ "▁prim er",
+ "▁pri mer",
+ "▁prime r",
+ "engl isch",
+ "▁app ar",
+ "▁ap par",
+ "▁D uring",
+ "▁Du ring",
+ "▁Dur ing",
+ "▁know ledge",
+ "▁tr igger",
+ "▁trig ger",
+ "▁ trigger",
+ "▁c ore",
+ "▁cor e",
+ "▁co re",
+ "▁ core",
+ "▁O l",
+ "▁P rodu",
+ "▁Pro du",
+ "▁Pr odu",
+ "▁ Produ",
+ "▁F ern",
+ "▁Fe rn",
+ "▁Fer n",
+ "▁ Fern",
+ "▁на ча",
+ "▁ нача",
+ "T e",
+ "▁M ot",
+ "▁Mo t",
+ "er ve",
+ "erv e",
+ "тв о",
+ "т во",
+ "▁m id",
+ "▁mi d",
+ "▁ mid",
+ "▁fin ally",
+ "▁final ly",
+ "air es",
+ "ai res",
+ "aire s",
+ "a ires",
+ "▁es pecially",
+ "▁espe cially",
+ "▁especial ly",
+ "▁t ut",
+ "▁tu t",
+ "▁rece ive",
+ "ad re",
+ "adr e",
+ "▁ne igh",
+ "▁nei gh",
+ "kt et",
+ "kte t",
+ "il de",
+ "ild e",
+ "▁rad io",
+ "▁radi o",
+ "▁ radio",
+ "▁d river",
+ "▁dr iver",
+ "▁drive r",
+ "▁dri ver",
+ "▁driv er",
+ "▁ driver",
+ "ли сь",
+ "end encies",
+ "enden cies",
+ "▁I E",
+ "▁ IE",
+ "▁s aved",
+ "▁sa ved",
+ "▁sav ed",
+ "▁save d",
+ "▁ saved",
+ "ff ect",
+ "ffe ct",
+ "f fect",
+ "▁Way back",
+ "ia t",
+ "i at",
+ "▁p adding",
+ "▁pad ding",
+ "▁ padding",
+ "wind ow",
+ "w indow",
+ "ти че",
+ "▁m ur",
+ "▁mu r",
+ "ac tor",
+ "act or",
+ "a ctor",
+ "▁H an",
+ "▁Ha n",
+ "он аль",
+ "она ль",
+ "о наль",
+ "▁g ar",
+ "▁ga r",
+ "▁ gar",
+ "▁famil jen",
+ "ó s",
+ "▁n ationale",
+ "▁national e",
+ "▁nation ale",
+ "▁nat ionale",
+ "▁p ré",
+ "▁pr é",
+ "de d",
+ "d ed",
+ "on al",
+ "ona l",
+ "o nal",
+ "▁Pres ident",
+ "▁\\ ,",
+ "▁ \\,",
+ "▁place d",
+ "▁pla ced",
+ "er ni",
+ "ern i",
+ "▁sign al",
+ "▁sig nal",
+ "▁ signal",
+ "na b",
+ "n ab",
+ "h m",
+ "Mo n",
+ "M on",
+ "▁v s",
+ "▁ vs",
+ "S C",
+ "▁proget ti",
+ "▁ Ü",
+ "▁for ms",
+ "▁form s",
+ "▁ forms",
+ "▁message s",
+ "▁mess ages",
+ "▁ messages",
+ "in f",
+ "us ers",
+ "use rs",
+ "user s",
+ "u sers",
+ "GE T",
+ "G ET",
+ "▁d els",
+ "▁de ls",
+ "▁del s",
+ "Col lection",
+ "Coll ection",
+ "Collect ion",
+ "▁G ood",
+ "▁Go od",
+ "▁ Good",
+ "▁May be",
+ "▁ Maybe",
+ "▁com pr",
+ "▁comp r",
+ "▁lar ger",
+ "▁large r",
+ "▁larg er",
+ "gr es",
+ "gre s",
+ "g res",
+ "ap er",
+ "ape r",
+ "a per",
+ "▁П ри",
+ "un des",
+ "und es",
+ "unde s",
+ "▁s ea",
+ "▁se a",
+ "▁S pring",
+ "▁Sp ring",
+ "▁Spr ing",
+ "▁ Spring",
+ "ul o",
+ "u lo",
+ "▁me chan",
+ "▁s ans",
+ "▁sa ns",
+ "▁san s",
+ "G B",
+ "Val id",
+ "▁comm unic",
+ "▁commun ic",
+ "▁ communic",
+ "▁p ra",
+ "▁pr a",
+ "vi er",
+ "vie r",
+ "v ier",
+ "▁С е",
+ "▁a in",
+ "▁ai n",
+ "▁ ain",
+ "ту ра",
+ "тур а",
+ "ko m",
+ "k om",
+ "sk iego",
+ "ski ego",
+ "skie go",
+ "ко во",
+ "ков о",
+ "к ово",
+ "ad ata",
+ "ada ta",
+ "a data",
+ "▁Р е",
+ "▁bo olean",
+ "▁ boolean",
+ "se ts",
+ "set s",
+ "s ets",
+ "▁eff ort",
+ ". [",
+ "▁z ostał",
+ "P A",
+ "▁V ict",
+ "▁Vi ct",
+ "▁Vic t",
+ "S D",
+ "ow ał",
+ "owa ł",
+ "▁e mb",
+ "▁em b",
+ "▁ emb",
+ "▁pr ima",
+ "▁prim a",
+ "▁pri ma",
+ "▁h our",
+ "▁ho ur",
+ "▁ hour",
+ "sub section",
+ "▁F ort",
+ "▁For t",
+ "▁Fo rt",
+ "math frak",
+ "ig in",
+ "igi n",
+ "i gin",
+ "G L",
+ ") +",
+ "f i",
+ "▁an ci",
+ "▁anc i",
+ "▁ anci",
+ "▁p an",
+ "▁pa n",
+ "▁ pan",
+ "\\ )",
+ "▁l ug",
+ "▁lu g",
+ "▁dep loy",
+ "▁ deploy",
+ "do main",
+ "dom ain",
+ "▁s light",
+ "▁sl ight",
+ "JS ON",
+ "J SON",
+ "▁mor ning",
+ "▁h i",
+ "▁ hi",
+ "▁comp are",
+ "▁compar e",
+ "▁ compare",
+ "ij e",
+ "i je",
+ "▁bl ue",
+ "▁ blue",
+ "▁A c",
+ "▁ Ac",
+ "▁m iddle",
+ "▁ middle",
+ "an den",
+ "and en",
+ "ande n",
+ "▁sh ared",
+ "▁share d",
+ "▁ shared",
+ "▁C amp",
+ "▁Cam p",
+ "▁Ca mp",
+ "▁ Á",
+ "ound ed",
+ "oun ded",
+ "u w",
+ "ier ung",
+ "St ack",
+ "▁e ines",
+ "▁ein es",
+ "▁eine s",
+ "▁D a",
+ "▁ Da",
+ "li j",
+ "l ij",
+ "en ti",
+ "ent i",
+ "▁ й",
+ "U til",
+ "▁exper ience",
+ "▁experien ce",
+ "▁a wait",
+ "▁aw ait",
+ "▁ await",
+ "ul s",
+ "u ls",
+ "▁request s",
+ "▁requ ests",
+ "▁ requests",
+ "▁im pos",
+ "▁imp os",
+ "▁const raint",
+ "▁ constraint",
+ "Ch ange",
+ "em ph",
+ "emp h",
+ "бе р",
+ "б ер",
+ "▁An other",
+ "C ustom",
+ "▁signific ant",
+ "▁significa nt",
+ "c r",
+ "▁mill ion",
+ "re ek",
+ "ree k",
+ "▁d alla",
+ "▁da lla",
+ "▁dal la",
+ "▁dall a",
+ "▁G erm",
+ "▁Ge rm",
+ "▁Ger m",
+ "ot al",
+ "ota l",
+ "o tal",
+ "at eur",
+ "ate ur",
+ "bt n",
+ "b tn",
+ "▁th inking",
+ "▁think ing",
+ "▁thin king",
+ "▁inter val",
+ "▁ interval",
+ "on ne",
+ "onn e",
+ "▁l iv",
+ "▁li v",
+ "▁ liv",
+ "() :",
+ "( ):",
+ "▁В е",
+ "o e",
+ "▁E v",
+ "me ta",
+ "met a",
+ "m eta",
+ "▁b road",
+ "▁bro ad",
+ "Re m",
+ "R em",
+ "ap ply",
+ "app ly",
+ "a pply",
+ "▁cou ple",
+ "▁coup le",
+ "▁te chni",
+ "▁techn i",
+ "id ades",
+ "ida des",
+ "idad es",
+ "idade s",
+ "▁go al",
+ "▁ goal",
+ "▁C D",
+ "▁ CD",
+ "ha b",
+ "h ab",
+ "▁ex plan",
+ "▁exp lan",
+ "▁expla n",
+ "▁expl an",
+ "an ner",
+ "ann er",
+ "anne r",
+ "▁B ecause",
+ "bl og",
+ "blo g",
+ "b log",
+ "include graphics",
+ "▁vo ice",
+ "▁ voice",
+ "▁M ap",
+ "▁Ma p",
+ "▁ Map",
+ "vent ion",
+ "ven tion",
+ "v ention",
+ "S ession",
+ "▁L iens",
+ "▁Li ens",
+ "▁Lie ns",
+ "▁s or",
+ "▁so r",
+ "c ategory",
+ "ash ington",
+ "▁Mär z",
+ "po p",
+ "p op",
+ "il let",
+ "ill et",
+ "ille t",
+ "▁z wei",
+ "▁zwe i",
+ "▁zw ei",
+ "▁L ie",
+ "▁Li e",
+ "N ull",
+ "add ress",
+ "addr ess",
+ "▁f actor",
+ "▁fact or",
+ "▁fa ctor",
+ "▁fac tor",
+ "▁ factor",
+ "▁l igne",
+ "▁lig ne",
+ "▁HT TP",
+ "▁ HTTP",
+ "▁s uf",
+ "▁su f",
+ "▁person al",
+ "▁pers onal",
+ "▁persona l",
+ "ci p",
+ "c ip",
+ "▁D ar",
+ "▁Da r",
+ "▁a dm",
+ "▁ad m",
+ "ко й",
+ "▁E xt",
+ "▁Ex t",
+ "▁ Ext",
+ "▁g od",
+ "▁go d",
+ "▁ god",
+ "a a",
+ "R ight",
+ "ét é",
+ "é té",
+ "▁d ynamic",
+ "▁dynam ic",
+ "▁ dynamic",
+ "▁main tain",
+ "to r",
+ "t or",
+ "#### ####",
+ "▁F ra",
+ "▁Fr a",
+ "▁cho ice",
+ "▁ choice",
+ "▁с то",
+ "▁ст о",
+ "▁ сто",
+ "С Р",
+ "▁F eder",
+ "▁Fe der",
+ "▁Fed er",
+ "st on",
+ "sto n",
+ "s ton",
+ "▁f lag",
+ "▁fl ag",
+ "▁fla g",
+ "▁ flag",
+ "ki t",
+ "k it",
+ "Mod ule",
+ "▁с по",
+ "▁сп о",
+ "▁ спо",
+ "▁S tra",
+ "▁St ra",
+ "▁Str a",
+ "ic ks",
+ "ick s",
+ "i cks",
+ "▁h aven",
+ "▁ha ven",
+ "▁have n",
+ "▁hav en",
+ "▁M ass",
+ "▁Ma ss",
+ "▁Mas s",
+ "▁E mp",
+ "▁Em p",
+ "▁ Emp",
+ "▁P i",
+ "▁ Pi",
+ "▁P en",
+ "▁Pe n",
+ "Re ct",
+ "Rec t",
+ "R ect",
+ "▁K r",
+ "it at",
+ "ita t",
+ "i tat",
+ "el er",
+ "ele r",
+ "e ler",
+ "я бря",
+ "it et",
+ "ite t",
+ "▁St art",
+ "▁Sta rt",
+ "▁Star t",
+ "▁ Start",
+ "▁produ ced",
+ "▁produce d",
+ "▁по л",
+ "▁ пол",
+ "( _",
+ "▁de let",
+ "▁del et",
+ "▁h ot",
+ "▁ho t",
+ "▁ hot",
+ "▁Gesch ichte",
+ "~ ~",
+ "▁month s",
+ "▁mont hs",
+ "▁t od",
+ "▁to d",
+ "▁ tod",
+ "▁н и",
+ "▁ ни",
+ "ú s",
+ "te mp",
+ "tem p",
+ "t emp",
+ "▁D ez",
+ "▁De z",
+ "ype s",
+ "yp es",
+ "y pes",
+ "▁c ui",
+ "▁cu i",
+ "om mun",
+ "omm un",
+ "act ions",
+ "action s",
+ "a ctions",
+ "▁e igen",
+ "▁eig en",
+ "▁immedi ately",
+ "▁immediate ly",
+ "P L",
+ "▁Г о",
+ "▁B al",
+ "▁Ba l",
+ "▁ Bal",
+ "љ е",
+ "ul ui",
+ "ulu i",
+ "▁on line",
+ "▁ online",
+ "▁a ños",
+ "▁añ os",
+ "▁año s",
+ "▁name space",
+ "▁names pace",
+ "▁ namespace",
+ "▁m ond",
+ "▁mon d",
+ "▁mo nd",
+ "▁ mond",
+ "▁B ase",
+ "▁Bas e",
+ "▁Ba se",
+ "▁ Base",
+ "▁Can ada",
+ "▁Canad a",
+ "et zt",
+ "etz t",
+ "} -",
+ "▁de fin",
+ "▁def in",
+ "▁ defin",
+ "▁dou bt",
+ "▁doub t",
+ "▁inv estig",
+ "▁invest ig",
+ "view s",
+ "vie ws",
+ "▁L ine",
+ "▁Li ne",
+ "▁Lin e",
+ "▁ Line",
+ "▁st age",
+ "▁sta ge",
+ "▁stag e",
+ "▁ stage",
+ "ett ings",
+ "ub re",
+ "u bre",
+ "f loat",
+ "▁P lay",
+ "▁Pl ay",
+ "▁Pla y",
+ "▁ Play",
+ "▁L as",
+ "▁La s",
+ "pt r",
+ "p tr",
+ "▁be comes",
+ "▁become s",
+ "▁becom es",
+ "est amp",
+ "esta mp",
+ "▁in dependent",
+ "▁indep endent",
+ "▁independ ent",
+ "▁anal ysis",
+ "▁ analysis",
+ "▁L ook",
+ "▁Lo ok",
+ "▁ Look",
+ "la in",
+ "l ain",
+ "▁ра с",
+ "Re ference",
+ "▁s orry",
+ "▁sor ry",
+ "▁supp osed",
+ "▁suppose d",
+ "▁sup posed",
+ "û t",
+ "▁deg ree",
+ "ut z",
+ "u tz",
+ "M M",
+ "▁des ired",
+ "▁desire d",
+ "ł y",
+ "▁l en",
+ "▁le n",
+ "▁ len",
+ "▁al one",
+ "▁ alone",
+ "sign ed",
+ "sig ned",
+ "s igned",
+ "▁S ta",
+ "▁St a",
+ "Per son",
+ "Pers on",
+ "P erson",
+ "▁app lied",
+ "▁B ack",
+ "▁Ba ck",
+ "▁Bac k",
+ "▁ Back",
+ "▁m ars",
+ "▁ma rs",
+ "▁mar s",
+ "Par t",
+ "Pa rt",
+ "P art",
+ "▁D id",
+ "▁Di d",
+ "▁ Did",
+ "▁extern es",
+ "▁externe s",
+ "▁n p",
+ "▁ np",
+ "on go",
+ "ong o",
+ "▁e sta",
+ "▁est a",
+ "▁es ta",
+ "▁ esta",
+ "Bl ock",
+ "B lock",
+ "▁p ou",
+ "▁po u",
+ "ad ores",
+ "ado res",
+ "ador es",
+ "▁St udio",
+ "▁Stud io",
+ "▁ Studio",
+ ". $",
+ "▁re ached",
+ "▁reach ed",
+ "bo t",
+ "b ot",
+ "▁J uni",
+ "▁Ju ni",
+ "▁Jun i",
+ "to ns",
+ "ton s",
+ "t ons",
+ "it el",
+ "ite l",
+ "i tel",
+ "▁G ar",
+ "▁Ga r",
+ "▁art icles",
+ "▁article s",
+ "▁ articles",
+ "▁D istrict",
+ "▁Dist rict",
+ "▁tr ouble",
+ "▁trou ble",
+ "li de",
+ "l ide",
+ "▁F ound",
+ "▁Fou nd",
+ "▁Fo und",
+ "▁ Found",
+ "á d",
+ "▁e quip",
+ "▁equ ip",
+ "▁in ternal",
+ "▁int ernal",
+ "▁inter nal",
+ "▁intern al",
+ "▁ internal",
+ "'] ,",
+ "' ],",
+ "▁a sync",
+ "▁as ync",
+ "▁ async",
+ "U B",
+ "ge l",
+ "g el",
+ "▁a i",
+ "▁ ai",
+ "ens ure",
+ "▁app eared",
+ "▁appear ed",
+ "▁appe ared",
+ "▁$ _",
+ "▁ $_",
+ "▁max imum",
+ "▁maxim um",
+ "▁С и",
+ "р ь",
+ "▁ann oun",
+ "▁anno un",
+ "ла сь",
+ "▁c m",
+ "▁ cm",
+ "га н",
+ "г ан",
+ "au pt",
+ "a upt",
+ "▁l atter",
+ "▁lat ter",
+ "▁pl atform",
+ "▁plat form",
+ "▁ platform",
+ "▁d ra",
+ "▁dr a",
+ "▁ dra",
+ "▁cap ital",
+ "▁capit al",
+ "▁sol ved",
+ "▁solve d",
+ "ri z",
+ "r iz",
+ "ed ic",
+ "edi c",
+ "e dic",
+ "▁M ur",
+ "▁Mu r",
+ "▁T op",
+ "▁To p",
+ "▁ Top",
+ "т ся",
+ "Pa nel",
+ "Pane l",
+ "Pan el",
+ "P anel",
+ "ru le",
+ "r ule",
+ "et ic",
+ "eti c",
+ "▁R en",
+ "▁Re n",
+ "▁Wik imedia",
+ "▁ Wikimedia",
+ "▁T O",
+ "▁ TO",
+ "se cond",
+ "sec ond",
+ "is l",
+ "i sl",
+ "▁h y",
+ "▁ hy",
+ "▁n iet",
+ "▁nie t",
+ "▁ni et",
+ "▁lo aded",
+ "▁load ed",
+ "▁ loaded",
+ "di g",
+ "d ig",
+ "▁ma yo",
+ "▁may o",
+ "[ :",
+ "Ac c",
+ "A cc",
+ "▁b ek",
+ "▁be k",
+ "▁ bek",
+ "ни ю",
+ "lo gin",
+ "log in",
+ "t x",
+ "▁F ur",
+ "▁Fu r",
+ "▁S anta",
+ "▁San ta",
+ "▁Sant a",
+ "az z",
+ "a zz",
+ "▁con duct",
+ "▁cond uct",
+ "▁condu ct",
+ "▁In dia",
+ "▁Ind ia",
+ "Or der",
+ "Ord er",
+ "ir th",
+ "irt h",
+ "t w",
+ "} +",
+ "▁w ieder",
+ "▁wie der",
+ "▁E du",
+ "▁Ed u",
+ "A V",
+ "▁` ``",
+ "▁`` `",
+ "▁ ```",
+ "▁man ually",
+ "▁manual ly",
+ "▁R ead",
+ "▁Re ad",
+ "▁ Read",
+ "fortun ately",
+ "▁R un",
+ "▁Ru n",
+ "▁ Run",
+ "▁A ward",
+ "▁Aw ard",
+ "▁F oot",
+ "▁Foo t",
+ "▁Fo ot",
+ "▁ Foot",
+ "* )",
+ "par ams",
+ "param s",
+ "pa rams",
+ "para ms",
+ "п і",
+ "▁n ative",
+ "▁nat ive",
+ "▁ native",
+ "ri ft",
+ "rif t",
+ "r ift",
+ "▁ ä",
+ "AT H",
+ "A TH",
+ "▁your self",
+ "▁yours elf",
+ "▁p rior",
+ "▁pr ior",
+ "▁pri or",
+ "▁c it",
+ "▁ci t",
+ "▁ cit",
+ "ä h",
+ "▁tre at",
+ "▁me as",
+ "rib uted",
+ "ribute d",
+ "ribu ted",
+ "▁c lar",
+ "▁cl ar",
+ "▁cla r",
+ "▁ clar",
+ "ca rd",
+ "car d",
+ "c ard",
+ "RO R",
+ "R OR",
+ "il les",
+ "ill es",
+ "ille s",
+ "i lles",
+ "▁l ayer",
+ "▁la yer",
+ "▁lay er",
+ "▁ layer",
+ "au er",
+ "a uer",
+ "▁r at",
+ "▁ra t",
+ "▁ rat",
+ "bern ate",
+ "▁st ato",
+ "▁stat o",
+ "▁sta to",
+ "▁Ch ina",
+ "▁Chi na",
+ "▁$ ('#",
+ "▁$(' #",
+ "▁n aar",
+ "▁na ar",
+ "zi p",
+ "z ip",
+ "▁$ {\\",
+ "▁${ \\",
+ "▁appreci ated",
+ "▁appreciate d",
+ "▁и ме",
+ "▁им е",
+ "ż y",
+ "▁prze z",
+ "▁prz ez",
+ "▁Ind ian",
+ "▁India n",
+ "▁T od",
+ "▁To d",
+ "▁S ource",
+ "▁ Source",
+ "▁дру ги",
+ "in ternal",
+ "int ernal",
+ "inter nal",
+ "intern al",
+ "ion ale",
+ "ional e",
+ "iona le",
+ "Pro duct",
+ "Produ ct",
+ "▁M en",
+ "▁Me n",
+ "▁ Men",
+ "▁u pper",
+ "▁up per",
+ "▁upp er",
+ "▁ upper",
+ "▁E very",
+ "▁Ev ery",
+ "▁Ever y",
+ "▁ Every",
+ "}, \\",
+ "} ,\\",
+ "▁print f",
+ "▁prin tf",
+ "▁ printf",
+ "▁contin ued",
+ "▁continu ed",
+ "▁continue d",
+ "▁n odes",
+ "▁no des",
+ "▁node s",
+ "▁nod es",
+ "▁ nodes",
+ "л ки",
+ "▁n ice",
+ "▁ni ce",
+ "▁nic e",
+ "▁ nice",
+ "mod ules",
+ "module s",
+ "ei gn",
+ "e ign",
+ "▁M ex",
+ "▁Me x",
+ "▁Acc ording",
+ "▁un defined",
+ "▁und efined",
+ "▁ undefined",
+ "▁b inary",
+ "▁bin ary",
+ "▁ binary",
+ "cu t",
+ "c ut",
+ "Cur rent",
+ "C urrent",
+ "ed y",
+ "e dy",
+ "}} {",
+ "} }{",
+ "ble s",
+ "bl es",
+ "b les",
+ "▁во й",
+ "▁ вой",
+ "sc ri",
+ "scr i",
+ "s cri",
+ "eq n",
+ "Ch anged",
+ "Change d",
+ "▁kö z",
+ "▁rem ote",
+ "▁ remote",
+ "в ля",
+ "▁qu el",
+ "▁que l",
+ "▁q uel",
+ "▁ quel",
+ "▁al ign",
+ "▁ali gn",
+ "▁ align",
+ "▁п ар",
+ "▁па р",
+ "▁ пар",
+ "S V",
+ "ye r",
+ "y er",
+ "▁Cal iforn",
+ "▁p laces",
+ "▁pl aces",
+ "▁place s",
+ "▁pla ces",
+ "▁prim ary",
+ "▁pri mary",
+ "▁prima ry",
+ "▁ primary",
+ "▁con v",
+ "▁ conv",
+ "▁J uli",
+ "▁Jul i",
+ "▁Ju li",
+ "▁vis ual",
+ "▁ visual",
+ "▁S elect",
+ "▁Se lect",
+ "▁Sel ect",
+ "▁Sele ct",
+ "▁ Select",
+ "at ory",
+ "ator y",
+ "ato ry",
+ "= (",
+ "is er",
+ "ise r",
+ "i ser",
+ "▁int ent",
+ "▁inte nt",
+ "▁inten t",
+ "▁ intent",
+ "su r",
+ "s ur",
+ "cont ainer",
+ "ic ed",
+ "ice d",
+ "i ced",
+ "▁bo ard",
+ "▁ board",
+ "as tr",
+ "ast r",
+ "a str",
+ "om ial",
+ "omi al",
+ "ве т",
+ "в ет",
+ "з ва",
+ "▁c ru",
+ "▁cr u",
+ "▁Ok tober",
+ "sa ve",
+ "s ave",
+ "▁gre ater",
+ "▁great er",
+ "▁in n",
+ "▁i nn",
+ "▁ inn",
+ "▁p icture",
+ "▁ picture",
+ "▁Т о",
+ "▁obtain ed",
+ "▁obt ained",
+ "Wik imedia",
+ "ú blic",
+ "▁l ors",
+ "▁lo rs",
+ "▁m ont",
+ "▁mon t",
+ "▁mo nt",
+ "▁ mont",
+ "ob re",
+ "o bre",
+ "▁c ivil",
+ "▁ci vil",
+ "▁civ il",
+ "▁const ruction",
+ "▁construct ion",
+ "▁constru ction",
+ "▁W elt",
+ "▁We lt",
+ "▁Wel t",
+ "▁U nder",
+ "▁Un der",
+ "▁Und er",
+ "▁ Under",
+ "und ert",
+ "under t",
+ "unde rt",
+ "▁ed ge",
+ "▁ edge",
+ "▁L iste",
+ "▁List e",
+ "▁Li ste",
+ "▁Lis te",
+ "cs v",
+ "c sv",
+ "▁ex periment",
+ "▁exper iment",
+ "local host",
+ "▁E dit",
+ "▁Ed it",
+ "▁ Edit",
+ "gr eg",
+ "gre g",
+ "g reg",
+ "ov á",
+ "o vá",
+ "љ а",
+ "ms g",
+ "m sg",
+ "▁G reen",
+ "▁Gr een",
+ "▁Gre en",
+ "▁Gree n",
+ "▁ Green",
+ "Di alog",
+ "D ialog",
+ "Id ent",
+ "I dent",
+ "▁J S",
+ "▁ JS",
+ "^{ (",
+ "^ {(",
+ "▁slä ktet",
+ "__ __",
+ "___ _",
+ "_ ___",
+ "Pro ject",
+ "▁bes kre",
+ "▁b er",
+ "▁be r",
+ "▁ ber",
+ "▁would n",
+ "▁re act",
+ "▁ react",
+ "He l",
+ "H el",
+ "z w",
+ "▁W ashington",
+ "or ie",
+ "ori e",
+ "o rie",
+ "ta sk",
+ "t ask",
+ "▁c ategory",
+ "▁categ ory",
+ "▁categor y",
+ "▁ category",
+ "▁art ist",
+ "an no",
+ "ann o",
+ "▁o ok",
+ "▁ ook",
+ "am men",
+ "amm en",
+ "▁Min ister",
+ "▁de clar",
+ "▁dec lar",
+ "▁decl ar",
+ "▁decla r",
+ "▁K ey",
+ "▁Ke y",
+ "▁ Key",
+ ", .",
+ "▁m ach",
+ "▁ma ch",
+ "▁mac h",
+ "▁w w",
+ "▁ ww",
+ "is en",
+ "ise n",
+ "i sen",
+ "Fr an",
+ "F ran",
+ "▁Ро сси",
+ "▁Рос си",
+ "бо р",
+ "б ор",
+ "т ри",
+ "▁r ock",
+ "▁ro ck",
+ "▁ rock",
+ "qu is",
+ "qui s",
+ "q uis",
+ "mo s",
+ "m os",
+ "пе ра",
+ "пер а",
+ "п ера",
+ "▁est erni",
+ "▁g old",
+ "▁go ld",
+ "▁gol d",
+ "Window s",
+ "W indows",
+ "% %",
+ "▁part ial",
+ "▁parti al",
+ "▁ partial",
+ "▁we ight",
+ "▁ weight",
+ "▁s pr",
+ "▁sp r",
+ "▁ spr",
+ "}) .",
+ "} ).",
+ "▁fran çais",
+ "fu n",
+ "f un",
+ "▁th ous",
+ "▁thou s",
+ "ho lder",
+ "hol der",
+ "hold er",
+ "h older",
+ "▁g one",
+ "▁go ne",
+ "▁ Č",
+ "▁re nd",
+ "▁r end",
+ "▁ren d",
+ "▁ rend",
+ "D A",
+ "▁answer ed",
+ "▁F alse",
+ "▁Fal se",
+ "▁ False",
+ "B uffer",
+ "▁d augh",
+ "▁da ugh",
+ ".- -",
+ ". --",
+ "▁S how",
+ "▁Sh ow",
+ "▁Sho w",
+ "▁ Show",
+ "▁re ct",
+ "▁r ect",
+ "▁rec t",
+ "▁ rect",
+ "▁K re",
+ "▁Kr e",
+ "d r",
+ "os oph",
+ "oso ph",
+ "▁y ield",
+ "ur ity",
+ "uri ty",
+ "to String",
+ "av al",
+ "ava l",
+ "a val",
+ "Po l",
+ "P ol",
+ "▁l ock",
+ "▁lo ck",
+ "▁loc k",
+ "▁ lock",
+ "im ation",
+ "ima tion",
+ "imat ion",
+ "ant ic",
+ "anti c",
+ "Lo cal",
+ "Loc al",
+ "L ocal",
+ "▁beskre vs",
+ "it és",
+ "ité s",
+ "gr id",
+ "g rid",
+ "у т",
+ "▁_ {",
+ "▁ _{",
+ "с і",
+ "FI LE",
+ "▁к м",
+ "▁spe ak",
+ "sum mary",
+ "pr op",
+ "pro p",
+ "p rop",
+ "java script",
+ "j avascript",
+ "z k",
+ "izont al",
+ "izon tal",
+ "▁tr ois",
+ "▁tro is",
+ "▁R od",
+ "▁Ro d",
+ "pr ise",
+ "ро во",
+ "ров о",
+ "р ово",
+ "▁o dd",
+ "▁od d",
+ "▁ odd",
+ "▁g est",
+ "▁ge st",
+ "▁ges t",
+ "▁ gest",
+ "▁produ ce",
+ "▁prod uce",
+ "▁w aar",
+ "▁wa ar",
+ "▁A v",
+ "▁ Av",
+ "ri bu",
+ "rib u",
+ "ва ння",
+ "ван ня",
+ "▁fin ished",
+ "▁finish ed",
+ "▁ad apt",
+ "▁S ar",
+ "▁Sa r",
+ "text it",
+ "tex tit",
+ "▁C e",
+ "▁F a",
+ "▁ Fa",
+ "os en",
+ "ose n",
+ "o sen",
+ "▁de riv",
+ "▁der iv",
+ "▁s hip",
+ "▁sh ip",
+ "▁ ship",
+ "▁o pin",
+ "▁op in",
+ "▁E ven",
+ "▁Ev en",
+ "ge sch",
+ "ges ch",
+ "g esch",
+ "▁supp ose",
+ "▁sup pose",
+ "▁F er",
+ "▁Fe r",
+ "ско е",
+ "▁w orden",
+ "▁word en",
+ "▁wor den",
+ "se y",
+ "s ey",
+ "hl ine",
+ "h line",
+ "▁Un ion",
+ "▁ Union",
+ "▁/ **",
+ "▁/* *",
+ "▁ /**",
+ "▁v ez",
+ "▁ve z",
+ "▁ vez",
+ "▁Colleg amenti",
+ "▁Soci ety",
+ "▁Soc iety",
+ "▁e conom",
+ "▁econ om",
+ "▁ec onom",
+ "š í",
+ "o i",
+ "▁or ient",
+ "▁ orient",
+ "▁T eil",
+ "▁Te il",
+ "re nt",
+ "ren t",
+ "r ent",
+ "ле кс",
+ "лек с",
+ "▁s olid",
+ "▁sol id",
+ "▁c art",
+ "▁car t",
+ "▁ca rt",
+ "▁ cart",
+ "******** ********",
+ "▁c ab",
+ "▁ca b",
+ "▁M essage",
+ "▁Mess age",
+ "▁ Message",
+ "do ts",
+ "dot s",
+ "d ots",
+ "▁é g",
+ "▁ ég",
+ "▁t we",
+ "▁tw e",
+ "ag a",
+ "a ga",
+ "▁n az",
+ "▁na z",
+ "▁M icrosoft",
+ "▁Micro soft",
+ "▁ Microsoft",
+ "▁under arter",
+ "pp en",
+ "ppe n",
+ "p pen",
+ "▁re cent",
+ "▁rec ent",
+ "▁rece nt",
+ "▁n et",
+ "▁ne t",
+ "▁ net",
+ "▁res ources",
+ "▁resource s",
+ "▁ resources",
+ "St e",
+ "S te",
+ ". \\",
+ "▁S O",
+ "▁ SO",
+ "ло м",
+ "л ом",
+ "▁c ele",
+ "▁ce le",
+ "▁cel e",
+ "▁l ic",
+ "▁li c",
+ "▁ lic",
+ "▁ben ef",
+ "▁bene f",
+ "ld ots",
+ "l dots",
+ "▁se rial",
+ "▁ser ial",
+ "▁seria l",
+ "▁ serial",
+ "In teger",
+ "cl es",
+ "cle s",
+ "c les",
+ "▁m iles",
+ "▁mil es",
+ "▁mi les",
+ "▁mile s",
+ "▁A le",
+ "▁Al e",
+ "▁en tered",
+ "▁ent ered",
+ "▁enter ed",
+ "▁T wo",
+ "▁Tw o",
+ "▁ Two",
+ "wi e",
+ "w ie",
+ "▁in cludes",
+ "▁incl udes",
+ "▁includ es",
+ "▁include s",
+ "▁inclu des",
+ "▁ includes",
+ "▁E ach",
+ "▁ Each",
+ "el ling",
+ "ell ing",
+ "elli ng",
+ "qu er",
+ "que r",
+ "q uer",
+ "▁D om",
+ "▁Do m",
+ "▁ Dom",
+ "p f",
+ "W S",
+ "▁stra ight",
+ "▁S tan",
+ "▁St an",
+ "▁Sta n",
+ "▁n os",
+ "▁no s",
+ "▁ nos",
+ "í cul",
+ "at ro",
+ "atr o",
+ "▁C enter",
+ "▁Cent er",
+ "▁ Center",
+ "F T",
+ "▁In ga",
+ "▁Ing a",
+ "il o",
+ "i lo",
+ "▁w ww",
+ "▁ww w",
+ "▁ www",
+ "js fiddle",
+ "ni c",
+ "n ic",
+ "▁Europe an",
+ "▁com mer",
+ "▁comm er",
+ "▁comme r",
+ "▁g irl",
+ "▁gi rl",
+ "▁gir l",
+ "to tal",
+ "tot al",
+ "t otal",
+ "▁S tar",
+ "▁St ar",
+ "▁Sta r",
+ "▁ Star",
+ "▁sugg ested",
+ "▁suggest ed",
+ "pa l",
+ "p al",
+ "▁zw ischen",
+ "пи са",
+ "пис а",
+ "I M",
+ "▁hand ler",
+ "▁handle r",
+ "▁ handler",
+ "▁Pro gram",
+ "▁Pr ogram",
+ "▁ Program",
+ "xs l",
+ "x sl",
+ "ál y",
+ "á ly",
+ "B U",
+ ",- -",
+ ", --",
+ "▁v id",
+ "▁vi d",
+ "▁ vid",
+ "▁estab lished",
+ "▁establish ed",
+ "▁S piel",
+ "▁Sp iel",
+ "om etry",
+ "ome try",
+ "omet ry",
+ "un es",
+ "une s",
+ "u nes",
+ "▁s it",
+ "▁si t",
+ "▁in her",
+ "▁p uis",
+ "▁pu is",
+ "▁ puis",
+ "▁ être",
+ "▁M ost",
+ "▁Mo st",
+ "▁Mos t",
+ "He ader",
+ "Head er",
+ "in sert",
+ "ins ert",
+ "▁s ist",
+ "▁si st",
+ "▁f avor",
+ "▁fa vor",
+ "▁fav or",
+ "de st",
+ "des t",
+ "d est",
+ "▁ent ity",
+ "▁ entity",
+ "Ca l",
+ "C al",
+ "▁There fore",
+ "D D",
+ "; ;",
+ "▁Dez ember",
+ "▁R h",
+ "im ents",
+ "iment s",
+ "imen ts",
+ "i ments",
+ "▁return ing",
+ "st o",
+ "s to",
+ "▁Val ue",
+ "▁ Value",
+ "▁l iber",
+ "▁li ber",
+ "▁lib er",
+ "▁Res ult",
+ "▁ Result",
+ "▁b ind",
+ "▁bi nd",
+ "▁bin d",
+ "▁ bind",
+ "vo ir",
+ "v oir",
+ "▁T im",
+ "▁Ti m",
+ "▁ Tim",
+ "▁M ovie",
+ "▁Mo vie",
+ "▁Mov ie",
+ "▁ Movie",
+ "we g",
+ "w eg",
+ "ke t",
+ "k et",
+ "▁и сто",
+ "▁ис то",
+ "▁fri ends",
+ "▁friend s",
+ "▁f n",
+ "▁ fn",
+ "▁é l",
+ "▁ él",
+ "▁& =",
+ "▁ &=",
+ "ar den",
+ "ard en",
+ "arde n",
+ "ff icial",
+ "ffic ial",
+ "▁comm unity",
+ "▁commun ity",
+ "▁ community",
+ "▁a pi",
+ "▁ap i",
+ "▁ api",
+ "Ar gs",
+ "Arg s",
+ "ie ren",
+ "ier en",
+ "iere n",
+ "i eren",
+ "▁d ann",
+ "▁da nn",
+ "▁dan n",
+ "om orph",
+ "ad r",
+ "a dr",
+ "lo op",
+ "l oop",
+ "um an",
+ "uma n",
+ "u man",
+ "▁v ous",
+ "▁vo us",
+ "▁vou s",
+ "▁ vous",
+ "bs t",
+ "b st",
+ "sub mit",
+ "\\ |",
+ "ти н",
+ "т ин",
+ "Cont ainer",
+ "as ket",
+ "ask et",
+ "? )",
+ "Se c",
+ "S ec",
+ "▁d rive",
+ "▁dr ive",
+ "▁dri ve",
+ "▁driv e",
+ "▁ drive",
+ "As s",
+ "A ss",
+ "▁s we",
+ "▁sw e",
+ "▁a mer",
+ "▁am er",
+ "▁ amer",
+ "▁m ine",
+ "▁min e",
+ "▁mi ne",
+ "▁ mine",
+ "▁H am",
+ "▁Ha m",
+ "▁av ait",
+ "▁ avait",
+ "▁H on",
+ "▁Ho n",
+ "▁a près",
+ "▁ap rès",
+ "▁apr ès",
+ "▁ après",
+ "▁M ann",
+ "▁Man n",
+ "▁Ma nn",
+ "сь ка",
+ "ськ а",
+ "▁incre ase",
+ "▁t y",
+ "▁ ty",
+ "sk y",
+ "s ky",
+ "▁acc ur",
+ "▁ac cur",
+ "art icle",
+ "we ight",
+ "weig ht",
+ "▁s ex",
+ "▁se x",
+ "▁ sex",
+ "▁list ade",
+ "▁lista de",
+ "/* *",
+ "/ **",
+ "▁est á",
+ "}} $",
+ "} }$",
+ "ar go",
+ "arg o",
+ "def ine",
+ "defin e",
+ "▁со став",
+ "▁соста в",
+ "s ession",
+ "ad s",
+ "a ds",
+ "ст ви",
+ "ств и",
+ "▁L aw",
+ "▁La w",
+ "▁d ialog",
+ "▁di alog",
+ "▁dia log",
+ "▁ dialog",
+ "▁dup licate",
+ "▁é p",
+ "▁ ép",
+ "▁v oc",
+ "▁vo c",
+ "fr i",
+ "f ri",
+ "▁g reen",
+ "▁gr een",
+ "▁gre en",
+ "▁ green",
+ "▁h idden",
+ "▁hid den",
+ "▁ hidden",
+ "▁Is land",
+ "▁di ag",
+ "▁dia g",
+ "ow ej",
+ "owe j",
+ "my sql",
+ "mys ql",
+ "mysq l",
+ "te il",
+ "tei l",
+ "t eil",
+ "r ä",
+ "ik an",
+ "ika n",
+ "i kan",
+ "▁Jos é",
+ "al ed",
+ "ale d",
+ "a led",
+ "Run time",
+ "R untime",
+ "▁t rain",
+ "▁tr ain",
+ "▁tra in",
+ "▁ train",
+ "▁Di vision",
+ "▁Div ision",
+ "ни ц",
+ "▁S pan",
+ "▁Sp an",
+ "▁ Span",
+ "ни ма",
+ "ним а",
+ ")= \\",
+ ") =\\",
+ "та н",
+ "т ан",
+ "▁st ay",
+ "▁sta y",
+ "▁f oo",
+ "▁fo o",
+ "▁ foo",
+ "▁acc om",
+ "▁ac com",
+ "▁h ers",
+ "▁he rs",
+ "▁her s",
+ "▁на у",
+ "▁M ün",
+ "ide os",
+ "ideo s",
+ "st atic",
+ "stat ic",
+ "▁re ady",
+ "▁read y",
+ "▁ ready",
+ "] `",
+ "▁vis ible",
+ "▁vi sible",
+ "▁ visible",
+ "▁H ope",
+ "▁Ho pe",
+ "▁Hop e",
+ "ul ated",
+ "ula ted",
+ "ulate d",
+ "▁C ult",
+ "▁Cu lt",
+ "ст ро",
+ "стр о",
+ "с тро",
+ "C o",
+ "▁sm aller",
+ "▁small er",
+ "at ura",
+ "atur a",
+ "atu ra",
+ "▁perfect ly",
+ "re q",
+ "r eq",
+ "▁pro posed",
+ "▁prop osed",
+ "▁propos ed",
+ "▁propose d",
+ "▁deg li",
+ "Se arch",
+ "S earch",
+ "▁i ch",
+ "▁ic h",
+ "▁ ich",
+ "Ma x",
+ "M ax",
+ "▁vol ume",
+ "▁ volume",
+ "exec ute",
+ "gr e",
+ "g re",
+ "▁s port",
+ "▁sp ort",
+ "▁spo rt",
+ "ud ad",
+ "uda d",
+ "P T",
+ "▁Rec ords",
+ "▁Record s",
+ "▁c ook",
+ "▁co ok",
+ "▁ cook",
+ "▁exp and",
+ "▁ expand",
+ "б і",
+ "▁al tri",
+ "▁alt ri",
+ "pp et",
+ "ppe t",
+ "p pet",
+ "ar se",
+ "ars e",
+ "▁w et",
+ "▁we t",
+ "▁B ob",
+ "▁Bo b",
+ "▁ Bob",
+ "▁F C",
+ "▁ FC",
+ "▁Associ ation",
+ "uj e",
+ "u je",
+ "▁f el",
+ "▁fe l",
+ "▁ fel",
+ "▁с лу",
+ "▁ слу",
+ "▁B ig",
+ "▁Bi g",
+ "▁ Big",
+ "/ \\",
+ "G e",
+ "wh ile",
+ "{ (",
+ "▁su fficient",
+ "Pos ition",
+ "P osition",
+ "▁under standing",
+ "▁understand ing",
+ "▁n ue",
+ "▁nu e",
+ "▁r az",
+ "▁ra z",
+ "▁ raz",
+ "▁y e",
+ "▁ ye",
+ "he m",
+ "h em",
+ "N um",
+ "▁Pro ject",
+ "▁ Project",
+ "▁I ts",
+ "▁It s",
+ "▁h asta",
+ "▁ha sta",
+ "▁has ta",
+ "▁hast a",
+ "en so",
+ "ens o",
+ "▁w ire",
+ "▁wir e",
+ "▁ wire",
+ "Re t",
+ "R et",
+ "u j",
+ "pro of",
+ "▁re levant",
+ "▁relev ant",
+ "▁part ir",
+ "▁parti r",
+ "▁a go",
+ "▁ag o",
+ "▁ ago",
+ "if icate",
+ "ific ate",
+ "ifica te",
+ "▁d omin",
+ "▁do min",
+ "▁dom in",
+ "▁ domin",
+ "▁b oy",
+ "▁bo y",
+ "▁ boy",
+ "▁p lant",
+ "▁pl ant",
+ "▁pla nt",
+ "▁plan t",
+ "▁ plant",
+ "▁enc oding",
+ "▁ encoding",
+ "▁th rows",
+ "▁thr ows",
+ "▁throw s",
+ "▁thro ws",
+ "▁R ock",
+ "▁Ro ck",
+ "▁Roc k",
+ "zo ne",
+ "zon e",
+ "z one",
+ "ga ng",
+ "gan g",
+ "g ang",
+ "wid get",
+ "w idget",
+ "▁interest ing",
+ "DE R",
+ "D ER",
+ "▁d emon",
+ "▁de mon",
+ "▁dem on",
+ "▁demo n",
+ "▁off ice",
+ "▁offic e",
+ "▁ office",
+ "am t",
+ "a mt",
+ "ät er",
+ "ä ter",
+ "▁Wh ite",
+ "▁Whit e",
+ "▁ White",
+ "▁v ersch",
+ "▁ver sch",
+ "▁vers ch",
+ "▁die ser",
+ "▁dies er",
+ "▁diese r",
+ "▁M ount",
+ "▁Mo unt",
+ "▁Mou nt",
+ "▁ Mount",
+ "▁stud ents",
+ "▁student s",
+ "▁P ub",
+ "▁Pu b",
+ "▁ Pub",
+ "▁Д е",
+ "ij a",
+ "i ja",
+ "▁C y",
+ "▁ Cy",
+ "▁Californ ia",
+ "▁ab ril",
+ "äl l",
+ "ä ll",
+ "▁ч ем",
+ "▁че м",
+ "T V",
+ "▁m és",
+ "▁mé s",
+ "▁decl ared",
+ "▁decla red",
+ "▁declar ed",
+ "▁declare d",
+ "▁ ю",
+ "ő l",
+ "ap pa",
+ "app a",
+ "a ppa",
+ "▁Б е",
+ "ec ho",
+ "ech o",
+ "e cho",
+ "num er",
+ "nu mer",
+ "n umer",
+ "▁po sted",
+ "▁pos ted",
+ "▁post ed",
+ "▁poste d",
+ "▁в ер",
+ "▁ве р",
+ "▁ вер",
+ "▁годи не",
+ "▁we ak",
+ "▁ weak",
+ "▁Re public",
+ "▁Rep ublic",
+ "▁Repub lic",
+ "▁ch ampion",
+ "▁champ ion",
+ "ensure math",
+ "you r",
+ "yo ur",
+ "y our",
+ "▁O ber",
+ "▁Ob er",
+ "▁Cent ral",
+ "is a",
+ "i sa",
+ "ан д",
+ "а нд",
+ "y y",
+ "▁full y",
+ "▁ful ly",
+ "▁ fully",
+ "▁S D",
+ "▁ SD",
+ "▁Lin ux",
+ "▁ Linux",
+ "▁Sc ott",
+ "▁Scot t",
+ "part ment",
+ "ko n",
+ "k on",
+ "▁cont ract",
+ "▁contr act",
+ "▁contra ct",
+ "▁O F",
+ "▁ OF",
+ "▁a le",
+ "▁al e",
+ "▁ ale",
+ "▁A nn",
+ "▁An n",
+ "▁на д",
+ "▁ над",
+ "la h",
+ "l ah",
+ "▁N ext",
+ "▁Ne xt",
+ "▁ Next",
+ "or en",
+ "ore n",
+ "o ren",
+ "▁d isk",
+ "▁di sk",
+ "▁dis k",
+ "▁ disk",
+ "▁e g",
+ "▁ eg",
+ "at u",
+ "a tu",
+ "ло ги",
+ "лог и",
+ "▁g ames",
+ "▁game s",
+ "▁ga mes",
+ "▁gam es",
+ "Le ft",
+ "L eft",
+ "▁l u",
+ "▁ lu",
+ "▁fin ite",
+ "▁finit e",
+ "▁ finite",
+ "▁к и",
+ "▁ ки",
+ "▁cr ash",
+ "▁cra sh",
+ "ph er",
+ "phe r",
+ "p her",
+ "ex e",
+ "e xe",
+ "AT ION",
+ "▁br other",
+ "▁bro ther",
+ "En g",
+ "E ng",
+ "ta t",
+ "t at",
+ "▁In teger",
+ "▁ Integer",
+ "но му",
+ "ном у",
+ "н ому",
+ "▁col on",
+ "▁co lon",
+ "▁ colon",
+ "i qu",
+ ")) .",
+ ") ).",
+ "iv i",
+ "i vi",
+ "▁M ethod",
+ "▁Met hod",
+ "▁ Method",
+ "ar ten",
+ "art en",
+ "arte n",
+ "Un i",
+ "U ni",
+ "ve ctor",
+ "vec tor",
+ "v ector",
+ "▁w ood",
+ "▁wo od",
+ "▁ wood",
+ "р т",
+ "▁Л е",
+ "▁siè cle",
+ "▁g ent",
+ "▁ge nt",
+ "▁gen t",
+ "▁ gent",
+ "} \r",
+ "▁cont ents",
+ "▁content s",
+ "▁conten ts",
+ "▁ contents",
+ "▁com pan",
+ "▁comp an",
+ "G o",
+ "▁j ou",
+ "▁jo u",
+ "▁ jou",
+ "ue nt",
+ "uen t",
+ "u ent",
+ "As ync",
+ "A sync",
+ "print f",
+ "▁M odel",
+ "▁Mod el",
+ "▁Mo del",
+ "▁Mode l",
+ "▁ Model",
+ "▁ke pt",
+ "AS E",
+ "A SE",
+ "▁prov ides",
+ "▁provide s",
+ "▁Ab gerufen",
+ "▁G all",
+ "▁Gal l",
+ "▁Ga ll",
+ "▁Al f",
+ "S A",
+ "▁M em",
+ "▁Me m",
+ "▁ Mem",
+ "▁k ter",
+ "▁ kter",
+ "▁B ru",
+ "▁Br u",
+ "And roid",
+ "( :",
+ "▁У краї",
+ "▁Укра ї",
+ "N e",
+ "M in",
+ "at r",
+ "a tr",
+ "▁H al",
+ "▁Ha l",
+ "de lete",
+ "del ete",
+ "od o",
+ "o do",
+ "▁n ão",
+ "èn e",
+ "è ne",
+ "▁calcul ate",
+ "▁calc ulate",
+ "Js on",
+ "J son",
+ "ke ys",
+ "key s",
+ "не й",
+ "н ей",
+ "▁h ence",
+ "▁hen ce",
+ "▁o w",
+ "▁ ow",
+ "▁L ib",
+ "▁Li b",
+ "▁ Lib",
+ "en o",
+ "e no",
+ "▁L ove",
+ "▁Lo ve",
+ "▁Lov e",
+ "os i",
+ "o si",
+ "wi de",
+ "wid e",
+ "w ide",
+ "▁s core",
+ "▁sc ore",
+ "▁ score",
+ "ful l",
+ "fu ll",
+ "f ull",
+ "во д",
+ "в од",
+ "▁determ ine",
+ "▁determin e",
+ "▁s paces",
+ "▁sp aces",
+ "▁space s",
+ "▁spac es",
+ "▁ spaces",
+ "ло ва",
+ "лов а",
+ "л ова",
+ "▁pe ut",
+ "▁peu t",
+ "ér al",
+ "éra l",
+ "é ral",
+ "ó ł",
+ "▁app oint",
+ "▁ap point",
+ "▁T w",
+ "▁ Tw",
+ "< ?",
+ "▁Or der",
+ "▁Ord er",
+ "▁ Order",
+ "▁h op",
+ "▁ho p",
+ "ran dom",
+ "rand om",
+ "r andom",
+ "ca che",
+ "c ache",
+ "▁dest roy",
+ "▁ destroy",
+ "▁r ace",
+ "▁ra ce",
+ "▁rac e",
+ "▁ race",
+ "T ag",
+ "▁r id",
+ "▁ri d",
+ "▁ rid",
+ "▁neg ative",
+ "▁ negative",
+ "Ca r",
+ "C ar",
+ "ens ional",
+ "ension al",
+ "d k",
+ "▁c ro",
+ "▁cr o",
+ "▁ cro",
+ "▁TH EN",
+ "▁THE N",
+ "▁$ .",
+ "▁ $.",
+ "en sk",
+ "ens k",
+ "N E",
+ "H O",
+ "▁k le",
+ "▁kl e",
+ "osp ital",
+ "kt e",
+ "k te",
+ "fér ences",
+ "férence s",
+ "ud es",
+ "ude s",
+ "u des",
+ "I R",
+ "ot ion",
+ "oti on",
+ "o tion",
+ "▁Re al",
+ "▁ Real",
+ "▁Febru ar",
+ "и н",
+ "▁O ld",
+ "▁Ol d",
+ "▁ Old",
+ "ко го",
+ "к ого",
+ "le ich",
+ "lei ch",
+ "▁ р",
+ "ía n",
+ "í an",
+ "▁г а",
+ "▁ га",
+ "ci de",
+ "cid e",
+ "c ide",
+ "la b",
+ "l ab",
+ "▁p ull",
+ "▁pu ll",
+ "▁pul l",
+ "▁ pull",
+ "▁' /",
+ "Lo ng",
+ "L ong",
+ ", $",
+ "▁appropri ate",
+ "▁бы ла",
+ "▁был а",
+ "f ühr",
+ "▁M edia",
+ "▁Me dia",
+ "▁Med ia",
+ "▁Medi a",
+ "▁ Media",
+ "▁m anner",
+ "▁man ner",
+ "▁Г е",
+ "de scription",
+ "des cription",
+ "Be an",
+ "▁L ar",
+ "▁La r",
+ "▁ Lar",
+ "'] ;",
+ "' ];",
+ "▁re lation",
+ "▁rel ation",
+ "▁rela tion",
+ "▁ relation",
+ "▁S orry",
+ "▁Sor ry",
+ "ha r",
+ "h ar",
+ "cp p",
+ "c pp",
+ "▁K o",
+ "▁exec ution",
+ "▁execut ion",
+ "▁ execution",
+ "in os",
+ "ino s",
+ "i nos",
+ "▁b ul",
+ "▁bu l",
+ "▁ bul",
+ "gr ade",
+ "gra de",
+ "grad e",
+ "g rade",
+ "▁M u",
+ "▁p il",
+ "▁pi l",
+ "wr it",
+ "w rit",
+ "ific ations",
+ "ification s",
+ "in ese",
+ "ine se",
+ "ines e",
+ "▁Ph ili",
+ "▁Phil i",
+ "d x",
+ "▁le ading",
+ "▁lead ing",
+ "▁ leading",
+ "▁J ournal",
+ "ov ed",
+ "ove d",
+ "o ved",
+ "▁cont ro",
+ "▁contr o",
+ "но ва",
+ "нов а",
+ "н ова",
+ "Y es",
+ "▁ch annel",
+ "▁ channel",
+ ")) ,",
+ ") ),",
+ "is ten",
+ "ist en",
+ "iste n",
+ "i sten",
+ "ak a",
+ "a ka",
+ "To String",
+ "ma s",
+ "m as",
+ "▁e tt",
+ "▁et t",
+ "▁ ett",
+ "▁for ces",
+ "▁force s",
+ "ul ations",
+ "ulation s",
+ "▁C all",
+ "▁Cal l",
+ "▁Ca ll",
+ "▁ Call",
+ "▁explan ation",
+ "or ing",
+ "ori ng",
+ "o ring",
+ "AT A",
+ "A TA",
+ "ch ter",
+ "cht er",
+ "chte r",
+ "wh en",
+ "w hen",
+ "V C",
+ "▁Jah rh",
+ "▁Jahr h",
+ "Ca se",
+ "C ase",
+ "▁comm ands",
+ "▁command s",
+ "▁ commands",
+ "▁r ich",
+ "▁ric h",
+ "▁ri ch",
+ "▁ rich",
+ "bu s",
+ "b us",
+ "F e",
+ "mb ox",
+ "m box",
+ "▁re con",
+ "▁rec on",
+ "ñ o",
+ "▁s hape",
+ "▁sh ape",
+ "▁ shape",
+ "ow y",
+ "o wy",
+ "en try",
+ "ent ry",
+ "entr y",
+ "it able",
+ "ita ble",
+ "i table",
+ "▁e lection",
+ "▁el ection",
+ "▁elect ion",
+ "▁ele ction",
+ "є ться",
+ "▁p rep",
+ "▁pr ep",
+ "▁pre p",
+ "▁ prep",
+ "v á",
+ "▁in fin",
+ "▁inf in",
+ "lo t",
+ "l ot",
+ "▁bo oks",
+ "▁book s",
+ "▁ books",
+ "▁U SA",
+ "▁US A",
+ "▁ USA",
+ "ли н",
+ "л ин",
+ "▁p om",
+ "▁po m",
+ "▁ pom",
+ "▁n as",
+ "▁na s",
+ "▁ nas",
+ "▁t ags",
+ "▁tag s",
+ "▁ta gs",
+ "▁ tags",
+ "▁exec uted",
+ "▁execute d",
+ "▁execut ed",
+ "ail le",
+ "ai lle",
+ "a ille",
+ "lu ng",
+ "l ung",
+ "▁Java Script",
+ "▁ JavaScript",
+ "▁b all",
+ "▁bal l",
+ "▁ba ll",
+ "▁ ball",
+ "▁ain si",
+ "▁P ri",
+ "▁Pr i",
+ "{ $",
+ "▁U N",
+ "▁ UN",
+ "▁R am",
+ "▁Ra m",
+ "▁h ear",
+ "▁he ar",
+ "▁U buntu",
+ ">( );",
+ ">() ;",
+ "> ();",
+ "▁p ure",
+ "▁pu re",
+ "▁pur e",
+ "▁em bed",
+ "▁emb ed",
+ "▁ embed",
+ "a ção",
+ "cont roller",
+ "control ler",
+ "▁mar ried",
+ "▁F ol",
+ "▁Fo l",
+ "fa mil",
+ "f amil",
+ "▁p rec",
+ "▁pr ec",
+ "▁pre c",
+ "▁ prec",
+ "▁rec urs",
+ "pa d",
+ "p ad",
+ "istr ation",
+ "istra tion",
+ "▁respect ively",
+ "▁respective ly",
+ "[ $",
+ "au tor",
+ "aut or",
+ "auto r",
+ "a utor",
+ "▁g rav",
+ "▁gr av",
+ "▁gra v",
+ "ie ra",
+ "ier a",
+ "i era",
+ "az ioni",
+ "azi oni",
+ "a zioni",
+ "▁B ul",
+ "▁Bu l",
+ "▁Austral ia",
+ "mon d",
+ "mo nd",
+ "m ond",
+ "▁T ro",
+ "▁Tr o",
+ "▁E le",
+ "▁El e",
+ "pack ages",
+ "package s",
+ "ms dn",
+ "▁A ls",
+ "▁Al s",
+ "▁pr zy",
+ "▁prz y",
+ "AR T",
+ "A RT",
+ "▁char ge",
+ "▁charg e",
+ "▁ charge",
+ "▁app lications",
+ "▁application s",
+ "▁applic ations",
+ "Un it",
+ "Uni t",
+ "U nit",
+ "ar en",
+ "are n",
+ "a ren",
+ "▁sud den",
+ "om eter",
+ "ome ter",
+ "omet er",
+ "o meter",
+ "▁d ot",
+ "▁do t",
+ "▁ dot",
+ "ac ji",
+ "a cji",
+ "кт ор",
+ "кто р",
+ "к тор",
+ "im in",
+ "imi n",
+ "i min",
+ "en ing",
+ "eni ng",
+ "e ning",
+ "▁d onde",
+ "▁do nde",
+ "▁don de",
+ "▁H o",
+ "tr ee",
+ "tre e",
+ "t ree",
+ "m b",
+ "▁d rag",
+ "▁dr ag",
+ "▁dra g",
+ "▁ drag",
+ "aj e",
+ "a je",
+ "▁in valid",
+ "▁ invalid",
+ "▁fin ish",
+ "la im",
+ "▁f eed",
+ "▁fe ed",
+ "▁fee d",
+ "▁ feed",
+ "▁N ap",
+ "▁Na p",
+ "ro om",
+ "r oom",
+ "im ages",
+ "ima ges",
+ "image s",
+ "▁са й",
+ "▁su cc",
+ "▁suc c",
+ "if fer",
+ "iff er",
+ "iffe r",
+ "▁a ño",
+ "▁añ o",
+ "▁c ual",
+ "▁cu al",
+ "ме ри",
+ "мер и",
+ "D R",
+ "▁B ilder",
+ "▁Bi lder",
+ "▁Bild er",
+ "▁Bil der",
+ "б ра",
+ "ra it",
+ "rai t",
+ "r ait",
+ "pa n",
+ "p an",
+ "ен ь",
+ "е нь",
+ "▁dist inct",
+ "▁K n",
+ "ön ig",
+ "ö nig",
+ "an ced",
+ "ance d",
+ "anc ed",
+ "▁lo ading",
+ "▁load ing",
+ "▁ loading",
+ "▁Te chn",
+ "▁S el",
+ "▁Se l",
+ "mu s",
+ "m us",
+ "▁r ail",
+ "▁ra il",
+ "▁st udent",
+ "▁stud ent",
+ "▁ student",
+ "▁not ice",
+ "▁s la",
+ "▁sl a",
+ "▁Д а",
+ "▁gu ard",
+ "▁ guard",
+ "▁D ay",
+ "▁Da y",
+ "▁ Day",
+ "ва ли",
+ "вал и",
+ "в али",
+ "Op tion",
+ "Opt ion",
+ "O ption",
+ "ais on",
+ "ai son",
+ "a ison",
+ "ip p",
+ "i pp",
+ "▁J un",
+ "▁Ju n",
+ "▁f ell",
+ "▁fe ll",
+ "▁fel l",
+ "▁ab solute",
+ "▁absol ute",
+ "▁ absolute",
+ "ов е",
+ "о ве",
+ "de bug",
+ "deb ug",
+ "▁S ud",
+ "▁Su d",
+ "п ы",
+ "ug ins",
+ "ugin s",
+ "▁view s",
+ "▁vie ws",
+ "▁ views",
+ "la y",
+ "l ay",
+ "▁s urr",
+ "▁su rr",
+ "▁sur r",
+ "▁st ood",
+ "▁sto od",
+ "▁ stood",
+ "▁в і",
+ "▁ ві",
+ "select ed",
+ "sel ected",
+ "г і",
+ "▁att ributes",
+ "▁attribute s",
+ "▁ attributes",
+ "fin al",
+ "fi nal",
+ "f inal",
+ "en da",
+ "end a",
+ "▁B on",
+ "▁Bo n",
+ "ne rs",
+ "ner s",
+ "n ers",
+ "▁W er",
+ "▁We r",
+ "bu r",
+ "b ur",
+ "it tel",
+ "itt el",
+ "itte l",
+ "▁m oving",
+ "▁mov ing",
+ "▁mo ving",
+ "▁P lan",
+ "▁Pl an",
+ "▁Pla n",
+ "▁ Plan",
+ "is ches",
+ "isch es",
+ "ische s",
+ "isc hes",
+ "J ava",
+ "▁b asis",
+ "▁bas is",
+ "▁B us",
+ "▁Bu s",
+ "▁ Bus",
+ "▁A u",
+ "▁I ll",
+ "▁Il l",
+ "▁ Ill",
+ "▁вре мя",
+ "▁ц ент",
+ "▁ цент",
+ "hand le",
+ "сту п",
+ "▁F ar",
+ "▁Fa r",
+ "▁o raz",
+ "▁or az",
+ "▁ora z",
+ "oc r",
+ "o cr",
+ "▁se it",
+ "▁sei t",
+ "on der",
+ "ond er",
+ "onde r",
+ "o nder",
+ "до м",
+ "д ом",
+ ": /",
+ "ch or",
+ "cho r",
+ "c hor",
+ "▁T own",
+ "▁To wn",
+ "▁Tow n",
+ "▁def init",
+ "▁defin it",
+ "re act",
+ "rea ct",
+ "▁pie ce",
+ "▁Kar l",
+ "▁Ka rl",
+ "C I",
+ "▁App lication",
+ "▁ Application",
+ "un ter",
+ "unt er",
+ "unte r",
+ "▁for med",
+ "▁form ed",
+ "▁forme d",
+ "▁ formed",
+ "▁п у",
+ "▁ пу",
+ "B o",
+ "▁Dan iel",
+ "▁ Daniel",
+ "▁п ла",
+ "▁ пла",
+ "Bo dy",
+ "B ody",
+ "}) $",
+ "} )$",
+ "▁бы ли",
+ "▁был и",
+ "▁e arth",
+ "▁ear th",
+ "г ла",
+ "Th ere",
+ "The re",
+ "T here",
+ "▁с тра",
+ "▁ст ра",
+ "▁ стра",
+ "▁v ille",
+ "▁vi lle",
+ "▁vill e",
+ "▁vil le",
+ "▁ ville",
+ "▁c entre",
+ "▁cent re",
+ ") \r",
+ "▁help ful",
+ "▁+ +",
+ "▁ ++",
+ "▁C G",
+ "▁ CG",
+ "iz ione",
+ "izi one",
+ "izio ne",
+ "i zione",
+ "▁G ame",
+ "▁Ga me",
+ "▁Gam e",
+ "▁ Game",
+ "▁Wh ich",
+ "▁p ip",
+ "▁pi p",
+ "▁ pip",
+ "▁Port ug",
+ "D S",
+ "▁de scribe",
+ "▁des cribe",
+ "▁descri be",
+ "▁check ing",
+ "▁man ager",
+ "▁manage r",
+ "▁ manager",
+ "B O",
+ "▁B undes",
+ "▁Bund es",
+ "▁Bun des",
+ "bu ch",
+ "b uch",
+ "▁dec ided",
+ "▁decide d",
+ "▁decid ed",
+ "▁Jahrh undert",
+ "▁f if",
+ "▁fi f",
+ "▁ fif",
+ "e fficient",
+ "an ci",
+ "anc i",
+ "br aries",
+ "bra ries",
+ "▁f ails",
+ "▁fa ils",
+ "▁fail s",
+ "▁k ernel",
+ "▁ker nel",
+ "▁ kernel",
+ "▁G l",
+ "▁N acional",
+ "▁pro ceed",
+ "▁proc eed",
+ "▁f uer",
+ "▁fue r",
+ "▁fu er",
+ "▁l iving",
+ "▁li ving",
+ "▁liv ing",
+ "▁success fully",
+ "▁successful ly",
+ "▁f aster",
+ "▁fa ster",
+ "▁fast er",
+ "▁fas ter",
+ "▁con tre",
+ "▁cont re",
+ "▁contr e",
+ "▁ contre",
+ "▁pr ison",
+ "▁pri son",
+ "▁pris on",
+ "OR T",
+ "O RT",
+ "he lp",
+ "hel p",
+ "▁a utor",
+ "▁au tor",
+ "▁aut or",
+ "▁auto r",
+ "▁ autor",
+ "ła w",
+ "ł aw",
+ "aj ą",
+ "a ją",
+ "▁A rm",
+ "▁Ar m",
+ "▁ Arm",
+ "▁pro vin",
+ "▁prov in",
+ "▁na am",
+ "/ #",
+ "se d",
+ "s ed",
+ "▁g esch",
+ "▁ge sch",
+ "▁ges ch",
+ "▁ gesch",
+ "▁м ар",
+ "▁ма р",
+ "▁ мар",
+ "es k",
+ "e sk",
+ "ter m",
+ "te rm",
+ "t erm",
+ "▁T ex",
+ "▁Te x",
+ "▁ Tex",
+ "ir ing",
+ "iri ng",
+ "i ring",
+ "▁t ools",
+ "▁to ols",
+ "▁too ls",
+ "▁tool s",
+ "▁ tools",
+ "PD F",
+ "P DF",
+ "▁u lt",
+ "▁ul t",
+ "▁ ult",
+ "iss enschaft",
+ "issen schaft",
+ "▁could n",
+ "di ng",
+ "din g",
+ "d ing",
+ "De p",
+ "D ep",
+ "{ -",
+ "▁pre dict",
+ "▁pred ict",
+ "▁ predict",
+ "ant age",
+ "anta ge",
+ "▁L ike",
+ "▁Li ke",
+ "▁ Like",
+ "▁Б и",
+ "to ols",
+ "tool s",
+ "t ools",
+ "es tra",
+ "est ra",
+ "estr a",
+ "e stra",
+ "▁k i",
+ "▁ ki",
+ "▁J im",
+ "▁Ji m",
+ "st ar",
+ "sta r",
+ "s tar",
+ "▁re mark",
+ "▁r emark",
+ "▁rem ark",
+ "▁ remark",
+ "ó g",
+ "na bla",
+ "nab la",
+ "▁Al though",
+ "mod e",
+ "mo de",
+ "m ode",
+ "H ost",
+ "▁st range",
+ "▁str ange",
+ "▁stran ge",
+ "No ne",
+ "Non e",
+ "N one",
+ "bl ack",
+ "bla ck",
+ "b lack",
+ "▁F estival",
+ "▁Fest ival",
+ "▁I S",
+ "▁ IS",
+ "an za",
+ "anz a",
+ "▁( -",
+ "▁ (-",
+ "ic ket",
+ "ick et",
+ "i cket",
+ "ко ла",
+ "кол а",
+ "▁J es",
+ "▁Je s",
+ "▁f lex",
+ "▁fl ex",
+ "▁fle x",
+ "▁ flex",
+ "▁ À",
+ "▁N etwork",
+ "▁Net work",
+ "▁ Network",
+ "▁E X",
+ "▁ EX",
+ "▁e nero",
+ "▁en ero",
+ "▁ener o",
+ "! ”",
+ "▁O rt",
+ "▁Or t",
+ "▁al ors",
+ "▁Or iginal",
+ "▁Origin al",
+ "▁Orig inal",
+ "▁ Original",
+ "▁z o",
+ "▁ zo",
+ "ны ми",
+ "ным и",
+ "▁s pl",
+ "▁sp l",
+ "▁ spl",
+ "Dra w",
+ "Dr aw",
+ "D raw",
+ "yo nd",
+ "y ond",
+ "─ ─",
+ "▁O t",
+ "▁d ram",
+ "▁dr am",
+ "▁dra m",
+ "▁di vision",
+ "▁div ision",
+ "▁divis ion",
+ "▁e fficient",
+ "▁effic ient",
+ "▁ efficient",
+ "▁Г а",
+ "▁v ier",
+ "▁vi er",
+ "▁vie r",
+ "▁ vier",
+ "na k",
+ "n ak",
+ "L S",
+ "▁sp irit",
+ "▁spir it",
+ "zeich net",
+ "▁d ici",
+ "▁di ci",
+ "▁dic i",
+ "cl ear",
+ "cle ar",
+ "c lear",
+ "co py",
+ "cop y",
+ "c opy",
+ "ya r",
+ "y ar",
+ "▁ро ці",
+ "us qu",
+ "u squ",
+ "▁n ous",
+ "▁no us",
+ "▁nou s",
+ "▁b lev",
+ "▁bl ev",
+ "▁ble v",
+ "ж де",
+ "Ar g",
+ "A rg",
+ "▁per formed",
+ "▁perform ed",
+ "▁M ake",
+ "▁Ma ke",
+ "▁Mak e",
+ "▁ Make",
+ "▁Car ol",
+ "▁Ca rol",
+ "et to",
+ "ett o",
+ "e tto",
+ "▁S and",
+ "▁San d",
+ "▁Sa nd",
+ "▁D isc",
+ "▁Dis c",
+ "▁Di sc",
+ "En c",
+ "E nc",
+ "re ro",
+ "rer o",
+ "r ero",
+ "ha sh",
+ "has h",
+ "h ash",
+ "▁f ocus",
+ "▁fo cus",
+ "▁foc us",
+ "▁ focus",
+ "▁att ention",
+ "▁a gre",
+ "▁ag re",
+ "▁agr e",
+ "▁di vis",
+ "▁div is",
+ "▁бы ло",
+ "▁был о",
+ "▁e j",
+ "▁ ej",
+ "▁m arch",
+ "▁mar ch",
+ "▁marc h",
+ "▁ph ase",
+ "▁ phase",
+ "ía s",
+ "í as",
+ "▁ph il",
+ "▁P ap",
+ "▁Pa p",
+ "▁r iver",
+ "▁riv er",
+ "▁ri ver",
+ "▁ river",
+ "▁c aused",
+ "▁caus ed",
+ "▁cause d",
+ "▁ca used",
+ "pl ugin",
+ "▁Te am",
+ "▁ Team",
+ "ul er",
+ "ule r",
+ "u ler",
+ "▁$ (\"#",
+ "▁$(\" #",
+ "ie j",
+ "i ej",
+ "I SBN",
+ "na m",
+ "n am",
+ "▁f ight",
+ "▁fig ht",
+ "vi d",
+ "v id",
+ "▁L ud",
+ "▁Lu d",
+ "Select ed",
+ ":@ \"",
+ ": @\"",
+ "▁P od",
+ "▁Po d",
+ "▁ Pod",
+ "▁ann ées",
+ "▁année s",
+ "ar ios",
+ "ari os",
+ "ario s",
+ "a rios",
+ "▁deutsch er",
+ "▁deutsche r",
+ "▁N A",
+ "▁ NA",
+ "▁и ю",
+ "▁d ictionary",
+ "▁diction ary",
+ "▁ dictionary",
+ "▁Л а",
+ "▁T ri",
+ "▁Tr i",
+ "▁ Tri",
+ "è n",
+ "▁polit ical",
+ "rid ge",
+ "r idge",
+ "at ten",
+ "att en",
+ "atte n",
+ "▁circ le",
+ "▁cir cle",
+ "▁ circle",
+ "▁trans port",
+ "▁ transport",
+ "em as",
+ "ema s",
+ "e mas",
+ "F C",
+ "▁replace d",
+ "▁repla ced",
+ "▁A ud",
+ "▁Au d",
+ "is ka",
+ "isk a",
+ "i ska",
+ "Config uration",
+ "▁so ort",
+ "▁Н е",
+ "▁s equ",
+ "▁se qu",
+ "▁seq u",
+ "▁ sequ",
+ "PR O",
+ "P RO",
+ "▁b ud",
+ "▁bu d",
+ "▁ bud",
+ "▁{ {",
+ "▁ {{",
+ "lie ß",
+ "l ieß",
+ "▁M as",
+ "▁Ma s",
+ "de rs",
+ "der s",
+ "d ers",
+ "us ammen",
+ "es a",
+ "e sa",
+ "▁L y",
+ "в ро",
+ "ma c",
+ "m ac",
+ "▁и спо",
+ "▁ис по",
+ "▁s uc",
+ "▁su c",
+ "u y",
+ "▁ill ustr",
+ "▁prim era",
+ "▁prime ra",
+ "▁primer a",
+ "il ation",
+ "ila tion",
+ "i lation",
+ "▁st orage",
+ "▁stor age",
+ "▁sto rage",
+ "▁ storage",
+ "▁par ams",
+ "▁para ms",
+ "▁param s",
+ "▁pa rams",
+ "▁ params",
+ "ka z",
+ "k az",
+ "▁term inal",
+ "▁termin al",
+ "ра ль",
+ "рал ь",
+ "р аль",
+ "▁h olds",
+ "▁hold s",
+ "▁hol ds",
+ "▁ holds",
+ "ло сь",
+ "▁n ad",
+ "▁na d",
+ "▁ nad",
+ "” .",
+ "▁oct ubre",
+ "bu l",
+ "b ul",
+ "▁h us",
+ "▁hu s",
+ "▁ hus",
+ "UL T",
+ "U LT",
+ "▁ég alement",
+ "▁M ill",
+ "▁Mil l",
+ "▁Mi ll",
+ "▁ Mill",
+ "ła d",
+ "ł ad",
+ "▁cont iene",
+ "\" ?",
+ "▁> >>",
+ "▁>> >",
+ "Qu e",
+ "Q ue",
+ " ",
+ "▁p lain",
+ "▁pl ain",
+ "▁pla in",
+ "▁ plain",
+ "at iva",
+ "ativ a",
+ "ati va",
+ "oc ker",
+ "ock er",
+ "o cker",
+ "Name s",
+ "Na mes",
+ "N ames",
+ "▁J ud",
+ "▁Ju d",
+ "▁ag ree",
+ "▁agre e",
+ "▁agr ee",
+ "▁G emeinde",
+ "▁Geme inde",
+ "la re",
+ "lar e",
+ "l are",
+ "ка за",
+ "каз а",
+ "▁st arts",
+ "▁start s",
+ "▁star ts",
+ "▁ starts",
+ "▁p rice",
+ "▁pr ice",
+ "▁pri ce",
+ "▁ price",
+ "T arget",
+ "cu s",
+ "c us",
+ "▁Inst ead",
+ ". ;",
+ "▁altern ative",
+ "▁alter native",
+ "▁в ла",
+ "I E",
+ "▁organ iz",
+ "in u",
+ "i nu",
+ "▁comp leted",
+ "▁comple ted",
+ "▁complet ed",
+ "▁complete d",
+ "▁car ry",
+ "at om",
+ "ato m",
+ "a tom",
+ "▁dep ending",
+ "▁depend ing",
+ "▁O ur",
+ "▁in sp",
+ "▁ins p",
+ "▁& \\",
+ "▁ &\\",
+ "ail y",
+ "ai ly",
+ "a ily",
+ "ir ection",
+ "ire ction",
+ "irect ion",
+ "ф а",
+ "▁d efe",
+ "▁de fe",
+ "▁def e",
+ "TA C",
+ "T AC",
+ "▁de signed",
+ "▁des igned",
+ "▁design ed",
+ "▁v oir",
+ "▁vo ir",
+ "▁ voir",
+ "bre ak",
+ "▁part ie",
+ "▁parti e",
+ "▁J ahren",
+ "▁Jah ren",
+ "▁Jahr en",
+ "▁Jahre n",
+ "▁Ja hren",
+ "▁st udio",
+ "▁stud io",
+ "▁studi o",
+ "▁ studio",
+ "▁j our",
+ "▁jo ur",
+ "▁jou r",
+ "▁N otes",
+ "▁No tes",
+ "▁Not es",
+ "▁Note s",
+ "fi re",
+ "fir e",
+ "f ire",
+ "ho use",
+ "hou se",
+ "h ouse",
+ "su ccess",
+ "▁J uan",
+ "▁Ju an",
+ "J S",
+ "▁C ustom",
+ "▁ Custom",
+ "▁b esch",
+ "▁be sch",
+ "▁bes ch",
+ "▁st ated",
+ "▁stat ed",
+ "▁state d",
+ "▁sta ted",
+ "boot strap",
+ "öt t",
+ "ö tt",
+ "oz zá",
+ "▁C ON",
+ "▁CO N",
+ "▁ CON",
+ "ha v",
+ "h av",
+ "▁s leep",
+ "▁sle ep",
+ "▁ sleep",
+ "ed a",
+ "e da",
+ "ho t",
+ "h ot",
+ "án d",
+ "á nd",
+ "▁S y",
+ "▁tem ps",
+ "▁temp s",
+ "▁ temps",
+ "am ar",
+ "ama r",
+ "a mar",
+ "▁s cal",
+ "▁sc al",
+ "▁ scal",
+ "▁a st",
+ "▁as t",
+ "▁ ast",
+ "▁op ening",
+ "▁open ing",
+ "cli pse",
+ "clip se",
+ "c lipse",
+ "▁program ming",
+ "▁ programming",
+ "▁let ters",
+ "▁letter s",
+ "▁lett ers",
+ "▁pro file",
+ "▁prof ile",
+ "▁profil e",
+ "▁ profile",
+ "na h",
+ "n ah",
+ "▁be yond",
+ "▁Fur ther",
+ "face s",
+ "fa ces",
+ "fac es",
+ "f aces",
+ "▁c hart",
+ "▁ch art",
+ "▁char t",
+ "▁cha rt",
+ "▁ chart",
+ "зд а",
+ "з да",
+ "ai gn",
+ "a ign",
+ "ні й",
+ "н ій",
+ "▁R ol",
+ "▁Ro l",
+ "ова но",
+ "ован о",
+ "ter ior",
+ "te rior",
+ "we d",
+ "w ed",
+ "▁her self",
+ "▁hers elf",
+ "▁n g",
+ "▁ ng",
+ "angu ages",
+ "anguage s",
+ "}= \\",
+ "} =\\",
+ "ynam ic",
+ "yna mic",
+ "▁j ug",
+ "▁ju g",
+ "▁Ex ample",
+ "▁ Example",
+ "▁( †",
+ "▁play ing",
+ "▁pla ying",
+ "▁us age",
+ "▁ usage",
+ "▁man aged",
+ "▁manage d",
+ "▁ managed",
+ "▁N atur",
+ "▁Nat ur",
+ "те ри",
+ "тер и",
+ "▁E t",
+ "er ia",
+ "eri a",
+ "e ria",
+ "▁daugh ter",
+ "ни ем",
+ "ние м",
+ "F ragment",
+ "▁h ol",
+ "▁ho l",
+ "▁ hol",
+ "F l",
+ "огра фи",
+ "ограф и",
+ "о графи",
+ "▁i hn",
+ "▁ih n",
+ "ü h",
+ "inst ance",
+ "▁com un",
+ "▁co mun",
+ "▁tr uth",
+ "▁са мо",
+ "▁сам о",
+ "▁implement ed",
+ "▁any way",
+ "▁C ro",
+ "▁Cr o",
+ "ф е",
+ "G C",
+ "ub untu",
+ "u buntu",
+ "ty pes",
+ "type s",
+ "typ es",
+ "t ypes",
+ "ê s",
+ ".~ \\",
+ ". ~\\",
+ "fo ld",
+ "fol d",
+ "f old",
+ "▁jo ined",
+ "▁join ed",
+ "? ?",
+ "▁m é",
+ "▁ mé",
+ "▁w ild",
+ "▁wil d",
+ "к лю",
+ "row ser",
+ "rows er",
+ "▁H ome",
+ "▁Ho me",
+ "▁Hom e",
+ "▁ Home",
+ "sk iej",
+ "ski ej",
+ "skie j",
+ "s kiej",
+ "▁J OIN",
+ "▁ju in",
+ "ho f",
+ "h of",
+ "▁data set",
+ "▁dat aset",
+ "▁datas et",
+ "▁ dataset",
+ "ж ду",
+ "') )",
+ "' ))",
+ "▁mie js",
+ "AP I",
+ "A PI",
+ "▁ed ited",
+ "▁edit ed",
+ "ool s",
+ "oo ls",
+ "o ols",
+ "▁se eing",
+ "▁see ing",
+ "ij d",
+ "i jd",
+ "▁pro cedure",
+ "▁proced ure",
+ "▁B ras",
+ "▁Br as",
+ "▁Bra s",
+ "▁s igned",
+ "▁sign ed",
+ "▁sig ned",
+ "▁ signed",
+ "▁extern os",
+ "▁dis app",
+ "▁D irect",
+ "▁Di rect",
+ "▁Dire ct",
+ "▁Dir ect",
+ "▁ Direct",
+ "cy c",
+ "c yc",
+ "▁cons ult",
+ "ör d",
+ "ö rd",
+ "W idget",
+ "ci ous",
+ "cio us",
+ "c ious",
+ "se ct",
+ "sec t",
+ "s ect",
+ "▁Д и",
+ "▁w ind",
+ "▁win d",
+ "▁ wind",
+ "▁Archiv ado",
+ "am l",
+ "a ml",
+ "с с",
+ "W h",
+ "kb d",
+ "k bd",
+ "▁Ar my",
+ "▁Arm y",
+ "▁s uffer",
+ "▁suf fer",
+ "▁suff er",
+ "art ifact",
+ "▁resol ve",
+ "▁ resolve",
+ "▁S port",
+ "▁Sp ort",
+ "▁Spo rt",
+ "▁ц е",
+ "▁ це",
+ "id as",
+ "ida s",
+ "i das",
+ "▁t ax",
+ "▁ta x",
+ "▁ tax",
+ "id i",
+ "i di",
+ "▁a ctions",
+ "▁act ions",
+ "▁action s",
+ "▁ actions",
+ "пр а",
+ "п ра",
+ "pu és",
+ "p ués",
+ "▁n aj",
+ "▁na j",
+ "F alse",
+ "▁ch ance",
+ "▁та ко",
+ "▁так о",
+ "ä d",
+ "▁d ol",
+ "▁do l",
+ "▁en v",
+ "▁ env",
+ "▁bas ically",
+ "▁basic ally",
+ "▁Coun cil",
+ "zt e",
+ "z te",
+ "▁display ed",
+ "ni l",
+ "n il",
+ "comp lete",
+ "comple te",
+ "▁L em",
+ "▁Le m",
+ "ian ce",
+ "i ance",
+ "▁ос нов",
+ "▁de pend",
+ "▁dep end",
+ "pl om",
+ "ens us",
+ "ut s",
+ "u ts",
+ "▁H ot",
+ "▁Ho t",
+ "▁ Hot",
+ "bit r",
+ "bi tr",
+ "▁valid ation",
+ "▁ validation",
+ "ab b",
+ "a bb",
+ "▁т ре",
+ "▁ тре",
+ "k m",
+ "z d",
+ "ö ff",
+ "W E",
+ "▁inter ested",
+ "▁interest ed",
+ "▁{ \"",
+ "▁ {\"",
+ "ar o",
+ "a ro",
+ "▁cor rel",
+ "▁corre l",
+ "▁corr el",
+ "▁d edic",
+ "▁de dic",
+ "▁ded ic",
+ "▁l ists",
+ "▁list s",
+ "▁ lists",
+ "▁Bibli ografia",
+ "▁ear lier",
+ "pr ogram",
+ "pro gram",
+ "prog ram",
+ "▁prem ière",
+ "▁premi ère",
+ "fr ont",
+ "f ront",
+ "T ab",
+ "ст ву",
+ "ств у",
+ "dr op",
+ "dro p",
+ "d rop",
+ "▁f ear",
+ "▁fe ar",
+ "▁En laces",
+ "▁C apt",
+ "▁Cap t",
+ "▁Ca pt",
+ "▁ Capt",
+ "▁real iz",
+ "▁h al",
+ "▁ha l",
+ "▁ hal",
+ "▁inst ances",
+ "▁instance s",
+ "▁su sp",
+ "▁sus p",
+ "il ling",
+ "ill ing",
+ "illi ng",
+ "% ;",
+ "{ }",
+ "| |",
+ "▁part ition",
+ "▁parti tion",
+ "▁ partition",
+ "▁Bu ild",
+ "▁ Build",
+ "▁w o",
+ "▁ wo",
+ "▁П ер",
+ "▁Пе р",
+ "▁direct or",
+ "▁dire ctor",
+ "▁dir ector",
+ "▁S in",
+ "▁Si n",
+ "ти я",
+ "rs g",
+ "r sg",
+ "ou ver",
+ "ouv er",
+ "ouve r",
+ "▁near ly",
+ "od a",
+ "o da",
+ "кти в",
+ "к тив",
+ "▁s ir",
+ "▁si r",
+ "IM E",
+ "I ME",
+ "▁jan vier",
+ "▁W in",
+ "▁Wi n",
+ "▁ Win",
+ "Bu ild",
+ "ie urs",
+ "ieu rs",
+ "ieur s",
+ "i eurs",
+ "IN E",
+ "I NE",
+ "d ouble",
+ "La st",
+ "L ast",
+ "▁pol icy",
+ "▁polic y",
+ "▁ policy",
+ "st ore",
+ "sto re",
+ "stor e",
+ "▁obser ved",
+ "▁observ ed",
+ "▁observe d",
+ "▁obs erved",
+ "▁famil ie",
+ "ni ca",
+ "nic a",
+ "n ica",
+ "re y",
+ "r ey",
+ "з ь",
+ "▁Y ear",
+ "▁Ye ar",
+ "▁ Year",
+ "▁develop ed",
+ "▁deve loped",
+ "▁Inst itute",
+ "▁Instit ute",
+ "▁Institut e",
+ "▁re ply",
+ "▁rep ly",
+ "Com ple",
+ "Comp le",
+ "ic ian",
+ "ici an",
+ "icia n",
+ "i cian",
+ "▁G uer",
+ "▁Gu er",
+ "▁d all",
+ "▁da ll",
+ "▁dal l",
+ "▁d esp",
+ "▁de sp",
+ "▁des p",
+ "▁Foot ball",
+ "Em pty",
+ "Emp ty",
+ "ck en",
+ "cke n",
+ "c ken",
+ "un da",
+ "und a",
+ "▁U r",
+ "▁i g",
+ "▁ ig",
+ "▁A tl",
+ "▁At l",
+ "aut hor",
+ "auth or",
+ "▁B ol",
+ "▁Bo l",
+ "zi g",
+ "z ig",
+ "na t",
+ "n at",
+ "š t",
+ "se curity",
+ "sec urity",
+ "on ic",
+ "oni c",
+ "o nic",
+ "▁p es",
+ "▁pe s",
+ "▁ pes",
+ "it an",
+ "ita n",
+ "i tan",
+ "▁Ex tern",
+ "▁Ext ern",
+ "ja n",
+ "j an",
+ "VA L",
+ "V AL",
+ "▁и м",
+ "▁ им",
+ "bo ld",
+ "bol d",
+ "b old",
+ "▁в а",
+ "▁ ва",
+ "▁М о",
+ "▁dis put",
+ "▁disp ut",
+ "▁t rick",
+ "▁tr ick",
+ "▁tri ck",
+ "▁p ed",
+ "▁pe d",
+ "▁ ped",
+ ")^ {",
+ ") ^{",
+ "in to",
+ "int o",
+ "Si m",
+ "S im",
+ "▁par allel",
+ "▁ parallel",
+ "fo x",
+ "f ox",
+ "norm al",
+ "nor mal",
+ "n ormal",
+ "in ent",
+ "ine nt",
+ "inen t",
+ "пе ди",
+ "п еди",
+ "ho ld",
+ "hol d",
+ "h old",
+ "O K",
+ "▁c hem",
+ "▁ch em",
+ "▁che m",
+ "▁ chem",
+ "▁tw ice",
+ "▁us ername",
+ "▁user name",
+ "▁ username",
+ "i č",
+ "▁re presentation",
+ "▁represent ation",
+ "▁repres entation",
+ "▁j ournal",
+ "▁jour nal",
+ "▁journ al",
+ "▁: -",
+ "▁ :-",
+ "▁b att",
+ "▁ba tt",
+ "▁bat t",
+ "\\ %",
+ "▁certain ly",
+ "▁Ex ception",
+ "▁ Exception",
+ "ep s",
+ "e ps",
+ "sh ot",
+ "s hot",
+ "at egy",
+ "ate gy",
+ "ateg y",
+ "Sh ow",
+ "S how",
+ "▁Car l",
+ "▁Ca rl",
+ "ri g",
+ "r ig",
+ "▁rep orted",
+ "▁report ed",
+ "bot tom",
+ "b ottom",
+ "T F",
+ "▁Francis co",
+ "na p",
+ "n ap",
+ "▁Champion ship",
+ "▁Champions hip",
+ "▁c ourt",
+ "▁co urt",
+ "▁cour t",
+ "▁cou rt",
+ "▁ court",
+ "▁s ources",
+ "▁source s",
+ "io ur",
+ "i our",
+ "▁con serv",
+ "▁cons erv",
+ "▁conse rv",
+ "▁conser v",
+ "di ct",
+ "dic t",
+ "d ict",
+ "▁Р у",
+ "I B",
+ "▁V e",
+ "▁ №",
+ "▁E R",
+ "▁ ER",
+ "\") );",
+ "\")) ;",
+ "\" ));",
+ "▁P oint",
+ "▁Po int",
+ "▁ Point",
+ "az ine",
+ "azi ne",
+ "▁inter net",
+ "▁intern et",
+ "д на",
+ "▁car ried",
+ "▁carri ed",
+ "▁F ield",
+ "▁ Field",
+ "ax is",
+ "axi s",
+ "a xis",
+ "▁S un",
+ "▁Su n",
+ "▁a ve",
+ "▁av e",
+ "▁ ave",
+ "пи с",
+ "п ис",
+ "я н",
+ "as y",
+ "▁ju lio",
+ "▁jul io",
+ "▁juli o",
+ "▁de puis",
+ "▁dep uis",
+ "▁sugg estion",
+ "▁suggest ion",
+ "[ [",
+ "▁Arch ive",
+ "▁Archiv e",
+ "ę p",
+ "▁P ra",
+ "▁Pr a",
+ "re h",
+ "r eh",
+ "▁demon str",
+ "ф і",
+ "cm d",
+ "c md",
+ "▁was n",
+ "▁wa sn",
+ "▁ph one",
+ "▁ phone",
+ "up load",
+ "ay a",
+ "a ya",
+ "то ра",
+ "тор а",
+ "li nes",
+ "line s",
+ "lin es",
+ "l ines",
+ "▁in du",
+ "▁ind u",
+ "▁ indu",
+ "▁v ot",
+ "▁vo t",
+ "▁es pa",
+ "▁esp a",
+ "▁b in",
+ "▁bi n",
+ "▁ bin",
+ "▁по сле",
+ "▁пос ле",
+ "pl an",
+ "pla n",
+ "p lan",
+ "▁ju nio",
+ "▁jun io",
+ "▁juni o",
+ "or ial",
+ "oria l",
+ "ori al",
+ "o rial",
+ "fr ee",
+ "fre e",
+ "f ree",
+ "ster reich",
+ "▁д у",
+ "▁ ду",
+ "▁link ed",
+ "▁lin ked",
+ "▁en able",
+ "▁ enable",
+ "P C",
+ "▁dens ity",
+ "▁E gy",
+ "▁Eg y",
+ "y o",
+ "end re",
+ "▁с ъ",
+ "▁ital iano",
+ "▁A R",
+ "▁ AR",
+ "▁P ers",
+ "▁Per s",
+ "▁Pe rs",
+ "▁ Pers",
+ "fér és",
+ "▁с кла",
+ "V ar",
+ "▁On ce",
+ "▁ Once",
+ "Re d",
+ "R ed",
+ "buf fer",
+ "buff er",
+ "b uffer",
+ "▁En ter",
+ "▁Ent er",
+ "▁ Enter",
+ "▁ Š",
+ "im iento",
+ "imi ento",
+ "St ore",
+ "Sto re",
+ "▁he alth",
+ "va t",
+ "v at",
+ "IS T",
+ "I ST",
+ "O h",
+ "▁k w",
+ "▁ kw",
+ "▁r iv",
+ "▁ri v",
+ "▁ riv",
+ "▁some where",
+ "ograf ie",
+ "ografi e",
+ "priv ate",
+ "p rivate",
+ "кт и",
+ "к ти",
+ "▁de lay",
+ "▁del ay",
+ "▁ delay",
+ "▁H ttp",
+ "▁ Http",
+ "jo b",
+ "j ob",
+ "ra el",
+ "r ael",
+ "em por",
+ "emp or",
+ "▁dici embre",
+ "▁dic iembre",
+ "êt e",
+ "ê te",
+ "ц у",
+ "▁com mit",
+ "▁comm it",
+ "▁ commit",
+ "os o",
+ "o so",
+ "Val ues",
+ "Value s",
+ "▁he aders",
+ "▁head ers",
+ "▁header s",
+ "▁ headers",
+ "trans form",
+ "▁process ing",
+ "▁proces sing",
+ "▁ processing",
+ "r å",
+ "▁A h",
+ "▁ Ah",
+ "▁N ode",
+ "▁No de",
+ "▁ Node",
+ "-- ----------",
+ "---- --------",
+ "-------- ----",
+ "------ ------",
+ "----- -------",
+ "------- -----",
+ "---------- --",
+ "▁f aire",
+ "▁fa ire",
+ "▁fair e",
+ "▁h un",
+ "▁hu n",
+ "Pl ayer",
+ "Play er",
+ "P layer",
+ "▁re view",
+ "▁rev iew",
+ "▁ review",
+ "г да",
+ "▁lim ited",
+ "▁limit ed",
+ "▁ limited",
+ "▁Pro perty",
+ "▁ Property",
+ "▁s erve",
+ "▁ser ve",
+ "▁serv e",
+ "▁ serve",
+ "ri age",
+ "ria ge",
+ "▁M aster",
+ "▁Ma ster",
+ "▁Mas ter",
+ "▁ Master",
+ "▁k ann",
+ "▁kan n",
+ "▁ka nn",
+ "cre te",
+ "cret e",
+ "cr ete",
+ "ph ere",
+ "pher e",
+ "phe re",
+ "p here",
+ "ё р",
+ "▁ch ief",
+ "▁chi ef",
+ "▁sc ene",
+ "▁scen e",
+ "▁ scene",
+ "ki n",
+ "k in",
+ "▁un iform",
+ "▁ uniform",
+ "▁feb rero",
+ "\" }",
+ "il lo",
+ "ill o",
+ "IT E",
+ "I TE",
+ "ou vel",
+ "ouv el",
+ "ouve l",
+ "use package",
+ "en th",
+ "ent h",
+ "e nth",
+ "▁quick ly",
+ "L ambda",
+ "xe s",
+ "x es",
+ "▁c ells",
+ "▁cell s",
+ "▁cel ls",
+ "ro g",
+ "r og",
+ "am in",
+ "ami n",
+ "a min",
+ "▁М ар",
+ "▁Ма р",
+ "▁may or",
+ "▁mayo r",
+ "pl ayer",
+ "play er",
+ "pla yer",
+ "p layer",
+ "++ ;",
+ "▁На се",
+ "▁sa fe",
+ "▁saf e",
+ "▁ safe",
+ "▁ve loc",
+ "▁vel oc",
+ "▁о бра",
+ "▁об ра",
+ "▁ обра",
+ "Data base",
+ "Dat abase",
+ "D atabase",
+ "ne h",
+ "n eh",
+ "Ver t",
+ "V ert",
+ "▁f le",
+ "▁fl e",
+ "▁ф ор",
+ "▁фо р",
+ "▁ фор",
+ "▁f oreign",
+ "▁for eign",
+ "▁fore ign",
+ "Ab stract",
+ "▁m agn",
+ "▁ma gn",
+ "▁mag n",
+ "▁mod ified",
+ "▁milit ary",
+ "▁militar y",
+ "▁m onde",
+ "▁mon de",
+ "▁mo nde",
+ "▁mond e",
+ "▁A ction",
+ "▁Act ion",
+ "▁Ac tion",
+ "▁ Action",
+ "▁b ank",
+ "▁ban k",
+ "▁ bank",
+ "Ser ial",
+ "Se rial",
+ "▁contin uous",
+ "▁continu ous",
+ "▁g el",
+ "▁ge l",
+ "▁ gel",
+ "▁phys ical",
+ "▁introdu ced",
+ "▁introduce d",
+ "ut ure",
+ "ri ck",
+ "ric k",
+ "r ick",
+ "▁present ed",
+ "▁pres ented",
+ "▁presente d",
+ "▁P rov",
+ "▁Pro v",
+ "▁Pr ov",
+ "▁B oth",
+ "▁Bo th",
+ "▁Bot h",
+ "Po s",
+ "P os",
+ "su per",
+ "sup er",
+ "s uper",
+ "& #",
+ "▁f inding",
+ "▁find ing",
+ "▁fin ding",
+ "ne l",
+ "n el",
+ "un de",
+ "und e",
+ "u nde",
+ "▁fr ån",
+ "sk im",
+ "ski m",
+ "s kim",
+ "▁H ill",
+ "▁Hi ll",
+ "▁Hil l",
+ "f n",
+ "▁Can ad",
+ "▁Ca nad",
+ "▁int ended",
+ "▁inten ded",
+ "▁intend ed",
+ "ozzá férés",
+ "▁ju illet",
+ "▁W ars",
+ "▁War s",
+ "▁Wa rs",
+ "▁success ful",
+ "▁ch arg",
+ "▁char g",
+ "▁cha rg",
+ "▁ charg",
+ "ie le",
+ "iel e",
+ "i ele",
+ "om ething",
+ "ome thing",
+ "omet hing",
+ "ok u",
+ "o ku",
+ "f etch",
+ "▁} }",
+ "▁ }}",
+ "ban k",
+ "b ank",
+ "operator name",
+ "▁Col or",
+ "▁Co lor",
+ "▁ Color",
+ "▁C ard",
+ "▁Car d",
+ "▁Ca rd",
+ "▁ Card",
+ "t u",
+ "▁\" ,",
+ "▁ \",",
+ "wi d",
+ "w id",
+ "▁g ep",
+ "▁ge p",
+ "X ML",
+ "======== ========",
+ "▁Vir gin",
+ "ähr end",
+ "äh rend",
+ "lic ated",
+ "licate d",
+ "lica ted",
+ "Di r",
+ "D ir",
+ "ze ro",
+ "zer o",
+ "z ero",
+ "▁K al",
+ "▁Ka l",
+ "▁Par ty",
+ "▁Part y",
+ "▁ å",
+ "pr ice",
+ "p rice",
+ "do n",
+ "d on",
+ "▁w arning",
+ "▁war ning",
+ "▁warn ing",
+ "▁ warning",
+ "▁B ad",
+ "▁Ba d",
+ "▁ Bad",
+ "▁S upp",
+ "▁Su pp",
+ "▁Sup p",
+ "▁ Supp",
+ "▁L iga",
+ "▁Li ga",
+ "▁Lig a",
+ "▁P ierre",
+ "▁Pier re",
+ "▁ Pierre",
+ "Re cord",
+ "Rec ord",
+ "ul ator",
+ "ula tor",
+ "▁R ome",
+ "▁Ro me",
+ "▁Rom e",
+ "▁the orem",
+ "▁ theorem",
+ "▁entire ly",
+ "ски м",
+ "ск им",
+ "с ким",
+ "he t",
+ "h et",
+ "▁d opo",
+ "▁do po",
+ "▁dop o",
+ "Ne xt",
+ "N ext",
+ "ml ung",
+ "m lung",
+ "wi g",
+ "w ig",
+ "▁A th",
+ "▁At h",
+ "▁S ou",
+ "▁So u",
+ "li cher",
+ "lic her",
+ "lich er",
+ "liche r",
+ "l icher",
+ "▁s udo",
+ "▁su do",
+ "▁sud o",
+ "▁ sudo",
+ "es ts",
+ "est s",
+ "хі в",
+ "х ів",
+ "▁sept iembre",
+ "▁m icro",
+ "▁mi cro",
+ "▁mic ro",
+ "▁t rop",
+ "▁tr op",
+ "▁tro p",
+ "fi t",
+ "f it",
+ "Co re",
+ "Cor e",
+ "C ore",
+ "▁Rad io",
+ "▁ Radio",
+ "▁Or gan",
+ "▁ Organ",
+ "▁P ower",
+ "▁Po wer",
+ "▁Pow er",
+ "▁ Power",
+ "C F",
+ "▁L ast",
+ "▁La st",
+ "▁Las t",
+ "▁ Last",
+ "▁op pos",
+ "▁opp os",
+ "▁off set",
+ "▁ offset",
+ "▁re gia",
+ "▁reg ia",
+ "▁min imum",
+ "▁minim um",
+ "▁hel ped",
+ "▁help ed",
+ "an don",
+ "and on",
+ "ando n",
+ "if ying",
+ "ify ing",
+ "ru it",
+ "r uit",
+ "ensch app",
+ "▁b ere",
+ "▁be re",
+ "▁ber e",
+ "▁ bere",
+ "V M",
+ "▁A wards",
+ "▁Award s",
+ "▁Aw ards",
+ "▁a gr",
+ "▁ag r",
+ "▁ agr",
+ "yn omial",
+ "en ced",
+ "ence d",
+ "enc ed",
+ "▁dev ices",
+ "▁device s",
+ "▁devi ces",
+ "▁b ot",
+ "▁bo t",
+ "▁ bot",
+ "▁f irm",
+ "▁fi rm",
+ "▁fir m",
+ "▁w riter",
+ "▁writ er",
+ "▁wr iter",
+ "▁write r",
+ "▁ writer",
+ "▁r ing",
+ "▁ri ng",
+ "▁rin g",
+ "▁ ring",
+ ". -",
+ "is tes",
+ "ist es",
+ "iste s",
+ "l ä",
+ "▁m el",
+ "▁me l",
+ "▁ mel",
+ "ent ation",
+ "enta tion",
+ "▁Sch w",
+ "▁Sc hw",
+ "▁n ome",
+ "▁no me",
+ "▁nom e",
+ "▁ nome",
+ "▁po bla",
+ "▁pob la",
+ "▁w oj",
+ "▁wo j",
+ "▁u l",
+ "▁ ul",
+ "en to",
+ "ent o",
+ "ы х",
+ "▁res ist",
+ "▁rem ains",
+ "▁remain s",
+ "▁C a",
+ "▁ Ca",
+ "añ a",
+ "a ña",
+ "▁C ourt",
+ "▁Co urt",
+ "▁Cour t",
+ "▁Cou rt",
+ "ut able",
+ "uta ble",
+ "u table",
+ "ential ly",
+ "enti ally",
+ "▁t rat",
+ "▁tr at",
+ "▁tra t",
+ "▁ trat",
+ "▁Vis ual",
+ "▁ Visual",
+ "▁rest rict",
+ "▁pre viously",
+ "▁previous ly",
+ "▁prev iously",
+ "ca tion",
+ "cat ion",
+ "c ation",
+ "▁о со",
+ "▁ос о",
+ "▁My SQL",
+ "f ör",
+ "cal a",
+ "ca la",
+ "c ala",
+ "▁c ulture",
+ "▁cult ure",
+ "li ve",
+ "liv e",
+ "l ive",
+ "▁accept ed",
+ "Di d",
+ "D id",
+ "▁h ous",
+ "▁ho us",
+ "▁se lection",
+ "▁select ion",
+ "▁sel ection",
+ "▁sele ction",
+ "▁ selection",
+ "▁de cre",
+ "▁dec re",
+ "mar gin",
+ "m argin",
+ "ur b",
+ "u rb",
+ "▁I nc",
+ "▁In c",
+ "▁M any",
+ "▁Man y",
+ "▁Ma ny",
+ "▁ Many",
+ "ib t",
+ "i bt",
+ "▁succ eed",
+ "▁suc ceed",
+ "Bind ing",
+ "B inding",
+ "c í",
+ "▁R og",
+ "▁Ro g",
+ "▁should n",
+ "cl oud",
+ "clo ud",
+ "clou d",
+ "▁d z",
+ "▁ dz",
+ "ва в",
+ "▁p ix",
+ "▁pi x",
+ "sm all",
+ "▁project s",
+ "▁ projects",
+ "▁O K",
+ "▁ OK",
+ "▁la test",
+ "▁lat est",
+ "▁late st",
+ "▁ latest",
+ "▁re ferences",
+ "▁refer ences",
+ "▁reference s",
+ "Pro gram",
+ "Pr ogram",
+ "▁er st",
+ "▁ers t",
+ "▁ erst",
+ "▁я к",
+ "▁k am",
+ "▁ka m",
+ "▁C amb",
+ "▁Cam b",
+ "▁Ca mb",
+ "el lt",
+ "ell t",
+ "ö d",
+ "no ne",
+ "non e",
+ "n one",
+ "▁j usqu",
+ "▁ju squ",
+ "ki ng",
+ "kin g",
+ "k ing",
+ "▁P ed",
+ "▁Pe d",
+ "as sert",
+ "ass ert",
+ "asse rt",
+ "asser t",
+ "C S",
+ "ri to",
+ "rit o",
+ "r ito",
+ "es sa",
+ "ess a",
+ "ль ко",
+ "▁V on",
+ "▁Vo n",
+ "▁Ed ward",
+ "▁im possible",
+ "▁impos sible",
+ "n p",
+ "word s",
+ "wor ds",
+ "w ords",
+ "ie lt",
+ "iel t",
+ "i elt",
+ "▁P age",
+ "▁Pa ge",
+ "▁ Page",
+ "le rs",
+ "ler s",
+ "l ers",
+ "▁p ier",
+ "▁pi er",
+ "▁pie r",
+ "▁обла сти",
+ "itt ee",
+ "itte e",
+ "▁( [",
+ "▁ ([",
+ "▁t rust",
+ "▁tr ust",
+ "N G",
+ "re du",
+ "red u",
+ "r edu",
+ "< <",
+ "ri al",
+ "ria l",
+ "r ial",
+ "▁product s",
+ "▁ products",
+ "▁E rn",
+ "▁Er n",
+ "ri ère",
+ "r ière",
+ "го в",
+ "г ов",
+ "▁Re ich",
+ "▁Ro ad",
+ "▁n ested",
+ "▁ne sted",
+ "▁nest ed",
+ "▁ nested",
+ "Dis play",
+ "▁str ength",
+ "ograf ía",
+ "▁ann ounced",
+ "▁announ ced",
+ "▁S cience",
+ "▁Sc ience",
+ "▁Sci ence",
+ "▁рай о",
+ "Param eter",
+ "▁T ask",
+ "▁Ta sk",
+ "▁Tas k",
+ "▁ Task",
+ "um ents",
+ "ument s",
+ "umen ts",
+ "u ments",
+ "▁ad opt",
+ "▁On ly",
+ "▁ Only",
+ "ют ь",
+ "ю ть",
+ "▁c li",
+ "▁cl i",
+ "▁ cli",
+ "▁l em",
+ "▁le m",
+ "▁ lem",
+ "st ood",
+ "sto od",
+ "▁F I",
+ "▁ FI",
+ "ên cias",
+ "ência s",
+ "pon ents",
+ "ponent s",
+ "] $",
+ "com ment",
+ "comm ent",
+ "▁y a",
+ "▁ ya",
+ "sh ould",
+ "ik e",
+ "i ke",
+ "ti m",
+ "t im",
+ "el lig",
+ "ell ig",
+ "elli g",
+ "▁s ending",
+ "▁send ing",
+ "▁sen ding",
+ "▁a jax",
+ "▁aj ax",
+ "▁ ajax",
+ "▁nov iembre",
+ "um es",
+ "ume s",
+ "u mes",
+ "▁we iter",
+ "▁weit er",
+ "▁D ans",
+ "▁Dan s",
+ "▁Da ns",
+ "op p",
+ "o pp",
+ "▁sept embre",
+ "▁sep tembre",
+ "ot imes",
+ "oti mes",
+ "o times",
+ "z ő",
+ "▁e p",
+ "▁ ep",
+ "ve re",
+ "ver e",
+ "v ere",
+ "▁o h",
+ "▁ oh",
+ ": =",
+ "▁S ong",
+ "▁So ng",
+ "▁Son g",
+ "” ,",
+ "▁v iv",
+ "▁vi v",
+ "▁ viv",
+ "▁qu eries",
+ "▁que ries",
+ "▁quer ies",
+ "▁v á",
+ "▁ vá",
+ "▁déc embre",
+ "▁un able",
+ "▁una ble",
+ "▁e rh",
+ "▁er h",
+ "▁` -",
+ "▁ `-",
+ "▁L ee",
+ "▁Le e",
+ "▁er sten",
+ "▁erst en",
+ "▁erste n",
+ "▁ers ten",
+ "ô t",
+ "ст ве",
+ "ств е",
+ "T S",
+ "▁f ragment",
+ "▁fra gment",
+ "▁frag ment",
+ "▁ fragment",
+ "▁w ide",
+ "▁wid e",
+ "▁ wide",
+ "▁s uff",
+ "▁su ff",
+ "▁suf f",
+ "▁d ut",
+ "▁du t",
+ "▁V ere",
+ "▁Ver e",
+ "▁Ve re",
+ "і с",
+ "ad ing",
+ "adi ng",
+ "adin g",
+ "a ding",
+ "ie go",
+ "ieg o",
+ "i ego",
+ "ic ago",
+ "ica go",
+ "▁Ar gent",
+ "▁Arg ent",
+ "or er",
+ "ore r",
+ "o rer",
+ "en nes",
+ "enn es",
+ "enne s",
+ "▁L eb",
+ "▁Le b",
+ "lin ux",
+ "ac ing",
+ "aci ng",
+ "a cing",
+ "▁br oken",
+ "▁bro ken",
+ "▁broke n",
+ "t p",
+ "í o",
+ "ab eth",
+ "abe th",
+ "abet h",
+ "ist as",
+ "ista s",
+ "ge w",
+ "g ew",
+ "i ème",
+ "ca s",
+ "c as",
+ "▁pre ced",
+ "▁prec ed",
+ "▁D al",
+ "▁Da l",
+ "▁comp ared",
+ "▁compar ed",
+ "▁compare d",
+ "equ iv",
+ "il ly",
+ "ill y",
+ "te en",
+ "t een",
+ "▁Con sole",
+ "▁Cons ole",
+ "▁ Console",
+ "▁st rict",
+ "▁str ict",
+ "▁stri ct",
+ "it aire",
+ "ita ire",
+ "i taire",
+ "▁E D",
+ "▁ ED",
+ "ential s",
+ "enti als",
+ "▁p erman",
+ "▁per man",
+ "▁perm an",
+ "▁t ous",
+ "▁to us",
+ "▁tou s",
+ "▁g eme",
+ "▁ge me",
+ "▁gem e",
+ "▁ geme",
+ "▁ext rem",
+ "▁extr em",
+ "▁ок ру",
+ "k g",
+ "▁he avy",
+ "▁heav y",
+ "▁av ril",
+ "▁an ti",
+ "▁ant i",
+ "▁ anti",
+ "▁oct obre",
+ "ut f",
+ "u tf",
+ "he lm",
+ "hel m",
+ "h elm",
+ "am ples",
+ "ample s",
+ "amp les",
+ "▁( _",
+ "▁ (_",
+ "ak en",
+ "ake n",
+ "a ken",
+ "▁d ear",
+ "▁de ar",
+ "▁opin ion",
+ "▁f ish",
+ "▁fi sh",
+ "▁fis h",
+ "▁ fish",
+ "▁Alex ander",
+ "▁Alexand er",
+ "i w",
+ "и м",
+ "ca dem",
+ "cade m",
+ "c adem",
+ "▁ref lect",
+ "▁ reflect",
+ "▁д р",
+ "▁t rib",
+ "▁tr ib",
+ "▁tri b",
+ "com mon",
+ "comm on",
+ "▁clear ly",
+ "▁s af",
+ "▁sa f",
+ "=\"@ +",
+ "▁М ос",
+ "▁Мо с",
+ "си те",
+ "eqn array",
+ "nu ng",
+ "n ung",
+ "▁relations hip",
+ "▁relation ship",
+ "▁S em",
+ "▁Se m",
+ "▁ Sem",
+ "▁k illed",
+ "▁kil led",
+ "▁kill ed",
+ "te d",
+ "t ed",
+ "un o",
+ "u no",
+ "▁ лі",
+ "▁w id",
+ "▁ wid",
+ "an ning",
+ "ann ing",
+ "anni ng",
+ "▁p anel",
+ "▁pa nel",
+ "▁pan el",
+ "▁ panel",
+ "▁L eben",
+ "▁Le ben",
+ "▁Leb en",
+ "▁r uby",
+ "▁ru by",
+ "▁rub y",
+ "▁ ruby",
+ "ans ion",
+ "▁a ren",
+ "▁are n",
+ "▁ar en",
+ "▁ aren",
+ "tab ular",
+ "al et",
+ "ale t",
+ "a let",
+ "}$ $",
+ "} $$",
+ "▁L ake",
+ "▁La ke",
+ "▁Lak e",
+ "▁su ite",
+ "▁suit e",
+ "▁ suite",
+ "▁min or",
+ "▁mi nor",
+ "H ozzáférés",
+ "▁xml ns",
+ "▁ xmlns",
+ "DI R",
+ "D IR",
+ "dr iver",
+ "drive r",
+ "dri ver",
+ "d river",
+ "in ts",
+ "int s",
+ "▁v ic",
+ "▁vi c",
+ "▁ vic",
+ "AN D",
+ "A ND",
+ "pr im",
+ "p rim",
+ "сы лки",
+ "▁O x",
+ "T C",
+ "riv ial",
+ "at ie",
+ "ati e",
+ "▁e ight",
+ "▁eig ht",
+ "▁eigh t",
+ "▁conf lic",
+ "▁confl ic",
+ "an gel",
+ "ang el",
+ "ange l",
+ "▁B egr",
+ "▁Be gr",
+ "▁Beg r",
+ "▁explicit ly",
+ "ют ся",
+ "ю тся",
+ "▁D ev",
+ "▁De v",
+ "▁ Dev",
+ "re nder",
+ "ren der",
+ "rend er",
+ "r ender",
+ "▁re produ",
+ "▁rep rodu",
+ "▁repr odu",
+ "▁repro du",
+ "▁c ré",
+ "▁cr é",
+ "G u",
+ "M B",
+ "▁k ön",
+ "▁kö n",
+ "▁rem ained",
+ "▁remain ed",
+ "▁k l",
+ "▁ kl",
+ "хо в",
+ "х ов",
+ "▁b yl",
+ "▁by l",
+ "Ph i",
+ "P hi",
+ "▁de tail",
+ "▁det ail",
+ "▁ detail",
+ "ja v",
+ "j av",
+ "▁m ouse",
+ "▁mo use",
+ "▁mou se",
+ "▁ mouse",
+ "B as",
+ "i ę",
+ "as ser",
+ "ass er",
+ "asse r",
+ "h s",
+ "▁sh ift",
+ "▁ shift",
+ "▁ú lt",
+ "▁ últ",
+ "ra nd",
+ "ran d",
+ "r and",
+ "▁b tn",
+ "▁ btn",
+ "ra z",
+ "r az",
+ "▁p ul",
+ "▁pu l",
+ "▁stat ements",
+ "▁state ments",
+ "▁statement s",
+ "file name",
+ "fil ename",
+ "▁prom pt",
+ "él é",
+ "é lé",
+ "ik z",
+ "▁S us",
+ "▁Su s",
+ "▁de but",
+ "▁deb ut",
+ "St at",
+ "S tat",
+ "form s",
+ "for ms",
+ "▁H ein",
+ "▁He in",
+ "st adt",
+ "sta dt",
+ "stad t",
+ "en nis",
+ "enn is",
+ "по л",
+ "ar ante",
+ "aran te",
+ "ці й",
+ "ц ій",
+ "▁que ue",
+ "▁ queue",
+ "▁re ci",
+ "▁rec i",
+ "▁ reci",
+ "▁s ta",
+ "▁st a",
+ "▁ sta",
+ "yn chron",
+ "cent ering",
+ "center ing",
+ "cente ring",
+ "So me",
+ "S ome",
+ "Gr aph",
+ "G raph",
+ "▁t ested",
+ "▁te sted",
+ "▁test ed",
+ "▁K unst",
+ "▁Kun st",
+ "о м",
+ "▁N othing",
+ "▁No thing",
+ "▁Not hing",
+ "▁ Nothing",
+ "ie u",
+ "i eu",
+ "“ .",
+ "B undle",
+ "▁of icial",
+ "▁ofic ial",
+ "al low",
+ "all ow",
+ "allo w",
+ "▁Re act",
+ "▁L ibrary",
+ "▁Li brary",
+ "▁ Library",
+ "bl ue",
+ "▁ver w",
+ "▁ve rw",
+ "▁p are",
+ "▁par e",
+ "▁pa re",
+ "▁Fried rich",
+ "▁a ware",
+ "▁aw are",
+ "▁ aware",
+ "Ex p",
+ "E xp",
+ "▁effect s",
+ "▁го ро",
+ "▁гор о",
+ "lop edia",
+ "loped ia",
+ "▁V en",
+ "▁Ve n",
+ "ra le",
+ "ral e",
+ "r ale",
+ "▁F inal",
+ "▁Fin al",
+ "▁ Final",
+ "▁pro pos",
+ "▁prop os",
+ "la cement",
+ "lace ment",
+ "lac ement",
+ "kt en",
+ "kte n",
+ "k ten",
+ "▁no vel",
+ "▁nov el",
+ "or ter",
+ "ort er",
+ "orte r",
+ "▁German y",
+ "▁Ger many",
+ "▁Germ any",
+ "▁d jango",
+ "▁ django",
+ "▁trans ition",
+ "▁ transition",
+ "▁happ ened",
+ "▁happen ed",
+ "▁beaut iful",
+ "▁ne ither",
+ "▁nei ther",
+ "▁li braries",
+ "▁h ide",
+ "▁hi de",
+ "▁hid e",
+ "▁ hide",
+ "al g",
+ "a lg",
+ "▁a spect",
+ "▁as pect",
+ "▁asp ect",
+ "▁for get",
+ "▁forg et",
+ "cade my",
+ "cadem y",
+ "on te",
+ "ont e",
+ "re fix",
+ "ref ix",
+ "▁cl oud",
+ "▁clo ud",
+ "▁ cloud",
+ "ne d",
+ "n ed",
+ "cd ots",
+ "cdot s",
+ "c dots",
+ "reg ister",
+ "ny m",
+ "n ym",
+ ".) :",
+ ". ):",
+ "▁J ew",
+ "▁Je w",
+ "▁t rès",
+ "▁tr ès",
+ "ни че",
+ "▁D or",
+ "▁Do r",
+ "▁p roc",
+ "▁pro c",
+ "▁pr oc",
+ "▁ proc",
+ "▁g an",
+ "▁ga n",
+ "▁ gan",
+ "▁ є",
+ "▁S av",
+ "▁Sa v",
+ "v í",
+ "Setting s",
+ "S ettings",
+ "▁V ari",
+ "▁Var i",
+ "▁Va ri",
+ "▁ Vari",
+ "▁c ours",
+ "▁co urs",
+ "▁cour s",
+ "▁cou rs",
+ "R o",
+ "▁con j",
+ "▁re asons",
+ "▁reason s",
+ "▁re ader",
+ "▁read er",
+ "▁ reader",
+ "лекс анд",
+ "ic ate",
+ "ica te",
+ "}) ,",
+ "} ),",
+ "▁task s",
+ "▁ tasks",
+ "▁R ay",
+ "▁Ra y",
+ "▁r ic",
+ "▁ri c",
+ "▁ ric",
+ "K e",
+ "on ie",
+ "oni e",
+ "o nie",
+ "r f",
+ ") [",
+ "▁sub sequ",
+ "▁subs equ",
+ "▁T urn",
+ "▁Tur n",
+ "▁Tu rn",
+ "▁ Turn",
+ "▁VI AF",
+ "math sf",
+ "H E",
+ "▁dec lare",
+ "▁decl are",
+ "▁decla re",
+ "▁declar e",
+ "▁pro tocol",
+ "▁proto col",
+ "▁ protocol",
+ "▁P C",
+ "▁ PC",
+ "ци он",
+ "View ById",
+ "▁an imation",
+ "▁anim ation",
+ "▁ animation",
+ "▁conf used",
+ "ви ч",
+ "▁en abled",
+ "▁enable d",
+ "▁ enabled",
+ "ow o",
+ "o wo",
+ "ás t",
+ "á st",
+ "ö t",
+ "▁m and",
+ "▁ma nd",
+ "▁man d",
+ "▁R ail",
+ "▁Ra il",
+ "field s",
+ "▁K ap",
+ "▁Ka p",
+ "▁al gebra",
+ "▁ algebra",
+ "▁С у",
+ "fér ence",
+ "▁C urrent",
+ "▁Cur rent",
+ "▁ Current",
+ "с но",
+ "▁L im",
+ "▁Li m",
+ "Par ams",
+ "Param s",
+ "Pa rams",
+ "▁Ant onio",
+ "▁Anton io",
+ "▁Anto nio",
+ "▁t v",
+ "▁ tv",
+ "la te",
+ "lat e",
+ "l ate",
+ "if er",
+ "ife r",
+ "i fer",
+ "En try",
+ "Ent ry",
+ "▁S erv",
+ "▁Se rv",
+ "▁Ser v",
+ "▁ Serv",
+ "▁mus ical",
+ "▁music al",
+ "▁musica l",
+ "▁t race",
+ "▁tr ace",
+ "▁tra ce",
+ "▁trac e",
+ "▁ trace",
+ "▁s cient",
+ "▁sc ient",
+ "▁sci ent",
+ "fi c",
+ "f ic",
+ "▁for got",
+ "▁forg ot",
+ "v ideo",
+ "▁o lder",
+ "▁old er",
+ "▁ol der",
+ "▁ older",
+ "Tr ee",
+ "T ree",
+ "▁u ns",
+ "▁un s",
+ "▁ uns",
+ "ни ки",
+ "ник и",
+ "▁E uropa",
+ "▁Europ a",
+ "▁Euro pa",
+ "▁Z we",
+ "▁Zw e",
+ "▁б е",
+ "▁ бе",
+ "▁v ec",
+ "▁ve c",
+ "▁ vec",
+ "ж у",
+ "Mat ch",
+ "M atch",
+ "sp an",
+ "s pan",
+ "▁bl ank",
+ "▁blan k",
+ "▁ blank",
+ "▁sp äter",
+ "▁T y",
+ "▁ Ty",
+ "▁d ict",
+ "▁di ct",
+ "▁dic t",
+ "▁ dict",
+ "ñ a",
+ "▁conf irm",
+ "▁confir m",
+ "▁ confirm",
+ "▁v ý",
+ "за н",
+ "з ан",
+ "Re l",
+ "R el",
+ "fil m",
+ "fi lm",
+ "▁R ot",
+ "▁Ro t",
+ "▁ Rot",
+ "▁H y",
+ "▁ Hy",
+ "ка х",
+ "▁dem and",
+ "▁min ist",
+ "▁mini st",
+ "▁Mad rid",
+ "▁us ual",
+ "sp iel",
+ "s piel",
+ "er os",
+ "ero s",
+ "e ros",
+ "▁t utorial",
+ "▁tut orial",
+ "▁ tutorial",
+ "▁С сылки",
+ "s ys",
+ "ци аль",
+ "▁sp read",
+ "▁spr ead",
+ "▁spre ad",
+ "▁con vers",
+ "▁conver s",
+ "▁conv ers",
+ "▁r oll",
+ "▁ro ll",
+ "▁rol l",
+ "▁ roll",
+ "artifact Id",
+ "▁N umber",
+ "▁Num ber",
+ "▁ Number",
+ "▁sym met",
+ "▁M ult",
+ "▁Mu lt",
+ "▁Mul t",
+ "▁ Mult",
+ "ex pected",
+ "exp ected",
+ "expect ed",
+ "▁a xis",
+ "▁ax is",
+ "▁ axis",
+ "▁match ing",
+ "▁f ood",
+ "▁fo od",
+ "▁foo d",
+ "group Id",
+ "Map p",
+ "Ma pp",
+ "M app",
+ "▁с вя",
+ "▁v end",
+ "▁ve nd",
+ "▁ven d",
+ "F ound",
+ "ot to",
+ "ott o",
+ "o tto",
+ "Ca t",
+ "C at",
+ "cri t",
+ "cr it",
+ "c rit",
+ "ist ent",
+ "iste nt",
+ "isten t",
+ "▁d rei",
+ "▁dr ei",
+ "▁dre i",
+ "▁en ded",
+ "▁end ed",
+ "▁ende d",
+ "▁ ended",
+ "▁T ele",
+ "▁Te le",
+ "▁Tel e",
+ "com ponent",
+ "▁invol ved",
+ "▁involve d",
+ "▁Est ados",
+ "▁Estado s",
+ "▁Estad os",
+ "▁d anger",
+ "▁dan ger",
+ "▁ch ain",
+ "▁cha in",
+ "▁ chain",
+ "▁P rom",
+ "▁Pro m",
+ "▁Pr om",
+ "▁ Prom",
+ "ho m",
+ "h om",
+ "▁pol ít",
+ "co p",
+ "c op",
+ "▁n ap",
+ "▁na p",
+ "▁ nap",
+ "ri f",
+ "r if",
+ "ple ments",
+ "pl ements",
+ "plement s",
+ "▁v ent",
+ "▁ve nt",
+ "▁ven t",
+ "▁ vent",
+ "an na",
+ "ann a",
+ "an ted",
+ "ant ed",
+ "ante d",
+ "date d",
+ "da ted",
+ "dat ed",
+ "d ated",
+ "an th",
+ "ant h",
+ "a nth",
+ "▁thread s",
+ "▁thre ads",
+ "▁ threads",
+ "зо ва",
+ "зов а",
+ "з ова",
+ "▁ста нов",
+ "▁стан ов",
+ "▁ станов",
+ "▁e erst",
+ "▁eer st",
+ "bu f",
+ "b uf",
+ "he id",
+ "▁R u",
+ "▁P rim",
+ "▁Pr im",
+ "▁Pri m",
+ "▁ Prim",
+ "▁m igr",
+ "▁mi gr",
+ "▁mig r",
+ "▁ migr",
+ "▁Un idos",
+ "▁ar bitr",
+ "▁r oman",
+ "▁ro man",
+ "▁rom an",
+ "ount ry",
+ "oun try",
+ "ult ur",
+ "▁K önig",
+ "▁Kö nig",
+ "▁an not",
+ "▁ann ot",
+ "▁anno t",
+ "▁ annot",
+ "ach ing",
+ "ac hing",
+ "achi ng",
+ "▁H aupt",
+ "▁Ha upt",
+ "um in",
+ "umi n",
+ "u min",
+ "▁h em",
+ "▁he m",
+ "▁ hem",
+ "ck ets",
+ "cket s",
+ "cke ts",
+ "ba u",
+ "b au",
+ "ect ion",
+ "ec tion",
+ "e ction",
+ "ef t",
+ "e ft",
+ "▁package s",
+ "▁pack ages",
+ "▁ packages",
+ "▁K ur",
+ "▁Ku r",
+ "th ur",
+ "▁p ays",
+ "▁pa ys",
+ "▁pay s",
+ "li ament",
+ "lia ment",
+ "▁Б у",
+ "▁c ada",
+ "▁ca da",
+ "▁cad a",
+ "po ints",
+ "point s",
+ "oc ket",
+ "ock et",
+ "o cket",
+ "▁v erb",
+ "▁ver b",
+ "▁ve rb",
+ "▁ verb",
+ "ле е",
+ "▁sub mit",
+ "▁subm it",
+ "▁ submit",
+ "▁s an",
+ "▁sa n",
+ "▁ san",
+ "ru by",
+ "r uby",
+ "▁e ast",
+ "▁eas t",
+ "▁ east",
+ "ko v",
+ "k ov",
+ "▁Ver lag",
+ "▁Verl ag",
+ "▁ Verlag",
+ "▁s pot",
+ "▁sp ot",
+ "▁spo t",
+ "▁ spot",
+ "pp o",
+ "p po",
+ "E ach",
+ "je kt",
+ "▁Bi ographie",
+ "▁ne ws",
+ "▁new s",
+ "▁ news",
+ "▁pa ís",
+ "uf act",
+ "u fact",
+ "▁d ia",
+ "▁di a",
+ "▁ dia",
+ "ко ва",
+ "ков а",
+ "к ова",
+ "▁accom pl",
+ "▁accomp l",
+ "▁É t",
+ "▁ Ét",
+ "il ities",
+ "ili ties",
+ "▁i hm",
+ "▁ih m",
+ "in voke",
+ "inv oke",
+ "▁app end",
+ "▁ap pend",
+ "▁appe nd",
+ "▁ append",
+ ".) ,",
+ ". ),",
+ "▁l ab",
+ "▁la b",
+ "▁ lab",
+ "an ging",
+ "ang ing",
+ "is tan",
+ "ist an",
+ "ista n",
+ "i stan",
+ "re sol",
+ "res ol",
+ "reso l",
+ "▁S ection",
+ "▁Se ction",
+ "▁Sec tion",
+ "▁ Section",
+ "Par ent",
+ "Pa rent",
+ "mo z",
+ "m oz",
+ "Ma t",
+ "M at",
+ "st yles",
+ "style s",
+ "sty les",
+ "un den",
+ "und en",
+ "unde n",
+ "“ ,",
+ "irt schaft",
+ "ки м",
+ "к им",
+ "▁Fin ally",
+ "▁Final ly",
+ "ph en",
+ "phe n",
+ "p hen",
+ "▁P ac",
+ "▁Pa c",
+ "▁Array List",
+ "▁ ArrayList",
+ "▁re cover",
+ "▁rec over",
+ "▁e ducation",
+ "▁educ ation",
+ "mod els",
+ "model s",
+ "mode ls",
+ "pe d",
+ "p ed",
+ "▁h appy",
+ "▁ha ppy",
+ "▁happ y",
+ "ч у",
+ "▁guer ra",
+ "me dia",
+ "med ia",
+ "medi a",
+ "m edia",
+ "O F",
+ "▁ens ure",
+ "▁ ensure",
+ "Mar k",
+ "M ark",
+ "data base",
+ "dat abase",
+ "datab ase",
+ "d atabase",
+ "og gle",
+ "▁pub lish",
+ "▁publi sh",
+ "▁ publish",
+ "O W",
+ "▁B au",
+ "▁Ba u",
+ "? .",
+ "▁ча сти",
+ "▁час ти",
+ "▁част и",
+ "▁re pository",
+ "▁repos itory",
+ "▁ repository",
+ "▁M att",
+ "▁Ma tt",
+ "▁Mat t",
+ "hi gh",
+ "h igh",
+ "ov en",
+ "ove n",
+ "o ven",
+ "▁g er",
+ "▁ge r",
+ "▁ ger",
+ "▁un known",
+ "▁ unknown",
+ "Am er",
+ "A mer",
+ "▁B rown",
+ "▁Br own",
+ "▁Bro wn",
+ "▁Brow n",
+ "AL L",
+ "A LL",
+ "▁result ing",
+ "▁b or",
+ "▁bo r",
+ "▁ bor",
+ "▁po et",
+ "ни ми",
+ "ним и",
+ "Em ail",
+ "E mail",
+ "F ont",
+ "▁h ist",
+ "▁his t",
+ "▁hi st",
+ "▁to day",
+ "▁tod ay",
+ "▁toda y",
+ "▁ today",
+ "▁B erg",
+ "▁Be rg",
+ "▁Ber g",
+ "▁but tons",
+ "▁button s",
+ "та л",
+ "т ал",
+ "▁s ni",
+ "▁sn i",
+ "▁че лов",
+ "Cr e",
+ "C re",
+ "▁un ion",
+ "▁ union",
+ "▁z ich",
+ "ish op",
+ "i shop",
+ "▁qu ando",
+ "▁quand o",
+ "▁quan do",
+ "P o",
+ "CT ION",
+ "▁C ost",
+ "▁Co st",
+ "▁Cos t",
+ "▁ Cost",
+ "су дар",
+ "er ved",
+ "erv ed",
+ "erve d",
+ "Not e",
+ "No te",
+ "N ote",
+ "Equ al",
+ "Eq ual",
+ "E qual",
+ "ли я",
+ "бу р",
+ "б ур",
+ "▁ab stract",
+ "▁abstra ct",
+ "▁ abstract",
+ "st op",
+ "sto p",
+ "s top",
+ "▁ad vice",
+ "▁adv ice",
+ "▁i con",
+ "▁ic on",
+ "▁ icon",
+ "▁tr avel",
+ "▁tra vel",
+ "▁trav el",
+ "B S",
+ "ve ns",
+ "ven s",
+ "v ens",
+ "▁b atch",
+ "▁bat ch",
+ "▁ batch",
+ "li que",
+ "liqu e",
+ "l ique",
+ "she et",
+ "s heet",
+ "▁i hre",
+ "▁ih re",
+ "▁ihr e",
+ "em on",
+ "emo n",
+ "e mon",
+ "ber to",
+ "bert o",
+ "▁as signed",
+ "▁ass igned",
+ "▁assign ed",
+ "ь ю",
+ "Ph one",
+ "▁a ward",
+ "▁aw ard",
+ "▁function ality",
+ "▁functional ity",
+ "al la",
+ "all a",
+ "a lla",
+ "▁D am",
+ "▁Da m",
+ "▁ci udad",
+ "▁cl uster",
+ "▁clust er",
+ "▁ cluster",
+ "De scription",
+ "Des cription",
+ "▁s heet",
+ "▁she et",
+ "▁ sheet",
+ "▁Austral ian",
+ "▁Australia n",
+ "▁» .",
+ "▁ ».",
+ "▁\" <",
+ "▁wonder ing",
+ "ain e",
+ "ai ne",
+ "a ine",
+ "▁represent ed",
+ "▁repres ented",
+ "ka ppa",
+ "kap pa",
+ "k appa",
+ "n b",
+ "▁s y",
+ "▁K ö",
+ "=\" #",
+ "▁s even",
+ "▁se ven",
+ "Direct ory",
+ "D irectory",
+ "▁s ister",
+ "▁si ster",
+ "▁sist er",
+ "pl ates",
+ "plate s",
+ "pla tes",
+ "▁l uck",
+ "▁lu ck",
+ "▁luc k",
+ "▁rem aining",
+ "▁remain ing",
+ "▁V ill",
+ "▁Vi ll",
+ "▁Vil l",
+ "wer k",
+ "w erk",
+ "an ni",
+ "ann i",
+ "et ti",
+ "ett i",
+ "fun c",
+ "fu nc",
+ "f unc",
+ "▁b an",
+ "▁ba n",
+ "▁ ban",
+ "im s",
+ "i ms",
+ "mi ss",
+ "mis s",
+ "m iss",
+ "ag raph",
+ "agr aph",
+ "a graph",
+ "ек си",
+ "е кси",
+ "▁R ef",
+ "▁Re f",
+ "▁ Ref",
+ "ni tt",
+ "nit t",
+ "n itt",
+ "▁G ab",
+ "▁Ga b",
+ "▁and ere",
+ "▁jed och",
+ "result s",
+ "! \\",
+ "▁l isted",
+ "▁li sted",
+ "▁list ed",
+ "▁liste d",
+ "▁l oro",
+ "▁lo ro",
+ "▁kn ows",
+ "▁know s",
+ "ж но",
+ "R ad",
+ "▁s ocket",
+ "▁so cket",
+ "▁soc ket",
+ "▁ socket",
+ "mult i",
+ "mul ti",
+ "▁р і",
+ "▁ рі",
+ "ra ils",
+ "rai ls",
+ "r ails",
+ "▁t ar",
+ "▁ta r",
+ "▁ tar",
+ "▁gent le",
+ "se tt",
+ "set t",
+ "s ett",
+ "serv ices",
+ "service s",
+ "bo und",
+ "b ound",
+ "ig keit",
+ "aj a",
+ "a ja",
+ "▁c md",
+ "▁cm d",
+ "▁ cmd",
+ "ag ger",
+ "agg er",
+ "▁b a",
+ "▁ ba",
+ "▁Be lg",
+ "▁Bel g",
+ "▁K le",
+ "▁Kl e",
+ "▁word t",
+ "▁wor dt",
+ "▁f ost",
+ "▁fo st",
+ "▁fos t",
+ "▁dim ension",
+ "An g",
+ "A ng",
+ "um ing",
+ "umin g",
+ "umi ng",
+ "u ming",
+ "Ob j",
+ "не н",
+ "н ен",
+ "▁M arie",
+ "▁Mar ie",
+ "▁Ma rie",
+ "▁Mari e",
+ "▁ Marie",
+ "ex ists",
+ "exist s",
+ "т ро",
+ "▁бо ль",
+ "▁ боль",
+ "em ente",
+ "ement e",
+ "emen te",
+ "e mente",
+ "▁J on",
+ "▁Jo n",
+ "SE RT",
+ "SER T",
+ "S ERT",
+ "▁high est",
+ "ak i",
+ "a ki",
+ "▁t res",
+ "▁tr es",
+ "▁tre s",
+ "▁ tres",
+ "▁circ um",
+ "▁D own",
+ "▁Do wn",
+ "▁Dow n",
+ "▁ Down",
+ "om men",
+ "omm en",
+ "ur er",
+ "ure r",
+ "u rer",
+ "▁caus es",
+ "▁cause s",
+ "▁ca uses",
+ "ven ue",
+ "iss ance",
+ "▁influ ence",
+ "▁influen ce",
+ "▁f at",
+ "▁fa t",
+ "ре ди",
+ "ред и",
+ "р еди",
+ "}\\ \\",
+ "} \\\\",
+ "▁en tr",
+ "▁ent r",
+ "▁ entr",
+ "▁S ign",
+ "▁Si gn",
+ "▁Sig n",
+ "▁ Sign",
+ "▁к ла",
+ "▁ кла",
+ "▁b inding",
+ "▁bind ing",
+ "▁bin ding",
+ "▁ binding",
+ "es sen",
+ "ess en",
+ "esse n",
+ "▁Ф ран",
+ "▁L ocal",
+ "▁Lo cal",
+ "▁Loc al",
+ "▁ Local",
+ "▁я вля",
+ "ap pro",
+ "app ro",
+ "▁dep endencies",
+ "▁depend encies",
+ "▁ dependencies",
+ "▁talk ing",
+ "▁tal king",
+ "▁zur ück",
+ "con nection",
+ "connect ion",
+ "conne ction",
+ "conn ection",
+ "Act ive",
+ "Activ e",
+ "bb e",
+ "b be",
+ "ir ls",
+ "irl s",
+ "▁In f",
+ "▁ Inf",
+ "w d",
+ "▁и с",
+ "▁ ис",
+ "ro ad",
+ "▁con ven",
+ "▁conv en",
+ "ě t",
+ "ве з",
+ "в ез",
+ "▁ent ries",
+ "▁entr ies",
+ "▁ entries",
+ "es c",
+ "e sc",
+ "▁b its",
+ "▁bit s",
+ "▁bi ts",
+ "▁ bits",
+ "as so",
+ "ass o",
+ "W R",
+ "sh ips",
+ "ship s",
+ "s hips",
+ "▁d és",
+ "▁dé s",
+ "es p",
+ "e sp",
+ "Ma ke",
+ "M ake",
+ "▁famil iar",
+ "▁familia r",
+ "Ar t",
+ "A rt",
+ "▁ar my",
+ "▁arm y",
+ "ct r",
+ "c tr",
+ "ér ic",
+ "éri c",
+ "é ric",
+ "que ue",
+ "▁\\ {",
+ "▁ \\{",
+ "ue la",
+ "uel a",
+ "u ela",
+ "am iento",
+ "ami ento",
+ "ши х",
+ "ш их",
+ "▁\" \"\"",
+ "▁\"\" \"",
+ "con tr",
+ "cont r",
+ "лл е",
+ "л ле",
+ "F S",
+ "▁mar ket",
+ "▁mark et",
+ "▁ market",
+ "ån g",
+ "å ng",
+ "cite p",
+ "cit ep",
+ "Il l",
+ "I ll",
+ "ran k",
+ "r ank",
+ "▁s ender",
+ "▁se nder",
+ "▁send er",
+ "▁sen der",
+ "▁ sender",
+ "▁be im",
+ "▁bei m",
+ "ра к",
+ "▁com pat",
+ "▁comp at",
+ "▁ compat",
+ "▁occ urs",
+ "▁occur s",
+ "▁d iese",
+ "▁di ese",
+ "▁die se",
+ "▁dies e",
+ "сти ту",
+ "aw a",
+ "a wa",
+ "▁i OS",
+ "▁Ch inese",
+ "▁Chine se",
+ "▁T R",
+ "▁ TR",
+ "▁K en",
+ "▁Ke n",
+ "▁U ne",
+ "▁Un e",
+ "▁cre ates",
+ "▁create s",
+ "▁sh owed",
+ "▁show ed",
+ "▁sho wed",
+ "▁é v",
+ "▁ év",
+ "olog ia",
+ "olo gia",
+ "▁pro test",
+ "▁prote st",
+ "▁prot est",
+ "▁P f",
+ "▁s quad",
+ "▁squ ad",
+ "++ ,",
+ "á v",
+ "▁ess ere",
+ "з я",
+ "ko l",
+ "k ol",
+ "▁slight ly",
+ "ad dr",
+ "add r",
+ "â n",
+ "▁red uce",
+ "▁redu ce",
+ "▁ reduce",
+ "▁\\ (\\",
+ "▁\\( \\",
+ "▁D ep",
+ "▁De p",
+ "▁ Dep",
+ "▁gener ic",
+ "▁gene ric",
+ "▁ generic",
+ "Lo ader",
+ "Load er",
+ "ț i",
+ "▁п ос",
+ "▁по с",
+ "▁occ asion",
+ "▁occas ion",
+ "▁L ady",
+ "▁La dy",
+ "▁Lad y",
+ "ent ity",
+ "enti ty",
+ "▁av ant",
+ "▁ avant",
+ "▁P as",
+ "▁Pa s",
+ "ag gio",
+ "aggi o",
+ "agg io",
+ "\\ {",
+ "па д",
+ "athol ic",
+ "Pass word",
+ "▁res pond",
+ "▁resp ond",
+ "▁ respond",
+ "▁N on",
+ "▁No n",
+ "▁ Non",
+ "A G",
+ "ne g",
+ "n eg",
+ "▁у с",
+ "▁ ус",
+ "bl ob",
+ "blo b",
+ "b lob",
+ "ck e",
+ "c ke",
+ "▁Cons ider",
+ "▁C are",
+ "▁Car e",
+ "▁Ca re",
+ "ik i",
+ "i ki",
+ "▁Ch icago",
+ "in den",
+ "ind en",
+ "inde n",
+ "▁C op",
+ "▁Co p",
+ "] +",
+ "ö m",
+ "év rier",
+ "к ло",
+ "al en",
+ "ale n",
+ "a len",
+ "▁m aj",
+ "▁ma j",
+ "ra cy",
+ "rac y",
+ "r acy",
+ "or te",
+ "ort e",
+ "ien ts",
+ "ient s",
+ "i ents",
+ "el ls",
+ "ell s",
+ "act ivity",
+ "activ ity",
+ "▁r untime",
+ "▁run time",
+ "▁runt ime",
+ "▁ runtime",
+ "NU LL",
+ "N ULL",
+ "▁poss ibly",
+ "▁possib ly",
+ "▁s tri",
+ "▁st ri",
+ "▁str i",
+ "iz i",
+ "i zi",
+ "▁m ir",
+ "▁mi r",
+ "▁ mir",
+ "▁V ersion",
+ "▁Vers ion",
+ "▁ Version",
+ "pr ime",
+ "prim e",
+ "▁tw enty",
+ "▁M ah",
+ "▁Ma h",
+ "▁s ounds",
+ "▁sound s",
+ "ше н",
+ "ш ен",
+ "cl usion",
+ "clus ion",
+ "ac z",
+ "a cz",
+ "▁determ ined",
+ "▁determine d",
+ "▁determin ed",
+ "▁R ep",
+ "▁Re p",
+ "▁ Rep",
+ "▁Land es",
+ "▁Lan des",
+ "▁w all",
+ "▁wa ll",
+ "▁wal l",
+ "▁ wall",
+ "ig i",
+ "i gi",
+ "▁re set",
+ "▁res et",
+ "▁ reset",
+ "ш о",
+ "ya n",
+ "y an",
+ "Me t",
+ "M et",
+ "e i",
+ "▁app earance",
+ "▁appear ance",
+ "▁f ois",
+ "▁fo is",
+ "▁foi s",
+ "▁ fois",
+ "▁n ell",
+ "▁ne ll",
+ "▁nel l",
+ "▁ nell",
+ "es i",
+ "e si",
+ "ё т",
+ "lo or",
+ "l oor",
+ "▁U l",
+ "▁resol ution",
+ "▁f ot",
+ "▁fo t",
+ "▁through out",
+ "▁r i",
+ "▁ ri",
+ "Le vel",
+ "po ol",
+ "p ool",
+ "▁id entity",
+ "▁ident ity",
+ "▁ identity",
+ "▁j anu",
+ "▁jan u",
+ "▁ja nu",
+ "▁im per",
+ "▁imp er",
+ "▁ imper",
+ "▁ö ver",
+ "} `",
+ "▁in fer",
+ "▁inf er",
+ "▁d ates",
+ "▁da tes",
+ "▁dat es",
+ "▁date s",
+ "▁ dates",
+ "▁Stand ard",
+ "▁ Standard",
+ "for ce",
+ "oc key",
+ "ock ey",
+ "ter a",
+ "te ra",
+ "t era",
+ "▁dist ingu",
+ "▁pres ence",
+ "li ca",
+ "lic a",
+ "l ica",
+ "▁le aving",
+ "it ung",
+ "itu ng",
+ "é b",
+ "▁estab lish",
+ "▁m aar",
+ "▁ma ar",
+ "ad i",
+ "a di",
+ "▁New s",
+ "▁Ne ws",
+ "▁ News",
+ "az on",
+ "a zon",
+ "fo lg",
+ "fol g",
+ "f olg",
+ "▁H ence",
+ "▁Hen ce",
+ "▁Y e",
+ "▁f ab",
+ "▁fa b",
+ "▁ fab",
+ "▁f ühr",
+ "▁ führ",
+ "it map",
+ "▁V ers",
+ "▁Ver s",
+ "▁Ve rs",
+ "ro v",
+ "r ov",
+ "Si gn",
+ "S ign",
+ "de vice",
+ "dev ice",
+ "S igma",
+ "▁wet enschapp",
+ "▁P s",
+ "PA TH",
+ "P ATH",
+ "▁t orn",
+ "▁to rn",
+ "▁tor n",
+ "ve st",
+ "ves t",
+ "v est",
+ "ст ов",
+ "сто в",
+ "с тов",
+ "ac count",
+ "acc ount",
+ "acco unt",
+ "▁lar gest",
+ "▁large st",
+ "▁larg est",
+ "▁per cent",
+ "▁perce nt",
+ "▁ percent",
+ "▁W omen",
+ "▁Wo men",
+ "▁im g",
+ "▁ img",
+ "to ol",
+ "t ool",
+ "▁r oce",
+ "▁ro ce",
+ "▁a y",
+ "▁ ay",
+ "in et",
+ "ine t",
+ "i net",
+ "▁ao ût",
+ "▁pol ynomial",
+ "▁integr al",
+ "▁integra l",
+ "▁a reas",
+ "▁are as",
+ "▁area s",
+ "} '",
+ "▁h yp",
+ "▁hy p",
+ "loy ee",
+ "та ль",
+ "тал ь",
+ "т аль",
+ "▁pro xy",
+ "▁ proxy",
+ "▁W y",
+ "▁М екси",
+ "▁Ме кси",
+ "▁es cape",
+ "▁esc ape",
+ "▁ escape",
+ "ol ar",
+ "ola r",
+ "o lar",
+ "▁mis take",
+ "▁mist ake",
+ ")} {",
+ ") }{",
+ "▁P ot",
+ "▁Po t",
+ "▁process es",
+ "▁proc esses",
+ "\"> \r",
+ "\" >\r",
+ "hal ten",
+ "halt en",
+ "zz a",
+ "z za",
+ "am o",
+ "a mo",
+ "к ре",
+ "▁W ood",
+ "▁Wo od",
+ "ø r",
+ "▁с ер",
+ "▁се р",
+ "▁ сер",
+ "oc ia",
+ "oci a",
+ "o cia",
+ "tw o",
+ "t wo",
+ "pro file",
+ "prof ile",
+ "▁A st",
+ "▁As t",
+ "em bro",
+ "emb ro",
+ "▁ar ms",
+ "▁arm s",
+ "in as",
+ "ina s",
+ "i nas",
+ "in nen",
+ "inn en",
+ "▁m sg",
+ "▁ms g",
+ "▁ msg",
+ "IN T",
+ "I NT",
+ "▁b atter",
+ "▁batt er",
+ "▁bat ter",
+ "ign ment",
+ "▁v y",
+ "▁ vy",
+ "H rsg",
+ "▁G rund",
+ "▁Gr und",
+ "▁Gru nd",
+ "ro c",
+ "r oc",
+ "se g",
+ "s eg",
+ "▁de cor",
+ "▁dec or",
+ "▁ decor",
+ "▁event ually",
+ "> ,",
+ "▁p ag",
+ "▁pa g",
+ "▁ pag",
+ "an ten",
+ "ant en",
+ "ante n",
+ "a nten",
+ "▁str ugg",
+ "▁stru gg",
+ "}^ \\",
+ "} ^\\",
+ "date n",
+ "da ten",
+ "dat en",
+ "d aten",
+ "▁re la",
+ "▁r ela",
+ "▁rel a",
+ "по в",
+ "п ов",
+ "▁ко ро",
+ "▁кор о",
+ "▁B os",
+ "▁Bo s",
+ "▁l abor",
+ "▁la bor",
+ "▁lab or",
+ "▁Se cret",
+ "▁Sec ret",
+ "▁ Secret",
+ "ug en",
+ "uge n",
+ "u gen",
+ "▁j ap",
+ "▁ja p",
+ "▁hus band",
+ "▁Al bum",
+ "▁Alb um",
+ "▁et wa",
+ "▁про из",
+ "ri cht",
+ "ric ht",
+ "rich t",
+ "r icht",
+ "ra ch",
+ "rac h",
+ "r ach",
+ "ba t",
+ "b at",
+ "▁pre par",
+ "▁prep ar",
+ "▁St ock",
+ "▁Sto ck",
+ "▁l ack",
+ "▁la ck",
+ "▁lac k",
+ "▁ lack",
+ "хі д",
+ "х ід",
+ "▁h ogy",
+ "▁ho gy",
+ "▁Ch rome",
+ "▁Chr ome",
+ "▁Ad min",
+ "▁ Admin",
+ "▁com parison",
+ "▁compar ison",
+ "▁incre asing",
+ "н г",
+ "im i",
+ "i mi",
+ "D b",
+ "▁g ef",
+ "▁ge f",
+ "▁ gef",
+ "uch t",
+ "uc ht",
+ "u cht",
+ "és e",
+ "é se",
+ "gen ce",
+ "g ence",
+ "▁C ore",
+ "▁Cor e",
+ "▁Co re",
+ "▁ Core",
+ "▁in correct",
+ "▁incor rect",
+ "▁ass uming",
+ "▁assum ing",
+ "our se",
+ "ours e",
+ "ie ron",
+ "ier on",
+ "iero n",
+ "▁The orem",
+ "▁ Theorem",
+ "▁c asa",
+ "▁cas a",
+ "▁ca sa",
+ "je s",
+ "j es",
+ "▁д ере",
+ "▁де ре",
+ "▁` \"",
+ "L D",
+ "ä ß",
+ "De b",
+ "D eb",
+ "▁su iv",
+ "▁B ank",
+ "▁Ban k",
+ "li bs",
+ "lib s",
+ "▁Le on",
+ "▁Leo n",
+ "▁qu art",
+ "▁quar t",
+ "▁prof essional",
+ "▁profession al",
+ "▁profess ional",
+ "▁t iene",
+ "▁ti ene",
+ "▁tie ne",
+ "▁acc omp",
+ "▁ac comp",
+ "▁accom p",
+ "ст ер",
+ "сте р",
+ "с тер",
+ "▁U K",
+ "▁ UK",
+ "N N",
+ "▁l í",
+ "ц я",
+ "ke l",
+ "k el",
+ "▁ •",
+ "▁d ise",
+ "▁di se",
+ "▁dis e",
+ "on to",
+ "ont o",
+ "▁m á",
+ "if s",
+ "i fs",
+ "bi ld",
+ "bil d",
+ "b ild",
+ "▁comp ute",
+ "▁comput e",
+ "▁ compute",
+ "▁é d",
+ "▁ éd",
+ "j ę",
+ "▁M é",
+ "▁l anguages",
+ "▁language s",
+ "▁T imes",
+ "▁Time s",
+ "▁Tim es",
+ "▁Ti mes",
+ "▁ Times",
+ "ce n",
+ "c en",
+ "▁ав то",
+ "ý m",
+ "en ez",
+ "ene z",
+ "e nez",
+ "▁u pp",
+ "▁up p",
+ "▁ upp",
+ "▁m éd",
+ "▁mé d",
+ "▁cu ando",
+ "о д",
+ "Int ent",
+ "ee rd",
+ "e erd",
+ "▁T al",
+ "▁Ta l",
+ "off set",
+ "offs et",
+ "▁h aben",
+ "▁ha ben",
+ "▁hab en",
+ "▁habe n",
+ "re me",
+ "rem e",
+ "r eme",
+ "▁St ack",
+ "▁Sta ck",
+ "▁ Stack",
+ "▁d ri",
+ "▁dr i",
+ "▁ dri",
+ "▁sein em",
+ "▁seine m",
+ "▁sei nem",
+ "▁f évrier",
+ "▁comb ination",
+ "▁combin ation",
+ "▁s oll",
+ "▁so ll",
+ "▁sol l",
+ "▁mov ement",
+ "▁mo vement",
+ "▁move ment",
+ "Sp ec",
+ "Spe c",
+ "S pec",
+ "к ры",
+ "ret ch",
+ "r etch",
+ "Off set",
+ "Ro ot",
+ "R oot",
+ "А р",
+ "wa rt",
+ "war t",
+ "w art",
+ "▁F ollow",
+ "▁Fol low",
+ "▁So cial",
+ "▁Soci al",
+ "▁Soc ial",
+ "ни ков",
+ "ник ов",
+ "▁ →",
+ "Do n",
+ "D on",
+ "▁h arm",
+ "▁ha rm",
+ "▁har m",
+ "▁ harm",
+ "ag r",
+ "a gr",
+ "ne go",
+ "neg o",
+ "n ego",
+ "re source",
+ "res ource",
+ "▁L uc",
+ "▁Lu c",
+ "▁se inen",
+ "▁sein en",
+ "▁seine n",
+ "▁sei nen",
+ "▁De partment",
+ "▁Depart ment",
+ "▁Up date",
+ "▁ Update",
+ "▁Tex as",
+ "▁re ve",
+ "▁rev e",
+ "▁P os",
+ "▁Po s",
+ "▁ Pos",
+ "▁s hot",
+ "▁sh ot",
+ "▁sho t",
+ "▁ shot",
+ "ot he",
+ "oth e",
+ "o the",
+ "▁repe ated",
+ "▁repeat ed",
+ "▁rec ently",
+ "▁recent ly",
+ "áb an",
+ "á ban",
+ "ak s",
+ "a ks",
+ "па н",
+ "п ан",
+ "▁c ha",
+ "▁ch a",
+ "▁ cha",
+ "oh l",
+ "o hl",
+ "▁t end",
+ "▁te nd",
+ "▁ten d",
+ "▁д во",
+ "ch ts",
+ "cht s",
+ "ça ise",
+ "çais e",
+ "pl ing",
+ "p ling",
+ "al bum",
+ "e j",
+ "▁` [",
+ "ma ps",
+ "map s",
+ "m aps",
+ "▁un its",
+ "▁unit s",
+ "▁< !--",
+ "▁",
+ "St and",
+ "▁techn ique",
+ "▁techni que",
+ "▁E ss",
+ "▁Es s",
+ "▁Ox ford",
+ "▁ ла",
+ "t ikz",
+ "ли й",
+ "Log in",
+ "Lo gin",
+ "▁min ister",
+ "▁minist er",
+ "▁mini ster",
+ "▁ minister",
+ "▁c url",
+ "▁cu rl",
+ "▁cur l",
+ "▁ curl",
+ "ka n",
+ "k an",
+ "▁m aps",
+ "▁ma ps",
+ "▁map s",
+ "▁ maps",
+ "in da",
+ "ind a",
+ "ri eb",
+ "rie b",
+ "r ieb",
+ "▁E ND",
+ "▁EN D",
+ "▁ END",
+ "if ies",
+ "ifi es",
+ "ifie s",
+ "con sole",
+ "cons ole",
+ "bu ry",
+ "bur y",
+ "b ury",
+ "▁L E",
+ "▁ LE",
+ "▁indep end",
+ "▁inde pend",
+ "▁t a",
+ "▁ ta",
+ "▁ Ś",
+ "on el",
+ "one l",
+ "o nel",
+ "és z",
+ "é sz",
+ "▁I st",
+ "▁Is t",
+ "ut ive",
+ "uti ve",
+ "ё л",
+ "▁Reg ion",
+ "▁ Region",
+ "▁( =",
+ "▁comp act",
+ "ço is",
+ "ç ois",
+ "▁label s",
+ "▁lab els",
+ "▁ labels",
+ "autor ité",
+ "▁s tan",
+ "▁st an",
+ "▁sta n",
+ "▁ stan",
+ "▁fran çaise",
+ "▁français e",
+ "▁rem oving",
+ "▁remov ing",
+ "y c",
+ "} |",
+ "▁Ex ec",
+ "▁ Exec",
+ "($ _",
+ "( $_",
+ "ma g",
+ "m ag",
+ "be fore",
+ "▁stop ped",
+ "▁sto pped",
+ "ми и",
+ "▁ref resh",
+ "▁ refresh",
+ "un kt",
+ "unk t",
+ "ic io",
+ "ici o",
+ "i cio",
+ "X ml",
+ "▁T ab",
+ "▁Ta b",
+ "▁ Tab",
+ "▁f ounded",
+ "▁found ed",
+ "▁f al",
+ "▁fa l",
+ "▁ fal",
+ "f x",
+ "▁Histor ia",
+ "▁Hist oria",
+ "▁Ear ly",
+ "▁Earl y",
+ "Do m",
+ "D om",
+ "▁de cide",
+ "▁dec ide",
+ "▁decid e",
+ "▁under stood",
+ "▁j ur",
+ "▁ju r",
+ "▁N r",
+ "▁cap ac",
+ "wa s",
+ "w as",
+ "▁en emy",
+ "▁enem y",
+ "▁program s",
+ "▁m ask",
+ "▁ma sk",
+ "▁mas k",
+ "▁ mask",
+ "ск е",
+ "с ке",
+ "▁gr oupe",
+ "▁group e",
+ "ca m",
+ "c am",
+ "▁w idget",
+ "▁wid get",
+ "▁ widget",
+ "RE ATE",
+ "▁se va",
+ "▁Bar cel",
+ "▁p erd",
+ "▁per d",
+ "▁pe rd",
+ "▁М у",
+ "ran ce",
+ "r ance",
+ "TY PE",
+ "T YPE",
+ "▁{ '",
+ "▁ {'",
+ "▁b ill",
+ "▁bi ll",
+ "▁bil l",
+ "▁\" _",
+ "' `",
+ "ba hn",
+ "bah n",
+ "b ahn",
+ "▁cont ained",
+ "▁contain ed",
+ "Cl ose",
+ "C lose",
+ "ru g",
+ "r ug",
+ "eg y",
+ "e gy",
+ "▁s ight",
+ "▁sig ht",
+ "▁Pro vin",
+ "▁Prov in",
+ "н ю",
+ "ar z",
+ "a rz",
+ "ще н",
+ "щ ен",
+ "▁J oe",
+ "▁Jo e",
+ "▁de leted",
+ "▁delete d",
+ "▁delet ed",
+ "▁A uto",
+ "▁Aut o",
+ "▁Au to",
+ "▁ Auto",
+ "▁m eter",
+ "▁me ter",
+ "▁met er",
+ "▁ meter",
+ "C G",
+ "ъ л",
+ "▁p ent",
+ "▁pe nt",
+ "▁pen t",
+ "▁ pent",
+ "▁be zeichnet",
+ "Su m",
+ "S um",
+ "db c",
+ "d bc",
+ "▁Pl atz",
+ "▁Pla tz",
+ "▁Plat z",
+ "ect ors",
+ "ector s",
+ "e ctors",
+ "▁L ittle",
+ "QU E",
+ "Q UE",
+ "ці я",
+ "ц ія",
+ "те ля",
+ "тел я",
+ "nig ht",
+ "n ight",
+ "▁l l",
+ "▁ ll",
+ "▁most ly",
+ "UI D",
+ "U ID",
+ "▁b ez",
+ "▁be z",
+ "▁ bez",
+ "do b",
+ "d ob",
+ "кс и",
+ "к си",
+ "ter ne",
+ "tern e",
+ "t erne",
+ "▁cor ner",
+ "▁corn er",
+ "at y",
+ "a ty",
+ "▁impro ve",
+ "▁improv e",
+ "▁impr ove",
+ "▁in tr",
+ "▁int r",
+ "▁` @",
+ "ar od",
+ "aro d",
+ "a rod",
+ "▁install ation",
+ "▁instal lation",
+ "▁Refer ências",
+ "ig an",
+ "iga n",
+ "i gan",
+ "▁crit ic",
+ "ad el",
+ "ade l",
+ "a del",
+ "▁се ло",
+ ", \r",
+ "at ori",
+ "ator i",
+ "ato ri",
+ "▁F ri",
+ "▁Fr i",
+ "▁ Fri",
+ "▁ré férences",
+ "▁Int ent",
+ "▁ Intent",
+ "▁t ant",
+ "▁tan t",
+ "▁ta nt",
+ "un ci",
+ "unc i",
+ "▁level s",
+ "▁lev els",
+ "er es",
+ "ere s",
+ "e res",
+ "▁e mer",
+ "▁em er",
+ "▁ emer",
+ "sa fe",
+ "t k",
+ "▁c ham",
+ "▁ch am",
+ "▁cha m",
+ "▁great ly",
+ "▁we it",
+ "▁ weit",
+ "▁co ach",
+ "▁to ward",
+ "Hom e",
+ "H ome",
+ "▁Bo olean",
+ "▁ Boolean",
+ "те л",
+ "т ел",
+ "▁m ock",
+ "▁mo ck",
+ "▁ mock",
+ "▁appreci ate",
+ "▁C ross",
+ "▁Cr oss",
+ "▁Cro ss",
+ "▁T ake",
+ "▁Ta ke",
+ "▁Tak e",
+ "▁ Take",
+ "D P",
+ "▁s ides",
+ "▁si des",
+ "▁side s",
+ "▁sid es",
+ "▁Norm daten",
+ "де й",
+ "д ей",
+ "st al",
+ "sta l",
+ "s tal",
+ "▁c out",
+ "▁co ut",
+ "▁cou t",
+ "▁ cout",
+ "b n",
+ "▁V ert",
+ "▁Ver t",
+ "▁Ve rt",
+ "▁ Vert",
+ "▁b ird",
+ "▁bi rd",
+ "▁bir d",
+ "▁ bird",
+ "▁dynam ically",
+ "▁dynamic ally",
+ "▁D ol",
+ "▁Do l",
+ "▁B urg",
+ "▁Bu rg",
+ "▁Bur g",
+ "▁d og",
+ "▁do g",
+ "▁ dog",
+ "ät t",
+ "ä tt",
+ "▁n uc",
+ "▁nu c",
+ "E C",
+ "By tes",
+ "Byte s",
+ "▁a k",
+ "▁ ak",
+ "re land",
+ "rel and",
+ "r eland",
+ "▁gu itar",
+ "▁reg arding",
+ "▁regard ing",
+ "▁F uß",
+ "▁Fu ß",
+ "▁до л",
+ "▁ дол",
+ "au ss",
+ "aus s",
+ "a uss",
+ "▁j ej",
+ "▁je j",
+ "ac o",
+ "a co",
+ "▁up dates",
+ "▁update s",
+ "▁upd ates",
+ "ру к",
+ "р ук",
+ "(' /",
+ "▁c old",
+ "▁col d",
+ "▁co ld",
+ "▁G iven",
+ "▁Gi ven",
+ "▁Give n",
+ "hi n",
+ "h in",
+ "▁fe eling",
+ "▁feel ing",
+ "▁fee ling",
+ "ig li",
+ "fa h",
+ "f ah",
+ "ст ре",
+ "стр е",
+ "с тре",
+ "bo ol",
+ "b ool",
+ "init ial",
+ "▁станов ника",
+ "▁An na",
+ "▁Ann a",
+ "▁h ors",
+ "▁hor s",
+ "▁ho rs",
+ "▁d oll",
+ "▁do ll",
+ "▁dol l",
+ "▁con sum",
+ "▁cons um",
+ "▁ consum",
+ "ub er",
+ "ube r",
+ "u ber",
+ "stand ing",
+ "stan ding",
+ "act iv",
+ "з і",
+ "check ed",
+ "▁perm issions",
+ "▁permission s",
+ "▁M onte",
+ "▁Mon te",
+ "▁Mont e",
+ "Write Line",
+ "pl us",
+ "p lus",
+ "▁E qu",
+ "▁Eq u",
+ "▁ Equ",
+ "▁и х",
+ "▁ их",
+ "ч ки",
+ "un que",
+ "▁L O",
+ "▁ LO",
+ "e a",
+ "sam ple",
+ "s ample",
+ "ie sz",
+ "ies z",
+ "i esz",
+ "or al",
+ "ora l",
+ "o ral",
+ "▁И н",
+ "os ton",
+ "ost on",
+ "osto n",
+ "o ston",
+ "▁S imon",
+ "▁Sim on",
+ "▁Si mon",
+ "fa st",
+ "fas t",
+ "f ast",
+ "m k",
+ "as sen",
+ "ass en",
+ "asse n",
+ "▁arch itecture",
+ "▁architect ure",
+ "▁ architecture",
+ "ens es",
+ "ense s",
+ "▁ Å",
+ "▁to pic",
+ "▁top ic",
+ "▁ topic",
+ "▁dis able",
+ "▁ disable",
+ "▁C ru",
+ "▁Cr u",
+ "▁Cont rol",
+ "▁ Control",
+ "▁cre ation",
+ "▁hy per",
+ "▁hyp er",
+ "▁ hyper",
+ "it ud",
+ "itu d",
+ "же ния",
+ "ar am",
+ "ara m",
+ "a ram",
+ "▁г де",
+ "ien st",
+ "iens t",
+ "i enst",
+ "ed ule",
+ "edu le",
+ "▁B ot",
+ "▁Bo t",
+ "▁О с",
+ "▁The ir",
+ "an ne",
+ "ann e",
+ "M icrosoft",
+ "▁P M",
+ "▁ PM",
+ "yd ro",
+ "y dro",
+ "ent lich",
+ "▁E ine",
+ "▁Ein e",
+ "CH AR",
+ ": '",
+ "We ll",
+ "Wel l",
+ "W ell",
+ "le ton",
+ "let on",
+ "l eton",
+ "▁support s",
+ "▁sup ports",
+ "'] )",
+ "' ])",
+ "man ual",
+ "▁v ice",
+ "▁vi ce",
+ "▁vic e",
+ "▁ vice",
+ "as a",
+ "a sa",
+ "cl os",
+ "clo s",
+ "c los",
+ "vi sed",
+ "vis ed",
+ "v ised",
+ "▁p ok",
+ "▁po k",
+ "tr ack",
+ "tra ck",
+ "t rack",
+ "но ст",
+ "нос т",
+ "... .....",
+ ".... ....",
+ "..... ...",
+ "▁' \\",
+ "▁ '\\",
+ "² .",
+ "▁or ders",
+ "▁order s",
+ "▁ord ers",
+ "▁ orders",
+ "et ta",
+ "ett a",
+ "e tta",
+ "▁con version",
+ "▁conv ersion",
+ "▁convers ion",
+ "▁t rade",
+ "▁tr ade",
+ "▁tra de",
+ "▁trad e",
+ "cl i",
+ "c li",
+ "▁И сто",
+ "▁Ис то",
+ "▁a kt",
+ "▁ak t",
+ "▁ akt",
+ "▁sub set",
+ "▁subs et",
+ "▁ subset",
+ "▁a ug",
+ "▁au g",
+ "▁ aug",
+ "▁le aves",
+ "▁leave s",
+ "Mat h",
+ "Ma th",
+ "M ath",
+ "an ned",
+ "ann ed",
+ "anne d",
+ "ka l",
+ "k al",
+ "▁Ве ли",
+ "▁n og",
+ "▁no g",
+ "▁ nog",
+ "▁e th",
+ "▁et h",
+ "▁ eth",
+ "▁h air",
+ "▁ha ir",
+ "ar ound",
+ "aro und",
+ "a round",
+ "▁java x",
+ "▁jav ax",
+ "▁ javax",
+ "во й",
+ "▁C entre",
+ "▁Cent re",
+ "ö ß",
+ "ut i",
+ "u ti",
+ "▁n avigation",
+ "▁navig ation",
+ "▁ navigation",
+ "▁P S",
+ "▁ PS",
+ "▁w a",
+ "▁ wa",
+ "▁Ро ссии",
+ "▁Рос сии",
+ "▁Росси и",
+ "us a",
+ "u sa",
+ "ze ta",
+ "zet a",
+ "z eta",
+ "▁P DF",
+ "▁ PDF",
+ "▁m ismo",
+ "▁mis mo",
+ "▁mism o",
+ "pro perties",
+ "me ister",
+ "ль та",
+ "for ward",
+ "▁O st",
+ "▁Os t",
+ "ki ns",
+ "kin s",
+ "k ins",
+ "▁s ido",
+ "▁si do",
+ "▁sid o",
+ "зо в",
+ "з ов",
+ "ta gs",
+ "tag s",
+ "t ags",
+ "▁a ctor",
+ "▁act or",
+ "▁ac tor",
+ "▁ actor",
+ "▁f ly",
+ "▁fl y",
+ "▁ fly",
+ "C R",
+ "ag ini",
+ "agi ni",
+ "agin i",
+ "▁l ett",
+ "▁le tt",
+ "▁let t",
+ "▁ lett",
+ "en i",
+ "e ni",
+ "te ch",
+ "t ech",
+ "▁E nc",
+ "▁En c",
+ "▁ Enc",
+ "or acle",
+ "ora cle",
+ "o racle",
+ "amil ton",
+ "ze j",
+ "z ej",
+ "fe n",
+ "f en",
+ "ume rate",
+ "umer ate",
+ "▁qu esto",
+ "▁que sto",
+ "▁q uesto",
+ "▁quest o",
+ "da rt",
+ "dar t",
+ "d art",
+ "▁K ore",
+ "▁Ko re",
+ "▁Kor e",
+ "ap is",
+ "api s",
+ "a pis",
+ "ep er",
+ "e per",
+ "Sc reen",
+ "S creen",
+ "wa ll",
+ "wal l",
+ "w all",
+ "▁is land",
+ "sh e",
+ "s he",
+ "▁l igger",
+ "▁lig ger",
+ "в ся",
+ "fa ng",
+ "fan g",
+ "f ang",
+ "▁t ard",
+ "▁tar d",
+ "▁ta rd",
+ "▁pla ats",
+ "▁п ло",
+ "▁ пло",
+ "▁Off ice",
+ "▁Offic e",
+ "▁ Office",
+ "▁S ET",
+ "▁SE T",
+ "▁ SET",
+ "▁circ uit",
+ "je d",
+ "j ed",
+ "Sa ve",
+ "S ave",
+ "ль но",
+ "So cket",
+ "S ocket",
+ "▁In dex",
+ "▁Ind ex",
+ "▁ Index",
+ "AC K",
+ "A CK",
+ "id ers",
+ "ide rs",
+ "ider s",
+ "i ders",
+ "er er",
+ "ere r",
+ "e rer",
+ "▁С ША",
+ "▁l ady",
+ "▁la dy",
+ "▁lad y",
+ "▁sch eme",
+ "▁sche me",
+ "ie lle",
+ "iel le",
+ "i elle",
+ "▁ex erc",
+ "▁exer c",
+ ")} \\",
+ ") }\\",
+ "Date Time",
+ "at han",
+ "ath an",
+ "a than",
+ "▁Prof essor",
+ "▁mo ins",
+ "▁moi ns",
+ "▁Ex cel",
+ "▁ Excel",
+ "▁H ay",
+ "▁Ha y",
+ "▁Mus ik",
+ "▁ ї",
+ "ę d",
+ "▁\" .",
+ "▁ \".",
+ "▁бу в",
+ "▁inst rument",
+ "▁instru ment",
+ "па р",
+ "п ар",
+ "▁б ере",
+ "▁бе ре",
+ "▁ бере",
+ "▁polit ique",
+ "▁trad ition",
+ "▁V M",
+ "▁ VM",
+ "▁Ar ts",
+ "▁Art s",
+ "▁C i",
+ "Us e",
+ "U se",
+ "▁a ggreg",
+ "▁ag greg",
+ "▁ aggreg",
+ "▁we eks",
+ "▁week s",
+ "▁o pport",
+ "▁op port",
+ "▁opp ort",
+ "it ing",
+ "iti ng",
+ "i ting",
+ "▁vert ical",
+ "▁ vertical",
+ "▁N az",
+ "▁Na z",
+ ".. .)",
+ "... )",
+ "iz o",
+ "i zo",
+ "▁c ycle",
+ "▁cy cle",
+ "▁cycl e",
+ "▁ cycle",
+ "▁tem po",
+ "▁temp o",
+ "т ре",
+ "▁hand ling",
+ "ist ence",
+ "isten ce",
+ "▁p aste",
+ "▁pas te",
+ "▁pa ste",
+ "▁past e",
+ "▁ paste",
+ "▁en jo",
+ "RO UP",
+ "▁o uter",
+ "▁out er",
+ "▁ou ter",
+ "▁ outer",
+ "▁su pply",
+ "▁supp ly",
+ "▁sup ply",
+ "em an",
+ "ema n",
+ "e man",
+ "▁acc ident",
+ "▁\\ ]",
+ "▁ \\]",
+ "▁те х",
+ "▁ тех",
+ "Po ol",
+ "P ool",
+ "ot ing",
+ "oti ng",
+ "o ting",
+ "onym ous",
+ "▁Gi ov",
+ "▁u d",
+ "▁ ud",
+ "▁. /",
+ "▁ ./",
+ "ER ROR",
+ "ERR OR",
+ "con struct",
+ "const ruct",
+ "text width",
+ "qu ipe",
+ "qui pe",
+ "quip e",
+ "case s",
+ "cas es",
+ "c ases",
+ "▁а д",
+ "▁R ow",
+ "▁Ro w",
+ "▁ Row",
+ "Hol der",
+ "Hold er",
+ "H older",
+ "wa n",
+ "w an",
+ "ar na",
+ "arn a",
+ "Me m",
+ "M em",
+ "▁Canad ian",
+ "▁Com mission",
+ "▁Comm ission",
+ "su n",
+ "s un",
+ "▁app s",
+ "▁ap ps",
+ "▁ apps",
+ "▁B lo",
+ "▁Bl o",
+ "▁i hrer",
+ "▁ih rer",
+ "▁ihr er",
+ "▁ihre r",
+ "▁famil le",
+ "▁fam ille",
+ "▁m ě",
+ "▁p y",
+ "▁ py",
+ "и с",
+ "▁т ого",
+ "▁то го",
+ "▁ того",
+ "▁Ag ain",
+ "▁ign ore",
+ "▁ignor e",
+ "▁ ignore",
+ "▁tele vision",
+ "▁televis ion",
+ "Pa t",
+ "P at",
+ "hi de",
+ "h ide",
+ "▁R ev",
+ "▁Re v",
+ "▁b ear",
+ "▁be ar",
+ "ph y",
+ "p hy",
+ "▁no ise",
+ "▁w ra",
+ "▁wr a",
+ "at ionale",
+ "ation ale",
+ "ational e",
+ "▁coll abor",
+ "bor der",
+ "b order",
+ "▁el ected",
+ "▁elect ed",
+ "▁ele cted",
+ "▁sur pr",
+ "▁a voir",
+ "▁av oir",
+ "▁avo ir",
+ "▁ avoir",
+ "▁ass embly",
+ "▁assemb ly",
+ "▁ assembly",
+ "▁об ще",
+ "▁arbitr ary",
+ "▁br ief",
+ "▁- --",
+ "▁-- -",
+ "▁ ---",
+ "▁M aur",
+ "▁Ma ur",
+ "▁Mau r",
+ "gr ession",
+ "gress ion",
+ "g ression",
+ "ic ia",
+ "ici a",
+ "i cia",
+ "▁lie gt",
+ "▁Fig ure",
+ "▁on to",
+ "▁ont o",
+ "▁ onto",
+ "Re pository",
+ "Repos itory",
+ "▁dé f",
+ "▁f orth",
+ "▁for th",
+ "▁fort h",
+ "▁cl icked",
+ "▁click ed",
+ "se ite",
+ "▁n otes",
+ "▁not es",
+ "▁no tes",
+ "▁note s",
+ "▁ notes",
+ "nat ive",
+ "n ative",
+ "▁ED IT",
+ "▁ EDIT",
+ "ы е",
+ "M T",
+ "am ental",
+ "ament al",
+ "amen tal",
+ "▁r ose",
+ "▁ro se",
+ "▁ros e",
+ "▁ rose",
+ "▁pu ede",
+ "▁pue de",
+ "De legate",
+ "Deleg ate",
+ "ub a",
+ "u ba",
+ "ne o",
+ "xi s",
+ "x is",
+ "▁Ar thur",
+ "UR E",
+ "U RE",
+ "am ing",
+ "ami ng",
+ "amin g",
+ "a ming",
+ "De vice",
+ "Dev ice",
+ "▁d iam",
+ "▁di am",
+ "▁dia m",
+ "st änd",
+ "▁p ron",
+ "▁pro n",
+ "▁pr on",
+ "oi s",
+ "o is",
+ "com ing",
+ "co ming",
+ "c oming",
+ "Param eters",
+ "Parameter s",
+ "uv ud",
+ "▁ab ility",
+ "▁ ability",
+ "▁m ét",
+ "▁mé t",
+ "▁Un fortunately",
+ "f d",
+ "D ictionary",
+ "so cket",
+ "sock et",
+ "s ocket",
+ "▁con oc",
+ "▁co noc",
+ "cont ains",
+ "es sed",
+ "ess ed",
+ "esse d",
+ "▁gel dig",
+ "▁geld ig",
+ "ни ца",
+ "ниц а",
+ "▁point ed",
+ "es ti",
+ "est i",
+ "no m",
+ "n om",
+ "ографи я",
+ "▁represent s",
+ "▁repres ents",
+ "▁man ip",
+ "wor ld",
+ "w orld",
+ "▁resol ved",
+ "▁resolve d",
+ "te gr",
+ "t egr",
+ "▁d ort",
+ "▁do rt",
+ "▁dor t",
+ "as tern",
+ "ast ern",
+ "aster n",
+ "aste rn",
+ "▁camp aign",
+ "▁pr imo",
+ "▁prim o",
+ "▁pri mo",
+ "▁; ;",
+ "▁ ;;",
+ "▁sni ppet",
+ "▁N ik",
+ "▁Ni k",
+ "To tal",
+ "T otal",
+ "iss ement",
+ "isse ment",
+ "AC E",
+ "A CE",
+ "▁ver ify",
+ "▁ verify",
+ "if fe",
+ "iff e",
+ "i ffe",
+ "la gen",
+ "lag en",
+ "lage n",
+ "l agen",
+ "ie ur",
+ "ieu r",
+ "i eur",
+ "▁convert ed",
+ "▁conver ted",
+ "▁Mil it",
+ "▁Mi lit",
+ "▁A lg",
+ "▁Al g",
+ "▁ Alg",
+ "▁R on",
+ "▁Ro n",
+ "▁k onn",
+ "▁kon n",
+ "▁ko nn",
+ "ap ple",
+ "app le",
+ "▁dis pos",
+ "▁disp os",
+ "stell ung",
+ "▁re tain",
+ "▁ret ain",
+ "▁m entre",
+ "▁men tre",
+ "▁ment re",
+ "▁ne ut",
+ "▁neu t",
+ "▁ neut",
+ "▁N ight",
+ "ch é",
+ "c hé",
+ "at ti",
+ "att i",
+ "▁o bra",
+ "▁ob ra",
+ "▁super ior",
+ "▁Con gress",
+ "▁Cong ress",
+ "ё м",
+ "▁c odes",
+ "▁code s",
+ "▁co des",
+ "▁cod es",
+ "▁ codes",
+ "▁A ma",
+ "▁Am a",
+ "▁E arth",
+ "▁Ear th",
+ "▁oppos ite",
+ "▁p ool",
+ "▁po ol",
+ "▁ pool",
+ "▁D un",
+ "▁Du n",
+ "же ние",
+ "▁\" ${",
+ "▁\"$ {",
+ "in v",
+ "▁у ни",
+ "▁And rew",
+ "▁Andre w",
+ "те лей",
+ "тел ей",
+ "▁by ł",
+ "Un ivers",
+ "Uni vers",
+ "▁Ang ular",
+ "an im",
+ "ani m",
+ "a nim",
+ "до ва",
+ "дов а",
+ "д ова",
+ "BU G",
+ "B UG",
+ "ut ely",
+ "ute ly",
+ "▁draw ing",
+ "▁dra wing",
+ "▁g ain",
+ "▁ga in",
+ "▁four th",
+ "▁Pro blem",
+ "▁ Problem",
+ "▁sudden ly",
+ "▁ Ä",
+ "on na",
+ "onn a",
+ "▁K ont",
+ "▁Kon t",
+ "▁Ko nt",
+ "▁Bilder n",
+ "▁Bild ern",
+ "▁Bil dern",
+ "▁konn te",
+ "ž e",
+ "Tr ace",
+ "Tra ce",
+ "T race",
+ "▁sec ure",
+ "▁ secure",
+ "▁któ ry",
+ "▁e q",
+ "▁ eq",
+ "▁f ormal",
+ "▁for mal",
+ "▁form al",
+ "▁forma l",
+ "amer ikan",
+ "▁A nal",
+ "▁An al",
+ "▁Ana l",
+ "▁ Anal",
+ "▁R ewrite",
+ "▁Re write",
+ "▁D ouble",
+ "▁Dou ble",
+ "▁ Double",
+ "cre ated",
+ "create d",
+ "N U",
+ "MD b",
+ "M Db",
+ "ap es",
+ "ape s",
+ "a pes",
+ "Un is",
+ "Uni s",
+ "U nis",
+ "▁e special",
+ "▁espe cial",
+ "▁espec ial",
+ "}) \\",
+ "} )\\",
+ "ed om",
+ "edo m",
+ "e dom",
+ "▁c ategor",
+ "▁categ or",
+ "Re turn",
+ "Ret urn",
+ "▁H amb",
+ "▁Ha mb",
+ "▁Ham b",
+ "▁R io",
+ "▁Ri o",
+ "▁M ir",
+ "▁Mi r",
+ "▁G eme",
+ "▁Ge me",
+ "▁Gem e",
+ "ab ilities",
+ "abil ities",
+ "tr z",
+ "t rz",
+ "us et",
+ "use t",
+ "u set",
+ "ier ra",
+ "net work",
+ "n etwork",
+ "▁do ctor",
+ "▁doc tor",
+ "eur s",
+ "eu rs",
+ "e urs",
+ "▁l isten",
+ "▁li sten",
+ "▁list en",
+ "▁liste n",
+ "▁ listen",
+ "д ж",
+ "▁H ö",
+ "▁cons ists",
+ "▁consist s",
+ "as m",
+ "a sm",
+ "Ch r",
+ "C hr",
+ "al and",
+ "ala nd",
+ "a land",
+ "▁испо ль",
+ "▁ис поль",
+ "▁испол ь",
+ "▁lug ar",
+ "▁lu gar",
+ "▁def initely",
+ "▁definit ely",
+ "▁definite ly",
+ "mo ve",
+ "mov e",
+ "m ove",
+ "úblic a",
+ "ú blica",
+ "▁l än",
+ "▁lä n",
+ "is mus",
+ "ism us",
+ "▁др жа",
+ "▁d t",
+ "▁ dt",
+ "▁Per haps",
+ "▁Bra sil",
+ "▁Bras il",
+ "Jo hn",
+ "J ohn",
+ "▁prom ise",
+ "ł u",
+ "re ens",
+ "ree ns",
+ "reen s",
+ "▁ps ych",
+ "▁W ho",
+ "▁Wh o",
+ "▁ Who",
+ "ря д",
+ "▁IN TO",
+ "▁INT O",
+ "▁Pe ople",
+ "▁Will iams",
+ "▁William s",
+ "▁M arg",
+ "▁Mar g",
+ "▁Ma rg",
+ "▁д ан",
+ "▁да н",
+ "▁ дан",
+ "re cord",
+ "rec ord",
+ "▁E uro",
+ "▁Eu ro",
+ "▁Eur o",
+ "▁Virgin ia",
+ "▁R est",
+ "▁Re st",
+ "▁Res t",
+ "▁ Rest",
+ "▁C orn",
+ "▁Cor n",
+ "▁Co rn",
+ "}} ,",
+ "} },",
+ "▁G rid",
+ "▁Gr id",
+ "▁ Grid",
+ "▁in ject",
+ "▁inj ect",
+ "▁ inject",
+ "на н",
+ "н ан",
+ "▁c row",
+ "▁cr ow",
+ "▁cro w",
+ "▁Ph ys",
+ "▁ Phys",
+ "▁D O",
+ "▁ DO",
+ "▁\" -",
+ "▁incre ased",
+ "▁increase d",
+ "ach er",
+ "ac her",
+ "ache r",
+ "a cher",
+ "pe at",
+ "Li n",
+ "L in",
+ "▁D ub",
+ "▁Du b",
+ "ri ces",
+ "ric es",
+ "rice s",
+ "r ices",
+ "ag nost",
+ "agn ost",
+ "d l",
+ "▁cur ve",
+ "▁curv e",
+ "ü g",
+ "ri ce",
+ "ric e",
+ "r ice",
+ "l anguage",
+ "Click Listener",
+ "▁municip al",
+ "▁O ri",
+ "▁Or i",
+ "▁ Ori",
+ "▁B ild",
+ "▁Bi ld",
+ "▁Bil d",
+ "▁C ab",
+ "▁Ca b",
+ "▁V ar",
+ "▁Va r",
+ "▁ Var",
+ "▁n oted",
+ "▁not ed",
+ "▁no ted",
+ "▁note d",
+ "▁ Î",
+ "▁s ubs",
+ "▁su bs",
+ "▁sub s",
+ "ia tion",
+ "iat ion",
+ "i ation",
+ "W OR",
+ "in gly",
+ "ing ly",
+ "▁R us",
+ "▁Ru s",
+ "ie ns",
+ "ien s",
+ "i ens",
+ "IN FO",
+ "INF O",
+ "к ва",
+ "at ivo",
+ "ativ o",
+ "ati vo",
+ "ge nde",
+ "gen de",
+ "g ende",
+ "▁Fran z",
+ "▁Fr anz",
+ "▁is ol",
+ "▁i sol",
+ "ed es",
+ "ede s",
+ "e des",
+ "ni er",
+ "nie r",
+ "n ier",
+ "▁N O",
+ "▁ NO",
+ "▁H as",
+ "▁Ha s",
+ "▁ Has",
+ "be ans",
+ "bean s",
+ "▁p andas",
+ "▁pan das",
+ "▁ pandas",
+ "(\" %",
+ "ві т",
+ "ут бо",
+ "▁g ather",
+ "▁ga ther",
+ "▁gat her",
+ "▁le gal",
+ "▁leg al",
+ "▁ legal",
+ "in clud",
+ "▁circum st",
+ "cript or",
+ "ri ble",
+ "rib le",
+ "r ible",
+ "▁S üd",
+ "▁Sü d",
+ "▁a pro",
+ "▁ap ro",
+ "▁apr o",
+ "Ap i",
+ "A pi",
+ "▁на й",
+ "▁Afr ican",
+ "▁Africa n",
+ "ow ski",
+ "ows ki",
+ "▁John son",
+ "ie k",
+ "i ek",
+ "▁v ote",
+ "▁vo te",
+ "▁vot e",
+ "▁ vote",
+ "▁K an",
+ "▁Ka n",
+ "▁b ibli",
+ "▁bib li",
+ "▁ bibli",
+ "▁h aar",
+ "▁ha ar",
+ "▁v r",
+ "▁ vr",
+ "]) ,",
+ "] ),",
+ "subset eq",
+ "Par ser",
+ "Parse r",
+ "ia ni",
+ "ian i",
+ "i ani",
+ "is é",
+ "id ea",
+ "ide a",
+ "On ly",
+ "▁á l",
+ "▁ ál",
+ "▁C atal",
+ "▁Ca tal",
+ "▁Cat al",
+ "▁C ase",
+ "▁Cas e",
+ "▁Ca se",
+ "▁ Case",
+ "se h",
+ "s eh",
+ "▁en counter",
+ "▁enc ounter",
+ "▁re form",
+ "▁ref orm",
+ "ми ни",
+ "мин и",
+ "▁S tre",
+ "▁St re",
+ "▁Str e",
+ "ex ception",
+ "except ion",
+ "▁T ar",
+ "▁Ta r",
+ "та р",
+ "т ар",
+ "tr l",
+ "t rl",
+ "▁А лександ",
+ "ле кт",
+ "лек т",
+ "equ al",
+ "eq ual",
+ "e qual",
+ "O p",
+ "▁l if",
+ "▁li f",
+ "▁й ого",
+ "▁volt age",
+ "▁volta ge",
+ "sh ire",
+ "s hire",
+ "▁Gro ß",
+ "в ня",
+ "ning s",
+ "n ings",
+ "н ци",
+ "▁l ag",
+ "▁la g",
+ "▁ lag",
+ "▁and eren",
+ "▁andere n",
+ "▁v ac",
+ "▁va c",
+ "▁ma cro",
+ "▁mac ro",
+ "▁ macro",
+ "= [",
+ "Th en",
+ "The n",
+ "T hen",
+ "▁control s",
+ "▁contr ols",
+ "▁contro ls",
+ "▁ controls",
+ "se q",
+ "s eq",
+ "olog ies",
+ "ologie s",
+ "▁select or",
+ "▁sel ector",
+ "▁sele ctor",
+ "▁ selector",
+ "▁Украї ни",
+ "хів овано",
+ "ы й",
+ "allen ge",
+ "alleng e",
+ "▁I MDb",
+ "▁IM Db",
+ "um my",
+ "umm y",
+ "ye n",
+ "y en",
+ "▁b este",
+ "▁be ste",
+ "▁best e",
+ "▁bes te",
+ "▁B ox",
+ "▁Bo x",
+ "▁ Box",
+ "▁ch air",
+ "▁cha ir",
+ "▁S ab",
+ "▁Sa b",
+ "er de",
+ "erd e",
+ "▁n ast",
+ "▁na st",
+ "▁nas t",
+ "iv amente",
+ "iva mente",
+ "▁об ъ",
+ "▁require ments",
+ "▁requirement s",
+ "▁me eting",
+ "▁meet ing",
+ "▁fin an",
+ "▁fi nan",
+ "▁A dam",
+ "▁Ad am",
+ "▁Ada m",
+ "▁tele vis",
+ "▁b right",
+ "▁br ight",
+ "▁brig ht",
+ "▁G it",
+ "▁Gi t",
+ "▁ Git",
+ "E G",
+ "▁G il",
+ "▁Gi l",
+ "r ès",
+ "▁C ond",
+ "▁Con d",
+ "▁Co nd",
+ "▁ Cond",
+ "▁f t",
+ "▁ ft",
+ "▁бу ло",
+ "- +",
+ "EN D",
+ "E ND",
+ "er ne",
+ "ern e",
+ "▁Com put",
+ "▁Comp ut",
+ "▁ Comput",
+ "▁i ls",
+ "▁il s",
+ "▁ ils",
+ "▁g all",
+ "▁gal l",
+ "▁ga ll",
+ "▁c sv",
+ "▁cs v",
+ "▁ csv",
+ "łu g",
+ "ł ug",
+ "▁sum mer",
+ "▁summ er",
+ "ga me",
+ "g ame",
+ "▁pos ts",
+ "▁post s",
+ "▁ posts",
+ "Ар хівовано",
+ "▁z ij",
+ "▁de termin",
+ "▁determ in",
+ "▁ab andon",
+ "co unter",
+ "count er",
+ "c ounter",
+ "▁require ment",
+ "▁requ irement",
+ "▁T it",
+ "▁Ti t",
+ "irt ual",
+ "▁V ideos",
+ "▁Video s",
+ "▁qu iet",
+ "▁qui et",
+ "▁T erm",
+ "▁Te rm",
+ "▁Ter m",
+ "▁ Term",
+ "▁time out",
+ "▁ timeout",
+ "Pr int",
+ "▁in vent",
+ "▁inv ent",
+ "▁inve nt",
+ "la is",
+ "l ais",
+ "▁mon itor",
+ "ha lb",
+ "hal b",
+ "▁W ild",
+ "▁Wil d",
+ "▁Wi ld",
+ "▁le ader",
+ "▁lead er",
+ "▁с ель",
+ "▁се ль",
+ "▁util iz",
+ "▁par ents",
+ "▁parent s",
+ "▁for ced",
+ "▁force d",
+ "▁pro ved",
+ "▁pr oved",
+ "▁prov ed",
+ "▁prove d",
+ "▁effect ive",
+ "▁l lam",
+ "▁ll am",
+ "▁С по",
+ "or b",
+ "o rb",
+ "gg i",
+ "g gi",
+ "▁ass umption",
+ "▁assum ption",
+ "▁su bm",
+ "▁sub m",
+ "▁в ій",
+ "▁ві й",
+ "il ia",
+ "ili a",
+ "i lia",
+ "▁re verse",
+ "▁revers e",
+ "▁rever se",
+ "▁ reverse",
+ "' \"",
+ "▁qu otes",
+ "▁quot es",
+ "▁quote s",
+ "▁s ites",
+ "▁si tes",
+ "▁site s",
+ "▁sit es",
+ "▁ sites",
+ "ig ung",
+ "igu ng",
+ "▁A rg",
+ "▁Ar g",
+ "▁ Arg",
+ "D ouble",
+ "▁s creens",
+ "▁sc reens",
+ "▁screen s",
+ "▁cl ause",
+ "▁cla use",
+ "▁b undle",
+ "▁bund le",
+ "▁ bundle",
+ "▁phil osoph",
+ "▁N um",
+ "▁Nu m",
+ "▁ Num",
+ "▁g leich",
+ "▁gle ich",
+ "▁ gleich",
+ "ul y",
+ "u ly",
+ "dir ect",
+ "di rect",
+ "dire ct",
+ "d irect",
+ "asket ball",
+ "ow any",
+ "owa ny",
+ "owan y",
+ "\\} $",
+ "\\ }$",
+ "▁rad ius",
+ "▁radi us",
+ "▁ radius",
+ "▁S earch",
+ "▁Se arch",
+ "▁ Search",
+ "Pro perties",
+ "▁e lev",
+ "▁el ev",
+ "▁ele v",
+ "▁p rod",
+ "▁pro d",
+ "▁pr od",
+ "▁ prod",
+ "▁\" %",
+ "is ión",
+ "isi ón",
+ "De bug",
+ "Deb ug",
+ "Se cond",
+ "Sec ond",
+ "( !",
+ "▁C atholic",
+ "ро ван",
+ "ров ан",
+ "рова н",
+ "р ован",
+ "le z",
+ "l ez",
+ "P a",
+ "ps on",
+ "p son",
+ "▁er ste",
+ "▁erst e",
+ "▁ers te",
+ "▁F u",
+ "▁l it",
+ "▁li t",
+ "▁ lit",
+ "▁S aison",
+ "▁Sa ison",
+ "▁H ash",
+ "▁Ha sh",
+ "▁Has h",
+ "▁ Hash",
+ "▁ex em",
+ "▁пред став",
+ ") *",
+ "▁e u",
+ "▁ eu",
+ "▁ │",
+ "▁g ab",
+ "▁ga b",
+ "eta iled",
+ "Co py",
+ "C opy",
+ "▁д ва",
+ "ev en",
+ "e ven",
+ "K ind",
+ "▁Jack son",
+ "а л",
+ "▁con sec",
+ "▁cons ec",
+ "▁conse c",
+ "US ER",
+ "USE R",
+ "U SER",
+ "▁T ok",
+ "▁To k",
+ "( .",
+ "▁$ |",
+ "▁T amb",
+ "▁Ta mb",
+ "▁Tam b",
+ "▁Lem ma",
+ "ha ng",
+ "han g",
+ "h ang",
+ "▁cont ribution",
+ "▁contrib ution",
+ "▁contribu tion",
+ "roll ers",
+ "rol lers",
+ "roller s",
+ "rolle rs",
+ "▁stud ies",
+ "▁studi es",
+ "▁p oi",
+ "▁po i",
+ "ge ms",
+ "gem s",
+ "g ems",
+ "▁U P",
+ "▁ UP",
+ "▁W ol",
+ "▁Wo l",
+ "> \"",
+ "▁f loor",
+ "▁fl oor",
+ "▁flo or",
+ "▁ floor",
+ "▁init ialize",
+ "▁initial ize",
+ "▁ initialize",
+ "▁L ew",
+ "▁Le w",
+ "ze k",
+ "z ek",
+ "ar te",
+ "art e",
+ "▁pos itions",
+ "▁position s",
+ "▁posit ions",
+ "▁por tion",
+ "▁port ion",
+ "co ver",
+ "cov er",
+ "c over",
+ "w p",
+ "ов ого",
+ "ово го",
+ "о вого",
+ "▁p iano",
+ "▁pi ano",
+ "▁pian o",
+ "▁pia no",
+ "▁m etal",
+ "▁me tal",
+ "▁met al",
+ "▁meta l",
+ "▁s amples",
+ "▁sam ples",
+ "▁sample s",
+ "▁ samples",
+ "▁С ан",
+ "▁Са н",
+ "vari able",
+ "▁ста ть",
+ "▁inte gers",
+ "▁integer s",
+ "Wh ere",
+ "W here",
+ "famil y",
+ "▁n un",
+ "▁nu n",
+ "▁in crement",
+ "▁incre ment",
+ "▁ increment",
+ "ix ed",
+ "▁he eft",
+ "ft e",
+ "f te",
+ "▁v il",
+ "▁vi l",
+ "▁ vil",
+ "▁ot ros",
+ "▁otro s",
+ "Mult imedia",
+ "Multi media",
+ "▁Hen ri",
+ "ad ed",
+ "ade d",
+ "a ded",
+ "ге н",
+ "г ен",
+ "▁cap it",
+ "▁ca pit",
+ "▁други х",
+ "is p",
+ "i sp",
+ "IT Y",
+ "I TY",
+ "▁constraint s",
+ "▁K irche",
+ "▁Kir che",
+ "▁Kirch e",
+ "fo und",
+ "f ound",
+ "ши й",
+ "▁p ic",
+ "▁pi c",
+ "▁ pic",
+ "▁t ou",
+ "▁to u",
+ "cre d",
+ "cr ed",
+ "c red",
+ "ро б",
+ "р об",
+ "▁M ess",
+ "▁Me ss",
+ "▁Mes s",
+ "▁ Mess",
+ "Jo b",
+ "J ob",
+ "▁M ais",
+ "▁Ma is",
+ "▁Mai s",
+ "▁st yles",
+ "▁style s",
+ "▁sty les",
+ "▁ styles",
+ "fa ll",
+ "fal l",
+ "f all",
+ "▁U k",
+ "▁st reet",
+ "▁stre et",
+ "▁ street",
+ "oc cer",
+ "occ er",
+ "es en",
+ "ese n",
+ "e sen",
+ "▁col ors",
+ "▁color s",
+ "▁ colors",
+ "ce an",
+ "ю ще",
+ "con ne",
+ "conn e",
+ "c onne",
+ "▁r atio",
+ "▁rat io",
+ "an ton",
+ "ant on",
+ "anto n",
+ "▁F el",
+ "▁Fe l",
+ "▁custom er",
+ "▁cust omer",
+ "▁ customer",
+ "▁P rix",
+ "▁Pr ix",
+ "▁Pri x",
+ "rá s",
+ "r ás",
+ "pr ed",
+ "pre d",
+ "p red",
+ "▁elect ron",
+ "▁electro n",
+ "s ym",
+ "▁ве ли",
+ "▁ вели",
+ "▁over flow",
+ "▁ overflow",
+ "▁$ [",
+ "▁P OST",
+ "▁PO ST",
+ "▁ POST",
+ "▁C in",
+ "▁Ci n",
+ "sc heid",
+ "sche id",
+ "(\" /",
+ "( \"/",
+ "▁search ing",
+ "▁pur poses",
+ "▁purpose s",
+ "▁arr ived",
+ "▁arriv ed",
+ "▁arrive d",
+ "▁p unt",
+ "▁pu nt",
+ "▁pun t",
+ "▁l ad",
+ "▁la d",
+ "▁ lad",
+ "P ython",
+ "▁le ads",
+ "▁lead s",
+ "▁s and",
+ "▁sa nd",
+ "▁san d",
+ "па да",
+ "пад а",
+ "▁comm unes",
+ "▁commun es",
+ "▁commune s",
+ "▁CH AP",
+ "▁c aso",
+ "▁cas o",
+ "▁ca so",
+ "r z",
+ "▁d w",
+ "▁ dw",
+ "ac a",
+ "a ca",
+ "▁Col umb",
+ "child ren",
+ "ê t",
+ "sch emas",
+ "sche mas",
+ "schema s",
+ "▁instru ctions",
+ "▁instruction s",
+ "▁instruct ions",
+ "▁- \\",
+ "▁ -\\",
+ "▁Is rael",
+ "▁Isra el",
+ "no ści",
+ "▁об раз",
+ "▁обра з",
+ "▁ образ",
+ "▁со вет",
+ "▁сов ет",
+ "▁imm agini",
+ "▁F red",
+ "▁Fre d",
+ "▁Fr ed",
+ "▁G lobal",
+ "▁Glo bal",
+ "▁ Global",
+ "▁th ick",
+ "▁ thick",
+ "▁fue ron",
+ "▁fuer on",
+ "▁th rown",
+ "▁thr own",
+ "▁throw n",
+ "▁thro wn",
+ "▁c lock",
+ "▁cl ock",
+ "▁clo ck",
+ "▁ clock",
+ "en able",
+ "ena ble",
+ "'' '",
+ "' ''",
+ "▁S und",
+ "▁Su nd",
+ "▁Sun d",
+ "▁cont empor",
+ "an swer",
+ "ans wer",
+ "▁man ufact",
+ "▁i o",
+ "▁ io",
+ "q quad",
+ "OU T",
+ "O UT",
+ "▁L ab",
+ "▁La b",
+ "▁ Lab",
+ "▁Z w",
+ "le gal",
+ "leg al",
+ "▁V el",
+ "▁Ve l",
+ "▁ra ise",
+ "▁ raise",
+ "▁de liver",
+ "▁del iver",
+ "▁deli ver",
+ "▁V oir",
+ "▁Vo ir",
+ "▁ass umed",
+ "▁assum ed",
+ "▁assume d",
+ "Le t",
+ "L et",
+ "ier ten",
+ "iert en",
+ "ierte n",
+ "i erten",
+ "▁K ong",
+ "▁Kon g",
+ "▁Ko ng",
+ "▁E xp",
+ "▁Ex p",
+ "▁ Exp",
+ "▁J ug",
+ "▁Ju g",
+ "▁dec laration",
+ "▁declar ation",
+ "▁F ish",
+ "m é",
+ "▁spe ech",
+ "▁t ent",
+ "▁te nt",
+ "▁ten t",
+ "▁R oute",
+ "▁Ro ute",
+ "▁Rou te",
+ "▁Rout e",
+ "▁ Route",
+ "__ (",
+ "_ _(",
+ "▁ré alis",
+ "▁réal is",
+ "▁De sign",
+ "▁Des ign",
+ "set Text",
+ "▁St ation",
+ "▁Stat ion",
+ "▁Sta tion",
+ "▁Stati on",
+ "▁ Station",
+ "ar chy",
+ "arch y",
+ "arc hy",
+ "▁ка то",
+ "▁d ent",
+ "▁de nt",
+ "▁den t",
+ "▁ dent",
+ "▁K l",
+ "i ß",
+ "▁r isk",
+ "▁ris k",
+ "▁ri sk",
+ "▁B road",
+ "▁Bro ad",
+ "▁v ectors",
+ "▁ve ctors",
+ "▁vector s",
+ "▁S pec",
+ "▁Sp ec",
+ "▁Spe c",
+ "▁ Spec",
+ "▁ro utes",
+ "▁route s",
+ "▁rout es",
+ "▁rou tes",
+ "▁ routes",
+ "ym n",
+ "y mn",
+ "▁G reg",
+ "▁Gr eg",
+ "▁Gre g",
+ "▁полу чи",
+ "gi e",
+ "g ie",
+ "OR M",
+ "ве де",
+ "вед е",
+ "в еде",
+ "wa lt",
+ "wal t",
+ "w alt",
+ "▁e fter",
+ "P tr",
+ "▁su bt",
+ "▁sub t",
+ "▁b irth",
+ "▁bir th",
+ "▁dr awn",
+ "▁draw n",
+ "▁dra wn",
+ "me ss",
+ "mes s",
+ "m ess",
+ "мери кан",
+ "V E",
+ "▁P ut",
+ "▁Pu t",
+ "▁ Put",
+ "▁a sc",
+ "▁as c",
+ "▁ asc",
+ "▁f eder",
+ "▁fe der",
+ "▁fed er",
+ "с ли",
+ "▁P rin",
+ "▁Pr in",
+ "▁Pri n",
+ "▁s tick",
+ "▁st ick",
+ "re set",
+ "res et",
+ "y k",
+ "st udio",
+ "stud io",
+ "▁St ill",
+ "Con st",
+ "Cons t",
+ "ac ió",
+ "aci ó",
+ "a ció",
+ "▁Portug al",
+ "▁script s",
+ "▁scri pts",
+ "▁ scripts",
+ "und ial",
+ "▁l ives",
+ "▁li ves",
+ "▁live s",
+ "▁liv es",
+ "▁s zer",
+ "▁sz er",
+ "▁sze r",
+ "▁est ado",
+ "▁esta do",
+ "▁estad o",
+ "fo lder",
+ "fol der",
+ "fold er",
+ "f older",
+ "▁communic ation",
+ "Ro ute",
+ "Rout e",
+ "R oute",
+ "▁sw ift",
+ "▁ swift",
+ "те н",
+ "т ен",
+ "▁k ill",
+ "▁kil l",
+ "▁ki ll",
+ "▁ kill",
+ "▁P R",
+ "▁ PR",
+ "jo int",
+ "join t",
+ "j oint",
+ "▁ob jective",
+ "▁object ive",
+ "▁comp licated",
+ "▁Ü ber",
+ "es h",
+ "e sh",
+ "p icture",
+ "ra ine",
+ "rain e",
+ "rai ne",
+ "r aine",
+ "com put",
+ "comp ut",
+ "▁pro port",
+ "▁pr oport",
+ "▁prop ort",
+ "▁propor t",
+ "og s",
+ "o gs",
+ "ül t",
+ "ü lt",
+ "▁quant um",
+ "к ри",
+ "▁s op",
+ "▁so p",
+ "▁lo ops",
+ "▁loop s",
+ "▁Re ference",
+ "▁Refer ence",
+ "▁ Reference",
+ "▁n ei",
+ "▁ne i",
+ "IC E",
+ "I CE",
+ "▁v erm",
+ "▁ver m",
+ "▁ve rm",
+ "▁a dj",
+ "▁ad j",
+ "▁ adj",
+ "▁per ò",
+ "▁t rou",
+ "▁tr ou",
+ "▁tro u",
+ "is ions",
+ "ision s",
+ "isi ons",
+ "▁App le",
+ "▁Ap ple",
+ "serv able",
+ "▁B oston",
+ "▁Bo ston",
+ "▁Bos ton",
+ "or et",
+ "ore t",
+ "o ret",
+ "ok s",
+ "o ks",
+ "▁k g",
+ "▁ kg",
+ "def ined",
+ "define d",
+ "defin ed",
+ "d efined",
+ "pl atform",
+ "cl er",
+ "cle r",
+ "c ler",
+ "ograph ic",
+ "ri tt",
+ "rit t",
+ "r itt",
+ "▁d ic",
+ "▁di c",
+ "▁ dic",
+ "▁M ond",
+ "▁Mon d",
+ "▁Mo nd",
+ "▁I reland",
+ "▁Ir eland",
+ "▁U na",
+ "▁Un a",
+ "▁commer cial",
+ "▁P u",
+ "D i",
+ "▁е ё",
+ "▁pre cis",
+ "▁prec is",
+ "на род",
+ "нар од",
+ "▁qu atre",
+ "ust ral",
+ "ustr al",
+ "▁d ag",
+ "▁da g",
+ "▁ dag",
+ "ig ue",
+ "igu e",
+ "i gue",
+ "▁b urn",
+ "▁bu rn",
+ "▁bur n",
+ "▁ burn",
+ "▁offic er",
+ "▁office r",
+ "▁А в",
+ "▁high light",
+ "▁ highlight",
+ "▁Supp ose",
+ "▁Sup pose",
+ "od i",
+ "o di",
+ "serv let",
+ "▁En cyc",
+ "▁Enc yc",
+ "▁R ange",
+ "▁Ran ge",
+ "▁Rang e",
+ "▁ Range",
+ "ти й",
+ "P lease",
+ "▁ро ків",
+ "qu ant",
+ "qua nt",
+ "▁f lat",
+ "▁fl at",
+ "▁fla t",
+ "▁ flat",
+ "▁Ré férence",
+ "сле дова",
+ "след ова",
+ "ro le",
+ "rol e",
+ "r ole",
+ "▁d iesen",
+ "▁di esen",
+ "▁die sen",
+ "▁dies en",
+ "▁diese n",
+ "}} (",
+ "} }(",
+ "▁Ind ust",
+ "▁nú mer",
+ "▁\" ;",
+ "▁ \";",
+ "lu s",
+ "l us",
+ "ô le",
+ "▁z m",
+ "▁ zm",
+ "de g",
+ "d eg",
+ "▁r ough",
+ "▁ro ugh",
+ "▁rou gh",
+ "▁ rough",
+ "In v",
+ "▁h ur",
+ "▁hu r",
+ "▁R ess",
+ "▁Re ss",
+ "▁Res s",
+ "ch s",
+ "c hs",
+ "▁turn s",
+ "▁tur ns",
+ "ne ro",
+ "ner o",
+ "n ero",
+ "function s",
+ "fun ctions",
+ "ал и",
+ "а ли",
+ "▁hab itants",
+ "▁habit ants",
+ "а т",
+ "iss ues",
+ "issue s",
+ "▁h uge",
+ "▁hu ge",
+ "Util s",
+ "▁S at",
+ "▁Sa t",
+ "▁го судар",
+ "▁co ast",
+ "sh ape",
+ "sha pe",
+ "s hape",
+ "L C",
+ "▁log ging",
+ "▁ logging",
+ "en dor",
+ "end or",
+ "endo r",
+ "▁l ies",
+ "▁li es",
+ "▁lie s",
+ "▁ lies",
+ "▁d ifer",
+ "▁di fer",
+ "▁dif er",
+ "▁crit ical",
+ "▁critic al",
+ "X T",
+ "ми на",
+ "мин а",
+ "an sk",
+ "ans k",
+ "Result s",
+ "k c",
+ "ivers e",
+ "iver se",
+ "i verse",
+ "EX T",
+ "E XT",
+ "AL SE",
+ "▁v ál",
+ "▁vá l",
+ "P i",
+ "comp ile",
+ "hel lo",
+ "hell o",
+ "h ello",
+ "▁чем пи",
+ "▁It alia",
+ "▁Ital ia",
+ "▁ Italia",
+ "ко ло",
+ "кол о",
+ "к оло",
+ "▁ed ition",
+ "▁edit ion",
+ "gr und",
+ "gru nd",
+ "g rund",
+ "▁data frame",
+ "▁Follow ing",
+ "re ib",
+ "rei b",
+ "▁J eff",
+ "▁Je ff",
+ "▁citt à",
+ "IT able",
+ "I Table",
+ "▁$ (\\",
+ "▁$( \\",
+ "▁redu ced",
+ "▁reduce d",
+ "ob il",
+ "obi l",
+ "o bil",
+ "▁any where",
+ "' (",
+ "▁p hr",
+ "▁ph r",
+ "▁ phr",
+ "▁K h",
+ "▁F rame",
+ "▁Fr ame",
+ "▁Fra me",
+ "▁ Frame",
+ "▁man ual",
+ "▁ manual",
+ "▁c ra",
+ "▁cr a",
+ "▁ cra",
+ "▁V S",
+ "▁ VS",
+ "% =",
+ "Instance State",
+ "▁б ра",
+ "▁ бра",
+ "▁D rag",
+ "▁Dr ag",
+ "▁Dra g",
+ "▁ Drag",
+ "▁H err",
+ "▁He rr",
+ "▁Her r",
+ "▁г у",
+ "▁ гу",
+ "▁m ús",
+ "To ol",
+ "T ool",
+ "▁P rivate",
+ "▁Priv ate",
+ "▁ Private",
+ "▁s ynchron",
+ "▁syn chron",
+ "ir ation",
+ "ira tion",
+ "irat ion",
+ "▁о бо",
+ "▁об о",
+ "▁typ ically",
+ "▁typical ly",
+ "▁imp licit",
+ "or ient",
+ "ori ent",
+ "orie nt",
+ "▁t imer",
+ "▁time r",
+ "▁tim er",
+ "▁ti mer",
+ "▁ timer",
+ "▁kön nen",
+ "ie st",
+ "ies t",
+ "i est",
+ "ra id",
+ "rai d",
+ "▁expression s",
+ "▁express ions",
+ "▁expr essions",
+ "▁a im",
+ "▁ai m",
+ "▁s tre",
+ "▁st re",
+ "▁str e",
+ "▁ stre",
+ "▁w rap",
+ "▁wr ap",
+ "▁wra p",
+ "▁ wrap",
+ "▁B art",
+ "▁Bar t",
+ "▁Ba rt",
+ "▁b ron",
+ "▁br on",
+ "▁bro n",
+ "▁key board",
+ "po w",
+ "p ow",
+ "▁gru po",
+ "▁grup o",
+ "▁ре зу",
+ "▁prof essor",
+ "▁profess or",
+ "▁H ead",
+ "▁He ad",
+ "▁ Head",
+ "но ю",
+ "min us",
+ "m inus",
+ "▁Mich el",
+ "▁Mic hel",
+ "NO T",
+ "N OT",
+ "mo r",
+ "m or",
+ "] }",
+ "wide hat",
+ "ar is",
+ "ari s",
+ "a ris",
+ "тера тура",
+ "de fn",
+ "def n",
+ "is trz",
+ "ist rz",
+ "istr z",
+ "▁t anto",
+ "▁tan to",
+ "▁tant o",
+ "▁P ow",
+ "▁Po w",
+ "▁ind icate",
+ "▁indic ate",
+ "▁W inter",
+ "▁Win ter",
+ "res hold",
+ "resh old",
+ "рі в",
+ "р ів",
+ "▁` (",
+ "▁o wner",
+ "▁own er",
+ "▁ow ner",
+ "▁ owner",
+ "▁d isp",
+ "▁di sp",
+ "▁dis p",
+ "▁к ри",
+ "▁ кри",
+ "ме т",
+ "м ет",
+ "мен т",
+ "м ент",
+ "re port",
+ "rep ort",
+ "repo rt",
+ "re quire",
+ "▁v oy",
+ "▁vo y",
+ "▁ voy",
+ "▁A P",
+ "▁ AP",
+ "▁Esp aña",
+ "▁Españ a",
+ "▁S ão",
+ "j är",
+ "No n",
+ "N on",
+ "Li brary",
+ "L ibrary",
+ "ich ten",
+ "icht en",
+ "ichte n",
+ "i chten",
+ "▁struct ures",
+ "▁structure s",
+ "▁m uy",
+ "▁mu y",
+ "ár io",
+ "á rio",
+ "▁cert ificate",
+ "▁certific ate",
+ "чно го",
+ "ч ного",
+ "▁prov ince",
+ "▁provin ce",
+ "pa ges",
+ "page s",
+ "pag es",
+ "p ages",
+ "da l",
+ "d al",
+ "▁Fre der",
+ "▁Fr eder",
+ "▁Fred er",
+ "ь е",
+ "Exec ute",
+ "▁an cient",
+ "▁anci ent",
+ "▁anc ient",
+ "▁ancien t",
+ "▁fil ms",
+ "▁film s",
+ "▁Al fred",
+ "▁Alf red",
+ "Aut o",
+ "A uto",
+ "▁a tom",
+ "▁at om",
+ "▁ atom",
+ "▁e ll",
+ "▁el l",
+ "▁ ell",
+ "▁H arr",
+ "▁Har r",
+ "▁Ha rr",
+ "й н",
+ "▁\" #",
+ "▁n acional",
+ "▁nac ional",
+ "▁neigh bor",
+ "▁neighb or",
+ "сту па",
+ "ступ а",
+ "▁w it",
+ "Po p",
+ "P op",
+ "▁G reek",
+ "▁Gre ek",
+ "▁Gree k",
+ "▁re peat",
+ "▁repe at",
+ "▁ repeat",
+ "ba d",
+ "b ad",
+ "▁S C",
+ "▁ SC",
+ "▁Date Time",
+ "▁ DateTime",
+ "ш ти",
+ "▁W H",
+ "▁ WH",
+ "▁пра ви",
+ "▁прав и",
+ "▁ прави",
+ "▁Т и",
+ "▁s aison",
+ "▁sa ison",
+ "▁H art",
+ "▁Har t",
+ "▁Ha rt",
+ "direct ory",
+ "d irectory",
+ "ua n",
+ "u an",
+ "no rm",
+ "nor m",
+ "n orm",
+ "▁Phil ipp",
+ "▁Phili pp",
+ "▁Philip p",
+ "▁su spect",
+ "▁sus pect",
+ "▁susp ect",
+ "▁an no",
+ "▁ann o",
+ "▁ anno",
+ "b c",
+ "с ла",
+ "$ (",
+ "▁be find",
+ "▁bef ind",
+ "oc s",
+ "o cs",
+ "la test",
+ "lat est",
+ "late st",
+ ";\" >",
+ "; \">",
+ "▁after wards",
+ "PU T",
+ "P UT",
+ "▁j a",
+ "▁ ja",
+ "▁H il",
+ "▁Hi l",
+ "y z",
+ "▁B our",
+ "▁Bo ur",
+ "▁Bou r",
+ "▁la id",
+ "▁Д же",
+ "▁Дж е",
+ "pi e",
+ "p ie",
+ "w atch",
+ "▁E q",
+ "▁ Eq",
+ "cont act",
+ "ib er",
+ "ibe r",
+ "i ber",
+ "check box",
+ "▁esp añ",
+ "▁espa ñ",
+ "an se",
+ "ans e",
+ "▁ш ко",
+ "▁ шко",
+ "ef f",
+ "e ff",
+ "xx x",
+ "x xx",
+ "▁G ET",
+ "▁ GET",
+ "▁l ov",
+ "▁lo v",
+ "▁ lov",
+ "it ute",
+ "itu te",
+ "itut e",
+ "ze ch",
+ "zec h",
+ "z ech",
+ "ter e",
+ "te re",
+ "t ere",
+ "▁p urs",
+ "▁pu rs",
+ "▁pur s",
+ "ke ns",
+ "ken s",
+ "k ens",
+ "ian te",
+ "i ante",
+ "▁F ree",
+ "▁Fre e",
+ "▁Fr ee",
+ "▁ Free",
+ "▁ор гани",
+ "▁орган и",
+ "kre is",
+ "▁{ :",
+ "▁ {:",
+ "sh ared",
+ "share d",
+ "sha red",
+ "▁G raph",
+ "▁Gr aph",
+ "▁Gra ph",
+ "▁ Graph",
+ "▁conne ctions",
+ "▁connection s",
+ "▁connect ions",
+ "▁D OM",
+ "▁DO M",
+ "▁ DOM",
+ "▁C art",
+ "▁Car t",
+ "▁Ca rt",
+ "▁ Cart",
+ "ss on",
+ "s son",
+ "▁H amilton",
+ "те ли",
+ "тел и",
+ "▁r estaur",
+ "▁rest aur",
+ "▁resta ur",
+ "Re sol",
+ "Res ol",
+ "Dr iver",
+ "D river",
+ "▁en f",
+ "▁ enf",
+ "ED IT",
+ "▁p rev",
+ "▁pr ev",
+ "▁pre v",
+ "▁ prev",
+ "▁i k",
+ "▁ ik",
+ "▁s ă",
+ "j ö",
+ "▁С ССР",
+ "▁col our",
+ "ch ten",
+ "cht en",
+ "chte n",
+ "▁e stad",
+ "▁est ad",
+ "▁esta d",
+ "in ois",
+ "ino is",
+ "▁con fir",
+ "▁conf ir",
+ "▁v é",
+ "▁ vé",
+ "▁C es",
+ "▁Ce s",
+ "▁N ever",
+ "▁Ne ver",
+ "▁Nev er",
+ "om er",
+ "ome r",
+ "o mer",
+ "ж да",
+ "с лу",
+ "че ния",
+ "dl l",
+ "d ll",
+ "▁y outh",
+ "▁you th",
+ "▁yo uth",
+ "em en",
+ "eme n",
+ "e men",
+ "▁stud ied",
+ "▁studi ed",
+ "▁K il",
+ "▁Ki l",
+ "ci on",
+ "cio n",
+ "c ion",
+ "▁n avig",
+ "▁nav ig",
+ "re quired",
+ "require d",
+ "orith ms",
+ "orithm s",
+ "il or",
+ "ilo r",
+ "i lor",
+ "▁Deutsch en",
+ "▁Deutsche n",
+ "▁person s",
+ "▁pers ons",
+ "▁Barcel ona",
+ "▁form ation",
+ "▁format ion",
+ "▁forma tion",
+ "▁ formation",
+ "ab ei",
+ "abe i",
+ "a bei",
+ "▁про тив",
+ "▁проти в",
+ "Eng ine",
+ "ON E",
+ "O NE",
+ "og rá",
+ "Ca p",
+ "C ap",
+ "ri r",
+ "r ir",
+ "▁g ate",
+ "▁ga te",
+ "▁gat e",
+ "▁ gate",
+ "or ation",
+ "ora tion",
+ "ma ven",
+ "m aven",
+ "▁comb ined",
+ "▁combin ed",
+ "▁combine d",
+ "▁at tr",
+ "▁att r",
+ "▁ attr",
+ "▁h ook",
+ "▁ho ok",
+ "▁ hook",
+ "▁которы й",
+ "▁ser vers",
+ "▁server s",
+ "▁serv ers",
+ "▁serve rs",
+ "uct ure",
+ "же ння",
+ "жен ня",
+ "t v",
+ "▁re q",
+ "▁r eq",
+ "▁ req",
+ "ja l",
+ "j al",
+ "▁loc ally",
+ "▁local ly",
+ "}} {\\",
+ "}}{ \\",
+ "} }{\\",
+ "B r",
+ "▁H ier",
+ "▁Hi er",
+ "мо р",
+ "м ор",
+ "▁a part",
+ "▁ap art",
+ "▁apar t",
+ "\"] ,",
+ "\" ],",
+ "▁%> %",
+ "▁z usammen",
+ "▁zus ammen",
+ "▁ident ify",
+ "▁Al tern",
+ "▁Alt ern",
+ "▁Alter n",
+ "▁б ро",
+ "▁ бро",
+ "▁ц и",
+ "▁ ци",
+ "g h",
+ "▁T en",
+ "▁Te n",
+ "R S",
+ "фор ма",
+ "▁n elle",
+ "▁ne lle",
+ "▁nel le",
+ "▁nell e",
+ "▁ nelle",
+ "▁H in",
+ "▁Hi n",
+ "ound ing",
+ "oun ding",
+ "▁re prés",
+ "▁rep rés",
+ "▁repr és",
+ "ap h",
+ "a ph",
+ "▁[ \\",
+ "▁ [\\",
+ "▁S ports",
+ "▁Sport s",
+ "ра л",
+ "р ал",
+ "▁t hre",
+ "▁th re",
+ "▁thr e",
+ "▁p rin",
+ "▁pr in",
+ "▁pri n",
+ "▁El iz",
+ "▁Eli z",
+ "▁F our",
+ "▁Fou r",
+ "▁Fo ur",
+ "▁soci ety",
+ "▁soc iety",
+ "Trans action",
+ "▁v eg",
+ "▁ve g",
+ "▁ veg",
+ "▁sch ools",
+ "▁school s",
+ "▁over all",
+ "▁t ail",
+ "▁ta il",
+ "▁ tail",
+ "üb er",
+ "ü ber",
+ "▁S ov",
+ "▁So v",
+ "▁С ер",
+ "▁Се р",
+ "▁r app",
+ "▁ra pp",
+ "▁rap p",
+ "▁tra ffic",
+ "qu estion",
+ "quest ion",
+ "ques tion",
+ "▁en viron",
+ "▁envi ron",
+ "▁ environ",
+ "ate ien",
+ "ic us",
+ "i cus",
+ "▁n arrow",
+ "▁narr ow",
+ "▁nar row",
+ "▁p ray",
+ "▁pr ay",
+ "▁pra y",
+ "▁B ou",
+ "▁Bo u",
+ "▁C lient",
+ "▁Cl ient",
+ "▁ Client",
+ "ab l",
+ "a bl",
+ "▁Aud iod",
+ "▁Audio d",
+ "▁n pm",
+ "▁np m",
+ "▁ npm",
+ "▁Col umn",
+ "▁ Column",
+ "▁G ames",
+ "▁Game s",
+ "▁Ga mes",
+ "▁Gam es",
+ "av er",
+ "ave r",
+ "a ver",
+ "ony mes",
+ "onym es",
+ "onyme s",
+ "▁По сле",
+ "n ą",
+ "▁N u",
+ "▁D ick",
+ "▁Di ck",
+ "▁Dic k",
+ "▁t ensor",
+ "▁tens or",
+ "▁ tensor",
+ "▁@ \"",
+ "▁ @\"",
+ "v é",
+ "I con",
+ "▁по да",
+ "▁под а",
+ "▁ пода",
+ "▁G on",
+ "▁Go n",
+ "/) .",
+ "/ ).",
+ "is tra",
+ "ist ra",
+ "istr a",
+ "i stra",
+ "▁Audiod ateien",
+ "De lete",
+ "Del ete",
+ "}} }",
+ "} }}",
+ "▁j ump",
+ "▁ju mp",
+ "▁О б",
+ "▁princi ple",
+ "▁princip le",
+ "▁Ét ats",
+ "ok ed",
+ "oke d",
+ "o ked",
+ "▁В ла",
+ "Inter val",
+ "▁s au",
+ "▁sa u",
+ "en code",
+ "enc ode",
+ "▁p on",
+ "▁po n",
+ "▁ pon",
+ "cat ch",
+ "c atch",
+ "▁t iem",
+ "▁ti em",
+ "▁tie m",
+ "▁G ust",
+ "▁Gu st",
+ "M C",
+ "lim its",
+ "limit s",
+ "▁ke eping",
+ "▁keep ing",
+ "▁s ongs",
+ "▁son gs",
+ "▁song s",
+ "▁ав гу",
+ "▁рай он",
+ "▁райо н",
+ "▁not ification",
+ "▁ notification",
+ "▁off ered",
+ "▁offer ed",
+ "Co r",
+ "C or",
+ "▁sh ut",
+ "error s",
+ "err ors",
+ "▁E N",
+ "▁ EN",
+ "▁lat ach",
+ "▁sel bst",
+ "▁check box",
+ "▁ checkbox",
+ "▁c ool",
+ "▁co ol",
+ "▁f actory",
+ "▁fact ory",
+ "▁factor y",
+ "▁ factory",
+ "▁pa id",
+ "dim ensional",
+ "ni ej",
+ "nie j",
+ "n iej",
+ "pt on",
+ "pto n",
+ "p ton",
+ "▁p in",
+ "▁pi n",
+ "▁ pin",
+ "ak ed",
+ "ake d",
+ "a ked",
+ "▁re li",
+ "▁r eli",
+ "▁rel i",
+ "▁T aylor",
+ "▁S omething",
+ "▁Some thing",
+ "▁Som ething",
+ "▁ Something",
+ "im um",
+ "▁V in",
+ "▁Vi n",
+ "▁iter ation",
+ "Fin d",
+ "Fi nd",
+ "F ind",
+ "ко ви",
+ "ков и",
+ "к ови",
+ "▁bo ys",
+ "▁boy s",
+ "▁Sim ple",
+ "▁ Simple",
+ "▁C rist",
+ "▁Cr ist",
+ "▁Cris t",
+ "▁W as",
+ "▁Wa s",
+ "ân d",
+ "â nd",
+ "▁V a",
+ "▁т ра",
+ "▁ тра",
+ "▁dest ination",
+ "▁destin ation",
+ "▁ destination",
+ "li mp",
+ "lim p",
+ "l imp",
+ "▁K at",
+ "▁Ka t",
+ "wor th",
+ "wort h",
+ "w orth",
+ "▁K or",
+ "▁Ko r",
+ "i ção",
+ "= `",
+ "▁fair ly",
+ "fall s",
+ "fal ls",
+ "f alls",
+ "▁re ject",
+ "▁d ream",
+ "▁dre am",
+ "be ll",
+ "bel l",
+ "b ell",
+ "▁t oute",
+ "▁to ute",
+ "▁tout e",
+ "▁tou te",
+ "▁$ \\{",
+ "▁$\\ {",
+ "▁st one",
+ "▁sto ne",
+ "▁ stone",
+ "▁prote ct",
+ "▁prot ect",
+ "▁ex cell",
+ "▁exc ell",
+ "▁excel l",
+ "▁Me xico",
+ "▁Mex ico",
+ "▁d ash",
+ "▁da sh",
+ "▁das h",
+ "▁ dash",
+ "▁f ault",
+ "▁fa ult",
+ "▁ fault",
+ "p matrix",
+ "al ler",
+ "all er",
+ "alle r",
+ "▁guer re",
+ "or igin",
+ "ori gin",
+ "orig in",
+ "hi bernate",
+ "í lia",
+ "▁Reg ister",
+ "▁ Register",
+ "un to",
+ "unt o",
+ "▁B at",
+ "▁Ba t",
+ "▁b ow",
+ "▁bo w",
+ "▁ bow",
+ "сь ких",
+ "ськ их",
+ "et à",
+ "▁L uis",
+ "▁Lu is",
+ "▁f ou",
+ "▁fo u",
+ "▁Cam bridge",
+ "▁Camb ridge",
+ "▁o tt",
+ "▁ot t",
+ "▁ ott",
+ "su p",
+ "s up",
+ "re as",
+ "rea s",
+ "▁point ers",
+ "▁pointer s",
+ "▁Bo ard",
+ "▁ Board",
+ "▁р и",
+ "▁ ри",
+ "▁d riv",
+ "▁dr iv",
+ "▁dri v",
+ "ни н",
+ "н ин",
+ "▁C irc",
+ "▁Ci rc",
+ "▁Cir c",
+ "▁ Circ",
+ "▁t hou",
+ "▁th ou",
+ "Di v",
+ "D iv",
+ "sp ark",
+ "s park",
+ "la ment",
+ "lam ent",
+ "l ament",
+ "▁V AL",
+ "▁ VAL",
+ "Se nd",
+ "S end",
+ "▁Ir ish",
+ "o y",
+ "▁T u",
+ "▁ Tu",
+ "▁t rivial",
+ "Form s",
+ "For ms",
+ "▁as í",
+ "▁Im per",
+ "▁Imp er",
+ "▁sign ature",
+ "un os",
+ "uno s",
+ "u nos",
+ "▁N eg",
+ "▁Ne g",
+ "▁can cel",
+ "▁ cancel",
+ "▁Hein rich",
+ "ee d",
+ "e ed",
+ "Ill ustration",
+ "▁s ulla",
+ "▁su lla",
+ "▁sul la",
+ "▁sull a",
+ "▁qu arter",
+ "▁quart er",
+ "▁quar ter",
+ "as z",
+ "a sz",
+ "▁b log",
+ "▁bl og",
+ "▁blo g",
+ "▁ blog",
+ "fi ca",
+ "fic a",
+ "f ica",
+ "wo n",
+ "w on",
+ "qu et",
+ "que t",
+ "q uet",
+ "]) )",
+ "] ))",
+ "▁gener ation",
+ "▁c aught",
+ "▁ caught",
+ "▁l ands",
+ "▁land s",
+ "▁lan ds",
+ "▁ lands",
+ "▁King dom",
+ "schaft en",
+ "ro ns",
+ "ron s",
+ "r ons",
+ "ann els",
+ "annel s",
+ "anne ls",
+ "▁Spe cial",
+ "▁Spec ial",
+ "▁ Special",
+ "t utorial",
+ "ti p",
+ "t ip",
+ "▁\" \",",
+ "▁\"\" ,",
+ "▁Az ure",
+ "▁ Azure",
+ "▁b ounded",
+ "▁bound ed",
+ "▁ bounded",
+ "S m",
+ "ta r",
+ "t ar",
+ "ве н",
+ "в ен",
+ "▁з ем",
+ "▁зе м",
+ "▁ зем",
+ "▁not ation",
+ "▁ notation",
+ "▁ap ache",
+ "▁ apache",
+ "▁g az",
+ "▁ga z",
+ "ier no",
+ "i erno",
+ "an gen",
+ "ang en",
+ "ange n",
+ "pect ive",
+ "▁elect ric",
+ "▁s emi",
+ "▁se mi",
+ "▁sem i",
+ "MA X",
+ "M AX",
+ "ed erb",
+ "eder b",
+ "ede rb",
+ "object s",
+ "▁dif ferences",
+ "▁differ ences",
+ "▁difference s",
+ "is ted",
+ "ist ed",
+ "iste d",
+ "i sted",
+ "hr ef",
+ "hre f",
+ "h ref",
+ "ic ip",
+ "ici p",
+ "i cip",
+ "▁num py",
+ "▁ numpy",
+ "▁ф утбо",
+ "lo ader",
+ "load er",
+ "▁d ich",
+ "▁di ch",
+ "▁dic h",
+ "љ у",
+ "▁D é",
+ "H z",
+ "▁P aram",
+ "▁Par am",
+ "▁Pa ram",
+ "▁Para m",
+ "▁ Param",
+ "document ation",
+ "ir craft",
+ "irc raft",
+ "E M",
+ "▁inst itution",
+ "▁instit ution",
+ "com pat",
+ "comp at",
+ "▁а ль",
+ "▁ал ь",
+ "▁ аль",
+ "сла в",
+ "с лав",
+ "▁N et",
+ "▁Ne t",
+ "▁ Net",
+ "ци ональ",
+ "цион аль",
+ "циона ль",
+ "▁broad cast",
+ "date time",
+ "dat etime",
+ "as ync",
+ "asy nc",
+ "a sync",
+ "vr e",
+ "v re",
+ "me an",
+ "▁C hem",
+ "▁Ch em",
+ "▁Che m",
+ "▁est imate",
+ "▁estim ate",
+ "ic ana",
+ "ica na",
+ "ican a",
+ "▁g rep",
+ "▁gr ep",
+ "▁gre p",
+ "▁ grep",
+ "te k",
+ "t ek",
+ "ä m",
+ "or ig",
+ "ori g",
+ "o rig",
+ "▁Vict or",
+ "▁Vi ctor",
+ "▁Vic tor",
+ "ut enant",
+ "ute nant",
+ "uten ant",
+ "an ga",
+ "ang a",
+ "pi n",
+ "p in",
+ "▁ver tex",
+ "▁vert ex",
+ "▁verte x",
+ "▁CHAP TER",
+ "ci ty",
+ "cit y",
+ "c ity",
+ "ug by",
+ "gr een",
+ "gre en",
+ "g reen",
+ "▁K er",
+ "▁Ke r",
+ "▁dif fér",
+ "▁diff ér",
+ "▁necess arily",
+ "D C",
+ "Line ar",
+ "Lin ear",
+ "Li near",
+ "al em",
+ "ale m",
+ "a lem",
+ "▁L ater",
+ "▁La ter",
+ "▁Lat er",
+ "▁Late r",
+ "▁m eta",
+ "▁me ta",
+ "▁met a",
+ "▁ meta",
+ "je m",
+ "j em",
+ "ra gen",
+ "rag en",
+ "rage n",
+ "r agen",
+ "Ma y",
+ "M ay",
+ "▁Mitg lied",
+ "▁s orted",
+ "▁sort ed",
+ "▁sor ted",
+ "▁sorte d",
+ "▁ sorted",
+ "us sen",
+ "uss en",
+ "▁sp oke",
+ "▁spo ke",
+ "▁dis abled",
+ "▁disable d",
+ "▁ disabled",
+ "▁accompl ish",
+ "▁accomp lish",
+ "▁Russ ia",
+ "th ere",
+ "ther e",
+ "the re",
+ "t here",
+ "ee s",
+ "e es",
+ "▁h all",
+ "▁ha ll",
+ "▁hal l",
+ "▁ hall",
+ "▁met ric",
+ "▁ metric",
+ "att ribute",
+ "то го",
+ "т ого",
+ "ab out",
+ "▁L am",
+ "▁La m",
+ "ch annel",
+ "chan nel",
+ "▁e pisode",
+ "▁epis ode",
+ "▁$ ('.",
+ "▁$( '.",
+ "▁$(' .",
+ "▁ ought",
+ "▁E ste",
+ "▁Est e",
+ "▁Es te",
+ "Object s",
+ "▁valid ate",
+ "▁ validate",
+ "▁r im",
+ "▁ri m",
+ "▁ rim",
+ "▁numer ous",
+ "▁numero us",
+ "▁J avascript",
+ "▁Java script",
+ "▁G L",
+ "▁ GL",
+ "▁It aly",
+ "▁Ital y",
+ "ederb örd",
+ "on ato",
+ "ona to",
+ "bo oks",
+ "book s",
+ "st one",
+ "ston e",
+ "sto ne",
+ "х у",
+ "▁j el",
+ "▁je l",
+ "▁ jel",
+ "ir i",
+ "i ri",
+ "▁A SP",
+ "▁AS P",
+ "G A",
+ "▁st ata",
+ "▁stat a",
+ "▁sta ta",
+ "▁b az",
+ "▁ba z",
+ "▁ baz",
+ "Da y",
+ "D ay",
+ "th m",
+ "t hm",
+ "d h",
+ "▁F iles",
+ "▁Fil es",
+ "▁File s",
+ "▁ Files",
+ "Android Runtime",
+ "▁che cks",
+ "▁check s",
+ "k r",
+ "▁v enne",
+ "▁ven ne",
+ "S L",
+ "av ia",
+ "avi a",
+ "a via",
+ "ka zy",
+ "kaz y",
+ "k azy",
+ "▁Th ree",
+ "▁ Three",
+ "Ad min",
+ "▁col lege",
+ "▁coll ege",
+ "▁colleg e",
+ "▁colle ge",
+ "G lobal",
+ "ti on",
+ "t ion",
+ "▁cur ious",
+ "sh ort",
+ "▁b ass",
+ "▁bas s",
+ "▁ba ss",
+ "де ла",
+ "▁де я",
+ "Sch ema",
+ "' \\",
+ "di ff",
+ "d iff",
+ "▁C A",
+ "▁ CA",
+ "▁Cor por",
+ "▁oper ators",
+ "▁operator s",
+ "om rå",
+ "▁ed ges",
+ "▁edge s",
+ "); `",
+ ") ;`",
+ "in ds",
+ "ind s",
+ "▁g ing",
+ "▁gi ng",
+ "▁ ging",
+ "& &",
+ "}- \\",
+ "} -\\",
+ "ra no",
+ "ran o",
+ "r ano",
+ "▁s ão",
+ "▁ad ds",
+ "▁add s",
+ "el or",
+ "elo r",
+ "e lor",
+ "▁un signed",
+ "▁uns igned",
+ "▁ unsigned",
+ "▁п р",
+ "▁ пр",
+ "▁Con fig",
+ "▁Conf ig",
+ "▁ Config",
+ "▁E sc",
+ "▁Es c",
+ "▁ch ose",
+ "▁cho se",
+ "▁pie ces",
+ "▁piece s",
+ "▁reg ions",
+ "▁region s",
+ "Es t",
+ "E st",
+ "▁B attle",
+ "▁Batt le",
+ "▁f oc",
+ "▁fo c",
+ "▁L ight",
+ "▁Lig ht",
+ "▁ Light",
+ "pad ding",
+ "p adding",
+ "ab en",
+ "abe n",
+ "a ben",
+ "▁e urop",
+ "▁eu rop",
+ "▁euro p",
+ "il lon",
+ "ill on",
+ "illo n",
+ "▁е сть",
+ "▁b ord",
+ "▁bo rd",
+ "▁bor d",
+ "▁о тно",
+ "▁от но",
+ "▁H ong",
+ "▁Hon g",
+ "▁Ho ng",
+ "▁v ul",
+ "▁vu l",
+ "pl ugins",
+ "plugin s",
+ "▁' <",
+ "▁k ur",
+ "▁ kur",
+ "reg ion",
+ "▁Re pub",
+ "▁Rep ub",
+ "ic her",
+ "ich er",
+ "iche r",
+ "i cher",
+ "}_ \\",
+ "} _\\",
+ "▁me dal",
+ "▁med al",
+ "▁More over",
+ "B I",
+ "A v",
+ "ut er",
+ "ute r",
+ "u ter",
+ "▁s can",
+ "▁sc an",
+ "▁ scan",
+ "▁M unicip",
+ "▁Mun icip",
+ "▁contr ast",
+ "▁contra st",
+ "▁I g",
+ "▁ Ig",
+ "▁го род",
+ "▁горо д",
+ "▁гор од",
+ "▁ город",
+ "rel ated",
+ "al ing",
+ "ali ng",
+ "alin g",
+ "a ling",
+ "▁м ат",
+ "▁ма т",
+ "▁ мат",
+ "ün st",
+ "▁Ch ris",
+ "▁Chr is",
+ "w y",
+ "▁Act ually",
+ "▁Univers idad",
+ "Event Listener",
+ "▁tempor ada",
+ "▁ass ignment",
+ "▁assign ment",
+ "▁M ike",
+ "▁Mi ke",
+ "▁Mik e",
+ "▁w ährend",
+ "▁ś wi",
+ "▁św i",
+ "▁с ред",
+ "▁сре д",
+ "ка де",
+ "▁calcul ated",
+ "▁calculate d",
+ "▁calc ulated",
+ "▁el ler",
+ "▁elle r",
+ "▁ell er",
+ "▁ eller",
+ "▁A sh",
+ "▁As h",
+ "ri el",
+ "rie l",
+ "r iel",
+ "▁hard ware",
+ "▁int ens",
+ "▁inte ns",
+ "▁inten s",
+ "(' .",
+ "( '.",
+ "il li",
+ "ill i",
+ "ag on",
+ "ago n",
+ "a gon",
+ "▁G y",
+ "▁he ute",
+ "▁heut e",
+ "▁s le",
+ "▁sl e",
+ "▁liter ature",
+ "se m",
+ "s em",
+ "man ager",
+ "mana ger",
+ "▁Gr ande",
+ "▁Gra nde",
+ "▁Grand e",
+ "▁Gran de",
+ "▁m ixed",
+ "▁mix ed",
+ "▁В ер",
+ "▁Ве р",
+ "í cí",
+ "▁s oit",
+ "▁so it",
+ "▁wel come",
+ "че ние",
+ "▁Univers ität",
+ "▁bu ilder",
+ "▁build er",
+ "▁ builder",
+ "sim ple",
+ "simp le",
+ "ic ode",
+ "ico de",
+ "i code",
+ "ř e",
+ "in dent",
+ "ind ent",
+ "inden t",
+ "inde nt",
+ "op o",
+ "o po",
+ "▁ad vanced",
+ "▁adv anced",
+ "▁advance d",
+ "tem per",
+ "temp er",
+ "ed ge",
+ "▁dat etime",
+ "▁date time",
+ "▁ datetime",
+ "▁d onc",
+ "▁do nc",
+ "▁don c",
+ "ла ння",
+ "лан ня",
+ "▁v erd",
+ "▁ver d",
+ "▁ve rd",
+ "д но",
+ "it os",
+ "ito s",
+ "▁he at",
+ "vi sible",
+ "vis ible",
+ "me l",
+ "m el",
+ "▁Giov anni",
+ "▁var iety",
+ "▁vari ety",
+ "▁r outer",
+ "▁ro uter",
+ "▁route r",
+ "▁rout er",
+ "▁rou ter",
+ "▁ router",
+ "Vec tor",
+ "V ector",
+ "▁W alk",
+ "▁Wal k",
+ "▁ob viously",
+ "▁obvious ly",
+ "he in",
+ "h ein",
+ "Fi n",
+ "F in",
+ "ITable View",
+ "Y ear",
+ "▁E conom",
+ "▁vel ocity",
+ "▁veloc ity",
+ "▁C ivil",
+ "▁Ci vil",
+ "▁ ј",
+ "al ert",
+ "ale rt",
+ "aler t",
+ "Ident ifier",
+ "èn cia",
+ "▁normal ly",
+ "▁norm ally",
+ "▁E gypt",
+ "▁Egy pt",
+ "▁c tx",
+ "▁ ctx",
+ "▁Ver ein",
+ "▁Vere in",
+ "▁H u",
+ "ult ure",
+ "ultur e",
+ "ни те",
+ "l é",
+ "▁W ien",
+ "▁Wi en",
+ "▁Wie n",
+ "▁P rz",
+ "▁Pr z",
+ "By te",
+ "▁n ah",
+ "▁na h",
+ "▁ nah",
+ "is ms",
+ "ism s",
+ "▁Pub lish",
+ "▁He rz",
+ "▁Her z",
+ "ic ul",
+ "i cul",
+ "pis ode",
+ "ч і",
+ "▁die sem",
+ "▁dies em",
+ "▁diese m",
+ "k ö",
+ "Vis ible",
+ "▁r ig",
+ "▁ri g",
+ "▁ rig",
+ "`) .",
+ "` ).",
+ "Par se",
+ "P arse",
+ "▁Jac ques",
+ "N I",
+ "▁g lass",
+ "▁gl ass",
+ "▁gla ss",
+ "▁ glass",
+ "-- -+",
+ "--- +",
+ "- --+",
+ "▁initial ly",
+ "▁initi ally",
+ "▁k r",
+ "▁ kr",
+ "CC N",
+ "C CN",
+ "pl ays",
+ "play s",
+ "pla ys",
+ "▁s igu",
+ "▁si gu",
+ "▁sig u",
+ "F older",
+ "st orage",
+ "sto rage",
+ "stor age",
+ "▁\\ |",
+ "▁ \\|",
+ "iv os",
+ "ivo s",
+ "i vos",
+ "ск ую",
+ "ску ю",
+ "▁M oh",
+ "▁Mo h",
+ "▁Comm ittee",
+ "▁K im",
+ "▁Ki m",
+ "e u",
+ "те м",
+ "т ем",
+ "▁orig inale",
+ "▁original e",
+ "▁origin ale",
+ "ir s",
+ "i rs",
+ "▁R eb",
+ "▁Re b",
+ "it ut",
+ "itu t",
+ "n l",
+ "▁P ier",
+ "▁Pi er",
+ "▁Pie r",
+ "▁] ;",
+ "▁ ];",
+ "▁F al",
+ "▁Fa l",
+ "▁\" \";",
+ "▁\"\" ;",
+ "mv c",
+ "m vc",
+ "▁fe male",
+ "▁fem ale",
+ "▁b ridge",
+ "▁br idge",
+ "▁brid ge",
+ "▁ bridge",
+ "▁t ít",
+ "kt r",
+ "k tr",
+ "> )",
+ "▁se at",
+ "▁sea t",
+ "▁v ess",
+ "▁ve ss",
+ "▁ves s",
+ "▁U SB",
+ "▁US B",
+ "▁Art icles",
+ "▁Article s",
+ "▁De scription",
+ "▁Des cription",
+ "▁Descri ption",
+ "▁ Description",
+ "▁o c",
+ "▁ oc",
+ "▁h ouses",
+ "▁house s",
+ "▁ho uses",
+ "▁hous es",
+ "▁П ет",
+ "▁Пе т",
+ "lo n",
+ "l on",
+ "Not ification",
+ "▁press ure",
+ "▁ку ль",
+ "▁ куль",
+ "ig ned",
+ "ign ed",
+ "igne d",
+ "▁relig ious",
+ "fa n",
+ "f an",
+ "ig lia",
+ "igli a",
+ "▁class ification",
+ "▁classific ation",
+ "og ether",
+ "oge ther",
+ "▁S DK",
+ "▁SD K",
+ "▁ SDK",
+ "▁H uman",
+ "▁Hu man",
+ "▁Hum an",
+ "▁com mission",
+ "▁comm ission",
+ "▁О р",
+ "▁an tes",
+ "▁ant es",
+ "▁ante s",
+ "▁ antes",
+ "D T",
+ "èt e",
+ "è te",
+ "pr és",
+ "p rés",
+ "/ \"",
+ "▁( «",
+ "▁h ö",
+ "▁ hö",
+ "▁ча с",
+ "▁ час",
+ "▁j ak",
+ "▁ja k",
+ "▁ jak",
+ "ie nen",
+ "ien en",
+ "iene n",
+ "i enen",
+ "ug g",
+ "u gg",
+ "W A",
+ "▁place holder",
+ "▁ placeholder",
+ "Wil l",
+ "W ill",
+ ", ,",
+ "▁K am",
+ "▁Ka m",
+ "▁w en",
+ "▁we n",
+ "▁ wen",
+ "▁Sch ul",
+ "ți e",
+ "ț ie",
+ "▁a ud",
+ "▁au d",
+ "▁ aud",
+ "▁s ue",
+ "▁su e",
+ "▁re ferred",
+ "▁refer red",
+ "ва т",
+ "в ат",
+ "▁P ara",
+ "▁Par a",
+ "▁Pa ra",
+ "▁b la",
+ "▁bl a",
+ "▁ bla",
+ "UE S",
+ "U ES",
+ "▁stat ist",
+ "▁stati st",
+ "▁т у",
+ "▁ ту",
+ "▁Wars za",
+ "gu e",
+ "g ue",
+ "▁I de",
+ "▁Id e",
+ "math scr",
+ "▁l ieu",
+ "▁li eu",
+ "▁lie u",
+ "▁b od",
+ "▁bo d",
+ "▁r us",
+ "▁ru s",
+ "▁ rus",
+ "▁bo at",
+ "xs pace",
+ "x space",
+ "▁mod al",
+ "▁mo dal",
+ "▁ modal",
+ "ле к",
+ "л ек",
+ "to pic",
+ "top ic",
+ "ma ny",
+ "man y",
+ "m any",
+ "sk ý",
+ "▁organ ization",
+ "▁organiz ation",
+ "▁г ене",
+ "▁ге не",
+ "▁Wil son",
+ "▁com fort",
+ "ib il",
+ "i bil",
+ ": -",
+ "▁an imal",
+ "▁anim al",
+ "▁ani mal",
+ "Re port",
+ "Rep ort",
+ "ка ми",
+ "кам и",
+ "jo n",
+ "j on",
+ "▁k er",
+ "▁ke r",
+ "▁ ker",
+ "▁к ни",
+ "moz illa",
+ "Pr ice",
+ "P rice",
+ "ant in",
+ "anti n",
+ "em ento",
+ "ement o",
+ "emen to",
+ "ma y",
+ "m ay",
+ "▁l ung",
+ "▁lu ng",
+ "▁lun g",
+ "▁ lung",
+ "▁b low",
+ "▁bl ow",
+ "▁blo w",
+ "ede ut",
+ "▁type d",
+ "▁typ ed",
+ "▁ty ped",
+ "▁dec ember",
+ "▁. ...",
+ "▁... .",
+ "▁.. ..",
+ "▁ ....",
+ "li ance",
+ "l iance",
+ "▁v iel",
+ "▁vi el",
+ "▁vie l",
+ "▁Ф и",
+ "pr esa",
+ "pre sa",
+ "pres a",
+ "▁ос іб",
+ "▁N am",
+ "▁Na m",
+ "▁G ren",
+ "▁Gr en",
+ "▁Gre n",
+ "си лання",
+ "VI D",
+ "V ID",
+ "st re",
+ "str e",
+ "s tre",
+ "we is",
+ "wei s",
+ "▁prote ction",
+ "▁protect ion",
+ "▁prot ection",
+ "ta ient",
+ "t aient",
+ "▁offic ers",
+ "▁office rs",
+ "▁officer s",
+ "т но",
+ "▁B rig",
+ "▁Br ig",
+ "▁int ellig",
+ "▁intel lig",
+ "я х",
+ "IT H",
+ "I TH",
+ "▁separ ated",
+ "▁separate d",
+ "▁L CCN",
+ "ní m",
+ "n ím",
+ "cl ock",
+ "clo ck",
+ "c lock",
+ "▁ap are",
+ "▁apar e",
+ "яв и",
+ "я ви",
+ "▁Eliz abeth",
+ "▁W ater",
+ "▁Wat er",
+ "▁Wa ter",
+ "geb iet",
+ "▁con vent",
+ "▁conv ent",
+ "▁conven t",
+ "fu rt",
+ "fur t",
+ "f urt",
+ "▁be iden",
+ "▁bei den",
+ "▁beide n",
+ "ba sh",
+ "bas h",
+ "b ash",
+ "▁че рез",
+ "▁чер ез",
+ "▁u b",
+ "▁ ub",
+ "▁Stat ist",
+ "▁Stati st",
+ "▁lim its",
+ "▁limit s",
+ "▁ limits",
+ "V ol",
+ "ct x",
+ "c tx",
+ "▁но в",
+ "▁н ов",
+ "▁ нов",
+ "gu ide",
+ "gui de",
+ "mi c",
+ "m ic",
+ "ie sa",
+ "ies a",
+ "i esa",
+ "▁h uvud",
+ "R T",
+ "Fi g",
+ "F ig",
+ "▁l ect",
+ "▁le ct",
+ "▁ lect",
+ "con n",
+ "co nn",
+ "c onn",
+ "im it",
+ "imi t",
+ "i mit",
+ "га р",
+ "г ар",
+ "▁b ajo",
+ "▁ba jo",
+ "scri be",
+ "scr ibe",
+ "s cribe",
+ "re gex",
+ "reg ex",
+ "▁C ass",
+ "▁Cas s",
+ "▁Ca ss",
+ "▁pro pag",
+ "▁prop ag",
+ "' $",
+ "▁prof es",
+ "un ique",
+ "uni que",
+ "▁S ql",
+ "▁ Sql",
+ "un ion",
+ "uni on",
+ "ri os",
+ "rio s",
+ "r ios",
+ "pi p",
+ "p ip",
+ "-- +",
+ "- -+",
+ "ka dem",
+ "k adem",
+ "column s",
+ "▁v ary",
+ "▁var y",
+ "▁va ry",
+ "▁bere its",
+ "▁d oi",
+ "▁do i",
+ "▁Com mon",
+ "▁Comm on",
+ "▁ Common",
+ "▁Ro bin",
+ "▁Rob in",
+ "▁ ×",
+ "▁s ei",
+ "▁se i",
+ "▁s yst",
+ "▁sy st",
+ "▁sys t",
+ "▁v ä",
+ "▁ vä",
+ "▁De fault",
+ "▁Def ault",
+ "▁ Default",
+ "▁t ym",
+ "▁ty m",
+ "pe l",
+ "p el",
+ "▁bel ieved",
+ "▁believe d",
+ "▁pro vider",
+ "▁prov ider",
+ "▁provide r",
+ "▁ provider",
+ "▁min imal",
+ "▁minim al",
+ "▁mini mal",
+ "та ли",
+ "тал и",
+ "т али",
+ "ain es",
+ "ai nes",
+ "aine s",
+ "a ines",
+ "K it",
+ "iz io",
+ "izi o",
+ "is sen",
+ "iss en",
+ "isse n",
+ "pr essed",
+ "press ed",
+ "pres sed",
+ "▁s tag",
+ "▁st ag",
+ "▁sta g",
+ "▁ stag",
+ "▁u int",
+ "▁ui nt",
+ "▁ uint",
+ "ko r",
+ "k or",
+ "▁ра спо",
+ "▁рас по",
+ "▁in herit",
+ "▁inher it",
+ "▁comp iled",
+ "▁compile d",
+ "▁f ebru",
+ "▁fe bru",
+ "▁feb ru",
+ "▁t mp",
+ "▁tm p",
+ "▁ tmp",
+ "work s",
+ "wor ks",
+ "ч на",
+ "draw able",
+ "▁N av",
+ "▁Na v",
+ "▁ Nav",
+ "▁though ts",
+ "▁thought s",
+ "ro ute",
+ "rout e",
+ "rou te",
+ "r oute",
+ "▁con cert",
+ "▁conc ert",
+ "▁conce rt",
+ "▁option al",
+ "▁opt ional",
+ "▁ optional",
+ "▁b ras",
+ "▁br as",
+ "▁bra s",
+ "▁ bras",
+ "▁prov iding",
+ "со м",
+ "с ом",
+ "id x",
+ "i dx",
+ "emp lo",
+ "empl o",
+ "▁ко ли",
+ "▁ коли",
+ "▁B ere",
+ "▁Be re",
+ "▁Ber e",
+ "▁E ls",
+ "▁El s",
+ "ре мен",
+ "рем ен",
+ "▁де ка",
+ "co ut",
+ "cou t",
+ "c out",
+ "la yer",
+ "lay er",
+ "l ayer",
+ "▁g lob",
+ "▁gl ob",
+ "▁glo b",
+ "▁ glob",
+ "fore ach",
+ "for each",
+ "▁E ducation",
+ "▁Edu cation",
+ "P O",
+ "▁im prov",
+ "▁imp rov",
+ "▁impro v",
+ "▁impr ov",
+ "▁cl ients",
+ "▁client s",
+ "▁cli ents",
+ "gr oups",
+ "group s",
+ "gro ups",
+ "▁k ont",
+ "▁kon t",
+ "▁ko nt",
+ "De l",
+ "D el",
+ "re tt",
+ "ret t",
+ "r ett",
+ "▁s up",
+ "▁su p",
+ "▁ sup",
+ "▁m og",
+ "▁mo g",
+ "ta n",
+ "t an",
+ "▁com pl",
+ "▁comp l",
+ "ir ty",
+ "irt y",
+ "▁nouve au",
+ "os z",
+ "o sz",
+ "▁N avy",
+ "▁Na vy",
+ "▁Nav y",
+ "ber e",
+ "be re",
+ "b ere",
+ "ma sk",
+ "mas k",
+ "m ask",
+ "ov é",
+ "o vé",
+ "zi l",
+ "z il",
+ "PE R",
+ "P ER",
+ "▁pobla ción",
+ "▁població n",
+ "▁d etailed",
+ "▁detail ed",
+ "ле т",
+ "л ет",
+ "▁famil ies",
+ "▁familie s",
+ "ab et",
+ "abe t",
+ "a bet",
+ "е вич",
+ "änd er",
+ "än der",
+ "ände r",
+ "ä nder",
+ "▁å r",
+ "▁ år",
+ "▁p endant",
+ "▁b il",
+ "▁bi l",
+ "▁ bil",
+ "▁h int",
+ "▁hi nt",
+ "▁hin t",
+ "ode n",
+ "od en",
+ "o den",
+ "▁exp ansion",
+ "▁p ont",
+ "▁po nt",
+ "▁pon t",
+ "▁ pont",
+ "as ant",
+ "asa nt",
+ "▁K ind",
+ "▁Ki nd",
+ "▁Kin d",
+ "▁ Kind",
+ "ij i",
+ "i ji",
+ "▁A uth",
+ "▁Aut h",
+ "▁Au th",
+ "▁ Auth",
+ "laim ed",
+ "ref lect",
+ "] =",
+ "by tes",
+ "byte s",
+ "ho ver",
+ "hov er",
+ "h over",
+ "▁ц ер",
+ "▁це р",
+ "▁ цер",
+ "grad le",
+ "Ar ch",
+ "ap est",
+ "ape st",
+ "apes t",
+ "ás a",
+ "á sa",
+ "Car d",
+ "Ca rd",
+ "C ard",
+ "▁tempor ary",
+ "▁départ ement",
+ "class es",
+ "жи ва",
+ "▁х удо",
+ "▁m ole",
+ "▁mo le",
+ "▁mol e",
+ "R Y",
+ "L P",
+ "▁p ec",
+ "▁pe c",
+ "▁ pec",
+ "rodu ction",
+ "▁Gu ard",
+ "▁Par liament",
+ "▁inst anti",
+ "▁instant i",
+ "▁not amment",
+ "▁D oug",
+ "▁Do ug",
+ "▁Dou g",
+ "▁Mar sh",
+ "▁Mars h",
+ ". ~",
+ "▁\\ \"",
+ "▁ \\\"",
+ "▁t hé",
+ "▁th é",
+ "▁li bre",
+ "▁lib re",
+ "do es",
+ "▁dé but",
+ "▁U nit",
+ "▁Un it",
+ "▁ Unit",
+ "▁с ту",
+ "▁ст у",
+ "▁ сту",
+ "▁le ague",
+ "▁qu ale",
+ "▁q uale",
+ "▁qual e",
+ "▁состав ля",
+ "▁соста вля",
+ "Se curity",
+ "Sec urity",
+ "▁appar ently",
+ "▁apparent ly",
+ "▁tro ops",
+ "ic ano",
+ "ica no",
+ "ican o",
+ "i cano",
+ "▁M B",
+ "▁ MB",
+ "en ze",
+ "enz e",
+ "lo ading",
+ "load ing",
+ "▁dist ributed",
+ "▁distribu ted",
+ "▁distrib uted",
+ "write r",
+ "writ er",
+ "wr iter",
+ "w riter",
+ "res ources",
+ "resource s",
+ "h ö",
+ "ut ils",
+ "util s",
+ "uti ls",
+ "▁prep ared",
+ "▁prepar ed",
+ "▁prepare d",
+ "ci er",
+ "cie r",
+ "c ier",
+ "op ol",
+ "opo l",
+ "o pol",
+ "▁län kar",
+ "he s",
+ "h es",
+ "н ва",
+ "▁op ens",
+ "▁open s",
+ "▁ opens",
+ "ag og",
+ "ago g",
+ "inter face",
+ "▁F und",
+ "▁Fu nd",
+ "▁Fun d",
+ "▁pent ru",
+ "ní ch",
+ "n ích",
+ "▁config ured",
+ "▁configure d",
+ "▁configur ed",
+ "▁Web site",
+ "▁list ener",
+ "▁listen er",
+ "▁liste ner",
+ "▁ listener",
+ "iv el",
+ "ive l",
+ "i vel",
+ "n ę",
+ "min a",
+ "mi na",
+ "m ina",
+ "▁in vest",
+ "▁inv est",
+ "▁inve st",
+ "▁м іс",
+ "▁мі с",
+ "▁d av",
+ "▁da v",
+ "▁p atch",
+ "▁pat ch",
+ "▁ patch",
+ "pi eler",
+ "piel er",
+ "pie ler",
+ "▁Ext erna",
+ "▁Extern a",
+ "t f",
+ "▁e red",
+ "▁er ed",
+ "▁ere d",
+ "▁ ered",
+ "▁Ass embly",
+ "▁ Assembly",
+ "▁s out",
+ "▁so ut",
+ "▁sou t",
+ "▁v erk",
+ "▁ver k",
+ "▁ verk",
+ "me rs",
+ "mer s",
+ "m ers",
+ "t oggle",
+ "▁up dating",
+ "▁upd ating",
+ "▁K ent",
+ "▁Ke nt",
+ "▁Ken t",
+ "ec a",
+ "e ca",
+ "FA ULT",
+ "▁tit re",
+ "▁ti tre",
+ "▁K enn",
+ "▁Ke nn",
+ "▁Ken n",
+ "▁Ми ха",
+ "ст ор",
+ "сто р",
+ "с тор",
+ "▁p ode",
+ "▁po de",
+ "▁pod e",
+ "▁S eb",
+ "▁Se b",
+ "це в",
+ "ц ев",
+ "E Y",
+ "▁sil ver",
+ "▁cap acity",
+ "▁capac ity",
+ "▁comple tion",
+ "▁complet ion",
+ "▁Pe dro",
+ "▁Ped ro",
+ "fe l",
+ "f el",
+ "va no",
+ "van o",
+ "v ano",
+ "ze ug",
+ "▁in terior",
+ "▁inter ior",
+ "▁inte rior",
+ "▁Res ponse",
+ "▁ Response",
+ "éd ia",
+ "é dia",
+ "▁World Cat",
+ "▁c ă",
+ "qu el",
+ "que l",
+ "q uel",
+ "So l",
+ "S ol",
+ "іс ля",
+ "▁D omin",
+ "▁Do min",
+ "▁Dom in",
+ "▁c um",
+ "▁cu m",
+ "ce p",
+ "c ep",
+ "▁M use",
+ "▁Mus e",
+ "▁Mu se",
+ "▁M aría",
+ "▁Mar ía",
+ "▁Ma ría",
+ "▁function al",
+ "▁ad apter",
+ "▁adapt er",
+ "▁ adapter",
+ "config uration",
+ "▁t ipo",
+ "▁tip o",
+ "▁ti po",
+ "▁B ry",
+ "▁Br y",
+ "v y",
+ "U L",
+ "▁tra vers",
+ "▁trav ers",
+ "! (",
+ "▁absol utely",
+ "▁absolute ly",
+ "л та",
+ "тт я",
+ "т тя",
+ "▁I T",
+ "▁ IT",
+ "▁во ен",
+ "yc le",
+ "y cle",
+ "be st",
+ "bes t",
+ "b est",
+ "▁construct ed",
+ "▁constru cted",
+ "▁фи ль",
+ "▁ филь",
+ "ci do",
+ "cid o",
+ "c ido",
+ "ex it",
+ "ga rt",
+ "gar t",
+ "g art",
+ "▁provin cia",
+ "ve z",
+ "v ez",
+ "ci pl",
+ "cip l",
+ "▁Face book",
+ "▁Fac ebook",
+ "▁y ellow",
+ "▁ yellow",
+ "▁Sum mer",
+ "▁point ing",
+ "▁poss ibility",
+ "▁possib ility",
+ "▁possibil ity",
+ "▁leg isl",
+ "▁мо ж",
+ "▁ мож",
+ "de rn",
+ "der n",
+ "d ern",
+ "ко но",
+ "кон о",
+ "▁mechan ism",
+ "▁Bern ard",
+ "ex pr",
+ "exp r",
+ "ло ви",
+ "лов и",
+ "л ови",
+ "▁dig its",
+ "▁digit s",
+ "▁de legate",
+ "▁deleg ate",
+ "▁ delegate",
+ "og ram",
+ "o gram",
+ "▁D ictionary",
+ "▁ Dictionary",
+ "is y",
+ "▁s po",
+ "▁sp o",
+ "/ $",
+ "clude d",
+ "clud ed",
+ "▁M VC",
+ "▁t ém",
+ "▁té m",
+ "▁print ed",
+ "▁prin ted",
+ "▁G ott",
+ "▁Go tt",
+ "▁Got t",
+ "▁O m",
+ "▁ Om",
+ "ans as",
+ "▁D urch",
+ "▁Dur ch",
+ "▁I dent",
+ "▁Id ent",
+ "▁Ide nt",
+ "▁ Ident",
+ "Q U",
+ "ht m",
+ "h tm",
+ "▁S ul",
+ "▁Su l",
+ "'] .",
+ "' ].",
+ "▁du ty",
+ "▁dut y",
+ "▁Aut hor",
+ "▁Auth or",
+ "▁ Author",
+ "▁n ě",
+ "▁ ně",
+ "ow ego",
+ "owe go",
+ "pu s",
+ "p us",
+ "em bl",
+ "emb l",
+ "Exec utor",
+ "B L",
+ "▁M ens",
+ "▁Me ns",
+ "▁Men s",
+ "dis patch",
+ "▁M id",
+ "▁Mi d",
+ "ap ps",
+ "app s",
+ "Trans form",
+ "▁D at",
+ "▁Da t",
+ "▁ Dat",
+ "▁im pl",
+ "▁imp l",
+ "▁ impl",
+ "ou x",
+ "o ux",
+ "ho lm",
+ "hol m",
+ "▁I ns",
+ "▁In s",
+ "▁Emp ire",
+ "ру п",
+ "▁Ap ache",
+ "SI ON",
+ "S ION",
+ "▁pass age",
+ "######## ########",
+ "▁ex pressed",
+ "▁express ed",
+ "▁expr essed",
+ "▁expres sed",
+ "на д",
+ "▁o l",
+ "▁ ol",
+ "▁h avia",
+ "▁ha via",
+ "▁hav ia",
+ "▁бо лее",
+ "▁enjo y",
+ "form ance",
+ "▁dim ensions",
+ "▁dimension s",
+ "▁ч ер",
+ "▁че р",
+ "▁ чер",
+ "Se e",
+ "S ee",
+ "▁m outh",
+ "▁mo uth",
+ "▁mou th",
+ "▁ mouth",
+ "▁g au",
+ "▁ga u",
+ "ien cy",
+ "i ency",
+ "▁Carol ina",
+ "Dis t",
+ "Di st",
+ "D ist",
+ "rad io",
+ "li mit",
+ "lim it",
+ "l imit",
+ "/ ?",
+ "▁B all",
+ "▁Ba ll",
+ "▁Bal l",
+ "ні сть",
+ "Mem ber",
+ "M ember",
+ "wa ter",
+ "w ater",
+ "▁mur der",
+ "▁stand ing",
+ "▁stan ding",
+ "▁ standing",
+ "▁V II",
+ "▁VI I",
+ "Cent er",
+ "C enter",
+ "pp a",
+ "p pa",
+ "ur eau",
+ "ure au",
+ "▁Le ip",
+ "▁ob jet",
+ "▁obj et",
+ "▁Act ivity",
+ "▁Activ ity",
+ "▁ Activity",
+ "em bers",
+ "ember s",
+ "emb ers",
+ "v r",
+ "▁con du",
+ "▁cond u",
+ "Cell s",
+ "C ells",
+ "in us",
+ "inu s",
+ "▁' ,",
+ "▁ ',",
+ "▁af raid",
+ "▁х а",
+ "▁ ха",
+ "▁V ic",
+ "▁Vi c",
+ "test ing",
+ "tes ting",
+ "Tu be",
+ "T ube",
+ "▁v ast",
+ "▁va st",
+ "▁vas t",
+ "P M",
+ "ni h",
+ "n ih",
+ "SS N",
+ "S SN",
+ "▁Ch ile",
+ "▁Chi le",
+ "yl van",
+ "▁B ow",
+ "▁Bo w",
+ "▁relig ion",
+ "op her",
+ "oph er",
+ "ophe r",
+ "o pher",
+ "▁C oll",
+ "▁Col l",
+ "▁Co ll",
+ "▁ Coll",
+ "▁dig ital",
+ "▁digit al",
+ "zi oni",
+ "z ioni",
+ "Se ction",
+ "Sec tion",
+ "S ection",
+ "▁резу льта",
+ "Foo t",
+ "F oot",
+ "con vert",
+ "conv ert",
+ "▁rece iving",
+ "Cont act",
+ "▁h ero",
+ "▁he ro",
+ "▁her o",
+ "sa m",
+ "s am",
+ "▁pos terior",
+ "▁poster ior",
+ "▁poste rior",
+ "ow i",
+ "o wi",
+ "An t",
+ "A nt",
+ "▁fl ags",
+ "▁flag s",
+ "▁fla gs",
+ "▁ flags",
+ "▁Ze aland",
+ "▁b ounds",
+ "▁bound s",
+ "▁ bounds",
+ "▁where as",
+ "▁whe reas",
+ "in fl",
+ "inf l",
+ "Pl ay",
+ "P lay",
+ "▁d emo",
+ "▁de mo",
+ "▁dem o",
+ "▁ demo",
+ "▁g ibt",
+ "▁gi bt",
+ "▁h ospital",
+ "▁hosp ital",
+ "▁v olta",
+ "▁vol ta",
+ "▁volt a",
+ "л ё",
+ "▁f ashion",
+ "▁ex ceed",
+ "▁exc eed",
+ "el enium",
+ "elen ium",
+ "It er",
+ "I ter",
+ "kr ie",
+ "k rie",
+ "▁integr ation",
+ "▁integra tion",
+ "▁ integration",
+ "▁Other wise",
+ "ad u",
+ "a du",
+ "Sh e",
+ "S he",
+ "on de",
+ "ond e",
+ "o nde",
+ "ui nt",
+ "u int",
+ "rad ius",
+ "▁r am",
+ "▁ra m",
+ "▁ ram",
+ "▁ál bum",
+ "▁т ур",
+ "▁ту р",
+ "▁ тур",
+ "▁d y",
+ "▁ dy",
+ "▁O tt",
+ "▁Ot t",
+ "▁пер и",
+ "▁пе ри",
+ "re v",
+ "r ev",
+ "ri or",
+ "rio r",
+ "r ior",
+ "í d",
+ "ir at",
+ "ira t",
+ "i rat",
+ "▁в клю",
+ "▁import ante",
+ "▁important e",
+ "▁Du ke",
+ "▁caus a",
+ "▁ca usa",
+ "▁Math emat",
+ "▁di plom",
+ "▁N icol",
+ "▁Nic ol",
+ "▁Ni col",
+ "▁ex clus",
+ "▁exc lus",
+ "▁debug ging",
+ "▁G h",
+ "or iginal",
+ "origin al",
+ "orig inal",
+ "ly n",
+ "l yn",
+ "▁P la",
+ "▁Pl a",
+ "su ite",
+ "suit e",
+ "ch at",
+ "cha t",
+ "c hat",
+ "▁e stud",
+ "▁est ud",
+ "ue lle",
+ "uel le",
+ "u elle",
+ "▁p ert",
+ "▁per t",
+ "▁pe rt",
+ "▁ pert",
+ "▁import ance",
+ "▁appro aches",
+ "▁approach es",
+ "▁d la",
+ "▁про ф",
+ "Pr es",
+ "Pre s",
+ "P res",
+ "< \\",
+ "pre fix",
+ "p refix",
+ "SS ION",
+ "S SION",
+ "ро ди",
+ "род и",
+ "count ry",
+ "c ountry",
+ "it zer",
+ "itz er",
+ "▁ко р",
+ "▁к ор",
+ "▁ кор",
+ "▁sing ular",
+ "go v",
+ "g ov",
+ "ри н",
+ "р ин",
+ "▁F A",
+ "▁ FA",
+ "▁mat rices",
+ "ol are",
+ "ola re",
+ "olar e",
+ "o lare",
+ "ni ka",
+ "nik a",
+ "n ika",
+ "po wer",
+ "pow er",
+ "p ower",
+ "ll a",
+ "l la",
+ "▁des ire",
+ "▁famil ia",
+ "▁fam ilia",
+ "до р",
+ "д ор",
+ "▁f an",
+ "▁fa n",
+ "▁ fan",
+ "gener ated",
+ "generate d",
+ "▁C os",
+ "▁Co s",
+ "▁ż e",
+ "▁ że",
+ "▁D iese",
+ "▁Die se",
+ "▁Di ese",
+ "▁Dies e",
+ "mo v",
+ "m ov",
+ "▁de note",
+ "▁den ote",
+ "\") ]",
+ "\" )]",
+ "ou vern",
+ "ouv ern",
+ "ouve rn",
+ "ouver n",
+ "am an",
+ "ama n",
+ "a man",
+ "▁in ser",
+ "▁ins er",
+ "▁inse r",
+ "ij k",
+ "i jk",
+ "ot ta",
+ "ott a",
+ "o tta",
+ "er al",
+ "era l",
+ "e ral",
+ "де ль",
+ "д ель",
+ "() ->",
+ "( )->",
+ "▁p oder",
+ "▁po der",
+ "▁pod er",
+ "▁pode r",
+ "ig es",
+ "ige s",
+ "i ges",
+ "▁On line",
+ "▁we ird",
+ "ia c",
+ "i ac",
+ "▁quel ques",
+ "▁quelque s",
+ "ère nt",
+ "è rent",
+ "▁t el",
+ "▁te l",
+ "▁ tel",
+ "▁L atin",
+ "▁Lat in",
+ "ver ter",
+ "vert er",
+ "verte r",
+ "ля р",
+ "ро и",
+ "▁p df",
+ "▁pd f",
+ "▁ pdf",
+ "▁key word",
+ "▁ keyword",
+ "Hand le",
+ "A fter",
+ "re ce",
+ "rec e",
+ "▁ident ical",
+ "style sheet",
+ "styles heet",
+ "▁стан ови",
+ "▁станов и",
+ "▁k a",
+ "▁ ka",
+ "ce ment",
+ "cem ent",
+ "c ement",
+ "те т",
+ "т ет",
+ "▁c hat",
+ "▁ch at",
+ "▁cha t",
+ "▁ chat",
+ "▁M un",
+ "▁Mu n",
+ "ał a",
+ "a ła",
+ "AN T",
+ "A NT",
+ "ol óg",
+ "▁f ant",
+ "▁fa nt",
+ "▁fan t",
+ "▁for est",
+ "▁fo rest",
+ "▁fore st",
+ "▁ви ко",
+ "cu ss",
+ "cus s",
+ "c uss",
+ "▁se hr",
+ "pa g",
+ "p ag",
+ "ot ic",
+ "oti c",
+ "▁á ll",
+ "▁ál l",
+ "▁ áll",
+ "ма ти",
+ "мат и",
+ "▁\" '",
+ "+ \"",
+ "An imation",
+ "Anim ation",
+ "ходи т",
+ "ход ит",
+ "az u",
+ "a zu",
+ "▁pl ays",
+ "▁play s",
+ "▁pla ys",
+ "▁ plays",
+ "iz ioni",
+ "izi oni",
+ "izio ni",
+ "i zioni",
+ "ми че",
+ "▁b omb",
+ "▁bo mb",
+ "▁bom b",
+ "▁mer ely",
+ "▁mere ly",
+ "▁hold ing",
+ "▁hol ding",
+ "▁w enn",
+ "▁we nn",
+ "▁wen n",
+ "▁m edic",
+ "▁me dic",
+ "▁med ic",
+ "▁medi c",
+ "▁spe aking",
+ "▁speak ing",
+ "ong odb",
+ "ongo db",
+ "▁Cam pe",
+ "▁Camp e",
+ "in ity",
+ "ini ty",
+ "init y",
+ "▁я нва",
+ "() `.",
+ "()` .",
+ "( )`.",
+ "lu ss",
+ "lus s",
+ "l uss",
+ "▁H istoire",
+ "▁His toire",
+ "▁Hist oire",
+ "▁oper ating",
+ "▁opera ting",
+ "Ch annel",
+ "▁accur acy",
+ "▁b os",
+ "▁bo s",
+ "▁ bos",
+ "▁ev ident",
+ "ци ю",
+ "event s",
+ "ev ents",
+ "even ts",
+ "text rm",
+ "or eign",
+ "ore ign",
+ "▁i i",
+ "▁ ii",
+ "hr en",
+ "hre n",
+ "h ren",
+ "lo wer",
+ "low er",
+ "l ower",
+ "▁т ом",
+ "▁то м",
+ "▁ том",
+ "▁Ab out",
+ "▁ About",
+ "▁a j",
+ "▁ aj",
+ "er i",
+ "e ri",
+ "сту пи",
+ "ступ и",
+ "▁di git",
+ "▁dig it",
+ "▁ digit",
+ "▁Sp ain",
+ "▁D aten",
+ "▁Date n",
+ "▁Da ten",
+ "▁Dat en",
+ "▁for me",
+ "▁form e",
+ "▁ш та",
+ "▁ шта",
+ "▁B ach",
+ "▁Ba ch",
+ "▁Bac h",
+ "no number",
+ "non umber",
+ "▁recomm ended",
+ "▁recommend ed",
+ "▁re ads",
+ "▁read s",
+ "his toire",
+ "h istoire",
+ "▁s ang",
+ "▁sa ng",
+ "▁san g",
+ "▁? ?",
+ "▁ ??",
+ "▁с тал",
+ "▁ст ал",
+ "▁ста л",
+ "sc ore",
+ "s core",
+ "fa s",
+ "f as",
+ "▁c ub",
+ "▁cu b",
+ "▁g rew",
+ "▁gr ew",
+ "▁gre w",
+ "▁cent ro",
+ "▁bek annt",
+ "Event s",
+ "BE R",
+ "B ER",
+ "he w",
+ "h ew",
+ "сс а",
+ "с са",
+ "▁major ity",
+ "ît re",
+ "î tre",
+ "en ci",
+ "enc i",
+ "▁Qu ery",
+ "▁Que ry",
+ "▁ Query",
+ "▁któ re",
+ "i ć",
+ "▁complex ity",
+ "▁Fran çois",
+ "const raint",
+ "ур на",
+ "═ ═",
+ "▁iter ate",
+ "le tt",
+ "let t",
+ "l ett",
+ "pe ror",
+ "per or",
+ "▁Neder land",
+ "sh are",
+ "sha re",
+ "▁incl u",
+ "▁inc lu",
+ "än ger",
+ "äng er",
+ "änge r",
+ "▁N ic",
+ "▁Ni c",
+ "ч о",
+ "F ull",
+ "▁ra pport",
+ "▁rapp ort",
+ "▁rap port",
+ "ec lipse",
+ "e clipse",
+ "▁indust ry",
+ "he aders",
+ "head ers",
+ "header s",
+ "▁Р и",
+ "ch sel",
+ "chs el",
+ "▁po lic",
+ "▁pol ic",
+ "sch ied",
+ "% ,",
+ "O D",
+ "▁J ak",
+ "▁Ja k",
+ "({ \\",
+ "( {\\",
+ "al igned",
+ "align ed",
+ "▁frequ ently",
+ "▁frequent ly",
+ "▁su oi",
+ "▁suo i",
+ "▁ess entially",
+ "▁essential ly",
+ "▁R ic",
+ "▁Ri c",
+ "▁re ports",
+ "▁report s",
+ "▁dec imal",
+ "ra r",
+ "r ar",
+ "▁F oo",
+ "▁Fo o",
+ "▁ Foo",
+ "▁K a",
+ "▁D C",
+ "▁ DC",
+ "▁sim pler",
+ "▁simple r",
+ "▁simp ler",
+ "▁simpl er",
+ "Pa ne",
+ "Pan e",
+ "P ane",
+ "? }",
+ "So rt",
+ "S ort",
+ "▁pos it",
+ "cd n",
+ "c dn",
+ "kt ur",
+ "▁aw k",
+ "▁ awk",
+ "зе р",
+ "з ер",
+ "P F",
+ "u ur",
+ "▁R oss",
+ "▁Ro ss",
+ "▁Ros s",
+ "▁m ant",
+ "▁ma nt",
+ "▁man t",
+ "N a",
+ "Con s",
+ "Co ns",
+ "C ons",
+ ")) ))",
+ "))) )",
+ ") )))",
+ "▁techn iques",
+ "▁techni ques",
+ "▁technique s",
+ "im pl",
+ "imp l",
+ "▁dro pped",
+ "▁drop ped",
+ "▁L ista",
+ "▁List a",
+ "▁Li sta",
+ "▁Lis ta",
+ "▁Bas ically",
+ "▁Basic ally",
+ "en tal",
+ "ent al",
+ "enta l",
+ "▁cel ui",
+ "▁str ategy",
+ "▁strateg y",
+ "▁strat egy",
+ "▁W ales",
+ "▁Wal es",
+ "▁Wa les",
+ "na n",
+ "n an",
+ "▁g min",
+ "▁gr öß",
+ "▁eer ste",
+ "▁eerst e",
+ "T im",
+ "nt en",
+ "n ten",
+ "re sp",
+ "res p",
+ "r esp",
+ "▁s table",
+ "▁st able",
+ "▁sta ble",
+ "▁ stable",
+ "no v",
+ "n ov",
+ "ro b",
+ "r ob",
+ "но ј",
+ "▁mar riage",
+ "get String",
+ "Aut hor",
+ "Auth or",
+ "▁G raf",
+ "▁Gr af",
+ "▁Gra f",
+ "▁di agram",
+ "▁diag ram",
+ "▁dia gram",
+ "gi a",
+ "g ia",
+ "Net work",
+ "N etwork",
+ "▁com posed",
+ "▁comp osed",
+ "▁compos ed",
+ "▁compose d",
+ "▁miss ed",
+ "▁mis sed",
+ "▁M eg",
+ "▁Me g",
+ "▁пра во",
+ "▁прав о",
+ "▁hom onymes",
+ "▁Bo oks",
+ "▁Book s",
+ "▁en cou",
+ "▁enc ou",
+ "port e",
+ "por te",
+ "p orte",
+ "▁rot ation",
+ "▁f ir",
+ "▁fi r",
+ "▁ fir",
+ "те льно",
+ "тель но",
+ "▁g un",
+ "▁gu n",
+ "▁ gun",
+ "▁A ff",
+ "▁Af f",
+ "▁ Aff",
+ "но к",
+ "н ок",
+ "▁Fuß ball",
+ "▁St ory",
+ "▁Sto ry",
+ "▁ Story",
+ "▁Ch ap",
+ "▁Cha p",
+ "▁) .",
+ "▁ ).",
+ "▁Se it",
+ "мо н",
+ "м он",
+ "▁t élé",
+ "▁té lé",
+ "▁cop ied",
+ "▁cons istent",
+ "▁consist ent",
+ "▁dr ink",
+ "▁C ham",
+ "▁Ch am",
+ "▁Cha m",
+ "▁mat ters",
+ "▁matter s",
+ "▁render ed",
+ "▁rend ered",
+ "▁rende red",
+ "▁hyp oth",
+ "œ uv",
+ "▁me er",
+ "▁par sing",
+ "▁P RO",
+ "▁PR O",
+ "▁ PRO",
+ "se ries",
+ "ser ies",
+ "serie s",
+ "s eries",
+ "▁z á",
+ "▁ zá",
+ "stra ße",
+ "▁B oot",
+ "▁Bo ot",
+ "▁ Boot",
+ "▁re po",
+ "▁rep o",
+ "▁ repo",
+ "wo r",
+ "w or",
+ "▁St ream",
+ "▁Stre am",
+ "▁ Stream",
+ "▁A N",
+ "▁ AN",
+ "▁п ів",
+ "▁пі в",
+ "▁S M",
+ "▁ SM",
+ "▁A rn",
+ "▁Ar n",
+ "▁ Ž",
+ "▁[ ];",
+ "▁[] ;",
+ "Res ources",
+ "Resource s",
+ "▁el abor",
+ "▁ela bor",
+ "▁E th",
+ "▁Et h",
+ "▁l iste",
+ "▁li ste",
+ "▁list e",
+ "▁rel atively",
+ "▁relative ly",
+ "▁relativ ely",
+ "ch ant",
+ "chan t",
+ "cha nt",
+ "=\" \"",
+ "= \"\"",
+ "▁l ift",
+ "▁li ft",
+ "▁lif t",
+ "C N",
+ "Service s",
+ "Serv ices",
+ "ME NT",
+ "M ENT",
+ "▁и гра",
+ "▁иг ра",
+ "▁ игра",
+ "б ре",
+ "▁J ord",
+ "▁Jo rd",
+ "▁t ec",
+ "▁te c",
+ "ш ка",
+ "▁S up",
+ "▁Su p",
+ "▁infl uen",
+ "▁influ en",
+ "on ds",
+ "ond s",
+ "hand ler",
+ "handle r",
+ "▁b anda",
+ "▁band a",
+ "▁ban da",
+ "▁vert ices",
+ "▁z ap",
+ "▁za p",
+ "▁c ord",
+ "▁cor d",
+ "▁co rd",
+ "▁ cord",
+ "al ter",
+ "alt er",
+ "ze nia",
+ "zen ia",
+ "z enia",
+ "ât eau",
+ "âte au",
+ "▁know ing",
+ "▁Argent ina",
+ "Ar ea",
+ "Are a",
+ "A rea",
+ "ан е",
+ "а не",
+ "f c",
+ "=\" /",
+ "= \"/",
+ "▁M ik",
+ "▁Mi k",
+ "at ă",
+ "ie ux",
+ "ieu x",
+ "▁deutsch en",
+ "▁deutsche n",
+ "▁trad itional",
+ "▁tradition al",
+ "de code",
+ "dec ode",
+ "ve x",
+ "v ex",
+ "▁size of",
+ "▁ sizeof",
+ "▁F un",
+ "▁Fu n",
+ "▁ Fun",
+ "▁par ser",
+ "▁parse r",
+ "▁ parser",
+ "▁Flor ida",
+ "▁build ings",
+ "▁building s",
+ "▁Man uel",
+ "ri le",
+ "ril e",
+ "r ile",
+ "▁log ged",
+ "▁strong ly",
+ "▁re vol",
+ "▁rev ol",
+ "не е",
+ "xi co",
+ "xic o",
+ "x ico",
+ "▁F air",
+ "▁Fa ir",
+ "ca rt",
+ "car t",
+ "c art",
+ "▁W ort",
+ "▁Wo rt",
+ "▁Wor t",
+ "▁Jes us",
+ "em es",
+ "eme s",
+ "e mes",
+ "sch rift",
+ "Input Stream",
+ "wa d",
+ "w ad",
+ "▁gran des",
+ "▁grand es",
+ "▁grande s",
+ "▁númer o",
+ "▁O tto",
+ "▁Ot to",
+ "▁Ott o",
+ "ien tes",
+ "ient es",
+ "iente s",
+ "i entes",
+ "▁fam ous",
+ "ol ogne",
+ "olog ne",
+ "J e",
+ "ни ш",
+ "▁Guer ra",
+ "bar a",
+ "ba ra",
+ "b ara",
+ "▁c ad",
+ "▁ca d",
+ "el ve",
+ "br ace",
+ "bra ce",
+ "b race",
+ "▁J r",
+ "st able",
+ "sta ble",
+ "stab le",
+ "s table",
+ "EC T",
+ "E CT",
+ "lem ma",
+ "med iate",
+ "medi ate",
+ "media te",
+ "▁v in",
+ "▁vi n",
+ "▁ vin",
+ "▁mon ument",
+ "▁c v",
+ "▁ cv",
+ "▁w inter",
+ "▁win ter",
+ "▁trans formation",
+ "▁transform ation",
+ "▁N ick",
+ "▁Nic k",
+ "▁Ni ck",
+ "str onom",
+ "▁f rag",
+ "▁fr ag",
+ "▁fra g",
+ "▁in tel",
+ "▁int el",
+ "▁inte l",
+ "ra ction",
+ "rac tion",
+ "ract ion",
+ "r action",
+ "▁consider ing",
+ "▁consid ering",
+ "▁F le",
+ "▁Fl e",
+ "▁ ло",
+ "▁A près",
+ "▁Ap rès",
+ "▁A M",
+ "▁ AM",
+ "▁H um",
+ "▁Hu m",
+ "▁m undo",
+ "NE R",
+ "N ER",
+ "▁Be low",
+ "▁Bel ow",
+ "▁го рода",
+ "▁горо да",
+ "▁город а",
+ "ar ters",
+ "art ers",
+ "arter s",
+ "arte rs",
+ "-- \"",
+ "▁П е",
+ "▁ Пе",
+ "î t",
+ "▁t xt",
+ "▁tx t",
+ "▁ txt",
+ "an gers",
+ "ang ers",
+ "ange rs",
+ "anger s",
+ "▁t hy",
+ "▁th y",
+ "▁ thy",
+ "CL A",
+ "C LA",
+ "ib les",
+ "ible s",
+ "i bles",
+ "▁request ed",
+ "▁requ ested",
+ "▁Alex and",
+ "▁fact ors",
+ "▁fa ctors",
+ "▁factor s",
+ "▁produ ces",
+ "▁produce s",
+ "ning en",
+ "n ingen",
+ "▁со стоя",
+ "▁optim ization",
+ "ch od",
+ "cho d",
+ "c hod",
+ "> `",
+ "▁Wik ip",
+ "nost i",
+ "nos ti",
+ "n osti",
+ "▁compet ition",
+ "▁H ann",
+ "▁Ha nn",
+ "▁Han n",
+ "▁z ona",
+ "▁zo na",
+ "d c",
+ "de sign",
+ "des ign",
+ "▁Z u",
+ "▁e spec",
+ "▁es pec",
+ "▁espe c",
+ "▁esp ec",
+ "equ ality",
+ "equal ity",
+ "e quality",
+ "▁A bb",
+ "▁Ab b",
+ "▁develop er",
+ "▁ developer",
+ "▁\" ^",
+ "▁Sh ort",
+ "▁Sho rt",
+ "▁ Short",
+ "▁pl ans",
+ "▁pla ns",
+ "▁plan s",
+ "▁v it",
+ "▁vi t",
+ "iz able",
+ "iza ble",
+ "burg h",
+ "bur gh",
+ "ag em",
+ "age m",
+ "a gem",
+ "▁Pr int",
+ "▁Pri nt",
+ "▁Prin t",
+ "▁ Print",
+ "í v",
+ "▁su itable",
+ "▁suit able",
+ "pi cker",
+ "pic ker",
+ "pick er",
+ "p icker",
+ "Pro file",
+ "an dy",
+ "and y",
+ "▁qu ot",
+ "▁ quot",
+ "▁Dur ante",
+ "▁Durant e",
+ "▁Fran cia",
+ "▁Fr ancia",
+ "▁Franc ia",
+ "▁t art",
+ "▁tar t",
+ "▁ta rt",
+ "▁V enez",
+ "▁Ve nez",
+ "▁Ven ez",
+ "▁dis patch",
+ "▁disp atch",
+ "▁ dispatch",
+ "▁observ ations",
+ "▁observation s",
+ "▁ ż",
+ "In valid",
+ "▁occ urr",
+ "▁occur r",
+ "▁oc curr",
+ "т ки",
+ "Mem ento",
+ "M emento",
+ "▁S yd",
+ "▁Sy d",
+ "▁tiem po",
+ "▁st aff",
+ "▁sta ff",
+ "▁se ctions",
+ "▁section s",
+ "▁sect ions",
+ "▁ sections",
+ "▁s sh",
+ "▁ss h",
+ "▁ ssh",
+ "▁N GC",
+ "ë l",
+ "▁er re",
+ "▁err e",
+ "▁div ided",
+ "▁divide d",
+ "▁divid ed",
+ "▁With out",
+ "▁du rant",
+ "▁dur ant",
+ "▁j aar",
+ "▁ja ar",
+ "▁ −",
+ "▁sold iers",
+ "▁soldier s",
+ "ун к",
+ "la pse",
+ "lap se",
+ "laps e",
+ "▁Val ley",
+ "▁Vall ey",
+ "▁Valle y",
+ "▁( :",
+ "▁ (:",
+ "re ra",
+ "rer a",
+ "r era",
+ "▁d ével",
+ "▁dé vel",
+ "▁p éri",
+ "▁pé ri",
+ "▁calcul ation",
+ "▁calc ulation",
+ "▁ke ine",
+ "▁kein e",
+ "er tain",
+ "ert ain",
+ "erta in",
+ "▁те ле",
+ "ру д",
+ "▁c ul",
+ "▁cu l",
+ "▁ cul",
+ "▁cl oth",
+ "▁clo th",
+ "; }",
+ "▁pr zed",
+ "▁prze d",
+ "▁prz ed",
+ "Mon th",
+ "Mo nth",
+ "Mont h",
+ "Pi cker",
+ "P icker",
+ "▁S V",
+ "▁ SV",
+ "ar ian",
+ "ari an",
+ "aria n",
+ "a rian",
+ "▁Re view",
+ "▁Rev iew",
+ "▁h ang",
+ "▁ha ng",
+ "▁han g",
+ "▁ hang",
+ "▁о кт",
+ "▁ок т",
+ "▁F ront",
+ "▁Fr ont",
+ "▁Fro nt",
+ "▁ Front",
+ "ot lin",
+ "▁trans lation",
+ "▁transl ation",
+ "▁m odo",
+ "▁mod o",
+ "▁mo do",
+ "▁stat istics",
+ "▁statist ics",
+ "▁N ue",
+ "▁Nu e",
+ "▁Ни кола",
+ "NU M",
+ "N UM",
+ "▁s hips",
+ "▁sh ips",
+ "▁ship s",
+ "▁ ships",
+ "▁Re port",
+ "▁Rep ort",
+ "▁ Report",
+ "{ [",
+ "E ffect",
+ "ie ri",
+ "ier i",
+ "i eri",
+ "▁par ties",
+ "▁part ies",
+ "▁partie s",
+ "▁parti es",
+ "pl a",
+ "p la",
+ "r w",
+ "▁Work s",
+ "▁Wor ks",
+ "▁i ron",
+ "▁ir on",
+ "▁att ract",
+ "▁attr act",
+ "▁attra ct",
+ "▁c ort",
+ "▁cor t",
+ "▁co rt",
+ "n á",
+ "▁Ste ve",
+ "▁b ene",
+ "▁be ne",
+ "▁ben e",
+ "то н",
+ "т он",
+ "ícul a",
+ "Tw o",
+ "T wo",
+ "▁г лав",
+ "▁гла в",
+ "▁V ideo",
+ "▁ Video",
+ "▁power ful",
+ "au ch",
+ "auc h",
+ "a uch",
+ "ma nde",
+ "man de",
+ "m ande",
+ "äch st",
+ "ächs t",
+ "La t",
+ "L at",
+ "▁z na",
+ "▁zn a",
+ "▁ zna",
+ "▁fig ures",
+ "▁figure s",
+ "▁figur es",
+ "▁a lias",
+ "▁al ias",
+ "▁ali as",
+ "▁ alias",
+ "ne x",
+ "n ex",
+ "▁c ategories",
+ "▁categ ories",
+ "▁categor ies",
+ "▁categorie s",
+ "▁ categories",
+ "cal led",
+ "call ed",
+ "c alled",
+ "▁Sim ilar",
+ "▁g irls",
+ "▁girl s",
+ "▁gir ls",
+ "pe z",
+ "p ez",
+ "▁j oint",
+ "▁jo int",
+ "▁join t",
+ "▁ joint",
+ "ро го",
+ "р ого",
+ "ik en",
+ "ike n",
+ "i ken",
+ "чи на",
+ "чин а",
+ "an cia",
+ "anc ia",
+ "anci a",
+ "▁t ijd",
+ "▁ti jd",
+ "▁R ose",
+ "▁Ro se",
+ "▁Ros e",
+ "▁alg orithms",
+ "▁algorithm s",
+ "▁print ing",
+ "▁prin ting",
+ "ne a",
+ "n ea",
+ "▁exec uting",
+ "▁execut ing",
+ "▁l ambda",
+ "▁ lambda",
+ "▁reg ional",
+ "▁region al",
+ "▁Co pa",
+ "▁Cop a",
+ "F oo",
+ "ph ys",
+ "phy s",
+ "z m",
+ "▁L aur",
+ "▁La ur",
+ "▁Lau r",
+ "▁candid ate",
+ "▁J a",
+ "zy m",
+ "z ym",
+ "Ex ample",
+ "▁s piel",
+ "▁sp iel",
+ "▁ spiel",
+ "▁д ей",
+ "▁де й",
+ "▁ дей",
+ "ne hmen",
+ "neh men",
+ "nehm en",
+ "ke iten",
+ "keit en",
+ "▁с ент",
+ "int ent",
+ "inte nt",
+ ". (",
+ "▁пер вы",
+ "pr om",
+ "pro m",
+ "p rom",
+ "▁n at",
+ "▁na t",
+ "▁ nat",
+ "▁im agine",
+ "▁imag ine",
+ "call back",
+ "com ponents",
+ "component s",
+ "with out",
+ "▁a quest",
+ "▁aqu est",
+ "Su pport",
+ "Supp ort",
+ "▁respons ible",
+ "▁j ego",
+ "▁je go",
+ "l j",
+ "wi ll",
+ "w ill",
+ "le an",
+ "lea n",
+ "el and",
+ "ela nd",
+ "e land",
+ "olog ía",
+ "m c",
+ "Pro xy",
+ "▁o cup",
+ "▁oc up",
+ "▁на ходи",
+ "▁r ub",
+ "▁ru b",
+ "ні в",
+ "н ів",
+ "▁F all",
+ "▁Fa ll",
+ "▁Fal l",
+ "am os",
+ "amo s",
+ "a mos",
+ "▁E p",
+ "en tre",
+ "ent re",
+ "entr e",
+ "fa il",
+ "f ail",
+ "W orld",
+ "▁Ed itor",
+ "▁Edit or",
+ "▁ Editor",
+ "▁ex pos",
+ "▁exp os",
+ "▁f inds",
+ "▁find s",
+ "▁fin ds",
+ "▁C ulture",
+ "▁Cult ure",
+ "▁ Culture",
+ "LE ASE",
+ "▁m ovie",
+ "▁mov ie",
+ "▁mo vie",
+ "▁ movie",
+ "< =",
+ "omet ric",
+ "o metric",
+ "el ing",
+ "eli ng",
+ "elin g",
+ "e ling",
+ "numer able",
+ "ou rd",
+ "our d",
+ "o urd",
+ "▁S ea",
+ "▁Se a",
+ "▁b ild",
+ "▁bi ld",
+ "▁bil d",
+ "▁ bild",
+ "▁о ста",
+ "▁ос та",
+ "▁ост а",
+ "bl o",
+ "b lo",
+ "▁l ose",
+ "▁lo se",
+ "▁los e",
+ "▁ lose",
+ "at eurs",
+ "ate urs",
+ "ateur s",
+ "ou red",
+ "our ed",
+ "oure d",
+ "o ured",
+ "▁B att",
+ "▁Ba tt",
+ "▁Bat t",
+ "() ;\r",
+ "(); \r",
+ "( );\r",
+ "▁p oz",
+ "▁po z",
+ "pos ts",
+ "post s",
+ "pe nd",
+ "pen d",
+ "p end",
+ "cer tain",
+ "cert ain",
+ "c ertain",
+ "ни ком",
+ "ник ом",
+ "J ust",
+ "web kit",
+ "dem ás",
+ "~~ ~~",
+ "▁indic ates",
+ "▁indicate s",
+ "▁p ark",
+ "▁par k",
+ "▁ park",
+ "ri que",
+ "r ique",
+ "vo d",
+ "v od",
+ "▁Ch amp",
+ "▁Cham p",
+ "▁Cha mp",
+ "ft ware",
+ "OP T",
+ "O PT",
+ "dj ango",
+ "d jango",
+ "re lease",
+ "▁ È",
+ "S R",
+ "▁polit ician",
+ "▁r oi",
+ "▁ro i",
+ "at uren",
+ "atur en",
+ "ature n",
+ "atu ren",
+ "▁Deutsch e",
+ "ta gon",
+ "tag on",
+ "t agon",
+ "▁M ov",
+ "▁Mo v",
+ "ob ierno",
+ "obi erno",
+ "▁da ß",
+ "ut her",
+ "uth er",
+ "u ther",
+ "in di",
+ "ind i",
+ "▁Wik ipedia",
+ "▁Wikip edia",
+ "▁Wikiped ia",
+ "▁a nos",
+ "▁an os",
+ "▁ano s",
+ "▁ anos",
+ "▁ob serve",
+ "▁obser ve",
+ "▁observ e",
+ "▁obs erve",
+ "el ly",
+ "ell y",
+ "▁rail way",
+ "at on",
+ "ato n",
+ "a ton",
+ "▁e num",
+ "▁en um",
+ "▁ enum",
+ "hu s",
+ "h us",
+ "▁in hab",
+ "P si",
+ "oir e",
+ "oi re",
+ "o ire",
+ "▁Х о",
+ "▁S pace",
+ "▁Sp ace",
+ "▁ Space",
+ "▁Ар хи",
+ "▁an terior",
+ "▁ante rior",
+ "▁ Ł",
+ "is ons",
+ "ison s",
+ "iso ns",
+ "I l",
+ "▁am éric",
+ "la ps",
+ "lap s",
+ "l aps",
+ "▁B BC",
+ "▁BB C",
+ "QUE ST",
+ "Con stra",
+ "Const ra",
+ "Cons tra",
+ "mon t",
+ "mo nt",
+ "m ont",
+ "ä ft",
+ "▁ä ven",
+ "ub ern",
+ "ube rn",
+ "uber n",
+ "u bern",
+ "< !--",
+ "▁c oding",
+ "▁co ding",
+ "▁cod ing",
+ "the ory",
+ "at hed",
+ "ath ed",
+ "▁Ar be",
+ "▁ш и",
+ "▁ ши",
+ "for Each",
+ "om orphism",
+ "omorph ism",
+ "det ails",
+ "detail s",
+ "ach sen",
+ "in tegr",
+ "int egr",
+ "inte gr",
+ "V or",
+ "Un known",
+ "ace ae",
+ "a ceae",
+ "in ue",
+ "inu e",
+ "es ome",
+ "eso me",
+ "e some",
+ "▁F ir",
+ "ch ain",
+ "cha in",
+ "▁extrem ely",
+ "▁extreme ly",
+ "mult icol",
+ "multi col",
+ "▁Sw ift",
+ "▁address es",
+ "▁addr esses",
+ "hs pace",
+ "h space",
+ "▁Ro ger",
+ "▁Rog er",
+ "▁d essen",
+ "▁des sen",
+ "▁dess en",
+ "▁con sequ",
+ "▁cons equ",
+ "▁conse qu",
+ "ual mente",
+ "▁Pre mier",
+ "▁Prem ier",
+ "▁Re cord",
+ "▁Rec ord",
+ "▁ Record",
+ "▁B ron",
+ "▁Br on",
+ "▁Bro n",
+ "ki r",
+ "k ir",
+ "se x",
+ "s ex",
+ "in tern",
+ "int ern",
+ "inter n",
+ "inte rn",
+ "▁benef it",
+ "▁bene fit",
+ "um en",
+ "ume n",
+ "u men",
+ "▁be coming",
+ "▁bec oming",
+ "▁becom ing",
+ "▁l ig",
+ "▁li g",
+ "▁ lig",
+ "▁pop ula",
+ "▁popul a",
+ "os c",
+ "o sc",
+ "▁c iv",
+ "▁ci v",
+ "▁great est",
+ "▁pro ces",
+ "▁proc es",
+ "] *",
+ "▁ме сто",
+ "▁мест о",
+ "▁' $",
+ "▁ '$",
+ "he ll",
+ "hel l",
+ "h ell",
+ "(\" \\",
+ "( \"\\",
+ "▁n ine",
+ "▁ni ne",
+ "▁nin e",
+ "▁F ac",
+ "▁Fa c",
+ "ul pt",
+ "ulp t",
+ "jo urs",
+ "jou rs",
+ "j ours",
+ "▁C opy",
+ "▁Co py",
+ "▁Cop y",
+ "▁ Copy",
+ "▁activ ities",
+ "▁Dem ocr",
+ "▁Demo cr",
+ "E s",
+ "Su ccess",
+ "▁E sta",
+ "▁Est a",
+ "▁Es ta",
+ "it ul",
+ "itu l",
+ "is ti",
+ "ist i",
+ "▁B ed",
+ "▁Be d",
+ "ja s",
+ "j as",
+ "▁т ем",
+ "▁те м",
+ "▁ тем",
+ "▁H ung",
+ "▁Hu ng",
+ "▁Hun g",
+ "G ame",
+ "▁he av",
+ "onn ées",
+ "▁branch es",
+ "▁bran ches",
+ "bo rg",
+ "bor g",
+ "b org",
+ "▁v l",
+ "▁ vl",
+ "▁slow ly",
+ "F a",
+ "Go ogle",
+ "em i",
+ "e mi",
+ "▁circumst ances",
+ "▁' %",
+ "▁U nd",
+ "▁Un d",
+ "▁ Und",
+ "▁Vict oria",
+ "▁Victor ia",
+ "▁T yp",
+ "▁Ty p",
+ "▁ Typ",
+ "rupt ed",
+ "rup ted",
+ "▁rel ativ",
+ "▁s lo",
+ "▁sl o",
+ "▁p adre",
+ "▁pad re",
+ "▁d aily",
+ "▁da ily",
+ "▁dai ly",
+ "▁or th",
+ "▁ort h",
+ "▁ orth",
+ "чни й",
+ "ч ний",
+ "▁fran zös",
+ "▁t eil",
+ "▁te il",
+ "▁ teil",
+ "▁Se curity",
+ "▁Sec urity",
+ "▁ Security",
+ "or don",
+ "ord on",
+ "ordo n",
+ "▁s weet",
+ "▁swe et",
+ "SI ZE",
+ "▁C el",
+ "▁Ce l",
+ "èt res",
+ "è tres",
+ "om mes",
+ "omm es",
+ "▁с і",
+ "▁ сі",
+ "▁effort s",
+ "ą z",
+ "▁oh ne",
+ "▁South ern",
+ "▁Sou thern",
+ "▁approxim ately",
+ "▁approximate ly",
+ "це н",
+ "ц ен",
+ "(' #",
+ "▁s aving",
+ "▁sa ving",
+ "▁sav ing",
+ "nb sp",
+ "▁trans late",
+ "▁transl ate",
+ "▁ translate",
+ "▁Î n",
+ "mem ber",
+ "m ember",
+ "▁l aws",
+ "▁la ws",
+ "▁law s",
+ "▁ж ен",
+ "▁же н",
+ "▁ жен",
+ "▁си сте",
+ "t c",
+ "> \\",
+ "el te",
+ "elt e",
+ "▁e hem",
+ "▁con trad",
+ "▁cont rad",
+ "▁contr ad",
+ "▁contra d",
+ "▁ру с",
+ "▁р ус",
+ "▁ рус",
+ "ь я",
+ "▁M iddle",
+ "▁ Middle",
+ "qu ip",
+ "qui p",
+ "▁c hez",
+ "▁ch ez",
+ "▁che z",
+ "▁ chez",
+ "Field s",
+ "▁per mit",
+ "▁perm it",
+ "ik el",
+ "ike l",
+ "i kel",
+ "▁w ir",
+ "▁t rial",
+ "▁tr ial",
+ "▁tri al",
+ "▁ver schied",
+ "▁versch ied",
+ "▁ф ев",
+ "▁фе в",
+ "▁m ale",
+ "▁ma le",
+ "▁mal e",
+ "▁ male",
+ "▁я зы",
+ "▁ny el",
+ "ak ter",
+ "akt er",
+ "akte r",
+ "a kter",
+ "▁den omin",
+ "cept or",
+ "cep tor",
+ "▁W at",
+ "▁Wa t",
+ "▁f ino",
+ "▁fin o",
+ "▁fi no",
+ "▁XV III",
+ "▁XVI II",
+ "▁XVII I",
+ "ry ption",
+ "rypt ion",
+ "de sc",
+ "des c",
+ "d esc",
+ "ap a",
+ "a pa",
+ "ле на",
+ "лен а",
+ "л ена",
+ "▁k ol",
+ "▁ko l",
+ "▁ kol",
+ "▁ Є",
+ "▁dep endent",
+ "▁depend ent",
+ "▁ dependent",
+ "▁C ra",
+ "▁Cr a",
+ "▁st orm",
+ "▁stor m",
+ "▁sto rm",
+ "▁Г ер",
+ "▁Ге р",
+ "▁p ipe",
+ "▁pi pe",
+ "▁pip e",
+ "▁ pipe",
+ "▁att ended",
+ "▁attend ed",
+ "▁v ita",
+ "▁vi ta",
+ "▁vit a",
+ "uz ione",
+ "u zione",
+ "cz as",
+ "cza s",
+ "c zas",
+ "on da",
+ "ond a",
+ "▁b old",
+ "▁bo ld",
+ "▁bol d",
+ "▁ bold",
+ "Column s",
+ "ic ió",
+ "ici ó",
+ "i ció",
+ "▁c zę",
+ "▁cz ę",
+ "▁из вест",
+ "▁Cl oud",
+ "▁Clo ud",
+ "▁ Cloud",
+ "▁w arm",
+ "▁war m",
+ "▁wa rm",
+ "▁с ы",
+ "▁ сы",
+ "▁с те",
+ "▁ст е",
+ "▁ сте",
+ "▁produ cer",
+ "▁produce r",
+ "▁Lud wig",
+ "▁Nor thern",
+ "▁North ern",
+ "ł ą",
+ "NS String",
+ "▁H ad",
+ "▁Ha d",
+ "▁И ван",
+ "▁E g",
+ "▁I mp",
+ "▁Im p",
+ "▁ Imp",
+ "ш і",
+ "▁A uch",
+ "▁Au ch",
+ "то к",
+ "т ок",
+ "▁H it",
+ "▁Hi t",
+ "▁qu ien",
+ "▁qui en",
+ "▁de partment",
+ "▁depart ment",
+ "▁erh ielt",
+ "▁u i",
+ "▁ ui",
+ "▁S pr",
+ "▁Sp r",
+ "се р",
+ "с ер",
+ "ou rt",
+ "our t",
+ "o urt",
+ "▁Ste phen",
+ "▁Step hen",
+ "▁Steph en",
+ "te am",
+ "▁z ip",
+ "▁ zip",
+ "▁B ang",
+ "▁Ba ng",
+ "▁Ban g",
+ "▁grow th",
+ "▁j am",
+ "▁ja m",
+ "▁K ais",
+ "▁Ka is",
+ "b matrix",
+ "▁As ia",
+ "▁rég ion",
+ "= /",
+ "▁Pac ific",
+ "▁author ity",
+ "▁# [",
+ "та ми",
+ "там и",
+ "▁every one",
+ "▁att end",
+ "▁atte nd",
+ "▁ attend",
+ "▁tim estamp",
+ "▁ timestamp",
+ "▁t ries",
+ "▁tr ies",
+ "▁tri es",
+ "▁f f",
+ "▁ ff",
+ "ше й",
+ "ш ей",
+ "▁develop ing",
+ "ol t",
+ "o lt",
+ "up s",
+ "u ps",
+ "▁moment o",
+ "▁mom ento",
+ "▁S ain",
+ "▁Sa in",
+ "Te rm",
+ "T erm",
+ "▁c elle",
+ "▁ce lle",
+ "▁cell e",
+ "▁cel le",
+ "G R",
+ "Mo use",
+ "M ouse",
+ "▁челов ек",
+ "▁челове к",
+ "▁Col lection",
+ "▁Coll ection",
+ "▁Collect ion",
+ "▁ Collection",
+ "ât re",
+ "â tre",
+ "▁W rite",
+ "▁Writ e",
+ "▁ Write",
+ "▁P om",
+ "▁Po m",
+ "[ -",
+ "Ca m",
+ "C am",
+ "▁loc ations",
+ "▁location s",
+ "▁J son",
+ "▁ Json",
+ "el led",
+ "ell ed",
+ "elle d",
+ "select or",
+ "sel ector",
+ "re peat",
+ "ct ors",
+ "ctor s",
+ "ot te",
+ "ott e",
+ "o tte",
+ "ви зи",
+ "änd e",
+ "än de",
+ "ä nde",
+ "▁ach ieved",
+ "▁achieve d",
+ "▁achiev ed",
+ "▁main ly",
+ "____ ____",
+ "! )",
+ "▁явля ется",
+ "▁c ities",
+ "▁ci ties",
+ "▁cit ies",
+ "sing le",
+ "sin gle",
+ "г ре",
+ "▁P ak",
+ "▁Pa k",
+ "▁allow ing",
+ "▁allo wing",
+ "fer red",
+ "▁а пре",
+ "хо дя",
+ "ход я",
+ "▁brow sers",
+ "▁browser s",
+ "▁es crit",
+ "▁esc rit",
+ "▁escri t",
+ "▁mount ain",
+ "▁network s",
+ "▁net works",
+ "ki nd",
+ "kin d",
+ "k ind",
+ "li ver",
+ "live r",
+ "liv er",
+ "l iver",
+ "▁cl osing",
+ "▁clos ing",
+ "▁clo sing",
+ "▁sk ip",
+ "▁ski p",
+ "▁ skip",
+ "ú t",
+ "▁d uration",
+ "▁dur ation",
+ "▁ duration",
+ "ét ait",
+ "éta it",
+ "é tait",
+ "▁s cr",
+ "▁sc r",
+ "▁ scr",
+ "B B",
+ "ór ia",
+ "ó ria",
+ "▁K ultur",
+ "▁Kult ur",
+ "▁output s",
+ "multi column",
+ "multicol umn",
+ "▁bel ongs",
+ "▁belong s",
+ "fe ature",
+ "uc ky",
+ "uck y",
+ "▁j uli",
+ "▁ju li",
+ "▁jul i",
+ "▁рай она",
+ "▁райо на",
+ "▁район а",
+ "з во",
+ "fact ory",
+ "factor y",
+ "f actory",
+ "Fun c",
+ "F unc",
+ "▁ut ter",
+ "▁ utter",
+ "▁TO DO",
+ "▁o bt",
+ "▁ob t",
+ "ateg ories",
+ "ategor ies",
+ "▁com bine",
+ "▁comb ine",
+ "▁combin e",
+ "▁W all",
+ "▁Wal l",
+ "▁Wa ll",
+ "▁under lying",
+ "ar ono",
+ "aron o",
+ "aro no",
+ "▁P rote",
+ "▁Pro te",
+ "▁Pr ote",
+ "c ów",
+ "st an",
+ "sta n",
+ "s tan",
+ "▁G ew",
+ "▁Ge w",
+ "▁opt imal",
+ "▁optim al",
+ "▁Archiv link",
+ "▁S cript",
+ "▁ Script",
+ "▁destroy ed",
+ "х е",
+ "▁Fire fox",
+ "▁s ole",
+ "▁so le",
+ "▁sol e",
+ "▁ sole",
+ "La yer",
+ "L ayer",
+ "т ку",
+ "▁st ores",
+ "▁stor es",
+ "▁store s",
+ "▁sto res",
+ "▁dis plays",
+ "▁display s",
+ "is hing",
+ "ish ing",
+ "ishi ng",
+ "▁о ст",
+ "▁ос т",
+ "▁inst ant",
+ "▁el ő",
+ "▁habit antes",
+ "▁Ein wo",
+ "▁a li",
+ "▁al i",
+ "▁ ali",
+ "▁ER ROR",
+ "▁ERR OR",
+ "▁ ERROR",
+ "▁a head",
+ "▁ah ead",
+ "▁go als",
+ "▁goal s",
+ "▁m ár",
+ "▁má r",
+ "▁s ą",
+ "▁m art",
+ "▁ma rt",
+ "▁mar t",
+ "▁ mart",
+ "мини стра",
+ "F r",
+ "▁V illa",
+ "▁Vill a",
+ "▁Vi lla",
+ "▁Vil la",
+ "▁M arc",
+ "▁Mar c",
+ "▁Ma rc",
+ "ro py",
+ "rop y",
+ "r opy",
+ "ag ram",
+ "agr am",
+ "a gram",
+ "ha pe",
+ "h ape",
+ "ме й",
+ "м ей",
+ "▁A L",
+ "▁ AL",
+ "▁conne xes",
+ "▁En tre",
+ "▁Ent re",
+ "St ep",
+ "Ste p",
+ "лі в",
+ "л ів",
+ "▁De ath",
+ "▁r ise",
+ "▁ris e",
+ "▁ri se",
+ "▁f os",
+ "▁fo s",
+ "▁l ev",
+ "▁le v",
+ "▁ lev",
+ "ga be",
+ "g abe",
+ "▁b roke",
+ "▁br oke",
+ "▁bro ke",
+ "product s",
+ "▁m edi",
+ "▁me di",
+ "▁med i",
+ "▁ medi",
+ "▁dis pon",
+ "▁disp on",
+ "Pack age",
+ "P ackage",
+ "Image View",
+ "▁N ag",
+ "▁Na g",
+ "uj ą",
+ "u ją",
+ "W ord",
+ "▁k ole",
+ "▁ko le",
+ "▁kol e",
+ "ße r",
+ "ß er",
+ ")` .",
+ ") `.",
+ "▁r ol",
+ "▁ro l",
+ "▁ rol",
+ "▁ í",
+ "те й",
+ "т ей",
+ "Pro gress",
+ "be an",
+ "▁s empre",
+ "▁sem pre",
+ "State ment",
+ "Stat ement",
+ "UP DATE",
+ "▁mond iale",
+ "▁w rapper",
+ "▁wr apper",
+ "▁wra pper",
+ "▁wrap per",
+ "▁ wrapper",
+ "▁C hart",
+ "▁Ch art",
+ "▁Char t",
+ "▁Cha rt",
+ "▁ Chart",
+ "▁on Click",
+ "че ння",
+ "чен ня",
+ "LO G",
+ "some thing",
+ "som ething",
+ "s omething",
+ "▁IN SERT",
+ "▁ INSERT",
+ "ще ния",
+ "ue t",
+ "u et",
+ "wer p",
+ "we rp",
+ "ro und",
+ "rou nd",
+ "r ound",
+ "ic hen",
+ "ich en",
+ "iche n",
+ "i chen",
+ "▁X VI",
+ "▁XV I",
+ "з ни",
+ "▁ave va",
+ "▁St ore",
+ "▁Sto re",
+ "▁ Store",
+ "▁x s",
+ "▁ xs",
+ "ra cht",
+ "rac ht",
+ "rach t",
+ "r acht",
+ "sc ar",
+ "s car",
+ "▁op era",
+ "▁oper a",
+ "▁ opera",
+ "▁deg rees",
+ "▁degree s",
+ "▁cit iz",
+ "äs ident",
+ "▁class ical",
+ "▁classic al",
+ "▁Jer sey",
+ "▁er sch",
+ "▁ers ch",
+ "▁ ersch",
+ "▁treat ment",
+ "▁насе ље",
+ "н ня",
+ "▁bo ost",
+ "▁ boost",
+ "am ount",
+ "amo unt",
+ "a mount",
+ "▁со зда",
+ "ér ieur",
+ "érie ur",
+ "éri eur",
+ "▁t elling",
+ "▁tell ing",
+ "▁tel ling",
+ "Ha s",
+ "H as",
+ "▁in iti",
+ "▁init i",
+ "▁П и",
+ "ev al",
+ "e val",
+ "▁M atch",
+ "▁Mat ch",
+ "▁ Match",
+ "▁cor re",
+ "▁corr e",
+ "Point er",
+ "Po inter",
+ "▁pass es",
+ "▁passe s",
+ "comp any",
+ "▁а н",
+ "▁ ан",
+ "ach es",
+ "ac hes",
+ "ache s",
+ "a ches",
+ "▁sig lo",
+ "не м",
+ "н ем",
+ "▁ex change",
+ "▁ exchange",
+ "ci to",
+ "cit o",
+ "c ito",
+ "▁B ab",
+ "▁Ba b",
+ "Do c",
+ "D oc",
+ "ze ś",
+ "▁на род",
+ "▁ народ",
+ "▁conf lict",
+ "▁conflic t",
+ "▁confl ict",
+ "▁nov ember",
+ "ea u",
+ "e au",
+ "ö v",
+ "▁H ub",
+ "▁Hu b",
+ "▁ Hub",
+ "▁p oco",
+ "▁po co",
+ "▁poc o",
+ "en sa",
+ "ens a",
+ "sch ließ",
+ "lass e",
+ "las se",
+ "l asse",
+ "data s",
+ "dat as",
+ "▁с ти",
+ "▁ст и",
+ "▁ сти",
+ "un ivers",
+ "uni vers",
+ "ek s",
+ "e ks",
+ "▁C ho",
+ "▁Ch o",
+ "▁ Cho",
+ "▁c ô",
+ "▁( .",
+ "▁ (.",
+ "ew nę",
+ "▁Ch ief",
+ "▁Chi ef",
+ "▁ch ef",
+ "▁che f",
+ "▁у прав",
+ "ul i",
+ "u li",
+ "▁' ''",
+ "▁'' '",
+ "▁ '''",
+ "nap shot",
+ "▁re lac",
+ "▁rel ac",
+ "▁rela c",
+ "ég e",
+ "é ge",
+ "w t",
+ "we nd",
+ "wen d",
+ "w end",
+ "os ing",
+ "osi ng",
+ "o sing",
+ "▁ha cer",
+ "▁hace r",
+ "▁ф ран",
+ "au tres",
+ "aut res",
+ "autre s",
+ "▁f ils",
+ "▁fil s",
+ "▁fi ls",
+ "er ed",
+ "ere d",
+ "e red",
+ "▁По силання",
+ "▁th erm",
+ "▁the rm",
+ "▁ther m",
+ "ер жа",
+ "su ch",
+ "s uch",
+ "▁i hren",
+ "▁ih ren",
+ "▁ihr en",
+ "▁ihre n",
+ "▁en contr",
+ "▁l ots",
+ "▁lo ts",
+ "▁lot s",
+ "lo go",
+ "log o",
+ "l ogo",
+ "▁W i",
+ "/ (",
+ "ш ње",
+ "DA TA",
+ "DAT A",
+ "D ATA",
+ "▁P layer",
+ "▁Pl ayer",
+ "▁Play er",
+ "▁Pla yer",
+ "▁ Player",
+ "▁Leip zig",
+ "▁rel atives",
+ "▁relative s",
+ "▁relativ es",
+ "ре в",
+ "р ев",
+ "▁new sp",
+ "▁news p",
+ "? ,",
+ "▁St utt",
+ "▁Stu tt",
+ "▁d ual",
+ "▁du al",
+ "▁compan ies",
+ "▁z am",
+ "▁za m",
+ "put ation",
+ "▁in equality",
+ "▁t rem",
+ "▁tr em",
+ "▁tre m",
+ "hi ps",
+ "hip s",
+ "h ips",
+ "an ch",
+ "anc h",
+ "▁ Ż",
+ "бур г",
+ "▁cop ies",
+ "da sh",
+ "das h",
+ "d ash",
+ "во р",
+ "в ор",
+ "spiel er",
+ "s pieler",
+ "▁Re volution",
+ "▁Revol ution",
+ "es ty",
+ "est y",
+ "e sty",
+ "▁j unto",
+ "▁jun to",
+ "▁junt o",
+ "▁Ind eed",
+ "ok al",
+ "oka l",
+ "o kal",
+ "ctr ine",
+ "▁F ord",
+ "▁For d",
+ "▁Fo rd",
+ "▁C REATE",
+ "▁ CREATE",
+ "▁w alls",
+ "▁wall s",
+ "▁wal ls",
+ "▁a ute",
+ "▁au te",
+ "▁aut e",
+ "S U",
+ "wh y",
+ "w hy",
+ "plement ation",
+ "ro ut",
+ "rou t",
+ "r out",
+ "Mat rix",
+ "▁s ad",
+ "▁sa d",
+ "ан а",
+ "а на",
+ "▁P ic",
+ "▁Pi c",
+ ". “",
+ "▁A C",
+ "▁ AC",
+ "▁F est",
+ "▁Fe st",
+ "▁des ktop",
+ "▁ desktop",
+ "▁P ay",
+ "▁Pa y",
+ "▁ Pay",
+ "ome times",
+ "omet imes",
+ "▁T ak",
+ "▁Ta k",
+ "ра б",
+ "▁S ever",
+ "▁Se ver",
+ "▁nor thern",
+ "▁north ern",
+ "an ter",
+ "ant er",
+ "ante r",
+ "▁Mod ern",
+ "▁Mo dern",
+ "▁Mode rn",
+ "wa l",
+ "w al",
+ "{ \r",
+ "on line",
+ "ö k",
+ "▁brit ann",
+ "$ _",
+ "▁j ar",
+ "▁ja r",
+ "▁ jar",
+ "T L",
+ "xx xx",
+ "xxx x",
+ "x xxx",
+ "mer ge",
+ "▁N amen",
+ "▁Name n",
+ "▁Na men",
+ "▁Nam en",
+ "▁K EY",
+ "▁ KEY",
+ "▁re fers",
+ "▁ref ers",
+ "▁refer s",
+ "▁h in",
+ "▁hi n",
+ "▁ hin",
+ "▁Vol ks",
+ "▁Volk s",
+ "st eller",
+ "stell er",
+ "stelle r",
+ "vi ation",
+ "via tion",
+ "v iation",
+ "on io",
+ "oni o",
+ "o nio",
+ "ight er",
+ "igh ter",
+ "Com pat",
+ "Comp at",
+ "▁C E",
+ "▁ CE",
+ "▁p ró",
+ "▁pr ó",
+ "▁encuent ra",
+ "the orem",
+ "▁pub li",
+ "▁Develop ment",
+ "н д",
+ "▁r os",
+ "▁ro s",
+ "▁ ros",
+ "▁s hr",
+ "▁sh r",
+ "se au",
+ "s eau",
+ "▁gener ating",
+ "▁gene rating",
+ "▁difficult y",
+ "▁Ex press",
+ "▁Exp ress",
+ "▁ Express",
+ "Al ignment",
+ "de utsch",
+ "▁Вла ди",
+ "▁sugg ests",
+ "▁suggest s",
+ "▁Famil y",
+ "▁Fam ily",
+ "▁ Family",
+ "bb i",
+ "b bi",
+ "]) .",
+ "] ).",
+ "st aw",
+ "sta w",
+ "▁pres idente",
+ "▁president e",
+ "▁presiden te",
+ "▁st esso",
+ "in x",
+ "i nx",
+ "set up",
+ "▁con form",
+ "▁conf orm",
+ "▁f ro",
+ "▁fr o",
+ "=\\ \"",
+ "= \\\"",
+ "▁d å",
+ "ic iones",
+ "ici ones",
+ "icio nes",
+ "icion es",
+ "i ciones",
+ "▁e volution",
+ "▁evol ution",
+ "pr ote",
+ "pro te",
+ "p rote",
+ "▁pr ints",
+ "▁print s",
+ "▁prin ts",
+ "▁P ont",
+ "▁Po nt",
+ "▁Pon t",
+ "▁conf usion",
+ "▁ Й",
+ "▁d ello",
+ "▁del lo",
+ "▁dell o",
+ "▁man if",
+ "Def inition",
+ "ár a",
+ "á ra",
+ "ma ls",
+ "mal s",
+ "m als",
+ "▁s ale",
+ "▁sa le",
+ "▁sal e",
+ "▁drop down",
+ "▁ dropdown",
+ "Ch ain",
+ "Amer ican",
+ "America n",
+ "▁m k",
+ "▁ mk",
+ "▁B ez",
+ "▁Be z",
+ "▁F ue",
+ "▁Fu e",
+ "▁N E",
+ "▁ NE",
+ "гра фи",
+ "граф и",
+ "doc ker",
+ "do cker",
+ "d ocker",
+ "▁^ {",
+ "▁ ^{",
+ "As sert",
+ "Ass ert",
+ "▁hor izontal",
+ "▁horizon tal",
+ "▁ horizontal",
+ "(@ \"",
+ "( @\"",
+ "▁д ву",
+ "pro xy",
+ "U ri",
+ "gen cy",
+ "g ency",
+ "▁\" [",
+ "▁Q t",
+ "▁ Qt",
+ "▁N ames",
+ "▁Name s",
+ "▁Na mes",
+ "▁Nam es",
+ "▁ Names",
+ "▁evalu ate",
+ "▁eval uate",
+ "! /",
+ "▁ein ges",
+ "▁eing es",
+ "▁syn th",
+ "▁sy nth",
+ "▁You Tube",
+ "▁turn ing",
+ "▁tur ning",
+ "▁E ric",
+ "▁Er ic",
+ "▁б ли",
+ "▁ бли",
+ "▁k lub",
+ "▁kl ub",
+ "pl orer",
+ "▁s ports",
+ "▁sport s",
+ "▁s ia",
+ "▁si a",
+ "о ш",
+ "▁d ai",
+ "▁da i",
+ "▁e urope",
+ "▁europ e",
+ "▁euro pe",
+ "ic ians",
+ "ici ans",
+ "ician s",
+ "icia ns",
+ "ings områ",
+ "▁d re",
+ "▁dr e",
+ "▁work around",
+ "▁s uit",
+ "▁su it",
+ "▁ suit",
+ "amb igu",
+ "▁quant ity",
+ "▁ quantity",
+ "▁seg undo",
+ "Sym bol",
+ "S ymbol",
+ "▁m oral",
+ "▁mo ral",
+ "▁mor al",
+ "Ch art",
+ "Char t",
+ "C hart",
+ "▁da mit",
+ "▁dam it",
+ "▁attempt s",
+ "▁d onn",
+ "▁do nn",
+ "▁don n",
+ "jo s",
+ "j os",
+ "▁e re",
+ "▁er e",
+ "▁ ere",
+ "▁hom me",
+ "▁ homme",
+ "si mp",
+ "sim p",
+ "s imp",
+ "rypt ed",
+ "▁act s",
+ "▁ac ts",
+ "inner HTML",
+ "▁tourn ament",
+ "▁s ky",
+ "▁sk y",
+ "▁ sky",
+ "Time r",
+ "Tim er",
+ "T imer",
+ "▁mill ions",
+ "▁million s",
+ "^ +",
+ "ag ent",
+ "age nt",
+ "agen t",
+ "a gent",
+ "') );",
+ "')) ;",
+ "' ));",
+ "▁o st",
+ "▁os t",
+ "▁ ost",
+ "▁g la",
+ "▁gl a",
+ "▁по мо",
+ "▁f ün",
+ "ст вом",
+ "ств ом",
+ "ство м",
+ "ewnę trz",
+ "▁Mé xico",
+ "▁l ub",
+ "▁lu b",
+ "▁ lub",
+ "▁É d",
+ "if ik",
+ "ifi k",
+ "i fik",
+ "че ский",
+ "▁im mer",
+ "▁imm er",
+ "▁ immer",
+ "en sen",
+ "ens en",
+ "ense n",
+ "an ny",
+ "ann y",
+ "in line",
+ "▁g over",
+ "▁go ver",
+ "au c",
+ "a uc",
+ "▁re pre",
+ "▁rep re",
+ "▁repr e",
+ "▁histor ia",
+ "▁hist oria",
+ "A g",
+ "▁p lt",
+ "▁pl t",
+ "▁Pr inci",
+ "▁Prin ci",
+ "im eter",
+ "ime ter",
+ "imet er",
+ "i meter",
+ "ő s",
+ "š e",
+ "▁U E",
+ "▁ UE",
+ "Equ als",
+ "Equal s",
+ "Eq uals",
+ "Dis patch",
+ "le gen",
+ "leg en",
+ "lege n",
+ "l egen",
+ "ла зи",
+ "чно й",
+ "ч ной",
+ "▁st ell",
+ "▁ste ll",
+ "▁ stell",
+ "ń st",
+ "▁c ri",
+ "▁cr i",
+ "▁ cri",
+ "▁In dep",
+ "▁Ind ep",
+ "è de",
+ "}\\ )",
+ "} \\)",
+ "▁w yst",
+ "▁wy st",
+ "▁wys t",
+ "▁fig ured",
+ "▁figure d",
+ "▁figur ed",
+ "AT CH",
+ "éb en",
+ "é ben",
+ "la cht",
+ "lac ht",
+ "lach t",
+ "l acht",
+ "▁succeed ed",
+ "gr y",
+ "g ry",
+ "▁p ret",
+ "▁pr et",
+ "▁pre t",
+ "▁ pret",
+ "▁S af",
+ "▁Sa f",
+ "▁\" );",
+ "▁\") ;",
+ "▁ \");",
+ "e h",
+ "▁offic iel",
+ "▁offici el",
+ "краї н",
+ "wi nd",
+ "win d",
+ "w ind",
+ "▁sc atter",
+ "▁F ox",
+ "▁Fo x",
+ "ic ious",
+ "ici ous",
+ "icio us",
+ "i cious",
+ "Man y",
+ "Ma ny",
+ "M any",
+ "up er",
+ "u per",
+ "▁Con vert",
+ "▁ Convert",
+ "st erd",
+ "ste rd",
+ "ster d",
+ "▁St ein",
+ "▁Ste in",
+ "▁О т",
+ "}^ {(",
+ "}^{ (",
+ "} ^{(",
+ "bet ween",
+ "hi re",
+ "h ire",
+ "▁on Create",
+ "▁ onCreate",
+ "; ",
+ "b ably",
+ "S Y",
+ "mo t",
+ "m ot",
+ "▁D ire",
+ "▁Di re",
+ "▁Dir e",
+ "itect ure",
+ "то й",
+ "▁co ordinate",
+ "▁coordin ate",
+ "▁coord inate",
+ "▁ coordinate",
+ "(\" #",
+ "▁s üd",
+ "O B",
+ "▁m orte",
+ "▁mor te",
+ "▁mort e",
+ "▁we ather",
+ "▁h ely",
+ "▁he ly",
+ "▁hel y",
+ "▁ hely",
+ "▁priv ile",
+ "RE LEASE",
+ "at el",
+ "ate l",
+ "a tel",
+ "▁recogn ized",
+ "▁recognize d",
+ "▁Th ough",
+ "сси й",
+ "mem ory",
+ "▁comp ilation",
+ "bit s",
+ "bi ts",
+ "b its",
+ "▁w ed",
+ "▁we d",
+ "▁ wed",
+ "}} _{",
+ "}}_ {",
+ "} }_{",
+ "▁G UI",
+ "п ня",
+ "▁sou thern",
+ "▁south ern",
+ "▁h ay",
+ "▁ha y",
+ "ov ić",
+ "ovi ć",
+ "o vić",
+ "la uf",
+ "lau f",
+ "l auf",
+ "▁E L",
+ "▁ EL",
+ "▁F ull",
+ "▁Fu ll",
+ "▁Ful l",
+ "▁ Full",
+ "▁Ham burg",
+ "▁Hamb urg",
+ "▁M ittel",
+ "▁Mit tel",
+ "▁Mitte l",
+ "▁Mitt el",
+ "D U",
+ "appro x",
+ "H S",
+ "▁про це",
+ "▁mag azine",
+ "▁M ig",
+ "▁Mi g",
+ "▁click ing",
+ "en tr",
+ "ent r",
+ "▁au tre",
+ "▁aut re",
+ "▁ autre",
+ "▁t é",
+ "▁ té",
+ "▁h á",
+ "▁ há",
+ "ст ы",
+ "с ты",
+ "▁M A",
+ "▁ MA",
+ "ap py",
+ "app y",
+ "a ppy",
+ "st ví",
+ "▁se lon",
+ "▁sel on",
+ "▁g ek",
+ "▁ge k",
+ "▁S l",
+ "▁ Sl",
+ "fr astr",
+ "fra str",
+ "Li b",
+ "L ib",
+ "▁Д у",
+ "▁f acing",
+ "▁fa cing",
+ "▁fac ing",
+ "▁с тар",
+ "▁ст ар",
+ "▁ста р",
+ "▁D utch",
+ "at ar",
+ "ata r",
+ "a tar",
+ "▁ke eps",
+ "▁keep s",
+ "▁Pat rick",
+ "▁Patri ck",
+ "il io",
+ "ili o",
+ "i lio",
+ "▁v ig",
+ "▁vi g",
+ "тв а",
+ "т ва",
+ "▁Feder al",
+ "▁Fed eral",
+ "▁par agraph",
+ "▁para graph",
+ "▁ paragraph",
+ "▁inter action",
+ "▁inte raction",
+ "▁interact ion",
+ "▁occ as",
+ "▁oc cas",
+ "▁I ran",
+ "▁Ir an",
+ "▁Ira n",
+ "▁machine s",
+ "▁mach ines",
+ "(( )",
+ "( ()",
+ "ur ies",
+ "uri es",
+ "u ries",
+ "▁ро ди",
+ "▁род и",
+ "▁ роди",
+ "▁а мерикан",
+ "up p",
+ "u pp",
+ "▁i ce",
+ "▁ic e",
+ "▁ ice",
+ "▁S ay",
+ "▁Sa y",
+ "▁s ail",
+ "▁sa il",
+ "▁B egin",
+ "▁Be gin",
+ "▁Beg in",
+ "▁ Begin",
+ "fi co",
+ "fic o",
+ "f ico",
+ "og a",
+ "o ga",
+ "▁d esar",
+ "▁des ar",
+ "▁d v",
+ "▁ра ди",
+ "oh en",
+ "o hen",
+ "er ei",
+ "ere i",
+ "e rei",
+ "án ak",
+ "á nak",
+ "▁d aar",
+ "▁da ar",
+ "if iers",
+ "ifier s",
+ "ifi ers",
+ "ifie rs",
+ "▁th ee",
+ "▁the e",
+ "▁by la",
+ "▁byl a",
+ "ва ла",
+ "вал а",
+ "в ала",
+ "an dro",
+ "and ro",
+ "andr o",
+ "▁м оло",
+ "▁мо ло",
+ "▁tot ally",
+ "▁total ly",
+ "io m",
+ "i om",
+ "▁a er",
+ "ns ylvan",
+ "▁cor ps",
+ "▁tre ated",
+ "▁treat ed",
+ "▁com une",
+ "▁comun e",
+ "M ich",
+ "vo ice",
+ "pg f",
+ "▁a nx",
+ "▁an x",
+ "▁Phil ip",
+ "▁Phili p",
+ "▁e k",
+ "▁ ek",
+ "▁Men schen",
+ "▁Mens chen",
+ "▁d ere",
+ "▁de re",
+ "▁der e",
+ "▁per met",
+ "▁perm et",
+ "Ma il",
+ "M ail",
+ "▁V é",
+ "en ted",
+ "ent ed",
+ "ente d",
+ "▁b unch",
+ "▁P iet",
+ "▁Pi et",
+ "▁Pie t",
+ "att ach",
+ "atta ch",
+ "▁p orte",
+ "▁por te",
+ "▁port e",
+ "▁ porte",
+ "да т",
+ "д ат",
+ "▁Brit ain",
+ "Enc oding",
+ "▁` <",
+ "Sp ace",
+ "S pace",
+ "▁r ap",
+ "▁ra p",
+ "▁ rap",
+ "▁pop ul",
+ "fl oor",
+ "f loor",
+ "spec ific",
+ "cle an",
+ "c lean",
+ "▁con qu",
+ "f b",
+ "▁introdu ce",
+ "▁Ent ity",
+ "▁ Entity",
+ "▁er folg",
+ "▁erf olg",
+ "at ol",
+ "ato l",
+ "a tol",
+ "ient os",
+ "iento s",
+ "ки педи",
+ "▁U t",
+ "▁б ри",
+ "▁ бри",
+ "ed uler",
+ "edu ler",
+ "edule r",
+ "▁conc entr",
+ "▁concent r",
+ "▁c her",
+ "▁ch er",
+ "▁che r",
+ "▁ cher",
+ "▁up grade",
+ "▁upgrad e",
+ "▁p ictures",
+ "▁picture s",
+ "▁Famil ie",
+ "M us",
+ "Lo ok",
+ "L ook",
+ "▁e ran",
+ "▁er an",
+ "▁era n",
+ "▁g ram",
+ "▁gr am",
+ "▁gra m",
+ "▁ gram",
+ "▁W o",
+ "np m",
+ "n pm",
+ "▁Sal v",
+ "▁Sa lv",
+ "▁c d",
+ "▁ cd",
+ "▁В ы",
+ "wa hl",
+ "w ahl",
+ "tr ain",
+ "tra in",
+ "t rain",
+ "ch em",
+ "che m",
+ "c hem",
+ "▁P il",
+ "▁Pi l",
+ "▁Con nect",
+ "▁ Connect",
+ "č e",
+ "▁h ast",
+ "▁ha st",
+ "▁has t",
+ "▁Mult i",
+ "▁Mul ti",
+ "▁ Multi",
+ "at ta",
+ "att a",
+ "a tta",
+ "▁S ound",
+ "▁So und",
+ "▁Sou nd",
+ "▁ Sound",
+ "sol ute",
+ "▁qu ote",
+ "▁quot e",
+ "▁ quote",
+ "▁o bst",
+ "▁ob st",
+ "▁obs t",
+ "cc iones",
+ "ccion es",
+ "c ciones",
+ "ib ly",
+ "▁b rand",
+ "▁br and",
+ "▁bra nd",
+ "▁bran d",
+ "▁ brand",
+ "▁convers ation",
+ "▁to utes",
+ "▁tout es",
+ "▁tou tes",
+ "▁toute s",
+ "▁R ub",
+ "▁Ru b",
+ "ie nia",
+ "ien ia",
+ "i enia",
+ "ir it",
+ "iri t",
+ "i rit",
+ "▁А нд",
+ "▁Ан д",
+ "edu led",
+ "edule d",
+ "▁T otal",
+ "▁To tal",
+ "▁Tot al",
+ "▁ Total",
+ "Di g",
+ "D ig",
+ "er em",
+ "ere m",
+ "e rem",
+ "▁s ki",
+ "▁sk i",
+ "▁ ski",
+ "De st",
+ "Des t",
+ "D est",
+ "Y Y",
+ "е ди",
+ "al y",
+ "a ly",
+ "▁back end",
+ "▁ backend",
+ "ul us",
+ "ulu s",
+ "u lus",
+ "▁feature d",
+ "▁person n",
+ "▁pers onn",
+ "▁sc hon",
+ "▁sch on",
+ "tr ace",
+ "tra ce",
+ "t race",
+ "▁I DE",
+ "▁ID E",
+ "▁ IDE",
+ "á j",
+ "▁anim als",
+ "▁animal s",
+ "▁ani mals",
+ "▁s now",
+ "▁sn ow",
+ "uv e",
+ "u ve",
+ "uer to",
+ "▁d rew",
+ "▁dr ew",
+ "▁dre w",
+ "▁Ye ah",
+ "▁S v",
+ "\\, \\",
+ "\\ ,\\",
+ "▁S erie",
+ "▁Se rie",
+ "▁Ser ie",
+ "▁second o",
+ "▁sec ondo",
+ "▁Leb ens",
+ "▁Leben s",
+ "▁acc ord",
+ "▁ac cord",
+ "▁C et",
+ "▁Ce t",
+ "er ade",
+ "era de",
+ "e rade",
+ "▁desp ite",
+ "▁C arlo",
+ "▁Car lo",
+ "▁Carl o",
+ "▁z ewnętrz",
+ "▁l ista",
+ "▁li sta",
+ "▁list a",
+ "▁ lista",
+ "ni co",
+ "nic o",
+ "n ico",
+ "▁Corpor ation",
+ "vs pace",
+ "v space",
+ "▁вой ны",
+ "▁st ands",
+ "▁stand s",
+ "▁stan ds",
+ "▁wor se",
+ "▁sim ult",
+ "▁si mult",
+ "▁pract ical",
+ "CO L",
+ "C OL",
+ "ch anged",
+ "change d",
+ "chan ged",
+ "▁Исто рия",
+ "б ри",
+ "in do",
+ "ind o",
+ "▁Lew is",
+ "▁pattern s",
+ "if ica",
+ "ific a",
+ "ifi ca",
+ "i fica",
+ "▁s mart",
+ "▁sm art",
+ "▁concern ed",
+ "ți i",
+ "ț ii",
+ "▁H ello",
+ "▁Hel lo",
+ "▁Hell o",
+ "▁ Hello",
+ "re ll",
+ "rel l",
+ "r ell",
+ "▁L ex",
+ "▁Le x",
+ "▁в то",
+ "▁cond itional",
+ "▁condition al",
+ "ot ted",
+ "ott ed",
+ "otte d",
+ "▁sh oot",
+ "▁sho ot",
+ "▁W ed",
+ "▁We d",
+ "▁мар та",
+ "au d",
+ "a ud",
+ "▁an te",
+ "▁ant e",
+ "▁ ante",
+ "ien tras",
+ "ient ras",
+ "▁p apers",
+ "▁pa pers",
+ "▁pap ers",
+ "▁paper s",
+ "▁port ug",
+ "▁Man agement",
+ "▁ Management",
+ "▁exerc ise",
+ "▁Begr iff",
+ "com mit",
+ "comm it",
+ "▁render ing",
+ "▁rend ering",
+ "▁rende ring",
+ "▁c zas",
+ "▁cz as",
+ "▁ czas",
+ "Dr op",
+ "D rop",
+ "er g",
+ "e rg",
+ "▁m ul",
+ "▁mu l",
+ "▁ mul",
+ "▁T an",
+ "▁Ta n",
+ "ie ro",
+ "ier o",
+ "i ero",
+ "▁loc ale",
+ "▁local e",
+ "▁ locale",
+ "▁in aug",
+ "du mp",
+ "d ump",
+ "ци й",
+ "▁symbol s",
+ "in ta",
+ "int a",
+ "▁aw arded",
+ "▁award ed",
+ "▁s ust",
+ "▁su st",
+ "▁sus t",
+ "▁S end",
+ "▁Se nd",
+ "▁Sen d",
+ "▁ Send",
+ "ї в",
+ "Re st",
+ "Res t",
+ "R est",
+ "zt en",
+ "zte n",
+ "z ten",
+ "ли м",
+ "л им",
+ "ri val",
+ "riv al",
+ "r ival",
+ "PO RT",
+ "P ORT",
+ "öl ker",
+ "im ately",
+ "imate ly",
+ "imat ely",
+ "ig te",
+ "igt e",
+ "ч ных",
+ "▁ter ra",
+ "▁ terra",
+ "ög lich",
+ "▁H om",
+ "▁Ho m",
+ "▁ Hom",
+ "▁h ex",
+ "▁he x",
+ "▁ hex",
+ "do ne",
+ "don e",
+ "d one",
+ "am ps",
+ "amp s",
+ "▁c et",
+ "▁ce t",
+ "PR E",
+ "P RE",
+ "ös t",
+ "ö st",
+ "▁fem me",
+ "Se lection",
+ "Select ion",
+ "▁z aw",
+ "▁za w",
+ "sp r",
+ "s pr",
+ "▁horse s",
+ "▁hors es",
+ "▁s nap",
+ "▁sn ap",
+ "Text Box",
+ "▁E clipse",
+ "ul le",
+ "ull e",
+ "u lle",
+ "ow ym",
+ "owy m",
+ "▁c omer",
+ "▁com er",
+ "▁co mer",
+ "▁come r",
+ "ne cess",
+ "co ok",
+ "c ook",
+ "en ger",
+ "eng er",
+ "-- >",
+ "- ->",
+ "▁p ří",
+ "▁př í",
+ "pan das",
+ "p andas",
+ "▁P lus",
+ "▁Pl us",
+ "▁ Plus",
+ "yl l",
+ "y ll",
+ "▁t error",
+ "▁te rror",
+ "▁ter ror",
+ "▁c rim",
+ "▁cr im",
+ "▁cri m",
+ "▁z ak",
+ "▁za k",
+ "▁ zak",
+ "iss ue",
+ "pa nel",
+ "pan el",
+ "p anel",
+ "sv g",
+ "▁re b",
+ "▁r eb",
+ "▁ reb",
+ "Custom er",
+ "sw itch",
+ "об ра",
+ "о бра",
+ "▁Champion ships",
+ "▁Championship s",
+ "▁Champions hips",
+ "cl o",
+ "c lo",
+ "at te",
+ "att e",
+ "a tte",
+ "▁any more",
+ "▁excell ent",
+ "▁opport unity",
+ "▁opportun ity",
+ "▁B ahn",
+ "▁Ba hn",
+ "▁Bah n",
+ "чи н",
+ "ч ин",
+ "et ing",
+ "eti ng",
+ "e ting",
+ "▁inc ident",
+ "to m",
+ "t om",
+ "Per s",
+ "Pe rs",
+ "P ers",
+ "bb en",
+ "bbe n",
+ "b ben",
+ "ствен ной",
+ "ственно й",
+ "и х",
+ "ro uter",
+ "route r",
+ "rout er",
+ "rou ter",
+ "r outer",
+ "▁new ly",
+ "▁sil ence",
+ "▁G NU",
+ "▁R ails",
+ "▁Ra ils",
+ "▁Rail s",
+ "▁A mb",
+ "▁Am b",
+ "▁Q ual",
+ "▁Qu al",
+ "▁ Qual",
+ "▁Sch aus",
+ "▁Sc haus",
+ "▁S ohn",
+ "▁So hn",
+ "▁A LL",
+ "▁AL L",
+ "▁ ALL",
+ "▁ro yal",
+ "▁roy al",
+ "▁ £",
+ "wi ę",
+ "w ię",
+ "▁ent fer",
+ "▁Re move",
+ "▁Rem ove",
+ "▁ Remove",
+ "▁hard ly",
+ "Us ing",
+ "U sing",
+ "ло г",
+ "▁I ch",
+ "▁d erni",
+ "▁der ni",
+ "▁Con nection",
+ "▁Connect ion",
+ "▁ Connection",
+ "fi sh",
+ "f ish",
+ "▁In form",
+ "▁Inf orm",
+ "▁Info rm",
+ "▁E ner",
+ "▁En er",
+ "ro it",
+ "r oit",
+ "B bb",
+ "View Model",
+ "V ideo",
+ "il ey",
+ "ile y",
+ "i ley",
+ "▁м ного",
+ "▁мно го",
+ "▁G em",
+ "▁Ge m",
+ "▁comp reh",
+ "▁compr eh",
+ "en umerate",
+ "ul as",
+ "ula s",
+ "u las",
+ "▁B ah",
+ "▁Ba h",
+ "▁Y et",
+ "▁Ye t",
+ "B R",
+ "х ра",
+ "▁count y",
+ "▁coun ty",
+ "▁H ist",
+ "▁His t",
+ "▁Hi st",
+ "▁Г у",
+ "▁ Ј",
+ "▁m ari",
+ "▁ma ri",
+ "▁mar i",
+ "▁C lar",
+ "▁Cl ar",
+ "▁Cla r",
+ "Bit map",
+ "B itmap",
+ "▁C z",
+ "▁m ån",
+ "▁må n",
+ "▁m ere",
+ "▁me re",
+ "▁mer e",
+ "▁mus ique",
+ "al so",
+ "als o",
+ "date s",
+ "da tes",
+ "dat es",
+ "d ates",
+ "▁D VD",
+ "▁g ol",
+ "▁go l",
+ "fo ny",
+ "fon y",
+ "f ony",
+ "▁Cast le",
+ "▁фа ми",
+ "▁arr ang",
+ "▁Bus iness",
+ "▁K az",
+ "▁Ka z",
+ "▁o sc",
+ "▁os c",
+ "▁ osc",
+ "▁se colo",
+ "▁sec olo",
+ "▁aff ected",
+ "▁affect ed",
+ "▁He alth",
+ "re b",
+ "r eb",
+ "ed itor",
+ "edit or",
+ "edi tor",
+ "▁own ed",
+ "▁ow ned",
+ "▁ owned",
+ "t l",
+ "▁v í",
+ "▁ ví",
+ "чни х",
+ "ч них",
+ "к ви",
+ "▁dev ient",
+ "▁devi ent",
+ "M utable",
+ "▁t egen",
+ "▁te gen",
+ "Reg ister",
+ "є ю",
+ "▁car acter",
+ "лл и",
+ "л ли",
+ "▁n ouvelle",
+ "▁nouve lle",
+ "ok o",
+ "o ko",
+ "icht et",
+ "ichte t",
+ "▁e vol",
+ "▁ev ol",
+ "▁H ab",
+ "▁Ha b",
+ "▁mil itar",
+ "▁milit ar",
+ "▁p uts",
+ "▁put s",
+ "▁pu ts",
+ "end if",
+ "endi f",
+ "▁Dav is",
+ "▁Da vis",
+ "▁Scot land",
+ "reg ular",
+ "▁Con text",
+ "▁Cont ext",
+ "▁ Context",
+ "is piel",
+ "isp iel",
+ "i spiel",
+ "▁G allery",
+ "▁Gall ery",
+ "\", \r",
+ "\" ,\r",
+ "▁a rc",
+ "▁ar c",
+ "▁ arc",
+ "▁IN FO",
+ "▁ INFO",
+ "▁c od",
+ "▁co d",
+ "▁ cod",
+ "ді в",
+ "д ів",
+ "▁v archar",
+ "▁var char",
+ "▁ varchar",
+ "▁tou jours",
+ "at ial",
+ "ati al",
+ "atia l",
+ "▁h anno",
+ "▁han no",
+ "▁проф ес",
+ "▁launch ed",
+ "▁насе лення",
+ "▁t on",
+ "▁to n",
+ "▁ ton",
+ "au sed",
+ "ause d",
+ "aus ed",
+ "a used",
+ "▁і з",
+ "▁t ö",
+ "▁P ur",
+ "▁Pu r",
+ "▁o lymp",
+ "AR N",
+ "ó m",
+ "▁a ugust",
+ "▁aug ust",
+ "▁f urn",
+ "▁fur n",
+ "▁fu rn",
+ "▁Col omb",
+ "▁Sta ats",
+ "▁Staat s",
+ "ho ra",
+ "hor a",
+ "h ora",
+ "▁м ор",
+ "▁мо р",
+ "▁ мор",
+ "can vas",
+ "▁gr ave",
+ "▁gra ve",
+ "▁grav e",
+ "▁com position",
+ "▁comp osition",
+ "▁compos ition",
+ "ac ja",
+ "▁которы е",
+ "▁ч о",
+ "▁ чо",
+ "Gener al",
+ "Gen eral",
+ "ан і",
+ "а ні",
+ "▁Joh annes",
+ "▁Johann es",
+ "▁Johan nes",
+ "ка р",
+ "к ар",
+ "▁ча ст",
+ "▁час т",
+ "▁Ва си",
+ "ss h",
+ "s sh",
+ "▁repla cing",
+ "▁< >",
+ "▁ <>",
+ "ці в",
+ "ц ів",
+ "la us",
+ "lau s",
+ "l aus",
+ "en y",
+ "e ny",
+ "äh l",
+ "ä hl",
+ "▁m arg",
+ "▁ma rg",
+ "▁mar g",
+ "ci ence",
+ "c ience",
+ "▁inst ruction",
+ "▁instru ction",
+ "▁instruct ion",
+ "▁ко ји",
+ "Ed itor",
+ "Edit or",
+ "▁fund amental",
+ "mu nd",
+ "mun d",
+ "m und",
+ "▁exception s",
+ "▁except ions",
+ "▁p late",
+ "▁pl ate",
+ "▁pla te",
+ "▁plat e",
+ "▁ plate",
+ "▁L is",
+ "▁Li s",
+ "▁d eren",
+ "▁de ren",
+ "▁der en",
+ "▁dere n",
+ "pr ep",
+ "pre p",
+ "p rep",
+ "▁janu ari",
+ "Sc ope",
+ "S cope",
+ "yn ast",
+ "yna st",
+ "r v",
+ "or sz",
+ "ors z",
+ "▁T ony",
+ "▁To ny",
+ "▁Ton y",
+ "▁д і",
+ "▁ ді",
+ "▁о дна",
+ "▁од на",
+ "▁s ab",
+ "▁sa b",
+ "ot i",
+ "o ti",
+ "je l",
+ "j el",
+ "▁gener ator",
+ "▁ generator",
+ "▁' .",
+ "▁ '.",
+ "▁sh arp",
+ "▁ sharp",
+ "▁то лько",
+ "▁account s",
+ "▁ž e",
+ "▁ že",
+ "▁for am",
+ "▁fo ram",
+ "▁g ouvern",
+ "TI ME",
+ "T IME",
+ "▁Sov iet",
+ "▁G é",
+ "▁ex ped",
+ "▁exp ed",
+ "▁ord inary",
+ "▁ordin ary",
+ "▁ ordinary",
+ "▁Con serv",
+ "▁Cons erv",
+ "▁Conse rv",
+ "▁com pla",
+ "▁comp la",
+ "▁compl a",
+ "te i",
+ "t ei",
+ "▁cap tain",
+ "▁capt ain",
+ "▁Sam uel",
+ "▁D ark",
+ "▁Dar k",
+ "▁в ін",
+ "▁ві н",
+ "▁de light",
+ "▁del ight",
+ "re cht",
+ "rec ht",
+ "di a",
+ "d ia",
+ "ess es",
+ "esse s",
+ "ul p",
+ "u lp",
+ "ш ки",
+ "be z",
+ "b ez",
+ "▁det ection",
+ "▁detect ion",
+ "▁cook ie",
+ "▁ cookie",
+ "an try",
+ "ant ry",
+ "Mult i",
+ "ob a",
+ "o ba",
+ "▁j oy",
+ "▁jo y",
+ "▁safe ty",
+ "▁saf ety",
+ "| ^",
+ "po d",
+ "p od",
+ "ad ém",
+ "▁Ch ron",
+ "▁Chr on",
+ "▁D jango",
+ "▁Dj ango",
+ "▁ehem al",
+ "k h",
+ "è le",
+ "▁p oc",
+ "▁po c",
+ "B ottom",
+ "la unch",
+ "ne m",
+ "n em",
+ "▁G ROUP",
+ "▁ GROUP",
+ "ní ho",
+ "▁G ib",
+ "▁Gi b",
+ "sd k",
+ "s dk",
+ "B E",
+ "▁G ene",
+ "▁Ge ne",
+ "▁Gen e",
+ "▁St aff",
+ "▁Sta ff",
+ "▁subsequ ent",
+ "ic ion",
+ "ici on",
+ "icio n",
+ "i cion",
+ "▁vict ory",
+ "▁c anon",
+ "▁can on",
+ "▁ca non",
+ "iz ar",
+ "iza r",
+ "i zar",
+ "iz ia",
+ "izi a",
+ "i zia",
+ "▁m ate",
+ "▁ma te",
+ "▁mat e",
+ "▁ mate",
+ "▁lay ers",
+ "▁layer s",
+ "▁ layers",
+ "su do",
+ "s udo",
+ "sch ule",
+ "per iment",
+ "ül et",
+ "ü let",
+ "AR CHAR",
+ "▁тер рито",
+ "▁me asures",
+ "▁measure s",
+ "▁meas ures",
+ "▁z ou",
+ "▁zo u",
+ "ops is",
+ "на ми",
+ "tb ody",
+ "t body",
+ "▁e se",
+ "▁es e",
+ "▁ ese",
+ "ster dam",
+ "sterd am",
+ "▁ph oto",
+ "▁phot o",
+ "▁ photo",
+ "ynchron ous",
+ "set minus",
+ "▁lo ads",
+ "▁load s",
+ "▁ loads",
+ "▁ple asure",
+ "▁me ille",
+ "}\\ ,",
+ "} \\,",
+ "qu al",
+ "qua l",
+ "q ual",
+ "▁fav our",
+ "▁r od",
+ "▁ro d",
+ "▁ rod",
+ "De r",
+ "D er",
+ "ра бо",
+ "раб о",
+ "▁pr essed",
+ "▁pres sed",
+ "▁press ed",
+ "▁ pressed",
+ "r ę",
+ "ie ving",
+ "iev ing",
+ "mate rial",
+ "m aterial",
+ "vi rt",
+ "vir t",
+ "v irt",
+ "▁cap able",
+ "с ло",
+ "us hed",
+ "ush ed",
+ "▁по бе",
+ "uset ts",
+ "un signed",
+ "uns igned",
+ "k ów",
+ "▁o v",
+ "▁ ov",
+ "eg eben",
+ "ege ben",
+ "e geben",
+ "▁app lying",
+ "▁apply ing",
+ "▁gal ax",
+ "▁ga lax",
+ "▁O racle",
+ "▁Or acle",
+ "▁Stutt gart",
+ "In fl",
+ "Inf l",
+ "ach usetts",
+ "▁de el",
+ "li re",
+ "l ire",
+ "▁stat unit",
+ "▁Polit iker",
+ "▁Politik er",
+ "▁beaut y",
+ ") >",
+ "▁Columb ia",
+ "▁zewnętrz ne",
+ "▁про гра",
+ "▁пр огра",
+ "▁d x",
+ "▁ dx",
+ "ck now",
+ "c know",
+ "▁d ub",
+ "▁du b",
+ "un ächst",
+ "find ViewById",
+ "▁M and",
+ "▁Man d",
+ "▁Ma nd",
+ "ál l",
+ "á ll",
+ "na ire",
+ "n aire",
+ "▁dest in",
+ "is ting",
+ "ist ing",
+ "isti ng",
+ "ag gi",
+ "agg i",
+ "a ggi",
+ "ch art",
+ "char t",
+ "cha rt",
+ "c hart",
+ "▁just ice",
+ "Sim ple",
+ "▁un fortunately",
+ "і р",
+ "▁qu esta",
+ "▁que sta",
+ "▁quest a",
+ "▁ questa",
+ "▁Govern or",
+ "я в",
+ "▁mús ica",
+ "▁equ ipo",
+ "▁equip o",
+ "▁D est",
+ "▁De st",
+ "▁Des t",
+ "▁ Dest",
+ "el ect",
+ "ele ct",
+ "e lect",
+ "Stack Trace",
+ "зо м",
+ "з ом",
+ "pr oc",
+ "pro c",
+ "p roc",
+ "ent in",
+ "enti n",
+ "ad ora",
+ "ado ra",
+ "ador a",
+ "▁Л ю",
+ "▁register ed",
+ "H L",
+ "face book",
+ "fac ebook",
+ "▁st oring",
+ "▁stor ing",
+ "▁sto ring",
+ "▁Current ly",
+ "▁qu adr",
+ "▁quad r",
+ "Stand ard",
+ "tr im",
+ "tri m",
+ "t rim",
+ "ear s",
+ "ea rs",
+ "e ars",
+ "se nder",
+ "sen der",
+ "send er",
+ "s ender",
+ "▁V as",
+ "▁Va s",
+ "▁ed ific",
+ "▁B ür",
+ "▁Bü r",
+ "▁C ountry",
+ "▁Count ry",
+ "▁Coun try",
+ "▁ Country",
+ "th a",
+ "t ha",
+ "; \"",
+ "no r",
+ "n or",
+ "▁Do ctor",
+ "▁Doc tor",
+ "ru ment",
+ "rum ent",
+ "r ument",
+ "Ge n",
+ "G en",
+ "▁B uen",
+ "▁Bu en",
+ "ra de",
+ "rad e",
+ "r ade",
+ "▁k un",
+ "n avigation",
+ "Pa y",
+ "P ay",
+ "▁capt ured",
+ "▁capture d",
+ "▁st ruck",
+ "▁str uck",
+ "▁stru ck",
+ "ven ir",
+ "ém ent",
+ "é ment",
+ "▁T ree",
+ "▁Tr ee",
+ "▁Tre e",
+ "▁ Tree",
+ "▁x x",
+ "▁ xx",
+ "▁n arr",
+ "▁na rr",
+ "▁nar r",
+ "ль ного",
+ "льно го",
+ "▁inst alling",
+ "▁install ing",
+ "▁instal ling",
+ "▁associ ation",
+ "▁insert ed",
+ "▁inser ted",
+ "er ner",
+ "ern er",
+ "erne r",
+ "valid ate",
+ "▁l ut",
+ "▁lu t",
+ "▁g lo",
+ "▁gl o",
+ "▁techn ology",
+ "▁P lace",
+ "▁Pl ace",
+ "▁Pla ce",
+ "▁ Place",
+ "$ ?",
+ "▁z v",
+ "с лі",
+ "E P",
+ "▁at mos",
+ "ug o",
+ "u go",
+ "ér t",
+ "é rt",
+ "▁W erk",
+ "▁Wer k",
+ "▁% }",
+ "te le",
+ "tel e",
+ "t ele",
+ "Sp an",
+ "S pan",
+ "▁R aj",
+ "▁Ra j",
+ "▁Person en",
+ "▁Pers onen",
+ "▁C ant",
+ "▁Can t",
+ "▁Ca nt",
+ "▁com bat",
+ "▁comb at",
+ "▁observ ation",
+ "▁obs ervation",
+ "param eter",
+ "para meter",
+ "▁agre ed",
+ "▁agree d",
+ "▁agr eed",
+ "pu r",
+ "p ur",
+ "▁sh adow",
+ "▁ shadow",
+ "▁g ł",
+ "Key s",
+ "Ke ys",
+ "Cre d",
+ "Cr ed",
+ "C red",
+ "ou ri",
+ "our i",
+ "o uri",
+ "▁p ale",
+ "▁pa le",
+ "▁pal e",
+ "ic ké",
+ "ick é",
+ "▁We ek",
+ "▁ Week",
+ "▁Pr ime",
+ "▁Pri me",
+ "▁Prim e",
+ "> .",
+ "Init ial",
+ "▁о дин",
+ "▁од ин",
+ "▁' ',",
+ "▁'' ,",
+ "▁у чи",
+ "▁In v",
+ "▁ Inv",
+ "col a",
+ "co la",
+ "c ola",
+ "ci ble",
+ "c ible",
+ "▁The atre",
+ "▁b em",
+ "▁be m",
+ "▁satisf y",
+ "x l",
+ "▁ра зви",
+ "▁раз ви",
+ "▁p ixel",
+ "▁pix el",
+ "lá n",
+ "l án",
+ "▁tw ee",
+ "▁twe e",
+ "ço n",
+ "ç on",
+ "не ния",
+ "▁A T",
+ "▁ AT",
+ "èg e",
+ "è ge",
+ "▁M ort",
+ "▁Mor t",
+ "▁Mo rt",
+ "▁my sq",
+ "▁ mysq",
+ "ft en",
+ "fte n",
+ "f ten",
+ "▁п ес",
+ "▁пе с",
+ "ém a",
+ "é ma",
+ "▁Service s",
+ "▁Serv ices",
+ "▁ Services",
+ "custom er",
+ "▁A WS",
+ "ъ т",
+ "▁A ch",
+ "▁Ac h",
+ "% .",
+ "▁clar ify",
+ "▁уни версите",
+ "xt ure",
+ "um i",
+ "u mi",
+ "▁s å",
+ "▁P el",
+ "▁Pe l",
+ "se rial",
+ "ser ial",
+ "UR I",
+ "U RI",
+ "▁r g",
+ "▁ rg",
+ "▁со ста",
+ "ch estra",
+ "che stra",
+ "ches tra",
+ "]. [",
+ "] .[",
+ "we n",
+ "w en",
+ "▁Lond res",
+ "▁an ys",
+ "▁any s",
+ "Data Source",
+ "▁рай оне",
+ "▁райо не",
+ "▁район е",
+ "▁re in",
+ "▁r ein",
+ "▁rei n",
+ "▁met adata",
+ "▁meta data",
+ "▁ metadata",
+ "um ble",
+ "umb le",
+ "ar beit",
+ "arbe it",
+ "hn er",
+ "h ner",
+ "ci ent",
+ "cie nt",
+ "c ient",
+ "▁n orte",
+ "▁nor te",
+ "▁о на",
+ "▁он а",
+ "▁ она",
+ "▁sc ored",
+ "▁score d",
+ "▁r ay",
+ "▁ra y",
+ "▁ ray",
+ "▁фев ра",
+ "▁фе вра",
+ "▁pro tagon",
+ "▁prot agon",
+ "▁S ac",
+ "▁Sa c",
+ "▁comm only",
+ "▁common ly",
+ "Linear Layout",
+ "▁app lic",
+ "▁ма я",
+ "З а",
+ "▁access ible",
+ "ie wer",
+ "iew er",
+ "fl ag",
+ "f lag",
+ "▁R ück",
+ "ä u",
+ "▁e rano",
+ "▁er ano",
+ "▁era no",
+ "▁eran o",
+ "▁auth entic",
+ "▁ authentic",
+ "▁R y",
+ "▁не ско",
+ "▁emb argo",
+ "▁embar go",
+ "▁d ry",
+ "▁dr y",
+ "▁reason able",
+ "▁Mod ule",
+ "▁ Module",
+ "▁acc eler",
+ "▁inter view",
+ "▁C reek",
+ "▁Cre ek",
+ "▁al pha",
+ "▁ alpha",
+ "se rie",
+ "ser ie",
+ "s erie",
+ "Th ey",
+ "The y",
+ "ю чи",
+ "▁H of",
+ "▁Ho f",
+ "▁C R",
+ "▁ CR",
+ "mod al",
+ "mo dal",
+ "▁sequence s",
+ "▁sequ ences",
+ "cl osed",
+ "close d",
+ "clos ed",
+ "clo sed",
+ ")} $",
+ ") }$",
+ "▁Ч ер",
+ "▁Че р",
+ "▁OR DER",
+ "▁ ORDER",
+ "Right arrow",
+ "R ightarrow",
+ "haus en",
+ "}} _",
+ "} }_",
+ "▁tamb é",
+ "▁magn etic",
+ "▁magnet ic",
+ "▁Mc C",
+ "▁win ning",
+ "under line",
+ "▁Bill board",
+ "na io",
+ "▁l iqu",
+ "▁li qu",
+ "▁ liqu",
+ "display style",
+ "time out",
+ "▁consider able",
+ "▁e ben",
+ "▁eb en",
+ "▁ eben",
+ "iffer ent",
+ "iffe rent",
+ "an u",
+ "a nu",
+ "▁С ов",
+ "▁Со в",
+ "[ (",
+ "▁: -)",
+ "▁:- )",
+ "le itung",
+ "form ed",
+ "for med",
+ "▁Man ager",
+ "▁ Manager",
+ "▁on click",
+ "T Y",
+ "та х",
+ "C V",
+ "run time",
+ "r untime",
+ "po que",
+ "▁Л о",
+ "Tem p",
+ "Te mp",
+ "T emp",
+ "lo aded",
+ "load ed",
+ "▁! ==",
+ "▁!= =",
+ "▁s inger",
+ "▁sing er",
+ "▁sin ger",
+ "fa r",
+ "f ar",
+ "▁Com ple",
+ "▁Comp le",
+ "▁ Comple",
+ "▁Ö sterreich",
+ "Pol icy",
+ "▁work er",
+ "▁wor ker",
+ "▁ worker",
+ "W rapper",
+ "ob i",
+ "o bi",
+ "▁discuss ed",
+ "▁b uy",
+ "▁bu y",
+ "▁янва ря",
+ "▁D in",
+ "▁Di n",
+ "▁g ed",
+ "▁ge d",
+ "▁ ged",
+ "ско ј",
+ "E urope",
+ "▁t all",
+ "▁tal l",
+ "▁ta ll",
+ "ho s",
+ "h os",
+ "ла го",
+ "▁B lock",
+ "▁Bl ock",
+ "▁Blo ck",
+ "▁ Block",
+ "▁ident ified",
+ "List View",
+ "▁attempt ing",
+ "▁typ ical",
+ "ps um",
+ "p sum",
+ "os ter",
+ "ost er",
+ "o ster",
+ "▁ж урна",
+ "P e",
+ "mer ce",
+ "▁un expected",
+ "hu i",
+ "h ui",
+ "let ter",
+ "lett er",
+ "lette r",
+ "l etter",
+ "▁nue vo",
+ "▁а бо",
+ "▁VAL UES",
+ "▁I z",
+ "Fl ags",
+ "Flag s",
+ "▁TR UE",
+ "▁ TRUE",
+ "iz ación",
+ "iza ción",
+ "▁gro wing",
+ "▁grow ing",
+ "es tre",
+ "est re",
+ "estr e",
+ "e stre",
+ "▁p oly",
+ "▁po ly",
+ "▁pol y",
+ "▁ poly",
+ "▁St one",
+ "▁Sto ne",
+ "▁V III",
+ "▁VI II",
+ "▁VII I",
+ "▁local host",
+ "▁ localhost",
+ "äh lt",
+ "ähl t",
+ "▁embed ded",
+ "jd bc",
+ "j dbc",
+ "▁con vention",
+ "▁conv ention",
+ "▁conven tion",
+ "▁convent ion",
+ "▁s cala",
+ "▁sc ala",
+ "▁scal a",
+ "▁ scala",
+ "со к",
+ "с ок",
+ "▁an alog",
+ "▁anal og",
+ "▁\" +",
+ "▁ \"+",
+ "ц ю",
+ "oc c",
+ "o cc",
+ "▁l itt",
+ "▁li tt",
+ "▁lit t",
+ "P N",
+ "▁а ктив",
+ "▁ак тив",
+ "att ributes",
+ "attribute s",
+ "▁F erd",
+ "▁Fe rd",
+ "▁Fer d",
+ "▁az ure",
+ "▁ azure",
+ "ș ti",
+ "ño s",
+ "ñ os",
+ "pi ng",
+ "pin g",
+ "p ing",
+ "▁te acher",
+ "▁teach er",
+ "▁tea cher",
+ "} &",
+ "ip e",
+ "i pe",
+ "▁N ob",
+ "▁No b",
+ "▁и ма",
+ "▁им а",
+ "Bi nd",
+ "B ind",
+ "▁mag ic",
+ "▁Trans port",
+ "▁ Transport",
+ "ix el",
+ "▁comp uted",
+ "▁comput ed",
+ "▁compute d",
+ "ag na",
+ "agn a",
+ "er st",
+ "ers t",
+ "H A",
+ "W ait",
+ "▁author s",
+ "▁auth ors",
+ "▁; )",
+ "cl am",
+ "cla m",
+ "c lam",
+ "▁Pen nsylvan",
+ "▁d rug",
+ "▁dr ug",
+ "▁dru g",
+ "▁v ain",
+ "▁va in",
+ "▁employ ed",
+ "▁individ uals",
+ "▁individual s",
+ "▁an ge",
+ "▁ang e",
+ "▁ ange",
+ "ut at",
+ "uta t",
+ "u tat",
+ "▁$ -",
+ "▁ $-",
+ "cor rect",
+ "corr ect",
+ "▁exper iments",
+ "▁experiment s",
+ "Arg ument",
+ "▁I B",
+ "▁ IB",
+ "▁p ère",
+ "▁B rian",
+ "▁Br ian",
+ "ber ger",
+ "berg er",
+ "Ma c",
+ "M ac",
+ "ia st",
+ "ias t",
+ "i ast",
+ "Per m",
+ "Pe rm",
+ "P erm",
+ "Ca st",
+ "C ast",
+ "▁{ };",
+ "▁{} ;",
+ "▁St udent",
+ "▁Stud ent",
+ "▁Stu dent",
+ "▁ Student",
+ "▁st att",
+ "▁stat t",
+ "▁sta tt",
+ "al gebra",
+ "▁equ als",
+ "▁equal s",
+ "▁eq uals",
+ "▁ equals",
+ "▁pro jet",
+ "▁prés ident",
+ "Activity Thread",
+ "▁ein z",
+ "en ia",
+ "eni a",
+ "e nia",
+ "re z",
+ "r ez",
+ "ess ional",
+ "ession al",
+ "▁авгу ста",
+ "over ride",
+ "ne ws",
+ "new s",
+ "▁pla net",
+ "▁plan et",
+ "▁plane t",
+ "n n",
+ "▁W is",
+ "▁Wi s",
+ "тв ер",
+ "т вер",
+ "▁Val id",
+ "▁ Valid",
+ "▁G ef",
+ "▁Ge f",
+ "гра д",
+ "▁e ig",
+ "an tom",
+ "ant om",
+ "anto m",
+ "▁Me ister",
+ "fl ags",
+ "flag s",
+ "ffic iale",
+ "fficial e",
+ "ша я",
+ "- ,",
+ "at ionen",
+ "ation en",
+ "ati onen",
+ "atio nen",
+ "mo use",
+ "m ouse",
+ "stand ard",
+ "Sing le",
+ "▁b ol",
+ "▁bo l",
+ "▁ bol",
+ "is is",
+ "isi s",
+ "▁f ruit",
+ "▁fr uit",
+ "c ourse",
+ "it ants",
+ "itan ts",
+ "▁é taient",
+ "▁ét aient",
+ "Text Field",
+ "▁ф он",
+ "▁фо н",
+ "▁a ircraft",
+ "▁air craft",
+ "▁I SSN",
+ "▁IS SN",
+ "▁west ern",
+ "▁ western",
+ "▁represent ing",
+ "Es p",
+ "E sp",
+ "▁El se",
+ "▁Els e",
+ "▁ Else",
+ "▁s izes",
+ "▁si zes",
+ "▁size s",
+ "▁satisf ied",
+ "ot os",
+ "oto s",
+ "U D",
+ "Fin al",
+ "Fi nal",
+ "F inal",
+ "ó j",
+ "è ve",
+ "▁R oy",
+ "▁Ro y",
+ "ff en",
+ "ffe n",
+ "f fen",
+ "▁s alt",
+ "▁sa lt",
+ "▁sal t",
+ "▁L abel",
+ "▁La bel",
+ "▁Lab el",
+ "▁ Label",
+ "S k",
+ "▁к ре",
+ "▁ кре",
+ "▁Ли тература",
+ "▁с м",
+ "Att ributes",
+ "Attribute s",
+ "ay e",
+ "a ye",
+ "сь к",
+ "▁вы со",
+ "- )",
+ "os es",
+ "ose s",
+ "cal cul",
+ "calc ul",
+ "▁C annot",
+ "▁Can not",
+ "▁ Cannot",
+ "Gener ic",
+ "em o",
+ "e mo",
+ "▁A utor",
+ "▁Aut or",
+ "▁Au tor",
+ "▁Auto r",
+ "лё н",
+ "л ён",
+ "ла га",
+ "vo te",
+ "v ote",
+ "lic ates",
+ "licate s",
+ "lica tes",
+ "ru s",
+ "r us",
+ "él i",
+ "é li",
+ "op f",
+ "o pf",
+ "at ique",
+ "ati que",
+ "sc ala",
+ "scal a",
+ "s cala",
+ "▁Oh io",
+ "▁Brit ann",
+ "▁b ef",
+ "▁be f",
+ "▁Е вро",
+ "▁Ев ро",
+ "▁Care er",
+ "is ée",
+ "isé e",
+ "ó t",
+ "bo se",
+ "bos e",
+ "b ose",
+ "▁Б ер",
+ "▁Бе р",
+ "▁Cont roller",
+ "▁Control ler",
+ "▁ Controller",
+ "po le",
+ "pol e",
+ "p ole",
+ "▁al len",
+ "▁all en",
+ "▁alle n",
+ "▁ allen",
+ "▁h ack",
+ "▁ha ck",
+ "▁ext ent",
+ "▁cal ci",
+ "▁calc i",
+ "Me r",
+ "M er",
+ "▁sum mary",
+ "▁summar y",
+ "▁summ ary",
+ "▁ summary",
+ "Mar t",
+ "Ma rt",
+ "M art",
+ "▁histor ical",
+ "▁historic al",
+ "im at",
+ "ima t",
+ "i mat",
+ "bu d",
+ "b ud",
+ "▁F OR",
+ "▁FO R",
+ "▁ FOR",
+ "ex port",
+ "exp ort",
+ "ed i",
+ "e di",
+ "Map ping",
+ "Mapp ing",
+ "Ma pping",
+ "M apping",
+ "▁A y",
+ "▁R uby",
+ "▁Ru by",
+ "▁Rub y",
+ "▁definition s",
+ "▁defin itions",
+ "▁definit ions",
+ "▁{ $",
+ "▁ {$",
+ "▁y ours",
+ "▁you rs",
+ "▁your s",
+ "▁yo urs",
+ "ri as",
+ "ria s",
+ "r ias",
+ "To uch",
+ "T ouch",
+ "▁G az",
+ "▁Ga z",
+ "▁Aut om",
+ "▁Au tom",
+ "▁Auto m",
+ "▁ Autom",
+ "▁и стори",
+ "▁исто ри",
+ "▁ис тори",
+ "▁d elen",
+ "▁de len",
+ "▁del en",
+ "▁K inder",
+ "▁Kind er",
+ "▁Ki nder",
+ "▁Kin der",
+ "}} %",
+ "} }%",
+ "▁perform ing",
+ "F R",
+ "▁S ig",
+ "▁Si g",
+ "▁B rad",
+ "▁Br ad",
+ "▁Bra d",
+ "br as",
+ "bra s",
+ "b ras",
+ "▁J ar",
+ "▁Ja r",
+ "pk g",
+ "p kg",
+ "w r",
+ "▁P ays",
+ "▁Pa ys",
+ "▁Pay s",
+ "N C",
+ "▁op posed",
+ "▁opp osed",
+ "▁oppos ed",
+ "Tr y",
+ "T ry",
+ "▁ве зе",
+ "▁B og",
+ "▁Bo g",
+ "▁writ es",
+ "▁wr ites",
+ "▁write s",
+ "▁st ories",
+ "▁stor ies",
+ "▁sto ries",
+ "▁m ater",
+ "▁ma ter",
+ "▁mat er",
+ "▁mate r",
+ "▁stag ione",
+ "▁s ty",
+ "▁st y",
+ "▁ sty",
+ "▁compat ible",
+ "▁ compatible",
+ "he ast",
+ "h east",
+ "▁G uy",
+ "▁Gu y",
+ "egr ünd",
+ "▁ident ifier",
+ "▁ identifier",
+ "▁he ads",
+ "▁head s",
+ "по зи",
+ "▁st up",
+ "▁t f",
+ "▁ tf",
+ "▁ј ош",
+ "▁H ugh",
+ "▁Hu gh",
+ "▁c ards",
+ "▁car ds",
+ "▁card s",
+ "▁ cards",
+ "ov y",
+ "o vy",
+ "▁To ast",
+ "al las",
+ "all as",
+ "alla s",
+ "▁p úblic",
+ "▁ass umes",
+ "▁assum es",
+ "▁assume s",
+ "▁чемпи она",
+ "yc ler",
+ "ycle r",
+ "y cler",
+ "▁Juni or",
+ "▁Jun ior",
+ "▁F ich",
+ "▁estim ated",
+ "▁estimate d",
+ "ze rw",
+ "zer w",
+ "di alog",
+ "dia log",
+ "d ialog",
+ "ши н",
+ "ш ин",
+ "sh ell",
+ "she ll",
+ "s hell",
+ "▁н их",
+ "▁ни х",
+ "▁ них",
+ "▁p itch",
+ "▁pit ch",
+ "до л",
+ "out ube",
+ "▁S anti",
+ "▁San ti",
+ "▁Sant i",
+ "On ClickListener",
+ "▁M agyar",
+ "▁Mag yar",
+ "▁v ue",
+ "▁vu e",
+ "▁ vue",
+ "i ão",
+ "▁` #",
+ "col lect",
+ "coll ect",
+ "▁R ou",
+ "▁Ro u",
+ "anal ysis",
+ "istrz ost",
+ "▁Dig ital",
+ "▁ Digital",
+ "▁c rist",
+ "▁cr ist",
+ "▁cri st",
+ "ri ere",
+ "rie re",
+ "rier e",
+ "r iere",
+ "▁cam po",
+ "▁camp o",
+ "U s",
+ "▁circ a",
+ "▁cir ca",
+ "▁Com ponent",
+ "▁ Component",
+ "▁NS String",
+ "▁ NSString",
+ "p d",
+ "▁pr ince",
+ "▁prin ce",
+ "▁in voke",
+ "▁inv oke",
+ "▁ invoke",
+ "▁Mar ine",
+ "▁Mari ne",
+ "Al low",
+ "All ow",
+ "est ic",
+ "esti c",
+ "ри сти",
+ "рис ти",
+ "рист и",
+ "bo ne",
+ "bon e",
+ "b one",
+ "ту ры",
+ "тур ы",
+ "▁pass ion",
+ "ác ió",
+ "á ció",
+ "▁o rn",
+ "▁or n",
+ "▁ orn",
+ "ве д",
+ "▁in vari",
+ "▁inv ari",
+ "▁н і",
+ "▁ ні",
+ "Re move",
+ "Rem ove",
+ "en cies",
+ "enc ies",
+ "enci es",
+ "il ib",
+ "ili b",
+ "i lib",
+ "▁Direct or",
+ "▁Dire ctor",
+ "▁Dir ector",
+ "\" \"",
+ "▁Con se",
+ "▁Cons e",
+ "google apis",
+ "ó k",
+ "▁У кра",
+ "▁H aving",
+ "▁Ha ving",
+ "▁Hav ing",
+ "Do main",
+ "Dom ain",
+ "ie rz",
+ "ier z",
+ "но логи",
+ "н ологи",
+ "Ch o",
+ "C ho",
+ "un defined",
+ "und efined",
+ "al loc",
+ "all oc",
+ "allo c",
+ "▁p ied",
+ "▁pi ed",
+ "▁pie d",
+ "▁f raction",
+ "▁fr action",
+ "▁fra ction",
+ "bi a",
+ "b ia",
+ "▁п оло",
+ "▁по ло",
+ "▁пол о",
+ "▁ поло",
+ "ug no",
+ "min ister",
+ "▁princip ale",
+ "▁principal e",
+ "▁ref used",
+ "▁refuse d",
+ "brow ser",
+ "b rowser",
+ "* ,",
+ "▁H ospital",
+ "▁univers al",
+ "▁Ern st",
+ "wh o",
+ "w ho",
+ "▁G ard",
+ "▁Gar d",
+ "▁Ga rd",
+ "' _",
+ "con de",
+ "co nde",
+ "cond e",
+ "c onde",
+ "▁[ {",
+ "▁ [{",
+ "so b",
+ "s ob",
+ "▁C rit",
+ "▁Cr it",
+ "▁дека бря",
+ "▁p unto",
+ "▁pun to",
+ "▁punt o",
+ "▁einges etzt",
+ "▁t ör",
+ "▁tö r",
+ "▁N i",
+ "▁w orry",
+ "▁wor ry",
+ "▁leg end",
+ "▁ legend",
+ "▁бу ли",
+ "▁k omm",
+ "▁kom m",
+ "▁ko mm",
+ "ri jk",
+ "rij k",
+ "r ijk",
+ "ef fect",
+ "eff ect",
+ "e ffect",
+ "Or i",
+ "O ri",
+ "RE S",
+ "R ES",
+ "▁P eters",
+ "▁Pe ters",
+ "▁Peter s",
+ "▁Pet ers",
+ "▁B aron",
+ "▁Bar on",
+ "▁Ba ron",
+ "▁G ot",
+ "▁Go t",
+ "▁hon est",
+ "▁ho nest",
+ "är e",
+ "ä re",
+ "ás z",
+ "á sz",
+ "▁no ble",
+ "▁nob le",
+ "▁con clusion",
+ "▁conclus ion",
+ "▁concl usion",
+ "▁form atting",
+ "▁format ting",
+ "▁formatt ing",
+ "▁o tto",
+ "▁ot to",
+ "▁ott o",
+ "▁ otto",
+ "▁de leg",
+ "▁del eg",
+ "м б",
+ "pt op",
+ "pto p",
+ "p top",
+ "▁s ends",
+ "▁send s",
+ "▁sen ds",
+ "ur name",
+ "urn ame",
+ "▁f estival",
+ "▁fest ival",
+ "▁festiv al",
+ ", ",
+ "ру с",
+ "р ус",
+ "▁d och",
+ "▁do ch",
+ "▁doc h",
+ "sub ject",
+ "su bject",
+ "▁care ful",
+ "qu ent",
+ "que nt",
+ "q uent",
+ "▁Lo ad",
+ "▁ Load",
+ "temper aturen",
+ "▁r ue",
+ "▁ru e",
+ "Mem ory",
+ "ț a",
+ "ion a",
+ "io na",
+ "i ona",
+ "▁dent ro",
+ "▁beg ann",
+ "▁began n",
+ "▁A qu",
+ "▁scient ific",
+ "ka ń",
+ "ло к",
+ "л ок",
+ "el de",
+ "eld e",
+ "▁Th ose",
+ "qu ier",
+ "qui er",
+ "act ér",
+ "▁Auf lage",
+ ") '",
+ "▁grad ient",
+ "▁ gradient",
+ "in teger",
+ "inte ger",
+ "▁Im port",
+ "▁Imp ort",
+ "▁ Import",
+ "S K",
+ "▁St atus",
+ "▁Stat us",
+ "▁ Status",
+ "▁exp lo",
+ "▁expl o",
+ "A E",
+ "Sh ell",
+ "She ll",
+ "S hell",
+ "▁Pa ulo",
+ "▁Paul o",
+ ". »",
+ "} ",
+ "fl ex",
+ "f lex",
+ "▁ко мп",
+ "▁ком п",
+ "on den",
+ "ond en",
+ "onde n",
+ "ac cept",
+ "▁miejs ce",
+ "H ub",
+ "all eng",
+ "alle ng",
+ "allen g",
+ "W N",
+ "▁implement ing",
+ "▁ лу",
+ "▁conf using",
+ "▁Inst all",
+ "▁ Install",
+ "▁r ou",
+ "▁ro u",
+ "▁ rou",
+ "▁про ек",
+ "Access or",
+ "Acc essor",
+ "ља шње",
+ "od io",
+ "odi o",
+ "▁app lies",
+ "ющи й",
+ "ю щий",
+ "▁M undial",
+ "Ét at",
+ "É tat",
+ "iet nam",
+ "hu m",
+ "h um",
+ "▁с бор",
+ "ord inate",
+ "ordin ate",
+ "Fran ce",
+ "Fr ance",
+ "F rance",
+ "▁p rend",
+ "▁pr end",
+ "▁pre nd",
+ "el temperaturen",
+ "▁trab aj",
+ "A xis",
+ "▁м но",
+ "prim ary",
+ "▁Se ite",
+ "▁Seit e",
+ "per mission",
+ "perm ission",
+ "▁or den",
+ "▁ord en",
+ "▁ orden",
+ "sin ce",
+ "s ince",
+ "▁i c",
+ "▁ ic",
+ "▁Bra zil",
+ "▁b are",
+ "▁bar e",
+ "▁ba re",
+ "▁ bare",
+ "▁N ar",
+ "▁Na r",
+ "▁J ur",
+ "▁Ju r",
+ "▁fre edom",
+ "▁free dom",
+ "▁med ical",
+ "▁medic al",
+ "▁medi cal",
+ "isch of",
+ "isc hof",
+ "▁с п",
+ "ie ż",
+ "▁boot strap",
+ "▁ bootstrap",
+ "▁ …",
+ "▁fa cil",
+ "▁fac il",
+ "co rd",
+ "cor d",
+ "c ord",
+ "ва не",
+ "ван е",
+ "в ане",
+ "▁Al len",
+ "▁All en",
+ "▁Alle n",
+ "av id",
+ "avi d",
+ "a vid",
+ "ing ham",
+ "za s",
+ "z as",
+ "▁in spect",
+ "▁ins pect",
+ "▁insp ect",
+ "it ten",
+ "itt en",
+ "itte n",
+ "os ti",
+ "ost i",
+ "u h",
+ "c é",
+ "▁# ####",
+ "▁### ##",
+ "▁#### #",
+ "ci us",
+ "ciu s",
+ "c ius",
+ "om y",
+ "o my",
+ "▁Se ine",
+ "▁Sein e",
+ "bre s",
+ "br es",
+ "b res",
+ "▁gen us",
+ "▁genu s",
+ "O ther",
+ "▁Gold en",
+ "▁Gol den",
+ "mu l",
+ "m ul",
+ "▁Спо љашње",
+ "▁gen naio",
+ "▁care fully",
+ "▁careful ly",
+ "aa l",
+ "a al",
+ "▁anal yt",
+ "▁analy t",
+ "ne ur",
+ "n eur",
+ "▁st retch",
+ "▁str etch",
+ "▁O cc",
+ "▁ Occ",
+ "ol as",
+ "ola s",
+ "o las",
+ "▁fire base",
+ "▁ firebase",
+ "▁expect ing",
+ "bas ic",
+ "cond ition",
+ "pr ov",
+ "pro v",
+ "p rov",
+ "▁W asser",
+ "▁Was ser",
+ "▁Wass er",
+ "▁conc aten",
+ "▁e vil",
+ "▁ev il",
+ "▁coefficient s",
+ "We st",
+ "W est",
+ "ir y",
+ "i ry",
+ "ph as",
+ "pha s",
+ "p has",
+ "▁J am",
+ "▁Ja m",
+ "fo is",
+ "f ois",
+ "▁cons id",
+ "▁main ten",
+ "▁mai nten",
+ "ni m",
+ "n im",
+ "es ser",
+ "ess er",
+ "esse r",
+ "es z",
+ "e sz",
+ "un ta",
+ "unt a",
+ "ue st",
+ "ues t",
+ "u est",
+ "▁cred entials",
+ "_ ;",
+ "Di m",
+ "D im",
+ "пре де",
+ "пр еде",
+ "▁B ü",
+ "bu ilt",
+ "▁A cadem",
+ "▁Ac adem",
+ "▁a udi",
+ "▁au di",
+ "▁aud i",
+ "▁ audi",
+ "▁tv å",
+ "in and",
+ "ina nd",
+ "▁The ater",
+ "▁gen re",
+ "ço s",
+ "ç os",
+ "gres ql",
+ "gre sql",
+ "▁we ap",
+ "▁R ab",
+ "▁Ra b",
+ "▁ ’",
+ "▁ad ult",
+ "▁d ém",
+ "▁dé m",
+ "` `",
+ "▁st abil",
+ "▁sta bil",
+ "▁correspond s",
+ "▁E astern",
+ "▁East ern",
+ "un nel",
+ "unn el",
+ "Work er",
+ "▁c oh",
+ "▁co h",
+ "л ка",
+ "▁Mass achusetts",
+ "pi o",
+ "p io",
+ "▁por ts",
+ "▁port s",
+ "▁ ports",
+ "ag g",
+ "a gg",
+ "▁De bug",
+ "▁Deb ug",
+ "▁ Debug",
+ "▁bre ath",
+ "MI N",
+ "M IN",
+ "Vari able",
+ "bat ch",
+ "b atch",
+ "сс е",
+ "с се",
+ "▁p reg",
+ "▁pr eg",
+ "▁pre g",
+ "▁r oles",
+ "▁ro les",
+ "▁role s",
+ "▁rol es",
+ "pa ste",
+ "pas te",
+ "p aste",
+ "▁refer enced",
+ "▁reference d",
+ "ad rat",
+ "adr at",
+ "ч ё",
+ "bin om",
+ "bi nom",
+ "▁def ining",
+ "▁defin ing",
+ "▁Bud apest",
+ "▁д ви",
+ "▁ дви",
+ "▁t aught",
+ "▁h ole",
+ "▁ho le",
+ "▁hol e",
+ "▁ hole",
+ "▁qu ella",
+ "▁que lla",
+ "▁quel la",
+ "M sg",
+ "as ka",
+ "ask a",
+ "a ska",
+ "sc an",
+ "s can",
+ "▁pro pose",
+ "▁prop ose",
+ "▁propos e",
+ "▁Би ография",
+ "{{ \\",
+ "{ {\\",
+ "text t",
+ "tex tt",
+ "▁A lb",
+ "▁Al b",
+ "▁Syd ney",
+ "▁back up",
+ "▁cre dit",
+ "▁cr edit",
+ "▁cred it",
+ "▁фран цу",
+ "st ats",
+ "sta ts",
+ "stat s",
+ "\\\" :",
+ "\\ \":",
+ "▁П ере",
+ "▁Пер е",
+ "▁Пе ре",
+ "▁according ly",
+ "▁accord ingly",
+ "▁L en",
+ "▁Le n",
+ "▁ Len",
+ "zn a",
+ "z na",
+ "▁Reg ional",
+ "▁Region al",
+ "▁и зда",
+ "▁из да",
+ "▁j ú",
+ "hi stor",
+ "his tor",
+ "h istor",
+ "▁ent ities",
+ "St ar",
+ "S tar",
+ "он е",
+ "о не",
+ "'] ['",
+ "' ]['",
+ "▁N ova",
+ "▁No va",
+ "▁Nov a",
+ "di e",
+ "d ie",
+ "▁` '",
+ "▁ `'",
+ "▁ob ten",
+ "▁obt en",
+ "an st",
+ "ans t",
+ "▁Re lig",
+ "▁Rel ig",
+ "▁t rig",
+ "▁tr ig",
+ "▁tri g",
+ "▁ре жи",
+ "▁Person al",
+ "▁Pers onal",
+ "▁t one",
+ "▁to ne",
+ "▁ton e",
+ "▁a id",
+ "▁ai d",
+ "Vis ual",
+ "Sub mit",
+ "▁mov es",
+ "▁mo ves",
+ "▁move s",
+ "▁B ridge",
+ "▁Br idge",
+ "▁B oy",
+ "▁Bo y",
+ "▁accur ate",
+ "os ta",
+ "ost a",
+ "o sta",
+ "at to",
+ "att o",
+ "a tto",
+ "▁defe ated",
+ "▁defeat ed",
+ "▁data b",
+ "▁da tab",
+ "▁dat ab",
+ "▁ datab",
+ "gi nx",
+ "gin x",
+ "g inx",
+ "▁L iv",
+ "▁Li v",
+ "ly wood",
+ "T W",
+ "ri um",
+ "r ium",
+ "ip ped",
+ "ipp ed",
+ "i pped",
+ "Fa il",
+ "F ail",
+ "RE QUEST",
+ "▁ign or",
+ "▁ig nor",
+ "▁s itting",
+ "▁sit ting",
+ "▁sitt ing",
+ "▁mol to",
+ "▁molt o",
+ "▁end point",
+ "▁ endpoint",
+ "uc ión",
+ "u ción",
+ "▁col lections",
+ "▁collection s",
+ "▁collect ions",
+ "▁colle ctions",
+ "▁ collections",
+ "▁Т у",
+ "tem bre",
+ "t embre",
+ "▁né cess",
+ "▁inter act",
+ "▁inte ract",
+ "▁o tras",
+ "▁ot ras",
+ "▁otra s",
+ "▁c urr",
+ "▁cu rr",
+ "▁cur r",
+ "▁ curr",
+ "▁tr acks",
+ "▁tra cks",
+ "▁track s",
+ "▁trac ks",
+ "▁fam ília",
+ "▁numer ical",
+ "▁numeric al",
+ "le gt",
+ "leg t",
+ "] /",
+ "▁M ario",
+ "▁Mar io",
+ "▁Ma rio",
+ "▁Mari o",
+ "▁t ort",
+ "▁to rt",
+ "▁tor t",
+ "b g",
+ "ss l",
+ "s sl",
+ "text tt",
+ "textt t",
+ "▁s park",
+ "▁sp ark",
+ "▁ spark",
+ "ди и",
+ "▁prob able",
+ "%% %%",
+ "ph ia",
+ "phi a",
+ "], [",
+ "] ,[",
+ "▁bo xes",
+ "▁box es",
+ "▁a cadem",
+ "▁ac adem",
+ "▁S lo",
+ "▁Sl o",
+ "äu de",
+ "ä ude",
+ "▁wit ness",
+ "▁ed iting",
+ "▁edit ing",
+ "ли на",
+ "лин а",
+ "▁look up",
+ "▁ lookup",
+ "▁B uck",
+ "▁Bu ck",
+ "▁Buc k",
+ "д ня",
+ "▁j ours",
+ "▁jo urs",
+ "▁jou rs",
+ "▁jour s",
+ "▁ jours",
+ "++ ){",
+ "++) {",
+ "▁ind ices",
+ "▁indic es",
+ "▁f light",
+ "▁fl ight",
+ "▁com putation",
+ "▁comput ation",
+ "Pl ugin",
+ "▁real ize",
+ "▁realiz e",
+ "is set",
+ "iss et",
+ "isse t",
+ "▁deriv ative",
+ "line width",
+ "bu nd",
+ "b und",
+ "▁t hor",
+ "▁th or",
+ "▁. =",
+ "▁ .=",
+ "▁s í",
+ "▁C lick",
+ "▁Cl ick",
+ "▁ Click",
+ "▁Seb ast",
+ "> '",
+ "hav ior",
+ "le i",
+ "l ei",
+ "ul f",
+ "▁ge ometry",
+ "▁geom etry",
+ "▁geomet ry",
+ "▁ geometry",
+ "pr ev",
+ "pre v",
+ "p rev",
+ "em pl",
+ "emp l",
+ "▁L é",
+ "an son",
+ "ans on",
+ "▁A lice",
+ "▁Al ice",
+ "▁Ali ce",
+ "pro totype",
+ "proto type",
+ "RE AD",
+ "ic ular",
+ "icul ar",
+ "i cular",
+ "▁б і",
+ "▁ бі",
+ "▁deutsch e",
+ "▁Re present",
+ "si tes",
+ "site s",
+ "s ites",
+ "▁Me an",
+ "▁d iss",
+ "▁di ss",
+ "▁dis s",
+ "▁Z ur",
+ "▁Zu r",
+ "▁п рез",
+ "▁пре з",
+ "▁пр ез",
+ "PA R",
+ "P AR",
+ "▁' #",
+ "▁D ra",
+ "▁Dr a",
+ "▁ Dra",
+ "со н",
+ "с он",
+ "▁ste ht",
+ "mar kt",
+ "mark t",
+ "▁e ase",
+ "▁eas e",
+ "Draw ing",
+ "Dra wing",
+ "= %",
+ "St op",
+ "Sto p",
+ "S top",
+ "▁s erving",
+ "▁ser ving",
+ "▁serv ing",
+ "▁servi ng",
+ "▁tak że",
+ "▁D NS",
+ "▁liter al",
+ "▁lit eral",
+ "Di e",
+ "D ie",
+ "▁в ос",
+ "▁во с",
+ "▁sen ior",
+ "ac ion",
+ "aci on",
+ "a cion",
+ "▁u buntu",
+ "▁ub untu",
+ "▁ ubuntu",
+ "▁Frank furt",
+ "▁Sun day",
+ "▁Sund ay",
+ "á b",
+ "▁jour ney",
+ "▁journ ey",
+ "is sa",
+ "iss a",
+ "ber ry",
+ "▁s ep",
+ "▁se p",
+ "▁ sep",
+ "▁i on",
+ "▁io n",
+ "▁ ion",
+ "wer t",
+ "we rt",
+ "w ert",
+ "or szág",
+ "orsz ág",
+ "ser ve",
+ "serv e",
+ "s erve",
+ "▁Mil ano",
+ "▁Milan o",
+ "▁ве ка",
+ "ра х",
+ "▁ию ля",
+ "▁man era",
+ "▁st ations",
+ "▁stat ions",
+ "▁station s",
+ "▁stati ons",
+ "▁adopt ed",
+ "▁any body",
+ "VER SION",
+ "F E",
+ "do rf",
+ "dor f",
+ "d orf",
+ ".. .,",
+ "... ,",
+ "▁обра зова",
+ "▁образ ова",
+ "Log ger",
+ "фи циаль",
+ "фици аль",
+ "WR ITE",
+ "▁h am",
+ "▁ha m",
+ "▁ ham",
+ "▁F uture",
+ "▁Fut ure",
+ "▁ Future",
+ "ot en",
+ "ote n",
+ "o ten",
+ "▁A G",
+ "▁ AG",
+ "▁t rained",
+ "▁tr ained",
+ "▁tra ined",
+ "▁train ed",
+ "▁N ich",
+ "▁Nic h",
+ "▁Ni ch",
+ "▁un iversity",
+ "▁univers ity",
+ "▁Olymp ics",
+ "▁Olympic s",
+ "▁d oit",
+ "▁do it",
+ "▁doi t",
+ "▁cult ural",
+ "▁cultura l",
+ "Con f",
+ "▁Con ference",
+ "or no",
+ "orn o",
+ "▁M P",
+ "▁ MP",
+ "▁b ou",
+ "▁bo u",
+ "ci n",
+ "c in",
+ "Hi gh",
+ "H igh",
+ "ann te",
+ "annt e",
+ "▁display ing",
+ "▁ch apter",
+ "▁chap ter",
+ "▁ chapter",
+ "▁Fra uen",
+ "▁Frau en",
+ "▁real ized",
+ "▁realiz ed",
+ "▁realize d",
+ "▁attempt ed",
+ "▁pre ferred",
+ "▁prefer red",
+ "Da t",
+ "D at",
+ "▁tr ouve",
+ "▁tro uve",
+ "▁trou ve",
+ "▁trouv e",
+ "▁int ention",
+ "▁intent ion",
+ "▁inten tion",
+ "▁Not ice",
+ "tim estamp",
+ "* (",
+ "▁Ш а",
+ "an as",
+ "ana s",
+ "a nas",
+ "cl a",
+ "c la",
+ "is z",
+ "i sz",
+ "tb l",
+ "t bl",
+ "Ar r",
+ "A rr",
+ "▁in verse",
+ "▁ter rible",
+ "▁occup ied",
+ "J AX",
+ "< -",
+ "▁Phil osoph",
+ "▁Cor ps",
+ "bu ilder",
+ "build er",
+ "▁beg ins",
+ "▁begin s",
+ "▁c ensus",
+ "▁cens us",
+ ". ’",
+ "▁pro ven",
+ "▁pr oven",
+ "▁prov en",
+ "▁prove n",
+ "met ric",
+ "▁incre ases",
+ "▁increase s",
+ "wi ch",
+ "w ich",
+ "▁A BC",
+ "▁AB C",
+ "▁ ABC",
+ "project s",
+ "▁T hor",
+ "▁Th or",
+ "▁conf idence",
+ "▁u fficiale",
+ "el m",
+ "e lm",
+ "▁g arden",
+ "▁gar den",
+ "▁gard en",
+ "▁rob ust",
+ "▁cos ì",
+ "ie dz",
+ "ied z",
+ "▁Is lam",
+ "▁Add ress",
+ "▁ Address",
+ "▁div ide",
+ "▁divid e",
+ "▁E u",
+ "ca tal",
+ "cat al",
+ "c atal",
+ "de tail",
+ "det ail",
+ "ep endant",
+ "f g",
+ "▁b ew",
+ "▁be w",
+ "▁ bew",
+ "▁f is",
+ "▁fi s",
+ "▁B O",
+ "▁ BO",
+ "▁w sp",
+ "▁ws p",
+ "▁p ipeline",
+ "▁pip eline",
+ "▁pipe line",
+ "h d",
+ "▁S ession",
+ "▁ Session",
+ "lä nd",
+ "l änd",
+ "iv eau",
+ "ive au",
+ "es tr",
+ "est r",
+ "e str",
+ "▁p article",
+ "▁part icle",
+ "▁partic le",
+ "▁parti cle",
+ "▁lar avel",
+ "▁ laravel",
+ "pi c",
+ "p ic",
+ "▁n au",
+ "▁na u",
+ "▁f ins",
+ "▁fin s",
+ "▁fi ns",
+ "▁V il",
+ "▁Vi l",
+ "▁f us",
+ "▁fu s",
+ "▁qu asi",
+ "oper ation",
+ "opera tion",
+ "▁al ler",
+ "▁all er",
+ "▁alle r",
+ "▁ aller",
+ "▁an aly",
+ "▁anal y",
+ "▁ analy",
+ "▁О н",
+ "▁M es",
+ "▁Me s",
+ "▁о пера",
+ "▁оп ера",
+ "▁hand led",
+ "▁handle d",
+ "▁de prec",
+ "▁dep rec",
+ "tt o",
+ "t to",
+ "▁E k",
+ "▁st ran",
+ "▁str an",
+ "▁stra n",
+ "▁ang lais",
+ "ju re",
+ "j ure",
+ "▁Sil ver",
+ "▁close ly",
+ "▁clos ely",
+ "en kins",
+ "enk ins",
+ "an os",
+ "ano s",
+ "a nos",
+ "st ed",
+ "ste d",
+ "s ted",
+ "▁сент ября",
+ "br and",
+ "bra nd",
+ "b rand",
+ "нь о",
+ "▁prés ent",
+ "▁pré sent",
+ "ro k",
+ "r ok",
+ "mo unt",
+ "m ount",
+ "▁Anth ony",
+ "▁Further more",
+ "in ha",
+ "▁ар хи",
+ "▁раз ли",
+ "▁окт ября",
+ "▁p int",
+ "▁pi nt",
+ "▁pin t",
+ "n ý",
+ "pt s",
+ "p ts",
+ "▁ital ien",
+ "▁ре ги",
+ "ле з",
+ "л ез",
+ "ди на",
+ "дин а",
+ "ather ine",
+ "In ternal",
+ "Int ernal",
+ "Inter nal",
+ "Intern al",
+ "Qu estion",
+ "▁sett lement",
+ "▁В се",
+ "▁fol ders",
+ "▁folder s",
+ "д ри",
+ "▁val or",
+ "▁va lor",
+ "▁M iller",
+ "▁Mil ler",
+ "▁Mill er",
+ "▁As sert",
+ "▁Ass ert",
+ "▁ Assert",
+ "▁pat ient",
+ "▁N ieder",
+ "▁Ni eder",
+ "▁Nie der",
+ "▁Nied er",
+ "▁E P",
+ "▁ EP",
+ "▁A gr",
+ "▁Ag r",
+ "▁o nde",
+ "▁on de",
+ "▁ onde",
+ "▁s cop",
+ "▁sc op",
+ "▁ scop",
+ "se quence",
+ "sequ ence",
+ "▁P L",
+ "▁ PL",
+ "▁se ek",
+ "▁see k",
+ "java se",
+ "jav ase",
+ "▁V ector",
+ "▁Ve ctor",
+ "▁Vec tor",
+ "▁ Vector",
+ "▁n á",
+ "▁ ná",
+ "▁categor ía",
+ "cl one",
+ "clo ne",
+ "N R",
+ "av ailable",
+ "▁B esch",
+ "▁Be sch",
+ "▁Bes ch",
+ "▁e clipse",
+ "▁ec lipse",
+ "▁ eclipse",
+ "wick lung",
+ "dep loy",
+ "en ie",
+ "eni e",
+ "e nie",
+ "▁\" )",
+ "▁ \")",
+ "äs t",
+ "ä st",
+ "▁s ync",
+ "▁syn c",
+ "▁sy nc",
+ "▁ sync",
+ "CO DE",
+ "▁Ч е",
+ "▁flo ating",
+ "▁float ing",
+ "/ `",
+ "▁ret ired",
+ "▁retir ed",
+ "de b",
+ "d eb",
+ "▁part icul",
+ "▁partic ul",
+ "▁parti cul",
+ "▁coll ected",
+ "▁collect ed",
+ "▁colle cted",
+ "▁down loaded",
+ "▁download ed",
+ "ni ce",
+ "nic e",
+ "n ice",
+ "▁B uffer",
+ "▁Buff er",
+ "▁ Buffer",
+ "▁Acc ount",
+ "▁Ac count",
+ "▁ Account",
+ "▁m aggio",
+ "▁mag gio",
+ "▁ре да",
+ "▁ред а",
+ "▁s ales",
+ "▁sa les",
+ "▁sal es",
+ "▁sale s",
+ "▁statunit ense",
+ "▁K i",
+ "▁F err",
+ "▁Fe rr",
+ "▁Fer r",
+ "Lo ck",
+ "Loc k",
+ "L ock",
+ "▁Is abel",
+ "▁Isa bel",
+ "cl ar",
+ "cla r",
+ "c lar",
+ "▁p ov",
+ "▁po v",
+ "at ra",
+ "atr a",
+ "a tra",
+ "▁Fr au",
+ "▁Fra u",
+ "▁sort ing",
+ "▁sor ting",
+ "▁sorti ng",
+ "▁phr ase",
+ "▁апре ля",
+ "▁дея тель",
+ "▁And ré",
+ "def inition",
+ "defin ition",
+ "writ ing",
+ "wr iting",
+ "ér é",
+ "é ré",
+ "щ у",
+ "▁O rd",
+ "▁Or d",
+ "▁ Ord",
+ "▁r um",
+ "▁ru m",
+ "▁ rum",
+ "▁T urk",
+ "▁Tur k",
+ "▁I van",
+ "th eless",
+ "the less",
+ "▁г и",
+ "▁ ги",
+ "▁s ake",
+ "▁sa ke",
+ "▁B ased",
+ "▁Bas ed",
+ "▁Ba sed",
+ "▁Base d",
+ "de ck",
+ "dec k",
+ "or us",
+ "oru s",
+ "o rus",
+ "▁tut ti",
+ "▁b lan",
+ "▁bl an",
+ "▁bla n",
+ "▁П у",
+ "De tail",
+ "Det ail",
+ "▁Н о",
+ "▁S ky",
+ "▁Sk y",
+ "▁p rès",
+ "▁pr ès",
+ "▁ près",
+ "мо й",
+ "col n",
+ "co ln",
+ "че ской",
+ "et i",
+ "e ti",
+ "▁ar row",
+ "▁arr ow",
+ "▁ arrow",
+ "▁C ha",
+ "▁Ch a",
+ "ch mark",
+ "œ ur",
+ "fa b",
+ "f ab",
+ "ку ль",
+ "Grid View",
+ "▁Back ground",
+ "▁ Background",
+ "s n",
+ "▁segu ito",
+ "▁n ic",
+ "▁ni c",
+ "▁ nic",
+ "co u",
+ "c ou",
+ "ті в",
+ "т ів",
+ "▁b zw",
+ "add EventListener",
+ "syn c",
+ "s ync",
+ "az zo",
+ "azz o",
+ "ab stract",
+ "as sets",
+ "ass ets",
+ "asse ts",
+ "asset s",
+ "▁D ru",
+ "▁Dr u",
+ "з д",
+ "ord net",
+ "▁b igger",
+ "▁big ger",
+ "▁initial ized",
+ "▁initialize d",
+ "ка з",
+ "og ene",
+ "ogen e",
+ "oge ne",
+ "vi ously",
+ "vious ly",
+ "v iously",
+ "▁g uid",
+ "▁gu id",
+ "scheid ung",
+ "▁Z ent",
+ "▁Ze nt",
+ "▁fr ames",
+ "▁frame s",
+ "▁fra mes",
+ "▁fram es",
+ "▁ frames",
+ "ri eben",
+ "rie ben",
+ "rieb en",
+ "r ieben",
+ "▁iss ued",
+ "▁issue d",
+ "▁issu ed",
+ "▁d ow",
+ "▁do w",
+ "▁descri bes",
+ "▁describe s",
+ "il st",
+ "ils t",
+ "i lst",
+ "▁c riteria",
+ "▁crit eria",
+ "▁criter ia",
+ "▁gentle man",
+ "Bas ic",
+ "ne z",
+ "n ez",
+ "De v",
+ "D ev",
+ "Mo ve",
+ "M ove",
+ "▁est aba",
+ "▁estab a",
+ "▁esta ba",
+ "▁set tembre",
+ "▁sett embre",
+ "circ le",
+ "cir cle",
+ "▁f ais",
+ "▁fa is",
+ "▁m yst",
+ "▁my st",
+ "▁arch iv",
+ "▁ archiv",
+ "d ynamic",
+ "j à",
+ "it as",
+ "ita s",
+ "▁я кий",
+ "▁d or",
+ "▁do r",
+ "▁ dor",
+ "▁Am azon",
+ "▁Ama zon",
+ "▁ne ces",
+ "▁Mar cel",
+ "▁Marc el",
+ "▁e lla",
+ "▁el la",
+ "▁ell a",
+ "▁ ella",
+ "ро к",
+ "р ок",
+ "▁Pennsylvan ia",
+ "cul ar",
+ "cu lar",
+ "c ular",
+ "Pa ck",
+ "P ack",
+ "it age",
+ "ita ge",
+ "▁B urn",
+ "▁Bu rn",
+ "▁Bur n",
+ "▁R O",
+ "▁ RO",
+ "▁о ни",
+ "▁он и",
+ "▁ они",
+ "~ $",
+ "Te X",
+ "as sign",
+ "ass ign",
+ "▁be at",
+ "id ense",
+ "iden se",
+ "ac ent",
+ "ace nt",
+ "a cent",
+ "Al ert",
+ "▁str ateg",
+ "▁strat eg",
+ "▁mån aden",
+ "LO C",
+ "L OC",
+ "▁c atalog",
+ "▁cat alog",
+ "▁catal og",
+ "▁ catalog",
+ "print StackTrace",
+ "() ).",
+ "()) .",
+ "( )).",
+ "us ted",
+ "ust ed",
+ "u sted",
+ "▁Frame work",
+ "▁ Framework",
+ "EC K",
+ "E CK",
+ "▁a té",
+ "▁at é",
+ "Frame work",
+ "▁att acks",
+ "▁attack s",
+ "▁B ert",
+ "▁Be rt",
+ "▁Ber t",
+ "▁т ран",
+ "▁тра н",
+ ": %",
+ "ar si",
+ "ars i",
+ "not ation",
+ "▁log ical",
+ "▁logic al",
+ "we et",
+ "▁vis ited",
+ "▁visit ed",
+ "br u",
+ "b ru",
+ "▁sur prise",
+ "▁surpr ise",
+ "^ ^",
+ "in ale",
+ "inal e",
+ "ina le",
+ "rem ote",
+ "'} ,",
+ "' },",
+ "Syn tax",
+ "S yntax",
+ "ia ne",
+ "ian e",
+ "i ane",
+ "on nen",
+ "onn en",
+ "onne n",
+ "▁bre aking",
+ "▁break ing",
+ "par ser",
+ "parse r",
+ "ap k",
+ "a pk",
+ "▁Mig uel",
+ "▁ §",
+ "▁act ing",
+ "▁ac ting",
+ "▁g ebru",
+ "▁ge bru",
+ "▁geb ru",
+ "At Index",
+ "ють ся",
+ "ю ться",
+ "▁of fers",
+ "▁off ers",
+ "▁offer s",
+ "▁p rac",
+ "▁pr ac",
+ "▁pra c",
+ "▁g rant",
+ "▁gr ant",
+ "▁gra nt",
+ "▁gran t",
+ "tern oon",
+ "▁ac quired",
+ "▁acqu ired",
+ "▁N y",
+ "▁com ma",
+ "▁comm a",
+ "ní k",
+ "n ík",
+ "▁St ep",
+ "▁Ste p",
+ "▁ Step",
+ "in ners",
+ "inn ers",
+ "inner s",
+ "▁S A",
+ "▁ SA",
+ "▁w at",
+ "▁wa t",
+ "da ys",
+ "day s",
+ "d ays",
+ "▁rect angle",
+ "da r",
+ "d ar",
+ "▁t rac",
+ "▁tr ac",
+ "▁tra c",
+ "▁Ind ones",
+ "▁feed back",
+ "▁bre aks",
+ "▁break s",
+ "part ition",
+ "ic ans",
+ "ica ns",
+ "ican s",
+ "▁Not ices",
+ "▁Notice s",
+ "▁impro ved",
+ "▁improve d",
+ "▁improv ed",
+ "▁impr oved",
+ "ph an",
+ "pha n",
+ "p han",
+ "▁differ ential",
+ "▁different ial",
+ "▁differenti al",
+ "script s",
+ "scri pts",
+ "▁X III",
+ "▁XII I",
+ "▁XI II",
+ "▁L abor",
+ "▁La bor",
+ "▁Lab or",
+ "▁prec ision",
+ "▁precis ion",
+ "▁s eed",
+ "▁se ed",
+ "▁see d",
+ "▁ seed",
+ "bund le",
+ "b undle",
+ "id ents",
+ "ident s",
+ "iden ts",
+ "hr e",
+ "h re",
+ "▁Doug las",
+ "ul d",
+ "u ld",
+ "▁second ary",
+ "▁seconda ry",
+ "▁b rig",
+ "▁br ig",
+ "▁confirm ed",
+ "▁confir med",
+ "▁cla ims",
+ "▁claim s",
+ "Ro le",
+ "R ole",
+ "▁Jew ish",
+ "▁p řed",
+ "▁př ed",
+ "▁ho tel",
+ "▁hot el",
+ "▁comp te",
+ "▁compt e",
+ "▁rec ursive",
+ "▁recurs ive",
+ "](# )",
+ "▁rot ate",
+ "▁ rotate",
+ "▁ch rome",
+ "▁chr ome",
+ "▁chrom e",
+ "▁ chrome",
+ "in ea",
+ "ine a",
+ "i nea",
+ "%; \r",
+ "% ;\r",
+ "▁En vironment",
+ "▁ Environment",
+ "pl atz",
+ "pla tz",
+ "▁Sing le",
+ "▁Sin gle",
+ "▁ Single",
+ "▁s event",
+ "▁se vent",
+ "▁seven t",
+ "▁pos ting",
+ "▁post ing",
+ "▁de aling",
+ "▁deal ing",
+ "param eters",
+ "parameter s",
+ "гра ф",
+ "Auth entication",
+ "to uch",
+ "t ouch",
+ "A z",
+ "▁g ray",
+ "▁gr ay",
+ "▁gra y",
+ "▁ gray",
+ "en cing",
+ "enc ing",
+ "enci ng",
+ "bold math",
+ "▁сай те",
+ "▁сайт е",
+ "▁Z a",
+ "an je",
+ "▁p olar",
+ "▁po lar",
+ "▁pol ar",
+ "▁у ли",
+ "ki l",
+ "k il",
+ "▁h over",
+ "▁ho ver",
+ "▁ hover",
+ "▁RE ST",
+ "▁C ome",
+ "▁Com e",
+ "▁Co me",
+ "▁ Come",
+ "j b",
+ "▁Georg ia",
+ "▁Est ado",
+ "▁Esta do",
+ "▁Estad o",
+ "Output Stream",
+ "ћ и",
+ "▁d ump",
+ "▁du mp",
+ "▁ dump",
+ "▁A ge",
+ "▁Ag e",
+ "▁ Age",
+ "▁s wo",
+ "▁sw o",
+ "m obile",
+ "oc cup",
+ "occ up",
+ "ше го",
+ "ш его",
+ "▁const itution",
+ "▁constitu tion",
+ "▁constit ution",
+ "go od",
+ "g ood",
+ "ak u",
+ "a ku",
+ "▁а нг",
+ "▁ан г",
+ "▁ анг",
+ "ie ck",
+ "iec k",
+ "▁Ps ych",
+ "▁ro ots",
+ "▁root s",
+ "▁v est",
+ "▁ve st",
+ "▁ves t",
+ "▁ vest",
+ "▁го дах",
+ "▁года х",
+ "▁Rep ública",
+ "▁p ian",
+ "▁pi an",
+ "▁pia n",
+ "igr ation",
+ "▁pr éc",
+ "▁pré c",
+ "▁gener ates",
+ "▁generate s",
+ "L Y",
+ "( `",
+ "▁= ~",
+ "ше ния",
+ "▁R ah",
+ "▁Ra h",
+ "▁connect ing",
+ "ž í",
+ "▁f ő",
+ "▁a ppel",
+ "▁app el",
+ "▁ap pel",
+ "▁appe l",
+ "▁Rail way",
+ "г ли",
+ "▁dével opp",
+ "▁a po",
+ "▁ap o",
+ "fr an",
+ "fra n",
+ "f ran",
+ "▁im mediate",
+ "▁immedi ate",
+ "во го",
+ "в ого",
+ "Run ner",
+ "ä g",
+ "Some thing",
+ "S omething",
+ "▁gén éra",
+ "Event Args",
+ "in ction",
+ "inc tion",
+ "inct ion",
+ "gl y",
+ "g ly",
+ "▁D ue",
+ "▁Du e",
+ "▁p rost",
+ "▁pro st",
+ "▁pr ost",
+ "▁pros t",
+ "▁refer ring",
+ "▁j og",
+ "▁jo g",
+ "▁exec utable",
+ "▁execut able",
+ "▁D ream",
+ "▁Dre am",
+ "ac s",
+ "a cs",
+ "▁C ole",
+ "▁Col e",
+ "▁Co le",
+ "am pf",
+ "amp f",
+ "▁B is",
+ "▁Bi s",
+ "▁ию ня",
+ "li eder",
+ "lied er",
+ "lie der",
+ "l ieder",
+ "те к",
+ "т ек",
+ "▁v b",
+ "▁ vb",
+ "▁m om",
+ "▁mo m",
+ "▁: (",
+ "▁ :(",
+ "▁der nier",
+ "▁derni er",
+ "' =>",
+ "▁э того",
+ "▁это го",
+ "▁ne ue",
+ "▁neu e",
+ "▁Ч а",
+ "▁weiter e",
+ "▁weit ere",
+ "▁al leg",
+ "▁all eg",
+ "▁alle g",
+ "▁re ality",
+ "▁real ity",
+ "▁jud ge",
+ "▁B alt",
+ "▁Ba lt",
+ "▁Bal t",
+ "▁t hin",
+ "▁th in",
+ "▁G ed",
+ "▁Ge d",
+ "ie val",
+ "iev al",
+ "i eval",
+ "m x",
+ "ці ональ",
+ "▁вы пу",
+ "▁I X",
+ "▁ IX",
+ "▁bl ind",
+ "▁Mo tor",
+ "▁Mot or",
+ "▁ш а",
+ "▁ ша",
+ "▁approxim ation",
+ "da m",
+ "d am",
+ "▁f og",
+ "▁fo g",
+ "▁ fog",
+ "ко р",
+ "к ор",
+ "▁W rit",
+ "▁l ing",
+ "▁li ng",
+ "▁lin g",
+ "▁ ling",
+ "▁пи са",
+ "▁ писа",
+ "▁M ars",
+ "▁Mar s",
+ "▁Ma rs",
+ "ot ti",
+ "ott i",
+ "En um",
+ "E num",
+ "▁T rib",
+ "▁Tr ib",
+ "▁Tri b",
+ "▁m erc",
+ "▁me rc",
+ "▁mer c",
+ "zu ng",
+ "z ung",
+ "van ced",
+ "v anced",
+ "cf g",
+ "c fg",
+ "на х",
+ "sch en",
+ "sc hen",
+ "sche n",
+ "s chen",
+ "\"] .",
+ "\" ].",
+ "be k",
+ "b ek",
+ "▁s ter",
+ "▁st er",
+ "▁ste r",
+ "▁ ster",
+ "j p",
+ "▁R ap",
+ "▁Ra p",
+ "▁rec ording",
+ "▁record ing",
+ "▁pe int",
+ "▁l ets",
+ "▁le ts",
+ "▁let s",
+ "▁ lets",
+ "än ge",
+ "äng e",
+ ">\" ;",
+ "> \";",
+ "▁міс це",
+ "▁c aval",
+ "▁ca val",
+ "▁cav al",
+ "▁C SV",
+ "▁CS V",
+ "▁ent stand",
+ "▁hel per",
+ "▁help er",
+ "▁ helper",
+ "en det",
+ "end et",
+ "ende t",
+ "▁G ram",
+ "▁Gr am",
+ "▁Gra m",
+ "▁D iego",
+ "▁Die go",
+ "▁Di ego",
+ "▁B ishop",
+ "▁Bi shop",
+ "TA G",
+ "T AG",
+ "▁e cc",
+ "▁ec c",
+ "▁E en",
+ "▁A V",
+ "▁ AV",
+ "C ity",
+ "▁Gu ide",
+ "hi nd",
+ "hin d",
+ "h ind",
+ "ri cal",
+ "ric al",
+ "rica l",
+ "r ical",
+ "▁Ос нов",
+ "Bu s",
+ "B us",
+ "▁z unächst",
+ "▁t ick",
+ "▁ti ck",
+ "▁ tick",
+ "▁Col onel",
+ "Th anks",
+ "Thank s",
+ "▁f erm",
+ "▁fe rm",
+ "▁fer m",
+ "▁gr anted",
+ "▁gran ted",
+ "▁grant ed",
+ "▁th reshold",
+ "omorph ic",
+ "▁H un",
+ "▁Hu n",
+ "en is",
+ "eni s",
+ "e nis",
+ "▁п рав",
+ "▁пра в",
+ "▁ прав",
+ "▁я кі",
+ "▁як і",
+ "P G",
+ "▁w s",
+ "▁ ws",
+ "▁techn ical",
+ "▁techni cal",
+ "est ro",
+ "estr o",
+ "kl är",
+ "k lär",
+ "va rs",
+ "var s",
+ "v ars",
+ "oc rat",
+ "ocr at",
+ "▁оп шти",
+ "on so",
+ "ons o",
+ "ib a",
+ "i ba",
+ "▁S ave",
+ "▁Sa ve",
+ "▁Sav e",
+ "▁ Save",
+ "▁program a",
+ "▁в ъ",
+ "▁inv ån",
+ ">( )",
+ "> ()",
+ "▁me jor",
+ "▁с лова",
+ "▁сло ва",
+ "▁rep lacement",
+ "▁replace ment",
+ "▁repla cement",
+ "▁im pr",
+ "▁imp r",
+ "▁Frances co",
+ "▁Ho tel",
+ "▁Hot el",
+ "▁UP DATE",
+ "▁ UPDATE",
+ "▁му зы",
+ "ug s",
+ "u gs",
+ "va rd",
+ "var d",
+ "v ard",
+ "▁f az",
+ "▁fa z",
+ "in ton",
+ "int on",
+ "into n",
+ "▁ar ts",
+ "▁art s",
+ "▁ arts",
+ "▁K y",
+ "▁I ls",
+ "▁Il s",
+ "▁s era",
+ "▁se ra",
+ "▁ser a",
+ "▁Vol ume",
+ "▁ Volume",
+ "▁gi ugno",
+ "▁a sym",
+ "▁as ym",
+ "▁P ir",
+ "▁Pi r",
+ "▁N AS",
+ "▁NA S",
+ "▁T am",
+ "▁Ta m",
+ "ě l",
+ "Se qu",
+ "Seq u",
+ "S equ",
+ "km al",
+ "k mal",
+ "▁E ins",
+ "▁Ein s",
+ "▁ком па",
+ "▁комп а",
+ "ob e",
+ "o be",
+ "oo r",
+ "o or",
+ "▁he ap",
+ "ct l",
+ "c tl",
+ "▁separ ately",
+ "▁separate ly",
+ "re ader",
+ "read er",
+ "rea der",
+ "▁signific antly",
+ "▁significant ly",
+ "▁L ag",
+ "▁La g",
+ "no tes",
+ "not es",
+ "note s",
+ "n otes",
+ "▁s ele",
+ "▁se le",
+ "▁sel e",
+ "▁dedic ated",
+ "▁H ost",
+ "▁Ho st",
+ "▁ Host",
+ "cho ice",
+ "wi ng",
+ "win g",
+ "w ing",
+ "▁T itel",
+ "▁Tit el",
+ "▁Ti tel",
+ "▁befind et",
+ "lar ge",
+ "larg e",
+ "▁con ten",
+ "▁cont en",
+ "▁co nten",
+ "▁conte n",
+ "Java Script",
+ "▁de ser",
+ "▁des er",
+ "▁G ordon",
+ "▁Gor don",
+ "с пе",
+ "▁p atri",
+ "▁pat ri",
+ "▁pa tri",
+ "▁patr i",
+ "▁R andom",
+ "▁Rand om",
+ "▁Ran dom",
+ "▁ Random",
+ "▁Return s",
+ "ы м",
+ "ро ма",
+ "ром а",
+ "▁Stud ies",
+ "S l",
+ "▁fr ü",
+ "TE XT",
+ "T EXT",
+ "in ate",
+ "ina te",
+ "▁T ol",
+ "▁To l",
+ "▁every where",
+ "ar ta",
+ "art a",
+ "▁or bit",
+ "▁orb it",
+ "▁A ires",
+ "▁Air es",
+ "▁I ss",
+ "▁Is s",
+ "▁te ż",
+ "▁d iverse",
+ "▁di verse",
+ "▁divers e",
+ "▁diver se",
+ "▁n umeric",
+ "▁numer ic",
+ "▁ numeric",
+ "ma z",
+ "m az",
+ "▁m ise",
+ "▁mi se",
+ "▁mis e",
+ "▁batt ery",
+ "▁batter y",
+ "▁bat tery",
+ "▁A kadem",
+ "▁Ak adem",
+ "не ние",
+ "▁simult ane",
+ "▁D ead",
+ "▁De ad",
+ "▁cl ust",
+ "▁ot ro",
+ "▁c erca",
+ "▁cer ca",
+ "() `,",
+ "()` ,",
+ "( )`,",
+ "ro z",
+ "r oz",
+ "ă t",
+ "▁M O",
+ "▁ MO",
+ "ri ften",
+ "rift en",
+ "rif ten",
+ "import ant",
+ "▁je ho",
+ "▁find ViewById",
+ "▁ findViewById",
+ "▁con sequence",
+ "▁conse quence",
+ "▁consequ ence",
+ "▁measure d",
+ "▁meas ured",
+ "is hes",
+ "ish es",
+ "▁s ze",
+ "▁sz e",
+ "ien do",
+ "i endo",
+ "▁W ahl",
+ "▁Wa hl",
+ "st rip",
+ "str ip",
+ "AR D",
+ "▁op acity",
+ "▁ opacity",
+ "WOR D",
+ "W ORD",
+ "▁В і",
+ "▁L ocation",
+ "▁Lo cation",
+ "▁Loc ation",
+ "▁ Location",
+ "ra i",
+ "r ai",
+ "пе н",
+ "п ен",
+ "▁r if",
+ "▁ri f",
+ "▁ rif",
+ "auss ian",
+ "File Name",
+ "▁dis co",
+ "▁disc o",
+ "il en",
+ "ile n",
+ "i len",
+ "▁v agy",
+ "▁va gy",
+ "li city",
+ "lic ity",
+ "licit y",
+ "l icity",
+ "B order",
+ "▁T rack",
+ "▁Tr ack",
+ "▁Tra ck",
+ "▁ Track",
+ "бо м",
+ "б ом",
+ "fa ct",
+ "fac t",
+ "f act",
+ "ok a",
+ "o ka",
+ "▁g ior",
+ "▁gi or",
+ "▁ gior",
+ "▁XV II",
+ "▁XVI I",
+ "▁d är",
+ "Si te",
+ "S ite",
+ "ał o",
+ "a ło",
+ "sk á",
+ "s ká",
+ "▁pix els",
+ "▁pixel s",
+ "vi ty",
+ "v ity",
+ "j Query",
+ "▁sc ulpt",
+ "▁c argo",
+ "▁car go",
+ "▁direct ive",
+ "▁w al",
+ "▁wa l",
+ "▁ wal",
+ "▁c onna",
+ "▁con na",
+ "▁conn a",
+ "▁Th rough",
+ "▁э том",
+ "▁это м",
+ "St atic",
+ "Stat ic",
+ "oms nitt",
+ "▁r und",
+ "▁run d",
+ "▁ru nd",
+ "▁ rund",
+ "▁c laimed",
+ "▁claim ed",
+ "з ня",
+ "sh a",
+ "s ha",
+ "▁r ag",
+ "▁ra g",
+ "▁ rag",
+ "cre ment",
+ "cr ement",
+ "▁fün f",
+ "▁r ival",
+ "▁riv al",
+ "▁ri val",
+ "▁ rival",
+ "ri n",
+ "r in",
+ "sl ash",
+ "▁th irty",
+ "s leep",
+ "оло ги",
+ "о логи",
+ "S M",
+ "ga te",
+ "gat e",
+ "g ate",
+ "iz ations",
+ "ization s",
+ "vi k",
+ "v ik",
+ "▁b less",
+ "▁bl ess",
+ "▁ble ss",
+ "▁Ill inois",
+ "▁T E",
+ "▁ TE",
+ "ut ing",
+ "uti ng",
+ "u ting",
+ "▁sol ving",
+ "GE R",
+ "G ER",
+ "▁X IV",
+ "▁XI V",
+ "▁Ind ians",
+ "▁India ns",
+ "▁Indian s",
+ "ex press",
+ "exp ress",
+ "expr ess",
+ "▁H eil",
+ "▁He il",
+ "▁mu jer",
+ "▁invån are",
+ "'] );",
+ "']) ;",
+ "' ]);",
+ "▁a ur",
+ "▁au r",
+ "▁ aur",
+ "bo ost",
+ "G O",
+ "▁n in",
+ "▁ni n",
+ "to k",
+ "t ok",
+ "go d",
+ "g od",
+ "ot er",
+ "ote r",
+ "o ter",
+ ")$ $",
+ ") $$",
+ "▁desc end",
+ "р ю",
+ "▁L anguage",
+ "▁ Language",
+ "▁d iver",
+ "▁di ver",
+ "▁div er",
+ "▁Ass uming",
+ "▁fre quent",
+ "▁frequ ent",
+ "ч ні",
+ "▁Bi ography",
+ ", [",
+ "ur m",
+ "u rm",
+ "▁walk ed",
+ "▁wal ked",
+ "▁feder al",
+ "▁fed eral",
+ "▁Mich igan",
+ "▁fact s",
+ "▁fac ts",
+ "▁In tegr",
+ "▁Int egr",
+ "▁ Integr",
+ "LE S",
+ "L ES",
+ "▁A lan",
+ "▁Al an",
+ "▁c oup",
+ "▁co up",
+ "▁cou p",
+ "Be r",
+ "B er",
+ "▁p articles",
+ "▁part icles",
+ "▁partic les",
+ "▁particle s",
+ "▁parti cles",
+ "ћ е",
+ "Infl ater",
+ "+ (",
+ "Bo und",
+ "B ound",
+ "▁S ü",
+ "A udio",
+ "cite t",
+ "cit et",
+ "c itet",
+ "ye ct",
+ "y ect",
+ "▁n r",
+ "▁ nr",
+ "x e",
+ "▁B run",
+ "▁Br un",
+ "▁Bru n",
+ "▁_ ,",
+ "▁ _,",
+ "av or",
+ "avo r",
+ "a vor",
+ "▁dis cipl",
+ "al m",
+ "a lm",
+ "▁но ября",
+ "▁S SL",
+ "▁SS L",
+ "▁ SSL",
+ "▁Ka iser",
+ "▁Kais er",
+ "▁re cher",
+ "▁rec her",
+ "yg on",
+ "y gon",
+ "▁regard less",
+ "▁config ur",
+ "▁un necess",
+ "▁Cl ark",
+ "▁Clar k",
+ "PH P",
+ "P HP",
+ "▁F ALSE",
+ "▁ FALSE",
+ "▁p ad",
+ "▁pa d",
+ "▁ pad",
+ "$ }",
+ "▁v alu",
+ "▁val u",
+ "▁va lu",
+ "▁ valu",
+ "▁dise ase",
+ "▁ma ior",
+ "▁mai or",
+ "▁h ommes",
+ "▁hom mes",
+ "▁homme s",
+ "▁Ed ition",
+ "▁Edit ion",
+ "sl ant",
+ "s lant",
+ "▁en ding",
+ "▁end ing",
+ "▁ ending",
+ "▁sett led",
+ "ur us",
+ "uru s",
+ "u rus",
+ "he d",
+ "h ed",
+ "Pat tern",
+ "▁го дина",
+ "▁годи на",
+ "▁Phil adel",
+ "tikz picture",
+ "▁co al",
+ "▁s ede",
+ "▁se de",
+ "▁sed e",
+ "▁satisf ies",
+ "▁t rim",
+ "▁tr im",
+ "▁tri m",
+ "▁ trim",
+ "▁b at",
+ "▁ba t",
+ "▁ bat",
+ "▁améric ain",
+ "▁lug lio",
+ "▁по ча",
+ "▁поч а",
+ "ff ff",
+ "fff f",
+ "f fff",
+ "▁T arget",
+ "▁Tar get",
+ "▁ Target",
+ "gener ate",
+ "▁Z ie",
+ "ți a",
+ "ț ia",
+ "▁g ard",
+ "▁gar d",
+ "▁ga rd",
+ "▁work ers",
+ "▁worker s",
+ "▁J ob",
+ "▁Jo b",
+ "▁ Job",
+ "▁ur ban",
+ "▁urb an",
+ "▁ urban",
+ "ah len",
+ "ahl en",
+ "a hlen",
+ "▁Build ing",
+ "▁n eu",
+ "▁ne u",
+ "▁ch ron",
+ "▁chr on",
+ "▁ chron",
+ "▁Ear l",
+ "gr o",
+ "g ro",
+ "US E",
+ "U SE",
+ "▁X II",
+ "▁XI I",
+ "▁we alth",
+ "▁ wealth",
+ "in ae",
+ "ina e",
+ "▁Б ра",
+ "▁li bert",
+ "▁lib ert",
+ "▁liber t",
+ "ir os",
+ "iro s",
+ "i ros",
+ ": $",
+ "le e",
+ "l ee",
+ "ie ves",
+ "ieve s",
+ "iev es",
+ "▁Just ice",
+ "▁o il",
+ "▁Ath let",
+ "▁c lo",
+ "▁cl o",
+ "▁ clo",
+ "Sc ale",
+ "Scal e",
+ "▁l ips",
+ "▁li ps",
+ "▁lip s",
+ "▁a pril",
+ "▁ap ril",
+ "▁apr il",
+ "▁im pression",
+ "▁imp ression",
+ "▁impr ession",
+ "▁impress ion",
+ "▁per ce",
+ "▁уча сти",
+ "▁участ и",
+ "vi l",
+ "v il",
+ "éc h",
+ "é ch",
+ "▁e quality",
+ "▁equ ality",
+ "▁equal ity",
+ "▁ equality",
+ "▁м ет",
+ "▁ме т",
+ "▁ мет",
+ "▁an notation",
+ "▁annot ation",
+ "▁ annotation",
+ "er nal",
+ "ern al",
+ "erna l",
+ "▁M ach",
+ "▁Ma ch",
+ "▁Mac h",
+ "▁int itul",
+ "pro blem",
+ "prob lem",
+ "ющи х",
+ "ю щих",
+ "op lus",
+ "o plus",
+ "▁thous ands",
+ "▁thousand s",
+ "▁calcul ations",
+ "▁calculation s",
+ "▁calc ulations",
+ "um ps",
+ "ump s",
+ "▁tri angle",
+ "▁ triangle",
+ "ph al",
+ "pha l",
+ "p hal",
+ "▁D orf",
+ "▁Do rf",
+ "▁Dor f",
+ "▁doll ars",
+ "▁d enen",
+ "▁de nen",
+ "▁den en",
+ "l ès",
+ "ol id",
+ "oli d",
+ "▁Result s",
+ "▁ Results",
+ "▁Stad ium",
+ "▁D esp",
+ "▁De sp",
+ "▁Des p",
+ "▁E isen",
+ "im ir",
+ "imi r",
+ "i mir",
+ "▁s otto",
+ "▁so tto",
+ "▁sott o",
+ "▁č i",
+ "▁ či",
+ "at able",
+ "ata ble",
+ "a table",
+ "or um",
+ "oru m",
+ "o rum",
+ "▁conver gence",
+ "▁je une",
+ "▁jeu ne",
+ "ok ing",
+ "oki ng",
+ "o king",
+ "▁жи во",
+ "ain ing",
+ "ai ning",
+ "a ining",
+ "po inter",
+ "point er",
+ "cul o",
+ "cu lo",
+ "c ulo",
+ "▁js ou",
+ "▁g rab",
+ "▁gr ab",
+ "▁gra b",
+ "ak te",
+ "akt e",
+ "a kte",
+ "▁ho ping",
+ "▁hop ing",
+ "▁M ak",
+ "▁Ma k",
+ "▁s ag",
+ "▁sa g",
+ "origin e",
+ "orig ine",
+ "▁по след",
+ "▁после д",
+ "▁V eg",
+ "▁Ve g",
+ "▁the oret",
+ "▁T ru",
+ "▁Tr u",
+ "ne ment",
+ "nem ent",
+ "n ement",
+ "▁f aces",
+ "▁fa ces",
+ "▁face s",
+ "▁fac es",
+ "▁ faces",
+ "H or",
+ "Jo in",
+ "J oin",
+ "ar el",
+ "are l",
+ "a rel",
+ "▁о коло",
+ "▁ок оло",
+ "How ever",
+ "▁c atal",
+ "▁ca tal",
+ "▁cat al",
+ "▁ catal",
+ "bo urg",
+ "bour g",
+ "b ourg",
+ "▁mysql i",
+ "▁mysq li",
+ "▁ mysqli",
+ "ac ions",
+ "acion s",
+ "aci ons",
+ "▁Init ial",
+ "▁ Initial",
+ "▁r ain",
+ "▁ra in",
+ "▁ rain",
+ "it ure",
+ "itu re",
+ "▁Sci ences",
+ "▁Science s",
+ "▁Kre is",
+ "._ _",
+ ". __",
+ "▁cin q",
+ "▁A uß",
+ "▁Au ß",
+ "ith met",
+ "it ors",
+ "ito rs",
+ "itor s",
+ "am azon",
+ "ama zon",
+ "▁g ap",
+ "▁ga p",
+ "▁ign ored",
+ "▁ignore d",
+ "▁ignor ed",
+ "ad v",
+ "ко ї",
+ "▁ча сть",
+ "▁час ть",
+ "▁част ь",
+ "▁cor por",
+ "▁corpo r",
+ "це р",
+ "ц ер",
+ "▁cr ime",
+ "▁cri me",
+ "▁crim e",
+ "uo us",
+ "u ous",
+ "▁на лази",
+ "Data Frame",
+ "во ди",
+ "вод и",
+ "Ig n",
+ "I gn",
+ "▁Lin coln",
+ "▁me nos",
+ "▁men os",
+ "▁Lu ft",
+ "▁L ind",
+ "▁Li nd",
+ "▁Lin d",
+ "▁C ook",
+ "▁Co ok",
+ "▁ Cook",
+ "▁material s",
+ "ap ped",
+ "app ed",
+ "appe d",
+ "a pped",
+ "ign ore",
+ "▁от кры",
+ "fr ied",
+ "fri ed",
+ "f ried",
+ "▁gouvern ement",
+ "▁f ired",
+ "▁fire d",
+ "▁fi red",
+ "▁fir ed",
+ "▁screen shot",
+ "▁screens hot",
+ "се н",
+ "с ен",
+ "▁[ (",
+ "▁ [(",
+ "▁органи за",
+ "Graph ics",
+ "▁про ти",
+ "▁p hen",
+ "▁ph en",
+ "▁ phen",
+ "cr aft",
+ "cra ft",
+ "c raft",
+ "▁b rain",
+ "▁br ain",
+ "▁bra in",
+ "▁C omo",
+ "▁Com o",
+ "▁Co mo",
+ "▁Every thing",
+ "an es",
+ "ane s",
+ "a nes",
+ "IG N",
+ "I GN",
+ "▁n ederbörd",
+ "▁ nederbörd",
+ "▁For est",
+ "▁Fore st",
+ "▁Fo rest",
+ "za hl",
+ "z ahl",
+ "▁Am ong",
+ "Q t",
+ "▁to gg",
+ "▁tog g",
+ "▁vari ant",
+ "▁ variant",
+ "▁h ill",
+ "▁hi ll",
+ "▁ hill",
+ "пи си",
+ "пис и",
+ "col on",
+ "co lon",
+ "colo n",
+ "▁dic embre",
+ "го р",
+ "г ор",
+ "▁W ind",
+ "▁Win d",
+ "▁Wi nd",
+ "ünst ler",
+ "▁= \\",
+ "▁ =\\",
+ "sa ved",
+ "save d",
+ "s aved",
+ "▁n ej",
+ "▁ne j",
+ "▁ nej",
+ "un te",
+ "unt e",
+ "ut to",
+ "utt o",
+ "u tto",
+ "▁rec ens",
+ "▁rece ns",
+ "▁s ick",
+ "▁si ck",
+ "▁sic k",
+ "▁d esen",
+ "▁de sen",
+ "▁des en",
+ "US T",
+ "U ST",
+ "▁wor st",
+ "▁An gel",
+ "▁Ang el",
+ "od ox",
+ "odo x",
+ "▁Prov ince",
+ "▁Provin ce",
+ "▁M az",
+ "▁Ma z",
+ "▁agre ement",
+ "▁agree ment",
+ "▁B ass",
+ "▁Bas s",
+ "▁Ba ss",
+ "▁seg unda",
+ "on ces",
+ "once s",
+ "onc es",
+ "▁Lin ki",
+ "▁Link i",
+ "▁C L",
+ "▁ CL",
+ "▁j á",
+ "it ement",
+ "ite ment",
+ "item ent",
+ "▁á rea",
+ "▁ár ea",
+ "▁scal ar",
+ "▁scala r",
+ "▁Р ес",
+ "▁Ре с",
+ "aw t",
+ "a wt",
+ "si eme",
+ "▁j uni",
+ "▁ju ni",
+ "▁jun i",
+ "▁худо ж",
+ "ik us",
+ "iku s",
+ "▁l id",
+ "▁li d",
+ "pp el",
+ "ppe l",
+ "p pel",
+ "av i",
+ "a vi",
+ "▁bal ance",
+ "ip ping",
+ "ipp ing",
+ "ippi ng",
+ "i pping",
+ "cuss ion",
+ "че ских",
+ "(\" .",
+ "( \".",
+ "Al so",
+ "▁w his",
+ "▁wh is",
+ "HO ME",
+ "▁b rown",
+ "▁br own",
+ "▁bro wn",
+ "▁brow n",
+ "▁d ía",
+ "▁dí a",
+ "▁pu ò",
+ "plot lib",
+ "▁Jahrhundert s",
+ "D K",
+ "▁an chor",
+ "▁anc hor",
+ "▁anch or",
+ "▁ anchor",
+ ".. .]",
+ "... ]",
+ "▁Aust ria",
+ "▁m arca",
+ "▁mar ca",
+ "▁marc a",
+ "▁g ez",
+ "▁ge z",
+ "ious ly",
+ "i ously",
+ "▁l azy",
+ "▁la zy",
+ "x a",
+ "▁Ch annel",
+ "▁Chan nel",
+ "▁ Channel",
+ "▁ne uen",
+ "▁neue n",
+ "▁neu en",
+ "da s",
+ "d as",
+ "▁search ed",
+ "▁sta at",
+ "▁ staat",
+ "▁Та к",
+ "▁Jo sef",
+ "▁Jose f",
+ "▁Jos ef",
+ "▁S her",
+ "▁Sh er",
+ "▁She r",
+ "po is",
+ "p ois",
+ "▁e nem",
+ "▁en em",
+ "▁access ing",
+ "▁не ко",
+ "▁fur ono",
+ "▁pse udo",
+ "▁pseud o",
+ "? >",
+ "▁estado un",
+ "▁estad oun",
+ "▁Ви ди",
+ "▁mot iv",
+ "▁re call",
+ "▁rec all",
+ "is son",
+ "iss on",
+ "i sson",
+ "ó b",
+ ")- -",
+ ") --",
+ "▁E rz",
+ "▁Er z",
+ "▁са вез",
+ "Dir ect",
+ "Di rect",
+ "D irect",
+ "со б",
+ "с об",
+ "▁s ho",
+ "▁sh o",
+ "v ölker",
+ "A p",
+ "ge ns",
+ "gen s",
+ "g ens",
+ "ниш тво",
+ "▁Am sterdam",
+ "us k",
+ "u sk",
+ "п ло",
+ "▁sim ulation",
+ "▁B C",
+ "▁ BC",
+ "▁W oj",
+ "▁Wo j",
+ "au tom",
+ "aut om",
+ "auto m",
+ "Al ex",
+ "A lex",
+ "▁econom ic",
+ "▁econ omic",
+ "го м",
+ "г ом",
+ "ik ai",
+ "ika i",
+ "▁a ltre",
+ "▁al tre",
+ "▁alt re",
+ "▁' -",
+ "▁ '-",
+ "▁W eg",
+ "▁We g",
+ "Not Found",
+ "й ской",
+ "▁convert ing",
+ "▁conver ting",
+ "ph abet",
+ "pha bet",
+ "at rice",
+ "atr ice",
+ "atri ce",
+ "bour ne",
+ "al om",
+ "alo m",
+ "▁comp aring",
+ "▁compar ing",
+ "▁Z o",
+ "▁f la",
+ "▁fl a",
+ "ва я",
+ "▁en tra",
+ "▁ent ra",
+ "▁entr a",
+ "▁char set",
+ "▁chars et",
+ "develop ers",
+ "developer s",
+ "íst ica",
+ "} >",
+ "▁J azz",
+ "▁Ja zz",
+ "▁How ard",
+ "▁Ho ward",
+ "ш та",
+ "▁cl one",
+ "▁clo ne",
+ "▁ clone",
+ "do or",
+ "d oor",
+ "▁P in",
+ "▁Pi n",
+ "** *",
+ "* **",
+ "▁sil ent",
+ "ec ycle",
+ "e cycle",
+ "is ce",
+ "isc e",
+ "i sce",
+ "▁m ud",
+ "▁mu d",
+ "▁Dis play",
+ "▁ Display",
+ "▁l ip",
+ "▁li p",
+ "▁ lip",
+ "▁исполь зова",
+ "▁character istic",
+ "▁s b",
+ "▁ sb",
+ "fire base",
+ "▁B ew",
+ "▁Be w",
+ "Cal endar",
+ "▁u so",
+ "▁us o",
+ "▁ uso",
+ "ès e",
+ "è se",
+ "▁R at",
+ "▁Ra t",
+ "▁es per",
+ "▁espe r",
+ "▁esp er",
+ "▁ esper",
+ "▁throw ing",
+ "▁thro wing",
+ "▁ro dz",
+ "▁rod z",
+ "▁y ards",
+ "▁yard s",
+ "▁g rass",
+ "▁gr ass",
+ "▁gra ss",
+ "▁mar ker",
+ "▁mark er",
+ "▁ marker",
+ "▁K os",
+ "▁Ko s",
+ "Th eta",
+ "The ta",
+ "▁organ is",
+ "ker nel",
+ "kern el",
+ "k ernel",
+ "▁person as",
+ "▁pers onas",
+ "▁persona s",
+ "ke ep",
+ "kee p",
+ "▁exc laimed",
+ "os lav",
+ "▁Ent ertain",
+ "▁Enter tain",
+ "не р",
+ "н ер",
+ "▁in won",
+ "▁R and",
+ "▁Ra nd",
+ "▁Ran d",
+ "red uce",
+ "redu ce",
+ "fa c",
+ "f ac",
+ "ex pression",
+ "exp ression",
+ "expr ession",
+ "express ion",
+ "y j",
+ "▁differ enti",
+ "▁different i",
+ "ag lia",
+ "agli a",
+ "▁tem plates",
+ "▁template s",
+ "▁ templates",
+ "▁m ű",
+ "▁p rv",
+ "▁pr v",
+ "▁m ois",
+ "▁mo is",
+ "▁moi s",
+ "▁gew ann",
+ "▁бу ла",
+ "bib li",
+ "b ibli",
+ "de mo",
+ "dem o",
+ "d emo",
+ "▁And erson",
+ "▁Anders on",
+ "▁ре д",
+ "▁ ред",
+ "▁por que",
+ "▁P ologne",
+ "▁Pol ogne",
+ "▁t rip",
+ "▁tr ip",
+ "▁tri p",
+ "▁exem ple",
+ "▁exempl e",
+ "▁Intern acional",
+ "▁ка о",
+ "In sert",
+ "gen eral",
+ "gener al",
+ "SE SSION",
+ "ber ga",
+ "berg a",
+ "hä lt",
+ "h ält",
+ "un as",
+ "una s",
+ "u nas",
+ "ми ра",
+ "мир а",
+ "▁yield s",
+ "map sto",
+ "maps to",
+ "sp ot",
+ "s pot",
+ "▁+ \\",
+ "▁ +\\",
+ "лл а",
+ "л ла",
+ "▁precis ely",
+ "▁precise ly",
+ "▁ч лен",
+ "sh adow",
+ "Ar e",
+ "A re",
+ "un al",
+ "una l",
+ "u nal",
+ "▁dis par",
+ "▁disp ar",
+ "▁tít ulo",
+ "ne st",
+ "nes t",
+ "n est",
+ "▁L ow",
+ "▁Lo w",
+ "▁p rot",
+ "▁pro t",
+ "▁pr ot",
+ "▁C osta",
+ "▁Co sta",
+ "▁Cost a",
+ "▁Cos ta",
+ "name d",
+ "na med",
+ "nam ed",
+ "n amed",
+ "▁g ained",
+ "▁ga ined",
+ "▁gain ed",
+ "les ia",
+ "l esia",
+ "▁admin istration",
+ "▁administr ation",
+ "Im port",
+ "Imp ort",
+ "br anch",
+ "b ranch",
+ "▁sym path",
+ "vo j",
+ "v oj",
+ "▁E C",
+ "▁ EC",
+ "▁municip io",
+ "▁anim ated",
+ "▁animate d",
+ "▁direct ories",
+ "▁director ies",
+ "▁ro of",
+ "zą d",
+ "z ąd",
+ "im et",
+ "ime t",
+ "i met",
+ "pr oto",
+ "pro to",
+ "bl a",
+ "b la",
+ ": ]",
+ "ha ve",
+ "hav e",
+ "h ave",
+ "at em",
+ "ate m",
+ "a tem",
+ "▁n s",
+ "▁ ns",
+ "▁s ector",
+ "▁se ctor",
+ "▁sec tor",
+ "▁sect or",
+ "th ree",
+ "ow ane",
+ "owa ne",
+ "owan e",
+ "wer s",
+ "we rs",
+ "w ers",
+ "ов их",
+ "ови х",
+ "ren ce",
+ "r ence",
+ "▁ex tr",
+ "▁ext r",
+ "ig ten",
+ "igt en",
+ "igte n",
+ "▁occ ident",
+ "ț ă",
+ "▁e at",
+ "▁h ydro",
+ "▁hy dro",
+ "▁hyd ro",
+ "ubern etes",
+ "[ @",
+ "▁M oon",
+ "▁Mo on",
+ "▁S ho",
+ "▁Sh o",
+ "▁else where",
+ "ül ler",
+ "üll er",
+ "Up load",
+ "ла нд",
+ "лан д",
+ "л анд",
+ "▁F ör",
+ "w issenschaft",
+ "K S",
+ "▁phys ics",
+ "▁ physics",
+ "t z",
+ "▁се ред",
+ "▁Ar beit",
+ "▁Arbe it",
+ "▁ме ст",
+ "▁ мест",
+ "▁Geb iet",
+ "▁in sect",
+ "▁ins ect",
+ "▁inse ct",
+ "A h",
+ "iz ado",
+ "iza do",
+ "▁tem ple",
+ "▁temp le",
+ "▁ann ual",
+ "st ad",
+ "sta d",
+ "▁hab itat",
+ "▁habit at",
+ "▁A B",
+ "▁ AB",
+ "wo rt",
+ "wor t",
+ "w ort",
+ "▁re pos",
+ "▁rep os",
+ "▁repo s",
+ "▁N eu",
+ "▁Ne u",
+ "▁$ (\".",
+ "▁$( \".",
+ "▁$(\" .",
+ "Vor lage",
+ "▁repre zent",
+ "est anden",
+ "In tern",
+ "Int ern",
+ "Inter n",
+ ". `",
+ "▁fa iling",
+ "▁fail ing",
+ "▁M aterial",
+ "▁Mate rial",
+ "▁ Material",
+ "▁effect ively",
+ "▁effective ly",
+ "те лем",
+ "тел ем",
+ "▁г ла",
+ "▁ гла",
+ "▁na hm",
+ "▁nah m",
+ "▁ nahm",
+ "▁differ ently",
+ "▁different ly",
+ "ext ension",
+ "▁V erm",
+ "▁Ver m",
+ "▁Ve rm",
+ "en abled",
+ "ena bled",
+ "enable d",
+ "con figure",
+ "config ure",
+ "ni o",
+ "n io",
+ "ci ones",
+ "cio nes",
+ "cion es",
+ "c iones",
+ "▁B each",
+ "▁Be ach",
+ "со на",
+ "сон а",
+ "с она",
+ "▁copy ing",
+ "▁cop ying",
+ "▁у країн",
+ "▁при зна",
+ "▁приз на",
+ "z h",
+ "Des ktop",
+ "▁s ost",
+ "▁so st",
+ "▁sub sequently",
+ "▁subsequ ently",
+ "▁subsequent ly",
+ "▁Le hr",
+ "▁ ó",
+ "lä r",
+ "l är",
+ "od or",
+ "odo r",
+ "o dor",
+ "ph on",
+ "p hon",
+ "n c",
+ "iter ator",
+ "▁э ти",
+ "▁europ é",
+ "▁Tor onto",
+ "ód igo",
+ "▁p osto",
+ "▁po sto",
+ "▁pos to",
+ "▁post o",
+ "ff e",
+ "f fe",
+ "▁c rew",
+ "▁cre w",
+ "▁cr ew",
+ "▁Sch war",
+ "▁Schw ar",
+ "S a",
+ "squ are",
+ "s quare",
+ "▁be side",
+ "▁bes ide",
+ "▁М і",
+ "▁a th",
+ "▁at h",
+ "▁ ath",
+ "▁ad vent",
+ "▁adv ent",
+ "c ji",
+ "writ ten",
+ "wr itten",
+ "w ritten",
+ "▁r uss",
+ "▁ru ss",
+ "▁rus s",
+ "ro st",
+ "ros t",
+ "r ost",
+ "H I",
+ "▁d ice",
+ "▁di ce",
+ "▁dic e",
+ "cc a",
+ "c ca",
+ "▁d ép",
+ "▁dé p",
+ "pl y",
+ "p ly",
+ "big g",
+ "bi gg",
+ "b igg",
+ "zi ał",
+ "zia ł",
+ "z iał",
+ "üt t",
+ "ü tt",
+ "▁о дно",
+ "▁од но",
+ "J ECT",
+ "сь кому",
+ "сько му",
+ "ськ ому",
+ "no s",
+ "n os",
+ "mo ck",
+ "m ock",
+ "La unch",
+ "sa me",
+ "sam e",
+ "s ame",
+ "▁j obs",
+ "▁jo bs",
+ "▁job s",
+ "▁wide ly",
+ "▁wid ely",
+ "▁def ines",
+ "▁define s",
+ "▁defin es",
+ "▁P se",
+ "▁Ps e",
+ "▁neigh bour",
+ "▁neighb our",
+ "ющи е",
+ "▁cl oser",
+ "▁close r",
+ "▁clos er",
+ "▁clo ser",
+ "▁рас поло",
+ "▁распо ло",
+ "▁cl ubs",
+ "▁club s",
+ "fl y",
+ "f ly",
+ "ши м",
+ "ш им",
+ "▁suffer ed",
+ "▁suff ered",
+ "▁n ar",
+ "▁na r",
+ "▁ nar",
+ "▁l avor",
+ "▁la vor",
+ "▁lav or",
+ "Ext ension",
+ "ition ally",
+ "itional ly",
+ "▁g race",
+ "▁gr ace",
+ "▁gra ce",
+ "▁Campe onato",
+ "▁Christ mas",
+ "m iddle",
+ "oth ek",
+ "othe k",
+ "el ements",
+ "element s",
+ "ele ments",
+ "elem ents",
+ "▁son dern",
+ "▁t arde",
+ "▁tar de",
+ "▁tard e",
+ "▁perman ent",
+ "▁con clude",
+ "▁concl ude",
+ "Se g",
+ "S eg",
+ "▁а каде",
+ "}\" ,",
+ "} \",",
+ "▁февра ля",
+ "ře d",
+ "ř ed",
+ "▁I L",
+ "▁ IL",
+ "ju d",
+ "j ud",
+ "▁U SS",
+ "▁US S",
+ "▁N ature",
+ "▁Natur e",
+ "▁Nat ure",
+ "if ference",
+ "iffer ence",
+ "iffe rence",
+ "Serial izer",
+ "▁tw elve",
+ "ti d",
+ "t id",
+ "ми я",
+ "че ского",
+ "▁cal endar",
+ "▁ calendar",
+ "con cat",
+ "▁inter section",
+ "▁intersect ion",
+ "▁P A",
+ "▁ PA",
+ "az ure",
+ "azu re",
+ "▁situ ée",
+ "▁situé e",
+ "▁k inds",
+ "▁kind s",
+ "▁kin ds",
+ "▁aus ge",
+ "▁r ural",
+ "▁ru ral",
+ "Th eme",
+ "The me",
+ "▁t ale",
+ "▁tal e",
+ "▁ta le",
+ "no indent",
+ "go ing",
+ "r x",
+ "ag i",
+ "a gi",
+ "wrap per",
+ "wr apper",
+ "w rapper",
+ "▁Co ast",
+ "mb H",
+ "▁пере д",
+ "▁пе ред",
+ "sp re",
+ "spr e",
+ "s pre",
+ "▁} \\",
+ "▁ }\\",
+ "▁L I",
+ "▁ LI",
+ "zn am",
+ "zna m",
+ "z nam",
+ "it led",
+ "itle d",
+ "Sam ple",
+ "S ample",
+ "ul iar",
+ "uli ar",
+ "* \\",
+ "▁res istance",
+ "▁resist ance",
+ "st ock",
+ "sto ck",
+ "ke d",
+ "k ed",
+ "▁H E",
+ "▁ HE",
+ "▁pos session",
+ "▁poss ession",
+ "▁possess ion",
+ "▁R ing",
+ "▁Ri ng",
+ "▁m agyar",
+ "▁mag yar",
+ "ou ts",
+ "out s",
+ "o uts",
+ "▁Secret ary",
+ "nd e",
+ "n de",
+ "▁W ald",
+ "▁Wal d",
+ "▁Wa ld",
+ "- (",
+ "▁I SO",
+ "▁IS O",
+ "▁ ISO",
+ "▁af ternoon",
+ "ion en",
+ "io nen",
+ "ione n",
+ "i onen",
+ "▁st ops",
+ "▁stop s",
+ "▁sto ps",
+ "▁const ants",
+ "▁constant s",
+ "gu ard",
+ "bo w",
+ "b ow",
+ "▁e rs",
+ "▁er s",
+ "▁ ers",
+ "▁Fire base",
+ "▁C lear",
+ "▁Cl ear",
+ "▁Cle ar",
+ "▁ Clear",
+ "▁H oly",
+ "▁Hol y",
+ "▁Ho ly",
+ "W in",
+ "▁title s",
+ "▁tit les",
+ "▁т рав",
+ "▁тра в",
+ "▁cont rib",
+ "▁contr ib",
+ "▁ contrib",
+ "hä ng",
+ "h äng",
+ "▁phot ograph",
+ "▁photo graph",
+ "▁Dist ribution",
+ "if ts",
+ "ift s",
+ "▁a unque",
+ "com b",
+ "co mb",
+ "c omb",
+ "AD D",
+ "A DD",
+ "▁public ation",
+ "▁pub lication",
+ "▁publi cation",
+ "▁слу ж",
+ "▁к ня",
+ "▁ay ant",
+ "▁re store",
+ "▁r estore",
+ "▁rest ore",
+ "▁resto re",
+ "▁bel ief",
+ "▁v ég",
+ "▁vé g",
+ "▁ext ensions",
+ "▁extension s",
+ "▁extens ions",
+ "▁ extensions",
+ "▁de com",
+ "▁dec om",
+ "вши й",
+ "в ший",
+ "W T",
+ "▁par ti",
+ "▁part i",
+ "▁gi oc",
+ "▁ми ра",
+ "▁ мира",
+ "▁is su",
+ "▁iss u",
+ "pi pe",
+ "pip e",
+ "p ipe",
+ "▁pro ps",
+ "▁pr ops",
+ "▁prop s",
+ "▁ props",
+ "▁w illing",
+ "▁will ing",
+ "▁wil ling",
+ "▁n est",
+ "▁ne st",
+ "▁ nest",
+ "as o",
+ "a so",
+ "po t",
+ "p ot",
+ "▁hand les",
+ "▁handle s",
+ "▁ф о",
+ "▁ фо",
+ "▁m oder",
+ "▁mod er",
+ "▁mo der",
+ "▁mode r",
+ "▁eben falls",
+ "▁fight ing",
+ "um bn",
+ "umb n",
+ "▁trans parent",
+ "▁K rist",
+ "▁Kr ist",
+ "▁home s",
+ "▁hom es",
+ "▁ho mes",
+ "▁voy age",
+ "Fa iled",
+ "Fail ed",
+ "▁B ird",
+ "▁Bi rd",
+ "▁Bir d",
+ "▁He art",
+ "Count er",
+ "Co unter",
+ "C ounter",
+ "▁Scott ish",
+ "át ica",
+ "▁ar beit",
+ "▁ arbeit",
+ "^{ -\\",
+ "^{- \\",
+ "▁S or",
+ "▁So r",
+ "▁eng aged",
+ "▁engag ed",
+ "▁a side",
+ "▁as ide",
+ "▁asi de",
+ "▁F ou",
+ "▁Fo u",
+ "▁w iel",
+ "▁wie l",
+ "▁re const",
+ "▁recon st",
+ "ou sin",
+ "ous in",
+ "▁host ed",
+ "▁ho sted",
+ "▁hos ted",
+ "▁c lasse",
+ "▁class e",
+ "▁cl asse",
+ "▁clas se",
+ "▁con test",
+ "▁cont est",
+ "▁conte st",
+ ".. .\"",
+ "... \"",
+ "мо м",
+ "м ом",
+ "▁be an",
+ "▁ bean",
+ "ge m",
+ "g em",
+ "▁consult ato",
+ "▁b io",
+ "▁bi o",
+ "▁ bio",
+ "▁subject s",
+ "bo Box",
+ "▁Sch rift",
+ "▁d inner",
+ "▁din ner",
+ "ă r",
+ "▁r ówn",
+ "▁% %",
+ "▁ %%",
+ "ba ge",
+ "bag e",
+ "b age",
+ "▁ver öff",
+ "▁det ected",
+ "▁detect ed",
+ "ie nn",
+ "ien n",
+ "i enn",
+ "ro se",
+ "ros e",
+ "r ose",
+ "▁T on",
+ "▁To n",
+ "Comp lete",
+ "Comple te",
+ "▁pro to",
+ "▁pr oto",
+ "▁prot o",
+ "▁ proto",
+ "ich ts",
+ "icht s",
+ "i chts",
+ "ST AT",
+ "Check ed",
+ "▁in ten",
+ "▁i nten",
+ "▁int en",
+ "▁inte n",
+ "▁s mile",
+ "▁sm ile",
+ "▁st rip",
+ "▁str ip",
+ "▁stri p",
+ "▁ strip",
+ "ne ut",
+ "') ;\r",
+ "'); \r",
+ "' );\r",
+ "fo ur",
+ "f our",
+ "▁to das",
+ "▁tod as",
+ "▁toda s",
+ "Control s",
+ "▁thor ough",
+ "ru p",
+ "r up",
+ "▁држа ви",
+ "it ă",
+ "Pro tocol",
+ "К а",
+ "▁expand ed",
+ "ex tra",
+ "ext ra",
+ "op ort",
+ "opo rt",
+ "o port",
+ "▁Ста нов",
+ "le ases",
+ "lease s",
+ "▁n otion",
+ "▁not ion",
+ "▁no tion",
+ "▁g uest",
+ "▁gu est",
+ "▁Is lands",
+ "▁Island s",
+ "ic ked",
+ "ick ed",
+ "▁D ave",
+ "▁Dav e",
+ "▁Da ve",
+ "▁ref lection",
+ "▁reflect ion",
+ "li v",
+ "l iv",
+ "ál ní",
+ "▁reve aled",
+ "▁s og",
+ "▁so g",
+ "▁T ax",
+ "▁Ta x",
+ "▁period o",
+ "▁peri odo",
+ "▁Welt krie",
+ "catal ina",
+ "qu é",
+ "q ué",
+ "▁F ather",
+ "▁Fa ther",
+ "▁B ir",
+ "▁Bi r",
+ "ex pect",
+ "exp ect",
+ "▁re gression",
+ "▁reg ression",
+ "in é",
+ "i né",
+ "▁d abei",
+ "▁da bei",
+ "pe rm",
+ "per m",
+ "p erm",
+ "ме не",
+ "мен е",
+ "м ене",
+ "▁A bd",
+ "▁Ab d",
+ "▁C F",
+ "▁ CF",
+ "ar ks",
+ "ark s",
+ "resol ve",
+ "wed ge",
+ "w edge",
+ "▁initial ization",
+ "▁Vé ase",
+ "▁при ня",
+ "st mt",
+ "▁in come",
+ "▁inc ome",
+ "M Y",
+ "▁od kazy",
+ "▁Sie he",
+ "▁bod ies",
+ "▁s oc",
+ "▁so c",
+ "R andom",
+ "▁s enza",
+ "▁sen za",
+ "ab lo",
+ "abl o",
+ "a blo",
+ "▁reg arded",
+ "▁regard ed",
+ "on Create",
+ "▁Mag azine",
+ "▁R af",
+ "▁Ra f",
+ "▁Buen os",
+ "и л",
+ ")) );",
+ "))) ;",
+ ") ));",
+ "ca pt",
+ "cap t",
+ "c apt",
+ "re direct",
+ "red irect",
+ "▁pe tit",
+ "▁pet it",
+ "▁f arm",
+ "▁far m",
+ "▁fa rm",
+ "▁r ôle",
+ "▁стать и",
+ " ",
+ "sub figure",
+ "èce s",
+ "è ces",
+ "zi el",
+ "zie l",
+ "z iel",
+ "▁о кон",
+ "▁ок он",
+ "E E",
+ "me e",
+ "m ee",
+ "▁p erten",
+ "▁per ten",
+ "▁pert en",
+ "▁représ ent",
+ "▁L A",
+ "▁ LA",
+ "? '",
+ "▁т ру",
+ "▁r ational",
+ "▁rat ional",
+ "▁ratio nal",
+ "os of",
+ "oso f",
+ "▁k ne",
+ "▁kn e",
+ "▁art ists",
+ "▁artist s",
+ "Fl ow",
+ "F low",
+ "▁А ль",
+ "▁Ал ь",
+ "iz ard",
+ "iza rd",
+ "izar d",
+ "▁num ero",
+ "▁numer o",
+ "act ic",
+ "a ctic",
+ "▁de struct",
+ "▁dest ruct",
+ "▁destru ct",
+ "▁П ра",
+ "ons ieur",
+ "q t",
+ "ab estanden",
+ "no ść",
+ "Con nect",
+ "Conne ct",
+ "▁o racle",
+ "▁or acle",
+ "▁ora cle",
+ "▁ oracle",
+ "▁Stock holm",
+ "size of",
+ "▁gem äß",
+ "AC T",
+ "A CT",
+ "▁ex pert",
+ "▁exp ert",
+ "▁exper t",
+ "ut ions",
+ "ution s",
+ "uti ons",
+ "▁h acia",
+ "▁ha cia",
+ "▁log ger",
+ "▁ logger",
+ "▁f ool",
+ "▁fo ol",
+ "▁foo l",
+ "ry pto",
+ "rypt o",
+ "æ r",
+ "▁c idade",
+ "▁ci dade",
+ "▁состав е",
+ "▁соста ве",
+ "ok er",
+ "oke r",
+ "o ker",
+ "▁Trans fer",
+ "▁den ied",
+ "Tr ack",
+ "Tra ck",
+ "T rack",
+ "▁r adi",
+ "▁ra di",
+ "▁rad i",
+ "ze c",
+ "z ec",
+ "▁Histor ic",
+ "▁Einwo hner",
+ "ко ю",
+ "▁х ра",
+ "▁ хра",
+ "▁C ategory",
+ "▁ Category",
+ "▁Dis ney",
+ "▁sw ap",
+ "▁ swap",
+ "Be gin",
+ "B egin",
+ "▁m ientras",
+ "▁d ance",
+ "▁dan ce",
+ "▁t ête",
+ "▁d roit",
+ "▁dr oit",
+ "▁dro it",
+ "er ta",
+ "ert a",
+ "▁bird s",
+ "▁bir ds",
+ "▁con vin",
+ "▁conv in",
+ "par ator",
+ "para tor",
+ "д ра",
+ "▁E S",
+ "▁ ES",
+ "▁Ress ources",
+ "▁Ressource s",
+ "EG IN",
+ "ück e",
+ "ü cke",
+ "▁Cr uz",
+ "▁Cru z",
+ "ab ling",
+ "abl ing",
+ "a bling",
+ "▁\" @",
+ "▁me tres",
+ "▁met res",
+ "▁B eg",
+ "▁Be g",
+ "▁Gr ünd",
+ "▁B oh",
+ "▁Bo h",
+ "▁m ile",
+ "▁mil e",
+ "▁mi le",
+ "▁ mile",
+ "▁Techn ology",
+ "\" +",
+ "ac co",
+ "acc o",
+ "a cco",
+ "▁s s",
+ "▁ ss",
+ "▁F ed",
+ "▁Fe d",
+ "▁H end",
+ "▁He nd",
+ "▁Hen d",
+ "us ch",
+ "usc h",
+ "u sch",
+ "it ä",
+ "fol k",
+ "f olk",
+ "▁abs or",
+ "an tal",
+ "ant al",
+ "anta l",
+ "od ge",
+ "▁WH EN",
+ "▁Extern í",
+ "▁Reg iment",
+ "▁evalu ation",
+ "▁T ai",
+ "▁Ta i",
+ "▁voc als",
+ "▁vocal s",
+ "▁ex perimental",
+ "▁experiment al",
+ "em bed",
+ "emb ed",
+ "▁M inn",
+ "▁Min n",
+ "▁Mi nn",
+ "▁в ме",
+ "pr ec",
+ "pre c",
+ "p rec",
+ "ever y",
+ "ev ery",
+ "e very",
+ "▁ho of",
+ "▁Fern ando",
+ "▁Bibli ographie",
+ "▁n ag",
+ "▁na g",
+ "amerikan ischer",
+ "▁m arks",
+ "▁mar ks",
+ "▁mark s",
+ "▁ marks",
+ "▁U TC",
+ "▁ UTC",
+ "▁un certain",
+ "ди я",
+ "ol ia",
+ "oli a",
+ "o lia",
+ "▁c up",
+ "▁cu p",
+ "▁ cup",
+ "▁f ille",
+ "▁fil le",
+ "▁fill e",
+ "▁fi lle",
+ "▁d ok",
+ "▁do k",
+ "use ppe",
+ "est erd",
+ "ester d",
+ "este rd",
+ "e sterd",
+ "▁B rand",
+ "▁Br and",
+ "▁Bra nd",
+ "▁Bran d",
+ "▁Th ird",
+ "P P",
+ "no des",
+ "node s",
+ "n odes",
+ "▁P ad",
+ "▁Pa d",
+ "▁ Pad",
+ "▁l oved",
+ "▁lo ved",
+ "▁love d",
+ "▁lov ed",
+ "sw ing",
+ "s wing",
+ "▁surpr ised",
+ "▁surprise d",
+ "ar di",
+ "ard i",
+ "▁G R",
+ "▁ GR",
+ "] \"",
+ "▁equ ally",
+ "▁equal ly",
+ "▁eq ually",
+ "ih e",
+ "i he",
+ "ca re",
+ "car e",
+ "c are",
+ "пи сок",
+ "пис ок",
+ "li jk",
+ "lij k",
+ "l ijk",
+ "ri nn",
+ "rin n",
+ "r inn",
+ "▁\\ [\\",
+ "▁\\[ \\",
+ "▁s ons",
+ "▁so ns",
+ "▁son s",
+ "▁t ät",
+ "ic amente",
+ "ica mente",
+ "▁l isting",
+ "▁list ing",
+ "iel lement",
+ "ielle ment",
+ "▁nyel ven",
+ "▁d s",
+ "▁ ds",
+ "▁agr icult",
+ "▁H ermann",
+ "▁Her mann",
+ "▁Herm ann",
+ "▁bes ides",
+ "▁beside s",
+ "pro gress",
+ "prog ress",
+ "▁pec uliar",
+ "fo cus",
+ "f ocus",
+ "c n",
+ "- $",
+ "ствен ный",
+ "ou rg",
+ "our g",
+ "o urg",
+ "▁w yn",
+ "▁wy n",
+ "▁conduct ed",
+ "▁condu cted",
+ "▁Станов ништво",
+ "connect ed",
+ "conne cted",
+ "conn ected",
+ "▁b ott",
+ "▁bo tt",
+ "▁bot t",
+ "▁с мер",
+ "▁см ер",
+ "▁P oz",
+ "▁Po z",
+ "un ct",
+ "unc t",
+ "con da",
+ "cond a",
+ "c onda",
+ "▁савез ној",
+ "▁ha vet",
+ "▁have t",
+ "▁hav et",
+ "li gt",
+ "lig t",
+ "l igt",
+ "or ted",
+ "ort ed",
+ "orte d",
+ "▁ent ering",
+ "▁enter ing",
+ "mult ip",
+ "multi p",
+ "mul tip",
+ "▁Tem ple",
+ "▁Temp le",
+ "▁P lant",
+ "▁Pl ant",
+ "▁Plan t",
+ "▁Pla nt",
+ "type of",
+ "▁V lad",
+ "▁qu ed",
+ "▁que d",
+ "▁q ued",
+ "▁re ste",
+ "▁r este",
+ "▁res te",
+ "▁rest e",
+ "▁ма й",
+ "▁ май",
+ "▁V ery",
+ "▁Ver y",
+ "▁Ve ry",
+ "ambigu ation",
+ "▁ch alleng",
+ "▁res pective",
+ "▁respect ive",
+ "▁т ор",
+ "▁то р",
+ "▁ тор",
+ "C trl",
+ "▁abs ence",
+ "ar u",
+ "a ru",
+ "во е",
+ "▁för st",
+ "▁s q",
+ "▁ sq",
+ "▁Em peror",
+ "▁I gn",
+ "▁Ig n",
+ "▁ Ign",
+ "▁т ова",
+ "▁то ва",
+ "▁ това",
+ ": `",
+ "ad oop",
+ "ado op",
+ "▁Mad ame",
+ "▁gru ppo",
+ "▁grup po",
+ "st ud",
+ "▁extern as",
+ "▁Александ р",
+ "▁d ign",
+ "▁di gn",
+ "▁dig n",
+ "▁жи ве",
+ "Am ount",
+ "A mount",
+ "▁correl ate",
+ "▁corre late",
+ "▁F ant",
+ "▁Fa nt",
+ "▁r ails",
+ "▁ra ils",
+ "▁rail s",
+ "▁ rails",
+ "f p",
+ "министра тив",
+ "▁b ought",
+ "▁fil ters",
+ "▁filter s",
+ "▁ filters",
+ "▁anc ora",
+ "▁part ner",
+ "▁qu and",
+ "▁quan d",
+ "sym bol",
+ "s ymbol",
+ "ul ating",
+ "ula ting",
+ "▁z d",
+ "▁ zd",
+ "aw n",
+ "a wn",
+ "▁G rant",
+ "▁Gr ant",
+ "▁Gra nt",
+ "▁Gran t",
+ "bec ause",
+ "b ecause",
+ "ra ble",
+ "rab le",
+ "r able",
+ "\\ }",
+ "íst icas",
+ "ística s",
+ "▁у че",
+ "▁péri ode",
+ "▁s ke",
+ "▁sk e",
+ "▁ ske",
+ "▁Any way",
+ "▁index es",
+ "▁inde xes",
+ "▁direct ions",
+ "▁dire ctions",
+ "▁direction s",
+ "▁R AM",
+ "▁RA M",
+ "▁ RAM",
+ "ch rome",
+ "chr ome",
+ "chrom e",
+ "▁a post",
+ "▁ap ost",
+ "▁apo st",
+ "▁war nings",
+ "▁warning s",
+ "▁warn ings",
+ "▁Air port",
+ "V I",
+ "ab ile",
+ "abil e",
+ "abi le",
+ "▁l ord",
+ "▁lo rd",
+ "pro vider",
+ "prov ider",
+ "▁J i",
+ "ost ream",
+ "o stream",
+ "▁geme ente",
+ "table View",
+ "Ex tra",
+ "Ext ra",
+ "c ursor",
+ "eg round",
+ "egr ound",
+ "e ground",
+ "▁M oz",
+ "▁Mo z",
+ "▁r ib",
+ "▁ri b",
+ "▁ rib",
+ "▁m orph",
+ "▁mor ph",
+ "lo ads",
+ "load s",
+ "el sk",
+ "els k",
+ "▁M AX",
+ "▁MA X",
+ "▁ MAX",
+ "▁Santi ago",
+ "▁H im",
+ "▁Hi m",
+ "code s",
+ "co des",
+ "cod es",
+ "c odes",
+ "▁l anz",
+ "▁lan z",
+ "▁count s",
+ "▁coun ts",
+ "rinn ingsområ",
+ "щ ё",
+ "▁sp é",
+ "▁pier ws",
+ "▁pierw s",
+ "▁S ver",
+ "▁Sv er",
+ "▁a cknow",
+ "▁ac know",
+ "Bo olean",
+ "▁фами ли",
+ "▁Sen ate",
+ "шо в",
+ "ш ов",
+ "ag ers",
+ "age rs",
+ "ager s",
+ "a gers",
+ "▁Nue va",
+ "bi l",
+ "b il",
+ "ki em",
+ "kie m",
+ "k iem",
+ "▁M ey",
+ "▁Me y",
+ "wi j",
+ "w ij",
+ "▁G mbH",
+ "valid ation",
+ "▁en suite",
+ "in king",
+ "ink ing",
+ "▁c ampion",
+ "▁camp ion",
+ "▁finan cial",
+ "▁financi al",
+ "iz on",
+ "izo n",
+ "i zon",
+ "He aders",
+ "Head ers",
+ "Header s",
+ "▁deprec ated",
+ "▁fon ction",
+ "RE G",
+ "R EG",
+ "▁vol umes",
+ "▁volume s",
+ "▁C hi",
+ "▁Ch i",
+ "▁encounter ed",
+ "la k",
+ "l ak",
+ "ра я",
+ "▁contin ues",
+ "▁continu es",
+ "▁continue s",
+ "▁~ [",
+ "uer te",
+ "u erte",
+ "▁\\ ;",
+ "▁ \\;",
+ "▁D ok",
+ "▁Do k",
+ "▁we ights",
+ "▁weight s",
+ "▁r h",
+ "▁ rh",
+ "▁Na pole",
+ "▁Nap ole",
+ "▁natur ally",
+ "▁natural ly",
+ "sk u",
+ "s ku",
+ "pa s",
+ "p as",
+ "▁g egründ",
+ "et r",
+ "e tr",
+ "▁K u",
+ "ic ted",
+ "ict ed",
+ "i cted",
+ "▁fab ric",
+ "▁A SC",
+ "▁AS C",
+ "▁ ASC",
+ "▁Entertain ment",
+ "▁en erg",
+ "▁ener g",
+ "кла д",
+ "к лад",
+ "om on",
+ "omo n",
+ "o mon",
+ "th eme",
+ "the me",
+ "▁ха рак",
+ "▁d raft",
+ "▁dr aft",
+ "▁dra ft",
+ "▁ch annels",
+ "▁channel s",
+ "▁de sert",
+ "▁des ert",
+ "▁deser t",
+ "▁tra vés",
+ "▁trav és",
+ "▁L ock",
+ "▁Lo ck",
+ "▁Loc k",
+ "▁ Lock",
+ "▁s iendo",
+ "▁si endo",
+ "фе к",
+ "ф ек",
+ "m ême",
+ "▁pa cket",
+ "▁pack et",
+ "▁pac ket",
+ "▁Mount ain",
+ "▁F ahr",
+ "▁Fa hr",
+ "bra io",
+ "пе ре",
+ "пер е",
+ "п ере",
+ "▁gen annt",
+ "▁dep loyment",
+ "▁deploy ment",
+ "Pa l",
+ "P al",
+ "но г",
+ "ст ру",
+ "стр у",
+ "Pr im",
+ "P rim",
+ "f ür",
+ "▁danger ous",
+ "▁sz ám",
+ "re ck",
+ "rec k",
+ "▁pop up",
+ "ic ky",
+ "ick y",
+ "in ar",
+ "ina r",
+ "i nar",
+ "co wo",
+ "cow o",
+ "c owo",
+ "нци кло",
+ "ít ás",
+ "▁pl ugins",
+ "▁plugin s",
+ "▁plug ins",
+ "▁ plugins",
+ "▁dr iven",
+ "▁drive n",
+ "▁dri ven",
+ "▁driv en",
+ "ле в",
+ "л ев",
+ "▁\" (",
+ "tt a",
+ "t ta",
+ "▁ Ú",
+ "▁e b",
+ "▁ eb",
+ "▁' ';",
+ "▁'' ;",
+ "▁kn ock",
+ "▁ос нова",
+ "▁основ а",
+ "▁m aison",
+ "▁ma ison",
+ "▁mais on",
+ "▁mai son",
+ "г ля",
+ "▁Hon or",
+ "▁Ho nor",
+ "ta il",
+ "t ail",
+ "ri tz",
+ "rit z",
+ "r itz",
+ "▁gu ys",
+ "▁combin ations",
+ "▁combination s",
+ "ond ere",
+ "onder e",
+ "onde re",
+ "▁A ld",
+ "▁Al d",
+ "▁f iddle",
+ "▁ fiddle",
+ "да в",
+ "ur d",
+ "u rd",
+ "▁pro jection",
+ "▁project ion",
+ "▁Tamb ién",
+ "ve rb",
+ "ver b",
+ "v erb",
+ "▁ter re",
+ "▁ terre",
+ "ru gu",
+ "rug u",
+ "▁se ptember",
+ "▁sept ember",
+ "▁< !",
+ "co st",
+ "cos t",
+ "c ost",
+ "▁n ut",
+ "▁nu t",
+ "▁ nut",
+ "{ %",
+ "▁ub ic",
+ "am arin",
+ "ama rin",
+ "amar in",
+ "ти и",
+ "▁pat ron",
+ "▁patr on",
+ "▁am ely",
+ "▁e sto",
+ "▁est o",
+ "▁es to",
+ "▁ esto",
+ "▁li stop",
+ "▁list op",
+ "fa l",
+ "f al",
+ "▁P rop",
+ "▁Pro p",
+ "▁Pr op",
+ "▁ Prop",
+ "▁O nt",
+ "▁On t",
+ "▁M ade",
+ "▁Ma de",
+ "▁Mad e",
+ "TE ST",
+ "▁N em",
+ "▁Ne m",
+ "▁N ations",
+ "▁Nat ions",
+ "▁Nation s",
+ "▁в у",
+ "▁ ву",
+ "in cluding",
+ "includ ing",
+ "▁spect rum",
+ "▁L an",
+ "▁La n",
+ "▁E ver",
+ "▁Ev er",
+ "Pa ul",
+ "t m",
+ "App end",
+ "Ap pend",
+ "Rel ative",
+ "dis abled",
+ "disable d",
+ "return s",
+ "▁flow ers",
+ "▁flo wers",
+ "▁flower s",
+ "ik u",
+ "i ku",
+ "▁| \\",
+ "▁ |\\",
+ "▁Jord an",
+ "▁Sm all",
+ "▁c ic",
+ "▁ci c",
+ "▁sex ual",
+ "au tre",
+ "aut re",
+ "ва л",
+ "в ал",
+ "▁r ip",
+ "▁ri p",
+ "▁ rip",
+ "ou st",
+ "ous t",
+ "o ust",
+ "▁Philadel phia",
+ "▁u k",
+ "▁ uk",
+ "▁M ongo",
+ "▁Mon go",
+ "▁Mong o",
+ "xml ns",
+ "▁sh op",
+ "▁sho p",
+ "▁ shop",
+ "▁debug ger",
+ "▁z aj",
+ "▁za j",
+ "▁B illy",
+ "▁Bill y",
+ "▁Bil ly",
+ "▁n iem",
+ "▁nie m",
+ "▁ni em",
+ "ol is",
+ "oli s",
+ "o lis",
+ "▁ро ссий",
+ "ag ner",
+ "agn er",
+ "agne r",
+ "▁m aven",
+ "▁ma ven",
+ "▁ maven",
+ "▁Gu stav",
+ "▁Gust av",
+ "A us",
+ "comp are",
+ "▁j eu",
+ "▁je u",
+ "ud er",
+ "ude r",
+ "u der",
+ "ish ment",
+ "▁ди визи",
+ "▁Fin land",
+ "ну т",
+ "н ут",
+ "z és",
+ "▁Liga ções",
+ "▁Lig ações",
+ "▁qu ello",
+ "▁quel lo",
+ "an notation",
+ "annot ation",
+ "▁th rew",
+ "▁thr ew",
+ "▁thre w",
+ "▁Pro of",
+ "▁ Proof",
+ "▁A rea",
+ "▁Ar ea",
+ "▁Are a",
+ "▁ Area",
+ "as hi",
+ "ash i",
+ "▁F O",
+ "▁ FO",
+ "ja min",
+ "j amin",
+ "ден т",
+ "д ент",
+ "▁un us",
+ "fri end",
+ ".\" );",
+ ".\") ;",
+ ". \");",
+ "▁tra kten",
+ "document class",
+ "an ka",
+ "ank a",
+ "▁ar rive",
+ "▁arr ive",
+ "▁arriv e",
+ "▁d onne",
+ "▁don ne",
+ "▁donn e",
+ "ol y",
+ "o ly",
+ "▁R ein",
+ "▁Re in",
+ "▁face book",
+ "▁fac ebook",
+ "▁ facebook",
+ "ic ina",
+ "ici na",
+ "sl ice",
+ "s lice",
+ "▁n agy",
+ "▁na gy",
+ "▁nag y",
+ "▁he bben",
+ "▁I C",
+ "▁ IC",
+ "▁B ag",
+ "▁Ba g",
+ "▁ Bag",
+ "▁circ ul",
+ "▁cir cul",
+ "ác t",
+ "á ct",
+ "mit t",
+ "mi tt",
+ "m itt",
+ "▁g rey",
+ "▁gr ey",
+ "▁gre y",
+ "▁c av",
+ "▁ca v",
+ "▁осо би",
+ "▁sym metric",
+ "▁symmet ric",
+ "▁S ic",
+ "▁Si c",
+ "▁med ium",
+ "▁medi um",
+ "▁ medium",
+ "▁U TF",
+ "▁ UTF",
+ "▁D opo",
+ "▁Do po",
+ "í ch",
+ "bar e",
+ "ba re",
+ "b are",
+ "dz ie",
+ "d zie",
+ "▁he aven",
+ "▁heav en",
+ "▁cam pe",
+ "▁camp e",
+ "ester day",
+ "esterd ay",
+ "▁W issenschaft",
+ "по ль",
+ "пол ь",
+ "di d",
+ "d id",
+ "al er",
+ "ale r",
+ "a ler",
+ "▁citiz ens",
+ "▁Marg aret",
+ "▁s ought",
+ "ch arts",
+ "char ts",
+ "chart s",
+ "CL C",
+ "C LC",
+ "ol ly",
+ "oll y",
+ "ys z",
+ "y sz",
+ "wa ld",
+ "wal d",
+ "w ald",
+ "▁f en",
+ "▁fe n",
+ "▁ fen",
+ "▁S ix",
+ "▁Si x",
+ "▁U rs",
+ "▁Ur s",
+ "▁ор ган",
+ "▁T rad",
+ "▁Tr ad",
+ "▁Tra d",
+ "cu e",
+ "c ue",
+ "sch utz",
+ "▁prec ise",
+ "▁precis e",
+ "▁W indow",
+ "▁Wind ow",
+ "▁ Window",
+ "ти е",
+ "ло ві",
+ "лов і",
+ "it ori",
+ "ito ri",
+ "itor i",
+ "dis ambiguation",
+ "▁х и",
+ "▁ хи",
+ "▁N atural",
+ "▁Natur al",
+ "▁Nat ural",
+ "da n",
+ "d an",
+ "▁con crete",
+ "ци ја",
+ "▁s pel",
+ "▁sp el",
+ "▁spe l",
+ "▁Fa iled",
+ "▁Fail ed",
+ "▁ Failed",
+ "ści e",
+ "śc ie",
+ "ś cie",
+ "▁b uf",
+ "▁bu f",
+ "▁ buf",
+ "uc a",
+ "u ca",
+ "ic ional",
+ "ici onal",
+ "icio nal",
+ "icion al",
+ "▁ott obre",
+ "▁otto bre",
+ "▁ф і",
+ "▁ фі",
+ "▁submit ted",
+ "▁subm itted",
+ "la ve",
+ "lav e",
+ "l ave",
+ "▁P lot",
+ "▁Pl ot",
+ "▁ Plot",
+ "▁col leg",
+ "▁coll eg",
+ "▁colle g",
+ "ad em",
+ "ade m",
+ "a dem",
+ "▁ch aque",
+ "▁cha que",
+ "▁neighbor hood",
+ "▁calci atore",
+ "Lo op",
+ "L oop",
+ "▁G ast",
+ "▁Ga st",
+ "▁Gas t",
+ "▁ко гда",
+ "▁indust rial",
+ "▁industri al",
+ "▁f atal",
+ "▁fa tal",
+ "▁fat al",
+ "▁C ert",
+ "▁Ce rt",
+ "▁Cer t",
+ "▁ Cert",
+ "la tion",
+ "lat ion",
+ "l ation",
+ "▁О дна",
+ "▁Од на",
+ "▁jam ais",
+ "▁acc um",
+ "Id entity",
+ "Ident ity",
+ "▁Me dal",
+ "▁Med al",
+ "Met adata",
+ "Meta data",
+ "▁лю дя",
+ "br idge",
+ "brid ge",
+ "b ridge",
+ "Go od",
+ "G ood",
+ "▁что бы",
+ "▁comp oser",
+ "▁compos er",
+ "▁compose r",
+ "▁b read",
+ "▁br ead",
+ "▁bre ad",
+ "▁clos ure",
+ "▁ closure",
+ "▁large ly",
+ "▁larg ely",
+ "F B",
+ "▁обла сть",
+ "▁autom atic",
+ "▁automat ic",
+ "ar ía",
+ "a ría",
+ "▁sufficient ly",
+ "▁ital iana",
+ "▁ка че",
+ "▁J ó",
+ "hi story",
+ "histor y",
+ "h istory",
+ "▁H D",
+ "▁ HD",
+ "▁sigu iente",
+ "ne ll",
+ "nel l",
+ "n ell",
+ "▁G ree",
+ "▁Gr ee",
+ "▁Gre e",
+ "▁T i",
+ "▁trans ferred",
+ "▁transfer red",
+ "équ ipe",
+ "é quipe",
+ "▁Phili ppe",
+ "▁Philipp e",
+ "▁Philip pe",
+ "▁encou rag",
+ "▁V ietnam",
+ "▁graph s",
+ "▁symmet ry",
+ "fr ed",
+ "fre d",
+ "f red",
+ "we ek",
+ "▁bron ze",
+ "ry s",
+ "r ys",
+ "▁name ly",
+ "▁nam ely",
+ "on ders",
+ "ond ers",
+ "onder s",
+ "onde rs",
+ "lem agne",
+ "X Y",
+ "Con vert",
+ "}] (",
+ "} ](",
+ "Reg ion",
+ "pe cies",
+ "pec ies",
+ "▁te xture",
+ "▁text ure",
+ "▁c hr",
+ "▁ch r",
+ "▁ chr",
+ "не го",
+ "н его",
+ "▁some body",
+ "a qu",
+ "er as",
+ "era s",
+ "e ras",
+ "▁Н ово",
+ "▁Но во",
+ "▁Нов о",
+ "▁d ez",
+ "▁de z",
+ "an iu",
+ "ani u",
+ "a niu",
+ "ok rat",
+ "▁co vers",
+ "▁cover s",
+ "▁cov ers",
+ "▁sign als",
+ "▁signal s",
+ "ђ е",
+ "▁H eb",
+ "▁He b",
+ "▁An ti",
+ "▁Ant i",
+ "IV E",
+ "I VE",
+ "▁re ss",
+ "▁r ess",
+ "▁res s",
+ "▁ ress",
+ "LE TE",
+ "yn a",
+ "y na",
+ "п ла",
+ "жде ния",
+ "ж дения",
+ "▁ch amp",
+ "▁cha mp",
+ "▁cham p",
+ "▁vill ages",
+ "▁village s",
+ "▁villa ges",
+ "Z one",
+ "▁i Phone",
+ "▁sou vent",
+ "сь кі",
+ "ськ і",
+ "▁feb braio",
+ "ér cito",
+ "▁X I",
+ "ok at",
+ "oka t",
+ "▁mem bres",
+ "▁memb res",
+ "▁membre s",
+ "ju nit",
+ "j unit",
+ "▁D raw",
+ "▁Dr aw",
+ "▁Dra w",
+ "▁ Draw",
+ "▁п рово",
+ "▁про во",
+ "▁пров о",
+ "▁пр ово",
+ "aud io",
+ "audi o",
+ "a udio",
+ "en dl",
+ "end l",
+ "▁N ad",
+ "▁Na d",
+ "▁magn itude",
+ "Su r",
+ "S ur",
+ "ic ing",
+ "ici ng",
+ "i cing",
+ "▁un w",
+ "▁о три",
+ "▁от ри",
+ "▁B ey",
+ "▁Be y",
+ "▁V ik",
+ "▁Vi k",
+ "▁polít ica",
+ "port er",
+ "por ter",
+ "porte r",
+ "p orter",
+ "▁Bar bara",
+ "▁Barb ara",
+ "ál t",
+ "á lt",
+ "bi b",
+ "b ib",
+ "▁accom pan",
+ "▁accomp an",
+ "V P",
+ "▁en coded",
+ "▁enc oded",
+ "▁encode d",
+ "▁ encoded",
+ "▁S ometimes",
+ "▁Some times",
+ "bi rd",
+ "bir d",
+ "b ird",
+ "▁U lt",
+ "▁Ul t",
+ "▁t un",
+ "▁tu n",
+ "get Text",
+ "▁ar rival",
+ "▁arr ival",
+ "▁arriv al",
+ "script style",
+ "{ `",
+ "▁pers pective",
+ "LI NE",
+ "LIN E",
+ "L INE",
+ "Form atter",
+ "Format ter",
+ "▁b om",
+ "▁bo m",
+ "в ра",
+ "DE BUG",
+ "Bound s",
+ "B ounds",
+ "▁T itle",
+ "▁Tit le",
+ "▁ Title",
+ "l ó",
+ "Da n",
+ "D an",
+ "▁g ene",
+ "▁ge ne",
+ "▁gen e",
+ "▁B it",
+ "▁Bi t",
+ "▁ Bit",
+ "▁reprodu ce",
+ "▁graph ics",
+ "▁ graphics",
+ "▁с ем",
+ "▁се м",
+ "р ё",
+ "▁ре ки",
+ "us alem",
+ "usa lem",
+ "ро ж",
+ "▁D ES",
+ "▁DE S",
+ "▁So ftware",
+ "ur ance",
+ "u rance",
+ "ithmet ic",
+ "en ess",
+ "ene ss",
+ "enes s",
+ "e ness",
+ "ic hi",
+ "ich i",
+ "i chi",
+ "Con verter",
+ "Convert er",
+ "▁g ithub",
+ "▁ github",
+ "erd ings",
+ "gl ise",
+ "ác h",
+ "á ch",
+ "▁bu ried",
+ "▁bur ied",
+ "▁v ision",
+ "▁vis ion",
+ "▁ vision",
+ "M iss",
+ "▁s ees",
+ "▁se es",
+ "▁see s",
+ "▁person nes",
+ "▁pers onnes",
+ "▁personn es",
+ "▁personne s",
+ "▁In tel",
+ "▁Int el",
+ "el ia",
+ "eli a",
+ "e lia",
+ "▁č lán",
+ "▁c hi",
+ "▁ch i",
+ "▁ chi",
+ "▁k las",
+ "▁kl as",
+ "au té",
+ "aut é",
+ "▁st ark",
+ "▁star k",
+ "cz e",
+ "c ze",
+ "▁dr ivers",
+ "▁driver s",
+ "▁drive rs",
+ "▁dri vers",
+ "▁driv ers",
+ "v n",
+ "! ,",
+ "▁го ды",
+ "▁год ы",
+ "H i",
+ "▁expla ins",
+ "▁expl ains",
+ "▁explain s",
+ "art icles",
+ "article s",
+ "▁z ug",
+ "▁zu g",
+ "▁ zug",
+ "Pro m",
+ "Pr om",
+ "P rom",
+ "> =",
+ "▁Be at",
+ "▁S ax",
+ "▁Sa x",
+ "vert ical",
+ "кт о",
+ "к то",
+ "▁pl ants",
+ "▁plan ts",
+ "▁plant s",
+ "▁Ré férences",
+ "▁Référence s",
+ "▁og ni",
+ "▁c urs",
+ "▁cu rs",
+ "▁cur s",
+ "▁S K",
+ "▁ SK",
+ "он и",
+ "о ни",
+ "▁des tac",
+ "▁dest ac",
+ "\") ;\r",
+ "\"); \r",
+ "\" );\r",
+ "▁S ure",
+ "▁Su re",
+ "▁Sur e",
+ "▁part ido",
+ "▁parti do",
+ "▁Fol ge",
+ "▁Mo ore",
+ "▁w z",
+ "ск ус",
+ "ску с",
+ "lt re",
+ "l tre",
+ "on do",
+ "ond o",
+ "▁p ose",
+ "▁po se",
+ "▁pos e",
+ "▁ pose",
+ "im os",
+ "imo s",
+ "i mos",
+ "бо й",
+ "ци па",
+ "ju s",
+ "j us",
+ ".. ...",
+ "... ..",
+ ".... .",
+ ". ....",
+ "▁ép oca",
+ "▁qu anto",
+ "▁quant o",
+ "▁quan to",
+ "▁Su pport",
+ "▁Supp ort",
+ "▁Sup port",
+ "▁ Support",
+ "gesch ichte",
+ "SER VER",
+ "▁George s",
+ "▁Georg es",
+ "en um",
+ "enu m",
+ "e num",
+ "▁h erm",
+ "▁he rm",
+ "▁her m",
+ "▁ne bo",
+ "▁C hr",
+ "▁Ch r",
+ "▁ Chr",
+ "char acter",
+ "▁* **",
+ "▁** *",
+ "▁ ***",
+ "▁For sch",
+ "ia mi",
+ "iam i",
+ "i ami",
+ "▁ ¿",
+ "cy ch",
+ "cyc h",
+ "c ych",
+ "▁fif th",
+ "se nt",
+ "sen t",
+ "s ent",
+ "▁and erem",
+ "▁andere m",
+ "▁proport ion",
+ "▁propor tion",
+ "▁p rest",
+ "▁pr est",
+ "▁pre st",
+ "▁pres t",
+ "▁G irl",
+ "▁Gi rl",
+ "▁Gir l",
+ "▁d rama",
+ "▁dr ama",
+ "▁dra ma",
+ "▁dram a",
+ "wa nd",
+ "wan d",
+ "w and",
+ "▁M ail",
+ "▁Ma il",
+ "▁Mai l",
+ "▁ Mail",
+ "▁L ux",
+ "▁Lu x",
+ "▁kter ý",
+ "▁Ges ellschaft",
+ "▁Hin weis",
+ "nis se",
+ "n isse",
+ "▁m ondo",
+ "▁mon do",
+ "▁mond o",
+ "E q",
+ "▁per í",
+ "▁pe rí",
+ "▁e astern",
+ "▁eas tern",
+ "▁east ern",
+ "▁UE FA",
+ "ual e",
+ "ua le",
+ "u ale",
+ "▁con vex",
+ "▁conv ex",
+ "▁по ль",
+ "▁пол ь",
+ "▁ поль",
+ "▁H ey",
+ "▁He y",
+ "ze nie",
+ "zen ie",
+ "z enie",
+ "init ely",
+ "▁Z usammen",
+ "SS L",
+ "S SL",
+ "oc al",
+ "oca l",
+ "o cal",
+ "▁c anal",
+ "▁can al",
+ "▁ca nal",
+ "vo y",
+ "v oy",
+ "▁К ри",
+ "▁köz ött",
+ "▁c ars",
+ "▁car s",
+ "▁ca rs",
+ "▁vers ión",
+ "En vironment",
+ "He r",
+ "H er",
+ "▁se ñ",
+ "▁sp atial",
+ "ym i",
+ "y mi",
+ "Fi re",
+ "F ire",
+ "▁ve get",
+ "▁veg et",
+ "▁W ie",
+ "▁Wi e",
+ "▁zn aj",
+ "▁zna j",
+ "▁dam age",
+ "▁en dl",
+ "▁end l",
+ "▁ endl",
+ "gi f",
+ "g if",
+ "▁qu ali",
+ "▁qual i",
+ "▁которы х",
+ "el lan",
+ "ell an",
+ "ella n",
+ "▁m ens",
+ "▁me ns",
+ "▁men s",
+ "▁pl ug",
+ "▁a bund",
+ "▁ab und",
+ "FI G",
+ "F IG",
+ "▁s f",
+ "▁ sf",
+ "▁con fl",
+ "▁conf l",
+ "▁насе ления",
+ "▁princi ples",
+ "▁princip les",
+ "▁principle s",
+ "▁Gab riel",
+ "ib e",
+ "i be",
+ "▁{ %",
+ "▁ {%",
+ "▁pobla ció",
+ "ні ципа",
+ "▁ext reme",
+ "▁extrem e",
+ "▁extr eme",
+ "▁as se",
+ "▁ass e",
+ "▁ asse",
+ "▁v u",
+ "▁ vu",
+ "Mo ck",
+ "M ock",
+ "▁spiel te",
+ "▁A er",
+ "▁d atos",
+ "▁dat os",
+ "en des",
+ "end es",
+ "ende s",
+ "▁G el",
+ "▁Ge l",
+ "▁G or",
+ "▁Go r",
+ "Ch rist",
+ "Chr ist",
+ "ch os",
+ "cho s",
+ "c hos",
+ "Process or",
+ "Proc essor",
+ "▁in struct",
+ "▁inst ruct",
+ "▁instru ct",
+ "▁p icked",
+ "▁pick ed",
+ "▁pic ked",
+ "nah me",
+ "nahm e",
+ "fa hr",
+ "fah r",
+ "f ahr",
+ "▁indic ated",
+ "▁indicate d",
+ "▁% .",
+ "▁ %.",
+ "▁t s",
+ "▁ ts",
+ "▁not able",
+ "▁no table",
+ "▁qual ified",
+ "▁А л",
+ "Bl ack",
+ "B lack",
+ "▁coun cil",
+ "▁over head",
+ "ac i",
+ "a ci",
+ "an née",
+ "ann ée",
+ "▁init With",
+ "bi ó",
+ "b ió",
+ "▁int roduction",
+ "▁introdu ction",
+ "▁compan ion",
+ "▁ex pon",
+ "▁exp on",
+ "▁k ör",
+ "▁kö r",
+ "ob y",
+ "o by",
+ "bu rn",
+ "bur n",
+ "b urn",
+ "gn u",
+ "g nu",
+ "virt ual",
+ "v irtual",
+ "▁intel lect",
+ "▁д ержа",
+ "▁ держа",
+ "' +",
+ "б ле",
+ "▁strict ly",
+ "▁recogn ize",
+ "ho ur",
+ "hou r",
+ "h our",
+ "▁W rest",
+ "en nen",
+ "enn en",
+ "enne n",
+ "$) .",
+ "$ ).",
+ "ff f",
+ "f ff",
+ "▁Cent ro",
+ "▁P itt",
+ "▁Pi tt",
+ "▁Pit t",
+ "▁d ział",
+ "▁dz iał",
+ "▁ dział",
+ "▁c ela",
+ "▁ce la",
+ "▁cel a",
+ "▁frances e",
+ "▁franc ese",
+ "ра ми",
+ "spe cial",
+ "spec ial",
+ "▁D up",
+ "▁Du p",
+ "to ire",
+ "t oire",
+ "ка ль",
+ "кал ь",
+ "к аль",
+ "CO UNT",
+ "▁Br ook",
+ "▁Bro ok",
+ "▁ру ково",
+ "pub lique",
+ "▁se conda",
+ "▁second a",
+ "▁sec onda",
+ "▁com pt",
+ "▁comp t",
+ "▁b land",
+ "▁bl and",
+ "▁bla nd",
+ "▁blan d",
+ "Be fore",
+ "▁P ack",
+ "▁Pa ck",
+ "▁Pac k",
+ "▁ Pack",
+ "al ty",
+ "alt y",
+ "öd er",
+ "ö der",
+ "▁interval s",
+ "▁Daten bank",
+ "Mo vie",
+ "M ovie",
+ "▁trans m",
+ "▁tran sm",
+ "▁t ap",
+ "▁ta p",
+ "▁по ч",
+ "fo n",
+ "f on",
+ "ia i",
+ "i ai",
+ "▁f ib",
+ "▁fi b",
+ "▁w yd",
+ "▁wy d",
+ "▁h ung",
+ "▁hun g",
+ "▁hu ng",
+ "▁ hung",
+ "▁a live",
+ "▁al ive",
+ "▁ali ve",
+ "Cl ear",
+ "C lear",
+ "▁p ushed",
+ "▁push ed",
+ "▁tu ple",
+ "▁ tuple",
+ "ach en",
+ "ac hen",
+ "ache n",
+ "a chen",
+ "го во",
+ "гов о",
+ "г ово",
+ "▁re vers",
+ "▁rev ers",
+ "▁reve rs",
+ "▁rever s",
+ "▁au gment",
+ "▁aug ment",
+ "▁ch allenge",
+ "▁challeng e",
+ "lo st",
+ "los t",
+ "l ost",
+ "▁deux ième",
+ "struct or",
+ "stru ctor",
+ "▁mehr erer",
+ "▁mehrere r",
+ "at ural",
+ "atur al",
+ "atura l",
+ "atu ral",
+ "Sp lit",
+ "S plit",
+ "ст ем",
+ "сте м",
+ "с тем",
+ "ш ла",
+ ")\\ \\",
+ ") \\\\",
+ "▁D og",
+ "▁Do g",
+ "▁develop ers",
+ "▁developer s",
+ "▁ developers",
+ "▁n od",
+ "▁no d",
+ "▁сто ро",
+ "▁Na N",
+ "▁ NaN",
+ "▁pr iest",
+ "▁pri est",
+ "▁ex ha",
+ "UN D",
+ "U ND",
+ "pa ir",
+ "p air",
+ "al one",
+ "alo ne",
+ "▁m oon",
+ "▁mo on",
+ "▁# !/",
+ "▁g uns",
+ "▁gu ns",
+ "▁gun s",
+ "ro la",
+ "rol a",
+ "r ola",
+ "чи та",
+ "▁Encyc lopedia",
+ "▁Encyclop edia",
+ "at is",
+ "ati s",
+ "a tis",
+ "▁' \"",
+ "▁ '\"",
+ "zy ch",
+ "z ych",
+ "▁super fic",
+ "▁э к",
+ "еде ра",
+ "fe ed",
+ "f eed",
+ "LA Y",
+ "F i",
+ "un ks",
+ "unk s",
+ "ise cond",
+ "i second",
+ "▁' @",
+ "▁Ad ding",
+ "▁Add ing",
+ "ро е",
+ "▁t ang",
+ "▁tan g",
+ "▁ta ng",
+ "ц о",
+ "hu ng",
+ "h ung",
+ "bi s",
+ "b is",
+ "sk ého",
+ "ské ho",
+ "▁ad vert",
+ "▁adv ert",
+ "▁за нима",
+ "uz z",
+ "u zz",
+ "ág ina",
+ "▁T el",
+ "▁Te l",
+ "si g",
+ "s ig",
+ "▁E z",
+ "▁guarante e",
+ "▁te aching",
+ "▁teach ing",
+ "ot y",
+ "o ty",
+ "ter min",
+ "term in",
+ "▁distribution s",
+ "▁distrib utions",
+ "FL A",
+ "F LA",
+ "▁Gi useppe",
+ "query Selector",
+ "▁/ \\",
+ "▁ /\\",
+ "▁S quad",
+ "g z",
+ "de lay",
+ "del ay",
+ "▁surr ounding",
+ "▁m anus",
+ "▁man us",
+ "▁H ou",
+ "▁Ho u",
+ "² ,",
+ "▁cult iv",
+ "▁trouble s",
+ "▁trou bles",
+ "▁r aison",
+ "▁ra ison",
+ "exp and",
+ "▁c ov",
+ "▁co v",
+ "▁ cov",
+ "nung en",
+ "n ungen",
+ ")) {",
+ ") ){",
+ "▁g een",
+ "▁ge en",
+ "▁au ßer",
+ "▁Л і",
+ "ř i",
+ "▁situ ations",
+ "▁situation s",
+ "▁tele p",
+ "▁tel ep",
+ "▁J ed",
+ "▁Je d",
+ "▁trav ail",
+ "▁trava il",
+ "li as",
+ "lia s",
+ "l ias",
+ "bul let",
+ "▁select ing",
+ "av ier",
+ "avi er",
+ "a vier",
+ "▁ess ential",
+ "( /",
+ "yy yy",
+ "št ě",
+ "ul ty",
+ "ult y",
+ "▁k ra",
+ "▁kr a",
+ "▁t abs",
+ "▁tab s",
+ "▁ta bs",
+ "▁ tabs",
+ "▁experience d",
+ "▁experien ced",
+ "az i",
+ "a zi",
+ "▁D irectory",
+ "▁Direct ory",
+ "▁Director y",
+ "▁ Directory",
+ "▁c ron",
+ "▁cr on",
+ "▁cro n",
+ "▁s pend",
+ "▁sp end",
+ "▁spe nd",
+ "▁R A",
+ "▁ RA",
+ "▁s elenium",
+ "▁sel enium",
+ "▁ selenium",
+ "▁T hé",
+ "▁Th é",
+ "Element s",
+ "El ements",
+ "ci i",
+ "c ii",
+ "▁p lat",
+ "▁pl at",
+ "▁pla t",
+ "▁arch ive",
+ "▁archiv e",
+ "▁ archive",
+ "▁ass istance",
+ "▁assist ance",
+ "▁ne ck",
+ "▁A venue",
+ "▁Aven ue",
+ "▁w heel",
+ "▁whe el",
+ "▁h ade",
+ "▁ha de",
+ "▁had e",
+ "Com mon",
+ "Comm on",
+ "▁D ialog",
+ "▁Di alog",
+ "▁Dia log",
+ "▁ Dialog",
+ "▁f org",
+ "▁for g",
+ "▁fo rg",
+ "▁sur ely",
+ "▁sure ly",
+ "▁h ockey",
+ "kt ó",
+ "k tó",
+ "▁t k",
+ "▁ tk",
+ "▁Br uce",
+ "▁Bru ce",
+ "▁e norm",
+ "▁en orm",
+ ", ’",
+ "▁Christ opher",
+ "▁Christoph er",
+ "je v",
+ "j ev",
+ "▁qu ad",
+ "▁ quad",
+ "▁A JAX",
+ "▁rel ief",
+ "▁reli ef",
+ "▁m odes",
+ "▁mod es",
+ "▁mo des",
+ "▁mode s",
+ "sk lär",
+ "s klär",
+ "▁V id",
+ "▁Vi d",
+ "▁Se rial",
+ "▁Ser ial",
+ "▁ Serial",
+ "▁to kens",
+ "▁token s",
+ "▁Pol and",
+ "▁Po land",
+ "\\ ]",
+ "▁v ide",
+ "▁vi de",
+ "▁vid e",
+ "ro oms",
+ "room s",
+ "om as",
+ "oma s",
+ "o mas",
+ "▁B ureau",
+ "▁Bur eau",
+ "c x",
+ "ность ю",
+ "ност ью",
+ "▁sign s",
+ "▁sig ns",
+ "ше ние",
+ "los sen",
+ "loss en",
+ "l ossen",
+ "▁Que ens",
+ "▁Queen s",
+ "▁m embre",
+ "▁mem bre",
+ "▁memb re",
+ "▁m ez",
+ "▁me z",
+ "▁ mez",
+ "▁B ool",
+ "▁Bo ol",
+ "▁ Bool",
+ "▁N aj",
+ "▁Na j",
+ "▁Mem ory",
+ "▁ Memory",
+ "▁K han",
+ "▁Kh an",
+ "▁l à",
+ "▁ là",
+ "▁H ud",
+ "▁Hu d",
+ "▁d ismiss",
+ "▁dis miss",
+ "ight h",
+ "igh th",
+ "▁f s",
+ "▁ fs",
+ "pr event",
+ "pre vent",
+ "prev ent",
+ "▁ме да",
+ "▁Pol ice",
+ "▁Po lice",
+ "▁с ко",
+ "▁ ско",
+ "fin ite",
+ "▁a mi",
+ "▁am i",
+ "▁ ami",
+ "▁M uch",
+ "▁Mu ch",
+ "ow ania",
+ "owa nia",
+ "owan ia",
+ "OR Y",
+ "O RY",
+ "io rs",
+ "ior s",
+ "i ors",
+ "▁Prem io",
+ "▁text box",
+ "d m",
+ "▁a fin",
+ "▁af in",
+ "▁Don ald",
+ "▁ Donald",
+ "▁P riv",
+ "▁Pr iv",
+ "▁Pri v",
+ "▁de cid",
+ "▁dec id",
+ "▁Maur ice",
+ "▁Mau rice",
+ "ag an",
+ "aga n",
+ "a gan",
+ "▁Britann ica",
+ "▁o ft",
+ "▁of t",
+ "▁consec utive",
+ "\"? >",
+ "\" ?>",
+ "ови й",
+ "st udent",
+ "stud ent",
+ "▁pe que",
+ "▁di eses",
+ "▁dies es",
+ "▁diese s",
+ "▁ret our",
+ "ét r",
+ "é tr",
+ "▁с ез",
+ "▁се з",
+ "▁k re",
+ "▁kr e",
+ "▁ kre",
+ "▁v otes",
+ "▁vo tes",
+ "▁vot es",
+ "▁vote s",
+ "ru ption",
+ "rupt ion",
+ "rup tion",
+ "iz ada",
+ "iza da",
+ "▁W iel",
+ "▁Wi el",
+ "▁Wie l",
+ "▁G ray",
+ "▁Gr ay",
+ "▁Gra y",
+ "▁Le op",
+ "▁Leo p",
+ "teil ung",
+ "tei lung",
+ "([ '",
+ "( ['",
+ "▁wh ites",
+ "▁white s",
+ "fr ica",
+ "fri ca",
+ "f rica",
+ "an imation",
+ "anim ation",
+ "cur l",
+ "cu rl",
+ "c url",
+ "ling s",
+ "lin gs",
+ "l ings",
+ "=\" $",
+ "lo yd",
+ "loy d",
+ "text sc",
+ "ор у",
+ "о ру",
+ "▁се ла",
+ "es ian",
+ "esi an",
+ "esia n",
+ "▁M ission",
+ "▁Miss ion",
+ "▁не за",
+ "▁ult imately",
+ "бо в",
+ "б ов",
+ "ol en",
+ "ole n",
+ "o len",
+ "ско му",
+ "ском у",
+ "ск ому",
+ "с кому",
+ "ne te",
+ "net e",
+ "n ete",
+ "▁D it",
+ "▁Di t",
+ "▁co stru",
+ "▁cost ru",
+ "dep endent",
+ "▁Re source",
+ "▁Res ource",
+ "▁ Resource",
+ "▁host s",
+ "▁hos ts",
+ "▁ hosts",
+ "▁re ar",
+ "▁r ear",
+ "D uration",
+ "ни ків",
+ "ник ів",
+ "М а",
+ "▁pl anning",
+ "▁plan ning",
+ "▁pre diction",
+ "▁pred iction",
+ "▁predict ion",
+ "▁L yn",
+ "▁Ly n",
+ "▁k ir",
+ "▁ki r",
+ "▁ kir",
+ "▁Leg isl",
+ "ма т",
+ "м ат",
+ "▁S occer",
+ "▁Soc cer",
+ "▁sur vey",
+ "▁surv ey",
+ "▁surve y",
+ "▁estadoun idense",
+ "or gen",
+ "org en",
+ "orge n",
+ "jo urd",
+ "jou rd",
+ "j ourd",
+ "▁ap rile",
+ "▁april e",
+ "▁apr ile",
+ "▁i ds",
+ "▁id s",
+ "▁ ids",
+ "сь ке",
+ "ськ е",
+ "▁emp loyee",
+ "▁employ ee",
+ "▁ employee",
+ "▁Schaus pieler",
+ "р ъ",
+ "▁mult imedia",
+ "▁multi media",
+ "▁сво ю",
+ "▁w ine",
+ "▁win e",
+ "▁E U",
+ "ic ă",
+ "▁R hein",
+ "▁Rh ein",
+ "▁Pal mar",
+ "ot eca",
+ "ote ca",
+ "▁prep are",
+ "▁prepar e",
+ "▁ prepare",
+ "▁T ot",
+ "▁To t",
+ "▁N ull",
+ "▁Nu ll",
+ "▁ Null",
+ "▁k in",
+ "▁ki n",
+ "▁ kin",
+ "in als",
+ "inal s",
+ "ina ls",
+ "▁New ton",
+ "▁t bl",
+ "▁ tbl",
+ "▁S old",
+ "▁So ld",
+ "▁Sol d",
+ "▁ver f",
+ "▁ve rf",
+ "at uring",
+ "atur ing",
+ "atu ring",
+ "▁la ptop",
+ "▁lap top",
+ "▁Со вет",
+ "▁Сов ет",
+ "▁Сове т",
+ "se cret",
+ "sec ret",
+ "▁Olymp ic",
+ "▁football er",
+ "▁Rud olf",
+ "▁con he",
+ "zy sk",
+ "▁evalu ated",
+ "▁evaluate d",
+ "» )",
+ "sh op",
+ "re pository",
+ "▁z ach",
+ "▁za ch",
+ "▁l osing",
+ "▁lo sing",
+ "▁los ing",
+ "et ter",
+ "ett er",
+ "ette r",
+ "▁W irtschaft",
+ "та к",
+ "▁unnecess ary",
+ "▁P hot",
+ "▁Ph ot",
+ "▁Pho t",
+ "an ska",
+ "ans ka",
+ "ansk a",
+ "▁N ative",
+ "▁Nat ive",
+ "▁ Native",
+ "CC E",
+ "C CE",
+ "▁fi fty",
+ "▁fif ty",
+ "▁e rw",
+ "▁er w",
+ "r h",
+ "is sent",
+ "iss ent",
+ "isse nt",
+ "issen t",
+ "}{ (",
+ "} {(",
+ "▁lan ç",
+ "▁X code",
+ "го род",
+ "гор од",
+ "ci r",
+ "c ir",
+ "▁pel ícula",
+ "▁O scar",
+ "▁Os car",
+ "▁sh ore",
+ "▁sho re",
+ "▁supp lied",
+ "ex amples",
+ "example s",
+ "Me ss",
+ "M ess",
+ "VI CE",
+ "V ICE",
+ "▁ex clude",
+ "▁h en",
+ "▁he n",
+ "▁ hen",
+ "▁гу бер",
+ "▁F ragment",
+ "▁Fra gment",
+ "▁ Fragment",
+ "▁B itte",
+ "▁Bi tte",
+ "▁Bit te",
+ "▁Bes ides",
+ "▁h es",
+ "▁he s",
+ "▁ hes",
+ "▁ih rem",
+ "▁ihr em",
+ "▁ihre m",
+ "▁Ser ge",
+ "▁art ific",
+ "=\" ${",
+ "=\"$ {",
+ "ло во",
+ "лов о",
+ "л ово",
+ "ut eur",
+ "ute ur",
+ "ta ire",
+ "t aire",
+ "па с",
+ "▁eas iest",
+ "▁fam iglia",
+ "N ormal",
+ "▁d alle",
+ "▁da lle",
+ "▁dal le",
+ "▁dall e",
+ "▁n ations",
+ "▁nation s",
+ "▁nat ions",
+ "r p",
+ "th ead",
+ "the ad",
+ "t head",
+ "▁обла сті",
+ "▁Democr atic",
+ "▁челов е",
+ "мо ж",
+ "▁г ер",
+ "▁ге р",
+ "▁ гер",
+ "▁small est",
+ "▁Publish ing",
+ "▁T s",
+ "▁laugh ed",
+ "ll e",
+ "l le",
+ "▁A mt",
+ "▁Am t",
+ "▁I IS",
+ "▁II S",
+ "FOR M",
+ "F ORM",
+ "Ma g",
+ "M ag",
+ "до н",
+ "д он",
+ "▁st oria",
+ "▁stor ia",
+ "▁sto ria",
+ "▁organ ized",
+ "▁organiz ed",
+ "č ní",
+ "▁o x",
+ "▁ ox",
+ "ling en",
+ "lin gen",
+ "l ingen",
+ "▁lu ego",
+ "cc ió",
+ "c ció",
+ "▁re ly",
+ "▁r ely",
+ "▁rel y",
+ "▁t ussen",
+ "er ten",
+ "ert en",
+ "erte n",
+ "▁hon our",
+ "▁Cla ude",
+ "▁Claud e",
+ "▁Ko rea",
+ "▁Kore a",
+ "▁Kor ea",
+ "▁Met ropol",
+ "▁Metro pol",
+ "Su per",
+ "S uper",
+ "ri en",
+ "rie n",
+ "r ien",
+ "ér ature",
+ "att ro",
+ "attr o",
+ "▁б іль",
+ "▁бі ль",
+ "▁ біль",
+ "▁Her bert",
+ "▁aut eurs",
+ "▁aute urs",
+ "▁dar auf",
+ "▁m ental",
+ "▁men tal",
+ "▁ment al",
+ "▁r ang",
+ "▁ra ng",
+ "▁ran g",
+ "▁s ón",
+ "▁só n",
+ "▁S oph",
+ "▁So ph",
+ ")\" ,",
+ ") \",",
+ "Des criptor",
+ "prep are",
+ "▁Land kreis",
+ "H C",
+ "cr oss",
+ "cro ss",
+ "c ross",
+ "ли за",
+ "▁Lo gin",
+ "▁Log in",
+ "▁ Login",
+ "on en",
+ "one n",
+ "o nen",
+ "Fe ature",
+ "▁m useum",
+ "▁muse um",
+ "▁ museum",
+ "ve k",
+ "v ek",
+ "▁Nel son",
+ "▁re jo",
+ "▁коман ди",
+ "▁sum mar",
+ "▁summ ar",
+ "▁сле ду",
+ "▁след у",
+ "äm p",
+ "ä mp",
+ "▁G as",
+ "▁Ga s",
+ "во м",
+ "в ом",
+ "VAL UE",
+ "in ge",
+ "ing e",
+ "per iod",
+ "lass en",
+ "las sen",
+ "lasse n",
+ "l assen",
+ "áv al",
+ "á val",
+ "▁alt ogether",
+ "um ph",
+ "ump h",
+ "ist ro",
+ "istr o",
+ "ą ż",
+ "▁Ke ep",
+ "▁Mar co",
+ "▁Marc o",
+ "▁ét ant",
+ "▁D re",
+ "▁Dr e",
+ "ge ometry",
+ "▁K as",
+ "▁Ka s",
+ "message s",
+ "mess ages",
+ "Co ok",
+ "C ook",
+ "▁S ide",
+ "▁Si de",
+ "▁Sid e",
+ "▁ Side",
+ "▁ко ми",
+ "▁ком и",
+ "ст ри",
+ "стр и",
+ "с три",
+ "▁ex cess",
+ "▁exc ess",
+ "▁Bi ografia",
+ "XX XX",
+ "XXX X",
+ "X XXX",
+ "▁N ie",
+ "▁Ni e",
+ "ven dor",
+ "v endor",
+ "xs d",
+ "x sd",
+ "Mil l",
+ "M ill",
+ "process ing",
+ "▁Miss ouri",
+ "▁perm ett",
+ "▁permet t",
+ "▁a par",
+ "▁ap ar",
+ "▁cro wd",
+ "▁crow d",
+ "fer t",
+ "fe rt",
+ "f ert",
+ "▁D ou",
+ "▁Do u",
+ "r í",
+ "▁C C",
+ "▁ CC",
+ "▁pay ment",
+ "▁ payment",
+ "▁Hol lywood",
+ "▁V irtual",
+ "▁ Virtual",
+ "▁sp oken",
+ "▁spoke n",
+ "▁spo ken",
+ "▁t ram",
+ "▁tr am",
+ "▁tra m",
+ "▁Comm unity",
+ "▁Commun ity",
+ "▁administr ative",
+ "▁в оло",
+ "▁во ло",
+ "gi or",
+ "gio r",
+ "g ior",
+ "vis or",
+ "▁Укра и",
+ "st age",
+ "sta ge",
+ "stag e",
+ "▁For mat",
+ "▁Form at",
+ "▁ Format",
+ "▁conven ient",
+ "Н а",
+ "▁med ian",
+ "▁media n",
+ "▁medi an",
+ "▁в ра",
+ "▁ вра",
+ "▁Пре ма",
+ "en ig",
+ "eni g",
+ "e nig",
+ "▁Op era",
+ "▁Oper a",
+ "ré s",
+ "r és",
+ "▁f mt",
+ "▁ fmt",
+ "▁effic iency",
+ "ma le",
+ "mal e",
+ "m ale",
+ "Ma ster",
+ "M aster",
+ "Ser ies",
+ "Se ries",
+ "S eries",
+ "▁s yd",
+ "▁sy d",
+ "gener ic",
+ "inter val",
+ "▁e fect",
+ "▁inwon ers",
+ "лим пи",
+ "ir ement",
+ "ire ment",
+ "Er r",
+ "E rr",
+ "ö h",
+ "▁l ying",
+ "▁ly ing",
+ "▁ lying",
+ "▁S ettings",
+ "▁Setting s",
+ "▁ Settings",
+ "! =",
+ "em atic",
+ "emat ic",
+ "arg v",
+ "▁Bas ic",
+ "▁ Basic",
+ "▁consider ation",
+ "▁h abe",
+ "▁ha be",
+ "▁hab e",
+ "- %",
+ "▁mount ains",
+ "▁mountain s",
+ "▁pe ak",
+ "▁f allen",
+ "▁fall en",
+ "▁fal len",
+ "ed ed",
+ "ede d",
+ "e ded",
+ "log ic",
+ "▁mat ched",
+ "▁match ed",
+ "▁typ ing",
+ "▁ty ping",
+ ")} ,",
+ ") },",
+ "▁f ancy",
+ "▁fan cy",
+ "▁eleg ant",
+ "ا ل",
+ "▁уча ст",
+ "▁Sa rah",
+ "▁Sar ah",
+ "▁V erd",
+ "▁Ver d",
+ "▁Ve rd",
+ "▁t ego",
+ "▁te go",
+ "ru les",
+ "rule s",
+ "r ules",
+ "▁mo unted",
+ "▁mount ed",
+ "▁і м",
+ "ер у",
+ "е ру",
+ "st off",
+ "sto ff",
+ "fa hren",
+ "fah ren",
+ "fahr en",
+ "f ahren",
+ "dist ance",
+ "d istance",
+ "▁Lic ense",
+ "▁LE FT",
+ "▁ LEFT",
+ "▁w p",
+ "▁ wp",
+ "/ {",
+ "▁am azon",
+ "▁amaz on",
+ "▁ amazon",
+ "> &",
+ "▁els ő",
+ "qu arters",
+ "▁sh ock",
+ "▁sho ck",
+ "ni ck",
+ "nic k",
+ "n ick",
+ "▁Arch ite",
+ "▁S quare",
+ "▁r ates",
+ "▁ra tes",
+ "▁rate s",
+ "▁rat es",
+ "io re",
+ "ior e",
+ "i ore",
+ "▁N at",
+ "▁Na t",
+ "▁Char lot",
+ "re ichen",
+ "reich en",
+ "rei chen",
+ "reiche n",
+ "▁var iation",
+ "▁vari ation",
+ "os is",
+ "osi s",
+ "li fe",
+ "l ife",
+ "sl ide",
+ "s lide",
+ "ab i",
+ "a bi",
+ "uk i",
+ "u ki",
+ "my sq",
+ "mys q",
+ "▁prim itive",
+ "▁primit ive",
+ "▁univers itaire",
+ "LE NG",
+ "ale ż",
+ "eb ook",
+ "e book",
+ "s yn",
+ "▁G egen",
+ "▁Ge gen",
+ "▁Geg en",
+ "▁K ü",
+ "▁а ле",
+ "▁ал е",
+ "▁L ub",
+ "▁Lu b",
+ "con current",
+ "izz ato",
+ "izza to",
+ "▁st ub",
+ "▁i e",
+ "▁ ie",
+ "▁' ./",
+ "▁'. /",
+ "co d",
+ "c od",
+ "▁intern acional",
+ "▁G las",
+ "▁Gl as",
+ "▁Gla s",
+ "▁m are",
+ "▁ma re",
+ "▁mar e",
+ "▁N eb",
+ "▁Ne b",
+ "▁G B",
+ "▁ GB",
+ "kw args",
+ "▁a ument",
+ "▁au ment",
+ "WI D",
+ "W ID",
+ "▁ро д",
+ "▁р од",
+ "▁ род",
+ "p unkt",
+ "▁G rad",
+ "▁Gr ad",
+ "▁Gra d",
+ "▁ Grad",
+ "S N",
+ "AM P",
+ "A MP",
+ "▁B orn",
+ "▁Bo rn",
+ "▁Bor n",
+ "▁Guer re",
+ "го тов",
+ "▁med io",
+ "▁medi o",
+ "Me d",
+ "M ed",
+ "su pp",
+ "sup p",
+ "s upp",
+ "act ual",
+ "drop down",
+ "▁ok tober",
+ "▁ ř",
+ "▁circ ular",
+ "▁cir cular",
+ "▁circul ar",
+ "▁s kin",
+ "▁sk in",
+ "▁ski n",
+ "▁em phas",
+ "▁emp has",
+ "▁го лов",
+ "▁голо в",
+ "▁p ue",
+ "▁pu e",
+ "▁inform ations",
+ "▁information s",
+ "▁Wolf gang",
+ "▁us eless",
+ "▁use less",
+ "и т",
+ "▁Jo an",
+ "▁б ор",
+ "▁бо р",
+ "▁ бор",
+ "▁G lad",
+ "▁Gl ad",
+ "▁Gla d",
+ "▁K now",
+ "▁Kn ow",
+ "▁Kno w",
+ "ké nt",
+ "k ént",
+ "sp eed",
+ "spe ed",
+ "▁Ke vin",
+ "un ft",
+ "▁ar qu",
+ "▁ arqu",
+ "▁C asa",
+ "▁Cas a",
+ "▁Ca sa",
+ "(. ..",
+ "( ...",
+ "▁rapid ly",
+ "▁pro ble",
+ "▁prob le",
+ "▁probl e",
+ "▁Ви кипеди",
+ "že n",
+ "ž en",
+ "▁N eben",
+ "▁Ne ben",
+ "▁Neb en",
+ "▁M eter",
+ "▁Me ter",
+ "▁Met er",
+ "Child ren",
+ "ce m",
+ "c em",
+ "ig os",
+ "igo s",
+ "aj u",
+ "a ju",
+ "▁Ret rie",
+ "▁H ell",
+ "▁He ll",
+ "▁Hel l",
+ "▁g ig",
+ "▁gi g",
+ "▁contro vers",
+ "▁z oom",
+ "▁zo om",
+ "▁zoo m",
+ "▁c ens",
+ "▁ce ns",
+ "▁alc uni",
+ "▁He ader",
+ "▁Head er",
+ "▁ Header",
+ "Me ta",
+ "Met a",
+ "M eta",
+ "Re quired",
+ "▁ин ститу",
+ "▁s kup",
+ "▁sk up",
+ "▁ing les",
+ "ég l",
+ "é gl",
+ "bi j",
+ "b ij",
+ "▁t ér",
+ "▁té r",
+ "▁com pag",
+ "▁comp ag",
+ "▁comm itted",
+ "▁commit ted",
+ "▁process ed",
+ "▁proc essed",
+ "▁proces sed",
+ "Lo wer",
+ "L ower",
+ "▁F oreign",
+ "▁For eign",
+ "▁Fore ign",
+ "▁ Foreign",
+ "▁s eq",
+ "▁se q",
+ "▁ seq",
+ "sheet s",
+ "she ets",
+ "▁F em",
+ "▁Fe m",
+ "ho z",
+ "h oz",
+ "in ks",
+ "ink s",
+ "▁k all",
+ "▁ka ll",
+ "▁kal l",
+ "vari ant",
+ "▁li bro",
+ "▁lib ro",
+ "▁cl icks",
+ "▁click s",
+ "▁cli cks",
+ "▁g obierno",
+ "ie gel",
+ "ieg el",
+ "мо го",
+ "м ого",
+ "ge me",
+ "gem e",
+ "g eme",
+ "▁t ower",
+ "▁to wer",
+ "▁par ish",
+ "▁T CP",
+ "▁l s",
+ "▁ ls",
+ "▁n ginx",
+ "▁ng inx",
+ "▁ nginx",
+ "Na N",
+ "▁D ir",
+ "▁Di r",
+ "▁ Dir",
+ "▁Begr iffe",
+ "▁Begriff e",
+ "ar ie",
+ "ari e",
+ "a rie",
+ "ím p",
+ "í mp",
+ "ic ios",
+ "ici os",
+ "icio s",
+ "i cios",
+ "▁sh aring",
+ "▁cin éma",
+ "be c",
+ "b ec",
+ "RE D",
+ "R ED",
+ "▁K ra",
+ "▁Kr a",
+ "ab ol",
+ "a bol",
+ "▁fl ux",
+ "▁flu x",
+ "▁exp ensive",
+ "▁су ще",
+ "▁` _",
+ "oc z",
+ "o cz",
+ "ли ст",
+ "▁acqu aint",
+ "▁w ise",
+ "▁wis e",
+ "▁ wise",
+ "▁pou voir",
+ "▁pouv oir",
+ "▁dev ant",
+ "▁moment um",
+ "im mer",
+ "imm er",
+ "▁C oupe",
+ "▁Cou pe",
+ "index Of",
+ "▁does nt",
+ "▁doesn t",
+ "▁за в",
+ "▁lic ense",
+ "▁ â",
+ "CS S",
+ "C SS",
+ "▁r ice",
+ "▁ric e",
+ "▁ri ce",
+ "▁ rice",
+ "Te am",
+ "▁a no",
+ "▁an o",
+ "▁ ano",
+ "li t",
+ "l it",
+ "▁mer ged",
+ "▁merge d",
+ "▁C ell",
+ "▁Ce ll",
+ "▁Cel l",
+ "▁ Cell",
+ "л л",
+ "bo y",
+ "b oy",
+ "as ts",
+ "ast s",
+ "▁s ell",
+ "▁se ll",
+ "▁sel l",
+ "▁gro ße",
+ "▁groß e",
+ "▁virt uel",
+ "▁virtue l",
+ "Can cel",
+ "▁s j",
+ "g ment",
+ ". <",
+ "ча й",
+ "i ë",
+ "ak h",
+ "a kh",
+ "iz ers",
+ "ize rs",
+ "izer s",
+ "pr it",
+ "p rit",
+ "▁T ib",
+ "▁Ti b",
+ "▁elabor ate",
+ "▁f é",
+ "▁м еди",
+ "▁ме ди",
+ "LENG TH",
+ "▁prim arily",
+ "▁sc ores",
+ "▁score s",
+ "▁carry ing",
+ "▁l ake",
+ "▁la ke",
+ "▁lak e",
+ "com pose",
+ "comp ose",
+ "compos e",
+ "▁Town ship",
+ "un ge",
+ "ung e",
+ "▁al berga",
+ "an ych",
+ "any ch",
+ "a nych",
+ "qu elle",
+ "que lle",
+ "quel le",
+ "q uelle",
+ "▁Ar k",
+ "▁p ris",
+ "▁pr is",
+ "▁pri s",
+ "▁v oll",
+ "▁vo ll",
+ "▁vol l",
+ "ш ли",
+ "Valid ation",
+ "▁ce ux",
+ "▁pop ulate",
+ "▁popula te",
+ "▁popul ate",
+ "\" \r",
+ "▁fem mes",
+ "▁femme s",
+ "AN G",
+ "A NG",
+ "▁Desp ite",
+ "вы е",
+ "в ые",
+ "is ke",
+ "isk e",
+ "i ske",
+ "zu g",
+ "z ug",
+ "на ча",
+ "▁h atten",
+ "▁hat ten",
+ "▁hatte n",
+ "IN SERT",
+ "Emp loyee",
+ "▁mo ments",
+ "▁moment s",
+ "▁mom ents",
+ "▁últ ima",
+ "▁h older",
+ "▁hold er",
+ "▁ho lder",
+ "▁hol der",
+ "▁ holder",
+ "bl ank",
+ "Col lections",
+ "Collection s",
+ "Collect ions",
+ "ath ers",
+ "ather s",
+ "a thers",
+ "▁g rade",
+ "▁gr ade",
+ "▁gra de",
+ "▁grad e",
+ "▁ grade",
+ "▁aff airs",
+ "▁affair s",
+ ".$ $",
+ ". $$",
+ "▁d elta",
+ "▁del ta",
+ "▁ delta",
+ "▁Jug end",
+ "▁españ ol",
+ "▁O UT",
+ "▁ OUT",
+ "▁mathemat ical",
+ "▁m ongo",
+ "▁mon go",
+ "▁Ф е",
+ "ul ing",
+ "uli ng",
+ "u ling",
+ "▁re volution",
+ "▁revol ution",
+ "▁c oin",
+ "▁co in",
+ "▁sub class",
+ "\" =>",
+ "äch e",
+ "ä che",
+ "▁p yg",
+ "▁py g",
+ "ща я",
+ "ill ery",
+ "ille ry",
+ "iller y",
+ "▁com enz",
+ "dep th",
+ "▁c él",
+ "▁re size",
+ "▁res ize",
+ "▁ resize",
+ "▁S ame",
+ "▁Sam e",
+ "▁Sa me",
+ "▁st rik",
+ "▁str ik",
+ "▁stri k",
+ "▁t ir",
+ "▁ti r",
+ "▁sc arc",
+ "▁scar c",
+ "▁M ember",
+ "▁Mem ber",
+ "▁ Member",
+ "sub scribe",
+ "ó ż",
+ "út bol",
+ "ex cept",
+ "▁dr iving",
+ "▁dri ving",
+ "▁driv ing",
+ "ki e",
+ "k ie",
+ "zo ny",
+ "zon y",
+ "z ony",
+ "ème s",
+ "è mes",
+ "Da vid",
+ "D avid",
+ "iss ant",
+ "issa nt",
+ "▁т ы",
+ "▁ ты",
+ "▁é lect",
+ "▁él ect",
+ "▁re name",
+ "▁r ename",
+ "▁ren ame",
+ "▁R unning",
+ "▁Run ning",
+ "▁ Running",
+ "▁inter faces",
+ "▁interface s",
+ "//////// ////////",
+ "▁Wal ker",
+ "▁Walk er",
+ "▁soci été",
+ "▁as ks",
+ "▁ask s",
+ "br id",
+ "b rid",
+ "▁je we",
+ "▁se ines",
+ "▁sein es",
+ "▁seine s",
+ "▁sei nes",
+ "▁ag ents",
+ "▁agent s",
+ "▁M Y",
+ "▁ MY",
+ "▁Law rence",
+ "de ss",
+ "des s",
+ "d ess",
+ "ie sen",
+ "ies en",
+ "iese n",
+ "i esen",
+ "▁людя х",
+ "прав и",
+ "пра ви",
+ "▁anc est",
+ "▁wel che",
+ "ra um",
+ "r aum",
+ "▁o rb",
+ "▁or b",
+ "▁ orb",
+ "sc al",
+ "s cal",
+ "▁L ear",
+ "▁Le ar",
+ "▁w ear",
+ "▁we ar",
+ "▁s lave",
+ "▁sl ave",
+ "▁sla ve",
+ "▁re named",
+ "▁ren amed",
+ "▁rename d",
+ "če n",
+ "č en",
+ "ma ste",
+ "mas te",
+ "m aste",
+ "ang les",
+ "angle s",
+ "▁Am érica",
+ "▁t i",
+ "▁ ti",
+ "▁dem sel",
+ "▁bene ath",
+ "bin ary",
+ "b inary",
+ "▁ed ición",
+ "▁kil omet",
+ "▁kilom et",
+ "ui ts",
+ "uit s",
+ "u its",
+ "▁cu atro",
+ "▁ent rance",
+ "▁entr ance",
+ "ond issement",
+ "▁b ag",
+ "▁ba g",
+ "▁ bag",
+ "▁Ar men",
+ "▁Arm en",
+ "ij o",
+ "i jo",
+ "▁L ors",
+ "▁Lo rs",
+ "▁Lor s",
+ "▁demsel ben",
+ "ê m",
+ "▁dis crete",
+ "▁prom inent",
+ "▁J ay",
+ "▁Ja y",
+ "de cor",
+ "dec or",
+ "D L",
+ "▁d í",
+ "St ruct",
+ "Str uct",
+ "▁P roduction",
+ "▁Produ ction",
+ "▁Product ion",
+ "th ey",
+ "the y",
+ "ar ius",
+ "ari us",
+ "sch nitt",
+ "▁C ou",
+ "▁Co u",
+ "▁l ex",
+ "▁le x",
+ "▁ lex",
+ "y outube",
+ "▁рабо та",
+ "st ation",
+ "sta tion",
+ "stat ion",
+ "se p",
+ "s ep",
+ "▁mi rror",
+ "▁mir ror",
+ "▁h its",
+ "▁hit s",
+ "▁hi ts",
+ "▁Be ck",
+ "at ically",
+ "atic ally",
+ "▁L az",
+ "▁La z",
+ "▁w inner",
+ "▁win ner",
+ "DE X",
+ "D EX",
+ "▁I NT",
+ "▁IN T",
+ "▁ INT",
+ "}^ {-",
+ "}^{ -",
+ "} ^{-",
+ "▁w egen",
+ "▁we gen",
+ "▁weg en",
+ "ma d",
+ "m ad",
+ "An gle",
+ "Ang le",
+ "zi ng",
+ "zin g",
+ "z ing",
+ "▁Bay ern",
+ "▁Bayer n",
+ "sa l",
+ "s al",
+ "äg er",
+ "ä ger",
+ "▁bus y",
+ "▁st ör",
+ "▁f olk",
+ "▁fol k",
+ "▁ folk",
+ "▁p rix",
+ "▁pr ix",
+ "▁pri x",
+ "▁al located",
+ "▁alloc ated",
+ "▁allocate d",
+ "▁p t",
+ "▁ pt",
+ "af fen",
+ "aff en",
+ "a ffen",
+ "cl uster",
+ "clus ter",
+ "▁com plement",
+ "▁comp lement",
+ "▁comple ment",
+ "▁compl ement",
+ "ár s",
+ "á rs",
+ "▁Amer ika",
+ "рі й",
+ "р ій",
+ "▁val ley",
+ "▁vall ey",
+ "▁valle y",
+ "▁ro oms",
+ "▁room s",
+ "▁ rooms",
+ "▁m oi",
+ "▁mo i",
+ ".\" ,",
+ ". \",",
+ ";; ;;",
+ "▁lo west",
+ "▁low est",
+ "no g",
+ "n og",
+ "▁land et",
+ "▁lan det",
+ "▁program me",
+ "ch io",
+ "chi o",
+ "▁W ährend",
+ "ánd ez",
+ "▁дол ж",
+ "▁o uv",
+ "▁ou v",
+ "▁ ouv",
+ "om ány",
+ "▁Википеди и",
+ "▁s ó",
+ "▁ele ktr",
+ "De sc",
+ "Des c",
+ "D esc",
+ "▁Be aut",
+ "▁Beau t",
+ "на р",
+ "н ар",
+ "▁мо же",
+ "▁мож е",
+ "P ierre",
+ "es ota",
+ "eso ta",
+ "▁oper ated",
+ "▁opera ted",
+ "▁operate d",
+ "▁f orte",
+ "▁for te",
+ "▁fort e",
+ "ри с",
+ "р ис",
+ "▁op position",
+ "▁opp osition",
+ "▁oppos ition",
+ "al ia",
+ "ali a",
+ "a lia",
+ "▁S yl",
+ "▁Sy l",
+ "get Name",
+ "ве ли",
+ "fi k",
+ "f ik",
+ "▁com prom",
+ "▁comp rom",
+ "▁compr om",
+ "▁Text View",
+ "▁ TextView",
+ "Sp ring",
+ "S pring",
+ "met adata",
+ "meta data",
+ "en gu",
+ "eng u",
+ "/ ,",
+ "▁car ri",
+ "is tol",
+ "ist ol",
+ "isto l",
+ "▁diag onal",
+ "li sta",
+ "list a",
+ "lis ta",
+ "l ista",
+ "iz en",
+ "ize n",
+ "i zen",
+ "▁re nde",
+ "▁r ende",
+ "▁ren de",
+ "▁rend e",
+ "gc c",
+ "g cc",
+ "be ck",
+ "bec k",
+ "li us",
+ "l ius",
+ "ir al",
+ "ira l",
+ "i ral",
+ "Resol ver",
+ "▁percent age",
+ "▁at tra",
+ "▁att ra",
+ "▁attr a",
+ "str ings",
+ "string s",
+ "wi ąz",
+ "od s",
+ "o ds",
+ "во лю",
+ "ę ż",
+ "▁news paper",
+ "▁newsp aper",
+ "im iter",
+ "imi ter",
+ "imit er",
+ "AB C",
+ "A BC",
+ "▁Man chester",
+ "[ {",
+ "Ag ent",
+ "Age nt",
+ "A gent",
+ "▁W or",
+ "▁Wo r",
+ "▁K ath",
+ "▁Kat h",
+ "▁Ka th",
+ "▁по ві",
+ "▁пов і",
+ "▁ent onces",
+ "▁n iveau",
+ "at ted",
+ "att ed",
+ "atte d",
+ "le arn",
+ "lear n",
+ "lea rn",
+ "at iques",
+ "ati ques",
+ "atique s",
+ "▁у би",
+ "▁qu indi",
+ "bin ding",
+ "bind ing",
+ "b inding",
+ "▁import ed",
+ "▁imp orted",
+ "▁H orn",
+ "▁Hor n",
+ "▁Ho rn",
+ "em berg",
+ "ember g",
+ "emb erg",
+ "com plex",
+ "comp lex",
+ "comple x",
+ "▁ne ural",
+ "▁neu ral",
+ "▁neur al",
+ "in formation",
+ "▁recogn ition",
+ "in gt",
+ "ing t",
+ "▁inhab itants",
+ "vu e",
+ "v ue",
+ "▁Be völker",
+ "▁cur ves",
+ "▁curve s",
+ "▁curv es",
+ "▁l eb",
+ "▁le b",
+ "▁ leb",
+ "ді й",
+ "д ій",
+ "▁s ow",
+ "▁so w",
+ "▁sent iment",
+ "P H",
+ "ra che",
+ "rac he",
+ "rach e",
+ "r ache",
+ "▁- (",
+ "▁ -(",
+ "▁e stable",
+ "▁est able",
+ "▁es table",
+ "▁estab le",
+ "▁esta ble",
+ "▁Ferd inand",
+ "▁é crit",
+ "▁éc rit",
+ "▁prime iro",
+ "▁t ex",
+ "▁te x",
+ "▁ tex",
+ "▁inter mediate",
+ "ve rage",
+ "ver age",
+ "vera ge",
+ "ib us",
+ "i bus",
+ "▁s erves",
+ "▁ser ves",
+ "▁serv es",
+ "▁serve s",
+ "iv as",
+ "iva s",
+ "i vas",
+ "▁b ru",
+ "▁br u",
+ "▁ bru",
+ "▁l um",
+ "▁lu m",
+ "att ice",
+ "atti ce",
+ "ч ный",
+ "▁D res",
+ "▁Dr es",
+ "▁Dre s",
+ "▁v ideos",
+ "▁video s",
+ "▁vide os",
+ "d uration",
+ "▁a bit",
+ "▁ab it",
+ "▁e gg",
+ "▁eg g",
+ "ograph ical",
+ "ographic al",
+ "al ph",
+ "ST ATE",
+ "STAT E",
+ "▁па ра",
+ "▁пар а",
+ "▁ пара",
+ "re ading",
+ "read ing",
+ "rea ding",
+ "▁veh icle",
+ "▁fort une",
+ "ult ats",
+ "▁St oria",
+ "▁Sto ria",
+ "mi dt",
+ "mid t",
+ "łą cz",
+ "▁Mem orial",
+ "▁v as",
+ "▁va s",
+ "▁ vas",
+ "▁з ан",
+ "▁за н",
+ "▁ зан",
+ "▁ut ility",
+ "▁util ity",
+ "▁ob sc",
+ "▁obs c",
+ "▁rel acion",
+ "▁rela cion",
+ "▁relac ion",
+ "▁run at",
+ "▁ru nat",
+ "Re lease",
+ "ta ke",
+ "t ake",
+ "▁O liver",
+ "▁Ol iver",
+ "▁Oliv er",
+ "▁S id",
+ "▁Si d",
+ "ul os",
+ "ulo s",
+ "u los",
+ "▁G arc",
+ "▁Gar c",
+ "▁Ga rc",
+ "▁роз та",
+ "▁S ak",
+ "▁Sa k",
+ "P y",
+ "führ t",
+ "f ührt",
+ "▁tra bal",
+ "▁trab al",
+ "* {",
+ "▁z es",
+ "▁ze s",
+ "▁ zes",
+ "▁sz ere",
+ "▁szer e",
+ "▁sze re",
+ "▁v arios",
+ "▁var ios",
+ "▁vari os",
+ "▁va rios",
+ "▁o tra",
+ "▁ot ra",
+ "▁e val",
+ "▁ev al",
+ "▁ eval",
+ "▁situ é",
+ "▁sit ué",
+ "▁w ounded",
+ "▁Vin cent",
+ "▁вико ри",
+ "▁en code",
+ "▁enc ode",
+ "▁ encode",
+ "Mod al",
+ "Mo dal",
+ "▁f orb",
+ "▁for b",
+ "▁fo rb",
+ "▁dynam ics",
+ "▁dynamic s",
+ "▁de pos",
+ "▁dep os",
+ "ar de",
+ "ard e",
+ "▁street s",
+ "▁stre ets",
+ "▁K omm",
+ "▁Kom m",
+ "▁Ko mm",
+ "=$ (",
+ "= $(",
+ "▁по вер",
+ "▁пов ер",
+ "▁пове р",
+ "▁d ois",
+ "▁do is",
+ "▁doi s",
+ "▁v itt",
+ "▁vi tt",
+ "▁vit t",
+ "▁automat isch",
+ "▁re load",
+ "▁ reload",
+ "▁Ver walt",
+ "ber o",
+ "be ro",
+ "b ero",
+ "▁h ub",
+ "▁hu b",
+ "▁m os",
+ "▁mo s",
+ "▁ mos",
+ "▁t utto",
+ "▁tu tto",
+ "▁tut to",
+ "▁Freder ick",
+ "ło w",
+ "ł ow",
+ "ant ages",
+ "anta ges",
+ "antage s",
+ "aqu e",
+ "a que",
+ "pa per",
+ "p aper",
+ "▁ein ige",
+ "`) ,",
+ "` ),",
+ "d j",
+ "▁P le",
+ "▁Pl e",
+ "▁% ,",
+ "▁ %,",
+ "▁B itmap",
+ "▁Bit map",
+ "▁ Bitmap",
+ "▁friend ly",
+ "▁tr uly",
+ "▁st roke",
+ "▁str oke",
+ "▁stro ke",
+ "▁ stroke",
+ "ro ph",
+ "rop h",
+ "r oph",
+ "▁en gl",
+ "▁eng l",
+ "▁ engl",
+ "▁c off",
+ "▁co ff",
+ "▁d ust",
+ "▁du st",
+ "▁dus t",
+ "▁Jah res",
+ "▁Jahr es",
+ "▁Jahre s",
+ "pp i",
+ "p pi",
+ "▁w ys",
+ "▁wy s",
+ "fa ctor",
+ "fact or",
+ "fac tor",
+ "f actor",
+ "sch luss",
+ "▁дере вня",
+ "▁дерев ня",
+ "▁P ast",
+ "▁Pa st",
+ "▁Pas t",
+ "▁до ма",
+ "CO M",
+ "C OM",
+ "▁pu eden",
+ "▁puede n",
+ "▁pue den",
+ "▁g ift",
+ "▁gi ft",
+ "▁G la",
+ "▁Gl a",
+ "▁trigger ed",
+ "él y",
+ "é ly",
+ "ül és",
+ "ü lés",
+ "▁O liv",
+ "▁Ol iv",
+ "▁ver so",
+ "▁vers o",
+ "▁ verso",
+ "▁l le",
+ "▁ll e",
+ "▁ lle",
+ "▁G li",
+ "▁Gl i",
+ "▁L td",
+ "o a",
+ "▁territ orio",
+ "ord re",
+ "▁de ck",
+ "▁dec k",
+ "▁ deck",
+ "dr a",
+ "d ra",
+ "as zt",
+ "asz t",
+ "▁concern ing",
+ "▁Add itionally",
+ "▁kter é",
+ "▁g rund",
+ "▁gr und",
+ "▁gru nd",
+ "▁ grund",
+ "▁G est",
+ "▁Ge st",
+ "▁Ges t",
+ "▁ Gest",
+ "▁mis under",
+ "pr et",
+ "pre t",
+ "p ret",
+ "── ──",
+ "▁re putation",
+ "zi a",
+ "z ia",
+ "▁у спе",
+ "▁ус пе",
+ "▁esc aped",
+ "▁escape d",
+ "▁P rag",
+ "▁Pr ag",
+ "▁Pra g",
+ "per form",
+ "▁a ustral",
+ "▁aust ral",
+ "▁V ater",
+ "▁Va ter",
+ "ча с",
+ "▁r aces",
+ "▁ra ces",
+ "▁race s",
+ "▁rac es",
+ "▁By te",
+ "▁ Byte",
+ "Ma sk",
+ "M ask",
+ "▁Ter rit",
+ "▁Terr it",
+ "ст ю",
+ "▁V oci",
+ "▁Vo ci",
+ "▁Fich ier",
+ "▁Насе лення",
+ "▁Unter scheidung",
+ "te enth",
+ "teen th",
+ "▁pi lot",
+ "▁pil ot",
+ "▁j i",
+ "▁ ji",
+ "▁дву х",
+ "▁orient ation",
+ "▁ orientation",
+ "ind re",
+ "▁D ort",
+ "▁Do rt",
+ "▁Dor t",
+ "ça s",
+ "ç as",
+ "п ли",
+ "▁re action",
+ "▁react ion",
+ "▁cons isting",
+ "▁consist ing",
+ "▁fer ro",
+ "ти сти",
+ "ya rd",
+ "yar d",
+ "y ard",
+ "▁с ві",
+ "▁interpret ation",
+ "i ą",
+ "ra h",
+ "r ah",
+ "▁f and",
+ "▁fa nd",
+ "▁fan d",
+ "Pub lic",
+ "P ublic",
+ "▁un iverse",
+ "▁univers e",
+ "▁ret ir",
+ "▁cons cious",
+ "ar qu",
+ "▁w aste",
+ "▁was te",
+ "▁wa ste",
+ "▁B ib",
+ "▁Bi b",
+ "ycler View",
+ "▁list ening",
+ "▁listen ing",
+ "▁liste ning",
+ "gle ich",
+ "g leich",
+ "nie js",
+ "niej s",
+ "▁cor relation",
+ "▁correl ation",
+ "▁corre lation",
+ "▁rece iver",
+ "▁receive r",
+ "▁у да",
+ "▁cour age",
+ "▁cou rage",
+ "uch s",
+ "uc hs",
+ "u chs",
+ "fa ss",
+ "fas s",
+ "f ass",
+ "▁ch unk",
+ "▁ chunk",
+ "▁An fang",
+ "▁gro ßen",
+ "▁große n",
+ "▁groß en",
+ "cont inue",
+ "continu e",
+ "▁Warsza wa",
+ "h é",
+ "i y",
+ "iv ement",
+ "ive ment",
+ "i vement",
+ "▁ α",
+ "▁ex posed",
+ "▁exp osed",
+ "▁expos ed",
+ "▁expose d",
+ "▁z ahl",
+ "▁za hl",
+ "▁ zahl",
+ "▁sa cr",
+ "▁sac r",
+ "▁Lo oks",
+ "▁Look s",
+ "▁e ager",
+ "en ten",
+ "ent en",
+ "ente n",
+ "e nten",
+ "C ursor",
+ "/ _",
+ "ix a",
+ "i xa",
+ "ре ла",
+ "зна ча",
+ "з нача",
+ "▁фамили ей",
+ "▁ar gent",
+ "▁arg ent",
+ "▁ argent",
+ "▁An ders",
+ "▁And ers",
+ "œuv re",
+ "▁I sa",
+ "▁Is a",
+ "мен та",
+ "мент а",
+ "▁ad vers",
+ "▁adv ers",
+ "ri ction",
+ "ric tion",
+ "rict ion",
+ "r iction",
+ "G P",
+ "▁п ісля",
+ "▁pre serve",
+ "▁pres erve",
+ "▁G arden",
+ "▁Gar den",
+ "▁Gard en",
+ "R ate",
+ "ap rès",
+ "a près",
+ "▁read able",
+ "in du",
+ "ind u",
+ "▁s kill",
+ "▁sk ill",
+ "▁ski ll",
+ "▁hel ping",
+ "▁help ing",
+ "ograph ique",
+ "cl ing",
+ "cli ng",
+ "c ling",
+ "olog ist",
+ "▁Fil ter",
+ "▁ Filter",
+ "▁f inger",
+ "▁fin ger",
+ "▁V all",
+ "▁Val l",
+ "▁Va ll",
+ "▁Pol ish",
+ "▁Po lish",
+ "l g",
+ "▁Famil ien",
+ "▁Familie n",
+ "▁w aters",
+ "▁water s",
+ "▁wa ters",
+ "▁wat ers",
+ "▁pse ud",
+ "az a",
+ "a za",
+ "_ )",
+ "AR Y",
+ "A RY",
+ "▁с реди",
+ "▁сред и",
+ "▁сре ди",
+ "▁M ust",
+ "▁Mus t",
+ "▁Mu st",
+ "▁B od",
+ "▁Bo d",
+ "an on",
+ "ano n",
+ "a non",
+ "▁l ado",
+ "▁la do",
+ "▁lad o",
+ "▁t ight",
+ "im en",
+ "ime n",
+ "i men",
+ "ap pen",
+ "app en",
+ "appe n",
+ "a ppen",
+ "fr ames",
+ "frame s",
+ "fra mes",
+ "fram es",
+ "in gers",
+ "ing ers",
+ "inger s",
+ "inge rs",
+ "▁CO VID",
+ "▁з і",
+ "▁ зі",
+ "▁с ве",
+ "▁ц ь",
+ "▁ ць",
+ "▁L eft",
+ "▁Le ft",
+ "▁ Left",
+ "]] ;",
+ "] ];",
+ "ч ь",
+ "фи ка",
+ "▁с ло",
+ "▁ сло",
+ "▁п і",
+ "▁ пі",
+ "▁ex iste",
+ "▁exist e",
+ "▁Atl antic",
+ "▁maintain ed",
+ "▁ir re",
+ "▁an née",
+ "▁ann ée",
+ "▁ année",
+ "▁comm ented",
+ "▁comment ed",
+ "ве ро",
+ "вер о",
+ "ber ta",
+ "bert a",
+ "b erta",
+ "▁L ad",
+ "▁La d",
+ "▁U pon",
+ "▁Up on",
+ "▁p ause",
+ "▁pa use",
+ "▁pau se",
+ "mi ll",
+ "mil l",
+ "m ill",
+ "op ter",
+ "opt er",
+ "U K",
+ "ре с",
+ "р ес",
+ "нцикло педи",
+ "▁along side",
+ "▁ro bot",
+ "▁rob ot",
+ "▁f ert",
+ "▁fe rt",
+ "▁fer t",
+ "▁ fert",
+ "▁m oy",
+ "▁mo y",
+ "▁a de",
+ "▁ad e",
+ "▁ ade",
+ "Map per",
+ "Mapp er",
+ "Ma pper",
+ "M apper",
+ ")- >",
+ ") ->",
+ "ig ua",
+ "igu a",
+ "ét ique",
+ "т ка",
+ "al ias",
+ "ali as",
+ "alia s",
+ "a lias",
+ "▁о ри",
+ "▁ор и",
+ "▁M agn",
+ "▁Ma gn",
+ "▁Mag n",
+ "▁gehör te",
+ "▁gehört e",
+ "im b",
+ "i mb",
+ ")} {\\",
+ ")}{ \\",
+ ") }{\\",
+ "▁Wikip édia",
+ "▁u rs",
+ "▁ur s",
+ "▁ urs",
+ "▁e nde",
+ "▁en de",
+ "▁end e",
+ "▁ ende",
+ "le b",
+ "l eb",
+ "▁G C",
+ "▁ GC",
+ "H ol",
+ "an cing",
+ "anc ing",
+ "anci ng",
+ "Un ion",
+ "Uni on",
+ "▁ten ía",
+ "T T",
+ "▁e state",
+ "▁est ate",
+ "▁esta te",
+ "▁estat e",
+ "h á",
+ "▁по лі",
+ "▁пол і",
+ "ul tan",
+ "ult an",
+ "▁H ockey",
+ "ul se",
+ "uls e",
+ "▁cho ices",
+ "▁choice s",
+ "sch er",
+ "sc her",
+ "sche r",
+ "s cher",
+ "▁[ ],",
+ "▁[] ,",
+ "▁pot entially",
+ "▁potential ly",
+ "▁Ü bers",
+ "▁Über s",
+ "▁ad mit",
+ "▁adm it",
+ "Com ment",
+ "Comm ent",
+ "ст я",
+ "с тя",
+ "▁V ien",
+ "▁Vi en",
+ "▁Vie n",
+ "▁ц і",
+ "▁ ці",
+ "▁per mut",
+ "▁perm ut",
+ "c gi",
+ "▁cr ít",
+ "Con sole",
+ "Cons ole",
+ "ct ic",
+ "▁ok res",
+ "aw k",
+ "foot ball",
+ "ou est",
+ "o uest",
+ "CT YPE",
+ "C TYPE",
+ "olog ique",
+ "▁const it",
+ "▁cons tit",
+ "▁inter ests",
+ "▁interest s",
+ "▁Pro gress",
+ "▁ Progress",
+ "▁M enu",
+ "▁Me nu",
+ "▁Men u",
+ "▁ Menu",
+ "▁tak é",
+ "▁ta ké",
+ "▁As ian",
+ "▁Asia n",
+ "▁за щи",
+ "▁young er",
+ "▁w ished",
+ "▁wish ed",
+ "▁wis hed",
+ "▁S ort",
+ "▁So rt",
+ "▁Sor t",
+ "▁ Sort",
+ "▁aud ience",
+ "▁audi ence",
+ "am ba",
+ "amb a",
+ "▁gehör t",
+ "▁K ansas",
+ "ya ume",
+ "▁Prof essional",
+ "â ce",
+ "▁f atto",
+ "▁fa tto",
+ "▁fat to",
+ "to d",
+ "t od",
+ "▁data sets",
+ "▁datas ets",
+ "▁dataset s",
+ "▁f are",
+ "▁far e",
+ "▁fa re",
+ "▁ fare",
+ "▁w aves",
+ "▁wave s",
+ "▁wa ves",
+ "~ /",
+ "▁measure ment",
+ "▁w ol",
+ "▁wo l",
+ "▁ wol",
+ "ind ust",
+ "indu st",
+ "▁strugg ling",
+ "▁pull ed",
+ "▁pul led",
+ "▁car atter",
+ "▁Ex terne",
+ "▁Ext erne",
+ "▁Extern e",
+ "▁дей стви",
+ "cn t",
+ "c nt",
+ "li ches",
+ "lic hes",
+ "lich es",
+ "liche s",
+ "▁Pos sible",
+ "▁Poss ible",
+ "▁fa ced",
+ "▁face d",
+ "▁fac ed",
+ "▁hypoth esis",
+ "▁kil om",
+ "▁n är",
+ "▁nä r",
+ "bo olean",
+ "P Y",
+ "am pa",
+ "amp a",
+ "▁k iss",
+ "▁ki ss",
+ "▁kis s",
+ "▁as tero",
+ "▁ast ero",
+ "▁neg li",
+ "am ents",
+ "ament s",
+ "amen ts",
+ "a ments",
+ "▁S tu",
+ "▁St u",
+ "at ó",
+ "a tó",
+ "▁Const itution",
+ "▁inter pol",
+ "▁Un able",
+ "▁Una ble",
+ "▁p is",
+ "▁pi s",
+ "▁ pis",
+ "▁p arc",
+ "▁par c",
+ "▁pa rc",
+ "\"] )",
+ "\" ])",
+ "ple r",
+ "pl er",
+ "p ler",
+ "▁aut ory",
+ "▁auto ry",
+ "▁autor y",
+ "▁alg unos",
+ "yw na",
+ "}) )",
+ "} ))",
+ "▁f alls",
+ "▁fall s",
+ "▁fal ls",
+ "▁ falls",
+ "▁é quip",
+ "▁e mit",
+ "▁em it",
+ "▁ emit",
+ "▁pro fil",
+ "▁prof il",
+ "ge ts",
+ "get s",
+ "g ets",
+ "ф о",
+ "▁Milit ary",
+ "▁nombre ux",
+ "oc t",
+ "o ct",
+ "Re place",
+ "Rep lace",
+ "▁se asons",
+ "▁season s",
+ "▁ch âteau",
+ "▁type of",
+ "▁ typeof",
+ "po lit",
+ "pol it",
+ "p olit",
+ "▁r and",
+ "▁ra nd",
+ "▁ran d",
+ "▁ rand",
+ "▁qu ar",
+ "▁erst mals",
+ "си ни",
+ "▁pay load",
+ "▁ payload",
+ "П о",
+ "кі н",
+ "к ін",
+ "re po",
+ "rep o",
+ "▁P av",
+ "▁Pa v",
+ "Sc ore",
+ "S core",
+ "er ves",
+ "erv es",
+ "erve s",
+ "▁soll te",
+ "▁мі ж",
+ "éb ec",
+ "é bec",
+ "▁c lip",
+ "▁cl ip",
+ "▁cli p",
+ "▁ clip",
+ "▁N ice",
+ "▁Nic e",
+ "▁Ni ce",
+ "▁n eben",
+ "▁ne ben",
+ "▁ass ass",
+ "it ories",
+ "ito ries",
+ "itor ies",
+ "itori es",
+ "▁un ity",
+ "▁unit y",
+ "▁ unity",
+ "▁е н",
+ "▁ ен",
+ "▁Inst itut",
+ "▁Instit ut",
+ "▁ Institut",
+ "▁intern ationale",
+ "▁international e",
+ "▁на ук",
+ "▁нау к",
+ "▁com and",
+ "▁kle ine",
+ "▁klein e",
+ "▁adj acent",
+ "▁deliver ed",
+ "▁ш е",
+ "▁ ше",
+ "зе м",
+ "з ем",
+ "▁c ot",
+ "▁co t",
+ "▁ cot",
+ "vis ual",
+ "ва ет",
+ "▁C ensus",
+ "\\ _",
+ "▁territ ory",
+ "чи л",
+ "ч ил",
+ "ч ные",
+ "fl utter",
+ "Did Load",
+ "Document s",
+ "Doc uments",
+ "▁d ob",
+ "▁do b",
+ "▁ dob",
+ "Br e",
+ "B re",
+ "an imate",
+ "ani mate",
+ "anim ate",
+ "▁b iz",
+ "▁bi z",
+ "▁b ata",
+ "▁ba ta",
+ "▁bat a",
+ "▁S U",
+ "▁ SU",
+ "es o",
+ "e so",
+ "▁p riority",
+ "▁prior ity",
+ "vá n",
+ "v án",
+ "ir as",
+ "ira s",
+ "i ras",
+ "▁char ged",
+ "▁charge d",
+ "▁charg ed",
+ "▁M icro",
+ "▁Mi cro",
+ "▁Mic ro",
+ "at oire",
+ "ato ire",
+ "a toire",
+ "че р",
+ "ч ер",
+ "ab ad",
+ "aba d",
+ "a bad",
+ "ur u",
+ "u ru",
+ "▁v š",
+ "dir e",
+ "di re",
+ "d ire",
+ "▁Tw itter",
+ "▁м ето",
+ "▁ме то",
+ "▁мет о",
+ "). .",
+ ") ..",
+ "▁Ц ент",
+ "▁ent wick",
+ "▁M ind",
+ "▁Min d",
+ "▁Mi nd",
+ "▁ф унк",
+ "F uture",
+ "ls t",
+ "l st",
+ "ło ż",
+ "fl i",
+ "f li",
+ "t ensor",
+ "▁top ology",
+ "▁ar te",
+ "▁art e",
+ "▁ arte",
+ "ER T",
+ "E RT",
+ "▁var iance",
+ "▁vari ance",
+ "Im ages",
+ "Image s",
+ "▁( @",
+ "▁ (@",
+ "Array List",
+ "O C",
+ "▁Де мо",
+ "auc oup",
+ "▁de notes",
+ "▁den otes",
+ "▁denote s",
+ "im on",
+ "imo n",
+ "i mon",
+ "њ и",
+ "▁Prz yp",
+ "▁Z ag",
+ "▁Za g",
+ "▁ди ре",
+ "▁Similar ly",
+ "б ро",
+ "▁mil itaire",
+ "▁milit aire",
+ "▁т ому",
+ "▁то му",
+ "▁том у",
+ "▁ тому",
+ "▁John ny",
+ "▁Мекси ку",
+ "ћ а",
+ "Su pp",
+ "S upp",
+ "▁jun ior",
+ "▁junio r",
+ "▁juni or",
+ "ol tre",
+ "olt re",
+ "o ltre",
+ "▁Мо ск",
+ "▁Мос к",
+ "▁adm itted",
+ "▁admit ted",
+ "▁relig ios",
+ "зя й",
+ "е го",
+ "▁t ears",
+ "▁te ars",
+ "▁tea rs",
+ "in go",
+ "ing o",
+ "od u",
+ "o du",
+ "iv eness",
+ "ive ness",
+ "iven ess",
+ "▁l ogo",
+ "▁lo go",
+ "▁log o",
+ "▁ logo",
+ "▁últ imo",
+ "▁al iment",
+ "▁ali ment",
+ "▁U ITableView",
+ "▁ UITableView",
+ ") !",
+ "▁n j",
+ "le tte",
+ "let te",
+ "lett e",
+ "l ette",
+ "▁res ident",
+ "▁resid ent",
+ "▁term ine",
+ "▁ter mine",
+ "▁termin e",
+ "▁у же",
+ "▁С те",
+ "▁Ст е",
+ "off ice",
+ "▁c arte",
+ "▁car te",
+ "▁cart e",
+ "▁li vre",
+ "▁liv re",
+ "▁Мо сков",
+ "▁Мос ков",
+ "▁Моск ов",
+ "▁e lections",
+ "▁elect ions",
+ "▁ele ctions",
+ "▁election s",
+ "зи ден",
+ "Tr igger",
+ "▁Ben jamin",
+ "add Class",
+ "ско г",
+ "▁Ob servable",
+ "▁Observ able",
+ "▁ Observable",
+ "Cl a",
+ "C la",
+ "gem ein",
+ "geme in",
+ "g emein",
+ "▁con sent",
+ "▁cons ent",
+ "▁conse nt",
+ "в ри",
+ "▁un fold",
+ "▁unf old",
+ "▁govern or",
+ "▁gover nor",
+ "▁governo r",
+ "на л",
+ "н ал",
+ "▁t oda",
+ "▁to da",
+ "▁tod a",
+ "Rem ote",
+ "ar ias",
+ "ari as",
+ "aria s",
+ "a rias",
+ "▁in stal",
+ "▁inst al",
+ "▁ins tal",
+ "fix ed",
+ "f ixed",
+ "▁dec ay",
+ "▁де рев",
+ "▁дере в",
+ "xy z",
+ "x yz",
+ "▁D ATE",
+ "▁DA TE",
+ "▁DAT E",
+ "▁ DATE",
+ "im ar",
+ "ima r",
+ "i mar",
+ "nt il",
+ "n til",
+ "▁start up",
+ "al ion",
+ "ali on",
+ "▁ko lej",
+ "▁kol ej",
+ "▁kole j",
+ "ci os",
+ "cio s",
+ "c ios",
+ "▁r anges",
+ "▁range s",
+ "▁ran ges",
+ "▁rang es",
+ "▁stup id",
+ "▁implement ations",
+ "▁implementation s",
+ "▁r m",
+ "▁ rm",
+ "én ek",
+ "é nek",
+ "▁g cc",
+ "▁ gcc",
+ "▁sc ène",
+ "N avigation",
+ "▁ ",
+ "▁к ан",
+ "▁ка н",
+ "▁ кан",
+ "▁town s",
+ "User name",
+ "Us ername",
+ "▁ф е",
+ "▁ фе",
+ "▁le aders",
+ "▁lead ers",
+ "▁leader s",
+ "oi t",
+ "o it",
+ "w är",
+ "▁d ummy",
+ "▁ass istant",
+ "▁assist ant",
+ "{$ \\",
+ "{ $\\",
+ "бі р",
+ "б ір",
+ "▁r oy",
+ "▁ro y",
+ "▁ roy",
+ "▁L ayout",
+ "▁ Layout",
+ "▁J ung",
+ "▁Ju ng",
+ "▁Jun g",
+ "Line s",
+ "Lin es",
+ "Li nes",
+ "L ines",
+ "▁Hol land",
+ "по р",
+ "п ор",
+ "▁Г ри",
+ "▁B ened",
+ "▁Be ned",
+ "▁Ben ed",
+ "▁П од",
+ "▁По д",
+ "xl s",
+ "x ls",
+ "▁G ol",
+ "▁Go l",
+ "▁Al eks",
+ "▁Ale ks",
+ "▁ej emplo",
+ "▁se zon",
+ "ar ding",
+ "ard ing",
+ "ardi ng",
+ "ardin g",
+ "foot note",
+ "▁Cong rès",
+ "re fer",
+ "ref er",
+ "ска та",
+ "с ката",
+ "Iter ator",
+ "▁our selves",
+ "▁M ic",
+ "▁Mi c",
+ "▁c ódigo",
+ "▁пло ща",
+ "▁\\ $",
+ "▁Char lie",
+ "No des",
+ "Node s",
+ "N odes",
+ "▁p uzz",
+ "▁pu zz",
+ "▁Ident ifier",
+ "▁ Identifier",
+ "▁fl utter",
+ "▁ flutter",
+ "▁pr ü",
+ "▁ prü",
+ "▁o rt",
+ "▁or t",
+ "▁ ort",
+ "▁C ort",
+ "▁Cor t",
+ "▁Co rt",
+ "astic search",
+ "▁С вя",
+ "▁B ull",
+ "▁Bu ll",
+ "▁Bul l",
+ "ud em",
+ "ude m",
+ "u dem",
+ "▁ap parent",
+ "▁appar ent",
+ ":- -",
+ ": --",
+ "▁Х ар",
+ "▁Ха р",
+ "▁L ap",
+ "▁La p",
+ "▁com port",
+ "▁comp ort",
+ "mat ically",
+ "m atically",
+ "▁cu rios",
+ "▁cur ios",
+ "▁мо жет",
+ "▁мож ет",
+ "▁може т",
+ "▁B h",
+ "ap ping",
+ "app ing",
+ "a pping",
+ "▁b asketball",
+ "▁basket ball",
+ "ze tek",
+ "zet ek",
+ "▁r unt",
+ "▁run t",
+ "▁ru nt",
+ "▁Mil an",
+ "▁Mi lan",
+ "fe ction",
+ "fect ion",
+ "f ection",
+ "rí a",
+ "r ía",
+ "▁K in",
+ "▁Ki n",
+ "▁s lower",
+ "▁sl ower",
+ "▁slow er",
+ "▁slo wer",
+ "bo th",
+ "bot h",
+ "b oth",
+ "▁Inst ituto",
+ "▁Instit uto",
+ "▁Institut o",
+ "▁Histor ical",
+ "▁Historic al",
+ "▁równ ież",
+ "mat ches",
+ "match es",
+ "yc i",
+ "y ci",
+ "▁esp èce",
+ "▁Schwe izer",
+ "▁Schweiz er",
+ "N T",
+ "S F",
+ "ac ia",
+ "aci a",
+ "a cia",
+ "for ge",
+ "f orge",
+ "Point s",
+ "Po ints",
+ "num bers",
+ "number s",
+ "▁f alling",
+ "▁fall ing",
+ "▁fal ling",
+ "▁inherit ance",
+ "▁Er st",
+ "▁custom ers",
+ "▁customer s",
+ "▁a ctu",
+ "▁act u",
+ "▁ac tu",
+ "▁m igration",
+ "▁migr ation",
+ "\\ '",
+ "Pl an",
+ "P lan",
+ "M r",
+ "ot hy",
+ "oth y",
+ "o thy",
+ "▁up grad",
+ "би ра",
+ "▁O ffic",
+ "▁Of fic",
+ "▁Off ic",
+ "▁W ait",
+ "▁Wa it",
+ "▁ Wait",
+ "▁to ler",
+ "ar don",
+ "ard on",
+ "ardo n",
+ "▁s lide",
+ "▁sl ide",
+ "▁sli de",
+ "▁ slide",
+ ") _",
+ "▁ста в",
+ "▁ став",
+ "▁nu clear",
+ "▁nuc lear",
+ "▁nucle ar",
+ "▁B il",
+ "▁Bi l",
+ "ow ner",
+ "own er",
+ "o wner",
+ "▁Har ris",
+ "▁Harr is",
+ "In formation",
+ "▁p ó",
+ "▁вклю ча",
+ "▁nu ovo",
+ "▁C av",
+ "▁Ca v",
+ "▁De scri",
+ "▁Des cri",
+ "▁а к",
+ "ód zt",
+ "▁react js",
+ "▁Ad ams",
+ "▁Adam s",
+ "▁Ada ms",
+ "▁Altern atively",
+ "ст рук",
+ "стру к",
+ "стр ук",
+ ")` ,",
+ ") `,",
+ "sub string",
+ "subst ring",
+ "substr ing",
+ "▁mass ive",
+ "▁heav ily",
+ "▁се зо",
+ "▁сез о",
+ "▁A na",
+ "▁An a",
+ "▁v ale",
+ "▁val e",
+ "▁va le",
+ "Pa d",
+ "P ad",
+ "▁E ither",
+ "▁r s",
+ "▁ rs",
+ "an che",
+ "anc he",
+ "anch e",
+ "▁up loaded",
+ "▁upload ed",
+ "▁( /",
+ "▁ (/",
+ "▁с пор",
+ "▁спо р",
+ "▁сп ор",
+ "▁redu ction",
+ "▁Tok yo",
+ "gr en",
+ "gre n",
+ "g ren",
+ "▁m igli",
+ "▁mig li",
+ "▁iter ator",
+ "▁ iterator",
+ "st av",
+ "sta v",
+ "▁support ing",
+ "▁ö sterreich",
+ "▁NS Log",
+ "ist iques",
+ "isti ques",
+ "istique s",
+ "ri min",
+ "rim in",
+ "r imin",
+ "MO DE",
+ "}} }\\",
+ "}}} \\",
+ "} }}\\",
+ "▁exp los",
+ "▁expl os",
+ "▁explo s",
+ "от е",
+ "о те",
+ "▁( „",
+ "Sa l",
+ "S al",
+ "▁simple st",
+ "▁simpl est",
+ "▁gi à",
+ "▁та н",
+ "▁т ан",
+ "▁ тан",
+ "▁c yl",
+ "▁cy l",
+ "bi r",
+ "b ir",
+ "▁measure ments",
+ "▁measurement s",
+ "Create d",
+ "Cre ated",
+ "er ek",
+ "ere k",
+ "e rek",
+ "look up",
+ "w irtschaft",
+ "▁В оло",
+ "▁Во ло",
+ "▁Вол о",
+ "ti mer",
+ "time r",
+ "tim er",
+ "t imer",
+ "de rr",
+ "der r",
+ "d err",
+ "▁ст ала",
+ "▁ста ла",
+ "▁стал а",
+ "▁sc enes",
+ "▁scen es",
+ "▁scene s",
+ "▁per su",
+ "▁pers u",
+ "li est",
+ "lie st",
+ "lies t",
+ "l iest",
+ "▁sch edule",
+ "▁sched ule",
+ "ta l",
+ "t al",
+ "ле но",
+ "лен о",
+ "▁pain ting",
+ "▁paint ing",
+ "▁impro vement",
+ "▁improve ment",
+ "▁improv ement",
+ "so ftware",
+ "soft ware",
+ "▁govern o",
+ "▁gover no",
+ "▁H ir",
+ "▁Hi r",
+ "Exec ution",
+ "▁Ok ay",
+ "Pro p",
+ "Pr op",
+ "P rop",
+ "lo ster",
+ "los ter",
+ "lost er",
+ "l oster",
+ "ніципа лі",
+ "▁peu vent",
+ "ol u",
+ "o lu",
+ "▁Ф а",
+ "roll o",
+ "rol lo",
+ "▁ко ло",
+ "▁к оло",
+ "▁ коло",
+ "▁car rière",
+ "▁carri ère",
+ "▁t oggle",
+ "▁tog gle",
+ "▁togg le",
+ "▁ toggle",
+ "▁( $\\",
+ "▁($ \\",
+ "▁aggreg ate",
+ "▁Б і",
+ "text area",
+ "O k",
+ "it to",
+ "itt o",
+ "i tto",
+ "▁s tim",
+ "▁st im",
+ "▁recurs ion",
+ "▁Feder ation",
+ ")_ {",
+ ") _{",
+ "ate gor",
+ "ateg or",
+ "▁dist ribu",
+ "▁distrib u",
+ "Cl oud",
+ "▁m adre",
+ "▁mad re",
+ "▁i v",
+ "▁ iv",
+ "▁Lie utenant",
+ "▁subst ant",
+ "▁le af",
+ "▁ leaf",
+ "▁Kont rola",
+ "V A",
+ "▁t omb",
+ "▁to mb",
+ "▁tom b",
+ "э н",
+ "ato es",
+ "▁god ine",
+ "▁# >",
+ "C ert",
+ "▁em presa",
+ "▁empres a",
+ "Pro ps",
+ "Pr ops",
+ "Prop s",
+ "▁pl anned",
+ "▁plan ned",
+ "▁random ly",
+ "j ähr",
+ "el em",
+ "ele m",
+ "e lem",
+ "▁Oper ation",
+ "▁Opera tion",
+ "▁ Operation",
+ "* `",
+ "pro tocol",
+ "proto col",
+ "() ));",
+ "()) );",
+ "())) ;",
+ "( )));",
+ "we l",
+ "w el",
+ "▁p raw",
+ "▁pr aw",
+ "▁pra w",
+ "▁с им",
+ "▁си м",
+ "▁w ob",
+ "▁wo b",
+ "▁h ace",
+ "▁ha ce",
+ "▁near est",
+ "dis able",
+ "▁C ommun",
+ "▁Com mun",
+ "▁Comm un",
+ "▁re vel",
+ "▁rev el",
+ "▁reve l",
+ "Fr ee",
+ "Fre e",
+ "F ree",
+ "▁bra ckets",
+ "IO Exception",
+ "▁al to",
+ "▁alt o",
+ "▁mar ry",
+ "▁a uc",
+ "▁au c",
+ "▁ auc",
+ "), \\",
+ ") ,\\",
+ "▁typ o",
+ "▁ty po",
+ "ed ad",
+ "eda d",
+ "ar á",
+ "a rá",
+ "ic ator",
+ "ica tor",
+ "tat ywna",
+ "▁b uff",
+ "▁bu ff",
+ "▁buf f",
+ "▁ buff",
+ "or ders",
+ "ord ers",
+ "order s",
+ "orde rs",
+ "▁as ynchronous",
+ "▁e con",
+ "▁ec on",
+ "▁f eu",
+ "▁fe u",
+ "▁I ron",
+ "▁Ir on",
+ "▁r ising",
+ "▁ris ing",
+ "▁ri sing",
+ "Rad ius",
+ "cl k",
+ "▁zwe iten",
+ "▁zwei ten",
+ "▁zweite n",
+ "` '",
+ "▁un iqu",
+ "▁F M",
+ "▁ FM",
+ "▁B ran",
+ "▁Br an",
+ "▁Bra n",
+ "▁f lu",
+ "▁fl u",
+ "▁ flu",
+ "▁sens itive",
+ "ur re",
+ "urr e",
+ "▁I ter",
+ "▁It er",
+ "▁ Iter",
+ "▁S ein",
+ "▁Se in",
+ "▁difer entes",
+ "▁diferen tes",
+ "▁не го",
+ "▁н его",
+ "▁ него",
+ "ch ia",
+ "chi a",
+ "▁An leitung",
+ "atur day",
+ "▁sh orter",
+ "▁short er",
+ "▁transl ated",
+ "▁translate d",
+ "▁R és",
+ "▁Ré s",
+ "▁r ode",
+ "▁ro de",
+ "▁rod e",
+ "dr ag",
+ "dra g",
+ "d rag",
+ "▁l ange",
+ "▁lang e",
+ "▁lan ge",
+ "B i",
+ "ü b",
+ "le ur",
+ "l eur",
+ "▁order ing",
+ "▁ord ering",
+ "al ous",
+ "alo us",
+ "▁К ор",
+ "▁Ко р",
+ "ar char",
+ "arch ar",
+ "arc har",
+ "dest roy",
+ "erv ation",
+ "erva tion",
+ "]] ,",
+ "] ],",
+ "Accessor Impl",
+ "▁autory tatywna",
+ "Se quence",
+ "Sequ ence",
+ "▁pro yect",
+ "▁b ran",
+ "▁br an",
+ "▁bra n",
+ "▁( +",
+ "▁K ab",
+ "▁Ka b",
+ "▁z em",
+ "▁ze m",
+ "▁ zem",
+ "▁Cal cul",
+ "▁ Calcul",
+ "▁se ul",
+ "▁seu l",
+ "▁N iger",
+ "▁Ni ger",
+ "▁ch iam",
+ "▁chi am",
+ "th row",
+ "▁Plan et",
+ "▁Pla net",
+ "bild ung",
+ "▁z ones",
+ "▁zo nes",
+ "▁zone s",
+ "trans ition",
+ "ле ний",
+ "▁m apped",
+ "▁ma pped",
+ "▁map ped",
+ "on aut",
+ "ona ut",
+ "Pa ir",
+ "P air",
+ "il ian",
+ "ili an",
+ "ilia n",
+ "▁M organ",
+ "▁Mor gan",
+ "▁un to",
+ "▁ unto",
+ "jo u",
+ "j ou",
+ "▁h id",
+ "▁hi d",
+ "▁M eta",
+ "▁Me ta",
+ "▁Met a",
+ "▁ Meta",
+ "▁e lles",
+ "▁el les",
+ "▁elle s",
+ "▁ell es",
+ "▁ elles",
+ "Lo u",
+ "L ou",
+ "ra ma",
+ "ram a",
+ "r ama",
+ "ge ordnet",
+ "▁scarc ely",
+ "▁m int",
+ "▁min t",
+ "▁mi nt",
+ "F ocus",
+ "▁Al ter",
+ "▁Alt er",
+ "▁d io",
+ "▁di o",
+ "▁am pl",
+ "▁amp l",
+ "ière ment",
+ "▁ис следова",
+ "LE D",
+ "L ED",
+ "alg orithm",
+ "▁сай ті",
+ "▁сайт і",
+ "▁\" \")",
+ "▁\"\" )",
+ "Hi story",
+ "H istory",
+ "p k",
+ "▁W hit",
+ "▁Wh it",
+ "▁си стем",
+ "▁систе м",
+ "▁Kir chen",
+ "▁Kirche n",
+ "▁Kirch en",
+ "r à",
+ "AP P",
+ "A PP",
+ "▁< %",
+ "ant ine",
+ "anti ne",
+ "antin e",
+ "▁D isk",
+ "▁Dis k",
+ "▁Di sk",
+ "con v",
+ "we lt",
+ "wel t",
+ "w elt",
+ "▁F ut",
+ "▁Fu t",
+ "▁N om",
+ "▁No m",
+ "or do",
+ "ord o",
+ "el lij",
+ "ell ij",
+ "elli j",
+ "▁rece ives",
+ "▁receive s",
+ "co w",
+ "c ow",
+ "yt u",
+ "y tu",
+ "▁o bras",
+ "▁ob ras",
+ "▁obra s",
+ "▁p urchase",
+ "▁purch ase",
+ "▁ear ned",
+ "▁acc essed",
+ "▁access ed",
+ "ax i",
+ "a xi",
+ "▁M ans",
+ "▁Man s",
+ "▁Ma ns",
+ "iv an",
+ "iva n",
+ "i van",
+ "▁t uvo",
+ "▁tu vo",
+ "▁T race",
+ "▁Tr ace",
+ "▁Tra ce",
+ "▁ Trace",
+ "rim onio",
+ "▁desen vol",
+ "ér ique",
+ "éri que",
+ "é rique",
+ "▁result ed",
+ "▁comp uting",
+ "▁comput ing",
+ "▁insp ired",
+ "▁inspir ed",
+ "▁Pr ize",
+ "▁Pri ze",
+ "* \"",
+ "Com put",
+ "Comp ut",
+ "▁ext ensive",
+ "▁extens ive",
+ "è g",
+ "▁Port ály",
+ "▁cast le",
+ "▁ castle",
+ "▁* .",
+ "▁ *.",
+ "▁ph otos",
+ "▁phot os",
+ "▁photo s",
+ "▁vo et",
+ "ON G",
+ "O NG",
+ "▁A lle",
+ "▁Al le",
+ "▁All e",
+ "▁thre aten",
+ "▁threat en",
+ "st üt",
+ "▁album s",
+ "▁alb ums",
+ "▁d ense",
+ "▁den se",
+ "▁dens e",
+ "fl at",
+ "f lat",
+ "cont inu",
+ "Sub ject",
+ "Su bject",
+ "▁read only",
+ "Op t",
+ "O pt",
+ "пи ско",
+ "пис ко",
+ "▁A ber",
+ "▁Ab er",
+ "▁P osition",
+ "▁Pos ition",
+ "▁ Position",
+ "▁To day",
+ "▁Tod ay",
+ "▁m ini",
+ "▁min i",
+ "▁mi ni",
+ "▁B ef",
+ "▁Be f",
+ "li sten",
+ "list en",
+ "lis ten",
+ "l isten",
+ "ствен ного",
+ "ственно го",
+ "SU B",
+ "S UB",
+ "os sa",
+ "oss a",
+ "▁P ope",
+ "▁Po pe",
+ "▁Pop e",
+ "▁Jim my",
+ "▁Д ру",
+ "ungs seite",
+ "▁t ren",
+ "▁tr en",
+ "▁tre n",
+ "op tim",
+ "opt im",
+ "it sch",
+ "its ch",
+ "▁s amt",
+ "▁sa mt",
+ "▁sam t",
+ "▁испо л",
+ "▁ис пол",
+ "& =",
+ "▁Przyp isy",
+ "▁про дол",
+ "C r",
+ "er mann",
+ "erm ann",
+ "erman n",
+ "▁ма тери",
+ "▁мате ри",
+ "▁H ugo",
+ "▁Hu go",
+ "▁De ze",
+ "▁Dez e",
+ "TR UE",
+ "▁defe at",
+ "▁watch ed",
+ "▁wat ched",
+ "▁G ent",
+ "▁Ge nt",
+ "▁Gen t",
+ "AU T",
+ "A UT",
+ "or ous",
+ "oro us",
+ "▁о преде",
+ "ori entation",
+ "orient ation",
+ "▁distingu ished",
+ "▁distinguish ed",
+ "▁mes mo",
+ "▁s li",
+ "▁sl i",
+ "ме на",
+ "мен а",
+ "м ена",
+ "mit tel",
+ "mitt el",
+ "m ittel",
+ "ge richt",
+ "ger icht",
+ "et on",
+ "eto n",
+ "e ton",
+ "-> {",
+ "- >{",
+ "▁w ont",
+ "▁won t",
+ "▁wo nt",
+ "▁w eg",
+ "▁we g",
+ "▁ weg",
+ "▁class ific",
+ "il us",
+ "i lus",
+ "▁M D",
+ "▁ MD",
+ "task s",
+ "▁c him",
+ "▁ch im",
+ "▁chi m",
+ "aw ait",
+ "awa it",
+ "a wait",
+ "▁g ang",
+ "▁gan g",
+ "▁ga ng",
+ "▁ gang",
+ "▁w ię",
+ "▁ wię",
+ "th rough",
+ "▁Russ ell",
+ "▁guess ing",
+ "▁а кт",
+ "▁ак т",
+ "б лі",
+ "c ategories",
+ "су т",
+ "с ут",
+ "▁F en",
+ "▁Fe n",
+ "▁му ж",
+ "▁ne wer",
+ "▁new er",
+ "▁A sync",
+ "▁As ync",
+ "▁ Async",
+ "▁t erme",
+ "▁term e",
+ "▁ter me",
+ "> /",
+ "па ра",
+ "пар а",
+ "▁T rust",
+ "▁Tr ust",
+ "▁Tru st",
+ "▁O pt",
+ "▁Op t",
+ "▁ Opt",
+ "▁d ah",
+ "▁da h",
+ "▁wonder ful",
+ "adrat kil",
+ "▁Г ра",
+ "ma pping",
+ "map ping",
+ "m apping",
+ "▁disc overy",
+ "▁discover y",
+ "▁disco very",
+ "▁B E",
+ "▁ BE",
+ "En able",
+ "▁Fri end",
+ "с ня",
+ "▁cont rolled",
+ "▁control led",
+ "чно ї",
+ "ч ної",
+ "▁contribution s",
+ "▁contrib utions",
+ "j ší",
+ "▁L ev",
+ "▁Le v",
+ "▁franc és",
+ "▁m ic",
+ "▁mi c",
+ "▁ mic",
+ "zi k",
+ "z ik",
+ "▁a lem",
+ "▁al em",
+ "▁ale m",
+ "▁ alem",
+ "can cel",
+ "! '",
+ "▁g rat",
+ "▁gr at",
+ "▁gra t",
+ "▁Begriff sklär",
+ "Cam era",
+ "if icación",
+ "ific ación",
+ "ifica ción",
+ "ró d",
+ "r ód",
+ "▁Arn old",
+ "▁bezeichnet er",
+ "▁f ought",
+ "▁de put",
+ "▁dep ut",
+ "▁D rop",
+ "▁Dr op",
+ "▁Dro p",
+ "▁ Drop",
+ "ta x",
+ "t ax",
+ "d g",
+ "▁H op",
+ "▁Ho p",
+ "G N",
+ "▁Kir ch",
+ "▁Б ар",
+ "▁Ба р",
+ "In voke",
+ "Inv oke",
+ "▁er halten",
+ "▁ve el",
+ "▁word press",
+ "▁ wordpress",
+ "▁IN NER",
+ "trans action",
+ "▁dé jà",
+ "Fa ct",
+ "F act",
+ "▁над мор",
+ "▁angular js",
+ "▁á t",
+ "▁ át",
+ "▁a lap",
+ "▁al ap",
+ "▁P rice",
+ "▁Pr ice",
+ "▁Pri ce",
+ "▁ Price",
+ "▁eff et",
+ "▁s phere",
+ "▁sp here",
+ "▁spher e",
+ "Class Loader",
+ "▁r ugby",
+ "▁rug by",
+ "▁king dom",
+ "▁M ut",
+ "▁Mu t",
+ "▁ки но",
+ "▁re ward",
+ "ci t",
+ "c it",
+ "▁present e",
+ "▁pres ente",
+ "St o",
+ "S to",
+ "Char acter",
+ "lo gs",
+ "log s",
+ "l ogs",
+ "▁cent rale",
+ "▁central e",
+ "▁m ouv",
+ "▁mo uv",
+ "▁mou v",
+ "▁ok ay",
+ "▁ap lic",
+ "Mo re",
+ "Mor e",
+ "M ore",
+ "ény ek",
+ "▁Kö ln",
+ "ne tt",
+ "net t",
+ "n ett",
+ "▁исто рии",
+ "▁истори и",
+ "▁descri bing",
+ "▁sold ier",
+ "▁N eed",
+ "▁Ne ed",
+ "L ight",
+ "▁\" \\<",
+ "▁\"\\ <",
+ "▁h av",
+ "▁ha v",
+ "▁ hav",
+ "er mo",
+ "erm o",
+ "▁infer ior",
+ "le a",
+ "l ea",
+ "▁g g",
+ "▁ gg",
+ "▁кон це",
+ "fra gment",
+ "f ragment",
+ "s b",
+ "Count ry",
+ "C ountry",
+ "▁v ě",
+ "▁ vě",
+ "▁B eng",
+ "▁Be ng",
+ "▁Ben g",
+ "▁Э то",
+ "▁во до",
+ "ма р",
+ "м ар",
+ "STR ING",
+ "▁ú j",
+ "multi ple",
+ "multip le",
+ "state ment",
+ "stat ement",
+ "▁invol ves",
+ "▁involve s",
+ "▁te cn",
+ "▁tec n",
+ "St udent",
+ "gr é",
+ "g ré",
+ "▁le an",
+ "▁ lean",
+ "▁bring ing",
+ "▁Med ical",
+ "▁Medic al",
+ "▁Medi cal",
+ "▁програ м",
+ "▁V og",
+ "▁Vo g",
+ "▁ж ов",
+ "▁Sp irit",
+ "nt h",
+ "n th",
+ "▁stand ards",
+ "▁standard s",
+ "▁Pro file",
+ "▁Prof ile",
+ "▁Profil e",
+ "▁ Profile",
+ "▁e z",
+ "▁ ez",
+ "▁террито рии",
+ "▁s tem",
+ "▁st em",
+ "▁ste m",
+ "ui l",
+ "u il",
+ "▁O g",
+ "B tn",
+ "na l",
+ "n al",
+ "▁near by",
+ "▁produ cing",
+ "cri v",
+ "cr iv",
+ "c riv",
+ "▁assum ptions",
+ "▁assumption s",
+ "▁S park",
+ "▁Sp ark",
+ "▁L ot",
+ "▁Lo t",
+ "it udes",
+ "itu des",
+ "itude s",
+ "itud es",
+ "af ka",
+ "fi ve",
+ "f ive",
+ "at io",
+ "ati o",
+ "▁distingu ish",
+ "ro ck",
+ "roc k",
+ "r ock",
+ "égl ise",
+ "é glise",
+ "▁rapp res",
+ "▁rap pres",
+ ">\\ <",
+ "> \\<",
+ "лі й",
+ "л ій",
+ "▁ми ни",
+ "▁ мини",
+ "▁intitul é",
+ "}} (\\",
+ "}}( \\",
+ "} }(\\",
+ "▁R out",
+ "▁Ro ut",
+ "▁Rou t",
+ "▁ Rout",
+ "▁B order",
+ "▁Bor der",
+ "▁ Border",
+ "▁over rid",
+ "HO ST",
+ "H OST",
+ "rit ten",
+ "ritt en",
+ "r itten",
+ "sa y",
+ "s ay",
+ "▁Ч и",
+ "icht ung",
+ "▁straight forward",
+ "ob b",
+ "o bb",
+ "▁Ter ra",
+ "▁Terr a",
+ "▁[ :",
+ "▁ [:",
+ "Be n",
+ "B en",
+ "▁compos ite",
+ ")+ \\",
+ ") +\\",
+ "▁c rown",
+ "▁cr own",
+ "▁cro wn",
+ "▁crow n",
+ "dir ection",
+ "direct ion",
+ "dire ction",
+ "d irection",
+ "▁неско лько",
+ "▁av ail",
+ "▁purch ased",
+ "▁purchase d",
+ "ho ok",
+ "h ook",
+ "et ies",
+ "eti es",
+ "e ties",
+ "▁f ase",
+ "▁fa se",
+ "▁fas e",
+ "▁R um",
+ "▁Ru m",
+ "▁ge nom",
+ "▁gen om",
+ "▁d ét",
+ "▁dé t",
+ "ow ą",
+ "mp eg",
+ "▁І н",
+ "des ktop",
+ "▁in jection",
+ "▁inj ection",
+ "▁inject ion",
+ "ag le",
+ "a gle",
+ "▁E dd",
+ "▁Ed d",
+ "_{ (",
+ "_ {(",
+ "▁H em",
+ "▁He m",
+ "ut os",
+ "uto s",
+ "pr oj",
+ "pro j",
+ "▁superfic ie",
+ "Pl ot",
+ "P lot",
+ "▁D ocker",
+ "▁Do cker",
+ "▁Doc ker",
+ "ät z",
+ "ä tz",
+ "kre ich",
+ "k reich",
+ "▁un clear",
+ "▁uncle ar",
+ "▁Un ity",
+ "▁Unit y",
+ "▁stream s",
+ "▁stre ams",
+ "ви д",
+ "▁simpl ified",
+ "Fil l",
+ "Fi ll",
+ "F ill",
+ "▁s ant",
+ "▁sa nt",
+ "▁san t",
+ "▁K ommun",
+ "▁Kom mun",
+ "▁Komm un",
+ "▁d uc",
+ "▁du c",
+ "▁д ве",
+ "▁o bs",
+ "▁ob s",
+ "▁ obs",
+ "ž it",
+ "▁Jane iro",
+ "б я",
+ "▁pr esso",
+ "▁pres so",
+ "▁press o",
+ "▁Min istry",
+ "▁b urst",
+ "▁bur st",
+ "▁re aching",
+ "▁reach ing",
+ "li ter",
+ "lit er",
+ "l iter",
+ "▁response s",
+ "▁respons es",
+ "▁E ug",
+ "▁Eu g",
+ "▁s od",
+ "▁so d",
+ "▁C ord",
+ "▁Cor d",
+ "▁Co rd",
+ "▁P erm",
+ "▁Per m",
+ "▁Pe rm",
+ "▁ Perm",
+ "par ts",
+ "part s",
+ "p arts",
+ "ци ма",
+ "vari ables",
+ "variable s",
+ "▁forgot ten",
+ "Fe rn",
+ "F ern",
+ "ost ęp",
+ "v l",
+ "▁С м",
+ "ki m",
+ "k im",
+ "aj ąc",
+ "ają c",
+ "a jąc",
+ "на ль",
+ "нал ь",
+ "н аль",
+ "г ле",
+ "hel per",
+ "help er",
+ "du p",
+ "d up",
+ "eu w",
+ "e uw",
+ "fr a",
+ "f ra",
+ "ell ite",
+ "elli te",
+ "an ya",
+ "any a",
+ "▁re ign",
+ "▁r eign",
+ "▁rei gn",
+ "ges amt",
+ "се да",
+ "▁R yan",
+ "▁Ry an",
+ "▁form atted",
+ "▁format ted",
+ "▁formatt ed",
+ "▁B org",
+ "▁Bo rg",
+ "▁Bor g",
+ "wal k",
+ "w alk",
+ "▁а л",
+ "▁ ал",
+ "agnost ics",
+ "agnostic s",
+ "▁C ape",
+ "▁Cap e",
+ "▁Ca pe",
+ "▁Fran co",
+ "▁Franc o",
+ "▁f ug",
+ "▁fu g",
+ ": )",
+ "ю з",
+ "F etch",
+ "▁rough ly",
+ "▁M is",
+ "▁Mi s",
+ "uet ooth",
+ "▁Venez uela",
+ "▁a stronom",
+ "▁astr onom",
+ "\") `",
+ "\" )`",
+ "om bres",
+ "omb res",
+ "▁кото рой",
+ "ó p",
+ "ow ed",
+ "owe d",
+ "o wed",
+ "H R",
+ "▁C amer",
+ "▁Cam er",
+ "▁Ca mer",
+ "ки е",
+ "par ison",
+ "▁B ij",
+ "▁Bi j",
+ "tem plates",
+ "template s",
+ "en vironment",
+ "environ ment",
+ "iz ação",
+ "iza ção",
+ "▁é r",
+ "▁ ér",
+ "▁pl enty",
+ "▁Type Error",
+ "▁for ty",
+ "▁fort y",
+ "ко ном",
+ "кон ом",
+ "коно м",
+ "▁S ed",
+ "▁Se d",
+ "▁th ats",
+ "▁that s",
+ "▁gra vity",
+ "▁grav ity",
+ "▁gravit y",
+ "▁ gravity",
+ "▁spirit ual",
+ "▁dup licates",
+ "▁duplicate s",
+ "▁enc ryption",
+ "▁encrypt ion",
+ "▁re ven",
+ "▁r even",
+ "▁rev en",
+ "▁reve n",
+ "▁ reven",
+ "get Instance",
+ "äl lor",
+ "äll or",
+ "dis k",
+ "di sk",
+ "d isk",
+ "▁th ro",
+ "▁thr o",
+ "▁N ak",
+ "▁Na k",
+ "▁p oł",
+ "▁po ł",
+ "▁her aus",
+ "in valid",
+ "s By",
+ "Bo ot",
+ "B oot",
+ "▁bu cket",
+ "▁ bucket",
+ "▁P arse",
+ "▁Par se",
+ "▁ Parse",
+ "he x",
+ "h ex",
+ "Con ne",
+ "C onne",
+ "▁Comp uter",
+ "▁Comput er",
+ "zy k",
+ "z yk",
+ "▁indu ced",
+ "▁Br uno",
+ "▁Bru no",
+ "▁Brun o",
+ "▁address ed",
+ "▁addr essed",
+ "ma nia",
+ "man ia",
+ "m ania",
+ "▁in clus",
+ "▁incl us",
+ "▁inc lus",
+ "▁inclu s",
+ "oun ced",
+ "ounce d",
+ "script size",
+ "scripts ize",
+ "▁E pis",
+ "▁Ep is",
+ "▁v ocal",
+ "▁vo cal",
+ "▁voc al",
+ "▁Jon athan",
+ "у м",
+ "st aden",
+ "sta den",
+ "stad en",
+ "▁Child ren",
+ "▁ Children",
+ "пе й",
+ "п ей",
+ "It alia",
+ "Ital ia",
+ "reib ung",
+ "▁n ost",
+ "▁no st",
+ "▁nos t",
+ "▁ nost",
+ "▁е щё",
+ "▁Wer ke",
+ "▁Werk e",
+ "▁act ress",
+ "▁Minn esota",
+ "ri ke",
+ "rik e",
+ "r ike",
+ "▁t ek",
+ "▁te k",
+ "▁ tek",
+ "▁prime ira",
+ "▁f rat",
+ "▁fr at",
+ "▁fra t",
+ "▁Config uration",
+ "▁ Configuration",
+ "▁b id",
+ "▁bi d",
+ "▁ bid",
+ "tr igger",
+ "Cont ents",
+ "Content s",
+ "▁const antly",
+ "▁constant ly",
+ "!! !",
+ "! !!",
+ "▁d read",
+ "▁dr ead",
+ "▁dre ad",
+ "▁hundred s",
+ "ist ische",
+ "isti sche",
+ "▁card inal",
+ "T ABLE",
+ "▁est os",
+ "▁esto s",
+ "ass oc",
+ "asso c",
+ "gr ay",
+ "gra y",
+ "g ray",
+ "▁Sch loss",
+ "▁Schl oss",
+ "▁s che",
+ "▁sc he",
+ "▁sch e",
+ "▁ sche",
+ "con g",
+ "co ng",
+ "c ong",
+ "▁ko ji",
+ "ète s",
+ "èt es",
+ "è tes",
+ "▁E ra",
+ "▁Er a",
+ "om i",
+ "o mi",
+ "▁S R",
+ "▁ SR",
+ "▁wr apped",
+ "▁wra pped",
+ "▁wrap ped",
+ "▁tr unc",
+ "▁a h",
+ "▁ ah",
+ "eg os",
+ "ego s",
+ "ok i",
+ "o ki",
+ "mo uth",
+ "m outh",
+ "log ging",
+ "▁f asc",
+ "▁fa sc",
+ "▁fas c",
+ "▁S ample",
+ "▁Sam ple",
+ "▁ Sample",
+ "▁c onte",
+ "▁con te",
+ "▁cont e",
+ "▁v illa",
+ "▁vi lla",
+ "▁vill a",
+ "▁vil la",
+ "▁ villa",
+ "com ments",
+ "comm ents",
+ "comment s",
+ "▁b atal",
+ "▁ba tal",
+ "▁bat al",
+ "▁bata l",
+ "▁Garc ía",
+ "▁N orte",
+ "▁Nor te",
+ "▁we chsel",
+ "▁Muse o",
+ "▁enf ants",
+ "▁whis per",
+ "na ke",
+ "nak e",
+ "n ake",
+ "▁jed nak",
+ "l ês",
+ "en ders",
+ "end ers",
+ "ender s",
+ "ende rs",
+ "▁ä l",
+ "▁ äl",
+ "▁V B",
+ "▁ VB",
+ "▁cook ies",
+ "▁cookie s",
+ "ze ti",
+ "zet i",
+ "z eti",
+ "at um",
+ "atu m",
+ "▁d edu",
+ "▁de du",
+ "▁ded u",
+ "▁arr anged",
+ "▁arrang ed",
+ "la z",
+ "l az",
+ "▁cu enta",
+ "ym l",
+ "y ml",
+ "▁f lav",
+ "▁fl av",
+ "▁fla v",
+ "M R",
+ "em et",
+ "eme t",
+ "e met",
+ "бі ль",
+ "б іль",
+ "cm p",
+ "c mp",
+ "it uto",
+ "itu to",
+ "itut o",
+ "ze tt",
+ "zet t",
+ "z ett",
+ "▁en vi",
+ "▁env i",
+ "▁k ot",
+ "▁ko t",
+ "$ :",
+ "up per",
+ "upp er",
+ "u pper",
+ "▁Al berto",
+ "▁Albert o",
+ "k b",
+ "An al",
+ "A nal",
+ "ör t",
+ "ö rt",
+ "▁[ -",
+ "▁ [-",
+ "▁führ te",
+ "▁führt e",
+ "ia h",
+ "i ah",
+ "▁T un",
+ "▁Tu n",
+ "▁и скус",
+ "uw e",
+ "u we",
+ "is pecies",
+ "i species",
+ "P ub",
+ "Syn c",
+ "S ync",
+ "▁Colomb ia",
+ "ak ers",
+ "ake rs",
+ "aker s",
+ "▁Imper ial",
+ "ov ing",
+ "ovi ng",
+ "o ving",
+ "▁int elligence",
+ "▁intellig ence",
+ "▁equip ment",
+ "ei n",
+ "e in",
+ "dag ger",
+ "d agger",
+ "▁Ed ge",
+ "▁ Edge",
+ "▁Рес публи",
+ "adratkil ometer",
+ "▁An to",
+ "▁Ant o",
+ "▁char ges",
+ "▁charge s",
+ "▁charg es",
+ "▁O cean",
+ "▁simpl ify",
+ "▁m iesz",
+ "▁mi esz",
+ "▁mie sz",
+ "run ning",
+ "r unning",
+ "▁L ac",
+ "▁La c",
+ "gen ommen",
+ "▁represent ative",
+ "= .",
+ "▁P red",
+ "▁Pr ed",
+ "▁Pre d",
+ "▁ Pred",
+ "▁sp ite",
+ "ci ale",
+ "cial e",
+ "cia le",
+ "c iale",
+ "▁n ave",
+ "▁na ve",
+ "▁nav e",
+ "▁ext ens",
+ "▁neut ral",
+ "▁кото рая",
+ ".< /",
+ ". ",
+ "▁C S",
+ "▁ CS",
+ "uk y",
+ "u ky",
+ "▁wh ilst",
+ "▁l ingu",
+ "▁lin gu",
+ "▁ling u",
+ "ext ract",
+ "extra ct",
+ "zeich nung",
+ "▁F eld",
+ "▁Fe ld",
+ "▁Fel d",
+ "▁valu able",
+ "ur able",
+ "ura ble",
+ "u rable",
+ "▁J en",
+ "▁Je n",
+ "▁strugg le",
+ "▁comm ittee",
+ "▁W ohn",
+ "▁Wo hn",
+ "▁sql ite",
+ "▁ sqlite",
+ "▁T emp",
+ "▁Te mp",
+ "▁Tem p",
+ "▁ Temp",
+ "▁CO UNT",
+ "▁ COUNT",
+ "con sin",
+ "cons in",
+ "мі ні",
+ "мін і",
+ "us age",
+ "usa ge",
+ "▁qu est",
+ "▁que st",
+ "▁q uest",
+ "▁ quest",
+ "дя н",
+ "д ян",
+ "ear ed",
+ "ea red",
+ "e ared",
+ "▁Sch ne",
+ "▁d od",
+ "▁do d",
+ "▁re cht",
+ "▁rec ht",
+ "▁ recht",
+ "▁k ao",
+ "▁ka o",
+ "Cap t",
+ "Ca pt",
+ "C apt",
+ "label s",
+ "lab els",
+ "▁el los",
+ "▁ell os",
+ "▁indust ri",
+ "▁Color ado",
+ "▁contr ary",
+ "▁contra ry",
+ "▁D um",
+ "▁Du m",
+ "Be l",
+ "B el",
+ "▁V ent",
+ "▁Ve nt",
+ "▁Ven t",
+ "▁author ities",
+ "Y ES",
+ "en sed",
+ "ens ed",
+ "ense d",
+ "umbn ail",
+ "izz azione",
+ "izza zione",
+ "ko u",
+ "k ou",
+ "ri ca",
+ "ric a",
+ "r ica",
+ "▁s ect",
+ "▁se ct",
+ "▁sec t",
+ "▁ sect",
+ "test s",
+ "tes ts",
+ "t ests",
+ "▁K lein",
+ "▁Kle in",
+ "▁Kl ein",
+ "▁le gs",
+ "▁leg s",
+ "▁Pi etro",
+ "▁Piet ro",
+ "f u",
+ "th y",
+ "t hy",
+ "▁b ast",
+ "▁bas t",
+ "▁ba st",
+ "▁t edes",
+ "▁te des",
+ "▁ted es",
+ "et tes",
+ "ett es",
+ "ette s",
+ "▁re pet",
+ "▁rep et",
+ "▁repe t",
+ "ac re",
+ "a cre",
+ "re tto",
+ "ret to",
+ "rett o",
+ "r etto",
+ "▁remain der",
+ "▁G eg",
+ "▁Ge g",
+ "▁Г ор",
+ "▁Го р",
+ "▁Re chts",
+ "▁Recht s",
+ "▁filter ing",
+ "ou ss",
+ "ous s",
+ "o uss",
+ "▁deploy ed",
+ "▁prü fe",
+ "▁b itmap",
+ "▁bit map",
+ "▁s ovi",
+ "▁so vi",
+ "▁sov i",
+ "▁< %=",
+ "▁<% =",
+ "▁ <%=",
+ "▁entfer ne",
+ "ki ll",
+ "kil l",
+ "k ill",
+ "ta bs",
+ "tab s",
+ "t abs",
+ "Ex pr",
+ "Exp r",
+ "ко му",
+ "ком у",
+ "к ому",
+ "▁Republic an",
+ "▁S ize",
+ "▁Si ze",
+ "▁ Size",
+ "▁p oll",
+ "▁po ll",
+ "▁pol l",
+ "▁r ien",
+ "▁ri en",
+ "▁ rien",
+ "▁клу б",
+ "én d",
+ "é nd",
+ "▁B io",
+ "▁Bi o",
+ "▁per l",
+ "▁pe rl",
+ "▁ perl",
+ "▁And reas",
+ "▁Andrea s",
+ "▁Andre as",
+ "ви н",
+ "в ин",
+ "▁d istant",
+ "▁dist ant",
+ "▁F inn",
+ "▁Fin n",
+ "▁M itch",
+ "▁Mit ch",
+ "▁% {",
+ "▁c harm",
+ "▁ch arm",
+ "▁char m",
+ "▁cha rm",
+ "▁M ul",
+ "▁Mu l",
+ "pe rate",
+ "per ate",
+ "▁sci ences",
+ "▁science s",
+ "▁mon ot",
+ "▁mo not",
+ "▁deb ido",
+ "riz ona",
+ "ie c",
+ "i ec",
+ "▁al arm",
+ "▁prom oted",
+ "▁promote d",
+ "▁let zten",
+ "at in",
+ "ati n",
+ "▁con clus",
+ "▁conc lus",
+ "▁concl us",
+ "he rr",
+ "her r",
+ "h err",
+ "▁é ch",
+ "▁éc h",
+ "▁ éch",
+ "ed ish",
+ "edi sh",
+ "go r",
+ "g or",
+ "▁st ycz",
+ "▁sty cz",
+ "▁im press",
+ "▁imp ress",
+ "▁impr ess",
+ "ru its",
+ "ruit s",
+ "r uits",
+ "ier ungs",
+ "ierung s",
+ "▁par sed",
+ "▁parse d",
+ "▁r ío",
+ "▁Pak istan",
+ "ig ner",
+ "ign er",
+ "igne r",
+ "▁watch ing",
+ "▁database s",
+ "▁datab ases",
+ "ed ing",
+ "edi ng",
+ "e ding",
+ "▁Spec ific",
+ "▁gener ale",
+ "▁general e",
+ "▁gene rale",
+ "la x",
+ "l ax",
+ "▁Lo oking",
+ "▁Look ing",
+ "▁b ond",
+ "▁bo nd",
+ "▁bon d",
+ "▁v ista",
+ "▁vis ta",
+ "▁vi sta",
+ "▁e c",
+ "▁ ec",
+ "▁gr ud",
+ "▁gru d",
+ "▁del eting",
+ "▁delet ing",
+ "ta c",
+ "t ac",
+ "▁j azz",
+ "▁ja zz",
+ "j m",
+ "▁p ół",
+ "▁pó ł",
+ "L anguage",
+ "de legate",
+ "▁reg istry",
+ "▁registr y",
+ "▁Sh ared",
+ "▁Share d",
+ "▁ Shared",
+ "ст рой",
+ "стро й",
+ "Mus ic",
+ "▁v essel",
+ "▁vess el",
+ "▁ves sel",
+ ". @",
+ "▁W ür",
+ "▁f ed",
+ "▁fe d",
+ "▁ered et",
+ "▁ere det",
+ "▁G ö",
+ "up t",
+ "u pt",
+ "▁ple asant",
+ "▁table View",
+ "▁ tableView",
+ "▁count ing",
+ "▁coun ting",
+ "▁Krie gs",
+ "▁Krieg s",
+ "▁полу чил",
+ "▁получи л",
+ "▁] ,",
+ "▁ ],",
+ "ви а",
+ "▁a ž",
+ "To List",
+ "▁Ad vent",
+ "▁Adv ent",
+ "▁sk etch",
+ "p n",
+ "▁s ier",
+ "▁si er",
+ "▁sie r",
+ "▁находи тся",
+ "io p",
+ "i op",
+ "▁l y",
+ "▁ ly",
+ "▁Sch l",
+ "▁Sc hl",
+ "Cont ract",
+ "as soci",
+ "ass oci",
+ "asso ci",
+ "assoc i",
+ "▁P ear",
+ "▁Pe ar",
+ "▁w he",
+ "▁wh e",
+ "▁De lete",
+ "▁Del ete",
+ "▁ Delete",
+ "▁e lem",
+ "▁el em",
+ "▁ele m",
+ "▁ elem",
+ "ät te",
+ "ätt e",
+ "ä tte",
+ "▁č esk",
+ "▁M C",
+ "▁ MC",
+ "▁sh out",
+ "▁sho ut",
+ "ake spe",
+ "akes pe",
+ "▁default s",
+ "pe nas",
+ "pen as",
+ "p enas",
+ "ò ria",
+ "▁hier archy",
+ "ip t",
+ "i pt",
+ "▁E lis",
+ "▁El is",
+ "▁Eli s",
+ "like ly",
+ "lik ely",
+ "Ro t",
+ "R ot",
+ "▁c ow",
+ "▁co w",
+ "▁ cow",
+ "▁st rike",
+ "▁str ike",
+ "▁stri ke",
+ "▁strik e",
+ "▁бере зня",
+ "▁ens emble",
+ "▁ ensemble",
+ "▁Pse ud",
+ "V irtual",
+ "▁ї ї",
+ "RO OT",
+ "си я",
+ "▁с об",
+ "▁со б",
+ "▁ соб",
+ "▁in vert",
+ "▁inv ert",
+ "▁inve rt",
+ "▁switch ing",
+ "ht access",
+ "▁на гра",
+ "▁Nor man",
+ "▁Norm an",
+ "▁ing lês",
+ "! [",
+ "ou sel",
+ "ous el",
+ "ouse l",
+ "DO CTYPE",
+ "DOC TYPE",
+ "▁supp ress",
+ "▁sup press",
+ "▁accompan ied",
+ "▁B é",
+ "imp lies",
+ "impl ies",
+ "nu t",
+ "n ut",
+ "▁S yntax",
+ "▁Syn tax",
+ "▁ Syntax",
+ "in ho",
+ "▁t am",
+ "▁ta m",
+ "▁focus ed",
+ "▁foc used",
+ "av ano",
+ "ava no",
+ "avan o",
+ "a vano",
+ "▁B aden",
+ "▁Ba den",
+ "▁Bad en",
+ "ha d",
+ "h ad",
+ "▁( {",
+ "▁ ({",
+ "T y",
+ "▁ро с",
+ "▁р ос",
+ "▁ рос",
+ "▁чо лові",
+ "og e",
+ "o ge",
+ "js p",
+ "j sp",
+ "Bl ue",
+ "▁su as",
+ "▁sua s",
+ "ap ers",
+ "ape rs",
+ "aper s",
+ "a pers",
+ "Sh ort",
+ "Render er",
+ "▁s endo",
+ "▁send o",
+ "▁sen do",
+ "▁C ec",
+ "▁Ce c",
+ "▁` __",
+ "▁`_ _",
+ "▁Municip al",
+ "dot net",
+ "▁b ev",
+ "▁be v",
+ "▁D A",
+ "▁ DA",
+ "Menu Item",
+ "▁a mp",
+ "▁am p",
+ "▁ amp",
+ "▁u ri",
+ "▁ur i",
+ "▁ uri",
+ "▁f ier",
+ "▁fi er",
+ "сле н",
+ "с лен",
+ "), (",
+ ") ,(",
+ "cul es",
+ "cu les",
+ "c ules",
+ "il las",
+ "ill as",
+ "illa s",
+ "LO CK",
+ "LOC K",
+ "▁de rive",
+ "▁der ive",
+ "▁deriv e",
+ "ub en",
+ "ube n",
+ "u ben",
+ "▁G T",
+ "▁ GT",
+ "▁M ack",
+ "▁Ma ck",
+ "▁Mac k",
+ "▁sch olar",
+ ")} }",
+ ") }}",
+ "з м",
+ ">: :",
+ "> ::",
+ "ш ёл",
+ "▁princip ales",
+ "▁principal es",
+ "▁principale s",
+ "▁ц ар",
+ "▁t ied",
+ "▁ti ed",
+ "▁tie d",
+ "▁al ta",
+ "▁alt a",
+ "▁C it",
+ "▁Ci t",
+ "li ned",
+ "line d",
+ "lin ed",
+ "l ined",
+ "ma jor",
+ "▁p unk",
+ "▁pun k",
+ "▁cin co",
+ "ick ý",
+ "▁r aggi",
+ "▁ra ggi",
+ "▁rag gi",
+ "ty pen",
+ "type n",
+ "typ en",
+ "тель ство",
+ "▁con ference",
+ "▁confer ence",
+ "▁с іль",
+ "▁сі ль",
+ "▁he ut",
+ "i š",
+ "ет а",
+ "е та",
+ "vel ope",
+ "velop e",
+ "h box",
+ "no wn",
+ "now n",
+ "n own",
+ "▁z ar",
+ "▁za r",
+ "▁ zar",
+ "kt iv",
+ "ie ß",
+ "▁с тре",
+ "▁ст ре",
+ "▁ стре",
+ "▁Event Args",
+ "▁ EventArgs",
+ "▁I ra",
+ "▁Ir a",
+ "▁V BA",
+ "▁VB A",
+ "▁S anto",
+ "▁San to",
+ "▁Sant o",
+ "▁F ach",
+ "▁Fa ch",
+ "▁Fac h",
+ "▁F F",
+ "▁ FF",
+ "▁Ray mond",
+ "ме ц",
+ "im plementation",
+ "▁bro thers",
+ "▁brother s",
+ "▁cô té",
+ "▁cont rollers",
+ "▁control lers",
+ "▁controller s",
+ "▁C le",
+ "▁Cl e",
+ "▁c able",
+ "▁ca ble",
+ "▁cab le",
+ "▁con fer",
+ "▁conf er",
+ "▁{ -",
+ "▁ {-",
+ "▁cz ł",
+ "▁Fil ip",
+ "at orio",
+ "ator io",
+ "ato rio",
+ "atori o",
+ "▁w icht",
+ "▁be aucoup",
+ "▁L it",
+ "▁Li t",
+ "▁s essions",
+ "▁session s",
+ "▁sess ions",
+ "▁Su ccess",
+ "▁ Success",
+ "▁ro uting",
+ "▁rout ing",
+ "▁rou ting",
+ "ni u",
+ "n iu",
+ "▁V ice",
+ "▁Vi ce",
+ "▁Vic e",
+ "▁k rit",
+ "▁kr it",
+ "up dated",
+ "update d",
+ "▁In valid",
+ "▁ Invalid",
+ "▁Mann schaft",
+ "▁a os",
+ "▁ao s",
+ "▁t udi",
+ "▁tu di",
+ "▁tud i",
+ "▁des prés",
+ "▁desp rés",
+ "qu a",
+ "q ua",
+ "Cont ains",
+ "Comp any",
+ "▁person a",
+ "▁pers ona",
+ "ad apter",
+ "с ни",
+ "▁v oj",
+ "▁vo j",
+ "▁ voj",
+ "▁e scri",
+ "▁es cri",
+ "▁esc ri",
+ "ag t",
+ "a gt",
+ "▁с тво",
+ "▁ст во",
+ "▁ ство",
+ "▁dist rito",
+ "ap an",
+ "apa n",
+ "a pan",
+ "▁aspect s",
+ "▁z al",
+ "▁za l",
+ ")^ {\\",
+ ")^{ \\",
+ ") ^{\\",
+ "▁syst ème",
+ "▁а на",
+ "▁ан а",
+ "▁ ана",
+ "ium s",
+ "iu ms",
+ "i ums",
+ "▁prem iers",
+ "▁premi ers",
+ "▁premier s",
+ "▁по э",
+ "▁m ère",
+ "▁G un",
+ "▁Gu n",
+ "ap ing",
+ "api ng",
+ "a ping",
+ "▁R ain",
+ "▁Ra in",
+ "▁ig ual",
+ "▁process or",
+ "▁proc essor",
+ "▁ processor",
+ "') `",
+ "' )`",
+ "bl ing",
+ "b ling",
+ "▁m ism",
+ "▁mi sm",
+ "▁mis m",
+ "br áz",
+ "▁close st",
+ "▁clos est",
+ "▁Re ading",
+ "▁Read ing",
+ "▁по пу",
+ "con o",
+ "co no",
+ "c ono",
+ "▁k ult",
+ "▁! !",
+ "▁ !!",
+ "▁Ex pression",
+ "▁Exp ression",
+ "▁Express ion",
+ "▁ Expression",
+ "▁indu ction",
+ "▁induct ion",
+ "ah ren",
+ "ahr en",
+ "a hren",
+ "▁c p",
+ "▁ cp",
+ "▁viol ence",
+ "ient í",
+ "cent e",
+ "cen te",
+ "c ente",
+ "▁D ob",
+ "▁Do b",
+ "ja ck",
+ "j ack",
+ "so ng",
+ "son g",
+ "s ong",
+ "bu cket",
+ "▁de port",
+ "▁dep ort",
+ "ки ми",
+ "ким и",
+ "l m",
+ "▁in noc",
+ "▁inn oc",
+ "Ch anges",
+ "Change s",
+ "▁pro hib",
+ "ang ol",
+ "ango l",
+ "isecond s",
+ "i seconds",
+ "▁п ор",
+ "▁по р",
+ "▁ пор",
+ "▁h ip",
+ "▁hi p",
+ "▁ hip",
+ "▁p ů",
+ "en dorf",
+ "end orf",
+ "endo rf",
+ "endor f",
+ "▁sch eduled",
+ "▁schedule d",
+ "▁Fl ug",
+ "ac yj",
+ "acy j",
+ "▁Fil ms",
+ "▁Film s",
+ "athed ral",
+ "Po wer",
+ "P ower",
+ "ar din",
+ "ard in",
+ "ardi n",
+ "ka p",
+ "k ap",
+ "ic ken",
+ "ick en",
+ "i cken",
+ "re size",
+ "res ize",
+ "eu s",
+ "e us",
+ "r r",
+ "ля н",
+ "л ян",
+ "▁H av",
+ "▁Ha v",
+ "▁o ra",
+ "▁or a",
+ "▁ ora",
+ "FR OM",
+ "F ROM",
+ "ло ся",
+ "▁te rug",
+ "▁ter ug",
+ "▁W idth",
+ "▁ Width",
+ "▁accept s",
+ "бе н",
+ "б ен",
+ "▁m ich",
+ "▁mi ch",
+ "▁mic h",
+ "▁C zech",
+ "▁Cz ech",
+ "▁B edeut",
+ "▁ви д",
+ "▁ вид",
+ "ô me",
+ "▁L oop",
+ "▁Lo op",
+ "▁ Loop",
+ "sp ect",
+ "spe ct",
+ "spec t",
+ "s pect",
+ "ü k",
+ "es ton",
+ "est on",
+ "esto n",
+ "e ston",
+ "▁s lot",
+ "▁sl ot",
+ "▁slo t",
+ "▁został a",
+ "▁Charlot te",
+ "▁состав ляет",
+ "▁составля ет",
+ "▁Prom ise",
+ "▁e po",
+ "▁ep o",
+ "▁d iction",
+ "▁di ction",
+ "▁dict ion",
+ "▁dic tion",
+ "▁ diction",
+ "▁Frank lin",
+ "▁R iv",
+ "▁Ri v",
+ "ру г",
+ "ci da",
+ "cid a",
+ "c ida",
+ "▁Ex plorer",
+ "cook ie",
+ "▁former ly",
+ "▁municip ality",
+ "▁municipal ity",
+ "▁Ste fan",
+ "▁Stef an",
+ "list s",
+ "lis ts",
+ "l ists",
+ "CO MP",
+ "COM P",
+ "Le n",
+ "L en",
+ "▁Sta at",
+ "▁N BA",
+ "de ns",
+ "den s",
+ "d ens",
+ "▁osc ill",
+ "! .",
+ "▁P O",
+ "▁ PO",
+ "ô ne",
+ "es es",
+ "ese s",
+ "▁на циональ",
+ "vo or",
+ "v oor",
+ "▁ко пи",
+ "▁по зи",
+ "▁ пози",
+ "ul u",
+ "u lu",
+ "Const raint",
+ "Constra int",
+ "▁сво ей",
+ "▁algebra ic",
+ "ч ня",
+ "Di ct",
+ "D ict",
+ "▁appear ing",
+ "▁appe aring",
+ "▁p rav",
+ "▁pr av",
+ "▁pra v",
+ "▁Univers al",
+ "B rowser",
+ "▁Sing ap",
+ "ennes see",
+ "] _",
+ "▁S of",
+ "▁So f",
+ "▁C ad",
+ "▁Ca d",
+ "oun ce",
+ "▁cost s",
+ "▁cos ts",
+ "]{ \\",
+ "] {\\",
+ "../ ../",
+ "ськ ій",
+ "ські й",
+ "üh l",
+ "ü hl",
+ "ie ty",
+ "iet y",
+ "i ety",
+ "п р",
+ "▁interpre ted",
+ "▁interpret ed",
+ "aj n",
+ "col og",
+ "co log",
+ "colo g",
+ "c olog",
+ "Y S",
+ "ma ns",
+ "man s",
+ "m ans",
+ "▁met rics",
+ "▁metric s",
+ "▁reg istr",
+ "▁ registr",
+ "ist ance",
+ "istan ce",
+ "▁По ль",
+ "▁an onymous",
+ "▁ anonymous",
+ "▁institution s",
+ "▁instit utions",
+ "▁z dob",
+ "▁zd ob",
+ "pr üng",
+ "prü ng",
+ "▁ар ти",
+ "▁e stat",
+ "▁est at",
+ "▁es tat",
+ "▁esta t",
+ "ac ci",
+ "acc i",
+ "▁academ ic",
+ "▁ch iesa",
+ "▁chi esa",
+ "▁G ian",
+ "▁Gi an",
+ "▁Gia n",
+ "cont rib",
+ "contr ib",
+ "um ed",
+ "ume d",
+ "u med",
+ "▁G ir",
+ "▁Gi r",
+ "▁base ball",
+ "numer ic",
+ "n umeric",
+ "Gener ator",
+ "G M",
+ "▁t iny",
+ "▁ti ny",
+ "▁tin y",
+ "▁ tiny",
+ "▁dist inction",
+ "▁distinct ion",
+ "ге р",
+ "г ер",
+ "▁r ust",
+ "▁ru st",
+ "▁rus t",
+ "▁ rust",
+ "▁FI FA",
+ "▁Pro perties",
+ "▁ Properties",
+ "^ -",
+ "▁э кс",
+ "▁эк с",
+ "▁Sta nis",
+ "▁Stan is",
+ "▁A jax",
+ "es cape",
+ "esc ape",
+ "▁con sp",
+ "▁cons p",
+ "▁C hen",
+ "▁Ch en",
+ "▁Che n",
+ "▁N aval",
+ "▁Na val",
+ "▁Nav al",
+ "Bi t",
+ "B it",
+ "▁b ât",
+ "ски ми",
+ "ским и",
+ "с кими",
+ "dr ive",
+ "dri ve",
+ "d rive",
+ "▁R ound",
+ "▁Ro und",
+ "▁Rou nd",
+ "ph oto",
+ "▁Le vel",
+ "▁Lev el",
+ "▁ Level",
+ "▁g eg",
+ "▁ge g",
+ "▁ geg",
+ "To m",
+ "T om",
+ "▁M obile",
+ "▁ Mobile",
+ "▁T rop",
+ "▁Tr op",
+ "▁Tro p",
+ "Dir ection",
+ "Direct ion",
+ "D irection",
+ "is an",
+ "isa n",
+ "i san",
+ ")^ {-",
+ ")^{ -",
+ ") ^{-",
+ "▁Set ting",
+ "▁ Setting",
+ "▁Pro bably",
+ "ль я",
+ "л ья",
+ "▁as sets",
+ "▁ass ets",
+ "▁asse ts",
+ "▁asset s",
+ "▁ assets",
+ "▁a tte",
+ "▁at te",
+ "▁att e",
+ "▁ atte",
+ "▁b ulk",
+ "▁bul k",
+ "és t",
+ "é st",
+ "▁w ing",
+ "▁win g",
+ "▁ wing",
+ "ni us",
+ "niu s",
+ "n ius",
+ "▁w ins",
+ "▁win s",
+ "▁l ud",
+ "▁lu d",
+ "us hing",
+ "ush ing",
+ "▁d even",
+ "▁de ven",
+ "▁dev en",
+ "▁deve n",
+ "огра ф",
+ "о граф",
+ "burg er",
+ "bur ger",
+ "b urger",
+ "▁em bar",
+ "▁emb ar",
+ "Filter Chain",
+ "▁t um",
+ "▁tu m",
+ "▁ö ss",
+ "▁nom mé",
+ "▁p ir",
+ "▁pi r",
+ "▁l uc",
+ "▁lu c",
+ "db o",
+ "d bo",
+ "ag ues",
+ "ague s",
+ "agu es",
+ "▁al can",
+ "▁alc an",
+ "ou wen",
+ "ouw en",
+ "▁Stan ley",
+ "ци али",
+ "▁g rown",
+ "▁gr own",
+ "▁gro wn",
+ "▁grow n",
+ "▁pres erved",
+ "▁preserve d",
+ "▁s olar",
+ "▁so lar",
+ "▁sol ar",
+ "▁Насе ление",
+ "▁perform ances",
+ "▁performance s",
+ "▁C ow",
+ "▁Co w",
+ "▁engine ering",
+ "▁engineer ing",
+ "▁sc aling",
+ "▁scal ing",
+ "at omic",
+ "ato mic",
+ "atom ic",
+ "end ance",
+ "▁a ce",
+ "▁ac e",
+ "▁ ace",
+ "än gen",
+ "äng en",
+ "änge n",
+ "An im",
+ "A nim",
+ "ph ase",
+ "pha se",
+ "phas e",
+ "z burg",
+ "O ld",
+ "▁serv ant",
+ "▁geme ins",
+ "▁Ob serv",
+ "trans late",
+ "▁cover ing",
+ "▁cov ering",
+ "▁est án",
+ "▁está n",
+ "▁problem a",
+ "▁proble ma",
+ "▁probl ema",
+ "▁у станов",
+ "▁l lev",
+ "▁ll ev",
+ "▁lle v",
+ "▁c zerw",
+ "é al",
+ "me z",
+ "m ez",
+ "RE E",
+ "R EE",
+ "ER R",
+ "ту ри",
+ "тур и",
+ "se gu",
+ "seg u",
+ "s egu",
+ "▁pro fit",
+ "▁prof it",
+ "▁multip lication",
+ "kom men",
+ "k ommen",
+ "▁f aut",
+ "▁fa ut",
+ "▁candid ates",
+ "▁candidate s",
+ "▁U ri",
+ "▁Ur i",
+ "▁ Uri",
+ "▁La ura",
+ "▁Laur a",
+ "▁Lau ra",
+ "▁s ap",
+ "▁sa p",
+ "▁ви сини",
+ "▁Bet ween",
+ "fa de",
+ "f ade",
+ "▁res erved",
+ "▁reserve d",
+ "▁invol ving",
+ "▁M are",
+ "▁Mar e",
+ "▁Ma re",
+ "▁Cont ainer",
+ "▁ Container",
+ "▁на зна",
+ "▁DE BUG",
+ "▁ DEBUG",
+ "▁h urt",
+ "▁hur t",
+ "▁hu rt",
+ "▁Pol ski",
+ "▁l ux",
+ "▁lu x",
+ "C B",
+ "wa ch",
+ "w ach",
+ "▁пери од",
+ "▁перио д",
+ "▁C atherine",
+ "▁g anz",
+ "▁gan z",
+ "uch te",
+ "ucht e",
+ "u chte",
+ "▁cons umer",
+ "▁consum er",
+ "▁consume r",
+ "▁cross ed",
+ "ord ered",
+ "order ed",
+ "orde red",
+ "aw ay",
+ "awa y",
+ "a way",
+ "te chn",
+ "tech n",
+ "▁sub scri",
+ "▁subs cri",
+ "▁short cut",
+ "▁произ вод",
+ "▁simultane ously",
+ "▁r ating",
+ "▁ra ting",
+ "▁rat ing",
+ "▁ rating",
+ "▁K ings",
+ "▁King s",
+ "▁Kin gs",
+ "▁relations hips",
+ "▁relation ships",
+ "▁relationship s",
+ "▁S ex",
+ "▁Se x",
+ "▁T ool",
+ "▁To ol",
+ "▁ Tool",
+ "ag h",
+ "a gh",
+ "ac ters",
+ "act ers",
+ "acter s",
+ "log ger",
+ "hom me",
+ "en gers",
+ "eng ers",
+ "enger s",
+ "▁R i",
+ "ear ance",
+ "ea rance",
+ "▁appear ances",
+ "▁appearance s",
+ "Re al",
+ "▁p asse",
+ "▁pass e",
+ "▁pas se",
+ "ic lopedia",
+ "ч ко",
+ "ter re",
+ "▁Ont ario",
+ "▁пере да",
+ "▁перед а",
+ "fo oter",
+ "foo ter",
+ "foot er",
+ "arch ivi",
+ "archiv i",
+ "if iz",
+ "ifi z",
+ "▁Pro test",
+ "▁Prote st",
+ "▁L IN",
+ "▁LI N",
+ "▁ LIN",
+ "unn able",
+ "▁cent uries",
+ "▁B ayer",
+ "▁Ba yer",
+ "▁Bay er",
+ "ці ю",
+ "ов ин",
+ "ови н",
+ "о вин",
+ "▁And rea",
+ "▁Andre a",
+ "se lection",
+ "select ion",
+ "sel ection",
+ "▁c alm",
+ "▁cal m",
+ "▁ca lm",
+ "▁mod ification",
+ "▁modific ation",
+ "▁short ly",
+ "in aire",
+ "ina ire",
+ "i naire",
+ "▁f usion",
+ "▁fus ion",
+ "▁feel ings",
+ "▁feeling s",
+ "▁fee lings",
+ "P K",
+ "▁Ro berto",
+ "▁Robert o",
+ "г не",
+ "Sh ared",
+ "▁mehr ere",
+ "▁N iem",
+ "▁Ni em",
+ "▁Nie m",
+ "om p",
+ "o mp",
+ "En v",
+ "▁Art icle",
+ "▁P ok",
+ "▁Po k",
+ "▁V ARCHAR",
+ "▁d il",
+ "▁di l",
+ "▁af ford",
+ "▁aff ord",
+ "▁con front",
+ "▁conf ront",
+ "ow anie",
+ "owa nie",
+ "owan ie",
+ "▁min istre",
+ "▁minist re",
+ "▁mini stre",
+ "ad esh",
+ "ade sh",
+ "ades h",
+ "▁P oly",
+ "▁Pol y",
+ "▁Po ly",
+ "▁Ра спо",
+ "▁Рас по",
+ "▁Gru ppe",
+ "▁H elen",
+ "▁He len",
+ "▁Hel en",
+ "▁c c",
+ "▁ cc",
+ "▁port rait",
+ "be w",
+ "b ew",
+ "▁b eta",
+ "▁be ta",
+ "▁bet a",
+ "▁ beta",
+ "▁W ir",
+ "▁Wi r",
+ "▁A udio",
+ "▁Aud io",
+ "▁ Audio",
+ "▁( \\<",
+ "▁(\\ <",
+ "rior ity",
+ "▁n it",
+ "▁ni t",
+ "▁ nit",
+ "▁пред стави",
+ "▁представ и",
+ "▁V ie",
+ "▁Vi e",
+ "▁w ür",
+ "▁ wür",
+ "▁H old",
+ "▁Hol d",
+ "▁Ho ld",
+ "▁ Hold",
+ "▁S ad",
+ "▁Sa d",
+ "▁To chter",
+ "▁o ltre",
+ "▁ol tre",
+ "▁ oltre",
+ "▁Act iv",
+ "▁ Activ",
+ "▁J ason",
+ "▁Ja son",
+ "▁Jas on",
+ "▁wie ku",
+ "▁reg ards",
+ "▁regard s",
+ "▁t aste",
+ "▁ta ste",
+ "agnost ic",
+ "ла ся",
+ "▁S elf",
+ "▁Sel f",
+ "▁ Self",
+ "▁a pr",
+ "▁ap r",
+ "▁De ep",
+ "sc op",
+ "s cop",
+ "Act iv",
+ "▁type def",
+ "▁typed ef",
+ "Content View",
+ "comp iler",
+ "compile r",
+ "▁R oth",
+ "▁Ro th",
+ "▁Rot h",
+ "x c",
+ "зи к",
+ "▁l argo",
+ "▁lar go",
+ "▁larg o",
+ "▁R ena",
+ "▁Re na",
+ "▁Ren a",
+ "he iten",
+ "heit en",
+ "▁platform s",
+ "▁plat forms",
+ "ul la",
+ "ull a",
+ "u lla",
+ "▁gl ance",
+ "▁mas cul",
+ "▁m ex",
+ "▁me x",
+ "▁J orge",
+ "▁fun cion",
+ "▁func ion",
+ "cho ose",
+ "▁re views",
+ "▁review s",
+ "▁Al ban",
+ "▁Alb an",
+ "▁G lo",
+ "▁Gl o",
+ "▁S pecies",
+ "▁Spe cies",
+ "▁Spec ies",
+ "▁F ame",
+ "▁Fa me",
+ "▁Fam e",
+ "▁R oll",
+ "▁Ro ll",
+ "▁Rol l",
+ "▁P uerto",
+ "▁\\ )",
+ "▁ \\)",
+ "ym nas",
+ "ymn as",
+ "en viron",
+ "▁i phone",
+ "▁Wrest ling",
+ "ał y",
+ "a ły",
+ "▁Ind iana",
+ "▁India na",
+ "▁Indian a",
+ "Rad io",
+ "V S",
+ "▁independ ence",
+ "та й",
+ "▁de code",
+ "▁dec ode",
+ "▁ decode",
+ "Wh ite",
+ "▁j ourn",
+ "▁jo urn",
+ "▁jou rn",
+ "▁jour n",
+ "ícul o",
+ "í culo",
+ "▁Bar b",
+ "▁Ba rb",
+ "▁Ev angel",
+ "▁An dy",
+ "▁And y",
+ "▁Wel come",
+ "▁De vice",
+ "▁Dev ice",
+ "▁ Device",
+ "ge f",
+ "g ef",
+ "▁remember ed",
+ "▁vari ations",
+ "▁variation s",
+ "▁Ad olf",
+ "it aine",
+ "ita ine",
+ "▁надмор ској",
+ "▁s team",
+ "▁ste am",
+ "▁concern s",
+ "▁` |",
+ "▁би о",
+ "тель ства",
+ "▁qu attro",
+ "ext end",
+ "▁trab ajo",
+ "▁trabaj o",
+ "en berg",
+ "▁scen arios",
+ "▁scenario s",
+ "ân t",
+ "â nt",
+ "▁kom mt",
+ "▁komm t",
+ "▁dom estic",
+ "▁B asketball",
+ "▁Co oper",
+ "so ck",
+ "s ock",
+ "дер жа",
+ "д ержа",
+ "={ \\",
+ "= {\\",
+ "▁in ici",
+ "▁P hill",
+ "▁Ph ill",
+ "▁Phil l",
+ "▁гене рал",
+ "archivi ato",
+ "ъ н",
+ "Ro b",
+ "R ob",
+ "▁t ong",
+ "▁to ng",
+ "▁ton g",
+ "▁character istics",
+ "▁characteristic s",
+ "▁a maz",
+ "▁am az",
+ "▁M ode",
+ "▁Mod e",
+ "▁Mo de",
+ "▁ Mode",
+ "▁inaug ur",
+ "we hr",
+ "ra nt",
+ "ran t",
+ "r ant",
+ "ion ali",
+ "ional i",
+ "iona li",
+ "▁M other",
+ "▁Mo ther",
+ "▁Mot her",
+ "M a",
+ "é qu",
+ "▁K elly",
+ "▁Kel ly",
+ "ci le",
+ "cil e",
+ "c ile",
+ "▁beste ht",
+ "▁estim ates",
+ "▁estimate s",
+ "rugu ay",
+ "▁A ns",
+ "▁An s",
+ "Ma d",
+ "M ad",
+ "▁на в",
+ "▁d onnées",
+ "▁donn ées",
+ "▁donné es",
+ "▁ données",
+ "▁trop ical",
+ "▁Sever al",
+ "el ter",
+ "elt er",
+ "elte r",
+ "▁P ho",
+ "▁Ph o",
+ "ke m",
+ "k em",
+ "▁Custom er",
+ "▁ Customer",
+ "▁скла ді",
+ "▁c ourses",
+ "▁course s",
+ "▁cours es",
+ "Pl atform",
+ "nav bar",
+ "le arning",
+ "lear ning",
+ "learn ing",
+ "▁Sw edish",
+ "▁z ast",
+ "▁za st",
+ "▁zas t",
+ "▁L ig",
+ "▁Li g",
+ "man agement",
+ "▁l od",
+ "▁lo d",
+ "uff le",
+ "Text ure",
+ "Te xture",
+ "ar ga",
+ "arg a",
+ "át um",
+ "▁D DR",
+ "ні ї",
+ "н ії",
+ "▁Soci été",
+ "▁dom ains",
+ "▁domain s",
+ "▁perm itted",
+ "▁permit ted",
+ "▁ex terne",
+ "▁ext erne",
+ "▁extern e",
+ "▁quel que",
+ "v t",
+ "ym an",
+ "y man",
+ "▁W ard",
+ "▁War d",
+ "▁Wa rd",
+ "▁ag li",
+ "▁ agli",
+ "▁and ra",
+ "▁an dra",
+ "▁ andra",
+ "S napshot",
+ "▁m å",
+ "▁ye ah",
+ "де на",
+ "ден а",
+ "д ена",
+ "ęp u",
+ "ę pu",
+ "ask ell",
+ "▁Ré publique",
+ "in ject",
+ "▁' ;",
+ "▁ ';",
+ "än n",
+ "ä nn",
+ "▁z elf",
+ "▁Ent wicklung",
+ "ár ia",
+ "á ria",
+ "on omy",
+ "ono my",
+ "onom y",
+ "▁s vil",
+ "▁sv il",
+ "ie se",
+ "ies e",
+ "i ese",
+ "▁con ser",
+ "▁cons er",
+ "▁conse r",
+ "▁n im",
+ "▁ni m",
+ "▁ nim",
+ "▁r ész",
+ "▁ré sz",
+ "▁rés z",
+ "▁И тали",
+ "▁part ici",
+ "▁partic i",
+ "▁parti ci",
+ "▁L ion",
+ "▁Li on",
+ "s r",
+ "al ways",
+ "▁Влади мир",
+ "че ские",
+ "[ ,",
+ "▁Def inition",
+ "▁ Definition",
+ "na nt",
+ "nan t",
+ "n ant",
+ "oe m",
+ "o em",
+ "Id s",
+ "I ds",
+ "▁в не",
+ "▁[ ...]",
+ "▁на прав",
+ "▁нап рав",
+ "▁G O",
+ "▁ GO",
+ "▁å rs",
+ "▁år s",
+ "▁ut án",
+ "▁out ros",
+ "▁reg ión",
+ "▁M ong",
+ "▁Mon g",
+ "▁Mo ng",
+ "▁fil me",
+ "▁film e",
+ "▁tri ple",
+ "▁trip le",
+ "▁sp ons",
+ "▁spo ns",
+ "De velop",
+ "▁out come",
+ "▁B ible",
+ "▁Bi ble",
+ "▁Bib le",
+ "▁и мени",
+ "▁име ни",
+ "▁имен и",
+ "Can vas",
+ "пу та",
+ "cur r",
+ "cu rr",
+ "c urr",
+ "ás ok",
+ "){ \\",
+ ") {\\",
+ "ning ar",
+ "` ;",
+ "▁Fl ash",
+ ": #",
+ "mu st",
+ "mus t",
+ "m ust",
+ "cp u",
+ "c pu",
+ "▁form ats",
+ "▁format s",
+ "▁forma ts",
+ "Ha r",
+ "H ar",
+ "▁epis odio",
+ "▁R osa",
+ "▁Ro sa",
+ "▁Ros a",
+ "▁d ès",
+ "em it",
+ "emi t",
+ "e mit",
+ "rit eria",
+ "rite ria",
+ "riter ia",
+ "An notation",
+ "Fl ag",
+ "F lag",
+ "g mail",
+ "▁N ormal",
+ "▁Nor mal",
+ "▁Norm al",
+ "▁ Normal",
+ "oll ary",
+ "ollar y",
+ "▁f oss",
+ "▁fo ss",
+ "▁fos s",
+ "▁con current",
+ "▁conc urrent",
+ "▁ concurrent",
+ "▁crash es",
+ "▁ви де",
+ "▁вид е",
+ "▁Min or",
+ "▁Mi nor",
+ "▁S it",
+ "▁Si t",
+ "▁S N",
+ "▁ SN",
+ "▁s car",
+ "▁sc ar",
+ "▁ scar",
+ "▁fe min",
+ "▁fem in",
+ "▁spec ification",
+ "▁specific ation",
+ "so ap",
+ "▁o perate",
+ "▁oper ate",
+ "▁opera te",
+ "▁principal mente",
+ "▁a ust",
+ "▁au st",
+ "▁aus t",
+ "ib ile",
+ "ibil e",
+ "it ime",
+ "iti me",
+ "i time",
+ "ле жа",
+ "if rame",
+ "i frame",
+ "▁concept s",
+ "▁conce pts",
+ "▁t ack",
+ "▁ta ck",
+ "▁v iss",
+ "▁vis s",
+ "▁vi ss",
+ "▁car bon",
+ "ter y",
+ "te ry",
+ "t ery",
+ "▁n aming",
+ "▁na ming",
+ "▁nam ing",
+ "▁Or ts",
+ "▁Ort s",
+ "id ente",
+ "ident e",
+ "iden te",
+ "▁Cap it",
+ "▁Ca pit",
+ "▁ex pr",
+ "▁exp r",
+ "▁ expr",
+ "▁насе љу",
+ "▁Select ed",
+ "▁Sel ected",
+ "▁Sele cted",
+ "▁ Selected",
+ "▁h inter",
+ "▁hint er",
+ "▁hin ter",
+ "▁i frame",
+ "▁if rame",
+ "▁ iframe",
+ "▁z b",
+ "index Path",
+ "col l",
+ "co ll",
+ "c oll",
+ "▁wr ześ",
+ "▁a cht",
+ "▁ac ht",
+ "▁ach t",
+ "▁ acht",
+ "▁grad ually",
+ "▁gradu ally",
+ "▁ч у",
+ "▁ чу",
+ "зе й",
+ "з ей",
+ "ha ft",
+ "h aft",
+ "▁t ran",
+ "▁tr an",
+ "▁tra n",
+ "▁la quelle",
+ "yt ics",
+ "ID E",
+ "I DE",
+ "▁py game",
+ "▁pyg ame",
+ "▁P ackage",
+ "▁Pack age",
+ "▁ Package",
+ "▁class Name",
+ "▁ className",
+ "B al",
+ "pe rl",
+ "per l",
+ "ти на",
+ "тин а",
+ "O cc",
+ "▁in frastr",
+ "▁Champion s",
+ "▁Champ ions",
+ "▁class ic",
+ "▁R aw",
+ "▁Ra w",
+ "▁ Raw",
+ "▁partial ly",
+ "▁parti ally",
+ "▁T ed",
+ "▁Te d",
+ "▁sto let",
+ "ra ined",
+ "rain ed",
+ "raine d",
+ "rai ned",
+ "r ained",
+ "WH ERE",
+ "W HERE",
+ "▁v all",
+ "▁val l",
+ "▁va ll",
+ "▁Jul ia",
+ "▁Ju lia",
+ "▁Juli a",
+ "za t",
+ "z at",
+ "▁surr ounded",
+ "SE E",
+ "S EE",
+ "▁walk ing",
+ "▁wal king",
+ "B ad",
+ "FO R",
+ "F OR",
+ "con tre",
+ "cont re",
+ "contr e",
+ "▁Pal est",
+ "▁Pale st",
+ "át ico",
+ "▁engine er",
+ "▁part ners",
+ "▁partner s",
+ "▁Je ws",
+ "▁Jew s",
+ "il ers",
+ "ile rs",
+ "iler s",
+ "i lers",
+ "▁c erem",
+ "▁ce rem",
+ "▁cer em",
+ "▁inter actions",
+ "▁interaction s",
+ "▁interact ions",
+ "ac u",
+ "a cu",
+ "st y",
+ "s ty",
+ "▁Prince ss",
+ "▁Prin cess",
+ "sh arp",
+ "sha rp",
+ "▁Sing les",
+ "▁Single s",
+ "▁ї х",
+ "ch ez",
+ "che z",
+ "c hez",
+ "Rece iver",
+ "Receive r",
+ "▁pat ients",
+ "▁patient s",
+ "string ify",
+ "▁compet ed",
+ "be y",
+ "b ey",
+ "$ ;",
+ "▁B d",
+ "had oop",
+ "h adoop",
+ "▁Div isión",
+ "öl d",
+ "ö ld",
+ "▁restrict ed",
+ "▁comm ander",
+ "▁command er",
+ "▁comma nder",
+ "▁High way",
+ "▁Č esk",
+ "▁m yth",
+ "▁my th",
+ "ча н",
+ "ч ан",
+ "ra ham",
+ "rah am",
+ "▁en qu",
+ "▁p og",
+ "▁po g",
+ "▁com una",
+ "▁comun a",
+ "▁print ln",
+ "▁ println",
+ "▁к руп",
+ "▁de pois",
+ "▁dep ois",
+ "▁se ats",
+ "▁sea ts",
+ "▁seat s",
+ "▁neigh b",
+ "ци она",
+ "цион а",
+ "ag ine",
+ "agi ne",
+ "agin e",
+ "▁cloth es",
+ "▁clo thes",
+ "▁P rior",
+ "▁Pr ior",
+ "▁Pri or",
+ "Br ain",
+ "Bra in",
+ "B rain",
+ "FF FF",
+ "': '",
+ "' :'",
+ "fe atures",
+ "feature s",
+ "▁file system",
+ "▁files ystem",
+ "▁sing les",
+ "▁single s",
+ "▁Mel bourne",
+ "▁dest ruction",
+ "▁destruct ion",
+ "▁destru ction",
+ "▁Ly on",
+ "▁In sel",
+ "▁Ins el",
+ "Na v",
+ "N av",
+ "▁Re place",
+ "▁Rep lace",
+ "▁ Replace",
+ "▁l é",
+ "▁ lé",
+ "Wh o",
+ "W ho",
+ "▁E stad",
+ "▁Est ad",
+ "▁Esta d",
+ "▁dim ensional",
+ "▁dimension al",
+ "▁ dimensional",
+ "▁ö ff",
+ "▁ öff",
+ "▁gr ands",
+ "▁gran ds",
+ "▁grand s",
+ "дж а",
+ "д жа",
+ "pl ane",
+ "plan e",
+ "pla ne",
+ "p lane",
+ "но сті",
+ "ност і",
+ "нос ті",
+ "▁Or igin",
+ "▁Ori gin",
+ "▁Orig in",
+ "▁ Origin",
+ "W I",
+ "än ner",
+ "änn er",
+ "▁C ry",
+ "▁Cr y",
+ "IT ION",
+ "▁fö dd",
+ "▁cult ura",
+ "▁R ank",
+ "▁Ran k",
+ "▁v uel",
+ "▁vue l",
+ "▁vu el",
+ "▁z ag",
+ "▁za g",
+ "▁Ma xim",
+ "▁Max im",
+ "он у",
+ "о ну",
+ "() ))",
+ "()) )",
+ "( )))",
+ "R aw",
+ "kir che",
+ "k irche",
+ "▁a demás",
+ "▁t ie",
+ "▁ti e",
+ "▁St yle",
+ "▁ Style",
+ "ско в",
+ "ск ов",
+ "с ков",
+ "ist ant",
+ "ista nt",
+ "istan t",
+ "ol ph",
+ "▁Z ür",
+ "▁In fo",
+ "▁Inf o",
+ "▁ Info",
+ "DO M",
+ "D OM",
+ "us c",
+ "u sc",
+ "na hm",
+ "nah m",
+ "▁Ф едера",
+ "▁F ot",
+ "▁Fo t",
+ "▁spec ifying",
+ "▁specify ing",
+ "▁tit olo",
+ "▁Bo ys",
+ "▁Boy s",
+ "ie ch",
+ "iec h",
+ "i ech",
+ "Pl ace",
+ "P lace",
+ "▁H off",
+ "▁Ho ff",
+ "▁Hof f",
+ "▁c ached",
+ "▁ca ched",
+ "▁cache d",
+ "ва ль",
+ "вал ь",
+ "в аль",
+ "is her",
+ "ish er",
+ "roll ing",
+ "rol ling",
+ "op ens",
+ "ope ns",
+ "open s",
+ "▁h r",
+ "▁ hr",
+ "-- ----",
+ "---- --",
+ "--- ---",
+ "----- -",
+ "- -----",
+ "▁mag gior",
+ "▁maggio r",
+ "▁trans actions",
+ "▁transaction s",
+ "▁c riminal",
+ "▁crim inal",
+ "▁re tre",
+ "▁ret re",
+ "▁retr e",
+ "▁Camp bell",
+ ")) :",
+ ") ):",
+ "▁n ed",
+ "▁ne d",
+ "▁ ned",
+ "Page r",
+ "Pa ger",
+ "P ager",
+ "▁H ero",
+ "▁He ro",
+ "▁Her o",
+ "(_ _",
+ "( __",
+ "▁un cle",
+ "▁re aches",
+ "▁reach es",
+ "ar to",
+ "art o",
+ "▁h ello",
+ "▁hel lo",
+ "▁hell o",
+ "▁ hello",
+ "Pre ferences",
+ "▁за тем",
+ "Name d",
+ "Na med",
+ "N amed",
+ "▁re aders",
+ "▁read ers",
+ "▁reader s",
+ "х і",
+ "ke rn",
+ "ker n",
+ "k ern",
+ "▁у по",
+ "ки н",
+ "к ин",
+ "▁l av",
+ "▁la v",
+ "▁ lav",
+ "▁n ob",
+ "▁no b",
+ "▁se cre",
+ "▁sec re",
+ "▁List View",
+ "▁ ListView",
+ "ва ния",
+ "▁May or",
+ "bo rough",
+ "bor ough",
+ "▁fil osof",
+ "не ння",
+ "нен ня",
+ "фр и",
+ "ф ри",
+ "▁p atr",
+ "▁pat r",
+ "▁pa tr",
+ "F M",
+ "▁a cid",
+ "▁ac id",
+ "▁Salv ador",
+ "▁a bb",
+ "▁ab b",
+ "▁ abb",
+ "▁G raham",
+ "▁Gra ham",
+ "pol icy",
+ "neg ative",
+ "ński ego",
+ "ń skiego",
+ "▁He imat",
+ "▁d azu",
+ "▁da zu",
+ "▁m ely",
+ "▁me ly",
+ "▁mel y",
+ "▁r ide",
+ "▁rid e",
+ "▁ri de",
+ "▁ ride",
+ "▁du ties",
+ "▁dut ies",
+ "ov ery",
+ "over y",
+ "ove ry",
+ "o very",
+ "▁Pro position",
+ "▁Prop osition",
+ "▁Pa olo",
+ "/ '",
+ "▁M au",
+ "▁Ma u",
+ "im enti",
+ "iment i",
+ "imen ti",
+ "Sa int",
+ "S aint",
+ "fa ther",
+ "f ather",
+ "▁equ ilib",
+ "ph ony",
+ "phon y",
+ "▁c las",
+ "▁cl as",
+ "▁cla s",
+ "▁от ли",
+ "▁Buffer ed",
+ "▁Buff ered",
+ "re k",
+ "r ek",
+ "▁m itt",
+ "▁mit t",
+ "▁mi tt",
+ "▁ mitt",
+ "▁H ur",
+ "▁Hu r",
+ "▁Har vard",
+ "▁demonstr ate",
+ "ua rio",
+ "u ario",
+ "▁do lor",
+ "▁dol or",
+ "▁reject ed",
+ "▁M üller",
+ "▁n ac",
+ "▁na c",
+ "▁B elle",
+ "▁Be lle",
+ "▁Bel le",
+ "▁Bell e",
+ "▁gather ed",
+ "n r",
+ "fr ika",
+ "fri ka",
+ "öl l",
+ "ö ll",
+ "▁chem ical",
+ "ni g",
+ "n ig",
+ "▁cal c",
+ "▁ calc",
+ "▁DE FAULT",
+ "▁ DEFAULT",
+ "▁philosoph y",
+ "▁Lar avel",
+ "▁al ignment",
+ "▁align ment",
+ "E V",
+ "e or",
+ "▁d zie",
+ "▁dz ie",
+ "▁ dzie",
+ "▁m est",
+ "▁me st",
+ "▁mes t",
+ "▁I o",
+ "CR E",
+ "C RE",
+ "з ви",
+ "▁M edic",
+ "▁Me dic",
+ "▁Med ic",
+ "▁Medi c",
+ "▁n ä",
+ "▁z ab",
+ "▁za b",
+ "▁S lov",
+ "▁Sl ov",
+ "▁Slo v",
+ "ut lich",
+ "▁am plit",
+ "▁ampl it",
+ "▁amp lit",
+ "▁Fran kreich",
+ "▁Frank reich",
+ "▁к іль",
+ "▁кі ль",
+ "IN D",
+ "I ND",
+ "exec ution",
+ "▁Kar riere",
+ "d ostęp",
+ "▁r éal",
+ "▁ré al",
+ "en go",
+ "eng o",
+ "▁se vere",
+ "▁sever e",
+ "зм а",
+ "з ма",
+ "▁тур ни",
+ "▁C arter",
+ "▁Car ter",
+ "▁Cart er",
+ "▁Rob inson",
+ "▁Robin son",
+ "getElement sBy",
+ "▁pro totype",
+ "▁proto type",
+ "▁ prototype",
+ "▁jap on",
+ "▁ja pon",
+ "führ ung",
+ "f ührung",
+ "▁con segu",
+ "▁cons egu",
+ "▁conse gu",
+ "▁st udi",
+ "▁stud i",
+ "▁l ire",
+ "▁li re",
+ "▁ lire",
+ "▁sch ließ",
+ "▁ schließ",
+ "▁B uff",
+ "▁Bu ff",
+ "▁red und",
+ "▁redu nd",
+ "▁e rn",
+ "▁er n",
+ "▁ ern",
+ "▁my ster",
+ "▁myst er",
+ "▁prop rio",
+ "▁propri o",
+ "ate ful",
+ "▁Par ent",
+ "▁Pa rent",
+ "▁ Parent",
+ "▁lad ies",
+ "ra ck",
+ "rac k",
+ "r ack",
+ "ти ка",
+ "тик а",
+ "en burg",
+ "▁каче стве",
+ "▁E F",
+ "▁ EF",
+ "▁st am",
+ "▁sta m",
+ "▁nue va",
+ "▁fil tered",
+ "▁filter ed",
+ "re ten",
+ "ret en",
+ "r eten",
+ "▁I an",
+ "▁Matt hew",
+ "▁Matth ew",
+ "ki h",
+ "k ih",
+ "▁ ő",
+ "▁ком пози",
+ "▁for ever",
+ "▁fore ver",
+ "oir es",
+ "oi res",
+ "oire s",
+ "o ires",
+ ":\\ \\",
+ ": \\\\",
+ "▁ét udes",
+ "▁s oup",
+ "▁so up",
+ "▁sou p",
+ "▁p leased",
+ "▁please d",
+ "▁ple ased",
+ ")} (",
+ ") }(",
+ "▁S top",
+ "▁St op",
+ "▁Sto p",
+ "▁ Stop",
+ "Set ter",
+ "S etter",
+ "▁He lp",
+ "▁Hel p",
+ "▁ Help",
+ "▁b ars",
+ "▁bar s",
+ "▁ba rs",
+ "▁ bars",
+ "▁ER R",
+ "▁ ERR",
+ "▁( ?",
+ "▁ (?",
+ "▁po etry",
+ "▁poet ry",
+ "▁U til",
+ "▁Ut il",
+ "▁ Util",
+ "A K",
+ "▁f ick",
+ "▁fi ck",
+ "▁fic k",
+ "▁I M",
+ "▁ IM",
+ "▁pro ud",
+ "▁pr oud",
+ "но си",
+ "нос и",
+ "▁m uerte",
+ "▁mu erte",
+ "▁Palmar ès",
+ "▁N as",
+ "▁Na s",
+ "щи х",
+ "щ их",
+ "▁qu er",
+ "▁que r",
+ "▁q uer",
+ "▁ quer",
+ "▁a penas",
+ "▁ap enas",
+ "][ '",
+ "] ['",
+ "▁Kon st",
+ "по н",
+ "п он",
+ "▁Sch iff",
+ "▁m p",
+ "▁ mp",
+ "▁б лаго",
+ "fr am",
+ "fra m",
+ "f ram",
+ "▁house hold",
+ "▁t ract",
+ "▁tr act",
+ "▁tra ct",
+ "▁trac t",
+ "enc oding",
+ "▁und ert",
+ "▁under t",
+ "▁ undert",
+ "▁A ug",
+ "▁Au g",
+ "ов ан",
+ "ова н",
+ "о ван",
+ "▁Ar ten",
+ "▁Art en",
+ "▁Arte n",
+ "▁inv oked",
+ "▁invoke d",
+ "▁d ynast",
+ "▁fle et",
+ "че ство",
+ "▁Mur ray",
+ "▁g ut",
+ "▁gu t",
+ "eli hood",
+ "▁S SH",
+ "▁SS H",
+ "от вет",
+ "▁person ally",
+ "▁personal ly",
+ "при я",
+ "п рия",
+ "▁fin anci",
+ "▁finan ci",
+ "▁Thom pson",
+ "al u",
+ "a lu",
+ "id entity",
+ "ident ity",
+ "▁G rab",
+ "▁Gr ab",
+ "▁Gra b",
+ "add le",
+ "É t",
+ "▁T ob",
+ "▁To b",
+ "▁ver lor",
+ "▁verl or",
+ "▁Saint e",
+ "▁Sa inte",
+ "▁Sain te",
+ "▁d op",
+ "▁do p",
+ "▁в ере",
+ "▁ве ре",
+ "▁вер е",
+ "__ _",
+ "_ __",
+ "▁prom otion",
+ "▁- =",
+ "▁от де",
+ "▁amb igu",
+ "▁ ambigu",
+ "OR DER",
+ "ORD ER",
+ "▁Comm unic",
+ "▁Commun ic",
+ "▁im ply",
+ "▁imp ly",
+ "▁impl y",
+ "on ed",
+ "one d",
+ "o ned",
+ "clud ing",
+ "▁coll ision",
+ "▁fragment s",
+ "▁frag ments",
+ "script ion",
+ "scri ption",
+ "s cription",
+ "▁' {",
+ "ля х",
+ "л ях",
+ "▁h ans",
+ "▁ha ns",
+ "▁han s",
+ "у с",
+ "wi re",
+ "w ire",
+ "name space",
+ "names pace",
+ "▁s word",
+ "▁sw ord",
+ "▁swo rd",
+ "ref resh",
+ "▁kw am",
+ "z s",
+ "comm ons",
+ "common s",
+ "▁c osa",
+ "▁co sa",
+ "▁cos a",
+ "▁reg ime",
+ "gr ep",
+ "gre p",
+ "g rep",
+ "▁di oc",
+ "▁dio c",
+ "▁Cont act",
+ "▁ Contact",
+ "▁est as",
+ "▁esta s",
+ "▁Ste wart",
+ "▁v iele",
+ "▁vi ele",
+ "▁vie le",
+ "▁viel e",
+ "то ва",
+ "тов а",
+ "т ова",
+ "▁R an",
+ "▁Ra n",
+ "an nes",
+ "ann es",
+ "anne s",
+ "id ay",
+ "ida y",
+ "i day",
+ "▁s napshot",
+ "▁snap shot",
+ "or row",
+ "orr ow",
+ "▁za č",
+ "▁участи е",
+ "▁prom ised",
+ "▁promise d",
+ "Ass embly",
+ "▁champion ship",
+ "▁champions hip",
+ "▁Def ine",
+ "▁e ren",
+ "▁er en",
+ "▁ere n",
+ "▁ eren",
+ "▁но во",
+ "▁н ово",
+ "▁нов о",
+ "▁ ново",
+ "▁th inks",
+ "▁think s",
+ "▁thin ks",
+ "Ag e",
+ "A ge",
+ "▁g ev",
+ "▁ge v",
+ "var char",
+ "v archar",
+ "iv ità",
+ "com pos",
+ "comp os",
+ "▁M utter",
+ "▁Mut ter",
+ "CO NT",
+ "CON T",
+ "arm ée",
+ "ag net",
+ "agn et",
+ "agne t",
+ "▁B row",
+ "▁Br ow",
+ "▁Bro w",
+ ". —",
+ "▁Tele vision",
+ "▁Д ля",
+ "▁v m",
+ "▁ vm",
+ "▁or din",
+ "▁ord in",
+ "▁ ordin",
+ "▁Миха й",
+ "▁apro xim",
+ "') ->",
+ "' )->",
+ "▁z oo",
+ "▁zo o",
+ "ip pi",
+ "ipp i",
+ "i ppi",
+ "▁s ino",
+ "▁si no",
+ "▁sin o",
+ "▁Qu ébec",
+ "ra ges",
+ "rag es",
+ "rage s",
+ "r ages",
+ "ä ck",
+ "ei ng",
+ "ein g",
+ "e ing",
+ "ar lo",
+ "pi os",
+ "pio s",
+ "p ios",
+ "▁C han",
+ "▁Ch an",
+ "▁Cha n",
+ "▁el li",
+ "▁ell i",
+ "▁ elli",
+ "▁in cons",
+ "▁inc ons",
+ "▁incon s",
+ "gest ellt",
+ "g estellt",
+ "pp ers",
+ "pper s",
+ "ppe rs",
+ "p pers",
+ "Je an",
+ "anst alt",
+ "▁D ance",
+ "▁Dan ce",
+ "▁to en",
+ "▁toe n",
+ "▁de cis",
+ "▁dec is",
+ "▁Ре зу",
+ "▁official ly",
+ "▁offici ally",
+ "ät ze",
+ "ätz e",
+ "▁до ро",
+ "▁e numer",
+ "▁en umer",
+ "▁enum er",
+ "▁trois ième",
+ "ty p",
+ "t yp",
+ "of fs",
+ "off s",
+ "бо ль",
+ "od n",
+ "o dn",
+ "▁Z ar",
+ "▁Za r",
+ "▁дру го",
+ "qu ia",
+ "qui a",
+ "▁Nicol as",
+ "▁Nic olas",
+ "▁Nicola s",
+ "пи су",
+ "пис у",
+ "▁m ob",
+ "▁mo b",
+ "pa ces",
+ "pace s",
+ "p aces",
+ "нь ого",
+ "ньо го",
+ "Al g",
+ "A lg",
+ "éro ï",
+ "Error s",
+ "Err ors",
+ "▁г ре",
+ "▁ гре",
+ "▁жен щи",
+ "in ch",
+ "inc h",
+ "▁Kore an",
+ "▁Korea n",
+ "▁A post",
+ "▁Ap ost",
+ "▁L iver",
+ "▁Li ver",
+ "▁Live r",
+ "▁Liv er",
+ "▁element ary",
+ "▁D I",
+ "▁ DI",
+ "ви си",
+ "▁so il",
+ "▁D LL",
+ "▁r isp",
+ "▁ris p",
+ "▁ri sp",
+ "▁Sh akespe",
+ "▁G aussian",
+ "▁K urt",
+ "▁Kur t",
+ "▁Ku rt",
+ "Ver tex",
+ "Vert ex",
+ "eb ol",
+ "e bol",
+ "organ isation",
+ "är en",
+ "äre n",
+ "ä ren",
+ "▁Y ES",
+ "▁ YES",
+ "C UR",
+ "▁нача ль",
+ "▁по стро",
+ "▁пос тро",
+ "▁Lu igi",
+ "▁c aching",
+ "prevent Default",
+ "am d",
+ "a md",
+ "▁V it",
+ "▁Vi t",
+ "sub st",
+ "su bst",
+ "▁ст рои",
+ "▁C ampion",
+ "▁Camp ion",
+ "ch r",
+ "c hr",
+ "фе ре",
+ "фер е",
+ "ф ере",
+ "▁С писок",
+ "N F",
+ "▁c ím",
+ "▁cí m",
+ "▁h é",
+ "▁ hé",
+ "re bbe",
+ "reb be",
+ "oc y",
+ "o cy",
+ "be low",
+ "bel ow",
+ "▁by lo",
+ "▁byl o",
+ "▁У и",
+ "▁\\ ({\\",
+ "▁\\( {\\",
+ "▁` :",
+ "▁ `:",
+ "gi ore",
+ "gio re",
+ "gior e",
+ "g iore",
+ "Sa n",
+ "S an",
+ "▁G ate",
+ "▁Ga te",
+ "▁в с",
+ "▁o limp",
+ "▁ol imp",
+ "▁Mat rix",
+ "▁ Matrix",
+ "▁he aring",
+ "▁hear ing",
+ "ri i",
+ "r ii",
+ "tf rac",
+ "t frac",
+ "▁allem and",
+ "▁V ue",
+ "л н",
+ "▁comp iling",
+ "▁E ns",
+ "▁En s",
+ "▁investig ation",
+ "▁A x",
+ "▁ch ars",
+ "▁char s",
+ "▁cha rs",
+ "▁target s",
+ "▁tar gets",
+ "▁l oud",
+ "▁lo ud",
+ "us ement",
+ "use ment",
+ "▁N ether",
+ "▁Ne ther",
+ "▁Net her",
+ "com merce",
+ "IG HT",
+ "oc oa",
+ "oco a",
+ "if ecycle",
+ "ife cycle",
+ "▁Le o",
+ "pr iv",
+ "p riv",
+ "▁go ods",
+ "▁good s",
+ "ad amente",
+ "ada mente",
+ "A ustral",
+ "▁re boot",
+ "▁reb oot",
+ "Ge st",
+ "G est",
+ "▁represent ations",
+ "▁representation s",
+ "ce u",
+ "c eu",
+ "▁do ctrine",
+ "ce rs",
+ "cer s",
+ "c ers",
+ "▁K rak",
+ "▁Kr ak",
+ "▁Kra k",
+ "▁adv oc",
+ "▁squad ra",
+ "▁arbeit ete",
+ "üs t",
+ "ü st",
+ "▁p ill",
+ "▁pi ll",
+ "▁pil l",
+ "An swer",
+ "▁к віт",
+ "▁W a",
+ "um ann",
+ "uman n",
+ "uma nn",
+ "u mann",
+ "▁D ynam",
+ "▁Dy nam",
+ "Fa mil",
+ "F amil",
+ "▁t ennis",
+ "▁ten nis",
+ "▁Engine ering",
+ "▁circ les",
+ "▁cir cles",
+ "▁circle s",
+ "▁Mary land",
+ "▁b esta",
+ "▁be sta",
+ "▁best a",
+ "▁bes ta",
+ "▁b ases",
+ "▁bas es",
+ "▁base s",
+ "▁znaj du",
+ "ктор а",
+ "кто ра",
+ "к тора",
+ "▁ar rest",
+ "▁arr est",
+ "ле р",
+ "л ер",
+ "▁G ia",
+ "▁Gi a",
+ "▁remark able",
+ "▁мо гу",
+ "▁Sup reme",
+ "▁` %",
+ "do r",
+ "d or",
+ "▁au jourd",
+ "▁w is",
+ "WID TH",
+ "▁mis ma",
+ "▁mism a",
+ "▁fl uid",
+ "▁flu id",
+ "▁pet ite",
+ "▁petit e",
+ "▁T ow",
+ "▁To w",
+ "Reg istry",
+ "em ed",
+ "eme d",
+ "e med",
+ "▁Wis consin",
+ "▁R acing",
+ "▁Ra cing",
+ "▁reg istration",
+ "▁registr ation",
+ "/ %",
+ "th ird",
+ "▁mon uments",
+ "▁monument s",
+ "че й",
+ "ч ей",
+ "▁j et",
+ "▁je t",
+ "▁ jet",
+ "▁Ur ban",
+ "ál va",
+ "▁mil ieu",
+ "▁poss ess",
+ "▁g erm",
+ "▁ge rm",
+ "▁ger m",
+ "dep endencies",
+ "▁enem ies",
+ "▁s amen",
+ "▁sa men",
+ "▁same n",
+ "▁sam en",
+ "▁W erner",
+ "▁Wer ner",
+ "▁h izo",
+ "▁hi zo",
+ "▁t d",
+ "▁ td",
+ "▁y esterday",
+ "▁А д",
+ "▁ha sn",
+ "▁has n",
+ "cel lation",
+ "cell ation",
+ "ov ání",
+ "ová ní",
+ "li ka",
+ "lik a",
+ "l ika",
+ "We ek",
+ "▁I ng",
+ "▁In g",
+ "▁E mail",
+ "▁Em ail",
+ "▁ Email",
+ "▁m ètres",
+ "▁O CLC",
+ "▁among st",
+ "▁spl end",
+ "fu r",
+ "f ur",
+ "ant ics",
+ "anti cs",
+ "antic s",
+ "▁X XX",
+ "▁XX X",
+ "▁ XXX",
+ "▁груп пы",
+ "la ch",
+ "lac h",
+ "l ach",
+ "▁c ousin",
+ "▁cou sin",
+ "▁in variant",
+ "▁invari ant",
+ "ђ у",
+ "▁Be ispiel",
+ "▁Bei spiel",
+ "▁hard er",
+ "▁har der",
+ "▁b ell",
+ "▁be ll",
+ "▁bel l",
+ "▁ bell",
+ "▁or ch",
+ "▁ orch",
+ "t b",
+ "Foot note",
+ "re gon",
+ "reg on",
+ "Mart in",
+ "▁in con",
+ "▁inc on",
+ "▁attack ed",
+ "_{ -",
+ "_ {-",
+ "▁T ras",
+ "▁Tr as",
+ "▁Tra s",
+ "par ty",
+ "part y",
+ "ite it",
+ "▁s aint",
+ "▁sa int",
+ "▁sain t",
+ "rás ok",
+ "r ások",
+ "▁contain ers",
+ "▁container s",
+ "M o",
+ "▁S n",
+ "quant ity",
+ "▁r as",
+ "▁ra s",
+ "▁ ras",
+ "▁C anal",
+ "▁Can al",
+ "▁Ca nal",
+ "cc ion",
+ "c cion",
+ "uv o",
+ "u vo",
+ "▁i dx",
+ "▁id x",
+ "▁ idx",
+ "type name",
+ "typen ame",
+ "typ ename",
+ "▁R ugby",
+ "▁Se ems",
+ "▁See ms",
+ "▁trans mit",
+ "▁transm it",
+ "▁Pr äsident",
+ "з не",
+ "▁B aker",
+ "▁Ba ker",
+ "▁Bak er",
+ "in th",
+ "int h",
+ "i nth",
+ "▁tö bb",
+ "ver ein",
+ "vere in",
+ "▁espe cie",
+ "▁espec ie",
+ ", (",
+ "▁t éc",
+ "▁té c",
+ "▁W ITH",
+ "▁u nos",
+ "▁un os",
+ "▁uno s",
+ "▁ unos",
+ "▁polit ics",
+ "create Element",
+ "▁st ats",
+ "▁stat s",
+ "▁sta ts",
+ "▁ stats",
+ "▁T ennessee",
+ "▁Bedeut ung",
+ "▁S creen",
+ "▁Sc reen",
+ "▁ Screen",
+ "▁Stra ße",
+ "an ze",
+ "anz e",
+ "▁part ly",
+ "man uel",
+ "ol ation",
+ "ola tion",
+ "o lation",
+ "hor izontal",
+ "érie ure",
+ "érieur e",
+ "am pio",
+ "amp io",
+ "▁ст рук",
+ "▁ струк",
+ "We ight",
+ "La nd",
+ "L and",
+ "po ly",
+ "pol y",
+ "p oly",
+ "▁D ak",
+ "▁Da k",
+ "▁Ass ume",
+ "\". $",
+ "\" .$",
+ "▁c asi",
+ "▁cas i",
+ "▁ca si",
+ "▁g ross",
+ "▁gr oss",
+ "▁gro ss",
+ "▁gros s",
+ "▁ent ertain",
+ "▁enter tain",
+ "▁déc ada",
+ "'. $",
+ "' .$",
+ "en cer",
+ "ence r",
+ "enc er",
+ "▁guarante ed",
+ "▁guarantee d",
+ "]$ .",
+ "] $.",
+ "ли ся",
+ "▁accept able",
+ "ra ise",
+ "rai se",
+ "rais e",
+ "ir us",
+ "i rus",
+ "we it",
+ "wei t",
+ "▁А на",
+ "▁Ан а",
+ "▁h ills",
+ "▁hill s",
+ "ip age",
+ "i page",
+ "BI T",
+ "B IT",
+ "▁nu cle",
+ "▁nuc le",
+ "▁ut ilis",
+ "▁util is",
+ "CA A",
+ "C AA",
+ "ène s",
+ "èn es",
+ "è nes",
+ "▁Schwe iz",
+ "▁A A",
+ "▁ AA",
+ "ning er",
+ "n inger",
+ "▁b ands",
+ "▁band s",
+ "▁ban ds",
+ "▁t ender",
+ "▁te nder",
+ "▁ten der",
+ "▁tend er",
+ "so m",
+ "s om",
+ "W arning",
+ "▁B ischof",
+ "▁A rc",
+ "▁Ar c",
+ "▁W oman",
+ "▁Wo man",
+ "▁trans mission",
+ "▁transm ission",
+ "ч ни",
+ "is tre",
+ "ist re",
+ "istr e",
+ "i stre",
+ "B Y",
+ "▁S I",
+ "▁ SI",
+ "▁П ар",
+ "▁Па р",
+ "▁} ).",
+ "▁}) .",
+ "▁ }).",
+ "▁present a",
+ "▁pres enta",
+ "▁Re né",
+ "▁Ren é",
+ "▁happ iness",
+ "▁P unk",
+ "col s",
+ "co ls",
+ "c ols",
+ "▁Des de",
+ "рё х",
+ "▁м она",
+ "▁мо на",
+ "▁scr atch",
+ "▁t cp",
+ "▁ tcp",
+ "ête s",
+ "êt es",
+ "ê tes",
+ "it ated",
+ "ita ted",
+ "itat ed",
+ "itate d",
+ "▁dif eren",
+ "▁difer en",
+ "ge h",
+ "g eh",
+ "na hmen",
+ "nah men",
+ "nahme n",
+ "nahm en",
+ "П е",
+ "ck i",
+ "c ki",
+ "▁Te atro",
+ "▁Re member",
+ "▁Rem ember",
+ "▁f right",
+ "▁fr ight",
+ "▁Y am",
+ "▁Ya m",
+ "west ern",
+ "le ted",
+ "let ed",
+ "lete d",
+ "▁в стре",
+ "▁вс тре",
+ "▁telep ülés",
+ "зи н",
+ "з ин",
+ "▁Qu ant",
+ "▁ Quant",
+ "▁su pre",
+ "▁sup re",
+ "áj a",
+ "á ja",
+ "ді я",
+ "д ія",
+ "▁car rera",
+ "▁carre ra",
+ "kre t",
+ "kr et",
+ "k ret",
+ "par a",
+ "pa ra",
+ "p ara",
+ "▁S UM",
+ "▁SU M",
+ "▁ SUM",
+ "▁p it",
+ "▁pi t",
+ "▁ pit",
+ "ź dz",
+ "é o",
+ "ре ння",
+ "рен ня",
+ "▁C hor",
+ "▁Ch or",
+ "▁Cho r",
+ "▁vo ix",
+ "▁exec utive",
+ "▁execut ive",
+ "▁all erdings",
+ "May be",
+ "▁д ень",
+ "▁де нь",
+ "▁f lying",
+ "▁fl ying",
+ "▁fly ing",
+ "▁par liament",
+ "жда н",
+ "ж дан",
+ "▁f ram",
+ "▁fr am",
+ "▁fra m",
+ "▁ fram",
+ "▁жов т",
+ "▁u gly",
+ "▁бу ду",
+ "ig ny",
+ "ign y",
+ "\\| _{",
+ "\\ |_{",
+ "▁b itter",
+ "▁bit ter",
+ "sc e",
+ "s ce",
+ "▁p ole",
+ "▁po le",
+ "▁pol e",
+ "▁ pole",
+ "Ver lag",
+ "▁total ité",
+ "▁found ation",
+ "j t",
+ "▁s lice",
+ "▁sl ice",
+ "▁sli ce",
+ "▁ slice",
+ "if ique",
+ "ifi que",
+ "▁integr ate",
+ "▁integra te",
+ "st rij",
+ "str ij",
+ "▁asym pt",
+ "▁е му",
+ "▁pert urb",
+ "▁F low",
+ "▁Fl ow",
+ "▁Flo w",
+ "▁ Flow",
+ "jb oss",
+ "RI G",
+ "R IG",
+ "▁A less",
+ "▁Al ess",
+ "▁Ale ss",
+ "XX X",
+ "X XX",
+ "▁s umm",
+ "▁su mm",
+ "▁sum m",
+ "sql ite",
+ "▁che er",
+ "pr ob",
+ "pro b",
+ "p rob",
+ "▁G PU",
+ "▁GP U",
+ "zi ł",
+ "z ił",
+ "(* )",
+ "( *)",
+ "▁in duct",
+ "▁ind uct",
+ "▁indu ct",
+ "RA Y",
+ "bl att",
+ "bla tt",
+ "qu esta",
+ "que sta",
+ "quest a",
+ "ques ta",
+ "or u",
+ "o ru",
+ "▁In side",
+ "▁Ins ide",
+ "▁Mc G",
+ "▁N ep",
+ "▁Ne p",
+ "м п",
+ "▁in ve",
+ "▁inv e",
+ "▁An imal",
+ "▁Anim al",
+ "▁s ob",
+ "▁so b",
+ "▁ sob",
+ "ít ott",
+ "loy ment",
+ "▁b und",
+ "▁bu nd",
+ "▁ bund",
+ "St ation",
+ "Stat ion",
+ "▁B EGIN",
+ "▁part iellement",
+ "ig g",
+ "i gg",
+ "est ore",
+ "esto re",
+ "e store",
+ "▁co inc",
+ "▁coin c",
+ "▁Som mer",
+ "▁m d",
+ "▁ md",
+ "▁loc ked",
+ "▁lock ed",
+ "▁ locked",
+ "math char",
+ "ar ma",
+ "arm a",
+ "pe nt",
+ "pen t",
+ "p ent",
+ "ar ium",
+ "ari um",
+ "a rium",
+ "▁e ars",
+ "▁ear s",
+ "▁ ears",
+ "▁S ongs",
+ "▁Son gs",
+ "▁Song s",
+ "▁similar ly",
+ "▁liter ally",
+ "▁literal ly",
+ "▁in ches",
+ "▁inc hes",
+ "▁af fection",
+ "▁aff ection",
+ "▁affect ion",
+ "l p",
+ "▁con cluded",
+ "▁conclude d",
+ "▁му ніципалі",
+ "▁па мя",
+ "est aur",
+ "esta ur",
+ "▁J osh",
+ "▁Jo sh",
+ "▁Jos h",
+ "▁F ritz",
+ "▁Fr itz",
+ "▁Fri tz",
+ "DB C",
+ "D BC",
+ "д ён",
+ "pos a",
+ "po sa",
+ "p osa",
+ "▁gold en",
+ "▁gol den",
+ "▁p c",
+ "▁ pc",
+ "▁com te",
+ "▁Z iel",
+ "▁Zie l",
+ "▁prés ente",
+ "▁présent e",
+ "mar ks",
+ "mark s",
+ "m arks",
+ "ig neur",
+ "ign eur",
+ "igne ur",
+ "▁D rive",
+ "▁Dr ive",
+ "▁neg lect",
+ "▁roz p",
+ "▁F ive",
+ "sp aces",
+ "space s",
+ "s paces",
+ "▁M edi",
+ "▁Me di",
+ "▁Med i",
+ "▁ex isted",
+ "▁exist ed",
+ "▁existe d",
+ "▁by ła",
+ "▁był a",
+ "дж и",
+ "д жи",
+ "▁fr ente",
+ "т ник",
+ "od d",
+ "o dd",
+ "▁answer ing",
+ "bi an",
+ "bia n",
+ "b ian",
+ "▁E ugen",
+ "▁Eu gen",
+ "▁Eug en",
+ "▁Public ations",
+ "▁Pub lications",
+ "▁D ia",
+ "▁Di a",
+ "l á",
+ "▁' _",
+ "▁ '_",
+ "▁rec uper",
+ "ом у",
+ "о му",
+ "▁App end",
+ "▁Ap pend",
+ "▁ Append",
+ "ob ar",
+ "oba r",
+ "o bar",
+ "▁employ ees",
+ "▁employee s",
+ "▁comp ens",
+ "eme tery",
+ "emet ery",
+ "▁э лект",
+ "MO N",
+ "M ON",
+ "ol in",
+ "oli n",
+ "o lin",
+ "▁histor ic",
+ "hi s",
+ "h is",
+ "ą d",
+ "n m",
+ "▁G oth",
+ "▁Go th",
+ "▁Got h",
+ "▁st ress",
+ "▁str ess",
+ "▁stre ss",
+ "▁parte cip",
+ "▁A w",
+ "▁s ar",
+ "▁sa r",
+ "▁h u",
+ "▁ hu",
+ "▁mat plotlib",
+ "▁M yst",
+ "▁My st",
+ "▁Mys t",
+ "() ;`",
+ "(); `",
+ "( );`",
+ "sch ein",
+ "sc hein",
+ "sche in",
+ "Long rightarrow",
+ "▁р я",
+ "▁ ря",
+ "▁Is ra",
+ "[ ^",
+ "no u",
+ "n ou",
+ "▁syn d",
+ "▁sy nd",
+ "work ing",
+ "wor king",
+ "▁N ation",
+ "▁Na tion",
+ "▁Nat ion",
+ "▁P ent",
+ "▁Pe nt",
+ "▁Pen t",
+ "▁k lass",
+ "▁kl ass",
+ "▁klas s",
+ "▁applic able",
+ "▁D iam",
+ "▁Di am",
+ "▁Dia m",
+ "▁bras ile",
+ "▁p ac",
+ "▁pa c",
+ "▁He ight",
+ "▁ Height",
+ "P ut",
+ "▁int ro",
+ "▁intr o",
+ "▁ intro",
+ "▁unus ual",
+ "na s",
+ "n as",
+ "▁Geb äude",
+ "▁be am",
+ "▁R ect",
+ "▁Re ct",
+ "▁Rec t",
+ "▁ Rect",
+ "▁Prim era",
+ "▁Prime ra",
+ "▁h aut",
+ "▁ha ut",
+ "▁t rait",
+ "▁tr ait",
+ "▁tra it",
+ "prü ft",
+ "in ación",
+ "ina ción",
+ "▁configuration s",
+ "▁configur ations",
+ "▁g ilt",
+ "▁gi lt",
+ "▁territ oire",
+ "he z",
+ "h ez",
+ "▁al te",
+ "▁alt e",
+ "rel ative",
+ "Ex cel",
+ "▁W right",
+ "G V",
+ "по ли",
+ "пол и",
+ "Qu ant",
+ "▁ga uge",
+ "▁gau ge",
+ "▁multi ply",
+ "▁multip ly",
+ "AS S",
+ "A SS",
+ "ствен но",
+ "ан у",
+ "а ну",
+ "▁j eden",
+ "▁je den",
+ "▁jed en",
+ "▁liter ary",
+ "▁D ro",
+ "▁Dr o",
+ "▁adv ise",
+ "▁advis e",
+ "it zen",
+ "itz en",
+ "▁dis ag",
+ "web site",
+ "▁д ія",
+ "▁ді я",
+ "▁ дія",
+ "▁ob server",
+ "▁obser ver",
+ "▁observ er",
+ "▁observe r",
+ "▁janu ár",
+ "v ě",
+ "ku p",
+ "k up",
+ "▁S es",
+ "▁Se s",
+ "▁woj ew",
+ "▁st ages",
+ "▁stage s",
+ "▁sta ges",
+ "▁stag es",
+ "▁вре мени",
+ "▁време ни",
+ "łu ż",
+ "но с",
+ "н ос",
+ "Down load",
+ "ip o",
+ "i po",
+ "▁g raf",
+ "▁gr af",
+ "▁gra f",
+ "▁ро бо",
+ "▁Nik ol",
+ "▁Ni kol",
+ "▁f ic",
+ "▁fi c",
+ "▁ fic",
+ "▁jo ining",
+ "▁join ing",
+ "▁divers os",
+ "▁LI KE",
+ "▁F itz",
+ "▁d imin",
+ "▁di min",
+ "▁dim in",
+ "▁dist rib",
+ "Sa m",
+ "S am",
+ "ko z",
+ "k oz",
+ "▁al phabet",
+ "▁alpha bet",
+ "os er",
+ "ose r",
+ "o ser",
+ "OU R",
+ "O UR",
+ "uk a",
+ "u ka",
+ "ка я",
+ "▁ste el",
+ "▁` --",
+ "▁`- -",
+ "▁t ener",
+ "▁te ner",
+ "▁ten er",
+ "mar ker",
+ "mark er",
+ "▁He aven",
+ "new command",
+ "▁prison ers",
+ "▁prisoner s",
+ "▁K night",
+ "▁Kn ight",
+ "▁present s",
+ "▁pres ents",
+ "▁qu esti",
+ "▁quest i",
+ "▁tr ains",
+ "▁tra ins",
+ "▁train s",
+ "op era",
+ "ope ra",
+ "oper a",
+ "▁Li near",
+ "▁Lin ear",
+ "▁Line ar",
+ "▁ Linear",
+ "▁M E",
+ "▁ ME",
+ "▁B uc",
+ "▁Bu c",
+ "Le g",
+ "L eg",
+ "▁ag ua",
+ "▁ agua",
+ "▁Gr iff",
+ "ol g",
+ "o lg",
+ "ds t",
+ "d st",
+ ". \r",
+ "▁person es",
+ "▁pers ones",
+ "▁persone s",
+ "Ma l",
+ "M al",
+ "бе ре",
+ "бер е",
+ "б ере",
+ "fol ge",
+ "folg e",
+ "▁ac ab",
+ "ct u",
+ "c tu",
+ "pt ic",
+ "▁N avigation",
+ "▁ Navigation",
+ "R uss",
+ "га ль",
+ "г аль",
+ "▁F ul",
+ "▁Fu l",
+ "▁ма є",
+ "чна я",
+ "ч ная",
+ "wn er",
+ "w ner",
+ "con tra",
+ "cont ra",
+ "contr a",
+ "▁jou eur",
+ "▁joue ur",
+ "▁J ess",
+ "▁Je ss",
+ "▁Jes s",
+ "▁re new",
+ "▁ren ew",
+ "▁l ap",
+ "▁la p",
+ "▁ lap",
+ "▁cas ting",
+ "▁cast ing",
+ "ga l",
+ "g al",
+ "▁tém atu",
+ "▁на зыва",
+ "за х",
+ "ч не",
+ ")- \\",
+ ") -\\",
+ "▁ча сто",
+ "▁час то",
+ "▁част о",
+ "}$ -",
+ "} $-",
+ "▁l icz",
+ "▁li cz",
+ "▁lic z",
+ "▁e mot",
+ "▁em ot",
+ "ha rm",
+ "har m",
+ "h arm",
+ "▁occasion ally",
+ "▁hor ror",
+ "▁ho rror",
+ "ea st",
+ "e ast",
+ "▁pr inter",
+ "▁print er",
+ "▁prin ter",
+ "ar an",
+ "ara n",
+ "a ran",
+ "▁Miss iss",
+ "fol low",
+ "f ollow",
+ "▁Bar ry",
+ "▁investig ate",
+ "go w",
+ "g ow",
+ "▁Amer icans",
+ "▁American s",
+ "▁America ns",
+ "S ince",
+ "▁від о",
+ "▁ві до",
+ "▁re un",
+ "os ci",
+ "osc i",
+ "o sci",
+ "▁Ch apter",
+ "▁Chap ter",
+ "▁b ay",
+ "▁ba y",
+ "▁ bay",
+ "ро ме",
+ "ром е",
+ "et he",
+ "eth e",
+ "e the",
+ "éd ie",
+ "é die",
+ "com ot",
+ "co mot",
+ "como t",
+ "▁miejs cowo",
+ "▁stud ierte",
+ "▁studi erte",
+ "ou vert",
+ "ouv ert",
+ "ouve rt",
+ "ouver t",
+ "▁к ур",
+ "▁ку р",
+ "▁ кур",
+ "▁DE SC",
+ "▁DES C",
+ "▁touch ed",
+ "▁tou ched",
+ "▁Jer ry",
+ "ue se",
+ "ues e",
+ "u ese",
+ "ли ще",
+ "auth entication",
+ "authentic ation",
+ "▁col le",
+ "▁co lle",
+ "▁coll e",
+ "he art",
+ "▁reg iment",
+ "▁regime nt",
+ "cri bed",
+ "cribe d",
+ "▁Бо ль",
+ "▁про ис",
+ "ce ae",
+ "▁mass es",
+ "▁sc rolling",
+ "▁scroll ing",
+ "us to",
+ "ust o",
+ "u sto",
+ "S W",
+ "ov at",
+ "ova t",
+ "o vat",
+ "▁gr âce",
+ "▁Архи в",
+ "▁Се вер",
+ "av ait",
+ "ava it",
+ "▁Marsh all",
+ "▁Mars hall",
+ "▁Hash Map",
+ "▁ HashMap",
+ "ac on",
+ "aco n",
+ "a con",
+ "ück en",
+ "ücke n",
+ "ü cken",
+ "[] )",
+ "[ ])",
+ "▁ev angel",
+ "et zung",
+ "etz ung",
+ "tt emberg",
+ "st ers",
+ "ste rs",
+ "ster s",
+ "s ters",
+ "T M",
+ "▁ли тера",
+ "qu ot",
+ "Pr ed",
+ "Pre d",
+ "P red",
+ "▁w erk",
+ "▁wer k",
+ "▁ werk",
+ "▁ha ber",
+ "▁hab er",
+ "▁habe r",
+ "la va",
+ "lav a",
+ "l ava",
+ "vo us",
+ "v ous",
+ "▁L ate",
+ "▁La te",
+ "▁Lat e",
+ "cy cle",
+ "cyc le",
+ "c ycle",
+ "ти рова",
+ "▁про ду",
+ "▁прод у",
+ "▁pop ulations",
+ "▁population s",
+ "▁popul ations",
+ "▁Y an",
+ "▁Ya n",
+ "Pre fix",
+ "P refix",
+ "actér istiques",
+ "+ '",
+ "() `](",
+ "()` ](",
+ "▁Л ь",
+ "фи ль",
+ "▁жи зни",
+ "ft p",
+ "f tp",
+ "▁все х",
+ "▁g dzie",
+ "▁v idea",
+ "▁vid ea",
+ "▁vide a",
+ "oa uth",
+ "o auth",
+ "▁p id",
+ "▁pi d",
+ "▁ pid",
+ "ů m",
+ "▁p esso",
+ "▁pes so",
+ "▁track ing",
+ "▁trac king",
+ "iz in",
+ "izi n",
+ "i zin",
+ "▁Mor ris",
+ "щи й",
+ "▁Provin z",
+ "▁M itte",
+ "▁Mit te",
+ "▁Mi tte",
+ "▁Mitt e",
+ "▁artific ial",
+ "bráz ky",
+ "▁до сти",
+ "▁rest ored",
+ "▁restore d",
+ "▁resto red",
+ "▁commun icate",
+ "▁communic ate",
+ "ag it",
+ "agi t",
+ "a git",
+ "Rec ogn",
+ "▁l on",
+ "▁lo n",
+ "▁ lon",
+ "▁за ня",
+ "▁зан я",
+ "▁Arg ument",
+ "▁ Argument",
+ "fl ush",
+ "flu sh",
+ "ма на",
+ "ман а",
+ "м ана",
+ "sec onds",
+ "second s",
+ "U C",
+ "▁R uth",
+ "▁Ru th",
+ "▁t ub",
+ "▁tu b",
+ "▁B ret",
+ "▁Br et",
+ "▁Bre t",
+ "▁P ere",
+ "▁Per e",
+ "▁Pe re",
+ "▁respons ibility",
+ "ńcz y",
+ "ń czy",
+ "▁environment s",
+ "▁environ ments",
+ "ke e",
+ "k ee",
+ "▁g root",
+ "▁gr oot",
+ "▁gro ot",
+ "▁pain ted",
+ "▁paint ed",
+ "▁Éd itions",
+ "cp y",
+ "c py",
+ "ár t",
+ "á rt",
+ "lich keit",
+ "ar da",
+ "ard a",
+ "B atch",
+ "▁Leop old",
+ "re ason",
+ "rea son",
+ "reas on",
+ "n oreferrer",
+ "se ns",
+ "sen s",
+ "s ens",
+ "▁ro cks",
+ "▁rock s",
+ "▁Hit ler",
+ "ла т",
+ "л ат",
+ "▁qu oted",
+ "▁quot ed",
+ "▁quote d",
+ "▁ко лле",
+ "▁у ров",
+ "ba g",
+ "b ag",
+ ".\" )",
+ ". \")",
+ "▁M L",
+ "▁ ML",
+ "▁kom t",
+ "▁ko mt",
+ "▁[ _",
+ "▁ [_",
+ "▁spect ral",
+ "ed o",
+ "e do",
+ "▁in sieme",
+ "▁suffer ing",
+ "▁suff ering",
+ "sl ider",
+ "slide r",
+ "▁Kenn edy",
+ "ol ate",
+ "ola te",
+ "o late",
+ "▁P atri",
+ "▁Pa tri",
+ "▁Pat ri",
+ "зи и",
+ "O H",
+ "▁те а",
+ "▁пра ва",
+ "▁прав а",
+ "ма х",
+ "re write",
+ "rew rite",
+ "r ewrite",
+ "▁Eins atz",
+ "ex ternal",
+ "ext ernal",
+ "hol ds",
+ "hold s",
+ "h olds",
+ "▁P laces",
+ "▁Pl aces",
+ "▁Pla ces",
+ "▁Place s",
+ "at ype",
+ "aty pe",
+ "a type",
+ "▁vul ner",
+ "▁abandon ed",
+ "Or igin",
+ "Ori gin",
+ "▁max imal",
+ "▁maxim al",
+ "AA AA",
+ "▁Base ball",
+ "▁C lose",
+ "▁Cl ose",
+ "▁Clo se",
+ "▁ Close",
+ "▁pa inter",
+ "▁pain ter",
+ "▁paint er",
+ "▁assign ing",
+ "N B",
+ "bl ast",
+ "bla st",
+ "b last",
+ "▁K ünstler",
+ ")] (",
+ ") ](",
+ "fa ch",
+ "fac h",
+ "f ach",
+ "▁Const antin",
+ "▁Constant in",
+ "ok es",
+ "oke s",
+ "o kes",
+ "▁no body",
+ "▁nob ody",
+ "▁subt ract",
+ "▁fos se",
+ "▁foss e",
+ "▁cert ific",
+ "▁m use",
+ "▁mus e",
+ "▁mu se",
+ "/) ,",
+ "/ ),",
+ "▁Pro fil",
+ "▁Prof il",
+ "▁pro xim",
+ "▁Jer usalem",
+ "▁simp licity",
+ "▁simpl icity",
+ "▁w sz",
+ "▁ws z",
+ "NUM BER",
+ "utt avia",
+ "U ITableView",
+ "ich ter",
+ "icht er",
+ "ichte r",
+ "i chter",
+ "жа н",
+ "ж ан",
+ "▁L av",
+ "▁La v",
+ "it chen",
+ "itch en",
+ "▁Ч ем",
+ "▁Че м",
+ "T u",
+ "▁ge om",
+ "▁zv uky",
+ "▁Sur vey",
+ "AN CE",
+ "▁enc rypted",
+ "▁encrypt ed",
+ "pr of",
+ "pro f",
+ "▁d are",
+ "▁da re",
+ "▁dar e",
+ "▁L oren",
+ "▁Lo ren",
+ "▁Lor en",
+ "т в",
+ "▁А лек",
+ "▁Ал ек",
+ "▁comput ers",
+ "▁computer s",
+ "▁compute rs",
+ "▁expect ation",
+ "▁substant ial",
+ "▁Д ми",
+ "▁` {",
+ "▁д ра",
+ "▁др а",
+ "▁ дра",
+ "ub ble",
+ "▁per forms",
+ "▁perform s",
+ "▁Kr ieg",
+ "▁Krie g",
+ "▁in coming",
+ "▁inc oming",
+ "▁Class ification",
+ "Web View",
+ "▁epis odes",
+ "▁episode s",
+ "ap per",
+ "app er",
+ "appe r",
+ "a pper",
+ "äu fig",
+ "▁gi ov",
+ "▁De part",
+ "▁Dep art",
+ "бо ра",
+ "бор а",
+ "ed ly",
+ "os pod",
+ "osp od",
+ "▁p tr",
+ "▁pt r",
+ "▁ ptr",
+ "▁d átum",
+ "▁est imation",
+ "▁estim ation",
+ "ic ole",
+ "ico le",
+ "icol e",
+ "i cole",
+ "▁- ---",
+ "▁-- --",
+ "▁--- -",
+ "▁ ----",
+ "▁prin ces",
+ "▁prince s",
+ "HE AD",
+ "▁diff usion",
+ "▁diffus ion",
+ "▁d rie",
+ "▁dr ie",
+ "▁dri e",
+ "▁A da",
+ "▁Ad a",
+ "ни це",
+ "ниц е",
+ "ng inx",
+ "n ginx",
+ "sh al",
+ "sha l",
+ "s hal",
+ "▁febru ari",
+ "▁T at",
+ "▁Ta t",
+ "lo oking",
+ "look ing",
+ "ku nd",
+ "k und",
+ "▁De an",
+ "m ongodb",
+ "вши х",
+ "в ших",
+ "▁A ur",
+ "▁Au r",
+ "▁Fl ora",
+ "▁Flor a",
+ "▁Flo ra",
+ "▁Stud ios",
+ "▁Studio s",
+ "ци је",
+ "ei l",
+ "e il",
+ "Inst all",
+ "▁f ranch",
+ "▁fr anch",
+ "▁fran ch",
+ "▁franc h",
+ "▁H MS",
+ "▁pract ices",
+ "▁practice s",
+ "le j",
+ "l ej",
+ "da le",
+ "dal e",
+ "d ale",
+ "▁po ste",
+ "▁pos te",
+ "▁post e",
+ "▁H els",
+ "▁He ls",
+ "▁Hel s",
+ "▁reli able",
+ "źdz ier",
+ "▁ver se",
+ "▁vers e",
+ "▁ verse",
+ "er meister",
+ "erme ister",
+ "▁qu it",
+ "▁qui t",
+ "▁q uit",
+ "▁ quit",
+ "ét ico",
+ "il is",
+ "ili s",
+ "i lis",
+ "ed or",
+ "edo r",
+ "e dor",
+ "▁Cult ural",
+ "▁Cultura l",
+ "дж е",
+ "д же",
+ "▁li ked",
+ "▁like d",
+ "▁lik ed",
+ "▁m ongodb",
+ "▁mongo db",
+ "▁ mongodb",
+ "▁Broad way",
+ "▁I R",
+ "▁ IR",
+ "es zt",
+ "esz t",
+ "ho v",
+ "h ov",
+ "▁m íst",
+ "▁mí st",
+ "re iche",
+ "reich e",
+ "rei che",
+ "▁k B",
+ "ст ом",
+ "сто м",
+ "с том",
+ "▁SQL ite",
+ "▁tor neo",
+ "\\ .",
+ "Or d",
+ "O rd",
+ "▁Admin istration",
+ "▁Administr ation",
+ "▁з да",
+ "▁ зда",
+ "▁H inter",
+ "▁Hin ter",
+ "▁V ia",
+ "▁Vi a",
+ "Dec imal",
+ "or ious",
+ "ori ous",
+ "orio us",
+ "▁nécess aire",
+ "w x",
+ "▁t ej",
+ "▁te j",
+ "▁t ema",
+ "▁te ma",
+ "▁tem a",
+ "O brázky",
+ "ри те",
+ "рит е",
+ "▁build s",
+ "▁l aten",
+ "▁la ten",
+ "▁lat en",
+ "▁late n",
+ "▁г г",
+ "Vis ibility",
+ "lä u",
+ "l äu",
+ "▁se chs",
+ "▁sec hs",
+ "▁лу ч",
+ "ce ra",
+ "cer a",
+ "c era",
+ "Co uld",
+ "C ould",
+ "▁tra ject",
+ "}} ^{",
+ "}}^ {",
+ "} }^{",
+ "▁Jap on",
+ "▁Ja pon",
+ "an other",
+ "ano ther",
+ "I K",
+ "▁belong ing",
+ "▁fac ilities",
+ "▁facil ities",
+ "▁D aily",
+ "▁Da ily",
+ "▁de ce",
+ "▁dec e",
+ "int ro",
+ "▁слу ча",
+ "Name space",
+ "Names pace",
+ "▁B ak",
+ "▁Ba k",
+ "loc ale",
+ "local e",
+ "U G",
+ "=$ {",
+ "= ${",
+ "▁comp añ",
+ "ją c",
+ "j ąc",
+ "▁ar ithmetic",
+ "fo rum",
+ "for um",
+ "f orum",
+ "▁por ta",
+ "▁port a",
+ "on k",
+ "▁g ender",
+ "▁ge nder",
+ "▁gen der",
+ "▁ gender",
+ "▁expect s",
+ "б ка",
+ "▁n ak",
+ "▁na k",
+ "▁ nak",
+ "▁G race",
+ "▁Gr ace",
+ "▁Gra ce",
+ "▁st ro",
+ "▁str o",
+ "ivid ual",
+ "▁C OM",
+ "▁CO M",
+ "▁ COM",
+ "▁F arm",
+ "▁Fa rm",
+ "▁Far m",
+ "▁c anton",
+ "▁can ton",
+ "▁cant on",
+ "то му",
+ "том у",
+ "т ому",
+ "java x",
+ "jav ax",
+ "се й",
+ "с ей",
+ "▁brief ly",
+ "Fa ce",
+ "F ace",
+ "rot ate",
+ "const ant",
+ "▁g allery",
+ "▁gall ery",
+ "ast ro",
+ "astr o",
+ "all ery",
+ "alle ry",
+ "aller y",
+ "▁D J",
+ "char ge",
+ "charg e",
+ "ходи ть",
+ "ходит ь",
+ "C ent",
+ "\\\" ,",
+ "\\ \",",
+ "▁d onna",
+ "▁don na",
+ "▁donn a",
+ "ar ca",
+ "arc a",
+ "la de",
+ "lad e",
+ "l ade",
+ "zi n",
+ "z in",
+ "▁N ed",
+ "▁Ne d",
+ "▁host ing",
+ "▁hos ting",
+ "id or",
+ "ido r",
+ "i dor",
+ "it ative",
+ "itat ive",
+ "ig s",
+ "i gs",
+ "▁п ря",
+ "▁пр я",
+ "▁t icket",
+ "▁tick et",
+ "▁ti cket",
+ "▁stud ying",
+ "▁study ing",
+ "▁des igner",
+ "▁design er",
+ "lap sed",
+ "lapse d",
+ "laps ed",
+ "l apsed",
+ "▁la at",
+ "▁d ix",
+ "▁di x",
+ "▁integr ated",
+ "▁integrate d",
+ "▁integra ted",
+ "▁in formed",
+ "▁inform ed",
+ "▁be have",
+ "▁beh ave",
+ "▁behav e",
+ "▁la bour",
+ "▁lab our",
+ "est ellt",
+ "cal endar",
+ "▁k illing",
+ "▁kil ling",
+ "▁kill ing",
+ "▁tw itter",
+ "▁ twitter",
+ "ia e",
+ "i ae",
+ "▁histor ique",
+ "DE FAULT",
+ "ia ła",
+ "iał a",
+ "i ała",
+ "▁theoret ical",
+ "▁un ders",
+ "▁und ers",
+ "▁under s",
+ "ля ет",
+ "at an",
+ "ata n",
+ "a tan",
+ "▁s urname",
+ "▁sur name",
+ "▁inter cept",
+ "гла сно",
+ "▁општи ни",
+ "▁t ired",
+ "▁tir ed",
+ "▁ti red",
+ "▁B eth",
+ "▁Be th",
+ "▁Bet h",
+ "▁ад министратив",
+ "L i",
+ "▁Т ур",
+ "▁Ту р",
+ "▁Sc anner",
+ "▁S tern",
+ "▁St ern",
+ "▁Ste rn",
+ "▁Ster n",
+ "▁вме сте",
+ "▁report ing",
+ "▁s ull",
+ "▁su ll",
+ "▁sul l",
+ "ци ей",
+ "ber ts",
+ "bert s",
+ "og onal",
+ "ogo nal",
+ "ő k",
+ "▁i psum",
+ "▁ip sum",
+ "▁seu lement",
+ "▁seul ement",
+ "▁seule ment",
+ "▁Se iten",
+ "▁Seit en",
+ "▁Seite n",
+ "word press",
+ "▁fe aturing",
+ "ist ischen",
+ "isti schen",
+ "istische n",
+ "ju b",
+ "j ub",
+ "▁é tr",
+ "▁ét r",
+ "▁ étr",
+ "▁t ea",
+ "▁te a",
+ "▁adapt ed",
+ "▁sc ales",
+ "▁scale s",
+ "▁scal es",
+ "▁n an",
+ "▁na n",
+ "▁ nan",
+ "get Value",
+ "▁Bl ues",
+ "▁Blue s",
+ "ac les",
+ "acle s",
+ "a cles",
+ "▁st ati",
+ "▁stat i",
+ "▁sta ti",
+ "▁ent itled",
+ "▁R alph",
+ "gra vity",
+ "▁entre pr",
+ "któ ber",
+ "li mat",
+ "lim at",
+ "l imat",
+ "li s",
+ "l is",
+ "De mo",
+ "D emo",
+ "re lation",
+ "rel ation",
+ "▁n ep",
+ "▁ne p",
+ "pro wad",
+ "it is",
+ "iti s",
+ "i tis",
+ "▁p up",
+ "▁pu p",
+ "neh mer",
+ "nehm er",
+ "▁disapp oint",
+ "▁et was",
+ "▁etwa s",
+ "an non",
+ "ann on",
+ "anno n",
+ "▁appro ved",
+ "▁cl ever",
+ "▁cle ver",
+ "Lo ading",
+ "Load ing",
+ "▁ver z",
+ "▁ve rz",
+ "res se",
+ "ress e",
+ "r esse",
+ "▁insp ir",
+ "▁sam pling",
+ "▁B ek",
+ "▁Be k",
+ "}) $.",
+ "})$ .",
+ "} )$.",
+ "▁г рома",
+ "▁spe cie",
+ "▁spec ie",
+ "▁re pub",
+ "▁rep ub",
+ "▁lo ader",
+ "▁load er",
+ "▁ loader",
+ "▁e rf",
+ "▁er f",
+ "▁should er",
+ "ra is",
+ "rai s",
+ "r ais",
+ "▁ма те",
+ "▁мат е",
+ "▁Mon th",
+ "▁Mont h",
+ "▁Mo nth",
+ "▁ Month",
+ "Sc ene",
+ "▁block ing",
+ "▁o cean",
+ "ge ben",
+ "geb en",
+ "g eben",
+ "▁Kil ometer",
+ "▁b edeut",
+ "▁M ix",
+ "▁Mi x",
+ "fm t",
+ "f mt",
+ "▁Nor weg",
+ "▁ID s",
+ "par allel",
+ "▁ant icip",
+ "▁anti cip",
+ "▁re vis",
+ "▁rev is",
+ "ха н",
+ "х ан",
+ "▁с вет",
+ "▁све т",
+ "CA SE",
+ "C ASE",
+ "▁f ührt",
+ "▁führ t",
+ "▁ führt",
+ "▁at omic",
+ "▁atom ic",
+ "▁ atomic",
+ "▁dark ness",
+ "▁Fußball spieler",
+ "▁Ж и",
+ "quis ition",
+ "▁S ieg",
+ "▁Sie g",
+ "▁Si eg",
+ "C irc",
+ "▁c ientí",
+ "ne lle",
+ "nel le",
+ "nell e",
+ "n elle",
+ "SH A",
+ "S HA",
+ "▁u rb",
+ "▁ur b",
+ "▁ urb",
+ "▁k si",
+ "leq slant",
+ "▁ф рон",
+ "▁de fect",
+ "▁def ect",
+ "▁defe ct",
+ "▁r á",
+ "▁ rá",
+ "▁strong er",
+ "▁p ł",
+ "▁commun ities",
+ "ни на",
+ "нин а",
+ "en as",
+ "ena s",
+ "e nas",
+ "ienne nt",
+ "ienn ent",
+ "▁safe ly",
+ "▁saf ely",
+ "▁т я",
+ "▁ тя",
+ "▁ben chmark",
+ "▁Bra un",
+ "method s",
+ "arg ument",
+ "vo s",
+ "v os",
+ "ob ox",
+ "o box",
+ "ро ви",
+ "ров и",
+ "р ови",
+ "▁recher che",
+ "m n",
+ "▁br ings",
+ "▁bring s",
+ "m achine",
+ "CE SS",
+ "CES S",
+ "host s",
+ "hos ts",
+ "▁N Y",
+ "Aut ow",
+ "Auto w",
+ "▁сов ремен",
+ "▁G ary",
+ "▁Gar y",
+ "▁Ga ry",
+ "▁s ensor",
+ "▁sens or",
+ "▁document ed",
+ "▁pr endre",
+ "▁prend re",
+ "▁pe er",
+ "en ix",
+ "eni x",
+ "ha i",
+ "h ai",
+ "ar be",
+ "цен т",
+ "ц ент",
+ "_ (",
+ "▁U RI",
+ "▁ URI",
+ "ев а",
+ "е ва",
+ "▁Re gie",
+ "▁Reg ie",
+ "▁Mon ument",
+ "▁onder werp",
+ "B ag",
+ "ti t",
+ "t it",
+ "▁st ir",
+ "▁n erv",
+ "▁ne rv",
+ "▁ner v",
+ "стор ія",
+ "▁s ov",
+ "▁so v",
+ "▁writ ers",
+ "▁write rs",
+ "▁writer s",
+ "▁sort s",
+ "▁sor ts",
+ "ab solute",
+ "▁difficult ies",
+ "▁par lament",
+ "▁parl ament",
+ "▁IE numerable",
+ "▁dis sol",
+ "▁diss ol",
+ "▁CH ECK",
+ "ar ina",
+ "ari na",
+ "arin a",
+ "in burgh",
+ "D M",
+ "▁e ind",
+ "▁ein d",
+ "▁bud get",
+ "▁cert ains",
+ "▁certain s",
+ "▁för sta",
+ "▁först a",
+ "an ja",
+ "a nja",
+ "▁го дов",
+ "▁год ов",
+ "▁т ек",
+ "▁те к",
+ "▁ тек",
+ "▁D uch",
+ "▁Du ch",
+ "▁Duc h",
+ "gu i",
+ "g ui",
+ "▁Te ams",
+ "▁Team s",
+ "▁мно ги",
+ "Mar ie",
+ "Ma rie",
+ "M arie",
+ "In tegr",
+ "Int egr",
+ "Thread Pool",
+ "ru st",
+ "rus t",
+ "r ust",
+ "í k",
+ "% \"",
+ "en f",
+ "sp l",
+ "s pl",
+ "▁be gun",
+ "▁beg un",
+ "lo u",
+ "l ou",
+ "▁Rewrite Rule",
+ "tu ple",
+ "ane ous",
+ "▁mar ine",
+ "▁mari ne",
+ "▁ marine",
+ "at tan",
+ "att an",
+ "atta n",
+ "ik al",
+ "ika l",
+ "i kal",
+ "▁gradu ated",
+ "il lé",
+ "ill é",
+ "▁про ве",
+ "▁пров е",
+ "▁пр ове",
+ "▁Р оз",
+ "▁Ро з",
+ "', \r",
+ "' ,\r",
+ "▁Pf arr",
+ "▁n ivel",
+ "▁ni vel",
+ "▁пра цю",
+ "mus ic",
+ "▁set Timeout",
+ "ER S",
+ "E RS",
+ "▁E rik",
+ "▁Er ik",
+ "pi t",
+ "p it",
+ "▁Х ро",
+ "▁p ił",
+ "▁pi ł",
+ "▁p eri",
+ "▁per i",
+ "▁pe ri",
+ "до к",
+ "д ок",
+ "us zt",
+ "usz t",
+ "▁B ear",
+ "▁Be ar",
+ "Class Name",
+ "▁Par lament",
+ "▁a ix",
+ "▁ai x",
+ "▁inv ited",
+ "▁P ATH",
+ "▁PA TH",
+ "▁ PATH",
+ "xt er",
+ "x ter",
+ "▁R ace",
+ "▁Ra ce",
+ "▁h echo",
+ "▁he cho",
+ "▁T ower",
+ "▁To wer",
+ "▁Tow er",
+ "▁u tf",
+ "▁ut f",
+ "▁ utf",
+ "act ly",
+ "▁бу де",
+ "▁ang les",
+ "▁angle s",
+ "▁ angles",
+ "ня я",
+ "ouv elles",
+ "ouve lles",
+ "ouvel les",
+ "ouvelle s",
+ "▁cl imate",
+ "▁cli mate",
+ "▁clim ate",
+ "▁sing ing",
+ "▁sin ging",
+ "▁navig ate",
+ ">' ;",
+ "> ';",
+ "ad ows",
+ "ado ws",
+ "adow s",
+ "▁l eta",
+ "▁le ta",
+ "▁let a",
+ "▁S itz",
+ "▁Si tz",
+ "▁Sit z",
+ "▁part itions",
+ "▁partition s",
+ "▁d ock",
+ "▁do ck",
+ "▁doc k",
+ "▁ż y",
+ "▁ ży",
+ "▁alloc ate",
+ "▁benef its",
+ "▁benefit s",
+ "▁n ieder",
+ "▁nie der",
+ "▁ni eder",
+ "xp ath",
+ "x path",
+ "me ck",
+ "äl le",
+ "äll e",
+ "ä lle",
+ "▁cou pling",
+ "▁coup ling",
+ "жи л",
+ "ж ил",
+ "For Key",
+ "ar gent",
+ "arg ent",
+ "cl ou",
+ "clo u",
+ "c lou",
+ "▁instru ments",
+ "▁instrument s",
+ "▁ent hus",
+ "▁m ég",
+ "▁mé g",
+ "▁Па в",
+ "▁R ach",
+ "▁Ra ch",
+ "-- ---",
+ "---- -",
+ "--- --",
+ "- ----",
+ "▁API s",
+ "▁AP Is",
+ "▁V ier",
+ "▁Vi er",
+ "▁Vie r",
+ "C md",
+ "it ore",
+ "ito re",
+ "itor e",
+ "▁C uba",
+ "▁Cu ba",
+ "▁Cub a",
+ "▁dátum mal",
+ "▁embed ding",
+ "std io",
+ "▁Gil bert",
+ "▁ge prüft",
+ "▁st ating",
+ "▁stat ing",
+ "▁sta ting",
+ "▁stati ng",
+ "▁trigger s",
+ "▁trig gers",
+ "+ =",
+ "▁spé cial",
+ "▁del iber",
+ "▁deli ber",
+ "ми н",
+ "м ин",
+ "Pro du",
+ "Pr odu",
+ "P rodu",
+ "▁St ati",
+ "▁Stat i",
+ "▁Sta ti",
+ "▁z us",
+ "▁zu s",
+ "kt ionen",
+ "ktion en",
+ "Dispatch er",
+ "id al",
+ "ida l",
+ "i dal",
+ "▁L P",
+ "▁ LP",
+ "op tera",
+ "opt era",
+ "opter a",
+ "▁e star",
+ "▁est ar",
+ "▁es tar",
+ "▁esta r",
+ "▁зна чи",
+ "с мо",
+ "ous es",
+ "ouse s",
+ "o uses",
+ "eng ono",
+ "engo no",
+ "▁W PF",
+ "pub lish",
+ "▁t eor",
+ "▁te or",
+ "el if",
+ "eli f",
+ "▁e rg",
+ "▁er g",
+ "▁ erg",
+ "▁separ ation",
+ "Pa n",
+ "P an",
+ "▁Or chestra",
+ "Pe ter",
+ "P eter",
+ "bound s",
+ "b ounds",
+ "▁Shakespe are",
+ "▁cant ante",
+ "▁d emi",
+ "▁de mi",
+ "▁dem i",
+ "▁Pop ular",
+ "ф р",
+ "ar ring",
+ "arr ing",
+ "ци н",
+ "ц ин",
+ "▁И с",
+ "vo n",
+ "v on",
+ "▁subst itution",
+ "▁lí nea",
+ "\\}$ .",
+ "\\} $.",
+ "\\ }$.",
+ "com o",
+ "co mo",
+ "c omo",
+ "▁ва ж",
+ "wa gen",
+ "w agen",
+ "▁rare ly",
+ "▁period s",
+ "▁peri ods",
+ "gl ob",
+ "g lob",
+ "▁F rid",
+ "▁Fr id",
+ "▁Fri d",
+ "▁T err",
+ "▁Te rr",
+ "▁Ter r",
+ "▁Re lease",
+ "▁ Release",
+ "Brain z",
+ "▁гра ф",
+ "▁ граф",
+ "DI S",
+ "D IS",
+ "compat ible",
+ "▁po č",
+ "LI N",
+ "L IN",
+ "▁K ällor",
+ "▁A rizona",
+ "pp y",
+ "p py",
+ "Se q",
+ "S eq",
+ "▁A in",
+ "▁T ourn",
+ "▁To urn",
+ "▁Tour n",
+ "br ow",
+ "bro w",
+ "b row",
+ "▁K ör",
+ "▁Kö r",
+ "▁a sh",
+ "▁as h",
+ "▁ ash",
+ "ogene ous",
+ "▁dia lect",
+ "▁насе ља",
+ "mysql i",
+ "mysq li",
+ "цо в",
+ "ц ов",
+ "▁f lor",
+ "▁fl or",
+ "▁flo r",
+ "▁ф ло",
+ "IA B",
+ "I AB",
+ "▁With in",
+ "▁Wit hin",
+ "^ (",
+ "▁b ois",
+ "▁bo is",
+ "▁t ank",
+ "▁tan k",
+ "▁aff ili",
+ "▁h ijo",
+ "▁hij o",
+ "▁hi jo",
+ "▁K ate",
+ "▁Kat e",
+ "▁Ka te",
+ "▁Ver l",
+ "▁Ve rl",
+ "▁M iami",
+ "▁Mi ami",
+ "▁type script",
+ "▁types cript",
+ "њ у",
+ "▁V ern",
+ "▁Ver n",
+ "▁Ve rn",
+ "▁ви со",
+ "ie mann",
+ "iem ann",
+ "i emann",
+ "▁co verage",
+ "▁cover age",
+ "br ie",
+ "b rie",
+ "▁Start ing",
+ "▁Star ting",
+ "num py",
+ "▁J enkins",
+ "▁Jen kins",
+ "▁k ét",
+ "▁ké t",
+ "▁g rup",
+ "▁gr up",
+ "▁gru p",
+ "▁S cient",
+ "▁Sc ient",
+ "▁Sci ent",
+ "▁inter rupt",
+ "▁b lob",
+ "▁bl ob",
+ "▁blo b",
+ "▁ blob",
+ "ug el",
+ "uge l",
+ "u gel",
+ "▁Or th",
+ "▁Ort h",
+ "ab ama",
+ "aba ma",
+ "▁B apt",
+ "▁Ba pt",
+ "ow nik",
+ "own ik",
+ "▁бы ть",
+ "▁Jul ius",
+ "▁Ju lius",
+ "▁Juli us",
+ "▁П рез",
+ "▁Пре з",
+ "▁subst itute",
+ "support ed",
+ "supp orted",
+ "ch y",
+ "c hy",
+ "egy zetek",
+ "▁Per formance",
+ "▁Perform ance",
+ "less ly",
+ "Con structor",
+ "▁ext ending",
+ "▁extend ing",
+ "▁Mus lim",
+ "Over flow",
+ "▁J enn",
+ "▁Je nn",
+ "▁Jen n",
+ "▁produ z",
+ "▁prod uz",
+ "мі ї",
+ "м ії",
+ "▁país es",
+ "▁e ux",
+ "▁eu x",
+ "▁f ate",
+ "▁fa te",
+ "▁fat e",
+ "ol oge",
+ "olog e",
+ "olo ge",
+ "у к",
+ "▁wo bei",
+ "▁wob ei",
+ "▁S achsen",
+ "▁Sach sen",
+ "▁са йт",
+ "▁сай т",
+ "Mod els",
+ "Model s",
+ "Mode ls",
+ "▁F ast",
+ "▁Fa st",
+ "bes ondere",
+ "▁F R",
+ "▁ FR",
+ "▁a con",
+ "▁ac on",
+ "▁ acon",
+ "▁Den kmal",
+ "▁an ch",
+ "▁anc h",
+ "▁ anch",
+ "▁públic o",
+ "▁T as",
+ "▁Ta s",
+ "▁c and",
+ "▁can d",
+ "▁ca nd",
+ "▁pa ździer",
+ "▁М он",
+ "▁Мо н",
+ "▁vers us",
+ "ru t",
+ "r ut",
+ "G T",
+ "▁insert ing",
+ "▁inser ting",
+ "▁can ad",
+ "▁ca nad",
+ "є м",
+ "▁M etro",
+ "▁Met ro",
+ "▁Herz og",
+ "Ign ore",
+ "▁decre ase",
+ "▁п ун",
+ "▁пу н",
+ "▁F ischer",
+ "▁M all",
+ "▁Ma ll",
+ "▁Mal l",
+ "▁n örd",
+ "io stream",
+ "i ostream",
+ "▁Lux emb",
+ "pay load",
+ "▁Ze itung",
+ "▁Zeit ung",
+ "▁mod ifying",
+ "▁modify ing",
+ "▁C her",
+ "▁Ch er",
+ "▁Che r",
+ "▁Lu ci",
+ "▁Luc i",
+ "n x",
+ "▁lo ose",
+ "▁top ics",
+ "▁topic s",
+ "▁var ied",
+ "▁vari ed",
+ "▁va ried",
+ "▁p g",
+ "▁ pg",
+ "aj es",
+ "aje s",
+ "a jes",
+ "um m",
+ "u mm",
+ "View s",
+ "▁B eau",
+ "▁Be au",
+ "MA P",
+ "M AP",
+ "ip eline",
+ "ipe line",
+ "▁Inter est",
+ "ar ith",
+ "ari th",
+ "▁seg ún",
+ "▁Geme ins",
+ "▁Att ribute",
+ "▁ Attribute",
+ "comm unity",
+ "▁цент р",
+ "▁kil ometer",
+ "▁kilomet er",
+ "▁kilom eter",
+ "▁é conom",
+ "▁éc onom",
+ "lar ation",
+ "▁к ъ",
+ "▁car riage",
+ "▁carri age",
+ "▁L ane",
+ "▁La ne",
+ "▁Lan e",
+ "▁не об",
+ "ku r",
+ "k ur",
+ "▁A F",
+ "▁ AF",
+ "IN TER",
+ "INT ER",
+ ")) $",
+ ") )$",
+ "▁be ide",
+ "▁bei de",
+ "dest ination",
+ "▁font s",
+ "▁fon ts",
+ "▁ fonts",
+ "append Child",
+ "▁M AR",
+ "▁MA R",
+ "▁g ay",
+ "▁ga y",
+ "mi l",
+ "m il",
+ "le sh",
+ "les h",
+ "l esh",
+ "è t",
+ "▁W ang",
+ "▁Wa ng",
+ "▁Y ears",
+ "▁Year s",
+ "▁Ye ars",
+ "▁S ymbol",
+ "▁Sym bol",
+ "▁ Symbol",
+ "Li ve",
+ "L ive",
+ "qu ency",
+ "▁U sers",
+ "▁Use rs",
+ "▁User s",
+ "▁Us ers",
+ "▁ Users",
+ "▁Un icode",
+ "▁S au",
+ "▁Sa u",
+ "▁t ons",
+ "▁to ns",
+ "▁ton s",
+ "▁ tons",
+ "▁Н і",
+ "▁кра ї",
+ "▁ краї",
+ "AX I",
+ "▁P ick",
+ "▁Pi ck",
+ "▁Pic k",
+ "A I",
+ "▁h ath",
+ "▁ha th",
+ "▁hat h",
+ "▁a inda",
+ "▁ain da",
+ "▁p apa",
+ "▁pa pa",
+ "▁pap a",
+ "▁C enso",
+ "▁B ald",
+ "▁Ba ld",
+ "▁Bal d",
+ "▁Насе ље",
+ "▁sim ulations",
+ "▁simulation s",
+ "▁j aren",
+ "▁ja ren",
+ "▁jar en",
+ "▁inher ited",
+ "▁inherit ed",
+ "▁то й",
+ "▁ той",
+ "▁fe els",
+ "▁feel s",
+ "▁fee ls",
+ "ress ion",
+ "r ession",
+ "▁o któber",
+ "bi d",
+ "b id",
+ "ás i",
+ "á si",
+ "▁m uss",
+ "▁mus s",
+ "▁mu ss",
+ "vent ory",
+ "▁me ist",
+ "▁b ore",
+ "▁bo re",
+ "▁bor e",
+ "▁sl ider",
+ "▁slide r",
+ "▁sli der",
+ "▁ slider",
+ "де ли",
+ "\\ ;",
+ "▁extra cted",
+ "▁extract ed",
+ "ку р",
+ "к ур",
+ "Ed ge",
+ "▁per f",
+ "▁pe rf",
+ "▁Brig ade",
+ "▁гра д",
+ "▁ град",
+ "ie nie",
+ "ien ie",
+ "i enie",
+ "▁N orden",
+ "▁Nor den",
+ "▁Nord en",
+ "▁c ancer",
+ "▁can cer",
+ "\" /",
+ "C ur",
+ "▁С ере",
+ "▁Се ре",
+ "▁Сер е",
+ "▁liqu id",
+ "str ucture",
+ "struct ure",
+ "▁cho osing",
+ "▁Per l",
+ "▁Pe rl",
+ "Si de",
+ "S ide",
+ "ü s",
+ "ри тор",
+ "рито р",
+ "рит ор",
+ "▁k ost",
+ "▁ko st",
+ "▁pa ckets",
+ "▁pack ets",
+ "▁packet s",
+ "▁кото рого",
+ "▁Com un",
+ "▁Co mun",
+ "▁f ingers",
+ "▁fin gers",
+ "▁finger s",
+ "ográ fica",
+ "> :",
+ "▁champion nat",
+ "▁bl ieb",
+ "▁S itu",
+ "▁Si tu",
+ "▁Sit u",
+ "▁su ic",
+ "an dis",
+ "and is",
+ "Fr e",
+ "F re",
+ "▁C onc",
+ "▁Con c",
+ "▁Co nc",
+ "▁re public",
+ "▁rep ublic",
+ "▁repub lic",
+ "▁ar med",
+ "▁arm ed",
+ "▁h ell",
+ "▁he ll",
+ "▁hel l",
+ "▁ hell",
+ "▁h ög",
+ "▁hö g",
+ "rag ma",
+ "▁en se",
+ "▁ens e",
+ "▁ ense",
+ "▁ac res",
+ "▁В ід",
+ "▁Ві д",
+ "▁Re form",
+ "▁Ref orm",
+ "Main Activity",
+ "ke eper",
+ "keep er",
+ "kee per",
+ "er b",
+ "e rb",
+ "▁mon aster",
+ "sub subsection",
+ "▁Ди в",
+ "▁cre ature",
+ "▁indic ating",
+ "▁url s",
+ "▁ur ls",
+ "▁ urls",
+ "▁k ein",
+ "▁ke in",
+ "об раз",
+ "обра з",
+ "pi ck",
+ "pic k",
+ "p ick",
+ "▁Ad mir",
+ "▁old est",
+ "▁ol dest",
+ "▁m uz",
+ "▁mu z",
+ "▁contra diction",
+ "▁contrad iction",
+ "▁contradict ion",
+ "▁prob abil",
+ "illi ant",
+ "▁p av",
+ "▁pa v",
+ "▁pa pel",
+ "▁pap el",
+ "ub s",
+ "u bs",
+ "▁ж ена",
+ "▁же на",
+ "▁жен а",
+ "▁ жена",
+ "AM L",
+ "A ML",
+ "▁re cip",
+ "▁rec ip",
+ "▁reci p",
+ "▁C OL",
+ "▁CO L",
+ "▁ COL",
+ "ad ded",
+ "add ed",
+ "▁cl ue",
+ "▁Uk raine",
+ "▁Ukrain e",
+ "▁jel ent",
+ "че нь",
+ "чен ь",
+ "ч ень",
+ "▁mathemat ics",
+ "Ac cept",
+ "▁с от",
+ "▁со т",
+ "▁се вер",
+ "▁isol ated",
+ "▁по я",
+ "w ür",
+ "Ro uter",
+ "Route r",
+ "Rout er",
+ "R outer",
+ "CA T",
+ "C AT",
+ "rg b",
+ "r gb",
+ "▁L ov",
+ "▁Lo v",
+ "mu table",
+ "mut able",
+ "m utable",
+ "▁W es",
+ "▁We s",
+ "▁Ital ien",
+ "Dra g",
+ "Dr ag",
+ "D rag",
+ "en ium",
+ "eni um",
+ "at ting",
+ "att ing",
+ "atti ng",
+ "tc p",
+ "t cp",
+ "▁erfolg te",
+ "▁Be it",
+ "▁Bei t",
+ "га то",
+ "▁System s",
+ "▁Syst ems",
+ "▁re serve",
+ "▁res erve",
+ "er ee",
+ "ere e",
+ "e ree",
+ "▁Па ри",
+ "▁Пар и",
+ "▁з али",
+ "▁за ли",
+ "▁re nt",
+ "▁r ent",
+ "▁ren t",
+ "▁ rent",
+ "▁s unt",
+ "▁su nt",
+ "▁sun t",
+ "▁G irls",
+ "▁Girl s",
+ "▁Gir ls",
+ "▁Er nest",
+ "▁Ern est",
+ "▁f its",
+ "▁fi ts",
+ "▁fit s",
+ "▁op pon",
+ "▁opp on",
+ "▁живе ло",
+ "▁av aient",
+ "▁Flor ence",
+ "▁Flo rence",
+ "▁чи сле",
+ "▁eng ines",
+ "▁engine s",
+ "D ynamic",
+ "▁stycz nia",
+ "▁b ias",
+ "▁bi as",
+ "▁Ex change",
+ "ди й",
+ "▁histor iques",
+ "▁historique s",
+ "▁H ä",
+ "ho d",
+ "h od",
+ "▁w ł",
+ "sch ap",
+ "▁l ac",
+ "▁la c",
+ "▁ lac",
+ "▁F oi",
+ "▁Fo i",
+ "▁d well",
+ "▁dw ell",
+ "▁Unter nehmen",
+ "UR N",
+ "▁kilomet res",
+ "▁Одна ко",
+ "к ли",
+ "▁S ri",
+ "▁Sr i",
+ "Gr oups",
+ "Group s",
+ "min d",
+ "mi nd",
+ "m ind",
+ "os lov",
+ "fer n",
+ "fe rn",
+ "f ern",
+ "eg u",
+ "e gu",
+ "abel ed",
+ "abe led",
+ "F iddle",
+ "▁Cent ury",
+ "/ -",
+ "▁J egyzetek",
+ "He n",
+ "H en",
+ "ens emble",
+ "▁G ut",
+ "▁Gu t",
+ "_{ {\\",
+ "_ {{\\",
+ "▁ran king",
+ "▁rank ing",
+ "+ $",
+ "ал а",
+ "а ла",
+ "▁# {",
+ "▁ #{",
+ "im ientos",
+ "imiento s",
+ "ach im",
+ "ac him",
+ "achi m",
+ "ri des",
+ "ride s",
+ "rid es",
+ "r ides",
+ "▁K laus",
+ "▁Kl aus",
+ "▁int end",
+ "▁inte nd",
+ "▁inten d",
+ "▁Kent ucky",
+ "ci pe",
+ "cip e",
+ "c ipe",
+ "▁D ienst",
+ "▁Di enst",
+ "▁situ ated",
+ "▁pó ź",
+ "▁s crit",
+ "▁sc rit",
+ "▁scr it",
+ "▁scri t",
+ "cl ip",
+ "cli p",
+ "c lip",
+ "не т",
+ "н ет",
+ "ta bles",
+ "table s",
+ "tab les",
+ "t ables",
+ "▁N ied",
+ "▁Ni ed",
+ "▁Nie d",
+ "▁Mc K",
+ "▁pow st",
+ "▁kun nen",
+ "▁Ev ans",
+ "▁Eva ns",
+ "ж ды",
+ "ва ть",
+ "ват ь",
+ "uch ar",
+ "uc har",
+ "ucha r",
+ "u char",
+ "▁res idents",
+ "▁resid ents",
+ "▁resident s",
+ "ia k",
+ "i ak",
+ "▁Re sol",
+ "▁Res ol",
+ "▁ Resol",
+ "▁ve ces",
+ "▁vec es",
+ "▁satisf ying",
+ "▁satisfy ing",
+ "IN F",
+ "I NF",
+ "▁с ин",
+ "▁си н",
+ "▁cross ing",
+ "ib en",
+ "ibe n",
+ "i ben",
+ "▁ши ро",
+ "pt o",
+ "p to",
+ "IL L",
+ "I LL",
+ "▁ро ль",
+ "▁a ktiv",
+ "▁akt iv",
+ "▁обра щения",
+ "Wik ispecies",
+ "▁Hö he",
+ "cr o",
+ "c ro",
+ "══ ══",
+ "al tra",
+ "alt ra",
+ "▁FI LE",
+ "▁ FILE",
+ "▁u ps",
+ "▁up s",
+ "▁ ups",
+ "▁al location",
+ "▁all ocation",
+ "▁alloc ation",
+ "▁allo cation",
+ "Mich ael",
+ "▁acknow led",
+ "Lin ux",
+ "▁met ros",
+ "▁ metros",
+ "tt e",
+ "t te",
+ "af en",
+ "a fen",
+ "▁x code",
+ "▁тра ди",
+ "spe cies",
+ "spec ies",
+ "s pecies",
+ "▁inj ury",
+ "▁са мы",
+ "▁сам ы",
+ "▁l attice",
+ "M aterial",
+ "and enburg",
+ "anden burg",
+ "▁huvud staden",
+ "st ory",
+ "sto ry",
+ "stor y",
+ "▁var ying",
+ "▁vary ing",
+ "▁kö vet",
+ "▁Росси йской",
+ "ir se",
+ "irs e",
+ "▁d rum",
+ "▁dr um",
+ "▁dru m",
+ "Pr essed",
+ "Press ed",
+ "Pres sed",
+ "La r",
+ "L ar",
+ "▁A gu",
+ "▁Ag u",
+ "▁w eil",
+ "▁we il",
+ "▁comm ence",
+ "▁Seg ún",
+ "Gest ure",
+ "Sh ape",
+ "S hape",
+ "▁V ors",
+ "▁Vo rs",
+ "▁Vor s",
+ "▁succ ès",
+ "▁correct ed",
+ "▁corre cted",
+ "▁corr ected",
+ "K ar",
+ "▁cr uel",
+ "▁cru el",
+ "▁polit ico",
+ "▁Schrift steller",
+ "▁ris ult",
+ "et u",
+ "e tu",
+ "arch iv",
+ "▁gén ero",
+ "▁gé nero",
+ "▁L ü",
+ "▁tri umph",
+ "OR S",
+ "O RS",
+ "L u",
+ "▁person nel",
+ "▁personn el",
+ "▁personne l",
+ "▁H ills",
+ "▁Hill s",
+ "▁Hil ls",
+ "as set",
+ "ass et",
+ "asse t",
+ "do min",
+ "dom in",
+ "d omin",
+ "Rece ive",
+ "▁O ak",
+ "▁K no",
+ "▁Kn o",
+ "▁The ory",
+ "ir ie",
+ "iri e",
+ "i rie",
+ "ow an",
+ "owa n",
+ "o wan",
+ "▁est ava",
+ "▁esta va",
+ "▁exec utes",
+ "▁execute s",
+ "▁execut es",
+ "й т",
+ "óp ez",
+ "ó pez",
+ "по ло",
+ "пол о",
+ "п оло",
+ "ét ica",
+ "▁назва ние",
+ "▁conver ges",
+ "▁not re",
+ "▁no tre",
+ "▁pop ulated",
+ "▁popula ted",
+ "▁popul ated",
+ "▁populate d",
+ "▁mov ements",
+ "▁move ments",
+ "▁movement s",
+ "▁statist ical",
+ "▁Zwe iten",
+ "qu in",
+ "qui n",
+ "▁import antes",
+ "▁important es",
+ "▁importante s",
+ "▁k lein",
+ "▁kle in",
+ "▁kl ein",
+ "▁Seg unda",
+ "schließ end",
+ "Fail ure",
+ "na r",
+ "n ar",
+ "da g",
+ "d ag",
+ "▁ru olo",
+ "▁f iction",
+ "▁fi ction",
+ "▁fic tion",
+ "▁fict ion",
+ "▁исполь зу",
+ "▁cr isis",
+ "▁Get ting",
+ ", %",
+ "▁ар мии",
+ "▁cam pus",
+ "▁camp us",
+ "▁fo oter",
+ "▁foot er",
+ "▁foo ter",
+ "▁ footer",
+ "▁d ías",
+ "▁día s",
+ "▁dí as",
+ "ба н",
+ "б ан",
+ "▁liber ty",
+ "▁libert y",
+ "▁g h",
+ "▁ gh",
+ "▁cham ber",
+ "▁district s",
+ "▁exc ited",
+ "▁can ción",
+ "ter o",
+ "te ro",
+ "t ero",
+ "▁Work ing",
+ "▁Wor king",
+ "▁czę ści",
+ "ль ный",
+ "▁f orum",
+ "▁for um",
+ "▁fo rum",
+ "▁ forum",
+ "▁E he",
+ "▁ка та",
+ "▁ ката",
+ "it ations",
+ "itation s",
+ "itat ions",
+ "To ols",
+ "Tool s",
+ "T ools",
+ "ach iv",
+ "achi v",
+ "▁c res",
+ "▁cre s",
+ "▁cr es",
+ "as to",
+ "ast o",
+ "a sto",
+ "▁re ver",
+ "▁r ever",
+ "▁rev er",
+ "▁reve r",
+ "▁n azionale",
+ "▁naz ionale",
+ "▁do ors",
+ "▁door s",
+ "▁N ancy",
+ "▁Nan cy",
+ "▁is lands",
+ "▁island s",
+ "Im p",
+ "I mp",
+ "▁Ch air",
+ "▁Cha ir",
+ "▁v orm",
+ "▁vo rm",
+ "▁vor m",
+ "se in",
+ "s ein",
+ "▁до ку",
+ "er set",
+ "ers et",
+ "▁tät ig",
+ "▁K rit",
+ "▁Kr it",
+ "▁п я",
+ "▁cons ervation",
+ "▁conserv ation",
+ "▁Part ido",
+ "▁Parti do",
+ "min ipage",
+ "Valid ator",
+ "▁rec overy",
+ "▁recover y",
+ "▁NA SA",
+ "▁NAS A",
+ "▁br east",
+ "▁bre ast",
+ "il ty",
+ "ilt y",
+ "an aly",
+ "ana ly",
+ "anal y",
+ "el ines",
+ "eli nes",
+ "eline s",
+ "elin es",
+ "e lines",
+ "▁S aturday",
+ "em ark",
+ "e mark",
+ "ce j",
+ "c ej",
+ "Ze ro",
+ "Z ero",
+ "▁Tur ner",
+ "▁Turn er",
+ "sec ure",
+ "Ex ists",
+ "▁R ick",
+ "▁Ric k",
+ "▁Ri ck",
+ "ev alu",
+ "eval u",
+ "e valu",
+ "ct rl",
+ "ctr l",
+ "c trl",
+ "▁com pression",
+ "▁comp ression",
+ "▁compr ession",
+ "▁compress ion",
+ "▁C URL",
+ "text color",
+ ")\\ ,",
+ ") \\,",
+ "long rightarrow",
+ "▁Fern seh",
+ "▁ Fernseh",
+ "ic ha",
+ "ich a",
+ "i cha",
+ "▁l oi",
+ "▁lo i",
+ "▁О те",
+ "▁От е",
+ "▁c ave",
+ "▁ca ve",
+ "▁cav e",
+ "▁do zen",
+ "▁expla ining",
+ "▁expl aining",
+ "▁explain ing",
+ "▁in nov",
+ "▁inn ov",
+ "▁Nich olas",
+ "▁dia meter",
+ "▁diam eter",
+ "▁M arian",
+ "▁Mar ian",
+ "▁Ma rian",
+ "▁Maria n",
+ "▁Mari an",
+ "▁f ires",
+ "▁fire s",
+ "▁fi res",
+ "▁fir es",
+ "▁art ifact",
+ "▁ artifact",
+ "▁Par ker",
+ "▁Park er",
+ "▁B und",
+ "▁Bu nd",
+ "▁Bun d",
+ "▁v erte",
+ "▁ver te",
+ "▁vert e",
+ "▁ verte",
+ "▁tal ent",
+ "▁tale nt",
+ "▁Lu cas",
+ "▁Luc as",
+ "re verse",
+ "▁folg enden",
+ "▁S ah",
+ "▁Sa h",
+ "ject ions",
+ "je ctions",
+ "jection s",
+ "▁inve ce",
+ "▁cost itu",
+ "▁s sl",
+ "▁ss l",
+ "▁ ssl",
+ "}} ^",
+ "} }^",
+ "▁viol ent",
+ "▁s pos",
+ "▁sp os",
+ "▁spo s",
+ "Ro ut",
+ "R out",
+ "jd k",
+ "j dk",
+ "▁за ме",
+ "▁f urent",
+ "▁fur ent",
+ "▁fu rent",
+ "an dal",
+ "and al",
+ "anda l",
+ "H om",
+ "▁Sen ior",
+ "▁p ounds",
+ "▁Disc ogs",
+ "▁з е",
+ "▁ зе",
+ "'} [",
+ "' }[",
+ "▁Napole on",
+ "ordin ates",
+ "ordinate s",
+ "à n",
+ "▁k urz",
+ "▁kur z",
+ "▁v ere",
+ "▁ver e",
+ "▁ve re",
+ "▁ vere",
+ "▁re use",
+ "▁Г ен",
+ "▁Ге н",
+ "▁S yst",
+ "▁Sy st",
+ "▁disapp eared",
+ "▁disappear ed",
+ "▁W atch",
+ "▁Wat ch",
+ "▁ Watch",
+ "bibli othek",
+ "▁кор пу",
+ "▁C s",
+ "▁} `",
+ "▁ }`",
+ "▁r ör",
+ "▁де ла",
+ "▁ дела",
+ "V B",
+ "▁calcul us",
+ "▁calc ulus",
+ "ро да",
+ "род а",
+ "▁jud gment",
+ "at ile",
+ "ati le",
+ "▁long ue",
+ "▁lon gue",
+ "▁H us",
+ "▁Hu s",
+ "J ac",
+ "}} )",
+ "} })",
+ "RI PT",
+ "IAB ot",
+ "▁ap ós",
+ "▁a ston",
+ "▁as ton",
+ "▁ast on",
+ "Web achiv",
+ "▁URL s",
+ "▁co at",
+ "▁э коно",
+ "▁l ear",
+ "▁le ar",
+ "▁ lear",
+ "ext ensions",
+ "extension s",
+ "▁Class ic",
+ "T I",
+ "▁T age",
+ "▁Tag e",
+ "▁Ta ge",
+ "▁l á",
+ "▁ lá",
+ "▁s emb",
+ "▁se mb",
+ "▁sem b",
+ "▁développ ement",
+ "IS TS",
+ "IST S",
+ "▁sol ves",
+ "▁solve s",
+ ",\\ ,",
+ ", \\,",
+ "▁чем пі",
+ "ord inary",
+ "ordin ary",
+ "▁B av",
+ "▁Ba v",
+ "▁much os",
+ "▁mu chos",
+ "▁mucho s",
+ "S elf",
+ "▁Ма й",
+ "▁D iet",
+ "▁Die t",
+ "▁Di et",
+ "▁necess ity",
+ "ві д",
+ "в ід",
+ "▁m ano",
+ "▁ma no",
+ "▁man o",
+ "▁С р",
+ "▁car re",
+ "▁Cam era",
+ "▁Camer a",
+ "▁ Camera",
+ "▁N arod",
+ "▁Na rod",
+ "▁Nar od",
+ "▁Ph one",
+ "▁Pho ne",
+ "▁ Phone",
+ "▁pol ym",
+ "▁poly m",
+ "im ore",
+ "imo re",
+ "i more",
+ "is Empty",
+ "▁Hou ston",
+ "▁Re ce",
+ "▁Rec e",
+ "▁ Rece",
+ "▁present ation",
+ "▁pres entation",
+ "▁presenta tion",
+ "▁ presentation",
+ "ни ципа",
+ "ници па",
+ "▁D b",
+ "▁ Db",
+ "▁conf ident",
+ "▁} {",
+ "▁ }{",
+ "▁bul let",
+ "▁ bullet",
+ "▁{ },",
+ "▁{} ,",
+ "AN GE",
+ "ANG E",
+ "▁No tre",
+ "▁Not re",
+ "ch in",
+ "chi n",
+ "c hin",
+ "▁Dr agon",
+ "▁Drag on",
+ "▁Dra gon",
+ "er ca",
+ "erc a",
+ "ia li",
+ "ial i",
+ "i ali",
+ "▁as set",
+ "▁ass et",
+ "▁asse t",
+ "▁ asset",
+ "▁mu ito",
+ "▁muit o",
+ "▁deep ly",
+ "▁rest riction",
+ "▁restrict ion",
+ "▁com merce",
+ "▁commer ce",
+ "▁ commerce",
+ "▁B omb",
+ "▁Bo mb",
+ "▁Bom b",
+ "c aught",
+ "q q",
+ "▁A rag",
+ "▁Ar ag",
+ "▁Ara g",
+ "▁не мец",
+ "▁Anal ysis",
+ "▁člán ku",
+ "▁b aby",
+ "▁ba by",
+ "▁e chter",
+ "▁о дного",
+ "▁од ного",
+ "▁одно го",
+ "же на",
+ "жен а",
+ "ж ена",
+ "▁white space",
+ "▁whites pace",
+ "ç u",
+ "LI ST",
+ "L IST",
+ "fr ique",
+ "fri que",
+ "f rique",
+ "▁v arias",
+ "▁var ias",
+ "▁vari as",
+ "▁va rias",
+ "▁W it",
+ "▁Wi t",
+ "▁Lic encia",
+ "Ex it",
+ "▁sie rp",
+ "▁sier p",
+ "▁ass emb",
+ "▁asse mb",
+ "▁split ting",
+ "▁spl itting",
+ "▁pa lace",
+ "▁pal ace",
+ "▁b locked",
+ "▁block ed",
+ "▁bound aries",
+ "▁iter ations",
+ "▁iteration s",
+ "▁Rot ten",
+ "▁Ver kehr",
+ "▁we er",
+ "Test s",
+ "T ests",
+ "if ting",
+ "ift ing",
+ "▁reg ul",
+ "▁pers ist",
+ "▁Sol ution",
+ "p b",
+ "▁col lapse",
+ "▁ collapse",
+ "▁arr ested",
+ "▁arrest ed",
+ "▁pred icate",
+ "▁Z one",
+ "▁Zo ne",
+ "▁ Zone",
+ "▁in gen",
+ "▁ing en",
+ "▁ ingen",
+ "zá lez",
+ "▁b anks",
+ "▁bank s",
+ "▁ban ks",
+ "pl ant",
+ "plan t",
+ "pla nt",
+ "p lant",
+ "▁N ella",
+ "▁Ne lla",
+ "▁Nel la",
+ "▁Nell a",
+ "▁б ан",
+ "▁ба н",
+ "▁ бан",
+ "▁S now",
+ "▁Sn ow",
+ "▁Kre uz",
+ "í cio",
+ "▁en ters",
+ "▁ent ers",
+ "▁enter s",
+ "▁ex pose",
+ "▁exp ose",
+ "▁expos e",
+ "č i",
+ "ши е",
+ "Qu al",
+ "Q ual",
+ "▁lands cape",
+ "▁пода цима",
+ "ma i",
+ "m ai",
+ "st ag",
+ "sta g",
+ "s tag",
+ "ова ний",
+ "DE F",
+ "D EF",
+ "[] {",
+ "[ ]{",
+ "▁derni ère",
+ "ic ut",
+ "i cut",
+ "▁X ml",
+ "▁ Xml",
+ "▁sub group",
+ "▁Pol sce",
+ "▁W arning",
+ "▁War ning",
+ "▁ Warning",
+ "▁veh icles",
+ "▁vehicle s",
+ "io t",
+ "i ot",
+ "▁d ll",
+ "▁ dll",
+ "ro nt",
+ "ron t",
+ "r ont",
+ "▁Lou ise",
+ "▁Louis e",
+ "▁a ra",
+ "▁ar a",
+ "▁ ara",
+ "▁S cala",
+ "▁Sc ala",
+ "▁canon ical",
+ "▁pl acing",
+ "▁pla cing",
+ "ER Y",
+ "E RY",
+ "▁J ag",
+ "▁Ja g",
+ "▁v irus",
+ "▁vi rus",
+ "▁vir us",
+ "em u",
+ "e mu",
+ "▁} );\r",
+ "▁}); \r",
+ "▁}) ;\r",
+ "▁м м",
+ "▁Tr ying",
+ "▁Try ing",
+ "▁Lex ikon",
+ "ab ord",
+ "abor d",
+ "▁exped ition",
+ "▁demand ed",
+ "▁demande d",
+ "Z yg",
+ "le in",
+ "lei n",
+ "l ein",
+ "▁verw endet",
+ "ри на",
+ "рин а",
+ "wo l",
+ "w ol",
+ "▁p ivot",
+ "▁одна ко",
+ "▁propri et",
+ "▁a wards",
+ "▁aw ards",
+ "▁award s",
+ "to ut",
+ "t out",
+ "▁as sim",
+ "▁ass im",
+ "▁St orm",
+ "▁Sto rm",
+ "Li mit",
+ "L imit",
+ "el in",
+ "eli n",
+ "e lin",
+ "we alth",
+ "ue z",
+ "u ez",
+ "▁rap present",
+ "▁rappres ent",
+ "▁re sta",
+ "▁r esta",
+ "▁res ta",
+ "▁rest a",
+ "▁gegründ et",
+ "▁journal ist",
+ "is ie",
+ "isi e",
+ "▁fac ility",
+ "▁facil ity",
+ "il led",
+ "ill ed",
+ "ille d",
+ "ul k",
+ "▁P K",
+ "▁ PK",
+ "An chor",
+ "▁_ )",
+ "▁ _)",
+ "V F",
+ "LA B",
+ "L AB",
+ "▁n å",
+ "od os",
+ "odo s",
+ "▁bill ion",
+ "vir ti",
+ "virt i",
+ "▁Je ux",
+ "юз а",
+ "ю за",
+ "tom cat",
+ "▁ch arts",
+ "▁char ts",
+ "▁chart s",
+ "▁ charts",
+ "▁B undle",
+ "▁Bund le",
+ "▁ Bundle",
+ "▁l st",
+ "▁ls t",
+ "▁ lst",
+ "▁ex er",
+ "▁fem ales",
+ "▁female s",
+ "▁oblig ed",
+ "▁a by",
+ "▁ab y",
+ "▁ aby",
+ "roll ed",
+ "rol led",
+ "rolle d",
+ "dr i",
+ "d ri",
+ "▁S che",
+ "▁Sch e",
+ "▁Sc he",
+ "▁vess els",
+ "▁vessel s",
+ "IMA RY",
+ "IM ARY",
+ "▁reason ing",
+ "▁про те",
+ "▁пр оте",
+ "FI LES",
+ "FILE S",
+ "ver k",
+ "v erk",
+ "os os",
+ "oso s",
+ "▁ком му",
+ "ді ї",
+ "д ії",
+ "▁d d",
+ "▁ dd",
+ "▁со ответ",
+ "▁IO Exception",
+ "▁ IOException",
+ "sk ých",
+ "ský ch",
+ "▁C LI",
+ "▁CL I",
+ "▁ CLI",
+ "▁ ње",
+ "C M",
+ "T D",
+ "▁possib ilities",
+ "▁possibil ities",
+ "▁Com pos",
+ "▁Comp os",
+ "hal f",
+ "h alf",
+ "▁web page",
+ "▁s wing",
+ "▁sw ing",
+ "▁ swing",
+ "▁z as",
+ "▁za s",
+ "▁ zas",
+ "▁cy cl",
+ "le id",
+ "lei d",
+ "ist ica",
+ "istic a",
+ "isti ca",
+ "▁In sert",
+ "▁Ins ert",
+ "▁ Insert",
+ "▁Sw eden",
+ "▁want ing",
+ "▁ ال",
+ "▁e euw",
+ "▁Admin istr",
+ "▁War ren",
+ "▁b s",
+ "▁ bs",
+ "▁p am",
+ "▁pa m",
+ "an us",
+ "anu s",
+ "Dr a",
+ "D ra",
+ "ex pl",
+ "exp l",
+ "▁K ant",
+ "▁Kan t",
+ "▁Ka nt",
+ "▁Aust in",
+ "▁c sak",
+ "▁cs ak",
+ "▁the atre",
+ "▁compat ibility",
+ "ма тиче",
+ "мати че",
+ "set State",
+ "б ю",
+ "}{ |",
+ "} {|",
+ "▁D y",
+ "▁Zw ischen",
+ "Al t",
+ "A lt",
+ "CLA RE",
+ "st eps",
+ "ste ps",
+ "step s",
+ "▁L age",
+ "▁La ge",
+ "▁Lag e",
+ "▁M itt",
+ "▁Mit t",
+ "▁Mi tt",
+ "▁Dub lin",
+ "▁рабо ты",
+ "de ep",
+ "▁fl ows",
+ "▁flow s",
+ "▁flo ws",
+ "▁Pa lace",
+ "▁Pal ace",
+ "▁Pala ce",
+ "un ix",
+ "uni x",
+ "re fs",
+ "ref s",
+ "um ar",
+ "uma r",
+ "u mar",
+ "as et",
+ "ase t",
+ "a set",
+ "co v",
+ "c ov",
+ "▁p ing",
+ "▁pi ng",
+ "▁pin g",
+ "▁ ping",
+ "▁Saf ari",
+ "fl ug",
+ "flu g",
+ "cre ens",
+ "creen s",
+ "c reens",
+ "{ #",
+ "▁ре а",
+ "ad ors",
+ "ado rs",
+ "ador s",
+ "▁a mor",
+ "▁am or",
+ "uc e",
+ "u ce",
+ "de mic",
+ "dem ic",
+ "▁Nether lands",
+ "▁cluster s",
+ "▁clust ers",
+ "▁en for",
+ "▁enf or",
+ "mar ine",
+ "▁b ugs",
+ "▁bu gs",
+ "▁bug s",
+ "izz ata",
+ "izza ta",
+ "▁s cra",
+ "▁sc ra",
+ "▁scr a",
+ "Le s",
+ "L es",
+ "qu ick",
+ "qui ck",
+ "▁turn o",
+ "▁tur no",
+ "_ *",
+ "ер а",
+ "е ра",
+ "Gener ated",
+ "> [",
+ "▁e stre",
+ "▁est re",
+ "▁es tre",
+ "▁ estre",
+ "or de",
+ "ord e",
+ "▁v erg",
+ "▁ver g",
+ "▁ve rg",
+ "ро з",
+ "р оз",
+ "▁p au",
+ "▁pa u",
+ "in cludes",
+ "include s",
+ "includ es",
+ "as sa",
+ "ass a",
+ "ad ers",
+ "ader s",
+ "ade rs",
+ "a ders",
+ "▁Гер ма",
+ "▁est aven",
+ "▁esta ven",
+ "▁ear liest",
+ "▁res ultado",
+ "▁result ado",
+ "mu n",
+ "m un",
+ "▁pl ots",
+ "▁plot s",
+ "▁ plots",
+ "di n",
+ "d in",
+ "sort ed",
+ "s orted",
+ "▁p reference",
+ "▁pre ference",
+ "▁prefer ence",
+ "ri ó",
+ "r ió",
+ "ту ре",
+ "тур е",
+ "▁L igue",
+ "▁Li gue",
+ "▁Lig ue",
+ "▁за вер",
+ "▁зав ер",
+ "ph r",
+ "p hr",
+ "▁p ocket",
+ "▁po cket",
+ "▁poc ket",
+ "▁par l",
+ "▁pa rl",
+ "▁l ak",
+ "▁la k",
+ "▁ lak",
+ "▁p owie",
+ "▁po wie",
+ "▁pow ie",
+ "▁al tres",
+ "▁alt res",
+ "▁altre s",
+ "$} ;",
+ "$ };",
+ "pl ain",
+ "pla in",
+ "p lain",
+ "▁C red",
+ "▁Cre d",
+ "▁Cr ed",
+ "▁ Cred",
+ "it za",
+ "itz a",
+ "pe rp",
+ "per p",
+ "Gr een",
+ "Gre en",
+ "G reen",
+ "▁dev oted",
+ "product ion",
+ "produ ction",
+ "p roduction",
+ "work er",
+ "wor ker",
+ "el sen",
+ "els en",
+ "else n",
+ "▁v ern",
+ "▁ver n",
+ "▁ve rn",
+ "▁ vern",
+ "▁már cius",
+ "▁Conf eder",
+ "▁Liver pool",
+ "▁му зи",
+ "▁em ails",
+ "▁email s",
+ "▁dist ances",
+ "▁distance s",
+ "▁seg ments",
+ "▁segment s",
+ "▁a nth",
+ "▁an th",
+ "▁ant h",
+ "▁ anth",
+ "▁w rest",
+ "▁wr est",
+ "▁ho og",
+ "▁cin ema",
+ "rr or",
+ "r ror",
+ "▁geb oren",
+ "▁é c",
+ "▁ éc",
+ "Mar ker",
+ "Mark er",
+ "▁Com pet",
+ "▁Comp et",
+ "▁ли сто",
+ "all owed",
+ "allow ed",
+ "allo wed",
+ "vol ume",
+ "Esp agne",
+ "Z e",
+ "▁fix es",
+ "▁fi xes",
+ "▁r ond",
+ "▁ro nd",
+ "▁arrang ement",
+ "/ ~",
+ ".] (",
+ ". ](",
+ "▁For rások",
+ "▁weiter en",
+ "▁weit eren",
+ "▁weitere n",
+ "ex cel",
+ "▁з мі",
+ "▁mod erne",
+ "▁modern e",
+ "▁moder ne",
+ "Eng lish",
+ "▁Transfer markt",
+ "▁be aring",
+ "▁bear ing",
+ "▁cl eared",
+ "▁clear ed",
+ "▁cle ared",
+ "▁са м",
+ "▁di vs",
+ "▁div s",
+ "ć i",
+ "▁э той",
+ "▁это й",
+ "▁Ге ор",
+ "sc ene",
+ "sce ne",
+ "▁a ges",
+ "▁ag es",
+ "▁age s",
+ "▁ ages",
+ "GE N",
+ "G EN",
+ "rä n",
+ "r än",
+ "▁T oul",
+ "▁To ul",
+ "▁A bs",
+ "▁Ab s",
+ "j át",
+ "▁med iante",
+ "▁medi ante",
+ "▁median te",
+ "▁em pres",
+ "▁emp res",
+ "▁Emp loyee",
+ "▁ Employee",
+ "▁polynomial s",
+ "▁optim ize",
+ "▁вы ступа",
+ "fa re",
+ "far e",
+ "f are",
+ "ве й",
+ "в ей",
+ "x f",
+ "qu ez",
+ "que z",
+ "q uez",
+ "▁bo tan",
+ "▁bot an",
+ "▁def end",
+ "▁defe nd",
+ "▁Qu art",
+ "Mon t",
+ "Mo nt",
+ "M ont",
+ "v b",
+ "ti ck",
+ "t ick",
+ "W D",
+ "min e",
+ "mi ne",
+ "m ine",
+ "▁mod ific",
+ "not ification",
+ "▁d enn",
+ "▁de nn",
+ "▁den n",
+ "▁al go",
+ "▁alg o",
+ "▁S po",
+ "▁Sp o",
+ "▁m istrzost",
+ "/ :",
+ "▁a present",
+ "▁apr esent",
+ "▁п род",
+ "▁про д",
+ "▁пр од",
+ "Vol ume",
+ "sk ą",
+ "s ką",
+ "prote cted",
+ "▁Turk ish",
+ "az y",
+ "a zy",
+ "▁p ouv",
+ "▁po uv",
+ "▁pou v",
+ "▁perí odo",
+ "sk og",
+ "sko g",
+ "▁ent ropy",
+ "▁entr opy",
+ "ze d",
+ "z ed",
+ "то ри",
+ "тор и",
+ "▁l ij",
+ "▁li j",
+ "▁ lij",
+ "bo ards",
+ "board s",
+ "▁ста ту",
+ "Bo ol",
+ "B ool",
+ "▁pol ity",
+ "▁polit y",
+ "@\" ,",
+ "@ \",",
+ "▁рі к",
+ "né e",
+ "n ée",
+ "▁Z ug",
+ "▁Zu g",
+ "▁Un iti",
+ "▁Unit i",
+ "ém et",
+ "é met",
+ "at ience",
+ "ati ence",
+ "di men",
+ "dim en",
+ "d imen",
+ "▁St even",
+ "▁Ste ven",
+ "▁Steve n",
+ "H a",
+ "ACT ION",
+ "A CTION",
+ "▁w and",
+ "▁wa nd",
+ "▁ wand",
+ "▁Na var",
+ "▁Nav ar",
+ "▁сі чня",
+ "W atch",
+ "▁Stu art",
+ "▁z de",
+ "▁zd e",
+ "▁кон тро",
+ "data set",
+ "dat aset",
+ "datas et",
+ "y ó",
+ "▁B ush",
+ "▁Bu sh",
+ "▁Bus h",
+ "▁се бя",
+ "▁wor thy",
+ "▁worth y",
+ "▁B le",
+ "▁Bl e",
+ "▁pro por",
+ "▁prop or",
+ "▁Vill age",
+ "▁Villa ge",
+ "▁Vil lage",
+ "▁r y",
+ "▁ ry",
+ "▁v oit",
+ "▁vo it",
+ "▁копи я",
+ "▁z p",
+ "▁c ura",
+ "▁cu ra",
+ "▁cur a",
+ "▁H tml",
+ "▁ Html",
+ "▁Die ser",
+ "▁Dies er",
+ "▁Diese r",
+ "▁D ays",
+ "▁Da ys",
+ "▁Day s",
+ "▁ Days",
+ "on nes",
+ "onn es",
+ "onne s",
+ "▁ant igu",
+ "▁anti gu",
+ "▁Sta aten",
+ "▁Staat en",
+ "▁f aint",
+ "▁fa int",
+ "on gs",
+ "ong s",
+ "▁ö st",
+ "▁ öst",
+ "Re direct",
+ "Red irect",
+ "ел ь",
+ "е ль",
+ "at orial",
+ "ator ial",
+ "ato rial",
+ "atori al",
+ "▁b other",
+ "▁bo ther",
+ "▁both er",
+ "▁bot her",
+ "Edit Text",
+ "▁Gi ul",
+ "▁за во",
+ "▁зав о",
+ "▁pue blo",
+ "▁Mississ ippi",
+ "ja k",
+ "j ak",
+ "▁w ings",
+ "▁win gs",
+ "▁wing s",
+ "on c",
+ "o nc",
+ "ív el",
+ "í vel",
+ "ien cia",
+ "i encia",
+ "ent licht",
+ "entlich t",
+ "▁B TW",
+ "or nal",
+ "orn al",
+ "▁Ко ро",
+ "▁Кор о",
+ "▁од ним",
+ "▁sa lv",
+ "▁sal v",
+ "▁f inden",
+ "▁find en",
+ "▁fin den",
+ "ge o",
+ "▁а виа",
+ "att ung",
+ "vi v",
+ "v iv",
+ "▁L uther",
+ "▁Lu ther",
+ "▁об щи",
+ "▁Ro lle",
+ "▁Rol le",
+ "▁Roll e",
+ "▁Ab raham",
+ "▁cent ered",
+ "▁center ed",
+ "▁sl ash",
+ "▁sla sh",
+ "▁ slash",
+ "is at",
+ "isa t",
+ "em ann",
+ "ema nn",
+ "eman n",
+ "e mann",
+ "O s",
+ "пар та",
+ "▁P ablo",
+ "▁Pa blo",
+ "▁collabor ation",
+ "path s",
+ "pat hs",
+ "éd ition",
+ "▁view ed",
+ "▁vie wed",
+ "▁cons isted",
+ "▁consist ed",
+ "▁recover ed",
+ "▁Mex ican",
+ "▁F ix",
+ "▁sp ell",
+ "▁spe ll",
+ "▁spel l",
+ "Spec ial",
+ "Spe cial",
+ "▁С т",
+ "ess eur",
+ "esse ur",
+ "▁Украи ны",
+ "form er",
+ "for mer",
+ "▁ś w",
+ "▁z eros",
+ "▁ze ros",
+ "▁zero s",
+ "▁Stra ßen",
+ "▁Straße n",
+ "▁organ isation",
+ "▁organis ation",
+ "▁ organisation",
+ "üss en",
+ "üs sen",
+ "▁S ierra",
+ "▁Se ason",
+ "▁Sea son",
+ "▁vol ont",
+ "Bean Factory",
+ "▁помо щ",
+ "▁pres sing",
+ "▁press ing",
+ "▁equival ence",
+ "▁c att",
+ "▁ca tt",
+ "▁cat t",
+ "ic ity",
+ "ici ty",
+ "i city",
+ "▁accompl ished",
+ "▁accomp lished",
+ "▁accomplish ed",
+ "▁y o",
+ "▁ yo",
+ "▁s ic",
+ "▁si c",
+ "▁im ports",
+ "▁import s",
+ "▁accom mod",
+ "▁Port o",
+ "▁Por to",
+ "▁я ка",
+ "▁як а",
+ "▁lo an",
+ "ти ки",
+ "тик и",
+ "▁check out",
+ "▁ass ess",
+ "▁asse ss",
+ "▁Pop ulation",
+ "ur ent",
+ "ure nt",
+ "uren t",
+ "u rent",
+ "clo jure",
+ "▁Sant os",
+ "▁Santo s",
+ "▁inform áció",
+ "PO S",
+ "P OS",
+ "▁g are",
+ "▁gar e",
+ "▁ga re",
+ "▁k ick",
+ "▁ki ck",
+ "▁rad ical",
+ "▁radi cal",
+ "▁Pe ace",
+ "▁stream ing",
+ "▁stre aming",
+ "ca mp",
+ "cam p",
+ "c amp",
+ "zą t",
+ "го вор",
+ "гов ор",
+ "гово р",
+ "▁Reg ierung",
+ "▁proceed ed",
+ "f m",
+ "ле ны",
+ "лен ы",
+ "▁ear nest",
+ "▁Par ad",
+ "▁Pa rad",
+ "▁Para d",
+ "request s",
+ "▁R aum",
+ "▁Ra um",
+ "š č",
+ "▁polic ies",
+ "▁T ig",
+ "▁Ti g",
+ "▁s itt",
+ "▁si tt",
+ "▁sit t",
+ "▁Ener gy",
+ "▁pur ely",
+ "▁pure ly",
+ "▁H aut",
+ "▁Ha ut",
+ "▁Sp eed",
+ "▁Spe ed",
+ "▁ Speed",
+ "bi o",
+ "b io",
+ "▁o range",
+ "▁or ange",
+ "▁big gest",
+ "▁britann ique",
+ "▁No table",
+ "▁Not able",
+ "v u",
+ "ле нии",
+ "би н",
+ "б ин",
+ "▁N ash",
+ "▁Na sh",
+ "▁Nas h",
+ "ще ние",
+ "▁c iel",
+ "▁ci el",
+ "adém ie",
+ "▁гру дня",
+ "▁jo ue",
+ "▁jou e",
+ "▁v oted",
+ "▁vo ted",
+ "▁vot ed",
+ "▁vote d",
+ "ri co",
+ "ric o",
+ "r ico",
+ "▁го р",
+ "▁г ор",
+ "▁ гор",
+ "▁коман ду",
+ "it ivity",
+ "iti vity",
+ "▁щ е",
+ "▁ ще",
+ "▁de finite",
+ "▁defin ite",
+ "▁definit e",
+ "uro pa",
+ "urop a",
+ "!\" );",
+ "! \");",
+ "Default s",
+ "▁неко торы",
+ "éd ération",
+ "▁s illy",
+ "▁sil ly",
+ "▁talk ed",
+ "▁tal ked",
+ "re u",
+ "r eu",
+ "▁L omb",
+ "▁Lo mb",
+ "▁stat ue",
+ "кт а",
+ "к та",
+ "ю р",
+ "um ably",
+ "▁горо де",
+ "▁город е",
+ "▁R untime",
+ "▁Run time",
+ "▁ Runtime",
+ "▁di agn",
+ "▁diag n",
+ "▁dia gn",
+ "▁r etro",
+ "▁ret ro",
+ "▁retr o",
+ "▁Sver ige",
+ "▁in icial",
+ "▁inici al",
+ "ien za",
+ "i enza",
+ "▁fig lio",
+ "▁z og",
+ "▁zo g",
+ "▁re y",
+ "▁r ey",
+ "▁ rey",
+ "▁R und",
+ "▁Run d",
+ "▁Ru nd",
+ "т ный",
+ "▁ce ased",
+ "er no",
+ "ern o",
+ "▁e sa",
+ "▁es a",
+ "▁ esa",
+ "▁tr ouv",
+ "▁tro uv",
+ "▁trou v",
+ "▁Gemeinde n",
+ "▁Geme inden",
+ "▁comer cial",
+ "sk ap",
+ "ska p",
+ "s kap",
+ "en ario",
+ "ena rio",
+ "▁ju ris",
+ "▁jur is",
+ "T B",
+ "на ла",
+ "нал а",
+ "н ала",
+ "▁v ij",
+ "▁vi j",
+ "V O",
+ "▁c lin",
+ "▁cl in",
+ "▁cli n",
+ "jö r",
+ "j ör",
+ "са н",
+ "с ан",
+ "ow ała",
+ "owa ła",
+ "ował a",
+ "rib ución",
+ "ribu ción",
+ "▁urs prüng",
+ "▁con dem",
+ "▁cond em",
+ "▁St age",
+ "▁Sta ge",
+ "▁ Stage",
+ "▁mix ing",
+ "▁рі з",
+ "▁f ans",
+ "▁fa ns",
+ "▁fan s",
+ "há z",
+ "h áz",
+ "so cial",
+ "soci al",
+ "za n",
+ "z an",
+ "▁с вой",
+ "▁сво й",
+ "Cook ie",
+ "▁Ro land",
+ "▁Rol and",
+ "az ionale",
+ "▁Sl oven",
+ "▁Slo ven",
+ "▁Slov en",
+ "▁F iche",
+ "▁Fich e",
+ "▁S é",
+ "h ä",
+ "▁official s",
+ "▁offici als",
+ "▁î nt",
+ "▁în t",
+ "Inter ceptor",
+ "Table s",
+ "Tab les",
+ "T ables",
+ "▁da von",
+ "▁dav on",
+ "init ialize",
+ "initial ize",
+ "]= \"",
+ "] =\"",
+ "▁B ody",
+ "▁Bo dy",
+ "▁Bod y",
+ "▁ Body",
+ "▁U pper",
+ "▁Up per",
+ "▁ Upper",
+ "▁Col lect",
+ "▁Coll ect",
+ "▁ Collect",
+ "▁Zür ich",
+ "Hor izontal",
+ "Ty p",
+ "T yp",
+ "▁polít ico",
+ "▁Rewrite Cond",
+ "▁h oped",
+ "▁hope d",
+ "▁ho ped",
+ "▁hop ed",
+ "▁anx ious",
+ "Li ter",
+ "L iter",
+ "ja hr",
+ "j ahr",
+ "▁ass emble",
+ "▁assemb le",
+ "▁c rypt",
+ "▁cry pt",
+ "lah oma",
+ "AS H",
+ "A SH",
+ "▁Б ри",
+ "▁C ic",
+ "▁Ci c",
+ "tw itter",
+ "hy per",
+ "▁T ell",
+ "▁Te ll",
+ "▁Tel l",
+ "іль ки",
+ "во бо",
+ "▁ba zie",
+ "▁baz ie",
+ "▁contempor ary",
+ "▁Param eter",
+ "▁Para meter",
+ "▁ Parameter",
+ "st wa",
+ "▁bek end",
+ "co ck",
+ "c ock",
+ "pre vious",
+ "prev ious",
+ "en ska",
+ "ens ka",
+ "ensk a",
+ "▁c aller",
+ "▁cal ler",
+ "▁call er",
+ "]] )",
+ "] ])",
+ "▁R az",
+ "▁Ra z",
+ "▁Se lon",
+ "▁Sel on",
+ "▁propos al",
+ "▁b ý",
+ "▁S ied",
+ "▁Sie d",
+ "▁Si ed",
+ "▁Arbe its",
+ "▁Arbeit s",
+ "▁p ride",
+ "▁pr ide",
+ "▁pri de",
+ "▁sl ope",
+ "▁slo pe",
+ "id é",
+ "grad ient",
+ "▁Дже рела",
+ "▁S H",
+ "▁ SH",
+ "▁раз рабо",
+ "ivers ity",
+ "спо дар",
+ "\\{ \\",
+ "\\ {\\",
+ "▁с тали",
+ "▁ст али",
+ "▁ста ли",
+ "▁стал и",
+ "▁Ein zel",
+ "▁Einz el",
+ "▁rg ba",
+ "▁A nim",
+ "▁An im",
+ "▁ Anim",
+ "▁a lles",
+ "▁al les",
+ "▁all es",
+ "▁alle s",
+ "▁ alles",
+ "ба р",
+ "б ар",
+ "er te",
+ "ert e",
+ "▁réalis é",
+ "▁réal isé",
+ "Inst itut",
+ "▁mar kup",
+ "▁mark up",
+ "▁v ars",
+ "▁var s",
+ "▁va rs",
+ "▁ vars",
+ "▁g am",
+ "▁ga m",
+ "▁Васи ль",
+ "iz za",
+ "izz a",
+ "i zza",
+ "▁C ob",
+ "▁Co b",
+ "▁M etal",
+ "▁Me tal",
+ "▁Met al",
+ "▁Meta l",
+ "▁le ak",
+ "▁L anc",
+ "▁La nc",
+ "▁Lan c",
+ "Sw itch",
+ "De lay",
+ "Del ay",
+ "at uur",
+ "atu ur",
+ "▁че ты",
+ "▁анг лий",
+ "▁leg acy",
+ "▁desar roll",
+ "▁top ological",
+ "▁jewe ils",
+ "▁Nederland se",
+ "▁atmos phere",
+ "ur ban",
+ "urb an",
+ "▁s lov",
+ "▁sl ov",
+ "▁slo v",
+ "▁law yer",
+ "pe cially",
+ "▁altern ate",
+ "▁para met",
+ "▁param et",
+ "▁establish ment",
+ "▁wood s",
+ "▁wo ods",
+ "P D",
+ "▁на и",
+ "▁m ang",
+ "▁ma ng",
+ "▁man g",
+ "▁wechsel te",
+ "сь ку",
+ "ськ у",
+ ". =",
+ "▁fif teen",
+ "SU M",
+ "S UM",
+ "▁F ro",
+ "▁Fr o",
+ "▁L ED",
+ "▁LE D",
+ "▁ LED",
+ "ow ano",
+ "owa no",
+ "owan o",
+ "стви е",
+ "▁D onnées",
+ "to l",
+ "t ol",
+ "ży n",
+ "ż yn",
+ "cre f",
+ "cr ef",
+ "c ref",
+ "стви и",
+ "ho rn",
+ "hor n",
+ "h orn",
+ "▁со об",
+ "▁обо ро",
+ "▁Comp lete",
+ "▁Comple te",
+ "▁ Complete",
+ "“ )",
+ "▁kind ly",
+ "▁Cham ber",
+ "s ég",
+ "W H",
+ "▁amb ient",
+ "к ро",
+ "▁ch eval",
+ "▁che val",
+ "▁на писа",
+ "fl u",
+ "f lu",
+ "▁Off iz",
+ "ma te",
+ "mat e",
+ "m ate",
+ "nat ural",
+ "n atural",
+ "se par",
+ "sep ar",
+ "em pre",
+ "emp re",
+ "View Holder",
+ "f w",
+ "▁le tech",
+ "▁let ech",
+ "▁tra iling",
+ "▁trail ing",
+ "at ri",
+ "atr i",
+ "a tri",
+ "▁G ó",
+ "▁B onn",
+ "▁Bo nn",
+ "▁Bon n",
+ "▁un likely",
+ "▁unlike ly",
+ "RA M",
+ "R AM",
+ "en st",
+ "ens t",
+ "St ats",
+ "Stat s",
+ "▁поли тиче",
+ ")- -(",
+ ")-- (",
+ "▁t rom",
+ "▁tr om",
+ "▁tro m",
+ "!. ..",
+ "! ...",
+ "▁Mean while",
+ "ст ана",
+ "ста на",
+ "стан а",
+ "▁Re ino",
+ "▁Rein o",
+ "▁A rist",
+ "▁Ar ist",
+ "▁Ari st",
+ "$} }%",
+ "$ }}%",
+ "▁so lem",
+ "▁sol em",
+ "▁sole m",
+ "clos ure",
+ "ign ation",
+ "ło d",
+ "ł od",
+ "▁di vor",
+ "▁div or",
+ "▁между народ",
+ "=\" ",
+ "▁m olt",
+ "▁mo lt",
+ "▁mol t",
+ "▁sk ills",
+ "▁skill s",
+ "▁C ir",
+ "▁Ci r",
+ "▁Des pués",
+ "▁Desp ués",
+ "▁l un",
+ "▁lu n",
+ "▁cor on",
+ "▁co ron",
+ "▁Com ics",
+ "сто ри",
+ "стор и",
+ "с тори",
+ "▁It ems",
+ "▁Item s",
+ "▁ Items",
+ "▁Th ink",
+ "и гра",
+ "▁g rows",
+ "▁gr ows",
+ "▁gro ws",
+ "▁grow s",
+ "port al",
+ "por tal",
+ "▁n ich",
+ "▁ni ch",
+ "▁nic h",
+ "▁restrict ions",
+ "▁restriction s",
+ "▁L au",
+ "▁La u",
+ "ше ння",
+ "шен ня",
+ "▁So zial",
+ "▁к і",
+ "▁ кі",
+ "ma na",
+ "man a",
+ "m ana",
+ "▁lie utenant",
+ "Att r",
+ "At tr",
+ "ume ric",
+ "umer ic",
+ "▁dr ives",
+ "▁drive s",
+ "▁dri ves",
+ "▁driv es",
+ "as is",
+ "asi s",
+ "ба й",
+ "N L",
+ "Zyg ote",
+ "phys ics",
+ "▁intern ally",
+ "▁internal ly",
+ "ва ется",
+ "вает ся",
+ "H idden",
+ "▁Да та",
+ "▁un safe",
+ "▁R oc",
+ "▁Ro c",
+ "▁instanti ate",
+ "▁instant iate",
+ "ud ni",
+ "▁R oom",
+ "▁Ro om",
+ "▁П ред",
+ "▁Пре д",
+ "▁m aja",
+ "▁ma ja",
+ "▁maj a",
+ "ach ment",
+ "u uid",
+ "Project s",
+ "Gr e",
+ "G re",
+ "▁в зя",
+ "▁вз я",
+ "▁Bl ood",
+ "▁Blo od",
+ "ic ile",
+ "ici le",
+ "i cile",
+ "▁N ouvelle",
+ "Do es",
+ "▁nie uwe",
+ "ál e",
+ "á le",
+ "an gs",
+ "ang s",
+ "we ak",
+ "▁a antal",
+ "▁aan tal",
+ "▁Е в",
+ "▁Dres den",
+ "▁L ost",
+ "▁Lo st",
+ "▁Los t",
+ "ка та",
+ "▁invol ve",
+ "▁decl aring",
+ "▁decla ring",
+ "▁declar ing",
+ "▁Polit ical",
+ "ér ez",
+ "ére z",
+ "é rez",
+ "ko p",
+ "k op",
+ "not ify",
+ "▁C urt",
+ "▁Cu rt",
+ "▁Cur t",
+ "▁schließ lich",
+ "gh an",
+ "g han",
+ "це на",
+ "цен а",
+ "ц ена",
+ "▁kw iet",
+ "üg el",
+ "üge l",
+ "ü gel",
+ "▁S ob",
+ "▁So b",
+ "▁sub str",
+ "▁subst r",
+ "▁subs tr",
+ "▁ substr",
+ "▁el len",
+ "▁elle n",
+ "▁ell en",
+ "▁ ellen",
+ "ion ario",
+ "iona rio",
+ "en son",
+ "ens on",
+ "enso n",
+ "WI N",
+ "W IN",
+ "спо рт",
+ "em er",
+ "eme r",
+ "e mer",
+ "no me",
+ "nom e",
+ "n ome",
+ "▁sm iled",
+ "▁smile d",
+ "▁Sch midt",
+ "▁sm oke",
+ "▁T oken",
+ "▁To ken",
+ "▁Tok en",
+ "▁ Token",
+ "▁v ague",
+ "▁va gue",
+ "▁pro vision",
+ "▁prov ision",
+ "ya ml",
+ "y aml",
+ "ни тель",
+ "ните ль",
+ "on ial",
+ "oni al",
+ "onia l",
+ "é poque",
+ "▁N C",
+ "▁ NC",
+ "▁N FL",
+ "te ck",
+ "▁al lo",
+ "▁all o",
+ "▁ allo",
+ "▁préc éd",
+ "cent ral",
+ "▁ma jd",
+ "▁maj d",
+ "▁ch rom",
+ "▁chr om",
+ "▁ chrom",
+ "▁Z um",
+ "▁Zu m",
+ "ver so",
+ "vers o",
+ "▁verschied enen",
+ "▁ста ро",
+ "▁стар о",
+ "▁qu elle",
+ "▁que lle",
+ "▁q uelle",
+ "▁quel le",
+ "▁ quelle",
+ "▁r ép",
+ "▁ré p",
+ "RO W",
+ "R OW",
+ "▁i hnen",
+ "▁ih nen",
+ "▁ihn en",
+ "▁sens ible",
+ "▁sen sible",
+ "| $",
+ "▁sc hw",
+ "▁sch w",
+ "▁B R",
+ "▁ BR",
+ "▁O ptions",
+ "▁Option s",
+ "▁Opt ions",
+ "▁ Options",
+ "▁t ens",
+ "▁te ns",
+ "▁ten s",
+ "▁conqu ist",
+ "▁l ieß",
+ "▁lie ß",
+ "▁ ließ",
+ "ov is",
+ "ovi s",
+ "o vis",
+ "▁мі ста",
+ "▁міс та",
+ "▁e la",
+ "▁el a",
+ "▁ ela",
+ "rif ice",
+ "r ifice",
+ "▁l ok",
+ "▁lo k",
+ "▁Queens land",
+ "B inary",
+ "▁Ra hmen",
+ "▁Rah men",
+ "▁a bol",
+ "▁ab ol",
+ "▁ abol",
+ "▁č ást",
+ "▁Ed inburgh",
+ "in de",
+ "ind e",
+ "i nde",
+ "▁calcul ating",
+ "▁calc ulating",
+ "▁O regon",
+ "▁le git",
+ "▁leg it",
+ "▁Nach dem",
+ "at hon",
+ "ath on",
+ "P rivate",
+ "illa ume",
+ "▁ob servable",
+ "▁observ able",
+ "le ans",
+ "lean s",
+ "lea ns",
+ "▁remark ed",
+ "▁h alt",
+ "▁ha lt",
+ "▁hal t",
+ "▁ halt",
+ "ни цы",
+ "ниц ы",
+ "▁st amp",
+ "▁sta mp",
+ "▁stam p",
+ "▁Ad v",
+ "Lo uis",
+ "Lou is",
+ "im ming",
+ "imm ing",
+ "gru ppe",
+ "▁Pol icy",
+ "▁ Policy",
+ "▁v rij",
+ "▁vr ij",
+ "ft rag",
+ "▁off ices",
+ "▁offic es",
+ "▁office s",
+ "▁particip ated",
+ "▁es col",
+ "▁esc ol",
+ "▁\" ",
+ "▁\"< /",
+ "▁nombre uses",
+ "▁d ivid",
+ "▁di vid",
+ "▁div id",
+ "▁ad vis",
+ "▁adv is",
+ "лта ти",
+ "▁= =>",
+ "▁== >",
+ "Ori entation",
+ "ci d",
+ "c id",
+ "Car t",
+ "Ca rt",
+ "C art",
+ "▁m urm",
+ "▁mu rm",
+ "▁mur m",
+ "▁ass ez",
+ "▁asse z",
+ "▁l inking",
+ "▁link ing",
+ "▁lin king",
+ "build ing",
+ "▁rec onna",
+ "▁recon na",
+ "▁s hook",
+ "▁sh ook",
+ "▁sho ok",
+ "man aged",
+ "mana ged",
+ "land a",
+ "lan da",
+ "l anda",
+ "▁Le ón",
+ "▁cré ation",
+ "до й",
+ "oc ity",
+ "oci ty",
+ "o city",
+ "▁w ij",
+ "▁ wij",
+ "▁wie ś",
+ "xt art",
+ "▁M ove",
+ "▁Mo ve",
+ "▁Mov e",
+ "▁ Move",
+ "lung en",
+ "l ungen",
+ "ству ет",
+ "or ney",
+ "orn ey",
+ "option al",
+ "opt ional",
+ "ma cro",
+ "mac ro",
+ "Cond ition",
+ "▁square s",
+ "▁squ ares",
+ "▁mist aken",
+ "▁mistake n",
+ "án t",
+ "á nt",
+ "▁R is",
+ "▁Ri s",
+ "▁sent ences",
+ "▁sentence s",
+ "er ea",
+ "ere a",
+ "e rea",
+ "▁m ij",
+ "▁mi j",
+ "Un d",
+ "U nd",
+ "▁nom br",
+ "z A",
+ "▁In dependent",
+ "▁Indep endent",
+ "▁Independ ent",
+ "▁p review",
+ "▁pre view",
+ "▁prev iew",
+ "▁ preview",
+ "im as",
+ "ima s",
+ "i mas",
+ "▁m ales",
+ "▁ma les",
+ "▁mal es",
+ "▁male s",
+ "in ental",
+ "inen tal",
+ "inent al",
+ "Th ank",
+ "▁p opol",
+ "▁po pol",
+ "▁pop ol",
+ "▁p over",
+ "▁po ver",
+ "▁pov er",
+ "▁gr asp",
+ "▁gra sp",
+ "▁im ped",
+ "▁imp ed",
+ "▁campion ato",
+ "▁W ei",
+ "▁We i",
+ "▁t itled",
+ "▁title d",
+ "▁tit led",
+ "▁A demás",
+ "▁Pass word",
+ "▁ Password",
+ "▁P am",
+ "▁Pa m",
+ "UI LD",
+ "▁ли пня",
+ "wer b",
+ "we rb",
+ "w erb",
+ "........ ........",
+ "▁R ío",
+ "▁te eth",
+ "b p",
+ "▁S W",
+ "▁ SW",
+ "ul aire",
+ "ula ire",
+ "▁se ized",
+ "▁sei zed",
+ "▁St ef",
+ "▁Ste f",
+ "ú l",
+ "▁v iz",
+ "▁vi z",
+ "ion y",
+ "io ny",
+ "i ony",
+ "▁j unt",
+ "▁ju nt",
+ "▁jun t",
+ "▁kter á",
+ "▁wrześ nia",
+ "< >",
+ "▁s urg",
+ "▁su rg",
+ "▁sur g",
+ "▁tu tte",
+ "▁tut te",
+ "▁H ob",
+ "▁Ho b",
+ "по від",
+ "пов ід",
+ "▁w ohl",
+ "▁wo hl",
+ "▁ wohl",
+ "▁t rag",
+ "▁tr ag",
+ "▁tra g",
+ "▁C rown",
+ "▁Cr own",
+ "▁Cro wn",
+ "▁Crow n",
+ "▁tr ova",
+ "▁tro va",
+ "▁trov a",
+ "сто ву",
+ "стов у",
+ "▁Vien na",
+ "ese hen",
+ "▁met ropol",
+ "▁reflect ed",
+ "те та",
+ "тет а",
+ "т ета",
+ "▁trad uc",
+ "▁tradu c",
+ "▁B ast",
+ "▁Bas t",
+ "▁Ba st",
+ "▁ersch ien",
+ "wo ord",
+ "() \"",
+ "( )\"",
+ "ta let",
+ "tal et",
+ "t alet",
+ "▁ro ads",
+ "▁road s",
+ "ве дения",
+ "веде ния",
+ "ühr ung",
+ "▁c ogn",
+ "▁co gn",
+ "▁V alle",
+ "▁Val le",
+ "▁Va lle",
+ "▁Vall e",
+ "▁land ing",
+ "▁lan ding",
+ "▁Re gex",
+ "▁Reg ex",
+ "▁I owa",
+ "▁Io wa",
+ "dz iał",
+ "d ział",
+ "▁erre ichte",
+ "au m",
+ "a um",
+ "▁found er",
+ "▁fo under",
+ "▁fou nder",
+ "ap olis",
+ "Comp iler",
+ "▁k op",
+ "▁ko p",
+ "▁ kop",
+ "▁m arc",
+ "▁ma rc",
+ "▁mar c",
+ "▁те ритор",
+ ")) `",
+ ") )`",
+ "▁l ei",
+ "▁le i",
+ "▁ lei",
+ "ge on",
+ "geo n",
+ "▁weap ons",
+ "▁weapon s",
+ "▁h orn",
+ "▁hor n",
+ "▁ho rn",
+ "▁ horn",
+ "▁el if",
+ "▁ elif",
+ "▁Cap ital",
+ "▁Capit al",
+ "ć e",
+ "▁for all",
+ "▁ forall",
+ "▁э та",
+ "pre view",
+ "prev iew",
+ "p review",
+ "▁D NA",
+ "▁s id",
+ "▁si d",
+ "or ch",
+ "▁R as",
+ "▁Ra s",
+ "▁a rab",
+ "▁ar ab",
+ "▁ara b",
+ "▁ arab",
+ "Be st",
+ "B est",
+ "▁с чита",
+ "▁L ópez",
+ "an ça",
+ "▁fun kc",
+ "▁t ienen",
+ "▁tiene n",
+ "▁ti enen",
+ "▁tie nen",
+ "; &",
+ "m useum",
+ "▁E rr",
+ "▁Er r",
+ "▁ Err",
+ "▁re sort",
+ "▁res ort",
+ "No v",
+ "N ov",
+ "▁k al",
+ "▁ka l",
+ "▁ kal",
+ "M W",
+ "ш ь",
+ "an chor",
+ "anc hor",
+ "anch or",
+ "▁ро ман",
+ "le ading",
+ "lea ding",
+ "▁m anten",
+ "▁ma nten",
+ "▁man ten",
+ "▁mant en",
+ "▁Sil va",
+ "da de",
+ "d ade",
+ "▁design ated",
+ "▁rev ista",
+ "▁revis ta",
+ "O ct",
+ "per cent",
+ "▁у ні",
+ "ident ifier",
+ "ma ss",
+ "mas s",
+ "m ass",
+ "@ @",
+ "uls ion",
+ "ger meister",
+ "g ermeister",
+ "▁pred icted",
+ "▁predict ed",
+ "▁с ви",
+ "жно й",
+ "ж ной",
+ "▁Er geb",
+ "▁c ust",
+ "▁cu st",
+ "▁remove s",
+ "▁remov es",
+ "ch arg",
+ "char g",
+ "cha rg",
+ "при мер",
+ "▁for ming",
+ "▁form ing",
+ "as ma",
+ "asm a",
+ "std out",
+ "F un",
+ "ym e",
+ "y me",
+ "ter ed",
+ "te red",
+ "tere d",
+ "t ered",
+ "urs ive",
+ "ig hed",
+ "igh ed",
+ "▁сле д",
+ "▁ след",
+ "ver band",
+ "verb and",
+ "▁LO G",
+ "▁ LOG",
+ "ra ms",
+ "ram s",
+ "r ams",
+ "éo n",
+ "é on",
+ "en dra",
+ "end ra",
+ "▁Be reich",
+ "▁Bere ich",
+ "▁tempor al",
+ "▁temp oral",
+ "▁tempo ral",
+ "▁lang ue",
+ "▁lan gue",
+ "▁I nn",
+ "▁In n",
+ "▁more over",
+ "▁tutorial s",
+ "M iddle",
+ "▁совет ский",
+ "▁mainten ance",
+ "as ures",
+ "asure s",
+ "▁vál to",
+ "BA SE",
+ "B ASE",
+ "▁disapp ear",
+ "ски я",
+ "▁conoc ido",
+ "▁На у",
+ "▁Li bert",
+ "▁Lib ert",
+ "▁Liber t",
+ "▁Har old",
+ "▁life time",
+ "▁lif etime",
+ "▁T ür",
+ "▁za wod",
+ "▁zaw od",
+ "om ic",
+ "omi c",
+ "o mic",
+ "▁Retrie ved",
+ "arch itecture",
+ "č ka",
+ "iform es",
+ "develop ment",
+ "ord nung",
+ "In f",
+ "le ben",
+ "leb en",
+ "l eben",
+ "▁St ars",
+ "▁Sta rs",
+ "▁Star s",
+ "sign al",
+ "sig nal",
+ "▁gram mar",
+ "▁cor so",
+ "▁cors o",
+ "▁W agner",
+ "▁ge ht",
+ "▁royal e",
+ "▁roy ale",
+ "wa rn",
+ "war n",
+ "w arn",
+ "um bled",
+ "umb led",
+ "umble d",
+ "▁inst it",
+ "▁ins tit",
+ "▁Ш и",
+ "h h",
+ "▁ref uge",
+ "▁favor ite",
+ "ier to",
+ "iert o",
+ "▁cond ado",
+ "▁T her",
+ "▁The r",
+ "▁Th er",
+ "▁человек а",
+ "▁челове ка",
+ "▁F ood",
+ "▁Foo d",
+ "▁Fo od",
+ "▁se izo",
+ "▁sei zo",
+ "▁Init ialize",
+ "▁Initial ize",
+ "▁con nu",
+ "▁conn u",
+ "▁over lap",
+ "▁E mil",
+ "▁Em il",
+ "▁Mart í",
+ "▁жовт ня",
+ "er va",
+ "erv a",
+ "▁bo ats",
+ "▁boat s",
+ "a ções",
+ "▁der rot",
+ "▁m alloc",
+ "▁mal loc",
+ "▁ malloc",
+ "▁con ject",
+ "▁conj ect",
+ "j k",
+ "▁s are",
+ "▁sa re",
+ "▁sar e",
+ "ле мен",
+ "лем ен",
+ "▁s ums",
+ "▁su ms",
+ "▁sum s",
+ "Author ization",
+ "▁K un",
+ "▁Ku n",
+ "]$ ,",
+ "] $,",
+ "geme inde",
+ "gemein de",
+ "g emeinde",
+ "od ot",
+ "odo t",
+ "o dot",
+ "de fin",
+ "def in",
+ "▁e mission",
+ "▁em ission",
+ "▁Кра с",
+ "▁app art",
+ "▁ap part",
+ "▁appar t",
+ "▁stop ping",
+ "▁sto pping",
+ "▁С ред",
+ "▁conj ug",
+ "▁ins ight",
+ "▁Broad cast",
+ "▁PM ID",
+ "▁adv antages",
+ "▁advantage s",
+ "en es",
+ "ene s",
+ "e nes",
+ "▁res idence",
+ "▁resid ence",
+ "lj en",
+ "l jen",
+ "iss eur",
+ "isse ur",
+ "▁pubblic ato",
+ "▁Git Hub",
+ "▁Per u",
+ "▁Pe ru",
+ "▁galax ies",
+ "▁annot ations",
+ "▁annotation s",
+ "ga s",
+ "g as",
+ "▁ré pond",
+ "▁rép ond",
+ "J s",
+ "▁independent ly",
+ "▁independ ently",
+ "N P",
+ "▁in qu",
+ "▁gr ounds",
+ "▁ground s",
+ "Com ponents",
+ "Component s",
+ "▁a nten",
+ "▁an ten",
+ "▁ant en",
+ "▁ante n",
+ "▁ anten",
+ "▁в з",
+ "▁h os",
+ "▁ho s",
+ "▁ hos",
+ "▁s int",
+ "▁si nt",
+ "▁sin t",
+ "▁h iding",
+ "▁hi ding",
+ "▁hid ing",
+ "▁wojew ództ",
+ "Message s",
+ "Mess ages",
+ "▁по каза",
+ "▁пока за",
+ "== =",
+ "= ==",
+ "▁Ab stract",
+ "▁ Abstract",
+ "▁l äng",
+ "▁län g",
+ "▁lä ng",
+ "▁Form ula",
+ "da wn",
+ "d awn",
+ "▁design s",
+ "Im g",
+ "▁Portug uese",
+ "▁incl uy",
+ "▁inclu y",
+ "avig ator",
+ "▁Bro thers",
+ "▁cont inent",
+ "▁contin ent",
+ "▁evident ly",
+ "ra ce",
+ "rac e",
+ "r ace",
+ "ць кого",
+ "▁re ck",
+ "▁rec k",
+ "▁ reck",
+ "▁сер пня",
+ "▁G rey",
+ "▁Gr ey",
+ "▁Gre y",
+ "▁appe al",
+ "▁un like",
+ "▁power shell",
+ "▁pow ershell",
+ "▁powers hell",
+ "▁r acc",
+ "▁ra cc",
+ "▁rac c",
+ "fer s",
+ "fe rs",
+ "f ers",
+ "▁bur ning",
+ "▁burn ing",
+ "fas st",
+ "fass t",
+ "inst alled",
+ "install ed",
+ "▁G ive",
+ "▁Gi ve",
+ "▁col onial",
+ "▁colon ial",
+ "▁ €",
+ "▁R ö",
+ "▁ch rist",
+ "▁chr ist",
+ "ne hm",
+ "neh m",
+ "та м",
+ "▁cor po",
+ "▁con virti",
+ "yt er",
+ "y ter",
+ "S ym",
+ "▁Gree ce",
+ "▁m oth",
+ "▁mo th",
+ "▁mot h",
+ "▁Joh an",
+ "▁Jo han",
+ "▁mon arch",
+ "▁Down load",
+ "▁ Download",
+ "▁c raft",
+ "▁cr aft",
+ "▁cra ft",
+ "▁ craft",
+ "u ž",
+ "▁Lu ke",
+ "▁suf fix",
+ "▁suff ix",
+ "\\ /",
+ "Ha ve",
+ "H ave",
+ "▁ка рь",
+ "▁кар ь",
+ "▁comfort able",
+ "▁t ips",
+ "▁tip s",
+ "▁ti ps",
+ "▁П ісля",
+ "▁бро ја",
+ "▁ин форма",
+ "M Q",
+ "бра н",
+ "б ран",
+ "▁t x",
+ "▁ tx",
+ "▁sl aves",
+ "▁sla ves",
+ "▁slave s",
+ "▁fire wall",
+ "▁For ces",
+ "▁Force s",
+ "at if",
+ "ati f",
+ "▁Qu ellen",
+ "▁thé âtre",
+ "ль ных",
+ "▁располо жен",
+ "▁Det ails",
+ "▁ Details",
+ "k ą",
+ "▁long itud",
+ "IN ST",
+ "▁n aval",
+ "▁na val",
+ "▁nav al",
+ "Fern seh",
+ "es sel",
+ "ess el",
+ "esse l",
+ "Gr ad",
+ "G rad",
+ "▁be lang",
+ "▁bel ang",
+ "▁a ggi",
+ "▁ag gi",
+ "▁ aggi",
+ "Zygote Init",
+ "ł ów",
+ "▁S ug",
+ "▁Su g",
+ "si l",
+ "s il",
+ "▁ex terior",
+ "щ і",
+ "OR D",
+ "en ser",
+ "ens er",
+ "ense r",
+ "▁rapid e",
+ "▁rap ide",
+ "▁тем пера",
+ "in cie",
+ "inci e",
+ "inc ie",
+ "S i",
+ "av am",
+ "ava m",
+ "ar ded",
+ "ard ed",
+ "arde d",
+ "▁Ad ded",
+ "▁Add ed",
+ "End point",
+ "hard t",
+ "har dt",
+ "ст ран",
+ "стра н",
+ "стр ан",
+ "▁est ilo",
+ "▁H az",
+ "▁Ha z",
+ "▁mus ste",
+ "▁muss te",
+ "u o",
+ "ii i",
+ "i ii",
+ "▁ř í",
+ "▁ ří",
+ "an zen",
+ "anz en",
+ "anze n",
+ "же ний",
+ "ah a",
+ "a ha",
+ "ARN ING",
+ "▁re nov",
+ "▁ren ov",
+ "▁div ine",
+ "▁convin ced",
+ "▁hum ans",
+ "▁human s",
+ "▁hu mans",
+ "▁depart ure",
+ "▁Med iter",
+ "▁Medi ter",
+ "q a",
+ "▁poss essed",
+ "▁possess ed",
+ "▁цер кви",
+ "gi v",
+ "g iv",
+ "▁сво ї",
+ "▁Ort ste",
+ "▁Orts te",
+ "R ich",
+ "pu is",
+ "p uis",
+ "in crement",
+ "▁Hann over",
+ "▁u cz",
+ "Do ne",
+ "Don e",
+ "D one",
+ "▁alg uns",
+ "FI X",
+ "F IX",
+ "▁Her itage",
+ "remove Class",
+ "фе р",
+ "ф ер",
+ "▁a bc",
+ "▁ab c",
+ "▁ abc",
+ "D r",
+ "▁се мей",
+ "▁сем ей",
+ "{ :",
+ "▁se ule",
+ "▁seu le",
+ "▁seul e",
+ "zeich nungen",
+ "zeichnung en",
+ "ad dy",
+ "add y",
+ "▁Par ís",
+ "üss eld",
+ "▁re ception",
+ "▁rece ption",
+ "fo lio",
+ "fol io",
+ "ti ny",
+ "t iny",
+ "▁recens ement",
+ "▁N ur",
+ "▁Nu r",
+ "▁k ier",
+ "▁ki er",
+ "▁g mina",
+ "▁gmin a",
+ "sta at",
+ "ánd ose",
+ "че ская",
+ "▁spe aker",
+ "▁speak er",
+ "▁expon ential",
+ "▁exponent ial",
+ "▁D ieu",
+ "▁Die u",
+ "▁Di eu",
+ "▁при з",
+ "▁пр из",
+ "▁Raf ael",
+ "▁gg plot",
+ "▁Tem plate",
+ "▁Temp late",
+ "▁ Template",
+ "ou re",
+ "our e",
+ "o ure",
+ "▁In ner",
+ "▁Inn er",
+ "▁ Inner",
+ "og ne",
+ "ogn e",
+ "ig are",
+ "iga re",
+ "▁Ar te",
+ "▁Art e",
+ "▁C ov",
+ "▁Co v",
+ "▁auf grund",
+ "▁Б ы",
+ "▁cerem ony",
+ "▁S part",
+ "▁Sp art",
+ "ject ive",
+ "y i",
+ "▁in izi",
+ "▁l atin",
+ "▁lat in",
+ "▁Never theless",
+ "▁D one",
+ "▁Do ne",
+ "▁Don e",
+ "▁ Done",
+ "т ря",
+ "▁A rr",
+ "▁Ar r",
+ "▁ Arr",
+ "se ason",
+ "▁скла ду",
+ "▁pod czas",
+ "▁Beaut iful",
+ "▁Weltkrie g",
+ "▁з о",
+ "▁ зо",
+ "▁over come",
+ "▁Pr aha",
+ "▁Pra ha",
+ "▁рай ону",
+ "▁райо ну",
+ "▁район у",
+ "▁sub scription",
+ "▁subs cription",
+ "▁subscri ption",
+ "ig ent",
+ "igen t",
+ "ige nt",
+ "i gent",
+ "▁по ка",
+ "la tex",
+ "lat ex",
+ "late x",
+ "▁b each",
+ "▁be ach",
+ "▁ро ках",
+ "ge g",
+ "g eg",
+ "▁pro bl",
+ "▁prob l",
+ "arg uments",
+ "argument s",
+ "▁organ izations",
+ "▁organiz ations",
+ "▁organization s",
+ "▁N an",
+ "▁Na n",
+ "▁st ones",
+ "▁sto nes",
+ "▁stone s",
+ "▁H unter",
+ "▁Hun ter",
+ "▁regular ly",
+ "шо го",
+ "ш ого",
+ "▁flex ible",
+ "op ts",
+ "opt s",
+ "o pts",
+ "á ř",
+ "wi tz",
+ "w itz",
+ "▁' )",
+ "▁ ')",
+ "PA SS",
+ "P ASS",
+ "▁k raj",
+ "▁kr aj",
+ "▁kra j",
+ "▁f ake",
+ "▁fa ke",
+ "he its",
+ "heit s",
+ "os ph",
+ "osp h",
+ "parse Int",
+ "F ALSE",
+ "▁prof ess",
+ "▁profes s",
+ "pe ople",
+ "▁pre cip",
+ "▁prec ip",
+ "dir name",
+ "▁per pet",
+ "▁Up dated",
+ "▁Update d",
+ "▁ Updated",
+ "ra yed",
+ "ray ed",
+ "▁prov oc",
+ "▁тра вня",
+ "▁трав ня",
+ "▁categ orie",
+ "▁categor ie",
+ "▁те о",
+ "с ну",
+ "ot r",
+ "o tr",
+ "▁Вер хов",
+ "▁comp ét",
+ "Co st",
+ "C ost",
+ "▁w ider",
+ "▁wide r",
+ "▁wid er",
+ "▁Ob viously",
+ "пи сан",
+ "писа н",
+ "пис ан",
+ "▁на стоя",
+ "▁see king",
+ "▁seek ing",
+ "() ),",
+ "()) ,",
+ "( )),",
+ "▁é quipe",
+ "▁équip e",
+ "▁ équipe",
+ "▁comm its",
+ "▁commit s",
+ "▁S vens",
+ "▁Sv ens",
+ "я бре",
+ "at ern",
+ "ate rn",
+ "ater n",
+ "a tern",
+ "▁h eter",
+ "▁he ter",
+ "▁het er",
+ "▁Boot strap",
+ "én é",
+ "é né",
+ "▁deriv atives",
+ "▁derivative s",
+ "▁Det roit",
+ "▁provin cial",
+ "▁provincia l",
+ "onom ie",
+ "E B",
+ "▁c uer",
+ "▁cu er",
+ "▁от носи",
+ "▁отно си",
+ "▁не й",
+ "▁н ей",
+ "▁ ней",
+ ") ».",
+ "▁Ci udad",
+ "IA L",
+ "I AL",
+ "zy st",
+ "z yst",
+ ")\" )",
+ ") \")",
+ "▁Al c",
+ "bl ogs",
+ "blog s",
+ "blo gs",
+ "b logs",
+ "▁par mi",
+ "▁Album s",
+ "▁Alb ums",
+ "▁Bo liv",
+ "▁Bol iv",
+ "▁c lés",
+ "▁cl és",
+ "Product s",
+ "uer do",
+ "▁ge lang",
+ "▁gel ang",
+ "zn ik",
+ "z nik",
+ "ha gen",
+ "h agen",
+ "an onymous",
+ "▁sv g",
+ "▁ svg",
+ "▁Cons eil",
+ "▁Conse il",
+ "▁A ri",
+ "▁Ar i",
+ "col i",
+ "co li",
+ "c oli",
+ "▁c zy",
+ "▁cz y",
+ "▁ czy",
+ "▁C V",
+ "▁ CV",
+ "▁f ord",
+ "▁for d",
+ "▁fo rd",
+ "▁ ford",
+ "▁Au ßer",
+ "▁Auß er",
+ "▁C I",
+ "▁ CI",
+ "▁t empt",
+ "▁tem pt",
+ "▁temp t",
+ "▁Organ isation",
+ "á š",
+ "▁cy cles",
+ "▁cycle s",
+ "▁cycl es",
+ "▁ges lacht",
+ "▁лю дей",
+ "ým i",
+ "ý mi",
+ "▁S pieler",
+ "▁Spiel er",
+ "ef e",
+ "e fe",
+ "▁Mar vel",
+ "▁por tal",
+ "▁port al",
+ "▁porta l",
+ "▁ portal",
+ "▁Сер г",
+ "▁g rado",
+ "▁gr ado",
+ "▁gra do",
+ "▁grad o",
+ "▁hand lers",
+ "▁handle rs",
+ "▁handler s",
+ "▁Inter face",
+ "▁ Interface",
+ "AM E",
+ "A ME",
+ "▁ser iously",
+ "▁serious ly",
+ "▁B inding",
+ "▁Bin ding",
+ "▁Bind ing",
+ "▁ Binding",
+ "▁R ang",
+ "▁Ra ng",
+ "▁Ran g",
+ "▁n ada",
+ "▁na da",
+ "▁nad a",
+ "oc e",
+ "o ce",
+ "▁inte gra",
+ "▁integr a",
+ "oc racy",
+ "ocr acy",
+ "▁аль бо",
+ "▁st ability",
+ "▁stabil ity",
+ "Un s",
+ "U ns",
+ "▁v eter",
+ "▁ve ter",
+ "-- ----+",
+ "---- --+",
+ "--- ---+",
+ "------ +",
+ "----- -+",
+ "▁se rait",
+ "▁ser ait",
+ "▁sera it",
+ "▁om itted",
+ "▁uncertain ty",
+ "on ian",
+ "oni an",
+ "onia n",
+ "▁re sto",
+ "▁r esto",
+ "▁res to",
+ "▁rest o",
+ "▁же лез",
+ "▁од ной",
+ "▁одно й",
+ "▁Bevölker ung",
+ "▁K raft",
+ "▁Kr aft",
+ "▁Kra ft",
+ "ст р",
+ "▁Mos cow",
+ "la ne",
+ "lan e",
+ "l ane",
+ "ar ab",
+ "ara b",
+ "a rab",
+ "▁s pole",
+ "▁sp ole",
+ "▁spo le",
+ "▁сво его",
+ "? :",
+ "ST ART",
+ "▁ин тер",
+ "▁инте р",
+ "▁sym pt",
+ "▁Loren zo",
+ "▁ej ec",
+ "▁pros per",
+ "DA T",
+ "D AT",
+ "лимпи й",
+ "▁sh apes",
+ "▁shape s",
+ "value Of",
+ "▁associ ate",
+ "▁Med ien",
+ "▁Medi en",
+ "EN V",
+ "▁с ре",
+ "▁држа ве",
+ "▁the ories",
+ "he b",
+ "h eb",
+ "▁Way ne",
+ "▁String Builder",
+ "iw ers",
+ "i wers",
+ "▁M aps",
+ "▁Ma ps",
+ "▁Map s",
+ "Ph ys",
+ "\\} \\",
+ "\\ }\\",
+ "▁P arte",
+ "▁Par te",
+ "▁Part e",
+ "▁Hud son",
+ "ло н",
+ "л он",
+ "L ng",
+ "▁р ы",
+ "▁ ры",
+ "ст ей",
+ "сте й",
+ "с тей",
+ "la u",
+ "l au",
+ "an cer",
+ "ance r",
+ "anc er",
+ "▁Co ppa",
+ "▁Cop pa",
+ "▁вій сь",
+ "▁u cc",
+ "▁Pat tern",
+ "▁ Pattern",
+ "▁gar bage",
+ "▁Gon zález",
+ "▁Encyc lop",
+ "et ten",
+ "ett en",
+ "ette n",
+ "Ex ternal",
+ "Ext ernal",
+ "RE F",
+ "R EF",
+ "> ;",
+ "lij ke",
+ "lijk e",
+ "▁inter sect",
+ "▁Un less",
+ "▁de eper",
+ "▁deep er",
+ "▁ж і",
+ "▁ жі",
+ "de nt",
+ "den t",
+ "d ent",
+ "le f",
+ "l ef",
+ "▁ch anson",
+ "▁diff us",
+ "▁pr imi",
+ "▁prim i",
+ "▁pri mi",
+ "▁W ieder",
+ "▁Wi eder",
+ "▁Wie der",
+ "▁a ws",
+ "▁aw s",
+ "▁ aws",
+ "ow ana",
+ "owa na",
+ "owan a",
+ "▁so ciale",
+ "▁social e",
+ "▁soci ale",
+ "▁soc iale",
+ "ik k",
+ "i kk",
+ "ль ной",
+ "льно й",
+ "▁div isions",
+ "▁division s",
+ "▁divis ions",
+ "ло со",
+ "▁Cl aud",
+ "▁Cla ud",
+ "▁Y a",
+ "▁v oce",
+ "▁vo ce",
+ "▁voc e",
+ "▁B ranch",
+ "▁Br anch",
+ "▁Bran ch",
+ "▁f itted",
+ "▁fit ted",
+ "or r",
+ "o rr",
+ "ôt el",
+ "ô tel",
+ "st roke",
+ "str oke",
+ "list ener",
+ "listen er",
+ "im an",
+ "ima n",
+ "i man",
+ "во сто",
+ "▁Sh ah",
+ "Int roduction",
+ "▁new line",
+ "▁t ile",
+ "▁til e",
+ "▁ti le",
+ "'] ))",
+ "']) )",
+ "' ]))",
+ "▁trav aux",
+ "▁trava ux",
+ "CON FIG",
+ "▁quadr atic",
+ "on neur",
+ "onn eur",
+ "onne ur",
+ "▁Gi org",
+ "▁ident ific",
+ "éric aine",
+ "érica ine",
+ "▁UI View",
+ "▁ UIView",
+ "▁Lib eral",
+ "▁Liber al",
+ "▁K och",
+ "▁Ko ch",
+ "▁Berlin er",
+ "▁Berl iner",
+ "▁not ifications",
+ "▁notification s",
+ "▁Su san",
+ "▁Sus an",
+ "▁c adre",
+ "▁cad re",
+ "▁K loster",
+ "▁Kl oster",
+ "▁exam ine",
+ "▁е дин",
+ "▁еди н",
+ "▁UN ION",
+ "▁al ten",
+ "▁alt en",
+ "▁alte n",
+ "▁f init",
+ "▁fin it",
+ "▁fi nit",
+ "▁pe dig",
+ "▁ped ig",
+ "cy k",
+ "c yk",
+ "▁mouv ement",
+ "▁mou vement",
+ "IO S",
+ "I OS",
+ "▁бри тан",
+ "▁b out",
+ "▁bo ut",
+ "▁bou t",
+ "▁ав тор",
+ "▁авто р",
+ "ниц тво",
+ "ет о",
+ "е то",
+ "le ra",
+ "ler a",
+ "l era",
+ "cl s",
+ "c ls",
+ "▁L ey",
+ "▁Le y",
+ "am y",
+ "a my",
+ "ag ens",
+ "age ns",
+ "agen s",
+ "a gens",
+ "as hed",
+ "ash ed",
+ "▁ok rę",
+ "г ро",
+ "el lett",
+ "ell ett",
+ "elle tt",
+ "▁F ellow",
+ "▁Fel low",
+ "▁manif old",
+ "$) ,",
+ "$ ),",
+ "ld er",
+ "l der",
+ "▁v oz",
+ "▁vo z",
+ "▁be gg",
+ "▁beg g",
+ "▁b aron",
+ "▁bar on",
+ "▁ba ron",
+ "▁f id",
+ "▁fi d",
+ "▁f iring",
+ "▁fi ring",
+ "▁fir ing",
+ "il da",
+ "ild a",
+ "de k",
+ "d ek",
+ "A U",
+ "it are",
+ "ita re",
+ "itar e",
+ "▁A ra",
+ "▁Ar a",
+ "▁Ex it",
+ "▁ Exit",
+ "▁cin emat",
+ "▁cinema t",
+ "▁int ros",
+ "▁intr os",
+ "▁intro s",
+ "▁contact s",
+ "пе ни",
+ "пен и",
+ "▁m öglich",
+ "▁Singap ore",
+ "str öm",
+ "▁H ern",
+ "▁He rn",
+ "▁Her n",
+ "▁six th",
+ "▁public ations",
+ "▁pub lications",
+ "▁publication s",
+ "vi e",
+ "v ie",
+ "▁H at",
+ "▁Ha t",
+ "▁accept ing",
+ "á c",
+ "st wo",
+ "s two",
+ "▁quiet ly",
+ "Ph oto",
+ "▁b asket",
+ "▁bas ket",
+ "▁eigen values",
+ "▁mé dec",
+ "▁méd ec",
+ "▁O limp",
+ "▁Ol imp",
+ "▁цер ков",
+ "al in",
+ "ali n",
+ "a lin",
+ "con sum",
+ "cons um",
+ "▁l assen",
+ "▁las sen",
+ "▁ lassen",
+ "▁ан ти",
+ "▁S eq",
+ "▁Se q",
+ "▁ Seq",
+ "\"; \r",
+ "\" ;\r",
+ "ra re",
+ "rar e",
+ "r are",
+ "▁$ |\\",
+ "▁$| \\",
+ "▁n ick",
+ "▁ni ck",
+ "▁nic k",
+ "▁ nick",
+ "df lare",
+ "V ec",
+ "bind ung",
+ "▁b g",
+ "▁ bg",
+ "ch anges",
+ "change s",
+ "chan ges",
+ "Day s",
+ "Da ys",
+ "D ays",
+ "▁M ouse",
+ "▁Mo use",
+ "▁Mou se",
+ "▁ Mouse",
+ "▁wait ed",
+ "▁wa ited",
+ "▁Tom atoes",
+ "▁f as",
+ "▁fa s",
+ "▁ fas",
+ "ver te",
+ "vert e",
+ "v erte",
+ "▁success ion",
+ "▁succ ession",
+ "со р",
+ "с ор",
+ "▁s ols",
+ "▁so ls",
+ "▁sol s",
+ "▁R ender",
+ "▁Re nder",
+ "▁Ren der",
+ "▁ Render",
+ "▁lead ership",
+ "▁leader ship",
+ "▁leaders hip",
+ "▁signific ance",
+ "▁ga uche",
+ "▁gau che",
+ "ca no",
+ "can o",
+ "c ano",
+ "▁P ie",
+ "▁Pi e",
+ "enso ort",
+ "▁cam bio",
+ "▁camb io",
+ "▁у з",
+ "▁ende av",
+ "Comp leted",
+ "Comple ted",
+ "Complete d",
+ "▁Архив ная",
+ "j d",
+ "ór ico",
+ "ó rico",
+ "▁church es",
+ "▁an imate",
+ "▁anim ate",
+ "▁ani mate",
+ "▁ animate",
+ "S G",
+ "comp ute",
+ "comput e",
+ "▁uniform ly",
+ "IN IT",
+ "ll es",
+ "lle s",
+ "l les",
+ "Http Request",
+ "К о",
+ "Di ff",
+ "D iff",
+ "▁s ah",
+ "▁sa h",
+ "air o",
+ "ai ro",
+ "a iro",
+ "may be",
+ "UT E",
+ "U TE",
+ "▁D ow",
+ "▁Do w",
+ "hu man",
+ "hum an",
+ "h uman",
+ "▁au rait",
+ "▁aur ait",
+ "dar k",
+ "d ark",
+ "▁re pair",
+ "▁rep air",
+ "▁n er",
+ "▁ne r",
+ "▁ ner",
+ "▁D abei",
+ "▁Da bei",
+ "▁Bo tan",
+ "▁Bot an",
+ "Or iginal",
+ "Origin al",
+ "az ă",
+ "▁N AT",
+ "▁NA T",
+ "im per",
+ "imp er",
+ "▁Y outh",
+ "▁You th",
+ "th es",
+ "the s",
+ "t hes",
+ "▁окру га",
+ "▁F lo",
+ "▁Fl o",
+ "▁break fast",
+ "ur ls",
+ "url s",
+ "▁über nahm",
+ "ár ios",
+ "ário s",
+ "á rios",
+ "▁O range",
+ "▁Or ange",
+ "▁Aff airs",
+ "sk e",
+ "s ke",
+ "▁not ify",
+ "▁ notify",
+ "imo ine",
+ "▁Ar ena",
+ "▁Are na",
+ "▁lib eral",
+ "▁liber al",
+ "▁o bec",
+ "▁ob ec",
+ "if a",
+ "i fa",
+ "gu ez",
+ "gue z",
+ "g uez",
+ "ion o",
+ "io no",
+ "i ono",
+ "пера тор",
+ "▁ret ained",
+ "▁retain ed",
+ "fa iled",
+ "fail ed",
+ "bin e",
+ "bi ne",
+ "b ine",
+ "т ных",
+ "▁CG Rect",
+ "cam era",
+ "ide note",
+ "iden ote",
+ "K B",
+ "▁l ights",
+ "▁light s",
+ "▁P ictures",
+ "▁Picture s",
+ "▁Squad ron",
+ "▁V olk",
+ "▁Vol k",
+ "▁b urg",
+ "▁bu rg",
+ "▁bur g",
+ "▁ burg",
+ ", ]",
+ "G i",
+ "ê que",
+ "make Text",
+ "▁every body",
+ "▁Hy per",
+ "▁Hyp er",
+ "▁De ux",
+ "▁gl ory",
+ "▁glo ry",
+ "pres entation",
+ "present ation",
+ "on ica",
+ "oni ca",
+ "onic a",
+ "o nica",
+ "▁fr ère",
+ "ag et",
+ "age t",
+ "a get",
+ "▁h ints",
+ "▁hint s",
+ "▁hin ts",
+ "▁t unnel",
+ "▁tun nel",
+ "▁E j",
+ "ál is",
+ "á lis",
+ "▁V iv",
+ "▁Vi v",
+ "ствен ных",
+ "▁c aps",
+ "▁cap s",
+ "▁ca ps",
+ "PA RT",
+ "PAR T",
+ "P ART",
+ "oc i",
+ "o ci",
+ "▁p rices",
+ "▁pr ices",
+ "▁pri ces",
+ "▁price s",
+ "curr ency",
+ "c urrency",
+ "▁a chter",
+ "▁ach ter",
+ "▁acht er",
+ "rom agnet",
+ "ge nder",
+ "gen der",
+ "gende r",
+ "g ender",
+ "▁s uis",
+ "▁su is",
+ "vers ions",
+ "version s",
+ "▁Tr aining",
+ "▁Tra ining",
+ "▁Train ing",
+ "in side",
+ "ins ide",
+ "eg e",
+ "e ge",
+ "▁tot ale",
+ "▁total e",
+ "▁D aar",
+ "▁Da ar",
+ "▁grud nia",
+ "▁I er",
+ "▁occasion s",
+ "▁occas ions",
+ "▁k de",
+ "▁tensor flow",
+ "▁ tensorflow",
+ "▁ó r",
+ "▁ ór",
+ "Method s",
+ "▁loop ing",
+ "▁direct eur",
+ "k ę",
+ "▁is omorphism",
+ "▁Jo ão",
+ "▁al igned",
+ "▁align ed",
+ "▁ aligned",
+ "он ов",
+ "о нов",
+ "ur ger",
+ "urg er",
+ "▁n ova",
+ "▁no va",
+ "▁nov a",
+ "mor row",
+ "m orrow",
+ "al tern",
+ "alt ern",
+ "alter n",
+ "H D",
+ "▁m arqu",
+ "▁mar qu",
+ "at ivas",
+ "ativ as",
+ "ati vas",
+ "ativa s",
+ "gg reg",
+ "g greg",
+ "▁anci en",
+ "▁anc ien",
+ "ni t",
+ "n it",
+ "▁sec ured",
+ "▁secure d",
+ "mi er",
+ "m ier",
+ "▁O le",
+ "▁Ol e",
+ "▁ин те",
+ "▁m inus",
+ "▁min us",
+ "▁ minus",
+ "▁clear er",
+ "▁n ello",
+ "▁nel lo",
+ "▁nell o",
+ "▁információ k",
+ "▁pro pre",
+ "▁prop re",
+ "{ .",
+ "il og",
+ "ilo g",
+ "i log",
+ "▁Qu ick",
+ "▁acc us",
+ "▁ac cus",
+ "emp loyee",
+ "▁з у",
+ "▁ зу",
+ "ць кий",
+ "фі цій",
+ "▁пу бли",
+ "▁ публи",
+ "▁b ent",
+ "▁be nt",
+ "▁ben t",
+ "▁по зво",
+ "▁П ор",
+ "▁По р",
+ "áz í",
+ "án ico",
+ "á nico",
+ "empty set",
+ "▁sur tout",
+ "re no",
+ "ren o",
+ "r eno",
+ "un ya",
+ "▁у ез",
+ "▁Mill ionen",
+ "▁listop ada",
+ "▁M aine",
+ "▁Ma ine",
+ "▁Main e",
+ "▁Mai ne",
+ "▁gru pos",
+ "▁grupo s",
+ "▁grup os",
+ "▁St orage",
+ "▁Sto rage",
+ "▁ Storage",
+ "▁app le",
+ "▁ap ple",
+ "▁ apple",
+ "▁L ö",
+ "ou sed",
+ "ous ed",
+ "ouse d",
+ "o used",
+ "д ро",
+ "sc i",
+ "s ci",
+ "▁hi bernate",
+ "▁ hibernate",
+ "do g",
+ "d og",
+ "▁во сто",
+ "▁вос то",
+ "▁ восто",
+ "▁intens ity",
+ "leg end",
+ "lege nd",
+ "legen d",
+ "▁W ille",
+ "▁Will e",
+ "▁Wil le",
+ "▁Wi lle",
+ "▁szer int",
+ "ges ellschaft",
+ "▁L iving",
+ "▁Li ving",
+ "▁Liv ing",
+ "al lo",
+ "all o",
+ "▁S plit",
+ "▁Sp lit",
+ "▁ Split",
+ "dr u",
+ "d ru",
+ "ne ed",
+ "n eed",
+ "▁Дж он",
+ "▁Sw iss",
+ "▁sp raw",
+ "▁spr aw",
+ "▁be ho",
+ "▁beh o",
+ "▁fot ograf",
+ "▁ren contre",
+ "▁k is",
+ "▁ki s",
+ "▁sign ing",
+ "▁sig ning",
+ "ak ult",
+ "aku lt",
+ "▁index ing",
+ "ap or",
+ "a por",
+ "▁con ception",
+ "▁concept ion",
+ "▁conce ption",
+ "ag greg",
+ "agg reg",
+ "a ggreg",
+ "▁Са вез",
+ "▁aff air",
+ "ě ní",
+ "A ugust",
+ "▁се кре",
+ "▁miesz kań",
+ "UI Image",
+ "▁b ishop",
+ "▁bi shop",
+ "▁ bishop",
+ "▁serv ants",
+ "▁servant s",
+ "▁tr ail",
+ "▁tra il",
+ "di git",
+ "dig it",
+ "▁jo ins",
+ "▁join s",
+ "▁N ear",
+ "▁Ne ar",
+ "öff entlich",
+ "> {",
+ "▁sk ład",
+ "ge führt",
+ "gef ührt",
+ "▁Hol z",
+ "▁Milit är",
+ "ach i",
+ "ac hi",
+ "a chi",
+ "Up per",
+ "U pper",
+ "pi ne",
+ "pin e",
+ "p ine",
+ "ut zt",
+ "utz t",
+ "▁nu ova",
+ "ibr ation",
+ "▁B ien",
+ "▁Bi en",
+ "▁пер вый",
+ "▁первы й",
+ "▁Cre ating",
+ "On ce",
+ "▁ein mal",
+ "▁ge ometric",
+ "▁geomet ric",
+ "st vo",
+ "▁k W",
+ "▁decom position",
+ "▁com edy",
+ "▁come dy",
+ "▁activ ation",
+ "▁an gry",
+ "▁ang ry",
+ "ill eurs",
+ "ille urs",
+ "▁inst antly",
+ "▁instant ly",
+ "▁suggest ing",
+ "▁C lay",
+ "▁Cl ay",
+ "▁Cla y",
+ "co t",
+ "c ot",
+ "▁G én",
+ "▁Gé n",
+ "($ (",
+ "( $(",
+ "un wrap",
+ "▁lif ted",
+ "▁lift ed",
+ "▁K it",
+ "▁Ki t",
+ "▁ Kit",
+ "▁l inea",
+ "▁li nea",
+ "▁line a",
+ "▁lin ea",
+ "о к",
+ "ha rt",
+ "har t",
+ "h art",
+ "-> _",
+ "▁n uit",
+ "▁nu it",
+ "▁Iss ue",
+ "ли и",
+ "▁r öm",
+ "Task s",
+ "▁S r",
+ "▁se is",
+ "▁sei s",
+ "as ia",
+ "asi a",
+ "}} $.",
+ "}}$ .",
+ "} }$.",
+ ": {",
+ "control s",
+ "contr ols",
+ "▁S tim",
+ "▁St im",
+ "▁Re cht",
+ "▁Rec ht",
+ "ocia ción",
+ "oci ación",
+ "▁N atal",
+ "▁Na tal",
+ "▁Nat al",
+ "▁Philipp ines",
+ "ul en",
+ "ule n",
+ "u len",
+ "F ixed",
+ "▁switch ed",
+ "Z ip",
+ "os pel",
+ "osp el",
+ "▁нача ле",
+ "▁B lan",
+ "▁Bl an",
+ "▁Bla n",
+ "ur st",
+ "urs t",
+ "▁aut our",
+ "▁auto ur",
+ "C a",
+ "▁lat itude",
+ "▁F rei",
+ "▁Fre i",
+ "▁Fr ei",
+ "▁Mus ée",
+ "▁K urz",
+ "▁Kur z",
+ "▁Ku rz",
+ "▁reg ião",
+ "sw ap",
+ "▁h ate",
+ "▁ha te",
+ "▁hat e",
+ "▁mod ifications",
+ "▁modification s",
+ "▁modific ations",
+ "▁К ом",
+ "▁Ко м",
+ "▁Anto ine",
+ "ug a",
+ "u ga",
+ "RE CT",
+ "R ECT",
+ "ét er",
+ "é ter",
+ "G ROUP",
+ "▁sacr ific",
+ "▁W he",
+ "▁Wh e",
+ "▁Ste vens",
+ "▁Steve ns",
+ "▁Steven s",
+ "olog ische",
+ "Sum mary",
+ "ob s",
+ "o bs",
+ "hn en",
+ "h nen",
+ "< %=",
+ "di enst",
+ "d ienst",
+ "re mark",
+ "rem ark",
+ "r emark",
+ "▁veröff entlicht",
+ "е л",
+ "▁M ock",
+ "▁Mo ck",
+ "▁ Mock",
+ "▁Ль в",
+ "▁tr ês",
+ "g b",
+ "▁celebr ated",
+ "▁E b",
+ "▁c osta",
+ "▁co sta",
+ "▁cost a",
+ "▁cos ta",
+ "▁Ge ographic",
+ "▁att achment",
+ "▁attach ment",
+ "mann schaft",
+ "▁depend ence",
+ "� �",
+ "▁att itude",
+ "et al",
+ "eta l",
+ "e tal",
+ "vi c",
+ "v ic",
+ "ba ut",
+ "bau t",
+ "b aut",
+ "▁д ов",
+ "▁до в",
+ "▁ дов",
+ "▁inter ven",
+ "▁G ü",
+ "ón ica",
+ "ó nica",
+ "▁P on",
+ "▁Po n",
+ "▁dispon ible",
+ "▁F eb",
+ "▁Fe b",
+ "▁wor ship",
+ "▁Specific ally",
+ "H y",
+ "ij u",
+ "i ju",
+ "▁c b",
+ "▁ cb",
+ "▁sp ac",
+ "lev eland",
+ "level and",
+ "▁local idad",
+ "▁prec eding",
+ "▁preced ing",
+ "▁H essen",
+ "x p",
+ "▁W ein",
+ "▁We in",
+ "▁Wei n",
+ "▁Rom â",
+ "▁gi orno",
+ "▁gior no",
+ "▁квіт ня",
+ "lla ços",
+ "▁Academ ia",
+ "▁k ül",
+ "▁Å rs",
+ "▁на ј",
+ "uc lide",
+ "Inter net",
+ "Intern et",
+ "or ton",
+ "ort on",
+ "▁c orn",
+ "▁cor n",
+ "▁co rn",
+ "я ми",
+ "▁\" *",
+ "▁Fel ix",
+ "ap at",
+ "apa t",
+ "a pat",
+ "▁сво и",
+ "MI T",
+ "M IT",
+ "ma de",
+ "mad e",
+ "m ade",
+ "▁lo comot",
+ "хо да",
+ "ход а",
+ "F P",
+ "▁p m",
+ "▁ pm",
+ ".* ;",
+ "▁H amm",
+ "▁Ha mm",
+ "▁Ham m",
+ "` }",
+ "Layout Inflater",
+ "== \"",
+ "= =\"",
+ "▁E ur",
+ "▁Eu r",
+ "▁d ogs",
+ "▁do gs",
+ "▁dog s",
+ "же нии",
+ "▁a zon",
+ "▁az on",
+ "▁ azon",
+ "▁em ulator",
+ "▁r icon",
+ "▁ric on",
+ "▁ri con",
+ "be eld",
+ "▁н у",
+ "▁ ну",
+ "▁approxim ate",
+ "L M",
+ "▁B ond",
+ "▁Bo nd",
+ "▁Bon d",
+ "▁en h",
+ "ęd z",
+ "ę dz",
+ "▁s olit",
+ "▁so lit",
+ "▁sol it",
+ "Relative Layout",
+ "et eor",
+ "ete or",
+ "ament os",
+ "amento s",
+ "▁in direct",
+ "▁ind irect",
+ "ib ől",
+ "▁g ros",
+ "▁gr os",
+ "▁gro s",
+ "▁Original s",
+ "▁Origin als",
+ "▁Orig inals",
+ "comm ands",
+ "command s",
+ "Ex port",
+ "Exp ort",
+ "▁A vec",
+ "▁Av ec",
+ "▁sole mn",
+ "▁solem n",
+ "▁correct ion",
+ "▁corre ction",
+ "▁corr ection",
+ "▁про води",
+ "▁прово ди",
+ "▁Mo sk",
+ "▁Mos k",
+ "▁по до",
+ "▁под о",
+ "▁geb ied",
+ "▁nast ęp",
+ "▁D river",
+ "▁Dr iver",
+ "▁Drive r",
+ "▁ Driver",
+ "▁O ok",
+ "▁V ec",
+ "▁Ve c",
+ "▁ Vec",
+ "▁lung o",
+ "▁lun go",
+ "fi cos",
+ "fic os",
+ "fico s",
+ "f icos",
+ "▁s vol",
+ "▁sv ol",
+ "▁svo l",
+ "▁k id",
+ "▁ki d",
+ "n ja",
+ "▁H r",
+ "▁под дер",
+ "▁vis ibility",
+ "▁ visibility",
+ "▁M éd",
+ "▁Mé d",
+ "▁c pu",
+ "▁cp u",
+ "▁ cpu",
+ "dis cussion",
+ "As set",
+ "Ass et",
+ "▁def ense",
+ "▁Any one",
+ "▁Just in",
+ "is zt",
+ "isz t",
+ "▁Coll ins",
+ "▁Val ent",
+ "▁P ale",
+ "▁Pa le",
+ "▁Pal e",
+ "▁f uel",
+ "▁fue l",
+ "▁fu el",
+ "▁n ose",
+ "▁no se",
+ "▁nos e",
+ "rí guez",
+ "▁Sch les",
+ "▁Schl es",
+ "▁Mal ays",
+ "▁com mut",
+ "▁comm ut",
+ "dr o",
+ "d ro",
+ "ui ng",
+ "u ing",
+ "▁R ico",
+ "▁Ric o",
+ "▁Ri co",
+ "▁Em ma",
+ "or p",
+ "o rp",
+ "▁K irk",
+ "▁Kir k",
+ "▁Qu ando",
+ "▁Ne ue",
+ "▁Neu e",
+ "▁de mande",
+ "▁dem ande",
+ "▁demand e",
+ "▁C over",
+ "▁Co ver",
+ "▁Cov er",
+ "▁res cue",
+ "▁gew ählt",
+ "▁Cal endar",
+ "▁ Calendar",
+ "▁Mad onna",
+ "W P",
+ "os hi",
+ "osh i",
+ "▁M aven",
+ "▁Ma ven",
+ "▁b elle",
+ "▁be lle",
+ "▁bel le",
+ "▁bell e",
+ "▁w x",
+ "▁ wx",
+ "▁su gar",
+ "▁sug ar",
+ "▁Bet rieb",
+ "▁equilib rium",
+ "E AR",
+ "▁text s",
+ "▁tex ts",
+ "сло в",
+ "с лов",
+ "▁czerw ca",
+ "▁D üsseld",
+ "▁EL SE",
+ "▁am ery",
+ "▁amer y",
+ "▁a ni",
+ "▁an i",
+ "▁ ani",
+ "▁o bey",
+ "▁ob ey",
+ "▁N ell",
+ "▁Ne ll",
+ "▁Nel l",
+ "▁in ne",
+ "▁inn e",
+ "▁т ро",
+ "▁ тро",
+ "F D",
+ "cc o",
+ "c co",
+ "▁Z ob",
+ "▁Zo b",
+ "al ette",
+ "ale tte",
+ "alet te",
+ "a lette",
+ "▁má jus",
+ "ect ed",
+ "ec ted",
+ "e cted",
+ "▁Tur key",
+ "▁Turk ey",
+ "▁Wh ether",
+ "▁Whe ther",
+ "q i",
+ "▁ш то",
+ "▁head quarters",
+ "en di",
+ "end i",
+ "ar us",
+ "aru s",
+ "a rus",
+ "op us",
+ "o pus",
+ "▁з оло",
+ "▁зо ло",
+ "▁de stru",
+ "▁dest ru",
+ "▁L ok",
+ "▁Lo k",
+ "▁satisf action",
+ "() \r",
+ "( )\r",
+ "▁Т ер",
+ "▁Те р",
+ "Jo se",
+ "J ose",
+ "▁con quer",
+ "▁conqu er",
+ "▁E ffect",
+ "▁ Effect",
+ "Layout Params",
+ "ie z",
+ "i ez",
+ "▁extern s",
+ "▁gegen über",
+ "▁E SP",
+ "▁ES P",
+ "ol ta",
+ "olt a",
+ "process or",
+ "proc essor",
+ "▁K ult",
+ "▁Ku lt",
+ "▁Atl anta",
+ "▁t ier",
+ "▁ti er",
+ "▁tie r",
+ "Oper ator",
+ "▁ди а",
+ "▁пи сь",
+ "▁gro ß",
+ "▁he arts",
+ "▁heart s",
+ "▁hear ts",
+ "▁mill imeter",
+ "al though",
+ "alth ough",
+ "al les",
+ "all es",
+ "alle s",
+ "a lles",
+ "▁Mag ic",
+ "tr aining",
+ "tra ining",
+ "train ing",
+ "ol ine",
+ "oli ne",
+ "olin e",
+ "o line",
+ "▁орган і",
+ ">\\< ^",
+ "> \\<^",
+ "ці аль",
+ "ex ports",
+ "export s",
+ "Work book",
+ "▁вере сня",
+ "▁t eles",
+ "▁te les",
+ "▁tele s",
+ "▁tel es",
+ "▁econom y",
+ "▁econ omy",
+ "▁ec onomy",
+ "▁t rap",
+ "▁tr ap",
+ "▁tra p",
+ "▁ref use",
+ "▁str anger",
+ "▁strange r",
+ "▁stran ger",
+ "▁inst inct",
+ "по да",
+ "ol an",
+ "ola n",
+ "o lan",
+ "▁n ing",
+ "▁ni ng",
+ "▁nin g",
+ "▁ ning",
+ "inf late",
+ "infl ate",
+ "itat ea",
+ "itate a",
+ "ack s",
+ "ac ks",
+ "a cks",
+ "▁J oy",
+ "▁Jo y",
+ "FL AG",
+ "FLA G",
+ "ail and",
+ "ai land",
+ "▁sort i",
+ "▁sor ti",
+ "▁в пер",
+ "▁p én",
+ "▁pé n",
+ "Not hing",
+ "No thing",
+ "N othing",
+ "▁sz áz",
+ "▁Á ng",
+ "▁A UT",
+ "▁ AUT",
+ "Act ions",
+ "Action s",
+ "A ctions",
+ "E very",
+ "▁чер вня",
+ "▁авто мо",
+ "▁rout ine",
+ "▁e struct",
+ "▁est ruct",
+ "▁G ang",
+ "▁Ga ng",
+ "▁Gan g",
+ "▁h oles",
+ "▁ho les",
+ "▁hol es",
+ "▁hole s",
+ "th esis",
+ "thes is",
+ "▁con cl",
+ "▁conc l",
+ "▁p é",
+ "ri ers",
+ "rie rs",
+ "rier s",
+ "r iers",
+ "ро вой",
+ "рово й",
+ "р овой",
+ "ad ic",
+ "adi c",
+ "a dic",
+ "Sp eed",
+ "Spe ed",
+ "▁command ed",
+ "▁N azionale",
+ "▁Naz ionale",
+ "Man aged",
+ "▁DE CLARE",
+ "▁se dan",
+ "▁sed an",
+ "String s",
+ "Str ings",
+ "▁sa cred",
+ "▁sac red",
+ "▁sacr ed",
+ "ter such",
+ "ters uch",
+ "▁abit anti",
+ "br it",
+ "b rit",
+ "▁N CAA",
+ "▁NC AA",
+ "▁С П",
+ "▁a ged",
+ "▁ag ed",
+ "▁age d",
+ "▁ aged",
+ "▁Ch iesa",
+ "▁Chi esa",
+ "▁re vision",
+ "▁rev ision",
+ "▁revis ion",
+ "op ro",
+ "o pro",
+ "▁over write",
+ "emb ros",
+ "embro s",
+ "▁sort ie",
+ "▁sorti e",
+ "▁ot ten",
+ "▁ott en",
+ "xi v",
+ "x iv",
+ "▁d eli",
+ "▁de li",
+ "▁del i",
+ "▁A sp",
+ "▁As p",
+ "▁b alls",
+ "▁bal ls",
+ "▁ball s",
+ "ka f",
+ "k af",
+ "▁br ave",
+ "▁bra ve",
+ "▁все го",
+ "▁вс его",
+ "eg n",
+ "e gn",
+ "jp eg",
+ "▁O sten",
+ "▁Os ten",
+ "▁Ost en",
+ "Const ants",
+ "▁Inf antry",
+ "▁N ev",
+ "▁Ne v",
+ "▁я ких",
+ "▁як их",
+ "▁му ниципа",
+ "ci ja",
+ "c ija",
+ "▁p oem",
+ "▁po em",
+ "▁ne gro",
+ "▁neg ro",
+ "ха р",
+ "х ар",
+ "▁A sk",
+ "▁As k",
+ "▁a vo",
+ "▁av o",
+ "▁ avo",
+ "▁Me yer",
+ "▁Mey er",
+ "▁W esten",
+ "▁We sten",
+ "▁West en",
+ "▁Wes ten",
+ "▁o ko",
+ "▁ok o",
+ "▁ oko",
+ "ag in",
+ "agi n",
+ "a gin",
+ "▁Süd en",
+ "▁Sü den",
+ "ent ries",
+ "entr ies",
+ "▁Rep ublik",
+ "▁Repub lik",
+ "Collection View",
+ "-- -----",
+ "---- ---",
+ "--- ----",
+ "------ -",
+ "----- --",
+ "- ------",
+ "▁fire fox",
+ "▁alc une",
+ "▁фо то",
+ "▁отри ма",
+ "~~~~ ~~~~",
+ "▁Ра з",
+ "▁Com plex",
+ "▁Comp lex",
+ "▁Comple x",
+ "▁p ia",
+ "▁pi a",
+ "▁public ada",
+ "we i",
+ "w ei",
+ "ced ure",
+ "occup ation",
+ "▁medic ine",
+ "▁dr ove",
+ "▁dro ve",
+ "Pro blem",
+ "▁beg inner",
+ "▁begin ner",
+ "▁thorough ly",
+ "ur ia",
+ "uri a",
+ "u ria",
+ "av ant",
+ "ava nt",
+ "avan t",
+ "uch a",
+ "uc ha",
+ "u cha",
+ "▁l ever",
+ "▁le ver",
+ "▁lev er",
+ "▁te atro",
+ "▁teat ro",
+ "AV A",
+ "A VA",
+ "sq u",
+ "s qu",
+ "tr at",
+ "tra t",
+ "t rat",
+ "iv atal",
+ "iva tal",
+ "▁d irty",
+ "▁dir ty",
+ "▁se conde",
+ "▁second e",
+ "▁sec onde",
+ "▁grav it",
+ "▁pro position",
+ "▁prop osition",
+ "▁propos ition",
+ "h bar",
+ "om ini",
+ "omin i",
+ "omi ni",
+ "▁ ”",
+ "▁C amil",
+ "▁Cam il",
+ "▁Ca mil",
+ "▁qu een",
+ "▁que en",
+ "mod ifier",
+ "J an",
+ "▁l yr",
+ "▁ly r",
+ "Com boBox",
+ "ion ic",
+ "io nic",
+ "ioni c",
+ "i onic",
+ "▁h oly",
+ "▁ho ly",
+ "▁hol y",
+ "▁Sebast ian",
+ "| _{",
+ "▁{ @",
+ "▁мо жно",
+ "▁мож но",
+ "▁Cre ative",
+ "▁inter ess",
+ "▁inte ress",
+ "▁C T",
+ "▁ CT",
+ "i ções",
+ "▁ch ant",
+ "▁cha nt",
+ "▁ chant",
+ "▁wsp ół",
+ "▁Мекси ка",
+ "▁ran ked",
+ "▁rank ed",
+ "▁paździer nika",
+ "▁b rut",
+ "▁br ut",
+ "▁bru t",
+ "▁far ther",
+ "▁V erb",
+ "▁Ver b",
+ "▁Ve rb",
+ "▁S even",
+ "▁Se ven",
+ "lb l",
+ "l bl",
+ "▁mention s",
+ "▁ment ions",
+ "▁F ight",
+ "▁Fig ht",
+ "if en",
+ "ife n",
+ "i fen",
+ "▁b og",
+ "▁bo g",
+ "▁re gres",
+ "▁reg res",
+ "▁sc oring",
+ "ic ane",
+ "ica ne",
+ "ican e",
+ "▁El li",
+ "▁Ell i",
+ "▁pie rw",
+ "▁pier w",
+ "me asure",
+ "ński ej",
+ "ń skiej",
+ "# {",
+ "▁де ся",
+ "▁var maste",
+ "▁Un ix",
+ "I Z",
+ "iti é",
+ "Prim ary",
+ "▁Spring er",
+ "▁Spr inger",
+ "ün g",
+ "ü ng",
+ "▁an v",
+ "▁vers ione",
+ "▁version e",
+ "▁should ers",
+ "▁shoulder s",
+ "▁бри га",
+ "▁j av",
+ "▁ja v",
+ "▁ jav",
+ "lt al",
+ "l tal",
+ "▁kall aste",
+ "▁Mitch ell",
+ "▁wire less",
+ "▁wir eless",
+ "▁Á l",
+ "resp ons",
+ "co uld",
+ "cou ld",
+ "c ould",
+ "▁re lax",
+ "▁rel ax",
+ "▁rela x",
+ "▁ relax",
+ "Lo nd",
+ "L ond",
+ "ń cz",
+ "ство вал",
+ "ствова л",
+ "▁pol ski",
+ "en ç",
+ "za r",
+ "z ar",
+ "▁d type",
+ "▁dt ype",
+ "ow ned",
+ "own ed",
+ "un known",
+ "unk nown",
+ "▁m utable",
+ "▁mu table",
+ "▁mut able",
+ "▁ mutable",
+ "▁si empre",
+ "▁Mont real",
+ "▁loc ate",
+ "▁tr aces",
+ "▁tra ces",
+ "▁trace s",
+ "▁trac es",
+ "▁ins gesamt",
+ "▁N il",
+ "▁Ni l",
+ "▁ Nil",
+ "▁п рода",
+ "▁про да",
+ "▁прод а",
+ "▁War ner",
+ "▁N au",
+ "▁Na u",
+ "tri angle",
+ "▁concentr ation",
+ "▁gentle men",
+ "äch t",
+ "ä cht",
+ "fil ters",
+ "filter s",
+ "inci pal",
+ "VAL ID",
+ "▁де пута",
+ "ad ó",
+ "▁kon st",
+ "gs å",
+ "ag as",
+ "aga s",
+ "a gas",
+ "▁meille ur",
+ "▁дан ным",
+ "є дна",
+ "en coded",
+ "enc oded",
+ "encode d",
+ "< '",
+ "▁she ets",
+ "▁sheet s",
+ "▁ sheets",
+ "cu ador",
+ "▁викори стову",
+ "▁De put",
+ "▁Dep ut",
+ "▁man ière",
+ "ą g",
+ "cs ol",
+ "c sol",
+ ")$ -",
+ ") $-",
+ "UI View",
+ "▁mill ones",
+ "▁E hren",
+ "▁Ehr en",
+ "Si l",
+ "S il",
+ "▁a tac",
+ "▁at ac",
+ "▁C old",
+ "▁Col d",
+ "▁Co ld",
+ "\" \\",
+ "▁appro ached",
+ "▁approach ed",
+ "▁Års med",
+ "W M",
+ "▁De port",
+ "▁Dep ort",
+ "mi s",
+ "m is",
+ "and box",
+ "ob serv",
+ "obs erv",
+ "set ting",
+ "sett ing",
+ "ha tó",
+ "hat ó",
+ "h ató",
+ "▁s trat",
+ "▁st rat",
+ "▁str at",
+ "▁stra t",
+ "▁s pre",
+ "▁sp re",
+ "▁spr e",
+ "▁ spre",
+ "▁person ne",
+ "▁pers onne",
+ "▁personn e",
+ "▁dir ige",
+ "▁dirig e",
+ "pu ll",
+ "p ull",
+ "da ting",
+ "dat ing",
+ "d ating",
+ "▁F act",
+ "▁Fa ct",
+ "▁Fac t",
+ "▁ Fact",
+ "▁manip ulate",
+ "▁M AC",
+ "▁MA C",
+ "▁d ej",
+ "▁de j",
+ "ult imo",
+ "F X",
+ "Li fe",
+ "L ife",
+ "▁c rack",
+ "▁cr ack",
+ "▁cra ck",
+ "▁m í",
+ "▁п ове",
+ "▁по ве",
+ "▁пов е",
+ "▁w ore",
+ "▁wor e",
+ "▁wo re",
+ "univers ité",
+ "▁form ulas",
+ "▁formula s",
+ "▁Elis abeth",
+ "pl ots",
+ "plot s",
+ "mi le",
+ "mil e",
+ "m ile",
+ "▁me nor",
+ "▁men or",
+ "ти л",
+ "т ил",
+ "key word",
+ "▁Balt imore",
+ "hr er",
+ "hre r",
+ "h rer",
+ "▁C lement",
+ "▁Cl ement",
+ "▁Cle ment",
+ "vi m",
+ "v im",
+ "ra ss",
+ "ras s",
+ "r ass",
+ "T ake",
+ "▁cím ű",
+ "▁Con vention",
+ "at ge",
+ "se ed",
+ "see d",
+ "s eed",
+ "▁D í",
+ "▁Sp ider",
+ "ah oo",
+ "aho o",
+ "▁име ет",
+ "ühr t",
+ "üh rt",
+ "▁по писа",
+ "▁C ot",
+ "▁Co t",
+ "▁no bles",
+ "▁noble s",
+ "▁nob les",
+ "RE SS",
+ "RES S",
+ "▁che min",
+ "▁chem in",
+ "▁gł ówn",
+ "G G",
+ "▁German ia",
+ "▁Ger mania",
+ "▁Germ ania",
+ "▁Alexand re",
+ "he ns",
+ "hen s",
+ "h ens",
+ "sw ift",
+ "oo p",
+ "o op",
+ "Sub view",
+ "▁requ iring",
+ "ęd zy",
+ "ędz y",
+ "▁f ict",
+ "▁fi ct",
+ "▁fic t",
+ "▁Кон стан",
+ "▁dé put",
+ "▁dép ut",
+ "▁surpr ising",
+ "▁de ix",
+ "▁dei x",
+ "▁unter schied",
+ "in son",
+ "ins on",
+ "▁Char acter",
+ "▁ Character",
+ "▁g estion",
+ "▁ges tion",
+ "▁gest ion",
+ "ch us",
+ "c hus",
+ "com es",
+ "co mes",
+ "come s",
+ "▁n eur",
+ "▁ne ur",
+ "▁neu r",
+ "▁ neur",
+ "▁ye ux",
+ "ol lar",
+ "oll ar",
+ "▁par ad",
+ "▁para d",
+ "▁pa rad",
+ "▁mag giore",
+ "▁maggio re",
+ "▁maggior e",
+ "TR AN",
+ "▁vo tre",
+ "▁vot re",
+ "▁des cent",
+ "▁desc ent",
+ "▁I con",
+ "▁ Icon",
+ "▁Jud ge",
+ "▁occup ation",
+ "▁ occupation",
+ "ep ing",
+ "e ping",
+ "▁ton gue",
+ "▁tong ue",
+ "▁En llaços",
+ "ru f",
+ "r uf",
+ "▁prote in",
+ "▁prot ein",
+ "▁vis itors",
+ "▁visit ors",
+ "▁visitor s",
+ "ax y",
+ "a xy",
+ "es ten",
+ "est en",
+ "este n",
+ "e sten",
+ "bl ica",
+ "blic a",
+ "b lica",
+ "h w",
+ "▁spir its",
+ "▁spirit s",
+ "▁redu ces",
+ "▁reduce s",
+ "▁м ен",
+ "▁ме н",
+ "▁ мен",
+ "▁L amb",
+ "▁La mb",
+ "▁Lam b",
+ "▁M ine",
+ "▁Min e",
+ "▁Mi ne",
+ "▁ver ified",
+ "▁B aby",
+ "▁Ba by",
+ "▁Bab y",
+ "▁pr ize",
+ "▁pri ze",
+ "в ър",
+ "▁rat ings",
+ "▁rating s",
+ "▁f ore",
+ "▁for e",
+ "▁fo re",
+ "▁ fore",
+ "as ha",
+ "ash a",
+ "a sha",
+ "ur rence",
+ "urr ence",
+ "▁int ér",
+ "▁Ol ímp",
+ "cr a",
+ "c ra",
+ "▁comput ational",
+ "▁computation al",
+ "ir che",
+ "irc he",
+ ".: ",
+ "▁illustr ated",
+ "▁illustrate d",
+ "▁Sh are",
+ "▁house holds",
+ "▁household s",
+ "▁con volution",
+ "oe md",
+ "oem d",
+ "▁zd oby",
+ "▁zdob y",
+ "cc c",
+ "c cc",
+ "▁quant ities",
+ "Ch e",
+ "C he",
+ "Sh ould",
+ "▁ge nius",
+ "▁gen ius",
+ "ad j",
+ "a dj",
+ "х ва",
+ "Пе тер",
+ "EM A",
+ "E MA",
+ "▁R ights",
+ "▁Right s",
+ "▁E li",
+ "▁El i",
+ "VA R",
+ "V AR",
+ "ш ло",
+ "▁з бір",
+ "ift ung",
+ "▁cont ributed",
+ "▁contrib uted",
+ "▁contribu ted",
+ "▁contribute d",
+ "ze f",
+ "z ef",
+ "▁CH AR",
+ "▁ CHAR",
+ "▁S ib",
+ "▁Si b",
+ "▁M ant",
+ "▁Man t",
+ "▁Ma nt",
+ "▁свя зи",
+ "▁java fx",
+ "▁c ependant",
+ "▁in tu",
+ "▁int u",
+ "▁т вор",
+ "▁ Ó",
+ "gu er",
+ "gue r",
+ "g uer",
+ "ra do",
+ "rad o",
+ "r ado",
+ "▁Re vol",
+ "▁Rev ol",
+ "▁fé min",
+ "▁Or leans",
+ "▁p oj",
+ "▁po j",
+ "▁p rez",
+ "▁pr ez",
+ "▁pre z",
+ "Te x",
+ "T ex",
+ "ou wd",
+ "ouw d",
+ "? (",
+ "▁L IM",
+ "▁LI M",
+ "ist ique",
+ "isti que",
+ "es ar",
+ "esa r",
+ "▁he ures",
+ "ic ki",
+ "ick i",
+ "i cki",
+ "▁d bo",
+ "▁db o",
+ "▁ dbo",
+ "sk ih",
+ "ski h",
+ "s kih",
+ "conf irm",
+ "▁vil ág",
+ "▁ci utat",
+ "▁D R",
+ "▁ DR",
+ "▁Haw ai",
+ "ch ed",
+ "che d",
+ "c hed",
+ "▁s pher",
+ "▁sp her",
+ "▁Art ikel",
+ "▁Multi ple",
+ "ci u",
+ "c iu",
+ "▁м ы",
+ "▁ мы",
+ "▁lip ca",
+ "]( /",
+ "] (/",
+ "Str ategy",
+ "▁Al abama",
+ "SD K",
+ "S DK",
+ "UT C",
+ "U TC",
+ "__ .",
+ "_ _.",
+ "Arg uments",
+ "Argument s",
+ "▁set ContentView",
+ "î le",
+ "By Val",
+ "▁J VM",
+ "юще го",
+ "▁Leon ard",
+ "▁just ify",
+ "це м",
+ "ц ем",
+ "▁n ab",
+ "▁na b",
+ "▁ nab",
+ "CCE SS",
+ "C CESS",
+ "▁hope s",
+ "▁ho pes",
+ "▁hop es",
+ ") &",
+ "se ro",
+ "ser o",
+ "s ero",
+ "▁за й",
+ "слі д",
+ "▁R ég",
+ "▁Ré g",
+ "▁S ang",
+ "▁San g",
+ "▁Sa ng",
+ "▁f ung",
+ "▁fun g",
+ "▁fu ng",
+ "ba ar",
+ "b aar",
+ "▁coff ee",
+ "ass embly",
+ "▁В ін",
+ "▁Ві н",
+ "э й",
+ "▁comp rend",
+ "▁compr end",
+ "fil led",
+ "fill ed",
+ "f illed",
+ "р д",
+ "od ia",
+ "odi a",
+ "o dia",
+ "▁g ens",
+ "▁ge ns",
+ "▁gen s",
+ "▁ gens",
+ "fl uss",
+ "flu ss",
+ "f luss",
+ "Draw able",
+ "▁sur ve",
+ "▁surv e",
+ "Set up",
+ "▁n ależ",
+ "▁conj unto",
+ "▁Е го",
+ "▁old al",
+ "▁ol dal",
+ "▁ver bose",
+ "▁verb ose",
+ "▁Elect ric",
+ "▁H arrison",
+ "▁Harr ison",
+ "▁Harris on",
+ "en gen",
+ "eng en",
+ "par agraph",
+ "para graph",
+ "▁n ouvelles",
+ "▁nouve lles",
+ "▁nouvelle s",
+ "▁вре ме",
+ "▁m emor",
+ "▁me mor",
+ "▁mem or",
+ "▁mayo ría",
+ "▁mayor ía",
+ "са д",
+ "▁bat aille",
+ "▁bata ille",
+ "▁therm al",
+ "▁ther mal",
+ "▁Хро нологи",
+ "▁B etter",
+ "▁Bet ter",
+ "by e",
+ "b ye",
+ "▁теа тра",
+ "ro e",
+ "r oe",
+ "▁se gle",
+ "▁seg le",
+ "ro tt",
+ "rot t",
+ "r ott",
+ "▁opin ions",
+ "▁opinion s",
+ ")} )",
+ ") })",
+ "üh le",
+ "ühl e",
+ "▁G ün",
+ "▁Gü n",
+ "▁ Щ",
+ "b ól",
+ "▁Lar ry",
+ "▁so lic",
+ "▁sol ic",
+ "▁z war",
+ "▁zw ar",
+ "▁Car oline",
+ "▁Carol ine",
+ "▁Reich s",
+ "Ext ensions",
+ "Extension s",
+ "mi gr",
+ "m igr",
+ ": @",
+ "▁en umerate",
+ "▁enumer ate",
+ "▁ enumerate",
+ "▁eigen en",
+ "▁eig enen",
+ "▁expl ore",
+ "▁explo re",
+ "ém u",
+ "é mu",
+ "▁g at",
+ "▁ga t",
+ "▁ gat",
+ "▁imper ial",
+ "▁Us ually",
+ "▁t ud",
+ "▁tu d",
+ "▁у кра",
+ "hi m",
+ "h im",
+ "▁cor ners",
+ "▁corner s",
+ "▁corn ers",
+ "▁S ER",
+ "▁SE R",
+ "▁ SER",
+ "▁interpre ter",
+ "▁interpret er",
+ "▁I ce",
+ "▁amount s",
+ "▁P ala",
+ "▁Pa la",
+ "▁Pal a",
+ "▁t inha",
+ "▁tin ha",
+ "vo le",
+ "vol e",
+ "v ole",
+ "▁g le",
+ "▁gl e",
+ "▁ gle",
+ "uc ci",
+ "▁sie he",
+ "Jac k",
+ "J ack",
+ "▁w oll",
+ "▁wo ll",
+ "▁wol l",
+ "▁e lder",
+ "▁el der",
+ "▁ко раб",
+ "▁eng ag",
+ "▁La urent",
+ "▁Laur ent",
+ "▁Lau rent",
+ "▁ach iev",
+ "ist ik",
+ "isti k",
+ "ar ct",
+ "arc t",
+ "тно го",
+ "т ного",
+ "▁g ir",
+ "▁gi r",
+ "▁Sing h",
+ "▁Sin gh",
+ "math op",
+ "US A",
+ "U SA",
+ "▁Pro jekt",
+ "▁de be",
+ "▁deb e",
+ "richt ung",
+ "r ichtung",
+ "▁T sch",
+ "▁Ts ch",
+ "um inate",
+ "umin ate",
+ "▁s zó",
+ "▁sz ó",
+ "ly ph",
+ "зи дент",
+ "зиден т",
+ "▁lim itations",
+ "▁limit ations",
+ "▁limitation s",
+ "юще й",
+ "▁b ila",
+ "▁bi la",
+ "▁bil a",
+ "P ush",
+ "▁off ering",
+ "▁offer ing",
+ "ien nes",
+ "ienne s",
+ "ienn es",
+ "i ennes",
+ "Fr i",
+ "F ri",
+ "▁post gresql",
+ "▁ postgresql",
+ "▁Tom my",
+ "▁partic olare",
+ "▁stolet í",
+ "▁ar rib",
+ "▁arr ib",
+ "▁E va",
+ "▁Ev a",
+ "sch ool",
+ "▁v endor",
+ "▁ven dor",
+ "▁vend or",
+ "▁ vendor",
+ "▁D allas",
+ "▁Dal las",
+ "▁pro long",
+ "CRE ATE",
+ "C REATE",
+ "▁suiv ante",
+ "STAT US",
+ "l à",
+ "k v",
+ "▁h äufig",
+ "▁Agr icult",
+ "▁h uit",
+ "▁hu it",
+ "▁in oltre",
+ "▁L loyd",
+ "▁францу з",
+ "▁вы пол",
+ "▁faith ful",
+ "▁В ар",
+ "▁Ва р",
+ "▁ver l",
+ "▁ve rl",
+ "▁ju ego",
+ "▁Резу лтати",
+ ", ...,",
+ "▁implicit ly",
+ "ir ks",
+ "irk s",
+ "Cal cul",
+ "▁m eses",
+ "▁mes es",
+ "om ed",
+ "ome d",
+ "o med",
+ "▁p ak",
+ "▁pa k",
+ "he rit",
+ "her it",
+ "▁opt ical",
+ "▁І сторія",
+ "ve is",
+ "▁capital e",
+ "▁capit ale",
+ "place holder",
+ "int rag",
+ "▁At las",
+ "▁Atl as",
+ "▁ Atlas",
+ ")] ;",
+ ") ];",
+ "ic ons",
+ "ico ns",
+ "icon s",
+ "i cons",
+ "▁B ent",
+ "▁Be nt",
+ "▁Ben t",
+ "▁W idget",
+ "▁ Widget",
+ "▁vol unt",
+ "av o",
+ "a vo",
+ "ég r",
+ "é gr",
+ "li ge",
+ "lig e",
+ "l ige",
+ "▁N AME",
+ "▁NA ME",
+ "▁ NAME",
+ "▁ab stra",
+ "▁abs tra",
+ "▁f ís",
+ "▁B rowser",
+ "▁Brow ser",
+ "▁ Browser",
+ "▁b ush",
+ "▁bu sh",
+ "▁bus h",
+ "ha ll",
+ "hal l",
+ "h all",
+ "▁cloud s",
+ "▁S UB",
+ "▁SU B",
+ "▁ SUB",
+ "▁t andis",
+ "▁tan dis",
+ "▁Common wealth",
+ "та я",
+ "▁exha ust",
+ "________ ________",
+ "▁Stat istics",
+ "▁Statist ics",
+ "▁Relig ion",
+ "▁Mu ham",
+ "ual s",
+ "ua ls",
+ "u als",
+ "go to",
+ "got o",
+ "g oto",
+ "Dig ital",
+ "Famil y",
+ "▁B un",
+ "▁Bu n",
+ "let in",
+ "Man agement",
+ "▁cap abilities",
+ "an nten",
+ "ann ten",
+ "annt en",
+ "annte n",
+ "▁се бе",
+ "▁st ays",
+ "▁stay s",
+ "▁sta ys",
+ "kt er",
+ "kte r",
+ "k ter",
+ "▁d ost",
+ "▁do st",
+ "▁dos t",
+ "▁Т ре",
+ "ло вич",
+ "лови ч",
+ "л ович",
+ "▁d ying",
+ "▁dy ing",
+ "se ctions",
+ "section s",
+ "sect ions",
+ "án os",
+ "á nos",
+ "▁app arten",
+ "▁appar ten",
+ "▁appart en",
+ "▁zo als",
+ "▁dr essed",
+ "▁dress ed",
+ "▁com press",
+ "▁comp ress",
+ "▁compr ess",
+ "ń ska",
+ "▁sierp nia",
+ "▁ти ту",
+ "diction ary",
+ "d ictionary",
+ "▁r abb",
+ "▁ra bb",
+ "▁vé rit",
+ "В о",
+ "▁sing leton",
+ "▁single ton",
+ "▁v ital",
+ "▁vi tal",
+ "▁vit al",
+ "▁vita l",
+ "Ref resh",
+ "ме ль",
+ "м ель",
+ "▁Z h",
+ "▁Af ghan",
+ "in kel",
+ "ink el",
+ "aa aa",
+ "▁particip ants",
+ "ar in",
+ "ari n",
+ "a rin",
+ "▁M old",
+ "▁Mo ld",
+ "▁Mol d",
+ "▁prim eros",
+ "▁prime ros",
+ "▁primer os",
+ "▁ра н",
+ "▁р ан",
+ "▁ ран",
+ "▁А мери",
+ "▁restaur ant",
+ "év el",
+ "é vel",
+ "▁S L",
+ "▁ SL",
+ "▁R ey",
+ "▁Re y",
+ "ch as",
+ "cha s",
+ "c has",
+ "▁elect rons",
+ "▁electron s",
+ "▁electro ns",
+ "▁Pitt s",
+ "▁Pit ts",
+ "▁J ules",
+ "▁Jul es",
+ "▁Ju les",
+ "ма й",
+ "en ant",
+ "ena nt",
+ "e nant",
+ "- }",
+ "ла д",
+ "▁Мос ква",
+ "▁Моск ва",
+ "go m",
+ "g om",
+ "▁Fern ández",
+ "fun d",
+ "fu nd",
+ "f und",
+ "int erno",
+ "inter no",
+ "intern o",
+ "▁M ari",
+ "▁Mar i",
+ "▁Ma ri",
+ "▁r ius",
+ "▁ri us",
+ "▁Pro zent",
+ "ст рі",
+ "стр і",
+ "▁в нут",
+ "ant erie",
+ "ante rie",
+ "anter ie",
+ "▁п рис",
+ "▁при с",
+ "▁пр ис",
+ "▁о бы",
+ "▁об ы",
+ "▁M arina",
+ "▁Mar ina",
+ "▁Mari na",
+ "▁occ urrence",
+ "▁occur rence",
+ "▁occurr ence",
+ "ri kt",
+ "rik t",
+ "r ikt",
+ "▁фи зи",
+ "▁sch wer",
+ "▁schw er",
+ "▁Г ре",
+ "Re set",
+ "Res et",
+ "▁much o",
+ "▁mu cho",
+ "an dr",
+ "and r",
+ "▁W ies",
+ "▁Wi es",
+ "▁Wie s",
+ "▁Ke ith",
+ "▁Jul ian",
+ "▁Juli an",
+ "▁Julia n",
+ "▁c ole",
+ "▁col e",
+ "▁co le",
+ "▁ cole",
+ "ci endo",
+ "c iendo",
+ "▁Cont empor",
+ "et ry",
+ "etr y",
+ "e try",
+ "el ian",
+ "eli an",
+ "elia n",
+ "ги и",
+ "▁го ло",
+ "▁г оло",
+ "▁d él",
+ "▁dé l",
+ "▁de cent",
+ "▁dec ent",
+ "▁dece nt",
+ "Р СР",
+ "▁sze ptember",
+ "ме ст",
+ "cast le",
+ "▁держа в",
+ "}\" )",
+ "} \")",
+ "▁ASC II",
+ "▁G len",
+ "▁Gl en",
+ "itzer land",
+ "T oggle",
+ "▁trad icional",
+ "▁P lat",
+ "▁Pl at",
+ "▁Pla t",
+ "ve e",
+ "v ee",
+ "ab gerufen",
+ "( |",
+ "CL I",
+ "C LI",
+ "}} $,",
+ "}}$ ,",
+ "} }$,",
+ "▁Bow l",
+ "▁M ale",
+ "▁Ma le",
+ "▁Mal e",
+ "▁B res",
+ "▁Br es",
+ "▁Bre s",
+ "▁п си",
+ "▁Ch allenge",
+ "z ó",
+ "▁pro jekt",
+ "▁neg oti",
+ "ab ove",
+ "a bove",
+ "▁пери о",
+ "▁long est",
+ "▁lon gest",
+ "auth entic",
+ "▁tr adu",
+ "▁tra du",
+ "▁trad u",
+ "▁mujer es",
+ "▁And re",
+ "▁ha dn",
+ "▁had n",
+ "▁Sch ule",
+ "▁Schul e",
+ "ode l",
+ "od el",
+ "o del",
+ "ble d",
+ "bl ed",
+ "b led",
+ "▁T rade",
+ "▁Tr ade",
+ "▁Tra de",
+ "▁Trad e",
+ "▁m obil",
+ "▁mo bil",
+ "▁mob il",
+ "▁alg unas",
+ "▁L ak",
+ "▁La k",
+ "▁Connect icut",
+ "▁al co",
+ "▁alc o",
+ "▁Sel bst",
+ "i ł",
+ "▁a lb",
+ "▁al b",
+ "ouver neur",
+ "ouvern eur",
+ "▁s r",
+ "▁ sr",
+ "▁v ba",
+ "▁vb a",
+ "lo ped",
+ "lop ed",
+ "l oped",
+ "▁Par tei",
+ "▁Part ei",
+ "▁Parte i",
+ "ua te",
+ "u ate",
+ "▁Auth entication",
+ "▁ Authentication",
+ "be i",
+ "b ei",
+ "}} .",
+ "} }.",
+ "▁kon nten",
+ "▁konn ten",
+ "▁konnte n",
+ "▁до по",
+ "▁h yd",
+ "▁hy d",
+ "Off ice",
+ "d onnées",
+ "▁C leveland",
+ "ri ta",
+ "rit a",
+ "r ita",
+ "ío s",
+ "í os",
+ "▁вы ше",
+ "▁Ro berts",
+ "▁Robert s",
+ "▁é lections",
+ "▁élect ions",
+ "▁' ')",
+ "▁'' )",
+ "▁publish ing",
+ "▁b apt",
+ "▁ba pt",
+ "<> ();",
+ "< >();",
+ "miss ing",
+ "mis sing",
+ "рова но",
+ "рован о",
+ "р овано",
+ "▁ho using",
+ "▁hous ing",
+ "▁in ference",
+ "▁infer ence",
+ "▁Rena issance",
+ "▁r èg",
+ "▁Ste ph",
+ "▁Step h",
+ "CE S",
+ "C ES",
+ "ER E",
+ "E RE",
+ "ке т",
+ "к ет",
+ "O U",
+ "▁group ing",
+ "ver kehr",
+ "ji h",
+ "j ih",
+ "ag li",
+ "▁mil k",
+ "la it",
+ "l ait",
+ "St age",
+ "▁by ly",
+ "▁byl y",
+ "▁wood en",
+ "▁wo oden",
+ "ke ley",
+ "kel ey",
+ "kele y",
+ "et ra",
+ "etr a",
+ "e tra",
+ "▁P eg",
+ "▁Pe g",
+ "▁don né",
+ "▁donn é",
+ "ad al",
+ "ada l",
+ "a dal",
+ "sequ ently",
+ "▁ins besondere",
+ "EL D",
+ "E LD",
+ "▁M am",
+ "▁Ma m",
+ "▁vol te",
+ "▁volt e",
+ "▁pro spect",
+ "▁pros pect",
+ "но ве",
+ "нов е",
+ "н ове",
+ "▁den oted",
+ "▁denote d",
+ "▁over lay",
+ "Per mission",
+ "Perm ission",
+ "ee n",
+ "e en",
+ "▁E M",
+ "▁ EM",
+ "▁u z",
+ "▁ uz",
+ "M c",
+ "ol it",
+ "oli t",
+ "o lit",
+ "▁ser vi",
+ "▁serv i",
+ "▁He idel",
+ "▁Wien er",
+ "▁Wi ener",
+ "▁Wie ner",
+ "▁il legal",
+ "▁predict ions",
+ "▁prediction s",
+ "▁go og",
+ "ho n",
+ "h on",
+ "▁Cin ema",
+ "▁ре волю",
+ "▁R ule",
+ "▁Ru le",
+ "▁ Rule",
+ "wo d",
+ "w od",
+ "▁rad iation",
+ "▁radi ation",
+ "o ł",
+ "ово ї",
+ "▁Per form",
+ "▁prison er",
+ "▁a met",
+ "▁am et",
+ "▁fig ura",
+ "▁figur a",
+ "▁Comm ander",
+ "▁Command er",
+ "▁о фициаль",
+ "▁t rov",
+ "▁tr ov",
+ "▁tro v",
+ "▁a cted",
+ "▁act ed",
+ "▁ac ted",
+ "▁work flow",
+ "▁Республи ки",
+ "▁guid ance",
+ "▁м ене",
+ "▁ме не",
+ "▁мен е",
+ "▁ мене",
+ "N ational",
+ "▁K el",
+ "▁Ke l",
+ "web pack",
+ "про стра",
+ "▁llam ado",
+ "al og",
+ "alo g",
+ "a log",
+ "ter ra",
+ "ix en",
+ "le graph",
+ "leg raph",
+ "ä ischen",
+ "▁teach ers",
+ "▁teacher s",
+ "ud en",
+ "ude n",
+ "u den",
+ "▁o gså",
+ "pos sible",
+ "poss ible",
+ "▁S oul",
+ "▁So ul",
+ "▁Sou l",
+ "▁Ge ography",
+ "▁за да",
+ "hi t",
+ "h it",
+ "▁an ger",
+ "▁ang er",
+ "▁ange r",
+ "▁ anger",
+ "▁rem porte",
+ "▁remp orte",
+ "Po d",
+ "P od",
+ "ч ке",
+ "▁a ria",
+ "▁ar ia",
+ "▁ aria",
+ "▁A stronom",
+ "ch apter",
+ "▁f ork",
+ "▁for k",
+ "▁Cu ando",
+ "men se",
+ "m ense",
+ "▁Christ ians",
+ "▁Christian s",
+ "g c",
+ "▁# (",
+ "Or gan",
+ "▁ste ady",
+ "▁stead y",
+ "ps e",
+ "p se",
+ "жи ть",
+ "ig nes",
+ "ign es",
+ "igne s",
+ "ater ra",
+ "a terra",
+ "mo vie",
+ "mov ie",
+ "m ovie",
+ "pos ta",
+ "po sta",
+ "post a",
+ "p osta",
+ "ra ste",
+ "ras te",
+ "r aste",
+ "▁Res source",
+ "▁Ress ource",
+ "▁Pa ís",
+ "▁( );",
+ "▁() ;",
+ "▁ ();",
+ "▁pen alty",
+ "т т",
+ "▁tras fer",
+ "cent ury",
+ "▁clean er",
+ "sel enium",
+ "s elenium",
+ "ort heast",
+ "orth east",
+ "xi c",
+ "x ic",
+ "лі ї",
+ "л ії",
+ "▁ingles e",
+ "▁T ang",
+ "▁Ta ng",
+ "▁Tan g",
+ "▁g ods",
+ "▁go ds",
+ "▁god s",
+ "fr ent",
+ "fre nt",
+ "f rent",
+ "ci ente",
+ "cient e",
+ "c iente",
+ "st arts",
+ "start s",
+ "star ts",
+ "▁mus ica",
+ "▁music a",
+ "ymnas ium",
+ "-- --+",
+ "---- +",
+ "--- -+",
+ "- ---+",
+ "▁ter rest",
+ "▁terre st",
+ "▁retr ieved",
+ "▁retrieve d",
+ "ia re",
+ "iar e",
+ "i are",
+ "un ning",
+ "unn ing",
+ "▁Mar cus",
+ "▁Marc us",
+ "▁prom ote",
+ "war ning",
+ "warn ing",
+ "w arning",
+ "ты й",
+ "т ый",
+ "}) $,",
+ "})$ ,",
+ "} )$,",
+ "Trans port",
+ "▁re son",
+ "▁res on",
+ "▁C lo",
+ "▁Cl o",
+ "▁e rm",
+ "▁er m",
+ "▁ erm",
+ "▁elimin ate",
+ "▁elim inate",
+ "he imer",
+ "heim er",
+ "▁s aves",
+ "▁sa ves",
+ "▁sav es",
+ "▁save s",
+ "▁pr ayer",
+ "▁pra yer",
+ "▁pray er",
+ "Class es",
+ "Ex press",
+ "Exp ress",
+ "Expr ess",
+ "▁Akadem ie",
+ "El se",
+ "Tu rn",
+ "T urn",
+ "▁ik ke",
+ "▁re i",
+ "▁r ei",
+ "▁ rei",
+ "▁di rett",
+ "▁dire tt",
+ "▁dir ett",
+ "▁R ost",
+ "▁Ro st",
+ "▁Ros t",
+ "▁P apa",
+ "▁Pa pa",
+ "▁Pap a",
+ "▁j sf",
+ "▁js f",
+ "ле нием",
+ "ление м",
+ "▁T ul",
+ "▁Tu l",
+ "▁Z ak",
+ "▁Za k",
+ "▁niem ieck",
+ "T w",
+ "am our",
+ "amo ur",
+ "ne sted",
+ "nes ted",
+ "nest ed",
+ "n ested",
+ "pp ets",
+ "ppe ts",
+ "ppet s",
+ "ш п",
+ "di t",
+ "d it",
+ "зе н",
+ "з ен",
+ "zy ma",
+ "zym a",
+ "hr te",
+ "Constra ints",
+ "Constraint s",
+ "▁own ership",
+ "▁owner ship",
+ "Ar m",
+ "A rm",
+ "▁cons umption",
+ "▁consum ption",
+ "▁f et",
+ "▁fe t",
+ "iv ari",
+ "iva ri",
+ "i vari",
+ "ch rom",
+ "chr om",
+ "set Attribute",
+ "▁com pose",
+ "▁comp ose",
+ "▁compos e",
+ "▁ compose",
+ "▁back ing",
+ "▁P az",
+ "▁Pa z",
+ "▁s cri",
+ "▁sc ri",
+ "▁scr i",
+ "▁ scri",
+ "▁Me chan",
+ "▁Nor way",
+ "▁J up",
+ "▁Ju p",
+ "▁m ér",
+ "▁mé r",
+ "▁administr ator",
+ "▁c abe",
+ "▁ca be",
+ "▁cab e",
+ "ival ent",
+ "▁thr one",
+ "▁thro ne",
+ "▁d ues",
+ "▁du es",
+ "▁due s",
+ "▁hum or",
+ "▁hu mor",
+ "▁A dri",
+ "▁Ad ri",
+ "▁ab ort",
+ "ña s",
+ "ñ as",
+ "▁Ки їв",
+ "j ící",
+ "▁zwe ite",
+ "▁zwei te",
+ "▁do ub",
+ "▁dou b",
+ "er shell",
+ "ers hell",
+ "шо й",
+ "▁F am",
+ "▁Fa m",
+ "å k",
+ "▁twe ede",
+ "▁twee de",
+ "▁R ib",
+ "▁Ri b",
+ "▁f ør",
+ "pc ión",
+ "p ción",
+ "in ned",
+ "inn ed",
+ "rv m",
+ "r vm",
+ "▁App ar",
+ "▁Ap par",
+ "▁D j",
+ "▁S hang",
+ "▁Sh ang",
+ "Dist ance",
+ "D istance",
+ "▁d awn",
+ "▁da wn",
+ "▁ dawn",
+ "▁Mat th",
+ "▁Matt h",
+ "▁err ichtet",
+ "ph antom",
+ "phan tom",
+ "▁re leases",
+ "▁release s",
+ "Recogn izer",
+ "▁K op",
+ "▁Ko p",
+ "▁P ul",
+ "▁Pu l",
+ "u é",
+ "na ts",
+ "nat s",
+ "n ats",
+ "re lax",
+ "rel ax",
+ "▁f led",
+ "▁fl ed",
+ "▁fle d",
+ "▁experience s",
+ "▁experien ces",
+ "ще е",
+ "ме ня",
+ "мен я",
+ "▁пер сона",
+ "▁Id entity",
+ "▁Ident ity",
+ "▁ Identity",
+ "re ts",
+ "ret s",
+ "r ets",
+ "k unft",
+ "la rg",
+ "lar g",
+ "l arg",
+ "List Item",
+ "v d",
+ "run ner",
+ "la nt",
+ "lan t",
+ "l ant",
+ "ip art",
+ "i part",
+ "ba y",
+ "b ay",
+ "ie i",
+ "i ei",
+ "▁length s",
+ "▁c attle",
+ "▁catt le",
+ "je ts",
+ "jet s",
+ "j ets",
+ "▁se hen",
+ "J ul",
+ "fa tt",
+ "f att",
+ "▁sur render",
+ "▁surr ender",
+ "▁Tr ump",
+ "▁Tru mp",
+ "дно го",
+ "д ного",
+ "▁Four ier",
+ "▁Fou rier",
+ "ie ben",
+ "ieb en",
+ "i eben",
+ "_ \"",
+ "▁frü her",
+ "▁gar ant",
+ "▁ga rant",
+ "uclide an",
+ "äg t",
+ "ä gt",
+ "▁пів ден",
+ "Page s",
+ "Pa ges",
+ "P ages",
+ "▁r ivers",
+ "▁river s",
+ "▁riv ers",
+ "▁ri vers",
+ "▁don ner",
+ "▁donn er",
+ "▁donne r",
+ "sv n",
+ "s vn",
+ "▁ ł",
+ "ov ě",
+ "o vě",
+ "▁Le ist",
+ "ar ial",
+ "ari al",
+ "aria l",
+ "a rial",
+ "ov ých",
+ "ový ch",
+ "▁f illing",
+ "▁fil ling",
+ "▁fill ing",
+ "▁mus icale",
+ "▁music ale",
+ "▁musical e",
+ "▁musica le",
+ "ma xim",
+ "max im",
+ "▁d ashed",
+ "▁das hed",
+ "▁dash ed",
+ "▁Н ов",
+ "▁Но в",
+ "Draw er",
+ "Dra wer",
+ "▁Medic ine",
+ "▁dok ument",
+ "ow el",
+ "owe l",
+ "o wel",
+ "vi ć",
+ "v ić",
+ "he ly",
+ "hel y",
+ "h ely",
+ "▁e let",
+ "▁el et",
+ "▁ele t",
+ "Sec onds",
+ "Second s",
+ "▁Gon z",
+ "ro u",
+ "r ou",
+ "▁fin ales",
+ "▁final es",
+ "▁finale s",
+ "r n",
+ "f ø",
+ "▁index ed",
+ "class Name",
+ "▁o ber",
+ "▁ob er",
+ "▁ ober",
+ "▁du as",
+ "▁optim ized",
+ "▁optimize d",
+ "▁k dy",
+ "vers ary",
+ "ener gy",
+ "▁цент ра",
+ "▁центр а",
+ "▁c urrency",
+ "▁curr ency",
+ "▁ currency",
+ "zy ż",
+ "Li ke",
+ "L ike",
+ "▁Г и",
+ "so no",
+ "son o",
+ "s ono",
+ "▁pa lab",
+ "▁pal ab",
+ "▁p ushing",
+ "▁push ing",
+ "ub lik",
+ "▁H ass",
+ "▁Ha ss",
+ "▁Has s",
+ "}\\ ,\\",
+ "}\\, \\",
+ "} \\,\\",
+ "un ker",
+ "unk er",
+ "▁F actory",
+ "▁Fact ory",
+ "▁ Factory",
+ "▁Res ources",
+ "▁Resource s",
+ "▁ Resources",
+ "date i",
+ "da tei",
+ "dat ei",
+ "▁T ools",
+ "▁To ols",
+ "▁Tool s",
+ "▁ Tools",
+ "▁ste hen",
+ "si me",
+ "sim e",
+ "s ime",
+ "▁Х у",
+ "▁h och",
+ "▁ho ch",
+ "▁Rod ríguez",
+ "zeit ig",
+ "▁Ter ry",
+ "▁Terr y",
+ "▁о бу",
+ "▁об у",
+ "Us age",
+ "urch ase",
+ "l ö",
+ "▁Int roduction",
+ "▁ Introduction",
+ "▁particip ation",
+ "ο ς",
+ "og li",
+ "ap y",
+ "a py",
+ "▁hope fully",
+ "pon der",
+ "po nder",
+ "pond er",
+ "p onder",
+ "▁Y ang",
+ "▁Yan g",
+ "▁Ya ng",
+ "▁prom ises",
+ "▁promise s",
+ "▁вер ну",
+ "▁о стров",
+ "▁ост ров",
+ "^{ +",
+ "▁most ra",
+ "▁mo stra",
+ "▁mos tra",
+ "▁CURL OPT",
+ "H H",
+ "▁std out",
+ "▁ stdout",
+ "▁br illiant",
+ "▁manus cript",
+ "▁de cir",
+ "▁dec ir",
+ "▁B olog",
+ "▁Bo log",
+ "▁Bol og",
+ "▁ме ста",
+ "▁мест а",
+ "▁in visible",
+ "▁C hal",
+ "▁Ch al",
+ "▁Cha l",
+ "▁analy ze",
+ "▁analyz e",
+ "pr ilis",
+ "pril is",
+ "att end",
+ "atten d",
+ "atte nd",
+ "M vc",
+ "th an",
+ "tha n",
+ "t han",
+ "ck o",
+ "c ko",
+ "▁Que bec",
+ "▁pl anta",
+ "▁plan ta",
+ "▁plant a",
+ "▁télé vis",
+ "▁un install",
+ "èn cies",
+ "▁gmin ie",
+ "▁P ref",
+ "▁Pr ef",
+ "▁Pre f",
+ "▁le quel",
+ "Inv ocation",
+ "▁ Í",
+ "▁trans formed",
+ "▁transform ed",
+ "MA N",
+ "M AN",
+ "ge baut",
+ "geb aut",
+ "▁со хра",
+ "▁вто рой",
+ "▁L ith",
+ "▁Li th",
+ "▁Lit h",
+ "wend ung",
+ "▁Polit ik",
+ "▁Sen ator",
+ "▁L L",
+ "▁ LL",
+ "жде ние",
+ "ш те",
+ "▁C és",
+ "▁b ande",
+ "▁band e",
+ "▁ban de",
+ "▁ba nde",
+ "▁histor ian",
+ "▁historia n",
+ "▁pass words",
+ "▁password s",
+ "mal loc",
+ "m alloc",
+ "▁sem if",
+ "▁semi f",
+ "▁r å",
+ "▁ rå",
+ "unic í",
+ "uni cí",
+ "Av ailable",
+ "Option al",
+ "Opt ional",
+ "▁T we",
+ "▁Tw e",
+ "▁k ró",
+ "▁kr ó",
+ "▁sub sets",
+ "▁subset s",
+ "▁subs ets",
+ "▁D AT",
+ "▁DA T",
+ "▁ DAT",
+ "▁double s",
+ "▁dou bles",
+ "▁doub les",
+ "ни ками",
+ "ника ми",
+ "▁з в",
+ "ge geben",
+ "geg eben",
+ "g egeben",
+ "▁По пис",
+ "▁jú lius",
+ "▁m eteor",
+ "▁met eor",
+ "Mo unt",
+ "M ount",
+ "iv ent",
+ "ive nt",
+ "iven t",
+ "i vent",
+ "▁N athan",
+ "▁Na than",
+ "▁Nat han",
+ "▁Sch utz",
+ "eg ov",
+ "ego v",
+ "e gov",
+ "▁d öd",
+ "▁me at",
+ "▁пун кт",
+ "▁m inds",
+ "▁min ds",
+ "▁mind s",
+ "eli very",
+ "▁T LS",
+ "ре м",
+ "р ем",
+ "cks å",
+ "▁stay ed",
+ "▁sta yed",
+ "▁B in",
+ "▁Bi n",
+ "▁P ia",
+ "▁Pi a",
+ "▁и мен",
+ "▁име н",
+ "▁им ен",
+ "▁Bob by",
+ "▁produ it",
+ "▁prod uit",
+ "em pio",
+ "emp io",
+ "▁redu cing",
+ "▁Y u",
+ "▁Gesch äft",
+ "▁per ché",
+ "▁c ors",
+ "▁cor s",
+ "▁co rs",
+ "▁i cons",
+ "▁icon s",
+ "▁ic ons",
+ "▁ icons",
+ "App Data",
+ "▁H og",
+ "▁Ho g",
+ "▁р ів",
+ "▁рі в",
+ "▁ рів",
+ "▁S ans",
+ "▁San s",
+ "▁Sa ns",
+ "▁si ège",
+ "▁siè ge",
+ "st ellen",
+ "stell en",
+ "stelle n",
+ "Br ush",
+ "OF F",
+ "O FF",
+ "▁vis itor",
+ "▁visit or",
+ "▁b ath",
+ "▁ba th",
+ "▁bat h",
+ "▁f ee",
+ "▁fe e",
+ "at isf",
+ "ati sf",
+ "atis f",
+ "▁cu rv",
+ "▁cur v",
+ "▁fol gender",
+ "▁folg ender",
+ "▁cons cience",
+ "▁Se attle",
+ "▁med ieval",
+ "▁medi eval",
+ "dist ribution",
+ "▁D M",
+ "▁ DM",
+ "▁м я",
+ "▁ мя",
+ "▁R UN",
+ "ak ov",
+ "ako v",
+ "a kov",
+ "ce il",
+ "c eil",
+ "▁let ting",
+ "▁lett ing",
+ "▁d ov",
+ "▁do v",
+ "▁о би",
+ "▁об и",
+ "ki ej",
+ "kie j",
+ "k iej",
+ "▁dire kt",
+ "▁t m",
+ "▁ tm",
+ "col ors",
+ "color s",
+ "colo rs",
+ "▁alt ro",
+ "▁tijd ens",
+ "]{ '",
+ "] {'",
+ "▁B om",
+ "▁Bo m",
+ "▁k unst",
+ "▁kun st",
+ "▁sh elter",
+ "▁r av",
+ "▁ra v",
+ "▁ rav",
+ "pre dict",
+ "pred ict",
+ "▁comenz ó",
+ "▁świ at",
+ "▁św iat",
+ "▁Du rant",
+ "▁Dur ant",
+ "▁sch emes",
+ "▁scheme s",
+ "▁sche mes",
+ "▁m esh",
+ "▁me sh",
+ "▁mes h",
+ "▁ind icator",
+ "▁indic ator",
+ "▁E mer",
+ "▁Em er",
+ "▁gu ilty",
+ "не ц",
+ "▁consequ ences",
+ "▁consequence s",
+ "cl udes",
+ "clude s",
+ "clud es",
+ "▁L ower",
+ "▁Lo wer",
+ "▁Low er",
+ "▁ Lower",
+ "▁по ме",
+ "▁p ace",
+ "▁pa ce",
+ "▁pac e",
+ "▁ pace",
+ "да го",
+ "▁am bos",
+ "▁amb os",
+ "l b",
+ "▁educ ated",
+ "ur ale",
+ "ura le",
+ "ural e",
+ "u rale",
+ "an h",
+ "es ség",
+ "ess ég",
+ "▁associ ations",
+ "▁association s",
+ "to wn",
+ "t own",
+ "▁t rif",
+ "▁tr if",
+ "▁tri f",
+ "sample s",
+ "sam ples",
+ "s amples",
+ "bo s",
+ "b os",
+ "▁S pect",
+ "▁Sp ect",
+ "▁Spe ct",
+ "▁Spec t",
+ "▁Ц е",
+ "alt ung",
+ "▁L ob",
+ "▁Lo b",
+ "▁curios ity",
+ "▁We iter",
+ "▁Wei ter",
+ "▁Weit er",
+ "est one",
+ "esto ne",
+ "eston e",
+ "e stone",
+ "▁dem ol",
+ "▁demo l",
+ "▁ap olog",
+ "▁apo log",
+ "▁D ynamic",
+ "▁Dynam ic",
+ "▁ Dynamic",
+ "In ner",
+ "es per",
+ "esp er",
+ "ec z",
+ "e cz",
+ "uel lement",
+ "uelle ment",
+ "▁Hamilton ian",
+ "At las",
+ "▁ar gue",
+ "▁arg ue",
+ "For eign",
+ "F oreign",
+ "col lapse",
+ "▁tér min",
+ "▁electron ic",
+ "▁electro nic",
+ "▁N R",
+ "▁ NR",
+ "▁c orr",
+ "▁cor r",
+ "▁co rr",
+ "▁ corr",
+ "tem ps",
+ "temp s",
+ "Index Path",
+ "я з",
+ "▁tal ál",
+ "to day",
+ "tod ay",
+ "wa ve",
+ "w ave",
+ "▁s ib",
+ "▁si b",
+ "▁с пи",
+ "▁сп и",
+ "▁con vey",
+ "▁conv ey",
+ "▁Gé ographie",
+ "▁Н ью",
+ "▁Hi bernate",
+ "▁t in",
+ "▁ti n",
+ "di c",
+ "d ic",
+ "pp ings",
+ "pping s",
+ "s weise",
+ "▁roll ing",
+ "▁rol ling",
+ "▁ rolling",
+ "▁select s",
+ ")\\ )",
+ ") \\)",
+ "▁po eta",
+ "▁poet a",
+ "▁сте пени",
+ "▁A br",
+ "▁Ab r",
+ "▁hö ch",
+ "▁s tern",
+ "▁st ern",
+ "▁ste rn",
+ "▁ster n",
+ "▁f jär",
+ "▁inst aller",
+ "▁install er",
+ "▁instal ler",
+ "de cl",
+ "dec l",
+ "▁m iser",
+ "▁mi ser",
+ "▁mis er",
+ "▁mise r",
+ "group by",
+ "sub str",
+ "subst r",
+ "▁phen omen",
+ "▁W ing",
+ "▁Win g",
+ "▁Wi ng",
+ "▁f ills",
+ "▁fil ls",
+ "▁fill s",
+ "▁ú nico",
+ "Run ning",
+ "R unning",
+ "Com e",
+ "Co me",
+ "C ome",
+ "ir able",
+ "ira ble",
+ "i rable",
+ "sim eq",
+ "sime q",
+ "▁re mp",
+ "▁r emp",
+ "▁rem p",
+ "ke le",
+ "kel e",
+ "k ele",
+ "li ers",
+ "lie rs",
+ "lier s",
+ "l iers",
+ "▁kwiet nia",
+ "▁inter rupted",
+ "▁interrupt ed",
+ "▁J et",
+ "▁Je t",
+ "=\\ {",
+ "= \\{",
+ "íd o",
+ "í do",
+ "▁Tai wan",
+ "▁воз ра",
+ "▁altern atives",
+ "▁alternative s",
+ "▁T ir",
+ "▁Ti r",
+ "▁Re serve",
+ "▁Res erve",
+ "▁К ур",
+ "▁Ку р",
+ "▁No bel",
+ "▁Nob el",
+ "▁рабо тал",
+ "▁работа л",
+ "▁a xes",
+ "▁ax es",
+ "▁C ependant",
+ "k á",
+ "▁er neut",
+ "▁D emo",
+ "▁De mo",
+ "▁Dem o",
+ "▁ Demo",
+ "comm unic",
+ "con structor",
+ "construct or",
+ "▁Mon day",
+ "▁Mond ay",
+ "N il",
+ "Hash Map",
+ "pay ment",
+ "▁fix ing",
+ "▁A DD",
+ "▁AD D",
+ "▁ ADD",
+ "re view",
+ "rev iew",
+ "▁poss ibil",
+ "▁possib il",
+ "▁g rote",
+ "▁gr ote",
+ "▁gro te",
+ "▁group ed",
+ "▁groupe d",
+ "▁L ima",
+ "▁Li ma",
+ "▁Lim a",
+ "▁A ugen",
+ "▁Au gen",
+ "▁Aug en",
+ "▁o ckså",
+ "on as",
+ "ona s",
+ "o nas",
+ "▁deb ate",
+ "▁In gl",
+ "▁Ing l",
+ "D a",
+ "SO UR",
+ "S OUR",
+ "ett be",
+ "▁Batt alion",
+ "▁F loat",
+ "▁Flo at",
+ "▁ Float",
+ "▁c one",
+ "▁con e",
+ "▁co ne",
+ "read sheet",
+ "co urt",
+ "cou rt",
+ "c ourt",
+ "li gen",
+ "lig en",
+ "lige n",
+ "l igen",
+ "▁Begin n",
+ "▁Beg inn",
+ "▁LI MIT",
+ "▁LIM IT",
+ "▁enjo yed",
+ "▁enjoy ed",
+ "▁Jak ob",
+ "▁t elt",
+ "▁te lt",
+ "▁tel t",
+ "back end",
+ "▁Gemeins ame",
+ "li nt",
+ "lin t",
+ "l int",
+ "al ling",
+ "all ing",
+ "▁b ör",
+ "gr and",
+ "gra nd",
+ "g rand",
+ "▁divers es",
+ "▁diverse s",
+ "▁z wiąz",
+ "▁Kom pon",
+ "▁inner halb",
+ "▁desar rollo",
+ "▁desarroll o",
+ "▁Ma sters",
+ "▁Mas ters",
+ "▁Master s",
+ "io so",
+ "ios o",
+ "i oso",
+ "]` .",
+ "] `.",
+ "▁frances a",
+ "▁franc esa",
+ "A ff",
+ "in ek",
+ "ine k",
+ "i nek",
+ "▁des sin",
+ "▁dess in",
+ "`. `",
+ "` .`",
+ "▁r anks",
+ "▁ran ks",
+ "▁rank s",
+ "бер г",
+ "▁s kal",
+ "▁sk al",
+ "▁S ultan",
+ "▁Sul tan",
+ "А Н",
+ "▁спо соб",
+ "▁contra dict",
+ "▁contrad ict",
+ "▁re com",
+ "▁rec om",
+ "▁Ok lahoma",
+ "▁Vlad imir",
+ "▁m eters",
+ "▁me ters",
+ "▁met ers",
+ "▁meter s",
+ "trans port",
+ "▁cons ulté",
+ "▁consult é",
+ "▁ consulté",
+ "▁A TP",
+ "▁AT P",
+ "eb b",
+ "e bb",
+ "▁vol unte",
+ "▁volunt e",
+ "▁out line",
+ "LI C",
+ "L IC",
+ "▁e uro",
+ "▁eu ro",
+ "Char Field",
+ "med ium",
+ "medi um",
+ "▁Belg ique",
+ "Pro c",
+ "Pr oc",
+ "P roc",
+ "ro utes",
+ "route s",
+ "rout es",
+ "rou tes",
+ "▁cont ribu",
+ "▁contrib u",
+ "! }",
+ "ší m",
+ "š ím",
+ "▁L ess",
+ "▁Le ss",
+ "▁Les s",
+ "▁K ost",
+ "▁Ko st",
+ "▁Kos t",
+ "▁eredet iből",
+ "re ven",
+ "rev en",
+ "r even",
+ "ver ify",
+ "▁S alt",
+ "▁Sal t",
+ "▁Sa lt",
+ "▁shoot ing",
+ "▁sho oting",
+ "▁dis pose",
+ "▁dispos e",
+ "▁disp ose",
+ "uj í",
+ "▁t ierra",
+ "▁tier ra",
+ "▁po ison",
+ "▁poi son",
+ "sa k",
+ "s ak",
+ "periment al",
+ "▁N é",
+ "▁K id",
+ "▁Ki d",
+ "ag yar",
+ "agy ar",
+ "▁archiv álva",
+ "be reich",
+ "bere ich",
+ "í z",
+ "▁R itter",
+ "▁Хронологи ја",
+ "ze um",
+ "да х",
+ "▁gr ünd",
+ "▁program mer",
+ "▁programme r",
+ "▁cons eil",
+ "▁conse il",
+ "▁enc rypt",
+ "integr ation",
+ "C ulture",
+ "▁Circ le",
+ "▁Cir cle",
+ "Ob servable",
+ "▁gen omsnitt",
+ "▁Se lection",
+ "▁Select ion",
+ "▁Sel ection",
+ "▁Sele ction",
+ "▁ Selection",
+ "▁ir regular",
+ "Aut res",
+ "Per cent",
+ "fa ult",
+ "f ault",
+ "▁virt ue",
+ "ą pi",
+ "▁s ess",
+ "▁se ss",
+ "▁ses s",
+ "▁Так же",
+ "Tim estamp",
+ "▁litt érature",
+ "▁mo ż",
+ "▁b orrow",
+ "▁bor row",
+ "▁con ced",
+ "▁conc ed",
+ "▁conce d",
+ "чни к",
+ "ч ник",
+ "▁L und",
+ "▁Lu nd",
+ "ION S",
+ "IO NS",
+ "yn ie",
+ "y nie",
+ "▁S hin",
+ "▁Sh in",
+ "▁o sob",
+ "▁os ob",
+ "b ě",
+ "▁int uit",
+ "▁intu it",
+ "▁на п",
+ "▁p roph",
+ "▁pro ph",
+ "▁pr oph",
+ "▁prop h",
+ "▁p itt",
+ "▁pi tt",
+ "▁pit t",
+ "▁IB M",
+ "▁T ill",
+ "▁Ti ll",
+ "▁h ina",
+ "▁hi na",
+ "▁hin a",
+ "it test",
+ "itt est",
+ "itte st",
+ "gener ator",
+ "▁N in",
+ "▁Ni n",
+ "▁K ot",
+ "▁Ko t",
+ "▁p asser",
+ "▁pass er",
+ "▁pas ser",
+ "▁passe r",
+ "▁dis position",
+ "▁dispos ition",
+ "▁disp osition",
+ "un ing",
+ "uni ng",
+ "u ning",
+ "▁f ame",
+ "▁fa me",
+ "▁fam e",
+ "▁t enia",
+ "▁te nia",
+ "▁ten ia",
+ "an cement",
+ "ance ment",
+ "anc ement",
+ "▁Su isse",
+ "` -",
+ "▁h ombres",
+ "▁hom bres",
+ "▁hombre s",
+ "▁inf inity",
+ "▁infin ity",
+ "▁окон ча",
+ "▁co sm",
+ "▁cos m",
+ "▁D ennis",
+ "▁Den nis",
+ "ba z",
+ "b az",
+ "ha upt",
+ "h aupt",
+ "▁might y",
+ "▁pr ede",
+ "▁pre de",
+ "▁pred e",
+ "us able",
+ "usa ble",
+ "▁ws zyst",
+ "▁wsz yst",
+ "▁l b",
+ "▁ lb",
+ "AB ASE",
+ "A BASE",
+ "j na",
+ "не в",
+ "н ев",
+ "▁as es",
+ "▁ ases",
+ "▁final mente",
+ "й м",
+ "pe ction",
+ "pect ion",
+ "pec tion",
+ "p ection",
+ "▁Stud ien",
+ "▁Norweg ian",
+ "ce go",
+ "c ego",
+ "IN DEX",
+ "IND EX",
+ "or ten",
+ "ort en",
+ "orte n",
+ "▁friend ship",
+ "▁friends hip",
+ "met ro",
+ "m etro",
+ "th ick",
+ "▁Z el",
+ "▁Ze l",
+ "LO W",
+ "L OW",
+ "▁there by",
+ "un ted",
+ "unt ed",
+ "unte d",
+ "▁sur faces",
+ "▁surface s",
+ "ющи м",
+ "%) .",
+ "% ).",
+ "▁W onder",
+ "▁Wo nder",
+ "▁redund ant",
+ "▁G ros",
+ "▁Gr os",
+ "▁Gro s",
+ "▁web sites",
+ "▁website s",
+ "▁v io",
+ "▁vi o",
+ "▁o cas",
+ "▁oc as",
+ "vé s",
+ "v és",
+ "▁G am",
+ "▁Ga m",
+ "d w",
+ "Ind icator",
+ "▁K ob",
+ "▁Ko b",
+ "▁j ack",
+ "▁ja ck",
+ "▁ jack",
+ "Hi nt",
+ "H int",
+ "▁A pol",
+ "▁Ap ol",
+ "▁други е",
+ "▁N UM",
+ "▁ NUM",
+ "▁o fic",
+ "▁of ic",
+ "yst ycz",
+ "▁were ld",
+ "▁wer eld",
+ "мо сти",
+ "LE FT",
+ "▁T ypes",
+ "▁Type s",
+ "▁Ty pes",
+ "▁Typ es",
+ "▁ Types",
+ "se en",
+ "see n",
+ "s een",
+ "un cia",
+ "unc ia",
+ "unci a",
+ "▁n arod",
+ "▁na rod",
+ "▁nar od",
+ "▁это т",
+ "Side note",
+ "S idenote",
+ "ue il",
+ "u eil",
+ "▁от ме",
+ "▁cour ts",
+ "▁court s",
+ "fi r",
+ "f ir",
+ "ur z",
+ "u rz",
+ "чен ко",
+ "Cred entials",
+ "▁imag ination",
+ "it ats",
+ "ita ts",
+ "itat s",
+ "bu ff",
+ "buf f",
+ "b uff",
+ "fl ash",
+ "▁bad ly",
+ "▁w orn",
+ "▁wor n",
+ "▁wo rn",
+ "▁окру гу",
+ "cat alog",
+ "catal og",
+ "c atalog",
+ "li me",
+ "lim e",
+ "l ime",
+ "▁G ill",
+ "▁Gi ll",
+ "▁Gil l",
+ "▁S ent",
+ "▁Se nt",
+ "▁Sen t",
+ "ie lla",
+ "iel la",
+ "i ella",
+ "▁Cra ig",
+ "▁S ele",
+ "▁Se le",
+ "▁Sel e",
+ "▁Indep end",
+ "▁prov incie",
+ "▁provin cie",
+ "os sen",
+ "oss en",
+ "▁за пад",
+ "▁запа д",
+ "▁inf ant",
+ "▁pr events",
+ "▁prevent s",
+ "▁prev ents",
+ "▁provin ces",
+ "▁province s",
+ "af é",
+ "be g",
+ "b eg",
+ "▁col ours",
+ "▁colour s",
+ "B F",
+ "ë n",
+ "▁Ме жду",
+ "î n",
+ "Ob server",
+ "for sch",
+ "í gen",
+ "um ption",
+ "ump tion",
+ "▁Ill ustr",
+ "ри ст",
+ "рис т",
+ "▁по лови",
+ "▁пол ови",
+ "▁поло ви",
+ "▁` &",
+ "▁o re",
+ "▁or e",
+ "▁ ore",
+ "▁supp lies",
+ "▁parent hes",
+ "Found ation",
+ "▁v ou",
+ "▁vo u",
+ "▁T out",
+ "▁To ut",
+ "Don ald",
+ "▁R ET",
+ "▁RE T",
+ "we ig",
+ "wei g",
+ "▁produ cción",
+ "mi x",
+ "m ix",
+ "▁ut wor",
+ "▁f öl",
+ "▁fö l",
+ "▁ent ão",
+ "▁S ister",
+ "▁Si ster",
+ "Tag s",
+ "T ags",
+ "▁Савез не",
+ "▁privile ges",
+ "▁na zw",
+ "▁naz w",
+ "▁R av",
+ "▁Ra v",
+ "▁re pro",
+ "▁rep ro",
+ "▁repr o",
+ "▁M ason",
+ "▁Ma son",
+ "▁Mas on",
+ "▁Pl atform",
+ "▁Plat form",
+ "▁ Platform",
+ "▁про бле",
+ "▁P érez",
+ "▁bl anc",
+ "▁bla nc",
+ "▁blan c",
+ "Be havior",
+ "фи ци",
+ "ek en",
+ "e ken",
+ "▁me ets",
+ "▁meet s",
+ "(. *",
+ "( .*",
+ "▁f å",
+ "ep en",
+ "e pen",
+ "ma ker",
+ "make r",
+ "m aker",
+ "▁lo yal",
+ "mem bers",
+ "member s",
+ "m embers",
+ "meister schaft",
+ "go al",
+ "ш лен",
+ "▁се веро",
+ "▁север о",
+ "ie nde",
+ "ien de",
+ "i ende",
+ "д ні",
+ "Pro of",
+ "▁exp lic",
+ "▁expl ic",
+ "▁elect ro",
+ "ie ls",
+ "iel s",
+ "i els",
+ "re load",
+ "▁el even",
+ "▁ele ven",
+ "▁elev en",
+ "▁part idos",
+ "▁partido s",
+ "în e",
+ "î ne",
+ "▁R egin",
+ "▁Re gin",
+ "▁Reg in",
+ "▁é x",
+ "▁Bu lg",
+ "▁Bul g",
+ "▁network ing",
+ "▁net working",
+ "▁se parator",
+ "▁separ ator",
+ "User Name",
+ "▁edific io",
+ "▁M ie",
+ "▁Mi e",
+ "▁id le",
+ "ye d",
+ "y ed",
+ "▁pass engers",
+ "▁passenger s",
+ "+ )",
+ "me no",
+ "men o",
+ "m eno",
+ "eg gi",
+ "e ggi",
+ "▁nice ly",
+ "▁nic ely",
+ "end encia",
+ "enden cia",
+ "чи й",
+ "ét és",
+ "été s",
+ "ight arrow",
+ "▁orth ogonal",
+ "▁H alf",
+ "▁Hal f",
+ "▁fe wer",
+ "▁few er",
+ "▁pro pi",
+ "▁prop i",
+ "▁pr imit",
+ "▁prim it",
+ "▁pri mit",
+ "▁primi t",
+ "ic ale",
+ "ical e",
+ "ica le",
+ "▁f lower",
+ "▁fl ower",
+ "▁flow er",
+ "▁flo wer",
+ "mer k",
+ "m erk",
+ "▁Оте че",
+ "▁pers istent",
+ "▁persist ent",
+ "▁V ille",
+ "▁Vill e",
+ "▁Vi lle",
+ "▁Vil le",
+ "Me n",
+ "M en",
+ "ga ben",
+ "gabe n",
+ "g aben",
+ "▁Isa ac",
+ "at ivity",
+ "ativ ity",
+ "ati vity",
+ "▁pół noc",
+ "▁r ok",
+ "▁ro k",
+ "▁ rok",
+ "car ds",
+ "card s",
+ "c ards",
+ "де ния",
+ "▁ю го",
+ "▁extra ordinary",
+ "▁k yr",
+ "(\" ,",
+ "( \",",
+ ")) ]",
+ ") )]",
+ "▁un ix",
+ "▁ unix",
+ "ко л",
+ "▁s ink",
+ "▁sin k",
+ "ap sed",
+ "aps ed",
+ "▁k ommen",
+ "▁kom men",
+ "▁komm en",
+ "▁ kommen",
+ "▁for cing",
+ "Ab out",
+ "▁H alle",
+ "▁Ha lle",
+ "▁Hall e",
+ "▁Hal le",
+ "▁Maj esty",
+ "▁Sw itch",
+ "▁ Switch",
+ "▁ab road",
+ "▁acceler ation",
+ "ur bed",
+ "urb ed",
+ "▁о стан",
+ "▁ос тан",
+ "▁оста н",
+ "▁ост ан",
+ "Re ady",
+ "Read y",
+ "▁пів ні",
+ "Br a",
+ "B ra",
+ "▁ць ого",
+ "▁pl ut",
+ "▁T rain",
+ "▁Tr ain",
+ "▁Tra in",
+ "▁á prilis",
+ "▁p uesto",
+ "▁pu esto",
+ "▁pue sto",
+ "▁t oss",
+ "▁to ss",
+ "▁irre levant",
+ "▁d ip",
+ "▁di p",
+ "se gment",
+ "seg ment",
+ "op acity",
+ "▁lors que",
+ "▁versch ill",
+ "ен а",
+ "е на",
+ "▁D oc",
+ "▁Do c",
+ "▁ Doc",
+ "%%%% %%%%",
+ "▁b orders",
+ "▁border s",
+ "▁bor ders",
+ "▁bord ers",
+ "ge bras",
+ "geb ras",
+ "gebra s",
+ "▁r ies",
+ "▁ri es",
+ "▁ ries",
+ "▁Olymp edia",
+ "▁Gener ation",
+ "met ros",
+ "metro s",
+ "▁hor izon",
+ "▁adapt ation",
+ "▁Z ahl",
+ "▁Za hl",
+ "▁na he",
+ "▁nah e",
+ "▁B ug",
+ "▁Bu g",
+ "P icture",
+ "љ и",
+ "R GB",
+ "O wner",
+ "ad in",
+ "adi n",
+ "a din",
+ "▁Catal unya",
+ "ný ch",
+ "n ých",
+ "▁cual quier",
+ "▁Inst itution",
+ "▁Instit ution",
+ "▁Institut ion",
+ "in sen",
+ "ins en",
+ "▁Bras ile",
+ "▁Brasil e",
+ "▁f itting",
+ "▁fit ting",
+ "De leg",
+ "Del eg",
+ "ic two",
+ "ict wo",
+ "▁Ex per",
+ "▁Exp er",
+ "och astic",
+ "▁d us",
+ "▁du s",
+ "▁по ра",
+ "▁пор а",
+ "▁sub string",
+ "▁subst ring",
+ "▁subs tring",
+ "▁substr ing",
+ "▁ substring",
+ "сси и",
+ "с сии",
+ "oi n",
+ "o in",
+ "▁ш кола",
+ "▁шко ла",
+ "▁c x",
+ "▁ cx",
+ "▁% )",
+ "▁ %)",
+ "▁Bud dh",
+ "▁p ending",
+ "▁pen ding",
+ "▁En try",
+ "▁Ent ry",
+ "▁ Entry",
+ "▁Be rl",
+ "▁Ber l",
+ "▁c ler",
+ "▁cl er",
+ "▁cle r",
+ "▁ cler",
+ "▁S oc",
+ "▁So c",
+ "▁r ounded",
+ "▁round ed",
+ "▁m v",
+ "▁ mv",
+ "ít ett",
+ "▁Di plom",
+ "▁französ ischen",
+ "▁G an",
+ "▁Ga n",
+ "▁Inv estig",
+ "▁index Path",
+ "▁ indexPath",
+ "▁mol ti",
+ "▁molt i",
+ "pers istence",
+ "▁XIX e",
+ "▁Elect ron",
+ "b ü",
+ "ge le",
+ "gel e",
+ "g ele",
+ "▁M aler",
+ "▁Ma ler",
+ "▁Mal er",
+ "▁Male r",
+ "▁proyect o",
+ "▁B ath",
+ "▁Ba th",
+ "▁Bat h",
+ "el lers",
+ "ell ers",
+ "elle rs",
+ "eller s",
+ "▁G P",
+ "▁ GP",
+ "on ing",
+ "oni ng",
+ "o ning",
+ "clou dflare",
+ "▁p ři",
+ "▁př i",
+ "▁d ed",
+ "▁de d",
+ "▁ ded",
+ "▁Od kazy",
+ "▁M sg",
+ "▁ Msg",
+ "▁B eing",
+ "▁Be ing",
+ "▁Bei ng",
+ "▁De puis",
+ "▁Dep uis",
+ "▁Pri mary",
+ "▁Prim ary",
+ "▁Prima ry",
+ "▁ Primary",
+ "▁App ro",
+ "▁Ap pro",
+ "▁form ally",
+ "▁formal ly",
+ "ступ ил",
+ "ступи л",
+ "▁fue ra",
+ "▁fu era",
+ "▁fuer a",
+ "▁R oot",
+ "▁Ro ot",
+ "▁ Root",
+ "▁aut onom",
+ "▁auto nom",
+ "▁secret ary",
+ "▁os ób",
+ "▁cu ales",
+ "▁cual es",
+ "▁Dep ending",
+ "▁a si",
+ "▁as i",
+ "▁ asi",
+ "ve ra",
+ "ver a",
+ "v era",
+ "▁rus se",
+ "▁russ e",
+ "▁pro ves",
+ "▁prov es",
+ "▁prove s",
+ "▁pres iden",
+ "R U",
+ "▁Wat son",
+ "▁web pack",
+ "▁ webpack",
+ "elli gence",
+ "ellig ence",
+ "ка м",
+ "▁Office r",
+ "▁Offic er",
+ "▁d elivery",
+ "▁deliver y",
+ "▁deli very",
+ "ж дён",
+ "▁им пе",
+ "▁w il",
+ "▁v esc",
+ "▁ve sc",
+ "▁ves c",
+ "uszt us",
+ "▁Ge off",
+ "() }",
+ "( )}",
+ "▁F ore",
+ "▁For e",
+ "▁Fo re",
+ "▁w enig",
+ "▁we nig",
+ "▁wen ig",
+ "▁A irl",
+ "▁Air l",
+ "▁E fter",
+ "▁Bre ak",
+ "▁St äd",
+ "is miss",
+ "ism iss",
+ "í p",
+ "▁avoid ed",
+ "▁avo ided",
+ "▁assert ion",
+ "D N",
+ "▁te at",
+ "▁tea t",
+ "ín a",
+ "í na",
+ "▁mechan ical",
+ "is u",
+ "i su",
+ "@ {",
+ "▁n ou",
+ "▁no u",
+ "▁ nou",
+ "Ital ie",
+ "source forge",
+ "▁s vo",
+ "▁sv o",
+ "▁kir ály",
+ "▁Re ferences",
+ "▁Refer ences",
+ "▁Reference s",
+ "si x",
+ "s ix",
+ "▁Arch ives",
+ "▁Archiv es",
+ "▁Archive s",
+ "▁fin ishing",
+ "▁finish ing",
+ "ac je",
+ "ét at",
+ "éta t",
+ "é tat",
+ "if fs",
+ "iff s",
+ "▁st ead",
+ "▁ste ad",
+ "▁fe as",
+ "aw are",
+ "awa re",
+ "a ware",
+ "la nde",
+ "land e",
+ "lan de",
+ "l ande",
+ "In ject",
+ "▁A gent",
+ "▁Ag ent",
+ "▁Age nt",
+ "▁ Agent",
+ "▁Norm datei",
+ "▁a men",
+ "▁am en",
+ "▁ amen",
+ "▁Arch itecture",
+ "az e",
+ "a ze",
+ "ș te",
+ "▁us ar",
+ "▁c ores",
+ "▁cor es",
+ "▁co res",
+ "▁core s",
+ "лі н",
+ "л ін",
+ "▁C astro",
+ "▁Cast ro",
+ "▁v æ",
+ ">\" ,",
+ "> \",",
+ "om ena",
+ "ome na",
+ "omen a",
+ "▁ge sam",
+ "▁ges am",
+ "▁Mart ín",
+ "▁Martí n",
+ "eg ung",
+ "egu ng",
+ "▁spole č",
+ "▁ampl itude",
+ "▁amplit ude",
+ "▁import ing",
+ "▁list view",
+ "TH E",
+ "T HE",
+ "zi ale",
+ "zial e",
+ "zia le",
+ "z iale",
+ "ce des",
+ "ced es",
+ "c edes",
+ "▁particul ier",
+ "▁Распо дела",
+ "▁кра й",
+ "▁d ivent",
+ "▁di vent",
+ "▁div ent",
+ "▁k é",
+ "▁ ké",
+ "qu it",
+ "qui t",
+ "q uit",
+ "то ром",
+ "тор ом",
+ "Check Box",
+ "▁Zob acz",
+ "ph e",
+ "p he",
+ "pt a",
+ "p ta",
+ "▁s jö",
+ "▁sj ö",
+ "▁розта ш",
+ "▁tedes co",
+ "▁s tal",
+ "▁st al",
+ "▁sta l",
+ "▁ stal",
+ "▁Be ruf",
+ "▁Ber uf",
+ "ова я",
+ "о вая",
+ "▁s vě",
+ "▁sv ě",
+ "▁fl ush",
+ "▁flu sh",
+ "▁ flush",
+ "▁від бу",
+ "▁rad ial",
+ "▁radi al",
+ "▁différ entes",
+ "ан та",
+ "▁Per ry",
+ "Col l",
+ "Co ll",
+ "C oll",
+ "li qu",
+ "l iqu",
+ "▁Option al",
+ "▁Opt ional",
+ "▁ Optional",
+ "▁Сан кт",
+ "▁LIN Q",
+ "▁Fran c",
+ "▁Fr anc",
+ "▁Fra nc",
+ "ci je",
+ "c ije",
+ "▁Gu illaume",
+ "kn ow",
+ "k now",
+ "▁Un its",
+ "▁Unit s",
+ "ol k",
+ "▁Syst ème",
+ "▁S ales",
+ "▁Sal es",
+ "▁Sa les",
+ "▁ehemal igen",
+ "ми рова",
+ "мир ова",
+ "x html",
+ "set opt",
+ "▁m ellan",
+ "▁mel lan",
+ "▁z ie",
+ "▁ zie",
+ "▁gi ant",
+ "Bo ard",
+ "▁C aval",
+ "▁Ca val",
+ "▁Cav al",
+ "▁def ence",
+ "-- --------",
+ "---- ------",
+ "-------- --",
+ "--- -------",
+ "------ ----",
+ "----- -----",
+ "------- ---",
+ "ps hire",
+ "p shire",
+ "ma rt",
+ "mar t",
+ "m art",
+ "▁Di oc",
+ "is kt",
+ "isk t",
+ "▁in se",
+ "▁ins e",
+ "▁é pisode",
+ "чи к",
+ "bar s",
+ "ba rs",
+ "b ars",
+ "Si to",
+ "S ito",
+ "▁integr ity",
+ "au ff",
+ "auf f",
+ "a uff",
+ "▁v är",
+ "▁vä r",
+ "Az ure",
+ "▁star b",
+ "▁sta rb",
+ "▁кон тра",
+ "▁Мекси чка",
+ "▁за па",
+ "▁Mount ains",
+ "▁Mountain s",
+ "}} =",
+ "} }=",
+ "▁pull ing",
+ "▁pul ling",
+ "▁sat ellite",
+ "▁at oms",
+ "▁atom s",
+ "▁profes or",
+ "▁repeated ly",
+ "▁repeat edly",
+ "▁inv asion",
+ "▁invas ion",
+ "program ming",
+ "├ ──",
+ "▁L ip",
+ "▁Li p",
+ "вши е",
+ "в шие",
+ "▁k een",
+ "▁ke en",
+ "▁crit ics",
+ "▁critic s",
+ "▁N icola",
+ "▁Nicol a",
+ "▁Nic ola",
+ "▁Ni cola",
+ "▁C and",
+ "▁Can d",
+ "▁Ca nd",
+ "▁dist int",
+ "▁he ading",
+ "▁head ing",
+ "p ragma",
+ "{ |",
+ "ym en",
+ "yme n",
+ "y men",
+ "▁ter rain",
+ "▁terra in",
+ "ied enis",
+ "▁bes onders",
+ "▁nomin ated",
+ "BO OL",
+ "▁K ay",
+ "▁Ka y",
+ "ci an",
+ "cia n",
+ "c ian",
+ "st elle",
+ "ste lle",
+ "stell e",
+ "▁disput e",
+ "▁disp ute",
+ "▁ щ",
+ "Data Set",
+ "no thing",
+ "not hing",
+ "n othing",
+ "Aut om",
+ "Auto m",
+ "hör en",
+ "hö ren",
+ "▁s hed",
+ "▁sh ed",
+ "▁she d",
+ "▁p aused",
+ "▁pa used",
+ "▁pause d",
+ "▁pau sed",
+ "sa n",
+ "s an",
+ "▁nun ca",
+ "!( \"",
+ "! (\"",
+ "▁po łoż",
+ "Se cret",
+ "Sec ret",
+ "▁Do main",
+ "▁Dom ain",
+ "▁ Domain",
+ "▁воз мож",
+ "X V",
+ "l v",
+ "ik h",
+ "i kh",
+ "▁S ony",
+ "▁So ny",
+ "▁Son y",
+ "m q",
+ "ot rop",
+ "otr op",
+ "▁Log ger",
+ "▁ Logger",
+ "▁thre at",
+ "as ted",
+ "ast ed",
+ "aste d",
+ "a sted",
+ "зь ко",
+ "▁fre ely",
+ "▁free ly",
+ "▁improve ments",
+ "▁improv ements",
+ "▁improvement s",
+ "ist ema",
+ "iste ma",
+ "▁illustr ate",
+ "▁t act",
+ "▁ta ct",
+ "▁fig ur",
+ "ué s",
+ "u és",
+ "rim inal",
+ "rimin al",
+ "od on",
+ "odo n",
+ "o don",
+ "int endo",
+ "▁influ enced",
+ "▁influence d",
+ "▁influen ced",
+ "FF ER",
+ "▁G host",
+ "▁Gh ost",
+ "▁со вер",
+ "▁сов ер",
+ "na d",
+ "n ad",
+ "ion ed",
+ "io ned",
+ "ione d",
+ "i oned",
+ "▁Event s",
+ "▁Ev ents",
+ "▁Even ts",
+ "▁ Events",
+ "▁wr apping",
+ "▁wra pping",
+ "▁wrap ping",
+ "-------- -+",
+ "--- ------+",
+ "------ ---+",
+ "----- ----+",
+ "------- --+",
+ "fi f",
+ "f if",
+ "▁( **",
+ "▁(* *",
+ "={ {",
+ "= {{",
+ "ма ль",
+ "м аль",
+ "▁loss es",
+ "▁Gal erie",
+ "te l",
+ "t el",
+ "▁лю того",
+ "▁K ru",
+ "▁Kr u",
+ "▁P olen",
+ "▁Pol en",
+ "▁Po len",
+ "ні м",
+ "ne ar",
+ "nea r",
+ "n ear",
+ "▁sh ame",
+ "▁moy enne",
+ "▁C P",
+ "▁ CP",
+ "pre is",
+ "▁pass enger",
+ "le k",
+ "l ek",
+ "ion ales",
+ "ional es",
+ "ionale s",
+ "iona les",
+ "kaf ka",
+ "k afka",
+ "▁partic ipe",
+ "▁particip e",
+ "▁parti cipe",
+ "▁partici pe",
+ "▁memb ership",
+ "▁member ship",
+ "▁members hip",
+ "[ _",
+ "land o",
+ "lan do",
+ "l ando",
+ "st elling",
+ "stell ing",
+ "Se m",
+ "S em",
+ "go n",
+ "g on",
+ "▁Cor rect",
+ "▁v alle",
+ "▁val le",
+ "▁va lle",
+ "▁vall e",
+ "▁read ily",
+ "▁Dok ument",
+ "hon neur",
+ "h onneur",
+ "▁test im",
+ "ul ative",
+ "do Filter",
+ "▁domin ant",
+ "am mer",
+ "amm er",
+ "▁ко ја",
+ "▁M onsieur",
+ "ze g",
+ "z eg",
+ "▁вій ни",
+ "▁F o",
+ "▁A my",
+ "▁Am y",
+ "▁ ¡",
+ "▁febru ár",
+ "▁down loading",
+ "▁download ing",
+ "▁l eng",
+ "▁le ng",
+ "▁len g",
+ "\\}$ ,",
+ "\\} $,",
+ "\\ }$,",
+ "▁ne at",
+ "▁C ache",
+ "▁Ca che",
+ "▁ Cache",
+ "IC ATION",
+ "▁de ve",
+ "▁dev e",
+ "▁s orrow",
+ "▁sor row",
+ "sl ow",
+ "s low",
+ "▁hin aus",
+ "▁hina us",
+ "▁recon oc",
+ "▁Lin ked",
+ "▁Link ed",
+ "▁Sh aw",
+ "mar ket",
+ "mark et",
+ "▁D ic",
+ "▁Di c",
+ "▁S ki",
+ "▁Sk i",
+ "▁del imiter",
+ "▁Main Activity",
+ "▁ MainActivity",
+ "▁Mus ical",
+ "▁Music al",
+ "▁Re yn",
+ "▁Rey n",
+ "Scroll View",
+ "▁convent ional",
+ "▁convention al",
+ "en ça",
+ "enç a",
+ "▁re factor",
+ "▁ref actor",
+ "' -",
+ "▁H ed",
+ "▁He d",
+ "spr ech",
+ "spre ch",
+ "▁ath let",
+ "▁e species",
+ "▁es pecies",
+ "▁espe cies",
+ "▁espec ies",
+ "▁especie s",
+ "▁Sch ön",
+ "▁kle inen",
+ "▁kleine n",
+ "▁klein en",
+ "ш ко",
+ "▁Й о",
+ "▁H appy",
+ "▁Ha ppy",
+ "multi row",
+ "▁august i",
+ "▁G and",
+ "▁Ga nd",
+ "▁Gan d",
+ "▁appoint ment",
+ "▁Medi abestanden",
+ "Th ree",
+ "▁Kenn eth",
+ "NE W",
+ "▁Not ification",
+ "▁ Notification",
+ "▁Mar x",
+ "▁Ma rx",
+ "▁in sc",
+ "▁ins c",
+ "Mo r",
+ "M or",
+ "вы й",
+ "в ый",
+ "vä st",
+ "v äst",
+ "vi dia",
+ "vid ia",
+ "v idia",
+ "▁demonstr ated",
+ "▁demonstrate d",
+ "font s",
+ "fon ts",
+ "▁k amen",
+ "▁kam en",
+ "▁ka men",
+ "▁S ter",
+ "▁St er",
+ "▁Ste r",
+ "▁mieszkań ców",
+ "▁K oh",
+ "▁Ko h",
+ "~$ \\",
+ "~ $\\",
+ "») .",
+ "» ).",
+ "re ne",
+ "ren e",
+ "r ene",
+ "ins ic",
+ "ic ká",
+ "ick á",
+ "xy gen",
+ "▁m n",
+ "▁ mn",
+ "▁s ched",
+ "▁sc hed",
+ "▁sch ed",
+ "▁sche d",
+ "AS C",
+ "A SC",
+ "I g",
+ "▁Const ant",
+ "▁opport un",
+ "▁My Class",
+ "se f",
+ "s ef",
+ "op ed",
+ "ope d",
+ "o ped",
+ "▁inj ured",
+ "VI S",
+ "V IS",
+ "▁P ero",
+ "▁Per o",
+ "▁Pe ro",
+ "▁U ntil",
+ "▁Un til",
+ "▁f lesh",
+ "▁fl esh",
+ "▁fle sh",
+ "orph ism",
+ "▁Port al",
+ "▁Por tal",
+ "▁gmin y",
+ "▁вла сти",
+ "▁N ä",
+ "кти че",
+ "к тиче",
+ "▁h rab",
+ "▁hr ab",
+ "▁C ub",
+ "▁Cu b",
+ "av oir",
+ "avo ir",
+ "a voir",
+ "▁L ars",
+ "▁La rs",
+ "▁Lar s",
+ "▁Бе ло",
+ "▁seizo en",
+ "▁Gen omsnitt",
+ "▁L il",
+ "▁Li l",
+ "▁P ool",
+ "▁Po ol",
+ "▁ Pool",
+ "▁D ios",
+ "▁Di os",
+ "T X",
+ "ae s",
+ "a es",
+ "aut ore",
+ "auto re",
+ "autor e",
+ "Al pha",
+ "st ates",
+ "state s",
+ "sta tes",
+ "stat es",
+ "La b",
+ "L ab",
+ "n ederbörd",
+ "er ton",
+ "ert on",
+ "▁b rid",
+ "▁br id",
+ "▁ brid",
+ "▁r icht",
+ "▁rich t",
+ "▁ric ht",
+ "▁ri cht",
+ "▁ richt",
+ "▁E la",
+ "▁El a",
+ "▁с ла",
+ "▁ сла",
+ "▁weap on",
+ "▁comb att",
+ "▁combat t",
+ "ag ar",
+ "aga r",
+ "a gar",
+ "▁reg nig",
+ "▁util isé",
+ "▁utilis é",
+ "▁ser vir",
+ "▁serv ir",
+ "▁servi r",
+ "▁b rick",
+ "▁br ick",
+ "▁gate way",
+ "▁tor raste",
+ "▁proced ures",
+ "▁procedure s",
+ "▁års nederbörd",
+ "▁Genomsnitt lig",
+ "чё т",
+ "ч ёт",
+ "▁om rå",
+ "▁ områ",
+ "▁regnig aste",
+ "▁че сть",
+ "▁a mid",
+ "▁am id",
+ "▁ami d",
+ "▁gr ateful",
+ "▁D IS",
+ "▁DI S",
+ "▁ DIS",
+ "DA Y",
+ "▁о ру",
+ "▁ор у",
+ "▁ ору",
+ "▁riv ière",
+ "he ure",
+ "▁Rich mond",
+ "▁Com par",
+ "▁Comp ar",
+ "▁Н ор",
+ "▁Но р",
+ "DO C",
+ "D OC",
+ "es ia",
+ "esi a",
+ "cal c",
+ "▁I U",
+ "▁v org",
+ "▁vo rg",
+ "▁vor g",
+ "▁hab ían",
+ "▁había n",
+ "ço it",
+ "ç oit",
+ "▁a rist",
+ "▁ar ist",
+ "▁к ли",
+ "▁ кли",
+ "▁S ue",
+ "▁Su e",
+ "▁T ouch",
+ "▁To uch",
+ "▁ Touch",
+ "▁Writ ing",
+ "ifi able",
+ "▁w c",
+ "▁with draw",
+ "за р",
+ "з ар",
+ "▁present ly",
+ "▁pres ently",
+ "▁F K",
+ "▁pr akt",
+ "▁pra kt",
+ "▁col ored",
+ "▁color ed",
+ "us b",
+ "u sb",
+ "▁Per ú",
+ "▁pl ata",
+ "▁pla ta",
+ "▁plat a",
+ "▁w ishes",
+ "▁wish es",
+ "▁wis hes",
+ "▁ка м",
+ "▁ кам",
+ "az ar",
+ "aza r",
+ "a zar",
+ "áv el",
+ "á vel",
+ "▁l amp",
+ "▁la mp",
+ "bi shop",
+ "b ishop",
+ "▁in clusion",
+ "▁incl usion",
+ "▁inclus ion",
+ "j q",
+ "ar th",
+ "art h",
+ "▁F lag",
+ "▁Fl ag",
+ "▁ Flag",
+ "▁но р",
+ "▁н ор",
+ "æ dia",
+ "UN CTION",
+ "▁Bahn hof",
+ "▁appro aching",
+ "▁approach ing",
+ "▁G ött",
+ "▁Gö tt",
+ "▁c ube",
+ "▁cu be",
+ "▁cub e",
+ "▁arg ued",
+ "▁argue d",
+ "▁Th ings",
+ "Gu i",
+ "G ui",
+ "до ви",
+ "дов и",
+ "д ови",
+ "▁re cre",
+ "▁rec re",
+ "▁ré seau",
+ "▁rés eau",
+ "▁sign ifica",
+ "▁signific a",
+ "Gi t",
+ "G it",
+ "geb racht",
+ "gebra cht",
+ "▁l iga",
+ "▁li ga",
+ "▁lig a",
+ "▁ liga",
+ "▁ass ured",
+ "al us",
+ "alu s",
+ "a lus",
+ "ри т",
+ "р ит",
+ "▁э нциклопеди",
+ "▁% ).",
+ "▁%) .",
+ "▁ %).",
+ "▁Prem ière",
+ "▁declar ations",
+ "▁declaration s",
+ "▁tr icky",
+ "▁trick y",
+ "▁pro files",
+ "▁prof iles",
+ "▁profile s",
+ "▁profil es",
+ "▁F on",
+ "▁Fo n",
+ "▁J as",
+ "▁Ja s",
+ "â r",
+ "ba bel",
+ "b abel",
+ "▁Fr iday",
+ "▁Fri day",
+ "▁Frid ay",
+ "▁jú nius",
+ "▁c ols",
+ "▁col s",
+ "▁co ls",
+ "▁ cols",
+ "▁EX ISTS",
+ "▁Ital iana",
+ "▁Italian a",
+ "▁Italia na",
+ "▁author ization",
+ "▁s ulle",
+ "▁su lle",
+ "▁sul le",
+ "▁sull e",
+ "▁E mb",
+ "▁Em b",
+ "▁Vari able",
+ "▁ Variable",
+ "tr ees",
+ "tre es",
+ "tree s",
+ "t rees",
+ "▁F ly",
+ "▁Fl y",
+ "ri ors",
+ "rio rs",
+ "rior s",
+ "r iors",
+ "▁da mals",
+ "▁dam als",
+ "▁find et",
+ "▁fin det",
+ "▁Se pt",
+ "▁Sep t",
+ "▁m undial",
+ "▁rem oval",
+ "▁remov al",
+ "▁long itude",
+ "▁longitud e",
+ "cl ic",
+ "cli c",
+ "c lic",
+ "▁f ade",
+ "▁fa de",
+ "▁ fade",
+ "▁grad le",
+ "▁ gradle",
+ "▁z ák",
+ "▁zá k",
+ "▁tim ing",
+ "▁ti ming",
+ "tr ightarrow",
+ "t rightarrow",
+ "at ia",
+ "ati a",
+ "- .",
+ "uch e",
+ "uc he",
+ "u che",
+ "▁ser ialize",
+ "▁serial ize",
+ "▁H mm",
+ "▁Represent atives",
+ "ba h",
+ "b ah",
+ "re nd",
+ "ren d",
+ "r end",
+ "ass ador",
+ "assa dor",
+ "▁sh ield",
+ "uc ion",
+ "u cion",
+ "▁am éricaine",
+ "▁améric aine",
+ "▁américain e",
+ "z ę",
+ "vi lla",
+ "vil la",
+ "v illa",
+ "▁hom bre",
+ "ás s",
+ "á ss",
+ "▁S F",
+ "▁ SF",
+ "▁repe ating",
+ "▁repeat ing",
+ "▁c riter",
+ "▁cr iter",
+ "▁crit er",
+ "▁cri ter",
+ "▁St ruct",
+ "▁Str uct",
+ "▁ Struct",
+ "?? ?",
+ "? ??",
+ "▁che ap",
+ "▁r ings",
+ "▁ring s",
+ "▁rin gs",
+ "ab häng",
+ "▁c orte",
+ "▁cor te",
+ "▁cort e",
+ "▁admin ist",
+ "ix on",
+ "gy pt",
+ "▁punt os",
+ "▁punto s",
+ "▁me zi",
+ "▁mez i",
+ "▁po chod",
+ "▁poc hod",
+ "is ko",
+ "isk o",
+ "i sko",
+ "ni ę",
+ "n ię",
+ "▁о су",
+ "▁ос у",
+ "▁á r",
+ "▁ ár",
+ "те льной",
+ "тель ной",
+ "тельно й",
+ "▁Metropol itan",
+ "ji n",
+ "j in",
+ "ze ss",
+ "zes s",
+ "z ess",
+ "▁ві ці",
+ "▁conflic ts",
+ "▁conflict s",
+ "ij st",
+ "▁Mar ket",
+ "▁Mark et",
+ "ст ров",
+ "стро в",
+ "стр ов",
+ "▁\" ,\"",
+ "▁\", \"",
+ "▁ \",\"",
+ "▁Sc roll",
+ "▁ Scroll",
+ "gu n",
+ "g un",
+ "та ра",
+ "тар а",
+ "▁am ateur",
+ "▁r óż",
+ "pos s",
+ "po ss",
+ "p oss",
+ "▁general ized",
+ "▁H arm",
+ "▁Har m",
+ "▁Ha rm",
+ "ci ta",
+ "cit a",
+ "c ita",
+ "▁Sw itzerland",
+ "ic ola",
+ "ico la",
+ "icol a",
+ "i cola",
+ "▁m uit",
+ "▁mu it",
+ "loc ated",
+ "▁c ó",
+ "▁a rose",
+ "▁ar ose",
+ "▁commun auté",
+ "}) ^",
+ "} )^",
+ "vis ibility",
+ "íd a",
+ "í da",
+ "▁F B",
+ "▁ FB",
+ "▁Fre und",
+ "ga t",
+ "g at",
+ "\": {\"",
+ "int ellij",
+ "if ie",
+ "ifi e",
+ "hm en",
+ "h men",
+ "▁éd ition",
+ "▁ édition",
+ "▁ко је",
+ "▁ін ших",
+ "om ing",
+ "omin g",
+ "omi ng",
+ "o ming",
+ "▁arqu itect",
+ "▁Pres idente",
+ "▁President e",
+ "▁П ід",
+ "▁ca bin",
+ "▁cab in",
+ "The orem",
+ "▁G ay",
+ "▁Ga y",
+ "if ice",
+ "ific e",
+ "ifi ce",
+ "▁h ect",
+ "▁he ct",
+ "l ą",
+ "irm ingham",
+ "▁sem antic",
+ "▁Louis iana",
+ "▁sac rifice",
+ "▁sacr ifice",
+ "▁sacrific e",
+ "▁Christ oph",
+ "▁Exec utive",
+ "_ +",
+ "j ák",
+ "▁s eria",
+ "▁se ria",
+ "▁ser ia",
+ "▁Over flow",
+ "▁ Overflow",
+ "▁Lu cy",
+ "▁Luc y",
+ "▁mel hor",
+ "▁vo ices",
+ "▁voice s",
+ "cz a",
+ "c za",
+ "▁ка пи",
+ "▁университе та",
+ "IN CT",
+ "▁col oc",
+ "▁co loc",
+ "▁pr ue",
+ "▁ge omet",
+ "▁geom et",
+ "▁di retto",
+ "▁dire tto",
+ "▁dir etto",
+ "▁dirett o",
+ "re so",
+ "res o",
+ "r eso",
+ "▁A kt",
+ "▁Ak t",
+ "▁un h",
+ "▁се ри",
+ "▁сер и",
+ "▁Al ert",
+ "▁Ale rt",
+ "▁ Alert",
+ "We l",
+ "W el",
+ "au di",
+ "aud i",
+ "a udi",
+ "äl er",
+ "ä ler",
+ "▁gu ests",
+ "▁guest s",
+ "▁и де",
+ "St udio",
+ "▁ка те",
+ "▁ex ponent",
+ "▁expon ent",
+ "rz e",
+ "r ze",
+ "pm od",
+ "p mod",
+ "ro lle",
+ "roll e",
+ "rol le",
+ "▁Lim ited",
+ "Al lemagne",
+ "▁p ity",
+ "▁pi ty",
+ "▁pit y",
+ "▁l ä",
+ "▁ lä",
+ "▁run ner",
+ "▁ runner",
+ "ke nde",
+ "ken de",
+ "k ende",
+ "E Q",
+ "▁M M",
+ "▁ MM",
+ "sz ág",
+ "по ді",
+ "▁reg ret",
+ "▁publi é",
+ "▁depart amento",
+ "▁acc used",
+ "▁accus ed",
+ "h p",
+ "▁P fl",
+ "▁Pf l",
+ "▁S int",
+ "▁Si nt",
+ "▁Sin t",
+ "▁ek onom",
+ "ra ctor",
+ "rac tor",
+ "ract or",
+ "r actor",
+ "▁П ів",
+ "▁aw ful",
+ "owa ć",
+ "] ->",
+ "▁F ine",
+ "▁Fin e",
+ "С а",
+ "ti s",
+ "t is",
+ "ét a",
+ "é ta",
+ "▁Ро ди",
+ "▁Düsseld orf",
+ "LO B",
+ "L OB",
+ "os as",
+ "osa s",
+ "wer ke",
+ "werk e",
+ "▁l ance",
+ "▁lan ce",
+ "▁листо пада",
+ "▁in complete",
+ "▁P icture",
+ "▁ Picture",
+ "(' \\",
+ "( '\\",
+ "es ters",
+ "est ers",
+ "ester s",
+ "este rs",
+ "e sters",
+ "▁belong ed",
+ "▁S ank",
+ "▁San k",
+ "am med",
+ "amm ed",
+ "▁repos itories",
+ "▁ad dr",
+ "▁add r",
+ "▁ addr",
+ "Col lect",
+ "Coll ect",
+ "H ot",
+ "▁t yl",
+ "▁ty l",
+ "▁instance of",
+ "▁bon us",
+ "ov ý",
+ "▁мо ря",
+ "▁мор я",
+ "▁inter active",
+ "▁interact ive",
+ "▁M ys",
+ "▁My s",
+ "▁Ed mund",
+ "file Name",
+ "em or",
+ "emo r",
+ "e mor",
+ "▁Т ри",
+ "▁R osen",
+ "▁Ro sen",
+ "▁Ros en",
+ "▁Rose n",
+ "▁Pr ima",
+ "▁Pri ma",
+ "▁Prim a",
+ "▁v oting",
+ "▁vo ting",
+ "▁vot ing",
+ "▁X P",
+ "▁Z ero",
+ "▁Ze ro",
+ "▁ Zero",
+ "▁L ed",
+ "▁Le d",
+ "ams ung",
+ "▁en ables",
+ "▁enable s",
+ "▁redirect s",
+ "AS T",
+ "A ST",
+ "Pa int",
+ "P aint",
+ "ack er",
+ "ac ker",
+ "a cker",
+ "le cht",
+ "▁chair man",
+ "▁A ven",
+ "▁Av en",
+ "▁S ach",
+ "▁Sa ch",
+ "▁Sac h",
+ "(\" <",
+ "ке р",
+ "к ер",
+ "▁mist akes",
+ "▁mistake s",
+ "▁We it",
+ "▁Wei t",
+ "▁pro wad",
+ "▁ prowad",
+ "▁did nt",
+ "▁didn t",
+ "én ario",
+ "un less",
+ "▁back wards",
+ "bo a",
+ "b oa",
+ "du ino",
+ "`` `",
+ "` ``",
+ "st or",
+ "sto r",
+ "s tor",
+ "Comple tion",
+ "pu esta",
+ "▁din ast",
+ "úl t",
+ "ú lt",
+ "▁S Y",
+ "▁ SY",
+ "if olia",
+ "œuv res",
+ "œuvre s",
+ "▁r acing",
+ "▁ra cing",
+ "▁rac ing",
+ "▁cab inet",
+ "▁cabin et",
+ "▁cut ting",
+ "▁th umb",
+ "▁Ка ра",
+ "▁Кар а",
+ "high light",
+ "ку п",
+ "▁s d",
+ "▁ sd",
+ "▁на ціональ",
+ "▁camp agne",
+ "▁register s",
+ "▁educ ational",
+ "▁education al",
+ "▁p esar",
+ "▁pes ar",
+ "üg e",
+ "ü ge",
+ "▁o ro",
+ "▁or o",
+ "▁ oro",
+ "burg o",
+ "bur go",
+ "▁Athlet ics",
+ "▁M TV",
+ "get Message",
+ "▁H yp",
+ "▁Hy p",
+ "▁vict im",
+ "▁vic tim",
+ ")) \\",
+ ") )\\",
+ "▁dr ums",
+ "▁dru ms",
+ "▁drum s",
+ "host name",
+ "ta ł",
+ "t ał",
+ "ma king",
+ "m aking",
+ "▁pow iat",
+ "ő d",
+ "thread s",
+ "▁absol v",
+ "▁лю ди",
+ "▁ste pped",
+ "▁step ped",
+ "ex ist",
+ "▁N K",
+ "▁v es",
+ "▁ve s",
+ "▁ ves",
+ "ist iche",
+ "istic he",
+ "isti che",
+ "% '",
+ "at ivos",
+ "ativ os",
+ "ati vos",
+ "ativo s",
+ "▁та кой",
+ "▁тако й",
+ "▁Mongo DB",
+ "▁U ng",
+ "▁Un g",
+ "▁Р ус",
+ "▁Ру с",
+ "▁e lim",
+ "▁el im",
+ "▁F if",
+ "ic ación",
+ "ica ción",
+ "▁T ennis",
+ "▁Ten nis",
+ "▁Jeff erson",
+ "j án",
+ "fo g",
+ "f og",
+ "an ha",
+ "anh a",
+ "zo r",
+ "z or",
+ "▁уні версите",
+ "ah u",
+ "a hu",
+ "ia da",
+ "i ada",
+ "S dk",
+ "Set ting",
+ "▁K ill",
+ "▁Kil l",
+ "▁Ki ll",
+ "▁W end",
+ "▁We nd",
+ "▁b ald",
+ "▁bal d",
+ "▁ba ld",
+ "▁K ub",
+ "▁Ku b",
+ "▁v isto",
+ "▁vis to",
+ "▁vi sto",
+ "▁je unes",
+ "▁jeune s",
+ "▁jeu nes",
+ "col lections",
+ "collection s",
+ "collect ions",
+ "ac í",
+ "a cí",
+ "вро пей",
+ "▁ar ise",
+ "он і",
+ "о ні",
+ "MA IN",
+ "до ступ",
+ "▁b erg",
+ "▁be rg",
+ "▁ber g",
+ "▁ berg",
+ "▁critic ism",
+ "▁Tor re",
+ "▁de script",
+ "▁des cript",
+ "▁descri pt",
+ "ière s",
+ "i ères",
+ "▁e studio",
+ "▁est udio",
+ "▁estud io",
+ "▁i li",
+ "▁il i",
+ "▁ ili",
+ "▁mil itare",
+ "▁milit are",
+ "▁militar e",
+ "▁Cl ara",
+ "▁Cla ra",
+ "▁Clar a",
+ "▁El len",
+ "▁Elle n",
+ "▁Ell en",
+ "lim ited",
+ "limit ed",
+ "л м",
+ "▁Esp añ",
+ "▁inf initely",
+ "▁infinite ly",
+ "Amer ica",
+ "ou c",
+ "o uc",
+ "gl ass",
+ "g lass",
+ "▁r ud",
+ "▁ru d",
+ "▁z at",
+ "▁za t",
+ "▁ zat",
+ "▁r in",
+ "▁ri n",
+ "▁ rin",
+ "▁Bibli ografía",
+ "▁mer chant",
+ "tensor flow",
+ "▁d ér",
+ "▁dé r",
+ "▁Active Record",
+ "IE S",
+ "I ES",
+ "▁link er",
+ "▁lin ker",
+ "▁estud ios",
+ "▁estudio s",
+ "cdn js",
+ "▁Го судар",
+ "án chez",
+ "ap pe",
+ "app e",
+ "a ppe",
+ "cl ub",
+ "c lub",
+ "▁dal ší",
+ "▁Alg orithm",
+ "df s",
+ "d fs",
+ "▁B ac",
+ "▁Ba c",
+ "▁ка фе",
+ "▁& =\\",
+ "▁&= \\",
+ "▁а т",
+ "▁ ат",
+ "▁Г лав",
+ "▁M ou",
+ "▁Mo u",
+ "M achine",
+ "(... )",
+ "( ...)",
+ "▁com part",
+ "▁comp art",
+ "▁compar t",
+ "▁aug usztus",
+ "av an",
+ "ava n",
+ "a van",
+ "▁roll ed",
+ "▁rol led",
+ "▁ rolled",
+ "▁е ди",
+ "▁ еди",
+ "Sc an",
+ "S can",
+ "▁ре гі",
+ "▁świ ata",
+ "▁świat a",
+ "▁m ines",
+ "▁min es",
+ "▁mi nes",
+ "▁mine s",
+ "}, {",
+ "▁T ier",
+ "▁Ti er",
+ "Can not",
+ "C annot",
+ "мі н",
+ "м ін",
+ "▁NE W",
+ "▁ NEW",
+ "▁Во л",
+ "▁M anh",
+ "▁Man h",
+ "▁Greg ory",
+ "▁princi pe",
+ "▁princip e",
+ "▁prin cipe",
+ "IS O",
+ "I SO",
+ "pr og",
+ "pro g",
+ "p rog",
+ "▁F ail",
+ "▁Fa il",
+ "▁ Fail",
+ "▁a a",
+ "▁ aa",
+ "▁fe cha",
+ "▁W CF",
+ "▁mag istr",
+ "▁Z ach",
+ "▁Za ch",
+ "▁un icode",
+ "▁con verter",
+ "▁convert er",
+ "▁conver ter",
+ "▁dis pers",
+ "▁disp ers",
+ "ks am",
+ "k sam",
+ "▁Un cle",
+ "Property Changed",
+ "▁l ider",
+ "▁li der",
+ "▁lid er",
+ "▁o pts",
+ "▁op ts",
+ "▁opt s",
+ "▁ opts",
+ "▁та м",
+ "▁ там",
+ "lock ed",
+ "loc ked",
+ "za k",
+ "z ak",
+ "▁co unted",
+ "▁count ed",
+ "▁coun ted",
+ "▁person e",
+ "▁pers one",
+ "▁hur ried",
+ "ät ter",
+ "ätt er",
+ "ätte r",
+ "▁out ras",
+ "▁ou tras",
+ "▁g enu",
+ "▁ge nu",
+ "▁gen u",
+ "B D",
+ "ve g",
+ "v eg",
+ "du e",
+ "d ue",
+ "▁P ract",
+ "▁Pr act",
+ "▁Pra ct",
+ "▁po sible",
+ "▁pos ible",
+ "▁cont ribute",
+ "▁contrib ute",
+ "▁contribu te",
+ "UM N",
+ "▁Bür ger",
+ "▁w ars",
+ "▁war s",
+ "▁wa rs",
+ "▁exhib ition",
+ "hi ll",
+ "h ill",
+ "▁a str",
+ "▁as tr",
+ "▁ast r",
+ "▁ astr",
+ "▁му зе",
+ "▁C ASE",
+ "▁CA SE",
+ "▁ CASE",
+ "man ifest",
+ "y ellow",
+ "F n",
+ "▁R C",
+ "▁ RC",
+ "▁s ott",
+ "▁so tt",
+ "▁su jet",
+ "▁S ocket",
+ "▁So cket",
+ "▁Soc ket",
+ "▁ Socket",
+ "▁Ch ine",
+ "▁Chi ne",
+ "▁frame works",
+ "▁framework s",
+ "Hol d",
+ "H old",
+ "êt s",
+ "ê ts",
+ "▁ф іль",
+ "▁фі ль",
+ "Lo aded",
+ "Load ed",
+ "op he",
+ "oph e",
+ "o phe",
+ "text e",
+ "tex te",
+ "▁ex pres",
+ "▁exp res",
+ "▁expr es",
+ "▁cons ume",
+ "▁consum e",
+ "▁R ichtung",
+ "ograf i",
+ "▁magn ific",
+ "à t",
+ "▁ind ul",
+ "▁indu l",
+ "ry ty",
+ "▁off ici",
+ "▁offic i",
+ "▁ass ault",
+ "ru nd",
+ "run d",
+ "r und",
+ "▁vari ants",
+ "▁variant s",
+ "▁сель сов",
+ "▁exc itement",
+ "Time s",
+ "Tim es",
+ "T imes",
+ "k otlin",
+ "▁g ering",
+ "▁ge ring",
+ "▁ger ing",
+ "▁En gel",
+ "▁Eng el",
+ "▁T imer",
+ "▁Time r",
+ "▁Tim er",
+ "▁Ti mer",
+ "▁ Timer",
+ "² ).",
+ "▁N g",
+ "äs st",
+ "sch au",
+ "SE rror",
+ "S Error",
+ "▁Ed wards",
+ "▁Edward s",
+ "▁Term inal",
+ "li ct",
+ "lic t",
+ "l ict",
+ "Un der",
+ "Und er",
+ "U nder",
+ "▁sp awn",
+ "ür gen",
+ "▁Außer dem",
+ "▁k itchen",
+ "fah rt",
+ "fahr t",
+ "▁Col ors",
+ "▁Color s",
+ "▁систе ма",
+ "▁систем а",
+ "▁termin ated",
+ "▁terminate d",
+ "▁La TeX",
+ "ig keiten",
+ "igkeit en",
+ "▁mes ure",
+ "▁Am ts",
+ "▁Amt s",
+ "▁emp ir",
+ "▁stri king",
+ "▁strik ing",
+ "▁exclus ive",
+ "те х",
+ "▁re z",
+ "▁r ez",
+ "▁ rez",
+ "▁qu an",
+ "▁q uan",
+ "▁Glas gow",
+ "▁lect ure",
+ "▁Test ament",
+ "▁fun ds",
+ "▁fund s",
+ "▁st essa",
+ "▁tri bes",
+ "▁trib es",
+ "▁tribe s",
+ "▁par fois",
+ "▁tre ball",
+ "ni tz",
+ "nit z",
+ "n itz",
+ "bo ve",
+ "b ove",
+ "▁за слу",
+ "▁ab sent",
+ "▁abs ent",
+ "▁L auf",
+ "▁La uf",
+ "▁Lau f",
+ "Sm ith",
+ "▁Никола й",
+ "▁europé enne",
+ "l r",
+ "▁program ma",
+ "▁mi dst",
+ "▁mid st",
+ "▁daugh ters",
+ "▁daughter s",
+ "S yn",
+ "ob en",
+ "obe n",
+ "o ben",
+ "ân ă",
+ "id an",
+ "ida n",
+ "i dan",
+ "▁t her",
+ "▁th er",
+ "▁the r",
+ "▁ ther",
+ "od ore",
+ "odo re",
+ "odor e",
+ "sd l",
+ "s dl",
+ "▁Q uint",
+ "▁Qu int",
+ "▁cas os",
+ "▁caso s",
+ "▁Z am",
+ "▁Za m",
+ "▁стра ны",
+ "▁sp rite",
+ "▁spr ite",
+ "ка л",
+ "к ал",
+ "▁n asc",
+ "▁na sc",
+ "▁nas c",
+ "▁сот руд",
+ "▁tr ava",
+ "▁tra va",
+ "▁trav a",
+ "▁хо зяй",
+ "▁U ruguay",
+ "▁s parse",
+ "▁sp arse",
+ "▁по ле",
+ "▁пол е",
+ "▁myst ery",
+ "▁myster y",
+ "▁M ang",
+ "▁Man g",
+ "▁Ma ng",
+ "reg istr",
+ "▁CG Float",
+ "▁sub mission",
+ "▁subm ission",
+ "ва на",
+ "ван а",
+ "в ана",
+ "▁\" :",
+ "▁ \":",
+ "▁Trace back",
+ "▁P it",
+ "▁Pi t",
+ "▁E hr",
+ "▁с ра",
+ "▁Graph ics",
+ "▁ Graphics",
+ "Up dated",
+ "Update d",
+ "▁sv ensk",
+ "▁sp acing",
+ "▁spac ing",
+ "tr itt",
+ "tri tt",
+ "t ritt",
+ "▁Gu inea",
+ "▁Fran ça",
+ "▁Fr ança",
+ "As soci",
+ "Ass oci",
+ "▁T ová",
+ "▁To vá",
+ "st ab",
+ "sta b",
+ "s tab",
+ "▁Le arning",
+ "▁Lear ning",
+ "▁B right",
+ "▁Br ight",
+ "▁Brig ht",
+ "ś c",
+ "▁id ő",
+ "}} _{\\",
+ "}}_{ \\",
+ "}}_ {\\",
+ "} }_{\\",
+ "▁dro ite",
+ "▁droit e",
+ "▁ra ising",
+ "get ting",
+ "yth m",
+ "yt hm",
+ "y thm",
+ "on yme",
+ "ony me",
+ "onym e",
+ "ż s",
+ "▁b lah",
+ "▁bl ah",
+ "▁bla h",
+ "▁ blah",
+ "Tag Name",
+ "Vert ical",
+ "▁a per",
+ "▁ap er",
+ "▁ aper",
+ "post gresql",
+ "▁Hand le",
+ "▁ Handle",
+ "ze w",
+ "z ew",
+ "▁sk ulle",
+ "▁op ere",
+ "▁oper e",
+ "lay ers",
+ "layer s",
+ "▁pos sono",
+ "▁poss ono",
+ "▁re late",
+ "▁rel ate",
+ "▁rela te",
+ "ą c",
+ "▁M ih",
+ "▁Mi h",
+ "â ge",
+ "▁Ś wi",
+ "iss es",
+ "isse s",
+ "▁serv let",
+ "▁ servlet",
+ "Lo s",
+ "L os",
+ "▁Ad vanced",
+ "▁Adv anced",
+ "at ica",
+ "ati ca",
+ "atic a",
+ "▁c ed",
+ "▁ce d",
+ "▁ ced",
+ "▁element os",
+ "ро на",
+ "рон а",
+ "р она",
+ "ik s",
+ "i ks",
+ "ar f",
+ "a rf",
+ "ar iat",
+ "ari at",
+ "aria t",
+ "M obile",
+ "ag ua",
+ "agu a",
+ "▁t imp",
+ "▁tim p",
+ "▁ti mp",
+ "▁Com ité",
+ "▁comb ining",
+ "▁combin ing",
+ "wo hl",
+ "w ohl",
+ "▁Stud y",
+ "▁Stu dy",
+ "co ordinate",
+ "▁recommend ation",
+ "▁transform ations",
+ "▁transformation s",
+ "un til",
+ "unt il",
+ "u ntil",
+ "bound ed",
+ "b ounded",
+ "▁и зу",
+ "▁из у",
+ "han ced",
+ "h anced",
+ "▁во про",
+ "▁P rés",
+ "▁Pr és",
+ "▁co ord",
+ "xt y",
+ "x ty",
+ "▁$ ,",
+ "▁ $,",
+ "▁champion s",
+ "▁champ ions",
+ "De n",
+ "D en",
+ "M il",
+ "(' ,",
+ "( ',",
+ "▁Pre is",
+ "▁e igh",
+ "▁eig h",
+ "▁mark ers",
+ "▁marker s",
+ "▁gew esen",
+ "ät ten",
+ "ätt en",
+ "ätte n",
+ "▁p ione",
+ "▁pi one",
+ "m v",
+ "▁ј у",
+ "▁ ју",
+ "zeich nis",
+ "ho ff",
+ "hof f",
+ "h off",
+ "New s",
+ "Ne ws",
+ "▁Stanis ław",
+ "▁Br andenburg",
+ "▁Brand enburg",
+ "▁Fe uer",
+ "= &",
+ "же т",
+ "ж ет",
+ "▁N eil",
+ "▁Ne il",
+ "▁w irk",
+ "▁wir k",
+ "▁soci età",
+ "▁sp are",
+ "▁civil e",
+ "▁civ ile",
+ "sp rach",
+ "spr ach",
+ "▁d isse",
+ "▁dis se",
+ "▁diss e",
+ "▁g ates",
+ "▁ga tes",
+ "▁gate s",
+ "▁gat es",
+ "▁a nom",
+ "▁an om",
+ "▁ano m",
+ "▁Федера ции",
+ "▁t ib",
+ "▁ti b",
+ "▁f útbol",
+ "▁Wikip ed",
+ "ia te",
+ "iat e",
+ "i ate",
+ "Fr ont",
+ "F ront",
+ "▁c raw",
+ "▁cr aw",
+ "▁cra w",
+ "▁R ak",
+ "▁Ra k",
+ "▁з ву",
+ "▁зв у",
+ "st reet",
+ "stre et",
+ "▁A gency",
+ "▁Ag ency",
+ "ва ло",
+ "вал о",
+ "▁Ра с",
+ "▁mk dir",
+ "ac ję",
+ "▁sh ares",
+ "▁share s",
+ "St ory",
+ "Sto ry",
+ "▁re marks",
+ "▁rem arks",
+ "▁remark s",
+ "▁key words",
+ "▁keyword s",
+ "Bo b",
+ "B ob",
+ "▁t oe",
+ "▁to e",
+ "▁V itt",
+ "▁Vi tt",
+ "▁Vit t",
+ "▁r hs",
+ "▁rh s",
+ "RO P",
+ "R OP",
+ "or is",
+ "ori s",
+ "o ris",
+ "/ @",
+ "си и",
+ "▁tra verse",
+ "▁travers e",
+ "▁refer encing",
+ "pr äsident",
+ "ro ng",
+ "ron g",
+ "r ong",
+ "') :",
+ "' ):",
+ "at ies",
+ "ati es",
+ "atie s",
+ "a ties",
+ "A W",
+ "Out let",
+ "▁é vol",
+ "▁év ol",
+ "ik es",
+ "ike s",
+ "i kes",
+ "▁environment al",
+ "ic um",
+ "▁L ied",
+ "▁Li ed",
+ "▁Lie d",
+ "▁w arn",
+ "▁war n",
+ "▁wa rn",
+ "▁ warn",
+ "▁But ler",
+ "▁% ),",
+ "▁%) ,",
+ "▁Zeit schrift",
+ "▁Mon tr",
+ "▁Mont r",
+ "ва жа",
+ "▁Mer cur",
+ "je kte",
+ "jekt e",
+ "me ter",
+ "met er",
+ "m eter",
+ "du cation",
+ "▁att ributed",
+ "▁attribute d",
+ "* $",
+ "▁un f",
+ "▁Vert rag",
+ "zi en",
+ "zie n",
+ "z ien",
+ "▁Р об",
+ "▁Ро б",
+ "li ces",
+ "lic es",
+ "lice s",
+ "l ices",
+ "pp ly",
+ "p ply",
+ "an sen",
+ "ans en",
+ "anse n",
+ "▁ze it",
+ "▁ zeit",
+ "▁im mense",
+ "▁imm ense",
+ "▁lut ego",
+ "▁Bul gar",
+ "▁Bulg ar",
+ "▁mi embros",
+ "▁На циональ",
+ "▁Al low",
+ "▁All ow",
+ "▁ Allow",
+ "▁ang lès",
+ "д ви",
+ "▁T oy",
+ "▁To y",
+ "ту а",
+ "▁y ard",
+ "▁ya rd",
+ "▁ yard",
+ "( %",
+ "is ser",
+ "iss er",
+ "isse r",
+ "▁g olf",
+ "▁gol f",
+ "▁Uk rain",
+ "▁h osp",
+ "▁ho sp",
+ "▁hos p",
+ "In clude",
+ "▁L isa",
+ "▁Li sa",
+ "▁Lis a",
+ "▁c sal",
+ "▁cs al",
+ "▁M ira",
+ "▁Mi ra",
+ "▁Mir a",
+ "rec ogn",
+ "▁К е",
+ "▁h itting",
+ "▁hit ting",
+ "коно мі",
+ "коном і",
+ "▁Tourn ament",
+ "LO AD",
+ "▁Guard ian",
+ "▁da her",
+ "▁dah er",
+ "▁time zone",
+ "▁tom cat",
+ "▁ tomcat",
+ "▁success or",
+ "▁succ essor",
+ "▁successo r",
+ "▁V oid",
+ "▁Vo id",
+ "▁come ç",
+ "▁convert s",
+ "▁conver ts",
+ "äch s",
+ "ä chs",
+ "os ex",
+ "ose x",
+ "o sex",
+ "xe lles",
+ "x elles",
+ "as er",
+ "ase r",
+ "a ser",
+ "▁É s",
+ "▁m ou",
+ "▁mo u",
+ "▁u ng",
+ "▁un g",
+ "▁ ung",
+ "▁or igen",
+ "▁orig en",
+ "▁C row",
+ "▁Cr ow",
+ "▁Cro w",
+ "▁E rd",
+ "▁Er d",
+ "▁s ieben",
+ "▁si eben",
+ "▁sie ben",
+ "lu a",
+ "l ua",
+ "▁B B",
+ "▁ BB",
+ "RE NT",
+ "R ENT",
+ "▁pił kar",
+ "▁mar que",
+ "▁marqu e",
+ "▁La bour",
+ "▁Lab our",
+ "vi ders",
+ "vider s",
+ "vid ers",
+ "v iders",
+ "▁ex empl",
+ "▁exem pl",
+ "So und",
+ "S ound",
+ "▁W ass",
+ "▁Was s",
+ "▁Wa ss",
+ "arr ison",
+ "▁те чение",
+ "▁Of icina",
+ "▁D aw",
+ "▁Da w",
+ "▁K auf",
+ "▁Ka uf",
+ "én t",
+ "é nt",
+ "és ő",
+ "▁= \"",
+ "▁ =\"",
+ "▁k at",
+ "▁ka t",
+ "di ction",
+ "dict ion",
+ "dic tion",
+ "d iction",
+ "▁V oll",
+ "▁Vol l",
+ "▁Vo ll",
+ "▁high way",
+ "J ames",
+ "ze uge",
+ "zeug e",
+ "▁mod elo",
+ "▁model o",
+ "▁mode lo",
+ "Th row",
+ "▁F orum",
+ "▁For um",
+ "▁Fo rum",
+ "(\" @",
+ "▁en fer",
+ "▁enf er",
+ "▁спе циаль",
+ "Number s",
+ "Num bers",
+ "▁B inary",
+ "▁Bin ary",
+ "▁ Binary",
+ "▁Martí nez",
+ "▁Martín ez",
+ "▁St ato",
+ "▁Stat o",
+ "▁Sta to",
+ "▁fest iv",
+ "▁k atol",
+ "▁ka tol",
+ "▁kat ol",
+ "▁А б",
+ "▁lim itation",
+ "▁limit ation",
+ "▁S TR",
+ "▁ST R",
+ "▁ STR",
+ "▁О фициаль",
+ "ip es",
+ "ipe s",
+ "i pes",
+ "▁I sn",
+ "▁Is n",
+ "▁rule d",
+ "▁ru led",
+ "▁c í",
+ "▁ cí",
+ "ge ber",
+ "geb er",
+ "▁lavor o",
+ "▁lav oro",
+ "▁parenthes es",
+ "о з",
+ "▁équip es",
+ "▁équipe s",
+ "▁efficient ly",
+ "▁Per iod",
+ "▁ Period",
+ "▁Reg arding",
+ "le af",
+ "lea f",
+ "▁similar ity",
+ "▁gest ure",
+ "data b",
+ "da tab",
+ "dat ab",
+ "▁term inate",
+ "▁termin ate",
+ "▁sem antics",
+ "▁semantic s",
+ "▁A lo",
+ "▁Al o",
+ "▁c ig",
+ "▁ci g",
+ "▁Open GL",
+ "▁heut igen",
+ "xa ml",
+ "x aml",
+ "▁frequ encies",
+ ")} .",
+ ") }.",
+ "▁threaten ed",
+ "▁threat ened",
+ "ти к",
+ "▁cal cio",
+ "▁calci o",
+ "▁calc io",
+ "▁R iemann",
+ "▁Ri emann",
+ "sl ug",
+ "▁F inale",
+ "▁Fin ale",
+ "▁Final e",
+ "L R",
+ "▁Der by",
+ "▁о ще",
+ "▁de viation",
+ "▁dev iation",
+ "▁devi ation",
+ "äch en",
+ "äche n",
+ "ä chen",
+ "▁C ris",
+ "▁Cr is",
+ "но во",
+ "нов о",
+ "н ово",
+ "▁сто лі",
+ "▁re lev",
+ "▁rel ev",
+ "▁splend id",
+ "▁у чё",
+ "er ving",
+ "erv ing",
+ "ga ble",
+ "g able",
+ "▁général e",
+ "▁généra le",
+ "po m",
+ "p om",
+ "▁Che ers",
+ "▁impr ison",
+ "▁in dent",
+ "▁ind ent",
+ "▁inde nt",
+ "▁ indent",
+ "▁anal yz",
+ "▁analy z",
+ "▁re vert",
+ "▁rev ert",
+ "▁reve rt",
+ "▁rever t",
+ "ér er",
+ "ére r",
+ "é rer",
+ "▁ph ases",
+ "▁phase s",
+ "First Name",
+ "▁m ig",
+ "▁mi g",
+ "▁dist urb",
+ "▁mi xture",
+ "▁) {",
+ "▁ ){",
+ "int ure",
+ "▁T ried",
+ "▁Tr ied",
+ "▁Tri ed",
+ "▁soon er",
+ "▁p els",
+ "▁pe ls",
+ "▁pel s",
+ "▁ét abl",
+ "et ro",
+ "etr o",
+ "it ie",
+ "iti e",
+ "▁quart ier",
+ "▁го во",
+ "▁г ово",
+ "▁ гово",
+ "▁vá ros",
+ "uf e",
+ "u fe",
+ "he ten",
+ "het en",
+ "h eten",
+ "хо м",
+ "х ом",
+ "▁so ap",
+ "▁ soap",
+ "ut ors",
+ "uto rs",
+ "utor s",
+ "▁d uch",
+ "▁du ch",
+ "▁duc h",
+ "syn tax",
+ "s yntax",
+ "▁tr ibe",
+ "▁tri be",
+ "▁trib e",
+ "▁ch ante",
+ "▁chant e",
+ "Tr i",
+ "T ri",
+ "▁M ate",
+ "▁Ma te",
+ "▁Mat e",
+ "qu ality",
+ "qual ity",
+ "uo la",
+ "u ola",
+ "=\" .",
+ "= \".",
+ "ch k",
+ "▁в сі",
+ "▁вс і",
+ "▁prze ci",
+ "▁M eteor",
+ "▁Met eor",
+ "▁scatter ed",
+ "Pl us",
+ "P lus",
+ "tr ad",
+ "tra d",
+ "t rad",
+ "▁stack overflow",
+ "▁ stackoverflow",
+ "▁re tra",
+ "▁r etra",
+ "▁ret ra",
+ "▁retr a",
+ "▁éd itions",
+ "▁édition s",
+ "▁s ain",
+ "▁sa in",
+ "cri be",
+ "cr ibe",
+ "ig non",
+ "ign on",
+ "uc ker",
+ "uck er",
+ "u cker",
+ "▁ма ло",
+ "▁ten ir",
+ "▁ex ports",
+ "▁export s",
+ "▁ exports",
+ "▁aux ili",
+ "▁] ]",
+ "▁ ]]",
+ "▁C BS",
+ "un iform",
+ "uni form",
+ "▁period ic",
+ "ag rant",
+ "agr ant",
+ "▁em ple",
+ "▁emp le",
+ "W il",
+ "▁f res",
+ "▁fr es",
+ "▁fre s",
+ "▁str utt",
+ "▁stru tt",
+ "▁с віт",
+ "▁сві т",
+ "▁be tre",
+ "▁bet re",
+ "▁объ ек",
+ "ти ся",
+ "▁b isher",
+ "▁bis her",
+ "ba um",
+ "bau m",
+ "b aum",
+ "is hi",
+ "ish i",
+ "▁Gaz ette",
+ "background Color",
+ "j l",
+ "▁f iel",
+ "▁fi el",
+ "▁пре ма",
+ "▁protagon ista",
+ "▁Muham mad",
+ "▁sim ulate",
+ "▁H ook",
+ "▁Ho ok",
+ "fe st",
+ "f est",
+ "▁сво их",
+ "▁свои х",
+ "Se nder",
+ "Send er",
+ "S ender",
+ "▁list ened",
+ "▁listen ed",
+ "▁liste ned",
+ "ж і",
+ "je st",
+ "jes t",
+ "j est",
+ "ko rd",
+ "kor d",
+ "k ord",
+ "Cho ice",
+ "▁hoof d",
+ "redu cible",
+ "hp p",
+ "h pp",
+ "▁W u",
+ "š i",
+ "▁M arse",
+ "▁Mar se",
+ "▁Mars e",
+ "▁s oir",
+ "▁so ir",
+ "we sten",
+ "west en",
+ "w esten",
+ "em os",
+ "emo s",
+ "e mos",
+ "▁D uc",
+ "▁Du c",
+ "▁amer ik",
+ "| }{",
+ "▁G ul",
+ "▁Gu l",
+ "▁Sp rache",
+ "▁Spr ache",
+ "▁mis match",
+ "▁mism atch",
+ "Sc al",
+ "S cal",
+ "P ixel",
+ "E F",
+ "▁S ep",
+ "▁Se p",
+ "▁powie cie",
+ "ur k",
+ "▁Nap oli",
+ "▁neighbour hood",
+ "сто ян",
+ "стоя н",
+ "▁search es",
+ "yr us",
+ "y rus",
+ "пе т",
+ "п ет",
+ "He lp",
+ "Hel p",
+ "pon t",
+ "po nt",
+ "p ont",
+ "▁Or ient",
+ "▁Ori ent",
+ "▁Alf onso",
+ "▁monitor ing",
+ "ia o",
+ "i ao",
+ "éd é",
+ "▁Cés ar",
+ "ше е",
+ "Sh ift",
+ "su it",
+ "s uit",
+ "code d",
+ "co ded",
+ "cod ed",
+ "c oded",
+ "но то",
+ "▁Par ti",
+ "▁Part i",
+ "▁la sci",
+ "▁las ci",
+ "▁aw esome",
+ "us ta",
+ "ust a",
+ "u sta",
+ "▁С ове",
+ "▁Со ве",
+ "▁Сов е",
+ "▁F land",
+ "▁Fl and",
+ "oo m",
+ "o om",
+ "▁de vi",
+ "▁dev i",
+ "eng elsk",
+ "end um",
+ "▁Pa scal",
+ "▁Pas cal",
+ "▁B ind",
+ "▁Bi nd",
+ "▁Bin d",
+ "▁ Bind",
+ "▁sigu ientes",
+ "▁siguiente s",
+ "J B",
+ "▁Peters burg",
+ "▁incorrect ly",
+ "▁B ash",
+ "▁Bas h",
+ "▁Ba sh",
+ "▁pe los",
+ "▁pel os",
+ "▁pelo s",
+ "▁zes po",
+ "NS URL",
+ "▁př ek",
+ "▁Cr ime",
+ "na ch",
+ "n ach",
+ "▁th rust",
+ "▁thr ust",
+ "▁Cult ura",
+ "W F",
+ "▁S olo",
+ "▁So lo",
+ "▁Sol o",
+ "▁in vas",
+ "▁inv as",
+ "▁individ ually",
+ "▁individual ly",
+ "ib m",
+ "i bm",
+ "▁et apa",
+ "▁hand ed",
+ "▁han ded",
+ "▁where ver",
+ "▁interpol ation",
+ "▁mus ée",
+ "▁C NN",
+ "id ia",
+ "idi a",
+ "i dia",
+ "ńst w",
+ "▁pr zew",
+ "▁prze w",
+ "▁prz ew",
+ "ug hing",
+ "ugh ing",
+ "▁a ctors",
+ "▁act ors",
+ "▁actor s",
+ "▁Ori ental",
+ "▁Orient al",
+ "▁conven ience",
+ "▁mi asta",
+ "br ains",
+ "bra ins",
+ "▁ме ся",
+ "▁inf atti",
+ "▁All Movie",
+ "▁crit ique",
+ "▁success o",
+ "▁succ esso",
+ "anc ouver",
+ "▁f á",
+ "ъл гар",
+ "▁wis dom",
+ "▁Pho enix",
+ "ho le",
+ "hol e",
+ "h ole",
+ "▁inform ación",
+ "▁Air lines",
+ "▁Airl ines",
+ ". «",
+ "mo rt",
+ "mor t",
+ "m ort",
+ "user Id",
+ "▁*/ \r",
+ "▁C ongo",
+ "▁Con go",
+ "▁Cong o",
+ "▁\" `",
+ "▁ \"`",
+ "co rr",
+ "cor r",
+ "c orr",
+ "▁problem as",
+ "▁proble mas",
+ "▁problema s",
+ "▁probl emas",
+ "▁b ib",
+ "▁bi b",
+ "▁ bib",
+ "▁póź niej",
+ "▁file Name",
+ "▁ fileName",
+ "zo tt",
+ "z ott",
+ "ma cht",
+ "mac ht",
+ "m acht",
+ "▁Ul rich",
+ "C y",
+ "end point",
+ "▁she ep",
+ "▁i bn",
+ "Fe ed",
+ "F eed",
+ "▁sympath y",
+ "▁I b",
+ "▁territ orial",
+ "ra ting",
+ "rat ing",
+ "r ating",
+ "да ми",
+ "▁d st",
+ "▁ds t",
+ "▁ dst",
+ "у ю",
+ "ah o",
+ "a ho",
+ "▁s ug",
+ "▁su g",
+ "em ia",
+ "emi a",
+ "▁t ed",
+ "▁te d",
+ "▁ ted",
+ "▁A pi",
+ "▁Ap i",
+ "▁ Api",
+ "▁R ica",
+ "▁Ric a",
+ "▁Ri ca",
+ "▁M R",
+ "▁ MR",
+ "ński m",
+ "ń skim",
+ "▁V oor",
+ "▁Vo or",
+ "▁de vil",
+ "▁dev il",
+ "▁devi l",
+ "▁Ф о",
+ "▁N är",
+ "▁Nä r",
+ "▁... )",
+ "▁.. .)",
+ "▁ ...)",
+ "▁v ois",
+ "▁vo is",
+ "▁ab bre",
+ "▁abb re",
+ "▁M änner",
+ "xim o",
+ "xi mo",
+ "x imo",
+ "▁intellect ual",
+ "▁t ales",
+ "▁tal es",
+ "▁ta les",
+ "▁tale s",
+ "sim ilar",
+ "ne um",
+ "▁O rig",
+ "▁Or ig",
+ "▁Ori g",
+ "▁po stal",
+ "▁pos tal",
+ "▁post al",
+ "▁h vor",
+ "▁ident ification",
+ "▁identific ation",
+ "▁О д",
+ "ue sto",
+ "ues to",
+ "uest o",
+ "u esto",
+ "▁. ./",
+ "▁.. /",
+ "▁ ../",
+ "▁b ir",
+ "▁bi r",
+ "▁ bir",
+ "▁Л он",
+ "▁Ло н",
+ "▁es empio",
+ "▁E ing",
+ "▁Ein g",
+ "Exp and",
+ "▁PR IMARY",
+ "▁J in",
+ "▁Ji n",
+ "▁vš ak",
+ "ours es",
+ "ourse s",
+ "▁Be tty",
+ "▁Bet ty",
+ "▁W M",
+ "▁ WM",
+ "▁fl ask",
+ "▁fla sk",
+ "hl en",
+ "h len",
+ "▁A del",
+ "▁Ad el",
+ "lar avel",
+ "▁д ет",
+ "▁де т",
+ "сь кою",
+ "сько ю",
+ "▁M undo",
+ "▁Mun do",
+ "ic zn",
+ "icz n",
+ "ifi é",
+ "▁М ор",
+ "▁Мо р",
+ "▁д рев",
+ "▁др ев",
+ "Date Format",
+ "сь ким",
+ "ськ им",
+ "▁d ated",
+ "▁da ted",
+ "▁dat ed",
+ "▁date d",
+ "▁ dated",
+ "ко ли",
+ "кол и",
+ "▁результа те",
+ "\\) .",
+ "\\ ).",
+ "▁delay ed",
+ "so und",
+ "s ound",
+ "▁Ма к",
+ "▁\" ...",
+ "▁\". ..",
+ "▁b innen",
+ "▁bin nen",
+ "▁фа куль",
+ "▁pol ygon",
+ "▁poly gon",
+ "▁eg gs",
+ "▁egg s",
+ "At IndexPath",
+ "AtIndex Path",
+ "мен таль",
+ "мент аль",
+ "мента ль",
+ "▁in cred",
+ "▁incre d",
+ "▁inc red",
+ "ch unk",
+ "web driver",
+ "▁с вобо",
+ "▁сво бо",
+ "▁mi ędzy",
+ "Rece ived",
+ "Receive d",
+ "▁M onde",
+ "▁Mon de",
+ "▁Mo nde",
+ "▁Mond e",
+ "▁J Query",
+ "Bu tt",
+ "But t",
+ "B utt",
+ "▁P DO",
+ "▁for ec",
+ "▁fo rec",
+ "▁fore c",
+ "▁discipl ine",
+ "ch ev",
+ "che v",
+ "на т",
+ "н ат",
+ "▁re dis",
+ "▁red is",
+ "▁hun ting",
+ "▁al k",
+ "▁ alk",
+ "▁proof s",
+ "PR I",
+ "P RI",
+ "▁c hip",
+ "▁ch ip",
+ "▁chi p",
+ "és ie",
+ "▁H O",
+ "▁ HO",
+ "▁r ug",
+ "▁ru g",
+ "▁ rug",
+ "zo s",
+ "z os",
+ "▁s orte",
+ "▁sort e",
+ "▁sor te",
+ "▁ze igt",
+ "▁Phys ics",
+ "leg te",
+ "legt e",
+ "▁proport ional",
+ "▁proportion al",
+ "▁tool bar",
+ "ve ment",
+ "v ement",
+ "not in",
+ "▁prv ní",
+ "bl ah",
+ "bla h",
+ "b lah",
+ "▁prés ence",
+ "▁l loc",
+ "▁ll oc",
+ "▁lí der",
+ "▁Ac cept",
+ "▁ Accept",
+ "▁Al ways",
+ "▁\" {",
+ "▁divers i",
+ "▁diver si",
+ "ik or",
+ "iko r",
+ "i kor",
+ "Per iod",
+ "ж ён",
+ "▁Al liance",
+ "▁All iance",
+ "▁re lay",
+ "▁rel ay",
+ "▁rela y",
+ "Br o",
+ "B ro",
+ "jö n",
+ "j ön",
+ "▁B aud",
+ "▁Ba ud",
+ "▁Bau d",
+ "▁B ian",
+ "▁Bi an",
+ "') [",
+ "' )[",
+ "чи в",
+ "▁P oss",
+ "▁Po ss",
+ "▁Pos s",
+ "▁Mitg lieder",
+ "▁Mitglied er",
+ "▁n ev",
+ "▁ne v",
+ "Dan iel",
+ "▁t ends",
+ "▁ten ds",
+ "▁tend s",
+ "▁compag nie",
+ "▁liv res",
+ "▁livre s",
+ "lu b",
+ "l ub",
+ "▁ ▁",
+ "▁▁ ▁▁",
+ "▁▁▁ ▁",
+ "▁ ▁▁▁",
+ "▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁",
+ "▁▁▁▁ ▁",
+ "▁▁▁ ▁▁",
+ "▁ ▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁",
+ "▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁",
+ "▁ ▁▁",
+ "▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/out/finetune/tinyllama_full_arc/2504/final/config.json b/out/finetune/tinyllama_full_arc/2504/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/final/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/finetune/tinyllama_full_arc/2504/final/generation_config.json b/out/finetune/tinyllama_full_arc/2504/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/finetune/tinyllama_full_arc/2504/final/hyperparameters.yaml b/out/finetune/tinyllama_full_arc/2504/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c494c1ec4aa4106ec649b902d60da9643512490a
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/final/hyperparameters.yaml
@@ -0,0 +1,43 @@
+checkpoint_dir: out/pretrain/tinyllama/2504_full/final
+out_dir: out/finetune/tinyllama_full_arc/2504
+precision: bf16-true
+devices: 1
+num_nodes: 1
+resume: false
+data:
+ class_path: litgpt.data.JSON
+ init_args:
+ json_path: litgpt/data/arc_finetune/train.json
+ mask_prompt: false
+ val_split_fraction: 0.02
+ prompt_style: default
+ ignore_index: -100
+ seed: 42
+ num_workers: 4
+train:
+ save_interval: 800
+ log_interval: 1
+ global_batch_size: 32
+ micro_batch_size: 4
+ lr_warmup_steps: 1000
+ epochs: 1
+ max_seq_length: 512
+ min_lr: 6.0e-05
+eval:
+ interval: 25
+ max_new_tokens: 100
+ max_iters: 100
+ initial_validation: false
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 0.0002
+ weight_decay: 0.0
+ betas:
+ - 0.9
+ - 0.95
+logger_name: csv
+seed: 1337
diff --git a/out/finetune/tinyllama_full_arc/2504/final/model_config.yaml b/out/finetune/tinyllama_full_arc/2504/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d31881309289cb59520314f7da89a8ef38f3c77e
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 64
+hf_config:
+ name: TinyLlama-1.1B-intermediate-step-1431k-3T
+ org: TinyLlama
+intermediate_size: 5632
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 2048
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 22
+n_query_groups: 4
+name: tiny-llama-1.1b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-05
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/finetune/tinyllama_full_arc/2504/final/prompt_style.yaml b/out/finetune/tinyllama_full_arc/2504/final/prompt_style.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..941ee04454a29d3bc5e7d95772771250ed72f339
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/final/prompt_style.yaml
@@ -0,0 +1 @@
+class_path: litgpt.prompts.Default
diff --git a/out/finetune/tinyllama_full_arc/2504/final/tokenizer.json b/out/finetune/tinyllama_full_arc/2504/final/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6e931b92caff4c79c5c56282f1e89569a0ae558
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/final/tokenizer.json
@@ -0,0 +1,93391 @@
+{
+ "version": "1.0",
+ "truncation": null,
+ "padding": null,
+ "added_tokens": [
+ {
+ "id": 0,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 1,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 2,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ }
+ ],
+ "normalizer": {
+ "type": "Sequence",
+ "normalizers": [
+ {
+ "type": "Prepend",
+ "prepend": "▁"
+ },
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": " "
+ },
+ "content": "▁"
+ }
+ ]
+ },
+ "pre_tokenizer": null,
+ "post_processor": {
+ "type": "TemplateProcessing",
+ "single": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ }
+ ],
+ "pair": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ },
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 1
+ }
+ },
+ {
+ "Sequence": {
+ "id": "B",
+ "type_id": 1
+ }
+ }
+ ],
+ "special_tokens": {
+ "": {
+ "id": "",
+ "ids": [
+ 1
+ ],
+ "tokens": [
+ ""
+ ]
+ }
+ }
+ },
+ "decoder": {
+ "type": "Sequence",
+ "decoders": [
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": "▁"
+ },
+ "content": " "
+ },
+ {
+ "type": "ByteFallback"
+ },
+ {
+ "type": "Fuse"
+ },
+ {
+ "type": "Strip",
+ "content": " ",
+ "start": 1,
+ "stop": 0
+ }
+ ]
+ },
+ "model": {
+ "type": "BPE",
+ "dropout": null,
+ "unk_token": "",
+ "continuing_subword_prefix": null,
+ "end_of_word_suffix": null,
+ "fuse_unk": true,
+ "byte_fallback": true,
+ "vocab": {
+ "": 0,
+ "": 1,
+ "": 2,
+ "<0x00>": 3,
+ "<0x01>": 4,
+ "<0x02>": 5,
+ "<0x03>": 6,
+ "<0x04>": 7,
+ "<0x05>": 8,
+ "<0x06>": 9,
+ "<0x07>": 10,
+ "<0x08>": 11,
+ "<0x09>": 12,
+ "<0x0A>": 13,
+ "<0x0B>": 14,
+ "<0x0C>": 15,
+ "<0x0D>": 16,
+ "<0x0E>": 17,
+ "<0x0F>": 18,
+ "<0x10>": 19,
+ "<0x11>": 20,
+ "<0x12>": 21,
+ "<0x13>": 22,
+ "<0x14>": 23,
+ "<0x15>": 24,
+ "<0x16>": 25,
+ "<0x17>": 26,
+ "<0x18>": 27,
+ "<0x19>": 28,
+ "<0x1A>": 29,
+ "<0x1B>": 30,
+ "<0x1C>": 31,
+ "<0x1D>": 32,
+ "<0x1E>": 33,
+ "<0x1F>": 34,
+ "<0x20>": 35,
+ "<0x21>": 36,
+ "<0x22>": 37,
+ "<0x23>": 38,
+ "<0x24>": 39,
+ "<0x25>": 40,
+ "<0x26>": 41,
+ "<0x27>": 42,
+ "<0x28>": 43,
+ "<0x29>": 44,
+ "<0x2A>": 45,
+ "<0x2B>": 46,
+ "<0x2C>": 47,
+ "<0x2D>": 48,
+ "<0x2E>": 49,
+ "<0x2F>": 50,
+ "<0x30>": 51,
+ "<0x31>": 52,
+ "<0x32>": 53,
+ "<0x33>": 54,
+ "<0x34>": 55,
+ "<0x35>": 56,
+ "<0x36>": 57,
+ "<0x37>": 58,
+ "<0x38>": 59,
+ "<0x39>": 60,
+ "<0x3A>": 61,
+ "<0x3B>": 62,
+ "<0x3C>": 63,
+ "<0x3D>": 64,
+ "<0x3E>": 65,
+ "<0x3F>": 66,
+ "<0x40>": 67,
+ "<0x41>": 68,
+ "<0x42>": 69,
+ "<0x43>": 70,
+ "<0x44>": 71,
+ "<0x45>": 72,
+ "<0x46>": 73,
+ "<0x47>": 74,
+ "<0x48>": 75,
+ "<0x49>": 76,
+ "<0x4A>": 77,
+ "<0x4B>": 78,
+ "<0x4C>": 79,
+ "<0x4D>": 80,
+ "<0x4E>": 81,
+ "<0x4F>": 82,
+ "<0x50>": 83,
+ "<0x51>": 84,
+ "<0x52>": 85,
+ "<0x53>": 86,
+ "<0x54>": 87,
+ "<0x55>": 88,
+ "<0x56>": 89,
+ "<0x57>": 90,
+ "<0x58>": 91,
+ "<0x59>": 92,
+ "<0x5A>": 93,
+ "<0x5B>": 94,
+ "<0x5C>": 95,
+ "<0x5D>": 96,
+ "<0x5E>": 97,
+ "<0x5F>": 98,
+ "<0x60>": 99,
+ "<0x61>": 100,
+ "<0x62>": 101,
+ "<0x63>": 102,
+ "<0x64>": 103,
+ "<0x65>": 104,
+ "<0x66>": 105,
+ "<0x67>": 106,
+ "<0x68>": 107,
+ "<0x69>": 108,
+ "<0x6A>": 109,
+ "<0x6B>": 110,
+ "<0x6C>": 111,
+ "<0x6D>": 112,
+ "<0x6E>": 113,
+ "<0x6F>": 114,
+ "<0x70>": 115,
+ "<0x71>": 116,
+ "<0x72>": 117,
+ "<0x73>": 118,
+ "<0x74>": 119,
+ "<0x75>": 120,
+ "<0x76>": 121,
+ "<0x77>": 122,
+ "<0x78>": 123,
+ "<0x79>": 124,
+ "<0x7A>": 125,
+ "<0x7B>": 126,
+ "<0x7C>": 127,
+ "<0x7D>": 128,
+ "<0x7E>": 129,
+ "<0x7F>": 130,
+ "<0x80>": 131,
+ "<0x81>": 132,
+ "<0x82>": 133,
+ "<0x83>": 134,
+ "<0x84>": 135,
+ "<0x85>": 136,
+ "<0x86>": 137,
+ "<0x87>": 138,
+ "<0x88>": 139,
+ "<0x89>": 140,
+ "<0x8A>": 141,
+ "<0x8B>": 142,
+ "<0x8C>": 143,
+ "<0x8D>": 144,
+ "<0x8E>": 145,
+ "<0x8F>": 146,
+ "<0x90>": 147,
+ "<0x91>": 148,
+ "<0x92>": 149,
+ "<0x93>": 150,
+ "<0x94>": 151,
+ "<0x95>": 152,
+ "<0x96>": 153,
+ "<0x97>": 154,
+ "<0x98>": 155,
+ "<0x99>": 156,
+ "<0x9A>": 157,
+ "<0x9B>": 158,
+ "<0x9C>": 159,
+ "<0x9D>": 160,
+ "<0x9E>": 161,
+ "<0x9F>": 162,
+ "<0xA0>": 163,
+ "<0xA1>": 164,
+ "<0xA2>": 165,
+ "<0xA3>": 166,
+ "<0xA4>": 167,
+ "<0xA5>": 168,
+ "<0xA6>": 169,
+ "<0xA7>": 170,
+ "<0xA8>": 171,
+ "<0xA9>": 172,
+ "<0xAA>": 173,
+ "<0xAB>": 174,
+ "<0xAC>": 175,
+ "<0xAD>": 176,
+ "<0xAE>": 177,
+ "<0xAF>": 178,
+ "<0xB0>": 179,
+ "<0xB1>": 180,
+ "<0xB2>": 181,
+ "<0xB3>": 182,
+ "<0xB4>": 183,
+ "<0xB5>": 184,
+ "<0xB6>": 185,
+ "<0xB7>": 186,
+ "<0xB8>": 187,
+ "<0xB9>": 188,
+ "<0xBA>": 189,
+ "<0xBB>": 190,
+ "<0xBC>": 191,
+ "<0xBD>": 192,
+ "<0xBE>": 193,
+ "<0xBF>": 194,
+ "<0xC0>": 195,
+ "<0xC1>": 196,
+ "<0xC2>": 197,
+ "<0xC3>": 198,
+ "<0xC4>": 199,
+ "<0xC5>": 200,
+ "<0xC6>": 201,
+ "<0xC7>": 202,
+ "<0xC8>": 203,
+ "<0xC9>": 204,
+ "<0xCA>": 205,
+ "<0xCB>": 206,
+ "<0xCC>": 207,
+ "<0xCD>": 208,
+ "<0xCE>": 209,
+ "<0xCF>": 210,
+ "<0xD0>": 211,
+ "<0xD1>": 212,
+ "<0xD2>": 213,
+ "<0xD3>": 214,
+ "<0xD4>": 215,
+ "<0xD5>": 216,
+ "<0xD6>": 217,
+ "<0xD7>": 218,
+ "<0xD8>": 219,
+ "<0xD9>": 220,
+ "<0xDA>": 221,
+ "<0xDB>": 222,
+ "<0xDC>": 223,
+ "<0xDD>": 224,
+ "<0xDE>": 225,
+ "<0xDF>": 226,
+ "<0xE0>": 227,
+ "<0xE1>": 228,
+ "<0xE2>": 229,
+ "<0xE3>": 230,
+ "<0xE4>": 231,
+ "<0xE5>": 232,
+ "<0xE6>": 233,
+ "<0xE7>": 234,
+ "<0xE8>": 235,
+ "<0xE9>": 236,
+ "<0xEA>": 237,
+ "<0xEB>": 238,
+ "<0xEC>": 239,
+ "<0xED>": 240,
+ "<0xEE>": 241,
+ "<0xEF>": 242,
+ "<0xF0>": 243,
+ "<0xF1>": 244,
+ "<0xF2>": 245,
+ "<0xF3>": 246,
+ "<0xF4>": 247,
+ "<0xF5>": 248,
+ "<0xF6>": 249,
+ "<0xF7>": 250,
+ "<0xF8>": 251,
+ "<0xF9>": 252,
+ "<0xFA>": 253,
+ "<0xFB>": 254,
+ "<0xFC>": 255,
+ "<0xFD>": 256,
+ "<0xFE>": 257,
+ "<0xFF>": 258,
+ "▁▁": 259,
+ "▁t": 260,
+ "er": 261,
+ "in": 262,
+ "▁a": 263,
+ "en": 264,
+ "on": 265,
+ "▁th": 266,
+ "es": 267,
+ "▁▁▁▁": 268,
+ "▁s": 269,
+ "▁d": 270,
+ "at": 271,
+ "or": 272,
+ "an": 273,
+ "▁c": 274,
+ "is": 275,
+ "re": 276,
+ "it": 277,
+ "▁the": 278,
+ "ar": 279,
+ "le": 280,
+ "▁w": 281,
+ "▁p": 282,
+ "ou": 283,
+ "al": 284,
+ "▁f": 285,
+ "▁m": 286,
+ "ed": 287,
+ "▁o": 288,
+ "▁b": 289,
+ "om": 290,
+ "ion": 291,
+ "ing": 292,
+ "ic": 293,
+ "as": 294,
+ "el": 295,
+ "ent": 296,
+ "▁in": 297,
+ "▁h": 298,
+ "nd": 299,
+ "et": 300,
+ "▁l": 301,
+ "▁n": 302,
+ "st": 303,
+ "▁to": 304,
+ "ch": 305,
+ "▁I": 306,
+ "ro": 307,
+ "▁▁▁▁▁▁▁▁": 308,
+ "il": 309,
+ "▁of": 310,
+ "de": 311,
+ "ct": 312,
+ "▁(": 313,
+ "am": 314,
+ "▁C": 315,
+ "▁de": 316,
+ "▁S": 317,
+ "▁u": 318,
+ "▁A": 319,
+ "▁\\": 320,
+ "▁e": 321,
+ "▁and": 322,
+ "▁T": 323,
+ "ol": 324,
+ "▁v": 325,
+ "im": 326,
+ "ot": 327,
+ "ad": 328,
+ "ut": 329,
+ "▁g": 330,
+ "em": 331,
+ "ur": 332,
+ "id": 333,
+ "▁*": 334,
+ "ig": 335,
+ "ra": 336,
+ "▁re": 337,
+ "▁is": 338,
+ "qu": 339,
+ "ow": 340,
+ "▁M": 341,
+ "est": 342,
+ "▁y": 343,
+ "se": 344,
+ "ve": 345,
+ "ce": 346,
+ "ie": 347,
+ "un": 348,
+ "▁P": 349,
+ "▁B": 350,
+ "ag": 351,
+ "ul": 352,
+ "▁=": 353,
+ "he": 354,
+ "end": 355,
+ "ode": 356,
+ "ter": 357,
+ "ment": 358,
+ "os": 359,
+ "▁D": 360,
+ "if": 361,
+ "ation": 362,
+ "▁for": 363,
+ "▁r": 364,
+ "▁L": 365,
+ "▁you": 366,
+ "▁be": 367,
+ "ly": 368,
+ "ver": 369,
+ "ab": 370,
+ "te": 371,
+ "▁it": 372,
+ "▁on": 373,
+ "ri": 374,
+ "us": 375,
+ "▁\"": 376,
+ "▁wh": 377,
+ "▁con": 378,
+ "▁H": 379,
+ "▁st": 380,
+ "ir": 381,
+ "▁E": 382,
+ "▁F": 383,
+ "ck": 384,
+ "▁an": 385,
+ "th": 386,
+ "eg": 387,
+ "ay": 388,
+ "ith": 389,
+ "▁R": 390,
+ "ist": 391,
+ "and": 392,
+ "▁that": 393,
+ "▁al": 394,
+ "▁$": 395,
+ "▁#": 396,
+ "od": 397,
+ "um": 398,
+ "▁W": 399,
+ "ht": 400,
+ "code": 401,
+ "▁G": 402,
+ "ate": 403,
+ "ess": 404,
+ "▁N": 405,
+ "ere": 406,
+ "pp": 407,
+ "▁as": 408,
+ "▁se": 409,
+ "▁pro": 410,
+ "▁with": 411,
+ "pe": 412,
+ "▁k": 413,
+ "ers": 414,
+ "pt": 415,
+ ");": 416,
+ "lo": 417,
+ "▁▁▁▁▁": 418,
+ "▁com": 419,
+ "ame": 420,
+ "▁`": 421,
+ "▁Com": 422,
+ "ia": 423,
+ "ant": 424,
+ "▁la": 425,
+ "▁{": 426,
+ "▁en": 427,
+ "ction": 428,
+ "▁ex": 429,
+ "ld": 430,
+ "ub": 431,
+ "▁j": 432,
+ "la": 433,
+ "ue": 434,
+ "▁J": 435,
+ "ich": 436,
+ "▁do": 437,
+ "▁O": 438,
+ "▁qu": 439,
+ "iv": 440,
+ "ort": 441,
+ "art": 442,
+ "▁un": 443,
+ "▁##": 444,
+ "▁this": 445,
+ "ke": 446,
+ "▁ha": 447,
+ "▁-": 448,
+ "out": 449,
+ "▁The": 450,
+ "▁not": 451,
+ "▁ne": 452,
+ "ill": 453,
+ "▁le": 454,
+ "ci": 455,
+ "rom": 456,
+ "ine": 457,
+ "//": 458,
+ "op": 459,
+ "egin": 460,
+ "▁Comment": 461,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 462,
+ "begin": 463,
+ "ст": 464,
+ "ass": 465,
+ "iz": 466,
+ ").": 467,
+ "og": 468,
+ "▁п": 469,
+ "▁or": 470,
+ "▁was": 471,
+ "▁at": 472,
+ "our": 473,
+ "▁i": 474,
+ "ain": 475,
+ "▁K": 476,
+ "на": 477,
+ "▁V": 478,
+ "ge": 479,
+ "▁su": 480,
+ "ap": 481,
+ "age": 482,
+ "ould": 483,
+ "ne": 484,
+ "av": 485,
+ "xt": 486,
+ "ore": 487,
+ "ile": 488,
+ "--": 489,
+ "▁в": 490,
+ "▁by": 491,
+ "li": 492,
+ "ath": 493,
+ "ра": 494,
+ "ber": 495,
+ "ach": 496,
+ "all": 497,
+ "▁Th": 498,
+ "ult": 499,
+ "▁}": 500,
+ "▁U": 501,
+ "▁us": 502,
+ "▁z": 503,
+ "ust": 504,
+ "▁have": 505,
+ "lic": 506,
+ "ни": 507,
+ "▁can": 508,
+ "tr": 509,
+ "com": 510,
+ "),": 511,
+ "▁In": 512,
+ "ind": 513,
+ "ell": 514,
+ "▁from": 515,
+ "ов": 516,
+ "to": 517,
+ "▁[": 518,
+ "able": 519,
+ "ost": 520,
+ "▁ch": 521,
+ "ect": 522,
+ "ight": 523,
+ "int": 524,
+ "▁'": 525,
+ "▁are": 526,
+ "▁im": 527,
+ "▁sh": 528,
+ "▁<": 529,
+ "▁An": 530,
+ "▁с": 531,
+ "ata": 532,
+ "ire": 533,
+ "▁tr": 534,
+ "con": 535,
+ "ord": 536,
+ "ity": 537,
+ "ard": 538,
+ "▁▁▁▁▁▁": 539,
+ "▁he": 540,
+ "▁but": 541,
+ "oc": 542,
+ "=\"": 543,
+ "▁pr": 544,
+ "ure": 545,
+ "per": 546,
+ "ack": 547,
+ "ork": 548,
+ "ong": 549,
+ "ans": 550,
+ "ко": 551,
+ "ple": 552,
+ "▁des": 553,
+ "ok": 554,
+ "orm": 555,
+ "wer": 556,
+ "ak": 557,
+ "pr": 558,
+ "ase": 559,
+ "▁el": 560,
+ "ph": 561,
+ "ac": 562,
+ "▁und": 563,
+ "▁ar": 564,
+ "▁if": 565,
+ "ud": 566,
+ "ps": 567,
+ "ite": 568,
+ "ble": 569,
+ "но": 570,
+ "fer": 571,
+ "pl": 572,
+ "ive": 573,
+ "ang": 574,
+ "ens": 575,
+ "ро": 576,
+ "▁so": 577,
+ "so": 578,
+ "ast": 579,
+ "()": 580,
+ "swer": 581,
+ "ru": 582,
+ "ies": 583,
+ "▁:": 584,
+ "au": 585,
+ "ov": 586,
+ "ре": 587,
+ "го": 588,
+ "▁der": 589,
+ "▁my": 590,
+ "▁we": 591,
+ "▁me": 592,
+ "nt": 593,
+ "▁ad": 594,
+ "urn": 595,
+ "▁your": 596,
+ "://": 597,
+ "are": 598,
+ "▁all": 599,
+ "ff": 600,
+ "io": 601,
+ "estion": 602,
+ "ime": 603,
+ "▁er": 604,
+ "lass": 605,
+ "▁и": 606,
+ "▁which": 607,
+ "ome": 608,
+ "ont": 609,
+ "▁par": 610,
+ "▁ma": 611,
+ "▁Y": 612,
+ "\",": 613,
+ "▁о": 614,
+ "ft": 615,
+ "ial": 616,
+ "cc": 617,
+ "ound": 618,
+ "▁li": 619,
+ "▁res": 620,
+ "eth": 621,
+ "ject": 622,
+ "▁app": 623,
+ "▁St": 624,
+ "ice": 625,
+ "▁am": 626,
+ "act": 627,
+ "▁del": 628,
+ "gr": 629,
+ "ated": 630,
+ "ier": 631,
+ "▁▁▁▁▁▁▁▁▁▁▁▁": 632,
+ "▁ab": 633,
+ "▁et": 634,
+ "ally": 635,
+ "..": 636,
+ "port": 637,
+ "ik": 638,
+ "▁per": 639,
+ "▁cont": 640,
+ "ри": 641,
+ "ка": 642,
+ "ser": 643,
+ "ли": 644,
+ "ll": 645,
+ "iew": 646,
+ "ign": 647,
+ "_{": 648,
+ "put": 649,
+ "one": 650,
+ "unction": 651,
+ "▁di": 652,
+ "ary": 653,
+ "ition": 654,
+ "ma": 655,
+ "ен": 656,
+ "get": 657,
+ "▁lo": 658,
+ "▁val": 659,
+ "▁Q": 660,
+ "ran": 661,
+ "▁д": 662,
+ "ence": 663,
+ "▁work": 664,
+ "▁на": 665,
+ "ip": 666,
+ "item": 667,
+ "ype": 668,
+ "▁&": 669,
+ "▁his": 670,
+ "▁use": 671,
+ "der": 672,
+ "▁Answer": 673,
+ "▁will": 674,
+ "ize": 675,
+ "та": 676,
+ "low": 677,
+ "▁Ch": 678,
+ "▁get": 679,
+ "ide": 680,
+ "ous": 681,
+ "ink": 682,
+ "ption": 683,
+ "ла": 684,
+ "turn": 685,
+ "ung": 686,
+ "ec": 687,
+ "ug": 688,
+ "form": 689,
+ "res": 690,
+ "htt": 691,
+ "oug": 692,
+ "ль": 693,
+ "▁no": 694,
+ "cl": 695,
+ "▁ro": 696,
+ "▁one": 697,
+ "tt": 698,
+ "cri": 699,
+ "du": 700,
+ "▁up": 701,
+ "то": 702,
+ "(\"": 703,
+ "▁ob": 704,
+ "we": 705,
+ "ory": 706,
+ "▁est": 707,
+ "ery": 708,
+ "iel": 709,
+ "str": 710,
+ "ob": 711,
+ "▁que": 712,
+ "ian": 713,
+ "▁out": 714,
+ "▁pl": 715,
+ "▁new": 716,
+ "ки": 717,
+ "▁+": 718,
+ "ry": 719,
+ "oth": 720,
+ "ther": 721,
+ "▁var": 722,
+ "▁would": 723,
+ "▁ser": 724,
+ "tern": 725,
+ "text": 726,
+ "▁there": 727,
+ "ish": 728,
+ "ror": 729,
+ "те": 730,
+ "▁set": 731,
+ "▁@": 732,
+ "▁по": 733,
+ "▁te": 734,
+ "ex": 735,
+ "▁return": 736,
+ "ail": 737,
+ "▁any": 738,
+ "▁It": 739,
+ "▁function": 740,
+ "{\\": 741,
+ "',": 742,
+ "és": 743,
+ "ale": 744,
+ "ан": 745,
+ "▁when": 746,
+ "ib": 747,
+ "▁go": 748,
+ "ance": 749,
+ "▁had": 750,
+ "▁Qu": 751,
+ "▁comp": 752,
+ "ле": 753,
+ "▁з": 754,
+ "math": 755,
+ "▁has": 756,
+ "▁м": 757,
+ "▁pre": 758,
+ "ener": 759,
+ "▁part": 760,
+ "elf": 761,
+ "▁die": 762,
+ "▁like": 763,
+ "ray": 764,
+ "irst": 765,
+ "▁dis": 766,
+ "▁man": 767,
+ "rit": 768,
+ "▁then": 769,
+ "▁class": 770,
+ "pro": 771,
+ "▁po": 772,
+ "▁using": 773,
+ "eb": 774,
+ "▁code": 775,
+ "own": 776,
+ "▁some": 777,
+ "ces": 778,
+ "▁$\\": 779,
+ "ер": 780,
+ "lect": 781,
+ "▁au": 782,
+ "isch": 783,
+ "▁col": 784,
+ "▁–": 785,
+ "up": 786,
+ "ons": 787,
+ "▁add": 788,
+ "ild": 789,
+ "iss": 790,
+ "val": 791,
+ "ount": 792,
+ "les": 793,
+ "vent": 794,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁": 795,
+ "▁Z": 796,
+ "In": 797,
+ "row": 798,
+ "ear": 799,
+ "ations": 800,
+ "ah": 801,
+ "que": 802,
+ "ublic": 803,
+ "ank": 804,
+ "▁sp": 805,
+ "▁Wh": 806,
+ "----": 807,
+ "sk": 808,
+ "ew": 809,
+ "ags": 810,
+ "ти": 811,
+ "ann": 812,
+ "▁—": 813,
+ "ert": 814,
+ "ace": 815,
+ "sch": 816,
+ "▁need": 817,
+ "▁à": 818,
+ "ien": 819,
+ "ough": 820,
+ "не": 821,
+ "▁def": 822,
+ "ij": 823,
+ "ern": 824,
+ "▁what": 825,
+ "▁Ar": 826,
+ "wo": 827,
+ "ml": 828,
+ "": 829,
+ "▁Re": 830,
+ "▁es": 831,
+ "▁inst": 832,
+ "bo": 833,
+ "az": 834,
+ "▁###": 835,
+ "▁б": 836,
+ "erm": 837,
+ "▁Al": 838,
+ "led": 839,
+ "да": 840,
+ "ten": 841,
+ "set": 842,
+ "ло": 843,
+ "▁comm": 844,
+ "sh": 845,
+ "ва": 846,
+ "▁/": 847,
+ "▁data": 848,
+ "▁//": 849,
+ "](": 850,
+ "▁str": 851,
+ "ose": 852,
+ "▁Un": 853,
+ "ven": 854,
+ "St": 855,
+ "...": 856,
+ "▁С": 857,
+ "yst": 858,
+ "▁«": 859,
+ "ick": 860,
+ "ix": 861,
+ "par": 862,
+ "▁у": 863,
+ "▁want": 864,
+ "ng": 865,
+ "ote": 866,
+ "▁gr": 867,
+ "▁du": 868,
+ "▁.": 869,
+ "und": 870,
+ "▁only": 871,
+ "▁sa": 872,
+ "ely": 873,
+ "vers": 874,
+ "▁ent": 875,
+ "))": 876,
+ "('": 877,
+ "▁mod": 878,
+ "ava": 879,
+ "ton": 880,
+ "▁should": 881,
+ "ement": 882,
+ "▁form": 883,
+ "▁also": 884,
+ "▁sc": 885,
+ "ings": 886,
+ "▁You": 887,
+ "ón": 888,
+ "▁kn": 889,
+ "();": 890,
+ "▁|": 891,
+ "▁were": 892,
+ "ss": 893,
+ "▁Question": 894,
+ "ise": 895,
+ "▁they": 896,
+ "▁De": 897,
+ "ond": 898,
+ "▁sol": 899,
+ "▁fol": 900,
+ "▁more": 901,
+ "▁her": 902,
+ "▁_": 903,
+ "▁é": 904,
+ "atch": 905,
+ "fter": 906,
+ "▁cre": 907,
+ "lock": 908,
+ "tring": 909,
+ "▁This": 910,
+ "ze": 911,
+ "ado": 912,
+ "ull": 913,
+ "ger": 914,
+ "be": 915,
+ "▁other": 916,
+ "▁Tags": 917,
+ "ution": 918,
+ "ict": 919,
+ "▁how": 920,
+ "▁x": 921,
+ "▁Se": 922,
+ "▁che": 923,
+ "cript": 924,
+ "▁just": 925,
+ "▁pos": 926,
+ "ange": 927,
+ "ific": 928,
+ "ree": 929,
+ "}}": 930,
+ "▁time": 931,
+ "app": 932,
+ "ны": 933,
+ "▁file": 934,
+ "ark": 935,
+ "ical": 936,
+ "▁first": 937,
+ "▁int": 938,
+ "▁В": 939,
+ "▁He": 940,
+ "ta": 941,
+ "ument": 942,
+ "ors": 943,
+ "lement": 944,
+ "rac": 945,
+ "▁ag": 946,
+ "▁does": 947,
+ "yn": 948,
+ "read": 949,
+ "ual": 950,
+ "▁Le": 951,
+ "ys": 952,
+ "▁em": 953,
+ "▁num": 954,
+ "vel": 955,
+ "ди": 956,
+ "over": 957,
+ "▁dif": 958,
+ "ethod": 959,
+ "▁If": 960,
+ "▁spe": 961,
+ "ym": 962,
+ "▁them": 963,
+ "▁into": 964,
+ "▁▁▁▁▁▁▁▁▁▁": 965,
+ "▁les": 966,
+ "▁its": 967,
+ "ese": 968,
+ "ield": 969,
+ "▁public": 970,
+ "▁П": 971,
+ "▁den": 972,
+ "ystem": 973,
+ "of": 974,
+ "▁over": 975,
+ "->": 976,
+ "▁fil": 977,
+ "name": 978,
+ "inal": 979,
+ "▁il": 980,
+ "ample": 981,
+ "▁way": 982,
+ "ica": 983,
+ "во": 984,
+ "cess": 985,
+ "itt": 986,
+ "uch": 987,
+ "▁where": 988,
+ "ми": 989,
+ "org": 990,
+ "https": 991,
+ "▁vo": 992,
+ "ient": 993,
+ "ove": 994,
+ "▁value": 995,
+ "eng": 996,
+ "▁La": 997,
+ "^{": 998,
+ "ref": 999,
+ "ied": 1000,
+ "ER": 1001,
+ "▁stat": 1002,
+ "fig": 1003,
+ "me": 1004,
+ "▁von": 1005,
+ "▁inter": 1006,
+ "roid": 1007,
+ "ater": 1008,
+ "▁their": 1009,
+ "▁bet": 1010,
+ "▁ein": 1011,
+ "}\\": 1012,
+ "\">": 1013,
+ "▁sub": 1014,
+ "▁op": 1015,
+ "▁don": 1016,
+ "ty": 1017,
+ "▁try": 1018,
+ "▁Pro": 1019,
+ "▁tra": 1020,
+ "▁same": 1021,
+ "ep": 1022,
+ "▁two": 1023,
+ "▁name": 1024,
+ "old": 1025,
+ "let": 1026,
+ "▁sim": 1027,
+ "sp": 1028,
+ "▁av": 1029,
+ "bre": 1030,
+ "blem": 1031,
+ "ey": 1032,
+ "▁could": 1033,
+ "▁cor": 1034,
+ "▁acc": 1035,
+ "ays": 1036,
+ "cre": 1037,
+ "urr": 1038,
+ "si": 1039,
+ "▁const": 1040,
+ "ues": 1041,
+ "}$": 1042,
+ "View": 1043,
+ "▁act": 1044,
+ "▁bo": 1045,
+ "▁ко": 1046,
+ "▁som": 1047,
+ "▁about": 1048,
+ "land": 1049,
+ "mer": 1050,
+ "▁list": 1051,
+ "cal": 1052,
+ "▁import": 1053,
+ "col": 1054,
+ "▁na": 1055,
+ "na": 1056,
+ "::": 1057,
+ "▁who": 1058,
+ "▁error": 1059,
+ "▁X": 1060,
+ "ator": 1061,
+ "ext": 1062,
+ "▁been": 1063,
+ "ér": 1064,
+ "▁run": 1065,
+ "pos": 1066,
+ "▁cl": 1067,
+ "**": 1068,
+ "▁К": 1069,
+ "ular": 1070,
+ "ause": 1071,
+ "▁reg": 1072,
+ "▁know": 1073,
+ "▁see": 1074,
+ "▁him": 1075,
+ "ning": 1076,
+ "▁за": 1077,
+ "ates": 1078,
+ "fore": 1079,
+ "ions": 1080,
+ "▁hel": 1081,
+ "ute": 1082,
+ "▁rem": 1083,
+ "▁го": 1084,
+ "▁Mar": 1085,
+ "ру": 1086,
+ "vice": 1087,
+ "irect": 1088,
+ "ner": 1089,
+ "▁under": 1090,
+ "rib": 1091,
+ "hr": 1092,
+ "че": 1093,
+ "▁As": 1094,
+ "▁end": 1095,
+ "ember": 1096,
+ "▁а": 1097,
+ "▁att": 1098,
+ "ina": 1099,
+ "son": 1100,
+ "▁follow": 1101,
+ "▁Sch": 1102,
+ "pect": 1103,
+ "▁rel": 1104,
+ "▁So": 1105,
+ "▁look": 1106,
+ "abel": 1107,
+ "▁problem": 1108,
+ "▁van": 1109,
+ "strong": 1110,
+ "co": 1111,
+ "pon": 1112,
+ "ca": 1113,
+ "ada": 1114,
+ "\":": 1115,
+ "cond": 1116,
+ "amb": 1117,
+ "},": 1118,
+ "quest": 1119,
+ "▁aut": 1120,
+ "▁result": 1121,
+ "▁may": 1122,
+ "Re": 1123,
+ "http": 1124,
+ "):": 1125,
+ "▁And": 1126,
+ "red": 1127,
+ "▁How": 1128,
+ "po": 1129,
+ "ско": 1130,
+ "att": 1131,
+ "oup": 1132,
+ "ced": 1133,
+ "▁type": 1134,
+ "▁than": 1135,
+ "▁cons": 1136,
+ "uf": 1137,
+ "ци": 1138,
+ "▁question": 1139,
+ "raph": 1140,
+ "igh": 1141,
+ "▁М": 1142,
+ "▁htt": 1143,
+ "ins": 1144,
+ "den": 1145,
+ "▁da": 1146,
+ "▁ver": 1147,
+ "oh": 1148,
+ "▁=>": 1149,
+ "riv": 1150,
+ "ude": 1151,
+ "▁For": 1152,
+ "▁ra": 1153,
+ "frac": 1154,
+ "ма": 1155,
+ "▁after": 1156,
+ "}{": 1157,
+ "▁method": 1158,
+ "\")": 1159,
+ "amp": 1160,
+ "ash": 1161,
+ "▁rec": 1162,
+ "▁differ": 1163,
+ "ON": 1164,
+ "ax": 1165,
+ "ament": 1166,
+ "ource": 1167,
+ "Con": 1168,
+ "its": 1169,
+ "Name": 1170,
+ "man": 1171,
+ "▁bec": 1172,
+ "che": 1173,
+ "▁En": 1174,
+ "aj": 1175,
+ "▁gener": 1176,
+ "IN": 1177,
+ "▁id": 1178,
+ "ages": 1179,
+ "▁loc": 1180,
+ "fo": 1181,
+ "br": 1182,
+ "▁she": 1183,
+ "Pro": 1184,
+ "▁una": 1185,
+ "▁к": 1186,
+ "eta": 1187,
+ "log": 1188,
+ "olog": 1189,
+ "▁sur": 1190,
+ "arg": 1191,
+ "▁--": 1192,
+ "kt": 1193,
+ "(\\": 1194,
+ "min": 1195,
+ "▁line": 1196,
+ "▁vari": 1197,
+ "ся": 1198,
+ "ics": 1199,
+ "ня": 1200,
+ "very": 1201,
+ "add": 1202,
+ "▁object": 1203,
+ "Id": 1204,
+ "▁But": 1205,
+ "▁case": 1206,
+ "▁make": 1207,
+ "▁cal": 1208,
+ "▁pass": 1209,
+ "сь": 1210,
+ "ession": 1211,
+ "net": 1212,
+ ".\"": 1213,
+ "▁г": 1214,
+ "är": 1215,
+ "де": 1216,
+ "no": 1217,
+ "ating": 1218,
+ "ato": 1219,
+ "line": 1220,
+ "ви": 1221,
+ "▁Ex": 1222,
+ "▁ass": 1223,
+ "▁vers": 1224,
+ "ля": 1225,
+ "▁ed": 1226,
+ "umn": 1227,
+ "other": 1228,
+ "ста": 1229,
+ "ative": 1230,
+ "String": 1231,
+ "▁los": 1232,
+ "wn": 1233,
+ "▁answer": 1234,
+ "▁let": 1235,
+ "▁pe": 1236,
+ "ents": 1237,
+ "▁fe": 1238,
+ "ince": 1239,
+ "ni": 1240,
+ "ider": 1241,
+ "ows": 1242,
+ "▁test": 1243,
+ "▁here": 1244,
+ "roll": 1245,
+ "▁call": 1246,
+ "ruct": 1247,
+ "▁pol": 1248,
+ "ait": 1249,
+ "▁back": 1250,
+ "ho": 1251,
+ "Ex": 1252,
+ "ress": 1253,
+ "ST": 1254,
+ "ried": 1255,
+ "date": 1256,
+ "ет": 1257,
+ "▁did": 1258,
+ "ting": 1259,
+ "▁El": 1260,
+ "▁dem": 1261,
+ ")$": 1262,
+ "ова": 1263,
+ "urrent": 1264,
+ "lace": 1265,
+ "right": 1266,
+ "ren": 1267,
+ "по": 1268,
+ "▁each": 1269,
+ "cy": 1270,
+ "block": 1271,
+ "data": 1272,
+ "▁%": 1273,
+ "▁ac": 1274,
+ "▁==": 1275,
+ "ür": 1276,
+ "▁por": 1277,
+ "ask": 1278,
+ "arch": 1279,
+ "ames": 1280,
+ "▁Con": 1281,
+ "ча": 1282,
+ "▁off": 1283,
+ "▁find": 1284,
+ "cont": 1285,
+ "▁now": 1286,
+ "work": 1287,
+ "ational": 1288,
+ "dd": 1289,
+ "ción": 1290,
+ "▁А": 1291,
+ "ault": 1292,
+ "List": 1293,
+ "▁ext": 1294,
+ "urs": 1295,
+ "ake": 1296,
+ "ule": 1297,
+ "▁point": 1298,
+ "AT": 1299,
+ "aut": 1300,
+ "▁trans": 1301,
+ "▁co": 1302,
+ "▁read": 1303,
+ "▁used": 1304,
+ "ски": 1305,
+ "ari": 1306,
+ "LE": 1307,
+ "eter": 1308,
+ "oun": 1309,
+ "ever": 1310,
+ "self": 1311,
+ "ined": 1312,
+ "idth": 1313,
+ "ux": 1314,
+ "js": 1315,
+ "▁such": 1316,
+ "▁Is": 1317,
+ "ée": 1318,
+ "ful": 1319,
+ "▁dist": 1320,
+ "▁bu": 1321,
+ "itemize": 1322,
+ "Cont": 1323,
+ "je": 1324,
+ "си": 1325,
+ "▁prov": 1326,
+ "bb": 1327,
+ "ward": 1328,
+ "esent": 1329,
+ "erson": 1330,
+ "anks": 1331,
+ "wh": 1332,
+ "not": 1333,
+ "▁We": 1334,
+ "ka": 1335,
+ "rop": 1336,
+ "atur": 1337,
+ "als": 1338,
+ "▁bel": 1339,
+ "ör": 1340,
+ "fr": 1341,
+ "▁example": 1342,
+ "▁incl": 1343,
+ "amil": 1344,
+ "▁ра": 1345,
+ "▁“": 1346,
+ "▁string": 1347,
+ "▁think": 1348,
+ "Th": 1349,
+ "▁tem": 1350,
+ "ave": 1351,
+ "▁Fran": 1352,
+ "▁number": 1353,
+ "▁si": 1354,
+ "imes": 1355,
+ "tem": 1356,
+ "my": 1357,
+ "ler": 1358,
+ "load": 1359,
+ "==": 1360,
+ "▁hand": 1361,
+ "za": 1362,
+ "▁because": 1363,
+ "▁sch": 1364,
+ "vo": 1365,
+ "this": 1366,
+ "ID": 1367,
+ "ão": 1368,
+ "▁start": 1369,
+ "▁war": 1370,
+ "▁help": 1371,
+ "ts": 1372,
+ "▁char": 1373,
+ "▁ph": 1374,
+ "▁min": 1375,
+ "til": 1376,
+ "rite": 1377,
+ "--------": 1378,
+ "els": 1379,
+ "▁mit": 1380,
+ "edia": 1381,
+ "ку": 1382,
+ "▁Sh": 1383,
+ "any": 1384,
+ "];": 1385,
+ "▁Б": 1386,
+ "ique": 1387,
+ "da": 1388,
+ "ef": 1389,
+ "dex": 1390,
+ "▁produ": 1391,
+ "▁Н": 1392,
+ "gram": 1393,
+ "▁Or": 1394,
+ "▁gre": 1395,
+ "quote": 1396,
+ "leg": 1397,
+ "orn": 1398,
+ "▁ind": 1399,
+ "▁post": 1400,
+ "▁dep": 1401,
+ "],": 1402,
+ "vi": 1403,
+ "▁user": 1404,
+ "▁>": 1405,
+ "lick": 1406,
+ "▁very": 1407,
+ "ething": 1408,
+ "▁array": 1409,
+ "▁gu": 1410,
+ "▁dur": 1411,
+ "`.": 1412,
+ "ть": 1413,
+ "lication": 1414,
+ "сти": 1415,
+ "ek": 1416,
+ "ico": 1417,
+ "▁dat": 1418,
+ "ор": 1419,
+ "html": 1420,
+ "ione": 1421,
+ "▁different": 1422,
+ "▁check": 1423,
+ "▁fr": 1424,
+ "▁Er": 1425,
+ "▁text": 1426,
+ "ні": 1427,
+ "icht": 1428,
+ "stack": 1429,
+ "EN": 1430,
+ "rag": 1431,
+ "▁every": 1432,
+ "Ar": 1433,
+ "▁before": 1434,
+ "alse": 1435,
+ "▁fin": 1436,
+ "▁dé": 1437,
+ "▁these": 1438,
+ "▁det": 1439,
+ "Val": 1440,
+ "ception": 1441,
+ "▁android": 1442,
+ "blockquote": 1443,
+ "▁je": 1444,
+ "file": 1445,
+ "ats": 1446,
+ "▁до": 1447,
+ "essage": 1448,
+ "▁again": 1449,
+ "aw": 1450,
+ "Ch": 1451,
+ "ween": 1452,
+ "▁Д": 1453,
+ "for": 1454,
+ "cial": 1455,
+ "play": 1456,
+ "pre": 1457,
+ "ida": 1458,
+ "▁Par": 1459,
+ "ny": 1460,
+ "ract": 1461,
+ "▁supp": 1462,
+ "ased": 1463,
+ "lection": 1464,
+ "▁dans": 1465,
+ "air": 1466,
+ "rol": 1467,
+ "▁thr": 1468,
+ "Data": 1469,
+ "lich": 1470,
+ "▁про": 1471,
+ "▁long": 1472,
+ "▁second": 1473,
+ "ually": 1474,
+ "ines": 1475,
+ "▁found": 1476,
+ "ength": 1477,
+ "yp": 1478,
+ "ead": 1479,
+ "▁log": 1480,
+ "ui": 1481,
+ "new": 1482,
+ "▁Р": 1483,
+ "go": 1484,
+ "aus": 1485,
+ "ody": 1486,
+ "▁son": 1487,
+ "ме": 1488,
+ "ero": 1489,
+ "ved": 1490,
+ "sub": 1491,
+ "▁right": 1492,
+ "view": 1493,
+ "▁following": 1494,
+ "')": 1495,
+ "\");": 1496,
+ "▁said": 1497,
+ "же": 1498,
+ "чи": 1499,
+ "ту": 1500,
+ "ott": 1501,
+ "се": 1502,
+ "ars": 1503,
+ "$.": 1504,
+ "gg": 1505,
+ "▁br": 1506,
+ "ool": 1507,
+ "yle": 1508,
+ "use": 1509,
+ "▁show": 1510,
+ "lease": 1511,
+ "cia": 1512,
+ "▁direct": 1513,
+ "doc": 1514,
+ "ар": 1515,
+ "ms": 1516,
+ "▁giv": 1517,
+ "▁exp": 1518,
+ "ql": 1519,
+ "ду": 1520,
+ "ве": 1521,
+ "▁Be": 1522,
+ "Com": 1523,
+ "iter": 1524,
+ "RE": 1525,
+ "mp": 1526,
+ "men": 1527,
+ "▁Ro": 1528,
+ "MA": 1529,
+ "▁Col": 1530,
+ "ister": 1531,
+ "▁well": 1532,
+ "▁": 1533,
+ "ayout": 1534,
+ "ature": 1535,
+ "ivers": 1536,
+ "zy": 1537,
+ "▁не": 1538,
+ "▁met": 1539,
+ "une": 1540,
+ "yth": 1541,
+ "Type": 1542,
+ "▁element": 1543,
+ "▁link": 1544,
+ "mod": 1545,
+ "▁between": 1546,
+ "cept": 1547,
+ "quire": 1548,
+ "▁through": 1549,
+ "▁while": 1550,
+ "▁On": 1551,
+ "the": 1552,
+ "ía": 1553,
+ "▁something": 1554,
+ "vol": 1555,
+ "▁most": 1556,
+ "sc": 1557,
+ "uss": 1558,
+ "▁car": 1559,
+ "▁sm": 1560,
+ "▁ро": 1561,
+ "ano": 1562,
+ "left": 1563,
+ "va": 1564,
+ "▁true": 1565,
+ "($": 1566,
+ "ems": 1567,
+ "▁much": 1568,
+ "ás": 1569,
+ "▁New": 1570,
+ "▁proper": 1571,
+ "era": 1572,
+ "ited": 1573,
+ "▁doc": 1574,
+ "ices": 1575,
+ "The": 1576,
+ "▁?": 1577,
+ "сто": 1578,
+ "fl": 1579,
+ "▁spec": 1580,
+ "ender": 1581,
+ "way": 1582,
+ "▁self": 1583,
+ "▁even": 1584,
+ "ів": 1585,
+ "▁се": 1586,
+ "ния": 1587,
+ "▁Pr": 1588,
+ "▁ke": 1589,
+ "emb": 1590,
+ "▁table": 1591,
+ "▁equ": 1592,
+ "lient": 1593,
+ "td": 1594,
+ "part": 1595,
+ "▁print": 1596,
+ "▁une": 1597,
+ "ify": 1598,
+ "▁->": 1599,
+ "ene": 1600,
+ "▁mon": 1601,
+ "▁dec": 1602,
+ "▁still": 1603,
+ "▁об": 1604,
+ "▁Tr": 1605,
+ "▁ф": 1606,
+ "ife": 1607,
+ "ism": 1608,
+ "by": 1609,
+ "raw": 1610,
+ "ior": 1611,
+ "▁med": 1612,
+ "orld": 1613,
+ "▁comple": 1614,
+ "ww": 1615,
+ "▁art": 1616,
+ "ron": 1617,
+ "▁Г": 1618,
+ "▁My": 1619,
+ "▁als": 1620,
+ "rect": 1621,
+ "▁auf": 1622,
+ "▁down": 1623,
+ "ather": 1624,
+ "Col": 1625,
+ "Text": 1626,
+ "back": 1627,
+ "$,": 1628,
+ "▁year": 1629,
+ "мо": 1630,
+ "pi": 1631,
+ "▁Gr": 1632,
+ "ream": 1633,
+ "▁rep": 1634,
+ "bf": 1635,
+ "www": 1636,
+ "▁wur": 1637,
+ "▁org": 1638,
+ "inter": 1639,
+ "▁Die": 1640,
+ "▁being": 1641,
+ "\".": 1642,
+ "label": 1643,
+ "▁cent": 1644,
+ "java": 1645,
+ "bar": 1646,
+ "ante": 1647,
+ "ana": 1648,
+ "__": 1649,
+ "▁solution": 1650,
+ "▁О": 1651,
+ "▁fl": 1652,
+ "▁create": 1653,
+ "ici": 1654,
+ "ste": 1655,
+ "ython": 1656,
+ "unt": 1657,
+ "ason": 1658,
+ "ference": 1659,
+ "SE": 1660,
+ "▁non": 1661,
+ "ane": 1662,
+ "▁ins": 1663,
+ "ader": 1664,
+ "_{\\": 1665,
+ "Res": 1666,
+ "▁main": 1667,
+ "пи": 1668,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 1669,
+ "▁There": 1670,
+ "▁pour": 1671,
+ "RO": 1672,
+ "`,": 1673,
+ "lish": 1674,
+ "bject": 1675,
+ "ccess": 1676,
+ "▁orig": 1677,
+ "▁▁▁": 1678,
+ "ischen": 1679,
+ "ower": 1680,
+ "▁het": 1681,
+ "uc": 1682,
+ "▁else": 1683,
+ "».": 1684,
+ "▁от": 1685,
+ "equ": 1686,
+ "sible": 1687,
+ "test": 1688,
+ "stand": 1689,
+ "én": 1690,
+ "ets": 1691,
+ "GE": 1692,
+ "ident": 1693,
+ "▁е": 1694,
+ "▁при": 1695,
+ ".,": 1696,
+ "▁das": 1697,
+ "ock": 1698,
+ ",\"": 1699,
+ "▁vol": 1700,
+ "▁fo": 1701,
+ "▁para": 1702,
+ "▁Т": 1703,
+ "▁Car": 1704,
+ "ral": 1705,
+ "▁Sp": 1706,
+ "var": 1707,
+ "▁play": 1708,
+ "ouse": 1709,
+ "▁та": 1710,
+ "ically": 1711,
+ "▁contain": 1712,
+ "ponse": 1713,
+ "▁String": 1714,
+ "án": 1715,
+ "▁both": 1716,
+ "ken": 1717,
+ "AR": 1718,
+ "ере": 1719,
+ "▁Il": 1720,
+ "▁iss": 1721,
+ "▁open": 1722,
+ "▁)": 1723,
+ "▁What": 1724,
+ "fe": 1725,
+ "rivate": 1726,
+ "reg": 1727,
+ "▁without": 1728,
+ "▁zu": 1729,
+ "vis": 1730,
+ "flow": 1731,
+ "▁http": 1732,
+ "abase": 1733,
+ "▁word": 1734,
+ "▁change": 1735,
+ "▁works": 1736,
+ "▁ge": 1737,
+ "▁!": 1738,
+ "▁een": 1739,
+ "itle": 1740,
+ "▁event": 1741,
+ "word": 1742,
+ "ando": 1743,
+ "SB": 1744,
+ "rem": 1745,
+ "▁field": 1746,
+ "ving": 1747,
+ "Ser": 1748,
+ "▁our": 1749,
+ "▁qui": 1750,
+ "▁oper": 1751,
+ "▁ist": 1752,
+ "def": 1753,
+ "▁made": 1754,
+ "ние": 1755,
+ "px": 1756,
+ "▁men": 1757,
+ "rm": 1758,
+ "ais": 1759,
+ "cent": 1760,
+ "list": 1761,
+ "To": 1762,
+ "▁To": 1763,
+ "ja": 1764,
+ "vert": 1765,
+ "▁mar": 1766,
+ "value": 1767,
+ "▁„": 1768,
+ "\";": 1769,
+ "▁aus": 1770,
+ "▁Br": 1771,
+ "ole": 1772,
+ "▁mult": 1773,
+ "ought": 1774,
+ "▁mat": 1775,
+ "▁view": 1776,
+ "fil": 1777,
+ "▁со": 1778,
+ "га": 1779,
+ "▁void": 1780,
+ "▁good": 1781,
+ "бо": 1782,
+ "CT": 1783,
+ "▁many": 1784,
+ "ben": 1785,
+ "▁во": 1786,
+ "▁ка": 1787,
+ "▁system": 1788,
+ "ino": 1789,
+ "▁another": 1790,
+ "▁rest": 1791,
+ "user": 1792,
+ "ility": 1793,
+ "ai": 1794,
+ "▁might": 1795,
+ "ustom": 1796,
+ "▁order": 1797,
+ "▁Ver": 1798,
+ "SS": 1799,
+ "})": 1800,
+ "▁eff": 1801,
+ "до": 1802,
+ "ett": 1803,
+ "▁sign": 1804,
+ "му": 1805,
+ "IT": 1806,
+ "string": 1807,
+ "elle": 1808,
+ "▁sing": 1809,
+ "cul": 1810,
+ "▁trying": 1811,
+ "▁beg": 1812,
+ "▁page": 1813,
+ "хо": 1814,
+ "▁Can": 1815,
+ "▁Ser": 1816,
+ "++": 1817,
+ "▁must": 1818,
+ "▁values": 1819,
+ "▁key": 1820,
+ "ible": 1821,
+ "].": 1822,
+ "ird": 1823,
+ "▁program": 1824,
+ "roller": 1825,
+ "▁conne": 1826,
+ "▁say": 1827,
+ "▁param": 1828,
+ "ache": 1829,
+ "velop": 1830,
+ "▁select": 1831,
+ "▁famil": 1832,
+ "▁last": 1833,
+ "▁Thanks": 1834,
+ "▁pop": 1835,
+ "}.": 1836,
+ "eq": 1837,
+ "▁doesn": 1838,
+ "['": 1839,
+ "▁term": 1840,
+ "▁ré": 1841,
+ "▁document": 1842,
+ "па": 1843,
+ "лу": 1844,
+ "ateg": 1845,
+ ".)": 1846,
+ "ling": 1847,
+ "ional": 1848,
+ "ables": 1849,
+ "▁tak": 1850,
+ "utton": 1851,
+ "▁arg": 1852,
+ "type": 1853,
+ "▁sure": 1854,
+ "▁real": 1855,
+ "▁web": 1856,
+ "▁current": 1857,
+ "▁Pl": 1858,
+ "cho": 1859,
+ "ments": 1860,
+ "▁Joh": 1861,
+ "ots": 1862,
+ "▁exist": 1863,
+ "ну": 1864,
+ "▁für": 1865,
+ "▁из": 1866,
+ "do": 1867,
+ "ного": 1868,
+ "▁las": 1869,
+ "▁null": 1870,
+ "▁inform": 1871,
+ "▁Л": 1872,
+ "▁version": 1873,
+ "▁chang": 1874,
+ "ager": 1875,
+ "▁Comm": 1876,
+ "лі": 1877,
+ "ush": 1878,
+ "▁Ge": 1879,
+ "▁high": 1880,
+ "▁input": 1881,
+ "ogle": 1882,
+ "ros": 1883,
+ "box": 1884,
+ "gen": 1885,
+ "▁ste": 1886,
+ "▁local": 1887,
+ "Im": 1888,
+ "▁process": 1889,
+ "ternal": 1890,
+ "ized": 1891,
+ "ги": 1892,
+ "ét": 1893,
+ "▁Ind": 1894,
+ "▁och": 1895,
+ "lt": 1896,
+ "▁column": 1897,
+ "▁tried": 1898,
+ "▁command": 1899,
+ "▁best": 1900,
+ "aster": 1901,
+ "за": 1902,
+ "▁prim": 1903,
+ "▁model": 1904,
+ "▁і": 1905,
+ "▁those": 1906,
+ "ities": 1907,
+ "ère": 1908,
+ "▁ре": 1909,
+ "је": 1910,
+ "ши": 1911,
+ "ques": 1912,
+ "▁Am": 1913,
+ "▁own": 1914,
+ "lin": 1915,
+ "зи": 1916,
+ "Value": 1917,
+ "thing": 1918,
+ "▁,": 1919,
+ "▁Te": 1920,
+ "▁stud": 1921,
+ "▁um": 1922,
+ "▁server": 1923,
+ "ille": 1924,
+ "▁put": 1925,
+ "ativ": 1926,
+ "gy": 1927,
+ "ови": 1928,
+ "raf": 1929,
+ "ово": 1930,
+ "▁wurde": 1931,
+ "▁When": 1932,
+ "▁div": 1933,
+ "ants": 1934,
+ "▁ter": 1935,
+ "▁partic": 1936,
+ "▁т": 1937,
+ "▁Do": 1938,
+ "▁No": 1939,
+ "sert": 1940,
+ "ido": 1941,
+ "mathcal": 1942,
+ "ade": 1943,
+ "▁II": 1944,
+ "lear": 1945,
+ "ograph": 1946,
+ "ense": 1947,
+ "▁row": 1948,
+ "num": 1949,
+ "▁possible": 1950,
+ "▁since": 1951,
+ "▁Bo": 1952,
+ "ctions": 1953,
+ "▁Im": 1954,
+ "OR": 1955,
+ "ці": 1956,
+ "▁ide": 1957,
+ "map": 1958,
+ "▁correct": 1959,
+ "ves": 1960,
+ "php": 1961,
+ "▁output": 1962,
+ "▁Ph": 1963,
+ "AL": 1964,
+ "ared": 1965,
+ "\\\\": 1966,
+ "▁image": 1967,
+ "esch": 1968,
+ "жи": 1969,
+ "▁conf": 1970,
+ "por": 1971,
+ "query": 1972,
+ "ures": 1973,
+ "ium": 1974,
+ "ends": 1975,
+ "▁Ab": 1976,
+ "SBN": 1977,
+ "ід": 1978,
+ "ether": 1979,
+ "ptions": 1980,
+ "itu": 1981,
+ "lib": 1982,
+ "ns": 1983,
+ "ki": 1984,
+ "▁working": 1985,
+ "▁como": 1986,
+ "▁Then": 1987,
+ "ML": 1988,
+ "key": 1989,
+ "class": 1990,
+ "ople": 1991,
+ "ittle": 1992,
+ "▁match": 1993,
+ "ways": 1994,
+ "mathbb": 1995,
+ "▁require": 1996,
+ "alt": 1997,
+ "▁vis": 1998,
+ "▁bl": 1999,
+ "▁called": 2000,
+ "Item": 2001,
+ "ura": 2002,
+ "vec": 2003,
+ "eme": 2004,
+ "▁della": 2005,
+ "embre": 2006,
+ "urg": 2007,
+ "Se": 2008,
+ "▁request": 2009,
+ "ische": 2010,
+ "▁port": 2011,
+ "▁instead": 2012,
+ "=\\": 2013,
+ "▁У": 2014,
+ "hor": 2015,
+ "ente": 2016,
+ "ume": 2017,
+ "erd": 2018,
+ "са": 2019,
+ "▁why": 2020,
+ "rist": 2021,
+ "▁person": 2022,
+ "▁...": 2023,
+ "▁private": 2024,
+ "▁tot": 2025,
+ "pha": 2026,
+ "ift": 2027,
+ "ita": 2028,
+ "loc": 2029,
+ "▁old": 2030,
+ "он": 2031,
+ "▁nel": 2032,
+ "']": 2033,
+ "ti": 2034,
+ "iet": 2035,
+ "cite": 2036,
+ "plement": 2037,
+ "▁above": 2038,
+ "ks": 2039,
+ "ready": 2040,
+ "▁come": 2041,
+ "section": 2042,
+ "▁Pol": 2043,
+ "▁writ": 2044,
+ "▁https": 2045,
+ "▁$$": 2046,
+ "▁»": 2047,
+ "▁build": 2048,
+ "ito": 2049,
+ "▁consider": 2050,
+ "aft": 2051,
+ "App": 2052,
+ ",\\": 2053,
+ "indows": 2054,
+ "comm": 2055,
+ "▁;": 2056,
+ "ground": 2057,
+ "▁place": 2058,
+ "By": 2059,
+ "▁project": 2060,
+ "Object": 2061,
+ "▁repr": 2062,
+ "ences": 2063,
+ "indow": 2064,
+ "zt": 2065,
+ "▁files": 2066,
+ "cz": 2067,
+ "ivity": 2068,
+ "▁init": 2069,
+ "▁prob": 2070,
+ "▁sk": 2071,
+ "orth": 2072,
+ "iment": 2073,
+ "ouble": 2074,
+ "atal": 2075,
+ "irc": 2076,
+ "▁è": 2077,
+ "▁bre": 2078,
+ "ista": 2079,
+ "input": 2080,
+ "▁И": 2081,
+ "ной": 2082,
+ "sum": 2083,
+ "path": 2084,
+ "▁cour": 2085,
+ "▁too": 2086,
+ "▁Ad": 2087,
+ "▁Gu": 2088,
+ "▁false": 2089,
+ "▁fun": 2090,
+ "▁ст": 2091,
+ "ood": 2092,
+ "ès": 2093,
+ "▁enc": 2094,
+ "bol": 2095,
+ "rl": 2096,
+ "arget": 2097,
+ "order": 2098,
+ "▁mean": 2099,
+ "пе": 2100,
+ "igen": 2101,
+ "▁пре": 2102,
+ "width": 2103,
+ ";\r": 2104,
+ "itor": 2105,
+ "▁state": 2106,
+ "▁great": 2107,
+ "enn": 2108,
+ "bin": 2109,
+ "Er": 2110,
+ "Mod": 2111,
+ "oz": 2112,
+ "▁won": 2113,
+ "▁fact": 2114,
+ "▁java": 2115,
+ "▁Univers": 2116,
+ "▁cap": 2117,
+ "istor": 2118,
+ "}(": 2119,
+ "ku": 2120,
+ "ither": 2121,
+ "ales": 2122,
+ "▁ou": 2123,
+ "ross": 2124,
+ "▁take": 2125,
+ "rix": 2126,
+ "lob": 2127,
+ "▁eine": 2128,
+ "ases": 2129,
+ "▁access": 2130,
+ "ité": 2131,
+ "istr": 2132,
+ "ization": 2133,
+ "▁appro": 2134,
+ "ball": 2135,
+ "▁mak": 2136,
+ "}^": 2137,
+ "▁Cons": 2138,
+ "press": 2139,
+ "serv": 2140,
+ "().": 2141,
+ "af": 2142,
+ "▁ref": 2143,
+ ")\\": 2144,
+ "▁contin": 2145,
+ "su": 2146,
+ "iver": 2147,
+ "▁cond": 2148,
+ "▁expect": 2149,
+ "▁charact": 2150,
+ "bert": 2151,
+ "elt": 2152,
+ "ters": 2153,
+ "script": 2154,
+ "▁Ed": 2155,
+ "apt": 2156,
+ "');": 2157,
+ "print": 2158,
+ "▁size": 2159,
+ "▁sich": 2160,
+ "face": 2161,
+ "enden": 2162,
+ "▁Amer": 2163,
+ "ified": 2164,
+ "ów": 2165,
+ "▁Su": 2166,
+ "tes": 2167,
+ "med": 2168,
+ "▁Reg": 2169,
+ "sole": 2170,
+ "▁includ": 2171,
+ "ini": 2172,
+ "inci": 2173,
+ "▁pla": 2174,
+ "▁left": 2175,
+ "df": 2176,
+ "Par": 2177,
+ "▁All": 2178,
+ "▁occ": 2179,
+ "▁At": 2180,
+ "▁cr": 2181,
+ "Qu": 2182,
+ "▁given": 2183,
+ "▁System": 2184,
+ "ican": 2185,
+ "▁final": 2186,
+ "itions": 2187,
+ "▁бы": 2188,
+ "▁perform": 2189,
+ "AN": 2190,
+ "▁Me": 2191,
+ "uro": 2192,
+ "▁That": 2193,
+ "гра": 2194,
+ "▁По": 2195,
+ "▁ви": 2196,
+ "ably": 2197,
+ "▁present": 2198,
+ "duct": 2199,
+ "ric": 2200,
+ "▁Eng": 2201,
+ "try": 2202,
+ "▁lar": 2203,
+ "bl": 2204,
+ "idd": 2205,
+ "▁är": 2206,
+ "ora": 2207,
+ "LL": 2208,
+ "oss": 2209,
+ "▁ISBN": 2210,
+ "▁three": 2211,
+ "jo": 2212,
+ "ní": 2213,
+ "rc": 2214,
+ "▁far": 2215,
+ "▁Not": 2216,
+ "▁little": 2217,
+ "dis": 2218,
+ "ati": 2219,
+ "function": 2220,
+ "▁able": 2221,
+ "less": 2222,
+ "со": 2223,
+ "▁path": 2224,
+ "▁pres": 2225,
+ "lose": 2226,
+ "PI": 2227,
+ "▁issue": 2228,
+ "ackage": 2229,
+ "time": 2230,
+ "ige": 2231,
+ "ams": 2232,
+ "▁Cl": 2233,
+ "ails": 2234,
+ "alk": 2235,
+ "ii": 2236,
+ "ше": 2237,
+ "pen": 2238,
+ "QL": 2239,
+ "▁eas": 2240,
+ "RL": 2241,
+ "cel": 2242,
+ "▁sl": 2243,
+ "▁ask": 2244,
+ "▁nom": 2245,
+ "▁top": 2246,
+ "ides": 2247,
+ "index": 2248,
+ "ém": 2249,
+ "▁happ": 2250,
+ "ox": 2251,
+ "cd": 2252,
+ "▁better": 2253,
+ "▁load": 2254,
+ "ados": 2255,
+ "zen": 2256,
+ "▁ce": 2257,
+ "▁fa": 2258,
+ "▁John": 2259,
+ "IMA": 2260,
+ "▁Bar": 2261,
+ "overflow": 2262,
+ "▁де": 2263,
+ "ness": 2264,
+ "cer": 2265,
+ "▁Here": 2266,
+ "ret": 2267,
+ "▁sz": 2268,
+ "ambda": 2269,
+ "opy": 2270,
+ "url": 2271,
+ "py": 2272,
+ "rt": 2273,
+ "▁understand": 2274,
+ "ał": 2275,
+ "her": 2276,
+ "##": 2277,
+ "▁child": 2278,
+ "▁exec": 2279,
+ "▁application": 2280,
+ "▁struct": 2281,
+ "▁я": 2282,
+ "File": 2283,
+ "▁cert": 2284,
+ "ison": 2285,
+ "▁variable": 2286,
+ "DE": 2287,
+ "rs": 2288,
+ "▁really": 2289,
+ "Port": 2290,
+ "ba": 2291,
+ "▁Ber": 2292,
+ "▁inte": 2293,
+ "▁static": 2294,
+ "▁config": 2295,
+ "▁She": 2296,
+ "estions": 2297,
+ "▁plus": 2298,
+ "▁hab": 2299,
+ "ope": 2300,
+ "▁mus": 2301,
+ "▁count": 2302,
+ "ME": 2303,
+ "▁support": 2304,
+ "▁people": 2305,
+ "▁beh": 2306,
+ "▁already": 2307,
+ "Tr": 2308,
+ "▁done": 2309,
+ "dem": 2310,
+ "size": 2311,
+ "alpha": 2312,
+ "▁disc": 2313,
+ "])": 2314,
+ "▁Man": 2315,
+ "▁mil": 2316,
+ "▁stand": 2317,
+ "▁group": 2318,
+ "▁small": 2319,
+ "▁mag": 2320,
+ "сть": 2321,
+ "▁default": 2322,
+ "▁single": 2323,
+ "link": 2324,
+ "clude": 2325,
+ "▁ear": 2326,
+ "ilar": 2327,
+ "****": 2328,
+ "▁fix": 2329,
+ "ley": 2330,
+ "▁pas": 2331,
+ "ний": 2332,
+ "ission": 2333,
+ "▁implement": 2334,
+ "itch": 2335,
+ "▁года": 2336,
+ "▁always": 2337,
+ "▁Jah": 2338,
+ "pring": 2339,
+ "ção": 2340,
+ "plate": 2341,
+ "▁descri": 2342,
+ "▁head": 2343,
+ "init": 2344,
+ "ograf": 2345,
+ "▁query": 2346,
+ "ived": 2347,
+ "▁ing": 2348,
+ "pty": 2349,
+ "ha": 2350,
+ "▁mov": 2351,
+ "▁э": 2352,
+ "ette": 2353,
+ "ily": 2354,
+ "▁got": 2355,
+ "iled": 2356,
+ "icro": 2357,
+ "▁wr": 2358,
+ "ря": 2359,
+ "▁never": 2360,
+ "ores": 2361,
+ "▁bas": 2362,
+ "ios": 2363,
+ "lack": 2364,
+ "aint": 2365,
+ "vious": 2366,
+ "▁give": 2367,
+ "idad": 2368,
+ "En": 2369,
+ "ный": 2370,
+ "table": 2371,
+ "▁На": 2372,
+ "▁pat": 2373,
+ "тор": 2374,
+ "angu": 2375,
+ "loy": 2376,
+ "▁seg": 2377,
+ "array": 2378,
+ "▁Fl": 2379,
+ "▁index": 2380,
+ "▁sw": 2381,
+ "IMAGE": 2382,
+ "▁km": 2383,
+ "би": 2384,
+ "Class": 2385,
+ "ena": 2386,
+ "мен": 2387,
+ "comp": 2388,
+ "atus": 2389,
+ "rap": 2390,
+ "▁List": 2391,
+ "Error": 2392,
+ "▁typ": 2393,
+ "▁ма": 2394,
+ "cs": 2395,
+ "':": 2396,
+ "ji": 2397,
+ "▁However": 2398,
+ "▁те": 2399,
+ "▁below": 2400,
+ "▁App": 2401,
+ "ще": 2402,
+ "}_": 2403,
+ "bum": 2404,
+ "vir": 2405,
+ "ées": 2406,
+ "▁record": 2407,
+ "tain": 2408,
+ "lem": 2409,
+ "ital": 2410,
+ "▁imp": 2411,
+ "ego": 2412,
+ "▁od": 2413,
+ "▁rece": 2414,
+ "mit": 2415,
+ "ffic": 2416,
+ "stackoverflow": 2417,
+ "ieve": 2418,
+ "▁З": 2419,
+ "▁nov": 2420,
+ "це": 2421,
+ "▁Intern": 2422,
+ "bu": 2423,
+ "▁sugg": 2424,
+ "▁loop": 2425,
+ "ride": 2426,
+ "▁$(": 2427,
+ "▁super": 2428,
+ "rid": 2429,
+ "ных": 2430,
+ "▁Per": 2431,
+ "▁dom": 2432,
+ "='": 2433,
+ "utsch": 2434,
+ "len": 2435,
+ "▁write": 2436,
+ "▁inv": 2437,
+ "outh": 2438,
+ "▁Her": 2439,
+ "▁years": 2440,
+ "▁original": 2441,
+ "ega": 2442,
+ "▁Ste": 2443,
+ "▁seems": 2444,
+ "ég": 2445,
+ "▁next": 2446,
+ "eder": 2447,
+ "▁Ne": 2448,
+ "avas": 2449,
+ "ification": 2450,
+ "Exception": 2451,
+ "▁Der": 2452,
+ "▁ve": 2453,
+ "atic": 2454,
+ "hat": 2455,
+ "brary": 2456,
+ "return": 2457,
+ "urch": 2458,
+ "ision": 2459,
+ "mi": 2460,
+ "oint": 2461,
+ "▁day": 2462,
+ "iction": 2463,
+ "ál": 2464,
+ "▁és": 2465,
+ "▁though": 2466,
+ "action": 2467,
+ "ít": 2468,
+ "ungen": 2469,
+ "ours": 2470,
+ "▁script": 2471,
+ "▁information": 2472,
+ "▁multi": 2473,
+ "▁\\\\": 2474,
+ "ster": 2475,
+ "ке": 2476,
+ "AC": 2477,
+ "cies": 2478,
+ "▁display": 2479,
+ "oman": 2480,
+ "Time": 2481,
+ "ius": 2482,
+ "));": 2483,
+ "tre": 2484,
+ "▁lim": 2485,
+ "ately": 2486,
+ "éd": 2487,
+ "iste": 2488,
+ "▁са": 2489,
+ "post": 2490,
+ "uel": 2491,
+ "img": 2492,
+ "▁ч": 2493,
+ "ска": 2494,
+ "eld": 2495,
+ "pper": 2496,
+ "ula": 2497,
+ "▁general": 2498,
+ "Al": 2499,
+ "Form": 2500,
+ "▁upon": 2501,
+ "zo": 2502,
+ "amente": 2503,
+ "▁prom": 2504,
+ "▁ü": 2505,
+ "lex": 2506,
+ "▁turn": 2507,
+ "▁ме": 2508,
+ "ention": 2509,
+ "лен": 2510,
+ "▁af": 2511,
+ "icle": 2512,
+ "ств": 2513,
+ "▁Fil": 2514,
+ "▁Ф": 2515,
+ "avascript": 2516,
+ "Man": 2517,
+ "ara": 2518,
+ "ware": 2519,
+ "align": 2520,
+ "angle": 2521,
+ "▁Sc": 2522,
+ "unic": 2523,
+ "▁fran": 2524,
+ "Un": 2525,
+ "zi": 2526,
+ "met": 2527,
+ "Add": 2528,
+ "▁pub": 2529,
+ "ков": 2530,
+ "▁gen": 2531,
+ "▁pod": 2532,
+ "▁sum": 2533,
+ "▁having": 2534,
+ "▁avec": 2535,
+ "sl": 2536,
+ "▁fig": 2537,
+ "▁Res": 2538,
+ "Date": 2539,
+ "ules": 2540,
+ "with": 2541,
+ "ский": 2542,
+ "gu": 2543,
+ "ET": 2544,
+ "▁bro": 2545,
+ "rie": 2546,
+ "aps": 2547,
+ "ending": 2548,
+ "mail": 2549,
+ "ook": 2550,
+ "▁success": 2551,
+ "berg": 2552,
+ "▁deb": 2553,
+ "elta": 2554,
+ "()`": 2555,
+ "ential": 2556,
+ "frame": 2557,
+ "Key": 2558,
+ "inn": 2559,
+ "▁simple": 2560,
+ "ival": 2561,
+ "▁care": 2562,
+ "▁Web": 2563,
+ "\").": 2564,
+ ">": 2565,
+ "▁database": 2566,
+ "▁Now": 2567,
+ "Ind": 2568,
+ "▁мо": 2569,
+ "cht": 2570,
+ "ban": 2571,
+ "ram": 2572,
+ "equation": 2573,
+ "ski": 2574,
+ "ief": 2575,
+ "lim": 2576,
+ "Get": 2577,
+ "▁tre": 2578,
+ "aten": 2579,
+ "bed": 2580,
+ "▁Je": 2581,
+ "▁results": 2582,
+ "лю": 2583,
+ "тель": 2584,
+ "db": 2585,
+ "▁bit": 2586,
+ "body": 2587,
+ "Array": 2588,
+ "mu": 2589,
+ "pression": 2590,
+ "▁ста": 2591,
+ "ony": 2592,
+ "iff": 2593,
+ "▁bar": 2594,
+ "▁Arch": 2595,
+ "bers": 2596,
+ "){": 2597,
+ "▁Mon": 2598,
+ "▁doing": 2599,
+ "▁prof": 2600,
+ "▁install": 2601,
+ "▁position": 2602,
+ "ema": 2603,
+ "▁});": 2604,
+ "Path": 2605,
+ "ali": 2606,
+ "▁&&": 2607,
+ "lev": 2608,
+ "▁cannot": 2609,
+ "▁May": 2610,
+ "inst": 2611,
+ "-\\": 2612,
+ "▁coun": 2613,
+ "▁ang": 2614,
+ "▁appear": 2615,
+ "cor": 2616,
+ "ció": 2617,
+ "ided": 2618,
+ "questions": 2619,
+ "atter": 2620,
+ "▁Pa": 2621,
+ "select": 2622,
+ "▁princi": 2623,
+ "Event": 2624,
+ "▁side": 2625,
+ "▁mem": 2626,
+ "▁Jan": 2627,
+ "ario": 2628,
+ "▁within": 2629,
+ "▁Val": 2630,
+ "odes": 2631,
+ "iddle": 2632,
+ "uration": 2633,
+ "bra": 2634,
+ "▁date": 2635,
+ "[]": 2636,
+ "▁entre": 2637,
+ "ili": 2638,
+ "Portail": 2639,
+ "docs": 2640,
+ "ской": 2641,
+ "Element": 2642,
+ "▁message": 2643,
+ "▁nach": 2644,
+ "▁during": 2645,
+ "▁gra": 2646,
+ "etwork": 2647,
+ "▁By": 2648,
+ "▁tell": 2649,
+ "ete": 2650,
+ "~\\": 2651,
+ "▁bis": 2652,
+ "▁pu": 2653,
+ "▁red": 2654,
+ "▁thing": 2655,
+ "▁sort": 2656,
+ "xim": 2657,
+ "ires": 2658,
+ "User": 2659,
+ "iod": 2660,
+ "▁Est": 2661,
+ "osed": 2662,
+ "oute": 2663,
+ "▁Les": 2664,
+ "▁sent": 2665,
+ "ribute": 2666,
+ "utes": 2667,
+ "istory": 2668,
+ "▁service": 2669,
+ "';": 2670,
+ "field": 2671,
+ "▁IN": 2672,
+ "ension": 2673,
+ "rel": 2674,
+ "▁going": 2675,
+ "web": 2676,
+ "Context": 2677,
+ "▁later": 2678,
+ "uk": 2679,
+ "layout": 2680,
+ "ona": 2681,
+ "át": 2682,
+ "----------------": 2683,
+ "▁exact": 2684,
+ "andom": 2685,
+ "▁sie": 2686,
+ "II": 2687,
+ "▁They": 2688,
+ "mente": 2689,
+ "ibli": 2690,
+ "▁fine": 2691,
+ "UT": 2692,
+ "▁develop": 2693,
+ "▁Ein": 2694,
+ "soft": 2695,
+ "off": 2696,
+ "Set": 2697,
+ "▁az": 2698,
+ "eters": 2699,
+ "ilder": 2700,
+ "ples": 2701,
+ "▁specific": 2702,
+ "▁om": 2703,
+ "error": 2704,
+ "ently": 2705,
+ "▁film": 2706,
+ "uck": 2707,
+ "ains": 2708,
+ "ación": 2709,
+ "ges": 2710,
+ "жа": 2711,
+ "▁things": 2712,
+ "Sh": 2713,
+ "▁thought": 2714,
+ "▁added": 2715,
+ "dep": 2716,
+ "ского": 2717,
+ "▁Li": 2718,
+ "ils": 2719,
+ "ync": 2720,
+ "▁то": 2721,
+ "ries": 2722,
+ "▁cu": 2723,
+ "chen": 2724,
+ "ION": 2725,
+ "▁Des": 2726,
+ "ultado": 2727,
+ "irt": 2728,
+ "▁based": 2729,
+ "▁mo": 2730,
+ "▁dest": 2731,
+ "png": 2732,
+ "reen": 2733,
+ "▁running": 2734,
+ "amma": 2735,
+ "oud": 2736,
+ "▁refer": 2737,
+ "ious": 2738,
+ "▁Jul": 2739,
+ "▁search": 2740,
+ "ald": 2741,
+ "ede": 2742,
+ "▁wrong": 2743,
+ "An": 2744,
+ "▁until": 2745,
+ "site": 2746,
+ "ayer": 2747,
+ "▁once": 2748,
+ "arr": 2749,
+ "▁against": 2750,
+ "====": 2751,
+ "▁source": 2752,
+ "arn": 2753,
+ "api": 2754,
+ "▁represent": 2755,
+ "▁aff": 2756,
+ "▁sein": 2757,
+ "▁allow": 2758,
+ "ormal": 2759,
+ "ended": 2760,
+ "▁control": 2761,
+ "mathbf": 2762,
+ "come": 2763,
+ "cur": 2764,
+ "endo": 2765,
+ "wa": 2766,
+ "▁update": 2767,
+ "▁inside": 2768,
+ "▁reason": 2769,
+ "omen": 2770,
+ "▁вы": 2771,
+ "De": 2772,
+ "▁је": 2773,
+ "sw": 2774,
+ "▁sever": 2775,
+ "Of": 2776,
+ "▁instance": 2777,
+ "▁mer": 2778,
+ "▁effect": 2779,
+ "color": 2780,
+ "ugust": 2781,
+ "ilt": 2782,
+ "des": 2783,
+ "itz": 2784,
+ "ulation": 2785,
+ "nie": 2786,
+ "▁World": 2787,
+ "▁similar": 2788,
+ "ymbol": 2789,
+ "hing": 2790,
+ "▁mark": 2791,
+ "State": 2792,
+ "▁content": 2793,
+ "▁means": 2794,
+ "amed": 2795,
+ "▁End": 2796,
+ "ND": 2797,
+ "count": 2798,
+ "▁Inst": 2799,
+ "perty": 2800,
+ "ctor": 2801,
+ "▁{\\": 2802,
+ "▁Let": 2803,
+ "▁!=": 2804,
+ "▁getting": 2805,
+ "uth": 2806,
+ "umber": 2807,
+ "▁Consultado": 2808,
+ "schaft": 2809,
+ "lete": 2810,
+ "▁Will": 2811,
+ "▁Em": 2812,
+ "head": 2813,
+ "▁leg": 2814,
+ "ном": 2815,
+ "Or": 2816,
+ "arm": 2817,
+ "pond": 2818,
+ "▁Christ": 2819,
+ "▁around": 2820,
+ "▁clear": 2821,
+ "▁href": 2822,
+ "▁See": 2823,
+ "').": 2824,
+ "▁created": 2825,
+ "▁button": 2826,
+ "ining": 2827,
+ "▁click": 2828,
+ "iam": 2829,
+ "plit": 2830,
+ "For": 2831,
+ "▁polit": 2832,
+ "▁seem": 2833,
+ "▁life": 2834,
+ "нов": 2835,
+ "▁intern": 2836,
+ "щи": 2837,
+ "sel": 2838,
+ "soci": 2839,
+ "▁stor": 2840,
+ "cle": 2841,
+ "earch": 2842,
+ "android": 2843,
+ "}^{": 2844,
+ "▁either": 2845,
+ "▁few": 2846,
+ "▁initial": 2847,
+ "length": 2848,
+ "ria": 2849,
+ "sql": 2850,
+ "wik": 2851,
+ "▁ét": 2852,
+ "uer": 2853,
+ "▁valid": 2854,
+ "And": 2855,
+ "include": 2856,
+ "ury": 2857,
+ "▁sus": 2858,
+ "ired": 2859,
+ "▁After": 2860,
+ "▁due": 2861,
+ "▁bei": 2862,
+ "ources": 2863,
+ "▁Nov": 2864,
+ "Act": 2865,
+ "▁Cont": 2866,
+ "▁break": 2867,
+ "ested": 2868,
+ "▁actually": 2869,
+ "else": 2870,
+ "tml": 2871,
+ "rer": 2872,
+ "ones": 2873,
+ "▁design": 2874,
+ "▁property": 2875,
+ "phi": 2876,
+ "ality": 2877,
+ "och": 2878,
+ "ists": 2879,
+ "▁·": 2880,
+ "udio": 2881,
+ "AB": 2882,
+ "ala": 2883,
+ "iones": 2884,
+ "фи": 2885,
+ "find": 2886,
+ "As": 2887,
+ "▁custom": 2888,
+ "▁ann": 2889,
+ "ES": 2890,
+ "OT": 2891,
+ "lambda": 2892,
+ "▁ident": 2893,
+ "▁organ": 2894,
+ "▁Cent": 2895,
+ "▁Char": 2896,
+ "▁os": 2897,
+ "▁hard": 2898,
+ "ров": 2899,
+ "▁/>": 2900,
+ "ko": 2901,
+ "▁exper": 2902,
+ "▁separ": 2903,
+ "yl": 2904,
+ "ourn": 2905,
+ "▁dev": 2906,
+ "▁auch": 2907,
+ "▁block": 2908,
+ "book": 2909,
+ "▁map": 2910,
+ "illa": 2911,
+ "▁comput": 2912,
+ "▁space": 2913,
+ "result": 2914,
+ ")}": 2915,
+ "▁echo": 2916,
+ "config": 2917,
+ "hi": 2918,
+ "▁large": 2919,
+ "▁width": 2920,
+ "▁Go": 2921,
+ "mat": 2922,
+ "▁diff": 2923,
+ "▁kind": 2924,
+ "ances": 2925,
+ "ynam": 2926,
+ "▁color": 2927,
+ "Int": 2928,
+ "sol": 2929,
+ "▁pi": 2930,
+ "▁character": 2931,
+ "oment": 2932,
+ "▁response": 2933,
+ "igma": 2934,
+ "wards": 2935,
+ "arrow": 2936,
+ "су": 2937,
+ "ties": 2938,
+ "▁über": 2939,
+ "Image": 2940,
+ "yd": 2941,
+ "▁пере": 2942,
+ "▁node": 2943,
+ "▁item": 2944,
+ "achine": 2945,
+ "ima": 2946,
+ "▁va": 2947,
+ "▁approach": 2948,
+ "▁wer": 2949,
+ "▁че": 2950,
+ "On": 2951,
+ "ollow": 2952,
+ "она": 2953,
+ "cted": 2954,
+ "ured": 2955,
+ "Controller": 2956,
+ "lied": 2957,
+ "▁jo": 2958,
+ "▁dal": 2959,
+ "unk": 2960,
+ "▁î": 2961,
+ "start": 2962,
+ "ola": 2963,
+ "▁compon": 2964,
+ "IC": 2965,
+ "bit": 2966,
+ "▁base": 2967,
+ "пу": 2968,
+ "▁idea": 2969,
+ "▁dire": 2970,
+ "▁rad": 2971,
+ "group": 2972,
+ "▁With": 2973,
+ "server": 2974,
+ "side": 2975,
+ "sing": 2976,
+ "▁dies": 2977,
+ "▁near": 2978,
+ "▁voor": 2979,
+ "▁argument": 2980,
+ "▁},": 2981,
+ "▁land": 2982,
+ "▁names": 2983,
+ "▁option": 2984,
+ "ithub": 2985,
+ "pped": 2986,
+ "aug": 2987,
+ "▁links": 2988,
+ "▁full": 2989,
+ "▁situ": 2990,
+ "▁console": 2991,
+ "▁etc": 2992,
+ "aux": 2993,
+ "▁Cor": 2994,
+ "icrosoft": 2995,
+ "▁came": 2996,
+ "local": 2997,
+ "▁known": 2998,
+ "▁multiple": 2999,
+ "anguage": 3000,
+ "▁total": 3001,
+ "ology": 3002,
+ "ät": 3003,
+ "▁Х": 3004,
+ "▁fre": 3005,
+ "▁ten": 3006,
+ "ideo": 3007,
+ "▁bes": 3008,
+ "true": 3009,
+ "Query": 3010,
+ "omm": 3011,
+ "▁Art": 3012,
+ "▁keep": 3013,
+ "▁University": 3014,
+ "reate": 3015,
+ "pport": 3016,
+ "▁python": 3017,
+ "tra": 3018,
+ "ector": 3019,
+ "рі": 3020,
+ "oph": 3021,
+ "▁conc": 3022,
+ "▁four": 3023,
+ "viron": 3024,
+ "▁via": 3025,
+ "?\"": 3026,
+ "image": 3027,
+ "oll": 3028,
+ "ные": 3029,
+ "▁context": 3030,
+ "▁sem": 3031,
+ "._": 3032,
+ "▁eng": 3033,
+ "mar": 3034,
+ "AD": 3035,
+ "▁mor": 3036,
+ "▁Cal": 3037,
+ "▁cell": 3038,
+ "imal": 3039,
+ "ATE": 3040,
+ "▁inf": 3041,
+ "ön": 3042,
+ "uffer": 3043,
+ "sq": 3044,
+ "....": 3045,
+ "▁zur": 3046,
+ "With": 3047,
+ "ран": 3048,
+ "chn": 3049,
+ "▁door": 3050,
+ "content": 3051,
+ "▁miss": 3052,
+ "▁simp": 3053,
+ "ár": 3054,
+ "ira": 3055,
+ "▁hat": 3056,
+ "Test": 3057,
+ "▁certain": 3058,
+ "NS": 3059,
+ "▁cho": 3060,
+ "▁adv": 3061,
+ "where": 3062,
+ "▁looking": 3063,
+ "▁times": 3064,
+ "них": 3065,
+ "uto": 3066,
+ "▁É": 3067,
+ "can": 3068,
+ "host": 3069,
+ "▁(*": 3070,
+ "loat": 3071,
+ "▁nicht": 3072,
+ "Field": 3073,
+ "burg": 3074,
+ "const": 3075,
+ "ades": 3076,
+ "▁Mus": 3077,
+ "▁nothing": 3078,
+ "▁incre": 3079,
+ "▁Min": 3080,
+ "▁power": 3081,
+ "▁American": 3082,
+ "ln": 3083,
+ "valid": 3084,
+ "ungs": 3085,
+ "▁National": 3086,
+ "▁San": 3087,
+ "▁York": 3088,
+ "Request": 3089,
+ "char": 3090,
+ "▁Ze": 3091,
+ "button": 3092,
+ "▁alg": 3093,
+ "SON": 3094,
+ "▁ap": 3095,
+ "uff": 3096,
+ "ability": 3097,
+ "ем": 3098,
+ "▁anything": 3099,
+ "ela": 3100,
+ "())": 3101,
+ "ба": 3102,
+ "ampion": 3103,
+ "▁pot": 3104,
+ "▁fut": 3105,
+ "ailable": 3106,
+ "▁prop": 3107,
+ "\"]": 3108,
+ "▁less": 3109,
+ "lag": 3110,
+ "▁August": 3111,
+ "It": 3112,
+ "▁please": 3113,
+ "▁style": 3114,
+ "▁Also": 3115,
+ "bt": 3116,
+ "▁probably": 3117,
+ "▁One": 3118,
+ "▁poss": 3119,
+ "UI": 3120,
+ "uit": 3121,
+ "▁West": 3122,
+ "hn": 3123,
+ "+\\": 3124,
+ "Button": 3125,
+ "json": 3126,
+ "err": 3127,
+ "rame": 3128,
+ "dom": 3129,
+ "ilon": 3130,
+ "alf": 3131,
+ "▁client": 3132,
+ "▁continu": 3133,
+ "xml": 3134,
+ "pec": 3135,
+ "ador": 3136,
+ "ls": 3137,
+ "▁however": 3138,
+ "▁Any": 3139,
+ "änd": 3140,
+ "mathrm": 3141,
+ "▁url": 3142,
+ "▁book": 3143,
+ "▁gl": 3144,
+ "ives": 3145,
+ "gi": 3146,
+ "▁tro": 3147,
+ "▁US": 3148,
+ "point": 3149,
+ "open": 3150,
+ "▁cur": 3151,
+ "▁era": 3152,
+ "▁particular": 3153,
+ "▁HT": 3154,
+ "oot": 3155,
+ "ello": 3156,
+ "lobal": 3157,
+ "▁action": 3158,
+ "▁Int": 3159,
+ "▁include": 3160,
+ "▁elements": 3161,
+ "ная": 3162,
+ "ards": 3163,
+ "▁Bl": 3164,
+ "▁hum": 3165,
+ "from": 3166,
+ "change": 3167,
+ "▁functions": 3168,
+ "hen": 3169,
+ "Service": 3170,
+ "▁height": 3171,
+ "▁Land": 3172,
+ "ias": 3173,
+ "gs": 3174,
+ "ión": 3175,
+ "лов": 3176,
+ "node": 3177,
+ ".”": 3178,
+ "hand": 3179,
+ "▁бу": 3180,
+ "▁amb": 3181,
+ "▁Lu": 3182,
+ "▁throw": 3183,
+ "▁mot": 3184,
+ "▁Act": 3185,
+ "▁world": 3186,
+ "_\\": 3187,
+ "base": 3188,
+ "▁Co": 3189,
+ "▁arch": 3190,
+ "▁####": 3191,
+ "ged": 3192,
+ "pril": 3193,
+ "older": 3194,
+ "Model": 3195,
+ "▁several": 3196,
+ "lie": 3197,
+ "check": 3198,
+ "]{": 3199,
+ "cons": 3200,
+ "▁Tra": 3201,
+ "heck": 3202,
+ "▁least": 3203,
+ "down": 3204,
+ "ebru": 3205,
+ "Def": 3206,
+ "param": 3207,
+ "ischer": 3208,
+ "▁cas": 3209,
+ "CH": 3210,
+ "▁address": 3211,
+ "▁раз": 3212,
+ "ufen": 3213,
+ "urope": 3214,
+ "ей": 3215,
+ "▁bound": 3216,
+ "CO": 3217,
+ "▁Ang": 3218,
+ "▁Ma": 3219,
+ "Index": 3220,
+ "core": 3221,
+ "ouch": 3222,
+ "atabase": 3223,
+ "ribution": 3224,
+ "document": 3225,
+ "Le": 3226,
+ "}_{": 3227,
+ "vern": 3228,
+ "▁statement": 3229,
+ "▁Brit": 3230,
+ "ono": 3231,
+ "psilon": 3232,
+ "▁level": 3233,
+ "▁product": 3234,
+ "IS": 3235,
+ "▁course": 3236,
+ "▁Mr": 3237,
+ ">\r": 3238,
+ "▁background": 3239,
+ "▁ret": 3240,
+ "ering": 3241,
+ "most": 3242,
+ "сько": 3243,
+ "▁thread": 3244,
+ "itional": 3245,
+ "ites": 3246,
+ "Pl": 3247,
+ "▁dos": 3248,
+ "ga": 3249,
+ "day": 3250,
+ "▁Gener": 3251,
+ "▁tw": 3252,
+ "Ad": 3253,
+ "\"><": 3254,
+ "▁($": 3255,
+ "▁moment": 3256,
+ "title": 3257,
+ "create": 3258,
+ "version": 3259,
+ "Manager": 3260,
+ "▁fur": 3261,
+ "pping": 3262,
+ "ijn": 3263,
+ "ос": 3264,
+ "▁rather": 3265,
+ "ptember": 3266,
+ "OS": 3267,
+ "▁site": 3268,
+ "▁caus": 3269,
+ "ani": 3270,
+ "▁home": 3271,
+ "мі": 3272,
+ "▁short": 3273,
+ "pa": 3274,
+ "▁lead": 3275,
+ "ished": 3276,
+ "cing": 3277,
+ "ording": 3278,
+ "▁prote": 3279,
+ "сле": 3280,
+ "LECT": 3281,
+ "▁didn": 3282,
+ "position": 3283,
+ "\",\"": 3284,
+ "(),": 3285,
+ "trans": 3286,
+ "▁lot": 3287,
+ "▁од": 3288,
+ "AS": 3289,
+ "▁sat": 3290,
+ "▁points": 3291,
+ "github": 3292,
+ "style": 3293,
+ "▁году": 3294,
+ "▁Dis": 3295,
+ "ponent": 3296,
+ "omet": 3297,
+ "zer": 3298,
+ "ULL": 3299,
+ "▁pa": 3300,
+ "AP": 3301,
+ "aces": 3302,
+ "▁United": 3303,
+ "ama": 3304,
+ "ety": 3305,
+ "Color": 3306,
+ "▁enough": 3307,
+ "US": 3308,
+ "▁length": 3309,
+ "());": 3310,
+ "^{\\": 3311,
+ "fty": 3312,
+ "Box": 3313,
+ "apter": 3314,
+ "▁complet": 3315,
+ "ник": 3316,
+ "max": 3317,
+ "object": 3318,
+ "({": 3319,
+ "imgur": 3320,
+ "itive": 3321,
+ "unch": 3322,
+ "▁Sub": 3323,
+ "ende": 3324,
+ "гу": 3325,
+ "ategory": 3326,
+ "ты": 3327,
+ "iano": 3328,
+ "▁upd": 3329,
+ "▁Aust": 3330,
+ "}{\\": 3331,
+ "top": 3332,
+ "las": 3333,
+ "pis": 3334,
+ "iness": 3335,
+ "▁{\r": 3336,
+ "▁Е": 3337,
+ "Gr": 3338,
+ "▁AS": 3339,
+ "▁ве": 3340,
+ "thers": 3341,
+ "▁defined": 3342,
+ "azione": 3343,
+ "▁offic": 3344,
+ "▁autom": 3345,
+ "ün": 3346,
+ "▁brow": 3347,
+ "▁serv": 3348,
+ "▁remove": 3349,
+ "iro": 3350,
+ "▁Bibli": 3351,
+ "ED": 3352,
+ "▁whole": 3353,
+ "▁ш": 3354,
+ "▁Java": 3355,
+ "▁zum": 3356,
+ "ua": 3357,
+ "pm": 3358,
+ "dev": 3359,
+ "кра": 3360,
+ "olds": 3361,
+ "▁War": 3362,
+ "än": 3363,
+ "pass": 3364,
+ "uz": 3365,
+ "[\"": 3366,
+ "▁tri": 3367,
+ "ised": 3368,
+ "ха": 3369,
+ "▁memory": 3370,
+ "▁Port": 3371,
+ "oper": 3372,
+ "Up": 3373,
+ "▁Thank": 3374,
+ "▁Mich": 3375,
+ "ych": 3376,
+ "board": 3377,
+ "бу": 3378,
+ "Inst": 3379,
+ "▁begin": 3380,
+ "ination": 3381,
+ "▁Mod": 3382,
+ "_,": 3383,
+ "▁Den": 3384,
+ "option": 3385,
+ "▁construct": 3386,
+ "▁Just": 3387,
+ "Map": 3388,
+ "run": 3389,
+ "▁respect": 3390,
+ "ham": 3391,
+ "ман": 3392,
+ "imedia": 3393,
+ "▁apply": 3394,
+ "cription": 3395,
+ "main": 3396,
+ "▁Ка": 3397,
+ "oid": 3398,
+ "Code": 3399,
+ "};": 3400,
+ "Info": 3401,
+ "▁format": 3402,
+ "Log": 3403,
+ "▁су": 3404,
+ "▁lat": 3405,
+ "utor": 3406,
+ "▁reference": 3407,
+ "▁calcul": 3408,
+ "onn": 3409,
+ "Lo": 3410,
+ "infty": 3411,
+ "▁along": 3412,
+ "▁č": 3413,
+ "▁task": 3414,
+ "▁ev": 3415,
+ "theta": 3416,
+ "ras": 3417,
+ "jor": 3418,
+ "▁бо": 3419,
+ "▁princip": 3420,
+ "My": 3421,
+ "▁einer": 3422,
+ "▁Es": 3423,
+ "omb": 3424,
+ "quad": 3425,
+ "^{-": 3426,
+ "ump": 3427,
+ "▁till": 3428,
+ "ді": 3429,
+ "▁looks": 3430,
+ "▁ok": 3431,
+ "ца": 3432,
+ "nu": 3433,
+ "Fil": 3434,
+ "▁sont": 3435,
+ "▁Med": 3436,
+ "ague": 3437,
+ "▁cost": 3438,
+ "▁Sim": 3439,
+ "▁comment": 3440,
+ "▁(\\": 3441,
+ "egen": 3442,
+ "▁parameter": 3443,
+ "▁France": 3444,
+ "rep": 3445,
+ "▁TH": 3446,
+ "▁yet": 3447,
+ "▁away": 3448,
+ "▁circ": 3449,
+ "▁API": 3450,
+ "emp": 3451,
+ "ві": 3452,
+ "Layout": 3453,
+ "▁lines": 3454,
+ "▁Part": 3455,
+ "empt": 3456,
+ "▁Bi": 3457,
+ "▁mind": 3458,
+ "ky": 3459,
+ "ging": 3460,
+ "▁report": 3461,
+ "▁Add": 3462,
+ "род": 3463,
+ "▁range": 3464,
+ "cias": 3465,
+ "lip": 3466,
+ "▁Kar": 3467,
+ "▁Commons": 3468,
+ "gerufen": 3469,
+ "aff": 3470,
+ "sec": 3471,
+ "▁html": 3472,
+ "lig": 3473,
+ "▁window": 3474,
+ "inition": 3475,
+ "cis": 3476,
+ "▁ut": 3477,
+ "eln": 3478,
+ "▁aux": 3479,
+ "▁neg": 3480,
+ "Hand": 3481,
+ "▁);": 3482,
+ "▁anal": 3483,
+ "▁fri": 3484,
+ "▁си": 3485,
+ "etch": 3486,
+ "md": 3487,
+ "page": 3488,
+ "▁library": 3489,
+ "▁:=": 3490,
+ "ROM": 3491,
+ "You": 3492,
+ "space": 3493,
+ "▁durch": 3494,
+ "▁host": 3495,
+ "aven": 3496,
+ "▁File": 3497,
+ "alle": 3498,
+ "тив": 3499,
+ "▁pap": 3500,
+ "ство": 3501,
+ "mark": 3502,
+ "▁mais": 3503,
+ "erman": 3504,
+ "Size": 3505,
+ "ек": 3506,
+ "▁Ма": 3507,
+ "▁isn": 3508,
+ "▁copy": 3509,
+ "sten": 3510,
+ "river": 3511,
+ "▁went": 3512,
+ "▁javascript": 3513,
+ "▁sam": 3514,
+ "▁frame": 3515,
+ "▁vi": 3516,
+ "▁previous": 3517,
+ "rodu": 3518,
+ "▁methods": 3519,
+ "▁necess": 3520,
+ "NA": 3521,
+ "cket": 3522,
+ "▁opt": 3523,
+ "Loc": 3524,
+ "how": 3525,
+ "▁în": 3526,
+ "ship": 3527,
+ "▁itself": 3528,
+ "▁Please": 3529,
+ "iene": 3530,
+ "вер": 3531,
+ "▁<<": 3532,
+ "▁mill": 3533,
+ "▁trad": 3534,
+ "pace": 3535,
+ "▁Har": 3536,
+ "iten": 3537,
+ "wise": 3538,
+ "write": 3539,
+ "ции": 3540,
+ "ры": 3541,
+ "Line": 3542,
+ "olo": 3543,
+ "▁accept": 3544,
+ "height": 3545,
+ "▁elect": 3546,
+ "ella": 3547,
+ "▁på": 3548,
+ "Select": 3549,
+ "▁ли": 3550,
+ "▁\\<": 3551,
+ "((": 3552,
+ "▁ID": 3553,
+ "ops": 3554,
+ "ван": 3555,
+ "ió": 3556,
+ "TP": 3557,
+ "»,": 3558,
+ "nection": 3559,
+ "parent": 3560,
+ "▁Mag": 3561,
+ "Table": 3562,
+ "Over": 3563,
+ "▁network": 3564,
+ "спо": 3565,
+ "▁assign": 3566,
+ "igger": 3567,
+ "irm": 3568,
+ ")`": 3569,
+ "ottom": 3570,
+ "beta": 3571,
+ "▁dell": 3572,
+ "▁body": 3573,
+ "▁да": 3574,
+ "▁Your": 3575,
+ "▁fue": 3576,
+ "▁package": 3577,
+ "▁light": 3578,
+ "▁**": 3579,
+ "MP": 3580,
+ "▁cou": 3581,
+ "yes": 3582,
+ ":\\": 3583,
+ "▁Ч": 3584,
+ "▁mention": 3585,
+ "ensch": 3586,
+ "▁deg": 3587,
+ "▁convert": 3588,
+ "▁Dav": 3589,
+ "adt": 3590,
+ "Result": 3591,
+ "though": 3592,
+ "▁bus": 3593,
+ "xy": 3594,
+ "▁seen": 3595,
+ "All": 3596,
+ "public": 3597,
+ "ively": 3598,
+ "▁Rec": 3599,
+ "▁His": 3600,
+ "sim": 3601,
+ "▁för": 3602,
+ "▁histor": 3603,
+ "▁sett": 3604,
+ "rat": 3605,
+ "abled": 3606,
+ "▁»,": 3607,
+ "google": 3608,
+ "Web": 3609,
+ "él": 3610,
+ "▁title": 3611,
+ "▁Janu": 3612,
+ "ја": 3613,
+ "▁took": 3614,
+ "iden": 3615,
+ "sz": 3616,
+ "▁Get": 3617,
+ "▁objects": 3618,
+ "▁common": 3619,
+ "▁changes": 3620,
+ "▁Lond": 3621,
+ "▁extern": 3622,
+ "▁ju": 3623,
+ "Is": 3624,
+ "▁available": 3625,
+ "tri": 3626,
+ "▁más": 3627,
+ "osa": 3628,
+ "Be": 3629,
+ "▁Data": 3630,
+ "ural": 3631,
+ "▁hom": 3632,
+ "▁account": 3633,
+ "oo": 3634,
+ "▁perm": 3635,
+ "respond": 3636,
+ "yt": 3637,
+ "▁send": 3638,
+ "▁returns": 3639,
+ "ivid": 3640,
+ "▁expla": 3641,
+ "ín": 3642,
+ "▁nor": 3643,
+ "If": 3644,
+ "▁From": 3645,
+ "▁target": 3646,
+ "fect": 3647,
+ "ент": 3648,
+ "▁uit": 3649,
+ "▁Jo": 3650,
+ "▁variables": 3651,
+ "▁series": 3652,
+ "▁func": 3653,
+ "▁himself": 3654,
+ "▁ча": 3655,
+ "anti": 3656,
+ "▁ach": 3657,
+ "ialog": 3658,
+ "▁std": 3659,
+ "ae": 3660,
+ "▁foot": 3661,
+ "▁unter": 3662,
+ "gress": 3663,
+ "Not": 3664,
+ "rad": 3665,
+ "fér": 3666,
+ "▁util": 3667,
+ "orem": 3668,
+ "▁sou": 3669,
+ "opt": 3670,
+ "▁og": 3671,
+ "▁uma": 3672,
+ "itar": 3673,
+ "▁Ok": 3674,
+ "ück": 3675,
+ "sqrt": 3676,
+ "▁ant": 3677,
+ "▁werden": 3678,
+ "år": 3679,
+ "});": 3680,
+ "▁Paris": 3681,
+ "▁exception": 3682,
+ "▁determ": 3683,
+ "▁Vol": 3684,
+ "▁Sam": 3685,
+ "▁ess": 3686,
+ "lies": 3687,
+ "ioni": 3688,
+ "oding": 3689,
+ "idget": 3690,
+ "▁pri": 3691,
+ "▁whether": 3692,
+ "▁под": 3693,
+ "▁numbers": 3694,
+ "▁~": 3695,
+ "event": 3696,
+ "▁shows": 3697,
+ "atures": 3698,
+ "▁house": 3699,
+ "▁face": 3700,
+ "▁się": 3701,
+ "vironment": 3702,
+ "van": 3703,
+ "▁including": 3704,
+ "▁<-": 3705,
+ "times": 3706,
+ "now": 3707,
+ "▁pur": 3708,
+ "ifier": 3709,
+ "▁emp": 3710,
+ "▁cla": 3711,
+ "mon": 3712,
+ "▁Das": 3713,
+ "ady": 3714,
+ "▁від": 3715,
+ "▁ц": 3716,
+ "abor": 3717,
+ "OST": 3718,
+ "▁band": 3719,
+ "▁ú": 3720,
+ "▁exactly": 3721,
+ "iert": 3722,
+ "avig": 3723,
+ "▁redu": 3724,
+ "▁SE": 3725,
+ "lished": 3726,
+ "Bu": 3727,
+ "Message": 3728,
+ "cell": 3729,
+ "fully": 3730,
+ "▁sv": 3731,
+ "▁makes": 3732,
+ "pol": 3733,
+ "▁required": 3734,
+ "ferrer": 3735,
+ "▁pers": 3736,
+ "▁mi": 3737,
+ "FI": 3738,
+ "▁Paul": 3739,
+ "▁UI": 3740,
+ "▁Bel": 3741,
+ "inc": 3742,
+ "▁contains": 3743,
+ "Out": 3744,
+ "asure": 3745,
+ "pu": 3746,
+ "oto": 3747,
+ "▁game": 3748,
+ "zn": 3749,
+ "▁Why": 3750,
+ "orith": 3751,
+ "big": 3752,
+ "кий": 3753,
+ "sigma": 3754,
+ "▁quite": 3755,
+ "▁jed": 3756,
+ "rec": 3757,
+ "▁SQL": 3758,
+ "бе": 3759,
+ "▁Mart": 3760,
+ "ya": 3761,
+ "▁school": 3762,
+ "▁simply": 3763,
+ "▁vor": 3764,
+ "▁double": 3765,
+ "рав": 3766,
+ "▁Str": 3767,
+ "iem": 3768,
+ "▁album": 3769,
+ "▁resol": 3770,
+ "▁dei": 3771,
+ "▁Wik": 3772,
+ "▁aw": 3773,
+ "umb": 3774,
+ "ols": 3775,
+ "▁*/": 3776,
+ "▁ze": 3777,
+ "▁anim": 3778,
+ "/>": 3779,
+ "ris": 3780,
+ "resh": 3781,
+ "No": 3782,
+ "iques": 3783,
+ "current": 3784,
+ "▁period": 3785,
+ "▁April": 3786,
+ "▁store": 3787,
+ "','": 3788,
+ "▁Set": 3789,
+ "={": 3790,
+ "ached": 3791,
+ "▁Mal": 3792,
+ "▁Pal": 3793,
+ "antes": 3794,
+ "aterial": 3795,
+ "▁worked": 3796,
+ "leq": 3797,
+ "oreferrer": 3798,
+ "▁happen": 3799,
+ "▁box": 3800,
+ "ney": 3801,
+ "▁close": 3802,
+ "▁gran": 3803,
+ "▁lie": 3804,
+ "▁ir": 3805,
+ "▁expected": 3806,
+ "▁для": 3807,
+ "click": 3808,
+ "și": 3809,
+ "▁parte": 3810,
+ "ogn": 3811,
+ "▁Form": 3812,
+ "▁memb": 3813,
+ "▁plan": 3814,
+ "▁team": 3815,
+ "][": 3816,
+ "▁commun": 3817,
+ "orry": 3818,
+ "ency": 3819,
+ "gl": 3820,
+ "inary": 3821,
+ "cdot": 3822,
+ "^\\": 3823,
+ "▁First": 3824,
+ "ander": 3825,
+ "▁Dec": 3826,
+ "request": 3827,
+ "ства": 3828,
+ "▁structure": 3829,
+ "▁||": 3830,
+ "▁Comp": 3831,
+ "actory": 3832,
+ "▁Mil": 3833,
+ "▁Some": 3834,
+ "Stream": 3835,
+ "▁assum": 3836,
+ "uen": 3837,
+ "▁words": 3838,
+ "▁September": 3839,
+ "▁Ко": 3840,
+ "▁days": 3841,
+ "ories": 3842,
+ "став": 3843,
+ "sm": 3844,
+ "vin": 3845,
+ "partial": 3846,
+ "▁parent": 3847,
+ "oj": 3848,
+ "нии": 3849,
+ "!\"": 3850,
+ "ugin": 3851,
+ "▁Windows": 3852,
+ "Ed": 3853,
+ ":}": 3854,
+ "▁q": 3855,
+ "▁ben": 3856,
+ "iana": 3857,
+ "▁label": 3858,
+ "state": 3859,
+ "uted": 3860,
+ "▁()": 3861,
+ "▁сво": 3862,
+ "▁edit": 3863,
+ "uring": 3864,
+ "▁NS": 3865,
+ "▁Jahr": 3866,
+ "▁provide": 3867,
+ "He": 3868,
+ "▁Yes": 3869,
+ "anel": 3870,
+ "ename": 3871,
+ "▁Don": 3872,
+ "isk": 3873,
+ "gra": 3874,
+ "elij": 3875,
+ "▁root": 3876,
+ "*/": 3877,
+ "▁Fre": 3878,
+ "▁Mor": 3879,
+ "used": 3880,
+ "range": 3881,
+ "▁tamb": 3882,
+ "▁module": 3883,
+ "▁directory": 3884,
+ "ounds": 3885,
+ "Activity": 3886,
+ "▁mu": 3887,
+ "info": 3888,
+ "▁free": 3889,
+ "orge": 3890,
+ "tab": 3891,
+ ")=": 3892,
+ "lang": 3893,
+ "▁ос": 3894,
+ "▁FROM": 3895,
+ "▁enter": 3896,
+ "▁became": 3897,
+ "idae": 3898,
+ "хи": 3899,
+ "▁States": 3900,
+ "verse": 3901,
+ "▁expl": 3902,
+ "ynt": 3903,
+ "UN": 3904,
+ "ee": 3905,
+ "endent": 3906,
+ "▁making": 3907,
+ "▁\"$": 3908,
+ "uni": 3909,
+ "quence": 3910,
+ "▁lui": 3911,
+ "HT": 3912,
+ "▁uses": 3913,
+ "zie": 3914,
+ "nia": 3915,
+ "Content": 3916,
+ "▁Count": 3917,
+ "▁standard": 3918,
+ "ENT": 3919,
+ "▁кон": 3920,
+ "fort": 3921,
+ "adas": 3922,
+ "зу": 3923,
+ "System": 3924,
+ "▁Sw": 3925,
+ "▁ever": 3926,
+ "LO": 3927,
+ "▁correspond": 3928,
+ "▁Po": 3929,
+ "argin": 3930,
+ "кт": 3931,
+ "ій": 3932,
+ "▁remain": 3933,
+ "cio": 3934,
+ "▁actual": 3935,
+ "сту": 3936,
+ "▁sind": 3937,
+ "▁Pe": 3938,
+ "▁changed": 3939,
+ "▁Note": 3940,
+ "skie": 3941,
+ "▁family": 3942,
+ "ità": 3943,
+ "cos": 3944,
+ "txt": 3945,
+ "ker": 3946,
+ "ceed": 3947,
+ "▁arr": 3948,
+ "▁cam": 3949,
+ "izer": 3950,
+ "▁Dan": 3951,
+ "hel": 3952,
+ "icult": 3953,
+ "HP": 3954,
+ "iler": 3955,
+ "▁Sal": 3956,
+ "▁connection": 3957,
+ "usion": 3958,
+ "kn": 3959,
+ "RI": 3960,
+ "▁vom": 3961,
+ "Listener": 3962,
+ "▁ö": 3963,
+ "▁dim": 3964,
+ "▁press": 3965,
+ "▁esc": 3966,
+ "▁Try": 3967,
+ "atalog": 3968,
+ "▁thanks": 3969,
+ "DO": 3970,
+ "▁written": 3971,
+ "dir": 3972,
+ "rew": 3973,
+ "▁fire": 3974,
+ "▁Nach": 3975,
+ "▁á": 3976,
+ "enc": 3977,
+ "▁origin": 3978,
+ "▁November": 3979,
+ "▁};": 3980,
+ "Count": 3981,
+ "▁За": 3982,
+ "▁graph": 3983,
+ "▁mis": 3984,
+ "▁External": 3985,
+ "▁▁▁▁▁▁▁▁▁": 3986,
+ "▁options": 3987,
+ "▁URL": 3988,
+ "▁php": 3989,
+ "▁integr": 3990,
+ "Config": 3991,
+ "▁Text": 3992,
+ "inner": 3993,
+ "▁crit": 3994,
+ ",”": 3995,
+ "▁tog": 3996,
+ "$$": 3997,
+ "nof": 3998,
+ "▁ses": 3999,
+ "ühr": 4000,
+ "▁Since": 4001,
+ "Des": 4002,
+ "ube": 4003,
+ "▁section": 4004,
+ "▁gi": 4005,
+ "ford": 4006,
+ "▁Ass": 4007,
+ "ainer": 4008,
+ "ttp": 4009,
+ "▁behav": 4010,
+ "ports": 4011,
+ "draw": 4012,
+ "This": 4013,
+ "ranch": 4014,
+ "inding": 4015,
+ "▁estab": 4016,
+ "▁obtain": 4017,
+ "rich": 4018,
+ "licit": 4019,
+ "ев": 4020,
+ "▁qual": 4021,
+ "▁za": 4022,
+ "▁har": 4023,
+ "▁fac": 4024,
+ "aar": 4025,
+ "jet": 4026,
+ "icles": 4027,
+ "▁Aus": 4028,
+ "▁hor": 4029,
+ "▁remov": 4030,
+ "▁wie": 4031,
+ "Client": 4032,
+ "▁natur": 4033,
+ "hip": 4034,
+ "Sub": 4035,
+ "▁random": 4036,
+ "DF": 4037,
+ "▁area": 4038,
+ "tag": 4039,
+ "Pr": 4040,
+ "▁Ital": 4041,
+ "▁roku": 4042,
+ "nofollow": 4043,
+ "*}": 4044,
+ "▁others": 4045,
+ "▁limit": 4046,
+ "▁sil": 4047,
+ "▁sav": 4048,
+ "▁often": 4049,
+ "▁render": 4050,
+ "DB": 4051,
+ "▁Mc": 4052,
+ "▁zijn": 4053,
+ "жен": 4054,
+ "▁tag": 4055,
+ "ming": 4056,
+ "lichen": 4057,
+ "pack": 4058,
+ "▁Ag": 4059,
+ "▁sense": 4060,
+ "pg": 4061,
+ "Method": 4062,
+ "aged": 4063,
+ "ág": 4064,
+ "ła": 4065,
+ "▁interest": 4066,
+ "▁associ": 4067,
+ "volution": 4068,
+ "▁empty": 4069,
+ "iche": 4070,
+ "▁gro": 4071,
+ "▁types": 4072,
+ "▁Sie": 4073,
+ "Inter": 4074,
+ "▁noreferrer": 4075,
+ "▁gives": 4076,
+ "hal": 4077,
+ "▁save": 4078,
+ "▁font": 4079,
+ "ruction": 4080,
+ "Script": 4081,
+ "▁alla": 4082,
+ "▁says": 4083,
+ "▁fu": 4084,
+ "ape": 4085,
+ "▁language": 4086,
+ "iger": 4087,
+ "▁King": 4088,
+ "bor": 4089,
+ "uv": 4090,
+ "▁shall": 4091,
+ "▁Europe": 4092,
+ "▁einem": 4093,
+ "▁water": 4094,
+ "▁govern": 4095,
+ "anz": 4096,
+ "ators": 4097,
+ "▁month": 4098,
+ "ye": 4099,
+ "▁important": 4100,
+ "atz": 4101,
+ "first": 4102,
+ "▁Trans": 4103,
+ "▁Mad": 4104,
+ "▁bra": 4105,
+ "ika": 4106,
+ "▁Saint": 4107,
+ "oria": 4108,
+ "kre": 4109,
+ "ements": 4110,
+ "▁Ben": 4111,
+ "lav": 4112,
+ "▁admin": 4113,
+ "▁Hen": 4114,
+ "ril": 4115,
+ "▁Sm": 4116,
+ "cat": 4117,
+ "▁Refer": 4118,
+ "▁Ш": 4119,
+ "▁pract": 4120,
+ "▁Pat": 4121,
+ "▁Gre": 4122,
+ "▁young": 4123,
+ "▁Inter": 4124,
+ "oma": 4125,
+ "teger": 4126,
+ "ibility": 4127,
+ "▁parameters": 4128,
+ "▁everything": 4129,
+ "dat": 4130,
+ "urop": 4131,
+ "olean": 4132,
+ "▁returned": 4133,
+ "▁Class": 4134,
+ "acy": 4135,
+ "####": 4136,
+ "▁př": 4137,
+ "▁folder": 4138,
+ "▁kon": 4139,
+ "▁guess": 4140,
+ "gt": 4141,
+ "jen": 4142,
+ "annel": 4143,
+ "icon": 4144,
+ "▁comb": 4145,
+ "rict": 4146,
+ "▁hij": 4147,
+ "▁author": 4148,
+ "see": 4149,
+ "here": 4150,
+ "stra": 4151,
+ "▁entire": 4152,
+ "▁directly": 4153,
+ "raft": 4154,
+ "heet": 4155,
+ "ester": 4156,
+ "▁ми": 4157,
+ "▁mass": 4158,
+ "untu": 4159,
+ "▁users": 4160,
+ "chi": 4161,
+ "PE": 4162,
+ "▁component": 4163,
+ "Click": 4164,
+ "Att": 4165,
+ "▁sobre": 4166,
+ "ands": 4167,
+ "▁Hol": 4168,
+ "▁Sant": 4169,
+ "ori": 4170,
+ "▁sua": 4171,
+ "std": 4172,
+ "entic": 4173,
+ "CC": 4174,
+ "▁filter": 4175,
+ "SQL": 4176,
+ "▁God": 4177,
+ "At": 4178,
+ "▁му": 4179,
+ "▁performance": 4180,
+ "delta": 4181,
+ "ande": 4182,
+ "amer": 4183,
+ "ды": 4184,
+ "▁cult": 4185,
+ "▁Nor": 4186,
+ "but": 4187,
+ "▁lik": 4188,
+ "********": 4189,
+ "ствен": 4190,
+ "▁comme": 4191,
+ "▁dr": 4192,
+ "imer": 4193,
+ "ordin": 4194,
+ "▁condition": 4195,
+ "este": 4196,
+ "([": 4197,
+ "FF": 4198,
+ "ться": 4199,
+ "imo": 4200,
+ "rab": 4201,
+ "іль": 4202,
+ "▁half": 4203,
+ "each": 4204,
+ "Dis": 4205,
+ "▁rows": 4206,
+ "▁hon": 4207,
+ "▁together": 4208,
+ "▁și": 4209,
+ "medi": 4210,
+ "agn": 4211,
+ "alled": 4212,
+ "▁vill": 4213,
+ "ING": 4214,
+ "idden": 4215,
+ "▁draw": 4216,
+ "yntax": 4217,
+ "▁attempt": 4218,
+ "URL": 4219,
+ "pose": 4220,
+ "▁indic": 4221,
+ "ника": 4222,
+ "▁English": 4223,
+ "▁déc": 4224,
+ "▁needs": 4225,
+ "▁normal": 4226,
+ "urt": 4227,
+ "▁но": 4228,
+ "}}\\": 4229,
+ "last": 4230,
+ "▁Fin": 4231,
+ "▁Febru": 4232,
+ "ila": 4233,
+ "▁country": 4234,
+ "▁fields": 4235,
+ "▁max": 4236,
+ "lés": 4237,
+ "owie": 4238,
+ "▁deux": 4239,
+ "▁built": 4240,
+ "▁Main": 4241,
+ "▁camp": 4242,
+ "ivo": 4243,
+ "iva": 4244,
+ "icy": 4245,
+ "zione": 4246,
+ "Node": 4247,
+ "▁:)": 4248,
+ "▁among": 4249,
+ "▁Ob": 4250,
+ "▁cases": 4251,
+ "haps": 4252,
+ "sers": 4253,
+ "arter": 4254,
+ "ści": 4255,
+ "▁iter": 4256,
+ "▁named": 4257,
+ "exec": 4258,
+ "▁season": 4259,
+ "tot": 4260,
+ "=>": 4261,
+ "graph": 4262,
+ "▁nil": 4263,
+ "acional": 4264,
+ "▁NULL": 4265,
+ "▁special": 4266,
+ "сте": 4267,
+ "css": 4268,
+ "▁\\(": 4269,
+ "vs": 4270,
+ "ael": 4271,
+ "▁city": 4272,
+ "ova": 4273,
+ "▁article": 4274,
+ "▁South": 4275,
+ "Action": 4276,
+ "ça": 4277,
+ "spring": 4278,
+ "itude": 4279,
+ "▁complex": 4280,
+ "▁что": 4281,
+ "build": 4282,
+ "gamma": 4283,
+ "▁Ent": 4284,
+ "iers": 4285,
+ "'.": 4286,
+ "car": 4287,
+ "apache": 4288,
+ "ingen": 4289,
+ "Input": 4290,
+ ": ": 4291,
+ "▁dynam": 4292,
+ "alls": 4293,
+ "show": 4294,
+ "|\\": 4295,
+ "▁wird": 4296,
+ "Bar": 4297,
+ "alth": 4298,
+ "model": 4299,
+ "Trans": 4300,
+ "Row": 4301,
+ "abe": 4302,
+ "▁lib": 4303,
+ "null": 4304,
+ "ragment": 4305,
+ "▁State": 4306,
+ "▁law": 4307,
+ "Frame": 4308,
+ "▁Lo": 4309,
+ "geb": 4310,
+ "}$.": 4311,
+ "▁needed": 4312,
+ "▁contr": 4313,
+ "aries": 4314,
+ "▁screen": 4315,
+ "yr": 4316,
+ "mm": 4317,
+ "▁shown": 4318,
+ "▁bad": 4319,
+ "▁cast": 4320,
+ "▁Test": 4321,
+ "▁Auf": 4322,
+ "▁quant": 4323,
+ "iga": 4324,
+ "▁ren": 4325,
+ "▁Mac": 4326,
+ "▁transform": 4327,
+ "▁difference": 4328,
+ "▁tit": 4329,
+ "TE": 4330,
+ "▁step": 4331,
+ "▁capt": 4332,
+ "▁collection": 4333,
+ "ictionary": 4334,
+ "▁Tom": 4335,
+ "rier": 4336,
+ "▁move": 4337,
+ "cope": 4338,
+ "ords": 4339,
+ "▁further": 4340,
+ "▁columns": 4341,
+ "▁Lin": 4342,
+ "▁fixed": 4343,
+ "▁children": 4344,
+ "MS": 4345,
+ "mo": 4346,
+ "una": 4347,
+ "▁individ": 4348,
+ "tty": 4349,
+ "aste": 4350,
+ "src": 4351,
+ "match": 4352,
+ "wi": 4353,
+ "▁х": 4354,
+ "▁ди": 4355,
+ "▁ord": 4356,
+ "iving": 4357,
+ "▁Bro": 4358,
+ "▁almost": 4359,
+ "▁Pres": 4360,
+ "reci": 4361,
+ "aring": 4362,
+ "▁///": 4363,
+ "ется": 4364,
+ "▁sig": 4365,
+ "light": 4366,
+ "▁Red": 4367,
+ "▁suggest": 4368,
+ "olf": 4369,
+ "▁été": 4370,
+ "isation": 4371,
+ "зна": 4372,
+ "New": 4373,
+ "стан": 4374,
+ "LA": 4375,
+ "unicip": 4376,
+ "▁figure": 4377,
+ "mt": 4378,
+ "iale": 4379,
+ "▁catch": 4380,
+ "default": 4381,
+ "▁tele": 4382,
+ "▁matter": 4383,
+ "cast": 4384,
+ "▁Rich": 4385,
+ "▁handle": 4386,
+ "valu": 4387,
+ "$-": 4388,
+ "об": 4389,
+ "▁json": 4390,
+ "Create": 4391,
+ "▁exam": 4392,
+ "аль": 4393,
+ "ют": 4394,
+ "ored": 4395,
+ "idos": 4396,
+ "append": 4397,
+ "▁Array": 4398,
+ "кс": 4399,
+ "}[": 4400,
+ "rive": 4401,
+ "▁club": 4402,
+ "mann": 4403,
+ "▁este": 4404,
+ "esta": 4405,
+ "▁Gi": 4406,
+ "▁Jap": 4407,
+ "▁Name": 4408,
+ "Column": 4409,
+ "oups": 4410,
+ "ismo": 4411,
+ "▁City": 4412,
+ "▁classes": 4413,
+ "▁infl": 4414,
+ "hl": 4415,
+ "ром": 4416,
+ "▁adding": 4417,
+ "▁fail": 4418,
+ "xx": 4419,
+ "ões": 4420,
+ "Sc": 4421,
+ "util": 4422,
+ "▁location": 4423,
+ "lege": 4424,
+ "ago": 4425,
+ "▁properties": 4426,
+ "abil": 4427,
+ "vas": 4428,
+ "}$,": 4429,
+ "itted": 4430,
+ "ód": 4431,
+ "▁Dem": 4432,
+ "▁asked": 4433,
+ "▁tab": 4434,
+ "Source": 4435,
+ "▁errors": 4436,
+ "ographie": 4437,
+ "▁жи": 4438,
+ "▁mal": 4439,
+ "stract": 4440,
+ "▁dro": 4441,
+ "rak": 4442,
+ "▁note": 4443,
+ "▁setting": 4444,
+ "▁fem": 4445,
+ "▁saw": 4446,
+ "iar": 4447,
+ "HER": 4448,
+ "ес": 4449,
+ "▁pred": 4450,
+ "▁Out": 4451,
+ "▁items": 4452,
+ "лан": 4453,
+ "▁werd": 4454,
+ "ersion": 4455,
+ "lia": 4456,
+ "▁sin": 4457,
+ "ichte": 4458,
+ "▁feel": 4459,
+ "▁пра": 4460,
+ "▁oder": 4461,
+ "UE": 4462,
+ "ocument": 4463,
+ "▁mode": 4464,
+ "▁Na": 4465,
+ "ден": 4466,
+ "mes": 4467,
+ "framework": 4468,
+ "▁auto": 4469,
+ "ным": 4470,
+ "uby": 4471,
+ "▁template": 4472,
+ "▁mess": 4473,
+ "ieder": 4474,
+ "▁related": 4475,
+ "oken": 4476,
+ "▁follows": 4477,
+ "search": 4478,
+ "ami": 4479,
+ "▁wait": 4480,
+ "igr": 4481,
+ "▁low": 4482,
+ "ских": 4483,
+ "ская": 4484,
+ "▁Mark": 4485,
+ "▁ill": 4486,
+ "amento": 4487,
+ "\\<": 4488,
+ "▁df": 4489,
+ "osition": 4490,
+ "▁Ви": 4491,
+ "isf": 4492,
+ "▁Deutsch": 4493,
+ "ahl": 4494,
+ "war": 4495,
+ "itect": 4496,
+ "▁sal": 4497,
+ "elen": 4498,
+ "ById": 4499,
+ "▁gru": 4500,
+ "sv": 4501,
+ "▁passed": 4502,
+ "▁añ": 4503,
+ "Sch": 4504,
+ "▁solve": 4505,
+ "weise": 4506,
+ "atos": 4507,
+ "▁meg": 4508,
+ "▁member": 4509,
+ "ername": 4510,
+ "▁connect": 4511,
+ "ips": 4512,
+ "▁round": 4513,
+ "▁]": 4514,
+ "nes": 4515,
+ "▁dir": 4516,
+ "▁London": 4517,
+ "dy": 4518,
+ "FA": 4519,
+ "▁received": 4520,
+ "reet": 4521,
+ "▁Log": 4522,
+ "▁School": 4523,
+ "ango": 4524,
+ "▁These": 4525,
+ "▁Mont": 4526,
+ "▁ener": 4527,
+ "lad": 4528,
+ "▁define": 4529,
+ "sign": 4530,
+ "▁cle": 4531,
+ "figure": 4532,
+ "▁View": 4533,
+ "textbf": 4534,
+ "$\\": 4535,
+ "зы": 4536,
+ "number": 4537,
+ "▁din": 4538,
+ "eller": 4539,
+ "orithm": 4540,
+ "false": 4541,
+ "fol": 4542,
+ "fficient": 4543,
+ "▁HTML": 4544,
+ "liche": 4545,
+ "▁Mo": 4546,
+ "▁introdu": 4547,
+ "exp": 4548,
+ "▁strong": 4549,
+ "▁thus": 4550,
+ "/)": 4551,
+ "▁ele": 4552,
+ "▁так": 4553,
+ "▁па": 4554,
+ "▁dont": 4555,
+ "▁cause": 4556,
+ "Number": 4557,
+ "▁images": 4558,
+ "▁sample": 4559,
+ "▁sci": 4560,
+ "like": 4561,
+ "▁Lou": 4562,
+ "div": 4563,
+ "anc": 4564,
+ "▁front": 4565,
+ "nen": 4566,
+ "▁missing": 4567,
+ "aria": 4568,
+ "pres": 4569,
+ "▁пред": 4570,
+ "DI": 4571,
+ "filter": 4572,
+ "▁Mit": 4573,
+ "UR": 4574,
+ "▁opp": 4575,
+ "▁sql": 4576,
+ "▁року": 4577,
+ "eren": 4578,
+ "emat": 4579,
+ "ís": 4580,
+ "▁Jean": 4581,
+ "éc": 4582,
+ "▁ci": 4583,
+ "enne": 4584,
+ "atform": 4585,
+ "▁taken": 4586,
+ "▁Of": 4587,
+ "▁насе": 4588,
+ "▁err": 4589,
+ "OP": 4590,
+ "From": 4591,
+ "Default": 4592,
+ "▁General": 4593,
+ "wiki": 4594,
+ "▁grand": 4595,
+ "▁einen": 4596,
+ "Reg": 4597,
+ "Handler": 4598,
+ "conom": 4599,
+ "anger": 4600,
+ "▁был": 4601,
+ "▁Los": 4602,
+ "▁expression": 4603,
+ "ша": 4604,
+ "yal": 4605,
+ "▁$('": 4606,
+ "▁switch": 4607,
+ "▁vector": 4608,
+ "▁Thom": 4609,
+ "▁virt": 4610,
+ "leased": 4611,
+ "▁cover": 4612,
+ "▁resp": 4613,
+ "ako": 4614,
+ "rench": 4615,
+ "ota": 4616,
+ "Cell": 4617,
+ "anged": 4618,
+ "▁+=": 4619,
+ "lac": 4620,
+ "ska": 4621,
+ "next": 4622,
+ "▁International": 4623,
+ "▁Wil": 4624,
+ "▁ont": 4625,
+ "ibr": 4626,
+ "ustr": 4627,
+ "▁black": 4628,
+ "▁selected": 4629,
+ "cher": 4630,
+ "▁liter": 4631,
+ "root": 4632,
+ "лся": 4633,
+ "▁Life": 4634,
+ "▁insert": 4635,
+ "▁matrix": 4636,
+ "ises": 4637,
+ ")]": 4638,
+ "▁pel": 4639,
+ "Override": 4640,
+ "rypt": 4641,
+ "▁former": 4642,
+ "▁Film": 4643,
+ "▁North": 4644,
+ "client": 4645,
+ "▁night": 4646,
+ "ходи": 4647,
+ "▁Austral": 4648,
+ "▁Ret": 4649,
+ "rho": 4650,
+ "▁пер": 4651,
+ "ipedia": 4652,
+ "▁express": 4653,
+ "▁third": 4654,
+ "▁major": 4655,
+ "▁grad": 4656,
+ "owe": 4657,
+ "▁believe": 4658,
+ "ournal": 4659,
+ "▁status": 4660,
+ "unc": 4661,
+ "▁dou": 4662,
+ "▁JSON": 4663,
+ "uis": 4664,
+ "▁population": 4665,
+ "enz": 4666,
+ "▁William": 4667,
+ "sf": 4668,
+ "▁Object": 4669,
+ "▁cin": 4670,
+ "▁Di": 4671,
+ "curity": 4672,
+ "▁Open": 4673,
+ "▁ле": 4674,
+ "lar": 4675,
+ "adding": 4676,
+ "▁kom": 4677,
+ "}(\\": 4678,
+ "▁kil": 4679,
+ "umer": 4680,
+ "\"/>": 4681,
+ "▁feature": 4682,
+ "▁Are": 4683,
+ "cks": 4684,
+ "▁Internet": 4685,
+ "▁ih": 4686,
+ "▁started": 4687,
+ "▁early": 4688,
+ "▁began": 4689,
+ "TH": 4690,
+ "python": 4691,
+ "asp": 4692,
+ "▁Fr": 4693,
+ "▁clos": 4694,
+ "istic": 4695,
+ "▁music": 4696,
+ "▁dig": 4697,
+ "▁ital": 4698,
+ "▁David": 4699,
+ "▁website": 4700,
+ "▁controller": 4701,
+ "▁Mer": 4702,
+ "context": 4703,
+ "product": 4704,
+ "osp": 4705,
+ "▁▁▁▁▁▁▁": 4706,
+ "▁jun": 4707,
+ "rown": 4708,
+ "▁Az": 4709,
+ "\":\"": 4710,
+ "▁aan": 4711,
+ "▁Date": 4712,
+ "mult": 4713,
+ "▁browser": 4714,
+ "ред": 4715,
+ "which": 4716,
+ "RA": 4717,
+ "quare": 4718,
+ "▁Russ": 4719,
+ "▁soon": 4720,
+ "▁Pre": 4721,
+ "tau": 4722,
+ "▁week": 4723,
+ "▁ба": 4724,
+ "▁oct": 4725,
+ "▁town": 4726,
+ "roy": 4727,
+ "▁els": 4728,
+ "blic": 4729,
+ "undle": 4730,
+ "▁Histor": 4731,
+ "▁foi": 4732,
+ "▁models": 4733,
+ "зо": 4734,
+ "onym": 4735,
+ "Param": 4736,
+ "▁Met": 4737,
+ "gener": 4738,
+ "ją": 4739,
+ "▁espe": 4740,
+ "CE": 4741,
+ "▁device": 4742,
+ "ellow": 4743,
+ "▁debug": 4744,
+ "érie": 4745,
+ "using": 4746,
+ "анг": 4747,
+ "▁*)": 4748,
+ "udi": 4749,
+ "▁Miss": 4750,
+ "ком": 4751,
+ "posed": 4752,
+ "▁zwe": 4753,
+ "ін": 4754,
+ "▁Robert": 4755,
+ "▁Oct": 4756,
+ "lop": 4757,
+ "jar": 4758,
+ "▁aver": 4759,
+ "▁habit": 4760,
+ "▁::": 4761,
+ "äng": 4762,
+ "Start": 4763,
+ "▁pow": 4764,
+ "▁src": 4765,
+ "▁pattern": 4766,
+ "▁Э": 4767,
+ "▁bi": 4768,
+ "otes": 4769,
+ "▁__": 4770,
+ "▁sens": 4771,
+ "▁avoid": 4772,
+ "example": 4773,
+ "utt": 4774,
+ "Label": 4775,
+ "tex": 4776,
+ "boot": 4777,
+ "esto": 4778,
+ "▁March": 4779,
+ "▁easy": 4780,
+ "icture": 4781,
+ "Group": 4782,
+ "▁father": 4783,
+ "▁updated": 4784,
+ "▁Vo": 4785,
+ "▁III": 4786,
+ "omega": 4787,
+ "▁alle": 4788,
+ "Rec": 4789,
+ "yg": 4790,
+ "зе": 4791,
+ "▁Dim": 4792,
+ "nect": 4793,
+ "▁Tor": 4794,
+ "▁deutsch": 4795,
+ "▁white": 4796,
+ "▁national": 4797,
+ "ppe": 4798,
+ "▁air": 4799,
+ "▁password": 4800,
+ "det": 4801,
+ "▁big": 4802,
+ "▁Use": 4803,
+ "call": 4804,
+ "▁extra": 4805,
+ "We": 4806,
+ "ania": 4807,
+ "▁hold": 4808,
+ "Control": 4809,
+ "▁CO": 4810,
+ "▁мі": 4811,
+ "iti": 4812,
+ "▁Ke": 4813,
+ "enu": 4814,
+ "▁Park": 4815,
+ "том": 4816,
+ "▁auth": 4817,
+ "▁center": 4818,
+ "Ph": 4819,
+ "тов": 4820,
+ "iding": 4821,
+ "▁across": 4822,
+ "▁song": 4823,
+ "▁phys": 4824,
+ "▁numer": 4825,
+ "ща": 4826,
+ "▁Alex": 4827,
+ "▁problems": 4828,
+ "▁Error": 4829,
+ "format": 4830,
+ "▁Acc": 4831,
+ "▁six": 4832,
+ "▁db": 4833,
+ "▁Cast": 4834,
+ "oms": 4835,
+ "project": 4836,
+ "▁vert": 4837,
+ "cret": 4838,
+ "▁header": 4839,
+ "▁stream": 4840,
+ "ids": 4841,
+ "▁tor": 4842,
+ "▁sept": 4843,
+ "▁estim": 4844,
+ "▁decl": 4845,
+ "▁gave": 4846,
+ "▁player": 4847,
+ "ysis": 4848,
+ "▁дру": 4849,
+ "amm": 4850,
+ "що": 4851,
+ "▁(\"": 4852,
+ "▁ax": 4853,
+ "Property": 4854,
+ "usr": 4855,
+ "▁someone": 4856,
+ "▁impro": 4857,
+ "aden": 4858,
+ "rote": 4859,
+ "▁Ми": 4860,
+ "ih": 4861,
+ "++)": 4862,
+ "▁video": 4863,
+ "▁exists": 4864,
+ "кла": 4865,
+ "▁complete": 4866,
+ "▁session": 4867,
+ "▁constant": 4868,
+ "icos": 4869,
+ "▁pack": 4870,
+ "rome": 4871,
+ "egr": 4872,
+ "Application": 4873,
+ "▁yes": 4874,
+ "▁elle": 4875,
+ "▁email": 4876,
+ "orf": 4877,
+ "case": 4878,
+ "▁pointer": 4879,
+ "▁regard": 4880,
+ "sen": 4881,
+ "status": 4882,
+ "▁mes": 4883,
+ "▁delle": 4884,
+ "ington": 4885,
+ "▁Bas": 4886,
+ ")^": 4887,
+ "develop": 4888,
+ "▁force": 4889,
+ "▁characters": 4890,
+ "▁cross": 4891,
+ "▁death": 4892,
+ "▁takes": 4893,
+ "éri": 4894,
+ "igne": 4895,
+ "чен": 4896,
+ "UP": 4897,
+ ".:": 4898,
+ "Thread": 4899,
+ "ju": 4900,
+ "iny": 4901,
+ "▁details": 4902,
+ "▁xml": 4903,
+ "tait": 4904,
+ "output": 4905,
+ "message": 4906,
+ "''": 4907,
+ "▁British": 4908,
+ "ville": 4909,
+ "▁Div": 4910,
+ "▁User": 4911,
+ "cm": 4912,
+ "чно": 4913,
+ "column": 4914,
+ "eqref": 4915,
+ "ór": 4916,
+ "onom": 4917,
+ "▁Post": 4918,
+ "ellen": 4919,
+ "Ab": 4920,
+ "ulté": 4921,
+ "▁perfect": 4922,
+ "(){": 4923,
+ "vision": 4924,
+ "active": 4925,
+ "lier": 4926,
+ "rij": 4927,
+ "sd": 4928,
+ "▁kö": 4929,
+ "▁nie": 4930,
+ "▁relig": 4931,
+ "▁ot": 4932,
+ "▁machine": 4933,
+ "▁held": 4934,
+ ")$.": 4935,
+ "========": 4936,
+ "cker": 4937,
+ "вы": 4938,
+ "born": 4939,
+ "▁past": 4940,
+ "рия": 4941,
+ "▁Dr": 4942,
+ "▁regular": 4943,
+ "▁provided": 4944,
+ "TER": 4945,
+ "▁univers": 4946,
+ "▁gets": 4947,
+ "▁nu": 4948,
+ "▁/*": 4949,
+ "ober": 4950,
+ "fin": 4951,
+ "▁nella": 4952,
+ "▁become": 4953,
+ "▁``": 4954,
+ "▁history": 4955,
+ "▁Sol": 4956,
+ "▁Rad": 4957,
+ "▁terms": 4958,
+ "▁events": 4959,
+ "lymp": 4960,
+ ")))": 4961,
+ "рова": 4962,
+ "▁absol": 4963,
+ "▁soft": 4964,
+ "links": 4965,
+ "▁hope": 4966,
+ "▁subject": 4967,
+ "\"),": 4968,
+ "▁creating": 4969,
+ "▁}\r": 4970,
+ "▁Sk": 4971,
+ "▁flow": 4972,
+ "▁Ра": 4973,
+ "▁assert": 4974,
+ "zet": 4975,
+ "▁Frank": 4976,
+ "sa": 4977,
+ "▁distribution": 4978,
+ "cu": 4979,
+ "band": 4980,
+ "izz": 4981,
+ "▁job": 4982,
+ "iner": 4983,
+ "struct": 4984,
+ "ák": 4985,
+ "TO": 4986,
+ "auf": 4987,
+ "▁extends": 4988,
+ "▁Gra": 4989,
+ "display": 4990,
+ "▁signific": 4991,
+ "oney": 4992,
+ "source": 4993,
+ "microsoft": 4994,
+ "inder": 4995,
+ "▁quick": 4996,
+ "▁wonder": 4997,
+ "Instance": 4998,
+ "elles": 4999,
+ "ème": 5000,
+ "▁company": 5001,
+ "uß": 5002,
+ ".}": 5003,
+ "▁separate": 5004,
+ "UM": 5005,
+ "HERE": 5006,
+ "▁writing": 5007,
+ "itution": 5008,
+ "▁Gesch": 5009,
+ "мя": 5010,
+ "▁James": 5011,
+ "▁DE": 5012,
+ "▁Spe": 5013,
+ "process": 5014,
+ "Str": 5015,
+ "▁sym": 5016,
+ "▁ao": 5017,
+ "▁wy": 5018,
+ "▁anyone": 5019,
+ "▁Up": 5020,
+ "useum": 5021,
+ "aron": 5022,
+ "▁definition": 5023,
+ "▁`$": 5024,
+ "▁fav": 5025,
+ "ributes": 5026,
+ "▁Ré": 5027,
+ "ografia": 5028,
+ "element": 5029,
+ "cap": 5030,
+ "pat": 5031,
+ "▁Bra": 5032,
+ ")(": 5033,
+ "▁according": 5034,
+ "ге": 5035,
+ "▁pie": 5036,
+ "eli": 5037,
+ "}\"": 5038,
+ "▁activ": 5039,
+ "▁stop": 5040,
+ "patch": 5041,
+ "ті": 5042,
+ "▁Jose": 5043,
+ "End": 5044,
+ "▁prze": 5045,
+ "▁age": 5046,
+ "itory": 5047,
+ "▁PHP": 5048,
+ "agement": 5049,
+ "▁`.": 5050,
+ "▁pretty": 5051,
+ "▁recomm": 5052,
+ "▁sud": 5053,
+ "▁requ": 5054,
+ "▁обла": 5055,
+ "atives": 5056,
+ "▁High": 5057,
+ "áz": 5058,
+ "oul": 5059,
+ "rest": 5060,
+ "▁Ter": 5061,
+ "under": 5062,
+ "thern": 5063,
+ "center": 5064,
+ "▁ur": 5065,
+ "lat": 5066,
+ "▁interface": 5067,
+ "▁ин": 5068,
+ "▁whose": 5069,
+ "icas": 5070,
+ "amen": 5071,
+ "Filter": 5072,
+ "▁station": 5073,
+ "Page": 5074,
+ "▁arm": 5075,
+ "▁eyes": 5076,
+ "▁рай": 5077,
+ "▁seu": 5078,
+ "oli": 5079,
+ "win": 5080,
+ "lik": 5081,
+ "gex": 5082,
+ "chan": 5083,
+ "idence": 5084,
+ "args": 5085,
+ "aking": 5086,
+ "▁Google": 5087,
+ "▁Stud": 5088,
+ "▁ho": 5089,
+ "торы": 5090,
+ "Su": 5091,
+ "▁automat": 5092,
+ "ême": 5093,
+ "▁cy": 5094,
+ "lor": 5095,
+ "▁stack": 5096,
+ "▁SELECT": 5097,
+ "AF": 5098,
+ "▁>>": 5099,
+ "▁compet": 5100,
+ "▁pair": 5101,
+ "▁inglés": 5102,
+ "Response": 5103,
+ "▁Fig": 5104,
+ "grad": 5105,
+ "▁documentation": 5106,
+ "▁cant": 5107,
+ "▁appreci": 5108,
+ "ån": 5109,
+ "▁learn": 5110,
+ "▁indep": 5111,
+ "▁pal": 5112,
+ "package": 5113,
+ "ares": 5114,
+ "▁Berlin": 5115,
+ "бли": 5116,
+ "reich": 5117,
+ "ён": 5118,
+ "▁satisf": 5119,
+ "▁region": 5120,
+ "▁friend": 5121,
+ "▁George": 5122,
+ "▁Во": 5123,
+ "▁\"\"": 5124,
+ "▁desde": 5125,
+ "Factory": 5126,
+ "▁County": 5127,
+ "ouv": 5128,
+ "▁‘": 5129,
+ "▁installed": 5130,
+ "▁wanted": 5131,
+ "▁Python": 5132,
+ "▁interpre": 5133,
+ "▁included": 5134,
+ "▁((": 5135,
+ "▁altern": 5136,
+ "isto": 5137,
+ "gn": 5138,
+ "▁border": 5139,
+ "pdf": 5140,
+ "▁dup": 5141,
+ "▁download": 5142,
+ "just": 5143,
+ "▁members": 5144,
+ "child": 5145,
+ "▁pay": 5146,
+ "▁cer": 5147,
+ "▁looked": 5148,
+ "▁correctly": 5149,
+ "auth": 5150,
+ "▁стан": 5151,
+ "▁esp": 5152,
+ "▁desc": 5153,
+ "eben": 5154,
+ "▁questions": 5155,
+ "mal": 5156,
+ "▁abgerufen": 5157,
+ "▁Band": 5158,
+ "▁[]": 5159,
+ "Base": 5160,
+ "▁ris": 5161,
+ "▁fort": 5162,
+ "▁Id": 5163,
+ "▁various": 5164,
+ "▁League": 5165,
+ "▁Hand": 5166,
+ "▁Type": 5167,
+ "irl": 5168,
+ "▁Fe": 5169,
+ "ién": 5170,
+ "itter": 5171,
+ "▁fast": 5172,
+ "sta": 5173,
+ "▁except": 5174,
+ "icz": 5175,
+ "▁French": 5176,
+ "▁environment": 5177,
+ "▁conse": 5178,
+ "ур": 5179,
+ "ого": 5180,
+ "▁necessary": 5181,
+ "target": 5182,
+ "▁reading": 5183,
+ "home": 5184,
+ "zeich": 5185,
+ "▁equal": 5186,
+ "▁più": 5187,
+ "▁prem": 5188,
+ "▁difficult": 5189,
+ "▁unit": 5190,
+ "▁replace": 5191,
+ "▁heart": 5192,
+ "▁talk": 5193,
+ "AM": 5194,
+ "▁RE": 5195,
+ "▁Person": 5196,
+ "endency": 5197,
+ "▁imm": 5198,
+ "▁human": 5199,
+ "dn": 5200,
+ "▁Kir": 5201,
+ "▁Aut": 5202,
+ "known": 5203,
+ "▁frequ": 5204,
+ "system": 5205,
+ "лав": 5206,
+ "▁Sz": 5207,
+ "▁Gal": 5208,
+ "ное": 5209,
+ "selves": 5210,
+ "rightarrow": 5211,
+ "▁Са": 5212,
+ "=\"@": 5213,
+ "▁building": 5214,
+ "import": 5215,
+ "▁fam": 5216,
+ "▁delete": 5217,
+ "aire": 5218,
+ "mary": 5219,
+ "▁fund": 5220,
+ "▁particip": 5221,
+ "▁syn": 5222,
+ "sin": 5223,
+ "▁lower": 5224,
+ "▁zero": 5225,
+ "▁sec": 5226,
+ "▁fra": 5227,
+ "Point": 5228,
+ "▁failed": 5229,
+ "iento": 5230,
+ "cup": 5231,
+ "▁slow": 5232,
+ "▁nation": 5233,
+ "ähr": 5234,
+ "▁info": 5235,
+ "▁Public": 5236,
+ "▁decla": 5237,
+ "▁Та": 5238,
+ "▁sold": 5239,
+ "▁Rem": 5240,
+ "▁Phil": 5241,
+ "стра": 5242,
+ "▁mehr": 5243,
+ "▁Work": 5244,
+ "▁Nord": 5245,
+ "▁fait": 5246,
+ "▁gew": 5247,
+ "println": 5248,
+ "obile": 5249,
+ "▁Kon": 5250,
+ "▁assume": 5251,
+ "lands": 5252,
+ "▁amount": 5253,
+ "▁Press": 5254,
+ "ých": 5255,
+ "▁maxim": 5256,
+ "▁Champion": 5257,
+ "library": 5258,
+ "añ": 5259,
+ "▁Wal": 5260,
+ "Comm": 5261,
+ "]]": 5262,
+ "▁zw": 5263,
+ "▁social": 5264,
+ "LI": 5265,
+ "▁Unter": 5266,
+ "vor": 5267,
+ "Delta": 5268,
+ "email": 5269,
+ "raint": 5270,
+ "oni": 5271,
+ "▁alt": 5272,
+ "▁né": 5273,
+ "ция": 5274,
+ "ography": 5275,
+ "▁mentioned": 5276,
+ "▁<=": 5277,
+ "▁cette": 5278,
+ "▁currently": 5279,
+ "vare": 5280,
+ "izing": 5281,
+ "▁Def": 5282,
+ "icol": 5283,
+ "ünd": 5284,
+ "▁configuration": 5285,
+ "estig": 5286,
+ "III": 5287,
+ "lam": 5288,
+ "ière": 5289,
+ "▁Ear": 5290,
+ "▁tu": 5291,
+ "Ent": 5292,
+ "▁Using": 5293,
+ "▁ком": 5294,
+ "cie": 5295,
+ "▁proof": 5296,
+ "▁invol": 5297,
+ "▁History": 5298,
+ "><": 5299,
+ "▁AND": 5300,
+ "avy": 5301,
+ "▁relations": 5302,
+ "${": 5303,
+ "▁comes": 5304,
+ "▁direction": 5305,
+ "▁June": 5306,
+ "▁Way": 5307,
+ "Component": 5308,
+ "ech": 5309,
+ "▁Peter": 5310,
+ "sg": 5311,
+ "▁stra": 5312,
+ "uct": 5313,
+ "▁implementation": 5314,
+ "attle": 5315,
+ "▁cz": 5316,
+ "plot": 5317,
+ "▁played": 5318,
+ "\">": 5319,
+ "▁five": 5320,
+ "▁coll": 5321,
+ "▁Charles": 5322,
+ "Tra": 5323,
+ "▁suo": 5324,
+ "files": 5325,
+ "entes": 5326,
+ "response": 5327,
+ "How": 5328,
+ "▁Soci": 5329,
+ "▁ign": 5330,
+ "▁led": 5331,
+ "▁German": 5332,
+ "udo": 5333,
+ "▁Du": 5334,
+ "▁tim": 5335,
+ "ounter": 5336,
+ "▁attack": 5337,
+ "uri": 5338,
+ "▁ар": 5339,
+ "esse": 5340,
+ "ivil": 5341,
+ "▁Ju": 5342,
+ "▁vel": 5343,
+ "matrix": 5344,
+ "▁Mat": 5345,
+ "gio": 5346,
+ "▁Zeit": 5347,
+ "VER": 5348,
+ "has": 5349,
+ "Connection": 5350,
+ "▁ihr": 5351,
+ "▁attribute": 5352,
+ "▁discuss": 5353,
+ "▁domain": 5354,
+ "bind": 5355,
+ "▁Sec": 5356,
+ "rik": 5357,
+ "close": 5358,
+ "gin": 5359,
+ "▁love": 5360,
+ "anto": 5361,
+ "gent": 5362,
+ "aba": 5363,
+ "jango": 5364,
+ "bi": 5365,
+ "▁obser": 5366,
+ "itting": 5367,
+ "▁ру": 5368,
+ "}=": 5369,
+ "agen": 5370,
+ "BC": 5371,
+ "some": 5372,
+ "▁Bu": 5373,
+ "▁soci": 5374,
+ "▁individual": 5375,
+ "▁deal": 5376,
+ "▁outside": 5377,
+ "rio": 5378,
+ "Exec": 5379,
+ "andid": 5380,
+ "▁business": 5381,
+ "▁tempor": 5382,
+ "▁Tur": 5383,
+ "▁(!": 5384,
+ "riter": 5385,
+ "▁google": 5386,
+ "]:": 5387,
+ "itte": 5388,
+ "xi": 5389,
+ "▁Па": 5390,
+ "hol": 5391,
+ "нь": 5392,
+ "ring": 5393,
+ "▁sul": 5394,
+ "ности": 5395,
+ "_.": 5396,
+ "gar": 5397,
+ "Task": 5398,
+ "▁Check": 5399,
+ "▁modern": 5400,
+ "▁win": 5401,
+ "uster": 5402,
+ "han": 5403,
+ "formation": 5404,
+ "void": 5405,
+ "▁фи": 5406,
+ "▁useful": 5407,
+ "▁England": 5408,
+ "los": 5409,
+ "etime": 5410,
+ "eur": 5411,
+ "▁unique": 5412,
+ "▁как": 5413,
+ "ying": 5414,
+ "obj": 5415,
+ "uid": 5416,
+ "▁windows": 5417,
+ "▁distance": 5418,
+ "▁nombre": 5419,
+ "ія": 5420,
+ "ocus": 5421,
+ "ahn": 5422,
+ "ierte": 5423,
+ "▁dar": 5424,
+ "SI": 5425,
+ "long": 5426,
+ "asta": 5427,
+ "iven": 5428,
+ "▁told": 5429,
+ "▁Gru": 5430,
+ "foo": 5431,
+ "▁calling": 5432,
+ "iembre": 5433,
+ "▁future": 5434,
+ "près": 5435,
+ "leep": 5436,
+ "avigation": 5437,
+ "POST": 5438,
+ "▁described": 5439,
+ "▁noch": 5440,
+ "unit": 5441,
+ "allen": 5442,
+ "▁branch": 5443,
+ "fa": 5444,
+ "▁fill": 5445,
+ "▁obj": 5446,
+ "▁tree": 5447,
+ "▁wurden": 5448,
+ "▁Liter": 5449,
+ "rot": 5450,
+ "split": 5451,
+ "emein": 5452,
+ "module": 5453,
+ "CA": 5454,
+ "▁operator": 5455,
+ "▁wrote": 5456,
+ "▁Jack": 5457,
+ "ologie": 5458,
+ "▁Ant": 5459,
+ "тер": 5460,
+ "stream": 5461,
+ "▁Que": 5462,
+ "epsilon": 5463,
+ "non": 5464,
+ "stein": 5465,
+ "▁simpl": 5466,
+ "pub": 5467,
+ "▁July": 5468,
+ "▁nature": 5469,
+ "▁Database": 5470,
+ "ól": 5471,
+ "ним": 5472,
+ "▁VI": 5473,
+ "être": 5474,
+ "iles": 5475,
+ "▁wel": 5476,
+ "'),": 5477,
+ "▁mut": 5478,
+ "location": 5479,
+ "▁therefore": 5480,
+ "elli": 5481,
+ "▁І": 5482,
+ "né": 5483,
+ "▁ав": 5484,
+ "ledge": 5485,
+ "▁conver": 5486,
+ "ím": 5487,
+ "▁XV": 5488,
+ "vider": 5489,
+ "▁January": 5490,
+ "▁usually": 5491,
+ "▁released": 5492,
+ "▁Mi": 5493,
+ "Head": 5494,
+ "iller": 5495,
+ "▁jan": 5496,
+ "▁letter": 5497,
+ "produ": 5498,
+ "rd": 5499,
+ "▁Cam": 5500,
+ ",'": 5501,
+ "▁Ц": 5502,
+ "▁push": 5503,
+ "update": 5504,
+ "▁maybe": 5505,
+ "Http": 5506,
+ "@\"": 5507,
+ "мер": 5508,
+ "service": 5509,
+ "parse": 5510,
+ "▁dass": 5511,
+ "ên": 5512,
+ ")\"": 5513,
+ "more": 5514,
+ "/*": 5515,
+ "▁mas": 5516,
+ "▁likely": 5517,
+ "▁material": 5518,
+ "▁[[": 5519,
+ "▁longer": 5520,
+ "bal": 5521,
+ "▁Archiv": 5522,
+ "igt": 5523,
+ "▁egy": 5524,
+ "idge": 5525,
+ "igu": 5526,
+ "conf": 5527,
+ "▁inc": 5528,
+ "consulté": 5529,
+ "▁mai": 5530,
+ "Work": 5531,
+ "▁гра": 5532,
+ "▁October": 5533,
+ "▁global": 5534,
+ "▁sel": 5535,
+ "▁municip": 5536,
+ "▁viol": 5537,
+ "▁Does": 5538,
+ "▁\\[": 5539,
+ "ском": 5540,
+ "▁compos": 5541,
+ "бря": 5542,
+ "вя": 5543,
+ "▁respons": 5544,
+ "▁considered": 5545,
+ "▁Japan": 5546,
+ "pes": 5547,
+ "osto": 5548,
+ "▁milit": 5549,
+ "SP": 5550,
+ "сы": 5551,
+ "attr": 5552,
+ "cil": 5553,
+ "irectory": 5554,
+ "aving": 5555,
+ "▁Del": 5556,
+ "▁prevent": 5557,
+ "idade": 5558,
+ "git": 5559,
+ "iform": 5560,
+ "outer": 5561,
+ "inct": 5562,
+ "level": 5563,
+ "atever": 5564,
+ "▁repe": 5565,
+ "▁exc": 5566,
+ "дар": 5567,
+ "Style": 5568,
+ "▁Thomas": 5569,
+ "eline": 5570,
+ "▁ж": 5571,
+ "untime": 5572,
+ "▁larg": 5573,
+ "True": 5574,
+ ".*": 5575,
+ "creen": 5576,
+ "yles": 5577,
+ "▁transl": 5578,
+ "▁Со": 5579,
+ "ensions": 5580,
+ "äl": 5581,
+ "isse": 5582,
+ "▁volt": 5583,
+ "cially": 5584,
+ "nik": 5585,
+ ".]": 5586,
+ "▁Stadt": 5587,
+ "мы": 5588,
+ "fill": 5589,
+ "lov": 5590,
+ "▁\"/": 5591,
+ "Sp": 5592,
+ "▁Air": 5593,
+ "Call": 5594,
+ "▁nur": 5595,
+ "Check": 5596,
+ "ience": 5597,
+ "efined": 5598,
+ "▁вре": 5599,
+ "ło": 5600,
+ "dz": 5601,
+ "▁ор": 5602,
+ "iker": 5603,
+ "owa": 5604,
+ "ович": 5605,
+ "ré": 5606,
+ "OL": 5607,
+ "▁linear": 5608,
+ "▁export": 5609,
+ "ahr": 5610,
+ "icial": 5611,
+ "Rep": 5612,
+ "▁natural": 5613,
+ "▁cop": 5614,
+ "▁})": 5615,
+ "ções": 5616,
+ "zz": 5617,
+ "What": 5618,
+ "▁House": 5619,
+ "Ref": 5620,
+ "inger": 5621,
+ "▁taking": 5622,
+ "ně": 5623,
+ "▁Einz": 5624,
+ "▁dam": 5625,
+ "▁issues": 5626,
+ "Builder": 5627,
+ "edit": 5628,
+ "▁prz": 5629,
+ "password": 5630,
+ "Gener": 5631,
+ "rim": 5632,
+ "▁parts": 5633,
+ "---": 5634,
+ "iginal": 5635,
+ "▁Sci": 5636,
+ "▁mother": 5637,
+ "rea": 5638,
+ "▁container": 5639,
+ "дя": 5640,
+ "▁IP": 5641,
+ "▁none": 5642,
+ "▁followed": 5643,
+ "▁ple": 5644,
+ "▁measure": 5645,
+ "▁tout": 5646,
+ "Ext": 5647,
+ "▁TV": 5648,
+ "▁explain": 5649,
+ "▁paper": 5650,
+ "сті": 5651,
+ "ws": 5652,
+ "Wik": 5653,
+ "▁mm": 5654,
+ "▁Norm": 5655,
+ "▁Server": 5656,
+ "font": 5657,
+ "ecause": 5658,
+ "TR": 5659,
+ "▁би": 5660,
+ "La": 5661,
+ "▁ens": 5662,
+ "▁retr": 5663,
+ "▁Sil": 5664,
+ "▁sequence": 5665,
+ "arc": 5666,
+ "IV": 5667,
+ "zá": 5668,
+ "▁Android": 5669,
+ "▁Super": 5670,
+ "▁roz": 5671,
+ "ovie": 5672,
+ "Om": 5673,
+ "▁Well": 5674,
+ "make": 5675,
+ "orph": 5676,
+ "▁Jer": 5677,
+ "▁Ros": 5678,
+ "reference": 5679,
+ "▁features": 5680,
+ "▁Ger": 5681,
+ "▁Leg": 5682,
+ "▁late": 5683,
+ "▁additional": 5684,
+ "▁flo": 5685,
+ "▁его": 5686,
+ "▁algorithm": 5687,
+ "BA": 5688,
+ "kar": 5689,
+ "IP": 5690,
+ "]);": 5691,
+ "▁appears": 5692,
+ "yw": 5693,
+ "▁temp": 5694,
+ "▁aussi": 5695,
+ "method": 5696,
+ "▁pet": 5697,
+ "strap": 5698,
+ "arning": 5699,
+ "▁cut": 5700,
+ "▁Sa": 5701,
+ "▁track": 5702,
+ "▁employ": 5703,
+ "▁inde": 5704,
+ "rav": 5705,
+ "▁generate": 5706,
+ "bes": 5707,
+ "arts": 5708,
+ "Status": 5709,
+ "uge": 5710,
+ "alis": 5711,
+ "▁override": 5712,
+ "▁fi": 5713,
+ "▁lost": 5714,
+ "oted": 5715,
+ "▁room": 5716,
+ "▁calls": 5717,
+ "▁consist": 5718,
+ "рен": 5719,
+ "▁village": 5720,
+ "dist": 5721,
+ "▁techn": 5722,
+ "enza": 5723,
+ "▁роз": 5724,
+ "▁Catalog": 5725,
+ "▁becom": 5726,
+ "rows": 5727,
+ "▁Nel": 5728,
+ "comple": 5729,
+ "▁premi": 5730,
+ "▁rot": 5731,
+ "▁Weblinks": 5732,
+ "▁football": 5733,
+ "▁compar": 5734,
+ "▁live": 5735,
+ "ких": 5736,
+ "▁equival": 5737,
+ "cape": 5738,
+ "▁Gen": 5739,
+ "nder": 5740,
+ "▁Vis": 5741,
+ "▁behind": 5742,
+ "gers": 5743,
+ "voke": 5744,
+ "▁media": 5745,
+ "EX": 5746,
+ "that": 5747,
+ "▁sono": 5748,
+ "▁mysql": 5749,
+ "ev": 5750,
+ "▁rule": 5751,
+ "дов": 5752,
+ "acc": 5753,
+ "▁WHERE": 5754,
+ "ене": 5755,
+ "Grid": 5756,
+ "▁jul": 5757,
+ "▁mort": 5758,
+ "▁generated": 5759,
+ "encia": 5760,
+ "acter": 5761,
+ "clud": 5762,
+ "▁scen": 5763,
+ "▁closed": 5764,
+ "▁Michael": 5765,
+ "▁mount": 5766,
+ ")$,": 5767,
+ "▁drop": 5768,
+ "▁combin": 5769,
+ "tocol": 5770,
+ "▁goes": 5771,
+ "▁geb": 5772,
+ "MD": 5773,
+ "▁Anton": 5774,
+ "▁$(\"": 5775,
+ "Tem": 5776,
+ "▁ca": 5777,
+ "▁instru": 5778,
+ "eds": 5779,
+ "▁tool": 5780,
+ "mys": 5781,
+ "▁route": 5782,
+ "\"))": 5783,
+ "пре": 5784,
+ "▁float": 5785,
+ "▁services": 5786,
+ "▁чи": 5787,
+ "кі": 5788,
+ "embly": 5789,
+ "aker": 5790,
+ "▁Son": 5791,
+ "▁Math": 5792,
+ "asse": 5793,
+ "ously": 5794,
+ "lications": 5795,
+ "▁ru": 5796,
+ "▁що": 5797,
+ "▁Const": 5798,
+ "▁immedi": 5799,
+ "FO": 5800,
+ "oro": 5801,
+ "▁production": 5802,
+ "rei": 5803,
+ "▁jquery": 5804,
+ "annt": 5805,
+ "▁While": 5806,
+ "▁sn": 5807,
+ "▁годи": 5808,
+ "Format": 5809,
+ "▁star": 5810,
+ "▁Sen": 5811,
+ "▁ko": 5812,
+ "NAME": 5813,
+ "▁prés": 5814,
+ "cha": 5815,
+ "what": 5816,
+ "omin": 5817,
+ "endant": 5818,
+ "hy": 5819,
+ "▁observ": 5820,
+ "▁prefer": 5821,
+ "ун": 5822,
+ "▁constructor": 5823,
+ "bs": 5824,
+ "▁mac": 5825,
+ "▁Bre": 5826,
+ "▁Instit": 5827,
+ "▁story": 5828,
+ "▁symbol": 5829,
+ "eles": 5830,
+ "ße": 5831,
+ "asing": 5832,
+ "▁west": 5833,
+ "ians": 5834,
+ "▁master": 5835,
+ "ез": 5836,
+ "▁ways": 5837,
+ "bm": 5838,
+ "▁pick": 5839,
+ "▁depart": 5840,
+ "Back": 5841,
+ "enk": 5842,
+ "lipse": 5843,
+ "▁math": 5844,
+ "▁Francis": 5845,
+ "▁December": 5846,
+ "fs": 5847,
+ "rum": 5848,
+ "▁development": 5849,
+ "LT": 5850,
+ "ernel": 5851,
+ "▁True": 5852,
+ "▁More": 5853,
+ "rangle": 5854,
+ "▁conditions": 5855,
+ "Options": 5856,
+ "▁gli": 5857,
+ "▁operation": 5858,
+ "ék": 5859,
+ "acht": 5860,
+ "ights": 5861,
+ "▁mist": 5862,
+ "anda": 5863,
+ "▁energy": 5864,
+ "▁же": 5865,
+ "▁women": 5866,
+ "akt": 5867,
+ "▁CH": 5868,
+ "gebra": 5869,
+ "▁meet": 5870,
+ "iu": 5871,
+ "well": 5872,
+ "öl": 5873,
+ "▁government": 5874,
+ "▁Jos": 5875,
+ "ieg": 5876,
+ "▁syntax": 5877,
+ "fix": 5878,
+ "▁Pet": 5879,
+ "jquery": 5880,
+ "▁card": 5881,
+ "▁principal": 5882,
+ "▁dru": 5883,
+ "▁territ": 5884,
+ "▁пов": 5885,
+ "▁SS": 5886,
+ "рии": 5887,
+ "tres": 5888,
+ "agne": 5889,
+ "lying": 5890,
+ "tilde": 5891,
+ "bern": 5892,
+ "enter": 5893,
+ "Per": 5894,
+ "▁somet": 5895,
+ "Load": 5896,
+ "lice": 5897,
+ "▁sous": 5898,
+ "▁Louis": 5899,
+ "▁logic": 5900,
+ "▁Other": 5901,
+ "▁cir": 5902,
+ "év": 5903,
+ "chron": 5904,
+ "▁han": 5905,
+ "▁margin": 5906,
+ "Window": 5907,
+ "ères": 5908,
+ "nych": 5909,
+ "push": 5910,
+ "bolds": 5911,
+ "▁layout": 5912,
+ "▁[`": 5913,
+ "Char": 5914,
+ "▁Cap": 5915,
+ "boldsymbol": 5916,
+ "▁Roman": 5917,
+ "▁Max": 5918,
+ ":(": 5919,
+ "▁Code": 5920,
+ "ising": 5921,
+ "▁states": 5922,
+ "▁existing": 5923,
+ "support": 5924,
+ "▁research": 5925,
+ "licate": 5926,
+ "vari": 5927,
+ "▁bij": 5928,
+ "▁appe": 5929,
+ "▁happens": 5930,
+ "\\\"": 5931,
+ "▁concern": 5932,
+ "west": 5933,
+ "▁saying": 5934,
+ "pid": 5935,
+ "▁recogn": 5936,
+ "▁Het": 5937,
+ "Child": 5938,
+ "▁cs": 5939,
+ "\\,": 5940,
+ "▁clean": 5941,
+ "lections": 5942,
+ "access": 5943,
+ "ву": 5944,
+ "про": 5945,
+ "acity": 5946,
+ "▁Off": 5947,
+ "▁easily": 5948,
+ "èque": 5949,
+ "▁jako": 5950,
+ "▁iz": 5951,
+ "▁Ha": 5952,
+ "▁Det": 5953,
+ "▁forma": 5954,
+ "sche": 5955,
+ "swers": 5956,
+ "▁offer": 5957,
+ "quired": 5958,
+ "Users": 5959,
+ "▁subst": 5960,
+ ">(": 5961,
+ "▁ground": 5962,
+ "unn": 5963,
+ "rod": 5964,
+ "spe": 5965,
+ "ursor": 5966,
+ "▁leave": 5967,
+ "erk": 5968,
+ "▁tal": 5969,
+ "▁bottom": 5970,
+ "IO": 5971,
+ "▁popular": 5972,
+ "igo": 5973,
+ "▁Time": 5974,
+ "values": 5975,
+ "▁Loc": 5976,
+ "▁Club": 5977,
+ "▁anche": 5978,
+ "iał": 5979,
+ "ії": 5980,
+ "Omega": 5981,
+ "▁located": 5982,
+ "Url": 5983,
+ "▁Esp": 5984,
+ "лы": 5985,
+ "ць": 5986,
+ "ulate": 5987,
+ "▁join": 5988,
+ "aves": 5989,
+ "vet": 5990,
+ "lio": 5991,
+ "remove": 5992,
+ "▁token": 5993,
+ "▁optim": 5994,
+ "▁claim": 5995,
+ "ological": 5996,
+ "▁css": 5997,
+ "▁although": 5998,
+ "▁priv": 5999,
+ "▁Ba": 6000,
+ "ül": 6001,
+ "entication": 6002,
+ "▁ven": 6003,
+ "Server": 6004,
+ "▁Cong": 6005,
+ "NET": 6006,
+ "CON": 6007,
+ "dt": 6008,
+ "perties": 6009,
+ "▁epis": 6010,
+ "wikipedia": 6011,
+ "▁engine": 6012,
+ "▁fer": 6013,
+ "getElement": 6014,
+ "▁Cla": 6015,
+ "ří": 6016,
+ "▁rom": 6017,
+ "varepsilon": 6018,
+ "▁prime": 6019,
+ "istry": 6020,
+ "pected": 6021,
+ "orage": 6022,
+ "▁touch": 6023,
+ "▁['": 6024,
+ "▁dan": 6025,
+ "Em": 6026,
+ "aciones": 6027,
+ "Can": 6028,
+ "▁whom": 6029,
+ "▁behavior": 6030,
+ "▁strings": 6031,
+ "▁Europ": 6032,
+ "▁Rom": 6033,
+ "circ": 6034,
+ "▁pun": 6035,
+ "▁register": 6036,
+ "buntu": 6037,
+ "rain": 6038,
+ "Ob": 6039,
+ "TA": 6040,
+ "▁sometimes": 6041,
+ "▁ment": 6042,
+ "▁integer": 6043,
+ "▁Jac": 6044,
+ "legate": 6045,
+ "othing": 6046,
+ "▁sound": 6047,
+ "laces": 6048,
+ "▁Ба": 6049,
+ "rb": 6050,
+ "di": 6051,
+ "ления": 6052,
+ "▁themselves": 6053,
+ "▁Black": 6054,
+ "▁settings": 6055,
+ "▁norm": 6056,
+ "▁runs": 6057,
+ "▁NOT": 6058,
+ "KE": 6059,
+ "▁perhaps": 6060,
+ "▁Я": 6061,
+ "▁mol": 6062,
+ "▁ans": 6063,
+ "atre": 6064,
+ "▁Dies": 6065,
+ "Token": 6066,
+ "anie": 6067,
+ "▁allowed": 6068,
+ "Range": 6069,
+ "▁Gro": 6070,
+ "via": 6071,
+ "utorial": 6072,
+ "ensor": 6073,
+ "estival": 6074,
+ ");\r": 6075,
+ "краї": 6076,
+ "▁turned": 6077,
+ "scope": 6078,
+ "▁bien": 6079,
+ "=$": 6080,
+ "▁extension": 6081,
+ "atore": 6082,
+ "▁Ро": 6083,
+ "▁specify": 6084,
+ "edu": 6085,
+ "Datos": 6086,
+ "▁stored": 6087,
+ "▁parse": 6088,
+ "▁answers": 6089,
+ "ills": 6090,
+ "▁heard": 6091,
+ "lu": 6092,
+ "▁THE": 6093,
+ "▁gén": 6094,
+ "▁ful": 6095,
+ "ez": 6096,
+ "▁Prem": 6097,
+ "then": 6098,
+ "dp": 6099,
+ "ського": 6100,
+ "▁Si": 6101,
+ "ço": 6102,
+ "Edit": 6103,
+ "ків": 6104,
+ "▁Ли": 6105,
+ "▁Sing": 6106,
+ "▁categ": 6107,
+ "Equ": 6108,
+ "▁guer": 6109,
+ "Width": 6110,
+ "▁Christian": 6111,
+ "stat": 6112,
+ "Write": 6113,
+ "▁woman": 6114,
+ "wood": 6115,
+ "Vis": 6116,
+ "раз": 6117,
+ "▁$$\\": 6118,
+ "oder": 6119,
+ "▁bool": 6120,
+ "▁international": 6121,
+ "ность": 6122,
+ "▁Richard": 6123,
+ "▁addition": 6124,
+ "▁Music": 6125,
+ "▁aber": 6126,
+ "tó": 6127,
+ "▁hier": 6128,
+ "ugh": 6129,
+ "▁pob": 6130,
+ "▁tables": 6131,
+ "Do": 6132,
+ "▁higher": 6133,
+ "psi": 6134,
+ "rá": 6135,
+ "▁active": 6136,
+ "▁Table": 6137,
+ "ње": 6138,
+ "▁description": 6139,
+ "▁seemed": 6140,
+ "íst": 6141,
+ "▁myself": 6142,
+ "▁menu": 6143,
+ "del": 6144,
+ "▁ž": 6145,
+ "ele": 6146,
+ "Aut": 6147,
+ "▁гру": 6148,
+ "mut": 6149,
+ "oon": 6150,
+ "asc": 6151,
+ "bug": 6152,
+ "▁moved": 6153,
+ "CL": 6154,
+ "▁datas": 6155,
+ "SO": 6156,
+ "оло": 6157,
+ "▁Georg": 6158,
+ "▁reach": 6159,
+ ":\"": 6160,
+ "▁evalu": 6161,
+ "▁Hel": 6162,
+ "▁River": 6163,
+ "▁Ар": 6164,
+ "////": 6165,
+ "▁sets": 6166,
+ "▁Olymp": 6167,
+ "Adapter": 6168,
+ ".'": 6169,
+ "overn": 6170,
+ "▁Lord": 6171,
+ "!--": 6172,
+ "jpg": 6173,
+ "imento": 6174,
+ "▁Prof": 6175,
+ "▁achieve": 6176,
+ "}:": 6177,
+ "▁incor": 6178,
+ "▁onder": 6179,
+ "engl": 6180,
+ "ABLE": 6181,
+ "▁Mary": 6182,
+ "▁waren": 6183,
+ "lage": 6184,
+ "Dec": 6185,
+ "англ": 6186,
+ "encias": 6187,
+ "лей": 6188,
+ "▁Machine": 6189,
+ "▁Ан": 6190,
+ "uda": 6191,
+ "▁ś": 6192,
+ "▁XX": 6193,
+ "only": 6194,
+ "ление": 6195,
+ "▁también": 6196,
+ "nej": 6197,
+ "▁relative": 6198,
+ "▁hours": 6199,
+ "▁indeed": 6200,
+ "undo": 6201,
+ "ingu": 6202,
+ "area": 6203,
+ "▁Create": 6204,
+ "beit": 6205,
+ "▁removed": 6206,
+ "master": 6207,
+ "haus": 6208,
+ "▁Bern": 6209,
+ "▁speed": 6210,
+ "▁Bay": 6211,
+ "▁Att": 6212,
+ "▁None": 6213,
+ "application": 6214,
+ "üd": 6215,
+ "▁fit": 6216,
+ "▁Maria": 6217,
+ "▁nord": 6218,
+ "▁split": 6219,
+ "▁stru": 6220,
+ "▁official": 6221,
+ "▁execute": 6222,
+ "ouve": 6223,
+ "{{": 6224,
+ "▁Ap": 6225,
+ "▁ку": 6226,
+ "IL": 6227,
+ "▁^": 6228,
+ "dim": 6229,
+ "▁setup": 6230,
+ "ск": 6231,
+ "▁share": 6232,
+ "▁minutes": 6233,
+ "gle": 6234,
+ "oco": 6235,
+ "stell": 6236,
+ "▁Coun": 6237,
+ "▁temper": 6238,
+ "keit": 6239,
+ "ський": 6240,
+ "ao": 6241,
+ "▁Long": 6242,
+ "(&": 6243,
+ "кан": 6244,
+ "▁dens": 6245,
+ "But": 6246,
+ "XX": 6247,
+ "DATE": 6248,
+ "gan": 6249,
+ ".).": 6250,
+ "▁entry": 6251,
+ "install": 6252,
+ "▁зна": 6253,
+ "▁Som": 6254,
+ "Command": 6255,
+ "ßen": 6256,
+ "▁starting": 6257,
+ "▁sto": 6258,
+ "IG": 6259,
+ "▁minim": 6260,
+ "▁explicit": 6261,
+ "▁bytes": 6262,
+ "▁party": 6263,
+ "tober": 6264,
+ "▁Grand": 6265,
+ "▁Vor": 6266,
+ "▁leur": 6267,
+ "Document": 6268,
+ "erc": 6269,
+ "ensive": 6270,
+ "CP": 6271,
+ "env": 6272,
+ "▁arguments": 6273,
+ "▁Gran": 6274,
+ "arily": 6275,
+ "▁lin": 6276,
+ "tn": 6277,
+ "(-": 6278,
+ "geq": 6279,
+ "▁Famil": 6280,
+ "▁Бо": 6281,
+ "▁tour": 6282,
+ "▁nav": 6283,
+ "▁properly": 6284,
+ "▁Mrs": 6285,
+ "▁Mel": 6286,
+ "▁scale": 6287,
+ "astic": 6288,
+ "ds": 6289,
+ "▁Sir": 6290,
+ "▁Church": 6291,
+ "}^{\\": 6292,
+ "you": 6293,
+ "/.": 6294,
+ "So": 6295,
+ "▁brought": 6296,
+ "▁role": 6297,
+ "▁Sur": 6298,
+ "▁fond": 6299,
+ "▁ges": 6300,
+ "że": 6301,
+ "eten": 6302,
+ "▁était": 6303,
+ "SER": 6304,
+ "▁которы": 6305,
+ "▁equation": 6306,
+ "aspx": 6307,
+ "▁Afr": 6308,
+ "▁dit": 6309,
+ "empty": 6310,
+ "alement": 6311,
+ "wrap": 6312,
+ "▁Bet": 6313,
+ "▁collect": 6314,
+ "▁git": 6315,
+ "▁vie": 6316,
+ "▁..": 6317,
+ "рой": 6318,
+ "▁": 6319,
+ "▁educ": 6320,
+ "kl": 6321,
+ "ensis": 6322,
+ "▁OR": 6323,
+ "▁Hi": 6324,
+ "▁Cour": 6325,
+ "бы": 6326,
+ "cert": 6327,
+ "▁Ges": 6328,
+ "essor": 6329,
+ "Main": 6330,
+ "▁лю": 6331,
+ "cade": 6332,
+ "dot": 6333,
+ "augh": 6334,
+ "hib": 6335,
+ "▁automatically": 6336,
+ "▁spir": 6337,
+ "present": 6338,
+ "▁February": 6339,
+ "▁Elle": 6340,
+ "custom": 6341,
+ "▁proget": 6342,
+ "▁administr": 6343,
+ "AA": 6344,
+ "▁born": 6345,
+ "▁College": 6346,
+ "athol": 6347,
+ "`)": 6348,
+ "ierre": 6349,
+ "▁ran": 6350,
+ "▁profession": 6351,
+ "ogen": 6352,
+ "}_{\\": 6353,
+ "▁activity": 6354,
+ "▁scroll": 6355,
+ "▁prove": 6356,
+ "ibrary": 6357,
+ "eries": 6358,
+ "Read": 6359,
+ "year": 6360,
+ "▁lang": 6361,
+ "Det": 6362,
+ "▁knew": 6363,
+ "▁protected": 6364,
+ "▁wor": 6365,
+ "▁effic": 6366,
+ "▁rég": 6367,
+ "▁theory": 6368,
+ "▁published": 6369,
+ "real": 6370,
+ "▁Tour": 6371,
+ "▁durante": 6372,
+ "äs": 6373,
+ "▁positive": 6374,
+ "▁forward": 6375,
+ "▁Rel": 6376,
+ "{\"": 6377,
+ "park": 6378,
+ "▁Um": 6379,
+ "▁eer": 6380,
+ "enta": 6381,
+ "▁imag": 6382,
+ "ної": 6383,
+ "piel": 6384,
+ "▁jQuery": 6385,
+ "isme": 6386,
+ "chni": 6387,
+ "organ": 6388,
+ "▁args": 6389,
+ "oir": 6390,
+ "heim": 6391,
+ "rian": 6392,
+ "eless": 6393,
+ "uses": 6394,
+ "дин": 6395,
+ "ición": 6396,
+ "▁indust": 6397,
+ "▁wish": 6398,
+ "ány": 6399,
+ "oca": 6400,
+ "▁angular": 6401,
+ "ieved": 6402,
+ "▁occur": 6403,
+ "SELECT": 6404,
+ "onia": 6405,
+ "admin": 6406,
+ "▁Best": 6407,
+ "▁это": 6408,
+ "огра": 6409,
+ "▁loss": 6410,
+ "▁bal": 6411,
+ "▁Рос": 6412,
+ "▁career": 6413,
+ "▁пе": 6414,
+ "IX": 6415,
+ "▁fall": 6416,
+ "▁Rob": 6417,
+ "▁OP": 6418,
+ "ened": 6419,
+ "graphics": 6420,
+ "▁coming": 6421,
+ "Update": 6422,
+ "▁died": 6423,
+ "eden": 6424,
+ "▁abs": 6425,
+ "▁inner": 6426,
+ "▁trav": 6427,
+ "стоя": 6428,
+ "zą": 6429,
+ "ép": 6430,
+ "▁Group": 6431,
+ "▁cel": 6432,
+ "▁stuff": 6433,
+ "▁situation": 6434,
+ "▁${": 6435,
+ "acle": 6436,
+ "▁purpose": 6437,
+ "▁Fire": 6438,
+ "▁Oh": 6439,
+ "▁Second": 6440,
+ "▁upload": 6441,
+ "ostał": 6442,
+ "ющи": 6443,
+ "Auth": 6444,
+ "▁showing": 6445,
+ "▁completely": 6446,
+ "avel": 6447,
+ "bd": 6448,
+ "▁proced": 6449,
+ "▁Ö": 6450,
+ "control": 6451,
+ "▁thank": 6452,
+ "undred": 6453,
+ "▁tom": 6454,
+ "▁examples": 6455,
+ "▁remember": 6456,
+ "▁рабо": 6457,
+ "▁possib": 6458,
+ "▁detect": 6459,
+ "▁poor": 6460,
+ "▁Op": 6461,
+ "▁century": 6462,
+ "utter": 6463,
+ "▁login": 6464,
+ "unst": 6465,
+ "Output": 6466,
+ "▁otherwise": 6467,
+ "lan": 6468,
+ "тур": 6469,
+ "▁сов": 6470,
+ "▁groups": 6471,
+ "rip": 6472,
+ "▁shell": 6473,
+ "▁district": 6474,
+ "▁records": 6475,
+ "▁siè": 6476,
+ "fortun": 6477,
+ "enty": 6478,
+ "▁Tre": 6479,
+ "▁changing": 6480,
+ "след": 6481,
+ "aught": 6482,
+ "▁deep": 6483,
+ "subset": 6484,
+ "agy": 6485,
+ "endar": 6486,
+ "jax": 6487,
+ "OM": 6488,
+ "El": 6489,
+ "imate": 6490,
+ "ardo": 6491,
+ "▁plot": 6492,
+ "▁visit": 6493,
+ "▁bug": 6494,
+ "▁все": 6495,
+ "▁opened": 6496,
+ "▁repla": 6497,
+ "▁Henry": 6498,
+ "▁pp": 6499,
+ "bas": 6500,
+ "▁dark": 6501,
+ "▁Martin": 6502,
+ "▁resource": 6503,
+ "iling": 6504,
+ "▁watch": 6505,
+ "replace": 6506,
+ "▁release": 6507,
+ "Location": 6508,
+ "▁learning": 6509,
+ "menu": 6510,
+ "▁allows": 6511,
+ "ър": 6512,
+ "Length": 6513,
+ "▁whatever": 6514,
+ "▁pages": 6515,
+ "▁compiler": 6516,
+ "▁также": 6517,
+ "▁Pan": 6518,
+ "command": 6519,
+ "▁road": 6520,
+ "▁unless": 6521,
+ "`?": 6522,
+ "▁discover": 6523,
+ "▁он": 6524,
+ "}]": 6525,
+ "bour": 6526,
+ "▁Could": 6527,
+ "▁regex": 6528,
+ "▁ps": 6529,
+ "CD": 6530,
+ "из": 6531,
+ "▁wife": 6532,
+ "amenti": 6533,
+ "▁fair": 6534,
+ "▁DB": 6535,
+ "▁Cup": 6536,
+ "enen": 6537,
+ "ajax": 6538,
+ "othèque": 6539,
+ "▁seiner": 6540,
+ "icker": 6541,
+ "ám": 6542,
+ "exchange": 6543,
+ "oles": 6544,
+ "IF": 6545,
+ "▁До": 6546,
+ "ohn": 6547,
+ "▁grow": 6548,
+ "▁Thus": 6549,
+ "spec": 6550,
+ "▁hatte": 6551,
+ "#,": 6552,
+ "allel": 6553,
+ "▁rate": 6554,
+ "▁central": 6555,
+ "▁Van": 6556,
+ "iforn": 6557,
+ "Run": 6558,
+ "▁study": 6559,
+ "▁XML": 6560,
+ "▁Che": 6561,
+ "▁beaut": 6562,
+ "mid": 6563,
+ "▁advance": 6564,
+ "Ver": 6565,
+ "тя": 6566,
+ "▁hands": 6567,
+ "▁lay": 6568,
+ "▁š": 6569,
+ "▁OS": 6570,
+ "▁{}": 6571,
+ "Pre": 6572,
+ "▁Hall": 6573,
+ "imp": 6574,
+ "▁sun": 6575,
+ "▁steps": 6576,
+ "▁jud": 6577,
+ "qui": 6578,
+ "▁boot": 6579,
+ "▁%>": 6580,
+ "▁Ва": 6581,
+ "nost": 6582,
+ "▁nem": 6583,
+ "▁pen": 6584,
+ "Open": 6585,
+ "▁church": 6586,
+ "кон": 6587,
+ "▁average": 6588,
+ "▁comments": 6589,
+ "▁corresponding": 6590,
+ "levant": 6591,
+ "▁bed": 6592,
+ "▁meaning": 6593,
+ "Version": 6594,
+ "Link": 6595,
+ "bel": 6596,
+ "▁extract": 6597,
+ "ść": 6598,
+ "▁IV": 6599,
+ "▁Ir": 6600,
+ "▁computer": 6601,
+ "▁affect": 6602,
+ "▁Ста": 6603,
+ "AX": 6604,
+ "sort": 6605,
+ "▁species": 6606,
+ "▁Oper": 6607,
+ "▁hash": 6608,
+ "ches": 6609,
+ "▁Einzeln": 6610,
+ "▁keys": 6611,
+ "▁marzo": 6612,
+ "▁interpret": 6613,
+ "hood": 6614,
+ "▁coordin": 6615,
+ "ös": 6616,
+ "rage": 6617,
+ "etz": 6618,
+ "iza": 6619,
+ "дер": 6620,
+ "üt": 6621,
+ "^*": 6622,
+ "▁modify": 6623,
+ "▁termin": 6624,
+ "▁cred": 6625,
+ "zon": 6626,
+ "ную": 6627,
+ "▁mie": 6628,
+ "▁''": 6629,
+ "▁Mos": 6630,
+ "▁connected": 6631,
+ "NO": 6632,
+ "▁compile": 6633,
+ "▁\"\\": 6634,
+ "▁cat": 6635,
+ "fiddle": 6636,
+ "uta": 6637,
+ "Access": 6638,
+ "▁Sto": 6639,
+ "▁Bur": 6640,
+ "▁north": 6641,
+ "Gamma": 6642,
+ "▁alloc": 6643,
+ "Init": 6644,
+ "▁Link": 6645,
+ "ialize": 6646,
+ "Impl": 6647,
+ "oupe": 6648,
+ "ropri": 6649,
+ "▁Gold": 6650,
+ "▁solo": 6651,
+ "▁Dist": 6652,
+ ",-": 6653,
+ "nav": 6654,
+ "▁alert": 6655,
+ "esis": 6656,
+ "▁Os": 6657,
+ "///": 6658,
+ "▁feb": 6659,
+ "▁-->": 6660,
+ "foot": 6661,
+ "▁Fried": 6662,
+ "▁Einzelnach": 6663,
+ "▁rev": 6664,
+ "zeit": 6665,
+ "▁Stat": 6666,
+ "▁Seg": 6667,
+ "▁blo": 6668,
+ "wick": 6669,
+ "EL": 6670,
+ "caption": 6671,
+ "header": 6672,
+ "▁president": 6673,
+ "▁multip": 6674,
+ "▁Einzelnachweise": 6675,
+ "▁seine": 6676,
+ "?”": 6677,
+ "Function": 6678,
+ "▁Stand": 6679,
+ "▁Function": 6680,
+ "▁?>": 6681,
+ "▁Bill": 6682,
+ "▁spect": 6683,
+ "▁redirect": 6684,
+ "rupt": 6685,
+ "▁walk": 6686,
+ "вши": 6687,
+ "springframework": 6688,
+ "place": 6689,
+ "ého": 6690,
+ "Entity": 6691,
+ "▁Service": 6692,
+ "inte": 6693,
+ "▁training": 6694,
+ "▁(`": 6695,
+ "фор": 6696,
+ "▁кра": 6697,
+ "aur": 6698,
+ "▁fetch": 6699,
+ "▁†": 6700,
+ "▁même": 6701,
+ "▁('": 6702,
+ "atively": 6703,
+ "▁execut": 6704,
+ "äch": 6705,
+ "▁Catalogue": 6706,
+ "based": 6707,
+ "Attribute": 6708,
+ "▁spring": 6709,
+ "phone": 6710,
+ "тра": 6711,
+ "▁пи": 6712,
+ "тера": 6713,
+ "▁`\\": 6714,
+ "▁Od": 6715,
+ "One": 6716,
+ "send": 6717,
+ "bon": 6718,
+ "▁°": 6719,
+ "MO": 6720,
+ "▁asking": 6721,
+ "▁où": 6722,
+ "▁ingår": 6723,
+ "▁testing": 6724,
+ "▁фа": 6725,
+ "▁Book": 6726,
+ "imm": 6727,
+ "▁progress": 6728,
+ "bro": 6729,
+ "First": 6730,
+ "▁phot": 6731,
+ "▁ON": 6732,
+ "Template": 6733,
+ "developer": 6734,
+ "annot": 6735,
+ "▁>=": 6736,
+ "mission": 6737,
+ "▁któ": 6738,
+ "pc": 6739,
+ "bach": 6740,
+ "zent": 6741,
+ "ued": 6742,
+ "▁ones": 6743,
+ "ји": 6744,
+ "▁rout": 6745,
+ "▁Ки": 6746,
+ "Post": 6747,
+ "ції": 6748,
+ "▁Vir": 6749,
+ "nek": 6750,
+ "aging": 6751,
+ "▁ок": 6752,
+ "izont": 6753,
+ "▁agosto": 6754,
+ "▁choose": 6755,
+ "▁\r": 6756,
+ "▁systems": 6757,
+ "loss": 6758,
+ "iente": 6759,
+ "▁Cre": 6760,
+ "▁contra": 6761,
+ "ums": 6762,
+ "▁beginning": 6763,
+ "emy": 6764,
+ "istics": 6765,
+ "▁served": 6766,
+ "Down": 6767,
+ "options": 6768,
+ "▁Govern": 6769,
+ "▁BY": 6770,
+ "▁jest": 6771,
+ "té": 6772,
+ "▁continue": 6773,
+ "pers": 6774,
+ "▁easier": 6775,
+ "▁cos": 6776,
+ "esso": 6777,
+ ">>": 6778,
+ "Net": 6779,
+ "▁Bor": 6780,
+ "▁Cr": 6781,
+ "▁transfer": 6782,
+ "▁CSS": 6783,
+ "▁finns": 6784,
+ "▁хо": 6785,
+ "username": 6786,
+ "▁constru": 6787,
+ "▁pain": 6788,
+ "▁Tem": 6789,
+ "▁specified": 6790,
+ "▁brit": 6791,
+ "ские": 6792,
+ "irk": 6793,
+ "rapper": 6794,
+ "▁counter": 6795,
+ "▁[\"": 6796,
+ "oded": 6797,
+ "дан": 6798,
+ "property": 6799,
+ "hard": 6800,
+ "istrict": 6801,
+ ")/": 6802,
+ "▁Pour": 6803,
+ "▁Where": 6804,
+ "▁===": 6805,
+ "▁sowie": 6806,
+ "▁Про": 6807,
+ "▁dess": 6808,
+ "▁tras": 6809,
+ "▁уча": 6810,
+ "▁Over": 6811,
+ "note": 6812,
+ "▁America": 6813,
+ "cp": 6814,
+ "▁grande": 6815,
+ "Me": 6816,
+ ")-": 6817,
+ "Mode": 6818,
+ "▁passing": 6819,
+ "▁giving": 6820,
+ "Cl": 6821,
+ "}/": 6822,
+ "Menu": 6823,
+ "!!": 6824,
+ "angular": 6825,
+ "▁launch": 6826,
+ "varphi": 6827,
+ "▁Johann": 6828,
+ "▁foreach": 6829,
+ "ró": 6830,
+ "sequ": 6831,
+ "ifi": 6832,
+ "Am": 6833,
+ "arp": 6834,
+ "▁buffer": 6835,
+ "▁ni": 6836,
+ "▁mix": 6837,
+ "▁Museum": 6838,
+ "▁meant": 6839,
+ "asi": 6840,
+ "▁kan": 6841,
+ "прав": 6842,
+ "Comp": 6843,
+ "istoire": 6844,
+ "iful": 6845,
+ "jer": 6846,
+ "issions": 6847,
+ "Resource": 6848,
+ "▁воз": 6849,
+ "▁ST": 6850,
+ "▁solutions": 6851,
+ "▁belong": 6852,
+ "▁Associ": 6853,
+ "cf": 6854,
+ "▁Mär": 6855,
+ "▁grid": 6856,
+ "Mult": 6857,
+ "▁requires": 6858,
+ "kk": 6859,
+ "▁teach": 6860,
+ "emeinde": 6861,
+ "▁square": 6862,
+ "▁коман": 6863,
+ "▁Event": 6864,
+ "▁rules": 6865,
+ "▁bur": 6866,
+ "▁eing": 6867,
+ "▁Mai": 6868,
+ "▁nam": 6869,
+ "▁slä": 6870,
+ "hör": 6871,
+ "▁tip": 6872,
+ "▁Literatur": 6873,
+ "▁scope": 6874,
+ "overline": 6875,
+ "▁exit": 6876,
+ ")?": 6877,
+ "bet": 6878,
+ "▁vict": 6879,
+ "Off": 6880,
+ "▁approxim": 6881,
+ "▁Geb": 6882,
+ "ktop": 6883,
+ "heit": 6884,
+ "▁Ю": 6885,
+ "template": 6886,
+ "рон": 6887,
+ "▁uno": 6888,
+ "Serv": 6889,
+ "▁framework": 6890,
+ "operator": 6891,
+ "▁generally": 6892,
+ "▁hundred": 6893,
+ "▁divers": 6894,
+ "ovi": 6895,
+ "▁rés": 6896,
+ "abs": 6897,
+ "▁gal": 6898,
+ "çais": 6899,
+ "▁feet": 6900,
+ "▁virtual": 6901,
+ "czy": 6902,
+ "ску": 6903,
+ "./": 6904,
+ "hu": 6905,
+ "ancy": 6906,
+ "▁recommend": 6907,
+ "▁під": 6908,
+ "▁money": 6909,
+ "▁versions": 6910,
+ "▁helps": 6911,
+ "▁Hor": 6912,
+ "Items": 6913,
+ "look": 6914,
+ "connect": 6915,
+ "anges": 6916,
+ "ViewController": 6917,
+ "elijk": 6918,
+ "▁occup": 6919,
+ "▁editor": 6920,
+ "auto": 6921,
+ "ög": 6922,
+ "▁seconds": 6923,
+ "▁obvious": 6924,
+ "vm": 6925,
+ "akes": 6926,
+ "▁gegen": 6927,
+ "▁til": 6928,
+ "jection": 6929,
+ "лення": 6930,
+ "▁operations": 6931,
+ "▁East": 6932,
+ "ogy": 6933,
+ "▁Polit": 6934,
+ "uten": 6935,
+ "▁Joseph": 6936,
+ "\"`": 6937,
+ "▁Company": 6938,
+ "▁callback": 6939,
+ "▁sen": 6940,
+ "cción": 6941,
+ "▁associated": 6942,
+ "▁containing": 6943,
+ "▁practice": 6944,
+ "elijke": 6945,
+ "oke": 6946,
+ "éra": 6947,
+ "uns": 6948,
+ "anta": 6949,
+ "vey": 6950,
+ "zu": 6951,
+ "▁Bes": 6952,
+ "▁Flor": 6953,
+ "mem": 6954,
+ "ycz": 6955,
+ "▁architect": 6956,
+ "▁anni": 6957,
+ "▁contact": 6958,
+ "YPE": 6959,
+ "▁Cas": 6960,
+ "▁полу": 6961,
+ "ovo": 6962,
+ "▁bring": 6963,
+ "▁concept": 6964,
+ "▁js": 6965,
+ "▁Referencias": 6966,
+ "emble": 6967,
+ "▁н": 6968,
+ "▁supported": 6969,
+ "Big": 6970,
+ "▁Hans": 6971,
+ "erv": 6972,
+ "▁Maj": 6973,
+ "▁arriv": 6974,
+ "▁Have": 6975,
+ "▁probability": 6976,
+ "▁Pop": 6977,
+ "▁Pass": 6978,
+ "token": 6979,
+ "Provider": 6980,
+ "▁Ra": 6981,
+ "Reader": 6982,
+ "ooth": 6983,
+ "lap": 6984,
+ "▁assist": 6985,
+ "adow": 6986,
+ "▁tests": 6987,
+ "сси": 6988,
+ "▁king": 6989,
+ "langle": 6990,
+ "▁Sum": 6991,
+ "OIN": 6992,
+ "▁security": 6993,
+ "nis": 6994,
+ "../": 6995,
+ "▁basic": 6996,
+ "unity": 6997,
+ "`:": 6998,
+ "▁кото": 6999,
+ "kow": 7000,
+ "▁Bibliothèque": 7001,
+ "asion": 7002,
+ "alo": 7003,
+ "ifest": 7004,
+ "▁novembre": 7005,
+ "▁peu": 7006,
+ "▁Ж": 7007,
+ "enschaft": 7008,
+ "clus": 7009,
+ "ју": 7010,
+ "Height": 7011,
+ "ún": 7012,
+ "▁tur": 7013,
+ "▁ideas": 7014,
+ "▁ces": 7015,
+ "frak": 7016,
+ "▁premier": 7017,
+ "itation": 7018,
+ "▁sé": 7019,
+ "HTML": 7020,
+ "▁Royal": 7021,
+ "ської": 7022,
+ "▁byte": 7023,
+ "PS": 7024,
+ "▁segu": 7025,
+ "inen": 7026,
+ "▁Great": 7027,
+ "▁Ку": 7028,
+ "▁external": 7029,
+ "Title": 7030,
+ "Top": 7031,
+ "Process": 7032,
+ "ität": 7033,
+ "▁`/": 7034,
+ "▁secret": 7035,
+ "pository": 7036,
+ "▁potential": 7037,
+ "▁Bud": 7038,
+ "names": 7039,
+ "asons": 7040,
+ "stackexchange": 7041,
+ "background": 7042,
+ "пер": 7043,
+ "сов": 7044,
+ "after": 7045,
+ "▁pero": 7046,
+ "▁software": 7047,
+ "▁sed": 7048,
+ "▁arrays": 7049,
+ "tmp": 7050,
+ "▁asp": 7051,
+ "scale": 7052,
+ "▁Lat": 7053,
+ "anal": 7054,
+ "▁gem": 7055,
+ "PU": 7056,
+ "▁Altri": 7057,
+ "That": 7058,
+ "▁Ни": 7059,
+ "ifact": 7060,
+ "Address": 7061,
+ "▁south": 7062,
+ "▁formula": 7063,
+ "▁Colleg": 7064,
+ "▁ін": 7065,
+ "ktion": 7066,
+ "▁sac": 7067,
+ "SH": 7068,
+ "ajo": 7069,
+ "etc": 7070,
+ "vc": 7071,
+ "`](": 7072,
+ "▁Dur": 7073,
+ "▁Ме": 7074,
+ "▁Smith": 7075,
+ "items": 7076,
+ "CK": 7077,
+ "elo": 7078,
+ "▁plugin": 7079,
+ "▁serie": 7080,
+ "ienne": 7081,
+ "▁или": 7082,
+ "Mar": 7083,
+ "▁Image": 7084,
+ "got": 7085,
+ "andas": 7086,
+ "▁matches": 7087,
+ "▁worth": 7088,
+ "▁Deb": 7089,
+ "▁cache": 7090,
+ "▁felt": 7091,
+ "ersch": 7092,
+ "izes": 7093,
+ "Oper": 7094,
+ "▁Jahre": 7095,
+ "▁commune": 7096,
+ "thread": 7097,
+ "▁ny": 7098,
+ "dec": 7099,
+ "ouw": 7100,
+ "▁surface": 7101,
+ "▁Por": 7102,
+ "▁Street": 7103,
+ "при": 7104,
+ "▁candid": 7105,
+ "▁Return": 7106,
+ "▁Kom": 7107,
+ "gru": 7108,
+ "▁ти": 7109,
+ "[\\": 7110,
+ "▁depends": 7111,
+ "▁influ": 7112,
+ "▁towards": 7113,
+ "ained": 7114,
+ "▁rank": 7115,
+ "▁Januar": 7116,
+ "▁components": 7117,
+ "gest": 7118,
+ "getElementById": 7119,
+ "▁checked": 7120,
+ "airs": 7121,
+ "join": 7122,
+ "▁dead": 7123,
+ "▁hit": 7124,
+ "ény": 7125,
+ "▁equivalent": 7126,
+ "▁Пре": 7127,
+ "▁appropri": 7128,
+ "Pass": 7129,
+ "▁primer": 7130,
+ "englisch": 7131,
+ "▁appar": 7132,
+ "▁During": 7133,
+ "▁knowledge": 7134,
+ "▁trigger": 7135,
+ "▁core": 7136,
+ "▁Ol": 7137,
+ "▁Produ": 7138,
+ "▁Fern": 7139,
+ "▁нача": 7140,
+ "Te": 7141,
+ "▁Mot": 7142,
+ "erve": 7143,
+ "тво": 7144,
+ "▁mid": 7145,
+ "▁finally": 7146,
+ "aires": 7147,
+ "▁especially": 7148,
+ "▁tut": 7149,
+ "▁receive": 7150,
+ "adre": 7151,
+ "▁neigh": 7152,
+ "ktet": 7153,
+ "ilde": 7154,
+ "▁radio": 7155,
+ "▁driver": 7156,
+ "лись": 7157,
+ "endencies": 7158,
+ "▁IE": 7159,
+ "▁saved": 7160,
+ "ffect": 7161,
+ "▁Wayback": 7162,
+ "iat": 7163,
+ "▁padding": 7164,
+ "window": 7165,
+ "тиче": 7166,
+ "▁mur": 7167,
+ "actor": 7168,
+ "▁Han": 7169,
+ "ональ": 7170,
+ "▁gar": 7171,
+ "▁familjen": 7172,
+ "ós": 7173,
+ "▁nationale": 7174,
+ "▁pré": 7175,
+ "ded": 7176,
+ "onal": 7177,
+ "▁President": 7178,
+ "▁\\,": 7179,
+ "▁placed": 7180,
+ "erni": 7181,
+ "▁signal": 7182,
+ "nab": 7183,
+ "hm": 7184,
+ "Mon": 7185,
+ "▁vs": 7186,
+ "SC": 7187,
+ "▁progetti": 7188,
+ "▁Ü": 7189,
+ "▁forms": 7190,
+ "▁messages": 7191,
+ "inf": 7192,
+ "users": 7193,
+ "GET": 7194,
+ "▁dels": 7195,
+ "Collection": 7196,
+ "▁Good": 7197,
+ "▁Maybe": 7198,
+ "▁compr": 7199,
+ "▁larger": 7200,
+ "gres": 7201,
+ "aper": 7202,
+ "▁При": 7203,
+ "undes": 7204,
+ "▁sea": 7205,
+ "▁Spring": 7206,
+ "ulo": 7207,
+ "▁mechan": 7208,
+ "▁sans": 7209,
+ "GB": 7210,
+ "Valid": 7211,
+ "▁communic": 7212,
+ "▁pra": 7213,
+ "vier": 7214,
+ "▁Се": 7215,
+ "▁ain": 7216,
+ "тура": 7217,
+ "kom": 7218,
+ "skiego": 7219,
+ "ково": 7220,
+ "adata": 7221,
+ "▁Ре": 7222,
+ "▁boolean": 7223,
+ "sets": 7224,
+ "▁effort": 7225,
+ ".[": 7226,
+ "▁został": 7227,
+ "PA": 7228,
+ "▁Vict": 7229,
+ "SD": 7230,
+ "ował": 7231,
+ "▁emb": 7232,
+ "▁prima": 7233,
+ "▁hour": 7234,
+ "subsection": 7235,
+ "▁Fort": 7236,
+ "mathfrak": 7237,
+ "igin": 7238,
+ "GL": 7239,
+ ")+": 7240,
+ "fi": 7241,
+ "▁anci": 7242,
+ "▁pan": 7243,
+ "\\)": 7244,
+ "▁lug": 7245,
+ "▁deploy": 7246,
+ "domain": 7247,
+ "▁slight": 7248,
+ "JSON": 7249,
+ "▁morning": 7250,
+ "▁hi": 7251,
+ "▁compare": 7252,
+ "ije": 7253,
+ "▁blue": 7254,
+ "▁Ac": 7255,
+ "▁middle": 7256,
+ "anden": 7257,
+ "▁shared": 7258,
+ "▁Camp": 7259,
+ "▁Á": 7260,
+ "ounded": 7261,
+ "uw": 7262,
+ "ierung": 7263,
+ "Stack": 7264,
+ "▁eines": 7265,
+ "▁Da": 7266,
+ "lij": 7267,
+ "enti": 7268,
+ "▁й": 7269,
+ "Util": 7270,
+ "▁experience": 7271,
+ "▁await": 7272,
+ "uls": 7273,
+ "▁requests": 7274,
+ "▁impos": 7275,
+ "▁constraint": 7276,
+ "Change": 7277,
+ "emph": 7278,
+ "бер": 7279,
+ "▁Another": 7280,
+ "Custom": 7281,
+ "▁significant": 7282,
+ "cr": 7283,
+ "▁million": 7284,
+ "reek": 7285,
+ "▁dalla": 7286,
+ "▁Germ": 7287,
+ "otal": 7288,
+ "ateur": 7289,
+ "btn": 7290,
+ "▁thinking": 7291,
+ "▁interval": 7292,
+ "onne": 7293,
+ "▁liv": 7294,
+ "():": 7295,
+ "▁Ве": 7296,
+ "oe": 7297,
+ "▁Ev": 7298,
+ "meta": 7299,
+ "▁broad": 7300,
+ "Rem": 7301,
+ "apply": 7302,
+ "▁couple": 7303,
+ "▁techni": 7304,
+ "idades": 7305,
+ "▁goal": 7306,
+ "▁CD": 7307,
+ "hab": 7308,
+ "▁explan": 7309,
+ "anner": 7310,
+ "▁Because": 7311,
+ "blog": 7312,
+ "includegraphics": 7313,
+ "▁voice": 7314,
+ "▁Map": 7315,
+ "vention": 7316,
+ "Session": 7317,
+ "▁Liens": 7318,
+ "▁sor": 7319,
+ "category": 7320,
+ "ashington": 7321,
+ "▁März": 7322,
+ "pop": 7323,
+ "illet": 7324,
+ "▁zwei": 7325,
+ "▁Lie": 7326,
+ "Null": 7327,
+ "address": 7328,
+ "▁factor": 7329,
+ "▁ligne": 7330,
+ "▁HTTP": 7331,
+ "▁suf": 7332,
+ "▁personal": 7333,
+ "cip": 7334,
+ "▁Dar": 7335,
+ "▁adm": 7336,
+ "кой": 7337,
+ "▁Ext": 7338,
+ "▁god": 7339,
+ "aa": 7340,
+ "Right": 7341,
+ "été": 7342,
+ "▁dynamic": 7343,
+ "▁maintain": 7344,
+ "tor": 7345,
+ "########": 7346,
+ "▁Fra": 7347,
+ "▁choice": 7348,
+ "▁сто": 7349,
+ "СР": 7350,
+ "▁Feder": 7351,
+ "ston": 7352,
+ "▁flag": 7353,
+ "kit": 7354,
+ "Module": 7355,
+ "▁спо": 7356,
+ "▁Stra": 7357,
+ "icks": 7358,
+ "▁haven": 7359,
+ "▁Mass": 7360,
+ "▁Emp": 7361,
+ "▁Pi": 7362,
+ "▁Pen": 7363,
+ "Rect": 7364,
+ "▁Kr": 7365,
+ "itat": 7366,
+ "eler": 7367,
+ "ября": 7368,
+ "itet": 7369,
+ "▁Start": 7370,
+ "▁produced": 7371,
+ "▁пол": 7372,
+ "(_": 7373,
+ "▁delet": 7374,
+ "▁hot": 7375,
+ "▁Geschichte": 7376,
+ "~~": 7377,
+ "▁months": 7378,
+ "▁tod": 7379,
+ "▁ни": 7380,
+ "ús": 7381,
+ "temp": 7382,
+ "▁Dez": 7383,
+ "ypes": 7384,
+ "▁cui": 7385,
+ "ommun": 7386,
+ "actions": 7387,
+ "▁eigen": 7388,
+ "▁immediately": 7389,
+ "PL": 7390,
+ "▁Го": 7391,
+ "▁Bal": 7392,
+ "ље": 7393,
+ "ului": 7394,
+ "▁online": 7395,
+ "▁años": 7396,
+ "▁namespace": 7397,
+ "▁mond": 7398,
+ "▁Base": 7399,
+ "▁Canada": 7400,
+ "etzt": 7401,
+ "}-": 7402,
+ "▁defin": 7403,
+ "▁doubt": 7404,
+ "▁investig": 7405,
+ "views": 7406,
+ "▁Line": 7407,
+ "▁stage": 7408,
+ "ettings": 7409,
+ "ubre": 7410,
+ "float": 7411,
+ "▁Play": 7412,
+ "▁Las": 7413,
+ "ptr": 7414,
+ "▁becomes": 7415,
+ "estamp": 7416,
+ "▁independent": 7417,
+ "▁analysis": 7418,
+ "▁Look": 7419,
+ "lain": 7420,
+ "▁рас": 7421,
+ "Reference": 7422,
+ "▁sorry": 7423,
+ "▁supposed": 7424,
+ "ût": 7425,
+ "▁degree": 7426,
+ "utz": 7427,
+ "MM": 7428,
+ "▁desired": 7429,
+ "ły": 7430,
+ "▁len": 7431,
+ "▁alone": 7432,
+ "signed": 7433,
+ "▁Sta": 7434,
+ "Person": 7435,
+ "▁applied": 7436,
+ "▁Back": 7437,
+ "▁mars": 7438,
+ "Part": 7439,
+ "▁Did": 7440,
+ "▁externes": 7441,
+ "▁np": 7442,
+ "ongo": 7443,
+ "▁esta": 7444,
+ "Block": 7445,
+ "▁pou": 7446,
+ "adores": 7447,
+ "▁Studio": 7448,
+ ".$": 7449,
+ "▁reached": 7450,
+ "bot": 7451,
+ "▁Juni": 7452,
+ "tons": 7453,
+ "itel": 7454,
+ "▁Gar": 7455,
+ "▁articles": 7456,
+ "▁District": 7457,
+ "▁trouble": 7458,
+ "lide": 7459,
+ "▁Found": 7460,
+ "ád": 7461,
+ "▁equip": 7462,
+ "▁internal": 7463,
+ "'],": 7464,
+ "▁async": 7465,
+ "UB": 7466,
+ "gel": 7467,
+ "▁ai": 7468,
+ "ensure": 7469,
+ "▁appeared": 7470,
+ "▁$_": 7471,
+ "▁maximum": 7472,
+ "▁Си": 7473,
+ "рь": 7474,
+ "▁announ": 7475,
+ "лась": 7476,
+ "▁cm": 7477,
+ "ган": 7478,
+ "aupt": 7479,
+ "▁latter": 7480,
+ "▁platform": 7481,
+ "▁dra": 7482,
+ "▁capital": 7483,
+ "▁solved": 7484,
+ "riz": 7485,
+ "edic": 7486,
+ "▁Mur": 7487,
+ "▁Top": 7488,
+ "тся": 7489,
+ "Panel": 7490,
+ "rule": 7491,
+ "etic": 7492,
+ "▁Ren": 7493,
+ "▁Wikimedia": 7494,
+ "▁TO": 7495,
+ "second": 7496,
+ "isl": 7497,
+ "▁hy": 7498,
+ "▁niet": 7499,
+ "▁loaded": 7500,
+ "dig": 7501,
+ "▁mayo": 7502,
+ "[:": 7503,
+ "Acc": 7504,
+ "▁bek": 7505,
+ "нию": 7506,
+ "login": 7507,
+ "tx": 7508,
+ "▁Fur": 7509,
+ "▁Santa": 7510,
+ "azz": 7511,
+ "▁conduct": 7512,
+ "▁India": 7513,
+ "Order": 7514,
+ "irth": 7515,
+ "tw": 7516,
+ "}+": 7517,
+ "▁wieder": 7518,
+ "▁Edu": 7519,
+ "AV": 7520,
+ "▁```": 7521,
+ "▁manually": 7522,
+ "▁Read": 7523,
+ "fortunately": 7524,
+ "▁Run": 7525,
+ "▁Award": 7526,
+ "▁Foot": 7527,
+ "*)": 7528,
+ "params": 7529,
+ "пі": 7530,
+ "▁native": 7531,
+ "rift": 7532,
+ "▁ä": 7533,
+ "ATH": 7534,
+ "▁yourself": 7535,
+ "▁prior": 7536,
+ "▁cit": 7537,
+ "äh": 7538,
+ "▁treat": 7539,
+ "▁meas": 7540,
+ "ributed": 7541,
+ "▁clar": 7542,
+ "card": 7543,
+ "ROR": 7544,
+ "illes": 7545,
+ "▁layer": 7546,
+ "auer": 7547,
+ "▁rat": 7548,
+ "bernate": 7549,
+ "▁stato": 7550,
+ "▁China": 7551,
+ "▁$('#": 7552,
+ "▁naar": 7553,
+ "zip": 7554,
+ "▁${\\": 7555,
+ "▁appreciated": 7556,
+ "▁име": 7557,
+ "ży": 7558,
+ "▁przez": 7559,
+ "▁Indian": 7560,
+ "▁Tod": 7561,
+ "▁Source": 7562,
+ "▁други": 7563,
+ "internal": 7564,
+ "ionale": 7565,
+ "Product": 7566,
+ "▁Men": 7567,
+ "▁upper": 7568,
+ "▁Every": 7569,
+ "},\\": 7570,
+ "▁printf": 7571,
+ "▁continued": 7572,
+ "▁nodes": 7573,
+ "лки": 7574,
+ "▁nice": 7575,
+ "modules": 7576,
+ "eign": 7577,
+ "▁Mex": 7578,
+ "▁According": 7579,
+ "▁undefined": 7580,
+ "▁binary": 7581,
+ "cut": 7582,
+ "Current": 7583,
+ "edy": 7584,
+ "}}{": 7585,
+ "bles": 7586,
+ "▁вой": 7587,
+ "scri": 7588,
+ "eqn": 7589,
+ "Changed": 7590,
+ "▁köz": 7591,
+ "▁remote": 7592,
+ "вля": 7593,
+ "▁quel": 7594,
+ "▁align": 7595,
+ "▁пар": 7596,
+ "SV": 7597,
+ "yer": 7598,
+ "▁Californ": 7599,
+ "▁places": 7600,
+ "▁primary": 7601,
+ "▁conv": 7602,
+ "▁Juli": 7603,
+ "▁visual": 7604,
+ "▁Select": 7605,
+ "atory": 7606,
+ "=(": 7607,
+ "iser": 7608,
+ "▁intent": 7609,
+ "sur": 7610,
+ "container": 7611,
+ "iced": 7612,
+ "▁board": 7613,
+ "astr": 7614,
+ "omial": 7615,
+ "вет": 7616,
+ "зва": 7617,
+ "▁cru": 7618,
+ "▁Oktober": 7619,
+ "save": 7620,
+ "▁greater": 7621,
+ "▁inn": 7622,
+ "▁picture": 7623,
+ "▁То": 7624,
+ "▁obtained": 7625,
+ "Wikimedia": 7626,
+ "úblic": 7627,
+ "▁lors": 7628,
+ "▁mont": 7629,
+ "obre": 7630,
+ "▁civil": 7631,
+ "▁construction": 7632,
+ "▁Welt": 7633,
+ "▁Under": 7634,
+ "undert": 7635,
+ "▁edge": 7636,
+ "▁Liste": 7637,
+ "csv": 7638,
+ "▁experiment": 7639,
+ "localhost": 7640,
+ "▁Edit": 7641,
+ "greg": 7642,
+ "ová": 7643,
+ "ља": 7644,
+ "msg": 7645,
+ "▁Green": 7646,
+ "Dialog": 7647,
+ "Ident": 7648,
+ "▁JS": 7649,
+ "^{(": 7650,
+ "▁släktet": 7651,
+ "____": 7652,
+ "Project": 7653,
+ "▁beskre": 7654,
+ "▁ber": 7655,
+ "▁wouldn": 7656,
+ "▁react": 7657,
+ "Hel": 7658,
+ "zw": 7659,
+ "▁Washington": 7660,
+ "orie": 7661,
+ "task": 7662,
+ "▁category": 7663,
+ "▁artist": 7664,
+ "anno": 7665,
+ "▁ook": 7666,
+ "ammen": 7667,
+ "▁Minister": 7668,
+ "▁declar": 7669,
+ "▁Key": 7670,
+ ",.": 7671,
+ "▁mach": 7672,
+ "▁ww": 7673,
+ "isen": 7674,
+ "Fran": 7675,
+ "▁Росси": 7676,
+ "бор": 7677,
+ "три": 7678,
+ "▁rock": 7679,
+ "quis": 7680,
+ "mos": 7681,
+ "пера": 7682,
+ "▁esterni": 7683,
+ "▁gold": 7684,
+ "Windows": 7685,
+ "%%": 7686,
+ "▁partial": 7687,
+ "▁weight": 7688,
+ "▁spr": 7689,
+ "}).": 7690,
+ "▁français": 7691,
+ "fun": 7692,
+ "▁thous": 7693,
+ "holder": 7694,
+ "▁gone": 7695,
+ "▁Č": 7696,
+ "▁rend": 7697,
+ "DA": 7698,
+ "▁answered": 7699,
+ "▁False": 7700,
+ "Buffer": 7701,
+ "▁daugh": 7702,
+ ".--": 7703,
+ "▁Show": 7704,
+ "▁rect": 7705,
+ "▁Kre": 7706,
+ "dr": 7707,
+ "osoph": 7708,
+ "▁yield": 7709,
+ "urity": 7710,
+ "toString": 7711,
+ "aval": 7712,
+ "Pol": 7713,
+ "▁lock": 7714,
+ "imation": 7715,
+ "antic": 7716,
+ "Local": 7717,
+ "▁beskrevs": 7718,
+ "ités": 7719,
+ "grid": 7720,
+ "ут": 7721,
+ "▁_{": 7722,
+ "сі": 7723,
+ "FILE": 7724,
+ "▁км": 7725,
+ "▁speak": 7726,
+ "summary": 7727,
+ "prop": 7728,
+ "javascript": 7729,
+ "zk": 7730,
+ "izontal": 7731,
+ "▁trois": 7732,
+ "▁Rod": 7733,
+ "prise": 7734,
+ "рово": 7735,
+ "▁odd": 7736,
+ "▁gest": 7737,
+ "▁produce": 7738,
+ "▁waar": 7739,
+ "▁Av": 7740,
+ "ribu": 7741,
+ "вання": 7742,
+ "▁finished": 7743,
+ "▁adapt": 7744,
+ "▁Sar": 7745,
+ "textit": 7746,
+ "▁Ce": 7747,
+ "▁Fa": 7748,
+ "osen": 7749,
+ "▁deriv": 7750,
+ "▁ship": 7751,
+ "▁opin": 7752,
+ "▁Even": 7753,
+ "gesch": 7754,
+ "▁suppose": 7755,
+ "▁Fer": 7756,
+ "ское": 7757,
+ "▁worden": 7758,
+ "sey": 7759,
+ "hline": 7760,
+ "▁Union": 7761,
+ "▁/**": 7762,
+ "▁vez": 7763,
+ "▁Collegamenti": 7764,
+ "▁Society": 7765,
+ "▁econom": 7766,
+ "ší": 7767,
+ "oi": 7768,
+ "▁orient": 7769,
+ "▁Teil": 7770,
+ "rent": 7771,
+ "лекс": 7772,
+ "▁solid": 7773,
+ "▁cart": 7774,
+ "****************": 7775,
+ "▁cab": 7776,
+ "▁Message": 7777,
+ "dots": 7778,
+ "▁ég": 7779,
+ "▁twe": 7780,
+ "aga": 7781,
+ "▁naz": 7782,
+ "▁Microsoft": 7783,
+ "▁underarter": 7784,
+ "ppen": 7785,
+ "▁recent": 7786,
+ "▁net": 7787,
+ "▁resources": 7788,
+ "Ste": 7789,
+ ".\\": 7790,
+ "▁SO": 7791,
+ "лом": 7792,
+ "▁cele": 7793,
+ "▁lic": 7794,
+ "▁benef": 7795,
+ "ldots": 7796,
+ "▁serial": 7797,
+ "Integer": 7798,
+ "cles": 7799,
+ "▁miles": 7800,
+ "▁Ale": 7801,
+ "▁entered": 7802,
+ "▁Two": 7803,
+ "wie": 7804,
+ "▁includes": 7805,
+ "▁Each": 7806,
+ "elling": 7807,
+ "quer": 7808,
+ "▁Dom": 7809,
+ "pf": 7810,
+ "WS": 7811,
+ "▁straight": 7812,
+ "▁Stan": 7813,
+ "▁nos": 7814,
+ "ícul": 7815,
+ "atro": 7816,
+ "▁Center": 7817,
+ "FT": 7818,
+ "▁Inga": 7819,
+ "ilo": 7820,
+ "▁www": 7821,
+ "jsfiddle": 7822,
+ "nic": 7823,
+ "▁European": 7824,
+ "▁commer": 7825,
+ "▁girl": 7826,
+ "total": 7827,
+ "▁Star": 7828,
+ "▁suggested": 7829,
+ "pal": 7830,
+ "▁zwischen": 7831,
+ "писа": 7832,
+ "IM": 7833,
+ "▁handler": 7834,
+ "▁Program": 7835,
+ "xsl": 7836,
+ "ály": 7837,
+ "BU": 7838,
+ ",--": 7839,
+ "▁vid": 7840,
+ "▁established": 7841,
+ "▁Spiel": 7842,
+ "ometry": 7843,
+ "unes": 7844,
+ "▁sit": 7845,
+ "▁inher": 7846,
+ "▁puis": 7847,
+ "▁être": 7848,
+ "▁Most": 7849,
+ "Header": 7850,
+ "insert": 7851,
+ "▁sist": 7852,
+ "▁favor": 7853,
+ "dest": 7854,
+ "▁entity": 7855,
+ "Cal": 7856,
+ "▁Therefore": 7857,
+ "DD": 7858,
+ ";;": 7859,
+ "▁Dezember": 7860,
+ "▁Rh": 7861,
+ "iments": 7862,
+ "▁returning": 7863,
+ "sto": 7864,
+ "▁Value": 7865,
+ "▁liber": 7866,
+ "▁Result": 7867,
+ "▁bind": 7868,
+ "voir": 7869,
+ "▁Tim": 7870,
+ "▁Movie": 7871,
+ "weg": 7872,
+ "ket": 7873,
+ "▁исто": 7874,
+ "▁friends": 7875,
+ "▁fn": 7876,
+ "▁él": 7877,
+ "▁&=": 7878,
+ "arden": 7879,
+ "fficial": 7880,
+ "▁community": 7881,
+ "▁api": 7882,
+ "Args": 7883,
+ "ieren": 7884,
+ "▁dann": 7885,
+ "omorph": 7886,
+ "adr": 7887,
+ "loop": 7888,
+ "uman": 7889,
+ "▁vous": 7890,
+ "bst": 7891,
+ "submit": 7892,
+ "\\|": 7893,
+ "тин": 7894,
+ "Container": 7895,
+ "asket": 7896,
+ "?)": 7897,
+ "Sec": 7898,
+ "▁drive": 7899,
+ "Ass": 7900,
+ "▁swe": 7901,
+ "▁amer": 7902,
+ "▁mine": 7903,
+ "▁Ham": 7904,
+ "▁avait": 7905,
+ "▁Hon": 7906,
+ "▁après": 7907,
+ "▁Mann": 7908,
+ "ська": 7909,
+ "▁increase": 7910,
+ "▁ty": 7911,
+ "sky": 7912,
+ "▁accur": 7913,
+ "article": 7914,
+ "weight": 7915,
+ "▁sex": 7916,
+ "▁listade": 7917,
+ "/**": 7918,
+ "▁está": 7919,
+ "}}$": 7920,
+ "argo": 7921,
+ "define": 7922,
+ "▁состав": 7923,
+ "session": 7924,
+ "ads": 7925,
+ "стви": 7926,
+ "▁Law": 7927,
+ "▁dialog": 7928,
+ "▁duplicate": 7929,
+ "▁ép": 7930,
+ "▁voc": 7931,
+ "fri": 7932,
+ "▁green": 7933,
+ "▁hidden": 7934,
+ "▁Island": 7935,
+ "▁diag": 7936,
+ "owej": 7937,
+ "mysql": 7938,
+ "teil": 7939,
+ "rä": 7940,
+ "ikan": 7941,
+ "▁José": 7942,
+ "aled": 7943,
+ "Runtime": 7944,
+ "▁train": 7945,
+ "▁Division": 7946,
+ "ниц": 7947,
+ "▁Span": 7948,
+ "нима": 7949,
+ ")=\\": 7950,
+ "тан": 7951,
+ "▁stay": 7952,
+ "▁foo": 7953,
+ "▁accom": 7954,
+ "▁hers": 7955,
+ "▁нау": 7956,
+ "▁Mün": 7957,
+ "ideos": 7958,
+ "static": 7959,
+ "▁ready": 7960,
+ "]`": 7961,
+ "▁visible": 7962,
+ "▁Hope": 7963,
+ "ulated": 7964,
+ "▁Cult": 7965,
+ "стро": 7966,
+ "Co": 7967,
+ "▁smaller": 7968,
+ "atura": 7969,
+ "▁perfectly": 7970,
+ "req": 7971,
+ "▁proposed": 7972,
+ "▁degli": 7973,
+ "Search": 7974,
+ "▁ich": 7975,
+ "Max": 7976,
+ "▁volume": 7977,
+ "execute": 7978,
+ "gre": 7979,
+ "▁sport": 7980,
+ "udad": 7981,
+ "PT": 7982,
+ "▁Records": 7983,
+ "▁cook": 7984,
+ "▁expand": 7985,
+ "бі": 7986,
+ "▁altri": 7987,
+ "ppet": 7988,
+ "arse": 7989,
+ "▁wet": 7990,
+ "▁Bob": 7991,
+ "▁FC": 7992,
+ "▁Association": 7993,
+ "uje": 7994,
+ "▁fel": 7995,
+ "▁слу": 7996,
+ "▁Big": 7997,
+ "/\\": 7998,
+ "Ge": 7999,
+ "while": 8000,
+ "{(": 8001,
+ "▁sufficient": 8002,
+ "Position": 8003,
+ "▁understanding": 8004,
+ "▁nue": 8005,
+ "▁raz": 8006,
+ "▁ye": 8007,
+ "hem": 8008,
+ "Num": 8009,
+ "▁Project": 8010,
+ "▁Its": 8011,
+ "▁hasta": 8012,
+ "enso": 8013,
+ "▁wire": 8014,
+ "Ret": 8015,
+ "uj": 8016,
+ "proof": 8017,
+ "▁relevant": 8018,
+ "▁partir": 8019,
+ "▁ago": 8020,
+ "ificate": 8021,
+ "▁domin": 8022,
+ "▁boy": 8023,
+ "▁plant": 8024,
+ "▁encoding": 8025,
+ "▁throws": 8026,
+ "▁Rock": 8027,
+ "zone": 8028,
+ "gang": 8029,
+ "widget": 8030,
+ "▁interesting": 8031,
+ "DER": 8032,
+ "▁demon": 8033,
+ "▁office": 8034,
+ "amt": 8035,
+ "äter": 8036,
+ "▁White": 8037,
+ "▁versch": 8038,
+ "▁dieser": 8039,
+ "▁Mount": 8040,
+ "▁students": 8041,
+ "▁Pub": 8042,
+ "▁Де": 8043,
+ "ija": 8044,
+ "▁Cy": 8045,
+ "▁California": 8046,
+ "▁abril": 8047,
+ "äll": 8048,
+ "▁чем": 8049,
+ "TV": 8050,
+ "▁més": 8051,
+ "▁declared": 8052,
+ "▁ю": 8053,
+ "ől": 8054,
+ "appa": 8055,
+ "▁Бе": 8056,
+ "echo": 8057,
+ "numer": 8058,
+ "▁posted": 8059,
+ "▁вер": 8060,
+ "▁године": 8061,
+ "▁weak": 8062,
+ "▁Republic": 8063,
+ "▁champion": 8064,
+ "ensuremath": 8065,
+ "your": 8066,
+ "▁Ober": 8067,
+ "▁Central": 8068,
+ "isa": 8069,
+ "анд": 8070,
+ "yy": 8071,
+ "▁fully": 8072,
+ "▁SD": 8073,
+ "▁Linux": 8074,
+ "▁Scott": 8075,
+ "partment": 8076,
+ "kon": 8077,
+ "▁contract": 8078,
+ "▁OF": 8079,
+ "▁ale": 8080,
+ "▁Ann": 8081,
+ "▁над": 8082,
+ "lah": 8083,
+ "▁Next": 8084,
+ "oren": 8085,
+ "▁disk": 8086,
+ "▁eg": 8087,
+ "atu": 8088,
+ "логи": 8089,
+ "▁games": 8090,
+ "Left": 8091,
+ "▁lu": 8092,
+ "▁finite": 8093,
+ "▁ки": 8094,
+ "▁crash": 8095,
+ "pher": 8096,
+ "exe": 8097,
+ "ATION": 8098,
+ "▁brother": 8099,
+ "Eng": 8100,
+ "tat": 8101,
+ "▁Integer": 8102,
+ "ному": 8103,
+ "▁colon": 8104,
+ "iqu": 8105,
+ ")).": 8106,
+ "ivi": 8107,
+ "▁Method": 8108,
+ "arten": 8109,
+ "Uni": 8110,
+ "vector": 8111,
+ "▁wood": 8112,
+ "рт": 8113,
+ "▁Ле": 8114,
+ "▁siècle": 8115,
+ "▁gent": 8116,
+ "}\r": 8117,
+ "▁contents": 8118,
+ "▁compan": 8119,
+ "Go": 8120,
+ "▁jou": 8121,
+ "uent": 8122,
+ "Async": 8123,
+ "printf": 8124,
+ "▁Model": 8125,
+ "▁kept": 8126,
+ "ASE": 8127,
+ "▁provides": 8128,
+ "▁Abgerufen": 8129,
+ "▁Gall": 8130,
+ "▁Alf": 8131,
+ "SA": 8132,
+ "▁Mem": 8133,
+ "▁kter": 8134,
+ "▁Bru": 8135,
+ "Android": 8136,
+ "(:": 8137,
+ "▁Украї": 8138,
+ "Ne": 8139,
+ "Min": 8140,
+ "atr": 8141,
+ "▁Hal": 8142,
+ "delete": 8143,
+ "odo": 8144,
+ "▁não": 8145,
+ "ène": 8146,
+ "▁calculate": 8147,
+ "Json": 8148,
+ "keys": 8149,
+ "ней": 8150,
+ "▁hence": 8151,
+ "▁ow": 8152,
+ "▁Lib": 8153,
+ "eno": 8154,
+ "▁Love": 8155,
+ "osi": 8156,
+ "wide": 8157,
+ "▁score": 8158,
+ "full": 8159,
+ "вод": 8160,
+ "▁determine": 8161,
+ "▁spaces": 8162,
+ "лова": 8163,
+ "▁peut": 8164,
+ "éral": 8165,
+ "ół": 8166,
+ "▁appoint": 8167,
+ "▁Tw": 8168,
+ "": 8169,
+ "▁Order": 8170,
+ "▁hop": 8171,
+ "random": 8172,
+ "cache": 8173,
+ "▁destroy": 8174,
+ "▁race": 8175,
+ "Tag": 8176,
+ "▁rid": 8177,
+ "▁negative": 8178,
+ "Car": 8179,
+ "ensional": 8180,
+ "dk": 8181,
+ "▁cro": 8182,
+ "▁THEN": 8183,
+ "▁$.": 8184,
+ "ensk": 8185,
+ "NE": 8186,
+ "HO": 8187,
+ "▁kle": 8188,
+ "ospital": 8189,
+ "kte": 8190,
+ "férences": 8191,
+ "udes": 8192,
+ "IR": 8193,
+ "otion": 8194,
+ "▁Real": 8195,
+ "▁Februar": 8196,
+ "ин": 8197,
+ "▁Old": 8198,
+ "кого": 8199,
+ "leich": 8200,
+ "▁р": 8201,
+ "ían": 8202,
+ "▁га": 8203,
+ "cide": 8204,
+ "lab": 8205,
+ "▁pull": 8206,
+ "▁'/": 8207,
+ "Long": 8208,
+ ",$": 8209,
+ "▁appropriate": 8210,
+ "▁была": 8211,
+ "führ": 8212,
+ "▁Media": 8213,
+ "▁manner": 8214,
+ "▁Ге": 8215,
+ "description": 8216,
+ "Bean": 8217,
+ "▁Lar": 8218,
+ "'];": 8219,
+ "▁relation": 8220,
+ "▁Sorry": 8221,
+ "har": 8222,
+ "cpp": 8223,
+ "▁Ko": 8224,
+ "▁execution": 8225,
+ "inos": 8226,
+ "▁bul": 8227,
+ "grade": 8228,
+ "▁Mu": 8229,
+ "▁pil": 8230,
+ "writ": 8231,
+ "ifications": 8232,
+ "inese": 8233,
+ "▁Phili": 8234,
+ "dx": 8235,
+ "▁leading": 8236,
+ "▁Journal": 8237,
+ "oved": 8238,
+ "▁contro": 8239,
+ "нова": 8240,
+ "Yes": 8241,
+ "▁channel": 8242,
+ ")),": 8243,
+ "isten": 8244,
+ "aka": 8245,
+ "ToString": 8246,
+ "mas": 8247,
+ "▁ett": 8248,
+ "▁forces": 8249,
+ "ulations": 8250,
+ "▁Call": 8251,
+ "▁explanation": 8252,
+ "oring": 8253,
+ "ATA": 8254,
+ "chter": 8255,
+ "when": 8256,
+ "VC": 8257,
+ "▁Jahrh": 8258,
+ "Case": 8259,
+ "▁commands": 8260,
+ "▁rich": 8261,
+ "bus": 8262,
+ "Fe": 8263,
+ "mbox": 8264,
+ "▁recon": 8265,
+ "ño": 8266,
+ "▁shape": 8267,
+ "owy": 8268,
+ "entry": 8269,
+ "itable": 8270,
+ "▁election": 8271,
+ "ється": 8272,
+ "▁prep": 8273,
+ "vá": 8274,
+ "▁infin": 8275,
+ "lot": 8276,
+ "▁books": 8277,
+ "▁USA": 8278,
+ "лин": 8279,
+ "▁pom": 8280,
+ "▁nas": 8281,
+ "▁tags": 8282,
+ "▁executed": 8283,
+ "aille": 8284,
+ "lung": 8285,
+ "▁JavaScript": 8286,
+ "▁ball": 8287,
+ "▁ainsi": 8288,
+ "▁Pri": 8289,
+ "{$": 8290,
+ "▁UN": 8291,
+ "▁Ram": 8292,
+ "▁hear": 8293,
+ "▁Ubuntu": 8294,
+ ">();": 8295,
+ "▁pure": 8296,
+ "▁embed": 8297,
+ "ação": 8298,
+ "controller": 8299,
+ "▁married": 8300,
+ "▁Fol": 8301,
+ "famil": 8302,
+ "▁prec": 8303,
+ "▁recurs": 8304,
+ "pad": 8305,
+ "istration": 8306,
+ "▁respectively": 8307,
+ "[$": 8308,
+ "autor": 8309,
+ "▁grav": 8310,
+ "iera": 8311,
+ "azioni": 8312,
+ "▁Bul": 8313,
+ "▁Australia": 8314,
+ "mond": 8315,
+ "▁Tro": 8316,
+ "▁Ele": 8317,
+ "packages": 8318,
+ "msdn": 8319,
+ "▁Als": 8320,
+ "▁przy": 8321,
+ "ART": 8322,
+ "▁charge": 8323,
+ "▁applications": 8324,
+ "Unit": 8325,
+ "aren": 8326,
+ "▁sudden": 8327,
+ "ometer": 8328,
+ "▁dot": 8329,
+ "acji": 8330,
+ "ктор": 8331,
+ "imin": 8332,
+ "ening": 8333,
+ "▁donde": 8334,
+ "▁Ho": 8335,
+ "tree": 8336,
+ "mb": 8337,
+ "▁drag": 8338,
+ "aje": 8339,
+ "▁invalid": 8340,
+ "▁finish": 8341,
+ "laim": 8342,
+ "▁feed": 8343,
+ "▁Nap": 8344,
+ "room": 8345,
+ "images": 8346,
+ "▁сай": 8347,
+ "▁succ": 8348,
+ "iffer": 8349,
+ "▁año": 8350,
+ "▁cual": 8351,
+ "мери": 8352,
+ "DR": 8353,
+ "▁Bilder": 8354,
+ "бра": 8355,
+ "rait": 8356,
+ "pan": 8357,
+ "ень": 8358,
+ "▁distinct": 8359,
+ "▁Kn": 8360,
+ "önig": 8361,
+ "anced": 8362,
+ "▁loading": 8363,
+ "▁Techn": 8364,
+ "▁Sel": 8365,
+ "mus": 8366,
+ "▁rail": 8367,
+ "▁student": 8368,
+ "▁notice": 8369,
+ "▁sla": 8370,
+ "▁Да": 8371,
+ "▁guard": 8372,
+ "▁Day": 8373,
+ "вали": 8374,
+ "Option": 8375,
+ "aison": 8376,
+ "ipp": 8377,
+ "▁Jun": 8378,
+ "▁fell": 8379,
+ "▁absolute": 8380,
+ "ове": 8381,
+ "debug": 8382,
+ "▁Sud": 8383,
+ "пы": 8384,
+ "ugins": 8385,
+ "▁views": 8386,
+ "lay": 8387,
+ "▁surr": 8388,
+ "▁stood": 8389,
+ "▁ві": 8390,
+ "selected": 8391,
+ "гі": 8392,
+ "▁attributes": 8393,
+ "final": 8394,
+ "enda": 8395,
+ "▁Bon": 8396,
+ "ners": 8397,
+ "▁Wer": 8398,
+ "bur": 8399,
+ "ittel": 8400,
+ "▁moving": 8401,
+ "▁Plan": 8402,
+ "isches": 8403,
+ "Java": 8404,
+ "▁basis": 8405,
+ "▁Bus": 8406,
+ "▁Au": 8407,
+ "▁Ill": 8408,
+ "▁время": 8409,
+ "▁цент": 8410,
+ "handle": 8411,
+ "ступ": 8412,
+ "▁Far": 8413,
+ "▁oraz": 8414,
+ "ocr": 8415,
+ "▁seit": 8416,
+ "onder": 8417,
+ "дом": 8418,
+ ":/": 8419,
+ "chor": 8420,
+ "▁Town": 8421,
+ "▁definit": 8422,
+ "react": 8423,
+ "▁piece": 8424,
+ "▁Karl": 8425,
+ "CI": 8426,
+ "▁Application": 8427,
+ "unter": 8428,
+ "▁formed": 8429,
+ "▁пу": 8430,
+ "Bo": 8431,
+ "▁Daniel": 8432,
+ "▁пла": 8433,
+ "Body": 8434,
+ "})$": 8435,
+ "▁были": 8436,
+ "▁earth": 8437,
+ "гла": 8438,
+ "There": 8439,
+ "▁стра": 8440,
+ "▁ville": 8441,
+ "▁centre": 8442,
+ ")\r": 8443,
+ "▁helpful": 8444,
+ "▁++": 8445,
+ "▁CG": 8446,
+ "izione": 8447,
+ "▁Game": 8448,
+ "▁Which": 8449,
+ "▁pip": 8450,
+ "▁Portug": 8451,
+ "DS": 8452,
+ "▁describe": 8453,
+ "▁checking": 8454,
+ "▁manager": 8455,
+ "BO": 8456,
+ "▁Bundes": 8457,
+ "buch": 8458,
+ "▁decided": 8459,
+ "▁Jahrhundert": 8460,
+ "▁fif": 8461,
+ "efficient": 8462,
+ "anci": 8463,
+ "braries": 8464,
+ "▁fails": 8465,
+ "▁kernel": 8466,
+ "▁Gl": 8467,
+ "▁Nacional": 8468,
+ "▁proceed": 8469,
+ "▁fuer": 8470,
+ "▁living": 8471,
+ "▁successfully": 8472,
+ "▁faster": 8473,
+ "▁contre": 8474,
+ "▁prison": 8475,
+ "ORT": 8476,
+ "help": 8477,
+ "▁autor": 8478,
+ "ław": 8479,
+ "ają": 8480,
+ "▁Arm": 8481,
+ "▁provin": 8482,
+ "▁naam": 8483,
+ "/#": 8484,
+ "sed": 8485,
+ "▁gesch": 8486,
+ "▁мар": 8487,
+ "esk": 8488,
+ "term": 8489,
+ "▁Tex": 8490,
+ "iring": 8491,
+ "▁tools": 8492,
+ "PDF": 8493,
+ "▁ult": 8494,
+ "issenschaft": 8495,
+ "▁couldn": 8496,
+ "ding": 8497,
+ "Dep": 8498,
+ "{-": 8499,
+ "▁predict": 8500,
+ "antage": 8501,
+ "▁Like": 8502,
+ "▁Би": 8503,
+ "tools": 8504,
+ "estra": 8505,
+ "▁ki": 8506,
+ "▁Jim": 8507,
+ "star": 8508,
+ "▁remark": 8509,
+ "óg": 8510,
+ "nabla": 8511,
+ "▁Although": 8512,
+ "mode": 8513,
+ "Host": 8514,
+ "▁strange": 8515,
+ "None": 8516,
+ "black": 8517,
+ "▁Festival": 8518,
+ "▁IS": 8519,
+ "anza": 8520,
+ "▁(-": 8521,
+ "icket": 8522,
+ "кола": 8523,
+ "▁Jes": 8524,
+ "▁flex": 8525,
+ "▁À": 8526,
+ "▁Network": 8527,
+ "▁EX": 8528,
+ "▁enero": 8529,
+ "!”": 8530,
+ "▁Ort": 8531,
+ "▁alors": 8532,
+ "▁Original": 8533,
+ "▁zo": 8534,
+ "ными": 8535,
+ "▁spl": 8536,
+ "Draw": 8537,
+ "yond": 8538,
+ "──": 8539,
+ "▁Ot": 8540,
+ "▁dram": 8541,
+ "▁division": 8542,
+ "▁efficient": 8543,
+ "▁Га": 8544,
+ "▁vier": 8545,
+ "nak": 8546,
+ "LS": 8547,
+ "▁spirit": 8548,
+ "zeichnet": 8549,
+ "▁dici": 8550,
+ "clear": 8551,
+ "copy": 8552,
+ "yar": 8553,
+ "▁році": 8554,
+ "usqu": 8555,
+ "▁nous": 8556,
+ "▁blev": 8557,
+ "жде": 8558,
+ "Arg": 8559,
+ "▁performed": 8560,
+ "▁Make": 8561,
+ "▁Carol": 8562,
+ "etto": 8563,
+ "▁Sand": 8564,
+ "▁Disc": 8565,
+ "Enc": 8566,
+ "rero": 8567,
+ "hash": 8568,
+ "▁focus": 8569,
+ "▁attention": 8570,
+ "▁agre": 8571,
+ "▁divis": 8572,
+ "▁было": 8573,
+ "▁ej": 8574,
+ "▁march": 8575,
+ "▁phase": 8576,
+ "ías": 8577,
+ "▁phil": 8578,
+ "▁Pap": 8579,
+ "▁river": 8580,
+ "▁caused": 8581,
+ "plugin": 8582,
+ "▁Team": 8583,
+ "uler": 8584,
+ "▁$(\"#": 8585,
+ "iej": 8586,
+ "ISBN": 8587,
+ "nam": 8588,
+ "▁fight": 8589,
+ "vid": 8590,
+ "▁Lud": 8591,
+ "Selected": 8592,
+ ":@\"": 8593,
+ "▁Pod": 8594,
+ "▁années": 8595,
+ "arios": 8596,
+ "▁deutscher": 8597,
+ "▁NA": 8598,
+ "▁ию": 8599,
+ "▁dictionary": 8600,
+ "▁Ла": 8601,
+ "▁Tri": 8602,
+ "èn": 8603,
+ "▁political": 8604,
+ "ridge": 8605,
+ "atten": 8606,
+ "▁circle": 8607,
+ "▁transport": 8608,
+ "emas": 8609,
+ "FC": 8610,
+ "▁replaced": 8611,
+ "▁Aud": 8612,
+ "iska": 8613,
+ "Configuration": 8614,
+ "▁soort": 8615,
+ "▁Не": 8616,
+ "▁sequ": 8617,
+ "PRO": 8618,
+ "▁bud": 8619,
+ "▁{{": 8620,
+ "ließ": 8621,
+ "▁Mas": 8622,
+ "ders": 8623,
+ "usammen": 8624,
+ "esa": 8625,
+ "▁Ly": 8626,
+ "вро": 8627,
+ "mac": 8628,
+ "▁испо": 8629,
+ "▁suc": 8630,
+ "uy": 8631,
+ "▁illustr": 8632,
+ "▁primera": 8633,
+ "ilation": 8634,
+ "▁storage": 8635,
+ "▁params": 8636,
+ "kaz": 8637,
+ "▁terminal": 8638,
+ "раль": 8639,
+ "▁holds": 8640,
+ "лось": 8641,
+ "▁nad": 8642,
+ "”.": 8643,
+ "▁octubre": 8644,
+ "bul": 8645,
+ "▁hus": 8646,
+ "ULT": 8647,
+ "▁également": 8648,
+ "▁Mill": 8649,
+ "ład": 8650,
+ "▁contiene": 8651,
+ "\"?": 8652,
+ "▁>>>": 8653,
+ "Que": 8654,
+ " ": 8655,
+ "▁plain": 8656,
+ "ativa": 8657,
+ "ocker": 8658,
+ "Names": 8659,
+ "▁Jud": 8660,
+ "▁agree": 8661,
+ "▁Gemeinde": 8662,
+ "lare": 8663,
+ "каза": 8664,
+ "▁starts": 8665,
+ "▁price": 8666,
+ "Target": 8667,
+ "cus": 8668,
+ "▁Instead": 8669,
+ ".;": 8670,
+ "▁alternative": 8671,
+ "▁вла": 8672,
+ "IE": 8673,
+ "▁organiz": 8674,
+ "inu": 8675,
+ "▁completed": 8676,
+ "▁carry": 8677,
+ "atom": 8678,
+ "▁depending": 8679,
+ "▁Our": 8680,
+ "▁insp": 8681,
+ "▁&\\": 8682,
+ "aily": 8683,
+ "irection": 8684,
+ "фа": 8685,
+ "▁defe": 8686,
+ "TAC": 8687,
+ "▁designed": 8688,
+ "▁voir": 8689,
+ "break": 8690,
+ "▁partie": 8691,
+ "▁Jahren": 8692,
+ "▁studio": 8693,
+ "▁jour": 8694,
+ "▁Notes": 8695,
+ "fire": 8696,
+ "house": 8697,
+ "success": 8698,
+ "▁Juan": 8699,
+ "JS": 8700,
+ "▁Custom": 8701,
+ "▁besch": 8702,
+ "▁stated": 8703,
+ "bootstrap": 8704,
+ "ött": 8705,
+ "ozzá": 8706,
+ "▁CON": 8707,
+ "hav": 8708,
+ "▁sleep": 8709,
+ "eda": 8710,
+ "hot": 8711,
+ "ánd": 8712,
+ "▁Sy": 8713,
+ "▁temps": 8714,
+ "amar": 8715,
+ "▁scal": 8716,
+ "▁ast": 8717,
+ "▁opening": 8718,
+ "clipse": 8719,
+ "▁programming": 8720,
+ "▁letters": 8721,
+ "▁profile": 8722,
+ "nah": 8723,
+ "▁beyond": 8724,
+ "▁Further": 8725,
+ "faces": 8726,
+ "▁chart": 8727,
+ "зда": 8728,
+ "aign": 8729,
+ "ній": 8730,
+ "▁Rol": 8731,
+ "овано": 8732,
+ "terior": 8733,
+ "wed": 8734,
+ "▁herself": 8735,
+ "▁ng": 8736,
+ "anguages": 8737,
+ "}=\\": 8738,
+ "ynamic": 8739,
+ "▁jug": 8740,
+ "▁Example": 8741,
+ "▁(†": 8742,
+ "▁playing": 8743,
+ "▁usage": 8744,
+ "▁managed": 8745,
+ "▁Natur": 8746,
+ "тери": 8747,
+ "▁Et": 8748,
+ "eria": 8749,
+ "▁daughter": 8750,
+ "нием": 8751,
+ "Fragment": 8752,
+ "▁hol": 8753,
+ "Fl": 8754,
+ "ографи": 8755,
+ "▁ihn": 8756,
+ "üh": 8757,
+ "instance": 8758,
+ "▁comun": 8759,
+ "▁truth": 8760,
+ "▁само": 8761,
+ "▁implemented": 8762,
+ "▁anyway": 8763,
+ "▁Cro": 8764,
+ "фе": 8765,
+ "GC": 8766,
+ "ubuntu": 8767,
+ "types": 8768,
+ "ês": 8769,
+ ".~\\": 8770,
+ "fold": 8771,
+ "▁joined": 8772,
+ "??": 8773,
+ "▁mé": 8774,
+ "▁wild": 8775,
+ "клю": 8776,
+ "rowser": 8777,
+ "▁Home": 8778,
+ "skiej": 8779,
+ "▁JOIN": 8780,
+ "▁juin": 8781,
+ "hof": 8782,
+ "▁dataset": 8783,
+ "жду": 8784,
+ "'))": 8785,
+ "▁miejs": 8786,
+ "API": 8787,
+ "▁edited": 8788,
+ "ools": 8789,
+ "▁seeing": 8790,
+ "ijd": 8791,
+ "▁procedure": 8792,
+ "▁Bras": 8793,
+ "▁signed": 8794,
+ "▁externos": 8795,
+ "▁disapp": 8796,
+ "▁Direct": 8797,
+ "cyc": 8798,
+ "▁consult": 8799,
+ "örd": 8800,
+ "Widget": 8801,
+ "cious": 8802,
+ "sect": 8803,
+ "▁Ди": 8804,
+ "▁wind": 8805,
+ "▁Archivado": 8806,
+ "aml": 8807,
+ "сс": 8808,
+ "Wh": 8809,
+ "kbd": 8810,
+ "▁Army": 8811,
+ "▁suffer": 8812,
+ "artifact": 8813,
+ "▁resolve": 8814,
+ "▁Sport": 8815,
+ "▁це": 8816,
+ "idas": 8817,
+ "▁tax": 8818,
+ "idi": 8819,
+ "▁actions": 8820,
+ "пра": 8821,
+ "pués": 8822,
+ "▁naj": 8823,
+ "False": 8824,
+ "▁chance": 8825,
+ "▁тако": 8826,
+ "äd": 8827,
+ "▁dol": 8828,
+ "▁env": 8829,
+ "▁basically": 8830,
+ "▁Council": 8831,
+ "zte": 8832,
+ "▁displayed": 8833,
+ "nil": 8834,
+ "complete": 8835,
+ "▁Lem": 8836,
+ "iance": 8837,
+ "▁основ": 8838,
+ "▁depend": 8839,
+ "plom": 8840,
+ "ensus": 8841,
+ "uts": 8842,
+ "▁Hot": 8843,
+ "bitr": 8844,
+ "▁validation": 8845,
+ "abb": 8846,
+ "▁тре": 8847,
+ "km": 8848,
+ "zd": 8849,
+ "öff": 8850,
+ "WE": 8851,
+ "▁interested": 8852,
+ "▁{\"": 8853,
+ "aro": 8854,
+ "▁correl": 8855,
+ "▁dedic": 8856,
+ "▁lists": 8857,
+ "▁Bibliografia": 8858,
+ "▁earlier": 8859,
+ "program": 8860,
+ "▁première": 8861,
+ "front": 8862,
+ "Tab": 8863,
+ "ству": 8864,
+ "drop": 8865,
+ "▁fear": 8866,
+ "▁Enlaces": 8867,
+ "▁Capt": 8868,
+ "▁realiz": 8869,
+ "▁hal": 8870,
+ "▁instances": 8871,
+ "▁susp": 8872,
+ "illing": 8873,
+ "%;": 8874,
+ "{}": 8875,
+ "||": 8876,
+ "▁partition": 8877,
+ "▁Build": 8878,
+ "▁wo": 8879,
+ "▁Пер": 8880,
+ "▁director": 8881,
+ "▁Sin": 8882,
+ "тия": 8883,
+ "rsg": 8884,
+ "ouver": 8885,
+ "▁nearly": 8886,
+ "oda": 8887,
+ "ктив": 8888,
+ "▁sir": 8889,
+ "IME": 8890,
+ "▁janvier": 8891,
+ "▁Win": 8892,
+ "Build": 8893,
+ "ieurs": 8894,
+ "INE": 8895,
+ "double": 8896,
+ "Last": 8897,
+ "▁policy": 8898,
+ "store": 8899,
+ "▁observed": 8900,
+ "▁familie": 8901,
+ "nica": 8902,
+ "rey": 8903,
+ "зь": 8904,
+ "▁Year": 8905,
+ "▁developed": 8906,
+ "▁Institute": 8907,
+ "▁reply": 8908,
+ "Comple": 8909,
+ "ician": 8910,
+ "▁Guer": 8911,
+ "▁dall": 8912,
+ "▁desp": 8913,
+ "▁Football": 8914,
+ "Empty": 8915,
+ "cken": 8916,
+ "unda": 8917,
+ "▁Ur": 8918,
+ "▁ig": 8919,
+ "▁Atl": 8920,
+ "author": 8921,
+ "▁Bol": 8922,
+ "zig": 8923,
+ "nat": 8924,
+ "št": 8925,
+ "security": 8926,
+ "onic": 8927,
+ "▁pes": 8928,
+ "itan": 8929,
+ "▁Extern": 8930,
+ "jan": 8931,
+ "VAL": 8932,
+ "▁им": 8933,
+ "bold": 8934,
+ "▁ва": 8935,
+ "▁Мо": 8936,
+ "▁disput": 8937,
+ "▁trick": 8938,
+ "▁ped": 8939,
+ ")^{": 8940,
+ "into": 8941,
+ "Sim": 8942,
+ "▁parallel": 8943,
+ "fox": 8944,
+ "normal": 8945,
+ "inent": 8946,
+ "педи": 8947,
+ "hold": 8948,
+ "OK": 8949,
+ "▁chem": 8950,
+ "▁twice": 8951,
+ "▁username": 8952,
+ "ič": 8953,
+ "▁representation": 8954,
+ "▁journal": 8955,
+ "▁:-": 8956,
+ "▁batt": 8957,
+ "\\%": 8958,
+ "▁certainly": 8959,
+ "▁Exception": 8960,
+ "eps": 8961,
+ "shot": 8962,
+ "ategy": 8963,
+ "Show": 8964,
+ "▁Carl": 8965,
+ "rig": 8966,
+ "▁reported": 8967,
+ "bottom": 8968,
+ "TF": 8969,
+ "▁Francisco": 8970,
+ "nap": 8971,
+ "▁Championship": 8972,
+ "▁court": 8973,
+ "▁sources": 8974,
+ "iour": 8975,
+ "▁conserv": 8976,
+ "dict": 8977,
+ "▁Ру": 8978,
+ "IB": 8979,
+ "▁Ve": 8980,
+ "▁№": 8981,
+ "▁ER": 8982,
+ "\"));": 8983,
+ "▁Point": 8984,
+ "azine": 8985,
+ "▁internet": 8986,
+ "дна": 8987,
+ "▁carried": 8988,
+ "▁Field": 8989,
+ "axis": 8990,
+ "▁Sun": 8991,
+ "▁ave": 8992,
+ "пис": 8993,
+ "ян": 8994,
+ "asy": 8995,
+ "▁julio": 8996,
+ "▁depuis": 8997,
+ "▁suggestion": 8998,
+ "[[": 8999,
+ "▁Archive": 9000,
+ "ęp": 9001,
+ "▁Pra": 9002,
+ "reh": 9003,
+ "▁demonstr": 9004,
+ "фі": 9005,
+ "cmd": 9006,
+ "▁wasn": 9007,
+ "▁phone": 9008,
+ "upload": 9009,
+ "aya": 9010,
+ "тора": 9011,
+ "lines": 9012,
+ "▁indu": 9013,
+ "▁vot": 9014,
+ "▁espa": 9015,
+ "▁bin": 9016,
+ "▁после": 9017,
+ "plan": 9018,
+ "▁junio": 9019,
+ "orial": 9020,
+ "free": 9021,
+ "sterreich": 9022,
+ "▁ду": 9023,
+ "▁linked": 9024,
+ "▁enable": 9025,
+ "PC": 9026,
+ "▁density": 9027,
+ "▁Egy": 9028,
+ "yo": 9029,
+ "endre": 9030,
+ "▁съ": 9031,
+ "▁italiano": 9032,
+ "▁AR": 9033,
+ "▁Pers": 9034,
+ "férés": 9035,
+ "▁скла": 9036,
+ "Var": 9037,
+ "▁Once": 9038,
+ "Red": 9039,
+ "buffer": 9040,
+ "▁Enter": 9041,
+ "▁Š": 9042,
+ "imiento": 9043,
+ "Store": 9044,
+ "▁health": 9045,
+ "vat": 9046,
+ "IST": 9047,
+ "Oh": 9048,
+ "▁kw": 9049,
+ "▁riv": 9050,
+ "▁somewhere": 9051,
+ "ografie": 9052,
+ "private": 9053,
+ "кти": 9054,
+ "▁delay": 9055,
+ "▁Http": 9056,
+ "job": 9057,
+ "rael": 9058,
+ "empor": 9059,
+ "▁diciembre": 9060,
+ "ête": 9061,
+ "цу": 9062,
+ "▁commit": 9063,
+ "oso": 9064,
+ "Values": 9065,
+ "▁headers": 9066,
+ "transform": 9067,
+ "▁processing": 9068,
+ "rå": 9069,
+ "▁Ah": 9070,
+ "▁Node": 9071,
+ "------------": 9072,
+ "▁faire": 9073,
+ "▁hun": 9074,
+ "Player": 9075,
+ "▁review": 9076,
+ "гда": 9077,
+ "▁limited": 9078,
+ "▁Property": 9079,
+ "▁serve": 9080,
+ "riage": 9081,
+ "▁Master": 9082,
+ "▁kann": 9083,
+ "crete": 9084,
+ "phere": 9085,
+ "ёр": 9086,
+ "▁chief": 9087,
+ "▁scene": 9088,
+ "kin": 9089,
+ "▁uniform": 9090,
+ "▁febrero": 9091,
+ "\"}": 9092,
+ "illo": 9093,
+ "ITE": 9094,
+ "ouvel": 9095,
+ "usepackage": 9096,
+ "enth": 9097,
+ "▁quickly": 9098,
+ "Lambda": 9099,
+ "xes": 9100,
+ "▁cells": 9101,
+ "rog": 9102,
+ "amin": 9103,
+ "▁Мар": 9104,
+ "▁mayor": 9105,
+ "player": 9106,
+ "++;": 9107,
+ "▁Насе": 9108,
+ "▁safe": 9109,
+ "▁veloc": 9110,
+ "▁обра": 9111,
+ "Database": 9112,
+ "neh": 9113,
+ "Vert": 9114,
+ "▁fle": 9115,
+ "▁фор": 9116,
+ "▁foreign": 9117,
+ "Abstract": 9118,
+ "▁magn": 9119,
+ "▁modified": 9120,
+ "▁military": 9121,
+ "▁monde": 9122,
+ "▁Action": 9123,
+ "▁bank": 9124,
+ "Serial": 9125,
+ "▁continuous": 9126,
+ "▁gel": 9127,
+ "▁physical": 9128,
+ "▁introduced": 9129,
+ "uture": 9130,
+ "rick": 9131,
+ "▁presented": 9132,
+ "▁Prov": 9133,
+ "▁Both": 9134,
+ "Pos": 9135,
+ "super": 9136,
+ "": 9137,
+ "▁finding": 9138,
+ "nel": 9139,
+ "unde": 9140,
+ "▁från": 9141,
+ "skim": 9142,
+ "▁Hill": 9143,
+ "fn": 9144,
+ "▁Canad": 9145,
+ "▁intended": 9146,
+ "ozzáférés": 9147,
+ "▁juillet": 9148,
+ "▁Wars": 9149,
+ "▁successful": 9150,
+ "▁charg": 9151,
+ "iele": 9152,
+ "omething": 9153,
+ "oku": 9154,
+ "fetch": 9155,
+ "▁}}": 9156,
+ "bank": 9157,
+ "operatorname": 9158,
+ "▁Color": 9159,
+ "▁Card": 9160,
+ "tu": 9161,
+ "▁\",": 9162,
+ "wid": 9163,
+ "▁gep": 9164,
+ "XML": 9165,
+ "================": 9166,
+ "▁Virgin": 9167,
+ "ährend": 9168,
+ "licated": 9169,
+ "Dir": 9170,
+ "zero": 9171,
+ "▁Kal": 9172,
+ "▁Party": 9173,
+ "▁å": 9174,
+ "price": 9175,
+ "don": 9176,
+ "▁warning": 9177,
+ "▁Bad": 9178,
+ "▁Supp": 9179,
+ "▁Liga": 9180,
+ "▁Pierre": 9181,
+ "Record": 9182,
+ "ulator": 9183,
+ "▁Rome": 9184,
+ "▁theorem": 9185,
+ "▁entirely": 9186,
+ "ским": 9187,
+ "het": 9188,
+ "▁dopo": 9189,
+ "Next": 9190,
+ "mlung": 9191,
+ "wig": 9192,
+ "▁Ath": 9193,
+ "▁Sou": 9194,
+ "licher": 9195,
+ "▁sudo": 9196,
+ "ests": 9197,
+ "хів": 9198,
+ "▁septiembre": 9199,
+ "▁micro": 9200,
+ "▁trop": 9201,
+ "fit": 9202,
+ "Core": 9203,
+ "▁Radio": 9204,
+ "▁Organ": 9205,
+ "▁Power": 9206,
+ "CF": 9207,
+ "▁Last": 9208,
+ "▁oppos": 9209,
+ "▁offset": 9210,
+ "▁regia": 9211,
+ "▁minimum": 9212,
+ "▁helped": 9213,
+ "andon": 9214,
+ "ifying": 9215,
+ "ruit": 9216,
+ "enschapp": 9217,
+ "▁bere": 9218,
+ "VM": 9219,
+ "▁Awards": 9220,
+ "▁agr": 9221,
+ "ynomial": 9222,
+ "enced": 9223,
+ "▁devices": 9224,
+ "▁bot": 9225,
+ "▁firm": 9226,
+ "▁writer": 9227,
+ "▁ring": 9228,
+ ".-": 9229,
+ "istes": 9230,
+ "lä": 9231,
+ "▁mel": 9232,
+ "entation": 9233,
+ "▁Schw": 9234,
+ "▁nome": 9235,
+ "▁pobla": 9236,
+ "▁woj": 9237,
+ "▁ul": 9238,
+ "ento": 9239,
+ "ых": 9240,
+ "▁resist": 9241,
+ "▁remains": 9242,
+ "▁Ca": 9243,
+ "aña": 9244,
+ "▁Court": 9245,
+ "utable": 9246,
+ "entially": 9247,
+ "▁trat": 9248,
+ "▁Visual": 9249,
+ "▁restrict": 9250,
+ "▁previously": 9251,
+ "cation": 9252,
+ "▁осо": 9253,
+ "▁MySQL": 9254,
+ "för": 9255,
+ "cala": 9256,
+ "▁culture": 9257,
+ "live": 9258,
+ "▁accepted": 9259,
+ "Did": 9260,
+ "▁hous": 9261,
+ "▁selection": 9262,
+ "▁decre": 9263,
+ "margin": 9264,
+ "urb": 9265,
+ "▁Inc": 9266,
+ "▁Many": 9267,
+ "ibt": 9268,
+ "▁succeed": 9269,
+ "Binding": 9270,
+ "cí": 9271,
+ "▁Rog": 9272,
+ "▁shouldn": 9273,
+ "cloud": 9274,
+ "▁dz": 9275,
+ "вав": 9276,
+ "▁pix": 9277,
+ "small": 9278,
+ "▁projects": 9279,
+ "▁OK": 9280,
+ "▁latest": 9281,
+ "▁references": 9282,
+ "Program": 9283,
+ "▁erst": 9284,
+ "▁як": 9285,
+ "▁kam": 9286,
+ "▁Camb": 9287,
+ "ellt": 9288,
+ "öd": 9289,
+ "none": 9290,
+ "▁jusqu": 9291,
+ "king": 9292,
+ "▁Ped": 9293,
+ "assert": 9294,
+ "CS": 9295,
+ "rito": 9296,
+ "essa": 9297,
+ "лько": 9298,
+ "▁Von": 9299,
+ "▁Edward": 9300,
+ "▁impossible": 9301,
+ "np": 9302,
+ "words": 9303,
+ "ielt": 9304,
+ "▁Page": 9305,
+ "lers": 9306,
+ "▁pier": 9307,
+ "▁области": 9308,
+ "ittee": 9309,
+ "▁([": 9310,
+ "▁trust": 9311,
+ "NG": 9312,
+ "redu": 9313,
+ "<<": 9314,
+ "rial": 9315,
+ "▁products": 9316,
+ "▁Ern": 9317,
+ "rière": 9318,
+ "гов": 9319,
+ "▁Reich": 9320,
+ "▁Road": 9321,
+ "▁nested": 9322,
+ "Display": 9323,
+ "▁strength": 9324,
+ "ografía": 9325,
+ "▁announced": 9326,
+ "▁Science": 9327,
+ "▁райо": 9328,
+ "Parameter": 9329,
+ "▁Task": 9330,
+ "uments": 9331,
+ "▁adopt": 9332,
+ "▁Only": 9333,
+ "ють": 9334,
+ "▁cli": 9335,
+ "▁lem": 9336,
+ "stood": 9337,
+ "▁FI": 9338,
+ "ências": 9339,
+ "ponents": 9340,
+ "]$": 9341,
+ "comment": 9342,
+ "▁ya": 9343,
+ "should": 9344,
+ "ike": 9345,
+ "tim": 9346,
+ "ellig": 9347,
+ "▁sending": 9348,
+ "▁ajax": 9349,
+ "▁noviembre": 9350,
+ "umes": 9351,
+ "▁weiter": 9352,
+ "▁Dans": 9353,
+ "opp": 9354,
+ "▁septembre": 9355,
+ "otimes": 9356,
+ "ző": 9357,
+ "▁ep": 9358,
+ "vere": 9359,
+ "▁oh": 9360,
+ ":=": 9361,
+ "▁Song": 9362,
+ "”,": 9363,
+ "▁viv": 9364,
+ "▁queries": 9365,
+ "▁vá": 9366,
+ "▁décembre": 9367,
+ "▁unable": 9368,
+ "▁erh": 9369,
+ "▁`-": 9370,
+ "▁Lee": 9371,
+ "▁ersten": 9372,
+ "ôt": 9373,
+ "стве": 9374,
+ "TS": 9375,
+ "▁fragment": 9376,
+ "▁wide": 9377,
+ "▁suff": 9378,
+ "▁dut": 9379,
+ "▁Vere": 9380,
+ "іс": 9381,
+ "ading": 9382,
+ "iego": 9383,
+ "icago": 9384,
+ "▁Argent": 9385,
+ "orer": 9386,
+ "ennes": 9387,
+ "▁Leb": 9388,
+ "linux": 9389,
+ "acing": 9390,
+ "▁broken": 9391,
+ "tp": 9392,
+ "ío": 9393,
+ "abeth": 9394,
+ "istas": 9395,
+ "gew": 9396,
+ "ième": 9397,
+ "cas": 9398,
+ "▁preced": 9399,
+ "▁Dal": 9400,
+ "▁compared": 9401,
+ "equiv": 9402,
+ "illy": 9403,
+ "teen": 9404,
+ "▁Console": 9405,
+ "▁strict": 9406,
+ "itaire": 9407,
+ "▁ED": 9408,
+ "entials": 9409,
+ "▁perman": 9410,
+ "▁tous": 9411,
+ "▁geme": 9412,
+ "▁extrem": 9413,
+ "▁окру": 9414,
+ "kg": 9415,
+ "▁heavy": 9416,
+ "▁avril": 9417,
+ "▁anti": 9418,
+ "▁octobre": 9419,
+ "utf": 9420,
+ "helm": 9421,
+ "amples": 9422,
+ "▁(_": 9423,
+ "aken": 9424,
+ "▁dear": 9425,
+ "▁opinion": 9426,
+ "▁fish": 9427,
+ "▁Alexander": 9428,
+ "iw": 9429,
+ "им": 9430,
+ "cadem": 9431,
+ "▁reflect": 9432,
+ "▁др": 9433,
+ "▁trib": 9434,
+ "common": 9435,
+ "▁clearly": 9436,
+ "▁saf": 9437,
+ "=\"@+": 9438,
+ "▁Мос": 9439,
+ "сите": 9440,
+ "eqnarray": 9441,
+ "nung": 9442,
+ "▁relationship": 9443,
+ "▁Sem": 9444,
+ "▁killed": 9445,
+ "ted": 9446,
+ "uno": 9447,
+ "▁лі": 9448,
+ "▁wid": 9449,
+ "anning": 9450,
+ "▁panel": 9451,
+ "▁Leben": 9452,
+ "▁ruby": 9453,
+ "ansion": 9454,
+ "▁aren": 9455,
+ "tabular": 9456,
+ "alet": 9457,
+ "}$$": 9458,
+ "▁Lake": 9459,
+ "▁suite": 9460,
+ "▁minor": 9461,
+ "Hozzáférés": 9462,
+ "▁xmlns": 9463,
+ "DIR": 9464,
+ "driver": 9465,
+ "ints": 9466,
+ "▁vic": 9467,
+ "AND": 9468,
+ "prim": 9469,
+ "сылки": 9470,
+ "▁Ox": 9471,
+ "TC": 9472,
+ "rivial": 9473,
+ "atie": 9474,
+ "▁eight": 9475,
+ "▁conflic": 9476,
+ "angel": 9477,
+ "▁Begr": 9478,
+ "▁explicitly": 9479,
+ "ются": 9480,
+ "▁Dev": 9481,
+ "render": 9482,
+ "▁reprodu": 9483,
+ "▁cré": 9484,
+ "Gu": 9485,
+ "MB": 9486,
+ "▁kön": 9487,
+ "▁remained": 9488,
+ "▁kl": 9489,
+ "хов": 9490,
+ "▁byl": 9491,
+ "Phi": 9492,
+ "▁detail": 9493,
+ "jav": 9494,
+ "▁mouse": 9495,
+ "Bas": 9496,
+ "ię": 9497,
+ "asser": 9498,
+ "hs": 9499,
+ "▁shift": 9500,
+ "▁últ": 9501,
+ "rand": 9502,
+ "▁btn": 9503,
+ "raz": 9504,
+ "▁pul": 9505,
+ "▁statements": 9506,
+ "filename": 9507,
+ "▁prompt": 9508,
+ "élé": 9509,
+ "ikz": 9510,
+ "▁Sus": 9511,
+ "▁debut": 9512,
+ "Stat": 9513,
+ "forms": 9514,
+ "▁Hein": 9515,
+ "stadt": 9516,
+ "ennis": 9517,
+ "пол": 9518,
+ "arante": 9519,
+ "цій": 9520,
+ "▁queue": 9521,
+ "▁reci": 9522,
+ "▁sta": 9523,
+ "ynchron": 9524,
+ "centering": 9525,
+ "Some": 9526,
+ "Graph": 9527,
+ "▁tested": 9528,
+ "▁Kunst": 9529,
+ "ом": 9530,
+ "▁Nothing": 9531,
+ "ieu": 9532,
+ "“.": 9533,
+ "Bundle": 9534,
+ "▁oficial": 9535,
+ "allow": 9536,
+ "▁React": 9537,
+ "▁Library": 9538,
+ "blue": 9539,
+ "▁verw": 9540,
+ "▁pare": 9541,
+ "▁Friedrich": 9542,
+ "▁aware": 9543,
+ "Exp": 9544,
+ "▁effects": 9545,
+ "▁горо": 9546,
+ "lopedia": 9547,
+ "▁Ven": 9548,
+ "rale": 9549,
+ "▁Final": 9550,
+ "▁propos": 9551,
+ "lacement": 9552,
+ "kten": 9553,
+ "▁novel": 9554,
+ "orter": 9555,
+ "▁Germany": 9556,
+ "▁django": 9557,
+ "▁transition": 9558,
+ "▁happened": 9559,
+ "▁beautiful": 9560,
+ "▁neither": 9561,
+ "▁libraries": 9562,
+ "▁hide": 9563,
+ "alg": 9564,
+ "▁aspect": 9565,
+ "▁forget": 9566,
+ "cademy": 9567,
+ "onte": 9568,
+ "refix": 9569,
+ "▁cloud": 9570,
+ "ned": 9571,
+ "cdots": 9572,
+ "register": 9573,
+ "nym": 9574,
+ ".):": 9575,
+ "▁Jew": 9576,
+ "▁très": 9577,
+ "ниче": 9578,
+ "▁Dor": 9579,
+ "▁proc": 9580,
+ "▁gan": 9581,
+ "▁є": 9582,
+ "▁Sav": 9583,
+ "ví": 9584,
+ "Settings": 9585,
+ "▁Vari": 9586,
+ "▁cours": 9587,
+ "Ro": 9588,
+ "▁conj": 9589,
+ "▁reasons": 9590,
+ "▁reader": 9591,
+ "лександ": 9592,
+ "icate": 9593,
+ "}),": 9594,
+ "▁tasks": 9595,
+ "▁Ray": 9596,
+ "▁ric": 9597,
+ "Ke": 9598,
+ "onie": 9599,
+ "rf": 9600,
+ ")[": 9601,
+ "▁subsequ": 9602,
+ "▁Turn": 9603,
+ "▁VIAF": 9604,
+ "mathsf": 9605,
+ "HE": 9606,
+ "▁declare": 9607,
+ "▁protocol": 9608,
+ "▁PC": 9609,
+ "цион": 9610,
+ "ViewById": 9611,
+ "▁animation": 9612,
+ "▁confused": 9613,
+ "вич": 9614,
+ "▁enabled": 9615,
+ "owo": 9616,
+ "ást": 9617,
+ "öt": 9618,
+ "▁mand": 9619,
+ "▁Rail": 9620,
+ "fields": 9621,
+ "▁Kap": 9622,
+ "▁algebra": 9623,
+ "▁Су": 9624,
+ "férence": 9625,
+ "▁Current": 9626,
+ "сно": 9627,
+ "▁Lim": 9628,
+ "Params": 9629,
+ "▁Antonio": 9630,
+ "▁tv": 9631,
+ "late": 9632,
+ "ifer": 9633,
+ "Entry": 9634,
+ "▁Serv": 9635,
+ "▁musical": 9636,
+ "▁trace": 9637,
+ "▁scient": 9638,
+ "fic": 9639,
+ "▁forgot": 9640,
+ "video": 9641,
+ "▁older": 9642,
+ "Tree": 9643,
+ "▁uns": 9644,
+ "ники": 9645,
+ "▁Europa": 9646,
+ "▁Zwe": 9647,
+ "▁бе": 9648,
+ "▁vec": 9649,
+ "жу": 9650,
+ "▁▁▁▁▁▁▁▁▁▁▁": 9651,
+ "Match": 9652,
+ "span": 9653,
+ "▁blank": 9654,
+ "▁später": 9655,
+ "▁Ty": 9656,
+ "▁dict": 9657,
+ "ña": 9658,
+ "▁confirm": 9659,
+ "▁vý": 9660,
+ "зан": 9661,
+ "Rel": 9662,
+ "film": 9663,
+ "▁Rot": 9664,
+ "▁Hy": 9665,
+ "ках": 9666,
+ "▁demand": 9667,
+ "▁minist": 9668,
+ "▁Madrid": 9669,
+ "▁usual": 9670,
+ "spiel": 9671,
+ "eros": 9672,
+ "▁tutorial": 9673,
+ "▁Ссылки": 9674,
+ "sys": 9675,
+ "циаль": 9676,
+ "▁spread": 9677,
+ "▁convers": 9678,
+ "▁roll": 9679,
+ "artifactId": 9680,
+ "▁Number": 9681,
+ "▁symmet": 9682,
+ "▁Mult": 9683,
+ "expected": 9684,
+ "▁axis": 9685,
+ "▁matching": 9686,
+ "▁food": 9687,
+ "groupId": 9688,
+ "Mapp": 9689,
+ "▁свя": 9690,
+ "▁vend": 9691,
+ "Found": 9692,
+ "otto": 9693,
+ "Cat": 9694,
+ "crit": 9695,
+ "istent": 9696,
+ "▁drei": 9697,
+ "▁ended": 9698,
+ "▁Tele": 9699,
+ "component": 9700,
+ "▁involved": 9701,
+ "▁Estados": 9702,
+ "▁danger": 9703,
+ "▁chain": 9704,
+ "▁Prom": 9705,
+ "hom": 9706,
+ "▁polít": 9707,
+ "cop": 9708,
+ "▁nap": 9709,
+ "rif": 9710,
+ "plements": 9711,
+ "▁vent": 9712,
+ "anna": 9713,
+ "anted": 9714,
+ "dated": 9715,
+ "anth": 9716,
+ "▁threads": 9717,
+ "зова": 9718,
+ "▁станов": 9719,
+ "▁eerst": 9720,
+ "buf": 9721,
+ "heid": 9722,
+ "▁Ru": 9723,
+ "▁Prim": 9724,
+ "▁migr": 9725,
+ "▁Unidos": 9726,
+ "▁arbitr": 9727,
+ "▁roman": 9728,
+ "ountry": 9729,
+ "ultur": 9730,
+ "▁König": 9731,
+ "▁annot": 9732,
+ "aching": 9733,
+ "▁Haupt": 9734,
+ "umin": 9735,
+ "▁hem": 9736,
+ "ckets": 9737,
+ "bau": 9738,
+ "ection": 9739,
+ "eft": 9740,
+ "▁packages": 9741,
+ "▁Kur": 9742,
+ "thur": 9743,
+ "▁pays": 9744,
+ "liament": 9745,
+ "▁Бу": 9746,
+ "▁cada": 9747,
+ "points": 9748,
+ "ocket": 9749,
+ "▁verb": 9750,
+ "лее": 9751,
+ "▁submit": 9752,
+ "▁san": 9753,
+ "ruby": 9754,
+ "▁east": 9755,
+ "kov": 9756,
+ "▁Verlag": 9757,
+ "▁spot": 9758,
+ "ppo": 9759,
+ "Each": 9760,
+ "jekt": 9761,
+ "▁Biographie": 9762,
+ "▁news": 9763,
+ "▁país": 9764,
+ "ufact": 9765,
+ "▁dia": 9766,
+ "кова": 9767,
+ "▁accompl": 9768,
+ "▁Ét": 9769,
+ "ilities": 9770,
+ "▁ihm": 9771,
+ "invoke": 9772,
+ "▁append": 9773,
+ ".),": 9774,
+ "▁lab": 9775,
+ "anging": 9776,
+ "istan": 9777,
+ "resol": 9778,
+ "▁Section": 9779,
+ "Parent": 9780,
+ "moz": 9781,
+ "Mat": 9782,
+ "styles": 9783,
+ "unden": 9784,
+ "“,": 9785,
+ "irtschaft": 9786,
+ "ким": 9787,
+ "▁Finally": 9788,
+ "phen": 9789,
+ "▁Pac": 9790,
+ "▁ArrayList": 9791,
+ "▁recover": 9792,
+ "▁education": 9793,
+ "models": 9794,
+ "ped": 9795,
+ "▁happy": 9796,
+ "чу": 9797,
+ "▁guerra": 9798,
+ "media": 9799,
+ "OF": 9800,
+ "▁ensure": 9801,
+ "Mark": 9802,
+ "database": 9803,
+ "oggle": 9804,
+ "▁publish": 9805,
+ "OW": 9806,
+ "▁Bau": 9807,
+ "?.": 9808,
+ "▁части": 9809,
+ "▁repository": 9810,
+ "▁Matt": 9811,
+ "high": 9812,
+ "oven": 9813,
+ "▁ger": 9814,
+ "▁unknown": 9815,
+ "Amer": 9816,
+ "▁Brown": 9817,
+ "ALL": 9818,
+ "▁resulting": 9819,
+ "▁bor": 9820,
+ "▁poet": 9821,
+ "ними": 9822,
+ "Email": 9823,
+ "Font": 9824,
+ "▁hist": 9825,
+ "▁today": 9826,
+ "▁Berg": 9827,
+ "▁buttons": 9828,
+ "тал": 9829,
+ "▁sni": 9830,
+ "▁челов": 9831,
+ "Cre": 9832,
+ "▁union": 9833,
+ "▁zich": 9834,
+ "ishop": 9835,
+ "▁quando": 9836,
+ "Po": 9837,
+ "CTION": 9838,
+ "▁Cost": 9839,
+ "судар": 9840,
+ "erved": 9841,
+ "Note": 9842,
+ "Equal": 9843,
+ "лия": 9844,
+ "бур": 9845,
+ "▁abstract": 9846,
+ "stop": 9847,
+ "▁advice": 9848,
+ "▁icon": 9849,
+ "▁travel": 9850,
+ "BS": 9851,
+ "vens": 9852,
+ "▁batch": 9853,
+ "lique": 9854,
+ "sheet": 9855,
+ "▁ihre": 9856,
+ "emon": 9857,
+ "berto": 9858,
+ "▁assigned": 9859,
+ "ью": 9860,
+ "Phone": 9861,
+ "▁award": 9862,
+ "▁functionality": 9863,
+ "alla": 9864,
+ "▁Dam": 9865,
+ "▁ciudad": 9866,
+ "▁cluster": 9867,
+ "Description": 9868,
+ "▁sheet": 9869,
+ "▁Australian": 9870,
+ "▁».": 9871,
+ "▁\"<": 9872,
+ "▁wondering": 9873,
+ "aine": 9874,
+ "▁represented": 9875,
+ "kappa": 9876,
+ "nb": 9877,
+ "▁sy": 9878,
+ "▁Kö": 9879,
+ "=\"#": 9880,
+ "▁seven": 9881,
+ "Directory": 9882,
+ "▁sister": 9883,
+ "plates": 9884,
+ "▁luck": 9885,
+ "▁remaining": 9886,
+ "▁Vill": 9887,
+ "werk": 9888,
+ "anni": 9889,
+ "etti": 9890,
+ "func": 9891,
+ "▁ban": 9892,
+ "ims": 9893,
+ "miss": 9894,
+ "agraph": 9895,
+ "екси": 9896,
+ "▁Ref": 9897,
+ "nitt": 9898,
+ "▁Gab": 9899,
+ "▁andere": 9900,
+ "▁jedoch": 9901,
+ "results": 9902,
+ "!\\": 9903,
+ "▁listed": 9904,
+ "▁loro": 9905,
+ "▁knows": 9906,
+ "жно": 9907,
+ "Rad": 9908,
+ "▁socket": 9909,
+ "multi": 9910,
+ "▁рі": 9911,
+ "rails": 9912,
+ "▁tar": 9913,
+ "▁gentle": 9914,
+ "sett": 9915,
+ "services": 9916,
+ "bound": 9917,
+ "igkeit": 9918,
+ "aja": 9919,
+ "▁cmd": 9920,
+ "agger": 9921,
+ "▁ba": 9922,
+ "▁Belg": 9923,
+ "▁Kle": 9924,
+ "▁wordt": 9925,
+ "▁fost": 9926,
+ "▁dimension": 9927,
+ "Ang": 9928,
+ "uming": 9929,
+ "Obj": 9930,
+ "нен": 9931,
+ "▁Marie": 9932,
+ "exists": 9933,
+ "тро": 9934,
+ "▁боль": 9935,
+ "emente": 9936,
+ "▁Jon": 9937,
+ "SERT": 9938,
+ "▁highest": 9939,
+ "aki": 9940,
+ "▁tres": 9941,
+ "▁circum": 9942,
+ "▁Down": 9943,
+ "ommen": 9944,
+ "urer": 9945,
+ "▁causes": 9946,
+ "venue": 9947,
+ "issance": 9948,
+ "▁influence": 9949,
+ "▁fat": 9950,
+ "реди": 9951,
+ "}\\\\": 9952,
+ "▁entr": 9953,
+ "▁Sign": 9954,
+ "▁кла": 9955,
+ "▁binding": 9956,
+ "essen": 9957,
+ "▁Фран": 9958,
+ "▁Local": 9959,
+ "▁явля": 9960,
+ "appro": 9961,
+ "▁dependencies": 9962,
+ "▁talking": 9963,
+ "▁zurück": 9964,
+ "connection": 9965,
+ "Active": 9966,
+ "bbe": 9967,
+ "irls": 9968,
+ "▁Inf": 9969,
+ "wd": 9970,
+ "▁ис": 9971,
+ "road": 9972,
+ "▁conven": 9973,
+ "ět": 9974,
+ "вез": 9975,
+ "▁entries": 9976,
+ "esc": 9977,
+ "▁bits": 9978,
+ "asso": 9979,
+ "WR": 9980,
+ "ships": 9981,
+ "▁dés": 9982,
+ "esp": 9983,
+ "Make": 9984,
+ "▁familiar": 9985,
+ "Art": 9986,
+ "▁army": 9987,
+ "ctr": 9988,
+ "éric": 9989,
+ "queue": 9990,
+ "▁\\{": 9991,
+ "uela": 9992,
+ "amiento": 9993,
+ "ших": 9994,
+ "▁\"\"\"": 9995,
+ "contr": 9996,
+ "лле": 9997,
+ "FS": 9998,
+ "▁market": 9999,
+ "ång": 10000,
+ "citep": 10001,
+ "Ill": 10002,
+ "rank": 10003,
+ "▁sender": 10004,
+ "▁beim": 10005,
+ "рак": 10006,
+ "▁compat": 10007,
+ "▁occurs": 10008,
+ "▁diese": 10009,
+ "ститу": 10010,
+ "awa": 10011,
+ "▁iOS": 10012,
+ "▁Chinese": 10013,
+ "▁TR": 10014,
+ "▁Ken": 10015,
+ "▁Une": 10016,
+ "▁creates": 10017,
+ "▁showed": 10018,
+ "▁év": 10019,
+ "ologia": 10020,
+ "▁protest": 10021,
+ "▁Pf": 10022,
+ "▁squad": 10023,
+ "++,": 10024,
+ "áv": 10025,
+ "▁essere": 10026,
+ "зя": 10027,
+ "kol": 10028,
+ "▁slightly": 10029,
+ "addr": 10030,
+ "ân": 10031,
+ "▁reduce": 10032,
+ "▁\\(\\": 10033,
+ "▁Dep": 10034,
+ "▁generic": 10035,
+ "Loader": 10036,
+ "ți": 10037,
+ "▁пос": 10038,
+ "▁occasion": 10039,
+ "▁Lady": 10040,
+ "entity": 10041,
+ "▁avant": 10042,
+ "▁Pas": 10043,
+ "aggio": 10044,
+ "\\{": 10045,
+ "пад": 10046,
+ "atholic": 10047,
+ "Password": 10048,
+ "▁respond": 10049,
+ "▁Non": 10050,
+ "AG": 10051,
+ "neg": 10052,
+ "▁ус": 10053,
+ "blob": 10054,
+ "cke": 10055,
+ "▁Consider": 10056,
+ "▁Care": 10057,
+ "iki": 10058,
+ "▁Chicago": 10059,
+ "inden": 10060,
+ "▁Cop": 10061,
+ "]+": 10062,
+ "öm": 10063,
+ "évrier": 10064,
+ "кло": 10065,
+ "alen": 10066,
+ "▁maj": 10067,
+ "racy": 10068,
+ "orte": 10069,
+ "ients": 10070,
+ "ells": 10071,
+ "activity": 10072,
+ "▁runtime": 10073,
+ "NULL": 10074,
+ "▁possibly": 10075,
+ "▁stri": 10076,
+ "izi": 10077,
+ "▁mir": 10078,
+ "▁Version": 10079,
+ "prime": 10080,
+ "▁twenty": 10081,
+ "▁Mah": 10082,
+ "▁sounds": 10083,
+ "шен": 10084,
+ "clusion": 10085,
+ "acz": 10086,
+ "▁determined": 10087,
+ "▁Rep": 10088,
+ "▁Landes": 10089,
+ "▁wall": 10090,
+ "igi": 10091,
+ "▁reset": 10092,
+ "шо": 10093,
+ "yan": 10094,
+ "Met": 10095,
+ "ei": 10096,
+ "▁appearance": 10097,
+ "▁fois": 10098,
+ "▁nell": 10099,
+ "esi": 10100,
+ "ёт": 10101,
+ "loor": 10102,
+ "▁Ul": 10103,
+ "▁resolution": 10104,
+ "▁fot": 10105,
+ "▁throughout": 10106,
+ "▁ri": 10107,
+ "Level": 10108,
+ "pool": 10109,
+ "▁identity": 10110,
+ "▁janu": 10111,
+ "▁imper": 10112,
+ "▁över": 10113,
+ "}`": 10114,
+ "▁infer": 10115,
+ "▁dates": 10116,
+ "▁Standard": 10117,
+ "force": 10118,
+ "ockey": 10119,
+ "tera": 10120,
+ "▁distingu": 10121,
+ "▁presence": 10122,
+ "lica": 10123,
+ "▁leaving": 10124,
+ "itung": 10125,
+ "éb": 10126,
+ "▁establish": 10127,
+ "▁maar": 10128,
+ "adi": 10129,
+ "▁News": 10130,
+ "azon": 10131,
+ "folg": 10132,
+ "▁Hence": 10133,
+ "▁Ye": 10134,
+ "▁fab": 10135,
+ "▁führ": 10136,
+ "itmap": 10137,
+ "▁Vers": 10138,
+ "rov": 10139,
+ "Sign": 10140,
+ "device": 10141,
+ "Sigma": 10142,
+ "▁wetenschapp": 10143,
+ "▁Ps": 10144,
+ "PATH": 10145,
+ "▁torn": 10146,
+ "vest": 10147,
+ "стов": 10148,
+ "account": 10149,
+ "▁largest": 10150,
+ "▁percent": 10151,
+ "▁Women": 10152,
+ "▁img": 10153,
+ "tool": 10154,
+ "▁roce": 10155,
+ "▁ay": 10156,
+ "inet": 10157,
+ "▁août": 10158,
+ "▁polynomial": 10159,
+ "▁integral": 10160,
+ "▁areas": 10161,
+ "}'": 10162,
+ "▁hyp": 10163,
+ "loyee": 10164,
+ "таль": 10165,
+ "▁proxy": 10166,
+ "▁Wy": 10167,
+ "▁Мекси": 10168,
+ "▁escape": 10169,
+ "olar": 10170,
+ "▁mistake": 10171,
+ ")}{": 10172,
+ "▁Pot": 10173,
+ "▁processes": 10174,
+ "\">\r": 10175,
+ "halten": 10176,
+ "zza": 10177,
+ "amo": 10178,
+ "кре": 10179,
+ "▁Wood": 10180,
+ "ør": 10181,
+ "▁сер": 10182,
+ "ocia": 10183,
+ "two": 10184,
+ "profile": 10185,
+ "▁Ast": 10186,
+ "embro": 10187,
+ "▁arms": 10188,
+ "inas": 10189,
+ "innen": 10190,
+ "▁msg": 10191,
+ "INT": 10192,
+ "▁batter": 10193,
+ "ignment": 10194,
+ "▁vy": 10195,
+ "Hrsg": 10196,
+ "▁Grund": 10197,
+ "roc": 10198,
+ "seg": 10199,
+ "▁decor": 10200,
+ "▁eventually": 10201,
+ ">,": 10202,
+ "▁pag": 10203,
+ "anten": 10204,
+ "▁strugg": 10205,
+ "}^\\": 10206,
+ "daten": 10207,
+ "▁rela": 10208,
+ "пов": 10209,
+ "▁коро": 10210,
+ "▁Bos": 10211,
+ "▁labor": 10212,
+ "▁Secret": 10213,
+ "ugen": 10214,
+ "▁jap": 10215,
+ "▁husband": 10216,
+ "▁Album": 10217,
+ "▁etwa": 10218,
+ "▁произ": 10219,
+ "richt": 10220,
+ "rach": 10221,
+ "bat": 10222,
+ "▁prepar": 10223,
+ "▁Stock": 10224,
+ "▁lack": 10225,
+ "хід": 10226,
+ "▁hogy": 10227,
+ "▁Chrome": 10228,
+ "▁Admin": 10229,
+ "▁comparison": 10230,
+ "▁increasing": 10231,
+ "нг": 10232,
+ "imi": 10233,
+ "Db": 10234,
+ "▁gef": 10235,
+ "ucht": 10236,
+ "ése": 10237,
+ "gence": 10238,
+ "▁Core": 10239,
+ "▁incorrect": 10240,
+ "▁assuming": 10241,
+ "ourse": 10242,
+ "ieron": 10243,
+ "▁Theorem": 10244,
+ "▁casa": 10245,
+ "jes": 10246,
+ "▁дере": 10247,
+ "▁`\"": 10248,
+ "LD": 10249,
+ "äß": 10250,
+ "Deb": 10251,
+ "▁suiv": 10252,
+ "▁Bank": 10253,
+ "libs": 10254,
+ "▁Leon": 10255,
+ "▁quart": 10256,
+ "▁professional": 10257,
+ "▁tiene": 10258,
+ "▁accomp": 10259,
+ "стер": 10260,
+ "▁UK": 10261,
+ "NN": 10262,
+ "▁lí": 10263,
+ "ця": 10264,
+ "kel": 10265,
+ "▁•": 10266,
+ "▁dise": 10267,
+ "onto": 10268,
+ "▁má": 10269,
+ "ifs": 10270,
+ "bild": 10271,
+ "▁compute": 10272,
+ "▁éd": 10273,
+ "ję": 10274,
+ "▁Mé": 10275,
+ "▁languages": 10276,
+ "▁Times": 10277,
+ "cen": 10278,
+ "▁авто": 10279,
+ "ým": 10280,
+ "enez": 10281,
+ "▁upp": 10282,
+ "▁méd": 10283,
+ "▁cuando": 10284,
+ "од": 10285,
+ "Intent": 10286,
+ "eerd": 10287,
+ "▁Tal": 10288,
+ "offset": 10289,
+ "▁haben": 10290,
+ "reme": 10291,
+ "▁Stack": 10292,
+ "▁dri": 10293,
+ "▁seinem": 10294,
+ "▁février": 10295,
+ "▁combination": 10296,
+ "▁soll": 10297,
+ "▁movement": 10298,
+ "Spec": 10299,
+ "кры": 10300,
+ "retch": 10301,
+ "Offset": 10302,
+ "Root": 10303,
+ "Ар": 10304,
+ "wart": 10305,
+ "▁Follow": 10306,
+ "▁Social": 10307,
+ "ников": 10308,
+ "▁→": 10309,
+ "Don": 10310,
+ "▁harm": 10311,
+ "agr": 10312,
+ "nego": 10313,
+ "resource": 10314,
+ "▁Luc": 10315,
+ "▁seinen": 10316,
+ "▁Department": 10317,
+ "▁Update": 10318,
+ "▁Texas": 10319,
+ "▁reve": 10320,
+ "▁Pos": 10321,
+ "▁shot": 10322,
+ "othe": 10323,
+ "▁repeated": 10324,
+ "▁recently": 10325,
+ "ában": 10326,
+ "aks": 10327,
+ "пан": 10328,
+ "▁cha": 10329,
+ "ohl": 10330,
+ "▁tend": 10331,
+ "▁дво": 10332,
+ "chts": 10333,
+ "çaise": 10334,
+ "pling": 10335,
+ "album": 10336,
+ "ej": 10337,
+ "▁`[": 10338,
+ "maps": 10339,
+ "▁units": 10340,
+ "▁": 15110,
+ "▁pří": 15111,
+ "pandas": 15112,
+ "▁Plus": 15113,
+ "yll": 15114,
+ "▁terror": 15115,
+ "▁crim": 15116,
+ "▁zak": 15117,
+ "issue": 15118,
+ "panel": 15119,
+ "svg": 15120,
+ "▁reb": 15121,
+ "Customer": 15122,
+ "switch": 15123,
+ "обра": 15124,
+ "▁Championships": 15125,
+ "clo": 15126,
+ "atte": 15127,
+ "▁anymore": 15128,
+ "▁excellent": 15129,
+ "▁opportunity": 15130,
+ "▁Bahn": 15131,
+ "чин": 15132,
+ "eting": 15133,
+ "▁incident": 15134,
+ "tom": 15135,
+ "Pers": 15136,
+ "bben": 15137,
+ "ственной": 15138,
+ "их": 15139,
+ "router": 15140,
+ "▁newly": 15141,
+ "▁silence": 15142,
+ "▁GNU": 15143,
+ "▁Rails": 15144,
+ "▁Amb": 15145,
+ "▁Qual": 15146,
+ "▁Schaus": 15147,
+ "▁Sohn": 15148,
+ "▁ALL": 15149,
+ "▁royal": 15150,
+ "▁£": 15151,
+ "wię": 15152,
+ "▁entfer": 15153,
+ "▁Remove": 15154,
+ "▁hardly": 15155,
+ "Using": 15156,
+ "лог": 15157,
+ "▁Ich": 15158,
+ "▁derni": 15159,
+ "▁Connection": 15160,
+ "fish": 15161,
+ "▁Inform": 15162,
+ "▁Ener": 15163,
+ "roit": 15164,
+ "Bbb": 15165,
+ "ViewModel": 15166,
+ "Video": 15167,
+ "iley": 15168,
+ "▁много": 15169,
+ "▁Gem": 15170,
+ "▁compreh": 15171,
+ "enumerate": 15172,
+ "ulas": 15173,
+ "▁Bah": 15174,
+ "▁Yet": 15175,
+ "BR": 15176,
+ "хра": 15177,
+ "▁county": 15178,
+ "▁Hist": 15179,
+ "▁Гу": 15180,
+ "▁Ј": 15181,
+ "▁mari": 15182,
+ "▁Clar": 15183,
+ "Bitmap": 15184,
+ "▁Cz": 15185,
+ "▁mån": 15186,
+ "▁mere": 15187,
+ "▁musique": 15188,
+ "also": 15189,
+ "dates": 15190,
+ "▁DVD": 15191,
+ "▁gol": 15192,
+ "fony": 15193,
+ "▁Castle": 15194,
+ "▁фами": 15195,
+ "▁arrang": 15196,
+ "▁Business": 15197,
+ "▁Kaz": 15198,
+ "▁osc": 15199,
+ "▁secolo": 15200,
+ "▁affected": 15201,
+ "▁Health": 15202,
+ "reb": 15203,
+ "editor": 15204,
+ "▁owned": 15205,
+ "tl": 15206,
+ "▁ví": 15207,
+ "чних": 15208,
+ "кви": 15209,
+ "▁devient": 15210,
+ "Mutable": 15211,
+ "▁tegen": 15212,
+ "Register": 15213,
+ "єю": 15214,
+ "▁caracter": 15215,
+ "лли": 15216,
+ "▁nouvelle": 15217,
+ "oko": 15218,
+ "ichtet": 15219,
+ "▁evol": 15220,
+ "▁Hab": 15221,
+ "▁militar": 15222,
+ "▁puts": 15223,
+ "endif": 15224,
+ "▁Davis": 15225,
+ "▁Scotland": 15226,
+ "regular": 15227,
+ "▁Context": 15228,
+ "ispiel": 15229,
+ "▁Gallery": 15230,
+ "\",\r": 15231,
+ "▁arc": 15232,
+ "▁INFO": 15233,
+ "▁cod": 15234,
+ "дів": 15235,
+ "▁varchar": 15236,
+ "▁toujours": 15237,
+ "atial": 15238,
+ "▁hanno": 15239,
+ "▁профес": 15240,
+ "▁launched": 15241,
+ "▁населення": 15242,
+ "▁ton": 15243,
+ "aused": 15244,
+ "▁із": 15245,
+ "▁tö": 15246,
+ "▁Pur": 15247,
+ "▁olymp": 15248,
+ "ARN": 15249,
+ "óm": 15250,
+ "▁august": 15251,
+ "▁furn": 15252,
+ "▁Colomb": 15253,
+ "▁Staats": 15254,
+ "hora": 15255,
+ "▁мор": 15256,
+ "canvas": 15257,
+ "▁grave": 15258,
+ "▁composition": 15259,
+ "acja": 15260,
+ "▁которые": 15261,
+ "▁чо": 15262,
+ "General": 15263,
+ "ані": 15264,
+ "▁Johannes": 15265,
+ "кар": 15266,
+ "▁част": 15267,
+ "▁Васи": 15268,
+ "ssh": 15269,
+ "▁replacing": 15270,
+ "▁<>": 15271,
+ "ців": 15272,
+ "laus": 15273,
+ "eny": 15274,
+ "ähl": 15275,
+ "▁marg": 15276,
+ "cience": 15277,
+ "▁instruction": 15278,
+ "▁који": 15279,
+ "Editor": 15280,
+ "▁fundamental": 15281,
+ "mund": 15282,
+ "▁exceptions": 15283,
+ "▁plate": 15284,
+ "▁Lis": 15285,
+ "▁deren": 15286,
+ "prep": 15287,
+ "▁januari": 15288,
+ "Scope": 15289,
+ "ynast": 15290,
+ "rv": 15291,
+ "orsz": 15292,
+ "▁Tony": 15293,
+ "▁ді": 15294,
+ "▁одна": 15295,
+ "▁sab": 15296,
+ "oti": 15297,
+ "jel": 15298,
+ "▁generator": 15299,
+ "▁'.": 15300,
+ "▁sharp": 15301,
+ "▁только": 15302,
+ "▁accounts": 15303,
+ "▁že": 15304,
+ "▁foram": 15305,
+ "▁gouvern": 15306,
+ "TIME": 15307,
+ "▁Soviet": 15308,
+ "▁Gé": 15309,
+ "▁exped": 15310,
+ "▁ordinary": 15311,
+ "▁Conserv": 15312,
+ "▁compla": 15313,
+ "tei": 15314,
+ "▁captain": 15315,
+ "▁Samuel": 15316,
+ "▁Dark": 15317,
+ "▁він": 15318,
+ "▁delight": 15319,
+ "recht": 15320,
+ "dia": 15321,
+ "esses": 15322,
+ "ulp": 15323,
+ "шки": 15324,
+ "bez": 15325,
+ "▁detection": 15326,
+ "▁cookie": 15327,
+ "antry": 15328,
+ "Multi": 15329,
+ "oba": 15330,
+ "▁joy": 15331,
+ "▁safety": 15332,
+ "|^": 15333,
+ "pod": 15334,
+ "adém": 15335,
+ "▁Chron": 15336,
+ "▁Django": 15337,
+ "▁ehemal": 15338,
+ "kh": 15339,
+ "èle": 15340,
+ "▁poc": 15341,
+ "Bottom": 15342,
+ "launch": 15343,
+ "nem": 15344,
+ "▁GROUP": 15345,
+ "ního": 15346,
+ "▁Gib": 15347,
+ "sdk": 15348,
+ "BE": 15349,
+ "▁Gene": 15350,
+ "▁Staff": 15351,
+ "▁subsequent": 15352,
+ "icion": 15353,
+ "▁victory": 15354,
+ "▁canon": 15355,
+ "izar": 15356,
+ "izia": 15357,
+ "▁mate": 15358,
+ "▁layers": 15359,
+ "sudo": 15360,
+ "schule": 15361,
+ "periment": 15362,
+ "ület": 15363,
+ "ARCHAR": 15364,
+ "▁террито": 15365,
+ "▁measures": 15366,
+ "▁zou": 15367,
+ "opsis": 15368,
+ "нами": 15369,
+ "tbody": 15370,
+ "▁ese": 15371,
+ "sterdam": 15372,
+ "▁photo": 15373,
+ "ynchronous": 15374,
+ "setminus": 15375,
+ "▁loads": 15376,
+ "▁pleasure": 15377,
+ "▁meille": 15378,
+ "}\\,": 15379,
+ "qual": 15380,
+ "▁favour": 15381,
+ "▁rod": 15382,
+ "Der": 15383,
+ "рабо": 15384,
+ "▁pressed": 15385,
+ "rę": 15386,
+ "ieving": 15387,
+ "material": 15388,
+ "virt": 15389,
+ "▁capable": 15390,
+ "сло": 15391,
+ "ushed": 15392,
+ "▁побе": 15393,
+ "usetts": 15394,
+ "unsigned": 15395,
+ "ków": 15396,
+ "▁ov": 15397,
+ "egeben": 15398,
+ "▁applying": 15399,
+ "▁galax": 15400,
+ "▁Oracle": 15401,
+ "▁Stuttgart": 15402,
+ "Infl": 15403,
+ "achusetts": 15404,
+ "▁deel": 15405,
+ "lire": 15406,
+ "▁statunit": 15407,
+ "▁Politiker": 15408,
+ "▁beauty": 15409,
+ ")>": 15410,
+ "▁Columbia": 15411,
+ "▁zewnętrzne": 15412,
+ "▁програ": 15413,
+ "▁dx": 15414,
+ "cknow": 15415,
+ "▁dub": 15416,
+ "unächst": 15417,
+ "findViewById": 15418,
+ "▁Mand": 15419,
+ "áll": 15420,
+ "naire": 15421,
+ "▁destin": 15422,
+ "isting": 15423,
+ "aggi": 15424,
+ "chart": 15425,
+ "▁justice": 15426,
+ "Simple": 15427,
+ "▁unfortunately": 15428,
+ "ір": 15429,
+ "▁questa": 15430,
+ "▁Governor": 15431,
+ "яв": 15432,
+ "▁música": 15433,
+ "▁equipo": 15434,
+ "▁Dest": 15435,
+ "elect": 15436,
+ "StackTrace": 15437,
+ "зом": 15438,
+ "proc": 15439,
+ "entin": 15440,
+ "adora": 15441,
+ "▁Лю": 15442,
+ "▁registered": 15443,
+ "HL": 15444,
+ "facebook": 15445,
+ "▁storing": 15446,
+ "▁Currently": 15447,
+ "▁quadr": 15448,
+ "Standard": 15449,
+ "trim": 15450,
+ "ears": 15451,
+ "sender": 15452,
+ "▁Vas": 15453,
+ "▁edific": 15454,
+ "▁Bür": 15455,
+ "▁Country": 15456,
+ "tha": 15457,
+ ";\"": 15458,
+ "nor": 15459,
+ "▁Doctor": 15460,
+ "rument": 15461,
+ "Gen": 15462,
+ "▁Buen": 15463,
+ "rade": 15464,
+ "▁kun": 15465,
+ "navigation": 15466,
+ "Pay": 15467,
+ "▁captured": 15468,
+ "▁struck": 15469,
+ "venir": 15470,
+ "ément": 15471,
+ "▁Tree": 15472,
+ "▁xx": 15473,
+ "▁narr": 15474,
+ "льного": 15475,
+ "▁installing": 15476,
+ "▁association": 15477,
+ "▁inserted": 15478,
+ "erner": 15479,
+ "validate": 15480,
+ "▁lut": 15481,
+ "▁glo": 15482,
+ "▁technology": 15483,
+ "▁Place": 15484,
+ "$?": 15485,
+ "▁zv": 15486,
+ "слі": 15487,
+ "EP": 15488,
+ "▁atmos": 15489,
+ "ugo": 15490,
+ "ért": 15491,
+ "▁Werk": 15492,
+ "▁%}": 15493,
+ "tele": 15494,
+ "Span": 15495,
+ "▁Raj": 15496,
+ "▁Personen": 15497,
+ "▁Cant": 15498,
+ "▁combat": 15499,
+ "▁observation": 15500,
+ "parameter": 15501,
+ "▁agreed": 15502,
+ "pur": 15503,
+ "▁shadow": 15504,
+ "▁gł": 15505,
+ "Keys": 15506,
+ "Cred": 15507,
+ "ouri": 15508,
+ "▁pale": 15509,
+ "ické": 15510,
+ "▁Week": 15511,
+ "▁Prime": 15512,
+ ">.": 15513,
+ "Initial": 15514,
+ "▁один": 15515,
+ "▁'',": 15516,
+ "▁учи": 15517,
+ "▁Inv": 15518,
+ "cola": 15519,
+ "cible": 15520,
+ "▁Theatre": 15521,
+ "▁bem": 15522,
+ "▁satisfy": 15523,
+ "xl": 15524,
+ "▁разви": 15525,
+ "▁pixel": 15526,
+ "lán": 15527,
+ "▁twee": 15528,
+ "çon": 15529,
+ "нения": 15530,
+ "▁AT": 15531,
+ "ège": 15532,
+ "▁Mort": 15533,
+ "▁mysq": 15534,
+ "ften": 15535,
+ "▁пес": 15536,
+ "éma": 15537,
+ "▁Services": 15538,
+ "customer": 15539,
+ "▁AWS": 15540,
+ "ът": 15541,
+ "▁Ach": 15542,
+ "%.": 15543,
+ "▁clarify": 15544,
+ "▁университе": 15545,
+ "xture": 15546,
+ "umi": 15547,
+ "▁så": 15548,
+ "▁Pel": 15549,
+ "serial": 15550,
+ "URI": 15551,
+ "▁rg": 15552,
+ "▁соста": 15553,
+ "chestra": 15554,
+ "].[": 15555,
+ "wen": 15556,
+ "▁Londres": 15557,
+ "▁anys": 15558,
+ "DataSource": 15559,
+ "▁районе": 15560,
+ "▁rein": 15561,
+ "▁metadata": 15562,
+ "umble": 15563,
+ "arbeit": 15564,
+ "hner": 15565,
+ "cient": 15566,
+ "▁norte": 15567,
+ "▁она": 15568,
+ "▁scored": 15569,
+ "▁ray": 15570,
+ "▁февра": 15571,
+ "▁protagon": 15572,
+ "▁Sac": 15573,
+ "▁commonly": 15574,
+ "LinearLayout": 15575,
+ "▁applic": 15576,
+ "▁мая": 15577,
+ "За": 15578,
+ "▁accessible": 15579,
+ "iewer": 15580,
+ "flag": 15581,
+ "▁Rück": 15582,
+ "äu": 15583,
+ "▁erano": 15584,
+ "▁authentic": 15585,
+ "▁Ry": 15586,
+ "▁неско": 15587,
+ "▁embargo": 15588,
+ "▁dry": 15589,
+ "▁reasonable": 15590,
+ "▁Module": 15591,
+ "▁acceler": 15592,
+ "▁interview": 15593,
+ "▁Creek": 15594,
+ "▁alpha": 15595,
+ "serie": 15596,
+ "They": 15597,
+ "ючи": 15598,
+ "▁Hof": 15599,
+ "▁CR": 15600,
+ "modal": 15601,
+ "▁sequences": 15602,
+ "closed": 15603,
+ ")}$": 15604,
+ "▁Чер": 15605,
+ "▁ORDER": 15606,
+ "Rightarrow": 15607,
+ "hausen": 15608,
+ "}}_": 15609,
+ "▁també": 15610,
+ "▁magnetic": 15611,
+ "▁McC": 15612,
+ "▁winning": 15613,
+ "underline": 15614,
+ "▁Billboard": 15615,
+ "naio": 15616,
+ "▁liqu": 15617,
+ "displaystyle": 15618,
+ "timeout": 15619,
+ "▁considerable": 15620,
+ "▁eben": 15621,
+ "ifferent": 15622,
+ "anu": 15623,
+ "▁Сов": 15624,
+ "[(": 15625,
+ "▁:-)": 15626,
+ "leitung": 15627,
+ "formed": 15628,
+ "▁Manager": 15629,
+ "▁onclick": 15630,
+ "TY": 15631,
+ "тах": 15632,
+ "CV": 15633,
+ "runtime": 15634,
+ "poque": 15635,
+ "▁Ло": 15636,
+ "Temp": 15637,
+ "loaded": 15638,
+ "▁!==": 15639,
+ "▁singer": 15640,
+ "far": 15641,
+ "▁Comple": 15642,
+ "▁Österreich": 15643,
+ "Policy": 15644,
+ "▁worker": 15645,
+ "Wrapper": 15646,
+ "obi": 15647,
+ "▁discussed": 15648,
+ "▁buy": 15649,
+ "▁января": 15650,
+ "▁Din": 15651,
+ "▁ged": 15652,
+ "ској": 15653,
+ "Europe": 15654,
+ "▁tall": 15655,
+ "hos": 15656,
+ "лаго": 15657,
+ "▁Block": 15658,
+ "▁identified": 15659,
+ "ListView": 15660,
+ "▁attempting": 15661,
+ "▁typical": 15662,
+ "psum": 15663,
+ "oster": 15664,
+ "▁журна": 15665,
+ "Pe": 15666,
+ "merce": 15667,
+ "▁unexpected": 15668,
+ "hui": 15669,
+ "letter": 15670,
+ "▁nuevo": 15671,
+ "▁або": 15672,
+ "▁VALUES": 15673,
+ "▁Iz": 15674,
+ "Flags": 15675,
+ "▁TRUE": 15676,
+ "ización": 15677,
+ "▁growing": 15678,
+ "estre": 15679,
+ "▁poly": 15680,
+ "▁Stone": 15681,
+ "▁VIII": 15682,
+ "▁localhost": 15683,
+ "ählt": 15684,
+ "▁embedded": 15685,
+ "jdbc": 15686,
+ "▁convention": 15687,
+ "▁scala": 15688,
+ "сок": 15689,
+ "▁analog": 15690,
+ "▁\"+": 15691,
+ "цю": 15692,
+ "occ": 15693,
+ "▁litt": 15694,
+ "PN": 15695,
+ "▁актив": 15696,
+ "attributes": 15697,
+ "▁Ferd": 15698,
+ "▁azure": 15699,
+ "ști": 15700,
+ "ños": 15701,
+ "ping": 15702,
+ "▁teacher": 15703,
+ "}&": 15704,
+ "ipe": 15705,
+ "▁Nob": 15706,
+ "▁има": 15707,
+ "Bind": 15708,
+ "▁magic": 15709,
+ "▁Transport": 15710,
+ "ixel": 15711,
+ "▁computed": 15712,
+ "agna": 15713,
+ "erst": 15714,
+ "HA": 15715,
+ "Wait": 15716,
+ "▁authors": 15717,
+ "▁;)": 15718,
+ "clam": 15719,
+ "▁Pennsylvan": 15720,
+ "▁drug": 15721,
+ "▁vain": 15722,
+ "▁employed": 15723,
+ "▁individuals": 15724,
+ "▁ange": 15725,
+ "utat": 15726,
+ "▁$-": 15727,
+ "correct": 15728,
+ "▁experiments": 15729,
+ "Argument": 15730,
+ "▁IB": 15731,
+ "▁père": 15732,
+ "▁Brian": 15733,
+ "berger": 15734,
+ "Mac": 15735,
+ "iast": 15736,
+ "Perm": 15737,
+ "Cast": 15738,
+ "▁{};": 15739,
+ "▁Student": 15740,
+ "▁statt": 15741,
+ "algebra": 15742,
+ "▁equals": 15743,
+ "▁projet": 15744,
+ "▁président": 15745,
+ "ActivityThread": 15746,
+ "▁einz": 15747,
+ "enia": 15748,
+ "rez": 15749,
+ "essional": 15750,
+ "▁августа": 15751,
+ "override": 15752,
+ "news": 15753,
+ "▁planet": 15754,
+ "nn": 15755,
+ "▁Wis": 15756,
+ "твер": 15757,
+ "▁Valid": 15758,
+ "▁Gef": 15759,
+ "град": 15760,
+ "▁eig": 15761,
+ "antom": 15762,
+ "▁Meister": 15763,
+ "flags": 15764,
+ "fficiale": 15765,
+ "шая": 15766,
+ "-,": 15767,
+ "ationen": 15768,
+ "mouse": 15769,
+ "standard": 15770,
+ "Single": 15771,
+ "▁bol": 15772,
+ "isis": 15773,
+ "▁fruit": 15774,
+ "course": 15775,
+ "itants": 15776,
+ "▁étaient": 15777,
+ "TextField": 15778,
+ "▁фон": 15779,
+ "▁aircraft": 15780,
+ "▁ISSN": 15781,
+ "▁western": 15782,
+ "▁representing": 15783,
+ "Esp": 15784,
+ "▁Else": 15785,
+ "▁sizes": 15786,
+ "▁satisfied": 15787,
+ "otos": 15788,
+ "UD": 15789,
+ "Final": 15790,
+ "ój": 15791,
+ "ève": 15792,
+ "▁Roy": 15793,
+ "ffen": 15794,
+ "▁salt": 15795,
+ "▁Label": 15796,
+ "Sk": 15797,
+ "▁кре": 15798,
+ "▁Литература": 15799,
+ "▁см": 15800,
+ "Attributes": 15801,
+ "aye": 15802,
+ "ськ": 15803,
+ "▁высо": 15804,
+ "-)": 15805,
+ "oses": 15806,
+ "calcul": 15807,
+ "▁Cannot": 15808,
+ "Generic": 15809,
+ "emo": 15810,
+ "▁Autor": 15811,
+ "лён": 15812,
+ "лага": 15813,
+ "vote": 15814,
+ "licates": 15815,
+ "rus": 15816,
+ "éli": 15817,
+ "opf": 15818,
+ "atique": 15819,
+ "scala": 15820,
+ "▁Ohio": 15821,
+ "▁Britann": 15822,
+ "▁bef": 15823,
+ "▁Евро": 15824,
+ "▁Career": 15825,
+ "isée": 15826,
+ "ót": 15827,
+ "bose": 15828,
+ "▁Бер": 15829,
+ "▁Controller": 15830,
+ "pole": 15831,
+ "▁allen": 15832,
+ "▁hack": 15833,
+ "▁extent": 15834,
+ "▁calci": 15835,
+ "Mer": 15836,
+ "▁summary": 15837,
+ "Mart": 15838,
+ "▁historical": 15839,
+ "imat": 15840,
+ "bud": 15841,
+ "▁FOR": 15842,
+ "export": 15843,
+ "edi": 15844,
+ "Mapping": 15845,
+ "▁Ay": 15846,
+ "▁Ruby": 15847,
+ "▁definitions": 15848,
+ "▁{$": 15849,
+ "▁yours": 15850,
+ "rias": 15851,
+ "Touch": 15852,
+ "▁Gaz": 15853,
+ "▁Autom": 15854,
+ "▁истори": 15855,
+ "▁delen": 15856,
+ "▁Kinder": 15857,
+ "}}%": 15858,
+ "▁performing": 15859,
+ "FR": 15860,
+ "▁Sig": 15861,
+ "▁Brad": 15862,
+ "bras": 15863,
+ "▁Jar": 15864,
+ "pkg": 15865,
+ "wr": 15866,
+ "▁Pays": 15867,
+ "NC": 15868,
+ "▁opposed": 15869,
+ "Try": 15870,
+ "▁везе": 15871,
+ "▁Bog": 15872,
+ "▁writes": 15873,
+ "▁stories": 15874,
+ "▁mater": 15875,
+ "▁stagione": 15876,
+ "▁sty": 15877,
+ "▁compatible": 15878,
+ "heast": 15879,
+ "▁Guy": 15880,
+ "egründ": 15881,
+ "▁identifier": 15882,
+ "▁heads": 15883,
+ "пози": 15884,
+ "▁stup": 15885,
+ "▁tf": 15886,
+ "▁још": 15887,
+ "▁Hugh": 15888,
+ "▁cards": 15889,
+ "ovy": 15890,
+ "▁Toast": 15891,
+ "allas": 15892,
+ "▁públic": 15893,
+ "▁assumes": 15894,
+ "▁чемпиона": 15895,
+ "ycler": 15896,
+ "▁Junior": 15897,
+ "▁Fich": 15898,
+ "▁estimated": 15899,
+ "zerw": 15900,
+ "dialog": 15901,
+ "шин": 15902,
+ "shell": 15903,
+ "▁них": 15904,
+ "▁pitch": 15905,
+ "дол": 15906,
+ "outube": 15907,
+ "▁Santi": 15908,
+ "OnClickListener": 15909,
+ "▁Magyar": 15910,
+ "▁vue": 15911,
+ "ião": 15912,
+ "▁`#": 15913,
+ "collect": 15914,
+ "▁Rou": 15915,
+ "analysis": 15916,
+ "istrzost": 15917,
+ "▁Digital": 15918,
+ "▁crist": 15919,
+ "riere": 15920,
+ "▁campo": 15921,
+ "Us": 15922,
+ "▁circa": 15923,
+ "▁Component": 15924,
+ "▁NSString": 15925,
+ "pd": 15926,
+ "▁prince": 15927,
+ "▁invoke": 15928,
+ "▁Marine": 15929,
+ "Allow": 15930,
+ "estic": 15931,
+ "ристи": 15932,
+ "bone": 15933,
+ "туры": 15934,
+ "▁passion": 15935,
+ "áció": 15936,
+ "▁orn": 15937,
+ "вед": 15938,
+ "▁invari": 15939,
+ "▁ні": 15940,
+ "Remove": 15941,
+ "encies": 15942,
+ "ilib": 15943,
+ "▁Director": 15944,
+ "\"\"": 15945,
+ "▁Conse": 15946,
+ "googleapis": 15947,
+ "ók": 15948,
+ "▁Укра": 15949,
+ "▁Having": 15950,
+ "Domain": 15951,
+ "ierz": 15952,
+ "нологи": 15953,
+ "Cho": 15954,
+ "undefined": 15955,
+ "alloc": 15956,
+ "▁pied": 15957,
+ "▁fraction": 15958,
+ "bia": 15959,
+ "▁поло": 15960,
+ "ugno": 15961,
+ "minister": 15962,
+ "▁principale": 15963,
+ "▁refused": 15964,
+ "browser": 15965,
+ "*,": 15966,
+ "▁Hospital": 15967,
+ "▁universal": 15968,
+ "▁Ernst": 15969,
+ "who": 15970,
+ "▁Gard": 15971,
+ "'_": 15972,
+ "conde": 15973,
+ "▁[{": 15974,
+ "sob": 15975,
+ "▁Crit": 15976,
+ "▁декабря": 15977,
+ "▁punto": 15978,
+ "▁eingesetzt": 15979,
+ "▁tör": 15980,
+ "▁Ni": 15981,
+ "▁worry": 15982,
+ "▁legend": 15983,
+ "▁були": 15984,
+ "▁komm": 15985,
+ "rijk": 15986,
+ "effect": 15987,
+ "Ori": 15988,
+ "RES": 15989,
+ "▁Peters": 15990,
+ "▁Baron": 15991,
+ "▁Got": 15992,
+ "▁honest": 15993,
+ "äre": 15994,
+ "ász": 15995,
+ "▁noble": 15996,
+ "▁conclusion": 15997,
+ "▁formatting": 15998,
+ "▁otto": 15999,
+ "▁deleg": 16000,
+ "мб": 16001,
+ "ptop": 16002,
+ "▁sends": 16003,
+ "urname": 16004,
+ "▁festival": 16005,
+ ",": 16006,
+ "рус": 16007,
+ "▁doch": 16008,
+ "subject": 16009,
+ "▁careful": 16010,
+ "quent": 16011,
+ "▁Load": 16012,
+ "temperaturen": 16013,
+ "▁rue": 16014,
+ "Memory": 16015,
+ "ța": 16016,
+ "iona": 16017,
+ "▁dentro": 16018,
+ "▁begann": 16019,
+ "▁Aqu": 16020,
+ "▁scientific": 16021,
+ "kań": 16022,
+ "лок": 16023,
+ "elde": 16024,
+ "▁Those": 16025,
+ "quier": 16026,
+ "actér": 16027,
+ "▁Auflage": 16028,
+ ")'": 16029,
+ "▁gradient": 16030,
+ "integer": 16031,
+ "▁Import": 16032,
+ "SK": 16033,
+ "▁Status": 16034,
+ "▁explo": 16035,
+ "AE": 16036,
+ "Shell": 16037,
+ "▁Paulo": 16038,
+ ".»": 16039,
+ "}": 16040,
+ "flex": 16041,
+ "▁комп": 16042,
+ "onden": 16043,
+ "accept": 16044,
+ "▁miejsce": 16045,
+ "Hub": 16046,
+ "alleng": 16047,
+ "WN": 16048,
+ "▁implementing": 16049,
+ "▁лу": 16050,
+ "▁confusing": 16051,
+ "▁Install": 16052,
+ "▁rou": 16053,
+ "▁проек": 16054,
+ "Accessor": 16055,
+ "љашње": 16056,
+ "odio": 16057,
+ "▁applies": 16058,
+ "ющий": 16059,
+ "▁Mundial": 16060,
+ "État": 16061,
+ "ietnam": 16062,
+ "hum": 16063,
+ "▁сбор": 16064,
+ "ordinate": 16065,
+ "France": 16066,
+ "▁prend": 16067,
+ "eltemperaturen": 16068,
+ "▁trabaj": 16069,
+ "Axis": 16070,
+ "▁мно": 16071,
+ "primary": 16072,
+ "▁Seite": 16073,
+ "permission": 16074,
+ "▁orden": 16075,
+ "since": 16076,
+ "▁ic": 16077,
+ "▁Brazil": 16078,
+ "▁bare": 16079,
+ "▁Nar": 16080,
+ "▁Jur": 16081,
+ "▁freedom": 16082,
+ "▁medical": 16083,
+ "ischof": 16084,
+ "▁сп": 16085,
+ "ież": 16086,
+ "▁bootstrap": 16087,
+ "▁…": 16088,
+ "▁facil": 16089,
+ "cord": 16090,
+ "ване": 16091,
+ "▁Allen": 16092,
+ "avid": 16093,
+ "ingham": 16094,
+ "zas": 16095,
+ "▁inspect": 16096,
+ "itten": 16097,
+ "osti": 16098,
+ "uh": 16099,
+ "cé": 16100,
+ "▁#####": 16101,
+ "cius": 16102,
+ "omy": 16103,
+ "▁Seine": 16104,
+ "bres": 16105,
+ "▁genus": 16106,
+ "Other": 16107,
+ "▁Golden": 16108,
+ "mul": 16109,
+ "▁Спољашње": 16110,
+ "▁gennaio": 16111,
+ "▁carefully": 16112,
+ "aal": 16113,
+ "▁analyt": 16114,
+ "neur": 16115,
+ "▁stretch": 16116,
+ "▁Occ": 16117,
+ "olas": 16118,
+ "▁firebase": 16119,
+ "▁expecting": 16120,
+ "basic": 16121,
+ "condition": 16122,
+ "prov": 16123,
+ "▁Wasser": 16124,
+ "▁concaten": 16125,
+ "▁evil": 16126,
+ "▁coefficients": 16127,
+ "West": 16128,
+ "iry": 16129,
+ "phas": 16130,
+ "▁Jam": 16131,
+ "fois": 16132,
+ "▁consid": 16133,
+ "▁mainten": 16134,
+ "nim": 16135,
+ "esser": 16136,
+ "esz": 16137,
+ "unta": 16138,
+ "uest": 16139,
+ "▁credentials": 16140,
+ "_;": 16141,
+ "Dim": 16142,
+ "преде": 16143,
+ "▁Bü": 16144,
+ "built": 16145,
+ "▁Academ": 16146,
+ "▁audi": 16147,
+ "▁två": 16148,
+ "inand": 16149,
+ "▁Theater": 16150,
+ "▁genre": 16151,
+ "ços": 16152,
+ "gresql": 16153,
+ "▁weap": 16154,
+ "▁Rab": 16155,
+ "▁’": 16156,
+ "▁adult": 16157,
+ "▁dém": 16158,
+ "``": 16159,
+ "▁stabil": 16160,
+ "▁corresponds": 16161,
+ "▁Eastern": 16162,
+ "unnel": 16163,
+ "Worker": 16164,
+ "▁coh": 16165,
+ "лка": 16166,
+ "▁Massachusetts": 16167,
+ "pio": 16168,
+ "▁ports": 16169,
+ "agg": 16170,
+ "▁Debug": 16171,
+ "▁breath": 16172,
+ "MIN": 16173,
+ "Variable": 16174,
+ "batch": 16175,
+ "ссе": 16176,
+ "▁preg": 16177,
+ "▁roles": 16178,
+ "paste": 16179,
+ "▁referenced": 16180,
+ "adrat": 16181,
+ "чё": 16182,
+ "binom": 16183,
+ "▁defining": 16184,
+ "▁Budapest": 16185,
+ "▁дви": 16186,
+ "▁taught": 16187,
+ "▁hole": 16188,
+ "▁quella": 16189,
+ "Msg": 16190,
+ "aska": 16191,
+ "scan": 16192,
+ "▁propose": 16193,
+ "▁Биография": 16194,
+ "{{\\": 16195,
+ "textt": 16196,
+ "▁Alb": 16197,
+ "▁Sydney": 16198,
+ "▁backup": 16199,
+ "▁credit": 16200,
+ "▁францу": 16201,
+ "stats": 16202,
+ "\\\":": 16203,
+ "▁Пере": 16204,
+ "▁accordingly": 16205,
+ "▁Len": 16206,
+ "zna": 16207,
+ "▁Regional": 16208,
+ "▁изда": 16209,
+ "▁jú": 16210,
+ "histor": 16211,
+ "▁entities": 16212,
+ "Star": 16213,
+ "оне": 16214,
+ "']['": 16215,
+ "▁Nova": 16216,
+ "die": 16217,
+ "▁`'": 16218,
+ "▁obten": 16219,
+ "anst": 16220,
+ "▁Relig": 16221,
+ "▁trig": 16222,
+ "▁режи": 16223,
+ "▁Personal": 16224,
+ "▁tone": 16225,
+ "▁aid": 16226,
+ "Visual": 16227,
+ "Submit": 16228,
+ "▁moves": 16229,
+ "▁Bridge": 16230,
+ "▁Boy": 16231,
+ "▁accurate": 16232,
+ "osta": 16233,
+ "atto": 16234,
+ "▁defeated": 16235,
+ "▁datab": 16236,
+ "ginx": 16237,
+ "▁Liv": 16238,
+ "lywood": 16239,
+ "TW": 16240,
+ "rium": 16241,
+ "ipped": 16242,
+ "Fail": 16243,
+ "REQUEST": 16244,
+ "▁ignor": 16245,
+ "▁sitting": 16246,
+ "▁molto": 16247,
+ "▁endpoint": 16248,
+ "ución": 16249,
+ "▁collections": 16250,
+ "▁Ту": 16251,
+ "tembre": 16252,
+ "▁nécess": 16253,
+ "▁interact": 16254,
+ "▁otras": 16255,
+ "▁curr": 16256,
+ "▁tracks": 16257,
+ "▁família": 16258,
+ "▁numerical": 16259,
+ "legt": 16260,
+ "]/": 16261,
+ "▁Mario": 16262,
+ "▁tort": 16263,
+ "bg": 16264,
+ "ssl": 16265,
+ "texttt": 16266,
+ "▁spark": 16267,
+ "дии": 16268,
+ "▁probable": 16269,
+ "%%%%": 16270,
+ "phia": 16271,
+ "],[": 16272,
+ "▁boxes": 16273,
+ "▁academ": 16274,
+ "▁Slo": 16275,
+ "äude": 16276,
+ "▁witness": 16277,
+ "▁editing": 16278,
+ "лина": 16279,
+ "▁lookup": 16280,
+ "▁Buck": 16281,
+ "дня": 16282,
+ "▁jours": 16283,
+ "++){": 16284,
+ "▁indices": 16285,
+ "▁flight": 16286,
+ "▁computation": 16287,
+ "Plugin": 16288,
+ "▁realize": 16289,
+ "isset": 16290,
+ "▁derivative": 16291,
+ "linewidth": 16292,
+ "bund": 16293,
+ "▁thor": 16294,
+ "▁.=": 16295,
+ "▁sí": 16296,
+ "▁Click": 16297,
+ "▁Sebast": 16298,
+ ">'": 16299,
+ "havior": 16300,
+ "lei": 16301,
+ "ulf": 16302,
+ "▁geometry": 16303,
+ "prev": 16304,
+ "empl": 16305,
+ "▁Lé": 16306,
+ "anson": 16307,
+ "▁Alice": 16308,
+ "prototype": 16309,
+ "READ": 16310,
+ "icular": 16311,
+ "▁бі": 16312,
+ "▁deutsche": 16313,
+ "▁Represent": 16314,
+ "sites": 16315,
+ "▁Mean": 16316,
+ "▁diss": 16317,
+ "▁Zur": 16318,
+ "▁през": 16319,
+ "PAR": 16320,
+ "▁'#": 16321,
+ "▁Dra": 16322,
+ "сон": 16323,
+ "▁steht": 16324,
+ "markt": 16325,
+ "▁ease": 16326,
+ "Drawing": 16327,
+ "=%": 16328,
+ "Stop": 16329,
+ "▁serving": 16330,
+ "▁także": 16331,
+ "▁DNS": 16332,
+ "▁literal": 16333,
+ "Die": 16334,
+ "▁вос": 16335,
+ "▁senior": 16336,
+ "acion": 16337,
+ "▁ubuntu": 16338,
+ "▁Frankfurt": 16339,
+ "▁Sunday": 16340,
+ "áb": 16341,
+ "▁journey": 16342,
+ "issa": 16343,
+ "berry": 16344,
+ "▁sep": 16345,
+ "▁ion": 16346,
+ "wert": 16347,
+ "ország": 16348,
+ "serve": 16349,
+ "▁Milano": 16350,
+ "▁века": 16351,
+ "рах": 16352,
+ "▁июля": 16353,
+ "▁manera": 16354,
+ "▁stations": 16355,
+ "▁adopted": 16356,
+ "▁anybody": 16357,
+ "VERSION": 16358,
+ "FE": 16359,
+ "dorf": 16360,
+ "...,": 16361,
+ "▁образова": 16362,
+ "Logger": 16363,
+ "фициаль": 16364,
+ "WRITE": 16365,
+ "▁ham": 16366,
+ "▁Future": 16367,
+ "oten": 16368,
+ "▁AG": 16369,
+ "▁trained": 16370,
+ "▁Nich": 16371,
+ "▁university": 16372,
+ "▁Olympics": 16373,
+ "▁doit": 16374,
+ "▁cultural": 16375,
+ "Conf": 16376,
+ "▁Conference": 16377,
+ "orno": 16378,
+ "▁MP": 16379,
+ "▁bou": 16380,
+ "cin": 16381,
+ "High": 16382,
+ "annte": 16383,
+ "▁displaying": 16384,
+ "▁chapter": 16385,
+ "▁Frauen": 16386,
+ "▁realized": 16387,
+ "▁attempted": 16388,
+ "▁preferred": 16389,
+ "Dat": 16390,
+ "▁trouve": 16391,
+ "▁intention": 16392,
+ "▁Notice": 16393,
+ "timestamp": 16394,
+ "*(": 16395,
+ "▁Ша": 16396,
+ "anas": 16397,
+ "cla": 16398,
+ "isz": 16399,
+ "tbl": 16400,
+ "Arr": 16401,
+ "▁inverse": 16402,
+ "▁terrible": 16403,
+ "▁occupied": 16404,
+ "JAX": 16405,
+ "<-": 16406,
+ "▁Philosoph": 16407,
+ "▁Corps": 16408,
+ "builder": 16409,
+ "▁begins": 16410,
+ "▁census": 16411,
+ ".’": 16412,
+ "▁proven": 16413,
+ "metric": 16414,
+ "▁increases": 16415,
+ "wich": 16416,
+ "▁ABC": 16417,
+ "projects": 16418,
+ "▁Thor": 16419,
+ "▁confidence": 16420,
+ "▁ufficiale": 16421,
+ "elm": 16422,
+ "▁garden": 16423,
+ "▁robust": 16424,
+ "▁così": 16425,
+ "iedz": 16426,
+ "▁Islam": 16427,
+ "▁Address": 16428,
+ "▁divide": 16429,
+ "▁Eu": 16430,
+ "catal": 16431,
+ "detail": 16432,
+ "ependant": 16433,
+ "fg": 16434,
+ "▁bew": 16435,
+ "▁fis": 16436,
+ "▁BO": 16437,
+ "▁wsp": 16438,
+ "▁pipeline": 16439,
+ "hd": 16440,
+ "▁Session": 16441,
+ "länd": 16442,
+ "iveau": 16443,
+ "estr": 16444,
+ "▁particle": 16445,
+ "▁laravel": 16446,
+ "pic": 16447,
+ "▁nau": 16448,
+ "▁fins": 16449,
+ "▁Vil": 16450,
+ "▁fus": 16451,
+ "▁quasi": 16452,
+ "operation": 16453,
+ "▁aller": 16454,
+ "▁analy": 16455,
+ "▁Он": 16456,
+ "▁Mes": 16457,
+ "▁опера": 16458,
+ "▁handled": 16459,
+ "▁deprec": 16460,
+ "tto": 16461,
+ "▁Ek": 16462,
+ "▁stran": 16463,
+ "▁anglais": 16464,
+ "jure": 16465,
+ "▁Silver": 16466,
+ "▁closely": 16467,
+ "enkins": 16468,
+ "anos": 16469,
+ "sted": 16470,
+ "▁сентября": 16471,
+ "brand": 16472,
+ "ньо": 16473,
+ "▁présent": 16474,
+ "rok": 16475,
+ "mount": 16476,
+ "▁Anthony": 16477,
+ "▁Furthermore": 16478,
+ "inha": 16479,
+ "▁архи": 16480,
+ "▁разли": 16481,
+ "▁октября": 16482,
+ "▁pint": 16483,
+ "ný": 16484,
+ "pts": 16485,
+ "▁italien": 16486,
+ "▁реги": 16487,
+ "лез": 16488,
+ "дина": 16489,
+ "atherine": 16490,
+ "Internal": 16491,
+ "Question": 16492,
+ "▁settlement": 16493,
+ "▁Все": 16494,
+ "▁folders": 16495,
+ "дри": 16496,
+ "▁valor": 16497,
+ "▁Miller": 16498,
+ "▁Assert": 16499,
+ "▁patient": 16500,
+ "▁Nieder": 16501,
+ "▁EP": 16502,
+ "▁Agr": 16503,
+ "▁onde": 16504,
+ "▁scop": 16505,
+ "sequence": 16506,
+ "▁PL": 16507,
+ "▁seek": 16508,
+ "javase": 16509,
+ "▁Vector": 16510,
+ "▁ná": 16511,
+ "▁categoría": 16512,
+ "clone": 16513,
+ "NR": 16514,
+ "available": 16515,
+ "▁Besch": 16516,
+ "▁eclipse": 16517,
+ "wicklung": 16518,
+ "deploy": 16519,
+ "enie": 16520,
+ "▁\")": 16521,
+ "äst": 16522,
+ "▁sync": 16523,
+ "CODE": 16524,
+ "▁Че": 16525,
+ "▁floating": 16526,
+ "/`": 16527,
+ "▁retired": 16528,
+ "deb": 16529,
+ "▁particul": 16530,
+ "▁collected": 16531,
+ "▁downloaded": 16532,
+ "nice": 16533,
+ "▁Buffer": 16534,
+ "▁Account": 16535,
+ "▁maggio": 16536,
+ "▁реда": 16537,
+ "▁sales": 16538,
+ "▁statunitense": 16539,
+ "▁Ki": 16540,
+ "▁Ferr": 16541,
+ "Lock": 16542,
+ "▁Isabel": 16543,
+ "clar": 16544,
+ "▁pov": 16545,
+ "atra": 16546,
+ "▁Frau": 16547,
+ "▁sorting": 16548,
+ "▁phrase": 16549,
+ "▁апреля": 16550,
+ "▁деятель": 16551,
+ "▁André": 16552,
+ "definition": 16553,
+ "writing": 16554,
+ "éré": 16555,
+ "щу": 16556,
+ "▁Ord": 16557,
+ "▁rum": 16558,
+ "▁Turk": 16559,
+ "▁Ivan": 16560,
+ "theless": 16561,
+ "▁ги": 16562,
+ "▁sake": 16563,
+ "▁Based": 16564,
+ "deck": 16565,
+ "orus": 16566,
+ "▁tutti": 16567,
+ "▁blan": 16568,
+ "▁Пу": 16569,
+ "Detail": 16570,
+ "▁Но": 16571,
+ "▁Sky": 16572,
+ "▁près": 16573,
+ "мой": 16574,
+ "coln": 16575,
+ "ческой": 16576,
+ "eti": 16577,
+ "▁arrow": 16578,
+ "▁Cha": 16579,
+ "chmark": 16580,
+ "œur": 16581,
+ "fab": 16582,
+ "куль": 16583,
+ "GridView": 16584,
+ "▁Background": 16585,
+ "sn": 16586,
+ "▁seguito": 16587,
+ "▁nic": 16588,
+ "cou": 16589,
+ "тів": 16590,
+ "▁bzw": 16591,
+ "addEventListener": 16592,
+ "sync": 16593,
+ "azzo": 16594,
+ "abstract": 16595,
+ "assets": 16596,
+ "▁Dru": 16597,
+ "зд": 16598,
+ "ordnet": 16599,
+ "▁bigger": 16600,
+ "▁initialized": 16601,
+ "каз": 16602,
+ "ogene": 16603,
+ "viously": 16604,
+ "▁guid": 16605,
+ "scheidung": 16606,
+ "▁Zent": 16607,
+ "▁frames": 16608,
+ "rieben": 16609,
+ "▁issued": 16610,
+ "▁dow": 16611,
+ "▁describes": 16612,
+ "ilst": 16613,
+ "▁criteria": 16614,
+ "▁gentleman": 16615,
+ "Basic": 16616,
+ "nez": 16617,
+ "Dev": 16618,
+ "Move": 16619,
+ "▁estaba": 16620,
+ "▁settembre": 16621,
+ "circle": 16622,
+ "▁fais": 16623,
+ "▁myst": 16624,
+ "▁archiv": 16625,
+ "dynamic": 16626,
+ "jà": 16627,
+ "itas": 16628,
+ "▁який": 16629,
+ "▁dor": 16630,
+ "▁Amazon": 16631,
+ "▁neces": 16632,
+ "▁Marcel": 16633,
+ "▁ella": 16634,
+ "рок": 16635,
+ "▁Pennsylvania": 16636,
+ "cular": 16637,
+ "Pack": 16638,
+ "itage": 16639,
+ "▁Burn": 16640,
+ "▁RO": 16641,
+ "▁они": 16642,
+ "~$": 16643,
+ "TeX": 16644,
+ "assign": 16645,
+ "▁beat": 16646,
+ "idense": 16647,
+ "acent": 16648,
+ "Alert": 16649,
+ "▁strateg": 16650,
+ "▁månaden": 16651,
+ "LOC": 16652,
+ "▁catalog": 16653,
+ "printStackTrace": 16654,
+ "()).": 16655,
+ "usted": 16656,
+ "▁Framework": 16657,
+ "ECK": 16658,
+ "▁até": 16659,
+ "Framework": 16660,
+ "▁attacks": 16661,
+ "▁Bert": 16662,
+ "▁тран": 16663,
+ ":%": 16664,
+ "arsi": 16665,
+ "notation": 16666,
+ "▁logical": 16667,
+ "weet": 16668,
+ "▁visited": 16669,
+ "bru": 16670,
+ "▁surprise": 16671,
+ "^^": 16672,
+ "inale": 16673,
+ "remote": 16674,
+ "'},": 16675,
+ "Syntax": 16676,
+ "iane": 16677,
+ "onnen": 16678,
+ "▁breaking": 16679,
+ "parser": 16680,
+ "apk": 16681,
+ "▁Miguel": 16682,
+ "▁§": 16683,
+ "▁acting": 16684,
+ "▁gebru": 16685,
+ "AtIndex": 16686,
+ "ються": 16687,
+ "▁offers": 16688,
+ "▁prac": 16689,
+ "▁grant": 16690,
+ "ternoon": 16691,
+ "▁acquired": 16692,
+ "▁Ny": 16693,
+ "▁comma": 16694,
+ "ník": 16695,
+ "▁Step": 16696,
+ "inners": 16697,
+ "▁SA": 16698,
+ "▁wat": 16699,
+ "days": 16700,
+ "▁rectangle": 16701,
+ "dar": 16702,
+ "▁trac": 16703,
+ "▁Indones": 16704,
+ "▁feedback": 16705,
+ "▁breaks": 16706,
+ "partition": 16707,
+ "icans": 16708,
+ "▁Notices": 16709,
+ "▁improved": 16710,
+ "phan": 16711,
+ "▁differential": 16712,
+ "scripts": 16713,
+ "▁XIII": 16714,
+ "▁Labor": 16715,
+ "▁precision": 16716,
+ "▁seed": 16717,
+ "bundle": 16718,
+ "idents": 16719,
+ "hre": 16720,
+ "▁Douglas": 16721,
+ "uld": 16722,
+ "▁secondary": 16723,
+ "▁brig": 16724,
+ "▁confirmed": 16725,
+ "▁claims": 16726,
+ "Role": 16727,
+ "▁Jewish": 16728,
+ "▁před": 16729,
+ "▁hotel": 16730,
+ "▁compte": 16731,
+ "▁recursive": 16732,
+ "](#)": 16733,
+ "▁rotate": 16734,
+ "▁chrome": 16735,
+ "inea": 16736,
+ "%;\r": 16737,
+ "▁Environment": 16738,
+ "platz": 16739,
+ "▁Single": 16740,
+ "▁sevent": 16741,
+ "▁posting": 16742,
+ "▁dealing": 16743,
+ "parameters": 16744,
+ "граф": 16745,
+ "Authentication": 16746,
+ "touch": 16747,
+ "Az": 16748,
+ "▁gray": 16749,
+ "encing": 16750,
+ "boldmath": 16751,
+ "▁сайте": 16752,
+ "▁Za": 16753,
+ "anje": 16754,
+ "▁polar": 16755,
+ "▁ули": 16756,
+ "kil": 16757,
+ "▁hover": 16758,
+ "▁REST": 16759,
+ "▁Come": 16760,
+ "jb": 16761,
+ "▁Georgia": 16762,
+ "▁Estado": 16763,
+ "OutputStream": 16764,
+ "ћи": 16765,
+ "▁dump": 16766,
+ "▁Age": 16767,
+ "▁swo": 16768,
+ "mobile": 16769,
+ "occup": 16770,
+ "шего": 16771,
+ "▁constitution": 16772,
+ "good": 16773,
+ "aku": 16774,
+ "▁анг": 16775,
+ "ieck": 16776,
+ "▁Psych": 16777,
+ "▁roots": 16778,
+ "▁vest": 16779,
+ "▁годах": 16780,
+ "▁República": 16781,
+ "▁pian": 16782,
+ "igration": 16783,
+ "▁préc": 16784,
+ "▁generates": 16785,
+ "LY": 16786,
+ "(`": 16787,
+ "▁=~": 16788,
+ "шения": 16789,
+ "▁Rah": 16790,
+ "▁connecting": 16791,
+ "ží": 16792,
+ "▁fő": 16793,
+ "▁appel": 16794,
+ "▁Railway": 16795,
+ "гли": 16796,
+ "▁développ": 16797,
+ "▁apo": 16798,
+ "fran": 16799,
+ "▁immediate": 16800,
+ "вого": 16801,
+ "Runner": 16802,
+ "äg": 16803,
+ "Something": 16804,
+ "▁généra": 16805,
+ "EventArgs": 16806,
+ "inction": 16807,
+ "gly": 16808,
+ "▁Due": 16809,
+ "▁prost": 16810,
+ "▁referring": 16811,
+ "▁jog": 16812,
+ "▁executable": 16813,
+ "▁Dream": 16814,
+ "acs": 16815,
+ "▁Cole": 16816,
+ "ampf": 16817,
+ "▁Bis": 16818,
+ "▁июня": 16819,
+ "lieder": 16820,
+ "тек": 16821,
+ "▁vb": 16822,
+ "▁mom": 16823,
+ "▁:(": 16824,
+ "▁dernier": 16825,
+ "'=>": 16826,
+ "▁этого": 16827,
+ "▁neue": 16828,
+ "▁Ча": 16829,
+ "▁weitere": 16830,
+ "▁alleg": 16831,
+ "▁reality": 16832,
+ "▁judge": 16833,
+ "▁Balt": 16834,
+ "▁thin": 16835,
+ "▁Ged": 16836,
+ "ieval": 16837,
+ "mx": 16838,
+ "ціональ": 16839,
+ "▁выпу": 16840,
+ "▁IX": 16841,
+ "▁blind": 16842,
+ "▁Motor": 16843,
+ "▁ша": 16844,
+ "▁approximation": 16845,
+ "dam": 16846,
+ "▁fog": 16847,
+ "кор": 16848,
+ "▁Writ": 16849,
+ "▁ling": 16850,
+ "▁писа": 16851,
+ "▁Mars": 16852,
+ "otti": 16853,
+ "Enum": 16854,
+ "▁Trib": 16855,
+ "▁merc": 16856,
+ "zung": 16857,
+ "vanced": 16858,
+ "cfg": 16859,
+ "нах": 16860,
+ "schen": 16861,
+ "\"].": 16862,
+ "bek": 16863,
+ "▁ster": 16864,
+ "jp": 16865,
+ "▁Rap": 16866,
+ "▁recording": 16867,
+ "▁peint": 16868,
+ "▁lets": 16869,
+ "änge": 16870,
+ ">\";": 16871,
+ "▁місце": 16872,
+ "▁caval": 16873,
+ "▁CSV": 16874,
+ "▁entstand": 16875,
+ "▁helper": 16876,
+ "endet": 16877,
+ "▁Gram": 16878,
+ "▁Diego": 16879,
+ "▁Bishop": 16880,
+ "TAG": 16881,
+ "▁ecc": 16882,
+ "▁Een": 16883,
+ "▁AV": 16884,
+ "City": 16885,
+ "▁Guide": 16886,
+ "hind": 16887,
+ "rical": 16888,
+ "▁Основ": 16889,
+ "Bus": 16890,
+ "▁zunächst": 16891,
+ "▁tick": 16892,
+ "▁Colonel": 16893,
+ "Thanks": 16894,
+ "▁ferm": 16895,
+ "▁granted": 16896,
+ "▁threshold": 16897,
+ "omorphic": 16898,
+ "▁Hun": 16899,
+ "enis": 16900,
+ "▁прав": 16901,
+ "▁які": 16902,
+ "PG": 16903,
+ "▁ws": 16904,
+ "▁technical": 16905,
+ "estro": 16906,
+ "klär": 16907,
+ "vars": 16908,
+ "ocrat": 16909,
+ "▁општи": 16910,
+ "onso": 16911,
+ "iba": 16912,
+ "▁Save": 16913,
+ "▁programa": 16914,
+ "▁въ": 16915,
+ "▁invån": 16916,
+ ">()": 16917,
+ "▁mejor": 16918,
+ "▁слова": 16919,
+ "▁replacement": 16920,
+ "▁impr": 16921,
+ "▁Francesco": 16922,
+ "▁Hotel": 16923,
+ "▁UPDATE": 16924,
+ "▁музы": 16925,
+ "ugs": 16926,
+ "vard": 16927,
+ "▁faz": 16928,
+ "inton": 16929,
+ "▁arts": 16930,
+ "▁Ky": 16931,
+ "▁Ils": 16932,
+ "▁sera": 16933,
+ "▁Volume": 16934,
+ "▁giugno": 16935,
+ "▁asym": 16936,
+ "▁Pir": 16937,
+ "▁NAS": 16938,
+ "▁Tam": 16939,
+ "ěl": 16940,
+ "Sequ": 16941,
+ "kmal": 16942,
+ "▁Eins": 16943,
+ "▁компа": 16944,
+ "obe": 16945,
+ "oor": 16946,
+ "▁heap": 16947,
+ "ctl": 16948,
+ "▁separately": 16949,
+ "reader": 16950,
+ "▁significantly": 16951,
+ "▁Lag": 16952,
+ "notes": 16953,
+ "▁sele": 16954,
+ "▁dedicated": 16955,
+ "▁Host": 16956,
+ "choice": 16957,
+ "wing": 16958,
+ "▁Titel": 16959,
+ "▁befindet": 16960,
+ "large": 16961,
+ "▁conten": 16962,
+ "JavaScript": 16963,
+ "▁deser": 16964,
+ "▁Gordon": 16965,
+ "спе": 16966,
+ "▁patri": 16967,
+ "▁Random": 16968,
+ "▁Returns": 16969,
+ "ым": 16970,
+ "рома": 16971,
+ "▁Studies": 16972,
+ "Sl": 16973,
+ "▁frü": 16974,
+ "TEXT": 16975,
+ "inate": 16976,
+ "▁Tol": 16977,
+ "▁everywhere": 16978,
+ "arta": 16979,
+ "▁orbit": 16980,
+ "▁Aires": 16981,
+ "▁Iss": 16982,
+ "▁też": 16983,
+ "▁diverse": 16984,
+ "▁numeric": 16985,
+ "maz": 16986,
+ "▁mise": 16987,
+ "▁battery": 16988,
+ "▁Akadem": 16989,
+ "нение": 16990,
+ "▁simultane": 16991,
+ "▁Dead": 16992,
+ "▁clust": 16993,
+ "▁otro": 16994,
+ "▁cerca": 16995,
+ "()`,": 16996,
+ "roz": 16997,
+ "ăt": 16998,
+ "▁MO": 16999,
+ "riften": 17000,
+ "important": 17001,
+ "▁jeho": 17002,
+ "▁findViewById": 17003,
+ "▁consequence": 17004,
+ "▁measured": 17005,
+ "ishes": 17006,
+ "▁sze": 17007,
+ "iendo": 17008,
+ "▁Wahl": 17009,
+ "strip": 17010,
+ "ARD": 17011,
+ "▁opacity": 17012,
+ "WORD": 17013,
+ "▁Ві": 17014,
+ "▁Location": 17015,
+ "rai": 17016,
+ "пен": 17017,
+ "▁rif": 17018,
+ "aussian": 17019,
+ "FileName": 17020,
+ "▁disco": 17021,
+ "ilen": 17022,
+ "▁vagy": 17023,
+ "licity": 17024,
+ "Border": 17025,
+ "▁Track": 17026,
+ "бом": 17027,
+ "fact": 17028,
+ "oka": 17029,
+ "▁gior": 17030,
+ "▁XVII": 17031,
+ "▁där": 17032,
+ "Site": 17033,
+ "ało": 17034,
+ "ská": 17035,
+ "▁pixels": 17036,
+ "vity": 17037,
+ "jQuery": 17038,
+ "▁sculpt": 17039,
+ "▁cargo": 17040,
+ "▁directive": 17041,
+ "▁wal": 17042,
+ "▁conna": 17043,
+ "▁Through": 17044,
+ "▁этом": 17045,
+ "Static": 17046,
+ "omsnitt": 17047,
+ "▁rund": 17048,
+ "▁claimed": 17049,
+ "зня": 17050,
+ "sha": 17051,
+ "▁rag": 17052,
+ "crement": 17053,
+ "▁fünf": 17054,
+ "▁rival": 17055,
+ "rin": 17056,
+ "slash": 17057,
+ "▁thirty": 17058,
+ "sleep": 17059,
+ "ологи": 17060,
+ "SM": 17061,
+ "gate": 17062,
+ "izations": 17063,
+ "vik": 17064,
+ "▁bless": 17065,
+ "▁Illinois": 17066,
+ "▁TE": 17067,
+ "uting": 17068,
+ "▁solving": 17069,
+ "GER": 17070,
+ "▁XIV": 17071,
+ "▁Indians": 17072,
+ "express": 17073,
+ "▁Heil": 17074,
+ "▁mujer": 17075,
+ "▁invånare": 17076,
+ "']);": 17077,
+ "▁aur": 17078,
+ "boost": 17079,
+ "GO": 17080,
+ "▁nin": 17081,
+ "tok": 17082,
+ "god": 17083,
+ "oter": 17084,
+ ")$$": 17085,
+ "▁descend": 17086,
+ "рю": 17087,
+ "▁Language": 17088,
+ "▁diver": 17089,
+ "▁Assuming": 17090,
+ "▁frequent": 17091,
+ "чні": 17092,
+ "▁Biography": 17093,
+ ",[": 17094,
+ "urm": 17095,
+ "▁walked": 17096,
+ "▁federal": 17097,
+ "▁Michigan": 17098,
+ "▁facts": 17099,
+ "▁Integr": 17100,
+ "LES": 17101,
+ "▁Alan": 17102,
+ "▁coup": 17103,
+ "Ber": 17104,
+ "▁particles": 17105,
+ "ће": 17106,
+ "Inflater": 17107,
+ "+(": 17108,
+ "Bound": 17109,
+ "▁Sü": 17110,
+ "Audio": 17111,
+ "citet": 17112,
+ "yect": 17113,
+ "▁nr": 17114,
+ "xe": 17115,
+ "▁Brun": 17116,
+ "▁_,": 17117,
+ "avor": 17118,
+ "▁discipl": 17119,
+ "alm": 17120,
+ "▁ноября": 17121,
+ "▁SSL": 17122,
+ "▁Kaiser": 17123,
+ "▁recher": 17124,
+ "ygon": 17125,
+ "▁regardless": 17126,
+ "▁configur": 17127,
+ "▁unnecess": 17128,
+ "▁Clark": 17129,
+ "PHP": 17130,
+ "▁FALSE": 17131,
+ "▁pad": 17132,
+ "$}": 17133,
+ "▁valu": 17134,
+ "▁disease": 17135,
+ "▁maior": 17136,
+ "▁hommes": 17137,
+ "▁Edition": 17138,
+ "slant": 17139,
+ "▁ending": 17140,
+ "▁settled": 17141,
+ "urus": 17142,
+ "hed": 17143,
+ "Pattern": 17144,
+ "▁година": 17145,
+ "▁Philadel": 17146,
+ "tikzpicture": 17147,
+ "▁coal": 17148,
+ "▁sede": 17149,
+ "▁satisfies": 17150,
+ "▁trim": 17151,
+ "▁bat": 17152,
+ "▁américain": 17153,
+ "▁luglio": 17154,
+ "▁поча": 17155,
+ "ffff": 17156,
+ "▁Target": 17157,
+ "generate": 17158,
+ "▁Zie": 17159,
+ "ția": 17160,
+ "▁gard": 17161,
+ "▁workers": 17162,
+ "▁Job": 17163,
+ "▁urban": 17164,
+ "ahlen": 17165,
+ "▁Building": 17166,
+ "▁neu": 17167,
+ "▁chron": 17168,
+ "▁Earl": 17169,
+ "gro": 17170,
+ "USE": 17171,
+ "▁XII": 17172,
+ "▁wealth": 17173,
+ "inae": 17174,
+ "▁Бра": 17175,
+ "▁libert": 17176,
+ "iros": 17177,
+ ":$": 17178,
+ "lee": 17179,
+ "ieves": 17180,
+ "▁Justice": 17181,
+ "▁oil": 17182,
+ "▁Athlet": 17183,
+ "▁clo": 17184,
+ "Scale": 17185,
+ "▁lips": 17186,
+ "▁april": 17187,
+ "▁impression": 17188,
+ "▁perce": 17189,
+ "▁участи": 17190,
+ "vil": 17191,
+ "éch": 17192,
+ "▁equality": 17193,
+ "▁мет": 17194,
+ "▁annotation": 17195,
+ "ernal": 17196,
+ "▁Mach": 17197,
+ "▁intitul": 17198,
+ "problem": 17199,
+ "ющих": 17200,
+ "oplus": 17201,
+ "▁thousands": 17202,
+ "▁calculations": 17203,
+ "umps": 17204,
+ "▁triangle": 17205,
+ "phal": 17206,
+ "▁Dorf": 17207,
+ "▁dollars": 17208,
+ "▁denen": 17209,
+ "lès": 17210,
+ "olid": 17211,
+ "▁Results": 17212,
+ "▁Stadium": 17213,
+ "▁Desp": 17214,
+ "▁Eisen": 17215,
+ "imir": 17216,
+ "▁sotto": 17217,
+ "▁či": 17218,
+ "atable": 17219,
+ "orum": 17220,
+ "▁convergence": 17221,
+ "▁jeune": 17222,
+ "oking": 17223,
+ "▁живо": 17224,
+ "aining": 17225,
+ "pointer": 17226,
+ "culo": 17227,
+ "▁jsou": 17228,
+ "▁grab": 17229,
+ "akte": 17230,
+ "▁hoping": 17231,
+ "▁Mak": 17232,
+ "▁sag": 17233,
+ "origine": 17234,
+ "▁послед": 17235,
+ "▁Veg": 17236,
+ "▁theoret": 17237,
+ "▁Tru": 17238,
+ "nement": 17239,
+ "▁faces": 17240,
+ "Hor": 17241,
+ "Join": 17242,
+ "arel": 17243,
+ "▁около": 17244,
+ "However": 17245,
+ "▁catal": 17246,
+ "bourg": 17247,
+ "▁mysqli": 17248,
+ "acions": 17249,
+ "▁Initial": 17250,
+ "▁rain": 17251,
+ "iture": 17252,
+ "▁Sciences": 17253,
+ "▁Kreis": 17254,
+ ".__": 17255,
+ "▁cinq": 17256,
+ "▁Auß": 17257,
+ "ithmet": 17258,
+ "itors": 17259,
+ "amazon": 17260,
+ "▁gap": 17261,
+ "▁ignored": 17262,
+ "adv": 17263,
+ "кої": 17264,
+ "▁часть": 17265,
+ "▁corpor": 17266,
+ "цер": 17267,
+ "▁crime": 17268,
+ "uous": 17269,
+ "▁налази": 17270,
+ "DataFrame": 17271,
+ "води": 17272,
+ "Ign": 17273,
+ "▁Lincoln": 17274,
+ "▁menos": 17275,
+ "▁Luft": 17276,
+ "▁Lind": 17277,
+ "▁Cook": 17278,
+ "▁materials": 17279,
+ "apped": 17280,
+ "ignore": 17281,
+ "▁откры": 17282,
+ "fried": 17283,
+ "▁gouvernement": 17284,
+ "▁fired": 17285,
+ "▁screenshot": 17286,
+ "сен": 17287,
+ "▁[(": 17288,
+ "▁организа": 17289,
+ "Graphics": 17290,
+ "▁проти": 17291,
+ "▁phen": 17292,
+ "craft": 17293,
+ "▁brain": 17294,
+ "▁Como": 17295,
+ "▁Everything": 17296,
+ "anes": 17297,
+ "IGN": 17298,
+ "▁nederbörd": 17299,
+ "▁Forest": 17300,
+ "zahl": 17301,
+ "▁Among": 17302,
+ "Qt": 17303,
+ "▁togg": 17304,
+ "▁variant": 17305,
+ "▁hill": 17306,
+ "писи": 17307,
+ "colon": 17308,
+ "▁dicembre": 17309,
+ "гор": 17310,
+ "▁Wind": 17311,
+ "ünstler": 17312,
+ "▁=\\": 17313,
+ "saved": 17314,
+ "▁nej": 17315,
+ "unte": 17316,
+ "utto": 17317,
+ "▁recens": 17318,
+ "▁sick": 17319,
+ "▁desen": 17320,
+ "UST": 17321,
+ "▁worst": 17322,
+ "▁Angel": 17323,
+ "odox": 17324,
+ "▁Province": 17325,
+ "▁Maz": 17326,
+ "▁agreement": 17327,
+ "▁Bass": 17328,
+ "▁segunda": 17329,
+ "onces": 17330,
+ "▁Linki": 17331,
+ "▁CL": 17332,
+ "▁já": 17333,
+ "itement": 17334,
+ "▁área": 17335,
+ "▁scalar": 17336,
+ "▁Рес": 17337,
+ "awt": 17338,
+ "sieme": 17339,
+ "▁juni": 17340,
+ "▁худож": 17341,
+ "ikus": 17342,
+ "▁lid": 17343,
+ "ppel": 17344,
+ "avi": 17345,
+ "▁balance": 17346,
+ "ipping": 17347,
+ "cussion": 17348,
+ "ческих": 17349,
+ "(\".": 17350,
+ "Also": 17351,
+ "▁whis": 17352,
+ "HOME": 17353,
+ "▁brown": 17354,
+ "▁día": 17355,
+ "▁può": 17356,
+ "plotlib": 17357,
+ "▁Jahrhunderts": 17358,
+ "DK": 17359,
+ "▁anchor": 17360,
+ "...]": 17361,
+ "▁Austria": 17362,
+ "▁marca": 17363,
+ "▁gez": 17364,
+ "iously": 17365,
+ "▁lazy": 17366,
+ "xa": 17367,
+ "▁Channel": 17368,
+ "▁neuen": 17369,
+ "das": 17370,
+ "▁searched": 17371,
+ "▁staat": 17372,
+ "▁Так": 17373,
+ "▁Josef": 17374,
+ "▁Sher": 17375,
+ "pois": 17376,
+ "▁enem": 17377,
+ "▁accessing": 17378,
+ "▁неко": 17379,
+ "▁furono": 17380,
+ "▁pseudo": 17381,
+ "?>": 17382,
+ "▁estadoun": 17383,
+ "▁Види": 17384,
+ "▁motiv": 17385,
+ "▁recall": 17386,
+ "isson": 17387,
+ "ób": 17388,
+ ")--": 17389,
+ "▁Erz": 17390,
+ "▁савез": 17391,
+ "Direct": 17392,
+ "соб": 17393,
+ "▁sho": 17394,
+ "völker": 17395,
+ "Ap": 17396,
+ "gens": 17397,
+ "ништво": 17398,
+ "▁Amsterdam": 17399,
+ "usk": 17400,
+ "пло": 17401,
+ "▁simulation": 17402,
+ "▁BC": 17403,
+ "▁Woj": 17404,
+ "autom": 17405,
+ "Alex": 17406,
+ "▁economic": 17407,
+ "гом": 17408,
+ "ikai": 17409,
+ "▁altre": 17410,
+ "▁'-": 17411,
+ "▁Weg": 17412,
+ "NotFound": 17413,
+ "йской": 17414,
+ "▁converting": 17415,
+ "phabet": 17416,
+ "atrice": 17417,
+ "bourne": 17418,
+ "alom": 17419,
+ "▁comparing": 17420,
+ "▁Zo": 17421,
+ "▁fla": 17422,
+ "вая": 17423,
+ "▁entra": 17424,
+ "▁charset": 17425,
+ "developers": 17426,
+ "ística": 17427,
+ "}>": 17428,
+ "▁Jazz": 17429,
+ "▁Howard": 17430,
+ "шта": 17431,
+ "▁clone": 17432,
+ "door": 17433,
+ "▁Pin": 17434,
+ "***": 17435,
+ "▁silent": 17436,
+ "ecycle": 17437,
+ "isce": 17438,
+ "▁mud": 17439,
+ "▁Display": 17440,
+ "▁lip": 17441,
+ "▁использова": 17442,
+ "▁characteristic": 17443,
+ "▁sb": 17444,
+ "firebase": 17445,
+ "▁Bew": 17446,
+ "Calendar": 17447,
+ "▁uso": 17448,
+ "èse": 17449,
+ "▁Rat": 17450,
+ "▁esper": 17451,
+ "▁throwing": 17452,
+ "▁rodz": 17453,
+ "▁yards": 17454,
+ "▁grass": 17455,
+ "▁marker": 17456,
+ "▁Kos": 17457,
+ "Theta": 17458,
+ "▁organis": 17459,
+ "kernel": 17460,
+ "▁personas": 17461,
+ "keep": 17462,
+ "▁exclaimed": 17463,
+ "oslav": 17464,
+ "▁Entertain": 17465,
+ "нер": 17466,
+ "▁inwon": 17467,
+ "▁Rand": 17468,
+ "reduce": 17469,
+ "fac": 17470,
+ "expression": 17471,
+ "yj": 17472,
+ "▁differenti": 17473,
+ "aglia": 17474,
+ "▁templates": 17475,
+ "▁mű": 17476,
+ "▁prv": 17477,
+ "▁mois": 17478,
+ "▁gewann": 17479,
+ "▁була": 17480,
+ "bibli": 17481,
+ "demo": 17482,
+ "▁Anderson": 17483,
+ "▁ред": 17484,
+ "▁porque": 17485,
+ "▁Pologne": 17486,
+ "▁trip": 17487,
+ "▁exemple": 17488,
+ "▁Internacional": 17489,
+ "▁као": 17490,
+ "Insert": 17491,
+ "general": 17492,
+ "SESSION": 17493,
+ "berga": 17494,
+ "hält": 17495,
+ "unas": 17496,
+ "мира": 17497,
+ "▁yields": 17498,
+ "mapsto": 17499,
+ "spot": 17500,
+ "▁+\\": 17501,
+ "лла": 17502,
+ "▁precisely": 17503,
+ "▁член": 17504,
+ "shadow": 17505,
+ "Are": 17506,
+ "unal": 17507,
+ "▁dispar": 17508,
+ "▁título": 17509,
+ "nest": 17510,
+ "▁Low": 17511,
+ "▁prot": 17512,
+ "▁Costa": 17513,
+ "named": 17514,
+ "▁gained": 17515,
+ "lesia": 17516,
+ "▁administration": 17517,
+ "Import": 17518,
+ "branch": 17519,
+ "▁sympath": 17520,
+ "voj": 17521,
+ "▁EC": 17522,
+ "▁municipio": 17523,
+ "▁animated": 17524,
+ "▁directories": 17525,
+ "▁roof": 17526,
+ "ząd": 17527,
+ "imet": 17528,
+ "proto": 17529,
+ "bla": 17530,
+ ":]": 17531,
+ "have": 17532,
+ "atem": 17533,
+ "▁ns": 17534,
+ "▁sector": 17535,
+ "three": 17536,
+ "owane": 17537,
+ "wers": 17538,
+ "ових": 17539,
+ "rence": 17540,
+ "▁extr": 17541,
+ "igten": 17542,
+ "▁occident": 17543,
+ "ță": 17544,
+ "▁eat": 17545,
+ "▁hydro": 17546,
+ "ubernetes": 17547,
+ "[@": 17548,
+ "▁Moon": 17549,
+ "▁Sho": 17550,
+ "▁elsewhere": 17551,
+ "üller": 17552,
+ "Upload": 17553,
+ "ланд": 17554,
+ "▁För": 17555,
+ "wissenschaft": 17556,
+ "KS": 17557,
+ "▁physics": 17558,
+ "tz": 17559,
+ "▁серед": 17560,
+ "▁Arbeit": 17561,
+ "▁мест": 17562,
+ "▁Gebiet": 17563,
+ "▁insect": 17564,
+ "Ah": 17565,
+ "izado": 17566,
+ "▁temple": 17567,
+ "▁annual": 17568,
+ "stad": 17569,
+ "▁habitat": 17570,
+ "▁AB": 17571,
+ "wort": 17572,
+ "▁repos": 17573,
+ "▁Neu": 17574,
+ "▁$(\".": 17575,
+ "Vorlage": 17576,
+ "▁reprezent": 17577,
+ "estanden": 17578,
+ "Intern": 17579,
+ ".`": 17580,
+ "▁failing": 17581,
+ "▁Material": 17582,
+ "▁effectively": 17583,
+ "телем": 17584,
+ "▁гла": 17585,
+ "▁nahm": 17586,
+ "▁differently": 17587,
+ "extension": 17588,
+ "▁Verm": 17589,
+ "enabled": 17590,
+ "configure": 17591,
+ "nio": 17592,
+ "ciones": 17593,
+ "▁Beach": 17594,
+ "сона": 17595,
+ "▁copying": 17596,
+ "▁україн": 17597,
+ "▁призна": 17598,
+ "zh": 17599,
+ "Desktop": 17600,
+ "▁sost": 17601,
+ "▁subsequently": 17602,
+ "▁Lehr": 17603,
+ "▁ó": 17604,
+ "lär": 17605,
+ "odor": 17606,
+ "phon": 17607,
+ "nc": 17608,
+ "iterator": 17609,
+ "▁эти": 17610,
+ "▁europé": 17611,
+ "▁Toronto": 17612,
+ "ódigo": 17613,
+ "▁posto": 17614,
+ "ffe": 17615,
+ "▁crew": 17616,
+ "▁Schwar": 17617,
+ "Sa": 17618,
+ "square": 17619,
+ "▁beside": 17620,
+ "▁Мі": 17621,
+ "▁ath": 17622,
+ "▁advent": 17623,
+ "cji": 17624,
+ "written": 17625,
+ "▁russ": 17626,
+ "rost": 17627,
+ "HI": 17628,
+ "▁dice": 17629,
+ "cca": 17630,
+ "▁dép": 17631,
+ "ply": 17632,
+ "bigg": 17633,
+ "ział": 17634,
+ "ütt": 17635,
+ "▁одно": 17636,
+ "JECT": 17637,
+ "ському": 17638,
+ "nos": 17639,
+ "mock": 17640,
+ "Launch": 17641,
+ "same": 17642,
+ "▁jobs": 17643,
+ "▁widely": 17644,
+ "▁defines": 17645,
+ "▁Pse": 17646,
+ "▁neighbour": 17647,
+ "ющие": 17648,
+ "▁closer": 17649,
+ "▁располо": 17650,
+ "▁clubs": 17651,
+ "fly": 17652,
+ "шим": 17653,
+ "▁suffered": 17654,
+ "▁nar": 17655,
+ "▁lavor": 17656,
+ "Extension": 17657,
+ "itionally": 17658,
+ "▁grace": 17659,
+ "▁Campeonato": 17660,
+ "▁Christmas": 17661,
+ "middle": 17662,
+ "othek": 17663,
+ "elements": 17664,
+ "▁sondern": 17665,
+ "▁tarde": 17666,
+ "▁permanent": 17667,
+ "▁conclude": 17668,
+ "Seg": 17669,
+ "▁акаде": 17670,
+ "}\",": 17671,
+ "▁февраля": 17672,
+ "řed": 17673,
+ "▁IL": 17674,
+ "jud": 17675,
+ "▁USS": 17676,
+ "▁Nature": 17677,
+ "ifference": 17678,
+ "Serializer": 17679,
+ "▁twelve": 17680,
+ "tid": 17681,
+ "мия": 17682,
+ "ческого": 17683,
+ "▁calendar": 17684,
+ "concat": 17685,
+ "▁intersection": 17686,
+ "▁PA": 17687,
+ "azure": 17688,
+ "▁située": 17689,
+ "▁kinds": 17690,
+ "▁ausge": 17691,
+ "▁rural": 17692,
+ "Theme": 17693,
+ "▁tale": 17694,
+ "noindent": 17695,
+ "going": 17696,
+ "rx": 17697,
+ "agi": 17698,
+ "wrapper": 17699,
+ "▁Coast": 17700,
+ "mbH": 17701,
+ "▁перед": 17702,
+ "spre": 17703,
+ "▁}\\": 17704,
+ "▁LI": 17705,
+ "znam": 17706,
+ "itled": 17707,
+ "Sample": 17708,
+ "uliar": 17709,
+ "*\\": 17710,
+ "▁resistance": 17711,
+ "stock": 17712,
+ "ked": 17713,
+ "▁HE": 17714,
+ "▁possession": 17715,
+ "▁Ring": 17716,
+ "▁magyar": 17717,
+ "outs": 17718,
+ "▁Secretary": 17719,
+ "nde": 17720,
+ "▁Wald": 17721,
+ "-(": 17722,
+ "▁ISO": 17723,
+ "▁afternoon": 17724,
+ "ionen": 17725,
+ "▁stops": 17726,
+ "▁constants": 17727,
+ "guard": 17728,
+ "bow": 17729,
+ "▁ers": 17730,
+ "▁Firebase": 17731,
+ "▁Clear": 17732,
+ "▁Holy": 17733,
+ "Win": 17734,
+ "▁titles": 17735,
+ "▁трав": 17736,
+ "▁contrib": 17737,
+ "häng": 17738,
+ "▁photograph": 17739,
+ "▁Distribution": 17740,
+ "ifts": 17741,
+ "▁aunque": 17742,
+ "comb": 17743,
+ "ADD": 17744,
+ "▁publication": 17745,
+ "▁служ": 17746,
+ "▁кня": 17747,
+ "▁ayant": 17748,
+ "▁restore": 17749,
+ "▁belief": 17750,
+ "▁vég": 17751,
+ "▁extensions": 17752,
+ "▁decom": 17753,
+ "вший": 17754,
+ "WT": 17755,
+ "▁parti": 17756,
+ "▁gioc": 17757,
+ "▁мира": 17758,
+ "▁issu": 17759,
+ "pipe": 17760,
+ "▁props": 17761,
+ "▁willing": 17762,
+ "▁nest": 17763,
+ "aso": 17764,
+ "pot": 17765,
+ "▁handles": 17766,
+ "▁фо": 17767,
+ "▁moder": 17768,
+ "▁ebenfalls": 17769,
+ "▁fighting": 17770,
+ "umbn": 17771,
+ "▁transparent": 17772,
+ "▁Krist": 17773,
+ "▁homes": 17774,
+ "▁voyage": 17775,
+ "Failed": 17776,
+ "▁Bird": 17777,
+ "▁Heart": 17778,
+ "Counter": 17779,
+ "▁Scottish": 17780,
+ "ática": 17781,
+ "▁arbeit": 17782,
+ "^{-\\": 17783,
+ "▁Sor": 17784,
+ "▁engaged": 17785,
+ "▁aside": 17786,
+ "▁Fou": 17787,
+ "▁wiel": 17788,
+ "▁reconst": 17789,
+ "ousin": 17790,
+ "▁hosted": 17791,
+ "▁classe": 17792,
+ "▁contest": 17793,
+ "...\"": 17794,
+ "мом": 17795,
+ "▁bean": 17796,
+ "gem": 17797,
+ "▁consultato": 17798,
+ "▁bio": 17799,
+ "▁subjects": 17800,
+ "boBox": 17801,
+ "▁Schrift": 17802,
+ "▁dinner": 17803,
+ "ăr": 17804,
+ "▁równ": 17805,
+ "▁%%": 17806,
+ "bage": 17807,
+ "▁veröff": 17808,
+ "▁detected": 17809,
+ "ienn": 17810,
+ "rose": 17811,
+ "▁Ton": 17812,
+ "Complete": 17813,
+ "▁proto": 17814,
+ "ichts": 17815,
+ "STAT": 17816,
+ "Checked": 17817,
+ "▁inten": 17818,
+ "▁smile": 17819,
+ "▁strip": 17820,
+ "neut": 17821,
+ "');\r": 17822,
+ "four": 17823,
+ "▁todas": 17824,
+ "Controls": 17825,
+ "▁thorough": 17826,
+ "rup": 17827,
+ "▁држави": 17828,
+ "ită": 17829,
+ "Protocol": 17830,
+ "Ка": 17831,
+ "▁expanded": 17832,
+ "extra": 17833,
+ "oport": 17834,
+ "▁Станов": 17835,
+ "leases": 17836,
+ "▁notion": 17837,
+ "▁guest": 17838,
+ "▁Islands": 17839,
+ "icked": 17840,
+ "▁Dave": 17841,
+ "▁reflection": 17842,
+ "liv": 17843,
+ "ální": 17844,
+ "▁revealed": 17845,
+ "▁sog": 17846,
+ "▁Tax": 17847,
+ "▁periodo": 17848,
+ "▁Weltkrie": 17849,
+ "catalina": 17850,
+ "qué": 17851,
+ "▁Father": 17852,
+ "▁Bir": 17853,
+ "expect": 17854,
+ "▁regression": 17855,
+ "iné": 17856,
+ "▁dabei": 17857,
+ "perm": 17858,
+ "мене": 17859,
+ "▁Abd": 17860,
+ "▁CF": 17861,
+ "arks": 17862,
+ "resolve": 17863,
+ "wedge": 17864,
+ "▁initialization": 17865,
+ "▁Véase": 17866,
+ "▁приня": 17867,
+ "stmt": 17868,
+ "▁income": 17869,
+ "MY": 17870,
+ "▁odkazy": 17871,
+ "▁Siehe": 17872,
+ "▁bodies": 17873,
+ "▁soc": 17874,
+ "Random": 17875,
+ "▁senza": 17876,
+ "ablo": 17877,
+ "▁regarded": 17878,
+ "onCreate": 17879,
+ "▁Magazine": 17880,
+ "▁Raf": 17881,
+ "▁Buenos": 17882,
+ "ил": 17883,
+ ")));": 17884,
+ "capt": 17885,
+ "redirect": 17886,
+ "▁petit": 17887,
+ "▁farm": 17888,
+ "▁rôle": 17889,
+ "▁статьи": 17890,
+ " ": 17891,
+ "subfigure": 17892,
+ "èces": 17893,
+ "ziel": 17894,
+ "▁окон": 17895,
+ "EE": 17896,
+ "mee": 17897,
+ "▁perten": 17898,
+ "▁représent": 17899,
+ "▁LA": 17900,
+ "?'": 17901,
+ "▁тру": 17902,
+ "▁rational": 17903,
+ "osof": 17904,
+ "▁kne": 17905,
+ "▁artists": 17906,
+ "Flow": 17907,
+ "▁Аль": 17908,
+ "izard": 17909,
+ "▁numero": 17910,
+ "actic": 17911,
+ "▁destruct": 17912,
+ "▁Пра": 17913,
+ "onsieur": 17914,
+ "qt": 17915,
+ "abestanden": 17916,
+ "ność": 17917,
+ "Connect": 17918,
+ "▁oracle": 17919,
+ "▁Stockholm": 17920,
+ "sizeof": 17921,
+ "▁gemäß": 17922,
+ "ACT": 17923,
+ "▁expert": 17924,
+ "utions": 17925,
+ "▁hacia": 17926,
+ "▁logger": 17927,
+ "▁fool": 17928,
+ "rypto": 17929,
+ "ær": 17930,
+ "▁cidade": 17931,
+ "▁составе": 17932,
+ "oker": 17933,
+ "▁Transfer": 17934,
+ "▁denied": 17935,
+ "Track": 17936,
+ "▁radi": 17937,
+ "zec": 17938,
+ "▁Historic": 17939,
+ "▁Einwohner": 17940,
+ "кою": 17941,
+ "▁хра": 17942,
+ "▁Category": 17943,
+ "▁Disney": 17944,
+ "▁swap": 17945,
+ "Begin": 17946,
+ "▁mientras": 17947,
+ "▁dance": 17948,
+ "▁tête": 17949,
+ "▁droit": 17950,
+ "erta": 17951,
+ "▁birds": 17952,
+ "▁convin": 17953,
+ "parator": 17954,
+ "дра": 17955,
+ "▁ES": 17956,
+ "▁Ressources": 17957,
+ "EGIN": 17958,
+ "ücke": 17959,
+ "▁Cruz": 17960,
+ "abling": 17961,
+ "▁\"@": 17962,
+ "▁metres": 17963,
+ "▁Beg": 17964,
+ "▁Gründ": 17965,
+ "▁Boh": 17966,
+ "▁mile": 17967,
+ "▁Technology": 17968,
+ "\"+": 17969,
+ "acco": 17970,
+ "▁ss": 17971,
+ "▁Fed": 17972,
+ "▁Hend": 17973,
+ "usch": 17974,
+ "itä": 17975,
+ "folk": 17976,
+ "▁absor": 17977,
+ "antal": 17978,
+ "odge": 17979,
+ "▁WHEN": 17980,
+ "▁Externí": 17981,
+ "▁Regiment": 17982,
+ "▁evaluation": 17983,
+ "▁Tai": 17984,
+ "▁vocals": 17985,
+ "▁experimental": 17986,
+ "embed": 17987,
+ "▁Minn": 17988,
+ "▁вме": 17989,
+ "prec": 17990,
+ "every": 17991,
+ "▁hoof": 17992,
+ "▁Fernando": 17993,
+ "▁Bibliographie": 17994,
+ "▁nag": 17995,
+ "amerikanischer": 17996,
+ "▁marks": 17997,
+ "▁UTC": 17998,
+ "▁uncertain": 17999,
+ "дия": 18000,
+ "olia": 18001,
+ "▁cup": 18002,
+ "▁fille": 18003,
+ "▁dok": 18004,
+ "useppe": 18005,
+ "esterd": 18006,
+ "▁Brand": 18007,
+ "▁Third": 18008,
+ "PP": 18009,
+ "nodes": 18010,
+ "▁Pad": 18011,
+ "▁loved": 18012,
+ "swing": 18013,
+ "▁surprised": 18014,
+ "ardi": 18015,
+ "▁GR": 18016,
+ "]\"": 18017,
+ "▁equally": 18018,
+ "ihe": 18019,
+ "care": 18020,
+ "писок": 18021,
+ "lijk": 18022,
+ "rinn": 18023,
+ "▁\\[\\": 18024,
+ "▁sons": 18025,
+ "▁tät": 18026,
+ "icamente": 18027,
+ "▁listing": 18028,
+ "iellement": 18029,
+ "▁nyelven": 18030,
+ "▁ds": 18031,
+ "▁agricult": 18032,
+ "▁Hermann": 18033,
+ "▁besides": 18034,
+ "progress": 18035,
+ "▁peculiar": 18036,
+ "focus": 18037,
+ "cn": 18038,
+ "-$": 18039,
+ "ственный": 18040,
+ "ourg": 18041,
+ "▁wyn": 18042,
+ "▁conducted": 18043,
+ "▁Становништво": 18044,
+ "connected": 18045,
+ "▁bott": 18046,
+ "▁смер": 18047,
+ "▁Poz": 18048,
+ "unct": 18049,
+ "conda": 18050,
+ "▁савезној": 18051,
+ "▁havet": 18052,
+ "ligt": 18053,
+ "orted": 18054,
+ "▁entering": 18055,
+ "multip": 18056,
+ "▁Temple": 18057,
+ "▁Plant": 18058,
+ "typeof": 18059,
+ "▁Vlad": 18060,
+ "▁qued": 18061,
+ "▁reste": 18062,
+ "▁май": 18063,
+ "▁Very": 18064,
+ "ambiguation": 18065,
+ "▁challeng": 18066,
+ "▁respective": 18067,
+ "▁тор": 18068,
+ "Ctrl": 18069,
+ "▁absence": 18070,
+ "aru": 18071,
+ "вое": 18072,
+ "▁först": 18073,
+ "▁sq": 18074,
+ "▁Emperor": 18075,
+ "▁Ign": 18076,
+ "▁това": 18077,
+ ":`": 18078,
+ "adoop": 18079,
+ "▁Madame": 18080,
+ "▁gruppo": 18081,
+ "stud": 18082,
+ "▁externas": 18083,
+ "▁Александр": 18084,
+ "▁dign": 18085,
+ "▁живе": 18086,
+ "Amount": 18087,
+ "▁correlate": 18088,
+ "▁Fant": 18089,
+ "▁rails": 18090,
+ "fp": 18091,
+ "министратив": 18092,
+ "▁bought": 18093,
+ "▁filters": 18094,
+ "▁ancora": 18095,
+ "▁partner": 18096,
+ "▁quand": 18097,
+ "symbol": 18098,
+ "ulating": 18099,
+ "▁zd": 18100,
+ "awn": 18101,
+ "▁Grant": 18102,
+ "because": 18103,
+ "rable": 18104,
+ "\\}": 18105,
+ "ísticas": 18106,
+ "▁уче": 18107,
+ "▁période": 18108,
+ "▁ske": 18109,
+ "▁Anyway": 18110,
+ "▁indexes": 18111,
+ "▁directions": 18112,
+ "▁RAM": 18113,
+ "chrome": 18114,
+ "▁apost": 18115,
+ "▁warnings": 18116,
+ "▁Airport": 18117,
+ "VI": 18118,
+ "abile": 18119,
+ "▁lord": 18120,
+ "provider": 18121,
+ "▁Ji": 18122,
+ "ostream": 18123,
+ "▁gemeente": 18124,
+ "tableView": 18125,
+ "Extra": 18126,
+ "cursor": 18127,
+ "eground": 18128,
+ "▁Moz": 18129,
+ "▁rib": 18130,
+ "▁morph": 18131,
+ "loads": 18132,
+ "elsk": 18133,
+ "▁MAX": 18134,
+ "▁Santiago": 18135,
+ "▁Him": 18136,
+ "codes": 18137,
+ "▁lanz": 18138,
+ "▁counts": 18139,
+ "rinningsområ": 18140,
+ "щё": 18141,
+ "▁spé": 18142,
+ "▁pierws": 18143,
+ "▁Sver": 18144,
+ "▁acknow": 18145,
+ "Boolean": 18146,
+ "▁фамили": 18147,
+ "▁Senate": 18148,
+ "шов": 18149,
+ "agers": 18150,
+ "▁Nueva": 18151,
+ "bil": 18152,
+ "kiem": 18153,
+ "▁Mey": 18154,
+ "wij": 18155,
+ "▁GmbH": 18156,
+ "validation": 18157,
+ "▁ensuite": 18158,
+ "inking": 18159,
+ "▁campion": 18160,
+ "▁financial": 18161,
+ "izon": 18162,
+ "Headers": 18163,
+ "▁deprecated": 18164,
+ "▁fonction": 18165,
+ "REG": 18166,
+ "▁volumes": 18167,
+ "▁Chi": 18168,
+ "▁encountered": 18169,
+ "lak": 18170,
+ "рая": 18171,
+ "▁continues": 18172,
+ "▁~[": 18173,
+ "uerte": 18174,
+ "▁\\;": 18175,
+ "▁Dok": 18176,
+ "▁weights": 18177,
+ "▁rh": 18178,
+ "▁Napole": 18179,
+ "▁naturally": 18180,
+ "sku": 18181,
+ "pas": 18182,
+ "▁gegründ": 18183,
+ "etr": 18184,
+ "▁Ku": 18185,
+ "icted": 18186,
+ "▁fabric": 18187,
+ "▁ASC": 18188,
+ "▁Entertainment": 18189,
+ "▁energ": 18190,
+ "клад": 18191,
+ "omon": 18192,
+ "theme": 18193,
+ "▁харак": 18194,
+ "▁draft": 18195,
+ "▁channels": 18196,
+ "▁desert": 18197,
+ "▁través": 18198,
+ "▁Lock": 18199,
+ "▁siendo": 18200,
+ "фек": 18201,
+ "même": 18202,
+ "▁packet": 18203,
+ "▁Mountain": 18204,
+ "▁Fahr": 18205,
+ "braio": 18206,
+ "пере": 18207,
+ "▁genannt": 18208,
+ "▁deployment": 18209,
+ "Pal": 18210,
+ "ног": 18211,
+ "стру": 18212,
+ "Prim": 18213,
+ "für": 18214,
+ "▁dangerous": 18215,
+ "▁szám": 18216,
+ "reck": 18217,
+ "▁popup": 18218,
+ "icky": 18219,
+ "inar": 18220,
+ "cowo": 18221,
+ "нцикло": 18222,
+ "ítás": 18223,
+ "▁plugins": 18224,
+ "▁driven": 18225,
+ "лев": 18226,
+ "▁\"(": 18227,
+ "tta": 18228,
+ "▁Ú": 18229,
+ "▁eb": 18230,
+ "▁'';": 18231,
+ "▁knock": 18232,
+ "▁основа": 18233,
+ "▁maison": 18234,
+ "гля": 18235,
+ "▁Honor": 18236,
+ "tail": 18237,
+ "ritz": 18238,
+ "▁guys": 18239,
+ "▁combinations": 18240,
+ "ondere": 18241,
+ "▁Ald": 18242,
+ "▁fiddle": 18243,
+ "дав": 18244,
+ "urd": 18245,
+ "▁projection": 18246,
+ "▁También": 18247,
+ "verb": 18248,
+ "▁terre": 18249,
+ "rugu": 18250,
+ "▁september": 18251,
+ "▁=": 18572,
+ "▁Beat": 18573,
+ "▁Sax": 18574,
+ "vertical": 18575,
+ "кто": 18576,
+ "▁plants": 18577,
+ "▁Références": 18578,
+ "▁ogni": 18579,
+ "▁curs": 18580,
+ "▁SK": 18581,
+ "они": 18582,
+ "▁destac": 18583,
+ "\");\r": 18584,
+ "▁Sure": 18585,
+ "▁partido": 18586,
+ "▁Folge": 18587,
+ "▁Moore": 18588,
+ "▁wz": 18589,
+ "скус": 18590,
+ "ltre": 18591,
+ "ondo": 18592,
+ "▁pose": 18593,
+ "imos": 18594,
+ "бой": 18595,
+ "ципа": 18596,
+ "jus": 18597,
+ ".....": 18598,
+ "▁época": 18599,
+ "▁quanto": 18600,
+ "▁Support": 18601,
+ "geschichte": 18602,
+ "SERVER": 18603,
+ "▁Georges": 18604,
+ "enum": 18605,
+ "▁herm": 18606,
+ "▁nebo": 18607,
+ "▁Chr": 18608,
+ "character": 18609,
+ "▁***": 18610,
+ "▁Forsch": 18611,
+ "iami": 18612,
+ "▁¿": 18613,
+ "cych": 18614,
+ "▁fifth": 18615,
+ "sent": 18616,
+ "▁anderem": 18617,
+ "▁proportion": 18618,
+ "▁prest": 18619,
+ "▁Girl": 18620,
+ "▁drama": 18621,
+ "wand": 18622,
+ "▁Mail": 18623,
+ "▁Lux": 18624,
+ "▁který": 18625,
+ "▁Gesellschaft": 18626,
+ "▁Hinweis": 18627,
+ "nisse": 18628,
+ "▁mondo": 18629,
+ "Eq": 18630,
+ "▁perí": 18631,
+ "▁eastern": 18632,
+ "▁UEFA": 18633,
+ "uale": 18634,
+ "▁convex": 18635,
+ "▁поль": 18636,
+ "▁Hey": 18637,
+ "zenie": 18638,
+ "initely": 18639,
+ "▁Zusammen": 18640,
+ "SSL": 18641,
+ "ocal": 18642,
+ "▁canal": 18643,
+ "voy": 18644,
+ "▁Кри": 18645,
+ "▁között": 18646,
+ "▁cars": 18647,
+ "▁versión": 18648,
+ "Environment": 18649,
+ "Her": 18650,
+ "▁señ": 18651,
+ "▁spatial": 18652,
+ "ymi": 18653,
+ "Fire": 18654,
+ "▁veget": 18655,
+ "▁Wie": 18656,
+ "▁znaj": 18657,
+ "▁damage": 18658,
+ "▁endl": 18659,
+ "gif": 18660,
+ "▁quali": 18661,
+ "▁которых": 18662,
+ "ellan": 18663,
+ "▁mens": 18664,
+ "▁plug": 18665,
+ "▁abund": 18666,
+ "FIG": 18667,
+ "▁sf": 18668,
+ "▁confl": 18669,
+ "▁населения": 18670,
+ "▁principles": 18671,
+ "▁Gabriel": 18672,
+ "ibe": 18673,
+ "▁{%": 18674,
+ "▁població": 18675,
+ "ніципа": 18676,
+ "▁extreme": 18677,
+ "▁asse": 18678,
+ "▁vu": 18679,
+ "Mock": 18680,
+ "▁spielte": 18681,
+ "▁Aer": 18682,
+ "▁datos": 18683,
+ "endes": 18684,
+ "▁Gel": 18685,
+ "▁Gor": 18686,
+ "Christ": 18687,
+ "chos": 18688,
+ "Processor": 18689,
+ "▁instruct": 18690,
+ "▁picked": 18691,
+ "nahme": 18692,
+ "fahr": 18693,
+ "▁indicated": 18694,
+ "▁%.": 18695,
+ "▁ts": 18696,
+ "▁notable": 18697,
+ "▁qualified": 18698,
+ "▁Ал": 18699,
+ "Black": 18700,
+ "▁council": 18701,
+ "▁overhead": 18702,
+ "aci": 18703,
+ "année": 18704,
+ "▁initWith": 18705,
+ "bió": 18706,
+ "▁introduction": 18707,
+ "▁companion": 18708,
+ "▁expon": 18709,
+ "▁kör": 18710,
+ "oby": 18711,
+ "burn": 18712,
+ "gnu": 18713,
+ "virtual": 18714,
+ "▁intellect": 18715,
+ "▁держа": 18716,
+ "'+": 18717,
+ "бле": 18718,
+ "▁strictly": 18719,
+ "▁recognize": 18720,
+ "hour": 18721,
+ "▁Wrest": 18722,
+ "ennen": 18723,
+ "$).": 18724,
+ "fff": 18725,
+ "▁Centro": 18726,
+ "▁Pitt": 18727,
+ "▁dział": 18728,
+ "▁cela": 18729,
+ "▁francese": 18730,
+ "рами": 18731,
+ "special": 18732,
+ "▁Dup": 18733,
+ "toire": 18734,
+ "каль": 18735,
+ "COUNT": 18736,
+ "▁Brook": 18737,
+ "▁руково": 18738,
+ "publique": 18739,
+ "▁seconda": 18740,
+ "▁compt": 18741,
+ "▁bland": 18742,
+ "Before": 18743,
+ "▁Pack": 18744,
+ "alty": 18745,
+ "öder": 18746,
+ "▁intervals": 18747,
+ "▁Datenbank": 18748,
+ "Movie": 18749,
+ "▁transm": 18750,
+ "▁tap": 18751,
+ "▁поч": 18752,
+ "fon": 18753,
+ "iai": 18754,
+ "▁fib": 18755,
+ "▁wyd": 18756,
+ "▁hung": 18757,
+ "▁alive": 18758,
+ "Clear": 18759,
+ "▁pushed": 18760,
+ "▁tuple": 18761,
+ "achen": 18762,
+ "гово": 18763,
+ "▁revers": 18764,
+ "▁augment": 18765,
+ "▁challenge": 18766,
+ "lost": 18767,
+ "▁deuxième": 18768,
+ "structor": 18769,
+ "▁mehrerer": 18770,
+ "atural": 18771,
+ "Split": 18772,
+ "стем": 18773,
+ "шла": 18774,
+ ")\\\\": 18775,
+ "▁Dog": 18776,
+ "▁developers": 18777,
+ "▁nod": 18778,
+ "▁сторо": 18779,
+ "▁NaN": 18780,
+ "▁priest": 18781,
+ "▁exha": 18782,
+ "UND": 18783,
+ "pair": 18784,
+ "alone": 18785,
+ "▁moon": 18786,
+ "▁#!/": 18787,
+ "▁guns": 18788,
+ "rola": 18789,
+ "чита": 18790,
+ "▁Encyclopedia": 18791,
+ "atis": 18792,
+ "▁'\"": 18793,
+ "zych": 18794,
+ "▁superfic": 18795,
+ "▁эк": 18796,
+ "едера": 18797,
+ "feed": 18798,
+ "LAY": 18799,
+ "Fi": 18800,
+ "unks": 18801,
+ "isecond": 18802,
+ "▁'@": 18803,
+ "▁Adding": 18804,
+ "рое": 18805,
+ "▁tang": 18806,
+ "цо": 18807,
+ "hung": 18808,
+ "bis": 18809,
+ "ského": 18810,
+ "▁advert": 18811,
+ "▁занима": 18812,
+ "uzz": 18813,
+ "ágina": 18814,
+ "▁Tel": 18815,
+ "sig": 18816,
+ "▁Ez": 18817,
+ "▁guarantee": 18818,
+ "▁teaching": 18819,
+ "oty": 18820,
+ "termin": 18821,
+ "▁distributions": 18822,
+ "FLA": 18823,
+ "▁Giuseppe": 18824,
+ "querySelector": 18825,
+ "▁/\\": 18826,
+ "▁Squad": 18827,
+ "gz": 18828,
+ "delay": 18829,
+ "▁surrounding": 18830,
+ "▁manus": 18831,
+ "▁Hou": 18832,
+ "²,": 18833,
+ "▁cultiv": 18834,
+ "▁troubles": 18835,
+ "▁raison": 18836,
+ "expand": 18837,
+ "▁cov": 18838,
+ "nungen": 18839,
+ ")){": 18840,
+ "▁geen": 18841,
+ "▁außer": 18842,
+ "▁Лі": 18843,
+ "ři": 18844,
+ "▁situations": 18845,
+ "▁telep": 18846,
+ "▁Jed": 18847,
+ "▁travail": 18848,
+ "lias": 18849,
+ "bullet": 18850,
+ "▁selecting": 18851,
+ "avier": 18852,
+ "▁essential": 18853,
+ "(/": 18854,
+ "yyyy": 18855,
+ "ště": 18856,
+ "ulty": 18857,
+ "▁kra": 18858,
+ "▁tabs": 18859,
+ "▁experienced": 18860,
+ "azi": 18861,
+ "▁Directory": 18862,
+ "▁cron": 18863,
+ "▁spend": 18864,
+ "▁RA": 18865,
+ "▁selenium": 18866,
+ "▁Thé": 18867,
+ "Elements": 18868,
+ "cii": 18869,
+ "▁plat": 18870,
+ "▁archive": 18871,
+ "▁assistance": 18872,
+ "▁neck": 18873,
+ "▁Avenue": 18874,
+ "▁wheel": 18875,
+ "▁hade": 18876,
+ "Common": 18877,
+ "▁Dialog": 18878,
+ "▁forg": 18879,
+ "▁surely": 18880,
+ "▁hockey": 18881,
+ "któ": 18882,
+ "▁tk": 18883,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 18884,
+ "▁Bruce": 18885,
+ "▁enorm": 18886,
+ ",’": 18887,
+ "▁Christopher": 18888,
+ "jev": 18889,
+ "▁quad": 18890,
+ "▁AJAX": 18891,
+ "▁relief": 18892,
+ "▁modes": 18893,
+ "sklär": 18894,
+ "▁Vid": 18895,
+ "▁Serial": 18896,
+ "▁tokens": 18897,
+ "▁Poland": 18898,
+ "\\]": 18899,
+ "▁vide": 18900,
+ "rooms": 18901,
+ "omas": 18902,
+ "▁Bureau": 18903,
+ "cx": 18904,
+ "ностью": 18905,
+ "▁signs": 18906,
+ "шение": 18907,
+ "lossen": 18908,
+ "▁Queens": 18909,
+ "▁membre": 18910,
+ "▁mez": 18911,
+ "▁Bool": 18912,
+ "▁Naj": 18913,
+ "▁Memory": 18914,
+ "▁Khan": 18915,
+ "▁là": 18916,
+ "▁Hud": 18917,
+ "▁dismiss": 18918,
+ "ighth": 18919,
+ "▁fs": 18920,
+ "prevent": 18921,
+ "▁меда": 18922,
+ "▁Police": 18923,
+ "▁ско": 18924,
+ "finite": 18925,
+ "▁ami": 18926,
+ "▁Much": 18927,
+ "owania": 18928,
+ "ORY": 18929,
+ "iors": 18930,
+ "▁Premio": 18931,
+ "▁textbox": 18932,
+ "dm": 18933,
+ "▁afin": 18934,
+ "▁Donald": 18935,
+ "▁Priv": 18936,
+ "▁decid": 18937,
+ "▁Maurice": 18938,
+ "agan": 18939,
+ "▁Britannica": 18940,
+ "▁oft": 18941,
+ "▁consecutive": 18942,
+ "\"?>": 18943,
+ "овий": 18944,
+ "student": 18945,
+ "▁peque": 18946,
+ "▁dieses": 18947,
+ "▁retour": 18948,
+ "étr": 18949,
+ "▁сез": 18950,
+ "▁kre": 18951,
+ "▁votes": 18952,
+ "ruption": 18953,
+ "izada": 18954,
+ "▁Wiel": 18955,
+ "▁Gray": 18956,
+ "▁Leop": 18957,
+ "teilung": 18958,
+ "(['": 18959,
+ "▁whites": 18960,
+ "frica": 18961,
+ "animation": 18962,
+ "curl": 18963,
+ "lings": 18964,
+ "=\"$": 18965,
+ "loyd": 18966,
+ "textsc": 18967,
+ "ору": 18968,
+ "▁села": 18969,
+ "esian": 18970,
+ "▁Mission": 18971,
+ "▁неза": 18972,
+ "▁ultimately": 18973,
+ "бов": 18974,
+ "olen": 18975,
+ "скому": 18976,
+ "nete": 18977,
+ "▁Dit": 18978,
+ "▁costru": 18979,
+ "dependent": 18980,
+ "▁Resource": 18981,
+ "▁hosts": 18982,
+ "▁rear": 18983,
+ "Duration": 18984,
+ "ників": 18985,
+ "Ма": 18986,
+ "▁planning": 18987,
+ "▁prediction": 18988,
+ "▁Lyn": 18989,
+ "▁kir": 18990,
+ "▁Legisl": 18991,
+ "мат": 18992,
+ "▁Soccer": 18993,
+ "▁survey": 18994,
+ "▁estadounidense": 18995,
+ "orgen": 18996,
+ "jourd": 18997,
+ "▁aprile": 18998,
+ "▁ids": 18999,
+ "ське": 19000,
+ "▁employee": 19001,
+ "▁Schauspieler": 19002,
+ "ръ": 19003,
+ "▁multimedia": 19004,
+ "▁свою": 19005,
+ "▁wine": 19006,
+ "▁EU": 19007,
+ "ică": 19008,
+ "▁Rhein": 19009,
+ "▁Palmar": 19010,
+ "oteca": 19011,
+ "▁prepare": 19012,
+ "▁Tot": 19013,
+ "▁Null": 19014,
+ "▁kin": 19015,
+ "inals": 19016,
+ "▁Newton": 19017,
+ "▁tbl": 19018,
+ "▁Sold": 19019,
+ "▁verf": 19020,
+ "aturing": 19021,
+ "▁laptop": 19022,
+ "▁Совет": 19023,
+ "secret": 19024,
+ "▁Olympic": 19025,
+ "▁footballer": 19026,
+ "▁Rudolf": 19027,
+ "▁conhe": 19028,
+ "zysk": 19029,
+ "▁evaluated": 19030,
+ "»)": 19031,
+ "shop": 19032,
+ "repository": 19033,
+ "▁zach": 19034,
+ "▁losing": 19035,
+ "etter": 19036,
+ "▁Wirtschaft": 19037,
+ "так": 19038,
+ "▁unnecessary": 19039,
+ "▁Phot": 19040,
+ "anska": 19041,
+ "▁Native": 19042,
+ "CCE": 19043,
+ "▁fifty": 19044,
+ "▁erw": 19045,
+ "rh": 19046,
+ "issent": 19047,
+ "}{(": 19048,
+ "▁lanç": 19049,
+ "▁Xcode": 19050,
+ "город": 19051,
+ "cir": 19052,
+ "▁película": 19053,
+ "▁Oscar": 19054,
+ "▁shore": 19055,
+ "▁supplied": 19056,
+ "examples": 19057,
+ "Mess": 19058,
+ "VICE": 19059,
+ "▁exclude": 19060,
+ "▁hen": 19061,
+ "▁губер": 19062,
+ "▁Fragment": 19063,
+ "▁Bitte": 19064,
+ "▁Besides": 19065,
+ "▁hes": 19066,
+ "▁ihrem": 19067,
+ "▁Serge": 19068,
+ "▁artific": 19069,
+ "=\"${": 19070,
+ "лово": 19071,
+ "uteur": 19072,
+ "taire": 19073,
+ "пас": 19074,
+ "▁easiest": 19075,
+ "▁famiglia": 19076,
+ "Normal": 19077,
+ "▁dalle": 19078,
+ "▁nations": 19079,
+ "rp": 19080,
+ "thead": 19081,
+ "▁області": 19082,
+ "▁Democratic": 19083,
+ "▁челове": 19084,
+ "мож": 19085,
+ "▁гер": 19086,
+ "▁smallest": 19087,
+ "▁Publishing": 19088,
+ "▁Ts": 19089,
+ "▁laughed": 19090,
+ "lle": 19091,
+ "▁Amt": 19092,
+ "▁IIS": 19093,
+ "FORM": 19094,
+ "Mag": 19095,
+ "дон": 19096,
+ "▁storia": 19097,
+ "▁organized": 19098,
+ "ční": 19099,
+ "▁ox": 19100,
+ "lingen": 19101,
+ "▁luego": 19102,
+ "cció": 19103,
+ "▁rely": 19104,
+ "▁tussen": 19105,
+ "erten": 19106,
+ "▁honour": 19107,
+ "▁Claude": 19108,
+ "▁Korea": 19109,
+ "▁Metropol": 19110,
+ "Super": 19111,
+ "rien": 19112,
+ "érature": 19113,
+ "attro": 19114,
+ "▁біль": 19115,
+ "▁Herbert": 19116,
+ "▁auteurs": 19117,
+ "▁darauf": 19118,
+ "▁mental": 19119,
+ "▁rang": 19120,
+ "▁són": 19121,
+ "▁Soph": 19122,
+ ")\",": 19123,
+ "Descriptor": 19124,
+ "prepare": 19125,
+ "▁Landkreis": 19126,
+ "HC": 19127,
+ "cross": 19128,
+ "лиза": 19129,
+ "▁Login": 19130,
+ "onen": 19131,
+ "Feature": 19132,
+ "▁museum": 19133,
+ "vek": 19134,
+ "▁Nelson": 19135,
+ "▁rejo": 19136,
+ "▁команди": 19137,
+ "▁summar": 19138,
+ "▁следу": 19139,
+ "ämp": 19140,
+ "▁Gas": 19141,
+ "вом": 19142,
+ "VALUE": 19143,
+ "inge": 19144,
+ "period": 19145,
+ "lassen": 19146,
+ "ával": 19147,
+ "▁altogether": 19148,
+ "umph": 19149,
+ "istro": 19150,
+ "ąż": 19151,
+ "▁Keep": 19152,
+ "▁Marco": 19153,
+ "▁étant": 19154,
+ "▁Dre": 19155,
+ "geometry": 19156,
+ "▁Kas": 19157,
+ "messages": 19158,
+ "Cook": 19159,
+ "▁Side": 19160,
+ "▁коми": 19161,
+ "стри": 19162,
+ "▁excess": 19163,
+ "▁Biografia": 19164,
+ "XXXX": 19165,
+ "▁Nie": 19166,
+ "vendor": 19167,
+ "xsd": 19168,
+ "Mill": 19169,
+ "processing": 19170,
+ "▁Missouri": 19171,
+ "▁permett": 19172,
+ "▁apar": 19173,
+ "▁crowd": 19174,
+ "fert": 19175,
+ "▁Dou": 19176,
+ "rí": 19177,
+ "▁CC": 19178,
+ "▁payment": 19179,
+ "▁Hollywood": 19180,
+ "▁Virtual": 19181,
+ "▁spoken": 19182,
+ "▁tram": 19183,
+ "▁Community": 19184,
+ "▁administrative": 19185,
+ "▁воло": 19186,
+ "gior": 19187,
+ "visor": 19188,
+ "▁Украи": 19189,
+ "stage": 19190,
+ "▁Format": 19191,
+ "▁convenient": 19192,
+ "На": 19193,
+ "▁median": 19194,
+ "▁вра": 19195,
+ "▁Према": 19196,
+ "enig": 19197,
+ "▁Opera": 19198,
+ "rés": 19199,
+ "▁fmt": 19200,
+ "▁efficiency": 19201,
+ "male": 19202,
+ "Master": 19203,
+ "Series": 19204,
+ "▁syd": 19205,
+ "generic": 19206,
+ "interval": 19207,
+ "▁efect": 19208,
+ "▁inwoners": 19209,
+ "лимпи": 19210,
+ "irement": 19211,
+ "Err": 19212,
+ "öh": 19213,
+ "▁lying": 19214,
+ "▁Settings": 19215,
+ "!=": 19216,
+ "ematic": 19217,
+ "argv": 19218,
+ "▁Basic": 19219,
+ "▁consideration": 19220,
+ "▁habe": 19221,
+ "-%": 19222,
+ "▁mountains": 19223,
+ "▁peak": 19224,
+ "▁fallen": 19225,
+ "eded": 19226,
+ "logic": 19227,
+ "▁matched": 19228,
+ "▁typing": 19229,
+ ")},": 19230,
+ "▁fancy": 19231,
+ "▁elegant": 19232,
+ "ال": 19233,
+ "▁участ": 19234,
+ "▁Sarah": 19235,
+ "▁Verd": 19236,
+ "▁tego": 19237,
+ "rules": 19238,
+ "▁mounted": 19239,
+ "▁ім": 19240,
+ "еру": 19241,
+ "stoff": 19242,
+ "fahren": 19243,
+ "distance": 19244,
+ "▁License": 19245,
+ "▁LEFT": 19246,
+ "▁wp": 19247,
+ "/{": 19248,
+ "▁amazon": 19249,
+ ">&": 19250,
+ "▁első": 19251,
+ "quarters": 19252,
+ "▁shock": 19253,
+ "nick": 19254,
+ "▁Archite": 19255,
+ "▁Square": 19256,
+ "▁rates": 19257,
+ "iore": 19258,
+ "▁Nat": 19259,
+ "▁Charlot": 19260,
+ "reichen": 19261,
+ "▁variation": 19262,
+ "osis": 19263,
+ "life": 19264,
+ "slide": 19265,
+ "abi": 19266,
+ "uki": 19267,
+ "mysq": 19268,
+ "▁primitive": 19269,
+ "▁universitaire": 19270,
+ "LENG": 19271,
+ "ależ": 19272,
+ "ebook": 19273,
+ "syn": 19274,
+ "▁Gegen": 19275,
+ "▁Kü": 19276,
+ "▁але": 19277,
+ "▁Lub": 19278,
+ "concurrent": 19279,
+ "izzato": 19280,
+ "▁stub": 19281,
+ "▁ie": 19282,
+ "▁'./": 19283,
+ "cod": 19284,
+ "▁internacional": 19285,
+ "▁Glas": 19286,
+ "▁mare": 19287,
+ "▁Neb": 19288,
+ "▁GB": 19289,
+ "kwargs": 19290,
+ "▁aument": 19291,
+ "WID": 19292,
+ "▁род": 19293,
+ "punkt": 19294,
+ "▁Grad": 19295,
+ "SN": 19296,
+ "AMP": 19297,
+ "▁Born": 19298,
+ "▁Guerre": 19299,
+ "готов": 19300,
+ "▁medio": 19301,
+ "Med": 19302,
+ "supp": 19303,
+ "actual": 19304,
+ "dropdown": 19305,
+ "▁oktober": 19306,
+ "▁ř": 19307,
+ "▁circular": 19308,
+ "▁skin": 19309,
+ "▁emphas": 19310,
+ "▁голов": 19311,
+ "▁pue": 19312,
+ "▁informations": 19313,
+ "▁Wolfgang": 19314,
+ "▁useless": 19315,
+ "ит": 19316,
+ "▁Joan": 19317,
+ "▁бор": 19318,
+ "▁Glad": 19319,
+ "▁Know": 19320,
+ "ként": 19321,
+ "speed": 19322,
+ "▁Kevin": 19323,
+ "unft": 19324,
+ "▁arqu": 19325,
+ "▁Casa": 19326,
+ "(...": 19327,
+ "▁rapidly": 19328,
+ "▁proble": 19329,
+ "▁Википеди": 19330,
+ "žen": 19331,
+ "▁Neben": 19332,
+ "▁Meter": 19333,
+ "Children": 19334,
+ "cem": 19335,
+ "igos": 19336,
+ "aju": 19337,
+ "▁Retrie": 19338,
+ "▁Hell": 19339,
+ "▁gig": 19340,
+ "▁controvers": 19341,
+ "▁zoom": 19342,
+ "▁cens": 19343,
+ "▁alcuni": 19344,
+ "▁Header": 19345,
+ "Meta": 19346,
+ "Required": 19347,
+ "▁институ": 19348,
+ "▁skup": 19349,
+ "▁ingles": 19350,
+ "égl": 19351,
+ "bij": 19352,
+ "▁tér": 19353,
+ "▁compag": 19354,
+ "▁committed": 19355,
+ "▁processed": 19356,
+ "Lower": 19357,
+ "▁Foreign": 19358,
+ "▁seq": 19359,
+ "sheets": 19360,
+ "▁Fem": 19361,
+ "hoz": 19362,
+ "inks": 19363,
+ "▁kall": 19364,
+ "variant": 19365,
+ "▁libro": 19366,
+ "▁clicks": 19367,
+ "▁gobierno": 19368,
+ "iegel": 19369,
+ "мого": 19370,
+ "geme": 19371,
+ "▁tower": 19372,
+ "▁parish": 19373,
+ "▁TCP": 19374,
+ "▁ls": 19375,
+ "▁nginx": 19376,
+ "NaN": 19377,
+ "▁Dir": 19378,
+ "▁Begriffe": 19379,
+ "arie": 19380,
+ "ímp": 19381,
+ "icios": 19382,
+ "▁sharing": 19383,
+ "▁cinéma": 19384,
+ "bec": 19385,
+ "RED": 19386,
+ "▁Kra": 19387,
+ "abol": 19388,
+ "▁flux": 19389,
+ "▁expensive": 19390,
+ "▁суще": 19391,
+ "▁`_": 19392,
+ "ocz": 19393,
+ "лист": 19394,
+ "▁acquaint": 19395,
+ "▁wise": 19396,
+ "▁pouvoir": 19397,
+ "▁devant": 19398,
+ "▁momentum": 19399,
+ "immer": 19400,
+ "▁Coupe": 19401,
+ "indexOf": 19402,
+ "▁doesnt": 19403,
+ "▁зав": 19404,
+ "▁license": 19405,
+ "▁â": 19406,
+ "CSS": 19407,
+ "▁rice": 19408,
+ "Team": 19409,
+ "▁ano": 19410,
+ "lit": 19411,
+ "▁merged": 19412,
+ "▁Cell": 19413,
+ "лл": 19414,
+ "boy": 19415,
+ "asts": 19416,
+ "▁sell": 19417,
+ "▁große": 19418,
+ "▁virtuel": 19419,
+ "Cancel": 19420,
+ "▁sj": 19421,
+ "gment": 19422,
+ ".<": 19423,
+ "чай": 19424,
+ "ië": 19425,
+ "akh": 19426,
+ "izers": 19427,
+ "prit": 19428,
+ "▁Tib": 19429,
+ "▁elaborate": 19430,
+ "▁fé": 19431,
+ "▁меди": 19432,
+ "LENGTH": 19433,
+ "▁primarily": 19434,
+ "▁scores": 19435,
+ "▁carrying": 19436,
+ "▁lake": 19437,
+ "compose": 19438,
+ "▁Township": 19439,
+ "unge": 19440,
+ "▁alberga": 19441,
+ "anych": 19442,
+ "quelle": 19443,
+ "▁Ark": 19444,
+ "▁pris": 19445,
+ "▁voll": 19446,
+ "шли": 19447,
+ "Validation": 19448,
+ "▁ceux": 19449,
+ "▁populate": 19450,
+ "\"\r": 19451,
+ "▁femmes": 19452,
+ "ANG": 19453,
+ "▁Despite": 19454,
+ "вые": 19455,
+ "iske": 19456,
+ "zug": 19457,
+ "нача": 19458,
+ "▁hatten": 19459,
+ "INSERT": 19460,
+ "Employee": 19461,
+ "▁moments": 19462,
+ "▁última": 19463,
+ "▁holder": 19464,
+ "blank": 19465,
+ "Collections": 19466,
+ "athers": 19467,
+ "▁grade": 19468,
+ "▁affairs": 19469,
+ ".$$": 19470,
+ "▁delta": 19471,
+ "▁Jugend": 19472,
+ "▁español": 19473,
+ "▁OUT": 19474,
+ "▁mathematical": 19475,
+ "▁mongo": 19476,
+ "▁Фе": 19477,
+ "uling": 19478,
+ "▁revolution": 19479,
+ "▁coin": 19480,
+ "▁subclass": 19481,
+ "\"=>": 19482,
+ "äche": 19483,
+ "▁pyg": 19484,
+ "щая": 19485,
+ "illery": 19486,
+ "▁comenz": 19487,
+ "depth": 19488,
+ "▁cél": 19489,
+ "▁resize": 19490,
+ "▁Same": 19491,
+ "▁strik": 19492,
+ "▁tir": 19493,
+ "▁scarc": 19494,
+ "▁Member": 19495,
+ "subscribe": 19496,
+ "óż": 19497,
+ "útbol": 19498,
+ "except": 19499,
+ "▁driving": 19500,
+ "kie": 19501,
+ "zony": 19502,
+ "èmes": 19503,
+ "David": 19504,
+ "issant": 19505,
+ "▁ты": 19506,
+ "▁élect": 19507,
+ "▁rename": 19508,
+ "▁Running": 19509,
+ "▁interfaces": 19510,
+ "////////////////": 19511,
+ "▁Walker": 19512,
+ "▁société": 19513,
+ "▁asks": 19514,
+ "brid": 19515,
+ "▁jewe": 19516,
+ "▁seines": 19517,
+ "▁agents": 19518,
+ "▁MY": 19519,
+ "▁Lawrence": 19520,
+ "dess": 19521,
+ "iesen": 19522,
+ "▁людях": 19523,
+ "прави": 19524,
+ "▁ancest": 19525,
+ "▁welche": 19526,
+ "raum": 19527,
+ "▁orb": 19528,
+ "scal": 19529,
+ "▁Lear": 19530,
+ "▁wear": 19531,
+ "▁slave": 19532,
+ "▁renamed": 19533,
+ "čen": 19534,
+ "maste": 19535,
+ "angles": 19536,
+ "▁América": 19537,
+ "▁ti": 19538,
+ "▁demsel": 19539,
+ "▁beneath": 19540,
+ "binary": 19541,
+ "▁edición": 19542,
+ "▁kilomet": 19543,
+ "uits": 19544,
+ "▁cuatro": 19545,
+ "▁entrance": 19546,
+ "ondissement": 19547,
+ "▁bag": 19548,
+ "▁Armen": 19549,
+ "ijo": 19550,
+ "▁Lors": 19551,
+ "▁demselben": 19552,
+ "êm": 19553,
+ "▁discrete": 19554,
+ "▁prominent": 19555,
+ "▁Jay": 19556,
+ "decor": 19557,
+ "DL": 19558,
+ "▁dí": 19559,
+ "Struct": 19560,
+ "▁Production": 19561,
+ "they": 19562,
+ "arius": 19563,
+ "schnitt": 19564,
+ "▁Cou": 19565,
+ "▁lex": 19566,
+ "youtube": 19567,
+ "▁работа": 19568,
+ "station": 19569,
+ "sep": 19570,
+ "▁mirror": 19571,
+ "▁hits": 19572,
+ "▁Beck": 19573,
+ "atically": 19574,
+ "▁Laz": 19575,
+ "▁winner": 19576,
+ "DEX": 19577,
+ "▁INT": 19578,
+ "}^{-": 19579,
+ "▁wegen": 19580,
+ "mad": 19581,
+ "Angle": 19582,
+ "zing": 19583,
+ "▁Bayern": 19584,
+ "sal": 19585,
+ "äger": 19586,
+ "▁busy": 19587,
+ "▁stör": 19588,
+ "▁folk": 19589,
+ "▁prix": 19590,
+ "▁allocated": 19591,
+ "▁pt": 19592,
+ "affen": 19593,
+ "cluster": 19594,
+ "▁complement": 19595,
+ "árs": 19596,
+ "▁Amerika": 19597,
+ "рій": 19598,
+ "▁valley": 19599,
+ "▁rooms": 19600,
+ "▁moi": 19601,
+ ".\",": 19602,
+ ";;;;": 19603,
+ "▁lowest": 19604,
+ "nog": 19605,
+ "▁landet": 19606,
+ "▁programme": 19607,
+ "chio": 19608,
+ "▁Während": 19609,
+ "ández": 19610,
+ "▁долж": 19611,
+ "▁ouv": 19612,
+ "omány": 19613,
+ "▁Википедии": 19614,
+ "▁só": 19615,
+ "▁elektr": 19616,
+ "Desc": 19617,
+ "▁Beaut": 19618,
+ "нар": 19619,
+ "▁може": 19620,
+ "Pierre": 19621,
+ "esota": 19622,
+ "▁operated": 19623,
+ "▁forte": 19624,
+ "рис": 19625,
+ "▁opposition": 19626,
+ "alia": 19627,
+ "▁Syl": 19628,
+ "getName": 19629,
+ "вели": 19630,
+ "fik": 19631,
+ "▁comprom": 19632,
+ "▁TextView": 19633,
+ "Spring": 19634,
+ "metadata": 19635,
+ "engu": 19636,
+ "/,": 19637,
+ "▁carri": 19638,
+ "istol": 19639,
+ "▁diagonal": 19640,
+ "lista": 19641,
+ "izen": 19642,
+ "▁rende": 19643,
+ "gcc": 19644,
+ "beck": 19645,
+ "lius": 19646,
+ "iral": 19647,
+ "Resolver": 19648,
+ "▁percentage": 19649,
+ "▁attra": 19650,
+ "strings": 19651,
+ "wiąz": 19652,
+ "ods": 19653,
+ "волю": 19654,
+ "ęż": 19655,
+ "▁newspaper": 19656,
+ "imiter": 19657,
+ "ABC": 19658,
+ "▁Manchester": 19659,
+ "[{": 19660,
+ "Agent": 19661,
+ "▁Wor": 19662,
+ "▁Kath": 19663,
+ "▁пові": 19664,
+ "▁entonces": 19665,
+ "▁niveau": 19666,
+ "atted": 19667,
+ "learn": 19668,
+ "atiques": 19669,
+ "▁уби": 19670,
+ "▁quindi": 19671,
+ "binding": 19672,
+ "▁imported": 19673,
+ "▁Horn": 19674,
+ "emberg": 19675,
+ "complex": 19676,
+ "▁neural": 19677,
+ "information": 19678,
+ "▁recognition": 19679,
+ "ingt": 19680,
+ "▁inhabitants": 19681,
+ "vue": 19682,
+ "▁Bevölker": 19683,
+ "▁curves": 19684,
+ "▁leb": 19685,
+ "дій": 19686,
+ "▁sow": 19687,
+ "▁sentiment": 19688,
+ "PH": 19689,
+ "rache": 19690,
+ "▁-(": 19691,
+ "▁estable": 19692,
+ "▁Ferdinand": 19693,
+ "▁écrit": 19694,
+ "▁primeiro": 19695,
+ "▁tex": 19696,
+ "▁intermediate": 19697,
+ "verage": 19698,
+ "ibus": 19699,
+ "▁serves": 19700,
+ "ivas": 19701,
+ "▁bru": 19702,
+ "▁lum": 19703,
+ "attice": 19704,
+ "чный": 19705,
+ "▁Dres": 19706,
+ "▁videos": 19707,
+ "duration": 19708,
+ "▁abit": 19709,
+ "▁egg": 19710,
+ "ographical": 19711,
+ "alph": 19712,
+ "STATE": 19713,
+ "▁пара": 19714,
+ "reading": 19715,
+ "▁vehicle": 19716,
+ "▁fortune": 19717,
+ "ultats": 19718,
+ "▁Storia": 19719,
+ "midt": 19720,
+ "łącz": 19721,
+ "▁Memorial": 19722,
+ "▁vas": 19723,
+ "▁зан": 19724,
+ "▁utility": 19725,
+ "▁obsc": 19726,
+ "▁relacion": 19727,
+ "▁runat": 19728,
+ "Release": 19729,
+ "take": 19730,
+ "▁Oliver": 19731,
+ "▁Sid": 19732,
+ "ulos": 19733,
+ "▁Garc": 19734,
+ "▁розта": 19735,
+ "▁Sak": 19736,
+ "Py": 19737,
+ "führt": 19738,
+ "▁trabal": 19739,
+ "*{": 19740,
+ "▁zes": 19741,
+ "▁szere": 19742,
+ "▁varios": 19743,
+ "▁otra": 19744,
+ "▁eval": 19745,
+ "▁situé": 19746,
+ "▁wounded": 19747,
+ "▁Vincent": 19748,
+ "▁викори": 19749,
+ "▁encode": 19750,
+ "Modal": 19751,
+ "▁forb": 19752,
+ "▁dynamics": 19753,
+ "▁depos": 19754,
+ "arde": 19755,
+ "▁streets": 19756,
+ "▁Komm": 19757,
+ "=$(": 19758,
+ "▁повер": 19759,
+ "▁dois": 19760,
+ "▁vitt": 19761,
+ "▁automatisch": 19762,
+ "▁reload": 19763,
+ "▁Verwalt": 19764,
+ "bero": 19765,
+ "▁hub": 19766,
+ "▁mos": 19767,
+ "▁tutto": 19768,
+ "▁Frederick": 19769,
+ "łow": 19770,
+ "antages": 19771,
+ "aque": 19772,
+ "paper": 19773,
+ "▁einige": 19774,
+ "`),": 19775,
+ "dj": 19776,
+ "▁Ple": 19777,
+ "▁%,": 19778,
+ "▁Bitmap": 19779,
+ "▁friendly": 19780,
+ "▁truly": 19781,
+ "▁stroke": 19782,
+ "roph": 19783,
+ "▁engl": 19784,
+ "▁coff": 19785,
+ "▁dust": 19786,
+ "▁Jahres": 19787,
+ "ppi": 19788,
+ "▁wys": 19789,
+ "factor": 19790,
+ "schluss": 19791,
+ "▁деревня": 19792,
+ "▁Past": 19793,
+ "▁дома": 19794,
+ "COM": 19795,
+ "▁pueden": 19796,
+ "▁gift": 19797,
+ "▁Gla": 19798,
+ "▁triggered": 19799,
+ "ély": 19800,
+ "ülés": 19801,
+ "▁Oliv": 19802,
+ "▁verso": 19803,
+ "▁lle": 19804,
+ "▁Gli": 19805,
+ "▁Ltd": 19806,
+ "oa": 19807,
+ "▁territorio": 19808,
+ "ordre": 19809,
+ "▁deck": 19810,
+ "dra": 19811,
+ "aszt": 19812,
+ "▁concerning": 19813,
+ "▁Additionally": 19814,
+ "▁které": 19815,
+ "▁grund": 19816,
+ "▁Gest": 19817,
+ "▁misunder": 19818,
+ "pret": 19819,
+ "────": 19820,
+ "▁reputation": 19821,
+ "zia": 19822,
+ "▁успе": 19823,
+ "▁escaped": 19824,
+ "▁Prag": 19825,
+ "perform": 19826,
+ "▁austral": 19827,
+ "▁Vater": 19828,
+ "час": 19829,
+ "▁races": 19830,
+ "▁Byte": 19831,
+ "Mask": 19832,
+ "▁Territ": 19833,
+ "стю": 19834,
+ "▁Voci": 19835,
+ "▁Fichier": 19836,
+ "▁Населення": 19837,
+ "▁Unterscheidung": 19838,
+ "teenth": 19839,
+ "▁pilot": 19840,
+ "▁ji": 19841,
+ "▁двух": 19842,
+ "▁orientation": 19843,
+ "indre": 19844,
+ "▁Dort": 19845,
+ "ças": 19846,
+ "пли": 19847,
+ "▁reaction": 19848,
+ "▁consisting": 19849,
+ "▁ferro": 19850,
+ "тисти": 19851,
+ "yard": 19852,
+ "▁сві": 19853,
+ "▁interpretation": 19854,
+ "ią": 19855,
+ "rah": 19856,
+ "▁fand": 19857,
+ "Public": 19858,
+ "▁universe": 19859,
+ "▁retir": 19860,
+ "▁conscious": 19861,
+ "arqu": 19862,
+ "▁waste": 19863,
+ "▁Bib": 19864,
+ "yclerView": 19865,
+ "▁listening": 19866,
+ "gleich": 19867,
+ "niejs": 19868,
+ "▁correlation": 19869,
+ "▁receiver": 19870,
+ "▁уда": 19871,
+ "▁courage": 19872,
+ "uchs": 19873,
+ "fass": 19874,
+ "▁chunk": 19875,
+ "▁Anfang": 19876,
+ "▁großen": 19877,
+ "continue": 19878,
+ "▁Warszawa": 19879,
+ "hé": 19880,
+ "iy": 19881,
+ "ivement": 19882,
+ "▁α": 19883,
+ "▁exposed": 19884,
+ "▁zahl": 19885,
+ "▁sacr": 19886,
+ "▁Looks": 19887,
+ "▁eager": 19888,
+ "enten": 19889,
+ "Cursor": 19890,
+ "/_": 19891,
+ "ixa": 19892,
+ "рела": 19893,
+ "знача": 19894,
+ "▁фамилией": 19895,
+ "▁argent": 19896,
+ "▁Anders": 19897,
+ "œuvre": 19898,
+ "▁Isa": 19899,
+ "мента": 19900,
+ "▁advers": 19901,
+ "riction": 19902,
+ "GP": 19903,
+ "▁після": 19904,
+ "▁preserve": 19905,
+ "▁Garden": 19906,
+ "Rate": 19907,
+ "après": 19908,
+ "▁readable": 19909,
+ "indu": 19910,
+ "▁skill": 19911,
+ "▁helping": 19912,
+ "ographique": 19913,
+ "cling": 19914,
+ "ologist": 19915,
+ "▁Filter": 19916,
+ "▁finger": 19917,
+ "▁Vall": 19918,
+ "▁Polish": 19919,
+ "lg": 19920,
+ "▁Familien": 19921,
+ "▁waters": 19922,
+ "▁pseud": 19923,
+ "aza": 19924,
+ "_)": 19925,
+ "ARY": 19926,
+ "▁среди": 19927,
+ "▁Must": 19928,
+ "▁Bod": 19929,
+ "anon": 19930,
+ "▁lado": 19931,
+ "▁tight": 19932,
+ "imen": 19933,
+ "appen": 19934,
+ "frames": 19935,
+ "ingers": 19936,
+ "▁COVID": 19937,
+ "▁зі": 19938,
+ "▁све": 19939,
+ "▁ць": 19940,
+ "▁Left": 19941,
+ "]];": 19942,
+ "чь": 19943,
+ "фика": 19944,
+ "▁сло": 19945,
+ "▁пі": 19946,
+ "▁existe": 19947,
+ "▁Atlantic": 19948,
+ "▁maintained": 19949,
+ "▁irre": 19950,
+ "▁année": 19951,
+ "▁commented": 19952,
+ "веро": 19953,
+ "berta": 19954,
+ "▁Lad": 19955,
+ "▁Upon": 19956,
+ "▁pause": 19957,
+ "mill": 19958,
+ "opter": 19959,
+ "UK": 19960,
+ "рес": 19961,
+ "нциклопеди": 19962,
+ "▁alongside": 19963,
+ "▁robot": 19964,
+ "▁fert": 19965,
+ "▁moy": 19966,
+ "▁ade": 19967,
+ "Mapper": 19968,
+ ")->": 19969,
+ "igua": 19970,
+ "étique": 19971,
+ "тка": 19972,
+ "alias": 19973,
+ "▁ори": 19974,
+ "▁Magn": 19975,
+ "▁gehörte": 19976,
+ "imb": 19977,
+ ")}{\\": 19978,
+ "▁Wikipédia": 19979,
+ "▁urs": 19980,
+ "▁ende": 19981,
+ "leb": 19982,
+ "▁GC": 19983,
+ "Hol": 19984,
+ "ancing": 19985,
+ "Union": 19986,
+ "▁tenía": 19987,
+ "TT": 19988,
+ "▁estate": 19989,
+ "há": 19990,
+ "▁полі": 19991,
+ "ultan": 19992,
+ "▁Hockey": 19993,
+ "ulse": 19994,
+ "▁choices": 19995,
+ "scher": 19996,
+ "▁[],": 19997,
+ "▁potentially": 19998,
+ "▁Übers": 19999,
+ "▁admit": 20000,
+ "Comment": 20001,
+ "стя": 20002,
+ "▁Vien": 20003,
+ "▁ці": 20004,
+ "▁permut": 20005,
+ "cgi": 20006,
+ "▁crít": 20007,
+ "Console": 20008,
+ "ctic": 20009,
+ "▁okres": 20010,
+ "awk": 20011,
+ "football": 20012,
+ "ouest": 20013,
+ "CTYPE": 20014,
+ "ologique": 20015,
+ "▁constit": 20016,
+ "▁interests": 20017,
+ "▁Progress": 20018,
+ "▁Menu": 20019,
+ "▁také": 20020,
+ "▁Asian": 20021,
+ "▁защи": 20022,
+ "▁younger": 20023,
+ "▁wished": 20024,
+ "▁Sort": 20025,
+ "▁audience": 20026,
+ "amba": 20027,
+ "▁gehört": 20028,
+ "▁Kansas": 20029,
+ "yaume": 20030,
+ "▁Professional": 20031,
+ "âce": 20032,
+ "▁fatto": 20033,
+ "tod": 20034,
+ "▁datasets": 20035,
+ "▁fare": 20036,
+ "▁waves": 20037,
+ "~/": 20038,
+ "▁measurement": 20039,
+ "▁wol": 20040,
+ "indust": 20041,
+ "▁struggling": 20042,
+ "▁pulled": 20043,
+ "▁caratter": 20044,
+ "▁Externe": 20045,
+ "▁действи": 20046,
+ "cnt": 20047,
+ "liches": 20048,
+ "▁Possible": 20049,
+ "▁faced": 20050,
+ "▁hypothesis": 20051,
+ "▁kilom": 20052,
+ "▁när": 20053,
+ "boolean": 20054,
+ "PY": 20055,
+ "ampa": 20056,
+ "▁kiss": 20057,
+ "▁astero": 20058,
+ "▁negli": 20059,
+ "aments": 20060,
+ "▁Stu": 20061,
+ "ató": 20062,
+ "▁Constitution": 20063,
+ "▁interpol": 20064,
+ "▁Unable": 20065,
+ "▁pis": 20066,
+ "▁parc": 20067,
+ "\"])": 20068,
+ "pler": 20069,
+ "▁autory": 20070,
+ "▁algunos": 20071,
+ "ywna": 20072,
+ "}))": 20073,
+ "▁falls": 20074,
+ "▁équip": 20075,
+ "▁emit": 20076,
+ "▁profil": 20077,
+ "gets": 20078,
+ "фо": 20079,
+ "▁Military": 20080,
+ "▁nombreux": 20081,
+ "oct": 20082,
+ "Replace": 20083,
+ "▁seasons": 20084,
+ "▁château": 20085,
+ "▁typeof": 20086,
+ "polit": 20087,
+ "▁rand": 20088,
+ "▁quar": 20089,
+ "▁erstmals": 20090,
+ "сини": 20091,
+ "▁payload": 20092,
+ "По": 20093,
+ "кін": 20094,
+ "repo": 20095,
+ "▁Pav": 20096,
+ "Score": 20097,
+ "erves": 20098,
+ "▁sollte": 20099,
+ "▁між": 20100,
+ "ébec": 20101,
+ "▁clip": 20102,
+ "▁Nice": 20103,
+ "▁neben": 20104,
+ "▁assass": 20105,
+ "itories": 20106,
+ "▁unity": 20107,
+ "▁ен": 20108,
+ "▁Institut": 20109,
+ "▁internationale": 20110,
+ "▁наук": 20111,
+ "▁comand": 20112,
+ "▁kleine": 20113,
+ "▁adjacent": 20114,
+ "▁delivered": 20115,
+ "▁ше": 20116,
+ "зем": 20117,
+ "▁cot": 20118,
+ "visual": 20119,
+ "вает": 20120,
+ "▁Census": 20121,
+ "\\_": 20122,
+ "▁territory": 20123,
+ "чил": 20124,
+ "чные": 20125,
+ "flutter": 20126,
+ "DidLoad": 20127,
+ "Documents": 20128,
+ "▁dob": 20129,
+ "Bre": 20130,
+ "animate": 20131,
+ "▁biz": 20132,
+ "▁bata": 20133,
+ "▁SU": 20134,
+ "eso": 20135,
+ "▁priority": 20136,
+ "ván": 20137,
+ "iras": 20138,
+ "▁charged": 20139,
+ "▁Micro": 20140,
+ "atoire": 20141,
+ "чер": 20142,
+ "abad": 20143,
+ "uru": 20144,
+ "▁vš": 20145,
+ "dire": 20146,
+ "▁Twitter": 20147,
+ "▁мето": 20148,
+ ")..": 20149,
+ "▁Цент": 20150,
+ "▁entwick": 20151,
+ "▁Mind": 20152,
+ "▁функ": 20153,
+ "Future": 20154,
+ "lst": 20155,
+ "łoż": 20156,
+ "fli": 20157,
+ "tensor": 20158,
+ "▁topology": 20159,
+ "▁arte": 20160,
+ "ERT": 20161,
+ "▁variance": 20162,
+ "Images": 20163,
+ "▁(@": 20164,
+ "ArrayList": 20165,
+ "OC": 20166,
+ "▁Демо": 20167,
+ "aucoup": 20168,
+ "▁denotes": 20169,
+ "imon": 20170,
+ "њи": 20171,
+ "▁Przyp": 20172,
+ "▁Zag": 20173,
+ "▁дире": 20174,
+ "▁Similarly": 20175,
+ "бро": 20176,
+ "▁militaire": 20177,
+ "▁тому": 20178,
+ "▁Johnny": 20179,
+ "▁Мексику": 20180,
+ "ћа": 20181,
+ "Supp": 20182,
+ "▁junior": 20183,
+ "oltre": 20184,
+ "▁Моск": 20185,
+ "▁admitted": 20186,
+ "▁religios": 20187,
+ "зяй": 20188,
+ "его": 20189,
+ "▁tears": 20190,
+ "ingo": 20191,
+ "odu": 20192,
+ "iveness": 20193,
+ "▁logo": 20194,
+ "▁último": 20195,
+ "▁aliment": 20196,
+ "▁UITableView": 20197,
+ ")!": 20198,
+ "▁nj": 20199,
+ "lette": 20200,
+ "▁resident": 20201,
+ "▁termine": 20202,
+ "▁уже": 20203,
+ "▁Сте": 20204,
+ "office": 20205,
+ "▁carte": 20206,
+ "▁livre": 20207,
+ "▁Москов": 20208,
+ "▁elections": 20209,
+ "зиден": 20210,
+ "Trigger": 20211,
+ "▁Benjamin": 20212,
+ "addClass": 20213,
+ "ског": 20214,
+ "▁Observable": 20215,
+ "Cla": 20216,
+ "gemein": 20217,
+ "▁consent": 20218,
+ "ври": 20219,
+ "▁unfold": 20220,
+ "▁governor": 20221,
+ "нал": 20222,
+ "▁toda": 20223,
+ "Remote": 20224,
+ "arias": 20225,
+ "▁instal": 20226,
+ "fixed": 20227,
+ "▁decay": 20228,
+ "▁дерев": 20229,
+ "xyz": 20230,
+ "▁DATE": 20231,
+ "imar": 20232,
+ "ntil": 20233,
+ "▁startup": 20234,
+ "alion": 20235,
+ "▁kolej": 20236,
+ "cios": 20237,
+ "▁ranges": 20238,
+ "▁stupid": 20239,
+ "▁implementations": 20240,
+ "▁rm": 20241,
+ "ének": 20242,
+ "▁gcc": 20243,
+ "▁scène": 20244,
+ "Navigation": 20245,
+ "▁ ": 20246,
+ "▁кан": 20247,
+ "▁towns": 20248,
+ "Username": 20249,
+ "▁фе": 20250,
+ "▁leaders": 20251,
+ "oit": 20252,
+ "wär": 20253,
+ "▁dummy": 20254,
+ "▁assistant": 20255,
+ "{$\\": 20256,
+ "бір": 20257,
+ "▁roy": 20258,
+ "▁Layout": 20259,
+ "▁Jung": 20260,
+ "Lines": 20261,
+ "▁Holland": 20262,
+ "пор": 20263,
+ "▁Гри": 20264,
+ "▁Bened": 20265,
+ "▁Под": 20266,
+ "xls": 20267,
+ "▁Gol": 20268,
+ "▁Aleks": 20269,
+ "▁ejemplo": 20270,
+ "▁sezon": 20271,
+ "arding": 20272,
+ "footnote": 20273,
+ "▁Congrès": 20274,
+ "refer": 20275,
+ "ската": 20276,
+ "Iterator": 20277,
+ "▁ourselves": 20278,
+ "▁Mic": 20279,
+ "▁código": 20280,
+ "▁площа": 20281,
+ "▁\\$": 20282,
+ "▁Charlie": 20283,
+ "Nodes": 20284,
+ "▁puzz": 20285,
+ "▁Identifier": 20286,
+ "▁flutter": 20287,
+ "▁prü": 20288,
+ "▁ort": 20289,
+ "▁Cort": 20290,
+ "asticsearch": 20291,
+ "▁Свя": 20292,
+ "▁Bull": 20293,
+ "udem": 20294,
+ "▁apparent": 20295,
+ ":--": 20296,
+ "▁Хар": 20297,
+ "▁Lap": 20298,
+ "▁comport": 20299,
+ "matically": 20300,
+ "▁curios": 20301,
+ "▁может": 20302,
+ "▁Bh": 20303,
+ "apping": 20304,
+ "▁basketball": 20305,
+ "zetek": 20306,
+ "▁runt": 20307,
+ "▁Milan": 20308,
+ "fection": 20309,
+ "ría": 20310,
+ "▁Kin": 20311,
+ "▁slower": 20312,
+ "both": 20313,
+ "▁Instituto": 20314,
+ "▁Historical": 20315,
+ "▁również": 20316,
+ "matches": 20317,
+ "yci": 20318,
+ "▁espèce": 20319,
+ "▁Schweizer": 20320,
+ "NT": 20321,
+ "SF": 20322,
+ "acia": 20323,
+ "forge": 20324,
+ "Points": 20325,
+ "numbers": 20326,
+ "▁falling": 20327,
+ "▁inheritance": 20328,
+ "▁Erst": 20329,
+ "▁customers": 20330,
+ "▁actu": 20331,
+ "▁migration": 20332,
+ "\\'": 20333,
+ "Plan": 20334,
+ "Mr": 20335,
+ "othy": 20336,
+ "▁upgrad": 20337,
+ "бира": 20338,
+ "▁Offic": 20339,
+ "▁Wait": 20340,
+ "▁toler": 20341,
+ "ardon": 20342,
+ "▁slide": 20343,
+ ")_": 20344,
+ "▁став": 20345,
+ "▁nuclear": 20346,
+ "▁Bil": 20347,
+ "owner": 20348,
+ "▁Harris": 20349,
+ "Information": 20350,
+ "▁pó": 20351,
+ "▁включа": 20352,
+ "▁nuovo": 20353,
+ "▁Cav": 20354,
+ "▁Descri": 20355,
+ "▁ак": 20356,
+ "ództ": 20357,
+ "▁reactjs": 20358,
+ "▁Adams": 20359,
+ "▁Alternatively": 20360,
+ "струк": 20361,
+ ")`,": 20362,
+ "substring": 20363,
+ "▁massive": 20364,
+ "▁heavily": 20365,
+ "▁сезо": 20366,
+ "▁Ana": 20367,
+ "▁vale": 20368,
+ "Pad": 20369,
+ "▁Either": 20370,
+ "▁rs": 20371,
+ "anche": 20372,
+ "▁uploaded": 20373,
+ "▁(/": 20374,
+ "▁спор": 20375,
+ "▁reduction": 20376,
+ "▁Tokyo": 20377,
+ "gren": 20378,
+ "▁migli": 20379,
+ "▁iterator": 20380,
+ "stav": 20381,
+ "▁supporting": 20382,
+ "▁österreich": 20383,
+ "▁NSLog": 20384,
+ "istiques": 20385,
+ "rimin": 20386,
+ "MODE": 20387,
+ "}}}\\": 20388,
+ "▁explos": 20389,
+ "оте": 20390,
+ "▁(„": 20391,
+ "Sal": 20392,
+ "▁simplest": 20393,
+ "▁già": 20394,
+ "▁тан": 20395,
+ "▁cyl": 20396,
+ "bir": 20397,
+ "▁measurements": 20398,
+ "Created": 20399,
+ "erek": 20400,
+ "lookup": 20401,
+ "wirtschaft": 20402,
+ "▁Воло": 20403,
+ "timer": 20404,
+ "derr": 20405,
+ "▁стала": 20406,
+ "▁scenes": 20407,
+ "▁persu": 20408,
+ "liest": 20409,
+ "▁schedule": 20410,
+ "tal": 20411,
+ "лено": 20412,
+ "▁painting": 20413,
+ "▁improvement": 20414,
+ "software": 20415,
+ "▁governo": 20416,
+ "▁Hir": 20417,
+ "Execution": 20418,
+ "▁Okay": 20419,
+ "Prop": 20420,
+ "loster": 20421,
+ "ніципалі": 20422,
+ "▁peuvent": 20423,
+ "olu": 20424,
+ "▁Фа": 20425,
+ "rollo": 20426,
+ "▁коло": 20427,
+ "▁carrière": 20428,
+ "▁toggle": 20429,
+ "▁($\\": 20430,
+ "▁aggregate": 20431,
+ "▁Бі": 20432,
+ "textarea": 20433,
+ "Ok": 20434,
+ "itto": 20435,
+ "▁stim": 20436,
+ "▁recursion": 20437,
+ "▁Federation": 20438,
+ ")_{": 20439,
+ "ategor": 20440,
+ "▁distribu": 20441,
+ "Cloud": 20442,
+ "▁madre": 20443,
+ "▁iv": 20444,
+ "▁Lieutenant": 20445,
+ "▁substant": 20446,
+ "▁leaf": 20447,
+ "▁Kontrola": 20448,
+ "VA": 20449,
+ "▁tomb": 20450,
+ "эн": 20451,
+ "atoes": 20452,
+ "▁godine": 20453,
+ "▁#>": 20454,
+ "Cert": 20455,
+ "▁empresa": 20456,
+ "Props": 20457,
+ "▁planned": 20458,
+ "▁randomly": 20459,
+ "jähr": 20460,
+ "elem": 20461,
+ "▁Operation": 20462,
+ "*`": 20463,
+ "protocol": 20464,
+ "()));": 20465,
+ "wel": 20466,
+ "▁praw": 20467,
+ "▁сим": 20468,
+ "▁wob": 20469,
+ "▁hace": 20470,
+ "▁nearest": 20471,
+ "disable": 20472,
+ "▁Commun": 20473,
+ "▁revel": 20474,
+ "Free": 20475,
+ "▁brackets": 20476,
+ "IOException": 20477,
+ "▁alto": 20478,
+ "▁marry": 20479,
+ "▁auc": 20480,
+ "),\\": 20481,
+ "▁typo": 20482,
+ "edad": 20483,
+ "ará": 20484,
+ "icator": 20485,
+ "tatywna": 20486,
+ "▁buff": 20487,
+ "orders": 20488,
+ "▁asynchronous": 20489,
+ "▁econ": 20490,
+ "▁feu": 20491,
+ "▁Iron": 20492,
+ "▁rising": 20493,
+ "Radius": 20494,
+ "clk": 20495,
+ "▁zweiten": 20496,
+ "`'": 20497,
+ "▁uniqu": 20498,
+ "▁FM": 20499,
+ "▁Bran": 20500,
+ "▁flu": 20501,
+ "▁sensitive": 20502,
+ "urre": 20503,
+ "▁Iter": 20504,
+ "▁Sein": 20505,
+ "▁diferentes": 20506,
+ "▁него": 20507,
+ "chia": 20508,
+ "▁Anleitung": 20509,
+ "aturday": 20510,
+ "▁shorter": 20511,
+ "▁translated": 20512,
+ "▁Rés": 20513,
+ "▁rode": 20514,
+ "drag": 20515,
+ "▁lange": 20516,
+ "Bi": 20517,
+ "üb": 20518,
+ "leur": 20519,
+ "▁ordering": 20520,
+ "alous": 20521,
+ "▁Кор": 20522,
+ "archar": 20523,
+ "destroy": 20524,
+ "ervation": 20525,
+ "]],": 20526,
+ "AccessorImpl": 20527,
+ "▁autorytatywna": 20528,
+ "Sequence": 20529,
+ "▁proyect": 20530,
+ "▁bran": 20531,
+ "▁(+": 20532,
+ "▁Kab": 20533,
+ "▁zem": 20534,
+ "▁Calcul": 20535,
+ "▁seul": 20536,
+ "▁Niger": 20537,
+ "▁chiam": 20538,
+ "throw": 20539,
+ "▁Planet": 20540,
+ "bildung": 20541,
+ "▁zones": 20542,
+ "transition": 20543,
+ "лений": 20544,
+ "▁mapped": 20545,
+ "onaut": 20546,
+ "Pair": 20547,
+ "ilian": 20548,
+ "▁Morgan": 20549,
+ "▁unto": 20550,
+ "jou": 20551,
+ "▁hid": 20552,
+ "▁Meta": 20553,
+ "▁elles": 20554,
+ "Lou": 20555,
+ "rama": 20556,
+ "geordnet": 20557,
+ "▁scarcely": 20558,
+ "▁mint": 20559,
+ "Focus": 20560,
+ "▁Alter": 20561,
+ "▁dio": 20562,
+ "▁ampl": 20563,
+ "ièrement": 20564,
+ "▁исследова": 20565,
+ "LED": 20566,
+ "algorithm": 20567,
+ "▁сайті": 20568,
+ "▁\"\")": 20569,
+ "History": 20570,
+ "pk": 20571,
+ "▁Whit": 20572,
+ "▁систем": 20573,
+ "▁Kirchen": 20574,
+ "rà": 20575,
+ "APP": 20576,
+ "▁<%": 20577,
+ "antine": 20578,
+ "▁Disk": 20579,
+ "conv": 20580,
+ "welt": 20581,
+ "▁Fut": 20582,
+ "▁Nom": 20583,
+ "ordo": 20584,
+ "ellij": 20585,
+ "▁receives": 20586,
+ "cow": 20587,
+ "ytu": 20588,
+ "▁obras": 20589,
+ "▁purchase": 20590,
+ "▁earned": 20591,
+ "▁accessed": 20592,
+ "axi": 20593,
+ "▁Mans": 20594,
+ "ivan": 20595,
+ "▁tuvo": 20596,
+ "▁Trace": 20597,
+ "rimonio": 20598,
+ "▁desenvol": 20599,
+ "érique": 20600,
+ "▁resulted": 20601,
+ "▁computing": 20602,
+ "▁inspired": 20603,
+ "▁Prize": 20604,
+ "*\"": 20605,
+ "Comput": 20606,
+ "▁extensive": 20607,
+ "èg": 20608,
+ "▁Portály": 20609,
+ "▁castle": 20610,
+ "▁*.": 20611,
+ "▁photos": 20612,
+ "▁voet": 20613,
+ "ONG": 20614,
+ "▁Alle": 20615,
+ "▁threaten": 20616,
+ "stüt": 20617,
+ "▁albums": 20618,
+ "▁dense": 20619,
+ "flat": 20620,
+ "continu": 20621,
+ "Subject": 20622,
+ "▁readonly": 20623,
+ "Opt": 20624,
+ "писко": 20625,
+ "▁Aber": 20626,
+ "▁Position": 20627,
+ "▁Today": 20628,
+ "▁mini": 20629,
+ "▁Bef": 20630,
+ "listen": 20631,
+ "ственного": 20632,
+ "SUB": 20633,
+ "ossa": 20634,
+ "▁Pope": 20635,
+ "▁Jimmy": 20636,
+ "▁Дру": 20637,
+ "ungsseite": 20638,
+ "▁tren": 20639,
+ "optim": 20640,
+ "itsch": 20641,
+ "▁samt": 20642,
+ "▁испол": 20643,
+ "&=": 20644,
+ "▁Przypisy": 20645,
+ "▁продол": 20646,
+ "Cr": 20647,
+ "ermann": 20648,
+ "▁матери": 20649,
+ "▁Hugo": 20650,
+ "▁Deze": 20651,
+ "TRUE": 20652,
+ "▁defeat": 20653,
+ "▁watched": 20654,
+ "▁Gent": 20655,
+ "AUT": 20656,
+ "orous": 20657,
+ "▁опреде": 20658,
+ "orientation": 20659,
+ "▁distinguished": 20660,
+ "▁mesmo": 20661,
+ "▁sli": 20662,
+ "мена": 20663,
+ "mittel": 20664,
+ "gericht": 20665,
+ "eton": 20666,
+ "->{": 20667,
+ "▁wont": 20668,
+ "▁weg": 20669,
+ "▁classific": 20670,
+ "ilus": 20671,
+ "▁MD": 20672,
+ "tasks": 20673,
+ "▁chim": 20674,
+ "await": 20675,
+ "▁gang": 20676,
+ "▁wię": 20677,
+ "through": 20678,
+ "▁Russell": 20679,
+ "▁guessing": 20680,
+ "▁акт": 20681,
+ "блі": 20682,
+ "categories": 20683,
+ "сут": 20684,
+ "▁Fen": 20685,
+ "▁муж": 20686,
+ "▁newer": 20687,
+ "▁Async": 20688,
+ "▁terme": 20689,
+ ">/": 20690,
+ "пара": 20691,
+ "▁Trust": 20692,
+ "▁Opt": 20693,
+ "▁dah": 20694,
+ "▁wonderful": 20695,
+ "adratkil": 20696,
+ "▁Гра": 20697,
+ "mapping": 20698,
+ "▁discovery": 20699,
+ "▁BE": 20700,
+ "Enable": 20701,
+ "▁Friend": 20702,
+ "сня": 20703,
+ "▁controlled": 20704,
+ "чної": 20705,
+ "▁contributions": 20706,
+ "jší": 20707,
+ "▁Lev": 20708,
+ "▁francés": 20709,
+ "▁mic": 20710,
+ "zik": 20711,
+ "▁alem": 20712,
+ "cancel": 20713,
+ "!'": 20714,
+ "▁grat": 20715,
+ "▁Begriffsklär": 20716,
+ "Camera": 20717,
+ "ificación": 20718,
+ "ród": 20719,
+ "▁Arnold": 20720,
+ "▁bezeichneter": 20721,
+ "▁fought": 20722,
+ "▁deput": 20723,
+ "▁Drop": 20724,
+ "tax": 20725,
+ "dg": 20726,
+ "▁Hop": 20727,
+ "GN": 20728,
+ "▁Kirch": 20729,
+ "▁Бар": 20730,
+ "Invoke": 20731,
+ "▁erhalten": 20732,
+ "▁veel": 20733,
+ "▁wordpress": 20734,
+ "▁INNER": 20735,
+ "transaction": 20736,
+ "▁déjà": 20737,
+ "Fact": 20738,
+ "▁надмор": 20739,
+ "▁angularjs": 20740,
+ "▁át": 20741,
+ "▁alap": 20742,
+ "▁Price": 20743,
+ "▁effet": 20744,
+ "▁sphere": 20745,
+ "ClassLoader": 20746,
+ "▁rugby": 20747,
+ "▁kingdom": 20748,
+ "▁Mut": 20749,
+ "▁кино": 20750,
+ "▁reward": 20751,
+ "cit": 20752,
+ "▁presente": 20753,
+ "Sto": 20754,
+ "Character": 20755,
+ "logs": 20756,
+ "▁centrale": 20757,
+ "▁mouv": 20758,
+ "▁okay": 20759,
+ "▁aplic": 20760,
+ "More": 20761,
+ "ények": 20762,
+ "▁Köln": 20763,
+ "nett": 20764,
+ "▁истории": 20765,
+ "▁describing": 20766,
+ "▁soldier": 20767,
+ "▁Need": 20768,
+ "Light": 20769,
+ "▁\"\\<": 20770,
+ "▁hav": 20771,
+ "ermo": 20772,
+ "▁inferior": 20773,
+ "lea": 20774,
+ "▁gg": 20775,
+ "▁конце": 20776,
+ "fragment": 20777,
+ "sb": 20778,
+ "Country": 20779,
+ "▁vě": 20780,
+ "▁Beng": 20781,
+ "▁Это": 20782,
+ "▁водо": 20783,
+ "мар": 20784,
+ "STRING": 20785,
+ "▁új": 20786,
+ "multiple": 20787,
+ "statement": 20788,
+ "▁involves": 20789,
+ "▁tecn": 20790,
+ "Student": 20791,
+ "gré": 20792,
+ "▁lean": 20793,
+ "▁bringing": 20794,
+ "▁Medical": 20795,
+ "▁програм": 20796,
+ "▁Vog": 20797,
+ "▁жов": 20798,
+ "▁Spirit": 20799,
+ "nth": 20800,
+ "▁standards": 20801,
+ "▁Profile": 20802,
+ "▁ez": 20803,
+ "▁территории": 20804,
+ "▁stem": 20805,
+ "uil": 20806,
+ "▁Og": 20807,
+ "Btn": 20808,
+ "nal": 20809,
+ "▁nearby": 20810,
+ "▁producing": 20811,
+ "criv": 20812,
+ "▁assumptions": 20813,
+ "▁Spark": 20814,
+ "▁Lot": 20815,
+ "itudes": 20816,
+ "afka": 20817,
+ "five": 20818,
+ "atio": 20819,
+ "▁distinguish": 20820,
+ "rock": 20821,
+ "église": 20822,
+ "▁rappres": 20823,
+ ">\\<": 20824,
+ "лій": 20825,
+ "▁мини": 20826,
+ "▁intitulé": 20827,
+ "}}(\\": 20828,
+ "▁Rout": 20829,
+ "▁Border": 20830,
+ "▁overrid": 20831,
+ "HOST": 20832,
+ "ritten": 20833,
+ "say": 20834,
+ "▁Чи": 20835,
+ "ichtung": 20836,
+ "▁straightforward": 20837,
+ "obb": 20838,
+ "▁Terra": 20839,
+ "▁[:": 20840,
+ "Ben": 20841,
+ "▁composite": 20842,
+ ")+\\": 20843,
+ "▁crown": 20844,
+ "direction": 20845,
+ "▁несколько": 20846,
+ "▁avail": 20847,
+ "▁purchased": 20848,
+ "hook": 20849,
+ "eties": 20850,
+ "▁fase": 20851,
+ "▁Rum": 20852,
+ "▁genom": 20853,
+ "▁dét": 20854,
+ "ową": 20855,
+ "mpeg": 20856,
+ "▁Ін": 20857,
+ "desktop": 20858,
+ "▁injection": 20859,
+ "agle": 20860,
+ "▁Edd": 20861,
+ "_{(": 20862,
+ "▁Hem": 20863,
+ "utos": 20864,
+ "proj": 20865,
+ "▁superficie": 20866,
+ "Plot": 20867,
+ "▁Docker": 20868,
+ "ätz": 20869,
+ "kreich": 20870,
+ "▁unclear": 20871,
+ "▁Unity": 20872,
+ "▁streams": 20873,
+ "вид": 20874,
+ "▁simplified": 20875,
+ "Fill": 20876,
+ "▁sant": 20877,
+ "▁Kommun": 20878,
+ "▁duc": 20879,
+ "▁две": 20880,
+ "▁obs": 20881,
+ "žit": 20882,
+ "▁Janeiro": 20883,
+ "бя": 20884,
+ "▁presso": 20885,
+ "▁Ministry": 20886,
+ "▁burst": 20887,
+ "▁reaching": 20888,
+ "liter": 20889,
+ "▁responses": 20890,
+ "▁Eug": 20891,
+ "▁sod": 20892,
+ "▁Cord": 20893,
+ "▁Perm": 20894,
+ "parts": 20895,
+ "цима": 20896,
+ "variables": 20897,
+ "▁forgotten": 20898,
+ "Fern": 20899,
+ "ostęp": 20900,
+ "vl": 20901,
+ "▁См": 20902,
+ "kim": 20903,
+ "ając": 20904,
+ "наль": 20905,
+ "гле": 20906,
+ "helper": 20907,
+ "dup": 20908,
+ "euw": 20909,
+ "fra": 20910,
+ "ellite": 20911,
+ "anya": 20912,
+ "▁reign": 20913,
+ "gesamt": 20914,
+ "седа": 20915,
+ "▁Ryan": 20916,
+ "▁formatted": 20917,
+ "▁Borg": 20918,
+ "walk": 20919,
+ "▁ал": 20920,
+ "agnostics": 20921,
+ "▁Cape": 20922,
+ "▁Franco": 20923,
+ "▁fug": 20924,
+ ":)": 20925,
+ "юз": 20926,
+ "Fetch": 20927,
+ "▁roughly": 20928,
+ "▁Mis": 20929,
+ "uetooth": 20930,
+ "▁Venezuela": 20931,
+ "▁astronom": 20932,
+ "\")`": 20933,
+ "ombres": 20934,
+ "▁которой": 20935,
+ "óp": 20936,
+ "owed": 20937,
+ "HR": 20938,
+ "▁Camer": 20939,
+ "кие": 20940,
+ "parison": 20941,
+ "▁Bij": 20942,
+ "templates": 20943,
+ "environment": 20944,
+ "ização": 20945,
+ "▁ér": 20946,
+ "▁plenty": 20947,
+ "▁TypeError": 20948,
+ "▁forty": 20949,
+ "коном": 20950,
+ "▁Sed": 20951,
+ "▁thats": 20952,
+ "▁gravity": 20953,
+ "▁spiritual": 20954,
+ "▁duplicates": 20955,
+ "▁encryption": 20956,
+ "▁reven": 20957,
+ "getInstance": 20958,
+ "ällor": 20959,
+ "disk": 20960,
+ "▁thro": 20961,
+ "▁Nak": 20962,
+ "▁poł": 20963,
+ "▁heraus": 20964,
+ "invalid": 20965,
+ "sBy": 20966,
+ "Boot": 20967,
+ "▁bucket": 20968,
+ "▁Parse": 20969,
+ "hex": 20970,
+ "Conne": 20971,
+ "▁Computer": 20972,
+ "zyk": 20973,
+ "▁induced": 20974,
+ "▁Bruno": 20975,
+ "▁addressed": 20976,
+ "mania": 20977,
+ "▁inclus": 20978,
+ "ounced": 20979,
+ "scriptsize": 20980,
+ "▁Epis": 20981,
+ "▁vocal": 20982,
+ "▁Jonathan": 20983,
+ "ум": 20984,
+ "staden": 20985,
+ "▁Children": 20986,
+ "пей": 20987,
+ "Italia": 20988,
+ "reibung": 20989,
+ "▁nost": 20990,
+ "▁ещё": 20991,
+ "▁Werke": 20992,
+ "▁actress": 20993,
+ "▁Minnesota": 20994,
+ "rike": 20995,
+ "▁tek": 20996,
+ "▁primeira": 20997,
+ "▁frat": 20998,
+ "▁Configuration": 20999,
+ "▁bid": 21000,
+ "trigger": 21001,
+ "Contents": 21002,
+ "▁constantly": 21003,
+ "!!!": 21004,
+ "▁dread": 21005,
+ "▁hundreds": 21006,
+ "istische": 21007,
+ "▁cardinal": 21008,
+ "TABLE": 21009,
+ "▁estos": 21010,
+ "assoc": 21011,
+ "gray": 21012,
+ "▁Schloss": 21013,
+ "▁sche": 21014,
+ "cong": 21015,
+ "▁koji": 21016,
+ "ètes": 21017,
+ "▁Era": 21018,
+ "omi": 21019,
+ "▁SR": 21020,
+ "▁wrapped": 21021,
+ "▁trunc": 21022,
+ "▁ah": 21023,
+ "egos": 21024,
+ "oki": 21025,
+ "mouth": 21026,
+ "logging": 21027,
+ "▁fasc": 21028,
+ "▁Sample": 21029,
+ "▁conte": 21030,
+ "▁villa": 21031,
+ "comments": 21032,
+ "▁batal": 21033,
+ "▁García": 21034,
+ "▁Norte": 21035,
+ "▁wechsel": 21036,
+ "▁Museo": 21037,
+ "▁enfants": 21038,
+ "▁whisper": 21039,
+ "nake": 21040,
+ "▁jednak": 21041,
+ "lês": 21042,
+ "enders": 21043,
+ "▁äl": 21044,
+ "▁VB": 21045,
+ "▁cookies": 21046,
+ "zeti": 21047,
+ "atum": 21048,
+ "▁dedu": 21049,
+ "▁arranged": 21050,
+ "laz": 21051,
+ "▁cuenta": 21052,
+ "yml": 21053,
+ "▁flav": 21054,
+ "MR": 21055,
+ "emet": 21056,
+ "біль": 21057,
+ "cmp": 21058,
+ "ituto": 21059,
+ "zett": 21060,
+ "▁envi": 21061,
+ "▁kot": 21062,
+ "$:": 21063,
+ "upper": 21064,
+ "▁Alberto": 21065,
+ "kb": 21066,
+ "Anal": 21067,
+ "ört": 21068,
+ "▁[-": 21069,
+ "▁führte": 21070,
+ "iah": 21071,
+ "▁Tun": 21072,
+ "▁искус": 21073,
+ "uwe": 21074,
+ "ispecies": 21075,
+ "Pub": 21076,
+ "Sync": 21077,
+ "▁Colombia": 21078,
+ "akers": 21079,
+ "▁Imperial": 21080,
+ "oving": 21081,
+ "▁intelligence": 21082,
+ "▁equipment": 21083,
+ "ein": 21084,
+ "dagger": 21085,
+ "▁Edge": 21086,
+ "▁Республи": 21087,
+ "adratkilometer": 21088,
+ "▁Anto": 21089,
+ "▁charges": 21090,
+ "▁Ocean": 21091,
+ "▁simplify": 21092,
+ "▁miesz": 21093,
+ "running": 21094,
+ "▁Lac": 21095,
+ "genommen": 21096,
+ "▁representative": 21097,
+ "=.": 21098,
+ "▁Pred": 21099,
+ "▁spite": 21100,
+ "ciale": 21101,
+ "▁nave": 21102,
+ "▁extens": 21103,
+ "▁neutral": 21104,
+ "▁которая": 21105,
+ ".": 21106,
+ "▁CS": 21107,
+ "uky": 21108,
+ "▁whilst": 21109,
+ "▁lingu": 21110,
+ "extract": 21111,
+ "zeichnung": 21112,
+ "▁Feld": 21113,
+ "▁valuable": 21114,
+ "urable": 21115,
+ "▁Jen": 21116,
+ "▁struggle": 21117,
+ "▁committee": 21118,
+ "▁Wohn": 21119,
+ "▁sqlite": 21120,
+ "▁Temp": 21121,
+ "▁COUNT": 21122,
+ "consin": 21123,
+ "міні": 21124,
+ "usage": 21125,
+ "▁quest": 21126,
+ "дян": 21127,
+ "eared": 21128,
+ "▁Schne": 21129,
+ "▁dod": 21130,
+ "▁recht": 21131,
+ "▁kao": 21132,
+ "Capt": 21133,
+ "labels": 21134,
+ "▁ellos": 21135,
+ "▁industri": 21136,
+ "▁Colorado": 21137,
+ "▁contrary": 21138,
+ "▁Dum": 21139,
+ "Bel": 21140,
+ "▁Vent": 21141,
+ "▁authorities": 21142,
+ "YES": 21143,
+ "ensed": 21144,
+ "umbnail": 21145,
+ "izzazione": 21146,
+ "kou": 21147,
+ "rica": 21148,
+ "▁sect": 21149,
+ "tests": 21150,
+ "▁Klein": 21151,
+ "▁legs": 21152,
+ "▁Pietro": 21153,
+ "fu": 21154,
+ "thy": 21155,
+ "▁bast": 21156,
+ "▁tedes": 21157,
+ "ettes": 21158,
+ "▁repet": 21159,
+ "acre": 21160,
+ "retto": 21161,
+ "▁remainder": 21162,
+ "▁Geg": 21163,
+ "▁Гор": 21164,
+ "▁Rechts": 21165,
+ "▁filtering": 21166,
+ "ouss": 21167,
+ "▁deployed": 21168,
+ "▁prüfe": 21169,
+ "▁bitmap": 21170,
+ "▁sovi": 21171,
+ "▁<%=": 21172,
+ "▁entferne": 21173,
+ "kill": 21174,
+ "tabs": 21175,
+ "Expr": 21176,
+ "кому": 21177,
+ "▁Republican": 21178,
+ "▁Size": 21179,
+ "▁poll": 21180,
+ "▁rien": 21181,
+ "▁клуб": 21182,
+ "énd": 21183,
+ "▁Bio": 21184,
+ "▁perl": 21185,
+ "▁Andreas": 21186,
+ "вин": 21187,
+ "▁distant": 21188,
+ "▁Finn": 21189,
+ "▁Mitch": 21190,
+ "▁%{": 21191,
+ "▁charm": 21192,
+ "▁Mul": 21193,
+ "perate": 21194,
+ "▁sciences": 21195,
+ "▁monot": 21196,
+ "▁debido": 21197,
+ "rizona": 21198,
+ "iec": 21199,
+ "▁alarm": 21200,
+ "▁promoted": 21201,
+ "▁letzten": 21202,
+ "atin": 21203,
+ "▁conclus": 21204,
+ "herr": 21205,
+ "▁éch": 21206,
+ "edish": 21207,
+ "gor": 21208,
+ "▁stycz": 21209,
+ "▁impress": 21210,
+ "ruits": 21211,
+ "ierungs": 21212,
+ "▁parsed": 21213,
+ "▁río": 21214,
+ "▁Pakistan": 21215,
+ "igner": 21216,
+ "▁watching": 21217,
+ "▁databases": 21218,
+ "eding": 21219,
+ "▁Specific": 21220,
+ "▁generale": 21221,
+ "lax": 21222,
+ "▁Looking": 21223,
+ "▁bond": 21224,
+ "▁vista": 21225,
+ "▁ec": 21226,
+ "▁grud": 21227,
+ "▁deleting": 21228,
+ "tac": 21229,
+ "▁jazz": 21230,
+ "jm": 21231,
+ "▁pół": 21232,
+ "Language": 21233,
+ "delegate": 21234,
+ "▁registry": 21235,
+ "▁Shared": 21236,
+ "строй": 21237,
+ "Music": 21238,
+ "▁vessel": 21239,
+ ".@": 21240,
+ "▁Wür": 21241,
+ "▁fed": 21242,
+ "▁eredet": 21243,
+ "▁Gö": 21244,
+ "upt": 21245,
+ "▁pleasant": 21246,
+ "▁tableView": 21247,
+ "▁counting": 21248,
+ "▁Kriegs": 21249,
+ "▁получил": 21250,
+ "▁],": 21251,
+ "виа": 21252,
+ "▁až": 21253,
+ "ToList": 21254,
+ "▁Advent": 21255,
+ "▁sketch": 21256,
+ "pn": 21257,
+ "▁sier": 21258,
+ "▁находится": 21259,
+ "iop": 21260,
+ "▁ly": 21261,
+ "▁Schl": 21262,
+ "Contract": 21263,
+ "associ": 21264,
+ "▁Pear": 21265,
+ "▁whe": 21266,
+ "▁Delete": 21267,
+ "▁elem": 21268,
+ "ätte": 21269,
+ "▁česk": 21270,
+ "▁MC": 21271,
+ "▁shout": 21272,
+ "akespe": 21273,
+ "▁defaults": 21274,
+ "penas": 21275,
+ "òria": 21276,
+ "▁hierarchy": 21277,
+ "ipt": 21278,
+ "▁Elis": 21279,
+ "likely": 21280,
+ "Rot": 21281,
+ "▁cow": 21282,
+ "▁strike": 21283,
+ "▁березня": 21284,
+ "▁ensemble": 21285,
+ "▁Pseud": 21286,
+ "Virtual": 21287,
+ "▁її": 21288,
+ "ROOT": 21289,
+ "сия": 21290,
+ "▁соб": 21291,
+ "▁invert": 21292,
+ "▁switching": 21293,
+ "htaccess": 21294,
+ "▁награ": 21295,
+ "▁Norman": 21296,
+ "▁inglês": 21297,
+ "![": 21298,
+ "ousel": 21299,
+ "DOCTYPE": 21300,
+ "▁suppress": 21301,
+ "▁accompanied": 21302,
+ "▁Bé": 21303,
+ "implies": 21304,
+ "nut": 21305,
+ "▁Syntax": 21306,
+ "inho": 21307,
+ "▁tam": 21308,
+ "▁focused": 21309,
+ "avano": 21310,
+ "▁Baden": 21311,
+ "had": 21312,
+ "▁({": 21313,
+ "Ty": 21314,
+ "▁рос": 21315,
+ "▁чолові": 21316,
+ "oge": 21317,
+ "jsp": 21318,
+ "Blue": 21319,
+ "▁suas": 21320,
+ "apers": 21321,
+ "Short": 21322,
+ "Renderer": 21323,
+ "▁sendo": 21324,
+ "▁Cec": 21325,
+ "▁`__": 21326,
+ "▁Municipal": 21327,
+ "dotnet": 21328,
+ "▁bev": 21329,
+ "▁DA": 21330,
+ "MenuItem": 21331,
+ "▁amp": 21332,
+ "▁uri": 21333,
+ "▁fier": 21334,
+ "слен": 21335,
+ "),(": 21336,
+ "cules": 21337,
+ "illas": 21338,
+ "LOCK": 21339,
+ "▁derive": 21340,
+ "uben": 21341,
+ "▁GT": 21342,
+ "▁Mack": 21343,
+ "▁scholar": 21344,
+ ")}}": 21345,
+ "зм": 21346,
+ ">::": 21347,
+ "шёл": 21348,
+ "▁principales": 21349,
+ "▁цар": 21350,
+ "▁tied": 21351,
+ "▁alta": 21352,
+ "▁Cit": 21353,
+ "lined": 21354,
+ "major": 21355,
+ "▁punk": 21356,
+ "▁cinco": 21357,
+ "ický": 21358,
+ "▁raggi": 21359,
+ "typen": 21360,
+ "тельство": 21361,
+ "▁conference": 21362,
+ "▁сіль": 21363,
+ "▁heut": 21364,
+ "iš": 21365,
+ "ета": 21366,
+ "velope": 21367,
+ "hbox": 21368,
+ "nown": 21369,
+ "▁zar": 21370,
+ "ktiv": 21371,
+ "ieß": 21372,
+ "▁стре": 21373,
+ "▁EventArgs": 21374,
+ "▁Ira": 21375,
+ "▁VBA": 21376,
+ "▁Santo": 21377,
+ "▁Fach": 21378,
+ "▁FF": 21379,
+ "▁Raymond": 21380,
+ "мец": 21381,
+ "implementation": 21382,
+ "▁brothers": 21383,
+ "▁côté": 21384,
+ "▁controllers": 21385,
+ "▁Cle": 21386,
+ "▁cable": 21387,
+ "▁confer": 21388,
+ "▁{-": 21389,
+ "▁czł": 21390,
+ "▁Filip": 21391,
+ "atorio": 21392,
+ "▁wicht": 21393,
+ "▁beaucoup": 21394,
+ "▁Lit": 21395,
+ "▁sessions": 21396,
+ "▁Success": 21397,
+ "▁routing": 21398,
+ "niu": 21399,
+ "▁Vice": 21400,
+ "▁krit": 21401,
+ "updated": 21402,
+ "▁Invalid": 21403,
+ "▁Mannschaft": 21404,
+ "▁aos": 21405,
+ "▁tudi": 21406,
+ "▁després": 21407,
+ "qua": 21408,
+ "Contains": 21409,
+ "Company": 21410,
+ "▁persona": 21411,
+ "adapter": 21412,
+ "сни": 21413,
+ "▁voj": 21414,
+ "▁escri": 21415,
+ "agt": 21416,
+ "▁ство": 21417,
+ "▁distrito": 21418,
+ "apan": 21419,
+ "▁aspects": 21420,
+ "▁zal": 21421,
+ ")^{\\": 21422,
+ "▁système": 21423,
+ "▁ана": 21424,
+ "iums": 21425,
+ "▁premiers": 21426,
+ "▁поэ": 21427,
+ "▁mère": 21428,
+ "▁Gun": 21429,
+ "aping": 21430,
+ "▁Rain": 21431,
+ "▁igual": 21432,
+ "▁processor": 21433,
+ "')`": 21434,
+ "bling": 21435,
+ "▁mism": 21436,
+ "bráz": 21437,
+ "▁closest": 21438,
+ "▁Reading": 21439,
+ "▁попу": 21440,
+ "cono": 21441,
+ "▁kult": 21442,
+ "▁!!": 21443,
+ "▁Expression": 21444,
+ "▁induction": 21445,
+ "ahren": 21446,
+ "▁cp": 21447,
+ "▁violence": 21448,
+ "ientí": 21449,
+ "cente": 21450,
+ "▁Dob": 21451,
+ "jack": 21452,
+ "song": 21453,
+ "bucket": 21454,
+ "▁deport": 21455,
+ "кими": 21456,
+ "lm": 21457,
+ "▁innoc": 21458,
+ "Changes": 21459,
+ "▁prohib": 21460,
+ "angol": 21461,
+ "iseconds": 21462,
+ "▁пор": 21463,
+ "▁hip": 21464,
+ "▁pů": 21465,
+ "endorf": 21466,
+ "▁scheduled": 21467,
+ "▁Flug": 21468,
+ "acyj": 21469,
+ "▁Films": 21470,
+ "athedral": 21471,
+ "Power": 21472,
+ "ardin": 21473,
+ "kap": 21474,
+ "icken": 21475,
+ "resize": 21476,
+ "eus": 21477,
+ "rr": 21478,
+ "лян": 21479,
+ "▁Hav": 21480,
+ "▁ora": 21481,
+ "FROM": 21482,
+ "лося": 21483,
+ "▁terug": 21484,
+ "▁Width": 21485,
+ "▁accepts": 21486,
+ "бен": 21487,
+ "▁mich": 21488,
+ "▁Czech": 21489,
+ "▁Bedeut": 21490,
+ "▁вид": 21491,
+ "ôme": 21492,
+ "▁Loop": 21493,
+ "spect": 21494,
+ "ük": 21495,
+ "eston": 21496,
+ "▁slot": 21497,
+ "▁została": 21498,
+ "▁Charlotte": 21499,
+ "▁составляет": 21500,
+ "▁Promise": 21501,
+ "▁epo": 21502,
+ "▁diction": 21503,
+ "▁Franklin": 21504,
+ "▁Riv": 21505,
+ "руг": 21506,
+ "cida": 21507,
+ "▁Explorer": 21508,
+ "cookie": 21509,
+ "▁formerly": 21510,
+ "▁municipality": 21511,
+ "▁Stefan": 21512,
+ "lists": 21513,
+ "COMP": 21514,
+ "Len": 21515,
+ "▁Staat": 21516,
+ "▁NBA": 21517,
+ "dens": 21518,
+ "▁oscill": 21519,
+ "!.": 21520,
+ "▁PO": 21521,
+ "ône": 21522,
+ "eses": 21523,
+ "▁националь": 21524,
+ "voor": 21525,
+ "▁копи": 21526,
+ "▁пози": 21527,
+ "ulu": 21528,
+ "Constraint": 21529,
+ "▁своей": 21530,
+ "▁algebraic": 21531,
+ "чня": 21532,
+ "Dict": 21533,
+ "▁appearing": 21534,
+ "▁prav": 21535,
+ "▁Universal": 21536,
+ "Browser": 21537,
+ "▁Singap": 21538,
+ "ennessee": 21539,
+ "]_": 21540,
+ "▁Sof": 21541,
+ "▁Cad": 21542,
+ "ounce": 21543,
+ "▁costs": 21544,
+ "]{\\": 21545,
+ "../../": 21546,
+ "ській": 21547,
+ "ühl": 21548,
+ "iety": 21549,
+ "пр": 21550,
+ "▁interpreted": 21551,
+ "ajn": 21552,
+ "colog": 21553,
+ "YS": 21554,
+ "mans": 21555,
+ "▁metrics": 21556,
+ "▁registr": 21557,
+ "istance": 21558,
+ "▁Поль": 21559,
+ "▁anonymous": 21560,
+ "▁institutions": 21561,
+ "▁zdob": 21562,
+ "prüng": 21563,
+ "▁арти": 21564,
+ "▁estat": 21565,
+ "acci": 21566,
+ "▁academic": 21567,
+ "▁chiesa": 21568,
+ "▁Gian": 21569,
+ "contrib": 21570,
+ "umed": 21571,
+ "▁Gir": 21572,
+ "▁baseball": 21573,
+ "numeric": 21574,
+ "Generator": 21575,
+ "GM": 21576,
+ "▁tiny": 21577,
+ "▁distinction": 21578,
+ "гер": 21579,
+ "▁rust": 21580,
+ "▁FIFA": 21581,
+ "▁Properties": 21582,
+ "^-": 21583,
+ "▁экс": 21584,
+ "▁Stanis": 21585,
+ "▁Ajax": 21586,
+ "escape": 21587,
+ "▁consp": 21588,
+ "▁Chen": 21589,
+ "▁Naval": 21590,
+ "Bit": 21591,
+ "▁bât": 21592,
+ "скими": 21593,
+ "drive": 21594,
+ "▁Round": 21595,
+ "photo": 21596,
+ "▁Level": 21597,
+ "▁geg": 21598,
+ "Tom": 21599,
+ "▁Mobile": 21600,
+ "▁Trop": 21601,
+ "Direction": 21602,
+ "isan": 21603,
+ ")^{-": 21604,
+ "▁Setting": 21605,
+ "▁Probably": 21606,
+ "лья": 21607,
+ "▁assets": 21608,
+ "▁atte": 21609,
+ "▁bulk": 21610,
+ "ést": 21611,
+ "▁wing": 21612,
+ "nius": 21613,
+ "▁wins": 21614,
+ "▁lud": 21615,
+ "ushing": 21616,
+ "▁deven": 21617,
+ "ограф": 21618,
+ "burger": 21619,
+ "▁embar": 21620,
+ "FilterChain": 21621,
+ "▁tum": 21622,
+ "▁öss": 21623,
+ "▁nommé": 21624,
+ "▁pir": 21625,
+ "▁luc": 21626,
+ "dbo": 21627,
+ "agues": 21628,
+ "▁alcan": 21629,
+ "ouwen": 21630,
+ "▁Stanley": 21631,
+ "циали": 21632,
+ "▁grown": 21633,
+ "▁preserved": 21634,
+ "▁solar": 21635,
+ "▁Население": 21636,
+ "▁performances": 21637,
+ "▁Cow": 21638,
+ "▁engineering": 21639,
+ "▁scaling": 21640,
+ "atomic": 21641,
+ "endance": 21642,
+ "▁ace": 21643,
+ "ängen": 21644,
+ "Anim": 21645,
+ "phase": 21646,
+ "zburg": 21647,
+ "Old": 21648,
+ "▁servant": 21649,
+ "▁gemeins": 21650,
+ "▁Observ": 21651,
+ "translate": 21652,
+ "▁covering": 21653,
+ "▁están": 21654,
+ "▁problema": 21655,
+ "▁установ": 21656,
+ "▁llev": 21657,
+ "▁czerw": 21658,
+ "éal": 21659,
+ "mez": 21660,
+ "REE": 21661,
+ "ERR": 21662,
+ "тури": 21663,
+ "segu": 21664,
+ "▁profit": 21665,
+ "▁multiplication": 21666,
+ "kommen": 21667,
+ "▁faut": 21668,
+ "▁candidates": 21669,
+ "▁Uri": 21670,
+ "▁Laura": 21671,
+ "▁sap": 21672,
+ "▁висини": 21673,
+ "▁Between": 21674,
+ "fade": 21675,
+ "▁reserved": 21676,
+ "▁involving": 21677,
+ "▁Mare": 21678,
+ "▁Container": 21679,
+ "▁назна": 21680,
+ "▁DEBUG": 21681,
+ "▁hurt": 21682,
+ "▁Polski": 21683,
+ "▁lux": 21684,
+ "CB": 21685,
+ "wach": 21686,
+ "▁период": 21687,
+ "▁Catherine": 21688,
+ "▁ganz": 21689,
+ "uchte": 21690,
+ "▁consumer": 21691,
+ "▁crossed": 21692,
+ "ordered": 21693,
+ "away": 21694,
+ "techn": 21695,
+ "▁subscri": 21696,
+ "▁shortcut": 21697,
+ "▁производ": 21698,
+ "▁simultaneously": 21699,
+ "▁rating": 21700,
+ "▁Kings": 21701,
+ "▁relationships": 21702,
+ "▁Sex": 21703,
+ "▁Tool": 21704,
+ "agh": 21705,
+ "acters": 21706,
+ "logger": 21707,
+ "homme": 21708,
+ "engers": 21709,
+ "▁Ri": 21710,
+ "earance": 21711,
+ "▁appearances": 21712,
+ "Real": 21713,
+ "▁passe": 21714,
+ "iclopedia": 21715,
+ "чко": 21716,
+ "terre": 21717,
+ "▁Ontario": 21718,
+ "▁переда": 21719,
+ "footer": 21720,
+ "archivi": 21721,
+ "ifiz": 21722,
+ "▁Protest": 21723,
+ "▁LIN": 21724,
+ "unnable": 21725,
+ "▁centuries": 21726,
+ "▁Bayer": 21727,
+ "цію": 21728,
+ "овин": 21729,
+ "▁Andrea": 21730,
+ "selection": 21731,
+ "▁calm": 21732,
+ "▁modification": 21733,
+ "▁shortly": 21734,
+ "inaire": 21735,
+ "▁fusion": 21736,
+ "▁feelings": 21737,
+ "PK": 21738,
+ "▁Roberto": 21739,
+ "гне": 21740,
+ "Shared": 21741,
+ "▁mehrere": 21742,
+ "▁Niem": 21743,
+ "omp": 21744,
+ "Env": 21745,
+ "▁Article": 21746,
+ "▁Pok": 21747,
+ "▁VARCHAR": 21748,
+ "▁dil": 21749,
+ "▁afford": 21750,
+ "▁confront": 21751,
+ "owanie": 21752,
+ "▁ministre": 21753,
+ "adesh": 21754,
+ "▁Poly": 21755,
+ "▁Распо": 21756,
+ "▁Gruppe": 21757,
+ "▁Helen": 21758,
+ "▁cc": 21759,
+ "▁portrait": 21760,
+ "bew": 21761,
+ "▁beta": 21762,
+ "▁Wir": 21763,
+ "▁Audio": 21764,
+ "▁(\\<": 21765,
+ "riority": 21766,
+ "▁nit": 21767,
+ "▁представи": 21768,
+ "▁Vie": 21769,
+ "▁wür": 21770,
+ "▁Hold": 21771,
+ "▁Sad": 21772,
+ "▁Tochter": 21773,
+ "▁oltre": 21774,
+ "▁Activ": 21775,
+ "▁Jason": 21776,
+ "▁wieku": 21777,
+ "▁regards": 21778,
+ "▁taste": 21779,
+ "agnostic": 21780,
+ "лася": 21781,
+ "▁Self": 21782,
+ "▁apr": 21783,
+ "▁Deep": 21784,
+ "scop": 21785,
+ "Activ": 21786,
+ "▁typedef": 21787,
+ "ContentView": 21788,
+ "compiler": 21789,
+ "▁Roth": 21790,
+ "xc": 21791,
+ "зик": 21792,
+ "▁largo": 21793,
+ "▁Rena": 21794,
+ "heiten": 21795,
+ "▁platforms": 21796,
+ "ulla": 21797,
+ "▁glance": 21798,
+ "▁mascul": 21799,
+ "▁mex": 21800,
+ "▁Jorge": 21801,
+ "▁funcion": 21802,
+ "choose": 21803,
+ "▁reviews": 21804,
+ "▁Alban": 21805,
+ "▁Glo": 21806,
+ "▁Species": 21807,
+ "▁Fame": 21808,
+ "▁Roll": 21809,
+ "▁Puerto": 21810,
+ "▁\\)": 21811,
+ "ymnas": 21812,
+ "environ": 21813,
+ "▁iphone": 21814,
+ "▁Wrestling": 21815,
+ "ały": 21816,
+ "▁Indiana": 21817,
+ "Radio": 21818,
+ "VS": 21819,
+ "▁independence": 21820,
+ "тай": 21821,
+ "▁decode": 21822,
+ "White": 21823,
+ "▁journ": 21824,
+ "ículo": 21825,
+ "▁Barb": 21826,
+ "▁Evangel": 21827,
+ "▁Andy": 21828,
+ "▁Welcome": 21829,
+ "▁Device": 21830,
+ "gef": 21831,
+ "▁remembered": 21832,
+ "▁variations": 21833,
+ "▁Adolf": 21834,
+ "itaine": 21835,
+ "▁надморској": 21836,
+ "▁steam": 21837,
+ "▁concerns": 21838,
+ "▁`|": 21839,
+ "▁био": 21840,
+ "тельства": 21841,
+ "▁quattro": 21842,
+ "extend": 21843,
+ "▁trabajo": 21844,
+ "enberg": 21845,
+ "▁scenarios": 21846,
+ "ânt": 21847,
+ "▁kommt": 21848,
+ "▁domestic": 21849,
+ "▁Basketball": 21850,
+ "▁Cooper": 21851,
+ "sock": 21852,
+ "держа": 21853,
+ "={\\": 21854,
+ "▁inici": 21855,
+ "▁Phill": 21856,
+ "▁генерал": 21857,
+ "archiviato": 21858,
+ "ън": 21859,
+ "Rob": 21860,
+ "▁tong": 21861,
+ "▁characteristics": 21862,
+ "▁amaz": 21863,
+ "▁Mode": 21864,
+ "▁inaugur": 21865,
+ "wehr": 21866,
+ "rant": 21867,
+ "ionali": 21868,
+ "▁Mother": 21869,
+ "Ma": 21870,
+ "équ": 21871,
+ "▁Kelly": 21872,
+ "cile": 21873,
+ "▁besteht": 21874,
+ "▁estimates": 21875,
+ "ruguay": 21876,
+ "▁Ans": 21877,
+ "Mad": 21878,
+ "▁нав": 21879,
+ "▁données": 21880,
+ "▁tropical": 21881,
+ "▁Several": 21882,
+ "elter": 21883,
+ "▁Pho": 21884,
+ "kem": 21885,
+ "▁Customer": 21886,
+ "▁складі": 21887,
+ "▁courses": 21888,
+ "Platform": 21889,
+ "navbar": 21890,
+ "learning": 21891,
+ "▁Swedish": 21892,
+ "▁zast": 21893,
+ "▁Lig": 21894,
+ "management": 21895,
+ "▁lod": 21896,
+ "uffle": 21897,
+ "Texture": 21898,
+ "arga": 21899,
+ "átum": 21900,
+ "▁DDR": 21901,
+ "нії": 21902,
+ "▁Société": 21903,
+ "▁domains": 21904,
+ "▁permitted": 21905,
+ "▁externe": 21906,
+ "▁quelque": 21907,
+ "vt": 21908,
+ "yman": 21909,
+ "▁Ward": 21910,
+ "▁agli": 21911,
+ "▁andra": 21912,
+ "Snapshot": 21913,
+ "▁må": 21914,
+ "▁yeah": 21915,
+ "дена": 21916,
+ "ępu": 21917,
+ "askell": 21918,
+ "▁République": 21919,
+ "inject": 21920,
+ "▁';": 21921,
+ "änn": 21922,
+ "▁zelf": 21923,
+ "▁Entwicklung": 21924,
+ "ária": 21925,
+ "onomy": 21926,
+ "▁svil": 21927,
+ "iese": 21928,
+ "▁conser": 21929,
+ "▁nim": 21930,
+ "▁rész": 21931,
+ "▁Итали": 21932,
+ "▁partici": 21933,
+ "▁Lion": 21934,
+ "sr": 21935,
+ "always": 21936,
+ "▁Владимир": 21937,
+ "ческие": 21938,
+ "[,": 21939,
+ "▁Definition": 21940,
+ "nant": 21941,
+ "oem": 21942,
+ "Ids": 21943,
+ "▁вне": 21944,
+ "▁[...]": 21945,
+ "▁направ": 21946,
+ "▁GO": 21947,
+ "▁års": 21948,
+ "▁után": 21949,
+ "▁outros": 21950,
+ "▁región": 21951,
+ "▁Mong": 21952,
+ "▁filme": 21953,
+ "▁triple": 21954,
+ "▁spons": 21955,
+ "Develop": 21956,
+ "▁outcome": 21957,
+ "▁Bible": 21958,
+ "▁имени": 21959,
+ "Canvas": 21960,
+ "пута": 21961,
+ "curr": 21962,
+ "ások": 21963,
+ "){\\": 21964,
+ "ningar": 21965,
+ "`;": 21966,
+ "▁Flash": 21967,
+ ":#": 21968,
+ "must": 21969,
+ "cpu": 21970,
+ "▁formats": 21971,
+ "Har": 21972,
+ "▁episodio": 21973,
+ "▁Rosa": 21974,
+ "▁dès": 21975,
+ "emit": 21976,
+ "riteria": 21977,
+ "Annotation": 21978,
+ "Flag": 21979,
+ "gmail": 21980,
+ "▁Normal": 21981,
+ "ollary": 21982,
+ "▁foss": 21983,
+ "▁concurrent": 21984,
+ "▁crashes": 21985,
+ "▁виде": 21986,
+ "▁Minor": 21987,
+ "▁Sit": 21988,
+ "▁SN": 21989,
+ "▁scar": 21990,
+ "▁femin": 21991,
+ "▁specification": 21992,
+ "soap": 21993,
+ "▁operate": 21994,
+ "▁principalmente": 21995,
+ "▁aust": 21996,
+ "ibile": 21997,
+ "itime": 21998,
+ "лежа": 21999,
+ "iframe": 22000,
+ "▁concepts": 22001,
+ "▁tack": 22002,
+ "▁viss": 22003,
+ "▁carbon": 22004,
+ "tery": 22005,
+ "▁naming": 22006,
+ "▁Orts": 22007,
+ "idente": 22008,
+ "▁Capit": 22009,
+ "▁expr": 22010,
+ "▁насељу": 22011,
+ "▁Selected": 22012,
+ "▁hinter": 22013,
+ "▁iframe": 22014,
+ "▁zb": 22015,
+ "indexPath": 22016,
+ "coll": 22017,
+ "▁wrześ": 22018,
+ "▁acht": 22019,
+ "▁gradually": 22020,
+ "▁чу": 22021,
+ "зей": 22022,
+ "haft": 22023,
+ "▁tran": 22024,
+ "▁laquelle": 22025,
+ "ytics": 22026,
+ "IDE": 22027,
+ "▁pygame": 22028,
+ "▁Package": 22029,
+ "▁className": 22030,
+ "Bal": 22031,
+ "perl": 22032,
+ "тина": 22033,
+ "Occ": 22034,
+ "▁infrastr": 22035,
+ "▁Champions": 22036,
+ "▁classic": 22037,
+ "▁Raw": 22038,
+ "▁partially": 22039,
+ "▁Ted": 22040,
+ "▁stolet": 22041,
+ "rained": 22042,
+ "WHERE": 22043,
+ "▁vall": 22044,
+ "▁Julia": 22045,
+ "zat": 22046,
+ "▁surrounded": 22047,
+ "SEE": 22048,
+ "▁walking": 22049,
+ "Bad": 22050,
+ "FOR": 22051,
+ "contre": 22052,
+ "▁Palest": 22053,
+ "ático": 22054,
+ "▁engineer": 22055,
+ "▁partners": 22056,
+ "▁Jews": 22057,
+ "ilers": 22058,
+ "▁cerem": 22059,
+ "▁interactions": 22060,
+ "acu": 22061,
+ "sty": 22062,
+ "▁Princess": 22063,
+ "sharp": 22064,
+ "▁Singles": 22065,
+ "▁їх": 22066,
+ "chez": 22067,
+ "Receiver": 22068,
+ "▁patients": 22069,
+ "stringify": 22070,
+ "▁competed": 22071,
+ "bey": 22072,
+ "$;": 22073,
+ "▁Bd": 22074,
+ "hadoop": 22075,
+ "▁División": 22076,
+ "öld": 22077,
+ "▁restricted": 22078,
+ "▁commander": 22079,
+ "▁Highway": 22080,
+ "▁Česk": 22081,
+ "▁myth": 22082,
+ "чан": 22083,
+ "raham": 22084,
+ "▁enqu": 22085,
+ "▁pog": 22086,
+ "▁comuna": 22087,
+ "▁println": 22088,
+ "▁круп": 22089,
+ "▁depois": 22090,
+ "▁seats": 22091,
+ "▁neighb": 22092,
+ "циона": 22093,
+ "agine": 22094,
+ "▁clothes": 22095,
+ "▁Prior": 22096,
+ "Brain": 22097,
+ "FFFF": 22098,
+ "':'": 22099,
+ "features": 22100,
+ "▁filesystem": 22101,
+ "▁singles": 22102,
+ "▁Melbourne": 22103,
+ "▁destruction": 22104,
+ "▁Lyon": 22105,
+ "▁Insel": 22106,
+ "Nav": 22107,
+ "▁Replace": 22108,
+ "▁lé": 22109,
+ "Who": 22110,
+ "▁Estad": 22111,
+ "▁dimensional": 22112,
+ "▁öff": 22113,
+ "▁grands": 22114,
+ "джа": 22115,
+ "plane": 22116,
+ "ності": 22117,
+ "▁Origin": 22118,
+ "WI": 22119,
+ "änner": 22120,
+ "▁Cry": 22121,
+ "ITION": 22122,
+ "▁född": 22123,
+ "▁cultura": 22124,
+ "▁Rank": 22125,
+ "▁vuel": 22126,
+ "▁zag": 22127,
+ "▁Maxim": 22128,
+ "ону": 22129,
+ "()))": 22130,
+ "Raw": 22131,
+ "kirche": 22132,
+ "▁además": 22133,
+ "▁tie": 22134,
+ "▁Style": 22135,
+ "сков": 22136,
+ "istant": 22137,
+ "olph": 22138,
+ "▁Zür": 22139,
+ "▁Info": 22140,
+ "DOM": 22141,
+ "usc": 22142,
+ "nahm": 22143,
+ "▁Федера": 22144,
+ "▁Fot": 22145,
+ "▁specifying": 22146,
+ "▁titolo": 22147,
+ "▁Boys": 22148,
+ "iech": 22149,
+ "Place": 22150,
+ "▁Hoff": 22151,
+ "▁cached": 22152,
+ "валь": 22153,
+ "isher": 22154,
+ "rolling": 22155,
+ "opens": 22156,
+ "▁hr": 22157,
+ "------": 22158,
+ "▁maggior": 22159,
+ "▁transactions": 22160,
+ "▁criminal": 22161,
+ "▁retre": 22162,
+ "▁Campbell": 22163,
+ ")):": 22164,
+ "▁ned": 22165,
+ "Pager": 22166,
+ "▁Hero": 22167,
+ "(__": 22168,
+ "▁uncle": 22169,
+ "▁reaches": 22170,
+ "arto": 22171,
+ "▁hello": 22172,
+ "Preferences": 22173,
+ "▁затем": 22174,
+ "Named": 22175,
+ "▁readers": 22176,
+ "хі": 22177,
+ "kern": 22178,
+ "▁упо": 22179,
+ "кин": 22180,
+ "▁lav": 22181,
+ "▁nob": 22182,
+ "▁secre": 22183,
+ "▁ListView": 22184,
+ "вания": 22185,
+ "▁Mayor": 22186,
+ "borough": 22187,
+ "▁filosof": 22188,
+ "нення": 22189,
+ "фри": 22190,
+ "▁patr": 22191,
+ "FM": 22192,
+ "▁acid": 22193,
+ "▁Salvador": 22194,
+ "▁abb": 22195,
+ "▁Graham": 22196,
+ "policy": 22197,
+ "negative": 22198,
+ "ńskiego": 22199,
+ "▁Heimat": 22200,
+ "▁dazu": 22201,
+ "▁mely": 22202,
+ "▁ride": 22203,
+ "▁duties": 22204,
+ "overy": 22205,
+ "▁Proposition": 22206,
+ "▁Paolo": 22207,
+ "/'": 22208,
+ "▁Mau": 22209,
+ "imenti": 22210,
+ "Saint": 22211,
+ "father": 22212,
+ "▁equilib": 22213,
+ "phony": 22214,
+ "▁clas": 22215,
+ "▁отли": 22216,
+ "▁Buffered": 22217,
+ "rek": 22218,
+ "▁mitt": 22219,
+ "▁Hur": 22220,
+ "▁Harvard": 22221,
+ "▁demonstrate": 22222,
+ "uario": 22223,
+ "▁dolor": 22224,
+ "▁rejected": 22225,
+ "▁Müller": 22226,
+ "▁nac": 22227,
+ "▁Belle": 22228,
+ "▁gathered": 22229,
+ "nr": 22230,
+ "frika": 22231,
+ "öll": 22232,
+ "▁chemical": 22233,
+ "nig": 22234,
+ "▁calc": 22235,
+ "▁DEFAULT": 22236,
+ "▁philosophy": 22237,
+ "▁Laravel": 22238,
+ "▁alignment": 22239,
+ "EV": 22240,
+ "eor": 22241,
+ "▁dzie": 22242,
+ "▁mest": 22243,
+ "▁Io": 22244,
+ "CRE": 22245,
+ "зви": 22246,
+ "▁Medic": 22247,
+ "▁nä": 22248,
+ "▁zab": 22249,
+ "▁Slov": 22250,
+ "utlich": 22251,
+ "▁amplit": 22252,
+ "▁Frankreich": 22253,
+ "▁кіль": 22254,
+ "IND": 22255,
+ "execution": 22256,
+ "▁Karriere": 22257,
+ "dostęp": 22258,
+ "▁réal": 22259,
+ "engo": 22260,
+ "▁severe": 22261,
+ "зма": 22262,
+ "▁турни": 22263,
+ "▁Carter": 22264,
+ "▁Robinson": 22265,
+ "getElementsBy": 22266,
+ "▁prototype": 22267,
+ "▁japon": 22268,
+ "führung": 22269,
+ "▁consegu": 22270,
+ "▁studi": 22271,
+ "▁lire": 22272,
+ "▁schließ": 22273,
+ "▁Buff": 22274,
+ "▁redund": 22275,
+ "▁ern": 22276,
+ "▁myster": 22277,
+ "▁proprio": 22278,
+ "ateful": 22279,
+ "▁Parent": 22280,
+ "▁ladies": 22281,
+ "rack": 22282,
+ "тика": 22283,
+ "enburg": 22284,
+ "▁качестве": 22285,
+ "▁EF": 22286,
+ "▁stam": 22287,
+ "▁nueva": 22288,
+ "▁filtered": 22289,
+ "reten": 22290,
+ "▁Ian": 22291,
+ "▁Matthew": 22292,
+ "kih": 22293,
+ "▁ő": 22294,
+ "▁компози": 22295,
+ "▁forever": 22296,
+ "oires": 22297,
+ ":\\\\": 22298,
+ "▁études": 22299,
+ "▁soup": 22300,
+ "▁pleased": 22301,
+ ")}(": 22302,
+ "▁Stop": 22303,
+ "Setter": 22304,
+ "▁Help": 22305,
+ "▁bars": 22306,
+ "▁ERR": 22307,
+ "▁(?": 22308,
+ "▁poetry": 22309,
+ "▁Util": 22310,
+ "AK": 22311,
+ "▁fick": 22312,
+ "▁IM": 22313,
+ "▁proud": 22314,
+ "носи": 22315,
+ "▁muerte": 22316,
+ "▁Palmarès": 22317,
+ "▁Nas": 22318,
+ "щих": 22319,
+ "▁quer": 22320,
+ "▁apenas": 22321,
+ "]['": 22322,
+ "▁Konst": 22323,
+ "пон": 22324,
+ "▁Schiff": 22325,
+ "▁mp": 22326,
+ "▁благо": 22327,
+ "fram": 22328,
+ "▁household": 22329,
+ "▁tract": 22330,
+ "encoding": 22331,
+ "▁undert": 22332,
+ "▁Aug": 22333,
+ "ован": 22334,
+ "▁Arten": 22335,
+ "▁invoked": 22336,
+ "▁dynast": 22337,
+ "▁fleet": 22338,
+ "чество": 22339,
+ "▁Murray": 22340,
+ "▁gut": 22341,
+ "elihood": 22342,
+ "▁SSH": 22343,
+ "ответ": 22344,
+ "▁personally": 22345,
+ "прия": 22346,
+ "▁financi": 22347,
+ "▁Thompson": 22348,
+ "alu": 22349,
+ "identity": 22350,
+ "▁Grab": 22351,
+ "addle": 22352,
+ "Ét": 22353,
+ "▁Tob": 22354,
+ "▁verlor": 22355,
+ "▁Sainte": 22356,
+ "▁dop": 22357,
+ "▁вере": 22358,
+ "___": 22359,
+ "▁promotion": 22360,
+ "▁-=": 22361,
+ "▁отде": 22362,
+ "▁ambigu": 22363,
+ "ORDER": 22364,
+ "▁Communic": 22365,
+ "▁imply": 22366,
+ "oned": 22367,
+ "cluding": 22368,
+ "▁collision": 22369,
+ "▁fragments": 22370,
+ "scription": 22371,
+ "▁'{": 22372,
+ "лях": 22373,
+ "▁hans": 22374,
+ "ус": 22375,
+ "wire": 22376,
+ "namespace": 22377,
+ "▁sword": 22378,
+ "refresh": 22379,
+ "▁kwam": 22380,
+ "zs": 22381,
+ "commons": 22382,
+ "▁cosa": 22383,
+ "▁regime": 22384,
+ "grep": 22385,
+ "▁dioc": 22386,
+ "▁Contact": 22387,
+ "▁estas": 22388,
+ "▁Stewart": 22389,
+ "▁viele": 22390,
+ "това": 22391,
+ "▁Ran": 22392,
+ "annes": 22393,
+ "iday": 22394,
+ "▁snapshot": 22395,
+ "orrow": 22396,
+ "▁zač": 22397,
+ "▁участие": 22398,
+ "▁promised": 22399,
+ "Assembly": 22400,
+ "▁championship": 22401,
+ "▁Define": 22402,
+ "▁eren": 22403,
+ "▁ново": 22404,
+ "▁thinks": 22405,
+ "Age": 22406,
+ "▁gev": 22407,
+ "varchar": 22408,
+ "ività": 22409,
+ "compos": 22410,
+ "▁Mutter": 22411,
+ "CONT": 22412,
+ "armée": 22413,
+ "agnet": 22414,
+ "▁Brow": 22415,
+ ".—": 22416,
+ "▁Television": 22417,
+ "▁Для": 22418,
+ "▁vm": 22419,
+ "▁ordin": 22420,
+ "▁Михай": 22421,
+ "▁aproxim": 22422,
+ "')->": 22423,
+ "▁zoo": 22424,
+ "ippi": 22425,
+ "▁sino": 22426,
+ "▁Québec": 22427,
+ "rages": 22428,
+ "äck": 22429,
+ "eing": 22430,
+ "arlo": 22431,
+ "pios": 22432,
+ "▁Chan": 22433,
+ "▁elli": 22434,
+ "▁incons": 22435,
+ "gestellt": 22436,
+ "ppers": 22437,
+ "Jean": 22438,
+ "anstalt": 22439,
+ "▁Dance": 22440,
+ "▁toen": 22441,
+ "▁decis": 22442,
+ "▁Резу": 22443,
+ "▁officially": 22444,
+ "ätze": 22445,
+ "▁доро": 22446,
+ "▁enumer": 22447,
+ "▁troisième": 22448,
+ "typ": 22449,
+ "offs": 22450,
+ "боль": 22451,
+ "odn": 22452,
+ "▁Zar": 22453,
+ "▁друго": 22454,
+ "quia": 22455,
+ "▁Nicolas": 22456,
+ "пису": 22457,
+ "▁mob": 22458,
+ "paces": 22459,
+ "нього": 22460,
+ "Alg": 22461,
+ "éroï": 22462,
+ "Errors": 22463,
+ "▁гре": 22464,
+ "▁женщи": 22465,
+ "inch": 22466,
+ "▁Korean": 22467,
+ "▁Apost": 22468,
+ "▁Liver": 22469,
+ "▁elementary": 22470,
+ "▁DI": 22471,
+ "виси": 22472,
+ "▁soil": 22473,
+ "▁DLL": 22474,
+ "▁risp": 22475,
+ "▁Shakespe": 22476,
+ "▁Gaussian": 22477,
+ "▁Kurt": 22478,
+ "Vertex": 22479,
+ "ebol": 22480,
+ "organisation": 22481,
+ "ären": 22482,
+ "▁YES": 22483,
+ "CUR": 22484,
+ "▁началь": 22485,
+ "▁постро": 22486,
+ "▁Luigi": 22487,
+ "▁caching": 22488,
+ "preventDefault": 22489,
+ "amd": 22490,
+ "▁Vit": 22491,
+ "subst": 22492,
+ "▁строи": 22493,
+ "▁Campion": 22494,
+ "chr": 22495,
+ "фере": 22496,
+ "▁Список": 22497,
+ "NF": 22498,
+ "▁cím": 22499,
+ "▁hé": 22500,
+ "rebbe": 22501,
+ "ocy": 22502,
+ "below": 22503,
+ "▁bylo": 22504,
+ "▁Уи": 22505,
+ "▁\\({\\": 22506,
+ "▁`:": 22507,
+ "giore": 22508,
+ "San": 22509,
+ "▁Gate": 22510,
+ "▁вс": 22511,
+ "▁olimp": 22512,
+ "▁Matrix": 22513,
+ "▁hearing": 22514,
+ "rii": 22515,
+ "tfrac": 22516,
+ "▁allemand": 22517,
+ "▁Vue": 22518,
+ "лн": 22519,
+ "▁compiling": 22520,
+ "▁Ens": 22521,
+ "▁investigation": 22522,
+ "▁Ax": 22523,
+ "▁chars": 22524,
+ "▁targets": 22525,
+ "▁loud": 22526,
+ "usement": 22527,
+ "▁Nether": 22528,
+ "commerce": 22529,
+ "IGHT": 22530,
+ "ocoa": 22531,
+ "ifecycle": 22532,
+ "▁Leo": 22533,
+ "priv": 22534,
+ "▁goods": 22535,
+ "adamente": 22536,
+ "Austral": 22537,
+ "▁reboot": 22538,
+ "Gest": 22539,
+ "▁representations": 22540,
+ "ceu": 22541,
+ "▁doctrine": 22542,
+ "cers": 22543,
+ "▁Krak": 22544,
+ "▁advoc": 22545,
+ "▁squadra": 22546,
+ "▁arbeitete": 22547,
+ "üst": 22548,
+ "▁pill": 22549,
+ "Answer": 22550,
+ "▁квіт": 22551,
+ "▁Wa": 22552,
+ "umann": 22553,
+ "▁Dynam": 22554,
+ "Famil": 22555,
+ "▁tennis": 22556,
+ "▁Engineering": 22557,
+ "▁circles": 22558,
+ "▁Maryland": 22559,
+ "▁besta": 22560,
+ "▁bases": 22561,
+ "▁znajdu": 22562,
+ "ктора": 22563,
+ "▁arrest": 22564,
+ "лер": 22565,
+ "▁Gia": 22566,
+ "▁remarkable": 22567,
+ "▁могу": 22568,
+ "▁Supreme": 22569,
+ "▁`%": 22570,
+ "dor": 22571,
+ "▁aujourd": 22572,
+ "▁wis": 22573,
+ "WIDTH": 22574,
+ "▁misma": 22575,
+ "▁fluid": 22576,
+ "▁petite": 22577,
+ "▁Tow": 22578,
+ "Registry": 22579,
+ "emed": 22580,
+ "▁Wisconsin": 22581,
+ "▁Racing": 22582,
+ "▁registration": 22583,
+ "/%": 22584,
+ "third": 22585,
+ "▁monuments": 22586,
+ "чей": 22587,
+ "▁jet": 22588,
+ "▁Urban": 22589,
+ "álva": 22590,
+ "▁milieu": 22591,
+ "▁possess": 22592,
+ "▁germ": 22593,
+ "dependencies": 22594,
+ "▁enemies": 22595,
+ "▁samen": 22596,
+ "▁Werner": 22597,
+ "▁hizo": 22598,
+ "▁td": 22599,
+ "▁yesterday": 22600,
+ "▁Ад": 22601,
+ "▁hasn": 22602,
+ "cellation": 22603,
+ "ování": 22604,
+ "lika": 22605,
+ "Week": 22606,
+ "▁Ing": 22607,
+ "▁Email": 22608,
+ "▁mètres": 22609,
+ "▁OCLC": 22610,
+ "▁amongst": 22611,
+ "▁splend": 22612,
+ "fur": 22613,
+ "antics": 22614,
+ "▁XXX": 22615,
+ "▁группы": 22616,
+ "lach": 22617,
+ "▁cousin": 22618,
+ "▁invariant": 22619,
+ "ђу": 22620,
+ "▁Beispiel": 22621,
+ "▁harder": 22622,
+ "▁bell": 22623,
+ "▁orch": 22624,
+ "tb": 22625,
+ "Footnote": 22626,
+ "regon": 22627,
+ "Martin": 22628,
+ "▁incon": 22629,
+ "▁attacked": 22630,
+ "_{-": 22631,
+ "▁Tras": 22632,
+ "party": 22633,
+ "iteit": 22634,
+ "▁saint": 22635,
+ "rások": 22636,
+ "▁containers": 22637,
+ "Mo": 22638,
+ "▁Sn": 22639,
+ "quantity": 22640,
+ "▁ras": 22641,
+ "▁Canal": 22642,
+ "ccion": 22643,
+ "uvo": 22644,
+ "▁idx": 22645,
+ "typename": 22646,
+ "▁Rugby": 22647,
+ "▁Seems": 22648,
+ "▁transmit": 22649,
+ "▁Präsident": 22650,
+ "зне": 22651,
+ "▁Baker": 22652,
+ "inth": 22653,
+ "▁több": 22654,
+ "verein": 22655,
+ "▁especie": 22656,
+ ",(": 22657,
+ "▁téc": 22658,
+ "▁WITH": 22659,
+ "▁unos": 22660,
+ "▁politics": 22661,
+ "createElement": 22662,
+ "▁stats": 22663,
+ "▁Tennessee": 22664,
+ "▁Bedeutung": 22665,
+ "▁Screen": 22666,
+ "▁Straße": 22667,
+ "anze": 22668,
+ "▁partly": 22669,
+ "manuel": 22670,
+ "olation": 22671,
+ "horizontal": 22672,
+ "érieure": 22673,
+ "ampio": 22674,
+ "▁струк": 22675,
+ "Weight": 22676,
+ "Land": 22677,
+ "poly": 22678,
+ "▁Dak": 22679,
+ "▁Assume": 22680,
+ "\".$": 22681,
+ "▁casi": 22682,
+ "▁gross": 22683,
+ "▁entertain": 22684,
+ "▁década": 22685,
+ "'.$": 22686,
+ "encer": 22687,
+ "▁guaranteed": 22688,
+ "]$.": 22689,
+ "лися": 22690,
+ "▁acceptable": 22691,
+ "raise": 22692,
+ "irus": 22693,
+ "weit": 22694,
+ "▁Ана": 22695,
+ "▁hills": 22696,
+ "ipage": 22697,
+ "BIT": 22698,
+ "▁nucle": 22699,
+ "▁utilis": 22700,
+ "CAA": 22701,
+ "ènes": 22702,
+ "▁Schweiz": 22703,
+ "▁AA": 22704,
+ "ninger": 22705,
+ "▁bands": 22706,
+ "▁tender": 22707,
+ "som": 22708,
+ "Warning": 22709,
+ "▁Bischof": 22710,
+ "▁Arc": 22711,
+ "▁Woman": 22712,
+ "▁transmission": 22713,
+ "чни": 22714,
+ "istre": 22715,
+ "BY": 22716,
+ "▁SI": 22717,
+ "▁Пар": 22718,
+ "▁}).": 22719,
+ "▁presenta": 22720,
+ "▁René": 22721,
+ "▁happiness": 22722,
+ "▁Punk": 22723,
+ "cols": 22724,
+ "▁Desde": 22725,
+ "рёх": 22726,
+ "▁мона": 22727,
+ "▁scratch": 22728,
+ "▁tcp": 22729,
+ "êtes": 22730,
+ "itated": 22731,
+ "▁diferen": 22732,
+ "geh": 22733,
+ "nahmen": 22734,
+ "Пе": 22735,
+ "cki": 22736,
+ "▁Teatro": 22737,
+ "▁Remember": 22738,
+ "▁fright": 22739,
+ "▁Yam": 22740,
+ "western": 22741,
+ "leted": 22742,
+ "▁встре": 22743,
+ "▁település": 22744,
+ "зин": 22745,
+ "▁Quant": 22746,
+ "▁supre": 22747,
+ "ája": 22748,
+ "дія": 22749,
+ "▁carrera": 22750,
+ "kret": 22751,
+ "para": 22752,
+ "▁SUM": 22753,
+ "▁pit": 22754,
+ "źdz": 22755,
+ "éo": 22756,
+ "рення": 22757,
+ "▁Chor": 22758,
+ "▁voix": 22759,
+ "▁executive": 22760,
+ "▁allerdings": 22761,
+ "Maybe": 22762,
+ "▁день": 22763,
+ "▁flying": 22764,
+ "▁parliament": 22765,
+ "ждан": 22766,
+ "▁fram": 22767,
+ "▁жовт": 22768,
+ "▁ugly": 22769,
+ "▁буду": 22770,
+ "igny": 22771,
+ "\\|_{": 22772,
+ "▁bitter": 22773,
+ "sce": 22774,
+ "▁pole": 22775,
+ "Verlag": 22776,
+ "▁totalité": 22777,
+ "▁foundation": 22778,
+ "jt": 22779,
+ "▁slice": 22780,
+ "ifique": 22781,
+ "▁integrate": 22782,
+ "strij": 22783,
+ "▁asympt": 22784,
+ "▁ему": 22785,
+ "▁perturb": 22786,
+ "▁Flow": 22787,
+ "jboss": 22788,
+ "RIG": 22789,
+ "▁Aless": 22790,
+ "XXX": 22791,
+ "▁summ": 22792,
+ "sqlite": 22793,
+ "▁cheer": 22794,
+ "prob": 22795,
+ "▁GPU": 22796,
+ "ził": 22797,
+ "(*)": 22798,
+ "▁induct": 22799,
+ "RAY": 22800,
+ "blatt": 22801,
+ "questa": 22802,
+ "oru": 22803,
+ "▁Inside": 22804,
+ "▁McG": 22805,
+ "▁Nep": 22806,
+ "мп": 22807,
+ "▁inve": 22808,
+ "▁Animal": 22809,
+ "▁sob": 22810,
+ "ított": 22811,
+ "loyment": 22812,
+ "▁bund": 22813,
+ "Station": 22814,
+ "▁BEGIN": 22815,
+ "▁partiellement": 22816,
+ "igg": 22817,
+ "estore": 22818,
+ "▁coinc": 22819,
+ "▁Sommer": 22820,
+ "▁md": 22821,
+ "▁locked": 22822,
+ "mathchar": 22823,
+ "arma": 22824,
+ "pent": 22825,
+ "arium": 22826,
+ "▁ears": 22827,
+ "▁Songs": 22828,
+ "▁similarly": 22829,
+ "▁literally": 22830,
+ "▁inches": 22831,
+ "▁affection": 22832,
+ "lp": 22833,
+ "▁concluded": 22834,
+ "▁муніципалі": 22835,
+ "▁памя": 22836,
+ "estaur": 22837,
+ "▁Josh": 22838,
+ "▁Fritz": 22839,
+ "DBC": 22840,
+ "дён": 22841,
+ "posa": 22842,
+ "▁golden": 22843,
+ "▁pc": 22844,
+ "▁comte": 22845,
+ "▁Ziel": 22846,
+ "▁présente": 22847,
+ "marks": 22848,
+ "igneur": 22849,
+ "▁Drive": 22850,
+ "▁neglect": 22851,
+ "▁rozp": 22852,
+ "▁Five": 22853,
+ "spaces": 22854,
+ "▁Medi": 22855,
+ "▁existed": 22856,
+ "▁była": 22857,
+ "джи": 22858,
+ "▁frente": 22859,
+ "тник": 22860,
+ "odd": 22861,
+ "▁answering": 22862,
+ "bian": 22863,
+ "▁Eugen": 22864,
+ "▁Publications": 22865,
+ "▁Dia": 22866,
+ "lá": 22867,
+ "▁'_": 22868,
+ "▁recuper": 22869,
+ "ому": 22870,
+ "▁Append": 22871,
+ "obar": 22872,
+ "▁employees": 22873,
+ "▁compens": 22874,
+ "emetery": 22875,
+ "▁элект": 22876,
+ "MON": 22877,
+ "olin": 22878,
+ "▁historic": 22879,
+ "his": 22880,
+ "ąd": 22881,
+ "nm": 22882,
+ "▁Goth": 22883,
+ "▁stress": 22884,
+ "▁partecip": 22885,
+ "▁Aw": 22886,
+ "▁sar": 22887,
+ "▁hu": 22888,
+ "▁matplotlib": 22889,
+ "▁Myst": 22890,
+ "();`": 22891,
+ "schein": 22892,
+ "Longrightarrow": 22893,
+ "▁ря": 22894,
+ "▁Isra": 22895,
+ "[^": 22896,
+ "nou": 22897,
+ "▁synd": 22898,
+ "working": 22899,
+ "▁Nation": 22900,
+ "▁Pent": 22901,
+ "▁klass": 22902,
+ "▁applicable": 22903,
+ "▁Diam": 22904,
+ "▁brasile": 22905,
+ "▁pac": 22906,
+ "▁Height": 22907,
+ "Put": 22908,
+ "▁intro": 22909,
+ "▁unusual": 22910,
+ "nas": 22911,
+ "▁Gebäude": 22912,
+ "▁beam": 22913,
+ "▁Rect": 22914,
+ "▁Primera": 22915,
+ "▁haut": 22916,
+ "▁trait": 22917,
+ "prüft": 22918,
+ "inación": 22919,
+ "▁configurations": 22920,
+ "▁gilt": 22921,
+ "▁territoire": 22922,
+ "hez": 22923,
+ "▁alte": 22924,
+ "relative": 22925,
+ "Excel": 22926,
+ "▁Wright": 22927,
+ "GV": 22928,
+ "поли": 22929,
+ "Quant": 22930,
+ "▁gauge": 22931,
+ "▁multiply": 22932,
+ "ASS": 22933,
+ "ственно": 22934,
+ "ану": 22935,
+ "▁jeden": 22936,
+ "▁literary": 22937,
+ "▁Dro": 22938,
+ "▁advise": 22939,
+ "itzen": 22940,
+ "▁disag": 22941,
+ "website": 22942,
+ "▁дія": 22943,
+ "▁observer": 22944,
+ "▁január": 22945,
+ "vě": 22946,
+ "kup": 22947,
+ "▁Ses": 22948,
+ "▁wojew": 22949,
+ "▁stages": 22950,
+ "▁времени": 22951,
+ "łuż": 22952,
+ "нос": 22953,
+ "Download": 22954,
+ "ipo": 22955,
+ "▁graf": 22956,
+ "▁робо": 22957,
+ "▁Nikol": 22958,
+ "▁fic": 22959,
+ "▁joining": 22960,
+ "▁diversos": 22961,
+ "▁LIKE": 22962,
+ "▁Fitz": 22963,
+ "▁dimin": 22964,
+ "▁distrib": 22965,
+ "Sam": 22966,
+ "koz": 22967,
+ "▁alphabet": 22968,
+ "oser": 22969,
+ "OUR": 22970,
+ "uka": 22971,
+ "кая": 22972,
+ "▁steel": 22973,
+ "▁`--": 22974,
+ "▁tener": 22975,
+ "marker": 22976,
+ "▁Heaven": 22977,
+ "newcommand": 22978,
+ "▁prisoners": 22979,
+ "▁Knight": 22980,
+ "▁presents": 22981,
+ "▁questi": 22982,
+ "▁trains": 22983,
+ "opera": 22984,
+ "▁Linear": 22985,
+ "▁ME": 22986,
+ "▁Buc": 22987,
+ "Leg": 22988,
+ "▁agua": 22989,
+ "▁Griff": 22990,
+ "olg": 22991,
+ "dst": 22992,
+ ".\r": 22993,
+ "▁persones": 22994,
+ "Mal": 22995,
+ "бере": 22996,
+ "folge": 22997,
+ "▁acab": 22998,
+ "ctu": 22999,
+ "ptic": 23000,
+ "▁Navigation": 23001,
+ "Russ": 23002,
+ "галь": 23003,
+ "▁Ful": 23004,
+ "▁має": 23005,
+ "чная": 23006,
+ "wner": 23007,
+ "contra": 23008,
+ "▁joueur": 23009,
+ "▁Jess": 23010,
+ "▁renew": 23011,
+ "▁lap": 23012,
+ "▁casting": 23013,
+ "gal": 23014,
+ "▁tématu": 23015,
+ "▁называ": 23016,
+ "зах": 23017,
+ "чне": 23018,
+ ")-\\": 23019,
+ "▁часто": 23020,
+ "}$-": 23021,
+ "▁licz": 23022,
+ "▁emot": 23023,
+ "harm": 23024,
+ "▁occasionally": 23025,
+ "▁horror": 23026,
+ "east": 23027,
+ "▁printer": 23028,
+ "aran": 23029,
+ "▁Mississ": 23030,
+ "follow": 23031,
+ "▁Barry": 23032,
+ "▁investigate": 23033,
+ "gow": 23034,
+ "▁Americans": 23035,
+ "Since": 23036,
+ "▁відо": 23037,
+ "▁reun": 23038,
+ "osci": 23039,
+ "▁Chapter": 23040,
+ "▁bay": 23041,
+ "роме": 23042,
+ "ethe": 23043,
+ "édie": 23044,
+ "comot": 23045,
+ "▁miejscowo": 23046,
+ "▁studierte": 23047,
+ "ouvert": 23048,
+ "▁кур": 23049,
+ "▁DESC": 23050,
+ "▁touched": 23051,
+ "▁Jerry": 23052,
+ "uese": 23053,
+ "лище": 23054,
+ "authentication": 23055,
+ "▁colle": 23056,
+ "heart": 23057,
+ "▁regiment": 23058,
+ "cribed": 23059,
+ "▁Боль": 23060,
+ "▁проис": 23061,
+ "ceae": 23062,
+ "▁masses": 23063,
+ "▁scrolling": 23064,
+ "usto": 23065,
+ "SW": 23066,
+ "ovat": 23067,
+ "▁grâce": 23068,
+ "▁Архив": 23069,
+ "▁Север": 23070,
+ "avait": 23071,
+ "▁Marshall": 23072,
+ "▁HashMap": 23073,
+ "acon": 23074,
+ "ücken": 23075,
+ "[])": 23076,
+ "▁evangel": 23077,
+ "etzung": 23078,
+ "ttemberg": 23079,
+ "sters": 23080,
+ "TM": 23081,
+ "▁литера": 23082,
+ "quot": 23083,
+ "Pred": 23084,
+ "▁werk": 23085,
+ "▁haber": 23086,
+ "lava": 23087,
+ "vous": 23088,
+ "▁Late": 23089,
+ "cycle": 23090,
+ "тирова": 23091,
+ "▁проду": 23092,
+ "▁populations": 23093,
+ "▁Yan": 23094,
+ "Prefix": 23095,
+ "actéristiques": 23096,
+ "+'": 23097,
+ "()`](": 23098,
+ "▁Ль": 23099,
+ "филь": 23100,
+ "▁жизни": 23101,
+ "ftp": 23102,
+ "▁всех": 23103,
+ "▁gdzie": 23104,
+ "▁videa": 23105,
+ "oauth": 23106,
+ "▁pid": 23107,
+ "ům": 23108,
+ "▁pesso": 23109,
+ "▁tracking": 23110,
+ "izin": 23111,
+ "▁Morris": 23112,
+ "щий": 23113,
+ "▁Provinz": 23114,
+ "▁Mitte": 23115,
+ "▁artificial": 23116,
+ "brázky": 23117,
+ "▁дости": 23118,
+ "▁restored": 23119,
+ "▁communicate": 23120,
+ "agit": 23121,
+ "Recogn": 23122,
+ "▁lon": 23123,
+ "▁заня": 23124,
+ "▁Argument": 23125,
+ "flush": 23126,
+ "мана": 23127,
+ "seconds": 23128,
+ "UC": 23129,
+ "▁Ruth": 23130,
+ "▁tub": 23131,
+ "▁Bret": 23132,
+ "▁Pere": 23133,
+ "▁responsibility": 23134,
+ "ńczy": 23135,
+ "▁environments": 23136,
+ "kee": 23137,
+ "▁groot": 23138,
+ "▁painted": 23139,
+ "▁Éditions": 23140,
+ "cpy": 23141,
+ "árt": 23142,
+ "lichkeit": 23143,
+ "arda": 23144,
+ "Batch": 23145,
+ "▁Leopold": 23146,
+ "reason": 23147,
+ "noreferrer": 23148,
+ "sens": 23149,
+ "▁rocks": 23150,
+ "▁Hitler": 23151,
+ "лат": 23152,
+ "▁quoted": 23153,
+ "▁колле": 23154,
+ "▁уров": 23155,
+ "bag": 23156,
+ ".\")": 23157,
+ "▁ML": 23158,
+ "▁komt": 23159,
+ "▁[_": 23160,
+ "▁spectral": 23161,
+ "edo": 23162,
+ "▁insieme": 23163,
+ "▁suffering": 23164,
+ "slider": 23165,
+ "▁Kennedy": 23166,
+ "olate": 23167,
+ "▁Patri": 23168,
+ "зии": 23169,
+ "OH": 23170,
+ "▁теа": 23171,
+ "▁права": 23172,
+ "мах": 23173,
+ "rewrite": 23174,
+ "▁Einsatz": 23175,
+ "external": 23176,
+ "holds": 23177,
+ "▁Places": 23178,
+ "atype": 23179,
+ "▁vulner": 23180,
+ "▁abandoned": 23181,
+ "Origin": 23182,
+ "▁maximal": 23183,
+ "AAAA": 23184,
+ "▁Baseball": 23185,
+ "▁Close": 23186,
+ "▁painter": 23187,
+ "▁assigning": 23188,
+ "NB": 23189,
+ "blast": 23190,
+ "▁Künstler": 23191,
+ ")](": 23192,
+ "fach": 23193,
+ "▁Constantin": 23194,
+ "okes": 23195,
+ "▁nobody": 23196,
+ "▁subtract": 23197,
+ "▁fosse": 23198,
+ "▁certific": 23199,
+ "▁muse": 23200,
+ "/),": 23201,
+ "▁Profil": 23202,
+ "▁proxim": 23203,
+ "▁Jerusalem": 23204,
+ "▁simplicity": 23205,
+ "▁wsz": 23206,
+ "NUMBER": 23207,
+ "uttavia": 23208,
+ "UITableView": 23209,
+ "ichter": 23210,
+ "жан": 23211,
+ "▁Lav": 23212,
+ "itchen": 23213,
+ "▁Чем": 23214,
+ "Tu": 23215,
+ "▁geom": 23216,
+ "▁zvuky": 23217,
+ "▁Survey": 23218,
+ "ANCE": 23219,
+ "▁encrypted": 23220,
+ "prof": 23221,
+ "▁dare": 23222,
+ "▁Loren": 23223,
+ "тв": 23224,
+ "▁Алек": 23225,
+ "▁computers": 23226,
+ "▁expectation": 23227,
+ "▁substantial": 23228,
+ "▁Дми": 23229,
+ "▁`{": 23230,
+ "▁дра": 23231,
+ "ubble": 23232,
+ "▁performs": 23233,
+ "▁Krieg": 23234,
+ "▁incoming": 23235,
+ "▁Classification": 23236,
+ "WebView": 23237,
+ "▁episodes": 23238,
+ "apper": 23239,
+ "äufig": 23240,
+ "▁giov": 23241,
+ "▁Depart": 23242,
+ "бора": 23243,
+ "edly": 23244,
+ "ospod": 23245,
+ "▁ptr": 23246,
+ "▁dátum": 23247,
+ "▁estimation": 23248,
+ "icole": 23249,
+ "▁----": 23250,
+ "▁princes": 23251,
+ "HEAD": 23252,
+ "▁diffusion": 23253,
+ "▁drie": 23254,
+ "▁Ada": 23255,
+ "нице": 23256,
+ "nginx": 23257,
+ "shal": 23258,
+ "▁februari": 23259,
+ "▁Tat": 23260,
+ "looking": 23261,
+ "kund": 23262,
+ "▁Dean": 23263,
+ "mongodb": 23264,
+ "вших": 23265,
+ "▁Aur": 23266,
+ "▁Flora": 23267,
+ "▁Studios": 23268,
+ "ције": 23269,
+ "eil": 23270,
+ "Install": 23271,
+ "▁franch": 23272,
+ "▁HMS": 23273,
+ "▁practices": 23274,
+ "lej": 23275,
+ "dale": 23276,
+ "▁poste": 23277,
+ "▁Hels": 23278,
+ "▁reliable": 23279,
+ "ździer": 23280,
+ "▁verse": 23281,
+ "ermeister": 23282,
+ "▁quit": 23283,
+ "ético": 23284,
+ "ilis": 23285,
+ "edor": 23286,
+ "▁Cultural": 23287,
+ "дже": 23288,
+ "▁liked": 23289,
+ "▁mongodb": 23290,
+ "▁Broadway": 23291,
+ "▁IR": 23292,
+ "eszt": 23293,
+ "hov": 23294,
+ "▁míst": 23295,
+ "reiche": 23296,
+ "▁kB": 23297,
+ "стом": 23298,
+ "▁SQLite": 23299,
+ "▁torneo": 23300,
+ "\\.": 23301,
+ "Ord": 23302,
+ "▁Administration": 23303,
+ "▁зда": 23304,
+ "▁Hinter": 23305,
+ "▁Via": 23306,
+ "Decimal": 23307,
+ "orious": 23308,
+ "▁nécessaire": 23309,
+ "wx": 23310,
+ "▁tej": 23311,
+ "▁tema": 23312,
+ "Obrázky": 23313,
+ "рите": 23314,
+ "▁builds": 23315,
+ "▁laten": 23316,
+ "▁гг": 23317,
+ "Visibility": 23318,
+ "läu": 23319,
+ "▁sechs": 23320,
+ "▁луч": 23321,
+ "cera": 23322,
+ "Could": 23323,
+ "▁traject": 23324,
+ "}}^{": 23325,
+ "▁Japon": 23326,
+ "another": 23327,
+ "IK": 23328,
+ "▁belonging": 23329,
+ "▁facilities": 23330,
+ "▁Daily": 23331,
+ "▁dece": 23332,
+ "intro": 23333,
+ "▁случа": 23334,
+ "Namespace": 23335,
+ "▁Bak": 23336,
+ "locale": 23337,
+ "UG": 23338,
+ "=${": 23339,
+ "▁compañ": 23340,
+ "jąc": 23341,
+ "▁arithmetic": 23342,
+ "forum": 23343,
+ "▁porta": 23344,
+ "onk": 23345,
+ "▁gender": 23346,
+ "▁expects": 23347,
+ "бка": 23348,
+ "▁nak": 23349,
+ "▁Grace": 23350,
+ "▁stro": 23351,
+ "ividual": 23352,
+ "▁COM": 23353,
+ "▁Farm": 23354,
+ "▁canton": 23355,
+ "тому": 23356,
+ "javax": 23357,
+ "сей": 23358,
+ "▁briefly": 23359,
+ "Face": 23360,
+ "rotate": 23361,
+ "constant": 23362,
+ "▁gallery": 23363,
+ "astro": 23364,
+ "allery": 23365,
+ "▁DJ": 23366,
+ "charge": 23367,
+ "ходить": 23368,
+ "Cent": 23369,
+ "\\\",": 23370,
+ "▁donna": 23371,
+ "arca": 23372,
+ "lade": 23373,
+ "zin": 23374,
+ "▁Ned": 23375,
+ "▁hosting": 23376,
+ "idor": 23377,
+ "itative": 23378,
+ "igs": 23379,
+ "▁пря": 23380,
+ "▁ticket": 23381,
+ "▁studying": 23382,
+ "▁designer": 23383,
+ "lapsed": 23384,
+ "▁laat": 23385,
+ "▁dix": 23386,
+ "▁integrated": 23387,
+ "▁informed": 23388,
+ "▁behave": 23389,
+ "▁labour": 23390,
+ "estellt": 23391,
+ "calendar": 23392,
+ "▁killing": 23393,
+ "▁twitter": 23394,
+ "iae": 23395,
+ "▁historique": 23396,
+ "DEFAULT": 23397,
+ "iała": 23398,
+ "▁theoretical": 23399,
+ "▁unders": 23400,
+ "ляет": 23401,
+ "atan": 23402,
+ "▁surname": 23403,
+ "▁intercept": 23404,
+ "гласно": 23405,
+ "▁општини": 23406,
+ "▁tired": 23407,
+ "▁Beth": 23408,
+ "▁административ": 23409,
+ "Li": 23410,
+ "▁Тур": 23411,
+ "▁Scanner": 23412,
+ "▁Stern": 23413,
+ "▁вместе": 23414,
+ "▁reporting": 23415,
+ "▁sull": 23416,
+ "цией": 23417,
+ "berts": 23418,
+ "ogonal": 23419,
+ "ők": 23420,
+ "▁ipsum": 23421,
+ "▁seulement": 23422,
+ "▁Seiten": 23423,
+ "wordpress": 23424,
+ "▁featuring": 23425,
+ "istischen": 23426,
+ "jub": 23427,
+ "▁étr": 23428,
+ "▁tea": 23429,
+ "▁adapted": 23430,
+ "▁scales": 23431,
+ "▁nan": 23432,
+ "getValue": 23433,
+ "▁Blues": 23434,
+ "acles": 23435,
+ "▁stati": 23436,
+ "▁entitled": 23437,
+ "▁Ralph": 23438,
+ "gravity": 23439,
+ "▁entrepr": 23440,
+ "któber": 23441,
+ "limat": 23442,
+ "lis": 23443,
+ "Demo": 23444,
+ "relation": 23445,
+ "▁nep": 23446,
+ "prowad": 23447,
+ "itis": 23448,
+ "▁pup": 23449,
+ "nehmer": 23450,
+ "▁disappoint": 23451,
+ "▁etwas": 23452,
+ "annon": 23453,
+ "▁approved": 23454,
+ "▁clever": 23455,
+ "Loading": 23456,
+ "▁verz": 23457,
+ "resse": 23458,
+ "▁inspir": 23459,
+ "▁sampling": 23460,
+ "▁Bek": 23461,
+ "})$.": 23462,
+ "▁грома": 23463,
+ "▁specie": 23464,
+ "▁repub": 23465,
+ "▁loader": 23466,
+ "▁erf": 23467,
+ "▁shoulder": 23468,
+ "rais": 23469,
+ "▁мате": 23470,
+ "▁Month": 23471,
+ "Scene": 23472,
+ "▁blocking": 23473,
+ "▁ocean": 23474,
+ "geben": 23475,
+ "▁Kilometer": 23476,
+ "▁bedeut": 23477,
+ "▁Mix": 23478,
+ "fmt": 23479,
+ "▁Norweg": 23480,
+ "▁IDs": 23481,
+ "parallel": 23482,
+ "▁anticip": 23483,
+ "▁revis": 23484,
+ "хан": 23485,
+ "▁свет": 23486,
+ "CASE": 23487,
+ "▁führt": 23488,
+ "▁atomic": 23489,
+ "▁darkness": 23490,
+ "▁Fußballspieler": 23491,
+ "▁Жи": 23492,
+ "quisition": 23493,
+ "▁Sieg": 23494,
+ "Circ": 23495,
+ "▁cientí": 23496,
+ "nelle": 23497,
+ "SHA": 23498,
+ "▁urb": 23499,
+ "▁ksi": 23500,
+ "leqslant": 23501,
+ "▁фрон": 23502,
+ "▁defect": 23503,
+ "▁rá": 23504,
+ "▁stronger": 23505,
+ "▁pł": 23506,
+ "▁communities": 23507,
+ "нина": 23508,
+ "enas": 23509,
+ "iennent": 23510,
+ "▁safely": 23511,
+ "▁тя": 23512,
+ "▁benchmark": 23513,
+ "▁Braun": 23514,
+ "methods": 23515,
+ "argument": 23516,
+ "vos": 23517,
+ "obox": 23518,
+ "рови": 23519,
+ "▁recherche": 23520,
+ "mn": 23521,
+ "▁brings": 23522,
+ "machine": 23523,
+ "CESS": 23524,
+ "hosts": 23525,
+ "▁NY": 23526,
+ "Autow": 23527,
+ "▁современ": 23528,
+ "▁Gary": 23529,
+ "▁sensor": 23530,
+ "▁documented": 23531,
+ "▁prendre": 23532,
+ "▁peer": 23533,
+ "enix": 23534,
+ "hai": 23535,
+ "arbe": 23536,
+ "цент": 23537,
+ "_(": 23538,
+ "▁URI": 23539,
+ "ева": 23540,
+ "▁Regie": 23541,
+ "▁Monument": 23542,
+ "▁onderwerp": 23543,
+ "Bag": 23544,
+ "tit": 23545,
+ "▁stir": 23546,
+ "▁nerv": 23547,
+ "сторія": 23548,
+ "▁sov": 23549,
+ "▁writers": 23550,
+ "▁sorts": 23551,
+ "absolute": 23552,
+ "▁difficulties": 23553,
+ "▁parlament": 23554,
+ "▁IEnumerable": 23555,
+ "▁dissol": 23556,
+ "▁CHECK": 23557,
+ "arina": 23558,
+ "inburgh": 23559,
+ "DM": 23560,
+ "▁eind": 23561,
+ "▁budget": 23562,
+ "▁certains": 23563,
+ "▁första": 23564,
+ "anja": 23565,
+ "▁годов": 23566,
+ "▁тек": 23567,
+ "▁Duch": 23568,
+ "gui": 23569,
+ "▁Teams": 23570,
+ "▁многи": 23571,
+ "Marie": 23572,
+ "Integr": 23573,
+ "ThreadPool": 23574,
+ "rust": 23575,
+ "ík": 23576,
+ "%\"": 23577,
+ "enf": 23578,
+ "spl": 23579,
+ "▁begun": 23580,
+ "lou": 23581,
+ "▁RewriteRule": 23582,
+ "tuple": 23583,
+ "aneous": 23584,
+ "▁marine": 23585,
+ "attan": 23586,
+ "ikal": 23587,
+ "▁graduated": 23588,
+ "illé": 23589,
+ "▁прове": 23590,
+ "▁Роз": 23591,
+ "',\r": 23592,
+ "▁Pfarr": 23593,
+ "▁nivel": 23594,
+ "▁працю": 23595,
+ "music": 23596,
+ "▁setTimeout": 23597,
+ "ERS": 23598,
+ "▁Erik": 23599,
+ "pit": 23600,
+ "▁Хро": 23601,
+ "▁pił": 23602,
+ "▁peri": 23603,
+ "док": 23604,
+ "uszt": 23605,
+ "▁Bear": 23606,
+ "ClassName": 23607,
+ "▁Parlament": 23608,
+ "▁aix": 23609,
+ "▁invited": 23610,
+ "▁PATH": 23611,
+ "xter": 23612,
+ "▁Race": 23613,
+ "▁hecho": 23614,
+ "▁Tower": 23615,
+ "▁utf": 23616,
+ "actly": 23617,
+ "▁буде": 23618,
+ "▁angles": 23619,
+ "няя": 23620,
+ "ouvelles": 23621,
+ "▁climate": 23622,
+ "▁singing": 23623,
+ "▁navigate": 23624,
+ ">';": 23625,
+ "adows": 23626,
+ "▁leta": 23627,
+ "▁Sitz": 23628,
+ "▁partitions": 23629,
+ "▁dock": 23630,
+ "▁ży": 23631,
+ "▁allocate": 23632,
+ "▁benefits": 23633,
+ "▁nieder": 23634,
+ "xpath": 23635,
+ "meck": 23636,
+ "älle": 23637,
+ "▁coupling": 23638,
+ "жил": 23639,
+ "ForKey": 23640,
+ "argent": 23641,
+ "clou": 23642,
+ "▁instruments": 23643,
+ "▁enthus": 23644,
+ "▁még": 23645,
+ "▁Пав": 23646,
+ "▁Rach": 23647,
+ "-----": 23648,
+ "▁APIs": 23649,
+ "▁Vier": 23650,
+ "Cmd": 23651,
+ "itore": 23652,
+ "▁Cuba": 23653,
+ "▁dátummal": 23654,
+ "▁embedding": 23655,
+ "stdio": 23656,
+ "▁Gilbert": 23657,
+ "▁geprüft": 23658,
+ "▁stating": 23659,
+ "▁triggers": 23660,
+ "+=": 23661,
+ "▁spécial": 23662,
+ "▁deliber": 23663,
+ "мин": 23664,
+ "Produ": 23665,
+ "▁Stati": 23666,
+ "▁zus": 23667,
+ "ktionen": 23668,
+ "Dispatcher": 23669,
+ "idal": 23670,
+ "▁LP": 23671,
+ "optera": 23672,
+ "▁estar": 23673,
+ "▁значи": 23674,
+ "смо": 23675,
+ "ouses": 23676,
+ "engono": 23677,
+ "▁WPF": 23678,
+ "publish": 23679,
+ "▁teor": 23680,
+ "elif": 23681,
+ "▁erg": 23682,
+ "▁separation": 23683,
+ "Pan": 23684,
+ "▁Orchestra": 23685,
+ "Peter": 23686,
+ "bounds": 23687,
+ "▁Shakespeare": 23688,
+ "▁cantante": 23689,
+ "▁demi": 23690,
+ "▁Popular": 23691,
+ "фр": 23692,
+ "arring": 23693,
+ "цин": 23694,
+ "▁Ис": 23695,
+ "von": 23696,
+ "▁substitution": 23697,
+ "▁línea": 23698,
+ "\\}$.": 23699,
+ "como": 23700,
+ "▁важ": 23701,
+ "wagen": 23702,
+ "▁rarely": 23703,
+ "▁periods": 23704,
+ "glob": 23705,
+ "▁Frid": 23706,
+ "▁Terr": 23707,
+ "▁Release": 23708,
+ "Brainz": 23709,
+ "▁граф": 23710,
+ "DIS": 23711,
+ "compatible": 23712,
+ "▁poč": 23713,
+ "LIN": 23714,
+ "▁Källor": 23715,
+ "▁Arizona": 23716,
+ "ppy": 23717,
+ "Seq": 23718,
+ "▁Ain": 23719,
+ "▁Tourn": 23720,
+ "brow": 23721,
+ "▁Kör": 23722,
+ "▁ash": 23723,
+ "ogeneous": 23724,
+ "▁dialect": 23725,
+ "▁насеља": 23726,
+ "mysqli": 23727,
+ "цов": 23728,
+ "▁flor": 23729,
+ "▁фло": 23730,
+ "IAB": 23731,
+ "▁Within": 23732,
+ "^(": 23733,
+ "▁bois": 23734,
+ "▁tank": 23735,
+ "▁affili": 23736,
+ "▁hijo": 23737,
+ "▁Kate": 23738,
+ "▁Verl": 23739,
+ "▁Miami": 23740,
+ "▁typescript": 23741,
+ "њу": 23742,
+ "▁Vern": 23743,
+ "▁висо": 23744,
+ "iemann": 23745,
+ "▁coverage": 23746,
+ "brie": 23747,
+ "▁Starting": 23748,
+ "numpy": 23749,
+ "▁Jenkins": 23750,
+ "▁két": 23751,
+ "▁grup": 23752,
+ "▁Scient": 23753,
+ "▁interrupt": 23754,
+ "▁blob": 23755,
+ "ugel": 23756,
+ "▁Orth": 23757,
+ "abama": 23758,
+ "▁Bapt": 23759,
+ "ownik": 23760,
+ "▁быть": 23761,
+ "▁Julius": 23762,
+ "▁През": 23763,
+ "▁substitute": 23764,
+ "supported": 23765,
+ "chy": 23766,
+ "egyzetek": 23767,
+ "▁Performance": 23768,
+ "lessly": 23769,
+ "Constructor": 23770,
+ "▁extending": 23771,
+ "▁Muslim": 23772,
+ "Overflow": 23773,
+ "▁Jenn": 23774,
+ "▁produz": 23775,
+ "мії": 23776,
+ "▁países": 23777,
+ "▁eux": 23778,
+ "▁fate": 23779,
+ "ologe": 23780,
+ "ук": 23781,
+ "▁wobei": 23782,
+ "▁Sachsen": 23783,
+ "▁сайт": 23784,
+ "Models": 23785,
+ "▁Fast": 23786,
+ "besondere": 23787,
+ "▁FR": 23788,
+ "▁acon": 23789,
+ "▁Denkmal": 23790,
+ "▁anch": 23791,
+ "▁público": 23792,
+ "▁Tas": 23793,
+ "▁cand": 23794,
+ "▁paździer": 23795,
+ "▁Мон": 23796,
+ "▁versus": 23797,
+ "rut": 23798,
+ "GT": 23799,
+ "▁inserting": 23800,
+ "▁canad": 23801,
+ "єм": 23802,
+ "▁Metro": 23803,
+ "▁Herzog": 23804,
+ "Ignore": 23805,
+ "▁decrease": 23806,
+ "▁пун": 23807,
+ "▁Fischer": 23808,
+ "▁Mall": 23809,
+ "▁nörd": 23810,
+ "iostream": 23811,
+ "▁Luxemb": 23812,
+ "payload": 23813,
+ "▁Zeitung": 23814,
+ "▁modifying": 23815,
+ "▁Cher": 23816,
+ "▁Luci": 23817,
+ "nx": 23818,
+ "▁loose": 23819,
+ "▁topics": 23820,
+ "▁varied": 23821,
+ "▁pg": 23822,
+ "ajes": 23823,
+ "umm": 23824,
+ "Views": 23825,
+ "▁Beau": 23826,
+ "MAP": 23827,
+ "ipeline": 23828,
+ "▁Interest": 23829,
+ "arith": 23830,
+ "▁según": 23831,
+ "▁Gemeins": 23832,
+ "▁Attribute": 23833,
+ "community": 23834,
+ "▁центр": 23835,
+ "▁kilometer": 23836,
+ "▁économ": 23837,
+ "laration": 23838,
+ "▁къ": 23839,
+ "▁carriage": 23840,
+ "▁Lane": 23841,
+ "▁необ": 23842,
+ "kur": 23843,
+ "▁AF": 23844,
+ "INTER": 23845,
+ "))$": 23846,
+ "▁beide": 23847,
+ "destination": 23848,
+ "▁fonts": 23849,
+ "appendChild": 23850,
+ "▁MAR": 23851,
+ "▁gay": 23852,
+ "mil": 23853,
+ "lesh": 23854,
+ "èt": 23855,
+ "▁Wang": 23856,
+ "▁Years": 23857,
+ "▁Symbol": 23858,
+ "Live": 23859,
+ "quency": 23860,
+ "▁Users": 23861,
+ "▁Unicode": 23862,
+ "▁Sau": 23863,
+ "▁tons": 23864,
+ "▁Ні": 23865,
+ "▁краї": 23866,
+ "AXI": 23867,
+ "▁Pick": 23868,
+ "AI": 23869,
+ "▁hath": 23870,
+ "▁ainda": 23871,
+ "▁papa": 23872,
+ "▁Censo": 23873,
+ "▁Bald": 23874,
+ "▁Насеље": 23875,
+ "▁simulations": 23876,
+ "▁jaren": 23877,
+ "▁inherited": 23878,
+ "▁той": 23879,
+ "▁feels": 23880,
+ "ression": 23881,
+ "▁október": 23882,
+ "bid": 23883,
+ "ási": 23884,
+ "▁muss": 23885,
+ "ventory": 23886,
+ "▁meist": 23887,
+ "▁bore": 23888,
+ "▁slider": 23889,
+ "дели": 23890,
+ "\\;": 23891,
+ "▁extracted": 23892,
+ "кур": 23893,
+ "Edge": 23894,
+ "▁perf": 23895,
+ "▁Brigade": 23896,
+ "▁град": 23897,
+ "ienie": 23898,
+ "▁Norden": 23899,
+ "▁cancer": 23900,
+ "\"/": 23901,
+ "Cur": 23902,
+ "▁Сере": 23903,
+ "▁liquid": 23904,
+ "structure": 23905,
+ "▁choosing": 23906,
+ "▁Perl": 23907,
+ "Side": 23908,
+ "üs": 23909,
+ "ритор": 23910,
+ "▁kost": 23911,
+ "▁packets": 23912,
+ "▁которого": 23913,
+ "▁Comun": 23914,
+ "▁fingers": 23915,
+ "ográfica": 23916,
+ ">:": 23917,
+ "▁championnat": 23918,
+ "▁blieb": 23919,
+ "▁Situ": 23920,
+ "▁suic": 23921,
+ "andis": 23922,
+ "Fre": 23923,
+ "▁Conc": 23924,
+ "▁republic": 23925,
+ "▁armed": 23926,
+ "▁hell": 23927,
+ "▁hög": 23928,
+ "ragma": 23929,
+ "▁ense": 23930,
+ "▁acres": 23931,
+ "▁Від": 23932,
+ "▁Reform": 23933,
+ "MainActivity": 23934,
+ "keeper": 23935,
+ "erb": 23936,
+ "▁monaster": 23937,
+ "subsubsection": 23938,
+ "▁Див": 23939,
+ "▁creature": 23940,
+ "▁indicating": 23941,
+ "▁urls": 23942,
+ "▁kein": 23943,
+ "образ": 23944,
+ "pick": 23945,
+ "▁Admir": 23946,
+ "▁oldest": 23947,
+ "▁muz": 23948,
+ "▁contradiction": 23949,
+ "▁probabil": 23950,
+ "illiant": 23951,
+ "▁pav": 23952,
+ "▁papel": 23953,
+ "ubs": 23954,
+ "▁жена": 23955,
+ "AML": 23956,
+ "▁recip": 23957,
+ "▁COL": 23958,
+ "added": 23959,
+ "▁clue": 23960,
+ "▁Ukraine": 23961,
+ "▁jelent": 23962,
+ "чень": 23963,
+ "▁mathematics": 23964,
+ "Accept": 23965,
+ "▁сот": 23966,
+ "▁север": 23967,
+ "▁isolated": 23968,
+ "▁поя": 23969,
+ "wür": 23970,
+ "Router": 23971,
+ "CAT": 23972,
+ "rgb": 23973,
+ "▁Lov": 23974,
+ "mutable": 23975,
+ "▁Wes": 23976,
+ "▁Italien": 23977,
+ "Drag": 23978,
+ "enium": 23979,
+ "atting": 23980,
+ "tcp": 23981,
+ "▁erfolgte": 23982,
+ "▁Beit": 23983,
+ "гато": 23984,
+ "▁Systems": 23985,
+ "▁reserve": 23986,
+ "eree": 23987,
+ "▁Пари": 23988,
+ "▁зали": 23989,
+ "▁rent": 23990,
+ "▁sunt": 23991,
+ "▁Girls": 23992,
+ "▁Ernest": 23993,
+ "▁fits": 23994,
+ "▁oppon": 23995,
+ "▁живело": 23996,
+ "▁avaient": 23997,
+ "▁Florence": 23998,
+ "▁числе": 23999,
+ "▁engines": 24000,
+ "Dynamic": 24001,
+ "▁stycznia": 24002,
+ "▁bias": 24003,
+ "▁Exchange": 24004,
+ "дий": 24005,
+ "▁historiques": 24006,
+ "▁Hä": 24007,
+ "hod": 24008,
+ "▁wł": 24009,
+ "schap": 24010,
+ "▁lac": 24011,
+ "▁Foi": 24012,
+ "▁dwell": 24013,
+ "▁Unternehmen": 24014,
+ "URN": 24015,
+ "▁kilometres": 24016,
+ "▁Однако": 24017,
+ "кли": 24018,
+ "▁Sri": 24019,
+ "Groups": 24020,
+ "mind": 24021,
+ "oslov": 24022,
+ "fern": 24023,
+ "egu": 24024,
+ "abeled": 24025,
+ "Fiddle": 24026,
+ "▁Century": 24027,
+ "/-": 24028,
+ "▁Jegyzetek": 24029,
+ "Hen": 24030,
+ "ensemble": 24031,
+ "▁Gut": 24032,
+ "_{{\\": 24033,
+ "▁ranking": 24034,
+ "+$": 24035,
+ "ала": 24036,
+ "▁#{": 24037,
+ "imientos": 24038,
+ "achim": 24039,
+ "rides": 24040,
+ "▁Klaus": 24041,
+ "▁intend": 24042,
+ "▁Kentucky": 24043,
+ "cipe": 24044,
+ "▁Dienst": 24045,
+ "▁situated": 24046,
+ "▁póź": 24047,
+ "▁scrit": 24048,
+ "clip": 24049,
+ "нет": 24050,
+ "tables": 24051,
+ "▁Nied": 24052,
+ "▁McK": 24053,
+ "▁powst": 24054,
+ "▁kunnen": 24055,
+ "▁Evans": 24056,
+ "жды": 24057,
+ "вать": 24058,
+ "uchar": 24059,
+ "▁residents": 24060,
+ "iak": 24061,
+ "▁Resol": 24062,
+ "▁veces": 24063,
+ "▁satisfying": 24064,
+ "INF": 24065,
+ "▁син": 24066,
+ "▁crossing": 24067,
+ "iben": 24068,
+ "▁широ": 24069,
+ "pto": 24070,
+ "ILL": 24071,
+ "▁роль": 24072,
+ "▁aktiv": 24073,
+ "▁обращения": 24074,
+ "Wikispecies": 24075,
+ "▁Höhe": 24076,
+ "cro": 24077,
+ "════": 24078,
+ "altra": 24079,
+ "▁FILE": 24080,
+ "▁ups": 24081,
+ "▁allocation": 24082,
+ "Michael": 24083,
+ "▁acknowled": 24084,
+ "Linux": 24085,
+ "▁metros": 24086,
+ "tte": 24087,
+ "afen": 24088,
+ "▁xcode": 24089,
+ "▁тради": 24090,
+ "species": 24091,
+ "▁injury": 24092,
+ "▁самы": 24093,
+ "▁lattice": 24094,
+ "Material": 24095,
+ "andenburg": 24096,
+ "▁huvudstaden": 24097,
+ "story": 24098,
+ "▁varying": 24099,
+ "▁követ": 24100,
+ "▁Российской": 24101,
+ "irse": 24102,
+ "▁drum": 24103,
+ "Pressed": 24104,
+ "Lar": 24105,
+ "▁Agu": 24106,
+ "▁weil": 24107,
+ "▁commence": 24108,
+ "▁Según": 24109,
+ "Gesture": 24110,
+ "Shape": 24111,
+ "▁Vors": 24112,
+ "▁succès": 24113,
+ "▁corrected": 24114,
+ "Kar": 24115,
+ "▁cruel": 24116,
+ "▁politico": 24117,
+ "▁Schriftsteller": 24118,
+ "▁risult": 24119,
+ "etu": 24120,
+ "archiv": 24121,
+ "▁género": 24122,
+ "▁Lü": 24123,
+ "▁triumph": 24124,
+ "ORS": 24125,
+ "Lu": 24126,
+ "▁personnel": 24127,
+ "▁Hills": 24128,
+ "asset": 24129,
+ "domin": 24130,
+ "Receive": 24131,
+ "▁Oak": 24132,
+ "▁Kno": 24133,
+ "▁Theory": 24134,
+ "irie": 24135,
+ "owan": 24136,
+ "▁estava": 24137,
+ "▁executes": 24138,
+ "йт": 24139,
+ "ópez": 24140,
+ "поло": 24141,
+ "ética": 24142,
+ "▁название": 24143,
+ "▁converges": 24144,
+ "▁notre": 24145,
+ "▁populated": 24146,
+ "▁movements": 24147,
+ "▁statistical": 24148,
+ "▁Zweiten": 24149,
+ "quin": 24150,
+ "▁importantes": 24151,
+ "▁klein": 24152,
+ "▁Segunda": 24153,
+ "schließend": 24154,
+ "Failure": 24155,
+ "nar": 24156,
+ "dag": 24157,
+ "▁ruolo": 24158,
+ "▁fiction": 24159,
+ "▁использу": 24160,
+ "▁crisis": 24161,
+ "▁Getting": 24162,
+ ",%": 24163,
+ "▁армии": 24164,
+ "▁campus": 24165,
+ "▁footer": 24166,
+ "▁días": 24167,
+ "бан": 24168,
+ "▁liberty": 24169,
+ "▁gh": 24170,
+ "▁chamber": 24171,
+ "▁districts": 24172,
+ "▁excited": 24173,
+ "▁canción": 24174,
+ "tero": 24175,
+ "▁Working": 24176,
+ "▁części": 24177,
+ "льный": 24178,
+ "▁forum": 24179,
+ "▁Ehe": 24180,
+ "▁ката": 24181,
+ "itations": 24182,
+ "Tools": 24183,
+ "achiv": 24184,
+ "▁cres": 24185,
+ "asto": 24186,
+ "▁rever": 24187,
+ "▁nazionale": 24188,
+ "▁doors": 24189,
+ "▁Nancy": 24190,
+ "▁islands": 24191,
+ "Imp": 24192,
+ "▁Chair": 24193,
+ "▁vorm": 24194,
+ "sein": 24195,
+ "▁доку": 24196,
+ "erset": 24197,
+ "▁tätig": 24198,
+ "▁Krit": 24199,
+ "▁пя": 24200,
+ "▁conservation": 24201,
+ "▁Partido": 24202,
+ "minipage": 24203,
+ "Validator": 24204,
+ "▁recovery": 24205,
+ "▁NASA": 24206,
+ "▁breast": 24207,
+ "ilty": 24208,
+ "analy": 24209,
+ "elines": 24210,
+ "▁Saturday": 24211,
+ "emark": 24212,
+ "cej": 24213,
+ "Zero": 24214,
+ "▁Turner": 24215,
+ "secure": 24216,
+ "Exists": 24217,
+ "▁Rick": 24218,
+ "evalu": 24219,
+ "ctrl": 24220,
+ "▁compression": 24221,
+ "▁CURL": 24222,
+ "textcolor": 24223,
+ ")\\,": 24224,
+ "longrightarrow": 24225,
+ "▁Fernseh": 24226,
+ "icha": 24227,
+ "▁loi": 24228,
+ "▁Оте": 24229,
+ "▁cave": 24230,
+ "▁dozen": 24231,
+ "▁explaining": 24232,
+ "▁innov": 24233,
+ "▁Nicholas": 24234,
+ "▁diameter": 24235,
+ "▁Marian": 24236,
+ "▁fires": 24237,
+ "▁artifact": 24238,
+ "▁Parker": 24239,
+ "▁Bund": 24240,
+ "▁verte": 24241,
+ "▁talent": 24242,
+ "▁Lucas": 24243,
+ "reverse": 24244,
+ "▁folgenden": 24245,
+ "▁Sah": 24246,
+ "jections": 24247,
+ "▁invece": 24248,
+ "▁costitu": 24249,
+ "▁ssl": 24250,
+ "}}^": 24251,
+ "▁violent": 24252,
+ "▁spos": 24253,
+ "Rout": 24254,
+ "jdk": 24255,
+ "▁заме": 24256,
+ "▁furent": 24257,
+ "andal": 24258,
+ "Hom": 24259,
+ "▁Senior": 24260,
+ "▁pounds": 24261,
+ "▁Discogs": 24262,
+ "▁зе": 24263,
+ "'}[": 24264,
+ "▁Napoleon": 24265,
+ "ordinates": 24266,
+ "àn": 24267,
+ "▁kurz": 24268,
+ "▁vere": 24269,
+ "▁reuse": 24270,
+ "▁Ген": 24271,
+ "▁Syst": 24272,
+ "▁disappeared": 24273,
+ "▁Watch": 24274,
+ "bibliothek": 24275,
+ "▁корпу": 24276,
+ "▁Cs": 24277,
+ "▁}`": 24278,
+ "▁rör": 24279,
+ "▁дела": 24280,
+ "VB": 24281,
+ "▁calculus": 24282,
+ "рода": 24283,
+ "▁judgment": 24284,
+ "atile": 24285,
+ "▁longue": 24286,
+ "▁Hus": 24287,
+ "Jac": 24288,
+ "}})": 24289,
+ "RIPT": 24290,
+ "IABot": 24291,
+ "▁após": 24292,
+ "▁aston": 24293,
+ "Webachiv": 24294,
+ "▁URLs": 24295,
+ "▁coat": 24296,
+ "▁эконо": 24297,
+ "▁lear": 24298,
+ "extensions": 24299,
+ "▁Classic": 24300,
+ "TI": 24301,
+ "▁Tage": 24302,
+ "▁lá": 24303,
+ "▁semb": 24304,
+ "▁développement": 24305,
+ "ISTS": 24306,
+ "▁solves": 24307,
+ ",\\,": 24308,
+ "▁чемпі": 24309,
+ "ordinary": 24310,
+ "▁Bav": 24311,
+ "▁muchos": 24312,
+ "Self": 24313,
+ "▁Май": 24314,
+ "▁Diet": 24315,
+ "▁necessity": 24316,
+ "від": 24317,
+ "▁mano": 24318,
+ "▁Ср": 24319,
+ "▁carre": 24320,
+ "▁Camera": 24321,
+ "▁Narod": 24322,
+ "▁Phone": 24323,
+ "▁polym": 24324,
+ "imore": 24325,
+ "isEmpty": 24326,
+ "▁Houston": 24327,
+ "▁Rece": 24328,
+ "▁presentation": 24329,
+ "ниципа": 24330,
+ "▁Db": 24331,
+ "▁confident": 24332,
+ "▁}{": 24333,
+ "▁bullet": 24334,
+ "▁{},": 24335,
+ "ANGE": 24336,
+ "▁Notre": 24337,
+ "chin": 24338,
+ "▁Dragon": 24339,
+ "erca": 24340,
+ "iali": 24341,
+ "▁asset": 24342,
+ "▁muito": 24343,
+ "▁deeply": 24344,
+ "▁restriction": 24345,
+ "▁commerce": 24346,
+ "▁Bomb": 24347,
+ "caught": 24348,
+ "qq": 24349,
+ "▁Arag": 24350,
+ "▁немец": 24351,
+ "▁Analysis": 24352,
+ "▁článku": 24353,
+ "▁baby": 24354,
+ "▁echter": 24355,
+ "▁одного": 24356,
+ "жена": 24357,
+ "▁whitespace": 24358,
+ "çu": 24359,
+ "LIST": 24360,
+ "frique": 24361,
+ "▁varias": 24362,
+ "▁Wit": 24363,
+ "▁Licencia": 24364,
+ "Exit": 24365,
+ "▁sierp": 24366,
+ "▁assemb": 24367,
+ "▁splitting": 24368,
+ "▁palace": 24369,
+ "▁blocked": 24370,
+ "▁boundaries": 24371,
+ "▁iterations": 24372,
+ "▁Rotten": 24373,
+ "▁Verkehr": 24374,
+ "▁weer": 24375,
+ "Tests": 24376,
+ "ifting": 24377,
+ "▁regul": 24378,
+ "▁persist": 24379,
+ "▁Solution": 24380,
+ "pb": 24381,
+ "▁collapse": 24382,
+ "▁arrested": 24383,
+ "▁predicate": 24384,
+ "▁Zone": 24385,
+ "▁ingen": 24386,
+ "zález": 24387,
+ "▁banks": 24388,
+ "plant": 24389,
+ "▁Nella": 24390,
+ "▁бан": 24391,
+ "▁Snow": 24392,
+ "▁Kreuz": 24393,
+ "ício": 24394,
+ "▁enters": 24395,
+ "▁expose": 24396,
+ "či": 24397,
+ "шие": 24398,
+ "Qual": 24399,
+ "▁landscape": 24400,
+ "▁подацима": 24401,
+ "mai": 24402,
+ "stag": 24403,
+ "ований": 24404,
+ "DEF": 24405,
+ "[]{": 24406,
+ "▁dernière": 24407,
+ "icut": 24408,
+ "▁Xml": 24409,
+ "▁subgroup": 24410,
+ "▁Polsce": 24411,
+ "▁Warning": 24412,
+ "▁vehicles": 24413,
+ "iot": 24414,
+ "▁dll": 24415,
+ "ront": 24416,
+ "▁Louise": 24417,
+ "▁ara": 24418,
+ "▁Scala": 24419,
+ "▁canonical": 24420,
+ "▁placing": 24421,
+ "ERY": 24422,
+ "▁Jag": 24423,
+ "▁virus": 24424,
+ "emu": 24425,
+ "▁});\r": 24426,
+ "▁мм": 24427,
+ "▁Trying": 24428,
+ "▁Lexikon": 24429,
+ "abord": 24430,
+ "▁expedition": 24431,
+ "▁demanded": 24432,
+ "Zyg": 24433,
+ "lein": 24434,
+ "▁verwendet": 24435,
+ "рина": 24436,
+ "wol": 24437,
+ "▁pivot": 24438,
+ "▁однако": 24439,
+ "▁propriet": 24440,
+ "▁awards": 24441,
+ "tout": 24442,
+ "▁assim": 24443,
+ "▁Storm": 24444,
+ "Limit": 24445,
+ "elin": 24446,
+ "wealth": 24447,
+ "uez": 24448,
+ "▁rappresent": 24449,
+ "▁resta": 24450,
+ "▁gegründet": 24451,
+ "▁journalist": 24452,
+ "isie": 24453,
+ "▁facility": 24454,
+ "illed": 24455,
+ "ulk": 24456,
+ "▁PK": 24457,
+ "Anchor": 24458,
+ "▁_)": 24459,
+ "VF": 24460,
+ "LAB": 24461,
+ "▁nå": 24462,
+ "odos": 24463,
+ "▁billion": 24464,
+ "virti": 24465,
+ "▁Jeux": 24466,
+ "юза": 24467,
+ "tomcat": 24468,
+ "▁charts": 24469,
+ "▁Bundle": 24470,
+ "▁lst": 24471,
+ "▁exer": 24472,
+ "▁females": 24473,
+ "▁obliged": 24474,
+ "▁aby": 24475,
+ "rolled": 24476,
+ "dri": 24477,
+ "▁Sche": 24478,
+ "▁vessels": 24479,
+ "IMARY": 24480,
+ "▁reasoning": 24481,
+ "▁проте": 24482,
+ "FILES": 24483,
+ "verk": 24484,
+ "osos": 24485,
+ "▁комму": 24486,
+ "дії": 24487,
+ "▁dd": 24488,
+ "▁соответ": 24489,
+ "▁IOException": 24490,
+ "ských": 24491,
+ "▁CLI": 24492,
+ "▁ње": 24493,
+ "CM": 24494,
+ "TD": 24495,
+ "▁possibilities": 24496,
+ "▁Compos": 24497,
+ "half": 24498,
+ "▁webpage": 24499,
+ "▁swing": 24500,
+ "▁zas": 24501,
+ "▁cycl": 24502,
+ "leid": 24503,
+ "istica": 24504,
+ "▁Insert": 24505,
+ "▁Sweden": 24506,
+ "▁wanting": 24507,
+ "▁ال": 24508,
+ "▁eeuw": 24509,
+ "▁Administr": 24510,
+ "▁Warren": 24511,
+ "▁bs": 24512,
+ "▁pam": 24513,
+ "anus": 24514,
+ "Dra": 24515,
+ "expl": 24516,
+ "▁Kant": 24517,
+ "▁Austin": 24518,
+ "▁csak": 24519,
+ "▁theatre": 24520,
+ "▁compatibility": 24521,
+ "матиче": 24522,
+ "setState": 24523,
+ "бю": 24524,
+ "}{|": 24525,
+ "▁Dy": 24526,
+ "▁Zwischen": 24527,
+ "Alt": 24528,
+ "CLARE": 24529,
+ "steps": 24530,
+ "▁Lage": 24531,
+ "▁Mitt": 24532,
+ "▁Dublin": 24533,
+ "▁работы": 24534,
+ "deep": 24535,
+ "▁flows": 24536,
+ "▁Palace": 24537,
+ "unix": 24538,
+ "refs": 24539,
+ "umar": 24540,
+ "aset": 24541,
+ "cov": 24542,
+ "▁ping": 24543,
+ "▁Safari": 24544,
+ "flug": 24545,
+ "creens": 24546,
+ "{#": 24547,
+ "▁реа": 24548,
+ "adors": 24549,
+ "▁amor": 24550,
+ "uce": 24551,
+ "demic": 24552,
+ "▁Netherlands": 24553,
+ "▁clusters": 24554,
+ "▁enfor": 24555,
+ "marine": 24556,
+ "▁bugs": 24557,
+ "izzata": 24558,
+ "▁scra": 24559,
+ "Les": 24560,
+ "quick": 24561,
+ "▁turno": 24562,
+ "_*": 24563,
+ "ера": 24564,
+ "Generated": 24565,
+ ">[": 24566,
+ "▁estre": 24567,
+ "orde": 24568,
+ "▁verg": 24569,
+ "роз": 24570,
+ "▁pau": 24571,
+ "includes": 24572,
+ "assa": 24573,
+ "aders": 24574,
+ "▁Герма": 24575,
+ "▁estaven": 24576,
+ "▁earliest": 24577,
+ "▁resultado": 24578,
+ "mun": 24579,
+ "▁plots": 24580,
+ "din": 24581,
+ "sorted": 24582,
+ "▁preference": 24583,
+ "rió": 24584,
+ "туре": 24585,
+ "▁Ligue": 24586,
+ "▁завер": 24587,
+ "phr": 24588,
+ "▁pocket": 24589,
+ "▁parl": 24590,
+ "▁lak": 24591,
+ "▁powie": 24592,
+ "▁altres": 24593,
+ "$};": 24594,
+ "plain": 24595,
+ "▁Cred": 24596,
+ "itza": 24597,
+ "perp": 24598,
+ "Green": 24599,
+ "▁devoted": 24600,
+ "production": 24601,
+ "worker": 24602,
+ "elsen": 24603,
+ "▁vern": 24604,
+ "▁március": 24605,
+ "▁Confeder": 24606,
+ "▁Liverpool": 24607,
+ "▁музи": 24608,
+ "▁emails": 24609,
+ "▁distances": 24610,
+ "▁segments": 24611,
+ "▁anth": 24612,
+ "▁wrest": 24613,
+ "▁hoog": 24614,
+ "▁cinema": 24615,
+ "rror": 24616,
+ "▁geboren": 24617,
+ "▁éc": 24618,
+ "Marker": 24619,
+ "▁Compet": 24620,
+ "▁листо": 24621,
+ "allowed": 24622,
+ "volume": 24623,
+ "Espagne": 24624,
+ "Ze": 24625,
+ "▁fixes": 24626,
+ "▁rond": 24627,
+ "▁arrangement": 24628,
+ "/~": 24629,
+ ".](": 24630,
+ "▁Források": 24631,
+ "▁weiteren": 24632,
+ "excel": 24633,
+ "▁змі": 24634,
+ "▁moderne": 24635,
+ "English": 24636,
+ "▁Transfermarkt": 24637,
+ "▁bearing": 24638,
+ "▁cleared": 24639,
+ "▁сам": 24640,
+ "▁divs": 24641,
+ "ći": 24642,
+ "▁этой": 24643,
+ "▁Геор": 24644,
+ "scene": 24645,
+ "▁ages": 24646,
+ "GEN": 24647,
+ "rän": 24648,
+ "▁Toul": 24649,
+ "▁Abs": 24650,
+ "ját": 24651,
+ "▁mediante": 24652,
+ "▁empres": 24653,
+ "▁Employee": 24654,
+ "▁polynomials": 24655,
+ "▁optimize": 24656,
+ "▁выступа": 24657,
+ "fare": 24658,
+ "вей": 24659,
+ "xf": 24660,
+ "quez": 24661,
+ "▁botan": 24662,
+ "▁defend": 24663,
+ "▁Quart": 24664,
+ "Mont": 24665,
+ "vb": 24666,
+ "tick": 24667,
+ "WD": 24668,
+ "mine": 24669,
+ "▁modific": 24670,
+ "notification": 24671,
+ "▁denn": 24672,
+ "▁algo": 24673,
+ "▁Spo": 24674,
+ "▁mistrzost": 24675,
+ "/:": 24676,
+ "▁apresent": 24677,
+ "▁прод": 24678,
+ "Volume": 24679,
+ "ską": 24680,
+ "protected": 24681,
+ "▁Turkish": 24682,
+ "azy": 24683,
+ "▁pouv": 24684,
+ "▁período": 24685,
+ "skog": 24686,
+ "▁entropy": 24687,
+ "zed": 24688,
+ "тори": 24689,
+ "▁lij": 24690,
+ "boards": 24691,
+ "▁стату": 24692,
+ "Bool": 24693,
+ "▁polity": 24694,
+ "@\",": 24695,
+ "▁рік": 24696,
+ "née": 24697,
+ "▁Zug": 24698,
+ "▁Uniti": 24699,
+ "émet": 24700,
+ "atience": 24701,
+ "dimen": 24702,
+ "▁Steven": 24703,
+ "Ha": 24704,
+ "ACTION": 24705,
+ "▁wand": 24706,
+ "▁Navar": 24707,
+ "▁січня": 24708,
+ "Watch": 24709,
+ "▁Stuart": 24710,
+ "▁zde": 24711,
+ "▁контро": 24712,
+ "dataset": 24713,
+ "yó": 24714,
+ "▁Bush": 24715,
+ "▁себя": 24716,
+ "▁worthy": 24717,
+ "▁Ble": 24718,
+ "▁propor": 24719,
+ "▁Village": 24720,
+ "▁ry": 24721,
+ "▁voit": 24722,
+ "▁копия": 24723,
+ "▁zp": 24724,
+ "▁cura": 24725,
+ "▁Html": 24726,
+ "▁Dieser": 24727,
+ "▁Days": 24728,
+ "onnes": 24729,
+ "▁antigu": 24730,
+ "▁Staaten": 24731,
+ "▁faint": 24732,
+ "ongs": 24733,
+ "▁öst": 24734,
+ "Redirect": 24735,
+ "ель": 24736,
+ "atorial": 24737,
+ "▁bother": 24738,
+ "EditText": 24739,
+ "▁Giul": 24740,
+ "▁заво": 24741,
+ "▁pueblo": 24742,
+ "▁Mississippi": 24743,
+ "jak": 24744,
+ "▁wings": 24745,
+ "onc": 24746,
+ "ível": 24747,
+ "iencia": 24748,
+ "entlicht": 24749,
+ "▁BTW": 24750,
+ "ornal": 24751,
+ "▁Коро": 24752,
+ "▁одним": 24753,
+ "▁salv": 24754,
+ "▁finden": 24755,
+ "geo": 24756,
+ "▁авиа": 24757,
+ "attung": 24758,
+ "viv": 24759,
+ "▁Luther": 24760,
+ "▁общи": 24761,
+ "▁Rolle": 24762,
+ "▁Abraham": 24763,
+ "▁centered": 24764,
+ "▁slash": 24765,
+ "isat": 24766,
+ "emann": 24767,
+ "Os": 24768,
+ "парта": 24769,
+ "▁Pablo": 24770,
+ "▁collaboration": 24771,
+ "paths": 24772,
+ "édition": 24773,
+ "▁viewed": 24774,
+ "▁consisted": 24775,
+ "▁recovered": 24776,
+ "▁Mexican": 24777,
+ "▁Fix": 24778,
+ "▁spell": 24779,
+ "Special": 24780,
+ "▁Ст": 24781,
+ "esseur": 24782,
+ "▁Украины": 24783,
+ "former": 24784,
+ "▁św": 24785,
+ "▁zeros": 24786,
+ "▁Straßen": 24787,
+ "▁organisation": 24788,
+ "üssen": 24789,
+ "▁Sierra": 24790,
+ "▁Season": 24791,
+ "▁volont": 24792,
+ "BeanFactory": 24793,
+ "▁помощ": 24794,
+ "▁pressing": 24795,
+ "▁equivalence": 24796,
+ "▁catt": 24797,
+ "icity": 24798,
+ "▁accomplished": 24799,
+ "▁yo": 24800,
+ "▁sic": 24801,
+ "▁imports": 24802,
+ "▁accommod": 24803,
+ "▁Porto": 24804,
+ "▁яка": 24805,
+ "▁loan": 24806,
+ "тики": 24807,
+ "▁checkout": 24808,
+ "▁assess": 24809,
+ "▁Population": 24810,
+ "urent": 24811,
+ "clojure": 24812,
+ "▁Santos": 24813,
+ "▁információ": 24814,
+ "POS": 24815,
+ "▁gare": 24816,
+ "▁kick": 24817,
+ "▁radical": 24818,
+ "▁Peace": 24819,
+ "▁streaming": 24820,
+ "camp": 24821,
+ "ząt": 24822,
+ "говор": 24823,
+ "▁Regierung": 24824,
+ "▁proceeded": 24825,
+ "fm": 24826,
+ "лены": 24827,
+ "▁earnest": 24828,
+ "▁Parad": 24829,
+ "requests": 24830,
+ "▁Raum": 24831,
+ "šč": 24832,
+ "▁policies": 24833,
+ "▁Tig": 24834,
+ "▁sitt": 24835,
+ "▁Energy": 24836,
+ "▁purely": 24837,
+ "▁Haut": 24838,
+ "▁Speed": 24839,
+ "bio": 24840,
+ "▁orange": 24841,
+ "▁biggest": 24842,
+ "▁britannique": 24843,
+ "▁Notable": 24844,
+ "vu": 24845,
+ "лении": 24846,
+ "бин": 24847,
+ "▁Nash": 24848,
+ "щение": 24849,
+ "▁ciel": 24850,
+ "adémie": 24851,
+ "▁грудня": 24852,
+ "▁joue": 24853,
+ "▁voted": 24854,
+ "rico": 24855,
+ "▁гор": 24856,
+ "▁команду": 24857,
+ "itivity": 24858,
+ "▁ще": 24859,
+ "▁definite": 24860,
+ "uropa": 24861,
+ "!\");": 24862,
+ "Defaults": 24863,
+ "▁некоторы": 24864,
+ "édération": 24865,
+ "▁silly": 24866,
+ "▁talked": 24867,
+ "reu": 24868,
+ "▁Lomb": 24869,
+ "▁statue": 24870,
+ "кта": 24871,
+ "юр": 24872,
+ "umably": 24873,
+ "▁городе": 24874,
+ "▁Runtime": 24875,
+ "▁diagn": 24876,
+ "▁retro": 24877,
+ "▁Sverige": 24878,
+ "▁inicial": 24879,
+ "ienza": 24880,
+ "▁figlio": 24881,
+ "▁zog": 24882,
+ "▁rey": 24883,
+ "▁Rund": 24884,
+ "тный": 24885,
+ "▁ceased": 24886,
+ "erno": 24887,
+ "▁esa": 24888,
+ "▁trouv": 24889,
+ "▁Gemeinden": 24890,
+ "▁comercial": 24891,
+ "skap": 24892,
+ "enario": 24893,
+ "▁juris": 24894,
+ "TB": 24895,
+ "нала": 24896,
+ "▁vij": 24897,
+ "VO": 24898,
+ "▁clin": 24899,
+ "jör": 24900,
+ "сан": 24901,
+ "owała": 24902,
+ "ribución": 24903,
+ "▁ursprüng": 24904,
+ "▁condem": 24905,
+ "▁Stage": 24906,
+ "▁mixing": 24907,
+ "▁різ": 24908,
+ "▁fans": 24909,
+ "ház": 24910,
+ "social": 24911,
+ "zan": 24912,
+ "▁свой": 24913,
+ "Cookie": 24914,
+ "▁Roland": 24915,
+ "azionale": 24916,
+ "▁Sloven": 24917,
+ "▁Fiche": 24918,
+ "▁Sé": 24919,
+ "hä": 24920,
+ "▁officials": 24921,
+ "▁înt": 24922,
+ "Interceptor": 24923,
+ "Tables": 24924,
+ "▁davon": 24925,
+ "initialize": 24926,
+ "]=\"": 24927,
+ "▁Body": 24928,
+ "▁Upper": 24929,
+ "▁Collect": 24930,
+ "▁Zürich": 24931,
+ "Horizontal": 24932,
+ "Typ": 24933,
+ "▁político": 24934,
+ "▁RewriteCond": 24935,
+ "▁hoped": 24936,
+ "▁anxious": 24937,
+ "Liter": 24938,
+ "jahr": 24939,
+ "▁assemble": 24940,
+ "▁crypt": 24941,
+ "lahoma": 24942,
+ "ASH": 24943,
+ "▁Бри": 24944,
+ "▁Cic": 24945,
+ "twitter": 24946,
+ "hyper": 24947,
+ "▁Tell": 24948,
+ "ільки": 24949,
+ "вобо": 24950,
+ "▁bazie": 24951,
+ "▁contemporary": 24952,
+ "▁Parameter": 24953,
+ "stwa": 24954,
+ "▁bekend": 24955,
+ "cock": 24956,
+ "previous": 24957,
+ "enska": 24958,
+ "▁caller": 24959,
+ "]])": 24960,
+ "▁Raz": 24961,
+ "▁Selon": 24962,
+ "▁proposal": 24963,
+ "▁bý": 24964,
+ "▁Sied": 24965,
+ "▁Arbeits": 24966,
+ "▁pride": 24967,
+ "▁slope": 24968,
+ "idé": 24969,
+ "gradient": 24970,
+ "▁Джерела": 24971,
+ "▁SH": 24972,
+ "▁разрабо": 24973,
+ "iversity": 24974,
+ "сподар": 24975,
+ "\\{\\": 24976,
+ "▁стали": 24977,
+ "▁Einzel": 24978,
+ "▁rgba": 24979,
+ "▁Anim": 24980,
+ "▁alles": 24981,
+ "бар": 24982,
+ "erte": 24983,
+ "▁réalisé": 24984,
+ "Institut": 24985,
+ "▁markup": 24986,
+ "▁vars": 24987,
+ "▁gam": 24988,
+ "▁Василь": 24989,
+ "izza": 24990,
+ "▁Cob": 24991,
+ "▁Metal": 24992,
+ "▁leak": 24993,
+ "▁Lanc": 24994,
+ "Switch": 24995,
+ "Delay": 24996,
+ "atuur": 24997,
+ "▁четы": 24998,
+ "▁англий": 24999,
+ "▁legacy": 25000,
+ "▁desarroll": 25001,
+ "▁topological": 25002,
+ "▁jeweils": 25003,
+ "▁Nederlandse": 25004,
+ "▁atmosphere": 25005,
+ "urban": 25006,
+ "▁slov": 25007,
+ "▁lawyer": 25008,
+ "pecially": 25009,
+ "▁alternate": 25010,
+ "▁paramet": 25011,
+ "▁establishment": 25012,
+ "▁woods": 25013,
+ "PD": 25014,
+ "▁наи": 25015,
+ "▁mang": 25016,
+ "▁wechselte": 25017,
+ "ську": 25018,
+ ".=": 25019,
+ "▁fifteen": 25020,
+ "SUM": 25021,
+ "▁Fro": 25022,
+ "▁LED": 25023,
+ "owano": 25024,
+ "ствие": 25025,
+ "▁Données": 25026,
+ "tol": 25027,
+ "żyn": 25028,
+ "cref": 25029,
+ "ствии": 25030,
+ "horn": 25031,
+ "▁сооб": 25032,
+ "▁оборо": 25033,
+ "▁Complete": 25034,
+ "“)": 25035,
+ "▁kindly": 25036,
+ "▁Chamber": 25037,
+ "ség": 25038,
+ "WH": 25039,
+ "▁ambient": 25040,
+ "кро": 25041,
+ "▁cheval": 25042,
+ "▁написа": 25043,
+ "flu": 25044,
+ "▁Offiz": 25045,
+ "mate": 25046,
+ "natural": 25047,
+ "separ": 25048,
+ "empre": 25049,
+ "ViewHolder": 25050,
+ "fw": 25051,
+ "▁letech": 25052,
+ "▁trailing": 25053,
+ "atri": 25054,
+ "▁Gó": 25055,
+ "▁Bonn": 25056,
+ "▁unlikely": 25057,
+ "RAM": 25058,
+ "enst": 25059,
+ "Stats": 25060,
+ "▁политиче": 25061,
+ ")--(": 25062,
+ "▁trom": 25063,
+ "!...": 25064,
+ "▁Meanwhile": 25065,
+ "стана": 25066,
+ "▁Reino": 25067,
+ "▁Arist": 25068,
+ "$}}%": 25069,
+ "▁solem": 25070,
+ "closure": 25071,
+ "ignation": 25072,
+ "łod": 25073,
+ "▁divor": 25074,
+ "▁международ": 25075,
+ "=\"": 25076,
+ "▁molt": 25077,
+ "▁skills": 25078,
+ "▁Cir": 25079,
+ "▁Después": 25080,
+ "▁lun": 25081,
+ "▁coron": 25082,
+ "▁Comics": 25083,
+ "стори": 25084,
+ "▁Items": 25085,
+ "▁Think": 25086,
+ "игра": 25087,
+ "▁grows": 25088,
+ "portal": 25089,
+ "▁nich": 25090,
+ "▁restrictions": 25091,
+ "▁Lau": 25092,
+ "шення": 25093,
+ "▁Sozial": 25094,
+ "▁кі": 25095,
+ "mana": 25096,
+ "▁lieutenant": 25097,
+ "Attr": 25098,
+ "umeric": 25099,
+ "▁drives": 25100,
+ "asis": 25101,
+ "бай": 25102,
+ "NL": 25103,
+ "Zygote": 25104,
+ "physics": 25105,
+ "▁internally": 25106,
+ "вается": 25107,
+ "Hidden": 25108,
+ "▁Дата": 25109,
+ "▁unsafe": 25110,
+ "▁Roc": 25111,
+ "▁instantiate": 25112,
+ "udni": 25113,
+ "▁Room": 25114,
+ "▁Пред": 25115,
+ "▁maja": 25116,
+ "achment": 25117,
+ "uuid": 25118,
+ "Projects": 25119,
+ "Gre": 25120,
+ "▁взя": 25121,
+ "▁Blood": 25122,
+ "icile": 25123,
+ "▁Nouvelle": 25124,
+ "Does": 25125,
+ "▁nieuwe": 25126,
+ "ále": 25127,
+ "angs": 25128,
+ "weak": 25129,
+ "▁aantal": 25130,
+ "▁Ев": 25131,
+ "▁Dresden": 25132,
+ "▁Lost": 25133,
+ "ката": 25134,
+ "▁involve": 25135,
+ "▁declaring": 25136,
+ "▁Political": 25137,
+ "érez": 25138,
+ "kop": 25139,
+ "notify": 25140,
+ "▁Curt": 25141,
+ "▁schließlich": 25142,
+ "ghan": 25143,
+ "цена": 25144,
+ "▁kwiet": 25145,
+ "ügel": 25146,
+ "▁Sob": 25147,
+ "▁substr": 25148,
+ "▁ellen": 25149,
+ "ionario": 25150,
+ "enson": 25151,
+ "WIN": 25152,
+ "спорт": 25153,
+ "emer": 25154,
+ "nome": 25155,
+ "▁smiled": 25156,
+ "▁Schmidt": 25157,
+ "▁smoke": 25158,
+ "▁Token": 25159,
+ "▁vague": 25160,
+ "▁provision": 25161,
+ "yaml": 25162,
+ "нитель": 25163,
+ "onial": 25164,
+ "époque": 25165,
+ "▁NC": 25166,
+ "▁NFL": 25167,
+ "teck": 25168,
+ "▁allo": 25169,
+ "▁précéd": 25170,
+ "central": 25171,
+ "▁majd": 25172,
+ "▁chrom": 25173,
+ "▁Zum": 25174,
+ "verso": 25175,
+ "▁verschiedenen": 25176,
+ "▁старо": 25177,
+ "▁quelle": 25178,
+ "▁rép": 25179,
+ "ROW": 25180,
+ "▁ihnen": 25181,
+ "▁sensible": 25182,
+ "|$": 25183,
+ "▁schw": 25184,
+ "▁BR": 25185,
+ "▁Options": 25186,
+ "▁tens": 25187,
+ "▁conquist": 25188,
+ "▁ließ": 25189,
+ "ovis": 25190,
+ "▁міста": 25191,
+ "▁ela": 25192,
+ "rifice": 25193,
+ "▁lok": 25194,
+ "▁Queensland": 25195,
+ "Binary": 25196,
+ "▁Rahmen": 25197,
+ "▁abol": 25198,
+ "▁část": 25199,
+ "▁Edinburgh": 25200,
+ "inde": 25201,
+ "▁calculating": 25202,
+ "▁Oregon": 25203,
+ "▁legit": 25204,
+ "▁Nachdem": 25205,
+ "athon": 25206,
+ "Private": 25207,
+ "illaume": 25208,
+ "▁observable": 25209,
+ "leans": 25210,
+ "▁remarked": 25211,
+ "▁halt": 25212,
+ "ницы": 25213,
+ "▁stamp": 25214,
+ "▁Adv": 25215,
+ "Louis": 25216,
+ "imming": 25217,
+ "gruppe": 25218,
+ "▁Policy": 25219,
+ "▁vrij": 25220,
+ "ftrag": 25221,
+ "▁offices": 25222,
+ "▁participated": 25223,
+ "▁escol": 25224,
+ "▁\"": 25225,
+ "▁nombreuses": 25226,
+ "▁divid": 25227,
+ "▁advis": 25228,
+ "лтати": 25229,
+ "▁==>": 25230,
+ "Orientation": 25231,
+ "cid": 25232,
+ "Cart": 25233,
+ "▁murm": 25234,
+ "▁assez": 25235,
+ "▁linking": 25236,
+ "building": 25237,
+ "▁reconna": 25238,
+ "▁shook": 25239,
+ "managed": 25240,
+ "landa": 25241,
+ "▁León": 25242,
+ "▁création": 25243,
+ "дой": 25244,
+ "ocity": 25245,
+ "▁wij": 25246,
+ "▁wieś": 25247,
+ "xtart": 25248,
+ "▁Move": 25249,
+ "lungen": 25250,
+ "ствует": 25251,
+ "orney": 25252,
+ "optional": 25253,
+ "macro": 25254,
+ "Condition": 25255,
+ "▁squares": 25256,
+ "▁mistaken": 25257,
+ "ánt": 25258,
+ "▁Ris": 25259,
+ "▁sentences": 25260,
+ "erea": 25261,
+ "▁mij": 25262,
+ "Und": 25263,
+ "▁nombr": 25264,
+ "zA": 25265,
+ "▁Independent": 25266,
+ "▁preview": 25267,
+ "imas": 25268,
+ "▁males": 25269,
+ "inental": 25270,
+ "Thank": 25271,
+ "▁popol": 25272,
+ "▁pover": 25273,
+ "▁grasp": 25274,
+ "▁imped": 25275,
+ "▁campionato": 25276,
+ "▁Wei": 25277,
+ "▁titled": 25278,
+ "▁Además": 25279,
+ "▁Password": 25280,
+ "▁Pam": 25281,
+ "UILD": 25282,
+ "▁липня": 25283,
+ "werb": 25284,
+ "................": 25285,
+ "▁Río": 25286,
+ "▁teeth": 25287,
+ "bp": 25288,
+ "▁SW": 25289,
+ "ulaire": 25290,
+ "▁seized": 25291,
+ "▁Stef": 25292,
+ "úl": 25293,
+ "▁viz": 25294,
+ "iony": 25295,
+ "▁junt": 25296,
+ "▁která": 25297,
+ "▁września": 25298,
+ "<>": 25299,
+ "▁surg": 25300,
+ "▁tutte": 25301,
+ "▁Hob": 25302,
+ "повід": 25303,
+ "▁wohl": 25304,
+ "▁trag": 25305,
+ "▁Crown": 25306,
+ "▁trova": 25307,
+ "стову": 25308,
+ "▁Vienna": 25309,
+ "esehen": 25310,
+ "▁metropol": 25311,
+ "▁reflected": 25312,
+ "тета": 25313,
+ "▁traduc": 25314,
+ "▁Bast": 25315,
+ "▁erschien": 25316,
+ "woord": 25317,
+ "()\"": 25318,
+ "talet": 25319,
+ "▁roads": 25320,
+ "ведения": 25321,
+ "ührung": 25322,
+ "▁cogn": 25323,
+ "▁Valle": 25324,
+ "▁landing": 25325,
+ "▁Regex": 25326,
+ "▁Iowa": 25327,
+ "dział": 25328,
+ "▁erreichte": 25329,
+ "aum": 25330,
+ "▁founder": 25331,
+ "apolis": 25332,
+ "Compiler": 25333,
+ "▁kop": 25334,
+ "▁marc": 25335,
+ "▁територ": 25336,
+ "))`": 25337,
+ "▁lei": 25338,
+ "geon": 25339,
+ "▁weapons": 25340,
+ "▁horn": 25341,
+ "▁elif": 25342,
+ "▁Capital": 25343,
+ "će": 25344,
+ "▁forall": 25345,
+ "▁эта": 25346,
+ "preview": 25347,
+ "▁DNA": 25348,
+ "▁sid": 25349,
+ "orch": 25350,
+ "▁Ras": 25351,
+ "▁arab": 25352,
+ "Best": 25353,
+ "▁счита": 25354,
+ "▁López": 25355,
+ "ança": 25356,
+ "▁funkc": 25357,
+ "▁tienen": 25358,
+ ";&": 25359,
+ "museum": 25360,
+ "▁Err": 25361,
+ "▁resort": 25362,
+ "Nov": 25363,
+ "▁kal": 25364,
+ "MW": 25365,
+ "шь": 25366,
+ "anchor": 25367,
+ "▁роман": 25368,
+ "leading": 25369,
+ "▁manten": 25370,
+ "▁Silva": 25371,
+ "dade": 25372,
+ "▁designated": 25373,
+ "▁revista": 25374,
+ "Oct": 25375,
+ "percent": 25376,
+ "▁уні": 25377,
+ "identifier": 25378,
+ "mass": 25379,
+ "@@": 25380,
+ "ulsion": 25381,
+ "germeister": 25382,
+ "▁predicted": 25383,
+ "▁сви": 25384,
+ "жной": 25385,
+ "▁Ergeb": 25386,
+ "▁cust": 25387,
+ "▁removes": 25388,
+ "charg": 25389,
+ "пример": 25390,
+ "▁forming": 25391,
+ "asma": 25392,
+ "stdout": 25393,
+ "Fun": 25394,
+ "yme": 25395,
+ "tered": 25396,
+ "ursive": 25397,
+ "ighed": 25398,
+ "▁след": 25399,
+ "verband": 25400,
+ "▁LOG": 25401,
+ "rams": 25402,
+ "éon": 25403,
+ "endra": 25404,
+ "▁Bereich": 25405,
+ "▁temporal": 25406,
+ "▁langue": 25407,
+ "▁Inn": 25408,
+ "▁moreover": 25409,
+ "▁tutorials": 25410,
+ "Middle": 25411,
+ "▁советский": 25412,
+ "▁maintenance": 25413,
+ "asures": 25414,
+ "▁válto": 25415,
+ "BASE": 25416,
+ "▁disappear": 25417,
+ "ския": 25418,
+ "▁conocido": 25419,
+ "▁Нау": 25420,
+ "▁Libert": 25421,
+ "▁Harold": 25422,
+ "▁lifetime": 25423,
+ "▁Tür": 25424,
+ "▁zawod": 25425,
+ "omic": 25426,
+ "▁Retrieved": 25427,
+ "architecture": 25428,
+ "čka": 25429,
+ "iformes": 25430,
+ "development": 25431,
+ "ordnung": 25432,
+ "Inf": 25433,
+ "leben": 25434,
+ "▁Stars": 25435,
+ "signal": 25436,
+ "▁grammar": 25437,
+ "▁corso": 25438,
+ "▁Wagner": 25439,
+ "▁geht": 25440,
+ "▁royale": 25441,
+ "warn": 25442,
+ "umbled": 25443,
+ "▁instit": 25444,
+ "▁Ши": 25445,
+ "hh": 25446,
+ "▁refuge": 25447,
+ "▁favorite": 25448,
+ "ierto": 25449,
+ "▁condado": 25450,
+ "▁Ther": 25451,
+ "▁человека": 25452,
+ "▁Food": 25453,
+ "▁seizo": 25454,
+ "▁Initialize": 25455,
+ "▁connu": 25456,
+ "▁overlap": 25457,
+ "▁Emil": 25458,
+ "▁Martí": 25459,
+ "▁жовтня": 25460,
+ "erva": 25461,
+ "▁boats": 25462,
+ "ações": 25463,
+ "▁derrot": 25464,
+ "▁malloc": 25465,
+ "▁conject": 25466,
+ "jk": 25467,
+ "▁sare": 25468,
+ "лемен": 25469,
+ "▁sums": 25470,
+ "Authorization": 25471,
+ "▁Kun": 25472,
+ "]$,": 25473,
+ "gemeinde": 25474,
+ "odot": 25475,
+ "defin": 25476,
+ "▁emission": 25477,
+ "▁Крас": 25478,
+ "▁appart": 25479,
+ "▁stopping": 25480,
+ "▁Сред": 25481,
+ "▁conjug": 25482,
+ "▁insight": 25483,
+ "▁Broadcast": 25484,
+ "▁PMID": 25485,
+ "▁advantages": 25486,
+ "enes": 25487,
+ "▁residence": 25488,
+ "ljen": 25489,
+ "isseur": 25490,
+ "▁pubblicato": 25491,
+ "▁GitHub": 25492,
+ "▁Peru": 25493,
+ "▁galaxies": 25494,
+ "▁annotations": 25495,
+ "gas": 25496,
+ "▁répond": 25497,
+ "Js": 25498,
+ "▁independently": 25499,
+ "NP": 25500,
+ "▁inqu": 25501,
+ "▁grounds": 25502,
+ "Components": 25503,
+ "▁anten": 25504,
+ "▁вз": 25505,
+ "▁hos": 25506,
+ "▁sint": 25507,
+ "▁hiding": 25508,
+ "▁województ": 25509,
+ "Messages": 25510,
+ "▁показа": 25511,
+ "===": 25512,
+ "▁Abstract": 25513,
+ "▁läng": 25514,
+ "▁Formula": 25515,
+ "dawn": 25516,
+ "▁designs": 25517,
+ "Img": 25518,
+ "▁Portuguese": 25519,
+ "▁incluy": 25520,
+ "avigator": 25521,
+ "▁Brothers": 25522,
+ "▁continent": 25523,
+ "▁evidently": 25524,
+ "race": 25525,
+ "цького": 25526,
+ "▁reck": 25527,
+ "▁серпня": 25528,
+ "▁Grey": 25529,
+ "▁appeal": 25530,
+ "▁unlike": 25531,
+ "▁powershell": 25532,
+ "▁racc": 25533,
+ "fers": 25534,
+ "▁burning": 25535,
+ "fasst": 25536,
+ "installed": 25537,
+ "▁Give": 25538,
+ "▁colonial": 25539,
+ "▁€": 25540,
+ "▁Rö": 25541,
+ "▁christ": 25542,
+ "nehm": 25543,
+ "там": 25544,
+ "▁corpo": 25545,
+ "▁convirti": 25546,
+ "yter": 25547,
+ "Sym": 25548,
+ "▁Greece": 25549,
+ "▁moth": 25550,
+ "▁Johan": 25551,
+ "▁monarch": 25552,
+ "▁Download": 25553,
+ "▁craft": 25554,
+ "už": 25555,
+ "▁Luke": 25556,
+ "▁suffix": 25557,
+ "\\/": 25558,
+ "Have": 25559,
+ "▁карь": 25560,
+ "▁comfortable": 25561,
+ "▁tips": 25562,
+ "▁Після": 25563,
+ "▁броја": 25564,
+ "▁информа": 25565,
+ "MQ": 25566,
+ "бран": 25567,
+ "▁tx": 25568,
+ "▁slaves": 25569,
+ "▁firewall": 25570,
+ "▁Forces": 25571,
+ "atif": 25572,
+ "▁Quellen": 25573,
+ "▁théâtre": 25574,
+ "льных": 25575,
+ "▁расположен": 25576,
+ "▁Details": 25577,
+ "ką": 25578,
+ "▁longitud": 25579,
+ "INST": 25580,
+ "▁naval": 25581,
+ "Fernseh": 25582,
+ "essel": 25583,
+ "Grad": 25584,
+ "▁belang": 25585,
+ "▁aggi": 25586,
+ "ZygoteInit": 25587,
+ "łów": 25588,
+ "▁Sug": 25589,
+ "sil": 25590,
+ "▁exterior": 25591,
+ "щі": 25592,
+ "ORD": 25593,
+ "enser": 25594,
+ "▁rapide": 25595,
+ "▁темпера": 25596,
+ "incie": 25597,
+ "Si": 25598,
+ "avam": 25599,
+ "arded": 25600,
+ "▁Added": 25601,
+ "Endpoint": 25602,
+ "hardt": 25603,
+ "стран": 25604,
+ "▁estilo": 25605,
+ "▁Haz": 25606,
+ "▁musste": 25607,
+ "uo": 25608,
+ "iii": 25609,
+ "▁ří": 25610,
+ "anzen": 25611,
+ "жений": 25612,
+ "aha": 25613,
+ "ARNING": 25614,
+ "▁renov": 25615,
+ "▁divine": 25616,
+ "▁convinced": 25617,
+ "▁humans": 25618,
+ "▁departure": 25619,
+ "▁Mediter": 25620,
+ "qa": 25621,
+ "▁possessed": 25622,
+ "▁церкви": 25623,
+ "giv": 25624,
+ "▁свої": 25625,
+ "▁Ortste": 25626,
+ "Rich": 25627,
+ "puis": 25628,
+ "increment": 25629,
+ "▁Hannover": 25630,
+ "▁ucz": 25631,
+ "Done": 25632,
+ "▁alguns": 25633,
+ "FIX": 25634,
+ "▁Heritage": 25635,
+ "removeClass": 25636,
+ "фер": 25637,
+ "▁abc": 25638,
+ "Dr": 25639,
+ "▁семей": 25640,
+ "{:": 25641,
+ "▁seule": 25642,
+ "zeichnungen": 25643,
+ "addy": 25644,
+ "▁París": 25645,
+ "üsseld": 25646,
+ "▁reception": 25647,
+ "folio": 25648,
+ "tiny": 25649,
+ "▁recensement": 25650,
+ "▁Nur": 25651,
+ "▁kier": 25652,
+ "▁gmina": 25653,
+ "staat": 25654,
+ "ándose": 25655,
+ "ческая": 25656,
+ "▁speaker": 25657,
+ "▁exponential": 25658,
+ "▁Dieu": 25659,
+ "▁приз": 25660,
+ "▁Rafael": 25661,
+ "▁ggplot": 25662,
+ "▁Template": 25663,
+ "oure": 25664,
+ "▁Inner": 25665,
+ "ogne": 25666,
+ "igare": 25667,
+ "▁Arte": 25668,
+ "▁Cov": 25669,
+ "▁aufgrund": 25670,
+ "▁Бы": 25671,
+ "▁ceremony": 25672,
+ "▁Spart": 25673,
+ "jective": 25674,
+ "yi": 25675,
+ "▁inizi": 25676,
+ "▁latin": 25677,
+ "▁Nevertheless": 25678,
+ "▁Done": 25679,
+ "тря": 25680,
+ "▁Arr": 25681,
+ "season": 25682,
+ "▁складу": 25683,
+ "▁podczas": 25684,
+ "▁Beautiful": 25685,
+ "▁Weltkrieg": 25686,
+ "▁зо": 25687,
+ "▁overcome": 25688,
+ "▁Praha": 25689,
+ "▁району": 25690,
+ "▁subscription": 25691,
+ "igent": 25692,
+ "▁пока": 25693,
+ "latex": 25694,
+ "▁beach": 25695,
+ "▁роках": 25696,
+ "geg": 25697,
+ "▁probl": 25698,
+ "arguments": 25699,
+ "▁organizations": 25700,
+ "▁Nan": 25701,
+ "▁stones": 25702,
+ "▁Hunter": 25703,
+ "▁regularly": 25704,
+ "шого": 25705,
+ "▁flexible": 25706,
+ "opts": 25707,
+ "ář": 25708,
+ "witz": 25709,
+ "▁')": 25710,
+ "PASS": 25711,
+ "▁kraj": 25712,
+ "▁fake": 25713,
+ "heits": 25714,
+ "osph": 25715,
+ "parseInt": 25716,
+ "FALSE": 25717,
+ "▁profess": 25718,
+ "people": 25719,
+ "▁precip": 25720,
+ "dirname": 25721,
+ "▁perpet": 25722,
+ "▁Updated": 25723,
+ "rayed": 25724,
+ "▁provoc": 25725,
+ "▁травня": 25726,
+ "▁categorie": 25727,
+ "▁тео": 25728,
+ "сну": 25729,
+ "otr": 25730,
+ "▁Верхов": 25731,
+ "▁compét": 25732,
+ "Cost": 25733,
+ "▁wider": 25734,
+ "▁Obviously": 25735,
+ "писан": 25736,
+ "▁настоя": 25737,
+ "▁seeking": 25738,
+ "()),": 25739,
+ "▁équipe": 25740,
+ "▁commits": 25741,
+ "▁Svens": 25742,
+ "ябре": 25743,
+ "atern": 25744,
+ "▁heter": 25745,
+ "▁Bootstrap": 25746,
+ "éné": 25747,
+ "▁derivatives": 25748,
+ "▁Detroit": 25749,
+ "▁provincial": 25750,
+ "onomie": 25751,
+ "EB": 25752,
+ "▁cuer": 25753,
+ "▁относи": 25754,
+ "▁ней": 25755,
+ ")».": 25756,
+ "▁Ciudad": 25757,
+ "IAL": 25758,
+ "zyst": 25759,
+ ")\")": 25760,
+ "▁Alc": 25761,
+ "blogs": 25762,
+ "▁parmi": 25763,
+ "▁Albums": 25764,
+ "▁Boliv": 25765,
+ "▁clés": 25766,
+ "Products": 25767,
+ "uerdo": 25768,
+ "▁gelang": 25769,
+ "znik": 25770,
+ "hagen": 25771,
+ "anonymous": 25772,
+ "▁svg": 25773,
+ "▁Conseil": 25774,
+ "▁Ari": 25775,
+ "coli": 25776,
+ "▁czy": 25777,
+ "▁CV": 25778,
+ "▁ford": 25779,
+ "▁Außer": 25780,
+ "▁CI": 25781,
+ "▁tempt": 25782,
+ "▁Organisation": 25783,
+ "áš": 25784,
+ "▁cycles": 25785,
+ "▁geslacht": 25786,
+ "▁людей": 25787,
+ "ými": 25788,
+ "▁Spieler": 25789,
+ "efe": 25790,
+ "▁Marvel": 25791,
+ "▁portal": 25792,
+ "▁Серг": 25793,
+ "▁grado": 25794,
+ "▁handlers": 25795,
+ "▁Interface": 25796,
+ "AME": 25797,
+ "▁seriously": 25798,
+ "▁Binding": 25799,
+ "▁Rang": 25800,
+ "▁nada": 25801,
+ "oce": 25802,
+ "▁integra": 25803,
+ "ocracy": 25804,
+ "▁альбо": 25805,
+ "▁stability": 25806,
+ "Uns": 25807,
+ "▁veter": 25808,
+ "------+": 25809,
+ "▁serait": 25810,
+ "▁omitted": 25811,
+ "▁uncertainty": 25812,
+ "onian": 25813,
+ "▁resto": 25814,
+ "▁желез": 25815,
+ "▁одной": 25816,
+ "▁Bevölkerung": 25817,
+ "▁Kraft": 25818,
+ "стр": 25819,
+ "▁Moscow": 25820,
+ "lane": 25821,
+ "arab": 25822,
+ "▁spole": 25823,
+ "▁своего": 25824,
+ "?:": 25825,
+ "START": 25826,
+ "▁интер": 25827,
+ "▁sympt": 25828,
+ "▁Lorenzo": 25829,
+ "▁ejec": 25830,
+ "▁prosper": 25831,
+ "DAT": 25832,
+ "лимпий": 25833,
+ "▁shapes": 25834,
+ "valueOf": 25835,
+ "▁associate": 25836,
+ "▁Medien": 25837,
+ "ENV": 25838,
+ "▁сре": 25839,
+ "▁државе": 25840,
+ "▁theories": 25841,
+ "heb": 25842,
+ "▁Wayne": 25843,
+ "▁StringBuilder": 25844,
+ "iwers": 25845,
+ "▁Maps": 25846,
+ "Phys": 25847,
+ "\\}\\": 25848,
+ "▁Parte": 25849,
+ "▁Hudson": 25850,
+ "лон": 25851,
+ "Lng": 25852,
+ "▁ры": 25853,
+ "стей": 25854,
+ "lau": 25855,
+ "ancer": 25856,
+ "▁Coppa": 25857,
+ "▁війсь": 25858,
+ "▁ucc": 25859,
+ "▁Pattern": 25860,
+ "▁garbage": 25861,
+ "▁González": 25862,
+ "▁Encyclop": 25863,
+ "etten": 25864,
+ "External": 25865,
+ "REF": 25866,
+ ">;": 25867,
+ "lijke": 25868,
+ "▁intersect": 25869,
+ "▁Unless": 25870,
+ "▁deeper": 25871,
+ "▁жі": 25872,
+ "dent": 25873,
+ "lef": 25874,
+ "▁chanson": 25875,
+ "▁diffus": 25876,
+ "▁primi": 25877,
+ "▁Wieder": 25878,
+ "▁aws": 25879,
+ "owana": 25880,
+ "▁sociale": 25881,
+ "ikk": 25882,
+ "льной": 25883,
+ "▁divisions": 25884,
+ "лосо": 25885,
+ "▁Claud": 25886,
+ "▁Ya": 25887,
+ "▁voce": 25888,
+ "▁Branch": 25889,
+ "▁fitted": 25890,
+ "orr": 25891,
+ "ôtel": 25892,
+ "stroke": 25893,
+ "listener": 25894,
+ "iman": 25895,
+ "восто": 25896,
+ "▁Shah": 25897,
+ "Introduction": 25898,
+ "▁newline": 25899,
+ "▁tile": 25900,
+ "']))": 25901,
+ "▁travaux": 25902,
+ "CONFIG": 25903,
+ "▁quadratic": 25904,
+ "onneur": 25905,
+ "▁Giorg": 25906,
+ "▁identific": 25907,
+ "éricaine": 25908,
+ "▁UIView": 25909,
+ "▁Liberal": 25910,
+ "▁Koch": 25911,
+ "▁Berliner": 25912,
+ "▁notifications": 25913,
+ "▁Susan": 25914,
+ "▁cadre": 25915,
+ "▁Kloster": 25916,
+ "▁examine": 25917,
+ "▁един": 25918,
+ "▁UNION": 25919,
+ "▁alten": 25920,
+ "▁finit": 25921,
+ "▁pedig": 25922,
+ "cyk": 25923,
+ "▁mouvement": 25924,
+ "IOS": 25925,
+ "▁британ": 25926,
+ "▁bout": 25927,
+ "▁автор": 25928,
+ "ництво": 25929,
+ "ето": 25930,
+ "lera": 25931,
+ "cls": 25932,
+ "▁Ley": 25933,
+ "amy": 25934,
+ "agens": 25935,
+ "ashed": 25936,
+ "▁okrę": 25937,
+ "гро": 25938,
+ "ellett": 25939,
+ "▁Fellow": 25940,
+ "▁manifold": 25941,
+ "$),": 25942,
+ "lder": 25943,
+ "▁voz": 25944,
+ "▁begg": 25945,
+ "▁baron": 25946,
+ "▁fid": 25947,
+ "▁firing": 25948,
+ "ilda": 25949,
+ "dek": 25950,
+ "AU": 25951,
+ "itare": 25952,
+ "▁Ara": 25953,
+ "▁Exit": 25954,
+ "▁cinemat": 25955,
+ "▁intros": 25956,
+ "▁contacts": 25957,
+ "пени": 25958,
+ "▁möglich": 25959,
+ "▁Singapore": 25960,
+ "ström": 25961,
+ "▁Hern": 25962,
+ "▁sixth": 25963,
+ "▁publications": 25964,
+ "vie": 25965,
+ "▁Hat": 25966,
+ "▁accepting": 25967,
+ "ác": 25968,
+ "stwo": 25969,
+ "▁quietly": 25970,
+ "Photo": 25971,
+ "▁basket": 25972,
+ "▁eigenvalues": 25973,
+ "▁médec": 25974,
+ "▁Olimp": 25975,
+ "▁церков": 25976,
+ "alin": 25977,
+ "consum": 25978,
+ "▁lassen": 25979,
+ "▁анти": 25980,
+ "▁Seq": 25981,
+ "\";\r": 25982,
+ "rare": 25983,
+ "▁$|\\": 25984,
+ "▁nick": 25985,
+ "dflare": 25986,
+ "Vec": 25987,
+ "bindung": 25988,
+ "▁bg": 25989,
+ "changes": 25990,
+ "Days": 25991,
+ "▁Mouse": 25992,
+ "▁waited": 25993,
+ "▁Tomatoes": 25994,
+ "▁fas": 25995,
+ "verte": 25996,
+ "▁succession": 25997,
+ "сор": 25998,
+ "▁sols": 25999,
+ "▁Render": 26000,
+ "▁leadership": 26001,
+ "▁significance": 26002,
+ "▁gauche": 26003,
+ "cano": 26004,
+ "▁Pie": 26005,
+ "ensoort": 26006,
+ "▁cambio": 26007,
+ "▁уз": 26008,
+ "▁endeav": 26009,
+ "Completed": 26010,
+ "▁Архивная": 26011,
+ "jd": 26012,
+ "órico": 26013,
+ "▁churches": 26014,
+ "▁animate": 26015,
+ "SG": 26016,
+ "compute": 26017,
+ "▁uniformly": 26018,
+ "INIT": 26019,
+ "lles": 26020,
+ "HttpRequest": 26021,
+ "Ко": 26022,
+ "Diff": 26023,
+ "▁sah": 26024,
+ "airo": 26025,
+ "maybe": 26026,
+ "UTE": 26027,
+ "▁Dow": 26028,
+ "human": 26029,
+ "▁aurait": 26030,
+ "dark": 26031,
+ "▁repair": 26032,
+ "▁ner": 26033,
+ "▁Dabei": 26034,
+ "▁Botan": 26035,
+ "Original": 26036,
+ "ază": 26037,
+ "▁NAT": 26038,
+ "imper": 26039,
+ "▁Youth": 26040,
+ "thes": 26041,
+ "▁округа": 26042,
+ "▁Flo": 26043,
+ "▁breakfast": 26044,
+ "urls": 26045,
+ "▁übernahm": 26046,
+ "ários": 26047,
+ "▁Orange": 26048,
+ "▁Affairs": 26049,
+ "ske": 26050,
+ "▁notify": 26051,
+ "imoine": 26052,
+ "▁Arena": 26053,
+ "▁liberal": 26054,
+ "▁obec": 26055,
+ "ifa": 26056,
+ "guez": 26057,
+ "iono": 26058,
+ "ператор": 26059,
+ "▁retained": 26060,
+ "failed": 26061,
+ "bine": 26062,
+ "тных": 26063,
+ "▁CGRect": 26064,
+ "camera": 26065,
+ "idenote": 26066,
+ "KB": 26067,
+ "▁lights": 26068,
+ "▁Pictures": 26069,
+ "▁Squadron": 26070,
+ "▁Volk": 26071,
+ "▁burg": 26072,
+ ",]": 26073,
+ "Gi": 26074,
+ "êque": 26075,
+ "makeText": 26076,
+ "▁everybody": 26077,
+ "▁Hyper": 26078,
+ "▁Deux": 26079,
+ "▁glory": 26080,
+ "presentation": 26081,
+ "onica": 26082,
+ "▁frère": 26083,
+ "aget": 26084,
+ "▁hints": 26085,
+ "▁tunnel": 26086,
+ "▁Ej": 26087,
+ "ális": 26088,
+ "▁Viv": 26089,
+ "ственных": 26090,
+ "▁caps": 26091,
+ "PART": 26092,
+ "oci": 26093,
+ "▁prices": 26094,
+ "currency": 26095,
+ "▁achter": 26096,
+ "romagnet": 26097,
+ "gender": 26098,
+ "▁suis": 26099,
+ "versions": 26100,
+ "▁Training": 26101,
+ "inside": 26102,
+ "ege": 26103,
+ "▁totale": 26104,
+ "▁Daar": 26105,
+ "▁grudnia": 26106,
+ "▁Ier": 26107,
+ "▁occasions": 26108,
+ "▁kde": 26109,
+ "▁tensorflow": 26110,
+ "▁ór": 26111,
+ "Methods": 26112,
+ "▁looping": 26113,
+ "▁directeur": 26114,
+ "kę": 26115,
+ "▁isomorphism": 26116,
+ "▁João": 26117,
+ "▁aligned": 26118,
+ "онов": 26119,
+ "urger": 26120,
+ "▁nova": 26121,
+ "morrow": 26122,
+ "altern": 26123,
+ "HD": 26124,
+ "▁marqu": 26125,
+ "ativas": 26126,
+ "ggreg": 26127,
+ "▁ancien": 26128,
+ "nit": 26129,
+ "▁secured": 26130,
+ "mier": 26131,
+ "▁Ole": 26132,
+ "▁инте": 26133,
+ "▁minus": 26134,
+ "▁clearer": 26135,
+ "▁nello": 26136,
+ "▁információk": 26137,
+ "▁propre": 26138,
+ "{.": 26139,
+ "ilog": 26140,
+ "▁Quick": 26141,
+ "▁accus": 26142,
+ "employee": 26143,
+ "▁зу": 26144,
+ "цький": 26145,
+ "фіцій": 26146,
+ "▁публи": 26147,
+ "▁bent": 26148,
+ "▁позво": 26149,
+ "▁Пор": 26150,
+ "ází": 26151,
+ "ánico": 26152,
+ "emptyset": 26153,
+ "▁surtout": 26154,
+ "reno": 26155,
+ "unya": 26156,
+ "▁уез": 26157,
+ "▁Millionen": 26158,
+ "▁listopada": 26159,
+ "▁Maine": 26160,
+ "▁grupos": 26161,
+ "▁Storage": 26162,
+ "▁apple": 26163,
+ "▁Lö": 26164,
+ "oused": 26165,
+ "дро": 26166,
+ "sci": 26167,
+ "▁hibernate": 26168,
+ "dog": 26169,
+ "▁восто": 26170,
+ "▁intensity": 26171,
+ "legend": 26172,
+ "▁Wille": 26173,
+ "▁szerint": 26174,
+ "gesellschaft": 26175,
+ "▁Living": 26176,
+ "allo": 26177,
+ "▁Split": 26178,
+ "dru": 26179,
+ "need": 26180,
+ "▁Джон": 26181,
+ "▁Swiss": 26182,
+ "▁spraw": 26183,
+ "▁beho": 26184,
+ "▁fotograf": 26185,
+ "▁rencontre": 26186,
+ "▁kis": 26187,
+ "▁signing": 26188,
+ "akult": 26189,
+ "▁indexing": 26190,
+ "apor": 26191,
+ "▁conception": 26192,
+ "aggreg": 26193,
+ "▁Савез": 26194,
+ "▁affair": 26195,
+ "ění": 26196,
+ "August": 26197,
+ "▁секре": 26198,
+ "▁mieszkań": 26199,
+ "UIImage": 26200,
+ "▁bishop": 26201,
+ "▁servants": 26202,
+ "▁trail": 26203,
+ "digit": 26204,
+ "▁joins": 26205,
+ "▁Near": 26206,
+ "öffentlich": 26207,
+ ">{": 26208,
+ "▁skład": 26209,
+ "geführt": 26210,
+ "▁Holz": 26211,
+ "▁Militär": 26212,
+ "achi": 26213,
+ "Upper": 26214,
+ "pine": 26215,
+ "utzt": 26216,
+ "▁nuova": 26217,
+ "ibration": 26218,
+ "▁Bien": 26219,
+ "▁первый": 26220,
+ "▁Creating": 26221,
+ "Once": 26222,
+ "▁einmal": 26223,
+ "▁geometric": 26224,
+ "stvo": 26225,
+ "▁kW": 26226,
+ "▁decomposition": 26227,
+ "▁comedy": 26228,
+ "▁activation": 26229,
+ "▁angry": 26230,
+ "illeurs": 26231,
+ "▁instantly": 26232,
+ "▁suggesting": 26233,
+ "▁Clay": 26234,
+ "cot": 26235,
+ "▁Gén": 26236,
+ "($(": 26237,
+ "unwrap": 26238,
+ "▁lifted": 26239,
+ "▁Kit": 26240,
+ "▁linea": 26241,
+ "ок": 26242,
+ "hart": 26243,
+ "->_": 26244,
+ "▁nuit": 26245,
+ "▁Issue": 26246,
+ "лии": 26247,
+ "▁röm": 26248,
+ "Tasks": 26249,
+ "▁Sr": 26250,
+ "▁seis": 26251,
+ "asia": 26252,
+ "}}$.": 26253,
+ ":{": 26254,
+ "controls": 26255,
+ "▁Stim": 26256,
+ "▁Recht": 26257,
+ "ociación": 26258,
+ "▁Natal": 26259,
+ "▁Philippines": 26260,
+ "ulen": 26261,
+ "Fixed": 26262,
+ "▁switched": 26263,
+ "Zip": 26264,
+ "ospel": 26265,
+ "▁начале": 26266,
+ "▁Blan": 26267,
+ "urst": 26268,
+ "▁autour": 26269,
+ "Ca": 26270,
+ "▁latitude": 26271,
+ "▁Frei": 26272,
+ "▁Musée": 26273,
+ "▁Kurz": 26274,
+ "▁região": 26275,
+ "swap": 26276,
+ "▁hate": 26277,
+ "▁modifications": 26278,
+ "▁Ком": 26279,
+ "▁Antoine": 26280,
+ "uga": 26281,
+ "RECT": 26282,
+ "éter": 26283,
+ "GROUP": 26284,
+ "▁sacrific": 26285,
+ "▁Whe": 26286,
+ "▁Stevens": 26287,
+ "ologische": 26288,
+ "Summary": 26289,
+ "obs": 26290,
+ "hnen": 26291,
+ "<%=": 26292,
+ "dienst": 26293,
+ "remark": 26294,
+ "▁veröffentlicht": 26295,
+ "ел": 26296,
+ "▁Mock": 26297,
+ "▁Льв": 26298,
+ "▁três": 26299,
+ "gb": 26300,
+ "▁celebrated": 26301,
+ "▁Eb": 26302,
+ "▁costa": 26303,
+ "▁Geographic": 26304,
+ "▁attachment": 26305,
+ "mannschaft": 26306,
+ "▁dependence": 26307,
+ "��": 26308,
+ "▁attitude": 26309,
+ "etal": 26310,
+ "vic": 26311,
+ "baut": 26312,
+ "▁дов": 26313,
+ "▁interven": 26314,
+ "▁Gü": 26315,
+ "ónica": 26316,
+ "▁Pon": 26317,
+ "▁disponible": 26318,
+ "▁Feb": 26319,
+ "▁worship": 26320,
+ "▁Specifically": 26321,
+ "Hy": 26322,
+ "iju": 26323,
+ "▁cb": 26324,
+ "▁spac": 26325,
+ "leveland": 26326,
+ "▁localidad": 26327,
+ "▁preceding": 26328,
+ "▁Hessen": 26329,
+ "xp": 26330,
+ "▁Wein": 26331,
+ "▁Româ": 26332,
+ "▁giorno": 26333,
+ "▁квітня": 26334,
+ "llaços": 26335,
+ "▁Academia": 26336,
+ "▁kül": 26337,
+ "▁Års": 26338,
+ "▁нај": 26339,
+ "uclide": 26340,
+ "Internet": 26341,
+ "orton": 26342,
+ "▁corn": 26343,
+ "ями": 26344,
+ "▁\"*": 26345,
+ "▁Felix": 26346,
+ "apat": 26347,
+ "▁свои": 26348,
+ "MIT": 26349,
+ "made": 26350,
+ "▁locomot": 26351,
+ "хода": 26352,
+ "FP": 26353,
+ "▁pm": 26354,
+ ".*;": 26355,
+ "▁Hamm": 26356,
+ "`}": 26357,
+ "LayoutInflater": 26358,
+ "==\"": 26359,
+ "▁Eur": 26360,
+ "▁dogs": 26361,
+ "жении": 26362,
+ "▁azon": 26363,
+ "▁emulator": 26364,
+ "▁ricon": 26365,
+ "beeld": 26366,
+ "▁ну": 26367,
+ "▁approximate": 26368,
+ "LM": 26369,
+ "▁Bond": 26370,
+ "▁enh": 26371,
+ "ędz": 26372,
+ "▁solit": 26373,
+ "RelativeLayout": 26374,
+ "eteor": 26375,
+ "amentos": 26376,
+ "▁indirect": 26377,
+ "iből": 26378,
+ "▁gros": 26379,
+ "▁Originals": 26380,
+ "commands": 26381,
+ "Export": 26382,
+ "▁Avec": 26383,
+ "▁solemn": 26384,
+ "▁correction": 26385,
+ "▁проводи": 26386,
+ "▁Mosk": 26387,
+ "▁подо": 26388,
+ "▁gebied": 26389,
+ "▁następ": 26390,
+ "▁Driver": 26391,
+ "▁Ook": 26392,
+ "▁Vec": 26393,
+ "▁lungo": 26394,
+ "ficos": 26395,
+ "▁svol": 26396,
+ "▁kid": 26397,
+ "nja": 26398,
+ "▁Hr": 26399,
+ "▁поддер": 26400,
+ "▁visibility": 26401,
+ "▁Méd": 26402,
+ "▁cpu": 26403,
+ "discussion": 26404,
+ "Asset": 26405,
+ "▁defense": 26406,
+ "▁Anyone": 26407,
+ "▁Justin": 26408,
+ "iszt": 26409,
+ "▁Collins": 26410,
+ "▁Valent": 26411,
+ "▁Pale": 26412,
+ "▁fuel": 26413,
+ "▁nose": 26414,
+ "ríguez": 26415,
+ "▁Schles": 26416,
+ "▁Malays": 26417,
+ "▁commut": 26418,
+ "dro": 26419,
+ "uing": 26420,
+ "▁Rico": 26421,
+ "▁Emma": 26422,
+ "orp": 26423,
+ "▁Kirk": 26424,
+ "▁Quando": 26425,
+ "▁Neue": 26426,
+ "▁demande": 26427,
+ "▁Cover": 26428,
+ "▁rescue": 26429,
+ "▁gewählt": 26430,
+ "▁Calendar": 26431,
+ "▁Madonna": 26432,
+ "WP": 26433,
+ "oshi": 26434,
+ "▁Maven": 26435,
+ "▁belle": 26436,
+ "▁wx": 26437,
+ "▁sugar": 26438,
+ "▁Betrieb": 26439,
+ "▁equilibrium": 26440,
+ "EAR": 26441,
+ "▁texts": 26442,
+ "слов": 26443,
+ "▁czerwca": 26444,
+ "▁Düsseld": 26445,
+ "▁ELSE": 26446,
+ "▁amery": 26447,
+ "▁ani": 26448,
+ "▁obey": 26449,
+ "▁Nell": 26450,
+ "▁inne": 26451,
+ "▁тро": 26452,
+ "FD": 26453,
+ "cco": 26454,
+ "▁Zob": 26455,
+ "alette": 26456,
+ "▁május": 26457,
+ "ected": 26458,
+ "▁Turkey": 26459,
+ "▁Whether": 26460,
+ "qi": 26461,
+ "▁што": 26462,
+ "▁headquarters": 26463,
+ "endi": 26464,
+ "arus": 26465,
+ "opus": 26466,
+ "▁золо": 26467,
+ "▁destru": 26468,
+ "▁Lok": 26469,
+ "▁satisfaction": 26470,
+ "()\r": 26471,
+ "▁Тер": 26472,
+ "Jose": 26473,
+ "▁conquer": 26474,
+ "▁Effect": 26475,
+ "LayoutParams": 26476,
+ "iez": 26477,
+ "▁externs": 26478,
+ "▁gegenüber": 26479,
+ "▁ESP": 26480,
+ "olta": 26481,
+ "processor": 26482,
+ "▁Kult": 26483,
+ "▁Atlanta": 26484,
+ "▁tier": 26485,
+ "Operator": 26486,
+ "▁диа": 26487,
+ "▁пись": 26488,
+ "▁groß": 26489,
+ "▁hearts": 26490,
+ "▁millimeter": 26491,
+ "although": 26492,
+ "alles": 26493,
+ "▁Magic": 26494,
+ "training": 26495,
+ "oline": 26496,
+ "▁органі": 26497,
+ ">\\<^": 26498,
+ "ціаль": 26499,
+ "exports": 26500,
+ "Workbook": 26501,
+ "▁вересня": 26502,
+ "▁teles": 26503,
+ "▁economy": 26504,
+ "▁trap": 26505,
+ "▁refuse": 26506,
+ "▁stranger": 26507,
+ "▁instinct": 26508,
+ "пода": 26509,
+ "olan": 26510,
+ "▁ning": 26511,
+ "inflate": 26512,
+ "itatea": 26513,
+ "acks": 26514,
+ "▁Joy": 26515,
+ "FLAG": 26516,
+ "ailand": 26517,
+ "▁sorti": 26518,
+ "▁впер": 26519,
+ "▁pén": 26520,
+ "Nothing": 26521,
+ "▁száz": 26522,
+ "▁Áng": 26523,
+ "▁AUT": 26524,
+ "Actions": 26525,
+ "Every": 26526,
+ "▁червня": 26527,
+ "▁автомо": 26528,
+ "▁routine": 26529,
+ "▁estruct": 26530,
+ "▁Gang": 26531,
+ "▁holes": 26532,
+ "thesis": 26533,
+ "▁concl": 26534,
+ "▁pé": 26535,
+ "riers": 26536,
+ "ровой": 26537,
+ "adic": 26538,
+ "Speed": 26539,
+ "▁commanded": 26540,
+ "▁Nazionale": 26541,
+ "Managed": 26542,
+ "▁DECLARE": 26543,
+ "▁sedan": 26544,
+ "Strings": 26545,
+ "▁sacred": 26546,
+ "tersuch": 26547,
+ "▁abitanti": 26548,
+ "brit": 26549,
+ "▁NCAA": 26550,
+ "▁СП": 26551,
+ "▁aged": 26552,
+ "▁Chiesa": 26553,
+ "▁revision": 26554,
+ "opro": 26555,
+ "▁overwrite": 26556,
+ "embros": 26557,
+ "▁sortie": 26558,
+ "▁otten": 26559,
+ "xiv": 26560,
+ "▁deli": 26561,
+ "▁Asp": 26562,
+ "▁balls": 26563,
+ "kaf": 26564,
+ "▁brave": 26565,
+ "▁всего": 26566,
+ "egn": 26567,
+ "jpeg": 26568,
+ "▁Osten": 26569,
+ "Constants": 26570,
+ "▁Infantry": 26571,
+ "▁Nev": 26572,
+ "▁яких": 26573,
+ "▁муниципа": 26574,
+ "cija": 26575,
+ "▁poem": 26576,
+ "▁negro": 26577,
+ "хар": 26578,
+ "▁Ask": 26579,
+ "▁avo": 26580,
+ "▁Meyer": 26581,
+ "▁Westen": 26582,
+ "▁oko": 26583,
+ "agin": 26584,
+ "▁Süden": 26585,
+ "entries": 26586,
+ "▁Republik": 26587,
+ "CollectionView": 26588,
+ "-------": 26589,
+ "▁firefox": 26590,
+ "▁alcune": 26591,
+ "▁фото": 26592,
+ "▁отрима": 26593,
+ "~~~~~~~~": 26594,
+ "▁Раз": 26595,
+ "▁Complex": 26596,
+ "▁pia": 26597,
+ "▁publicada": 26598,
+ "wei": 26599,
+ "cedure": 26600,
+ "occupation": 26601,
+ "▁medicine": 26602,
+ "▁drove": 26603,
+ "Problem": 26604,
+ "▁beginner": 26605,
+ "▁thoroughly": 26606,
+ "uria": 26607,
+ "avant": 26608,
+ "ucha": 26609,
+ "▁lever": 26610,
+ "▁teatro": 26611,
+ "AVA": 26612,
+ "squ": 26613,
+ "trat": 26614,
+ "ivatal": 26615,
+ "▁dirty": 26616,
+ "▁seconde": 26617,
+ "▁gravit": 26618,
+ "▁proposition": 26619,
+ "hbar": 26620,
+ "omini": 26621,
+ "▁”": 26622,
+ "▁Camil": 26623,
+ "▁queen": 26624,
+ "modifier": 26625,
+ "Jan": 26626,
+ "▁lyr": 26627,
+ "ComboBox": 26628,
+ "ionic": 26629,
+ "▁holy": 26630,
+ "▁Sebastian": 26631,
+ "|_{": 26632,
+ "▁{@": 26633,
+ "▁можно": 26634,
+ "▁Creative": 26635,
+ "▁interess": 26636,
+ "▁CT": 26637,
+ "ições": 26638,
+ "▁chant": 26639,
+ "▁współ": 26640,
+ "▁Мексика": 26641,
+ "▁ranked": 26642,
+ "▁października": 26643,
+ "▁brut": 26644,
+ "▁farther": 26645,
+ "▁Verb": 26646,
+ "▁Seven": 26647,
+ "lbl": 26648,
+ "▁mentions": 26649,
+ "▁Fight": 26650,
+ "ifen": 26651,
+ "▁bog": 26652,
+ "▁regres": 26653,
+ "▁scoring": 26654,
+ "icane": 26655,
+ "▁Elli": 26656,
+ "▁pierw": 26657,
+ "measure": 26658,
+ "ńskiej": 26659,
+ "#{": 26660,
+ "▁деся": 26661,
+ "▁varmaste": 26662,
+ "▁Unix": 26663,
+ "IZ": 26664,
+ "itié": 26665,
+ "Primary": 26666,
+ "▁Springer": 26667,
+ "üng": 26668,
+ "▁anv": 26669,
+ "▁versione": 26670,
+ "▁shoulders": 26671,
+ "▁брига": 26672,
+ "▁jav": 26673,
+ "ltal": 26674,
+ "▁kallaste": 26675,
+ "▁Mitchell": 26676,
+ "▁wireless": 26677,
+ "▁Ál": 26678,
+ "respons": 26679,
+ "could": 26680,
+ "▁relax": 26681,
+ "Lond": 26682,
+ "ńcz": 26683,
+ "ствовал": 26684,
+ "▁polski": 26685,
+ "enç": 26686,
+ "zar": 26687,
+ "▁dtype": 26688,
+ "owned": 26689,
+ "unknown": 26690,
+ "▁mutable": 26691,
+ "▁siempre": 26692,
+ "▁Montreal": 26693,
+ "▁locate": 26694,
+ "▁traces": 26695,
+ "▁insgesamt": 26696,
+ "▁Nil": 26697,
+ "▁прода": 26698,
+ "▁Warner": 26699,
+ "▁Nau": 26700,
+ "triangle": 26701,
+ "▁concentration": 26702,
+ "▁gentlemen": 26703,
+ "ächt": 26704,
+ "filters": 26705,
+ "incipal": 26706,
+ "VALID": 26707,
+ "▁депута": 26708,
+ "adó": 26709,
+ "▁konst": 26710,
+ "gså": 26711,
+ "agas": 26712,
+ "▁meilleur": 26713,
+ "▁данным": 26714,
+ "єдна": 26715,
+ "encoded": 26716,
+ "<'": 26717,
+ "▁sheets": 26718,
+ "cuador": 26719,
+ "▁використову": 26720,
+ "▁Deput": 26721,
+ "▁manière": 26722,
+ "ąg": 26723,
+ "csol": 26724,
+ ")$-": 26725,
+ "UIView": 26726,
+ "▁millones": 26727,
+ "▁Ehren": 26728,
+ "Sil": 26729,
+ "▁atac": 26730,
+ "▁Cold": 26731,
+ "\"\\": 26732,
+ "▁approached": 26733,
+ "▁Årsmed": 26734,
+ "WM": 26735,
+ "▁Deport": 26736,
+ "mis": 26737,
+ "andbox": 26738,
+ "observ": 26739,
+ "setting": 26740,
+ "ható": 26741,
+ "▁strat": 26742,
+ "▁spre": 26743,
+ "▁personne": 26744,
+ "▁dirige": 26745,
+ "pull": 26746,
+ "dating": 26747,
+ "▁Fact": 26748,
+ "▁manipulate": 26749,
+ "▁MAC": 26750,
+ "▁dej": 26751,
+ "ultimo": 26752,
+ "FX": 26753,
+ "Life": 26754,
+ "▁crack": 26755,
+ "▁mí": 26756,
+ "▁пове": 26757,
+ "▁wore": 26758,
+ "université": 26759,
+ "▁formulas": 26760,
+ "▁Elisabeth": 26761,
+ "plots": 26762,
+ "mile": 26763,
+ "▁menor": 26764,
+ "тил": 26765,
+ "keyword": 26766,
+ "▁Baltimore": 26767,
+ "hrer": 26768,
+ "▁Clement": 26769,
+ "vim": 26770,
+ "rass": 26771,
+ "Take": 26772,
+ "▁című": 26773,
+ "▁Convention": 26774,
+ "atge": 26775,
+ "seed": 26776,
+ "▁Dí": 26777,
+ "▁Spider": 26778,
+ "ahoo": 26779,
+ "▁имеет": 26780,
+ "ührt": 26781,
+ "▁пописа": 26782,
+ "▁Cot": 26783,
+ "▁nobles": 26784,
+ "RESS": 26785,
+ "▁chemin": 26786,
+ "▁główn": 26787,
+ "GG": 26788,
+ "▁Germania": 26789,
+ "▁Alexandre": 26790,
+ "hens": 26791,
+ "swift": 26792,
+ "oop": 26793,
+ "Subview": 26794,
+ "▁requiring": 26795,
+ "ędzy": 26796,
+ "▁fict": 26797,
+ "▁Констан": 26798,
+ "▁déput": 26799,
+ "▁surprising": 26800,
+ "▁deix": 26801,
+ "▁unterschied": 26802,
+ "inson": 26803,
+ "▁Character": 26804,
+ "▁gestion": 26805,
+ "chus": 26806,
+ "comes": 26807,
+ "▁neur": 26808,
+ "▁yeux": 26809,
+ "ollar": 26810,
+ "▁parad": 26811,
+ "▁maggiore": 26812,
+ "TRAN": 26813,
+ "▁votre": 26814,
+ "▁descent": 26815,
+ "▁Icon": 26816,
+ "▁Judge": 26817,
+ "▁occupation": 26818,
+ "eping": 26819,
+ "▁tongue": 26820,
+ "▁Enllaços": 26821,
+ "ruf": 26822,
+ "▁protein": 26823,
+ "▁visitors": 26824,
+ "axy": 26825,
+ "esten": 26826,
+ "blica": 26827,
+ "hw": 26828,
+ "▁spirits": 26829,
+ "▁reduces": 26830,
+ "▁мен": 26831,
+ "▁Lamb": 26832,
+ "▁Mine": 26833,
+ "▁verified": 26834,
+ "▁Baby": 26835,
+ "▁prize": 26836,
+ "вър": 26837,
+ "▁ratings": 26838,
+ "▁fore": 26839,
+ "asha": 26840,
+ "urrence": 26841,
+ "▁intér": 26842,
+ "▁Olímp": 26843,
+ "cra": 26844,
+ "▁computational": 26845,
+ "irche": 26846,
+ ".: ": 26847,
+ "▁illustrated": 26848,
+ "▁Share": 26849,
+ "▁households": 26850,
+ "▁convolution": 26851,
+ "oemd": 26852,
+ "▁zdoby": 26853,
+ "ccc": 26854,
+ "▁quantities": 26855,
+ "Che": 26856,
+ "Should": 26857,
+ "▁genius": 26858,
+ "adj": 26859,
+ "хва": 26860,
+ "Петер": 26861,
+ "EMA": 26862,
+ "▁Rights": 26863,
+ "▁Eli": 26864,
+ "VAR": 26865,
+ "шло": 26866,
+ "▁збір": 26867,
+ "iftung": 26868,
+ "▁contributed": 26869,
+ "zef": 26870,
+ "▁CHAR": 26871,
+ "▁Sib": 26872,
+ "▁Mant": 26873,
+ "▁связи": 26874,
+ "▁javafx": 26875,
+ "▁cependant": 26876,
+ "▁intu": 26877,
+ "▁твор": 26878,
+ "▁Ó": 26879,
+ "guer": 26880,
+ "rado": 26881,
+ "▁Revol": 26882,
+ "▁fémin": 26883,
+ "▁Orleans": 26884,
+ "▁poj": 26885,
+ "▁prez": 26886,
+ "Tex": 26887,
+ "ouwd": 26888,
+ "?(": 26889,
+ "▁LIM": 26890,
+ "istique": 26891,
+ "esar": 26892,
+ "▁heures": 26893,
+ "icki": 26894,
+ "▁dbo": 26895,
+ "skih": 26896,
+ "confirm": 26897,
+ "▁világ": 26898,
+ "▁ciutat": 26899,
+ "▁DR": 26900,
+ "▁Hawai": 26901,
+ "ched": 26902,
+ "▁spher": 26903,
+ "▁Artikel": 26904,
+ "▁Multiple": 26905,
+ "ciu": 26906,
+ "▁мы": 26907,
+ "▁lipca": 26908,
+ "](/": 26909,
+ "Strategy": 26910,
+ "▁Alabama": 26911,
+ "SDK": 26912,
+ "UTC": 26913,
+ "__.": 26914,
+ "Arguments": 26915,
+ "▁setContentView": 26916,
+ "île": 26917,
+ "ByVal": 26918,
+ "▁JVM": 26919,
+ "ющего": 26920,
+ "▁Leonard": 26921,
+ "▁justify": 26922,
+ "цем": 26923,
+ "▁nab": 26924,
+ "CCESS": 26925,
+ "▁hopes": 26926,
+ ")&": 26927,
+ "sero": 26928,
+ "▁зай": 26929,
+ "слід": 26930,
+ "▁Rég": 26931,
+ "▁Sang": 26932,
+ "▁fung": 26933,
+ "baar": 26934,
+ "▁coffee": 26935,
+ "assembly": 26936,
+ "▁Він": 26937,
+ "эй": 26938,
+ "▁comprend": 26939,
+ "filled": 26940,
+ "рд": 26941,
+ "odia": 26942,
+ "▁gens": 26943,
+ "fluss": 26944,
+ "Drawable": 26945,
+ "▁surve": 26946,
+ "Setup": 26947,
+ "▁należ": 26948,
+ "▁conjunto": 26949,
+ "▁Его": 26950,
+ "▁oldal": 26951,
+ "▁verbose": 26952,
+ "▁Electric": 26953,
+ "▁Harrison": 26954,
+ "engen": 26955,
+ "paragraph": 26956,
+ "▁nouvelles": 26957,
+ "▁време": 26958,
+ "▁memor": 26959,
+ "▁mayoría": 26960,
+ "сад": 26961,
+ "▁bataille": 26962,
+ "▁thermal": 26963,
+ "▁Хронологи": 26964,
+ "▁Better": 26965,
+ "bye": 26966,
+ "▁театра": 26967,
+ "roe": 26968,
+ "▁segle": 26969,
+ "rott": 26970,
+ "▁opinions": 26971,
+ ")})": 26972,
+ "ühle": 26973,
+ "▁Gün": 26974,
+ "▁Щ": 26975,
+ "ból": 26976,
+ "▁Larry": 26977,
+ "▁solic": 26978,
+ "▁zwar": 26979,
+ "▁Caroline": 26980,
+ "▁Reichs": 26981,
+ "Extensions": 26982,
+ "migr": 26983,
+ ":@": 26984,
+ "▁enumerate": 26985,
+ "▁eigenen": 26986,
+ "▁explore": 26987,
+ "ému": 26988,
+ "▁gat": 26989,
+ "▁imperial": 26990,
+ "▁Usually": 26991,
+ "▁tud": 26992,
+ "▁укра": 26993,
+ "him": 26994,
+ "▁corners": 26995,
+ "▁SER": 26996,
+ "▁interpreter": 26997,
+ "▁Ice": 26998,
+ "▁amounts": 26999,
+ "▁Pala": 27000,
+ "▁tinha": 27001,
+ "vole": 27002,
+ "▁gle": 27003,
+ "ucci": 27004,
+ "▁siehe": 27005,
+ "Jack": 27006,
+ "▁woll": 27007,
+ "▁elder": 27008,
+ "▁кораб": 27009,
+ "▁engag": 27010,
+ "▁Laurent": 27011,
+ "▁achiev": 27012,
+ "istik": 27013,
+ "arct": 27014,
+ "тного": 27015,
+ "▁gir": 27016,
+ "▁Singh": 27017,
+ "mathop": 27018,
+ "USA": 27019,
+ "▁Projekt": 27020,
+ "▁debe": 27021,
+ "richtung": 27022,
+ "▁Tsch": 27023,
+ "uminate": 27024,
+ "▁szó": 27025,
+ "lyph": 27026,
+ "зидент": 27027,
+ "▁limitations": 27028,
+ "ющей": 27029,
+ "▁bila": 27030,
+ "Push": 27031,
+ "▁offering": 27032,
+ "iennes": 27033,
+ "Fri": 27034,
+ "▁postgresql": 27035,
+ "▁Tommy": 27036,
+ "▁particolare": 27037,
+ "▁století": 27038,
+ "▁arrib": 27039,
+ "▁Eva": 27040,
+ "school": 27041,
+ "▁vendor": 27042,
+ "▁Dallas": 27043,
+ "▁prolong": 27044,
+ "CREATE": 27045,
+ "▁suivante": 27046,
+ "STATUS": 27047,
+ "là": 27048,
+ "kv": 27049,
+ "▁häufig": 27050,
+ "▁Agricult": 27051,
+ "▁huit": 27052,
+ "▁inoltre": 27053,
+ "▁Lloyd": 27054,
+ "▁француз": 27055,
+ "▁выпол": 27056,
+ "▁faithful": 27057,
+ "▁Вар": 27058,
+ "▁verl": 27059,
+ "▁juego": 27060,
+ "▁Резултати": 27061,
+ ",...,": 27062,
+ "▁implicitly": 27063,
+ "irks": 27064,
+ "Calcul": 27065,
+ "▁meses": 27066,
+ "omed": 27067,
+ "▁pak": 27068,
+ "herit": 27069,
+ "▁optical": 27070,
+ "▁Історія": 27071,
+ "veis": 27072,
+ "▁capitale": 27073,
+ "placeholder": 27074,
+ "intrag": 27075,
+ "▁Atlas": 27076,
+ ")];": 27077,
+ "icons": 27078,
+ "▁Bent": 27079,
+ "▁Widget": 27080,
+ "▁volunt": 27081,
+ "avo": 27082,
+ "égr": 27083,
+ "lige": 27084,
+ "▁NAME": 27085,
+ "▁abstra": 27086,
+ "▁fís": 27087,
+ "▁Browser": 27088,
+ "▁bush": 27089,
+ "hall": 27090,
+ "▁clouds": 27091,
+ "▁SUB": 27092,
+ "▁tandis": 27093,
+ "▁Commonwealth": 27094,
+ "тая": 27095,
+ "▁exhaust": 27096,
+ "________________": 27097,
+ "▁Statistics": 27098,
+ "▁Religion": 27099,
+ "▁Muham": 27100,
+ "uals": 27101,
+ "goto": 27102,
+ "Digital": 27103,
+ "Family": 27104,
+ "▁Bun": 27105,
+ "letin": 27106,
+ "Management": 27107,
+ "▁capabilities": 27108,
+ "annten": 27109,
+ "▁себе": 27110,
+ "▁stays": 27111,
+ "kter": 27112,
+ "▁dost": 27113,
+ "▁Тре": 27114,
+ "лович": 27115,
+ "▁dying": 27116,
+ "sections": 27117,
+ "ános": 27118,
+ "▁apparten": 27119,
+ "▁zoals": 27120,
+ "▁dressed": 27121,
+ "▁compress": 27122,
+ "ńska": 27123,
+ "▁sierpnia": 27124,
+ "▁титу": 27125,
+ "dictionary": 27126,
+ "▁rabb": 27127,
+ "▁vérit": 27128,
+ "Во": 27129,
+ "▁singleton": 27130,
+ "▁vital": 27131,
+ "Refresh": 27132,
+ "мель": 27133,
+ "▁Zh": 27134,
+ "▁Afghan": 27135,
+ "inkel": 27136,
+ "aaaa": 27137,
+ "▁participants": 27138,
+ "arin": 27139,
+ "▁Mold": 27140,
+ "▁primeros": 27141,
+ "▁ран": 27142,
+ "▁Амери": 27143,
+ "▁restaurant": 27144,
+ "ével": 27145,
+ "▁SL": 27146,
+ "▁Rey": 27147,
+ "chas": 27148,
+ "▁electrons": 27149,
+ "▁Pitts": 27150,
+ "▁Jules": 27151,
+ "май": 27152,
+ "enant": 27153,
+ "-}": 27154,
+ "лад": 27155,
+ "▁Москва": 27156,
+ "gom": 27157,
+ "▁Fernández": 27158,
+ "fund": 27159,
+ "interno": 27160,
+ "▁Mari": 27161,
+ "▁rius": 27162,
+ "▁Prozent": 27163,
+ "стрі": 27164,
+ "▁внут": 27165,
+ "anterie": 27166,
+ "▁прис": 27167,
+ "▁обы": 27168,
+ "▁Marina": 27169,
+ "▁occurrence": 27170,
+ "rikt": 27171,
+ "▁физи": 27172,
+ "▁schwer": 27173,
+ "▁Гре": 27174,
+ "Reset": 27175,
+ "▁mucho": 27176,
+ "andr": 27177,
+ "▁Wies": 27178,
+ "▁Keith": 27179,
+ "▁Julian": 27180,
+ "▁cole": 27181,
+ "ciendo": 27182,
+ "▁Contempor": 27183,
+ "etry": 27184,
+ "elian": 27185,
+ "гии": 27186,
+ "▁голо": 27187,
+ "▁dél": 27188,
+ "▁decent": 27189,
+ "РСР": 27190,
+ "▁szeptember": 27191,
+ "мест": 27192,
+ "castle": 27193,
+ "▁держав": 27194,
+ "}\")": 27195,
+ "▁ASCII": 27196,
+ "▁Glen": 27197,
+ "itzerland": 27198,
+ "Toggle": 27199,
+ "▁tradicional": 27200,
+ "▁Plat": 27201,
+ "vee": 27202,
+ "abgerufen": 27203,
+ "(|": 27204,
+ "CLI": 27205,
+ "}}$,": 27206,
+ "▁Bowl": 27207,
+ "▁Male": 27208,
+ "▁Bres": 27209,
+ "▁пси": 27210,
+ "▁Challenge": 27211,
+ "zó": 27212,
+ "▁projekt": 27213,
+ "▁negoti": 27214,
+ "above": 27215,
+ "▁перио": 27216,
+ "▁longest": 27217,
+ "authentic": 27218,
+ "▁tradu": 27219,
+ "▁mujeres": 27220,
+ "▁Andre": 27221,
+ "▁hadn": 27222,
+ "▁Schule": 27223,
+ "odel": 27224,
+ "bled": 27225,
+ "▁Trade": 27226,
+ "▁mobil": 27227,
+ "▁algunas": 27228,
+ "▁Lak": 27229,
+ "▁Connecticut": 27230,
+ "▁alco": 27231,
+ "▁Selbst": 27232,
+ "ił": 27233,
+ "▁alb": 27234,
+ "ouverneur": 27235,
+ "▁sr": 27236,
+ "▁vba": 27237,
+ "loped": 27238,
+ "▁Partei": 27239,
+ "uate": 27240,
+ "▁Authentication": 27241,
+ "bei": 27242,
+ "}}.": 27243,
+ "▁konnten": 27244,
+ "▁допо": 27245,
+ "▁hyd": 27246,
+ "Office": 27247,
+ "données": 27248,
+ "▁Cleveland": 27249,
+ "rita": 27250,
+ "íos": 27251,
+ "▁выше": 27252,
+ "▁Roberts": 27253,
+ "▁élections": 27254,
+ "▁'')": 27255,
+ "▁publishing": 27256,
+ "▁bapt": 27257,
+ "<>();": 27258,
+ "missing": 27259,
+ "ровано": 27260,
+ "▁housing": 27261,
+ "▁inference": 27262,
+ "▁Renaissance": 27263,
+ "▁règ": 27264,
+ "▁Steph": 27265,
+ "CES": 27266,
+ "ERE": 27267,
+ "кет": 27268,
+ "OU": 27269,
+ "▁grouping": 27270,
+ "verkehr": 27271,
+ "jih": 27272,
+ "agli": 27273,
+ "▁milk": 27274,
+ "lait": 27275,
+ "Stage": 27276,
+ "▁byly": 27277,
+ "▁wooden": 27278,
+ "keley": 27279,
+ "etra": 27280,
+ "▁Peg": 27281,
+ "▁donné": 27282,
+ "adal": 27283,
+ "sequently": 27284,
+ "▁insbesondere": 27285,
+ "ELD": 27286,
+ "▁Mam": 27287,
+ "▁volte": 27288,
+ "▁prospect": 27289,
+ "нове": 27290,
+ "▁denoted": 27291,
+ "▁overlay": 27292,
+ "Permission": 27293,
+ "een": 27294,
+ "▁EM": 27295,
+ "▁uz": 27296,
+ "Mc": 27297,
+ "olit": 27298,
+ "▁servi": 27299,
+ "▁Heidel": 27300,
+ "▁Wiener": 27301,
+ "▁illegal": 27302,
+ "▁predictions": 27303,
+ "▁goog": 27304,
+ "hon": 27305,
+ "▁Cinema": 27306,
+ "▁револю": 27307,
+ "▁Rule": 27308,
+ "wod": 27309,
+ "▁radiation": 27310,
+ "oł": 27311,
+ "ової": 27312,
+ "▁Perform": 27313,
+ "▁prisoner": 27314,
+ "▁amet": 27315,
+ "▁figura": 27316,
+ "▁Commander": 27317,
+ "▁официаль": 27318,
+ "▁trov": 27319,
+ "▁acted": 27320,
+ "▁workflow": 27321,
+ "▁Республики": 27322,
+ "▁guidance": 27323,
+ "▁мене": 27324,
+ "National": 27325,
+ "▁Kel": 27326,
+ "webpack": 27327,
+ "простра": 27328,
+ "▁llamado": 27329,
+ "alog": 27330,
+ "terra": 27331,
+ "ixen": 27332,
+ "legraph": 27333,
+ "äischen": 27334,
+ "▁teachers": 27335,
+ "uden": 27336,
+ "▁også": 27337,
+ "possible": 27338,
+ "▁Soul": 27339,
+ "▁Geography": 27340,
+ "▁зада": 27341,
+ "hit": 27342,
+ "▁anger": 27343,
+ "▁remporte": 27344,
+ "Pod": 27345,
+ "чке": 27346,
+ "▁aria": 27347,
+ "▁Astronom": 27348,
+ "chapter": 27349,
+ "▁fork": 27350,
+ "▁Cuando": 27351,
+ "mense": 27352,
+ "▁Christians": 27353,
+ "gc": 27354,
+ "▁#(": 27355,
+ "Organ": 27356,
+ "▁steady": 27357,
+ "pse": 27358,
+ "жить": 27359,
+ "ignes": 27360,
+ "aterra": 27361,
+ "movie": 27362,
+ "posta": 27363,
+ "raste": 27364,
+ "▁Ressource": 27365,
+ "▁País": 27366,
+ "▁();": 27367,
+ "▁penalty": 27368,
+ "тт": 27369,
+ "▁trasfer": 27370,
+ "century": 27371,
+ "▁cleaner": 27372,
+ "selenium": 27373,
+ "ortheast": 27374,
+ "xic": 27375,
+ "лії": 27376,
+ "▁inglese": 27377,
+ "▁Tang": 27378,
+ "▁gods": 27379,
+ "frent": 27380,
+ "ciente": 27381,
+ "starts": 27382,
+ "▁musica": 27383,
+ "ymnasium": 27384,
+ "----+": 27385,
+ "▁terrest": 27386,
+ "▁retrieved": 27387,
+ "iare": 27388,
+ "unning": 27389,
+ "▁Marcus": 27390,
+ "▁promote": 27391,
+ "warning": 27392,
+ "тый": 27393,
+ "})$,": 27394,
+ "Transport": 27395,
+ "▁reson": 27396,
+ "▁Clo": 27397,
+ "▁erm": 27398,
+ "▁eliminate": 27399,
+ "heimer": 27400,
+ "▁saves": 27401,
+ "▁prayer": 27402,
+ "Classes": 27403,
+ "Express": 27404,
+ "▁Akademie": 27405,
+ "Else": 27406,
+ "Turn": 27407,
+ "▁ikke": 27408,
+ "▁rei": 27409,
+ "▁dirett": 27410,
+ "▁Rost": 27411,
+ "▁Papa": 27412,
+ "▁jsf": 27413,
+ "лением": 27414,
+ "▁Tul": 27415,
+ "▁Zak": 27416,
+ "▁niemieck": 27417,
+ "Tw": 27418,
+ "amour": 27419,
+ "nested": 27420,
+ "ppets": 27421,
+ "шп": 27422,
+ "dit": 27423,
+ "зен": 27424,
+ "zyma": 27425,
+ "hrte": 27426,
+ "Constraints": 27427,
+ "▁ownership": 27428,
+ "Arm": 27429,
+ "▁consumption": 27430,
+ "▁fet": 27431,
+ "ivari": 27432,
+ "chrom": 27433,
+ "setAttribute": 27434,
+ "▁compose": 27435,
+ "▁backing": 27436,
+ "▁Paz": 27437,
+ "▁scri": 27438,
+ "▁Mechan": 27439,
+ "▁Norway": 27440,
+ "▁Jup": 27441,
+ "▁mér": 27442,
+ "▁administrator": 27443,
+ "▁cabe": 27444,
+ "ivalent": 27445,
+ "▁throne": 27446,
+ "▁dues": 27447,
+ "▁humor": 27448,
+ "▁Adri": 27449,
+ "▁abort": 27450,
+ "ñas": 27451,
+ "▁Київ": 27452,
+ "jící": 27453,
+ "▁zweite": 27454,
+ "▁doub": 27455,
+ "ershell": 27456,
+ "шой": 27457,
+ "▁Fam": 27458,
+ "åk": 27459,
+ "▁tweede": 27460,
+ "▁Rib": 27461,
+ "▁før": 27462,
+ "pción": 27463,
+ "inned": 27464,
+ "rvm": 27465,
+ "▁Appar": 27466,
+ "▁Dj": 27467,
+ "▁Shang": 27468,
+ "Distance": 27469,
+ "▁dawn": 27470,
+ "▁Matth": 27471,
+ "▁errichtet": 27472,
+ "phantom": 27473,
+ "▁releases": 27474,
+ "Recognizer": 27475,
+ "▁Kop": 27476,
+ "▁Pul": 27477,
+ "ué": 27478,
+ "nats": 27479,
+ "relax": 27480,
+ "▁fled": 27481,
+ "▁experiences": 27482,
+ "щее": 27483,
+ "меня": 27484,
+ "▁персона": 27485,
+ "▁Identity": 27486,
+ "rets": 27487,
+ "kunft": 27488,
+ "larg": 27489,
+ "ListItem": 27490,
+ "vd": 27491,
+ "runner": 27492,
+ "lant": 27493,
+ "ipart": 27494,
+ "bay": 27495,
+ "iei": 27496,
+ "▁lengths": 27497,
+ "▁cattle": 27498,
+ "jets": 27499,
+ "▁sehen": 27500,
+ "Jul": 27501,
+ "fatt": 27502,
+ "▁surrender": 27503,
+ "▁Trump": 27504,
+ "дного": 27505,
+ "▁Fourier": 27506,
+ "ieben": 27507,
+ "_\"": 27508,
+ "▁früher": 27509,
+ "▁garant": 27510,
+ "uclidean": 27511,
+ "ägt": 27512,
+ "▁півден": 27513,
+ "Pages": 27514,
+ "▁rivers": 27515,
+ "▁donner": 27516,
+ "svn": 27517,
+ "▁ł": 27518,
+ "ově": 27519,
+ "▁Leist": 27520,
+ "arial": 27521,
+ "ových": 27522,
+ "▁filling": 27523,
+ "▁musicale": 27524,
+ "maxim": 27525,
+ "▁dashed": 27526,
+ "▁Нов": 27527,
+ "Drawer": 27528,
+ "▁Medicine": 27529,
+ "▁dokument": 27530,
+ "owel": 27531,
+ "vić": 27532,
+ "hely": 27533,
+ "▁elet": 27534,
+ "Seconds": 27535,
+ "▁Gonz": 27536,
+ "rou": 27537,
+ "▁finales": 27538,
+ "rn": 27539,
+ "fø": 27540,
+ "▁indexed": 27541,
+ "className": 27542,
+ "▁ober": 27543,
+ "▁duas": 27544,
+ "▁optimized": 27545,
+ "▁kdy": 27546,
+ "versary": 27547,
+ "energy": 27548,
+ "▁центра": 27549,
+ "▁currency": 27550,
+ "zyż": 27551,
+ "Like": 27552,
+ "▁Ги": 27553,
+ "sono": 27554,
+ "▁palab": 27555,
+ "▁pushing": 27556,
+ "ublik": 27557,
+ "▁Hass": 27558,
+ "}\\,\\": 27559,
+ "unker": 27560,
+ "▁Factory": 27561,
+ "▁Resources": 27562,
+ "datei": 27563,
+ "▁Tools": 27564,
+ "▁stehen": 27565,
+ "sime": 27566,
+ "▁Ху": 27567,
+ "▁hoch": 27568,
+ "▁Rodríguez": 27569,
+ "zeitig": 27570,
+ "▁Terry": 27571,
+ "▁обу": 27572,
+ "Usage": 27573,
+ "urchase": 27574,
+ "lö": 27575,
+ "▁Introduction": 27576,
+ "▁participation": 27577,
+ "ος": 27578,
+ "ogli": 27579,
+ "apy": 27580,
+ "▁hopefully": 27581,
+ "ponder": 27582,
+ "▁Yang": 27583,
+ "▁promises": 27584,
+ "▁верну": 27585,
+ "▁остров": 27586,
+ "^{+": 27587,
+ "▁mostra": 27588,
+ "▁CURLOPT": 27589,
+ "HH": 27590,
+ "▁stdout": 27591,
+ "▁brilliant": 27592,
+ "▁manuscript": 27593,
+ "▁decir": 27594,
+ "▁Bolog": 27595,
+ "▁места": 27596,
+ "▁invisible": 27597,
+ "▁Chal": 27598,
+ "▁analyze": 27599,
+ "prilis": 27600,
+ "attend": 27601,
+ "Mvc": 27602,
+ "than": 27603,
+ "cko": 27604,
+ "▁Quebec": 27605,
+ "▁planta": 27606,
+ "▁télévis": 27607,
+ "▁uninstall": 27608,
+ "ències": 27609,
+ "▁gminie": 27610,
+ "▁Pref": 27611,
+ "▁lequel": 27612,
+ "Invocation": 27613,
+ "▁Í": 27614,
+ "▁transformed": 27615,
+ "MAN": 27616,
+ "gebaut": 27617,
+ "▁сохра": 27618,
+ "▁второй": 27619,
+ "▁Lith": 27620,
+ "wendung": 27621,
+ "▁Politik": 27622,
+ "▁Senator": 27623,
+ "▁LL": 27624,
+ "ждение": 27625,
+ "ште": 27626,
+ "▁Cés": 27627,
+ "▁bande": 27628,
+ "▁historian": 27629,
+ "▁passwords": 27630,
+ "malloc": 27631,
+ "▁semif": 27632,
+ "▁rå": 27633,
+ "unicí": 27634,
+ "Available": 27635,
+ "Optional": 27636,
+ "▁Twe": 27637,
+ "▁kró": 27638,
+ "▁subsets": 27639,
+ "▁DAT": 27640,
+ "▁doubles": 27641,
+ "никами": 27642,
+ "▁зв": 27643,
+ "gegeben": 27644,
+ "▁Попис": 27645,
+ "▁július": 27646,
+ "▁meteor": 27647,
+ "Mount": 27648,
+ "ivent": 27649,
+ "▁Nathan": 27650,
+ "▁Schutz": 27651,
+ "egov": 27652,
+ "▁död": 27653,
+ "▁meat": 27654,
+ "▁пункт": 27655,
+ "▁minds": 27656,
+ "elivery": 27657,
+ "▁TLS": 27658,
+ "рем": 27659,
+ "ckså": 27660,
+ "▁stayed": 27661,
+ "▁Bin": 27662,
+ "▁Pia": 27663,
+ "▁имен": 27664,
+ "▁Bobby": 27665,
+ "▁produit": 27666,
+ "empio": 27667,
+ "▁reducing": 27668,
+ "▁Yu": 27669,
+ "▁Geschäft": 27670,
+ "▁perché": 27671,
+ "▁cors": 27672,
+ "▁icons": 27673,
+ "AppData": 27674,
+ "▁Hog": 27675,
+ "▁рів": 27676,
+ "▁Sans": 27677,
+ "▁siège": 27678,
+ "stellen": 27679,
+ "Brush": 27680,
+ "OFF": 27681,
+ "▁visitor": 27682,
+ "▁bath": 27683,
+ "▁fee": 27684,
+ "atisf": 27685,
+ "▁curv": 27686,
+ "▁folgender": 27687,
+ "▁conscience": 27688,
+ "▁Seattle": 27689,
+ "▁medieval": 27690,
+ "distribution": 27691,
+ "▁DM": 27692,
+ "▁мя": 27693,
+ "▁RUN": 27694,
+ "akov": 27695,
+ "ceil": 27696,
+ "▁letting": 27697,
+ "▁dov": 27698,
+ "▁оби": 27699,
+ "kiej": 27700,
+ "▁direkt": 27701,
+ "▁tm": 27702,
+ "colors": 27703,
+ "▁altro": 27704,
+ "▁tijdens": 27705,
+ "]{'": 27706,
+ "▁Bom": 27707,
+ "▁kunst": 27708,
+ "▁shelter": 27709,
+ "▁rav": 27710,
+ "predict": 27711,
+ "▁comenzó": 27712,
+ "▁świat": 27713,
+ "▁Durant": 27714,
+ "▁schemes": 27715,
+ "▁mesh": 27716,
+ "▁indicator": 27717,
+ "▁Emer": 27718,
+ "▁guilty": 27719,
+ "нец": 27720,
+ "▁consequences": 27721,
+ "cludes": 27722,
+ "▁Lower": 27723,
+ "▁поме": 27724,
+ "▁pace": 27725,
+ "даго": 27726,
+ "▁ambos": 27727,
+ "lb": 27728,
+ "▁educated": 27729,
+ "urale": 27730,
+ "anh": 27731,
+ "esség": 27732,
+ "▁associations": 27733,
+ "town": 27734,
+ "▁trif": 27735,
+ "samples": 27736,
+ "bos": 27737,
+ "▁Spect": 27738,
+ "▁Це": 27739,
+ "altung": 27740,
+ "▁Lob": 27741,
+ "▁curiosity": 27742,
+ "▁Weiter": 27743,
+ "estone": 27744,
+ "▁demol": 27745,
+ "▁apolog": 27746,
+ "▁Dynamic": 27747,
+ "Inner": 27748,
+ "esper": 27749,
+ "ecz": 27750,
+ "uellement": 27751,
+ "▁Hamiltonian": 27752,
+ "Atlas": 27753,
+ "▁argue": 27754,
+ "Foreign": 27755,
+ "collapse": 27756,
+ "▁términ": 27757,
+ "▁electronic": 27758,
+ "▁NR": 27759,
+ "▁corr": 27760,
+ "temps": 27761,
+ "IndexPath": 27762,
+ "яз": 27763,
+ "▁talál": 27764,
+ "today": 27765,
+ "wave": 27766,
+ "▁sib": 27767,
+ "▁спи": 27768,
+ "▁convey": 27769,
+ "▁Géographie": 27770,
+ "▁Нью": 27771,
+ "▁Hibernate": 27772,
+ "▁tin": 27773,
+ "dic": 27774,
+ "ppings": 27775,
+ "sweise": 27776,
+ "▁rolling": 27777,
+ "▁selects": 27778,
+ ")\\)": 27779,
+ "▁poeta": 27780,
+ "▁степени": 27781,
+ "▁Abr": 27782,
+ "▁höch": 27783,
+ "▁stern": 27784,
+ "▁fjär": 27785,
+ "▁installer": 27786,
+ "decl": 27787,
+ "▁miser": 27788,
+ "groupby": 27789,
+ "substr": 27790,
+ "▁phenomen": 27791,
+ "▁Wing": 27792,
+ "▁fills": 27793,
+ "▁único": 27794,
+ "Running": 27795,
+ "Come": 27796,
+ "irable": 27797,
+ "simeq": 27798,
+ "▁remp": 27799,
+ "kele": 27800,
+ "liers": 27801,
+ "▁kwietnia": 27802,
+ "▁interrupted": 27803,
+ "▁Jet": 27804,
+ "=\\{": 27805,
+ "ído": 27806,
+ "▁Taiwan": 27807,
+ "▁возра": 27808,
+ "▁alternatives": 27809,
+ "▁Tir": 27810,
+ "▁Reserve": 27811,
+ "▁Кур": 27812,
+ "▁Nobel": 27813,
+ "▁работал": 27814,
+ "▁axes": 27815,
+ "▁Cependant": 27816,
+ "ká": 27817,
+ "▁erneut": 27818,
+ "▁Demo": 27819,
+ "communic": 27820,
+ "constructor": 27821,
+ "▁Monday": 27822,
+ "Nil": 27823,
+ "HashMap": 27824,
+ "payment": 27825,
+ "▁fixing": 27826,
+ "▁ADD": 27827,
+ "review": 27828,
+ "▁possibil": 27829,
+ "▁grote": 27830,
+ "▁grouped": 27831,
+ "▁Lima": 27832,
+ "▁Augen": 27833,
+ "▁också": 27834,
+ "onas": 27835,
+ "▁debate": 27836,
+ "▁Ingl": 27837,
+ "Da": 27838,
+ "SOUR": 27839,
+ "ettbe": 27840,
+ "▁Battalion": 27841,
+ "▁Float": 27842,
+ "▁cone": 27843,
+ "readsheet": 27844,
+ "court": 27845,
+ "ligen": 27846,
+ "▁Beginn": 27847,
+ "▁LIMIT": 27848,
+ "▁enjoyed": 27849,
+ "▁Jakob": 27850,
+ "▁telt": 27851,
+ "backend": 27852,
+ "▁Gemeinsame": 27853,
+ "lint": 27854,
+ "alling": 27855,
+ "▁bör": 27856,
+ "grand": 27857,
+ "▁diverses": 27858,
+ "▁związ": 27859,
+ "▁Kompon": 27860,
+ "▁innerhalb": 27861,
+ "▁desarrollo": 27862,
+ "▁Masters": 27863,
+ "ioso": 27864,
+ "]`.": 27865,
+ "▁francesa": 27866,
+ "Aff": 27867,
+ "inek": 27868,
+ "▁dessin": 27869,
+ "`.`": 27870,
+ "▁ranks": 27871,
+ "берг": 27872,
+ "▁skal": 27873,
+ "▁Sultan": 27874,
+ "АН": 27875,
+ "▁способ": 27876,
+ "▁contradict": 27877,
+ "▁recom": 27878,
+ "▁Oklahoma": 27879,
+ "▁Vladimir": 27880,
+ "▁meters": 27881,
+ "transport": 27882,
+ "▁consulté": 27883,
+ "▁ATP": 27884,
+ "ebb": 27885,
+ "▁volunte": 27886,
+ "▁outline": 27887,
+ "LIC": 27888,
+ "▁euro": 27889,
+ "CharField": 27890,
+ "medium": 27891,
+ "▁Belgique": 27892,
+ "Proc": 27893,
+ "routes": 27894,
+ "▁contribu": 27895,
+ "!}": 27896,
+ "ším": 27897,
+ "▁Less": 27898,
+ "▁Kost": 27899,
+ "▁eredetiből": 27900,
+ "reven": 27901,
+ "verify": 27902,
+ "▁Salt": 27903,
+ "▁shooting": 27904,
+ "▁dispose": 27905,
+ "ují": 27906,
+ "▁tierra": 27907,
+ "▁poison": 27908,
+ "sak": 27909,
+ "perimental": 27910,
+ "▁Né": 27911,
+ "▁Kid": 27912,
+ "agyar": 27913,
+ "▁archiválva": 27914,
+ "bereich": 27915,
+ "íz": 27916,
+ "▁Ritter": 27917,
+ "▁Хронологија": 27918,
+ "zeum": 27919,
+ "дах": 27920,
+ "▁gründ": 27921,
+ "▁programmer": 27922,
+ "▁conseil": 27923,
+ "▁encrypt": 27924,
+ "integration": 27925,
+ "Culture": 27926,
+ "▁Circle": 27927,
+ "Observable": 27928,
+ "▁genomsnitt": 27929,
+ "▁Selection": 27930,
+ "▁irregular": 27931,
+ "Autres": 27932,
+ "Percent": 27933,
+ "fault": 27934,
+ "▁virtue": 27935,
+ "ąpi": 27936,
+ "▁sess": 27937,
+ "▁Также": 27938,
+ "Timestamp": 27939,
+ "▁littérature": 27940,
+ "▁moż": 27941,
+ "▁borrow": 27942,
+ "▁conced": 27943,
+ "чник": 27944,
+ "▁Lund": 27945,
+ "IONS": 27946,
+ "ynie": 27947,
+ "▁Shin": 27948,
+ "▁osob": 27949,
+ "bě": 27950,
+ "▁intuit": 27951,
+ "▁нап": 27952,
+ "▁proph": 27953,
+ "▁pitt": 27954,
+ "▁IBM": 27955,
+ "▁Till": 27956,
+ "▁hina": 27957,
+ "ittest": 27958,
+ "generator": 27959,
+ "▁Nin": 27960,
+ "▁Kot": 27961,
+ "▁passer": 27962,
+ "▁disposition": 27963,
+ "uning": 27964,
+ "▁fame": 27965,
+ "▁tenia": 27966,
+ "ancement": 27967,
+ "▁Suisse": 27968,
+ "`-": 27969,
+ "▁hombres": 27970,
+ "▁infinity": 27971,
+ "▁оконча": 27972,
+ "▁cosm": 27973,
+ "▁Dennis": 27974,
+ "baz": 27975,
+ "haupt": 27976,
+ "▁mighty": 27977,
+ "▁prede": 27978,
+ "usable": 27979,
+ "▁wszyst": 27980,
+ "▁lb": 27981,
+ "ABASE": 27982,
+ "jna": 27983,
+ "нев": 27984,
+ "▁ases": 27985,
+ "▁finalmente": 27986,
+ "йм": 27987,
+ "pection": 27988,
+ "▁Studien": 27989,
+ "▁Norwegian": 27990,
+ "cego": 27991,
+ "INDEX": 27992,
+ "orten": 27993,
+ "▁friendship": 27994,
+ "metro": 27995,
+ "thick": 27996,
+ "▁Zel": 27997,
+ "LOW": 27998,
+ "▁thereby": 27999,
+ "unted": 28000,
+ "▁surfaces": 28001,
+ "ющим": 28002,
+ "%).": 28003,
+ "▁Wonder": 28004,
+ "▁redundant": 28005,
+ "▁Gros": 28006,
+ "▁websites": 28007,
+ "▁vio": 28008,
+ "▁ocas": 28009,
+ "vés": 28010,
+ "▁Gam": 28011,
+ "dw": 28012,
+ "Indicator": 28013,
+ "▁Kob": 28014,
+ "▁jack": 28015,
+ "Hint": 28016,
+ "▁Apol": 28017,
+ "▁другие": 28018,
+ "▁NUM": 28019,
+ "▁ofic": 28020,
+ "ystycz": 28021,
+ "▁wereld": 28022,
+ "мости": 28023,
+ "LEFT": 28024,
+ "▁Types": 28025,
+ "seen": 28026,
+ "uncia": 28027,
+ "▁narod": 28028,
+ "▁этот": 28029,
+ "Sidenote": 28030,
+ "ueil": 28031,
+ "▁отме": 28032,
+ "▁courts": 28033,
+ "fir": 28034,
+ "urz": 28035,
+ "ченко": 28036,
+ "Credentials": 28037,
+ "▁imagination": 28038,
+ "itats": 28039,
+ "buff": 28040,
+ "flash": 28041,
+ "▁badly": 28042,
+ "▁worn": 28043,
+ "▁округу": 28044,
+ "catalog": 28045,
+ "lime": 28046,
+ "▁Gill": 28047,
+ "▁Sent": 28048,
+ "iella": 28049,
+ "▁Craig": 28050,
+ "▁Sele": 28051,
+ "▁Independ": 28052,
+ "▁provincie": 28053,
+ "ossen": 28054,
+ "▁запад": 28055,
+ "▁infant": 28056,
+ "▁prevents": 28057,
+ "▁provinces": 28058,
+ "afé": 28059,
+ "beg": 28060,
+ "▁colours": 28061,
+ "BF": 28062,
+ "ën": 28063,
+ "▁Между": 28064,
+ "în": 28065,
+ "Observer": 28066,
+ "forsch": 28067,
+ "ígen": 28068,
+ "umption": 28069,
+ "▁Illustr": 28070,
+ "рист": 28071,
+ "▁полови": 28072,
+ "▁`&": 28073,
+ "▁ore": 28074,
+ "▁supplies": 28075,
+ "▁parenthes": 28076,
+ "Foundation": 28077,
+ "▁vou": 28078,
+ "▁Tout": 28079,
+ "Donald": 28080,
+ "▁RET": 28081,
+ "weig": 28082,
+ "▁producción": 28083,
+ "mix": 28084,
+ "▁utwor": 28085,
+ "▁föl": 28086,
+ "▁então": 28087,
+ "▁Sister": 28088,
+ "Tags": 28089,
+ "▁Савезне": 28090,
+ "▁privileges": 28091,
+ "▁nazw": 28092,
+ "▁Rav": 28093,
+ "▁repro": 28094,
+ "▁Mason": 28095,
+ "▁Platform": 28096,
+ "▁пробле": 28097,
+ "▁Pérez": 28098,
+ "▁blanc": 28099,
+ "Behavior": 28100,
+ "фици": 28101,
+ "eken": 28102,
+ "▁meets": 28103,
+ "(.*": 28104,
+ "▁få": 28105,
+ "epen": 28106,
+ "maker": 28107,
+ "▁loyal": 28108,
+ "members": 28109,
+ "meisterschaft": 28110,
+ "goal": 28111,
+ "шлен": 28112,
+ "▁северо": 28113,
+ "iende": 28114,
+ "дні": 28115,
+ "Proof": 28116,
+ "▁explic": 28117,
+ "▁electro": 28118,
+ "iels": 28119,
+ "reload": 28120,
+ "▁eleven": 28121,
+ "▁partidos": 28122,
+ "îne": 28123,
+ "▁Regin": 28124,
+ "▁éx": 28125,
+ "▁Bulg": 28126,
+ "▁networking": 28127,
+ "▁separator": 28128,
+ "UserName": 28129,
+ "▁edificio": 28130,
+ "▁Mie": 28131,
+ "▁idle": 28132,
+ "yed": 28133,
+ "▁passengers": 28134,
+ "+)": 28135,
+ "meno": 28136,
+ "eggi": 28137,
+ "▁nicely": 28138,
+ "endencia": 28139,
+ "чий": 28140,
+ "étés": 28141,
+ "ightarrow": 28142,
+ "▁orthogonal": 28143,
+ "▁Half": 28144,
+ "▁fewer": 28145,
+ "▁propi": 28146,
+ "▁primit": 28147,
+ "icale": 28148,
+ "▁flower": 28149,
+ "merk": 28150,
+ "▁Отече": 28151,
+ "▁persistent": 28152,
+ "▁Ville": 28153,
+ "Men": 28154,
+ "gaben": 28155,
+ "▁Isaac": 28156,
+ "ativity": 28157,
+ "▁północ": 28158,
+ "▁rok": 28159,
+ "cards": 28160,
+ "дения": 28161,
+ "▁юго": 28162,
+ "▁extraordinary": 28163,
+ "▁kyr": 28164,
+ "(\",": 28165,
+ "))]": 28166,
+ "▁unix": 28167,
+ "кол": 28168,
+ "▁sink": 28169,
+ "apsed": 28170,
+ "▁kommen": 28171,
+ "▁forcing": 28172,
+ "About": 28173,
+ "▁Halle": 28174,
+ "▁Majesty": 28175,
+ "▁Switch": 28176,
+ "▁abroad": 28177,
+ "▁acceleration": 28178,
+ "urbed": 28179,
+ "▁остан": 28180,
+ "Ready": 28181,
+ "▁півні": 28182,
+ "Bra": 28183,
+ "▁цього": 28184,
+ "▁plut": 28185,
+ "▁Train": 28186,
+ "▁április": 28187,
+ "▁puesto": 28188,
+ "▁toss": 28189,
+ "▁irrelevant": 28190,
+ "▁dip": 28191,
+ "segment": 28192,
+ "opacity": 28193,
+ "▁lorsque": 28194,
+ "▁verschill": 28195,
+ "ена": 28196,
+ "▁Doc": 28197,
+ "%%%%%%%%": 28198,
+ "▁borders": 28199,
+ "gebras": 28200,
+ "▁ries": 28201,
+ "▁Olympedia": 28202,
+ "▁Generation": 28203,
+ "metros": 28204,
+ "▁horizon": 28205,
+ "▁adaptation": 28206,
+ "▁Zahl": 28207,
+ "▁nahe": 28208,
+ "▁Bug": 28209,
+ "Picture": 28210,
+ "љи": 28211,
+ "RGB": 28212,
+ "Owner": 28213,
+ "adin": 28214,
+ "▁Catalunya": 28215,
+ "ných": 28216,
+ "▁cualquier": 28217,
+ "▁Institution": 28218,
+ "insen": 28219,
+ "▁Brasile": 28220,
+ "▁fitting": 28221,
+ "Deleg": 28222,
+ "ictwo": 28223,
+ "▁Exper": 28224,
+ "ochastic": 28225,
+ "▁dus": 28226,
+ "▁пора": 28227,
+ "▁substring": 28228,
+ "ссии": 28229,
+ "oin": 28230,
+ "▁школа": 28231,
+ "▁cx": 28232,
+ "▁%)": 28233,
+ "▁Buddh": 28234,
+ "▁pending": 28235,
+ "▁Entry": 28236,
+ "▁Berl": 28237,
+ "▁cler": 28238,
+ "▁Soc": 28239,
+ "▁rounded": 28240,
+ "▁mv": 28241,
+ "ített": 28242,
+ "▁Diplom": 28243,
+ "▁französischen": 28244,
+ "▁Gan": 28245,
+ "▁Investig": 28246,
+ "▁indexPath": 28247,
+ "▁molti": 28248,
+ "persistence": 28249,
+ "▁XIXe": 28250,
+ "▁Electron": 28251,
+ "bü": 28252,
+ "gele": 28253,
+ "▁Maler": 28254,
+ "▁proyecto": 28255,
+ "▁Bath": 28256,
+ "ellers": 28257,
+ "▁GP": 28258,
+ "oning": 28259,
+ "cloudflare": 28260,
+ "▁při": 28261,
+ "▁ded": 28262,
+ "▁Odkazy": 28263,
+ "▁Msg": 28264,
+ "▁Being": 28265,
+ "▁Depuis": 28266,
+ "▁Primary": 28267,
+ "▁Appro": 28268,
+ "▁formally": 28269,
+ "ступил": 28270,
+ "▁fuera": 28271,
+ "▁Root": 28272,
+ "▁autonom": 28273,
+ "▁secretary": 28274,
+ "▁osób": 28275,
+ "▁cuales": 28276,
+ "▁Depending": 28277,
+ "▁asi": 28278,
+ "vera": 28279,
+ "▁russe": 28280,
+ "▁proves": 28281,
+ "▁presiden": 28282,
+ "RU": 28283,
+ "▁Watson": 28284,
+ "▁webpack": 28285,
+ "elligence": 28286,
+ "кам": 28287,
+ "▁Officer": 28288,
+ "▁delivery": 28289,
+ "ждён": 28290,
+ "▁импе": 28291,
+ "▁wil": 28292,
+ "▁vesc": 28293,
+ "usztus": 28294,
+ "▁Geoff": 28295,
+ "()}": 28296,
+ "▁Fore": 28297,
+ "▁wenig": 28298,
+ "▁Airl": 28299,
+ "▁Efter": 28300,
+ "▁Break": 28301,
+ "▁Städ": 28302,
+ "ismiss": 28303,
+ "íp": 28304,
+ "▁avoided": 28305,
+ "▁assertion": 28306,
+ "DN": 28307,
+ "▁teat": 28308,
+ "ína": 28309,
+ "▁mechanical": 28310,
+ "isu": 28311,
+ "@{": 28312,
+ "▁nou": 28313,
+ "Italie": 28314,
+ "sourceforge": 28315,
+ "▁svo": 28316,
+ "▁király": 28317,
+ "▁References": 28318,
+ "six": 28319,
+ "▁Archives": 28320,
+ "▁finishing": 28321,
+ "acje": 28322,
+ "état": 28323,
+ "iffs": 28324,
+ "▁stead": 28325,
+ "▁feas": 28326,
+ "aware": 28327,
+ "lande": 28328,
+ "Inject": 28329,
+ "▁Agent": 28330,
+ "▁Normdatei": 28331,
+ "▁amen": 28332,
+ "▁Architecture": 28333,
+ "aze": 28334,
+ "ște": 28335,
+ "▁usar": 28336,
+ "▁cores": 28337,
+ "лін": 28338,
+ "▁Castro": 28339,
+ "▁væ": 28340,
+ ">\",": 28341,
+ "omena": 28342,
+ "▁gesam": 28343,
+ "▁Martín": 28344,
+ "egung": 28345,
+ "▁společ": 28346,
+ "▁amplitude": 28347,
+ "▁importing": 28348,
+ "▁listview": 28349,
+ "THE": 28350,
+ "ziale": 28351,
+ "cedes": 28352,
+ "▁particulier": 28353,
+ "▁Расподела": 28354,
+ "▁край": 28355,
+ "▁divent": 28356,
+ "▁ké": 28357,
+ "quit": 28358,
+ "тором": 28359,
+ "CheckBox": 28360,
+ "▁Zobacz": 28361,
+ "phe": 28362,
+ "pta": 28363,
+ "▁sjö": 28364,
+ "▁розташ": 28365,
+ "▁tedesco": 28366,
+ "▁stal": 28367,
+ "▁Beruf": 28368,
+ "овая": 28369,
+ "▁svě": 28370,
+ "▁flush": 28371,
+ "▁відбу": 28372,
+ "▁radial": 28373,
+ "▁différentes": 28374,
+ "анта": 28375,
+ "▁Perry": 28376,
+ "Coll": 28377,
+ "liqu": 28378,
+ "▁Optional": 28379,
+ "▁Санкт": 28380,
+ "▁LINQ": 28381,
+ "▁Franc": 28382,
+ "cije": 28383,
+ "▁Guillaume": 28384,
+ "know": 28385,
+ "▁Units": 28386,
+ "olk": 28387,
+ "▁Système": 28388,
+ "▁Sales": 28389,
+ "▁ehemaligen": 28390,
+ "мирова": 28391,
+ "xhtml": 28392,
+ "setopt": 28393,
+ "▁mellan": 28394,
+ "▁zie": 28395,
+ "▁giant": 28396,
+ "Board": 28397,
+ "▁Caval": 28398,
+ "▁defence": 28399,
+ "----------": 28400,
+ "pshire": 28401,
+ "mart": 28402,
+ "▁Dioc": 28403,
+ "iskt": 28404,
+ "▁inse": 28405,
+ "▁épisode": 28406,
+ "чик": 28407,
+ "bars": 28408,
+ "Sito": 28409,
+ "▁integrity": 28410,
+ "auff": 28411,
+ "▁vär": 28412,
+ "Azure": 28413,
+ "▁starb": 28414,
+ "▁контра": 28415,
+ "▁Мексичка": 28416,
+ "▁запа": 28417,
+ "▁Mountains": 28418,
+ "}}=": 28419,
+ "▁pulling": 28420,
+ "▁satellite": 28421,
+ "▁atoms": 28422,
+ "▁profesor": 28423,
+ "▁repeatedly": 28424,
+ "▁invasion": 28425,
+ "programming": 28426,
+ "├──": 28427,
+ "▁Lip": 28428,
+ "вшие": 28429,
+ "▁keen": 28430,
+ "▁critics": 28431,
+ "▁Nicola": 28432,
+ "▁Cand": 28433,
+ "▁distint": 28434,
+ "▁heading": 28435,
+ "pragma": 28436,
+ "{|": 28437,
+ "ymen": 28438,
+ "▁terrain": 28439,
+ "iedenis": 28440,
+ "▁besonders": 28441,
+ "▁nominated": 28442,
+ "BOOL": 28443,
+ "▁Kay": 28444,
+ "cian": 28445,
+ "stelle": 28446,
+ "▁dispute": 28447,
+ "▁щ": 28448,
+ "DataSet": 28449,
+ "nothing": 28450,
+ "Autom": 28451,
+ "hören": 28452,
+ "▁shed": 28453,
+ "▁paused": 28454,
+ "san": 28455,
+ "▁nunca": 28456,
+ "!(\"": 28457,
+ "▁położ": 28458,
+ "Secret": 28459,
+ "▁Domain": 28460,
+ "▁возмож": 28461,
+ "XV": 28462,
+ "lv": 28463,
+ "ikh": 28464,
+ "▁Sony": 28465,
+ "mq": 28466,
+ "otrop": 28467,
+ "▁Logger": 28468,
+ "▁threat": 28469,
+ "asted": 28470,
+ "зько": 28471,
+ "▁freely": 28472,
+ "▁improvements": 28473,
+ "istema": 28474,
+ "▁illustrate": 28475,
+ "▁tact": 28476,
+ "▁figur": 28477,
+ "ués": 28478,
+ "riminal": 28479,
+ "odon": 28480,
+ "intendo": 28481,
+ "▁influenced": 28482,
+ "FFER": 28483,
+ "▁Ghost": 28484,
+ "▁совер": 28485,
+ "nad": 28486,
+ "ioned": 28487,
+ "▁Events": 28488,
+ "▁wrapping": 28489,
+ "---------+": 28490,
+ "fif": 28491,
+ "▁(**": 28492,
+ "={{": 28493,
+ "маль": 28494,
+ "▁losses": 28495,
+ "▁Galerie": 28496,
+ "tel": 28497,
+ "▁лютого": 28498,
+ "▁Kru": 28499,
+ "▁Polen": 28500,
+ "нім": 28501,
+ "near": 28502,
+ "▁shame": 28503,
+ "▁moyenne": 28504,
+ "▁CP": 28505,
+ "preis": 28506,
+ "▁passenger": 28507,
+ "lek": 28508,
+ "ionales": 28509,
+ "kafka": 28510,
+ "▁participe": 28511,
+ "▁membership": 28512,
+ "[_": 28513,
+ "lando": 28514,
+ "stelling": 28515,
+ "Sem": 28516,
+ "gon": 28517,
+ "▁Correct": 28518,
+ "▁valle": 28519,
+ "▁readily": 28520,
+ "▁Dokument": 28521,
+ "honneur": 28522,
+ "▁testim": 28523,
+ "ulative": 28524,
+ "doFilter": 28525,
+ "▁dominant": 28526,
+ "ammer": 28527,
+ "▁која": 28528,
+ "▁Monsieur": 28529,
+ "zeg": 28530,
+ "▁війни": 28531,
+ "▁Fo": 28532,
+ "▁Amy": 28533,
+ "▁¡": 28534,
+ "▁február": 28535,
+ "▁downloading": 28536,
+ "▁leng": 28537,
+ "\\}$,": 28538,
+ "▁neat": 28539,
+ "▁Cache": 28540,
+ "ICATION": 28541,
+ "▁deve": 28542,
+ "▁sorrow": 28543,
+ "slow": 28544,
+ "▁hinaus": 28545,
+ "▁reconoc": 28546,
+ "▁Linked": 28547,
+ "▁Shaw": 28548,
+ "market": 28549,
+ "▁Dic": 28550,
+ "▁Ski": 28551,
+ "▁delimiter": 28552,
+ "▁MainActivity": 28553,
+ "▁Musical": 28554,
+ "▁Reyn": 28555,
+ "ScrollView": 28556,
+ "▁conventional": 28557,
+ "ença": 28558,
+ "▁refactor": 28559,
+ "'-": 28560,
+ "▁Hed": 28561,
+ "sprech": 28562,
+ "▁athlet": 28563,
+ "▁especies": 28564,
+ "▁Schön": 28565,
+ "▁kleinen": 28566,
+ "шко": 28567,
+ "▁Йо": 28568,
+ "▁Happy": 28569,
+ "multirow": 28570,
+ "▁augusti": 28571,
+ "▁Gand": 28572,
+ "▁appointment": 28573,
+ "▁Mediabestanden": 28574,
+ "Three": 28575,
+ "▁Kenneth": 28576,
+ "NEW": 28577,
+ "▁Notification": 28578,
+ "▁Marx": 28579,
+ "▁insc": 28580,
+ "Mor": 28581,
+ "вый": 28582,
+ "väst": 28583,
+ "vidia": 28584,
+ "▁demonstrated": 28585,
+ "fonts": 28586,
+ "▁kamen": 28587,
+ "▁Ster": 28588,
+ "▁mieszkańców": 28589,
+ "▁Koh": 28590,
+ "~$\\": 28591,
+ "»).": 28592,
+ "rene": 28593,
+ "insic": 28594,
+ "ická": 28595,
+ "xygen": 28596,
+ "▁mn": 28597,
+ "▁sched": 28598,
+ "ASC": 28599,
+ "Ig": 28600,
+ "▁Constant": 28601,
+ "▁opportun": 28602,
+ "▁MyClass": 28603,
+ "sef": 28604,
+ "oped": 28605,
+ "▁injured": 28606,
+ "VIS": 28607,
+ "▁Pero": 28608,
+ "▁Until": 28609,
+ "▁flesh": 28610,
+ "orphism": 28611,
+ "▁Portal": 28612,
+ "▁gminy": 28613,
+ "▁власти": 28614,
+ "▁Nä": 28615,
+ "ктиче": 28616,
+ "▁hrab": 28617,
+ "▁Cub": 28618,
+ "avoir": 28619,
+ "▁Lars": 28620,
+ "▁Бело": 28621,
+ "▁seizoen": 28622,
+ "▁Genomsnitt": 28623,
+ "▁Lil": 28624,
+ "▁Pool": 28625,
+ "▁Dios": 28626,
+ "TX": 28627,
+ "aes": 28628,
+ "autore": 28629,
+ "Alpha": 28630,
+ "states": 28631,
+ "Lab": 28632,
+ "nederbörd": 28633,
+ "erton": 28634,
+ "▁brid": 28635,
+ "▁richt": 28636,
+ "▁Ela": 28637,
+ "▁сла": 28638,
+ "▁weapon": 28639,
+ "▁combatt": 28640,
+ "agar": 28641,
+ "▁regnig": 28642,
+ "▁utilisé": 28643,
+ "▁servir": 28644,
+ "▁brick": 28645,
+ "▁gateway": 28646,
+ "▁torraste": 28647,
+ "▁procedures": 28648,
+ "▁årsnederbörd": 28649,
+ "▁Genomsnittlig": 28650,
+ "чёт": 28651,
+ "▁områ": 28652,
+ "▁regnigaste": 28653,
+ "▁честь": 28654,
+ "▁amid": 28655,
+ "▁grateful": 28656,
+ "▁DIS": 28657,
+ "DAY": 28658,
+ "▁ору": 28659,
+ "▁rivière": 28660,
+ "heure": 28661,
+ "▁Richmond": 28662,
+ "▁Compar": 28663,
+ "▁Нор": 28664,
+ "DOC": 28665,
+ "esia": 28666,
+ "calc": 28667,
+ "▁IU": 28668,
+ "▁vorg": 28669,
+ "▁habían": 28670,
+ "çoit": 28671,
+ "▁arist": 28672,
+ "▁кли": 28673,
+ "▁Sue": 28674,
+ "▁Touch": 28675,
+ "▁Writing": 28676,
+ "ifiable": 28677,
+ "▁wc": 28678,
+ "▁withdraw": 28679,
+ "зар": 28680,
+ "▁presently": 28681,
+ "▁FK": 28682,
+ "▁prakt": 28683,
+ "▁colored": 28684,
+ "usb": 28685,
+ "▁Perú": 28686,
+ "▁plata": 28687,
+ "▁wishes": 28688,
+ "▁кам": 28689,
+ "azar": 28690,
+ "ável": 28691,
+ "▁lamp": 28692,
+ "bishop": 28693,
+ "▁inclusion": 28694,
+ "jq": 28695,
+ "arth": 28696,
+ "▁Flag": 28697,
+ "▁нор": 28698,
+ "ædia": 28699,
+ "UNCTION": 28700,
+ "▁Bahnhof": 28701,
+ "▁approaching": 28702,
+ "▁Gött": 28703,
+ "▁cube": 28704,
+ "▁argued": 28705,
+ "▁Things": 28706,
+ "Gui": 28707,
+ "дови": 28708,
+ "▁recre": 28709,
+ "▁réseau": 28710,
+ "▁significa": 28711,
+ "Git": 28712,
+ "gebracht": 28713,
+ "▁liga": 28714,
+ "▁assured": 28715,
+ "alus": 28716,
+ "рит": 28717,
+ "▁энциклопеди": 28718,
+ "▁%).": 28719,
+ "▁Première": 28720,
+ "▁declarations": 28721,
+ "▁tricky": 28722,
+ "▁profiles": 28723,
+ "▁Fon": 28724,
+ "▁Jas": 28725,
+ "âr": 28726,
+ "babel": 28727,
+ "▁Friday": 28728,
+ "▁június": 28729,
+ "▁cols": 28730,
+ "▁EXISTS": 28731,
+ "▁Italiana": 28732,
+ "▁authorization": 28733,
+ "▁sulle": 28734,
+ "▁Emb": 28735,
+ "▁Variable": 28736,
+ "trees": 28737,
+ "▁Fly": 28738,
+ "riors": 28739,
+ "▁damals": 28740,
+ "▁findet": 28741,
+ "▁Sept": 28742,
+ "▁mundial": 28743,
+ "▁removal": 28744,
+ "▁longitude": 28745,
+ "clic": 28746,
+ "▁fade": 28747,
+ "▁gradle": 28748,
+ "▁zák": 28749,
+ "▁timing": 28750,
+ "trightarrow": 28751,
+ "atia": 28752,
+ "-.": 28753,
+ "uche": 28754,
+ "▁serialize": 28755,
+ "▁Hmm": 28756,
+ "▁Representatives": 28757,
+ "bah": 28758,
+ "rend": 28759,
+ "assador": 28760,
+ "▁shield": 28761,
+ "ucion": 28762,
+ "▁américaine": 28763,
+ "zę": 28764,
+ "villa": 28765,
+ "▁hombre": 28766,
+ "áss": 28767,
+ "▁SF": 28768,
+ "▁repeating": 28769,
+ "▁criter": 28770,
+ "▁Struct": 28771,
+ "???": 28772,
+ "▁cheap": 28773,
+ "▁rings": 28774,
+ "abhäng": 28775,
+ "▁corte": 28776,
+ "▁administ": 28777,
+ "ixon": 28778,
+ "gypt": 28779,
+ "▁puntos": 28780,
+ "▁mezi": 28781,
+ "▁pochod": 28782,
+ "isko": 28783,
+ "nię": 28784,
+ "▁осу": 28785,
+ "▁ár": 28786,
+ "тельной": 28787,
+ "▁Metropolitan": 28788,
+ "jin": 28789,
+ "zess": 28790,
+ "▁віці": 28791,
+ "▁conflicts": 28792,
+ "ijst": 28793,
+ "▁Market": 28794,
+ "стров": 28795,
+ "▁\",\"": 28796,
+ "▁Scroll": 28797,
+ "gun": 28798,
+ "тара": 28799,
+ "▁amateur": 28800,
+ "▁róż": 28801,
+ "poss": 28802,
+ "▁generalized": 28803,
+ "▁Harm": 28804,
+ "cita": 28805,
+ "▁Switzerland": 28806,
+ "icola": 28807,
+ "▁muit": 28808,
+ "located": 28809,
+ "▁có": 28810,
+ "▁arose": 28811,
+ "▁communauté": 28812,
+ "})^": 28813,
+ "visibility": 28814,
+ "ída": 28815,
+ "▁FB": 28816,
+ "▁Freund": 28817,
+ "gat": 28818,
+ "\":{\"": 28819,
+ "intellij": 28820,
+ "ifie": 28821,
+ "hmen": 28822,
+ "▁édition": 28823,
+ "▁које": 28824,
+ "▁інших": 28825,
+ "oming": 28826,
+ "▁arquitect": 28827,
+ "▁Presidente": 28828,
+ "▁Під": 28829,
+ "▁cabin": 28830,
+ "Theorem": 28831,
+ "▁Gay": 28832,
+ "ifice": 28833,
+ "▁hect": 28834,
+ "lą": 28835,
+ "irmingham": 28836,
+ "▁semantic": 28837,
+ "▁Louisiana": 28838,
+ "▁sacrifice": 28839,
+ "▁Christoph": 28840,
+ "▁Executive": 28841,
+ "_+": 28842,
+ "ják": 28843,
+ "▁seria": 28844,
+ "▁Overflow": 28845,
+ "▁Lucy": 28846,
+ "▁melhor": 28847,
+ "▁voices": 28848,
+ "cza": 28849,
+ "▁капи": 28850,
+ "▁университета": 28851,
+ "INCT": 28852,
+ "▁coloc": 28853,
+ "▁prue": 28854,
+ "▁geomet": 28855,
+ "▁diretto": 28856,
+ "reso": 28857,
+ "▁Akt": 28858,
+ "▁unh": 28859,
+ "▁сери": 28860,
+ "▁Alert": 28861,
+ "Wel": 28862,
+ "audi": 28863,
+ "äler": 28864,
+ "▁guests": 28865,
+ "▁иде": 28866,
+ "Studio": 28867,
+ "▁кате": 28868,
+ "▁exponent": 28869,
+ "rze": 28870,
+ "pmod": 28871,
+ "rolle": 28872,
+ "▁Limited": 28873,
+ "Allemagne": 28874,
+ "▁pity": 28875,
+ "▁lä": 28876,
+ "▁runner": 28877,
+ "kende": 28878,
+ "EQ": 28879,
+ "▁MM": 28880,
+ "szág": 28881,
+ "поді": 28882,
+ "▁regret": 28883,
+ "▁publié": 28884,
+ "▁departamento": 28885,
+ "▁accused": 28886,
+ "hp": 28887,
+ "▁Pfl": 28888,
+ "▁Sint": 28889,
+ "▁ekonom": 28890,
+ "ractor": 28891,
+ "▁Пів": 28892,
+ "▁awful": 28893,
+ "ować": 28894,
+ "]->": 28895,
+ "▁Fine": 28896,
+ "Са": 28897,
+ "tis": 28898,
+ "éta": 28899,
+ "▁Роди": 28900,
+ "▁Düsseldorf": 28901,
+ "LOB": 28902,
+ "osas": 28903,
+ "werke": 28904,
+ "▁lance": 28905,
+ "▁листопада": 28906,
+ "▁incomplete": 28907,
+ "▁Picture": 28908,
+ "('\\": 28909,
+ "esters": 28910,
+ "▁belonged": 28911,
+ "▁Sank": 28912,
+ "ammed": 28913,
+ "▁repositories": 28914,
+ "▁addr": 28915,
+ "Collect": 28916,
+ "Hot": 28917,
+ "▁tyl": 28918,
+ "▁instanceof": 28919,
+ "▁bonus": 28920,
+ "ový": 28921,
+ "▁моря": 28922,
+ "▁interactive": 28923,
+ "▁Mys": 28924,
+ "▁Edmund": 28925,
+ "fileName": 28926,
+ "emor": 28927,
+ "▁Три": 28928,
+ "▁Rosen": 28929,
+ "▁Prima": 28930,
+ "▁voting": 28931,
+ "▁XP": 28932,
+ "▁Zero": 28933,
+ "▁Led": 28934,
+ "amsung": 28935,
+ "▁enables": 28936,
+ "▁redirects": 28937,
+ "AST": 28938,
+ "Paint": 28939,
+ "acker": 28940,
+ "lecht": 28941,
+ "▁chairman": 28942,
+ "▁Aven": 28943,
+ "▁Sach": 28944,
+ "(\"<": 28945,
+ "кер": 28946,
+ "▁mistakes": 28947,
+ "▁Weit": 28948,
+ "▁prowad": 28949,
+ "▁didnt": 28950,
+ "énario": 28951,
+ "unless": 28952,
+ "▁backwards": 28953,
+ "boa": 28954,
+ "duino": 28955,
+ "```": 28956,
+ "stor": 28957,
+ "Completion": 28958,
+ "puesta": 28959,
+ "▁dinast": 28960,
+ "últ": 28961,
+ "▁SY": 28962,
+ "ifolia": 28963,
+ "œuvres": 28964,
+ "▁racing": 28965,
+ "▁cabinet": 28966,
+ "▁cutting": 28967,
+ "▁thumb": 28968,
+ "▁Кара": 28969,
+ "highlight": 28970,
+ "куп": 28971,
+ "▁sd": 28972,
+ "▁національ": 28973,
+ "▁campagne": 28974,
+ "▁registers": 28975,
+ "▁educational": 28976,
+ "▁pesar": 28977,
+ "üge": 28978,
+ "▁oro": 28979,
+ "burgo": 28980,
+ "▁Athletics": 28981,
+ "▁MTV": 28982,
+ "getMessage": 28983,
+ "▁Hyp": 28984,
+ "▁victim": 28985,
+ "))\\": 28986,
+ "▁drums": 28987,
+ "hostname": 28988,
+ "tał": 28989,
+ "making": 28990,
+ "▁powiat": 28991,
+ "őd": 28992,
+ "threads": 28993,
+ "▁absolv": 28994,
+ "▁люди": 28995,
+ "▁stepped": 28996,
+ "exist": 28997,
+ "▁NK": 28998,
+ "▁ves": 28999,
+ "istiche": 29000,
+ "%'": 29001,
+ "ativos": 29002,
+ "▁такой": 29003,
+ "▁MongoDB": 29004,
+ "▁Ung": 29005,
+ "▁Рус": 29006,
+ "▁elim": 29007,
+ "▁Fif": 29008,
+ "icación": 29009,
+ "▁Tennis": 29010,
+ "▁Jefferson": 29011,
+ "ján": 29012,
+ "fog": 29013,
+ "anha": 29014,
+ "zor": 29015,
+ "▁університе": 29016,
+ "ahu": 29017,
+ "iada": 29018,
+ "Sdk": 29019,
+ "Setting": 29020,
+ "▁Kill": 29021,
+ "▁Wend": 29022,
+ "▁bald": 29023,
+ "▁Kub": 29024,
+ "▁visto": 29025,
+ "▁jeunes": 29026,
+ "collections": 29027,
+ "ací": 29028,
+ "вропей": 29029,
+ "▁arise": 29030,
+ "оні": 29031,
+ "MAIN": 29032,
+ "доступ": 29033,
+ "▁berg": 29034,
+ "▁criticism": 29035,
+ "▁Torre": 29036,
+ "▁descript": 29037,
+ "ières": 29038,
+ "▁estudio": 29039,
+ "▁ili": 29040,
+ "▁militare": 29041,
+ "▁Clara": 29042,
+ "▁Ellen": 29043,
+ "limited": 29044,
+ "лм": 29045,
+ "▁Españ": 29046,
+ "▁infinitely": 29047,
+ "America": 29048,
+ "ouc": 29049,
+ "glass": 29050,
+ "▁rud": 29051,
+ "▁zat": 29052,
+ "▁rin": 29053,
+ "▁Bibliografía": 29054,
+ "▁merchant": 29055,
+ "tensorflow": 29056,
+ "▁dér": 29057,
+ "▁ActiveRecord": 29058,
+ "IES": 29059,
+ "▁linker": 29060,
+ "▁estudios": 29061,
+ "cdnjs": 29062,
+ "▁Государ": 29063,
+ "ánchez": 29064,
+ "appe": 29065,
+ "club": 29066,
+ "▁další": 29067,
+ "▁Algorithm": 29068,
+ "dfs": 29069,
+ "▁Bac": 29070,
+ "▁кафе": 29071,
+ "▁&=\\": 29072,
+ "▁ат": 29073,
+ "▁Глав": 29074,
+ "▁Mou": 29075,
+ "Machine": 29076,
+ "(...)": 29077,
+ "▁compart": 29078,
+ "▁augusztus": 29079,
+ "avan": 29080,
+ "▁rolled": 29081,
+ "▁еди": 29082,
+ "Scan": 29083,
+ "▁регі": 29084,
+ "▁świata": 29085,
+ "▁mines": 29086,
+ "},{": 29087,
+ "▁Tier": 29088,
+ "Cannot": 29089,
+ "мін": 29090,
+ "▁NEW": 29091,
+ "▁Вол": 29092,
+ "▁Manh": 29093,
+ "▁Gregory": 29094,
+ "▁principe": 29095,
+ "ISO": 29096,
+ "prog": 29097,
+ "▁Fail": 29098,
+ "▁aa": 29099,
+ "▁fecha": 29100,
+ "▁WCF": 29101,
+ "▁magistr": 29102,
+ "▁Zach": 29103,
+ "▁unicode": 29104,
+ "▁converter": 29105,
+ "▁dispers": 29106,
+ "ksam": 29107,
+ "▁Uncle": 29108,
+ "PropertyChanged": 29109,
+ "▁lider": 29110,
+ "▁opts": 29111,
+ "▁там": 29112,
+ "locked": 29113,
+ "zak": 29114,
+ "▁counted": 29115,
+ "▁persone": 29116,
+ "▁hurried": 29117,
+ "ätter": 29118,
+ "▁outras": 29119,
+ "▁genu": 29120,
+ "BD": 29121,
+ "veg": 29122,
+ "due": 29123,
+ "▁Pract": 29124,
+ "▁posible": 29125,
+ "▁contribute": 29126,
+ "UMN": 29127,
+ "▁Bürger": 29128,
+ "▁wars": 29129,
+ "▁exhibition": 29130,
+ "hill": 29131,
+ "▁astr": 29132,
+ "▁музе": 29133,
+ "▁CASE": 29134,
+ "manifest": 29135,
+ "yellow": 29136,
+ "Fn": 29137,
+ "▁RC": 29138,
+ "▁sott": 29139,
+ "▁sujet": 29140,
+ "▁Socket": 29141,
+ "▁Chine": 29142,
+ "▁frameworks": 29143,
+ "Hold": 29144,
+ "êts": 29145,
+ "▁філь": 29146,
+ "Loaded": 29147,
+ "ophe": 29148,
+ "texte": 29149,
+ "▁expres": 29150,
+ "▁consume": 29151,
+ "▁Richtung": 29152,
+ "ografi": 29153,
+ "▁magnific": 29154,
+ "àt": 29155,
+ "▁indul": 29156,
+ "ryty": 29157,
+ "▁offici": 29158,
+ "▁assault": 29159,
+ "rund": 29160,
+ "▁variants": 29161,
+ "▁сельсов": 29162,
+ "▁excitement": 29163,
+ "Times": 29164,
+ "kotlin": 29165,
+ "▁gering": 29166,
+ "▁Engel": 29167,
+ "▁Timer": 29168,
+ "²).": 29169,
+ "▁Ng": 29170,
+ "ässt": 29171,
+ "schau": 29172,
+ "SError": 29173,
+ "▁Edwards": 29174,
+ "▁Terminal": 29175,
+ "lict": 29176,
+ "Under": 29177,
+ "▁spawn": 29178,
+ "ürgen": 29179,
+ "▁Außerdem": 29180,
+ "▁kitchen": 29181,
+ "fahrt": 29182,
+ "▁Colors": 29183,
+ "▁система": 29184,
+ "▁terminated": 29185,
+ "▁LaTeX": 29186,
+ "igkeiten": 29187,
+ "▁mesure": 29188,
+ "▁Amts": 29189,
+ "▁empir": 29190,
+ "▁striking": 29191,
+ "▁exclusive": 29192,
+ "тех": 29193,
+ "▁rez": 29194,
+ "▁quan": 29195,
+ "▁Glasgow": 29196,
+ "▁lecture": 29197,
+ "▁Testament": 29198,
+ "▁funds": 29199,
+ "▁stessa": 29200,
+ "▁tribes": 29201,
+ "▁parfois": 29202,
+ "▁treball": 29203,
+ "nitz": 29204,
+ "bove": 29205,
+ "▁заслу": 29206,
+ "▁absent": 29207,
+ "▁Lauf": 29208,
+ "Smith": 29209,
+ "▁Николай": 29210,
+ "▁européenne": 29211,
+ "lr": 29212,
+ "▁programma": 29213,
+ "▁midst": 29214,
+ "▁daughters": 29215,
+ "Syn": 29216,
+ "oben": 29217,
+ "ână": 29218,
+ "idan": 29219,
+ "▁ther": 29220,
+ "odore": 29221,
+ "sdl": 29222,
+ "▁Quint": 29223,
+ "▁casos": 29224,
+ "▁Zam": 29225,
+ "▁страны": 29226,
+ "▁sprite": 29227,
+ "кал": 29228,
+ "▁nasc": 29229,
+ "▁сотруд": 29230,
+ "▁trava": 29231,
+ "▁хозяй": 29232,
+ "▁Uruguay": 29233,
+ "▁sparse": 29234,
+ "▁поле": 29235,
+ "▁mystery": 29236,
+ "▁Mang": 29237,
+ "registr": 29238,
+ "▁CGFloat": 29239,
+ "▁submission": 29240,
+ "вана": 29241,
+ "▁\":": 29242,
+ "▁Traceback": 29243,
+ "▁Pit": 29244,
+ "▁Ehr": 29245,
+ "▁сра": 29246,
+ "▁Graphics": 29247,
+ "Updated": 29248,
+ "▁svensk": 29249,
+ "▁spacing": 29250,
+ "tritt": 29251,
+ "▁Guinea": 29252,
+ "▁França": 29253,
+ "Associ": 29254,
+ "▁Tová": 29255,
+ "stab": 29256,
+ "▁Learning": 29257,
+ "▁Bright": 29258,
+ "śc": 29259,
+ "▁idő": 29260,
+ "}}_{\\": 29261,
+ "▁droite": 29262,
+ "▁raising": 29263,
+ "getting": 29264,
+ "ythm": 29265,
+ "onyme": 29266,
+ "żs": 29267,
+ "▁blah": 29268,
+ "TagName": 29269,
+ "Vertical": 29270,
+ "▁aper": 29271,
+ "postgresql": 29272,
+ "▁Handle": 29273,
+ "zew": 29274,
+ "▁skulle": 29275,
+ "▁opere": 29276,
+ "layers": 29277,
+ "▁possono": 29278,
+ "▁relate": 29279,
+ "ąc": 29280,
+ "▁Mih": 29281,
+ "âge": 29282,
+ "▁Świ": 29283,
+ "isses": 29284,
+ "▁servlet": 29285,
+ "Los": 29286,
+ "▁Advanced": 29287,
+ "atica": 29288,
+ "▁ced": 29289,
+ "▁elementos": 29290,
+ "рона": 29291,
+ "iks": 29292,
+ "arf": 29293,
+ "ariat": 29294,
+ "Mobile": 29295,
+ "agua": 29296,
+ "▁timp": 29297,
+ "▁Comité": 29298,
+ "▁combining": 29299,
+ "wohl": 29300,
+ "▁Study": 29301,
+ "coordinate": 29302,
+ "▁recommendation": 29303,
+ "▁transformations": 29304,
+ "until": 29305,
+ "bounded": 29306,
+ "▁изу": 29307,
+ "hanced": 29308,
+ "▁вопро": 29309,
+ "▁Prés": 29310,
+ "▁coord": 29311,
+ "xty": 29312,
+ "▁$,": 29313,
+ "▁champions": 29314,
+ "Den": 29315,
+ "Mil": 29316,
+ "(',": 29317,
+ "▁Preis": 29318,
+ "▁eigh": 29319,
+ "▁markers": 29320,
+ "▁gewesen": 29321,
+ "ätten": 29322,
+ "▁pione": 29323,
+ "mv": 29324,
+ "▁ју": 29325,
+ "zeichnis": 29326,
+ "hoff": 29327,
+ "News": 29328,
+ "▁Stanisław": 29329,
+ "▁Brandenburg": 29330,
+ "▁Feuer": 29331,
+ "=&": 29332,
+ "жет": 29333,
+ "▁Neil": 29334,
+ "▁wirk": 29335,
+ "▁società": 29336,
+ "▁spare": 29337,
+ "▁civile": 29338,
+ "sprach": 29339,
+ "▁disse": 29340,
+ "▁gates": 29341,
+ "▁anom": 29342,
+ "▁Федерации": 29343,
+ "▁tib": 29344,
+ "▁fútbol": 29345,
+ "▁Wikiped": 29346,
+ "iate": 29347,
+ "Front": 29348,
+ "▁craw": 29349,
+ "▁Rak": 29350,
+ "▁зву": 29351,
+ "street": 29352,
+ "▁Agency": 29353,
+ "вало": 29354,
+ "▁Рас": 29355,
+ "▁mkdir": 29356,
+ "ację": 29357,
+ "▁shares": 29358,
+ "Story": 29359,
+ "▁remarks": 29360,
+ "▁keywords": 29361,
+ "Bob": 29362,
+ "▁toe": 29363,
+ "▁Vitt": 29364,
+ "▁rhs": 29365,
+ "ROP": 29366,
+ "oris": 29367,
+ "/@": 29368,
+ "сии": 29369,
+ "▁traverse": 29370,
+ "▁referencing": 29371,
+ "präsident": 29372,
+ "rong": 29373,
+ "'):": 29374,
+ "aties": 29375,
+ "AW": 29376,
+ "Outlet": 29377,
+ "▁évol": 29378,
+ "ikes": 29379,
+ "▁environmental": 29380,
+ "icum": 29381,
+ "▁Lied": 29382,
+ "▁warn": 29383,
+ "▁Butler": 29384,
+ "▁%),": 29385,
+ "▁Zeitschrift": 29386,
+ "▁Montr": 29387,
+ "важа": 29388,
+ "▁Mercur": 29389,
+ "jekte": 29390,
+ "meter": 29391,
+ "ducation": 29392,
+ "▁attributed": 29393,
+ "*$": 29394,
+ "▁unf": 29395,
+ "▁Vertrag": 29396,
+ "zien": 29397,
+ "▁Роб": 29398,
+ "lices": 29399,
+ "pply": 29400,
+ "ansen": 29401,
+ "▁zeit": 29402,
+ "▁immense": 29403,
+ "▁lutego": 29404,
+ "▁Bulgar": 29405,
+ "▁miembros": 29406,
+ "▁Националь": 29407,
+ "▁Allow": 29408,
+ "▁anglès": 29409,
+ "дви": 29410,
+ "▁Toy": 29411,
+ "туа": 29412,
+ "▁yard": 29413,
+ "(%": 29414,
+ "isser": 29415,
+ "▁golf": 29416,
+ "▁Ukrain": 29417,
+ "▁hosp": 29418,
+ "Include": 29419,
+ "▁Lisa": 29420,
+ "▁csal": 29421,
+ "▁Mira": 29422,
+ "recogn": 29423,
+ "▁Ке": 29424,
+ "▁hitting": 29425,
+ "кономі": 29426,
+ "▁Tournament": 29427,
+ "LOAD": 29428,
+ "▁Guardian": 29429,
+ "▁daher": 29430,
+ "▁timezone": 29431,
+ "▁tomcat": 29432,
+ "▁successor": 29433,
+ "▁Void": 29434,
+ "▁começ": 29435,
+ "▁converts": 29436,
+ "ächs": 29437,
+ "osex": 29438,
+ "xelles": 29439,
+ "aser": 29440,
+ "▁És": 29441,
+ "▁mou": 29442,
+ "▁ung": 29443,
+ "▁origen": 29444,
+ "▁Crow": 29445,
+ "▁Erd": 29446,
+ "▁sieben": 29447,
+ "lua": 29448,
+ "▁BB": 29449,
+ "RENT": 29450,
+ "▁piłkar": 29451,
+ "▁marque": 29452,
+ "▁Labour": 29453,
+ "viders": 29454,
+ "▁exempl": 29455,
+ "Sound": 29456,
+ "▁Wass": 29457,
+ "arrison": 29458,
+ "▁течение": 29459,
+ "▁Oficina": 29460,
+ "▁Daw": 29461,
+ "▁Kauf": 29462,
+ "ént": 29463,
+ "éső": 29464,
+ "▁=\"": 29465,
+ "▁kat": 29466,
+ "diction": 29467,
+ "▁Voll": 29468,
+ "▁highway": 29469,
+ "James": 29470,
+ "zeuge": 29471,
+ "▁modelo": 29472,
+ "Throw": 29473,
+ "▁Forum": 29474,
+ "(\"@": 29475,
+ "▁enfer": 29476,
+ "▁специаль": 29477,
+ "Numbers": 29478,
+ "▁Binary": 29479,
+ "▁Martínez": 29480,
+ "▁Stato": 29481,
+ "▁festiv": 29482,
+ "▁katol": 29483,
+ "▁Аб": 29484,
+ "▁limitation": 29485,
+ "▁STR": 29486,
+ "▁Официаль": 29487,
+ "ipes": 29488,
+ "▁Isn": 29489,
+ "▁ruled": 29490,
+ "▁cí": 29491,
+ "geber": 29492,
+ "▁lavoro": 29493,
+ "▁parentheses": 29494,
+ "оз": 29495,
+ "▁équipes": 29496,
+ "▁efficiently": 29497,
+ "▁Period": 29498,
+ "▁Regarding": 29499,
+ "leaf": 29500,
+ "▁similarity": 29501,
+ "▁gesture": 29502,
+ "datab": 29503,
+ "▁terminate": 29504,
+ "▁semantics": 29505,
+ "▁Alo": 29506,
+ "▁cig": 29507,
+ "▁OpenGL": 29508,
+ "▁heutigen": 29509,
+ "xaml": 29510,
+ "▁frequencies": 29511,
+ ")}.": 29512,
+ "▁threatened": 29513,
+ "тик": 29514,
+ "▁calcio": 29515,
+ "▁Riemann": 29516,
+ "slug": 29517,
+ "▁Finale": 29518,
+ "LR": 29519,
+ "▁Derby": 29520,
+ "▁още": 29521,
+ "▁deviation": 29522,
+ "ächen": 29523,
+ "▁Cris": 29524,
+ "ново": 29525,
+ "▁столі": 29526,
+ "▁relev": 29527,
+ "▁splendid": 29528,
+ "▁учё": 29529,
+ "erving": 29530,
+ "gable": 29531,
+ "▁générale": 29532,
+ "pom": 29533,
+ "▁Cheers": 29534,
+ "▁imprison": 29535,
+ "▁indent": 29536,
+ "▁analyz": 29537,
+ "▁revert": 29538,
+ "érer": 29539,
+ "▁phases": 29540,
+ "FirstName": 29541,
+ "▁mig": 29542,
+ "▁disturb": 29543,
+ "▁mixture": 29544,
+ "▁){": 29545,
+ "inture": 29546,
+ "▁Tried": 29547,
+ "▁sooner": 29548,
+ "▁pels": 29549,
+ "▁établ": 29550,
+ "etro": 29551,
+ "itie": 29552,
+ "▁quartier": 29553,
+ "▁гово": 29554,
+ "▁város": 29555,
+ "ufe": 29556,
+ "heten": 29557,
+ "хом": 29558,
+ "▁soap": 29559,
+ "utors": 29560,
+ "▁duch": 29561,
+ "syntax": 29562,
+ "▁tribe": 29563,
+ "▁chante": 29564,
+ "Tri": 29565,
+ "▁Mate": 29566,
+ "quality": 29567,
+ "uola": 29568,
+ "=\".": 29569,
+ "chk": 29570,
+ "▁всі": 29571,
+ "▁przeci": 29572,
+ "▁Meteor": 29573,
+ "▁scattered": 29574,
+ "Plus": 29575,
+ "trad": 29576,
+ "▁stackoverflow": 29577,
+ "▁retra": 29578,
+ "▁éditions": 29579,
+ "▁sain": 29580,
+ "cribe": 29581,
+ "ignon": 29582,
+ "ucker": 29583,
+ "▁мало": 29584,
+ "▁tenir": 29585,
+ "▁exports": 29586,
+ "▁auxili": 29587,
+ "▁]]": 29588,
+ "▁CBS": 29589,
+ "uniform": 29590,
+ "▁periodic": 29591,
+ "agrant": 29592,
+ "▁emple": 29593,
+ "Wil": 29594,
+ "▁fres": 29595,
+ "▁strutt": 29596,
+ "▁світ": 29597,
+ "▁betre": 29598,
+ "▁объек": 29599,
+ "тися": 29600,
+ "▁bisher": 29601,
+ "baum": 29602,
+ "ishi": 29603,
+ "▁Gazette": 29604,
+ "backgroundColor": 29605,
+ "jl": 29606,
+ "▁fiel": 29607,
+ "▁према": 29608,
+ "▁protagonista": 29609,
+ "▁Muhammad": 29610,
+ "▁simulate": 29611,
+ "▁Hook": 29612,
+ "fest": 29613,
+ "▁своих": 29614,
+ "Sender": 29615,
+ "▁listened": 29616,
+ "жі": 29617,
+ "jest": 29618,
+ "kord": 29619,
+ "Choice": 29620,
+ "▁hoofd": 29621,
+ "reducible": 29622,
+ "hpp": 29623,
+ "▁Wu": 29624,
+ "ši": 29625,
+ "▁Marse": 29626,
+ "▁soir": 29627,
+ "westen": 29628,
+ "emos": 29629,
+ "▁Duc": 29630,
+ "▁amerik": 29631,
+ "|}{": 29632,
+ "▁Gul": 29633,
+ "▁Sprache": 29634,
+ "▁mismatch": 29635,
+ "Scal": 29636,
+ "Pixel": 29637,
+ "EF": 29638,
+ "▁Sep": 29639,
+ "▁powiecie": 29640,
+ "urk": 29641,
+ "▁Napoli": 29642,
+ "▁neighbourhood": 29643,
+ "стоян": 29644,
+ "▁searches": 29645,
+ "yrus": 29646,
+ "пет": 29647,
+ "Help": 29648,
+ "pont": 29649,
+ "▁Orient": 29650,
+ "▁Alfonso": 29651,
+ "▁monitoring": 29652,
+ "iao": 29653,
+ "édé": 29654,
+ "▁César": 29655,
+ "шее": 29656,
+ "Shift": 29657,
+ "suit": 29658,
+ "coded": 29659,
+ "ното": 29660,
+ "▁Parti": 29661,
+ "▁lasci": 29662,
+ "▁awesome": 29663,
+ "usta": 29664,
+ "▁Сове": 29665,
+ "▁Fland": 29666,
+ "oom": 29667,
+ "▁devi": 29668,
+ "engelsk": 29669,
+ "endum": 29670,
+ "▁Pascal": 29671,
+ "▁Bind": 29672,
+ "▁siguientes": 29673,
+ "JB": 29674,
+ "▁Petersburg": 29675,
+ "▁incorrectly": 29676,
+ "▁Bash": 29677,
+ "▁pelos": 29678,
+ "▁zespo": 29679,
+ "NSURL": 29680,
+ "▁přek": 29681,
+ "▁Crime": 29682,
+ "nach": 29683,
+ "▁thrust": 29684,
+ "▁Cultura": 29685,
+ "WF": 29686,
+ "▁Solo": 29687,
+ "▁invas": 29688,
+ "▁individually": 29689,
+ "ibm": 29690,
+ "▁etapa": 29691,
+ "▁handed": 29692,
+ "▁wherever": 29693,
+ "▁interpolation": 29694,
+ "▁musée": 29695,
+ "▁CNN": 29696,
+ "idia": 29697,
+ "ństw": 29698,
+ "▁przew": 29699,
+ "ughing": 29700,
+ "▁actors": 29701,
+ "▁Oriental": 29702,
+ "▁convenience": 29703,
+ "▁miasta": 29704,
+ "brains": 29705,
+ "▁меся": 29706,
+ "▁infatti": 29707,
+ "▁AllMovie": 29708,
+ "▁critique": 29709,
+ "▁successo": 29710,
+ "ancouver": 29711,
+ "▁fá": 29712,
+ "ългар": 29713,
+ "▁wisdom": 29714,
+ "▁Phoenix": 29715,
+ "hole": 29716,
+ "▁información": 29717,
+ "▁Airlines": 29718,
+ ".«": 29719,
+ "mort": 29720,
+ "userId": 29721,
+ "▁*/\r": 29722,
+ "▁Congo": 29723,
+ "▁\"`": 29724,
+ "corr": 29725,
+ "▁problemas": 29726,
+ "▁bib": 29727,
+ "▁później": 29728,
+ "▁fileName": 29729,
+ "zott": 29730,
+ "macht": 29731,
+ "▁Ulrich": 29732,
+ "Cy": 29733,
+ "endpoint": 29734,
+ "▁sheep": 29735,
+ "▁ibn": 29736,
+ "Feed": 29737,
+ "▁sympathy": 29738,
+ "▁Ib": 29739,
+ "▁territorial": 29740,
+ "rating": 29741,
+ "дами": 29742,
+ "▁dst": 29743,
+ "ую": 29744,
+ "aho": 29745,
+ "▁sug": 29746,
+ "emia": 29747,
+ "▁ted": 29748,
+ "▁Api": 29749,
+ "▁Rica": 29750,
+ "▁MR": 29751,
+ "ńskim": 29752,
+ "▁Voor": 29753,
+ "▁devil": 29754,
+ "▁Фо": 29755,
+ "▁När": 29756,
+ "▁...)": 29757,
+ "▁vois": 29758,
+ "▁abbre": 29759,
+ "▁Männer": 29760,
+ "ximo": 29761,
+ "▁intellectual": 29762,
+ "▁tales": 29763,
+ "similar": 29764,
+ "neum": 29765,
+ "▁Orig": 29766,
+ "▁postal": 29767,
+ "▁hvor": 29768,
+ "▁identification": 29769,
+ "▁Од": 29770,
+ "uesto": 29771,
+ "▁../": 29772,
+ "▁bir": 29773,
+ "▁Лон": 29774,
+ "▁esempio": 29775,
+ "▁Eing": 29776,
+ "Expand": 29777,
+ "▁PRIMARY": 29778,
+ "▁Jin": 29779,
+ "▁však": 29780,
+ "ourses": 29781,
+ "▁Betty": 29782,
+ "▁WM": 29783,
+ "▁flask": 29784,
+ "hlen": 29785,
+ "▁Adel": 29786,
+ "laravel": 29787,
+ "▁дет": 29788,
+ "ською": 29789,
+ "▁Mundo": 29790,
+ "iczn": 29791,
+ "ifié": 29792,
+ "▁Мор": 29793,
+ "▁древ": 29794,
+ "DateFormat": 29795,
+ "ським": 29796,
+ "▁dated": 29797,
+ "коли": 29798,
+ "▁результате": 29799,
+ "\\).": 29800,
+ "▁delayed": 29801,
+ "sound": 29802,
+ "▁Мак": 29803,
+ "▁\"...": 29804,
+ "▁binnen": 29805,
+ "▁факуль": 29806,
+ "▁polygon": 29807,
+ "▁eggs": 29808,
+ "AtIndexPath": 29809,
+ "менталь": 29810,
+ "▁incred": 29811,
+ "chunk": 29812,
+ "webdriver": 29813,
+ "▁свобо": 29814,
+ "▁między": 29815,
+ "Received": 29816,
+ "▁Monde": 29817,
+ "▁JQuery": 29818,
+ "Butt": 29819,
+ "▁PDO": 29820,
+ "▁forec": 29821,
+ "▁discipline": 29822,
+ "chev": 29823,
+ "нат": 29824,
+ "▁redis": 29825,
+ "▁hunting": 29826,
+ "▁alk": 29827,
+ "▁proofs": 29828,
+ "PRI": 29829,
+ "▁chip": 29830,
+ "ésie": 29831,
+ "▁HO": 29832,
+ "▁rug": 29833,
+ "zos": 29834,
+ "▁sorte": 29835,
+ "▁zeigt": 29836,
+ "▁Physics": 29837,
+ "legte": 29838,
+ "▁proportional": 29839,
+ "▁toolbar": 29840,
+ "vement": 29841,
+ "notin": 29842,
+ "▁první": 29843,
+ "blah": 29844,
+ "▁présence": 29845,
+ "▁lloc": 29846,
+ "▁líder": 29847,
+ "▁Accept": 29848,
+ "▁Always": 29849,
+ "▁\"{": 29850,
+ "▁diversi": 29851,
+ "ikor": 29852,
+ "Period": 29853,
+ "жён": 29854,
+ "▁Alliance": 29855,
+ "▁relay": 29856,
+ "Bro": 29857,
+ "jön": 29858,
+ "▁Baud": 29859,
+ "▁Bian": 29860,
+ "')[": 29861,
+ "чив": 29862,
+ "▁Poss": 29863,
+ "▁Mitglieder": 29864,
+ "▁nev": 29865,
+ "Daniel": 29866,
+ "▁tends": 29867,
+ "▁compagnie": 29868,
+ "▁livres": 29869,
+ "lub": 29870,
+ "▁": 29871,
+ "e": 29872,
+ "t": 29873,
+ "a": 29874,
+ "i": 29875,
+ "n": 29876,
+ "o": 29877,
+ "r": 29878,
+ "s": 29879,
+ "l": 29880,
+ "d": 29881,
+ "h": 29882,
+ "c": 29883,
+ "u": 29884,
+ "m": 29885,
+ "p": 29886,
+ "g": 29887,
+ "f": 29888,
+ ".": 29889,
+ "b": 29890,
+ "y": 29891,
+ ",": 29892,
+ "w": 29893,
+ "v": 29894,
+ "k": 29895,
+ "1": 29896,
+ ")": 29897,
+ "(": 29898,
+ "-": 29899,
+ "0": 29900,
+ ":": 29901,
+ "I": 29902,
+ "S": 29903,
+ "о": 29904,
+ "\\": 29905,
+ "2": 29906,
+ "C": 29907,
+ "\"": 29908,
+ "A": 29909,
+ "а": 29910,
+ "T": 29911,
+ "{": 29912,
+ "}": 29913,
+ "/": 29914,
+ "'": 29915,
+ "x": 29916,
+ "и": 29917,
+ "_": 29918,
+ "е": 29919,
+ "z": 29920,
+ "н": 29921,
+ "=": 29922,
+ "E": 29923,
+ "M": 29924,
+ "P": 29925,
+ "j": 29926,
+ "р": 29927,
+ "D": 29928,
+ "9": 29929,
+ "*": 29930,
+ "L": 29931,
+ "т": 29932,
+ "B": 29933,
+ "R": 29934,
+ "с": 29935,
+ ";": 29936,
+ "#": 29937,
+ "$": 29938,
+ "q": 29939,
+ "N": 29940,
+ "3": 29941,
+ "в": 29942,
+ "F": 29943,
+ "л": 29944,
+ "5": 29945,
+ "4": 29946,
+ "8": 29947,
+ "é": 29948,
+ "O": 29949,
+ "H": 29950,
+ "к": 29951,
+ "`": 29952,
+ "6": 29953,
+ "G": 29954,
+ "7": 29955,
+ "W": 29956,
+ "д": 29957,
+ ">": 29958,
+ "м": 29959,
+ "у": 29960,
+ "[": 29961,
+ "]": 29962,
+ "V": 29963,
+ "п": 29964,
+ "U": 29965,
+ "<": 29966,
+ "J": 29967,
+ "K": 29968,
+ "г": 29969,
+ "я": 29970,
+ "і": 29971,
+ "з": 29972,
+ "?": 29973,
+ "+": 29974,
+ "б": 29975,
+ "á": 29976,
+ "й": 29977,
+ "ь": 29978,
+ "Y": 29979,
+ "ó": 29980,
+ "ч": 29981,
+ "ы": 29982,
+ "í": 29983,
+ "Q": 29984,
+ "^": 29985,
+ "ä": 29986,
+ "&": 29987,
+ "х": 29988,
+ "|": 29989,
+ "X": 29990,
+ "!": 29991,
+ "@": 29992,
+ "ü": 29993,
+ "–": 29994,
+ "%": 29995,
+ "ц": 29996,
+ "ö": 29997,
+ "ж": 29998,
+ "Z": 29999,
+ "è": 30000,
+ "à": 30001,
+ "ш": 30002,
+ "—": 30003,
+ "\r": 30004,
+ "ю": 30005,
+ "ł": 30006,
+ "»": 30007,
+ "С": 30008,
+ "«": 30009,
+ "’": 30010,
+ "ф": 30011,
+ "В": 30012,
+ "П": 30013,
+ "К": 30014,
+ "“": 30015,
+ "ј": 30016,
+ "М": 30017,
+ "А": 30018,
+ "ç": 30019,
+ "å": 30020,
+ "щ": 30021,
+ "~": 30022,
+ "ę": 30023,
+ "”": 30024,
+ "ą": 30025,
+ "č": 30026,
+ "Р": 30027,
+ "ї": 30028,
+ "Н": 30029,
+ "ú": 30030,
+ "Б": 30031,
+ "Д": 30032,
+ "ã": 30033,
+ "ß": 30034,
+ "ă": 30035,
+ "ě": 30036,
+ "ê": 30037,
+ "О": 30038,
+ "š": 30039,
+ "Г": 30040,
+ "Т": 30041,
+ "ż": 30042,
+ "ё": 30043,
+ "ž": 30044,
+ "ś": 30045,
+ "ñ": 30046,
+ "ř": 30047,
+ "ő": 30048,
+ "„": 30049,
+ "Л": 30050,
+ "э": 30051,
+ "ý": 30052,
+ "У": 30053,
+ "И": 30054,
+ "ъ": 30055,
+ "є": 30056,
+ "â": 30057,
+ "î": 30058,
+ "ò": 30059,
+ "З": 30060,
+ "Ф": 30061,
+ "É": 30062,
+ "ć": 30063,
+ "·": 30064,
+ "ș": 30065,
+ "ń": 30066,
+ "ț": 30067,
+ "Х": 30068,
+ "ô": 30069,
+ "Е": 30070,
+ "ù": 30071,
+ "ů": 30072,
+ "°": 30073,
+ "Ш": 30074,
+ "љ": 30075,
+ "Ч": 30076,
+ "ø": 30077,
+ "æ": 30078,
+ "њ": 30079,
+ " ": 30080,
+ " ": 30081,
+ "Э": 30082,
+ "ë": 30083,
+ "õ": 30084,
+ "ï": 30085,
+ "‘": 30086,
+ "†": 30087,
+ "²": 30088,
+ "ű": 30089,
+ "І": 30090,
+ "─": 30091,
+ "Ц": 30092,
+ "ћ": 30093,
+ "Ö": 30094,
+ "û": 30095,
+ "Я": 30096,
+ "ì": 30097,
+ "…": 30098,
+ "ō": 30099,
+ "Ж": 30100,
+ "Ю": 30101,
+ "Á": 30102,
+ "́": 30103,
+ "Ü": 30104,
+ "º": 30105,
+ "œ": 30106,
+ "ā": 30107,
+ "Č": 30108,
+ "ź": 30109,
+ "α": 30110,
+ "│": 30111,
+ "ا": 30112,
+ "À": 30113,
+ "═": 30114,
+ "Š": 30115,
+ "ђ": 30116,
+ "№": 30117,
+ " ": 30118,
+ "•": 30119,
+ "−": 30120,
+ "→": 30121,
+ "×": 30122,
+ "ο": 30123,
+ "₂": 30124,
+ "Ä": 30125,
+ "Î": 30126,
+ "Ś": 30127,
+ "đ": 30128,
+ "Å": 30129,
+ "ı": 30130,
+ "": 30131,
+ "ū": 30132,
+ "ν": 30133,
+ "Й": 30134,
+ "ª": 30135,
+ "ι": 30136,
+ "τ": 30137,
+ "ل": 30138,
+ "′": 30139,
+ "�": 30140,
+ "È": 30141,
+ "λ": 30142,
+ "": 30143,
+ "Ž": 30144,
+ "ς": 30145,
+ "ň": 30146,
+ "ρ": 30147,
+ "₁": 30148,
+ "Є": 30149,
+ "ī": 30150,
+ "ε": 30151,
+ "§": 30152,
+ "Ł": 30153,
+ "Ј": 30154,
+ "£": 30155,
+ "ر": 30156,
+ "Ż": 30157,
+ "¿": 30158,
+ "م": 30159,
+ "″": 30160,
+ "Ú": 30161,
+ "ن": 30162,
+ "ي": 30163,
+ "σ": 30164,
+ "´": 30165,
+ "": 30166,
+ "μ": 30167,
+ "³": 30168,
+ "ş": 30169,
+ "π": 30170,
+ "و": 30171,
+ "د": 30172,
+ "κ": 30173,
+ "₃": 30174,
+ "Í": 30175,
+ "ˈ": 30176,
+ "ب": 30177,
+ "Ó": 30178,
+ "Ã": 30179,
+ "¡": 30180,
+ "€": 30181,
+ "ť": 30182,
+ "η": 30183,
+ "ə": 30184,
+ "ー": 30185,
+ "Щ": 30186,
+ "β": 30187,
+ "├": 30188,
+ "ð": 30189,
+ "ґ": 30190,
+ "": 30191,
+ "υ": 30192,
+ "¹": 30193,
+ "₄": 30194,
+ "ت": 30195,
+ "י": 30196,
+ "γ": 30197,
+ "س": 30198,
+ "の": 30199,
+ "ğ": 30200,
+ "δ": 30201,
+ "ی": 30202,
+ "ン": 30203,
+ "ه": 30204,
+ "ו": 30205,
+ "ω": 30206,
+ "ί": 30207,
+ "█": 30208,
+ "θ": 30209,
+ "的": 30210,
+ "©": 30211,
+ "Â": 30212,
+ "↑": 30213,
+ ",": 30214,
+ "ː": 30215,
+ "ά": 30216,
+ "―": 30217,
+ "ع": 30218,
+ "Ç": 30219,
+ "₀": 30220,
+ "±": 30221,
+ "Ø": 30222,
+ "ď": 30223,
+ "Ř": 30224,
+ "Œ": 30225,
+ "½": 30226,
+ "└": 30227,
+ "ό": 30228,
+ "‚": 30229,
+ "ē": 30230,
+ "₅": 30231,
+ "Æ": 30232,
+ "Ș": 30233,
+ "ɛ": 30234,
+ "ה": 30235,
+ "ר": 30236,
+ "φ": 30237,
+ "₆": 30238,
+ "ė": 30239,
+ "ح": 30240,
+ "ف": 30241,
+ "ة": 30242,
+ "İ": 30243,
+ " ": 30244,
+ "←": 30245,
+ "║": 30246,
+ "ɔ": 30247,
+ "≤": 30248,
+ "ל": 30249,
+ "Đ": 30250,
+ "ա": 30251,
+ "Ō": 30252,
+ "א": 30253,
+ "്": 30254,
+ "ス": 30255,
+ "ش": 30256,
+ "大": 30257,
+ "ル": 30258,
+ "џ": 30259,
+ "イ": 30260,
+ "⟩": 30261,
+ " ": 30262,
+ "µ": 30263,
+ "∈": 30264,
+ "ق": 30265,
+ "⟨": 30266,
+ "。": 30267,
+ "Ґ": 30268,
+ "ा": 30269,
+ "ج": 30270,
+ "ʿ": 30271,
+ "ა": 30272,
+ "έ": 30273,
+ "χ": 30274,
+ "中": 30275,
+ "ב": 30276,
+ "ი": 30277,
+ "₈": 30278,
+ "ト": 30279,
+ "ή": 30280,
+ "ラ": 30281,
+ "Џ": 30282,
+ "ك": 30283,
+ "₇": 30284,
+ "מ": 30285,
+ "ת": 30286,
+ "一": 30287,
+ "Π": 30288,
+ "า": 30289,
+ "・": 30290,
+ "Σ": 30291,
+ "Α": 30292,
+ "Δ": 30293,
+ "ש": 30294,
+ "ز": 30295,
+ "्": 30296,
+ "ร": 30297,
+ "い": 30298,
+ "ʻ": 30299,
+ "Њ": 30300,
+ "₉": 30301,
+ "ʼ": 30302,
+ "リ": 30303,
+ "‐": 30304,
+ "ク": 30305,
+ "∞": 30306,
+ "⁄": 30307,
+ "ύ": 30308,
+ "Ş": 30309,
+ "ア": 30310,
+ "Ε": 30311,
+ "ɪ": 30312,
+ "人": 30313,
+ "Κ": 30314,
+ "∀": 30315,
+ "र": 30316,
+ "ッ": 30317,
+ "►": 30318,
+ "子": 30319,
+ "¬": 30320,
+ "خ": 30321,
+ "◄": 30322,
+ "َ": 30323,
+ "ע": 30324,
+ "日": 30325,
+ "し": 30326,
+ "ḥ": 30327,
+ "נ": 30328,
+ "山": 30329,
+ "、": 30330,
+ "Ї": 30331,
+ "る": 30332,
+ "文": 30333,
+ "Ñ": 30334,
+ "ド": 30335,
+ "ד": 30336,
+ "ն": 30337,
+ "Ђ": 30338,
+ "Γ": 30339,
+ "þ": 30340,
+ "": 30341,
+ "®": 30342,
+ "ک": 30343,
+ "": 30344,
+ "⚭": 30345,
+ "本": 30346,
+ "ℕ": 30347,
+ "น": 30348,
+ "ѝ": 30349,
+ "̶": 30350,
+ "อ": 30351,
+ "ў": 30352,
+ "に": 30353,
+ "数": 30354,
+ "ე": 30355,
+ "国": 30356,
+ "Ω": 30357,
+ " ": 30358,
+ "ǎ": 30359,
+ "ص": 30360,
+ "": 30361,
+ "Μ": 30362,
+ " ": 30363,
+ "と": 30364,
+ "": 30365,
+ "た": 30366,
+ "ط": 30367,
+ "ր": 30368,
+ "タ": 30369,
+ "ÿ": 30370,
+ "な": 30371,
+ "أ": 30372,
+ "シ": 30373,
+ "新": 30374,
+ "﹕": 30375,
+ "ʃ": 30376,
+ "ľ": 30377,
+ "ロ": 30378,
+ "⁴": 30379,
+ "்": 30380,
+ "⇒": 30381,
+ "ţ": 30382,
+ ":": 30383,
+ "Ț": 30384,
+ "ക": 30385,
+ "≥": 30386,
+ "ി": 30387,
+ "マ": 30388,
+ "ん": 30389,
+ "ṣ": 30390,
+ "ジ": 30391,
+ "是": 30392,
+ "이": 30393,
+ "⋅": 30394,
+ "田": 30395,
+ "を": 30396,
+ "道": 30397,
+ "ง": 30398,
+ "¨": 30399,
+ "ـ": 30400,
+ "เ": 30401,
+ "村": 30402,
+ "Ê": 30403,
+ "ם": 30404,
+ "›": 30405,
+ "用": 30406,
+ "ώ": 30407,
+ "天": 30408,
+ ")": 30409,
+ "་": 30410,
+ "镇": 30411,
+ "か": 30412,
+ "不": 30413,
+ "Τ": 30414,
+ "学": 30415,
+ "ư": 30416,
+ "有": 30417,
+ "ո": 30418,
+ "(": 30419,
+ "レ": 30420,
+ "گ": 30421,
+ "": 30422,
+ "フ": 30423,
+ "न": 30424,
+ "ก": 30425,
+ "ɑ": 30426,
+ "す": 30427,
+ "ח": 30428,
+ "上": 30429,
+ "": 30430,
+ "∧": 30431,
+ "ṭ": 30432,
+ "ק": 30433,
+ "ξ": 30434,
+ "¤": 30435,
+ "ि": 30436,
+ "会": 30437,
+ "ന": 30438,
+ "カ": 30439,
+ "ų": 30440,
+ "ま": 30441,
+ "ു": 30442,
+ "͡": 30443,
+ "क": 30444,
+ "া": 30445,
+ "小": 30446,
+ "ן": 30447,
+ "行": 30448,
+ "は": 30449,
+ "ʁ": 30450,
+ "Ő": 30451,
+ "Þ": 30452,
+ "り": 30453,
+ "キ": 30454,
+ "Λ": 30455,
+ "რ": 30456,
+ "三": 30457,
+ "が": 30458,
+ "コ": 30459,
+ "ζ": 30460,
+ "市": 30461,
+ "王": 30462,
+ "ℝ": 30463,
+ "Ź": 30464,
+ "う": 30465,
+ "て": 30466,
+ "区": 30467,
+ "ാ": 30468,
+ "": 30469,
+ "年": 30470,
+ "פ": 30471,
+ "ի": 30472,
+ "ſ": 30473,
+ "‹": 30474,
+ "त": 30475,
+ "ŏ": 30476,
+ "‑": 30477,
+ "̃": 30478,
+ "Ć": 30479,
+ "ى": 30480,
+ "「": 30481,
+ "」": 30482,
+ "ს": 30483,
+ "Ā": 30484,
+ "म": 30485,
+ "生": 30486,
+ "≠": 30487,
+ "Љ": 30488,
+ "स": 30489,
+ "↔": 30490,
+ "Ο": 30491,
+ "ว": 30492,
+ "ლ": 30493,
+ "成": 30494,
+ "定": 30495,
+ "ล": 30496,
+ "¶": 30497,
+ "כ": 30498,
+ "で": 30499,
+ "ּ": 30500,
+ "ม": 30501,
+ "个": 30502,
+ "和": 30503,
+ "ס": 30504,
+ "在": 30505,
+ "Β": 30506,
+ "ิ": 30507,
+ "Ι": 30508,
+ "⁵": 30509,
+ "ั": 30510,
+ "ɡ": 30511,
+ "━": 30512,
+ "ら": 30513,
+ "オ": 30514,
+ "¼": 30515,
+ "ե": 30516,
+ "バ": 30517,
+ "ָ": 30518,
+ "ŋ": 30519,
+ "ŭ": 30520,
+ "グ": 30521,
+ "⁶": 30522,
+ "Ь": 30523,
+ "⁰": 30524,
+ "方": 30525,
+ "บ": 30526,
+ "": 30527,
+ "高": 30528,
+ "ệ": 30529,
+ "Ν": 30530,
+ "ѣ": 30531,
+ "ィ": 30532,
+ "地": 30533,
+ "月": 30534,
+ "Ô": 30535,
+ "™": 30536,
+ "ウ": 30537,
+ "き": 30538,
+ "公": 30539,
+ "ạ": 30540,
+ "ო": 30541,
+ "ɾ": 30542,
+ "่": 30543,
+ "出": 30544,
+ "法": 30545,
+ "Θ": 30546,
+ "ส": 30547,
+ "名": 30548,
+ "ย": 30549,
+ "ത": 30550,
+ "Φ": 30551,
+ "↓": 30552,
+ "れ": 30553,
+ "ג": 30554,
+ "Ё": 30555,
+ "ơ": 30556,
+ "下": 30557,
+ "ә": 30558,
+ "ψ": 30559,
+ "┼": 30560,
+ "ャ": 30561,
+ "√": 30562,
+ "¥": 30563,
+ "社": 30564,
+ "ṇ": 30565,
+ "さ": 30566,
+ "ِ": 30567,
+ "く": 30568,
+ "े": 30569,
+ "Ы": 30570,
+ "ἐ": 30571,
+ "テ": 30572,
+ "为": 30573,
+ "乡": 30574,
+ "川": 30575,
+ "ナ": 30576,
+ "之": 30577,
+ "字": 30578,
+ "ム": 30579,
+ "ी": 30580,
+ "海": 30581,
+ "ブ": 30582,
+ "≈": 30583,
+ "!": 30584,
+ "پ": 30585,
+ "¯": 30586,
+ "ἀ": 30587,
+ "": 30588,
+ "こ": 30589,
+ "ְ": 30590,
+ "東": 30591,
+ "明": 30592,
+ "ὶ": 30593,
+ "时": 30594,
+ "ท": 30595,
+ "ɨ": 30596,
+ "デ": 30597,
+ "️": 30598,
+ "ʊ": 30599,
+ "エ": 30600,
+ "南": 30601,
+ "西": 30602,
+ "ल": 30603,
+ "メ": 30604,
+ "プ": 30605,
+ "平": 30606,
+ "式": 30607,
+ "ῖ": 30608,
+ "қ": 30609,
+ "व": 30610,
+ "غ": 30611,
+ "Ò": 30612,
+ "家": 30613,
+ "ʒ": 30614,
+ "サ": 30615,
+ "≡": 30616,
+ "ダ": 30617,
+ "ต": 30618,
+ "∃": 30619,
+ "₹": 30620,
+ "प": 30621,
+ "第": 30622,
+ "ര": 30623,
+ "ض": 30624,
+ "▄": 30625,
+ "城": 30626,
+ "ミ": 30627,
+ "ɐ": 30628,
+ "¦": 30629,
+ "美": 30630,
+ "件": 30631,
+ "ნ": 30632,
+ "Ð": 30633,
+ "ַ": 30634,
+ "ニ": 30635,
+ "部": 30636,
+ "ņ": 30637,
+ "ǐ": 30638,
+ "ט": 30639,
+ "य": 30640,
+ "あ": 30641,
+ "¾": 30642,
+ "ả": 30643,
+ "ち": 30644,
+ "ュ": 30645,
+ "÷": 30646,
+ "女": 30647,
+ "神": 30648,
+ "♦": 30649,
+ "¢": 30650,
+ "以": 30651,
+ "้": 30652,
+ "র": 30653,
+ "太": 30654,
+ "্": 30655,
+ "チ": 30656,
+ "յ": 30657,
+ "前": 30658,
+ "金": 30659,
+ "ւ": 30660,
+ "野": 30661,
+ "北": 30662,
+ "ห": 30663,
+ "‰": 30664,
+ "っ": 30665,
+ "加": 30666,
+ "原": 30667,
+ "ʲ": 30668,
+ "置": 30669,
+ "安": 30670,
+ "ガ": 30671,
+ "我": 30672,
+ "Ḥ": 30673,
+ "യ": 30674,
+ "京": 30675,
+ "▀": 30676,
+ "მ": 30677,
+ "ვ": 30678,
+ "ʾ": 30679,
+ "∨": 30680,
+ "ִ": 30681,
+ "可": 30682,
+ "取": 30683,
+ "县": 30684,
+ "二": 30685,
+ "▒": 30686,
+ "理": 30687,
+ "自": 30688,
+ "信": 30689,
+ "代": 30690,
+ "ี": 30691,
+ "צ": 30692,
+ "်": 30693,
+ "द": 30694,
+ "⁸": 30695,
+ "̯": 30696,
+ "お": 30697,
+ "要": 30698,
+ "ῦ": 30699,
+ "க": 30700,
+ "ễ": 30701,
+ "ु": 30702,
+ "ƒ": 30703,
+ "ʰ": 30704,
+ "化": 30705,
+ "✓": 30706,
+ "പ": 30707,
+ "의": 30708,
+ "다": 30709,
+ "木": 30710,
+ "ُ": 30711,
+ "̀": 30712,
+ "ˌ": 30713,
+ "ह": 30714,
+ "パ": 30715,
+ "水": 30716,
+ "ế": 30717,
+ "ด": 30718,
+ "ズ": 30719,
+ "⁹": 30720,
+ "島": 30721,
+ "": 30722,
+ "も": 30723,
+ "正": 30724,
+ "■": 30725,
+ "آ": 30726,
+ "พ": 30727,
+ "内": 30728,
+ "Ì": 30729,
+ "ǔ": 30730,
+ "┬": 30731,
+ "作": 30732,
+ "合": 30733,
+ "ὸ": 30734,
+ "み": 30735,
+ "▼": 30736,
+ "ῶ": 30737,
+ "⊙": 30738,
+ "~": 30739,
+ "ị": 30740,
+ "ْ": 30741,
+ "回": 30742,
+ "了": 30743,
+ "所": 30744,
+ "事": 30745,
+ "表": 30746,
+ "ำ": 30747,
+ "分": 30748,
+ "⁷": 30749,
+ "ү": 30750,
+ "": 30751,
+ "入": 30752,
+ "全": 30753,
+ "إ": 30754,
+ "里": 30755,
+ "Χ": 30756,
+ "ं": 30757,
+ "ハ": 30758,
+ "ค": 30759,
+ "⁻": 30760,
+ "モ": 30761,
+ "郎": 30762,
+ "据": 30763,
+ "●": 30764,
+ "州": 30765,
+ "∩": 30766,
+ "者": 30767,
+ "通": 30768,
+ "都": 30769,
+ "ℤ": 30770,
+ "♭": 30771,
+ "╌": 30772,
+ "つ": 30773,
+ "ḍ": 30774,
+ "江": 30775,
+ "ז": 30776,
+ "Ý": 30777,
+ "ө": 30778,
+ "์": 30779,
+ "到": 30780,
+ "ி": 30781,
+ "ʂ": 30782,
+ "对": 30783,
+ "스": 30784,
+ "使": 30785,
+ "ি": 30786,
+ "よ": 30787,
+ "Ἀ": 30788,
+ "Ï": 30789,
+ "∘": 30790,
+ "사": 30791,
+ "ন": 30792,
+ "世": 30793,
+ "ɕ": 30794,
+ "կ": 30795,
+ "უ": 30796,
+ "ട": 30797,
+ "ბ": 30798,
+ "ो": 30799,
+ "വ": 30800,
+ "果": 30801,
+ "十": 30802,
+ "ุ": 30803,
+ "藤": 30804,
+ "来": 30805,
+ "面": 30806,
+ "け": 30807,
+ "ĕ": 30808,
+ "ビ": 30809,
+ "这": 30810,
+ "지": 30811,
+ "ം": 30812,
+ "街": 30813,
+ "石": 30814,
+ "能": 30815,
+ "空": 30816,
+ "տ": 30817,
+ "ئ": 30818,
+ "武": 30819,
+ "ʹ": 30820,
+ "ϕ": 30821,
+ "后": 30822,
+ "ะ": 30823,
+ "元": 30824,
+ "ʔ": 30825,
+ "리": 30826,
+ "기": 30827,
+ "河": 30828,
+ "町": 30829,
+ "花": 30830,
+ "ὐ": 30831,
+ "类": 30832,
+ "░": 30833,
+ "物": 30834,
+ "Η": 30835,
+ "¸": 30836,
+ "ு": 30837,
+ "თ": 30838,
+ "ث": 30839,
+ "െ": 30840,
+ "╠": 30841,
+ "⊆": 30842,
+ "》": 30843,
+ "ツ": 30844,
+ "版": 30845,
+ "动": 30846,
+ "如": 30847,
+ "真": 30848,
+ "ɲ": 30849,
+ "号": 30850,
+ "ذ": 30851,
+ "정": 30852,
+ "林": 30853,
+ "書": 30854,
+ "民": 30855,
+ "口": 30856,
+ "ّ": 30857,
+ "示": 30858,
+ "മ": 30859,
+ "아": 30860,
+ "图": 30861,
+ "∪": 30862,
+ "戦": 30863,
+ "李": 30864,
+ "ല": 30865,
+ "《": 30866,
+ "光": 30867,
+ "白": 30868,
+ "心": 30869,
+ "த": 30870,
+ "ज": 30871,
+ "设": 30872,
+ "ί": 30873,
+ "路": 30874,
+ "ग": 30875,
+ "∥": 30876,
+ "한": 30877,
+ "最": 30878,
+ "Ћ": 30879,
+ "手": 30880,
+ "ս": 30881,
+ "?": 30882,
+ "型": 30883,
+ "ầ": 30884,
+ "セ": 30885,
+ "建": 30886,
+ "ェ": 30887,
+ "主": 30888,
+ "시": 30889,
+ "대": 30890,
+ "ῆ": 30891,
+ "‡": 30892,
+ "集": 30893,
+ "დ": 30894,
+ "目": 30895,
+ "Ρ": 30896,
+ "ァ": 30897,
+ "度": 30898,
+ "長": 30899,
+ "星": 30900,
+ "ノ": 30901,
+ "ộ": 30902,
+ "가": 30903,
+ "五": 30904,
+ "چ": 30905,
+ "로": 30906,
+ "ョ": 30907,
+ "重": 30908,
+ "于": 30909,
+ "发": 30910,
+ "史": 30911,
+ "ظ": 30912,
+ "ช": 30913,
+ "え": 30914,
+ "國": 30915,
+ "ĭ": 30916,
+ "ப": 30917,
+ "인": 30918,
+ "你": 30919,
+ "駅": 30920,
+ "‒": 30921,
+ "♥": 30922,
+ "多": 30923,
+ "ħ": 30924,
+ "Қ": 30925,
+ "ồ": 30926,
+ "士": 30927,
+ "四": 30928,
+ "┴": 30929,
+ "ம": 30930,
+ "司": 30931,
+ "ে": 30932,
+ "ὰ": 30933,
+ "∂": 30934,
+ "╬": 30935,
+ "次": 30936,
+ "Ľ": 30937,
+ "⟶": 30938,
+ "立": 30939,
+ "点": 30940,
+ "音": 30941,
+ "⠀": 30942,
+ "器": 30943,
+ "하": 30944,
+ "井": 30945,
+ "存": 30946,
+ "ֹ": 30947,
+ "当": 30948,
+ "Ë": 30949,
+ "★": 30950,
+ "寺": 30951,
+ "性": 30952,
+ "也": 30953,
+ "め": 30954,
+ "だ": 30955,
+ "位": 30956,
+ "ങ": 30957,
+ "ہ": 30958,
+ "值": 30959,
+ "古": 30960,
+ "გ": 30961,
+ "ব": 30962,
+ "院": 30963,
+ "േ": 30964,
+ "▶": 30965,
+ "ர": 30966,
+ "界": 30967,
+ "語": 30968,
+ "സ": 30969,
+ "수": 30970,
+ "ǒ": 30971,
+ "愛": 30972,
+ "✔": 30973,
+ "時": 30974,
+ "ọ": 30975,
+ "റ": 30976,
+ "մ": 30977,
+ "ケ": 30978,
+ "东": 30979,
+ "同": 30980,
+ "주": 30981,
+ "保": 30982,
+ "Õ": 30983,
+ "ố": 30984,
+ "ἰ": 30985,
+ "青": 30986,
+ "ゴ": 30987,
+ "体": 30988,
+ "清": 30989,
+ "相": 30990,
+ "จ": 30991,
+ "ء": 30992,
+ "情": 30993,
+ "𝕜": 30994,
+ "ক": 30995,
+ "ḫ": 30996,
+ "ờ": 30997,
+ "将": 30998,
+ "族": 30999,
+ "동": 31000,
+ "Υ": 31001,
+ "┌": 31002,
+ "ボ": 31003,
+ "宮": 31004,
+ "』": 31005,
+ "ম": 31006,
+ "『": 31007,
+ "ļ": 31008,
+ "श": 31009,
+ "ป": 31010,
+ "Ա": 31011,
+ "ब": 31012,
+ "자": 31013,
+ "政": 31014,
+ "ா": 31015,
+ "间": 31016,
+ "fi": 31017,
+ "松": 31018,
+ "ṃ": 31019,
+ "始": 31020,
+ "息": 31021,
+ "少": 31022,
+ "教": 31023,
+ "获": 31024,
+ "列": 31025,
+ "开": 31026,
+ "ტ": 31027,
+ "ワ": 31028,
+ "კ": 31029,
+ "科": 31030,
+ "春": 31031,
+ "治": 31032,
+ "吉": 31033,
+ "ས": 31034,
+ "ศ": 31035,
+ "ɒ": 31036,
+ "台": 31037,
+ "ネ": 31038,
+ "း": 31039,
+ "ĩ": 31040,
+ "工": 31041,
+ "ά": 31042,
+ "知": 31043,
+ "八": 31044,
+ "場": 31045,
+ "画": 31046,
+ "百": 31047,
+ "☆": 31048,
+ "記": 31049,
+ "得": 31050,
+ "ソ": 31051,
+ "氏": 31052,
+ "ာ": 31053,
+ "에": 31054,
+ "ল": 31055,
+ "ṛ": 31056,
+ "关": 31057,
+ "ġ": 31058,
+ "έ": 31059,
+ "∑": 31060,
+ "ベ": 31061,
+ "标": 31062,
+ "니": 31063,
+ "ὴ": 31064,
+ "ֵ": 31065,
+ "外": 31066,
+ "♠": 31067,
+ "わ": 31068,
+ "間": 31069,
+ "ภ": 31070,
+ "校": 31071,
+ "制": 31072,
+ "แ": 31073,
+ "力": 31074,
+ "門": 31075,
+ "好": 31076,
+ "ғ": 31077,
+ "Ù": 31078,
+ "ℓ": 31079,
+ "ֶ": 31080,
+ "는": 31081,
+ "┐": 31082,
+ "∗": 31083,
+ "指": 31084,
+ "色": 31085,
+ "返": 31086,
+ "馬": 31087,
+ "请": 31088,
+ "≫": 31089,
+ "風": 31090,
+ "ό": 31091,
+ "接": 31092,
+ "서": 31093,
+ "↳": 31094,
+ "せ": 31095,
+ "志": 31096,
+ "̲": 31097,
+ "魔": 31098,
+ "ң": 31099,
+ "更": 31100,
+ "程": 31101,
+ "김": 31102,
+ "郡": 31103,
+ "ོ": 31104,
+ "ũ": 31105,
+ "ച": 31106,
+ "利": 31107,
+ "県": 31108,
+ "周": 31109,
+ "そ": 31110,
+ "や": 31111,
+ "谷": 31112,
+ "香": 31113,
+ "♯": 31114,
+ "じ": 31115,
+ "،": 31116,
+ "期": 31117,
+ "∅": 31118,
+ "┘": 31119,
+ "初": 31120,
+ "福": 31121,
+ "片": 31122,
+ "ザ": 31123,
+ "動": 31124,
+ "参": 31125,
+ "성": 31126,
+ "Ə": 31127,
+ "╦": 31128,
+ "어": 31129,
+ "ხ": 31130,
+ "義": 31131,
+ "च": 31132,
+ "象": 31133,
+ "功": 31134,
+ "♂": 31135,
+ "도": 31136,
+ "고": 31137,
+ "过": 31138,
+ "վ": 31139,
+ "皇": 31140,
+ "特": 31141,
+ "ậ": 31142,
+ "长": 31143,
+ "英": 31144,
+ "ấ": 31145,
+ "ണ": 31146,
+ "Ъ": 31147,
+ "স": 31148,
+ "其": 31149,
+ "ত": 31150,
+ "流": 31151,
+ "除": 31152,
+ "일": 31153,
+ "ু": 31154,
+ "្": 31155,
+ "永": 31156,
+ "直": 31157,
+ "상": 31158,
+ "千": 31159,
+ "ắ": 31160,
+ "館": 31161,
+ "Ť": 31162,
+ "朝": 31163,
+ "ட": 31164,
+ "ɣ": 31165,
+ "单": 31166,
+ "ʀ": 31167,
+ "格": 31168,
+ "德": 31169,
+ "전": 31170,
+ "☺": 31171,
+ "ピ": 31172,
+ "歌": 31173,
+ "进": 31174,
+ "限": 31175,
+ "夫": 31176,
+ "트": 31177,
+ "⊢": 31178,
+ "園": 31179,
+ "量": 31180,
+ "土": 31181,
+ "放": 31182,
+ "码": 31183,
+ "等": 31184,
+ "系": 31185,
+ "∼": 31186,
+ "華": 31187,
+ "↵": 31188,
+ "소": 31189,
+ "常": 31190,
+ "否": 31191,
+ "見": 31192,
+ "源": 31193,
+ "ׁ": 31194,
+ "实": 31195,
+ "博": 31196,
+ "라": 31197,
+ "원": 31198,
+ "보": 31199,
+ "⊕": 31200,
+ "解": 31201,
+ "〜": 31202,
+ "男": 31203,
+ "দ": 31204,
+ "ポ": 31205,
+ "ろ": 31206,
+ "나": 31207,
+ "ག": 31208,
+ "無": 31209,
+ "Û": 31210,
+ "̥": 31211,
+ "ұ": 31212,
+ "查": 31213,
+ "̣": 31214,
+ "╗": 31215,
+ "╩": 31216,
+ "条": 31217,
+ "য": 31218,
+ "ὁ": 31219,
+ "後": 31220,
+ "他": 31221,
+ "网": 31222,
+ "ல": 31223,
+ "≃": 31224,
+ "화": 31225,
+ "ە": 31226,
+ "阿": 31227,
+ "ေ": 31228,
+ "户": 31229,
+ "∫": 31230,
+ "구": 31231,
+ "ར": 31232,
+ "မ": 31233,
+ "▸": 31234,
+ "լ": 31235,
+ "○": 31236,
+ "命": 31237,
+ "就": 31238,
+ "龍": 31239,
+ "君": 31240,
+ "夏": 31241,
+ "": 31242,
+ "言": 31243,
+ "先": 31244,
+ "➜": 31245,
+ "შ": 31246,
+ "ძ": 31247,
+ "ਾ": 31248,
+ "வ": 31249,
+ "ど": 31250,
+ "ヒ": 31251,
+ "ไ": 31252,
+ "ன": 31253,
+ "ば": 31254,
+ "ギ": 31255,
+ "գ": 31256,
+ "ἄ": 31257,
+ "ヤ": 31258,
+ "典": 31259,
+ "府": 31260,
+ "̄": 31261,
+ "신": 31262,
+ "组": 31263,
+ "改": 31264,
+ "ὲ": 31265,
+ "华": 31266,
+ "与": 31267,
+ "调": 31268,
+ "╝": 31269,
+ "ヴ": 31270,
+ "ქ": 31271,
+ "由": 31272,
+ "修": 31273,
+ "學": 31274,
+ "♣": 31275,
+ "消": 31276,
+ "符": 31277,
+ "ʌ": 31278,
+ "부": 31279,
+ "ớ": 31280,
+ "‾": 31281,
+ "▲": 31282,
+ "录": 31283,
+ "ള": 31284,
+ "연": 31285,
+ "을": 31286,
+ "ひ": 31287,
+ "영": 31288,
+ "┤": 31289,
+ "已": 31290,
+ "陽": 31291,
+ "င": 31292,
+ "국": 31293,
+ "容": 31294,
+ "未": 31295,
+ "宗": 31296,
+ "ᴇ": 31297,
+ "び": 31298,
+ "장": 31299,
+ "龙": 31300,
+ "්": 31301,
+ "提": 31302,
+ "ĝ": 31303,
+ "六": 31304,
+ "形": 31305,
+ "제": 31306,
+ "Հ": 31307,
+ "伊": 31308,
+ "ϵ": 31309,
+ "ข": 31310,
+ "Ű": 31311,
+ "ゃ": 31312,
+ "火": 31313,
+ "Ṣ": 31314,
+ "佐": 31315,
+ "⊥": 31316,
+ "̪": 31317,
+ "ứ": 31318,
+ "□": 31319,
+ "结": 31320,
+ "九": 31321,
+ "雄": 31322,
+ "թ": 31323,
+ "ា": 31324,
+ "而": 31325,
+ "བ": 31326,
+ "우": 31327,
+ "张": 31328,
+ "ट": 31329,
+ "ष": 31330,
+ "向": 31331,
+ "ῥ": 31332,
+ "选": 31333,
+ "공": 31334,
+ "ゲ": 31335,
+ "ʐ": 31336,
+ "仁": 31337,
+ "堂": 31338,
+ "ך": 31339,
+ "ု": 31340,
+ "ἔ": 31341,
+ "അ": 31342,
+ "ề": 31343,
+ "ད": 31344,
+ "선": 31345,
+ "오": 31346,
+ "久": 31347,
+ "": 31348,
+ "义": 31349,
+ "अ": 31350,
+ "╔": 31351,
+ "无": 31352,
+ "
": 31353,
+ "은": 31354,
+ "ʷ": 31355,
+ "那": 31356,
+ "線": 31357,
+ "务": 31358,
+ "基": 31359,
+ "属": 31360,
+ "配": 31361,
+ "미": 31362,
+ "軍": 31363,
+ "โ": 31364,
+ "津": 31365,
+ "完": 31366,
+ "研": 31367,
+ "注": 31368,
+ "失": 31369,
+ "应": 31370,
+ "က": 31371,
+ "╚": 31372,
+ "友": 31373,
+ "章": 31374,
+ "Ψ": 31375,
+ "求": 31376,
+ "ण": 31377,
+ "경": 31378,
+ "": 31379,
+ "भ": 31380,
+ "们": 31381,
+ "模": 31382,
+ "需": 31383,
+ "ச": 31384,
+ "電": 31385,
+ "প": 31386,
+ "դ": 31387,
+ "へ": 31388,
+ "此": 31389,
+ "夜": 31390,
+ "或": 31391,
+ "橋": 31392,
+ "根": 31393,
+ "Ī": 31394,
+ "玉": 31395,
+ "ู": 31396,
+ "ṅ": 31397,
+ "交": 31398,
+ "品": 31399,
+ "良": 31400,
+ "ང": 31401,
+ "ォ": 31402,
+ "则": 31403,
+ "開": 31404,
+ "Ζ": 31405,
+ "문": 31406,
+ "被": 31407,
+ "조": 31408,
+ "株": 31409,
+ "记": 31410,
+ "會": 31411,
+ "经": 31412,
+ "ू": 31413,
+ "ょ": 31414,
+ "转": 31415,
+ "崎": 31416,
+ "마": 31417,
+ "⌘": 31418,
+ "比": 31419,
+ "造": 31420,
+ "ܐ": 31421,
+ "ื": 31422,
+ "没": 31423,
+ "现": 31424,
+ "七": 31425,
+ "Ά": 31426,
+ "商": 31427,
+ "ை": 31428,
+ "机": 31429,
+ "阳": 31430,
+ "ĉ": 31431,
+ "角": 31432,
+ "站": 31433,
+ "բ": 31434,
+ "해": 31435,
+ "及": 31436,
+ "ध": 31437,
+ "術": 31438,
+ "认": 31439,
+ "": 31440,
+ "创": 31441,
+ "編": 31442,
+ "ղ": 31443,
+ "ḩ": 31444,
+ "伝": 31445,
+ "岡": 31446,
+ "ड": 31447,
+ "ホ": 31448,
+ "港": 31449,
+ "任": 31450,
+ "登": 31451,
+ "ི": 31452,
+ "็": 31453,
+ "布": 31454,
+ "究": 31455,
+ "帝": 31456,
+ "여": 31457,
+ "산": 31458,
+ "န": 31459,
+ "◦": 31460,
+ "密": 31461,
+ "变": 31462,
+ "序": 31463,
+ "♀": 31464,
+ "∣": 31465,
+ "计": 31466,
+ "曲": 31467,
+ "Ă": 31468,
+ "ύ": 31469,
+ "ʋ": 31470,
+ "传": 31471,
+ "】": 31472,
+ "包": 31473,
+ "意": 31474,
+ "去": 31475,
+ "沙": 31476,
+ "⸮": 31477,
+ "【": 31478,
+ "写": 31479,
+ "超": 31480,
+ "ய": 31481,
+ "今": 31482,
+ "┈": 31483,
+ "森": 31484,
+ "ි": 31485,
+ "⊗": 31486,
+ "비": 31487,
+ "հ": 31488,
+ "Ḩ": 31489,
+ "ǫ": 31490,
+ "黄": 31491,
+ "∙": 31492,
+ "드": 31493,
+ "🌍": 31494,
+ "景": 31495,
+ "湖": 31496,
+ "ք": 31497,
+ "ိ": 31498,
+ "ⁿ": 31499,
+ "̂": 31500,
+ "ペ": 31501,
+ "何": 31502,
+ "宇": 31503,
+ "張": 31504,
+ "语": 31505,
+ "老": 31506,
+ "例": 31507,
+ "Ṭ": 31508,
+ "鉄": 31509,
+ "克": 31510,
+ "☉": 31511,
+ "": 31512,
+ "ɹ": 31513,
+ "ἱ": 31514,
+ "ⴰ": 31515,
+ "然": 31516,
+ "를": 31517,
+ "ǧ": 31518,
+ "報": 31519,
+ "服": 31520,
+ "Ď": 31521,
+ "想": 31522,
+ "‖": 31523,
+ "ユ": 31524,
+ "実": 31525,
+ "载": 31526,
+ "요": 31527,
+ "ℚ": 31528,
+ "波": 31529,
+ "马": 31530,
+ "状": 31531,
+ "线": 31532,
+ "유": 31533,
+ "洋": 31534,
+ "万": 31535,
+ "진": 31536,
+ "জ": 31537,
+ "添": 31538,
+ "球": 31539,
+ "機": 31540,
+ "支": 31541,
+ "显": 31542,
+ "拉": 31543,
+ "ὑ": 31544,
+ "送": 31545,
+ "隊": 31546,
+ "ธ": 31547,
+ "处": 31548,
+ "師": 31549,
+ "⊂": 31550,
+ "像": 31551,
+ "়": 31552,
+ "黒": 31553,
+ "ց": 31554,
+ "": 31555,
+ "ủ": 31556,
+ "只": 31557,
+ "起": 31558,
+ "段": 31559,
+ "တ": 31560,
+ "區": 31561,
+ "選": 31562,
+ "천": 31563,
+ "業": 31564,
+ "算": 31565,
+ "广": 31566,
+ "រ": 31567,
+ "视": 31568,
+ "秋": 31569,
+ "因": 31570,
+ "년": 31571,
+ "ے": 31572,
+ "输": 31573,
+ "̱": 31574,
+ "Մ": 31575,
+ "∆": 31576,
+ "康": 31577,
+ "세": 31578,
+ "思": 31579,
+ "死": 31580,
+ "聖": 31581,
+ "민": 31582,
+ "-": 31583,
+ "头": 31584,
+ "ർ": 31585,
+ "∉": 31586,
+ "車": 31587,
+ "┃": 31588,
+ "▇": 31589,
+ "按": 31590,
+ "⍵": 31591,
+ "夢": 31592,
+ "汉": 31593,
+ "从": 31594,
+ "ী": 31595,
+ "题": 31596,
+ "ˆ": 31597,
+ "ἡ": 31598,
+ "展": 31599,
+ "省": 31600,
+ "ུ": 31601,
+ "葉": 31602,
+ "호": 31603,
+ "ਰ": 31604,
+ "素": 31605,
+ "関": 31606,
+ "그": 31607,
+ ";": 31608,
+ "න": 31609,
+ "页": 31610,
+ "共": 31611,
+ "宿": 31612,
+ "态": 31613,
+ "ན": 31614,
+ "技": 31615,
+ "乐": 31616,
+ "控": 31617,
+ "移": 31618,
+ "影": 31619,
+ "ụ": 31620,
+ "ゆ": 31621,
+ "ご": 31622,
+ "್": 31623,
+ "管": 31624,
+ "ൾ": 31625,
+ "╣": 31626,
+ "戸": 31627,
+ "⇔": 31628,
+ "函": 31629,
+ "ẓ": 31630,
+ "尾": 31631,
+ "场": 31632,
+ "介": 31633,
+ "": 31634,
+ "育": 31635,
+ "ර": 31636,
+ "泉": 31637,
+ "ൽ": 31638,
+ "说": 31639,
+ "换": 31640,
+ "必": 31641,
+ "紀": 31642,
+ "མ": 31643,
+ "ེ": 31644,
+ "ợ": 31645,
+ "ൻ": 31646,
+ "宝": 31647,
+ "気": 31648,
+ "门": 31649,
+ "令": 31650,
+ "左": 31651,
+ "漢": 31652,
+ "若": 31653,
+ "屋": 31654,
+ "局": 31655,
+ "打": 31656,
+ "発": 31657,
+ "问": 31658,
+ "恋": 31659,
+ "兵": 31660,
+ "別": 31661,
+ "ા": 31662,
+ "Ս": 31663,
+ "߬": 31664,
+ "গ": 31665,
+ "并": 31666,
+ "ख": 31667,
+ "ή": 31668,
+ "节": 31669,
+ "ʑ": 31670,
+ "ץ": 31671,
+ "Ḫ": 31672,
+ "ℂ": 31673,
+ "引": 31674,
+ "统": 31675,
+ "智": 31676,
+ "̩": 31677,
+ "ै": 31678,
+ "电": 31679,
+ "현": 31680,
+ "✅": 31681,
+ "赤": 31682,
+ "断": 31683,
+ "ね": 31684,
+ "称": 31685,
+ "শ": 31686,
+ "身": 31687,
+ "首": 31688,
+ "付": 31689,
+ "⅓": 31690,
+ "ਸ": 31691,
+ "連": 31692,
+ "ზ": 31693,
+ "官": 31694,
+ "持": 31695,
+ "奈": 31696,
+ "御": 31697,
+ "親": 31698,
+ "군": 31699,
+ "库": 31700,
+ "秀": 31701,
+ "址": 31702,
+ "守": 31703,
+ "活": 31704,
+ "ལ": 31705,
+ "ふ": 31706,
+ "藏": 31707,
+ "ស": 31708,
+ "竹": 31709,
+ "草": 31710,
+ "結": 31711,
+ "ා": 31712,
+ "昌": 31713,
+ "樹": 31714,
+ "ள": 31715,
+ "무": 31716,
+ "হ": 31717,
+ "ゼ": 31718,
+ "̈": 31719,
+ "շ": 31720,
+ "勝": 31721,
+ "足": 31722,
+ "ရ": 31723,
+ "위": 31724,
+ "į": 31725,
+ "Ἰ": 31726,
+ "航": 31727,
+ "陳": 31728,
+ "业": 31729,
+ "富": 31730,
+ "雪": 31731,
+ "आ": 31732,
+ "再": 31733,
+ "안": 31734,
+ "默": 31735,
+ "박": 31736,
+ "용": 31737,
+ "✿": 31738,
+ "楽": 31739,
+ "沢": 31740,
+ "羅": 31741,
+ "Ė": 31742,
+ "ʎ": 31743,
+ "忠": 31744,
+ "错": 31745,
+ "단": 31746,
+ "면": 31747,
+ "ķ": 31748,
+ "桥": 31749,
+ "雲": 31750,
+ "该": 31751,
+ "ṯ": 31752,
+ "岩": 31753,
+ "남": 31754,
+ "ỹ": 31755,
+ "专": 31756,
+ "切": 31757,
+ "店": 31758,
+ "朱": 31759,
+ "ף": 31760,
+ "ず": 31761,
+ "幸": 31762,
+ "母": 31763,
+ "ɫ": 31764,
+ "々": 31765,
+ "∷": 31766,
+ "串": 31767,
+ "击": 31768,
+ "Ἐ": 31769,
+ "設": 31770,
+ "⊤": 31771,
+ "ₗ": 31772,
+ "經": 31773,
+ "강": 31774,
+ "ပ": 31775,
+ "।": 31776,
+ "ѐ": 31777,
+ "ᾶ": 31778,
+ "➖": 31779,
+ "座": 31780,
+ "씨": 31781,
+ "ぶ": 31782,
+ "Ţ": 31783,
+ "云": 31784,
+ "告": 31785,
+ "変": 31786,
+ "试": 31787,
+ "隆": 31788,
+ "개": 31789,
+ "պ": 31790,
+ "判": 31791,
+ "劉": 31792,
+ "˜": 31793,
+ "ˠ": 31794,
+ "编": 31795,
+ "ณ": 31796,
+ "ữ": 31797,
+ "达": 31798,
+ "Ě": 31799,
+ "ܝ": 31800,
+ "ြ": 31801,
+ "ḷ": 31802,
+ "右": 31803,
+ "들": 31804,
+ "ŝ": 31805,
+ "ӏ": 31806,
+ "్": 31807,
+ "എ": 31808,
+ "ற": 31809,
+ "复": 31810,
+ "看": 31811,
+ "話": 31812,
+ "坂": 31813,
+ "尔": 31814,
+ "衛": 31815,
+ "զ": 31816,
+ "차": 31817,
+ "丸": 31818,
+ "样": 31819,
+ "鬼": 31820,
+ "़": 31821,
+ "학": 31822,
+ "喜": 31823,
+ "斯": 31824,
+ "銀": 31825,
+ "만": 31826,
+ "Ξ": 31827,
+ "ც": 31828,
+ "群": 31829,
+ "近": 31830,
+ "塔": 31831,
+ "ϊ": 31832,
+ "ந": 31833,
+ "む": 31834,
+ "确": 31835,
+ "索": 31836,
+ "∇": 31837,
+ "非": 31838,
+ "望": 31839,
+ "❯": 31840,
+ "希": 31841,
+ "ỳ": 31842,
+ "甲": 31843,
+ "越": 31844,
+ "鳥": 31845,
+ "麻": 31846,
+ "雅": 31847,
+ "拳": 31848,
+ "ក": 31849,
+ "溪": 31850,
+ "测": 31851,
+ "话": 31852,
+ "池": 31853,
+ "菜": 31854,
+ "食": 31855,
+ "터": 31856,
+ "ਿ": 31857,
+ "渡": 31858,
+ "速": 31859,
+ "ھ": 31860,
+ "ರ": 31861,
+ "陈": 31862,
+ "健": 31863,
+ "ো": 31864,
+ "ක": 31865,
+ "ὺ": 31866,
+ "军": 31867,
+ "庄": 31868,
+ "红": 31869,
+ "Ħ": 31870,
+ "論": 31871,
+ "Ÿ": 31872,
+ "Έ": 31873,
+ "ự": 31874,
+ "孝": 31875,
+ "頭": 31876,
+ "飛": 31877,
+ "˚": 31878,
+ "▓": 31879,
+ "ً": 31880,
+ "": 31881,
+ "么": 31882,
+ "達": 31883,
+ "ѫ": 31884,
+ "巴": 31885,
+ "洞": 31886,
+ "貴": 31887,
+ "项": 31888,
+ "ദ": 31889,
+ "ɵ": 31890,
+ "̍": 31891,
+ "ҡ": 31892,
+ "种": 31893,
+ "运": 31894,
+ "식": 31895,
+ "ྱ": 31896,
+ "ḳ": 31897,
+ "彦": 31898,
+ "⥤": 31899,
+ "书": 31900,
+ "构": 31901,
+ "米": 31902,
+ "连": 31903,
+ "操": 31904,
+ "装": 31905,
+ "과": 31906,
+ "ぐ": 31907,
+ "反": 31908,
+ "̌": 31909,
+ "仮": 31910,
+ "员": 31911,
+ "昭": 31912,
+ "ശ": 31913,
+ "兴": 31914,
+ "客": 31915,
+ "删": 31916,
+ "ම": 31917,
+ "ව": 31918,
+ "პ": 31919,
+ "ċ": 31920,
+ "ഷ": 31921,
+ "သ": 31922,
+ "ᵉ": 31923,
+ "居": 31924,
+ "타": 31925,
+ "𝓝": 31926,
+ "थ": 31927,
+ "現": 31928,
+ "ˇ": 31929,
+ "종": 31930,
+ "助": 31931,
+ "唐": 31932,
+ "瀬": 31933,
+ "ន": 31934,
+ "微": 31935,
+ "1": 31936,
+ "Ġ": 31937,
+ "ほ": 31938,
+ "舞": 31939,
+ "내": 31940,
+ "중": 31941,
+ "Ē": 31942,
+ "导": 31943,
+ "效": 31944,
+ "방": 31945,
+ "ḏ": 31946,
+ "深": 31947,
+ "梅": 31948,
+ "料": 31949,
+ "월": 31950,
+ "每": 31951,
+ "洲": 31952,
+ "회": 31953,
+ "茶": 31954,
+ "败": 31955,
+ "ഞ": 31956,
+ "ể": 31957,
+ "ヨ": 31958,
+ "些": 31959,
+ "双": 31960,
+ "嘉": 31961,
+ "모": 31962,
+ "바": 31963,
+ "ษ": 31964,
+ "進": 31965,
+ "음": 31966,
+ "ญ": 31967,
+ "丁": 31968,
+ "故": 31969,
+ "計": 31970,
+ "遠": 31971,
+ "교": 31972,
+ "재": 31973,
+ "候": 31974,
+ "房": 31975,
+ "명": 31976,
+ "两": 31977,
+ "ფ": 31978,
+ "才": 31979,
+ "합": 31980,
+ "止": 31981,
+ "番": 31982,
+ "ɯ": 31983,
+ "奇": 31984,
+ "怪": 31985,
+ "联": 31986,
+ "역": 31987,
+ "泰": 31988,
+ "백": 31989,
+ "ὀ": 31990,
+ "げ": 31991,
+ "べ": 31992,
+ "边": 31993,
+ "还": 31994,
+ "黃": 31995,
+ "왕": 31996,
+ "收": 31997,
+ "弘": 31998,
+ "给": 31999
+ },
+ "merges": [
+ "▁ t",
+ "e r",
+ "i n",
+ "▁ a",
+ "e n",
+ "o n",
+ "▁t h",
+ "▁ th",
+ "e s",
+ "▁ s",
+ "▁ d",
+ "a t",
+ "o r",
+ "a n",
+ "▁ c",
+ "i s",
+ "r e",
+ "i t",
+ "▁t he",
+ "▁th e",
+ "▁ the",
+ "a r",
+ "l e",
+ "▁ w",
+ "▁ p",
+ "o u",
+ "a l",
+ "▁ f",
+ "▁ m",
+ "e d",
+ "▁ o",
+ "▁ b",
+ "o m",
+ "io n",
+ "i on",
+ "in g",
+ "i ng",
+ "i c",
+ "a s",
+ "e l",
+ "en t",
+ "e nt",
+ "▁i n",
+ "▁ in",
+ "▁ h",
+ "n d",
+ "e t",
+ "▁ l",
+ "▁ n",
+ "s t",
+ "▁t o",
+ "▁ to",
+ "c h",
+ "▁ I",
+ "r o",
+ "i l",
+ "▁o f",
+ "▁ of",
+ "d e",
+ "c t",
+ "▁ (",
+ "a m",
+ "▁ C",
+ "▁d e",
+ "▁ de",
+ "▁ S",
+ "▁ u",
+ "▁ A",
+ "▁ \\",
+ "▁ e",
+ "▁a nd",
+ "▁an d",
+ "▁ and",
+ "▁ T",
+ "o l",
+ "▁ v",
+ "i m",
+ "o t",
+ "a d",
+ "u t",
+ "▁ g",
+ "e m",
+ "u r",
+ "i d",
+ "▁ *",
+ "i g",
+ "r a",
+ "▁r e",
+ "▁ re",
+ "▁i s",
+ "▁ is",
+ "q u",
+ "o w",
+ "▁ M",
+ "es t",
+ "e st",
+ "▁ y",
+ "s e",
+ "v e",
+ "c e",
+ "i e",
+ "u n",
+ "▁ P",
+ "▁ B",
+ "a g",
+ "u l",
+ "▁ =",
+ "h e",
+ "en d",
+ "e nd",
+ "od e",
+ "o de",
+ "te r",
+ "t er",
+ "me nt",
+ "men t",
+ "m ent",
+ "o s",
+ "▁ D",
+ "i f",
+ "at ion",
+ "ati on",
+ "atio n",
+ "a tion",
+ "▁f or",
+ "▁fo r",
+ "▁ for",
+ "▁ r",
+ "▁ L",
+ "▁y ou",
+ "▁yo u",
+ "▁ you",
+ "▁b e",
+ "▁ be",
+ "l y",
+ "ve r",
+ "v er",
+ "a b",
+ "t e",
+ "▁i t",
+ "▁ it",
+ "▁o n",
+ "▁ on",
+ "r i",
+ "u s",
+ "▁ \"",
+ "▁w h",
+ "▁ wh",
+ "▁c on",
+ "▁co n",
+ "▁ con",
+ "▁ H",
+ "▁s t",
+ "▁ st",
+ "i r",
+ "▁ E",
+ "▁ F",
+ "c k",
+ "▁a n",
+ "▁ an",
+ "t h",
+ "e g",
+ "a y",
+ "it h",
+ "i th",
+ "▁ R",
+ "is t",
+ "i st",
+ "an d",
+ "a nd",
+ "▁t hat",
+ "▁th at",
+ "▁ that",
+ "▁a l",
+ "▁ al",
+ "▁ $",
+ "▁ #",
+ "o d",
+ "u m",
+ "▁ W",
+ "h t",
+ "co de",
+ "cod e",
+ "c ode",
+ "▁ G",
+ "at e",
+ "a te",
+ "es s",
+ "e ss",
+ "▁ N",
+ "er e",
+ "e re",
+ "p p",
+ "▁a s",
+ "▁ as",
+ "▁s e",
+ "▁ se",
+ "▁p ro",
+ "▁pr o",
+ "▁ pro",
+ "▁w ith",
+ "▁wit h",
+ "▁ with",
+ "p e",
+ "▁ k",
+ "er s",
+ "e rs",
+ "p t",
+ ") ;",
+ "l o",
+ "▁c om",
+ "▁co m",
+ "▁ com",
+ "am e",
+ "a me",
+ "▁ `",
+ "▁C om",
+ "▁Co m",
+ "▁ Com",
+ "i a",
+ "an t",
+ "a nt",
+ "▁l a",
+ "▁ la",
+ "▁ {",
+ "▁e n",
+ "▁ en",
+ "ct ion",
+ "c tion",
+ "▁e x",
+ "▁ ex",
+ "l d",
+ "u b",
+ "▁ j",
+ "l a",
+ "u e",
+ "▁ J",
+ "ic h",
+ "i ch",
+ "▁d o",
+ "▁ do",
+ "▁ O",
+ "▁q u",
+ "▁ qu",
+ "i v",
+ "or t",
+ "o rt",
+ "ar t",
+ "a rt",
+ "▁u n",
+ "▁ un",
+ "▁# #",
+ "▁ ##",
+ "▁t his",
+ "▁th is",
+ "▁ this",
+ "k e",
+ "▁h a",
+ "▁ ha",
+ "▁ -",
+ "ou t",
+ "o ut",
+ "▁T he",
+ "▁Th e",
+ "▁ The",
+ "▁n ot",
+ "▁no t",
+ "▁ not",
+ "▁n e",
+ "▁ ne",
+ "il l",
+ "i ll",
+ "▁l e",
+ "▁ le",
+ "c i",
+ "ro m",
+ "r om",
+ "in e",
+ "i ne",
+ "/ /",
+ "o p",
+ "eg in",
+ "e gin",
+ "▁Com ment",
+ "▁Comm ent",
+ "▁ Comment",
+ "be gin",
+ "beg in",
+ "b egin",
+ "с т",
+ "as s",
+ "a ss",
+ "i z",
+ ") .",
+ "o g",
+ "▁ п",
+ "▁o r",
+ "▁ or",
+ "▁w as",
+ "▁wa s",
+ "▁ was",
+ "▁a t",
+ "▁ at",
+ "ou r",
+ "o ur",
+ "▁ i",
+ "ai n",
+ "a in",
+ "▁ K",
+ "н а",
+ "▁ V",
+ "g e",
+ "▁s u",
+ "▁ su",
+ "a p",
+ "ag e",
+ "a ge",
+ "ou ld",
+ "oul d",
+ "o uld",
+ "n e",
+ "a v",
+ "x t",
+ "or e",
+ "o re",
+ "il e",
+ "i le",
+ "- -",
+ "▁ в",
+ "▁b y",
+ "▁ by",
+ "l i",
+ "at h",
+ "a th",
+ "р а",
+ "be r",
+ "b er",
+ "ac h",
+ "a ch",
+ "al l",
+ "a ll",
+ "▁T h",
+ "▁ Th",
+ "ul t",
+ "u lt",
+ "▁ }",
+ "▁ U",
+ "▁u s",
+ "▁ us",
+ "▁ z",
+ "us t",
+ "u st",
+ "▁h ave",
+ "▁ha ve",
+ "▁hav e",
+ "▁ have",
+ "li c",
+ "l ic",
+ "н и",
+ "▁c an",
+ "▁ca n",
+ "▁ can",
+ "t r",
+ "co m",
+ "c om",
+ ") ,",
+ "▁I n",
+ "▁ In",
+ "in d",
+ "i nd",
+ "el l",
+ "e ll",
+ "▁f rom",
+ "▁fr om",
+ "▁fro m",
+ "▁ from",
+ "о в",
+ "t o",
+ "▁ [",
+ "ab le",
+ "abl e",
+ "a ble",
+ "os t",
+ "o st",
+ "▁c h",
+ "▁ ch",
+ "ec t",
+ "e ct",
+ "ig ht",
+ "igh t",
+ "in t",
+ "i nt",
+ "▁ '",
+ "▁a re",
+ "▁ar e",
+ "▁ are",
+ "▁i m",
+ "▁ im",
+ "▁s h",
+ "▁ sh",
+ "▁ <",
+ "▁A n",
+ "▁ An",
+ "▁ с",
+ "at a",
+ "a ta",
+ "ir e",
+ "i re",
+ "▁t r",
+ "▁ tr",
+ "co n",
+ "c on",
+ "or d",
+ "o rd",
+ "it y",
+ "i ty",
+ "ar d",
+ "a rd",
+ "▁h e",
+ "▁ he",
+ "▁b ut",
+ "▁bu t",
+ "▁ but",
+ "o c",
+ "= \"",
+ "▁p r",
+ "▁ pr",
+ "ur e",
+ "u re",
+ "pe r",
+ "p er",
+ "ac k",
+ "a ck",
+ "or k",
+ "on g",
+ "o ng",
+ "an s",
+ "a ns",
+ "к о",
+ "pl e",
+ "p le",
+ "▁d es",
+ "▁de s",
+ "▁ des",
+ "o k",
+ "or m",
+ "o rm",
+ "we r",
+ "w er",
+ "a k",
+ "p r",
+ "as e",
+ "a se",
+ "▁e l",
+ "▁ el",
+ "p h",
+ "a c",
+ "▁u nd",
+ "▁un d",
+ "▁ und",
+ "▁a r",
+ "▁ ar",
+ "▁i f",
+ "▁ if",
+ "u d",
+ "p s",
+ "it e",
+ "i te",
+ "bl e",
+ "b le",
+ "н о",
+ "fe r",
+ "f er",
+ "p l",
+ "iv e",
+ "i ve",
+ "an g",
+ "a ng",
+ "en s",
+ "e ns",
+ "р о",
+ "▁s o",
+ "▁ so",
+ "s o",
+ "as t",
+ "a st",
+ "( )",
+ "sw er",
+ "s wer",
+ "r u",
+ "ie s",
+ "i es",
+ "▁ :",
+ "a u",
+ "o v",
+ "р е",
+ "г о",
+ "▁d er",
+ "▁de r",
+ "▁ der",
+ "▁m y",
+ "▁ my",
+ "▁w e",
+ "▁ we",
+ "▁m e",
+ "▁ me",
+ "n t",
+ "▁a d",
+ "▁ ad",
+ "ur n",
+ "u rn",
+ "▁y our",
+ "▁you r",
+ "▁yo ur",
+ "▁ your",
+ ":/ /",
+ ": //",
+ "ar e",
+ "a re",
+ "▁a ll",
+ "▁al l",
+ "▁ all",
+ "f f",
+ "i o",
+ "es tion",
+ "est ion",
+ "esti on",
+ "im e",
+ "i me",
+ "▁e r",
+ "▁ er",
+ "la ss",
+ "las s",
+ "l ass",
+ "▁ и",
+ "▁wh ich",
+ "▁ which",
+ "om e",
+ "o me",
+ "on t",
+ "o nt",
+ "▁p ar",
+ "▁pa r",
+ "▁ par",
+ "▁m a",
+ "▁ ma",
+ "▁ Y",
+ "\" ,",
+ "▁ о",
+ "f t",
+ "ia l",
+ "i al",
+ "c c",
+ "ou nd",
+ "oun d",
+ "o und",
+ "▁l i",
+ "▁ li",
+ "▁re s",
+ "▁r es",
+ "▁ res",
+ "et h",
+ "e th",
+ "je ct",
+ "j ect",
+ "▁a pp",
+ "▁ap p",
+ "▁ app",
+ "▁S t",
+ "▁ St",
+ "ic e",
+ "i ce",
+ "▁a m",
+ "▁ am",
+ "ac t",
+ "a ct",
+ "▁d el",
+ "▁de l",
+ "▁ del",
+ "g r",
+ "at ed",
+ "ate d",
+ "a ted",
+ "ie r",
+ "i er",
+ "▁a b",
+ "▁ ab",
+ "▁e t",
+ "▁ et",
+ "al ly",
+ "all y",
+ ". .",
+ "po rt",
+ "por t",
+ "p ort",
+ "i k",
+ "▁p er",
+ "▁pe r",
+ "▁ per",
+ "▁c ont",
+ "▁con t",
+ "▁co nt",
+ "▁ cont",
+ "р и",
+ "к а",
+ "se r",
+ "s er",
+ "л и",
+ "l l",
+ "ie w",
+ "i ew",
+ "ig n",
+ "i gn",
+ "_ {",
+ "pu t",
+ "p ut",
+ "on e",
+ "o ne",
+ "un ction",
+ "unc tion",
+ "unct ion",
+ "▁d i",
+ "▁ di",
+ "ar y",
+ "a ry",
+ "it ion",
+ "iti on",
+ "i tion",
+ "m a",
+ "е н",
+ "ge t",
+ "g et",
+ "▁l o",
+ "▁ lo",
+ "▁v al",
+ "▁va l",
+ "▁ val",
+ "▁ Q",
+ "ra n",
+ "r an",
+ "▁ д",
+ "en ce",
+ "enc e",
+ "▁w ork",
+ "▁wor k",
+ "▁ work",
+ "▁н а",
+ "▁ на",
+ "i p",
+ "it em",
+ "ite m",
+ "i tem",
+ "yp e",
+ "y pe",
+ "▁ &",
+ "▁h is",
+ "▁hi s",
+ "▁ his",
+ "▁u se",
+ "▁us e",
+ "▁ use",
+ "de r",
+ "d er",
+ "▁An swer",
+ "▁Ans wer",
+ "▁ Answer",
+ "▁w ill",
+ "▁wil l",
+ "▁ will",
+ "iz e",
+ "i ze",
+ "т а",
+ "lo w",
+ "l ow",
+ "▁C h",
+ "▁ Ch",
+ "▁g et",
+ "▁ge t",
+ "▁ get",
+ "id e",
+ "i de",
+ "ou s",
+ "o us",
+ "in k",
+ "pt ion",
+ "p tion",
+ "л а",
+ "tu rn",
+ "t urn",
+ "un g",
+ "u ng",
+ "e c",
+ "u g",
+ "fo rm",
+ "for m",
+ "f orm",
+ "re s",
+ "r es",
+ "ht t",
+ "h tt",
+ "ou g",
+ "o ug",
+ "л ь",
+ "▁n o",
+ "▁ no",
+ "c l",
+ "▁r o",
+ "▁ ro",
+ "▁o ne",
+ "▁on e",
+ "▁ one",
+ "t t",
+ "cr i",
+ "c ri",
+ "d u",
+ "▁u p",
+ "▁ up",
+ "т о",
+ "( \"",
+ "▁o b",
+ "▁ ob",
+ "w e",
+ "or y",
+ "o ry",
+ "▁e st",
+ "▁es t",
+ "▁ est",
+ "er y",
+ "e ry",
+ "ie l",
+ "i el",
+ "st r",
+ "s tr",
+ "o b",
+ "▁qu e",
+ "▁q ue",
+ "▁ que",
+ "ia n",
+ "i an",
+ "▁o ut",
+ "▁ou t",
+ "▁ out",
+ "▁p l",
+ "▁ pl",
+ "▁n ew",
+ "▁ne w",
+ "▁ new",
+ "к и",
+ "▁ +",
+ "r y",
+ "ot h",
+ "o th",
+ "th er",
+ "the r",
+ "t her",
+ "▁v ar",
+ "▁va r",
+ "▁ var",
+ "▁w ould",
+ "▁wo uld",
+ "▁s er",
+ "▁se r",
+ "▁ ser",
+ "ter n",
+ "te rn",
+ "t ern",
+ "te xt",
+ "tex t",
+ "t ext",
+ "▁t here",
+ "▁th ere",
+ "▁the re",
+ "▁ther e",
+ "▁ there",
+ "is h",
+ "i sh",
+ "ro r",
+ "r or",
+ "т е",
+ "▁s et",
+ "▁se t",
+ "▁ set",
+ "▁ @",
+ "▁п о",
+ "▁ по",
+ "▁t e",
+ "▁ te",
+ "e x",
+ "▁re turn",
+ "▁ret urn",
+ "▁ return",
+ "ai l",
+ "a il",
+ "▁a ny",
+ "▁an y",
+ "▁ any",
+ "▁I t",
+ "▁ It",
+ "▁f unction",
+ "▁fun ction",
+ "▁func tion",
+ "▁ function",
+ "{ \\",
+ "' ,",
+ "é s",
+ "al e",
+ "a le",
+ "а н",
+ "▁w hen",
+ "▁wh en",
+ "▁whe n",
+ "▁ when",
+ "i b",
+ "▁g o",
+ "▁ go",
+ "an ce",
+ "anc e",
+ "▁h ad",
+ "▁ha d",
+ "▁ had",
+ "▁Q u",
+ "▁ Qu",
+ "▁c omp",
+ "▁com p",
+ "▁co mp",
+ "▁ comp",
+ "л е",
+ "▁ з",
+ "ma th",
+ "mat h",
+ "m ath",
+ "▁h as",
+ "▁ha s",
+ "▁ has",
+ "▁ м",
+ "▁p re",
+ "▁pr e",
+ "▁ pre",
+ "en er",
+ "ene r",
+ "e ner",
+ "▁p art",
+ "▁par t",
+ "▁pa rt",
+ "▁ part",
+ "el f",
+ "▁d ie",
+ "▁di e",
+ "▁ die",
+ "▁l ike",
+ "▁li ke",
+ "▁lik e",
+ "▁ like",
+ "ra y",
+ "r ay",
+ "ir st",
+ "irs t",
+ "▁d is",
+ "▁di s",
+ "▁ dis",
+ "▁m an",
+ "▁ma n",
+ "▁ man",
+ "ri t",
+ "r it",
+ "▁t hen",
+ "▁th en",
+ "▁the n",
+ "▁ then",
+ "▁c lass",
+ "▁cl ass",
+ "▁cla ss",
+ "▁clas s",
+ "▁ class",
+ "pr o",
+ "p ro",
+ "▁p o",
+ "▁ po",
+ "▁u sing",
+ "▁us ing",
+ "▁ using",
+ "e b",
+ "▁c ode",
+ "▁co de",
+ "▁cod e",
+ "▁ code",
+ "ow n",
+ "o wn",
+ "▁s ome",
+ "▁so me",
+ "▁som e",
+ "▁ some",
+ "ce s",
+ "c es",
+ "▁$ \\",
+ "▁ $\\",
+ "е р",
+ "le ct",
+ "l ect",
+ "▁a u",
+ "▁ au",
+ "is ch",
+ "isc h",
+ "i sch",
+ "▁c ol",
+ "▁co l",
+ "▁ col",
+ "▁ –",
+ "u p",
+ "on s",
+ "o ns",
+ "▁a dd",
+ "▁ad d",
+ "▁ add",
+ "il d",
+ "i ld",
+ "is s",
+ "i ss",
+ "va l",
+ "v al",
+ "ou nt",
+ "oun t",
+ "o unt",
+ "le s",
+ "l es",
+ "ve nt",
+ "ven t",
+ "v ent",
+ "▁ Z",
+ "I n",
+ "ro w",
+ "r ow",
+ "ea r",
+ "e ar",
+ "at ions",
+ "ation s",
+ "ati ons",
+ "atio ns",
+ "a h",
+ "qu e",
+ "q ue",
+ "ub lic",
+ "u blic",
+ "an k",
+ "▁s p",
+ "▁ sp",
+ "▁W h",
+ "▁ Wh",
+ "-- --",
+ "--- -",
+ "- ---",
+ "s k",
+ "e w",
+ "ag s",
+ "a gs",
+ "т и",
+ "an n",
+ "a nn",
+ "▁ —",
+ "er t",
+ "e rt",
+ "ac e",
+ "a ce",
+ "sc h",
+ "s ch",
+ "▁n eed",
+ "▁ne ed",
+ "▁ need",
+ "▁ à",
+ "ie n",
+ "i en",
+ "ou gh",
+ "oug h",
+ "o ugh",
+ "н е",
+ "▁d ef",
+ "▁de f",
+ "▁ def",
+ "i j",
+ "er n",
+ "e rn",
+ "▁w hat",
+ "▁wh at",
+ "▁ what",
+ "▁A r",
+ "▁ Ar",
+ "w o",
+ "m l",
+ "< /",
+ "▁R e",
+ "▁ Re",
+ "▁e s",
+ "▁ es",
+ "▁in st",
+ "▁ins t",
+ "▁ inst",
+ "b o",
+ "a z",
+ "▁# ##",
+ "▁## #",
+ "▁ б",
+ "er m",
+ "e rm",
+ "▁A l",
+ "▁ Al",
+ "le d",
+ "l ed",
+ "д а",
+ "te n",
+ "t en",
+ "se t",
+ "s et",
+ "л о",
+ "▁c omm",
+ "▁com m",
+ "▁co mm",
+ "▁ comm",
+ "s h",
+ "в а",
+ "▁ /",
+ "▁d ata",
+ "▁da ta",
+ "▁dat a",
+ "▁ data",
+ "▁/ /",
+ "▁ //",
+ "] (",
+ "▁s tr",
+ "▁st r",
+ "▁ str",
+ "os e",
+ "o se",
+ "▁U n",
+ "▁ Un",
+ "ve n",
+ "v en",
+ "S t",
+ ".. .",
+ ". ..",
+ "▁ С",
+ "ys t",
+ "y st",
+ "▁ «",
+ "ic k",
+ "i ck",
+ "i x",
+ "pa r",
+ "p ar",
+ "▁ у",
+ "▁w ant",
+ "▁wa nt",
+ "n g",
+ "ot e",
+ "o te",
+ "▁g r",
+ "▁ gr",
+ "▁d u",
+ "▁ du",
+ "▁ .",
+ "un d",
+ "u nd",
+ "▁on ly",
+ "▁ only",
+ "▁s a",
+ "▁ sa",
+ "el y",
+ "e ly",
+ "ve rs",
+ "ver s",
+ "v ers",
+ "▁e nt",
+ "▁en t",
+ "▁ ent",
+ ") )",
+ "( '",
+ "▁m od",
+ "▁mo d",
+ "▁ mod",
+ "av a",
+ "a va",
+ "to n",
+ "t on",
+ "▁sh ould",
+ "▁sho uld",
+ "▁ should",
+ "em ent",
+ "eme nt",
+ "emen t",
+ "e ment",
+ "▁f orm",
+ "▁for m",
+ "▁fo rm",
+ "▁ form",
+ "▁al so",
+ "▁als o",
+ "▁ also",
+ "▁s c",
+ "▁ sc",
+ "in gs",
+ "ing s",
+ "▁Y ou",
+ "▁ You",
+ "ó n",
+ "▁k n",
+ "▁ kn",
+ "() ;",
+ "( );",
+ "▁ |",
+ "▁w ere",
+ "▁we re",
+ "▁wer e",
+ "s s",
+ "▁Qu estion",
+ "▁ Question",
+ "is e",
+ "i se",
+ "▁th ey",
+ "▁the y",
+ "▁ they",
+ "▁D e",
+ "▁ De",
+ "on d",
+ "o nd",
+ "▁s ol",
+ "▁so l",
+ "▁ sol",
+ "▁f ol",
+ "▁fo l",
+ "▁ fol",
+ "▁m ore",
+ "▁mo re",
+ "▁mor e",
+ "▁ more",
+ "▁h er",
+ "▁he r",
+ "▁ her",
+ "▁ _",
+ "▁ é",
+ "at ch",
+ "ft er",
+ "fte r",
+ "f ter",
+ "▁c re",
+ "▁cr e",
+ "▁ cre",
+ "lo ck",
+ "loc k",
+ "l ock",
+ "tr ing",
+ "tri ng",
+ "t ring",
+ "▁T his",
+ "▁Th is",
+ "▁ This",
+ "z e",
+ "ad o",
+ "a do",
+ "ul l",
+ "u ll",
+ "ge r",
+ "g er",
+ "b e",
+ "▁o ther",
+ "▁ot her",
+ "▁ other",
+ "▁T ags",
+ "▁Tag s",
+ "▁Ta gs",
+ "▁ Tags",
+ "ut ion",
+ "uti on",
+ "u tion",
+ "ic t",
+ "i ct",
+ "▁h ow",
+ "▁ho w",
+ "▁ how",
+ "▁ x",
+ "▁S e",
+ "▁ Se",
+ "▁c he",
+ "▁ch e",
+ "▁ che",
+ "cri pt",
+ "cr ipt",
+ "▁j ust",
+ "▁ju st",
+ "▁ just",
+ "▁p os",
+ "▁po s",
+ "▁ pos",
+ "an ge",
+ "ang e",
+ "if ic",
+ "ifi c",
+ "i fic",
+ "re e",
+ "r ee",
+ "} }",
+ "▁t ime",
+ "▁tim e",
+ "▁ti me",
+ "▁ time",
+ "ap p",
+ "a pp",
+ "н ы",
+ "▁f ile",
+ "▁fil e",
+ "▁fi le",
+ "▁ file",
+ "ar k",
+ "ic al",
+ "ica l",
+ "i cal",
+ "▁f irst",
+ "▁fir st",
+ "▁ first",
+ "▁in t",
+ "▁i nt",
+ "▁ int",
+ "▁ В",
+ "▁H e",
+ "▁ He",
+ "t a",
+ "um ent",
+ "ume nt",
+ "umen t",
+ "u ment",
+ "or s",
+ "o rs",
+ "le ment",
+ "lem ent",
+ "l ement",
+ "ra c",
+ "r ac",
+ "▁a g",
+ "▁ ag",
+ "▁do es",
+ "▁ does",
+ "y n",
+ "re ad",
+ "rea d",
+ "r ead",
+ "ua l",
+ "u al",
+ "▁L e",
+ "▁ Le",
+ "y s",
+ "▁e m",
+ "▁ em",
+ "▁n um",
+ "▁nu m",
+ "▁ num",
+ "ve l",
+ "v el",
+ "д и",
+ "ov er",
+ "ove r",
+ "o ver",
+ "▁d if",
+ "▁di f",
+ "et hod",
+ "eth od",
+ "▁I f",
+ "▁ If",
+ "▁s pe",
+ "▁sp e",
+ "▁ spe",
+ "y m",
+ "▁t hem",
+ "▁th em",
+ "▁the m",
+ "▁in to",
+ "▁int o",
+ "▁ into",
+ "▁l es",
+ "▁le s",
+ "▁ les",
+ "▁it s",
+ "▁i ts",
+ "▁ its",
+ "es e",
+ "e se",
+ "ie ld",
+ "iel d",
+ "i eld",
+ "▁p ublic",
+ "▁pub lic",
+ "▁pu blic",
+ "▁publi c",
+ "▁ public",
+ "▁ П",
+ "▁d en",
+ "▁de n",
+ "▁ den",
+ "yst em",
+ "ys tem",
+ "o f",
+ "▁o ver",
+ "▁ov er",
+ "▁ over",
+ "- >",
+ "▁f il",
+ "▁fi l",
+ "▁ fil",
+ "na me",
+ "nam e",
+ "n ame",
+ "in al",
+ "ina l",
+ "i nal",
+ "▁i l",
+ "▁ il",
+ "am ple",
+ "amp le",
+ "▁w ay",
+ "▁wa y",
+ "▁ way",
+ "ic a",
+ "i ca",
+ "в о",
+ "ce ss",
+ "ces s",
+ "c ess",
+ "it t",
+ "i tt",
+ "uc h",
+ "u ch",
+ "▁w here",
+ "▁wh ere",
+ "▁whe re",
+ "▁ where",
+ "м и",
+ "or g",
+ "o rg",
+ "htt ps",
+ "http s",
+ "▁v o",
+ "▁ vo",
+ "ie nt",
+ "ien t",
+ "i ent",
+ "ov e",
+ "o ve",
+ "▁val ue",
+ "▁valu e",
+ "▁ value",
+ "en g",
+ "e ng",
+ "▁L a",
+ "▁ La",
+ "^ {",
+ "re f",
+ "r ef",
+ "ie d",
+ "i ed",
+ "E R",
+ "▁s tat",
+ "▁st at",
+ "▁sta t",
+ "▁ stat",
+ "fi g",
+ "f ig",
+ "m e",
+ "▁v on",
+ "▁vo n",
+ "▁ von",
+ "▁in ter",
+ "▁int er",
+ "▁inte r",
+ "▁ inter",
+ "ro id",
+ "r oid",
+ "at er",
+ "ate r",
+ "a ter",
+ "▁the ir",
+ "▁b et",
+ "▁be t",
+ "▁ bet",
+ "▁e in",
+ "▁ ein",
+ "} \\",
+ "\" >",
+ "▁s ub",
+ "▁su b",
+ "▁ sub",
+ "▁o p",
+ "▁ op",
+ "▁d on",
+ "▁do n",
+ "▁ don",
+ "t y",
+ "▁t ry",
+ "▁tr y",
+ "▁ try",
+ "▁P ro",
+ "▁Pr o",
+ "▁ Pro",
+ "▁t ra",
+ "▁tr a",
+ "▁ tra",
+ "▁s ame",
+ "▁sa me",
+ "▁sam e",
+ "▁ same",
+ "e p",
+ "▁t wo",
+ "▁tw o",
+ "▁ two",
+ "▁n ame",
+ "▁na me",
+ "▁nam e",
+ "▁ name",
+ "ol d",
+ "o ld",
+ "le t",
+ "l et",
+ "▁s im",
+ "▁si m",
+ "▁ sim",
+ "s p",
+ "▁a v",
+ "▁ av",
+ "br e",
+ "b re",
+ "ble m",
+ "bl em",
+ "b lem",
+ "e y",
+ "▁c ould",
+ "▁co uld",
+ "▁cou ld",
+ "▁ could",
+ "▁c or",
+ "▁co r",
+ "▁ cor",
+ "▁a cc",
+ "▁ac c",
+ "▁ acc",
+ "ay s",
+ "a ys",
+ "cr e",
+ "c re",
+ "ur r",
+ "u rr",
+ "s i",
+ "▁con st",
+ "▁cons t",
+ "▁ const",
+ "ue s",
+ "u es",
+ "} $",
+ "V iew",
+ "▁a ct",
+ "▁ac t",
+ "▁ act",
+ "▁b o",
+ "▁ bo",
+ "▁к о",
+ "▁ ко",
+ "▁s om",
+ "▁so m",
+ "▁ som",
+ "▁ab out",
+ "▁ about",
+ "la nd",
+ "lan d",
+ "l and",
+ "me r",
+ "m er",
+ "▁l ist",
+ "▁li st",
+ "▁ list",
+ "ca l",
+ "c al",
+ "▁im port",
+ "▁imp ort",
+ "▁ import",
+ "co l",
+ "c ol",
+ "▁n a",
+ "▁ na",
+ "n a",
+ ": :",
+ "▁w ho",
+ "▁wh o",
+ "▁ who",
+ "▁e rror",
+ "▁er ror",
+ "▁err or",
+ "▁ error",
+ "▁ X",
+ "at or",
+ "ato r",
+ "a tor",
+ "ex t",
+ "e xt",
+ "▁b een",
+ "▁be en",
+ "é r",
+ "▁r un",
+ "▁ru n",
+ "▁ run",
+ "po s",
+ "p os",
+ "▁c l",
+ "▁ cl",
+ "* *",
+ "▁ К",
+ "ul ar",
+ "ula r",
+ "u lar",
+ "au se",
+ "aus e",
+ "a use",
+ "▁re g",
+ "▁r eg",
+ "▁ reg",
+ "▁k now",
+ "▁kn ow",
+ "▁ know",
+ "▁s ee",
+ "▁se e",
+ "▁ see",
+ "▁h im",
+ "▁hi m",
+ "▁ him",
+ "ni ng",
+ "n ing",
+ "▁з а",
+ "▁ за",
+ "at es",
+ "ate s",
+ "a tes",
+ "fo re",
+ "for e",
+ "f ore",
+ "ion s",
+ "io ns",
+ "i ons",
+ "▁h el",
+ "▁he l",
+ "▁ hel",
+ "ut e",
+ "u te",
+ "▁re m",
+ "▁r em",
+ "▁ rem",
+ "▁г о",
+ "▁ го",
+ "▁M ar",
+ "▁Ma r",
+ "▁ Mar",
+ "р у",
+ "vi ce",
+ "vic e",
+ "v ice",
+ "ir ect",
+ "ire ct",
+ "i rect",
+ "ne r",
+ "n er",
+ "▁u nder",
+ "▁un der",
+ "▁und er",
+ "▁ under",
+ "ri b",
+ "r ib",
+ "h r",
+ "ч е",
+ "▁A s",
+ "▁ As",
+ "▁e nd",
+ "▁en d",
+ "▁ end",
+ "em ber",
+ "emb er",
+ "▁ а",
+ "▁a tt",
+ "▁at t",
+ "▁ att",
+ "in a",
+ "i na",
+ "so n",
+ "s on",
+ "▁f ollow",
+ "▁fol low",
+ "▁ follow",
+ "▁S ch",
+ "▁Sc h",
+ "▁ Sch",
+ "pe ct",
+ "pec t",
+ "p ect",
+ "▁re l",
+ "▁r el",
+ "▁ rel",
+ "▁S o",
+ "▁ So",
+ "▁l ook",
+ "▁lo ok",
+ "▁ look",
+ "ab el",
+ "abe l",
+ "a bel",
+ "▁pro blem",
+ "▁prob lem",
+ "▁proble m",
+ "▁probl em",
+ "▁ problem",
+ "▁v an",
+ "▁va n",
+ "▁ van",
+ "st rong",
+ "str ong",
+ "c o",
+ "po n",
+ "p on",
+ "c a",
+ "ad a",
+ "a da",
+ "\" :",
+ "con d",
+ "co nd",
+ "c ond",
+ "am b",
+ "a mb",
+ "} ,",
+ "qu est",
+ "que st",
+ "ques t",
+ "q uest",
+ "▁a ut",
+ "▁au t",
+ "▁ aut",
+ "▁res ult",
+ "▁ result",
+ "▁m ay",
+ "▁ma y",
+ "▁ may",
+ "R e",
+ "ht tp",
+ "htt p",
+ "h ttp",
+ ") :",
+ "▁A nd",
+ "▁An d",
+ "▁ And",
+ "re d",
+ "r ed",
+ "▁H ow",
+ "▁Ho w",
+ "▁ How",
+ "p o",
+ "ск о",
+ "с ко",
+ "at t",
+ "a tt",
+ "ou p",
+ "o up",
+ "ce d",
+ "c ed",
+ "▁t ype",
+ "▁typ e",
+ "▁ty pe",
+ "▁ type",
+ "▁t han",
+ "▁th an",
+ "▁ than",
+ "▁c ons",
+ "▁con s",
+ "▁co ns",
+ "▁ cons",
+ "u f",
+ "ц и",
+ "▁qu estion",
+ "▁quest ion",
+ "▁questi on",
+ "▁ question",
+ "ra ph",
+ "rap h",
+ "r aph",
+ "ig h",
+ "i gh",
+ "▁ М",
+ "▁h tt",
+ "▁ htt",
+ "in s",
+ "i ns",
+ "de n",
+ "d en",
+ "▁d a",
+ "▁ da",
+ "▁v er",
+ "▁ve r",
+ "▁ ver",
+ "o h",
+ "▁= >",
+ "▁ =>",
+ "ri v",
+ "r iv",
+ "ud e",
+ "u de",
+ "▁F or",
+ "▁Fo r",
+ "▁ For",
+ "▁r a",
+ "▁ ra",
+ "fr ac",
+ "fra c",
+ "f rac",
+ "м а",
+ "▁a fter",
+ "▁af ter",
+ "▁ after",
+ "} {",
+ "▁m ethod",
+ "▁met hod",
+ "▁ method",
+ "\" )",
+ "am p",
+ "a mp",
+ "as h",
+ "a sh",
+ "▁re c",
+ "▁r ec",
+ "▁ rec",
+ "▁d iffer",
+ "▁dif fer",
+ "▁diff er",
+ "O N",
+ "a x",
+ "am ent",
+ "ame nt",
+ "amen t",
+ "a ment",
+ "our ce",
+ "Co n",
+ "C on",
+ "it s",
+ "i ts",
+ "Na me",
+ "N ame",
+ "ma n",
+ "m an",
+ "▁b ec",
+ "▁be c",
+ "▁ bec",
+ "ch e",
+ "c he",
+ "▁E n",
+ "▁ En",
+ "a j",
+ "▁g ener",
+ "▁ge ner",
+ "▁gen er",
+ "▁gene r",
+ "▁ gener",
+ "I N",
+ "▁i d",
+ "▁ id",
+ "ag es",
+ "age s",
+ "a ges",
+ "▁l oc",
+ "▁lo c",
+ "▁ loc",
+ "f o",
+ "b r",
+ "▁s he",
+ "▁sh e",
+ "▁ she",
+ "Pr o",
+ "P ro",
+ "▁u na",
+ "▁un a",
+ "▁ una",
+ "▁ к",
+ "et a",
+ "e ta",
+ "lo g",
+ "l og",
+ "ol og",
+ "olo g",
+ "o log",
+ "▁s ur",
+ "▁su r",
+ "▁ sur",
+ "ar g",
+ "a rg",
+ "▁- -",
+ "▁ --",
+ "k t",
+ "( \\",
+ "mi n",
+ "m in",
+ "▁l ine",
+ "▁li ne",
+ "▁lin e",
+ "▁ line",
+ "▁v ari",
+ "▁var i",
+ "▁va ri",
+ "▁ vari",
+ "с я",
+ "ic s",
+ "i cs",
+ "н я",
+ "ve ry",
+ "ver y",
+ "v ery",
+ "ad d",
+ "a dd",
+ "▁o bject",
+ "▁ob ject",
+ "▁obj ect",
+ "▁ object",
+ "I d",
+ "▁B ut",
+ "▁Bu t",
+ "▁ But",
+ "▁c ase",
+ "▁cas e",
+ "▁ca se",
+ "▁ case",
+ "▁m ake",
+ "▁ma ke",
+ "▁mak e",
+ "▁ make",
+ "▁c al",
+ "▁ca l",
+ "▁ cal",
+ "▁p ass",
+ "▁pas s",
+ "▁pa ss",
+ "▁ pass",
+ "с ь",
+ "ess ion",
+ "ne t",
+ "n et",
+ ". \"",
+ "▁ г",
+ "ä r",
+ "д е",
+ "n o",
+ "at ing",
+ "ati ng",
+ "atin g",
+ "a ting",
+ "at o",
+ "a to",
+ "li ne",
+ "lin e",
+ "l ine",
+ "в и",
+ "▁E x",
+ "▁ Ex",
+ "▁a ss",
+ "▁as s",
+ "▁ ass",
+ "▁v ers",
+ "▁ver s",
+ "▁ve rs",
+ "▁ vers",
+ "л я",
+ "▁e d",
+ "▁ ed",
+ "um n",
+ "u mn",
+ "ot her",
+ "oth er",
+ "othe r",
+ "o ther",
+ "ст а",
+ "с та",
+ "at ive",
+ "ativ e",
+ "ati ve",
+ "St ring",
+ "Str ing",
+ "S tring",
+ "▁l os",
+ "▁lo s",
+ "▁ los",
+ "w n",
+ "▁an swer",
+ "▁ans wer",
+ "▁ answer",
+ "▁l et",
+ "▁le t",
+ "▁ let",
+ "▁p e",
+ "▁ pe",
+ "en ts",
+ "ent s",
+ "▁f e",
+ "▁ fe",
+ "in ce",
+ "inc e",
+ "n i",
+ "id er",
+ "ide r",
+ "i der",
+ "ow s",
+ "o ws",
+ "▁t est",
+ "▁te st",
+ "▁ test",
+ "▁h ere",
+ "▁he re",
+ "▁her e",
+ "▁ here",
+ "ro ll",
+ "rol l",
+ "r oll",
+ "▁c all",
+ "▁cal l",
+ "▁ca ll",
+ "▁ call",
+ "ru ct",
+ "r uct",
+ "▁p ol",
+ "▁po l",
+ "▁ pol",
+ "ai t",
+ "a it",
+ "▁b ack",
+ "▁ba ck",
+ "▁ back",
+ "h o",
+ "E x",
+ "re ss",
+ "res s",
+ "r ess",
+ "S T",
+ "ri ed",
+ "rie d",
+ "r ied",
+ "da te",
+ "dat e",
+ "d ate",
+ "е т",
+ "▁d id",
+ "▁di d",
+ "▁ did",
+ "ti ng",
+ "t ing",
+ "▁E l",
+ "▁ El",
+ "▁d em",
+ "▁de m",
+ "▁ dem",
+ ") $",
+ "ов а",
+ "о ва",
+ "ur rent",
+ "urr ent",
+ "urre nt",
+ "la ce",
+ "lac e",
+ "l ace",
+ "rig ht",
+ "r ight",
+ "re n",
+ "r en",
+ "п о",
+ "▁e ach",
+ "▁ each",
+ "c y",
+ "bl ock",
+ "blo ck",
+ "b lock",
+ "da ta",
+ "dat a",
+ "d ata",
+ "▁ %",
+ "▁a c",
+ "▁ ac",
+ "▁= =",
+ "▁ ==",
+ "ü r",
+ "▁p or",
+ "▁po r",
+ "▁ por",
+ "as k",
+ "a sk",
+ "ar ch",
+ "arc h",
+ "am es",
+ "ame s",
+ "a mes",
+ "▁C on",
+ "▁Co n",
+ "▁ Con",
+ "ч а",
+ "▁o ff",
+ "▁of f",
+ "▁ off",
+ "▁f ind",
+ "▁fin d",
+ "▁fi nd",
+ "▁ find",
+ "con t",
+ "co nt",
+ "c ont",
+ "▁n ow",
+ "▁no w",
+ "▁ now",
+ "wor k",
+ "w ork",
+ "at ional",
+ "ation al",
+ "ati onal",
+ "atio nal",
+ "d d",
+ "ci ón",
+ "ció n",
+ "c ión",
+ "▁ А",
+ "au lt",
+ "a ult",
+ "Li st",
+ "L ist",
+ "▁e xt",
+ "▁ex t",
+ "▁ ext",
+ "ur s",
+ "u rs",
+ "ak e",
+ "a ke",
+ "ul e",
+ "u le",
+ "▁p oint",
+ "▁po int",
+ "▁poi nt",
+ "▁ point",
+ "A T",
+ "au t",
+ "a ut",
+ "▁tr ans",
+ "▁tra ns",
+ "▁tran s",
+ "▁ trans",
+ "▁c o",
+ "▁ co",
+ "▁re ad",
+ "▁r ead",
+ "▁ read",
+ "▁u sed",
+ "▁us ed",
+ "▁use d",
+ "▁ used",
+ "ск и",
+ "с ки",
+ "ar i",
+ "a ri",
+ "L E",
+ "et er",
+ "ete r",
+ "e ter",
+ "ou n",
+ "o un",
+ "ev er",
+ "e ver",
+ "sel f",
+ "s elf",
+ "in ed",
+ "ine d",
+ "i ned",
+ "id th",
+ "u x",
+ "j s",
+ "▁s uch",
+ "▁su ch",
+ "▁suc h",
+ "▁ such",
+ "▁I s",
+ "▁ Is",
+ "é e",
+ "fu l",
+ "f ul",
+ "▁d ist",
+ "▁di st",
+ "▁dis t",
+ "▁ dist",
+ "▁b u",
+ "▁ bu",
+ "item ize",
+ "Con t",
+ "Co nt",
+ "C ont",
+ "j e",
+ "с и",
+ "▁p rov",
+ "▁pro v",
+ "▁pr ov",
+ "▁ prov",
+ "b b",
+ "wa rd",
+ "war d",
+ "w ard",
+ "es ent",
+ "ese nt",
+ "esen t",
+ "e sent",
+ "er son",
+ "ers on",
+ "an ks",
+ "ank s",
+ "w h",
+ "no t",
+ "n ot",
+ "▁W e",
+ "▁ We",
+ "k a",
+ "ro p",
+ "r op",
+ "at ur",
+ "atu r",
+ "al s",
+ "a ls",
+ "▁b el",
+ "▁be l",
+ "▁ bel",
+ "ö r",
+ "f r",
+ "▁ex ample",
+ "▁exam ple",
+ "▁ example",
+ "▁in cl",
+ "▁inc l",
+ "am il",
+ "ami l",
+ "a mil",
+ "▁р а",
+ "▁ ра",
+ "▁ “",
+ "▁s tring",
+ "▁st ring",
+ "▁str ing",
+ "▁stri ng",
+ "▁ string",
+ "▁th ink",
+ "▁thin k",
+ "T h",
+ "▁t em",
+ "▁te m",
+ "▁ tem",
+ "av e",
+ "a ve",
+ "▁F ran",
+ "▁Fr an",
+ "▁Fra n",
+ "▁ Fran",
+ "▁n umber",
+ "▁num ber",
+ "▁ number",
+ "▁s i",
+ "▁ si",
+ "im es",
+ "ime s",
+ "i mes",
+ "te m",
+ "t em",
+ "m y",
+ "le r",
+ "l er",
+ "lo ad",
+ "= =",
+ "▁h and",
+ "▁ha nd",
+ "▁han d",
+ "▁ hand",
+ "z a",
+ "▁b ecause",
+ "▁bec ause",
+ "▁ because",
+ "▁s ch",
+ "▁sc h",
+ "▁ sch",
+ "v o",
+ "th is",
+ "t his",
+ "I D",
+ "ã o",
+ "▁st art",
+ "▁star t",
+ "▁sta rt",
+ "▁ start",
+ "▁w ar",
+ "▁wa r",
+ "▁ war",
+ "▁he lp",
+ "▁hel p",
+ "▁ help",
+ "t s",
+ "▁c har",
+ "▁ch ar",
+ "▁cha r",
+ "▁ char",
+ "▁p h",
+ "▁ ph",
+ "▁m in",
+ "▁mi n",
+ "▁ min",
+ "ti l",
+ "t il",
+ "ri te",
+ "rit e",
+ "r ite",
+ "-- ------",
+ "---- ----",
+ "--- -----",
+ "------ --",
+ "----- ---",
+ "------- -",
+ "- -------",
+ "el s",
+ "e ls",
+ "▁m it",
+ "▁mi t",
+ "▁ mit",
+ "ed ia",
+ "edi a",
+ "e dia",
+ "к у",
+ "▁S h",
+ "▁ Sh",
+ "an y",
+ "a ny",
+ "] ;",
+ "▁ Б",
+ "iqu e",
+ "i que",
+ "d a",
+ "e f",
+ "de x",
+ "d ex",
+ "▁p rodu",
+ "▁pro du",
+ "▁pr odu",
+ "▁prod u",
+ "▁ produ",
+ "▁ Н",
+ "gr am",
+ "gra m",
+ "g ram",
+ "▁O r",
+ "▁ Or",
+ "▁g re",
+ "▁gr e",
+ "▁ gre",
+ "qu ote",
+ "quot e",
+ "le g",
+ "l eg",
+ "or n",
+ "o rn",
+ "▁in d",
+ "▁i nd",
+ "▁ ind",
+ "▁p ost",
+ "▁po st",
+ "▁pos t",
+ "▁ post",
+ "▁d ep",
+ "▁de p",
+ "▁ dep",
+ "] ,",
+ "v i",
+ "▁u ser",
+ "▁us er",
+ "▁use r",
+ "▁ user",
+ "▁ >",
+ "li ck",
+ "lic k",
+ "l ick",
+ "▁v ery",
+ "▁ver y",
+ "▁ve ry",
+ "▁ very",
+ "et hing",
+ "eth ing",
+ "e thing",
+ "▁ar ray",
+ "▁arr ay",
+ "▁ array",
+ "▁g u",
+ "▁ gu",
+ "▁d ur",
+ "▁du r",
+ "` .",
+ "т ь",
+ "li cation",
+ "lic ation",
+ "lica tion",
+ "ст и",
+ "с ти",
+ "e k",
+ "ic o",
+ "i co",
+ "▁d at",
+ "▁da t",
+ "▁ dat",
+ "о р",
+ "ht ml",
+ "htm l",
+ "h tml",
+ "ion e",
+ "io ne",
+ "i one",
+ "▁d ifferent",
+ "▁differ ent",
+ "▁c heck",
+ "▁che ck",
+ "▁ check",
+ "▁f r",
+ "▁ fr",
+ "▁E r",
+ "▁ Er",
+ "▁t ext",
+ "▁te xt",
+ "▁tex t",
+ "▁ text",
+ "н і",
+ "ic ht",
+ "ich t",
+ "i cht",
+ "st ack",
+ "sta ck",
+ "E N",
+ "ra g",
+ "r ag",
+ "▁e very",
+ "▁ev ery",
+ "▁ever y",
+ "▁ every",
+ "A r",
+ "▁be fore",
+ "▁bef ore",
+ "▁ before",
+ "al se",
+ "als e",
+ "▁f in",
+ "▁fi n",
+ "▁ fin",
+ "▁d é",
+ "▁th ese",
+ "▁the se",
+ "▁d et",
+ "▁de t",
+ "▁ det",
+ "V al",
+ "ce ption",
+ "cept ion",
+ "cep tion",
+ "▁and roid",
+ "▁ android",
+ "block quote",
+ "▁j e",
+ "▁ je",
+ "fil e",
+ "fi le",
+ "f ile",
+ "at s",
+ "a ts",
+ "▁д о",
+ "▁ до",
+ "ess age",
+ "essa ge",
+ "▁ag ain",
+ "a w",
+ "C h",
+ "we en",
+ "w een",
+ "▁ Д",
+ "fo r",
+ "f or",
+ "ci al",
+ "cia l",
+ "c ial",
+ "pl ay",
+ "pla y",
+ "p lay",
+ "pr e",
+ "p re",
+ "id a",
+ "i da",
+ "▁P ar",
+ "▁Pa r",
+ "▁ Par",
+ "n y",
+ "ra ct",
+ "rac t",
+ "r act",
+ "▁s upp",
+ "▁su pp",
+ "▁sup p",
+ "▁ supp",
+ "as ed",
+ "ase d",
+ "a sed",
+ "le ction",
+ "lect ion",
+ "l ection",
+ "▁d ans",
+ "▁da ns",
+ "▁dan s",
+ "ai r",
+ "a ir",
+ "ro l",
+ "r ol",
+ "▁t hr",
+ "▁th r",
+ "Dat a",
+ "Da ta",
+ "D ata",
+ "li ch",
+ "lic h",
+ "l ich",
+ "▁п ро",
+ "▁пр о",
+ "▁ про",
+ "▁l ong",
+ "▁lo ng",
+ "▁lon g",
+ "▁ long",
+ "▁se cond",
+ "▁sec ond",
+ "▁ second",
+ "ual ly",
+ "u ally",
+ "in es",
+ "ine s",
+ "i nes",
+ "▁f ound",
+ "▁fo und",
+ "▁fou nd",
+ "▁ found",
+ "eng th",
+ "y p",
+ "ea d",
+ "e ad",
+ "▁l og",
+ "▁lo g",
+ "▁ log",
+ "u i",
+ "ne w",
+ "n ew",
+ "▁ Р",
+ "g o",
+ "au s",
+ "a us",
+ "od y",
+ "o dy",
+ "▁s on",
+ "▁so n",
+ "▁ son",
+ "м е",
+ "er o",
+ "e ro",
+ "ve d",
+ "v ed",
+ "su b",
+ "s ub",
+ "▁r ight",
+ "▁rig ht",
+ "▁ right",
+ "vi ew",
+ "vie w",
+ "v iew",
+ "▁follow ing",
+ "' )",
+ "\") ;",
+ "\" );",
+ "▁sa id",
+ "ж е",
+ "ч и",
+ "т у",
+ "ot t",
+ "o tt",
+ "с е",
+ "ar s",
+ "a rs",
+ "$ .",
+ "g g",
+ "▁b r",
+ "▁ br",
+ "oo l",
+ "o ol",
+ "yl e",
+ "y le",
+ "us e",
+ "u se",
+ "▁s how",
+ "▁sh ow",
+ "▁sho w",
+ "▁ show",
+ "le ase",
+ "lea se",
+ "ci a",
+ "c ia",
+ "▁d irect",
+ "▁di rect",
+ "▁dire ct",
+ "▁dir ect",
+ "▁ direct",
+ "do c",
+ "d oc",
+ "а р",
+ "m s",
+ "▁g iv",
+ "▁gi v",
+ "▁ giv",
+ "▁e xp",
+ "▁ex p",
+ "▁ exp",
+ "q l",
+ "д у",
+ "в е",
+ "▁B e",
+ "▁ Be",
+ "Co m",
+ "C om",
+ "it er",
+ "ite r",
+ "i ter",
+ "R E",
+ "m p",
+ "me n",
+ "m en",
+ "▁R o",
+ "▁ Ro",
+ "M A",
+ "▁C ol",
+ "▁Co l",
+ "▁ Col",
+ "is ter",
+ "ist er",
+ "iste r",
+ "i ster",
+ "▁w ell",
+ "▁we ll",
+ "▁wel l",
+ "▁ well",
+ "▁< /",
+ "▁ ",
+ "ay out",
+ "at ure",
+ "atur e",
+ "atu re",
+ "iv ers",
+ "ive rs",
+ "iver s",
+ "i vers",
+ "z y",
+ "▁н е",
+ "▁ не",
+ "▁m et",
+ "▁me t",
+ "▁ met",
+ "un e",
+ "u ne",
+ "yt h",
+ "y th",
+ "Ty pe",
+ "Typ e",
+ "T ype",
+ "▁e lement",
+ "▁el ement",
+ "▁ele ment",
+ "▁elem ent",
+ "▁ element",
+ "▁l ink",
+ "▁lin k",
+ "▁ link",
+ "mo d",
+ "m od",
+ "▁bet ween",
+ "▁ between",
+ "ce pt",
+ "cep t",
+ "qu ire",
+ "qui re",
+ "▁th rough",
+ "▁thr ough",
+ "▁thro ugh",
+ "▁ through",
+ "▁wh ile",
+ "▁ while",
+ "▁O n",
+ "▁ On",
+ "th e",
+ "t he",
+ "í a",
+ "▁s omething",
+ "▁some thing",
+ "▁som ething",
+ "▁somet hing",
+ "▁ something",
+ "vo l",
+ "v ol",
+ "▁m ost",
+ "▁mo st",
+ "▁mos t",
+ "▁ most",
+ "s c",
+ "us s",
+ "u ss",
+ "▁c ar",
+ "▁ca r",
+ "▁ car",
+ "▁s m",
+ "▁ sm",
+ "▁р о",
+ "▁ ро",
+ "an o",
+ "a no",
+ "le ft",
+ "lef t",
+ "l eft",
+ "v a",
+ "▁tr ue",
+ "▁ true",
+ "( $",
+ "em s",
+ "e ms",
+ "▁m uch",
+ "▁mu ch",
+ "á s",
+ "▁N ew",
+ "▁Ne w",
+ "▁ New",
+ "▁pro per",
+ "▁pr oper",
+ "▁prop er",
+ "er a",
+ "e ra",
+ "it ed",
+ "ite d",
+ "i ted",
+ "▁d oc",
+ "▁do c",
+ "▁ doc",
+ "ic es",
+ "ice s",
+ "i ces",
+ "Th e",
+ "T he",
+ "▁ ?",
+ "ст о",
+ "с то",
+ "f l",
+ "▁s pec",
+ "▁sp ec",
+ "▁spe c",
+ "▁ spec",
+ "en der",
+ "end er",
+ "ende r",
+ "e nder",
+ "wa y",
+ "w ay",
+ "▁s elf",
+ "▁sel f",
+ "▁ self",
+ "▁e ven",
+ "▁ev en",
+ "▁ even",
+ "і в",
+ "▁с е",
+ "▁ се",
+ "ни я",
+ "▁P r",
+ "▁ Pr",
+ "▁k e",
+ "▁ ke",
+ "em b",
+ "e mb",
+ "▁t able",
+ "▁tab le",
+ "▁ta ble",
+ "▁ table",
+ "▁e qu",
+ "▁eq u",
+ "▁ equ",
+ "li ent",
+ "lie nt",
+ "l ient",
+ "t d",
+ "par t",
+ "pa rt",
+ "p art",
+ "▁pr int",
+ "▁pri nt",
+ "▁prin t",
+ "▁ print",
+ "▁u ne",
+ "▁un e",
+ "▁ une",
+ "if y",
+ "▁- >",
+ "▁ ->",
+ "en e",
+ "e ne",
+ "▁m on",
+ "▁mo n",
+ "▁ mon",
+ "▁d ec",
+ "▁de c",
+ "▁ dec",
+ "▁st ill",
+ "▁о б",
+ "▁ об",
+ "▁T r",
+ "▁ Tr",
+ "▁ ф",
+ "if e",
+ "i fe",
+ "is m",
+ "i sm",
+ "b y",
+ "ra w",
+ "r aw",
+ "io r",
+ "i or",
+ "▁m ed",
+ "▁me d",
+ "▁ med",
+ "or ld",
+ "▁com ple",
+ "▁comp le",
+ "▁compl e",
+ "▁ comple",
+ "w w",
+ "▁a rt",
+ "▁ar t",
+ "▁ art",
+ "ro n",
+ "r on",
+ "▁ Г",
+ "▁M y",
+ "▁ My",
+ "▁a ls",
+ "▁al s",
+ "▁ als",
+ "re ct",
+ "rec t",
+ "r ect",
+ "▁a uf",
+ "▁au f",
+ "▁ auf",
+ "▁d own",
+ "▁do wn",
+ "▁dow n",
+ "▁ down",
+ "at her",
+ "ath er",
+ "a ther",
+ "Co l",
+ "C ol",
+ "Te xt",
+ "Tex t",
+ "T ext",
+ "ba ck",
+ "b ack",
+ "$ ,",
+ "▁y ear",
+ "▁ye ar",
+ "▁ year",
+ "м о",
+ "p i",
+ "▁G r",
+ "▁ Gr",
+ "re am",
+ "rea m",
+ "▁re p",
+ "▁r ep",
+ "▁ rep",
+ "b f",
+ "ww w",
+ "w ww",
+ "▁w ur",
+ "▁o rg",
+ "▁or g",
+ "▁ org",
+ "in ter",
+ "int er",
+ "inte r",
+ "▁D ie",
+ "▁Di e",
+ "▁ Die",
+ "▁b eing",
+ "▁be ing",
+ "▁bei ng",
+ "\" .",
+ "la bel",
+ "lab el",
+ "l abel",
+ "▁c ent",
+ "▁ce nt",
+ "▁ cent",
+ "ja va",
+ "jav a",
+ "j ava",
+ "ba r",
+ "b ar",
+ "an te",
+ "ant e",
+ "an a",
+ "a na",
+ "_ _",
+ "▁sol ution",
+ "▁ О",
+ "▁f l",
+ "▁ fl",
+ "▁c reate",
+ "▁cre ate",
+ "▁ create",
+ "ic i",
+ "i ci",
+ "st e",
+ "s te",
+ "yth on",
+ "yt hon",
+ "un t",
+ "u nt",
+ "as on",
+ "aso n",
+ "a son",
+ "fer ence",
+ "fe rence",
+ "S E",
+ "▁n on",
+ "▁no n",
+ "▁ non",
+ "an e",
+ "a ne",
+ "▁in s",
+ "▁i ns",
+ "▁ ins",
+ "ad er",
+ "ade r",
+ "a der",
+ "_{ \\",
+ "_ {\\",
+ "Re s",
+ "R es",
+ "▁m ain",
+ "▁ma in",
+ "▁mai n",
+ "▁ main",
+ "п и",
+ "▁T here",
+ "▁The re",
+ "▁Th ere",
+ "▁Ther e",
+ "▁ There",
+ "▁p our",
+ "▁po ur",
+ "▁pou r",
+ "R O",
+ "` ,",
+ "li sh",
+ "lis h",
+ "l ish",
+ "b ject",
+ "cc ess",
+ "c cess",
+ "▁o rig",
+ "▁or ig",
+ "▁ orig",
+ "is chen",
+ "isch en",
+ "ische n",
+ "isc hen",
+ "i schen",
+ "ow er",
+ "owe r",
+ "o wer",
+ "▁h et",
+ "▁he t",
+ "▁ het",
+ "u c",
+ "▁el se",
+ "▁els e",
+ "▁ else",
+ "» .",
+ "▁о т",
+ "▁ от",
+ "eq u",
+ "e qu",
+ "si ble",
+ "s ible",
+ "te st",
+ "tes t",
+ "t est",
+ "st and",
+ "sta nd",
+ "stan d",
+ "é n",
+ "et s",
+ "e ts",
+ "G E",
+ "id ent",
+ "ide nt",
+ "iden t",
+ "i dent",
+ "▁ е",
+ "▁п ри",
+ "▁пр и",
+ "▁ при",
+ ". ,",
+ "▁d as",
+ "▁da s",
+ "▁ das",
+ "oc k",
+ "o ck",
+ ", \"",
+ "▁v ol",
+ "▁vo l",
+ "▁ vol",
+ "▁f o",
+ "▁ fo",
+ "▁p ara",
+ "▁par a",
+ "▁pa ra",
+ "▁ para",
+ "▁ Т",
+ "▁C ar",
+ "▁Ca r",
+ "▁ Car",
+ "ra l",
+ "r al",
+ "▁S p",
+ "▁ Sp",
+ "va r",
+ "v ar",
+ "▁p lay",
+ "▁pl ay",
+ "▁pla y",
+ "▁ play",
+ "ou se",
+ "ous e",
+ "o use",
+ "▁т а",
+ "▁ та",
+ "ic ally",
+ "ical ly",
+ "▁con tain",
+ "▁cont ain",
+ "pon se",
+ "▁S tring",
+ "▁St ring",
+ "▁Str ing",
+ "▁ String",
+ "á n",
+ "▁b oth",
+ "▁bo th",
+ "▁bot h",
+ "▁ both",
+ "ke n",
+ "k en",
+ "A R",
+ "ер е",
+ "е ре",
+ "▁I l",
+ "▁ Il",
+ "▁is s",
+ "▁i ss",
+ "▁ iss",
+ "▁o pen",
+ "▁op en",
+ "▁ open",
+ "▁ )",
+ "▁W hat",
+ "▁Wh at",
+ "▁ What",
+ "f e",
+ "riv ate",
+ "re g",
+ "r eg",
+ "▁with out",
+ "▁ without",
+ "▁z u",
+ "▁ zu",
+ "vi s",
+ "v is",
+ "fl ow",
+ "f low",
+ "▁h ttp",
+ "▁htt p",
+ "▁ http",
+ "ab ase",
+ "aba se",
+ "a base",
+ "▁w ord",
+ "▁wor d",
+ "▁wo rd",
+ "▁ word",
+ "▁ch ange",
+ "▁chang e",
+ "▁ change",
+ "▁work s",
+ "▁wor ks",
+ "▁ works",
+ "▁g e",
+ "▁ ge",
+ "▁ !",
+ "▁e en",
+ "▁ een",
+ "it le",
+ "▁e vent",
+ "▁even t",
+ "▁ev ent",
+ "▁ event",
+ "wo rd",
+ "wor d",
+ "w ord",
+ "an do",
+ "and o",
+ "S B",
+ "re m",
+ "r em",
+ "▁f ield",
+ "▁fi eld",
+ "▁fiel d",
+ "▁ field",
+ "vi ng",
+ "vin g",
+ "v ing",
+ "Se r",
+ "S er",
+ "▁o ur",
+ "▁ou r",
+ "▁ our",
+ "▁qu i",
+ "▁q ui",
+ "▁ qui",
+ "▁o per",
+ "▁op er",
+ "▁ oper",
+ "▁is t",
+ "▁i st",
+ "▁ ist",
+ "de f",
+ "d ef",
+ "▁m ade",
+ "▁ma de",
+ "▁mad e",
+ "▁ made",
+ "ни е",
+ "p x",
+ "▁m en",
+ "▁me n",
+ "▁ men",
+ "r m",
+ "ai s",
+ "a is",
+ "ce nt",
+ "cen t",
+ "c ent",
+ "li st",
+ "lis t",
+ "l ist",
+ "T o",
+ "▁T o",
+ "▁ To",
+ "j a",
+ "ve rt",
+ "ver t",
+ "v ert",
+ "▁m ar",
+ "▁ma r",
+ "▁ mar",
+ "val ue",
+ "valu e",
+ "▁ „",
+ "\" ;",
+ "▁a us",
+ "▁au s",
+ "▁ aus",
+ "▁B r",
+ "▁ Br",
+ "ol e",
+ "o le",
+ "▁m ult",
+ "▁mu lt",
+ "▁mul t",
+ "▁ mult",
+ "oug ht",
+ "ough t",
+ "▁m at",
+ "▁ma t",
+ "▁ mat",
+ "▁v iew",
+ "▁vi ew",
+ "▁vie w",
+ "▁ view",
+ "fi l",
+ "f il",
+ "▁с о",
+ "▁ со",
+ "г а",
+ "▁v oid",
+ "▁vo id",
+ "▁ void",
+ "▁g ood",
+ "▁go od",
+ "▁ good",
+ "б о",
+ "C T",
+ "▁m any",
+ "▁ma ny",
+ "▁man y",
+ "▁ many",
+ "be n",
+ "b en",
+ "▁в о",
+ "▁ во",
+ "▁к а",
+ "▁ ка",
+ "▁s ystem",
+ "▁sys tem",
+ "▁syst em",
+ "▁ system",
+ "in o",
+ "i no",
+ "▁an other",
+ "▁ano ther",
+ "▁ another",
+ "▁re st",
+ "▁r est",
+ "▁res t",
+ "▁ rest",
+ "us er",
+ "use r",
+ "u ser",
+ "il ity",
+ "ili ty",
+ "a i",
+ "▁m ight",
+ "▁mig ht",
+ "us tom",
+ "ust om",
+ "usto m",
+ "▁or der",
+ "▁ord er",
+ "▁ order",
+ "▁V er",
+ "▁Ve r",
+ "▁ Ver",
+ "S S",
+ "} )",
+ "▁e ff",
+ "▁ eff",
+ "д о",
+ "et t",
+ "e tt",
+ "▁s ign",
+ "▁si gn",
+ "▁sig n",
+ "▁ sign",
+ "м у",
+ "I T",
+ "st ring",
+ "str ing",
+ "s tring",
+ "el le",
+ "ell e",
+ "e lle",
+ "▁s ing",
+ "▁si ng",
+ "▁sin g",
+ "▁ sing",
+ "cu l",
+ "c ul",
+ "▁tr ying",
+ "▁try ing",
+ "▁b eg",
+ "▁be g",
+ "▁ beg",
+ "▁p age",
+ "▁pa ge",
+ "▁pag e",
+ "▁ page",
+ "х о",
+ "▁C an",
+ "▁Ca n",
+ "▁ Can",
+ "▁S er",
+ "▁Se r",
+ "▁ Ser",
+ "+ +",
+ "▁m ust",
+ "▁mus t",
+ "▁mu st",
+ "▁ must",
+ "▁val ues",
+ "▁value s",
+ "▁valu es",
+ "▁ values",
+ "▁k ey",
+ "▁ke y",
+ "▁ key",
+ "ib le",
+ "i ble",
+ "] .",
+ "ir d",
+ "i rd",
+ "▁pro gram",
+ "▁pr ogram",
+ "▁ program",
+ "roll er",
+ "rol ler",
+ "rolle r",
+ "▁c onne",
+ "▁con ne",
+ "▁conn e",
+ "▁ conne",
+ "▁s ay",
+ "▁sa y",
+ "▁ say",
+ "▁p aram",
+ "▁par am",
+ "▁para m",
+ "▁pa ram",
+ "▁ param",
+ "ach e",
+ "ac he",
+ "a che",
+ "ve lop",
+ "vel op",
+ "▁s elect",
+ "▁se lect",
+ "▁sel ect",
+ "▁sele ct",
+ "▁ select",
+ "▁f amil",
+ "▁fa mil",
+ "▁fam il",
+ "▁ famil",
+ "▁l ast",
+ "▁la st",
+ "▁las t",
+ "▁ last",
+ "▁Th anks",
+ "▁Thank s",
+ "▁ Thanks",
+ "▁p op",
+ "▁po p",
+ "▁ pop",
+ "} .",
+ "e q",
+ "▁does n",
+ "[ '",
+ "▁t erm",
+ "▁te rm",
+ "▁ter m",
+ "▁ term",
+ "▁r é",
+ "▁ ré",
+ "▁d ocument",
+ "▁doc ument",
+ "▁ document",
+ "п а",
+ "л у",
+ "at eg",
+ "ate g",
+ ". )",
+ "li ng",
+ "lin g",
+ "l ing",
+ "ion al",
+ "io nal",
+ "iona l",
+ "i onal",
+ "ab les",
+ "able s",
+ "abl es",
+ "a bles",
+ "▁t ak",
+ "▁ta k",
+ "ut ton",
+ "utt on",
+ "utto n",
+ "▁a rg",
+ "▁ar g",
+ "▁ arg",
+ "ty pe",
+ "typ e",
+ "t ype",
+ "▁s ure",
+ "▁su re",
+ "▁sur e",
+ "▁re al",
+ "▁ real",
+ "▁w eb",
+ "▁we b",
+ "▁ web",
+ "▁c urrent",
+ "▁cur rent",
+ "▁curr ent",
+ "▁ current",
+ "▁P l",
+ "▁ Pl",
+ "ch o",
+ "c ho",
+ "ment s",
+ "men ts",
+ "m ents",
+ "▁J oh",
+ "▁Jo h",
+ "ot s",
+ "o ts",
+ "▁ex ist",
+ "▁ exist",
+ "н у",
+ "▁f ür",
+ "▁ für",
+ "▁и з",
+ "▁ из",
+ "d o",
+ "но го",
+ "ног о",
+ "н ого",
+ "▁l as",
+ "▁la s",
+ "▁ las",
+ "▁n ull",
+ "▁nu ll",
+ "▁ null",
+ "▁in form",
+ "▁inf orm",
+ "▁info rm",
+ "▁ Л",
+ "▁v ersion",
+ "▁vers ion",
+ "▁ version",
+ "▁c hang",
+ "▁ch ang",
+ "▁cha ng",
+ "ag er",
+ "age r",
+ "a ger",
+ "▁C omm",
+ "▁Com m",
+ "▁Co mm",
+ "▁ Comm",
+ "л і",
+ "us h",
+ "u sh",
+ "▁G e",
+ "▁ Ge",
+ "▁h igh",
+ "▁hi gh",
+ "▁ high",
+ "▁in put",
+ "▁ input",
+ "og le",
+ "o gle",
+ "ro s",
+ "r os",
+ "bo x",
+ "b ox",
+ "ge n",
+ "g en",
+ "▁s te",
+ "▁st e",
+ "▁ ste",
+ "▁l ocal",
+ "▁lo cal",
+ "▁loc al",
+ "▁ local",
+ "I m",
+ "▁pro cess",
+ "▁proc ess",
+ "▁proces s",
+ "▁ process",
+ "ter nal",
+ "tern al",
+ "t ernal",
+ "iz ed",
+ "ize d",
+ "i zed",
+ "г и",
+ "é t",
+ "▁I nd",
+ "▁In d",
+ "▁ Ind",
+ "▁o ch",
+ "▁oc h",
+ "▁ och",
+ "l t",
+ "▁col umn",
+ "▁ column",
+ "▁t ried",
+ "▁tr ied",
+ "▁tri ed",
+ "▁comm and",
+ "▁comma nd",
+ "▁ command",
+ "▁b est",
+ "▁be st",
+ "▁bes t",
+ "▁ best",
+ "as ter",
+ "ast er",
+ "aste r",
+ "a ster",
+ "з а",
+ "▁p rim",
+ "▁pr im",
+ "▁pri m",
+ "▁ prim",
+ "▁m odel",
+ "▁mod el",
+ "▁mo del",
+ "▁mode l",
+ "▁ model",
+ "▁ і",
+ "▁th ose",
+ "it ies",
+ "iti es",
+ "itie s",
+ "i ties",
+ "è re",
+ "▁р е",
+ "▁ ре",
+ "ј е",
+ "ш и",
+ "qu es",
+ "que s",
+ "q ues",
+ "▁A m",
+ "▁ Am",
+ "▁o wn",
+ "▁ow n",
+ "▁ own",
+ "li n",
+ "l in",
+ "з и",
+ "Val ue",
+ "th ing",
+ "t hing",
+ "▁ ,",
+ "▁T e",
+ "▁ Te",
+ "▁st ud",
+ "▁ stud",
+ "▁u m",
+ "▁ um",
+ "▁ser ver",
+ "▁serv er",
+ "▁serve r",
+ "▁ server",
+ "il le",
+ "ill e",
+ "i lle",
+ "▁p ut",
+ "▁pu t",
+ "▁ put",
+ "at iv",
+ "ati v",
+ "g y",
+ "ов и",
+ "о ви",
+ "ra f",
+ "r af",
+ "ов о",
+ "о во",
+ "▁wur de",
+ "▁W hen",
+ "▁Wh en",
+ "▁Whe n",
+ "▁ When",
+ "▁d iv",
+ "▁di v",
+ "▁ div",
+ "an ts",
+ "ant s",
+ "▁t er",
+ "▁te r",
+ "▁ ter",
+ "▁part ic",
+ "▁parti c",
+ "▁ т",
+ "▁D o",
+ "▁ Do",
+ "▁N o",
+ "▁ No",
+ "se rt",
+ "ser t",
+ "s ert",
+ "id o",
+ "i do",
+ "math cal",
+ "ad e",
+ "a de",
+ "▁I I",
+ "▁ II",
+ "le ar",
+ "lea r",
+ "l ear",
+ "og raph",
+ "o graph",
+ "en se",
+ "ens e",
+ "▁r ow",
+ "▁ro w",
+ "▁ row",
+ "nu m",
+ "n um",
+ "▁pos sible",
+ "▁poss ible",
+ "▁possib le",
+ "▁ possible",
+ "▁s ince",
+ "▁sin ce",
+ "▁ since",
+ "▁B o",
+ "▁ Bo",
+ "ct ions",
+ "ction s",
+ "▁I m",
+ "▁ Im",
+ "O R",
+ "ц і",
+ "▁i de",
+ "▁id e",
+ "▁ ide",
+ "ma p",
+ "m ap",
+ "▁cor rect",
+ "▁corre ct",
+ "▁corr ect",
+ "▁ correct",
+ "ve s",
+ "v es",
+ "ph p",
+ "p hp",
+ "▁out put",
+ "▁ output",
+ "▁P h",
+ "▁ Ph",
+ "A L",
+ "ar ed",
+ "are d",
+ "a red",
+ "\\ \\",
+ "▁im age",
+ "▁imag e",
+ "▁ image",
+ "es ch",
+ "esc h",
+ "e sch",
+ "ж и",
+ "▁con f",
+ "▁ conf",
+ "po r",
+ "p or",
+ "qu ery",
+ "que ry",
+ "quer y",
+ "ur es",
+ "ure s",
+ "u res",
+ "iu m",
+ "i um",
+ "en ds",
+ "end s",
+ "▁A b",
+ "▁ Ab",
+ "SB N",
+ "і д",
+ "et her",
+ "eth er",
+ "ethe r",
+ "e ther",
+ "pt ions",
+ "ption s",
+ "it u",
+ "i tu",
+ "li b",
+ "l ib",
+ "n s",
+ "k i",
+ "▁work ing",
+ "▁wor king",
+ "▁ working",
+ "▁c omo",
+ "▁com o",
+ "▁co mo",
+ "▁ como",
+ "▁T hen",
+ "▁The n",
+ "▁Th en",
+ "▁ Then",
+ "M L",
+ "ke y",
+ "k ey",
+ "cl ass",
+ "cla ss",
+ "c lass",
+ "op le",
+ "o ple",
+ "itt le",
+ "▁m atch",
+ "▁mat ch",
+ "▁ match",
+ "way s",
+ "wa ys",
+ "w ays",
+ "math bb",
+ "▁re quire",
+ "▁requ ire",
+ "▁ require",
+ "al t",
+ "a lt",
+ "▁v is",
+ "▁vi s",
+ "▁ vis",
+ "▁b l",
+ "▁ bl",
+ "▁c alled",
+ "▁cal led",
+ "▁call ed",
+ "▁ called",
+ "It em",
+ "I tem",
+ "ur a",
+ "u ra",
+ "ve c",
+ "v ec",
+ "em e",
+ "e me",
+ "▁d ella",
+ "▁de lla",
+ "▁del la",
+ "▁dell a",
+ "em bre",
+ "emb re",
+ "ur g",
+ "u rg",
+ "S e",
+ "▁re quest",
+ "▁requ est",
+ "▁req uest",
+ "▁ request",
+ "is che",
+ "isch e",
+ "isc he",
+ "i sche",
+ "▁p ort",
+ "▁po rt",
+ "▁por t",
+ "▁ port",
+ "▁inst ead",
+ "= \\",
+ "▁ У",
+ "ho r",
+ "h or",
+ "en te",
+ "ent e",
+ "um e",
+ "u me",
+ "er d",
+ "e rd",
+ "с а",
+ "▁w hy",
+ "▁wh y",
+ "▁ why",
+ "ri st",
+ "ris t",
+ "r ist",
+ "▁p erson",
+ "▁per son",
+ "▁pers on",
+ "▁ person",
+ "▁. ..",
+ "▁.. .",
+ "▁ ...",
+ "▁p rivate",
+ "▁priv ate",
+ "▁ private",
+ "▁t ot",
+ "▁to t",
+ "▁ tot",
+ "ph a",
+ "p ha",
+ "if t",
+ "i ft",
+ "it a",
+ "i ta",
+ "lo c",
+ "l oc",
+ "▁o ld",
+ "▁ol d",
+ "▁ old",
+ "о н",
+ "▁n el",
+ "▁ne l",
+ "▁ nel",
+ "' ]",
+ "t i",
+ "ie t",
+ "i et",
+ "ci te",
+ "cit e",
+ "c ite",
+ "ple ment",
+ "pl ement",
+ "p lement",
+ "▁a bove",
+ "▁ab ove",
+ "▁ above",
+ "k s",
+ "re ady",
+ "read y",
+ "rea dy",
+ "▁c ome",
+ "▁com e",
+ "▁co me",
+ "▁ come",
+ "se ction",
+ "sec tion",
+ "sect ion",
+ "s ection",
+ "▁P ol",
+ "▁Po l",
+ "▁ Pol",
+ "▁w rit",
+ "▁wr it",
+ "▁ writ",
+ "▁htt ps",
+ "▁http s",
+ "▁ https",
+ "▁$ $",
+ "▁ $$",
+ "▁ »",
+ "▁bu ild",
+ "▁ build",
+ "it o",
+ "i to",
+ "▁cons ider",
+ "▁consid er",
+ "af t",
+ "a ft",
+ "Ap p",
+ "A pp",
+ ", \\",
+ "ind ows",
+ "indow s",
+ "indo ws",
+ "com m",
+ "co mm",
+ "c omm",
+ "▁ ;",
+ "gr ound",
+ "gro und",
+ "g round",
+ "▁p lace",
+ "▁pl ace",
+ "▁pla ce",
+ "▁ place",
+ "B y",
+ "▁pro ject",
+ "▁ project",
+ "Ob ject",
+ "Obj ect",
+ "O bject",
+ "▁re pr",
+ "▁rep r",
+ "en ces",
+ "ence s",
+ "enc es",
+ "ind ow",
+ "indo w",
+ "z t",
+ "▁f iles",
+ "▁file s",
+ "▁fil es",
+ "▁fi les",
+ "▁ files",
+ "c z",
+ "iv ity",
+ "ivi ty",
+ "i vity",
+ "▁in it",
+ "▁i nit",
+ "▁ init",
+ "▁p rob",
+ "▁pro b",
+ "▁pr ob",
+ "▁ prob",
+ "▁s k",
+ "▁ sk",
+ "or th",
+ "ort h",
+ "im ent",
+ "ime nt",
+ "imen t",
+ "i ment",
+ "ou ble",
+ "at al",
+ "ata l",
+ "a tal",
+ "ir c",
+ "i rc",
+ "▁ è",
+ "▁b re",
+ "▁br e",
+ "▁ bre",
+ "is ta",
+ "ist a",
+ "i sta",
+ "in put",
+ "▁ И",
+ "но й",
+ "su m",
+ "s um",
+ "pa th",
+ "pat h",
+ "p ath",
+ "▁c our",
+ "▁co ur",
+ "▁cou r",
+ "▁t oo",
+ "▁to o",
+ "▁A d",
+ "▁ Ad",
+ "▁G u",
+ "▁ Gu",
+ "▁f alse",
+ "▁fal se",
+ "▁ false",
+ "▁f un",
+ "▁fu n",
+ "▁ fun",
+ "▁с т",
+ "▁ ст",
+ "oo d",
+ "o od",
+ "è s",
+ "▁e nc",
+ "▁en c",
+ "▁ enc",
+ "bo l",
+ "b ol",
+ "r l",
+ "ar get",
+ "arg et",
+ "or der",
+ "ord er",
+ "orde r",
+ "▁me an",
+ "▁ mean",
+ "п е",
+ "ig en",
+ "ige n",
+ "i gen",
+ "▁п ре",
+ "▁пр е",
+ "▁ пре",
+ "wid th",
+ "w idth",
+ "; \r",
+ "it or",
+ "ito r",
+ "i tor",
+ "▁st ate",
+ "▁stat e",
+ "▁sta te",
+ "▁ state",
+ "▁gre at",
+ "en n",
+ "e nn",
+ "bi n",
+ "b in",
+ "E r",
+ "Mo d",
+ "M od",
+ "o z",
+ "▁w on",
+ "▁wo n",
+ "▁ won",
+ "▁f act",
+ "▁fa ct",
+ "▁fac t",
+ "▁ fact",
+ "▁j ava",
+ "▁ja va",
+ "▁jav a",
+ "▁ java",
+ "▁Un ivers",
+ "▁ Univers",
+ "▁c ap",
+ "▁ca p",
+ "▁ cap",
+ "is tor",
+ "ist or",
+ "isto r",
+ "i stor",
+ "} (",
+ "k u",
+ "it her",
+ "ith er",
+ "i ther",
+ "al es",
+ "ale s",
+ "a les",
+ "▁o u",
+ "▁ ou",
+ "ro ss",
+ "ros s",
+ "r oss",
+ "▁t ake",
+ "▁tak e",
+ "▁ta ke",
+ "▁ take",
+ "ri x",
+ "r ix",
+ "lo b",
+ "l ob",
+ "▁e ine",
+ "▁ein e",
+ "as es",
+ "ase s",
+ "▁a ccess",
+ "▁acc ess",
+ "▁ac cess",
+ "▁ access",
+ "it é",
+ "i té",
+ "is tr",
+ "ist r",
+ "i str",
+ "iz ation",
+ "iza tion",
+ "▁app ro",
+ "▁ap pro",
+ "▁ appro",
+ "ba ll",
+ "bal l",
+ "b all",
+ "▁m ak",
+ "▁ma k",
+ "} ^",
+ "▁C ons",
+ "▁Con s",
+ "▁Co ns",
+ "▁ Cons",
+ "pr ess",
+ "pre ss",
+ "pres s",
+ "p ress",
+ "se rv",
+ "ser v",
+ "s erv",
+ "() .",
+ "( ).",
+ "a f",
+ "▁re f",
+ "▁r ef",
+ "▁ ref",
+ ") \\",
+ "▁cont in",
+ "s u",
+ "iv er",
+ "ive r",
+ "i ver",
+ "▁c ond",
+ "▁con d",
+ "▁co nd",
+ "▁ cond",
+ "▁ex pect",
+ "▁exp ect",
+ "▁ expect",
+ "▁char act",
+ "▁cha ract",
+ "ber t",
+ "be rt",
+ "b ert",
+ "el t",
+ "e lt",
+ "ter s",
+ "te rs",
+ "t ers",
+ "scri pt",
+ "scr ipt",
+ "s cript",
+ "▁E d",
+ "▁ Ed",
+ "ap t",
+ "a pt",
+ "') ;",
+ "' );",
+ "pr int",
+ "▁s ize",
+ "▁si ze",
+ "▁ size",
+ "▁s ich",
+ "▁si ch",
+ "▁sic h",
+ "fa ce",
+ "fac e",
+ "f ace",
+ "en den",
+ "end en",
+ "ende n",
+ "▁A mer",
+ "▁Am er",
+ "▁ Amer",
+ "if ied",
+ "ifi ed",
+ "ifie d",
+ "ó w",
+ "▁S u",
+ "▁ Su",
+ "te s",
+ "t es",
+ "me d",
+ "m ed",
+ "▁R eg",
+ "▁Re g",
+ "▁ Reg",
+ "so le",
+ "sol e",
+ "s ole",
+ "▁in clud",
+ "▁incl ud",
+ "▁inclu d",
+ "▁ includ",
+ "in i",
+ "i ni",
+ "in ci",
+ "inc i",
+ "▁p la",
+ "▁pl a",
+ "▁ pla",
+ "▁l eft",
+ "▁le ft",
+ "▁ left",
+ "d f",
+ "Pa r",
+ "P ar",
+ "▁A ll",
+ "▁Al l",
+ "▁ All",
+ "▁o cc",
+ "▁oc c",
+ "▁ occ",
+ "▁A t",
+ "▁ At",
+ "▁c r",
+ "▁ cr",
+ "Q u",
+ "▁g iven",
+ "▁giv en",
+ "▁give n",
+ "▁gi ven",
+ "▁S ystem",
+ "▁Syst em",
+ "▁ System",
+ "ic an",
+ "ica n",
+ "i can",
+ "▁f inal",
+ "▁fin al",
+ "▁fi nal",
+ "▁ final",
+ "it ions",
+ "ition s",
+ "iti ons",
+ "▁б ы",
+ "▁ бы",
+ "▁per form",
+ "▁perf orm",
+ "▁ perform",
+ "A N",
+ "▁M e",
+ "▁ Me",
+ "ur o",
+ "u ro",
+ "▁T hat",
+ "▁Th at",
+ "▁ That",
+ "г ра",
+ "▁П о",
+ "▁ По",
+ "▁в и",
+ "▁ ви",
+ "ab ly",
+ "abl y",
+ "▁pr esent",
+ "▁pre sent",
+ "▁pres ent",
+ "▁ present",
+ "du ct",
+ "d uct",
+ "ri c",
+ "r ic",
+ "▁E ng",
+ "▁En g",
+ "▁ Eng",
+ "tr y",
+ "t ry",
+ "▁l ar",
+ "▁la r",
+ "▁ lar",
+ "b l",
+ "id d",
+ "i dd",
+ "▁ä r",
+ "▁ är",
+ "or a",
+ "o ra",
+ "L L",
+ "os s",
+ "o ss",
+ "▁I SBN",
+ "▁ ISBN",
+ "▁th ree",
+ "▁thr ee",
+ "▁thre e",
+ "▁ three",
+ "j o",
+ "n í",
+ "r c",
+ "▁f ar",
+ "▁fa r",
+ "▁ far",
+ "▁N ot",
+ "▁No t",
+ "▁ Not",
+ "▁l ittle",
+ "▁litt le",
+ "di s",
+ "d is",
+ "at i",
+ "a ti",
+ "fun ction",
+ "func tion",
+ "f unction",
+ "▁a ble",
+ "▁ab le",
+ "▁ able",
+ "le ss",
+ "les s",
+ "l ess",
+ "с о",
+ "▁p ath",
+ "▁pat h",
+ "▁pa th",
+ "▁ path",
+ "▁p res",
+ "▁pr es",
+ "▁pre s",
+ "▁ pres",
+ "lo se",
+ "los e",
+ "l ose",
+ "P I",
+ "▁iss ue",
+ "▁issu e",
+ "▁ issue",
+ "ack age",
+ "ti me",
+ "tim e",
+ "t ime",
+ "ig e",
+ "i ge",
+ "am s",
+ "a ms",
+ "▁C l",
+ "▁ Cl",
+ "ail s",
+ "ai ls",
+ "a ils",
+ "al k",
+ "i i",
+ "ш е",
+ "pe n",
+ "p en",
+ "Q L",
+ "▁e as",
+ "R L",
+ "ce l",
+ "c el",
+ "▁s l",
+ "▁ sl",
+ "▁a sk",
+ "▁as k",
+ "▁ ask",
+ "▁n om",
+ "▁no m",
+ "▁ nom",
+ "▁t op",
+ "▁to p",
+ "▁ top",
+ "id es",
+ "ide s",
+ "i des",
+ "in dex",
+ "ind ex",
+ "inde x",
+ "é m",
+ "▁h app",
+ "▁ha pp",
+ "o x",
+ "c d",
+ "▁b etter",
+ "▁bet ter",
+ "▁lo ad",
+ "▁ load",
+ "ad os",
+ "ado s",
+ "ze n",
+ "z en",
+ "▁c e",
+ "▁ ce",
+ "▁f a",
+ "▁ fa",
+ "▁J ohn",
+ "▁Joh n",
+ "▁Jo hn",
+ "▁ John",
+ "IM A",
+ "I MA",
+ "▁B ar",
+ "▁Ba r",
+ "▁ Bar",
+ "over flow",
+ "▁д е",
+ "▁ де",
+ "ne ss",
+ "nes s",
+ "n ess",
+ "ce r",
+ "c er",
+ "▁H ere",
+ "▁He re",
+ "▁Her e",
+ "▁ Here",
+ "re t",
+ "r et",
+ "▁s z",
+ "▁ sz",
+ "amb da",
+ "op y",
+ "o py",
+ "ur l",
+ "u rl",
+ "p y",
+ "r t",
+ "▁under stand",
+ "a ł",
+ "he r",
+ "h er",
+ "# #",
+ "▁ch ild",
+ "▁chi ld",
+ "▁ child",
+ "▁ex ec",
+ "▁ exec",
+ "▁app lication",
+ "▁applic ation",
+ "▁ application",
+ "▁st ruct",
+ "▁str uct",
+ "▁stru ct",
+ "▁ struct",
+ "▁ я",
+ "Fil e",
+ "Fi le",
+ "F ile",
+ "▁c ert",
+ "▁ce rt",
+ "▁cer t",
+ "▁ cert",
+ "is on",
+ "iso n",
+ "i son",
+ "▁vari able",
+ "▁ variable",
+ "D E",
+ "r s",
+ "▁re ally",
+ "▁real ly",
+ "Po rt",
+ "P ort",
+ "b a",
+ "▁B er",
+ "▁Be r",
+ "▁ Ber",
+ "▁in te",
+ "▁int e",
+ "▁ inte",
+ "▁st atic",
+ "▁stat ic",
+ "▁stati c",
+ "▁ static",
+ "▁con fig",
+ "▁conf ig",
+ "▁ config",
+ "▁S he",
+ "▁Sh e",
+ "▁ She",
+ "est ions",
+ "estion s",
+ "esti ons",
+ "▁p lus",
+ "▁pl us",
+ "▁ plus",
+ "▁h ab",
+ "▁ha b",
+ "▁ hab",
+ "op e",
+ "o pe",
+ "▁m us",
+ "▁mu s",
+ "▁ mus",
+ "▁c ount",
+ "▁co unt",
+ "▁coun t",
+ "▁cou nt",
+ "▁ count",
+ "M E",
+ "▁su pport",
+ "▁supp ort",
+ "▁sup port",
+ "▁ support",
+ "▁pe ople",
+ "▁ people",
+ "▁b eh",
+ "▁be h",
+ "▁al ready",
+ "T r",
+ "▁d one",
+ "▁do ne",
+ "▁don e",
+ "▁ done",
+ "de m",
+ "d em",
+ "si ze",
+ "s ize",
+ "al pha",
+ "alph a",
+ "▁d isc",
+ "▁di sc",
+ "▁dis c",
+ "] )",
+ "▁M an",
+ "▁Ma n",
+ "▁ Man",
+ "▁m il",
+ "▁mi l",
+ "▁ mil",
+ "▁st and",
+ "▁sta nd",
+ "▁stan d",
+ "▁ stand",
+ "▁gr oup",
+ "▁gro up",
+ "▁ group",
+ "▁sm all",
+ "▁ small",
+ "▁m ag",
+ "▁ma g",
+ "▁ mag",
+ "ст ь",
+ "с ть",
+ "▁de fault",
+ "▁def ault",
+ "▁ default",
+ "▁sing le",
+ "▁sin gle",
+ "▁ single",
+ "lin k",
+ "l ink",
+ "cl ude",
+ "clud e",
+ "▁e ar",
+ "▁ ear",
+ "il ar",
+ "ila r",
+ "i lar",
+ "** **",
+ "*** *",
+ "* ***",
+ "▁f ix",
+ "▁fi x",
+ "▁ fix",
+ "le y",
+ "l ey",
+ "▁p as",
+ "▁pa s",
+ "▁ pas",
+ "ни й",
+ "iss ion",
+ "▁im plement",
+ "▁imp lement",
+ "▁impl ement",
+ "it ch",
+ "▁го да",
+ "▁год а",
+ "▁al ways",
+ "▁ always",
+ "▁J ah",
+ "▁Ja h",
+ "pr ing",
+ "p ring",
+ "ç ão",
+ "pl ate",
+ "pla te",
+ "p late",
+ "▁de scri",
+ "▁des cri",
+ "▁desc ri",
+ "▁h ead",
+ "▁he ad",
+ "▁ head",
+ "in it",
+ "ini t",
+ "i nit",
+ "og raf",
+ "▁qu ery",
+ "▁que ry",
+ "▁quer y",
+ "▁ query",
+ "iv ed",
+ "ive d",
+ "i ved",
+ "▁in g",
+ "▁i ng",
+ "▁ ing",
+ "pt y",
+ "p ty",
+ "h a",
+ "▁m ov",
+ "▁mo v",
+ "▁ mov",
+ "▁ э",
+ "et te",
+ "ett e",
+ "e tte",
+ "il y",
+ "i ly",
+ "▁g ot",
+ "▁go t",
+ "▁ got",
+ "il ed",
+ "ile d",
+ "i led",
+ "ic ro",
+ "i cro",
+ "▁w r",
+ "▁ wr",
+ "р я",
+ "▁n ever",
+ "▁ne ver",
+ "▁nev er",
+ "or es",
+ "ore s",
+ "o res",
+ "▁b as",
+ "▁ba s",
+ "▁ bas",
+ "io s",
+ "i os",
+ "la ck",
+ "lac k",
+ "l ack",
+ "ain t",
+ "ai nt",
+ "a int",
+ "vi ous",
+ "v ious",
+ "▁g ive",
+ "▁giv e",
+ "▁gi ve",
+ "id ad",
+ "ida d",
+ "E n",
+ "ны й",
+ "н ый",
+ "ta ble",
+ "tab le",
+ "t able",
+ "▁Н а",
+ "▁ На",
+ "▁p at",
+ "▁pa t",
+ "▁ pat",
+ "то р",
+ "т ор",
+ "an gu",
+ "ang u",
+ "lo y",
+ "l oy",
+ "▁s eg",
+ "▁se g",
+ "▁ seg",
+ "ar ray",
+ "arr ay",
+ "▁F l",
+ "▁ Fl",
+ "▁in dex",
+ "▁ind ex",
+ "▁inde x",
+ "▁ index",
+ "▁s w",
+ "▁ sw",
+ "IMA GE",
+ "IM AGE",
+ "▁k m",
+ "▁ km",
+ "б и",
+ "Cl ass",
+ "Cla ss",
+ "C lass",
+ "en a",
+ "e na",
+ "ме н",
+ "м ен",
+ "com p",
+ "co mp",
+ "c omp",
+ "at us",
+ "atu s",
+ "ra p",
+ "r ap",
+ "▁L ist",
+ "▁Li st",
+ "▁Lis t",
+ "▁ List",
+ "Er ror",
+ "Err or",
+ "E rror",
+ "▁t yp",
+ "▁ty p",
+ "▁ typ",
+ "▁м а",
+ "▁ ма",
+ "c s",
+ "' :",
+ "j i",
+ "▁How ever",
+ "▁ However",
+ "▁т е",
+ "▁ те",
+ "▁be low",
+ "▁bel ow",
+ "▁ below",
+ "▁A pp",
+ "▁Ap p",
+ "▁ App",
+ "щ е",
+ "} _",
+ "bu m",
+ "b um",
+ "vi r",
+ "v ir",
+ "ée s",
+ "é es",
+ "▁re cord",
+ "▁rec ord",
+ "▁ record",
+ "ta in",
+ "t ain",
+ "le m",
+ "l em",
+ "it al",
+ "ita l",
+ "i tal",
+ "▁i mp",
+ "▁im p",
+ "▁ imp",
+ "eg o",
+ "e go",
+ "▁o d",
+ "▁ od",
+ "▁re ce",
+ "▁rec e",
+ "▁ rece",
+ "mi t",
+ "m it",
+ "ff ic",
+ "f fic",
+ "stack overflow",
+ "ie ve",
+ "iev e",
+ "▁ З",
+ "▁n ov",
+ "▁no v",
+ "▁ nov",
+ "ц е",
+ "▁In tern",
+ "▁Int ern",
+ "▁Inter n",
+ "▁ Intern",
+ "b u",
+ "▁s ugg",
+ "▁su gg",
+ "▁sug g",
+ "▁l oop",
+ "▁lo op",
+ "▁ loop",
+ "ri de",
+ "rid e",
+ "r ide",
+ "▁$ (",
+ "▁ $(",
+ "▁s uper",
+ "▁su per",
+ "▁sup er",
+ "▁ super",
+ "ri d",
+ "r id",
+ "ны х",
+ "н ых",
+ "▁P er",
+ "▁Pe r",
+ "▁ Per",
+ "▁d om",
+ "▁do m",
+ "▁ dom",
+ "= '",
+ "ut sch",
+ "uts ch",
+ "le n",
+ "l en",
+ "▁w rite",
+ "▁writ e",
+ "▁wr ite",
+ "▁ write",
+ "▁in v",
+ "▁ inv",
+ "ou th",
+ "out h",
+ "o uth",
+ "▁H er",
+ "▁He r",
+ "▁ Her",
+ "▁y ears",
+ "▁year s",
+ "▁ye ars",
+ "▁or iginal",
+ "▁orig inal",
+ "▁origin al",
+ "▁ original",
+ "eg a",
+ "e ga",
+ "▁S te",
+ "▁St e",
+ "▁ Ste",
+ "▁se ems",
+ "▁see ms",
+ "▁seem s",
+ "é g",
+ "▁n ext",
+ "▁ne xt",
+ "▁ next",
+ "ed er",
+ "ede r",
+ "e der",
+ "▁N e",
+ "▁ Ne",
+ "av as",
+ "ava s",
+ "a vas",
+ "ific ation",
+ "ifi cation",
+ "ifica tion",
+ "Ex ception",
+ "▁D er",
+ "▁De r",
+ "▁ Der",
+ "▁v e",
+ "▁ ve",
+ "at ic",
+ "ati c",
+ "ha t",
+ "h at",
+ "br ary",
+ "bra ry",
+ "re turn",
+ "ret urn",
+ "ur ch",
+ "is ion",
+ "isi on",
+ "m i",
+ "oi nt",
+ "oin t",
+ "o int",
+ "▁d ay",
+ "▁da y",
+ "▁ day",
+ "ic tion",
+ "ict ion",
+ "i ction",
+ "á l",
+ "▁é s",
+ "▁ és",
+ "▁th ough",
+ "▁thou gh",
+ "▁ though",
+ "ac tion",
+ "act ion",
+ "a ction",
+ "í t",
+ "un gen",
+ "ung en",
+ "unge n",
+ "ou rs",
+ "our s",
+ "o urs",
+ "▁s cript",
+ "▁scr ipt",
+ "▁scri pt",
+ "▁ script",
+ "▁in formation",
+ "▁inform ation",
+ "▁ information",
+ "▁mult i",
+ "▁mul ti",
+ "▁ multi",
+ "▁\\ \\",
+ "▁ \\\\",
+ "st er",
+ "ste r",
+ "s ter",
+ "к е",
+ "A C",
+ "ci es",
+ "cie s",
+ "c ies",
+ "▁dis play",
+ "▁disp lay",
+ "▁ display",
+ "om an",
+ "oma n",
+ "o man",
+ "Tim e",
+ "T ime",
+ "iu s",
+ "i us",
+ ")) ;",
+ ") );",
+ "tr e",
+ "t re",
+ "▁l im",
+ "▁li m",
+ "▁ lim",
+ "at ely",
+ "ate ly",
+ "atel y",
+ "é d",
+ "is te",
+ "ist e",
+ "i ste",
+ "▁с а",
+ "▁ са",
+ "pos t",
+ "po st",
+ "p ost",
+ "ue l",
+ "u el",
+ "im g",
+ "▁ ч",
+ "ск а",
+ "с ка",
+ "el d",
+ "e ld",
+ "pp er",
+ "ppe r",
+ "p per",
+ "ul a",
+ "u la",
+ "▁gener al",
+ "▁gen eral",
+ "▁gene ral",
+ "▁ general",
+ "A l",
+ "For m",
+ "F orm",
+ "▁u pon",
+ "▁up on",
+ "z o",
+ "am ente",
+ "ament e",
+ "amen te",
+ "a mente",
+ "▁p rom",
+ "▁pro m",
+ "▁pr om",
+ "▁ prom",
+ "▁ ü",
+ "le x",
+ "l ex",
+ "▁t urn",
+ "▁tu rn",
+ "▁tur n",
+ "▁ turn",
+ "▁м е",
+ "▁ ме",
+ "en tion",
+ "ent ion",
+ "enti on",
+ "ле н",
+ "л ен",
+ "▁a f",
+ "▁ af",
+ "ic le",
+ "i cle",
+ "ст в",
+ "с тв",
+ "▁F il",
+ "▁ Fil",
+ "▁ Ф",
+ "ava script",
+ "avas cript",
+ "Ma n",
+ "M an",
+ "ar a",
+ "a ra",
+ "wa re",
+ "war e",
+ "w are",
+ "al ign",
+ "ali gn",
+ "an gle",
+ "ang le",
+ "▁S c",
+ "▁ Sc",
+ "un ic",
+ "uni c",
+ "u nic",
+ "▁f ran",
+ "▁fr an",
+ "▁fra n",
+ "▁ fran",
+ "U n",
+ "z i",
+ "me t",
+ "m et",
+ "Ad d",
+ "A dd",
+ "▁p ub",
+ "▁pu b",
+ "▁ pub",
+ "ко в",
+ "к ов",
+ "▁g en",
+ "▁ge n",
+ "▁ gen",
+ "▁p od",
+ "▁po d",
+ "▁ pod",
+ "▁s um",
+ "▁su m",
+ "▁ sum",
+ "▁h aving",
+ "▁ha ving",
+ "▁hav ing",
+ "▁a vec",
+ "▁av ec",
+ "▁ave c",
+ "s l",
+ "▁f ig",
+ "▁fi g",
+ "▁ fig",
+ "▁R es",
+ "▁Re s",
+ "▁ Res",
+ "Dat e",
+ "Da te",
+ "D ate",
+ "ul es",
+ "ule s",
+ "u les",
+ "wi th",
+ "w ith",
+ "ски й",
+ "с кий",
+ "g u",
+ "E T",
+ "▁b ro",
+ "▁br o",
+ "▁ bro",
+ "ri e",
+ "r ie",
+ "ap s",
+ "a ps",
+ "en ding",
+ "end ing",
+ "endi ng",
+ "ma il",
+ "mai l",
+ "m ail",
+ "oo k",
+ "o ok",
+ "▁su ccess",
+ "▁succ ess",
+ "▁suc cess",
+ "▁ success",
+ "ber g",
+ "be rg",
+ "b erg",
+ "▁d eb",
+ "▁de b",
+ "▁ deb",
+ "el ta",
+ "elt a",
+ "() `",
+ "( )`",
+ "ent ial",
+ "enti al",
+ "fr ame",
+ "fra me",
+ "fram e",
+ "f rame",
+ "Ke y",
+ "K ey",
+ "in n",
+ "i nn",
+ "▁sim ple",
+ "▁simp le",
+ "▁simpl e",
+ "▁ simple",
+ "iv al",
+ "iva l",
+ "i val",
+ "▁c are",
+ "▁car e",
+ "▁ca re",
+ "▁ care",
+ "▁W eb",
+ "▁We b",
+ "▁ Web",
+ "\") .",
+ "\" ).",
+ ">< /",
+ "> ",
+ "▁d atabase",
+ "▁data base",
+ "▁dat abase",
+ "▁datab ase",
+ "▁ database",
+ "▁N ow",
+ "▁No w",
+ "▁ Now",
+ "In d",
+ "I nd",
+ "▁м о",
+ "▁ мо",
+ "ch t",
+ "c ht",
+ "ba n",
+ "b an",
+ "ra m",
+ "r am",
+ "equ ation",
+ "sk i",
+ "s ki",
+ "ie f",
+ "i ef",
+ "li m",
+ "l im",
+ "Ge t",
+ "G et",
+ "▁t re",
+ "▁tr e",
+ "▁ tre",
+ "at en",
+ "ate n",
+ "a ten",
+ "be d",
+ "b ed",
+ "▁J e",
+ "▁ Je",
+ "▁result s",
+ "▁ results",
+ "л ю",
+ "те ль",
+ "тел ь",
+ "т ель",
+ "d b",
+ "▁b it",
+ "▁bi t",
+ "▁ bit",
+ "bo dy",
+ "b ody",
+ "Ar ray",
+ "Arr ay",
+ "m u",
+ "pr ession",
+ "press ion",
+ "p ression",
+ "▁с та",
+ "▁ст а",
+ "▁ ста",
+ "on y",
+ "o ny",
+ "if f",
+ "i ff",
+ "▁b ar",
+ "▁ba r",
+ "▁ bar",
+ "▁Ar ch",
+ "▁Arc h",
+ "▁ Arch",
+ "ber s",
+ "be rs",
+ "b ers",
+ ") {",
+ "▁M on",
+ "▁Mo n",
+ "▁ Mon",
+ "▁do ing",
+ "▁doi ng",
+ "▁pro f",
+ "▁pr of",
+ "▁ prof",
+ "▁inst all",
+ "▁instal l",
+ "▁ install",
+ "▁p osition",
+ "▁pos ition",
+ "▁posit ion",
+ "▁ position",
+ "em a",
+ "e ma",
+ "▁} );",
+ "▁}) ;",
+ "▁ });",
+ "Pat h",
+ "Pa th",
+ "P ath",
+ "al i",
+ "a li",
+ "▁& &",
+ "▁ &&",
+ "le v",
+ "l ev",
+ "▁c annot",
+ "▁can not",
+ "▁M ay",
+ "▁Ma y",
+ "▁ May",
+ "in st",
+ "ins t",
+ "- \\",
+ "▁c oun",
+ "▁co un",
+ "▁cou n",
+ "▁a ng",
+ "▁an g",
+ "▁ ang",
+ "▁app ear",
+ "▁appe ar",
+ "co r",
+ "c or",
+ "ci ó",
+ "c ió",
+ "id ed",
+ "ide d",
+ "i ded",
+ "qu estions",
+ "quest ions",
+ "question s",
+ "at ter",
+ "att er",
+ "atte r",
+ "▁P a",
+ "▁ Pa",
+ "se lect",
+ "sel ect",
+ "s elect",
+ "▁pr inci",
+ "▁prin ci",
+ "E vent",
+ "▁s ide",
+ "▁si de",
+ "▁sid e",
+ "▁ side",
+ "▁m em",
+ "▁me m",
+ "▁ mem",
+ "▁J an",
+ "▁Ja n",
+ "▁ Jan",
+ "ar io",
+ "ari o",
+ "a rio",
+ "▁with in",
+ "▁wit hin",
+ "▁V al",
+ "▁Va l",
+ "▁ Val",
+ "ode s",
+ "od es",
+ "o des",
+ "idd le",
+ "ur ation",
+ "ura tion",
+ "br a",
+ "b ra",
+ "▁d ate",
+ "▁da te",
+ "▁dat e",
+ "▁ date",
+ "[ ]",
+ "▁en tre",
+ "▁ent re",
+ "▁entr e",
+ "▁ entre",
+ "il i",
+ "i li",
+ "Port ail",
+ "doc s",
+ "do cs",
+ "d ocs",
+ "ско й",
+ "с кой",
+ "El ement",
+ "E lement",
+ "▁m essage",
+ "▁mess age",
+ "▁ message",
+ "▁n ach",
+ "▁na ch",
+ "▁nac h",
+ "▁ nach",
+ "▁d uring",
+ "▁du ring",
+ "▁dur ing",
+ "▁g ra",
+ "▁gr a",
+ "▁ gra",
+ "et work",
+ "▁B y",
+ "▁ By",
+ "▁t ell",
+ "▁te ll",
+ "▁tel l",
+ "et e",
+ "e te",
+ "~ \\",
+ "▁b is",
+ "▁bi s",
+ "▁ bis",
+ "▁p u",
+ "▁ pu",
+ "▁re d",
+ "▁r ed",
+ "▁ red",
+ "▁t hing",
+ "▁th ing",
+ "▁thin g",
+ "▁ thing",
+ "▁s ort",
+ "▁so rt",
+ "▁sor t",
+ "▁ sort",
+ "xi m",
+ "x im",
+ "ir es",
+ "ire s",
+ "i res",
+ "Use r",
+ "Us er",
+ "U ser",
+ "io d",
+ "i od",
+ "▁E st",
+ "▁Es t",
+ "▁ Est",
+ "os ed",
+ "ose d",
+ "o sed",
+ "ou te",
+ "out e",
+ "o ute",
+ "▁L es",
+ "▁Le s",
+ "▁ Les",
+ "▁s ent",
+ "▁se nt",
+ "▁sen t",
+ "▁ sent",
+ "rib ute",
+ "ribu te",
+ "ut es",
+ "ute s",
+ "u tes",
+ "ist ory",
+ "istor y",
+ "isto ry",
+ "i story",
+ "▁ser vice",
+ "▁serv ice",
+ "▁servi ce",
+ "▁ service",
+ "' ;",
+ "fi eld",
+ "f ield",
+ "▁I N",
+ "▁ IN",
+ "ens ion",
+ "re l",
+ "r el",
+ "▁go ing",
+ "▁ going",
+ "we b",
+ "w eb",
+ "Con text",
+ "Cont ext",
+ "▁l ater",
+ "▁la ter",
+ "▁lat er",
+ "▁late r",
+ "u k",
+ "lay out",
+ "l ayout",
+ "on a",
+ "o na",
+ "á t",
+ "---- ------------",
+ "-------- --------",
+ "------------ ----",
+ "------ ----------",
+ "---------- ------",
+ "▁ex act",
+ "an dom",
+ "and om",
+ "ando m",
+ "▁s ie",
+ "▁si e",
+ "I I",
+ "▁The y",
+ "▁Th ey",
+ "▁ They",
+ "ment e",
+ "men te",
+ "m ente",
+ "ib li",
+ "▁f ine",
+ "▁fin e",
+ "▁fi ne",
+ "U T",
+ "▁de velop",
+ "▁deve lop",
+ "▁ develop",
+ "▁E in",
+ "so ft",
+ "of f",
+ "o ff",
+ "Se t",
+ "S et",
+ "▁a z",
+ "▁ az",
+ "et ers",
+ "eter s",
+ "ete rs",
+ "e ters",
+ "il der",
+ "ild er",
+ "ilde r",
+ "i lder",
+ "ple s",
+ "pl es",
+ "p les",
+ "▁spec ific",
+ "▁ specific",
+ "▁o m",
+ "▁ om",
+ "er ror",
+ "err or",
+ "e rror",
+ "ent ly",
+ "▁fil m",
+ "▁fi lm",
+ "▁ film",
+ "uc k",
+ "u ck",
+ "ain s",
+ "ai ns",
+ "a ins",
+ "ac ión",
+ "ació n",
+ "aci ón",
+ "a ción",
+ "ge s",
+ "g es",
+ "ж а",
+ "▁th ings",
+ "▁thing s",
+ "▁thin gs",
+ "S h",
+ "▁th ought",
+ "▁though t",
+ "▁ad ded",
+ "▁add ed",
+ "▁ added",
+ "de p",
+ "d ep",
+ "ско го",
+ "ск ого",
+ "ског о",
+ "с кого",
+ "▁L i",
+ "▁ Li",
+ "il s",
+ "i ls",
+ "yn c",
+ "y nc",
+ "▁т о",
+ "▁ то",
+ "ri es",
+ "rie s",
+ "r ies",
+ "▁c u",
+ "▁ cu",
+ "ch en",
+ "che n",
+ "c hen",
+ "IO N",
+ "I ON",
+ "▁D es",
+ "▁De s",
+ "▁ Des",
+ "ult ado",
+ "ir t",
+ "i rt",
+ "▁b ased",
+ "▁bas ed",
+ "▁base d",
+ "▁ba sed",
+ "▁ based",
+ "▁m o",
+ "▁ mo",
+ "▁d est",
+ "▁de st",
+ "▁des t",
+ "▁ dest",
+ "pn g",
+ "p ng",
+ "re en",
+ "ree n",
+ "r een",
+ "▁r unning",
+ "▁run ning",
+ "▁ running",
+ "am ma",
+ "amm a",
+ "ou d",
+ "o ud",
+ "▁re fer",
+ "▁ref er",
+ "▁ refer",
+ "io us",
+ "i ous",
+ "▁J ul",
+ "▁Ju l",
+ "▁ Jul",
+ "▁s earch",
+ "▁se arch",
+ "▁ search",
+ "al d",
+ "a ld",
+ "ed e",
+ "e de",
+ "▁w rong",
+ "▁wr ong",
+ "A n",
+ "▁u ntil",
+ "▁un til",
+ "▁ until",
+ "si te",
+ "s ite",
+ "ay er",
+ "aye r",
+ "a yer",
+ "▁on ce",
+ "▁ once",
+ "ar r",
+ "a rr",
+ "▁again st",
+ "== ==",
+ "=== =",
+ "= ===",
+ "▁s ource",
+ "▁ source",
+ "ar n",
+ "a rn",
+ "ap i",
+ "a pi",
+ "▁re present",
+ "▁repr esent",
+ "▁repres ent",
+ "▁repre sent",
+ "▁a ff",
+ "▁af f",
+ "▁ aff",
+ "▁s ein",
+ "▁se in",
+ "▁sei n",
+ "▁ sein",
+ "▁al low",
+ "▁all ow",
+ "▁allo w",
+ "▁ allow",
+ "or mal",
+ "orm al",
+ "en ded",
+ "end ed",
+ "ende d",
+ "▁cont rol",
+ "▁contr ol",
+ "▁contro l",
+ "▁ control",
+ "math bf",
+ "com e",
+ "co me",
+ "c ome",
+ "cu r",
+ "c ur",
+ "en do",
+ "end o",
+ "w a",
+ "▁up date",
+ "▁upd ate",
+ "▁ update",
+ "▁in side",
+ "▁ins ide",
+ "▁ inside",
+ "▁re ason",
+ "▁ reason",
+ "om en",
+ "ome n",
+ "o men",
+ "▁в ы",
+ "▁ вы",
+ "D e",
+ "▁ј е",
+ "▁ је",
+ "s w",
+ "▁s ever",
+ "▁se ver",
+ "O f",
+ "▁inst ance",
+ "▁ instance",
+ "▁m er",
+ "▁me r",
+ "▁ mer",
+ "▁e ffect",
+ "▁eff ect",
+ "▁ effect",
+ "col or",
+ "co lor",
+ "colo r",
+ "ug ust",
+ "il t",
+ "i lt",
+ "de s",
+ "d es",
+ "it z",
+ "i tz",
+ "ul ation",
+ "ula tion",
+ "u lation",
+ "ni e",
+ "n ie",
+ "▁W orld",
+ "▁Wor ld",
+ "▁ World",
+ "▁sim ilar",
+ "▁ similar",
+ "ym bol",
+ "hi ng",
+ "hin g",
+ "h ing",
+ "▁m ark",
+ "▁mar k",
+ "▁ mark",
+ "St ate",
+ "Stat e",
+ "▁cont ent",
+ "▁conten t",
+ "▁conte nt",
+ "▁ content",
+ "▁me ans",
+ "▁mean s",
+ "am ed",
+ "ame d",
+ "a med",
+ "▁E nd",
+ "▁En d",
+ "▁ End",
+ "N D",
+ "co unt",
+ "cou nt",
+ "c ount",
+ "▁In st",
+ "▁Ins t",
+ "▁ Inst",
+ "per ty",
+ "pert y",
+ "ct or",
+ "c tor",
+ "▁{ \\",
+ "▁ {\\",
+ "▁L et",
+ "▁Le t",
+ "▁ Let",
+ "▁! =",
+ "▁ !=",
+ "▁get ting",
+ "▁ getting",
+ "ut h",
+ "u th",
+ "um ber",
+ "umb er",
+ "▁Cons ultado",
+ "sch aft",
+ "sc haft",
+ "le te",
+ "let e",
+ "l ete",
+ "▁W ill",
+ "▁Wil l",
+ "▁Wi ll",
+ "▁ Will",
+ "▁E m",
+ "▁ Em",
+ "he ad",
+ "h ead",
+ "▁l eg",
+ "▁le g",
+ "▁ leg",
+ "но м",
+ "н ом",
+ "O r",
+ "ar m",
+ "a rm",
+ "pon d",
+ "po nd",
+ "p ond",
+ "▁Ch rist",
+ "▁Chris t",
+ "▁Chr ist",
+ "▁ Christ",
+ "▁a round",
+ "▁ar ound",
+ "▁ around",
+ "▁c lear",
+ "▁cl ear",
+ "▁cle ar",
+ "▁ clear",
+ "▁h ref",
+ "▁hr ef",
+ "▁ href",
+ "▁S ee",
+ "▁Se e",
+ "▁ See",
+ "') .",
+ "' ).",
+ "▁cre ated",
+ "▁create d",
+ "▁ created",
+ "▁b utton",
+ "▁but ton",
+ "▁ button",
+ "in ing",
+ "ini ng",
+ "i ning",
+ "▁c lick",
+ "▁cl ick",
+ "▁cli ck",
+ "▁ click",
+ "ia m",
+ "i am",
+ "pl it",
+ "p lit",
+ "F or",
+ "▁p olit",
+ "▁po lit",
+ "▁pol it",
+ "▁ polit",
+ "▁se em",
+ "▁see m",
+ "▁l ife",
+ "▁li fe",
+ "▁lif e",
+ "▁ life",
+ "но в",
+ "н ов",
+ "▁in tern",
+ "▁int ern",
+ "▁inter n",
+ "▁inte rn",
+ "▁ intern",
+ "щ и",
+ "se l",
+ "s el",
+ "so ci",
+ "s oci",
+ "▁s tor",
+ "▁st or",
+ "▁sto r",
+ "▁ stor",
+ "cl e",
+ "c le",
+ "ear ch",
+ "e arch",
+ "and roid",
+ "andro id",
+ "andr oid",
+ "}^ {",
+ "} ^{",
+ "▁e ither",
+ "▁f ew",
+ "▁fe w",
+ "▁init ial",
+ "▁initi al",
+ "▁ initial",
+ "l ength",
+ "ri a",
+ "r ia",
+ "sq l",
+ "s ql",
+ "wi k",
+ "w ik",
+ "▁é t",
+ "▁ ét",
+ "ue r",
+ "u er",
+ "▁val id",
+ "▁ valid",
+ "An d",
+ "A nd",
+ "in clude",
+ "includ e",
+ "ur y",
+ "u ry",
+ "▁s us",
+ "▁su s",
+ "ir ed",
+ "ire d",
+ "i red",
+ "▁A fter",
+ "▁Af ter",
+ "▁ After",
+ "▁d ue",
+ "▁du e",
+ "▁ due",
+ "▁b ei",
+ "▁be i",
+ "▁ bei",
+ "our ces",
+ "ource s",
+ "▁N ov",
+ "▁No v",
+ "▁ Nov",
+ "Ac t",
+ "A ct",
+ "▁C ont",
+ "▁Con t",
+ "▁Co nt",
+ "▁ Cont",
+ "▁bre ak",
+ "▁ break",
+ "es ted",
+ "est ed",
+ "este d",
+ "e sted",
+ "▁act ually",
+ "▁actual ly",
+ "▁actu ally",
+ "el se",
+ "els e",
+ "tm l",
+ "t ml",
+ "re r",
+ "r er",
+ "on es",
+ "one s",
+ "o nes",
+ "▁de sign",
+ "▁des ign",
+ "▁ design",
+ "▁pro perty",
+ "▁proper ty",
+ "▁ property",
+ "ph i",
+ "p hi",
+ "al ity",
+ "ali ty",
+ "oc h",
+ "o ch",
+ "is ts",
+ "ist s",
+ "▁ ·",
+ "ud io",
+ "udi o",
+ "A B",
+ "al a",
+ "a la",
+ "ion es",
+ "io nes",
+ "ione s",
+ "i ones",
+ "ф и",
+ "fin d",
+ "fi nd",
+ "f ind",
+ "A s",
+ "▁c ustom",
+ "▁cust om",
+ "▁ custom",
+ "▁a nn",
+ "▁an n",
+ "▁ ann",
+ "E S",
+ "O T",
+ "l ambda",
+ "▁i dent",
+ "▁id ent",
+ "▁ide nt",
+ "▁ ident",
+ "▁or gan",
+ "▁org an",
+ "▁ organ",
+ "▁C ent",
+ "▁Ce nt",
+ "▁ Cent",
+ "▁C har",
+ "▁Ch ar",
+ "▁Cha r",
+ "▁ Char",
+ "▁o s",
+ "▁ os",
+ "▁h ard",
+ "▁ha rd",
+ "▁har d",
+ "▁ hard",
+ "ро в",
+ "р ов",
+ "▁/ >",
+ "▁ />",
+ "k o",
+ "▁ex per",
+ "▁exp er",
+ "▁se par",
+ "▁sep ar",
+ "▁ separ",
+ "y l",
+ "ou rn",
+ "our n",
+ "o urn",
+ "▁d ev",
+ "▁de v",
+ "▁ dev",
+ "▁a uch",
+ "▁au ch",
+ "▁auc h",
+ "▁ auch",
+ "▁b lock",
+ "▁bl ock",
+ "▁blo ck",
+ "▁ block",
+ "bo ok",
+ "b ook",
+ "▁m ap",
+ "▁ma p",
+ "▁ map",
+ "il la",
+ "ill a",
+ "i lla",
+ "▁com put",
+ "▁comp ut",
+ "▁ comput",
+ "▁s pace",
+ "▁sp ace",
+ "▁spac e",
+ "▁ space",
+ "res ult",
+ ") }",
+ "▁e cho",
+ "▁ec ho",
+ "▁ echo",
+ "con fig",
+ "conf ig",
+ "h i",
+ "▁lar ge",
+ "▁larg e",
+ "▁ large",
+ "▁w idth",
+ "▁wid th",
+ "▁ width",
+ "▁G o",
+ "▁ Go",
+ "ma t",
+ "m at",
+ "▁d iff",
+ "▁di ff",
+ "▁dif f",
+ "▁ diff",
+ "▁k ind",
+ "▁ki nd",
+ "▁kin d",
+ "▁ kind",
+ "an ces",
+ "ance s",
+ "anc es",
+ "yn am",
+ "yna m",
+ "y nam",
+ "▁col or",
+ "▁co lor",
+ "▁ color",
+ "In t",
+ "I nt",
+ "so l",
+ "s ol",
+ "▁p i",
+ "▁ pi",
+ "▁char acter",
+ "▁charact er",
+ "▁ character",
+ "om ent",
+ "ome nt",
+ "omen t",
+ "o ment",
+ "▁res ponse",
+ "▁respons e",
+ "▁ response",
+ "ig ma",
+ "ward s",
+ "war ds",
+ "w ards",
+ "ar row",
+ "arr ow",
+ "с у",
+ "ti es",
+ "t ies",
+ "▁ü ber",
+ "▁ über",
+ "Im age",
+ "y d",
+ "▁п ере",
+ "▁пер е",
+ "▁пе ре",
+ "▁ пере",
+ "▁n ode",
+ "▁no de",
+ "▁nod e",
+ "▁ node",
+ "▁it em",
+ "▁i tem",
+ "▁ item",
+ "ach ine",
+ "achi ne",
+ "im a",
+ "i ma",
+ "▁v a",
+ "▁ va",
+ "▁appro ach",
+ "▁w er",
+ "▁we r",
+ "▁ wer",
+ "▁ч е",
+ "▁ че",
+ "O n",
+ "ol low",
+ "oll ow",
+ "он а",
+ "о на",
+ "ct ed",
+ "c ted",
+ "ur ed",
+ "ure d",
+ "u red",
+ "Cont roller",
+ "Control ler",
+ "li ed",
+ "lie d",
+ "l ied",
+ "▁j o",
+ "▁ jo",
+ "▁d al",
+ "▁da l",
+ "▁ dal",
+ "un k",
+ "▁ î",
+ "st art",
+ "sta rt",
+ "star t",
+ "ol a",
+ "o la",
+ "▁com pon",
+ "▁comp on",
+ "I C",
+ "bi t",
+ "b it",
+ "▁b ase",
+ "▁bas e",
+ "▁ba se",
+ "▁ base",
+ "п у",
+ "▁id ea",
+ "▁ide a",
+ "▁ idea",
+ "▁d ire",
+ "▁di re",
+ "▁dir e",
+ "▁ dire",
+ "▁r ad",
+ "▁ra d",
+ "▁ rad",
+ "gr oup",
+ "gro up",
+ "▁W ith",
+ "▁Wi th",
+ "▁Wit h",
+ "▁ With",
+ "ser ver",
+ "serv er",
+ "serve r",
+ "si de",
+ "s ide",
+ "si ng",
+ "sin g",
+ "s ing",
+ "▁d ies",
+ "▁di es",
+ "▁die s",
+ "▁n ear",
+ "▁ne ar",
+ "▁ near",
+ "▁v oor",
+ "▁vo or",
+ "▁ voor",
+ "▁arg ument",
+ "▁ argument",
+ "▁} ,",
+ "▁ },",
+ "▁l and",
+ "▁la nd",
+ "▁lan d",
+ "▁ land",
+ "▁n ames",
+ "▁name s",
+ "▁na mes",
+ "▁nam es",
+ "▁ names",
+ "▁o ption",
+ "▁op tion",
+ "▁opt ion",
+ "▁ option",
+ "ith ub",
+ "pp ed",
+ "ppe d",
+ "p ped",
+ "au g",
+ "a ug",
+ "▁l inks",
+ "▁link s",
+ "▁lin ks",
+ "▁ links",
+ "▁f ull",
+ "▁fu ll",
+ "▁ful l",
+ "▁ full",
+ "▁s itu",
+ "▁si tu",
+ "▁sit u",
+ "▁con sole",
+ "▁cons ole",
+ "▁ console",
+ "▁e tc",
+ "▁et c",
+ "▁ etc",
+ "au x",
+ "a ux",
+ "▁C or",
+ "▁Co r",
+ "▁ Cor",
+ "icro soft",
+ "▁c ame",
+ "▁cam e",
+ "▁ca me",
+ "lo cal",
+ "loc al",
+ "l ocal",
+ "▁k nown",
+ "▁kn own",
+ "▁know n",
+ "▁ known",
+ "▁multi ple",
+ "▁multip le",
+ "▁ multiple",
+ "angu age",
+ "▁t otal",
+ "▁to tal",
+ "▁tot al",
+ "▁ total",
+ "ol ogy",
+ "olog y",
+ "olo gy",
+ "ä t",
+ "▁ Х",
+ "▁f re",
+ "▁fr e",
+ "▁ fre",
+ "▁t en",
+ "▁te n",
+ "▁ ten",
+ "ide o",
+ "▁b es",
+ "▁be s",
+ "▁ bes",
+ "tr ue",
+ "Qu ery",
+ "Que ry",
+ "om m",
+ "o mm",
+ "▁A rt",
+ "▁Ar t",
+ "▁ Art",
+ "▁ke ep",
+ "▁ keep",
+ "▁Un iversity",
+ "▁Univers ity",
+ "re ate",
+ "rea te",
+ "pp ort",
+ "ppo rt",
+ "p port",
+ "▁p ython",
+ "▁ python",
+ "tr a",
+ "t ra",
+ "ect or",
+ "ec tor",
+ "e ctor",
+ "р і",
+ "op h",
+ "o ph",
+ "▁c onc",
+ "▁con c",
+ "▁co nc",
+ "▁f our",
+ "▁fo ur",
+ "▁fou r",
+ "▁ four",
+ "vi ron",
+ "vir on",
+ "▁v ia",
+ "▁vi a",
+ "▁ via",
+ "? \"",
+ "im age",
+ "ima ge",
+ "ol l",
+ "o ll",
+ "ны е",
+ "н ые",
+ "▁con text",
+ "▁cont ext",
+ "▁conte xt",
+ "▁ context",
+ "▁s em",
+ "▁se m",
+ "▁ sem",
+ ". _",
+ "▁e ng",
+ "▁en g",
+ "▁ eng",
+ "ma r",
+ "m ar",
+ "A D",
+ "▁m or",
+ "▁mo r",
+ "▁ mor",
+ "▁C al",
+ "▁Ca l",
+ "▁ Cal",
+ "▁c ell",
+ "▁ce ll",
+ "▁cel l",
+ "▁ cell",
+ "im al",
+ "ima l",
+ "i mal",
+ "AT E",
+ "A TE",
+ "▁in f",
+ "▁ inf",
+ "ö n",
+ "uf fer",
+ "uff er",
+ "s q",
+ ".. ..",
+ "... .",
+ ". ...",
+ "▁z ur",
+ "▁zu r",
+ "W ith",
+ "ра н",
+ "р ан",
+ "ch n",
+ "c hn",
+ "▁d oor",
+ "▁do or",
+ "▁ door",
+ "cont ent",
+ "▁m iss",
+ "▁mi ss",
+ "▁mis s",
+ "▁ miss",
+ "▁s imp",
+ "▁sim p",
+ "▁si mp",
+ "▁ simp",
+ "á r",
+ "ir a",
+ "i ra",
+ "▁h at",
+ "▁ha t",
+ "▁ hat",
+ "Te st",
+ "T est",
+ "▁c ertain",
+ "▁cert ain",
+ "▁cer tain",
+ "▁ certain",
+ "N S",
+ "▁c ho",
+ "▁ch o",
+ "▁ cho",
+ "▁ad v",
+ "▁ adv",
+ "wh ere",
+ "w here",
+ "▁lo oking",
+ "▁look ing",
+ "▁ looking",
+ "▁t imes",
+ "▁time s",
+ "▁tim es",
+ "▁ti mes",
+ "▁ times",
+ "ни х",
+ "н их",
+ "ut o",
+ "u to",
+ "▁ É",
+ "ca n",
+ "c an",
+ "ho st",
+ "hos t",
+ "h ost",
+ "▁( *",
+ "▁ (*",
+ "lo at",
+ "▁n icht",
+ "▁ni cht",
+ "▁nic ht",
+ "▁nich t",
+ "Fi eld",
+ "F ield",
+ "bu rg",
+ "bur g",
+ "b urg",
+ "con st",
+ "cons t",
+ "ad es",
+ "ade s",
+ "a des",
+ "▁M us",
+ "▁Mu s",
+ "▁ Mus",
+ "▁n othing",
+ "▁not hing",
+ "▁no thing",
+ "▁ nothing",
+ "▁in cre",
+ "▁inc re",
+ "▁M in",
+ "▁Mi n",
+ "▁ Min",
+ "▁p ower",
+ "▁po wer",
+ "▁pow er",
+ "▁ power",
+ "▁Amer ican",
+ "▁America n",
+ "▁ American",
+ "l n",
+ "val id",
+ "un gs",
+ "ung s",
+ "▁N ational",
+ "▁Nat ional",
+ "▁Nation al",
+ "▁ National",
+ "▁S an",
+ "▁Sa n",
+ "▁ San",
+ "▁Y ork",
+ "Re quest",
+ "ch ar",
+ "cha r",
+ "c har",
+ "▁Z e",
+ "▁ Ze",
+ "but ton",
+ "b utton",
+ "▁a lg",
+ "▁al g",
+ "▁ alg",
+ "SO N",
+ "S ON",
+ "▁a p",
+ "▁ ap",
+ "uf f",
+ "u ff",
+ "ab ility",
+ "abil ity",
+ "е м",
+ "▁any thing",
+ "el a",
+ "e la",
+ "() )",
+ "( ))",
+ "б а",
+ "amp ion",
+ "ampio n",
+ "▁p ot",
+ "▁po t",
+ "▁ pot",
+ "▁f ut",
+ "▁fu t",
+ "ail able",
+ "▁p rop",
+ "▁pro p",
+ "▁pr op",
+ "▁ prop",
+ "\" ]",
+ "▁l ess",
+ "▁le ss",
+ "▁les s",
+ "▁ less",
+ "la g",
+ "l ag",
+ "▁A ugust",
+ "▁Aug ust",
+ "▁ August",
+ "I t",
+ "▁p lease",
+ "▁ple ase",
+ "▁st yle",
+ "▁sty le",
+ "▁ style",
+ "▁Al so",
+ "▁Als o",
+ "▁ Also",
+ "b t",
+ "▁pro bably",
+ "▁prob ably",
+ "▁O ne",
+ "▁On e",
+ "▁ One",
+ "▁p oss",
+ "▁po ss",
+ "▁pos s",
+ "▁ poss",
+ "U I",
+ "ui t",
+ "u it",
+ "▁W est",
+ "▁We st",
+ "▁Wes t",
+ "▁ West",
+ "h n",
+ "+ \\",
+ "But ton",
+ "Butt on",
+ "B utton",
+ "js on",
+ "j son",
+ "er r",
+ "e rr",
+ "ra me",
+ "ram e",
+ "r ame",
+ "do m",
+ "d om",
+ "il on",
+ "ilo n",
+ "i lon",
+ "al f",
+ "▁c lient",
+ "▁cl ient",
+ "▁cli ent",
+ "▁ client",
+ "▁cont inu",
+ "▁contin u",
+ "▁ continu",
+ "x ml",
+ "pe c",
+ "p ec",
+ "ad or",
+ "ado r",
+ "a dor",
+ "l s",
+ "▁how ever",
+ "▁A ny",
+ "▁An y",
+ "▁ Any",
+ "än d",
+ "ä nd",
+ "math rm",
+ "▁u rl",
+ "▁ur l",
+ "▁ url",
+ "▁b ook",
+ "▁bo ok",
+ "▁ book",
+ "▁g l",
+ "▁ gl",
+ "iv es",
+ "ive s",
+ "i ves",
+ "g i",
+ "▁t ro",
+ "▁tr o",
+ "▁U S",
+ "▁ US",
+ "po int",
+ "p oint",
+ "op en",
+ "ope n",
+ "o pen",
+ "▁c ur",
+ "▁cu r",
+ "▁ cur",
+ "▁e ra",
+ "▁er a",
+ "▁ era",
+ "▁part icular",
+ "▁partic ular",
+ "▁particul ar",
+ "▁parti cular",
+ "▁H T",
+ "▁ HT",
+ "oo t",
+ "o ot",
+ "el lo",
+ "ell o",
+ "lo bal",
+ "lob al",
+ "▁a ction",
+ "▁act ion",
+ "▁ac tion",
+ "▁ action",
+ "▁I nt",
+ "▁In t",
+ "▁ Int",
+ "▁in clude",
+ "▁incl ude",
+ "▁includ e",
+ "▁inclu de",
+ "▁ include",
+ "▁el ements",
+ "▁element s",
+ "▁ele ments",
+ "▁elem ents",
+ "▁ elements",
+ "на я",
+ "ar ds",
+ "ard s",
+ "▁B l",
+ "▁ Bl",
+ "▁h um",
+ "▁hu m",
+ "▁ hum",
+ "fr om",
+ "f rom",
+ "ch ange",
+ "chan ge",
+ "▁function s",
+ "▁fun ctions",
+ "▁ functions",
+ "he n",
+ "h en",
+ "Ser vice",
+ "Serv ice",
+ "▁he ight",
+ "▁ height",
+ "▁L and",
+ "▁La nd",
+ "▁Lan d",
+ "▁ Land",
+ "ia s",
+ "i as",
+ "g s",
+ "ió n",
+ "i ón",
+ "ло в",
+ "л ов",
+ "no de",
+ "n ode",
+ ". ”",
+ "ha nd",
+ "han d",
+ "h and",
+ "▁б у",
+ "▁ бу",
+ "▁a mb",
+ "▁am b",
+ "▁ amb",
+ "▁L u",
+ "▁ Lu",
+ "▁th row",
+ "▁thr ow",
+ "▁thro w",
+ "▁ throw",
+ "▁m ot",
+ "▁mo t",
+ "▁ mot",
+ "▁A ct",
+ "▁Ac t",
+ "▁ Act",
+ "▁w orld",
+ "▁wor ld",
+ "▁ world",
+ "_ \\",
+ "ba se",
+ "bas e",
+ "b ase",
+ "▁C o",
+ "▁ Co",
+ "▁ar ch",
+ "▁arc h",
+ "▁ arch",
+ "▁## ##",
+ "▁### #",
+ "▁ ####",
+ "ge d",
+ "g ed",
+ "pr il",
+ "p ril",
+ "ol der",
+ "old er",
+ "o lder",
+ "Mod el",
+ "Mode l",
+ "Mo del",
+ "M odel",
+ "▁sever al",
+ "li e",
+ "l ie",
+ "che ck",
+ "c heck",
+ "] {",
+ "con s",
+ "co ns",
+ "c ons",
+ "▁T ra",
+ "▁Tr a",
+ "▁ Tra",
+ "he ck",
+ "▁l east",
+ "▁le ast",
+ "do wn",
+ "d own",
+ "eb ru",
+ "e bru",
+ "De f",
+ "D ef",
+ "par am",
+ "pa ram",
+ "para m",
+ "p aram",
+ "is cher",
+ "isch er",
+ "ische r",
+ "isc her",
+ "i scher",
+ "▁c as",
+ "▁ca s",
+ "▁ cas",
+ "C H",
+ "▁add ress",
+ "▁addr ess",
+ "▁ address",
+ "▁ра з",
+ "▁ раз",
+ "uf en",
+ "ufe n",
+ "u fen",
+ "ur ope",
+ "uro pe",
+ "urop e",
+ "е й",
+ "▁b ound",
+ "▁bo und",
+ "▁bou nd",
+ "▁ bound",
+ "C O",
+ "▁A ng",
+ "▁An g",
+ "▁ Ang",
+ "▁M a",
+ "▁ Ma",
+ "In dex",
+ "Ind ex",
+ "co re",
+ "cor e",
+ "c ore",
+ "ou ch",
+ "ouc h",
+ "o uch",
+ "at abase",
+ "ata base",
+ "rib ution",
+ "ribu tion",
+ "doc ument",
+ "d ocument",
+ "L e",
+ "}_ {",
+ "} _{",
+ "ve rn",
+ "ver n",
+ "v ern",
+ "▁stat ement",
+ "▁state ment",
+ "▁ statement",
+ "▁B rit",
+ "▁Br it",
+ "on o",
+ "o no",
+ "ps ilon",
+ "psi lon",
+ "▁le vel",
+ "▁lev el",
+ "▁ level",
+ "▁pro duct",
+ "▁produ ct",
+ "▁prod uct",
+ "▁ product",
+ "I S",
+ "▁c ourse",
+ "▁cour se",
+ "▁cours e",
+ "▁ course",
+ "▁M r",
+ "▁ Mr",
+ "> \r",
+ "▁back ground",
+ "▁ background",
+ "▁re t",
+ "▁r et",
+ "▁ ret",
+ "er ing",
+ "eri ng",
+ "e ring",
+ "mo st",
+ "mos t",
+ "m ost",
+ "сь ко",
+ "ськ о",
+ "▁th read",
+ "▁thr ead",
+ "▁thre ad",
+ "▁ thread",
+ "it ional",
+ "ition al",
+ "iti onal",
+ "it es",
+ "ite s",
+ "i tes",
+ "P l",
+ "▁d os",
+ "▁do s",
+ "g a",
+ "da y",
+ "d ay",
+ "▁G ener",
+ "▁Ge ner",
+ "▁Gen er",
+ "▁Gene r",
+ "▁ Gener",
+ "▁t w",
+ "▁ tw",
+ "A d",
+ "\"> <",
+ "\" ><",
+ "▁( $",
+ "▁ ($",
+ "▁m oment",
+ "▁mo ment",
+ "▁mom ent",
+ "tit le",
+ "t itle",
+ "cre ate",
+ "c reate",
+ "vers ion",
+ "v ersion",
+ "Man ager",
+ "▁f ur",
+ "▁fu r",
+ "▁ fur",
+ "pp ing",
+ "ppi ng",
+ "p ping",
+ "ij n",
+ "о с",
+ "▁r ather",
+ "▁ra ther",
+ "▁rat her",
+ "pt ember",
+ "O S",
+ "▁s ite",
+ "▁si te",
+ "▁sit e",
+ "▁ site",
+ "▁c aus",
+ "▁ca us",
+ "an i",
+ "a ni",
+ "▁h ome",
+ "▁hom e",
+ "▁ho me",
+ "▁ home",
+ "м і",
+ "▁sh ort",
+ "▁sho rt",
+ "▁ short",
+ "p a",
+ "▁l ead",
+ "▁le ad",
+ "is hed",
+ "ish ed",
+ "ci ng",
+ "cin g",
+ "c ing",
+ "or ding",
+ "ord ing",
+ "ordin g",
+ "▁p rote",
+ "▁pro te",
+ "▁pr ote",
+ "▁prot e",
+ "▁ prote",
+ "с ле",
+ "LE CT",
+ "L ECT",
+ "▁di dn",
+ "▁did n",
+ "pos ition",
+ "p osition",
+ "\", \"",
+ "\" ,\"",
+ "() ,",
+ "( ),",
+ "tr ans",
+ "tra ns",
+ "▁l ot",
+ "▁lo t",
+ "▁ lot",
+ "▁о д",
+ "▁ од",
+ "A S",
+ "▁s at",
+ "▁sa t",
+ "▁po ints",
+ "▁point s",
+ "▁ points",
+ "g ithub",
+ "st yle",
+ "sty le",
+ "▁го ду",
+ "▁год у",
+ "▁D is",
+ "▁Di s",
+ "▁ Dis",
+ "pon ent",
+ "om et",
+ "ome t",
+ "o met",
+ "ze r",
+ "z er",
+ "UL L",
+ "U LL",
+ "▁p a",
+ "▁ pa",
+ "A P",
+ "ac es",
+ "ace s",
+ "a ces",
+ "▁Un ited",
+ "▁Unit ed",
+ "am a",
+ "a ma",
+ "et y",
+ "e ty",
+ "Col or",
+ "Co lor",
+ "▁en ough",
+ "U S",
+ "▁l ength",
+ "▁leng th",
+ "▁ length",
+ "() );",
+ "()) ;",
+ "( ));",
+ "^{ \\",
+ "^ {\\",
+ "ft y",
+ "f ty",
+ "Bo x",
+ "B ox",
+ "ap ter",
+ "apt er",
+ "▁comp let",
+ "▁comple t",
+ "▁compl et",
+ "ни к",
+ "ma x",
+ "m ax",
+ "ob ject",
+ "obj ect",
+ "o bject",
+ "( {",
+ "img ur",
+ "it ive",
+ "iti ve",
+ "un ch",
+ "unc h",
+ "▁S ub",
+ "▁Su b",
+ "▁ Sub",
+ "en de",
+ "end e",
+ "e nde",
+ "г у",
+ "ateg ory",
+ "ategor y",
+ "т ы",
+ "ia no",
+ "ian o",
+ "i ano",
+ "▁u pd",
+ "▁up d",
+ "▁A ust",
+ "▁Aus t",
+ "▁Au st",
+ "}{ \\",
+ "} {\\",
+ "to p",
+ "t op",
+ "la s",
+ "l as",
+ "pi s",
+ "p is",
+ "in ess",
+ "ine ss",
+ "ines s",
+ "i ness",
+ "▁{ \r",
+ "▁ {\r",
+ "▁ Е",
+ "G r",
+ "▁A S",
+ "▁ AS",
+ "▁в е",
+ "▁ ве",
+ "th ers",
+ "ther s",
+ "the rs",
+ "▁d efined",
+ "▁def ined",
+ "▁define d",
+ "▁defin ed",
+ "▁ defined",
+ "az ione",
+ "azi one",
+ "a zione",
+ "▁o ffic",
+ "▁of fic",
+ "▁off ic",
+ "▁au tom",
+ "▁aut om",
+ "▁auto m",
+ "▁ autom",
+ "ü n",
+ "▁b row",
+ "▁br ow",
+ "▁bro w",
+ "▁ brow",
+ "▁s erv",
+ "▁se rv",
+ "▁ser v",
+ "▁ serv",
+ "▁re move",
+ "▁rem ove",
+ "▁remov e",
+ "▁ remove",
+ "ir o",
+ "i ro",
+ "▁B ibli",
+ "▁Bib li",
+ "E D",
+ "▁w hole",
+ "▁wh ole",
+ "▁who le",
+ "▁ ш",
+ "▁J ava",
+ "▁Ja va",
+ "▁ Java",
+ "▁z um",
+ "▁zu m",
+ "u a",
+ "p m",
+ "de v",
+ "d ev",
+ "к ра",
+ "ol ds",
+ "old s",
+ "▁W ar",
+ "▁Wa r",
+ "ä n",
+ "pa ss",
+ "pas s",
+ "p ass",
+ "u z",
+ "[ \"",
+ "▁t ri",
+ "▁tr i",
+ "▁ tri",
+ "is ed",
+ "ise d",
+ "i sed",
+ "х а",
+ "▁mem ory",
+ "▁memor y",
+ "▁ memory",
+ "▁P ort",
+ "▁Po rt",
+ "▁Por t",
+ "▁ Port",
+ "op er",
+ "ope r",
+ "o per",
+ "U p",
+ "▁Th ank",
+ "▁ Thank",
+ "▁M ich",
+ "▁Mi ch",
+ "▁Mic h",
+ "▁ Mich",
+ "yc h",
+ "y ch",
+ "bo ard",
+ "boa rd",
+ "б у",
+ "In st",
+ "▁b egin",
+ "▁be gin",
+ "▁beg in",
+ "▁ begin",
+ "in ation",
+ "ina tion",
+ "▁M od",
+ "▁Mo d",
+ "▁ Mod",
+ "_ ,",
+ "▁D en",
+ "▁De n",
+ "▁ Den",
+ "op tion",
+ "opt ion",
+ "o ption",
+ "▁con struct",
+ "▁const ruct",
+ "▁constru ct",
+ "▁ construct",
+ "▁J ust",
+ "▁Ju st",
+ "▁ Just",
+ "Ma p",
+ "M ap",
+ "ru n",
+ "r un",
+ "▁re spect",
+ "▁res pect",
+ "▁resp ect",
+ "ha m",
+ "h am",
+ "ма н",
+ "м ан",
+ "im edia",
+ "ime dia",
+ "i media",
+ "▁a pply",
+ "▁app ly",
+ "▁ap ply",
+ "▁ apply",
+ "cri ption",
+ "cript ion",
+ "ma in",
+ "mai n",
+ "m ain",
+ "▁К а",
+ "▁ Ка",
+ "oi d",
+ "o id",
+ "Co de",
+ "C ode",
+ "} ;",
+ "In fo",
+ "Inf o",
+ "▁for mat",
+ "▁form at",
+ "▁forma t",
+ "▁ format",
+ "Lo g",
+ "L og",
+ "▁с у",
+ "▁ су",
+ "▁l at",
+ "▁la t",
+ "▁ lat",
+ "ut or",
+ "uto r",
+ "u tor",
+ "▁re ference",
+ "▁refer ence",
+ "▁ reference",
+ "▁cal cul",
+ "▁calc ul",
+ "▁ calcul",
+ "on n",
+ "o nn",
+ "L o",
+ "in fty",
+ "inf ty",
+ "▁a long",
+ "▁al ong",
+ "▁ č",
+ "▁t ask",
+ "▁ta sk",
+ "▁ task",
+ "▁e v",
+ "▁ ev",
+ "th eta",
+ "the ta",
+ "ra s",
+ "r as",
+ "jo r",
+ "j or",
+ "▁б о",
+ "▁ бо",
+ "▁princi p",
+ "▁prin cip",
+ "M y",
+ "▁e iner",
+ "▁ein er",
+ "▁eine r",
+ "▁E s",
+ "▁ Es",
+ "om b",
+ "o mb",
+ "qu ad",
+ "qua d",
+ "^{ -",
+ "^ {-",
+ "um p",
+ "u mp",
+ "▁t ill",
+ "▁til l",
+ "▁ti ll",
+ "д і",
+ "▁lo oks",
+ "▁look s",
+ "▁o k",
+ "▁ ok",
+ "ц а",
+ "n u",
+ "Fi l",
+ "F il",
+ "▁s ont",
+ "▁so nt",
+ "▁son t",
+ "▁M ed",
+ "▁Me d",
+ "▁ Med",
+ "ag ue",
+ "agu e",
+ "a gue",
+ "▁c ost",
+ "▁co st",
+ "▁cos t",
+ "▁ cost",
+ "▁S im",
+ "▁Si m",
+ "▁ Sim",
+ "▁com ment",
+ "▁comm ent",
+ "▁comme nt",
+ "▁ comment",
+ "▁( \\",
+ "▁ (\\",
+ "eg en",
+ "ege n",
+ "e gen",
+ "▁para meter",
+ "▁param eter",
+ "▁paramet er",
+ "▁ parameter",
+ "▁F rance",
+ "▁Fran ce",
+ "▁Fr ance",
+ "▁Franc e",
+ "▁ France",
+ "re p",
+ "r ep",
+ "▁T H",
+ "▁ TH",
+ "▁y et",
+ "▁ye t",
+ "▁a way",
+ "▁aw ay",
+ "▁ away",
+ "▁c irc",
+ "▁ci rc",
+ "▁cir c",
+ "▁ circ",
+ "▁A PI",
+ "▁AP I",
+ "▁ API",
+ "em p",
+ "e mp",
+ "в і",
+ "L ayout",
+ "▁l ines",
+ "▁li nes",
+ "▁line s",
+ "▁lin es",
+ "▁ lines",
+ "▁P art",
+ "▁Par t",
+ "▁Pa rt",
+ "▁ Part",
+ "em pt",
+ "emp t",
+ "▁B i",
+ "▁ Bi",
+ "▁m ind",
+ "▁min d",
+ "▁mi nd",
+ "▁ mind",
+ "k y",
+ "gi ng",
+ "gin g",
+ "g ing",
+ "▁re port",
+ "▁rep ort",
+ "▁repo rt",
+ "▁ report",
+ "▁A dd",
+ "▁Ad d",
+ "▁ Add",
+ "ро д",
+ "р од",
+ "▁r ange",
+ "▁ran ge",
+ "▁rang e",
+ "▁ range",
+ "ci as",
+ "cia s",
+ "c ias",
+ "li p",
+ "l ip",
+ "▁K ar",
+ "▁Ka r",
+ "▁ Kar",
+ "▁Comm ons",
+ "▁Common s",
+ "ger ufen",
+ "af f",
+ "a ff",
+ "se c",
+ "s ec",
+ "▁h tml",
+ "▁ html",
+ "li g",
+ "l ig",
+ "▁w indow",
+ "▁wind ow",
+ "▁ window",
+ "in ition",
+ "ini tion",
+ "init ion",
+ "ci s",
+ "c is",
+ "▁u t",
+ "▁ ut",
+ "el n",
+ "e ln",
+ "▁a ux",
+ "▁au x",
+ "▁ aux",
+ "▁n eg",
+ "▁ne g",
+ "▁ neg",
+ "Ha nd",
+ "H and",
+ "▁) ;",
+ "▁ );",
+ "▁a nal",
+ "▁an al",
+ "▁ anal",
+ "▁f ri",
+ "▁fr i",
+ "▁ fri",
+ "▁с и",
+ "▁ си",
+ "et ch",
+ "etc h",
+ "m d",
+ "pa ge",
+ "pag e",
+ "p age",
+ "▁l ibrary",
+ "▁li brary",
+ "▁ library",
+ "▁: =",
+ "▁ :=",
+ "RO M",
+ "R OM",
+ "Y ou",
+ "sp ace",
+ "s pace",
+ "▁d urch",
+ "▁dur ch",
+ "▁h ost",
+ "▁ho st",
+ "▁hos t",
+ "▁ host",
+ "av en",
+ "ave n",
+ "a ven",
+ "▁F ile",
+ "▁Fil e",
+ "▁ File",
+ "al le",
+ "all e",
+ "a lle",
+ "ти в",
+ "▁p ap",
+ "▁pa p",
+ "ст во",
+ "ств о",
+ "с тво",
+ "mar k",
+ "m ark",
+ "▁m ais",
+ "▁ma is",
+ "▁mai s",
+ "er man",
+ "erm an",
+ "Si ze",
+ "S ize",
+ "е к",
+ "▁М а",
+ "▁ Ма",
+ "▁is n",
+ "▁i sn",
+ "▁c opy",
+ "▁co py",
+ "▁cop y",
+ "▁ copy",
+ "st en",
+ "ste n",
+ "s ten",
+ "ri ver",
+ "riv er",
+ "rive r",
+ "r iver",
+ "▁w ent",
+ "▁we nt",
+ "▁wen t",
+ "▁j avascript",
+ "▁java script",
+ "▁ javascript",
+ "▁s am",
+ "▁sa m",
+ "▁ sam",
+ "▁f rame",
+ "▁fr ame",
+ "▁fra me",
+ "▁fram e",
+ "▁ frame",
+ "▁v i",
+ "▁ vi",
+ "▁pre vious",
+ "▁prev ious",
+ "▁ previous",
+ "ro du",
+ "rod u",
+ "r odu",
+ "▁method s",
+ "▁ methods",
+ "▁ne cess",
+ "▁neces s",
+ "▁ necess",
+ "N A",
+ "ck et",
+ "cke t",
+ "c ket",
+ "▁o pt",
+ "▁op t",
+ "▁ opt",
+ "Lo c",
+ "L oc",
+ "ho w",
+ "h ow",
+ "▁î n",
+ "▁ în",
+ "sh ip",
+ "s hip",
+ "▁it self",
+ "▁its elf",
+ "▁P lease",
+ "▁Ple ase",
+ "▁ Please",
+ "ie ne",
+ "ien e",
+ "i ene",
+ "ве р",
+ "в ер",
+ "▁< <",
+ "▁ <<",
+ "▁m ill",
+ "▁mil l",
+ "▁mi ll",
+ "▁ mill",
+ "▁t rad",
+ "▁tr ad",
+ "▁tra d",
+ "▁ trad",
+ "pa ce",
+ "p ace",
+ "▁H ar",
+ "▁Ha r",
+ "▁ Har",
+ "it en",
+ "ite n",
+ "i ten",
+ "wi se",
+ "w ise",
+ "writ e",
+ "wr ite",
+ "w rite",
+ "ци и",
+ "р ы",
+ "Lin e",
+ "Li ne",
+ "L ine",
+ "ol o",
+ "o lo",
+ "▁ac cept",
+ "▁ accept",
+ "he ight",
+ "▁e lect",
+ "▁el ect",
+ "▁ele ct",
+ "▁ elect",
+ "el la",
+ "ell a",
+ "e lla",
+ "▁p å",
+ "Se lect",
+ "S elect",
+ "▁ ли",
+ "▁\\ <",
+ "▁ \\<",
+ "( (",
+ "▁I D",
+ "▁ ID",
+ "op s",
+ "o ps",
+ "ва н",
+ "в ан",
+ "i ó",
+ "T P",
+ "» ,",
+ "ne ction",
+ "nect ion",
+ "n ection",
+ "par ent",
+ "pa rent",
+ "▁M ag",
+ "▁Ma g",
+ "▁ Mag",
+ "Tab le",
+ "T able",
+ "O ver",
+ "▁n etwork",
+ "▁net work",
+ "▁ network",
+ "с по",
+ "▁as sign",
+ "▁ass ign",
+ "▁ assign",
+ "ig ger",
+ "igg er",
+ "ir m",
+ "i rm",
+ ") `",
+ "ot tom",
+ "ott om",
+ "otto m",
+ "be ta",
+ "bet a",
+ "b eta",
+ "▁d ell",
+ "▁de ll",
+ "▁del l",
+ "▁b ody",
+ "▁bo dy",
+ "▁bod y",
+ "▁ body",
+ "▁д а",
+ "▁ да",
+ "▁Y our",
+ "▁You r",
+ "▁ Your",
+ "▁f ue",
+ "▁fu e",
+ "▁p ackage",
+ "▁pack age",
+ "▁ package",
+ "▁l ight",
+ "▁lig ht",
+ "▁ light",
+ "▁* *",
+ "▁ **",
+ "M P",
+ "▁c ou",
+ "▁co u",
+ "▁ cou",
+ "ye s",
+ "y es",
+ ": \\",
+ "▁ Ч",
+ "▁m ention",
+ "▁men tion",
+ "▁ment ion",
+ "en sch",
+ "ens ch",
+ "▁d eg",
+ "▁de g",
+ "▁ deg",
+ "▁con vert",
+ "▁conver t",
+ "▁conv ert",
+ "▁ convert",
+ "▁D av",
+ "▁Da v",
+ "ad t",
+ "a dt",
+ "Res ult",
+ "th ough",
+ "▁b us",
+ "▁bu s",
+ "▁ bus",
+ "x y",
+ "▁s een",
+ "▁se en",
+ "▁see n",
+ "▁ seen",
+ "Al l",
+ "A ll",
+ "pu blic",
+ "pub lic",
+ "p ublic",
+ "iv ely",
+ "ive ly",
+ "ivel y",
+ "▁R ec",
+ "▁Re c",
+ "▁ Rec",
+ "▁H is",
+ "▁Hi s",
+ "si m",
+ "s im",
+ "▁f ör",
+ "▁fö r",
+ "▁ för",
+ "▁h istor",
+ "▁his tor",
+ "▁hi stor",
+ "▁hist or",
+ "▁ histor",
+ "▁s ett",
+ "▁se tt",
+ "▁set t",
+ "▁ sett",
+ "ra t",
+ "r at",
+ "ab led",
+ "able d",
+ "abl ed",
+ "a bled",
+ "▁» ,",
+ "▁ »,",
+ "go ogle",
+ "We b",
+ "W eb",
+ "é l",
+ "▁t itle",
+ "▁tit le",
+ "▁ title",
+ "▁J anu",
+ "▁Jan u",
+ "▁Ja nu",
+ "ј а",
+ "▁t ook",
+ "▁to ok",
+ "▁too k",
+ "id en",
+ "ide n",
+ "i den",
+ "s z",
+ "▁G et",
+ "▁Ge t",
+ "▁ Get",
+ "▁object s",
+ "▁ objects",
+ "▁com mon",
+ "▁comm on",
+ "▁ common",
+ "▁ch anges",
+ "▁change s",
+ "▁chang es",
+ "▁ changes",
+ "▁L ond",
+ "▁Lo nd",
+ "▁ Lond",
+ "▁ex tern",
+ "▁ext ern",
+ "▁j u",
+ "▁ ju",
+ "I s",
+ "▁av ailable",
+ "▁avail able",
+ "▁ available",
+ "tr i",
+ "t ri",
+ "▁m ás",
+ "▁má s",
+ "os a",
+ "o sa",
+ "B e",
+ "▁D ata",
+ "▁Da ta",
+ "▁Dat a",
+ "▁ Data",
+ "ur al",
+ "ura l",
+ "u ral",
+ "▁h om",
+ "▁ho m",
+ "▁ hom",
+ "▁acc ount",
+ "▁ac count",
+ "▁ account",
+ "o o",
+ "▁p erm",
+ "▁per m",
+ "▁pe rm",
+ "▁ perm",
+ "res pond",
+ "resp ond",
+ "y t",
+ "▁s end",
+ "▁se nd",
+ "▁sen d",
+ "▁ send",
+ "▁return s",
+ "▁ returns",
+ "iv id",
+ "ivi d",
+ "i vid",
+ "▁ex pla",
+ "▁exp la",
+ "▁expl a",
+ "í n",
+ "▁n or",
+ "▁no r",
+ "▁ nor",
+ "I f",
+ "▁F rom",
+ "▁Fr om",
+ "▁Fro m",
+ "▁ From",
+ "▁t arget",
+ "▁tar get",
+ "▁ target",
+ "fe ct",
+ "f ect",
+ "ен т",
+ "▁u it",
+ "▁ui t",
+ "▁ uit",
+ "▁J o",
+ "▁ Jo",
+ "▁vari ables",
+ "▁variable s",
+ "▁ variables",
+ "▁s eries",
+ "▁se ries",
+ "▁ser ies",
+ "▁serie s",
+ "▁ series",
+ "▁f unc",
+ "▁fun c",
+ "▁fu nc",
+ "▁ func",
+ "▁him self",
+ "▁ч а",
+ "▁ ча",
+ "an ti",
+ "ant i",
+ "▁a ch",
+ "▁ac h",
+ "▁ ach",
+ "ia log",
+ "ial og",
+ "i alog",
+ "▁s td",
+ "▁st d",
+ "▁ std",
+ "a e",
+ "▁f oot",
+ "▁fo ot",
+ "▁foo t",
+ "▁ foot",
+ "▁un ter",
+ "▁ unter",
+ "gr ess",
+ "gres s",
+ "gre ss",
+ "g ress",
+ "No t",
+ "N ot",
+ "ra d",
+ "r ad",
+ "f ér",
+ "▁u til",
+ "▁ut il",
+ "▁ util",
+ "or em",
+ "ore m",
+ "o rem",
+ "▁s ou",
+ "▁so u",
+ "op t",
+ "o pt",
+ "▁o g",
+ "▁ og",
+ "▁u ma",
+ "▁um a",
+ "▁ uma",
+ "it ar",
+ "ita r",
+ "i tar",
+ "▁O k",
+ "▁ Ok",
+ "ü ck",
+ "sq rt",
+ "▁a nt",
+ "▁an t",
+ "▁ ant",
+ "▁wer den",
+ "▁werd en",
+ "å r",
+ "}) ;",
+ "} );",
+ "▁P aris",
+ "▁Par is",
+ "▁Pa ris",
+ "▁ex ception",
+ "▁except ion",
+ "▁ exception",
+ "▁de term",
+ "▁det erm",
+ "▁V ol",
+ "▁Vo l",
+ "▁ Vol",
+ "▁S am",
+ "▁Sa m",
+ "▁ Sam",
+ "▁e ss",
+ "▁es s",
+ "▁ ess",
+ "li es",
+ "lie s",
+ "l ies",
+ "ion i",
+ "io ni",
+ "i oni",
+ "od ing",
+ "odi ng",
+ "o ding",
+ "id get",
+ "idge t",
+ "▁p ri",
+ "▁pr i",
+ "▁wh ether",
+ "▁whe ther",
+ "▁п од",
+ "▁по д",
+ "▁num bers",
+ "▁number s",
+ "▁ numbers",
+ "▁ ~",
+ "ev ent",
+ "even t",
+ "e vent",
+ "▁sh ows",
+ "▁show s",
+ "▁sho ws",
+ "at ures",
+ "atur es",
+ "ature s",
+ "atu res",
+ "▁h ouse",
+ "▁ho use",
+ "▁hous e",
+ "▁ house",
+ "▁f ace",
+ "▁fa ce",
+ "▁fac e",
+ "▁ face",
+ "▁s ię",
+ "▁si ę",
+ "viron ment",
+ "va n",
+ "v an",
+ "▁in cluding",
+ "▁includ ing",
+ "▁inclu ding",
+ "▁ including",
+ "▁< -",
+ "▁ <-",
+ "ti mes",
+ "time s",
+ "tim es",
+ "t imes",
+ "no w",
+ "n ow",
+ "▁p ur",
+ "▁pu r",
+ "▁ pur",
+ "if ier",
+ "ifi er",
+ "ifie r",
+ "▁e mp",
+ "▁em p",
+ "▁ emp",
+ "▁c la",
+ "▁cl a",
+ "▁ cla",
+ "mo n",
+ "m on",
+ "▁D as",
+ "▁Da s",
+ "ad y",
+ "a dy",
+ "▁в ід",
+ "▁ві д",
+ "▁ від",
+ "▁ ц",
+ "ab or",
+ "a bor",
+ "OS T",
+ "O ST",
+ "▁b and",
+ "▁ban d",
+ "▁ba nd",
+ "▁ band",
+ "▁ ú",
+ "▁ex actly",
+ "▁exact ly",
+ "ie rt",
+ "ier t",
+ "i ert",
+ "av ig",
+ "avi g",
+ "▁re du",
+ "▁r edu",
+ "▁red u",
+ "▁ redu",
+ "▁S E",
+ "▁ SE",
+ "lish ed",
+ "lis hed",
+ "l ished",
+ "B u",
+ "Mess age",
+ "M essage",
+ "ce ll",
+ "cel l",
+ "c ell",
+ "ful ly",
+ "full y",
+ "▁s v",
+ "▁ sv",
+ "▁m akes",
+ "▁ma kes",
+ "▁make s",
+ "▁mak es",
+ "po l",
+ "p ol",
+ "▁re quired",
+ "▁require d",
+ "▁requ ired",
+ "▁ required",
+ "fer rer",
+ "▁p ers",
+ "▁per s",
+ "▁pe rs",
+ "▁ pers",
+ "▁m i",
+ "▁ mi",
+ "F I",
+ "▁Pa ul",
+ "▁ Paul",
+ "▁U I",
+ "▁ UI",
+ "▁B el",
+ "▁Be l",
+ "▁ Bel",
+ "in c",
+ "i nc",
+ "▁cont ains",
+ "▁contain s",
+ "▁ contains",
+ "O ut",
+ "as ure",
+ "p u",
+ "ot o",
+ "o to",
+ "▁g ame",
+ "▁ga me",
+ "▁gam e",
+ "▁ game",
+ "z n",
+ "▁W hy",
+ "▁Wh y",
+ "▁ Why",
+ "or ith",
+ "ori th",
+ "bi g",
+ "b ig",
+ "ки й",
+ "sig ma",
+ "s igma",
+ "▁qu ite",
+ "▁qui te",
+ "▁quit e",
+ "▁j ed",
+ "▁je d",
+ "▁ jed",
+ "re c",
+ "r ec",
+ "▁S QL",
+ "▁ SQL",
+ "б е",
+ "▁M art",
+ "▁Mar t",
+ "▁Ma rt",
+ "▁ Mart",
+ "y a",
+ "▁sch ool",
+ "▁ school",
+ "▁sim ply",
+ "▁simp ly",
+ "▁simpl y",
+ "▁v or",
+ "▁vo r",
+ "▁ vor",
+ "▁d ouble",
+ "▁dou ble",
+ "▁doub le",
+ "▁ double",
+ "ра в",
+ "▁S tr",
+ "▁St r",
+ "▁ Str",
+ "ie m",
+ "i em",
+ "▁al bum",
+ "▁alb um",
+ "▁ album",
+ "▁re sol",
+ "▁res ol",
+ "▁ resol",
+ "▁d ei",
+ "▁de i",
+ "▁W ik",
+ "▁Wi k",
+ "▁ Wik",
+ "▁a w",
+ "▁ aw",
+ "um b",
+ "u mb",
+ "ol s",
+ "o ls",
+ "▁* /",
+ "▁ */",
+ "▁z e",
+ "▁ ze",
+ "▁a nim",
+ "▁an im",
+ "▁ani m",
+ "▁ anim",
+ "/ >",
+ "ri s",
+ "r is",
+ "re sh",
+ "res h",
+ "r esh",
+ "N o",
+ "ique s",
+ "iqu es",
+ "i ques",
+ "cur rent",
+ "curr ent",
+ "c urrent",
+ "▁per iod",
+ "▁peri od",
+ "▁ period",
+ "▁A pril",
+ "▁Ap ril",
+ "▁st ore",
+ "▁stor e",
+ "▁sto re",
+ "▁ store",
+ "', '",
+ "' ,'",
+ "▁S et",
+ "▁Se t",
+ "▁ Set",
+ "= {",
+ "ach ed",
+ "ac hed",
+ "ache d",
+ "a ched",
+ "▁M al",
+ "▁Ma l",
+ "▁ Mal",
+ "▁P al",
+ "▁Pa l",
+ "▁ Pal",
+ "an tes",
+ "ant es",
+ "ante s",
+ "ate rial",
+ "ater ial",
+ "▁work ed",
+ "▁wor ked",
+ "le q",
+ "l eq",
+ "ore ferrer",
+ "▁h appen",
+ "▁ha ppen",
+ "▁happ en",
+ "▁b ox",
+ "▁bo x",
+ "▁ box",
+ "ne y",
+ "n ey",
+ "▁c lose",
+ "▁cl ose",
+ "▁clos e",
+ "▁clo se",
+ "▁ close",
+ "▁g ran",
+ "▁gr an",
+ "▁gra n",
+ "▁l ie",
+ "▁li e",
+ "▁ lie",
+ "▁i r",
+ "▁ ir",
+ "▁ex pected",
+ "▁exp ected",
+ "▁expect ed",
+ "▁ expected",
+ "▁д ля",
+ "cl ick",
+ "cli ck",
+ "clic k",
+ "c lick",
+ "ș i",
+ "▁p arte",
+ "▁par te",
+ "▁part e",
+ "og n",
+ "o gn",
+ "▁F orm",
+ "▁For m",
+ "▁Fo rm",
+ "▁ Form",
+ "▁m emb",
+ "▁me mb",
+ "▁mem b",
+ "▁p lan",
+ "▁pl an",
+ "▁pla n",
+ "▁ plan",
+ "▁te am",
+ "▁tea m",
+ "▁ team",
+ "] [",
+ "▁c ommun",
+ "▁com mun",
+ "▁comm un",
+ "or ry",
+ "orr y",
+ "en cy",
+ "enc y",
+ "g l",
+ "in ary",
+ "ina ry",
+ "inar y",
+ "cd ot",
+ "c dot",
+ "^ \\",
+ "▁F irst",
+ "▁Fir st",
+ "▁ First",
+ "an der",
+ "and er",
+ "ande r",
+ "a nder",
+ "▁D ec",
+ "▁De c",
+ "▁ Dec",
+ "re quest",
+ "req uest",
+ "ст ва",
+ "ств а",
+ "с тва",
+ "▁str ucture",
+ "▁struct ure",
+ "▁ structure",
+ "▁| |",
+ "▁ ||",
+ "▁C omp",
+ "▁Com p",
+ "▁Co mp",
+ "▁ Comp",
+ "act ory",
+ "actor y",
+ "▁M il",
+ "▁Mi l",
+ "▁ Mil",
+ "▁S ome",
+ "▁So me",
+ "▁Som e",
+ "▁ Some",
+ "St ream",
+ "▁as sum",
+ "▁ass um",
+ "ue n",
+ "u en",
+ "▁w ords",
+ "▁word s",
+ "▁wor ds",
+ "▁ words",
+ "▁Se ptember",
+ "▁Sept ember",
+ "▁К о",
+ "▁ Ко",
+ "▁d ays",
+ "▁da ys",
+ "▁day s",
+ "▁ days",
+ "or ies",
+ "ori es",
+ "orie s",
+ "o ries",
+ "ста в",
+ "s m",
+ "vi n",
+ "v in",
+ "part ial",
+ "▁par ent",
+ "▁pa rent",
+ "▁pare nt",
+ "▁ parent",
+ "o j",
+ "ни и",
+ "! \"",
+ "ug in",
+ "u gin",
+ "▁W indows",
+ "▁Wind ows",
+ "▁Window s",
+ "▁ Windows",
+ "E d",
+ ": }",
+ "▁ q",
+ "▁b en",
+ "▁be n",
+ "▁ ben",
+ "ia na",
+ "ian a",
+ "i ana",
+ "▁l abel",
+ "▁la bel",
+ "▁lab el",
+ "▁ label",
+ "st ate",
+ "sta te",
+ "stat e",
+ "ut ed",
+ "ute d",
+ "u ted",
+ "▁( )",
+ "▁ ()",
+ "▁с во",
+ "▁e dit",
+ "▁ed it",
+ "▁ edit",
+ "ur ing",
+ "uri ng",
+ "u ring",
+ "▁N S",
+ "▁ NS",
+ "▁J ahr",
+ "▁Jah r",
+ "▁Ja hr",
+ "▁prov ide",
+ "H e",
+ "▁Y es",
+ "▁Ye s",
+ "▁ Yes",
+ "an el",
+ "ane l",
+ "a nel",
+ "en ame",
+ "ena me",
+ "e name",
+ "▁D on",
+ "▁Do n",
+ "▁ Don",
+ "is k",
+ "i sk",
+ "gr a",
+ "g ra",
+ "el ij",
+ "eli j",
+ "e lij",
+ "▁r oot",
+ "▁ro ot",
+ "▁ root",
+ "* /",
+ "▁F re",
+ "▁Fr e",
+ "▁ Fre",
+ "▁M or",
+ "▁Mo r",
+ "▁ Mor",
+ "us ed",
+ "use d",
+ "u sed",
+ "ran ge",
+ "r ange",
+ "▁t amb",
+ "▁ta mb",
+ "▁tam b",
+ "▁mod ule",
+ "▁ module",
+ "▁d irectory",
+ "▁direct ory",
+ "▁director y",
+ "▁ directory",
+ "ound s",
+ "oun ds",
+ "Act ivity",
+ "Activ ity",
+ "▁m u",
+ "▁ mu",
+ "in fo",
+ "inf o",
+ "▁f ree",
+ "▁fr ee",
+ "▁fre e",
+ "▁ free",
+ "or ge",
+ "org e",
+ "ta b",
+ "t ab",
+ ") =",
+ "la ng",
+ "lan g",
+ "l ang",
+ "▁о с",
+ "▁ ос",
+ "▁F ROM",
+ "▁FR OM",
+ "▁ FROM",
+ "▁en ter",
+ "▁ent er",
+ "▁ enter",
+ "▁bec ame",
+ "id ae",
+ "ida e",
+ "х и",
+ "▁St ates",
+ "▁State s",
+ "▁Stat es",
+ "▁Sta tes",
+ "ver se",
+ "vers e",
+ "▁ex pl",
+ "▁exp l",
+ "▁ expl",
+ "yn t",
+ "y nt",
+ "U N",
+ "e e",
+ "en dent",
+ "end ent",
+ "enden t",
+ "ende nt",
+ "▁m aking",
+ "▁ma king",
+ "▁mak ing",
+ "▁ making",
+ "▁\" $",
+ "un i",
+ "u ni",
+ "qu ence",
+ "▁l ui",
+ "▁lu i",
+ "H T",
+ "▁us es",
+ "▁use s",
+ "▁ uses",
+ "zi e",
+ "z ie",
+ "ni a",
+ "n ia",
+ "Cont ent",
+ "▁C ount",
+ "▁Co unt",
+ "▁Coun t",
+ "▁Cou nt",
+ "▁ Count",
+ "▁stand ard",
+ "▁ standard",
+ "EN T",
+ "E NT",
+ "▁ко н",
+ "▁к он",
+ "▁ кон",
+ "fo rt",
+ "for t",
+ "f ort",
+ "ad as",
+ "ada s",
+ "a das",
+ "з у",
+ "S ystem",
+ "▁S w",
+ "▁ Sw",
+ "▁e ver",
+ "▁ev er",
+ "▁ ever",
+ "L O",
+ "▁cor respond",
+ "▁P o",
+ "▁ Po",
+ "ar gin",
+ "arg in",
+ "к т",
+ "і й",
+ "▁re main",
+ "▁rem ain",
+ "ci o",
+ "c io",
+ "▁act ual",
+ "▁actu al",
+ "▁ actual",
+ "ст у",
+ "с ту",
+ "▁s ind",
+ "▁si nd",
+ "▁sin d",
+ "▁P e",
+ "▁ Pe",
+ "▁ch anged",
+ "▁change d",
+ "▁chang ed",
+ "▁ changed",
+ "▁N ote",
+ "▁No te",
+ "▁Not e",
+ "▁ Note",
+ "sk ie",
+ "ski e",
+ "s kie",
+ "▁famil y",
+ "▁fam ily",
+ "▁ family",
+ "it à",
+ "co s",
+ "c os",
+ "tx t",
+ "t xt",
+ "ke r",
+ "k er",
+ "ce ed",
+ "c eed",
+ "▁a rr",
+ "▁ar r",
+ "▁ arr",
+ "▁c am",
+ "▁ca m",
+ "▁ cam",
+ "iz er",
+ "ize r",
+ "i zer",
+ "▁D an",
+ "▁Da n",
+ "▁ Dan",
+ "he l",
+ "h el",
+ "ic ult",
+ "icul t",
+ "H P",
+ "il er",
+ "ile r",
+ "i ler",
+ "▁S al",
+ "▁Sa l",
+ "▁ Sal",
+ "▁con nection",
+ "▁conne ction",
+ "▁connect ion",
+ "▁conn ection",
+ "▁ connection",
+ "us ion",
+ "k n",
+ "R I",
+ "▁v om",
+ "▁vo m",
+ "List ener",
+ "▁ ö",
+ "▁d im",
+ "▁di m",
+ "▁ dim",
+ "▁p ress",
+ "▁pr ess",
+ "▁pre ss",
+ "▁pres s",
+ "▁ press",
+ "▁e sc",
+ "▁es c",
+ "▁ esc",
+ "▁T ry",
+ "▁Tr y",
+ "▁ Try",
+ "at alog",
+ "ata log",
+ "atal og",
+ "▁th anks",
+ "▁than ks",
+ "▁thank s",
+ "D O",
+ "▁w ritten",
+ "▁writ ten",
+ "▁wr itten",
+ "▁ written",
+ "di r",
+ "d ir",
+ "re w",
+ "r ew",
+ "▁f ire",
+ "▁fi re",
+ "▁fir e",
+ "▁ fire",
+ "▁N ach",
+ "▁Na ch",
+ "▁ á",
+ "en c",
+ "e nc",
+ "▁or igin",
+ "▁orig in",
+ "▁ origin",
+ "▁Nov ember",
+ "▁} ;",
+ "▁ };",
+ "Co unt",
+ "C ount",
+ "▁З а",
+ "▁ За",
+ "▁g raph",
+ "▁gr aph",
+ "▁gra ph",
+ "▁ graph",
+ "▁m is",
+ "▁mi s",
+ "▁ mis",
+ "▁Ex ternal",
+ "▁Ext ernal",
+ "▁Extern al",
+ "▁Externa l",
+ "▁ External",
+ "▁o ptions",
+ "▁option s",
+ "▁opt ions",
+ "▁ options",
+ "▁U RL",
+ "▁ URL",
+ "▁p hp",
+ "▁ph p",
+ "▁ php",
+ "▁in tegr",
+ "▁int egr",
+ "▁inte gr",
+ "▁ integr",
+ "Con fig",
+ "Conf ig",
+ "▁T ext",
+ "▁Te xt",
+ "▁Tex t",
+ "▁ Text",
+ "in ner",
+ "inn er",
+ "▁c rit",
+ "▁cr it",
+ "▁cri t",
+ "▁ crit",
+ ", ”",
+ "▁t og",
+ "▁to g",
+ "$ $",
+ "no f",
+ "n of",
+ "▁s es",
+ "▁se s",
+ "üh r",
+ "ü hr",
+ "▁S ince",
+ "▁Sin ce",
+ "▁ Since",
+ "De s",
+ "D es",
+ "ub e",
+ "u be",
+ "▁s ection",
+ "▁se ction",
+ "▁sec tion",
+ "▁sect ion",
+ "▁ section",
+ "▁g i",
+ "▁ gi",
+ "fo rd",
+ "for d",
+ "f ord",
+ "▁A ss",
+ "▁As s",
+ "▁ Ass",
+ "ain er",
+ "ai ner",
+ "aine r",
+ "a iner",
+ "tt p",
+ "t tp",
+ "▁be hav",
+ "▁beh av",
+ "port s",
+ "por ts",
+ "dr aw",
+ "dra w",
+ "d raw",
+ "Th is",
+ "T his",
+ "ran ch",
+ "r anch",
+ "in ding",
+ "ind ing",
+ "indi ng",
+ "▁e stab",
+ "▁est ab",
+ "▁es tab",
+ "▁esta b",
+ "▁ob tain",
+ "▁obt ain",
+ "ri ch",
+ "ric h",
+ "r ich",
+ "li cit",
+ "lic it",
+ "е в",
+ "▁qu al",
+ "▁q ual",
+ "▁ qual",
+ "▁z a",
+ "▁ za",
+ "▁h ar",
+ "▁ha r",
+ "▁ har",
+ "▁f ac",
+ "▁fa c",
+ "▁ fac",
+ "aa r",
+ "a ar",
+ "je t",
+ "j et",
+ "ic les",
+ "icle s",
+ "i cles",
+ "▁A us",
+ "▁Au s",
+ "▁ Aus",
+ "▁h or",
+ "▁ho r",
+ "▁ hor",
+ "▁re mov",
+ "▁rem ov",
+ "▁w ie",
+ "▁ wie",
+ "Cl ient",
+ "C lient",
+ "▁n atur",
+ "▁nat ur",
+ "hi p",
+ "h ip",
+ "Su b",
+ "S ub",
+ "▁r andom",
+ "▁ran dom",
+ "▁rand om",
+ "▁ random",
+ "D F",
+ "▁a rea",
+ "▁are a",
+ "▁ar ea",
+ "▁ area",
+ "ta g",
+ "t ag",
+ "P r",
+ "▁I tal",
+ "▁It al",
+ "▁ Ital",
+ "▁r oku",
+ "▁ro ku",
+ "▁rok u",
+ "no follow",
+ "nof ollow",
+ "* }",
+ "▁o thers",
+ "▁other s",
+ "▁l imit",
+ "▁li mit",
+ "▁lim it",
+ "▁ limit",
+ "▁s il",
+ "▁si l",
+ "▁ sil",
+ "▁s av",
+ "▁sa v",
+ "▁o ften",
+ "▁of ten",
+ "▁oft en",
+ "▁re nder",
+ "▁r ender",
+ "▁ren der",
+ "▁rend er",
+ "▁rende r",
+ "▁ render",
+ "D B",
+ "▁M c",
+ "▁ Mc",
+ "▁z ijn",
+ "▁zij n",
+ "же н",
+ "ж ен",
+ "▁t ag",
+ "▁ta g",
+ "▁ tag",
+ "min g",
+ "mi ng",
+ "m ing",
+ "li chen",
+ "lic hen",
+ "lich en",
+ "liche n",
+ "l ichen",
+ "pa ck",
+ "p ack",
+ "▁A g",
+ "▁ Ag",
+ "▁s ense",
+ "▁sens e",
+ "▁sen se",
+ "p g",
+ "Met hod",
+ "M ethod",
+ "ag ed",
+ "age d",
+ "a ged",
+ "á g",
+ "ł a",
+ "▁inter est",
+ "▁inte rest",
+ "▁as soci",
+ "▁ass oci",
+ "▁ associ",
+ "vol ution",
+ "▁em pty",
+ "▁emp ty",
+ "▁ empty",
+ "ic he",
+ "ich e",
+ "i che",
+ "▁g ro",
+ "▁gr o",
+ "▁ gro",
+ "▁t ypes",
+ "▁type s",
+ "▁typ es",
+ "▁ty pes",
+ "▁ types",
+ "▁S ie",
+ "▁Si e",
+ "In ter",
+ "Int er",
+ "▁n oreferrer",
+ "▁ noreferrer",
+ "▁g ives",
+ "▁giv es",
+ "▁give s",
+ "▁gi ves",
+ "ha l",
+ "h al",
+ "▁s ave",
+ "▁sa ve",
+ "▁sav e",
+ "▁ save",
+ "▁f ont",
+ "▁fo nt",
+ "▁fon t",
+ "▁ font",
+ "ru ction",
+ "ruct ion",
+ "S cript",
+ "▁a lla",
+ "▁al la",
+ "▁all a",
+ "▁ alla",
+ "▁s ays",
+ "▁sa ys",
+ "▁say s",
+ "▁f u",
+ "▁ fu",
+ "ap e",
+ "a pe",
+ "▁l anguage",
+ "▁ language",
+ "ig er",
+ "ige r",
+ "i ger",
+ "▁K ing",
+ "▁Ki ng",
+ "▁Kin g",
+ "bo r",
+ "b or",
+ "u v",
+ "▁s hall",
+ "▁sh all",
+ "▁E urope",
+ "▁Europ e",
+ "▁Euro pe",
+ "▁Eur ope",
+ "▁ Europe",
+ "▁ein em",
+ "▁eine m",
+ "▁w ater",
+ "▁wa ter",
+ "▁wat er",
+ "▁ water",
+ "▁g overn",
+ "▁go vern",
+ "▁gover n",
+ "an z",
+ "at ors",
+ "ator s",
+ "ato rs",
+ "▁mon th",
+ "▁mo nth",
+ "▁mont h",
+ "▁ month",
+ "y e",
+ "▁import ant",
+ "▁ important",
+ "at z",
+ "a tz",
+ "fir st",
+ "f irst",
+ "▁Tr ans",
+ "▁Tra ns",
+ "▁ Trans",
+ "▁M ad",
+ "▁Ma d",
+ "▁ Mad",
+ "▁b ra",
+ "▁br a",
+ "▁ bra",
+ "ik a",
+ "i ka",
+ "▁S aint",
+ "▁Sa int",
+ "▁Sain t",
+ "▁ Saint",
+ "or ia",
+ "ori a",
+ "o ria",
+ "kr e",
+ "k re",
+ "em ents",
+ "ement s",
+ "emen ts",
+ "e ments",
+ "▁B en",
+ "▁Be n",
+ "▁ Ben",
+ "la v",
+ "l av",
+ "▁ad min",
+ "▁adm in",
+ "▁ admin",
+ "▁H en",
+ "▁He n",
+ "▁ Hen",
+ "ri l",
+ "r il",
+ "▁S m",
+ "▁ Sm",
+ "ca t",
+ "c at",
+ "▁Re fer",
+ "▁Ref er",
+ "▁ Ш",
+ "▁p ract",
+ "▁pr act",
+ "▁pra ct",
+ "▁prac t",
+ "▁P at",
+ "▁Pa t",
+ "▁ Pat",
+ "▁G re",
+ "▁Gr e",
+ "▁ Gre",
+ "▁you ng",
+ "▁yo ung",
+ "▁In ter",
+ "▁Int er",
+ "▁ Inter",
+ "om a",
+ "o ma",
+ "te ger",
+ "ib ility",
+ "ibil ity",
+ "▁param eters",
+ "▁parameter s",
+ "▁paramet ers",
+ "▁ parameters",
+ "▁every thing",
+ "da t",
+ "d at",
+ "ur op",
+ "uro p",
+ "u rop",
+ "ole an",
+ "o lean",
+ "▁return ed",
+ "▁C lass",
+ "▁Cl ass",
+ "▁Cla ss",
+ "▁ Class",
+ "ac y",
+ "a cy",
+ "## ##",
+ "▁p ř",
+ "▁f older",
+ "▁fol der",
+ "▁fo lder",
+ "▁ folder",
+ "▁k on",
+ "▁ko n",
+ "▁ kon",
+ "▁gu ess",
+ "g t",
+ "je n",
+ "j en",
+ "an nel",
+ "ann el",
+ "anne l",
+ "ic on",
+ "ico n",
+ "i con",
+ "▁c omb",
+ "▁com b",
+ "▁co mb",
+ "▁ comb",
+ "ri ct",
+ "ric t",
+ "r ict",
+ "▁h ij",
+ "▁hi j",
+ "▁aut hor",
+ "▁auth or",
+ "▁ author",
+ "se e",
+ "s ee",
+ "he re",
+ "her e",
+ "h ere",
+ "st ra",
+ "str a",
+ "s tra",
+ "▁ent ire",
+ "▁direct ly",
+ "ra ft",
+ "raf t",
+ "r aft",
+ "he et",
+ "es ter",
+ "est er",
+ "este r",
+ "e ster",
+ "▁м и",
+ "▁ ми",
+ "▁m ass",
+ "▁ma ss",
+ "▁mas s",
+ "▁ mass",
+ "un tu",
+ "unt u",
+ "▁u sers",
+ "▁us ers",
+ "▁use rs",
+ "▁user s",
+ "▁ users",
+ "ch i",
+ "c hi",
+ "P E",
+ "▁com ponent",
+ "▁compon ent",
+ "▁ component",
+ "Cl ick",
+ "C lick",
+ "At t",
+ "A tt",
+ "▁s obre",
+ "▁so bre",
+ "▁sob re",
+ "an ds",
+ "and s",
+ "▁H ol",
+ "▁Ho l",
+ "▁ Hol",
+ "▁S ant",
+ "▁San t",
+ "▁Sa nt",
+ "or i",
+ "o ri",
+ "▁s ua",
+ "▁su a",
+ "st d",
+ "s td",
+ "ent ic",
+ "enti c",
+ "C C",
+ "▁fil ter",
+ "▁ filter",
+ "S QL",
+ "▁G od",
+ "▁Go d",
+ "A t",
+ "▁м у",
+ "▁ му",
+ "▁per formance",
+ "▁perform ance",
+ "del ta",
+ "d elta",
+ "an de",
+ "and e",
+ "a nde",
+ "am er",
+ "ame r",
+ "a mer",
+ "д ы",
+ "▁c ult",
+ "▁cu lt",
+ "▁cul t",
+ "▁N or",
+ "▁No r",
+ "bu t",
+ "b ut",
+ "▁l ik",
+ "▁li k",
+ "▁ lik",
+ "**** ****",
+ "ст вен",
+ "ств ен",
+ "стве н",
+ "▁com me",
+ "▁comm e",
+ "▁d r",
+ "▁ dr",
+ "im er",
+ "ime r",
+ "i mer",
+ "or din",
+ "ord in",
+ "▁cond ition",
+ "▁ condition",
+ "es te",
+ "est e",
+ "e ste",
+ "( [",
+ "F F",
+ "ть ся",
+ "im o",
+ "i mo",
+ "ra b",
+ "r ab",
+ "і ль",
+ "▁h alf",
+ "▁hal f",
+ "▁ half",
+ "ea ch",
+ "e ach",
+ "Di s",
+ "D is",
+ "▁r ows",
+ "▁ro ws",
+ "▁row s",
+ "▁ rows",
+ "▁h on",
+ "▁ho n",
+ "▁ hon",
+ "▁t ogether",
+ "▁tog ether",
+ "▁ și",
+ "me di",
+ "med i",
+ "m edi",
+ "ag n",
+ "a gn",
+ "al led",
+ "all ed",
+ "alle d",
+ "▁v ill",
+ "▁vi ll",
+ "▁vil l",
+ "IN G",
+ "I NG",
+ "id den",
+ "idd en",
+ "▁d raw",
+ "▁dr aw",
+ "▁dra w",
+ "▁ draw",
+ "yn tax",
+ "ynt ax",
+ "▁att empt",
+ "UR L",
+ "U RL",
+ "pos e",
+ "po se",
+ "p ose",
+ "▁in dic",
+ "▁ind ic",
+ "ни ка",
+ "ник а",
+ "▁Eng lish",
+ "▁ English",
+ "▁d éc",
+ "▁dé c",
+ "▁ne eds",
+ "▁need s",
+ "▁n ormal",
+ "▁nor mal",
+ "▁norm al",
+ "▁ normal",
+ "ur t",
+ "u rt",
+ "▁н о",
+ "▁ но",
+ "}} \\",
+ "} }\\",
+ "la st",
+ "las t",
+ "l ast",
+ "▁F in",
+ "▁ Fin",
+ "▁F ebru",
+ "▁Fe bru",
+ "▁Feb ru",
+ "il a",
+ "i la",
+ "▁c ountry",
+ "▁count ry",
+ "▁coun try",
+ "▁ country",
+ "▁field s",
+ "▁fiel ds",
+ "▁ fields",
+ "▁m ax",
+ "▁ma x",
+ "▁ max",
+ "lé s",
+ "l és",
+ "ow ie",
+ "owi e",
+ "o wie",
+ "▁de ux",
+ "▁bu ilt",
+ "▁ built",
+ "▁M ain",
+ "▁Ma in",
+ "▁Mai n",
+ "▁ Main",
+ "▁c amp",
+ "▁cam p",
+ "▁ca mp",
+ "▁ camp",
+ "iv o",
+ "i vo",
+ "iv a",
+ "i va",
+ "ic y",
+ "i cy",
+ "zi one",
+ "z ione",
+ "No de",
+ "N ode",
+ "▁: )",
+ "▁ :)",
+ "▁am ong",
+ "▁O b",
+ "▁ Ob",
+ "▁c ases",
+ "▁case s",
+ "▁cas es",
+ "▁ cases",
+ "ha ps",
+ "h aps",
+ "se rs",
+ "ser s",
+ "s ers",
+ "ar ter",
+ "art er",
+ "arte r",
+ "śc i",
+ "ś ci",
+ "▁it er",
+ "▁i ter",
+ "▁ iter",
+ "▁n amed",
+ "▁name d",
+ "▁na med",
+ "▁nam ed",
+ "▁ named",
+ "ex ec",
+ "exe c",
+ "▁se ason",
+ "▁sea son",
+ "▁ season",
+ "to t",
+ "t ot",
+ "= >",
+ "gr aph",
+ "gra ph",
+ "g raph",
+ "▁n il",
+ "▁ni l",
+ "▁ nil",
+ "ac ional",
+ "acion al",
+ "aci onal",
+ "▁N ULL",
+ "▁ NULL",
+ "▁spe cial",
+ "▁spec ial",
+ "▁ special",
+ "ст е",
+ "с те",
+ "cs s",
+ "c ss",
+ "▁\\ (",
+ "v s",
+ "ae l",
+ "a el",
+ "▁c ity",
+ "▁ci ty",
+ "▁cit y",
+ "▁ city",
+ "ov a",
+ "o va",
+ "▁art icle",
+ "▁ article",
+ "▁S outh",
+ "▁So uth",
+ "▁Sou th",
+ "Act ion",
+ "Ac tion",
+ "A ction",
+ "ç a",
+ "sp ring",
+ "spr ing",
+ "s pring",
+ "it ude",
+ "itu de",
+ "itud e",
+ "▁com plex",
+ "▁comp lex",
+ "▁comple x",
+ "▁compl ex",
+ "▁ complex",
+ "▁ч то",
+ "bu ild",
+ "g amma",
+ "▁E nt",
+ "▁En t",
+ "▁ Ent",
+ "ie rs",
+ "ier s",
+ "i ers",
+ "' .",
+ "ca r",
+ "c ar",
+ "ap ache",
+ "apa che",
+ "in gen",
+ "ing en",
+ "inge n",
+ "In put",
+ ": ",
+ "▁d ynam",
+ "▁dy nam",
+ "al ls",
+ "all s",
+ "sh ow",
+ "s how",
+ "| \\",
+ "▁w ird",
+ "▁wir d",
+ "B ar",
+ "al th",
+ "alt h",
+ "mod el",
+ "mo del",
+ "mode l",
+ "m odel",
+ "Tr ans",
+ "Tra ns",
+ "Ro w",
+ "R ow",
+ "ab e",
+ "a be",
+ "▁l ib",
+ "▁li b",
+ "▁ lib",
+ "nu ll",
+ "n ull",
+ "ra gment",
+ "rag ment",
+ "▁St ate",
+ "▁Stat e",
+ "▁Sta te",
+ "▁ State",
+ "▁l aw",
+ "▁la w",
+ "▁ law",
+ "Fr ame",
+ "F rame",
+ "▁L o",
+ "▁ Lo",
+ "ge b",
+ "g eb",
+ "}$ .",
+ "} $.",
+ "▁ne eded",
+ "▁need ed",
+ "▁con tr",
+ "▁cont r",
+ "▁ contr",
+ "ar ies",
+ "ari es",
+ "arie s",
+ "a ries",
+ "▁s creen",
+ "▁sc reen",
+ "▁scr een",
+ "▁ screen",
+ "y r",
+ "m m",
+ "▁sh own",
+ "▁show n",
+ "▁sho wn",
+ "▁b ad",
+ "▁ba d",
+ "▁ bad",
+ "▁c ast",
+ "▁cas t",
+ "▁ca st",
+ "▁ cast",
+ "▁T est",
+ "▁Te st",
+ "▁ Test",
+ "▁A uf",
+ "▁Au f",
+ "▁qu ant",
+ "▁quan t",
+ "▁ quant",
+ "ig a",
+ "i ga",
+ "▁re n",
+ "▁r en",
+ "▁ ren",
+ "▁M ac",
+ "▁Ma c",
+ "▁ Mac",
+ "▁trans form",
+ "▁ transform",
+ "▁d ifference",
+ "▁dif ference",
+ "▁differ ence",
+ "▁t it",
+ "▁ti t",
+ "▁ tit",
+ "T E",
+ "▁st ep",
+ "▁ste p",
+ "▁ step",
+ "▁c apt",
+ "▁cap t",
+ "▁ca pt",
+ "▁ capt",
+ "▁col lection",
+ "▁coll ection",
+ "▁collect ion",
+ "▁colle ction",
+ "▁ collection",
+ "iction ary",
+ "▁T om",
+ "▁To m",
+ "▁ Tom",
+ "ri er",
+ "rie r",
+ "r ier",
+ "▁m ove",
+ "▁mov e",
+ "▁mo ve",
+ "▁ move",
+ "co pe",
+ "cop e",
+ "c ope",
+ "or ds",
+ "ord s",
+ "▁fur ther",
+ "▁column s",
+ "▁ columns",
+ "▁L in",
+ "▁Li n",
+ "▁ Lin",
+ "▁f ixed",
+ "▁fix ed",
+ "▁ fixed",
+ "▁child ren",
+ "▁ children",
+ "M S",
+ "m o",
+ "un a",
+ "u na",
+ "▁ind ivid",
+ "tt y",
+ "t ty",
+ "as te",
+ "ast e",
+ "a ste",
+ "sr c",
+ "s rc",
+ "mat ch",
+ "m atch",
+ "w i",
+ "▁ х",
+ "▁д и",
+ "▁ ди",
+ "▁o rd",
+ "▁or d",
+ "▁ ord",
+ "iv ing",
+ "ivi ng",
+ "i ving",
+ "▁B ro",
+ "▁Br o",
+ "▁ Bro",
+ "▁al most",
+ "▁P res",
+ "▁Pr es",
+ "▁Pre s",
+ "▁ Pres",
+ "re ci",
+ "rec i",
+ "ar ing",
+ "ari ng",
+ "arin g",
+ "a ring",
+ "▁/ //",
+ "▁// /",
+ "▁ ///",
+ "ет ся",
+ "е тся",
+ "▁s ig",
+ "▁si g",
+ "▁ sig",
+ "lig ht",
+ "l ight",
+ "▁R ed",
+ "▁Re d",
+ "▁ Red",
+ "▁sugg est",
+ "▁sug gest",
+ "ol f",
+ "▁é té",
+ "▁ét é",
+ "▁ été",
+ "is ation",
+ "isa tion",
+ "isat ion",
+ "з на",
+ "Ne w",
+ "N ew",
+ "ст ан",
+ "ста н",
+ "с тан",
+ "L A",
+ "un icip",
+ "unic ip",
+ "uni cip",
+ "▁fig ure",
+ "▁figur e",
+ "▁ figure",
+ "m t",
+ "ia le",
+ "ial e",
+ "i ale",
+ "▁c atch",
+ "▁cat ch",
+ "▁ catch",
+ "de fault",
+ "def ault",
+ "▁t ele",
+ "▁te le",
+ "▁tel e",
+ "▁ tele",
+ "▁m atter",
+ "▁mat ter",
+ "ca st",
+ "cas t",
+ "c ast",
+ "▁R ich",
+ "▁Ric h",
+ "▁Ri ch",
+ "▁ Rich",
+ "▁hand le",
+ "▁ handle",
+ "val u",
+ "va lu",
+ "v alu",
+ "$ -",
+ "о б",
+ "▁j son",
+ "▁js on",
+ "▁ json",
+ "Cre ate",
+ "C reate",
+ "▁ex am",
+ "ал ь",
+ "а ль",
+ "ю т",
+ "or ed",
+ "ore d",
+ "o red",
+ "id os",
+ "ido s",
+ "ap pend",
+ "app end",
+ "appen d",
+ "appe nd",
+ "▁Ar ray",
+ "▁Arr ay",
+ "▁ Array",
+ "к с",
+ "} [",
+ "ri ve",
+ "riv e",
+ "r ive",
+ "▁c lub",
+ "▁cl ub",
+ "▁ club",
+ "ma nn",
+ "man n",
+ "m ann",
+ "▁e ste",
+ "▁est e",
+ "▁es te",
+ "▁ este",
+ "es ta",
+ "est a",
+ "e sta",
+ "▁G i",
+ "▁ Gi",
+ "▁J ap",
+ "▁Ja p",
+ "▁N ame",
+ "▁Na me",
+ "▁Nam e",
+ "▁ Name",
+ "Col umn",
+ "ou ps",
+ "oup s",
+ "o ups",
+ "is mo",
+ "ism o",
+ "▁C ity",
+ "▁Ci ty",
+ "▁Cit y",
+ "▁ City",
+ "▁class es",
+ "▁classe s",
+ "▁ classes",
+ "▁in fl",
+ "▁inf l",
+ "▁ infl",
+ "h l",
+ "ро м",
+ "р ом",
+ "▁ad ding",
+ "▁add ing",
+ "▁ adding",
+ "▁f ail",
+ "▁fa il",
+ "▁ fail",
+ "x x",
+ "õ es",
+ "S c",
+ "ut il",
+ "uti l",
+ "u til",
+ "▁l ocation",
+ "▁lo cation",
+ "▁loc ation",
+ "▁ location",
+ "le ge",
+ "leg e",
+ "l ege",
+ "ag o",
+ "a go",
+ "▁pro perties",
+ "▁proper ties",
+ "▁ properties",
+ "ab il",
+ "abi l",
+ "a bil",
+ "va s",
+ "v as",
+ "}$ ,",
+ "} $,",
+ "it ted",
+ "itt ed",
+ "itte d",
+ "ó d",
+ "▁D em",
+ "▁De m",
+ "▁as ked",
+ "▁ask ed",
+ "▁t ab",
+ "▁ta b",
+ "▁ tab",
+ "S ource",
+ "▁error s",
+ "▁err ors",
+ "▁ errors",
+ "ograph ie",
+ "▁ж и",
+ "▁ жи",
+ "▁m al",
+ "▁ma l",
+ "▁ mal",
+ "st ract",
+ "str act",
+ "stra ct",
+ "▁d ro",
+ "▁dr o",
+ "▁ dro",
+ "ra k",
+ "r ak",
+ "▁n ote",
+ "▁not e",
+ "▁no te",
+ "▁ note",
+ "▁set ting",
+ "▁sett ing",
+ "▁ setting",
+ "▁f em",
+ "▁fe m",
+ "▁s aw",
+ "▁sa w",
+ "ia r",
+ "i ar",
+ "HE R",
+ "H ER",
+ "е с",
+ "▁p red",
+ "▁pr ed",
+ "▁pre d",
+ "▁ pred",
+ "▁O ut",
+ "▁ Out",
+ "▁it ems",
+ "▁item s",
+ "▁ items",
+ "ла н",
+ "л ан",
+ "▁w erd",
+ "▁we rd",
+ "▁wer d",
+ "ers ion",
+ "li a",
+ "l ia",
+ "▁s in",
+ "▁si n",
+ "▁ sin",
+ "ich te",
+ "icht e",
+ "i chte",
+ "▁fe el",
+ "▁fee l",
+ "▁п ра",
+ "▁пр а",
+ "▁ пра",
+ "▁o der",
+ "▁od er",
+ "▁ oder",
+ "U E",
+ "oc ument",
+ "▁m ode",
+ "▁mod e",
+ "▁mo de",
+ "▁ mode",
+ "▁N a",
+ "▁ Na",
+ "де н",
+ "д ен",
+ "me s",
+ "m es",
+ "frame work",
+ "▁a uto",
+ "▁au to",
+ "▁aut o",
+ "▁ auto",
+ "ны м",
+ "н ым",
+ "ub y",
+ "u by",
+ "▁tem plate",
+ "▁temp late",
+ "▁ template",
+ "▁m ess",
+ "▁me ss",
+ "▁mes s",
+ "▁ mess",
+ "ie der",
+ "ied er",
+ "i eder",
+ "▁rel ated",
+ "▁rela ted",
+ "▁relate d",
+ "▁ related",
+ "ok en",
+ "oke n",
+ "o ken",
+ "▁follow s",
+ "se arch",
+ "s earch",
+ "am i",
+ "a mi",
+ "▁w ait",
+ "▁wa it",
+ "▁ wait",
+ "ig r",
+ "i gr",
+ "▁l ow",
+ "▁lo w",
+ "▁ low",
+ "ски х",
+ "ск их",
+ "с ких",
+ "ска я",
+ "с кая",
+ "▁M ark",
+ "▁Mar k",
+ "▁ Mark",
+ "▁i ll",
+ "▁il l",
+ "▁ ill",
+ "am ento",
+ "ament o",
+ "amen to",
+ "\\ <",
+ "▁d f",
+ "▁ df",
+ "os ition",
+ "osi tion",
+ "▁В и",
+ "is f",
+ "i sf",
+ "▁De utsch",
+ "ah l",
+ "a hl",
+ "wa r",
+ "w ar",
+ "it ect",
+ "ite ct",
+ "▁s al",
+ "▁sa l",
+ "▁ sal",
+ "el en",
+ "ele n",
+ "e len",
+ "By Id",
+ "▁g ru",
+ "▁gr u",
+ "▁ gru",
+ "s v",
+ "▁pass ed",
+ "▁pas sed",
+ "▁passe d",
+ "▁a ñ",
+ "▁ añ",
+ "Sc h",
+ "S ch",
+ "▁sol ve",
+ "we ise",
+ "weis e",
+ "wei se",
+ "at os",
+ "ato s",
+ "▁m eg",
+ "▁me g",
+ "▁m ember",
+ "▁mem ber",
+ "▁memb er",
+ "▁ member",
+ "er name",
+ "ern ame",
+ "erna me",
+ "▁con nect",
+ "▁conne ct",
+ "▁conn ect",
+ "▁ connect",
+ "ip s",
+ "i ps",
+ "▁r ound",
+ "▁ro und",
+ "▁rou nd",
+ "▁ round",
+ "▁ ]",
+ "ne s",
+ "n es",
+ "▁d ir",
+ "▁di r",
+ "▁ dir",
+ "▁Lond on",
+ "d y",
+ "F A",
+ "▁rece ived",
+ "▁receive d",
+ "re et",
+ "ree t",
+ "▁L og",
+ "▁Lo g",
+ "▁ Log",
+ "▁Sch ool",
+ "an go",
+ "ang o",
+ "▁The se",
+ "▁Th ese",
+ "▁M ont",
+ "▁Mon t",
+ "▁Mo nt",
+ "▁ Mont",
+ "▁e ner",
+ "▁en er",
+ "▁ ener",
+ "la d",
+ "l ad",
+ "▁def ine",
+ "▁defin e",
+ "▁ define",
+ "si gn",
+ "sig n",
+ "s ign",
+ "▁c le",
+ "▁cl e",
+ "▁ cle",
+ "fig ure",
+ "▁V iew",
+ "▁Vi ew",
+ "▁Vie w",
+ "▁ View",
+ "text bf",
+ "$ \\",
+ "з ы",
+ "num ber",
+ "n umber",
+ "▁d in",
+ "▁di n",
+ "▁ din",
+ "el ler",
+ "ell er",
+ "elle r",
+ "orith m",
+ "ori thm",
+ "fal se",
+ "f alse",
+ "fo l",
+ "f ol",
+ "ffic ient",
+ "▁HT ML",
+ "▁ HTML",
+ "li che",
+ "lic he",
+ "lich e",
+ "l iche",
+ "▁M o",
+ "▁ Mo",
+ "▁int rodu",
+ "▁intr odu",
+ "▁intro du",
+ "ex p",
+ "e xp",
+ "▁st rong",
+ "▁str ong",
+ "▁stro ng",
+ "▁ strong",
+ "▁t hus",
+ "▁th us",
+ "/ )",
+ "▁e le",
+ "▁el e",
+ "▁ ele",
+ "▁та к",
+ "▁ так",
+ "▁п а",
+ "▁ па",
+ "▁d ont",
+ "▁do nt",
+ "▁don t",
+ "▁c ause",
+ "▁caus e",
+ "▁ca use",
+ "Num ber",
+ "N umber",
+ "▁im ages",
+ "▁image s",
+ "▁imag es",
+ "▁ images",
+ "▁s ample",
+ "▁sam ple",
+ "▁ sample",
+ "▁s ci",
+ "▁sc i",
+ "▁ sci",
+ "li ke",
+ "lik e",
+ "l ike",
+ "▁L ou",
+ "▁Lo u",
+ "▁ Lou",
+ "di v",
+ "d iv",
+ "an c",
+ "a nc",
+ "▁f ront",
+ "▁fr ont",
+ "▁fro nt",
+ "▁ front",
+ "ne n",
+ "n en",
+ "▁miss ing",
+ "▁mis sing",
+ "▁ missing",
+ "ar ia",
+ "ari a",
+ "a ria",
+ "pr es",
+ "pre s",
+ "p res",
+ "▁п ред",
+ "▁пре д",
+ "D I",
+ "fil ter",
+ "▁M it",
+ "▁Mi t",
+ "U R",
+ "▁o pp",
+ "▁op p",
+ "▁ opp",
+ "▁s ql",
+ "▁sq l",
+ "▁ sql",
+ "▁ро ку",
+ "er en",
+ "ere n",
+ "e ren",
+ "em at",
+ "ema t",
+ "e mat",
+ "í s",
+ "▁Je an",
+ "▁ Jean",
+ "é c",
+ "▁c i",
+ "▁ ci",
+ "en ne",
+ "enn e",
+ "at form",
+ "▁t aken",
+ "▁tak en",
+ "▁take n",
+ "▁ta ken",
+ "▁O f",
+ "▁ Of",
+ "▁на се",
+ "▁e rr",
+ "▁er r",
+ "▁ err",
+ "O P",
+ "Fr om",
+ "F rom",
+ "De fault",
+ "Def ault",
+ "▁Gener al",
+ "▁Gen eral",
+ "▁Gene ral",
+ "▁ General",
+ "wik i",
+ "wi ki",
+ "w iki",
+ "▁g rand",
+ "▁gr and",
+ "▁gra nd",
+ "▁gran d",
+ "▁ grand",
+ "▁e inen",
+ "▁ein en",
+ "▁eine n",
+ "Re g",
+ "R eg",
+ "Hand ler",
+ "Handle r",
+ "con om",
+ "co nom",
+ "cono m",
+ "c onom",
+ "an ger",
+ "ang er",
+ "ange r",
+ "▁бы л",
+ "▁L os",
+ "▁Lo s",
+ "▁ Los",
+ "▁ex pression",
+ "▁exp ression",
+ "▁express ion",
+ "▁expr ession",
+ "▁ expression",
+ "ш а",
+ "ya l",
+ "y al",
+ "▁$ ('",
+ "▁$( '",
+ "▁sw itch",
+ "▁ switch",
+ "▁v ector",
+ "▁ve ctor",
+ "▁vec tor",
+ "▁ vector",
+ "▁T hom",
+ "▁Th om",
+ "▁v irt",
+ "▁vi rt",
+ "▁vir t",
+ "▁ virt",
+ "le ased",
+ "lease d",
+ "lea sed",
+ "▁c over",
+ "▁co ver",
+ "▁cov er",
+ "▁ cover",
+ "▁re sp",
+ "▁r esp",
+ "▁res p",
+ "▁ resp",
+ "ak o",
+ "a ko",
+ "ren ch",
+ "ot a",
+ "o ta",
+ "C ell",
+ "an ged",
+ "ang ed",
+ "ange d",
+ "▁+ =",
+ "▁ +=",
+ "la c",
+ "l ac",
+ "sk a",
+ "s ka",
+ "ne xt",
+ "nex t",
+ "n ext",
+ "▁Intern ational",
+ "▁W il",
+ "▁Wi l",
+ "▁ Wil",
+ "▁o nt",
+ "▁on t",
+ "▁ ont",
+ "ib r",
+ "i br",
+ "us tr",
+ "ust r",
+ "u str",
+ "▁b lack",
+ "▁bl ack",
+ "▁bla ck",
+ "▁ black",
+ "▁select ed",
+ "▁sel ected",
+ "▁sele cted",
+ "▁ selected",
+ "ch er",
+ "che r",
+ "c her",
+ "▁l iter",
+ "▁li ter",
+ "▁lit er",
+ "▁ liter",
+ "ro ot",
+ "r oot",
+ "л ся",
+ "▁L ife",
+ "▁Li fe",
+ "▁ Life",
+ "▁in sert",
+ "▁ins ert",
+ "▁inser t",
+ "▁inse rt",
+ "▁ insert",
+ "▁mat rix",
+ "▁ matrix",
+ "is es",
+ "ise s",
+ ") ]",
+ "▁p el",
+ "▁pe l",
+ "▁ pel",
+ "Over ride",
+ "ry pt",
+ "▁for mer",
+ "▁form er",
+ "▁forme r",
+ "▁ former",
+ "▁Fil m",
+ "▁N orth",
+ "▁Nor th",
+ "cl ient",
+ "cli ent",
+ "c lient",
+ "▁n ight",
+ "▁ night",
+ "хо ди",
+ "ход и",
+ "▁A ustral",
+ "▁Aust ral",
+ "▁ Austral",
+ "▁R et",
+ "▁Re t",
+ "▁ Ret",
+ "rh o",
+ "r ho",
+ "▁п ер",
+ "▁пе р",
+ "▁ пер",
+ "ip edia",
+ "ipe dia",
+ "▁ex press",
+ "▁exp ress",
+ "▁expr ess",
+ "▁expres s",
+ "▁ express",
+ "▁th ird",
+ "▁ third",
+ "▁ma jor",
+ "▁maj or",
+ "▁ major",
+ "▁g rad",
+ "▁gr ad",
+ "▁gra d",
+ "▁ grad",
+ "ow e",
+ "o we",
+ "▁bel ieve",
+ "our nal",
+ "ourn al",
+ "▁st atus",
+ "▁stat us",
+ "▁ status",
+ "un c",
+ "u nc",
+ "▁d ou",
+ "▁do u",
+ "▁J SON",
+ "▁JS ON",
+ "▁ JSON",
+ "ui s",
+ "u is",
+ "▁pop ulation",
+ "▁popula tion",
+ "▁popul ation",
+ "en z",
+ "▁Will iam",
+ "s f",
+ "▁O bject",
+ "▁Ob ject",
+ "▁ Object",
+ "▁c in",
+ "▁ci n",
+ "▁ cin",
+ "▁D i",
+ "▁ Di",
+ "cur ity",
+ "c urity",
+ "▁O pen",
+ "▁Op en",
+ "▁ Open",
+ "▁ ле",
+ "la r",
+ "l ar",
+ "ad ding",
+ "add ing",
+ "▁k om",
+ "▁ko m",
+ "▁ kom",
+ "}( \\",
+ "} (\\",
+ "▁k il",
+ "▁ki l",
+ "▁ kil",
+ "um er",
+ "ume r",
+ "u mer",
+ "\"/ >",
+ "\" />",
+ "▁fe ature",
+ "▁ feature",
+ "▁A re",
+ "▁Ar e",
+ "▁ Are",
+ "ck s",
+ "c ks",
+ "▁Intern et",
+ "▁Inter net",
+ "▁ Internet",
+ "▁i h",
+ "▁ ih",
+ "▁start ed",
+ "▁star ted",
+ "▁ear ly",
+ "▁be gan",
+ "▁beg an",
+ "T H",
+ "p ython",
+ "as p",
+ "a sp",
+ "▁F r",
+ "▁ Fr",
+ "▁c los",
+ "▁cl os",
+ "▁clo s",
+ "▁ clos",
+ "ist ic",
+ "isti c",
+ "▁mus ic",
+ "▁ music",
+ "▁d ig",
+ "▁di g",
+ "▁ dig",
+ "▁it al",
+ "▁i tal",
+ "▁ ital",
+ "▁D avid",
+ "▁Dav id",
+ "▁Da vid",
+ "▁ David",
+ "▁web site",
+ "▁ website",
+ "▁cont roller",
+ "▁control ler",
+ "▁ controller",
+ "▁M er",
+ "▁Me r",
+ "▁ Mer",
+ "con text",
+ "cont ext",
+ "pro duct",
+ "produ ct",
+ "prod uct",
+ "os p",
+ "o sp",
+ "▁j un",
+ "▁ju n",
+ "ro wn",
+ "row n",
+ "r own",
+ "▁A z",
+ "▁ Az",
+ "\": \"",
+ "\" :\"",
+ "▁a an",
+ "▁aa n",
+ "▁D ate",
+ "▁Da te",
+ "▁Dat e",
+ "▁ Date",
+ "mu lt",
+ "mul t",
+ "m ult",
+ "▁b rowser",
+ "▁brow ser",
+ "▁ browser",
+ "ре д",
+ "wh ich",
+ "R A",
+ "qu are",
+ "qua re",
+ "▁R uss",
+ "▁Ru ss",
+ "▁Rus s",
+ "▁ Russ",
+ "▁s oon",
+ "▁so on",
+ "▁P re",
+ "▁Pr e",
+ "▁ Pre",
+ "ta u",
+ "t au",
+ "▁we ek",
+ "▁ week",
+ "▁б а",
+ "▁ ба",
+ "▁o ct",
+ "▁oc t",
+ "▁ oct",
+ "▁t own",
+ "▁to wn",
+ "▁ town",
+ "ro y",
+ "r oy",
+ "▁e ls",
+ "▁el s",
+ "▁ els",
+ "bl ic",
+ "b lic",
+ "und le",
+ "▁H istor",
+ "▁His tor",
+ "▁Hi stor",
+ "▁Hist or",
+ "▁f oi",
+ "▁fo i",
+ "▁mod els",
+ "▁model s",
+ "▁mode ls",
+ "▁ models",
+ "з о",
+ "on ym",
+ "ony m",
+ "o nym",
+ "Par am",
+ "Pa ram",
+ "P aram",
+ "▁M et",
+ "▁Me t",
+ "▁ Met",
+ "ge ner",
+ "gen er",
+ "g ener",
+ "j ą",
+ "▁e spe",
+ "▁es pe",
+ "▁esp e",
+ "C E",
+ "▁de vice",
+ "▁dev ice",
+ "▁devi ce",
+ "▁ device",
+ "el low",
+ "ell ow",
+ "ello w",
+ "▁de bug",
+ "▁deb ug",
+ "▁ debug",
+ "ér ie",
+ "éri e",
+ "é rie",
+ "us ing",
+ "u sing",
+ "ан г",
+ "а нг",
+ "▁* )",
+ "▁ *)",
+ "ud i",
+ "u di",
+ "▁M iss",
+ "▁Mi ss",
+ "▁Mis s",
+ "▁ Miss",
+ "ко м",
+ "к ом",
+ "pos ed",
+ "po sed",
+ "pose d",
+ "p osed",
+ "▁z we",
+ "▁zw e",
+ "і н",
+ "▁Ro bert",
+ "▁Rob ert",
+ "▁O ct",
+ "▁ Oct",
+ "lo p",
+ "l op",
+ "ja r",
+ "j ar",
+ "▁a ver",
+ "▁av er",
+ "▁ave r",
+ "▁ aver",
+ "▁ha bit",
+ "▁hab it",
+ "▁: :",
+ "▁ ::",
+ "än g",
+ "ä ng",
+ "St art",
+ "Star t",
+ "▁p ow",
+ "▁po w",
+ "▁ pow",
+ "▁s rc",
+ "▁sr c",
+ "▁ src",
+ "▁pat tern",
+ "▁ pattern",
+ "▁ Э",
+ "▁b i",
+ "▁ bi",
+ "ot es",
+ "ote s",
+ "o tes",
+ "▁_ _",
+ "▁ __",
+ "▁s ens",
+ "▁se ns",
+ "▁sen s",
+ "▁ sens",
+ "▁a void",
+ "▁av oid",
+ "▁avo id",
+ "ex ample",
+ "ut t",
+ "u tt",
+ "La bel",
+ "Lab el",
+ "L abel",
+ "te x",
+ "t ex",
+ "bo ot",
+ "b oot",
+ "es to",
+ "est o",
+ "e sto",
+ "▁M arch",
+ "▁Mar ch",
+ "▁Marc h",
+ "▁e asy",
+ "▁eas y",
+ "ict ure",
+ "Gr oup",
+ "▁f ather",
+ "▁fa ther",
+ "▁fat her",
+ "▁ father",
+ "▁up dated",
+ "▁update d",
+ "▁upd ated",
+ "▁ updated",
+ "▁V o",
+ "▁I II",
+ "▁II I",
+ "▁ III",
+ "om ega",
+ "ome ga",
+ "▁a lle",
+ "▁al le",
+ "▁all e",
+ "▁ alle",
+ "Re c",
+ "R ec",
+ "y g",
+ "з е",
+ "▁D im",
+ "▁Di m",
+ "▁ Dim",
+ "ne ct",
+ "n ect",
+ "▁T or",
+ "▁To r",
+ "▁de utsch",
+ "▁ deutsch",
+ "▁wh ite",
+ "▁ white",
+ "▁n ational",
+ "▁nation al",
+ "▁nat ional",
+ "pp e",
+ "p pe",
+ "▁a ir",
+ "▁ai r",
+ "▁ air",
+ "▁pass word",
+ "▁ password",
+ "de t",
+ "d et",
+ "▁b ig",
+ "▁bi g",
+ "▁ big",
+ "▁U se",
+ "▁Us e",
+ "▁ Use",
+ "cal l",
+ "ca ll",
+ "c all",
+ "▁ex tra",
+ "▁ext ra",
+ "▁extr a",
+ "▁ extra",
+ "W e",
+ "an ia",
+ "ani a",
+ "a nia",
+ "▁h old",
+ "▁ho ld",
+ "▁hol d",
+ "▁ hold",
+ "Cont rol",
+ "▁C O",
+ "▁ CO",
+ "▁м і",
+ "▁ мі",
+ "it i",
+ "i ti",
+ "▁K e",
+ "▁ Ke",
+ "en u",
+ "e nu",
+ "▁P ark",
+ "▁Par k",
+ "то м",
+ "т ом",
+ "▁a uth",
+ "▁au th",
+ "▁aut h",
+ "▁ auth",
+ "▁c enter",
+ "▁cent er",
+ "▁ center",
+ "P h",
+ "то в",
+ "т ов",
+ "id ing",
+ "idi ng",
+ "i ding",
+ "▁a cross",
+ "▁ac ross",
+ "▁s ong",
+ "▁so ng",
+ "▁son g",
+ "▁ song",
+ "▁ph ys",
+ "▁ phys",
+ "▁n umer",
+ "▁num er",
+ "▁nu mer",
+ "▁ numer",
+ "щ а",
+ "▁A lex",
+ "▁Al ex",
+ "▁Ale x",
+ "▁ Alex",
+ "▁problem s",
+ "▁proble ms",
+ "▁probl ems",
+ "▁E rror",
+ "▁Er ror",
+ "▁Err or",
+ "▁ Error",
+ "form at",
+ "for mat",
+ "▁A cc",
+ "▁Ac c",
+ "▁ Acc",
+ "▁s ix",
+ "▁si x",
+ "▁ six",
+ "▁d b",
+ "▁ db",
+ "▁C ast",
+ "▁Cas t",
+ "▁Ca st",
+ "▁ Cast",
+ "om s",
+ "o ms",
+ "pro ject",
+ "proj ect",
+ "▁v ert",
+ "▁ver t",
+ "▁ve rt",
+ "▁ vert",
+ "cre t",
+ "cr et",
+ "c ret",
+ "▁he ader",
+ "▁head er",
+ "▁ header",
+ "▁st ream",
+ "▁stre am",
+ "▁ stream",
+ "id s",
+ "i ds",
+ "▁t or",
+ "▁to r",
+ "▁ tor",
+ "▁se pt",
+ "▁sep t",
+ "▁est im",
+ "▁es tim",
+ "▁de cl",
+ "▁dec l",
+ "▁ decl",
+ "▁g ave",
+ "▁ga ve",
+ "▁p layer",
+ "▁pl ayer",
+ "▁play er",
+ "▁pla yer",
+ "▁ player",
+ "ys is",
+ "▁д ру",
+ "▁др у",
+ "am m",
+ "a mm",
+ "щ о",
+ "▁( \"",
+ "▁ (\"",
+ "▁a x",
+ "▁ ax",
+ "Pro perty",
+ "us r",
+ "u sr",
+ "▁some one",
+ "▁im pro",
+ "▁imp ro",
+ "▁impr o",
+ "ad en",
+ "ade n",
+ "a den",
+ "ro te",
+ "rot e",
+ "r ote",
+ "▁М и",
+ "i h",
+ "++ )",
+ "+ +)",
+ "▁v ideo",
+ "▁vide o",
+ "▁ video",
+ "▁ex ists",
+ "▁exist s",
+ "▁ exists",
+ "к ла",
+ "▁comp lete",
+ "▁comple te",
+ "▁complet e",
+ "▁compl ete",
+ "▁ complete",
+ "▁s ession",
+ "▁sess ion",
+ "▁ session",
+ "▁const ant",
+ "▁ constant",
+ "ic os",
+ "ico s",
+ "i cos",
+ "▁p ack",
+ "▁pa ck",
+ "▁pac k",
+ "▁ pack",
+ "ro me",
+ "rom e",
+ "r ome",
+ "eg r",
+ "e gr",
+ "App lication",
+ "▁y es",
+ "▁ye s",
+ "▁ yes",
+ "▁e lle",
+ "▁el le",
+ "▁ell e",
+ "▁ elle",
+ "▁e mail",
+ "▁em ail",
+ "▁ email",
+ "or f",
+ "o rf",
+ "ca se",
+ "cas e",
+ "c ase",
+ "▁po inter",
+ "▁point er",
+ "▁ pointer",
+ "▁reg ard",
+ "se n",
+ "s en",
+ "st atus",
+ "stat us",
+ "▁m es",
+ "▁me s",
+ "▁ mes",
+ "▁d elle",
+ "▁de lle",
+ "▁del le",
+ "▁dell e",
+ "ing ton",
+ "ingt on",
+ "▁B as",
+ "▁Ba s",
+ "▁ Bas",
+ ") ^",
+ "de velop",
+ "▁for ce",
+ "▁ force",
+ "▁char acters",
+ "▁charact ers",
+ "▁character s",
+ "▁c ross",
+ "▁cr oss",
+ "▁cro ss",
+ "▁ cross",
+ "▁de ath",
+ "▁t akes",
+ "▁tak es",
+ "▁take s",
+ "▁ta kes",
+ "ér i",
+ "é ri",
+ "ig ne",
+ "ign e",
+ "че н",
+ "ч ен",
+ "U P",
+ ". :",
+ "Th read",
+ "j u",
+ "in y",
+ "i ny",
+ "▁det ails",
+ "▁detail s",
+ "▁ details",
+ "▁x ml",
+ "▁ xml",
+ "ta it",
+ "t ait",
+ "out put",
+ "mess age",
+ "m essage",
+ "' '",
+ "▁Brit ish",
+ "vi lle",
+ "vil le",
+ "v ille",
+ "▁D iv",
+ "▁Di v",
+ "▁ Div",
+ "▁U ser",
+ "▁Use r",
+ "▁Us er",
+ "▁ User",
+ "c m",
+ "ч но",
+ "col umn",
+ "eq ref",
+ "ó r",
+ "on om",
+ "ono m",
+ "o nom",
+ "▁P ost",
+ "▁Po st",
+ "▁Pos t",
+ "▁ Post",
+ "el len",
+ "ell en",
+ "elle n",
+ "A b",
+ "ul té",
+ "ult é",
+ "▁per fect",
+ "▁perf ect",
+ "() {",
+ "( ){",
+ "vis ion",
+ "v ision",
+ "act ive",
+ "activ e",
+ "li er",
+ "lie r",
+ "l ier",
+ "ri j",
+ "r ij",
+ "s d",
+ "▁k ö",
+ "▁ kö",
+ "▁n ie",
+ "▁ni e",
+ "▁ nie",
+ "▁re lig",
+ "▁rel ig",
+ "▁reli g",
+ "▁o t",
+ "▁ ot",
+ "▁m achine",
+ "▁mach ine",
+ "▁ machine",
+ "▁h eld",
+ "▁he ld",
+ "▁hel d",
+ ")$ .",
+ ") $.",
+ "==== ====",
+ "ck er",
+ "cke r",
+ "c ker",
+ "в ы",
+ "bo rn",
+ "bor n",
+ "b orn",
+ "▁p ast",
+ "▁pas t",
+ "▁pa st",
+ "ри я",
+ "▁D r",
+ "▁ Dr",
+ "▁reg ular",
+ "▁regul ar",
+ "▁ regular",
+ "▁prov ided",
+ "▁provide d",
+ "TE R",
+ "T ER",
+ "▁un ivers",
+ "▁ univers",
+ "▁g ets",
+ "▁get s",
+ "▁ge ts",
+ "▁ gets",
+ "▁n u",
+ "▁ nu",
+ "▁/ *",
+ "▁ /*",
+ "ob er",
+ "obe r",
+ "o ber",
+ "fi n",
+ "f in",
+ "▁n ella",
+ "▁ne lla",
+ "▁nel la",
+ "▁nell a",
+ "▁be come",
+ "▁bec ome",
+ "▁becom e",
+ "▁` `",
+ "▁ ``",
+ "▁h istory",
+ "▁histor y",
+ "▁hi story",
+ "▁hist ory",
+ "▁ history",
+ "▁S ol",
+ "▁So l",
+ "▁ Sol",
+ "▁R ad",
+ "▁Ra d",
+ "▁ Rad",
+ "▁term s",
+ "▁ter ms",
+ "▁even ts",
+ "▁event s",
+ "▁ev ents",
+ "▁ events",
+ "ly mp",
+ ")) )",
+ ") ))",
+ "ро ва",
+ "ров а",
+ "р ова",
+ "▁ab sol",
+ "▁abs ol",
+ "▁so ft",
+ "▁ soft",
+ "lin ks",
+ "link s",
+ "l inks",
+ "▁h ope",
+ "▁ho pe",
+ "▁hop e",
+ "▁su bject",
+ "▁sub ject",
+ "▁ subject",
+ "\") ,",
+ "\" ),",
+ "▁cre ating",
+ "▁} \r",
+ "▁ }\r",
+ "▁S k",
+ "▁ Sk",
+ "▁f low",
+ "▁fl ow",
+ "▁flo w",
+ "▁ flow",
+ "▁Р а",
+ "▁as sert",
+ "▁ass ert",
+ "▁asse rt",
+ "▁ assert",
+ "ze t",
+ "z et",
+ "▁F rank",
+ "▁Fran k",
+ "▁Fr ank",
+ "s a",
+ "▁dist ribution",
+ "▁distribu tion",
+ "▁distrib ution",
+ "▁ distribution",
+ "c u",
+ "ba nd",
+ "ban d",
+ "b and",
+ "iz z",
+ "i zz",
+ "▁j ob",
+ "▁jo b",
+ "▁ job",
+ "in er",
+ "ine r",
+ "i ner",
+ "st ruct",
+ "str uct",
+ "stru ct",
+ "á k",
+ "T O",
+ "au f",
+ "a uf",
+ "▁ext ends",
+ "▁extend s",
+ "▁G ra",
+ "▁Gr a",
+ "dis play",
+ "▁sign ific",
+ "on ey",
+ "one y",
+ "o ney",
+ "s ource",
+ "m icrosoft",
+ "in der",
+ "ind er",
+ "inde r",
+ "i nder",
+ "▁qu ick",
+ "▁qui ck",
+ "▁ quick",
+ "▁w onder",
+ "▁won der",
+ "▁wo nder",
+ "Inst ance",
+ "el les",
+ "ell es",
+ "elle s",
+ "e lles",
+ "è me",
+ "▁comp any",
+ "▁compan y",
+ "▁ company",
+ "u ß",
+ ". }",
+ "▁separ ate",
+ "U M",
+ "HER E",
+ "HE RE",
+ "H ERE",
+ "▁writ ing",
+ "▁wr iting",
+ "▁ writing",
+ "it ution",
+ "itu tion",
+ "itut ion",
+ "▁G esch",
+ "▁Ge sch",
+ "▁Ges ch",
+ "м я",
+ "▁J ames",
+ "▁Ja mes",
+ "▁Jam es",
+ "▁ James",
+ "▁D E",
+ "▁ DE",
+ "▁S pe",
+ "▁Sp e",
+ "▁ Spe",
+ "pro cess",
+ "proc ess",
+ "St r",
+ "S tr",
+ "▁s ym",
+ "▁sy m",
+ "▁ sym",
+ "▁a o",
+ "▁ ao",
+ "▁w y",
+ "▁ wy",
+ "▁any one",
+ "▁U p",
+ "▁ Up",
+ "use um",
+ "ar on",
+ "aro n",
+ "a ron",
+ "▁def inition",
+ "▁defin ition",
+ "▁definit ion",
+ "▁ definition",
+ "▁` $",
+ "▁f av",
+ "▁fa v",
+ "rib utes",
+ "ribute s",
+ "ribu tes",
+ "▁R é",
+ "ograf ia",
+ "ografi a",
+ "el ement",
+ "ele ment",
+ "elem ent",
+ "e lement",
+ "ca p",
+ "c ap",
+ "pa t",
+ "p at",
+ "▁B ra",
+ "▁Br a",
+ "▁ Bra",
+ ") (",
+ "▁acc ording",
+ "▁accord ing",
+ "г е",
+ "▁p ie",
+ "▁pi e",
+ "▁ pie",
+ "el i",
+ "e li",
+ "} \"",
+ "▁act iv",
+ "▁ activ",
+ "▁s top",
+ "▁st op",
+ "▁sto p",
+ "▁ stop",
+ "pat ch",
+ "p atch",
+ "т і",
+ "▁J ose",
+ "▁Jo se",
+ "▁Jos e",
+ "▁ Jose",
+ "En d",
+ "E nd",
+ "▁p rze",
+ "▁pr ze",
+ "▁prz e",
+ "▁a ge",
+ "▁ag e",
+ "▁ age",
+ "it ory",
+ "ito ry",
+ "itor y",
+ "▁P HP",
+ "▁ PHP",
+ "ag ement",
+ "age ment",
+ "agem ent",
+ "▁` .",
+ "▁ `.",
+ "▁pre tty",
+ "▁pret ty",
+ "▁re comm",
+ "▁rec omm",
+ "▁recom m",
+ "▁s ud",
+ "▁su d",
+ "▁re qu",
+ "▁r equ",
+ "▁req u",
+ "▁об ла",
+ "at ives",
+ "ative s",
+ "ativ es",
+ "ati ves",
+ "▁H igh",
+ "▁Hi gh",
+ "▁ High",
+ "á z",
+ "ou l",
+ "o ul",
+ "re st",
+ "res t",
+ "r est",
+ "▁T er",
+ "▁Te r",
+ "un der",
+ "und er",
+ "unde r",
+ "u nder",
+ "th ern",
+ "ther n",
+ "the rn",
+ "cent er",
+ "cen ter",
+ "cente r",
+ "c enter",
+ "▁u r",
+ "▁ ur",
+ "la t",
+ "l at",
+ "▁inter face",
+ "▁ interface",
+ "▁и н",
+ "▁ ин",
+ "▁wh ose",
+ "▁who se",
+ "ic as",
+ "ica s",
+ "i cas",
+ "am en",
+ "ame n",
+ "a men",
+ "Fil ter",
+ "▁st ation",
+ "▁stat ion",
+ "▁sta tion",
+ "▁stati on",
+ "▁ station",
+ "Pa ge",
+ "P age",
+ "▁a rm",
+ "▁ar m",
+ "▁ arm",
+ "▁e yes",
+ "▁eye s",
+ "▁ра й",
+ "▁s eu",
+ "▁se u",
+ "ol i",
+ "o li",
+ "wi n",
+ "w in",
+ "li k",
+ "l ik",
+ "ge x",
+ "g ex",
+ "ch an",
+ "cha n",
+ "c han",
+ "id ence",
+ "iden ce",
+ "ar gs",
+ "arg s",
+ "ak ing",
+ "aki ng",
+ "a king",
+ "▁Go ogle",
+ "▁ Google",
+ "▁St ud",
+ "▁Stu d",
+ "▁h o",
+ "▁ ho",
+ "то ры",
+ "тор ы",
+ "S u",
+ "▁autom at",
+ "▁auto mat",
+ "êm e",
+ "ê me",
+ "▁c y",
+ "▁ cy",
+ "lo r",
+ "l or",
+ "▁st ack",
+ "▁sta ck",
+ "▁ stack",
+ "▁SE LECT",
+ "▁ SELECT",
+ "A F",
+ "▁> >",
+ "▁ >>",
+ "▁com pet",
+ "▁comp et",
+ "▁p air",
+ "▁pa ir",
+ "▁ pair",
+ "▁ing lés",
+ "Res ponse",
+ "▁F ig",
+ "▁ Fig",
+ "gr ad",
+ "gra d",
+ "g rad",
+ "▁document ation",
+ "▁ documentation",
+ "▁c ant",
+ "▁can t",
+ "▁ca nt",
+ "▁app reci",
+ "å n",
+ "▁le arn",
+ "▁lear n",
+ "▁ learn",
+ "▁in dep",
+ "▁ind ep",
+ "▁inde p",
+ "▁p al",
+ "▁pa l",
+ "▁ pal",
+ "pack age",
+ "p ackage",
+ "ar es",
+ "are s",
+ "a res",
+ "▁Ber lin",
+ "▁Berl in",
+ "б ли",
+ "re ich",
+ "rei ch",
+ "ё н",
+ "▁s atisf",
+ "▁sat isf",
+ "▁reg ion",
+ "▁ region",
+ "▁fri end",
+ "▁ friend",
+ "▁Ge orge",
+ "▁Georg e",
+ "▁В о",
+ "▁ Во",
+ "▁\" \"",
+ "▁ \"\"",
+ "▁des de",
+ "Fact ory",
+ "F actory",
+ "▁Count y",
+ "▁Coun ty",
+ "ou v",
+ "o uv",
+ "▁ ‘",
+ "▁inst alled",
+ "▁install ed",
+ "▁instal led",
+ "▁ installed",
+ "▁w anted",
+ "▁want ed",
+ "▁P ython",
+ "▁ Python",
+ "▁inter pre",
+ "▁in cluded",
+ "▁includ ed",
+ "▁include d",
+ "▁inclu ded",
+ "▁( (",
+ "▁ ((",
+ "▁al tern",
+ "▁alt ern",
+ "▁alter n",
+ "▁alte rn",
+ "▁ altern",
+ "is to",
+ "ist o",
+ "i sto",
+ "g n",
+ "▁b order",
+ "▁bor der",
+ "▁bord er",
+ "▁ border",
+ "pd f",
+ "p df",
+ "▁d up",
+ "▁du p",
+ "▁ dup",
+ "▁down load",
+ "▁ download",
+ "ju st",
+ "jus t",
+ "j ust",
+ "▁m embers",
+ "▁mem bers",
+ "▁memb ers",
+ "▁member s",
+ "▁ members",
+ "ch ild",
+ "chi ld",
+ "▁p ay",
+ "▁pa y",
+ "▁ pay",
+ "▁c er",
+ "▁ce r",
+ "▁ cer",
+ "▁lo oked",
+ "▁look ed",
+ "▁correct ly",
+ "au th",
+ "aut h",
+ "a uth",
+ "▁с тан",
+ "▁ст ан",
+ "▁ста н",
+ "▁ стан",
+ "▁e sp",
+ "▁es p",
+ "▁ esp",
+ "▁d esc",
+ "▁de sc",
+ "▁des c",
+ "▁ desc",
+ "eb en",
+ "e ben",
+ "▁qu estions",
+ "▁question s",
+ "▁quest ions",
+ "▁questi ons",
+ "▁ questions",
+ "ma l",
+ "m al",
+ "▁ab gerufen",
+ "▁ abgerufen",
+ "▁B and",
+ "▁Ba nd",
+ "▁Ban d",
+ "▁[ ]",
+ "▁ []",
+ "Bas e",
+ "B ase",
+ "▁r is",
+ "▁ri s",
+ "▁ ris",
+ "▁f ort",
+ "▁for t",
+ "▁fo rt",
+ "▁ fort",
+ "▁I d",
+ "▁ Id",
+ "▁var ious",
+ "▁vari ous",
+ "▁Le ague",
+ "▁H and",
+ "▁Ha nd",
+ "▁Han d",
+ "▁ Hand",
+ "▁T ype",
+ "▁Ty pe",
+ "▁Typ e",
+ "▁ Type",
+ "ir l",
+ "i rl",
+ "▁F e",
+ "▁ Fe",
+ "i én",
+ "it ter",
+ "itt er",
+ "itte r",
+ "▁f ast",
+ "▁fa st",
+ "▁fas t",
+ "▁ fast",
+ "st a",
+ "s ta",
+ "▁ex cept",
+ "▁ except",
+ "ic z",
+ "i cz",
+ "▁F rench",
+ "▁en vironment",
+ "▁environ ment",
+ "▁ environment",
+ "▁con se",
+ "▁cons e",
+ "у р",
+ "о го",
+ "▁necess ary",
+ "tar get",
+ "t arget",
+ "▁re ading",
+ "▁read ing",
+ "▁ reading",
+ "ho me",
+ "hom e",
+ "h ome",
+ "ze ich",
+ "▁e qual",
+ "▁equ al",
+ "▁eq ual",
+ "▁ equal",
+ "▁pi ù",
+ "▁p rem",
+ "▁pr em",
+ "▁pre m",
+ "▁diff icult",
+ "▁u nit",
+ "▁un it",
+ "▁ unit",
+ "▁re place",
+ "▁rep lace",
+ "▁repla ce",
+ "▁ replace",
+ "▁he art",
+ "▁hear t",
+ "▁ heart",
+ "▁t alk",
+ "▁tal k",
+ "A M",
+ "▁R E",
+ "▁ RE",
+ "▁P erson",
+ "▁Per son",
+ "▁Pers on",
+ "▁ Person",
+ "end ency",
+ "enden cy",
+ "▁i mm",
+ "▁im m",
+ "▁ imm",
+ "▁h uman",
+ "▁hum an",
+ "▁hu man",
+ "▁ human",
+ "d n",
+ "▁K ir",
+ "▁Ki r",
+ "▁A ut",
+ "▁Au t",
+ "▁ Aut",
+ "kn own",
+ "know n",
+ "k nown",
+ "▁fr equ",
+ "▁fre qu",
+ "sys tem",
+ "s ystem",
+ "ла в",
+ "▁S z",
+ "▁G al",
+ "▁Ga l",
+ "но е",
+ "sel ves",
+ "right arrow",
+ "r ightarrow",
+ "▁С а",
+ "▁ Са",
+ "=\" @",
+ "▁build ing",
+ "▁ building",
+ "im port",
+ "imp ort",
+ "▁f am",
+ "▁fa m",
+ "▁de lete",
+ "▁del ete",
+ "▁delet e",
+ "▁ delete",
+ "air e",
+ "ai re",
+ "a ire",
+ "ma ry",
+ "mar y",
+ "m ary",
+ "▁f und",
+ "▁fun d",
+ "▁fu nd",
+ "▁ fund",
+ "▁part icip",
+ "▁partic ip",
+ "▁parti cip",
+ "▁partici p",
+ "▁s yn",
+ "▁sy n",
+ "▁ syn",
+ "si n",
+ "s in",
+ "▁l ower",
+ "▁lo wer",
+ "▁low er",
+ "▁ lower",
+ "▁z ero",
+ "▁ze ro",
+ "▁ zero",
+ "▁s ec",
+ "▁se c",
+ "▁ sec",
+ "▁f ra",
+ "▁fr a",
+ "▁ fra",
+ "Po int",
+ "P oint",
+ "▁fa iled",
+ "▁fail ed",
+ "▁ failed",
+ "ien to",
+ "ient o",
+ "i ento",
+ "cu p",
+ "c up",
+ "▁s low",
+ "▁sl ow",
+ "▁slo w",
+ "▁ slow",
+ "▁n ation",
+ "▁na tion",
+ "▁nat ion",
+ "äh r",
+ "ä hr",
+ "▁in fo",
+ "▁inf o",
+ "▁ info",
+ "▁P ublic",
+ "▁Pub lic",
+ "▁Pu blic",
+ "▁ Public",
+ "▁de cla",
+ "▁dec la",
+ "▁decl a",
+ "▁Т а",
+ "▁s old",
+ "▁so ld",
+ "▁sol d",
+ "▁R em",
+ "▁Re m",
+ "▁ Rem",
+ "▁Ph il",
+ "ст ра",
+ "стр а",
+ "с тра",
+ "▁me hr",
+ "▁W ork",
+ "▁Wor k",
+ "▁ Work",
+ "▁N ord",
+ "▁No rd",
+ "▁Nor d",
+ "▁f ait",
+ "▁fa it",
+ "▁g ew",
+ "▁ge w",
+ "▁ gew",
+ "print ln",
+ "ob ile",
+ "obil e",
+ "obi le",
+ "▁K on",
+ "▁Ko n",
+ "▁ass ume",
+ "▁assum e",
+ "land s",
+ "lan ds",
+ "l ands",
+ "▁a mount",
+ "▁am ount",
+ "▁ amount",
+ "▁P ress",
+ "▁Pr ess",
+ "▁Pres s",
+ "▁Pre ss",
+ "▁ Press",
+ "ý ch",
+ "▁ma xim",
+ "▁max im",
+ "▁ maxim",
+ "▁Ch ampion",
+ "▁Champ ion",
+ "li brary",
+ "l ibrary",
+ "a ñ",
+ "▁W al",
+ "▁Wa l",
+ "Com m",
+ "Co mm",
+ "C omm",
+ "] ]",
+ "▁z w",
+ "▁ zw",
+ "▁so cial",
+ "▁soci al",
+ "▁soc ial",
+ "▁ social",
+ "L I",
+ "▁Un ter",
+ "vo r",
+ "v or",
+ "Del ta",
+ "D elta",
+ "em ail",
+ "ema il",
+ "e mail",
+ "ra int",
+ "rain t",
+ "rai nt",
+ "r aint",
+ "on i",
+ "o ni",
+ "▁a lt",
+ "▁al t",
+ "▁ alt",
+ "▁n é",
+ "▁ né",
+ "ци я",
+ "ograph y",
+ "▁mention ed",
+ "▁ment ioned",
+ "▁< =",
+ "▁ <=",
+ "▁c ette",
+ "▁ce tte",
+ "▁cet te",
+ "▁current ly",
+ "▁curr ently",
+ "va re",
+ "var e",
+ "v are",
+ "iz ing",
+ "izi ng",
+ "izin g",
+ "i zing",
+ "▁D ef",
+ "▁De f",
+ "▁ Def",
+ "ic ol",
+ "ico l",
+ "i col",
+ "ün d",
+ "ü nd",
+ "▁config uration",
+ "▁configur ation",
+ "▁ configuration",
+ "est ig",
+ "esti g",
+ "II I",
+ "I II",
+ "la m",
+ "l am",
+ "i ère",
+ "▁E ar",
+ "▁t u",
+ "▁ tu",
+ "En t",
+ "E nt",
+ "▁U sing",
+ "▁Us ing",
+ "▁ Using",
+ "▁ко м",
+ "▁к ом",
+ "▁ ком",
+ "ci e",
+ "c ie",
+ "▁pro of",
+ "▁ proof",
+ "▁in vol",
+ "▁inv ol",
+ "▁H istory",
+ "▁Histor y",
+ "▁Hi story",
+ "▁Hist ory",
+ "▁ History",
+ "> <",
+ "▁A ND",
+ "▁AN D",
+ "▁ AND",
+ "av y",
+ "a vy",
+ "▁rel ations",
+ "▁relation s",
+ "$ {",
+ "▁com es",
+ "▁co mes",
+ "▁come s",
+ "▁ comes",
+ "▁d irection",
+ "▁direct ion",
+ "▁dire ction",
+ "▁dir ection",
+ "▁ direction",
+ "▁J une",
+ "▁Ju ne",
+ "▁Jun e",
+ "▁W ay",
+ "▁Wa y",
+ "Com ponent",
+ "ec h",
+ "e ch",
+ "▁P eter",
+ "▁Pe ter",
+ "▁Pet er",
+ "▁ Peter",
+ "s g",
+ "▁s tra",
+ "▁st ra",
+ "▁str a",
+ "▁ stra",
+ "uc t",
+ "u ct",
+ "▁im plementation",
+ "▁implement ation",
+ "▁ implementation",
+ "att le",
+ "▁c z",
+ "▁ cz",
+ "pl ot",
+ "p lot",
+ "▁play ed",
+ "▁pla yed",
+ "\"> ",
+ "\">< /",
+ "\" >",
+ "▁f ive",
+ "▁fi ve",
+ "▁ five",
+ "▁c oll",
+ "▁col l",
+ "▁co ll",
+ "▁ coll",
+ "▁Char les",
+ "Tr a",
+ "T ra",
+ "▁s uo",
+ "▁su o",
+ "file s",
+ "fil es",
+ "fi les",
+ "f iles",
+ "en tes",
+ "ent es",
+ "ente s",
+ "res ponse",
+ "respons e",
+ "H ow",
+ "▁S oci",
+ "▁So ci",
+ "▁Soc i",
+ "▁i gn",
+ "▁ig n",
+ "▁ ign",
+ "▁l ed",
+ "▁le d",
+ "▁ led",
+ "▁G erman",
+ "▁Ger man",
+ "▁Germ an",
+ "ud o",
+ "u do",
+ "▁D u",
+ "▁t im",
+ "▁ti m",
+ "▁ tim",
+ "ount er",
+ "oun ter",
+ "o unter",
+ "▁att ack",
+ "ur i",
+ "u ri",
+ "▁а р",
+ "▁ ар",
+ "es se",
+ "ess e",
+ "iv il",
+ "ivi l",
+ "i vil",
+ "▁J u",
+ "▁v el",
+ "▁ve l",
+ "▁ vel",
+ "mat rix",
+ "▁M at",
+ "▁Ma t",
+ "▁ Mat",
+ "gi o",
+ "g io",
+ "▁Ze it",
+ "VE R",
+ "V ER",
+ "ha s",
+ "h as",
+ "Con nection",
+ "Connect ion",
+ "Conne ction",
+ "▁i hr",
+ "▁ih r",
+ "▁att ribute",
+ "▁ attribute",
+ "▁dis cuss",
+ "▁disc uss",
+ "▁do main",
+ "▁dom ain",
+ "▁ domain",
+ "bin d",
+ "bi nd",
+ "b ind",
+ "▁S ec",
+ "▁Se c",
+ "▁ Sec",
+ "ri k",
+ "r ik",
+ "cl ose",
+ "clos e",
+ "clo se",
+ "c lose",
+ "gi n",
+ "g in",
+ "▁l ove",
+ "▁lo ve",
+ "▁lov e",
+ "an to",
+ "ant o",
+ "ge nt",
+ "gen t",
+ "g ent",
+ "ab a",
+ "a ba",
+ "jan go",
+ "j ango",
+ "b i",
+ "▁ob ser",
+ "▁obs er",
+ "it ting",
+ "itt ing",
+ "▁р у",
+ "▁ ру",
+ "} =",
+ "ag en",
+ "age n",
+ "a gen",
+ "B C",
+ "so me",
+ "som e",
+ "s ome",
+ "▁B u",
+ "▁ Bu",
+ "▁s oci",
+ "▁so ci",
+ "▁soc i",
+ "▁ soci",
+ "▁ind ividual",
+ "▁individ ual",
+ "▁de al",
+ "▁out side",
+ "ri o",
+ "r io",
+ "Ex ec",
+ "an did",
+ "and id",
+ "▁bus iness",
+ "▁t empor",
+ "▁tem por",
+ "▁temp or",
+ "▁tempo r",
+ "▁T ur",
+ "▁Tu r",
+ "▁( !",
+ "▁ (!",
+ "ri ter",
+ "rit er",
+ "rite r",
+ "r iter",
+ "▁go ogle",
+ "▁goog le",
+ "▁ google",
+ "] :",
+ "it te",
+ "itt e",
+ "i tte",
+ "x i",
+ "▁П а",
+ "ho l",
+ "h ol",
+ "н ь",
+ "ri ng",
+ "rin g",
+ "r ing",
+ "▁s ul",
+ "▁su l",
+ "но сти",
+ "ност и",
+ "нос ти",
+ "_ .",
+ "ga r",
+ "g ar",
+ "T ask",
+ "▁C heck",
+ "▁Che ck",
+ "▁ Check",
+ "▁mod ern",
+ "▁mo dern",
+ "▁mode rn",
+ "▁moder n",
+ "▁w in",
+ "▁ win",
+ "us ter",
+ "ust er",
+ "u ster",
+ "ha n",
+ "h an",
+ "form ation",
+ "format ion",
+ "vo id",
+ "v oid",
+ "▁ф и",
+ "▁ фи",
+ "▁use ful",
+ "▁Eng land",
+ "lo s",
+ "l os",
+ "et ime",
+ "eti me",
+ "e time",
+ "eu r",
+ "e ur",
+ "▁un ique",
+ "▁uniqu e",
+ "▁ unique",
+ "▁ка к",
+ "yi ng",
+ "y ing",
+ "ob j",
+ "ui d",
+ "u id",
+ "▁w indows",
+ "▁window s",
+ "▁wind ows",
+ "▁ windows",
+ "▁d istance",
+ "▁dist ance",
+ "▁ distance",
+ "▁nom bre",
+ "▁nombr e",
+ "і я",
+ "oc us",
+ "o cus",
+ "ah n",
+ "a hn",
+ "ier te",
+ "iert e",
+ "i erte",
+ "▁d ar",
+ "▁da r",
+ "▁ dar",
+ "S I",
+ "lo ng",
+ "lon g",
+ "l ong",
+ "as ta",
+ "ast a",
+ "a sta",
+ "iv en",
+ "ive n",
+ "i ven",
+ "▁t old",
+ "▁to ld",
+ "▁G ru",
+ "▁Gr u",
+ "fo o",
+ "f oo",
+ "▁c alling",
+ "▁cal ling",
+ "▁call ing",
+ "iem bre",
+ "i embre",
+ "▁f uture",
+ "▁fut ure",
+ "pr ès",
+ "p rès",
+ "le ep",
+ "lee p",
+ "avig ation",
+ "PO ST",
+ "POS T",
+ "P OST",
+ "▁des cribed",
+ "▁descri bed",
+ "▁describe d",
+ "▁n och",
+ "▁no ch",
+ "un it",
+ "uni t",
+ "u nit",
+ "al len",
+ "all en",
+ "alle n",
+ "▁b ranch",
+ "▁br anch",
+ "▁bran ch",
+ "▁ branch",
+ "f a",
+ "▁f ill",
+ "▁fil l",
+ "▁fi ll",
+ "▁ fill",
+ "▁ob j",
+ "▁ obj",
+ "▁t ree",
+ "▁tr ee",
+ "▁tre e",
+ "▁ tree",
+ "▁wur den",
+ "▁wurde n",
+ "▁L iter",
+ "▁Li ter",
+ "▁Lit er",
+ "▁ Liter",
+ "ro t",
+ "r ot",
+ "sp lit",
+ "spl it",
+ "s plit",
+ "em ein",
+ "eme in",
+ "mod ule",
+ "C A",
+ "▁oper ator",
+ "▁opera tor",
+ "▁ operator",
+ "▁w rote",
+ "▁wr ote",
+ "▁J ack",
+ "▁Jac k",
+ "▁Ja ck",
+ "▁ Jack",
+ "olog ie",
+ "olo gie",
+ "▁A nt",
+ "▁An t",
+ "▁ Ant",
+ "те р",
+ "т ер",
+ "st ream",
+ "stre am",
+ "▁Q ue",
+ "▁Qu e",
+ "▁ Que",
+ "eps ilon",
+ "e psilon",
+ "no n",
+ "n on",
+ "st ein",
+ "ste in",
+ "▁s impl",
+ "▁sim pl",
+ "▁simp l",
+ "pu b",
+ "p ub",
+ "▁J uly",
+ "▁Jul y",
+ "▁Ju ly",
+ "▁n ature",
+ "▁natur e",
+ "▁nat ure",
+ "▁D atabase",
+ "▁Data base",
+ "▁Dat abase",
+ "▁ Database",
+ "ó l",
+ "ни м",
+ "н им",
+ "▁V I",
+ "▁ VI",
+ "êt re",
+ "ê tre",
+ "il es",
+ "ile s",
+ "i les",
+ "▁w el",
+ "▁we l",
+ "▁ wel",
+ "') ,",
+ "' ),",
+ "▁m ut",
+ "▁mu t",
+ "▁ mut",
+ "lo cation",
+ "loc ation",
+ "l ocation",
+ "▁there fore",
+ "el li",
+ "ell i",
+ "▁ І",
+ "n é",
+ "▁а в",
+ "led ge",
+ "l edge",
+ "▁con ver",
+ "▁conv er",
+ "í m",
+ "▁X V",
+ "▁ XV",
+ "vi der",
+ "vid er",
+ "v ider",
+ "▁Janu ary",
+ "▁Januar y",
+ "▁us ually",
+ "▁usual ly",
+ "▁re leased",
+ "▁release d",
+ "▁M i",
+ "He ad",
+ "H ead",
+ "il ler",
+ "ill er",
+ "ille r",
+ "▁j an",
+ "▁ja n",
+ "▁ jan",
+ "▁l etter",
+ "▁let ter",
+ "▁lett er",
+ "▁ letter",
+ "pr odu",
+ "pro du",
+ "prod u",
+ "p rodu",
+ "r d",
+ "▁C am",
+ "▁Ca m",
+ "▁ Cam",
+ ", '",
+ "▁ Ц",
+ "▁p ush",
+ "▁pu sh",
+ "▁ push",
+ "up date",
+ "▁may be",
+ "▁ maybe",
+ "H ttp",
+ "@ \"",
+ "ме р",
+ "м ер",
+ "ser vice",
+ "serv ice",
+ "par se",
+ "p arse",
+ "▁d ass",
+ "▁da ss",
+ "▁das s",
+ "ê n",
+ ") \"",
+ "mo re",
+ "mor e",
+ "m ore",
+ "/ *",
+ "▁m as",
+ "▁ma s",
+ "▁ mas",
+ "▁like ly",
+ "▁lik ely",
+ "▁ likely",
+ "▁m aterial",
+ "▁mate rial",
+ "▁mater ial",
+ "▁ material",
+ "▁[ [",
+ "▁ [[",
+ "▁long er",
+ "▁lon ger",
+ "ba l",
+ "b al",
+ "▁Arch iv",
+ "ig t",
+ "i gt",
+ "▁e gy",
+ "▁eg y",
+ "▁ egy",
+ "id ge",
+ "ig u",
+ "i gu",
+ "con f",
+ "▁in c",
+ "▁i nc",
+ "▁ inc",
+ "cons ulté",
+ "▁m ai",
+ "▁ma i",
+ "▁ mai",
+ "W ork",
+ "▁г ра",
+ "▁ гра",
+ "▁Oct ober",
+ "▁g lobal",
+ "▁glob al",
+ "▁glo bal",
+ "▁ global",
+ "▁s el",
+ "▁se l",
+ "▁ sel",
+ "▁m unicip",
+ "▁vi ol",
+ "▁vio l",
+ "▁Do es",
+ "▁ Does",
+ "▁\\ [",
+ "ско м",
+ "ск ом",
+ "с ком",
+ "▁com pos",
+ "▁comp os",
+ "▁ compos",
+ "б ря",
+ "в я",
+ "▁resp ons",
+ "▁ respons",
+ "▁consider ed",
+ "▁consid ered",
+ "▁J apan",
+ "▁Jap an",
+ "▁Ja pan",
+ "pe s",
+ "p es",
+ "os to",
+ "ost o",
+ "o sto",
+ "▁mil it",
+ "▁mi lit",
+ "S P",
+ "с ы",
+ "at tr",
+ "att r",
+ "ci l",
+ "c il",
+ "irect ory",
+ "av ing",
+ "avi ng",
+ "a ving",
+ "▁D el",
+ "▁De l",
+ "▁ Del",
+ "▁pr event",
+ "▁pre vent",
+ "▁prev ent",
+ "▁ prevent",
+ "id ade",
+ "ida de",
+ "idad e",
+ "i dade",
+ "gi t",
+ "g it",
+ "if orm",
+ "i form",
+ "ou ter",
+ "out er",
+ "oute r",
+ "o uter",
+ "in ct",
+ "inc t",
+ "le vel",
+ "lev el",
+ "at ever",
+ "ate ver",
+ "▁re pe",
+ "▁rep e",
+ "▁e xc",
+ "▁ex c",
+ "да р",
+ "д ар",
+ "St yle",
+ "▁Th omas",
+ "▁Thom as",
+ "el ine",
+ "eli ne",
+ "elin e",
+ "e line",
+ "▁ ж",
+ "un time",
+ "unt ime",
+ "▁l arg",
+ "▁la rg",
+ "▁lar g",
+ "▁ larg",
+ "Tr ue",
+ ". *",
+ "cre en",
+ "cr een",
+ "c reen",
+ "yle s",
+ "yl es",
+ "y les",
+ "▁trans l",
+ "▁tran sl",
+ "▁С о",
+ "ens ions",
+ "ension s",
+ "ä l",
+ "is se",
+ "iss e",
+ "▁v olt",
+ "▁vo lt",
+ "▁vol t",
+ "ci ally",
+ "cial ly",
+ "ni k",
+ "n ik",
+ ". ]",
+ "▁St adt",
+ "▁Sta dt",
+ "▁Stad t",
+ "м ы",
+ "fil l",
+ "fi ll",
+ "f ill",
+ "lo v",
+ "l ov",
+ "▁\" /",
+ "▁ \"/",
+ "S p",
+ "▁A ir",
+ "Cal l",
+ "Ca ll",
+ "C all",
+ "▁n ur",
+ "▁nu r",
+ "Che ck",
+ "C heck",
+ "ien ce",
+ "i ence",
+ "ef ined",
+ "▁в ре",
+ "ł o",
+ "d z",
+ "▁о р",
+ "▁ ор",
+ "ik er",
+ "ike r",
+ "i ker",
+ "ow a",
+ "o wa",
+ "ови ч",
+ "о вич",
+ "r é",
+ "O L",
+ "▁li near",
+ "▁line ar",
+ "▁lin ear",
+ "▁linea r",
+ "▁ linear",
+ "▁ex port",
+ "▁exp ort",
+ "▁ export",
+ "ah r",
+ "a hr",
+ "ic ial",
+ "ici al",
+ "icia l",
+ "i cial",
+ "Re p",
+ "R ep",
+ "▁n atural",
+ "▁natur al",
+ "▁nat ural",
+ "▁ natural",
+ "▁c op",
+ "▁co p",
+ "▁ cop",
+ "▁} )",
+ "▁ })",
+ "ç ões",
+ "z z",
+ "Wh at",
+ "W hat",
+ "▁H ouse",
+ "▁Ho use",
+ "▁Hou se",
+ "Re f",
+ "R ef",
+ "in ger",
+ "ing er",
+ "inge r",
+ "▁t aking",
+ "▁tak ing",
+ "▁ta king",
+ "n ě",
+ "▁Ein z",
+ "▁d am",
+ "▁da m",
+ "▁ dam",
+ "▁iss ues",
+ "▁issue s",
+ "▁issu es",
+ "▁ issues",
+ "Bu ilder",
+ "Build er",
+ "ed it",
+ "edi t",
+ "e dit",
+ "▁p rz",
+ "▁pr z",
+ "pass word",
+ "Ge ner",
+ "Gen er",
+ "G ener",
+ "ri m",
+ "r im",
+ "▁p arts",
+ "▁par ts",
+ "▁part s",
+ "▁ parts",
+ "-- -",
+ "- --",
+ "ig inal",
+ "igin al",
+ "igi nal",
+ "▁S ci",
+ "▁Sc i",
+ "▁m other",
+ "▁mo ther",
+ "▁mot her",
+ "▁moth er",
+ "re a",
+ "r ea",
+ "▁cont ainer",
+ "▁contain er",
+ "▁ container",
+ "д я",
+ "▁I P",
+ "▁ IP",
+ "▁n one",
+ "▁no ne",
+ "▁non e",
+ "▁ none",
+ "▁follow ed",
+ "▁p le",
+ "▁pl e",
+ "▁ ple",
+ "▁me asure",
+ "▁meas ure",
+ "▁ measure",
+ "▁t out",
+ "▁to ut",
+ "▁tou t",
+ "▁ tout",
+ "Ex t",
+ "E xt",
+ "▁T V",
+ "▁ TV",
+ "▁ex plain",
+ "▁exp lain",
+ "▁expla in",
+ "▁expl ain",
+ "▁p aper",
+ "▁pa per",
+ "▁pap er",
+ "▁ paper",
+ "ст і",
+ "с ті",
+ "w s",
+ "W ik",
+ "▁m m",
+ "▁ mm",
+ "▁N orm",
+ "▁No rm",
+ "▁Nor m",
+ "▁Ser ver",
+ "▁Serv er",
+ "▁ Server",
+ "fo nt",
+ "fon t",
+ "f ont",
+ "ec ause",
+ "eca use",
+ "T R",
+ "▁б и",
+ "▁ би",
+ "L a",
+ "▁e ns",
+ "▁en s",
+ "▁ ens",
+ "▁re tr",
+ "▁r etr",
+ "▁ret r",
+ "▁S il",
+ "▁Si l",
+ "▁ Sil",
+ "▁se quence",
+ "▁sequ ence",
+ "▁ sequence",
+ "ar c",
+ "a rc",
+ "I V",
+ "z á",
+ "▁And roid",
+ "▁ Android",
+ "▁S uper",
+ "▁Su per",
+ "▁Sup er",
+ "▁ Super",
+ "▁r oz",
+ "▁ro z",
+ "▁ roz",
+ "ov ie",
+ "ovi e",
+ "o vie",
+ "O m",
+ "▁W ell",
+ "▁We ll",
+ "▁Wel l",
+ "▁ Well",
+ "ma ke",
+ "m ake",
+ "or ph",
+ "orp h",
+ "▁J er",
+ "▁Je r",
+ "▁R os",
+ "▁Ro s",
+ "re ference",
+ "refer ence",
+ "▁fe atures",
+ "▁feature s",
+ "▁ features",
+ "▁G er",
+ "▁Ge r",
+ "▁L eg",
+ "▁Le g",
+ "▁ Leg",
+ "▁l ate",
+ "▁la te",
+ "▁lat e",
+ "▁ late",
+ "▁add itional",
+ "▁addition al",
+ "▁f lo",
+ "▁fl o",
+ "▁е го",
+ "▁ его",
+ "▁alg orithm",
+ "▁ algorithm",
+ "B A",
+ "ka r",
+ "k ar",
+ "I P",
+ "]) ;",
+ "] );",
+ "▁app ears",
+ "▁appear s",
+ "▁appe ars",
+ "y w",
+ "▁t emp",
+ "▁te mp",
+ "▁tem p",
+ "▁ temp",
+ "▁aus si",
+ "met hod",
+ "m ethod",
+ "▁p et",
+ "▁pe t",
+ "▁ pet",
+ "st rap",
+ "str ap",
+ "stra p",
+ "ar ning",
+ "arn ing",
+ "▁c ut",
+ "▁cu t",
+ "▁ cut",
+ "▁S a",
+ "▁ Sa",
+ "▁t rack",
+ "▁tr ack",
+ "▁tra ck",
+ "▁trac k",
+ "▁ track",
+ "▁emp loy",
+ "▁in de",
+ "▁i nde",
+ "▁ind e",
+ "▁ inde",
+ "ra v",
+ "r av",
+ "▁gener ate",
+ "▁gene rate",
+ "▁ generate",
+ "be s",
+ "b es",
+ "ar ts",
+ "art s",
+ "St atus",
+ "Stat us",
+ "ug e",
+ "u ge",
+ "al is",
+ "ali s",
+ "a lis",
+ "▁over ride",
+ "▁overrid e",
+ "▁ override",
+ "▁f i",
+ "▁ fi",
+ "▁l ost",
+ "▁lo st",
+ "▁los t",
+ "▁ lost",
+ "ot ed",
+ "ote d",
+ "o ted",
+ "▁r oom",
+ "▁ro om",
+ "▁ room",
+ "▁c alls",
+ "▁cal ls",
+ "▁call s",
+ "▁cons ist",
+ "ре н",
+ "р ен",
+ "▁vill age",
+ "▁vil lage",
+ "▁villa ge",
+ "dis t",
+ "di st",
+ "d ist",
+ "▁te chn",
+ "▁tec hn",
+ "▁ techn",
+ "en za",
+ "enz a",
+ "▁ро з",
+ "▁р оз",
+ "▁ роз",
+ "▁C atalog",
+ "▁Cat alog",
+ "▁Catal og",
+ "▁be com",
+ "▁bec om",
+ "ro ws",
+ "row s",
+ "r ows",
+ "▁N el",
+ "▁Ne l",
+ "com ple",
+ "comp le",
+ "▁pr emi",
+ "▁pre mi",
+ "▁prem i",
+ "▁r ot",
+ "▁ro t",
+ "▁ rot",
+ "▁Web links",
+ "▁foot ball",
+ "▁ football",
+ "▁com par",
+ "▁comp ar",
+ "▁l ive",
+ "▁li ve",
+ "▁liv e",
+ "▁ live",
+ "ки х",
+ "к их",
+ "▁equ ival",
+ "ca pe",
+ "cap e",
+ "c ape",
+ "▁G en",
+ "▁Ge n",
+ "▁ Gen",
+ "nd er",
+ "nde r",
+ "n der",
+ "▁V is",
+ "▁Vi s",
+ "▁ Vis",
+ "▁be hind",
+ "▁beh ind",
+ "ge rs",
+ "ger s",
+ "g ers",
+ "vo ke",
+ "v oke",
+ "▁m edia",
+ "▁me dia",
+ "▁med ia",
+ "▁medi a",
+ "▁ media",
+ "E X",
+ "th at",
+ "tha t",
+ "t hat",
+ "▁s ono",
+ "▁so no",
+ "▁son o",
+ "▁ sono",
+ "▁my sql",
+ "▁mysq l",
+ "▁ mysql",
+ "e v",
+ "▁r ule",
+ "▁ru le",
+ "▁ rule",
+ "до в",
+ "д ов",
+ "ac c",
+ "a cc",
+ "▁W HERE",
+ "▁WH ERE",
+ "▁ WHERE",
+ "ен е",
+ "е не",
+ "Gr id",
+ "G rid",
+ "▁j ul",
+ "▁ju l",
+ "▁m ort",
+ "▁mo rt",
+ "▁mor t",
+ "▁ mort",
+ "▁gener ated",
+ "▁generate d",
+ "▁ generated",
+ "en cia",
+ "enc ia",
+ "enci a",
+ "ac ter",
+ "act er",
+ "cl ud",
+ "▁s cen",
+ "▁sc en",
+ "▁cl osed",
+ "▁close d",
+ "▁clos ed",
+ "▁clo sed",
+ "▁ closed",
+ "▁Mich ael",
+ "▁ Michael",
+ "▁m ount",
+ "▁mo unt",
+ "▁mou nt",
+ "▁ mount",
+ ")$ ,",
+ ") $,",
+ "▁d rop",
+ "▁dr op",
+ "▁dro p",
+ "▁ drop",
+ "▁com bin",
+ "▁comb in",
+ "to col",
+ "▁go es",
+ "▁g eb",
+ "▁ge b",
+ "▁ geb",
+ "M D",
+ "▁An ton",
+ "▁Ant on",
+ "▁Anto n",
+ "▁$ (\"",
+ "▁$( \"",
+ "Te m",
+ "T em",
+ "▁c a",
+ "▁ ca",
+ "▁in stru",
+ "▁inst ru",
+ "ed s",
+ "e ds",
+ "▁t ool",
+ "▁to ol",
+ "▁too l",
+ "▁ tool",
+ "my s",
+ "m ys",
+ "▁r oute",
+ "▁ro ute",
+ "▁rout e",
+ "▁rou te",
+ "▁ route",
+ "\") )",
+ "\" ))",
+ "пр е",
+ "п ре",
+ "▁f loat",
+ "▁flo at",
+ "▁ float",
+ "▁service s",
+ "▁serv ices",
+ "▁servi ces",
+ "▁ services",
+ "▁ч и",
+ "▁ чи",
+ "к і",
+ "emb ly",
+ "embl y",
+ "ak er",
+ "ake r",
+ "a ker",
+ "▁S on",
+ "▁So n",
+ "▁M ath",
+ "▁Ma th",
+ "▁Mat h",
+ "▁ Math",
+ "as se",
+ "ass e",
+ "ous ly",
+ "lic ations",
+ "lication s",
+ "▁r u",
+ "▁ ru",
+ "▁щ о",
+ "▁ що",
+ "▁Con st",
+ "▁Cons t",
+ "▁ Const",
+ "▁im medi",
+ "▁imm edi",
+ "F O",
+ "or o",
+ "o ro",
+ "▁p roduction",
+ "▁produ ction",
+ "▁product ion",
+ "▁ production",
+ "re i",
+ "r ei",
+ "▁j query",
+ "▁ jquery",
+ "an nt",
+ "ann t",
+ "▁Wh ile",
+ "▁s n",
+ "▁ sn",
+ "▁го ди",
+ "▁год и",
+ "Form at",
+ "For mat",
+ "▁s tar",
+ "▁st ar",
+ "▁sta r",
+ "▁ star",
+ "▁S en",
+ "▁Se n",
+ "▁k o",
+ "▁ ko",
+ "NA ME",
+ "N AME",
+ "▁p rés",
+ "▁pr és",
+ "▁pré s",
+ "▁ prés",
+ "ch a",
+ "c ha",
+ "wh at",
+ "w hat",
+ "om in",
+ "omi n",
+ "o min",
+ "end ant",
+ "enda nt",
+ "h y",
+ "▁ob serv",
+ "▁obser v",
+ "▁obs erv",
+ "▁ observ",
+ "▁p refer",
+ "▁pre fer",
+ "у н",
+ "▁con structor",
+ "▁construct or",
+ "▁constru ctor",
+ "▁ constructor",
+ "b s",
+ "▁m ac",
+ "▁ma c",
+ "▁ mac",
+ "▁B re",
+ "▁Br e",
+ "▁ Bre",
+ "▁Inst it",
+ "▁Ins tit",
+ "▁st ory",
+ "▁stor y",
+ "▁sto ry",
+ "▁ story",
+ "▁s ymbol",
+ "▁sym bol",
+ "▁ symbol",
+ "el es",
+ "ele s",
+ "e les",
+ "ß e",
+ "as ing",
+ "asi ng",
+ "a sing",
+ "▁w est",
+ "▁we st",
+ "▁ west",
+ "ia ns",
+ "ian s",
+ "i ans",
+ "▁m aster",
+ "▁ma ster",
+ "▁mas ter",
+ "▁ master",
+ "е з",
+ "▁w ays",
+ "▁way s",
+ "▁wa ys",
+ "▁ ways",
+ "b m",
+ "▁p ick",
+ "▁pi ck",
+ "▁pic k",
+ "▁ pick",
+ "▁de part",
+ "▁dep art",
+ "B ack",
+ "en k",
+ "li pse",
+ "lip se",
+ "▁m ath",
+ "▁ma th",
+ "▁mat h",
+ "▁ math",
+ "▁Fran cis",
+ "▁Franc is",
+ "▁Dec ember",
+ "f s",
+ "ru m",
+ "r um",
+ "▁develop ment",
+ "▁ development",
+ "L T",
+ "er nel",
+ "ern el",
+ "erne l",
+ "▁Tr ue",
+ "▁Tru e",
+ "▁ True",
+ "▁M ore",
+ "▁Mor e",
+ "▁Mo re",
+ "▁ More",
+ "ran gle",
+ "r angle",
+ "▁cond itions",
+ "▁condition s",
+ "Option s",
+ "Opt ions",
+ "O ptions",
+ "▁g li",
+ "▁gl i",
+ "▁oper ation",
+ "▁opera tion",
+ "▁ operation",
+ "é k",
+ "ach t",
+ "ac ht",
+ "a cht",
+ "ight s",
+ "igh ts",
+ "▁m ist",
+ "▁mi st",
+ "▁mis t",
+ "an da",
+ "and a",
+ "▁ener gy",
+ "▁energ y",
+ "▁ energy",
+ "▁ж е",
+ "▁ же",
+ "▁w omen",
+ "▁wo men",
+ "ak t",
+ "a kt",
+ "▁C H",
+ "▁ CH",
+ "ge bra",
+ "geb ra",
+ "▁me et",
+ "i u",
+ "we ll",
+ "wel l",
+ "w ell",
+ "ö l",
+ "▁govern ment",
+ "▁J os",
+ "▁Jo s",
+ "ie g",
+ "i eg",
+ "▁s yntax",
+ "▁syn tax",
+ "▁ syntax",
+ "fi x",
+ "f ix",
+ "▁P et",
+ "▁Pe t",
+ "j query",
+ "▁c ard",
+ "▁car d",
+ "▁ca rd",
+ "▁ card",
+ "▁pr incipal",
+ "▁princi pal",
+ "▁princip al",
+ "▁d ru",
+ "▁dr u",
+ "▁ dru",
+ "▁ter rit",
+ "▁п ов",
+ "▁по в",
+ "▁ пов",
+ "▁S S",
+ "▁ SS",
+ "ри и",
+ "tr es",
+ "tre s",
+ "t res",
+ "ag ne",
+ "agn e",
+ "ly ing",
+ "l ying",
+ "til de",
+ "t ilde",
+ "ber n",
+ "be rn",
+ "b ern",
+ "en ter",
+ "ent er",
+ "ente r",
+ "Pe r",
+ "P er",
+ "▁s omet",
+ "▁so met",
+ "▁some t",
+ "▁som et",
+ "Lo ad",
+ "li ce",
+ "lic e",
+ "l ice",
+ "▁s ous",
+ "▁so us",
+ "▁sou s",
+ "▁Lo uis",
+ "▁Lou is",
+ "▁ Louis",
+ "▁log ic",
+ "▁ logic",
+ "▁O ther",
+ "▁Ot her",
+ "▁ Other",
+ "▁c ir",
+ "▁ci r",
+ "▁ cir",
+ "é v",
+ "ch ron",
+ "chr on",
+ "▁h an",
+ "▁ha n",
+ "▁ han",
+ "▁m argin",
+ "▁mar gin",
+ "▁marg in",
+ "▁ margin",
+ "W indow",
+ "ère s",
+ "è res",
+ "ny ch",
+ "n ych",
+ "pu sh",
+ "pus h",
+ "p ush",
+ "bol ds",
+ "bold s",
+ "b olds",
+ "▁l ayout",
+ "▁lay out",
+ "▁ layout",
+ "▁[ `",
+ "Ch ar",
+ "C har",
+ "▁C ap",
+ "▁Ca p",
+ "▁ Cap",
+ "bolds ymbol",
+ "bold symbol",
+ "▁R oman",
+ "▁Ro man",
+ "▁Rom an",
+ "▁Roma n",
+ "▁M ax",
+ "▁Ma x",
+ "▁ Max",
+ ": (",
+ "▁C ode",
+ "▁Co de",
+ "▁ Code",
+ "is ing",
+ "isi ng",
+ "i sing",
+ "▁st ates",
+ "▁stat es",
+ "▁state s",
+ "▁sta tes",
+ "▁ states",
+ "▁ex isting",
+ "▁exist ing",
+ "su pport",
+ "sup port",
+ "supp ort",
+ "▁re search",
+ "▁res earch",
+ "lic ate",
+ "lica te",
+ "l icate",
+ "va ri",
+ "var i",
+ "v ari",
+ "▁b ij",
+ "▁bi j",
+ "▁ bij",
+ "▁a ppe",
+ "▁app e",
+ "▁ap pe",
+ "▁ appe",
+ "▁happ ens",
+ "▁happen s",
+ "\\ \"",
+ "▁conc ern",
+ "▁conce rn",
+ "we st",
+ "w est",
+ "▁sa ying",
+ "▁say ing",
+ "pi d",
+ "p id",
+ "▁rec ogn",
+ "▁ recogn",
+ "▁H et",
+ "▁He t",
+ "Ch ild",
+ "▁c s",
+ "▁ cs",
+ "\\ ,",
+ "▁c lean",
+ "▁cle an",
+ "▁ clean",
+ "le ctions",
+ "lect ions",
+ "lection s",
+ "ac cess",
+ "acc ess",
+ "a ccess",
+ "в у",
+ "пр о",
+ "п ро",
+ "ac ity",
+ "aci ty",
+ "a city",
+ "▁O ff",
+ "▁Of f",
+ "▁ Off",
+ "▁eas ily",
+ "è que",
+ "▁j ako",
+ "▁ja ko",
+ "▁jak o",
+ "▁i z",
+ "▁ iz",
+ "▁H a",
+ "▁ Ha",
+ "▁D et",
+ "▁De t",
+ "▁ Det",
+ "▁for ma",
+ "▁form a",
+ "sch e",
+ "sc he",
+ "s che",
+ "swer s",
+ "sw ers",
+ "s wers",
+ "▁of fer",
+ "▁off er",
+ "qu ired",
+ "quire d",
+ "qui red",
+ "User s",
+ "Use rs",
+ "Us ers",
+ "U sers",
+ "▁su bst",
+ "▁sub st",
+ "▁subs t",
+ "▁ subst",
+ "> (",
+ "▁g round",
+ "▁gr ound",
+ "▁gro und",
+ "▁ ground",
+ "un n",
+ "u nn",
+ "ro d",
+ "r od",
+ "sp e",
+ "s pe",
+ "urs or",
+ "▁le ave",
+ "er k",
+ "▁t al",
+ "▁ta l",
+ "▁ tal",
+ "▁b ottom",
+ "▁bot tom",
+ "▁bott om",
+ "▁ bottom",
+ "I O",
+ "▁pop ular",
+ "▁popula r",
+ "▁popul ar",
+ "ig o",
+ "i go",
+ "▁T ime",
+ "▁Tim e",
+ "▁Ti me",
+ "▁ Time",
+ "val ues",
+ "value s",
+ "valu es",
+ "▁L oc",
+ "▁Lo c",
+ "▁ Loc",
+ "▁C lub",
+ "▁Cl ub",
+ "▁an che",
+ "▁anc he",
+ "▁anch e",
+ "▁ anche",
+ "ia ł",
+ "i ał",
+ "і ї",
+ "Om ega",
+ "▁loc ated",
+ "▁locate d",
+ "▁ located",
+ "U rl",
+ "▁E sp",
+ "▁Es p",
+ "▁ Esp",
+ "л ы",
+ "ц ь",
+ "ul ate",
+ "ula te",
+ "u late",
+ "▁j oin",
+ "▁jo in",
+ "▁ join",
+ "av es",
+ "ave s",
+ "a ves",
+ "ve t",
+ "v et",
+ "li o",
+ "l io",
+ "re move",
+ "rem ove",
+ "▁t oken",
+ "▁to ken",
+ "▁ token",
+ "▁op tim",
+ "▁opt im",
+ "▁ optim",
+ "▁c laim",
+ "▁cla im",
+ "olog ical",
+ "▁c ss",
+ "▁cs s",
+ "▁ css",
+ "▁al though",
+ "▁ although",
+ "▁p riv",
+ "▁pr iv",
+ "▁pri v",
+ "▁ priv",
+ "▁B a",
+ "ü l",
+ "entic ation",
+ "enti cation",
+ "▁v en",
+ "▁ve n",
+ "▁ ven",
+ "Ser ver",
+ "Serv er",
+ "▁C ong",
+ "▁Con g",
+ "▁Co ng",
+ "NE T",
+ "N ET",
+ "CO N",
+ "C ON",
+ "d t",
+ "per ties",
+ "pert ies",
+ "▁e pis",
+ "▁ep is",
+ "wik ipedia",
+ "▁eng ine",
+ "▁ engine",
+ "▁f er",
+ "▁fe r",
+ "▁ fer",
+ "get Element",
+ "▁C la",
+ "▁Cl a",
+ "▁ Cla",
+ "ř í",
+ "▁r om",
+ "▁ro m",
+ "▁ rom",
+ "var epsilon",
+ "vare psilon",
+ "▁pr ime",
+ "▁prim e",
+ "▁pri me",
+ "▁ prime",
+ "is try",
+ "ist ry",
+ "istr y",
+ "pe cted",
+ "pect ed",
+ "pec ted",
+ "p ected",
+ "or age",
+ "ora ge",
+ "o rage",
+ "▁t ouch",
+ "▁to uch",
+ "▁tou ch",
+ "▁ touch",
+ "▁[ '",
+ "▁ ['",
+ "▁d an",
+ "▁da n",
+ "▁ dan",
+ "E m",
+ "ac iones",
+ "acion es",
+ "aci ones",
+ "a ciones",
+ "Ca n",
+ "C an",
+ "▁w hom",
+ "▁wh om",
+ "▁who m",
+ "▁be havior",
+ "▁behav ior",
+ "▁str ings",
+ "▁string s",
+ "▁ strings",
+ "▁E urop",
+ "▁Euro p",
+ "▁Eu rop",
+ "▁Eur op",
+ "▁R om",
+ "▁Ro m",
+ "ci rc",
+ "cir c",
+ "c irc",
+ "▁p un",
+ "▁pu n",
+ "▁reg ister",
+ "▁ register",
+ "b untu",
+ "ra in",
+ "rai n",
+ "r ain",
+ "O b",
+ "T A",
+ "▁s ometimes",
+ "▁some times",
+ "▁somet imes",
+ "▁m ent",
+ "▁me nt",
+ "▁men t",
+ "▁ ment",
+ "▁in teger",
+ "▁inte ger",
+ "▁ integer",
+ "▁J ac",
+ "▁Ja c",
+ "▁ Jac",
+ "le gate",
+ "leg ate",
+ "ot hing",
+ "oth ing",
+ "o thing",
+ "▁s ound",
+ "▁so und",
+ "▁sou nd",
+ "▁ sound",
+ "la ces",
+ "lace s",
+ "lac es",
+ "l aces",
+ "▁Б а",
+ "r b",
+ "d i",
+ "ле ния",
+ "▁them selves",
+ "▁B lack",
+ "▁Bl ack",
+ "▁Bla ck",
+ "▁ Black",
+ "▁s ettings",
+ "▁sett ings",
+ "▁setting s",
+ "▁ settings",
+ "▁n orm",
+ "▁no rm",
+ "▁nor m",
+ "▁ norm",
+ "▁r uns",
+ "▁run s",
+ "▁ru ns",
+ "▁N OT",
+ "▁NO T",
+ "▁ NOT",
+ "K E",
+ "▁per haps",
+ "▁ Я",
+ "▁m ol",
+ "▁mo l",
+ "▁a ns",
+ "▁an s",
+ "▁ ans",
+ "at re",
+ "atr e",
+ "a tre",
+ "▁D ies",
+ "▁Die s",
+ "▁Di es",
+ "To ken",
+ "T oken",
+ "an ie",
+ "ani e",
+ "a nie",
+ "▁all owed",
+ "▁allow ed",
+ "▁allo wed",
+ "▁ allowed",
+ "R ange",
+ "▁G ro",
+ "▁Gr o",
+ "vi a",
+ "v ia",
+ "ut orial",
+ "uto rial",
+ "utor ial",
+ "ens or",
+ "enso r",
+ "est ival",
+ "esti val",
+ "); \r",
+ ") ;\r",
+ "кра ї",
+ "▁turn ed",
+ "▁tur ned",
+ "sc ope",
+ "scop e",
+ "s cope",
+ "▁b ien",
+ "▁bi en",
+ "= $",
+ "▁ext ension",
+ "▁extens ion",
+ "▁ extension",
+ "at ore",
+ "ator e",
+ "ato re",
+ "▁Р о",
+ "▁spec ify",
+ "ed u",
+ "e du",
+ "Dat os",
+ "D atos",
+ "▁st ored",
+ "▁stor ed",
+ "▁store d",
+ "▁sto red",
+ "▁p arse",
+ "▁par se",
+ "▁ parse",
+ "▁an swers",
+ "▁answer s",
+ "▁ans wers",
+ "il ls",
+ "ill s",
+ "▁he ard",
+ "▁hear d",
+ "l u",
+ "▁T HE",
+ "▁TH E",
+ "▁ THE",
+ "▁g én",
+ "▁gé n",
+ "▁f ul",
+ "▁fu l",
+ "▁ ful",
+ "e z",
+ "▁P rem",
+ "▁Pr em",
+ "▁Pre m",
+ "th en",
+ "the n",
+ "t hen",
+ "d p",
+ "сь кого",
+ "сько го",
+ "ськ ого",
+ "▁S i",
+ "▁ Si",
+ "ç o",
+ "Ed it",
+ "E dit",
+ "кі в",
+ "к ів",
+ "▁Л и",
+ "▁S ing",
+ "▁Si ng",
+ "▁Sin g",
+ "▁ Sing",
+ "▁c ateg",
+ "▁cat eg",
+ "Eq u",
+ "E qu",
+ "▁g uer",
+ "▁gu er",
+ "▁ guer",
+ "W idth",
+ "▁Christ ian",
+ "st at",
+ "sta t",
+ "s tat",
+ "W rite",
+ "▁w oman",
+ "▁wo man",
+ "wo od",
+ "w ood",
+ "V is",
+ "ра з",
+ "▁$ $\\",
+ "▁$$ \\",
+ "ode r",
+ "od er",
+ "o der",
+ "▁b ool",
+ "▁bo ol",
+ "▁ bool",
+ "▁intern ational",
+ "но сть",
+ "ност ь",
+ "нос ть",
+ "▁Rich ard",
+ "▁Ric hard",
+ "▁add ition",
+ "▁Mus ic",
+ "▁ Music",
+ "▁a ber",
+ "▁ab er",
+ "t ó",
+ "▁h ier",
+ "▁hi er",
+ "ug h",
+ "u gh",
+ "▁p ob",
+ "▁po b",
+ "▁t ables",
+ "▁table s",
+ "▁tab les",
+ "▁ta bles",
+ "▁ tables",
+ "D o",
+ "▁high er",
+ "ps i",
+ "p si",
+ "r á",
+ "▁act ive",
+ "▁activ e",
+ "▁ active",
+ "▁T able",
+ "▁Ta ble",
+ "▁Tab le",
+ "▁ Table",
+ "њ е",
+ "▁de scription",
+ "▁des cription",
+ "▁descri ption",
+ "▁descript ion",
+ "▁ description",
+ "▁se emed",
+ "▁see med",
+ "▁seem ed",
+ "ís t",
+ "í st",
+ "▁my self",
+ "▁m enu",
+ "▁me nu",
+ "▁men u",
+ "▁ menu",
+ "de l",
+ "d el",
+ "▁ ž",
+ "el e",
+ "e le",
+ "A ut",
+ "▁г ру",
+ "mu t",
+ "m ut",
+ "oo n",
+ "o on",
+ "as c",
+ "a sc",
+ "bu g",
+ "b ug",
+ "▁m oved",
+ "▁mov ed",
+ "▁mo ved",
+ "▁move d",
+ "C L",
+ "▁data s",
+ "▁dat as",
+ "▁ datas",
+ "S O",
+ "о ло",
+ "▁Ge org",
+ "▁re ach",
+ "▁r each",
+ ": \"",
+ "▁e valu",
+ "▁ev alu",
+ "▁eval u",
+ "▁ evalu",
+ "▁H el",
+ "▁He l",
+ "▁ Hel",
+ "▁R iver",
+ "▁Riv er",
+ "▁Ri ver",
+ "▁А р",
+ "▁ Ар",
+ "// //",
+ "/// /",
+ "/ ///",
+ "▁s ets",
+ "▁se ts",
+ "▁set s",
+ "▁ sets",
+ "▁O lymp",
+ "Ad apter",
+ ". '",
+ "ov ern",
+ "over n",
+ "ove rn",
+ "o vern",
+ "▁L ord",
+ "▁Lo rd",
+ "▁Lor d",
+ "! --",
+ "jp g",
+ "j pg",
+ "im ento",
+ "iment o",
+ "imen to",
+ "▁Pro f",
+ "▁Pr of",
+ "▁ach ieve",
+ "▁achiev e",
+ "} :",
+ "▁in cor",
+ "▁inc or",
+ "▁o nder",
+ "▁on der",
+ "▁onde r",
+ "▁ onder",
+ "en gl",
+ "eng l",
+ "AB LE",
+ "▁M ary",
+ "▁Mar y",
+ "▁Ma ry",
+ "▁w aren",
+ "▁war en",
+ "▁wa ren",
+ "la ge",
+ "lag e",
+ "l age",
+ "De c",
+ "D ec",
+ "анг л",
+ "en cias",
+ "enc ias",
+ "encia s",
+ "enci as",
+ "ле й",
+ "л ей",
+ "▁M achine",
+ "▁Mach ine",
+ "▁ Machine",
+ "▁А н",
+ "ud a",
+ "u da",
+ "▁ ś",
+ "▁X X",
+ "▁ XX",
+ "on ly",
+ "ле ние",
+ "▁tamb ién",
+ "ne j",
+ "n ej",
+ "▁rel ative",
+ "▁relativ e",
+ "▁ relative",
+ "▁h ours",
+ "▁ho urs",
+ "▁hour s",
+ "▁ind eed",
+ "▁inde ed",
+ "un do",
+ "und o",
+ "in gu",
+ "ing u",
+ "ar ea",
+ "are a",
+ "a rea",
+ "▁C reate",
+ "▁Cre ate",
+ "▁ Create",
+ "be it",
+ "bei t",
+ "▁rem oved",
+ "▁remove d",
+ "▁remov ed",
+ "ma ster",
+ "mas ter",
+ "maste r",
+ "m aster",
+ "ha us",
+ "h aus",
+ "▁B ern",
+ "▁Be rn",
+ "▁Ber n",
+ "▁sp eed",
+ "▁spe ed",
+ "▁ speed",
+ "▁B ay",
+ "▁Ba y",
+ "▁A tt",
+ "▁At t",
+ "▁ Att",
+ "▁N one",
+ "▁No ne",
+ "▁Non e",
+ "▁ None",
+ "app lication",
+ "ü d",
+ "▁f it",
+ "▁fi t",
+ "▁ fit",
+ "▁M aria",
+ "▁Mar ia",
+ "▁Ma ria",
+ "▁Mari a",
+ "▁n ord",
+ "▁no rd",
+ "▁nor d",
+ "▁s plit",
+ "▁sp lit",
+ "▁spl it",
+ "▁ split",
+ "▁st ru",
+ "▁str u",
+ "▁ stru",
+ "▁o fficial",
+ "▁off icial",
+ "▁offic ial",
+ "▁offici al",
+ "▁exec ute",
+ "▁execut e",
+ "▁ execute",
+ "ou ve",
+ "ouv e",
+ "o uve",
+ "{ {",
+ "▁A p",
+ "▁ Ap",
+ "▁к у",
+ "▁ ку",
+ "I L",
+ "▁ ^",
+ "di m",
+ "d im",
+ "▁set up",
+ "▁ setup",
+ "с к",
+ "▁sh are",
+ "▁ share",
+ "▁min utes",
+ "▁minute s",
+ "gl e",
+ "g le",
+ "oc o",
+ "o co",
+ "st ell",
+ "ste ll",
+ "▁C oun",
+ "▁Co un",
+ "▁Cou n",
+ "▁tem per",
+ "▁temp er",
+ "▁ temper",
+ "ke it",
+ "сь кий",
+ "a o",
+ "▁L ong",
+ "▁Lo ng",
+ "▁ Long",
+ "( &",
+ "ка н",
+ "к ан",
+ "▁d ens",
+ "▁de ns",
+ "▁den s",
+ "▁ dens",
+ "Bu t",
+ "B ut",
+ "X X",
+ "DA TE",
+ "DAT E",
+ "D ATE",
+ "ga n",
+ "g an",
+ ".) .",
+ ". ).",
+ "▁en try",
+ "▁ent ry",
+ "▁entr y",
+ "▁ entry",
+ "inst all",
+ "▁з на",
+ "▁ зна",
+ "▁S om",
+ "▁So m",
+ "Comm and",
+ "ße n",
+ "ß en",
+ "▁start ing",
+ "▁star ting",
+ "▁s to",
+ "▁st o",
+ "▁ sto",
+ "I G",
+ "▁min im",
+ "▁mi nim",
+ "▁mini m",
+ "▁exp licit",
+ "▁explic it",
+ "▁by tes",
+ "▁byte s",
+ "▁ bytes",
+ "▁par ty",
+ "▁part y",
+ "▁ party",
+ "to ber",
+ "t ober",
+ "▁G rand",
+ "▁Gr and",
+ "▁Gra nd",
+ "▁Gran d",
+ "▁V or",
+ "▁Vo r",
+ "▁ Vor",
+ "▁l eur",
+ "▁le ur",
+ "▁ leur",
+ "Doc ument",
+ "D ocument",
+ "er c",
+ "e rc",
+ "ens ive",
+ "C P",
+ "en v",
+ "▁arg uments",
+ "▁argument s",
+ "▁ arguments",
+ "▁G ran",
+ "▁Gr an",
+ "▁Gra n",
+ "ar ily",
+ "ari ly",
+ "▁l in",
+ "▁li n",
+ "▁ lin",
+ "t n",
+ "( -",
+ "ge q",
+ "g eq",
+ "▁F amil",
+ "▁Fa mil",
+ "▁Fam il",
+ "▁ Famil",
+ "▁Б о",
+ "▁t our",
+ "▁to ur",
+ "▁tou r",
+ "▁n av",
+ "▁na v",
+ "▁ nav",
+ "▁proper ly",
+ "▁M rs",
+ "▁Mr s",
+ "▁M el",
+ "▁Me l",
+ "▁sc ale",
+ "▁scal e",
+ "▁ scale",
+ "ast ic",
+ "d s",
+ "▁S ir",
+ "▁Si r",
+ "▁Ch urch",
+ "}^ {\\",
+ "}^{ \\",
+ "} ^{\\",
+ "yo u",
+ "y ou",
+ "/ .",
+ "S o",
+ "▁br ought",
+ "▁r ole",
+ "▁ro le",
+ "▁rol e",
+ "▁ role",
+ "▁S ur",
+ "▁Su r",
+ "▁ Sur",
+ "▁f ond",
+ "▁fo nd",
+ "▁fon d",
+ "▁g es",
+ "▁ge s",
+ "▁ ges",
+ "ż e",
+ "et en",
+ "ete n",
+ "e ten",
+ "▁é tait",
+ "▁ét ait",
+ "▁ était",
+ "SE R",
+ "S ER",
+ "▁ко торы",
+ "▁кото ры",
+ "▁equ ation",
+ "▁ equation",
+ "as px",
+ "asp x",
+ "▁A fr",
+ "▁Af r",
+ "▁d it",
+ "▁di t",
+ "▁ dit",
+ "em pty",
+ "emp ty",
+ "empt y",
+ "al ement",
+ "ale ment",
+ "alem ent",
+ "a lement",
+ "wr ap",
+ "w rap",
+ "▁B et",
+ "▁Be t",
+ "▁col lect",
+ "▁coll ect",
+ "▁colle ct",
+ "▁ collect",
+ "▁g it",
+ "▁gi t",
+ "▁ git",
+ "▁v ie",
+ "▁vi e",
+ "▁ vie",
+ "▁. .",
+ "▁ ..",
+ "ро й",
+ "▁< ?",
+ "▁ ",
+ "▁ed uc",
+ "k l",
+ "ens is",
+ "▁O R",
+ "▁ OR",
+ "▁H i",
+ "▁ Hi",
+ "▁C our",
+ "▁Co ur",
+ "▁Cou r",
+ "б ы",
+ "ce rt",
+ "cer t",
+ "c ert",
+ "▁G es",
+ "▁Ge s",
+ "ess or",
+ "esso r",
+ "Ma in",
+ "M ain",
+ "▁ лю",
+ "ca de",
+ "c ade",
+ "do t",
+ "d ot",
+ "au gh",
+ "aug h",
+ "a ugh",
+ "hi b",
+ "h ib",
+ "▁autom atically",
+ "▁auto matically",
+ "▁automat ically",
+ "▁automatic ally",
+ "▁sp ir",
+ "pr esent",
+ "pre sent",
+ "pres ent",
+ "▁Febru ary",
+ "▁Februar y",
+ "▁E lle",
+ "▁El le",
+ "▁Ell e",
+ "cus tom",
+ "c ustom",
+ "▁pro get",
+ "▁admin istr",
+ "▁administ r",
+ "A A",
+ "▁b orn",
+ "▁bo rn",
+ "▁bor n",
+ "▁ born",
+ "▁Col lege",
+ "▁Colleg e",
+ "▁Coll ege",
+ "at hol",
+ "ath ol",
+ "` )",
+ "ier re",
+ "▁r an",
+ "▁ra n",
+ "▁ ran",
+ "▁prof ession",
+ "▁profess ion",
+ "og en",
+ "oge n",
+ "o gen",
+ "}_ {\\",
+ "}_{ \\",
+ "} _{\\",
+ "▁act ivity",
+ "▁activ ity",
+ "▁ activity",
+ "▁sc roll",
+ "▁scr oll",
+ "▁ scroll",
+ "▁pro ve",
+ "▁pr ove",
+ "▁prov e",
+ "ibr ary",
+ "i brary",
+ "er ies",
+ "erie s",
+ "eri es",
+ "e ries",
+ "Re ad",
+ "R ead",
+ "ye ar",
+ "y ear",
+ "▁l ang",
+ "▁la ng",
+ "▁lan g",
+ "▁ lang",
+ "De t",
+ "D et",
+ "▁k new",
+ "▁kn ew",
+ "▁kne w",
+ "▁prote cted",
+ "▁protect ed",
+ "▁prot ected",
+ "▁ protected",
+ "▁w or",
+ "▁wo r",
+ "▁ wor",
+ "▁e ffic",
+ "▁eff ic",
+ "▁r ég",
+ "▁ré g",
+ "▁the ory",
+ "▁ theory",
+ "▁pub lished",
+ "▁publish ed",
+ "re al",
+ "rea l",
+ "▁T our",
+ "▁To ur",
+ "▁dur ante",
+ "▁durant e",
+ "ä s",
+ "▁pos itive",
+ "▁posit ive",
+ "▁for ward",
+ "▁ forward",
+ "▁R el",
+ "▁Re l",
+ "▁ Rel",
+ "{ \"",
+ "par k",
+ "p ark",
+ "▁U m",
+ "▁e er",
+ "en ta",
+ "ent a",
+ "▁i mag",
+ "▁im ag",
+ "но ї",
+ "pi el",
+ "pie l",
+ "p iel",
+ "▁j Query",
+ "▁ jQuery",
+ "is me",
+ "ism e",
+ "ch ni",
+ "chn i",
+ "or gan",
+ "org an",
+ "▁ar gs",
+ "▁arg s",
+ "▁ args",
+ "oi r",
+ "o ir",
+ "he im",
+ "ri an",
+ "ria n",
+ "r ian",
+ "el ess",
+ "eles s",
+ "ele ss",
+ "e less",
+ "us es",
+ "use s",
+ "ди н",
+ "д ин",
+ "ic ión",
+ "ici ón",
+ "ició n",
+ "i ción",
+ "▁ind ust",
+ "▁indu st",
+ "▁ indust",
+ "▁w ish",
+ "▁wis h",
+ "án y",
+ "á ny",
+ "oc a",
+ "o ca",
+ "▁ang ular",
+ "▁ angular",
+ "ie ved",
+ "ieve d",
+ "iev ed",
+ "▁occ ur",
+ "▁oc cur",
+ "SE LECT",
+ "on ia",
+ "oni a",
+ "o nia",
+ "ad min",
+ "▁B est",
+ "▁Be st",
+ "▁Bes t",
+ "▁ Best",
+ "▁э то",
+ "о гра",
+ "▁l oss",
+ "▁lo ss",
+ "▁los s",
+ "▁ loss",
+ "▁b al",
+ "▁ba l",
+ "▁ bal",
+ "▁Р ос",
+ "▁Ро с",
+ "▁care er",
+ "▁п е",
+ "▁ пе",
+ "I X",
+ "▁f all",
+ "▁fa ll",
+ "▁fal l",
+ "▁ fall",
+ "▁R ob",
+ "▁Ro b",
+ "▁ Rob",
+ "▁O P",
+ "▁ OP",
+ "en ed",
+ "ene d",
+ "e ned",
+ "graph ics",
+ "▁c oming",
+ "▁com ing",
+ "▁co ming",
+ "▁ coming",
+ "Up date",
+ "▁d ied",
+ "▁di ed",
+ "▁die d",
+ "ed en",
+ "ede n",
+ "e den",
+ "▁a bs",
+ "▁ab s",
+ "▁ abs",
+ "▁in ner",
+ "▁inn er",
+ "▁inne r",
+ "▁ inner",
+ "▁t rav",
+ "▁tr av",
+ "▁tra v",
+ "сто я",
+ "z ą",
+ "é p",
+ "▁Gr oup",
+ "▁Gro up",
+ "▁ Group",
+ "▁c el",
+ "▁ce l",
+ "▁ cel",
+ "▁st uff",
+ "▁situ ation",
+ "▁$ {",
+ "▁ ${",
+ "ac le",
+ "a cle",
+ "▁pur pose",
+ "▁F ire",
+ "▁Fir e",
+ "▁ Fire",
+ "▁O h",
+ "▁ Oh",
+ "▁Se cond",
+ "▁Sec ond",
+ "▁ Second",
+ "▁up load",
+ "▁ upload",
+ "os tał",
+ "ost ał",
+ "osta ł",
+ "ю щи",
+ "Aut h",
+ "A uth",
+ "▁show ing",
+ "▁sho wing",
+ "▁complet ely",
+ "▁complete ly",
+ "av el",
+ "ave l",
+ "a vel",
+ "b d",
+ "▁pro ced",
+ "▁proc ed",
+ "▁ Ö",
+ "cont rol",
+ "contr ol",
+ "▁th ank",
+ "▁than k",
+ "und red",
+ "▁t om",
+ "▁to m",
+ "▁ tom",
+ "▁ex amples",
+ "▁example s",
+ "▁exam ples",
+ "▁ examples",
+ "▁re member",
+ "▁rem ember",
+ "▁ра бо",
+ "▁ рабо",
+ "▁poss ib",
+ "▁det ect",
+ "▁p oor",
+ "▁po or",
+ "▁O p",
+ "▁ Op",
+ "▁cent ury",
+ "▁ century",
+ "ut ter",
+ "utt er",
+ "▁lo gin",
+ "▁log in",
+ "▁ login",
+ "un st",
+ "uns t",
+ "Out put",
+ "▁other wise",
+ "la n",
+ "l an",
+ "ту р",
+ "т ур",
+ "▁с ов",
+ "▁со в",
+ "▁ сов",
+ "▁gr oups",
+ "▁group s",
+ "▁gro ups",
+ "▁ groups",
+ "ri p",
+ "r ip",
+ "▁s hell",
+ "▁sh ell",
+ "▁she ll",
+ "▁ shell",
+ "▁d istrict",
+ "▁dist rict",
+ "▁rec ords",
+ "▁record s",
+ "▁si è",
+ "fort un",
+ "en ty",
+ "ent y",
+ "▁T re",
+ "▁Tr e",
+ "▁ch anging",
+ "▁chang ing",
+ "сле д",
+ "aug ht",
+ "augh t",
+ "▁de ep",
+ "▁ deep",
+ "sub set",
+ "ag y",
+ "a gy",
+ "en dar",
+ "end ar",
+ "enda r",
+ "ja x",
+ "j ax",
+ "O M",
+ "E l",
+ "im ate",
+ "ima te",
+ "imat e",
+ "i mate",
+ "ar do",
+ "ard o",
+ "▁p lot",
+ "▁pl ot",
+ "▁ plot",
+ "▁vis it",
+ "▁b ug",
+ "▁bu g",
+ "▁ bug",
+ "▁в се",
+ "▁вс е",
+ "▁op ened",
+ "▁open ed",
+ "▁re pla",
+ "▁rep la",
+ "▁Hen ry",
+ "▁p p",
+ "▁ pp",
+ "ba s",
+ "b as",
+ "▁d ark",
+ "▁dar k",
+ "▁ dark",
+ "▁Mart in",
+ "▁ Martin",
+ "▁re source",
+ "▁res ource",
+ "▁ resource",
+ "il ing",
+ "ili ng",
+ "i ling",
+ "▁w atch",
+ "▁wat ch",
+ "▁ watch",
+ "re place",
+ "rep lace",
+ "▁re lease",
+ "▁ release",
+ "Lo cation",
+ "Loc ation",
+ "L ocation",
+ "▁le arning",
+ "▁learn ing",
+ "▁lear ning",
+ "▁ learning",
+ "me nu",
+ "men u",
+ "m enu",
+ "▁all ows",
+ "▁allow s",
+ "▁allo ws",
+ "ъ р",
+ "L ength",
+ "▁wh atever",
+ "▁what ever",
+ "▁p ages",
+ "▁page s",
+ "▁pa ges",
+ "▁pag es",
+ "▁ pages",
+ "▁comp iler",
+ "▁compile r",
+ "▁ compiler",
+ "▁так же",
+ "▁P an",
+ "▁Pa n",
+ "▁ Pan",
+ "comm and",
+ "▁ro ad",
+ "▁ road",
+ "▁un less",
+ "▁ unless",
+ "` ?",
+ "▁dis cover",
+ "▁disc over",
+ "▁disco ver",
+ "▁о н",
+ "▁ он",
+ "} ]",
+ "bo ur",
+ "b our",
+ "▁C ould",
+ "▁Co uld",
+ "▁Cou ld",
+ "▁ Could",
+ "▁re gex",
+ "▁reg ex",
+ "▁ regex",
+ "▁p s",
+ "▁ ps",
+ "C D",
+ "и з",
+ "▁w ife",
+ "am enti",
+ "ament i",
+ "amen ti",
+ "▁f air",
+ "▁fa ir",
+ "▁D B",
+ "▁ DB",
+ "▁C up",
+ "▁Cu p",
+ "en en",
+ "ene n",
+ "e nen",
+ "aj ax",
+ "aja x",
+ "a jax",
+ "oth èque",
+ "▁se iner",
+ "▁sein er",
+ "▁seine r",
+ "▁sei ner",
+ "ic ker",
+ "ick er",
+ "i cker",
+ "á m",
+ "ex change",
+ "ol es",
+ "ole s",
+ "o les",
+ "I F",
+ "▁Д о",
+ "oh n",
+ "o hn",
+ "▁g row",
+ "▁gr ow",
+ "▁gro w",
+ "▁T hus",
+ "▁Th us",
+ "sp ec",
+ "spe c",
+ "s pec",
+ "▁h atte",
+ "▁ha tte",
+ "▁hat te",
+ "# ,",
+ "all el",
+ "alle l",
+ "▁r ate",
+ "▁ra te",
+ "▁rat e",
+ "▁ rate",
+ "▁cent ral",
+ "▁ central",
+ "▁V an",
+ "▁Va n",
+ "if orn",
+ "R un",
+ "▁stud y",
+ "▁X ML",
+ "▁ XML",
+ "▁C he",
+ "▁Ch e",
+ "▁ Che",
+ "▁be aut",
+ "mi d",
+ "m id",
+ "▁adv ance",
+ "V er",
+ "т я",
+ "▁h ands",
+ "▁hand s",
+ "▁han ds",
+ "▁l ay",
+ "▁la y",
+ "▁ lay",
+ "▁ š",
+ "▁O S",
+ "▁ OS",
+ "▁{ }",
+ "▁ {}",
+ "Pr e",
+ "P re",
+ "▁H all",
+ "▁Ha ll",
+ "▁Hal l",
+ "im p",
+ "i mp",
+ "▁s un",
+ "▁su n",
+ "▁ sun",
+ "▁st eps",
+ "▁ste ps",
+ "▁step s",
+ "▁ steps",
+ "▁j ud",
+ "▁ju d",
+ "▁ jud",
+ "qu i",
+ "q ui",
+ "▁b oot",
+ "▁bo ot",
+ "▁ boot",
+ "▁% >",
+ "▁В а",
+ "no st",
+ "nos t",
+ "n ost",
+ "▁n em",
+ "▁ne m",
+ "▁ nem",
+ "▁p en",
+ "▁pe n",
+ "▁ pen",
+ "Op en",
+ "O pen",
+ "▁ch urch",
+ "ко н",
+ "к он",
+ "▁a verage",
+ "▁aver age",
+ "▁ave rage",
+ "▁com ments",
+ "▁comm ents",
+ "▁comment s",
+ "▁ comments",
+ "▁correspond ing",
+ "lev ant",
+ "▁b ed",
+ "▁be d",
+ "▁ bed",
+ "▁mean ing",
+ "V ersion",
+ "Lin k",
+ "L ink",
+ "be l",
+ "b el",
+ "▁ext ract",
+ "▁extra ct",
+ "▁extr act",
+ "▁ extract",
+ "ś ć",
+ "▁I V",
+ "▁ IV",
+ "▁I r",
+ "▁comp uter",
+ "▁comput er",
+ "▁compute r",
+ "▁a ffect",
+ "▁af fect",
+ "▁aff ect",
+ "▁С та",
+ "▁Ст а",
+ "A X",
+ "so rt",
+ "s ort",
+ "▁s pecies",
+ "▁spe cies",
+ "▁spec ies",
+ "▁specie s",
+ "▁ species",
+ "▁O per",
+ "▁Op er",
+ "▁ Oper",
+ "▁h ash",
+ "▁ha sh",
+ "▁has h",
+ "▁ hash",
+ "ch es",
+ "che s",
+ "c hes",
+ "▁Einz eln",
+ "▁Einzel n",
+ "▁ke ys",
+ "▁key s",
+ "▁ keys",
+ "▁mar zo",
+ "▁inter pret",
+ "▁interpre t",
+ "ho od",
+ "h ood",
+ "▁co ordin",
+ "▁coord in",
+ "ö s",
+ "ra ge",
+ "rag e",
+ "r age",
+ "et z",
+ "e tz",
+ "iz a",
+ "i za",
+ "де р",
+ "д ер",
+ "ü t",
+ "^ *",
+ "▁mod ify",
+ "▁term in",
+ "▁ter min",
+ "▁ termin",
+ "▁c red",
+ "▁cre d",
+ "▁cr ed",
+ "▁ cred",
+ "zo n",
+ "z on",
+ "ну ю",
+ "н ую",
+ "▁m ie",
+ "▁mi e",
+ "▁' '",
+ "▁ ''",
+ "▁M os",
+ "▁Mo s",
+ "▁conne cted",
+ "▁connect ed",
+ "▁conn ected",
+ "▁ connected",
+ "N O",
+ "▁comp ile",
+ "▁ compile",
+ "▁\" \\",
+ "▁ \"\\",
+ "▁c at",
+ "▁ca t",
+ "▁ cat",
+ "f iddle",
+ "ut a",
+ "u ta",
+ "Acc ess",
+ "Ac cess",
+ "A ccess",
+ "▁S to",
+ "▁St o",
+ "▁ Sto",
+ "▁B ur",
+ "▁Bu r",
+ "▁n orth",
+ "▁nor th",
+ "G amma",
+ "▁al loc",
+ "▁all oc",
+ "▁allo c",
+ "▁ alloc",
+ "In it",
+ "I nit",
+ "▁L ink",
+ "▁Lin k",
+ "▁ Link",
+ "ial ize",
+ "iali ze",
+ "Im pl",
+ "Imp l",
+ "ou pe",
+ "oup e",
+ "rop ri",
+ "▁G old",
+ "▁Go ld",
+ "▁Gol d",
+ "▁s olo",
+ "▁so lo",
+ "▁sol o",
+ "▁D ist",
+ "▁Dis t",
+ "▁Di st",
+ "▁ Dist",
+ ", -",
+ "na v",
+ "n av",
+ "▁al ert",
+ "▁ale rt",
+ "▁ alert",
+ "es is",
+ "esi s",
+ "▁O s",
+ "▁ Os",
+ "// /",
+ "/ //",
+ "▁f eb",
+ "▁fe b",
+ "▁- ->",
+ "▁-- >",
+ "▁ -->",
+ "fo ot",
+ "foo t",
+ "f oot",
+ "▁F ried",
+ "▁Fr ied",
+ "▁Fri ed",
+ "▁Einzeln ach",
+ "▁Einzel nach",
+ "▁re v",
+ "▁r ev",
+ "▁ rev",
+ "ze it",
+ "▁S tat",
+ "▁St at",
+ "▁Sta t",
+ "▁ Stat",
+ "▁S eg",
+ "▁Se g",
+ "▁ Seg",
+ "▁b lo",
+ "▁bl o",
+ "▁ blo",
+ "wi ck",
+ "w ick",
+ "E L",
+ "ca ption",
+ "cap tion",
+ "capt ion",
+ "he ader",
+ "head er",
+ "▁pres ident",
+ "▁presiden t",
+ "▁mult ip",
+ "▁multi p",
+ "▁mul tip",
+ "▁ multip",
+ "▁Einzelnach weise",
+ "▁se ine",
+ "▁sein e",
+ "▁sei ne",
+ "? ”",
+ "Func tion",
+ "Fun ction",
+ "F unction",
+ "▁St and",
+ "▁Sta nd",
+ "▁Stan d",
+ "▁ Stand",
+ "▁F unction",
+ "▁Fun ction",
+ "▁ Function",
+ "▁? >",
+ "▁ ?>",
+ "▁B ill",
+ "▁Bi ll",
+ "▁Bil l",
+ "▁s pect",
+ "▁sp ect",
+ "▁spe ct",
+ "▁spec t",
+ "▁ spect",
+ "▁re direct",
+ "▁red irect",
+ "▁ redirect",
+ "ru pt",
+ "rup t",
+ "r upt",
+ "▁w alk",
+ "▁wal k",
+ "▁ walk",
+ "в ши",
+ "spring framework",
+ "pl ace",
+ "pla ce",
+ "p lace",
+ "é ho",
+ "Ent ity",
+ "▁Ser vice",
+ "▁Serv ice",
+ "▁ Service",
+ "in te",
+ "int e",
+ "▁tr aining",
+ "▁tra ining",
+ "▁train ing",
+ "▁ training",
+ "▁( `",
+ "▁ (`",
+ "фо р",
+ "ф ор",
+ "▁к ра",
+ "▁ кра",
+ "au r",
+ "a ur",
+ "▁f etch",
+ "▁fet ch",
+ "▁ fetch",
+ "▁ †",
+ "▁m ême",
+ "▁ même",
+ "▁( '",
+ "▁ ('",
+ "at ively",
+ "ative ly",
+ "ativ ely",
+ "▁exec ut",
+ "ä ch",
+ "▁Catalog ue",
+ "ba sed",
+ "base d",
+ "bas ed",
+ "b ased",
+ "Att ribute",
+ "▁s pring",
+ "▁sp ring",
+ "▁spr ing",
+ "▁ spring",
+ "ph one",
+ "phon e",
+ "т ра",
+ "▁п и",
+ "▁ пи",
+ "те ра",
+ "тер а",
+ "т ера",
+ "▁` \\",
+ "▁O d",
+ "On e",
+ "O ne",
+ "se nd",
+ "sen d",
+ "s end",
+ "bo n",
+ "b on",
+ "▁ °",
+ "M O",
+ "▁as king",
+ "▁ask ing",
+ "▁o ù",
+ "▁ing år",
+ "▁test ing",
+ "▁ testing",
+ "▁ф а",
+ "▁ фа",
+ "▁B ook",
+ "▁Bo ok",
+ "▁ Book",
+ "im m",
+ "i mm",
+ "▁pro gress",
+ "▁ progress",
+ "br o",
+ "b ro",
+ "F irst",
+ "▁p hot",
+ "▁ph ot",
+ "▁O N",
+ "▁ ON",
+ "Tem plate",
+ "Temp late",
+ "develop er",
+ "an not",
+ "ann ot",
+ "anno t",
+ "▁> =",
+ "▁ >=",
+ "miss ion",
+ "m ission",
+ "▁k tó",
+ "▁ któ",
+ "p c",
+ "ba ch",
+ "b ach",
+ "ze nt",
+ "zen t",
+ "z ent",
+ "ue d",
+ "u ed",
+ "▁o nes",
+ "▁on es",
+ "▁one s",
+ "▁ ones",
+ "ј и",
+ "▁r out",
+ "▁ro ut",
+ "▁rou t",
+ "▁ rout",
+ "▁К и",
+ "Pos t",
+ "Po st",
+ "P ost",
+ "ці ї",
+ "ц ії",
+ "▁V ir",
+ "▁Vi r",
+ "ne k",
+ "n ek",
+ "ag ing",
+ "agi ng",
+ "agin g",
+ "a ging",
+ "▁о к",
+ "▁ ок",
+ "iz ont",
+ "izo nt",
+ "izon t",
+ "▁ag osto",
+ "▁ago sto",
+ "▁cho ose",
+ "▁ choose",
+ "▁ \r",
+ "▁system s",
+ "▁syst ems",
+ "lo ss",
+ "los s",
+ "l oss",
+ "ien te",
+ "ient e",
+ "i ente",
+ "▁C re",
+ "▁Cr e",
+ "▁ Cre",
+ "▁con tra",
+ "▁cont ra",
+ "▁contr a",
+ "▁ contra",
+ "um s",
+ "u ms",
+ "▁begin ning",
+ "em y",
+ "e my",
+ "ist ics",
+ "istic s",
+ "isti cs",
+ "▁s erved",
+ "▁ser ved",
+ "▁serv ed",
+ "▁serve d",
+ "Do wn",
+ "D own",
+ "option s",
+ "opt ions",
+ "o ptions",
+ "▁G overn",
+ "▁Go vern",
+ "▁B Y",
+ "▁ BY",
+ "▁j est",
+ "▁je st",
+ "▁ jest",
+ "t é",
+ "▁cont inue",
+ "▁contin ue",
+ "▁continu e",
+ "▁ continue",
+ "pe rs",
+ "per s",
+ "p ers",
+ "▁eas ier",
+ "▁c os",
+ "▁co s",
+ "▁ cos",
+ "es so",
+ "ess o",
+ "> >",
+ "Ne t",
+ "N et",
+ "▁B or",
+ "▁Bo r",
+ "▁C r",
+ "▁ Cr",
+ "▁trans fer",
+ "▁C SS",
+ "▁CS S",
+ "▁ CSS",
+ "▁fin ns",
+ "▁х о",
+ "▁ хо",
+ "us ername",
+ "user name",
+ "▁con stru",
+ "▁const ru",
+ "▁p ain",
+ "▁pa in",
+ "▁T em",
+ "▁Te m",
+ "▁ Tem",
+ "▁spec ified",
+ "▁b rit",
+ "▁br it",
+ "▁ brit",
+ "ски е",
+ "с кие",
+ "ir k",
+ "ra pper",
+ "rap per",
+ "r apper",
+ "▁c ounter",
+ "▁co unter",
+ "▁count er",
+ "▁coun ter",
+ "▁ counter",
+ "▁[ \"",
+ "▁ [\"",
+ "ode d",
+ "od ed",
+ "o ded",
+ "да н",
+ "д ан",
+ "pro perty",
+ "ha rd",
+ "har d",
+ "h ard",
+ "ist rict",
+ "istr ict",
+ ") /",
+ "▁P our",
+ "▁Po ur",
+ "▁W here",
+ "▁Wh ere",
+ "▁Whe re",
+ "▁ Where",
+ "▁= ==",
+ "▁== =",
+ "▁ ===",
+ "▁s owie",
+ "▁so wie",
+ "▁sow ie",
+ "▁П ро",
+ "▁d ess",
+ "▁de ss",
+ "▁des s",
+ "▁ dess",
+ "▁t ras",
+ "▁tr as",
+ "▁tra s",
+ "▁ tras",
+ "▁у ча",
+ "▁O ver",
+ "▁ Over",
+ "no te",
+ "not e",
+ "n ote",
+ "▁Amer ica",
+ "▁ America",
+ "c p",
+ "▁gr ande",
+ "▁gra nde",
+ "▁gran de",
+ "▁grand e",
+ "M e",
+ ") -",
+ "Mod e",
+ "Mo de",
+ "M ode",
+ "▁pass ing",
+ "▁pas sing",
+ "▁g iving",
+ "▁giv ing",
+ "▁gi ving",
+ "C l",
+ "} /",
+ "Me nu",
+ "Men u",
+ "M enu",
+ "! !",
+ "ang ular",
+ "angu lar",
+ "▁la unch",
+ "▁ launch",
+ "var phi",
+ "▁Joh ann",
+ "▁Johan n",
+ "▁for each",
+ "▁fore ach",
+ "▁ foreach",
+ "r ó",
+ "se qu",
+ "seq u",
+ "s equ",
+ "if i",
+ "i fi",
+ "A m",
+ "ar p",
+ "a rp",
+ "▁b uffer",
+ "▁buf fer",
+ "▁buff er",
+ "▁ buffer",
+ "▁n i",
+ "▁ ni",
+ "▁m ix",
+ "▁mi x",
+ "▁ mix",
+ "▁M useum",
+ "▁Muse um",
+ "▁me ant",
+ "▁mean t",
+ "as i",
+ "a si",
+ "▁k an",
+ "▁ka n",
+ "▁ kan",
+ "пра в",
+ "п рав",
+ "Com p",
+ "Co mp",
+ "C omp",
+ "is toire",
+ "ist oire",
+ "isto ire",
+ "if ul",
+ "i ful",
+ "je r",
+ "j er",
+ "iss ions",
+ "ission s",
+ "Re source",
+ "Res ource",
+ "▁в оз",
+ "▁во з",
+ "▁S T",
+ "▁ ST",
+ "▁sol utions",
+ "▁solution s",
+ "▁be long",
+ "▁bel ong",
+ "▁As soci",
+ "▁Ass oci",
+ "▁ Associ",
+ "c f",
+ "▁M är",
+ "▁g rid",
+ "▁gr id",
+ "▁ grid",
+ "M ult",
+ "▁require s",
+ "▁requ ires",
+ "k k",
+ "▁t each",
+ "▁te ach",
+ "▁tea ch",
+ "eme inde",
+ "emein de",
+ "▁s quare",
+ "▁squ are",
+ "▁ square",
+ "▁ко ман",
+ "▁ком ан",
+ "▁E vent",
+ "▁Ev ent",
+ "▁Even t",
+ "▁ Event",
+ "▁r ules",
+ "▁rule s",
+ "▁ru les",
+ "▁ rules",
+ "▁b ur",
+ "▁bu r",
+ "▁ bur",
+ "▁e ing",
+ "▁ein g",
+ "▁ eing",
+ "▁M ai",
+ "▁Ma i",
+ "▁n am",
+ "▁na m",
+ "▁ nam",
+ "▁s lä",
+ "▁sl ä",
+ "hö r",
+ "h ör",
+ "▁t ip",
+ "▁ti p",
+ "▁ tip",
+ "▁Liter atur",
+ "▁s cope",
+ "▁sc ope",
+ "▁scop e",
+ "▁ scope",
+ "over line",
+ "▁ex it",
+ "▁ exit",
+ ") ?",
+ "be t",
+ "b et",
+ "▁v ict",
+ "▁vi ct",
+ "▁vic t",
+ "Of f",
+ "O ff",
+ "▁appro xim",
+ "▁G eb",
+ "▁Ge b",
+ "kt op",
+ "k top",
+ "he it",
+ "▁ Ю",
+ "tem plate",
+ "temp late",
+ "ро н",
+ "р он",
+ "▁u no",
+ "▁un o",
+ "▁ uno",
+ "Ser v",
+ "Se rv",
+ "S erv",
+ "▁frame work",
+ "▁ framework",
+ "oper ator",
+ "opera tor",
+ "▁gener ally",
+ "▁general ly",
+ "▁h undred",
+ "▁d ivers",
+ "▁di vers",
+ "▁div ers",
+ "▁diver s",
+ "ov i",
+ "o vi",
+ "▁r és",
+ "▁ré s",
+ "▁ rés",
+ "ab s",
+ "a bs",
+ "▁g al",
+ "▁ga l",
+ "▁ gal",
+ "ça is",
+ "ç ais",
+ "▁fe et",
+ "▁fee t",
+ "▁v irtual",
+ "▁virt ual",
+ "▁ virtual",
+ "cz y",
+ "c zy",
+ "ск у",
+ "с ку",
+ ". /",
+ "h u",
+ "an cy",
+ "anc y",
+ "▁recomm end",
+ "▁п ід",
+ "▁пі д",
+ "▁m oney",
+ "▁mon ey",
+ "▁mo ney",
+ "▁vers ions",
+ "▁version s",
+ "▁ versions",
+ "▁hel ps",
+ "▁help s",
+ "▁H or",
+ "▁Ho r",
+ "▁ Hor",
+ "Item s",
+ "It ems",
+ "lo ok",
+ "l ook",
+ "con nect",
+ "conne ct",
+ "conn ect",
+ "an ges",
+ "ang es",
+ "ange s",
+ "View Controller",
+ "el ijk",
+ "elij k",
+ "eli jk",
+ "e lijk",
+ "▁occ up",
+ "▁oc cup",
+ "▁ occup",
+ "▁ed itor",
+ "▁edit or",
+ "▁ editor",
+ "au to",
+ "aut o",
+ "a uto",
+ "ö g",
+ "▁second s",
+ "▁sec onds",
+ "▁ seconds",
+ "▁ob vious",
+ "v m",
+ "ak es",
+ "ake s",
+ "a kes",
+ "▁g egen",
+ "▁ge gen",
+ "▁geg en",
+ "▁t il",
+ "▁ti l",
+ "▁ til",
+ "ject ion",
+ "je ction",
+ "j ection",
+ "ле ння",
+ "лен ня",
+ "▁oper ations",
+ "▁operation s",
+ "▁E ast",
+ "og y",
+ "o gy",
+ "▁P olit",
+ "▁Pol it",
+ "▁Po lit",
+ "ut en",
+ "ute n",
+ "u ten",
+ "▁Jose ph",
+ "\" `",
+ "▁Comp any",
+ "▁ Company",
+ "▁call back",
+ "▁ callback",
+ "▁s en",
+ "▁se n",
+ "▁ sen",
+ "cc ión",
+ "cció n",
+ "c ción",
+ "▁associ ated",
+ "▁associate d",
+ "▁cont aining",
+ "▁contain ing",
+ "▁pract ice",
+ "elij ke",
+ "elijk e",
+ "e lijke",
+ "ok e",
+ "o ke",
+ "ér a",
+ "é ra",
+ "un s",
+ "u ns",
+ "an ta",
+ "ant a",
+ "ve y",
+ "v ey",
+ "z u",
+ "▁B es",
+ "▁Be s",
+ "▁F lor",
+ "▁Fl or",
+ "▁Flo r",
+ "me m",
+ "m em",
+ "yc z",
+ "y cz",
+ "▁arch itect",
+ "▁an ni",
+ "▁ann i",
+ "▁ anni",
+ "▁cont act",
+ "▁ contact",
+ "Y PE",
+ "▁C as",
+ "▁Ca s",
+ "▁по лу",
+ "▁пол у",
+ "ov o",
+ "o vo",
+ "▁b ring",
+ "▁br ing",
+ "▁con cept",
+ "▁conce pt",
+ "▁j s",
+ "▁ js",
+ "▁Refer encias",
+ "em ble",
+ "emb le",
+ "embl e",
+ "▁ н",
+ "▁supp orted",
+ "▁support ed",
+ "▁ supported",
+ "Bi g",
+ "B ig",
+ "▁H ans",
+ "▁Ha ns",
+ "▁Han s",
+ "er v",
+ "e rv",
+ "▁M aj",
+ "▁Ma j",
+ "▁ar riv",
+ "▁arr iv",
+ "▁H ave",
+ "▁Ha ve",
+ "▁Hav e",
+ "▁ Have",
+ "▁prob ability",
+ "▁probabil ity",
+ "▁P op",
+ "▁Po p",
+ "▁ Pop",
+ "▁P ass",
+ "▁Pa ss",
+ "▁Pas s",
+ "▁ Pass",
+ "to ken",
+ "tok en",
+ "t oken",
+ "Pro vider",
+ "▁R a",
+ "Re ader",
+ "Read er",
+ "oot h",
+ "oo th",
+ "o oth",
+ "la p",
+ "l ap",
+ "▁ass ist",
+ "ad ow",
+ "ado w",
+ "▁t ests",
+ "▁test s",
+ "▁ tests",
+ "сс и",
+ "с си",
+ "▁k ing",
+ "▁ki ng",
+ "▁kin g",
+ "▁ king",
+ "lang le",
+ "lan gle",
+ "l angle",
+ "▁S um",
+ "▁Su m",
+ "▁ Sum",
+ "O IN",
+ "▁se curity",
+ "▁sec urity",
+ "▁ security",
+ "ni s",
+ "n is",
+ ".. /",
+ ". ./",
+ "▁bas ic",
+ "▁ basic",
+ "un ity",
+ "uni ty",
+ "unit y",
+ "` :",
+ "▁ко то",
+ "ko w",
+ "k ow",
+ "▁Bibli othèque",
+ "as ion",
+ "asi on",
+ "al o",
+ "a lo",
+ "if est",
+ "ife st",
+ "i fest",
+ "▁nov embre",
+ "▁p eu",
+ "▁pe u",
+ "▁ Ж",
+ "en schaft",
+ "ensch aft",
+ "cl us",
+ "c lus",
+ "ј у",
+ "He ight",
+ "ú n",
+ "▁t ur",
+ "▁tu r",
+ "▁ide as",
+ "▁idea s",
+ "▁c es",
+ "▁ce s",
+ "▁ ces",
+ "fr ak",
+ "fra k",
+ "f rak",
+ "▁pre mier",
+ "▁prem ier",
+ "▁premi er",
+ "it ation",
+ "ita tion",
+ "itat ion",
+ "▁s é",
+ "HT ML",
+ "▁Ro yal",
+ "▁Roy al",
+ "сь кої",
+ "сько ї",
+ "▁by te",
+ "▁ byte",
+ "P S",
+ "▁s egu",
+ "▁se gu",
+ "▁seg u",
+ "▁ segu",
+ "in en",
+ "ine n",
+ "i nen",
+ "▁Gre at",
+ "▁К у",
+ "▁ex ternal",
+ "▁ext ernal",
+ "▁extern al",
+ "▁ external",
+ "T itle",
+ "To p",
+ "T op",
+ "Pro cess",
+ "Proc ess",
+ "it ät",
+ "itä t",
+ "▁` /",
+ "▁se cret",
+ "▁sec ret",
+ "▁secre t",
+ "▁ secret",
+ "pos itory",
+ "▁pot ential",
+ "▁B ud",
+ "▁Bu d",
+ "name s",
+ "na mes",
+ "nam es",
+ "n ames",
+ "as ons",
+ "ason s",
+ "aso ns",
+ "stack exchange",
+ "back ground",
+ "пе р",
+ "п ер",
+ "со в",
+ "с ов",
+ "aft er",
+ "af ter",
+ "a fter",
+ "▁p ero",
+ "▁per o",
+ "▁pe ro",
+ "▁so ftware",
+ "▁soft ware",
+ "▁ software",
+ "▁s ed",
+ "▁se d",
+ "▁ sed",
+ "▁array s",
+ "▁arr ays",
+ "tm p",
+ "t mp",
+ "▁a sp",
+ "▁as p",
+ "▁ asp",
+ "sc ale",
+ "scal e",
+ "▁L at",
+ "▁La t",
+ "▁ Lat",
+ "an al",
+ "ana l",
+ "a nal",
+ "▁g em",
+ "▁ge m",
+ "▁ gem",
+ "P U",
+ "▁Al tri",
+ "▁Alt ri",
+ "Th at",
+ "T hat",
+ "▁Н и",
+ "if act",
+ "ifa ct",
+ "i fact",
+ "Add ress",
+ "▁s outh",
+ "▁so uth",
+ "▁sou th",
+ "▁sout h",
+ "▁form ula",
+ "▁Col leg",
+ "▁Coll eg",
+ "▁і н",
+ "▁ ін",
+ "kt ion",
+ "k tion",
+ "▁s ac",
+ "▁sa c",
+ "S H",
+ "aj o",
+ "a jo",
+ "et c",
+ "e tc",
+ "v c",
+ "` ](",
+ "▁D ur",
+ "▁Du r",
+ "▁М е",
+ "▁Sm ith",
+ "▁ Smith",
+ "it ems",
+ "ite ms",
+ "item s",
+ "C K",
+ "el o",
+ "e lo",
+ "▁pl ugin",
+ "▁plug in",
+ "▁ plugin",
+ "▁s erie",
+ "▁se rie",
+ "▁ser ie",
+ "▁ serie",
+ "ien ne",
+ "ienn e",
+ "i enne",
+ "▁и ли",
+ "Ma r",
+ "M ar",
+ "▁Im age",
+ "▁ Image",
+ "go t",
+ "g ot",
+ "an das",
+ "and as",
+ "anda s",
+ "▁mat ches",
+ "▁match es",
+ "▁ matches",
+ "▁w orth",
+ "▁wor th",
+ "▁ worth",
+ "▁D eb",
+ "▁De b",
+ "▁ Deb",
+ "▁c ache",
+ "▁ca che",
+ "▁ cache",
+ "▁f elt",
+ "▁fe lt",
+ "▁fel t",
+ "er sch",
+ "ers ch",
+ "iz es",
+ "ize s",
+ "i zes",
+ "Op er",
+ "O per",
+ "▁Jah re",
+ "▁Jahr e",
+ "▁Ja hre",
+ "▁comm une",
+ "▁commun e",
+ "th read",
+ "▁n y",
+ "▁ ny",
+ "de c",
+ "d ec",
+ "ou w",
+ "o uw",
+ "▁sur face",
+ "▁P or",
+ "▁Po r",
+ "▁St reet",
+ "▁Stre et",
+ "пр и",
+ "п ри",
+ "▁c andid",
+ "▁can did",
+ "▁cand id",
+ "▁Re turn",
+ "▁Ret urn",
+ "▁ Return",
+ "▁K om",
+ "▁Ko m",
+ "gr u",
+ "g ru",
+ "▁т и",
+ "▁ ти",
+ "[ \\",
+ "▁dep ends",
+ "▁depend s",
+ "▁in flu",
+ "▁inf lu",
+ "▁infl u",
+ "▁to wards",
+ "▁toward s",
+ "ain ed",
+ "ai ned",
+ "aine d",
+ "a ined",
+ "▁r ank",
+ "▁ran k",
+ "▁ rank",
+ "▁Janu ar",
+ "▁com ponents",
+ "▁compon ents",
+ "▁component s",
+ "▁ components",
+ "ge st",
+ "ges t",
+ "g est",
+ "getElement ById",
+ "▁check ed",
+ "▁ checked",
+ "air s",
+ "ai rs",
+ "a irs",
+ "jo in",
+ "j oin",
+ "▁d ead",
+ "▁de ad",
+ "▁h it",
+ "▁hi t",
+ "▁ hit",
+ "én y",
+ "é ny",
+ "▁equ ivalent",
+ "▁equival ent",
+ "▁П ре",
+ "▁app ropri",
+ "Pa ss",
+ "P ass",
+ "▁pr imer",
+ "▁prim er",
+ "▁pri mer",
+ "▁prime r",
+ "engl isch",
+ "▁app ar",
+ "▁ap par",
+ "▁D uring",
+ "▁Du ring",
+ "▁Dur ing",
+ "▁know ledge",
+ "▁tr igger",
+ "▁trig ger",
+ "▁ trigger",
+ "▁c ore",
+ "▁cor e",
+ "▁co re",
+ "▁ core",
+ "▁O l",
+ "▁P rodu",
+ "▁Pro du",
+ "▁Pr odu",
+ "▁ Produ",
+ "▁F ern",
+ "▁Fe rn",
+ "▁Fer n",
+ "▁ Fern",
+ "▁на ча",
+ "▁ нача",
+ "T e",
+ "▁M ot",
+ "▁Mo t",
+ "er ve",
+ "erv e",
+ "тв о",
+ "т во",
+ "▁m id",
+ "▁mi d",
+ "▁ mid",
+ "▁fin ally",
+ "▁final ly",
+ "air es",
+ "ai res",
+ "aire s",
+ "a ires",
+ "▁es pecially",
+ "▁espe cially",
+ "▁especial ly",
+ "▁t ut",
+ "▁tu t",
+ "▁rece ive",
+ "ad re",
+ "adr e",
+ "▁ne igh",
+ "▁nei gh",
+ "kt et",
+ "kte t",
+ "il de",
+ "ild e",
+ "▁rad io",
+ "▁radi o",
+ "▁ radio",
+ "▁d river",
+ "▁dr iver",
+ "▁drive r",
+ "▁dri ver",
+ "▁driv er",
+ "▁ driver",
+ "ли сь",
+ "end encies",
+ "enden cies",
+ "▁I E",
+ "▁ IE",
+ "▁s aved",
+ "▁sa ved",
+ "▁sav ed",
+ "▁save d",
+ "▁ saved",
+ "ff ect",
+ "ffe ct",
+ "f fect",
+ "▁Way back",
+ "ia t",
+ "i at",
+ "▁p adding",
+ "▁pad ding",
+ "▁ padding",
+ "wind ow",
+ "w indow",
+ "ти че",
+ "▁m ur",
+ "▁mu r",
+ "ac tor",
+ "act or",
+ "a ctor",
+ "▁H an",
+ "▁Ha n",
+ "он аль",
+ "она ль",
+ "о наль",
+ "▁g ar",
+ "▁ga r",
+ "▁ gar",
+ "▁famil jen",
+ "ó s",
+ "▁n ationale",
+ "▁national e",
+ "▁nation ale",
+ "▁nat ionale",
+ "▁p ré",
+ "▁pr é",
+ "de d",
+ "d ed",
+ "on al",
+ "ona l",
+ "o nal",
+ "▁Pres ident",
+ "▁\\ ,",
+ "▁ \\,",
+ "▁place d",
+ "▁pla ced",
+ "er ni",
+ "ern i",
+ "▁sign al",
+ "▁sig nal",
+ "▁ signal",
+ "na b",
+ "n ab",
+ "h m",
+ "Mo n",
+ "M on",
+ "▁v s",
+ "▁ vs",
+ "S C",
+ "▁proget ti",
+ "▁ Ü",
+ "▁for ms",
+ "▁form s",
+ "▁ forms",
+ "▁message s",
+ "▁mess ages",
+ "▁ messages",
+ "in f",
+ "us ers",
+ "use rs",
+ "user s",
+ "u sers",
+ "GE T",
+ "G ET",
+ "▁d els",
+ "▁de ls",
+ "▁del s",
+ "Col lection",
+ "Coll ection",
+ "Collect ion",
+ "▁G ood",
+ "▁Go od",
+ "▁ Good",
+ "▁May be",
+ "▁ Maybe",
+ "▁com pr",
+ "▁comp r",
+ "▁lar ger",
+ "▁large r",
+ "▁larg er",
+ "gr es",
+ "gre s",
+ "g res",
+ "ap er",
+ "ape r",
+ "a per",
+ "▁П ри",
+ "un des",
+ "und es",
+ "unde s",
+ "▁s ea",
+ "▁se a",
+ "▁S pring",
+ "▁Sp ring",
+ "▁Spr ing",
+ "▁ Spring",
+ "ul o",
+ "u lo",
+ "▁me chan",
+ "▁s ans",
+ "▁sa ns",
+ "▁san s",
+ "G B",
+ "Val id",
+ "▁comm unic",
+ "▁commun ic",
+ "▁ communic",
+ "▁p ra",
+ "▁pr a",
+ "vi er",
+ "vie r",
+ "v ier",
+ "▁С е",
+ "▁a in",
+ "▁ai n",
+ "▁ ain",
+ "ту ра",
+ "тур а",
+ "ko m",
+ "k om",
+ "sk iego",
+ "ski ego",
+ "skie go",
+ "ко во",
+ "ков о",
+ "к ово",
+ "ad ata",
+ "ada ta",
+ "a data",
+ "▁Р е",
+ "▁bo olean",
+ "▁ boolean",
+ "se ts",
+ "set s",
+ "s ets",
+ "▁eff ort",
+ ". [",
+ "▁z ostał",
+ "P A",
+ "▁V ict",
+ "▁Vi ct",
+ "▁Vic t",
+ "S D",
+ "ow ał",
+ "owa ł",
+ "▁e mb",
+ "▁em b",
+ "▁ emb",
+ "▁pr ima",
+ "▁prim a",
+ "▁pri ma",
+ "▁h our",
+ "▁ho ur",
+ "▁ hour",
+ "sub section",
+ "▁F ort",
+ "▁For t",
+ "▁Fo rt",
+ "math frak",
+ "ig in",
+ "igi n",
+ "i gin",
+ "G L",
+ ") +",
+ "f i",
+ "▁an ci",
+ "▁anc i",
+ "▁ anci",
+ "▁p an",
+ "▁pa n",
+ "▁ pan",
+ "\\ )",
+ "▁l ug",
+ "▁lu g",
+ "▁dep loy",
+ "▁ deploy",
+ "do main",
+ "dom ain",
+ "▁s light",
+ "▁sl ight",
+ "JS ON",
+ "J SON",
+ "▁mor ning",
+ "▁h i",
+ "▁ hi",
+ "▁comp are",
+ "▁compar e",
+ "▁ compare",
+ "ij e",
+ "i je",
+ "▁bl ue",
+ "▁ blue",
+ "▁A c",
+ "▁ Ac",
+ "▁m iddle",
+ "▁ middle",
+ "an den",
+ "and en",
+ "ande n",
+ "▁sh ared",
+ "▁share d",
+ "▁ shared",
+ "▁C amp",
+ "▁Cam p",
+ "▁Ca mp",
+ "▁ Á",
+ "ound ed",
+ "oun ded",
+ "u w",
+ "ier ung",
+ "St ack",
+ "▁e ines",
+ "▁ein es",
+ "▁eine s",
+ "▁D a",
+ "▁ Da",
+ "li j",
+ "l ij",
+ "en ti",
+ "ent i",
+ "▁ й",
+ "U til",
+ "▁exper ience",
+ "▁experien ce",
+ "▁a wait",
+ "▁aw ait",
+ "▁ await",
+ "ul s",
+ "u ls",
+ "▁request s",
+ "▁requ ests",
+ "▁ requests",
+ "▁im pos",
+ "▁imp os",
+ "▁const raint",
+ "▁ constraint",
+ "Ch ange",
+ "em ph",
+ "emp h",
+ "бе р",
+ "б ер",
+ "▁An other",
+ "C ustom",
+ "▁signific ant",
+ "▁significa nt",
+ "c r",
+ "▁mill ion",
+ "re ek",
+ "ree k",
+ "▁d alla",
+ "▁da lla",
+ "▁dal la",
+ "▁dall a",
+ "▁G erm",
+ "▁Ge rm",
+ "▁Ger m",
+ "ot al",
+ "ota l",
+ "o tal",
+ "at eur",
+ "ate ur",
+ "bt n",
+ "b tn",
+ "▁th inking",
+ "▁think ing",
+ "▁thin king",
+ "▁inter val",
+ "▁ interval",
+ "on ne",
+ "onn e",
+ "▁l iv",
+ "▁li v",
+ "▁ liv",
+ "() :",
+ "( ):",
+ "▁В е",
+ "o e",
+ "▁E v",
+ "me ta",
+ "met a",
+ "m eta",
+ "▁b road",
+ "▁bro ad",
+ "Re m",
+ "R em",
+ "ap ply",
+ "app ly",
+ "a pply",
+ "▁cou ple",
+ "▁coup le",
+ "▁te chni",
+ "▁techn i",
+ "id ades",
+ "ida des",
+ "idad es",
+ "idade s",
+ "▁go al",
+ "▁ goal",
+ "▁C D",
+ "▁ CD",
+ "ha b",
+ "h ab",
+ "▁ex plan",
+ "▁exp lan",
+ "▁expla n",
+ "▁expl an",
+ "an ner",
+ "ann er",
+ "anne r",
+ "▁B ecause",
+ "bl og",
+ "blo g",
+ "b log",
+ "include graphics",
+ "▁vo ice",
+ "▁ voice",
+ "▁M ap",
+ "▁Ma p",
+ "▁ Map",
+ "vent ion",
+ "ven tion",
+ "v ention",
+ "S ession",
+ "▁L iens",
+ "▁Li ens",
+ "▁Lie ns",
+ "▁s or",
+ "▁so r",
+ "c ategory",
+ "ash ington",
+ "▁Mär z",
+ "po p",
+ "p op",
+ "il let",
+ "ill et",
+ "ille t",
+ "▁z wei",
+ "▁zwe i",
+ "▁zw ei",
+ "▁L ie",
+ "▁Li e",
+ "N ull",
+ "add ress",
+ "addr ess",
+ "▁f actor",
+ "▁fact or",
+ "▁fa ctor",
+ "▁fac tor",
+ "▁ factor",
+ "▁l igne",
+ "▁lig ne",
+ "▁HT TP",
+ "▁ HTTP",
+ "▁s uf",
+ "▁su f",
+ "▁person al",
+ "▁pers onal",
+ "▁persona l",
+ "ci p",
+ "c ip",
+ "▁D ar",
+ "▁Da r",
+ "▁a dm",
+ "▁ad m",
+ "ко й",
+ "▁E xt",
+ "▁Ex t",
+ "▁ Ext",
+ "▁g od",
+ "▁go d",
+ "▁ god",
+ "a a",
+ "R ight",
+ "ét é",
+ "é té",
+ "▁d ynamic",
+ "▁dynam ic",
+ "▁ dynamic",
+ "▁main tain",
+ "to r",
+ "t or",
+ "#### ####",
+ "▁F ra",
+ "▁Fr a",
+ "▁cho ice",
+ "▁ choice",
+ "▁с то",
+ "▁ст о",
+ "▁ сто",
+ "С Р",
+ "▁F eder",
+ "▁Fe der",
+ "▁Fed er",
+ "st on",
+ "sto n",
+ "s ton",
+ "▁f lag",
+ "▁fl ag",
+ "▁fla g",
+ "▁ flag",
+ "ki t",
+ "k it",
+ "Mod ule",
+ "▁с по",
+ "▁сп о",
+ "▁ спо",
+ "▁S tra",
+ "▁St ra",
+ "▁Str a",
+ "ic ks",
+ "ick s",
+ "i cks",
+ "▁h aven",
+ "▁ha ven",
+ "▁have n",
+ "▁hav en",
+ "▁M ass",
+ "▁Ma ss",
+ "▁Mas s",
+ "▁E mp",
+ "▁Em p",
+ "▁ Emp",
+ "▁P i",
+ "▁ Pi",
+ "▁P en",
+ "▁Pe n",
+ "Re ct",
+ "Rec t",
+ "R ect",
+ "▁K r",
+ "it at",
+ "ita t",
+ "i tat",
+ "el er",
+ "ele r",
+ "e ler",
+ "я бря",
+ "it et",
+ "ite t",
+ "▁St art",
+ "▁Sta rt",
+ "▁Star t",
+ "▁ Start",
+ "▁produ ced",
+ "▁produce d",
+ "▁по л",
+ "▁ пол",
+ "( _",
+ "▁de let",
+ "▁del et",
+ "▁h ot",
+ "▁ho t",
+ "▁ hot",
+ "▁Gesch ichte",
+ "~ ~",
+ "▁month s",
+ "▁mont hs",
+ "▁t od",
+ "▁to d",
+ "▁ tod",
+ "▁н и",
+ "▁ ни",
+ "ú s",
+ "te mp",
+ "tem p",
+ "t emp",
+ "▁D ez",
+ "▁De z",
+ "ype s",
+ "yp es",
+ "y pes",
+ "▁c ui",
+ "▁cu i",
+ "om mun",
+ "omm un",
+ "act ions",
+ "action s",
+ "a ctions",
+ "▁e igen",
+ "▁eig en",
+ "▁immedi ately",
+ "▁immediate ly",
+ "P L",
+ "▁Г о",
+ "▁B al",
+ "▁Ba l",
+ "▁ Bal",
+ "љ е",
+ "ul ui",
+ "ulu i",
+ "▁on line",
+ "▁ online",
+ "▁a ños",
+ "▁añ os",
+ "▁año s",
+ "▁name space",
+ "▁names pace",
+ "▁ namespace",
+ "▁m ond",
+ "▁mon d",
+ "▁mo nd",
+ "▁ mond",
+ "▁B ase",
+ "▁Bas e",
+ "▁Ba se",
+ "▁ Base",
+ "▁Can ada",
+ "▁Canad a",
+ "et zt",
+ "etz t",
+ "} -",
+ "▁de fin",
+ "▁def in",
+ "▁ defin",
+ "▁dou bt",
+ "▁doub t",
+ "▁inv estig",
+ "▁invest ig",
+ "view s",
+ "vie ws",
+ "▁L ine",
+ "▁Li ne",
+ "▁Lin e",
+ "▁ Line",
+ "▁st age",
+ "▁sta ge",
+ "▁stag e",
+ "▁ stage",
+ "ett ings",
+ "ub re",
+ "u bre",
+ "f loat",
+ "▁P lay",
+ "▁Pl ay",
+ "▁Pla y",
+ "▁ Play",
+ "▁L as",
+ "▁La s",
+ "pt r",
+ "p tr",
+ "▁be comes",
+ "▁become s",
+ "▁becom es",
+ "est amp",
+ "esta mp",
+ "▁in dependent",
+ "▁indep endent",
+ "▁independ ent",
+ "▁anal ysis",
+ "▁ analysis",
+ "▁L ook",
+ "▁Lo ok",
+ "▁ Look",
+ "la in",
+ "l ain",
+ "▁ра с",
+ "Re ference",
+ "▁s orry",
+ "▁sor ry",
+ "▁supp osed",
+ "▁suppose d",
+ "▁sup posed",
+ "û t",
+ "▁deg ree",
+ "ut z",
+ "u tz",
+ "M M",
+ "▁des ired",
+ "▁desire d",
+ "ł y",
+ "▁l en",
+ "▁le n",
+ "▁ len",
+ "▁al one",
+ "▁ alone",
+ "sign ed",
+ "sig ned",
+ "s igned",
+ "▁S ta",
+ "▁St a",
+ "Per son",
+ "Pers on",
+ "P erson",
+ "▁app lied",
+ "▁B ack",
+ "▁Ba ck",
+ "▁Bac k",
+ "▁ Back",
+ "▁m ars",
+ "▁ma rs",
+ "▁mar s",
+ "Par t",
+ "Pa rt",
+ "P art",
+ "▁D id",
+ "▁Di d",
+ "▁ Did",
+ "▁extern es",
+ "▁externe s",
+ "▁n p",
+ "▁ np",
+ "on go",
+ "ong o",
+ "▁e sta",
+ "▁est a",
+ "▁es ta",
+ "▁ esta",
+ "Bl ock",
+ "B lock",
+ "▁p ou",
+ "▁po u",
+ "ad ores",
+ "ado res",
+ "ador es",
+ "▁St udio",
+ "▁Stud io",
+ "▁ Studio",
+ ". $",
+ "▁re ached",
+ "▁reach ed",
+ "bo t",
+ "b ot",
+ "▁J uni",
+ "▁Ju ni",
+ "▁Jun i",
+ "to ns",
+ "ton s",
+ "t ons",
+ "it el",
+ "ite l",
+ "i tel",
+ "▁G ar",
+ "▁Ga r",
+ "▁art icles",
+ "▁article s",
+ "▁ articles",
+ "▁D istrict",
+ "▁Dist rict",
+ "▁tr ouble",
+ "▁trou ble",
+ "li de",
+ "l ide",
+ "▁F ound",
+ "▁Fou nd",
+ "▁Fo und",
+ "▁ Found",
+ "á d",
+ "▁e quip",
+ "▁equ ip",
+ "▁in ternal",
+ "▁int ernal",
+ "▁inter nal",
+ "▁intern al",
+ "▁ internal",
+ "'] ,",
+ "' ],",
+ "▁a sync",
+ "▁as ync",
+ "▁ async",
+ "U B",
+ "ge l",
+ "g el",
+ "▁a i",
+ "▁ ai",
+ "ens ure",
+ "▁app eared",
+ "▁appear ed",
+ "▁appe ared",
+ "▁$ _",
+ "▁ $_",
+ "▁max imum",
+ "▁maxim um",
+ "▁С и",
+ "р ь",
+ "▁ann oun",
+ "▁anno un",
+ "ла сь",
+ "▁c m",
+ "▁ cm",
+ "га н",
+ "г ан",
+ "au pt",
+ "a upt",
+ "▁l atter",
+ "▁lat ter",
+ "▁pl atform",
+ "▁plat form",
+ "▁ platform",
+ "▁d ra",
+ "▁dr a",
+ "▁ dra",
+ "▁cap ital",
+ "▁capit al",
+ "▁sol ved",
+ "▁solve d",
+ "ri z",
+ "r iz",
+ "ed ic",
+ "edi c",
+ "e dic",
+ "▁M ur",
+ "▁Mu r",
+ "▁T op",
+ "▁To p",
+ "▁ Top",
+ "т ся",
+ "Pa nel",
+ "Pane l",
+ "Pan el",
+ "P anel",
+ "ru le",
+ "r ule",
+ "et ic",
+ "eti c",
+ "▁R en",
+ "▁Re n",
+ "▁Wik imedia",
+ "▁ Wikimedia",
+ "▁T O",
+ "▁ TO",
+ "se cond",
+ "sec ond",
+ "is l",
+ "i sl",
+ "▁h y",
+ "▁ hy",
+ "▁n iet",
+ "▁nie t",
+ "▁ni et",
+ "▁lo aded",
+ "▁load ed",
+ "▁ loaded",
+ "di g",
+ "d ig",
+ "▁ma yo",
+ "▁may o",
+ "[ :",
+ "Ac c",
+ "A cc",
+ "▁b ek",
+ "▁be k",
+ "▁ bek",
+ "ни ю",
+ "lo gin",
+ "log in",
+ "t x",
+ "▁F ur",
+ "▁Fu r",
+ "▁S anta",
+ "▁San ta",
+ "▁Sant a",
+ "az z",
+ "a zz",
+ "▁con duct",
+ "▁cond uct",
+ "▁condu ct",
+ "▁In dia",
+ "▁Ind ia",
+ "Or der",
+ "Ord er",
+ "ir th",
+ "irt h",
+ "t w",
+ "} +",
+ "▁w ieder",
+ "▁wie der",
+ "▁E du",
+ "▁Ed u",
+ "A V",
+ "▁` ``",
+ "▁`` `",
+ "▁ ```",
+ "▁man ually",
+ "▁manual ly",
+ "▁R ead",
+ "▁Re ad",
+ "▁ Read",
+ "fortun ately",
+ "▁R un",
+ "▁Ru n",
+ "▁ Run",
+ "▁A ward",
+ "▁Aw ard",
+ "▁F oot",
+ "▁Foo t",
+ "▁Fo ot",
+ "▁ Foot",
+ "* )",
+ "par ams",
+ "param s",
+ "pa rams",
+ "para ms",
+ "п і",
+ "▁n ative",
+ "▁nat ive",
+ "▁ native",
+ "ri ft",
+ "rif t",
+ "r ift",
+ "▁ ä",
+ "AT H",
+ "A TH",
+ "▁your self",
+ "▁yours elf",
+ "▁p rior",
+ "▁pr ior",
+ "▁pri or",
+ "▁c it",
+ "▁ci t",
+ "▁ cit",
+ "ä h",
+ "▁tre at",
+ "▁me as",
+ "rib uted",
+ "ribute d",
+ "ribu ted",
+ "▁c lar",
+ "▁cl ar",
+ "▁cla r",
+ "▁ clar",
+ "ca rd",
+ "car d",
+ "c ard",
+ "RO R",
+ "R OR",
+ "il les",
+ "ill es",
+ "ille s",
+ "i lles",
+ "▁l ayer",
+ "▁la yer",
+ "▁lay er",
+ "▁ layer",
+ "au er",
+ "a uer",
+ "▁r at",
+ "▁ra t",
+ "▁ rat",
+ "bern ate",
+ "▁st ato",
+ "▁stat o",
+ "▁sta to",
+ "▁Ch ina",
+ "▁Chi na",
+ "▁$ ('#",
+ "▁$(' #",
+ "▁n aar",
+ "▁na ar",
+ "zi p",
+ "z ip",
+ "▁$ {\\",
+ "▁${ \\",
+ "▁appreci ated",
+ "▁appreciate d",
+ "▁и ме",
+ "▁им е",
+ "ż y",
+ "▁prze z",
+ "▁prz ez",
+ "▁Ind ian",
+ "▁India n",
+ "▁T od",
+ "▁To d",
+ "▁S ource",
+ "▁ Source",
+ "▁дру ги",
+ "in ternal",
+ "int ernal",
+ "inter nal",
+ "intern al",
+ "ion ale",
+ "ional e",
+ "iona le",
+ "Pro duct",
+ "Produ ct",
+ "▁M en",
+ "▁Me n",
+ "▁ Men",
+ "▁u pper",
+ "▁up per",
+ "▁upp er",
+ "▁ upper",
+ "▁E very",
+ "▁Ev ery",
+ "▁Ever y",
+ "▁ Every",
+ "}, \\",
+ "} ,\\",
+ "▁print f",
+ "▁prin tf",
+ "▁ printf",
+ "▁contin ued",
+ "▁continu ed",
+ "▁continue d",
+ "▁n odes",
+ "▁no des",
+ "▁node s",
+ "▁nod es",
+ "▁ nodes",
+ "л ки",
+ "▁n ice",
+ "▁ni ce",
+ "▁nic e",
+ "▁ nice",
+ "mod ules",
+ "module s",
+ "ei gn",
+ "e ign",
+ "▁M ex",
+ "▁Me x",
+ "▁Acc ording",
+ "▁un defined",
+ "▁und efined",
+ "▁ undefined",
+ "▁b inary",
+ "▁bin ary",
+ "▁ binary",
+ "cu t",
+ "c ut",
+ "Cur rent",
+ "C urrent",
+ "ed y",
+ "e dy",
+ "}} {",
+ "} }{",
+ "ble s",
+ "bl es",
+ "b les",
+ "▁во й",
+ "▁ вой",
+ "sc ri",
+ "scr i",
+ "s cri",
+ "eq n",
+ "Ch anged",
+ "Change d",
+ "▁kö z",
+ "▁rem ote",
+ "▁ remote",
+ "в ля",
+ "▁qu el",
+ "▁que l",
+ "▁q uel",
+ "▁ quel",
+ "▁al ign",
+ "▁ali gn",
+ "▁ align",
+ "▁п ар",
+ "▁па р",
+ "▁ пар",
+ "S V",
+ "ye r",
+ "y er",
+ "▁Cal iforn",
+ "▁p laces",
+ "▁pl aces",
+ "▁place s",
+ "▁pla ces",
+ "▁prim ary",
+ "▁pri mary",
+ "▁prima ry",
+ "▁ primary",
+ "▁con v",
+ "▁ conv",
+ "▁J uli",
+ "▁Jul i",
+ "▁Ju li",
+ "▁vis ual",
+ "▁ visual",
+ "▁S elect",
+ "▁Se lect",
+ "▁Sel ect",
+ "▁Sele ct",
+ "▁ Select",
+ "at ory",
+ "ator y",
+ "ato ry",
+ "= (",
+ "is er",
+ "ise r",
+ "i ser",
+ "▁int ent",
+ "▁inte nt",
+ "▁inten t",
+ "▁ intent",
+ "su r",
+ "s ur",
+ "cont ainer",
+ "ic ed",
+ "ice d",
+ "i ced",
+ "▁bo ard",
+ "▁ board",
+ "as tr",
+ "ast r",
+ "a str",
+ "om ial",
+ "omi al",
+ "ве т",
+ "в ет",
+ "з ва",
+ "▁c ru",
+ "▁cr u",
+ "▁Ok tober",
+ "sa ve",
+ "s ave",
+ "▁gre ater",
+ "▁great er",
+ "▁in n",
+ "▁i nn",
+ "▁ inn",
+ "▁p icture",
+ "▁ picture",
+ "▁Т о",
+ "▁obtain ed",
+ "▁obt ained",
+ "Wik imedia",
+ "ú blic",
+ "▁l ors",
+ "▁lo rs",
+ "▁m ont",
+ "▁mon t",
+ "▁mo nt",
+ "▁ mont",
+ "ob re",
+ "o bre",
+ "▁c ivil",
+ "▁ci vil",
+ "▁civ il",
+ "▁const ruction",
+ "▁construct ion",
+ "▁constru ction",
+ "▁W elt",
+ "▁We lt",
+ "▁Wel t",
+ "▁U nder",
+ "▁Un der",
+ "▁Und er",
+ "▁ Under",
+ "und ert",
+ "under t",
+ "unde rt",
+ "▁ed ge",
+ "▁ edge",
+ "▁L iste",
+ "▁List e",
+ "▁Li ste",
+ "▁Lis te",
+ "cs v",
+ "c sv",
+ "▁ex periment",
+ "▁exper iment",
+ "local host",
+ "▁E dit",
+ "▁Ed it",
+ "▁ Edit",
+ "gr eg",
+ "gre g",
+ "g reg",
+ "ov á",
+ "o vá",
+ "љ а",
+ "ms g",
+ "m sg",
+ "▁G reen",
+ "▁Gr een",
+ "▁Gre en",
+ "▁Gree n",
+ "▁ Green",
+ "Di alog",
+ "D ialog",
+ "Id ent",
+ "I dent",
+ "▁J S",
+ "▁ JS",
+ "^{ (",
+ "^ {(",
+ "▁slä ktet",
+ "__ __",
+ "___ _",
+ "_ ___",
+ "Pro ject",
+ "▁bes kre",
+ "▁b er",
+ "▁be r",
+ "▁ ber",
+ "▁would n",
+ "▁re act",
+ "▁ react",
+ "He l",
+ "H el",
+ "z w",
+ "▁W ashington",
+ "or ie",
+ "ori e",
+ "o rie",
+ "ta sk",
+ "t ask",
+ "▁c ategory",
+ "▁categ ory",
+ "▁categor y",
+ "▁ category",
+ "▁art ist",
+ "an no",
+ "ann o",
+ "▁o ok",
+ "▁ ook",
+ "am men",
+ "amm en",
+ "▁Min ister",
+ "▁de clar",
+ "▁dec lar",
+ "▁decl ar",
+ "▁decla r",
+ "▁K ey",
+ "▁Ke y",
+ "▁ Key",
+ ", .",
+ "▁m ach",
+ "▁ma ch",
+ "▁mac h",
+ "▁w w",
+ "▁ ww",
+ "is en",
+ "ise n",
+ "i sen",
+ "Fr an",
+ "F ran",
+ "▁Ро сси",
+ "▁Рос си",
+ "бо р",
+ "б ор",
+ "т ри",
+ "▁r ock",
+ "▁ro ck",
+ "▁ rock",
+ "qu is",
+ "qui s",
+ "q uis",
+ "mo s",
+ "m os",
+ "пе ра",
+ "пер а",
+ "п ера",
+ "▁est erni",
+ "▁g old",
+ "▁go ld",
+ "▁gol d",
+ "Window s",
+ "W indows",
+ "% %",
+ "▁part ial",
+ "▁parti al",
+ "▁ partial",
+ "▁we ight",
+ "▁ weight",
+ "▁s pr",
+ "▁sp r",
+ "▁ spr",
+ "}) .",
+ "} ).",
+ "▁fran çais",
+ "fu n",
+ "f un",
+ "▁th ous",
+ "▁thou s",
+ "ho lder",
+ "hol der",
+ "hold er",
+ "h older",
+ "▁g one",
+ "▁go ne",
+ "▁ Č",
+ "▁re nd",
+ "▁r end",
+ "▁ren d",
+ "▁ rend",
+ "D A",
+ "▁answer ed",
+ "▁F alse",
+ "▁Fal se",
+ "▁ False",
+ "B uffer",
+ "▁d augh",
+ "▁da ugh",
+ ".- -",
+ ". --",
+ "▁S how",
+ "▁Sh ow",
+ "▁Sho w",
+ "▁ Show",
+ "▁re ct",
+ "▁r ect",
+ "▁rec t",
+ "▁ rect",
+ "▁K re",
+ "▁Kr e",
+ "d r",
+ "os oph",
+ "oso ph",
+ "▁y ield",
+ "ur ity",
+ "uri ty",
+ "to String",
+ "av al",
+ "ava l",
+ "a val",
+ "Po l",
+ "P ol",
+ "▁l ock",
+ "▁lo ck",
+ "▁loc k",
+ "▁ lock",
+ "im ation",
+ "ima tion",
+ "imat ion",
+ "ant ic",
+ "anti c",
+ "Lo cal",
+ "Loc al",
+ "L ocal",
+ "▁beskre vs",
+ "it és",
+ "ité s",
+ "gr id",
+ "g rid",
+ "у т",
+ "▁_ {",
+ "▁ _{",
+ "с і",
+ "FI LE",
+ "▁к м",
+ "▁spe ak",
+ "sum mary",
+ "pr op",
+ "pro p",
+ "p rop",
+ "java script",
+ "j avascript",
+ "z k",
+ "izont al",
+ "izon tal",
+ "▁tr ois",
+ "▁tro is",
+ "▁R od",
+ "▁Ro d",
+ "pr ise",
+ "ро во",
+ "ров о",
+ "р ово",
+ "▁o dd",
+ "▁od d",
+ "▁ odd",
+ "▁g est",
+ "▁ge st",
+ "▁ges t",
+ "▁ gest",
+ "▁produ ce",
+ "▁prod uce",
+ "▁w aar",
+ "▁wa ar",
+ "▁A v",
+ "▁ Av",
+ "ri bu",
+ "rib u",
+ "ва ння",
+ "ван ня",
+ "▁fin ished",
+ "▁finish ed",
+ "▁ad apt",
+ "▁S ar",
+ "▁Sa r",
+ "text it",
+ "tex tit",
+ "▁C e",
+ "▁F a",
+ "▁ Fa",
+ "os en",
+ "ose n",
+ "o sen",
+ "▁de riv",
+ "▁der iv",
+ "▁s hip",
+ "▁sh ip",
+ "▁ ship",
+ "▁o pin",
+ "▁op in",
+ "▁E ven",
+ "▁Ev en",
+ "ge sch",
+ "ges ch",
+ "g esch",
+ "▁supp ose",
+ "▁sup pose",
+ "▁F er",
+ "▁Fe r",
+ "ско е",
+ "▁w orden",
+ "▁word en",
+ "▁wor den",
+ "se y",
+ "s ey",
+ "hl ine",
+ "h line",
+ "▁Un ion",
+ "▁ Union",
+ "▁/ **",
+ "▁/* *",
+ "▁ /**",
+ "▁v ez",
+ "▁ve z",
+ "▁ vez",
+ "▁Colleg amenti",
+ "▁Soci ety",
+ "▁Soc iety",
+ "▁e conom",
+ "▁econ om",
+ "▁ec onom",
+ "š í",
+ "o i",
+ "▁or ient",
+ "▁ orient",
+ "▁T eil",
+ "▁Te il",
+ "re nt",
+ "ren t",
+ "r ent",
+ "ле кс",
+ "лек с",
+ "▁s olid",
+ "▁sol id",
+ "▁c art",
+ "▁car t",
+ "▁ca rt",
+ "▁ cart",
+ "******** ********",
+ "▁c ab",
+ "▁ca b",
+ "▁M essage",
+ "▁Mess age",
+ "▁ Message",
+ "do ts",
+ "dot s",
+ "d ots",
+ "▁é g",
+ "▁ ég",
+ "▁t we",
+ "▁tw e",
+ "ag a",
+ "a ga",
+ "▁n az",
+ "▁na z",
+ "▁M icrosoft",
+ "▁Micro soft",
+ "▁ Microsoft",
+ "▁under arter",
+ "pp en",
+ "ppe n",
+ "p pen",
+ "▁re cent",
+ "▁rec ent",
+ "▁rece nt",
+ "▁n et",
+ "▁ne t",
+ "▁ net",
+ "▁res ources",
+ "▁resource s",
+ "▁ resources",
+ "St e",
+ "S te",
+ ". \\",
+ "▁S O",
+ "▁ SO",
+ "ло м",
+ "л ом",
+ "▁c ele",
+ "▁ce le",
+ "▁cel e",
+ "▁l ic",
+ "▁li c",
+ "▁ lic",
+ "▁ben ef",
+ "▁bene f",
+ "ld ots",
+ "l dots",
+ "▁se rial",
+ "▁ser ial",
+ "▁seria l",
+ "▁ serial",
+ "In teger",
+ "cl es",
+ "cle s",
+ "c les",
+ "▁m iles",
+ "▁mil es",
+ "▁mi les",
+ "▁mile s",
+ "▁A le",
+ "▁Al e",
+ "▁en tered",
+ "▁ent ered",
+ "▁enter ed",
+ "▁T wo",
+ "▁Tw o",
+ "▁ Two",
+ "wi e",
+ "w ie",
+ "▁in cludes",
+ "▁incl udes",
+ "▁includ es",
+ "▁include s",
+ "▁inclu des",
+ "▁ includes",
+ "▁E ach",
+ "▁ Each",
+ "el ling",
+ "ell ing",
+ "elli ng",
+ "qu er",
+ "que r",
+ "q uer",
+ "▁D om",
+ "▁Do m",
+ "▁ Dom",
+ "p f",
+ "W S",
+ "▁stra ight",
+ "▁S tan",
+ "▁St an",
+ "▁Sta n",
+ "▁n os",
+ "▁no s",
+ "▁ nos",
+ "í cul",
+ "at ro",
+ "atr o",
+ "▁C enter",
+ "▁Cent er",
+ "▁ Center",
+ "F T",
+ "▁In ga",
+ "▁Ing a",
+ "il o",
+ "i lo",
+ "▁w ww",
+ "▁ww w",
+ "▁ www",
+ "js fiddle",
+ "ni c",
+ "n ic",
+ "▁Europe an",
+ "▁com mer",
+ "▁comm er",
+ "▁comme r",
+ "▁g irl",
+ "▁gi rl",
+ "▁gir l",
+ "to tal",
+ "tot al",
+ "t otal",
+ "▁S tar",
+ "▁St ar",
+ "▁Sta r",
+ "▁ Star",
+ "▁sugg ested",
+ "▁suggest ed",
+ "pa l",
+ "p al",
+ "▁zw ischen",
+ "пи са",
+ "пис а",
+ "I M",
+ "▁hand ler",
+ "▁handle r",
+ "▁ handler",
+ "▁Pro gram",
+ "▁Pr ogram",
+ "▁ Program",
+ "xs l",
+ "x sl",
+ "ál y",
+ "á ly",
+ "B U",
+ ",- -",
+ ", --",
+ "▁v id",
+ "▁vi d",
+ "▁ vid",
+ "▁estab lished",
+ "▁establish ed",
+ "▁S piel",
+ "▁Sp iel",
+ "om etry",
+ "ome try",
+ "omet ry",
+ "un es",
+ "une s",
+ "u nes",
+ "▁s it",
+ "▁si t",
+ "▁in her",
+ "▁p uis",
+ "▁pu is",
+ "▁ puis",
+ "▁ être",
+ "▁M ost",
+ "▁Mo st",
+ "▁Mos t",
+ "He ader",
+ "Head er",
+ "in sert",
+ "ins ert",
+ "▁s ist",
+ "▁si st",
+ "▁f avor",
+ "▁fa vor",
+ "▁fav or",
+ "de st",
+ "des t",
+ "d est",
+ "▁ent ity",
+ "▁ entity",
+ "Ca l",
+ "C al",
+ "▁There fore",
+ "D D",
+ "; ;",
+ "▁Dez ember",
+ "▁R h",
+ "im ents",
+ "iment s",
+ "imen ts",
+ "i ments",
+ "▁return ing",
+ "st o",
+ "s to",
+ "▁Val ue",
+ "▁ Value",
+ "▁l iber",
+ "▁li ber",
+ "▁lib er",
+ "▁Res ult",
+ "▁ Result",
+ "▁b ind",
+ "▁bi nd",
+ "▁bin d",
+ "▁ bind",
+ "vo ir",
+ "v oir",
+ "▁T im",
+ "▁Ti m",
+ "▁ Tim",
+ "▁M ovie",
+ "▁Mo vie",
+ "▁Mov ie",
+ "▁ Movie",
+ "we g",
+ "w eg",
+ "ke t",
+ "k et",
+ "▁и сто",
+ "▁ис то",
+ "▁fri ends",
+ "▁friend s",
+ "▁f n",
+ "▁ fn",
+ "▁é l",
+ "▁ él",
+ "▁& =",
+ "▁ &=",
+ "ar den",
+ "ard en",
+ "arde n",
+ "ff icial",
+ "ffic ial",
+ "▁comm unity",
+ "▁commun ity",
+ "▁ community",
+ "▁a pi",
+ "▁ap i",
+ "▁ api",
+ "Ar gs",
+ "Arg s",
+ "ie ren",
+ "ier en",
+ "iere n",
+ "i eren",
+ "▁d ann",
+ "▁da nn",
+ "▁dan n",
+ "om orph",
+ "ad r",
+ "a dr",
+ "lo op",
+ "l oop",
+ "um an",
+ "uma n",
+ "u man",
+ "▁v ous",
+ "▁vo us",
+ "▁vou s",
+ "▁ vous",
+ "bs t",
+ "b st",
+ "sub mit",
+ "\\ |",
+ "ти н",
+ "т ин",
+ "Cont ainer",
+ "as ket",
+ "ask et",
+ "? )",
+ "Se c",
+ "S ec",
+ "▁d rive",
+ "▁dr ive",
+ "▁dri ve",
+ "▁driv e",
+ "▁ drive",
+ "As s",
+ "A ss",
+ "▁s we",
+ "▁sw e",
+ "▁a mer",
+ "▁am er",
+ "▁ amer",
+ "▁m ine",
+ "▁min e",
+ "▁mi ne",
+ "▁ mine",
+ "▁H am",
+ "▁Ha m",
+ "▁av ait",
+ "▁ avait",
+ "▁H on",
+ "▁Ho n",
+ "▁a près",
+ "▁ap rès",
+ "▁apr ès",
+ "▁ après",
+ "▁M ann",
+ "▁Man n",
+ "▁Ma nn",
+ "сь ка",
+ "ськ а",
+ "▁incre ase",
+ "▁t y",
+ "▁ ty",
+ "sk y",
+ "s ky",
+ "▁acc ur",
+ "▁ac cur",
+ "art icle",
+ "we ight",
+ "weig ht",
+ "▁s ex",
+ "▁se x",
+ "▁ sex",
+ "▁list ade",
+ "▁lista de",
+ "/* *",
+ "/ **",
+ "▁est á",
+ "}} $",
+ "} }$",
+ "ar go",
+ "arg o",
+ "def ine",
+ "defin e",
+ "▁со став",
+ "▁соста в",
+ "s ession",
+ "ad s",
+ "a ds",
+ "ст ви",
+ "ств и",
+ "▁L aw",
+ "▁La w",
+ "▁d ialog",
+ "▁di alog",
+ "▁dia log",
+ "▁ dialog",
+ "▁dup licate",
+ "▁é p",
+ "▁ ép",
+ "▁v oc",
+ "▁vo c",
+ "fr i",
+ "f ri",
+ "▁g reen",
+ "▁gr een",
+ "▁gre en",
+ "▁ green",
+ "▁h idden",
+ "▁hid den",
+ "▁ hidden",
+ "▁Is land",
+ "▁di ag",
+ "▁dia g",
+ "ow ej",
+ "owe j",
+ "my sql",
+ "mys ql",
+ "mysq l",
+ "te il",
+ "tei l",
+ "t eil",
+ "r ä",
+ "ik an",
+ "ika n",
+ "i kan",
+ "▁Jos é",
+ "al ed",
+ "ale d",
+ "a led",
+ "Run time",
+ "R untime",
+ "▁t rain",
+ "▁tr ain",
+ "▁tra in",
+ "▁ train",
+ "▁Di vision",
+ "▁Div ision",
+ "ни ц",
+ "▁S pan",
+ "▁Sp an",
+ "▁ Span",
+ "ни ма",
+ "ним а",
+ ")= \\",
+ ") =\\",
+ "та н",
+ "т ан",
+ "▁st ay",
+ "▁sta y",
+ "▁f oo",
+ "▁fo o",
+ "▁ foo",
+ "▁acc om",
+ "▁ac com",
+ "▁h ers",
+ "▁he rs",
+ "▁her s",
+ "▁на у",
+ "▁M ün",
+ "ide os",
+ "ideo s",
+ "st atic",
+ "stat ic",
+ "▁re ady",
+ "▁read y",
+ "▁ ready",
+ "] `",
+ "▁vis ible",
+ "▁vi sible",
+ "▁ visible",
+ "▁H ope",
+ "▁Ho pe",
+ "▁Hop e",
+ "ul ated",
+ "ula ted",
+ "ulate d",
+ "▁C ult",
+ "▁Cu lt",
+ "ст ро",
+ "стр о",
+ "с тро",
+ "C o",
+ "▁sm aller",
+ "▁small er",
+ "at ura",
+ "atur a",
+ "atu ra",
+ "▁perfect ly",
+ "re q",
+ "r eq",
+ "▁pro posed",
+ "▁prop osed",
+ "▁propos ed",
+ "▁propose d",
+ "▁deg li",
+ "Se arch",
+ "S earch",
+ "▁i ch",
+ "▁ic h",
+ "▁ ich",
+ "Ma x",
+ "M ax",
+ "▁vol ume",
+ "▁ volume",
+ "exec ute",
+ "gr e",
+ "g re",
+ "▁s port",
+ "▁sp ort",
+ "▁spo rt",
+ "ud ad",
+ "uda d",
+ "P T",
+ "▁Rec ords",
+ "▁Record s",
+ "▁c ook",
+ "▁co ok",
+ "▁ cook",
+ "▁exp and",
+ "▁ expand",
+ "б і",
+ "▁al tri",
+ "▁alt ri",
+ "pp et",
+ "ppe t",
+ "p pet",
+ "ar se",
+ "ars e",
+ "▁w et",
+ "▁we t",
+ "▁B ob",
+ "▁Bo b",
+ "▁ Bob",
+ "▁F C",
+ "▁ FC",
+ "▁Associ ation",
+ "uj e",
+ "u je",
+ "▁f el",
+ "▁fe l",
+ "▁ fel",
+ "▁с лу",
+ "▁ слу",
+ "▁B ig",
+ "▁Bi g",
+ "▁ Big",
+ "/ \\",
+ "G e",
+ "wh ile",
+ "{ (",
+ "▁su fficient",
+ "Pos ition",
+ "P osition",
+ "▁under standing",
+ "▁understand ing",
+ "▁n ue",
+ "▁nu e",
+ "▁r az",
+ "▁ra z",
+ "▁ raz",
+ "▁y e",
+ "▁ ye",
+ "he m",
+ "h em",
+ "N um",
+ "▁Pro ject",
+ "▁ Project",
+ "▁I ts",
+ "▁It s",
+ "▁h asta",
+ "▁ha sta",
+ "▁has ta",
+ "▁hast a",
+ "en so",
+ "ens o",
+ "▁w ire",
+ "▁wir e",
+ "▁ wire",
+ "Re t",
+ "R et",
+ "u j",
+ "pro of",
+ "▁re levant",
+ "▁relev ant",
+ "▁part ir",
+ "▁parti r",
+ "▁a go",
+ "▁ag o",
+ "▁ ago",
+ "if icate",
+ "ific ate",
+ "ifica te",
+ "▁d omin",
+ "▁do min",
+ "▁dom in",
+ "▁ domin",
+ "▁b oy",
+ "▁bo y",
+ "▁ boy",
+ "▁p lant",
+ "▁pl ant",
+ "▁pla nt",
+ "▁plan t",
+ "▁ plant",
+ "▁enc oding",
+ "▁ encoding",
+ "▁th rows",
+ "▁thr ows",
+ "▁throw s",
+ "▁thro ws",
+ "▁R ock",
+ "▁Ro ck",
+ "▁Roc k",
+ "zo ne",
+ "zon e",
+ "z one",
+ "ga ng",
+ "gan g",
+ "g ang",
+ "wid get",
+ "w idget",
+ "▁interest ing",
+ "DE R",
+ "D ER",
+ "▁d emon",
+ "▁de mon",
+ "▁dem on",
+ "▁demo n",
+ "▁off ice",
+ "▁offic e",
+ "▁ office",
+ "am t",
+ "a mt",
+ "ät er",
+ "ä ter",
+ "▁Wh ite",
+ "▁Whit e",
+ "▁ White",
+ "▁v ersch",
+ "▁ver sch",
+ "▁vers ch",
+ "▁die ser",
+ "▁dies er",
+ "▁diese r",
+ "▁M ount",
+ "▁Mo unt",
+ "▁Mou nt",
+ "▁ Mount",
+ "▁stud ents",
+ "▁student s",
+ "▁P ub",
+ "▁Pu b",
+ "▁ Pub",
+ "▁Д е",
+ "ij a",
+ "i ja",
+ "▁C y",
+ "▁ Cy",
+ "▁Californ ia",
+ "▁ab ril",
+ "äl l",
+ "ä ll",
+ "▁ч ем",
+ "▁че м",
+ "T V",
+ "▁m és",
+ "▁mé s",
+ "▁decl ared",
+ "▁decla red",
+ "▁declar ed",
+ "▁declare d",
+ "▁ ю",
+ "ő l",
+ "ap pa",
+ "app a",
+ "a ppa",
+ "▁Б е",
+ "ec ho",
+ "ech o",
+ "e cho",
+ "num er",
+ "nu mer",
+ "n umer",
+ "▁po sted",
+ "▁pos ted",
+ "▁post ed",
+ "▁poste d",
+ "▁в ер",
+ "▁ве р",
+ "▁ вер",
+ "▁годи не",
+ "▁we ak",
+ "▁ weak",
+ "▁Re public",
+ "▁Rep ublic",
+ "▁Repub lic",
+ "▁ch ampion",
+ "▁champ ion",
+ "ensure math",
+ "you r",
+ "yo ur",
+ "y our",
+ "▁O ber",
+ "▁Ob er",
+ "▁Cent ral",
+ "is a",
+ "i sa",
+ "ан д",
+ "а нд",
+ "y y",
+ "▁full y",
+ "▁ful ly",
+ "▁ fully",
+ "▁S D",
+ "▁ SD",
+ "▁Lin ux",
+ "▁ Linux",
+ "▁Sc ott",
+ "▁Scot t",
+ "part ment",
+ "ko n",
+ "k on",
+ "▁cont ract",
+ "▁contr act",
+ "▁contra ct",
+ "▁O F",
+ "▁ OF",
+ "▁a le",
+ "▁al e",
+ "▁ ale",
+ "▁A nn",
+ "▁An n",
+ "▁на д",
+ "▁ над",
+ "la h",
+ "l ah",
+ "▁N ext",
+ "▁Ne xt",
+ "▁ Next",
+ "or en",
+ "ore n",
+ "o ren",
+ "▁d isk",
+ "▁di sk",
+ "▁dis k",
+ "▁ disk",
+ "▁e g",
+ "▁ eg",
+ "at u",
+ "a tu",
+ "ло ги",
+ "лог и",
+ "▁g ames",
+ "▁game s",
+ "▁ga mes",
+ "▁gam es",
+ "Le ft",
+ "L eft",
+ "▁l u",
+ "▁ lu",
+ "▁fin ite",
+ "▁finit e",
+ "▁ finite",
+ "▁к и",
+ "▁ ки",
+ "▁cr ash",
+ "▁cra sh",
+ "ph er",
+ "phe r",
+ "p her",
+ "ex e",
+ "e xe",
+ "AT ION",
+ "▁br other",
+ "▁bro ther",
+ "En g",
+ "E ng",
+ "ta t",
+ "t at",
+ "▁In teger",
+ "▁ Integer",
+ "но му",
+ "ном у",
+ "н ому",
+ "▁col on",
+ "▁co lon",
+ "▁ colon",
+ "i qu",
+ ")) .",
+ ") ).",
+ "iv i",
+ "i vi",
+ "▁M ethod",
+ "▁Met hod",
+ "▁ Method",
+ "ar ten",
+ "art en",
+ "arte n",
+ "Un i",
+ "U ni",
+ "ve ctor",
+ "vec tor",
+ "v ector",
+ "▁w ood",
+ "▁wo od",
+ "▁ wood",
+ "р т",
+ "▁Л е",
+ "▁siè cle",
+ "▁g ent",
+ "▁ge nt",
+ "▁gen t",
+ "▁ gent",
+ "} \r",
+ "▁cont ents",
+ "▁content s",
+ "▁conten ts",
+ "▁ contents",
+ "▁com pan",
+ "▁comp an",
+ "G o",
+ "▁j ou",
+ "▁jo u",
+ "▁ jou",
+ "ue nt",
+ "uen t",
+ "u ent",
+ "As ync",
+ "A sync",
+ "print f",
+ "▁M odel",
+ "▁Mod el",
+ "▁Mo del",
+ "▁Mode l",
+ "▁ Model",
+ "▁ke pt",
+ "AS E",
+ "A SE",
+ "▁prov ides",
+ "▁provide s",
+ "▁Ab gerufen",
+ "▁G all",
+ "▁Gal l",
+ "▁Ga ll",
+ "▁Al f",
+ "S A",
+ "▁M em",
+ "▁Me m",
+ "▁ Mem",
+ "▁k ter",
+ "▁ kter",
+ "▁B ru",
+ "▁Br u",
+ "And roid",
+ "( :",
+ "▁У краї",
+ "▁Укра ї",
+ "N e",
+ "M in",
+ "at r",
+ "a tr",
+ "▁H al",
+ "▁Ha l",
+ "de lete",
+ "del ete",
+ "od o",
+ "o do",
+ "▁n ão",
+ "èn e",
+ "è ne",
+ "▁calcul ate",
+ "▁calc ulate",
+ "Js on",
+ "J son",
+ "ke ys",
+ "key s",
+ "не й",
+ "н ей",
+ "▁h ence",
+ "▁hen ce",
+ "▁o w",
+ "▁ ow",
+ "▁L ib",
+ "▁Li b",
+ "▁ Lib",
+ "en o",
+ "e no",
+ "▁L ove",
+ "▁Lo ve",
+ "▁Lov e",
+ "os i",
+ "o si",
+ "wi de",
+ "wid e",
+ "w ide",
+ "▁s core",
+ "▁sc ore",
+ "▁ score",
+ "ful l",
+ "fu ll",
+ "f ull",
+ "во д",
+ "в од",
+ "▁determ ine",
+ "▁determin e",
+ "▁s paces",
+ "▁sp aces",
+ "▁space s",
+ "▁spac es",
+ "▁ spaces",
+ "ло ва",
+ "лов а",
+ "л ова",
+ "▁pe ut",
+ "▁peu t",
+ "ér al",
+ "éra l",
+ "é ral",
+ "ó ł",
+ "▁app oint",
+ "▁ap point",
+ "▁T w",
+ "▁ Tw",
+ "< ?",
+ "▁Or der",
+ "▁Ord er",
+ "▁ Order",
+ "▁h op",
+ "▁ho p",
+ "ran dom",
+ "rand om",
+ "r andom",
+ "ca che",
+ "c ache",
+ "▁dest roy",
+ "▁ destroy",
+ "▁r ace",
+ "▁ra ce",
+ "▁rac e",
+ "▁ race",
+ "T ag",
+ "▁r id",
+ "▁ri d",
+ "▁ rid",
+ "▁neg ative",
+ "▁ negative",
+ "Ca r",
+ "C ar",
+ "ens ional",
+ "ension al",
+ "d k",
+ "▁c ro",
+ "▁cr o",
+ "▁ cro",
+ "▁TH EN",
+ "▁THE N",
+ "▁$ .",
+ "▁ $.",
+ "en sk",
+ "ens k",
+ "N E",
+ "H O",
+ "▁k le",
+ "▁kl e",
+ "osp ital",
+ "kt e",
+ "k te",
+ "fér ences",
+ "férence s",
+ "ud es",
+ "ude s",
+ "u des",
+ "I R",
+ "ot ion",
+ "oti on",
+ "o tion",
+ "▁Re al",
+ "▁ Real",
+ "▁Febru ar",
+ "и н",
+ "▁O ld",
+ "▁Ol d",
+ "▁ Old",
+ "ко го",
+ "к ого",
+ "le ich",
+ "lei ch",
+ "▁ р",
+ "ía n",
+ "í an",
+ "▁г а",
+ "▁ га",
+ "ci de",
+ "cid e",
+ "c ide",
+ "la b",
+ "l ab",
+ "▁p ull",
+ "▁pu ll",
+ "▁pul l",
+ "▁ pull",
+ "▁' /",
+ "Lo ng",
+ "L ong",
+ ", $",
+ "▁appropri ate",
+ "▁бы ла",
+ "▁был а",
+ "f ühr",
+ "▁M edia",
+ "▁Me dia",
+ "▁Med ia",
+ "▁Medi a",
+ "▁ Media",
+ "▁m anner",
+ "▁man ner",
+ "▁Г е",
+ "de scription",
+ "des cription",
+ "Be an",
+ "▁L ar",
+ "▁La r",
+ "▁ Lar",
+ "'] ;",
+ "' ];",
+ "▁re lation",
+ "▁rel ation",
+ "▁rela tion",
+ "▁ relation",
+ "▁S orry",
+ "▁Sor ry",
+ "ha r",
+ "h ar",
+ "cp p",
+ "c pp",
+ "▁K o",
+ "▁exec ution",
+ "▁execut ion",
+ "▁ execution",
+ "in os",
+ "ino s",
+ "i nos",
+ "▁b ul",
+ "▁bu l",
+ "▁ bul",
+ "gr ade",
+ "gra de",
+ "grad e",
+ "g rade",
+ "▁M u",
+ "▁p il",
+ "▁pi l",
+ "wr it",
+ "w rit",
+ "ific ations",
+ "ification s",
+ "in ese",
+ "ine se",
+ "ines e",
+ "▁Ph ili",
+ "▁Phil i",
+ "d x",
+ "▁le ading",
+ "▁lead ing",
+ "▁ leading",
+ "▁J ournal",
+ "ov ed",
+ "ove d",
+ "o ved",
+ "▁cont ro",
+ "▁contr o",
+ "но ва",
+ "нов а",
+ "н ова",
+ "Y es",
+ "▁ch annel",
+ "▁ channel",
+ ")) ,",
+ ") ),",
+ "is ten",
+ "ist en",
+ "iste n",
+ "i sten",
+ "ak a",
+ "a ka",
+ "To String",
+ "ma s",
+ "m as",
+ "▁e tt",
+ "▁et t",
+ "▁ ett",
+ "▁for ces",
+ "▁force s",
+ "ul ations",
+ "ulation s",
+ "▁C all",
+ "▁Cal l",
+ "▁Ca ll",
+ "▁ Call",
+ "▁explan ation",
+ "or ing",
+ "ori ng",
+ "o ring",
+ "AT A",
+ "A TA",
+ "ch ter",
+ "cht er",
+ "chte r",
+ "wh en",
+ "w hen",
+ "V C",
+ "▁Jah rh",
+ "▁Jahr h",
+ "Ca se",
+ "C ase",
+ "▁comm ands",
+ "▁command s",
+ "▁ commands",
+ "▁r ich",
+ "▁ric h",
+ "▁ri ch",
+ "▁ rich",
+ "bu s",
+ "b us",
+ "F e",
+ "mb ox",
+ "m box",
+ "▁re con",
+ "▁rec on",
+ "ñ o",
+ "▁s hape",
+ "▁sh ape",
+ "▁ shape",
+ "ow y",
+ "o wy",
+ "en try",
+ "ent ry",
+ "entr y",
+ "it able",
+ "ita ble",
+ "i table",
+ "▁e lection",
+ "▁el ection",
+ "▁elect ion",
+ "▁ele ction",
+ "є ться",
+ "▁p rep",
+ "▁pr ep",
+ "▁pre p",
+ "▁ prep",
+ "v á",
+ "▁in fin",
+ "▁inf in",
+ "lo t",
+ "l ot",
+ "▁bo oks",
+ "▁book s",
+ "▁ books",
+ "▁U SA",
+ "▁US A",
+ "▁ USA",
+ "ли н",
+ "л ин",
+ "▁p om",
+ "▁po m",
+ "▁ pom",
+ "▁n as",
+ "▁na s",
+ "▁ nas",
+ "▁t ags",
+ "▁tag s",
+ "▁ta gs",
+ "▁ tags",
+ "▁exec uted",
+ "▁execute d",
+ "▁execut ed",
+ "ail le",
+ "ai lle",
+ "a ille",
+ "lu ng",
+ "l ung",
+ "▁Java Script",
+ "▁ JavaScript",
+ "▁b all",
+ "▁bal l",
+ "▁ba ll",
+ "▁ ball",
+ "▁ain si",
+ "▁P ri",
+ "▁Pr i",
+ "{ $",
+ "▁U N",
+ "▁ UN",
+ "▁R am",
+ "▁Ra m",
+ "▁h ear",
+ "▁he ar",
+ "▁U buntu",
+ ">( );",
+ ">() ;",
+ "> ();",
+ "▁p ure",
+ "▁pu re",
+ "▁pur e",
+ "▁em bed",
+ "▁emb ed",
+ "▁ embed",
+ "a ção",
+ "cont roller",
+ "control ler",
+ "▁mar ried",
+ "▁F ol",
+ "▁Fo l",
+ "fa mil",
+ "f amil",
+ "▁p rec",
+ "▁pr ec",
+ "▁pre c",
+ "▁ prec",
+ "▁rec urs",
+ "pa d",
+ "p ad",
+ "istr ation",
+ "istra tion",
+ "▁respect ively",
+ "▁respective ly",
+ "[ $",
+ "au tor",
+ "aut or",
+ "auto r",
+ "a utor",
+ "▁g rav",
+ "▁gr av",
+ "▁gra v",
+ "ie ra",
+ "ier a",
+ "i era",
+ "az ioni",
+ "azi oni",
+ "a zioni",
+ "▁B ul",
+ "▁Bu l",
+ "▁Austral ia",
+ "mon d",
+ "mo nd",
+ "m ond",
+ "▁T ro",
+ "▁Tr o",
+ "▁E le",
+ "▁El e",
+ "pack ages",
+ "package s",
+ "ms dn",
+ "▁A ls",
+ "▁Al s",
+ "▁pr zy",
+ "▁prz y",
+ "AR T",
+ "A RT",
+ "▁char ge",
+ "▁charg e",
+ "▁ charge",
+ "▁app lications",
+ "▁application s",
+ "▁applic ations",
+ "Un it",
+ "Uni t",
+ "U nit",
+ "ar en",
+ "are n",
+ "a ren",
+ "▁sud den",
+ "om eter",
+ "ome ter",
+ "omet er",
+ "o meter",
+ "▁d ot",
+ "▁do t",
+ "▁ dot",
+ "ac ji",
+ "a cji",
+ "кт ор",
+ "кто р",
+ "к тор",
+ "im in",
+ "imi n",
+ "i min",
+ "en ing",
+ "eni ng",
+ "e ning",
+ "▁d onde",
+ "▁do nde",
+ "▁don de",
+ "▁H o",
+ "tr ee",
+ "tre e",
+ "t ree",
+ "m b",
+ "▁d rag",
+ "▁dr ag",
+ "▁dra g",
+ "▁ drag",
+ "aj e",
+ "a je",
+ "▁in valid",
+ "▁ invalid",
+ "▁fin ish",
+ "la im",
+ "▁f eed",
+ "▁fe ed",
+ "▁fee d",
+ "▁ feed",
+ "▁N ap",
+ "▁Na p",
+ "ro om",
+ "r oom",
+ "im ages",
+ "ima ges",
+ "image s",
+ "▁са й",
+ "▁su cc",
+ "▁suc c",
+ "if fer",
+ "iff er",
+ "iffe r",
+ "▁a ño",
+ "▁añ o",
+ "▁c ual",
+ "▁cu al",
+ "ме ри",
+ "мер и",
+ "D R",
+ "▁B ilder",
+ "▁Bi lder",
+ "▁Bild er",
+ "▁Bil der",
+ "б ра",
+ "ra it",
+ "rai t",
+ "r ait",
+ "pa n",
+ "p an",
+ "ен ь",
+ "е нь",
+ "▁dist inct",
+ "▁K n",
+ "ön ig",
+ "ö nig",
+ "an ced",
+ "ance d",
+ "anc ed",
+ "▁lo ading",
+ "▁load ing",
+ "▁ loading",
+ "▁Te chn",
+ "▁S el",
+ "▁Se l",
+ "mu s",
+ "m us",
+ "▁r ail",
+ "▁ra il",
+ "▁st udent",
+ "▁stud ent",
+ "▁ student",
+ "▁not ice",
+ "▁s la",
+ "▁sl a",
+ "▁Д а",
+ "▁gu ard",
+ "▁ guard",
+ "▁D ay",
+ "▁Da y",
+ "▁ Day",
+ "ва ли",
+ "вал и",
+ "в али",
+ "Op tion",
+ "Opt ion",
+ "O ption",
+ "ais on",
+ "ai son",
+ "a ison",
+ "ip p",
+ "i pp",
+ "▁J un",
+ "▁Ju n",
+ "▁f ell",
+ "▁fe ll",
+ "▁fel l",
+ "▁ab solute",
+ "▁absol ute",
+ "▁ absolute",
+ "ов е",
+ "о ве",
+ "de bug",
+ "deb ug",
+ "▁S ud",
+ "▁Su d",
+ "п ы",
+ "ug ins",
+ "ugin s",
+ "▁view s",
+ "▁vie ws",
+ "▁ views",
+ "la y",
+ "l ay",
+ "▁s urr",
+ "▁su rr",
+ "▁sur r",
+ "▁st ood",
+ "▁sto od",
+ "▁ stood",
+ "▁в і",
+ "▁ ві",
+ "select ed",
+ "sel ected",
+ "г і",
+ "▁att ributes",
+ "▁attribute s",
+ "▁ attributes",
+ "fin al",
+ "fi nal",
+ "f inal",
+ "en da",
+ "end a",
+ "▁B on",
+ "▁Bo n",
+ "ne rs",
+ "ner s",
+ "n ers",
+ "▁W er",
+ "▁We r",
+ "bu r",
+ "b ur",
+ "it tel",
+ "itt el",
+ "itte l",
+ "▁m oving",
+ "▁mov ing",
+ "▁mo ving",
+ "▁P lan",
+ "▁Pl an",
+ "▁Pla n",
+ "▁ Plan",
+ "is ches",
+ "isch es",
+ "ische s",
+ "isc hes",
+ "J ava",
+ "▁b asis",
+ "▁bas is",
+ "▁B us",
+ "▁Bu s",
+ "▁ Bus",
+ "▁A u",
+ "▁I ll",
+ "▁Il l",
+ "▁ Ill",
+ "▁вре мя",
+ "▁ц ент",
+ "▁ цент",
+ "hand le",
+ "сту п",
+ "▁F ar",
+ "▁Fa r",
+ "▁o raz",
+ "▁or az",
+ "▁ora z",
+ "oc r",
+ "o cr",
+ "▁se it",
+ "▁sei t",
+ "on der",
+ "ond er",
+ "onde r",
+ "o nder",
+ "до м",
+ "д ом",
+ ": /",
+ "ch or",
+ "cho r",
+ "c hor",
+ "▁T own",
+ "▁To wn",
+ "▁Tow n",
+ "▁def init",
+ "▁defin it",
+ "re act",
+ "rea ct",
+ "▁pie ce",
+ "▁Kar l",
+ "▁Ka rl",
+ "C I",
+ "▁App lication",
+ "▁ Application",
+ "un ter",
+ "unt er",
+ "unte r",
+ "▁for med",
+ "▁form ed",
+ "▁forme d",
+ "▁ formed",
+ "▁п у",
+ "▁ пу",
+ "B o",
+ "▁Dan iel",
+ "▁ Daniel",
+ "▁п ла",
+ "▁ пла",
+ "Bo dy",
+ "B ody",
+ "}) $",
+ "} )$",
+ "▁бы ли",
+ "▁был и",
+ "▁e arth",
+ "▁ear th",
+ "г ла",
+ "Th ere",
+ "The re",
+ "T here",
+ "▁с тра",
+ "▁ст ра",
+ "▁ стра",
+ "▁v ille",
+ "▁vi lle",
+ "▁vill e",
+ "▁vil le",
+ "▁ ville",
+ "▁c entre",
+ "▁cent re",
+ ") \r",
+ "▁help ful",
+ "▁+ +",
+ "▁ ++",
+ "▁C G",
+ "▁ CG",
+ "iz ione",
+ "izi one",
+ "izio ne",
+ "i zione",
+ "▁G ame",
+ "▁Ga me",
+ "▁Gam e",
+ "▁ Game",
+ "▁Wh ich",
+ "▁p ip",
+ "▁pi p",
+ "▁ pip",
+ "▁Port ug",
+ "D S",
+ "▁de scribe",
+ "▁des cribe",
+ "▁descri be",
+ "▁check ing",
+ "▁man ager",
+ "▁manage r",
+ "▁ manager",
+ "B O",
+ "▁B undes",
+ "▁Bund es",
+ "▁Bun des",
+ "bu ch",
+ "b uch",
+ "▁dec ided",
+ "▁decide d",
+ "▁decid ed",
+ "▁Jahrh undert",
+ "▁f if",
+ "▁fi f",
+ "▁ fif",
+ "e fficient",
+ "an ci",
+ "anc i",
+ "br aries",
+ "bra ries",
+ "▁f ails",
+ "▁fa ils",
+ "▁fail s",
+ "▁k ernel",
+ "▁ker nel",
+ "▁ kernel",
+ "▁G l",
+ "▁N acional",
+ "▁pro ceed",
+ "▁proc eed",
+ "▁f uer",
+ "▁fue r",
+ "▁fu er",
+ "▁l iving",
+ "▁li ving",
+ "▁liv ing",
+ "▁success fully",
+ "▁successful ly",
+ "▁f aster",
+ "▁fa ster",
+ "▁fast er",
+ "▁fas ter",
+ "▁con tre",
+ "▁cont re",
+ "▁contr e",
+ "▁ contre",
+ "▁pr ison",
+ "▁pri son",
+ "▁pris on",
+ "OR T",
+ "O RT",
+ "he lp",
+ "hel p",
+ "▁a utor",
+ "▁au tor",
+ "▁aut or",
+ "▁auto r",
+ "▁ autor",
+ "ła w",
+ "ł aw",
+ "aj ą",
+ "a ją",
+ "▁A rm",
+ "▁Ar m",
+ "▁ Arm",
+ "▁pro vin",
+ "▁prov in",
+ "▁na am",
+ "/ #",
+ "se d",
+ "s ed",
+ "▁g esch",
+ "▁ge sch",
+ "▁ges ch",
+ "▁ gesch",
+ "▁м ар",
+ "▁ма р",
+ "▁ мар",
+ "es k",
+ "e sk",
+ "ter m",
+ "te rm",
+ "t erm",
+ "▁T ex",
+ "▁Te x",
+ "▁ Tex",
+ "ir ing",
+ "iri ng",
+ "i ring",
+ "▁t ools",
+ "▁to ols",
+ "▁too ls",
+ "▁tool s",
+ "▁ tools",
+ "PD F",
+ "P DF",
+ "▁u lt",
+ "▁ul t",
+ "▁ ult",
+ "iss enschaft",
+ "issen schaft",
+ "▁could n",
+ "di ng",
+ "din g",
+ "d ing",
+ "De p",
+ "D ep",
+ "{ -",
+ "▁pre dict",
+ "▁pred ict",
+ "▁ predict",
+ "ant age",
+ "anta ge",
+ "▁L ike",
+ "▁Li ke",
+ "▁ Like",
+ "▁Б и",
+ "to ols",
+ "tool s",
+ "t ools",
+ "es tra",
+ "est ra",
+ "estr a",
+ "e stra",
+ "▁k i",
+ "▁ ki",
+ "▁J im",
+ "▁Ji m",
+ "st ar",
+ "sta r",
+ "s tar",
+ "▁re mark",
+ "▁r emark",
+ "▁rem ark",
+ "▁ remark",
+ "ó g",
+ "na bla",
+ "nab la",
+ "▁Al though",
+ "mod e",
+ "mo de",
+ "m ode",
+ "H ost",
+ "▁st range",
+ "▁str ange",
+ "▁stran ge",
+ "No ne",
+ "Non e",
+ "N one",
+ "bl ack",
+ "bla ck",
+ "b lack",
+ "▁F estival",
+ "▁Fest ival",
+ "▁I S",
+ "▁ IS",
+ "an za",
+ "anz a",
+ "▁( -",
+ "▁ (-",
+ "ic ket",
+ "ick et",
+ "i cket",
+ "ко ла",
+ "кол а",
+ "▁J es",
+ "▁Je s",
+ "▁f lex",
+ "▁fl ex",
+ "▁fle x",
+ "▁ flex",
+ "▁ À",
+ "▁N etwork",
+ "▁Net work",
+ "▁ Network",
+ "▁E X",
+ "▁ EX",
+ "▁e nero",
+ "▁en ero",
+ "▁ener o",
+ "! ”",
+ "▁O rt",
+ "▁Or t",
+ "▁al ors",
+ "▁Or iginal",
+ "▁Origin al",
+ "▁Orig inal",
+ "▁ Original",
+ "▁z o",
+ "▁ zo",
+ "ны ми",
+ "ным и",
+ "▁s pl",
+ "▁sp l",
+ "▁ spl",
+ "Dra w",
+ "Dr aw",
+ "D raw",
+ "yo nd",
+ "y ond",
+ "─ ─",
+ "▁O t",
+ "▁d ram",
+ "▁dr am",
+ "▁dra m",
+ "▁di vision",
+ "▁div ision",
+ "▁divis ion",
+ "▁e fficient",
+ "▁effic ient",
+ "▁ efficient",
+ "▁Г а",
+ "▁v ier",
+ "▁vi er",
+ "▁vie r",
+ "▁ vier",
+ "na k",
+ "n ak",
+ "L S",
+ "▁sp irit",
+ "▁spir it",
+ "zeich net",
+ "▁d ici",
+ "▁di ci",
+ "▁dic i",
+ "cl ear",
+ "cle ar",
+ "c lear",
+ "co py",
+ "cop y",
+ "c opy",
+ "ya r",
+ "y ar",
+ "▁ро ці",
+ "us qu",
+ "u squ",
+ "▁n ous",
+ "▁no us",
+ "▁nou s",
+ "▁b lev",
+ "▁bl ev",
+ "▁ble v",
+ "ж де",
+ "Ar g",
+ "A rg",
+ "▁per formed",
+ "▁perform ed",
+ "▁M ake",
+ "▁Ma ke",
+ "▁Mak e",
+ "▁ Make",
+ "▁Car ol",
+ "▁Ca rol",
+ "et to",
+ "ett o",
+ "e tto",
+ "▁S and",
+ "▁San d",
+ "▁Sa nd",
+ "▁D isc",
+ "▁Dis c",
+ "▁Di sc",
+ "En c",
+ "E nc",
+ "re ro",
+ "rer o",
+ "r ero",
+ "ha sh",
+ "has h",
+ "h ash",
+ "▁f ocus",
+ "▁fo cus",
+ "▁foc us",
+ "▁ focus",
+ "▁att ention",
+ "▁a gre",
+ "▁ag re",
+ "▁agr e",
+ "▁di vis",
+ "▁div is",
+ "▁бы ло",
+ "▁был о",
+ "▁e j",
+ "▁ ej",
+ "▁m arch",
+ "▁mar ch",
+ "▁marc h",
+ "▁ph ase",
+ "▁ phase",
+ "ía s",
+ "í as",
+ "▁ph il",
+ "▁P ap",
+ "▁Pa p",
+ "▁r iver",
+ "▁riv er",
+ "▁ri ver",
+ "▁ river",
+ "▁c aused",
+ "▁caus ed",
+ "▁cause d",
+ "▁ca used",
+ "pl ugin",
+ "▁Te am",
+ "▁ Team",
+ "ul er",
+ "ule r",
+ "u ler",
+ "▁$ (\"#",
+ "▁$(\" #",
+ "ie j",
+ "i ej",
+ "I SBN",
+ "na m",
+ "n am",
+ "▁f ight",
+ "▁fig ht",
+ "vi d",
+ "v id",
+ "▁L ud",
+ "▁Lu d",
+ "Select ed",
+ ":@ \"",
+ ": @\"",
+ "▁P od",
+ "▁Po d",
+ "▁ Pod",
+ "▁ann ées",
+ "▁année s",
+ "ar ios",
+ "ari os",
+ "ario s",
+ "a rios",
+ "▁deutsch er",
+ "▁deutsche r",
+ "▁N A",
+ "▁ NA",
+ "▁и ю",
+ "▁d ictionary",
+ "▁diction ary",
+ "▁ dictionary",
+ "▁Л а",
+ "▁T ri",
+ "▁Tr i",
+ "▁ Tri",
+ "è n",
+ "▁polit ical",
+ "rid ge",
+ "r idge",
+ "at ten",
+ "att en",
+ "atte n",
+ "▁circ le",
+ "▁cir cle",
+ "▁ circle",
+ "▁trans port",
+ "▁ transport",
+ "em as",
+ "ema s",
+ "e mas",
+ "F C",
+ "▁replace d",
+ "▁repla ced",
+ "▁A ud",
+ "▁Au d",
+ "is ka",
+ "isk a",
+ "i ska",
+ "Config uration",
+ "▁so ort",
+ "▁Н е",
+ "▁s equ",
+ "▁se qu",
+ "▁seq u",
+ "▁ sequ",
+ "PR O",
+ "P RO",
+ "▁b ud",
+ "▁bu d",
+ "▁ bud",
+ "▁{ {",
+ "▁ {{",
+ "lie ß",
+ "l ieß",
+ "▁M as",
+ "▁Ma s",
+ "de rs",
+ "der s",
+ "d ers",
+ "us ammen",
+ "es a",
+ "e sa",
+ "▁L y",
+ "в ро",
+ "ma c",
+ "m ac",
+ "▁и спо",
+ "▁ис по",
+ "▁s uc",
+ "▁su c",
+ "u y",
+ "▁ill ustr",
+ "▁prim era",
+ "▁prime ra",
+ "▁primer a",
+ "il ation",
+ "ila tion",
+ "i lation",
+ "▁st orage",
+ "▁stor age",
+ "▁sto rage",
+ "▁ storage",
+ "▁par ams",
+ "▁para ms",
+ "▁param s",
+ "▁pa rams",
+ "▁ params",
+ "ka z",
+ "k az",
+ "▁term inal",
+ "▁termin al",
+ "ра ль",
+ "рал ь",
+ "р аль",
+ "▁h olds",
+ "▁hold s",
+ "▁hol ds",
+ "▁ holds",
+ "ло сь",
+ "▁n ad",
+ "▁na d",
+ "▁ nad",
+ "” .",
+ "▁oct ubre",
+ "bu l",
+ "b ul",
+ "▁h us",
+ "▁hu s",
+ "▁ hus",
+ "UL T",
+ "U LT",
+ "▁ég alement",
+ "▁M ill",
+ "▁Mil l",
+ "▁Mi ll",
+ "▁ Mill",
+ "ła d",
+ "ł ad",
+ "▁cont iene",
+ "\" ?",
+ "▁> >>",
+ "▁>> >",
+ "Qu e",
+ "Q ue",
+ " ",
+ "▁p lain",
+ "▁pl ain",
+ "▁pla in",
+ "▁ plain",
+ "at iva",
+ "ativ a",
+ "ati va",
+ "oc ker",
+ "ock er",
+ "o cker",
+ "Name s",
+ "Na mes",
+ "N ames",
+ "▁J ud",
+ "▁Ju d",
+ "▁ag ree",
+ "▁agre e",
+ "▁agr ee",
+ "▁G emeinde",
+ "▁Geme inde",
+ "la re",
+ "lar e",
+ "l are",
+ "ка за",
+ "каз а",
+ "▁st arts",
+ "▁start s",
+ "▁star ts",
+ "▁ starts",
+ "▁p rice",
+ "▁pr ice",
+ "▁pri ce",
+ "▁ price",
+ "T arget",
+ "cu s",
+ "c us",
+ "▁Inst ead",
+ ". ;",
+ "▁altern ative",
+ "▁alter native",
+ "▁в ла",
+ "I E",
+ "▁organ iz",
+ "in u",
+ "i nu",
+ "▁comp leted",
+ "▁comple ted",
+ "▁complet ed",
+ "▁complete d",
+ "▁car ry",
+ "at om",
+ "ato m",
+ "a tom",
+ "▁dep ending",
+ "▁depend ing",
+ "▁O ur",
+ "▁in sp",
+ "▁ins p",
+ "▁& \\",
+ "▁ &\\",
+ "ail y",
+ "ai ly",
+ "a ily",
+ "ir ection",
+ "ire ction",
+ "irect ion",
+ "ф а",
+ "▁d efe",
+ "▁de fe",
+ "▁def e",
+ "TA C",
+ "T AC",
+ "▁de signed",
+ "▁des igned",
+ "▁design ed",
+ "▁v oir",
+ "▁vo ir",
+ "▁ voir",
+ "bre ak",
+ "▁part ie",
+ "▁parti e",
+ "▁J ahren",
+ "▁Jah ren",
+ "▁Jahr en",
+ "▁Jahre n",
+ "▁Ja hren",
+ "▁st udio",
+ "▁stud io",
+ "▁studi o",
+ "▁ studio",
+ "▁j our",
+ "▁jo ur",
+ "▁jou r",
+ "▁N otes",
+ "▁No tes",
+ "▁Not es",
+ "▁Note s",
+ "fi re",
+ "fir e",
+ "f ire",
+ "ho use",
+ "hou se",
+ "h ouse",
+ "su ccess",
+ "▁J uan",
+ "▁Ju an",
+ "J S",
+ "▁C ustom",
+ "▁ Custom",
+ "▁b esch",
+ "▁be sch",
+ "▁bes ch",
+ "▁st ated",
+ "▁stat ed",
+ "▁state d",
+ "▁sta ted",
+ "boot strap",
+ "öt t",
+ "ö tt",
+ "oz zá",
+ "▁C ON",
+ "▁CO N",
+ "▁ CON",
+ "ha v",
+ "h av",
+ "▁s leep",
+ "▁sle ep",
+ "▁ sleep",
+ "ed a",
+ "e da",
+ "ho t",
+ "h ot",
+ "án d",
+ "á nd",
+ "▁S y",
+ "▁tem ps",
+ "▁temp s",
+ "▁ temps",
+ "am ar",
+ "ama r",
+ "a mar",
+ "▁s cal",
+ "▁sc al",
+ "▁ scal",
+ "▁a st",
+ "▁as t",
+ "▁ ast",
+ "▁op ening",
+ "▁open ing",
+ "cli pse",
+ "clip se",
+ "c lipse",
+ "▁program ming",
+ "▁ programming",
+ "▁let ters",
+ "▁letter s",
+ "▁lett ers",
+ "▁pro file",
+ "▁prof ile",
+ "▁profil e",
+ "▁ profile",
+ "na h",
+ "n ah",
+ "▁be yond",
+ "▁Fur ther",
+ "face s",
+ "fa ces",
+ "fac es",
+ "f aces",
+ "▁c hart",
+ "▁ch art",
+ "▁char t",
+ "▁cha rt",
+ "▁ chart",
+ "зд а",
+ "з да",
+ "ai gn",
+ "a ign",
+ "ні й",
+ "н ій",
+ "▁R ol",
+ "▁Ro l",
+ "ова но",
+ "ован о",
+ "ter ior",
+ "te rior",
+ "we d",
+ "w ed",
+ "▁her self",
+ "▁hers elf",
+ "▁n g",
+ "▁ ng",
+ "angu ages",
+ "anguage s",
+ "}= \\",
+ "} =\\",
+ "ynam ic",
+ "yna mic",
+ "▁j ug",
+ "▁ju g",
+ "▁Ex ample",
+ "▁ Example",
+ "▁( †",
+ "▁play ing",
+ "▁pla ying",
+ "▁us age",
+ "▁ usage",
+ "▁man aged",
+ "▁manage d",
+ "▁ managed",
+ "▁N atur",
+ "▁Nat ur",
+ "те ри",
+ "тер и",
+ "▁E t",
+ "er ia",
+ "eri a",
+ "e ria",
+ "▁daugh ter",
+ "ни ем",
+ "ние м",
+ "F ragment",
+ "▁h ol",
+ "▁ho l",
+ "▁ hol",
+ "F l",
+ "огра фи",
+ "ограф и",
+ "о графи",
+ "▁i hn",
+ "▁ih n",
+ "ü h",
+ "inst ance",
+ "▁com un",
+ "▁co mun",
+ "▁tr uth",
+ "▁са мо",
+ "▁сам о",
+ "▁implement ed",
+ "▁any way",
+ "▁C ro",
+ "▁Cr o",
+ "ф е",
+ "G C",
+ "ub untu",
+ "u buntu",
+ "ty pes",
+ "type s",
+ "typ es",
+ "t ypes",
+ "ê s",
+ ".~ \\",
+ ". ~\\",
+ "fo ld",
+ "fol d",
+ "f old",
+ "▁jo ined",
+ "▁join ed",
+ "? ?",
+ "▁m é",
+ "▁ mé",
+ "▁w ild",
+ "▁wil d",
+ "к лю",
+ "row ser",
+ "rows er",
+ "▁H ome",
+ "▁Ho me",
+ "▁Hom e",
+ "▁ Home",
+ "sk iej",
+ "ski ej",
+ "skie j",
+ "s kiej",
+ "▁J OIN",
+ "▁ju in",
+ "ho f",
+ "h of",
+ "▁data set",
+ "▁dat aset",
+ "▁datas et",
+ "▁ dataset",
+ "ж ду",
+ "') )",
+ "' ))",
+ "▁mie js",
+ "AP I",
+ "A PI",
+ "▁ed ited",
+ "▁edit ed",
+ "ool s",
+ "oo ls",
+ "o ols",
+ "▁se eing",
+ "▁see ing",
+ "ij d",
+ "i jd",
+ "▁pro cedure",
+ "▁proced ure",
+ "▁B ras",
+ "▁Br as",
+ "▁Bra s",
+ "▁s igned",
+ "▁sign ed",
+ "▁sig ned",
+ "▁ signed",
+ "▁extern os",
+ "▁dis app",
+ "▁D irect",
+ "▁Di rect",
+ "▁Dire ct",
+ "▁Dir ect",
+ "▁ Direct",
+ "cy c",
+ "c yc",
+ "▁cons ult",
+ "ör d",
+ "ö rd",
+ "W idget",
+ "ci ous",
+ "cio us",
+ "c ious",
+ "se ct",
+ "sec t",
+ "s ect",
+ "▁Д и",
+ "▁w ind",
+ "▁win d",
+ "▁ wind",
+ "▁Archiv ado",
+ "am l",
+ "a ml",
+ "с с",
+ "W h",
+ "kb d",
+ "k bd",
+ "▁Ar my",
+ "▁Arm y",
+ "▁s uffer",
+ "▁suf fer",
+ "▁suff er",
+ "art ifact",
+ "▁resol ve",
+ "▁ resolve",
+ "▁S port",
+ "▁Sp ort",
+ "▁Spo rt",
+ "▁ц е",
+ "▁ це",
+ "id as",
+ "ida s",
+ "i das",
+ "▁t ax",
+ "▁ta x",
+ "▁ tax",
+ "id i",
+ "i di",
+ "▁a ctions",
+ "▁act ions",
+ "▁action s",
+ "▁ actions",
+ "пр а",
+ "п ра",
+ "pu és",
+ "p ués",
+ "▁n aj",
+ "▁na j",
+ "F alse",
+ "▁ch ance",
+ "▁та ко",
+ "▁так о",
+ "ä d",
+ "▁d ol",
+ "▁do l",
+ "▁en v",
+ "▁ env",
+ "▁bas ically",
+ "▁basic ally",
+ "▁Coun cil",
+ "zt e",
+ "z te",
+ "▁display ed",
+ "ni l",
+ "n il",
+ "comp lete",
+ "comple te",
+ "▁L em",
+ "▁Le m",
+ "ian ce",
+ "i ance",
+ "▁ос нов",
+ "▁de pend",
+ "▁dep end",
+ "pl om",
+ "ens us",
+ "ut s",
+ "u ts",
+ "▁H ot",
+ "▁Ho t",
+ "▁ Hot",
+ "bit r",
+ "bi tr",
+ "▁valid ation",
+ "▁ validation",
+ "ab b",
+ "a bb",
+ "▁т ре",
+ "▁ тре",
+ "k m",
+ "z d",
+ "ö ff",
+ "W E",
+ "▁inter ested",
+ "▁interest ed",
+ "▁{ \"",
+ "▁ {\"",
+ "ar o",
+ "a ro",
+ "▁cor rel",
+ "▁corre l",
+ "▁corr el",
+ "▁d edic",
+ "▁de dic",
+ "▁ded ic",
+ "▁l ists",
+ "▁list s",
+ "▁ lists",
+ "▁Bibli ografia",
+ "▁ear lier",
+ "pr ogram",
+ "pro gram",
+ "prog ram",
+ "▁prem ière",
+ "▁premi ère",
+ "fr ont",
+ "f ront",
+ "T ab",
+ "ст ву",
+ "ств у",
+ "dr op",
+ "dro p",
+ "d rop",
+ "▁f ear",
+ "▁fe ar",
+ "▁En laces",
+ "▁C apt",
+ "▁Cap t",
+ "▁Ca pt",
+ "▁ Capt",
+ "▁real iz",
+ "▁h al",
+ "▁ha l",
+ "▁ hal",
+ "▁inst ances",
+ "▁instance s",
+ "▁su sp",
+ "▁sus p",
+ "il ling",
+ "ill ing",
+ "illi ng",
+ "% ;",
+ "{ }",
+ "| |",
+ "▁part ition",
+ "▁parti tion",
+ "▁ partition",
+ "▁Bu ild",
+ "▁ Build",
+ "▁w o",
+ "▁ wo",
+ "▁П ер",
+ "▁Пе р",
+ "▁direct or",
+ "▁dire ctor",
+ "▁dir ector",
+ "▁S in",
+ "▁Si n",
+ "ти я",
+ "rs g",
+ "r sg",
+ "ou ver",
+ "ouv er",
+ "ouve r",
+ "▁near ly",
+ "od a",
+ "o da",
+ "кти в",
+ "к тив",
+ "▁s ir",
+ "▁si r",
+ "IM E",
+ "I ME",
+ "▁jan vier",
+ "▁W in",
+ "▁Wi n",
+ "▁ Win",
+ "Bu ild",
+ "ie urs",
+ "ieu rs",
+ "ieur s",
+ "i eurs",
+ "IN E",
+ "I NE",
+ "d ouble",
+ "La st",
+ "L ast",
+ "▁pol icy",
+ "▁polic y",
+ "▁ policy",
+ "st ore",
+ "sto re",
+ "stor e",
+ "▁obser ved",
+ "▁observ ed",
+ "▁observe d",
+ "▁obs erved",
+ "▁famil ie",
+ "ni ca",
+ "nic a",
+ "n ica",
+ "re y",
+ "r ey",
+ "з ь",
+ "▁Y ear",
+ "▁Ye ar",
+ "▁ Year",
+ "▁develop ed",
+ "▁deve loped",
+ "▁Inst itute",
+ "▁Instit ute",
+ "▁Institut e",
+ "▁re ply",
+ "▁rep ly",
+ "Com ple",
+ "Comp le",
+ "ic ian",
+ "ici an",
+ "icia n",
+ "i cian",
+ "▁G uer",
+ "▁Gu er",
+ "▁d all",
+ "▁da ll",
+ "▁dal l",
+ "▁d esp",
+ "▁de sp",
+ "▁des p",
+ "▁Foot ball",
+ "Em pty",
+ "Emp ty",
+ "ck en",
+ "cke n",
+ "c ken",
+ "un da",
+ "und a",
+ "▁U r",
+ "▁i g",
+ "▁ ig",
+ "▁A tl",
+ "▁At l",
+ "aut hor",
+ "auth or",
+ "▁B ol",
+ "▁Bo l",
+ "zi g",
+ "z ig",
+ "na t",
+ "n at",
+ "š t",
+ "se curity",
+ "sec urity",
+ "on ic",
+ "oni c",
+ "o nic",
+ "▁p es",
+ "▁pe s",
+ "▁ pes",
+ "it an",
+ "ita n",
+ "i tan",
+ "▁Ex tern",
+ "▁Ext ern",
+ "ja n",
+ "j an",
+ "VA L",
+ "V AL",
+ "▁и м",
+ "▁ им",
+ "bo ld",
+ "bol d",
+ "b old",
+ "▁в а",
+ "▁ ва",
+ "▁М о",
+ "▁dis put",
+ "▁disp ut",
+ "▁t rick",
+ "▁tr ick",
+ "▁tri ck",
+ "▁p ed",
+ "▁pe d",
+ "▁ ped",
+ ")^ {",
+ ") ^{",
+ "in to",
+ "int o",
+ "Si m",
+ "S im",
+ "▁par allel",
+ "▁ parallel",
+ "fo x",
+ "f ox",
+ "norm al",
+ "nor mal",
+ "n ormal",
+ "in ent",
+ "ine nt",
+ "inen t",
+ "пе ди",
+ "п еди",
+ "ho ld",
+ "hol d",
+ "h old",
+ "O K",
+ "▁c hem",
+ "▁ch em",
+ "▁che m",
+ "▁ chem",
+ "▁tw ice",
+ "▁us ername",
+ "▁user name",
+ "▁ username",
+ "i č",
+ "▁re presentation",
+ "▁represent ation",
+ "▁repres entation",
+ "▁j ournal",
+ "▁jour nal",
+ "▁journ al",
+ "▁: -",
+ "▁ :-",
+ "▁b att",
+ "▁ba tt",
+ "▁bat t",
+ "\\ %",
+ "▁certain ly",
+ "▁Ex ception",
+ "▁ Exception",
+ "ep s",
+ "e ps",
+ "sh ot",
+ "s hot",
+ "at egy",
+ "ate gy",
+ "ateg y",
+ "Sh ow",
+ "S how",
+ "▁Car l",
+ "▁Ca rl",
+ "ri g",
+ "r ig",
+ "▁rep orted",
+ "▁report ed",
+ "bot tom",
+ "b ottom",
+ "T F",
+ "▁Francis co",
+ "na p",
+ "n ap",
+ "▁Champion ship",
+ "▁Champions hip",
+ "▁c ourt",
+ "▁co urt",
+ "▁cour t",
+ "▁cou rt",
+ "▁ court",
+ "▁s ources",
+ "▁source s",
+ "io ur",
+ "i our",
+ "▁con serv",
+ "▁cons erv",
+ "▁conse rv",
+ "▁conser v",
+ "di ct",
+ "dic t",
+ "d ict",
+ "▁Р у",
+ "I B",
+ "▁V e",
+ "▁ №",
+ "▁E R",
+ "▁ ER",
+ "\") );",
+ "\")) ;",
+ "\" ));",
+ "▁P oint",
+ "▁Po int",
+ "▁ Point",
+ "az ine",
+ "azi ne",
+ "▁inter net",
+ "▁intern et",
+ "д на",
+ "▁car ried",
+ "▁carri ed",
+ "▁F ield",
+ "▁ Field",
+ "ax is",
+ "axi s",
+ "a xis",
+ "▁S un",
+ "▁Su n",
+ "▁a ve",
+ "▁av e",
+ "▁ ave",
+ "пи с",
+ "п ис",
+ "я н",
+ "as y",
+ "▁ju lio",
+ "▁jul io",
+ "▁juli o",
+ "▁de puis",
+ "▁dep uis",
+ "▁sugg estion",
+ "▁suggest ion",
+ "[ [",
+ "▁Arch ive",
+ "▁Archiv e",
+ "ę p",
+ "▁P ra",
+ "▁Pr a",
+ "re h",
+ "r eh",
+ "▁demon str",
+ "ф і",
+ "cm d",
+ "c md",
+ "▁was n",
+ "▁wa sn",
+ "▁ph one",
+ "▁ phone",
+ "up load",
+ "ay a",
+ "a ya",
+ "то ра",
+ "тор а",
+ "li nes",
+ "line s",
+ "lin es",
+ "l ines",
+ "▁in du",
+ "▁ind u",
+ "▁ indu",
+ "▁v ot",
+ "▁vo t",
+ "▁es pa",
+ "▁esp a",
+ "▁b in",
+ "▁bi n",
+ "▁ bin",
+ "▁по сле",
+ "▁пос ле",
+ "pl an",
+ "pla n",
+ "p lan",
+ "▁ju nio",
+ "▁jun io",
+ "▁juni o",
+ "or ial",
+ "oria l",
+ "ori al",
+ "o rial",
+ "fr ee",
+ "fre e",
+ "f ree",
+ "ster reich",
+ "▁д у",
+ "▁ ду",
+ "▁link ed",
+ "▁lin ked",
+ "▁en able",
+ "▁ enable",
+ "P C",
+ "▁dens ity",
+ "▁E gy",
+ "▁Eg y",
+ "y o",
+ "end re",
+ "▁с ъ",
+ "▁ital iano",
+ "▁A R",
+ "▁ AR",
+ "▁P ers",
+ "▁Per s",
+ "▁Pe rs",
+ "▁ Pers",
+ "fér és",
+ "▁с кла",
+ "V ar",
+ "▁On ce",
+ "▁ Once",
+ "Re d",
+ "R ed",
+ "buf fer",
+ "buff er",
+ "b uffer",
+ "▁En ter",
+ "▁Ent er",
+ "▁ Enter",
+ "▁ Š",
+ "im iento",
+ "imi ento",
+ "St ore",
+ "Sto re",
+ "▁he alth",
+ "va t",
+ "v at",
+ "IS T",
+ "I ST",
+ "O h",
+ "▁k w",
+ "▁ kw",
+ "▁r iv",
+ "▁ri v",
+ "▁ riv",
+ "▁some where",
+ "ograf ie",
+ "ografi e",
+ "priv ate",
+ "p rivate",
+ "кт и",
+ "к ти",
+ "▁de lay",
+ "▁del ay",
+ "▁ delay",
+ "▁H ttp",
+ "▁ Http",
+ "jo b",
+ "j ob",
+ "ra el",
+ "r ael",
+ "em por",
+ "emp or",
+ "▁dici embre",
+ "▁dic iembre",
+ "êt e",
+ "ê te",
+ "ц у",
+ "▁com mit",
+ "▁comm it",
+ "▁ commit",
+ "os o",
+ "o so",
+ "Val ues",
+ "Value s",
+ "▁he aders",
+ "▁head ers",
+ "▁header s",
+ "▁ headers",
+ "trans form",
+ "▁process ing",
+ "▁proces sing",
+ "▁ processing",
+ "r å",
+ "▁A h",
+ "▁ Ah",
+ "▁N ode",
+ "▁No de",
+ "▁ Node",
+ "-- ----------",
+ "---- --------",
+ "-------- ----",
+ "------ ------",
+ "----- -------",
+ "------- -----",
+ "---------- --",
+ "▁f aire",
+ "▁fa ire",
+ "▁fair e",
+ "▁h un",
+ "▁hu n",
+ "Pl ayer",
+ "Play er",
+ "P layer",
+ "▁re view",
+ "▁rev iew",
+ "▁ review",
+ "г да",
+ "▁lim ited",
+ "▁limit ed",
+ "▁ limited",
+ "▁Pro perty",
+ "▁ Property",
+ "▁s erve",
+ "▁ser ve",
+ "▁serv e",
+ "▁ serve",
+ "ri age",
+ "ria ge",
+ "▁M aster",
+ "▁Ma ster",
+ "▁Mas ter",
+ "▁ Master",
+ "▁k ann",
+ "▁kan n",
+ "▁ka nn",
+ "cre te",
+ "cret e",
+ "cr ete",
+ "ph ere",
+ "pher e",
+ "phe re",
+ "p here",
+ "ё р",
+ "▁ch ief",
+ "▁chi ef",
+ "▁sc ene",
+ "▁scen e",
+ "▁ scene",
+ "ki n",
+ "k in",
+ "▁un iform",
+ "▁ uniform",
+ "▁feb rero",
+ "\" }",
+ "il lo",
+ "ill o",
+ "IT E",
+ "I TE",
+ "ou vel",
+ "ouv el",
+ "ouve l",
+ "use package",
+ "en th",
+ "ent h",
+ "e nth",
+ "▁quick ly",
+ "L ambda",
+ "xe s",
+ "x es",
+ "▁c ells",
+ "▁cell s",
+ "▁cel ls",
+ "ro g",
+ "r og",
+ "am in",
+ "ami n",
+ "a min",
+ "▁М ар",
+ "▁Ма р",
+ "▁may or",
+ "▁mayo r",
+ "pl ayer",
+ "play er",
+ "pla yer",
+ "p layer",
+ "++ ;",
+ "▁На се",
+ "▁sa fe",
+ "▁saf e",
+ "▁ safe",
+ "▁ve loc",
+ "▁vel oc",
+ "▁о бра",
+ "▁об ра",
+ "▁ обра",
+ "Data base",
+ "Dat abase",
+ "D atabase",
+ "ne h",
+ "n eh",
+ "Ver t",
+ "V ert",
+ "▁f le",
+ "▁fl e",
+ "▁ф ор",
+ "▁фо р",
+ "▁ фор",
+ "▁f oreign",
+ "▁for eign",
+ "▁fore ign",
+ "Ab stract",
+ "▁m agn",
+ "▁ma gn",
+ "▁mag n",
+ "▁mod ified",
+ "▁milit ary",
+ "▁militar y",
+ "▁m onde",
+ "▁mon de",
+ "▁mo nde",
+ "▁mond e",
+ "▁A ction",
+ "▁Act ion",
+ "▁Ac tion",
+ "▁ Action",
+ "▁b ank",
+ "▁ban k",
+ "▁ bank",
+ "Ser ial",
+ "Se rial",
+ "▁contin uous",
+ "▁continu ous",
+ "▁g el",
+ "▁ge l",
+ "▁ gel",
+ "▁phys ical",
+ "▁introdu ced",
+ "▁introduce d",
+ "ut ure",
+ "ri ck",
+ "ric k",
+ "r ick",
+ "▁present ed",
+ "▁pres ented",
+ "▁presente d",
+ "▁P rov",
+ "▁Pro v",
+ "▁Pr ov",
+ "▁B oth",
+ "▁Bo th",
+ "▁Bot h",
+ "Po s",
+ "P os",
+ "su per",
+ "sup er",
+ "s uper",
+ "& #",
+ "▁f inding",
+ "▁find ing",
+ "▁fin ding",
+ "ne l",
+ "n el",
+ "un de",
+ "und e",
+ "u nde",
+ "▁fr ån",
+ "sk im",
+ "ski m",
+ "s kim",
+ "▁H ill",
+ "▁Hi ll",
+ "▁Hil l",
+ "f n",
+ "▁Can ad",
+ "▁Ca nad",
+ "▁int ended",
+ "▁inten ded",
+ "▁intend ed",
+ "ozzá férés",
+ "▁ju illet",
+ "▁W ars",
+ "▁War s",
+ "▁Wa rs",
+ "▁success ful",
+ "▁ch arg",
+ "▁char g",
+ "▁cha rg",
+ "▁ charg",
+ "ie le",
+ "iel e",
+ "i ele",
+ "om ething",
+ "ome thing",
+ "omet hing",
+ "ok u",
+ "o ku",
+ "f etch",
+ "▁} }",
+ "▁ }}",
+ "ban k",
+ "b ank",
+ "operator name",
+ "▁Col or",
+ "▁Co lor",
+ "▁ Color",
+ "▁C ard",
+ "▁Car d",
+ "▁Ca rd",
+ "▁ Card",
+ "t u",
+ "▁\" ,",
+ "▁ \",",
+ "wi d",
+ "w id",
+ "▁g ep",
+ "▁ge p",
+ "X ML",
+ "======== ========",
+ "▁Vir gin",
+ "ähr end",
+ "äh rend",
+ "lic ated",
+ "licate d",
+ "lica ted",
+ "Di r",
+ "D ir",
+ "ze ro",
+ "zer o",
+ "z ero",
+ "▁K al",
+ "▁Ka l",
+ "▁Par ty",
+ "▁Part y",
+ "▁ å",
+ "pr ice",
+ "p rice",
+ "do n",
+ "d on",
+ "▁w arning",
+ "▁war ning",
+ "▁warn ing",
+ "▁ warning",
+ "▁B ad",
+ "▁Ba d",
+ "▁ Bad",
+ "▁S upp",
+ "▁Su pp",
+ "▁Sup p",
+ "▁ Supp",
+ "▁L iga",
+ "▁Li ga",
+ "▁Lig a",
+ "▁P ierre",
+ "▁Pier re",
+ "▁ Pierre",
+ "Re cord",
+ "Rec ord",
+ "ul ator",
+ "ula tor",
+ "▁R ome",
+ "▁Ro me",
+ "▁Rom e",
+ "▁the orem",
+ "▁ theorem",
+ "▁entire ly",
+ "ски м",
+ "ск им",
+ "с ким",
+ "he t",
+ "h et",
+ "▁d opo",
+ "▁do po",
+ "▁dop o",
+ "Ne xt",
+ "N ext",
+ "ml ung",
+ "m lung",
+ "wi g",
+ "w ig",
+ "▁A th",
+ "▁At h",
+ "▁S ou",
+ "▁So u",
+ "li cher",
+ "lic her",
+ "lich er",
+ "liche r",
+ "l icher",
+ "▁s udo",
+ "▁su do",
+ "▁sud o",
+ "▁ sudo",
+ "es ts",
+ "est s",
+ "хі в",
+ "х ів",
+ "▁sept iembre",
+ "▁m icro",
+ "▁mi cro",
+ "▁mic ro",
+ "▁t rop",
+ "▁tr op",
+ "▁tro p",
+ "fi t",
+ "f it",
+ "Co re",
+ "Cor e",
+ "C ore",
+ "▁Rad io",
+ "▁ Radio",
+ "▁Or gan",
+ "▁ Organ",
+ "▁P ower",
+ "▁Po wer",
+ "▁Pow er",
+ "▁ Power",
+ "C F",
+ "▁L ast",
+ "▁La st",
+ "▁Las t",
+ "▁ Last",
+ "▁op pos",
+ "▁opp os",
+ "▁off set",
+ "▁ offset",
+ "▁re gia",
+ "▁reg ia",
+ "▁min imum",
+ "▁minim um",
+ "▁hel ped",
+ "▁help ed",
+ "an don",
+ "and on",
+ "ando n",
+ "if ying",
+ "ify ing",
+ "ru it",
+ "r uit",
+ "ensch app",
+ "▁b ere",
+ "▁be re",
+ "▁ber e",
+ "▁ bere",
+ "V M",
+ "▁A wards",
+ "▁Award s",
+ "▁Aw ards",
+ "▁a gr",
+ "▁ag r",
+ "▁ agr",
+ "yn omial",
+ "en ced",
+ "ence d",
+ "enc ed",
+ "▁dev ices",
+ "▁device s",
+ "▁devi ces",
+ "▁b ot",
+ "▁bo t",
+ "▁ bot",
+ "▁f irm",
+ "▁fi rm",
+ "▁fir m",
+ "▁w riter",
+ "▁writ er",
+ "▁wr iter",
+ "▁write r",
+ "▁ writer",
+ "▁r ing",
+ "▁ri ng",
+ "▁rin g",
+ "▁ ring",
+ ". -",
+ "is tes",
+ "ist es",
+ "iste s",
+ "l ä",
+ "▁m el",
+ "▁me l",
+ "▁ mel",
+ "ent ation",
+ "enta tion",
+ "▁Sch w",
+ "▁Sc hw",
+ "▁n ome",
+ "▁no me",
+ "▁nom e",
+ "▁ nome",
+ "▁po bla",
+ "▁pob la",
+ "▁w oj",
+ "▁wo j",
+ "▁u l",
+ "▁ ul",
+ "en to",
+ "ent o",
+ "ы х",
+ "▁res ist",
+ "▁rem ains",
+ "▁remain s",
+ "▁C a",
+ "▁ Ca",
+ "añ a",
+ "a ña",
+ "▁C ourt",
+ "▁Co urt",
+ "▁Cour t",
+ "▁Cou rt",
+ "ut able",
+ "uta ble",
+ "u table",
+ "ential ly",
+ "enti ally",
+ "▁t rat",
+ "▁tr at",
+ "▁tra t",
+ "▁ trat",
+ "▁Vis ual",
+ "▁ Visual",
+ "▁rest rict",
+ "▁pre viously",
+ "▁previous ly",
+ "▁prev iously",
+ "ca tion",
+ "cat ion",
+ "c ation",
+ "▁о со",
+ "▁ос о",
+ "▁My SQL",
+ "f ör",
+ "cal a",
+ "ca la",
+ "c ala",
+ "▁c ulture",
+ "▁cult ure",
+ "li ve",
+ "liv e",
+ "l ive",
+ "▁accept ed",
+ "Di d",
+ "D id",
+ "▁h ous",
+ "▁ho us",
+ "▁se lection",
+ "▁select ion",
+ "▁sel ection",
+ "▁sele ction",
+ "▁ selection",
+ "▁de cre",
+ "▁dec re",
+ "mar gin",
+ "m argin",
+ "ur b",
+ "u rb",
+ "▁I nc",
+ "▁In c",
+ "▁M any",
+ "▁Man y",
+ "▁Ma ny",
+ "▁ Many",
+ "ib t",
+ "i bt",
+ "▁succ eed",
+ "▁suc ceed",
+ "Bind ing",
+ "B inding",
+ "c í",
+ "▁R og",
+ "▁Ro g",
+ "▁should n",
+ "cl oud",
+ "clo ud",
+ "clou d",
+ "▁d z",
+ "▁ dz",
+ "ва в",
+ "▁p ix",
+ "▁pi x",
+ "sm all",
+ "▁project s",
+ "▁ projects",
+ "▁O K",
+ "▁ OK",
+ "▁la test",
+ "▁lat est",
+ "▁late st",
+ "▁ latest",
+ "▁re ferences",
+ "▁refer ences",
+ "▁reference s",
+ "Pro gram",
+ "Pr ogram",
+ "▁er st",
+ "▁ers t",
+ "▁ erst",
+ "▁я к",
+ "▁k am",
+ "▁ka m",
+ "▁C amb",
+ "▁Cam b",
+ "▁Ca mb",
+ "el lt",
+ "ell t",
+ "ö d",
+ "no ne",
+ "non e",
+ "n one",
+ "▁j usqu",
+ "▁ju squ",
+ "ki ng",
+ "kin g",
+ "k ing",
+ "▁P ed",
+ "▁Pe d",
+ "as sert",
+ "ass ert",
+ "asse rt",
+ "asser t",
+ "C S",
+ "ri to",
+ "rit o",
+ "r ito",
+ "es sa",
+ "ess a",
+ "ль ко",
+ "▁V on",
+ "▁Vo n",
+ "▁Ed ward",
+ "▁im possible",
+ "▁impos sible",
+ "n p",
+ "word s",
+ "wor ds",
+ "w ords",
+ "ie lt",
+ "iel t",
+ "i elt",
+ "▁P age",
+ "▁Pa ge",
+ "▁ Page",
+ "le rs",
+ "ler s",
+ "l ers",
+ "▁p ier",
+ "▁pi er",
+ "▁pie r",
+ "▁обла сти",
+ "itt ee",
+ "itte e",
+ "▁( [",
+ "▁ ([",
+ "▁t rust",
+ "▁tr ust",
+ "N G",
+ "re du",
+ "red u",
+ "r edu",
+ "< <",
+ "ri al",
+ "ria l",
+ "r ial",
+ "▁product s",
+ "▁ products",
+ "▁E rn",
+ "▁Er n",
+ "ri ère",
+ "r ière",
+ "го в",
+ "г ов",
+ "▁Re ich",
+ "▁Ro ad",
+ "▁n ested",
+ "▁ne sted",
+ "▁nest ed",
+ "▁ nested",
+ "Dis play",
+ "▁str ength",
+ "ograf ía",
+ "▁ann ounced",
+ "▁announ ced",
+ "▁S cience",
+ "▁Sc ience",
+ "▁Sci ence",
+ "▁рай о",
+ "Param eter",
+ "▁T ask",
+ "▁Ta sk",
+ "▁Tas k",
+ "▁ Task",
+ "um ents",
+ "ument s",
+ "umen ts",
+ "u ments",
+ "▁ad opt",
+ "▁On ly",
+ "▁ Only",
+ "ют ь",
+ "ю ть",
+ "▁c li",
+ "▁cl i",
+ "▁ cli",
+ "▁l em",
+ "▁le m",
+ "▁ lem",
+ "st ood",
+ "sto od",
+ "▁F I",
+ "▁ FI",
+ "ên cias",
+ "ência s",
+ "pon ents",
+ "ponent s",
+ "] $",
+ "com ment",
+ "comm ent",
+ "▁y a",
+ "▁ ya",
+ "sh ould",
+ "ik e",
+ "i ke",
+ "ti m",
+ "t im",
+ "el lig",
+ "ell ig",
+ "elli g",
+ "▁s ending",
+ "▁send ing",
+ "▁sen ding",
+ "▁a jax",
+ "▁aj ax",
+ "▁ ajax",
+ "▁nov iembre",
+ "um es",
+ "ume s",
+ "u mes",
+ "▁we iter",
+ "▁weit er",
+ "▁D ans",
+ "▁Dan s",
+ "▁Da ns",
+ "op p",
+ "o pp",
+ "▁sept embre",
+ "▁sep tembre",
+ "ot imes",
+ "oti mes",
+ "o times",
+ "z ő",
+ "▁e p",
+ "▁ ep",
+ "ve re",
+ "ver e",
+ "v ere",
+ "▁o h",
+ "▁ oh",
+ ": =",
+ "▁S ong",
+ "▁So ng",
+ "▁Son g",
+ "” ,",
+ "▁v iv",
+ "▁vi v",
+ "▁ viv",
+ "▁qu eries",
+ "▁que ries",
+ "▁quer ies",
+ "▁v á",
+ "▁ vá",
+ "▁déc embre",
+ "▁un able",
+ "▁una ble",
+ "▁e rh",
+ "▁er h",
+ "▁` -",
+ "▁ `-",
+ "▁L ee",
+ "▁Le e",
+ "▁er sten",
+ "▁erst en",
+ "▁erste n",
+ "▁ers ten",
+ "ô t",
+ "ст ве",
+ "ств е",
+ "T S",
+ "▁f ragment",
+ "▁fra gment",
+ "▁frag ment",
+ "▁ fragment",
+ "▁w ide",
+ "▁wid e",
+ "▁ wide",
+ "▁s uff",
+ "▁su ff",
+ "▁suf f",
+ "▁d ut",
+ "▁du t",
+ "▁V ere",
+ "▁Ver e",
+ "▁Ve re",
+ "і с",
+ "ad ing",
+ "adi ng",
+ "adin g",
+ "a ding",
+ "ie go",
+ "ieg o",
+ "i ego",
+ "ic ago",
+ "ica go",
+ "▁Ar gent",
+ "▁Arg ent",
+ "or er",
+ "ore r",
+ "o rer",
+ "en nes",
+ "enn es",
+ "enne s",
+ "▁L eb",
+ "▁Le b",
+ "lin ux",
+ "ac ing",
+ "aci ng",
+ "a cing",
+ "▁br oken",
+ "▁bro ken",
+ "▁broke n",
+ "t p",
+ "í o",
+ "ab eth",
+ "abe th",
+ "abet h",
+ "ist as",
+ "ista s",
+ "ge w",
+ "g ew",
+ "i ème",
+ "ca s",
+ "c as",
+ "▁pre ced",
+ "▁prec ed",
+ "▁D al",
+ "▁Da l",
+ "▁comp ared",
+ "▁compar ed",
+ "▁compare d",
+ "equ iv",
+ "il ly",
+ "ill y",
+ "te en",
+ "t een",
+ "▁Con sole",
+ "▁Cons ole",
+ "▁ Console",
+ "▁st rict",
+ "▁str ict",
+ "▁stri ct",
+ "it aire",
+ "ita ire",
+ "i taire",
+ "▁E D",
+ "▁ ED",
+ "ential s",
+ "enti als",
+ "▁p erman",
+ "▁per man",
+ "▁perm an",
+ "▁t ous",
+ "▁to us",
+ "▁tou s",
+ "▁g eme",
+ "▁ge me",
+ "▁gem e",
+ "▁ geme",
+ "▁ext rem",
+ "▁extr em",
+ "▁ок ру",
+ "k g",
+ "▁he avy",
+ "▁heav y",
+ "▁av ril",
+ "▁an ti",
+ "▁ant i",
+ "▁ anti",
+ "▁oct obre",
+ "ut f",
+ "u tf",
+ "he lm",
+ "hel m",
+ "h elm",
+ "am ples",
+ "ample s",
+ "amp les",
+ "▁( _",
+ "▁ (_",
+ "ak en",
+ "ake n",
+ "a ken",
+ "▁d ear",
+ "▁de ar",
+ "▁opin ion",
+ "▁f ish",
+ "▁fi sh",
+ "▁fis h",
+ "▁ fish",
+ "▁Alex ander",
+ "▁Alexand er",
+ "i w",
+ "и м",
+ "ca dem",
+ "cade m",
+ "c adem",
+ "▁ref lect",
+ "▁ reflect",
+ "▁д р",
+ "▁t rib",
+ "▁tr ib",
+ "▁tri b",
+ "com mon",
+ "comm on",
+ "▁clear ly",
+ "▁s af",
+ "▁sa f",
+ "=\"@ +",
+ "▁М ос",
+ "▁Мо с",
+ "си те",
+ "eqn array",
+ "nu ng",
+ "n ung",
+ "▁relations hip",
+ "▁relation ship",
+ "▁S em",
+ "▁Se m",
+ "▁ Sem",
+ "▁k illed",
+ "▁kil led",
+ "▁kill ed",
+ "te d",
+ "t ed",
+ "un o",
+ "u no",
+ "▁ лі",
+ "▁w id",
+ "▁ wid",
+ "an ning",
+ "ann ing",
+ "anni ng",
+ "▁p anel",
+ "▁pa nel",
+ "▁pan el",
+ "▁ panel",
+ "▁L eben",
+ "▁Le ben",
+ "▁Leb en",
+ "▁r uby",
+ "▁ru by",
+ "▁rub y",
+ "▁ ruby",
+ "ans ion",
+ "▁a ren",
+ "▁are n",
+ "▁ar en",
+ "▁ aren",
+ "tab ular",
+ "al et",
+ "ale t",
+ "a let",
+ "}$ $",
+ "} $$",
+ "▁L ake",
+ "▁La ke",
+ "▁Lak e",
+ "▁su ite",
+ "▁suit e",
+ "▁ suite",
+ "▁min or",
+ "▁mi nor",
+ "H ozzáférés",
+ "▁xml ns",
+ "▁ xmlns",
+ "DI R",
+ "D IR",
+ "dr iver",
+ "drive r",
+ "dri ver",
+ "d river",
+ "in ts",
+ "int s",
+ "▁v ic",
+ "▁vi c",
+ "▁ vic",
+ "AN D",
+ "A ND",
+ "pr im",
+ "p rim",
+ "сы лки",
+ "▁O x",
+ "T C",
+ "riv ial",
+ "at ie",
+ "ati e",
+ "▁e ight",
+ "▁eig ht",
+ "▁eigh t",
+ "▁conf lic",
+ "▁confl ic",
+ "an gel",
+ "ang el",
+ "ange l",
+ "▁B egr",
+ "▁Be gr",
+ "▁Beg r",
+ "▁explicit ly",
+ "ют ся",
+ "ю тся",
+ "▁D ev",
+ "▁De v",
+ "▁ Dev",
+ "re nder",
+ "ren der",
+ "rend er",
+ "r ender",
+ "▁re produ",
+ "▁rep rodu",
+ "▁repr odu",
+ "▁repro du",
+ "▁c ré",
+ "▁cr é",
+ "G u",
+ "M B",
+ "▁k ön",
+ "▁kö n",
+ "▁rem ained",
+ "▁remain ed",
+ "▁k l",
+ "▁ kl",
+ "хо в",
+ "х ов",
+ "▁b yl",
+ "▁by l",
+ "Ph i",
+ "P hi",
+ "▁de tail",
+ "▁det ail",
+ "▁ detail",
+ "ja v",
+ "j av",
+ "▁m ouse",
+ "▁mo use",
+ "▁mou se",
+ "▁ mouse",
+ "B as",
+ "i ę",
+ "as ser",
+ "ass er",
+ "asse r",
+ "h s",
+ "▁sh ift",
+ "▁ shift",
+ "▁ú lt",
+ "▁ últ",
+ "ra nd",
+ "ran d",
+ "r and",
+ "▁b tn",
+ "▁ btn",
+ "ra z",
+ "r az",
+ "▁p ul",
+ "▁pu l",
+ "▁stat ements",
+ "▁state ments",
+ "▁statement s",
+ "file name",
+ "fil ename",
+ "▁prom pt",
+ "él é",
+ "é lé",
+ "ik z",
+ "▁S us",
+ "▁Su s",
+ "▁de but",
+ "▁deb ut",
+ "St at",
+ "S tat",
+ "form s",
+ "for ms",
+ "▁H ein",
+ "▁He in",
+ "st adt",
+ "sta dt",
+ "stad t",
+ "en nis",
+ "enn is",
+ "по л",
+ "ar ante",
+ "aran te",
+ "ці й",
+ "ц ій",
+ "▁que ue",
+ "▁ queue",
+ "▁re ci",
+ "▁rec i",
+ "▁ reci",
+ "▁s ta",
+ "▁st a",
+ "▁ sta",
+ "yn chron",
+ "cent ering",
+ "center ing",
+ "cente ring",
+ "So me",
+ "S ome",
+ "Gr aph",
+ "G raph",
+ "▁t ested",
+ "▁te sted",
+ "▁test ed",
+ "▁K unst",
+ "▁Kun st",
+ "о м",
+ "▁N othing",
+ "▁No thing",
+ "▁Not hing",
+ "▁ Nothing",
+ "ie u",
+ "i eu",
+ "“ .",
+ "B undle",
+ "▁of icial",
+ "▁ofic ial",
+ "al low",
+ "all ow",
+ "allo w",
+ "▁Re act",
+ "▁L ibrary",
+ "▁Li brary",
+ "▁ Library",
+ "bl ue",
+ "▁ver w",
+ "▁ve rw",
+ "▁p are",
+ "▁par e",
+ "▁pa re",
+ "▁Fried rich",
+ "▁a ware",
+ "▁aw are",
+ "▁ aware",
+ "Ex p",
+ "E xp",
+ "▁effect s",
+ "▁го ро",
+ "▁гор о",
+ "lop edia",
+ "loped ia",
+ "▁V en",
+ "▁Ve n",
+ "ra le",
+ "ral e",
+ "r ale",
+ "▁F inal",
+ "▁Fin al",
+ "▁ Final",
+ "▁pro pos",
+ "▁prop os",
+ "la cement",
+ "lace ment",
+ "lac ement",
+ "kt en",
+ "kte n",
+ "k ten",
+ "▁no vel",
+ "▁nov el",
+ "or ter",
+ "ort er",
+ "orte r",
+ "▁German y",
+ "▁Ger many",
+ "▁Germ any",
+ "▁d jango",
+ "▁ django",
+ "▁trans ition",
+ "▁ transition",
+ "▁happ ened",
+ "▁happen ed",
+ "▁beaut iful",
+ "▁ne ither",
+ "▁nei ther",
+ "▁li braries",
+ "▁h ide",
+ "▁hi de",
+ "▁hid e",
+ "▁ hide",
+ "al g",
+ "a lg",
+ "▁a spect",
+ "▁as pect",
+ "▁asp ect",
+ "▁for get",
+ "▁forg et",
+ "cade my",
+ "cadem y",
+ "on te",
+ "ont e",
+ "re fix",
+ "ref ix",
+ "▁cl oud",
+ "▁clo ud",
+ "▁ cloud",
+ "ne d",
+ "n ed",
+ "cd ots",
+ "cdot s",
+ "c dots",
+ "reg ister",
+ "ny m",
+ "n ym",
+ ".) :",
+ ". ):",
+ "▁J ew",
+ "▁Je w",
+ "▁t rès",
+ "▁tr ès",
+ "ни че",
+ "▁D or",
+ "▁Do r",
+ "▁p roc",
+ "▁pro c",
+ "▁pr oc",
+ "▁ proc",
+ "▁g an",
+ "▁ga n",
+ "▁ gan",
+ "▁ є",
+ "▁S av",
+ "▁Sa v",
+ "v í",
+ "Setting s",
+ "S ettings",
+ "▁V ari",
+ "▁Var i",
+ "▁Va ri",
+ "▁ Vari",
+ "▁c ours",
+ "▁co urs",
+ "▁cour s",
+ "▁cou rs",
+ "R o",
+ "▁con j",
+ "▁re asons",
+ "▁reason s",
+ "▁re ader",
+ "▁read er",
+ "▁ reader",
+ "лекс анд",
+ "ic ate",
+ "ica te",
+ "}) ,",
+ "} ),",
+ "▁task s",
+ "▁ tasks",
+ "▁R ay",
+ "▁Ra y",
+ "▁r ic",
+ "▁ri c",
+ "▁ ric",
+ "K e",
+ "on ie",
+ "oni e",
+ "o nie",
+ "r f",
+ ") [",
+ "▁sub sequ",
+ "▁subs equ",
+ "▁T urn",
+ "▁Tur n",
+ "▁Tu rn",
+ "▁ Turn",
+ "▁VI AF",
+ "math sf",
+ "H E",
+ "▁dec lare",
+ "▁decl are",
+ "▁decla re",
+ "▁declar e",
+ "▁pro tocol",
+ "▁proto col",
+ "▁ protocol",
+ "▁P C",
+ "▁ PC",
+ "ци он",
+ "View ById",
+ "▁an imation",
+ "▁anim ation",
+ "▁ animation",
+ "▁conf used",
+ "ви ч",
+ "▁en abled",
+ "▁enable d",
+ "▁ enabled",
+ "ow o",
+ "o wo",
+ "ás t",
+ "á st",
+ "ö t",
+ "▁m and",
+ "▁ma nd",
+ "▁man d",
+ "▁R ail",
+ "▁Ra il",
+ "field s",
+ "▁K ap",
+ "▁Ka p",
+ "▁al gebra",
+ "▁ algebra",
+ "▁С у",
+ "fér ence",
+ "▁C urrent",
+ "▁Cur rent",
+ "▁ Current",
+ "с но",
+ "▁L im",
+ "▁Li m",
+ "Par ams",
+ "Param s",
+ "Pa rams",
+ "▁Ant onio",
+ "▁Anton io",
+ "▁Anto nio",
+ "▁t v",
+ "▁ tv",
+ "la te",
+ "lat e",
+ "l ate",
+ "if er",
+ "ife r",
+ "i fer",
+ "En try",
+ "Ent ry",
+ "▁S erv",
+ "▁Se rv",
+ "▁Ser v",
+ "▁ Serv",
+ "▁mus ical",
+ "▁music al",
+ "▁musica l",
+ "▁t race",
+ "▁tr ace",
+ "▁tra ce",
+ "▁trac e",
+ "▁ trace",
+ "▁s cient",
+ "▁sc ient",
+ "▁sci ent",
+ "fi c",
+ "f ic",
+ "▁for got",
+ "▁forg ot",
+ "v ideo",
+ "▁o lder",
+ "▁old er",
+ "▁ol der",
+ "▁ older",
+ "Tr ee",
+ "T ree",
+ "▁u ns",
+ "▁un s",
+ "▁ uns",
+ "ни ки",
+ "ник и",
+ "▁E uropa",
+ "▁Europ a",
+ "▁Euro pa",
+ "▁Z we",
+ "▁Zw e",
+ "▁б е",
+ "▁ бе",
+ "▁v ec",
+ "▁ve c",
+ "▁ vec",
+ "ж у",
+ "Mat ch",
+ "M atch",
+ "sp an",
+ "s pan",
+ "▁bl ank",
+ "▁blan k",
+ "▁ blank",
+ "▁sp äter",
+ "▁T y",
+ "▁ Ty",
+ "▁d ict",
+ "▁di ct",
+ "▁dic t",
+ "▁ dict",
+ "ñ a",
+ "▁conf irm",
+ "▁confir m",
+ "▁ confirm",
+ "▁v ý",
+ "за н",
+ "з ан",
+ "Re l",
+ "R el",
+ "fil m",
+ "fi lm",
+ "▁R ot",
+ "▁Ro t",
+ "▁ Rot",
+ "▁H y",
+ "▁ Hy",
+ "ка х",
+ "▁dem and",
+ "▁min ist",
+ "▁mini st",
+ "▁Mad rid",
+ "▁us ual",
+ "sp iel",
+ "s piel",
+ "er os",
+ "ero s",
+ "e ros",
+ "▁t utorial",
+ "▁tut orial",
+ "▁ tutorial",
+ "▁С сылки",
+ "s ys",
+ "ци аль",
+ "▁sp read",
+ "▁spr ead",
+ "▁spre ad",
+ "▁con vers",
+ "▁conver s",
+ "▁conv ers",
+ "▁r oll",
+ "▁ro ll",
+ "▁rol l",
+ "▁ roll",
+ "artifact Id",
+ "▁N umber",
+ "▁Num ber",
+ "▁ Number",
+ "▁sym met",
+ "▁M ult",
+ "▁Mu lt",
+ "▁Mul t",
+ "▁ Mult",
+ "ex pected",
+ "exp ected",
+ "expect ed",
+ "▁a xis",
+ "▁ax is",
+ "▁ axis",
+ "▁match ing",
+ "▁f ood",
+ "▁fo od",
+ "▁foo d",
+ "group Id",
+ "Map p",
+ "Ma pp",
+ "M app",
+ "▁с вя",
+ "▁v end",
+ "▁ve nd",
+ "▁ven d",
+ "F ound",
+ "ot to",
+ "ott o",
+ "o tto",
+ "Ca t",
+ "C at",
+ "cri t",
+ "cr it",
+ "c rit",
+ "ist ent",
+ "iste nt",
+ "isten t",
+ "▁d rei",
+ "▁dr ei",
+ "▁dre i",
+ "▁en ded",
+ "▁end ed",
+ "▁ende d",
+ "▁ ended",
+ "▁T ele",
+ "▁Te le",
+ "▁Tel e",
+ "com ponent",
+ "▁invol ved",
+ "▁involve d",
+ "▁Est ados",
+ "▁Estado s",
+ "▁Estad os",
+ "▁d anger",
+ "▁dan ger",
+ "▁ch ain",
+ "▁cha in",
+ "▁ chain",
+ "▁P rom",
+ "▁Pro m",
+ "▁Pr om",
+ "▁ Prom",
+ "ho m",
+ "h om",
+ "▁pol ít",
+ "co p",
+ "c op",
+ "▁n ap",
+ "▁na p",
+ "▁ nap",
+ "ri f",
+ "r if",
+ "ple ments",
+ "pl ements",
+ "plement s",
+ "▁v ent",
+ "▁ve nt",
+ "▁ven t",
+ "▁ vent",
+ "an na",
+ "ann a",
+ "an ted",
+ "ant ed",
+ "ante d",
+ "date d",
+ "da ted",
+ "dat ed",
+ "d ated",
+ "an th",
+ "ant h",
+ "a nth",
+ "▁thread s",
+ "▁thre ads",
+ "▁ threads",
+ "зо ва",
+ "зов а",
+ "з ова",
+ "▁ста нов",
+ "▁стан ов",
+ "▁ станов",
+ "▁e erst",
+ "▁eer st",
+ "bu f",
+ "b uf",
+ "he id",
+ "▁R u",
+ "▁P rim",
+ "▁Pr im",
+ "▁Pri m",
+ "▁ Prim",
+ "▁m igr",
+ "▁mi gr",
+ "▁mig r",
+ "▁ migr",
+ "▁Un idos",
+ "▁ar bitr",
+ "▁r oman",
+ "▁ro man",
+ "▁rom an",
+ "ount ry",
+ "oun try",
+ "ult ur",
+ "▁K önig",
+ "▁Kö nig",
+ "▁an not",
+ "▁ann ot",
+ "▁anno t",
+ "▁ annot",
+ "ach ing",
+ "ac hing",
+ "achi ng",
+ "▁H aupt",
+ "▁Ha upt",
+ "um in",
+ "umi n",
+ "u min",
+ "▁h em",
+ "▁he m",
+ "▁ hem",
+ "ck ets",
+ "cket s",
+ "cke ts",
+ "ba u",
+ "b au",
+ "ect ion",
+ "ec tion",
+ "e ction",
+ "ef t",
+ "e ft",
+ "▁package s",
+ "▁pack ages",
+ "▁ packages",
+ "▁K ur",
+ "▁Ku r",
+ "th ur",
+ "▁p ays",
+ "▁pa ys",
+ "▁pay s",
+ "li ament",
+ "lia ment",
+ "▁Б у",
+ "▁c ada",
+ "▁ca da",
+ "▁cad a",
+ "po ints",
+ "point s",
+ "oc ket",
+ "ock et",
+ "o cket",
+ "▁v erb",
+ "▁ver b",
+ "▁ve rb",
+ "▁ verb",
+ "ле е",
+ "▁sub mit",
+ "▁subm it",
+ "▁ submit",
+ "▁s an",
+ "▁sa n",
+ "▁ san",
+ "ru by",
+ "r uby",
+ "▁e ast",
+ "▁eas t",
+ "▁ east",
+ "ko v",
+ "k ov",
+ "▁Ver lag",
+ "▁Verl ag",
+ "▁ Verlag",
+ "▁s pot",
+ "▁sp ot",
+ "▁spo t",
+ "▁ spot",
+ "pp o",
+ "p po",
+ "E ach",
+ "je kt",
+ "▁Bi ographie",
+ "▁ne ws",
+ "▁new s",
+ "▁ news",
+ "▁pa ís",
+ "uf act",
+ "u fact",
+ "▁d ia",
+ "▁di a",
+ "▁ dia",
+ "ко ва",
+ "ков а",
+ "к ова",
+ "▁accom pl",
+ "▁accomp l",
+ "▁É t",
+ "▁ Ét",
+ "il ities",
+ "ili ties",
+ "▁i hm",
+ "▁ih m",
+ "in voke",
+ "inv oke",
+ "▁app end",
+ "▁ap pend",
+ "▁appe nd",
+ "▁ append",
+ ".) ,",
+ ". ),",
+ "▁l ab",
+ "▁la b",
+ "▁ lab",
+ "an ging",
+ "ang ing",
+ "is tan",
+ "ist an",
+ "ista n",
+ "i stan",
+ "re sol",
+ "res ol",
+ "reso l",
+ "▁S ection",
+ "▁Se ction",
+ "▁Sec tion",
+ "▁ Section",
+ "Par ent",
+ "Pa rent",
+ "mo z",
+ "m oz",
+ "Ma t",
+ "M at",
+ "st yles",
+ "style s",
+ "sty les",
+ "un den",
+ "und en",
+ "unde n",
+ "“ ,",
+ "irt schaft",
+ "ки м",
+ "к им",
+ "▁Fin ally",
+ "▁Final ly",
+ "ph en",
+ "phe n",
+ "p hen",
+ "▁P ac",
+ "▁Pa c",
+ "▁Array List",
+ "▁ ArrayList",
+ "▁re cover",
+ "▁rec over",
+ "▁e ducation",
+ "▁educ ation",
+ "mod els",
+ "model s",
+ "mode ls",
+ "pe d",
+ "p ed",
+ "▁h appy",
+ "▁ha ppy",
+ "▁happ y",
+ "ч у",
+ "▁guer ra",
+ "me dia",
+ "med ia",
+ "medi a",
+ "m edia",
+ "O F",
+ "▁ens ure",
+ "▁ ensure",
+ "Mar k",
+ "M ark",
+ "data base",
+ "dat abase",
+ "datab ase",
+ "d atabase",
+ "og gle",
+ "▁pub lish",
+ "▁publi sh",
+ "▁ publish",
+ "O W",
+ "▁B au",
+ "▁Ba u",
+ "? .",
+ "▁ча сти",
+ "▁час ти",
+ "▁част и",
+ "▁re pository",
+ "▁repos itory",
+ "▁ repository",
+ "▁M att",
+ "▁Ma tt",
+ "▁Mat t",
+ "hi gh",
+ "h igh",
+ "ov en",
+ "ove n",
+ "o ven",
+ "▁g er",
+ "▁ge r",
+ "▁ ger",
+ "▁un known",
+ "▁ unknown",
+ "Am er",
+ "A mer",
+ "▁B rown",
+ "▁Br own",
+ "▁Bro wn",
+ "▁Brow n",
+ "AL L",
+ "A LL",
+ "▁result ing",
+ "▁b or",
+ "▁bo r",
+ "▁ bor",
+ "▁po et",
+ "ни ми",
+ "ним и",
+ "Em ail",
+ "E mail",
+ "F ont",
+ "▁h ist",
+ "▁his t",
+ "▁hi st",
+ "▁to day",
+ "▁tod ay",
+ "▁toda y",
+ "▁ today",
+ "▁B erg",
+ "▁Be rg",
+ "▁Ber g",
+ "▁but tons",
+ "▁button s",
+ "та л",
+ "т ал",
+ "▁s ni",
+ "▁sn i",
+ "▁че лов",
+ "Cr e",
+ "C re",
+ "▁un ion",
+ "▁ union",
+ "▁z ich",
+ "ish op",
+ "i shop",
+ "▁qu ando",
+ "▁quand o",
+ "▁quan do",
+ "P o",
+ "CT ION",
+ "▁C ost",
+ "▁Co st",
+ "▁Cos t",
+ "▁ Cost",
+ "су дар",
+ "er ved",
+ "erv ed",
+ "erve d",
+ "Not e",
+ "No te",
+ "N ote",
+ "Equ al",
+ "Eq ual",
+ "E qual",
+ "ли я",
+ "бу р",
+ "б ур",
+ "▁ab stract",
+ "▁abstra ct",
+ "▁ abstract",
+ "st op",
+ "sto p",
+ "s top",
+ "▁ad vice",
+ "▁adv ice",
+ "▁i con",
+ "▁ic on",
+ "▁ icon",
+ "▁tr avel",
+ "▁tra vel",
+ "▁trav el",
+ "B S",
+ "ve ns",
+ "ven s",
+ "v ens",
+ "▁b atch",
+ "▁bat ch",
+ "▁ batch",
+ "li que",
+ "liqu e",
+ "l ique",
+ "she et",
+ "s heet",
+ "▁i hre",
+ "▁ih re",
+ "▁ihr e",
+ "em on",
+ "emo n",
+ "e mon",
+ "ber to",
+ "bert o",
+ "▁as signed",
+ "▁ass igned",
+ "▁assign ed",
+ "ь ю",
+ "Ph one",
+ "▁a ward",
+ "▁aw ard",
+ "▁function ality",
+ "▁functional ity",
+ "al la",
+ "all a",
+ "a lla",
+ "▁D am",
+ "▁Da m",
+ "▁ci udad",
+ "▁cl uster",
+ "▁clust er",
+ "▁ cluster",
+ "De scription",
+ "Des cription",
+ "▁s heet",
+ "▁she et",
+ "▁ sheet",
+ "▁Austral ian",
+ "▁Australia n",
+ "▁» .",
+ "▁ ».",
+ "▁\" <",
+ "▁wonder ing",
+ "ain e",
+ "ai ne",
+ "a ine",
+ "▁represent ed",
+ "▁repres ented",
+ "ka ppa",
+ "kap pa",
+ "k appa",
+ "n b",
+ "▁s y",
+ "▁K ö",
+ "=\" #",
+ "▁s even",
+ "▁se ven",
+ "Direct ory",
+ "D irectory",
+ "▁s ister",
+ "▁si ster",
+ "▁sist er",
+ "pl ates",
+ "plate s",
+ "pla tes",
+ "▁l uck",
+ "▁lu ck",
+ "▁luc k",
+ "▁rem aining",
+ "▁remain ing",
+ "▁V ill",
+ "▁Vi ll",
+ "▁Vil l",
+ "wer k",
+ "w erk",
+ "an ni",
+ "ann i",
+ "et ti",
+ "ett i",
+ "fun c",
+ "fu nc",
+ "f unc",
+ "▁b an",
+ "▁ba n",
+ "▁ ban",
+ "im s",
+ "i ms",
+ "mi ss",
+ "mis s",
+ "m iss",
+ "ag raph",
+ "agr aph",
+ "a graph",
+ "ек си",
+ "е кси",
+ "▁R ef",
+ "▁Re f",
+ "▁ Ref",
+ "ni tt",
+ "nit t",
+ "n itt",
+ "▁G ab",
+ "▁Ga b",
+ "▁and ere",
+ "▁jed och",
+ "result s",
+ "! \\",
+ "▁l isted",
+ "▁li sted",
+ "▁list ed",
+ "▁liste d",
+ "▁l oro",
+ "▁lo ro",
+ "▁kn ows",
+ "▁know s",
+ "ж но",
+ "R ad",
+ "▁s ocket",
+ "▁so cket",
+ "▁soc ket",
+ "▁ socket",
+ "mult i",
+ "mul ti",
+ "▁р і",
+ "▁ рі",
+ "ra ils",
+ "rai ls",
+ "r ails",
+ "▁t ar",
+ "▁ta r",
+ "▁ tar",
+ "▁gent le",
+ "se tt",
+ "set t",
+ "s ett",
+ "serv ices",
+ "service s",
+ "bo und",
+ "b ound",
+ "ig keit",
+ "aj a",
+ "a ja",
+ "▁c md",
+ "▁cm d",
+ "▁ cmd",
+ "ag ger",
+ "agg er",
+ "▁b a",
+ "▁ ba",
+ "▁Be lg",
+ "▁Bel g",
+ "▁K le",
+ "▁Kl e",
+ "▁word t",
+ "▁wor dt",
+ "▁f ost",
+ "▁fo st",
+ "▁fos t",
+ "▁dim ension",
+ "An g",
+ "A ng",
+ "um ing",
+ "umin g",
+ "umi ng",
+ "u ming",
+ "Ob j",
+ "не н",
+ "н ен",
+ "▁M arie",
+ "▁Mar ie",
+ "▁Ma rie",
+ "▁Mari e",
+ "▁ Marie",
+ "ex ists",
+ "exist s",
+ "т ро",
+ "▁бо ль",
+ "▁ боль",
+ "em ente",
+ "ement e",
+ "emen te",
+ "e mente",
+ "▁J on",
+ "▁Jo n",
+ "SE RT",
+ "SER T",
+ "S ERT",
+ "▁high est",
+ "ak i",
+ "a ki",
+ "▁t res",
+ "▁tr es",
+ "▁tre s",
+ "▁ tres",
+ "▁circ um",
+ "▁D own",
+ "▁Do wn",
+ "▁Dow n",
+ "▁ Down",
+ "om men",
+ "omm en",
+ "ur er",
+ "ure r",
+ "u rer",
+ "▁caus es",
+ "▁cause s",
+ "▁ca uses",
+ "ven ue",
+ "iss ance",
+ "▁influ ence",
+ "▁influen ce",
+ "▁f at",
+ "▁fa t",
+ "ре ди",
+ "ред и",
+ "р еди",
+ "}\\ \\",
+ "} \\\\",
+ "▁en tr",
+ "▁ent r",
+ "▁ entr",
+ "▁S ign",
+ "▁Si gn",
+ "▁Sig n",
+ "▁ Sign",
+ "▁к ла",
+ "▁ кла",
+ "▁b inding",
+ "▁bind ing",
+ "▁bin ding",
+ "▁ binding",
+ "es sen",
+ "ess en",
+ "esse n",
+ "▁Ф ран",
+ "▁L ocal",
+ "▁Lo cal",
+ "▁Loc al",
+ "▁ Local",
+ "▁я вля",
+ "ap pro",
+ "app ro",
+ "▁dep endencies",
+ "▁depend encies",
+ "▁ dependencies",
+ "▁talk ing",
+ "▁tal king",
+ "▁zur ück",
+ "con nection",
+ "connect ion",
+ "conne ction",
+ "conn ection",
+ "Act ive",
+ "Activ e",
+ "bb e",
+ "b be",
+ "ir ls",
+ "irl s",
+ "▁In f",
+ "▁ Inf",
+ "w d",
+ "▁и с",
+ "▁ ис",
+ "ro ad",
+ "▁con ven",
+ "▁conv en",
+ "ě t",
+ "ве з",
+ "в ез",
+ "▁ent ries",
+ "▁entr ies",
+ "▁ entries",
+ "es c",
+ "e sc",
+ "▁b its",
+ "▁bit s",
+ "▁bi ts",
+ "▁ bits",
+ "as so",
+ "ass o",
+ "W R",
+ "sh ips",
+ "ship s",
+ "s hips",
+ "▁d és",
+ "▁dé s",
+ "es p",
+ "e sp",
+ "Ma ke",
+ "M ake",
+ "▁famil iar",
+ "▁familia r",
+ "Ar t",
+ "A rt",
+ "▁ar my",
+ "▁arm y",
+ "ct r",
+ "c tr",
+ "ér ic",
+ "éri c",
+ "é ric",
+ "que ue",
+ "▁\\ {",
+ "▁ \\{",
+ "ue la",
+ "uel a",
+ "u ela",
+ "am iento",
+ "ami ento",
+ "ши х",
+ "ш их",
+ "▁\" \"\"",
+ "▁\"\" \"",
+ "con tr",
+ "cont r",
+ "лл е",
+ "л ле",
+ "F S",
+ "▁mar ket",
+ "▁mark et",
+ "▁ market",
+ "ån g",
+ "å ng",
+ "cite p",
+ "cit ep",
+ "Il l",
+ "I ll",
+ "ran k",
+ "r ank",
+ "▁s ender",
+ "▁se nder",
+ "▁send er",
+ "▁sen der",
+ "▁ sender",
+ "▁be im",
+ "▁bei m",
+ "ра к",
+ "▁com pat",
+ "▁comp at",
+ "▁ compat",
+ "▁occ urs",
+ "▁occur s",
+ "▁d iese",
+ "▁di ese",
+ "▁die se",
+ "▁dies e",
+ "сти ту",
+ "aw a",
+ "a wa",
+ "▁i OS",
+ "▁Ch inese",
+ "▁Chine se",
+ "▁T R",
+ "▁ TR",
+ "▁K en",
+ "▁Ke n",
+ "▁U ne",
+ "▁Un e",
+ "▁cre ates",
+ "▁create s",
+ "▁sh owed",
+ "▁show ed",
+ "▁sho wed",
+ "▁é v",
+ "▁ év",
+ "olog ia",
+ "olo gia",
+ "▁pro test",
+ "▁prote st",
+ "▁prot est",
+ "▁P f",
+ "▁s quad",
+ "▁squ ad",
+ "++ ,",
+ "á v",
+ "▁ess ere",
+ "з я",
+ "ko l",
+ "k ol",
+ "▁slight ly",
+ "ad dr",
+ "add r",
+ "â n",
+ "▁red uce",
+ "▁redu ce",
+ "▁ reduce",
+ "▁\\ (\\",
+ "▁\\( \\",
+ "▁D ep",
+ "▁De p",
+ "▁ Dep",
+ "▁gener ic",
+ "▁gene ric",
+ "▁ generic",
+ "Lo ader",
+ "Load er",
+ "ț i",
+ "▁п ос",
+ "▁по с",
+ "▁occ asion",
+ "▁occas ion",
+ "▁L ady",
+ "▁La dy",
+ "▁Lad y",
+ "ent ity",
+ "enti ty",
+ "▁av ant",
+ "▁ avant",
+ "▁P as",
+ "▁Pa s",
+ "ag gio",
+ "aggi o",
+ "agg io",
+ "\\ {",
+ "па д",
+ "athol ic",
+ "Pass word",
+ "▁res pond",
+ "▁resp ond",
+ "▁ respond",
+ "▁N on",
+ "▁No n",
+ "▁ Non",
+ "A G",
+ "ne g",
+ "n eg",
+ "▁у с",
+ "▁ ус",
+ "bl ob",
+ "blo b",
+ "b lob",
+ "ck e",
+ "c ke",
+ "▁Cons ider",
+ "▁C are",
+ "▁Car e",
+ "▁Ca re",
+ "ik i",
+ "i ki",
+ "▁Ch icago",
+ "in den",
+ "ind en",
+ "inde n",
+ "▁C op",
+ "▁Co p",
+ "] +",
+ "ö m",
+ "év rier",
+ "к ло",
+ "al en",
+ "ale n",
+ "a len",
+ "▁m aj",
+ "▁ma j",
+ "ra cy",
+ "rac y",
+ "r acy",
+ "or te",
+ "ort e",
+ "ien ts",
+ "ient s",
+ "i ents",
+ "el ls",
+ "ell s",
+ "act ivity",
+ "activ ity",
+ "▁r untime",
+ "▁run time",
+ "▁runt ime",
+ "▁ runtime",
+ "NU LL",
+ "N ULL",
+ "▁poss ibly",
+ "▁possib ly",
+ "▁s tri",
+ "▁st ri",
+ "▁str i",
+ "iz i",
+ "i zi",
+ "▁m ir",
+ "▁mi r",
+ "▁ mir",
+ "▁V ersion",
+ "▁Vers ion",
+ "▁ Version",
+ "pr ime",
+ "prim e",
+ "▁tw enty",
+ "▁M ah",
+ "▁Ma h",
+ "▁s ounds",
+ "▁sound s",
+ "ше н",
+ "ш ен",
+ "cl usion",
+ "clus ion",
+ "ac z",
+ "a cz",
+ "▁determ ined",
+ "▁determine d",
+ "▁determin ed",
+ "▁R ep",
+ "▁Re p",
+ "▁ Rep",
+ "▁Land es",
+ "▁Lan des",
+ "▁w all",
+ "▁wa ll",
+ "▁wal l",
+ "▁ wall",
+ "ig i",
+ "i gi",
+ "▁re set",
+ "▁res et",
+ "▁ reset",
+ "ш о",
+ "ya n",
+ "y an",
+ "Me t",
+ "M et",
+ "e i",
+ "▁app earance",
+ "▁appear ance",
+ "▁f ois",
+ "▁fo is",
+ "▁foi s",
+ "▁ fois",
+ "▁n ell",
+ "▁ne ll",
+ "▁nel l",
+ "▁ nell",
+ "es i",
+ "e si",
+ "ё т",
+ "lo or",
+ "l oor",
+ "▁U l",
+ "▁resol ution",
+ "▁f ot",
+ "▁fo t",
+ "▁through out",
+ "▁r i",
+ "▁ ri",
+ "Le vel",
+ "po ol",
+ "p ool",
+ "▁id entity",
+ "▁ident ity",
+ "▁ identity",
+ "▁j anu",
+ "▁jan u",
+ "▁ja nu",
+ "▁im per",
+ "▁imp er",
+ "▁ imper",
+ "▁ö ver",
+ "} `",
+ "▁in fer",
+ "▁inf er",
+ "▁d ates",
+ "▁da tes",
+ "▁dat es",
+ "▁date s",
+ "▁ dates",
+ "▁Stand ard",
+ "▁ Standard",
+ "for ce",
+ "oc key",
+ "ock ey",
+ "ter a",
+ "te ra",
+ "t era",
+ "▁dist ingu",
+ "▁pres ence",
+ "li ca",
+ "lic a",
+ "l ica",
+ "▁le aving",
+ "it ung",
+ "itu ng",
+ "é b",
+ "▁estab lish",
+ "▁m aar",
+ "▁ma ar",
+ "ad i",
+ "a di",
+ "▁New s",
+ "▁Ne ws",
+ "▁ News",
+ "az on",
+ "a zon",
+ "fo lg",
+ "fol g",
+ "f olg",
+ "▁H ence",
+ "▁Hen ce",
+ "▁Y e",
+ "▁f ab",
+ "▁fa b",
+ "▁ fab",
+ "▁f ühr",
+ "▁ führ",
+ "it map",
+ "▁V ers",
+ "▁Ver s",
+ "▁Ve rs",
+ "ro v",
+ "r ov",
+ "Si gn",
+ "S ign",
+ "de vice",
+ "dev ice",
+ "S igma",
+ "▁wet enschapp",
+ "▁P s",
+ "PA TH",
+ "P ATH",
+ "▁t orn",
+ "▁to rn",
+ "▁tor n",
+ "ve st",
+ "ves t",
+ "v est",
+ "ст ов",
+ "сто в",
+ "с тов",
+ "ac count",
+ "acc ount",
+ "acco unt",
+ "▁lar gest",
+ "▁large st",
+ "▁larg est",
+ "▁per cent",
+ "▁perce nt",
+ "▁ percent",
+ "▁W omen",
+ "▁Wo men",
+ "▁im g",
+ "▁ img",
+ "to ol",
+ "t ool",
+ "▁r oce",
+ "▁ro ce",
+ "▁a y",
+ "▁ ay",
+ "in et",
+ "ine t",
+ "i net",
+ "▁ao ût",
+ "▁pol ynomial",
+ "▁integr al",
+ "▁integra l",
+ "▁a reas",
+ "▁are as",
+ "▁area s",
+ "} '",
+ "▁h yp",
+ "▁hy p",
+ "loy ee",
+ "та ль",
+ "тал ь",
+ "т аль",
+ "▁pro xy",
+ "▁ proxy",
+ "▁W y",
+ "▁М екси",
+ "▁Ме кси",
+ "▁es cape",
+ "▁esc ape",
+ "▁ escape",
+ "ol ar",
+ "ola r",
+ "o lar",
+ "▁mis take",
+ "▁mist ake",
+ ")} {",
+ ") }{",
+ "▁P ot",
+ "▁Po t",
+ "▁process es",
+ "▁proc esses",
+ "\"> \r",
+ "\" >\r",
+ "hal ten",
+ "halt en",
+ "zz a",
+ "z za",
+ "am o",
+ "a mo",
+ "к ре",
+ "▁W ood",
+ "▁Wo od",
+ "ø r",
+ "▁с ер",
+ "▁се р",
+ "▁ сер",
+ "oc ia",
+ "oci a",
+ "o cia",
+ "tw o",
+ "t wo",
+ "pro file",
+ "prof ile",
+ "▁A st",
+ "▁As t",
+ "em bro",
+ "emb ro",
+ "▁ar ms",
+ "▁arm s",
+ "in as",
+ "ina s",
+ "i nas",
+ "in nen",
+ "inn en",
+ "▁m sg",
+ "▁ms g",
+ "▁ msg",
+ "IN T",
+ "I NT",
+ "▁b atter",
+ "▁batt er",
+ "▁bat ter",
+ "ign ment",
+ "▁v y",
+ "▁ vy",
+ "H rsg",
+ "▁G rund",
+ "▁Gr und",
+ "▁Gru nd",
+ "ro c",
+ "r oc",
+ "se g",
+ "s eg",
+ "▁de cor",
+ "▁dec or",
+ "▁ decor",
+ "▁event ually",
+ "> ,",
+ "▁p ag",
+ "▁pa g",
+ "▁ pag",
+ "an ten",
+ "ant en",
+ "ante n",
+ "a nten",
+ "▁str ugg",
+ "▁stru gg",
+ "}^ \\",
+ "} ^\\",
+ "date n",
+ "da ten",
+ "dat en",
+ "d aten",
+ "▁re la",
+ "▁r ela",
+ "▁rel a",
+ "по в",
+ "п ов",
+ "▁ко ро",
+ "▁кор о",
+ "▁B os",
+ "▁Bo s",
+ "▁l abor",
+ "▁la bor",
+ "▁lab or",
+ "▁Se cret",
+ "▁Sec ret",
+ "▁ Secret",
+ "ug en",
+ "uge n",
+ "u gen",
+ "▁j ap",
+ "▁ja p",
+ "▁hus band",
+ "▁Al bum",
+ "▁Alb um",
+ "▁et wa",
+ "▁про из",
+ "ri cht",
+ "ric ht",
+ "rich t",
+ "r icht",
+ "ra ch",
+ "rac h",
+ "r ach",
+ "ba t",
+ "b at",
+ "▁pre par",
+ "▁prep ar",
+ "▁St ock",
+ "▁Sto ck",
+ "▁l ack",
+ "▁la ck",
+ "▁lac k",
+ "▁ lack",
+ "хі д",
+ "х ід",
+ "▁h ogy",
+ "▁ho gy",
+ "▁Ch rome",
+ "▁Chr ome",
+ "▁Ad min",
+ "▁ Admin",
+ "▁com parison",
+ "▁compar ison",
+ "▁incre asing",
+ "н г",
+ "im i",
+ "i mi",
+ "D b",
+ "▁g ef",
+ "▁ge f",
+ "▁ gef",
+ "uch t",
+ "uc ht",
+ "u cht",
+ "és e",
+ "é se",
+ "gen ce",
+ "g ence",
+ "▁C ore",
+ "▁Cor e",
+ "▁Co re",
+ "▁ Core",
+ "▁in correct",
+ "▁incor rect",
+ "▁ass uming",
+ "▁assum ing",
+ "our se",
+ "ours e",
+ "ie ron",
+ "ier on",
+ "iero n",
+ "▁The orem",
+ "▁ Theorem",
+ "▁c asa",
+ "▁cas a",
+ "▁ca sa",
+ "je s",
+ "j es",
+ "▁д ере",
+ "▁де ре",
+ "▁` \"",
+ "L D",
+ "ä ß",
+ "De b",
+ "D eb",
+ "▁su iv",
+ "▁B ank",
+ "▁Ban k",
+ "li bs",
+ "lib s",
+ "▁Le on",
+ "▁Leo n",
+ "▁qu art",
+ "▁quar t",
+ "▁prof essional",
+ "▁profession al",
+ "▁profess ional",
+ "▁t iene",
+ "▁ti ene",
+ "▁tie ne",
+ "▁acc omp",
+ "▁ac comp",
+ "▁accom p",
+ "ст ер",
+ "сте р",
+ "с тер",
+ "▁U K",
+ "▁ UK",
+ "N N",
+ "▁l í",
+ "ц я",
+ "ke l",
+ "k el",
+ "▁ •",
+ "▁d ise",
+ "▁di se",
+ "▁dis e",
+ "on to",
+ "ont o",
+ "▁m á",
+ "if s",
+ "i fs",
+ "bi ld",
+ "bil d",
+ "b ild",
+ "▁comp ute",
+ "▁comput e",
+ "▁ compute",
+ "▁é d",
+ "▁ éd",
+ "j ę",
+ "▁M é",
+ "▁l anguages",
+ "▁language s",
+ "▁T imes",
+ "▁Time s",
+ "▁Tim es",
+ "▁Ti mes",
+ "▁ Times",
+ "ce n",
+ "c en",
+ "▁ав то",
+ "ý m",
+ "en ez",
+ "ene z",
+ "e nez",
+ "▁u pp",
+ "▁up p",
+ "▁ upp",
+ "▁m éd",
+ "▁mé d",
+ "▁cu ando",
+ "о д",
+ "Int ent",
+ "ee rd",
+ "e erd",
+ "▁T al",
+ "▁Ta l",
+ "off set",
+ "offs et",
+ "▁h aben",
+ "▁ha ben",
+ "▁hab en",
+ "▁habe n",
+ "re me",
+ "rem e",
+ "r eme",
+ "▁St ack",
+ "▁Sta ck",
+ "▁ Stack",
+ "▁d ri",
+ "▁dr i",
+ "▁ dri",
+ "▁sein em",
+ "▁seine m",
+ "▁sei nem",
+ "▁f évrier",
+ "▁comb ination",
+ "▁combin ation",
+ "▁s oll",
+ "▁so ll",
+ "▁sol l",
+ "▁mov ement",
+ "▁mo vement",
+ "▁move ment",
+ "Sp ec",
+ "Spe c",
+ "S pec",
+ "к ры",
+ "ret ch",
+ "r etch",
+ "Off set",
+ "Ro ot",
+ "R oot",
+ "А р",
+ "wa rt",
+ "war t",
+ "w art",
+ "▁F ollow",
+ "▁Fol low",
+ "▁So cial",
+ "▁Soci al",
+ "▁Soc ial",
+ "ни ков",
+ "ник ов",
+ "▁ →",
+ "Do n",
+ "D on",
+ "▁h arm",
+ "▁ha rm",
+ "▁har m",
+ "▁ harm",
+ "ag r",
+ "a gr",
+ "ne go",
+ "neg o",
+ "n ego",
+ "re source",
+ "res ource",
+ "▁L uc",
+ "▁Lu c",
+ "▁se inen",
+ "▁sein en",
+ "▁seine n",
+ "▁sei nen",
+ "▁De partment",
+ "▁Depart ment",
+ "▁Up date",
+ "▁ Update",
+ "▁Tex as",
+ "▁re ve",
+ "▁rev e",
+ "▁P os",
+ "▁Po s",
+ "▁ Pos",
+ "▁s hot",
+ "▁sh ot",
+ "▁sho t",
+ "▁ shot",
+ "ot he",
+ "oth e",
+ "o the",
+ "▁repe ated",
+ "▁repeat ed",
+ "▁rec ently",
+ "▁recent ly",
+ "áb an",
+ "á ban",
+ "ak s",
+ "a ks",
+ "па н",
+ "п ан",
+ "▁c ha",
+ "▁ch a",
+ "▁ cha",
+ "oh l",
+ "o hl",
+ "▁t end",
+ "▁te nd",
+ "▁ten d",
+ "▁д во",
+ "ch ts",
+ "cht s",
+ "ça ise",
+ "çais e",
+ "pl ing",
+ "p ling",
+ "al bum",
+ "e j",
+ "▁` [",
+ "ma ps",
+ "map s",
+ "m aps",
+ "▁un its",
+ "▁unit s",
+ "▁< !--",
+ "▁",
+ "St and",
+ "▁techn ique",
+ "▁techni que",
+ "▁E ss",
+ "▁Es s",
+ "▁Ox ford",
+ "▁ ла",
+ "t ikz",
+ "ли й",
+ "Log in",
+ "Lo gin",
+ "▁min ister",
+ "▁minist er",
+ "▁mini ster",
+ "▁ minister",
+ "▁c url",
+ "▁cu rl",
+ "▁cur l",
+ "▁ curl",
+ "ka n",
+ "k an",
+ "▁m aps",
+ "▁ma ps",
+ "▁map s",
+ "▁ maps",
+ "in da",
+ "ind a",
+ "ri eb",
+ "rie b",
+ "r ieb",
+ "▁E ND",
+ "▁EN D",
+ "▁ END",
+ "if ies",
+ "ifi es",
+ "ifie s",
+ "con sole",
+ "cons ole",
+ "bu ry",
+ "bur y",
+ "b ury",
+ "▁L E",
+ "▁ LE",
+ "▁indep end",
+ "▁inde pend",
+ "▁t a",
+ "▁ ta",
+ "▁ Ś",
+ "on el",
+ "one l",
+ "o nel",
+ "és z",
+ "é sz",
+ "▁I st",
+ "▁Is t",
+ "ut ive",
+ "uti ve",
+ "ё л",
+ "▁Reg ion",
+ "▁ Region",
+ "▁( =",
+ "▁comp act",
+ "ço is",
+ "ç ois",
+ "▁label s",
+ "▁lab els",
+ "▁ labels",
+ "autor ité",
+ "▁s tan",
+ "▁st an",
+ "▁sta n",
+ "▁ stan",
+ "▁fran çaise",
+ "▁français e",
+ "▁rem oving",
+ "▁remov ing",
+ "y c",
+ "} |",
+ "▁Ex ec",
+ "▁ Exec",
+ "($ _",
+ "( $_",
+ "ma g",
+ "m ag",
+ "be fore",
+ "▁stop ped",
+ "▁sto pped",
+ "ми и",
+ "▁ref resh",
+ "▁ refresh",
+ "un kt",
+ "unk t",
+ "ic io",
+ "ici o",
+ "i cio",
+ "X ml",
+ "▁T ab",
+ "▁Ta b",
+ "▁ Tab",
+ "▁f ounded",
+ "▁found ed",
+ "▁f al",
+ "▁fa l",
+ "▁ fal",
+ "f x",
+ "▁Histor ia",
+ "▁Hist oria",
+ "▁Ear ly",
+ "▁Earl y",
+ "Do m",
+ "D om",
+ "▁de cide",
+ "▁dec ide",
+ "▁decid e",
+ "▁under stood",
+ "▁j ur",
+ "▁ju r",
+ "▁N r",
+ "▁cap ac",
+ "wa s",
+ "w as",
+ "▁en emy",
+ "▁enem y",
+ "▁program s",
+ "▁m ask",
+ "▁ma sk",
+ "▁mas k",
+ "▁ mask",
+ "ск е",
+ "с ке",
+ "▁gr oupe",
+ "▁group e",
+ "ca m",
+ "c am",
+ "▁w idget",
+ "▁wid get",
+ "▁ widget",
+ "RE ATE",
+ "▁se va",
+ "▁Bar cel",
+ "▁p erd",
+ "▁per d",
+ "▁pe rd",
+ "▁М у",
+ "ran ce",
+ "r ance",
+ "TY PE",
+ "T YPE",
+ "▁{ '",
+ "▁ {'",
+ "▁b ill",
+ "▁bi ll",
+ "▁bil l",
+ "▁\" _",
+ "' `",
+ "ba hn",
+ "bah n",
+ "b ahn",
+ "▁cont ained",
+ "▁contain ed",
+ "Cl ose",
+ "C lose",
+ "ru g",
+ "r ug",
+ "eg y",
+ "e gy",
+ "▁s ight",
+ "▁sig ht",
+ "▁Pro vin",
+ "▁Prov in",
+ "н ю",
+ "ar z",
+ "a rz",
+ "ще н",
+ "щ ен",
+ "▁J oe",
+ "▁Jo e",
+ "▁de leted",
+ "▁delete d",
+ "▁delet ed",
+ "▁A uto",
+ "▁Aut o",
+ "▁Au to",
+ "▁ Auto",
+ "▁m eter",
+ "▁me ter",
+ "▁met er",
+ "▁ meter",
+ "C G",
+ "ъ л",
+ "▁p ent",
+ "▁pe nt",
+ "▁pen t",
+ "▁ pent",
+ "▁be zeichnet",
+ "Su m",
+ "S um",
+ "db c",
+ "d bc",
+ "▁Pl atz",
+ "▁Pla tz",
+ "▁Plat z",
+ "ect ors",
+ "ector s",
+ "e ctors",
+ "▁L ittle",
+ "QU E",
+ "Q UE",
+ "ці я",
+ "ц ія",
+ "те ля",
+ "тел я",
+ "nig ht",
+ "n ight",
+ "▁l l",
+ "▁ ll",
+ "▁most ly",
+ "UI D",
+ "U ID",
+ "▁b ez",
+ "▁be z",
+ "▁ bez",
+ "do b",
+ "d ob",
+ "кс и",
+ "к си",
+ "ter ne",
+ "tern e",
+ "t erne",
+ "▁cor ner",
+ "▁corn er",
+ "at y",
+ "a ty",
+ "▁impro ve",
+ "▁improv e",
+ "▁impr ove",
+ "▁in tr",
+ "▁int r",
+ "▁` @",
+ "ar od",
+ "aro d",
+ "a rod",
+ "▁install ation",
+ "▁instal lation",
+ "▁Refer ências",
+ "ig an",
+ "iga n",
+ "i gan",
+ "▁crit ic",
+ "ad el",
+ "ade l",
+ "a del",
+ "▁се ло",
+ ", \r",
+ "at ori",
+ "ator i",
+ "ato ri",
+ "▁F ri",
+ "▁Fr i",
+ "▁ Fri",
+ "▁ré férences",
+ "▁Int ent",
+ "▁ Intent",
+ "▁t ant",
+ "▁tan t",
+ "▁ta nt",
+ "un ci",
+ "unc i",
+ "▁level s",
+ "▁lev els",
+ "er es",
+ "ere s",
+ "e res",
+ "▁e mer",
+ "▁em er",
+ "▁ emer",
+ "sa fe",
+ "t k",
+ "▁c ham",
+ "▁ch am",
+ "▁cha m",
+ "▁great ly",
+ "▁we it",
+ "▁ weit",
+ "▁co ach",
+ "▁to ward",
+ "Hom e",
+ "H ome",
+ "▁Bo olean",
+ "▁ Boolean",
+ "те л",
+ "т ел",
+ "▁m ock",
+ "▁mo ck",
+ "▁ mock",
+ "▁appreci ate",
+ "▁C ross",
+ "▁Cr oss",
+ "▁Cro ss",
+ "▁T ake",
+ "▁Ta ke",
+ "▁Tak e",
+ "▁ Take",
+ "D P",
+ "▁s ides",
+ "▁si des",
+ "▁side s",
+ "▁sid es",
+ "▁Norm daten",
+ "де й",
+ "д ей",
+ "st al",
+ "sta l",
+ "s tal",
+ "▁c out",
+ "▁co ut",
+ "▁cou t",
+ "▁ cout",
+ "b n",
+ "▁V ert",
+ "▁Ver t",
+ "▁Ve rt",
+ "▁ Vert",
+ "▁b ird",
+ "▁bi rd",
+ "▁bir d",
+ "▁ bird",
+ "▁dynam ically",
+ "▁dynamic ally",
+ "▁D ol",
+ "▁Do l",
+ "▁B urg",
+ "▁Bu rg",
+ "▁Bur g",
+ "▁d og",
+ "▁do g",
+ "▁ dog",
+ "ät t",
+ "ä tt",
+ "▁n uc",
+ "▁nu c",
+ "E C",
+ "By tes",
+ "Byte s",
+ "▁a k",
+ "▁ ak",
+ "re land",
+ "rel and",
+ "r eland",
+ "▁gu itar",
+ "▁reg arding",
+ "▁regard ing",
+ "▁F uß",
+ "▁Fu ß",
+ "▁до л",
+ "▁ дол",
+ "au ss",
+ "aus s",
+ "a uss",
+ "▁j ej",
+ "▁je j",
+ "ac o",
+ "a co",
+ "▁up dates",
+ "▁update s",
+ "▁upd ates",
+ "ру к",
+ "р ук",
+ "(' /",
+ "▁c old",
+ "▁col d",
+ "▁co ld",
+ "▁G iven",
+ "▁Gi ven",
+ "▁Give n",
+ "hi n",
+ "h in",
+ "▁fe eling",
+ "▁feel ing",
+ "▁fee ling",
+ "ig li",
+ "fa h",
+ "f ah",
+ "ст ре",
+ "стр е",
+ "с тре",
+ "bo ol",
+ "b ool",
+ "init ial",
+ "▁станов ника",
+ "▁An na",
+ "▁Ann a",
+ "▁h ors",
+ "▁hor s",
+ "▁ho rs",
+ "▁d oll",
+ "▁do ll",
+ "▁dol l",
+ "▁con sum",
+ "▁cons um",
+ "▁ consum",
+ "ub er",
+ "ube r",
+ "u ber",
+ "stand ing",
+ "stan ding",
+ "act iv",
+ "з і",
+ "check ed",
+ "▁perm issions",
+ "▁permission s",
+ "▁M onte",
+ "▁Mon te",
+ "▁Mont e",
+ "Write Line",
+ "pl us",
+ "p lus",
+ "▁E qu",
+ "▁Eq u",
+ "▁ Equ",
+ "▁и х",
+ "▁ их",
+ "ч ки",
+ "un que",
+ "▁L O",
+ "▁ LO",
+ "e a",
+ "sam ple",
+ "s ample",
+ "ie sz",
+ "ies z",
+ "i esz",
+ "or al",
+ "ora l",
+ "o ral",
+ "▁И н",
+ "os ton",
+ "ost on",
+ "osto n",
+ "o ston",
+ "▁S imon",
+ "▁Sim on",
+ "▁Si mon",
+ "fa st",
+ "fas t",
+ "f ast",
+ "m k",
+ "as sen",
+ "ass en",
+ "asse n",
+ "▁arch itecture",
+ "▁architect ure",
+ "▁ architecture",
+ "ens es",
+ "ense s",
+ "▁ Å",
+ "▁to pic",
+ "▁top ic",
+ "▁ topic",
+ "▁dis able",
+ "▁ disable",
+ "▁C ru",
+ "▁Cr u",
+ "▁Cont rol",
+ "▁ Control",
+ "▁cre ation",
+ "▁hy per",
+ "▁hyp er",
+ "▁ hyper",
+ "it ud",
+ "itu d",
+ "же ния",
+ "ar am",
+ "ara m",
+ "a ram",
+ "▁г де",
+ "ien st",
+ "iens t",
+ "i enst",
+ "ed ule",
+ "edu le",
+ "▁B ot",
+ "▁Bo t",
+ "▁О с",
+ "▁The ir",
+ "an ne",
+ "ann e",
+ "M icrosoft",
+ "▁P M",
+ "▁ PM",
+ "yd ro",
+ "y dro",
+ "ent lich",
+ "▁E ine",
+ "▁Ein e",
+ "CH AR",
+ ": '",
+ "We ll",
+ "Wel l",
+ "W ell",
+ "le ton",
+ "let on",
+ "l eton",
+ "▁support s",
+ "▁sup ports",
+ "'] )",
+ "' ])",
+ "man ual",
+ "▁v ice",
+ "▁vi ce",
+ "▁vic e",
+ "▁ vice",
+ "as a",
+ "a sa",
+ "cl os",
+ "clo s",
+ "c los",
+ "vi sed",
+ "vis ed",
+ "v ised",
+ "▁p ok",
+ "▁po k",
+ "tr ack",
+ "tra ck",
+ "t rack",
+ "но ст",
+ "нос т",
+ "... .....",
+ ".... ....",
+ "..... ...",
+ "▁' \\",
+ "▁ '\\",
+ "² .",
+ "▁or ders",
+ "▁order s",
+ "▁ord ers",
+ "▁ orders",
+ "et ta",
+ "ett a",
+ "e tta",
+ "▁con version",
+ "▁conv ersion",
+ "▁convers ion",
+ "▁t rade",
+ "▁tr ade",
+ "▁tra de",
+ "▁trad e",
+ "cl i",
+ "c li",
+ "▁И сто",
+ "▁Ис то",
+ "▁a kt",
+ "▁ak t",
+ "▁ akt",
+ "▁sub set",
+ "▁subs et",
+ "▁ subset",
+ "▁a ug",
+ "▁au g",
+ "▁ aug",
+ "▁le aves",
+ "▁leave s",
+ "Mat h",
+ "Ma th",
+ "M ath",
+ "an ned",
+ "ann ed",
+ "anne d",
+ "ka l",
+ "k al",
+ "▁Ве ли",
+ "▁n og",
+ "▁no g",
+ "▁ nog",
+ "▁e th",
+ "▁et h",
+ "▁ eth",
+ "▁h air",
+ "▁ha ir",
+ "ar ound",
+ "aro und",
+ "a round",
+ "▁java x",
+ "▁jav ax",
+ "▁ javax",
+ "во й",
+ "▁C entre",
+ "▁Cent re",
+ "ö ß",
+ "ut i",
+ "u ti",
+ "▁n avigation",
+ "▁navig ation",
+ "▁ navigation",
+ "▁P S",
+ "▁ PS",
+ "▁w a",
+ "▁ wa",
+ "▁Ро ссии",
+ "▁Рос сии",
+ "▁Росси и",
+ "us a",
+ "u sa",
+ "ze ta",
+ "zet a",
+ "z eta",
+ "▁P DF",
+ "▁ PDF",
+ "▁m ismo",
+ "▁mis mo",
+ "▁mism o",
+ "pro perties",
+ "me ister",
+ "ль та",
+ "for ward",
+ "▁O st",
+ "▁Os t",
+ "ki ns",
+ "kin s",
+ "k ins",
+ "▁s ido",
+ "▁si do",
+ "▁sid o",
+ "зо в",
+ "з ов",
+ "ta gs",
+ "tag s",
+ "t ags",
+ "▁a ctor",
+ "▁act or",
+ "▁ac tor",
+ "▁ actor",
+ "▁f ly",
+ "▁fl y",
+ "▁ fly",
+ "C R",
+ "ag ini",
+ "agi ni",
+ "agin i",
+ "▁l ett",
+ "▁le tt",
+ "▁let t",
+ "▁ lett",
+ "en i",
+ "e ni",
+ "te ch",
+ "t ech",
+ "▁E nc",
+ "▁En c",
+ "▁ Enc",
+ "or acle",
+ "ora cle",
+ "o racle",
+ "amil ton",
+ "ze j",
+ "z ej",
+ "fe n",
+ "f en",
+ "ume rate",
+ "umer ate",
+ "▁qu esto",
+ "▁que sto",
+ "▁q uesto",
+ "▁quest o",
+ "da rt",
+ "dar t",
+ "d art",
+ "▁K ore",
+ "▁Ko re",
+ "▁Kor e",
+ "ap is",
+ "api s",
+ "a pis",
+ "ep er",
+ "e per",
+ "Sc reen",
+ "S creen",
+ "wa ll",
+ "wal l",
+ "w all",
+ "▁is land",
+ "sh e",
+ "s he",
+ "▁l igger",
+ "▁lig ger",
+ "в ся",
+ "fa ng",
+ "fan g",
+ "f ang",
+ "▁t ard",
+ "▁tar d",
+ "▁ta rd",
+ "▁pla ats",
+ "▁п ло",
+ "▁ пло",
+ "▁Off ice",
+ "▁Offic e",
+ "▁ Office",
+ "▁S ET",
+ "▁SE T",
+ "▁ SET",
+ "▁circ uit",
+ "je d",
+ "j ed",
+ "Sa ve",
+ "S ave",
+ "ль но",
+ "So cket",
+ "S ocket",
+ "▁In dex",
+ "▁Ind ex",
+ "▁ Index",
+ "AC K",
+ "A CK",
+ "id ers",
+ "ide rs",
+ "ider s",
+ "i ders",
+ "er er",
+ "ere r",
+ "e rer",
+ "▁С ША",
+ "▁l ady",
+ "▁la dy",
+ "▁lad y",
+ "▁sch eme",
+ "▁sche me",
+ "ie lle",
+ "iel le",
+ "i elle",
+ "▁ex erc",
+ "▁exer c",
+ ")} \\",
+ ") }\\",
+ "Date Time",
+ "at han",
+ "ath an",
+ "a than",
+ "▁Prof essor",
+ "▁mo ins",
+ "▁moi ns",
+ "▁Ex cel",
+ "▁ Excel",
+ "▁H ay",
+ "▁Ha y",
+ "▁Mus ik",
+ "▁ ї",
+ "ę d",
+ "▁\" .",
+ "▁ \".",
+ "▁бу в",
+ "▁inst rument",
+ "▁instru ment",
+ "па р",
+ "п ар",
+ "▁б ере",
+ "▁бе ре",
+ "▁ бере",
+ "▁polit ique",
+ "▁trad ition",
+ "▁V M",
+ "▁ VM",
+ "▁Ar ts",
+ "▁Art s",
+ "▁C i",
+ "Us e",
+ "U se",
+ "▁a ggreg",
+ "▁ag greg",
+ "▁ aggreg",
+ "▁we eks",
+ "▁week s",
+ "▁o pport",
+ "▁op port",
+ "▁opp ort",
+ "it ing",
+ "iti ng",
+ "i ting",
+ "▁vert ical",
+ "▁ vertical",
+ "▁N az",
+ "▁Na z",
+ ".. .)",
+ "... )",
+ "iz o",
+ "i zo",
+ "▁c ycle",
+ "▁cy cle",
+ "▁cycl e",
+ "▁ cycle",
+ "▁tem po",
+ "▁temp o",
+ "т ре",
+ "▁hand ling",
+ "ist ence",
+ "isten ce",
+ "▁p aste",
+ "▁pas te",
+ "▁pa ste",
+ "▁past e",
+ "▁ paste",
+ "▁en jo",
+ "RO UP",
+ "▁o uter",
+ "▁out er",
+ "▁ou ter",
+ "▁ outer",
+ "▁su pply",
+ "▁supp ly",
+ "▁sup ply",
+ "em an",
+ "ema n",
+ "e man",
+ "▁acc ident",
+ "▁\\ ]",
+ "▁ \\]",
+ "▁те х",
+ "▁ тех",
+ "Po ol",
+ "P ool",
+ "ot ing",
+ "oti ng",
+ "o ting",
+ "onym ous",
+ "▁Gi ov",
+ "▁u d",
+ "▁ ud",
+ "▁. /",
+ "▁ ./",
+ "ER ROR",
+ "ERR OR",
+ "con struct",
+ "const ruct",
+ "text width",
+ "qu ipe",
+ "qui pe",
+ "quip e",
+ "case s",
+ "cas es",
+ "c ases",
+ "▁а д",
+ "▁R ow",
+ "▁Ro w",
+ "▁ Row",
+ "Hol der",
+ "Hold er",
+ "H older",
+ "wa n",
+ "w an",
+ "ar na",
+ "arn a",
+ "Me m",
+ "M em",
+ "▁Canad ian",
+ "▁Com mission",
+ "▁Comm ission",
+ "su n",
+ "s un",
+ "▁app s",
+ "▁ap ps",
+ "▁ apps",
+ "▁B lo",
+ "▁Bl o",
+ "▁i hrer",
+ "▁ih rer",
+ "▁ihr er",
+ "▁ihre r",
+ "▁famil le",
+ "▁fam ille",
+ "▁m ě",
+ "▁p y",
+ "▁ py",
+ "и с",
+ "▁т ого",
+ "▁то го",
+ "▁ того",
+ "▁Ag ain",
+ "▁ign ore",
+ "▁ignor e",
+ "▁ ignore",
+ "▁tele vision",
+ "▁televis ion",
+ "Pa t",
+ "P at",
+ "hi de",
+ "h ide",
+ "▁R ev",
+ "▁Re v",
+ "▁b ear",
+ "▁be ar",
+ "ph y",
+ "p hy",
+ "▁no ise",
+ "▁w ra",
+ "▁wr a",
+ "at ionale",
+ "ation ale",
+ "ational e",
+ "▁coll abor",
+ "bor der",
+ "b order",
+ "▁el ected",
+ "▁elect ed",
+ "▁ele cted",
+ "▁sur pr",
+ "▁a voir",
+ "▁av oir",
+ "▁avo ir",
+ "▁ avoir",
+ "▁ass embly",
+ "▁assemb ly",
+ "▁ assembly",
+ "▁об ще",
+ "▁arbitr ary",
+ "▁br ief",
+ "▁- --",
+ "▁-- -",
+ "▁ ---",
+ "▁M aur",
+ "▁Ma ur",
+ "▁Mau r",
+ "gr ession",
+ "gress ion",
+ "g ression",
+ "ic ia",
+ "ici a",
+ "i cia",
+ "▁lie gt",
+ "▁Fig ure",
+ "▁on to",
+ "▁ont o",
+ "▁ onto",
+ "Re pository",
+ "Repos itory",
+ "▁dé f",
+ "▁f orth",
+ "▁for th",
+ "▁fort h",
+ "▁cl icked",
+ "▁click ed",
+ "se ite",
+ "▁n otes",
+ "▁not es",
+ "▁no tes",
+ "▁note s",
+ "▁ notes",
+ "nat ive",
+ "n ative",
+ "▁ED IT",
+ "▁ EDIT",
+ "ы е",
+ "M T",
+ "am ental",
+ "ament al",
+ "amen tal",
+ "▁r ose",
+ "▁ro se",
+ "▁ros e",
+ "▁ rose",
+ "▁pu ede",
+ "▁pue de",
+ "De legate",
+ "Deleg ate",
+ "ub a",
+ "u ba",
+ "ne o",
+ "xi s",
+ "x is",
+ "▁Ar thur",
+ "UR E",
+ "U RE",
+ "am ing",
+ "ami ng",
+ "amin g",
+ "a ming",
+ "De vice",
+ "Dev ice",
+ "▁d iam",
+ "▁di am",
+ "▁dia m",
+ "st änd",
+ "▁p ron",
+ "▁pro n",
+ "▁pr on",
+ "oi s",
+ "o is",
+ "com ing",
+ "co ming",
+ "c oming",
+ "Param eters",
+ "Parameter s",
+ "uv ud",
+ "▁ab ility",
+ "▁ ability",
+ "▁m ét",
+ "▁mé t",
+ "▁Un fortunately",
+ "f d",
+ "D ictionary",
+ "so cket",
+ "sock et",
+ "s ocket",
+ "▁con oc",
+ "▁co noc",
+ "cont ains",
+ "es sed",
+ "ess ed",
+ "esse d",
+ "▁gel dig",
+ "▁geld ig",
+ "ни ца",
+ "ниц а",
+ "▁point ed",
+ "es ti",
+ "est i",
+ "no m",
+ "n om",
+ "ографи я",
+ "▁represent s",
+ "▁repres ents",
+ "▁man ip",
+ "wor ld",
+ "w orld",
+ "▁resol ved",
+ "▁resolve d",
+ "te gr",
+ "t egr",
+ "▁d ort",
+ "▁do rt",
+ "▁dor t",
+ "as tern",
+ "ast ern",
+ "aster n",
+ "aste rn",
+ "▁camp aign",
+ "▁pr imo",
+ "▁prim o",
+ "▁pri mo",
+ "▁; ;",
+ "▁ ;;",
+ "▁sni ppet",
+ "▁N ik",
+ "▁Ni k",
+ "To tal",
+ "T otal",
+ "iss ement",
+ "isse ment",
+ "AC E",
+ "A CE",
+ "▁ver ify",
+ "▁ verify",
+ "if fe",
+ "iff e",
+ "i ffe",
+ "la gen",
+ "lag en",
+ "lage n",
+ "l agen",
+ "ie ur",
+ "ieu r",
+ "i eur",
+ "▁convert ed",
+ "▁conver ted",
+ "▁Mil it",
+ "▁Mi lit",
+ "▁A lg",
+ "▁Al g",
+ "▁ Alg",
+ "▁R on",
+ "▁Ro n",
+ "▁k onn",
+ "▁kon n",
+ "▁ko nn",
+ "ap ple",
+ "app le",
+ "▁dis pos",
+ "▁disp os",
+ "stell ung",
+ "▁re tain",
+ "▁ret ain",
+ "▁m entre",
+ "▁men tre",
+ "▁ment re",
+ "▁ne ut",
+ "▁neu t",
+ "▁ neut",
+ "▁N ight",
+ "ch é",
+ "c hé",
+ "at ti",
+ "att i",
+ "▁o bra",
+ "▁ob ra",
+ "▁super ior",
+ "▁Con gress",
+ "▁Cong ress",
+ "ё м",
+ "▁c odes",
+ "▁code s",
+ "▁co des",
+ "▁cod es",
+ "▁ codes",
+ "▁A ma",
+ "▁Am a",
+ "▁E arth",
+ "▁Ear th",
+ "▁oppos ite",
+ "▁p ool",
+ "▁po ol",
+ "▁ pool",
+ "▁D un",
+ "▁Du n",
+ "же ние",
+ "▁\" ${",
+ "▁\"$ {",
+ "in v",
+ "▁у ни",
+ "▁And rew",
+ "▁Andre w",
+ "те лей",
+ "тел ей",
+ "▁by ł",
+ "Un ivers",
+ "Uni vers",
+ "▁Ang ular",
+ "an im",
+ "ani m",
+ "a nim",
+ "до ва",
+ "дов а",
+ "д ова",
+ "BU G",
+ "B UG",
+ "ut ely",
+ "ute ly",
+ "▁draw ing",
+ "▁dra wing",
+ "▁g ain",
+ "▁ga in",
+ "▁four th",
+ "▁Pro blem",
+ "▁ Problem",
+ "▁sudden ly",
+ "▁ Ä",
+ "on na",
+ "onn a",
+ "▁K ont",
+ "▁Kon t",
+ "▁Ko nt",
+ "▁Bilder n",
+ "▁Bild ern",
+ "▁Bil dern",
+ "▁konn te",
+ "ž e",
+ "Tr ace",
+ "Tra ce",
+ "T race",
+ "▁sec ure",
+ "▁ secure",
+ "▁któ ry",
+ "▁e q",
+ "▁ eq",
+ "▁f ormal",
+ "▁for mal",
+ "▁form al",
+ "▁forma l",
+ "amer ikan",
+ "▁A nal",
+ "▁An al",
+ "▁Ana l",
+ "▁ Anal",
+ "▁R ewrite",
+ "▁Re write",
+ "▁D ouble",
+ "▁Dou ble",
+ "▁ Double",
+ "cre ated",
+ "create d",
+ "N U",
+ "MD b",
+ "M Db",
+ "ap es",
+ "ape s",
+ "a pes",
+ "Un is",
+ "Uni s",
+ "U nis",
+ "▁e special",
+ "▁espe cial",
+ "▁espec ial",
+ "}) \\",
+ "} )\\",
+ "ed om",
+ "edo m",
+ "e dom",
+ "▁c ategor",
+ "▁categ or",
+ "Re turn",
+ "Ret urn",
+ "▁H amb",
+ "▁Ha mb",
+ "▁Ham b",
+ "▁R io",
+ "▁Ri o",
+ "▁M ir",
+ "▁Mi r",
+ "▁G eme",
+ "▁Ge me",
+ "▁Gem e",
+ "ab ilities",
+ "abil ities",
+ "tr z",
+ "t rz",
+ "us et",
+ "use t",
+ "u set",
+ "ier ra",
+ "net work",
+ "n etwork",
+ "▁do ctor",
+ "▁doc tor",
+ "eur s",
+ "eu rs",
+ "e urs",
+ "▁l isten",
+ "▁li sten",
+ "▁list en",
+ "▁liste n",
+ "▁ listen",
+ "д ж",
+ "▁H ö",
+ "▁cons ists",
+ "▁consist s",
+ "as m",
+ "a sm",
+ "Ch r",
+ "C hr",
+ "al and",
+ "ala nd",
+ "a land",
+ "▁испо ль",
+ "▁ис поль",
+ "▁испол ь",
+ "▁lug ar",
+ "▁lu gar",
+ "▁def initely",
+ "▁definit ely",
+ "▁definite ly",
+ "mo ve",
+ "mov e",
+ "m ove",
+ "úblic a",
+ "ú blica",
+ "▁l än",
+ "▁lä n",
+ "is mus",
+ "ism us",
+ "▁др жа",
+ "▁d t",
+ "▁ dt",
+ "▁Per haps",
+ "▁Bra sil",
+ "▁Bras il",
+ "Jo hn",
+ "J ohn",
+ "▁prom ise",
+ "ł u",
+ "re ens",
+ "ree ns",
+ "reen s",
+ "▁ps ych",
+ "▁W ho",
+ "▁Wh o",
+ "▁ Who",
+ "ря д",
+ "▁IN TO",
+ "▁INT O",
+ "▁Pe ople",
+ "▁Will iams",
+ "▁William s",
+ "▁M arg",
+ "▁Mar g",
+ "▁Ma rg",
+ "▁д ан",
+ "▁да н",
+ "▁ дан",
+ "re cord",
+ "rec ord",
+ "▁E uro",
+ "▁Eu ro",
+ "▁Eur o",
+ "▁Virgin ia",
+ "▁R est",
+ "▁Re st",
+ "▁Res t",
+ "▁ Rest",
+ "▁C orn",
+ "▁Cor n",
+ "▁Co rn",
+ "}} ,",
+ "} },",
+ "▁G rid",
+ "▁Gr id",
+ "▁ Grid",
+ "▁in ject",
+ "▁inj ect",
+ "▁ inject",
+ "на н",
+ "н ан",
+ "▁c row",
+ "▁cr ow",
+ "▁cro w",
+ "▁Ph ys",
+ "▁ Phys",
+ "▁D O",
+ "▁ DO",
+ "▁\" -",
+ "▁incre ased",
+ "▁increase d",
+ "ach er",
+ "ac her",
+ "ache r",
+ "a cher",
+ "pe at",
+ "Li n",
+ "L in",
+ "▁D ub",
+ "▁Du b",
+ "ri ces",
+ "ric es",
+ "rice s",
+ "r ices",
+ "ag nost",
+ "agn ost",
+ "d l",
+ "▁cur ve",
+ "▁curv e",
+ "ü g",
+ "ri ce",
+ "ric e",
+ "r ice",
+ "l anguage",
+ "Click Listener",
+ "▁municip al",
+ "▁O ri",
+ "▁Or i",
+ "▁ Ori",
+ "▁B ild",
+ "▁Bi ld",
+ "▁Bil d",
+ "▁C ab",
+ "▁Ca b",
+ "▁V ar",
+ "▁Va r",
+ "▁ Var",
+ "▁n oted",
+ "▁not ed",
+ "▁no ted",
+ "▁note d",
+ "▁ Î",
+ "▁s ubs",
+ "▁su bs",
+ "▁sub s",
+ "ia tion",
+ "iat ion",
+ "i ation",
+ "W OR",
+ "in gly",
+ "ing ly",
+ "▁R us",
+ "▁Ru s",
+ "ie ns",
+ "ien s",
+ "i ens",
+ "IN FO",
+ "INF O",
+ "к ва",
+ "at ivo",
+ "ativ o",
+ "ati vo",
+ "ge nde",
+ "gen de",
+ "g ende",
+ "▁Fran z",
+ "▁Fr anz",
+ "▁is ol",
+ "▁i sol",
+ "ed es",
+ "ede s",
+ "e des",
+ "ni er",
+ "nie r",
+ "n ier",
+ "▁N O",
+ "▁ NO",
+ "▁H as",
+ "▁Ha s",
+ "▁ Has",
+ "be ans",
+ "bean s",
+ "▁p andas",
+ "▁pan das",
+ "▁ pandas",
+ "(\" %",
+ "ві т",
+ "ут бо",
+ "▁g ather",
+ "▁ga ther",
+ "▁gat her",
+ "▁le gal",
+ "▁leg al",
+ "▁ legal",
+ "in clud",
+ "▁circum st",
+ "cript or",
+ "ri ble",
+ "rib le",
+ "r ible",
+ "▁S üd",
+ "▁Sü d",
+ "▁a pro",
+ "▁ap ro",
+ "▁apr o",
+ "Ap i",
+ "A pi",
+ "▁на й",
+ "▁Afr ican",
+ "▁Africa n",
+ "ow ski",
+ "ows ki",
+ "▁John son",
+ "ie k",
+ "i ek",
+ "▁v ote",
+ "▁vo te",
+ "▁vot e",
+ "▁ vote",
+ "▁K an",
+ "▁Ka n",
+ "▁b ibli",
+ "▁bib li",
+ "▁ bibli",
+ "▁h aar",
+ "▁ha ar",
+ "▁v r",
+ "▁ vr",
+ "]) ,",
+ "] ),",
+ "subset eq",
+ "Par ser",
+ "Parse r",
+ "ia ni",
+ "ian i",
+ "i ani",
+ "is é",
+ "id ea",
+ "ide a",
+ "On ly",
+ "▁á l",
+ "▁ ál",
+ "▁C atal",
+ "▁Ca tal",
+ "▁Cat al",
+ "▁C ase",
+ "▁Cas e",
+ "▁Ca se",
+ "▁ Case",
+ "se h",
+ "s eh",
+ "▁en counter",
+ "▁enc ounter",
+ "▁re form",
+ "▁ref orm",
+ "ми ни",
+ "мин и",
+ "▁S tre",
+ "▁St re",
+ "▁Str e",
+ "ex ception",
+ "except ion",
+ "▁T ar",
+ "▁Ta r",
+ "та р",
+ "т ар",
+ "tr l",
+ "t rl",
+ "▁А лександ",
+ "ле кт",
+ "лек т",
+ "equ al",
+ "eq ual",
+ "e qual",
+ "O p",
+ "▁l if",
+ "▁li f",
+ "▁й ого",
+ "▁volt age",
+ "▁volta ge",
+ "sh ire",
+ "s hire",
+ "▁Gro ß",
+ "в ня",
+ "ning s",
+ "n ings",
+ "н ци",
+ "▁l ag",
+ "▁la g",
+ "▁ lag",
+ "▁and eren",
+ "▁andere n",
+ "▁v ac",
+ "▁va c",
+ "▁ma cro",
+ "▁mac ro",
+ "▁ macro",
+ "= [",
+ "Th en",
+ "The n",
+ "T hen",
+ "▁control s",
+ "▁contr ols",
+ "▁contro ls",
+ "▁ controls",
+ "se q",
+ "s eq",
+ "olog ies",
+ "ologie s",
+ "▁select or",
+ "▁sel ector",
+ "▁sele ctor",
+ "▁ selector",
+ "▁Украї ни",
+ "хів овано",
+ "ы й",
+ "allen ge",
+ "alleng e",
+ "▁I MDb",
+ "▁IM Db",
+ "um my",
+ "umm y",
+ "ye n",
+ "y en",
+ "▁b este",
+ "▁be ste",
+ "▁best e",
+ "▁bes te",
+ "▁B ox",
+ "▁Bo x",
+ "▁ Box",
+ "▁ch air",
+ "▁cha ir",
+ "▁S ab",
+ "▁Sa b",
+ "er de",
+ "erd e",
+ "▁n ast",
+ "▁na st",
+ "▁nas t",
+ "iv amente",
+ "iva mente",
+ "▁об ъ",
+ "▁require ments",
+ "▁requirement s",
+ "▁me eting",
+ "▁meet ing",
+ "▁fin an",
+ "▁fi nan",
+ "▁A dam",
+ "▁Ad am",
+ "▁Ada m",
+ "▁tele vis",
+ "▁b right",
+ "▁br ight",
+ "▁brig ht",
+ "▁G it",
+ "▁Gi t",
+ "▁ Git",
+ "E G",
+ "▁G il",
+ "▁Gi l",
+ "r ès",
+ "▁C ond",
+ "▁Con d",
+ "▁Co nd",
+ "▁ Cond",
+ "▁f t",
+ "▁ ft",
+ "▁бу ло",
+ "- +",
+ "EN D",
+ "E ND",
+ "er ne",
+ "ern e",
+ "▁Com put",
+ "▁Comp ut",
+ "▁ Comput",
+ "▁i ls",
+ "▁il s",
+ "▁ ils",
+ "▁g all",
+ "▁gal l",
+ "▁ga ll",
+ "▁c sv",
+ "▁cs v",
+ "▁ csv",
+ "łu g",
+ "ł ug",
+ "▁sum mer",
+ "▁summ er",
+ "ga me",
+ "g ame",
+ "▁pos ts",
+ "▁post s",
+ "▁ posts",
+ "Ар хівовано",
+ "▁z ij",
+ "▁de termin",
+ "▁determ in",
+ "▁ab andon",
+ "co unter",
+ "count er",
+ "c ounter",
+ "▁require ment",
+ "▁requ irement",
+ "▁T it",
+ "▁Ti t",
+ "irt ual",
+ "▁V ideos",
+ "▁Video s",
+ "▁qu iet",
+ "▁qui et",
+ "▁T erm",
+ "▁Te rm",
+ "▁Ter m",
+ "▁ Term",
+ "▁time out",
+ "▁ timeout",
+ "Pr int",
+ "▁in vent",
+ "▁inv ent",
+ "▁inve nt",
+ "la is",
+ "l ais",
+ "▁mon itor",
+ "ha lb",
+ "hal b",
+ "▁W ild",
+ "▁Wil d",
+ "▁Wi ld",
+ "▁le ader",
+ "▁lead er",
+ "▁с ель",
+ "▁се ль",
+ "▁util iz",
+ "▁par ents",
+ "▁parent s",
+ "▁for ced",
+ "▁force d",
+ "▁pro ved",
+ "▁pr oved",
+ "▁prov ed",
+ "▁prove d",
+ "▁effect ive",
+ "▁l lam",
+ "▁ll am",
+ "▁С по",
+ "or b",
+ "o rb",
+ "gg i",
+ "g gi",
+ "▁ass umption",
+ "▁assum ption",
+ "▁su bm",
+ "▁sub m",
+ "▁в ій",
+ "▁ві й",
+ "il ia",
+ "ili a",
+ "i lia",
+ "▁re verse",
+ "▁revers e",
+ "▁rever se",
+ "▁ reverse",
+ "' \"",
+ "▁qu otes",
+ "▁quot es",
+ "▁quote s",
+ "▁s ites",
+ "▁si tes",
+ "▁site s",
+ "▁sit es",
+ "▁ sites",
+ "ig ung",
+ "igu ng",
+ "▁A rg",
+ "▁Ar g",
+ "▁ Arg",
+ "D ouble",
+ "▁s creens",
+ "▁sc reens",
+ "▁screen s",
+ "▁cl ause",
+ "▁cla use",
+ "▁b undle",
+ "▁bund le",
+ "▁ bundle",
+ "▁phil osoph",
+ "▁N um",
+ "▁Nu m",
+ "▁ Num",
+ "▁g leich",
+ "▁gle ich",
+ "▁ gleich",
+ "ul y",
+ "u ly",
+ "dir ect",
+ "di rect",
+ "dire ct",
+ "d irect",
+ "asket ball",
+ "ow any",
+ "owa ny",
+ "owan y",
+ "\\} $",
+ "\\ }$",
+ "▁rad ius",
+ "▁radi us",
+ "▁ radius",
+ "▁S earch",
+ "▁Se arch",
+ "▁ Search",
+ "Pro perties",
+ "▁e lev",
+ "▁el ev",
+ "▁ele v",
+ "▁p rod",
+ "▁pro d",
+ "▁pr od",
+ "▁ prod",
+ "▁\" %",
+ "is ión",
+ "isi ón",
+ "De bug",
+ "Deb ug",
+ "Se cond",
+ "Sec ond",
+ "( !",
+ "▁C atholic",
+ "ро ван",
+ "ров ан",
+ "рова н",
+ "р ован",
+ "le z",
+ "l ez",
+ "P a",
+ "ps on",
+ "p son",
+ "▁er ste",
+ "▁erst e",
+ "▁ers te",
+ "▁F u",
+ "▁l it",
+ "▁li t",
+ "▁ lit",
+ "▁S aison",
+ "▁Sa ison",
+ "▁H ash",
+ "▁Ha sh",
+ "▁Has h",
+ "▁ Hash",
+ "▁ex em",
+ "▁пред став",
+ ") *",
+ "▁e u",
+ "▁ eu",
+ "▁ │",
+ "▁g ab",
+ "▁ga b",
+ "eta iled",
+ "Co py",
+ "C opy",
+ "▁д ва",
+ "ev en",
+ "e ven",
+ "K ind",
+ "▁Jack son",
+ "а л",
+ "▁con sec",
+ "▁cons ec",
+ "▁conse c",
+ "US ER",
+ "USE R",
+ "U SER",
+ "▁T ok",
+ "▁To k",
+ "( .",
+ "▁$ |",
+ "▁T amb",
+ "▁Ta mb",
+ "▁Tam b",
+ "▁Lem ma",
+ "ha ng",
+ "han g",
+ "h ang",
+ "▁cont ribution",
+ "▁contrib ution",
+ "▁contribu tion",
+ "roll ers",
+ "rol lers",
+ "roller s",
+ "rolle rs",
+ "▁stud ies",
+ "▁studi es",
+ "▁p oi",
+ "▁po i",
+ "ge ms",
+ "gem s",
+ "g ems",
+ "▁U P",
+ "▁ UP",
+ "▁W ol",
+ "▁Wo l",
+ "> \"",
+ "▁f loor",
+ "▁fl oor",
+ "▁flo or",
+ "▁ floor",
+ "▁init ialize",
+ "▁initial ize",
+ "▁ initialize",
+ "▁L ew",
+ "▁Le w",
+ "ze k",
+ "z ek",
+ "ar te",
+ "art e",
+ "▁pos itions",
+ "▁position s",
+ "▁posit ions",
+ "▁por tion",
+ "▁port ion",
+ "co ver",
+ "cov er",
+ "c over",
+ "w p",
+ "ов ого",
+ "ово го",
+ "о вого",
+ "▁p iano",
+ "▁pi ano",
+ "▁pian o",
+ "▁pia no",
+ "▁m etal",
+ "▁me tal",
+ "▁met al",
+ "▁meta l",
+ "▁s amples",
+ "▁sam ples",
+ "▁sample s",
+ "▁ samples",
+ "▁С ан",
+ "▁Са н",
+ "vari able",
+ "▁ста ть",
+ "▁inte gers",
+ "▁integer s",
+ "Wh ere",
+ "W here",
+ "famil y",
+ "▁n un",
+ "▁nu n",
+ "▁in crement",
+ "▁incre ment",
+ "▁ increment",
+ "ix ed",
+ "▁he eft",
+ "ft e",
+ "f te",
+ "▁v il",
+ "▁vi l",
+ "▁ vil",
+ "▁ot ros",
+ "▁otro s",
+ "Mult imedia",
+ "Multi media",
+ "▁Hen ri",
+ "ad ed",
+ "ade d",
+ "a ded",
+ "ге н",
+ "г ен",
+ "▁cap it",
+ "▁ca pit",
+ "▁други х",
+ "is p",
+ "i sp",
+ "IT Y",
+ "I TY",
+ "▁constraint s",
+ "▁K irche",
+ "▁Kir che",
+ "▁Kirch e",
+ "fo und",
+ "f ound",
+ "ши й",
+ "▁p ic",
+ "▁pi c",
+ "▁ pic",
+ "▁t ou",
+ "▁to u",
+ "cre d",
+ "cr ed",
+ "c red",
+ "ро б",
+ "р об",
+ "▁M ess",
+ "▁Me ss",
+ "▁Mes s",
+ "▁ Mess",
+ "Jo b",
+ "J ob",
+ "▁M ais",
+ "▁Ma is",
+ "▁Mai s",
+ "▁st yles",
+ "▁style s",
+ "▁sty les",
+ "▁ styles",
+ "fa ll",
+ "fal l",
+ "f all",
+ "▁U k",
+ "▁st reet",
+ "▁stre et",
+ "▁ street",
+ "oc cer",
+ "occ er",
+ "es en",
+ "ese n",
+ "e sen",
+ "▁col ors",
+ "▁color s",
+ "▁ colors",
+ "ce an",
+ "ю ще",
+ "con ne",
+ "conn e",
+ "c onne",
+ "▁r atio",
+ "▁rat io",
+ "an ton",
+ "ant on",
+ "anto n",
+ "▁F el",
+ "▁Fe l",
+ "▁custom er",
+ "▁cust omer",
+ "▁ customer",
+ "▁P rix",
+ "▁Pr ix",
+ "▁Pri x",
+ "rá s",
+ "r ás",
+ "pr ed",
+ "pre d",
+ "p red",
+ "▁elect ron",
+ "▁electro n",
+ "s ym",
+ "▁ве ли",
+ "▁ вели",
+ "▁over flow",
+ "▁ overflow",
+ "▁$ [",
+ "▁P OST",
+ "▁PO ST",
+ "▁ POST",
+ "▁C in",
+ "▁Ci n",
+ "sc heid",
+ "sche id",
+ "(\" /",
+ "( \"/",
+ "▁search ing",
+ "▁pur poses",
+ "▁purpose s",
+ "▁arr ived",
+ "▁arriv ed",
+ "▁arrive d",
+ "▁p unt",
+ "▁pu nt",
+ "▁pun t",
+ "▁l ad",
+ "▁la d",
+ "▁ lad",
+ "P ython",
+ "▁le ads",
+ "▁lead s",
+ "▁s and",
+ "▁sa nd",
+ "▁san d",
+ "па да",
+ "пад а",
+ "▁comm unes",
+ "▁commun es",
+ "▁commune s",
+ "▁CH AP",
+ "▁c aso",
+ "▁cas o",
+ "▁ca so",
+ "r z",
+ "▁d w",
+ "▁ dw",
+ "ac a",
+ "a ca",
+ "▁Col umb",
+ "child ren",
+ "ê t",
+ "sch emas",
+ "sche mas",
+ "schema s",
+ "▁instru ctions",
+ "▁instruction s",
+ "▁instruct ions",
+ "▁- \\",
+ "▁ -\\",
+ "▁Is rael",
+ "▁Isra el",
+ "no ści",
+ "▁об раз",
+ "▁обра з",
+ "▁ образ",
+ "▁со вет",
+ "▁сов ет",
+ "▁imm agini",
+ "▁F red",
+ "▁Fre d",
+ "▁Fr ed",
+ "▁G lobal",
+ "▁Glo bal",
+ "▁ Global",
+ "▁th ick",
+ "▁ thick",
+ "▁fue ron",
+ "▁fuer on",
+ "▁th rown",
+ "▁thr own",
+ "▁throw n",
+ "▁thro wn",
+ "▁c lock",
+ "▁cl ock",
+ "▁clo ck",
+ "▁ clock",
+ "en able",
+ "ena ble",
+ "'' '",
+ "' ''",
+ "▁S und",
+ "▁Su nd",
+ "▁Sun d",
+ "▁cont empor",
+ "an swer",
+ "ans wer",
+ "▁man ufact",
+ "▁i o",
+ "▁ io",
+ "q quad",
+ "OU T",
+ "O UT",
+ "▁L ab",
+ "▁La b",
+ "▁ Lab",
+ "▁Z w",
+ "le gal",
+ "leg al",
+ "▁V el",
+ "▁Ve l",
+ "▁ra ise",
+ "▁ raise",
+ "▁de liver",
+ "▁del iver",
+ "▁deli ver",
+ "▁V oir",
+ "▁Vo ir",
+ "▁ass umed",
+ "▁assum ed",
+ "▁assume d",
+ "Le t",
+ "L et",
+ "ier ten",
+ "iert en",
+ "ierte n",
+ "i erten",
+ "▁K ong",
+ "▁Kon g",
+ "▁Ko ng",
+ "▁E xp",
+ "▁Ex p",
+ "▁ Exp",
+ "▁J ug",
+ "▁Ju g",
+ "▁dec laration",
+ "▁declar ation",
+ "▁F ish",
+ "m é",
+ "▁spe ech",
+ "▁t ent",
+ "▁te nt",
+ "▁ten t",
+ "▁R oute",
+ "▁Ro ute",
+ "▁Rou te",
+ "▁Rout e",
+ "▁ Route",
+ "__ (",
+ "_ _(",
+ "▁ré alis",
+ "▁réal is",
+ "▁De sign",
+ "▁Des ign",
+ "set Text",
+ "▁St ation",
+ "▁Stat ion",
+ "▁Sta tion",
+ "▁Stati on",
+ "▁ Station",
+ "ar chy",
+ "arch y",
+ "arc hy",
+ "▁ка то",
+ "▁d ent",
+ "▁de nt",
+ "▁den t",
+ "▁ dent",
+ "▁K l",
+ "i ß",
+ "▁r isk",
+ "▁ris k",
+ "▁ri sk",
+ "▁B road",
+ "▁Bro ad",
+ "▁v ectors",
+ "▁ve ctors",
+ "▁vector s",
+ "▁S pec",
+ "▁Sp ec",
+ "▁Spe c",
+ "▁ Spec",
+ "▁ro utes",
+ "▁route s",
+ "▁rout es",
+ "▁rou tes",
+ "▁ routes",
+ "ym n",
+ "y mn",
+ "▁G reg",
+ "▁Gr eg",
+ "▁Gre g",
+ "▁полу чи",
+ "gi e",
+ "g ie",
+ "OR M",
+ "ве де",
+ "вед е",
+ "в еде",
+ "wa lt",
+ "wal t",
+ "w alt",
+ "▁e fter",
+ "P tr",
+ "▁su bt",
+ "▁sub t",
+ "▁b irth",
+ "▁bir th",
+ "▁dr awn",
+ "▁draw n",
+ "▁dra wn",
+ "me ss",
+ "mes s",
+ "m ess",
+ "мери кан",
+ "V E",
+ "▁P ut",
+ "▁Pu t",
+ "▁ Put",
+ "▁a sc",
+ "▁as c",
+ "▁ asc",
+ "▁f eder",
+ "▁fe der",
+ "▁fed er",
+ "с ли",
+ "▁P rin",
+ "▁Pr in",
+ "▁Pri n",
+ "▁s tick",
+ "▁st ick",
+ "re set",
+ "res et",
+ "y k",
+ "st udio",
+ "stud io",
+ "▁St ill",
+ "Con st",
+ "Cons t",
+ "ac ió",
+ "aci ó",
+ "a ció",
+ "▁Portug al",
+ "▁script s",
+ "▁scri pts",
+ "▁ scripts",
+ "und ial",
+ "▁l ives",
+ "▁li ves",
+ "▁live s",
+ "▁liv es",
+ "▁s zer",
+ "▁sz er",
+ "▁sze r",
+ "▁est ado",
+ "▁esta do",
+ "▁estad o",
+ "fo lder",
+ "fol der",
+ "fold er",
+ "f older",
+ "▁communic ation",
+ "Ro ute",
+ "Rout e",
+ "R oute",
+ "▁sw ift",
+ "▁ swift",
+ "те н",
+ "т ен",
+ "▁k ill",
+ "▁kil l",
+ "▁ki ll",
+ "▁ kill",
+ "▁P R",
+ "▁ PR",
+ "jo int",
+ "join t",
+ "j oint",
+ "▁ob jective",
+ "▁object ive",
+ "▁comp licated",
+ "▁Ü ber",
+ "es h",
+ "e sh",
+ "p icture",
+ "ra ine",
+ "rain e",
+ "rai ne",
+ "r aine",
+ "com put",
+ "comp ut",
+ "▁pro port",
+ "▁pr oport",
+ "▁prop ort",
+ "▁propor t",
+ "og s",
+ "o gs",
+ "ül t",
+ "ü lt",
+ "▁quant um",
+ "к ри",
+ "▁s op",
+ "▁so p",
+ "▁lo ops",
+ "▁loop s",
+ "▁Re ference",
+ "▁Refer ence",
+ "▁ Reference",
+ "▁n ei",
+ "▁ne i",
+ "IC E",
+ "I CE",
+ "▁v erm",
+ "▁ver m",
+ "▁ve rm",
+ "▁a dj",
+ "▁ad j",
+ "▁ adj",
+ "▁per ò",
+ "▁t rou",
+ "▁tr ou",
+ "▁tro u",
+ "is ions",
+ "ision s",
+ "isi ons",
+ "▁App le",
+ "▁Ap ple",
+ "serv able",
+ "▁B oston",
+ "▁Bo ston",
+ "▁Bos ton",
+ "or et",
+ "ore t",
+ "o ret",
+ "ok s",
+ "o ks",
+ "▁k g",
+ "▁ kg",
+ "def ined",
+ "define d",
+ "defin ed",
+ "d efined",
+ "pl atform",
+ "cl er",
+ "cle r",
+ "c ler",
+ "ograph ic",
+ "ri tt",
+ "rit t",
+ "r itt",
+ "▁d ic",
+ "▁di c",
+ "▁ dic",
+ "▁M ond",
+ "▁Mon d",
+ "▁Mo nd",
+ "▁I reland",
+ "▁Ir eland",
+ "▁U na",
+ "▁Un a",
+ "▁commer cial",
+ "▁P u",
+ "D i",
+ "▁е ё",
+ "▁pre cis",
+ "▁prec is",
+ "на род",
+ "нар од",
+ "▁qu atre",
+ "ust ral",
+ "ustr al",
+ "▁d ag",
+ "▁da g",
+ "▁ dag",
+ "ig ue",
+ "igu e",
+ "i gue",
+ "▁b urn",
+ "▁bu rn",
+ "▁bur n",
+ "▁ burn",
+ "▁offic er",
+ "▁office r",
+ "▁А в",
+ "▁high light",
+ "▁ highlight",
+ "▁Supp ose",
+ "▁Sup pose",
+ "od i",
+ "o di",
+ "serv let",
+ "▁En cyc",
+ "▁Enc yc",
+ "▁R ange",
+ "▁Ran ge",
+ "▁Rang e",
+ "▁ Range",
+ "ти й",
+ "P lease",
+ "▁ро ків",
+ "qu ant",
+ "qua nt",
+ "▁f lat",
+ "▁fl at",
+ "▁fla t",
+ "▁ flat",
+ "▁Ré férence",
+ "сле дова",
+ "след ова",
+ "ro le",
+ "rol e",
+ "r ole",
+ "▁d iesen",
+ "▁di esen",
+ "▁die sen",
+ "▁dies en",
+ "▁diese n",
+ "}} (",
+ "} }(",
+ "▁Ind ust",
+ "▁nú mer",
+ "▁\" ;",
+ "▁ \";",
+ "lu s",
+ "l us",
+ "ô le",
+ "▁z m",
+ "▁ zm",
+ "de g",
+ "d eg",
+ "▁r ough",
+ "▁ro ugh",
+ "▁rou gh",
+ "▁ rough",
+ "In v",
+ "▁h ur",
+ "▁hu r",
+ "▁R ess",
+ "▁Re ss",
+ "▁Res s",
+ "ch s",
+ "c hs",
+ "▁turn s",
+ "▁tur ns",
+ "ne ro",
+ "ner o",
+ "n ero",
+ "function s",
+ "fun ctions",
+ "ал и",
+ "а ли",
+ "▁hab itants",
+ "▁habit ants",
+ "а т",
+ "iss ues",
+ "issue s",
+ "▁h uge",
+ "▁hu ge",
+ "Util s",
+ "▁S at",
+ "▁Sa t",
+ "▁го судар",
+ "▁co ast",
+ "sh ape",
+ "sha pe",
+ "s hape",
+ "L C",
+ "▁log ging",
+ "▁ logging",
+ "en dor",
+ "end or",
+ "endo r",
+ "▁l ies",
+ "▁li es",
+ "▁lie s",
+ "▁ lies",
+ "▁d ifer",
+ "▁di fer",
+ "▁dif er",
+ "▁crit ical",
+ "▁critic al",
+ "X T",
+ "ми на",
+ "мин а",
+ "an sk",
+ "ans k",
+ "Result s",
+ "k c",
+ "ivers e",
+ "iver se",
+ "i verse",
+ "EX T",
+ "E XT",
+ "AL SE",
+ "▁v ál",
+ "▁vá l",
+ "P i",
+ "comp ile",
+ "hel lo",
+ "hell o",
+ "h ello",
+ "▁чем пи",
+ "▁It alia",
+ "▁Ital ia",
+ "▁ Italia",
+ "ко ло",
+ "кол о",
+ "к оло",
+ "▁ed ition",
+ "▁edit ion",
+ "gr und",
+ "gru nd",
+ "g rund",
+ "▁data frame",
+ "▁Follow ing",
+ "re ib",
+ "rei b",
+ "▁J eff",
+ "▁Je ff",
+ "▁citt à",
+ "IT able",
+ "I Table",
+ "▁$ (\\",
+ "▁$( \\",
+ "▁redu ced",
+ "▁reduce d",
+ "ob il",
+ "obi l",
+ "o bil",
+ "▁any where",
+ "' (",
+ "▁p hr",
+ "▁ph r",
+ "▁ phr",
+ "▁K h",
+ "▁F rame",
+ "▁Fr ame",
+ "▁Fra me",
+ "▁ Frame",
+ "▁man ual",
+ "▁ manual",
+ "▁c ra",
+ "▁cr a",
+ "▁ cra",
+ "▁V S",
+ "▁ VS",
+ "% =",
+ "Instance State",
+ "▁б ра",
+ "▁ бра",
+ "▁D rag",
+ "▁Dr ag",
+ "▁Dra g",
+ "▁ Drag",
+ "▁H err",
+ "▁He rr",
+ "▁Her r",
+ "▁г у",
+ "▁ гу",
+ "▁m ús",
+ "To ol",
+ "T ool",
+ "▁P rivate",
+ "▁Priv ate",
+ "▁ Private",
+ "▁s ynchron",
+ "▁syn chron",
+ "ir ation",
+ "ira tion",
+ "irat ion",
+ "▁о бо",
+ "▁об о",
+ "▁typ ically",
+ "▁typical ly",
+ "▁imp licit",
+ "or ient",
+ "ori ent",
+ "orie nt",
+ "▁t imer",
+ "▁time r",
+ "▁tim er",
+ "▁ti mer",
+ "▁ timer",
+ "▁kön nen",
+ "ie st",
+ "ies t",
+ "i est",
+ "ra id",
+ "rai d",
+ "▁expression s",
+ "▁express ions",
+ "▁expr essions",
+ "▁a im",
+ "▁ai m",
+ "▁s tre",
+ "▁st re",
+ "▁str e",
+ "▁ stre",
+ "▁w rap",
+ "▁wr ap",
+ "▁wra p",
+ "▁ wrap",
+ "▁B art",
+ "▁Bar t",
+ "▁Ba rt",
+ "▁b ron",
+ "▁br on",
+ "▁bro n",
+ "▁key board",
+ "po w",
+ "p ow",
+ "▁gru po",
+ "▁grup o",
+ "▁ре зу",
+ "▁prof essor",
+ "▁profess or",
+ "▁H ead",
+ "▁He ad",
+ "▁ Head",
+ "но ю",
+ "min us",
+ "m inus",
+ "▁Mich el",
+ "▁Mic hel",
+ "NO T",
+ "N OT",
+ "mo r",
+ "m or",
+ "] }",
+ "wide hat",
+ "ar is",
+ "ari s",
+ "a ris",
+ "тера тура",
+ "de fn",
+ "def n",
+ "is trz",
+ "ist rz",
+ "istr z",
+ "▁t anto",
+ "▁tan to",
+ "▁tant o",
+ "▁P ow",
+ "▁Po w",
+ "▁ind icate",
+ "▁indic ate",
+ "▁W inter",
+ "▁Win ter",
+ "res hold",
+ "resh old",
+ "рі в",
+ "р ів",
+ "▁` (",
+ "▁o wner",
+ "▁own er",
+ "▁ow ner",
+ "▁ owner",
+ "▁d isp",
+ "▁di sp",
+ "▁dis p",
+ "▁к ри",
+ "▁ кри",
+ "ме т",
+ "м ет",
+ "мен т",
+ "м ент",
+ "re port",
+ "rep ort",
+ "repo rt",
+ "re quire",
+ "▁v oy",
+ "▁vo y",
+ "▁ voy",
+ "▁A P",
+ "▁ AP",
+ "▁Esp aña",
+ "▁Españ a",
+ "▁S ão",
+ "j är",
+ "No n",
+ "N on",
+ "Li brary",
+ "L ibrary",
+ "ich ten",
+ "icht en",
+ "ichte n",
+ "i chten",
+ "▁struct ures",
+ "▁structure s",
+ "▁m uy",
+ "▁mu y",
+ "ár io",
+ "á rio",
+ "▁cert ificate",
+ "▁certific ate",
+ "чно го",
+ "ч ного",
+ "▁prov ince",
+ "▁provin ce",
+ "pa ges",
+ "page s",
+ "pag es",
+ "p ages",
+ "da l",
+ "d al",
+ "▁Fre der",
+ "▁Fr eder",
+ "▁Fred er",
+ "ь е",
+ "Exec ute",
+ "▁an cient",
+ "▁anci ent",
+ "▁anc ient",
+ "▁ancien t",
+ "▁fil ms",
+ "▁film s",
+ "▁Al fred",
+ "▁Alf red",
+ "Aut o",
+ "A uto",
+ "▁a tom",
+ "▁at om",
+ "▁ atom",
+ "▁e ll",
+ "▁el l",
+ "▁ ell",
+ "▁H arr",
+ "▁Har r",
+ "▁Ha rr",
+ "й н",
+ "▁\" #",
+ "▁n acional",
+ "▁nac ional",
+ "▁neigh bor",
+ "▁neighb or",
+ "сту па",
+ "ступ а",
+ "▁w it",
+ "Po p",
+ "P op",
+ "▁G reek",
+ "▁Gre ek",
+ "▁Gree k",
+ "▁re peat",
+ "▁repe at",
+ "▁ repeat",
+ "ba d",
+ "b ad",
+ "▁S C",
+ "▁ SC",
+ "▁Date Time",
+ "▁ DateTime",
+ "ш ти",
+ "▁W H",
+ "▁ WH",
+ "▁пра ви",
+ "▁прав и",
+ "▁ прави",
+ "▁Т и",
+ "▁s aison",
+ "▁sa ison",
+ "▁H art",
+ "▁Har t",
+ "▁Ha rt",
+ "direct ory",
+ "d irectory",
+ "ua n",
+ "u an",
+ "no rm",
+ "nor m",
+ "n orm",
+ "▁Phil ipp",
+ "▁Phili pp",
+ "▁Philip p",
+ "▁su spect",
+ "▁sus pect",
+ "▁susp ect",
+ "▁an no",
+ "▁ann o",
+ "▁ anno",
+ "b c",
+ "с ла",
+ "$ (",
+ "▁be find",
+ "▁bef ind",
+ "oc s",
+ "o cs",
+ "la test",
+ "lat est",
+ "late st",
+ ";\" >",
+ "; \">",
+ "▁after wards",
+ "PU T",
+ "P UT",
+ "▁j a",
+ "▁ ja",
+ "▁H il",
+ "▁Hi l",
+ "y z",
+ "▁B our",
+ "▁Bo ur",
+ "▁Bou r",
+ "▁la id",
+ "▁Д же",
+ "▁Дж е",
+ "pi e",
+ "p ie",
+ "w atch",
+ "▁E q",
+ "▁ Eq",
+ "cont act",
+ "ib er",
+ "ibe r",
+ "i ber",
+ "check box",
+ "▁esp añ",
+ "▁espa ñ",
+ "an se",
+ "ans e",
+ "▁ш ко",
+ "▁ шко",
+ "ef f",
+ "e ff",
+ "xx x",
+ "x xx",
+ "▁G ET",
+ "▁ GET",
+ "▁l ov",
+ "▁lo v",
+ "▁ lov",
+ "it ute",
+ "itu te",
+ "itut e",
+ "ze ch",
+ "zec h",
+ "z ech",
+ "ter e",
+ "te re",
+ "t ere",
+ "▁p urs",
+ "▁pu rs",
+ "▁pur s",
+ "ke ns",
+ "ken s",
+ "k ens",
+ "ian te",
+ "i ante",
+ "▁F ree",
+ "▁Fre e",
+ "▁Fr ee",
+ "▁ Free",
+ "▁ор гани",
+ "▁орган и",
+ "kre is",
+ "▁{ :",
+ "▁ {:",
+ "sh ared",
+ "share d",
+ "sha red",
+ "▁G raph",
+ "▁Gr aph",
+ "▁Gra ph",
+ "▁ Graph",
+ "▁conne ctions",
+ "▁connection s",
+ "▁connect ions",
+ "▁D OM",
+ "▁DO M",
+ "▁ DOM",
+ "▁C art",
+ "▁Car t",
+ "▁Ca rt",
+ "▁ Cart",
+ "ss on",
+ "s son",
+ "▁H amilton",
+ "те ли",
+ "тел и",
+ "▁r estaur",
+ "▁rest aur",
+ "▁resta ur",
+ "Re sol",
+ "Res ol",
+ "Dr iver",
+ "D river",
+ "▁en f",
+ "▁ enf",
+ "ED IT",
+ "▁p rev",
+ "▁pr ev",
+ "▁pre v",
+ "▁ prev",
+ "▁i k",
+ "▁ ik",
+ "▁s ă",
+ "j ö",
+ "▁С ССР",
+ "▁col our",
+ "ch ten",
+ "cht en",
+ "chte n",
+ "▁e stad",
+ "▁est ad",
+ "▁esta d",
+ "in ois",
+ "ino is",
+ "▁con fir",
+ "▁conf ir",
+ "▁v é",
+ "▁ vé",
+ "▁C es",
+ "▁Ce s",
+ "▁N ever",
+ "▁Ne ver",
+ "▁Nev er",
+ "om er",
+ "ome r",
+ "o mer",
+ "ж да",
+ "с лу",
+ "че ния",
+ "dl l",
+ "d ll",
+ "▁y outh",
+ "▁you th",
+ "▁yo uth",
+ "em en",
+ "eme n",
+ "e men",
+ "▁stud ied",
+ "▁studi ed",
+ "▁K il",
+ "▁Ki l",
+ "ci on",
+ "cio n",
+ "c ion",
+ "▁n avig",
+ "▁nav ig",
+ "re quired",
+ "require d",
+ "orith ms",
+ "orithm s",
+ "il or",
+ "ilo r",
+ "i lor",
+ "▁Deutsch en",
+ "▁Deutsche n",
+ "▁person s",
+ "▁pers ons",
+ "▁Barcel ona",
+ "▁form ation",
+ "▁format ion",
+ "▁forma tion",
+ "▁ formation",
+ "ab ei",
+ "abe i",
+ "a bei",
+ "▁про тив",
+ "▁проти в",
+ "Eng ine",
+ "ON E",
+ "O NE",
+ "og rá",
+ "Ca p",
+ "C ap",
+ "ri r",
+ "r ir",
+ "▁g ate",
+ "▁ga te",
+ "▁gat e",
+ "▁ gate",
+ "or ation",
+ "ora tion",
+ "ma ven",
+ "m aven",
+ "▁comb ined",
+ "▁combin ed",
+ "▁combine d",
+ "▁at tr",
+ "▁att r",
+ "▁ attr",
+ "▁h ook",
+ "▁ho ok",
+ "▁ hook",
+ "▁которы й",
+ "▁ser vers",
+ "▁server s",
+ "▁serv ers",
+ "▁serve rs",
+ "uct ure",
+ "же ння",
+ "жен ня",
+ "t v",
+ "▁re q",
+ "▁r eq",
+ "▁ req",
+ "ja l",
+ "j al",
+ "▁loc ally",
+ "▁local ly",
+ "}} {\\",
+ "}}{ \\",
+ "} }{\\",
+ "B r",
+ "▁H ier",
+ "▁Hi er",
+ "мо р",
+ "м ор",
+ "▁a part",
+ "▁ap art",
+ "▁apar t",
+ "\"] ,",
+ "\" ],",
+ "▁%> %",
+ "▁z usammen",
+ "▁zus ammen",
+ "▁ident ify",
+ "▁Al tern",
+ "▁Alt ern",
+ "▁Alter n",
+ "▁б ро",
+ "▁ бро",
+ "▁ц и",
+ "▁ ци",
+ "g h",
+ "▁T en",
+ "▁Te n",
+ "R S",
+ "фор ма",
+ "▁n elle",
+ "▁ne lle",
+ "▁nel le",
+ "▁nell e",
+ "▁ nelle",
+ "▁H in",
+ "▁Hi n",
+ "ound ing",
+ "oun ding",
+ "▁re prés",
+ "▁rep rés",
+ "▁repr és",
+ "ap h",
+ "a ph",
+ "▁[ \\",
+ "▁ [\\",
+ "▁S ports",
+ "▁Sport s",
+ "ра л",
+ "р ал",
+ "▁t hre",
+ "▁th re",
+ "▁thr e",
+ "▁p rin",
+ "▁pr in",
+ "▁pri n",
+ "▁El iz",
+ "▁Eli z",
+ "▁F our",
+ "▁Fou r",
+ "▁Fo ur",
+ "▁soci ety",
+ "▁soc iety",
+ "Trans action",
+ "▁v eg",
+ "▁ve g",
+ "▁ veg",
+ "▁sch ools",
+ "▁school s",
+ "▁over all",
+ "▁t ail",
+ "▁ta il",
+ "▁ tail",
+ "üb er",
+ "ü ber",
+ "▁S ov",
+ "▁So v",
+ "▁С ер",
+ "▁Се р",
+ "▁r app",
+ "▁ra pp",
+ "▁rap p",
+ "▁tra ffic",
+ "qu estion",
+ "quest ion",
+ "ques tion",
+ "▁en viron",
+ "▁envi ron",
+ "▁ environ",
+ "ate ien",
+ "ic us",
+ "i cus",
+ "▁n arrow",
+ "▁narr ow",
+ "▁nar row",
+ "▁p ray",
+ "▁pr ay",
+ "▁pra y",
+ "▁B ou",
+ "▁Bo u",
+ "▁C lient",
+ "▁Cl ient",
+ "▁ Client",
+ "ab l",
+ "a bl",
+ "▁Aud iod",
+ "▁Audio d",
+ "▁n pm",
+ "▁np m",
+ "▁ npm",
+ "▁Col umn",
+ "▁ Column",
+ "▁G ames",
+ "▁Game s",
+ "▁Ga mes",
+ "▁Gam es",
+ "av er",
+ "ave r",
+ "a ver",
+ "ony mes",
+ "onym es",
+ "onyme s",
+ "▁По сле",
+ "n ą",
+ "▁N u",
+ "▁D ick",
+ "▁Di ck",
+ "▁Dic k",
+ "▁t ensor",
+ "▁tens or",
+ "▁ tensor",
+ "▁@ \"",
+ "▁ @\"",
+ "v é",
+ "I con",
+ "▁по да",
+ "▁под а",
+ "▁ пода",
+ "▁G on",
+ "▁Go n",
+ "/) .",
+ "/ ).",
+ "is tra",
+ "ist ra",
+ "istr a",
+ "i stra",
+ "▁Audiod ateien",
+ "De lete",
+ "Del ete",
+ "}} }",
+ "} }}",
+ "▁j ump",
+ "▁ju mp",
+ "▁О б",
+ "▁princi ple",
+ "▁princip le",
+ "▁Ét ats",
+ "ok ed",
+ "oke d",
+ "o ked",
+ "▁В ла",
+ "Inter val",
+ "▁s au",
+ "▁sa u",
+ "en code",
+ "enc ode",
+ "▁p on",
+ "▁po n",
+ "▁ pon",
+ "cat ch",
+ "c atch",
+ "▁t iem",
+ "▁ti em",
+ "▁tie m",
+ "▁G ust",
+ "▁Gu st",
+ "M C",
+ "lim its",
+ "limit s",
+ "▁ke eping",
+ "▁keep ing",
+ "▁s ongs",
+ "▁son gs",
+ "▁song s",
+ "▁ав гу",
+ "▁рай он",
+ "▁райо н",
+ "▁not ification",
+ "▁ notification",
+ "▁off ered",
+ "▁offer ed",
+ "Co r",
+ "C or",
+ "▁sh ut",
+ "error s",
+ "err ors",
+ "▁E N",
+ "▁ EN",
+ "▁lat ach",
+ "▁sel bst",
+ "▁check box",
+ "▁ checkbox",
+ "▁c ool",
+ "▁co ol",
+ "▁f actory",
+ "▁fact ory",
+ "▁factor y",
+ "▁ factory",
+ "▁pa id",
+ "dim ensional",
+ "ni ej",
+ "nie j",
+ "n iej",
+ "pt on",
+ "pto n",
+ "p ton",
+ "▁p in",
+ "▁pi n",
+ "▁ pin",
+ "ak ed",
+ "ake d",
+ "a ked",
+ "▁re li",
+ "▁r eli",
+ "▁rel i",
+ "▁T aylor",
+ "▁S omething",
+ "▁Some thing",
+ "▁Som ething",
+ "▁ Something",
+ "im um",
+ "▁V in",
+ "▁Vi n",
+ "▁iter ation",
+ "Fin d",
+ "Fi nd",
+ "F ind",
+ "ко ви",
+ "ков и",
+ "к ови",
+ "▁bo ys",
+ "▁boy s",
+ "▁Sim ple",
+ "▁ Simple",
+ "▁C rist",
+ "▁Cr ist",
+ "▁Cris t",
+ "▁W as",
+ "▁Wa s",
+ "ân d",
+ "â nd",
+ "▁V a",
+ "▁т ра",
+ "▁ тра",
+ "▁dest ination",
+ "▁destin ation",
+ "▁ destination",
+ "li mp",
+ "lim p",
+ "l imp",
+ "▁K at",
+ "▁Ka t",
+ "wor th",
+ "wort h",
+ "w orth",
+ "▁K or",
+ "▁Ko r",
+ "i ção",
+ "= `",
+ "▁fair ly",
+ "fall s",
+ "fal ls",
+ "f alls",
+ "▁re ject",
+ "▁d ream",
+ "▁dre am",
+ "be ll",
+ "bel l",
+ "b ell",
+ "▁t oute",
+ "▁to ute",
+ "▁tout e",
+ "▁tou te",
+ "▁$ \\{",
+ "▁$\\ {",
+ "▁st one",
+ "▁sto ne",
+ "▁ stone",
+ "▁prote ct",
+ "▁prot ect",
+ "▁ex cell",
+ "▁exc ell",
+ "▁excel l",
+ "▁Me xico",
+ "▁Mex ico",
+ "▁d ash",
+ "▁da sh",
+ "▁das h",
+ "▁ dash",
+ "▁f ault",
+ "▁fa ult",
+ "▁ fault",
+ "p matrix",
+ "al ler",
+ "all er",
+ "alle r",
+ "▁guer re",
+ "or igin",
+ "ori gin",
+ "orig in",
+ "hi bernate",
+ "í lia",
+ "▁Reg ister",
+ "▁ Register",
+ "un to",
+ "unt o",
+ "▁B at",
+ "▁Ba t",
+ "▁b ow",
+ "▁bo w",
+ "▁ bow",
+ "сь ких",
+ "ськ их",
+ "et à",
+ "▁L uis",
+ "▁Lu is",
+ "▁f ou",
+ "▁fo u",
+ "▁Cam bridge",
+ "▁Camb ridge",
+ "▁o tt",
+ "▁ot t",
+ "▁ ott",
+ "su p",
+ "s up",
+ "re as",
+ "rea s",
+ "▁point ers",
+ "▁pointer s",
+ "▁Bo ard",
+ "▁ Board",
+ "▁р и",
+ "▁ ри",
+ "▁d riv",
+ "▁dr iv",
+ "▁dri v",
+ "ни н",
+ "н ин",
+ "▁C irc",
+ "▁Ci rc",
+ "▁Cir c",
+ "▁ Circ",
+ "▁t hou",
+ "▁th ou",
+ "Di v",
+ "D iv",
+ "sp ark",
+ "s park",
+ "la ment",
+ "lam ent",
+ "l ament",
+ "▁V AL",
+ "▁ VAL",
+ "Se nd",
+ "S end",
+ "▁Ir ish",
+ "o y",
+ "▁T u",
+ "▁ Tu",
+ "▁t rivial",
+ "Form s",
+ "For ms",
+ "▁as í",
+ "▁Im per",
+ "▁Imp er",
+ "▁sign ature",
+ "un os",
+ "uno s",
+ "u nos",
+ "▁N eg",
+ "▁Ne g",
+ "▁can cel",
+ "▁ cancel",
+ "▁Hein rich",
+ "ee d",
+ "e ed",
+ "Ill ustration",
+ "▁s ulla",
+ "▁su lla",
+ "▁sul la",
+ "▁sull a",
+ "▁qu arter",
+ "▁quart er",
+ "▁quar ter",
+ "as z",
+ "a sz",
+ "▁b log",
+ "▁bl og",
+ "▁blo g",
+ "▁ blog",
+ "fi ca",
+ "fic a",
+ "f ica",
+ "wo n",
+ "w on",
+ "qu et",
+ "que t",
+ "q uet",
+ "]) )",
+ "] ))",
+ "▁gener ation",
+ "▁c aught",
+ "▁ caught",
+ "▁l ands",
+ "▁land s",
+ "▁lan ds",
+ "▁ lands",
+ "▁King dom",
+ "schaft en",
+ "ro ns",
+ "ron s",
+ "r ons",
+ "ann els",
+ "annel s",
+ "anne ls",
+ "▁Spe cial",
+ "▁Spec ial",
+ "▁ Special",
+ "t utorial",
+ "ti p",
+ "t ip",
+ "▁\" \",",
+ "▁\"\" ,",
+ "▁Az ure",
+ "▁ Azure",
+ "▁b ounded",
+ "▁bound ed",
+ "▁ bounded",
+ "S m",
+ "ta r",
+ "t ar",
+ "ве н",
+ "в ен",
+ "▁з ем",
+ "▁зе м",
+ "▁ зем",
+ "▁not ation",
+ "▁ notation",
+ "▁ap ache",
+ "▁ apache",
+ "▁g az",
+ "▁ga z",
+ "ier no",
+ "i erno",
+ "an gen",
+ "ang en",
+ "ange n",
+ "pect ive",
+ "▁elect ric",
+ "▁s emi",
+ "▁se mi",
+ "▁sem i",
+ "MA X",
+ "M AX",
+ "ed erb",
+ "eder b",
+ "ede rb",
+ "object s",
+ "▁dif ferences",
+ "▁differ ences",
+ "▁difference s",
+ "is ted",
+ "ist ed",
+ "iste d",
+ "i sted",
+ "hr ef",
+ "hre f",
+ "h ref",
+ "ic ip",
+ "ici p",
+ "i cip",
+ "▁num py",
+ "▁ numpy",
+ "▁ф утбо",
+ "lo ader",
+ "load er",
+ "▁d ich",
+ "▁di ch",
+ "▁dic h",
+ "љ у",
+ "▁D é",
+ "H z",
+ "▁P aram",
+ "▁Par am",
+ "▁Pa ram",
+ "▁Para m",
+ "▁ Param",
+ "document ation",
+ "ir craft",
+ "irc raft",
+ "E M",
+ "▁inst itution",
+ "▁instit ution",
+ "com pat",
+ "comp at",
+ "▁а ль",
+ "▁ал ь",
+ "▁ аль",
+ "сла в",
+ "с лав",
+ "▁N et",
+ "▁Ne t",
+ "▁ Net",
+ "ци ональ",
+ "цион аль",
+ "циона ль",
+ "▁broad cast",
+ "date time",
+ "dat etime",
+ "as ync",
+ "asy nc",
+ "a sync",
+ "vr e",
+ "v re",
+ "me an",
+ "▁C hem",
+ "▁Ch em",
+ "▁Che m",
+ "▁est imate",
+ "▁estim ate",
+ "ic ana",
+ "ica na",
+ "ican a",
+ "▁g rep",
+ "▁gr ep",
+ "▁gre p",
+ "▁ grep",
+ "te k",
+ "t ek",
+ "ä m",
+ "or ig",
+ "ori g",
+ "o rig",
+ "▁Vict or",
+ "▁Vi ctor",
+ "▁Vic tor",
+ "ut enant",
+ "ute nant",
+ "uten ant",
+ "an ga",
+ "ang a",
+ "pi n",
+ "p in",
+ "▁ver tex",
+ "▁vert ex",
+ "▁verte x",
+ "▁CHAP TER",
+ "ci ty",
+ "cit y",
+ "c ity",
+ "ug by",
+ "gr een",
+ "gre en",
+ "g reen",
+ "▁K er",
+ "▁Ke r",
+ "▁dif fér",
+ "▁diff ér",
+ "▁necess arily",
+ "D C",
+ "Line ar",
+ "Lin ear",
+ "Li near",
+ "al em",
+ "ale m",
+ "a lem",
+ "▁L ater",
+ "▁La ter",
+ "▁Lat er",
+ "▁Late r",
+ "▁m eta",
+ "▁me ta",
+ "▁met a",
+ "▁ meta",
+ "je m",
+ "j em",
+ "ra gen",
+ "rag en",
+ "rage n",
+ "r agen",
+ "Ma y",
+ "M ay",
+ "▁Mitg lied",
+ "▁s orted",
+ "▁sort ed",
+ "▁sor ted",
+ "▁sorte d",
+ "▁ sorted",
+ "us sen",
+ "uss en",
+ "▁sp oke",
+ "▁spo ke",
+ "▁dis abled",
+ "▁disable d",
+ "▁ disabled",
+ "▁accompl ish",
+ "▁accomp lish",
+ "▁Russ ia",
+ "th ere",
+ "ther e",
+ "the re",
+ "t here",
+ "ee s",
+ "e es",
+ "▁h all",
+ "▁ha ll",
+ "▁hal l",
+ "▁ hall",
+ "▁met ric",
+ "▁ metric",
+ "att ribute",
+ "то го",
+ "т ого",
+ "ab out",
+ "▁L am",
+ "▁La m",
+ "ch annel",
+ "chan nel",
+ "▁e pisode",
+ "▁epis ode",
+ "▁$ ('.",
+ "▁$( '.",
+ "▁$(' .",
+ "▁ ought",
+ "▁E ste",
+ "▁Est e",
+ "▁Es te",
+ "Object s",
+ "▁valid ate",
+ "▁ validate",
+ "▁r im",
+ "▁ri m",
+ "▁ rim",
+ "▁numer ous",
+ "▁numero us",
+ "▁J avascript",
+ "▁Java script",
+ "▁G L",
+ "▁ GL",
+ "▁It aly",
+ "▁Ital y",
+ "ederb örd",
+ "on ato",
+ "ona to",
+ "bo oks",
+ "book s",
+ "st one",
+ "ston e",
+ "sto ne",
+ "х у",
+ "▁j el",
+ "▁je l",
+ "▁ jel",
+ "ir i",
+ "i ri",
+ "▁A SP",
+ "▁AS P",
+ "G A",
+ "▁st ata",
+ "▁stat a",
+ "▁sta ta",
+ "▁b az",
+ "▁ba z",
+ "▁ baz",
+ "Da y",
+ "D ay",
+ "th m",
+ "t hm",
+ "d h",
+ "▁F iles",
+ "▁Fil es",
+ "▁File s",
+ "▁ Files",
+ "Android Runtime",
+ "▁che cks",
+ "▁check s",
+ "k r",
+ "▁v enne",
+ "▁ven ne",
+ "S L",
+ "av ia",
+ "avi a",
+ "a via",
+ "ka zy",
+ "kaz y",
+ "k azy",
+ "▁Th ree",
+ "▁ Three",
+ "Ad min",
+ "▁col lege",
+ "▁coll ege",
+ "▁colleg e",
+ "▁colle ge",
+ "G lobal",
+ "ti on",
+ "t ion",
+ "▁cur ious",
+ "sh ort",
+ "▁b ass",
+ "▁bas s",
+ "▁ba ss",
+ "де ла",
+ "▁де я",
+ "Sch ema",
+ "' \\",
+ "di ff",
+ "d iff",
+ "▁C A",
+ "▁ CA",
+ "▁Cor por",
+ "▁oper ators",
+ "▁operator s",
+ "om rå",
+ "▁ed ges",
+ "▁edge s",
+ "); `",
+ ") ;`",
+ "in ds",
+ "ind s",
+ "▁g ing",
+ "▁gi ng",
+ "▁ ging",
+ "& &",
+ "}- \\",
+ "} -\\",
+ "ra no",
+ "ran o",
+ "r ano",
+ "▁s ão",
+ "▁ad ds",
+ "▁add s",
+ "el or",
+ "elo r",
+ "e lor",
+ "▁un signed",
+ "▁uns igned",
+ "▁ unsigned",
+ "▁п р",
+ "▁ пр",
+ "▁Con fig",
+ "▁Conf ig",
+ "▁ Config",
+ "▁E sc",
+ "▁Es c",
+ "▁ch ose",
+ "▁cho se",
+ "▁pie ces",
+ "▁piece s",
+ "▁reg ions",
+ "▁region s",
+ "Es t",
+ "E st",
+ "▁B attle",
+ "▁Batt le",
+ "▁f oc",
+ "▁fo c",
+ "▁L ight",
+ "▁Lig ht",
+ "▁ Light",
+ "pad ding",
+ "p adding",
+ "ab en",
+ "abe n",
+ "a ben",
+ "▁e urop",
+ "▁eu rop",
+ "▁euro p",
+ "il lon",
+ "ill on",
+ "illo n",
+ "▁е сть",
+ "▁b ord",
+ "▁bo rd",
+ "▁bor d",
+ "▁о тно",
+ "▁от но",
+ "▁H ong",
+ "▁Hon g",
+ "▁Ho ng",
+ "▁v ul",
+ "▁vu l",
+ "pl ugins",
+ "plugin s",
+ "▁' <",
+ "▁k ur",
+ "▁ kur",
+ "reg ion",
+ "▁Re pub",
+ "▁Rep ub",
+ "ic her",
+ "ich er",
+ "iche r",
+ "i cher",
+ "}_ \\",
+ "} _\\",
+ "▁me dal",
+ "▁med al",
+ "▁More over",
+ "B I",
+ "A v",
+ "ut er",
+ "ute r",
+ "u ter",
+ "▁s can",
+ "▁sc an",
+ "▁ scan",
+ "▁M unicip",
+ "▁Mun icip",
+ "▁contr ast",
+ "▁contra st",
+ "▁I g",
+ "▁ Ig",
+ "▁го род",
+ "▁горо д",
+ "▁гор од",
+ "▁ город",
+ "rel ated",
+ "al ing",
+ "ali ng",
+ "alin g",
+ "a ling",
+ "▁м ат",
+ "▁ма т",
+ "▁ мат",
+ "ün st",
+ "▁Ch ris",
+ "▁Chr is",
+ "w y",
+ "▁Act ually",
+ "▁Univers idad",
+ "Event Listener",
+ "▁tempor ada",
+ "▁ass ignment",
+ "▁assign ment",
+ "▁M ike",
+ "▁Mi ke",
+ "▁Mik e",
+ "▁w ährend",
+ "▁ś wi",
+ "▁św i",
+ "▁с ред",
+ "▁сре д",
+ "ка де",
+ "▁calcul ated",
+ "▁calculate d",
+ "▁calc ulated",
+ "▁el ler",
+ "▁elle r",
+ "▁ell er",
+ "▁ eller",
+ "▁A sh",
+ "▁As h",
+ "ri el",
+ "rie l",
+ "r iel",
+ "▁hard ware",
+ "▁int ens",
+ "▁inte ns",
+ "▁inten s",
+ "(' .",
+ "( '.",
+ "il li",
+ "ill i",
+ "ag on",
+ "ago n",
+ "a gon",
+ "▁G y",
+ "▁he ute",
+ "▁heut e",
+ "▁s le",
+ "▁sl e",
+ "▁liter ature",
+ "se m",
+ "s em",
+ "man ager",
+ "mana ger",
+ "▁Gr ande",
+ "▁Gra nde",
+ "▁Grand e",
+ "▁Gran de",
+ "▁m ixed",
+ "▁mix ed",
+ "▁В ер",
+ "▁Ве р",
+ "í cí",
+ "▁s oit",
+ "▁so it",
+ "▁wel come",
+ "че ние",
+ "▁Univers ität",
+ "▁bu ilder",
+ "▁build er",
+ "▁ builder",
+ "sim ple",
+ "simp le",
+ "ic ode",
+ "ico de",
+ "i code",
+ "ř e",
+ "in dent",
+ "ind ent",
+ "inden t",
+ "inde nt",
+ "op o",
+ "o po",
+ "▁ad vanced",
+ "▁adv anced",
+ "▁advance d",
+ "tem per",
+ "temp er",
+ "ed ge",
+ "▁dat etime",
+ "▁date time",
+ "▁ datetime",
+ "▁d onc",
+ "▁do nc",
+ "▁don c",
+ "ла ння",
+ "лан ня",
+ "▁v erd",
+ "▁ver d",
+ "▁ve rd",
+ "д но",
+ "it os",
+ "ito s",
+ "▁he at",
+ "vi sible",
+ "vis ible",
+ "me l",
+ "m el",
+ "▁Giov anni",
+ "▁var iety",
+ "▁vari ety",
+ "▁r outer",
+ "▁ro uter",
+ "▁route r",
+ "▁rout er",
+ "▁rou ter",
+ "▁ router",
+ "Vec tor",
+ "V ector",
+ "▁W alk",
+ "▁Wal k",
+ "▁ob viously",
+ "▁obvious ly",
+ "he in",
+ "h ein",
+ "Fi n",
+ "F in",
+ "ITable View",
+ "Y ear",
+ "▁E conom",
+ "▁vel ocity",
+ "▁veloc ity",
+ "▁C ivil",
+ "▁Ci vil",
+ "▁ ј",
+ "al ert",
+ "ale rt",
+ "aler t",
+ "Ident ifier",
+ "èn cia",
+ "▁normal ly",
+ "▁norm ally",
+ "▁E gypt",
+ "▁Egy pt",
+ "▁c tx",
+ "▁ ctx",
+ "▁Ver ein",
+ "▁Vere in",
+ "▁H u",
+ "ult ure",
+ "ultur e",
+ "ни те",
+ "l é",
+ "▁W ien",
+ "▁Wi en",
+ "▁Wie n",
+ "▁P rz",
+ "▁Pr z",
+ "By te",
+ "▁n ah",
+ "▁na h",
+ "▁ nah",
+ "is ms",
+ "ism s",
+ "▁Pub lish",
+ "▁He rz",
+ "▁Her z",
+ "ic ul",
+ "i cul",
+ "pis ode",
+ "ч і",
+ "▁die sem",
+ "▁dies em",
+ "▁diese m",
+ "k ö",
+ "Vis ible",
+ "▁r ig",
+ "▁ri g",
+ "▁ rig",
+ "`) .",
+ "` ).",
+ "Par se",
+ "P arse",
+ "▁Jac ques",
+ "N I",
+ "▁g lass",
+ "▁gl ass",
+ "▁gla ss",
+ "▁ glass",
+ "-- -+",
+ "--- +",
+ "- --+",
+ "▁initial ly",
+ "▁initi ally",
+ "▁k r",
+ "▁ kr",
+ "CC N",
+ "C CN",
+ "pl ays",
+ "play s",
+ "pla ys",
+ "▁s igu",
+ "▁si gu",
+ "▁sig u",
+ "F older",
+ "st orage",
+ "sto rage",
+ "stor age",
+ "▁\\ |",
+ "▁ \\|",
+ "iv os",
+ "ivo s",
+ "i vos",
+ "ск ую",
+ "ску ю",
+ "▁M oh",
+ "▁Mo h",
+ "▁Comm ittee",
+ "▁K im",
+ "▁Ki m",
+ "e u",
+ "те м",
+ "т ем",
+ "▁orig inale",
+ "▁original e",
+ "▁origin ale",
+ "ir s",
+ "i rs",
+ "▁R eb",
+ "▁Re b",
+ "it ut",
+ "itu t",
+ "n l",
+ "▁P ier",
+ "▁Pi er",
+ "▁Pie r",
+ "▁] ;",
+ "▁ ];",
+ "▁F al",
+ "▁Fa l",
+ "▁\" \";",
+ "▁\"\" ;",
+ "mv c",
+ "m vc",
+ "▁fe male",
+ "▁fem ale",
+ "▁b ridge",
+ "▁br idge",
+ "▁brid ge",
+ "▁ bridge",
+ "▁t ít",
+ "kt r",
+ "k tr",
+ "> )",
+ "▁se at",
+ "▁sea t",
+ "▁v ess",
+ "▁ve ss",
+ "▁ves s",
+ "▁U SB",
+ "▁US B",
+ "▁Art icles",
+ "▁Article s",
+ "▁De scription",
+ "▁Des cription",
+ "▁Descri ption",
+ "▁ Description",
+ "▁o c",
+ "▁ oc",
+ "▁h ouses",
+ "▁house s",
+ "▁ho uses",
+ "▁hous es",
+ "▁П ет",
+ "▁Пе т",
+ "lo n",
+ "l on",
+ "Not ification",
+ "▁press ure",
+ "▁ку ль",
+ "▁ куль",
+ "ig ned",
+ "ign ed",
+ "igne d",
+ "▁relig ious",
+ "fa n",
+ "f an",
+ "ig lia",
+ "igli a",
+ "▁class ification",
+ "▁classific ation",
+ "og ether",
+ "oge ther",
+ "▁S DK",
+ "▁SD K",
+ "▁ SDK",
+ "▁H uman",
+ "▁Hu man",
+ "▁Hum an",
+ "▁com mission",
+ "▁comm ission",
+ "▁О р",
+ "▁an tes",
+ "▁ant es",
+ "▁ante s",
+ "▁ antes",
+ "D T",
+ "èt e",
+ "è te",
+ "pr és",
+ "p rés",
+ "/ \"",
+ "▁( «",
+ "▁h ö",
+ "▁ hö",
+ "▁ча с",
+ "▁ час",
+ "▁j ak",
+ "▁ja k",
+ "▁ jak",
+ "ie nen",
+ "ien en",
+ "iene n",
+ "i enen",
+ "ug g",
+ "u gg",
+ "W A",
+ "▁place holder",
+ "▁ placeholder",
+ "Wil l",
+ "W ill",
+ ", ,",
+ "▁K am",
+ "▁Ka m",
+ "▁w en",
+ "▁we n",
+ "▁ wen",
+ "▁Sch ul",
+ "ți e",
+ "ț ie",
+ "▁a ud",
+ "▁au d",
+ "▁ aud",
+ "▁s ue",
+ "▁su e",
+ "▁re ferred",
+ "▁refer red",
+ "ва т",
+ "в ат",
+ "▁P ara",
+ "▁Par a",
+ "▁Pa ra",
+ "▁b la",
+ "▁bl a",
+ "▁ bla",
+ "UE S",
+ "U ES",
+ "▁stat ist",
+ "▁stati st",
+ "▁т у",
+ "▁ ту",
+ "▁Wars za",
+ "gu e",
+ "g ue",
+ "▁I de",
+ "▁Id e",
+ "math scr",
+ "▁l ieu",
+ "▁li eu",
+ "▁lie u",
+ "▁b od",
+ "▁bo d",
+ "▁r us",
+ "▁ru s",
+ "▁ rus",
+ "▁bo at",
+ "xs pace",
+ "x space",
+ "▁mod al",
+ "▁mo dal",
+ "▁ modal",
+ "ле к",
+ "л ек",
+ "to pic",
+ "top ic",
+ "ma ny",
+ "man y",
+ "m any",
+ "sk ý",
+ "▁organ ization",
+ "▁organiz ation",
+ "▁г ене",
+ "▁ге не",
+ "▁Wil son",
+ "▁com fort",
+ "ib il",
+ "i bil",
+ ": -",
+ "▁an imal",
+ "▁anim al",
+ "▁ani mal",
+ "Re port",
+ "Rep ort",
+ "ка ми",
+ "кам и",
+ "jo n",
+ "j on",
+ "▁k er",
+ "▁ke r",
+ "▁ ker",
+ "▁к ни",
+ "moz illa",
+ "Pr ice",
+ "P rice",
+ "ant in",
+ "anti n",
+ "em ento",
+ "ement o",
+ "emen to",
+ "ma y",
+ "m ay",
+ "▁l ung",
+ "▁lu ng",
+ "▁lun g",
+ "▁ lung",
+ "▁b low",
+ "▁bl ow",
+ "▁blo w",
+ "ede ut",
+ "▁type d",
+ "▁typ ed",
+ "▁ty ped",
+ "▁dec ember",
+ "▁. ...",
+ "▁... .",
+ "▁.. ..",
+ "▁ ....",
+ "li ance",
+ "l iance",
+ "▁v iel",
+ "▁vi el",
+ "▁vie l",
+ "▁Ф и",
+ "pr esa",
+ "pre sa",
+ "pres a",
+ "▁ос іб",
+ "▁N am",
+ "▁Na m",
+ "▁G ren",
+ "▁Gr en",
+ "▁Gre n",
+ "си лання",
+ "VI D",
+ "V ID",
+ "st re",
+ "str e",
+ "s tre",
+ "we is",
+ "wei s",
+ "▁prote ction",
+ "▁protect ion",
+ "▁prot ection",
+ "ta ient",
+ "t aient",
+ "▁offic ers",
+ "▁office rs",
+ "▁officer s",
+ "т но",
+ "▁B rig",
+ "▁Br ig",
+ "▁int ellig",
+ "▁intel lig",
+ "я х",
+ "IT H",
+ "I TH",
+ "▁separ ated",
+ "▁separate d",
+ "▁L CCN",
+ "ní m",
+ "n ím",
+ "cl ock",
+ "clo ck",
+ "c lock",
+ "▁ap are",
+ "▁apar e",
+ "яв и",
+ "я ви",
+ "▁Eliz abeth",
+ "▁W ater",
+ "▁Wat er",
+ "▁Wa ter",
+ "geb iet",
+ "▁con vent",
+ "▁conv ent",
+ "▁conven t",
+ "fu rt",
+ "fur t",
+ "f urt",
+ "▁be iden",
+ "▁bei den",
+ "▁beide n",
+ "ba sh",
+ "bas h",
+ "b ash",
+ "▁че рез",
+ "▁чер ез",
+ "▁u b",
+ "▁ ub",
+ "▁Stat ist",
+ "▁Stati st",
+ "▁lim its",
+ "▁limit s",
+ "▁ limits",
+ "V ol",
+ "ct x",
+ "c tx",
+ "▁но в",
+ "▁н ов",
+ "▁ нов",
+ "gu ide",
+ "gui de",
+ "mi c",
+ "m ic",
+ "ie sa",
+ "ies a",
+ "i esa",
+ "▁h uvud",
+ "R T",
+ "Fi g",
+ "F ig",
+ "▁l ect",
+ "▁le ct",
+ "▁ lect",
+ "con n",
+ "co nn",
+ "c onn",
+ "im it",
+ "imi t",
+ "i mit",
+ "га р",
+ "г ар",
+ "▁b ajo",
+ "▁ba jo",
+ "scri be",
+ "scr ibe",
+ "s cribe",
+ "re gex",
+ "reg ex",
+ "▁C ass",
+ "▁Cas s",
+ "▁Ca ss",
+ "▁pro pag",
+ "▁prop ag",
+ "' $",
+ "▁prof es",
+ "un ique",
+ "uni que",
+ "▁S ql",
+ "▁ Sql",
+ "un ion",
+ "uni on",
+ "ri os",
+ "rio s",
+ "r ios",
+ "pi p",
+ "p ip",
+ "-- +",
+ "- -+",
+ "ka dem",
+ "k adem",
+ "column s",
+ "▁v ary",
+ "▁var y",
+ "▁va ry",
+ "▁bere its",
+ "▁d oi",
+ "▁do i",
+ "▁Com mon",
+ "▁Comm on",
+ "▁ Common",
+ "▁Ro bin",
+ "▁Rob in",
+ "▁ ×",
+ "▁s ei",
+ "▁se i",
+ "▁s yst",
+ "▁sy st",
+ "▁sys t",
+ "▁v ä",
+ "▁ vä",
+ "▁De fault",
+ "▁Def ault",
+ "▁ Default",
+ "▁t ym",
+ "▁ty m",
+ "pe l",
+ "p el",
+ "▁bel ieved",
+ "▁believe d",
+ "▁pro vider",
+ "▁prov ider",
+ "▁provide r",
+ "▁ provider",
+ "▁min imal",
+ "▁minim al",
+ "▁mini mal",
+ "та ли",
+ "тал и",
+ "т али",
+ "ain es",
+ "ai nes",
+ "aine s",
+ "a ines",
+ "K it",
+ "iz io",
+ "izi o",
+ "is sen",
+ "iss en",
+ "isse n",
+ "pr essed",
+ "press ed",
+ "pres sed",
+ "▁s tag",
+ "▁st ag",
+ "▁sta g",
+ "▁ stag",
+ "▁u int",
+ "▁ui nt",
+ "▁ uint",
+ "ko r",
+ "k or",
+ "▁ра спо",
+ "▁рас по",
+ "▁in herit",
+ "▁inher it",
+ "▁comp iled",
+ "▁compile d",
+ "▁f ebru",
+ "▁fe bru",
+ "▁feb ru",
+ "▁t mp",
+ "▁tm p",
+ "▁ tmp",
+ "work s",
+ "wor ks",
+ "ч на",
+ "draw able",
+ "▁N av",
+ "▁Na v",
+ "▁ Nav",
+ "▁though ts",
+ "▁thought s",
+ "ro ute",
+ "rout e",
+ "rou te",
+ "r oute",
+ "▁con cert",
+ "▁conc ert",
+ "▁conce rt",
+ "▁option al",
+ "▁opt ional",
+ "▁ optional",
+ "▁b ras",
+ "▁br as",
+ "▁bra s",
+ "▁ bras",
+ "▁prov iding",
+ "со м",
+ "с ом",
+ "id x",
+ "i dx",
+ "emp lo",
+ "empl o",
+ "▁ко ли",
+ "▁ коли",
+ "▁B ere",
+ "▁Be re",
+ "▁Ber e",
+ "▁E ls",
+ "▁El s",
+ "ре мен",
+ "рем ен",
+ "▁де ка",
+ "co ut",
+ "cou t",
+ "c out",
+ "la yer",
+ "lay er",
+ "l ayer",
+ "▁g lob",
+ "▁gl ob",
+ "▁glo b",
+ "▁ glob",
+ "fore ach",
+ "for each",
+ "▁E ducation",
+ "▁Edu cation",
+ "P O",
+ "▁im prov",
+ "▁imp rov",
+ "▁impro v",
+ "▁impr ov",
+ "▁cl ients",
+ "▁client s",
+ "▁cli ents",
+ "gr oups",
+ "group s",
+ "gro ups",
+ "▁k ont",
+ "▁kon t",
+ "▁ko nt",
+ "De l",
+ "D el",
+ "re tt",
+ "ret t",
+ "r ett",
+ "▁s up",
+ "▁su p",
+ "▁ sup",
+ "▁m og",
+ "▁mo g",
+ "ta n",
+ "t an",
+ "▁com pl",
+ "▁comp l",
+ "ir ty",
+ "irt y",
+ "▁nouve au",
+ "os z",
+ "o sz",
+ "▁N avy",
+ "▁Na vy",
+ "▁Nav y",
+ "ber e",
+ "be re",
+ "b ere",
+ "ma sk",
+ "mas k",
+ "m ask",
+ "ov é",
+ "o vé",
+ "zi l",
+ "z il",
+ "PE R",
+ "P ER",
+ "▁pobla ción",
+ "▁població n",
+ "▁d etailed",
+ "▁detail ed",
+ "ле т",
+ "л ет",
+ "▁famil ies",
+ "▁familie s",
+ "ab et",
+ "abe t",
+ "a bet",
+ "е вич",
+ "änd er",
+ "än der",
+ "ände r",
+ "ä nder",
+ "▁å r",
+ "▁ år",
+ "▁p endant",
+ "▁b il",
+ "▁bi l",
+ "▁ bil",
+ "▁h int",
+ "▁hi nt",
+ "▁hin t",
+ "ode n",
+ "od en",
+ "o den",
+ "▁exp ansion",
+ "▁p ont",
+ "▁po nt",
+ "▁pon t",
+ "▁ pont",
+ "as ant",
+ "asa nt",
+ "▁K ind",
+ "▁Ki nd",
+ "▁Kin d",
+ "▁ Kind",
+ "ij i",
+ "i ji",
+ "▁A uth",
+ "▁Aut h",
+ "▁Au th",
+ "▁ Auth",
+ "laim ed",
+ "ref lect",
+ "] =",
+ "by tes",
+ "byte s",
+ "ho ver",
+ "hov er",
+ "h over",
+ "▁ц ер",
+ "▁це р",
+ "▁ цер",
+ "grad le",
+ "Ar ch",
+ "ap est",
+ "ape st",
+ "apes t",
+ "ás a",
+ "á sa",
+ "Car d",
+ "Ca rd",
+ "C ard",
+ "▁tempor ary",
+ "▁départ ement",
+ "class es",
+ "жи ва",
+ "▁х удо",
+ "▁m ole",
+ "▁mo le",
+ "▁mol e",
+ "R Y",
+ "L P",
+ "▁p ec",
+ "▁pe c",
+ "▁ pec",
+ "rodu ction",
+ "▁Gu ard",
+ "▁Par liament",
+ "▁inst anti",
+ "▁instant i",
+ "▁not amment",
+ "▁D oug",
+ "▁Do ug",
+ "▁Dou g",
+ "▁Mar sh",
+ "▁Mars h",
+ ". ~",
+ "▁\\ \"",
+ "▁ \\\"",
+ "▁t hé",
+ "▁th é",
+ "▁li bre",
+ "▁lib re",
+ "do es",
+ "▁dé but",
+ "▁U nit",
+ "▁Un it",
+ "▁ Unit",
+ "▁с ту",
+ "▁ст у",
+ "▁ сту",
+ "▁le ague",
+ "▁qu ale",
+ "▁q uale",
+ "▁qual e",
+ "▁состав ля",
+ "▁соста вля",
+ "Se curity",
+ "Sec urity",
+ "▁appar ently",
+ "▁apparent ly",
+ "▁tro ops",
+ "ic ano",
+ "ica no",
+ "ican o",
+ "i cano",
+ "▁M B",
+ "▁ MB",
+ "en ze",
+ "enz e",
+ "lo ading",
+ "load ing",
+ "▁dist ributed",
+ "▁distribu ted",
+ "▁distrib uted",
+ "write r",
+ "writ er",
+ "wr iter",
+ "w riter",
+ "res ources",
+ "resource s",
+ "h ö",
+ "ut ils",
+ "util s",
+ "uti ls",
+ "▁prep ared",
+ "▁prepar ed",
+ "▁prepare d",
+ "ci er",
+ "cie r",
+ "c ier",
+ "op ol",
+ "opo l",
+ "o pol",
+ "▁län kar",
+ "he s",
+ "h es",
+ "н ва",
+ "▁op ens",
+ "▁open s",
+ "▁ opens",
+ "ag og",
+ "ago g",
+ "inter face",
+ "▁F und",
+ "▁Fu nd",
+ "▁Fun d",
+ "▁pent ru",
+ "ní ch",
+ "n ích",
+ "▁config ured",
+ "▁configure d",
+ "▁configur ed",
+ "▁Web site",
+ "▁list ener",
+ "▁listen er",
+ "▁liste ner",
+ "▁ listener",
+ "iv el",
+ "ive l",
+ "i vel",
+ "n ę",
+ "min a",
+ "mi na",
+ "m ina",
+ "▁in vest",
+ "▁inv est",
+ "▁inve st",
+ "▁м іс",
+ "▁мі с",
+ "▁d av",
+ "▁da v",
+ "▁p atch",
+ "▁pat ch",
+ "▁ patch",
+ "pi eler",
+ "piel er",
+ "pie ler",
+ "▁Ext erna",
+ "▁Extern a",
+ "t f",
+ "▁e red",
+ "▁er ed",
+ "▁ere d",
+ "▁ ered",
+ "▁Ass embly",
+ "▁ Assembly",
+ "▁s out",
+ "▁so ut",
+ "▁sou t",
+ "▁v erk",
+ "▁ver k",
+ "▁ verk",
+ "me rs",
+ "mer s",
+ "m ers",
+ "t oggle",
+ "▁up dating",
+ "▁upd ating",
+ "▁K ent",
+ "▁Ke nt",
+ "▁Ken t",
+ "ec a",
+ "e ca",
+ "FA ULT",
+ "▁tit re",
+ "▁ti tre",
+ "▁K enn",
+ "▁Ke nn",
+ "▁Ken n",
+ "▁Ми ха",
+ "ст ор",
+ "сто р",
+ "с тор",
+ "▁p ode",
+ "▁po de",
+ "▁pod e",
+ "▁S eb",
+ "▁Se b",
+ "це в",
+ "ц ев",
+ "E Y",
+ "▁sil ver",
+ "▁cap acity",
+ "▁capac ity",
+ "▁comple tion",
+ "▁complet ion",
+ "▁Pe dro",
+ "▁Ped ro",
+ "fe l",
+ "f el",
+ "va no",
+ "van o",
+ "v ano",
+ "ze ug",
+ "▁in terior",
+ "▁inter ior",
+ "▁inte rior",
+ "▁Res ponse",
+ "▁ Response",
+ "éd ia",
+ "é dia",
+ "▁World Cat",
+ "▁c ă",
+ "qu el",
+ "que l",
+ "q uel",
+ "So l",
+ "S ol",
+ "іс ля",
+ "▁D omin",
+ "▁Do min",
+ "▁Dom in",
+ "▁c um",
+ "▁cu m",
+ "ce p",
+ "c ep",
+ "▁M use",
+ "▁Mus e",
+ "▁Mu se",
+ "▁M aría",
+ "▁Mar ía",
+ "▁Ma ría",
+ "▁function al",
+ "▁ad apter",
+ "▁adapt er",
+ "▁ adapter",
+ "config uration",
+ "▁t ipo",
+ "▁tip o",
+ "▁ti po",
+ "▁B ry",
+ "▁Br y",
+ "v y",
+ "U L",
+ "▁tra vers",
+ "▁trav ers",
+ "! (",
+ "▁absol utely",
+ "▁absolute ly",
+ "л та",
+ "тт я",
+ "т тя",
+ "▁I T",
+ "▁ IT",
+ "▁во ен",
+ "yc le",
+ "y cle",
+ "be st",
+ "bes t",
+ "b est",
+ "▁construct ed",
+ "▁constru cted",
+ "▁фи ль",
+ "▁ филь",
+ "ci do",
+ "cid o",
+ "c ido",
+ "ex it",
+ "ga rt",
+ "gar t",
+ "g art",
+ "▁provin cia",
+ "ve z",
+ "v ez",
+ "ci pl",
+ "cip l",
+ "▁Face book",
+ "▁Fac ebook",
+ "▁y ellow",
+ "▁ yellow",
+ "▁Sum mer",
+ "▁point ing",
+ "▁poss ibility",
+ "▁possib ility",
+ "▁possibil ity",
+ "▁leg isl",
+ "▁мо ж",
+ "▁ мож",
+ "de rn",
+ "der n",
+ "d ern",
+ "ко но",
+ "кон о",
+ "▁mechan ism",
+ "▁Bern ard",
+ "ex pr",
+ "exp r",
+ "ло ви",
+ "лов и",
+ "л ови",
+ "▁dig its",
+ "▁digit s",
+ "▁de legate",
+ "▁deleg ate",
+ "▁ delegate",
+ "og ram",
+ "o gram",
+ "▁D ictionary",
+ "▁ Dictionary",
+ "is y",
+ "▁s po",
+ "▁sp o",
+ "/ $",
+ "clude d",
+ "clud ed",
+ "▁M VC",
+ "▁t ém",
+ "▁té m",
+ "▁print ed",
+ "▁prin ted",
+ "▁G ott",
+ "▁Go tt",
+ "▁Got t",
+ "▁O m",
+ "▁ Om",
+ "ans as",
+ "▁D urch",
+ "▁Dur ch",
+ "▁I dent",
+ "▁Id ent",
+ "▁Ide nt",
+ "▁ Ident",
+ "Q U",
+ "ht m",
+ "h tm",
+ "▁S ul",
+ "▁Su l",
+ "'] .",
+ "' ].",
+ "▁du ty",
+ "▁dut y",
+ "▁Aut hor",
+ "▁Auth or",
+ "▁ Author",
+ "▁n ě",
+ "▁ ně",
+ "ow ego",
+ "owe go",
+ "pu s",
+ "p us",
+ "em bl",
+ "emb l",
+ "Exec utor",
+ "B L",
+ "▁M ens",
+ "▁Me ns",
+ "▁Men s",
+ "dis patch",
+ "▁M id",
+ "▁Mi d",
+ "ap ps",
+ "app s",
+ "Trans form",
+ "▁D at",
+ "▁Da t",
+ "▁ Dat",
+ "▁im pl",
+ "▁imp l",
+ "▁ impl",
+ "ou x",
+ "o ux",
+ "ho lm",
+ "hol m",
+ "▁I ns",
+ "▁In s",
+ "▁Emp ire",
+ "ру п",
+ "▁Ap ache",
+ "SI ON",
+ "S ION",
+ "▁pass age",
+ "######## ########",
+ "▁ex pressed",
+ "▁express ed",
+ "▁expr essed",
+ "▁expres sed",
+ "на д",
+ "▁o l",
+ "▁ ol",
+ "▁h avia",
+ "▁ha via",
+ "▁hav ia",
+ "▁бо лее",
+ "▁enjo y",
+ "form ance",
+ "▁dim ensions",
+ "▁dimension s",
+ "▁ч ер",
+ "▁че р",
+ "▁ чер",
+ "Se e",
+ "S ee",
+ "▁m outh",
+ "▁mo uth",
+ "▁mou th",
+ "▁ mouth",
+ "▁g au",
+ "▁ga u",
+ "ien cy",
+ "i ency",
+ "▁Carol ina",
+ "Dis t",
+ "Di st",
+ "D ist",
+ "rad io",
+ "li mit",
+ "lim it",
+ "l imit",
+ "/ ?",
+ "▁B all",
+ "▁Ba ll",
+ "▁Bal l",
+ "ні сть",
+ "Mem ber",
+ "M ember",
+ "wa ter",
+ "w ater",
+ "▁mur der",
+ "▁stand ing",
+ "▁stan ding",
+ "▁ standing",
+ "▁V II",
+ "▁VI I",
+ "Cent er",
+ "C enter",
+ "pp a",
+ "p pa",
+ "ur eau",
+ "ure au",
+ "▁Le ip",
+ "▁ob jet",
+ "▁obj et",
+ "▁Act ivity",
+ "▁Activ ity",
+ "▁ Activity",
+ "em bers",
+ "ember s",
+ "emb ers",
+ "v r",
+ "▁con du",
+ "▁cond u",
+ "Cell s",
+ "C ells",
+ "in us",
+ "inu s",
+ "▁' ,",
+ "▁ ',",
+ "▁af raid",
+ "▁х а",
+ "▁ ха",
+ "▁V ic",
+ "▁Vi c",
+ "test ing",
+ "tes ting",
+ "Tu be",
+ "T ube",
+ "▁v ast",
+ "▁va st",
+ "▁vas t",
+ "P M",
+ "ni h",
+ "n ih",
+ "SS N",
+ "S SN",
+ "▁Ch ile",
+ "▁Chi le",
+ "yl van",
+ "▁B ow",
+ "▁Bo w",
+ "▁relig ion",
+ "op her",
+ "oph er",
+ "ophe r",
+ "o pher",
+ "▁C oll",
+ "▁Col l",
+ "▁Co ll",
+ "▁ Coll",
+ "▁dig ital",
+ "▁digit al",
+ "zi oni",
+ "z ioni",
+ "Se ction",
+ "Sec tion",
+ "S ection",
+ "▁резу льта",
+ "Foo t",
+ "F oot",
+ "con vert",
+ "conv ert",
+ "▁rece iving",
+ "Cont act",
+ "▁h ero",
+ "▁he ro",
+ "▁her o",
+ "sa m",
+ "s am",
+ "▁pos terior",
+ "▁poster ior",
+ "▁poste rior",
+ "ow i",
+ "o wi",
+ "An t",
+ "A nt",
+ "▁fl ags",
+ "▁flag s",
+ "▁fla gs",
+ "▁ flags",
+ "▁Ze aland",
+ "▁b ounds",
+ "▁bound s",
+ "▁ bounds",
+ "▁where as",
+ "▁whe reas",
+ "in fl",
+ "inf l",
+ "Pl ay",
+ "P lay",
+ "▁d emo",
+ "▁de mo",
+ "▁dem o",
+ "▁ demo",
+ "▁g ibt",
+ "▁gi bt",
+ "▁h ospital",
+ "▁hosp ital",
+ "▁v olta",
+ "▁vol ta",
+ "▁volt a",
+ "л ё",
+ "▁f ashion",
+ "▁ex ceed",
+ "▁exc eed",
+ "el enium",
+ "elen ium",
+ "It er",
+ "I ter",
+ "kr ie",
+ "k rie",
+ "▁integr ation",
+ "▁integra tion",
+ "▁ integration",
+ "▁Other wise",
+ "ad u",
+ "a du",
+ "Sh e",
+ "S he",
+ "on de",
+ "ond e",
+ "o nde",
+ "ui nt",
+ "u int",
+ "rad ius",
+ "▁r am",
+ "▁ra m",
+ "▁ ram",
+ "▁ál bum",
+ "▁т ур",
+ "▁ту р",
+ "▁ тур",
+ "▁d y",
+ "▁ dy",
+ "▁O tt",
+ "▁Ot t",
+ "▁пер и",
+ "▁пе ри",
+ "re v",
+ "r ev",
+ "ri or",
+ "rio r",
+ "r ior",
+ "í d",
+ "ir at",
+ "ira t",
+ "i rat",
+ "▁в клю",
+ "▁import ante",
+ "▁important e",
+ "▁Du ke",
+ "▁caus a",
+ "▁ca usa",
+ "▁Math emat",
+ "▁di plom",
+ "▁N icol",
+ "▁Nic ol",
+ "▁Ni col",
+ "▁ex clus",
+ "▁exc lus",
+ "▁debug ging",
+ "▁G h",
+ "or iginal",
+ "origin al",
+ "orig inal",
+ "ly n",
+ "l yn",
+ "▁P la",
+ "▁Pl a",
+ "su ite",
+ "suit e",
+ "ch at",
+ "cha t",
+ "c hat",
+ "▁e stud",
+ "▁est ud",
+ "ue lle",
+ "uel le",
+ "u elle",
+ "▁p ert",
+ "▁per t",
+ "▁pe rt",
+ "▁ pert",
+ "▁import ance",
+ "▁appro aches",
+ "▁approach es",
+ "▁d la",
+ "▁про ф",
+ "Pr es",
+ "Pre s",
+ "P res",
+ "< \\",
+ "pre fix",
+ "p refix",
+ "SS ION",
+ "S SION",
+ "ро ди",
+ "род и",
+ "count ry",
+ "c ountry",
+ "it zer",
+ "itz er",
+ "▁ко р",
+ "▁к ор",
+ "▁ кор",
+ "▁sing ular",
+ "go v",
+ "g ov",
+ "ри н",
+ "р ин",
+ "▁F A",
+ "▁ FA",
+ "▁mat rices",
+ "ol are",
+ "ola re",
+ "olar e",
+ "o lare",
+ "ni ka",
+ "nik a",
+ "n ika",
+ "po wer",
+ "pow er",
+ "p ower",
+ "ll a",
+ "l la",
+ "▁des ire",
+ "▁famil ia",
+ "▁fam ilia",
+ "до р",
+ "д ор",
+ "▁f an",
+ "▁fa n",
+ "▁ fan",
+ "gener ated",
+ "generate d",
+ "▁C os",
+ "▁Co s",
+ "▁ż e",
+ "▁ że",
+ "▁D iese",
+ "▁Die se",
+ "▁Di ese",
+ "▁Dies e",
+ "mo v",
+ "m ov",
+ "▁de note",
+ "▁den ote",
+ "\") ]",
+ "\" )]",
+ "ou vern",
+ "ouv ern",
+ "ouve rn",
+ "ouver n",
+ "am an",
+ "ama n",
+ "a man",
+ "▁in ser",
+ "▁ins er",
+ "▁inse r",
+ "ij k",
+ "i jk",
+ "ot ta",
+ "ott a",
+ "o tta",
+ "er al",
+ "era l",
+ "e ral",
+ "де ль",
+ "д ель",
+ "() ->",
+ "( )->",
+ "▁p oder",
+ "▁po der",
+ "▁pod er",
+ "▁pode r",
+ "ig es",
+ "ige s",
+ "i ges",
+ "▁On line",
+ "▁we ird",
+ "ia c",
+ "i ac",
+ "▁quel ques",
+ "▁quelque s",
+ "ère nt",
+ "è rent",
+ "▁t el",
+ "▁te l",
+ "▁ tel",
+ "▁L atin",
+ "▁Lat in",
+ "ver ter",
+ "vert er",
+ "verte r",
+ "ля р",
+ "ро и",
+ "▁p df",
+ "▁pd f",
+ "▁ pdf",
+ "▁key word",
+ "▁ keyword",
+ "Hand le",
+ "A fter",
+ "re ce",
+ "rec e",
+ "▁ident ical",
+ "style sheet",
+ "styles heet",
+ "▁стан ови",
+ "▁станов и",
+ "▁k a",
+ "▁ ka",
+ "ce ment",
+ "cem ent",
+ "c ement",
+ "те т",
+ "т ет",
+ "▁c hat",
+ "▁ch at",
+ "▁cha t",
+ "▁ chat",
+ "▁M un",
+ "▁Mu n",
+ "ał a",
+ "a ła",
+ "AN T",
+ "A NT",
+ "ol óg",
+ "▁f ant",
+ "▁fa nt",
+ "▁fan t",
+ "▁for est",
+ "▁fo rest",
+ "▁fore st",
+ "▁ви ко",
+ "cu ss",
+ "cus s",
+ "c uss",
+ "▁se hr",
+ "pa g",
+ "p ag",
+ "ot ic",
+ "oti c",
+ "▁á ll",
+ "▁ál l",
+ "▁ áll",
+ "ма ти",
+ "мат и",
+ "▁\" '",
+ "+ \"",
+ "An imation",
+ "Anim ation",
+ "ходи т",
+ "ход ит",
+ "az u",
+ "a zu",
+ "▁pl ays",
+ "▁play s",
+ "▁pla ys",
+ "▁ plays",
+ "iz ioni",
+ "izi oni",
+ "izio ni",
+ "i zioni",
+ "ми че",
+ "▁b omb",
+ "▁bo mb",
+ "▁bom b",
+ "▁mer ely",
+ "▁mere ly",
+ "▁hold ing",
+ "▁hol ding",
+ "▁w enn",
+ "▁we nn",
+ "▁wen n",
+ "▁m edic",
+ "▁me dic",
+ "▁med ic",
+ "▁medi c",
+ "▁spe aking",
+ "▁speak ing",
+ "ong odb",
+ "ongo db",
+ "▁Cam pe",
+ "▁Camp e",
+ "in ity",
+ "ini ty",
+ "init y",
+ "▁я нва",
+ "() `.",
+ "()` .",
+ "( )`.",
+ "lu ss",
+ "lus s",
+ "l uss",
+ "▁H istoire",
+ "▁His toire",
+ "▁Hist oire",
+ "▁oper ating",
+ "▁opera ting",
+ "Ch annel",
+ "▁accur acy",
+ "▁b os",
+ "▁bo s",
+ "▁ bos",
+ "▁ev ident",
+ "ци ю",
+ "event s",
+ "ev ents",
+ "even ts",
+ "text rm",
+ "or eign",
+ "ore ign",
+ "▁i i",
+ "▁ ii",
+ "hr en",
+ "hre n",
+ "h ren",
+ "lo wer",
+ "low er",
+ "l ower",
+ "▁т ом",
+ "▁то м",
+ "▁ том",
+ "▁Ab out",
+ "▁ About",
+ "▁a j",
+ "▁ aj",
+ "er i",
+ "e ri",
+ "сту пи",
+ "ступ и",
+ "▁di git",
+ "▁dig it",
+ "▁ digit",
+ "▁Sp ain",
+ "▁D aten",
+ "▁Date n",
+ "▁Da ten",
+ "▁Dat en",
+ "▁for me",
+ "▁form e",
+ "▁ш та",
+ "▁ шта",
+ "▁B ach",
+ "▁Ba ch",
+ "▁Bac h",
+ "no number",
+ "non umber",
+ "▁recomm ended",
+ "▁recommend ed",
+ "▁re ads",
+ "▁read s",
+ "his toire",
+ "h istoire",
+ "▁s ang",
+ "▁sa ng",
+ "▁san g",
+ "▁? ?",
+ "▁ ??",
+ "▁с тал",
+ "▁ст ал",
+ "▁ста л",
+ "sc ore",
+ "s core",
+ "fa s",
+ "f as",
+ "▁c ub",
+ "▁cu b",
+ "▁g rew",
+ "▁gr ew",
+ "▁gre w",
+ "▁cent ro",
+ "▁bek annt",
+ "Event s",
+ "BE R",
+ "B ER",
+ "he w",
+ "h ew",
+ "сс а",
+ "с са",
+ "▁major ity",
+ "ît re",
+ "î tre",
+ "en ci",
+ "enc i",
+ "▁Qu ery",
+ "▁Que ry",
+ "▁ Query",
+ "▁któ re",
+ "i ć",
+ "▁complex ity",
+ "▁Fran çois",
+ "const raint",
+ "ур на",
+ "═ ═",
+ "▁iter ate",
+ "le tt",
+ "let t",
+ "l ett",
+ "pe ror",
+ "per or",
+ "▁Neder land",
+ "sh are",
+ "sha re",
+ "▁incl u",
+ "▁inc lu",
+ "än ger",
+ "äng er",
+ "änge r",
+ "▁N ic",
+ "▁Ni c",
+ "ч о",
+ "F ull",
+ "▁ra pport",
+ "▁rapp ort",
+ "▁rap port",
+ "ec lipse",
+ "e clipse",
+ "▁indust ry",
+ "he aders",
+ "head ers",
+ "header s",
+ "▁Р и",
+ "ch sel",
+ "chs el",
+ "▁po lic",
+ "▁pol ic",
+ "sch ied",
+ "% ,",
+ "O D",
+ "▁J ak",
+ "▁Ja k",
+ "({ \\",
+ "( {\\",
+ "al igned",
+ "align ed",
+ "▁frequ ently",
+ "▁frequent ly",
+ "▁su oi",
+ "▁suo i",
+ "▁ess entially",
+ "▁essential ly",
+ "▁R ic",
+ "▁Ri c",
+ "▁re ports",
+ "▁report s",
+ "▁dec imal",
+ "ra r",
+ "r ar",
+ "▁F oo",
+ "▁Fo o",
+ "▁ Foo",
+ "▁K a",
+ "▁D C",
+ "▁ DC",
+ "▁sim pler",
+ "▁simple r",
+ "▁simp ler",
+ "▁simpl er",
+ "Pa ne",
+ "Pan e",
+ "P ane",
+ "? }",
+ "So rt",
+ "S ort",
+ "▁pos it",
+ "cd n",
+ "c dn",
+ "kt ur",
+ "▁aw k",
+ "▁ awk",
+ "зе р",
+ "з ер",
+ "P F",
+ "u ur",
+ "▁R oss",
+ "▁Ro ss",
+ "▁Ros s",
+ "▁m ant",
+ "▁ma nt",
+ "▁man t",
+ "N a",
+ "Con s",
+ "Co ns",
+ "C ons",
+ ")) ))",
+ "))) )",
+ ") )))",
+ "▁techn iques",
+ "▁techni ques",
+ "▁technique s",
+ "im pl",
+ "imp l",
+ "▁dro pped",
+ "▁drop ped",
+ "▁L ista",
+ "▁List a",
+ "▁Li sta",
+ "▁Lis ta",
+ "▁Bas ically",
+ "▁Basic ally",
+ "en tal",
+ "ent al",
+ "enta l",
+ "▁cel ui",
+ "▁str ategy",
+ "▁strateg y",
+ "▁strat egy",
+ "▁W ales",
+ "▁Wal es",
+ "▁Wa les",
+ "na n",
+ "n an",
+ "▁g min",
+ "▁gr öß",
+ "▁eer ste",
+ "▁eerst e",
+ "T im",
+ "nt en",
+ "n ten",
+ "re sp",
+ "res p",
+ "r esp",
+ "▁s table",
+ "▁st able",
+ "▁sta ble",
+ "▁ stable",
+ "no v",
+ "n ov",
+ "ro b",
+ "r ob",
+ "но ј",
+ "▁mar riage",
+ "get String",
+ "Aut hor",
+ "Auth or",
+ "▁G raf",
+ "▁Gr af",
+ "▁Gra f",
+ "▁di agram",
+ "▁diag ram",
+ "▁dia gram",
+ "gi a",
+ "g ia",
+ "Net work",
+ "N etwork",
+ "▁com posed",
+ "▁comp osed",
+ "▁compos ed",
+ "▁compose d",
+ "▁miss ed",
+ "▁mis sed",
+ "▁M eg",
+ "▁Me g",
+ "▁пра во",
+ "▁прав о",
+ "▁hom onymes",
+ "▁Bo oks",
+ "▁Book s",
+ "▁en cou",
+ "▁enc ou",
+ "port e",
+ "por te",
+ "p orte",
+ "▁rot ation",
+ "▁f ir",
+ "▁fi r",
+ "▁ fir",
+ "те льно",
+ "тель но",
+ "▁g un",
+ "▁gu n",
+ "▁ gun",
+ "▁A ff",
+ "▁Af f",
+ "▁ Aff",
+ "но к",
+ "н ок",
+ "▁Fuß ball",
+ "▁St ory",
+ "▁Sto ry",
+ "▁ Story",
+ "▁Ch ap",
+ "▁Cha p",
+ "▁) .",
+ "▁ ).",
+ "▁Se it",
+ "мо н",
+ "м он",
+ "▁t élé",
+ "▁té lé",
+ "▁cop ied",
+ "▁cons istent",
+ "▁consist ent",
+ "▁dr ink",
+ "▁C ham",
+ "▁Ch am",
+ "▁Cha m",
+ "▁mat ters",
+ "▁matter s",
+ "▁render ed",
+ "▁rend ered",
+ "▁rende red",
+ "▁hyp oth",
+ "œ uv",
+ "▁me er",
+ "▁par sing",
+ "▁P RO",
+ "▁PR O",
+ "▁ PRO",
+ "se ries",
+ "ser ies",
+ "serie s",
+ "s eries",
+ "▁z á",
+ "▁ zá",
+ "stra ße",
+ "▁B oot",
+ "▁Bo ot",
+ "▁ Boot",
+ "▁re po",
+ "▁rep o",
+ "▁ repo",
+ "wo r",
+ "w or",
+ "▁St ream",
+ "▁Stre am",
+ "▁ Stream",
+ "▁A N",
+ "▁ AN",
+ "▁п ів",
+ "▁пі в",
+ "▁S M",
+ "▁ SM",
+ "▁A rn",
+ "▁Ar n",
+ "▁ Ž",
+ "▁[ ];",
+ "▁[] ;",
+ "Res ources",
+ "Resource s",
+ "▁el abor",
+ "▁ela bor",
+ "▁E th",
+ "▁Et h",
+ "▁l iste",
+ "▁li ste",
+ "▁list e",
+ "▁rel atively",
+ "▁relative ly",
+ "▁relativ ely",
+ "ch ant",
+ "chan t",
+ "cha nt",
+ "=\" \"",
+ "= \"\"",
+ "▁l ift",
+ "▁li ft",
+ "▁lif t",
+ "C N",
+ "Service s",
+ "Serv ices",
+ "ME NT",
+ "M ENT",
+ "▁и гра",
+ "▁иг ра",
+ "▁ игра",
+ "б ре",
+ "▁J ord",
+ "▁Jo rd",
+ "▁t ec",
+ "▁te c",
+ "ш ка",
+ "▁S up",
+ "▁Su p",
+ "▁infl uen",
+ "▁influ en",
+ "on ds",
+ "ond s",
+ "hand ler",
+ "handle r",
+ "▁b anda",
+ "▁band a",
+ "▁ban da",
+ "▁vert ices",
+ "▁z ap",
+ "▁za p",
+ "▁c ord",
+ "▁cor d",
+ "▁co rd",
+ "▁ cord",
+ "al ter",
+ "alt er",
+ "ze nia",
+ "zen ia",
+ "z enia",
+ "ât eau",
+ "âte au",
+ "▁know ing",
+ "▁Argent ina",
+ "Ar ea",
+ "Are a",
+ "A rea",
+ "ан е",
+ "а не",
+ "f c",
+ "=\" /",
+ "= \"/",
+ "▁M ik",
+ "▁Mi k",
+ "at ă",
+ "ie ux",
+ "ieu x",
+ "▁deutsch en",
+ "▁deutsche n",
+ "▁trad itional",
+ "▁tradition al",
+ "de code",
+ "dec ode",
+ "ve x",
+ "v ex",
+ "▁size of",
+ "▁ sizeof",
+ "▁F un",
+ "▁Fu n",
+ "▁ Fun",
+ "▁par ser",
+ "▁parse r",
+ "▁ parser",
+ "▁Flor ida",
+ "▁build ings",
+ "▁building s",
+ "▁Man uel",
+ "ri le",
+ "ril e",
+ "r ile",
+ "▁log ged",
+ "▁strong ly",
+ "▁re vol",
+ "▁rev ol",
+ "не е",
+ "xi co",
+ "xic o",
+ "x ico",
+ "▁F air",
+ "▁Fa ir",
+ "ca rt",
+ "car t",
+ "c art",
+ "▁W ort",
+ "▁Wo rt",
+ "▁Wor t",
+ "▁Jes us",
+ "em es",
+ "eme s",
+ "e mes",
+ "sch rift",
+ "Input Stream",
+ "wa d",
+ "w ad",
+ "▁gran des",
+ "▁grand es",
+ "▁grande s",
+ "▁númer o",
+ "▁O tto",
+ "▁Ot to",
+ "▁Ott o",
+ "ien tes",
+ "ient es",
+ "iente s",
+ "i entes",
+ "▁fam ous",
+ "ol ogne",
+ "olog ne",
+ "J e",
+ "ни ш",
+ "▁Guer ra",
+ "bar a",
+ "ba ra",
+ "b ara",
+ "▁c ad",
+ "▁ca d",
+ "el ve",
+ "br ace",
+ "bra ce",
+ "b race",
+ "▁J r",
+ "st able",
+ "sta ble",
+ "stab le",
+ "s table",
+ "EC T",
+ "E CT",
+ "lem ma",
+ "med iate",
+ "medi ate",
+ "media te",
+ "▁v in",
+ "▁vi n",
+ "▁ vin",
+ "▁mon ument",
+ "▁c v",
+ "▁ cv",
+ "▁w inter",
+ "▁win ter",
+ "▁trans formation",
+ "▁transform ation",
+ "▁N ick",
+ "▁Nic k",
+ "▁Ni ck",
+ "str onom",
+ "▁f rag",
+ "▁fr ag",
+ "▁fra g",
+ "▁in tel",
+ "▁int el",
+ "▁inte l",
+ "ra ction",
+ "rac tion",
+ "ract ion",
+ "r action",
+ "▁consider ing",
+ "▁consid ering",
+ "▁F le",
+ "▁Fl e",
+ "▁ ло",
+ "▁A près",
+ "▁Ap rès",
+ "▁A M",
+ "▁ AM",
+ "▁H um",
+ "▁Hu m",
+ "▁m undo",
+ "NE R",
+ "N ER",
+ "▁Be low",
+ "▁Bel ow",
+ "▁го рода",
+ "▁горо да",
+ "▁город а",
+ "ar ters",
+ "art ers",
+ "arter s",
+ "arte rs",
+ "-- \"",
+ "▁П е",
+ "▁ Пе",
+ "î t",
+ "▁t xt",
+ "▁tx t",
+ "▁ txt",
+ "an gers",
+ "ang ers",
+ "ange rs",
+ "anger s",
+ "▁t hy",
+ "▁th y",
+ "▁ thy",
+ "CL A",
+ "C LA",
+ "ib les",
+ "ible s",
+ "i bles",
+ "▁request ed",
+ "▁requ ested",
+ "▁Alex and",
+ "▁fact ors",
+ "▁fa ctors",
+ "▁factor s",
+ "▁produ ces",
+ "▁produce s",
+ "ning en",
+ "n ingen",
+ "▁со стоя",
+ "▁optim ization",
+ "ch od",
+ "cho d",
+ "c hod",
+ "> `",
+ "▁Wik ip",
+ "nost i",
+ "nos ti",
+ "n osti",
+ "▁compet ition",
+ "▁H ann",
+ "▁Ha nn",
+ "▁Han n",
+ "▁z ona",
+ "▁zo na",
+ "d c",
+ "de sign",
+ "des ign",
+ "▁Z u",
+ "▁e spec",
+ "▁es pec",
+ "▁espe c",
+ "▁esp ec",
+ "equ ality",
+ "equal ity",
+ "e quality",
+ "▁A bb",
+ "▁Ab b",
+ "▁develop er",
+ "▁ developer",
+ "▁\" ^",
+ "▁Sh ort",
+ "▁Sho rt",
+ "▁ Short",
+ "▁pl ans",
+ "▁pla ns",
+ "▁plan s",
+ "▁v it",
+ "▁vi t",
+ "iz able",
+ "iza ble",
+ "burg h",
+ "bur gh",
+ "ag em",
+ "age m",
+ "a gem",
+ "▁Pr int",
+ "▁Pri nt",
+ "▁Prin t",
+ "▁ Print",
+ "í v",
+ "▁su itable",
+ "▁suit able",
+ "pi cker",
+ "pic ker",
+ "pick er",
+ "p icker",
+ "Pro file",
+ "an dy",
+ "and y",
+ "▁qu ot",
+ "▁ quot",
+ "▁Dur ante",
+ "▁Durant e",
+ "▁Fran cia",
+ "▁Fr ancia",
+ "▁Franc ia",
+ "▁t art",
+ "▁tar t",
+ "▁ta rt",
+ "▁V enez",
+ "▁Ve nez",
+ "▁Ven ez",
+ "▁dis patch",
+ "▁disp atch",
+ "▁ dispatch",
+ "▁observ ations",
+ "▁observation s",
+ "▁ ż",
+ "In valid",
+ "▁occ urr",
+ "▁occur r",
+ "▁oc curr",
+ "т ки",
+ "Mem ento",
+ "M emento",
+ "▁S yd",
+ "▁Sy d",
+ "▁tiem po",
+ "▁st aff",
+ "▁sta ff",
+ "▁se ctions",
+ "▁section s",
+ "▁sect ions",
+ "▁ sections",
+ "▁s sh",
+ "▁ss h",
+ "▁ ssh",
+ "▁N GC",
+ "ë l",
+ "▁er re",
+ "▁err e",
+ "▁div ided",
+ "▁divide d",
+ "▁divid ed",
+ "▁With out",
+ "▁du rant",
+ "▁dur ant",
+ "▁j aar",
+ "▁ja ar",
+ "▁ −",
+ "▁sold iers",
+ "▁soldier s",
+ "ун к",
+ "la pse",
+ "lap se",
+ "laps e",
+ "▁Val ley",
+ "▁Vall ey",
+ "▁Valle y",
+ "▁( :",
+ "▁ (:",
+ "re ra",
+ "rer a",
+ "r era",
+ "▁d ével",
+ "▁dé vel",
+ "▁p éri",
+ "▁pé ri",
+ "▁calcul ation",
+ "▁calc ulation",
+ "▁ke ine",
+ "▁kein e",
+ "er tain",
+ "ert ain",
+ "erta in",
+ "▁те ле",
+ "ру д",
+ "▁c ul",
+ "▁cu l",
+ "▁ cul",
+ "▁cl oth",
+ "▁clo th",
+ "; }",
+ "▁pr zed",
+ "▁prze d",
+ "▁prz ed",
+ "Mon th",
+ "Mo nth",
+ "Mont h",
+ "Pi cker",
+ "P icker",
+ "▁S V",
+ "▁ SV",
+ "ar ian",
+ "ari an",
+ "aria n",
+ "a rian",
+ "▁Re view",
+ "▁Rev iew",
+ "▁h ang",
+ "▁ha ng",
+ "▁han g",
+ "▁ hang",
+ "▁о кт",
+ "▁ок т",
+ "▁F ront",
+ "▁Fr ont",
+ "▁Fro nt",
+ "▁ Front",
+ "ot lin",
+ "▁trans lation",
+ "▁transl ation",
+ "▁m odo",
+ "▁mod o",
+ "▁mo do",
+ "▁stat istics",
+ "▁statist ics",
+ "▁N ue",
+ "▁Nu e",
+ "▁Ни кола",
+ "NU M",
+ "N UM",
+ "▁s hips",
+ "▁sh ips",
+ "▁ship s",
+ "▁ ships",
+ "▁Re port",
+ "▁Rep ort",
+ "▁ Report",
+ "{ [",
+ "E ffect",
+ "ie ri",
+ "ier i",
+ "i eri",
+ "▁par ties",
+ "▁part ies",
+ "▁partie s",
+ "▁parti es",
+ "pl a",
+ "p la",
+ "r w",
+ "▁Work s",
+ "▁Wor ks",
+ "▁i ron",
+ "▁ir on",
+ "▁att ract",
+ "▁attr act",
+ "▁attra ct",
+ "▁c ort",
+ "▁cor t",
+ "▁co rt",
+ "n á",
+ "▁Ste ve",
+ "▁b ene",
+ "▁be ne",
+ "▁ben e",
+ "то н",
+ "т он",
+ "ícul a",
+ "Tw o",
+ "T wo",
+ "▁г лав",
+ "▁гла в",
+ "▁V ideo",
+ "▁ Video",
+ "▁power ful",
+ "au ch",
+ "auc h",
+ "a uch",
+ "ma nde",
+ "man de",
+ "m ande",
+ "äch st",
+ "ächs t",
+ "La t",
+ "L at",
+ "▁z na",
+ "▁zn a",
+ "▁ zna",
+ "▁fig ures",
+ "▁figure s",
+ "▁figur es",
+ "▁a lias",
+ "▁al ias",
+ "▁ali as",
+ "▁ alias",
+ "ne x",
+ "n ex",
+ "▁c ategories",
+ "▁categ ories",
+ "▁categor ies",
+ "▁categorie s",
+ "▁ categories",
+ "cal led",
+ "call ed",
+ "c alled",
+ "▁Sim ilar",
+ "▁g irls",
+ "▁girl s",
+ "▁gir ls",
+ "pe z",
+ "p ez",
+ "▁j oint",
+ "▁jo int",
+ "▁join t",
+ "▁ joint",
+ "ро го",
+ "р ого",
+ "ik en",
+ "ike n",
+ "i ken",
+ "чи на",
+ "чин а",
+ "an cia",
+ "anc ia",
+ "anci a",
+ "▁t ijd",
+ "▁ti jd",
+ "▁R ose",
+ "▁Ro se",
+ "▁Ros e",
+ "▁alg orithms",
+ "▁algorithm s",
+ "▁print ing",
+ "▁prin ting",
+ "ne a",
+ "n ea",
+ "▁exec uting",
+ "▁execut ing",
+ "▁l ambda",
+ "▁ lambda",
+ "▁reg ional",
+ "▁region al",
+ "▁Co pa",
+ "▁Cop a",
+ "F oo",
+ "ph ys",
+ "phy s",
+ "z m",
+ "▁L aur",
+ "▁La ur",
+ "▁Lau r",
+ "▁candid ate",
+ "▁J a",
+ "zy m",
+ "z ym",
+ "Ex ample",
+ "▁s piel",
+ "▁sp iel",
+ "▁ spiel",
+ "▁д ей",
+ "▁де й",
+ "▁ дей",
+ "ne hmen",
+ "neh men",
+ "nehm en",
+ "ke iten",
+ "keit en",
+ "▁с ент",
+ "int ent",
+ "inte nt",
+ ". (",
+ "▁пер вы",
+ "pr om",
+ "pro m",
+ "p rom",
+ "▁n at",
+ "▁na t",
+ "▁ nat",
+ "▁im agine",
+ "▁imag ine",
+ "call back",
+ "com ponents",
+ "component s",
+ "with out",
+ "▁a quest",
+ "▁aqu est",
+ "Su pport",
+ "Supp ort",
+ "▁respons ible",
+ "▁j ego",
+ "▁je go",
+ "l j",
+ "wi ll",
+ "w ill",
+ "le an",
+ "lea n",
+ "el and",
+ "ela nd",
+ "e land",
+ "olog ía",
+ "m c",
+ "Pro xy",
+ "▁o cup",
+ "▁oc up",
+ "▁на ходи",
+ "▁r ub",
+ "▁ru b",
+ "ні в",
+ "н ів",
+ "▁F all",
+ "▁Fa ll",
+ "▁Fal l",
+ "am os",
+ "amo s",
+ "a mos",
+ "▁E p",
+ "en tre",
+ "ent re",
+ "entr e",
+ "fa il",
+ "f ail",
+ "W orld",
+ "▁Ed itor",
+ "▁Edit or",
+ "▁ Editor",
+ "▁ex pos",
+ "▁exp os",
+ "▁f inds",
+ "▁find s",
+ "▁fin ds",
+ "▁C ulture",
+ "▁Cult ure",
+ "▁ Culture",
+ "LE ASE",
+ "▁m ovie",
+ "▁mov ie",
+ "▁mo vie",
+ "▁ movie",
+ "< =",
+ "omet ric",
+ "o metric",
+ "el ing",
+ "eli ng",
+ "elin g",
+ "e ling",
+ "numer able",
+ "ou rd",
+ "our d",
+ "o urd",
+ "▁S ea",
+ "▁Se a",
+ "▁b ild",
+ "▁bi ld",
+ "▁bil d",
+ "▁ bild",
+ "▁о ста",
+ "▁ос та",
+ "▁ост а",
+ "bl o",
+ "b lo",
+ "▁l ose",
+ "▁lo se",
+ "▁los e",
+ "▁ lose",
+ "at eurs",
+ "ate urs",
+ "ateur s",
+ "ou red",
+ "our ed",
+ "oure d",
+ "o ured",
+ "▁B att",
+ "▁Ba tt",
+ "▁Bat t",
+ "() ;\r",
+ "(); \r",
+ "( );\r",
+ "▁p oz",
+ "▁po z",
+ "pos ts",
+ "post s",
+ "pe nd",
+ "pen d",
+ "p end",
+ "cer tain",
+ "cert ain",
+ "c ertain",
+ "ни ком",
+ "ник ом",
+ "J ust",
+ "web kit",
+ "dem ás",
+ "~~ ~~",
+ "▁indic ates",
+ "▁indicate s",
+ "▁p ark",
+ "▁par k",
+ "▁ park",
+ "ri que",
+ "r ique",
+ "vo d",
+ "v od",
+ "▁Ch amp",
+ "▁Cham p",
+ "▁Cha mp",
+ "ft ware",
+ "OP T",
+ "O PT",
+ "dj ango",
+ "d jango",
+ "re lease",
+ "▁ È",
+ "S R",
+ "▁polit ician",
+ "▁r oi",
+ "▁ro i",
+ "at uren",
+ "atur en",
+ "ature n",
+ "atu ren",
+ "▁Deutsch e",
+ "ta gon",
+ "tag on",
+ "t agon",
+ "▁M ov",
+ "▁Mo v",
+ "ob ierno",
+ "obi erno",
+ "▁da ß",
+ "ut her",
+ "uth er",
+ "u ther",
+ "in di",
+ "ind i",
+ "▁Wik ipedia",
+ "▁Wikip edia",
+ "▁Wikiped ia",
+ "▁a nos",
+ "▁an os",
+ "▁ano s",
+ "▁ anos",
+ "▁ob serve",
+ "▁obser ve",
+ "▁observ e",
+ "▁obs erve",
+ "el ly",
+ "ell y",
+ "▁rail way",
+ "at on",
+ "ato n",
+ "a ton",
+ "▁e num",
+ "▁en um",
+ "▁ enum",
+ "hu s",
+ "h us",
+ "▁in hab",
+ "P si",
+ "oir e",
+ "oi re",
+ "o ire",
+ "▁Х о",
+ "▁S pace",
+ "▁Sp ace",
+ "▁ Space",
+ "▁Ар хи",
+ "▁an terior",
+ "▁ante rior",
+ "▁ Ł",
+ "is ons",
+ "ison s",
+ "iso ns",
+ "I l",
+ "▁am éric",
+ "la ps",
+ "lap s",
+ "l aps",
+ "▁B BC",
+ "▁BB C",
+ "QUE ST",
+ "Con stra",
+ "Const ra",
+ "Cons tra",
+ "mon t",
+ "mo nt",
+ "m ont",
+ "ä ft",
+ "▁ä ven",
+ "ub ern",
+ "ube rn",
+ "uber n",
+ "u bern",
+ "< !--",
+ "▁c oding",
+ "▁co ding",
+ "▁cod ing",
+ "the ory",
+ "at hed",
+ "ath ed",
+ "▁Ar be",
+ "▁ш и",
+ "▁ ши",
+ "for Each",
+ "om orphism",
+ "omorph ism",
+ "det ails",
+ "detail s",
+ "ach sen",
+ "in tegr",
+ "int egr",
+ "inte gr",
+ "V or",
+ "Un known",
+ "ace ae",
+ "a ceae",
+ "in ue",
+ "inu e",
+ "es ome",
+ "eso me",
+ "e some",
+ "▁F ir",
+ "ch ain",
+ "cha in",
+ "▁extrem ely",
+ "▁extreme ly",
+ "mult icol",
+ "multi col",
+ "▁Sw ift",
+ "▁address es",
+ "▁addr esses",
+ "hs pace",
+ "h space",
+ "▁Ro ger",
+ "▁Rog er",
+ "▁d essen",
+ "▁des sen",
+ "▁dess en",
+ "▁con sequ",
+ "▁cons equ",
+ "▁conse qu",
+ "ual mente",
+ "▁Pre mier",
+ "▁Prem ier",
+ "▁Re cord",
+ "▁Rec ord",
+ "▁ Record",
+ "▁B ron",
+ "▁Br on",
+ "▁Bro n",
+ "ki r",
+ "k ir",
+ "se x",
+ "s ex",
+ "in tern",
+ "int ern",
+ "inter n",
+ "inte rn",
+ "▁benef it",
+ "▁bene fit",
+ "um en",
+ "ume n",
+ "u men",
+ "▁be coming",
+ "▁bec oming",
+ "▁becom ing",
+ "▁l ig",
+ "▁li g",
+ "▁ lig",
+ "▁pop ula",
+ "▁popul a",
+ "os c",
+ "o sc",
+ "▁c iv",
+ "▁ci v",
+ "▁great est",
+ "▁pro ces",
+ "▁proc es",
+ "] *",
+ "▁ме сто",
+ "▁мест о",
+ "▁' $",
+ "▁ '$",
+ "he ll",
+ "hel l",
+ "h ell",
+ "(\" \\",
+ "( \"\\",
+ "▁n ine",
+ "▁ni ne",
+ "▁nin e",
+ "▁F ac",
+ "▁Fa c",
+ "ul pt",
+ "ulp t",
+ "jo urs",
+ "jou rs",
+ "j ours",
+ "▁C opy",
+ "▁Co py",
+ "▁Cop y",
+ "▁ Copy",
+ "▁activ ities",
+ "▁Dem ocr",
+ "▁Demo cr",
+ "E s",
+ "Su ccess",
+ "▁E sta",
+ "▁Est a",
+ "▁Es ta",
+ "it ul",
+ "itu l",
+ "is ti",
+ "ist i",
+ "▁B ed",
+ "▁Be d",
+ "ja s",
+ "j as",
+ "▁т ем",
+ "▁те м",
+ "▁ тем",
+ "▁H ung",
+ "▁Hu ng",
+ "▁Hun g",
+ "G ame",
+ "▁he av",
+ "onn ées",
+ "▁branch es",
+ "▁bran ches",
+ "bo rg",
+ "bor g",
+ "b org",
+ "▁v l",
+ "▁ vl",
+ "▁slow ly",
+ "F a",
+ "Go ogle",
+ "em i",
+ "e mi",
+ "▁circumst ances",
+ "▁' %",
+ "▁U nd",
+ "▁Un d",
+ "▁ Und",
+ "▁Vict oria",
+ "▁Victor ia",
+ "▁T yp",
+ "▁Ty p",
+ "▁ Typ",
+ "rupt ed",
+ "rup ted",
+ "▁rel ativ",
+ "▁s lo",
+ "▁sl o",
+ "▁p adre",
+ "▁pad re",
+ "▁d aily",
+ "▁da ily",
+ "▁dai ly",
+ "▁or th",
+ "▁ort h",
+ "▁ orth",
+ "чни й",
+ "ч ний",
+ "▁fran zös",
+ "▁t eil",
+ "▁te il",
+ "▁ teil",
+ "▁Se curity",
+ "▁Sec urity",
+ "▁ Security",
+ "or don",
+ "ord on",
+ "ordo n",
+ "▁s weet",
+ "▁swe et",
+ "SI ZE",
+ "▁C el",
+ "▁Ce l",
+ "èt res",
+ "è tres",
+ "om mes",
+ "omm es",
+ "▁с і",
+ "▁ сі",
+ "▁effort s",
+ "ą z",
+ "▁oh ne",
+ "▁South ern",
+ "▁Sou thern",
+ "▁approxim ately",
+ "▁approximate ly",
+ "це н",
+ "ц ен",
+ "(' #",
+ "▁s aving",
+ "▁sa ving",
+ "▁sav ing",
+ "nb sp",
+ "▁trans late",
+ "▁transl ate",
+ "▁ translate",
+ "▁Î n",
+ "mem ber",
+ "m ember",
+ "▁l aws",
+ "▁la ws",
+ "▁law s",
+ "▁ж ен",
+ "▁же н",
+ "▁ жен",
+ "▁си сте",
+ "t c",
+ "> \\",
+ "el te",
+ "elt e",
+ "▁e hem",
+ "▁con trad",
+ "▁cont rad",
+ "▁contr ad",
+ "▁contra d",
+ "▁ру с",
+ "▁р ус",
+ "▁ рус",
+ "ь я",
+ "▁M iddle",
+ "▁ Middle",
+ "qu ip",
+ "qui p",
+ "▁c hez",
+ "▁ch ez",
+ "▁che z",
+ "▁ chez",
+ "Field s",
+ "▁per mit",
+ "▁perm it",
+ "ik el",
+ "ike l",
+ "i kel",
+ "▁w ir",
+ "▁t rial",
+ "▁tr ial",
+ "▁tri al",
+ "▁ver schied",
+ "▁versch ied",
+ "▁ф ев",
+ "▁фе в",
+ "▁m ale",
+ "▁ma le",
+ "▁mal e",
+ "▁ male",
+ "▁я зы",
+ "▁ny el",
+ "ak ter",
+ "akt er",
+ "akte r",
+ "a kter",
+ "▁den omin",
+ "cept or",
+ "cep tor",
+ "▁W at",
+ "▁Wa t",
+ "▁f ino",
+ "▁fin o",
+ "▁fi no",
+ "▁XV III",
+ "▁XVI II",
+ "▁XVII I",
+ "ry ption",
+ "rypt ion",
+ "de sc",
+ "des c",
+ "d esc",
+ "ap a",
+ "a pa",
+ "ле на",
+ "лен а",
+ "л ена",
+ "▁k ol",
+ "▁ko l",
+ "▁ kol",
+ "▁ Є",
+ "▁dep endent",
+ "▁depend ent",
+ "▁ dependent",
+ "▁C ra",
+ "▁Cr a",
+ "▁st orm",
+ "▁stor m",
+ "▁sto rm",
+ "▁Г ер",
+ "▁Ге р",
+ "▁p ipe",
+ "▁pi pe",
+ "▁pip e",
+ "▁ pipe",
+ "▁att ended",
+ "▁attend ed",
+ "▁v ita",
+ "▁vi ta",
+ "▁vit a",
+ "uz ione",
+ "u zione",
+ "cz as",
+ "cza s",
+ "c zas",
+ "on da",
+ "ond a",
+ "▁b old",
+ "▁bo ld",
+ "▁bol d",
+ "▁ bold",
+ "Column s",
+ "ic ió",
+ "ici ó",
+ "i ció",
+ "▁c zę",
+ "▁cz ę",
+ "▁из вест",
+ "▁Cl oud",
+ "▁Clo ud",
+ "▁ Cloud",
+ "▁w arm",
+ "▁war m",
+ "▁wa rm",
+ "▁с ы",
+ "▁ сы",
+ "▁с те",
+ "▁ст е",
+ "▁ сте",
+ "▁produ cer",
+ "▁produce r",
+ "▁Lud wig",
+ "▁Nor thern",
+ "▁North ern",
+ "ł ą",
+ "NS String",
+ "▁H ad",
+ "▁Ha d",
+ "▁И ван",
+ "▁E g",
+ "▁I mp",
+ "▁Im p",
+ "▁ Imp",
+ "ш і",
+ "▁A uch",
+ "▁Au ch",
+ "то к",
+ "т ок",
+ "▁H it",
+ "▁Hi t",
+ "▁qu ien",
+ "▁qui en",
+ "▁de partment",
+ "▁depart ment",
+ "▁erh ielt",
+ "▁u i",
+ "▁ ui",
+ "▁S pr",
+ "▁Sp r",
+ "се р",
+ "с ер",
+ "ou rt",
+ "our t",
+ "o urt",
+ "▁Ste phen",
+ "▁Step hen",
+ "▁Steph en",
+ "te am",
+ "▁z ip",
+ "▁ zip",
+ "▁B ang",
+ "▁Ba ng",
+ "▁Ban g",
+ "▁grow th",
+ "▁j am",
+ "▁ja m",
+ "▁K ais",
+ "▁Ka is",
+ "b matrix",
+ "▁As ia",
+ "▁rég ion",
+ "= /",
+ "▁Pac ific",
+ "▁author ity",
+ "▁# [",
+ "та ми",
+ "там и",
+ "▁every one",
+ "▁att end",
+ "▁atte nd",
+ "▁ attend",
+ "▁tim estamp",
+ "▁ timestamp",
+ "▁t ries",
+ "▁tr ies",
+ "▁tri es",
+ "▁f f",
+ "▁ ff",
+ "ше й",
+ "ш ей",
+ "▁develop ing",
+ "ol t",
+ "o lt",
+ "up s",
+ "u ps",
+ "▁moment o",
+ "▁mom ento",
+ "▁S ain",
+ "▁Sa in",
+ "Te rm",
+ "T erm",
+ "▁c elle",
+ "▁ce lle",
+ "▁cell e",
+ "▁cel le",
+ "G R",
+ "Mo use",
+ "M ouse",
+ "▁челов ек",
+ "▁челове к",
+ "▁Col lection",
+ "▁Coll ection",
+ "▁Collect ion",
+ "▁ Collection",
+ "ât re",
+ "â tre",
+ "▁W rite",
+ "▁Writ e",
+ "▁ Write",
+ "▁P om",
+ "▁Po m",
+ "[ -",
+ "Ca m",
+ "C am",
+ "▁loc ations",
+ "▁location s",
+ "▁J son",
+ "▁ Json",
+ "el led",
+ "ell ed",
+ "elle d",
+ "select or",
+ "sel ector",
+ "re peat",
+ "ct ors",
+ "ctor s",
+ "ot te",
+ "ott e",
+ "o tte",
+ "ви зи",
+ "änd e",
+ "än de",
+ "ä nde",
+ "▁ach ieved",
+ "▁achieve d",
+ "▁achiev ed",
+ "▁main ly",
+ "____ ____",
+ "! )",
+ "▁явля ется",
+ "▁c ities",
+ "▁ci ties",
+ "▁cit ies",
+ "sing le",
+ "sin gle",
+ "г ре",
+ "▁P ak",
+ "▁Pa k",
+ "▁allow ing",
+ "▁allo wing",
+ "fer red",
+ "▁а пре",
+ "хо дя",
+ "ход я",
+ "▁brow sers",
+ "▁browser s",
+ "▁es crit",
+ "▁esc rit",
+ "▁escri t",
+ "▁mount ain",
+ "▁network s",
+ "▁net works",
+ "ki nd",
+ "kin d",
+ "k ind",
+ "li ver",
+ "live r",
+ "liv er",
+ "l iver",
+ "▁cl osing",
+ "▁clos ing",
+ "▁clo sing",
+ "▁sk ip",
+ "▁ski p",
+ "▁ skip",
+ "ú t",
+ "▁d uration",
+ "▁dur ation",
+ "▁ duration",
+ "ét ait",
+ "éta it",
+ "é tait",
+ "▁s cr",
+ "▁sc r",
+ "▁ scr",
+ "B B",
+ "ór ia",
+ "ó ria",
+ "▁K ultur",
+ "▁Kult ur",
+ "▁output s",
+ "multi column",
+ "multicol umn",
+ "▁bel ongs",
+ "▁belong s",
+ "fe ature",
+ "uc ky",
+ "uck y",
+ "▁j uli",
+ "▁ju li",
+ "▁jul i",
+ "▁рай она",
+ "▁райо на",
+ "▁район а",
+ "з во",
+ "fact ory",
+ "factor y",
+ "f actory",
+ "Fun c",
+ "F unc",
+ "▁ut ter",
+ "▁ utter",
+ "▁TO DO",
+ "▁o bt",
+ "▁ob t",
+ "ateg ories",
+ "ategor ies",
+ "▁com bine",
+ "▁comb ine",
+ "▁combin e",
+ "▁W all",
+ "▁Wal l",
+ "▁Wa ll",
+ "▁under lying",
+ "ar ono",
+ "aron o",
+ "aro no",
+ "▁P rote",
+ "▁Pro te",
+ "▁Pr ote",
+ "c ów",
+ "st an",
+ "sta n",
+ "s tan",
+ "▁G ew",
+ "▁Ge w",
+ "▁opt imal",
+ "▁optim al",
+ "▁Archiv link",
+ "▁S cript",
+ "▁ Script",
+ "▁destroy ed",
+ "х е",
+ "▁Fire fox",
+ "▁s ole",
+ "▁so le",
+ "▁sol e",
+ "▁ sole",
+ "La yer",
+ "L ayer",
+ "т ку",
+ "▁st ores",
+ "▁stor es",
+ "▁store s",
+ "▁sto res",
+ "▁dis plays",
+ "▁display s",
+ "is hing",
+ "ish ing",
+ "ishi ng",
+ "▁о ст",
+ "▁ос т",
+ "▁inst ant",
+ "▁el ő",
+ "▁habit antes",
+ "▁Ein wo",
+ "▁a li",
+ "▁al i",
+ "▁ ali",
+ "▁ER ROR",
+ "▁ERR OR",
+ "▁ ERROR",
+ "▁a head",
+ "▁ah ead",
+ "▁go als",
+ "▁goal s",
+ "▁m ár",
+ "▁má r",
+ "▁s ą",
+ "▁m art",
+ "▁ma rt",
+ "▁mar t",
+ "▁ mart",
+ "мини стра",
+ "F r",
+ "▁V illa",
+ "▁Vill a",
+ "▁Vi lla",
+ "▁Vil la",
+ "▁M arc",
+ "▁Mar c",
+ "▁Ma rc",
+ "ro py",
+ "rop y",
+ "r opy",
+ "ag ram",
+ "agr am",
+ "a gram",
+ "ha pe",
+ "h ape",
+ "ме й",
+ "м ей",
+ "▁A L",
+ "▁ AL",
+ "▁conne xes",
+ "▁En tre",
+ "▁Ent re",
+ "St ep",
+ "Ste p",
+ "лі в",
+ "л ів",
+ "▁De ath",
+ "▁r ise",
+ "▁ris e",
+ "▁ri se",
+ "▁f os",
+ "▁fo s",
+ "▁l ev",
+ "▁le v",
+ "▁ lev",
+ "ga be",
+ "g abe",
+ "▁b roke",
+ "▁br oke",
+ "▁bro ke",
+ "product s",
+ "▁m edi",
+ "▁me di",
+ "▁med i",
+ "▁ medi",
+ "▁dis pon",
+ "▁disp on",
+ "Pack age",
+ "P ackage",
+ "Image View",
+ "▁N ag",
+ "▁Na g",
+ "uj ą",
+ "u ją",
+ "W ord",
+ "▁k ole",
+ "▁ko le",
+ "▁kol e",
+ "ße r",
+ "ß er",
+ ")` .",
+ ") `.",
+ "▁r ol",
+ "▁ro l",
+ "▁ rol",
+ "▁ í",
+ "те й",
+ "т ей",
+ "Pro gress",
+ "be an",
+ "▁s empre",
+ "▁sem pre",
+ "State ment",
+ "Stat ement",
+ "UP DATE",
+ "▁mond iale",
+ "▁w rapper",
+ "▁wr apper",
+ "▁wra pper",
+ "▁wrap per",
+ "▁ wrapper",
+ "▁C hart",
+ "▁Ch art",
+ "▁Char t",
+ "▁Cha rt",
+ "▁ Chart",
+ "▁on Click",
+ "че ння",
+ "чен ня",
+ "LO G",
+ "some thing",
+ "som ething",
+ "s omething",
+ "▁IN SERT",
+ "▁ INSERT",
+ "ще ния",
+ "ue t",
+ "u et",
+ "wer p",
+ "we rp",
+ "ro und",
+ "rou nd",
+ "r ound",
+ "ic hen",
+ "ich en",
+ "iche n",
+ "i chen",
+ "▁X VI",
+ "▁XV I",
+ "з ни",
+ "▁ave va",
+ "▁St ore",
+ "▁Sto re",
+ "▁ Store",
+ "▁x s",
+ "▁ xs",
+ "ra cht",
+ "rac ht",
+ "rach t",
+ "r acht",
+ "sc ar",
+ "s car",
+ "▁op era",
+ "▁oper a",
+ "▁ opera",
+ "▁deg rees",
+ "▁degree s",
+ "▁cit iz",
+ "äs ident",
+ "▁class ical",
+ "▁classic al",
+ "▁Jer sey",
+ "▁er sch",
+ "▁ers ch",
+ "▁ ersch",
+ "▁treat ment",
+ "▁насе ље",
+ "н ня",
+ "▁bo ost",
+ "▁ boost",
+ "am ount",
+ "amo unt",
+ "a mount",
+ "▁со зда",
+ "ér ieur",
+ "érie ur",
+ "éri eur",
+ "▁t elling",
+ "▁tell ing",
+ "▁tel ling",
+ "Ha s",
+ "H as",
+ "▁in iti",
+ "▁init i",
+ "▁П и",
+ "ev al",
+ "e val",
+ "▁M atch",
+ "▁Mat ch",
+ "▁ Match",
+ "▁cor re",
+ "▁corr e",
+ "Point er",
+ "Po inter",
+ "▁pass es",
+ "▁passe s",
+ "comp any",
+ "▁а н",
+ "▁ ан",
+ "ach es",
+ "ac hes",
+ "ache s",
+ "a ches",
+ "▁sig lo",
+ "не м",
+ "н ем",
+ "▁ex change",
+ "▁ exchange",
+ "ci to",
+ "cit o",
+ "c ito",
+ "▁B ab",
+ "▁Ba b",
+ "Do c",
+ "D oc",
+ "ze ś",
+ "▁на род",
+ "▁ народ",
+ "▁conf lict",
+ "▁conflic t",
+ "▁confl ict",
+ "▁nov ember",
+ "ea u",
+ "e au",
+ "ö v",
+ "▁H ub",
+ "▁Hu b",
+ "▁ Hub",
+ "▁p oco",
+ "▁po co",
+ "▁poc o",
+ "en sa",
+ "ens a",
+ "sch ließ",
+ "lass e",
+ "las se",
+ "l asse",
+ "data s",
+ "dat as",
+ "▁с ти",
+ "▁ст и",
+ "▁ сти",
+ "un ivers",
+ "uni vers",
+ "ek s",
+ "e ks",
+ "▁C ho",
+ "▁Ch o",
+ "▁ Cho",
+ "▁c ô",
+ "▁( .",
+ "▁ (.",
+ "ew nę",
+ "▁Ch ief",
+ "▁Chi ef",
+ "▁ch ef",
+ "▁che f",
+ "▁у прав",
+ "ul i",
+ "u li",
+ "▁' ''",
+ "▁'' '",
+ "▁ '''",
+ "nap shot",
+ "▁re lac",
+ "▁rel ac",
+ "▁rela c",
+ "ég e",
+ "é ge",
+ "w t",
+ "we nd",
+ "wen d",
+ "w end",
+ "os ing",
+ "osi ng",
+ "o sing",
+ "▁ha cer",
+ "▁hace r",
+ "▁ф ран",
+ "au tres",
+ "aut res",
+ "autre s",
+ "▁f ils",
+ "▁fil s",
+ "▁fi ls",
+ "er ed",
+ "ere d",
+ "e red",
+ "▁По силання",
+ "▁th erm",
+ "▁the rm",
+ "▁ther m",
+ "ер жа",
+ "su ch",
+ "s uch",
+ "▁i hren",
+ "▁ih ren",
+ "▁ihr en",
+ "▁ihre n",
+ "▁en contr",
+ "▁l ots",
+ "▁lo ts",
+ "▁lot s",
+ "lo go",
+ "log o",
+ "l ogo",
+ "▁W i",
+ "/ (",
+ "ш ње",
+ "DA TA",
+ "DAT A",
+ "D ATA",
+ "▁P layer",
+ "▁Pl ayer",
+ "▁Play er",
+ "▁Pla yer",
+ "▁ Player",
+ "▁Leip zig",
+ "▁rel atives",
+ "▁relative s",
+ "▁relativ es",
+ "ре в",
+ "р ев",
+ "▁new sp",
+ "▁news p",
+ "? ,",
+ "▁St utt",
+ "▁Stu tt",
+ "▁d ual",
+ "▁du al",
+ "▁compan ies",
+ "▁z am",
+ "▁za m",
+ "put ation",
+ "▁in equality",
+ "▁t rem",
+ "▁tr em",
+ "▁tre m",
+ "hi ps",
+ "hip s",
+ "h ips",
+ "an ch",
+ "anc h",
+ "▁ Ż",
+ "бур г",
+ "▁cop ies",
+ "da sh",
+ "das h",
+ "d ash",
+ "во р",
+ "в ор",
+ "spiel er",
+ "s pieler",
+ "▁Re volution",
+ "▁Revol ution",
+ "es ty",
+ "est y",
+ "e sty",
+ "▁j unto",
+ "▁jun to",
+ "▁junt o",
+ "▁Ind eed",
+ "ok al",
+ "oka l",
+ "o kal",
+ "ctr ine",
+ "▁F ord",
+ "▁For d",
+ "▁Fo rd",
+ "▁C REATE",
+ "▁ CREATE",
+ "▁w alls",
+ "▁wall s",
+ "▁wal ls",
+ "▁a ute",
+ "▁au te",
+ "▁aut e",
+ "S U",
+ "wh y",
+ "w hy",
+ "plement ation",
+ "ro ut",
+ "rou t",
+ "r out",
+ "Mat rix",
+ "▁s ad",
+ "▁sa d",
+ "ан а",
+ "а на",
+ "▁P ic",
+ "▁Pi c",
+ ". “",
+ "▁A C",
+ "▁ AC",
+ "▁F est",
+ "▁Fe st",
+ "▁des ktop",
+ "▁ desktop",
+ "▁P ay",
+ "▁Pa y",
+ "▁ Pay",
+ "ome times",
+ "omet imes",
+ "▁T ak",
+ "▁Ta k",
+ "ра б",
+ "▁S ever",
+ "▁Se ver",
+ "▁nor thern",
+ "▁north ern",
+ "an ter",
+ "ant er",
+ "ante r",
+ "▁Mod ern",
+ "▁Mo dern",
+ "▁Mode rn",
+ "wa l",
+ "w al",
+ "{ \r",
+ "on line",
+ "ö k",
+ "▁brit ann",
+ "$ _",
+ "▁j ar",
+ "▁ja r",
+ "▁ jar",
+ "T L",
+ "xx xx",
+ "xxx x",
+ "x xxx",
+ "mer ge",
+ "▁N amen",
+ "▁Name n",
+ "▁Na men",
+ "▁Nam en",
+ "▁K EY",
+ "▁ KEY",
+ "▁re fers",
+ "▁ref ers",
+ "▁refer s",
+ "▁h in",
+ "▁hi n",
+ "▁ hin",
+ "▁Vol ks",
+ "▁Volk s",
+ "st eller",
+ "stell er",
+ "stelle r",
+ "vi ation",
+ "via tion",
+ "v iation",
+ "on io",
+ "oni o",
+ "o nio",
+ "ight er",
+ "igh ter",
+ "Com pat",
+ "Comp at",
+ "▁C E",
+ "▁ CE",
+ "▁p ró",
+ "▁pr ó",
+ "▁encuent ra",
+ "the orem",
+ "▁pub li",
+ "▁Develop ment",
+ "н д",
+ "▁r os",
+ "▁ro s",
+ "▁ ros",
+ "▁s hr",
+ "▁sh r",
+ "se au",
+ "s eau",
+ "▁gener ating",
+ "▁gene rating",
+ "▁difficult y",
+ "▁Ex press",
+ "▁Exp ress",
+ "▁ Express",
+ "Al ignment",
+ "de utsch",
+ "▁Вла ди",
+ "▁sugg ests",
+ "▁suggest s",
+ "▁Famil y",
+ "▁Fam ily",
+ "▁ Family",
+ "bb i",
+ "b bi",
+ "]) .",
+ "] ).",
+ "st aw",
+ "sta w",
+ "▁pres idente",
+ "▁president e",
+ "▁presiden te",
+ "▁st esso",
+ "in x",
+ "i nx",
+ "set up",
+ "▁con form",
+ "▁conf orm",
+ "▁f ro",
+ "▁fr o",
+ "=\\ \"",
+ "= \\\"",
+ "▁d å",
+ "ic iones",
+ "ici ones",
+ "icio nes",
+ "icion es",
+ "i ciones",
+ "▁e volution",
+ "▁evol ution",
+ "pr ote",
+ "pro te",
+ "p rote",
+ "▁pr ints",
+ "▁print s",
+ "▁prin ts",
+ "▁P ont",
+ "▁Po nt",
+ "▁Pon t",
+ "▁conf usion",
+ "▁ Й",
+ "▁d ello",
+ "▁del lo",
+ "▁dell o",
+ "▁man if",
+ "Def inition",
+ "ár a",
+ "á ra",
+ "ma ls",
+ "mal s",
+ "m als",
+ "▁s ale",
+ "▁sa le",
+ "▁sal e",
+ "▁drop down",
+ "▁ dropdown",
+ "Ch ain",
+ "Amer ican",
+ "America n",
+ "▁m k",
+ "▁ mk",
+ "▁B ez",
+ "▁Be z",
+ "▁F ue",
+ "▁Fu e",
+ "▁N E",
+ "▁ NE",
+ "гра фи",
+ "граф и",
+ "doc ker",
+ "do cker",
+ "d ocker",
+ "▁^ {",
+ "▁ ^{",
+ "As sert",
+ "Ass ert",
+ "▁hor izontal",
+ "▁horizon tal",
+ "▁ horizontal",
+ "(@ \"",
+ "( @\"",
+ "▁д ву",
+ "pro xy",
+ "U ri",
+ "gen cy",
+ "g ency",
+ "▁\" [",
+ "▁Q t",
+ "▁ Qt",
+ "▁N ames",
+ "▁Name s",
+ "▁Na mes",
+ "▁Nam es",
+ "▁ Names",
+ "▁evalu ate",
+ "▁eval uate",
+ "! /",
+ "▁ein ges",
+ "▁eing es",
+ "▁syn th",
+ "▁sy nth",
+ "▁You Tube",
+ "▁turn ing",
+ "▁tur ning",
+ "▁E ric",
+ "▁Er ic",
+ "▁б ли",
+ "▁ бли",
+ "▁k lub",
+ "▁kl ub",
+ "pl orer",
+ "▁s ports",
+ "▁sport s",
+ "▁s ia",
+ "▁si a",
+ "о ш",
+ "▁d ai",
+ "▁da i",
+ "▁e urope",
+ "▁europ e",
+ "▁euro pe",
+ "ic ians",
+ "ici ans",
+ "ician s",
+ "icia ns",
+ "ings områ",
+ "▁d re",
+ "▁dr e",
+ "▁work around",
+ "▁s uit",
+ "▁su it",
+ "▁ suit",
+ "amb igu",
+ "▁quant ity",
+ "▁ quantity",
+ "▁seg undo",
+ "Sym bol",
+ "S ymbol",
+ "▁m oral",
+ "▁mo ral",
+ "▁mor al",
+ "Ch art",
+ "Char t",
+ "C hart",
+ "▁da mit",
+ "▁dam it",
+ "▁attempt s",
+ "▁d onn",
+ "▁do nn",
+ "▁don n",
+ "jo s",
+ "j os",
+ "▁e re",
+ "▁er e",
+ "▁ ere",
+ "▁hom me",
+ "▁ homme",
+ "si mp",
+ "sim p",
+ "s imp",
+ "rypt ed",
+ "▁act s",
+ "▁ac ts",
+ "inner HTML",
+ "▁tourn ament",
+ "▁s ky",
+ "▁sk y",
+ "▁ sky",
+ "Time r",
+ "Tim er",
+ "T imer",
+ "▁mill ions",
+ "▁million s",
+ "^ +",
+ "ag ent",
+ "age nt",
+ "agen t",
+ "a gent",
+ "') );",
+ "')) ;",
+ "' ));",
+ "▁o st",
+ "▁os t",
+ "▁ ost",
+ "▁g la",
+ "▁gl a",
+ "▁по мо",
+ "▁f ün",
+ "ст вом",
+ "ств ом",
+ "ство м",
+ "ewnę trz",
+ "▁Mé xico",
+ "▁l ub",
+ "▁lu b",
+ "▁ lub",
+ "▁É d",
+ "if ik",
+ "ifi k",
+ "i fik",
+ "че ский",
+ "▁im mer",
+ "▁imm er",
+ "▁ immer",
+ "en sen",
+ "ens en",
+ "ense n",
+ "an ny",
+ "ann y",
+ "in line",
+ "▁g over",
+ "▁go ver",
+ "au c",
+ "a uc",
+ "▁re pre",
+ "▁rep re",
+ "▁repr e",
+ "▁histor ia",
+ "▁hist oria",
+ "A g",
+ "▁p lt",
+ "▁pl t",
+ "▁Pr inci",
+ "▁Prin ci",
+ "im eter",
+ "ime ter",
+ "imet er",
+ "i meter",
+ "ő s",
+ "š e",
+ "▁U E",
+ "▁ UE",
+ "Equ als",
+ "Equal s",
+ "Eq uals",
+ "Dis patch",
+ "le gen",
+ "leg en",
+ "lege n",
+ "l egen",
+ "ла зи",
+ "чно й",
+ "ч ной",
+ "▁st ell",
+ "▁ste ll",
+ "▁ stell",
+ "ń st",
+ "▁c ri",
+ "▁cr i",
+ "▁ cri",
+ "▁In dep",
+ "▁Ind ep",
+ "è de",
+ "}\\ )",
+ "} \\)",
+ "▁w yst",
+ "▁wy st",
+ "▁wys t",
+ "▁fig ured",
+ "▁figure d",
+ "▁figur ed",
+ "AT CH",
+ "éb en",
+ "é ben",
+ "la cht",
+ "lac ht",
+ "lach t",
+ "l acht",
+ "▁succeed ed",
+ "gr y",
+ "g ry",
+ "▁p ret",
+ "▁pr et",
+ "▁pre t",
+ "▁ pret",
+ "▁S af",
+ "▁Sa f",
+ "▁\" );",
+ "▁\") ;",
+ "▁ \");",
+ "e h",
+ "▁offic iel",
+ "▁offici el",
+ "краї н",
+ "wi nd",
+ "win d",
+ "w ind",
+ "▁sc atter",
+ "▁F ox",
+ "▁Fo x",
+ "ic ious",
+ "ici ous",
+ "icio us",
+ "i cious",
+ "Man y",
+ "Ma ny",
+ "M any",
+ "up er",
+ "u per",
+ "▁Con vert",
+ "▁ Convert",
+ "st erd",
+ "ste rd",
+ "ster d",
+ "▁St ein",
+ "▁Ste in",
+ "▁О т",
+ "}^ {(",
+ "}^{ (",
+ "} ^{(",
+ "bet ween",
+ "hi re",
+ "h ire",
+ "▁on Create",
+ "▁ onCreate",
+ "; ",
+ "b ably",
+ "S Y",
+ "mo t",
+ "m ot",
+ "▁D ire",
+ "▁Di re",
+ "▁Dir e",
+ "itect ure",
+ "то й",
+ "▁co ordinate",
+ "▁coordin ate",
+ "▁coord inate",
+ "▁ coordinate",
+ "(\" #",
+ "▁s üd",
+ "O B",
+ "▁m orte",
+ "▁mor te",
+ "▁mort e",
+ "▁we ather",
+ "▁h ely",
+ "▁he ly",
+ "▁hel y",
+ "▁ hely",
+ "▁priv ile",
+ "RE LEASE",
+ "at el",
+ "ate l",
+ "a tel",
+ "▁recogn ized",
+ "▁recognize d",
+ "▁Th ough",
+ "сси й",
+ "mem ory",
+ "▁comp ilation",
+ "bit s",
+ "bi ts",
+ "b its",
+ "▁w ed",
+ "▁we d",
+ "▁ wed",
+ "}} _{",
+ "}}_ {",
+ "} }_{",
+ "▁G UI",
+ "п ня",
+ "▁sou thern",
+ "▁south ern",
+ "▁h ay",
+ "▁ha y",
+ "ov ić",
+ "ovi ć",
+ "o vić",
+ "la uf",
+ "lau f",
+ "l auf",
+ "▁E L",
+ "▁ EL",
+ "▁F ull",
+ "▁Fu ll",
+ "▁Ful l",
+ "▁ Full",
+ "▁Ham burg",
+ "▁Hamb urg",
+ "▁M ittel",
+ "▁Mit tel",
+ "▁Mitte l",
+ "▁Mitt el",
+ "D U",
+ "appro x",
+ "H S",
+ "▁про це",
+ "▁mag azine",
+ "▁M ig",
+ "▁Mi g",
+ "▁click ing",
+ "en tr",
+ "ent r",
+ "▁au tre",
+ "▁aut re",
+ "▁ autre",
+ "▁t é",
+ "▁ té",
+ "▁h á",
+ "▁ há",
+ "ст ы",
+ "с ты",
+ "▁M A",
+ "▁ MA",
+ "ap py",
+ "app y",
+ "a ppy",
+ "st ví",
+ "▁se lon",
+ "▁sel on",
+ "▁g ek",
+ "▁ge k",
+ "▁S l",
+ "▁ Sl",
+ "fr astr",
+ "fra str",
+ "Li b",
+ "L ib",
+ "▁Д у",
+ "▁f acing",
+ "▁fa cing",
+ "▁fac ing",
+ "▁с тар",
+ "▁ст ар",
+ "▁ста р",
+ "▁D utch",
+ "at ar",
+ "ata r",
+ "a tar",
+ "▁ke eps",
+ "▁keep s",
+ "▁Pat rick",
+ "▁Patri ck",
+ "il io",
+ "ili o",
+ "i lio",
+ "▁v ig",
+ "▁vi g",
+ "тв а",
+ "т ва",
+ "▁Feder al",
+ "▁Fed eral",
+ "▁par agraph",
+ "▁para graph",
+ "▁ paragraph",
+ "▁inter action",
+ "▁inte raction",
+ "▁interact ion",
+ "▁occ as",
+ "▁oc cas",
+ "▁I ran",
+ "▁Ir an",
+ "▁Ira n",
+ "▁machine s",
+ "▁mach ines",
+ "(( )",
+ "( ()",
+ "ur ies",
+ "uri es",
+ "u ries",
+ "▁ро ди",
+ "▁род и",
+ "▁ роди",
+ "▁а мерикан",
+ "up p",
+ "u pp",
+ "▁i ce",
+ "▁ic e",
+ "▁ ice",
+ "▁S ay",
+ "▁Sa y",
+ "▁s ail",
+ "▁sa il",
+ "▁B egin",
+ "▁Be gin",
+ "▁Beg in",
+ "▁ Begin",
+ "fi co",
+ "fic o",
+ "f ico",
+ "og a",
+ "o ga",
+ "▁d esar",
+ "▁des ar",
+ "▁d v",
+ "▁ра ди",
+ "oh en",
+ "o hen",
+ "er ei",
+ "ere i",
+ "e rei",
+ "án ak",
+ "á nak",
+ "▁d aar",
+ "▁da ar",
+ "if iers",
+ "ifier s",
+ "ifi ers",
+ "ifie rs",
+ "▁th ee",
+ "▁the e",
+ "▁by la",
+ "▁byl a",
+ "ва ла",
+ "вал а",
+ "в ала",
+ "an dro",
+ "and ro",
+ "andr o",
+ "▁м оло",
+ "▁мо ло",
+ "▁tot ally",
+ "▁total ly",
+ "io m",
+ "i om",
+ "▁a er",
+ "ns ylvan",
+ "▁cor ps",
+ "▁tre ated",
+ "▁treat ed",
+ "▁com une",
+ "▁comun e",
+ "M ich",
+ "vo ice",
+ "pg f",
+ "▁a nx",
+ "▁an x",
+ "▁Phil ip",
+ "▁Phili p",
+ "▁e k",
+ "▁ ek",
+ "▁Men schen",
+ "▁Mens chen",
+ "▁d ere",
+ "▁de re",
+ "▁der e",
+ "▁per met",
+ "▁perm et",
+ "Ma il",
+ "M ail",
+ "▁V é",
+ "en ted",
+ "ent ed",
+ "ente d",
+ "▁b unch",
+ "▁P iet",
+ "▁Pi et",
+ "▁Pie t",
+ "att ach",
+ "atta ch",
+ "▁p orte",
+ "▁por te",
+ "▁port e",
+ "▁ porte",
+ "да т",
+ "д ат",
+ "▁Brit ain",
+ "Enc oding",
+ "▁` <",
+ "Sp ace",
+ "S pace",
+ "▁r ap",
+ "▁ra p",
+ "▁ rap",
+ "▁pop ul",
+ "fl oor",
+ "f loor",
+ "spec ific",
+ "cle an",
+ "c lean",
+ "▁con qu",
+ "f b",
+ "▁introdu ce",
+ "▁Ent ity",
+ "▁ Entity",
+ "▁er folg",
+ "▁erf olg",
+ "at ol",
+ "ato l",
+ "a tol",
+ "ient os",
+ "iento s",
+ "ки педи",
+ "▁U t",
+ "▁б ри",
+ "▁ бри",
+ "ed uler",
+ "edu ler",
+ "edule r",
+ "▁conc entr",
+ "▁concent r",
+ "▁c her",
+ "▁ch er",
+ "▁che r",
+ "▁ cher",
+ "▁up grade",
+ "▁upgrad e",
+ "▁p ictures",
+ "▁picture s",
+ "▁Famil ie",
+ "M us",
+ "Lo ok",
+ "L ook",
+ "▁e ran",
+ "▁er an",
+ "▁era n",
+ "▁g ram",
+ "▁gr am",
+ "▁gra m",
+ "▁ gram",
+ "▁W o",
+ "np m",
+ "n pm",
+ "▁Sal v",
+ "▁Sa lv",
+ "▁c d",
+ "▁ cd",
+ "▁В ы",
+ "wa hl",
+ "w ahl",
+ "tr ain",
+ "tra in",
+ "t rain",
+ "ch em",
+ "che m",
+ "c hem",
+ "▁P il",
+ "▁Pi l",
+ "▁Con nect",
+ "▁ Connect",
+ "č e",
+ "▁h ast",
+ "▁ha st",
+ "▁has t",
+ "▁Mult i",
+ "▁Mul ti",
+ "▁ Multi",
+ "at ta",
+ "att a",
+ "a tta",
+ "▁S ound",
+ "▁So und",
+ "▁Sou nd",
+ "▁ Sound",
+ "sol ute",
+ "▁qu ote",
+ "▁quot e",
+ "▁ quote",
+ "▁o bst",
+ "▁ob st",
+ "▁obs t",
+ "cc iones",
+ "ccion es",
+ "c ciones",
+ "ib ly",
+ "▁b rand",
+ "▁br and",
+ "▁bra nd",
+ "▁bran d",
+ "▁ brand",
+ "▁convers ation",
+ "▁to utes",
+ "▁tout es",
+ "▁tou tes",
+ "▁toute s",
+ "▁R ub",
+ "▁Ru b",
+ "ie nia",
+ "ien ia",
+ "i enia",
+ "ir it",
+ "iri t",
+ "i rit",
+ "▁А нд",
+ "▁Ан д",
+ "edu led",
+ "edule d",
+ "▁T otal",
+ "▁To tal",
+ "▁Tot al",
+ "▁ Total",
+ "Di g",
+ "D ig",
+ "er em",
+ "ere m",
+ "e rem",
+ "▁s ki",
+ "▁sk i",
+ "▁ ski",
+ "De st",
+ "Des t",
+ "D est",
+ "Y Y",
+ "е ди",
+ "al y",
+ "a ly",
+ "▁back end",
+ "▁ backend",
+ "ul us",
+ "ulu s",
+ "u lus",
+ "▁feature d",
+ "▁person n",
+ "▁pers onn",
+ "▁sc hon",
+ "▁sch on",
+ "tr ace",
+ "tra ce",
+ "t race",
+ "▁I DE",
+ "▁ID E",
+ "▁ IDE",
+ "á j",
+ "▁anim als",
+ "▁animal s",
+ "▁ani mals",
+ "▁s now",
+ "▁sn ow",
+ "uv e",
+ "u ve",
+ "uer to",
+ "▁d rew",
+ "▁dr ew",
+ "▁dre w",
+ "▁Ye ah",
+ "▁S v",
+ "\\, \\",
+ "\\ ,\\",
+ "▁S erie",
+ "▁Se rie",
+ "▁Ser ie",
+ "▁second o",
+ "▁sec ondo",
+ "▁Leb ens",
+ "▁Leben s",
+ "▁acc ord",
+ "▁ac cord",
+ "▁C et",
+ "▁Ce t",
+ "er ade",
+ "era de",
+ "e rade",
+ "▁desp ite",
+ "▁C arlo",
+ "▁Car lo",
+ "▁Carl o",
+ "▁z ewnętrz",
+ "▁l ista",
+ "▁li sta",
+ "▁list a",
+ "▁ lista",
+ "ni co",
+ "nic o",
+ "n ico",
+ "▁Corpor ation",
+ "vs pace",
+ "v space",
+ "▁вой ны",
+ "▁st ands",
+ "▁stand s",
+ "▁stan ds",
+ "▁wor se",
+ "▁sim ult",
+ "▁si mult",
+ "▁pract ical",
+ "CO L",
+ "C OL",
+ "ch anged",
+ "change d",
+ "chan ged",
+ "▁Исто рия",
+ "б ри",
+ "in do",
+ "ind o",
+ "▁Lew is",
+ "▁pattern s",
+ "if ica",
+ "ific a",
+ "ifi ca",
+ "i fica",
+ "▁s mart",
+ "▁sm art",
+ "▁concern ed",
+ "ți i",
+ "ț ii",
+ "▁H ello",
+ "▁Hel lo",
+ "▁Hell o",
+ "▁ Hello",
+ "re ll",
+ "rel l",
+ "r ell",
+ "▁L ex",
+ "▁Le x",
+ "▁в то",
+ "▁cond itional",
+ "▁condition al",
+ "ot ted",
+ "ott ed",
+ "otte d",
+ "▁sh oot",
+ "▁sho ot",
+ "▁W ed",
+ "▁We d",
+ "▁мар та",
+ "au d",
+ "a ud",
+ "▁an te",
+ "▁ant e",
+ "▁ ante",
+ "ien tras",
+ "ient ras",
+ "▁p apers",
+ "▁pa pers",
+ "▁pap ers",
+ "▁paper s",
+ "▁port ug",
+ "▁Man agement",
+ "▁ Management",
+ "▁exerc ise",
+ "▁Begr iff",
+ "com mit",
+ "comm it",
+ "▁render ing",
+ "▁rend ering",
+ "▁rende ring",
+ "▁c zas",
+ "▁cz as",
+ "▁ czas",
+ "Dr op",
+ "D rop",
+ "er g",
+ "e rg",
+ "▁m ul",
+ "▁mu l",
+ "▁ mul",
+ "▁T an",
+ "▁Ta n",
+ "ie ro",
+ "ier o",
+ "i ero",
+ "▁loc ale",
+ "▁local e",
+ "▁ locale",
+ "▁in aug",
+ "du mp",
+ "d ump",
+ "ци й",
+ "▁symbol s",
+ "in ta",
+ "int a",
+ "▁aw arded",
+ "▁award ed",
+ "▁s ust",
+ "▁su st",
+ "▁sus t",
+ "▁S end",
+ "▁Se nd",
+ "▁Sen d",
+ "▁ Send",
+ "ї в",
+ "Re st",
+ "Res t",
+ "R est",
+ "zt en",
+ "zte n",
+ "z ten",
+ "ли м",
+ "л им",
+ "ri val",
+ "riv al",
+ "r ival",
+ "PO RT",
+ "P ORT",
+ "öl ker",
+ "im ately",
+ "imate ly",
+ "imat ely",
+ "ig te",
+ "igt e",
+ "ч ных",
+ "▁ter ra",
+ "▁ terra",
+ "ög lich",
+ "▁H om",
+ "▁Ho m",
+ "▁ Hom",
+ "▁h ex",
+ "▁he x",
+ "▁ hex",
+ "do ne",
+ "don e",
+ "d one",
+ "am ps",
+ "amp s",
+ "▁c et",
+ "▁ce t",
+ "PR E",
+ "P RE",
+ "ös t",
+ "ö st",
+ "▁fem me",
+ "Se lection",
+ "Select ion",
+ "▁z aw",
+ "▁za w",
+ "sp r",
+ "s pr",
+ "▁horse s",
+ "▁hors es",
+ "▁s nap",
+ "▁sn ap",
+ "Text Box",
+ "▁E clipse",
+ "ul le",
+ "ull e",
+ "u lle",
+ "ow ym",
+ "owy m",
+ "▁c omer",
+ "▁com er",
+ "▁co mer",
+ "▁come r",
+ "ne cess",
+ "co ok",
+ "c ook",
+ "en ger",
+ "eng er",
+ "-- >",
+ "- ->",
+ "▁p ří",
+ "▁př í",
+ "pan das",
+ "p andas",
+ "▁P lus",
+ "▁Pl us",
+ "▁ Plus",
+ "yl l",
+ "y ll",
+ "▁t error",
+ "▁te rror",
+ "▁ter ror",
+ "▁c rim",
+ "▁cr im",
+ "▁cri m",
+ "▁z ak",
+ "▁za k",
+ "▁ zak",
+ "iss ue",
+ "pa nel",
+ "pan el",
+ "p anel",
+ "sv g",
+ "▁re b",
+ "▁r eb",
+ "▁ reb",
+ "Custom er",
+ "sw itch",
+ "об ра",
+ "о бра",
+ "▁Champion ships",
+ "▁Championship s",
+ "▁Champions hips",
+ "cl o",
+ "c lo",
+ "at te",
+ "att e",
+ "a tte",
+ "▁any more",
+ "▁excell ent",
+ "▁opport unity",
+ "▁opportun ity",
+ "▁B ahn",
+ "▁Ba hn",
+ "▁Bah n",
+ "чи н",
+ "ч ин",
+ "et ing",
+ "eti ng",
+ "e ting",
+ "▁inc ident",
+ "to m",
+ "t om",
+ "Per s",
+ "Pe rs",
+ "P ers",
+ "bb en",
+ "bbe n",
+ "b ben",
+ "ствен ной",
+ "ственно й",
+ "и х",
+ "ro uter",
+ "route r",
+ "rout er",
+ "rou ter",
+ "r outer",
+ "▁new ly",
+ "▁sil ence",
+ "▁G NU",
+ "▁R ails",
+ "▁Ra ils",
+ "▁Rail s",
+ "▁A mb",
+ "▁Am b",
+ "▁Q ual",
+ "▁Qu al",
+ "▁ Qual",
+ "▁Sch aus",
+ "▁Sc haus",
+ "▁S ohn",
+ "▁So hn",
+ "▁A LL",
+ "▁AL L",
+ "▁ ALL",
+ "▁ro yal",
+ "▁roy al",
+ "▁ £",
+ "wi ę",
+ "w ię",
+ "▁ent fer",
+ "▁Re move",
+ "▁Rem ove",
+ "▁ Remove",
+ "▁hard ly",
+ "Us ing",
+ "U sing",
+ "ло г",
+ "▁I ch",
+ "▁d erni",
+ "▁der ni",
+ "▁Con nection",
+ "▁Connect ion",
+ "▁ Connection",
+ "fi sh",
+ "f ish",
+ "▁In form",
+ "▁Inf orm",
+ "▁Info rm",
+ "▁E ner",
+ "▁En er",
+ "ro it",
+ "r oit",
+ "B bb",
+ "View Model",
+ "V ideo",
+ "il ey",
+ "ile y",
+ "i ley",
+ "▁м ного",
+ "▁мно го",
+ "▁G em",
+ "▁Ge m",
+ "▁comp reh",
+ "▁compr eh",
+ "en umerate",
+ "ul as",
+ "ula s",
+ "u las",
+ "▁B ah",
+ "▁Ba h",
+ "▁Y et",
+ "▁Ye t",
+ "B R",
+ "х ра",
+ "▁count y",
+ "▁coun ty",
+ "▁H ist",
+ "▁His t",
+ "▁Hi st",
+ "▁Г у",
+ "▁ Ј",
+ "▁m ari",
+ "▁ma ri",
+ "▁mar i",
+ "▁C lar",
+ "▁Cl ar",
+ "▁Cla r",
+ "Bit map",
+ "B itmap",
+ "▁C z",
+ "▁m ån",
+ "▁må n",
+ "▁m ere",
+ "▁me re",
+ "▁mer e",
+ "▁mus ique",
+ "al so",
+ "als o",
+ "date s",
+ "da tes",
+ "dat es",
+ "d ates",
+ "▁D VD",
+ "▁g ol",
+ "▁go l",
+ "fo ny",
+ "fon y",
+ "f ony",
+ "▁Cast le",
+ "▁фа ми",
+ "▁arr ang",
+ "▁Bus iness",
+ "▁K az",
+ "▁Ka z",
+ "▁o sc",
+ "▁os c",
+ "▁ osc",
+ "▁se colo",
+ "▁sec olo",
+ "▁aff ected",
+ "▁affect ed",
+ "▁He alth",
+ "re b",
+ "r eb",
+ "ed itor",
+ "edit or",
+ "edi tor",
+ "▁own ed",
+ "▁ow ned",
+ "▁ owned",
+ "t l",
+ "▁v í",
+ "▁ ví",
+ "чни х",
+ "ч них",
+ "к ви",
+ "▁dev ient",
+ "▁devi ent",
+ "M utable",
+ "▁t egen",
+ "▁te gen",
+ "Reg ister",
+ "є ю",
+ "▁car acter",
+ "лл и",
+ "л ли",
+ "▁n ouvelle",
+ "▁nouve lle",
+ "ok o",
+ "o ko",
+ "icht et",
+ "ichte t",
+ "▁e vol",
+ "▁ev ol",
+ "▁H ab",
+ "▁Ha b",
+ "▁mil itar",
+ "▁milit ar",
+ "▁p uts",
+ "▁put s",
+ "▁pu ts",
+ "end if",
+ "endi f",
+ "▁Dav is",
+ "▁Da vis",
+ "▁Scot land",
+ "reg ular",
+ "▁Con text",
+ "▁Cont ext",
+ "▁ Context",
+ "is piel",
+ "isp iel",
+ "i spiel",
+ "▁G allery",
+ "▁Gall ery",
+ "\", \r",
+ "\" ,\r",
+ "▁a rc",
+ "▁ar c",
+ "▁ arc",
+ "▁IN FO",
+ "▁ INFO",
+ "▁c od",
+ "▁co d",
+ "▁ cod",
+ "ді в",
+ "д ів",
+ "▁v archar",
+ "▁var char",
+ "▁ varchar",
+ "▁tou jours",
+ "at ial",
+ "ati al",
+ "atia l",
+ "▁h anno",
+ "▁han no",
+ "▁проф ес",
+ "▁launch ed",
+ "▁насе лення",
+ "▁t on",
+ "▁to n",
+ "▁ ton",
+ "au sed",
+ "ause d",
+ "aus ed",
+ "a used",
+ "▁і з",
+ "▁t ö",
+ "▁P ur",
+ "▁Pu r",
+ "▁o lymp",
+ "AR N",
+ "ó m",
+ "▁a ugust",
+ "▁aug ust",
+ "▁f urn",
+ "▁fur n",
+ "▁fu rn",
+ "▁Col omb",
+ "▁Sta ats",
+ "▁Staat s",
+ "ho ra",
+ "hor a",
+ "h ora",
+ "▁м ор",
+ "▁мо р",
+ "▁ мор",
+ "can vas",
+ "▁gr ave",
+ "▁gra ve",
+ "▁grav e",
+ "▁com position",
+ "▁comp osition",
+ "▁compos ition",
+ "ac ja",
+ "▁которы е",
+ "▁ч о",
+ "▁ чо",
+ "Gener al",
+ "Gen eral",
+ "ан і",
+ "а ні",
+ "▁Joh annes",
+ "▁Johann es",
+ "▁Johan nes",
+ "ка р",
+ "к ар",
+ "▁ча ст",
+ "▁час т",
+ "▁Ва си",
+ "ss h",
+ "s sh",
+ "▁repla cing",
+ "▁< >",
+ "▁ <>",
+ "ці в",
+ "ц ів",
+ "la us",
+ "lau s",
+ "l aus",
+ "en y",
+ "e ny",
+ "äh l",
+ "ä hl",
+ "▁m arg",
+ "▁ma rg",
+ "▁mar g",
+ "ci ence",
+ "c ience",
+ "▁inst ruction",
+ "▁instru ction",
+ "▁instruct ion",
+ "▁ко ји",
+ "Ed itor",
+ "Edit or",
+ "▁fund amental",
+ "mu nd",
+ "mun d",
+ "m und",
+ "▁exception s",
+ "▁except ions",
+ "▁p late",
+ "▁pl ate",
+ "▁pla te",
+ "▁plat e",
+ "▁ plate",
+ "▁L is",
+ "▁Li s",
+ "▁d eren",
+ "▁de ren",
+ "▁der en",
+ "▁dere n",
+ "pr ep",
+ "pre p",
+ "p rep",
+ "▁janu ari",
+ "Sc ope",
+ "S cope",
+ "yn ast",
+ "yna st",
+ "r v",
+ "or sz",
+ "ors z",
+ "▁T ony",
+ "▁To ny",
+ "▁Ton y",
+ "▁д і",
+ "▁ ді",
+ "▁о дна",
+ "▁од на",
+ "▁s ab",
+ "▁sa b",
+ "ot i",
+ "o ti",
+ "je l",
+ "j el",
+ "▁gener ator",
+ "▁ generator",
+ "▁' .",
+ "▁ '.",
+ "▁sh arp",
+ "▁ sharp",
+ "▁то лько",
+ "▁account s",
+ "▁ž e",
+ "▁ že",
+ "▁for am",
+ "▁fo ram",
+ "▁g ouvern",
+ "TI ME",
+ "T IME",
+ "▁Sov iet",
+ "▁G é",
+ "▁ex ped",
+ "▁exp ed",
+ "▁ord inary",
+ "▁ordin ary",
+ "▁ ordinary",
+ "▁Con serv",
+ "▁Cons erv",
+ "▁Conse rv",
+ "▁com pla",
+ "▁comp la",
+ "▁compl a",
+ "te i",
+ "t ei",
+ "▁cap tain",
+ "▁capt ain",
+ "▁Sam uel",
+ "▁D ark",
+ "▁Dar k",
+ "▁в ін",
+ "▁ві н",
+ "▁de light",
+ "▁del ight",
+ "re cht",
+ "rec ht",
+ "di a",
+ "d ia",
+ "ess es",
+ "esse s",
+ "ul p",
+ "u lp",
+ "ш ки",
+ "be z",
+ "b ez",
+ "▁det ection",
+ "▁detect ion",
+ "▁cook ie",
+ "▁ cookie",
+ "an try",
+ "ant ry",
+ "Mult i",
+ "ob a",
+ "o ba",
+ "▁j oy",
+ "▁jo y",
+ "▁safe ty",
+ "▁saf ety",
+ "| ^",
+ "po d",
+ "p od",
+ "ad ém",
+ "▁Ch ron",
+ "▁Chr on",
+ "▁D jango",
+ "▁Dj ango",
+ "▁ehem al",
+ "k h",
+ "è le",
+ "▁p oc",
+ "▁po c",
+ "B ottom",
+ "la unch",
+ "ne m",
+ "n em",
+ "▁G ROUP",
+ "▁ GROUP",
+ "ní ho",
+ "▁G ib",
+ "▁Gi b",
+ "sd k",
+ "s dk",
+ "B E",
+ "▁G ene",
+ "▁Ge ne",
+ "▁Gen e",
+ "▁St aff",
+ "▁Sta ff",
+ "▁subsequ ent",
+ "ic ion",
+ "ici on",
+ "icio n",
+ "i cion",
+ "▁vict ory",
+ "▁c anon",
+ "▁can on",
+ "▁ca non",
+ "iz ar",
+ "iza r",
+ "i zar",
+ "iz ia",
+ "izi a",
+ "i zia",
+ "▁m ate",
+ "▁ma te",
+ "▁mat e",
+ "▁ mate",
+ "▁lay ers",
+ "▁layer s",
+ "▁ layers",
+ "su do",
+ "s udo",
+ "sch ule",
+ "per iment",
+ "ül et",
+ "ü let",
+ "AR CHAR",
+ "▁тер рито",
+ "▁me asures",
+ "▁measure s",
+ "▁meas ures",
+ "▁z ou",
+ "▁zo u",
+ "ops is",
+ "на ми",
+ "tb ody",
+ "t body",
+ "▁e se",
+ "▁es e",
+ "▁ ese",
+ "ster dam",
+ "sterd am",
+ "▁ph oto",
+ "▁phot o",
+ "▁ photo",
+ "ynchron ous",
+ "set minus",
+ "▁lo ads",
+ "▁load s",
+ "▁ loads",
+ "▁ple asure",
+ "▁me ille",
+ "}\\ ,",
+ "} \\,",
+ "qu al",
+ "qua l",
+ "q ual",
+ "▁fav our",
+ "▁r od",
+ "▁ro d",
+ "▁ rod",
+ "De r",
+ "D er",
+ "ра бо",
+ "раб о",
+ "▁pr essed",
+ "▁pres sed",
+ "▁press ed",
+ "▁ pressed",
+ "r ę",
+ "ie ving",
+ "iev ing",
+ "mate rial",
+ "m aterial",
+ "vi rt",
+ "vir t",
+ "v irt",
+ "▁cap able",
+ "с ло",
+ "us hed",
+ "ush ed",
+ "▁по бе",
+ "uset ts",
+ "un signed",
+ "uns igned",
+ "k ów",
+ "▁o v",
+ "▁ ov",
+ "eg eben",
+ "ege ben",
+ "e geben",
+ "▁app lying",
+ "▁apply ing",
+ "▁gal ax",
+ "▁ga lax",
+ "▁O racle",
+ "▁Or acle",
+ "▁Stutt gart",
+ "In fl",
+ "Inf l",
+ "ach usetts",
+ "▁de el",
+ "li re",
+ "l ire",
+ "▁stat unit",
+ "▁Polit iker",
+ "▁Politik er",
+ "▁beaut y",
+ ") >",
+ "▁Columb ia",
+ "▁zewnętrz ne",
+ "▁про гра",
+ "▁пр огра",
+ "▁d x",
+ "▁ dx",
+ "ck now",
+ "c know",
+ "▁d ub",
+ "▁du b",
+ "un ächst",
+ "find ViewById",
+ "▁M and",
+ "▁Man d",
+ "▁Ma nd",
+ "ál l",
+ "á ll",
+ "na ire",
+ "n aire",
+ "▁dest in",
+ "is ting",
+ "ist ing",
+ "isti ng",
+ "ag gi",
+ "agg i",
+ "a ggi",
+ "ch art",
+ "char t",
+ "cha rt",
+ "c hart",
+ "▁just ice",
+ "Sim ple",
+ "▁un fortunately",
+ "і р",
+ "▁qu esta",
+ "▁que sta",
+ "▁quest a",
+ "▁ questa",
+ "▁Govern or",
+ "я в",
+ "▁mús ica",
+ "▁equ ipo",
+ "▁equip o",
+ "▁D est",
+ "▁De st",
+ "▁Des t",
+ "▁ Dest",
+ "el ect",
+ "ele ct",
+ "e lect",
+ "Stack Trace",
+ "зо м",
+ "з ом",
+ "pr oc",
+ "pro c",
+ "p roc",
+ "ent in",
+ "enti n",
+ "ad ora",
+ "ado ra",
+ "ador a",
+ "▁Л ю",
+ "▁register ed",
+ "H L",
+ "face book",
+ "fac ebook",
+ "▁st oring",
+ "▁stor ing",
+ "▁sto ring",
+ "▁Current ly",
+ "▁qu adr",
+ "▁quad r",
+ "Stand ard",
+ "tr im",
+ "tri m",
+ "t rim",
+ "ear s",
+ "ea rs",
+ "e ars",
+ "se nder",
+ "sen der",
+ "send er",
+ "s ender",
+ "▁V as",
+ "▁Va s",
+ "▁ed ific",
+ "▁B ür",
+ "▁Bü r",
+ "▁C ountry",
+ "▁Count ry",
+ "▁Coun try",
+ "▁ Country",
+ "th a",
+ "t ha",
+ "; \"",
+ "no r",
+ "n or",
+ "▁Do ctor",
+ "▁Doc tor",
+ "ru ment",
+ "rum ent",
+ "r ument",
+ "Ge n",
+ "G en",
+ "▁B uen",
+ "▁Bu en",
+ "ra de",
+ "rad e",
+ "r ade",
+ "▁k un",
+ "n avigation",
+ "Pa y",
+ "P ay",
+ "▁capt ured",
+ "▁capture d",
+ "▁st ruck",
+ "▁str uck",
+ "▁stru ck",
+ "ven ir",
+ "ém ent",
+ "é ment",
+ "▁T ree",
+ "▁Tr ee",
+ "▁Tre e",
+ "▁ Tree",
+ "▁x x",
+ "▁ xx",
+ "▁n arr",
+ "▁na rr",
+ "▁nar r",
+ "ль ного",
+ "льно го",
+ "▁inst alling",
+ "▁install ing",
+ "▁instal ling",
+ "▁associ ation",
+ "▁insert ed",
+ "▁inser ted",
+ "er ner",
+ "ern er",
+ "erne r",
+ "valid ate",
+ "▁l ut",
+ "▁lu t",
+ "▁g lo",
+ "▁gl o",
+ "▁techn ology",
+ "▁P lace",
+ "▁Pl ace",
+ "▁Pla ce",
+ "▁ Place",
+ "$ ?",
+ "▁z v",
+ "с лі",
+ "E P",
+ "▁at mos",
+ "ug o",
+ "u go",
+ "ér t",
+ "é rt",
+ "▁W erk",
+ "▁Wer k",
+ "▁% }",
+ "te le",
+ "tel e",
+ "t ele",
+ "Sp an",
+ "S pan",
+ "▁R aj",
+ "▁Ra j",
+ "▁Person en",
+ "▁Pers onen",
+ "▁C ant",
+ "▁Can t",
+ "▁Ca nt",
+ "▁com bat",
+ "▁comb at",
+ "▁observ ation",
+ "▁obs ervation",
+ "param eter",
+ "para meter",
+ "▁agre ed",
+ "▁agree d",
+ "▁agr eed",
+ "pu r",
+ "p ur",
+ "▁sh adow",
+ "▁ shadow",
+ "▁g ł",
+ "Key s",
+ "Ke ys",
+ "Cre d",
+ "Cr ed",
+ "C red",
+ "ou ri",
+ "our i",
+ "o uri",
+ "▁p ale",
+ "▁pa le",
+ "▁pal e",
+ "ic ké",
+ "ick é",
+ "▁We ek",
+ "▁ Week",
+ "▁Pr ime",
+ "▁Pri me",
+ "▁Prim e",
+ "> .",
+ "Init ial",
+ "▁о дин",
+ "▁од ин",
+ "▁' ',",
+ "▁'' ,",
+ "▁у чи",
+ "▁In v",
+ "▁ Inv",
+ "col a",
+ "co la",
+ "c ola",
+ "ci ble",
+ "c ible",
+ "▁The atre",
+ "▁b em",
+ "▁be m",
+ "▁satisf y",
+ "x l",
+ "▁ра зви",
+ "▁раз ви",
+ "▁p ixel",
+ "▁pix el",
+ "lá n",
+ "l án",
+ "▁tw ee",
+ "▁twe e",
+ "ço n",
+ "ç on",
+ "не ния",
+ "▁A T",
+ "▁ AT",
+ "èg e",
+ "è ge",
+ "▁M ort",
+ "▁Mor t",
+ "▁Mo rt",
+ "▁my sq",
+ "▁ mysq",
+ "ft en",
+ "fte n",
+ "f ten",
+ "▁п ес",
+ "▁пе с",
+ "ém a",
+ "é ma",
+ "▁Service s",
+ "▁Serv ices",
+ "▁ Services",
+ "custom er",
+ "▁A WS",
+ "ъ т",
+ "▁A ch",
+ "▁Ac h",
+ "% .",
+ "▁clar ify",
+ "▁уни версите",
+ "xt ure",
+ "um i",
+ "u mi",
+ "▁s å",
+ "▁P el",
+ "▁Pe l",
+ "se rial",
+ "ser ial",
+ "UR I",
+ "U RI",
+ "▁r g",
+ "▁ rg",
+ "▁со ста",
+ "ch estra",
+ "che stra",
+ "ches tra",
+ "]. [",
+ "] .[",
+ "we n",
+ "w en",
+ "▁Lond res",
+ "▁an ys",
+ "▁any s",
+ "Data Source",
+ "▁рай оне",
+ "▁райо не",
+ "▁район е",
+ "▁re in",
+ "▁r ein",
+ "▁rei n",
+ "▁met adata",
+ "▁meta data",
+ "▁ metadata",
+ "um ble",
+ "umb le",
+ "ar beit",
+ "arbe it",
+ "hn er",
+ "h ner",
+ "ci ent",
+ "cie nt",
+ "c ient",
+ "▁n orte",
+ "▁nor te",
+ "▁о на",
+ "▁он а",
+ "▁ она",
+ "▁sc ored",
+ "▁score d",
+ "▁r ay",
+ "▁ra y",
+ "▁ ray",
+ "▁фев ра",
+ "▁фе вра",
+ "▁pro tagon",
+ "▁prot agon",
+ "▁S ac",
+ "▁Sa c",
+ "▁comm only",
+ "▁common ly",
+ "Linear Layout",
+ "▁app lic",
+ "▁ма я",
+ "З а",
+ "▁access ible",
+ "ie wer",
+ "iew er",
+ "fl ag",
+ "f lag",
+ "▁R ück",
+ "ä u",
+ "▁e rano",
+ "▁er ano",
+ "▁era no",
+ "▁eran o",
+ "▁auth entic",
+ "▁ authentic",
+ "▁R y",
+ "▁не ско",
+ "▁emb argo",
+ "▁embar go",
+ "▁d ry",
+ "▁dr y",
+ "▁reason able",
+ "▁Mod ule",
+ "▁ Module",
+ "▁acc eler",
+ "▁inter view",
+ "▁C reek",
+ "▁Cre ek",
+ "▁al pha",
+ "▁ alpha",
+ "se rie",
+ "ser ie",
+ "s erie",
+ "Th ey",
+ "The y",
+ "ю чи",
+ "▁H of",
+ "▁Ho f",
+ "▁C R",
+ "▁ CR",
+ "mod al",
+ "mo dal",
+ "▁sequence s",
+ "▁sequ ences",
+ "cl osed",
+ "close d",
+ "clos ed",
+ "clo sed",
+ ")} $",
+ ") }$",
+ "▁Ч ер",
+ "▁Че р",
+ "▁OR DER",
+ "▁ ORDER",
+ "Right arrow",
+ "R ightarrow",
+ "haus en",
+ "}} _",
+ "} }_",
+ "▁tamb é",
+ "▁magn etic",
+ "▁magnet ic",
+ "▁Mc C",
+ "▁win ning",
+ "under line",
+ "▁Bill board",
+ "na io",
+ "▁l iqu",
+ "▁li qu",
+ "▁ liqu",
+ "display style",
+ "time out",
+ "▁consider able",
+ "▁e ben",
+ "▁eb en",
+ "▁ eben",
+ "iffer ent",
+ "iffe rent",
+ "an u",
+ "a nu",
+ "▁С ов",
+ "▁Со в",
+ "[ (",
+ "▁: -)",
+ "▁:- )",
+ "le itung",
+ "form ed",
+ "for med",
+ "▁Man ager",
+ "▁ Manager",
+ "▁on click",
+ "T Y",
+ "та х",
+ "C V",
+ "run time",
+ "r untime",
+ "po que",
+ "▁Л о",
+ "Tem p",
+ "Te mp",
+ "T emp",
+ "lo aded",
+ "load ed",
+ "▁! ==",
+ "▁!= =",
+ "▁s inger",
+ "▁sing er",
+ "▁sin ger",
+ "fa r",
+ "f ar",
+ "▁Com ple",
+ "▁Comp le",
+ "▁ Comple",
+ "▁Ö sterreich",
+ "Pol icy",
+ "▁work er",
+ "▁wor ker",
+ "▁ worker",
+ "W rapper",
+ "ob i",
+ "o bi",
+ "▁discuss ed",
+ "▁b uy",
+ "▁bu y",
+ "▁янва ря",
+ "▁D in",
+ "▁Di n",
+ "▁g ed",
+ "▁ge d",
+ "▁ ged",
+ "ско ј",
+ "E urope",
+ "▁t all",
+ "▁tal l",
+ "▁ta ll",
+ "ho s",
+ "h os",
+ "ла го",
+ "▁B lock",
+ "▁Bl ock",
+ "▁Blo ck",
+ "▁ Block",
+ "▁ident ified",
+ "List View",
+ "▁attempt ing",
+ "▁typ ical",
+ "ps um",
+ "p sum",
+ "os ter",
+ "ost er",
+ "o ster",
+ "▁ж урна",
+ "P e",
+ "mer ce",
+ "▁un expected",
+ "hu i",
+ "h ui",
+ "let ter",
+ "lett er",
+ "lette r",
+ "l etter",
+ "▁nue vo",
+ "▁а бо",
+ "▁VAL UES",
+ "▁I z",
+ "Fl ags",
+ "Flag s",
+ "▁TR UE",
+ "▁ TRUE",
+ "iz ación",
+ "iza ción",
+ "▁gro wing",
+ "▁grow ing",
+ "es tre",
+ "est re",
+ "estr e",
+ "e stre",
+ "▁p oly",
+ "▁po ly",
+ "▁pol y",
+ "▁ poly",
+ "▁St one",
+ "▁Sto ne",
+ "▁V III",
+ "▁VI II",
+ "▁VII I",
+ "▁local host",
+ "▁ localhost",
+ "äh lt",
+ "ähl t",
+ "▁embed ded",
+ "jd bc",
+ "j dbc",
+ "▁con vention",
+ "▁conv ention",
+ "▁conven tion",
+ "▁convent ion",
+ "▁s cala",
+ "▁sc ala",
+ "▁scal a",
+ "▁ scala",
+ "со к",
+ "с ок",
+ "▁an alog",
+ "▁anal og",
+ "▁\" +",
+ "▁ \"+",
+ "ц ю",
+ "oc c",
+ "o cc",
+ "▁l itt",
+ "▁li tt",
+ "▁lit t",
+ "P N",
+ "▁а ктив",
+ "▁ак тив",
+ "att ributes",
+ "attribute s",
+ "▁F erd",
+ "▁Fe rd",
+ "▁Fer d",
+ "▁az ure",
+ "▁ azure",
+ "ș ti",
+ "ño s",
+ "ñ os",
+ "pi ng",
+ "pin g",
+ "p ing",
+ "▁te acher",
+ "▁teach er",
+ "▁tea cher",
+ "} &",
+ "ip e",
+ "i pe",
+ "▁N ob",
+ "▁No b",
+ "▁и ма",
+ "▁им а",
+ "Bi nd",
+ "B ind",
+ "▁mag ic",
+ "▁Trans port",
+ "▁ Transport",
+ "ix el",
+ "▁comp uted",
+ "▁comput ed",
+ "▁compute d",
+ "ag na",
+ "agn a",
+ "er st",
+ "ers t",
+ "H A",
+ "W ait",
+ "▁author s",
+ "▁auth ors",
+ "▁; )",
+ "cl am",
+ "cla m",
+ "c lam",
+ "▁Pen nsylvan",
+ "▁d rug",
+ "▁dr ug",
+ "▁dru g",
+ "▁v ain",
+ "▁va in",
+ "▁employ ed",
+ "▁individ uals",
+ "▁individual s",
+ "▁an ge",
+ "▁ang e",
+ "▁ ange",
+ "ut at",
+ "uta t",
+ "u tat",
+ "▁$ -",
+ "▁ $-",
+ "cor rect",
+ "corr ect",
+ "▁exper iments",
+ "▁experiment s",
+ "Arg ument",
+ "▁I B",
+ "▁ IB",
+ "▁p ère",
+ "▁B rian",
+ "▁Br ian",
+ "ber ger",
+ "berg er",
+ "Ma c",
+ "M ac",
+ "ia st",
+ "ias t",
+ "i ast",
+ "Per m",
+ "Pe rm",
+ "P erm",
+ "Ca st",
+ "C ast",
+ "▁{ };",
+ "▁{} ;",
+ "▁St udent",
+ "▁Stud ent",
+ "▁Stu dent",
+ "▁ Student",
+ "▁st att",
+ "▁stat t",
+ "▁sta tt",
+ "al gebra",
+ "▁equ als",
+ "▁equal s",
+ "▁eq uals",
+ "▁ equals",
+ "▁pro jet",
+ "▁prés ident",
+ "Activity Thread",
+ "▁ein z",
+ "en ia",
+ "eni a",
+ "e nia",
+ "re z",
+ "r ez",
+ "ess ional",
+ "ession al",
+ "▁авгу ста",
+ "over ride",
+ "ne ws",
+ "new s",
+ "▁pla net",
+ "▁plan et",
+ "▁plane t",
+ "n n",
+ "▁W is",
+ "▁Wi s",
+ "тв ер",
+ "т вер",
+ "▁Val id",
+ "▁ Valid",
+ "▁G ef",
+ "▁Ge f",
+ "гра д",
+ "▁e ig",
+ "an tom",
+ "ant om",
+ "anto m",
+ "▁Me ister",
+ "fl ags",
+ "flag s",
+ "ffic iale",
+ "fficial e",
+ "ша я",
+ "- ,",
+ "at ionen",
+ "ation en",
+ "ati onen",
+ "atio nen",
+ "mo use",
+ "m ouse",
+ "stand ard",
+ "Sing le",
+ "▁b ol",
+ "▁bo l",
+ "▁ bol",
+ "is is",
+ "isi s",
+ "▁f ruit",
+ "▁fr uit",
+ "c ourse",
+ "it ants",
+ "itan ts",
+ "▁é taient",
+ "▁ét aient",
+ "Text Field",
+ "▁ф он",
+ "▁фо н",
+ "▁a ircraft",
+ "▁air craft",
+ "▁I SSN",
+ "▁IS SN",
+ "▁west ern",
+ "▁ western",
+ "▁represent ing",
+ "Es p",
+ "E sp",
+ "▁El se",
+ "▁Els e",
+ "▁ Else",
+ "▁s izes",
+ "▁si zes",
+ "▁size s",
+ "▁satisf ied",
+ "ot os",
+ "oto s",
+ "U D",
+ "Fin al",
+ "Fi nal",
+ "F inal",
+ "ó j",
+ "è ve",
+ "▁R oy",
+ "▁Ro y",
+ "ff en",
+ "ffe n",
+ "f fen",
+ "▁s alt",
+ "▁sa lt",
+ "▁sal t",
+ "▁L abel",
+ "▁La bel",
+ "▁Lab el",
+ "▁ Label",
+ "S k",
+ "▁к ре",
+ "▁ кре",
+ "▁Ли тература",
+ "▁с м",
+ "Att ributes",
+ "Attribute s",
+ "ay e",
+ "a ye",
+ "сь к",
+ "▁вы со",
+ "- )",
+ "os es",
+ "ose s",
+ "cal cul",
+ "calc ul",
+ "▁C annot",
+ "▁Can not",
+ "▁ Cannot",
+ "Gener ic",
+ "em o",
+ "e mo",
+ "▁A utor",
+ "▁Aut or",
+ "▁Au tor",
+ "▁Auto r",
+ "лё н",
+ "л ён",
+ "ла га",
+ "vo te",
+ "v ote",
+ "lic ates",
+ "licate s",
+ "lica tes",
+ "ru s",
+ "r us",
+ "él i",
+ "é li",
+ "op f",
+ "o pf",
+ "at ique",
+ "ati que",
+ "sc ala",
+ "scal a",
+ "s cala",
+ "▁Oh io",
+ "▁Brit ann",
+ "▁b ef",
+ "▁be f",
+ "▁Е вро",
+ "▁Ев ро",
+ "▁Care er",
+ "is ée",
+ "isé e",
+ "ó t",
+ "bo se",
+ "bos e",
+ "b ose",
+ "▁Б ер",
+ "▁Бе р",
+ "▁Cont roller",
+ "▁Control ler",
+ "▁ Controller",
+ "po le",
+ "pol e",
+ "p ole",
+ "▁al len",
+ "▁all en",
+ "▁alle n",
+ "▁ allen",
+ "▁h ack",
+ "▁ha ck",
+ "▁ext ent",
+ "▁cal ci",
+ "▁calc i",
+ "Me r",
+ "M er",
+ "▁sum mary",
+ "▁summar y",
+ "▁summ ary",
+ "▁ summary",
+ "Mar t",
+ "Ma rt",
+ "M art",
+ "▁histor ical",
+ "▁historic al",
+ "im at",
+ "ima t",
+ "i mat",
+ "bu d",
+ "b ud",
+ "▁F OR",
+ "▁FO R",
+ "▁ FOR",
+ "ex port",
+ "exp ort",
+ "ed i",
+ "e di",
+ "Map ping",
+ "Mapp ing",
+ "Ma pping",
+ "M apping",
+ "▁A y",
+ "▁R uby",
+ "▁Ru by",
+ "▁Rub y",
+ "▁definition s",
+ "▁defin itions",
+ "▁definit ions",
+ "▁{ $",
+ "▁ {$",
+ "▁y ours",
+ "▁you rs",
+ "▁your s",
+ "▁yo urs",
+ "ri as",
+ "ria s",
+ "r ias",
+ "To uch",
+ "T ouch",
+ "▁G az",
+ "▁Ga z",
+ "▁Aut om",
+ "▁Au tom",
+ "▁Auto m",
+ "▁ Autom",
+ "▁и стори",
+ "▁исто ри",
+ "▁ис тори",
+ "▁d elen",
+ "▁de len",
+ "▁del en",
+ "▁K inder",
+ "▁Kind er",
+ "▁Ki nder",
+ "▁Kin der",
+ "}} %",
+ "} }%",
+ "▁perform ing",
+ "F R",
+ "▁S ig",
+ "▁Si g",
+ "▁B rad",
+ "▁Br ad",
+ "▁Bra d",
+ "br as",
+ "bra s",
+ "b ras",
+ "▁J ar",
+ "▁Ja r",
+ "pk g",
+ "p kg",
+ "w r",
+ "▁P ays",
+ "▁Pa ys",
+ "▁Pay s",
+ "N C",
+ "▁op posed",
+ "▁opp osed",
+ "▁oppos ed",
+ "Tr y",
+ "T ry",
+ "▁ве зе",
+ "▁B og",
+ "▁Bo g",
+ "▁writ es",
+ "▁wr ites",
+ "▁write s",
+ "▁st ories",
+ "▁stor ies",
+ "▁sto ries",
+ "▁m ater",
+ "▁ma ter",
+ "▁mat er",
+ "▁mate r",
+ "▁stag ione",
+ "▁s ty",
+ "▁st y",
+ "▁ sty",
+ "▁compat ible",
+ "▁ compatible",
+ "he ast",
+ "h east",
+ "▁G uy",
+ "▁Gu y",
+ "egr ünd",
+ "▁ident ifier",
+ "▁ identifier",
+ "▁he ads",
+ "▁head s",
+ "по зи",
+ "▁st up",
+ "▁t f",
+ "▁ tf",
+ "▁ј ош",
+ "▁H ugh",
+ "▁Hu gh",
+ "▁c ards",
+ "▁car ds",
+ "▁card s",
+ "▁ cards",
+ "ov y",
+ "o vy",
+ "▁To ast",
+ "al las",
+ "all as",
+ "alla s",
+ "▁p úblic",
+ "▁ass umes",
+ "▁assum es",
+ "▁assume s",
+ "▁чемпи она",
+ "yc ler",
+ "ycle r",
+ "y cler",
+ "▁Juni or",
+ "▁Jun ior",
+ "▁F ich",
+ "▁estim ated",
+ "▁estimate d",
+ "ze rw",
+ "zer w",
+ "di alog",
+ "dia log",
+ "d ialog",
+ "ши н",
+ "ш ин",
+ "sh ell",
+ "she ll",
+ "s hell",
+ "▁н их",
+ "▁ни х",
+ "▁ них",
+ "▁p itch",
+ "▁pit ch",
+ "до л",
+ "out ube",
+ "▁S anti",
+ "▁San ti",
+ "▁Sant i",
+ "On ClickListener",
+ "▁M agyar",
+ "▁Mag yar",
+ "▁v ue",
+ "▁vu e",
+ "▁ vue",
+ "i ão",
+ "▁` #",
+ "col lect",
+ "coll ect",
+ "▁R ou",
+ "▁Ro u",
+ "anal ysis",
+ "istrz ost",
+ "▁Dig ital",
+ "▁ Digital",
+ "▁c rist",
+ "▁cr ist",
+ "▁cri st",
+ "ri ere",
+ "rie re",
+ "rier e",
+ "r iere",
+ "▁cam po",
+ "▁camp o",
+ "U s",
+ "▁circ a",
+ "▁cir ca",
+ "▁Com ponent",
+ "▁ Component",
+ "▁NS String",
+ "▁ NSString",
+ "p d",
+ "▁pr ince",
+ "▁prin ce",
+ "▁in voke",
+ "▁inv oke",
+ "▁ invoke",
+ "▁Mar ine",
+ "▁Mari ne",
+ "Al low",
+ "All ow",
+ "est ic",
+ "esti c",
+ "ри сти",
+ "рис ти",
+ "рист и",
+ "bo ne",
+ "bon e",
+ "b one",
+ "ту ры",
+ "тур ы",
+ "▁pass ion",
+ "ác ió",
+ "á ció",
+ "▁o rn",
+ "▁or n",
+ "▁ orn",
+ "ве д",
+ "▁in vari",
+ "▁inv ari",
+ "▁н і",
+ "▁ ні",
+ "Re move",
+ "Rem ove",
+ "en cies",
+ "enc ies",
+ "enci es",
+ "il ib",
+ "ili b",
+ "i lib",
+ "▁Direct or",
+ "▁Dire ctor",
+ "▁Dir ector",
+ "\" \"",
+ "▁Con se",
+ "▁Cons e",
+ "google apis",
+ "ó k",
+ "▁У кра",
+ "▁H aving",
+ "▁Ha ving",
+ "▁Hav ing",
+ "Do main",
+ "Dom ain",
+ "ie rz",
+ "ier z",
+ "но логи",
+ "н ологи",
+ "Ch o",
+ "C ho",
+ "un defined",
+ "und efined",
+ "al loc",
+ "all oc",
+ "allo c",
+ "▁p ied",
+ "▁pi ed",
+ "▁pie d",
+ "▁f raction",
+ "▁fr action",
+ "▁fra ction",
+ "bi a",
+ "b ia",
+ "▁п оло",
+ "▁по ло",
+ "▁пол о",
+ "▁ поло",
+ "ug no",
+ "min ister",
+ "▁princip ale",
+ "▁principal e",
+ "▁ref used",
+ "▁refuse d",
+ "brow ser",
+ "b rowser",
+ "* ,",
+ "▁H ospital",
+ "▁univers al",
+ "▁Ern st",
+ "wh o",
+ "w ho",
+ "▁G ard",
+ "▁Gar d",
+ "▁Ga rd",
+ "' _",
+ "con de",
+ "co nde",
+ "cond e",
+ "c onde",
+ "▁[ {",
+ "▁ [{",
+ "so b",
+ "s ob",
+ "▁C rit",
+ "▁Cr it",
+ "▁дека бря",
+ "▁p unto",
+ "▁pun to",
+ "▁punt o",
+ "▁einges etzt",
+ "▁t ör",
+ "▁tö r",
+ "▁N i",
+ "▁w orry",
+ "▁wor ry",
+ "▁leg end",
+ "▁ legend",
+ "▁бу ли",
+ "▁k omm",
+ "▁kom m",
+ "▁ko mm",
+ "ri jk",
+ "rij k",
+ "r ijk",
+ "ef fect",
+ "eff ect",
+ "e ffect",
+ "Or i",
+ "O ri",
+ "RE S",
+ "R ES",
+ "▁P eters",
+ "▁Pe ters",
+ "▁Peter s",
+ "▁Pet ers",
+ "▁B aron",
+ "▁Bar on",
+ "▁Ba ron",
+ "▁G ot",
+ "▁Go t",
+ "▁hon est",
+ "▁ho nest",
+ "är e",
+ "ä re",
+ "ás z",
+ "á sz",
+ "▁no ble",
+ "▁nob le",
+ "▁con clusion",
+ "▁conclus ion",
+ "▁concl usion",
+ "▁form atting",
+ "▁format ting",
+ "▁formatt ing",
+ "▁o tto",
+ "▁ot to",
+ "▁ott o",
+ "▁ otto",
+ "▁de leg",
+ "▁del eg",
+ "м б",
+ "pt op",
+ "pto p",
+ "p top",
+ "▁s ends",
+ "▁send s",
+ "▁sen ds",
+ "ur name",
+ "urn ame",
+ "▁f estival",
+ "▁fest ival",
+ "▁festiv al",
+ ", ",
+ "ру с",
+ "р ус",
+ "▁d och",
+ "▁do ch",
+ "▁doc h",
+ "sub ject",
+ "su bject",
+ "▁care ful",
+ "qu ent",
+ "que nt",
+ "q uent",
+ "▁Lo ad",
+ "▁ Load",
+ "temper aturen",
+ "▁r ue",
+ "▁ru e",
+ "Mem ory",
+ "ț a",
+ "ion a",
+ "io na",
+ "i ona",
+ "▁dent ro",
+ "▁beg ann",
+ "▁began n",
+ "▁A qu",
+ "▁scient ific",
+ "ka ń",
+ "ло к",
+ "л ок",
+ "el de",
+ "eld e",
+ "▁Th ose",
+ "qu ier",
+ "qui er",
+ "act ér",
+ "▁Auf lage",
+ ") '",
+ "▁grad ient",
+ "▁ gradient",
+ "in teger",
+ "inte ger",
+ "▁Im port",
+ "▁Imp ort",
+ "▁ Import",
+ "S K",
+ "▁St atus",
+ "▁Stat us",
+ "▁ Status",
+ "▁exp lo",
+ "▁expl o",
+ "A E",
+ "Sh ell",
+ "She ll",
+ "S hell",
+ "▁Pa ulo",
+ "▁Paul o",
+ ". »",
+ "} ",
+ "fl ex",
+ "f lex",
+ "▁ко мп",
+ "▁ком п",
+ "on den",
+ "ond en",
+ "onde n",
+ "ac cept",
+ "▁miejs ce",
+ "H ub",
+ "all eng",
+ "alle ng",
+ "allen g",
+ "W N",
+ "▁implement ing",
+ "▁ лу",
+ "▁conf using",
+ "▁Inst all",
+ "▁ Install",
+ "▁r ou",
+ "▁ro u",
+ "▁ rou",
+ "▁про ек",
+ "Access or",
+ "Acc essor",
+ "ља шње",
+ "od io",
+ "odi o",
+ "▁app lies",
+ "ющи й",
+ "ю щий",
+ "▁M undial",
+ "Ét at",
+ "É tat",
+ "iet nam",
+ "hu m",
+ "h um",
+ "▁с бор",
+ "ord inate",
+ "ordin ate",
+ "Fran ce",
+ "Fr ance",
+ "F rance",
+ "▁p rend",
+ "▁pr end",
+ "▁pre nd",
+ "el temperaturen",
+ "▁trab aj",
+ "A xis",
+ "▁м но",
+ "prim ary",
+ "▁Se ite",
+ "▁Seit e",
+ "per mission",
+ "perm ission",
+ "▁or den",
+ "▁ord en",
+ "▁ orden",
+ "sin ce",
+ "s ince",
+ "▁i c",
+ "▁ ic",
+ "▁Bra zil",
+ "▁b are",
+ "▁bar e",
+ "▁ba re",
+ "▁ bare",
+ "▁N ar",
+ "▁Na r",
+ "▁J ur",
+ "▁Ju r",
+ "▁fre edom",
+ "▁free dom",
+ "▁med ical",
+ "▁medic al",
+ "▁medi cal",
+ "isch of",
+ "isc hof",
+ "▁с п",
+ "ie ż",
+ "▁boot strap",
+ "▁ bootstrap",
+ "▁ …",
+ "▁fa cil",
+ "▁fac il",
+ "co rd",
+ "cor d",
+ "c ord",
+ "ва не",
+ "ван е",
+ "в ане",
+ "▁Al len",
+ "▁All en",
+ "▁Alle n",
+ "av id",
+ "avi d",
+ "a vid",
+ "ing ham",
+ "za s",
+ "z as",
+ "▁in spect",
+ "▁ins pect",
+ "▁insp ect",
+ "it ten",
+ "itt en",
+ "itte n",
+ "os ti",
+ "ost i",
+ "u h",
+ "c é",
+ "▁# ####",
+ "▁### ##",
+ "▁#### #",
+ "ci us",
+ "ciu s",
+ "c ius",
+ "om y",
+ "o my",
+ "▁Se ine",
+ "▁Sein e",
+ "bre s",
+ "br es",
+ "b res",
+ "▁gen us",
+ "▁genu s",
+ "O ther",
+ "▁Gold en",
+ "▁Gol den",
+ "mu l",
+ "m ul",
+ "▁Спо љашње",
+ "▁gen naio",
+ "▁care fully",
+ "▁careful ly",
+ "aa l",
+ "a al",
+ "▁anal yt",
+ "▁analy t",
+ "ne ur",
+ "n eur",
+ "▁st retch",
+ "▁str etch",
+ "▁O cc",
+ "▁ Occ",
+ "ol as",
+ "ola s",
+ "o las",
+ "▁fire base",
+ "▁ firebase",
+ "▁expect ing",
+ "bas ic",
+ "cond ition",
+ "pr ov",
+ "pro v",
+ "p rov",
+ "▁W asser",
+ "▁Was ser",
+ "▁Wass er",
+ "▁conc aten",
+ "▁e vil",
+ "▁ev il",
+ "▁coefficient s",
+ "We st",
+ "W est",
+ "ir y",
+ "i ry",
+ "ph as",
+ "pha s",
+ "p has",
+ "▁J am",
+ "▁Ja m",
+ "fo is",
+ "f ois",
+ "▁cons id",
+ "▁main ten",
+ "▁mai nten",
+ "ni m",
+ "n im",
+ "es ser",
+ "ess er",
+ "esse r",
+ "es z",
+ "e sz",
+ "un ta",
+ "unt a",
+ "ue st",
+ "ues t",
+ "u est",
+ "▁cred entials",
+ "_ ;",
+ "Di m",
+ "D im",
+ "пре де",
+ "пр еде",
+ "▁B ü",
+ "bu ilt",
+ "▁A cadem",
+ "▁Ac adem",
+ "▁a udi",
+ "▁au di",
+ "▁aud i",
+ "▁ audi",
+ "▁tv å",
+ "in and",
+ "ina nd",
+ "▁The ater",
+ "▁gen re",
+ "ço s",
+ "ç os",
+ "gres ql",
+ "gre sql",
+ "▁we ap",
+ "▁R ab",
+ "▁Ra b",
+ "▁ ’",
+ "▁ad ult",
+ "▁d ém",
+ "▁dé m",
+ "` `",
+ "▁st abil",
+ "▁sta bil",
+ "▁correspond s",
+ "▁E astern",
+ "▁East ern",
+ "un nel",
+ "unn el",
+ "Work er",
+ "▁c oh",
+ "▁co h",
+ "л ка",
+ "▁Mass achusetts",
+ "pi o",
+ "p io",
+ "▁por ts",
+ "▁port s",
+ "▁ ports",
+ "ag g",
+ "a gg",
+ "▁De bug",
+ "▁Deb ug",
+ "▁ Debug",
+ "▁bre ath",
+ "MI N",
+ "M IN",
+ "Vari able",
+ "bat ch",
+ "b atch",
+ "сс е",
+ "с се",
+ "▁p reg",
+ "▁pr eg",
+ "▁pre g",
+ "▁r oles",
+ "▁ro les",
+ "▁role s",
+ "▁rol es",
+ "pa ste",
+ "pas te",
+ "p aste",
+ "▁refer enced",
+ "▁reference d",
+ "ad rat",
+ "adr at",
+ "ч ё",
+ "bin om",
+ "bi nom",
+ "▁def ining",
+ "▁defin ing",
+ "▁Bud apest",
+ "▁д ви",
+ "▁ дви",
+ "▁t aught",
+ "▁h ole",
+ "▁ho le",
+ "▁hol e",
+ "▁ hole",
+ "▁qu ella",
+ "▁que lla",
+ "▁quel la",
+ "M sg",
+ "as ka",
+ "ask a",
+ "a ska",
+ "sc an",
+ "s can",
+ "▁pro pose",
+ "▁prop ose",
+ "▁propos e",
+ "▁Би ография",
+ "{{ \\",
+ "{ {\\",
+ "text t",
+ "tex tt",
+ "▁A lb",
+ "▁Al b",
+ "▁Syd ney",
+ "▁back up",
+ "▁cre dit",
+ "▁cr edit",
+ "▁cred it",
+ "▁фран цу",
+ "st ats",
+ "sta ts",
+ "stat s",
+ "\\\" :",
+ "\\ \":",
+ "▁П ере",
+ "▁Пер е",
+ "▁Пе ре",
+ "▁according ly",
+ "▁accord ingly",
+ "▁L en",
+ "▁Le n",
+ "▁ Len",
+ "zn a",
+ "z na",
+ "▁Reg ional",
+ "▁Region al",
+ "▁и зда",
+ "▁из да",
+ "▁j ú",
+ "hi stor",
+ "his tor",
+ "h istor",
+ "▁ent ities",
+ "St ar",
+ "S tar",
+ "он е",
+ "о не",
+ "'] ['",
+ "' ]['",
+ "▁N ova",
+ "▁No va",
+ "▁Nov a",
+ "di e",
+ "d ie",
+ "▁` '",
+ "▁ `'",
+ "▁ob ten",
+ "▁obt en",
+ "an st",
+ "ans t",
+ "▁Re lig",
+ "▁Rel ig",
+ "▁t rig",
+ "▁tr ig",
+ "▁tri g",
+ "▁ре жи",
+ "▁Person al",
+ "▁Pers onal",
+ "▁t one",
+ "▁to ne",
+ "▁ton e",
+ "▁a id",
+ "▁ai d",
+ "Vis ual",
+ "Sub mit",
+ "▁mov es",
+ "▁mo ves",
+ "▁move s",
+ "▁B ridge",
+ "▁Br idge",
+ "▁B oy",
+ "▁Bo y",
+ "▁accur ate",
+ "os ta",
+ "ost a",
+ "o sta",
+ "at to",
+ "att o",
+ "a tto",
+ "▁defe ated",
+ "▁defeat ed",
+ "▁data b",
+ "▁da tab",
+ "▁dat ab",
+ "▁ datab",
+ "gi nx",
+ "gin x",
+ "g inx",
+ "▁L iv",
+ "▁Li v",
+ "ly wood",
+ "T W",
+ "ri um",
+ "r ium",
+ "ip ped",
+ "ipp ed",
+ "i pped",
+ "Fa il",
+ "F ail",
+ "RE QUEST",
+ "▁ign or",
+ "▁ig nor",
+ "▁s itting",
+ "▁sit ting",
+ "▁sitt ing",
+ "▁mol to",
+ "▁molt o",
+ "▁end point",
+ "▁ endpoint",
+ "uc ión",
+ "u ción",
+ "▁col lections",
+ "▁collection s",
+ "▁collect ions",
+ "▁colle ctions",
+ "▁ collections",
+ "▁Т у",
+ "tem bre",
+ "t embre",
+ "▁né cess",
+ "▁inter act",
+ "▁inte ract",
+ "▁o tras",
+ "▁ot ras",
+ "▁otra s",
+ "▁c urr",
+ "▁cu rr",
+ "▁cur r",
+ "▁ curr",
+ "▁tr acks",
+ "▁tra cks",
+ "▁track s",
+ "▁trac ks",
+ "▁fam ília",
+ "▁numer ical",
+ "▁numeric al",
+ "le gt",
+ "leg t",
+ "] /",
+ "▁M ario",
+ "▁Mar io",
+ "▁Ma rio",
+ "▁Mari o",
+ "▁t ort",
+ "▁to rt",
+ "▁tor t",
+ "b g",
+ "ss l",
+ "s sl",
+ "text tt",
+ "textt t",
+ "▁s park",
+ "▁sp ark",
+ "▁ spark",
+ "ди и",
+ "▁prob able",
+ "%% %%",
+ "ph ia",
+ "phi a",
+ "], [",
+ "] ,[",
+ "▁bo xes",
+ "▁box es",
+ "▁a cadem",
+ "▁ac adem",
+ "▁S lo",
+ "▁Sl o",
+ "äu de",
+ "ä ude",
+ "▁wit ness",
+ "▁ed iting",
+ "▁edit ing",
+ "ли на",
+ "лин а",
+ "▁look up",
+ "▁ lookup",
+ "▁B uck",
+ "▁Bu ck",
+ "▁Buc k",
+ "д ня",
+ "▁j ours",
+ "▁jo urs",
+ "▁jou rs",
+ "▁jour s",
+ "▁ jours",
+ "++ ){",
+ "++) {",
+ "▁ind ices",
+ "▁indic es",
+ "▁f light",
+ "▁fl ight",
+ "▁com putation",
+ "▁comput ation",
+ "Pl ugin",
+ "▁real ize",
+ "▁realiz e",
+ "is set",
+ "iss et",
+ "isse t",
+ "▁deriv ative",
+ "line width",
+ "bu nd",
+ "b und",
+ "▁t hor",
+ "▁th or",
+ "▁. =",
+ "▁ .=",
+ "▁s í",
+ "▁C lick",
+ "▁Cl ick",
+ "▁ Click",
+ "▁Seb ast",
+ "> '",
+ "hav ior",
+ "le i",
+ "l ei",
+ "ul f",
+ "▁ge ometry",
+ "▁geom etry",
+ "▁geomet ry",
+ "▁ geometry",
+ "pr ev",
+ "pre v",
+ "p rev",
+ "em pl",
+ "emp l",
+ "▁L é",
+ "an son",
+ "ans on",
+ "▁A lice",
+ "▁Al ice",
+ "▁Ali ce",
+ "pro totype",
+ "proto type",
+ "RE AD",
+ "ic ular",
+ "icul ar",
+ "i cular",
+ "▁б і",
+ "▁ бі",
+ "▁deutsch e",
+ "▁Re present",
+ "si tes",
+ "site s",
+ "s ites",
+ "▁Me an",
+ "▁d iss",
+ "▁di ss",
+ "▁dis s",
+ "▁Z ur",
+ "▁Zu r",
+ "▁п рез",
+ "▁пре з",
+ "▁пр ез",
+ "PA R",
+ "P AR",
+ "▁' #",
+ "▁D ra",
+ "▁Dr a",
+ "▁ Dra",
+ "со н",
+ "с он",
+ "▁ste ht",
+ "mar kt",
+ "mark t",
+ "▁e ase",
+ "▁eas e",
+ "Draw ing",
+ "Dra wing",
+ "= %",
+ "St op",
+ "Sto p",
+ "S top",
+ "▁s erving",
+ "▁ser ving",
+ "▁serv ing",
+ "▁servi ng",
+ "▁tak że",
+ "▁D NS",
+ "▁liter al",
+ "▁lit eral",
+ "Di e",
+ "D ie",
+ "▁в ос",
+ "▁во с",
+ "▁sen ior",
+ "ac ion",
+ "aci on",
+ "a cion",
+ "▁u buntu",
+ "▁ub untu",
+ "▁ ubuntu",
+ "▁Frank furt",
+ "▁Sun day",
+ "▁Sund ay",
+ "á b",
+ "▁jour ney",
+ "▁journ ey",
+ "is sa",
+ "iss a",
+ "ber ry",
+ "▁s ep",
+ "▁se p",
+ "▁ sep",
+ "▁i on",
+ "▁io n",
+ "▁ ion",
+ "wer t",
+ "we rt",
+ "w ert",
+ "or szág",
+ "orsz ág",
+ "ser ve",
+ "serv e",
+ "s erve",
+ "▁Mil ano",
+ "▁Milan o",
+ "▁ве ка",
+ "ра х",
+ "▁ию ля",
+ "▁man era",
+ "▁st ations",
+ "▁stat ions",
+ "▁station s",
+ "▁stati ons",
+ "▁adopt ed",
+ "▁any body",
+ "VER SION",
+ "F E",
+ "do rf",
+ "dor f",
+ "d orf",
+ ".. .,",
+ "... ,",
+ "▁обра зова",
+ "▁образ ова",
+ "Log ger",
+ "фи циаль",
+ "фици аль",
+ "WR ITE",
+ "▁h am",
+ "▁ha m",
+ "▁ ham",
+ "▁F uture",
+ "▁Fut ure",
+ "▁ Future",
+ "ot en",
+ "ote n",
+ "o ten",
+ "▁A G",
+ "▁ AG",
+ "▁t rained",
+ "▁tr ained",
+ "▁tra ined",
+ "▁train ed",
+ "▁N ich",
+ "▁Nic h",
+ "▁Ni ch",
+ "▁un iversity",
+ "▁univers ity",
+ "▁Olymp ics",
+ "▁Olympic s",
+ "▁d oit",
+ "▁do it",
+ "▁doi t",
+ "▁cult ural",
+ "▁cultura l",
+ "Con f",
+ "▁Con ference",
+ "or no",
+ "orn o",
+ "▁M P",
+ "▁ MP",
+ "▁b ou",
+ "▁bo u",
+ "ci n",
+ "c in",
+ "Hi gh",
+ "H igh",
+ "ann te",
+ "annt e",
+ "▁display ing",
+ "▁ch apter",
+ "▁chap ter",
+ "▁ chapter",
+ "▁Fra uen",
+ "▁Frau en",
+ "▁real ized",
+ "▁realiz ed",
+ "▁realize d",
+ "▁attempt ed",
+ "▁pre ferred",
+ "▁prefer red",
+ "Da t",
+ "D at",
+ "▁tr ouve",
+ "▁tro uve",
+ "▁trou ve",
+ "▁trouv e",
+ "▁int ention",
+ "▁intent ion",
+ "▁inten tion",
+ "▁Not ice",
+ "tim estamp",
+ "* (",
+ "▁Ш а",
+ "an as",
+ "ana s",
+ "a nas",
+ "cl a",
+ "c la",
+ "is z",
+ "i sz",
+ "tb l",
+ "t bl",
+ "Ar r",
+ "A rr",
+ "▁in verse",
+ "▁ter rible",
+ "▁occup ied",
+ "J AX",
+ "< -",
+ "▁Phil osoph",
+ "▁Cor ps",
+ "bu ilder",
+ "build er",
+ "▁beg ins",
+ "▁begin s",
+ "▁c ensus",
+ "▁cens us",
+ ". ’",
+ "▁pro ven",
+ "▁pr oven",
+ "▁prov en",
+ "▁prove n",
+ "met ric",
+ "▁incre ases",
+ "▁increase s",
+ "wi ch",
+ "w ich",
+ "▁A BC",
+ "▁AB C",
+ "▁ ABC",
+ "project s",
+ "▁T hor",
+ "▁Th or",
+ "▁conf idence",
+ "▁u fficiale",
+ "el m",
+ "e lm",
+ "▁g arden",
+ "▁gar den",
+ "▁gard en",
+ "▁rob ust",
+ "▁cos ì",
+ "ie dz",
+ "ied z",
+ "▁Is lam",
+ "▁Add ress",
+ "▁ Address",
+ "▁div ide",
+ "▁divid e",
+ "▁E u",
+ "ca tal",
+ "cat al",
+ "c atal",
+ "de tail",
+ "det ail",
+ "ep endant",
+ "f g",
+ "▁b ew",
+ "▁be w",
+ "▁ bew",
+ "▁f is",
+ "▁fi s",
+ "▁B O",
+ "▁ BO",
+ "▁w sp",
+ "▁ws p",
+ "▁p ipeline",
+ "▁pip eline",
+ "▁pipe line",
+ "h d",
+ "▁S ession",
+ "▁ Session",
+ "lä nd",
+ "l änd",
+ "iv eau",
+ "ive au",
+ "es tr",
+ "est r",
+ "e str",
+ "▁p article",
+ "▁part icle",
+ "▁partic le",
+ "▁parti cle",
+ "▁lar avel",
+ "▁ laravel",
+ "pi c",
+ "p ic",
+ "▁n au",
+ "▁na u",
+ "▁f ins",
+ "▁fin s",
+ "▁fi ns",
+ "▁V il",
+ "▁Vi l",
+ "▁f us",
+ "▁fu s",
+ "▁qu asi",
+ "oper ation",
+ "opera tion",
+ "▁al ler",
+ "▁all er",
+ "▁alle r",
+ "▁ aller",
+ "▁an aly",
+ "▁anal y",
+ "▁ analy",
+ "▁О н",
+ "▁M es",
+ "▁Me s",
+ "▁о пера",
+ "▁оп ера",
+ "▁hand led",
+ "▁handle d",
+ "▁de prec",
+ "▁dep rec",
+ "tt o",
+ "t to",
+ "▁E k",
+ "▁st ran",
+ "▁str an",
+ "▁stra n",
+ "▁ang lais",
+ "ju re",
+ "j ure",
+ "▁Sil ver",
+ "▁close ly",
+ "▁clos ely",
+ "en kins",
+ "enk ins",
+ "an os",
+ "ano s",
+ "a nos",
+ "st ed",
+ "ste d",
+ "s ted",
+ "▁сент ября",
+ "br and",
+ "bra nd",
+ "b rand",
+ "нь о",
+ "▁prés ent",
+ "▁pré sent",
+ "ro k",
+ "r ok",
+ "mo unt",
+ "m ount",
+ "▁Anth ony",
+ "▁Further more",
+ "in ha",
+ "▁ар хи",
+ "▁раз ли",
+ "▁окт ября",
+ "▁p int",
+ "▁pi nt",
+ "▁pin t",
+ "n ý",
+ "pt s",
+ "p ts",
+ "▁ital ien",
+ "▁ре ги",
+ "ле з",
+ "л ез",
+ "ди на",
+ "дин а",
+ "ather ine",
+ "In ternal",
+ "Int ernal",
+ "Inter nal",
+ "Intern al",
+ "Qu estion",
+ "▁sett lement",
+ "▁В се",
+ "▁fol ders",
+ "▁folder s",
+ "д ри",
+ "▁val or",
+ "▁va lor",
+ "▁M iller",
+ "▁Mil ler",
+ "▁Mill er",
+ "▁As sert",
+ "▁Ass ert",
+ "▁ Assert",
+ "▁pat ient",
+ "▁N ieder",
+ "▁Ni eder",
+ "▁Nie der",
+ "▁Nied er",
+ "▁E P",
+ "▁ EP",
+ "▁A gr",
+ "▁Ag r",
+ "▁o nde",
+ "▁on de",
+ "▁ onde",
+ "▁s cop",
+ "▁sc op",
+ "▁ scop",
+ "se quence",
+ "sequ ence",
+ "▁P L",
+ "▁ PL",
+ "▁se ek",
+ "▁see k",
+ "java se",
+ "jav ase",
+ "▁V ector",
+ "▁Ve ctor",
+ "▁Vec tor",
+ "▁ Vector",
+ "▁n á",
+ "▁ ná",
+ "▁categor ía",
+ "cl one",
+ "clo ne",
+ "N R",
+ "av ailable",
+ "▁B esch",
+ "▁Be sch",
+ "▁Bes ch",
+ "▁e clipse",
+ "▁ec lipse",
+ "▁ eclipse",
+ "wick lung",
+ "dep loy",
+ "en ie",
+ "eni e",
+ "e nie",
+ "▁\" )",
+ "▁ \")",
+ "äs t",
+ "ä st",
+ "▁s ync",
+ "▁syn c",
+ "▁sy nc",
+ "▁ sync",
+ "CO DE",
+ "▁Ч е",
+ "▁flo ating",
+ "▁float ing",
+ "/ `",
+ "▁ret ired",
+ "▁retir ed",
+ "de b",
+ "d eb",
+ "▁part icul",
+ "▁partic ul",
+ "▁parti cul",
+ "▁coll ected",
+ "▁collect ed",
+ "▁colle cted",
+ "▁down loaded",
+ "▁download ed",
+ "ni ce",
+ "nic e",
+ "n ice",
+ "▁B uffer",
+ "▁Buff er",
+ "▁ Buffer",
+ "▁Acc ount",
+ "▁Ac count",
+ "▁ Account",
+ "▁m aggio",
+ "▁mag gio",
+ "▁ре да",
+ "▁ред а",
+ "▁s ales",
+ "▁sa les",
+ "▁sal es",
+ "▁sale s",
+ "▁statunit ense",
+ "▁K i",
+ "▁F err",
+ "▁Fe rr",
+ "▁Fer r",
+ "Lo ck",
+ "Loc k",
+ "L ock",
+ "▁Is abel",
+ "▁Isa bel",
+ "cl ar",
+ "cla r",
+ "c lar",
+ "▁p ov",
+ "▁po v",
+ "at ra",
+ "atr a",
+ "a tra",
+ "▁Fr au",
+ "▁Fra u",
+ "▁sort ing",
+ "▁sor ting",
+ "▁sorti ng",
+ "▁phr ase",
+ "▁апре ля",
+ "▁дея тель",
+ "▁And ré",
+ "def inition",
+ "defin ition",
+ "writ ing",
+ "wr iting",
+ "ér é",
+ "é ré",
+ "щ у",
+ "▁O rd",
+ "▁Or d",
+ "▁ Ord",
+ "▁r um",
+ "▁ru m",
+ "▁ rum",
+ "▁T urk",
+ "▁Tur k",
+ "▁I van",
+ "th eless",
+ "the less",
+ "▁г и",
+ "▁ ги",
+ "▁s ake",
+ "▁sa ke",
+ "▁B ased",
+ "▁Bas ed",
+ "▁Ba sed",
+ "▁Base d",
+ "de ck",
+ "dec k",
+ "or us",
+ "oru s",
+ "o rus",
+ "▁tut ti",
+ "▁b lan",
+ "▁bl an",
+ "▁bla n",
+ "▁П у",
+ "De tail",
+ "Det ail",
+ "▁Н о",
+ "▁S ky",
+ "▁Sk y",
+ "▁p rès",
+ "▁pr ès",
+ "▁ près",
+ "мо й",
+ "col n",
+ "co ln",
+ "че ской",
+ "et i",
+ "e ti",
+ "▁ar row",
+ "▁arr ow",
+ "▁ arrow",
+ "▁C ha",
+ "▁Ch a",
+ "ch mark",
+ "œ ur",
+ "fa b",
+ "f ab",
+ "ку ль",
+ "Grid View",
+ "▁Back ground",
+ "▁ Background",
+ "s n",
+ "▁segu ito",
+ "▁n ic",
+ "▁ni c",
+ "▁ nic",
+ "co u",
+ "c ou",
+ "ті в",
+ "т ів",
+ "▁b zw",
+ "add EventListener",
+ "syn c",
+ "s ync",
+ "az zo",
+ "azz o",
+ "ab stract",
+ "as sets",
+ "ass ets",
+ "asse ts",
+ "asset s",
+ "▁D ru",
+ "▁Dr u",
+ "з д",
+ "ord net",
+ "▁b igger",
+ "▁big ger",
+ "▁initial ized",
+ "▁initialize d",
+ "ка з",
+ "og ene",
+ "ogen e",
+ "oge ne",
+ "vi ously",
+ "vious ly",
+ "v iously",
+ "▁g uid",
+ "▁gu id",
+ "scheid ung",
+ "▁Z ent",
+ "▁Ze nt",
+ "▁fr ames",
+ "▁frame s",
+ "▁fra mes",
+ "▁fram es",
+ "▁ frames",
+ "ri eben",
+ "rie ben",
+ "rieb en",
+ "r ieben",
+ "▁iss ued",
+ "▁issue d",
+ "▁issu ed",
+ "▁d ow",
+ "▁do w",
+ "▁descri bes",
+ "▁describe s",
+ "il st",
+ "ils t",
+ "i lst",
+ "▁c riteria",
+ "▁crit eria",
+ "▁criter ia",
+ "▁gentle man",
+ "Bas ic",
+ "ne z",
+ "n ez",
+ "De v",
+ "D ev",
+ "Mo ve",
+ "M ove",
+ "▁est aba",
+ "▁estab a",
+ "▁esta ba",
+ "▁set tembre",
+ "▁sett embre",
+ "circ le",
+ "cir cle",
+ "▁f ais",
+ "▁fa is",
+ "▁m yst",
+ "▁my st",
+ "▁arch iv",
+ "▁ archiv",
+ "d ynamic",
+ "j à",
+ "it as",
+ "ita s",
+ "▁я кий",
+ "▁d or",
+ "▁do r",
+ "▁ dor",
+ "▁Am azon",
+ "▁Ama zon",
+ "▁ne ces",
+ "▁Mar cel",
+ "▁Marc el",
+ "▁e lla",
+ "▁el la",
+ "▁ell a",
+ "▁ ella",
+ "ро к",
+ "р ок",
+ "▁Pennsylvan ia",
+ "cul ar",
+ "cu lar",
+ "c ular",
+ "Pa ck",
+ "P ack",
+ "it age",
+ "ita ge",
+ "▁B urn",
+ "▁Bu rn",
+ "▁Bur n",
+ "▁R O",
+ "▁ RO",
+ "▁о ни",
+ "▁он и",
+ "▁ они",
+ "~ $",
+ "Te X",
+ "as sign",
+ "ass ign",
+ "▁be at",
+ "id ense",
+ "iden se",
+ "ac ent",
+ "ace nt",
+ "a cent",
+ "Al ert",
+ "▁str ateg",
+ "▁strat eg",
+ "▁mån aden",
+ "LO C",
+ "L OC",
+ "▁c atalog",
+ "▁cat alog",
+ "▁catal og",
+ "▁ catalog",
+ "print StackTrace",
+ "() ).",
+ "()) .",
+ "( )).",
+ "us ted",
+ "ust ed",
+ "u sted",
+ "▁Frame work",
+ "▁ Framework",
+ "EC K",
+ "E CK",
+ "▁a té",
+ "▁at é",
+ "Frame work",
+ "▁att acks",
+ "▁attack s",
+ "▁B ert",
+ "▁Be rt",
+ "▁Ber t",
+ "▁т ран",
+ "▁тра н",
+ ": %",
+ "ar si",
+ "ars i",
+ "not ation",
+ "▁log ical",
+ "▁logic al",
+ "we et",
+ "▁vis ited",
+ "▁visit ed",
+ "br u",
+ "b ru",
+ "▁sur prise",
+ "▁surpr ise",
+ "^ ^",
+ "in ale",
+ "inal e",
+ "ina le",
+ "rem ote",
+ "'} ,",
+ "' },",
+ "Syn tax",
+ "S yntax",
+ "ia ne",
+ "ian e",
+ "i ane",
+ "on nen",
+ "onn en",
+ "onne n",
+ "▁bre aking",
+ "▁break ing",
+ "par ser",
+ "parse r",
+ "ap k",
+ "a pk",
+ "▁Mig uel",
+ "▁ §",
+ "▁act ing",
+ "▁ac ting",
+ "▁g ebru",
+ "▁ge bru",
+ "▁geb ru",
+ "At Index",
+ "ють ся",
+ "ю ться",
+ "▁of fers",
+ "▁off ers",
+ "▁offer s",
+ "▁p rac",
+ "▁pr ac",
+ "▁pra c",
+ "▁g rant",
+ "▁gr ant",
+ "▁gra nt",
+ "▁gran t",
+ "tern oon",
+ "▁ac quired",
+ "▁acqu ired",
+ "▁N y",
+ "▁com ma",
+ "▁comm a",
+ "ní k",
+ "n ík",
+ "▁St ep",
+ "▁Ste p",
+ "▁ Step",
+ "in ners",
+ "inn ers",
+ "inner s",
+ "▁S A",
+ "▁ SA",
+ "▁w at",
+ "▁wa t",
+ "da ys",
+ "day s",
+ "d ays",
+ "▁rect angle",
+ "da r",
+ "d ar",
+ "▁t rac",
+ "▁tr ac",
+ "▁tra c",
+ "▁Ind ones",
+ "▁feed back",
+ "▁bre aks",
+ "▁break s",
+ "part ition",
+ "ic ans",
+ "ica ns",
+ "ican s",
+ "▁Not ices",
+ "▁Notice s",
+ "▁impro ved",
+ "▁improve d",
+ "▁improv ed",
+ "▁impr oved",
+ "ph an",
+ "pha n",
+ "p han",
+ "▁differ ential",
+ "▁different ial",
+ "▁differenti al",
+ "script s",
+ "scri pts",
+ "▁X III",
+ "▁XII I",
+ "▁XI II",
+ "▁L abor",
+ "▁La bor",
+ "▁Lab or",
+ "▁prec ision",
+ "▁precis ion",
+ "▁s eed",
+ "▁se ed",
+ "▁see d",
+ "▁ seed",
+ "bund le",
+ "b undle",
+ "id ents",
+ "ident s",
+ "iden ts",
+ "hr e",
+ "h re",
+ "▁Doug las",
+ "ul d",
+ "u ld",
+ "▁second ary",
+ "▁seconda ry",
+ "▁b rig",
+ "▁br ig",
+ "▁confirm ed",
+ "▁confir med",
+ "▁cla ims",
+ "▁claim s",
+ "Ro le",
+ "R ole",
+ "▁Jew ish",
+ "▁p řed",
+ "▁př ed",
+ "▁ho tel",
+ "▁hot el",
+ "▁comp te",
+ "▁compt e",
+ "▁rec ursive",
+ "▁recurs ive",
+ "](# )",
+ "▁rot ate",
+ "▁ rotate",
+ "▁ch rome",
+ "▁chr ome",
+ "▁chrom e",
+ "▁ chrome",
+ "in ea",
+ "ine a",
+ "i nea",
+ "%; \r",
+ "% ;\r",
+ "▁En vironment",
+ "▁ Environment",
+ "pl atz",
+ "pla tz",
+ "▁Sing le",
+ "▁Sin gle",
+ "▁ Single",
+ "▁s event",
+ "▁se vent",
+ "▁seven t",
+ "▁pos ting",
+ "▁post ing",
+ "▁de aling",
+ "▁deal ing",
+ "param eters",
+ "parameter s",
+ "гра ф",
+ "Auth entication",
+ "to uch",
+ "t ouch",
+ "A z",
+ "▁g ray",
+ "▁gr ay",
+ "▁gra y",
+ "▁ gray",
+ "en cing",
+ "enc ing",
+ "enci ng",
+ "bold math",
+ "▁сай те",
+ "▁сайт е",
+ "▁Z a",
+ "an je",
+ "▁p olar",
+ "▁po lar",
+ "▁pol ar",
+ "▁у ли",
+ "ki l",
+ "k il",
+ "▁h over",
+ "▁ho ver",
+ "▁ hover",
+ "▁RE ST",
+ "▁C ome",
+ "▁Com e",
+ "▁Co me",
+ "▁ Come",
+ "j b",
+ "▁Georg ia",
+ "▁Est ado",
+ "▁Esta do",
+ "▁Estad o",
+ "Output Stream",
+ "ћ и",
+ "▁d ump",
+ "▁du mp",
+ "▁ dump",
+ "▁A ge",
+ "▁Ag e",
+ "▁ Age",
+ "▁s wo",
+ "▁sw o",
+ "m obile",
+ "oc cup",
+ "occ up",
+ "ше го",
+ "ш его",
+ "▁const itution",
+ "▁constitu tion",
+ "▁constit ution",
+ "go od",
+ "g ood",
+ "ak u",
+ "a ku",
+ "▁а нг",
+ "▁ан г",
+ "▁ анг",
+ "ie ck",
+ "iec k",
+ "▁Ps ych",
+ "▁ro ots",
+ "▁root s",
+ "▁v est",
+ "▁ve st",
+ "▁ves t",
+ "▁ vest",
+ "▁го дах",
+ "▁года х",
+ "▁Rep ública",
+ "▁p ian",
+ "▁pi an",
+ "▁pia n",
+ "igr ation",
+ "▁pr éc",
+ "▁pré c",
+ "▁gener ates",
+ "▁generate s",
+ "L Y",
+ "( `",
+ "▁= ~",
+ "ше ния",
+ "▁R ah",
+ "▁Ra h",
+ "▁connect ing",
+ "ž í",
+ "▁f ő",
+ "▁a ppel",
+ "▁app el",
+ "▁ap pel",
+ "▁appe l",
+ "▁Rail way",
+ "г ли",
+ "▁dével opp",
+ "▁a po",
+ "▁ap o",
+ "fr an",
+ "fra n",
+ "f ran",
+ "▁im mediate",
+ "▁immedi ate",
+ "во го",
+ "в ого",
+ "Run ner",
+ "ä g",
+ "Some thing",
+ "S omething",
+ "▁gén éra",
+ "Event Args",
+ "in ction",
+ "inc tion",
+ "inct ion",
+ "gl y",
+ "g ly",
+ "▁D ue",
+ "▁Du e",
+ "▁p rost",
+ "▁pro st",
+ "▁pr ost",
+ "▁pros t",
+ "▁refer ring",
+ "▁j og",
+ "▁jo g",
+ "▁exec utable",
+ "▁execut able",
+ "▁D ream",
+ "▁Dre am",
+ "ac s",
+ "a cs",
+ "▁C ole",
+ "▁Col e",
+ "▁Co le",
+ "am pf",
+ "amp f",
+ "▁B is",
+ "▁Bi s",
+ "▁ию ня",
+ "li eder",
+ "lied er",
+ "lie der",
+ "l ieder",
+ "те к",
+ "т ек",
+ "▁v b",
+ "▁ vb",
+ "▁m om",
+ "▁mo m",
+ "▁: (",
+ "▁ :(",
+ "▁der nier",
+ "▁derni er",
+ "' =>",
+ "▁э того",
+ "▁это го",
+ "▁ne ue",
+ "▁neu e",
+ "▁Ч а",
+ "▁weiter e",
+ "▁weit ere",
+ "▁al leg",
+ "▁all eg",
+ "▁alle g",
+ "▁re ality",
+ "▁real ity",
+ "▁jud ge",
+ "▁B alt",
+ "▁Ba lt",
+ "▁Bal t",
+ "▁t hin",
+ "▁th in",
+ "▁G ed",
+ "▁Ge d",
+ "ie val",
+ "iev al",
+ "i eval",
+ "m x",
+ "ці ональ",
+ "▁вы пу",
+ "▁I X",
+ "▁ IX",
+ "▁bl ind",
+ "▁Mo tor",
+ "▁Mot or",
+ "▁ш а",
+ "▁ ша",
+ "▁approxim ation",
+ "da m",
+ "d am",
+ "▁f og",
+ "▁fo g",
+ "▁ fog",
+ "ко р",
+ "к ор",
+ "▁W rit",
+ "▁l ing",
+ "▁li ng",
+ "▁lin g",
+ "▁ ling",
+ "▁пи са",
+ "▁ писа",
+ "▁M ars",
+ "▁Mar s",
+ "▁Ma rs",
+ "ot ti",
+ "ott i",
+ "En um",
+ "E num",
+ "▁T rib",
+ "▁Tr ib",
+ "▁Tri b",
+ "▁m erc",
+ "▁me rc",
+ "▁mer c",
+ "zu ng",
+ "z ung",
+ "van ced",
+ "v anced",
+ "cf g",
+ "c fg",
+ "на х",
+ "sch en",
+ "sc hen",
+ "sche n",
+ "s chen",
+ "\"] .",
+ "\" ].",
+ "be k",
+ "b ek",
+ "▁s ter",
+ "▁st er",
+ "▁ste r",
+ "▁ ster",
+ "j p",
+ "▁R ap",
+ "▁Ra p",
+ "▁rec ording",
+ "▁record ing",
+ "▁pe int",
+ "▁l ets",
+ "▁le ts",
+ "▁let s",
+ "▁ lets",
+ "än ge",
+ "äng e",
+ ">\" ;",
+ "> \";",
+ "▁міс це",
+ "▁c aval",
+ "▁ca val",
+ "▁cav al",
+ "▁C SV",
+ "▁CS V",
+ "▁ent stand",
+ "▁hel per",
+ "▁help er",
+ "▁ helper",
+ "en det",
+ "end et",
+ "ende t",
+ "▁G ram",
+ "▁Gr am",
+ "▁Gra m",
+ "▁D iego",
+ "▁Die go",
+ "▁Di ego",
+ "▁B ishop",
+ "▁Bi shop",
+ "TA G",
+ "T AG",
+ "▁e cc",
+ "▁ec c",
+ "▁E en",
+ "▁A V",
+ "▁ AV",
+ "C ity",
+ "▁Gu ide",
+ "hi nd",
+ "hin d",
+ "h ind",
+ "ri cal",
+ "ric al",
+ "rica l",
+ "r ical",
+ "▁Ос нов",
+ "Bu s",
+ "B us",
+ "▁z unächst",
+ "▁t ick",
+ "▁ti ck",
+ "▁ tick",
+ "▁Col onel",
+ "Th anks",
+ "Thank s",
+ "▁f erm",
+ "▁fe rm",
+ "▁fer m",
+ "▁gr anted",
+ "▁gran ted",
+ "▁grant ed",
+ "▁th reshold",
+ "omorph ic",
+ "▁H un",
+ "▁Hu n",
+ "en is",
+ "eni s",
+ "e nis",
+ "▁п рав",
+ "▁пра в",
+ "▁ прав",
+ "▁я кі",
+ "▁як і",
+ "P G",
+ "▁w s",
+ "▁ ws",
+ "▁techn ical",
+ "▁techni cal",
+ "est ro",
+ "estr o",
+ "kl är",
+ "k lär",
+ "va rs",
+ "var s",
+ "v ars",
+ "oc rat",
+ "ocr at",
+ "▁оп шти",
+ "on so",
+ "ons o",
+ "ib a",
+ "i ba",
+ "▁S ave",
+ "▁Sa ve",
+ "▁Sav e",
+ "▁ Save",
+ "▁program a",
+ "▁в ъ",
+ "▁inv ån",
+ ">( )",
+ "> ()",
+ "▁me jor",
+ "▁с лова",
+ "▁сло ва",
+ "▁rep lacement",
+ "▁replace ment",
+ "▁repla cement",
+ "▁im pr",
+ "▁imp r",
+ "▁Frances co",
+ "▁Ho tel",
+ "▁Hot el",
+ "▁UP DATE",
+ "▁ UPDATE",
+ "▁му зы",
+ "ug s",
+ "u gs",
+ "va rd",
+ "var d",
+ "v ard",
+ "▁f az",
+ "▁fa z",
+ "in ton",
+ "int on",
+ "into n",
+ "▁ar ts",
+ "▁art s",
+ "▁ arts",
+ "▁K y",
+ "▁I ls",
+ "▁Il s",
+ "▁s era",
+ "▁se ra",
+ "▁ser a",
+ "▁Vol ume",
+ "▁ Volume",
+ "▁gi ugno",
+ "▁a sym",
+ "▁as ym",
+ "▁P ir",
+ "▁Pi r",
+ "▁N AS",
+ "▁NA S",
+ "▁T am",
+ "▁Ta m",
+ "ě l",
+ "Se qu",
+ "Seq u",
+ "S equ",
+ "km al",
+ "k mal",
+ "▁E ins",
+ "▁Ein s",
+ "▁ком па",
+ "▁комп а",
+ "ob e",
+ "o be",
+ "oo r",
+ "o or",
+ "▁he ap",
+ "ct l",
+ "c tl",
+ "▁separ ately",
+ "▁separate ly",
+ "re ader",
+ "read er",
+ "rea der",
+ "▁signific antly",
+ "▁significant ly",
+ "▁L ag",
+ "▁La g",
+ "no tes",
+ "not es",
+ "note s",
+ "n otes",
+ "▁s ele",
+ "▁se le",
+ "▁sel e",
+ "▁dedic ated",
+ "▁H ost",
+ "▁Ho st",
+ "▁ Host",
+ "cho ice",
+ "wi ng",
+ "win g",
+ "w ing",
+ "▁T itel",
+ "▁Tit el",
+ "▁Ti tel",
+ "▁befind et",
+ "lar ge",
+ "larg e",
+ "▁con ten",
+ "▁cont en",
+ "▁co nten",
+ "▁conte n",
+ "Java Script",
+ "▁de ser",
+ "▁des er",
+ "▁G ordon",
+ "▁Gor don",
+ "с пе",
+ "▁p atri",
+ "▁pat ri",
+ "▁pa tri",
+ "▁patr i",
+ "▁R andom",
+ "▁Rand om",
+ "▁Ran dom",
+ "▁ Random",
+ "▁Return s",
+ "ы м",
+ "ро ма",
+ "ром а",
+ "▁Stud ies",
+ "S l",
+ "▁fr ü",
+ "TE XT",
+ "T EXT",
+ "in ate",
+ "ina te",
+ "▁T ol",
+ "▁To l",
+ "▁every where",
+ "ar ta",
+ "art a",
+ "▁or bit",
+ "▁orb it",
+ "▁A ires",
+ "▁Air es",
+ "▁I ss",
+ "▁Is s",
+ "▁te ż",
+ "▁d iverse",
+ "▁di verse",
+ "▁divers e",
+ "▁diver se",
+ "▁n umeric",
+ "▁numer ic",
+ "▁ numeric",
+ "ma z",
+ "m az",
+ "▁m ise",
+ "▁mi se",
+ "▁mis e",
+ "▁batt ery",
+ "▁batter y",
+ "▁bat tery",
+ "▁A kadem",
+ "▁Ak adem",
+ "не ние",
+ "▁simult ane",
+ "▁D ead",
+ "▁De ad",
+ "▁cl ust",
+ "▁ot ro",
+ "▁c erca",
+ "▁cer ca",
+ "() `,",
+ "()` ,",
+ "( )`,",
+ "ro z",
+ "r oz",
+ "ă t",
+ "▁M O",
+ "▁ MO",
+ "ri ften",
+ "rift en",
+ "rif ten",
+ "import ant",
+ "▁je ho",
+ "▁find ViewById",
+ "▁ findViewById",
+ "▁con sequence",
+ "▁conse quence",
+ "▁consequ ence",
+ "▁measure d",
+ "▁meas ured",
+ "is hes",
+ "ish es",
+ "▁s ze",
+ "▁sz e",
+ "ien do",
+ "i endo",
+ "▁W ahl",
+ "▁Wa hl",
+ "st rip",
+ "str ip",
+ "AR D",
+ "▁op acity",
+ "▁ opacity",
+ "WOR D",
+ "W ORD",
+ "▁В і",
+ "▁L ocation",
+ "▁Lo cation",
+ "▁Loc ation",
+ "▁ Location",
+ "ra i",
+ "r ai",
+ "пе н",
+ "п ен",
+ "▁r if",
+ "▁ri f",
+ "▁ rif",
+ "auss ian",
+ "File Name",
+ "▁dis co",
+ "▁disc o",
+ "il en",
+ "ile n",
+ "i len",
+ "▁v agy",
+ "▁va gy",
+ "li city",
+ "lic ity",
+ "licit y",
+ "l icity",
+ "B order",
+ "▁T rack",
+ "▁Tr ack",
+ "▁Tra ck",
+ "▁ Track",
+ "бо м",
+ "б ом",
+ "fa ct",
+ "fac t",
+ "f act",
+ "ok a",
+ "o ka",
+ "▁g ior",
+ "▁gi or",
+ "▁ gior",
+ "▁XV II",
+ "▁XVI I",
+ "▁d är",
+ "Si te",
+ "S ite",
+ "ał o",
+ "a ło",
+ "sk á",
+ "s ká",
+ "▁pix els",
+ "▁pixel s",
+ "vi ty",
+ "v ity",
+ "j Query",
+ "▁sc ulpt",
+ "▁c argo",
+ "▁car go",
+ "▁direct ive",
+ "▁w al",
+ "▁wa l",
+ "▁ wal",
+ "▁c onna",
+ "▁con na",
+ "▁conn a",
+ "▁Th rough",
+ "▁э том",
+ "▁это м",
+ "St atic",
+ "Stat ic",
+ "oms nitt",
+ "▁r und",
+ "▁run d",
+ "▁ru nd",
+ "▁ rund",
+ "▁c laimed",
+ "▁claim ed",
+ "з ня",
+ "sh a",
+ "s ha",
+ "▁r ag",
+ "▁ra g",
+ "▁ rag",
+ "cre ment",
+ "cr ement",
+ "▁fün f",
+ "▁r ival",
+ "▁riv al",
+ "▁ri val",
+ "▁ rival",
+ "ri n",
+ "r in",
+ "sl ash",
+ "▁th irty",
+ "s leep",
+ "оло ги",
+ "о логи",
+ "S M",
+ "ga te",
+ "gat e",
+ "g ate",
+ "iz ations",
+ "ization s",
+ "vi k",
+ "v ik",
+ "▁b less",
+ "▁bl ess",
+ "▁ble ss",
+ "▁Ill inois",
+ "▁T E",
+ "▁ TE",
+ "ut ing",
+ "uti ng",
+ "u ting",
+ "▁sol ving",
+ "GE R",
+ "G ER",
+ "▁X IV",
+ "▁XI V",
+ "▁Ind ians",
+ "▁India ns",
+ "▁Indian s",
+ "ex press",
+ "exp ress",
+ "expr ess",
+ "▁H eil",
+ "▁He il",
+ "▁mu jer",
+ "▁invån are",
+ "'] );",
+ "']) ;",
+ "' ]);",
+ "▁a ur",
+ "▁au r",
+ "▁ aur",
+ "bo ost",
+ "G O",
+ "▁n in",
+ "▁ni n",
+ "to k",
+ "t ok",
+ "go d",
+ "g od",
+ "ot er",
+ "ote r",
+ "o ter",
+ ")$ $",
+ ") $$",
+ "▁desc end",
+ "р ю",
+ "▁L anguage",
+ "▁ Language",
+ "▁d iver",
+ "▁di ver",
+ "▁div er",
+ "▁Ass uming",
+ "▁fre quent",
+ "▁frequ ent",
+ "ч ні",
+ "▁Bi ography",
+ ", [",
+ "ur m",
+ "u rm",
+ "▁walk ed",
+ "▁wal ked",
+ "▁feder al",
+ "▁fed eral",
+ "▁Mich igan",
+ "▁fact s",
+ "▁fac ts",
+ "▁In tegr",
+ "▁Int egr",
+ "▁ Integr",
+ "LE S",
+ "L ES",
+ "▁A lan",
+ "▁Al an",
+ "▁c oup",
+ "▁co up",
+ "▁cou p",
+ "Be r",
+ "B er",
+ "▁p articles",
+ "▁part icles",
+ "▁partic les",
+ "▁particle s",
+ "▁parti cles",
+ "ћ е",
+ "Infl ater",
+ "+ (",
+ "Bo und",
+ "B ound",
+ "▁S ü",
+ "A udio",
+ "cite t",
+ "cit et",
+ "c itet",
+ "ye ct",
+ "y ect",
+ "▁n r",
+ "▁ nr",
+ "x e",
+ "▁B run",
+ "▁Br un",
+ "▁Bru n",
+ "▁_ ,",
+ "▁ _,",
+ "av or",
+ "avo r",
+ "a vor",
+ "▁dis cipl",
+ "al m",
+ "a lm",
+ "▁но ября",
+ "▁S SL",
+ "▁SS L",
+ "▁ SSL",
+ "▁Ka iser",
+ "▁Kais er",
+ "▁re cher",
+ "▁rec her",
+ "yg on",
+ "y gon",
+ "▁regard less",
+ "▁config ur",
+ "▁un necess",
+ "▁Cl ark",
+ "▁Clar k",
+ "PH P",
+ "P HP",
+ "▁F ALSE",
+ "▁ FALSE",
+ "▁p ad",
+ "▁pa d",
+ "▁ pad",
+ "$ }",
+ "▁v alu",
+ "▁val u",
+ "▁va lu",
+ "▁ valu",
+ "▁dise ase",
+ "▁ma ior",
+ "▁mai or",
+ "▁h ommes",
+ "▁hom mes",
+ "▁homme s",
+ "▁Ed ition",
+ "▁Edit ion",
+ "sl ant",
+ "s lant",
+ "▁en ding",
+ "▁end ing",
+ "▁ ending",
+ "▁sett led",
+ "ur us",
+ "uru s",
+ "u rus",
+ "he d",
+ "h ed",
+ "Pat tern",
+ "▁го дина",
+ "▁годи на",
+ "▁Phil adel",
+ "tikz picture",
+ "▁co al",
+ "▁s ede",
+ "▁se de",
+ "▁sed e",
+ "▁satisf ies",
+ "▁t rim",
+ "▁tr im",
+ "▁tri m",
+ "▁ trim",
+ "▁b at",
+ "▁ba t",
+ "▁ bat",
+ "▁améric ain",
+ "▁lug lio",
+ "▁по ча",
+ "▁поч а",
+ "ff ff",
+ "fff f",
+ "f fff",
+ "▁T arget",
+ "▁Tar get",
+ "▁ Target",
+ "gener ate",
+ "▁Z ie",
+ "ți a",
+ "ț ia",
+ "▁g ard",
+ "▁gar d",
+ "▁ga rd",
+ "▁work ers",
+ "▁worker s",
+ "▁J ob",
+ "▁Jo b",
+ "▁ Job",
+ "▁ur ban",
+ "▁urb an",
+ "▁ urban",
+ "ah len",
+ "ahl en",
+ "a hlen",
+ "▁Build ing",
+ "▁n eu",
+ "▁ne u",
+ "▁ch ron",
+ "▁chr on",
+ "▁ chron",
+ "▁Ear l",
+ "gr o",
+ "g ro",
+ "US E",
+ "U SE",
+ "▁X II",
+ "▁XI I",
+ "▁we alth",
+ "▁ wealth",
+ "in ae",
+ "ina e",
+ "▁Б ра",
+ "▁li bert",
+ "▁lib ert",
+ "▁liber t",
+ "ir os",
+ "iro s",
+ "i ros",
+ ": $",
+ "le e",
+ "l ee",
+ "ie ves",
+ "ieve s",
+ "iev es",
+ "▁Just ice",
+ "▁o il",
+ "▁Ath let",
+ "▁c lo",
+ "▁cl o",
+ "▁ clo",
+ "Sc ale",
+ "Scal e",
+ "▁l ips",
+ "▁li ps",
+ "▁lip s",
+ "▁a pril",
+ "▁ap ril",
+ "▁apr il",
+ "▁im pression",
+ "▁imp ression",
+ "▁impr ession",
+ "▁impress ion",
+ "▁per ce",
+ "▁уча сти",
+ "▁участ и",
+ "vi l",
+ "v il",
+ "éc h",
+ "é ch",
+ "▁e quality",
+ "▁equ ality",
+ "▁equal ity",
+ "▁ equality",
+ "▁м ет",
+ "▁ме т",
+ "▁ мет",
+ "▁an notation",
+ "▁annot ation",
+ "▁ annotation",
+ "er nal",
+ "ern al",
+ "erna l",
+ "▁M ach",
+ "▁Ma ch",
+ "▁Mac h",
+ "▁int itul",
+ "pro blem",
+ "prob lem",
+ "ющи х",
+ "ю щих",
+ "op lus",
+ "o plus",
+ "▁thous ands",
+ "▁thousand s",
+ "▁calcul ations",
+ "▁calculation s",
+ "▁calc ulations",
+ "um ps",
+ "ump s",
+ "▁tri angle",
+ "▁ triangle",
+ "ph al",
+ "pha l",
+ "p hal",
+ "▁D orf",
+ "▁Do rf",
+ "▁Dor f",
+ "▁doll ars",
+ "▁d enen",
+ "▁de nen",
+ "▁den en",
+ "l ès",
+ "ol id",
+ "oli d",
+ "▁Result s",
+ "▁ Results",
+ "▁Stad ium",
+ "▁D esp",
+ "▁De sp",
+ "▁Des p",
+ "▁E isen",
+ "im ir",
+ "imi r",
+ "i mir",
+ "▁s otto",
+ "▁so tto",
+ "▁sott o",
+ "▁č i",
+ "▁ či",
+ "at able",
+ "ata ble",
+ "a table",
+ "or um",
+ "oru m",
+ "o rum",
+ "▁conver gence",
+ "▁je une",
+ "▁jeu ne",
+ "ok ing",
+ "oki ng",
+ "o king",
+ "▁жи во",
+ "ain ing",
+ "ai ning",
+ "a ining",
+ "po inter",
+ "point er",
+ "cul o",
+ "cu lo",
+ "c ulo",
+ "▁js ou",
+ "▁g rab",
+ "▁gr ab",
+ "▁gra b",
+ "ak te",
+ "akt e",
+ "a kte",
+ "▁ho ping",
+ "▁hop ing",
+ "▁M ak",
+ "▁Ma k",
+ "▁s ag",
+ "▁sa g",
+ "origin e",
+ "orig ine",
+ "▁по след",
+ "▁после д",
+ "▁V eg",
+ "▁Ve g",
+ "▁the oret",
+ "▁T ru",
+ "▁Tr u",
+ "ne ment",
+ "nem ent",
+ "n ement",
+ "▁f aces",
+ "▁fa ces",
+ "▁face s",
+ "▁fac es",
+ "▁ faces",
+ "H or",
+ "Jo in",
+ "J oin",
+ "ar el",
+ "are l",
+ "a rel",
+ "▁о коло",
+ "▁ок оло",
+ "How ever",
+ "▁c atal",
+ "▁ca tal",
+ "▁cat al",
+ "▁ catal",
+ "bo urg",
+ "bour g",
+ "b ourg",
+ "▁mysql i",
+ "▁mysq li",
+ "▁ mysqli",
+ "ac ions",
+ "acion s",
+ "aci ons",
+ "▁Init ial",
+ "▁ Initial",
+ "▁r ain",
+ "▁ra in",
+ "▁ rain",
+ "it ure",
+ "itu re",
+ "▁Sci ences",
+ "▁Science s",
+ "▁Kre is",
+ "._ _",
+ ". __",
+ "▁cin q",
+ "▁A uß",
+ "▁Au ß",
+ "ith met",
+ "it ors",
+ "ito rs",
+ "itor s",
+ "am azon",
+ "ama zon",
+ "▁g ap",
+ "▁ga p",
+ "▁ign ored",
+ "▁ignore d",
+ "▁ignor ed",
+ "ad v",
+ "ко ї",
+ "▁ча сть",
+ "▁час ть",
+ "▁част ь",
+ "▁cor por",
+ "▁corpo r",
+ "це р",
+ "ц ер",
+ "▁cr ime",
+ "▁cri me",
+ "▁crim e",
+ "uo us",
+ "u ous",
+ "▁на лази",
+ "Data Frame",
+ "во ди",
+ "вод и",
+ "Ig n",
+ "I gn",
+ "▁Lin coln",
+ "▁me nos",
+ "▁men os",
+ "▁Lu ft",
+ "▁L ind",
+ "▁Li nd",
+ "▁Lin d",
+ "▁C ook",
+ "▁Co ok",
+ "▁ Cook",
+ "▁material s",
+ "ap ped",
+ "app ed",
+ "appe d",
+ "a pped",
+ "ign ore",
+ "▁от кры",
+ "fr ied",
+ "fri ed",
+ "f ried",
+ "▁gouvern ement",
+ "▁f ired",
+ "▁fire d",
+ "▁fi red",
+ "▁fir ed",
+ "▁screen shot",
+ "▁screens hot",
+ "се н",
+ "с ен",
+ "▁[ (",
+ "▁ [(",
+ "▁органи за",
+ "Graph ics",
+ "▁про ти",
+ "▁p hen",
+ "▁ph en",
+ "▁ phen",
+ "cr aft",
+ "cra ft",
+ "c raft",
+ "▁b rain",
+ "▁br ain",
+ "▁bra in",
+ "▁C omo",
+ "▁Com o",
+ "▁Co mo",
+ "▁Every thing",
+ "an es",
+ "ane s",
+ "a nes",
+ "IG N",
+ "I GN",
+ "▁n ederbörd",
+ "▁ nederbörd",
+ "▁For est",
+ "▁Fore st",
+ "▁Fo rest",
+ "za hl",
+ "z ahl",
+ "▁Am ong",
+ "Q t",
+ "▁to gg",
+ "▁tog g",
+ "▁vari ant",
+ "▁ variant",
+ "▁h ill",
+ "▁hi ll",
+ "▁ hill",
+ "пи си",
+ "пис и",
+ "col on",
+ "co lon",
+ "colo n",
+ "▁dic embre",
+ "го р",
+ "г ор",
+ "▁W ind",
+ "▁Win d",
+ "▁Wi nd",
+ "ünst ler",
+ "▁= \\",
+ "▁ =\\",
+ "sa ved",
+ "save d",
+ "s aved",
+ "▁n ej",
+ "▁ne j",
+ "▁ nej",
+ "un te",
+ "unt e",
+ "ut to",
+ "utt o",
+ "u tto",
+ "▁rec ens",
+ "▁rece ns",
+ "▁s ick",
+ "▁si ck",
+ "▁sic k",
+ "▁d esen",
+ "▁de sen",
+ "▁des en",
+ "US T",
+ "U ST",
+ "▁wor st",
+ "▁An gel",
+ "▁Ang el",
+ "od ox",
+ "odo x",
+ "▁Prov ince",
+ "▁Provin ce",
+ "▁M az",
+ "▁Ma z",
+ "▁agre ement",
+ "▁agree ment",
+ "▁B ass",
+ "▁Bas s",
+ "▁Ba ss",
+ "▁seg unda",
+ "on ces",
+ "once s",
+ "onc es",
+ "▁Lin ki",
+ "▁Link i",
+ "▁C L",
+ "▁ CL",
+ "▁j á",
+ "it ement",
+ "ite ment",
+ "item ent",
+ "▁á rea",
+ "▁ár ea",
+ "▁scal ar",
+ "▁scala r",
+ "▁Р ес",
+ "▁Ре с",
+ "aw t",
+ "a wt",
+ "si eme",
+ "▁j uni",
+ "▁ju ni",
+ "▁jun i",
+ "▁худо ж",
+ "ik us",
+ "iku s",
+ "▁l id",
+ "▁li d",
+ "pp el",
+ "ppe l",
+ "p pel",
+ "av i",
+ "a vi",
+ "▁bal ance",
+ "ip ping",
+ "ipp ing",
+ "ippi ng",
+ "i pping",
+ "cuss ion",
+ "че ских",
+ "(\" .",
+ "( \".",
+ "Al so",
+ "▁w his",
+ "▁wh is",
+ "HO ME",
+ "▁b rown",
+ "▁br own",
+ "▁bro wn",
+ "▁brow n",
+ "▁d ía",
+ "▁dí a",
+ "▁pu ò",
+ "plot lib",
+ "▁Jahrhundert s",
+ "D K",
+ "▁an chor",
+ "▁anc hor",
+ "▁anch or",
+ "▁ anchor",
+ ".. .]",
+ "... ]",
+ "▁Aust ria",
+ "▁m arca",
+ "▁mar ca",
+ "▁marc a",
+ "▁g ez",
+ "▁ge z",
+ "ious ly",
+ "i ously",
+ "▁l azy",
+ "▁la zy",
+ "x a",
+ "▁Ch annel",
+ "▁Chan nel",
+ "▁ Channel",
+ "▁ne uen",
+ "▁neue n",
+ "▁neu en",
+ "da s",
+ "d as",
+ "▁search ed",
+ "▁sta at",
+ "▁ staat",
+ "▁Та к",
+ "▁Jo sef",
+ "▁Jose f",
+ "▁Jos ef",
+ "▁S her",
+ "▁Sh er",
+ "▁She r",
+ "po is",
+ "p ois",
+ "▁e nem",
+ "▁en em",
+ "▁access ing",
+ "▁не ко",
+ "▁fur ono",
+ "▁pse udo",
+ "▁pseud o",
+ "? >",
+ "▁estado un",
+ "▁estad oun",
+ "▁Ви ди",
+ "▁mot iv",
+ "▁re call",
+ "▁rec all",
+ "is son",
+ "iss on",
+ "i sson",
+ "ó b",
+ ")- -",
+ ") --",
+ "▁E rz",
+ "▁Er z",
+ "▁са вез",
+ "Dir ect",
+ "Di rect",
+ "D irect",
+ "со б",
+ "с об",
+ "▁s ho",
+ "▁sh o",
+ "v ölker",
+ "A p",
+ "ge ns",
+ "gen s",
+ "g ens",
+ "ниш тво",
+ "▁Am sterdam",
+ "us k",
+ "u sk",
+ "п ло",
+ "▁sim ulation",
+ "▁B C",
+ "▁ BC",
+ "▁W oj",
+ "▁Wo j",
+ "au tom",
+ "aut om",
+ "auto m",
+ "Al ex",
+ "A lex",
+ "▁econom ic",
+ "▁econ omic",
+ "го м",
+ "г ом",
+ "ik ai",
+ "ika i",
+ "▁a ltre",
+ "▁al tre",
+ "▁alt re",
+ "▁' -",
+ "▁ '-",
+ "▁W eg",
+ "▁We g",
+ "Not Found",
+ "й ской",
+ "▁convert ing",
+ "▁conver ting",
+ "ph abet",
+ "pha bet",
+ "at rice",
+ "atr ice",
+ "atri ce",
+ "bour ne",
+ "al om",
+ "alo m",
+ "▁comp aring",
+ "▁compar ing",
+ "▁Z o",
+ "▁f la",
+ "▁fl a",
+ "ва я",
+ "▁en tra",
+ "▁ent ra",
+ "▁entr a",
+ "▁char set",
+ "▁chars et",
+ "develop ers",
+ "developer s",
+ "íst ica",
+ "} >",
+ "▁J azz",
+ "▁Ja zz",
+ "▁How ard",
+ "▁Ho ward",
+ "ш та",
+ "▁cl one",
+ "▁clo ne",
+ "▁ clone",
+ "do or",
+ "d oor",
+ "▁P in",
+ "▁Pi n",
+ "** *",
+ "* **",
+ "▁sil ent",
+ "ec ycle",
+ "e cycle",
+ "is ce",
+ "isc e",
+ "i sce",
+ "▁m ud",
+ "▁mu d",
+ "▁Dis play",
+ "▁ Display",
+ "▁l ip",
+ "▁li p",
+ "▁ lip",
+ "▁исполь зова",
+ "▁character istic",
+ "▁s b",
+ "▁ sb",
+ "fire base",
+ "▁B ew",
+ "▁Be w",
+ "Cal endar",
+ "▁u so",
+ "▁us o",
+ "▁ uso",
+ "ès e",
+ "è se",
+ "▁R at",
+ "▁Ra t",
+ "▁es per",
+ "▁espe r",
+ "▁esp er",
+ "▁ esper",
+ "▁throw ing",
+ "▁thro wing",
+ "▁ro dz",
+ "▁rod z",
+ "▁y ards",
+ "▁yard s",
+ "▁g rass",
+ "▁gr ass",
+ "▁gra ss",
+ "▁mar ker",
+ "▁mark er",
+ "▁ marker",
+ "▁K os",
+ "▁Ko s",
+ "Th eta",
+ "The ta",
+ "▁organ is",
+ "ker nel",
+ "kern el",
+ "k ernel",
+ "▁person as",
+ "▁pers onas",
+ "▁persona s",
+ "ke ep",
+ "kee p",
+ "▁exc laimed",
+ "os lav",
+ "▁Ent ertain",
+ "▁Enter tain",
+ "не р",
+ "н ер",
+ "▁in won",
+ "▁R and",
+ "▁Ra nd",
+ "▁Ran d",
+ "red uce",
+ "redu ce",
+ "fa c",
+ "f ac",
+ "ex pression",
+ "exp ression",
+ "expr ession",
+ "express ion",
+ "y j",
+ "▁differ enti",
+ "▁different i",
+ "ag lia",
+ "agli a",
+ "▁tem plates",
+ "▁template s",
+ "▁ templates",
+ "▁m ű",
+ "▁p rv",
+ "▁pr v",
+ "▁m ois",
+ "▁mo is",
+ "▁moi s",
+ "▁gew ann",
+ "▁бу ла",
+ "bib li",
+ "b ibli",
+ "de mo",
+ "dem o",
+ "d emo",
+ "▁And erson",
+ "▁Anders on",
+ "▁ре д",
+ "▁ ред",
+ "▁por que",
+ "▁P ologne",
+ "▁Pol ogne",
+ "▁t rip",
+ "▁tr ip",
+ "▁tri p",
+ "▁exem ple",
+ "▁exempl e",
+ "▁Intern acional",
+ "▁ка о",
+ "In sert",
+ "gen eral",
+ "gener al",
+ "SE SSION",
+ "ber ga",
+ "berg a",
+ "hä lt",
+ "h ält",
+ "un as",
+ "una s",
+ "u nas",
+ "ми ра",
+ "мир а",
+ "▁yield s",
+ "map sto",
+ "maps to",
+ "sp ot",
+ "s pot",
+ "▁+ \\",
+ "▁ +\\",
+ "лл а",
+ "л ла",
+ "▁precis ely",
+ "▁precise ly",
+ "▁ч лен",
+ "sh adow",
+ "Ar e",
+ "A re",
+ "un al",
+ "una l",
+ "u nal",
+ "▁dis par",
+ "▁disp ar",
+ "▁tít ulo",
+ "ne st",
+ "nes t",
+ "n est",
+ "▁L ow",
+ "▁Lo w",
+ "▁p rot",
+ "▁pro t",
+ "▁pr ot",
+ "▁C osta",
+ "▁Co sta",
+ "▁Cost a",
+ "▁Cos ta",
+ "name d",
+ "na med",
+ "nam ed",
+ "n amed",
+ "▁g ained",
+ "▁ga ined",
+ "▁gain ed",
+ "les ia",
+ "l esia",
+ "▁admin istration",
+ "▁administr ation",
+ "Im port",
+ "Imp ort",
+ "br anch",
+ "b ranch",
+ "▁sym path",
+ "vo j",
+ "v oj",
+ "▁E C",
+ "▁ EC",
+ "▁municip io",
+ "▁anim ated",
+ "▁animate d",
+ "▁direct ories",
+ "▁director ies",
+ "▁ro of",
+ "zą d",
+ "z ąd",
+ "im et",
+ "ime t",
+ "i met",
+ "pr oto",
+ "pro to",
+ "bl a",
+ "b la",
+ ": ]",
+ "ha ve",
+ "hav e",
+ "h ave",
+ "at em",
+ "ate m",
+ "a tem",
+ "▁n s",
+ "▁ ns",
+ "▁s ector",
+ "▁se ctor",
+ "▁sec tor",
+ "▁sect or",
+ "th ree",
+ "ow ane",
+ "owa ne",
+ "owan e",
+ "wer s",
+ "we rs",
+ "w ers",
+ "ов их",
+ "ови х",
+ "ren ce",
+ "r ence",
+ "▁ex tr",
+ "▁ext r",
+ "ig ten",
+ "igt en",
+ "igte n",
+ "▁occ ident",
+ "ț ă",
+ "▁e at",
+ "▁h ydro",
+ "▁hy dro",
+ "▁hyd ro",
+ "ubern etes",
+ "[ @",
+ "▁M oon",
+ "▁Mo on",
+ "▁S ho",
+ "▁Sh o",
+ "▁else where",
+ "ül ler",
+ "üll er",
+ "Up load",
+ "ла нд",
+ "лан д",
+ "л анд",
+ "▁F ör",
+ "w issenschaft",
+ "K S",
+ "▁phys ics",
+ "▁ physics",
+ "t z",
+ "▁се ред",
+ "▁Ar beit",
+ "▁Arbe it",
+ "▁ме ст",
+ "▁ мест",
+ "▁Geb iet",
+ "▁in sect",
+ "▁ins ect",
+ "▁inse ct",
+ "A h",
+ "iz ado",
+ "iza do",
+ "▁tem ple",
+ "▁temp le",
+ "▁ann ual",
+ "st ad",
+ "sta d",
+ "▁hab itat",
+ "▁habit at",
+ "▁A B",
+ "▁ AB",
+ "wo rt",
+ "wor t",
+ "w ort",
+ "▁re pos",
+ "▁rep os",
+ "▁repo s",
+ "▁N eu",
+ "▁Ne u",
+ "▁$ (\".",
+ "▁$( \".",
+ "▁$(\" .",
+ "Vor lage",
+ "▁repre zent",
+ "est anden",
+ "In tern",
+ "Int ern",
+ "Inter n",
+ ". `",
+ "▁fa iling",
+ "▁fail ing",
+ "▁M aterial",
+ "▁Mate rial",
+ "▁ Material",
+ "▁effect ively",
+ "▁effective ly",
+ "те лем",
+ "тел ем",
+ "▁г ла",
+ "▁ гла",
+ "▁na hm",
+ "▁nah m",
+ "▁ nahm",
+ "▁differ ently",
+ "▁different ly",
+ "ext ension",
+ "▁V erm",
+ "▁Ver m",
+ "▁Ve rm",
+ "en abled",
+ "ena bled",
+ "enable d",
+ "con figure",
+ "config ure",
+ "ni o",
+ "n io",
+ "ci ones",
+ "cio nes",
+ "cion es",
+ "c iones",
+ "▁B each",
+ "▁Be ach",
+ "со на",
+ "сон а",
+ "с она",
+ "▁copy ing",
+ "▁cop ying",
+ "▁у країн",
+ "▁при зна",
+ "▁приз на",
+ "z h",
+ "Des ktop",
+ "▁s ost",
+ "▁so st",
+ "▁sub sequently",
+ "▁subsequ ently",
+ "▁subsequent ly",
+ "▁Le hr",
+ "▁ ó",
+ "lä r",
+ "l är",
+ "od or",
+ "odo r",
+ "o dor",
+ "ph on",
+ "p hon",
+ "n c",
+ "iter ator",
+ "▁э ти",
+ "▁europ é",
+ "▁Tor onto",
+ "ód igo",
+ "▁p osto",
+ "▁po sto",
+ "▁pos to",
+ "▁post o",
+ "ff e",
+ "f fe",
+ "▁c rew",
+ "▁cre w",
+ "▁cr ew",
+ "▁Sch war",
+ "▁Schw ar",
+ "S a",
+ "squ are",
+ "s quare",
+ "▁be side",
+ "▁bes ide",
+ "▁М і",
+ "▁a th",
+ "▁at h",
+ "▁ ath",
+ "▁ad vent",
+ "▁adv ent",
+ "c ji",
+ "writ ten",
+ "wr itten",
+ "w ritten",
+ "▁r uss",
+ "▁ru ss",
+ "▁rus s",
+ "ro st",
+ "ros t",
+ "r ost",
+ "H I",
+ "▁d ice",
+ "▁di ce",
+ "▁dic e",
+ "cc a",
+ "c ca",
+ "▁d ép",
+ "▁dé p",
+ "pl y",
+ "p ly",
+ "big g",
+ "bi gg",
+ "b igg",
+ "zi ał",
+ "zia ł",
+ "z iał",
+ "üt t",
+ "ü tt",
+ "▁о дно",
+ "▁од но",
+ "J ECT",
+ "сь кому",
+ "сько му",
+ "ськ ому",
+ "no s",
+ "n os",
+ "mo ck",
+ "m ock",
+ "La unch",
+ "sa me",
+ "sam e",
+ "s ame",
+ "▁j obs",
+ "▁jo bs",
+ "▁job s",
+ "▁wide ly",
+ "▁wid ely",
+ "▁def ines",
+ "▁define s",
+ "▁defin es",
+ "▁P se",
+ "▁Ps e",
+ "▁neigh bour",
+ "▁neighb our",
+ "ющи е",
+ "▁cl oser",
+ "▁close r",
+ "▁clos er",
+ "▁clo ser",
+ "▁рас поло",
+ "▁распо ло",
+ "▁cl ubs",
+ "▁club s",
+ "fl y",
+ "f ly",
+ "ши м",
+ "ш им",
+ "▁suffer ed",
+ "▁suff ered",
+ "▁n ar",
+ "▁na r",
+ "▁ nar",
+ "▁l avor",
+ "▁la vor",
+ "▁lav or",
+ "Ext ension",
+ "ition ally",
+ "itional ly",
+ "▁g race",
+ "▁gr ace",
+ "▁gra ce",
+ "▁Campe onato",
+ "▁Christ mas",
+ "m iddle",
+ "oth ek",
+ "othe k",
+ "el ements",
+ "element s",
+ "ele ments",
+ "elem ents",
+ "▁son dern",
+ "▁t arde",
+ "▁tar de",
+ "▁tard e",
+ "▁perman ent",
+ "▁con clude",
+ "▁concl ude",
+ "Se g",
+ "S eg",
+ "▁а каде",
+ "}\" ,",
+ "} \",",
+ "▁февра ля",
+ "ře d",
+ "ř ed",
+ "▁I L",
+ "▁ IL",
+ "ju d",
+ "j ud",
+ "▁U SS",
+ "▁US S",
+ "▁N ature",
+ "▁Natur e",
+ "▁Nat ure",
+ "if ference",
+ "iffer ence",
+ "iffe rence",
+ "Serial izer",
+ "▁tw elve",
+ "ti d",
+ "t id",
+ "ми я",
+ "че ского",
+ "▁cal endar",
+ "▁ calendar",
+ "con cat",
+ "▁inter section",
+ "▁intersect ion",
+ "▁P A",
+ "▁ PA",
+ "az ure",
+ "azu re",
+ "▁situ ée",
+ "▁situé e",
+ "▁k inds",
+ "▁kind s",
+ "▁kin ds",
+ "▁aus ge",
+ "▁r ural",
+ "▁ru ral",
+ "Th eme",
+ "The me",
+ "▁t ale",
+ "▁tal e",
+ "▁ta le",
+ "no indent",
+ "go ing",
+ "r x",
+ "ag i",
+ "a gi",
+ "wrap per",
+ "wr apper",
+ "w rapper",
+ "▁Co ast",
+ "mb H",
+ "▁пере д",
+ "▁пе ред",
+ "sp re",
+ "spr e",
+ "s pre",
+ "▁} \\",
+ "▁ }\\",
+ "▁L I",
+ "▁ LI",
+ "zn am",
+ "zna m",
+ "z nam",
+ "it led",
+ "itle d",
+ "Sam ple",
+ "S ample",
+ "ul iar",
+ "uli ar",
+ "* \\",
+ "▁res istance",
+ "▁resist ance",
+ "st ock",
+ "sto ck",
+ "ke d",
+ "k ed",
+ "▁H E",
+ "▁ HE",
+ "▁pos session",
+ "▁poss ession",
+ "▁possess ion",
+ "▁R ing",
+ "▁Ri ng",
+ "▁m agyar",
+ "▁mag yar",
+ "ou ts",
+ "out s",
+ "o uts",
+ "▁Secret ary",
+ "nd e",
+ "n de",
+ "▁W ald",
+ "▁Wal d",
+ "▁Wa ld",
+ "- (",
+ "▁I SO",
+ "▁IS O",
+ "▁ ISO",
+ "▁af ternoon",
+ "ion en",
+ "io nen",
+ "ione n",
+ "i onen",
+ "▁st ops",
+ "▁stop s",
+ "▁sto ps",
+ "▁const ants",
+ "▁constant s",
+ "gu ard",
+ "bo w",
+ "b ow",
+ "▁e rs",
+ "▁er s",
+ "▁ ers",
+ "▁Fire base",
+ "▁C lear",
+ "▁Cl ear",
+ "▁Cle ar",
+ "▁ Clear",
+ "▁H oly",
+ "▁Hol y",
+ "▁Ho ly",
+ "W in",
+ "▁title s",
+ "▁tit les",
+ "▁т рав",
+ "▁тра в",
+ "▁cont rib",
+ "▁contr ib",
+ "▁ contrib",
+ "hä ng",
+ "h äng",
+ "▁phot ograph",
+ "▁photo graph",
+ "▁Dist ribution",
+ "if ts",
+ "ift s",
+ "▁a unque",
+ "com b",
+ "co mb",
+ "c omb",
+ "AD D",
+ "A DD",
+ "▁public ation",
+ "▁pub lication",
+ "▁publi cation",
+ "▁слу ж",
+ "▁к ня",
+ "▁ay ant",
+ "▁re store",
+ "▁r estore",
+ "▁rest ore",
+ "▁resto re",
+ "▁bel ief",
+ "▁v ég",
+ "▁vé g",
+ "▁ext ensions",
+ "▁extension s",
+ "▁extens ions",
+ "▁ extensions",
+ "▁de com",
+ "▁dec om",
+ "вши й",
+ "в ший",
+ "W T",
+ "▁par ti",
+ "▁part i",
+ "▁gi oc",
+ "▁ми ра",
+ "▁ мира",
+ "▁is su",
+ "▁iss u",
+ "pi pe",
+ "pip e",
+ "p ipe",
+ "▁pro ps",
+ "▁pr ops",
+ "▁prop s",
+ "▁ props",
+ "▁w illing",
+ "▁will ing",
+ "▁wil ling",
+ "▁n est",
+ "▁ne st",
+ "▁ nest",
+ "as o",
+ "a so",
+ "po t",
+ "p ot",
+ "▁hand les",
+ "▁handle s",
+ "▁ф о",
+ "▁ фо",
+ "▁m oder",
+ "▁mod er",
+ "▁mo der",
+ "▁mode r",
+ "▁eben falls",
+ "▁fight ing",
+ "um bn",
+ "umb n",
+ "▁trans parent",
+ "▁K rist",
+ "▁Kr ist",
+ "▁home s",
+ "▁hom es",
+ "▁ho mes",
+ "▁voy age",
+ "Fa iled",
+ "Fail ed",
+ "▁B ird",
+ "▁Bi rd",
+ "▁Bir d",
+ "▁He art",
+ "Count er",
+ "Co unter",
+ "C ounter",
+ "▁Scott ish",
+ "át ica",
+ "▁ar beit",
+ "▁ arbeit",
+ "^{ -\\",
+ "^{- \\",
+ "▁S or",
+ "▁So r",
+ "▁eng aged",
+ "▁engag ed",
+ "▁a side",
+ "▁as ide",
+ "▁asi de",
+ "▁F ou",
+ "▁Fo u",
+ "▁w iel",
+ "▁wie l",
+ "▁re const",
+ "▁recon st",
+ "ou sin",
+ "ous in",
+ "▁host ed",
+ "▁ho sted",
+ "▁hos ted",
+ "▁c lasse",
+ "▁class e",
+ "▁cl asse",
+ "▁clas se",
+ "▁con test",
+ "▁cont est",
+ "▁conte st",
+ ".. .\"",
+ "... \"",
+ "мо м",
+ "м ом",
+ "▁be an",
+ "▁ bean",
+ "ge m",
+ "g em",
+ "▁consult ato",
+ "▁b io",
+ "▁bi o",
+ "▁ bio",
+ "▁subject s",
+ "bo Box",
+ "▁Sch rift",
+ "▁d inner",
+ "▁din ner",
+ "ă r",
+ "▁r ówn",
+ "▁% %",
+ "▁ %%",
+ "ba ge",
+ "bag e",
+ "b age",
+ "▁ver öff",
+ "▁det ected",
+ "▁detect ed",
+ "ie nn",
+ "ien n",
+ "i enn",
+ "ro se",
+ "ros e",
+ "r ose",
+ "▁T on",
+ "▁To n",
+ "Comp lete",
+ "Comple te",
+ "▁pro to",
+ "▁pr oto",
+ "▁prot o",
+ "▁ proto",
+ "ich ts",
+ "icht s",
+ "i chts",
+ "ST AT",
+ "Check ed",
+ "▁in ten",
+ "▁i nten",
+ "▁int en",
+ "▁inte n",
+ "▁s mile",
+ "▁sm ile",
+ "▁st rip",
+ "▁str ip",
+ "▁stri p",
+ "▁ strip",
+ "ne ut",
+ "') ;\r",
+ "'); \r",
+ "' );\r",
+ "fo ur",
+ "f our",
+ "▁to das",
+ "▁tod as",
+ "▁toda s",
+ "Control s",
+ "▁thor ough",
+ "ru p",
+ "r up",
+ "▁држа ви",
+ "it ă",
+ "Pro tocol",
+ "К а",
+ "▁expand ed",
+ "ex tra",
+ "ext ra",
+ "op ort",
+ "opo rt",
+ "o port",
+ "▁Ста нов",
+ "le ases",
+ "lease s",
+ "▁n otion",
+ "▁not ion",
+ "▁no tion",
+ "▁g uest",
+ "▁gu est",
+ "▁Is lands",
+ "▁Island s",
+ "ic ked",
+ "ick ed",
+ "▁D ave",
+ "▁Dav e",
+ "▁Da ve",
+ "▁ref lection",
+ "▁reflect ion",
+ "li v",
+ "l iv",
+ "ál ní",
+ "▁reve aled",
+ "▁s og",
+ "▁so g",
+ "▁T ax",
+ "▁Ta x",
+ "▁period o",
+ "▁peri odo",
+ "▁Welt krie",
+ "catal ina",
+ "qu é",
+ "q ué",
+ "▁F ather",
+ "▁Fa ther",
+ "▁B ir",
+ "▁Bi r",
+ "ex pect",
+ "exp ect",
+ "▁re gression",
+ "▁reg ression",
+ "in é",
+ "i né",
+ "▁d abei",
+ "▁da bei",
+ "pe rm",
+ "per m",
+ "p erm",
+ "ме не",
+ "мен е",
+ "м ене",
+ "▁A bd",
+ "▁Ab d",
+ "▁C F",
+ "▁ CF",
+ "ar ks",
+ "ark s",
+ "resol ve",
+ "wed ge",
+ "w edge",
+ "▁initial ization",
+ "▁Vé ase",
+ "▁при ня",
+ "st mt",
+ "▁in come",
+ "▁inc ome",
+ "M Y",
+ "▁od kazy",
+ "▁Sie he",
+ "▁bod ies",
+ "▁s oc",
+ "▁so c",
+ "R andom",
+ "▁s enza",
+ "▁sen za",
+ "ab lo",
+ "abl o",
+ "a blo",
+ "▁reg arded",
+ "▁regard ed",
+ "on Create",
+ "▁Mag azine",
+ "▁R af",
+ "▁Ra f",
+ "▁Buen os",
+ "и л",
+ ")) );",
+ "))) ;",
+ ") ));",
+ "ca pt",
+ "cap t",
+ "c apt",
+ "re direct",
+ "red irect",
+ "▁pe tit",
+ "▁pet it",
+ "▁f arm",
+ "▁far m",
+ "▁fa rm",
+ "▁r ôle",
+ "▁стать и",
+ " ",
+ "sub figure",
+ "èce s",
+ "è ces",
+ "zi el",
+ "zie l",
+ "z iel",
+ "▁о кон",
+ "▁ок он",
+ "E E",
+ "me e",
+ "m ee",
+ "▁p erten",
+ "▁per ten",
+ "▁pert en",
+ "▁représ ent",
+ "▁L A",
+ "▁ LA",
+ "? '",
+ "▁т ру",
+ "▁r ational",
+ "▁rat ional",
+ "▁ratio nal",
+ "os of",
+ "oso f",
+ "▁k ne",
+ "▁kn e",
+ "▁art ists",
+ "▁artist s",
+ "Fl ow",
+ "F low",
+ "▁А ль",
+ "▁Ал ь",
+ "iz ard",
+ "iza rd",
+ "izar d",
+ "▁num ero",
+ "▁numer o",
+ "act ic",
+ "a ctic",
+ "▁de struct",
+ "▁dest ruct",
+ "▁destru ct",
+ "▁П ра",
+ "ons ieur",
+ "q t",
+ "ab estanden",
+ "no ść",
+ "Con nect",
+ "Conne ct",
+ "▁o racle",
+ "▁or acle",
+ "▁ora cle",
+ "▁ oracle",
+ "▁Stock holm",
+ "size of",
+ "▁gem äß",
+ "AC T",
+ "A CT",
+ "▁ex pert",
+ "▁exp ert",
+ "▁exper t",
+ "ut ions",
+ "ution s",
+ "uti ons",
+ "▁h acia",
+ "▁ha cia",
+ "▁log ger",
+ "▁ logger",
+ "▁f ool",
+ "▁fo ol",
+ "▁foo l",
+ "ry pto",
+ "rypt o",
+ "æ r",
+ "▁c idade",
+ "▁ci dade",
+ "▁состав е",
+ "▁соста ве",
+ "ok er",
+ "oke r",
+ "o ker",
+ "▁Trans fer",
+ "▁den ied",
+ "Tr ack",
+ "Tra ck",
+ "T rack",
+ "▁r adi",
+ "▁ra di",
+ "▁rad i",
+ "ze c",
+ "z ec",
+ "▁Histor ic",
+ "▁Einwo hner",
+ "ко ю",
+ "▁х ра",
+ "▁ хра",
+ "▁C ategory",
+ "▁ Category",
+ "▁Dis ney",
+ "▁sw ap",
+ "▁ swap",
+ "Be gin",
+ "B egin",
+ "▁m ientras",
+ "▁d ance",
+ "▁dan ce",
+ "▁t ête",
+ "▁d roit",
+ "▁dr oit",
+ "▁dro it",
+ "er ta",
+ "ert a",
+ "▁bird s",
+ "▁bir ds",
+ "▁con vin",
+ "▁conv in",
+ "par ator",
+ "para tor",
+ "д ра",
+ "▁E S",
+ "▁ ES",
+ "▁Ress ources",
+ "▁Ressource s",
+ "EG IN",
+ "ück e",
+ "ü cke",
+ "▁Cr uz",
+ "▁Cru z",
+ "ab ling",
+ "abl ing",
+ "a bling",
+ "▁\" @",
+ "▁me tres",
+ "▁met res",
+ "▁B eg",
+ "▁Be g",
+ "▁Gr ünd",
+ "▁B oh",
+ "▁Bo h",
+ "▁m ile",
+ "▁mil e",
+ "▁mi le",
+ "▁ mile",
+ "▁Techn ology",
+ "\" +",
+ "ac co",
+ "acc o",
+ "a cco",
+ "▁s s",
+ "▁ ss",
+ "▁F ed",
+ "▁Fe d",
+ "▁H end",
+ "▁He nd",
+ "▁Hen d",
+ "us ch",
+ "usc h",
+ "u sch",
+ "it ä",
+ "fol k",
+ "f olk",
+ "▁abs or",
+ "an tal",
+ "ant al",
+ "anta l",
+ "od ge",
+ "▁WH EN",
+ "▁Extern í",
+ "▁Reg iment",
+ "▁evalu ation",
+ "▁T ai",
+ "▁Ta i",
+ "▁voc als",
+ "▁vocal s",
+ "▁ex perimental",
+ "▁experiment al",
+ "em bed",
+ "emb ed",
+ "▁M inn",
+ "▁Min n",
+ "▁Mi nn",
+ "▁в ме",
+ "pr ec",
+ "pre c",
+ "p rec",
+ "ever y",
+ "ev ery",
+ "e very",
+ "▁ho of",
+ "▁Fern ando",
+ "▁Bibli ographie",
+ "▁n ag",
+ "▁na g",
+ "amerikan ischer",
+ "▁m arks",
+ "▁mar ks",
+ "▁mark s",
+ "▁ marks",
+ "▁U TC",
+ "▁ UTC",
+ "▁un certain",
+ "ди я",
+ "ol ia",
+ "oli a",
+ "o lia",
+ "▁c up",
+ "▁cu p",
+ "▁ cup",
+ "▁f ille",
+ "▁fil le",
+ "▁fill e",
+ "▁fi lle",
+ "▁d ok",
+ "▁do k",
+ "use ppe",
+ "est erd",
+ "ester d",
+ "este rd",
+ "e sterd",
+ "▁B rand",
+ "▁Br and",
+ "▁Bra nd",
+ "▁Bran d",
+ "▁Th ird",
+ "P P",
+ "no des",
+ "node s",
+ "n odes",
+ "▁P ad",
+ "▁Pa d",
+ "▁ Pad",
+ "▁l oved",
+ "▁lo ved",
+ "▁love d",
+ "▁lov ed",
+ "sw ing",
+ "s wing",
+ "▁surpr ised",
+ "▁surprise d",
+ "ar di",
+ "ard i",
+ "▁G R",
+ "▁ GR",
+ "] \"",
+ "▁equ ally",
+ "▁equal ly",
+ "▁eq ually",
+ "ih e",
+ "i he",
+ "ca re",
+ "car e",
+ "c are",
+ "пи сок",
+ "пис ок",
+ "li jk",
+ "lij k",
+ "l ijk",
+ "ri nn",
+ "rin n",
+ "r inn",
+ "▁\\ [\\",
+ "▁\\[ \\",
+ "▁s ons",
+ "▁so ns",
+ "▁son s",
+ "▁t ät",
+ "ic amente",
+ "ica mente",
+ "▁l isting",
+ "▁list ing",
+ "iel lement",
+ "ielle ment",
+ "▁nyel ven",
+ "▁d s",
+ "▁ ds",
+ "▁agr icult",
+ "▁H ermann",
+ "▁Her mann",
+ "▁Herm ann",
+ "▁bes ides",
+ "▁beside s",
+ "pro gress",
+ "prog ress",
+ "▁pec uliar",
+ "fo cus",
+ "f ocus",
+ "c n",
+ "- $",
+ "ствен ный",
+ "ou rg",
+ "our g",
+ "o urg",
+ "▁w yn",
+ "▁wy n",
+ "▁conduct ed",
+ "▁condu cted",
+ "▁Станов ништво",
+ "connect ed",
+ "conne cted",
+ "conn ected",
+ "▁b ott",
+ "▁bo tt",
+ "▁bot t",
+ "▁с мер",
+ "▁см ер",
+ "▁P oz",
+ "▁Po z",
+ "un ct",
+ "unc t",
+ "con da",
+ "cond a",
+ "c onda",
+ "▁савез ној",
+ "▁ha vet",
+ "▁have t",
+ "▁hav et",
+ "li gt",
+ "lig t",
+ "l igt",
+ "or ted",
+ "ort ed",
+ "orte d",
+ "▁ent ering",
+ "▁enter ing",
+ "mult ip",
+ "multi p",
+ "mul tip",
+ "▁Tem ple",
+ "▁Temp le",
+ "▁P lant",
+ "▁Pl ant",
+ "▁Plan t",
+ "▁Pla nt",
+ "type of",
+ "▁V lad",
+ "▁qu ed",
+ "▁que d",
+ "▁q ued",
+ "▁re ste",
+ "▁r este",
+ "▁res te",
+ "▁rest e",
+ "▁ма й",
+ "▁ май",
+ "▁V ery",
+ "▁Ver y",
+ "▁Ve ry",
+ "ambigu ation",
+ "▁ch alleng",
+ "▁res pective",
+ "▁respect ive",
+ "▁т ор",
+ "▁то р",
+ "▁ тор",
+ "C trl",
+ "▁abs ence",
+ "ar u",
+ "a ru",
+ "во е",
+ "▁för st",
+ "▁s q",
+ "▁ sq",
+ "▁Em peror",
+ "▁I gn",
+ "▁Ig n",
+ "▁ Ign",
+ "▁т ова",
+ "▁то ва",
+ "▁ това",
+ ": `",
+ "ad oop",
+ "ado op",
+ "▁Mad ame",
+ "▁gru ppo",
+ "▁grup po",
+ "st ud",
+ "▁extern as",
+ "▁Александ р",
+ "▁d ign",
+ "▁di gn",
+ "▁dig n",
+ "▁жи ве",
+ "Am ount",
+ "A mount",
+ "▁correl ate",
+ "▁corre late",
+ "▁F ant",
+ "▁Fa nt",
+ "▁r ails",
+ "▁ra ils",
+ "▁rail s",
+ "▁ rails",
+ "f p",
+ "министра тив",
+ "▁b ought",
+ "▁fil ters",
+ "▁filter s",
+ "▁ filters",
+ "▁anc ora",
+ "▁part ner",
+ "▁qu and",
+ "▁quan d",
+ "sym bol",
+ "s ymbol",
+ "ul ating",
+ "ula ting",
+ "▁z d",
+ "▁ zd",
+ "aw n",
+ "a wn",
+ "▁G rant",
+ "▁Gr ant",
+ "▁Gra nt",
+ "▁Gran t",
+ "bec ause",
+ "b ecause",
+ "ra ble",
+ "rab le",
+ "r able",
+ "\\ }",
+ "íst icas",
+ "ística s",
+ "▁у че",
+ "▁péri ode",
+ "▁s ke",
+ "▁sk e",
+ "▁ ske",
+ "▁Any way",
+ "▁index es",
+ "▁inde xes",
+ "▁direct ions",
+ "▁dire ctions",
+ "▁direction s",
+ "▁R AM",
+ "▁RA M",
+ "▁ RAM",
+ "ch rome",
+ "chr ome",
+ "chrom e",
+ "▁a post",
+ "▁ap ost",
+ "▁apo st",
+ "▁war nings",
+ "▁warning s",
+ "▁warn ings",
+ "▁Air port",
+ "V I",
+ "ab ile",
+ "abil e",
+ "abi le",
+ "▁l ord",
+ "▁lo rd",
+ "pro vider",
+ "prov ider",
+ "▁J i",
+ "ost ream",
+ "o stream",
+ "▁geme ente",
+ "table View",
+ "Ex tra",
+ "Ext ra",
+ "c ursor",
+ "eg round",
+ "egr ound",
+ "e ground",
+ "▁M oz",
+ "▁Mo z",
+ "▁r ib",
+ "▁ri b",
+ "▁ rib",
+ "▁m orph",
+ "▁mor ph",
+ "lo ads",
+ "load s",
+ "el sk",
+ "els k",
+ "▁M AX",
+ "▁MA X",
+ "▁ MAX",
+ "▁Santi ago",
+ "▁H im",
+ "▁Hi m",
+ "code s",
+ "co des",
+ "cod es",
+ "c odes",
+ "▁l anz",
+ "▁lan z",
+ "▁count s",
+ "▁coun ts",
+ "rinn ingsområ",
+ "щ ё",
+ "▁sp é",
+ "▁pier ws",
+ "▁pierw s",
+ "▁S ver",
+ "▁Sv er",
+ "▁a cknow",
+ "▁ac know",
+ "Bo olean",
+ "▁фами ли",
+ "▁Sen ate",
+ "шо в",
+ "ш ов",
+ "ag ers",
+ "age rs",
+ "ager s",
+ "a gers",
+ "▁Nue va",
+ "bi l",
+ "b il",
+ "ki em",
+ "kie m",
+ "k iem",
+ "▁M ey",
+ "▁Me y",
+ "wi j",
+ "w ij",
+ "▁G mbH",
+ "valid ation",
+ "▁en suite",
+ "in king",
+ "ink ing",
+ "▁c ampion",
+ "▁camp ion",
+ "▁finan cial",
+ "▁financi al",
+ "iz on",
+ "izo n",
+ "i zon",
+ "He aders",
+ "Head ers",
+ "Header s",
+ "▁deprec ated",
+ "▁fon ction",
+ "RE G",
+ "R EG",
+ "▁vol umes",
+ "▁volume s",
+ "▁C hi",
+ "▁Ch i",
+ "▁encounter ed",
+ "la k",
+ "l ak",
+ "ра я",
+ "▁contin ues",
+ "▁continu es",
+ "▁continue s",
+ "▁~ [",
+ "uer te",
+ "u erte",
+ "▁\\ ;",
+ "▁ \\;",
+ "▁D ok",
+ "▁Do k",
+ "▁we ights",
+ "▁weight s",
+ "▁r h",
+ "▁ rh",
+ "▁Na pole",
+ "▁Nap ole",
+ "▁natur ally",
+ "▁natural ly",
+ "sk u",
+ "s ku",
+ "pa s",
+ "p as",
+ "▁g egründ",
+ "et r",
+ "e tr",
+ "▁K u",
+ "ic ted",
+ "ict ed",
+ "i cted",
+ "▁fab ric",
+ "▁A SC",
+ "▁AS C",
+ "▁ ASC",
+ "▁Entertain ment",
+ "▁en erg",
+ "▁ener g",
+ "кла д",
+ "к лад",
+ "om on",
+ "omo n",
+ "o mon",
+ "th eme",
+ "the me",
+ "▁ха рак",
+ "▁d raft",
+ "▁dr aft",
+ "▁dra ft",
+ "▁ch annels",
+ "▁channel s",
+ "▁de sert",
+ "▁des ert",
+ "▁deser t",
+ "▁tra vés",
+ "▁trav és",
+ "▁L ock",
+ "▁Lo ck",
+ "▁Loc k",
+ "▁ Lock",
+ "▁s iendo",
+ "▁si endo",
+ "фе к",
+ "ф ек",
+ "m ême",
+ "▁pa cket",
+ "▁pack et",
+ "▁pac ket",
+ "▁Mount ain",
+ "▁F ahr",
+ "▁Fa hr",
+ "bra io",
+ "пе ре",
+ "пер е",
+ "п ере",
+ "▁gen annt",
+ "▁dep loyment",
+ "▁deploy ment",
+ "Pa l",
+ "P al",
+ "но г",
+ "ст ру",
+ "стр у",
+ "Pr im",
+ "P rim",
+ "f ür",
+ "▁danger ous",
+ "▁sz ám",
+ "re ck",
+ "rec k",
+ "▁pop up",
+ "ic ky",
+ "ick y",
+ "in ar",
+ "ina r",
+ "i nar",
+ "co wo",
+ "cow o",
+ "c owo",
+ "нци кло",
+ "ít ás",
+ "▁pl ugins",
+ "▁plugin s",
+ "▁plug ins",
+ "▁ plugins",
+ "▁dr iven",
+ "▁drive n",
+ "▁dri ven",
+ "▁driv en",
+ "ле в",
+ "л ев",
+ "▁\" (",
+ "tt a",
+ "t ta",
+ "▁ Ú",
+ "▁e b",
+ "▁ eb",
+ "▁' ';",
+ "▁'' ;",
+ "▁kn ock",
+ "▁ос нова",
+ "▁основ а",
+ "▁m aison",
+ "▁ma ison",
+ "▁mais on",
+ "▁mai son",
+ "г ля",
+ "▁Hon or",
+ "▁Ho nor",
+ "ta il",
+ "t ail",
+ "ri tz",
+ "rit z",
+ "r itz",
+ "▁gu ys",
+ "▁combin ations",
+ "▁combination s",
+ "ond ere",
+ "onder e",
+ "onde re",
+ "▁A ld",
+ "▁Al d",
+ "▁f iddle",
+ "▁ fiddle",
+ "да в",
+ "ur d",
+ "u rd",
+ "▁pro jection",
+ "▁project ion",
+ "▁Tamb ién",
+ "ve rb",
+ "ver b",
+ "v erb",
+ "▁ter re",
+ "▁ terre",
+ "ru gu",
+ "rug u",
+ "▁se ptember",
+ "▁sept ember",
+ "▁< !",
+ "co st",
+ "cos t",
+ "c ost",
+ "▁n ut",
+ "▁nu t",
+ "▁ nut",
+ "{ %",
+ "▁ub ic",
+ "am arin",
+ "ama rin",
+ "amar in",
+ "ти и",
+ "▁pat ron",
+ "▁patr on",
+ "▁am ely",
+ "▁e sto",
+ "▁est o",
+ "▁es to",
+ "▁ esto",
+ "▁li stop",
+ "▁list op",
+ "fa l",
+ "f al",
+ "▁P rop",
+ "▁Pro p",
+ "▁Pr op",
+ "▁ Prop",
+ "▁O nt",
+ "▁On t",
+ "▁M ade",
+ "▁Ma de",
+ "▁Mad e",
+ "TE ST",
+ "▁N em",
+ "▁Ne m",
+ "▁N ations",
+ "▁Nat ions",
+ "▁Nation s",
+ "▁в у",
+ "▁ ву",
+ "in cluding",
+ "includ ing",
+ "▁spect rum",
+ "▁L an",
+ "▁La n",
+ "▁E ver",
+ "▁Ev er",
+ "Pa ul",
+ "t m",
+ "App end",
+ "Ap pend",
+ "Rel ative",
+ "dis abled",
+ "disable d",
+ "return s",
+ "▁flow ers",
+ "▁flo wers",
+ "▁flower s",
+ "ik u",
+ "i ku",
+ "▁| \\",
+ "▁ |\\",
+ "▁Jord an",
+ "▁Sm all",
+ "▁c ic",
+ "▁ci c",
+ "▁sex ual",
+ "au tre",
+ "aut re",
+ "ва л",
+ "в ал",
+ "▁r ip",
+ "▁ri p",
+ "▁ rip",
+ "ou st",
+ "ous t",
+ "o ust",
+ "▁Philadel phia",
+ "▁u k",
+ "▁ uk",
+ "▁M ongo",
+ "▁Mon go",
+ "▁Mong o",
+ "xml ns",
+ "▁sh op",
+ "▁sho p",
+ "▁ shop",
+ "▁debug ger",
+ "▁z aj",
+ "▁za j",
+ "▁B illy",
+ "▁Bill y",
+ "▁Bil ly",
+ "▁n iem",
+ "▁nie m",
+ "▁ni em",
+ "ol is",
+ "oli s",
+ "o lis",
+ "▁ро ссий",
+ "ag ner",
+ "agn er",
+ "agne r",
+ "▁m aven",
+ "▁ma ven",
+ "▁ maven",
+ "▁Gu stav",
+ "▁Gust av",
+ "A us",
+ "comp are",
+ "▁j eu",
+ "▁je u",
+ "ud er",
+ "ude r",
+ "u der",
+ "ish ment",
+ "▁ди визи",
+ "▁Fin land",
+ "ну т",
+ "н ут",
+ "z és",
+ "▁Liga ções",
+ "▁Lig ações",
+ "▁qu ello",
+ "▁quel lo",
+ "an notation",
+ "annot ation",
+ "▁th rew",
+ "▁thr ew",
+ "▁thre w",
+ "▁Pro of",
+ "▁ Proof",
+ "▁A rea",
+ "▁Ar ea",
+ "▁Are a",
+ "▁ Area",
+ "as hi",
+ "ash i",
+ "▁F O",
+ "▁ FO",
+ "ja min",
+ "j amin",
+ "ден т",
+ "д ент",
+ "▁un us",
+ "fri end",
+ ".\" );",
+ ".\") ;",
+ ". \");",
+ "▁tra kten",
+ "document class",
+ "an ka",
+ "ank a",
+ "▁ar rive",
+ "▁arr ive",
+ "▁arriv e",
+ "▁d onne",
+ "▁don ne",
+ "▁donn e",
+ "ol y",
+ "o ly",
+ "▁R ein",
+ "▁Re in",
+ "▁face book",
+ "▁fac ebook",
+ "▁ facebook",
+ "ic ina",
+ "ici na",
+ "sl ice",
+ "s lice",
+ "▁n agy",
+ "▁na gy",
+ "▁nag y",
+ "▁he bben",
+ "▁I C",
+ "▁ IC",
+ "▁B ag",
+ "▁Ba g",
+ "▁ Bag",
+ "▁circ ul",
+ "▁cir cul",
+ "ác t",
+ "á ct",
+ "mit t",
+ "mi tt",
+ "m itt",
+ "▁g rey",
+ "▁gr ey",
+ "▁gre y",
+ "▁c av",
+ "▁ca v",
+ "▁осо би",
+ "▁sym metric",
+ "▁symmet ric",
+ "▁S ic",
+ "▁Si c",
+ "▁med ium",
+ "▁medi um",
+ "▁ medium",
+ "▁U TF",
+ "▁ UTF",
+ "▁D opo",
+ "▁Do po",
+ "í ch",
+ "bar e",
+ "ba re",
+ "b are",
+ "dz ie",
+ "d zie",
+ "▁he aven",
+ "▁heav en",
+ "▁cam pe",
+ "▁camp e",
+ "ester day",
+ "esterd ay",
+ "▁W issenschaft",
+ "по ль",
+ "пол ь",
+ "di d",
+ "d id",
+ "al er",
+ "ale r",
+ "a ler",
+ "▁citiz ens",
+ "▁Marg aret",
+ "▁s ought",
+ "ch arts",
+ "char ts",
+ "chart s",
+ "CL C",
+ "C LC",
+ "ol ly",
+ "oll y",
+ "ys z",
+ "y sz",
+ "wa ld",
+ "wal d",
+ "w ald",
+ "▁f en",
+ "▁fe n",
+ "▁ fen",
+ "▁S ix",
+ "▁Si x",
+ "▁U rs",
+ "▁Ur s",
+ "▁ор ган",
+ "▁T rad",
+ "▁Tr ad",
+ "▁Tra d",
+ "cu e",
+ "c ue",
+ "sch utz",
+ "▁prec ise",
+ "▁precis e",
+ "▁W indow",
+ "▁Wind ow",
+ "▁ Window",
+ "ти е",
+ "ло ві",
+ "лов і",
+ "it ori",
+ "ito ri",
+ "itor i",
+ "dis ambiguation",
+ "▁х и",
+ "▁ хи",
+ "▁N atural",
+ "▁Natur al",
+ "▁Nat ural",
+ "da n",
+ "d an",
+ "▁con crete",
+ "ци ја",
+ "▁s pel",
+ "▁sp el",
+ "▁spe l",
+ "▁Fa iled",
+ "▁Fail ed",
+ "▁ Failed",
+ "ści e",
+ "śc ie",
+ "ś cie",
+ "▁b uf",
+ "▁bu f",
+ "▁ buf",
+ "uc a",
+ "u ca",
+ "ic ional",
+ "ici onal",
+ "icio nal",
+ "icion al",
+ "▁ott obre",
+ "▁otto bre",
+ "▁ф і",
+ "▁ фі",
+ "▁submit ted",
+ "▁subm itted",
+ "la ve",
+ "lav e",
+ "l ave",
+ "▁P lot",
+ "▁Pl ot",
+ "▁ Plot",
+ "▁col leg",
+ "▁coll eg",
+ "▁colle g",
+ "ad em",
+ "ade m",
+ "a dem",
+ "▁ch aque",
+ "▁cha que",
+ "▁neighbor hood",
+ "▁calci atore",
+ "Lo op",
+ "L oop",
+ "▁G ast",
+ "▁Ga st",
+ "▁Gas t",
+ "▁ко гда",
+ "▁indust rial",
+ "▁industri al",
+ "▁f atal",
+ "▁fa tal",
+ "▁fat al",
+ "▁C ert",
+ "▁Ce rt",
+ "▁Cer t",
+ "▁ Cert",
+ "la tion",
+ "lat ion",
+ "l ation",
+ "▁О дна",
+ "▁Од на",
+ "▁jam ais",
+ "▁acc um",
+ "Id entity",
+ "Ident ity",
+ "▁Me dal",
+ "▁Med al",
+ "Met adata",
+ "Meta data",
+ "▁лю дя",
+ "br idge",
+ "brid ge",
+ "b ridge",
+ "Go od",
+ "G ood",
+ "▁что бы",
+ "▁comp oser",
+ "▁compos er",
+ "▁compose r",
+ "▁b read",
+ "▁br ead",
+ "▁bre ad",
+ "▁clos ure",
+ "▁ closure",
+ "▁large ly",
+ "▁larg ely",
+ "F B",
+ "▁обла сть",
+ "▁autom atic",
+ "▁automat ic",
+ "ar ía",
+ "a ría",
+ "▁sufficient ly",
+ "▁ital iana",
+ "▁ка че",
+ "▁J ó",
+ "hi story",
+ "histor y",
+ "h istory",
+ "▁H D",
+ "▁ HD",
+ "▁sigu iente",
+ "ne ll",
+ "nel l",
+ "n ell",
+ "▁G ree",
+ "▁Gr ee",
+ "▁Gre e",
+ "▁T i",
+ "▁trans ferred",
+ "▁transfer red",
+ "équ ipe",
+ "é quipe",
+ "▁Phili ppe",
+ "▁Philipp e",
+ "▁Philip pe",
+ "▁encou rag",
+ "▁V ietnam",
+ "▁graph s",
+ "▁symmet ry",
+ "fr ed",
+ "fre d",
+ "f red",
+ "we ek",
+ "▁bron ze",
+ "ry s",
+ "r ys",
+ "▁name ly",
+ "▁nam ely",
+ "on ders",
+ "ond ers",
+ "onder s",
+ "onde rs",
+ "lem agne",
+ "X Y",
+ "Con vert",
+ "}] (",
+ "} ](",
+ "Reg ion",
+ "pe cies",
+ "pec ies",
+ "▁te xture",
+ "▁text ure",
+ "▁c hr",
+ "▁ch r",
+ "▁ chr",
+ "не го",
+ "н его",
+ "▁some body",
+ "a qu",
+ "er as",
+ "era s",
+ "e ras",
+ "▁Н ово",
+ "▁Но во",
+ "▁Нов о",
+ "▁d ez",
+ "▁de z",
+ "an iu",
+ "ani u",
+ "a niu",
+ "ok rat",
+ "▁co vers",
+ "▁cover s",
+ "▁cov ers",
+ "▁sign als",
+ "▁signal s",
+ "ђ е",
+ "▁H eb",
+ "▁He b",
+ "▁An ti",
+ "▁Ant i",
+ "IV E",
+ "I VE",
+ "▁re ss",
+ "▁r ess",
+ "▁res s",
+ "▁ ress",
+ "LE TE",
+ "yn a",
+ "y na",
+ "п ла",
+ "жде ния",
+ "ж дения",
+ "▁ch amp",
+ "▁cha mp",
+ "▁cham p",
+ "▁vill ages",
+ "▁village s",
+ "▁villa ges",
+ "Z one",
+ "▁i Phone",
+ "▁sou vent",
+ "сь кі",
+ "ськ і",
+ "▁feb braio",
+ "ér cito",
+ "▁X I",
+ "ok at",
+ "oka t",
+ "▁mem bres",
+ "▁memb res",
+ "▁membre s",
+ "ju nit",
+ "j unit",
+ "▁D raw",
+ "▁Dr aw",
+ "▁Dra w",
+ "▁ Draw",
+ "▁п рово",
+ "▁про во",
+ "▁пров о",
+ "▁пр ово",
+ "aud io",
+ "audi o",
+ "a udio",
+ "en dl",
+ "end l",
+ "▁N ad",
+ "▁Na d",
+ "▁magn itude",
+ "Su r",
+ "S ur",
+ "ic ing",
+ "ici ng",
+ "i cing",
+ "▁un w",
+ "▁о три",
+ "▁от ри",
+ "▁B ey",
+ "▁Be y",
+ "▁V ik",
+ "▁Vi k",
+ "▁polít ica",
+ "port er",
+ "por ter",
+ "porte r",
+ "p orter",
+ "▁Bar bara",
+ "▁Barb ara",
+ "ál t",
+ "á lt",
+ "bi b",
+ "b ib",
+ "▁accom pan",
+ "▁accomp an",
+ "V P",
+ "▁en coded",
+ "▁enc oded",
+ "▁encode d",
+ "▁ encoded",
+ "▁S ometimes",
+ "▁Some times",
+ "bi rd",
+ "bir d",
+ "b ird",
+ "▁U lt",
+ "▁Ul t",
+ "▁t un",
+ "▁tu n",
+ "get Text",
+ "▁ar rival",
+ "▁arr ival",
+ "▁arriv al",
+ "script style",
+ "{ `",
+ "▁pers pective",
+ "LI NE",
+ "LIN E",
+ "L INE",
+ "Form atter",
+ "Format ter",
+ "▁b om",
+ "▁bo m",
+ "в ра",
+ "DE BUG",
+ "Bound s",
+ "B ounds",
+ "▁T itle",
+ "▁Tit le",
+ "▁ Title",
+ "l ó",
+ "Da n",
+ "D an",
+ "▁g ene",
+ "▁ge ne",
+ "▁gen e",
+ "▁B it",
+ "▁Bi t",
+ "▁ Bit",
+ "▁reprodu ce",
+ "▁graph ics",
+ "▁ graphics",
+ "▁с ем",
+ "▁се м",
+ "р ё",
+ "▁ре ки",
+ "us alem",
+ "usa lem",
+ "ро ж",
+ "▁D ES",
+ "▁DE S",
+ "▁So ftware",
+ "ur ance",
+ "u rance",
+ "ithmet ic",
+ "en ess",
+ "ene ss",
+ "enes s",
+ "e ness",
+ "ic hi",
+ "ich i",
+ "i chi",
+ "Con verter",
+ "Convert er",
+ "▁g ithub",
+ "▁ github",
+ "erd ings",
+ "gl ise",
+ "ác h",
+ "á ch",
+ "▁bu ried",
+ "▁bur ied",
+ "▁v ision",
+ "▁vis ion",
+ "▁ vision",
+ "M iss",
+ "▁s ees",
+ "▁se es",
+ "▁see s",
+ "▁person nes",
+ "▁pers onnes",
+ "▁personn es",
+ "▁personne s",
+ "▁In tel",
+ "▁Int el",
+ "el ia",
+ "eli a",
+ "e lia",
+ "▁č lán",
+ "▁c hi",
+ "▁ch i",
+ "▁ chi",
+ "▁k las",
+ "▁kl as",
+ "au té",
+ "aut é",
+ "▁st ark",
+ "▁star k",
+ "cz e",
+ "c ze",
+ "▁dr ivers",
+ "▁driver s",
+ "▁drive rs",
+ "▁dri vers",
+ "▁driv ers",
+ "v n",
+ "! ,",
+ "▁го ды",
+ "▁год ы",
+ "H i",
+ "▁expla ins",
+ "▁expl ains",
+ "▁explain s",
+ "art icles",
+ "article s",
+ "▁z ug",
+ "▁zu g",
+ "▁ zug",
+ "Pro m",
+ "Pr om",
+ "P rom",
+ "> =",
+ "▁Be at",
+ "▁S ax",
+ "▁Sa x",
+ "vert ical",
+ "кт о",
+ "к то",
+ "▁pl ants",
+ "▁plan ts",
+ "▁plant s",
+ "▁Ré férences",
+ "▁Référence s",
+ "▁og ni",
+ "▁c urs",
+ "▁cu rs",
+ "▁cur s",
+ "▁S K",
+ "▁ SK",
+ "он и",
+ "о ни",
+ "▁des tac",
+ "▁dest ac",
+ "\") ;\r",
+ "\"); \r",
+ "\" );\r",
+ "▁S ure",
+ "▁Su re",
+ "▁Sur e",
+ "▁part ido",
+ "▁parti do",
+ "▁Fol ge",
+ "▁Mo ore",
+ "▁w z",
+ "ск ус",
+ "ску с",
+ "lt re",
+ "l tre",
+ "on do",
+ "ond o",
+ "▁p ose",
+ "▁po se",
+ "▁pos e",
+ "▁ pose",
+ "im os",
+ "imo s",
+ "i mos",
+ "бо й",
+ "ци па",
+ "ju s",
+ "j us",
+ ".. ...",
+ "... ..",
+ ".... .",
+ ". ....",
+ "▁ép oca",
+ "▁qu anto",
+ "▁quant o",
+ "▁quan to",
+ "▁Su pport",
+ "▁Supp ort",
+ "▁Sup port",
+ "▁ Support",
+ "gesch ichte",
+ "SER VER",
+ "▁George s",
+ "▁Georg es",
+ "en um",
+ "enu m",
+ "e num",
+ "▁h erm",
+ "▁he rm",
+ "▁her m",
+ "▁ne bo",
+ "▁C hr",
+ "▁Ch r",
+ "▁ Chr",
+ "char acter",
+ "▁* **",
+ "▁** *",
+ "▁ ***",
+ "▁For sch",
+ "ia mi",
+ "iam i",
+ "i ami",
+ "▁ ¿",
+ "cy ch",
+ "cyc h",
+ "c ych",
+ "▁fif th",
+ "se nt",
+ "sen t",
+ "s ent",
+ "▁and erem",
+ "▁andere m",
+ "▁proport ion",
+ "▁propor tion",
+ "▁p rest",
+ "▁pr est",
+ "▁pre st",
+ "▁pres t",
+ "▁G irl",
+ "▁Gi rl",
+ "▁Gir l",
+ "▁d rama",
+ "▁dr ama",
+ "▁dra ma",
+ "▁dram a",
+ "wa nd",
+ "wan d",
+ "w and",
+ "▁M ail",
+ "▁Ma il",
+ "▁Mai l",
+ "▁ Mail",
+ "▁L ux",
+ "▁Lu x",
+ "▁kter ý",
+ "▁Ges ellschaft",
+ "▁Hin weis",
+ "nis se",
+ "n isse",
+ "▁m ondo",
+ "▁mon do",
+ "▁mond o",
+ "E q",
+ "▁per í",
+ "▁pe rí",
+ "▁e astern",
+ "▁eas tern",
+ "▁east ern",
+ "▁UE FA",
+ "ual e",
+ "ua le",
+ "u ale",
+ "▁con vex",
+ "▁conv ex",
+ "▁по ль",
+ "▁пол ь",
+ "▁ поль",
+ "▁H ey",
+ "▁He y",
+ "ze nie",
+ "zen ie",
+ "z enie",
+ "init ely",
+ "▁Z usammen",
+ "SS L",
+ "S SL",
+ "oc al",
+ "oca l",
+ "o cal",
+ "▁c anal",
+ "▁can al",
+ "▁ca nal",
+ "vo y",
+ "v oy",
+ "▁К ри",
+ "▁köz ött",
+ "▁c ars",
+ "▁car s",
+ "▁ca rs",
+ "▁vers ión",
+ "En vironment",
+ "He r",
+ "H er",
+ "▁se ñ",
+ "▁sp atial",
+ "ym i",
+ "y mi",
+ "Fi re",
+ "F ire",
+ "▁ve get",
+ "▁veg et",
+ "▁W ie",
+ "▁Wi e",
+ "▁zn aj",
+ "▁zna j",
+ "▁dam age",
+ "▁en dl",
+ "▁end l",
+ "▁ endl",
+ "gi f",
+ "g if",
+ "▁qu ali",
+ "▁qual i",
+ "▁которы х",
+ "el lan",
+ "ell an",
+ "ella n",
+ "▁m ens",
+ "▁me ns",
+ "▁men s",
+ "▁pl ug",
+ "▁a bund",
+ "▁ab und",
+ "FI G",
+ "F IG",
+ "▁s f",
+ "▁ sf",
+ "▁con fl",
+ "▁conf l",
+ "▁насе ления",
+ "▁princi ples",
+ "▁princip les",
+ "▁principle s",
+ "▁Gab riel",
+ "ib e",
+ "i be",
+ "▁{ %",
+ "▁ {%",
+ "▁pobla ció",
+ "ні ципа",
+ "▁ext reme",
+ "▁extrem e",
+ "▁extr eme",
+ "▁as se",
+ "▁ass e",
+ "▁ asse",
+ "▁v u",
+ "▁ vu",
+ "Mo ck",
+ "M ock",
+ "▁spiel te",
+ "▁A er",
+ "▁d atos",
+ "▁dat os",
+ "en des",
+ "end es",
+ "ende s",
+ "▁G el",
+ "▁Ge l",
+ "▁G or",
+ "▁Go r",
+ "Ch rist",
+ "Chr ist",
+ "ch os",
+ "cho s",
+ "c hos",
+ "Process or",
+ "Proc essor",
+ "▁in struct",
+ "▁inst ruct",
+ "▁instru ct",
+ "▁p icked",
+ "▁pick ed",
+ "▁pic ked",
+ "nah me",
+ "nahm e",
+ "fa hr",
+ "fah r",
+ "f ahr",
+ "▁indic ated",
+ "▁indicate d",
+ "▁% .",
+ "▁ %.",
+ "▁t s",
+ "▁ ts",
+ "▁not able",
+ "▁no table",
+ "▁qual ified",
+ "▁А л",
+ "Bl ack",
+ "B lack",
+ "▁coun cil",
+ "▁over head",
+ "ac i",
+ "a ci",
+ "an née",
+ "ann ée",
+ "▁init With",
+ "bi ó",
+ "b ió",
+ "▁int roduction",
+ "▁introdu ction",
+ "▁compan ion",
+ "▁ex pon",
+ "▁exp on",
+ "▁k ör",
+ "▁kö r",
+ "ob y",
+ "o by",
+ "bu rn",
+ "bur n",
+ "b urn",
+ "gn u",
+ "g nu",
+ "virt ual",
+ "v irtual",
+ "▁intel lect",
+ "▁д ержа",
+ "▁ держа",
+ "' +",
+ "б ле",
+ "▁strict ly",
+ "▁recogn ize",
+ "ho ur",
+ "hou r",
+ "h our",
+ "▁W rest",
+ "en nen",
+ "enn en",
+ "enne n",
+ "$) .",
+ "$ ).",
+ "ff f",
+ "f ff",
+ "▁Cent ro",
+ "▁P itt",
+ "▁Pi tt",
+ "▁Pit t",
+ "▁d ział",
+ "▁dz iał",
+ "▁ dział",
+ "▁c ela",
+ "▁ce la",
+ "▁cel a",
+ "▁frances e",
+ "▁franc ese",
+ "ра ми",
+ "spe cial",
+ "spec ial",
+ "▁D up",
+ "▁Du p",
+ "to ire",
+ "t oire",
+ "ка ль",
+ "кал ь",
+ "к аль",
+ "CO UNT",
+ "▁Br ook",
+ "▁Bro ok",
+ "▁ру ково",
+ "pub lique",
+ "▁se conda",
+ "▁second a",
+ "▁sec onda",
+ "▁com pt",
+ "▁comp t",
+ "▁b land",
+ "▁bl and",
+ "▁bla nd",
+ "▁blan d",
+ "Be fore",
+ "▁P ack",
+ "▁Pa ck",
+ "▁Pac k",
+ "▁ Pack",
+ "al ty",
+ "alt y",
+ "öd er",
+ "ö der",
+ "▁interval s",
+ "▁Daten bank",
+ "Mo vie",
+ "M ovie",
+ "▁trans m",
+ "▁tran sm",
+ "▁t ap",
+ "▁ta p",
+ "▁по ч",
+ "fo n",
+ "f on",
+ "ia i",
+ "i ai",
+ "▁f ib",
+ "▁fi b",
+ "▁w yd",
+ "▁wy d",
+ "▁h ung",
+ "▁hun g",
+ "▁hu ng",
+ "▁ hung",
+ "▁a live",
+ "▁al ive",
+ "▁ali ve",
+ "Cl ear",
+ "C lear",
+ "▁p ushed",
+ "▁push ed",
+ "▁tu ple",
+ "▁ tuple",
+ "ach en",
+ "ac hen",
+ "ache n",
+ "a chen",
+ "го во",
+ "гов о",
+ "г ово",
+ "▁re vers",
+ "▁rev ers",
+ "▁reve rs",
+ "▁rever s",
+ "▁au gment",
+ "▁aug ment",
+ "▁ch allenge",
+ "▁challeng e",
+ "lo st",
+ "los t",
+ "l ost",
+ "▁deux ième",
+ "struct or",
+ "stru ctor",
+ "▁mehr erer",
+ "▁mehrere r",
+ "at ural",
+ "atur al",
+ "atura l",
+ "atu ral",
+ "Sp lit",
+ "S plit",
+ "ст ем",
+ "сте м",
+ "с тем",
+ "ш ла",
+ ")\\ \\",
+ ") \\\\",
+ "▁D og",
+ "▁Do g",
+ "▁develop ers",
+ "▁developer s",
+ "▁ developers",
+ "▁n od",
+ "▁no d",
+ "▁сто ро",
+ "▁Na N",
+ "▁ NaN",
+ "▁pr iest",
+ "▁pri est",
+ "▁ex ha",
+ "UN D",
+ "U ND",
+ "pa ir",
+ "p air",
+ "al one",
+ "alo ne",
+ "▁m oon",
+ "▁mo on",
+ "▁# !/",
+ "▁g uns",
+ "▁gu ns",
+ "▁gun s",
+ "ro la",
+ "rol a",
+ "r ola",
+ "чи та",
+ "▁Encyc lopedia",
+ "▁Encyclop edia",
+ "at is",
+ "ati s",
+ "a tis",
+ "▁' \"",
+ "▁ '\"",
+ "zy ch",
+ "z ych",
+ "▁super fic",
+ "▁э к",
+ "еде ра",
+ "fe ed",
+ "f eed",
+ "LA Y",
+ "F i",
+ "un ks",
+ "unk s",
+ "ise cond",
+ "i second",
+ "▁' @",
+ "▁Ad ding",
+ "▁Add ing",
+ "ро е",
+ "▁t ang",
+ "▁tan g",
+ "▁ta ng",
+ "ц о",
+ "hu ng",
+ "h ung",
+ "bi s",
+ "b is",
+ "sk ého",
+ "ské ho",
+ "▁ad vert",
+ "▁adv ert",
+ "▁за нима",
+ "uz z",
+ "u zz",
+ "ág ina",
+ "▁T el",
+ "▁Te l",
+ "si g",
+ "s ig",
+ "▁E z",
+ "▁guarante e",
+ "▁te aching",
+ "▁teach ing",
+ "ot y",
+ "o ty",
+ "ter min",
+ "term in",
+ "▁distribution s",
+ "▁distrib utions",
+ "FL A",
+ "F LA",
+ "▁Gi useppe",
+ "query Selector",
+ "▁/ \\",
+ "▁ /\\",
+ "▁S quad",
+ "g z",
+ "de lay",
+ "del ay",
+ "▁surr ounding",
+ "▁m anus",
+ "▁man us",
+ "▁H ou",
+ "▁Ho u",
+ "² ,",
+ "▁cult iv",
+ "▁trouble s",
+ "▁trou bles",
+ "▁r aison",
+ "▁ra ison",
+ "exp and",
+ "▁c ov",
+ "▁co v",
+ "▁ cov",
+ "nung en",
+ "n ungen",
+ ")) {",
+ ") ){",
+ "▁g een",
+ "▁ge en",
+ "▁au ßer",
+ "▁Л і",
+ "ř i",
+ "▁situ ations",
+ "▁situation s",
+ "▁tele p",
+ "▁tel ep",
+ "▁J ed",
+ "▁Je d",
+ "▁trav ail",
+ "▁trava il",
+ "li as",
+ "lia s",
+ "l ias",
+ "bul let",
+ "▁select ing",
+ "av ier",
+ "avi er",
+ "a vier",
+ "▁ess ential",
+ "( /",
+ "yy yy",
+ "št ě",
+ "ul ty",
+ "ult y",
+ "▁k ra",
+ "▁kr a",
+ "▁t abs",
+ "▁tab s",
+ "▁ta bs",
+ "▁ tabs",
+ "▁experience d",
+ "▁experien ced",
+ "az i",
+ "a zi",
+ "▁D irectory",
+ "▁Direct ory",
+ "▁Director y",
+ "▁ Directory",
+ "▁c ron",
+ "▁cr on",
+ "▁cro n",
+ "▁s pend",
+ "▁sp end",
+ "▁spe nd",
+ "▁R A",
+ "▁ RA",
+ "▁s elenium",
+ "▁sel enium",
+ "▁ selenium",
+ "▁T hé",
+ "▁Th é",
+ "Element s",
+ "El ements",
+ "ci i",
+ "c ii",
+ "▁p lat",
+ "▁pl at",
+ "▁pla t",
+ "▁arch ive",
+ "▁archiv e",
+ "▁ archive",
+ "▁ass istance",
+ "▁assist ance",
+ "▁ne ck",
+ "▁A venue",
+ "▁Aven ue",
+ "▁w heel",
+ "▁whe el",
+ "▁h ade",
+ "▁ha de",
+ "▁had e",
+ "Com mon",
+ "Comm on",
+ "▁D ialog",
+ "▁Di alog",
+ "▁Dia log",
+ "▁ Dialog",
+ "▁f org",
+ "▁for g",
+ "▁fo rg",
+ "▁sur ely",
+ "▁sure ly",
+ "▁h ockey",
+ "kt ó",
+ "k tó",
+ "▁t k",
+ "▁ tk",
+ "▁Br uce",
+ "▁Bru ce",
+ "▁e norm",
+ "▁en orm",
+ ", ’",
+ "▁Christ opher",
+ "▁Christoph er",
+ "je v",
+ "j ev",
+ "▁qu ad",
+ "▁ quad",
+ "▁A JAX",
+ "▁rel ief",
+ "▁reli ef",
+ "▁m odes",
+ "▁mod es",
+ "▁mo des",
+ "▁mode s",
+ "sk lär",
+ "s klär",
+ "▁V id",
+ "▁Vi d",
+ "▁Se rial",
+ "▁Ser ial",
+ "▁ Serial",
+ "▁to kens",
+ "▁token s",
+ "▁Pol and",
+ "▁Po land",
+ "\\ ]",
+ "▁v ide",
+ "▁vi de",
+ "▁vid e",
+ "ro oms",
+ "room s",
+ "om as",
+ "oma s",
+ "o mas",
+ "▁B ureau",
+ "▁Bur eau",
+ "c x",
+ "ность ю",
+ "ност ью",
+ "▁sign s",
+ "▁sig ns",
+ "ше ние",
+ "los sen",
+ "loss en",
+ "l ossen",
+ "▁Que ens",
+ "▁Queen s",
+ "▁m embre",
+ "▁mem bre",
+ "▁memb re",
+ "▁m ez",
+ "▁me z",
+ "▁ mez",
+ "▁B ool",
+ "▁Bo ol",
+ "▁ Bool",
+ "▁N aj",
+ "▁Na j",
+ "▁Mem ory",
+ "▁ Memory",
+ "▁K han",
+ "▁Kh an",
+ "▁l à",
+ "▁ là",
+ "▁H ud",
+ "▁Hu d",
+ "▁d ismiss",
+ "▁dis miss",
+ "ight h",
+ "igh th",
+ "▁f s",
+ "▁ fs",
+ "pr event",
+ "pre vent",
+ "prev ent",
+ "▁ме да",
+ "▁Pol ice",
+ "▁Po lice",
+ "▁с ко",
+ "▁ ско",
+ "fin ite",
+ "▁a mi",
+ "▁am i",
+ "▁ ami",
+ "▁M uch",
+ "▁Mu ch",
+ "ow ania",
+ "owa nia",
+ "owan ia",
+ "OR Y",
+ "O RY",
+ "io rs",
+ "ior s",
+ "i ors",
+ "▁Prem io",
+ "▁text box",
+ "d m",
+ "▁a fin",
+ "▁af in",
+ "▁Don ald",
+ "▁ Donald",
+ "▁P riv",
+ "▁Pr iv",
+ "▁Pri v",
+ "▁de cid",
+ "▁dec id",
+ "▁Maur ice",
+ "▁Mau rice",
+ "ag an",
+ "aga n",
+ "a gan",
+ "▁Britann ica",
+ "▁o ft",
+ "▁of t",
+ "▁consec utive",
+ "\"? >",
+ "\" ?>",
+ "ови й",
+ "st udent",
+ "stud ent",
+ "▁pe que",
+ "▁di eses",
+ "▁dies es",
+ "▁diese s",
+ "▁ret our",
+ "ét r",
+ "é tr",
+ "▁с ез",
+ "▁се з",
+ "▁k re",
+ "▁kr e",
+ "▁ kre",
+ "▁v otes",
+ "▁vo tes",
+ "▁vot es",
+ "▁vote s",
+ "ru ption",
+ "rupt ion",
+ "rup tion",
+ "iz ada",
+ "iza da",
+ "▁W iel",
+ "▁Wi el",
+ "▁Wie l",
+ "▁G ray",
+ "▁Gr ay",
+ "▁Gra y",
+ "▁Le op",
+ "▁Leo p",
+ "teil ung",
+ "tei lung",
+ "([ '",
+ "( ['",
+ "▁wh ites",
+ "▁white s",
+ "fr ica",
+ "fri ca",
+ "f rica",
+ "an imation",
+ "anim ation",
+ "cur l",
+ "cu rl",
+ "c url",
+ "ling s",
+ "lin gs",
+ "l ings",
+ "=\" $",
+ "lo yd",
+ "loy d",
+ "text sc",
+ "ор у",
+ "о ру",
+ "▁се ла",
+ "es ian",
+ "esi an",
+ "esia n",
+ "▁M ission",
+ "▁Miss ion",
+ "▁не за",
+ "▁ult imately",
+ "бо в",
+ "б ов",
+ "ol en",
+ "ole n",
+ "o len",
+ "ско му",
+ "ском у",
+ "ск ому",
+ "с кому",
+ "ne te",
+ "net e",
+ "n ete",
+ "▁D it",
+ "▁Di t",
+ "▁co stru",
+ "▁cost ru",
+ "dep endent",
+ "▁Re source",
+ "▁Res ource",
+ "▁ Resource",
+ "▁host s",
+ "▁hos ts",
+ "▁ hosts",
+ "▁re ar",
+ "▁r ear",
+ "D uration",
+ "ни ків",
+ "ник ів",
+ "М а",
+ "▁pl anning",
+ "▁plan ning",
+ "▁pre diction",
+ "▁pred iction",
+ "▁predict ion",
+ "▁L yn",
+ "▁Ly n",
+ "▁k ir",
+ "▁ki r",
+ "▁ kir",
+ "▁Leg isl",
+ "ма т",
+ "м ат",
+ "▁S occer",
+ "▁Soc cer",
+ "▁sur vey",
+ "▁surv ey",
+ "▁surve y",
+ "▁estadoun idense",
+ "or gen",
+ "org en",
+ "orge n",
+ "jo urd",
+ "jou rd",
+ "j ourd",
+ "▁ap rile",
+ "▁april e",
+ "▁apr ile",
+ "▁i ds",
+ "▁id s",
+ "▁ ids",
+ "сь ке",
+ "ськ е",
+ "▁emp loyee",
+ "▁employ ee",
+ "▁ employee",
+ "▁Schaus pieler",
+ "р ъ",
+ "▁mult imedia",
+ "▁multi media",
+ "▁сво ю",
+ "▁w ine",
+ "▁win e",
+ "▁E U",
+ "ic ă",
+ "▁R hein",
+ "▁Rh ein",
+ "▁Pal mar",
+ "ot eca",
+ "ote ca",
+ "▁prep are",
+ "▁prepar e",
+ "▁ prepare",
+ "▁T ot",
+ "▁To t",
+ "▁N ull",
+ "▁Nu ll",
+ "▁ Null",
+ "▁k in",
+ "▁ki n",
+ "▁ kin",
+ "in als",
+ "inal s",
+ "ina ls",
+ "▁New ton",
+ "▁t bl",
+ "▁ tbl",
+ "▁S old",
+ "▁So ld",
+ "▁Sol d",
+ "▁ver f",
+ "▁ve rf",
+ "at uring",
+ "atur ing",
+ "atu ring",
+ "▁la ptop",
+ "▁lap top",
+ "▁Со вет",
+ "▁Сов ет",
+ "▁Сове т",
+ "se cret",
+ "sec ret",
+ "▁Olymp ic",
+ "▁football er",
+ "▁Rud olf",
+ "▁con he",
+ "zy sk",
+ "▁evalu ated",
+ "▁evaluate d",
+ "» )",
+ "sh op",
+ "re pository",
+ "▁z ach",
+ "▁za ch",
+ "▁l osing",
+ "▁lo sing",
+ "▁los ing",
+ "et ter",
+ "ett er",
+ "ette r",
+ "▁W irtschaft",
+ "та к",
+ "▁unnecess ary",
+ "▁P hot",
+ "▁Ph ot",
+ "▁Pho t",
+ "an ska",
+ "ans ka",
+ "ansk a",
+ "▁N ative",
+ "▁Nat ive",
+ "▁ Native",
+ "CC E",
+ "C CE",
+ "▁fi fty",
+ "▁fif ty",
+ "▁e rw",
+ "▁er w",
+ "r h",
+ "is sent",
+ "iss ent",
+ "isse nt",
+ "issen t",
+ "}{ (",
+ "} {(",
+ "▁lan ç",
+ "▁X code",
+ "го род",
+ "гор од",
+ "ci r",
+ "c ir",
+ "▁pel ícula",
+ "▁O scar",
+ "▁Os car",
+ "▁sh ore",
+ "▁sho re",
+ "▁supp lied",
+ "ex amples",
+ "example s",
+ "Me ss",
+ "M ess",
+ "VI CE",
+ "V ICE",
+ "▁ex clude",
+ "▁h en",
+ "▁he n",
+ "▁ hen",
+ "▁гу бер",
+ "▁F ragment",
+ "▁Fra gment",
+ "▁ Fragment",
+ "▁B itte",
+ "▁Bi tte",
+ "▁Bit te",
+ "▁Bes ides",
+ "▁h es",
+ "▁he s",
+ "▁ hes",
+ "▁ih rem",
+ "▁ihr em",
+ "▁ihre m",
+ "▁Ser ge",
+ "▁art ific",
+ "=\" ${",
+ "=\"$ {",
+ "ло во",
+ "лов о",
+ "л ово",
+ "ut eur",
+ "ute ur",
+ "ta ire",
+ "t aire",
+ "па с",
+ "▁eas iest",
+ "▁fam iglia",
+ "N ormal",
+ "▁d alle",
+ "▁da lle",
+ "▁dal le",
+ "▁dall e",
+ "▁n ations",
+ "▁nation s",
+ "▁nat ions",
+ "r p",
+ "th ead",
+ "the ad",
+ "t head",
+ "▁обла сті",
+ "▁Democr atic",
+ "▁челов е",
+ "мо ж",
+ "▁г ер",
+ "▁ге р",
+ "▁ гер",
+ "▁small est",
+ "▁Publish ing",
+ "▁T s",
+ "▁laugh ed",
+ "ll e",
+ "l le",
+ "▁A mt",
+ "▁Am t",
+ "▁I IS",
+ "▁II S",
+ "FOR M",
+ "F ORM",
+ "Ma g",
+ "M ag",
+ "до н",
+ "д он",
+ "▁st oria",
+ "▁stor ia",
+ "▁sto ria",
+ "▁organ ized",
+ "▁organiz ed",
+ "č ní",
+ "▁o x",
+ "▁ ox",
+ "ling en",
+ "lin gen",
+ "l ingen",
+ "▁lu ego",
+ "cc ió",
+ "c ció",
+ "▁re ly",
+ "▁r ely",
+ "▁rel y",
+ "▁t ussen",
+ "er ten",
+ "ert en",
+ "erte n",
+ "▁hon our",
+ "▁Cla ude",
+ "▁Claud e",
+ "▁Ko rea",
+ "▁Kore a",
+ "▁Kor ea",
+ "▁Met ropol",
+ "▁Metro pol",
+ "Su per",
+ "S uper",
+ "ri en",
+ "rie n",
+ "r ien",
+ "ér ature",
+ "att ro",
+ "attr o",
+ "▁б іль",
+ "▁бі ль",
+ "▁ біль",
+ "▁Her bert",
+ "▁aut eurs",
+ "▁aute urs",
+ "▁dar auf",
+ "▁m ental",
+ "▁men tal",
+ "▁ment al",
+ "▁r ang",
+ "▁ra ng",
+ "▁ran g",
+ "▁s ón",
+ "▁só n",
+ "▁S oph",
+ "▁So ph",
+ ")\" ,",
+ ") \",",
+ "Des criptor",
+ "prep are",
+ "▁Land kreis",
+ "H C",
+ "cr oss",
+ "cro ss",
+ "c ross",
+ "ли за",
+ "▁Lo gin",
+ "▁Log in",
+ "▁ Login",
+ "on en",
+ "one n",
+ "o nen",
+ "Fe ature",
+ "▁m useum",
+ "▁muse um",
+ "▁ museum",
+ "ve k",
+ "v ek",
+ "▁Nel son",
+ "▁re jo",
+ "▁коман ди",
+ "▁sum mar",
+ "▁summ ar",
+ "▁сле ду",
+ "▁след у",
+ "äm p",
+ "ä mp",
+ "▁G as",
+ "▁Ga s",
+ "во м",
+ "в ом",
+ "VAL UE",
+ "in ge",
+ "ing e",
+ "per iod",
+ "lass en",
+ "las sen",
+ "lasse n",
+ "l assen",
+ "áv al",
+ "á val",
+ "▁alt ogether",
+ "um ph",
+ "ump h",
+ "ist ro",
+ "istr o",
+ "ą ż",
+ "▁Ke ep",
+ "▁Mar co",
+ "▁Marc o",
+ "▁ét ant",
+ "▁D re",
+ "▁Dr e",
+ "ge ometry",
+ "▁K as",
+ "▁Ka s",
+ "message s",
+ "mess ages",
+ "Co ok",
+ "C ook",
+ "▁S ide",
+ "▁Si de",
+ "▁Sid e",
+ "▁ Side",
+ "▁ко ми",
+ "▁ком и",
+ "ст ри",
+ "стр и",
+ "с три",
+ "▁ex cess",
+ "▁exc ess",
+ "▁Bi ografia",
+ "XX XX",
+ "XXX X",
+ "X XXX",
+ "▁N ie",
+ "▁Ni e",
+ "ven dor",
+ "v endor",
+ "xs d",
+ "x sd",
+ "Mil l",
+ "M ill",
+ "process ing",
+ "▁Miss ouri",
+ "▁perm ett",
+ "▁permet t",
+ "▁a par",
+ "▁ap ar",
+ "▁cro wd",
+ "▁crow d",
+ "fer t",
+ "fe rt",
+ "f ert",
+ "▁D ou",
+ "▁Do u",
+ "r í",
+ "▁C C",
+ "▁ CC",
+ "▁pay ment",
+ "▁ payment",
+ "▁Hol lywood",
+ "▁V irtual",
+ "▁ Virtual",
+ "▁sp oken",
+ "▁spoke n",
+ "▁spo ken",
+ "▁t ram",
+ "▁tr am",
+ "▁tra m",
+ "▁Comm unity",
+ "▁Commun ity",
+ "▁administr ative",
+ "▁в оло",
+ "▁во ло",
+ "gi or",
+ "gio r",
+ "g ior",
+ "vis or",
+ "▁Укра и",
+ "st age",
+ "sta ge",
+ "stag e",
+ "▁For mat",
+ "▁Form at",
+ "▁ Format",
+ "▁conven ient",
+ "Н а",
+ "▁med ian",
+ "▁media n",
+ "▁medi an",
+ "▁в ра",
+ "▁ вра",
+ "▁Пре ма",
+ "en ig",
+ "eni g",
+ "e nig",
+ "▁Op era",
+ "▁Oper a",
+ "ré s",
+ "r és",
+ "▁f mt",
+ "▁ fmt",
+ "▁effic iency",
+ "ma le",
+ "mal e",
+ "m ale",
+ "Ma ster",
+ "M aster",
+ "Ser ies",
+ "Se ries",
+ "S eries",
+ "▁s yd",
+ "▁sy d",
+ "gener ic",
+ "inter val",
+ "▁e fect",
+ "▁inwon ers",
+ "лим пи",
+ "ir ement",
+ "ire ment",
+ "Er r",
+ "E rr",
+ "ö h",
+ "▁l ying",
+ "▁ly ing",
+ "▁ lying",
+ "▁S ettings",
+ "▁Setting s",
+ "▁ Settings",
+ "! =",
+ "em atic",
+ "emat ic",
+ "arg v",
+ "▁Bas ic",
+ "▁ Basic",
+ "▁consider ation",
+ "▁h abe",
+ "▁ha be",
+ "▁hab e",
+ "- %",
+ "▁mount ains",
+ "▁mountain s",
+ "▁pe ak",
+ "▁f allen",
+ "▁fall en",
+ "▁fal len",
+ "ed ed",
+ "ede d",
+ "e ded",
+ "log ic",
+ "▁mat ched",
+ "▁match ed",
+ "▁typ ing",
+ "▁ty ping",
+ ")} ,",
+ ") },",
+ "▁f ancy",
+ "▁fan cy",
+ "▁eleg ant",
+ "ا ل",
+ "▁уча ст",
+ "▁Sa rah",
+ "▁Sar ah",
+ "▁V erd",
+ "▁Ver d",
+ "▁Ve rd",
+ "▁t ego",
+ "▁te go",
+ "ru les",
+ "rule s",
+ "r ules",
+ "▁mo unted",
+ "▁mount ed",
+ "▁і м",
+ "ер у",
+ "е ру",
+ "st off",
+ "sto ff",
+ "fa hren",
+ "fah ren",
+ "fahr en",
+ "f ahren",
+ "dist ance",
+ "d istance",
+ "▁Lic ense",
+ "▁LE FT",
+ "▁ LEFT",
+ "▁w p",
+ "▁ wp",
+ "/ {",
+ "▁am azon",
+ "▁amaz on",
+ "▁ amazon",
+ "> &",
+ "▁els ő",
+ "qu arters",
+ "▁sh ock",
+ "▁sho ck",
+ "ni ck",
+ "nic k",
+ "n ick",
+ "▁Arch ite",
+ "▁S quare",
+ "▁r ates",
+ "▁ra tes",
+ "▁rate s",
+ "▁rat es",
+ "io re",
+ "ior e",
+ "i ore",
+ "▁N at",
+ "▁Na t",
+ "▁Char lot",
+ "re ichen",
+ "reich en",
+ "rei chen",
+ "reiche n",
+ "▁var iation",
+ "▁vari ation",
+ "os is",
+ "osi s",
+ "li fe",
+ "l ife",
+ "sl ide",
+ "s lide",
+ "ab i",
+ "a bi",
+ "uk i",
+ "u ki",
+ "my sq",
+ "mys q",
+ "▁prim itive",
+ "▁primit ive",
+ "▁univers itaire",
+ "LE NG",
+ "ale ż",
+ "eb ook",
+ "e book",
+ "s yn",
+ "▁G egen",
+ "▁Ge gen",
+ "▁Geg en",
+ "▁K ü",
+ "▁а ле",
+ "▁ал е",
+ "▁L ub",
+ "▁Lu b",
+ "con current",
+ "izz ato",
+ "izza to",
+ "▁st ub",
+ "▁i e",
+ "▁ ie",
+ "▁' ./",
+ "▁'. /",
+ "co d",
+ "c od",
+ "▁intern acional",
+ "▁G las",
+ "▁Gl as",
+ "▁Gla s",
+ "▁m are",
+ "▁ma re",
+ "▁mar e",
+ "▁N eb",
+ "▁Ne b",
+ "▁G B",
+ "▁ GB",
+ "kw args",
+ "▁a ument",
+ "▁au ment",
+ "WI D",
+ "W ID",
+ "▁ро д",
+ "▁р од",
+ "▁ род",
+ "p unkt",
+ "▁G rad",
+ "▁Gr ad",
+ "▁Gra d",
+ "▁ Grad",
+ "S N",
+ "AM P",
+ "A MP",
+ "▁B orn",
+ "▁Bo rn",
+ "▁Bor n",
+ "▁Guer re",
+ "го тов",
+ "▁med io",
+ "▁medi o",
+ "Me d",
+ "M ed",
+ "su pp",
+ "sup p",
+ "s upp",
+ "act ual",
+ "drop down",
+ "▁ok tober",
+ "▁ ř",
+ "▁circ ular",
+ "▁cir cular",
+ "▁circul ar",
+ "▁s kin",
+ "▁sk in",
+ "▁ski n",
+ "▁em phas",
+ "▁emp has",
+ "▁го лов",
+ "▁голо в",
+ "▁p ue",
+ "▁pu e",
+ "▁inform ations",
+ "▁information s",
+ "▁Wolf gang",
+ "▁us eless",
+ "▁use less",
+ "и т",
+ "▁Jo an",
+ "▁б ор",
+ "▁бо р",
+ "▁ бор",
+ "▁G lad",
+ "▁Gl ad",
+ "▁Gla d",
+ "▁K now",
+ "▁Kn ow",
+ "▁Kno w",
+ "ké nt",
+ "k ént",
+ "sp eed",
+ "spe ed",
+ "▁Ke vin",
+ "un ft",
+ "▁ar qu",
+ "▁ arqu",
+ "▁C asa",
+ "▁Cas a",
+ "▁Ca sa",
+ "(. ..",
+ "( ...",
+ "▁rapid ly",
+ "▁pro ble",
+ "▁prob le",
+ "▁probl e",
+ "▁Ви кипеди",
+ "že n",
+ "ž en",
+ "▁N eben",
+ "▁Ne ben",
+ "▁Neb en",
+ "▁M eter",
+ "▁Me ter",
+ "▁Met er",
+ "Child ren",
+ "ce m",
+ "c em",
+ "ig os",
+ "igo s",
+ "aj u",
+ "a ju",
+ "▁Ret rie",
+ "▁H ell",
+ "▁He ll",
+ "▁Hel l",
+ "▁g ig",
+ "▁gi g",
+ "▁contro vers",
+ "▁z oom",
+ "▁zo om",
+ "▁zoo m",
+ "▁c ens",
+ "▁ce ns",
+ "▁alc uni",
+ "▁He ader",
+ "▁Head er",
+ "▁ Header",
+ "Me ta",
+ "Met a",
+ "M eta",
+ "Re quired",
+ "▁ин ститу",
+ "▁s kup",
+ "▁sk up",
+ "▁ing les",
+ "ég l",
+ "é gl",
+ "bi j",
+ "b ij",
+ "▁t ér",
+ "▁té r",
+ "▁com pag",
+ "▁comp ag",
+ "▁comm itted",
+ "▁commit ted",
+ "▁process ed",
+ "▁proc essed",
+ "▁proces sed",
+ "Lo wer",
+ "L ower",
+ "▁F oreign",
+ "▁For eign",
+ "▁Fore ign",
+ "▁ Foreign",
+ "▁s eq",
+ "▁se q",
+ "▁ seq",
+ "sheet s",
+ "she ets",
+ "▁F em",
+ "▁Fe m",
+ "ho z",
+ "h oz",
+ "in ks",
+ "ink s",
+ "▁k all",
+ "▁ka ll",
+ "▁kal l",
+ "vari ant",
+ "▁li bro",
+ "▁lib ro",
+ "▁cl icks",
+ "▁click s",
+ "▁cli cks",
+ "▁g obierno",
+ "ie gel",
+ "ieg el",
+ "мо го",
+ "м ого",
+ "ge me",
+ "gem e",
+ "g eme",
+ "▁t ower",
+ "▁to wer",
+ "▁par ish",
+ "▁T CP",
+ "▁l s",
+ "▁ ls",
+ "▁n ginx",
+ "▁ng inx",
+ "▁ nginx",
+ "Na N",
+ "▁D ir",
+ "▁Di r",
+ "▁ Dir",
+ "▁Begr iffe",
+ "▁Begriff e",
+ "ar ie",
+ "ari e",
+ "a rie",
+ "ím p",
+ "í mp",
+ "ic ios",
+ "ici os",
+ "icio s",
+ "i cios",
+ "▁sh aring",
+ "▁cin éma",
+ "be c",
+ "b ec",
+ "RE D",
+ "R ED",
+ "▁K ra",
+ "▁Kr a",
+ "ab ol",
+ "a bol",
+ "▁fl ux",
+ "▁flu x",
+ "▁exp ensive",
+ "▁су ще",
+ "▁` _",
+ "oc z",
+ "o cz",
+ "ли ст",
+ "▁acqu aint",
+ "▁w ise",
+ "▁wis e",
+ "▁ wise",
+ "▁pou voir",
+ "▁pouv oir",
+ "▁dev ant",
+ "▁moment um",
+ "im mer",
+ "imm er",
+ "▁C oupe",
+ "▁Cou pe",
+ "index Of",
+ "▁does nt",
+ "▁doesn t",
+ "▁за в",
+ "▁lic ense",
+ "▁ â",
+ "CS S",
+ "C SS",
+ "▁r ice",
+ "▁ric e",
+ "▁ri ce",
+ "▁ rice",
+ "Te am",
+ "▁a no",
+ "▁an o",
+ "▁ ano",
+ "li t",
+ "l it",
+ "▁mer ged",
+ "▁merge d",
+ "▁C ell",
+ "▁Ce ll",
+ "▁Cel l",
+ "▁ Cell",
+ "л л",
+ "bo y",
+ "b oy",
+ "as ts",
+ "ast s",
+ "▁s ell",
+ "▁se ll",
+ "▁sel l",
+ "▁gro ße",
+ "▁groß e",
+ "▁virt uel",
+ "▁virtue l",
+ "Can cel",
+ "▁s j",
+ "g ment",
+ ". <",
+ "ча й",
+ "i ë",
+ "ak h",
+ "a kh",
+ "iz ers",
+ "ize rs",
+ "izer s",
+ "pr it",
+ "p rit",
+ "▁T ib",
+ "▁Ti b",
+ "▁elabor ate",
+ "▁f é",
+ "▁м еди",
+ "▁ме ди",
+ "LENG TH",
+ "▁prim arily",
+ "▁sc ores",
+ "▁score s",
+ "▁carry ing",
+ "▁l ake",
+ "▁la ke",
+ "▁lak e",
+ "com pose",
+ "comp ose",
+ "compos e",
+ "▁Town ship",
+ "un ge",
+ "ung e",
+ "▁al berga",
+ "an ych",
+ "any ch",
+ "a nych",
+ "qu elle",
+ "que lle",
+ "quel le",
+ "q uelle",
+ "▁Ar k",
+ "▁p ris",
+ "▁pr is",
+ "▁pri s",
+ "▁v oll",
+ "▁vo ll",
+ "▁vol l",
+ "ш ли",
+ "Valid ation",
+ "▁ce ux",
+ "▁pop ulate",
+ "▁popula te",
+ "▁popul ate",
+ "\" \r",
+ "▁fem mes",
+ "▁femme s",
+ "AN G",
+ "A NG",
+ "▁Desp ite",
+ "вы е",
+ "в ые",
+ "is ke",
+ "isk e",
+ "i ske",
+ "zu g",
+ "z ug",
+ "на ча",
+ "▁h atten",
+ "▁hat ten",
+ "▁hatte n",
+ "IN SERT",
+ "Emp loyee",
+ "▁mo ments",
+ "▁moment s",
+ "▁mom ents",
+ "▁últ ima",
+ "▁h older",
+ "▁hold er",
+ "▁ho lder",
+ "▁hol der",
+ "▁ holder",
+ "bl ank",
+ "Col lections",
+ "Collection s",
+ "Collect ions",
+ "ath ers",
+ "ather s",
+ "a thers",
+ "▁g rade",
+ "▁gr ade",
+ "▁gra de",
+ "▁grad e",
+ "▁ grade",
+ "▁aff airs",
+ "▁affair s",
+ ".$ $",
+ ". $$",
+ "▁d elta",
+ "▁del ta",
+ "▁ delta",
+ "▁Jug end",
+ "▁españ ol",
+ "▁O UT",
+ "▁ OUT",
+ "▁mathemat ical",
+ "▁m ongo",
+ "▁mon go",
+ "▁Ф е",
+ "ul ing",
+ "uli ng",
+ "u ling",
+ "▁re volution",
+ "▁revol ution",
+ "▁c oin",
+ "▁co in",
+ "▁sub class",
+ "\" =>",
+ "äch e",
+ "ä che",
+ "▁p yg",
+ "▁py g",
+ "ща я",
+ "ill ery",
+ "ille ry",
+ "iller y",
+ "▁com enz",
+ "dep th",
+ "▁c él",
+ "▁re size",
+ "▁res ize",
+ "▁ resize",
+ "▁S ame",
+ "▁Sam e",
+ "▁Sa me",
+ "▁st rik",
+ "▁str ik",
+ "▁stri k",
+ "▁t ir",
+ "▁ti r",
+ "▁sc arc",
+ "▁scar c",
+ "▁M ember",
+ "▁Mem ber",
+ "▁ Member",
+ "sub scribe",
+ "ó ż",
+ "út bol",
+ "ex cept",
+ "▁dr iving",
+ "▁dri ving",
+ "▁driv ing",
+ "ki e",
+ "k ie",
+ "zo ny",
+ "zon y",
+ "z ony",
+ "ème s",
+ "è mes",
+ "Da vid",
+ "D avid",
+ "iss ant",
+ "issa nt",
+ "▁т ы",
+ "▁ ты",
+ "▁é lect",
+ "▁él ect",
+ "▁re name",
+ "▁r ename",
+ "▁ren ame",
+ "▁R unning",
+ "▁Run ning",
+ "▁ Running",
+ "▁inter faces",
+ "▁interface s",
+ "//////// ////////",
+ "▁Wal ker",
+ "▁Walk er",
+ "▁soci été",
+ "▁as ks",
+ "▁ask s",
+ "br id",
+ "b rid",
+ "▁je we",
+ "▁se ines",
+ "▁sein es",
+ "▁seine s",
+ "▁sei nes",
+ "▁ag ents",
+ "▁agent s",
+ "▁M Y",
+ "▁ MY",
+ "▁Law rence",
+ "de ss",
+ "des s",
+ "d ess",
+ "ie sen",
+ "ies en",
+ "iese n",
+ "i esen",
+ "▁людя х",
+ "прав и",
+ "пра ви",
+ "▁anc est",
+ "▁wel che",
+ "ra um",
+ "r aum",
+ "▁o rb",
+ "▁or b",
+ "▁ orb",
+ "sc al",
+ "s cal",
+ "▁L ear",
+ "▁Le ar",
+ "▁w ear",
+ "▁we ar",
+ "▁s lave",
+ "▁sl ave",
+ "▁sla ve",
+ "▁re named",
+ "▁ren amed",
+ "▁rename d",
+ "če n",
+ "č en",
+ "ma ste",
+ "mas te",
+ "m aste",
+ "ang les",
+ "angle s",
+ "▁Am érica",
+ "▁t i",
+ "▁ ti",
+ "▁dem sel",
+ "▁bene ath",
+ "bin ary",
+ "b inary",
+ "▁ed ición",
+ "▁kil omet",
+ "▁kilom et",
+ "ui ts",
+ "uit s",
+ "u its",
+ "▁cu atro",
+ "▁ent rance",
+ "▁entr ance",
+ "ond issement",
+ "▁b ag",
+ "▁ba g",
+ "▁ bag",
+ "▁Ar men",
+ "▁Arm en",
+ "ij o",
+ "i jo",
+ "▁L ors",
+ "▁Lo rs",
+ "▁Lor s",
+ "▁demsel ben",
+ "ê m",
+ "▁dis crete",
+ "▁prom inent",
+ "▁J ay",
+ "▁Ja y",
+ "de cor",
+ "dec or",
+ "D L",
+ "▁d í",
+ "St ruct",
+ "Str uct",
+ "▁P roduction",
+ "▁Produ ction",
+ "▁Product ion",
+ "th ey",
+ "the y",
+ "ar ius",
+ "ari us",
+ "sch nitt",
+ "▁C ou",
+ "▁Co u",
+ "▁l ex",
+ "▁le x",
+ "▁ lex",
+ "y outube",
+ "▁рабо та",
+ "st ation",
+ "sta tion",
+ "stat ion",
+ "se p",
+ "s ep",
+ "▁mi rror",
+ "▁mir ror",
+ "▁h its",
+ "▁hit s",
+ "▁hi ts",
+ "▁Be ck",
+ "at ically",
+ "atic ally",
+ "▁L az",
+ "▁La z",
+ "▁w inner",
+ "▁win ner",
+ "DE X",
+ "D EX",
+ "▁I NT",
+ "▁IN T",
+ "▁ INT",
+ "}^ {-",
+ "}^{ -",
+ "} ^{-",
+ "▁w egen",
+ "▁we gen",
+ "▁weg en",
+ "ma d",
+ "m ad",
+ "An gle",
+ "Ang le",
+ "zi ng",
+ "zin g",
+ "z ing",
+ "▁Bay ern",
+ "▁Bayer n",
+ "sa l",
+ "s al",
+ "äg er",
+ "ä ger",
+ "▁bus y",
+ "▁st ör",
+ "▁f olk",
+ "▁fol k",
+ "▁ folk",
+ "▁p rix",
+ "▁pr ix",
+ "▁pri x",
+ "▁al located",
+ "▁alloc ated",
+ "▁allocate d",
+ "▁p t",
+ "▁ pt",
+ "af fen",
+ "aff en",
+ "a ffen",
+ "cl uster",
+ "clus ter",
+ "▁com plement",
+ "▁comp lement",
+ "▁comple ment",
+ "▁compl ement",
+ "ár s",
+ "á rs",
+ "▁Amer ika",
+ "рі й",
+ "р ій",
+ "▁val ley",
+ "▁vall ey",
+ "▁valle y",
+ "▁ro oms",
+ "▁room s",
+ "▁ rooms",
+ "▁m oi",
+ "▁mo i",
+ ".\" ,",
+ ". \",",
+ ";; ;;",
+ "▁lo west",
+ "▁low est",
+ "no g",
+ "n og",
+ "▁land et",
+ "▁lan det",
+ "▁program me",
+ "ch io",
+ "chi o",
+ "▁W ährend",
+ "ánd ez",
+ "▁дол ж",
+ "▁o uv",
+ "▁ou v",
+ "▁ ouv",
+ "om ány",
+ "▁Википеди и",
+ "▁s ó",
+ "▁ele ktr",
+ "De sc",
+ "Des c",
+ "D esc",
+ "▁Be aut",
+ "▁Beau t",
+ "на р",
+ "н ар",
+ "▁мо же",
+ "▁мож е",
+ "P ierre",
+ "es ota",
+ "eso ta",
+ "▁oper ated",
+ "▁opera ted",
+ "▁operate d",
+ "▁f orte",
+ "▁for te",
+ "▁fort e",
+ "ри с",
+ "р ис",
+ "▁op position",
+ "▁opp osition",
+ "▁oppos ition",
+ "al ia",
+ "ali a",
+ "a lia",
+ "▁S yl",
+ "▁Sy l",
+ "get Name",
+ "ве ли",
+ "fi k",
+ "f ik",
+ "▁com prom",
+ "▁comp rom",
+ "▁compr om",
+ "▁Text View",
+ "▁ TextView",
+ "Sp ring",
+ "S pring",
+ "met adata",
+ "meta data",
+ "en gu",
+ "eng u",
+ "/ ,",
+ "▁car ri",
+ "is tol",
+ "ist ol",
+ "isto l",
+ "▁diag onal",
+ "li sta",
+ "list a",
+ "lis ta",
+ "l ista",
+ "iz en",
+ "ize n",
+ "i zen",
+ "▁re nde",
+ "▁r ende",
+ "▁ren de",
+ "▁rend e",
+ "gc c",
+ "g cc",
+ "be ck",
+ "bec k",
+ "li us",
+ "l ius",
+ "ir al",
+ "ira l",
+ "i ral",
+ "Resol ver",
+ "▁percent age",
+ "▁at tra",
+ "▁att ra",
+ "▁attr a",
+ "str ings",
+ "string s",
+ "wi ąz",
+ "od s",
+ "o ds",
+ "во лю",
+ "ę ż",
+ "▁news paper",
+ "▁newsp aper",
+ "im iter",
+ "imi ter",
+ "imit er",
+ "AB C",
+ "A BC",
+ "▁Man chester",
+ "[ {",
+ "Ag ent",
+ "Age nt",
+ "A gent",
+ "▁W or",
+ "▁Wo r",
+ "▁K ath",
+ "▁Kat h",
+ "▁Ka th",
+ "▁по ві",
+ "▁пов і",
+ "▁ent onces",
+ "▁n iveau",
+ "at ted",
+ "att ed",
+ "atte d",
+ "le arn",
+ "lear n",
+ "lea rn",
+ "at iques",
+ "ati ques",
+ "atique s",
+ "▁у би",
+ "▁qu indi",
+ "bin ding",
+ "bind ing",
+ "b inding",
+ "▁import ed",
+ "▁imp orted",
+ "▁H orn",
+ "▁Hor n",
+ "▁Ho rn",
+ "em berg",
+ "ember g",
+ "emb erg",
+ "com plex",
+ "comp lex",
+ "comple x",
+ "▁ne ural",
+ "▁neu ral",
+ "▁neur al",
+ "in formation",
+ "▁recogn ition",
+ "in gt",
+ "ing t",
+ "▁inhab itants",
+ "vu e",
+ "v ue",
+ "▁Be völker",
+ "▁cur ves",
+ "▁curve s",
+ "▁curv es",
+ "▁l eb",
+ "▁le b",
+ "▁ leb",
+ "ді й",
+ "д ій",
+ "▁s ow",
+ "▁so w",
+ "▁sent iment",
+ "P H",
+ "ra che",
+ "rac he",
+ "rach e",
+ "r ache",
+ "▁- (",
+ "▁ -(",
+ "▁e stable",
+ "▁est able",
+ "▁es table",
+ "▁estab le",
+ "▁esta ble",
+ "▁Ferd inand",
+ "▁é crit",
+ "▁éc rit",
+ "▁prime iro",
+ "▁t ex",
+ "▁te x",
+ "▁ tex",
+ "▁inter mediate",
+ "ve rage",
+ "ver age",
+ "vera ge",
+ "ib us",
+ "i bus",
+ "▁s erves",
+ "▁ser ves",
+ "▁serv es",
+ "▁serve s",
+ "iv as",
+ "iva s",
+ "i vas",
+ "▁b ru",
+ "▁br u",
+ "▁ bru",
+ "▁l um",
+ "▁lu m",
+ "att ice",
+ "atti ce",
+ "ч ный",
+ "▁D res",
+ "▁Dr es",
+ "▁Dre s",
+ "▁v ideos",
+ "▁video s",
+ "▁vide os",
+ "d uration",
+ "▁a bit",
+ "▁ab it",
+ "▁e gg",
+ "▁eg g",
+ "ograph ical",
+ "ographic al",
+ "al ph",
+ "ST ATE",
+ "STAT E",
+ "▁па ра",
+ "▁пар а",
+ "▁ пара",
+ "re ading",
+ "read ing",
+ "rea ding",
+ "▁veh icle",
+ "▁fort une",
+ "ult ats",
+ "▁St oria",
+ "▁Sto ria",
+ "mi dt",
+ "mid t",
+ "łą cz",
+ "▁Mem orial",
+ "▁v as",
+ "▁va s",
+ "▁ vas",
+ "▁з ан",
+ "▁за н",
+ "▁ зан",
+ "▁ut ility",
+ "▁util ity",
+ "▁ob sc",
+ "▁obs c",
+ "▁rel acion",
+ "▁rela cion",
+ "▁relac ion",
+ "▁run at",
+ "▁ru nat",
+ "Re lease",
+ "ta ke",
+ "t ake",
+ "▁O liver",
+ "▁Ol iver",
+ "▁Oliv er",
+ "▁S id",
+ "▁Si d",
+ "ul os",
+ "ulo s",
+ "u los",
+ "▁G arc",
+ "▁Gar c",
+ "▁Ga rc",
+ "▁роз та",
+ "▁S ak",
+ "▁Sa k",
+ "P y",
+ "führ t",
+ "f ührt",
+ "▁tra bal",
+ "▁trab al",
+ "* {",
+ "▁z es",
+ "▁ze s",
+ "▁ zes",
+ "▁sz ere",
+ "▁szer e",
+ "▁sze re",
+ "▁v arios",
+ "▁var ios",
+ "▁vari os",
+ "▁va rios",
+ "▁o tra",
+ "▁ot ra",
+ "▁e val",
+ "▁ev al",
+ "▁ eval",
+ "▁situ é",
+ "▁sit ué",
+ "▁w ounded",
+ "▁Vin cent",
+ "▁вико ри",
+ "▁en code",
+ "▁enc ode",
+ "▁ encode",
+ "Mod al",
+ "Mo dal",
+ "▁f orb",
+ "▁for b",
+ "▁fo rb",
+ "▁dynam ics",
+ "▁dynamic s",
+ "▁de pos",
+ "▁dep os",
+ "ar de",
+ "ard e",
+ "▁street s",
+ "▁stre ets",
+ "▁K omm",
+ "▁Kom m",
+ "▁Ko mm",
+ "=$ (",
+ "= $(",
+ "▁по вер",
+ "▁пов ер",
+ "▁пове р",
+ "▁d ois",
+ "▁do is",
+ "▁doi s",
+ "▁v itt",
+ "▁vi tt",
+ "▁vit t",
+ "▁automat isch",
+ "▁re load",
+ "▁ reload",
+ "▁Ver walt",
+ "ber o",
+ "be ro",
+ "b ero",
+ "▁h ub",
+ "▁hu b",
+ "▁m os",
+ "▁mo s",
+ "▁ mos",
+ "▁t utto",
+ "▁tu tto",
+ "▁tut to",
+ "▁Freder ick",
+ "ło w",
+ "ł ow",
+ "ant ages",
+ "anta ges",
+ "antage s",
+ "aqu e",
+ "a que",
+ "pa per",
+ "p aper",
+ "▁ein ige",
+ "`) ,",
+ "` ),",
+ "d j",
+ "▁P le",
+ "▁Pl e",
+ "▁% ,",
+ "▁ %,",
+ "▁B itmap",
+ "▁Bit map",
+ "▁ Bitmap",
+ "▁friend ly",
+ "▁tr uly",
+ "▁st roke",
+ "▁str oke",
+ "▁stro ke",
+ "▁ stroke",
+ "ro ph",
+ "rop h",
+ "r oph",
+ "▁en gl",
+ "▁eng l",
+ "▁ engl",
+ "▁c off",
+ "▁co ff",
+ "▁d ust",
+ "▁du st",
+ "▁dus t",
+ "▁Jah res",
+ "▁Jahr es",
+ "▁Jahre s",
+ "pp i",
+ "p pi",
+ "▁w ys",
+ "▁wy s",
+ "fa ctor",
+ "fact or",
+ "fac tor",
+ "f actor",
+ "sch luss",
+ "▁дере вня",
+ "▁дерев ня",
+ "▁P ast",
+ "▁Pa st",
+ "▁Pas t",
+ "▁до ма",
+ "CO M",
+ "C OM",
+ "▁pu eden",
+ "▁puede n",
+ "▁pue den",
+ "▁g ift",
+ "▁gi ft",
+ "▁G la",
+ "▁Gl a",
+ "▁trigger ed",
+ "él y",
+ "é ly",
+ "ül és",
+ "ü lés",
+ "▁O liv",
+ "▁Ol iv",
+ "▁ver so",
+ "▁vers o",
+ "▁ verso",
+ "▁l le",
+ "▁ll e",
+ "▁ lle",
+ "▁G li",
+ "▁Gl i",
+ "▁L td",
+ "o a",
+ "▁territ orio",
+ "ord re",
+ "▁de ck",
+ "▁dec k",
+ "▁ deck",
+ "dr a",
+ "d ra",
+ "as zt",
+ "asz t",
+ "▁concern ing",
+ "▁Add itionally",
+ "▁kter é",
+ "▁g rund",
+ "▁gr und",
+ "▁gru nd",
+ "▁ grund",
+ "▁G est",
+ "▁Ge st",
+ "▁Ges t",
+ "▁ Gest",
+ "▁mis under",
+ "pr et",
+ "pre t",
+ "p ret",
+ "── ──",
+ "▁re putation",
+ "zi a",
+ "z ia",
+ "▁у спе",
+ "▁ус пе",
+ "▁esc aped",
+ "▁escape d",
+ "▁P rag",
+ "▁Pr ag",
+ "▁Pra g",
+ "per form",
+ "▁a ustral",
+ "▁aust ral",
+ "▁V ater",
+ "▁Va ter",
+ "ча с",
+ "▁r aces",
+ "▁ra ces",
+ "▁race s",
+ "▁rac es",
+ "▁By te",
+ "▁ Byte",
+ "Ma sk",
+ "M ask",
+ "▁Ter rit",
+ "▁Terr it",
+ "ст ю",
+ "▁V oci",
+ "▁Vo ci",
+ "▁Fich ier",
+ "▁Насе лення",
+ "▁Unter scheidung",
+ "te enth",
+ "teen th",
+ "▁pi lot",
+ "▁pil ot",
+ "▁j i",
+ "▁ ji",
+ "▁дву х",
+ "▁orient ation",
+ "▁ orientation",
+ "ind re",
+ "▁D ort",
+ "▁Do rt",
+ "▁Dor t",
+ "ça s",
+ "ç as",
+ "п ли",
+ "▁re action",
+ "▁react ion",
+ "▁cons isting",
+ "▁consist ing",
+ "▁fer ro",
+ "ти сти",
+ "ya rd",
+ "yar d",
+ "y ard",
+ "▁с ві",
+ "▁interpret ation",
+ "i ą",
+ "ra h",
+ "r ah",
+ "▁f and",
+ "▁fa nd",
+ "▁fan d",
+ "Pub lic",
+ "P ublic",
+ "▁un iverse",
+ "▁univers e",
+ "▁ret ir",
+ "▁cons cious",
+ "ar qu",
+ "▁w aste",
+ "▁was te",
+ "▁wa ste",
+ "▁B ib",
+ "▁Bi b",
+ "ycler View",
+ "▁list ening",
+ "▁listen ing",
+ "▁liste ning",
+ "gle ich",
+ "g leich",
+ "nie js",
+ "niej s",
+ "▁cor relation",
+ "▁correl ation",
+ "▁corre lation",
+ "▁rece iver",
+ "▁receive r",
+ "▁у да",
+ "▁cour age",
+ "▁cou rage",
+ "uch s",
+ "uc hs",
+ "u chs",
+ "fa ss",
+ "fas s",
+ "f ass",
+ "▁ch unk",
+ "▁ chunk",
+ "▁An fang",
+ "▁gro ßen",
+ "▁große n",
+ "▁groß en",
+ "cont inue",
+ "continu e",
+ "▁Warsza wa",
+ "h é",
+ "i y",
+ "iv ement",
+ "ive ment",
+ "i vement",
+ "▁ α",
+ "▁ex posed",
+ "▁exp osed",
+ "▁expos ed",
+ "▁expose d",
+ "▁z ahl",
+ "▁za hl",
+ "▁ zahl",
+ "▁sa cr",
+ "▁sac r",
+ "▁Lo oks",
+ "▁Look s",
+ "▁e ager",
+ "en ten",
+ "ent en",
+ "ente n",
+ "e nten",
+ "C ursor",
+ "/ _",
+ "ix a",
+ "i xa",
+ "ре ла",
+ "зна ча",
+ "з нача",
+ "▁фамили ей",
+ "▁ar gent",
+ "▁arg ent",
+ "▁ argent",
+ "▁An ders",
+ "▁And ers",
+ "œuv re",
+ "▁I sa",
+ "▁Is a",
+ "мен та",
+ "мент а",
+ "▁ad vers",
+ "▁adv ers",
+ "ri ction",
+ "ric tion",
+ "rict ion",
+ "r iction",
+ "G P",
+ "▁п ісля",
+ "▁pre serve",
+ "▁pres erve",
+ "▁G arden",
+ "▁Gar den",
+ "▁Gard en",
+ "R ate",
+ "ap rès",
+ "a près",
+ "▁read able",
+ "in du",
+ "ind u",
+ "▁s kill",
+ "▁sk ill",
+ "▁ski ll",
+ "▁hel ping",
+ "▁help ing",
+ "ograph ique",
+ "cl ing",
+ "cli ng",
+ "c ling",
+ "olog ist",
+ "▁Fil ter",
+ "▁ Filter",
+ "▁f inger",
+ "▁fin ger",
+ "▁V all",
+ "▁Val l",
+ "▁Va ll",
+ "▁Pol ish",
+ "▁Po lish",
+ "l g",
+ "▁Famil ien",
+ "▁Familie n",
+ "▁w aters",
+ "▁water s",
+ "▁wa ters",
+ "▁wat ers",
+ "▁pse ud",
+ "az a",
+ "a za",
+ "_ )",
+ "AR Y",
+ "A RY",
+ "▁с реди",
+ "▁сред и",
+ "▁сре ди",
+ "▁M ust",
+ "▁Mus t",
+ "▁Mu st",
+ "▁B od",
+ "▁Bo d",
+ "an on",
+ "ano n",
+ "a non",
+ "▁l ado",
+ "▁la do",
+ "▁lad o",
+ "▁t ight",
+ "im en",
+ "ime n",
+ "i men",
+ "ap pen",
+ "app en",
+ "appe n",
+ "a ppen",
+ "fr ames",
+ "frame s",
+ "fra mes",
+ "fram es",
+ "in gers",
+ "ing ers",
+ "inger s",
+ "inge rs",
+ "▁CO VID",
+ "▁з і",
+ "▁ зі",
+ "▁с ве",
+ "▁ц ь",
+ "▁ ць",
+ "▁L eft",
+ "▁Le ft",
+ "▁ Left",
+ "]] ;",
+ "] ];",
+ "ч ь",
+ "фи ка",
+ "▁с ло",
+ "▁ сло",
+ "▁п і",
+ "▁ пі",
+ "▁ex iste",
+ "▁exist e",
+ "▁Atl antic",
+ "▁maintain ed",
+ "▁ir re",
+ "▁an née",
+ "▁ann ée",
+ "▁ année",
+ "▁comm ented",
+ "▁comment ed",
+ "ве ро",
+ "вер о",
+ "ber ta",
+ "bert a",
+ "b erta",
+ "▁L ad",
+ "▁La d",
+ "▁U pon",
+ "▁Up on",
+ "▁p ause",
+ "▁pa use",
+ "▁pau se",
+ "mi ll",
+ "mil l",
+ "m ill",
+ "op ter",
+ "opt er",
+ "U K",
+ "ре с",
+ "р ес",
+ "нцикло педи",
+ "▁along side",
+ "▁ro bot",
+ "▁rob ot",
+ "▁f ert",
+ "▁fe rt",
+ "▁fer t",
+ "▁ fert",
+ "▁m oy",
+ "▁mo y",
+ "▁a de",
+ "▁ad e",
+ "▁ ade",
+ "Map per",
+ "Mapp er",
+ "Ma pper",
+ "M apper",
+ ")- >",
+ ") ->",
+ "ig ua",
+ "igu a",
+ "ét ique",
+ "т ка",
+ "al ias",
+ "ali as",
+ "alia s",
+ "a lias",
+ "▁о ри",
+ "▁ор и",
+ "▁M agn",
+ "▁Ma gn",
+ "▁Mag n",
+ "▁gehör te",
+ "▁gehört e",
+ "im b",
+ "i mb",
+ ")} {\\",
+ ")}{ \\",
+ ") }{\\",
+ "▁Wikip édia",
+ "▁u rs",
+ "▁ur s",
+ "▁ urs",
+ "▁e nde",
+ "▁en de",
+ "▁end e",
+ "▁ ende",
+ "le b",
+ "l eb",
+ "▁G C",
+ "▁ GC",
+ "H ol",
+ "an cing",
+ "anc ing",
+ "anci ng",
+ "Un ion",
+ "Uni on",
+ "▁ten ía",
+ "T T",
+ "▁e state",
+ "▁est ate",
+ "▁esta te",
+ "▁estat e",
+ "h á",
+ "▁по лі",
+ "▁пол і",
+ "ul tan",
+ "ult an",
+ "▁H ockey",
+ "ul se",
+ "uls e",
+ "▁cho ices",
+ "▁choice s",
+ "sch er",
+ "sc her",
+ "sche r",
+ "s cher",
+ "▁[ ],",
+ "▁[] ,",
+ "▁pot entially",
+ "▁potential ly",
+ "▁Ü bers",
+ "▁Über s",
+ "▁ad mit",
+ "▁adm it",
+ "Com ment",
+ "Comm ent",
+ "ст я",
+ "с тя",
+ "▁V ien",
+ "▁Vi en",
+ "▁Vie n",
+ "▁ц і",
+ "▁ ці",
+ "▁per mut",
+ "▁perm ut",
+ "c gi",
+ "▁cr ít",
+ "Con sole",
+ "Cons ole",
+ "ct ic",
+ "▁ok res",
+ "aw k",
+ "foot ball",
+ "ou est",
+ "o uest",
+ "CT YPE",
+ "C TYPE",
+ "olog ique",
+ "▁const it",
+ "▁cons tit",
+ "▁inter ests",
+ "▁interest s",
+ "▁Pro gress",
+ "▁ Progress",
+ "▁M enu",
+ "▁Me nu",
+ "▁Men u",
+ "▁ Menu",
+ "▁tak é",
+ "▁ta ké",
+ "▁As ian",
+ "▁Asia n",
+ "▁за щи",
+ "▁young er",
+ "▁w ished",
+ "▁wish ed",
+ "▁wis hed",
+ "▁S ort",
+ "▁So rt",
+ "▁Sor t",
+ "▁ Sort",
+ "▁aud ience",
+ "▁audi ence",
+ "am ba",
+ "amb a",
+ "▁gehör t",
+ "▁K ansas",
+ "ya ume",
+ "▁Prof essional",
+ "â ce",
+ "▁f atto",
+ "▁fa tto",
+ "▁fat to",
+ "to d",
+ "t od",
+ "▁data sets",
+ "▁datas ets",
+ "▁dataset s",
+ "▁f are",
+ "▁far e",
+ "▁fa re",
+ "▁ fare",
+ "▁w aves",
+ "▁wave s",
+ "▁wa ves",
+ "~ /",
+ "▁measure ment",
+ "▁w ol",
+ "▁wo l",
+ "▁ wol",
+ "ind ust",
+ "indu st",
+ "▁strugg ling",
+ "▁pull ed",
+ "▁pul led",
+ "▁car atter",
+ "▁Ex terne",
+ "▁Ext erne",
+ "▁Extern e",
+ "▁дей стви",
+ "cn t",
+ "c nt",
+ "li ches",
+ "lic hes",
+ "lich es",
+ "liche s",
+ "▁Pos sible",
+ "▁Poss ible",
+ "▁fa ced",
+ "▁face d",
+ "▁fac ed",
+ "▁hypoth esis",
+ "▁kil om",
+ "▁n är",
+ "▁nä r",
+ "bo olean",
+ "P Y",
+ "am pa",
+ "amp a",
+ "▁k iss",
+ "▁ki ss",
+ "▁kis s",
+ "▁as tero",
+ "▁ast ero",
+ "▁neg li",
+ "am ents",
+ "ament s",
+ "amen ts",
+ "a ments",
+ "▁S tu",
+ "▁St u",
+ "at ó",
+ "a tó",
+ "▁Const itution",
+ "▁inter pol",
+ "▁Un able",
+ "▁Una ble",
+ "▁p is",
+ "▁pi s",
+ "▁ pis",
+ "▁p arc",
+ "▁par c",
+ "▁pa rc",
+ "\"] )",
+ "\" ])",
+ "ple r",
+ "pl er",
+ "p ler",
+ "▁aut ory",
+ "▁auto ry",
+ "▁autor y",
+ "▁alg unos",
+ "yw na",
+ "}) )",
+ "} ))",
+ "▁f alls",
+ "▁fall s",
+ "▁fal ls",
+ "▁ falls",
+ "▁é quip",
+ "▁e mit",
+ "▁em it",
+ "▁ emit",
+ "▁pro fil",
+ "▁prof il",
+ "ge ts",
+ "get s",
+ "g ets",
+ "ф о",
+ "▁Milit ary",
+ "▁nombre ux",
+ "oc t",
+ "o ct",
+ "Re place",
+ "Rep lace",
+ "▁se asons",
+ "▁season s",
+ "▁ch âteau",
+ "▁type of",
+ "▁ typeof",
+ "po lit",
+ "pol it",
+ "p olit",
+ "▁r and",
+ "▁ra nd",
+ "▁ran d",
+ "▁ rand",
+ "▁qu ar",
+ "▁erst mals",
+ "си ни",
+ "▁pay load",
+ "▁ payload",
+ "П о",
+ "кі н",
+ "к ін",
+ "re po",
+ "rep o",
+ "▁P av",
+ "▁Pa v",
+ "Sc ore",
+ "S core",
+ "er ves",
+ "erv es",
+ "erve s",
+ "▁soll te",
+ "▁мі ж",
+ "éb ec",
+ "é bec",
+ "▁c lip",
+ "▁cl ip",
+ "▁cli p",
+ "▁ clip",
+ "▁N ice",
+ "▁Nic e",
+ "▁Ni ce",
+ "▁n eben",
+ "▁ne ben",
+ "▁ass ass",
+ "it ories",
+ "ito ries",
+ "itor ies",
+ "itori es",
+ "▁un ity",
+ "▁unit y",
+ "▁ unity",
+ "▁е н",
+ "▁ ен",
+ "▁Inst itut",
+ "▁Instit ut",
+ "▁ Institut",
+ "▁intern ationale",
+ "▁international e",
+ "▁на ук",
+ "▁нау к",
+ "▁com and",
+ "▁kle ine",
+ "▁klein e",
+ "▁adj acent",
+ "▁deliver ed",
+ "▁ш е",
+ "▁ ше",
+ "зе м",
+ "з ем",
+ "▁c ot",
+ "▁co t",
+ "▁ cot",
+ "vis ual",
+ "ва ет",
+ "▁C ensus",
+ "\\ _",
+ "▁territ ory",
+ "чи л",
+ "ч ил",
+ "ч ные",
+ "fl utter",
+ "Did Load",
+ "Document s",
+ "Doc uments",
+ "▁d ob",
+ "▁do b",
+ "▁ dob",
+ "Br e",
+ "B re",
+ "an imate",
+ "ani mate",
+ "anim ate",
+ "▁b iz",
+ "▁bi z",
+ "▁b ata",
+ "▁ba ta",
+ "▁bat a",
+ "▁S U",
+ "▁ SU",
+ "es o",
+ "e so",
+ "▁p riority",
+ "▁prior ity",
+ "vá n",
+ "v án",
+ "ir as",
+ "ira s",
+ "i ras",
+ "▁char ged",
+ "▁charge d",
+ "▁charg ed",
+ "▁M icro",
+ "▁Mi cro",
+ "▁Mic ro",
+ "at oire",
+ "ato ire",
+ "a toire",
+ "че р",
+ "ч ер",
+ "ab ad",
+ "aba d",
+ "a bad",
+ "ur u",
+ "u ru",
+ "▁v š",
+ "dir e",
+ "di re",
+ "d ire",
+ "▁Tw itter",
+ "▁м ето",
+ "▁ме то",
+ "▁мет о",
+ "). .",
+ ") ..",
+ "▁Ц ент",
+ "▁ent wick",
+ "▁M ind",
+ "▁Min d",
+ "▁Mi nd",
+ "▁ф унк",
+ "F uture",
+ "ls t",
+ "l st",
+ "ło ż",
+ "fl i",
+ "f li",
+ "t ensor",
+ "▁top ology",
+ "▁ar te",
+ "▁art e",
+ "▁ arte",
+ "ER T",
+ "E RT",
+ "▁var iance",
+ "▁vari ance",
+ "Im ages",
+ "Image s",
+ "▁( @",
+ "▁ (@",
+ "Array List",
+ "O C",
+ "▁Де мо",
+ "auc oup",
+ "▁de notes",
+ "▁den otes",
+ "▁denote s",
+ "im on",
+ "imo n",
+ "i mon",
+ "њ и",
+ "▁Prz yp",
+ "▁Z ag",
+ "▁Za g",
+ "▁ди ре",
+ "▁Similar ly",
+ "б ро",
+ "▁mil itaire",
+ "▁milit aire",
+ "▁т ому",
+ "▁то му",
+ "▁том у",
+ "▁ тому",
+ "▁John ny",
+ "▁Мекси ку",
+ "ћ а",
+ "Su pp",
+ "S upp",
+ "▁jun ior",
+ "▁junio r",
+ "▁juni or",
+ "ol tre",
+ "olt re",
+ "o ltre",
+ "▁Мо ск",
+ "▁Мос к",
+ "▁adm itted",
+ "▁admit ted",
+ "▁relig ios",
+ "зя й",
+ "е го",
+ "▁t ears",
+ "▁te ars",
+ "▁tea rs",
+ "in go",
+ "ing o",
+ "od u",
+ "o du",
+ "iv eness",
+ "ive ness",
+ "iven ess",
+ "▁l ogo",
+ "▁lo go",
+ "▁log o",
+ "▁ logo",
+ "▁últ imo",
+ "▁al iment",
+ "▁ali ment",
+ "▁U ITableView",
+ "▁ UITableView",
+ ") !",
+ "▁n j",
+ "le tte",
+ "let te",
+ "lett e",
+ "l ette",
+ "▁res ident",
+ "▁resid ent",
+ "▁term ine",
+ "▁ter mine",
+ "▁termin e",
+ "▁у же",
+ "▁С те",
+ "▁Ст е",
+ "off ice",
+ "▁c arte",
+ "▁car te",
+ "▁cart e",
+ "▁li vre",
+ "▁liv re",
+ "▁Мо сков",
+ "▁Мос ков",
+ "▁Моск ов",
+ "▁e lections",
+ "▁elect ions",
+ "▁ele ctions",
+ "▁election s",
+ "зи ден",
+ "Tr igger",
+ "▁Ben jamin",
+ "add Class",
+ "ско г",
+ "▁Ob servable",
+ "▁Observ able",
+ "▁ Observable",
+ "Cl a",
+ "C la",
+ "gem ein",
+ "geme in",
+ "g emein",
+ "▁con sent",
+ "▁cons ent",
+ "▁conse nt",
+ "в ри",
+ "▁un fold",
+ "▁unf old",
+ "▁govern or",
+ "▁gover nor",
+ "▁governo r",
+ "на л",
+ "н ал",
+ "▁t oda",
+ "▁to da",
+ "▁tod a",
+ "Rem ote",
+ "ar ias",
+ "ari as",
+ "aria s",
+ "a rias",
+ "▁in stal",
+ "▁inst al",
+ "▁ins tal",
+ "fix ed",
+ "f ixed",
+ "▁dec ay",
+ "▁де рев",
+ "▁дере в",
+ "xy z",
+ "x yz",
+ "▁D ATE",
+ "▁DA TE",
+ "▁DAT E",
+ "▁ DATE",
+ "im ar",
+ "ima r",
+ "i mar",
+ "nt il",
+ "n til",
+ "▁start up",
+ "al ion",
+ "ali on",
+ "▁ko lej",
+ "▁kol ej",
+ "▁kole j",
+ "ci os",
+ "cio s",
+ "c ios",
+ "▁r anges",
+ "▁range s",
+ "▁ran ges",
+ "▁rang es",
+ "▁stup id",
+ "▁implement ations",
+ "▁implementation s",
+ "▁r m",
+ "▁ rm",
+ "én ek",
+ "é nek",
+ "▁g cc",
+ "▁ gcc",
+ "▁sc ène",
+ "N avigation",
+ "▁ ",
+ "▁к ан",
+ "▁ка н",
+ "▁ кан",
+ "▁town s",
+ "User name",
+ "Us ername",
+ "▁ф е",
+ "▁ фе",
+ "▁le aders",
+ "▁lead ers",
+ "▁leader s",
+ "oi t",
+ "o it",
+ "w är",
+ "▁d ummy",
+ "▁ass istant",
+ "▁assist ant",
+ "{$ \\",
+ "{ $\\",
+ "бі р",
+ "б ір",
+ "▁r oy",
+ "▁ro y",
+ "▁ roy",
+ "▁L ayout",
+ "▁ Layout",
+ "▁J ung",
+ "▁Ju ng",
+ "▁Jun g",
+ "Line s",
+ "Lin es",
+ "Li nes",
+ "L ines",
+ "▁Hol land",
+ "по р",
+ "п ор",
+ "▁Г ри",
+ "▁B ened",
+ "▁Be ned",
+ "▁Ben ed",
+ "▁П од",
+ "▁По д",
+ "xl s",
+ "x ls",
+ "▁G ol",
+ "▁Go l",
+ "▁Al eks",
+ "▁Ale ks",
+ "▁ej emplo",
+ "▁se zon",
+ "ar ding",
+ "ard ing",
+ "ardi ng",
+ "ardin g",
+ "foot note",
+ "▁Cong rès",
+ "re fer",
+ "ref er",
+ "ска та",
+ "с ката",
+ "Iter ator",
+ "▁our selves",
+ "▁M ic",
+ "▁Mi c",
+ "▁c ódigo",
+ "▁пло ща",
+ "▁\\ $",
+ "▁Char lie",
+ "No des",
+ "Node s",
+ "N odes",
+ "▁p uzz",
+ "▁pu zz",
+ "▁Ident ifier",
+ "▁ Identifier",
+ "▁fl utter",
+ "▁ flutter",
+ "▁pr ü",
+ "▁ prü",
+ "▁o rt",
+ "▁or t",
+ "▁ ort",
+ "▁C ort",
+ "▁Cor t",
+ "▁Co rt",
+ "astic search",
+ "▁С вя",
+ "▁B ull",
+ "▁Bu ll",
+ "▁Bul l",
+ "ud em",
+ "ude m",
+ "u dem",
+ "▁ap parent",
+ "▁appar ent",
+ ":- -",
+ ": --",
+ "▁Х ар",
+ "▁Ха р",
+ "▁L ap",
+ "▁La p",
+ "▁com port",
+ "▁comp ort",
+ "mat ically",
+ "m atically",
+ "▁cu rios",
+ "▁cur ios",
+ "▁мо жет",
+ "▁мож ет",
+ "▁може т",
+ "▁B h",
+ "ap ping",
+ "app ing",
+ "a pping",
+ "▁b asketball",
+ "▁basket ball",
+ "ze tek",
+ "zet ek",
+ "▁r unt",
+ "▁run t",
+ "▁ru nt",
+ "▁Mil an",
+ "▁Mi lan",
+ "fe ction",
+ "fect ion",
+ "f ection",
+ "rí a",
+ "r ía",
+ "▁K in",
+ "▁Ki n",
+ "▁s lower",
+ "▁sl ower",
+ "▁slow er",
+ "▁slo wer",
+ "bo th",
+ "bot h",
+ "b oth",
+ "▁Inst ituto",
+ "▁Instit uto",
+ "▁Institut o",
+ "▁Histor ical",
+ "▁Historic al",
+ "▁równ ież",
+ "mat ches",
+ "match es",
+ "yc i",
+ "y ci",
+ "▁esp èce",
+ "▁Schwe izer",
+ "▁Schweiz er",
+ "N T",
+ "S F",
+ "ac ia",
+ "aci a",
+ "a cia",
+ "for ge",
+ "f orge",
+ "Point s",
+ "Po ints",
+ "num bers",
+ "number s",
+ "▁f alling",
+ "▁fall ing",
+ "▁fal ling",
+ "▁inherit ance",
+ "▁Er st",
+ "▁custom ers",
+ "▁customer s",
+ "▁a ctu",
+ "▁act u",
+ "▁ac tu",
+ "▁m igration",
+ "▁migr ation",
+ "\\ '",
+ "Pl an",
+ "P lan",
+ "M r",
+ "ot hy",
+ "oth y",
+ "o thy",
+ "▁up grad",
+ "би ра",
+ "▁O ffic",
+ "▁Of fic",
+ "▁Off ic",
+ "▁W ait",
+ "▁Wa it",
+ "▁ Wait",
+ "▁to ler",
+ "ar don",
+ "ard on",
+ "ardo n",
+ "▁s lide",
+ "▁sl ide",
+ "▁sli de",
+ "▁ slide",
+ ") _",
+ "▁ста в",
+ "▁ став",
+ "▁nu clear",
+ "▁nuc lear",
+ "▁nucle ar",
+ "▁B il",
+ "▁Bi l",
+ "ow ner",
+ "own er",
+ "o wner",
+ "▁Har ris",
+ "▁Harr is",
+ "In formation",
+ "▁p ó",
+ "▁вклю ча",
+ "▁nu ovo",
+ "▁C av",
+ "▁Ca v",
+ "▁De scri",
+ "▁Des cri",
+ "▁а к",
+ "ód zt",
+ "▁react js",
+ "▁Ad ams",
+ "▁Adam s",
+ "▁Ada ms",
+ "▁Altern atively",
+ "ст рук",
+ "стру к",
+ "стр ук",
+ ")` ,",
+ ") `,",
+ "sub string",
+ "subst ring",
+ "substr ing",
+ "▁mass ive",
+ "▁heav ily",
+ "▁се зо",
+ "▁сез о",
+ "▁A na",
+ "▁An a",
+ "▁v ale",
+ "▁val e",
+ "▁va le",
+ "Pa d",
+ "P ad",
+ "▁E ither",
+ "▁r s",
+ "▁ rs",
+ "an che",
+ "anc he",
+ "anch e",
+ "▁up loaded",
+ "▁upload ed",
+ "▁( /",
+ "▁ (/",
+ "▁с пор",
+ "▁спо р",
+ "▁сп ор",
+ "▁redu ction",
+ "▁Tok yo",
+ "gr en",
+ "gre n",
+ "g ren",
+ "▁m igli",
+ "▁mig li",
+ "▁iter ator",
+ "▁ iterator",
+ "st av",
+ "sta v",
+ "▁support ing",
+ "▁ö sterreich",
+ "▁NS Log",
+ "ist iques",
+ "isti ques",
+ "istique s",
+ "ri min",
+ "rim in",
+ "r imin",
+ "MO DE",
+ "}} }\\",
+ "}}} \\",
+ "} }}\\",
+ "▁exp los",
+ "▁expl os",
+ "▁explo s",
+ "от е",
+ "о те",
+ "▁( „",
+ "Sa l",
+ "S al",
+ "▁simple st",
+ "▁simpl est",
+ "▁gi à",
+ "▁та н",
+ "▁т ан",
+ "▁ тан",
+ "▁c yl",
+ "▁cy l",
+ "bi r",
+ "b ir",
+ "▁measure ments",
+ "▁measurement s",
+ "Create d",
+ "Cre ated",
+ "er ek",
+ "ere k",
+ "e rek",
+ "look up",
+ "w irtschaft",
+ "▁В оло",
+ "▁Во ло",
+ "▁Вол о",
+ "ti mer",
+ "time r",
+ "tim er",
+ "t imer",
+ "de rr",
+ "der r",
+ "d err",
+ "▁ст ала",
+ "▁ста ла",
+ "▁стал а",
+ "▁sc enes",
+ "▁scen es",
+ "▁scene s",
+ "▁per su",
+ "▁pers u",
+ "li est",
+ "lie st",
+ "lies t",
+ "l iest",
+ "▁sch edule",
+ "▁sched ule",
+ "ta l",
+ "t al",
+ "ле но",
+ "лен о",
+ "▁pain ting",
+ "▁paint ing",
+ "▁impro vement",
+ "▁improve ment",
+ "▁improv ement",
+ "so ftware",
+ "soft ware",
+ "▁govern o",
+ "▁gover no",
+ "▁H ir",
+ "▁Hi r",
+ "Exec ution",
+ "▁Ok ay",
+ "Pro p",
+ "Pr op",
+ "P rop",
+ "lo ster",
+ "los ter",
+ "lost er",
+ "l oster",
+ "ніципа лі",
+ "▁peu vent",
+ "ol u",
+ "o lu",
+ "▁Ф а",
+ "roll o",
+ "rol lo",
+ "▁ко ло",
+ "▁к оло",
+ "▁ коло",
+ "▁car rière",
+ "▁carri ère",
+ "▁t oggle",
+ "▁tog gle",
+ "▁togg le",
+ "▁ toggle",
+ "▁( $\\",
+ "▁($ \\",
+ "▁aggreg ate",
+ "▁Б і",
+ "text area",
+ "O k",
+ "it to",
+ "itt o",
+ "i tto",
+ "▁s tim",
+ "▁st im",
+ "▁recurs ion",
+ "▁Feder ation",
+ ")_ {",
+ ") _{",
+ "ate gor",
+ "ateg or",
+ "▁dist ribu",
+ "▁distrib u",
+ "Cl oud",
+ "▁m adre",
+ "▁mad re",
+ "▁i v",
+ "▁ iv",
+ "▁Lie utenant",
+ "▁subst ant",
+ "▁le af",
+ "▁ leaf",
+ "▁Kont rola",
+ "V A",
+ "▁t omb",
+ "▁to mb",
+ "▁tom b",
+ "э н",
+ "ato es",
+ "▁god ine",
+ "▁# >",
+ "C ert",
+ "▁em presa",
+ "▁empres a",
+ "Pro ps",
+ "Pr ops",
+ "Prop s",
+ "▁pl anned",
+ "▁plan ned",
+ "▁random ly",
+ "j ähr",
+ "el em",
+ "ele m",
+ "e lem",
+ "▁Oper ation",
+ "▁Opera tion",
+ "▁ Operation",
+ "* `",
+ "pro tocol",
+ "proto col",
+ "() ));",
+ "()) );",
+ "())) ;",
+ "( )));",
+ "we l",
+ "w el",
+ "▁p raw",
+ "▁pr aw",
+ "▁pra w",
+ "▁с им",
+ "▁си м",
+ "▁w ob",
+ "▁wo b",
+ "▁h ace",
+ "▁ha ce",
+ "▁near est",
+ "dis able",
+ "▁C ommun",
+ "▁Com mun",
+ "▁Comm un",
+ "▁re vel",
+ "▁rev el",
+ "▁reve l",
+ "Fr ee",
+ "Fre e",
+ "F ree",
+ "▁bra ckets",
+ "IO Exception",
+ "▁al to",
+ "▁alt o",
+ "▁mar ry",
+ "▁a uc",
+ "▁au c",
+ "▁ auc",
+ "), \\",
+ ") ,\\",
+ "▁typ o",
+ "▁ty po",
+ "ed ad",
+ "eda d",
+ "ar á",
+ "a rá",
+ "ic ator",
+ "ica tor",
+ "tat ywna",
+ "▁b uff",
+ "▁bu ff",
+ "▁buf f",
+ "▁ buff",
+ "or ders",
+ "ord ers",
+ "order s",
+ "orde rs",
+ "▁as ynchronous",
+ "▁e con",
+ "▁ec on",
+ "▁f eu",
+ "▁fe u",
+ "▁I ron",
+ "▁Ir on",
+ "▁r ising",
+ "▁ris ing",
+ "▁ri sing",
+ "Rad ius",
+ "cl k",
+ "▁zwe iten",
+ "▁zwei ten",
+ "▁zweite n",
+ "` '",
+ "▁un iqu",
+ "▁F M",
+ "▁ FM",
+ "▁B ran",
+ "▁Br an",
+ "▁Bra n",
+ "▁f lu",
+ "▁fl u",
+ "▁ flu",
+ "▁sens itive",
+ "ur re",
+ "urr e",
+ "▁I ter",
+ "▁It er",
+ "▁ Iter",
+ "▁S ein",
+ "▁Se in",
+ "▁difer entes",
+ "▁diferen tes",
+ "▁не го",
+ "▁н его",
+ "▁ него",
+ "ch ia",
+ "chi a",
+ "▁An leitung",
+ "atur day",
+ "▁sh orter",
+ "▁short er",
+ "▁transl ated",
+ "▁translate d",
+ "▁R és",
+ "▁Ré s",
+ "▁r ode",
+ "▁ro de",
+ "▁rod e",
+ "dr ag",
+ "dra g",
+ "d rag",
+ "▁l ange",
+ "▁lang e",
+ "▁lan ge",
+ "B i",
+ "ü b",
+ "le ur",
+ "l eur",
+ "▁order ing",
+ "▁ord ering",
+ "al ous",
+ "alo us",
+ "▁К ор",
+ "▁Ко р",
+ "ar char",
+ "arch ar",
+ "arc har",
+ "dest roy",
+ "erv ation",
+ "erva tion",
+ "]] ,",
+ "] ],",
+ "Accessor Impl",
+ "▁autory tatywna",
+ "Se quence",
+ "Sequ ence",
+ "▁pro yect",
+ "▁b ran",
+ "▁br an",
+ "▁bra n",
+ "▁( +",
+ "▁K ab",
+ "▁Ka b",
+ "▁z em",
+ "▁ze m",
+ "▁ zem",
+ "▁Cal cul",
+ "▁ Calcul",
+ "▁se ul",
+ "▁seu l",
+ "▁N iger",
+ "▁Ni ger",
+ "▁ch iam",
+ "▁chi am",
+ "th row",
+ "▁Plan et",
+ "▁Pla net",
+ "bild ung",
+ "▁z ones",
+ "▁zo nes",
+ "▁zone s",
+ "trans ition",
+ "ле ний",
+ "▁m apped",
+ "▁ma pped",
+ "▁map ped",
+ "on aut",
+ "ona ut",
+ "Pa ir",
+ "P air",
+ "il ian",
+ "ili an",
+ "ilia n",
+ "▁M organ",
+ "▁Mor gan",
+ "▁un to",
+ "▁ unto",
+ "jo u",
+ "j ou",
+ "▁h id",
+ "▁hi d",
+ "▁M eta",
+ "▁Me ta",
+ "▁Met a",
+ "▁ Meta",
+ "▁e lles",
+ "▁el les",
+ "▁elle s",
+ "▁ell es",
+ "▁ elles",
+ "Lo u",
+ "L ou",
+ "ra ma",
+ "ram a",
+ "r ama",
+ "ge ordnet",
+ "▁scarc ely",
+ "▁m int",
+ "▁min t",
+ "▁mi nt",
+ "F ocus",
+ "▁Al ter",
+ "▁Alt er",
+ "▁d io",
+ "▁di o",
+ "▁am pl",
+ "▁amp l",
+ "ière ment",
+ "▁ис следова",
+ "LE D",
+ "L ED",
+ "alg orithm",
+ "▁сай ті",
+ "▁сайт і",
+ "▁\" \")",
+ "▁\"\" )",
+ "Hi story",
+ "H istory",
+ "p k",
+ "▁W hit",
+ "▁Wh it",
+ "▁си стем",
+ "▁систе м",
+ "▁Kir chen",
+ "▁Kirche n",
+ "▁Kirch en",
+ "r à",
+ "AP P",
+ "A PP",
+ "▁< %",
+ "ant ine",
+ "anti ne",
+ "antin e",
+ "▁D isk",
+ "▁Dis k",
+ "▁Di sk",
+ "con v",
+ "we lt",
+ "wel t",
+ "w elt",
+ "▁F ut",
+ "▁Fu t",
+ "▁N om",
+ "▁No m",
+ "or do",
+ "ord o",
+ "el lij",
+ "ell ij",
+ "elli j",
+ "▁rece ives",
+ "▁receive s",
+ "co w",
+ "c ow",
+ "yt u",
+ "y tu",
+ "▁o bras",
+ "▁ob ras",
+ "▁obra s",
+ "▁p urchase",
+ "▁purch ase",
+ "▁ear ned",
+ "▁acc essed",
+ "▁access ed",
+ "ax i",
+ "a xi",
+ "▁M ans",
+ "▁Man s",
+ "▁Ma ns",
+ "iv an",
+ "iva n",
+ "i van",
+ "▁t uvo",
+ "▁tu vo",
+ "▁T race",
+ "▁Tr ace",
+ "▁Tra ce",
+ "▁ Trace",
+ "rim onio",
+ "▁desen vol",
+ "ér ique",
+ "éri que",
+ "é rique",
+ "▁result ed",
+ "▁comp uting",
+ "▁comput ing",
+ "▁insp ired",
+ "▁inspir ed",
+ "▁Pr ize",
+ "▁Pri ze",
+ "* \"",
+ "Com put",
+ "Comp ut",
+ "▁ext ensive",
+ "▁extens ive",
+ "è g",
+ "▁Port ály",
+ "▁cast le",
+ "▁ castle",
+ "▁* .",
+ "▁ *.",
+ "▁ph otos",
+ "▁phot os",
+ "▁photo s",
+ "▁vo et",
+ "ON G",
+ "O NG",
+ "▁A lle",
+ "▁Al le",
+ "▁All e",
+ "▁thre aten",
+ "▁threat en",
+ "st üt",
+ "▁album s",
+ "▁alb ums",
+ "▁d ense",
+ "▁den se",
+ "▁dens e",
+ "fl at",
+ "f lat",
+ "cont inu",
+ "Sub ject",
+ "Su bject",
+ "▁read only",
+ "Op t",
+ "O pt",
+ "пи ско",
+ "пис ко",
+ "▁A ber",
+ "▁Ab er",
+ "▁P osition",
+ "▁Pos ition",
+ "▁ Position",
+ "▁To day",
+ "▁Tod ay",
+ "▁m ini",
+ "▁min i",
+ "▁mi ni",
+ "▁B ef",
+ "▁Be f",
+ "li sten",
+ "list en",
+ "lis ten",
+ "l isten",
+ "ствен ного",
+ "ственно го",
+ "SU B",
+ "S UB",
+ "os sa",
+ "oss a",
+ "▁P ope",
+ "▁Po pe",
+ "▁Pop e",
+ "▁Jim my",
+ "▁Д ру",
+ "ungs seite",
+ "▁t ren",
+ "▁tr en",
+ "▁tre n",
+ "op tim",
+ "opt im",
+ "it sch",
+ "its ch",
+ "▁s amt",
+ "▁sa mt",
+ "▁sam t",
+ "▁испо л",
+ "▁ис пол",
+ "& =",
+ "▁Przyp isy",
+ "▁про дол",
+ "C r",
+ "er mann",
+ "erm ann",
+ "erman n",
+ "▁ма тери",
+ "▁мате ри",
+ "▁H ugo",
+ "▁Hu go",
+ "▁De ze",
+ "▁Dez e",
+ "TR UE",
+ "▁defe at",
+ "▁watch ed",
+ "▁wat ched",
+ "▁G ent",
+ "▁Ge nt",
+ "▁Gen t",
+ "AU T",
+ "A UT",
+ "or ous",
+ "oro us",
+ "▁о преде",
+ "ori entation",
+ "orient ation",
+ "▁distingu ished",
+ "▁distinguish ed",
+ "▁mes mo",
+ "▁s li",
+ "▁sl i",
+ "ме на",
+ "мен а",
+ "м ена",
+ "mit tel",
+ "mitt el",
+ "m ittel",
+ "ge richt",
+ "ger icht",
+ "et on",
+ "eto n",
+ "e ton",
+ "-> {",
+ "- >{",
+ "▁w ont",
+ "▁won t",
+ "▁wo nt",
+ "▁w eg",
+ "▁we g",
+ "▁ weg",
+ "▁class ific",
+ "il us",
+ "i lus",
+ "▁M D",
+ "▁ MD",
+ "task s",
+ "▁c him",
+ "▁ch im",
+ "▁chi m",
+ "aw ait",
+ "awa it",
+ "a wait",
+ "▁g ang",
+ "▁gan g",
+ "▁ga ng",
+ "▁ gang",
+ "▁w ię",
+ "▁ wię",
+ "th rough",
+ "▁Russ ell",
+ "▁guess ing",
+ "▁а кт",
+ "▁ак т",
+ "б лі",
+ "c ategories",
+ "су т",
+ "с ут",
+ "▁F en",
+ "▁Fe n",
+ "▁му ж",
+ "▁ne wer",
+ "▁new er",
+ "▁A sync",
+ "▁As ync",
+ "▁ Async",
+ "▁t erme",
+ "▁term e",
+ "▁ter me",
+ "> /",
+ "па ра",
+ "пар а",
+ "▁T rust",
+ "▁Tr ust",
+ "▁Tru st",
+ "▁O pt",
+ "▁Op t",
+ "▁ Opt",
+ "▁d ah",
+ "▁da h",
+ "▁wonder ful",
+ "adrat kil",
+ "▁Г ра",
+ "ma pping",
+ "map ping",
+ "m apping",
+ "▁disc overy",
+ "▁discover y",
+ "▁disco very",
+ "▁B E",
+ "▁ BE",
+ "En able",
+ "▁Fri end",
+ "с ня",
+ "▁cont rolled",
+ "▁control led",
+ "чно ї",
+ "ч ної",
+ "▁contribution s",
+ "▁contrib utions",
+ "j ší",
+ "▁L ev",
+ "▁Le v",
+ "▁franc és",
+ "▁m ic",
+ "▁mi c",
+ "▁ mic",
+ "zi k",
+ "z ik",
+ "▁a lem",
+ "▁al em",
+ "▁ale m",
+ "▁ alem",
+ "can cel",
+ "! '",
+ "▁g rat",
+ "▁gr at",
+ "▁gra t",
+ "▁Begriff sklär",
+ "Cam era",
+ "if icación",
+ "ific ación",
+ "ifica ción",
+ "ró d",
+ "r ód",
+ "▁Arn old",
+ "▁bezeichnet er",
+ "▁f ought",
+ "▁de put",
+ "▁dep ut",
+ "▁D rop",
+ "▁Dr op",
+ "▁Dro p",
+ "▁ Drop",
+ "ta x",
+ "t ax",
+ "d g",
+ "▁H op",
+ "▁Ho p",
+ "G N",
+ "▁Kir ch",
+ "▁Б ар",
+ "▁Ба р",
+ "In voke",
+ "Inv oke",
+ "▁er halten",
+ "▁ve el",
+ "▁word press",
+ "▁ wordpress",
+ "▁IN NER",
+ "trans action",
+ "▁dé jà",
+ "Fa ct",
+ "F act",
+ "▁над мор",
+ "▁angular js",
+ "▁á t",
+ "▁ át",
+ "▁a lap",
+ "▁al ap",
+ "▁P rice",
+ "▁Pr ice",
+ "▁Pri ce",
+ "▁ Price",
+ "▁eff et",
+ "▁s phere",
+ "▁sp here",
+ "▁spher e",
+ "Class Loader",
+ "▁r ugby",
+ "▁rug by",
+ "▁king dom",
+ "▁M ut",
+ "▁Mu t",
+ "▁ки но",
+ "▁re ward",
+ "ci t",
+ "c it",
+ "▁present e",
+ "▁pres ente",
+ "St o",
+ "S to",
+ "Char acter",
+ "lo gs",
+ "log s",
+ "l ogs",
+ "▁cent rale",
+ "▁central e",
+ "▁m ouv",
+ "▁mo uv",
+ "▁mou v",
+ "▁ok ay",
+ "▁ap lic",
+ "Mo re",
+ "Mor e",
+ "M ore",
+ "ény ek",
+ "▁Kö ln",
+ "ne tt",
+ "net t",
+ "n ett",
+ "▁исто рии",
+ "▁истори и",
+ "▁descri bing",
+ "▁sold ier",
+ "▁N eed",
+ "▁Ne ed",
+ "L ight",
+ "▁\" \\<",
+ "▁\"\\ <",
+ "▁h av",
+ "▁ha v",
+ "▁ hav",
+ "er mo",
+ "erm o",
+ "▁infer ior",
+ "le a",
+ "l ea",
+ "▁g g",
+ "▁ gg",
+ "▁кон це",
+ "fra gment",
+ "f ragment",
+ "s b",
+ "Count ry",
+ "C ountry",
+ "▁v ě",
+ "▁ vě",
+ "▁B eng",
+ "▁Be ng",
+ "▁Ben g",
+ "▁Э то",
+ "▁во до",
+ "ма р",
+ "м ар",
+ "STR ING",
+ "▁ú j",
+ "multi ple",
+ "multip le",
+ "state ment",
+ "stat ement",
+ "▁invol ves",
+ "▁involve s",
+ "▁te cn",
+ "▁tec n",
+ "St udent",
+ "gr é",
+ "g ré",
+ "▁le an",
+ "▁ lean",
+ "▁bring ing",
+ "▁Med ical",
+ "▁Medic al",
+ "▁Medi cal",
+ "▁програ м",
+ "▁V og",
+ "▁Vo g",
+ "▁ж ов",
+ "▁Sp irit",
+ "nt h",
+ "n th",
+ "▁stand ards",
+ "▁standard s",
+ "▁Pro file",
+ "▁Prof ile",
+ "▁Profil e",
+ "▁ Profile",
+ "▁e z",
+ "▁ ez",
+ "▁террито рии",
+ "▁s tem",
+ "▁st em",
+ "▁ste m",
+ "ui l",
+ "u il",
+ "▁O g",
+ "B tn",
+ "na l",
+ "n al",
+ "▁near by",
+ "▁produ cing",
+ "cri v",
+ "cr iv",
+ "c riv",
+ "▁assum ptions",
+ "▁assumption s",
+ "▁S park",
+ "▁Sp ark",
+ "▁L ot",
+ "▁Lo t",
+ "it udes",
+ "itu des",
+ "itude s",
+ "itud es",
+ "af ka",
+ "fi ve",
+ "f ive",
+ "at io",
+ "ati o",
+ "▁distingu ish",
+ "ro ck",
+ "roc k",
+ "r ock",
+ "égl ise",
+ "é glise",
+ "▁rapp res",
+ "▁rap pres",
+ ">\\ <",
+ "> \\<",
+ "лі й",
+ "л ій",
+ "▁ми ни",
+ "▁ мини",
+ "▁intitul é",
+ "}} (\\",
+ "}}( \\",
+ "} }(\\",
+ "▁R out",
+ "▁Ro ut",
+ "▁Rou t",
+ "▁ Rout",
+ "▁B order",
+ "▁Bor der",
+ "▁ Border",
+ "▁over rid",
+ "HO ST",
+ "H OST",
+ "rit ten",
+ "ritt en",
+ "r itten",
+ "sa y",
+ "s ay",
+ "▁Ч и",
+ "icht ung",
+ "▁straight forward",
+ "ob b",
+ "o bb",
+ "▁Ter ra",
+ "▁Terr a",
+ "▁[ :",
+ "▁ [:",
+ "Be n",
+ "B en",
+ "▁compos ite",
+ ")+ \\",
+ ") +\\",
+ "▁c rown",
+ "▁cr own",
+ "▁cro wn",
+ "▁crow n",
+ "dir ection",
+ "direct ion",
+ "dire ction",
+ "d irection",
+ "▁неско лько",
+ "▁av ail",
+ "▁purch ased",
+ "▁purchase d",
+ "ho ok",
+ "h ook",
+ "et ies",
+ "eti es",
+ "e ties",
+ "▁f ase",
+ "▁fa se",
+ "▁fas e",
+ "▁R um",
+ "▁Ru m",
+ "▁ge nom",
+ "▁gen om",
+ "▁d ét",
+ "▁dé t",
+ "ow ą",
+ "mp eg",
+ "▁І н",
+ "des ktop",
+ "▁in jection",
+ "▁inj ection",
+ "▁inject ion",
+ "ag le",
+ "a gle",
+ "▁E dd",
+ "▁Ed d",
+ "_{ (",
+ "_ {(",
+ "▁H em",
+ "▁He m",
+ "ut os",
+ "uto s",
+ "pr oj",
+ "pro j",
+ "▁superfic ie",
+ "Pl ot",
+ "P lot",
+ "▁D ocker",
+ "▁Do cker",
+ "▁Doc ker",
+ "ät z",
+ "ä tz",
+ "kre ich",
+ "k reich",
+ "▁un clear",
+ "▁uncle ar",
+ "▁Un ity",
+ "▁Unit y",
+ "▁stream s",
+ "▁stre ams",
+ "ви д",
+ "▁simpl ified",
+ "Fil l",
+ "Fi ll",
+ "F ill",
+ "▁s ant",
+ "▁sa nt",
+ "▁san t",
+ "▁K ommun",
+ "▁Kom mun",
+ "▁Komm un",
+ "▁d uc",
+ "▁du c",
+ "▁д ве",
+ "▁o bs",
+ "▁ob s",
+ "▁ obs",
+ "ž it",
+ "▁Jane iro",
+ "б я",
+ "▁pr esso",
+ "▁pres so",
+ "▁press o",
+ "▁Min istry",
+ "▁b urst",
+ "▁bur st",
+ "▁re aching",
+ "▁reach ing",
+ "li ter",
+ "lit er",
+ "l iter",
+ "▁response s",
+ "▁respons es",
+ "▁E ug",
+ "▁Eu g",
+ "▁s od",
+ "▁so d",
+ "▁C ord",
+ "▁Cor d",
+ "▁Co rd",
+ "▁P erm",
+ "▁Per m",
+ "▁Pe rm",
+ "▁ Perm",
+ "par ts",
+ "part s",
+ "p arts",
+ "ци ма",
+ "vari ables",
+ "variable s",
+ "▁forgot ten",
+ "Fe rn",
+ "F ern",
+ "ost ęp",
+ "v l",
+ "▁С м",
+ "ki m",
+ "k im",
+ "aj ąc",
+ "ają c",
+ "a jąc",
+ "на ль",
+ "нал ь",
+ "н аль",
+ "г ле",
+ "hel per",
+ "help er",
+ "du p",
+ "d up",
+ "eu w",
+ "e uw",
+ "fr a",
+ "f ra",
+ "ell ite",
+ "elli te",
+ "an ya",
+ "any a",
+ "▁re ign",
+ "▁r eign",
+ "▁rei gn",
+ "ges amt",
+ "се да",
+ "▁R yan",
+ "▁Ry an",
+ "▁form atted",
+ "▁format ted",
+ "▁formatt ed",
+ "▁B org",
+ "▁Bo rg",
+ "▁Bor g",
+ "wal k",
+ "w alk",
+ "▁а л",
+ "▁ ал",
+ "agnost ics",
+ "agnostic s",
+ "▁C ape",
+ "▁Cap e",
+ "▁Ca pe",
+ "▁Fran co",
+ "▁Franc o",
+ "▁f ug",
+ "▁fu g",
+ ": )",
+ "ю з",
+ "F etch",
+ "▁rough ly",
+ "▁M is",
+ "▁Mi s",
+ "uet ooth",
+ "▁Venez uela",
+ "▁a stronom",
+ "▁astr onom",
+ "\") `",
+ "\" )`",
+ "om bres",
+ "omb res",
+ "▁кото рой",
+ "ó p",
+ "ow ed",
+ "owe d",
+ "o wed",
+ "H R",
+ "▁C amer",
+ "▁Cam er",
+ "▁Ca mer",
+ "ки е",
+ "par ison",
+ "▁B ij",
+ "▁Bi j",
+ "tem plates",
+ "template s",
+ "en vironment",
+ "environ ment",
+ "iz ação",
+ "iza ção",
+ "▁é r",
+ "▁ ér",
+ "▁pl enty",
+ "▁Type Error",
+ "▁for ty",
+ "▁fort y",
+ "ко ном",
+ "кон ом",
+ "коно м",
+ "▁S ed",
+ "▁Se d",
+ "▁th ats",
+ "▁that s",
+ "▁gra vity",
+ "▁grav ity",
+ "▁gravit y",
+ "▁ gravity",
+ "▁spirit ual",
+ "▁dup licates",
+ "▁duplicate s",
+ "▁enc ryption",
+ "▁encrypt ion",
+ "▁re ven",
+ "▁r even",
+ "▁rev en",
+ "▁reve n",
+ "▁ reven",
+ "get Instance",
+ "äl lor",
+ "äll or",
+ "dis k",
+ "di sk",
+ "d isk",
+ "▁th ro",
+ "▁thr o",
+ "▁N ak",
+ "▁Na k",
+ "▁p oł",
+ "▁po ł",
+ "▁her aus",
+ "in valid",
+ "s By",
+ "Bo ot",
+ "B oot",
+ "▁bu cket",
+ "▁ bucket",
+ "▁P arse",
+ "▁Par se",
+ "▁ Parse",
+ "he x",
+ "h ex",
+ "Con ne",
+ "C onne",
+ "▁Comp uter",
+ "▁Comput er",
+ "zy k",
+ "z yk",
+ "▁indu ced",
+ "▁Br uno",
+ "▁Bru no",
+ "▁Brun o",
+ "▁address ed",
+ "▁addr essed",
+ "ma nia",
+ "man ia",
+ "m ania",
+ "▁in clus",
+ "▁incl us",
+ "▁inc lus",
+ "▁inclu s",
+ "oun ced",
+ "ounce d",
+ "script size",
+ "scripts ize",
+ "▁E pis",
+ "▁Ep is",
+ "▁v ocal",
+ "▁vo cal",
+ "▁voc al",
+ "▁Jon athan",
+ "у м",
+ "st aden",
+ "sta den",
+ "stad en",
+ "▁Child ren",
+ "▁ Children",
+ "пе й",
+ "п ей",
+ "It alia",
+ "Ital ia",
+ "reib ung",
+ "▁n ost",
+ "▁no st",
+ "▁nos t",
+ "▁ nost",
+ "▁е щё",
+ "▁Wer ke",
+ "▁Werk e",
+ "▁act ress",
+ "▁Minn esota",
+ "ri ke",
+ "rik e",
+ "r ike",
+ "▁t ek",
+ "▁te k",
+ "▁ tek",
+ "▁prime ira",
+ "▁f rat",
+ "▁fr at",
+ "▁fra t",
+ "▁Config uration",
+ "▁ Configuration",
+ "▁b id",
+ "▁bi d",
+ "▁ bid",
+ "tr igger",
+ "Cont ents",
+ "Content s",
+ "▁const antly",
+ "▁constant ly",
+ "!! !",
+ "! !!",
+ "▁d read",
+ "▁dr ead",
+ "▁dre ad",
+ "▁hundred s",
+ "ist ische",
+ "isti sche",
+ "▁card inal",
+ "T ABLE",
+ "▁est os",
+ "▁esto s",
+ "ass oc",
+ "asso c",
+ "gr ay",
+ "gra y",
+ "g ray",
+ "▁Sch loss",
+ "▁Schl oss",
+ "▁s che",
+ "▁sc he",
+ "▁sch e",
+ "▁ sche",
+ "con g",
+ "co ng",
+ "c ong",
+ "▁ko ji",
+ "ète s",
+ "èt es",
+ "è tes",
+ "▁E ra",
+ "▁Er a",
+ "om i",
+ "o mi",
+ "▁S R",
+ "▁ SR",
+ "▁wr apped",
+ "▁wra pped",
+ "▁wrap ped",
+ "▁tr unc",
+ "▁a h",
+ "▁ ah",
+ "eg os",
+ "ego s",
+ "ok i",
+ "o ki",
+ "mo uth",
+ "m outh",
+ "log ging",
+ "▁f asc",
+ "▁fa sc",
+ "▁fas c",
+ "▁S ample",
+ "▁Sam ple",
+ "▁ Sample",
+ "▁c onte",
+ "▁con te",
+ "▁cont e",
+ "▁v illa",
+ "▁vi lla",
+ "▁vill a",
+ "▁vil la",
+ "▁ villa",
+ "com ments",
+ "comm ents",
+ "comment s",
+ "▁b atal",
+ "▁ba tal",
+ "▁bat al",
+ "▁bata l",
+ "▁Garc ía",
+ "▁N orte",
+ "▁Nor te",
+ "▁we chsel",
+ "▁Muse o",
+ "▁enf ants",
+ "▁whis per",
+ "na ke",
+ "nak e",
+ "n ake",
+ "▁jed nak",
+ "l ês",
+ "en ders",
+ "end ers",
+ "ender s",
+ "ende rs",
+ "▁ä l",
+ "▁ äl",
+ "▁V B",
+ "▁ VB",
+ "▁cook ies",
+ "▁cookie s",
+ "ze ti",
+ "zet i",
+ "z eti",
+ "at um",
+ "atu m",
+ "▁d edu",
+ "▁de du",
+ "▁ded u",
+ "▁arr anged",
+ "▁arrang ed",
+ "la z",
+ "l az",
+ "▁cu enta",
+ "ym l",
+ "y ml",
+ "▁f lav",
+ "▁fl av",
+ "▁fla v",
+ "M R",
+ "em et",
+ "eme t",
+ "e met",
+ "бі ль",
+ "б іль",
+ "cm p",
+ "c mp",
+ "it uto",
+ "itu to",
+ "itut o",
+ "ze tt",
+ "zet t",
+ "z ett",
+ "▁en vi",
+ "▁env i",
+ "▁k ot",
+ "▁ko t",
+ "$ :",
+ "up per",
+ "upp er",
+ "u pper",
+ "▁Al berto",
+ "▁Albert o",
+ "k b",
+ "An al",
+ "A nal",
+ "ör t",
+ "ö rt",
+ "▁[ -",
+ "▁ [-",
+ "▁führ te",
+ "▁führt e",
+ "ia h",
+ "i ah",
+ "▁T un",
+ "▁Tu n",
+ "▁и скус",
+ "uw e",
+ "u we",
+ "is pecies",
+ "i species",
+ "P ub",
+ "Syn c",
+ "S ync",
+ "▁Colomb ia",
+ "ak ers",
+ "ake rs",
+ "aker s",
+ "▁Imper ial",
+ "ov ing",
+ "ovi ng",
+ "o ving",
+ "▁int elligence",
+ "▁intellig ence",
+ "▁equip ment",
+ "ei n",
+ "e in",
+ "dag ger",
+ "d agger",
+ "▁Ed ge",
+ "▁ Edge",
+ "▁Рес публи",
+ "adratkil ometer",
+ "▁An to",
+ "▁Ant o",
+ "▁char ges",
+ "▁charge s",
+ "▁charg es",
+ "▁O cean",
+ "▁simpl ify",
+ "▁m iesz",
+ "▁mi esz",
+ "▁mie sz",
+ "run ning",
+ "r unning",
+ "▁L ac",
+ "▁La c",
+ "gen ommen",
+ "▁represent ative",
+ "= .",
+ "▁P red",
+ "▁Pr ed",
+ "▁Pre d",
+ "▁ Pred",
+ "▁sp ite",
+ "ci ale",
+ "cial e",
+ "cia le",
+ "c iale",
+ "▁n ave",
+ "▁na ve",
+ "▁nav e",
+ "▁ext ens",
+ "▁neut ral",
+ "▁кото рая",
+ ".< /",
+ ". ",
+ "▁C S",
+ "▁ CS",
+ "uk y",
+ "u ky",
+ "▁wh ilst",
+ "▁l ingu",
+ "▁lin gu",
+ "▁ling u",
+ "ext ract",
+ "extra ct",
+ "zeich nung",
+ "▁F eld",
+ "▁Fe ld",
+ "▁Fel d",
+ "▁valu able",
+ "ur able",
+ "ura ble",
+ "u rable",
+ "▁J en",
+ "▁Je n",
+ "▁strugg le",
+ "▁comm ittee",
+ "▁W ohn",
+ "▁Wo hn",
+ "▁sql ite",
+ "▁ sqlite",
+ "▁T emp",
+ "▁Te mp",
+ "▁Tem p",
+ "▁ Temp",
+ "▁CO UNT",
+ "▁ COUNT",
+ "con sin",
+ "cons in",
+ "мі ні",
+ "мін і",
+ "us age",
+ "usa ge",
+ "▁qu est",
+ "▁que st",
+ "▁q uest",
+ "▁ quest",
+ "дя н",
+ "д ян",
+ "ear ed",
+ "ea red",
+ "e ared",
+ "▁Sch ne",
+ "▁d od",
+ "▁do d",
+ "▁re cht",
+ "▁rec ht",
+ "▁ recht",
+ "▁k ao",
+ "▁ka o",
+ "Cap t",
+ "Ca pt",
+ "C apt",
+ "label s",
+ "lab els",
+ "▁el los",
+ "▁ell os",
+ "▁indust ri",
+ "▁Color ado",
+ "▁contr ary",
+ "▁contra ry",
+ "▁D um",
+ "▁Du m",
+ "Be l",
+ "B el",
+ "▁V ent",
+ "▁Ve nt",
+ "▁Ven t",
+ "▁author ities",
+ "Y ES",
+ "en sed",
+ "ens ed",
+ "ense d",
+ "umbn ail",
+ "izz azione",
+ "izza zione",
+ "ko u",
+ "k ou",
+ "ri ca",
+ "ric a",
+ "r ica",
+ "▁s ect",
+ "▁se ct",
+ "▁sec t",
+ "▁ sect",
+ "test s",
+ "tes ts",
+ "t ests",
+ "▁K lein",
+ "▁Kle in",
+ "▁Kl ein",
+ "▁le gs",
+ "▁leg s",
+ "▁Pi etro",
+ "▁Piet ro",
+ "f u",
+ "th y",
+ "t hy",
+ "▁b ast",
+ "▁bas t",
+ "▁ba st",
+ "▁t edes",
+ "▁te des",
+ "▁ted es",
+ "et tes",
+ "ett es",
+ "ette s",
+ "▁re pet",
+ "▁rep et",
+ "▁repe t",
+ "ac re",
+ "a cre",
+ "re tto",
+ "ret to",
+ "rett o",
+ "r etto",
+ "▁remain der",
+ "▁G eg",
+ "▁Ge g",
+ "▁Г ор",
+ "▁Го р",
+ "▁Re chts",
+ "▁Recht s",
+ "▁filter ing",
+ "ou ss",
+ "ous s",
+ "o uss",
+ "▁deploy ed",
+ "▁prü fe",
+ "▁b itmap",
+ "▁bit map",
+ "▁s ovi",
+ "▁so vi",
+ "▁sov i",
+ "▁< %=",
+ "▁<% =",
+ "▁ <%=",
+ "▁entfer ne",
+ "ki ll",
+ "kil l",
+ "k ill",
+ "ta bs",
+ "tab s",
+ "t abs",
+ "Ex pr",
+ "Exp r",
+ "ко му",
+ "ком у",
+ "к ому",
+ "▁Republic an",
+ "▁S ize",
+ "▁Si ze",
+ "▁ Size",
+ "▁p oll",
+ "▁po ll",
+ "▁pol l",
+ "▁r ien",
+ "▁ri en",
+ "▁ rien",
+ "▁клу б",
+ "én d",
+ "é nd",
+ "▁B io",
+ "▁Bi o",
+ "▁per l",
+ "▁pe rl",
+ "▁ perl",
+ "▁And reas",
+ "▁Andrea s",
+ "▁Andre as",
+ "ви н",
+ "в ин",
+ "▁d istant",
+ "▁dist ant",
+ "▁F inn",
+ "▁Fin n",
+ "▁M itch",
+ "▁Mit ch",
+ "▁% {",
+ "▁c harm",
+ "▁ch arm",
+ "▁char m",
+ "▁cha rm",
+ "▁M ul",
+ "▁Mu l",
+ "pe rate",
+ "per ate",
+ "▁sci ences",
+ "▁science s",
+ "▁mon ot",
+ "▁mo not",
+ "▁deb ido",
+ "riz ona",
+ "ie c",
+ "i ec",
+ "▁al arm",
+ "▁prom oted",
+ "▁promote d",
+ "▁let zten",
+ "at in",
+ "ati n",
+ "▁con clus",
+ "▁conc lus",
+ "▁concl us",
+ "he rr",
+ "her r",
+ "h err",
+ "▁é ch",
+ "▁éc h",
+ "▁ éch",
+ "ed ish",
+ "edi sh",
+ "go r",
+ "g or",
+ "▁st ycz",
+ "▁sty cz",
+ "▁im press",
+ "▁imp ress",
+ "▁impr ess",
+ "ru its",
+ "ruit s",
+ "r uits",
+ "ier ungs",
+ "ierung s",
+ "▁par sed",
+ "▁parse d",
+ "▁r ío",
+ "▁Pak istan",
+ "ig ner",
+ "ign er",
+ "igne r",
+ "▁watch ing",
+ "▁database s",
+ "▁datab ases",
+ "ed ing",
+ "edi ng",
+ "e ding",
+ "▁Spec ific",
+ "▁gener ale",
+ "▁general e",
+ "▁gene rale",
+ "la x",
+ "l ax",
+ "▁Lo oking",
+ "▁Look ing",
+ "▁b ond",
+ "▁bo nd",
+ "▁bon d",
+ "▁v ista",
+ "▁vis ta",
+ "▁vi sta",
+ "▁e c",
+ "▁ ec",
+ "▁gr ud",
+ "▁gru d",
+ "▁del eting",
+ "▁delet ing",
+ "ta c",
+ "t ac",
+ "▁j azz",
+ "▁ja zz",
+ "j m",
+ "▁p ół",
+ "▁pó ł",
+ "L anguage",
+ "de legate",
+ "▁reg istry",
+ "▁registr y",
+ "▁Sh ared",
+ "▁Share d",
+ "▁ Shared",
+ "ст рой",
+ "стро й",
+ "Mus ic",
+ "▁v essel",
+ "▁vess el",
+ "▁ves sel",
+ ". @",
+ "▁W ür",
+ "▁f ed",
+ "▁fe d",
+ "▁ered et",
+ "▁ere det",
+ "▁G ö",
+ "up t",
+ "u pt",
+ "▁ple asant",
+ "▁table View",
+ "▁ tableView",
+ "▁count ing",
+ "▁coun ting",
+ "▁Krie gs",
+ "▁Krieg s",
+ "▁полу чил",
+ "▁получи л",
+ "▁] ,",
+ "▁ ],",
+ "ви а",
+ "▁a ž",
+ "To List",
+ "▁Ad vent",
+ "▁Adv ent",
+ "▁sk etch",
+ "p n",
+ "▁s ier",
+ "▁si er",
+ "▁sie r",
+ "▁находи тся",
+ "io p",
+ "i op",
+ "▁l y",
+ "▁ ly",
+ "▁Sch l",
+ "▁Sc hl",
+ "Cont ract",
+ "as soci",
+ "ass oci",
+ "asso ci",
+ "assoc i",
+ "▁P ear",
+ "▁Pe ar",
+ "▁w he",
+ "▁wh e",
+ "▁De lete",
+ "▁Del ete",
+ "▁ Delete",
+ "▁e lem",
+ "▁el em",
+ "▁ele m",
+ "▁ elem",
+ "ät te",
+ "ätt e",
+ "ä tte",
+ "▁č esk",
+ "▁M C",
+ "▁ MC",
+ "▁sh out",
+ "▁sho ut",
+ "ake spe",
+ "akes pe",
+ "▁default s",
+ "pe nas",
+ "pen as",
+ "p enas",
+ "ò ria",
+ "▁hier archy",
+ "ip t",
+ "i pt",
+ "▁E lis",
+ "▁El is",
+ "▁Eli s",
+ "like ly",
+ "lik ely",
+ "Ro t",
+ "R ot",
+ "▁c ow",
+ "▁co w",
+ "▁ cow",
+ "▁st rike",
+ "▁str ike",
+ "▁stri ke",
+ "▁strik e",
+ "▁бере зня",
+ "▁ens emble",
+ "▁ ensemble",
+ "▁Pse ud",
+ "V irtual",
+ "▁ї ї",
+ "RO OT",
+ "си я",
+ "▁с об",
+ "▁со б",
+ "▁ соб",
+ "▁in vert",
+ "▁inv ert",
+ "▁inve rt",
+ "▁switch ing",
+ "ht access",
+ "▁на гра",
+ "▁Nor man",
+ "▁Norm an",
+ "▁ing lês",
+ "! [",
+ "ou sel",
+ "ous el",
+ "ouse l",
+ "DO CTYPE",
+ "DOC TYPE",
+ "▁supp ress",
+ "▁sup press",
+ "▁accompan ied",
+ "▁B é",
+ "imp lies",
+ "impl ies",
+ "nu t",
+ "n ut",
+ "▁S yntax",
+ "▁Syn tax",
+ "▁ Syntax",
+ "in ho",
+ "▁t am",
+ "▁ta m",
+ "▁focus ed",
+ "▁foc used",
+ "av ano",
+ "ava no",
+ "avan o",
+ "a vano",
+ "▁B aden",
+ "▁Ba den",
+ "▁Bad en",
+ "ha d",
+ "h ad",
+ "▁( {",
+ "▁ ({",
+ "T y",
+ "▁ро с",
+ "▁р ос",
+ "▁ рос",
+ "▁чо лові",
+ "og e",
+ "o ge",
+ "js p",
+ "j sp",
+ "Bl ue",
+ "▁su as",
+ "▁sua s",
+ "ap ers",
+ "ape rs",
+ "aper s",
+ "a pers",
+ "Sh ort",
+ "Render er",
+ "▁s endo",
+ "▁send o",
+ "▁sen do",
+ "▁C ec",
+ "▁Ce c",
+ "▁` __",
+ "▁`_ _",
+ "▁Municip al",
+ "dot net",
+ "▁b ev",
+ "▁be v",
+ "▁D A",
+ "▁ DA",
+ "Menu Item",
+ "▁a mp",
+ "▁am p",
+ "▁ amp",
+ "▁u ri",
+ "▁ur i",
+ "▁ uri",
+ "▁f ier",
+ "▁fi er",
+ "сле н",
+ "с лен",
+ "), (",
+ ") ,(",
+ "cul es",
+ "cu les",
+ "c ules",
+ "il las",
+ "ill as",
+ "illa s",
+ "LO CK",
+ "LOC K",
+ "▁de rive",
+ "▁der ive",
+ "▁deriv e",
+ "ub en",
+ "ube n",
+ "u ben",
+ "▁G T",
+ "▁ GT",
+ "▁M ack",
+ "▁Ma ck",
+ "▁Mac k",
+ "▁sch olar",
+ ")} }",
+ ") }}",
+ "з м",
+ ">: :",
+ "> ::",
+ "ш ёл",
+ "▁princip ales",
+ "▁principal es",
+ "▁principale s",
+ "▁ц ар",
+ "▁t ied",
+ "▁ti ed",
+ "▁tie d",
+ "▁al ta",
+ "▁alt a",
+ "▁C it",
+ "▁Ci t",
+ "li ned",
+ "line d",
+ "lin ed",
+ "l ined",
+ "ma jor",
+ "▁p unk",
+ "▁pun k",
+ "▁cin co",
+ "ick ý",
+ "▁r aggi",
+ "▁ra ggi",
+ "▁rag gi",
+ "ty pen",
+ "type n",
+ "typ en",
+ "тель ство",
+ "▁con ference",
+ "▁confer ence",
+ "▁с іль",
+ "▁сі ль",
+ "▁he ut",
+ "i š",
+ "ет а",
+ "е та",
+ "vel ope",
+ "velop e",
+ "h box",
+ "no wn",
+ "now n",
+ "n own",
+ "▁z ar",
+ "▁za r",
+ "▁ zar",
+ "kt iv",
+ "ie ß",
+ "▁с тре",
+ "▁ст ре",
+ "▁ стре",
+ "▁Event Args",
+ "▁ EventArgs",
+ "▁I ra",
+ "▁Ir a",
+ "▁V BA",
+ "▁VB A",
+ "▁S anto",
+ "▁San to",
+ "▁Sant o",
+ "▁F ach",
+ "▁Fa ch",
+ "▁Fac h",
+ "▁F F",
+ "▁ FF",
+ "▁Ray mond",
+ "ме ц",
+ "im plementation",
+ "▁bro thers",
+ "▁brother s",
+ "▁cô té",
+ "▁cont rollers",
+ "▁control lers",
+ "▁controller s",
+ "▁C le",
+ "▁Cl e",
+ "▁c able",
+ "▁ca ble",
+ "▁cab le",
+ "▁con fer",
+ "▁conf er",
+ "▁{ -",
+ "▁ {-",
+ "▁cz ł",
+ "▁Fil ip",
+ "at orio",
+ "ator io",
+ "ato rio",
+ "atori o",
+ "▁w icht",
+ "▁be aucoup",
+ "▁L it",
+ "▁Li t",
+ "▁s essions",
+ "▁session s",
+ "▁sess ions",
+ "▁Su ccess",
+ "▁ Success",
+ "▁ro uting",
+ "▁rout ing",
+ "▁rou ting",
+ "ni u",
+ "n iu",
+ "▁V ice",
+ "▁Vi ce",
+ "▁Vic e",
+ "▁k rit",
+ "▁kr it",
+ "up dated",
+ "update d",
+ "▁In valid",
+ "▁ Invalid",
+ "▁Mann schaft",
+ "▁a os",
+ "▁ao s",
+ "▁t udi",
+ "▁tu di",
+ "▁tud i",
+ "▁des prés",
+ "▁desp rés",
+ "qu a",
+ "q ua",
+ "Cont ains",
+ "Comp any",
+ "▁person a",
+ "▁pers ona",
+ "ad apter",
+ "с ни",
+ "▁v oj",
+ "▁vo j",
+ "▁ voj",
+ "▁e scri",
+ "▁es cri",
+ "▁esc ri",
+ "ag t",
+ "a gt",
+ "▁с тво",
+ "▁ст во",
+ "▁ ство",
+ "▁dist rito",
+ "ap an",
+ "apa n",
+ "a pan",
+ "▁aspect s",
+ "▁z al",
+ "▁za l",
+ ")^ {\\",
+ ")^{ \\",
+ ") ^{\\",
+ "▁syst ème",
+ "▁а на",
+ "▁ан а",
+ "▁ ана",
+ "ium s",
+ "iu ms",
+ "i ums",
+ "▁prem iers",
+ "▁premi ers",
+ "▁premier s",
+ "▁по э",
+ "▁m ère",
+ "▁G un",
+ "▁Gu n",
+ "ap ing",
+ "api ng",
+ "a ping",
+ "▁R ain",
+ "▁Ra in",
+ "▁ig ual",
+ "▁process or",
+ "▁proc essor",
+ "▁ processor",
+ "') `",
+ "' )`",
+ "bl ing",
+ "b ling",
+ "▁m ism",
+ "▁mi sm",
+ "▁mis m",
+ "br áz",
+ "▁close st",
+ "▁clos est",
+ "▁Re ading",
+ "▁Read ing",
+ "▁по пу",
+ "con o",
+ "co no",
+ "c ono",
+ "▁k ult",
+ "▁! !",
+ "▁ !!",
+ "▁Ex pression",
+ "▁Exp ression",
+ "▁Express ion",
+ "▁ Expression",
+ "▁indu ction",
+ "▁induct ion",
+ "ah ren",
+ "ahr en",
+ "a hren",
+ "▁c p",
+ "▁ cp",
+ "▁viol ence",
+ "ient í",
+ "cent e",
+ "cen te",
+ "c ente",
+ "▁D ob",
+ "▁Do b",
+ "ja ck",
+ "j ack",
+ "so ng",
+ "son g",
+ "s ong",
+ "bu cket",
+ "▁de port",
+ "▁dep ort",
+ "ки ми",
+ "ким и",
+ "l m",
+ "▁in noc",
+ "▁inn oc",
+ "Ch anges",
+ "Change s",
+ "▁pro hib",
+ "ang ol",
+ "ango l",
+ "isecond s",
+ "i seconds",
+ "▁п ор",
+ "▁по р",
+ "▁ пор",
+ "▁h ip",
+ "▁hi p",
+ "▁ hip",
+ "▁p ů",
+ "en dorf",
+ "end orf",
+ "endo rf",
+ "endor f",
+ "▁sch eduled",
+ "▁schedule d",
+ "▁Fl ug",
+ "ac yj",
+ "acy j",
+ "▁Fil ms",
+ "▁Film s",
+ "athed ral",
+ "Po wer",
+ "P ower",
+ "ar din",
+ "ard in",
+ "ardi n",
+ "ka p",
+ "k ap",
+ "ic ken",
+ "ick en",
+ "i cken",
+ "re size",
+ "res ize",
+ "eu s",
+ "e us",
+ "r r",
+ "ля н",
+ "л ян",
+ "▁H av",
+ "▁Ha v",
+ "▁o ra",
+ "▁or a",
+ "▁ ora",
+ "FR OM",
+ "F ROM",
+ "ло ся",
+ "▁te rug",
+ "▁ter ug",
+ "▁W idth",
+ "▁ Width",
+ "▁accept s",
+ "бе н",
+ "б ен",
+ "▁m ich",
+ "▁mi ch",
+ "▁mic h",
+ "▁C zech",
+ "▁Cz ech",
+ "▁B edeut",
+ "▁ви д",
+ "▁ вид",
+ "ô me",
+ "▁L oop",
+ "▁Lo op",
+ "▁ Loop",
+ "sp ect",
+ "spe ct",
+ "spec t",
+ "s pect",
+ "ü k",
+ "es ton",
+ "est on",
+ "esto n",
+ "e ston",
+ "▁s lot",
+ "▁sl ot",
+ "▁slo t",
+ "▁został a",
+ "▁Charlot te",
+ "▁состав ляет",
+ "▁составля ет",
+ "▁Prom ise",
+ "▁e po",
+ "▁ep o",
+ "▁d iction",
+ "▁di ction",
+ "▁dict ion",
+ "▁dic tion",
+ "▁ diction",
+ "▁Frank lin",
+ "▁R iv",
+ "▁Ri v",
+ "ру г",
+ "ci da",
+ "cid a",
+ "c ida",
+ "▁Ex plorer",
+ "cook ie",
+ "▁former ly",
+ "▁municip ality",
+ "▁municipal ity",
+ "▁Ste fan",
+ "▁Stef an",
+ "list s",
+ "lis ts",
+ "l ists",
+ "CO MP",
+ "COM P",
+ "Le n",
+ "L en",
+ "▁Sta at",
+ "▁N BA",
+ "de ns",
+ "den s",
+ "d ens",
+ "▁osc ill",
+ "! .",
+ "▁P O",
+ "▁ PO",
+ "ô ne",
+ "es es",
+ "ese s",
+ "▁на циональ",
+ "vo or",
+ "v oor",
+ "▁ко пи",
+ "▁по зи",
+ "▁ пози",
+ "ul u",
+ "u lu",
+ "Const raint",
+ "Constra int",
+ "▁сво ей",
+ "▁algebra ic",
+ "ч ня",
+ "Di ct",
+ "D ict",
+ "▁appear ing",
+ "▁appe aring",
+ "▁p rav",
+ "▁pr av",
+ "▁pra v",
+ "▁Univers al",
+ "B rowser",
+ "▁Sing ap",
+ "ennes see",
+ "] _",
+ "▁S of",
+ "▁So f",
+ "▁C ad",
+ "▁Ca d",
+ "oun ce",
+ "▁cost s",
+ "▁cos ts",
+ "]{ \\",
+ "] {\\",
+ "../ ../",
+ "ськ ій",
+ "ські й",
+ "üh l",
+ "ü hl",
+ "ie ty",
+ "iet y",
+ "i ety",
+ "п р",
+ "▁interpre ted",
+ "▁interpret ed",
+ "aj n",
+ "col og",
+ "co log",
+ "colo g",
+ "c olog",
+ "Y S",
+ "ma ns",
+ "man s",
+ "m ans",
+ "▁met rics",
+ "▁metric s",
+ "▁reg istr",
+ "▁ registr",
+ "ist ance",
+ "istan ce",
+ "▁По ль",
+ "▁an onymous",
+ "▁ anonymous",
+ "▁institution s",
+ "▁instit utions",
+ "▁z dob",
+ "▁zd ob",
+ "pr üng",
+ "prü ng",
+ "▁ар ти",
+ "▁e stat",
+ "▁est at",
+ "▁es tat",
+ "▁esta t",
+ "ac ci",
+ "acc i",
+ "▁academ ic",
+ "▁ch iesa",
+ "▁chi esa",
+ "▁G ian",
+ "▁Gi an",
+ "▁Gia n",
+ "cont rib",
+ "contr ib",
+ "um ed",
+ "ume d",
+ "u med",
+ "▁G ir",
+ "▁Gi r",
+ "▁base ball",
+ "numer ic",
+ "n umeric",
+ "Gener ator",
+ "G M",
+ "▁t iny",
+ "▁ti ny",
+ "▁tin y",
+ "▁ tiny",
+ "▁dist inction",
+ "▁distinct ion",
+ "ге р",
+ "г ер",
+ "▁r ust",
+ "▁ru st",
+ "▁rus t",
+ "▁ rust",
+ "▁FI FA",
+ "▁Pro perties",
+ "▁ Properties",
+ "^ -",
+ "▁э кс",
+ "▁эк с",
+ "▁Sta nis",
+ "▁Stan is",
+ "▁A jax",
+ "es cape",
+ "esc ape",
+ "▁con sp",
+ "▁cons p",
+ "▁C hen",
+ "▁Ch en",
+ "▁Che n",
+ "▁N aval",
+ "▁Na val",
+ "▁Nav al",
+ "Bi t",
+ "B it",
+ "▁b ât",
+ "ски ми",
+ "ским и",
+ "с кими",
+ "dr ive",
+ "dri ve",
+ "d rive",
+ "▁R ound",
+ "▁Ro und",
+ "▁Rou nd",
+ "ph oto",
+ "▁Le vel",
+ "▁Lev el",
+ "▁ Level",
+ "▁g eg",
+ "▁ge g",
+ "▁ geg",
+ "To m",
+ "T om",
+ "▁M obile",
+ "▁ Mobile",
+ "▁T rop",
+ "▁Tr op",
+ "▁Tro p",
+ "Dir ection",
+ "Direct ion",
+ "D irection",
+ "is an",
+ "isa n",
+ "i san",
+ ")^ {-",
+ ")^{ -",
+ ") ^{-",
+ "▁Set ting",
+ "▁ Setting",
+ "▁Pro bably",
+ "ль я",
+ "л ья",
+ "▁as sets",
+ "▁ass ets",
+ "▁asse ts",
+ "▁asset s",
+ "▁ assets",
+ "▁a tte",
+ "▁at te",
+ "▁att e",
+ "▁ atte",
+ "▁b ulk",
+ "▁bul k",
+ "és t",
+ "é st",
+ "▁w ing",
+ "▁win g",
+ "▁ wing",
+ "ni us",
+ "niu s",
+ "n ius",
+ "▁w ins",
+ "▁win s",
+ "▁l ud",
+ "▁lu d",
+ "us hing",
+ "ush ing",
+ "▁d even",
+ "▁de ven",
+ "▁dev en",
+ "▁deve n",
+ "огра ф",
+ "о граф",
+ "burg er",
+ "bur ger",
+ "b urger",
+ "▁em bar",
+ "▁emb ar",
+ "Filter Chain",
+ "▁t um",
+ "▁tu m",
+ "▁ö ss",
+ "▁nom mé",
+ "▁p ir",
+ "▁pi r",
+ "▁l uc",
+ "▁lu c",
+ "db o",
+ "d bo",
+ "ag ues",
+ "ague s",
+ "agu es",
+ "▁al can",
+ "▁alc an",
+ "ou wen",
+ "ouw en",
+ "▁Stan ley",
+ "ци али",
+ "▁g rown",
+ "▁gr own",
+ "▁gro wn",
+ "▁grow n",
+ "▁pres erved",
+ "▁preserve d",
+ "▁s olar",
+ "▁so lar",
+ "▁sol ar",
+ "▁Насе ление",
+ "▁perform ances",
+ "▁performance s",
+ "▁C ow",
+ "▁Co w",
+ "▁engine ering",
+ "▁engineer ing",
+ "▁sc aling",
+ "▁scal ing",
+ "at omic",
+ "ato mic",
+ "atom ic",
+ "end ance",
+ "▁a ce",
+ "▁ac e",
+ "▁ ace",
+ "än gen",
+ "äng en",
+ "änge n",
+ "An im",
+ "A nim",
+ "ph ase",
+ "pha se",
+ "phas e",
+ "z burg",
+ "O ld",
+ "▁serv ant",
+ "▁geme ins",
+ "▁Ob serv",
+ "trans late",
+ "▁cover ing",
+ "▁cov ering",
+ "▁est án",
+ "▁está n",
+ "▁problem a",
+ "▁proble ma",
+ "▁probl ema",
+ "▁у станов",
+ "▁l lev",
+ "▁ll ev",
+ "▁lle v",
+ "▁c zerw",
+ "é al",
+ "me z",
+ "m ez",
+ "RE E",
+ "R EE",
+ "ER R",
+ "ту ри",
+ "тур и",
+ "se gu",
+ "seg u",
+ "s egu",
+ "▁pro fit",
+ "▁prof it",
+ "▁multip lication",
+ "kom men",
+ "k ommen",
+ "▁f aut",
+ "▁fa ut",
+ "▁candid ates",
+ "▁candidate s",
+ "▁U ri",
+ "▁Ur i",
+ "▁ Uri",
+ "▁La ura",
+ "▁Laur a",
+ "▁Lau ra",
+ "▁s ap",
+ "▁sa p",
+ "▁ви сини",
+ "▁Bet ween",
+ "fa de",
+ "f ade",
+ "▁res erved",
+ "▁reserve d",
+ "▁invol ving",
+ "▁M are",
+ "▁Mar e",
+ "▁Ma re",
+ "▁Cont ainer",
+ "▁ Container",
+ "▁на зна",
+ "▁DE BUG",
+ "▁ DEBUG",
+ "▁h urt",
+ "▁hur t",
+ "▁hu rt",
+ "▁Pol ski",
+ "▁l ux",
+ "▁lu x",
+ "C B",
+ "wa ch",
+ "w ach",
+ "▁пери од",
+ "▁перио д",
+ "▁C atherine",
+ "▁g anz",
+ "▁gan z",
+ "uch te",
+ "ucht e",
+ "u chte",
+ "▁cons umer",
+ "▁consum er",
+ "▁consume r",
+ "▁cross ed",
+ "ord ered",
+ "order ed",
+ "orde red",
+ "aw ay",
+ "awa y",
+ "a way",
+ "te chn",
+ "tech n",
+ "▁sub scri",
+ "▁subs cri",
+ "▁short cut",
+ "▁произ вод",
+ "▁simultane ously",
+ "▁r ating",
+ "▁ra ting",
+ "▁rat ing",
+ "▁ rating",
+ "▁K ings",
+ "▁King s",
+ "▁Kin gs",
+ "▁relations hips",
+ "▁relation ships",
+ "▁relationship s",
+ "▁S ex",
+ "▁Se x",
+ "▁T ool",
+ "▁To ol",
+ "▁ Tool",
+ "ag h",
+ "a gh",
+ "ac ters",
+ "act ers",
+ "acter s",
+ "log ger",
+ "hom me",
+ "en gers",
+ "eng ers",
+ "enger s",
+ "▁R i",
+ "ear ance",
+ "ea rance",
+ "▁appear ances",
+ "▁appearance s",
+ "Re al",
+ "▁p asse",
+ "▁pass e",
+ "▁pas se",
+ "ic lopedia",
+ "ч ко",
+ "ter re",
+ "▁Ont ario",
+ "▁пере да",
+ "▁перед а",
+ "fo oter",
+ "foo ter",
+ "foot er",
+ "arch ivi",
+ "archiv i",
+ "if iz",
+ "ifi z",
+ "▁Pro test",
+ "▁Prote st",
+ "▁L IN",
+ "▁LI N",
+ "▁ LIN",
+ "unn able",
+ "▁cent uries",
+ "▁B ayer",
+ "▁Ba yer",
+ "▁Bay er",
+ "ці ю",
+ "ов ин",
+ "ови н",
+ "о вин",
+ "▁And rea",
+ "▁Andre a",
+ "se lection",
+ "select ion",
+ "sel ection",
+ "▁c alm",
+ "▁cal m",
+ "▁ca lm",
+ "▁mod ification",
+ "▁modific ation",
+ "▁short ly",
+ "in aire",
+ "ina ire",
+ "i naire",
+ "▁f usion",
+ "▁fus ion",
+ "▁feel ings",
+ "▁feeling s",
+ "▁fee lings",
+ "P K",
+ "▁Ro berto",
+ "▁Robert o",
+ "г не",
+ "Sh ared",
+ "▁mehr ere",
+ "▁N iem",
+ "▁Ni em",
+ "▁Nie m",
+ "om p",
+ "o mp",
+ "En v",
+ "▁Art icle",
+ "▁P ok",
+ "▁Po k",
+ "▁V ARCHAR",
+ "▁d il",
+ "▁di l",
+ "▁af ford",
+ "▁aff ord",
+ "▁con front",
+ "▁conf ront",
+ "ow anie",
+ "owa nie",
+ "owan ie",
+ "▁min istre",
+ "▁minist re",
+ "▁mini stre",
+ "ad esh",
+ "ade sh",
+ "ades h",
+ "▁P oly",
+ "▁Pol y",
+ "▁Po ly",
+ "▁Ра спо",
+ "▁Рас по",
+ "▁Gru ppe",
+ "▁H elen",
+ "▁He len",
+ "▁Hel en",
+ "▁c c",
+ "▁ cc",
+ "▁port rait",
+ "be w",
+ "b ew",
+ "▁b eta",
+ "▁be ta",
+ "▁bet a",
+ "▁ beta",
+ "▁W ir",
+ "▁Wi r",
+ "▁A udio",
+ "▁Aud io",
+ "▁ Audio",
+ "▁( \\<",
+ "▁(\\ <",
+ "rior ity",
+ "▁n it",
+ "▁ni t",
+ "▁ nit",
+ "▁пред стави",
+ "▁представ и",
+ "▁V ie",
+ "▁Vi e",
+ "▁w ür",
+ "▁ wür",
+ "▁H old",
+ "▁Hol d",
+ "▁Ho ld",
+ "▁ Hold",
+ "▁S ad",
+ "▁Sa d",
+ "▁To chter",
+ "▁o ltre",
+ "▁ol tre",
+ "▁ oltre",
+ "▁Act iv",
+ "▁ Activ",
+ "▁J ason",
+ "▁Ja son",
+ "▁Jas on",
+ "▁wie ku",
+ "▁reg ards",
+ "▁regard s",
+ "▁t aste",
+ "▁ta ste",
+ "agnost ic",
+ "ла ся",
+ "▁S elf",
+ "▁Sel f",
+ "▁ Self",
+ "▁a pr",
+ "▁ap r",
+ "▁De ep",
+ "sc op",
+ "s cop",
+ "Act iv",
+ "▁type def",
+ "▁typed ef",
+ "Content View",
+ "comp iler",
+ "compile r",
+ "▁R oth",
+ "▁Ro th",
+ "▁Rot h",
+ "x c",
+ "зи к",
+ "▁l argo",
+ "▁lar go",
+ "▁larg o",
+ "▁R ena",
+ "▁Re na",
+ "▁Ren a",
+ "he iten",
+ "heit en",
+ "▁platform s",
+ "▁plat forms",
+ "ul la",
+ "ull a",
+ "u lla",
+ "▁gl ance",
+ "▁mas cul",
+ "▁m ex",
+ "▁me x",
+ "▁J orge",
+ "▁fun cion",
+ "▁func ion",
+ "cho ose",
+ "▁re views",
+ "▁review s",
+ "▁Al ban",
+ "▁Alb an",
+ "▁G lo",
+ "▁Gl o",
+ "▁S pecies",
+ "▁Spe cies",
+ "▁Spec ies",
+ "▁F ame",
+ "▁Fa me",
+ "▁Fam e",
+ "▁R oll",
+ "▁Ro ll",
+ "▁Rol l",
+ "▁P uerto",
+ "▁\\ )",
+ "▁ \\)",
+ "ym nas",
+ "ymn as",
+ "en viron",
+ "▁i phone",
+ "▁Wrest ling",
+ "ał y",
+ "a ły",
+ "▁Ind iana",
+ "▁India na",
+ "▁Indian a",
+ "Rad io",
+ "V S",
+ "▁independ ence",
+ "та й",
+ "▁de code",
+ "▁dec ode",
+ "▁ decode",
+ "Wh ite",
+ "▁j ourn",
+ "▁jo urn",
+ "▁jou rn",
+ "▁jour n",
+ "ícul o",
+ "í culo",
+ "▁Bar b",
+ "▁Ba rb",
+ "▁Ev angel",
+ "▁An dy",
+ "▁And y",
+ "▁Wel come",
+ "▁De vice",
+ "▁Dev ice",
+ "▁ Device",
+ "ge f",
+ "g ef",
+ "▁remember ed",
+ "▁vari ations",
+ "▁variation s",
+ "▁Ad olf",
+ "it aine",
+ "ita ine",
+ "▁надмор ској",
+ "▁s team",
+ "▁ste am",
+ "▁concern s",
+ "▁` |",
+ "▁би о",
+ "тель ства",
+ "▁qu attro",
+ "ext end",
+ "▁trab ajo",
+ "▁trabaj o",
+ "en berg",
+ "▁scen arios",
+ "▁scenario s",
+ "ân t",
+ "â nt",
+ "▁kom mt",
+ "▁komm t",
+ "▁dom estic",
+ "▁B asketball",
+ "▁Co oper",
+ "so ck",
+ "s ock",
+ "дер жа",
+ "д ержа",
+ "={ \\",
+ "= {\\",
+ "▁in ici",
+ "▁P hill",
+ "▁Ph ill",
+ "▁Phil l",
+ "▁гене рал",
+ "archivi ato",
+ "ъ н",
+ "Ro b",
+ "R ob",
+ "▁t ong",
+ "▁to ng",
+ "▁ton g",
+ "▁character istics",
+ "▁characteristic s",
+ "▁a maz",
+ "▁am az",
+ "▁M ode",
+ "▁Mod e",
+ "▁Mo de",
+ "▁ Mode",
+ "▁inaug ur",
+ "we hr",
+ "ra nt",
+ "ran t",
+ "r ant",
+ "ion ali",
+ "ional i",
+ "iona li",
+ "▁M other",
+ "▁Mo ther",
+ "▁Mot her",
+ "M a",
+ "é qu",
+ "▁K elly",
+ "▁Kel ly",
+ "ci le",
+ "cil e",
+ "c ile",
+ "▁beste ht",
+ "▁estim ates",
+ "▁estimate s",
+ "rugu ay",
+ "▁A ns",
+ "▁An s",
+ "Ma d",
+ "M ad",
+ "▁на в",
+ "▁d onnées",
+ "▁donn ées",
+ "▁donné es",
+ "▁ données",
+ "▁trop ical",
+ "▁Sever al",
+ "el ter",
+ "elt er",
+ "elte r",
+ "▁P ho",
+ "▁Ph o",
+ "ke m",
+ "k em",
+ "▁Custom er",
+ "▁ Customer",
+ "▁скла ді",
+ "▁c ourses",
+ "▁course s",
+ "▁cours es",
+ "Pl atform",
+ "nav bar",
+ "le arning",
+ "lear ning",
+ "learn ing",
+ "▁Sw edish",
+ "▁z ast",
+ "▁za st",
+ "▁zas t",
+ "▁L ig",
+ "▁Li g",
+ "man agement",
+ "▁l od",
+ "▁lo d",
+ "uff le",
+ "Text ure",
+ "Te xture",
+ "ar ga",
+ "arg a",
+ "át um",
+ "▁D DR",
+ "ні ї",
+ "н ії",
+ "▁Soci été",
+ "▁dom ains",
+ "▁domain s",
+ "▁perm itted",
+ "▁permit ted",
+ "▁ex terne",
+ "▁ext erne",
+ "▁extern e",
+ "▁quel que",
+ "v t",
+ "ym an",
+ "y man",
+ "▁W ard",
+ "▁War d",
+ "▁Wa rd",
+ "▁ag li",
+ "▁ agli",
+ "▁and ra",
+ "▁an dra",
+ "▁ andra",
+ "S napshot",
+ "▁m å",
+ "▁ye ah",
+ "де на",
+ "ден а",
+ "д ена",
+ "ęp u",
+ "ę pu",
+ "ask ell",
+ "▁Ré publique",
+ "in ject",
+ "▁' ;",
+ "▁ ';",
+ "än n",
+ "ä nn",
+ "▁z elf",
+ "▁Ent wicklung",
+ "ár ia",
+ "á ria",
+ "on omy",
+ "ono my",
+ "onom y",
+ "▁s vil",
+ "▁sv il",
+ "ie se",
+ "ies e",
+ "i ese",
+ "▁con ser",
+ "▁cons er",
+ "▁conse r",
+ "▁n im",
+ "▁ni m",
+ "▁ nim",
+ "▁r ész",
+ "▁ré sz",
+ "▁rés z",
+ "▁И тали",
+ "▁part ici",
+ "▁partic i",
+ "▁parti ci",
+ "▁L ion",
+ "▁Li on",
+ "s r",
+ "al ways",
+ "▁Влади мир",
+ "че ские",
+ "[ ,",
+ "▁Def inition",
+ "▁ Definition",
+ "na nt",
+ "nan t",
+ "n ant",
+ "oe m",
+ "o em",
+ "Id s",
+ "I ds",
+ "▁в не",
+ "▁[ ...]",
+ "▁на прав",
+ "▁нап рав",
+ "▁G O",
+ "▁ GO",
+ "▁å rs",
+ "▁år s",
+ "▁ut án",
+ "▁out ros",
+ "▁reg ión",
+ "▁M ong",
+ "▁Mon g",
+ "▁Mo ng",
+ "▁fil me",
+ "▁film e",
+ "▁tri ple",
+ "▁trip le",
+ "▁sp ons",
+ "▁spo ns",
+ "De velop",
+ "▁out come",
+ "▁B ible",
+ "▁Bi ble",
+ "▁Bib le",
+ "▁и мени",
+ "▁име ни",
+ "▁имен и",
+ "Can vas",
+ "пу та",
+ "cur r",
+ "cu rr",
+ "c urr",
+ "ás ok",
+ "){ \\",
+ ") {\\",
+ "ning ar",
+ "` ;",
+ "▁Fl ash",
+ ": #",
+ "mu st",
+ "mus t",
+ "m ust",
+ "cp u",
+ "c pu",
+ "▁form ats",
+ "▁format s",
+ "▁forma ts",
+ "Ha r",
+ "H ar",
+ "▁epis odio",
+ "▁R osa",
+ "▁Ro sa",
+ "▁Ros a",
+ "▁d ès",
+ "em it",
+ "emi t",
+ "e mit",
+ "rit eria",
+ "rite ria",
+ "riter ia",
+ "An notation",
+ "Fl ag",
+ "F lag",
+ "g mail",
+ "▁N ormal",
+ "▁Nor mal",
+ "▁Norm al",
+ "▁ Normal",
+ "oll ary",
+ "ollar y",
+ "▁f oss",
+ "▁fo ss",
+ "▁fos s",
+ "▁con current",
+ "▁conc urrent",
+ "▁ concurrent",
+ "▁crash es",
+ "▁ви де",
+ "▁вид е",
+ "▁Min or",
+ "▁Mi nor",
+ "▁S it",
+ "▁Si t",
+ "▁S N",
+ "▁ SN",
+ "▁s car",
+ "▁sc ar",
+ "▁ scar",
+ "▁fe min",
+ "▁fem in",
+ "▁spec ification",
+ "▁specific ation",
+ "so ap",
+ "▁o perate",
+ "▁oper ate",
+ "▁opera te",
+ "▁principal mente",
+ "▁a ust",
+ "▁au st",
+ "▁aus t",
+ "ib ile",
+ "ibil e",
+ "it ime",
+ "iti me",
+ "i time",
+ "ле жа",
+ "if rame",
+ "i frame",
+ "▁concept s",
+ "▁conce pts",
+ "▁t ack",
+ "▁ta ck",
+ "▁v iss",
+ "▁vis s",
+ "▁vi ss",
+ "▁car bon",
+ "ter y",
+ "te ry",
+ "t ery",
+ "▁n aming",
+ "▁na ming",
+ "▁nam ing",
+ "▁Or ts",
+ "▁Ort s",
+ "id ente",
+ "ident e",
+ "iden te",
+ "▁Cap it",
+ "▁Ca pit",
+ "▁ex pr",
+ "▁exp r",
+ "▁ expr",
+ "▁насе љу",
+ "▁Select ed",
+ "▁Sel ected",
+ "▁Sele cted",
+ "▁ Selected",
+ "▁h inter",
+ "▁hint er",
+ "▁hin ter",
+ "▁i frame",
+ "▁if rame",
+ "▁ iframe",
+ "▁z b",
+ "index Path",
+ "col l",
+ "co ll",
+ "c oll",
+ "▁wr ześ",
+ "▁a cht",
+ "▁ac ht",
+ "▁ach t",
+ "▁ acht",
+ "▁grad ually",
+ "▁gradu ally",
+ "▁ч у",
+ "▁ чу",
+ "зе й",
+ "з ей",
+ "ha ft",
+ "h aft",
+ "▁t ran",
+ "▁tr an",
+ "▁tra n",
+ "▁la quelle",
+ "yt ics",
+ "ID E",
+ "I DE",
+ "▁py game",
+ "▁pyg ame",
+ "▁P ackage",
+ "▁Pack age",
+ "▁ Package",
+ "▁class Name",
+ "▁ className",
+ "B al",
+ "pe rl",
+ "per l",
+ "ти на",
+ "тин а",
+ "O cc",
+ "▁in frastr",
+ "▁Champion s",
+ "▁Champ ions",
+ "▁class ic",
+ "▁R aw",
+ "▁Ra w",
+ "▁ Raw",
+ "▁partial ly",
+ "▁parti ally",
+ "▁T ed",
+ "▁Te d",
+ "▁sto let",
+ "ra ined",
+ "rain ed",
+ "raine d",
+ "rai ned",
+ "r ained",
+ "WH ERE",
+ "W HERE",
+ "▁v all",
+ "▁val l",
+ "▁va ll",
+ "▁Jul ia",
+ "▁Ju lia",
+ "▁Juli a",
+ "za t",
+ "z at",
+ "▁surr ounded",
+ "SE E",
+ "S EE",
+ "▁walk ing",
+ "▁wal king",
+ "B ad",
+ "FO R",
+ "F OR",
+ "con tre",
+ "cont re",
+ "contr e",
+ "▁Pal est",
+ "▁Pale st",
+ "át ico",
+ "▁engine er",
+ "▁part ners",
+ "▁partner s",
+ "▁Je ws",
+ "▁Jew s",
+ "il ers",
+ "ile rs",
+ "iler s",
+ "i lers",
+ "▁c erem",
+ "▁ce rem",
+ "▁cer em",
+ "▁inter actions",
+ "▁interaction s",
+ "▁interact ions",
+ "ac u",
+ "a cu",
+ "st y",
+ "s ty",
+ "▁Prince ss",
+ "▁Prin cess",
+ "sh arp",
+ "sha rp",
+ "▁Sing les",
+ "▁Single s",
+ "▁ї х",
+ "ch ez",
+ "che z",
+ "c hez",
+ "Rece iver",
+ "Receive r",
+ "▁pat ients",
+ "▁patient s",
+ "string ify",
+ "▁compet ed",
+ "be y",
+ "b ey",
+ "$ ;",
+ "▁B d",
+ "had oop",
+ "h adoop",
+ "▁Div isión",
+ "öl d",
+ "ö ld",
+ "▁restrict ed",
+ "▁comm ander",
+ "▁command er",
+ "▁comma nder",
+ "▁High way",
+ "▁Č esk",
+ "▁m yth",
+ "▁my th",
+ "ча н",
+ "ч ан",
+ "ra ham",
+ "rah am",
+ "▁en qu",
+ "▁p og",
+ "▁po g",
+ "▁com una",
+ "▁comun a",
+ "▁print ln",
+ "▁ println",
+ "▁к руп",
+ "▁de pois",
+ "▁dep ois",
+ "▁se ats",
+ "▁sea ts",
+ "▁seat s",
+ "▁neigh b",
+ "ци она",
+ "цион а",
+ "ag ine",
+ "agi ne",
+ "agin e",
+ "▁cloth es",
+ "▁clo thes",
+ "▁P rior",
+ "▁Pr ior",
+ "▁Pri or",
+ "Br ain",
+ "Bra in",
+ "B rain",
+ "FF FF",
+ "': '",
+ "' :'",
+ "fe atures",
+ "feature s",
+ "▁file system",
+ "▁files ystem",
+ "▁sing les",
+ "▁single s",
+ "▁Mel bourne",
+ "▁dest ruction",
+ "▁destruct ion",
+ "▁destru ction",
+ "▁Ly on",
+ "▁In sel",
+ "▁Ins el",
+ "Na v",
+ "N av",
+ "▁Re place",
+ "▁Rep lace",
+ "▁ Replace",
+ "▁l é",
+ "▁ lé",
+ "Wh o",
+ "W ho",
+ "▁E stad",
+ "▁Est ad",
+ "▁Esta d",
+ "▁dim ensional",
+ "▁dimension al",
+ "▁ dimensional",
+ "▁ö ff",
+ "▁ öff",
+ "▁gr ands",
+ "▁gran ds",
+ "▁grand s",
+ "дж а",
+ "д жа",
+ "pl ane",
+ "plan e",
+ "pla ne",
+ "p lane",
+ "но сті",
+ "ност і",
+ "нос ті",
+ "▁Or igin",
+ "▁Ori gin",
+ "▁Orig in",
+ "▁ Origin",
+ "W I",
+ "än ner",
+ "änn er",
+ "▁C ry",
+ "▁Cr y",
+ "IT ION",
+ "▁fö dd",
+ "▁cult ura",
+ "▁R ank",
+ "▁Ran k",
+ "▁v uel",
+ "▁vue l",
+ "▁vu el",
+ "▁z ag",
+ "▁za g",
+ "▁Ma xim",
+ "▁Max im",
+ "он у",
+ "о ну",
+ "() ))",
+ "()) )",
+ "( )))",
+ "R aw",
+ "kir che",
+ "k irche",
+ "▁a demás",
+ "▁t ie",
+ "▁ti e",
+ "▁St yle",
+ "▁ Style",
+ "ско в",
+ "ск ов",
+ "с ков",
+ "ist ant",
+ "ista nt",
+ "istan t",
+ "ol ph",
+ "▁Z ür",
+ "▁In fo",
+ "▁Inf o",
+ "▁ Info",
+ "DO M",
+ "D OM",
+ "us c",
+ "u sc",
+ "na hm",
+ "nah m",
+ "▁Ф едера",
+ "▁F ot",
+ "▁Fo t",
+ "▁spec ifying",
+ "▁specify ing",
+ "▁tit olo",
+ "▁Bo ys",
+ "▁Boy s",
+ "ie ch",
+ "iec h",
+ "i ech",
+ "Pl ace",
+ "P lace",
+ "▁H off",
+ "▁Ho ff",
+ "▁Hof f",
+ "▁c ached",
+ "▁ca ched",
+ "▁cache d",
+ "ва ль",
+ "вал ь",
+ "в аль",
+ "is her",
+ "ish er",
+ "roll ing",
+ "rol ling",
+ "op ens",
+ "ope ns",
+ "open s",
+ "▁h r",
+ "▁ hr",
+ "-- ----",
+ "---- --",
+ "--- ---",
+ "----- -",
+ "- -----",
+ "▁mag gior",
+ "▁maggio r",
+ "▁trans actions",
+ "▁transaction s",
+ "▁c riminal",
+ "▁crim inal",
+ "▁re tre",
+ "▁ret re",
+ "▁retr e",
+ "▁Camp bell",
+ ")) :",
+ ") ):",
+ "▁n ed",
+ "▁ne d",
+ "▁ ned",
+ "Page r",
+ "Pa ger",
+ "P ager",
+ "▁H ero",
+ "▁He ro",
+ "▁Her o",
+ "(_ _",
+ "( __",
+ "▁un cle",
+ "▁re aches",
+ "▁reach es",
+ "ar to",
+ "art o",
+ "▁h ello",
+ "▁hel lo",
+ "▁hell o",
+ "▁ hello",
+ "Pre ferences",
+ "▁за тем",
+ "Name d",
+ "Na med",
+ "N amed",
+ "▁re aders",
+ "▁read ers",
+ "▁reader s",
+ "х і",
+ "ke rn",
+ "ker n",
+ "k ern",
+ "▁у по",
+ "ки н",
+ "к ин",
+ "▁l av",
+ "▁la v",
+ "▁ lav",
+ "▁n ob",
+ "▁no b",
+ "▁se cre",
+ "▁sec re",
+ "▁List View",
+ "▁ ListView",
+ "ва ния",
+ "▁May or",
+ "bo rough",
+ "bor ough",
+ "▁fil osof",
+ "не ння",
+ "нен ня",
+ "фр и",
+ "ф ри",
+ "▁p atr",
+ "▁pat r",
+ "▁pa tr",
+ "F M",
+ "▁a cid",
+ "▁ac id",
+ "▁Salv ador",
+ "▁a bb",
+ "▁ab b",
+ "▁ abb",
+ "▁G raham",
+ "▁Gra ham",
+ "pol icy",
+ "neg ative",
+ "ński ego",
+ "ń skiego",
+ "▁He imat",
+ "▁d azu",
+ "▁da zu",
+ "▁m ely",
+ "▁me ly",
+ "▁mel y",
+ "▁r ide",
+ "▁rid e",
+ "▁ri de",
+ "▁ ride",
+ "▁du ties",
+ "▁dut ies",
+ "ov ery",
+ "over y",
+ "ove ry",
+ "o very",
+ "▁Pro position",
+ "▁Prop osition",
+ "▁Pa olo",
+ "/ '",
+ "▁M au",
+ "▁Ma u",
+ "im enti",
+ "iment i",
+ "imen ti",
+ "Sa int",
+ "S aint",
+ "fa ther",
+ "f ather",
+ "▁equ ilib",
+ "ph ony",
+ "phon y",
+ "▁c las",
+ "▁cl as",
+ "▁cla s",
+ "▁от ли",
+ "▁Buffer ed",
+ "▁Buff ered",
+ "re k",
+ "r ek",
+ "▁m itt",
+ "▁mit t",
+ "▁mi tt",
+ "▁ mitt",
+ "▁H ur",
+ "▁Hu r",
+ "▁Har vard",
+ "▁demonstr ate",
+ "ua rio",
+ "u ario",
+ "▁do lor",
+ "▁dol or",
+ "▁reject ed",
+ "▁M üller",
+ "▁n ac",
+ "▁na c",
+ "▁B elle",
+ "▁Be lle",
+ "▁Bel le",
+ "▁Bell e",
+ "▁gather ed",
+ "n r",
+ "fr ika",
+ "fri ka",
+ "öl l",
+ "ö ll",
+ "▁chem ical",
+ "ni g",
+ "n ig",
+ "▁cal c",
+ "▁ calc",
+ "▁DE FAULT",
+ "▁ DEFAULT",
+ "▁philosoph y",
+ "▁Lar avel",
+ "▁al ignment",
+ "▁align ment",
+ "E V",
+ "e or",
+ "▁d zie",
+ "▁dz ie",
+ "▁ dzie",
+ "▁m est",
+ "▁me st",
+ "▁mes t",
+ "▁I o",
+ "CR E",
+ "C RE",
+ "з ви",
+ "▁M edic",
+ "▁Me dic",
+ "▁Med ic",
+ "▁Medi c",
+ "▁n ä",
+ "▁z ab",
+ "▁za b",
+ "▁S lov",
+ "▁Sl ov",
+ "▁Slo v",
+ "ut lich",
+ "▁am plit",
+ "▁ampl it",
+ "▁amp lit",
+ "▁Fran kreich",
+ "▁Frank reich",
+ "▁к іль",
+ "▁кі ль",
+ "IN D",
+ "I ND",
+ "exec ution",
+ "▁Kar riere",
+ "d ostęp",
+ "▁r éal",
+ "▁ré al",
+ "en go",
+ "eng o",
+ "▁se vere",
+ "▁sever e",
+ "зм а",
+ "з ма",
+ "▁тур ни",
+ "▁C arter",
+ "▁Car ter",
+ "▁Cart er",
+ "▁Rob inson",
+ "▁Robin son",
+ "getElement sBy",
+ "▁pro totype",
+ "▁proto type",
+ "▁ prototype",
+ "▁jap on",
+ "▁ja pon",
+ "führ ung",
+ "f ührung",
+ "▁con segu",
+ "▁cons egu",
+ "▁conse gu",
+ "▁st udi",
+ "▁stud i",
+ "▁l ire",
+ "▁li re",
+ "▁ lire",
+ "▁sch ließ",
+ "▁ schließ",
+ "▁B uff",
+ "▁Bu ff",
+ "▁red und",
+ "▁redu nd",
+ "▁e rn",
+ "▁er n",
+ "▁ ern",
+ "▁my ster",
+ "▁myst er",
+ "▁prop rio",
+ "▁propri o",
+ "ate ful",
+ "▁Par ent",
+ "▁Pa rent",
+ "▁ Parent",
+ "▁lad ies",
+ "ra ck",
+ "rac k",
+ "r ack",
+ "ти ка",
+ "тик а",
+ "en burg",
+ "▁каче стве",
+ "▁E F",
+ "▁ EF",
+ "▁st am",
+ "▁sta m",
+ "▁nue va",
+ "▁fil tered",
+ "▁filter ed",
+ "re ten",
+ "ret en",
+ "r eten",
+ "▁I an",
+ "▁Matt hew",
+ "▁Matth ew",
+ "ki h",
+ "k ih",
+ "▁ ő",
+ "▁ком пози",
+ "▁for ever",
+ "▁fore ver",
+ "oir es",
+ "oi res",
+ "oire s",
+ "o ires",
+ ":\\ \\",
+ ": \\\\",
+ "▁ét udes",
+ "▁s oup",
+ "▁so up",
+ "▁sou p",
+ "▁p leased",
+ "▁please d",
+ "▁ple ased",
+ ")} (",
+ ") }(",
+ "▁S top",
+ "▁St op",
+ "▁Sto p",
+ "▁ Stop",
+ "Set ter",
+ "S etter",
+ "▁He lp",
+ "▁Hel p",
+ "▁ Help",
+ "▁b ars",
+ "▁bar s",
+ "▁ba rs",
+ "▁ bars",
+ "▁ER R",
+ "▁ ERR",
+ "▁( ?",
+ "▁ (?",
+ "▁po etry",
+ "▁poet ry",
+ "▁U til",
+ "▁Ut il",
+ "▁ Util",
+ "A K",
+ "▁f ick",
+ "▁fi ck",
+ "▁fic k",
+ "▁I M",
+ "▁ IM",
+ "▁pro ud",
+ "▁pr oud",
+ "но си",
+ "нос и",
+ "▁m uerte",
+ "▁mu erte",
+ "▁Palmar ès",
+ "▁N as",
+ "▁Na s",
+ "щи х",
+ "щ их",
+ "▁qu er",
+ "▁que r",
+ "▁q uer",
+ "▁ quer",
+ "▁a penas",
+ "▁ap enas",
+ "][ '",
+ "] ['",
+ "▁Kon st",
+ "по н",
+ "п он",
+ "▁Sch iff",
+ "▁m p",
+ "▁ mp",
+ "▁б лаго",
+ "fr am",
+ "fra m",
+ "f ram",
+ "▁house hold",
+ "▁t ract",
+ "▁tr act",
+ "▁tra ct",
+ "▁trac t",
+ "enc oding",
+ "▁und ert",
+ "▁under t",
+ "▁ undert",
+ "▁A ug",
+ "▁Au g",
+ "ов ан",
+ "ова н",
+ "о ван",
+ "▁Ar ten",
+ "▁Art en",
+ "▁Arte n",
+ "▁inv oked",
+ "▁invoke d",
+ "▁d ynast",
+ "▁fle et",
+ "че ство",
+ "▁Mur ray",
+ "▁g ut",
+ "▁gu t",
+ "eli hood",
+ "▁S SH",
+ "▁SS H",
+ "от вет",
+ "▁person ally",
+ "▁personal ly",
+ "при я",
+ "п рия",
+ "▁fin anci",
+ "▁finan ci",
+ "▁Thom pson",
+ "al u",
+ "a lu",
+ "id entity",
+ "ident ity",
+ "▁G rab",
+ "▁Gr ab",
+ "▁Gra b",
+ "add le",
+ "É t",
+ "▁T ob",
+ "▁To b",
+ "▁ver lor",
+ "▁verl or",
+ "▁Saint e",
+ "▁Sa inte",
+ "▁Sain te",
+ "▁d op",
+ "▁do p",
+ "▁в ере",
+ "▁ве ре",
+ "▁вер е",
+ "__ _",
+ "_ __",
+ "▁prom otion",
+ "▁- =",
+ "▁от де",
+ "▁amb igu",
+ "▁ ambigu",
+ "OR DER",
+ "ORD ER",
+ "▁Comm unic",
+ "▁Commun ic",
+ "▁im ply",
+ "▁imp ly",
+ "▁impl y",
+ "on ed",
+ "one d",
+ "o ned",
+ "clud ing",
+ "▁coll ision",
+ "▁fragment s",
+ "▁frag ments",
+ "script ion",
+ "scri ption",
+ "s cription",
+ "▁' {",
+ "ля х",
+ "л ях",
+ "▁h ans",
+ "▁ha ns",
+ "▁han s",
+ "у с",
+ "wi re",
+ "w ire",
+ "name space",
+ "names pace",
+ "▁s word",
+ "▁sw ord",
+ "▁swo rd",
+ "ref resh",
+ "▁kw am",
+ "z s",
+ "comm ons",
+ "common s",
+ "▁c osa",
+ "▁co sa",
+ "▁cos a",
+ "▁reg ime",
+ "gr ep",
+ "gre p",
+ "g rep",
+ "▁di oc",
+ "▁dio c",
+ "▁Cont act",
+ "▁ Contact",
+ "▁est as",
+ "▁esta s",
+ "▁Ste wart",
+ "▁v iele",
+ "▁vi ele",
+ "▁vie le",
+ "▁viel e",
+ "то ва",
+ "тов а",
+ "т ова",
+ "▁R an",
+ "▁Ra n",
+ "an nes",
+ "ann es",
+ "anne s",
+ "id ay",
+ "ida y",
+ "i day",
+ "▁s napshot",
+ "▁snap shot",
+ "or row",
+ "orr ow",
+ "▁za č",
+ "▁участи е",
+ "▁prom ised",
+ "▁promise d",
+ "Ass embly",
+ "▁champion ship",
+ "▁champions hip",
+ "▁Def ine",
+ "▁e ren",
+ "▁er en",
+ "▁ere n",
+ "▁ eren",
+ "▁но во",
+ "▁н ово",
+ "▁нов о",
+ "▁ ново",
+ "▁th inks",
+ "▁think s",
+ "▁thin ks",
+ "Ag e",
+ "A ge",
+ "▁g ev",
+ "▁ge v",
+ "var char",
+ "v archar",
+ "iv ità",
+ "com pos",
+ "comp os",
+ "▁M utter",
+ "▁Mut ter",
+ "CO NT",
+ "CON T",
+ "arm ée",
+ "ag net",
+ "agn et",
+ "agne t",
+ "▁B row",
+ "▁Br ow",
+ "▁Bro w",
+ ". —",
+ "▁Tele vision",
+ "▁Д ля",
+ "▁v m",
+ "▁ vm",
+ "▁or din",
+ "▁ord in",
+ "▁ ordin",
+ "▁Миха й",
+ "▁apro xim",
+ "') ->",
+ "' )->",
+ "▁z oo",
+ "▁zo o",
+ "ip pi",
+ "ipp i",
+ "i ppi",
+ "▁s ino",
+ "▁si no",
+ "▁sin o",
+ "▁Qu ébec",
+ "ra ges",
+ "rag es",
+ "rage s",
+ "r ages",
+ "ä ck",
+ "ei ng",
+ "ein g",
+ "e ing",
+ "ar lo",
+ "pi os",
+ "pio s",
+ "p ios",
+ "▁C han",
+ "▁Ch an",
+ "▁Cha n",
+ "▁el li",
+ "▁ell i",
+ "▁ elli",
+ "▁in cons",
+ "▁inc ons",
+ "▁incon s",
+ "gest ellt",
+ "g estellt",
+ "pp ers",
+ "pper s",
+ "ppe rs",
+ "p pers",
+ "Je an",
+ "anst alt",
+ "▁D ance",
+ "▁Dan ce",
+ "▁to en",
+ "▁toe n",
+ "▁de cis",
+ "▁dec is",
+ "▁Ре зу",
+ "▁official ly",
+ "▁offici ally",
+ "ät ze",
+ "ätz e",
+ "▁до ро",
+ "▁e numer",
+ "▁en umer",
+ "▁enum er",
+ "▁trois ième",
+ "ty p",
+ "t yp",
+ "of fs",
+ "off s",
+ "бо ль",
+ "od n",
+ "o dn",
+ "▁Z ar",
+ "▁Za r",
+ "▁дру го",
+ "qu ia",
+ "qui a",
+ "▁Nicol as",
+ "▁Nic olas",
+ "▁Nicola s",
+ "пи су",
+ "пис у",
+ "▁m ob",
+ "▁mo b",
+ "pa ces",
+ "pace s",
+ "p aces",
+ "нь ого",
+ "ньо го",
+ "Al g",
+ "A lg",
+ "éro ï",
+ "Error s",
+ "Err ors",
+ "▁г ре",
+ "▁ гре",
+ "▁жен щи",
+ "in ch",
+ "inc h",
+ "▁Kore an",
+ "▁Korea n",
+ "▁A post",
+ "▁Ap ost",
+ "▁L iver",
+ "▁Li ver",
+ "▁Live r",
+ "▁Liv er",
+ "▁element ary",
+ "▁D I",
+ "▁ DI",
+ "ви си",
+ "▁so il",
+ "▁D LL",
+ "▁r isp",
+ "▁ris p",
+ "▁ri sp",
+ "▁Sh akespe",
+ "▁G aussian",
+ "▁K urt",
+ "▁Kur t",
+ "▁Ku rt",
+ "Ver tex",
+ "Vert ex",
+ "eb ol",
+ "e bol",
+ "organ isation",
+ "är en",
+ "äre n",
+ "ä ren",
+ "▁Y ES",
+ "▁ YES",
+ "C UR",
+ "▁нача ль",
+ "▁по стро",
+ "▁пос тро",
+ "▁Lu igi",
+ "▁c aching",
+ "prevent Default",
+ "am d",
+ "a md",
+ "▁V it",
+ "▁Vi t",
+ "sub st",
+ "su bst",
+ "▁ст рои",
+ "▁C ampion",
+ "▁Camp ion",
+ "ch r",
+ "c hr",
+ "фе ре",
+ "фер е",
+ "ф ере",
+ "▁С писок",
+ "N F",
+ "▁c ím",
+ "▁cí m",
+ "▁h é",
+ "▁ hé",
+ "re bbe",
+ "reb be",
+ "oc y",
+ "o cy",
+ "be low",
+ "bel ow",
+ "▁by lo",
+ "▁byl o",
+ "▁У и",
+ "▁\\ ({\\",
+ "▁\\( {\\",
+ "▁` :",
+ "▁ `:",
+ "gi ore",
+ "gio re",
+ "gior e",
+ "g iore",
+ "Sa n",
+ "S an",
+ "▁G ate",
+ "▁Ga te",
+ "▁в с",
+ "▁o limp",
+ "▁ol imp",
+ "▁Mat rix",
+ "▁ Matrix",
+ "▁he aring",
+ "▁hear ing",
+ "ri i",
+ "r ii",
+ "tf rac",
+ "t frac",
+ "▁allem and",
+ "▁V ue",
+ "л н",
+ "▁comp iling",
+ "▁E ns",
+ "▁En s",
+ "▁investig ation",
+ "▁A x",
+ "▁ch ars",
+ "▁char s",
+ "▁cha rs",
+ "▁target s",
+ "▁tar gets",
+ "▁l oud",
+ "▁lo ud",
+ "us ement",
+ "use ment",
+ "▁N ether",
+ "▁Ne ther",
+ "▁Net her",
+ "com merce",
+ "IG HT",
+ "oc oa",
+ "oco a",
+ "if ecycle",
+ "ife cycle",
+ "▁Le o",
+ "pr iv",
+ "p riv",
+ "▁go ods",
+ "▁good s",
+ "ad amente",
+ "ada mente",
+ "A ustral",
+ "▁re boot",
+ "▁reb oot",
+ "Ge st",
+ "G est",
+ "▁represent ations",
+ "▁representation s",
+ "ce u",
+ "c eu",
+ "▁do ctrine",
+ "ce rs",
+ "cer s",
+ "c ers",
+ "▁K rak",
+ "▁Kr ak",
+ "▁Kra k",
+ "▁adv oc",
+ "▁squad ra",
+ "▁arbeit ete",
+ "üs t",
+ "ü st",
+ "▁p ill",
+ "▁pi ll",
+ "▁pil l",
+ "An swer",
+ "▁к віт",
+ "▁W a",
+ "um ann",
+ "uman n",
+ "uma nn",
+ "u mann",
+ "▁D ynam",
+ "▁Dy nam",
+ "Fa mil",
+ "F amil",
+ "▁t ennis",
+ "▁ten nis",
+ "▁Engine ering",
+ "▁circ les",
+ "▁cir cles",
+ "▁circle s",
+ "▁Mary land",
+ "▁b esta",
+ "▁be sta",
+ "▁best a",
+ "▁bes ta",
+ "▁b ases",
+ "▁bas es",
+ "▁base s",
+ "▁znaj du",
+ "ктор а",
+ "кто ра",
+ "к тора",
+ "▁ar rest",
+ "▁arr est",
+ "ле р",
+ "л ер",
+ "▁G ia",
+ "▁Gi a",
+ "▁remark able",
+ "▁мо гу",
+ "▁Sup reme",
+ "▁` %",
+ "do r",
+ "d or",
+ "▁au jourd",
+ "▁w is",
+ "WID TH",
+ "▁mis ma",
+ "▁mism a",
+ "▁fl uid",
+ "▁flu id",
+ "▁pet ite",
+ "▁petit e",
+ "▁T ow",
+ "▁To w",
+ "Reg istry",
+ "em ed",
+ "eme d",
+ "e med",
+ "▁Wis consin",
+ "▁R acing",
+ "▁Ra cing",
+ "▁reg istration",
+ "▁registr ation",
+ "/ %",
+ "th ird",
+ "▁mon uments",
+ "▁monument s",
+ "че й",
+ "ч ей",
+ "▁j et",
+ "▁je t",
+ "▁ jet",
+ "▁Ur ban",
+ "ál va",
+ "▁mil ieu",
+ "▁poss ess",
+ "▁g erm",
+ "▁ge rm",
+ "▁ger m",
+ "dep endencies",
+ "▁enem ies",
+ "▁s amen",
+ "▁sa men",
+ "▁same n",
+ "▁sam en",
+ "▁W erner",
+ "▁Wer ner",
+ "▁h izo",
+ "▁hi zo",
+ "▁t d",
+ "▁ td",
+ "▁y esterday",
+ "▁А д",
+ "▁ha sn",
+ "▁has n",
+ "cel lation",
+ "cell ation",
+ "ov ání",
+ "ová ní",
+ "li ka",
+ "lik a",
+ "l ika",
+ "We ek",
+ "▁I ng",
+ "▁In g",
+ "▁E mail",
+ "▁Em ail",
+ "▁ Email",
+ "▁m ètres",
+ "▁O CLC",
+ "▁among st",
+ "▁spl end",
+ "fu r",
+ "f ur",
+ "ant ics",
+ "anti cs",
+ "antic s",
+ "▁X XX",
+ "▁XX X",
+ "▁ XXX",
+ "▁груп пы",
+ "la ch",
+ "lac h",
+ "l ach",
+ "▁c ousin",
+ "▁cou sin",
+ "▁in variant",
+ "▁invari ant",
+ "ђ у",
+ "▁Be ispiel",
+ "▁Bei spiel",
+ "▁hard er",
+ "▁har der",
+ "▁b ell",
+ "▁be ll",
+ "▁bel l",
+ "▁ bell",
+ "▁or ch",
+ "▁ orch",
+ "t b",
+ "Foot note",
+ "re gon",
+ "reg on",
+ "Mart in",
+ "▁in con",
+ "▁inc on",
+ "▁attack ed",
+ "_{ -",
+ "_ {-",
+ "▁T ras",
+ "▁Tr as",
+ "▁Tra s",
+ "par ty",
+ "part y",
+ "ite it",
+ "▁s aint",
+ "▁sa int",
+ "▁sain t",
+ "rás ok",
+ "r ások",
+ "▁contain ers",
+ "▁container s",
+ "M o",
+ "▁S n",
+ "quant ity",
+ "▁r as",
+ "▁ra s",
+ "▁ ras",
+ "▁C anal",
+ "▁Can al",
+ "▁Ca nal",
+ "cc ion",
+ "c cion",
+ "uv o",
+ "u vo",
+ "▁i dx",
+ "▁id x",
+ "▁ idx",
+ "type name",
+ "typen ame",
+ "typ ename",
+ "▁R ugby",
+ "▁Se ems",
+ "▁See ms",
+ "▁trans mit",
+ "▁transm it",
+ "▁Pr äsident",
+ "з не",
+ "▁B aker",
+ "▁Ba ker",
+ "▁Bak er",
+ "in th",
+ "int h",
+ "i nth",
+ "▁tö bb",
+ "ver ein",
+ "vere in",
+ "▁espe cie",
+ "▁espec ie",
+ ", (",
+ "▁t éc",
+ "▁té c",
+ "▁W ITH",
+ "▁u nos",
+ "▁un os",
+ "▁uno s",
+ "▁ unos",
+ "▁polit ics",
+ "create Element",
+ "▁st ats",
+ "▁stat s",
+ "▁sta ts",
+ "▁ stats",
+ "▁T ennessee",
+ "▁Bedeut ung",
+ "▁S creen",
+ "▁Sc reen",
+ "▁ Screen",
+ "▁Stra ße",
+ "an ze",
+ "anz e",
+ "▁part ly",
+ "man uel",
+ "ol ation",
+ "ola tion",
+ "o lation",
+ "hor izontal",
+ "érie ure",
+ "érieur e",
+ "am pio",
+ "amp io",
+ "▁ст рук",
+ "▁ струк",
+ "We ight",
+ "La nd",
+ "L and",
+ "po ly",
+ "pol y",
+ "p oly",
+ "▁D ak",
+ "▁Da k",
+ "▁Ass ume",
+ "\". $",
+ "\" .$",
+ "▁c asi",
+ "▁cas i",
+ "▁ca si",
+ "▁g ross",
+ "▁gr oss",
+ "▁gro ss",
+ "▁gros s",
+ "▁ent ertain",
+ "▁enter tain",
+ "▁déc ada",
+ "'. $",
+ "' .$",
+ "en cer",
+ "ence r",
+ "enc er",
+ "▁guarante ed",
+ "▁guarantee d",
+ "]$ .",
+ "] $.",
+ "ли ся",
+ "▁accept able",
+ "ra ise",
+ "rai se",
+ "rais e",
+ "ir us",
+ "i rus",
+ "we it",
+ "wei t",
+ "▁А на",
+ "▁Ан а",
+ "▁h ills",
+ "▁hill s",
+ "ip age",
+ "i page",
+ "BI T",
+ "B IT",
+ "▁nu cle",
+ "▁nuc le",
+ "▁ut ilis",
+ "▁util is",
+ "CA A",
+ "C AA",
+ "ène s",
+ "èn es",
+ "è nes",
+ "▁Schwe iz",
+ "▁A A",
+ "▁ AA",
+ "ning er",
+ "n inger",
+ "▁b ands",
+ "▁band s",
+ "▁ban ds",
+ "▁t ender",
+ "▁te nder",
+ "▁ten der",
+ "▁tend er",
+ "so m",
+ "s om",
+ "W arning",
+ "▁B ischof",
+ "▁A rc",
+ "▁Ar c",
+ "▁W oman",
+ "▁Wo man",
+ "▁trans mission",
+ "▁transm ission",
+ "ч ни",
+ "is tre",
+ "ist re",
+ "istr e",
+ "i stre",
+ "B Y",
+ "▁S I",
+ "▁ SI",
+ "▁П ар",
+ "▁Па р",
+ "▁} ).",
+ "▁}) .",
+ "▁ }).",
+ "▁present a",
+ "▁pres enta",
+ "▁Re né",
+ "▁Ren é",
+ "▁happ iness",
+ "▁P unk",
+ "col s",
+ "co ls",
+ "c ols",
+ "▁Des de",
+ "рё х",
+ "▁м она",
+ "▁мо на",
+ "▁scr atch",
+ "▁t cp",
+ "▁ tcp",
+ "ête s",
+ "êt es",
+ "ê tes",
+ "it ated",
+ "ita ted",
+ "itat ed",
+ "itate d",
+ "▁dif eren",
+ "▁difer en",
+ "ge h",
+ "g eh",
+ "na hmen",
+ "nah men",
+ "nahme n",
+ "nahm en",
+ "П е",
+ "ck i",
+ "c ki",
+ "▁Te atro",
+ "▁Re member",
+ "▁Rem ember",
+ "▁f right",
+ "▁fr ight",
+ "▁Y am",
+ "▁Ya m",
+ "west ern",
+ "le ted",
+ "let ed",
+ "lete d",
+ "▁в стре",
+ "▁вс тре",
+ "▁telep ülés",
+ "зи н",
+ "з ин",
+ "▁Qu ant",
+ "▁ Quant",
+ "▁su pre",
+ "▁sup re",
+ "áj a",
+ "á ja",
+ "ді я",
+ "д ія",
+ "▁car rera",
+ "▁carre ra",
+ "kre t",
+ "kr et",
+ "k ret",
+ "par a",
+ "pa ra",
+ "p ara",
+ "▁S UM",
+ "▁SU M",
+ "▁ SUM",
+ "▁p it",
+ "▁pi t",
+ "▁ pit",
+ "ź dz",
+ "é o",
+ "ре ння",
+ "рен ня",
+ "▁C hor",
+ "▁Ch or",
+ "▁Cho r",
+ "▁vo ix",
+ "▁exec utive",
+ "▁execut ive",
+ "▁all erdings",
+ "May be",
+ "▁д ень",
+ "▁де нь",
+ "▁f lying",
+ "▁fl ying",
+ "▁fly ing",
+ "▁par liament",
+ "жда н",
+ "ж дан",
+ "▁f ram",
+ "▁fr am",
+ "▁fra m",
+ "▁ fram",
+ "▁жов т",
+ "▁u gly",
+ "▁бу ду",
+ "ig ny",
+ "ign y",
+ "\\| _{",
+ "\\ |_{",
+ "▁b itter",
+ "▁bit ter",
+ "sc e",
+ "s ce",
+ "▁p ole",
+ "▁po le",
+ "▁pol e",
+ "▁ pole",
+ "Ver lag",
+ "▁total ité",
+ "▁found ation",
+ "j t",
+ "▁s lice",
+ "▁sl ice",
+ "▁sli ce",
+ "▁ slice",
+ "if ique",
+ "ifi que",
+ "▁integr ate",
+ "▁integra te",
+ "st rij",
+ "str ij",
+ "▁asym pt",
+ "▁е му",
+ "▁pert urb",
+ "▁F low",
+ "▁Fl ow",
+ "▁Flo w",
+ "▁ Flow",
+ "jb oss",
+ "RI G",
+ "R IG",
+ "▁A less",
+ "▁Al ess",
+ "▁Ale ss",
+ "XX X",
+ "X XX",
+ "▁s umm",
+ "▁su mm",
+ "▁sum m",
+ "sql ite",
+ "▁che er",
+ "pr ob",
+ "pro b",
+ "p rob",
+ "▁G PU",
+ "▁GP U",
+ "zi ł",
+ "z ił",
+ "(* )",
+ "( *)",
+ "▁in duct",
+ "▁ind uct",
+ "▁indu ct",
+ "RA Y",
+ "bl att",
+ "bla tt",
+ "qu esta",
+ "que sta",
+ "quest a",
+ "ques ta",
+ "or u",
+ "o ru",
+ "▁In side",
+ "▁Ins ide",
+ "▁Mc G",
+ "▁N ep",
+ "▁Ne p",
+ "м п",
+ "▁in ve",
+ "▁inv e",
+ "▁An imal",
+ "▁Anim al",
+ "▁s ob",
+ "▁so b",
+ "▁ sob",
+ "ít ott",
+ "loy ment",
+ "▁b und",
+ "▁bu nd",
+ "▁ bund",
+ "St ation",
+ "Stat ion",
+ "▁B EGIN",
+ "▁part iellement",
+ "ig g",
+ "i gg",
+ "est ore",
+ "esto re",
+ "e store",
+ "▁co inc",
+ "▁coin c",
+ "▁Som mer",
+ "▁m d",
+ "▁ md",
+ "▁loc ked",
+ "▁lock ed",
+ "▁ locked",
+ "math char",
+ "ar ma",
+ "arm a",
+ "pe nt",
+ "pen t",
+ "p ent",
+ "ar ium",
+ "ari um",
+ "a rium",
+ "▁e ars",
+ "▁ear s",
+ "▁ ears",
+ "▁S ongs",
+ "▁Son gs",
+ "▁Song s",
+ "▁similar ly",
+ "▁liter ally",
+ "▁literal ly",
+ "▁in ches",
+ "▁inc hes",
+ "▁af fection",
+ "▁aff ection",
+ "▁affect ion",
+ "l p",
+ "▁con cluded",
+ "▁conclude d",
+ "▁му ніципалі",
+ "▁па мя",
+ "est aur",
+ "esta ur",
+ "▁J osh",
+ "▁Jo sh",
+ "▁Jos h",
+ "▁F ritz",
+ "▁Fr itz",
+ "▁Fri tz",
+ "DB C",
+ "D BC",
+ "д ён",
+ "pos a",
+ "po sa",
+ "p osa",
+ "▁gold en",
+ "▁gol den",
+ "▁p c",
+ "▁ pc",
+ "▁com te",
+ "▁Z iel",
+ "▁Zie l",
+ "▁prés ente",
+ "▁présent e",
+ "mar ks",
+ "mark s",
+ "m arks",
+ "ig neur",
+ "ign eur",
+ "igne ur",
+ "▁D rive",
+ "▁Dr ive",
+ "▁neg lect",
+ "▁roz p",
+ "▁F ive",
+ "sp aces",
+ "space s",
+ "s paces",
+ "▁M edi",
+ "▁Me di",
+ "▁Med i",
+ "▁ex isted",
+ "▁exist ed",
+ "▁existe d",
+ "▁by ła",
+ "▁był a",
+ "дж и",
+ "д жи",
+ "▁fr ente",
+ "т ник",
+ "od d",
+ "o dd",
+ "▁answer ing",
+ "bi an",
+ "bia n",
+ "b ian",
+ "▁E ugen",
+ "▁Eu gen",
+ "▁Eug en",
+ "▁Public ations",
+ "▁Pub lications",
+ "▁D ia",
+ "▁Di a",
+ "l á",
+ "▁' _",
+ "▁ '_",
+ "▁rec uper",
+ "ом у",
+ "о му",
+ "▁App end",
+ "▁Ap pend",
+ "▁ Append",
+ "ob ar",
+ "oba r",
+ "o bar",
+ "▁employ ees",
+ "▁employee s",
+ "▁comp ens",
+ "eme tery",
+ "emet ery",
+ "▁э лект",
+ "MO N",
+ "M ON",
+ "ol in",
+ "oli n",
+ "o lin",
+ "▁histor ic",
+ "hi s",
+ "h is",
+ "ą d",
+ "n m",
+ "▁G oth",
+ "▁Go th",
+ "▁Got h",
+ "▁st ress",
+ "▁str ess",
+ "▁stre ss",
+ "▁parte cip",
+ "▁A w",
+ "▁s ar",
+ "▁sa r",
+ "▁h u",
+ "▁ hu",
+ "▁mat plotlib",
+ "▁M yst",
+ "▁My st",
+ "▁Mys t",
+ "() ;`",
+ "(); `",
+ "( );`",
+ "sch ein",
+ "sc hein",
+ "sche in",
+ "Long rightarrow",
+ "▁р я",
+ "▁ ря",
+ "▁Is ra",
+ "[ ^",
+ "no u",
+ "n ou",
+ "▁syn d",
+ "▁sy nd",
+ "work ing",
+ "wor king",
+ "▁N ation",
+ "▁Na tion",
+ "▁Nat ion",
+ "▁P ent",
+ "▁Pe nt",
+ "▁Pen t",
+ "▁k lass",
+ "▁kl ass",
+ "▁klas s",
+ "▁applic able",
+ "▁D iam",
+ "▁Di am",
+ "▁Dia m",
+ "▁bras ile",
+ "▁p ac",
+ "▁pa c",
+ "▁He ight",
+ "▁ Height",
+ "P ut",
+ "▁int ro",
+ "▁intr o",
+ "▁ intro",
+ "▁unus ual",
+ "na s",
+ "n as",
+ "▁Geb äude",
+ "▁be am",
+ "▁R ect",
+ "▁Re ct",
+ "▁Rec t",
+ "▁ Rect",
+ "▁Prim era",
+ "▁Prime ra",
+ "▁h aut",
+ "▁ha ut",
+ "▁t rait",
+ "▁tr ait",
+ "▁tra it",
+ "prü ft",
+ "in ación",
+ "ina ción",
+ "▁configuration s",
+ "▁configur ations",
+ "▁g ilt",
+ "▁gi lt",
+ "▁territ oire",
+ "he z",
+ "h ez",
+ "▁al te",
+ "▁alt e",
+ "rel ative",
+ "Ex cel",
+ "▁W right",
+ "G V",
+ "по ли",
+ "пол и",
+ "Qu ant",
+ "▁ga uge",
+ "▁gau ge",
+ "▁multi ply",
+ "▁multip ly",
+ "AS S",
+ "A SS",
+ "ствен но",
+ "ан у",
+ "а ну",
+ "▁j eden",
+ "▁je den",
+ "▁jed en",
+ "▁liter ary",
+ "▁D ro",
+ "▁Dr o",
+ "▁adv ise",
+ "▁advis e",
+ "it zen",
+ "itz en",
+ "▁dis ag",
+ "web site",
+ "▁д ія",
+ "▁ді я",
+ "▁ дія",
+ "▁ob server",
+ "▁obser ver",
+ "▁observ er",
+ "▁observe r",
+ "▁janu ár",
+ "v ě",
+ "ku p",
+ "k up",
+ "▁S es",
+ "▁Se s",
+ "▁woj ew",
+ "▁st ages",
+ "▁stage s",
+ "▁sta ges",
+ "▁stag es",
+ "▁вре мени",
+ "▁време ни",
+ "łu ż",
+ "но с",
+ "н ос",
+ "Down load",
+ "ip o",
+ "i po",
+ "▁g raf",
+ "▁gr af",
+ "▁gra f",
+ "▁ро бо",
+ "▁Nik ol",
+ "▁Ni kol",
+ "▁f ic",
+ "▁fi c",
+ "▁ fic",
+ "▁jo ining",
+ "▁join ing",
+ "▁divers os",
+ "▁LI KE",
+ "▁F itz",
+ "▁d imin",
+ "▁di min",
+ "▁dim in",
+ "▁dist rib",
+ "Sa m",
+ "S am",
+ "ko z",
+ "k oz",
+ "▁al phabet",
+ "▁alpha bet",
+ "os er",
+ "ose r",
+ "o ser",
+ "OU R",
+ "O UR",
+ "uk a",
+ "u ka",
+ "ка я",
+ "▁ste el",
+ "▁` --",
+ "▁`- -",
+ "▁t ener",
+ "▁te ner",
+ "▁ten er",
+ "mar ker",
+ "mark er",
+ "▁He aven",
+ "new command",
+ "▁prison ers",
+ "▁prisoner s",
+ "▁K night",
+ "▁Kn ight",
+ "▁present s",
+ "▁pres ents",
+ "▁qu esti",
+ "▁quest i",
+ "▁tr ains",
+ "▁tra ins",
+ "▁train s",
+ "op era",
+ "ope ra",
+ "oper a",
+ "▁Li near",
+ "▁Lin ear",
+ "▁Line ar",
+ "▁ Linear",
+ "▁M E",
+ "▁ ME",
+ "▁B uc",
+ "▁Bu c",
+ "Le g",
+ "L eg",
+ "▁ag ua",
+ "▁ agua",
+ "▁Gr iff",
+ "ol g",
+ "o lg",
+ "ds t",
+ "d st",
+ ". \r",
+ "▁person es",
+ "▁pers ones",
+ "▁persone s",
+ "Ma l",
+ "M al",
+ "бе ре",
+ "бер е",
+ "б ере",
+ "fol ge",
+ "folg e",
+ "▁ac ab",
+ "ct u",
+ "c tu",
+ "pt ic",
+ "▁N avigation",
+ "▁ Navigation",
+ "R uss",
+ "га ль",
+ "г аль",
+ "▁F ul",
+ "▁Fu l",
+ "▁ма є",
+ "чна я",
+ "ч ная",
+ "wn er",
+ "w ner",
+ "con tra",
+ "cont ra",
+ "contr a",
+ "▁jou eur",
+ "▁joue ur",
+ "▁J ess",
+ "▁Je ss",
+ "▁Jes s",
+ "▁re new",
+ "▁ren ew",
+ "▁l ap",
+ "▁la p",
+ "▁ lap",
+ "▁cas ting",
+ "▁cast ing",
+ "ga l",
+ "g al",
+ "▁tém atu",
+ "▁на зыва",
+ "за х",
+ "ч не",
+ ")- \\",
+ ") -\\",
+ "▁ча сто",
+ "▁час то",
+ "▁част о",
+ "}$ -",
+ "} $-",
+ "▁l icz",
+ "▁li cz",
+ "▁lic z",
+ "▁e mot",
+ "▁em ot",
+ "ha rm",
+ "har m",
+ "h arm",
+ "▁occasion ally",
+ "▁hor ror",
+ "▁ho rror",
+ "ea st",
+ "e ast",
+ "▁pr inter",
+ "▁print er",
+ "▁prin ter",
+ "ar an",
+ "ara n",
+ "a ran",
+ "▁Miss iss",
+ "fol low",
+ "f ollow",
+ "▁Bar ry",
+ "▁investig ate",
+ "go w",
+ "g ow",
+ "▁Amer icans",
+ "▁American s",
+ "▁America ns",
+ "S ince",
+ "▁від о",
+ "▁ві до",
+ "▁re un",
+ "os ci",
+ "osc i",
+ "o sci",
+ "▁Ch apter",
+ "▁Chap ter",
+ "▁b ay",
+ "▁ba y",
+ "▁ bay",
+ "ро ме",
+ "ром е",
+ "et he",
+ "eth e",
+ "e the",
+ "éd ie",
+ "é die",
+ "com ot",
+ "co mot",
+ "como t",
+ "▁miejs cowo",
+ "▁stud ierte",
+ "▁studi erte",
+ "ou vert",
+ "ouv ert",
+ "ouve rt",
+ "ouver t",
+ "▁к ур",
+ "▁ку р",
+ "▁ кур",
+ "▁DE SC",
+ "▁DES C",
+ "▁touch ed",
+ "▁tou ched",
+ "▁Jer ry",
+ "ue se",
+ "ues e",
+ "u ese",
+ "ли ще",
+ "auth entication",
+ "authentic ation",
+ "▁col le",
+ "▁co lle",
+ "▁coll e",
+ "he art",
+ "▁reg iment",
+ "▁regime nt",
+ "cri bed",
+ "cribe d",
+ "▁Бо ль",
+ "▁про ис",
+ "ce ae",
+ "▁mass es",
+ "▁sc rolling",
+ "▁scroll ing",
+ "us to",
+ "ust o",
+ "u sto",
+ "S W",
+ "ov at",
+ "ova t",
+ "o vat",
+ "▁gr âce",
+ "▁Архи в",
+ "▁Се вер",
+ "av ait",
+ "ava it",
+ "▁Marsh all",
+ "▁Mars hall",
+ "▁Hash Map",
+ "▁ HashMap",
+ "ac on",
+ "aco n",
+ "a con",
+ "ück en",
+ "ücke n",
+ "ü cken",
+ "[] )",
+ "[ ])",
+ "▁ev angel",
+ "et zung",
+ "etz ung",
+ "tt emberg",
+ "st ers",
+ "ste rs",
+ "ster s",
+ "s ters",
+ "T M",
+ "▁ли тера",
+ "qu ot",
+ "Pr ed",
+ "Pre d",
+ "P red",
+ "▁w erk",
+ "▁wer k",
+ "▁ werk",
+ "▁ha ber",
+ "▁hab er",
+ "▁habe r",
+ "la va",
+ "lav a",
+ "l ava",
+ "vo us",
+ "v ous",
+ "▁L ate",
+ "▁La te",
+ "▁Lat e",
+ "cy cle",
+ "cyc le",
+ "c ycle",
+ "ти рова",
+ "▁про ду",
+ "▁прод у",
+ "▁pop ulations",
+ "▁population s",
+ "▁popul ations",
+ "▁Y an",
+ "▁Ya n",
+ "Pre fix",
+ "P refix",
+ "actér istiques",
+ "+ '",
+ "() `](",
+ "()` ](",
+ "▁Л ь",
+ "фи ль",
+ "▁жи зни",
+ "ft p",
+ "f tp",
+ "▁все х",
+ "▁g dzie",
+ "▁v idea",
+ "▁vid ea",
+ "▁vide a",
+ "oa uth",
+ "o auth",
+ "▁p id",
+ "▁pi d",
+ "▁ pid",
+ "ů m",
+ "▁p esso",
+ "▁pes so",
+ "▁track ing",
+ "▁trac king",
+ "iz in",
+ "izi n",
+ "i zin",
+ "▁Mor ris",
+ "щи й",
+ "▁Provin z",
+ "▁M itte",
+ "▁Mit te",
+ "▁Mi tte",
+ "▁Mitt e",
+ "▁artific ial",
+ "bráz ky",
+ "▁до сти",
+ "▁rest ored",
+ "▁restore d",
+ "▁resto red",
+ "▁commun icate",
+ "▁communic ate",
+ "ag it",
+ "agi t",
+ "a git",
+ "Rec ogn",
+ "▁l on",
+ "▁lo n",
+ "▁ lon",
+ "▁за ня",
+ "▁зан я",
+ "▁Arg ument",
+ "▁ Argument",
+ "fl ush",
+ "flu sh",
+ "ма на",
+ "ман а",
+ "м ана",
+ "sec onds",
+ "second s",
+ "U C",
+ "▁R uth",
+ "▁Ru th",
+ "▁t ub",
+ "▁tu b",
+ "▁B ret",
+ "▁Br et",
+ "▁Bre t",
+ "▁P ere",
+ "▁Per e",
+ "▁Pe re",
+ "▁respons ibility",
+ "ńcz y",
+ "ń czy",
+ "▁environment s",
+ "▁environ ments",
+ "ke e",
+ "k ee",
+ "▁g root",
+ "▁gr oot",
+ "▁gro ot",
+ "▁pain ted",
+ "▁paint ed",
+ "▁Éd itions",
+ "cp y",
+ "c py",
+ "ár t",
+ "á rt",
+ "lich keit",
+ "ar da",
+ "ard a",
+ "B atch",
+ "▁Leop old",
+ "re ason",
+ "rea son",
+ "reas on",
+ "n oreferrer",
+ "se ns",
+ "sen s",
+ "s ens",
+ "▁ro cks",
+ "▁rock s",
+ "▁Hit ler",
+ "ла т",
+ "л ат",
+ "▁qu oted",
+ "▁quot ed",
+ "▁quote d",
+ "▁ко лле",
+ "▁у ров",
+ "ba g",
+ "b ag",
+ ".\" )",
+ ". \")",
+ "▁M L",
+ "▁ ML",
+ "▁kom t",
+ "▁ko mt",
+ "▁[ _",
+ "▁ [_",
+ "▁spect ral",
+ "ed o",
+ "e do",
+ "▁in sieme",
+ "▁suffer ing",
+ "▁suff ering",
+ "sl ider",
+ "slide r",
+ "▁Kenn edy",
+ "ol ate",
+ "ola te",
+ "o late",
+ "▁P atri",
+ "▁Pa tri",
+ "▁Pat ri",
+ "зи и",
+ "O H",
+ "▁те а",
+ "▁пра ва",
+ "▁прав а",
+ "ма х",
+ "re write",
+ "rew rite",
+ "r ewrite",
+ "▁Eins atz",
+ "ex ternal",
+ "ext ernal",
+ "hol ds",
+ "hold s",
+ "h olds",
+ "▁P laces",
+ "▁Pl aces",
+ "▁Pla ces",
+ "▁Place s",
+ "at ype",
+ "aty pe",
+ "a type",
+ "▁vul ner",
+ "▁abandon ed",
+ "Or igin",
+ "Ori gin",
+ "▁max imal",
+ "▁maxim al",
+ "AA AA",
+ "▁Base ball",
+ "▁C lose",
+ "▁Cl ose",
+ "▁Clo se",
+ "▁ Close",
+ "▁pa inter",
+ "▁pain ter",
+ "▁paint er",
+ "▁assign ing",
+ "N B",
+ "bl ast",
+ "bla st",
+ "b last",
+ "▁K ünstler",
+ ")] (",
+ ") ](",
+ "fa ch",
+ "fac h",
+ "f ach",
+ "▁Const antin",
+ "▁Constant in",
+ "ok es",
+ "oke s",
+ "o kes",
+ "▁no body",
+ "▁nob ody",
+ "▁subt ract",
+ "▁fos se",
+ "▁foss e",
+ "▁cert ific",
+ "▁m use",
+ "▁mus e",
+ "▁mu se",
+ "/) ,",
+ "/ ),",
+ "▁Pro fil",
+ "▁Prof il",
+ "▁pro xim",
+ "▁Jer usalem",
+ "▁simp licity",
+ "▁simpl icity",
+ "▁w sz",
+ "▁ws z",
+ "NUM BER",
+ "utt avia",
+ "U ITableView",
+ "ich ter",
+ "icht er",
+ "ichte r",
+ "i chter",
+ "жа н",
+ "ж ан",
+ "▁L av",
+ "▁La v",
+ "it chen",
+ "itch en",
+ "▁Ч ем",
+ "▁Че м",
+ "T u",
+ "▁ge om",
+ "▁zv uky",
+ "▁Sur vey",
+ "AN CE",
+ "▁enc rypted",
+ "▁encrypt ed",
+ "pr of",
+ "pro f",
+ "▁d are",
+ "▁da re",
+ "▁dar e",
+ "▁L oren",
+ "▁Lo ren",
+ "▁Lor en",
+ "т в",
+ "▁А лек",
+ "▁Ал ек",
+ "▁comput ers",
+ "▁computer s",
+ "▁compute rs",
+ "▁expect ation",
+ "▁substant ial",
+ "▁Д ми",
+ "▁` {",
+ "▁д ра",
+ "▁др а",
+ "▁ дра",
+ "ub ble",
+ "▁per forms",
+ "▁perform s",
+ "▁Kr ieg",
+ "▁Krie g",
+ "▁in coming",
+ "▁inc oming",
+ "▁Class ification",
+ "Web View",
+ "▁epis odes",
+ "▁episode s",
+ "ap per",
+ "app er",
+ "appe r",
+ "a pper",
+ "äu fig",
+ "▁gi ov",
+ "▁De part",
+ "▁Dep art",
+ "бо ра",
+ "бор а",
+ "ed ly",
+ "os pod",
+ "osp od",
+ "▁p tr",
+ "▁pt r",
+ "▁ ptr",
+ "▁d átum",
+ "▁est imation",
+ "▁estim ation",
+ "ic ole",
+ "ico le",
+ "icol e",
+ "i cole",
+ "▁- ---",
+ "▁-- --",
+ "▁--- -",
+ "▁ ----",
+ "▁prin ces",
+ "▁prince s",
+ "HE AD",
+ "▁diff usion",
+ "▁diffus ion",
+ "▁d rie",
+ "▁dr ie",
+ "▁dri e",
+ "▁A da",
+ "▁Ad a",
+ "ни це",
+ "ниц е",
+ "ng inx",
+ "n ginx",
+ "sh al",
+ "sha l",
+ "s hal",
+ "▁febru ari",
+ "▁T at",
+ "▁Ta t",
+ "lo oking",
+ "look ing",
+ "ku nd",
+ "k und",
+ "▁De an",
+ "m ongodb",
+ "вши х",
+ "в ших",
+ "▁A ur",
+ "▁Au r",
+ "▁Fl ora",
+ "▁Flor a",
+ "▁Flo ra",
+ "▁Stud ios",
+ "▁Studio s",
+ "ци је",
+ "ei l",
+ "e il",
+ "Inst all",
+ "▁f ranch",
+ "▁fr anch",
+ "▁fran ch",
+ "▁franc h",
+ "▁H MS",
+ "▁pract ices",
+ "▁practice s",
+ "le j",
+ "l ej",
+ "da le",
+ "dal e",
+ "d ale",
+ "▁po ste",
+ "▁pos te",
+ "▁post e",
+ "▁H els",
+ "▁He ls",
+ "▁Hel s",
+ "▁reli able",
+ "źdz ier",
+ "▁ver se",
+ "▁vers e",
+ "▁ verse",
+ "er meister",
+ "erme ister",
+ "▁qu it",
+ "▁qui t",
+ "▁q uit",
+ "▁ quit",
+ "ét ico",
+ "il is",
+ "ili s",
+ "i lis",
+ "ed or",
+ "edo r",
+ "e dor",
+ "▁Cult ural",
+ "▁Cultura l",
+ "дж е",
+ "д же",
+ "▁li ked",
+ "▁like d",
+ "▁lik ed",
+ "▁m ongodb",
+ "▁mongo db",
+ "▁ mongodb",
+ "▁Broad way",
+ "▁I R",
+ "▁ IR",
+ "es zt",
+ "esz t",
+ "ho v",
+ "h ov",
+ "▁m íst",
+ "▁mí st",
+ "re iche",
+ "reich e",
+ "rei che",
+ "▁k B",
+ "ст ом",
+ "сто м",
+ "с том",
+ "▁SQL ite",
+ "▁tor neo",
+ "\\ .",
+ "Or d",
+ "O rd",
+ "▁Admin istration",
+ "▁Administr ation",
+ "▁з да",
+ "▁ зда",
+ "▁H inter",
+ "▁Hin ter",
+ "▁V ia",
+ "▁Vi a",
+ "Dec imal",
+ "or ious",
+ "ori ous",
+ "orio us",
+ "▁nécess aire",
+ "w x",
+ "▁t ej",
+ "▁te j",
+ "▁t ema",
+ "▁te ma",
+ "▁tem a",
+ "O brázky",
+ "ри те",
+ "рит е",
+ "▁build s",
+ "▁l aten",
+ "▁la ten",
+ "▁lat en",
+ "▁late n",
+ "▁г г",
+ "Vis ibility",
+ "lä u",
+ "l äu",
+ "▁se chs",
+ "▁sec hs",
+ "▁лу ч",
+ "ce ra",
+ "cer a",
+ "c era",
+ "Co uld",
+ "C ould",
+ "▁tra ject",
+ "}} ^{",
+ "}}^ {",
+ "} }^{",
+ "▁Jap on",
+ "▁Ja pon",
+ "an other",
+ "ano ther",
+ "I K",
+ "▁belong ing",
+ "▁fac ilities",
+ "▁facil ities",
+ "▁D aily",
+ "▁Da ily",
+ "▁de ce",
+ "▁dec e",
+ "int ro",
+ "▁слу ча",
+ "Name space",
+ "Names pace",
+ "▁B ak",
+ "▁Ba k",
+ "loc ale",
+ "local e",
+ "U G",
+ "=$ {",
+ "= ${",
+ "▁comp añ",
+ "ją c",
+ "j ąc",
+ "▁ar ithmetic",
+ "fo rum",
+ "for um",
+ "f orum",
+ "▁por ta",
+ "▁port a",
+ "on k",
+ "▁g ender",
+ "▁ge nder",
+ "▁gen der",
+ "▁ gender",
+ "▁expect s",
+ "б ка",
+ "▁n ak",
+ "▁na k",
+ "▁ nak",
+ "▁G race",
+ "▁Gr ace",
+ "▁Gra ce",
+ "▁st ro",
+ "▁str o",
+ "ivid ual",
+ "▁C OM",
+ "▁CO M",
+ "▁ COM",
+ "▁F arm",
+ "▁Fa rm",
+ "▁Far m",
+ "▁c anton",
+ "▁can ton",
+ "▁cant on",
+ "то му",
+ "том у",
+ "т ому",
+ "java x",
+ "jav ax",
+ "се й",
+ "с ей",
+ "▁brief ly",
+ "Fa ce",
+ "F ace",
+ "rot ate",
+ "const ant",
+ "▁g allery",
+ "▁gall ery",
+ "ast ro",
+ "astr o",
+ "all ery",
+ "alle ry",
+ "aller y",
+ "▁D J",
+ "char ge",
+ "charg e",
+ "ходи ть",
+ "ходит ь",
+ "C ent",
+ "\\\" ,",
+ "\\ \",",
+ "▁d onna",
+ "▁don na",
+ "▁donn a",
+ "ar ca",
+ "arc a",
+ "la de",
+ "lad e",
+ "l ade",
+ "zi n",
+ "z in",
+ "▁N ed",
+ "▁Ne d",
+ "▁host ing",
+ "▁hos ting",
+ "id or",
+ "ido r",
+ "i dor",
+ "it ative",
+ "itat ive",
+ "ig s",
+ "i gs",
+ "▁п ря",
+ "▁пр я",
+ "▁t icket",
+ "▁tick et",
+ "▁ti cket",
+ "▁stud ying",
+ "▁study ing",
+ "▁des igner",
+ "▁design er",
+ "lap sed",
+ "lapse d",
+ "laps ed",
+ "l apsed",
+ "▁la at",
+ "▁d ix",
+ "▁di x",
+ "▁integr ated",
+ "▁integrate d",
+ "▁integra ted",
+ "▁in formed",
+ "▁inform ed",
+ "▁be have",
+ "▁beh ave",
+ "▁behav e",
+ "▁la bour",
+ "▁lab our",
+ "est ellt",
+ "cal endar",
+ "▁k illing",
+ "▁kil ling",
+ "▁kill ing",
+ "▁tw itter",
+ "▁ twitter",
+ "ia e",
+ "i ae",
+ "▁histor ique",
+ "DE FAULT",
+ "ia ła",
+ "iał a",
+ "i ała",
+ "▁theoret ical",
+ "▁un ders",
+ "▁und ers",
+ "▁under s",
+ "ля ет",
+ "at an",
+ "ata n",
+ "a tan",
+ "▁s urname",
+ "▁sur name",
+ "▁inter cept",
+ "гла сно",
+ "▁општи ни",
+ "▁t ired",
+ "▁tir ed",
+ "▁ti red",
+ "▁B eth",
+ "▁Be th",
+ "▁Bet h",
+ "▁ад министратив",
+ "L i",
+ "▁Т ур",
+ "▁Ту р",
+ "▁Sc anner",
+ "▁S tern",
+ "▁St ern",
+ "▁Ste rn",
+ "▁Ster n",
+ "▁вме сте",
+ "▁report ing",
+ "▁s ull",
+ "▁su ll",
+ "▁sul l",
+ "ци ей",
+ "ber ts",
+ "bert s",
+ "og onal",
+ "ogo nal",
+ "ő k",
+ "▁i psum",
+ "▁ip sum",
+ "▁seu lement",
+ "▁seul ement",
+ "▁seule ment",
+ "▁Se iten",
+ "▁Seit en",
+ "▁Seite n",
+ "word press",
+ "▁fe aturing",
+ "ist ischen",
+ "isti schen",
+ "istische n",
+ "ju b",
+ "j ub",
+ "▁é tr",
+ "▁ét r",
+ "▁ étr",
+ "▁t ea",
+ "▁te a",
+ "▁adapt ed",
+ "▁sc ales",
+ "▁scale s",
+ "▁scal es",
+ "▁n an",
+ "▁na n",
+ "▁ nan",
+ "get Value",
+ "▁Bl ues",
+ "▁Blue s",
+ "ac les",
+ "acle s",
+ "a cles",
+ "▁st ati",
+ "▁stat i",
+ "▁sta ti",
+ "▁ent itled",
+ "▁R alph",
+ "gra vity",
+ "▁entre pr",
+ "któ ber",
+ "li mat",
+ "lim at",
+ "l imat",
+ "li s",
+ "l is",
+ "De mo",
+ "D emo",
+ "re lation",
+ "rel ation",
+ "▁n ep",
+ "▁ne p",
+ "pro wad",
+ "it is",
+ "iti s",
+ "i tis",
+ "▁p up",
+ "▁pu p",
+ "neh mer",
+ "nehm er",
+ "▁disapp oint",
+ "▁et was",
+ "▁etwa s",
+ "an non",
+ "ann on",
+ "anno n",
+ "▁appro ved",
+ "▁cl ever",
+ "▁cle ver",
+ "Lo ading",
+ "Load ing",
+ "▁ver z",
+ "▁ve rz",
+ "res se",
+ "ress e",
+ "r esse",
+ "▁insp ir",
+ "▁sam pling",
+ "▁B ek",
+ "▁Be k",
+ "}) $.",
+ "})$ .",
+ "} )$.",
+ "▁г рома",
+ "▁spe cie",
+ "▁spec ie",
+ "▁re pub",
+ "▁rep ub",
+ "▁lo ader",
+ "▁load er",
+ "▁ loader",
+ "▁e rf",
+ "▁er f",
+ "▁should er",
+ "ra is",
+ "rai s",
+ "r ais",
+ "▁ма те",
+ "▁мат е",
+ "▁Mon th",
+ "▁Mont h",
+ "▁Mo nth",
+ "▁ Month",
+ "Sc ene",
+ "▁block ing",
+ "▁o cean",
+ "ge ben",
+ "geb en",
+ "g eben",
+ "▁Kil ometer",
+ "▁b edeut",
+ "▁M ix",
+ "▁Mi x",
+ "fm t",
+ "f mt",
+ "▁Nor weg",
+ "▁ID s",
+ "par allel",
+ "▁ant icip",
+ "▁anti cip",
+ "▁re vis",
+ "▁rev is",
+ "ха н",
+ "х ан",
+ "▁с вет",
+ "▁све т",
+ "CA SE",
+ "C ASE",
+ "▁f ührt",
+ "▁führ t",
+ "▁ führt",
+ "▁at omic",
+ "▁atom ic",
+ "▁ atomic",
+ "▁dark ness",
+ "▁Fußball spieler",
+ "▁Ж и",
+ "quis ition",
+ "▁S ieg",
+ "▁Sie g",
+ "▁Si eg",
+ "C irc",
+ "▁c ientí",
+ "ne lle",
+ "nel le",
+ "nell e",
+ "n elle",
+ "SH A",
+ "S HA",
+ "▁u rb",
+ "▁ur b",
+ "▁ urb",
+ "▁k si",
+ "leq slant",
+ "▁ф рон",
+ "▁de fect",
+ "▁def ect",
+ "▁defe ct",
+ "▁r á",
+ "▁ rá",
+ "▁strong er",
+ "▁p ł",
+ "▁commun ities",
+ "ни на",
+ "нин а",
+ "en as",
+ "ena s",
+ "e nas",
+ "ienne nt",
+ "ienn ent",
+ "▁safe ly",
+ "▁saf ely",
+ "▁т я",
+ "▁ тя",
+ "▁ben chmark",
+ "▁Bra un",
+ "method s",
+ "arg ument",
+ "vo s",
+ "v os",
+ "ob ox",
+ "o box",
+ "ро ви",
+ "ров и",
+ "р ови",
+ "▁recher che",
+ "m n",
+ "▁br ings",
+ "▁bring s",
+ "m achine",
+ "CE SS",
+ "CES S",
+ "host s",
+ "hos ts",
+ "▁N Y",
+ "Aut ow",
+ "Auto w",
+ "▁сов ремен",
+ "▁G ary",
+ "▁Gar y",
+ "▁Ga ry",
+ "▁s ensor",
+ "▁sens or",
+ "▁document ed",
+ "▁pr endre",
+ "▁prend re",
+ "▁pe er",
+ "en ix",
+ "eni x",
+ "ha i",
+ "h ai",
+ "ar be",
+ "цен т",
+ "ц ент",
+ "_ (",
+ "▁U RI",
+ "▁ URI",
+ "ев а",
+ "е ва",
+ "▁Re gie",
+ "▁Reg ie",
+ "▁Mon ument",
+ "▁onder werp",
+ "B ag",
+ "ti t",
+ "t it",
+ "▁st ir",
+ "▁n erv",
+ "▁ne rv",
+ "▁ner v",
+ "стор ія",
+ "▁s ov",
+ "▁so v",
+ "▁writ ers",
+ "▁write rs",
+ "▁writer s",
+ "▁sort s",
+ "▁sor ts",
+ "ab solute",
+ "▁difficult ies",
+ "▁par lament",
+ "▁parl ament",
+ "▁IE numerable",
+ "▁dis sol",
+ "▁diss ol",
+ "▁CH ECK",
+ "ar ina",
+ "ari na",
+ "arin a",
+ "in burgh",
+ "D M",
+ "▁e ind",
+ "▁ein d",
+ "▁bud get",
+ "▁cert ains",
+ "▁certain s",
+ "▁för sta",
+ "▁först a",
+ "an ja",
+ "a nja",
+ "▁го дов",
+ "▁год ов",
+ "▁т ек",
+ "▁те к",
+ "▁ тек",
+ "▁D uch",
+ "▁Du ch",
+ "▁Duc h",
+ "gu i",
+ "g ui",
+ "▁Te ams",
+ "▁Team s",
+ "▁мно ги",
+ "Mar ie",
+ "Ma rie",
+ "M arie",
+ "In tegr",
+ "Int egr",
+ "Thread Pool",
+ "ru st",
+ "rus t",
+ "r ust",
+ "í k",
+ "% \"",
+ "en f",
+ "sp l",
+ "s pl",
+ "▁be gun",
+ "▁beg un",
+ "lo u",
+ "l ou",
+ "▁Rewrite Rule",
+ "tu ple",
+ "ane ous",
+ "▁mar ine",
+ "▁mari ne",
+ "▁ marine",
+ "at tan",
+ "att an",
+ "atta n",
+ "ik al",
+ "ika l",
+ "i kal",
+ "▁gradu ated",
+ "il lé",
+ "ill é",
+ "▁про ве",
+ "▁пров е",
+ "▁пр ове",
+ "▁Р оз",
+ "▁Ро з",
+ "', \r",
+ "' ,\r",
+ "▁Pf arr",
+ "▁n ivel",
+ "▁ni vel",
+ "▁пра цю",
+ "mus ic",
+ "▁set Timeout",
+ "ER S",
+ "E RS",
+ "▁E rik",
+ "▁Er ik",
+ "pi t",
+ "p it",
+ "▁Х ро",
+ "▁p ił",
+ "▁pi ł",
+ "▁p eri",
+ "▁per i",
+ "▁pe ri",
+ "до к",
+ "д ок",
+ "us zt",
+ "usz t",
+ "▁B ear",
+ "▁Be ar",
+ "Class Name",
+ "▁Par lament",
+ "▁a ix",
+ "▁ai x",
+ "▁inv ited",
+ "▁P ATH",
+ "▁PA TH",
+ "▁ PATH",
+ "xt er",
+ "x ter",
+ "▁R ace",
+ "▁Ra ce",
+ "▁h echo",
+ "▁he cho",
+ "▁T ower",
+ "▁To wer",
+ "▁Tow er",
+ "▁u tf",
+ "▁ut f",
+ "▁ utf",
+ "act ly",
+ "▁бу де",
+ "▁ang les",
+ "▁angle s",
+ "▁ angles",
+ "ня я",
+ "ouv elles",
+ "ouve lles",
+ "ouvel les",
+ "ouvelle s",
+ "▁cl imate",
+ "▁cli mate",
+ "▁clim ate",
+ "▁sing ing",
+ "▁sin ging",
+ "▁navig ate",
+ ">' ;",
+ "> ';",
+ "ad ows",
+ "ado ws",
+ "adow s",
+ "▁l eta",
+ "▁le ta",
+ "▁let a",
+ "▁S itz",
+ "▁Si tz",
+ "▁Sit z",
+ "▁part itions",
+ "▁partition s",
+ "▁d ock",
+ "▁do ck",
+ "▁doc k",
+ "▁ż y",
+ "▁ ży",
+ "▁alloc ate",
+ "▁benef its",
+ "▁benefit s",
+ "▁n ieder",
+ "▁nie der",
+ "▁ni eder",
+ "xp ath",
+ "x path",
+ "me ck",
+ "äl le",
+ "äll e",
+ "ä lle",
+ "▁cou pling",
+ "▁coup ling",
+ "жи л",
+ "ж ил",
+ "For Key",
+ "ar gent",
+ "arg ent",
+ "cl ou",
+ "clo u",
+ "c lou",
+ "▁instru ments",
+ "▁instrument s",
+ "▁ent hus",
+ "▁m ég",
+ "▁mé g",
+ "▁Па в",
+ "▁R ach",
+ "▁Ra ch",
+ "-- ---",
+ "---- -",
+ "--- --",
+ "- ----",
+ "▁API s",
+ "▁AP Is",
+ "▁V ier",
+ "▁Vi er",
+ "▁Vie r",
+ "C md",
+ "it ore",
+ "ito re",
+ "itor e",
+ "▁C uba",
+ "▁Cu ba",
+ "▁Cub a",
+ "▁dátum mal",
+ "▁embed ding",
+ "std io",
+ "▁Gil bert",
+ "▁ge prüft",
+ "▁st ating",
+ "▁stat ing",
+ "▁sta ting",
+ "▁stati ng",
+ "▁trigger s",
+ "▁trig gers",
+ "+ =",
+ "▁spé cial",
+ "▁del iber",
+ "▁deli ber",
+ "ми н",
+ "м ин",
+ "Pro du",
+ "Pr odu",
+ "P rodu",
+ "▁St ati",
+ "▁Stat i",
+ "▁Sta ti",
+ "▁z us",
+ "▁zu s",
+ "kt ionen",
+ "ktion en",
+ "Dispatch er",
+ "id al",
+ "ida l",
+ "i dal",
+ "▁L P",
+ "▁ LP",
+ "op tera",
+ "opt era",
+ "opter a",
+ "▁e star",
+ "▁est ar",
+ "▁es tar",
+ "▁esta r",
+ "▁зна чи",
+ "с мо",
+ "ous es",
+ "ouse s",
+ "o uses",
+ "eng ono",
+ "engo no",
+ "▁W PF",
+ "pub lish",
+ "▁t eor",
+ "▁te or",
+ "el if",
+ "eli f",
+ "▁e rg",
+ "▁er g",
+ "▁ erg",
+ "▁separ ation",
+ "Pa n",
+ "P an",
+ "▁Or chestra",
+ "Pe ter",
+ "P eter",
+ "bound s",
+ "b ounds",
+ "▁Shakespe are",
+ "▁cant ante",
+ "▁d emi",
+ "▁de mi",
+ "▁dem i",
+ "▁Pop ular",
+ "ф р",
+ "ar ring",
+ "arr ing",
+ "ци н",
+ "ц ин",
+ "▁И с",
+ "vo n",
+ "v on",
+ "▁subst itution",
+ "▁lí nea",
+ "\\}$ .",
+ "\\} $.",
+ "\\ }$.",
+ "com o",
+ "co mo",
+ "c omo",
+ "▁ва ж",
+ "wa gen",
+ "w agen",
+ "▁rare ly",
+ "▁period s",
+ "▁peri ods",
+ "gl ob",
+ "g lob",
+ "▁F rid",
+ "▁Fr id",
+ "▁Fri d",
+ "▁T err",
+ "▁Te rr",
+ "▁Ter r",
+ "▁Re lease",
+ "▁ Release",
+ "Brain z",
+ "▁гра ф",
+ "▁ граф",
+ "DI S",
+ "D IS",
+ "compat ible",
+ "▁po č",
+ "LI N",
+ "L IN",
+ "▁K ällor",
+ "▁A rizona",
+ "pp y",
+ "p py",
+ "Se q",
+ "S eq",
+ "▁A in",
+ "▁T ourn",
+ "▁To urn",
+ "▁Tour n",
+ "br ow",
+ "bro w",
+ "b row",
+ "▁K ör",
+ "▁Kö r",
+ "▁a sh",
+ "▁as h",
+ "▁ ash",
+ "ogene ous",
+ "▁dia lect",
+ "▁насе ља",
+ "mysql i",
+ "mysq li",
+ "цо в",
+ "ц ов",
+ "▁f lor",
+ "▁fl or",
+ "▁flo r",
+ "▁ф ло",
+ "IA B",
+ "I AB",
+ "▁With in",
+ "▁Wit hin",
+ "^ (",
+ "▁b ois",
+ "▁bo is",
+ "▁t ank",
+ "▁tan k",
+ "▁aff ili",
+ "▁h ijo",
+ "▁hij o",
+ "▁hi jo",
+ "▁K ate",
+ "▁Kat e",
+ "▁Ka te",
+ "▁Ver l",
+ "▁Ve rl",
+ "▁M iami",
+ "▁Mi ami",
+ "▁type script",
+ "▁types cript",
+ "њ у",
+ "▁V ern",
+ "▁Ver n",
+ "▁Ve rn",
+ "▁ви со",
+ "ie mann",
+ "iem ann",
+ "i emann",
+ "▁co verage",
+ "▁cover age",
+ "br ie",
+ "b rie",
+ "▁Start ing",
+ "▁Star ting",
+ "num py",
+ "▁J enkins",
+ "▁Jen kins",
+ "▁k ét",
+ "▁ké t",
+ "▁g rup",
+ "▁gr up",
+ "▁gru p",
+ "▁S cient",
+ "▁Sc ient",
+ "▁Sci ent",
+ "▁inter rupt",
+ "▁b lob",
+ "▁bl ob",
+ "▁blo b",
+ "▁ blob",
+ "ug el",
+ "uge l",
+ "u gel",
+ "▁Or th",
+ "▁Ort h",
+ "ab ama",
+ "aba ma",
+ "▁B apt",
+ "▁Ba pt",
+ "ow nik",
+ "own ik",
+ "▁бы ть",
+ "▁Jul ius",
+ "▁Ju lius",
+ "▁Juli us",
+ "▁П рез",
+ "▁Пре з",
+ "▁subst itute",
+ "support ed",
+ "supp orted",
+ "ch y",
+ "c hy",
+ "egy zetek",
+ "▁Per formance",
+ "▁Perform ance",
+ "less ly",
+ "Con structor",
+ "▁ext ending",
+ "▁extend ing",
+ "▁Mus lim",
+ "Over flow",
+ "▁J enn",
+ "▁Je nn",
+ "▁Jen n",
+ "▁produ z",
+ "▁prod uz",
+ "мі ї",
+ "м ії",
+ "▁país es",
+ "▁e ux",
+ "▁eu x",
+ "▁f ate",
+ "▁fa te",
+ "▁fat e",
+ "ol oge",
+ "olog e",
+ "olo ge",
+ "у к",
+ "▁wo bei",
+ "▁wob ei",
+ "▁S achsen",
+ "▁Sach sen",
+ "▁са йт",
+ "▁сай т",
+ "Mod els",
+ "Model s",
+ "Mode ls",
+ "▁F ast",
+ "▁Fa st",
+ "bes ondere",
+ "▁F R",
+ "▁ FR",
+ "▁a con",
+ "▁ac on",
+ "▁ acon",
+ "▁Den kmal",
+ "▁an ch",
+ "▁anc h",
+ "▁ anch",
+ "▁públic o",
+ "▁T as",
+ "▁Ta s",
+ "▁c and",
+ "▁can d",
+ "▁ca nd",
+ "▁pa ździer",
+ "▁М он",
+ "▁Мо н",
+ "▁vers us",
+ "ru t",
+ "r ut",
+ "G T",
+ "▁insert ing",
+ "▁inser ting",
+ "▁can ad",
+ "▁ca nad",
+ "є м",
+ "▁M etro",
+ "▁Met ro",
+ "▁Herz og",
+ "Ign ore",
+ "▁decre ase",
+ "▁п ун",
+ "▁пу н",
+ "▁F ischer",
+ "▁M all",
+ "▁Ma ll",
+ "▁Mal l",
+ "▁n örd",
+ "io stream",
+ "i ostream",
+ "▁Lux emb",
+ "pay load",
+ "▁Ze itung",
+ "▁Zeit ung",
+ "▁mod ifying",
+ "▁modify ing",
+ "▁C her",
+ "▁Ch er",
+ "▁Che r",
+ "▁Lu ci",
+ "▁Luc i",
+ "n x",
+ "▁lo ose",
+ "▁top ics",
+ "▁topic s",
+ "▁var ied",
+ "▁vari ed",
+ "▁va ried",
+ "▁p g",
+ "▁ pg",
+ "aj es",
+ "aje s",
+ "a jes",
+ "um m",
+ "u mm",
+ "View s",
+ "▁B eau",
+ "▁Be au",
+ "MA P",
+ "M AP",
+ "ip eline",
+ "ipe line",
+ "▁Inter est",
+ "ar ith",
+ "ari th",
+ "▁seg ún",
+ "▁Geme ins",
+ "▁Att ribute",
+ "▁ Attribute",
+ "comm unity",
+ "▁цент р",
+ "▁kil ometer",
+ "▁kilomet er",
+ "▁kilom eter",
+ "▁é conom",
+ "▁éc onom",
+ "lar ation",
+ "▁к ъ",
+ "▁car riage",
+ "▁carri age",
+ "▁L ane",
+ "▁La ne",
+ "▁Lan e",
+ "▁не об",
+ "ku r",
+ "k ur",
+ "▁A F",
+ "▁ AF",
+ "IN TER",
+ "INT ER",
+ ")) $",
+ ") )$",
+ "▁be ide",
+ "▁bei de",
+ "dest ination",
+ "▁font s",
+ "▁fon ts",
+ "▁ fonts",
+ "append Child",
+ "▁M AR",
+ "▁MA R",
+ "▁g ay",
+ "▁ga y",
+ "mi l",
+ "m il",
+ "le sh",
+ "les h",
+ "l esh",
+ "è t",
+ "▁W ang",
+ "▁Wa ng",
+ "▁Y ears",
+ "▁Year s",
+ "▁Ye ars",
+ "▁S ymbol",
+ "▁Sym bol",
+ "▁ Symbol",
+ "Li ve",
+ "L ive",
+ "qu ency",
+ "▁U sers",
+ "▁Use rs",
+ "▁User s",
+ "▁Us ers",
+ "▁ Users",
+ "▁Un icode",
+ "▁S au",
+ "▁Sa u",
+ "▁t ons",
+ "▁to ns",
+ "▁ton s",
+ "▁ tons",
+ "▁Н і",
+ "▁кра ї",
+ "▁ краї",
+ "AX I",
+ "▁P ick",
+ "▁Pi ck",
+ "▁Pic k",
+ "A I",
+ "▁h ath",
+ "▁ha th",
+ "▁hat h",
+ "▁a inda",
+ "▁ain da",
+ "▁p apa",
+ "▁pa pa",
+ "▁pap a",
+ "▁C enso",
+ "▁B ald",
+ "▁Ba ld",
+ "▁Bal d",
+ "▁Насе ље",
+ "▁sim ulations",
+ "▁simulation s",
+ "▁j aren",
+ "▁ja ren",
+ "▁jar en",
+ "▁inher ited",
+ "▁inherit ed",
+ "▁то й",
+ "▁ той",
+ "▁fe els",
+ "▁feel s",
+ "▁fee ls",
+ "ress ion",
+ "r ession",
+ "▁o któber",
+ "bi d",
+ "b id",
+ "ás i",
+ "á si",
+ "▁m uss",
+ "▁mus s",
+ "▁mu ss",
+ "vent ory",
+ "▁me ist",
+ "▁b ore",
+ "▁bo re",
+ "▁bor e",
+ "▁sl ider",
+ "▁slide r",
+ "▁sli der",
+ "▁ slider",
+ "де ли",
+ "\\ ;",
+ "▁extra cted",
+ "▁extract ed",
+ "ку р",
+ "к ур",
+ "Ed ge",
+ "▁per f",
+ "▁pe rf",
+ "▁Brig ade",
+ "▁гра д",
+ "▁ град",
+ "ie nie",
+ "ien ie",
+ "i enie",
+ "▁N orden",
+ "▁Nor den",
+ "▁Nord en",
+ "▁c ancer",
+ "▁can cer",
+ "\" /",
+ "C ur",
+ "▁С ере",
+ "▁Се ре",
+ "▁Сер е",
+ "▁liqu id",
+ "str ucture",
+ "struct ure",
+ "▁cho osing",
+ "▁Per l",
+ "▁Pe rl",
+ "Si de",
+ "S ide",
+ "ü s",
+ "ри тор",
+ "рито р",
+ "рит ор",
+ "▁k ost",
+ "▁ko st",
+ "▁pa ckets",
+ "▁pack ets",
+ "▁packet s",
+ "▁кото рого",
+ "▁Com un",
+ "▁Co mun",
+ "▁f ingers",
+ "▁fin gers",
+ "▁finger s",
+ "ográ fica",
+ "> :",
+ "▁champion nat",
+ "▁bl ieb",
+ "▁S itu",
+ "▁Si tu",
+ "▁Sit u",
+ "▁su ic",
+ "an dis",
+ "and is",
+ "Fr e",
+ "F re",
+ "▁C onc",
+ "▁Con c",
+ "▁Co nc",
+ "▁re public",
+ "▁rep ublic",
+ "▁repub lic",
+ "▁ar med",
+ "▁arm ed",
+ "▁h ell",
+ "▁he ll",
+ "▁hel l",
+ "▁ hell",
+ "▁h ög",
+ "▁hö g",
+ "rag ma",
+ "▁en se",
+ "▁ens e",
+ "▁ ense",
+ "▁ac res",
+ "▁В ід",
+ "▁Ві д",
+ "▁Re form",
+ "▁Ref orm",
+ "Main Activity",
+ "ke eper",
+ "keep er",
+ "kee per",
+ "er b",
+ "e rb",
+ "▁mon aster",
+ "sub subsection",
+ "▁Ди в",
+ "▁cre ature",
+ "▁indic ating",
+ "▁url s",
+ "▁ur ls",
+ "▁ urls",
+ "▁k ein",
+ "▁ke in",
+ "об раз",
+ "обра з",
+ "pi ck",
+ "pic k",
+ "p ick",
+ "▁Ad mir",
+ "▁old est",
+ "▁ol dest",
+ "▁m uz",
+ "▁mu z",
+ "▁contra diction",
+ "▁contrad iction",
+ "▁contradict ion",
+ "▁prob abil",
+ "illi ant",
+ "▁p av",
+ "▁pa v",
+ "▁pa pel",
+ "▁pap el",
+ "ub s",
+ "u bs",
+ "▁ж ена",
+ "▁же на",
+ "▁жен а",
+ "▁ жена",
+ "AM L",
+ "A ML",
+ "▁re cip",
+ "▁rec ip",
+ "▁reci p",
+ "▁C OL",
+ "▁CO L",
+ "▁ COL",
+ "ad ded",
+ "add ed",
+ "▁cl ue",
+ "▁Uk raine",
+ "▁Ukrain e",
+ "▁jel ent",
+ "че нь",
+ "чен ь",
+ "ч ень",
+ "▁mathemat ics",
+ "Ac cept",
+ "▁с от",
+ "▁со т",
+ "▁се вер",
+ "▁isol ated",
+ "▁по я",
+ "w ür",
+ "Ro uter",
+ "Route r",
+ "Rout er",
+ "R outer",
+ "CA T",
+ "C AT",
+ "rg b",
+ "r gb",
+ "▁L ov",
+ "▁Lo v",
+ "mu table",
+ "mut able",
+ "m utable",
+ "▁W es",
+ "▁We s",
+ "▁Ital ien",
+ "Dra g",
+ "Dr ag",
+ "D rag",
+ "en ium",
+ "eni um",
+ "at ting",
+ "att ing",
+ "atti ng",
+ "tc p",
+ "t cp",
+ "▁erfolg te",
+ "▁Be it",
+ "▁Bei t",
+ "га то",
+ "▁System s",
+ "▁Syst ems",
+ "▁re serve",
+ "▁res erve",
+ "er ee",
+ "ere e",
+ "e ree",
+ "▁Па ри",
+ "▁Пар и",
+ "▁з али",
+ "▁за ли",
+ "▁re nt",
+ "▁r ent",
+ "▁ren t",
+ "▁ rent",
+ "▁s unt",
+ "▁su nt",
+ "▁sun t",
+ "▁G irls",
+ "▁Girl s",
+ "▁Gir ls",
+ "▁Er nest",
+ "▁Ern est",
+ "▁f its",
+ "▁fi ts",
+ "▁fit s",
+ "▁op pon",
+ "▁opp on",
+ "▁живе ло",
+ "▁av aient",
+ "▁Flor ence",
+ "▁Flo rence",
+ "▁чи сле",
+ "▁eng ines",
+ "▁engine s",
+ "D ynamic",
+ "▁stycz nia",
+ "▁b ias",
+ "▁bi as",
+ "▁Ex change",
+ "ди й",
+ "▁histor iques",
+ "▁historique s",
+ "▁H ä",
+ "ho d",
+ "h od",
+ "▁w ł",
+ "sch ap",
+ "▁l ac",
+ "▁la c",
+ "▁ lac",
+ "▁F oi",
+ "▁Fo i",
+ "▁d well",
+ "▁dw ell",
+ "▁Unter nehmen",
+ "UR N",
+ "▁kilomet res",
+ "▁Одна ко",
+ "к ли",
+ "▁S ri",
+ "▁Sr i",
+ "Gr oups",
+ "Group s",
+ "min d",
+ "mi nd",
+ "m ind",
+ "os lov",
+ "fer n",
+ "fe rn",
+ "f ern",
+ "eg u",
+ "e gu",
+ "abel ed",
+ "abe led",
+ "F iddle",
+ "▁Cent ury",
+ "/ -",
+ "▁J egyzetek",
+ "He n",
+ "H en",
+ "ens emble",
+ "▁G ut",
+ "▁Gu t",
+ "_{ {\\",
+ "_ {{\\",
+ "▁ran king",
+ "▁rank ing",
+ "+ $",
+ "ал а",
+ "а ла",
+ "▁# {",
+ "▁ #{",
+ "im ientos",
+ "imiento s",
+ "ach im",
+ "ac him",
+ "achi m",
+ "ri des",
+ "ride s",
+ "rid es",
+ "r ides",
+ "▁K laus",
+ "▁Kl aus",
+ "▁int end",
+ "▁inte nd",
+ "▁inten d",
+ "▁Kent ucky",
+ "ci pe",
+ "cip e",
+ "c ipe",
+ "▁D ienst",
+ "▁Di enst",
+ "▁situ ated",
+ "▁pó ź",
+ "▁s crit",
+ "▁sc rit",
+ "▁scr it",
+ "▁scri t",
+ "cl ip",
+ "cli p",
+ "c lip",
+ "не т",
+ "н ет",
+ "ta bles",
+ "table s",
+ "tab les",
+ "t ables",
+ "▁N ied",
+ "▁Ni ed",
+ "▁Nie d",
+ "▁Mc K",
+ "▁pow st",
+ "▁kun nen",
+ "▁Ev ans",
+ "▁Eva ns",
+ "ж ды",
+ "ва ть",
+ "ват ь",
+ "uch ar",
+ "uc har",
+ "ucha r",
+ "u char",
+ "▁res idents",
+ "▁resid ents",
+ "▁resident s",
+ "ia k",
+ "i ak",
+ "▁Re sol",
+ "▁Res ol",
+ "▁ Resol",
+ "▁ve ces",
+ "▁vec es",
+ "▁satisf ying",
+ "▁satisfy ing",
+ "IN F",
+ "I NF",
+ "▁с ин",
+ "▁си н",
+ "▁cross ing",
+ "ib en",
+ "ibe n",
+ "i ben",
+ "▁ши ро",
+ "pt o",
+ "p to",
+ "IL L",
+ "I LL",
+ "▁ро ль",
+ "▁a ktiv",
+ "▁akt iv",
+ "▁обра щения",
+ "Wik ispecies",
+ "▁Hö he",
+ "cr o",
+ "c ro",
+ "══ ══",
+ "al tra",
+ "alt ra",
+ "▁FI LE",
+ "▁ FILE",
+ "▁u ps",
+ "▁up s",
+ "▁ ups",
+ "▁al location",
+ "▁all ocation",
+ "▁alloc ation",
+ "▁allo cation",
+ "Mich ael",
+ "▁acknow led",
+ "Lin ux",
+ "▁met ros",
+ "▁ metros",
+ "tt e",
+ "t te",
+ "af en",
+ "a fen",
+ "▁x code",
+ "▁тра ди",
+ "spe cies",
+ "spec ies",
+ "s pecies",
+ "▁inj ury",
+ "▁са мы",
+ "▁сам ы",
+ "▁l attice",
+ "M aterial",
+ "and enburg",
+ "anden burg",
+ "▁huvud staden",
+ "st ory",
+ "sto ry",
+ "stor y",
+ "▁var ying",
+ "▁vary ing",
+ "▁kö vet",
+ "▁Росси йской",
+ "ir se",
+ "irs e",
+ "▁d rum",
+ "▁dr um",
+ "▁dru m",
+ "Pr essed",
+ "Press ed",
+ "Pres sed",
+ "La r",
+ "L ar",
+ "▁A gu",
+ "▁Ag u",
+ "▁w eil",
+ "▁we il",
+ "▁comm ence",
+ "▁Seg ún",
+ "Gest ure",
+ "Sh ape",
+ "S hape",
+ "▁V ors",
+ "▁Vo rs",
+ "▁Vor s",
+ "▁succ ès",
+ "▁correct ed",
+ "▁corre cted",
+ "▁corr ected",
+ "K ar",
+ "▁cr uel",
+ "▁cru el",
+ "▁polit ico",
+ "▁Schrift steller",
+ "▁ris ult",
+ "et u",
+ "e tu",
+ "arch iv",
+ "▁gén ero",
+ "▁gé nero",
+ "▁L ü",
+ "▁tri umph",
+ "OR S",
+ "O RS",
+ "L u",
+ "▁person nel",
+ "▁personn el",
+ "▁personne l",
+ "▁H ills",
+ "▁Hill s",
+ "▁Hil ls",
+ "as set",
+ "ass et",
+ "asse t",
+ "do min",
+ "dom in",
+ "d omin",
+ "Rece ive",
+ "▁O ak",
+ "▁K no",
+ "▁Kn o",
+ "▁The ory",
+ "ir ie",
+ "iri e",
+ "i rie",
+ "ow an",
+ "owa n",
+ "o wan",
+ "▁est ava",
+ "▁esta va",
+ "▁exec utes",
+ "▁execute s",
+ "▁execut es",
+ "й т",
+ "óp ez",
+ "ó pez",
+ "по ло",
+ "пол о",
+ "п оло",
+ "ét ica",
+ "▁назва ние",
+ "▁conver ges",
+ "▁not re",
+ "▁no tre",
+ "▁pop ulated",
+ "▁popula ted",
+ "▁popul ated",
+ "▁populate d",
+ "▁mov ements",
+ "▁move ments",
+ "▁movement s",
+ "▁statist ical",
+ "▁Zwe iten",
+ "qu in",
+ "qui n",
+ "▁import antes",
+ "▁important es",
+ "▁importante s",
+ "▁k lein",
+ "▁kle in",
+ "▁kl ein",
+ "▁Seg unda",
+ "schließ end",
+ "Fail ure",
+ "na r",
+ "n ar",
+ "da g",
+ "d ag",
+ "▁ru olo",
+ "▁f iction",
+ "▁fi ction",
+ "▁fic tion",
+ "▁fict ion",
+ "▁исполь зу",
+ "▁cr isis",
+ "▁Get ting",
+ ", %",
+ "▁ар мии",
+ "▁cam pus",
+ "▁camp us",
+ "▁fo oter",
+ "▁foot er",
+ "▁foo ter",
+ "▁ footer",
+ "▁d ías",
+ "▁día s",
+ "▁dí as",
+ "ба н",
+ "б ан",
+ "▁liber ty",
+ "▁libert y",
+ "▁g h",
+ "▁ gh",
+ "▁cham ber",
+ "▁district s",
+ "▁exc ited",
+ "▁can ción",
+ "ter o",
+ "te ro",
+ "t ero",
+ "▁Work ing",
+ "▁Wor king",
+ "▁czę ści",
+ "ль ный",
+ "▁f orum",
+ "▁for um",
+ "▁fo rum",
+ "▁ forum",
+ "▁E he",
+ "▁ка та",
+ "▁ ката",
+ "it ations",
+ "itation s",
+ "itat ions",
+ "To ols",
+ "Tool s",
+ "T ools",
+ "ach iv",
+ "achi v",
+ "▁c res",
+ "▁cre s",
+ "▁cr es",
+ "as to",
+ "ast o",
+ "a sto",
+ "▁re ver",
+ "▁r ever",
+ "▁rev er",
+ "▁reve r",
+ "▁n azionale",
+ "▁naz ionale",
+ "▁do ors",
+ "▁door s",
+ "▁N ancy",
+ "▁Nan cy",
+ "▁is lands",
+ "▁island s",
+ "Im p",
+ "I mp",
+ "▁Ch air",
+ "▁Cha ir",
+ "▁v orm",
+ "▁vo rm",
+ "▁vor m",
+ "se in",
+ "s ein",
+ "▁до ку",
+ "er set",
+ "ers et",
+ "▁tät ig",
+ "▁K rit",
+ "▁Kr it",
+ "▁п я",
+ "▁cons ervation",
+ "▁conserv ation",
+ "▁Part ido",
+ "▁Parti do",
+ "min ipage",
+ "Valid ator",
+ "▁rec overy",
+ "▁recover y",
+ "▁NA SA",
+ "▁NAS A",
+ "▁br east",
+ "▁bre ast",
+ "il ty",
+ "ilt y",
+ "an aly",
+ "ana ly",
+ "anal y",
+ "el ines",
+ "eli nes",
+ "eline s",
+ "elin es",
+ "e lines",
+ "▁S aturday",
+ "em ark",
+ "e mark",
+ "ce j",
+ "c ej",
+ "Ze ro",
+ "Z ero",
+ "▁Tur ner",
+ "▁Turn er",
+ "sec ure",
+ "Ex ists",
+ "▁R ick",
+ "▁Ric k",
+ "▁Ri ck",
+ "ev alu",
+ "eval u",
+ "e valu",
+ "ct rl",
+ "ctr l",
+ "c trl",
+ "▁com pression",
+ "▁comp ression",
+ "▁compr ession",
+ "▁compress ion",
+ "▁C URL",
+ "text color",
+ ")\\ ,",
+ ") \\,",
+ "long rightarrow",
+ "▁Fern seh",
+ "▁ Fernseh",
+ "ic ha",
+ "ich a",
+ "i cha",
+ "▁l oi",
+ "▁lo i",
+ "▁О те",
+ "▁От е",
+ "▁c ave",
+ "▁ca ve",
+ "▁cav e",
+ "▁do zen",
+ "▁expla ining",
+ "▁expl aining",
+ "▁explain ing",
+ "▁in nov",
+ "▁inn ov",
+ "▁Nich olas",
+ "▁dia meter",
+ "▁diam eter",
+ "▁M arian",
+ "▁Mar ian",
+ "▁Ma rian",
+ "▁Maria n",
+ "▁Mari an",
+ "▁f ires",
+ "▁fire s",
+ "▁fi res",
+ "▁fir es",
+ "▁art ifact",
+ "▁ artifact",
+ "▁Par ker",
+ "▁Park er",
+ "▁B und",
+ "▁Bu nd",
+ "▁Bun d",
+ "▁v erte",
+ "▁ver te",
+ "▁vert e",
+ "▁ verte",
+ "▁tal ent",
+ "▁tale nt",
+ "▁Lu cas",
+ "▁Luc as",
+ "re verse",
+ "▁folg enden",
+ "▁S ah",
+ "▁Sa h",
+ "ject ions",
+ "je ctions",
+ "jection s",
+ "▁inve ce",
+ "▁cost itu",
+ "▁s sl",
+ "▁ss l",
+ "▁ ssl",
+ "}} ^",
+ "} }^",
+ "▁viol ent",
+ "▁s pos",
+ "▁sp os",
+ "▁spo s",
+ "Ro ut",
+ "R out",
+ "jd k",
+ "j dk",
+ "▁за ме",
+ "▁f urent",
+ "▁fur ent",
+ "▁fu rent",
+ "an dal",
+ "and al",
+ "anda l",
+ "H om",
+ "▁Sen ior",
+ "▁p ounds",
+ "▁Disc ogs",
+ "▁з е",
+ "▁ зе",
+ "'} [",
+ "' }[",
+ "▁Napole on",
+ "ordin ates",
+ "ordinate s",
+ "à n",
+ "▁k urz",
+ "▁kur z",
+ "▁v ere",
+ "▁ver e",
+ "▁ve re",
+ "▁ vere",
+ "▁re use",
+ "▁Г ен",
+ "▁Ге н",
+ "▁S yst",
+ "▁Sy st",
+ "▁disapp eared",
+ "▁disappear ed",
+ "▁W atch",
+ "▁Wat ch",
+ "▁ Watch",
+ "bibli othek",
+ "▁кор пу",
+ "▁C s",
+ "▁} `",
+ "▁ }`",
+ "▁r ör",
+ "▁де ла",
+ "▁ дела",
+ "V B",
+ "▁calcul us",
+ "▁calc ulus",
+ "ро да",
+ "род а",
+ "▁jud gment",
+ "at ile",
+ "ati le",
+ "▁long ue",
+ "▁lon gue",
+ "▁H us",
+ "▁Hu s",
+ "J ac",
+ "}} )",
+ "} })",
+ "RI PT",
+ "IAB ot",
+ "▁ap ós",
+ "▁a ston",
+ "▁as ton",
+ "▁ast on",
+ "Web achiv",
+ "▁URL s",
+ "▁co at",
+ "▁э коно",
+ "▁l ear",
+ "▁le ar",
+ "▁ lear",
+ "ext ensions",
+ "extension s",
+ "▁Class ic",
+ "T I",
+ "▁T age",
+ "▁Tag e",
+ "▁Ta ge",
+ "▁l á",
+ "▁ lá",
+ "▁s emb",
+ "▁se mb",
+ "▁sem b",
+ "▁développ ement",
+ "IS TS",
+ "IST S",
+ "▁sol ves",
+ "▁solve s",
+ ",\\ ,",
+ ", \\,",
+ "▁чем пі",
+ "ord inary",
+ "ordin ary",
+ "▁B av",
+ "▁Ba v",
+ "▁much os",
+ "▁mu chos",
+ "▁mucho s",
+ "S elf",
+ "▁Ма й",
+ "▁D iet",
+ "▁Die t",
+ "▁Di et",
+ "▁necess ity",
+ "ві д",
+ "в ід",
+ "▁m ano",
+ "▁ma no",
+ "▁man o",
+ "▁С р",
+ "▁car re",
+ "▁Cam era",
+ "▁Camer a",
+ "▁ Camera",
+ "▁N arod",
+ "▁Na rod",
+ "▁Nar od",
+ "▁Ph one",
+ "▁Pho ne",
+ "▁ Phone",
+ "▁pol ym",
+ "▁poly m",
+ "im ore",
+ "imo re",
+ "i more",
+ "is Empty",
+ "▁Hou ston",
+ "▁Re ce",
+ "▁Rec e",
+ "▁ Rece",
+ "▁present ation",
+ "▁pres entation",
+ "▁presenta tion",
+ "▁ presentation",
+ "ни ципа",
+ "ници па",
+ "▁D b",
+ "▁ Db",
+ "▁conf ident",
+ "▁} {",
+ "▁ }{",
+ "▁bul let",
+ "▁ bullet",
+ "▁{ },",
+ "▁{} ,",
+ "AN GE",
+ "ANG E",
+ "▁No tre",
+ "▁Not re",
+ "ch in",
+ "chi n",
+ "c hin",
+ "▁Dr agon",
+ "▁Drag on",
+ "▁Dra gon",
+ "er ca",
+ "erc a",
+ "ia li",
+ "ial i",
+ "i ali",
+ "▁as set",
+ "▁ass et",
+ "▁asse t",
+ "▁ asset",
+ "▁mu ito",
+ "▁muit o",
+ "▁deep ly",
+ "▁rest riction",
+ "▁restrict ion",
+ "▁com merce",
+ "▁commer ce",
+ "▁ commerce",
+ "▁B omb",
+ "▁Bo mb",
+ "▁Bom b",
+ "c aught",
+ "q q",
+ "▁A rag",
+ "▁Ar ag",
+ "▁Ara g",
+ "▁не мец",
+ "▁Anal ysis",
+ "▁člán ku",
+ "▁b aby",
+ "▁ba by",
+ "▁e chter",
+ "▁о дного",
+ "▁од ного",
+ "▁одно го",
+ "же на",
+ "жен а",
+ "ж ена",
+ "▁white space",
+ "▁whites pace",
+ "ç u",
+ "LI ST",
+ "L IST",
+ "fr ique",
+ "fri que",
+ "f rique",
+ "▁v arias",
+ "▁var ias",
+ "▁vari as",
+ "▁va rias",
+ "▁W it",
+ "▁Wi t",
+ "▁Lic encia",
+ "Ex it",
+ "▁sie rp",
+ "▁sier p",
+ "▁ass emb",
+ "▁asse mb",
+ "▁split ting",
+ "▁spl itting",
+ "▁pa lace",
+ "▁pal ace",
+ "▁b locked",
+ "▁block ed",
+ "▁bound aries",
+ "▁iter ations",
+ "▁iteration s",
+ "▁Rot ten",
+ "▁Ver kehr",
+ "▁we er",
+ "Test s",
+ "T ests",
+ "if ting",
+ "ift ing",
+ "▁reg ul",
+ "▁pers ist",
+ "▁Sol ution",
+ "p b",
+ "▁col lapse",
+ "▁ collapse",
+ "▁arr ested",
+ "▁arrest ed",
+ "▁pred icate",
+ "▁Z one",
+ "▁Zo ne",
+ "▁ Zone",
+ "▁in gen",
+ "▁ing en",
+ "▁ ingen",
+ "zá lez",
+ "▁b anks",
+ "▁bank s",
+ "▁ban ks",
+ "pl ant",
+ "plan t",
+ "pla nt",
+ "p lant",
+ "▁N ella",
+ "▁Ne lla",
+ "▁Nel la",
+ "▁Nell a",
+ "▁б ан",
+ "▁ба н",
+ "▁ бан",
+ "▁S now",
+ "▁Sn ow",
+ "▁Kre uz",
+ "í cio",
+ "▁en ters",
+ "▁ent ers",
+ "▁enter s",
+ "▁ex pose",
+ "▁exp ose",
+ "▁expos e",
+ "č i",
+ "ши е",
+ "Qu al",
+ "Q ual",
+ "▁lands cape",
+ "▁пода цима",
+ "ma i",
+ "m ai",
+ "st ag",
+ "sta g",
+ "s tag",
+ "ова ний",
+ "DE F",
+ "D EF",
+ "[] {",
+ "[ ]{",
+ "▁derni ère",
+ "ic ut",
+ "i cut",
+ "▁X ml",
+ "▁ Xml",
+ "▁sub group",
+ "▁Pol sce",
+ "▁W arning",
+ "▁War ning",
+ "▁ Warning",
+ "▁veh icles",
+ "▁vehicle s",
+ "io t",
+ "i ot",
+ "▁d ll",
+ "▁ dll",
+ "ro nt",
+ "ron t",
+ "r ont",
+ "▁Lou ise",
+ "▁Louis e",
+ "▁a ra",
+ "▁ar a",
+ "▁ ara",
+ "▁S cala",
+ "▁Sc ala",
+ "▁canon ical",
+ "▁pl acing",
+ "▁pla cing",
+ "ER Y",
+ "E RY",
+ "▁J ag",
+ "▁Ja g",
+ "▁v irus",
+ "▁vi rus",
+ "▁vir us",
+ "em u",
+ "e mu",
+ "▁} );\r",
+ "▁}); \r",
+ "▁}) ;\r",
+ "▁м м",
+ "▁Tr ying",
+ "▁Try ing",
+ "▁Lex ikon",
+ "ab ord",
+ "abor d",
+ "▁exped ition",
+ "▁demand ed",
+ "▁demande d",
+ "Z yg",
+ "le in",
+ "lei n",
+ "l ein",
+ "▁verw endet",
+ "ри на",
+ "рин а",
+ "wo l",
+ "w ol",
+ "▁p ivot",
+ "▁одна ко",
+ "▁propri et",
+ "▁a wards",
+ "▁aw ards",
+ "▁award s",
+ "to ut",
+ "t out",
+ "▁as sim",
+ "▁ass im",
+ "▁St orm",
+ "▁Sto rm",
+ "Li mit",
+ "L imit",
+ "el in",
+ "eli n",
+ "e lin",
+ "we alth",
+ "ue z",
+ "u ez",
+ "▁rap present",
+ "▁rappres ent",
+ "▁re sta",
+ "▁r esta",
+ "▁res ta",
+ "▁rest a",
+ "▁gegründ et",
+ "▁journal ist",
+ "is ie",
+ "isi e",
+ "▁fac ility",
+ "▁facil ity",
+ "il led",
+ "ill ed",
+ "ille d",
+ "ul k",
+ "▁P K",
+ "▁ PK",
+ "An chor",
+ "▁_ )",
+ "▁ _)",
+ "V F",
+ "LA B",
+ "L AB",
+ "▁n å",
+ "od os",
+ "odo s",
+ "▁bill ion",
+ "vir ti",
+ "virt i",
+ "▁Je ux",
+ "юз а",
+ "ю за",
+ "tom cat",
+ "▁ch arts",
+ "▁char ts",
+ "▁chart s",
+ "▁ charts",
+ "▁B undle",
+ "▁Bund le",
+ "▁ Bundle",
+ "▁l st",
+ "▁ls t",
+ "▁ lst",
+ "▁ex er",
+ "▁fem ales",
+ "▁female s",
+ "▁oblig ed",
+ "▁a by",
+ "▁ab y",
+ "▁ aby",
+ "roll ed",
+ "rol led",
+ "rolle d",
+ "dr i",
+ "d ri",
+ "▁S che",
+ "▁Sch e",
+ "▁Sc he",
+ "▁vess els",
+ "▁vessel s",
+ "IMA RY",
+ "IM ARY",
+ "▁reason ing",
+ "▁про те",
+ "▁пр оте",
+ "FI LES",
+ "FILE S",
+ "ver k",
+ "v erk",
+ "os os",
+ "oso s",
+ "▁ком му",
+ "ді ї",
+ "д ії",
+ "▁d d",
+ "▁ dd",
+ "▁со ответ",
+ "▁IO Exception",
+ "▁ IOException",
+ "sk ých",
+ "ský ch",
+ "▁C LI",
+ "▁CL I",
+ "▁ CLI",
+ "▁ ње",
+ "C M",
+ "T D",
+ "▁possib ilities",
+ "▁possibil ities",
+ "▁Com pos",
+ "▁Comp os",
+ "hal f",
+ "h alf",
+ "▁web page",
+ "▁s wing",
+ "▁sw ing",
+ "▁ swing",
+ "▁z as",
+ "▁za s",
+ "▁ zas",
+ "▁cy cl",
+ "le id",
+ "lei d",
+ "ist ica",
+ "istic a",
+ "isti ca",
+ "▁In sert",
+ "▁Ins ert",
+ "▁ Insert",
+ "▁Sw eden",
+ "▁want ing",
+ "▁ ال",
+ "▁e euw",
+ "▁Admin istr",
+ "▁War ren",
+ "▁b s",
+ "▁ bs",
+ "▁p am",
+ "▁pa m",
+ "an us",
+ "anu s",
+ "Dr a",
+ "D ra",
+ "ex pl",
+ "exp l",
+ "▁K ant",
+ "▁Kan t",
+ "▁Ka nt",
+ "▁Aust in",
+ "▁c sak",
+ "▁cs ak",
+ "▁the atre",
+ "▁compat ibility",
+ "ма тиче",
+ "мати че",
+ "set State",
+ "б ю",
+ "}{ |",
+ "} {|",
+ "▁D y",
+ "▁Zw ischen",
+ "Al t",
+ "A lt",
+ "CLA RE",
+ "st eps",
+ "ste ps",
+ "step s",
+ "▁L age",
+ "▁La ge",
+ "▁Lag e",
+ "▁M itt",
+ "▁Mit t",
+ "▁Mi tt",
+ "▁Dub lin",
+ "▁рабо ты",
+ "de ep",
+ "▁fl ows",
+ "▁flow s",
+ "▁flo ws",
+ "▁Pa lace",
+ "▁Pal ace",
+ "▁Pala ce",
+ "un ix",
+ "uni x",
+ "re fs",
+ "ref s",
+ "um ar",
+ "uma r",
+ "u mar",
+ "as et",
+ "ase t",
+ "a set",
+ "co v",
+ "c ov",
+ "▁p ing",
+ "▁pi ng",
+ "▁pin g",
+ "▁ ping",
+ "▁Saf ari",
+ "fl ug",
+ "flu g",
+ "cre ens",
+ "creen s",
+ "c reens",
+ "{ #",
+ "▁ре а",
+ "ad ors",
+ "ado rs",
+ "ador s",
+ "▁a mor",
+ "▁am or",
+ "uc e",
+ "u ce",
+ "de mic",
+ "dem ic",
+ "▁Nether lands",
+ "▁cluster s",
+ "▁clust ers",
+ "▁en for",
+ "▁enf or",
+ "mar ine",
+ "▁b ugs",
+ "▁bu gs",
+ "▁bug s",
+ "izz ata",
+ "izza ta",
+ "▁s cra",
+ "▁sc ra",
+ "▁scr a",
+ "Le s",
+ "L es",
+ "qu ick",
+ "qui ck",
+ "▁turn o",
+ "▁tur no",
+ "_ *",
+ "ер а",
+ "е ра",
+ "Gener ated",
+ "> [",
+ "▁e stre",
+ "▁est re",
+ "▁es tre",
+ "▁ estre",
+ "or de",
+ "ord e",
+ "▁v erg",
+ "▁ver g",
+ "▁ve rg",
+ "ро з",
+ "р оз",
+ "▁p au",
+ "▁pa u",
+ "in cludes",
+ "include s",
+ "includ es",
+ "as sa",
+ "ass a",
+ "ad ers",
+ "ader s",
+ "ade rs",
+ "a ders",
+ "▁Гер ма",
+ "▁est aven",
+ "▁esta ven",
+ "▁ear liest",
+ "▁res ultado",
+ "▁result ado",
+ "mu n",
+ "m un",
+ "▁pl ots",
+ "▁plot s",
+ "▁ plots",
+ "di n",
+ "d in",
+ "sort ed",
+ "s orted",
+ "▁p reference",
+ "▁pre ference",
+ "▁prefer ence",
+ "ri ó",
+ "r ió",
+ "ту ре",
+ "тур е",
+ "▁L igue",
+ "▁Li gue",
+ "▁Lig ue",
+ "▁за вер",
+ "▁зав ер",
+ "ph r",
+ "p hr",
+ "▁p ocket",
+ "▁po cket",
+ "▁poc ket",
+ "▁par l",
+ "▁pa rl",
+ "▁l ak",
+ "▁la k",
+ "▁ lak",
+ "▁p owie",
+ "▁po wie",
+ "▁pow ie",
+ "▁al tres",
+ "▁alt res",
+ "▁altre s",
+ "$} ;",
+ "$ };",
+ "pl ain",
+ "pla in",
+ "p lain",
+ "▁C red",
+ "▁Cre d",
+ "▁Cr ed",
+ "▁ Cred",
+ "it za",
+ "itz a",
+ "pe rp",
+ "per p",
+ "Gr een",
+ "Gre en",
+ "G reen",
+ "▁dev oted",
+ "product ion",
+ "produ ction",
+ "p roduction",
+ "work er",
+ "wor ker",
+ "el sen",
+ "els en",
+ "else n",
+ "▁v ern",
+ "▁ver n",
+ "▁ve rn",
+ "▁ vern",
+ "▁már cius",
+ "▁Conf eder",
+ "▁Liver pool",
+ "▁му зи",
+ "▁em ails",
+ "▁email s",
+ "▁dist ances",
+ "▁distance s",
+ "▁seg ments",
+ "▁segment s",
+ "▁a nth",
+ "▁an th",
+ "▁ant h",
+ "▁ anth",
+ "▁w rest",
+ "▁wr est",
+ "▁ho og",
+ "▁cin ema",
+ "rr or",
+ "r ror",
+ "▁geb oren",
+ "▁é c",
+ "▁ éc",
+ "Mar ker",
+ "Mark er",
+ "▁Com pet",
+ "▁Comp et",
+ "▁ли сто",
+ "all owed",
+ "allow ed",
+ "allo wed",
+ "vol ume",
+ "Esp agne",
+ "Z e",
+ "▁fix es",
+ "▁fi xes",
+ "▁r ond",
+ "▁ro nd",
+ "▁arrang ement",
+ "/ ~",
+ ".] (",
+ ". ](",
+ "▁For rások",
+ "▁weiter en",
+ "▁weit eren",
+ "▁weitere n",
+ "ex cel",
+ "▁з мі",
+ "▁mod erne",
+ "▁modern e",
+ "▁moder ne",
+ "Eng lish",
+ "▁Transfer markt",
+ "▁be aring",
+ "▁bear ing",
+ "▁cl eared",
+ "▁clear ed",
+ "▁cle ared",
+ "▁са м",
+ "▁di vs",
+ "▁div s",
+ "ć i",
+ "▁э той",
+ "▁это й",
+ "▁Ге ор",
+ "sc ene",
+ "sce ne",
+ "▁a ges",
+ "▁ag es",
+ "▁age s",
+ "▁ ages",
+ "GE N",
+ "G EN",
+ "rä n",
+ "r än",
+ "▁T oul",
+ "▁To ul",
+ "▁A bs",
+ "▁Ab s",
+ "j át",
+ "▁med iante",
+ "▁medi ante",
+ "▁median te",
+ "▁em pres",
+ "▁emp res",
+ "▁Emp loyee",
+ "▁ Employee",
+ "▁polynomial s",
+ "▁optim ize",
+ "▁вы ступа",
+ "fa re",
+ "far e",
+ "f are",
+ "ве й",
+ "в ей",
+ "x f",
+ "qu ez",
+ "que z",
+ "q uez",
+ "▁bo tan",
+ "▁bot an",
+ "▁def end",
+ "▁defe nd",
+ "▁Qu art",
+ "Mon t",
+ "Mo nt",
+ "M ont",
+ "v b",
+ "ti ck",
+ "t ick",
+ "W D",
+ "min e",
+ "mi ne",
+ "m ine",
+ "▁mod ific",
+ "not ification",
+ "▁d enn",
+ "▁de nn",
+ "▁den n",
+ "▁al go",
+ "▁alg o",
+ "▁S po",
+ "▁Sp o",
+ "▁m istrzost",
+ "/ :",
+ "▁a present",
+ "▁apr esent",
+ "▁п род",
+ "▁про д",
+ "▁пр од",
+ "Vol ume",
+ "sk ą",
+ "s ką",
+ "prote cted",
+ "▁Turk ish",
+ "az y",
+ "a zy",
+ "▁p ouv",
+ "▁po uv",
+ "▁pou v",
+ "▁perí odo",
+ "sk og",
+ "sko g",
+ "▁ent ropy",
+ "▁entr opy",
+ "ze d",
+ "z ed",
+ "то ри",
+ "тор и",
+ "▁l ij",
+ "▁li j",
+ "▁ lij",
+ "bo ards",
+ "board s",
+ "▁ста ту",
+ "Bo ol",
+ "B ool",
+ "▁pol ity",
+ "▁polit y",
+ "@\" ,",
+ "@ \",",
+ "▁рі к",
+ "né e",
+ "n ée",
+ "▁Z ug",
+ "▁Zu g",
+ "▁Un iti",
+ "▁Unit i",
+ "ém et",
+ "é met",
+ "at ience",
+ "ati ence",
+ "di men",
+ "dim en",
+ "d imen",
+ "▁St even",
+ "▁Ste ven",
+ "▁Steve n",
+ "H a",
+ "ACT ION",
+ "A CTION",
+ "▁w and",
+ "▁wa nd",
+ "▁ wand",
+ "▁Na var",
+ "▁Nav ar",
+ "▁сі чня",
+ "W atch",
+ "▁Stu art",
+ "▁z de",
+ "▁zd e",
+ "▁кон тро",
+ "data set",
+ "dat aset",
+ "datas et",
+ "y ó",
+ "▁B ush",
+ "▁Bu sh",
+ "▁Bus h",
+ "▁се бя",
+ "▁wor thy",
+ "▁worth y",
+ "▁B le",
+ "▁Bl e",
+ "▁pro por",
+ "▁prop or",
+ "▁Vill age",
+ "▁Villa ge",
+ "▁Vil lage",
+ "▁r y",
+ "▁ ry",
+ "▁v oit",
+ "▁vo it",
+ "▁копи я",
+ "▁z p",
+ "▁c ura",
+ "▁cu ra",
+ "▁cur a",
+ "▁H tml",
+ "▁ Html",
+ "▁Die ser",
+ "▁Dies er",
+ "▁Diese r",
+ "▁D ays",
+ "▁Da ys",
+ "▁Day s",
+ "▁ Days",
+ "on nes",
+ "onn es",
+ "onne s",
+ "▁ant igu",
+ "▁anti gu",
+ "▁Sta aten",
+ "▁Staat en",
+ "▁f aint",
+ "▁fa int",
+ "on gs",
+ "ong s",
+ "▁ö st",
+ "▁ öst",
+ "Re direct",
+ "Red irect",
+ "ел ь",
+ "е ль",
+ "at orial",
+ "ator ial",
+ "ato rial",
+ "atori al",
+ "▁b other",
+ "▁bo ther",
+ "▁both er",
+ "▁bot her",
+ "Edit Text",
+ "▁Gi ul",
+ "▁за во",
+ "▁зав о",
+ "▁pue blo",
+ "▁Mississ ippi",
+ "ja k",
+ "j ak",
+ "▁w ings",
+ "▁win gs",
+ "▁wing s",
+ "on c",
+ "o nc",
+ "ív el",
+ "í vel",
+ "ien cia",
+ "i encia",
+ "ent licht",
+ "entlich t",
+ "▁B TW",
+ "or nal",
+ "orn al",
+ "▁Ко ро",
+ "▁Кор о",
+ "▁од ним",
+ "▁sa lv",
+ "▁sal v",
+ "▁f inden",
+ "▁find en",
+ "▁fin den",
+ "ge o",
+ "▁а виа",
+ "att ung",
+ "vi v",
+ "v iv",
+ "▁L uther",
+ "▁Lu ther",
+ "▁об щи",
+ "▁Ro lle",
+ "▁Rol le",
+ "▁Roll e",
+ "▁Ab raham",
+ "▁cent ered",
+ "▁center ed",
+ "▁sl ash",
+ "▁sla sh",
+ "▁ slash",
+ "is at",
+ "isa t",
+ "em ann",
+ "ema nn",
+ "eman n",
+ "e mann",
+ "O s",
+ "пар та",
+ "▁P ablo",
+ "▁Pa blo",
+ "▁collabor ation",
+ "path s",
+ "pat hs",
+ "éd ition",
+ "▁view ed",
+ "▁vie wed",
+ "▁cons isted",
+ "▁consist ed",
+ "▁recover ed",
+ "▁Mex ican",
+ "▁F ix",
+ "▁sp ell",
+ "▁spe ll",
+ "▁spel l",
+ "Spec ial",
+ "Spe cial",
+ "▁С т",
+ "ess eur",
+ "esse ur",
+ "▁Украи ны",
+ "form er",
+ "for mer",
+ "▁ś w",
+ "▁z eros",
+ "▁ze ros",
+ "▁zero s",
+ "▁Stra ßen",
+ "▁Straße n",
+ "▁organ isation",
+ "▁organis ation",
+ "▁ organisation",
+ "üss en",
+ "üs sen",
+ "▁S ierra",
+ "▁Se ason",
+ "▁Sea son",
+ "▁vol ont",
+ "Bean Factory",
+ "▁помо щ",
+ "▁pres sing",
+ "▁press ing",
+ "▁equival ence",
+ "▁c att",
+ "▁ca tt",
+ "▁cat t",
+ "ic ity",
+ "ici ty",
+ "i city",
+ "▁accompl ished",
+ "▁accomp lished",
+ "▁accomplish ed",
+ "▁y o",
+ "▁ yo",
+ "▁s ic",
+ "▁si c",
+ "▁im ports",
+ "▁import s",
+ "▁accom mod",
+ "▁Port o",
+ "▁Por to",
+ "▁я ка",
+ "▁як а",
+ "▁lo an",
+ "ти ки",
+ "тик и",
+ "▁check out",
+ "▁ass ess",
+ "▁asse ss",
+ "▁Pop ulation",
+ "ur ent",
+ "ure nt",
+ "uren t",
+ "u rent",
+ "clo jure",
+ "▁Sant os",
+ "▁Santo s",
+ "▁inform áció",
+ "PO S",
+ "P OS",
+ "▁g are",
+ "▁gar e",
+ "▁ga re",
+ "▁k ick",
+ "▁ki ck",
+ "▁rad ical",
+ "▁radi cal",
+ "▁Pe ace",
+ "▁stream ing",
+ "▁stre aming",
+ "ca mp",
+ "cam p",
+ "c amp",
+ "zą t",
+ "го вор",
+ "гов ор",
+ "гово р",
+ "▁Reg ierung",
+ "▁proceed ed",
+ "f m",
+ "ле ны",
+ "лен ы",
+ "▁ear nest",
+ "▁Par ad",
+ "▁Pa rad",
+ "▁Para d",
+ "request s",
+ "▁R aum",
+ "▁Ra um",
+ "š č",
+ "▁polic ies",
+ "▁T ig",
+ "▁Ti g",
+ "▁s itt",
+ "▁si tt",
+ "▁sit t",
+ "▁Ener gy",
+ "▁pur ely",
+ "▁pure ly",
+ "▁H aut",
+ "▁Ha ut",
+ "▁Sp eed",
+ "▁Spe ed",
+ "▁ Speed",
+ "bi o",
+ "b io",
+ "▁o range",
+ "▁or ange",
+ "▁big gest",
+ "▁britann ique",
+ "▁No table",
+ "▁Not able",
+ "v u",
+ "ле нии",
+ "би н",
+ "б ин",
+ "▁N ash",
+ "▁Na sh",
+ "▁Nas h",
+ "ще ние",
+ "▁c iel",
+ "▁ci el",
+ "adém ie",
+ "▁гру дня",
+ "▁jo ue",
+ "▁jou e",
+ "▁v oted",
+ "▁vo ted",
+ "▁vot ed",
+ "▁vote d",
+ "ri co",
+ "ric o",
+ "r ico",
+ "▁го р",
+ "▁г ор",
+ "▁ гор",
+ "▁коман ду",
+ "it ivity",
+ "iti vity",
+ "▁щ е",
+ "▁ ще",
+ "▁de finite",
+ "▁defin ite",
+ "▁definit e",
+ "uro pa",
+ "urop a",
+ "!\" );",
+ "! \");",
+ "Default s",
+ "▁неко торы",
+ "éd ération",
+ "▁s illy",
+ "▁sil ly",
+ "▁talk ed",
+ "▁tal ked",
+ "re u",
+ "r eu",
+ "▁L omb",
+ "▁Lo mb",
+ "▁stat ue",
+ "кт а",
+ "к та",
+ "ю р",
+ "um ably",
+ "▁горо де",
+ "▁город е",
+ "▁R untime",
+ "▁Run time",
+ "▁ Runtime",
+ "▁di agn",
+ "▁diag n",
+ "▁dia gn",
+ "▁r etro",
+ "▁ret ro",
+ "▁retr o",
+ "▁Sver ige",
+ "▁in icial",
+ "▁inici al",
+ "ien za",
+ "i enza",
+ "▁fig lio",
+ "▁z og",
+ "▁zo g",
+ "▁re y",
+ "▁r ey",
+ "▁ rey",
+ "▁R und",
+ "▁Run d",
+ "▁Ru nd",
+ "т ный",
+ "▁ce ased",
+ "er no",
+ "ern o",
+ "▁e sa",
+ "▁es a",
+ "▁ esa",
+ "▁tr ouv",
+ "▁tro uv",
+ "▁trou v",
+ "▁Gemeinde n",
+ "▁Geme inden",
+ "▁comer cial",
+ "sk ap",
+ "ska p",
+ "s kap",
+ "en ario",
+ "ena rio",
+ "▁ju ris",
+ "▁jur is",
+ "T B",
+ "на ла",
+ "нал а",
+ "н ала",
+ "▁v ij",
+ "▁vi j",
+ "V O",
+ "▁c lin",
+ "▁cl in",
+ "▁cli n",
+ "jö r",
+ "j ör",
+ "са н",
+ "с ан",
+ "ow ała",
+ "owa ła",
+ "ował a",
+ "rib ución",
+ "ribu ción",
+ "▁urs prüng",
+ "▁con dem",
+ "▁cond em",
+ "▁St age",
+ "▁Sta ge",
+ "▁ Stage",
+ "▁mix ing",
+ "▁рі з",
+ "▁f ans",
+ "▁fa ns",
+ "▁fan s",
+ "há z",
+ "h áz",
+ "so cial",
+ "soci al",
+ "za n",
+ "z an",
+ "▁с вой",
+ "▁сво й",
+ "Cook ie",
+ "▁Ro land",
+ "▁Rol and",
+ "az ionale",
+ "▁Sl oven",
+ "▁Slo ven",
+ "▁Slov en",
+ "▁F iche",
+ "▁Fich e",
+ "▁S é",
+ "h ä",
+ "▁official s",
+ "▁offici als",
+ "▁î nt",
+ "▁în t",
+ "Inter ceptor",
+ "Table s",
+ "Tab les",
+ "T ables",
+ "▁da von",
+ "▁dav on",
+ "init ialize",
+ "initial ize",
+ "]= \"",
+ "] =\"",
+ "▁B ody",
+ "▁Bo dy",
+ "▁Bod y",
+ "▁ Body",
+ "▁U pper",
+ "▁Up per",
+ "▁ Upper",
+ "▁Col lect",
+ "▁Coll ect",
+ "▁ Collect",
+ "▁Zür ich",
+ "Hor izontal",
+ "Ty p",
+ "T yp",
+ "▁polít ico",
+ "▁Rewrite Cond",
+ "▁h oped",
+ "▁hope d",
+ "▁ho ped",
+ "▁hop ed",
+ "▁anx ious",
+ "Li ter",
+ "L iter",
+ "ja hr",
+ "j ahr",
+ "▁ass emble",
+ "▁assemb le",
+ "▁c rypt",
+ "▁cry pt",
+ "lah oma",
+ "AS H",
+ "A SH",
+ "▁Б ри",
+ "▁C ic",
+ "▁Ci c",
+ "tw itter",
+ "hy per",
+ "▁T ell",
+ "▁Te ll",
+ "▁Tel l",
+ "іль ки",
+ "во бо",
+ "▁ba zie",
+ "▁baz ie",
+ "▁contempor ary",
+ "▁Param eter",
+ "▁Para meter",
+ "▁ Parameter",
+ "st wa",
+ "▁bek end",
+ "co ck",
+ "c ock",
+ "pre vious",
+ "prev ious",
+ "en ska",
+ "ens ka",
+ "ensk a",
+ "▁c aller",
+ "▁cal ler",
+ "▁call er",
+ "]] )",
+ "] ])",
+ "▁R az",
+ "▁Ra z",
+ "▁Se lon",
+ "▁Sel on",
+ "▁propos al",
+ "▁b ý",
+ "▁S ied",
+ "▁Sie d",
+ "▁Si ed",
+ "▁Arbe its",
+ "▁Arbeit s",
+ "▁p ride",
+ "▁pr ide",
+ "▁pri de",
+ "▁sl ope",
+ "▁slo pe",
+ "id é",
+ "grad ient",
+ "▁Дже рела",
+ "▁S H",
+ "▁ SH",
+ "▁раз рабо",
+ "ivers ity",
+ "спо дар",
+ "\\{ \\",
+ "\\ {\\",
+ "▁с тали",
+ "▁ст али",
+ "▁ста ли",
+ "▁стал и",
+ "▁Ein zel",
+ "▁Einz el",
+ "▁rg ba",
+ "▁A nim",
+ "▁An im",
+ "▁ Anim",
+ "▁a lles",
+ "▁al les",
+ "▁all es",
+ "▁alle s",
+ "▁ alles",
+ "ба р",
+ "б ар",
+ "er te",
+ "ert e",
+ "▁réalis é",
+ "▁réal isé",
+ "Inst itut",
+ "▁mar kup",
+ "▁mark up",
+ "▁v ars",
+ "▁var s",
+ "▁va rs",
+ "▁ vars",
+ "▁g am",
+ "▁ga m",
+ "▁Васи ль",
+ "iz za",
+ "izz a",
+ "i zza",
+ "▁C ob",
+ "▁Co b",
+ "▁M etal",
+ "▁Me tal",
+ "▁Met al",
+ "▁Meta l",
+ "▁le ak",
+ "▁L anc",
+ "▁La nc",
+ "▁Lan c",
+ "Sw itch",
+ "De lay",
+ "Del ay",
+ "at uur",
+ "atu ur",
+ "▁че ты",
+ "▁анг лий",
+ "▁leg acy",
+ "▁desar roll",
+ "▁top ological",
+ "▁jewe ils",
+ "▁Nederland se",
+ "▁atmos phere",
+ "ur ban",
+ "urb an",
+ "▁s lov",
+ "▁sl ov",
+ "▁slo v",
+ "▁law yer",
+ "pe cially",
+ "▁altern ate",
+ "▁para met",
+ "▁param et",
+ "▁establish ment",
+ "▁wood s",
+ "▁wo ods",
+ "P D",
+ "▁на и",
+ "▁m ang",
+ "▁ma ng",
+ "▁man g",
+ "▁wechsel te",
+ "сь ку",
+ "ськ у",
+ ". =",
+ "▁fif teen",
+ "SU M",
+ "S UM",
+ "▁F ro",
+ "▁Fr o",
+ "▁L ED",
+ "▁LE D",
+ "▁ LED",
+ "ow ano",
+ "owa no",
+ "owan o",
+ "стви е",
+ "▁D onnées",
+ "to l",
+ "t ol",
+ "ży n",
+ "ż yn",
+ "cre f",
+ "cr ef",
+ "c ref",
+ "стви и",
+ "ho rn",
+ "hor n",
+ "h orn",
+ "▁со об",
+ "▁обо ро",
+ "▁Comp lete",
+ "▁Comple te",
+ "▁ Complete",
+ "“ )",
+ "▁kind ly",
+ "▁Cham ber",
+ "s ég",
+ "W H",
+ "▁amb ient",
+ "к ро",
+ "▁ch eval",
+ "▁che val",
+ "▁на писа",
+ "fl u",
+ "f lu",
+ "▁Off iz",
+ "ma te",
+ "mat e",
+ "m ate",
+ "nat ural",
+ "n atural",
+ "se par",
+ "sep ar",
+ "em pre",
+ "emp re",
+ "View Holder",
+ "f w",
+ "▁le tech",
+ "▁let ech",
+ "▁tra iling",
+ "▁trail ing",
+ "at ri",
+ "atr i",
+ "a tri",
+ "▁G ó",
+ "▁B onn",
+ "▁Bo nn",
+ "▁Bon n",
+ "▁un likely",
+ "▁unlike ly",
+ "RA M",
+ "R AM",
+ "en st",
+ "ens t",
+ "St ats",
+ "Stat s",
+ "▁поли тиче",
+ ")- -(",
+ ")-- (",
+ "▁t rom",
+ "▁tr om",
+ "▁tro m",
+ "!. ..",
+ "! ...",
+ "▁Mean while",
+ "ст ана",
+ "ста на",
+ "стан а",
+ "▁Re ino",
+ "▁Rein o",
+ "▁A rist",
+ "▁Ar ist",
+ "▁Ari st",
+ "$} }%",
+ "$ }}%",
+ "▁so lem",
+ "▁sol em",
+ "▁sole m",
+ "clos ure",
+ "ign ation",
+ "ło d",
+ "ł od",
+ "▁di vor",
+ "▁div or",
+ "▁между народ",
+ "=\" ",
+ "▁m olt",
+ "▁mo lt",
+ "▁mol t",
+ "▁sk ills",
+ "▁skill s",
+ "▁C ir",
+ "▁Ci r",
+ "▁Des pués",
+ "▁Desp ués",
+ "▁l un",
+ "▁lu n",
+ "▁cor on",
+ "▁co ron",
+ "▁Com ics",
+ "сто ри",
+ "стор и",
+ "с тори",
+ "▁It ems",
+ "▁Item s",
+ "▁ Items",
+ "▁Th ink",
+ "и гра",
+ "▁g rows",
+ "▁gr ows",
+ "▁gro ws",
+ "▁grow s",
+ "port al",
+ "por tal",
+ "▁n ich",
+ "▁ni ch",
+ "▁nic h",
+ "▁restrict ions",
+ "▁restriction s",
+ "▁L au",
+ "▁La u",
+ "ше ння",
+ "шен ня",
+ "▁So zial",
+ "▁к і",
+ "▁ кі",
+ "ma na",
+ "man a",
+ "m ana",
+ "▁lie utenant",
+ "Att r",
+ "At tr",
+ "ume ric",
+ "umer ic",
+ "▁dr ives",
+ "▁drive s",
+ "▁dri ves",
+ "▁driv es",
+ "as is",
+ "asi s",
+ "ба й",
+ "N L",
+ "Zyg ote",
+ "phys ics",
+ "▁intern ally",
+ "▁internal ly",
+ "ва ется",
+ "вает ся",
+ "H idden",
+ "▁Да та",
+ "▁un safe",
+ "▁R oc",
+ "▁Ro c",
+ "▁instanti ate",
+ "▁instant iate",
+ "ud ni",
+ "▁R oom",
+ "▁Ro om",
+ "▁П ред",
+ "▁Пре д",
+ "▁m aja",
+ "▁ma ja",
+ "▁maj a",
+ "ach ment",
+ "u uid",
+ "Project s",
+ "Gr e",
+ "G re",
+ "▁в зя",
+ "▁вз я",
+ "▁Bl ood",
+ "▁Blo od",
+ "ic ile",
+ "ici le",
+ "i cile",
+ "▁N ouvelle",
+ "Do es",
+ "▁nie uwe",
+ "ál e",
+ "á le",
+ "an gs",
+ "ang s",
+ "we ak",
+ "▁a antal",
+ "▁aan tal",
+ "▁Е в",
+ "▁Dres den",
+ "▁L ost",
+ "▁Lo st",
+ "▁Los t",
+ "ка та",
+ "▁invol ve",
+ "▁decl aring",
+ "▁decla ring",
+ "▁declar ing",
+ "▁Polit ical",
+ "ér ez",
+ "ére z",
+ "é rez",
+ "ko p",
+ "k op",
+ "not ify",
+ "▁C urt",
+ "▁Cu rt",
+ "▁Cur t",
+ "▁schließ lich",
+ "gh an",
+ "g han",
+ "це на",
+ "цен а",
+ "ц ена",
+ "▁kw iet",
+ "üg el",
+ "üge l",
+ "ü gel",
+ "▁S ob",
+ "▁So b",
+ "▁sub str",
+ "▁subst r",
+ "▁subs tr",
+ "▁ substr",
+ "▁el len",
+ "▁elle n",
+ "▁ell en",
+ "▁ ellen",
+ "ion ario",
+ "iona rio",
+ "en son",
+ "ens on",
+ "enso n",
+ "WI N",
+ "W IN",
+ "спо рт",
+ "em er",
+ "eme r",
+ "e mer",
+ "no me",
+ "nom e",
+ "n ome",
+ "▁sm iled",
+ "▁smile d",
+ "▁Sch midt",
+ "▁sm oke",
+ "▁T oken",
+ "▁To ken",
+ "▁Tok en",
+ "▁ Token",
+ "▁v ague",
+ "▁va gue",
+ "▁pro vision",
+ "▁prov ision",
+ "ya ml",
+ "y aml",
+ "ни тель",
+ "ните ль",
+ "on ial",
+ "oni al",
+ "onia l",
+ "é poque",
+ "▁N C",
+ "▁ NC",
+ "▁N FL",
+ "te ck",
+ "▁al lo",
+ "▁all o",
+ "▁ allo",
+ "▁préc éd",
+ "cent ral",
+ "▁ma jd",
+ "▁maj d",
+ "▁ch rom",
+ "▁chr om",
+ "▁ chrom",
+ "▁Z um",
+ "▁Zu m",
+ "ver so",
+ "vers o",
+ "▁verschied enen",
+ "▁ста ро",
+ "▁стар о",
+ "▁qu elle",
+ "▁que lle",
+ "▁q uelle",
+ "▁quel le",
+ "▁ quelle",
+ "▁r ép",
+ "▁ré p",
+ "RO W",
+ "R OW",
+ "▁i hnen",
+ "▁ih nen",
+ "▁ihn en",
+ "▁sens ible",
+ "▁sen sible",
+ "| $",
+ "▁sc hw",
+ "▁sch w",
+ "▁B R",
+ "▁ BR",
+ "▁O ptions",
+ "▁Option s",
+ "▁Opt ions",
+ "▁ Options",
+ "▁t ens",
+ "▁te ns",
+ "▁ten s",
+ "▁conqu ist",
+ "▁l ieß",
+ "▁lie ß",
+ "▁ ließ",
+ "ov is",
+ "ovi s",
+ "o vis",
+ "▁мі ста",
+ "▁міс та",
+ "▁e la",
+ "▁el a",
+ "▁ ela",
+ "rif ice",
+ "r ifice",
+ "▁l ok",
+ "▁lo k",
+ "▁Queens land",
+ "B inary",
+ "▁Ra hmen",
+ "▁Rah men",
+ "▁a bol",
+ "▁ab ol",
+ "▁ abol",
+ "▁č ást",
+ "▁Ed inburgh",
+ "in de",
+ "ind e",
+ "i nde",
+ "▁calcul ating",
+ "▁calc ulating",
+ "▁O regon",
+ "▁le git",
+ "▁leg it",
+ "▁Nach dem",
+ "at hon",
+ "ath on",
+ "P rivate",
+ "illa ume",
+ "▁ob servable",
+ "▁observ able",
+ "le ans",
+ "lean s",
+ "lea ns",
+ "▁remark ed",
+ "▁h alt",
+ "▁ha lt",
+ "▁hal t",
+ "▁ halt",
+ "ни цы",
+ "ниц ы",
+ "▁st amp",
+ "▁sta mp",
+ "▁stam p",
+ "▁Ad v",
+ "Lo uis",
+ "Lou is",
+ "im ming",
+ "imm ing",
+ "gru ppe",
+ "▁Pol icy",
+ "▁ Policy",
+ "▁v rij",
+ "▁vr ij",
+ "ft rag",
+ "▁off ices",
+ "▁offic es",
+ "▁office s",
+ "▁particip ated",
+ "▁es col",
+ "▁esc ol",
+ "▁\" ",
+ "▁\"< /",
+ "▁nombre uses",
+ "▁d ivid",
+ "▁di vid",
+ "▁div id",
+ "▁ad vis",
+ "▁adv is",
+ "лта ти",
+ "▁= =>",
+ "▁== >",
+ "Ori entation",
+ "ci d",
+ "c id",
+ "Car t",
+ "Ca rt",
+ "C art",
+ "▁m urm",
+ "▁mu rm",
+ "▁mur m",
+ "▁ass ez",
+ "▁asse z",
+ "▁l inking",
+ "▁link ing",
+ "▁lin king",
+ "build ing",
+ "▁rec onna",
+ "▁recon na",
+ "▁s hook",
+ "▁sh ook",
+ "▁sho ok",
+ "man aged",
+ "mana ged",
+ "land a",
+ "lan da",
+ "l anda",
+ "▁Le ón",
+ "▁cré ation",
+ "до й",
+ "oc ity",
+ "oci ty",
+ "o city",
+ "▁w ij",
+ "▁ wij",
+ "▁wie ś",
+ "xt art",
+ "▁M ove",
+ "▁Mo ve",
+ "▁Mov e",
+ "▁ Move",
+ "lung en",
+ "l ungen",
+ "ству ет",
+ "or ney",
+ "orn ey",
+ "option al",
+ "opt ional",
+ "ma cro",
+ "mac ro",
+ "Cond ition",
+ "▁square s",
+ "▁squ ares",
+ "▁mist aken",
+ "▁mistake n",
+ "án t",
+ "á nt",
+ "▁R is",
+ "▁Ri s",
+ "▁sent ences",
+ "▁sentence s",
+ "er ea",
+ "ere a",
+ "e rea",
+ "▁m ij",
+ "▁mi j",
+ "Un d",
+ "U nd",
+ "▁nom br",
+ "z A",
+ "▁In dependent",
+ "▁Indep endent",
+ "▁Independ ent",
+ "▁p review",
+ "▁pre view",
+ "▁prev iew",
+ "▁ preview",
+ "im as",
+ "ima s",
+ "i mas",
+ "▁m ales",
+ "▁ma les",
+ "▁mal es",
+ "▁male s",
+ "in ental",
+ "inen tal",
+ "inent al",
+ "Th ank",
+ "▁p opol",
+ "▁po pol",
+ "▁pop ol",
+ "▁p over",
+ "▁po ver",
+ "▁pov er",
+ "▁gr asp",
+ "▁gra sp",
+ "▁im ped",
+ "▁imp ed",
+ "▁campion ato",
+ "▁W ei",
+ "▁We i",
+ "▁t itled",
+ "▁title d",
+ "▁tit led",
+ "▁A demás",
+ "▁Pass word",
+ "▁ Password",
+ "▁P am",
+ "▁Pa m",
+ "UI LD",
+ "▁ли пня",
+ "wer b",
+ "we rb",
+ "w erb",
+ "........ ........",
+ "▁R ío",
+ "▁te eth",
+ "b p",
+ "▁S W",
+ "▁ SW",
+ "ul aire",
+ "ula ire",
+ "▁se ized",
+ "▁sei zed",
+ "▁St ef",
+ "▁Ste f",
+ "ú l",
+ "▁v iz",
+ "▁vi z",
+ "ion y",
+ "io ny",
+ "i ony",
+ "▁j unt",
+ "▁ju nt",
+ "▁jun t",
+ "▁kter á",
+ "▁wrześ nia",
+ "< >",
+ "▁s urg",
+ "▁su rg",
+ "▁sur g",
+ "▁tu tte",
+ "▁tut te",
+ "▁H ob",
+ "▁Ho b",
+ "по від",
+ "пов ід",
+ "▁w ohl",
+ "▁wo hl",
+ "▁ wohl",
+ "▁t rag",
+ "▁tr ag",
+ "▁tra g",
+ "▁C rown",
+ "▁Cr own",
+ "▁Cro wn",
+ "▁Crow n",
+ "▁tr ova",
+ "▁tro va",
+ "▁trov a",
+ "сто ву",
+ "стов у",
+ "▁Vien na",
+ "ese hen",
+ "▁met ropol",
+ "▁reflect ed",
+ "те та",
+ "тет а",
+ "т ета",
+ "▁trad uc",
+ "▁tradu c",
+ "▁B ast",
+ "▁Bas t",
+ "▁Ba st",
+ "▁ersch ien",
+ "wo ord",
+ "() \"",
+ "( )\"",
+ "ta let",
+ "tal et",
+ "t alet",
+ "▁ro ads",
+ "▁road s",
+ "ве дения",
+ "веде ния",
+ "ühr ung",
+ "▁c ogn",
+ "▁co gn",
+ "▁V alle",
+ "▁Val le",
+ "▁Va lle",
+ "▁Vall e",
+ "▁land ing",
+ "▁lan ding",
+ "▁Re gex",
+ "▁Reg ex",
+ "▁I owa",
+ "▁Io wa",
+ "dz iał",
+ "d ział",
+ "▁erre ichte",
+ "au m",
+ "a um",
+ "▁found er",
+ "▁fo under",
+ "▁fou nder",
+ "ap olis",
+ "Comp iler",
+ "▁k op",
+ "▁ko p",
+ "▁ kop",
+ "▁m arc",
+ "▁ma rc",
+ "▁mar c",
+ "▁те ритор",
+ ")) `",
+ ") )`",
+ "▁l ei",
+ "▁le i",
+ "▁ lei",
+ "ge on",
+ "geo n",
+ "▁weap ons",
+ "▁weapon s",
+ "▁h orn",
+ "▁hor n",
+ "▁ho rn",
+ "▁ horn",
+ "▁el if",
+ "▁ elif",
+ "▁Cap ital",
+ "▁Capit al",
+ "ć e",
+ "▁for all",
+ "▁ forall",
+ "▁э та",
+ "pre view",
+ "prev iew",
+ "p review",
+ "▁D NA",
+ "▁s id",
+ "▁si d",
+ "or ch",
+ "▁R as",
+ "▁Ra s",
+ "▁a rab",
+ "▁ar ab",
+ "▁ara b",
+ "▁ arab",
+ "Be st",
+ "B est",
+ "▁с чита",
+ "▁L ópez",
+ "an ça",
+ "▁fun kc",
+ "▁t ienen",
+ "▁tiene n",
+ "▁ti enen",
+ "▁tie nen",
+ "; &",
+ "m useum",
+ "▁E rr",
+ "▁Er r",
+ "▁ Err",
+ "▁re sort",
+ "▁res ort",
+ "No v",
+ "N ov",
+ "▁k al",
+ "▁ka l",
+ "▁ kal",
+ "M W",
+ "ш ь",
+ "an chor",
+ "anc hor",
+ "anch or",
+ "▁ро ман",
+ "le ading",
+ "lea ding",
+ "▁m anten",
+ "▁ma nten",
+ "▁man ten",
+ "▁mant en",
+ "▁Sil va",
+ "da de",
+ "d ade",
+ "▁design ated",
+ "▁rev ista",
+ "▁revis ta",
+ "O ct",
+ "per cent",
+ "▁у ні",
+ "ident ifier",
+ "ma ss",
+ "mas s",
+ "m ass",
+ "@ @",
+ "uls ion",
+ "ger meister",
+ "g ermeister",
+ "▁pred icted",
+ "▁predict ed",
+ "▁с ви",
+ "жно й",
+ "ж ной",
+ "▁Er geb",
+ "▁c ust",
+ "▁cu st",
+ "▁remove s",
+ "▁remov es",
+ "ch arg",
+ "char g",
+ "cha rg",
+ "при мер",
+ "▁for ming",
+ "▁form ing",
+ "as ma",
+ "asm a",
+ "std out",
+ "F un",
+ "ym e",
+ "y me",
+ "ter ed",
+ "te red",
+ "tere d",
+ "t ered",
+ "urs ive",
+ "ig hed",
+ "igh ed",
+ "▁сле д",
+ "▁ след",
+ "ver band",
+ "verb and",
+ "▁LO G",
+ "▁ LOG",
+ "ra ms",
+ "ram s",
+ "r ams",
+ "éo n",
+ "é on",
+ "en dra",
+ "end ra",
+ "▁Be reich",
+ "▁Bere ich",
+ "▁tempor al",
+ "▁temp oral",
+ "▁tempo ral",
+ "▁lang ue",
+ "▁lan gue",
+ "▁I nn",
+ "▁In n",
+ "▁more over",
+ "▁tutorial s",
+ "M iddle",
+ "▁совет ский",
+ "▁mainten ance",
+ "as ures",
+ "asure s",
+ "▁vál to",
+ "BA SE",
+ "B ASE",
+ "▁disapp ear",
+ "ски я",
+ "▁conoc ido",
+ "▁На у",
+ "▁Li bert",
+ "▁Lib ert",
+ "▁Liber t",
+ "▁Har old",
+ "▁life time",
+ "▁lif etime",
+ "▁T ür",
+ "▁za wod",
+ "▁zaw od",
+ "om ic",
+ "omi c",
+ "o mic",
+ "▁Retrie ved",
+ "arch itecture",
+ "č ka",
+ "iform es",
+ "develop ment",
+ "ord nung",
+ "In f",
+ "le ben",
+ "leb en",
+ "l eben",
+ "▁St ars",
+ "▁Sta rs",
+ "▁Star s",
+ "sign al",
+ "sig nal",
+ "▁gram mar",
+ "▁cor so",
+ "▁cors o",
+ "▁W agner",
+ "▁ge ht",
+ "▁royal e",
+ "▁roy ale",
+ "wa rn",
+ "war n",
+ "w arn",
+ "um bled",
+ "umb led",
+ "umble d",
+ "▁inst it",
+ "▁ins tit",
+ "▁Ш и",
+ "h h",
+ "▁ref uge",
+ "▁favor ite",
+ "ier to",
+ "iert o",
+ "▁cond ado",
+ "▁T her",
+ "▁The r",
+ "▁Th er",
+ "▁человек а",
+ "▁челове ка",
+ "▁F ood",
+ "▁Foo d",
+ "▁Fo od",
+ "▁se izo",
+ "▁sei zo",
+ "▁Init ialize",
+ "▁Initial ize",
+ "▁con nu",
+ "▁conn u",
+ "▁over lap",
+ "▁E mil",
+ "▁Em il",
+ "▁Mart í",
+ "▁жовт ня",
+ "er va",
+ "erv a",
+ "▁bo ats",
+ "▁boat s",
+ "a ções",
+ "▁der rot",
+ "▁m alloc",
+ "▁mal loc",
+ "▁ malloc",
+ "▁con ject",
+ "▁conj ect",
+ "j k",
+ "▁s are",
+ "▁sa re",
+ "▁sar e",
+ "ле мен",
+ "лем ен",
+ "▁s ums",
+ "▁su ms",
+ "▁sum s",
+ "Author ization",
+ "▁K un",
+ "▁Ku n",
+ "]$ ,",
+ "] $,",
+ "geme inde",
+ "gemein de",
+ "g emeinde",
+ "od ot",
+ "odo t",
+ "o dot",
+ "de fin",
+ "def in",
+ "▁e mission",
+ "▁em ission",
+ "▁Кра с",
+ "▁app art",
+ "▁ap part",
+ "▁appar t",
+ "▁stop ping",
+ "▁sto pping",
+ "▁С ред",
+ "▁conj ug",
+ "▁ins ight",
+ "▁Broad cast",
+ "▁PM ID",
+ "▁adv antages",
+ "▁advantage s",
+ "en es",
+ "ene s",
+ "e nes",
+ "▁res idence",
+ "▁resid ence",
+ "lj en",
+ "l jen",
+ "iss eur",
+ "isse ur",
+ "▁pubblic ato",
+ "▁Git Hub",
+ "▁Per u",
+ "▁Pe ru",
+ "▁galax ies",
+ "▁annot ations",
+ "▁annotation s",
+ "ga s",
+ "g as",
+ "▁ré pond",
+ "▁rép ond",
+ "J s",
+ "▁independent ly",
+ "▁independ ently",
+ "N P",
+ "▁in qu",
+ "▁gr ounds",
+ "▁ground s",
+ "Com ponents",
+ "Component s",
+ "▁a nten",
+ "▁an ten",
+ "▁ant en",
+ "▁ante n",
+ "▁ anten",
+ "▁в з",
+ "▁h os",
+ "▁ho s",
+ "▁ hos",
+ "▁s int",
+ "▁si nt",
+ "▁sin t",
+ "▁h iding",
+ "▁hi ding",
+ "▁hid ing",
+ "▁wojew ództ",
+ "Message s",
+ "Mess ages",
+ "▁по каза",
+ "▁пока за",
+ "== =",
+ "= ==",
+ "▁Ab stract",
+ "▁ Abstract",
+ "▁l äng",
+ "▁län g",
+ "▁lä ng",
+ "▁Form ula",
+ "da wn",
+ "d awn",
+ "▁design s",
+ "Im g",
+ "▁Portug uese",
+ "▁incl uy",
+ "▁inclu y",
+ "avig ator",
+ "▁Bro thers",
+ "▁cont inent",
+ "▁contin ent",
+ "▁evident ly",
+ "ra ce",
+ "rac e",
+ "r ace",
+ "ць кого",
+ "▁re ck",
+ "▁rec k",
+ "▁ reck",
+ "▁сер пня",
+ "▁G rey",
+ "▁Gr ey",
+ "▁Gre y",
+ "▁appe al",
+ "▁un like",
+ "▁power shell",
+ "▁pow ershell",
+ "▁powers hell",
+ "▁r acc",
+ "▁ra cc",
+ "▁rac c",
+ "fer s",
+ "fe rs",
+ "f ers",
+ "▁bur ning",
+ "▁burn ing",
+ "fas st",
+ "fass t",
+ "inst alled",
+ "install ed",
+ "▁G ive",
+ "▁Gi ve",
+ "▁col onial",
+ "▁colon ial",
+ "▁ €",
+ "▁R ö",
+ "▁ch rist",
+ "▁chr ist",
+ "ne hm",
+ "neh m",
+ "та м",
+ "▁cor po",
+ "▁con virti",
+ "yt er",
+ "y ter",
+ "S ym",
+ "▁Gree ce",
+ "▁m oth",
+ "▁mo th",
+ "▁mot h",
+ "▁Joh an",
+ "▁Jo han",
+ "▁mon arch",
+ "▁Down load",
+ "▁ Download",
+ "▁c raft",
+ "▁cr aft",
+ "▁cra ft",
+ "▁ craft",
+ "u ž",
+ "▁Lu ke",
+ "▁suf fix",
+ "▁suff ix",
+ "\\ /",
+ "Ha ve",
+ "H ave",
+ "▁ка рь",
+ "▁кар ь",
+ "▁comfort able",
+ "▁t ips",
+ "▁tip s",
+ "▁ti ps",
+ "▁П ісля",
+ "▁бро ја",
+ "▁ин форма",
+ "M Q",
+ "бра н",
+ "б ран",
+ "▁t x",
+ "▁ tx",
+ "▁sl aves",
+ "▁sla ves",
+ "▁slave s",
+ "▁fire wall",
+ "▁For ces",
+ "▁Force s",
+ "at if",
+ "ati f",
+ "▁Qu ellen",
+ "▁thé âtre",
+ "ль ных",
+ "▁располо жен",
+ "▁Det ails",
+ "▁ Details",
+ "k ą",
+ "▁long itud",
+ "IN ST",
+ "▁n aval",
+ "▁na val",
+ "▁nav al",
+ "Fern seh",
+ "es sel",
+ "ess el",
+ "esse l",
+ "Gr ad",
+ "G rad",
+ "▁be lang",
+ "▁bel ang",
+ "▁a ggi",
+ "▁ag gi",
+ "▁ aggi",
+ "Zygote Init",
+ "ł ów",
+ "▁S ug",
+ "▁Su g",
+ "si l",
+ "s il",
+ "▁ex terior",
+ "щ і",
+ "OR D",
+ "en ser",
+ "ens er",
+ "ense r",
+ "▁rapid e",
+ "▁rap ide",
+ "▁тем пера",
+ "in cie",
+ "inci e",
+ "inc ie",
+ "S i",
+ "av am",
+ "ava m",
+ "ar ded",
+ "ard ed",
+ "arde d",
+ "▁Ad ded",
+ "▁Add ed",
+ "End point",
+ "hard t",
+ "har dt",
+ "ст ран",
+ "стра н",
+ "стр ан",
+ "▁est ilo",
+ "▁H az",
+ "▁Ha z",
+ "▁mus ste",
+ "▁muss te",
+ "u o",
+ "ii i",
+ "i ii",
+ "▁ř í",
+ "▁ ří",
+ "an zen",
+ "anz en",
+ "anze n",
+ "же ний",
+ "ah a",
+ "a ha",
+ "ARN ING",
+ "▁re nov",
+ "▁ren ov",
+ "▁div ine",
+ "▁convin ced",
+ "▁hum ans",
+ "▁human s",
+ "▁hu mans",
+ "▁depart ure",
+ "▁Med iter",
+ "▁Medi ter",
+ "q a",
+ "▁poss essed",
+ "▁possess ed",
+ "▁цер кви",
+ "gi v",
+ "g iv",
+ "▁сво ї",
+ "▁Ort ste",
+ "▁Orts te",
+ "R ich",
+ "pu is",
+ "p uis",
+ "in crement",
+ "▁Hann over",
+ "▁u cz",
+ "Do ne",
+ "Don e",
+ "D one",
+ "▁alg uns",
+ "FI X",
+ "F IX",
+ "▁Her itage",
+ "remove Class",
+ "фе р",
+ "ф ер",
+ "▁a bc",
+ "▁ab c",
+ "▁ abc",
+ "D r",
+ "▁се мей",
+ "▁сем ей",
+ "{ :",
+ "▁se ule",
+ "▁seu le",
+ "▁seul e",
+ "zeich nungen",
+ "zeichnung en",
+ "ad dy",
+ "add y",
+ "▁Par ís",
+ "üss eld",
+ "▁re ception",
+ "▁rece ption",
+ "fo lio",
+ "fol io",
+ "ti ny",
+ "t iny",
+ "▁recens ement",
+ "▁N ur",
+ "▁Nu r",
+ "▁k ier",
+ "▁ki er",
+ "▁g mina",
+ "▁gmin a",
+ "sta at",
+ "ánd ose",
+ "че ская",
+ "▁spe aker",
+ "▁speak er",
+ "▁expon ential",
+ "▁exponent ial",
+ "▁D ieu",
+ "▁Die u",
+ "▁Di eu",
+ "▁при з",
+ "▁пр из",
+ "▁Raf ael",
+ "▁gg plot",
+ "▁Tem plate",
+ "▁Temp late",
+ "▁ Template",
+ "ou re",
+ "our e",
+ "o ure",
+ "▁In ner",
+ "▁Inn er",
+ "▁ Inner",
+ "og ne",
+ "ogn e",
+ "ig are",
+ "iga re",
+ "▁Ar te",
+ "▁Art e",
+ "▁C ov",
+ "▁Co v",
+ "▁auf grund",
+ "▁Б ы",
+ "▁cerem ony",
+ "▁S part",
+ "▁Sp art",
+ "ject ive",
+ "y i",
+ "▁in izi",
+ "▁l atin",
+ "▁lat in",
+ "▁Never theless",
+ "▁D one",
+ "▁Do ne",
+ "▁Don e",
+ "▁ Done",
+ "т ря",
+ "▁A rr",
+ "▁Ar r",
+ "▁ Arr",
+ "se ason",
+ "▁скла ду",
+ "▁pod czas",
+ "▁Beaut iful",
+ "▁Weltkrie g",
+ "▁з о",
+ "▁ зо",
+ "▁over come",
+ "▁Pr aha",
+ "▁Pra ha",
+ "▁рай ону",
+ "▁райо ну",
+ "▁район у",
+ "▁sub scription",
+ "▁subs cription",
+ "▁subscri ption",
+ "ig ent",
+ "igen t",
+ "ige nt",
+ "i gent",
+ "▁по ка",
+ "la tex",
+ "lat ex",
+ "late x",
+ "▁b each",
+ "▁be ach",
+ "▁ро ках",
+ "ge g",
+ "g eg",
+ "▁pro bl",
+ "▁prob l",
+ "arg uments",
+ "argument s",
+ "▁organ izations",
+ "▁organiz ations",
+ "▁organization s",
+ "▁N an",
+ "▁Na n",
+ "▁st ones",
+ "▁sto nes",
+ "▁stone s",
+ "▁H unter",
+ "▁Hun ter",
+ "▁regular ly",
+ "шо го",
+ "ш ого",
+ "▁flex ible",
+ "op ts",
+ "opt s",
+ "o pts",
+ "á ř",
+ "wi tz",
+ "w itz",
+ "▁' )",
+ "▁ ')",
+ "PA SS",
+ "P ASS",
+ "▁k raj",
+ "▁kr aj",
+ "▁kra j",
+ "▁f ake",
+ "▁fa ke",
+ "he its",
+ "heit s",
+ "os ph",
+ "osp h",
+ "parse Int",
+ "F ALSE",
+ "▁prof ess",
+ "▁profes s",
+ "pe ople",
+ "▁pre cip",
+ "▁prec ip",
+ "dir name",
+ "▁per pet",
+ "▁Up dated",
+ "▁Update d",
+ "▁ Updated",
+ "ra yed",
+ "ray ed",
+ "▁prov oc",
+ "▁тра вня",
+ "▁трав ня",
+ "▁categ orie",
+ "▁categor ie",
+ "▁те о",
+ "с ну",
+ "ot r",
+ "o tr",
+ "▁Вер хов",
+ "▁comp ét",
+ "Co st",
+ "C ost",
+ "▁w ider",
+ "▁wide r",
+ "▁wid er",
+ "▁Ob viously",
+ "пи сан",
+ "писа н",
+ "пис ан",
+ "▁на стоя",
+ "▁see king",
+ "▁seek ing",
+ "() ),",
+ "()) ,",
+ "( )),",
+ "▁é quipe",
+ "▁équip e",
+ "▁ équipe",
+ "▁comm its",
+ "▁commit s",
+ "▁S vens",
+ "▁Sv ens",
+ "я бре",
+ "at ern",
+ "ate rn",
+ "ater n",
+ "a tern",
+ "▁h eter",
+ "▁he ter",
+ "▁het er",
+ "▁Boot strap",
+ "én é",
+ "é né",
+ "▁deriv atives",
+ "▁derivative s",
+ "▁Det roit",
+ "▁provin cial",
+ "▁provincia l",
+ "onom ie",
+ "E B",
+ "▁c uer",
+ "▁cu er",
+ "▁от носи",
+ "▁отно си",
+ "▁не й",
+ "▁н ей",
+ "▁ ней",
+ ") ».",
+ "▁Ci udad",
+ "IA L",
+ "I AL",
+ "zy st",
+ "z yst",
+ ")\" )",
+ ") \")",
+ "▁Al c",
+ "bl ogs",
+ "blog s",
+ "blo gs",
+ "b logs",
+ "▁par mi",
+ "▁Album s",
+ "▁Alb ums",
+ "▁Bo liv",
+ "▁Bol iv",
+ "▁c lés",
+ "▁cl és",
+ "Product s",
+ "uer do",
+ "▁ge lang",
+ "▁gel ang",
+ "zn ik",
+ "z nik",
+ "ha gen",
+ "h agen",
+ "an onymous",
+ "▁sv g",
+ "▁ svg",
+ "▁Cons eil",
+ "▁Conse il",
+ "▁A ri",
+ "▁Ar i",
+ "col i",
+ "co li",
+ "c oli",
+ "▁c zy",
+ "▁cz y",
+ "▁ czy",
+ "▁C V",
+ "▁ CV",
+ "▁f ord",
+ "▁for d",
+ "▁fo rd",
+ "▁ ford",
+ "▁Au ßer",
+ "▁Auß er",
+ "▁C I",
+ "▁ CI",
+ "▁t empt",
+ "▁tem pt",
+ "▁temp t",
+ "▁Organ isation",
+ "á š",
+ "▁cy cles",
+ "▁cycle s",
+ "▁cycl es",
+ "▁ges lacht",
+ "▁лю дей",
+ "ým i",
+ "ý mi",
+ "▁S pieler",
+ "▁Spiel er",
+ "ef e",
+ "e fe",
+ "▁Mar vel",
+ "▁por tal",
+ "▁port al",
+ "▁porta l",
+ "▁ portal",
+ "▁Сер г",
+ "▁g rado",
+ "▁gr ado",
+ "▁gra do",
+ "▁grad o",
+ "▁hand lers",
+ "▁handle rs",
+ "▁handler s",
+ "▁Inter face",
+ "▁ Interface",
+ "AM E",
+ "A ME",
+ "▁ser iously",
+ "▁serious ly",
+ "▁B inding",
+ "▁Bin ding",
+ "▁Bind ing",
+ "▁ Binding",
+ "▁R ang",
+ "▁Ra ng",
+ "▁Ran g",
+ "▁n ada",
+ "▁na da",
+ "▁nad a",
+ "oc e",
+ "o ce",
+ "▁inte gra",
+ "▁integr a",
+ "oc racy",
+ "ocr acy",
+ "▁аль бо",
+ "▁st ability",
+ "▁stabil ity",
+ "Un s",
+ "U ns",
+ "▁v eter",
+ "▁ve ter",
+ "-- ----+",
+ "---- --+",
+ "--- ---+",
+ "------ +",
+ "----- -+",
+ "▁se rait",
+ "▁ser ait",
+ "▁sera it",
+ "▁om itted",
+ "▁uncertain ty",
+ "on ian",
+ "oni an",
+ "onia n",
+ "▁re sto",
+ "▁r esto",
+ "▁res to",
+ "▁rest o",
+ "▁же лез",
+ "▁од ной",
+ "▁одно й",
+ "▁Bevölker ung",
+ "▁K raft",
+ "▁Kr aft",
+ "▁Kra ft",
+ "ст р",
+ "▁Mos cow",
+ "la ne",
+ "lan e",
+ "l ane",
+ "ar ab",
+ "ara b",
+ "a rab",
+ "▁s pole",
+ "▁sp ole",
+ "▁spo le",
+ "▁сво его",
+ "? :",
+ "ST ART",
+ "▁ин тер",
+ "▁инте р",
+ "▁sym pt",
+ "▁Loren zo",
+ "▁ej ec",
+ "▁pros per",
+ "DA T",
+ "D AT",
+ "лимпи й",
+ "▁sh apes",
+ "▁shape s",
+ "value Of",
+ "▁associ ate",
+ "▁Med ien",
+ "▁Medi en",
+ "EN V",
+ "▁с ре",
+ "▁држа ве",
+ "▁the ories",
+ "he b",
+ "h eb",
+ "▁Way ne",
+ "▁String Builder",
+ "iw ers",
+ "i wers",
+ "▁M aps",
+ "▁Ma ps",
+ "▁Map s",
+ "Ph ys",
+ "\\} \\",
+ "\\ }\\",
+ "▁P arte",
+ "▁Par te",
+ "▁Part e",
+ "▁Hud son",
+ "ло н",
+ "л он",
+ "L ng",
+ "▁р ы",
+ "▁ ры",
+ "ст ей",
+ "сте й",
+ "с тей",
+ "la u",
+ "l au",
+ "an cer",
+ "ance r",
+ "anc er",
+ "▁Co ppa",
+ "▁Cop pa",
+ "▁вій сь",
+ "▁u cc",
+ "▁Pat tern",
+ "▁ Pattern",
+ "▁gar bage",
+ "▁Gon zález",
+ "▁Encyc lop",
+ "et ten",
+ "ett en",
+ "ette n",
+ "Ex ternal",
+ "Ext ernal",
+ "RE F",
+ "R EF",
+ "> ;",
+ "lij ke",
+ "lijk e",
+ "▁inter sect",
+ "▁Un less",
+ "▁de eper",
+ "▁deep er",
+ "▁ж і",
+ "▁ жі",
+ "de nt",
+ "den t",
+ "d ent",
+ "le f",
+ "l ef",
+ "▁ch anson",
+ "▁diff us",
+ "▁pr imi",
+ "▁prim i",
+ "▁pri mi",
+ "▁W ieder",
+ "▁Wi eder",
+ "▁Wie der",
+ "▁a ws",
+ "▁aw s",
+ "▁ aws",
+ "ow ana",
+ "owa na",
+ "owan a",
+ "▁so ciale",
+ "▁social e",
+ "▁soci ale",
+ "▁soc iale",
+ "ik k",
+ "i kk",
+ "ль ной",
+ "льно й",
+ "▁div isions",
+ "▁division s",
+ "▁divis ions",
+ "ло со",
+ "▁Cl aud",
+ "▁Cla ud",
+ "▁Y a",
+ "▁v oce",
+ "▁vo ce",
+ "▁voc e",
+ "▁B ranch",
+ "▁Br anch",
+ "▁Bran ch",
+ "▁f itted",
+ "▁fit ted",
+ "or r",
+ "o rr",
+ "ôt el",
+ "ô tel",
+ "st roke",
+ "str oke",
+ "list ener",
+ "listen er",
+ "im an",
+ "ima n",
+ "i man",
+ "во сто",
+ "▁Sh ah",
+ "Int roduction",
+ "▁new line",
+ "▁t ile",
+ "▁til e",
+ "▁ti le",
+ "'] ))",
+ "']) )",
+ "' ]))",
+ "▁trav aux",
+ "▁trava ux",
+ "CON FIG",
+ "▁quadr atic",
+ "on neur",
+ "onn eur",
+ "onne ur",
+ "▁Gi org",
+ "▁ident ific",
+ "éric aine",
+ "érica ine",
+ "▁UI View",
+ "▁ UIView",
+ "▁Lib eral",
+ "▁Liber al",
+ "▁K och",
+ "▁Ko ch",
+ "▁Berlin er",
+ "▁Berl iner",
+ "▁not ifications",
+ "▁notification s",
+ "▁Su san",
+ "▁Sus an",
+ "▁c adre",
+ "▁cad re",
+ "▁K loster",
+ "▁Kl oster",
+ "▁exam ine",
+ "▁е дин",
+ "▁еди н",
+ "▁UN ION",
+ "▁al ten",
+ "▁alt en",
+ "▁alte n",
+ "▁f init",
+ "▁fin it",
+ "▁fi nit",
+ "▁pe dig",
+ "▁ped ig",
+ "cy k",
+ "c yk",
+ "▁mouv ement",
+ "▁mou vement",
+ "IO S",
+ "I OS",
+ "▁бри тан",
+ "▁b out",
+ "▁bo ut",
+ "▁bou t",
+ "▁ав тор",
+ "▁авто р",
+ "ниц тво",
+ "ет о",
+ "е то",
+ "le ra",
+ "ler a",
+ "l era",
+ "cl s",
+ "c ls",
+ "▁L ey",
+ "▁Le y",
+ "am y",
+ "a my",
+ "ag ens",
+ "age ns",
+ "agen s",
+ "a gens",
+ "as hed",
+ "ash ed",
+ "▁ok rę",
+ "г ро",
+ "el lett",
+ "ell ett",
+ "elle tt",
+ "▁F ellow",
+ "▁Fel low",
+ "▁manif old",
+ "$) ,",
+ "$ ),",
+ "ld er",
+ "l der",
+ "▁v oz",
+ "▁vo z",
+ "▁be gg",
+ "▁beg g",
+ "▁b aron",
+ "▁bar on",
+ "▁ba ron",
+ "▁f id",
+ "▁fi d",
+ "▁f iring",
+ "▁fi ring",
+ "▁fir ing",
+ "il da",
+ "ild a",
+ "de k",
+ "d ek",
+ "A U",
+ "it are",
+ "ita re",
+ "itar e",
+ "▁A ra",
+ "▁Ar a",
+ "▁Ex it",
+ "▁ Exit",
+ "▁cin emat",
+ "▁cinema t",
+ "▁int ros",
+ "▁intr os",
+ "▁intro s",
+ "▁contact s",
+ "пе ни",
+ "пен и",
+ "▁m öglich",
+ "▁Singap ore",
+ "str öm",
+ "▁H ern",
+ "▁He rn",
+ "▁Her n",
+ "▁six th",
+ "▁public ations",
+ "▁pub lications",
+ "▁publication s",
+ "vi e",
+ "v ie",
+ "▁H at",
+ "▁Ha t",
+ "▁accept ing",
+ "á c",
+ "st wo",
+ "s two",
+ "▁quiet ly",
+ "Ph oto",
+ "▁b asket",
+ "▁bas ket",
+ "▁eigen values",
+ "▁mé dec",
+ "▁méd ec",
+ "▁O limp",
+ "▁Ol imp",
+ "▁цер ков",
+ "al in",
+ "ali n",
+ "a lin",
+ "con sum",
+ "cons um",
+ "▁l assen",
+ "▁las sen",
+ "▁ lassen",
+ "▁ан ти",
+ "▁S eq",
+ "▁Se q",
+ "▁ Seq",
+ "\"; \r",
+ "\" ;\r",
+ "ra re",
+ "rar e",
+ "r are",
+ "▁$ |\\",
+ "▁$| \\",
+ "▁n ick",
+ "▁ni ck",
+ "▁nic k",
+ "▁ nick",
+ "df lare",
+ "V ec",
+ "bind ung",
+ "▁b g",
+ "▁ bg",
+ "ch anges",
+ "change s",
+ "chan ges",
+ "Day s",
+ "Da ys",
+ "D ays",
+ "▁M ouse",
+ "▁Mo use",
+ "▁Mou se",
+ "▁ Mouse",
+ "▁wait ed",
+ "▁wa ited",
+ "▁Tom atoes",
+ "▁f as",
+ "▁fa s",
+ "▁ fas",
+ "ver te",
+ "vert e",
+ "v erte",
+ "▁success ion",
+ "▁succ ession",
+ "со р",
+ "с ор",
+ "▁s ols",
+ "▁so ls",
+ "▁sol s",
+ "▁R ender",
+ "▁Re nder",
+ "▁Ren der",
+ "▁ Render",
+ "▁lead ership",
+ "▁leader ship",
+ "▁leaders hip",
+ "▁signific ance",
+ "▁ga uche",
+ "▁gau che",
+ "ca no",
+ "can o",
+ "c ano",
+ "▁P ie",
+ "▁Pi e",
+ "enso ort",
+ "▁cam bio",
+ "▁camb io",
+ "▁у з",
+ "▁ende av",
+ "Comp leted",
+ "Comple ted",
+ "Complete d",
+ "▁Архив ная",
+ "j d",
+ "ór ico",
+ "ó rico",
+ "▁church es",
+ "▁an imate",
+ "▁anim ate",
+ "▁ani mate",
+ "▁ animate",
+ "S G",
+ "comp ute",
+ "comput e",
+ "▁uniform ly",
+ "IN IT",
+ "ll es",
+ "lle s",
+ "l les",
+ "Http Request",
+ "К о",
+ "Di ff",
+ "D iff",
+ "▁s ah",
+ "▁sa h",
+ "air o",
+ "ai ro",
+ "a iro",
+ "may be",
+ "UT E",
+ "U TE",
+ "▁D ow",
+ "▁Do w",
+ "hu man",
+ "hum an",
+ "h uman",
+ "▁au rait",
+ "▁aur ait",
+ "dar k",
+ "d ark",
+ "▁re pair",
+ "▁rep air",
+ "▁n er",
+ "▁ne r",
+ "▁ ner",
+ "▁D abei",
+ "▁Da bei",
+ "▁Bo tan",
+ "▁Bot an",
+ "Or iginal",
+ "Origin al",
+ "az ă",
+ "▁N AT",
+ "▁NA T",
+ "im per",
+ "imp er",
+ "▁Y outh",
+ "▁You th",
+ "th es",
+ "the s",
+ "t hes",
+ "▁окру га",
+ "▁F lo",
+ "▁Fl o",
+ "▁break fast",
+ "ur ls",
+ "url s",
+ "▁über nahm",
+ "ár ios",
+ "ário s",
+ "á rios",
+ "▁O range",
+ "▁Or ange",
+ "▁Aff airs",
+ "sk e",
+ "s ke",
+ "▁not ify",
+ "▁ notify",
+ "imo ine",
+ "▁Ar ena",
+ "▁Are na",
+ "▁lib eral",
+ "▁liber al",
+ "▁o bec",
+ "▁ob ec",
+ "if a",
+ "i fa",
+ "gu ez",
+ "gue z",
+ "g uez",
+ "ion o",
+ "io no",
+ "i ono",
+ "пера тор",
+ "▁ret ained",
+ "▁retain ed",
+ "fa iled",
+ "fail ed",
+ "bin e",
+ "bi ne",
+ "b ine",
+ "т ных",
+ "▁CG Rect",
+ "cam era",
+ "ide note",
+ "iden ote",
+ "K B",
+ "▁l ights",
+ "▁light s",
+ "▁P ictures",
+ "▁Picture s",
+ "▁Squad ron",
+ "▁V olk",
+ "▁Vol k",
+ "▁b urg",
+ "▁bu rg",
+ "▁bur g",
+ "▁ burg",
+ ", ]",
+ "G i",
+ "ê que",
+ "make Text",
+ "▁every body",
+ "▁Hy per",
+ "▁Hyp er",
+ "▁De ux",
+ "▁gl ory",
+ "▁glo ry",
+ "pres entation",
+ "present ation",
+ "on ica",
+ "oni ca",
+ "onic a",
+ "o nica",
+ "▁fr ère",
+ "ag et",
+ "age t",
+ "a get",
+ "▁h ints",
+ "▁hint s",
+ "▁hin ts",
+ "▁t unnel",
+ "▁tun nel",
+ "▁E j",
+ "ál is",
+ "á lis",
+ "▁V iv",
+ "▁Vi v",
+ "ствен ных",
+ "▁c aps",
+ "▁cap s",
+ "▁ca ps",
+ "PA RT",
+ "PAR T",
+ "P ART",
+ "oc i",
+ "o ci",
+ "▁p rices",
+ "▁pr ices",
+ "▁pri ces",
+ "▁price s",
+ "curr ency",
+ "c urrency",
+ "▁a chter",
+ "▁ach ter",
+ "▁acht er",
+ "rom agnet",
+ "ge nder",
+ "gen der",
+ "gende r",
+ "g ender",
+ "▁s uis",
+ "▁su is",
+ "vers ions",
+ "version s",
+ "▁Tr aining",
+ "▁Tra ining",
+ "▁Train ing",
+ "in side",
+ "ins ide",
+ "eg e",
+ "e ge",
+ "▁tot ale",
+ "▁total e",
+ "▁D aar",
+ "▁Da ar",
+ "▁grud nia",
+ "▁I er",
+ "▁occasion s",
+ "▁occas ions",
+ "▁k de",
+ "▁tensor flow",
+ "▁ tensorflow",
+ "▁ó r",
+ "▁ ór",
+ "Method s",
+ "▁loop ing",
+ "▁direct eur",
+ "k ę",
+ "▁is omorphism",
+ "▁Jo ão",
+ "▁al igned",
+ "▁align ed",
+ "▁ aligned",
+ "он ов",
+ "о нов",
+ "ur ger",
+ "urg er",
+ "▁n ova",
+ "▁no va",
+ "▁nov a",
+ "mor row",
+ "m orrow",
+ "al tern",
+ "alt ern",
+ "alter n",
+ "H D",
+ "▁m arqu",
+ "▁mar qu",
+ "at ivas",
+ "ativ as",
+ "ati vas",
+ "ativa s",
+ "gg reg",
+ "g greg",
+ "▁anci en",
+ "▁anc ien",
+ "ni t",
+ "n it",
+ "▁sec ured",
+ "▁secure d",
+ "mi er",
+ "m ier",
+ "▁O le",
+ "▁Ol e",
+ "▁ин те",
+ "▁m inus",
+ "▁min us",
+ "▁ minus",
+ "▁clear er",
+ "▁n ello",
+ "▁nel lo",
+ "▁nell o",
+ "▁információ k",
+ "▁pro pre",
+ "▁prop re",
+ "{ .",
+ "il og",
+ "ilo g",
+ "i log",
+ "▁Qu ick",
+ "▁acc us",
+ "▁ac cus",
+ "emp loyee",
+ "▁з у",
+ "▁ зу",
+ "ць кий",
+ "фі цій",
+ "▁пу бли",
+ "▁ публи",
+ "▁b ent",
+ "▁be nt",
+ "▁ben t",
+ "▁по зво",
+ "▁П ор",
+ "▁По р",
+ "áz í",
+ "án ico",
+ "á nico",
+ "empty set",
+ "▁sur tout",
+ "re no",
+ "ren o",
+ "r eno",
+ "un ya",
+ "▁у ез",
+ "▁Mill ionen",
+ "▁listop ada",
+ "▁M aine",
+ "▁Ma ine",
+ "▁Main e",
+ "▁Mai ne",
+ "▁gru pos",
+ "▁grupo s",
+ "▁grup os",
+ "▁St orage",
+ "▁Sto rage",
+ "▁ Storage",
+ "▁app le",
+ "▁ap ple",
+ "▁ apple",
+ "▁L ö",
+ "ou sed",
+ "ous ed",
+ "ouse d",
+ "o used",
+ "д ро",
+ "sc i",
+ "s ci",
+ "▁hi bernate",
+ "▁ hibernate",
+ "do g",
+ "d og",
+ "▁во сто",
+ "▁вос то",
+ "▁ восто",
+ "▁intens ity",
+ "leg end",
+ "lege nd",
+ "legen d",
+ "▁W ille",
+ "▁Will e",
+ "▁Wil le",
+ "▁Wi lle",
+ "▁szer int",
+ "ges ellschaft",
+ "▁L iving",
+ "▁Li ving",
+ "▁Liv ing",
+ "al lo",
+ "all o",
+ "▁S plit",
+ "▁Sp lit",
+ "▁ Split",
+ "dr u",
+ "d ru",
+ "ne ed",
+ "n eed",
+ "▁Дж он",
+ "▁Sw iss",
+ "▁sp raw",
+ "▁spr aw",
+ "▁be ho",
+ "▁beh o",
+ "▁fot ograf",
+ "▁ren contre",
+ "▁k is",
+ "▁ki s",
+ "▁sign ing",
+ "▁sig ning",
+ "ak ult",
+ "aku lt",
+ "▁index ing",
+ "ap or",
+ "a por",
+ "▁con ception",
+ "▁concept ion",
+ "▁conce ption",
+ "ag greg",
+ "agg reg",
+ "a ggreg",
+ "▁Са вез",
+ "▁aff air",
+ "ě ní",
+ "A ugust",
+ "▁се кре",
+ "▁miesz kań",
+ "UI Image",
+ "▁b ishop",
+ "▁bi shop",
+ "▁ bishop",
+ "▁serv ants",
+ "▁servant s",
+ "▁tr ail",
+ "▁tra il",
+ "di git",
+ "dig it",
+ "▁jo ins",
+ "▁join s",
+ "▁N ear",
+ "▁Ne ar",
+ "öff entlich",
+ "> {",
+ "▁sk ład",
+ "ge führt",
+ "gef ührt",
+ "▁Hol z",
+ "▁Milit är",
+ "ach i",
+ "ac hi",
+ "a chi",
+ "Up per",
+ "U pper",
+ "pi ne",
+ "pin e",
+ "p ine",
+ "ut zt",
+ "utz t",
+ "▁nu ova",
+ "ibr ation",
+ "▁B ien",
+ "▁Bi en",
+ "▁пер вый",
+ "▁первы й",
+ "▁Cre ating",
+ "On ce",
+ "▁ein mal",
+ "▁ge ometric",
+ "▁geomet ric",
+ "st vo",
+ "▁k W",
+ "▁decom position",
+ "▁com edy",
+ "▁come dy",
+ "▁activ ation",
+ "▁an gry",
+ "▁ang ry",
+ "ill eurs",
+ "ille urs",
+ "▁inst antly",
+ "▁instant ly",
+ "▁suggest ing",
+ "▁C lay",
+ "▁Cl ay",
+ "▁Cla y",
+ "co t",
+ "c ot",
+ "▁G én",
+ "▁Gé n",
+ "($ (",
+ "( $(",
+ "un wrap",
+ "▁lif ted",
+ "▁lift ed",
+ "▁K it",
+ "▁Ki t",
+ "▁ Kit",
+ "▁l inea",
+ "▁li nea",
+ "▁line a",
+ "▁lin ea",
+ "о к",
+ "ha rt",
+ "har t",
+ "h art",
+ "-> _",
+ "▁n uit",
+ "▁nu it",
+ "▁Iss ue",
+ "ли и",
+ "▁r öm",
+ "Task s",
+ "▁S r",
+ "▁se is",
+ "▁sei s",
+ "as ia",
+ "asi a",
+ "}} $.",
+ "}}$ .",
+ "} }$.",
+ ": {",
+ "control s",
+ "contr ols",
+ "▁S tim",
+ "▁St im",
+ "▁Re cht",
+ "▁Rec ht",
+ "ocia ción",
+ "oci ación",
+ "▁N atal",
+ "▁Na tal",
+ "▁Nat al",
+ "▁Philipp ines",
+ "ul en",
+ "ule n",
+ "u len",
+ "F ixed",
+ "▁switch ed",
+ "Z ip",
+ "os pel",
+ "osp el",
+ "▁нача ле",
+ "▁B lan",
+ "▁Bl an",
+ "▁Bla n",
+ "ur st",
+ "urs t",
+ "▁aut our",
+ "▁auto ur",
+ "C a",
+ "▁lat itude",
+ "▁F rei",
+ "▁Fre i",
+ "▁Fr ei",
+ "▁Mus ée",
+ "▁K urz",
+ "▁Kur z",
+ "▁Ku rz",
+ "▁reg ião",
+ "sw ap",
+ "▁h ate",
+ "▁ha te",
+ "▁hat e",
+ "▁mod ifications",
+ "▁modification s",
+ "▁modific ations",
+ "▁К ом",
+ "▁Ко м",
+ "▁Anto ine",
+ "ug a",
+ "u ga",
+ "RE CT",
+ "R ECT",
+ "ét er",
+ "é ter",
+ "G ROUP",
+ "▁sacr ific",
+ "▁W he",
+ "▁Wh e",
+ "▁Ste vens",
+ "▁Steve ns",
+ "▁Steven s",
+ "olog ische",
+ "Sum mary",
+ "ob s",
+ "o bs",
+ "hn en",
+ "h nen",
+ "< %=",
+ "di enst",
+ "d ienst",
+ "re mark",
+ "rem ark",
+ "r emark",
+ "▁veröff entlicht",
+ "е л",
+ "▁M ock",
+ "▁Mo ck",
+ "▁ Mock",
+ "▁Ль в",
+ "▁tr ês",
+ "g b",
+ "▁celebr ated",
+ "▁E b",
+ "▁c osta",
+ "▁co sta",
+ "▁cost a",
+ "▁cos ta",
+ "▁Ge ographic",
+ "▁att achment",
+ "▁attach ment",
+ "mann schaft",
+ "▁depend ence",
+ "� �",
+ "▁att itude",
+ "et al",
+ "eta l",
+ "e tal",
+ "vi c",
+ "v ic",
+ "ba ut",
+ "bau t",
+ "b aut",
+ "▁д ов",
+ "▁до в",
+ "▁ дов",
+ "▁inter ven",
+ "▁G ü",
+ "ón ica",
+ "ó nica",
+ "▁P on",
+ "▁Po n",
+ "▁dispon ible",
+ "▁F eb",
+ "▁Fe b",
+ "▁wor ship",
+ "▁Specific ally",
+ "H y",
+ "ij u",
+ "i ju",
+ "▁c b",
+ "▁ cb",
+ "▁sp ac",
+ "lev eland",
+ "level and",
+ "▁local idad",
+ "▁prec eding",
+ "▁preced ing",
+ "▁H essen",
+ "x p",
+ "▁W ein",
+ "▁We in",
+ "▁Wei n",
+ "▁Rom â",
+ "▁gi orno",
+ "▁gior no",
+ "▁квіт ня",
+ "lla ços",
+ "▁Academ ia",
+ "▁k ül",
+ "▁Å rs",
+ "▁на ј",
+ "uc lide",
+ "Inter net",
+ "Intern et",
+ "or ton",
+ "ort on",
+ "▁c orn",
+ "▁cor n",
+ "▁co rn",
+ "я ми",
+ "▁\" *",
+ "▁Fel ix",
+ "ap at",
+ "apa t",
+ "a pat",
+ "▁сво и",
+ "MI T",
+ "M IT",
+ "ma de",
+ "mad e",
+ "m ade",
+ "▁lo comot",
+ "хо да",
+ "ход а",
+ "F P",
+ "▁p m",
+ "▁ pm",
+ ".* ;",
+ "▁H amm",
+ "▁Ha mm",
+ "▁Ham m",
+ "` }",
+ "Layout Inflater",
+ "== \"",
+ "= =\"",
+ "▁E ur",
+ "▁Eu r",
+ "▁d ogs",
+ "▁do gs",
+ "▁dog s",
+ "же нии",
+ "▁a zon",
+ "▁az on",
+ "▁ azon",
+ "▁em ulator",
+ "▁r icon",
+ "▁ric on",
+ "▁ri con",
+ "be eld",
+ "▁н у",
+ "▁ ну",
+ "▁approxim ate",
+ "L M",
+ "▁B ond",
+ "▁Bo nd",
+ "▁Bon d",
+ "▁en h",
+ "ęd z",
+ "ę dz",
+ "▁s olit",
+ "▁so lit",
+ "▁sol it",
+ "Relative Layout",
+ "et eor",
+ "ete or",
+ "ament os",
+ "amento s",
+ "▁in direct",
+ "▁ind irect",
+ "ib ől",
+ "▁g ros",
+ "▁gr os",
+ "▁gro s",
+ "▁Original s",
+ "▁Origin als",
+ "▁Orig inals",
+ "comm ands",
+ "command s",
+ "Ex port",
+ "Exp ort",
+ "▁A vec",
+ "▁Av ec",
+ "▁sole mn",
+ "▁solem n",
+ "▁correct ion",
+ "▁corre ction",
+ "▁corr ection",
+ "▁про води",
+ "▁прово ди",
+ "▁Mo sk",
+ "▁Mos k",
+ "▁по до",
+ "▁под о",
+ "▁geb ied",
+ "▁nast ęp",
+ "▁D river",
+ "▁Dr iver",
+ "▁Drive r",
+ "▁ Driver",
+ "▁O ok",
+ "▁V ec",
+ "▁Ve c",
+ "▁ Vec",
+ "▁lung o",
+ "▁lun go",
+ "fi cos",
+ "fic os",
+ "fico s",
+ "f icos",
+ "▁s vol",
+ "▁sv ol",
+ "▁svo l",
+ "▁k id",
+ "▁ki d",
+ "n ja",
+ "▁H r",
+ "▁под дер",
+ "▁vis ibility",
+ "▁ visibility",
+ "▁M éd",
+ "▁Mé d",
+ "▁c pu",
+ "▁cp u",
+ "▁ cpu",
+ "dis cussion",
+ "As set",
+ "Ass et",
+ "▁def ense",
+ "▁Any one",
+ "▁Just in",
+ "is zt",
+ "isz t",
+ "▁Coll ins",
+ "▁Val ent",
+ "▁P ale",
+ "▁Pa le",
+ "▁Pal e",
+ "▁f uel",
+ "▁fue l",
+ "▁fu el",
+ "▁n ose",
+ "▁no se",
+ "▁nos e",
+ "rí guez",
+ "▁Sch les",
+ "▁Schl es",
+ "▁Mal ays",
+ "▁com mut",
+ "▁comm ut",
+ "dr o",
+ "d ro",
+ "ui ng",
+ "u ing",
+ "▁R ico",
+ "▁Ric o",
+ "▁Ri co",
+ "▁Em ma",
+ "or p",
+ "o rp",
+ "▁K irk",
+ "▁Kir k",
+ "▁Qu ando",
+ "▁Ne ue",
+ "▁Neu e",
+ "▁de mande",
+ "▁dem ande",
+ "▁demand e",
+ "▁C over",
+ "▁Co ver",
+ "▁Cov er",
+ "▁res cue",
+ "▁gew ählt",
+ "▁Cal endar",
+ "▁ Calendar",
+ "▁Mad onna",
+ "W P",
+ "os hi",
+ "osh i",
+ "▁M aven",
+ "▁Ma ven",
+ "▁b elle",
+ "▁be lle",
+ "▁bel le",
+ "▁bell e",
+ "▁w x",
+ "▁ wx",
+ "▁su gar",
+ "▁sug ar",
+ "▁Bet rieb",
+ "▁equilib rium",
+ "E AR",
+ "▁text s",
+ "▁tex ts",
+ "сло в",
+ "с лов",
+ "▁czerw ca",
+ "▁D üsseld",
+ "▁EL SE",
+ "▁am ery",
+ "▁amer y",
+ "▁a ni",
+ "▁an i",
+ "▁ ani",
+ "▁o bey",
+ "▁ob ey",
+ "▁N ell",
+ "▁Ne ll",
+ "▁Nel l",
+ "▁in ne",
+ "▁inn e",
+ "▁т ро",
+ "▁ тро",
+ "F D",
+ "cc o",
+ "c co",
+ "▁Z ob",
+ "▁Zo b",
+ "al ette",
+ "ale tte",
+ "alet te",
+ "a lette",
+ "▁má jus",
+ "ect ed",
+ "ec ted",
+ "e cted",
+ "▁Tur key",
+ "▁Turk ey",
+ "▁Wh ether",
+ "▁Whe ther",
+ "q i",
+ "▁ш то",
+ "▁head quarters",
+ "en di",
+ "end i",
+ "ar us",
+ "aru s",
+ "a rus",
+ "op us",
+ "o pus",
+ "▁з оло",
+ "▁зо ло",
+ "▁de stru",
+ "▁dest ru",
+ "▁L ok",
+ "▁Lo k",
+ "▁satisf action",
+ "() \r",
+ "( )\r",
+ "▁Т ер",
+ "▁Те р",
+ "Jo se",
+ "J ose",
+ "▁con quer",
+ "▁conqu er",
+ "▁E ffect",
+ "▁ Effect",
+ "Layout Params",
+ "ie z",
+ "i ez",
+ "▁extern s",
+ "▁gegen über",
+ "▁E SP",
+ "▁ES P",
+ "ol ta",
+ "olt a",
+ "process or",
+ "proc essor",
+ "▁K ult",
+ "▁Ku lt",
+ "▁Atl anta",
+ "▁t ier",
+ "▁ti er",
+ "▁tie r",
+ "Oper ator",
+ "▁ди а",
+ "▁пи сь",
+ "▁gro ß",
+ "▁he arts",
+ "▁heart s",
+ "▁hear ts",
+ "▁mill imeter",
+ "al though",
+ "alth ough",
+ "al les",
+ "all es",
+ "alle s",
+ "a lles",
+ "▁Mag ic",
+ "tr aining",
+ "tra ining",
+ "train ing",
+ "ol ine",
+ "oli ne",
+ "olin e",
+ "o line",
+ "▁орган і",
+ ">\\< ^",
+ "> \\<^",
+ "ці аль",
+ "ex ports",
+ "export s",
+ "Work book",
+ "▁вере сня",
+ "▁t eles",
+ "▁te les",
+ "▁tele s",
+ "▁tel es",
+ "▁econom y",
+ "▁econ omy",
+ "▁ec onomy",
+ "▁t rap",
+ "▁tr ap",
+ "▁tra p",
+ "▁ref use",
+ "▁str anger",
+ "▁strange r",
+ "▁stran ger",
+ "▁inst inct",
+ "по да",
+ "ol an",
+ "ola n",
+ "o lan",
+ "▁n ing",
+ "▁ni ng",
+ "▁nin g",
+ "▁ ning",
+ "inf late",
+ "infl ate",
+ "itat ea",
+ "itate a",
+ "ack s",
+ "ac ks",
+ "a cks",
+ "▁J oy",
+ "▁Jo y",
+ "FL AG",
+ "FLA G",
+ "ail and",
+ "ai land",
+ "▁sort i",
+ "▁sor ti",
+ "▁в пер",
+ "▁p én",
+ "▁pé n",
+ "Not hing",
+ "No thing",
+ "N othing",
+ "▁sz áz",
+ "▁Á ng",
+ "▁A UT",
+ "▁ AUT",
+ "Act ions",
+ "Action s",
+ "A ctions",
+ "E very",
+ "▁чер вня",
+ "▁авто мо",
+ "▁rout ine",
+ "▁e struct",
+ "▁est ruct",
+ "▁G ang",
+ "▁Ga ng",
+ "▁Gan g",
+ "▁h oles",
+ "▁ho les",
+ "▁hol es",
+ "▁hole s",
+ "th esis",
+ "thes is",
+ "▁con cl",
+ "▁conc l",
+ "▁p é",
+ "ri ers",
+ "rie rs",
+ "rier s",
+ "r iers",
+ "ро вой",
+ "рово й",
+ "р овой",
+ "ad ic",
+ "adi c",
+ "a dic",
+ "Sp eed",
+ "Spe ed",
+ "▁command ed",
+ "▁N azionale",
+ "▁Naz ionale",
+ "Man aged",
+ "▁DE CLARE",
+ "▁se dan",
+ "▁sed an",
+ "String s",
+ "Str ings",
+ "▁sa cred",
+ "▁sac red",
+ "▁sacr ed",
+ "ter such",
+ "ters uch",
+ "▁abit anti",
+ "br it",
+ "b rit",
+ "▁N CAA",
+ "▁NC AA",
+ "▁С П",
+ "▁a ged",
+ "▁ag ed",
+ "▁age d",
+ "▁ aged",
+ "▁Ch iesa",
+ "▁Chi esa",
+ "▁re vision",
+ "▁rev ision",
+ "▁revis ion",
+ "op ro",
+ "o pro",
+ "▁over write",
+ "emb ros",
+ "embro s",
+ "▁sort ie",
+ "▁sorti e",
+ "▁ot ten",
+ "▁ott en",
+ "xi v",
+ "x iv",
+ "▁d eli",
+ "▁de li",
+ "▁del i",
+ "▁A sp",
+ "▁As p",
+ "▁b alls",
+ "▁bal ls",
+ "▁ball s",
+ "ka f",
+ "k af",
+ "▁br ave",
+ "▁bra ve",
+ "▁все го",
+ "▁вс его",
+ "eg n",
+ "e gn",
+ "jp eg",
+ "▁O sten",
+ "▁Os ten",
+ "▁Ost en",
+ "Const ants",
+ "▁Inf antry",
+ "▁N ev",
+ "▁Ne v",
+ "▁я ких",
+ "▁як их",
+ "▁му ниципа",
+ "ci ja",
+ "c ija",
+ "▁p oem",
+ "▁po em",
+ "▁ne gro",
+ "▁neg ro",
+ "ха р",
+ "х ар",
+ "▁A sk",
+ "▁As k",
+ "▁a vo",
+ "▁av o",
+ "▁ avo",
+ "▁Me yer",
+ "▁Mey er",
+ "▁W esten",
+ "▁We sten",
+ "▁West en",
+ "▁Wes ten",
+ "▁o ko",
+ "▁ok o",
+ "▁ oko",
+ "ag in",
+ "agi n",
+ "a gin",
+ "▁Süd en",
+ "▁Sü den",
+ "ent ries",
+ "entr ies",
+ "▁Rep ublik",
+ "▁Repub lik",
+ "Collection View",
+ "-- -----",
+ "---- ---",
+ "--- ----",
+ "------ -",
+ "----- --",
+ "- ------",
+ "▁fire fox",
+ "▁alc une",
+ "▁фо то",
+ "▁отри ма",
+ "~~~~ ~~~~",
+ "▁Ра з",
+ "▁Com plex",
+ "▁Comp lex",
+ "▁Comple x",
+ "▁p ia",
+ "▁pi a",
+ "▁public ada",
+ "we i",
+ "w ei",
+ "ced ure",
+ "occup ation",
+ "▁medic ine",
+ "▁dr ove",
+ "▁dro ve",
+ "Pro blem",
+ "▁beg inner",
+ "▁begin ner",
+ "▁thorough ly",
+ "ur ia",
+ "uri a",
+ "u ria",
+ "av ant",
+ "ava nt",
+ "avan t",
+ "uch a",
+ "uc ha",
+ "u cha",
+ "▁l ever",
+ "▁le ver",
+ "▁lev er",
+ "▁te atro",
+ "▁teat ro",
+ "AV A",
+ "A VA",
+ "sq u",
+ "s qu",
+ "tr at",
+ "tra t",
+ "t rat",
+ "iv atal",
+ "iva tal",
+ "▁d irty",
+ "▁dir ty",
+ "▁se conde",
+ "▁second e",
+ "▁sec onde",
+ "▁grav it",
+ "▁pro position",
+ "▁prop osition",
+ "▁propos ition",
+ "h bar",
+ "om ini",
+ "omin i",
+ "omi ni",
+ "▁ ”",
+ "▁C amil",
+ "▁Cam il",
+ "▁Ca mil",
+ "▁qu een",
+ "▁que en",
+ "mod ifier",
+ "J an",
+ "▁l yr",
+ "▁ly r",
+ "Com boBox",
+ "ion ic",
+ "io nic",
+ "ioni c",
+ "i onic",
+ "▁h oly",
+ "▁ho ly",
+ "▁hol y",
+ "▁Sebast ian",
+ "| _{",
+ "▁{ @",
+ "▁мо жно",
+ "▁мож но",
+ "▁Cre ative",
+ "▁inter ess",
+ "▁inte ress",
+ "▁C T",
+ "▁ CT",
+ "i ções",
+ "▁ch ant",
+ "▁cha nt",
+ "▁ chant",
+ "▁wsp ół",
+ "▁Мекси ка",
+ "▁ran ked",
+ "▁rank ed",
+ "▁paździer nika",
+ "▁b rut",
+ "▁br ut",
+ "▁bru t",
+ "▁far ther",
+ "▁V erb",
+ "▁Ver b",
+ "▁Ve rb",
+ "▁S even",
+ "▁Se ven",
+ "lb l",
+ "l bl",
+ "▁mention s",
+ "▁ment ions",
+ "▁F ight",
+ "▁Fig ht",
+ "if en",
+ "ife n",
+ "i fen",
+ "▁b og",
+ "▁bo g",
+ "▁re gres",
+ "▁reg res",
+ "▁sc oring",
+ "ic ane",
+ "ica ne",
+ "ican e",
+ "▁El li",
+ "▁Ell i",
+ "▁pie rw",
+ "▁pier w",
+ "me asure",
+ "ński ej",
+ "ń skiej",
+ "# {",
+ "▁де ся",
+ "▁var maste",
+ "▁Un ix",
+ "I Z",
+ "iti é",
+ "Prim ary",
+ "▁Spring er",
+ "▁Spr inger",
+ "ün g",
+ "ü ng",
+ "▁an v",
+ "▁vers ione",
+ "▁version e",
+ "▁should ers",
+ "▁shoulder s",
+ "▁бри га",
+ "▁j av",
+ "▁ja v",
+ "▁ jav",
+ "lt al",
+ "l tal",
+ "▁kall aste",
+ "▁Mitch ell",
+ "▁wire less",
+ "▁wir eless",
+ "▁Á l",
+ "resp ons",
+ "co uld",
+ "cou ld",
+ "c ould",
+ "▁re lax",
+ "▁rel ax",
+ "▁rela x",
+ "▁ relax",
+ "Lo nd",
+ "L ond",
+ "ń cz",
+ "ство вал",
+ "ствова л",
+ "▁pol ski",
+ "en ç",
+ "za r",
+ "z ar",
+ "▁d type",
+ "▁dt ype",
+ "ow ned",
+ "own ed",
+ "un known",
+ "unk nown",
+ "▁m utable",
+ "▁mu table",
+ "▁mut able",
+ "▁ mutable",
+ "▁si empre",
+ "▁Mont real",
+ "▁loc ate",
+ "▁tr aces",
+ "▁tra ces",
+ "▁trace s",
+ "▁trac es",
+ "▁ins gesamt",
+ "▁N il",
+ "▁Ni l",
+ "▁ Nil",
+ "▁п рода",
+ "▁про да",
+ "▁прод а",
+ "▁War ner",
+ "▁N au",
+ "▁Na u",
+ "tri angle",
+ "▁concentr ation",
+ "▁gentle men",
+ "äch t",
+ "ä cht",
+ "fil ters",
+ "filter s",
+ "inci pal",
+ "VAL ID",
+ "▁де пута",
+ "ad ó",
+ "▁kon st",
+ "gs å",
+ "ag as",
+ "aga s",
+ "a gas",
+ "▁meille ur",
+ "▁дан ным",
+ "є дна",
+ "en coded",
+ "enc oded",
+ "encode d",
+ "< '",
+ "▁she ets",
+ "▁sheet s",
+ "▁ sheets",
+ "cu ador",
+ "▁викори стову",
+ "▁De put",
+ "▁Dep ut",
+ "▁man ière",
+ "ą g",
+ "cs ol",
+ "c sol",
+ ")$ -",
+ ") $-",
+ "UI View",
+ "▁mill ones",
+ "▁E hren",
+ "▁Ehr en",
+ "Si l",
+ "S il",
+ "▁a tac",
+ "▁at ac",
+ "▁C old",
+ "▁Col d",
+ "▁Co ld",
+ "\" \\",
+ "▁appro ached",
+ "▁approach ed",
+ "▁Års med",
+ "W M",
+ "▁De port",
+ "▁Dep ort",
+ "mi s",
+ "m is",
+ "and box",
+ "ob serv",
+ "obs erv",
+ "set ting",
+ "sett ing",
+ "ha tó",
+ "hat ó",
+ "h ató",
+ "▁s trat",
+ "▁st rat",
+ "▁str at",
+ "▁stra t",
+ "▁s pre",
+ "▁sp re",
+ "▁spr e",
+ "▁ spre",
+ "▁person ne",
+ "▁pers onne",
+ "▁personn e",
+ "▁dir ige",
+ "▁dirig e",
+ "pu ll",
+ "p ull",
+ "da ting",
+ "dat ing",
+ "d ating",
+ "▁F act",
+ "▁Fa ct",
+ "▁Fac t",
+ "▁ Fact",
+ "▁manip ulate",
+ "▁M AC",
+ "▁MA C",
+ "▁d ej",
+ "▁de j",
+ "ult imo",
+ "F X",
+ "Li fe",
+ "L ife",
+ "▁c rack",
+ "▁cr ack",
+ "▁cra ck",
+ "▁m í",
+ "▁п ове",
+ "▁по ве",
+ "▁пов е",
+ "▁w ore",
+ "▁wor e",
+ "▁wo re",
+ "univers ité",
+ "▁form ulas",
+ "▁formula s",
+ "▁Elis abeth",
+ "pl ots",
+ "plot s",
+ "mi le",
+ "mil e",
+ "m ile",
+ "▁me nor",
+ "▁men or",
+ "ти л",
+ "т ил",
+ "key word",
+ "▁Balt imore",
+ "hr er",
+ "hre r",
+ "h rer",
+ "▁C lement",
+ "▁Cl ement",
+ "▁Cle ment",
+ "vi m",
+ "v im",
+ "ra ss",
+ "ras s",
+ "r ass",
+ "T ake",
+ "▁cím ű",
+ "▁Con vention",
+ "at ge",
+ "se ed",
+ "see d",
+ "s eed",
+ "▁D í",
+ "▁Sp ider",
+ "ah oo",
+ "aho o",
+ "▁име ет",
+ "ühr t",
+ "üh rt",
+ "▁по писа",
+ "▁C ot",
+ "▁Co t",
+ "▁no bles",
+ "▁noble s",
+ "▁nob les",
+ "RE SS",
+ "RES S",
+ "▁che min",
+ "▁chem in",
+ "▁gł ówn",
+ "G G",
+ "▁German ia",
+ "▁Ger mania",
+ "▁Germ ania",
+ "▁Alexand re",
+ "he ns",
+ "hen s",
+ "h ens",
+ "sw ift",
+ "oo p",
+ "o op",
+ "Sub view",
+ "▁requ iring",
+ "ęd zy",
+ "ędz y",
+ "▁f ict",
+ "▁fi ct",
+ "▁fic t",
+ "▁Кон стан",
+ "▁dé put",
+ "▁dép ut",
+ "▁surpr ising",
+ "▁de ix",
+ "▁dei x",
+ "▁unter schied",
+ "in son",
+ "ins on",
+ "▁Char acter",
+ "▁ Character",
+ "▁g estion",
+ "▁ges tion",
+ "▁gest ion",
+ "ch us",
+ "c hus",
+ "com es",
+ "co mes",
+ "come s",
+ "▁n eur",
+ "▁ne ur",
+ "▁neu r",
+ "▁ neur",
+ "▁ye ux",
+ "ol lar",
+ "oll ar",
+ "▁par ad",
+ "▁para d",
+ "▁pa rad",
+ "▁mag giore",
+ "▁maggio re",
+ "▁maggior e",
+ "TR AN",
+ "▁vo tre",
+ "▁vot re",
+ "▁des cent",
+ "▁desc ent",
+ "▁I con",
+ "▁ Icon",
+ "▁Jud ge",
+ "▁occup ation",
+ "▁ occupation",
+ "ep ing",
+ "e ping",
+ "▁ton gue",
+ "▁tong ue",
+ "▁En llaços",
+ "ru f",
+ "r uf",
+ "▁prote in",
+ "▁prot ein",
+ "▁vis itors",
+ "▁visit ors",
+ "▁visitor s",
+ "ax y",
+ "a xy",
+ "es ten",
+ "est en",
+ "este n",
+ "e sten",
+ "bl ica",
+ "blic a",
+ "b lica",
+ "h w",
+ "▁spir its",
+ "▁spirit s",
+ "▁redu ces",
+ "▁reduce s",
+ "▁м ен",
+ "▁ме н",
+ "▁ мен",
+ "▁L amb",
+ "▁La mb",
+ "▁Lam b",
+ "▁M ine",
+ "▁Min e",
+ "▁Mi ne",
+ "▁ver ified",
+ "▁B aby",
+ "▁Ba by",
+ "▁Bab y",
+ "▁pr ize",
+ "▁pri ze",
+ "в ър",
+ "▁rat ings",
+ "▁rating s",
+ "▁f ore",
+ "▁for e",
+ "▁fo re",
+ "▁ fore",
+ "as ha",
+ "ash a",
+ "a sha",
+ "ur rence",
+ "urr ence",
+ "▁int ér",
+ "▁Ol ímp",
+ "cr a",
+ "c ra",
+ "▁comput ational",
+ "▁computation al",
+ "ir che",
+ "irc he",
+ ".: ",
+ "▁illustr ated",
+ "▁illustrate d",
+ "▁Sh are",
+ "▁house holds",
+ "▁household s",
+ "▁con volution",
+ "oe md",
+ "oem d",
+ "▁zd oby",
+ "▁zdob y",
+ "cc c",
+ "c cc",
+ "▁quant ities",
+ "Ch e",
+ "C he",
+ "Sh ould",
+ "▁ge nius",
+ "▁gen ius",
+ "ad j",
+ "a dj",
+ "х ва",
+ "Пе тер",
+ "EM A",
+ "E MA",
+ "▁R ights",
+ "▁Right s",
+ "▁E li",
+ "▁El i",
+ "VA R",
+ "V AR",
+ "ш ло",
+ "▁з бір",
+ "ift ung",
+ "▁cont ributed",
+ "▁contrib uted",
+ "▁contribu ted",
+ "▁contribute d",
+ "ze f",
+ "z ef",
+ "▁CH AR",
+ "▁ CHAR",
+ "▁S ib",
+ "▁Si b",
+ "▁M ant",
+ "▁Man t",
+ "▁Ma nt",
+ "▁свя зи",
+ "▁java fx",
+ "▁c ependant",
+ "▁in tu",
+ "▁int u",
+ "▁т вор",
+ "▁ Ó",
+ "gu er",
+ "gue r",
+ "g uer",
+ "ra do",
+ "rad o",
+ "r ado",
+ "▁Re vol",
+ "▁Rev ol",
+ "▁fé min",
+ "▁Or leans",
+ "▁p oj",
+ "▁po j",
+ "▁p rez",
+ "▁pr ez",
+ "▁pre z",
+ "Te x",
+ "T ex",
+ "ou wd",
+ "ouw d",
+ "? (",
+ "▁L IM",
+ "▁LI M",
+ "ist ique",
+ "isti que",
+ "es ar",
+ "esa r",
+ "▁he ures",
+ "ic ki",
+ "ick i",
+ "i cki",
+ "▁d bo",
+ "▁db o",
+ "▁ dbo",
+ "sk ih",
+ "ski h",
+ "s kih",
+ "conf irm",
+ "▁vil ág",
+ "▁ci utat",
+ "▁D R",
+ "▁ DR",
+ "▁Haw ai",
+ "ch ed",
+ "che d",
+ "c hed",
+ "▁s pher",
+ "▁sp her",
+ "▁Art ikel",
+ "▁Multi ple",
+ "ci u",
+ "c iu",
+ "▁м ы",
+ "▁ мы",
+ "▁lip ca",
+ "]( /",
+ "] (/",
+ "Str ategy",
+ "▁Al abama",
+ "SD K",
+ "S DK",
+ "UT C",
+ "U TC",
+ "__ .",
+ "_ _.",
+ "Arg uments",
+ "Argument s",
+ "▁set ContentView",
+ "î le",
+ "By Val",
+ "▁J VM",
+ "юще го",
+ "▁Leon ard",
+ "▁just ify",
+ "це м",
+ "ц ем",
+ "▁n ab",
+ "▁na b",
+ "▁ nab",
+ "CCE SS",
+ "C CESS",
+ "▁hope s",
+ "▁ho pes",
+ "▁hop es",
+ ") &",
+ "se ro",
+ "ser o",
+ "s ero",
+ "▁за й",
+ "слі д",
+ "▁R ég",
+ "▁Ré g",
+ "▁S ang",
+ "▁San g",
+ "▁Sa ng",
+ "▁f ung",
+ "▁fun g",
+ "▁fu ng",
+ "ba ar",
+ "b aar",
+ "▁coff ee",
+ "ass embly",
+ "▁В ін",
+ "▁Ві н",
+ "э й",
+ "▁comp rend",
+ "▁compr end",
+ "fil led",
+ "fill ed",
+ "f illed",
+ "р д",
+ "od ia",
+ "odi a",
+ "o dia",
+ "▁g ens",
+ "▁ge ns",
+ "▁gen s",
+ "▁ gens",
+ "fl uss",
+ "flu ss",
+ "f luss",
+ "Draw able",
+ "▁sur ve",
+ "▁surv e",
+ "Set up",
+ "▁n ależ",
+ "▁conj unto",
+ "▁Е го",
+ "▁old al",
+ "▁ol dal",
+ "▁ver bose",
+ "▁verb ose",
+ "▁Elect ric",
+ "▁H arrison",
+ "▁Harr ison",
+ "▁Harris on",
+ "en gen",
+ "eng en",
+ "par agraph",
+ "para graph",
+ "▁n ouvelles",
+ "▁nouve lles",
+ "▁nouvelle s",
+ "▁вре ме",
+ "▁m emor",
+ "▁me mor",
+ "▁mem or",
+ "▁mayo ría",
+ "▁mayor ía",
+ "са д",
+ "▁bat aille",
+ "▁bata ille",
+ "▁therm al",
+ "▁ther mal",
+ "▁Хро нологи",
+ "▁B etter",
+ "▁Bet ter",
+ "by e",
+ "b ye",
+ "▁теа тра",
+ "ro e",
+ "r oe",
+ "▁se gle",
+ "▁seg le",
+ "ro tt",
+ "rot t",
+ "r ott",
+ "▁opin ions",
+ "▁opinion s",
+ ")} )",
+ ") })",
+ "üh le",
+ "ühl e",
+ "▁G ün",
+ "▁Gü n",
+ "▁ Щ",
+ "b ól",
+ "▁Lar ry",
+ "▁so lic",
+ "▁sol ic",
+ "▁z war",
+ "▁zw ar",
+ "▁Car oline",
+ "▁Carol ine",
+ "▁Reich s",
+ "Ext ensions",
+ "Extension s",
+ "mi gr",
+ "m igr",
+ ": @",
+ "▁en umerate",
+ "▁enumer ate",
+ "▁ enumerate",
+ "▁eigen en",
+ "▁eig enen",
+ "▁expl ore",
+ "▁explo re",
+ "ém u",
+ "é mu",
+ "▁g at",
+ "▁ga t",
+ "▁ gat",
+ "▁imper ial",
+ "▁Us ually",
+ "▁t ud",
+ "▁tu d",
+ "▁у кра",
+ "hi m",
+ "h im",
+ "▁cor ners",
+ "▁corner s",
+ "▁corn ers",
+ "▁S ER",
+ "▁SE R",
+ "▁ SER",
+ "▁interpre ter",
+ "▁interpret er",
+ "▁I ce",
+ "▁amount s",
+ "▁P ala",
+ "▁Pa la",
+ "▁Pal a",
+ "▁t inha",
+ "▁tin ha",
+ "vo le",
+ "vol e",
+ "v ole",
+ "▁g le",
+ "▁gl e",
+ "▁ gle",
+ "uc ci",
+ "▁sie he",
+ "Jac k",
+ "J ack",
+ "▁w oll",
+ "▁wo ll",
+ "▁wol l",
+ "▁e lder",
+ "▁el der",
+ "▁ко раб",
+ "▁eng ag",
+ "▁La urent",
+ "▁Laur ent",
+ "▁Lau rent",
+ "▁ach iev",
+ "ist ik",
+ "isti k",
+ "ar ct",
+ "arc t",
+ "тно го",
+ "т ного",
+ "▁g ir",
+ "▁gi r",
+ "▁Sing h",
+ "▁Sin gh",
+ "math op",
+ "US A",
+ "U SA",
+ "▁Pro jekt",
+ "▁de be",
+ "▁deb e",
+ "richt ung",
+ "r ichtung",
+ "▁T sch",
+ "▁Ts ch",
+ "um inate",
+ "umin ate",
+ "▁s zó",
+ "▁sz ó",
+ "ly ph",
+ "зи дент",
+ "зиден т",
+ "▁lim itations",
+ "▁limit ations",
+ "▁limitation s",
+ "юще й",
+ "▁b ila",
+ "▁bi la",
+ "▁bil a",
+ "P ush",
+ "▁off ering",
+ "▁offer ing",
+ "ien nes",
+ "ienne s",
+ "ienn es",
+ "i ennes",
+ "Fr i",
+ "F ri",
+ "▁post gresql",
+ "▁ postgresql",
+ "▁Tom my",
+ "▁partic olare",
+ "▁stolet í",
+ "▁ar rib",
+ "▁arr ib",
+ "▁E va",
+ "▁Ev a",
+ "sch ool",
+ "▁v endor",
+ "▁ven dor",
+ "▁vend or",
+ "▁ vendor",
+ "▁D allas",
+ "▁Dal las",
+ "▁pro long",
+ "CRE ATE",
+ "C REATE",
+ "▁suiv ante",
+ "STAT US",
+ "l à",
+ "k v",
+ "▁h äufig",
+ "▁Agr icult",
+ "▁h uit",
+ "▁hu it",
+ "▁in oltre",
+ "▁L loyd",
+ "▁францу з",
+ "▁вы пол",
+ "▁faith ful",
+ "▁В ар",
+ "▁Ва р",
+ "▁ver l",
+ "▁ve rl",
+ "▁ju ego",
+ "▁Резу лтати",
+ ", ...,",
+ "▁implicit ly",
+ "ir ks",
+ "irk s",
+ "Cal cul",
+ "▁m eses",
+ "▁mes es",
+ "om ed",
+ "ome d",
+ "o med",
+ "▁p ak",
+ "▁pa k",
+ "he rit",
+ "her it",
+ "▁opt ical",
+ "▁І сторія",
+ "ve is",
+ "▁capital e",
+ "▁capit ale",
+ "place holder",
+ "int rag",
+ "▁At las",
+ "▁Atl as",
+ "▁ Atlas",
+ ")] ;",
+ ") ];",
+ "ic ons",
+ "ico ns",
+ "icon s",
+ "i cons",
+ "▁B ent",
+ "▁Be nt",
+ "▁Ben t",
+ "▁W idget",
+ "▁ Widget",
+ "▁vol unt",
+ "av o",
+ "a vo",
+ "ég r",
+ "é gr",
+ "li ge",
+ "lig e",
+ "l ige",
+ "▁N AME",
+ "▁NA ME",
+ "▁ NAME",
+ "▁ab stra",
+ "▁abs tra",
+ "▁f ís",
+ "▁B rowser",
+ "▁Brow ser",
+ "▁ Browser",
+ "▁b ush",
+ "▁bu sh",
+ "▁bus h",
+ "ha ll",
+ "hal l",
+ "h all",
+ "▁cloud s",
+ "▁S UB",
+ "▁SU B",
+ "▁ SUB",
+ "▁t andis",
+ "▁tan dis",
+ "▁Common wealth",
+ "та я",
+ "▁exha ust",
+ "________ ________",
+ "▁Stat istics",
+ "▁Statist ics",
+ "▁Relig ion",
+ "▁Mu ham",
+ "ual s",
+ "ua ls",
+ "u als",
+ "go to",
+ "got o",
+ "g oto",
+ "Dig ital",
+ "Famil y",
+ "▁B un",
+ "▁Bu n",
+ "let in",
+ "Man agement",
+ "▁cap abilities",
+ "an nten",
+ "ann ten",
+ "annt en",
+ "annte n",
+ "▁се бе",
+ "▁st ays",
+ "▁stay s",
+ "▁sta ys",
+ "kt er",
+ "kte r",
+ "k ter",
+ "▁d ost",
+ "▁do st",
+ "▁dos t",
+ "▁Т ре",
+ "ло вич",
+ "лови ч",
+ "л ович",
+ "▁d ying",
+ "▁dy ing",
+ "se ctions",
+ "section s",
+ "sect ions",
+ "án os",
+ "á nos",
+ "▁app arten",
+ "▁appar ten",
+ "▁appart en",
+ "▁zo als",
+ "▁dr essed",
+ "▁dress ed",
+ "▁com press",
+ "▁comp ress",
+ "▁compr ess",
+ "ń ska",
+ "▁sierp nia",
+ "▁ти ту",
+ "diction ary",
+ "d ictionary",
+ "▁r abb",
+ "▁ra bb",
+ "▁vé rit",
+ "В о",
+ "▁sing leton",
+ "▁single ton",
+ "▁v ital",
+ "▁vi tal",
+ "▁vit al",
+ "▁vita l",
+ "Ref resh",
+ "ме ль",
+ "м ель",
+ "▁Z h",
+ "▁Af ghan",
+ "in kel",
+ "ink el",
+ "aa aa",
+ "▁particip ants",
+ "ar in",
+ "ari n",
+ "a rin",
+ "▁M old",
+ "▁Mo ld",
+ "▁Mol d",
+ "▁prim eros",
+ "▁prime ros",
+ "▁primer os",
+ "▁ра н",
+ "▁р ан",
+ "▁ ран",
+ "▁А мери",
+ "▁restaur ant",
+ "év el",
+ "é vel",
+ "▁S L",
+ "▁ SL",
+ "▁R ey",
+ "▁Re y",
+ "ch as",
+ "cha s",
+ "c has",
+ "▁elect rons",
+ "▁electron s",
+ "▁electro ns",
+ "▁Pitt s",
+ "▁Pit ts",
+ "▁J ules",
+ "▁Jul es",
+ "▁Ju les",
+ "ма й",
+ "en ant",
+ "ena nt",
+ "e nant",
+ "- }",
+ "ла д",
+ "▁Мос ква",
+ "▁Моск ва",
+ "go m",
+ "g om",
+ "▁Fern ández",
+ "fun d",
+ "fu nd",
+ "f und",
+ "int erno",
+ "inter no",
+ "intern o",
+ "▁M ari",
+ "▁Mar i",
+ "▁Ma ri",
+ "▁r ius",
+ "▁ri us",
+ "▁Pro zent",
+ "ст рі",
+ "стр і",
+ "▁в нут",
+ "ant erie",
+ "ante rie",
+ "anter ie",
+ "▁п рис",
+ "▁при с",
+ "▁пр ис",
+ "▁о бы",
+ "▁об ы",
+ "▁M arina",
+ "▁Mar ina",
+ "▁Mari na",
+ "▁occ urrence",
+ "▁occur rence",
+ "▁occurr ence",
+ "ri kt",
+ "rik t",
+ "r ikt",
+ "▁фи зи",
+ "▁sch wer",
+ "▁schw er",
+ "▁Г ре",
+ "Re set",
+ "Res et",
+ "▁much o",
+ "▁mu cho",
+ "an dr",
+ "and r",
+ "▁W ies",
+ "▁Wi es",
+ "▁Wie s",
+ "▁Ke ith",
+ "▁Jul ian",
+ "▁Juli an",
+ "▁Julia n",
+ "▁c ole",
+ "▁col e",
+ "▁co le",
+ "▁ cole",
+ "ci endo",
+ "c iendo",
+ "▁Cont empor",
+ "et ry",
+ "etr y",
+ "e try",
+ "el ian",
+ "eli an",
+ "elia n",
+ "ги и",
+ "▁го ло",
+ "▁г оло",
+ "▁d él",
+ "▁dé l",
+ "▁de cent",
+ "▁dec ent",
+ "▁dece nt",
+ "Р СР",
+ "▁sze ptember",
+ "ме ст",
+ "cast le",
+ "▁держа в",
+ "}\" )",
+ "} \")",
+ "▁ASC II",
+ "▁G len",
+ "▁Gl en",
+ "itzer land",
+ "T oggle",
+ "▁trad icional",
+ "▁P lat",
+ "▁Pl at",
+ "▁Pla t",
+ "ve e",
+ "v ee",
+ "ab gerufen",
+ "( |",
+ "CL I",
+ "C LI",
+ "}} $,",
+ "}}$ ,",
+ "} }$,",
+ "▁Bow l",
+ "▁M ale",
+ "▁Ma le",
+ "▁Mal e",
+ "▁B res",
+ "▁Br es",
+ "▁Bre s",
+ "▁п си",
+ "▁Ch allenge",
+ "z ó",
+ "▁pro jekt",
+ "▁neg oti",
+ "ab ove",
+ "a bove",
+ "▁пери о",
+ "▁long est",
+ "▁lon gest",
+ "auth entic",
+ "▁tr adu",
+ "▁tra du",
+ "▁trad u",
+ "▁mujer es",
+ "▁And re",
+ "▁ha dn",
+ "▁had n",
+ "▁Sch ule",
+ "▁Schul e",
+ "ode l",
+ "od el",
+ "o del",
+ "ble d",
+ "bl ed",
+ "b led",
+ "▁T rade",
+ "▁Tr ade",
+ "▁Tra de",
+ "▁Trad e",
+ "▁m obil",
+ "▁mo bil",
+ "▁mob il",
+ "▁alg unas",
+ "▁L ak",
+ "▁La k",
+ "▁Connect icut",
+ "▁al co",
+ "▁alc o",
+ "▁Sel bst",
+ "i ł",
+ "▁a lb",
+ "▁al b",
+ "ouver neur",
+ "ouvern eur",
+ "▁s r",
+ "▁ sr",
+ "▁v ba",
+ "▁vb a",
+ "lo ped",
+ "lop ed",
+ "l oped",
+ "▁Par tei",
+ "▁Part ei",
+ "▁Parte i",
+ "ua te",
+ "u ate",
+ "▁Auth entication",
+ "▁ Authentication",
+ "be i",
+ "b ei",
+ "}} .",
+ "} }.",
+ "▁kon nten",
+ "▁konn ten",
+ "▁konnte n",
+ "▁до по",
+ "▁h yd",
+ "▁hy d",
+ "Off ice",
+ "d onnées",
+ "▁C leveland",
+ "ri ta",
+ "rit a",
+ "r ita",
+ "ío s",
+ "í os",
+ "▁вы ше",
+ "▁Ro berts",
+ "▁Robert s",
+ "▁é lections",
+ "▁élect ions",
+ "▁' ')",
+ "▁'' )",
+ "▁publish ing",
+ "▁b apt",
+ "▁ba pt",
+ "<> ();",
+ "< >();",
+ "miss ing",
+ "mis sing",
+ "рова но",
+ "рован о",
+ "р овано",
+ "▁ho using",
+ "▁hous ing",
+ "▁in ference",
+ "▁infer ence",
+ "▁Rena issance",
+ "▁r èg",
+ "▁Ste ph",
+ "▁Step h",
+ "CE S",
+ "C ES",
+ "ER E",
+ "E RE",
+ "ке т",
+ "к ет",
+ "O U",
+ "▁group ing",
+ "ver kehr",
+ "ji h",
+ "j ih",
+ "ag li",
+ "▁mil k",
+ "la it",
+ "l ait",
+ "St age",
+ "▁by ly",
+ "▁byl y",
+ "▁wood en",
+ "▁wo oden",
+ "ke ley",
+ "kel ey",
+ "kele y",
+ "et ra",
+ "etr a",
+ "e tra",
+ "▁P eg",
+ "▁Pe g",
+ "▁don né",
+ "▁donn é",
+ "ad al",
+ "ada l",
+ "a dal",
+ "sequ ently",
+ "▁ins besondere",
+ "EL D",
+ "E LD",
+ "▁M am",
+ "▁Ma m",
+ "▁vol te",
+ "▁volt e",
+ "▁pro spect",
+ "▁pros pect",
+ "но ве",
+ "нов е",
+ "н ове",
+ "▁den oted",
+ "▁denote d",
+ "▁over lay",
+ "Per mission",
+ "Perm ission",
+ "ee n",
+ "e en",
+ "▁E M",
+ "▁ EM",
+ "▁u z",
+ "▁ uz",
+ "M c",
+ "ol it",
+ "oli t",
+ "o lit",
+ "▁ser vi",
+ "▁serv i",
+ "▁He idel",
+ "▁Wien er",
+ "▁Wi ener",
+ "▁Wie ner",
+ "▁il legal",
+ "▁predict ions",
+ "▁prediction s",
+ "▁go og",
+ "ho n",
+ "h on",
+ "▁Cin ema",
+ "▁ре волю",
+ "▁R ule",
+ "▁Ru le",
+ "▁ Rule",
+ "wo d",
+ "w od",
+ "▁rad iation",
+ "▁radi ation",
+ "o ł",
+ "ово ї",
+ "▁Per form",
+ "▁prison er",
+ "▁a met",
+ "▁am et",
+ "▁fig ura",
+ "▁figur a",
+ "▁Comm ander",
+ "▁Command er",
+ "▁о фициаль",
+ "▁t rov",
+ "▁tr ov",
+ "▁tro v",
+ "▁a cted",
+ "▁act ed",
+ "▁ac ted",
+ "▁work flow",
+ "▁Республи ки",
+ "▁guid ance",
+ "▁м ене",
+ "▁ме не",
+ "▁мен е",
+ "▁ мене",
+ "N ational",
+ "▁K el",
+ "▁Ke l",
+ "web pack",
+ "про стра",
+ "▁llam ado",
+ "al og",
+ "alo g",
+ "a log",
+ "ter ra",
+ "ix en",
+ "le graph",
+ "leg raph",
+ "ä ischen",
+ "▁teach ers",
+ "▁teacher s",
+ "ud en",
+ "ude n",
+ "u den",
+ "▁o gså",
+ "pos sible",
+ "poss ible",
+ "▁S oul",
+ "▁So ul",
+ "▁Sou l",
+ "▁Ge ography",
+ "▁за да",
+ "hi t",
+ "h it",
+ "▁an ger",
+ "▁ang er",
+ "▁ange r",
+ "▁ anger",
+ "▁rem porte",
+ "▁remp orte",
+ "Po d",
+ "P od",
+ "ч ке",
+ "▁a ria",
+ "▁ar ia",
+ "▁ aria",
+ "▁A stronom",
+ "ch apter",
+ "▁f ork",
+ "▁for k",
+ "▁Cu ando",
+ "men se",
+ "m ense",
+ "▁Christ ians",
+ "▁Christian s",
+ "g c",
+ "▁# (",
+ "Or gan",
+ "▁ste ady",
+ "▁stead y",
+ "ps e",
+ "p se",
+ "жи ть",
+ "ig nes",
+ "ign es",
+ "igne s",
+ "ater ra",
+ "a terra",
+ "mo vie",
+ "mov ie",
+ "m ovie",
+ "pos ta",
+ "po sta",
+ "post a",
+ "p osta",
+ "ra ste",
+ "ras te",
+ "r aste",
+ "▁Res source",
+ "▁Ress ource",
+ "▁Pa ís",
+ "▁( );",
+ "▁() ;",
+ "▁ ();",
+ "▁pen alty",
+ "т т",
+ "▁tras fer",
+ "cent ury",
+ "▁clean er",
+ "sel enium",
+ "s elenium",
+ "ort heast",
+ "orth east",
+ "xi c",
+ "x ic",
+ "лі ї",
+ "л ії",
+ "▁ingles e",
+ "▁T ang",
+ "▁Ta ng",
+ "▁Tan g",
+ "▁g ods",
+ "▁go ds",
+ "▁god s",
+ "fr ent",
+ "fre nt",
+ "f rent",
+ "ci ente",
+ "cient e",
+ "c iente",
+ "st arts",
+ "start s",
+ "star ts",
+ "▁mus ica",
+ "▁music a",
+ "ymnas ium",
+ "-- --+",
+ "---- +",
+ "--- -+",
+ "- ---+",
+ "▁ter rest",
+ "▁terre st",
+ "▁retr ieved",
+ "▁retrieve d",
+ "ia re",
+ "iar e",
+ "i are",
+ "un ning",
+ "unn ing",
+ "▁Mar cus",
+ "▁Marc us",
+ "▁prom ote",
+ "war ning",
+ "warn ing",
+ "w arning",
+ "ты й",
+ "т ый",
+ "}) $,",
+ "})$ ,",
+ "} )$,",
+ "Trans port",
+ "▁re son",
+ "▁res on",
+ "▁C lo",
+ "▁Cl o",
+ "▁e rm",
+ "▁er m",
+ "▁ erm",
+ "▁elimin ate",
+ "▁elim inate",
+ "he imer",
+ "heim er",
+ "▁s aves",
+ "▁sa ves",
+ "▁sav es",
+ "▁save s",
+ "▁pr ayer",
+ "▁pra yer",
+ "▁pray er",
+ "Class es",
+ "Ex press",
+ "Exp ress",
+ "Expr ess",
+ "▁Akadem ie",
+ "El se",
+ "Tu rn",
+ "T urn",
+ "▁ik ke",
+ "▁re i",
+ "▁r ei",
+ "▁ rei",
+ "▁di rett",
+ "▁dire tt",
+ "▁dir ett",
+ "▁R ost",
+ "▁Ro st",
+ "▁Ros t",
+ "▁P apa",
+ "▁Pa pa",
+ "▁Pap a",
+ "▁j sf",
+ "▁js f",
+ "ле нием",
+ "ление м",
+ "▁T ul",
+ "▁Tu l",
+ "▁Z ak",
+ "▁Za k",
+ "▁niem ieck",
+ "T w",
+ "am our",
+ "amo ur",
+ "ne sted",
+ "nes ted",
+ "nest ed",
+ "n ested",
+ "pp ets",
+ "ppe ts",
+ "ppet s",
+ "ш п",
+ "di t",
+ "d it",
+ "зе н",
+ "з ен",
+ "zy ma",
+ "zym a",
+ "hr te",
+ "Constra ints",
+ "Constraint s",
+ "▁own ership",
+ "▁owner ship",
+ "Ar m",
+ "A rm",
+ "▁cons umption",
+ "▁consum ption",
+ "▁f et",
+ "▁fe t",
+ "iv ari",
+ "iva ri",
+ "i vari",
+ "ch rom",
+ "chr om",
+ "set Attribute",
+ "▁com pose",
+ "▁comp ose",
+ "▁compos e",
+ "▁ compose",
+ "▁back ing",
+ "▁P az",
+ "▁Pa z",
+ "▁s cri",
+ "▁sc ri",
+ "▁scr i",
+ "▁ scri",
+ "▁Me chan",
+ "▁Nor way",
+ "▁J up",
+ "▁Ju p",
+ "▁m ér",
+ "▁mé r",
+ "▁administr ator",
+ "▁c abe",
+ "▁ca be",
+ "▁cab e",
+ "ival ent",
+ "▁thr one",
+ "▁thro ne",
+ "▁d ues",
+ "▁du es",
+ "▁due s",
+ "▁hum or",
+ "▁hu mor",
+ "▁A dri",
+ "▁Ad ri",
+ "▁ab ort",
+ "ña s",
+ "ñ as",
+ "▁Ки їв",
+ "j ící",
+ "▁zwe ite",
+ "▁zwei te",
+ "▁do ub",
+ "▁dou b",
+ "er shell",
+ "ers hell",
+ "шо й",
+ "▁F am",
+ "▁Fa m",
+ "å k",
+ "▁twe ede",
+ "▁twee de",
+ "▁R ib",
+ "▁Ri b",
+ "▁f ør",
+ "pc ión",
+ "p ción",
+ "in ned",
+ "inn ed",
+ "rv m",
+ "r vm",
+ "▁App ar",
+ "▁Ap par",
+ "▁D j",
+ "▁S hang",
+ "▁Sh ang",
+ "Dist ance",
+ "D istance",
+ "▁d awn",
+ "▁da wn",
+ "▁ dawn",
+ "▁Mat th",
+ "▁Matt h",
+ "▁err ichtet",
+ "ph antom",
+ "phan tom",
+ "▁re leases",
+ "▁release s",
+ "Recogn izer",
+ "▁K op",
+ "▁Ko p",
+ "▁P ul",
+ "▁Pu l",
+ "u é",
+ "na ts",
+ "nat s",
+ "n ats",
+ "re lax",
+ "rel ax",
+ "▁f led",
+ "▁fl ed",
+ "▁fle d",
+ "▁experience s",
+ "▁experien ces",
+ "ще е",
+ "ме ня",
+ "мен я",
+ "▁пер сона",
+ "▁Id entity",
+ "▁Ident ity",
+ "▁ Identity",
+ "re ts",
+ "ret s",
+ "r ets",
+ "k unft",
+ "la rg",
+ "lar g",
+ "l arg",
+ "List Item",
+ "v d",
+ "run ner",
+ "la nt",
+ "lan t",
+ "l ant",
+ "ip art",
+ "i part",
+ "ba y",
+ "b ay",
+ "ie i",
+ "i ei",
+ "▁length s",
+ "▁c attle",
+ "▁catt le",
+ "je ts",
+ "jet s",
+ "j ets",
+ "▁se hen",
+ "J ul",
+ "fa tt",
+ "f att",
+ "▁sur render",
+ "▁surr ender",
+ "▁Tr ump",
+ "▁Tru mp",
+ "дно го",
+ "д ного",
+ "▁Four ier",
+ "▁Fou rier",
+ "ie ben",
+ "ieb en",
+ "i eben",
+ "_ \"",
+ "▁frü her",
+ "▁gar ant",
+ "▁ga rant",
+ "uclide an",
+ "äg t",
+ "ä gt",
+ "▁пів ден",
+ "Page s",
+ "Pa ges",
+ "P ages",
+ "▁r ivers",
+ "▁river s",
+ "▁riv ers",
+ "▁ri vers",
+ "▁don ner",
+ "▁donn er",
+ "▁donne r",
+ "sv n",
+ "s vn",
+ "▁ ł",
+ "ov ě",
+ "o vě",
+ "▁Le ist",
+ "ar ial",
+ "ari al",
+ "aria l",
+ "a rial",
+ "ov ých",
+ "ový ch",
+ "▁f illing",
+ "▁fil ling",
+ "▁fill ing",
+ "▁mus icale",
+ "▁music ale",
+ "▁musical e",
+ "▁musica le",
+ "ma xim",
+ "max im",
+ "▁d ashed",
+ "▁das hed",
+ "▁dash ed",
+ "▁Н ов",
+ "▁Но в",
+ "Draw er",
+ "Dra wer",
+ "▁Medic ine",
+ "▁dok ument",
+ "ow el",
+ "owe l",
+ "o wel",
+ "vi ć",
+ "v ić",
+ "he ly",
+ "hel y",
+ "h ely",
+ "▁e let",
+ "▁el et",
+ "▁ele t",
+ "Sec onds",
+ "Second s",
+ "▁Gon z",
+ "ro u",
+ "r ou",
+ "▁fin ales",
+ "▁final es",
+ "▁finale s",
+ "r n",
+ "f ø",
+ "▁index ed",
+ "class Name",
+ "▁o ber",
+ "▁ob er",
+ "▁ ober",
+ "▁du as",
+ "▁optim ized",
+ "▁optimize d",
+ "▁k dy",
+ "vers ary",
+ "ener gy",
+ "▁цент ра",
+ "▁центр а",
+ "▁c urrency",
+ "▁curr ency",
+ "▁ currency",
+ "zy ż",
+ "Li ke",
+ "L ike",
+ "▁Г и",
+ "so no",
+ "son o",
+ "s ono",
+ "▁pa lab",
+ "▁pal ab",
+ "▁p ushing",
+ "▁push ing",
+ "ub lik",
+ "▁H ass",
+ "▁Ha ss",
+ "▁Has s",
+ "}\\ ,\\",
+ "}\\, \\",
+ "} \\,\\",
+ "un ker",
+ "unk er",
+ "▁F actory",
+ "▁Fact ory",
+ "▁ Factory",
+ "▁Res ources",
+ "▁Resource s",
+ "▁ Resources",
+ "date i",
+ "da tei",
+ "dat ei",
+ "▁T ools",
+ "▁To ols",
+ "▁Tool s",
+ "▁ Tools",
+ "▁ste hen",
+ "si me",
+ "sim e",
+ "s ime",
+ "▁Х у",
+ "▁h och",
+ "▁ho ch",
+ "▁Rod ríguez",
+ "zeit ig",
+ "▁Ter ry",
+ "▁Terr y",
+ "▁о бу",
+ "▁об у",
+ "Us age",
+ "urch ase",
+ "l ö",
+ "▁Int roduction",
+ "▁ Introduction",
+ "▁particip ation",
+ "ο ς",
+ "og li",
+ "ap y",
+ "a py",
+ "▁hope fully",
+ "pon der",
+ "po nder",
+ "pond er",
+ "p onder",
+ "▁Y ang",
+ "▁Yan g",
+ "▁Ya ng",
+ "▁prom ises",
+ "▁promise s",
+ "▁вер ну",
+ "▁о стров",
+ "▁ост ров",
+ "^{ +",
+ "▁most ra",
+ "▁mo stra",
+ "▁mos tra",
+ "▁CURL OPT",
+ "H H",
+ "▁std out",
+ "▁ stdout",
+ "▁br illiant",
+ "▁manus cript",
+ "▁de cir",
+ "▁dec ir",
+ "▁B olog",
+ "▁Bo log",
+ "▁Bol og",
+ "▁ме ста",
+ "▁мест а",
+ "▁in visible",
+ "▁C hal",
+ "▁Ch al",
+ "▁Cha l",
+ "▁analy ze",
+ "▁analyz e",
+ "pr ilis",
+ "pril is",
+ "att end",
+ "atten d",
+ "atte nd",
+ "M vc",
+ "th an",
+ "tha n",
+ "t han",
+ "ck o",
+ "c ko",
+ "▁Que bec",
+ "▁pl anta",
+ "▁plan ta",
+ "▁plant a",
+ "▁télé vis",
+ "▁un install",
+ "èn cies",
+ "▁gmin ie",
+ "▁P ref",
+ "▁Pr ef",
+ "▁Pre f",
+ "▁le quel",
+ "Inv ocation",
+ "▁ Í",
+ "▁trans formed",
+ "▁transform ed",
+ "MA N",
+ "M AN",
+ "ge baut",
+ "geb aut",
+ "▁со хра",
+ "▁вто рой",
+ "▁L ith",
+ "▁Li th",
+ "▁Lit h",
+ "wend ung",
+ "▁Polit ik",
+ "▁Sen ator",
+ "▁L L",
+ "▁ LL",
+ "жде ние",
+ "ш те",
+ "▁C és",
+ "▁b ande",
+ "▁band e",
+ "▁ban de",
+ "▁ba nde",
+ "▁histor ian",
+ "▁historia n",
+ "▁pass words",
+ "▁password s",
+ "mal loc",
+ "m alloc",
+ "▁sem if",
+ "▁semi f",
+ "▁r å",
+ "▁ rå",
+ "unic í",
+ "uni cí",
+ "Av ailable",
+ "Option al",
+ "Opt ional",
+ "▁T we",
+ "▁Tw e",
+ "▁k ró",
+ "▁kr ó",
+ "▁sub sets",
+ "▁subset s",
+ "▁subs ets",
+ "▁D AT",
+ "▁DA T",
+ "▁ DAT",
+ "▁double s",
+ "▁dou bles",
+ "▁doub les",
+ "ни ками",
+ "ника ми",
+ "▁з в",
+ "ge geben",
+ "geg eben",
+ "g egeben",
+ "▁По пис",
+ "▁jú lius",
+ "▁m eteor",
+ "▁met eor",
+ "Mo unt",
+ "M ount",
+ "iv ent",
+ "ive nt",
+ "iven t",
+ "i vent",
+ "▁N athan",
+ "▁Na than",
+ "▁Nat han",
+ "▁Sch utz",
+ "eg ov",
+ "ego v",
+ "e gov",
+ "▁d öd",
+ "▁me at",
+ "▁пун кт",
+ "▁m inds",
+ "▁min ds",
+ "▁mind s",
+ "eli very",
+ "▁T LS",
+ "ре м",
+ "р ем",
+ "cks å",
+ "▁stay ed",
+ "▁sta yed",
+ "▁B in",
+ "▁Bi n",
+ "▁P ia",
+ "▁Pi a",
+ "▁и мен",
+ "▁име н",
+ "▁им ен",
+ "▁Bob by",
+ "▁produ it",
+ "▁prod uit",
+ "em pio",
+ "emp io",
+ "▁redu cing",
+ "▁Y u",
+ "▁Gesch äft",
+ "▁per ché",
+ "▁c ors",
+ "▁cor s",
+ "▁co rs",
+ "▁i cons",
+ "▁icon s",
+ "▁ic ons",
+ "▁ icons",
+ "App Data",
+ "▁H og",
+ "▁Ho g",
+ "▁р ів",
+ "▁рі в",
+ "▁ рів",
+ "▁S ans",
+ "▁San s",
+ "▁Sa ns",
+ "▁si ège",
+ "▁siè ge",
+ "st ellen",
+ "stell en",
+ "stelle n",
+ "Br ush",
+ "OF F",
+ "O FF",
+ "▁vis itor",
+ "▁visit or",
+ "▁b ath",
+ "▁ba th",
+ "▁bat h",
+ "▁f ee",
+ "▁fe e",
+ "at isf",
+ "ati sf",
+ "atis f",
+ "▁cu rv",
+ "▁cur v",
+ "▁fol gender",
+ "▁folg ender",
+ "▁cons cience",
+ "▁Se attle",
+ "▁med ieval",
+ "▁medi eval",
+ "dist ribution",
+ "▁D M",
+ "▁ DM",
+ "▁м я",
+ "▁ мя",
+ "▁R UN",
+ "ak ov",
+ "ako v",
+ "a kov",
+ "ce il",
+ "c eil",
+ "▁let ting",
+ "▁lett ing",
+ "▁d ov",
+ "▁do v",
+ "▁о би",
+ "▁об и",
+ "ki ej",
+ "kie j",
+ "k iej",
+ "▁dire kt",
+ "▁t m",
+ "▁ tm",
+ "col ors",
+ "color s",
+ "colo rs",
+ "▁alt ro",
+ "▁tijd ens",
+ "]{ '",
+ "] {'",
+ "▁B om",
+ "▁Bo m",
+ "▁k unst",
+ "▁kun st",
+ "▁sh elter",
+ "▁r av",
+ "▁ra v",
+ "▁ rav",
+ "pre dict",
+ "pred ict",
+ "▁comenz ó",
+ "▁świ at",
+ "▁św iat",
+ "▁Du rant",
+ "▁Dur ant",
+ "▁sch emes",
+ "▁scheme s",
+ "▁sche mes",
+ "▁m esh",
+ "▁me sh",
+ "▁mes h",
+ "▁ind icator",
+ "▁indic ator",
+ "▁E mer",
+ "▁Em er",
+ "▁gu ilty",
+ "не ц",
+ "▁consequ ences",
+ "▁consequence s",
+ "cl udes",
+ "clude s",
+ "clud es",
+ "▁L ower",
+ "▁Lo wer",
+ "▁Low er",
+ "▁ Lower",
+ "▁по ме",
+ "▁p ace",
+ "▁pa ce",
+ "▁pac e",
+ "▁ pace",
+ "да го",
+ "▁am bos",
+ "▁amb os",
+ "l b",
+ "▁educ ated",
+ "ur ale",
+ "ura le",
+ "ural e",
+ "u rale",
+ "an h",
+ "es ség",
+ "ess ég",
+ "▁associ ations",
+ "▁association s",
+ "to wn",
+ "t own",
+ "▁t rif",
+ "▁tr if",
+ "▁tri f",
+ "sample s",
+ "sam ples",
+ "s amples",
+ "bo s",
+ "b os",
+ "▁S pect",
+ "▁Sp ect",
+ "▁Spe ct",
+ "▁Spec t",
+ "▁Ц е",
+ "alt ung",
+ "▁L ob",
+ "▁Lo b",
+ "▁curios ity",
+ "▁We iter",
+ "▁Wei ter",
+ "▁Weit er",
+ "est one",
+ "esto ne",
+ "eston e",
+ "e stone",
+ "▁dem ol",
+ "▁demo l",
+ "▁ap olog",
+ "▁apo log",
+ "▁D ynamic",
+ "▁Dynam ic",
+ "▁ Dynamic",
+ "In ner",
+ "es per",
+ "esp er",
+ "ec z",
+ "e cz",
+ "uel lement",
+ "uelle ment",
+ "▁Hamilton ian",
+ "At las",
+ "▁ar gue",
+ "▁arg ue",
+ "For eign",
+ "F oreign",
+ "col lapse",
+ "▁tér min",
+ "▁electron ic",
+ "▁electro nic",
+ "▁N R",
+ "▁ NR",
+ "▁c orr",
+ "▁cor r",
+ "▁co rr",
+ "▁ corr",
+ "tem ps",
+ "temp s",
+ "Index Path",
+ "я з",
+ "▁tal ál",
+ "to day",
+ "tod ay",
+ "wa ve",
+ "w ave",
+ "▁s ib",
+ "▁si b",
+ "▁с пи",
+ "▁сп и",
+ "▁con vey",
+ "▁conv ey",
+ "▁Gé ographie",
+ "▁Н ью",
+ "▁Hi bernate",
+ "▁t in",
+ "▁ti n",
+ "di c",
+ "d ic",
+ "pp ings",
+ "pping s",
+ "s weise",
+ "▁roll ing",
+ "▁rol ling",
+ "▁ rolling",
+ "▁select s",
+ ")\\ )",
+ ") \\)",
+ "▁po eta",
+ "▁poet a",
+ "▁сте пени",
+ "▁A br",
+ "▁Ab r",
+ "▁hö ch",
+ "▁s tern",
+ "▁st ern",
+ "▁ste rn",
+ "▁ster n",
+ "▁f jär",
+ "▁inst aller",
+ "▁install er",
+ "▁instal ler",
+ "de cl",
+ "dec l",
+ "▁m iser",
+ "▁mi ser",
+ "▁mis er",
+ "▁mise r",
+ "group by",
+ "sub str",
+ "subst r",
+ "▁phen omen",
+ "▁W ing",
+ "▁Win g",
+ "▁Wi ng",
+ "▁f ills",
+ "▁fil ls",
+ "▁fill s",
+ "▁ú nico",
+ "Run ning",
+ "R unning",
+ "Com e",
+ "Co me",
+ "C ome",
+ "ir able",
+ "ira ble",
+ "i rable",
+ "sim eq",
+ "sime q",
+ "▁re mp",
+ "▁r emp",
+ "▁rem p",
+ "ke le",
+ "kel e",
+ "k ele",
+ "li ers",
+ "lie rs",
+ "lier s",
+ "l iers",
+ "▁kwiet nia",
+ "▁inter rupted",
+ "▁interrupt ed",
+ "▁J et",
+ "▁Je t",
+ "=\\ {",
+ "= \\{",
+ "íd o",
+ "í do",
+ "▁Tai wan",
+ "▁воз ра",
+ "▁altern atives",
+ "▁alternative s",
+ "▁T ir",
+ "▁Ti r",
+ "▁Re serve",
+ "▁Res erve",
+ "▁К ур",
+ "▁Ку р",
+ "▁No bel",
+ "▁Nob el",
+ "▁рабо тал",
+ "▁работа л",
+ "▁a xes",
+ "▁ax es",
+ "▁C ependant",
+ "k á",
+ "▁er neut",
+ "▁D emo",
+ "▁De mo",
+ "▁Dem o",
+ "▁ Demo",
+ "comm unic",
+ "con structor",
+ "construct or",
+ "▁Mon day",
+ "▁Mond ay",
+ "N il",
+ "Hash Map",
+ "pay ment",
+ "▁fix ing",
+ "▁A DD",
+ "▁AD D",
+ "▁ ADD",
+ "re view",
+ "rev iew",
+ "▁poss ibil",
+ "▁possib il",
+ "▁g rote",
+ "▁gr ote",
+ "▁gro te",
+ "▁group ed",
+ "▁groupe d",
+ "▁L ima",
+ "▁Li ma",
+ "▁Lim a",
+ "▁A ugen",
+ "▁Au gen",
+ "▁Aug en",
+ "▁o ckså",
+ "on as",
+ "ona s",
+ "o nas",
+ "▁deb ate",
+ "▁In gl",
+ "▁Ing l",
+ "D a",
+ "SO UR",
+ "S OUR",
+ "ett be",
+ "▁Batt alion",
+ "▁F loat",
+ "▁Flo at",
+ "▁ Float",
+ "▁c one",
+ "▁con e",
+ "▁co ne",
+ "read sheet",
+ "co urt",
+ "cou rt",
+ "c ourt",
+ "li gen",
+ "lig en",
+ "lige n",
+ "l igen",
+ "▁Begin n",
+ "▁Beg inn",
+ "▁LI MIT",
+ "▁LIM IT",
+ "▁enjo yed",
+ "▁enjoy ed",
+ "▁Jak ob",
+ "▁t elt",
+ "▁te lt",
+ "▁tel t",
+ "back end",
+ "▁Gemeins ame",
+ "li nt",
+ "lin t",
+ "l int",
+ "al ling",
+ "all ing",
+ "▁b ör",
+ "gr and",
+ "gra nd",
+ "g rand",
+ "▁divers es",
+ "▁diverse s",
+ "▁z wiąz",
+ "▁Kom pon",
+ "▁inner halb",
+ "▁desar rollo",
+ "▁desarroll o",
+ "▁Ma sters",
+ "▁Mas ters",
+ "▁Master s",
+ "io so",
+ "ios o",
+ "i oso",
+ "]` .",
+ "] `.",
+ "▁frances a",
+ "▁franc esa",
+ "A ff",
+ "in ek",
+ "ine k",
+ "i nek",
+ "▁des sin",
+ "▁dess in",
+ "`. `",
+ "` .`",
+ "▁r anks",
+ "▁ran ks",
+ "▁rank s",
+ "бер г",
+ "▁s kal",
+ "▁sk al",
+ "▁S ultan",
+ "▁Sul tan",
+ "А Н",
+ "▁спо соб",
+ "▁contra dict",
+ "▁contrad ict",
+ "▁re com",
+ "▁rec om",
+ "▁Ok lahoma",
+ "▁Vlad imir",
+ "▁m eters",
+ "▁me ters",
+ "▁met ers",
+ "▁meter s",
+ "trans port",
+ "▁cons ulté",
+ "▁consult é",
+ "▁ consulté",
+ "▁A TP",
+ "▁AT P",
+ "eb b",
+ "e bb",
+ "▁vol unte",
+ "▁volunt e",
+ "▁out line",
+ "LI C",
+ "L IC",
+ "▁e uro",
+ "▁eu ro",
+ "Char Field",
+ "med ium",
+ "medi um",
+ "▁Belg ique",
+ "Pro c",
+ "Pr oc",
+ "P roc",
+ "ro utes",
+ "route s",
+ "rout es",
+ "rou tes",
+ "▁cont ribu",
+ "▁contrib u",
+ "! }",
+ "ší m",
+ "š ím",
+ "▁L ess",
+ "▁Le ss",
+ "▁Les s",
+ "▁K ost",
+ "▁Ko st",
+ "▁Kos t",
+ "▁eredet iből",
+ "re ven",
+ "rev en",
+ "r even",
+ "ver ify",
+ "▁S alt",
+ "▁Sal t",
+ "▁Sa lt",
+ "▁shoot ing",
+ "▁sho oting",
+ "▁dis pose",
+ "▁dispos e",
+ "▁disp ose",
+ "uj í",
+ "▁t ierra",
+ "▁tier ra",
+ "▁po ison",
+ "▁poi son",
+ "sa k",
+ "s ak",
+ "periment al",
+ "▁N é",
+ "▁K id",
+ "▁Ki d",
+ "ag yar",
+ "agy ar",
+ "▁archiv álva",
+ "be reich",
+ "bere ich",
+ "í z",
+ "▁R itter",
+ "▁Хронологи ја",
+ "ze um",
+ "да х",
+ "▁gr ünd",
+ "▁program mer",
+ "▁programme r",
+ "▁cons eil",
+ "▁conse il",
+ "▁enc rypt",
+ "integr ation",
+ "C ulture",
+ "▁Circ le",
+ "▁Cir cle",
+ "Ob servable",
+ "▁gen omsnitt",
+ "▁Se lection",
+ "▁Select ion",
+ "▁Sel ection",
+ "▁Sele ction",
+ "▁ Selection",
+ "▁ir regular",
+ "Aut res",
+ "Per cent",
+ "fa ult",
+ "f ault",
+ "▁virt ue",
+ "ą pi",
+ "▁s ess",
+ "▁se ss",
+ "▁ses s",
+ "▁Так же",
+ "Tim estamp",
+ "▁litt érature",
+ "▁mo ż",
+ "▁b orrow",
+ "▁bor row",
+ "▁con ced",
+ "▁conc ed",
+ "▁conce d",
+ "чни к",
+ "ч ник",
+ "▁L und",
+ "▁Lu nd",
+ "ION S",
+ "IO NS",
+ "yn ie",
+ "y nie",
+ "▁S hin",
+ "▁Sh in",
+ "▁o sob",
+ "▁os ob",
+ "b ě",
+ "▁int uit",
+ "▁intu it",
+ "▁на п",
+ "▁p roph",
+ "▁pro ph",
+ "▁pr oph",
+ "▁prop h",
+ "▁p itt",
+ "▁pi tt",
+ "▁pit t",
+ "▁IB M",
+ "▁T ill",
+ "▁Ti ll",
+ "▁h ina",
+ "▁hi na",
+ "▁hin a",
+ "it test",
+ "itt est",
+ "itte st",
+ "gener ator",
+ "▁N in",
+ "▁Ni n",
+ "▁K ot",
+ "▁Ko t",
+ "▁p asser",
+ "▁pass er",
+ "▁pas ser",
+ "▁passe r",
+ "▁dis position",
+ "▁dispos ition",
+ "▁disp osition",
+ "un ing",
+ "uni ng",
+ "u ning",
+ "▁f ame",
+ "▁fa me",
+ "▁fam e",
+ "▁t enia",
+ "▁te nia",
+ "▁ten ia",
+ "an cement",
+ "ance ment",
+ "anc ement",
+ "▁Su isse",
+ "` -",
+ "▁h ombres",
+ "▁hom bres",
+ "▁hombre s",
+ "▁inf inity",
+ "▁infin ity",
+ "▁окон ча",
+ "▁co sm",
+ "▁cos m",
+ "▁D ennis",
+ "▁Den nis",
+ "ba z",
+ "b az",
+ "ha upt",
+ "h aupt",
+ "▁might y",
+ "▁pr ede",
+ "▁pre de",
+ "▁pred e",
+ "us able",
+ "usa ble",
+ "▁ws zyst",
+ "▁wsz yst",
+ "▁l b",
+ "▁ lb",
+ "AB ASE",
+ "A BASE",
+ "j na",
+ "не в",
+ "н ев",
+ "▁as es",
+ "▁ ases",
+ "▁final mente",
+ "й м",
+ "pe ction",
+ "pect ion",
+ "pec tion",
+ "p ection",
+ "▁Stud ien",
+ "▁Norweg ian",
+ "ce go",
+ "c ego",
+ "IN DEX",
+ "IND EX",
+ "or ten",
+ "ort en",
+ "orte n",
+ "▁friend ship",
+ "▁friends hip",
+ "met ro",
+ "m etro",
+ "th ick",
+ "▁Z el",
+ "▁Ze l",
+ "LO W",
+ "L OW",
+ "▁there by",
+ "un ted",
+ "unt ed",
+ "unte d",
+ "▁sur faces",
+ "▁surface s",
+ "ющи м",
+ "%) .",
+ "% ).",
+ "▁W onder",
+ "▁Wo nder",
+ "▁redund ant",
+ "▁G ros",
+ "▁Gr os",
+ "▁Gro s",
+ "▁web sites",
+ "▁website s",
+ "▁v io",
+ "▁vi o",
+ "▁o cas",
+ "▁oc as",
+ "vé s",
+ "v és",
+ "▁G am",
+ "▁Ga m",
+ "d w",
+ "Ind icator",
+ "▁K ob",
+ "▁Ko b",
+ "▁j ack",
+ "▁ja ck",
+ "▁ jack",
+ "Hi nt",
+ "H int",
+ "▁A pol",
+ "▁Ap ol",
+ "▁други е",
+ "▁N UM",
+ "▁ NUM",
+ "▁o fic",
+ "▁of ic",
+ "yst ycz",
+ "▁were ld",
+ "▁wer eld",
+ "мо сти",
+ "LE FT",
+ "▁T ypes",
+ "▁Type s",
+ "▁Ty pes",
+ "▁Typ es",
+ "▁ Types",
+ "se en",
+ "see n",
+ "s een",
+ "un cia",
+ "unc ia",
+ "unci a",
+ "▁n arod",
+ "▁na rod",
+ "▁nar od",
+ "▁это т",
+ "Side note",
+ "S idenote",
+ "ue il",
+ "u eil",
+ "▁от ме",
+ "▁cour ts",
+ "▁court s",
+ "fi r",
+ "f ir",
+ "ur z",
+ "u rz",
+ "чен ко",
+ "Cred entials",
+ "▁imag ination",
+ "it ats",
+ "ita ts",
+ "itat s",
+ "bu ff",
+ "buf f",
+ "b uff",
+ "fl ash",
+ "▁bad ly",
+ "▁w orn",
+ "▁wor n",
+ "▁wo rn",
+ "▁окру гу",
+ "cat alog",
+ "catal og",
+ "c atalog",
+ "li me",
+ "lim e",
+ "l ime",
+ "▁G ill",
+ "▁Gi ll",
+ "▁Gil l",
+ "▁S ent",
+ "▁Se nt",
+ "▁Sen t",
+ "ie lla",
+ "iel la",
+ "i ella",
+ "▁Cra ig",
+ "▁S ele",
+ "▁Se le",
+ "▁Sel e",
+ "▁Indep end",
+ "▁prov incie",
+ "▁provin cie",
+ "os sen",
+ "oss en",
+ "▁за пад",
+ "▁запа д",
+ "▁inf ant",
+ "▁pr events",
+ "▁prevent s",
+ "▁prev ents",
+ "▁provin ces",
+ "▁province s",
+ "af é",
+ "be g",
+ "b eg",
+ "▁col ours",
+ "▁colour s",
+ "B F",
+ "ë n",
+ "▁Ме жду",
+ "î n",
+ "Ob server",
+ "for sch",
+ "í gen",
+ "um ption",
+ "ump tion",
+ "▁Ill ustr",
+ "ри ст",
+ "рис т",
+ "▁по лови",
+ "▁пол ови",
+ "▁поло ви",
+ "▁` &",
+ "▁o re",
+ "▁or e",
+ "▁ ore",
+ "▁supp lies",
+ "▁parent hes",
+ "Found ation",
+ "▁v ou",
+ "▁vo u",
+ "▁T out",
+ "▁To ut",
+ "Don ald",
+ "▁R ET",
+ "▁RE T",
+ "we ig",
+ "wei g",
+ "▁produ cción",
+ "mi x",
+ "m ix",
+ "▁ut wor",
+ "▁f öl",
+ "▁fö l",
+ "▁ent ão",
+ "▁S ister",
+ "▁Si ster",
+ "Tag s",
+ "T ags",
+ "▁Савез не",
+ "▁privile ges",
+ "▁na zw",
+ "▁naz w",
+ "▁R av",
+ "▁Ra v",
+ "▁re pro",
+ "▁rep ro",
+ "▁repr o",
+ "▁M ason",
+ "▁Ma son",
+ "▁Mas on",
+ "▁Pl atform",
+ "▁Plat form",
+ "▁ Platform",
+ "▁про бле",
+ "▁P érez",
+ "▁bl anc",
+ "▁bla nc",
+ "▁blan c",
+ "Be havior",
+ "фи ци",
+ "ek en",
+ "e ken",
+ "▁me ets",
+ "▁meet s",
+ "(. *",
+ "( .*",
+ "▁f å",
+ "ep en",
+ "e pen",
+ "ma ker",
+ "make r",
+ "m aker",
+ "▁lo yal",
+ "mem bers",
+ "member s",
+ "m embers",
+ "meister schaft",
+ "go al",
+ "ш лен",
+ "▁се веро",
+ "▁север о",
+ "ie nde",
+ "ien de",
+ "i ende",
+ "д ні",
+ "Pro of",
+ "▁exp lic",
+ "▁expl ic",
+ "▁elect ro",
+ "ie ls",
+ "iel s",
+ "i els",
+ "re load",
+ "▁el even",
+ "▁ele ven",
+ "▁elev en",
+ "▁part idos",
+ "▁partido s",
+ "în e",
+ "î ne",
+ "▁R egin",
+ "▁Re gin",
+ "▁Reg in",
+ "▁é x",
+ "▁Bu lg",
+ "▁Bul g",
+ "▁network ing",
+ "▁net working",
+ "▁se parator",
+ "▁separ ator",
+ "User Name",
+ "▁edific io",
+ "▁M ie",
+ "▁Mi e",
+ "▁id le",
+ "ye d",
+ "y ed",
+ "▁pass engers",
+ "▁passenger s",
+ "+ )",
+ "me no",
+ "men o",
+ "m eno",
+ "eg gi",
+ "e ggi",
+ "▁nice ly",
+ "▁nic ely",
+ "end encia",
+ "enden cia",
+ "чи й",
+ "ét és",
+ "été s",
+ "ight arrow",
+ "▁orth ogonal",
+ "▁H alf",
+ "▁Hal f",
+ "▁fe wer",
+ "▁few er",
+ "▁pro pi",
+ "▁prop i",
+ "▁pr imit",
+ "▁prim it",
+ "▁pri mit",
+ "▁primi t",
+ "ic ale",
+ "ical e",
+ "ica le",
+ "▁f lower",
+ "▁fl ower",
+ "▁flow er",
+ "▁flo wer",
+ "mer k",
+ "m erk",
+ "▁Оте че",
+ "▁pers istent",
+ "▁persist ent",
+ "▁V ille",
+ "▁Vill e",
+ "▁Vi lle",
+ "▁Vil le",
+ "Me n",
+ "M en",
+ "ga ben",
+ "gabe n",
+ "g aben",
+ "▁Isa ac",
+ "at ivity",
+ "ativ ity",
+ "ati vity",
+ "▁pół noc",
+ "▁r ok",
+ "▁ro k",
+ "▁ rok",
+ "car ds",
+ "card s",
+ "c ards",
+ "де ния",
+ "▁ю го",
+ "▁extra ordinary",
+ "▁k yr",
+ "(\" ,",
+ "( \",",
+ ")) ]",
+ ") )]",
+ "▁un ix",
+ "▁ unix",
+ "ко л",
+ "▁s ink",
+ "▁sin k",
+ "ap sed",
+ "aps ed",
+ "▁k ommen",
+ "▁kom men",
+ "▁komm en",
+ "▁ kommen",
+ "▁for cing",
+ "Ab out",
+ "▁H alle",
+ "▁Ha lle",
+ "▁Hall e",
+ "▁Hal le",
+ "▁Maj esty",
+ "▁Sw itch",
+ "▁ Switch",
+ "▁ab road",
+ "▁acceler ation",
+ "ur bed",
+ "urb ed",
+ "▁о стан",
+ "▁ос тан",
+ "▁оста н",
+ "▁ост ан",
+ "Re ady",
+ "Read y",
+ "▁пів ні",
+ "Br a",
+ "B ra",
+ "▁ць ого",
+ "▁pl ut",
+ "▁T rain",
+ "▁Tr ain",
+ "▁Tra in",
+ "▁á prilis",
+ "▁p uesto",
+ "▁pu esto",
+ "▁pue sto",
+ "▁t oss",
+ "▁to ss",
+ "▁irre levant",
+ "▁d ip",
+ "▁di p",
+ "se gment",
+ "seg ment",
+ "op acity",
+ "▁lors que",
+ "▁versch ill",
+ "ен а",
+ "е на",
+ "▁D oc",
+ "▁Do c",
+ "▁ Doc",
+ "%%%% %%%%",
+ "▁b orders",
+ "▁border s",
+ "▁bor ders",
+ "▁bord ers",
+ "ge bras",
+ "geb ras",
+ "gebra s",
+ "▁r ies",
+ "▁ri es",
+ "▁ ries",
+ "▁Olymp edia",
+ "▁Gener ation",
+ "met ros",
+ "metro s",
+ "▁hor izon",
+ "▁adapt ation",
+ "▁Z ahl",
+ "▁Za hl",
+ "▁na he",
+ "▁nah e",
+ "▁B ug",
+ "▁Bu g",
+ "P icture",
+ "љ и",
+ "R GB",
+ "O wner",
+ "ad in",
+ "adi n",
+ "a din",
+ "▁Catal unya",
+ "ný ch",
+ "n ých",
+ "▁cual quier",
+ "▁Inst itution",
+ "▁Instit ution",
+ "▁Institut ion",
+ "in sen",
+ "ins en",
+ "▁Bras ile",
+ "▁Brasil e",
+ "▁f itting",
+ "▁fit ting",
+ "De leg",
+ "Del eg",
+ "ic two",
+ "ict wo",
+ "▁Ex per",
+ "▁Exp er",
+ "och astic",
+ "▁d us",
+ "▁du s",
+ "▁по ра",
+ "▁пор а",
+ "▁sub string",
+ "▁subst ring",
+ "▁subs tring",
+ "▁substr ing",
+ "▁ substring",
+ "сси и",
+ "с сии",
+ "oi n",
+ "o in",
+ "▁ш кола",
+ "▁шко ла",
+ "▁c x",
+ "▁ cx",
+ "▁% )",
+ "▁ %)",
+ "▁Bud dh",
+ "▁p ending",
+ "▁pen ding",
+ "▁En try",
+ "▁Ent ry",
+ "▁ Entry",
+ "▁Be rl",
+ "▁Ber l",
+ "▁c ler",
+ "▁cl er",
+ "▁cle r",
+ "▁ cler",
+ "▁S oc",
+ "▁So c",
+ "▁r ounded",
+ "▁round ed",
+ "▁m v",
+ "▁ mv",
+ "ít ett",
+ "▁Di plom",
+ "▁französ ischen",
+ "▁G an",
+ "▁Ga n",
+ "▁Inv estig",
+ "▁index Path",
+ "▁ indexPath",
+ "▁mol ti",
+ "▁molt i",
+ "pers istence",
+ "▁XIX e",
+ "▁Elect ron",
+ "b ü",
+ "ge le",
+ "gel e",
+ "g ele",
+ "▁M aler",
+ "▁Ma ler",
+ "▁Mal er",
+ "▁Male r",
+ "▁proyect o",
+ "▁B ath",
+ "▁Ba th",
+ "▁Bat h",
+ "el lers",
+ "ell ers",
+ "elle rs",
+ "eller s",
+ "▁G P",
+ "▁ GP",
+ "on ing",
+ "oni ng",
+ "o ning",
+ "clou dflare",
+ "▁p ři",
+ "▁př i",
+ "▁d ed",
+ "▁de d",
+ "▁ ded",
+ "▁Od kazy",
+ "▁M sg",
+ "▁ Msg",
+ "▁B eing",
+ "▁Be ing",
+ "▁Bei ng",
+ "▁De puis",
+ "▁Dep uis",
+ "▁Pri mary",
+ "▁Prim ary",
+ "▁Prima ry",
+ "▁ Primary",
+ "▁App ro",
+ "▁Ap pro",
+ "▁form ally",
+ "▁formal ly",
+ "ступ ил",
+ "ступи л",
+ "▁fue ra",
+ "▁fu era",
+ "▁fuer a",
+ "▁R oot",
+ "▁Ro ot",
+ "▁ Root",
+ "▁aut onom",
+ "▁auto nom",
+ "▁secret ary",
+ "▁os ób",
+ "▁cu ales",
+ "▁cual es",
+ "▁Dep ending",
+ "▁a si",
+ "▁as i",
+ "▁ asi",
+ "ve ra",
+ "ver a",
+ "v era",
+ "▁rus se",
+ "▁russ e",
+ "▁pro ves",
+ "▁prov es",
+ "▁prove s",
+ "▁pres iden",
+ "R U",
+ "▁Wat son",
+ "▁web pack",
+ "▁ webpack",
+ "elli gence",
+ "ellig ence",
+ "ка м",
+ "▁Office r",
+ "▁Offic er",
+ "▁d elivery",
+ "▁deliver y",
+ "▁deli very",
+ "ж дён",
+ "▁им пе",
+ "▁w il",
+ "▁v esc",
+ "▁ve sc",
+ "▁ves c",
+ "uszt us",
+ "▁Ge off",
+ "() }",
+ "( )}",
+ "▁F ore",
+ "▁For e",
+ "▁Fo re",
+ "▁w enig",
+ "▁we nig",
+ "▁wen ig",
+ "▁A irl",
+ "▁Air l",
+ "▁E fter",
+ "▁Bre ak",
+ "▁St äd",
+ "is miss",
+ "ism iss",
+ "í p",
+ "▁avoid ed",
+ "▁avo ided",
+ "▁assert ion",
+ "D N",
+ "▁te at",
+ "▁tea t",
+ "ín a",
+ "í na",
+ "▁mechan ical",
+ "is u",
+ "i su",
+ "@ {",
+ "▁n ou",
+ "▁no u",
+ "▁ nou",
+ "Ital ie",
+ "source forge",
+ "▁s vo",
+ "▁sv o",
+ "▁kir ály",
+ "▁Re ferences",
+ "▁Refer ences",
+ "▁Reference s",
+ "si x",
+ "s ix",
+ "▁Arch ives",
+ "▁Archiv es",
+ "▁Archive s",
+ "▁fin ishing",
+ "▁finish ing",
+ "ac je",
+ "ét at",
+ "éta t",
+ "é tat",
+ "if fs",
+ "iff s",
+ "▁st ead",
+ "▁ste ad",
+ "▁fe as",
+ "aw are",
+ "awa re",
+ "a ware",
+ "la nde",
+ "land e",
+ "lan de",
+ "l ande",
+ "In ject",
+ "▁A gent",
+ "▁Ag ent",
+ "▁Age nt",
+ "▁ Agent",
+ "▁Norm datei",
+ "▁a men",
+ "▁am en",
+ "▁ amen",
+ "▁Arch itecture",
+ "az e",
+ "a ze",
+ "ș te",
+ "▁us ar",
+ "▁c ores",
+ "▁cor es",
+ "▁co res",
+ "▁core s",
+ "лі н",
+ "л ін",
+ "▁C astro",
+ "▁Cast ro",
+ "▁v æ",
+ ">\" ,",
+ "> \",",
+ "om ena",
+ "ome na",
+ "omen a",
+ "▁ge sam",
+ "▁ges am",
+ "▁Mart ín",
+ "▁Martí n",
+ "eg ung",
+ "egu ng",
+ "▁spole č",
+ "▁ampl itude",
+ "▁amplit ude",
+ "▁import ing",
+ "▁list view",
+ "TH E",
+ "T HE",
+ "zi ale",
+ "zial e",
+ "zia le",
+ "z iale",
+ "ce des",
+ "ced es",
+ "c edes",
+ "▁particul ier",
+ "▁Распо дела",
+ "▁кра й",
+ "▁d ivent",
+ "▁di vent",
+ "▁div ent",
+ "▁k é",
+ "▁ ké",
+ "qu it",
+ "qui t",
+ "q uit",
+ "то ром",
+ "тор ом",
+ "Check Box",
+ "▁Zob acz",
+ "ph e",
+ "p he",
+ "pt a",
+ "p ta",
+ "▁s jö",
+ "▁sj ö",
+ "▁розта ш",
+ "▁tedes co",
+ "▁s tal",
+ "▁st al",
+ "▁sta l",
+ "▁ stal",
+ "▁Be ruf",
+ "▁Ber uf",
+ "ова я",
+ "о вая",
+ "▁s vě",
+ "▁sv ě",
+ "▁fl ush",
+ "▁flu sh",
+ "▁ flush",
+ "▁від бу",
+ "▁rad ial",
+ "▁radi al",
+ "▁différ entes",
+ "ан та",
+ "▁Per ry",
+ "Col l",
+ "Co ll",
+ "C oll",
+ "li qu",
+ "l iqu",
+ "▁Option al",
+ "▁Opt ional",
+ "▁ Optional",
+ "▁Сан кт",
+ "▁LIN Q",
+ "▁Fran c",
+ "▁Fr anc",
+ "▁Fra nc",
+ "ci je",
+ "c ije",
+ "▁Gu illaume",
+ "kn ow",
+ "k now",
+ "▁Un its",
+ "▁Unit s",
+ "ol k",
+ "▁Syst ème",
+ "▁S ales",
+ "▁Sal es",
+ "▁Sa les",
+ "▁ehemal igen",
+ "ми рова",
+ "мир ова",
+ "x html",
+ "set opt",
+ "▁m ellan",
+ "▁mel lan",
+ "▁z ie",
+ "▁ zie",
+ "▁gi ant",
+ "Bo ard",
+ "▁C aval",
+ "▁Ca val",
+ "▁Cav al",
+ "▁def ence",
+ "-- --------",
+ "---- ------",
+ "-------- --",
+ "--- -------",
+ "------ ----",
+ "----- -----",
+ "------- ---",
+ "ps hire",
+ "p shire",
+ "ma rt",
+ "mar t",
+ "m art",
+ "▁Di oc",
+ "is kt",
+ "isk t",
+ "▁in se",
+ "▁ins e",
+ "▁é pisode",
+ "чи к",
+ "bar s",
+ "ba rs",
+ "b ars",
+ "Si to",
+ "S ito",
+ "▁integr ity",
+ "au ff",
+ "auf f",
+ "a uff",
+ "▁v är",
+ "▁vä r",
+ "Az ure",
+ "▁star b",
+ "▁sta rb",
+ "▁кон тра",
+ "▁Мекси чка",
+ "▁за па",
+ "▁Mount ains",
+ "▁Mountain s",
+ "}} =",
+ "} }=",
+ "▁pull ing",
+ "▁pul ling",
+ "▁sat ellite",
+ "▁at oms",
+ "▁atom s",
+ "▁profes or",
+ "▁repeated ly",
+ "▁repeat edly",
+ "▁inv asion",
+ "▁invas ion",
+ "program ming",
+ "├ ──",
+ "▁L ip",
+ "▁Li p",
+ "вши е",
+ "в шие",
+ "▁k een",
+ "▁ke en",
+ "▁crit ics",
+ "▁critic s",
+ "▁N icola",
+ "▁Nicol a",
+ "▁Nic ola",
+ "▁Ni cola",
+ "▁C and",
+ "▁Can d",
+ "▁Ca nd",
+ "▁dist int",
+ "▁he ading",
+ "▁head ing",
+ "p ragma",
+ "{ |",
+ "ym en",
+ "yme n",
+ "y men",
+ "▁ter rain",
+ "▁terra in",
+ "ied enis",
+ "▁bes onders",
+ "▁nomin ated",
+ "BO OL",
+ "▁K ay",
+ "▁Ka y",
+ "ci an",
+ "cia n",
+ "c ian",
+ "st elle",
+ "ste lle",
+ "stell e",
+ "▁disput e",
+ "▁disp ute",
+ "▁ щ",
+ "Data Set",
+ "no thing",
+ "not hing",
+ "n othing",
+ "Aut om",
+ "Auto m",
+ "hör en",
+ "hö ren",
+ "▁s hed",
+ "▁sh ed",
+ "▁she d",
+ "▁p aused",
+ "▁pa used",
+ "▁pause d",
+ "▁pau sed",
+ "sa n",
+ "s an",
+ "▁nun ca",
+ "!( \"",
+ "! (\"",
+ "▁po łoż",
+ "Se cret",
+ "Sec ret",
+ "▁Do main",
+ "▁Dom ain",
+ "▁ Domain",
+ "▁воз мож",
+ "X V",
+ "l v",
+ "ik h",
+ "i kh",
+ "▁S ony",
+ "▁So ny",
+ "▁Son y",
+ "m q",
+ "ot rop",
+ "otr op",
+ "▁Log ger",
+ "▁ Logger",
+ "▁thre at",
+ "as ted",
+ "ast ed",
+ "aste d",
+ "a sted",
+ "зь ко",
+ "▁fre ely",
+ "▁free ly",
+ "▁improve ments",
+ "▁improv ements",
+ "▁improvement s",
+ "ist ema",
+ "iste ma",
+ "▁illustr ate",
+ "▁t act",
+ "▁ta ct",
+ "▁fig ur",
+ "ué s",
+ "u és",
+ "rim inal",
+ "rimin al",
+ "od on",
+ "odo n",
+ "o don",
+ "int endo",
+ "▁influ enced",
+ "▁influence d",
+ "▁influen ced",
+ "FF ER",
+ "▁G host",
+ "▁Gh ost",
+ "▁со вер",
+ "▁сов ер",
+ "na d",
+ "n ad",
+ "ion ed",
+ "io ned",
+ "ione d",
+ "i oned",
+ "▁Event s",
+ "▁Ev ents",
+ "▁Even ts",
+ "▁ Events",
+ "▁wr apping",
+ "▁wra pping",
+ "▁wrap ping",
+ "-------- -+",
+ "--- ------+",
+ "------ ---+",
+ "----- ----+",
+ "------- --+",
+ "fi f",
+ "f if",
+ "▁( **",
+ "▁(* *",
+ "={ {",
+ "= {{",
+ "ма ль",
+ "м аль",
+ "▁loss es",
+ "▁Gal erie",
+ "te l",
+ "t el",
+ "▁лю того",
+ "▁K ru",
+ "▁Kr u",
+ "▁P olen",
+ "▁Pol en",
+ "▁Po len",
+ "ні м",
+ "ne ar",
+ "nea r",
+ "n ear",
+ "▁sh ame",
+ "▁moy enne",
+ "▁C P",
+ "▁ CP",
+ "pre is",
+ "▁pass enger",
+ "le k",
+ "l ek",
+ "ion ales",
+ "ional es",
+ "ionale s",
+ "iona les",
+ "kaf ka",
+ "k afka",
+ "▁partic ipe",
+ "▁particip e",
+ "▁parti cipe",
+ "▁partici pe",
+ "▁memb ership",
+ "▁member ship",
+ "▁members hip",
+ "[ _",
+ "land o",
+ "lan do",
+ "l ando",
+ "st elling",
+ "stell ing",
+ "Se m",
+ "S em",
+ "go n",
+ "g on",
+ "▁Cor rect",
+ "▁v alle",
+ "▁val le",
+ "▁va lle",
+ "▁vall e",
+ "▁read ily",
+ "▁Dok ument",
+ "hon neur",
+ "h onneur",
+ "▁test im",
+ "ul ative",
+ "do Filter",
+ "▁domin ant",
+ "am mer",
+ "amm er",
+ "▁ко ја",
+ "▁M onsieur",
+ "ze g",
+ "z eg",
+ "▁вій ни",
+ "▁F o",
+ "▁A my",
+ "▁Am y",
+ "▁ ¡",
+ "▁febru ár",
+ "▁down loading",
+ "▁download ing",
+ "▁l eng",
+ "▁le ng",
+ "▁len g",
+ "\\}$ ,",
+ "\\} $,",
+ "\\ }$,",
+ "▁ne at",
+ "▁C ache",
+ "▁Ca che",
+ "▁ Cache",
+ "IC ATION",
+ "▁de ve",
+ "▁dev e",
+ "▁s orrow",
+ "▁sor row",
+ "sl ow",
+ "s low",
+ "▁hin aus",
+ "▁hina us",
+ "▁recon oc",
+ "▁Lin ked",
+ "▁Link ed",
+ "▁Sh aw",
+ "mar ket",
+ "mark et",
+ "▁D ic",
+ "▁Di c",
+ "▁S ki",
+ "▁Sk i",
+ "▁del imiter",
+ "▁Main Activity",
+ "▁ MainActivity",
+ "▁Mus ical",
+ "▁Music al",
+ "▁Re yn",
+ "▁Rey n",
+ "Scroll View",
+ "▁convent ional",
+ "▁convention al",
+ "en ça",
+ "enç a",
+ "▁re factor",
+ "▁ref actor",
+ "' -",
+ "▁H ed",
+ "▁He d",
+ "spr ech",
+ "spre ch",
+ "▁ath let",
+ "▁e species",
+ "▁es pecies",
+ "▁espe cies",
+ "▁espec ies",
+ "▁especie s",
+ "▁Sch ön",
+ "▁kle inen",
+ "▁kleine n",
+ "▁klein en",
+ "ш ко",
+ "▁Й о",
+ "▁H appy",
+ "▁Ha ppy",
+ "multi row",
+ "▁august i",
+ "▁G and",
+ "▁Ga nd",
+ "▁Gan d",
+ "▁appoint ment",
+ "▁Medi abestanden",
+ "Th ree",
+ "▁Kenn eth",
+ "NE W",
+ "▁Not ification",
+ "▁ Notification",
+ "▁Mar x",
+ "▁Ma rx",
+ "▁in sc",
+ "▁ins c",
+ "Mo r",
+ "M or",
+ "вы й",
+ "в ый",
+ "vä st",
+ "v äst",
+ "vi dia",
+ "vid ia",
+ "v idia",
+ "▁demonstr ated",
+ "▁demonstrate d",
+ "font s",
+ "fon ts",
+ "▁k amen",
+ "▁kam en",
+ "▁ka men",
+ "▁S ter",
+ "▁St er",
+ "▁Ste r",
+ "▁mieszkań ców",
+ "▁K oh",
+ "▁Ko h",
+ "~$ \\",
+ "~ $\\",
+ "») .",
+ "» ).",
+ "re ne",
+ "ren e",
+ "r ene",
+ "ins ic",
+ "ic ká",
+ "ick á",
+ "xy gen",
+ "▁m n",
+ "▁ mn",
+ "▁s ched",
+ "▁sc hed",
+ "▁sch ed",
+ "▁sche d",
+ "AS C",
+ "A SC",
+ "I g",
+ "▁Const ant",
+ "▁opport un",
+ "▁My Class",
+ "se f",
+ "s ef",
+ "op ed",
+ "ope d",
+ "o ped",
+ "▁inj ured",
+ "VI S",
+ "V IS",
+ "▁P ero",
+ "▁Per o",
+ "▁Pe ro",
+ "▁U ntil",
+ "▁Un til",
+ "▁f lesh",
+ "▁fl esh",
+ "▁fle sh",
+ "orph ism",
+ "▁Port al",
+ "▁Por tal",
+ "▁gmin y",
+ "▁вла сти",
+ "▁N ä",
+ "кти че",
+ "к тиче",
+ "▁h rab",
+ "▁hr ab",
+ "▁C ub",
+ "▁Cu b",
+ "av oir",
+ "avo ir",
+ "a voir",
+ "▁L ars",
+ "▁La rs",
+ "▁Lar s",
+ "▁Бе ло",
+ "▁seizo en",
+ "▁Gen omsnitt",
+ "▁L il",
+ "▁Li l",
+ "▁P ool",
+ "▁Po ol",
+ "▁ Pool",
+ "▁D ios",
+ "▁Di os",
+ "T X",
+ "ae s",
+ "a es",
+ "aut ore",
+ "auto re",
+ "autor e",
+ "Al pha",
+ "st ates",
+ "state s",
+ "sta tes",
+ "stat es",
+ "La b",
+ "L ab",
+ "n ederbörd",
+ "er ton",
+ "ert on",
+ "▁b rid",
+ "▁br id",
+ "▁ brid",
+ "▁r icht",
+ "▁rich t",
+ "▁ric ht",
+ "▁ri cht",
+ "▁ richt",
+ "▁E la",
+ "▁El a",
+ "▁с ла",
+ "▁ сла",
+ "▁weap on",
+ "▁comb att",
+ "▁combat t",
+ "ag ar",
+ "aga r",
+ "a gar",
+ "▁reg nig",
+ "▁util isé",
+ "▁utilis é",
+ "▁ser vir",
+ "▁serv ir",
+ "▁servi r",
+ "▁b rick",
+ "▁br ick",
+ "▁gate way",
+ "▁tor raste",
+ "▁proced ures",
+ "▁procedure s",
+ "▁års nederbörd",
+ "▁Genomsnitt lig",
+ "чё т",
+ "ч ёт",
+ "▁om rå",
+ "▁ områ",
+ "▁regnig aste",
+ "▁че сть",
+ "▁a mid",
+ "▁am id",
+ "▁ami d",
+ "▁gr ateful",
+ "▁D IS",
+ "▁DI S",
+ "▁ DIS",
+ "DA Y",
+ "▁о ру",
+ "▁ор у",
+ "▁ ору",
+ "▁riv ière",
+ "he ure",
+ "▁Rich mond",
+ "▁Com par",
+ "▁Comp ar",
+ "▁Н ор",
+ "▁Но р",
+ "DO C",
+ "D OC",
+ "es ia",
+ "esi a",
+ "cal c",
+ "▁I U",
+ "▁v org",
+ "▁vo rg",
+ "▁vor g",
+ "▁hab ían",
+ "▁había n",
+ "ço it",
+ "ç oit",
+ "▁a rist",
+ "▁ar ist",
+ "▁к ли",
+ "▁ кли",
+ "▁S ue",
+ "▁Su e",
+ "▁T ouch",
+ "▁To uch",
+ "▁ Touch",
+ "▁Writ ing",
+ "ifi able",
+ "▁w c",
+ "▁with draw",
+ "за р",
+ "з ар",
+ "▁present ly",
+ "▁pres ently",
+ "▁F K",
+ "▁pr akt",
+ "▁pra kt",
+ "▁col ored",
+ "▁color ed",
+ "us b",
+ "u sb",
+ "▁Per ú",
+ "▁pl ata",
+ "▁pla ta",
+ "▁plat a",
+ "▁w ishes",
+ "▁wish es",
+ "▁wis hes",
+ "▁ка м",
+ "▁ кам",
+ "az ar",
+ "aza r",
+ "a zar",
+ "áv el",
+ "á vel",
+ "▁l amp",
+ "▁la mp",
+ "bi shop",
+ "b ishop",
+ "▁in clusion",
+ "▁incl usion",
+ "▁inclus ion",
+ "j q",
+ "ar th",
+ "art h",
+ "▁F lag",
+ "▁Fl ag",
+ "▁ Flag",
+ "▁но р",
+ "▁н ор",
+ "æ dia",
+ "UN CTION",
+ "▁Bahn hof",
+ "▁appro aching",
+ "▁approach ing",
+ "▁G ött",
+ "▁Gö tt",
+ "▁c ube",
+ "▁cu be",
+ "▁cub e",
+ "▁arg ued",
+ "▁argue d",
+ "▁Th ings",
+ "Gu i",
+ "G ui",
+ "до ви",
+ "дов и",
+ "д ови",
+ "▁re cre",
+ "▁rec re",
+ "▁ré seau",
+ "▁rés eau",
+ "▁sign ifica",
+ "▁signific a",
+ "Gi t",
+ "G it",
+ "geb racht",
+ "gebra cht",
+ "▁l iga",
+ "▁li ga",
+ "▁lig a",
+ "▁ liga",
+ "▁ass ured",
+ "al us",
+ "alu s",
+ "a lus",
+ "ри т",
+ "р ит",
+ "▁э нциклопеди",
+ "▁% ).",
+ "▁%) .",
+ "▁ %).",
+ "▁Prem ière",
+ "▁declar ations",
+ "▁declaration s",
+ "▁tr icky",
+ "▁trick y",
+ "▁pro files",
+ "▁prof iles",
+ "▁profile s",
+ "▁profil es",
+ "▁F on",
+ "▁Fo n",
+ "▁J as",
+ "▁Ja s",
+ "â r",
+ "ba bel",
+ "b abel",
+ "▁Fr iday",
+ "▁Fri day",
+ "▁Frid ay",
+ "▁jú nius",
+ "▁c ols",
+ "▁col s",
+ "▁co ls",
+ "▁ cols",
+ "▁EX ISTS",
+ "▁Ital iana",
+ "▁Italian a",
+ "▁Italia na",
+ "▁author ization",
+ "▁s ulle",
+ "▁su lle",
+ "▁sul le",
+ "▁sull e",
+ "▁E mb",
+ "▁Em b",
+ "▁Vari able",
+ "▁ Variable",
+ "tr ees",
+ "tre es",
+ "tree s",
+ "t rees",
+ "▁F ly",
+ "▁Fl y",
+ "ri ors",
+ "rio rs",
+ "rior s",
+ "r iors",
+ "▁da mals",
+ "▁dam als",
+ "▁find et",
+ "▁fin det",
+ "▁Se pt",
+ "▁Sep t",
+ "▁m undial",
+ "▁rem oval",
+ "▁remov al",
+ "▁long itude",
+ "▁longitud e",
+ "cl ic",
+ "cli c",
+ "c lic",
+ "▁f ade",
+ "▁fa de",
+ "▁ fade",
+ "▁grad le",
+ "▁ gradle",
+ "▁z ák",
+ "▁zá k",
+ "▁tim ing",
+ "▁ti ming",
+ "tr ightarrow",
+ "t rightarrow",
+ "at ia",
+ "ati a",
+ "- .",
+ "uch e",
+ "uc he",
+ "u che",
+ "▁ser ialize",
+ "▁serial ize",
+ "▁H mm",
+ "▁Represent atives",
+ "ba h",
+ "b ah",
+ "re nd",
+ "ren d",
+ "r end",
+ "ass ador",
+ "assa dor",
+ "▁sh ield",
+ "uc ion",
+ "u cion",
+ "▁am éricaine",
+ "▁améric aine",
+ "▁américain e",
+ "z ę",
+ "vi lla",
+ "vil la",
+ "v illa",
+ "▁hom bre",
+ "ás s",
+ "á ss",
+ "▁S F",
+ "▁ SF",
+ "▁repe ating",
+ "▁repeat ing",
+ "▁c riter",
+ "▁cr iter",
+ "▁crit er",
+ "▁cri ter",
+ "▁St ruct",
+ "▁Str uct",
+ "▁ Struct",
+ "?? ?",
+ "? ??",
+ "▁che ap",
+ "▁r ings",
+ "▁ring s",
+ "▁rin gs",
+ "ab häng",
+ "▁c orte",
+ "▁cor te",
+ "▁cort e",
+ "▁admin ist",
+ "ix on",
+ "gy pt",
+ "▁punt os",
+ "▁punto s",
+ "▁me zi",
+ "▁mez i",
+ "▁po chod",
+ "▁poc hod",
+ "is ko",
+ "isk o",
+ "i sko",
+ "ni ę",
+ "n ię",
+ "▁о су",
+ "▁ос у",
+ "▁á r",
+ "▁ ár",
+ "те льной",
+ "тель ной",
+ "тельно й",
+ "▁Metropol itan",
+ "ji n",
+ "j in",
+ "ze ss",
+ "zes s",
+ "z ess",
+ "▁ві ці",
+ "▁conflic ts",
+ "▁conflict s",
+ "ij st",
+ "▁Mar ket",
+ "▁Mark et",
+ "ст ров",
+ "стро в",
+ "стр ов",
+ "▁\" ,\"",
+ "▁\", \"",
+ "▁ \",\"",
+ "▁Sc roll",
+ "▁ Scroll",
+ "gu n",
+ "g un",
+ "та ра",
+ "тар а",
+ "▁am ateur",
+ "▁r óż",
+ "pos s",
+ "po ss",
+ "p oss",
+ "▁general ized",
+ "▁H arm",
+ "▁Har m",
+ "▁Ha rm",
+ "ci ta",
+ "cit a",
+ "c ita",
+ "▁Sw itzerland",
+ "ic ola",
+ "ico la",
+ "icol a",
+ "i cola",
+ "▁m uit",
+ "▁mu it",
+ "loc ated",
+ "▁c ó",
+ "▁a rose",
+ "▁ar ose",
+ "▁commun auté",
+ "}) ^",
+ "} )^",
+ "vis ibility",
+ "íd a",
+ "í da",
+ "▁F B",
+ "▁ FB",
+ "▁Fre und",
+ "ga t",
+ "g at",
+ "\": {\"",
+ "int ellij",
+ "if ie",
+ "ifi e",
+ "hm en",
+ "h men",
+ "▁éd ition",
+ "▁ édition",
+ "▁ко је",
+ "▁ін ших",
+ "om ing",
+ "omin g",
+ "omi ng",
+ "o ming",
+ "▁arqu itect",
+ "▁Pres idente",
+ "▁President e",
+ "▁П ід",
+ "▁ca bin",
+ "▁cab in",
+ "The orem",
+ "▁G ay",
+ "▁Ga y",
+ "if ice",
+ "ific e",
+ "ifi ce",
+ "▁h ect",
+ "▁he ct",
+ "l ą",
+ "irm ingham",
+ "▁sem antic",
+ "▁Louis iana",
+ "▁sac rifice",
+ "▁sacr ifice",
+ "▁sacrific e",
+ "▁Christ oph",
+ "▁Exec utive",
+ "_ +",
+ "j ák",
+ "▁s eria",
+ "▁se ria",
+ "▁ser ia",
+ "▁Over flow",
+ "▁ Overflow",
+ "▁Lu cy",
+ "▁Luc y",
+ "▁mel hor",
+ "▁vo ices",
+ "▁voice s",
+ "cz a",
+ "c za",
+ "▁ка пи",
+ "▁университе та",
+ "IN CT",
+ "▁col oc",
+ "▁co loc",
+ "▁pr ue",
+ "▁ge omet",
+ "▁geom et",
+ "▁di retto",
+ "▁dire tto",
+ "▁dir etto",
+ "▁dirett o",
+ "re so",
+ "res o",
+ "r eso",
+ "▁A kt",
+ "▁Ak t",
+ "▁un h",
+ "▁се ри",
+ "▁сер и",
+ "▁Al ert",
+ "▁Ale rt",
+ "▁ Alert",
+ "We l",
+ "W el",
+ "au di",
+ "aud i",
+ "a udi",
+ "äl er",
+ "ä ler",
+ "▁gu ests",
+ "▁guest s",
+ "▁и де",
+ "St udio",
+ "▁ка те",
+ "▁ex ponent",
+ "▁expon ent",
+ "rz e",
+ "r ze",
+ "pm od",
+ "p mod",
+ "ro lle",
+ "roll e",
+ "rol le",
+ "▁Lim ited",
+ "Al lemagne",
+ "▁p ity",
+ "▁pi ty",
+ "▁pit y",
+ "▁l ä",
+ "▁ lä",
+ "▁run ner",
+ "▁ runner",
+ "ke nde",
+ "ken de",
+ "k ende",
+ "E Q",
+ "▁M M",
+ "▁ MM",
+ "sz ág",
+ "по ді",
+ "▁reg ret",
+ "▁publi é",
+ "▁depart amento",
+ "▁acc used",
+ "▁accus ed",
+ "h p",
+ "▁P fl",
+ "▁Pf l",
+ "▁S int",
+ "▁Si nt",
+ "▁Sin t",
+ "▁ek onom",
+ "ra ctor",
+ "rac tor",
+ "ract or",
+ "r actor",
+ "▁П ів",
+ "▁aw ful",
+ "owa ć",
+ "] ->",
+ "▁F ine",
+ "▁Fin e",
+ "С а",
+ "ti s",
+ "t is",
+ "ét a",
+ "é ta",
+ "▁Ро ди",
+ "▁Düsseld orf",
+ "LO B",
+ "L OB",
+ "os as",
+ "osa s",
+ "wer ke",
+ "werk e",
+ "▁l ance",
+ "▁lan ce",
+ "▁листо пада",
+ "▁in complete",
+ "▁P icture",
+ "▁ Picture",
+ "(' \\",
+ "( '\\",
+ "es ters",
+ "est ers",
+ "ester s",
+ "este rs",
+ "e sters",
+ "▁belong ed",
+ "▁S ank",
+ "▁San k",
+ "am med",
+ "amm ed",
+ "▁repos itories",
+ "▁ad dr",
+ "▁add r",
+ "▁ addr",
+ "Col lect",
+ "Coll ect",
+ "H ot",
+ "▁t yl",
+ "▁ty l",
+ "▁instance of",
+ "▁bon us",
+ "ov ý",
+ "▁мо ря",
+ "▁мор я",
+ "▁inter active",
+ "▁interact ive",
+ "▁M ys",
+ "▁My s",
+ "▁Ed mund",
+ "file Name",
+ "em or",
+ "emo r",
+ "e mor",
+ "▁Т ри",
+ "▁R osen",
+ "▁Ro sen",
+ "▁Ros en",
+ "▁Rose n",
+ "▁Pr ima",
+ "▁Pri ma",
+ "▁Prim a",
+ "▁v oting",
+ "▁vo ting",
+ "▁vot ing",
+ "▁X P",
+ "▁Z ero",
+ "▁Ze ro",
+ "▁ Zero",
+ "▁L ed",
+ "▁Le d",
+ "ams ung",
+ "▁en ables",
+ "▁enable s",
+ "▁redirect s",
+ "AS T",
+ "A ST",
+ "Pa int",
+ "P aint",
+ "ack er",
+ "ac ker",
+ "a cker",
+ "le cht",
+ "▁chair man",
+ "▁A ven",
+ "▁Av en",
+ "▁S ach",
+ "▁Sa ch",
+ "▁Sac h",
+ "(\" <",
+ "ке р",
+ "к ер",
+ "▁mist akes",
+ "▁mistake s",
+ "▁We it",
+ "▁Wei t",
+ "▁pro wad",
+ "▁ prowad",
+ "▁did nt",
+ "▁didn t",
+ "én ario",
+ "un less",
+ "▁back wards",
+ "bo a",
+ "b oa",
+ "du ino",
+ "`` `",
+ "` ``",
+ "st or",
+ "sto r",
+ "s tor",
+ "Comple tion",
+ "pu esta",
+ "▁din ast",
+ "úl t",
+ "ú lt",
+ "▁S Y",
+ "▁ SY",
+ "if olia",
+ "œuv res",
+ "œuvre s",
+ "▁r acing",
+ "▁ra cing",
+ "▁rac ing",
+ "▁cab inet",
+ "▁cabin et",
+ "▁cut ting",
+ "▁th umb",
+ "▁Ка ра",
+ "▁Кар а",
+ "high light",
+ "ку п",
+ "▁s d",
+ "▁ sd",
+ "▁на ціональ",
+ "▁camp agne",
+ "▁register s",
+ "▁educ ational",
+ "▁education al",
+ "▁p esar",
+ "▁pes ar",
+ "üg e",
+ "ü ge",
+ "▁o ro",
+ "▁or o",
+ "▁ oro",
+ "burg o",
+ "bur go",
+ "▁Athlet ics",
+ "▁M TV",
+ "get Message",
+ "▁H yp",
+ "▁Hy p",
+ "▁vict im",
+ "▁vic tim",
+ ")) \\",
+ ") )\\",
+ "▁dr ums",
+ "▁dru ms",
+ "▁drum s",
+ "host name",
+ "ta ł",
+ "t ał",
+ "ma king",
+ "m aking",
+ "▁pow iat",
+ "ő d",
+ "thread s",
+ "▁absol v",
+ "▁лю ди",
+ "▁ste pped",
+ "▁step ped",
+ "ex ist",
+ "▁N K",
+ "▁v es",
+ "▁ve s",
+ "▁ ves",
+ "ist iche",
+ "istic he",
+ "isti che",
+ "% '",
+ "at ivos",
+ "ativ os",
+ "ati vos",
+ "ativo s",
+ "▁та кой",
+ "▁тако й",
+ "▁Mongo DB",
+ "▁U ng",
+ "▁Un g",
+ "▁Р ус",
+ "▁Ру с",
+ "▁e lim",
+ "▁el im",
+ "▁F if",
+ "ic ación",
+ "ica ción",
+ "▁T ennis",
+ "▁Ten nis",
+ "▁Jeff erson",
+ "j án",
+ "fo g",
+ "f og",
+ "an ha",
+ "anh a",
+ "zo r",
+ "z or",
+ "▁уні версите",
+ "ah u",
+ "a hu",
+ "ia da",
+ "i ada",
+ "S dk",
+ "Set ting",
+ "▁K ill",
+ "▁Kil l",
+ "▁Ki ll",
+ "▁W end",
+ "▁We nd",
+ "▁b ald",
+ "▁bal d",
+ "▁ba ld",
+ "▁K ub",
+ "▁Ku b",
+ "▁v isto",
+ "▁vis to",
+ "▁vi sto",
+ "▁je unes",
+ "▁jeune s",
+ "▁jeu nes",
+ "col lections",
+ "collection s",
+ "collect ions",
+ "ac í",
+ "a cí",
+ "вро пей",
+ "▁ar ise",
+ "он і",
+ "о ні",
+ "MA IN",
+ "до ступ",
+ "▁b erg",
+ "▁be rg",
+ "▁ber g",
+ "▁ berg",
+ "▁critic ism",
+ "▁Tor re",
+ "▁de script",
+ "▁des cript",
+ "▁descri pt",
+ "ière s",
+ "i ères",
+ "▁e studio",
+ "▁est udio",
+ "▁estud io",
+ "▁i li",
+ "▁il i",
+ "▁ ili",
+ "▁mil itare",
+ "▁milit are",
+ "▁militar e",
+ "▁Cl ara",
+ "▁Cla ra",
+ "▁Clar a",
+ "▁El len",
+ "▁Elle n",
+ "▁Ell en",
+ "lim ited",
+ "limit ed",
+ "л м",
+ "▁Esp añ",
+ "▁inf initely",
+ "▁infinite ly",
+ "Amer ica",
+ "ou c",
+ "o uc",
+ "gl ass",
+ "g lass",
+ "▁r ud",
+ "▁ru d",
+ "▁z at",
+ "▁za t",
+ "▁ zat",
+ "▁r in",
+ "▁ri n",
+ "▁ rin",
+ "▁Bibli ografía",
+ "▁mer chant",
+ "tensor flow",
+ "▁d ér",
+ "▁dé r",
+ "▁Active Record",
+ "IE S",
+ "I ES",
+ "▁link er",
+ "▁lin ker",
+ "▁estud ios",
+ "▁estudio s",
+ "cdn js",
+ "▁Го судар",
+ "án chez",
+ "ap pe",
+ "app e",
+ "a ppe",
+ "cl ub",
+ "c lub",
+ "▁dal ší",
+ "▁Alg orithm",
+ "df s",
+ "d fs",
+ "▁B ac",
+ "▁Ba c",
+ "▁ка фе",
+ "▁& =\\",
+ "▁&= \\",
+ "▁а т",
+ "▁ ат",
+ "▁Г лав",
+ "▁M ou",
+ "▁Mo u",
+ "M achine",
+ "(... )",
+ "( ...)",
+ "▁com part",
+ "▁comp art",
+ "▁compar t",
+ "▁aug usztus",
+ "av an",
+ "ava n",
+ "a van",
+ "▁roll ed",
+ "▁rol led",
+ "▁ rolled",
+ "▁е ди",
+ "▁ еди",
+ "Sc an",
+ "S can",
+ "▁ре гі",
+ "▁świ ata",
+ "▁świat a",
+ "▁m ines",
+ "▁min es",
+ "▁mi nes",
+ "▁mine s",
+ "}, {",
+ "▁T ier",
+ "▁Ti er",
+ "Can not",
+ "C annot",
+ "мі н",
+ "м ін",
+ "▁NE W",
+ "▁ NEW",
+ "▁Во л",
+ "▁M anh",
+ "▁Man h",
+ "▁Greg ory",
+ "▁princi pe",
+ "▁princip e",
+ "▁prin cipe",
+ "IS O",
+ "I SO",
+ "pr og",
+ "pro g",
+ "p rog",
+ "▁F ail",
+ "▁Fa il",
+ "▁ Fail",
+ "▁a a",
+ "▁ aa",
+ "▁fe cha",
+ "▁W CF",
+ "▁mag istr",
+ "▁Z ach",
+ "▁Za ch",
+ "▁un icode",
+ "▁con verter",
+ "▁convert er",
+ "▁conver ter",
+ "▁dis pers",
+ "▁disp ers",
+ "ks am",
+ "k sam",
+ "▁Un cle",
+ "Property Changed",
+ "▁l ider",
+ "▁li der",
+ "▁lid er",
+ "▁o pts",
+ "▁op ts",
+ "▁opt s",
+ "▁ opts",
+ "▁та м",
+ "▁ там",
+ "lock ed",
+ "loc ked",
+ "za k",
+ "z ak",
+ "▁co unted",
+ "▁count ed",
+ "▁coun ted",
+ "▁person e",
+ "▁pers one",
+ "▁hur ried",
+ "ät ter",
+ "ätt er",
+ "ätte r",
+ "▁out ras",
+ "▁ou tras",
+ "▁g enu",
+ "▁ge nu",
+ "▁gen u",
+ "B D",
+ "ve g",
+ "v eg",
+ "du e",
+ "d ue",
+ "▁P ract",
+ "▁Pr act",
+ "▁Pra ct",
+ "▁po sible",
+ "▁pos ible",
+ "▁cont ribute",
+ "▁contrib ute",
+ "▁contribu te",
+ "UM N",
+ "▁Bür ger",
+ "▁w ars",
+ "▁war s",
+ "▁wa rs",
+ "▁exhib ition",
+ "hi ll",
+ "h ill",
+ "▁a str",
+ "▁as tr",
+ "▁ast r",
+ "▁ astr",
+ "▁му зе",
+ "▁C ASE",
+ "▁CA SE",
+ "▁ CASE",
+ "man ifest",
+ "y ellow",
+ "F n",
+ "▁R C",
+ "▁ RC",
+ "▁s ott",
+ "▁so tt",
+ "▁su jet",
+ "▁S ocket",
+ "▁So cket",
+ "▁Soc ket",
+ "▁ Socket",
+ "▁Ch ine",
+ "▁Chi ne",
+ "▁frame works",
+ "▁framework s",
+ "Hol d",
+ "H old",
+ "êt s",
+ "ê ts",
+ "▁ф іль",
+ "▁фі ль",
+ "Lo aded",
+ "Load ed",
+ "op he",
+ "oph e",
+ "o phe",
+ "text e",
+ "tex te",
+ "▁ex pres",
+ "▁exp res",
+ "▁expr es",
+ "▁cons ume",
+ "▁consum e",
+ "▁R ichtung",
+ "ograf i",
+ "▁magn ific",
+ "à t",
+ "▁ind ul",
+ "▁indu l",
+ "ry ty",
+ "▁off ici",
+ "▁offic i",
+ "▁ass ault",
+ "ru nd",
+ "run d",
+ "r und",
+ "▁vari ants",
+ "▁variant s",
+ "▁сель сов",
+ "▁exc itement",
+ "Time s",
+ "Tim es",
+ "T imes",
+ "k otlin",
+ "▁g ering",
+ "▁ge ring",
+ "▁ger ing",
+ "▁En gel",
+ "▁Eng el",
+ "▁T imer",
+ "▁Time r",
+ "▁Tim er",
+ "▁Ti mer",
+ "▁ Timer",
+ "² ).",
+ "▁N g",
+ "äs st",
+ "sch au",
+ "SE rror",
+ "S Error",
+ "▁Ed wards",
+ "▁Edward s",
+ "▁Term inal",
+ "li ct",
+ "lic t",
+ "l ict",
+ "Un der",
+ "Und er",
+ "U nder",
+ "▁sp awn",
+ "ür gen",
+ "▁Außer dem",
+ "▁k itchen",
+ "fah rt",
+ "fahr t",
+ "▁Col ors",
+ "▁Color s",
+ "▁систе ма",
+ "▁систем а",
+ "▁termin ated",
+ "▁terminate d",
+ "▁La TeX",
+ "ig keiten",
+ "igkeit en",
+ "▁mes ure",
+ "▁Am ts",
+ "▁Amt s",
+ "▁emp ir",
+ "▁stri king",
+ "▁strik ing",
+ "▁exclus ive",
+ "те х",
+ "▁re z",
+ "▁r ez",
+ "▁ rez",
+ "▁qu an",
+ "▁q uan",
+ "▁Glas gow",
+ "▁lect ure",
+ "▁Test ament",
+ "▁fun ds",
+ "▁fund s",
+ "▁st essa",
+ "▁tri bes",
+ "▁trib es",
+ "▁tribe s",
+ "▁par fois",
+ "▁tre ball",
+ "ni tz",
+ "nit z",
+ "n itz",
+ "bo ve",
+ "b ove",
+ "▁за слу",
+ "▁ab sent",
+ "▁abs ent",
+ "▁L auf",
+ "▁La uf",
+ "▁Lau f",
+ "Sm ith",
+ "▁Никола й",
+ "▁europé enne",
+ "l r",
+ "▁program ma",
+ "▁mi dst",
+ "▁mid st",
+ "▁daugh ters",
+ "▁daughter s",
+ "S yn",
+ "ob en",
+ "obe n",
+ "o ben",
+ "ân ă",
+ "id an",
+ "ida n",
+ "i dan",
+ "▁t her",
+ "▁th er",
+ "▁the r",
+ "▁ ther",
+ "od ore",
+ "odo re",
+ "odor e",
+ "sd l",
+ "s dl",
+ "▁Q uint",
+ "▁Qu int",
+ "▁cas os",
+ "▁caso s",
+ "▁Z am",
+ "▁Za m",
+ "▁стра ны",
+ "▁sp rite",
+ "▁spr ite",
+ "ка л",
+ "к ал",
+ "▁n asc",
+ "▁na sc",
+ "▁nas c",
+ "▁сот руд",
+ "▁tr ava",
+ "▁tra va",
+ "▁trav a",
+ "▁хо зяй",
+ "▁U ruguay",
+ "▁s parse",
+ "▁sp arse",
+ "▁по ле",
+ "▁пол е",
+ "▁myst ery",
+ "▁myster y",
+ "▁M ang",
+ "▁Man g",
+ "▁Ma ng",
+ "reg istr",
+ "▁CG Float",
+ "▁sub mission",
+ "▁subm ission",
+ "ва на",
+ "ван а",
+ "в ана",
+ "▁\" :",
+ "▁ \":",
+ "▁Trace back",
+ "▁P it",
+ "▁Pi t",
+ "▁E hr",
+ "▁с ра",
+ "▁Graph ics",
+ "▁ Graphics",
+ "Up dated",
+ "Update d",
+ "▁sv ensk",
+ "▁sp acing",
+ "▁spac ing",
+ "tr itt",
+ "tri tt",
+ "t ritt",
+ "▁Gu inea",
+ "▁Fran ça",
+ "▁Fr ança",
+ "As soci",
+ "Ass oci",
+ "▁T ová",
+ "▁To vá",
+ "st ab",
+ "sta b",
+ "s tab",
+ "▁Le arning",
+ "▁Lear ning",
+ "▁B right",
+ "▁Br ight",
+ "▁Brig ht",
+ "ś c",
+ "▁id ő",
+ "}} _{\\",
+ "}}_{ \\",
+ "}}_ {\\",
+ "} }_{\\",
+ "▁dro ite",
+ "▁droit e",
+ "▁ra ising",
+ "get ting",
+ "yth m",
+ "yt hm",
+ "y thm",
+ "on yme",
+ "ony me",
+ "onym e",
+ "ż s",
+ "▁b lah",
+ "▁bl ah",
+ "▁bla h",
+ "▁ blah",
+ "Tag Name",
+ "Vert ical",
+ "▁a per",
+ "▁ap er",
+ "▁ aper",
+ "post gresql",
+ "▁Hand le",
+ "▁ Handle",
+ "ze w",
+ "z ew",
+ "▁sk ulle",
+ "▁op ere",
+ "▁oper e",
+ "lay ers",
+ "layer s",
+ "▁pos sono",
+ "▁poss ono",
+ "▁re late",
+ "▁rel ate",
+ "▁rela te",
+ "ą c",
+ "▁M ih",
+ "▁Mi h",
+ "â ge",
+ "▁Ś wi",
+ "iss es",
+ "isse s",
+ "▁serv let",
+ "▁ servlet",
+ "Lo s",
+ "L os",
+ "▁Ad vanced",
+ "▁Adv anced",
+ "at ica",
+ "ati ca",
+ "atic a",
+ "▁c ed",
+ "▁ce d",
+ "▁ ced",
+ "▁element os",
+ "ро на",
+ "рон а",
+ "р она",
+ "ik s",
+ "i ks",
+ "ar f",
+ "a rf",
+ "ar iat",
+ "ari at",
+ "aria t",
+ "M obile",
+ "ag ua",
+ "agu a",
+ "▁t imp",
+ "▁tim p",
+ "▁ti mp",
+ "▁Com ité",
+ "▁comb ining",
+ "▁combin ing",
+ "wo hl",
+ "w ohl",
+ "▁Stud y",
+ "▁Stu dy",
+ "co ordinate",
+ "▁recommend ation",
+ "▁transform ations",
+ "▁transformation s",
+ "un til",
+ "unt il",
+ "u ntil",
+ "bound ed",
+ "b ounded",
+ "▁и зу",
+ "▁из у",
+ "han ced",
+ "h anced",
+ "▁во про",
+ "▁P rés",
+ "▁Pr és",
+ "▁co ord",
+ "xt y",
+ "x ty",
+ "▁$ ,",
+ "▁ $,",
+ "▁champion s",
+ "▁champ ions",
+ "De n",
+ "D en",
+ "M il",
+ "(' ,",
+ "( ',",
+ "▁Pre is",
+ "▁e igh",
+ "▁eig h",
+ "▁mark ers",
+ "▁marker s",
+ "▁gew esen",
+ "ät ten",
+ "ätt en",
+ "ätte n",
+ "▁p ione",
+ "▁pi one",
+ "m v",
+ "▁ј у",
+ "▁ ју",
+ "zeich nis",
+ "ho ff",
+ "hof f",
+ "h off",
+ "New s",
+ "Ne ws",
+ "▁Stanis ław",
+ "▁Br andenburg",
+ "▁Brand enburg",
+ "▁Fe uer",
+ "= &",
+ "же т",
+ "ж ет",
+ "▁N eil",
+ "▁Ne il",
+ "▁w irk",
+ "▁wir k",
+ "▁soci età",
+ "▁sp are",
+ "▁civil e",
+ "▁civ ile",
+ "sp rach",
+ "spr ach",
+ "▁d isse",
+ "▁dis se",
+ "▁diss e",
+ "▁g ates",
+ "▁ga tes",
+ "▁gate s",
+ "▁gat es",
+ "▁a nom",
+ "▁an om",
+ "▁ano m",
+ "▁Федера ции",
+ "▁t ib",
+ "▁ti b",
+ "▁f útbol",
+ "▁Wikip ed",
+ "ia te",
+ "iat e",
+ "i ate",
+ "Fr ont",
+ "F ront",
+ "▁c raw",
+ "▁cr aw",
+ "▁cra w",
+ "▁R ak",
+ "▁Ra k",
+ "▁з ву",
+ "▁зв у",
+ "st reet",
+ "stre et",
+ "▁A gency",
+ "▁Ag ency",
+ "ва ло",
+ "вал о",
+ "▁Ра с",
+ "▁mk dir",
+ "ac ję",
+ "▁sh ares",
+ "▁share s",
+ "St ory",
+ "Sto ry",
+ "▁re marks",
+ "▁rem arks",
+ "▁remark s",
+ "▁key words",
+ "▁keyword s",
+ "Bo b",
+ "B ob",
+ "▁t oe",
+ "▁to e",
+ "▁V itt",
+ "▁Vi tt",
+ "▁Vit t",
+ "▁r hs",
+ "▁rh s",
+ "RO P",
+ "R OP",
+ "or is",
+ "ori s",
+ "o ris",
+ "/ @",
+ "си и",
+ "▁tra verse",
+ "▁travers e",
+ "▁refer encing",
+ "pr äsident",
+ "ro ng",
+ "ron g",
+ "r ong",
+ "') :",
+ "' ):",
+ "at ies",
+ "ati es",
+ "atie s",
+ "a ties",
+ "A W",
+ "Out let",
+ "▁é vol",
+ "▁év ol",
+ "ik es",
+ "ike s",
+ "i kes",
+ "▁environment al",
+ "ic um",
+ "▁L ied",
+ "▁Li ed",
+ "▁Lie d",
+ "▁w arn",
+ "▁war n",
+ "▁wa rn",
+ "▁ warn",
+ "▁But ler",
+ "▁% ),",
+ "▁%) ,",
+ "▁Zeit schrift",
+ "▁Mon tr",
+ "▁Mont r",
+ "ва жа",
+ "▁Mer cur",
+ "je kte",
+ "jekt e",
+ "me ter",
+ "met er",
+ "m eter",
+ "du cation",
+ "▁att ributed",
+ "▁attribute d",
+ "* $",
+ "▁un f",
+ "▁Vert rag",
+ "zi en",
+ "zie n",
+ "z ien",
+ "▁Р об",
+ "▁Ро б",
+ "li ces",
+ "lic es",
+ "lice s",
+ "l ices",
+ "pp ly",
+ "p ply",
+ "an sen",
+ "ans en",
+ "anse n",
+ "▁ze it",
+ "▁ zeit",
+ "▁im mense",
+ "▁imm ense",
+ "▁lut ego",
+ "▁Bul gar",
+ "▁Bulg ar",
+ "▁mi embros",
+ "▁На циональ",
+ "▁Al low",
+ "▁All ow",
+ "▁ Allow",
+ "▁ang lès",
+ "д ви",
+ "▁T oy",
+ "▁To y",
+ "ту а",
+ "▁y ard",
+ "▁ya rd",
+ "▁ yard",
+ "( %",
+ "is ser",
+ "iss er",
+ "isse r",
+ "▁g olf",
+ "▁gol f",
+ "▁Uk rain",
+ "▁h osp",
+ "▁ho sp",
+ "▁hos p",
+ "In clude",
+ "▁L isa",
+ "▁Li sa",
+ "▁Lis a",
+ "▁c sal",
+ "▁cs al",
+ "▁M ira",
+ "▁Mi ra",
+ "▁Mir a",
+ "rec ogn",
+ "▁К е",
+ "▁h itting",
+ "▁hit ting",
+ "коно мі",
+ "коном і",
+ "▁Tourn ament",
+ "LO AD",
+ "▁Guard ian",
+ "▁da her",
+ "▁dah er",
+ "▁time zone",
+ "▁tom cat",
+ "▁ tomcat",
+ "▁success or",
+ "▁succ essor",
+ "▁successo r",
+ "▁V oid",
+ "▁Vo id",
+ "▁come ç",
+ "▁convert s",
+ "▁conver ts",
+ "äch s",
+ "ä chs",
+ "os ex",
+ "ose x",
+ "o sex",
+ "xe lles",
+ "x elles",
+ "as er",
+ "ase r",
+ "a ser",
+ "▁É s",
+ "▁m ou",
+ "▁mo u",
+ "▁u ng",
+ "▁un g",
+ "▁ ung",
+ "▁or igen",
+ "▁orig en",
+ "▁C row",
+ "▁Cr ow",
+ "▁Cro w",
+ "▁E rd",
+ "▁Er d",
+ "▁s ieben",
+ "▁si eben",
+ "▁sie ben",
+ "lu a",
+ "l ua",
+ "▁B B",
+ "▁ BB",
+ "RE NT",
+ "R ENT",
+ "▁pił kar",
+ "▁mar que",
+ "▁marqu e",
+ "▁La bour",
+ "▁Lab our",
+ "vi ders",
+ "vider s",
+ "vid ers",
+ "v iders",
+ "▁ex empl",
+ "▁exem pl",
+ "So und",
+ "S ound",
+ "▁W ass",
+ "▁Was s",
+ "▁Wa ss",
+ "arr ison",
+ "▁те чение",
+ "▁Of icina",
+ "▁D aw",
+ "▁Da w",
+ "▁K auf",
+ "▁Ka uf",
+ "én t",
+ "é nt",
+ "és ő",
+ "▁= \"",
+ "▁ =\"",
+ "▁k at",
+ "▁ka t",
+ "di ction",
+ "dict ion",
+ "dic tion",
+ "d iction",
+ "▁V oll",
+ "▁Vol l",
+ "▁Vo ll",
+ "▁high way",
+ "J ames",
+ "ze uge",
+ "zeug e",
+ "▁mod elo",
+ "▁model o",
+ "▁mode lo",
+ "Th row",
+ "▁F orum",
+ "▁For um",
+ "▁Fo rum",
+ "(\" @",
+ "▁en fer",
+ "▁enf er",
+ "▁спе циаль",
+ "Number s",
+ "Num bers",
+ "▁B inary",
+ "▁Bin ary",
+ "▁ Binary",
+ "▁Martí nez",
+ "▁Martín ez",
+ "▁St ato",
+ "▁Stat o",
+ "▁Sta to",
+ "▁fest iv",
+ "▁k atol",
+ "▁ka tol",
+ "▁kat ol",
+ "▁А б",
+ "▁lim itation",
+ "▁limit ation",
+ "▁S TR",
+ "▁ST R",
+ "▁ STR",
+ "▁О фициаль",
+ "ip es",
+ "ipe s",
+ "i pes",
+ "▁I sn",
+ "▁Is n",
+ "▁rule d",
+ "▁ru led",
+ "▁c í",
+ "▁ cí",
+ "ge ber",
+ "geb er",
+ "▁lavor o",
+ "▁lav oro",
+ "▁parenthes es",
+ "о з",
+ "▁équip es",
+ "▁équipe s",
+ "▁efficient ly",
+ "▁Per iod",
+ "▁ Period",
+ "▁Reg arding",
+ "le af",
+ "lea f",
+ "▁similar ity",
+ "▁gest ure",
+ "data b",
+ "da tab",
+ "dat ab",
+ "▁term inate",
+ "▁termin ate",
+ "▁sem antics",
+ "▁semantic s",
+ "▁A lo",
+ "▁Al o",
+ "▁c ig",
+ "▁ci g",
+ "▁Open GL",
+ "▁heut igen",
+ "xa ml",
+ "x aml",
+ "▁frequ encies",
+ ")} .",
+ ") }.",
+ "▁threaten ed",
+ "▁threat ened",
+ "ти к",
+ "▁cal cio",
+ "▁calci o",
+ "▁calc io",
+ "▁R iemann",
+ "▁Ri emann",
+ "sl ug",
+ "▁F inale",
+ "▁Fin ale",
+ "▁Final e",
+ "L R",
+ "▁Der by",
+ "▁о ще",
+ "▁de viation",
+ "▁dev iation",
+ "▁devi ation",
+ "äch en",
+ "äche n",
+ "ä chen",
+ "▁C ris",
+ "▁Cr is",
+ "но во",
+ "нов о",
+ "н ово",
+ "▁сто лі",
+ "▁re lev",
+ "▁rel ev",
+ "▁splend id",
+ "▁у чё",
+ "er ving",
+ "erv ing",
+ "ga ble",
+ "g able",
+ "▁général e",
+ "▁généra le",
+ "po m",
+ "p om",
+ "▁Che ers",
+ "▁impr ison",
+ "▁in dent",
+ "▁ind ent",
+ "▁inde nt",
+ "▁ indent",
+ "▁anal yz",
+ "▁analy z",
+ "▁re vert",
+ "▁rev ert",
+ "▁reve rt",
+ "▁rever t",
+ "ér er",
+ "ére r",
+ "é rer",
+ "▁ph ases",
+ "▁phase s",
+ "First Name",
+ "▁m ig",
+ "▁mi g",
+ "▁dist urb",
+ "▁mi xture",
+ "▁) {",
+ "▁ ){",
+ "int ure",
+ "▁T ried",
+ "▁Tr ied",
+ "▁Tri ed",
+ "▁soon er",
+ "▁p els",
+ "▁pe ls",
+ "▁pel s",
+ "▁ét abl",
+ "et ro",
+ "etr o",
+ "it ie",
+ "iti e",
+ "▁quart ier",
+ "▁го во",
+ "▁г ово",
+ "▁ гово",
+ "▁vá ros",
+ "uf e",
+ "u fe",
+ "he ten",
+ "het en",
+ "h eten",
+ "хо м",
+ "х ом",
+ "▁so ap",
+ "▁ soap",
+ "ut ors",
+ "uto rs",
+ "utor s",
+ "▁d uch",
+ "▁du ch",
+ "▁duc h",
+ "syn tax",
+ "s yntax",
+ "▁tr ibe",
+ "▁tri be",
+ "▁trib e",
+ "▁ch ante",
+ "▁chant e",
+ "Tr i",
+ "T ri",
+ "▁M ate",
+ "▁Ma te",
+ "▁Mat e",
+ "qu ality",
+ "qual ity",
+ "uo la",
+ "u ola",
+ "=\" .",
+ "= \".",
+ "ch k",
+ "▁в сі",
+ "▁вс і",
+ "▁prze ci",
+ "▁M eteor",
+ "▁Met eor",
+ "▁scatter ed",
+ "Pl us",
+ "P lus",
+ "tr ad",
+ "tra d",
+ "t rad",
+ "▁stack overflow",
+ "▁ stackoverflow",
+ "▁re tra",
+ "▁r etra",
+ "▁ret ra",
+ "▁retr a",
+ "▁éd itions",
+ "▁édition s",
+ "▁s ain",
+ "▁sa in",
+ "cri be",
+ "cr ibe",
+ "ig non",
+ "ign on",
+ "uc ker",
+ "uck er",
+ "u cker",
+ "▁ма ло",
+ "▁ten ir",
+ "▁ex ports",
+ "▁export s",
+ "▁ exports",
+ "▁aux ili",
+ "▁] ]",
+ "▁ ]]",
+ "▁C BS",
+ "un iform",
+ "uni form",
+ "▁period ic",
+ "ag rant",
+ "agr ant",
+ "▁em ple",
+ "▁emp le",
+ "W il",
+ "▁f res",
+ "▁fr es",
+ "▁fre s",
+ "▁str utt",
+ "▁stru tt",
+ "▁с віт",
+ "▁сві т",
+ "▁be tre",
+ "▁bet re",
+ "▁объ ек",
+ "ти ся",
+ "▁b isher",
+ "▁bis her",
+ "ba um",
+ "bau m",
+ "b aum",
+ "is hi",
+ "ish i",
+ "▁Gaz ette",
+ "background Color",
+ "j l",
+ "▁f iel",
+ "▁fi el",
+ "▁пре ма",
+ "▁protagon ista",
+ "▁Muham mad",
+ "▁sim ulate",
+ "▁H ook",
+ "▁Ho ok",
+ "fe st",
+ "f est",
+ "▁сво их",
+ "▁свои х",
+ "Se nder",
+ "Send er",
+ "S ender",
+ "▁list ened",
+ "▁listen ed",
+ "▁liste ned",
+ "ж і",
+ "je st",
+ "jes t",
+ "j est",
+ "ko rd",
+ "kor d",
+ "k ord",
+ "Cho ice",
+ "▁hoof d",
+ "redu cible",
+ "hp p",
+ "h pp",
+ "▁W u",
+ "š i",
+ "▁M arse",
+ "▁Mar se",
+ "▁Mars e",
+ "▁s oir",
+ "▁so ir",
+ "we sten",
+ "west en",
+ "w esten",
+ "em os",
+ "emo s",
+ "e mos",
+ "▁D uc",
+ "▁Du c",
+ "▁amer ik",
+ "| }{",
+ "▁G ul",
+ "▁Gu l",
+ "▁Sp rache",
+ "▁Spr ache",
+ "▁mis match",
+ "▁mism atch",
+ "Sc al",
+ "S cal",
+ "P ixel",
+ "E F",
+ "▁S ep",
+ "▁Se p",
+ "▁powie cie",
+ "ur k",
+ "▁Nap oli",
+ "▁neighbour hood",
+ "сто ян",
+ "стоя н",
+ "▁search es",
+ "yr us",
+ "y rus",
+ "пе т",
+ "п ет",
+ "He lp",
+ "Hel p",
+ "pon t",
+ "po nt",
+ "p ont",
+ "▁Or ient",
+ "▁Ori ent",
+ "▁Alf onso",
+ "▁monitor ing",
+ "ia o",
+ "i ao",
+ "éd é",
+ "▁Cés ar",
+ "ше е",
+ "Sh ift",
+ "su it",
+ "s uit",
+ "code d",
+ "co ded",
+ "cod ed",
+ "c oded",
+ "но то",
+ "▁Par ti",
+ "▁Part i",
+ "▁la sci",
+ "▁las ci",
+ "▁aw esome",
+ "us ta",
+ "ust a",
+ "u sta",
+ "▁С ове",
+ "▁Со ве",
+ "▁Сов е",
+ "▁F land",
+ "▁Fl and",
+ "oo m",
+ "o om",
+ "▁de vi",
+ "▁dev i",
+ "eng elsk",
+ "end um",
+ "▁Pa scal",
+ "▁Pas cal",
+ "▁B ind",
+ "▁Bi nd",
+ "▁Bin d",
+ "▁ Bind",
+ "▁sigu ientes",
+ "▁siguiente s",
+ "J B",
+ "▁Peters burg",
+ "▁incorrect ly",
+ "▁B ash",
+ "▁Bas h",
+ "▁Ba sh",
+ "▁pe los",
+ "▁pel os",
+ "▁pelo s",
+ "▁zes po",
+ "NS URL",
+ "▁př ek",
+ "▁Cr ime",
+ "na ch",
+ "n ach",
+ "▁th rust",
+ "▁thr ust",
+ "▁Cult ura",
+ "W F",
+ "▁S olo",
+ "▁So lo",
+ "▁Sol o",
+ "▁in vas",
+ "▁inv as",
+ "▁individ ually",
+ "▁individual ly",
+ "ib m",
+ "i bm",
+ "▁et apa",
+ "▁hand ed",
+ "▁han ded",
+ "▁where ver",
+ "▁interpol ation",
+ "▁mus ée",
+ "▁C NN",
+ "id ia",
+ "idi a",
+ "i dia",
+ "ńst w",
+ "▁pr zew",
+ "▁prze w",
+ "▁prz ew",
+ "ug hing",
+ "ugh ing",
+ "▁a ctors",
+ "▁act ors",
+ "▁actor s",
+ "▁Ori ental",
+ "▁Orient al",
+ "▁conven ience",
+ "▁mi asta",
+ "br ains",
+ "bra ins",
+ "▁ме ся",
+ "▁inf atti",
+ "▁All Movie",
+ "▁crit ique",
+ "▁success o",
+ "▁succ esso",
+ "anc ouver",
+ "▁f á",
+ "ъл гар",
+ "▁wis dom",
+ "▁Pho enix",
+ "ho le",
+ "hol e",
+ "h ole",
+ "▁inform ación",
+ "▁Air lines",
+ "▁Airl ines",
+ ". «",
+ "mo rt",
+ "mor t",
+ "m ort",
+ "user Id",
+ "▁*/ \r",
+ "▁C ongo",
+ "▁Con go",
+ "▁Cong o",
+ "▁\" `",
+ "▁ \"`",
+ "co rr",
+ "cor r",
+ "c orr",
+ "▁problem as",
+ "▁proble mas",
+ "▁problema s",
+ "▁probl emas",
+ "▁b ib",
+ "▁bi b",
+ "▁ bib",
+ "▁póź niej",
+ "▁file Name",
+ "▁ fileName",
+ "zo tt",
+ "z ott",
+ "ma cht",
+ "mac ht",
+ "m acht",
+ "▁Ul rich",
+ "C y",
+ "end point",
+ "▁she ep",
+ "▁i bn",
+ "Fe ed",
+ "F eed",
+ "▁sympath y",
+ "▁I b",
+ "▁territ orial",
+ "ra ting",
+ "rat ing",
+ "r ating",
+ "да ми",
+ "▁d st",
+ "▁ds t",
+ "▁ dst",
+ "у ю",
+ "ah o",
+ "a ho",
+ "▁s ug",
+ "▁su g",
+ "em ia",
+ "emi a",
+ "▁t ed",
+ "▁te d",
+ "▁ ted",
+ "▁A pi",
+ "▁Ap i",
+ "▁ Api",
+ "▁R ica",
+ "▁Ric a",
+ "▁Ri ca",
+ "▁M R",
+ "▁ MR",
+ "ński m",
+ "ń skim",
+ "▁V oor",
+ "▁Vo or",
+ "▁de vil",
+ "▁dev il",
+ "▁devi l",
+ "▁Ф о",
+ "▁N är",
+ "▁Nä r",
+ "▁... )",
+ "▁.. .)",
+ "▁ ...)",
+ "▁v ois",
+ "▁vo is",
+ "▁ab bre",
+ "▁abb re",
+ "▁M änner",
+ "xim o",
+ "xi mo",
+ "x imo",
+ "▁intellect ual",
+ "▁t ales",
+ "▁tal es",
+ "▁ta les",
+ "▁tale s",
+ "sim ilar",
+ "ne um",
+ "▁O rig",
+ "▁Or ig",
+ "▁Ori g",
+ "▁po stal",
+ "▁pos tal",
+ "▁post al",
+ "▁h vor",
+ "▁ident ification",
+ "▁identific ation",
+ "▁О д",
+ "ue sto",
+ "ues to",
+ "uest o",
+ "u esto",
+ "▁. ./",
+ "▁.. /",
+ "▁ ../",
+ "▁b ir",
+ "▁bi r",
+ "▁ bir",
+ "▁Л он",
+ "▁Ло н",
+ "▁es empio",
+ "▁E ing",
+ "▁Ein g",
+ "Exp and",
+ "▁PR IMARY",
+ "▁J in",
+ "▁Ji n",
+ "▁vš ak",
+ "ours es",
+ "ourse s",
+ "▁Be tty",
+ "▁Bet ty",
+ "▁W M",
+ "▁ WM",
+ "▁fl ask",
+ "▁fla sk",
+ "hl en",
+ "h len",
+ "▁A del",
+ "▁Ad el",
+ "lar avel",
+ "▁д ет",
+ "▁де т",
+ "сь кою",
+ "сько ю",
+ "▁M undo",
+ "▁Mun do",
+ "ic zn",
+ "icz n",
+ "ifi é",
+ "▁М ор",
+ "▁Мо р",
+ "▁д рев",
+ "▁др ев",
+ "Date Format",
+ "сь ким",
+ "ськ им",
+ "▁d ated",
+ "▁da ted",
+ "▁dat ed",
+ "▁date d",
+ "▁ dated",
+ "ко ли",
+ "кол и",
+ "▁результа те",
+ "\\) .",
+ "\\ ).",
+ "▁delay ed",
+ "so und",
+ "s ound",
+ "▁Ма к",
+ "▁\" ...",
+ "▁\". ..",
+ "▁b innen",
+ "▁bin nen",
+ "▁фа куль",
+ "▁pol ygon",
+ "▁poly gon",
+ "▁eg gs",
+ "▁egg s",
+ "At IndexPath",
+ "AtIndex Path",
+ "мен таль",
+ "мент аль",
+ "мента ль",
+ "▁in cred",
+ "▁incre d",
+ "▁inc red",
+ "ch unk",
+ "web driver",
+ "▁с вобо",
+ "▁сво бо",
+ "▁mi ędzy",
+ "Rece ived",
+ "Receive d",
+ "▁M onde",
+ "▁Mon de",
+ "▁Mo nde",
+ "▁Mond e",
+ "▁J Query",
+ "Bu tt",
+ "But t",
+ "B utt",
+ "▁P DO",
+ "▁for ec",
+ "▁fo rec",
+ "▁fore c",
+ "▁discipl ine",
+ "ch ev",
+ "che v",
+ "на т",
+ "н ат",
+ "▁re dis",
+ "▁red is",
+ "▁hun ting",
+ "▁al k",
+ "▁ alk",
+ "▁proof s",
+ "PR I",
+ "P RI",
+ "▁c hip",
+ "▁ch ip",
+ "▁chi p",
+ "és ie",
+ "▁H O",
+ "▁ HO",
+ "▁r ug",
+ "▁ru g",
+ "▁ rug",
+ "zo s",
+ "z os",
+ "▁s orte",
+ "▁sort e",
+ "▁sor te",
+ "▁ze igt",
+ "▁Phys ics",
+ "leg te",
+ "legt e",
+ "▁proport ional",
+ "▁proportion al",
+ "▁tool bar",
+ "ve ment",
+ "v ement",
+ "not in",
+ "▁prv ní",
+ "bl ah",
+ "bla h",
+ "b lah",
+ "▁prés ence",
+ "▁l loc",
+ "▁ll oc",
+ "▁lí der",
+ "▁Ac cept",
+ "▁ Accept",
+ "▁Al ways",
+ "▁\" {",
+ "▁divers i",
+ "▁diver si",
+ "ik or",
+ "iko r",
+ "i kor",
+ "Per iod",
+ "ж ён",
+ "▁Al liance",
+ "▁All iance",
+ "▁re lay",
+ "▁rel ay",
+ "▁rela y",
+ "Br o",
+ "B ro",
+ "jö n",
+ "j ön",
+ "▁B aud",
+ "▁Ba ud",
+ "▁Bau d",
+ "▁B ian",
+ "▁Bi an",
+ "') [",
+ "' )[",
+ "чи в",
+ "▁P oss",
+ "▁Po ss",
+ "▁Pos s",
+ "▁Mitg lieder",
+ "▁Mitglied er",
+ "▁n ev",
+ "▁ne v",
+ "Dan iel",
+ "▁t ends",
+ "▁ten ds",
+ "▁tend s",
+ "▁compag nie",
+ "▁liv res",
+ "▁livre s",
+ "lu b",
+ "l ub",
+ "▁ ▁",
+ "▁▁ ▁▁",
+ "▁▁▁ ▁",
+ "▁ ▁▁▁",
+ "▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁",
+ "▁▁▁▁ ▁",
+ "▁▁▁ ▁▁",
+ "▁ ▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁",
+ "▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁",
+ "▁ ▁▁",
+ "▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/out/finetune/tinyllama_full_arc/2504/final/tokenizer_config.json b/out/finetune/tinyllama_full_arc/2504/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ef41cbc275000b29afe157ba487f0530b8c26dc
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/final/tokenizer_config.json
@@ -0,0 +1,35 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "bos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "clean_up_tokenization_spaces": false,
+ "eos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "legacy": false,
+ "model_max_length": 1000000000000000019884624838656,
+ "pad_token": null,
+ "padding_side": "right",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizer",
+ "unk_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/out/finetune/tinyllama_full_arc/2504/logs/csv/version_0/metrics.csv b/out/finetune/tinyllama_full_arc/2504/logs/csv/version_0/metrics.csv
new file mode 100644
index 0000000000000000000000000000000000000000..346cef0e8b7a441cfc315ccb1a108b03eb81fc2f
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2504/logs/csv/version_0/metrics.csv
@@ -0,0 +1,556 @@
+epoch,iter,iter_time,learning_rate,loss,step,tokens,total_tokens,val_loss,val_ppl
+0,1,0.2247452549636364,0.0,3.868067502975464,1,109,109,,
+0,2,0.06483165733516216,0.0,3.9839396476745605,2,273,273,,
+0,3,0.06017789337784052,0.0,3.7009785175323486,3,455,455,,
+0,4,0.0601214487105608,0.0,3.7596945762634277,4,568,568,,
+0,5,0.05719882156699896,0.0,3.6566519737243652,5,702,702,,
+0,6,0.057316020131111145,0.0,3.5787975788116455,6,812,812,,
+0,7,0.057108365930616856,0.0,3.594461679458618,7,950,950,,
+0,8,0.16128367837518454,2.0000000000000002e-07,3.629730701446533,8,1057,1057,,
+0,9,0.05974580813199282,2.0000000000000002e-07,3.5373613834381104,9,1215,1215,,
+0,10,0.058875651098787785,2.0000000000000002e-07,3.4434521198272705,10,1390,1390,,
+0,11,0.05767440050840378,2.0000000000000002e-07,3.4709672927856445,11,1553,1553,,
+0,12,0.05833686143159866,2.0000000000000002e-07,3.4452083110809326,12,1685,1685,,
+0,13,0.05864813271909952,2.0000000000000002e-07,3.4820172786712646,13,1825,1825,,
+0,14,0.058603065088391304,2.0000000000000002e-07,3.484492778778076,14,2005,2005,,
+0,15,0.05875647161155939,2.0000000000000002e-07,3.4135448932647705,15,2175,2175,,
+0,16,0.08753973431885242,4.0000000000000003e-07,3.2910213470458984,16,2341,2341,,
+0,17,0.05774063989520073,4.0000000000000003e-07,3.339061975479126,17,2487,2487,,
+0,18,0.058256291784346104,4.0000000000000003e-07,3.347198009490967,18,2642,2642,,
+0,19,0.058768113143742085,4.0000000000000003e-07,3.35221266746521,19,2783,2783,,
+0,20,0.058889555744826794,4.0000000000000003e-07,3.3904922008514404,20,2901,2901,,
+0,21,0.05897718947380781,4.0000000000000003e-07,3.411297559738159,21,3019,3019,,
+0,22,0.05845870543271303,4.0000000000000003e-07,3.4449920654296875,22,3132,3132,,
+0,23,0.05829224083572626,4.0000000000000003e-07,3.419914484024048,23,3418,3418,,
+0,24,0.08734268695116043,6.000000000000001e-07,3.4330852031707764,24,3712,3712,,
+0,25,0.05778531916439533,6.000000000000001e-07,3.5110361576080322,25,3820,3820,,
+0,26,0.0584620488807559,6.000000000000001e-07,3.500396966934204,26,4037,4037,,
+0,27,0.05867233220487833,6.000000000000001e-07,3.4988372325897217,27,4177,4177,,
+0,28,0.059287358075380325,6.000000000000001e-07,3.447622060775757,28,4324,4324,,
+0,29,0.05944777466356754,6.000000000000001e-07,3.4367291927337646,29,4468,4468,,
+0,30,0.05837488733232021,6.000000000000001e-07,3.497736930847168,30,4607,4607,,
+0,31,0.05842973850667477,6.000000000000001e-07,3.5293495655059814,31,4790,4790,,
+0,32,0.08736319281160831,8.000000000000001e-07,3.583347797393799,32,4995,4995,,
+0,33,0.057277120649814606,8.000000000000001e-07,3.561913013458252,33,5116,5116,,
+0,34,0.05885875504463911,8.000000000000001e-07,3.5822458267211914,34,5253,5253,,
+0,35,0.05859046336263418,8.000000000000001e-07,3.573025703430176,35,5443,5443,,
+0,36,0.06039556860923767,8.000000000000001e-07,3.565730094909668,36,5616,5616,,
+0,37,0.05810411833226681,8.000000000000001e-07,3.5283055305480957,37,5759,5759,,
+0,38,0.058362677693367004,8.000000000000001e-07,3.51002836227417,38,5891,5891,,
+0,39,0.058001505210995674,8.000000000000001e-07,3.579256534576416,39,6042,6042,,
+0,40,0.0874652536585927,1.0000000000000002e-06,3.5467264652252197,40,6240,6240,,
+0,41,0.05740627460181713,1.0000000000000002e-06,3.524362325668335,41,6396,6396,,
+0,42,0.05837328638881445,1.0000000000000002e-06,3.4984261989593506,42,6555,6555,,
+0,43,0.060012335889041424,1.0000000000000002e-06,3.5380589962005615,43,6703,6703,,
+0,44,0.05797180254012346,1.0000000000000002e-06,3.522021532058716,44,6835,6835,,
+0,45,0.058806837536394596,1.0000000000000002e-06,3.532655954360962,45,6966,6966,,
+0,46,0.058132996782660484,1.0000000000000002e-06,3.5404818058013916,46,7070,7070,,
+0,47,0.05808281898498535,1.0000000000000002e-06,3.5871574878692627,47,7189,7189,,
+0,48,0.08749903831630945,1.2000000000000002e-06,3.5917279720306396,48,7342,7342,,
+0,49,0.05762290209531784,1.2000000000000002e-06,3.588850259780884,49,7476,7476,,
+0,50,0.05855160113424063,1.2000000000000002e-06,3.583843946456909,50,7632,7632,,
+0,51,0.05774826370179653,1.2000000000000002e-06,3.5962769985198975,51,7763,7763,,
+0,52,0.05851950775831938,1.2000000000000002e-06,3.5877654552459717,52,7911,7911,,
+0,53,0.058833809569478035,1.2000000000000002e-06,3.5308897495269775,53,8102,8102,,
+0,54,0.05889554787427187,1.2000000000000002e-06,3.4219515323638916,54,8300,8300,,
+0,55,0.05829147342592478,1.2000000000000002e-06,3.332227945327759,55,8469,8469,,
+0,56,0.08696736674755812,1.4000000000000001e-06,3.3332903385162354,56,8642,8642,,
+0,57,0.058534023351967335,1.4000000000000001e-06,3.343883514404297,57,8770,8770,,
+0,58,0.058087718673050404,1.4000000000000001e-06,3.310657262802124,58,8980,8980,,
+0,59,0.05831038672477007,1.4000000000000001e-06,3.2574360370635986,59,9113,9113,,
+0,60,0.06018042005598545,1.4000000000000001e-06,3.245699882507324,60,9234,9234,,
+0,61,0.05925207305699587,1.4000000000000001e-06,3.3180792331695557,61,9397,9397,,
+0,62,0.05813014507293701,1.4000000000000001e-06,3.3860931396484375,62,9539,9539,,
+0,63,0.058653855696320534,1.4000000000000001e-06,3.3722829818725586,63,9744,9744,,
+0,64,0.08706659264862537,1.6000000000000001e-06,3.4148998260498047,64,9888,9888,,
+0,65,0.05733606033027172,1.6000000000000001e-06,3.413196086883545,65,10022,10022,,
+0,66,0.05823486391454935,1.6000000000000001e-06,3.4835612773895264,66,10125,10125,,
+0,67,0.05840349942445755,1.6000000000000001e-06,3.4808638095855713,67,10235,10235,,
+0,68,0.05798369646072388,1.6000000000000001e-06,3.5251855850219727,68,10354,10354,,
+0,69,0.058224412612617016,1.6000000000000001e-06,3.488516330718994,69,10545,10545,,
+0,70,0.05872099194675684,1.6000000000000001e-06,3.4499409198760986,70,10713,10713,,
+0,71,0.05850710906088352,1.6000000000000001e-06,3.4866719245910645,71,10839,10839,,
+0,72,0.08683404140174389,1.8e-06,3.4679434299468994,72,10953,10953,,
+0,73,0.057282693684101105,1.8e-06,3.452108860015869,73,11123,11123,,
+0,74,0.05795428995043039,1.8e-06,3.4124794006347656,74,11295,11295,,
+0,75,0.05784280225634575,1.8e-06,3.4347779750823975,75,11422,11422,,
+0,76,0.05792899150401354,1.8e-06,3.438706874847412,76,11527,11527,,
+0,77,0.058717992156744,1.8e-06,3.5040431022644043,77,11649,11649,,
+0,78,0.058439028449356556,1.8e-06,3.5198676586151123,78,11801,11801,,
+0,79,0.05864907056093216,1.8e-06,3.5058398246765137,79,11941,11941,,
+0,80,0.08687896840274334,2.0000000000000003e-06,3.5010435581207275,80,12113,12113,,
+0,81,0.05684074852615595,2.0000000000000003e-06,3.446415662765503,81,12270,12270,,
+0,82,0.058435333892703056,2.0000000000000003e-06,3.465366840362549,82,12463,12463,,
+0,83,0.05800611153244972,2.0000000000000003e-06,3.4860095977783203,83,12576,12576,,
+0,84,0.058083925396203995,2.0000000000000003e-06,3.5202033519744873,84,12712,12712,,
+0,85,0.058052316308021545,2.0000000000000003e-06,3.446190357208252,85,12905,12905,,
+0,86,0.058476547710597515,2.0000000000000003e-06,3.468726634979248,86,13030,13030,,
+0,87,0.0576561214402318,2.0000000000000003e-06,3.466771125793457,87,13212,13212,,
+0,88,0.08717162162065506,2.2e-06,3.39725661277771,88,13517,13517,,
+0,89,0.05705625005066395,2.2e-06,3.4331305027008057,89,13650,13650,,
+0,90,0.0586137268692255,2.2e-06,3.3997128009796143,90,13802,13802,,
+0,91,0.05881337448954582,2.2e-06,3.3239262104034424,91,14007,14007,,
+0,92,0.06105172820389271,2.2e-06,3.2727863788604736,92,14117,14117,,
+0,93,0.05977766681462526,2.2e-06,3.330846071243286,93,14329,14329,,
+0,94,0.05856061540544033,2.2e-06,3.3580915927886963,94,14480,14480,,
+0,95,0.05841882526874542,2.2e-06,3.358912944793701,95,14605,14605,,
+0,96,0.08714492712169886,2.4000000000000003e-06,3.5074667930603027,96,14709,14709,,
+0,97,0.05810790881514549,2.4000000000000003e-06,3.428638458251953,97,14917,14917,,
+0,98,0.058487243950366974,2.4000000000000003e-06,3.4471826553344727,98,15091,15091,,
+0,99,0.05895673297345638,2.4000000000000003e-06,3.468240737915039,99,15352,15352,,
+0,100,0.05838717054575682,2.4000000000000003e-06,3.465615749359131,100,15454,15454,,
+0,101,0.05902817938476801,2.4000000000000003e-06,3.4321703910827637,101,15607,15607,,
+0,102,0.05906676221638918,2.4000000000000003e-06,3.400448799133301,102,15730,15730,,
+0,103,0.05874055624008179,2.4000000000000003e-06,3.3799147605895996,103,15893,15893,,
+0,104,0.08750167582184076,2.6e-06,3.2771613597869873,104,16101,16101,,
+0,105,0.058458589017391205,2.6e-06,3.368128538131714,105,16248,16248,,
+0,106,0.059412271715700626,2.6e-06,3.3433592319488525,106,16365,16365,,
+0,107,0.05929388012737036,2.6e-06,3.325962781906128,107,16549,16549,,
+0,108,0.05877791717648506,2.6e-06,3.3613836765289307,108,16722,16722,,
+0,109,0.05889683682471514,2.6e-06,3.435818910598755,109,16828,16828,,
+0,110,0.05845456849783659,2.6e-06,3.3917734622955322,110,17021,17021,,
+0,111,0.0582934245467186,2.6e-06,3.366217851638794,111,17228,17228,,
+0,112,0.08809695765376091,2.8000000000000003e-06,3.3533544540405273,112,17416,17416,,
+0,113,0.05802916269749403,2.8000000000000003e-06,3.3215785026550293,113,17584,17584,,
+0,114,0.05854444392025471,2.8000000000000003e-06,3.4077138900756836,114,17714,17714,,
+0,115,0.058716592378914356,2.8000000000000003e-06,3.381603717803955,115,17892,17892,,
+0,116,0.05887971259653568,2.8000000000000003e-06,3.3608202934265137,116,18065,18065,,
+0,117,0.05906001012772322,2.8000000000000003e-06,3.319150447845459,117,18175,18175,,
+0,118,0.058676572516560555,2.8000000000000003e-06,3.300009250640869,118,18331,18331,,
+0,119,0.058974191546440125,2.8000000000000003e-06,3.2991344928741455,119,18549,18549,,
+0,120,0.08953170664608479,3e-06,3.3155360221862793,120,18750,18750,,
+0,121,0.058486117981374264,3e-06,3.2907848358154297,121,18881,18881,,
+0,122,0.05937483813613653,3e-06,3.2528302669525146,122,18988,18988,,
+0,123,0.058752790093421936,3e-06,3.3530611991882324,123,19120,19120,,
+0,124,0.05881859175860882,3e-06,3.331162691116333,124,19246,19246,,
+0,125,0.05895608011633158,3e-06,3.2094902992248535,125,19396,19396,,
+0,126,0.05827832967042923,3e-06,3.2810440063476562,126,19522,19522,,
+0,127,0.059300752356648445,3e-06,3.3463900089263916,127,19624,19624,,
+0,128,0.08730972558259964,3.2000000000000003e-06,3.305222272872925,128,19807,19807,,
+0,129,0.057467385195195675,3.2000000000000003e-06,3.326481819152832,129,19978,19978,,
+0,130,0.058472441509366035,3.2000000000000003e-06,3.2714712619781494,130,20110,20110,,
+0,131,0.058151460252702236,3.2000000000000003e-06,3.2534046173095703,131,20226,20226,,
+0,132,0.05843418091535568,3.2000000000000003e-06,3.3151004314422607,132,20327,20327,,
+0,133,0.06285446789115667,3.2000000000000003e-06,3.3462655544281006,133,20536,20536,,
+0,134,0.05934460461139679,3.2000000000000003e-06,3.3058419227600098,134,20666,20666,,
+0,135,0.0582446064800024,3.2000000000000003e-06,3.2779736518859863,135,20777,20777,,
+0,136,0.08784094825387001,3.4000000000000005e-06,3.255284309387207,136,20968,20968,,
+0,137,0.05780830420553684,3.4000000000000005e-06,3.2796475887298584,137,21062,21062,,
+0,138,0.05836171843111515,3.4000000000000005e-06,3.3186771869659424,138,21185,21185,,
+0,139,0.05869014747440815,3.4000000000000005e-06,3.2683417797088623,139,21340,21340,,
+0,140,0.05822717398405075,3.4000000000000005e-06,3.236246347427368,140,21452,21452,,
+0,141,0.05830986052751541,3.4000000000000005e-06,3.3083529472351074,141,21610,21610,,
+0,142,0.05882651824504137,3.4000000000000005e-06,3.2735791206359863,142,21815,21815,,
+0,143,0.058283512480556965,3.4000000000000005e-06,3.2837722301483154,143,21941,21941,,
+0,144,0.08698095753788948,3.6e-06,3.3485846519470215,144,22037,22037,,
+0,145,0.05731771048158407,3.6e-06,3.3232386112213135,145,22212,22212,,
+0,146,0.058825560845434666,3.6e-06,3.321256160736084,146,22300,22300,,
+0,147,0.05848443042486906,3.6e-06,3.4025790691375732,147,22424,22424,,
+0,148,0.058208802714943886,3.6e-06,3.3667681217193604,148,22528,22528,,
+0,149,0.05837189871817827,3.6e-06,3.2803943157196045,149,22694,22694,,
+0,150,0.058395025320351124,3.6e-06,3.3150274753570557,150,22824,22824,,
+0,151,0.05833111144602299,3.6e-06,3.3878774642944336,151,22952,22952,,
+0,152,0.08680899441242218,3.8e-06,3.359103202819824,152,23111,23111,,
+0,153,0.05759003199636936,3.8e-06,3.3687400817871094,153,23217,23217,,
+0,154,0.058282348327338696,3.8e-06,3.41792631149292,154,23340,23340,,
+0,155,0.05852739326655865,3.8e-06,3.360201358795166,155,23532,23532,,
+0,156,0.058111196383833885,3.8e-06,3.3363499641418457,156,23696,23696,,
+0,157,0.05819470435380936,3.8e-06,3.3637537956237793,157,23897,23897,,
+0,158,0.05820302851498127,3.8e-06,3.409435510635376,158,24049,24049,,
+0,159,0.058204288594424725,3.8e-06,3.3494460582733154,159,24172,24172,,
+0,160,0.08719739317893982,4.000000000000001e-06,3.4002609252929688,160,24344,24344,,
+0,161,0.058065349236130714,4.000000000000001e-06,3.321610689163208,161,24535,24535,,
+0,162,0.05829322710633278,4.000000000000001e-06,3.2778918743133545,162,24717,24717,,
+0,163,0.05846335459500551,4.000000000000001e-06,3.279069662094116,163,24838,24838,,
+0,164,0.05805672612041235,4.000000000000001e-06,3.241605281829834,164,25016,25016,,
+0,165,0.05806289613246918,4.000000000000001e-06,3.3020553588867188,165,25124,25124,,
+0,166,0.05813904479146004,4.000000000000001e-06,3.300678253173828,166,25270,25270,,
+0,167,0.05837047565728426,4.000000000000001e-06,3.2518556118011475,167,25406,25406,,
+0,168,0.08693349454551935,4.2000000000000004e-06,3.2285752296447754,168,25569,25569,,
+0,169,0.05774308554828167,4.2000000000000004e-06,3.2326714992523193,169,25732,25732,,
+0,170,0.05800417438149452,4.2000000000000004e-06,3.1784121990203857,170,25903,25903,,
+0,171,0.058406594209373,4.2000000000000004e-06,3.181117057800293,171,26051,26051,,
+0,172,0.0583317456766963,4.2000000000000004e-06,3.1941192150115967,172,26220,26220,,
+0,173,0.0583308944478631,4.2000000000000004e-06,3.1729044914245605,173,26348,26348,,
+0,174,0.05852464959025383,4.2000000000000004e-06,3.1480119228363037,174,26503,26503,,
+0,175,0.05860679782927036,4.2000000000000004e-06,3.11448335647583,175,26647,26647,,
+0,176,0.08706202358007431,4.4e-06,3.1383795738220215,176,26780,26780,,
+0,177,0.05845142249017954,4.4e-06,3.2387444972991943,177,26883,26883,,
+0,178,0.05892092548310757,4.4e-06,3.300165891647339,178,26980,26980,,
+0,179,0.058491301722824574,4.4e-06,3.2660329341888428,179,27169,27169,,
+0,180,0.05845861881971359,4.4e-06,3.317782402038574,180,27322,27322,,
+0,181,0.061130343936383724,4.4e-06,3.271394729614258,181,27510,27510,,
+0,182,0.05870543792843819,4.4e-06,3.228501319885254,182,27612,27612,,
+0,183,0.05839060619473457,4.4e-06,3.2762527465820312,183,27778,27778,,
+0,184,0.08698510471731424,4.6e-06,3.1933982372283936,184,27973,27973,,
+0,185,0.05786260776221752,4.6e-06,3.117724895477295,185,28105,28105,,
+0,186,0.05839880369603634,4.6e-06,3.104203939437866,186,28253,28253,,
+0,187,0.05805716663599014,4.6e-06,3.1088435649871826,187,28408,28408,,
+0,188,0.058223298750817776,4.6e-06,3.0664689540863037,188,28573,28573,,
+0,189,0.058405155315995216,4.6e-06,3.1384685039520264,189,28674,28674,,
+0,190,0.05843394808471203,4.6e-06,3.193930149078369,190,28831,28831,,
+0,191,0.05833516176789999,4.6e-06,3.169543981552124,191,28962,28962,,
+0,192,0.0868816589936614,4.800000000000001e-06,3.2109920978546143,192,29103,29103,,
+0,193,0.057510931976139545,4.800000000000001e-06,3.214447259902954,193,29338,29338,,
+0,194,0.057825624011456966,4.800000000000001e-06,3.1608052253723145,194,29513,29513,,
+0,195,0.058429290540516376,4.800000000000001e-06,3.1685292720794678,195,29667,29667,,
+0,196,0.05805219616740942,4.800000000000001e-06,3.218839645385742,196,29815,29815,,
+0,197,0.0579010471701622,4.800000000000001e-06,3.166442632675171,197,29924,29924,,
+0,198,0.05793904606252909,4.800000000000001e-06,3.0771002769470215,198,30063,30063,,
+0,199,0.058484538458287716,4.800000000000001e-06,3.0703837871551514,199,30242,30242,,
+0,200,0.08684534206986427,5e-06,3.0530858039855957,200,30528,30528,,
+,,,,,200,,,2.9952404499053955,19.990165945536592
+0,201,0.06163674034178257,5e-06,3.0484204292297363,201,30671,30671,,
+0,202,0.05893123336136341,5e-06,3.062711238861084,202,30862,30862,,
+0,203,0.059044260531663895,5e-06,3.01790189743042,203,31074,31074,,
+0,204,0.05794193595647812,5e-06,2.97475004196167,204,31246,31246,,
+0,205,0.05721451714634895,5e-06,2.9651849269866943,205,31411,31411,,
+0,206,0.05819747503846884,5e-06,2.960578680038452,206,31579,31579,,
+0,207,0.05809901561588049,5e-06,2.9712653160095215,207,31704,31704,,
+0,208,0.08691518846899271,5.2e-06,3.0305182933807373,208,31840,31840,,
+0,209,0.05672378744930029,5.2e-06,3.1167514324188232,209,31964,31964,,
+0,210,0.05787986144423485,5.2e-06,3.1261627674102783,210,32115,32115,,
+0,211,0.058173613622784615,5.2e-06,3.1858556270599365,211,32222,32222,,
+0,212,0.05790382158011198,5.2e-06,3.122504472732544,212,32410,32410,,
+0,213,0.05782070569694042,5.2e-06,3.1261956691741943,213,32546,32546,,
+0,214,0.05803076457232237,5.2e-06,3.1352474689483643,214,32722,32722,,
+0,215,0.058536993339657784,5.2e-06,3.075521230697632,215,32910,32910,,
+0,216,0.08673284575343132,5.4e-06,2.982558250427246,216,33079,33079,,
+0,217,0.05689055286347866,5.4e-06,2.858478546142578,217,33197,33197,,
+0,218,0.05822363495826721,5.4e-06,2.864871025085449,218,33358,33358,,
+0,219,0.0583561547100544,5.4e-06,2.8433327674865723,219,33506,33506,,
+0,220,0.05768499616533518,5.4e-06,2.873779773712158,220,33674,33674,,
+0,221,0.05783083010464907,5.4e-06,2.8974132537841797,221,33816,33816,,
+0,222,0.0608248608186841,5.4e-06,2.9117088317871094,222,33943,33943,,
+0,223,0.05891817342489958,5.4e-06,3.003793239593506,223,34108,34108,,
+0,224,0.08709828089922667,5.600000000000001e-06,3.0866384506225586,224,34210,34210,,
+0,225,0.05719154141843319,5.600000000000001e-06,3.1109862327575684,225,34352,34352,,
+0,226,0.05828144587576389,5.600000000000001e-06,3.111250162124634,226,34593,34593,,
+0,227,0.05887284129858017,5.600000000000001e-06,3.0611464977264404,227,34766,34766,,
+0,228,0.05784563533961773,5.600000000000001e-06,3.0902602672576904,228,34918,34918,,
+0,229,0.05811444856226444,5.600000000000001e-06,3.010296583175659,229,35091,35091,,
+0,230,0.05799083784222603,5.600000000000001e-06,2.987196683883667,230,35233,35233,,
+0,231,0.05855241324752569,5.600000000000001e-06,2.939117431640625,231,35358,35358,,
+0,232,0.08679010532796383,5.8e-06,2.8724069595336914,232,35531,35531,,
+0,233,0.05712576024234295,5.8e-06,2.9165596961975098,233,35668,35668,,
+0,234,0.05785787105560303,5.8e-06,2.857994556427002,234,35891,35891,,
+0,235,0.05810082983225584,5.8e-06,2.91501522064209,235,36033,36033,,
+0,236,0.05812258832156658,5.8e-06,2.9116978645324707,236,36191,36191,,
+0,237,0.05812138691544533,5.8e-06,2.9511260986328125,237,36400,36400,,
+0,238,0.058214250952005386,5.8e-06,2.9494242668151855,238,36560,36560,,
+0,239,0.05888915993273258,5.8e-06,2.9047975540161133,239,36737,36737,,
+0,240,0.08705367613583803,6e-06,2.9297051429748535,240,36922,36922,,
+0,241,0.057284893468022346,6e-06,2.8965530395507812,241,37049,37049,,
+0,242,0.05755551531910896,6e-06,2.940155029296875,242,37241,37241,,
+0,243,0.058512610383331776,6e-06,2.946589946746826,243,37389,37389,,
+0,244,0.058016108348965645,6e-06,2.9588382244110107,244,37559,37559,,
+0,245,0.058018977753818035,6e-06,2.9891958236694336,245,37695,37695,,
+0,246,0.05762552097439766,6e-06,2.988140344619751,246,37897,37897,,
+0,247,0.058433596044778824,6e-06,3.0369656085968018,247,38065,38065,,
+0,248,0.0868574483320117,6.2e-06,2.983133554458618,248,38244,38244,,
+0,249,0.05779877118766308,6.2e-06,2.9505441188812256,249,38444,38444,,
+0,250,0.05841668136417866,6.2e-06,2.887770652770996,250,38600,38600,,
+0,251,0.058683790266513824,6.2e-06,2.8372085094451904,251,38757,38757,,
+0,252,0.05820666532963514,6.2e-06,2.7744100093841553,252,38884,38884,,
+0,253,0.05808322876691818,6.2e-06,2.7846806049346924,253,38984,38984,,
+0,254,0.05810186266899109,6.2e-06,2.8085029125213623,254,39133,39133,,
+0,255,0.05817637965083122,6.2e-06,2.772792339324951,255,39315,39315,,
+0,256,0.08646402042359114,6.4000000000000006e-06,2.781803607940674,256,39477,39477,,
+0,257,0.056852071546018124,6.4000000000000006e-06,2.799025058746338,257,39668,39668,,
+0,258,0.05805427022278309,6.4000000000000006e-06,2.847215175628662,258,39818,39818,,
+0,259,0.0582515187561512,6.4000000000000006e-06,2.8048713207244873,259,39981,39981,,
+0,260,0.057975427247583866,6.4000000000000006e-06,2.822904348373413,260,40117,40117,,
+0,261,0.057787819765508175,6.4000000000000006e-06,2.769416570663452,261,40228,40228,,
+0,262,0.05808936059474945,6.4000000000000006e-06,2.782254934310913,262,40355,40355,,
+0,263,0.05822369363158941,6.4000000000000006e-06,2.7724833488464355,263,40547,40547,,
+0,264,0.08685710374265909,6.6e-06,2.7720255851745605,264,40689,40689,,
+0,265,0.057163468562066555,6.6e-06,2.734637498855591,265,40832,40832,,
+0,266,0.05821689125150442,6.6e-06,2.737919330596924,266,40982,40982,,
+0,267,0.05897102504968643,6.6e-06,2.7816317081451416,267,41086,41086,,
+0,268,0.05864247214049101,6.6e-06,2.7766177654266357,268,41188,41188,,
+0,269,0.058070700615644455,6.6e-06,2.8305444717407227,269,41315,41315,,
+0,270,0.058280086144804955,6.6e-06,2.8370423316955566,270,41434,41434,,
+0,271,0.058448368683457375,6.6e-06,2.8646562099456787,271,41574,41574,,
+0,272,0.08742107544094324,6.800000000000001e-06,2.905974864959717,272,41744,41744,,
+0,273,0.05711414013057947,6.800000000000001e-06,2.9420549869537354,273,41878,41878,,
+0,274,0.05799820180982351,6.800000000000001e-06,2.875135898590088,274,41995,41995,,
+0,275,0.058614023961126804,6.800000000000001e-06,2.838172197341919,275,42169,42169,,
+0,276,0.05863392632454634,6.800000000000001e-06,2.8274166584014893,276,42468,42468,,
+0,277,0.057824186980724335,6.800000000000001e-06,2.7590878009796143,277,42591,42591,,
+0,278,0.05805146135389805,6.800000000000001e-06,2.7320525646209717,278,42751,42751,,
+0,279,0.05851393658667803,6.800000000000001e-06,2.737545967102051,279,42928,42928,,
+0,280,0.08928231336176395,7.000000000000001e-06,2.7570085525512695,280,43036,43036,,
+0,281,0.057366782799363136,7.000000000000001e-06,2.772573232650757,281,43206,43206,,
+0,282,0.05780544225126505,7.000000000000001e-06,2.829615831375122,282,43381,43381,,
+0,283,0.05877285171300173,7.000000000000001e-06,2.803481340408325,283,43505,43505,,
+0,284,0.05819324404001236,7.000000000000001e-06,2.7929117679595947,284,43608,43608,,
+0,285,0.058055831119418144,7.000000000000001e-06,2.8835349082946777,285,43719,43719,,
+0,286,0.05786928255110979,7.000000000000001e-06,2.8804774284362793,286,43876,43876,,
+0,287,0.059298885986208916,7.000000000000001e-06,2.866863965988159,287,44005,44005,,
+0,288,0.08759618643671274,7.2e-06,2.733391046524048,288,44207,44207,,
+0,289,0.05727458279579878,7.2e-06,2.6940672397613525,289,44340,44340,,
+0,290,0.0577865531668067,7.2e-06,2.6444826126098633,290,44540,44540,,
+0,291,0.058601013384759426,7.2e-06,2.682950973510742,291,44706,44706,,
+0,292,0.05798119306564331,7.2e-06,2.7427680492401123,292,44852,44852,,
+0,293,0.058062066324055195,7.2e-06,2.6650047302246094,293,45000,45000,,
+0,294,0.05802495777606964,7.2e-06,2.627265214920044,294,45166,45166,,
+0,295,0.058559407480061054,7.2e-06,2.646717071533203,295,45305,45305,,
+0,296,0.0869318088516593,7.4e-06,2.787745475769043,296,45435,45435,,
+0,297,0.05691082123667002,7.4e-06,2.7537450790405273,297,45641,45641,,
+0,298,0.05799997691065073,7.4e-06,2.79587984085083,298,45788,45788,,
+0,299,0.058564456179738045,7.4e-06,2.7969021797180176,299,45920,45920,,
+0,300,0.057916480116546154,7.4e-06,2.709500312805176,300,46057,46057,,
+0,301,0.05785469338297844,7.4e-06,2.6910839080810547,301,46171,46171,,
+0,302,0.05786908511072397,7.4e-06,2.69724178314209,302,46330,46330,,
+0,303,0.05860586650669575,7.4e-06,2.627683162689209,303,46446,46446,,
+0,304,0.08699325006455183,7.6e-06,2.5696582794189453,304,46610,46610,,
+0,305,0.057504961267113686,7.6e-06,2.5548744201660156,305,46793,46793,,
+0,306,0.05827392637729645,7.6e-06,2.4980838298797607,306,47063,47063,,
+0,307,0.05874675326049328,7.6e-06,2.4657208919525146,307,47148,47148,,
+0,308,0.057932885363698006,7.6e-06,2.4675827026367188,308,47271,47271,,
+0,309,0.05831842217594385,7.6e-06,2.4793195724487305,309,47445,47445,,
+0,310,0.05826403200626373,7.6e-06,2.4827969074249268,310,47620,47620,,
+0,311,0.05854983162134886,7.6e-06,2.457434892654419,311,47749,47749,,
+0,312,0.08683218527585268,7.8e-06,2.4788663387298584,312,47910,47910,,
+0,313,0.057359982281923294,7.8e-06,2.5008087158203125,313,48080,48080,,
+0,314,0.05840551573783159,7.8e-06,2.484462261199951,314,48181,48181,,
+0,315,0.058605766855180264,7.8e-06,2.5616393089294434,315,48319,48319,,
+0,316,0.05814998224377632,7.8e-06,2.6007888317108154,316,48474,48474,,
+0,317,0.06007508747279644,7.8e-06,2.545013189315796,317,48603,48603,,
+0,318,0.05810064822435379,7.8e-06,2.5124945640563965,318,48724,48724,,
+0,319,0.05823126807808876,7.8e-06,2.583508253097534,319,48914,48914,,
+0,320,0.08672661613672972,8.000000000000001e-06,2.568403482437134,320,49027,49027,,
+0,321,0.057368273846805096,8.000000000000001e-06,2.5541188716888428,321,49166,49166,,
+0,322,0.057687739841639996,8.000000000000001e-06,2.570021152496338,322,49365,49365,,
+0,323,0.05842204485088587,8.000000000000001e-06,2.5043346881866455,323,49557,49557,,
+0,324,0.058165897615253925,8.000000000000001e-06,2.498776435852051,324,49686,49686,,
+0,325,0.0582016771659255,8.000000000000001e-06,2.480592966079712,325,49856,49856,,
+0,326,0.05837641004472971,8.000000000000001e-06,2.4640891551971436,326,49959,49959,,
+0,327,0.05848348047584295,8.000000000000001e-06,2.393643856048584,327,50096,50096,,
+0,328,0.08688432071357965,8.200000000000001e-06,2.362701177597046,328,50207,50207,,
+0,329,0.05696240812540054,8.200000000000001e-06,2.3518340587615967,329,50396,50396,,
+0,330,0.05806199088692665,8.200000000000001e-06,2.4134020805358887,330,50560,50560,,
+0,331,0.058549074456095695,8.200000000000001e-06,2.4255285263061523,331,50671,50671,,
+0,332,0.05812441371381283,8.200000000000001e-06,2.3937795162200928,332,50859,50859,,
+0,333,0.059059022925794125,8.200000000000001e-06,2.491798162460327,333,51014,51014,,
+0,334,0.05825017765164375,8.200000000000001e-06,2.540795087814331,334,51167,51167,,
+0,335,0.058889470994472504,8.200000000000001e-06,2.6112539768218994,335,51272,51272,,
+0,336,0.08686555922031403,8.400000000000001e-06,2.590543508529663,336,51433,51433,,
+0,337,0.057473867200315,8.400000000000001e-06,2.5844249725341797,337,51592,51592,,
+0,338,0.05805724300444126,8.400000000000001e-06,2.5614373683929443,338,51718,51718,,
+0,339,0.058394141495227814,8.400000000000001e-06,2.5385923385620117,339,51832,51832,,
+0,340,0.058124483563005924,8.400000000000001e-06,2.563133955001831,340,51952,51952,,
+0,341,0.05820200685411692,8.400000000000001e-06,2.5904970169067383,341,52076,52076,,
+0,342,0.058250765316188335,8.400000000000001e-06,2.5959179401397705,342,52192,52192,,
+0,343,0.058907982893288136,8.400000000000001e-06,2.5809905529022217,343,52347,52347,,
+0,344,0.08711756113916636,8.599999999999999e-06,2.6107394695281982,344,52458,52458,,
+0,345,0.05743447691202164,8.599999999999999e-06,2.5929031372070312,345,52610,52610,,
+0,346,0.05842200759798288,8.599999999999999e-06,2.580141544342041,346,52746,52746,,
+0,347,0.06009151600301266,8.599999999999999e-06,2.6319332122802734,347,52888,52888,,
+0,348,0.059479434974491596,8.599999999999999e-06,2.634479522705078,348,53063,53063,,
+0,349,0.05898289754986763,8.599999999999999e-06,2.5157415866851807,349,53267,53267,,
+0,350,0.058999402448534966,8.599999999999999e-06,2.508749008178711,350,53370,53370,,
+0,351,0.05929564964026213,8.599999999999999e-06,2.515432357788086,351,53490,53490,,
+0,352,0.08756192773580551,8.8e-06,2.485374689102173,352,53626,53626,,
+0,353,0.057502223178744316,8.8e-06,2.5712006092071533,353,53793,53793,,
+0,354,0.058017753064632416,8.8e-06,2.6318893432617188,354,53997,53997,,
+0,355,0.05850124917924404,8.8e-06,2.5670197010040283,355,54199,54199,,
+0,356,0.05831205192953348,8.8e-06,2.51029109954834,356,54325,54325,,
+0,357,0.05824171472340822,8.8e-06,2.531466007232666,357,54487,54487,,
+0,358,0.05894591752439737,8.8e-06,2.4716734886169434,358,54720,54720,,
+0,359,0.05874102562665939,8.8e-06,2.4287004470825195,359,54864,54864,,
+0,360,0.08770688995718956,9e-06,2.41880464553833,360,54957,54957,,
+0,361,0.05735243856906891,9e-06,2.3784401416778564,361,55080,55080,,
+0,362,0.05814122408628464,9e-06,2.292513370513916,362,55196,55196,,
+0,363,0.058794768527150154,9e-06,2.342543601989746,363,55316,55316,,
+0,364,0.05808530282229185,9e-06,2.327592134475708,364,55467,55467,,
+0,365,0.058123051188886166,9e-06,2.3715903759002686,365,55588,55588,,
+0,366,0.05807916261255741,9e-06,2.43225359916687,366,55753,55753,,
+0,367,0.05882187746465206,9e-06,2.4485878944396973,367,55912,55912,,
+0,368,0.08708630409091711,9.2e-06,2.4793596267700195,368,56040,56040,,
+0,369,0.05770691949874163,9.2e-06,2.476214647293091,369,56145,56145,,
+0,370,0.05837065260857344,9.2e-06,2.4806835651397705,370,56288,56288,,
+0,371,0.05836005602031946,9.2e-06,2.416259288787842,371,56437,56437,,
+0,372,0.05791626311838627,9.2e-06,2.4915051460266113,372,56649,56649,,
+0,373,0.05830040853470564,9.2e-06,2.505483865737915,373,56787,56787,,
+0,374,0.05819795839488506,9.2e-06,2.483042001724243,374,56921,56921,,
+0,375,0.05835473630577326,9.2e-06,2.506525993347168,375,57055,57055,,
+0,376,0.08657660149037838,9.4e-06,2.4523353576660156,376,57213,57213,,
+0,377,0.0575163085013628,9.4e-06,2.399498462677002,377,57432,57432,,
+0,378,0.05785178579390049,9.4e-06,2.3984062671661377,378,57566,57566,,
+0,379,0.058540044352412224,9.4e-06,2.4703049659729004,379,57710,57710,,
+0,380,0.05786613468080759,9.4e-06,2.4393882751464844,380,57852,57852,,
+0,381,0.05770284030586481,9.4e-06,2.385486364364624,381,58031,58031,,
+0,382,0.057508017867803574,9.4e-06,2.3679189682006836,382,58146,58146,,
+0,383,0.05850765947252512,9.4e-06,2.364408493041992,383,58384,58384,,
+0,384,0.08681794349104166,9.600000000000001e-06,2.4007210731506348,384,58556,58556,,
+0,385,0.05962920654565096,9.600000000000001e-06,2.4655277729034424,385,58758,58758,,
+0,386,0.05828721076250076,9.600000000000001e-06,2.4476115703582764,386,58907,58907,,
+0,387,0.05832746718078852,9.600000000000001e-06,2.4309351444244385,387,59069,59069,,
+0,388,0.05792590230703354,9.600000000000001e-06,2.433401107788086,388,59221,59221,,
+0,389,0.05777089763432741,9.600000000000001e-06,2.4406802654266357,389,59332,59332,,
+0,390,0.0579033587127924,9.600000000000001e-06,2.4269838333129883,390,59455,59455,,
+0,391,0.058392368257045746,9.600000000000001e-06,2.4151229858398438,391,59585,59585,,
+0,392,0.08649363927543163,9.800000000000001e-06,2.436689853668213,392,59756,59756,,
+0,393,0.05701849516481161,9.800000000000001e-06,2.4118878841400146,393,59889,59889,,
+0,394,0.05798517260700464,9.800000000000001e-06,2.449108839035034,394,60039,60039,,
+0,395,0.05840463098138571,9.800000000000001e-06,2.408137321472168,395,60183,60183,,
+0,396,0.057579588145017624,9.800000000000001e-06,2.4132156372070312,396,60382,60382,,
+0,397,0.058093718253076077,9.800000000000001e-06,2.4133760929107666,397,60587,60587,,
+0,398,0.0578317241743207,9.800000000000001e-06,2.39977765083313,398,60729,60729,,
+0,399,0.05841263011097908,9.800000000000001e-06,2.3267245292663574,399,60875,60875,,
+0,400,0.08653854113072157,1e-05,2.3245882987976074,400,61004,61004,,
+,,,,,400,,,2.2213964462280273,9.22019738995374
+0,401,0.05989070422947407,1e-05,2.281935214996338,401,61208,61208,,
+0,402,0.058612726628780365,1e-05,2.229743003845215,402,61354,61354,,
+0,403,0.058757415041327477,1e-05,2.2397427558898926,403,61506,61506,,
+0,404,0.05780164524912834,1e-05,2.1996560096740723,404,61672,61672,,
+0,405,0.0578140327706933,1e-05,2.1261396408081055,405,61819,61819,,
+0,406,0.0578777426853776,1e-05,2.1838431358337402,406,61946,61946,,
+0,407,0.05820096656680107,1e-05,2.2127180099487305,407,62125,62125,,
+0,408,0.08751621097326279,1.02e-05,2.2088375091552734,408,62314,62314,,
+0,409,0.056859822012484074,1.02e-05,2.2912757396698,409,62464,62464,,
+0,410,0.05775265675038099,1.02e-05,2.344776153564453,410,62583,62583,,
+0,411,0.058137197047472,1.02e-05,2.3638272285461426,411,62791,62791,,
+0,412,0.05803065188229084,1.02e-05,2.400531768798828,412,62962,62962,,
+0,413,0.05831281095743179,1.02e-05,2.4163360595703125,413,63137,63137,,
+0,414,0.057931067422032356,1.02e-05,2.365168809890747,414,63295,63295,,
+0,415,0.05853918381035328,1.02e-05,2.3703742027282715,415,63433,63433,,
+0,416,0.0868670018389821,1.04e-05,2.3442845344543457,416,63532,63532,,
+0,417,0.056900082156062126,1.04e-05,2.341609001159668,417,63680,63680,,
+0,418,0.0577432019636035,1.04e-05,2.3166098594665527,418,63795,63795,,
+0,419,0.05846173595637083,1.04e-05,2.25972580909729,419,63929,63929,,
+0,420,0.05788425449281931,1.04e-05,2.208644151687622,420,64059,64059,,
+0,421,0.0580485537648201,1.04e-05,2.2176594734191895,421,64203,64203,,
+0,422,0.058184368535876274,1.04e-05,2.201687812805176,422,64370,64370,,
+0,423,0.05871214438229799,1.04e-05,2.1821422576904297,423,64546,64546,,
+0,424,0.08722329698503017,1.06e-05,2.188220262527466,424,64720,64720,,
+0,425,0.05817111022770405,1.06e-05,2.1884312629699707,425,64886,64886,,
+0,426,0.05804506503045559,1.06e-05,2.216212511062622,426,65080,65080,,
+0,427,0.05871277488768101,1.06e-05,2.2742772102355957,427,65238,65238,,
+0,428,0.057820591144263744,1.06e-05,2.291182518005371,428,65364,65364,,
+0,429,0.057990369386971,1.06e-05,2.332782745361328,429,65498,65498,,
+0,430,0.058323984034359455,1.06e-05,2.329482078552246,430,65673,65673,,
+0,431,0.058483513072133064,1.06e-05,2.3787455558776855,431,65885,65885,,
+0,432,0.0868571475148201,1.08e-05,2.371011257171631,432,66044,66044,,
+0,433,0.05751127749681473,1.08e-05,2.363337993621826,433,66215,66215,,
+0,434,0.05813112296164036,1.08e-05,2.358516216278076,434,66334,66334,,
+0,435,0.05915501806885004,1.08e-05,2.3423495292663574,435,66517,66517,,
+0,436,0.05840969271957874,1.08e-05,2.382720470428467,436,66686,66686,,
+0,437,0.06055285315960646,1.08e-05,2.3647756576538086,437,66795,66795,,
+0,438,0.0587381087243557,1.08e-05,2.4301939010620117,438,66955,66955,,
+0,439,0.05865716375410557,1.08e-05,2.424462080001831,439,67050,67050,,
+0,440,0.08713007532060146,1.1000000000000001e-05,2.3948585987091064,440,67209,67209,,
+0,441,0.05715480726212263,1.1000000000000001e-05,2.400883436203003,441,67350,67350,,
+0,442,0.057708125561475754,1.1000000000000001e-05,2.3942909240722656,442,67507,67507,,
+0,443,0.05844297632575035,1.1000000000000001e-05,2.4331135749816895,443,67686,67686,,
+0,444,0.05774470325559378,1.1000000000000001e-05,2.4062435626983643,444,67792,67792,,
+0,445,0.0577339231967926,1.1000000000000001e-05,2.4550440311431885,445,67964,67964,,
+0,446,0.05751440208405256,1.1000000000000001e-05,2.420011043548584,446,68102,68102,,
+0,447,0.05830559693276882,1.1000000000000001e-05,2.3692307472229004,447,68240,68240,,
+0,448,0.08625457156449556,1.1200000000000001e-05,2.394406318664551,448,68374,68374,,
+0,449,0.05696672946214676,1.1200000000000001e-05,2.347308874130249,449,68542,68542,,
+0,450,0.05765791516751051,1.1200000000000001e-05,2.337827205657959,450,68678,68678,,
+0,451,0.05792667344212532,1.1200000000000001e-05,2.308098554611206,451,68866,68866,,
+0,452,0.057779847644269466,1.1200000000000001e-05,2.305891752243042,452,69021,69021,,
+0,453,0.05844061728566885,1.1200000000000001e-05,2.241727828979492,453,69163,69163,,
+0,454,0.058358064852654934,1.1200000000000001e-05,2.2587671279907227,454,69336,69336,,
+0,455,0.058313265442848206,1.1200000000000001e-05,2.2809884548187256,455,69554,69554,,
+0,456,0.08631449658423662,1.1400000000000001e-05,2.264197587966919,456,69698,69698,,
+0,457,0.05705016292631626,1.1400000000000001e-05,2.2722902297973633,457,69819,69819,,
+0,458,0.057852309197187424,1.1400000000000001e-05,2.274350166320801,458,69980,69980,,
+0,459,0.05801151413470507,1.1400000000000001e-05,2.2491166591644287,459,70125,70125,,
+0,460,0.058037666603922844,1.1400000000000001e-05,2.2408392429351807,460,70248,70248,,
+0,461,0.05811499245464802,1.1400000000000001e-05,2.2827672958374023,461,70427,70427,,
+0,462,0.05810797307640314,1.1400000000000001e-05,2.2314035892486572,462,70530,70530,,
+0,463,0.05877829249948263,1.1400000000000001e-05,2.2337687015533447,463,70671,70671,,
+0,464,0.08663545921444893,1.16e-05,2.239985466003418,464,70863,70863,,
+0,465,0.05702048074454069,1.16e-05,2.243123769760132,465,71007,71007,,
+0,466,0.05760767497122288,1.16e-05,2.1922826766967773,466,71153,71153,,
+0,467,0.058262997306883335,1.16e-05,2.1904590129852295,467,71297,71297,,
+0,468,0.05788224842399359,1.16e-05,2.1955127716064453,468,71407,71407,,
+0,469,0.05771130230277777,1.16e-05,2.1944713592529297,469,71577,71577,,
+0,470,0.057718947529792786,1.16e-05,2.230952501296997,470,71765,71765,,
+0,471,0.058205205015838146,1.16e-05,2.2286133766174316,471,71987,71987,,
+0,472,0.08681394066661596,1.18e-05,2.2793467044830322,472,72145,72145,,
+0,473,0.056809776462614536,1.18e-05,2.275635004043579,473,72307,72307,,
+0,474,0.05787780601531267,1.18e-05,2.3272597789764404,474,72423,72423,,
+0,475,0.05838643852621317,1.18e-05,2.337053060531616,475,72564,72564,,
+0,476,0.057854664511978626,1.18e-05,2.3455607891082764,476,72677,72677,,
+0,477,0.05773266311734915,1.18e-05,2.3694005012512207,477,72817,72817,,
+0,478,0.057917715050280094,1.18e-05,2.400855779647827,478,72947,72947,,
+0,479,0.05837190058082342,1.18e-05,2.442424774169922,479,73183,73183,,
+0,480,0.086720647290349,1.2e-05,2.4539289474487305,480,73346,73346,,
+0,481,0.05687010195106268,1.2e-05,2.4155049324035645,481,73488,73488,,
+0,482,0.05768474563956261,1.2e-05,2.414119243621826,482,73602,73602,,
+0,483,0.05809211637824774,1.2e-05,2.4022459983825684,483,73802,73802,,
+0,484,0.05779905337840319,1.2e-05,2.3858139514923096,484,73943,73943,,
+0,485,0.05792019795626402,1.2e-05,2.3025436401367188,485,74081,74081,,
+0,486,0.057666231878101826,1.2e-05,2.2577404975891113,486,74239,74239,,
+0,487,0.05836654640734196,1.2e-05,2.218296527862549,487,74353,74353,,
+0,488,0.08690087124705315,1.22e-05,2.177457332611084,488,74524,74524,,
+0,489,0.057059140875935555,1.22e-05,2.203314781188965,489,74681,74681,,
+0,490,0.05877286661416292,1.22e-05,2.1648778915405273,490,74864,74864,,
+0,491,0.05861567426472902,1.22e-05,2.1869149208068848,491,75030,75030,,
+0,492,0.057901411317288876,1.22e-05,2.223069667816162,492,75155,75155,,
+0,493,0.05794442072510719,1.22e-05,2.2288293838500977,493,75276,75276,,
+0,494,0.05760661605745554,1.22e-05,2.2617506980895996,494,75458,75458,,
+0,495,0.05852216202765703,1.22e-05,2.240354537963867,495,75575,75575,,
+0,496,0.08652899414300919,1.24e-05,2.267096519470215,496,75738,75738,,
+0,497,0.0570576312020421,1.24e-05,2.319242000579834,497,75875,75875,,
+0,498,0.057899704203009605,1.24e-05,2.355332374572754,498,76069,76069,,
+0,499,0.05838643852621317,1.24e-05,2.304776430130005,499,76214,76214,,
+0,500,0.05799891706556082,1.24e-05,2.2341785430908203,500,76345,76345,,
+0,501,0.05833570100367069,1.24e-05,2.244054079055786,501,76465,76465,,
+0,502,0.05783459451049566,1.24e-05,2.2057697772979736,502,76680,76680,,
+0,503,0.05899601895362139,1.24e-05,2.182166337966919,503,76764,76764,,
+0,504,0.0866481177508831,1.2600000000000001e-05,2.1547019481658936,504,76897,76897,,
+0,505,0.05715227406471968,1.2600000000000001e-05,2.101623296737671,505,77032,77032,,
+0,506,0.05807022750377655,1.2600000000000001e-05,2.0992000102996826,506,77163,77163,,
+0,507,0.05827547423541546,1.2600000000000001e-05,2.1130778789520264,507,77315,77315,,
+0,508,0.05761836748570204,1.2600000000000001e-05,2.1550285816192627,508,77413,77413,,
+0,509,0.057624028995633125,1.2600000000000001e-05,2.1447629928588867,509,77602,77602,,
+0,510,0.057448526844382286,1.2600000000000001e-05,2.1253814697265625,510,77777,77777,,
+0,511,0.058221857994794846,1.2600000000000001e-05,2.1696877479553223,511,77888,77888,,
+0,512,0.08689194824546576,1.2800000000000001e-05,2.1225340366363525,512,78068,78068,,
+0,513,0.056797211058437824,1.2800000000000001e-05,2.1264450550079346,513,78244,78244,,
+0,514,0.057840035296976566,1.2800000000000001e-05,2.1210405826568604,514,78383,78383,,
+0,515,0.05845346674323082,1.2800000000000001e-05,2.1242289543151855,515,78496,78496,,
+0,516,0.05780207738280296,1.2800000000000001e-05,2.126038074493408,516,78723,78723,,
+0,517,0.057835664600133896,1.2800000000000001e-05,2.17271089553833,517,78887,78887,,
+0,518,0.058137561194598675,1.2800000000000001e-05,2.2334060668945312,518,79042,79042,,
+0,519,0.05867699161171913,1.2800000000000001e-05,2.199589729309082,519,79171,79171,,
+0,520,0.0867327656596899,1.3000000000000001e-05,2.242825746536255,520,79309,79309,,
+0,521,0.05731691047549248,1.3000000000000001e-05,2.2369048595428467,521,79438,79438,,
+0,522,0.05805358663201332,1.3000000000000001e-05,2.2441110610961914,522,79579,79579,,
+0,523,0.05860496312379837,1.3000000000000001e-05,2.2686383724212646,523,79758,79758,,
+0,524,0.05809032451361418,1.3000000000000001e-05,2.257913112640381,524,79942,79942,,
+0,525,0.057685744017362595,1.3000000000000001e-05,2.1740365028381348,525,80065,80065,,
+0,526,0.05796927120536566,1.3000000000000001e-05,2.1205806732177734,526,80207,80207,,
+0,527,0.05839157197624445,1.3000000000000001e-05,2.1284384727478027,527,80365,80365,,
+0,528,0.08630097471177578,1.32e-05,2.149848222732544,528,80576,80576,,
+0,529,0.05680452287197113,1.32e-05,2.19057297706604,529,80732,80732,,
+0,530,0.057530004531145096,1.32e-05,2.2036309242248535,530,80896,80896,,
+0,531,0.05820881202816963,1.32e-05,2.173952341079712,531,81010,81010,,
+0,532,0.057993365451693535,1.32e-05,2.2037487030029297,532,81150,81150,,
+0,533,0.05783232394605875,1.32e-05,2.2196247577667236,533,81271,81271,,
+0,534,0.05785019975155592,1.32e-05,2.282428503036499,534,81403,81403,,
+0,535,0.05857424531131983,1.32e-05,2.293070077896118,535,81540,81540,,
+0,536,0.08681504614651203,1.3400000000000002e-05,2.2243123054504395,536,81693,81693,,
+0,537,0.05696380138397217,1.3400000000000002e-05,2.199856996536255,537,81845,81845,,
+0,538,0.05763022694736719,1.3400000000000002e-05,2.1458826065063477,538,82049,82049,,
+0,539,0.05825794953852892,1.3400000000000002e-05,2.155392646789551,539,82244,82244,,
+0,540,0.05831443052738905,1.3400000000000002e-05,2.1224451065063477,540,82420,82420,,
+0,541,0.05822972673922777,1.3400000000000002e-05,2.1845242977142334,541,82578,82578,,
+0,542,0.05802853312343359,1.3400000000000002e-05,2.160320520401001,542,82706,82706,,
+0,543,0.058283318765461445,1.3400000000000002e-05,2.2391300201416016,543,82849,82849,,
+0,544,0.0871823625639081,1.3600000000000002e-05,2.276854991912842,544,83005,83005,,
+0,545,0.057117789052426815,1.3600000000000002e-05,2.2752695083618164,545,83177,83177,,
+0,546,0.05799849238246679,1.3600000000000002e-05,2.2736685276031494,546,83335,83335,,
+0,547,0.058822451159358025,1.3600000000000002e-05,2.293461561203003,547,83529,83529,,
+0,548,0.05765397381037474,1.3600000000000002e-05,2.3224995136260986,548,83756,83756,,
+0,549,0.057732791639864445,1.3600000000000002e-05,2.298356533050537,549,83978,83978,,
+0,550,0.05785819422453642,1.3600000000000002e-05,2.249758243560791,550,84130,84130,,
+0,551,0.05839867051690817,1.3600000000000002e-05,2.182687759399414,551,84284,84284,,
+0,552,0.08710458129644394,1.3800000000000002e-05,2.213390827178955,552,84388,84388,,
+,,,,,553,,,2.093029022216797,8.109441678884927
diff --git a/out/finetune/tinyllama_full_arc/2505/final/config.json b/out/finetune/tinyllama_full_arc/2505/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/final/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/finetune/tinyllama_full_arc/2505/final/generation_config.json b/out/finetune/tinyllama_full_arc/2505/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/finetune/tinyllama_full_arc/2505/final/hyperparameters.yaml b/out/finetune/tinyllama_full_arc/2505/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c6d163d634471ba584f6e25dd627ea2fdd8d1be7
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/final/hyperparameters.yaml
@@ -0,0 +1,43 @@
+checkpoint_dir: out/pretrain/tinyllama/2505_full/final
+out_dir: out/finetune/tinyllama_full_arc/2505
+precision: bf16-true
+devices: 1
+num_nodes: 1
+resume: false
+data:
+ class_path: litgpt.data.JSON
+ init_args:
+ json_path: litgpt/data/arc_finetune/train.json
+ mask_prompt: false
+ val_split_fraction: 0.02
+ prompt_style: default
+ ignore_index: -100
+ seed: 42
+ num_workers: 4
+train:
+ save_interval: 800
+ log_interval: 1
+ global_batch_size: 32
+ micro_batch_size: 4
+ lr_warmup_steps: 1000
+ epochs: 1
+ max_seq_length: 512
+ min_lr: 6.0e-05
+eval:
+ interval: 25
+ max_new_tokens: 100
+ max_iters: 100
+ initial_validation: false
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 0.0002
+ weight_decay: 0.0
+ betas:
+ - 0.9
+ - 0.95
+logger_name: csv
+seed: 1337
diff --git a/out/finetune/tinyllama_full_arc/2505/final/model_config.yaml b/out/finetune/tinyllama_full_arc/2505/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d31881309289cb59520314f7da89a8ef38f3c77e
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 64
+hf_config:
+ name: TinyLlama-1.1B-intermediate-step-1431k-3T
+ org: TinyLlama
+intermediate_size: 5632
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 2048
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 22
+n_query_groups: 4
+name: tiny-llama-1.1b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-05
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/finetune/tinyllama_full_arc/2505/final/prompt_style.yaml b/out/finetune/tinyllama_full_arc/2505/final/prompt_style.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..941ee04454a29d3bc5e7d95772771250ed72f339
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/final/prompt_style.yaml
@@ -0,0 +1 @@
+class_path: litgpt.prompts.Default
diff --git a/out/finetune/tinyllama_full_arc/2505/final/tokenizer.json b/out/finetune/tinyllama_full_arc/2505/final/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6e931b92caff4c79c5c56282f1e89569a0ae558
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/final/tokenizer.json
@@ -0,0 +1,93391 @@
+{
+ "version": "1.0",
+ "truncation": null,
+ "padding": null,
+ "added_tokens": [
+ {
+ "id": 0,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 1,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 2,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ }
+ ],
+ "normalizer": {
+ "type": "Sequence",
+ "normalizers": [
+ {
+ "type": "Prepend",
+ "prepend": "▁"
+ },
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": " "
+ },
+ "content": "▁"
+ }
+ ]
+ },
+ "pre_tokenizer": null,
+ "post_processor": {
+ "type": "TemplateProcessing",
+ "single": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ }
+ ],
+ "pair": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ },
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 1
+ }
+ },
+ {
+ "Sequence": {
+ "id": "B",
+ "type_id": 1
+ }
+ }
+ ],
+ "special_tokens": {
+ "": {
+ "id": "",
+ "ids": [
+ 1
+ ],
+ "tokens": [
+ ""
+ ]
+ }
+ }
+ },
+ "decoder": {
+ "type": "Sequence",
+ "decoders": [
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": "▁"
+ },
+ "content": " "
+ },
+ {
+ "type": "ByteFallback"
+ },
+ {
+ "type": "Fuse"
+ },
+ {
+ "type": "Strip",
+ "content": " ",
+ "start": 1,
+ "stop": 0
+ }
+ ]
+ },
+ "model": {
+ "type": "BPE",
+ "dropout": null,
+ "unk_token": "",
+ "continuing_subword_prefix": null,
+ "end_of_word_suffix": null,
+ "fuse_unk": true,
+ "byte_fallback": true,
+ "vocab": {
+ "": 0,
+ "": 1,
+ "": 2,
+ "<0x00>": 3,
+ "<0x01>": 4,
+ "<0x02>": 5,
+ "<0x03>": 6,
+ "<0x04>": 7,
+ "<0x05>": 8,
+ "<0x06>": 9,
+ "<0x07>": 10,
+ "<0x08>": 11,
+ "<0x09>": 12,
+ "<0x0A>": 13,
+ "<0x0B>": 14,
+ "<0x0C>": 15,
+ "<0x0D>": 16,
+ "<0x0E>": 17,
+ "<0x0F>": 18,
+ "<0x10>": 19,
+ "<0x11>": 20,
+ "<0x12>": 21,
+ "<0x13>": 22,
+ "<0x14>": 23,
+ "<0x15>": 24,
+ "<0x16>": 25,
+ "<0x17>": 26,
+ "<0x18>": 27,
+ "<0x19>": 28,
+ "<0x1A>": 29,
+ "<0x1B>": 30,
+ "<0x1C>": 31,
+ "<0x1D>": 32,
+ "<0x1E>": 33,
+ "<0x1F>": 34,
+ "<0x20>": 35,
+ "<0x21>": 36,
+ "<0x22>": 37,
+ "<0x23>": 38,
+ "<0x24>": 39,
+ "<0x25>": 40,
+ "<0x26>": 41,
+ "<0x27>": 42,
+ "<0x28>": 43,
+ "<0x29>": 44,
+ "<0x2A>": 45,
+ "<0x2B>": 46,
+ "<0x2C>": 47,
+ "<0x2D>": 48,
+ "<0x2E>": 49,
+ "<0x2F>": 50,
+ "<0x30>": 51,
+ "<0x31>": 52,
+ "<0x32>": 53,
+ "<0x33>": 54,
+ "<0x34>": 55,
+ "<0x35>": 56,
+ "<0x36>": 57,
+ "<0x37>": 58,
+ "<0x38>": 59,
+ "<0x39>": 60,
+ "<0x3A>": 61,
+ "<0x3B>": 62,
+ "<0x3C>": 63,
+ "<0x3D>": 64,
+ "<0x3E>": 65,
+ "<0x3F>": 66,
+ "<0x40>": 67,
+ "<0x41>": 68,
+ "<0x42>": 69,
+ "<0x43>": 70,
+ "<0x44>": 71,
+ "<0x45>": 72,
+ "<0x46>": 73,
+ "<0x47>": 74,
+ "<0x48>": 75,
+ "<0x49>": 76,
+ "<0x4A>": 77,
+ "<0x4B>": 78,
+ "<0x4C>": 79,
+ "<0x4D>": 80,
+ "<0x4E>": 81,
+ "<0x4F>": 82,
+ "<0x50>": 83,
+ "<0x51>": 84,
+ "<0x52>": 85,
+ "<0x53>": 86,
+ "<0x54>": 87,
+ "<0x55>": 88,
+ "<0x56>": 89,
+ "<0x57>": 90,
+ "<0x58>": 91,
+ "<0x59>": 92,
+ "<0x5A>": 93,
+ "<0x5B>": 94,
+ "<0x5C>": 95,
+ "<0x5D>": 96,
+ "<0x5E>": 97,
+ "<0x5F>": 98,
+ "<0x60>": 99,
+ "<0x61>": 100,
+ "<0x62>": 101,
+ "<0x63>": 102,
+ "<0x64>": 103,
+ "<0x65>": 104,
+ "<0x66>": 105,
+ "<0x67>": 106,
+ "<0x68>": 107,
+ "<0x69>": 108,
+ "<0x6A>": 109,
+ "<0x6B>": 110,
+ "<0x6C>": 111,
+ "<0x6D>": 112,
+ "<0x6E>": 113,
+ "<0x6F>": 114,
+ "<0x70>": 115,
+ "<0x71>": 116,
+ "<0x72>": 117,
+ "<0x73>": 118,
+ "<0x74>": 119,
+ "<0x75>": 120,
+ "<0x76>": 121,
+ "<0x77>": 122,
+ "<0x78>": 123,
+ "<0x79>": 124,
+ "<0x7A>": 125,
+ "<0x7B>": 126,
+ "<0x7C>": 127,
+ "<0x7D>": 128,
+ "<0x7E>": 129,
+ "<0x7F>": 130,
+ "<0x80>": 131,
+ "<0x81>": 132,
+ "<0x82>": 133,
+ "<0x83>": 134,
+ "<0x84>": 135,
+ "<0x85>": 136,
+ "<0x86>": 137,
+ "<0x87>": 138,
+ "<0x88>": 139,
+ "<0x89>": 140,
+ "<0x8A>": 141,
+ "<0x8B>": 142,
+ "<0x8C>": 143,
+ "<0x8D>": 144,
+ "<0x8E>": 145,
+ "<0x8F>": 146,
+ "<0x90>": 147,
+ "<0x91>": 148,
+ "<0x92>": 149,
+ "<0x93>": 150,
+ "<0x94>": 151,
+ "<0x95>": 152,
+ "<0x96>": 153,
+ "<0x97>": 154,
+ "<0x98>": 155,
+ "<0x99>": 156,
+ "<0x9A>": 157,
+ "<0x9B>": 158,
+ "<0x9C>": 159,
+ "<0x9D>": 160,
+ "<0x9E>": 161,
+ "<0x9F>": 162,
+ "<0xA0>": 163,
+ "<0xA1>": 164,
+ "<0xA2>": 165,
+ "<0xA3>": 166,
+ "<0xA4>": 167,
+ "<0xA5>": 168,
+ "<0xA6>": 169,
+ "<0xA7>": 170,
+ "<0xA8>": 171,
+ "<0xA9>": 172,
+ "<0xAA>": 173,
+ "<0xAB>": 174,
+ "<0xAC>": 175,
+ "<0xAD>": 176,
+ "<0xAE>": 177,
+ "<0xAF>": 178,
+ "<0xB0>": 179,
+ "<0xB1>": 180,
+ "<0xB2>": 181,
+ "<0xB3>": 182,
+ "<0xB4>": 183,
+ "<0xB5>": 184,
+ "<0xB6>": 185,
+ "<0xB7>": 186,
+ "<0xB8>": 187,
+ "<0xB9>": 188,
+ "<0xBA>": 189,
+ "<0xBB>": 190,
+ "<0xBC>": 191,
+ "<0xBD>": 192,
+ "<0xBE>": 193,
+ "<0xBF>": 194,
+ "<0xC0>": 195,
+ "<0xC1>": 196,
+ "<0xC2>": 197,
+ "<0xC3>": 198,
+ "<0xC4>": 199,
+ "<0xC5>": 200,
+ "<0xC6>": 201,
+ "<0xC7>": 202,
+ "<0xC8>": 203,
+ "<0xC9>": 204,
+ "<0xCA>": 205,
+ "<0xCB>": 206,
+ "<0xCC>": 207,
+ "<0xCD>": 208,
+ "<0xCE>": 209,
+ "<0xCF>": 210,
+ "<0xD0>": 211,
+ "<0xD1>": 212,
+ "<0xD2>": 213,
+ "<0xD3>": 214,
+ "<0xD4>": 215,
+ "<0xD5>": 216,
+ "<0xD6>": 217,
+ "<0xD7>": 218,
+ "<0xD8>": 219,
+ "<0xD9>": 220,
+ "<0xDA>": 221,
+ "<0xDB>": 222,
+ "<0xDC>": 223,
+ "<0xDD>": 224,
+ "<0xDE>": 225,
+ "<0xDF>": 226,
+ "<0xE0>": 227,
+ "<0xE1>": 228,
+ "<0xE2>": 229,
+ "<0xE3>": 230,
+ "<0xE4>": 231,
+ "<0xE5>": 232,
+ "<0xE6>": 233,
+ "<0xE7>": 234,
+ "<0xE8>": 235,
+ "<0xE9>": 236,
+ "<0xEA>": 237,
+ "<0xEB>": 238,
+ "<0xEC>": 239,
+ "<0xED>": 240,
+ "<0xEE>": 241,
+ "<0xEF>": 242,
+ "<0xF0>": 243,
+ "<0xF1>": 244,
+ "<0xF2>": 245,
+ "<0xF3>": 246,
+ "<0xF4>": 247,
+ "<0xF5>": 248,
+ "<0xF6>": 249,
+ "<0xF7>": 250,
+ "<0xF8>": 251,
+ "<0xF9>": 252,
+ "<0xFA>": 253,
+ "<0xFB>": 254,
+ "<0xFC>": 255,
+ "<0xFD>": 256,
+ "<0xFE>": 257,
+ "<0xFF>": 258,
+ "▁▁": 259,
+ "▁t": 260,
+ "er": 261,
+ "in": 262,
+ "▁a": 263,
+ "en": 264,
+ "on": 265,
+ "▁th": 266,
+ "es": 267,
+ "▁▁▁▁": 268,
+ "▁s": 269,
+ "▁d": 270,
+ "at": 271,
+ "or": 272,
+ "an": 273,
+ "▁c": 274,
+ "is": 275,
+ "re": 276,
+ "it": 277,
+ "▁the": 278,
+ "ar": 279,
+ "le": 280,
+ "▁w": 281,
+ "▁p": 282,
+ "ou": 283,
+ "al": 284,
+ "▁f": 285,
+ "▁m": 286,
+ "ed": 287,
+ "▁o": 288,
+ "▁b": 289,
+ "om": 290,
+ "ion": 291,
+ "ing": 292,
+ "ic": 293,
+ "as": 294,
+ "el": 295,
+ "ent": 296,
+ "▁in": 297,
+ "▁h": 298,
+ "nd": 299,
+ "et": 300,
+ "▁l": 301,
+ "▁n": 302,
+ "st": 303,
+ "▁to": 304,
+ "ch": 305,
+ "▁I": 306,
+ "ro": 307,
+ "▁▁▁▁▁▁▁▁": 308,
+ "il": 309,
+ "▁of": 310,
+ "de": 311,
+ "ct": 312,
+ "▁(": 313,
+ "am": 314,
+ "▁C": 315,
+ "▁de": 316,
+ "▁S": 317,
+ "▁u": 318,
+ "▁A": 319,
+ "▁\\": 320,
+ "▁e": 321,
+ "▁and": 322,
+ "▁T": 323,
+ "ol": 324,
+ "▁v": 325,
+ "im": 326,
+ "ot": 327,
+ "ad": 328,
+ "ut": 329,
+ "▁g": 330,
+ "em": 331,
+ "ur": 332,
+ "id": 333,
+ "▁*": 334,
+ "ig": 335,
+ "ra": 336,
+ "▁re": 337,
+ "▁is": 338,
+ "qu": 339,
+ "ow": 340,
+ "▁M": 341,
+ "est": 342,
+ "▁y": 343,
+ "se": 344,
+ "ve": 345,
+ "ce": 346,
+ "ie": 347,
+ "un": 348,
+ "▁P": 349,
+ "▁B": 350,
+ "ag": 351,
+ "ul": 352,
+ "▁=": 353,
+ "he": 354,
+ "end": 355,
+ "ode": 356,
+ "ter": 357,
+ "ment": 358,
+ "os": 359,
+ "▁D": 360,
+ "if": 361,
+ "ation": 362,
+ "▁for": 363,
+ "▁r": 364,
+ "▁L": 365,
+ "▁you": 366,
+ "▁be": 367,
+ "ly": 368,
+ "ver": 369,
+ "ab": 370,
+ "te": 371,
+ "▁it": 372,
+ "▁on": 373,
+ "ri": 374,
+ "us": 375,
+ "▁\"": 376,
+ "▁wh": 377,
+ "▁con": 378,
+ "▁H": 379,
+ "▁st": 380,
+ "ir": 381,
+ "▁E": 382,
+ "▁F": 383,
+ "ck": 384,
+ "▁an": 385,
+ "th": 386,
+ "eg": 387,
+ "ay": 388,
+ "ith": 389,
+ "▁R": 390,
+ "ist": 391,
+ "and": 392,
+ "▁that": 393,
+ "▁al": 394,
+ "▁$": 395,
+ "▁#": 396,
+ "od": 397,
+ "um": 398,
+ "▁W": 399,
+ "ht": 400,
+ "code": 401,
+ "▁G": 402,
+ "ate": 403,
+ "ess": 404,
+ "▁N": 405,
+ "ere": 406,
+ "pp": 407,
+ "▁as": 408,
+ "▁se": 409,
+ "▁pro": 410,
+ "▁with": 411,
+ "pe": 412,
+ "▁k": 413,
+ "ers": 414,
+ "pt": 415,
+ ");": 416,
+ "lo": 417,
+ "▁▁▁▁▁": 418,
+ "▁com": 419,
+ "ame": 420,
+ "▁`": 421,
+ "▁Com": 422,
+ "ia": 423,
+ "ant": 424,
+ "▁la": 425,
+ "▁{": 426,
+ "▁en": 427,
+ "ction": 428,
+ "▁ex": 429,
+ "ld": 430,
+ "ub": 431,
+ "▁j": 432,
+ "la": 433,
+ "ue": 434,
+ "▁J": 435,
+ "ich": 436,
+ "▁do": 437,
+ "▁O": 438,
+ "▁qu": 439,
+ "iv": 440,
+ "ort": 441,
+ "art": 442,
+ "▁un": 443,
+ "▁##": 444,
+ "▁this": 445,
+ "ke": 446,
+ "▁ha": 447,
+ "▁-": 448,
+ "out": 449,
+ "▁The": 450,
+ "▁not": 451,
+ "▁ne": 452,
+ "ill": 453,
+ "▁le": 454,
+ "ci": 455,
+ "rom": 456,
+ "ine": 457,
+ "//": 458,
+ "op": 459,
+ "egin": 460,
+ "▁Comment": 461,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 462,
+ "begin": 463,
+ "ст": 464,
+ "ass": 465,
+ "iz": 466,
+ ").": 467,
+ "og": 468,
+ "▁п": 469,
+ "▁or": 470,
+ "▁was": 471,
+ "▁at": 472,
+ "our": 473,
+ "▁i": 474,
+ "ain": 475,
+ "▁K": 476,
+ "на": 477,
+ "▁V": 478,
+ "ge": 479,
+ "▁su": 480,
+ "ap": 481,
+ "age": 482,
+ "ould": 483,
+ "ne": 484,
+ "av": 485,
+ "xt": 486,
+ "ore": 487,
+ "ile": 488,
+ "--": 489,
+ "▁в": 490,
+ "▁by": 491,
+ "li": 492,
+ "ath": 493,
+ "ра": 494,
+ "ber": 495,
+ "ach": 496,
+ "all": 497,
+ "▁Th": 498,
+ "ult": 499,
+ "▁}": 500,
+ "▁U": 501,
+ "▁us": 502,
+ "▁z": 503,
+ "ust": 504,
+ "▁have": 505,
+ "lic": 506,
+ "ни": 507,
+ "▁can": 508,
+ "tr": 509,
+ "com": 510,
+ "),": 511,
+ "▁In": 512,
+ "ind": 513,
+ "ell": 514,
+ "▁from": 515,
+ "ов": 516,
+ "to": 517,
+ "▁[": 518,
+ "able": 519,
+ "ost": 520,
+ "▁ch": 521,
+ "ect": 522,
+ "ight": 523,
+ "int": 524,
+ "▁'": 525,
+ "▁are": 526,
+ "▁im": 527,
+ "▁sh": 528,
+ "▁<": 529,
+ "▁An": 530,
+ "▁с": 531,
+ "ata": 532,
+ "ire": 533,
+ "▁tr": 534,
+ "con": 535,
+ "ord": 536,
+ "ity": 537,
+ "ard": 538,
+ "▁▁▁▁▁▁": 539,
+ "▁he": 540,
+ "▁but": 541,
+ "oc": 542,
+ "=\"": 543,
+ "▁pr": 544,
+ "ure": 545,
+ "per": 546,
+ "ack": 547,
+ "ork": 548,
+ "ong": 549,
+ "ans": 550,
+ "ко": 551,
+ "ple": 552,
+ "▁des": 553,
+ "ok": 554,
+ "orm": 555,
+ "wer": 556,
+ "ak": 557,
+ "pr": 558,
+ "ase": 559,
+ "▁el": 560,
+ "ph": 561,
+ "ac": 562,
+ "▁und": 563,
+ "▁ar": 564,
+ "▁if": 565,
+ "ud": 566,
+ "ps": 567,
+ "ite": 568,
+ "ble": 569,
+ "но": 570,
+ "fer": 571,
+ "pl": 572,
+ "ive": 573,
+ "ang": 574,
+ "ens": 575,
+ "ро": 576,
+ "▁so": 577,
+ "so": 578,
+ "ast": 579,
+ "()": 580,
+ "swer": 581,
+ "ru": 582,
+ "ies": 583,
+ "▁:": 584,
+ "au": 585,
+ "ov": 586,
+ "ре": 587,
+ "го": 588,
+ "▁der": 589,
+ "▁my": 590,
+ "▁we": 591,
+ "▁me": 592,
+ "nt": 593,
+ "▁ad": 594,
+ "urn": 595,
+ "▁your": 596,
+ "://": 597,
+ "are": 598,
+ "▁all": 599,
+ "ff": 600,
+ "io": 601,
+ "estion": 602,
+ "ime": 603,
+ "▁er": 604,
+ "lass": 605,
+ "▁и": 606,
+ "▁which": 607,
+ "ome": 608,
+ "ont": 609,
+ "▁par": 610,
+ "▁ma": 611,
+ "▁Y": 612,
+ "\",": 613,
+ "▁о": 614,
+ "ft": 615,
+ "ial": 616,
+ "cc": 617,
+ "ound": 618,
+ "▁li": 619,
+ "▁res": 620,
+ "eth": 621,
+ "ject": 622,
+ "▁app": 623,
+ "▁St": 624,
+ "ice": 625,
+ "▁am": 626,
+ "act": 627,
+ "▁del": 628,
+ "gr": 629,
+ "ated": 630,
+ "ier": 631,
+ "▁▁▁▁▁▁▁▁▁▁▁▁": 632,
+ "▁ab": 633,
+ "▁et": 634,
+ "ally": 635,
+ "..": 636,
+ "port": 637,
+ "ik": 638,
+ "▁per": 639,
+ "▁cont": 640,
+ "ри": 641,
+ "ка": 642,
+ "ser": 643,
+ "ли": 644,
+ "ll": 645,
+ "iew": 646,
+ "ign": 647,
+ "_{": 648,
+ "put": 649,
+ "one": 650,
+ "unction": 651,
+ "▁di": 652,
+ "ary": 653,
+ "ition": 654,
+ "ma": 655,
+ "ен": 656,
+ "get": 657,
+ "▁lo": 658,
+ "▁val": 659,
+ "▁Q": 660,
+ "ran": 661,
+ "▁д": 662,
+ "ence": 663,
+ "▁work": 664,
+ "▁на": 665,
+ "ip": 666,
+ "item": 667,
+ "ype": 668,
+ "▁&": 669,
+ "▁his": 670,
+ "▁use": 671,
+ "der": 672,
+ "▁Answer": 673,
+ "▁will": 674,
+ "ize": 675,
+ "та": 676,
+ "low": 677,
+ "▁Ch": 678,
+ "▁get": 679,
+ "ide": 680,
+ "ous": 681,
+ "ink": 682,
+ "ption": 683,
+ "ла": 684,
+ "turn": 685,
+ "ung": 686,
+ "ec": 687,
+ "ug": 688,
+ "form": 689,
+ "res": 690,
+ "htt": 691,
+ "oug": 692,
+ "ль": 693,
+ "▁no": 694,
+ "cl": 695,
+ "▁ro": 696,
+ "▁one": 697,
+ "tt": 698,
+ "cri": 699,
+ "du": 700,
+ "▁up": 701,
+ "то": 702,
+ "(\"": 703,
+ "▁ob": 704,
+ "we": 705,
+ "ory": 706,
+ "▁est": 707,
+ "ery": 708,
+ "iel": 709,
+ "str": 710,
+ "ob": 711,
+ "▁que": 712,
+ "ian": 713,
+ "▁out": 714,
+ "▁pl": 715,
+ "▁new": 716,
+ "ки": 717,
+ "▁+": 718,
+ "ry": 719,
+ "oth": 720,
+ "ther": 721,
+ "▁var": 722,
+ "▁would": 723,
+ "▁ser": 724,
+ "tern": 725,
+ "text": 726,
+ "▁there": 727,
+ "ish": 728,
+ "ror": 729,
+ "те": 730,
+ "▁set": 731,
+ "▁@": 732,
+ "▁по": 733,
+ "▁te": 734,
+ "ex": 735,
+ "▁return": 736,
+ "ail": 737,
+ "▁any": 738,
+ "▁It": 739,
+ "▁function": 740,
+ "{\\": 741,
+ "',": 742,
+ "és": 743,
+ "ale": 744,
+ "ан": 745,
+ "▁when": 746,
+ "ib": 747,
+ "▁go": 748,
+ "ance": 749,
+ "▁had": 750,
+ "▁Qu": 751,
+ "▁comp": 752,
+ "ле": 753,
+ "▁з": 754,
+ "math": 755,
+ "▁has": 756,
+ "▁м": 757,
+ "▁pre": 758,
+ "ener": 759,
+ "▁part": 760,
+ "elf": 761,
+ "▁die": 762,
+ "▁like": 763,
+ "ray": 764,
+ "irst": 765,
+ "▁dis": 766,
+ "▁man": 767,
+ "rit": 768,
+ "▁then": 769,
+ "▁class": 770,
+ "pro": 771,
+ "▁po": 772,
+ "▁using": 773,
+ "eb": 774,
+ "▁code": 775,
+ "own": 776,
+ "▁some": 777,
+ "ces": 778,
+ "▁$\\": 779,
+ "ер": 780,
+ "lect": 781,
+ "▁au": 782,
+ "isch": 783,
+ "▁col": 784,
+ "▁–": 785,
+ "up": 786,
+ "ons": 787,
+ "▁add": 788,
+ "ild": 789,
+ "iss": 790,
+ "val": 791,
+ "ount": 792,
+ "les": 793,
+ "vent": 794,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁": 795,
+ "▁Z": 796,
+ "In": 797,
+ "row": 798,
+ "ear": 799,
+ "ations": 800,
+ "ah": 801,
+ "que": 802,
+ "ublic": 803,
+ "ank": 804,
+ "▁sp": 805,
+ "▁Wh": 806,
+ "----": 807,
+ "sk": 808,
+ "ew": 809,
+ "ags": 810,
+ "ти": 811,
+ "ann": 812,
+ "▁—": 813,
+ "ert": 814,
+ "ace": 815,
+ "sch": 816,
+ "▁need": 817,
+ "▁à": 818,
+ "ien": 819,
+ "ough": 820,
+ "не": 821,
+ "▁def": 822,
+ "ij": 823,
+ "ern": 824,
+ "▁what": 825,
+ "▁Ar": 826,
+ "wo": 827,
+ "ml": 828,
+ "": 829,
+ "▁Re": 830,
+ "▁es": 831,
+ "▁inst": 832,
+ "bo": 833,
+ "az": 834,
+ "▁###": 835,
+ "▁б": 836,
+ "erm": 837,
+ "▁Al": 838,
+ "led": 839,
+ "да": 840,
+ "ten": 841,
+ "set": 842,
+ "ло": 843,
+ "▁comm": 844,
+ "sh": 845,
+ "ва": 846,
+ "▁/": 847,
+ "▁data": 848,
+ "▁//": 849,
+ "](": 850,
+ "▁str": 851,
+ "ose": 852,
+ "▁Un": 853,
+ "ven": 854,
+ "St": 855,
+ "...": 856,
+ "▁С": 857,
+ "yst": 858,
+ "▁«": 859,
+ "ick": 860,
+ "ix": 861,
+ "par": 862,
+ "▁у": 863,
+ "▁want": 864,
+ "ng": 865,
+ "ote": 866,
+ "▁gr": 867,
+ "▁du": 868,
+ "▁.": 869,
+ "und": 870,
+ "▁only": 871,
+ "▁sa": 872,
+ "ely": 873,
+ "vers": 874,
+ "▁ent": 875,
+ "))": 876,
+ "('": 877,
+ "▁mod": 878,
+ "ava": 879,
+ "ton": 880,
+ "▁should": 881,
+ "ement": 882,
+ "▁form": 883,
+ "▁also": 884,
+ "▁sc": 885,
+ "ings": 886,
+ "▁You": 887,
+ "ón": 888,
+ "▁kn": 889,
+ "();": 890,
+ "▁|": 891,
+ "▁were": 892,
+ "ss": 893,
+ "▁Question": 894,
+ "ise": 895,
+ "▁they": 896,
+ "▁De": 897,
+ "ond": 898,
+ "▁sol": 899,
+ "▁fol": 900,
+ "▁more": 901,
+ "▁her": 902,
+ "▁_": 903,
+ "▁é": 904,
+ "atch": 905,
+ "fter": 906,
+ "▁cre": 907,
+ "lock": 908,
+ "tring": 909,
+ "▁This": 910,
+ "ze": 911,
+ "ado": 912,
+ "ull": 913,
+ "ger": 914,
+ "be": 915,
+ "▁other": 916,
+ "▁Tags": 917,
+ "ution": 918,
+ "ict": 919,
+ "▁how": 920,
+ "▁x": 921,
+ "▁Se": 922,
+ "▁che": 923,
+ "cript": 924,
+ "▁just": 925,
+ "▁pos": 926,
+ "ange": 927,
+ "ific": 928,
+ "ree": 929,
+ "}}": 930,
+ "▁time": 931,
+ "app": 932,
+ "ны": 933,
+ "▁file": 934,
+ "ark": 935,
+ "ical": 936,
+ "▁first": 937,
+ "▁int": 938,
+ "▁В": 939,
+ "▁He": 940,
+ "ta": 941,
+ "ument": 942,
+ "ors": 943,
+ "lement": 944,
+ "rac": 945,
+ "▁ag": 946,
+ "▁does": 947,
+ "yn": 948,
+ "read": 949,
+ "ual": 950,
+ "▁Le": 951,
+ "ys": 952,
+ "▁em": 953,
+ "▁num": 954,
+ "vel": 955,
+ "ди": 956,
+ "over": 957,
+ "▁dif": 958,
+ "ethod": 959,
+ "▁If": 960,
+ "▁spe": 961,
+ "ym": 962,
+ "▁them": 963,
+ "▁into": 964,
+ "▁▁▁▁▁▁▁▁▁▁": 965,
+ "▁les": 966,
+ "▁its": 967,
+ "ese": 968,
+ "ield": 969,
+ "▁public": 970,
+ "▁П": 971,
+ "▁den": 972,
+ "ystem": 973,
+ "of": 974,
+ "▁over": 975,
+ "->": 976,
+ "▁fil": 977,
+ "name": 978,
+ "inal": 979,
+ "▁il": 980,
+ "ample": 981,
+ "▁way": 982,
+ "ica": 983,
+ "во": 984,
+ "cess": 985,
+ "itt": 986,
+ "uch": 987,
+ "▁where": 988,
+ "ми": 989,
+ "org": 990,
+ "https": 991,
+ "▁vo": 992,
+ "ient": 993,
+ "ove": 994,
+ "▁value": 995,
+ "eng": 996,
+ "▁La": 997,
+ "^{": 998,
+ "ref": 999,
+ "ied": 1000,
+ "ER": 1001,
+ "▁stat": 1002,
+ "fig": 1003,
+ "me": 1004,
+ "▁von": 1005,
+ "▁inter": 1006,
+ "roid": 1007,
+ "ater": 1008,
+ "▁their": 1009,
+ "▁bet": 1010,
+ "▁ein": 1011,
+ "}\\": 1012,
+ "\">": 1013,
+ "▁sub": 1014,
+ "▁op": 1015,
+ "▁don": 1016,
+ "ty": 1017,
+ "▁try": 1018,
+ "▁Pro": 1019,
+ "▁tra": 1020,
+ "▁same": 1021,
+ "ep": 1022,
+ "▁two": 1023,
+ "▁name": 1024,
+ "old": 1025,
+ "let": 1026,
+ "▁sim": 1027,
+ "sp": 1028,
+ "▁av": 1029,
+ "bre": 1030,
+ "blem": 1031,
+ "ey": 1032,
+ "▁could": 1033,
+ "▁cor": 1034,
+ "▁acc": 1035,
+ "ays": 1036,
+ "cre": 1037,
+ "urr": 1038,
+ "si": 1039,
+ "▁const": 1040,
+ "ues": 1041,
+ "}$": 1042,
+ "View": 1043,
+ "▁act": 1044,
+ "▁bo": 1045,
+ "▁ко": 1046,
+ "▁som": 1047,
+ "▁about": 1048,
+ "land": 1049,
+ "mer": 1050,
+ "▁list": 1051,
+ "cal": 1052,
+ "▁import": 1053,
+ "col": 1054,
+ "▁na": 1055,
+ "na": 1056,
+ "::": 1057,
+ "▁who": 1058,
+ "▁error": 1059,
+ "▁X": 1060,
+ "ator": 1061,
+ "ext": 1062,
+ "▁been": 1063,
+ "ér": 1064,
+ "▁run": 1065,
+ "pos": 1066,
+ "▁cl": 1067,
+ "**": 1068,
+ "▁К": 1069,
+ "ular": 1070,
+ "ause": 1071,
+ "▁reg": 1072,
+ "▁know": 1073,
+ "▁see": 1074,
+ "▁him": 1075,
+ "ning": 1076,
+ "▁за": 1077,
+ "ates": 1078,
+ "fore": 1079,
+ "ions": 1080,
+ "▁hel": 1081,
+ "ute": 1082,
+ "▁rem": 1083,
+ "▁го": 1084,
+ "▁Mar": 1085,
+ "ру": 1086,
+ "vice": 1087,
+ "irect": 1088,
+ "ner": 1089,
+ "▁under": 1090,
+ "rib": 1091,
+ "hr": 1092,
+ "че": 1093,
+ "▁As": 1094,
+ "▁end": 1095,
+ "ember": 1096,
+ "▁а": 1097,
+ "▁att": 1098,
+ "ina": 1099,
+ "son": 1100,
+ "▁follow": 1101,
+ "▁Sch": 1102,
+ "pect": 1103,
+ "▁rel": 1104,
+ "▁So": 1105,
+ "▁look": 1106,
+ "abel": 1107,
+ "▁problem": 1108,
+ "▁van": 1109,
+ "strong": 1110,
+ "co": 1111,
+ "pon": 1112,
+ "ca": 1113,
+ "ada": 1114,
+ "\":": 1115,
+ "cond": 1116,
+ "amb": 1117,
+ "},": 1118,
+ "quest": 1119,
+ "▁aut": 1120,
+ "▁result": 1121,
+ "▁may": 1122,
+ "Re": 1123,
+ "http": 1124,
+ "):": 1125,
+ "▁And": 1126,
+ "red": 1127,
+ "▁How": 1128,
+ "po": 1129,
+ "ско": 1130,
+ "att": 1131,
+ "oup": 1132,
+ "ced": 1133,
+ "▁type": 1134,
+ "▁than": 1135,
+ "▁cons": 1136,
+ "uf": 1137,
+ "ци": 1138,
+ "▁question": 1139,
+ "raph": 1140,
+ "igh": 1141,
+ "▁М": 1142,
+ "▁htt": 1143,
+ "ins": 1144,
+ "den": 1145,
+ "▁da": 1146,
+ "▁ver": 1147,
+ "oh": 1148,
+ "▁=>": 1149,
+ "riv": 1150,
+ "ude": 1151,
+ "▁For": 1152,
+ "▁ra": 1153,
+ "frac": 1154,
+ "ма": 1155,
+ "▁after": 1156,
+ "}{": 1157,
+ "▁method": 1158,
+ "\")": 1159,
+ "amp": 1160,
+ "ash": 1161,
+ "▁rec": 1162,
+ "▁differ": 1163,
+ "ON": 1164,
+ "ax": 1165,
+ "ament": 1166,
+ "ource": 1167,
+ "Con": 1168,
+ "its": 1169,
+ "Name": 1170,
+ "man": 1171,
+ "▁bec": 1172,
+ "che": 1173,
+ "▁En": 1174,
+ "aj": 1175,
+ "▁gener": 1176,
+ "IN": 1177,
+ "▁id": 1178,
+ "ages": 1179,
+ "▁loc": 1180,
+ "fo": 1181,
+ "br": 1182,
+ "▁she": 1183,
+ "Pro": 1184,
+ "▁una": 1185,
+ "▁к": 1186,
+ "eta": 1187,
+ "log": 1188,
+ "olog": 1189,
+ "▁sur": 1190,
+ "arg": 1191,
+ "▁--": 1192,
+ "kt": 1193,
+ "(\\": 1194,
+ "min": 1195,
+ "▁line": 1196,
+ "▁vari": 1197,
+ "ся": 1198,
+ "ics": 1199,
+ "ня": 1200,
+ "very": 1201,
+ "add": 1202,
+ "▁object": 1203,
+ "Id": 1204,
+ "▁But": 1205,
+ "▁case": 1206,
+ "▁make": 1207,
+ "▁cal": 1208,
+ "▁pass": 1209,
+ "сь": 1210,
+ "ession": 1211,
+ "net": 1212,
+ ".\"": 1213,
+ "▁г": 1214,
+ "är": 1215,
+ "де": 1216,
+ "no": 1217,
+ "ating": 1218,
+ "ato": 1219,
+ "line": 1220,
+ "ви": 1221,
+ "▁Ex": 1222,
+ "▁ass": 1223,
+ "▁vers": 1224,
+ "ля": 1225,
+ "▁ed": 1226,
+ "umn": 1227,
+ "other": 1228,
+ "ста": 1229,
+ "ative": 1230,
+ "String": 1231,
+ "▁los": 1232,
+ "wn": 1233,
+ "▁answer": 1234,
+ "▁let": 1235,
+ "▁pe": 1236,
+ "ents": 1237,
+ "▁fe": 1238,
+ "ince": 1239,
+ "ni": 1240,
+ "ider": 1241,
+ "ows": 1242,
+ "▁test": 1243,
+ "▁here": 1244,
+ "roll": 1245,
+ "▁call": 1246,
+ "ruct": 1247,
+ "▁pol": 1248,
+ "ait": 1249,
+ "▁back": 1250,
+ "ho": 1251,
+ "Ex": 1252,
+ "ress": 1253,
+ "ST": 1254,
+ "ried": 1255,
+ "date": 1256,
+ "ет": 1257,
+ "▁did": 1258,
+ "ting": 1259,
+ "▁El": 1260,
+ "▁dem": 1261,
+ ")$": 1262,
+ "ова": 1263,
+ "urrent": 1264,
+ "lace": 1265,
+ "right": 1266,
+ "ren": 1267,
+ "по": 1268,
+ "▁each": 1269,
+ "cy": 1270,
+ "block": 1271,
+ "data": 1272,
+ "▁%": 1273,
+ "▁ac": 1274,
+ "▁==": 1275,
+ "ür": 1276,
+ "▁por": 1277,
+ "ask": 1278,
+ "arch": 1279,
+ "ames": 1280,
+ "▁Con": 1281,
+ "ча": 1282,
+ "▁off": 1283,
+ "▁find": 1284,
+ "cont": 1285,
+ "▁now": 1286,
+ "work": 1287,
+ "ational": 1288,
+ "dd": 1289,
+ "ción": 1290,
+ "▁А": 1291,
+ "ault": 1292,
+ "List": 1293,
+ "▁ext": 1294,
+ "urs": 1295,
+ "ake": 1296,
+ "ule": 1297,
+ "▁point": 1298,
+ "AT": 1299,
+ "aut": 1300,
+ "▁trans": 1301,
+ "▁co": 1302,
+ "▁read": 1303,
+ "▁used": 1304,
+ "ски": 1305,
+ "ari": 1306,
+ "LE": 1307,
+ "eter": 1308,
+ "oun": 1309,
+ "ever": 1310,
+ "self": 1311,
+ "ined": 1312,
+ "idth": 1313,
+ "ux": 1314,
+ "js": 1315,
+ "▁such": 1316,
+ "▁Is": 1317,
+ "ée": 1318,
+ "ful": 1319,
+ "▁dist": 1320,
+ "▁bu": 1321,
+ "itemize": 1322,
+ "Cont": 1323,
+ "je": 1324,
+ "си": 1325,
+ "▁prov": 1326,
+ "bb": 1327,
+ "ward": 1328,
+ "esent": 1329,
+ "erson": 1330,
+ "anks": 1331,
+ "wh": 1332,
+ "not": 1333,
+ "▁We": 1334,
+ "ka": 1335,
+ "rop": 1336,
+ "atur": 1337,
+ "als": 1338,
+ "▁bel": 1339,
+ "ör": 1340,
+ "fr": 1341,
+ "▁example": 1342,
+ "▁incl": 1343,
+ "amil": 1344,
+ "▁ра": 1345,
+ "▁“": 1346,
+ "▁string": 1347,
+ "▁think": 1348,
+ "Th": 1349,
+ "▁tem": 1350,
+ "ave": 1351,
+ "▁Fran": 1352,
+ "▁number": 1353,
+ "▁si": 1354,
+ "imes": 1355,
+ "tem": 1356,
+ "my": 1357,
+ "ler": 1358,
+ "load": 1359,
+ "==": 1360,
+ "▁hand": 1361,
+ "za": 1362,
+ "▁because": 1363,
+ "▁sch": 1364,
+ "vo": 1365,
+ "this": 1366,
+ "ID": 1367,
+ "ão": 1368,
+ "▁start": 1369,
+ "▁war": 1370,
+ "▁help": 1371,
+ "ts": 1372,
+ "▁char": 1373,
+ "▁ph": 1374,
+ "▁min": 1375,
+ "til": 1376,
+ "rite": 1377,
+ "--------": 1378,
+ "els": 1379,
+ "▁mit": 1380,
+ "edia": 1381,
+ "ку": 1382,
+ "▁Sh": 1383,
+ "any": 1384,
+ "];": 1385,
+ "▁Б": 1386,
+ "ique": 1387,
+ "da": 1388,
+ "ef": 1389,
+ "dex": 1390,
+ "▁produ": 1391,
+ "▁Н": 1392,
+ "gram": 1393,
+ "▁Or": 1394,
+ "▁gre": 1395,
+ "quote": 1396,
+ "leg": 1397,
+ "orn": 1398,
+ "▁ind": 1399,
+ "▁post": 1400,
+ "▁dep": 1401,
+ "],": 1402,
+ "vi": 1403,
+ "▁user": 1404,
+ "▁>": 1405,
+ "lick": 1406,
+ "▁very": 1407,
+ "ething": 1408,
+ "▁array": 1409,
+ "▁gu": 1410,
+ "▁dur": 1411,
+ "`.": 1412,
+ "ть": 1413,
+ "lication": 1414,
+ "сти": 1415,
+ "ek": 1416,
+ "ico": 1417,
+ "▁dat": 1418,
+ "ор": 1419,
+ "html": 1420,
+ "ione": 1421,
+ "▁different": 1422,
+ "▁check": 1423,
+ "▁fr": 1424,
+ "▁Er": 1425,
+ "▁text": 1426,
+ "ні": 1427,
+ "icht": 1428,
+ "stack": 1429,
+ "EN": 1430,
+ "rag": 1431,
+ "▁every": 1432,
+ "Ar": 1433,
+ "▁before": 1434,
+ "alse": 1435,
+ "▁fin": 1436,
+ "▁dé": 1437,
+ "▁these": 1438,
+ "▁det": 1439,
+ "Val": 1440,
+ "ception": 1441,
+ "▁android": 1442,
+ "blockquote": 1443,
+ "▁je": 1444,
+ "file": 1445,
+ "ats": 1446,
+ "▁до": 1447,
+ "essage": 1448,
+ "▁again": 1449,
+ "aw": 1450,
+ "Ch": 1451,
+ "ween": 1452,
+ "▁Д": 1453,
+ "for": 1454,
+ "cial": 1455,
+ "play": 1456,
+ "pre": 1457,
+ "ida": 1458,
+ "▁Par": 1459,
+ "ny": 1460,
+ "ract": 1461,
+ "▁supp": 1462,
+ "ased": 1463,
+ "lection": 1464,
+ "▁dans": 1465,
+ "air": 1466,
+ "rol": 1467,
+ "▁thr": 1468,
+ "Data": 1469,
+ "lich": 1470,
+ "▁про": 1471,
+ "▁long": 1472,
+ "▁second": 1473,
+ "ually": 1474,
+ "ines": 1475,
+ "▁found": 1476,
+ "ength": 1477,
+ "yp": 1478,
+ "ead": 1479,
+ "▁log": 1480,
+ "ui": 1481,
+ "new": 1482,
+ "▁Р": 1483,
+ "go": 1484,
+ "aus": 1485,
+ "ody": 1486,
+ "▁son": 1487,
+ "ме": 1488,
+ "ero": 1489,
+ "ved": 1490,
+ "sub": 1491,
+ "▁right": 1492,
+ "view": 1493,
+ "▁following": 1494,
+ "')": 1495,
+ "\");": 1496,
+ "▁said": 1497,
+ "же": 1498,
+ "чи": 1499,
+ "ту": 1500,
+ "ott": 1501,
+ "се": 1502,
+ "ars": 1503,
+ "$.": 1504,
+ "gg": 1505,
+ "▁br": 1506,
+ "ool": 1507,
+ "yle": 1508,
+ "use": 1509,
+ "▁show": 1510,
+ "lease": 1511,
+ "cia": 1512,
+ "▁direct": 1513,
+ "doc": 1514,
+ "ар": 1515,
+ "ms": 1516,
+ "▁giv": 1517,
+ "▁exp": 1518,
+ "ql": 1519,
+ "ду": 1520,
+ "ве": 1521,
+ "▁Be": 1522,
+ "Com": 1523,
+ "iter": 1524,
+ "RE": 1525,
+ "mp": 1526,
+ "men": 1527,
+ "▁Ro": 1528,
+ "MA": 1529,
+ "▁Col": 1530,
+ "ister": 1531,
+ "▁well": 1532,
+ "▁": 1533,
+ "ayout": 1534,
+ "ature": 1535,
+ "ivers": 1536,
+ "zy": 1537,
+ "▁не": 1538,
+ "▁met": 1539,
+ "une": 1540,
+ "yth": 1541,
+ "Type": 1542,
+ "▁element": 1543,
+ "▁link": 1544,
+ "mod": 1545,
+ "▁between": 1546,
+ "cept": 1547,
+ "quire": 1548,
+ "▁through": 1549,
+ "▁while": 1550,
+ "▁On": 1551,
+ "the": 1552,
+ "ía": 1553,
+ "▁something": 1554,
+ "vol": 1555,
+ "▁most": 1556,
+ "sc": 1557,
+ "uss": 1558,
+ "▁car": 1559,
+ "▁sm": 1560,
+ "▁ро": 1561,
+ "ano": 1562,
+ "left": 1563,
+ "va": 1564,
+ "▁true": 1565,
+ "($": 1566,
+ "ems": 1567,
+ "▁much": 1568,
+ "ás": 1569,
+ "▁New": 1570,
+ "▁proper": 1571,
+ "era": 1572,
+ "ited": 1573,
+ "▁doc": 1574,
+ "ices": 1575,
+ "The": 1576,
+ "▁?": 1577,
+ "сто": 1578,
+ "fl": 1579,
+ "▁spec": 1580,
+ "ender": 1581,
+ "way": 1582,
+ "▁self": 1583,
+ "▁even": 1584,
+ "ів": 1585,
+ "▁се": 1586,
+ "ния": 1587,
+ "▁Pr": 1588,
+ "▁ke": 1589,
+ "emb": 1590,
+ "▁table": 1591,
+ "▁equ": 1592,
+ "lient": 1593,
+ "td": 1594,
+ "part": 1595,
+ "▁print": 1596,
+ "▁une": 1597,
+ "ify": 1598,
+ "▁->": 1599,
+ "ene": 1600,
+ "▁mon": 1601,
+ "▁dec": 1602,
+ "▁still": 1603,
+ "▁об": 1604,
+ "▁Tr": 1605,
+ "▁ф": 1606,
+ "ife": 1607,
+ "ism": 1608,
+ "by": 1609,
+ "raw": 1610,
+ "ior": 1611,
+ "▁med": 1612,
+ "orld": 1613,
+ "▁comple": 1614,
+ "ww": 1615,
+ "▁art": 1616,
+ "ron": 1617,
+ "▁Г": 1618,
+ "▁My": 1619,
+ "▁als": 1620,
+ "rect": 1621,
+ "▁auf": 1622,
+ "▁down": 1623,
+ "ather": 1624,
+ "Col": 1625,
+ "Text": 1626,
+ "back": 1627,
+ "$,": 1628,
+ "▁year": 1629,
+ "мо": 1630,
+ "pi": 1631,
+ "▁Gr": 1632,
+ "ream": 1633,
+ "▁rep": 1634,
+ "bf": 1635,
+ "www": 1636,
+ "▁wur": 1637,
+ "▁org": 1638,
+ "inter": 1639,
+ "▁Die": 1640,
+ "▁being": 1641,
+ "\".": 1642,
+ "label": 1643,
+ "▁cent": 1644,
+ "java": 1645,
+ "bar": 1646,
+ "ante": 1647,
+ "ana": 1648,
+ "__": 1649,
+ "▁solution": 1650,
+ "▁О": 1651,
+ "▁fl": 1652,
+ "▁create": 1653,
+ "ici": 1654,
+ "ste": 1655,
+ "ython": 1656,
+ "unt": 1657,
+ "ason": 1658,
+ "ference": 1659,
+ "SE": 1660,
+ "▁non": 1661,
+ "ane": 1662,
+ "▁ins": 1663,
+ "ader": 1664,
+ "_{\\": 1665,
+ "Res": 1666,
+ "▁main": 1667,
+ "пи": 1668,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 1669,
+ "▁There": 1670,
+ "▁pour": 1671,
+ "RO": 1672,
+ "`,": 1673,
+ "lish": 1674,
+ "bject": 1675,
+ "ccess": 1676,
+ "▁orig": 1677,
+ "▁▁▁": 1678,
+ "ischen": 1679,
+ "ower": 1680,
+ "▁het": 1681,
+ "uc": 1682,
+ "▁else": 1683,
+ "».": 1684,
+ "▁от": 1685,
+ "equ": 1686,
+ "sible": 1687,
+ "test": 1688,
+ "stand": 1689,
+ "én": 1690,
+ "ets": 1691,
+ "GE": 1692,
+ "ident": 1693,
+ "▁е": 1694,
+ "▁при": 1695,
+ ".,": 1696,
+ "▁das": 1697,
+ "ock": 1698,
+ ",\"": 1699,
+ "▁vol": 1700,
+ "▁fo": 1701,
+ "▁para": 1702,
+ "▁Т": 1703,
+ "▁Car": 1704,
+ "ral": 1705,
+ "▁Sp": 1706,
+ "var": 1707,
+ "▁play": 1708,
+ "ouse": 1709,
+ "▁та": 1710,
+ "ically": 1711,
+ "▁contain": 1712,
+ "ponse": 1713,
+ "▁String": 1714,
+ "án": 1715,
+ "▁both": 1716,
+ "ken": 1717,
+ "AR": 1718,
+ "ере": 1719,
+ "▁Il": 1720,
+ "▁iss": 1721,
+ "▁open": 1722,
+ "▁)": 1723,
+ "▁What": 1724,
+ "fe": 1725,
+ "rivate": 1726,
+ "reg": 1727,
+ "▁without": 1728,
+ "▁zu": 1729,
+ "vis": 1730,
+ "flow": 1731,
+ "▁http": 1732,
+ "abase": 1733,
+ "▁word": 1734,
+ "▁change": 1735,
+ "▁works": 1736,
+ "▁ge": 1737,
+ "▁!": 1738,
+ "▁een": 1739,
+ "itle": 1740,
+ "▁event": 1741,
+ "word": 1742,
+ "ando": 1743,
+ "SB": 1744,
+ "rem": 1745,
+ "▁field": 1746,
+ "ving": 1747,
+ "Ser": 1748,
+ "▁our": 1749,
+ "▁qui": 1750,
+ "▁oper": 1751,
+ "▁ist": 1752,
+ "def": 1753,
+ "▁made": 1754,
+ "ние": 1755,
+ "px": 1756,
+ "▁men": 1757,
+ "rm": 1758,
+ "ais": 1759,
+ "cent": 1760,
+ "list": 1761,
+ "To": 1762,
+ "▁To": 1763,
+ "ja": 1764,
+ "vert": 1765,
+ "▁mar": 1766,
+ "value": 1767,
+ "▁„": 1768,
+ "\";": 1769,
+ "▁aus": 1770,
+ "▁Br": 1771,
+ "ole": 1772,
+ "▁mult": 1773,
+ "ought": 1774,
+ "▁mat": 1775,
+ "▁view": 1776,
+ "fil": 1777,
+ "▁со": 1778,
+ "га": 1779,
+ "▁void": 1780,
+ "▁good": 1781,
+ "бо": 1782,
+ "CT": 1783,
+ "▁many": 1784,
+ "ben": 1785,
+ "▁во": 1786,
+ "▁ка": 1787,
+ "▁system": 1788,
+ "ino": 1789,
+ "▁another": 1790,
+ "▁rest": 1791,
+ "user": 1792,
+ "ility": 1793,
+ "ai": 1794,
+ "▁might": 1795,
+ "ustom": 1796,
+ "▁order": 1797,
+ "▁Ver": 1798,
+ "SS": 1799,
+ "})": 1800,
+ "▁eff": 1801,
+ "до": 1802,
+ "ett": 1803,
+ "▁sign": 1804,
+ "му": 1805,
+ "IT": 1806,
+ "string": 1807,
+ "elle": 1808,
+ "▁sing": 1809,
+ "cul": 1810,
+ "▁trying": 1811,
+ "▁beg": 1812,
+ "▁page": 1813,
+ "хо": 1814,
+ "▁Can": 1815,
+ "▁Ser": 1816,
+ "++": 1817,
+ "▁must": 1818,
+ "▁values": 1819,
+ "▁key": 1820,
+ "ible": 1821,
+ "].": 1822,
+ "ird": 1823,
+ "▁program": 1824,
+ "roller": 1825,
+ "▁conne": 1826,
+ "▁say": 1827,
+ "▁param": 1828,
+ "ache": 1829,
+ "velop": 1830,
+ "▁select": 1831,
+ "▁famil": 1832,
+ "▁last": 1833,
+ "▁Thanks": 1834,
+ "▁pop": 1835,
+ "}.": 1836,
+ "eq": 1837,
+ "▁doesn": 1838,
+ "['": 1839,
+ "▁term": 1840,
+ "▁ré": 1841,
+ "▁document": 1842,
+ "па": 1843,
+ "лу": 1844,
+ "ateg": 1845,
+ ".)": 1846,
+ "ling": 1847,
+ "ional": 1848,
+ "ables": 1849,
+ "▁tak": 1850,
+ "utton": 1851,
+ "▁arg": 1852,
+ "type": 1853,
+ "▁sure": 1854,
+ "▁real": 1855,
+ "▁web": 1856,
+ "▁current": 1857,
+ "▁Pl": 1858,
+ "cho": 1859,
+ "ments": 1860,
+ "▁Joh": 1861,
+ "ots": 1862,
+ "▁exist": 1863,
+ "ну": 1864,
+ "▁für": 1865,
+ "▁из": 1866,
+ "do": 1867,
+ "ного": 1868,
+ "▁las": 1869,
+ "▁null": 1870,
+ "▁inform": 1871,
+ "▁Л": 1872,
+ "▁version": 1873,
+ "▁chang": 1874,
+ "ager": 1875,
+ "▁Comm": 1876,
+ "лі": 1877,
+ "ush": 1878,
+ "▁Ge": 1879,
+ "▁high": 1880,
+ "▁input": 1881,
+ "ogle": 1882,
+ "ros": 1883,
+ "box": 1884,
+ "gen": 1885,
+ "▁ste": 1886,
+ "▁local": 1887,
+ "Im": 1888,
+ "▁process": 1889,
+ "ternal": 1890,
+ "ized": 1891,
+ "ги": 1892,
+ "ét": 1893,
+ "▁Ind": 1894,
+ "▁och": 1895,
+ "lt": 1896,
+ "▁column": 1897,
+ "▁tried": 1898,
+ "▁command": 1899,
+ "▁best": 1900,
+ "aster": 1901,
+ "за": 1902,
+ "▁prim": 1903,
+ "▁model": 1904,
+ "▁і": 1905,
+ "▁those": 1906,
+ "ities": 1907,
+ "ère": 1908,
+ "▁ре": 1909,
+ "је": 1910,
+ "ши": 1911,
+ "ques": 1912,
+ "▁Am": 1913,
+ "▁own": 1914,
+ "lin": 1915,
+ "зи": 1916,
+ "Value": 1917,
+ "thing": 1918,
+ "▁,": 1919,
+ "▁Te": 1920,
+ "▁stud": 1921,
+ "▁um": 1922,
+ "▁server": 1923,
+ "ille": 1924,
+ "▁put": 1925,
+ "ativ": 1926,
+ "gy": 1927,
+ "ови": 1928,
+ "raf": 1929,
+ "ово": 1930,
+ "▁wurde": 1931,
+ "▁When": 1932,
+ "▁div": 1933,
+ "ants": 1934,
+ "▁ter": 1935,
+ "▁partic": 1936,
+ "▁т": 1937,
+ "▁Do": 1938,
+ "▁No": 1939,
+ "sert": 1940,
+ "ido": 1941,
+ "mathcal": 1942,
+ "ade": 1943,
+ "▁II": 1944,
+ "lear": 1945,
+ "ograph": 1946,
+ "ense": 1947,
+ "▁row": 1948,
+ "num": 1949,
+ "▁possible": 1950,
+ "▁since": 1951,
+ "▁Bo": 1952,
+ "ctions": 1953,
+ "▁Im": 1954,
+ "OR": 1955,
+ "ці": 1956,
+ "▁ide": 1957,
+ "map": 1958,
+ "▁correct": 1959,
+ "ves": 1960,
+ "php": 1961,
+ "▁output": 1962,
+ "▁Ph": 1963,
+ "AL": 1964,
+ "ared": 1965,
+ "\\\\": 1966,
+ "▁image": 1967,
+ "esch": 1968,
+ "жи": 1969,
+ "▁conf": 1970,
+ "por": 1971,
+ "query": 1972,
+ "ures": 1973,
+ "ium": 1974,
+ "ends": 1975,
+ "▁Ab": 1976,
+ "SBN": 1977,
+ "ід": 1978,
+ "ether": 1979,
+ "ptions": 1980,
+ "itu": 1981,
+ "lib": 1982,
+ "ns": 1983,
+ "ki": 1984,
+ "▁working": 1985,
+ "▁como": 1986,
+ "▁Then": 1987,
+ "ML": 1988,
+ "key": 1989,
+ "class": 1990,
+ "ople": 1991,
+ "ittle": 1992,
+ "▁match": 1993,
+ "ways": 1994,
+ "mathbb": 1995,
+ "▁require": 1996,
+ "alt": 1997,
+ "▁vis": 1998,
+ "▁bl": 1999,
+ "▁called": 2000,
+ "Item": 2001,
+ "ura": 2002,
+ "vec": 2003,
+ "eme": 2004,
+ "▁della": 2005,
+ "embre": 2006,
+ "urg": 2007,
+ "Se": 2008,
+ "▁request": 2009,
+ "ische": 2010,
+ "▁port": 2011,
+ "▁instead": 2012,
+ "=\\": 2013,
+ "▁У": 2014,
+ "hor": 2015,
+ "ente": 2016,
+ "ume": 2017,
+ "erd": 2018,
+ "са": 2019,
+ "▁why": 2020,
+ "rist": 2021,
+ "▁person": 2022,
+ "▁...": 2023,
+ "▁private": 2024,
+ "▁tot": 2025,
+ "pha": 2026,
+ "ift": 2027,
+ "ita": 2028,
+ "loc": 2029,
+ "▁old": 2030,
+ "он": 2031,
+ "▁nel": 2032,
+ "']": 2033,
+ "ti": 2034,
+ "iet": 2035,
+ "cite": 2036,
+ "plement": 2037,
+ "▁above": 2038,
+ "ks": 2039,
+ "ready": 2040,
+ "▁come": 2041,
+ "section": 2042,
+ "▁Pol": 2043,
+ "▁writ": 2044,
+ "▁https": 2045,
+ "▁$$": 2046,
+ "▁»": 2047,
+ "▁build": 2048,
+ "ito": 2049,
+ "▁consider": 2050,
+ "aft": 2051,
+ "App": 2052,
+ ",\\": 2053,
+ "indows": 2054,
+ "comm": 2055,
+ "▁;": 2056,
+ "ground": 2057,
+ "▁place": 2058,
+ "By": 2059,
+ "▁project": 2060,
+ "Object": 2061,
+ "▁repr": 2062,
+ "ences": 2063,
+ "indow": 2064,
+ "zt": 2065,
+ "▁files": 2066,
+ "cz": 2067,
+ "ivity": 2068,
+ "▁init": 2069,
+ "▁prob": 2070,
+ "▁sk": 2071,
+ "orth": 2072,
+ "iment": 2073,
+ "ouble": 2074,
+ "atal": 2075,
+ "irc": 2076,
+ "▁è": 2077,
+ "▁bre": 2078,
+ "ista": 2079,
+ "input": 2080,
+ "▁И": 2081,
+ "ной": 2082,
+ "sum": 2083,
+ "path": 2084,
+ "▁cour": 2085,
+ "▁too": 2086,
+ "▁Ad": 2087,
+ "▁Gu": 2088,
+ "▁false": 2089,
+ "▁fun": 2090,
+ "▁ст": 2091,
+ "ood": 2092,
+ "ès": 2093,
+ "▁enc": 2094,
+ "bol": 2095,
+ "rl": 2096,
+ "arget": 2097,
+ "order": 2098,
+ "▁mean": 2099,
+ "пе": 2100,
+ "igen": 2101,
+ "▁пре": 2102,
+ "width": 2103,
+ ";\r": 2104,
+ "itor": 2105,
+ "▁state": 2106,
+ "▁great": 2107,
+ "enn": 2108,
+ "bin": 2109,
+ "Er": 2110,
+ "Mod": 2111,
+ "oz": 2112,
+ "▁won": 2113,
+ "▁fact": 2114,
+ "▁java": 2115,
+ "▁Univers": 2116,
+ "▁cap": 2117,
+ "istor": 2118,
+ "}(": 2119,
+ "ku": 2120,
+ "ither": 2121,
+ "ales": 2122,
+ "▁ou": 2123,
+ "ross": 2124,
+ "▁take": 2125,
+ "rix": 2126,
+ "lob": 2127,
+ "▁eine": 2128,
+ "ases": 2129,
+ "▁access": 2130,
+ "ité": 2131,
+ "istr": 2132,
+ "ization": 2133,
+ "▁appro": 2134,
+ "ball": 2135,
+ "▁mak": 2136,
+ "}^": 2137,
+ "▁Cons": 2138,
+ "press": 2139,
+ "serv": 2140,
+ "().": 2141,
+ "af": 2142,
+ "▁ref": 2143,
+ ")\\": 2144,
+ "▁contin": 2145,
+ "su": 2146,
+ "iver": 2147,
+ "▁cond": 2148,
+ "▁expect": 2149,
+ "▁charact": 2150,
+ "bert": 2151,
+ "elt": 2152,
+ "ters": 2153,
+ "script": 2154,
+ "▁Ed": 2155,
+ "apt": 2156,
+ "');": 2157,
+ "print": 2158,
+ "▁size": 2159,
+ "▁sich": 2160,
+ "face": 2161,
+ "enden": 2162,
+ "▁Amer": 2163,
+ "ified": 2164,
+ "ów": 2165,
+ "▁Su": 2166,
+ "tes": 2167,
+ "med": 2168,
+ "▁Reg": 2169,
+ "sole": 2170,
+ "▁includ": 2171,
+ "ini": 2172,
+ "inci": 2173,
+ "▁pla": 2174,
+ "▁left": 2175,
+ "df": 2176,
+ "Par": 2177,
+ "▁All": 2178,
+ "▁occ": 2179,
+ "▁At": 2180,
+ "▁cr": 2181,
+ "Qu": 2182,
+ "▁given": 2183,
+ "▁System": 2184,
+ "ican": 2185,
+ "▁final": 2186,
+ "itions": 2187,
+ "▁бы": 2188,
+ "▁perform": 2189,
+ "AN": 2190,
+ "▁Me": 2191,
+ "uro": 2192,
+ "▁That": 2193,
+ "гра": 2194,
+ "▁По": 2195,
+ "▁ви": 2196,
+ "ably": 2197,
+ "▁present": 2198,
+ "duct": 2199,
+ "ric": 2200,
+ "▁Eng": 2201,
+ "try": 2202,
+ "▁lar": 2203,
+ "bl": 2204,
+ "idd": 2205,
+ "▁är": 2206,
+ "ora": 2207,
+ "LL": 2208,
+ "oss": 2209,
+ "▁ISBN": 2210,
+ "▁three": 2211,
+ "jo": 2212,
+ "ní": 2213,
+ "rc": 2214,
+ "▁far": 2215,
+ "▁Not": 2216,
+ "▁little": 2217,
+ "dis": 2218,
+ "ati": 2219,
+ "function": 2220,
+ "▁able": 2221,
+ "less": 2222,
+ "со": 2223,
+ "▁path": 2224,
+ "▁pres": 2225,
+ "lose": 2226,
+ "PI": 2227,
+ "▁issue": 2228,
+ "ackage": 2229,
+ "time": 2230,
+ "ige": 2231,
+ "ams": 2232,
+ "▁Cl": 2233,
+ "ails": 2234,
+ "alk": 2235,
+ "ii": 2236,
+ "ше": 2237,
+ "pen": 2238,
+ "QL": 2239,
+ "▁eas": 2240,
+ "RL": 2241,
+ "cel": 2242,
+ "▁sl": 2243,
+ "▁ask": 2244,
+ "▁nom": 2245,
+ "▁top": 2246,
+ "ides": 2247,
+ "index": 2248,
+ "ém": 2249,
+ "▁happ": 2250,
+ "ox": 2251,
+ "cd": 2252,
+ "▁better": 2253,
+ "▁load": 2254,
+ "ados": 2255,
+ "zen": 2256,
+ "▁ce": 2257,
+ "▁fa": 2258,
+ "▁John": 2259,
+ "IMA": 2260,
+ "▁Bar": 2261,
+ "overflow": 2262,
+ "▁де": 2263,
+ "ness": 2264,
+ "cer": 2265,
+ "▁Here": 2266,
+ "ret": 2267,
+ "▁sz": 2268,
+ "ambda": 2269,
+ "opy": 2270,
+ "url": 2271,
+ "py": 2272,
+ "rt": 2273,
+ "▁understand": 2274,
+ "ał": 2275,
+ "her": 2276,
+ "##": 2277,
+ "▁child": 2278,
+ "▁exec": 2279,
+ "▁application": 2280,
+ "▁struct": 2281,
+ "▁я": 2282,
+ "File": 2283,
+ "▁cert": 2284,
+ "ison": 2285,
+ "▁variable": 2286,
+ "DE": 2287,
+ "rs": 2288,
+ "▁really": 2289,
+ "Port": 2290,
+ "ba": 2291,
+ "▁Ber": 2292,
+ "▁inte": 2293,
+ "▁static": 2294,
+ "▁config": 2295,
+ "▁She": 2296,
+ "estions": 2297,
+ "▁plus": 2298,
+ "▁hab": 2299,
+ "ope": 2300,
+ "▁mus": 2301,
+ "▁count": 2302,
+ "ME": 2303,
+ "▁support": 2304,
+ "▁people": 2305,
+ "▁beh": 2306,
+ "▁already": 2307,
+ "Tr": 2308,
+ "▁done": 2309,
+ "dem": 2310,
+ "size": 2311,
+ "alpha": 2312,
+ "▁disc": 2313,
+ "])": 2314,
+ "▁Man": 2315,
+ "▁mil": 2316,
+ "▁stand": 2317,
+ "▁group": 2318,
+ "▁small": 2319,
+ "▁mag": 2320,
+ "сть": 2321,
+ "▁default": 2322,
+ "▁single": 2323,
+ "link": 2324,
+ "clude": 2325,
+ "▁ear": 2326,
+ "ilar": 2327,
+ "****": 2328,
+ "▁fix": 2329,
+ "ley": 2330,
+ "▁pas": 2331,
+ "ний": 2332,
+ "ission": 2333,
+ "▁implement": 2334,
+ "itch": 2335,
+ "▁года": 2336,
+ "▁always": 2337,
+ "▁Jah": 2338,
+ "pring": 2339,
+ "ção": 2340,
+ "plate": 2341,
+ "▁descri": 2342,
+ "▁head": 2343,
+ "init": 2344,
+ "ograf": 2345,
+ "▁query": 2346,
+ "ived": 2347,
+ "▁ing": 2348,
+ "pty": 2349,
+ "ha": 2350,
+ "▁mov": 2351,
+ "▁э": 2352,
+ "ette": 2353,
+ "ily": 2354,
+ "▁got": 2355,
+ "iled": 2356,
+ "icro": 2357,
+ "▁wr": 2358,
+ "ря": 2359,
+ "▁never": 2360,
+ "ores": 2361,
+ "▁bas": 2362,
+ "ios": 2363,
+ "lack": 2364,
+ "aint": 2365,
+ "vious": 2366,
+ "▁give": 2367,
+ "idad": 2368,
+ "En": 2369,
+ "ный": 2370,
+ "table": 2371,
+ "▁На": 2372,
+ "▁pat": 2373,
+ "тор": 2374,
+ "angu": 2375,
+ "loy": 2376,
+ "▁seg": 2377,
+ "array": 2378,
+ "▁Fl": 2379,
+ "▁index": 2380,
+ "▁sw": 2381,
+ "IMAGE": 2382,
+ "▁km": 2383,
+ "би": 2384,
+ "Class": 2385,
+ "ena": 2386,
+ "мен": 2387,
+ "comp": 2388,
+ "atus": 2389,
+ "rap": 2390,
+ "▁List": 2391,
+ "Error": 2392,
+ "▁typ": 2393,
+ "▁ма": 2394,
+ "cs": 2395,
+ "':": 2396,
+ "ji": 2397,
+ "▁However": 2398,
+ "▁те": 2399,
+ "▁below": 2400,
+ "▁App": 2401,
+ "ще": 2402,
+ "}_": 2403,
+ "bum": 2404,
+ "vir": 2405,
+ "ées": 2406,
+ "▁record": 2407,
+ "tain": 2408,
+ "lem": 2409,
+ "ital": 2410,
+ "▁imp": 2411,
+ "ego": 2412,
+ "▁od": 2413,
+ "▁rece": 2414,
+ "mit": 2415,
+ "ffic": 2416,
+ "stackoverflow": 2417,
+ "ieve": 2418,
+ "▁З": 2419,
+ "▁nov": 2420,
+ "це": 2421,
+ "▁Intern": 2422,
+ "bu": 2423,
+ "▁sugg": 2424,
+ "▁loop": 2425,
+ "ride": 2426,
+ "▁$(": 2427,
+ "▁super": 2428,
+ "rid": 2429,
+ "ных": 2430,
+ "▁Per": 2431,
+ "▁dom": 2432,
+ "='": 2433,
+ "utsch": 2434,
+ "len": 2435,
+ "▁write": 2436,
+ "▁inv": 2437,
+ "outh": 2438,
+ "▁Her": 2439,
+ "▁years": 2440,
+ "▁original": 2441,
+ "ega": 2442,
+ "▁Ste": 2443,
+ "▁seems": 2444,
+ "ég": 2445,
+ "▁next": 2446,
+ "eder": 2447,
+ "▁Ne": 2448,
+ "avas": 2449,
+ "ification": 2450,
+ "Exception": 2451,
+ "▁Der": 2452,
+ "▁ve": 2453,
+ "atic": 2454,
+ "hat": 2455,
+ "brary": 2456,
+ "return": 2457,
+ "urch": 2458,
+ "ision": 2459,
+ "mi": 2460,
+ "oint": 2461,
+ "▁day": 2462,
+ "iction": 2463,
+ "ál": 2464,
+ "▁és": 2465,
+ "▁though": 2466,
+ "action": 2467,
+ "ít": 2468,
+ "ungen": 2469,
+ "ours": 2470,
+ "▁script": 2471,
+ "▁information": 2472,
+ "▁multi": 2473,
+ "▁\\\\": 2474,
+ "ster": 2475,
+ "ке": 2476,
+ "AC": 2477,
+ "cies": 2478,
+ "▁display": 2479,
+ "oman": 2480,
+ "Time": 2481,
+ "ius": 2482,
+ "));": 2483,
+ "tre": 2484,
+ "▁lim": 2485,
+ "ately": 2486,
+ "éd": 2487,
+ "iste": 2488,
+ "▁са": 2489,
+ "post": 2490,
+ "uel": 2491,
+ "img": 2492,
+ "▁ч": 2493,
+ "ска": 2494,
+ "eld": 2495,
+ "pper": 2496,
+ "ula": 2497,
+ "▁general": 2498,
+ "Al": 2499,
+ "Form": 2500,
+ "▁upon": 2501,
+ "zo": 2502,
+ "amente": 2503,
+ "▁prom": 2504,
+ "▁ü": 2505,
+ "lex": 2506,
+ "▁turn": 2507,
+ "▁ме": 2508,
+ "ention": 2509,
+ "лен": 2510,
+ "▁af": 2511,
+ "icle": 2512,
+ "ств": 2513,
+ "▁Fil": 2514,
+ "▁Ф": 2515,
+ "avascript": 2516,
+ "Man": 2517,
+ "ara": 2518,
+ "ware": 2519,
+ "align": 2520,
+ "angle": 2521,
+ "▁Sc": 2522,
+ "unic": 2523,
+ "▁fran": 2524,
+ "Un": 2525,
+ "zi": 2526,
+ "met": 2527,
+ "Add": 2528,
+ "▁pub": 2529,
+ "ков": 2530,
+ "▁gen": 2531,
+ "▁pod": 2532,
+ "▁sum": 2533,
+ "▁having": 2534,
+ "▁avec": 2535,
+ "sl": 2536,
+ "▁fig": 2537,
+ "▁Res": 2538,
+ "Date": 2539,
+ "ules": 2540,
+ "with": 2541,
+ "ский": 2542,
+ "gu": 2543,
+ "ET": 2544,
+ "▁bro": 2545,
+ "rie": 2546,
+ "aps": 2547,
+ "ending": 2548,
+ "mail": 2549,
+ "ook": 2550,
+ "▁success": 2551,
+ "berg": 2552,
+ "▁deb": 2553,
+ "elta": 2554,
+ "()`": 2555,
+ "ential": 2556,
+ "frame": 2557,
+ "Key": 2558,
+ "inn": 2559,
+ "▁simple": 2560,
+ "ival": 2561,
+ "▁care": 2562,
+ "▁Web": 2563,
+ "\").": 2564,
+ ">": 2565,
+ "▁database": 2566,
+ "▁Now": 2567,
+ "Ind": 2568,
+ "▁мо": 2569,
+ "cht": 2570,
+ "ban": 2571,
+ "ram": 2572,
+ "equation": 2573,
+ "ski": 2574,
+ "ief": 2575,
+ "lim": 2576,
+ "Get": 2577,
+ "▁tre": 2578,
+ "aten": 2579,
+ "bed": 2580,
+ "▁Je": 2581,
+ "▁results": 2582,
+ "лю": 2583,
+ "тель": 2584,
+ "db": 2585,
+ "▁bit": 2586,
+ "body": 2587,
+ "Array": 2588,
+ "mu": 2589,
+ "pression": 2590,
+ "▁ста": 2591,
+ "ony": 2592,
+ "iff": 2593,
+ "▁bar": 2594,
+ "▁Arch": 2595,
+ "bers": 2596,
+ "){": 2597,
+ "▁Mon": 2598,
+ "▁doing": 2599,
+ "▁prof": 2600,
+ "▁install": 2601,
+ "▁position": 2602,
+ "ema": 2603,
+ "▁});": 2604,
+ "Path": 2605,
+ "ali": 2606,
+ "▁&&": 2607,
+ "lev": 2608,
+ "▁cannot": 2609,
+ "▁May": 2610,
+ "inst": 2611,
+ "-\\": 2612,
+ "▁coun": 2613,
+ "▁ang": 2614,
+ "▁appear": 2615,
+ "cor": 2616,
+ "ció": 2617,
+ "ided": 2618,
+ "questions": 2619,
+ "atter": 2620,
+ "▁Pa": 2621,
+ "select": 2622,
+ "▁princi": 2623,
+ "Event": 2624,
+ "▁side": 2625,
+ "▁mem": 2626,
+ "▁Jan": 2627,
+ "ario": 2628,
+ "▁within": 2629,
+ "▁Val": 2630,
+ "odes": 2631,
+ "iddle": 2632,
+ "uration": 2633,
+ "bra": 2634,
+ "▁date": 2635,
+ "[]": 2636,
+ "▁entre": 2637,
+ "ili": 2638,
+ "Portail": 2639,
+ "docs": 2640,
+ "ской": 2641,
+ "Element": 2642,
+ "▁message": 2643,
+ "▁nach": 2644,
+ "▁during": 2645,
+ "▁gra": 2646,
+ "etwork": 2647,
+ "▁By": 2648,
+ "▁tell": 2649,
+ "ete": 2650,
+ "~\\": 2651,
+ "▁bis": 2652,
+ "▁pu": 2653,
+ "▁red": 2654,
+ "▁thing": 2655,
+ "▁sort": 2656,
+ "xim": 2657,
+ "ires": 2658,
+ "User": 2659,
+ "iod": 2660,
+ "▁Est": 2661,
+ "osed": 2662,
+ "oute": 2663,
+ "▁Les": 2664,
+ "▁sent": 2665,
+ "ribute": 2666,
+ "utes": 2667,
+ "istory": 2668,
+ "▁service": 2669,
+ "';": 2670,
+ "field": 2671,
+ "▁IN": 2672,
+ "ension": 2673,
+ "rel": 2674,
+ "▁going": 2675,
+ "web": 2676,
+ "Context": 2677,
+ "▁later": 2678,
+ "uk": 2679,
+ "layout": 2680,
+ "ona": 2681,
+ "át": 2682,
+ "----------------": 2683,
+ "▁exact": 2684,
+ "andom": 2685,
+ "▁sie": 2686,
+ "II": 2687,
+ "▁They": 2688,
+ "mente": 2689,
+ "ibli": 2690,
+ "▁fine": 2691,
+ "UT": 2692,
+ "▁develop": 2693,
+ "▁Ein": 2694,
+ "soft": 2695,
+ "off": 2696,
+ "Set": 2697,
+ "▁az": 2698,
+ "eters": 2699,
+ "ilder": 2700,
+ "ples": 2701,
+ "▁specific": 2702,
+ "▁om": 2703,
+ "error": 2704,
+ "ently": 2705,
+ "▁film": 2706,
+ "uck": 2707,
+ "ains": 2708,
+ "ación": 2709,
+ "ges": 2710,
+ "жа": 2711,
+ "▁things": 2712,
+ "Sh": 2713,
+ "▁thought": 2714,
+ "▁added": 2715,
+ "dep": 2716,
+ "ского": 2717,
+ "▁Li": 2718,
+ "ils": 2719,
+ "ync": 2720,
+ "▁то": 2721,
+ "ries": 2722,
+ "▁cu": 2723,
+ "chen": 2724,
+ "ION": 2725,
+ "▁Des": 2726,
+ "ultado": 2727,
+ "irt": 2728,
+ "▁based": 2729,
+ "▁mo": 2730,
+ "▁dest": 2731,
+ "png": 2732,
+ "reen": 2733,
+ "▁running": 2734,
+ "amma": 2735,
+ "oud": 2736,
+ "▁refer": 2737,
+ "ious": 2738,
+ "▁Jul": 2739,
+ "▁search": 2740,
+ "ald": 2741,
+ "ede": 2742,
+ "▁wrong": 2743,
+ "An": 2744,
+ "▁until": 2745,
+ "site": 2746,
+ "ayer": 2747,
+ "▁once": 2748,
+ "arr": 2749,
+ "▁against": 2750,
+ "====": 2751,
+ "▁source": 2752,
+ "arn": 2753,
+ "api": 2754,
+ "▁represent": 2755,
+ "▁aff": 2756,
+ "▁sein": 2757,
+ "▁allow": 2758,
+ "ormal": 2759,
+ "ended": 2760,
+ "▁control": 2761,
+ "mathbf": 2762,
+ "come": 2763,
+ "cur": 2764,
+ "endo": 2765,
+ "wa": 2766,
+ "▁update": 2767,
+ "▁inside": 2768,
+ "▁reason": 2769,
+ "omen": 2770,
+ "▁вы": 2771,
+ "De": 2772,
+ "▁је": 2773,
+ "sw": 2774,
+ "▁sever": 2775,
+ "Of": 2776,
+ "▁instance": 2777,
+ "▁mer": 2778,
+ "▁effect": 2779,
+ "color": 2780,
+ "ugust": 2781,
+ "ilt": 2782,
+ "des": 2783,
+ "itz": 2784,
+ "ulation": 2785,
+ "nie": 2786,
+ "▁World": 2787,
+ "▁similar": 2788,
+ "ymbol": 2789,
+ "hing": 2790,
+ "▁mark": 2791,
+ "State": 2792,
+ "▁content": 2793,
+ "▁means": 2794,
+ "amed": 2795,
+ "▁End": 2796,
+ "ND": 2797,
+ "count": 2798,
+ "▁Inst": 2799,
+ "perty": 2800,
+ "ctor": 2801,
+ "▁{\\": 2802,
+ "▁Let": 2803,
+ "▁!=": 2804,
+ "▁getting": 2805,
+ "uth": 2806,
+ "umber": 2807,
+ "▁Consultado": 2808,
+ "schaft": 2809,
+ "lete": 2810,
+ "▁Will": 2811,
+ "▁Em": 2812,
+ "head": 2813,
+ "▁leg": 2814,
+ "ном": 2815,
+ "Or": 2816,
+ "arm": 2817,
+ "pond": 2818,
+ "▁Christ": 2819,
+ "▁around": 2820,
+ "▁clear": 2821,
+ "▁href": 2822,
+ "▁See": 2823,
+ "').": 2824,
+ "▁created": 2825,
+ "▁button": 2826,
+ "ining": 2827,
+ "▁click": 2828,
+ "iam": 2829,
+ "plit": 2830,
+ "For": 2831,
+ "▁polit": 2832,
+ "▁seem": 2833,
+ "▁life": 2834,
+ "нов": 2835,
+ "▁intern": 2836,
+ "щи": 2837,
+ "sel": 2838,
+ "soci": 2839,
+ "▁stor": 2840,
+ "cle": 2841,
+ "earch": 2842,
+ "android": 2843,
+ "}^{": 2844,
+ "▁either": 2845,
+ "▁few": 2846,
+ "▁initial": 2847,
+ "length": 2848,
+ "ria": 2849,
+ "sql": 2850,
+ "wik": 2851,
+ "▁ét": 2852,
+ "uer": 2853,
+ "▁valid": 2854,
+ "And": 2855,
+ "include": 2856,
+ "ury": 2857,
+ "▁sus": 2858,
+ "ired": 2859,
+ "▁After": 2860,
+ "▁due": 2861,
+ "▁bei": 2862,
+ "ources": 2863,
+ "▁Nov": 2864,
+ "Act": 2865,
+ "▁Cont": 2866,
+ "▁break": 2867,
+ "ested": 2868,
+ "▁actually": 2869,
+ "else": 2870,
+ "tml": 2871,
+ "rer": 2872,
+ "ones": 2873,
+ "▁design": 2874,
+ "▁property": 2875,
+ "phi": 2876,
+ "ality": 2877,
+ "och": 2878,
+ "ists": 2879,
+ "▁·": 2880,
+ "udio": 2881,
+ "AB": 2882,
+ "ala": 2883,
+ "iones": 2884,
+ "фи": 2885,
+ "find": 2886,
+ "As": 2887,
+ "▁custom": 2888,
+ "▁ann": 2889,
+ "ES": 2890,
+ "OT": 2891,
+ "lambda": 2892,
+ "▁ident": 2893,
+ "▁organ": 2894,
+ "▁Cent": 2895,
+ "▁Char": 2896,
+ "▁os": 2897,
+ "▁hard": 2898,
+ "ров": 2899,
+ "▁/>": 2900,
+ "ko": 2901,
+ "▁exper": 2902,
+ "▁separ": 2903,
+ "yl": 2904,
+ "ourn": 2905,
+ "▁dev": 2906,
+ "▁auch": 2907,
+ "▁block": 2908,
+ "book": 2909,
+ "▁map": 2910,
+ "illa": 2911,
+ "▁comput": 2912,
+ "▁space": 2913,
+ "result": 2914,
+ ")}": 2915,
+ "▁echo": 2916,
+ "config": 2917,
+ "hi": 2918,
+ "▁large": 2919,
+ "▁width": 2920,
+ "▁Go": 2921,
+ "mat": 2922,
+ "▁diff": 2923,
+ "▁kind": 2924,
+ "ances": 2925,
+ "ynam": 2926,
+ "▁color": 2927,
+ "Int": 2928,
+ "sol": 2929,
+ "▁pi": 2930,
+ "▁character": 2931,
+ "oment": 2932,
+ "▁response": 2933,
+ "igma": 2934,
+ "wards": 2935,
+ "arrow": 2936,
+ "су": 2937,
+ "ties": 2938,
+ "▁über": 2939,
+ "Image": 2940,
+ "yd": 2941,
+ "▁пере": 2942,
+ "▁node": 2943,
+ "▁item": 2944,
+ "achine": 2945,
+ "ima": 2946,
+ "▁va": 2947,
+ "▁approach": 2948,
+ "▁wer": 2949,
+ "▁че": 2950,
+ "On": 2951,
+ "ollow": 2952,
+ "она": 2953,
+ "cted": 2954,
+ "ured": 2955,
+ "Controller": 2956,
+ "lied": 2957,
+ "▁jo": 2958,
+ "▁dal": 2959,
+ "unk": 2960,
+ "▁î": 2961,
+ "start": 2962,
+ "ola": 2963,
+ "▁compon": 2964,
+ "IC": 2965,
+ "bit": 2966,
+ "▁base": 2967,
+ "пу": 2968,
+ "▁idea": 2969,
+ "▁dire": 2970,
+ "▁rad": 2971,
+ "group": 2972,
+ "▁With": 2973,
+ "server": 2974,
+ "side": 2975,
+ "sing": 2976,
+ "▁dies": 2977,
+ "▁near": 2978,
+ "▁voor": 2979,
+ "▁argument": 2980,
+ "▁},": 2981,
+ "▁land": 2982,
+ "▁names": 2983,
+ "▁option": 2984,
+ "ithub": 2985,
+ "pped": 2986,
+ "aug": 2987,
+ "▁links": 2988,
+ "▁full": 2989,
+ "▁situ": 2990,
+ "▁console": 2991,
+ "▁etc": 2992,
+ "aux": 2993,
+ "▁Cor": 2994,
+ "icrosoft": 2995,
+ "▁came": 2996,
+ "local": 2997,
+ "▁known": 2998,
+ "▁multiple": 2999,
+ "anguage": 3000,
+ "▁total": 3001,
+ "ology": 3002,
+ "ät": 3003,
+ "▁Х": 3004,
+ "▁fre": 3005,
+ "▁ten": 3006,
+ "ideo": 3007,
+ "▁bes": 3008,
+ "true": 3009,
+ "Query": 3010,
+ "omm": 3011,
+ "▁Art": 3012,
+ "▁keep": 3013,
+ "▁University": 3014,
+ "reate": 3015,
+ "pport": 3016,
+ "▁python": 3017,
+ "tra": 3018,
+ "ector": 3019,
+ "рі": 3020,
+ "oph": 3021,
+ "▁conc": 3022,
+ "▁four": 3023,
+ "viron": 3024,
+ "▁via": 3025,
+ "?\"": 3026,
+ "image": 3027,
+ "oll": 3028,
+ "ные": 3029,
+ "▁context": 3030,
+ "▁sem": 3031,
+ "._": 3032,
+ "▁eng": 3033,
+ "mar": 3034,
+ "AD": 3035,
+ "▁mor": 3036,
+ "▁Cal": 3037,
+ "▁cell": 3038,
+ "imal": 3039,
+ "ATE": 3040,
+ "▁inf": 3041,
+ "ön": 3042,
+ "uffer": 3043,
+ "sq": 3044,
+ "....": 3045,
+ "▁zur": 3046,
+ "With": 3047,
+ "ран": 3048,
+ "chn": 3049,
+ "▁door": 3050,
+ "content": 3051,
+ "▁miss": 3052,
+ "▁simp": 3053,
+ "ár": 3054,
+ "ira": 3055,
+ "▁hat": 3056,
+ "Test": 3057,
+ "▁certain": 3058,
+ "NS": 3059,
+ "▁cho": 3060,
+ "▁adv": 3061,
+ "where": 3062,
+ "▁looking": 3063,
+ "▁times": 3064,
+ "них": 3065,
+ "uto": 3066,
+ "▁É": 3067,
+ "can": 3068,
+ "host": 3069,
+ "▁(*": 3070,
+ "loat": 3071,
+ "▁nicht": 3072,
+ "Field": 3073,
+ "burg": 3074,
+ "const": 3075,
+ "ades": 3076,
+ "▁Mus": 3077,
+ "▁nothing": 3078,
+ "▁incre": 3079,
+ "▁Min": 3080,
+ "▁power": 3081,
+ "▁American": 3082,
+ "ln": 3083,
+ "valid": 3084,
+ "ungs": 3085,
+ "▁National": 3086,
+ "▁San": 3087,
+ "▁York": 3088,
+ "Request": 3089,
+ "char": 3090,
+ "▁Ze": 3091,
+ "button": 3092,
+ "▁alg": 3093,
+ "SON": 3094,
+ "▁ap": 3095,
+ "uff": 3096,
+ "ability": 3097,
+ "ем": 3098,
+ "▁anything": 3099,
+ "ela": 3100,
+ "())": 3101,
+ "ба": 3102,
+ "ampion": 3103,
+ "▁pot": 3104,
+ "▁fut": 3105,
+ "ailable": 3106,
+ "▁prop": 3107,
+ "\"]": 3108,
+ "▁less": 3109,
+ "lag": 3110,
+ "▁August": 3111,
+ "It": 3112,
+ "▁please": 3113,
+ "▁style": 3114,
+ "▁Also": 3115,
+ "bt": 3116,
+ "▁probably": 3117,
+ "▁One": 3118,
+ "▁poss": 3119,
+ "UI": 3120,
+ "uit": 3121,
+ "▁West": 3122,
+ "hn": 3123,
+ "+\\": 3124,
+ "Button": 3125,
+ "json": 3126,
+ "err": 3127,
+ "rame": 3128,
+ "dom": 3129,
+ "ilon": 3130,
+ "alf": 3131,
+ "▁client": 3132,
+ "▁continu": 3133,
+ "xml": 3134,
+ "pec": 3135,
+ "ador": 3136,
+ "ls": 3137,
+ "▁however": 3138,
+ "▁Any": 3139,
+ "änd": 3140,
+ "mathrm": 3141,
+ "▁url": 3142,
+ "▁book": 3143,
+ "▁gl": 3144,
+ "ives": 3145,
+ "gi": 3146,
+ "▁tro": 3147,
+ "▁US": 3148,
+ "point": 3149,
+ "open": 3150,
+ "▁cur": 3151,
+ "▁era": 3152,
+ "▁particular": 3153,
+ "▁HT": 3154,
+ "oot": 3155,
+ "ello": 3156,
+ "lobal": 3157,
+ "▁action": 3158,
+ "▁Int": 3159,
+ "▁include": 3160,
+ "▁elements": 3161,
+ "ная": 3162,
+ "ards": 3163,
+ "▁Bl": 3164,
+ "▁hum": 3165,
+ "from": 3166,
+ "change": 3167,
+ "▁functions": 3168,
+ "hen": 3169,
+ "Service": 3170,
+ "▁height": 3171,
+ "▁Land": 3172,
+ "ias": 3173,
+ "gs": 3174,
+ "ión": 3175,
+ "лов": 3176,
+ "node": 3177,
+ ".”": 3178,
+ "hand": 3179,
+ "▁бу": 3180,
+ "▁amb": 3181,
+ "▁Lu": 3182,
+ "▁throw": 3183,
+ "▁mot": 3184,
+ "▁Act": 3185,
+ "▁world": 3186,
+ "_\\": 3187,
+ "base": 3188,
+ "▁Co": 3189,
+ "▁arch": 3190,
+ "▁####": 3191,
+ "ged": 3192,
+ "pril": 3193,
+ "older": 3194,
+ "Model": 3195,
+ "▁several": 3196,
+ "lie": 3197,
+ "check": 3198,
+ "]{": 3199,
+ "cons": 3200,
+ "▁Tra": 3201,
+ "heck": 3202,
+ "▁least": 3203,
+ "down": 3204,
+ "ebru": 3205,
+ "Def": 3206,
+ "param": 3207,
+ "ischer": 3208,
+ "▁cas": 3209,
+ "CH": 3210,
+ "▁address": 3211,
+ "▁раз": 3212,
+ "ufen": 3213,
+ "urope": 3214,
+ "ей": 3215,
+ "▁bound": 3216,
+ "CO": 3217,
+ "▁Ang": 3218,
+ "▁Ma": 3219,
+ "Index": 3220,
+ "core": 3221,
+ "ouch": 3222,
+ "atabase": 3223,
+ "ribution": 3224,
+ "document": 3225,
+ "Le": 3226,
+ "}_{": 3227,
+ "vern": 3228,
+ "▁statement": 3229,
+ "▁Brit": 3230,
+ "ono": 3231,
+ "psilon": 3232,
+ "▁level": 3233,
+ "▁product": 3234,
+ "IS": 3235,
+ "▁course": 3236,
+ "▁Mr": 3237,
+ ">\r": 3238,
+ "▁background": 3239,
+ "▁ret": 3240,
+ "ering": 3241,
+ "most": 3242,
+ "сько": 3243,
+ "▁thread": 3244,
+ "itional": 3245,
+ "ites": 3246,
+ "Pl": 3247,
+ "▁dos": 3248,
+ "ga": 3249,
+ "day": 3250,
+ "▁Gener": 3251,
+ "▁tw": 3252,
+ "Ad": 3253,
+ "\"><": 3254,
+ "▁($": 3255,
+ "▁moment": 3256,
+ "title": 3257,
+ "create": 3258,
+ "version": 3259,
+ "Manager": 3260,
+ "▁fur": 3261,
+ "pping": 3262,
+ "ijn": 3263,
+ "ос": 3264,
+ "▁rather": 3265,
+ "ptember": 3266,
+ "OS": 3267,
+ "▁site": 3268,
+ "▁caus": 3269,
+ "ani": 3270,
+ "▁home": 3271,
+ "мі": 3272,
+ "▁short": 3273,
+ "pa": 3274,
+ "▁lead": 3275,
+ "ished": 3276,
+ "cing": 3277,
+ "ording": 3278,
+ "▁prote": 3279,
+ "сле": 3280,
+ "LECT": 3281,
+ "▁didn": 3282,
+ "position": 3283,
+ "\",\"": 3284,
+ "(),": 3285,
+ "trans": 3286,
+ "▁lot": 3287,
+ "▁од": 3288,
+ "AS": 3289,
+ "▁sat": 3290,
+ "▁points": 3291,
+ "github": 3292,
+ "style": 3293,
+ "▁году": 3294,
+ "▁Dis": 3295,
+ "ponent": 3296,
+ "omet": 3297,
+ "zer": 3298,
+ "ULL": 3299,
+ "▁pa": 3300,
+ "AP": 3301,
+ "aces": 3302,
+ "▁United": 3303,
+ "ama": 3304,
+ "ety": 3305,
+ "Color": 3306,
+ "▁enough": 3307,
+ "US": 3308,
+ "▁length": 3309,
+ "());": 3310,
+ "^{\\": 3311,
+ "fty": 3312,
+ "Box": 3313,
+ "apter": 3314,
+ "▁complet": 3315,
+ "ник": 3316,
+ "max": 3317,
+ "object": 3318,
+ "({": 3319,
+ "imgur": 3320,
+ "itive": 3321,
+ "unch": 3322,
+ "▁Sub": 3323,
+ "ende": 3324,
+ "гу": 3325,
+ "ategory": 3326,
+ "ты": 3327,
+ "iano": 3328,
+ "▁upd": 3329,
+ "▁Aust": 3330,
+ "}{\\": 3331,
+ "top": 3332,
+ "las": 3333,
+ "pis": 3334,
+ "iness": 3335,
+ "▁{\r": 3336,
+ "▁Е": 3337,
+ "Gr": 3338,
+ "▁AS": 3339,
+ "▁ве": 3340,
+ "thers": 3341,
+ "▁defined": 3342,
+ "azione": 3343,
+ "▁offic": 3344,
+ "▁autom": 3345,
+ "ün": 3346,
+ "▁brow": 3347,
+ "▁serv": 3348,
+ "▁remove": 3349,
+ "iro": 3350,
+ "▁Bibli": 3351,
+ "ED": 3352,
+ "▁whole": 3353,
+ "▁ш": 3354,
+ "▁Java": 3355,
+ "▁zum": 3356,
+ "ua": 3357,
+ "pm": 3358,
+ "dev": 3359,
+ "кра": 3360,
+ "olds": 3361,
+ "▁War": 3362,
+ "än": 3363,
+ "pass": 3364,
+ "uz": 3365,
+ "[\"": 3366,
+ "▁tri": 3367,
+ "ised": 3368,
+ "ха": 3369,
+ "▁memory": 3370,
+ "▁Port": 3371,
+ "oper": 3372,
+ "Up": 3373,
+ "▁Thank": 3374,
+ "▁Mich": 3375,
+ "ych": 3376,
+ "board": 3377,
+ "бу": 3378,
+ "Inst": 3379,
+ "▁begin": 3380,
+ "ination": 3381,
+ "▁Mod": 3382,
+ "_,": 3383,
+ "▁Den": 3384,
+ "option": 3385,
+ "▁construct": 3386,
+ "▁Just": 3387,
+ "Map": 3388,
+ "run": 3389,
+ "▁respect": 3390,
+ "ham": 3391,
+ "ман": 3392,
+ "imedia": 3393,
+ "▁apply": 3394,
+ "cription": 3395,
+ "main": 3396,
+ "▁Ка": 3397,
+ "oid": 3398,
+ "Code": 3399,
+ "};": 3400,
+ "Info": 3401,
+ "▁format": 3402,
+ "Log": 3403,
+ "▁су": 3404,
+ "▁lat": 3405,
+ "utor": 3406,
+ "▁reference": 3407,
+ "▁calcul": 3408,
+ "onn": 3409,
+ "Lo": 3410,
+ "infty": 3411,
+ "▁along": 3412,
+ "▁č": 3413,
+ "▁task": 3414,
+ "▁ev": 3415,
+ "theta": 3416,
+ "ras": 3417,
+ "jor": 3418,
+ "▁бо": 3419,
+ "▁princip": 3420,
+ "My": 3421,
+ "▁einer": 3422,
+ "▁Es": 3423,
+ "omb": 3424,
+ "quad": 3425,
+ "^{-": 3426,
+ "ump": 3427,
+ "▁till": 3428,
+ "ді": 3429,
+ "▁looks": 3430,
+ "▁ok": 3431,
+ "ца": 3432,
+ "nu": 3433,
+ "Fil": 3434,
+ "▁sont": 3435,
+ "▁Med": 3436,
+ "ague": 3437,
+ "▁cost": 3438,
+ "▁Sim": 3439,
+ "▁comment": 3440,
+ "▁(\\": 3441,
+ "egen": 3442,
+ "▁parameter": 3443,
+ "▁France": 3444,
+ "rep": 3445,
+ "▁TH": 3446,
+ "▁yet": 3447,
+ "▁away": 3448,
+ "▁circ": 3449,
+ "▁API": 3450,
+ "emp": 3451,
+ "ві": 3452,
+ "Layout": 3453,
+ "▁lines": 3454,
+ "▁Part": 3455,
+ "empt": 3456,
+ "▁Bi": 3457,
+ "▁mind": 3458,
+ "ky": 3459,
+ "ging": 3460,
+ "▁report": 3461,
+ "▁Add": 3462,
+ "род": 3463,
+ "▁range": 3464,
+ "cias": 3465,
+ "lip": 3466,
+ "▁Kar": 3467,
+ "▁Commons": 3468,
+ "gerufen": 3469,
+ "aff": 3470,
+ "sec": 3471,
+ "▁html": 3472,
+ "lig": 3473,
+ "▁window": 3474,
+ "inition": 3475,
+ "cis": 3476,
+ "▁ut": 3477,
+ "eln": 3478,
+ "▁aux": 3479,
+ "▁neg": 3480,
+ "Hand": 3481,
+ "▁);": 3482,
+ "▁anal": 3483,
+ "▁fri": 3484,
+ "▁си": 3485,
+ "etch": 3486,
+ "md": 3487,
+ "page": 3488,
+ "▁library": 3489,
+ "▁:=": 3490,
+ "ROM": 3491,
+ "You": 3492,
+ "space": 3493,
+ "▁durch": 3494,
+ "▁host": 3495,
+ "aven": 3496,
+ "▁File": 3497,
+ "alle": 3498,
+ "тив": 3499,
+ "▁pap": 3500,
+ "ство": 3501,
+ "mark": 3502,
+ "▁mais": 3503,
+ "erman": 3504,
+ "Size": 3505,
+ "ек": 3506,
+ "▁Ма": 3507,
+ "▁isn": 3508,
+ "▁copy": 3509,
+ "sten": 3510,
+ "river": 3511,
+ "▁went": 3512,
+ "▁javascript": 3513,
+ "▁sam": 3514,
+ "▁frame": 3515,
+ "▁vi": 3516,
+ "▁previous": 3517,
+ "rodu": 3518,
+ "▁methods": 3519,
+ "▁necess": 3520,
+ "NA": 3521,
+ "cket": 3522,
+ "▁opt": 3523,
+ "Loc": 3524,
+ "how": 3525,
+ "▁în": 3526,
+ "ship": 3527,
+ "▁itself": 3528,
+ "▁Please": 3529,
+ "iene": 3530,
+ "вер": 3531,
+ "▁<<": 3532,
+ "▁mill": 3533,
+ "▁trad": 3534,
+ "pace": 3535,
+ "▁Har": 3536,
+ "iten": 3537,
+ "wise": 3538,
+ "write": 3539,
+ "ции": 3540,
+ "ры": 3541,
+ "Line": 3542,
+ "olo": 3543,
+ "▁accept": 3544,
+ "height": 3545,
+ "▁elect": 3546,
+ "ella": 3547,
+ "▁på": 3548,
+ "Select": 3549,
+ "▁ли": 3550,
+ "▁\\<": 3551,
+ "((": 3552,
+ "▁ID": 3553,
+ "ops": 3554,
+ "ван": 3555,
+ "ió": 3556,
+ "TP": 3557,
+ "»,": 3558,
+ "nection": 3559,
+ "parent": 3560,
+ "▁Mag": 3561,
+ "Table": 3562,
+ "Over": 3563,
+ "▁network": 3564,
+ "спо": 3565,
+ "▁assign": 3566,
+ "igger": 3567,
+ "irm": 3568,
+ ")`": 3569,
+ "ottom": 3570,
+ "beta": 3571,
+ "▁dell": 3572,
+ "▁body": 3573,
+ "▁да": 3574,
+ "▁Your": 3575,
+ "▁fue": 3576,
+ "▁package": 3577,
+ "▁light": 3578,
+ "▁**": 3579,
+ "MP": 3580,
+ "▁cou": 3581,
+ "yes": 3582,
+ ":\\": 3583,
+ "▁Ч": 3584,
+ "▁mention": 3585,
+ "ensch": 3586,
+ "▁deg": 3587,
+ "▁convert": 3588,
+ "▁Dav": 3589,
+ "adt": 3590,
+ "Result": 3591,
+ "though": 3592,
+ "▁bus": 3593,
+ "xy": 3594,
+ "▁seen": 3595,
+ "All": 3596,
+ "public": 3597,
+ "ively": 3598,
+ "▁Rec": 3599,
+ "▁His": 3600,
+ "sim": 3601,
+ "▁för": 3602,
+ "▁histor": 3603,
+ "▁sett": 3604,
+ "rat": 3605,
+ "abled": 3606,
+ "▁»,": 3607,
+ "google": 3608,
+ "Web": 3609,
+ "él": 3610,
+ "▁title": 3611,
+ "▁Janu": 3612,
+ "ја": 3613,
+ "▁took": 3614,
+ "iden": 3615,
+ "sz": 3616,
+ "▁Get": 3617,
+ "▁objects": 3618,
+ "▁common": 3619,
+ "▁changes": 3620,
+ "▁Lond": 3621,
+ "▁extern": 3622,
+ "▁ju": 3623,
+ "Is": 3624,
+ "▁available": 3625,
+ "tri": 3626,
+ "▁más": 3627,
+ "osa": 3628,
+ "Be": 3629,
+ "▁Data": 3630,
+ "ural": 3631,
+ "▁hom": 3632,
+ "▁account": 3633,
+ "oo": 3634,
+ "▁perm": 3635,
+ "respond": 3636,
+ "yt": 3637,
+ "▁send": 3638,
+ "▁returns": 3639,
+ "ivid": 3640,
+ "▁expla": 3641,
+ "ín": 3642,
+ "▁nor": 3643,
+ "If": 3644,
+ "▁From": 3645,
+ "▁target": 3646,
+ "fect": 3647,
+ "ент": 3648,
+ "▁uit": 3649,
+ "▁Jo": 3650,
+ "▁variables": 3651,
+ "▁series": 3652,
+ "▁func": 3653,
+ "▁himself": 3654,
+ "▁ча": 3655,
+ "anti": 3656,
+ "▁ach": 3657,
+ "ialog": 3658,
+ "▁std": 3659,
+ "ae": 3660,
+ "▁foot": 3661,
+ "▁unter": 3662,
+ "gress": 3663,
+ "Not": 3664,
+ "rad": 3665,
+ "fér": 3666,
+ "▁util": 3667,
+ "orem": 3668,
+ "▁sou": 3669,
+ "opt": 3670,
+ "▁og": 3671,
+ "▁uma": 3672,
+ "itar": 3673,
+ "▁Ok": 3674,
+ "ück": 3675,
+ "sqrt": 3676,
+ "▁ant": 3677,
+ "▁werden": 3678,
+ "år": 3679,
+ "});": 3680,
+ "▁Paris": 3681,
+ "▁exception": 3682,
+ "▁determ": 3683,
+ "▁Vol": 3684,
+ "▁Sam": 3685,
+ "▁ess": 3686,
+ "lies": 3687,
+ "ioni": 3688,
+ "oding": 3689,
+ "idget": 3690,
+ "▁pri": 3691,
+ "▁whether": 3692,
+ "▁под": 3693,
+ "▁numbers": 3694,
+ "▁~": 3695,
+ "event": 3696,
+ "▁shows": 3697,
+ "atures": 3698,
+ "▁house": 3699,
+ "▁face": 3700,
+ "▁się": 3701,
+ "vironment": 3702,
+ "van": 3703,
+ "▁including": 3704,
+ "▁<-": 3705,
+ "times": 3706,
+ "now": 3707,
+ "▁pur": 3708,
+ "ifier": 3709,
+ "▁emp": 3710,
+ "▁cla": 3711,
+ "mon": 3712,
+ "▁Das": 3713,
+ "ady": 3714,
+ "▁від": 3715,
+ "▁ц": 3716,
+ "abor": 3717,
+ "OST": 3718,
+ "▁band": 3719,
+ "▁ú": 3720,
+ "▁exactly": 3721,
+ "iert": 3722,
+ "avig": 3723,
+ "▁redu": 3724,
+ "▁SE": 3725,
+ "lished": 3726,
+ "Bu": 3727,
+ "Message": 3728,
+ "cell": 3729,
+ "fully": 3730,
+ "▁sv": 3731,
+ "▁makes": 3732,
+ "pol": 3733,
+ "▁required": 3734,
+ "ferrer": 3735,
+ "▁pers": 3736,
+ "▁mi": 3737,
+ "FI": 3738,
+ "▁Paul": 3739,
+ "▁UI": 3740,
+ "▁Bel": 3741,
+ "inc": 3742,
+ "▁contains": 3743,
+ "Out": 3744,
+ "asure": 3745,
+ "pu": 3746,
+ "oto": 3747,
+ "▁game": 3748,
+ "zn": 3749,
+ "▁Why": 3750,
+ "orith": 3751,
+ "big": 3752,
+ "кий": 3753,
+ "sigma": 3754,
+ "▁quite": 3755,
+ "▁jed": 3756,
+ "rec": 3757,
+ "▁SQL": 3758,
+ "бе": 3759,
+ "▁Mart": 3760,
+ "ya": 3761,
+ "▁school": 3762,
+ "▁simply": 3763,
+ "▁vor": 3764,
+ "▁double": 3765,
+ "рав": 3766,
+ "▁Str": 3767,
+ "iem": 3768,
+ "▁album": 3769,
+ "▁resol": 3770,
+ "▁dei": 3771,
+ "▁Wik": 3772,
+ "▁aw": 3773,
+ "umb": 3774,
+ "ols": 3775,
+ "▁*/": 3776,
+ "▁ze": 3777,
+ "▁anim": 3778,
+ "/>": 3779,
+ "ris": 3780,
+ "resh": 3781,
+ "No": 3782,
+ "iques": 3783,
+ "current": 3784,
+ "▁period": 3785,
+ "▁April": 3786,
+ "▁store": 3787,
+ "','": 3788,
+ "▁Set": 3789,
+ "={": 3790,
+ "ached": 3791,
+ "▁Mal": 3792,
+ "▁Pal": 3793,
+ "antes": 3794,
+ "aterial": 3795,
+ "▁worked": 3796,
+ "leq": 3797,
+ "oreferrer": 3798,
+ "▁happen": 3799,
+ "▁box": 3800,
+ "ney": 3801,
+ "▁close": 3802,
+ "▁gran": 3803,
+ "▁lie": 3804,
+ "▁ir": 3805,
+ "▁expected": 3806,
+ "▁для": 3807,
+ "click": 3808,
+ "și": 3809,
+ "▁parte": 3810,
+ "ogn": 3811,
+ "▁Form": 3812,
+ "▁memb": 3813,
+ "▁plan": 3814,
+ "▁team": 3815,
+ "][": 3816,
+ "▁commun": 3817,
+ "orry": 3818,
+ "ency": 3819,
+ "gl": 3820,
+ "inary": 3821,
+ "cdot": 3822,
+ "^\\": 3823,
+ "▁First": 3824,
+ "ander": 3825,
+ "▁Dec": 3826,
+ "request": 3827,
+ "ства": 3828,
+ "▁structure": 3829,
+ "▁||": 3830,
+ "▁Comp": 3831,
+ "actory": 3832,
+ "▁Mil": 3833,
+ "▁Some": 3834,
+ "Stream": 3835,
+ "▁assum": 3836,
+ "uen": 3837,
+ "▁words": 3838,
+ "▁September": 3839,
+ "▁Ко": 3840,
+ "▁days": 3841,
+ "ories": 3842,
+ "став": 3843,
+ "sm": 3844,
+ "vin": 3845,
+ "partial": 3846,
+ "▁parent": 3847,
+ "oj": 3848,
+ "нии": 3849,
+ "!\"": 3850,
+ "ugin": 3851,
+ "▁Windows": 3852,
+ "Ed": 3853,
+ ":}": 3854,
+ "▁q": 3855,
+ "▁ben": 3856,
+ "iana": 3857,
+ "▁label": 3858,
+ "state": 3859,
+ "uted": 3860,
+ "▁()": 3861,
+ "▁сво": 3862,
+ "▁edit": 3863,
+ "uring": 3864,
+ "▁NS": 3865,
+ "▁Jahr": 3866,
+ "▁provide": 3867,
+ "He": 3868,
+ "▁Yes": 3869,
+ "anel": 3870,
+ "ename": 3871,
+ "▁Don": 3872,
+ "isk": 3873,
+ "gra": 3874,
+ "elij": 3875,
+ "▁root": 3876,
+ "*/": 3877,
+ "▁Fre": 3878,
+ "▁Mor": 3879,
+ "used": 3880,
+ "range": 3881,
+ "▁tamb": 3882,
+ "▁module": 3883,
+ "▁directory": 3884,
+ "ounds": 3885,
+ "Activity": 3886,
+ "▁mu": 3887,
+ "info": 3888,
+ "▁free": 3889,
+ "orge": 3890,
+ "tab": 3891,
+ ")=": 3892,
+ "lang": 3893,
+ "▁ос": 3894,
+ "▁FROM": 3895,
+ "▁enter": 3896,
+ "▁became": 3897,
+ "idae": 3898,
+ "хи": 3899,
+ "▁States": 3900,
+ "verse": 3901,
+ "▁expl": 3902,
+ "ynt": 3903,
+ "UN": 3904,
+ "ee": 3905,
+ "endent": 3906,
+ "▁making": 3907,
+ "▁\"$": 3908,
+ "uni": 3909,
+ "quence": 3910,
+ "▁lui": 3911,
+ "HT": 3912,
+ "▁uses": 3913,
+ "zie": 3914,
+ "nia": 3915,
+ "Content": 3916,
+ "▁Count": 3917,
+ "▁standard": 3918,
+ "ENT": 3919,
+ "▁кон": 3920,
+ "fort": 3921,
+ "adas": 3922,
+ "зу": 3923,
+ "System": 3924,
+ "▁Sw": 3925,
+ "▁ever": 3926,
+ "LO": 3927,
+ "▁correspond": 3928,
+ "▁Po": 3929,
+ "argin": 3930,
+ "кт": 3931,
+ "ій": 3932,
+ "▁remain": 3933,
+ "cio": 3934,
+ "▁actual": 3935,
+ "сту": 3936,
+ "▁sind": 3937,
+ "▁Pe": 3938,
+ "▁changed": 3939,
+ "▁Note": 3940,
+ "skie": 3941,
+ "▁family": 3942,
+ "ità": 3943,
+ "cos": 3944,
+ "txt": 3945,
+ "ker": 3946,
+ "ceed": 3947,
+ "▁arr": 3948,
+ "▁cam": 3949,
+ "izer": 3950,
+ "▁Dan": 3951,
+ "hel": 3952,
+ "icult": 3953,
+ "HP": 3954,
+ "iler": 3955,
+ "▁Sal": 3956,
+ "▁connection": 3957,
+ "usion": 3958,
+ "kn": 3959,
+ "RI": 3960,
+ "▁vom": 3961,
+ "Listener": 3962,
+ "▁ö": 3963,
+ "▁dim": 3964,
+ "▁press": 3965,
+ "▁esc": 3966,
+ "▁Try": 3967,
+ "atalog": 3968,
+ "▁thanks": 3969,
+ "DO": 3970,
+ "▁written": 3971,
+ "dir": 3972,
+ "rew": 3973,
+ "▁fire": 3974,
+ "▁Nach": 3975,
+ "▁á": 3976,
+ "enc": 3977,
+ "▁origin": 3978,
+ "▁November": 3979,
+ "▁};": 3980,
+ "Count": 3981,
+ "▁За": 3982,
+ "▁graph": 3983,
+ "▁mis": 3984,
+ "▁External": 3985,
+ "▁▁▁▁▁▁▁▁▁": 3986,
+ "▁options": 3987,
+ "▁URL": 3988,
+ "▁php": 3989,
+ "▁integr": 3990,
+ "Config": 3991,
+ "▁Text": 3992,
+ "inner": 3993,
+ "▁crit": 3994,
+ ",”": 3995,
+ "▁tog": 3996,
+ "$$": 3997,
+ "nof": 3998,
+ "▁ses": 3999,
+ "ühr": 4000,
+ "▁Since": 4001,
+ "Des": 4002,
+ "ube": 4003,
+ "▁section": 4004,
+ "▁gi": 4005,
+ "ford": 4006,
+ "▁Ass": 4007,
+ "ainer": 4008,
+ "ttp": 4009,
+ "▁behav": 4010,
+ "ports": 4011,
+ "draw": 4012,
+ "This": 4013,
+ "ranch": 4014,
+ "inding": 4015,
+ "▁estab": 4016,
+ "▁obtain": 4017,
+ "rich": 4018,
+ "licit": 4019,
+ "ев": 4020,
+ "▁qual": 4021,
+ "▁za": 4022,
+ "▁har": 4023,
+ "▁fac": 4024,
+ "aar": 4025,
+ "jet": 4026,
+ "icles": 4027,
+ "▁Aus": 4028,
+ "▁hor": 4029,
+ "▁remov": 4030,
+ "▁wie": 4031,
+ "Client": 4032,
+ "▁natur": 4033,
+ "hip": 4034,
+ "Sub": 4035,
+ "▁random": 4036,
+ "DF": 4037,
+ "▁area": 4038,
+ "tag": 4039,
+ "Pr": 4040,
+ "▁Ital": 4041,
+ "▁roku": 4042,
+ "nofollow": 4043,
+ "*}": 4044,
+ "▁others": 4045,
+ "▁limit": 4046,
+ "▁sil": 4047,
+ "▁sav": 4048,
+ "▁often": 4049,
+ "▁render": 4050,
+ "DB": 4051,
+ "▁Mc": 4052,
+ "▁zijn": 4053,
+ "жен": 4054,
+ "▁tag": 4055,
+ "ming": 4056,
+ "lichen": 4057,
+ "pack": 4058,
+ "▁Ag": 4059,
+ "▁sense": 4060,
+ "pg": 4061,
+ "Method": 4062,
+ "aged": 4063,
+ "ág": 4064,
+ "ła": 4065,
+ "▁interest": 4066,
+ "▁associ": 4067,
+ "volution": 4068,
+ "▁empty": 4069,
+ "iche": 4070,
+ "▁gro": 4071,
+ "▁types": 4072,
+ "▁Sie": 4073,
+ "Inter": 4074,
+ "▁noreferrer": 4075,
+ "▁gives": 4076,
+ "hal": 4077,
+ "▁save": 4078,
+ "▁font": 4079,
+ "ruction": 4080,
+ "Script": 4081,
+ "▁alla": 4082,
+ "▁says": 4083,
+ "▁fu": 4084,
+ "ape": 4085,
+ "▁language": 4086,
+ "iger": 4087,
+ "▁King": 4088,
+ "bor": 4089,
+ "uv": 4090,
+ "▁shall": 4091,
+ "▁Europe": 4092,
+ "▁einem": 4093,
+ "▁water": 4094,
+ "▁govern": 4095,
+ "anz": 4096,
+ "ators": 4097,
+ "▁month": 4098,
+ "ye": 4099,
+ "▁important": 4100,
+ "atz": 4101,
+ "first": 4102,
+ "▁Trans": 4103,
+ "▁Mad": 4104,
+ "▁bra": 4105,
+ "ika": 4106,
+ "▁Saint": 4107,
+ "oria": 4108,
+ "kre": 4109,
+ "ements": 4110,
+ "▁Ben": 4111,
+ "lav": 4112,
+ "▁admin": 4113,
+ "▁Hen": 4114,
+ "ril": 4115,
+ "▁Sm": 4116,
+ "cat": 4117,
+ "▁Refer": 4118,
+ "▁Ш": 4119,
+ "▁pract": 4120,
+ "▁Pat": 4121,
+ "▁Gre": 4122,
+ "▁young": 4123,
+ "▁Inter": 4124,
+ "oma": 4125,
+ "teger": 4126,
+ "ibility": 4127,
+ "▁parameters": 4128,
+ "▁everything": 4129,
+ "dat": 4130,
+ "urop": 4131,
+ "olean": 4132,
+ "▁returned": 4133,
+ "▁Class": 4134,
+ "acy": 4135,
+ "####": 4136,
+ "▁př": 4137,
+ "▁folder": 4138,
+ "▁kon": 4139,
+ "▁guess": 4140,
+ "gt": 4141,
+ "jen": 4142,
+ "annel": 4143,
+ "icon": 4144,
+ "▁comb": 4145,
+ "rict": 4146,
+ "▁hij": 4147,
+ "▁author": 4148,
+ "see": 4149,
+ "here": 4150,
+ "stra": 4151,
+ "▁entire": 4152,
+ "▁directly": 4153,
+ "raft": 4154,
+ "heet": 4155,
+ "ester": 4156,
+ "▁ми": 4157,
+ "▁mass": 4158,
+ "untu": 4159,
+ "▁users": 4160,
+ "chi": 4161,
+ "PE": 4162,
+ "▁component": 4163,
+ "Click": 4164,
+ "Att": 4165,
+ "▁sobre": 4166,
+ "ands": 4167,
+ "▁Hol": 4168,
+ "▁Sant": 4169,
+ "ori": 4170,
+ "▁sua": 4171,
+ "std": 4172,
+ "entic": 4173,
+ "CC": 4174,
+ "▁filter": 4175,
+ "SQL": 4176,
+ "▁God": 4177,
+ "At": 4178,
+ "▁му": 4179,
+ "▁performance": 4180,
+ "delta": 4181,
+ "ande": 4182,
+ "amer": 4183,
+ "ды": 4184,
+ "▁cult": 4185,
+ "▁Nor": 4186,
+ "but": 4187,
+ "▁lik": 4188,
+ "********": 4189,
+ "ствен": 4190,
+ "▁comme": 4191,
+ "▁dr": 4192,
+ "imer": 4193,
+ "ordin": 4194,
+ "▁condition": 4195,
+ "este": 4196,
+ "([": 4197,
+ "FF": 4198,
+ "ться": 4199,
+ "imo": 4200,
+ "rab": 4201,
+ "іль": 4202,
+ "▁half": 4203,
+ "each": 4204,
+ "Dis": 4205,
+ "▁rows": 4206,
+ "▁hon": 4207,
+ "▁together": 4208,
+ "▁și": 4209,
+ "medi": 4210,
+ "agn": 4211,
+ "alled": 4212,
+ "▁vill": 4213,
+ "ING": 4214,
+ "idden": 4215,
+ "▁draw": 4216,
+ "yntax": 4217,
+ "▁attempt": 4218,
+ "URL": 4219,
+ "pose": 4220,
+ "▁indic": 4221,
+ "ника": 4222,
+ "▁English": 4223,
+ "▁déc": 4224,
+ "▁needs": 4225,
+ "▁normal": 4226,
+ "urt": 4227,
+ "▁но": 4228,
+ "}}\\": 4229,
+ "last": 4230,
+ "▁Fin": 4231,
+ "▁Febru": 4232,
+ "ila": 4233,
+ "▁country": 4234,
+ "▁fields": 4235,
+ "▁max": 4236,
+ "lés": 4237,
+ "owie": 4238,
+ "▁deux": 4239,
+ "▁built": 4240,
+ "▁Main": 4241,
+ "▁camp": 4242,
+ "ivo": 4243,
+ "iva": 4244,
+ "icy": 4245,
+ "zione": 4246,
+ "Node": 4247,
+ "▁:)": 4248,
+ "▁among": 4249,
+ "▁Ob": 4250,
+ "▁cases": 4251,
+ "haps": 4252,
+ "sers": 4253,
+ "arter": 4254,
+ "ści": 4255,
+ "▁iter": 4256,
+ "▁named": 4257,
+ "exec": 4258,
+ "▁season": 4259,
+ "tot": 4260,
+ "=>": 4261,
+ "graph": 4262,
+ "▁nil": 4263,
+ "acional": 4264,
+ "▁NULL": 4265,
+ "▁special": 4266,
+ "сте": 4267,
+ "css": 4268,
+ "▁\\(": 4269,
+ "vs": 4270,
+ "ael": 4271,
+ "▁city": 4272,
+ "ova": 4273,
+ "▁article": 4274,
+ "▁South": 4275,
+ "Action": 4276,
+ "ça": 4277,
+ "spring": 4278,
+ "itude": 4279,
+ "▁complex": 4280,
+ "▁что": 4281,
+ "build": 4282,
+ "gamma": 4283,
+ "▁Ent": 4284,
+ "iers": 4285,
+ "'.": 4286,
+ "car": 4287,
+ "apache": 4288,
+ "ingen": 4289,
+ "Input": 4290,
+ ": ": 4291,
+ "▁dynam": 4292,
+ "alls": 4293,
+ "show": 4294,
+ "|\\": 4295,
+ "▁wird": 4296,
+ "Bar": 4297,
+ "alth": 4298,
+ "model": 4299,
+ "Trans": 4300,
+ "Row": 4301,
+ "abe": 4302,
+ "▁lib": 4303,
+ "null": 4304,
+ "ragment": 4305,
+ "▁State": 4306,
+ "▁law": 4307,
+ "Frame": 4308,
+ "▁Lo": 4309,
+ "geb": 4310,
+ "}$.": 4311,
+ "▁needed": 4312,
+ "▁contr": 4313,
+ "aries": 4314,
+ "▁screen": 4315,
+ "yr": 4316,
+ "mm": 4317,
+ "▁shown": 4318,
+ "▁bad": 4319,
+ "▁cast": 4320,
+ "▁Test": 4321,
+ "▁Auf": 4322,
+ "▁quant": 4323,
+ "iga": 4324,
+ "▁ren": 4325,
+ "▁Mac": 4326,
+ "▁transform": 4327,
+ "▁difference": 4328,
+ "▁tit": 4329,
+ "TE": 4330,
+ "▁step": 4331,
+ "▁capt": 4332,
+ "▁collection": 4333,
+ "ictionary": 4334,
+ "▁Tom": 4335,
+ "rier": 4336,
+ "▁move": 4337,
+ "cope": 4338,
+ "ords": 4339,
+ "▁further": 4340,
+ "▁columns": 4341,
+ "▁Lin": 4342,
+ "▁fixed": 4343,
+ "▁children": 4344,
+ "MS": 4345,
+ "mo": 4346,
+ "una": 4347,
+ "▁individ": 4348,
+ "tty": 4349,
+ "aste": 4350,
+ "src": 4351,
+ "match": 4352,
+ "wi": 4353,
+ "▁х": 4354,
+ "▁ди": 4355,
+ "▁ord": 4356,
+ "iving": 4357,
+ "▁Bro": 4358,
+ "▁almost": 4359,
+ "▁Pres": 4360,
+ "reci": 4361,
+ "aring": 4362,
+ "▁///": 4363,
+ "ется": 4364,
+ "▁sig": 4365,
+ "light": 4366,
+ "▁Red": 4367,
+ "▁suggest": 4368,
+ "olf": 4369,
+ "▁été": 4370,
+ "isation": 4371,
+ "зна": 4372,
+ "New": 4373,
+ "стан": 4374,
+ "LA": 4375,
+ "unicip": 4376,
+ "▁figure": 4377,
+ "mt": 4378,
+ "iale": 4379,
+ "▁catch": 4380,
+ "default": 4381,
+ "▁tele": 4382,
+ "▁matter": 4383,
+ "cast": 4384,
+ "▁Rich": 4385,
+ "▁handle": 4386,
+ "valu": 4387,
+ "$-": 4388,
+ "об": 4389,
+ "▁json": 4390,
+ "Create": 4391,
+ "▁exam": 4392,
+ "аль": 4393,
+ "ют": 4394,
+ "ored": 4395,
+ "idos": 4396,
+ "append": 4397,
+ "▁Array": 4398,
+ "кс": 4399,
+ "}[": 4400,
+ "rive": 4401,
+ "▁club": 4402,
+ "mann": 4403,
+ "▁este": 4404,
+ "esta": 4405,
+ "▁Gi": 4406,
+ "▁Jap": 4407,
+ "▁Name": 4408,
+ "Column": 4409,
+ "oups": 4410,
+ "ismo": 4411,
+ "▁City": 4412,
+ "▁classes": 4413,
+ "▁infl": 4414,
+ "hl": 4415,
+ "ром": 4416,
+ "▁adding": 4417,
+ "▁fail": 4418,
+ "xx": 4419,
+ "ões": 4420,
+ "Sc": 4421,
+ "util": 4422,
+ "▁location": 4423,
+ "lege": 4424,
+ "ago": 4425,
+ "▁properties": 4426,
+ "abil": 4427,
+ "vas": 4428,
+ "}$,": 4429,
+ "itted": 4430,
+ "ód": 4431,
+ "▁Dem": 4432,
+ "▁asked": 4433,
+ "▁tab": 4434,
+ "Source": 4435,
+ "▁errors": 4436,
+ "ographie": 4437,
+ "▁жи": 4438,
+ "▁mal": 4439,
+ "stract": 4440,
+ "▁dro": 4441,
+ "rak": 4442,
+ "▁note": 4443,
+ "▁setting": 4444,
+ "▁fem": 4445,
+ "▁saw": 4446,
+ "iar": 4447,
+ "HER": 4448,
+ "ес": 4449,
+ "▁pred": 4450,
+ "▁Out": 4451,
+ "▁items": 4452,
+ "лан": 4453,
+ "▁werd": 4454,
+ "ersion": 4455,
+ "lia": 4456,
+ "▁sin": 4457,
+ "ichte": 4458,
+ "▁feel": 4459,
+ "▁пра": 4460,
+ "▁oder": 4461,
+ "UE": 4462,
+ "ocument": 4463,
+ "▁mode": 4464,
+ "▁Na": 4465,
+ "ден": 4466,
+ "mes": 4467,
+ "framework": 4468,
+ "▁auto": 4469,
+ "ным": 4470,
+ "uby": 4471,
+ "▁template": 4472,
+ "▁mess": 4473,
+ "ieder": 4474,
+ "▁related": 4475,
+ "oken": 4476,
+ "▁follows": 4477,
+ "search": 4478,
+ "ami": 4479,
+ "▁wait": 4480,
+ "igr": 4481,
+ "▁low": 4482,
+ "ских": 4483,
+ "ская": 4484,
+ "▁Mark": 4485,
+ "▁ill": 4486,
+ "amento": 4487,
+ "\\<": 4488,
+ "▁df": 4489,
+ "osition": 4490,
+ "▁Ви": 4491,
+ "isf": 4492,
+ "▁Deutsch": 4493,
+ "ahl": 4494,
+ "war": 4495,
+ "itect": 4496,
+ "▁sal": 4497,
+ "elen": 4498,
+ "ById": 4499,
+ "▁gru": 4500,
+ "sv": 4501,
+ "▁passed": 4502,
+ "▁añ": 4503,
+ "Sch": 4504,
+ "▁solve": 4505,
+ "weise": 4506,
+ "atos": 4507,
+ "▁meg": 4508,
+ "▁member": 4509,
+ "ername": 4510,
+ "▁connect": 4511,
+ "ips": 4512,
+ "▁round": 4513,
+ "▁]": 4514,
+ "nes": 4515,
+ "▁dir": 4516,
+ "▁London": 4517,
+ "dy": 4518,
+ "FA": 4519,
+ "▁received": 4520,
+ "reet": 4521,
+ "▁Log": 4522,
+ "▁School": 4523,
+ "ango": 4524,
+ "▁These": 4525,
+ "▁Mont": 4526,
+ "▁ener": 4527,
+ "lad": 4528,
+ "▁define": 4529,
+ "sign": 4530,
+ "▁cle": 4531,
+ "figure": 4532,
+ "▁View": 4533,
+ "textbf": 4534,
+ "$\\": 4535,
+ "зы": 4536,
+ "number": 4537,
+ "▁din": 4538,
+ "eller": 4539,
+ "orithm": 4540,
+ "false": 4541,
+ "fol": 4542,
+ "fficient": 4543,
+ "▁HTML": 4544,
+ "liche": 4545,
+ "▁Mo": 4546,
+ "▁introdu": 4547,
+ "exp": 4548,
+ "▁strong": 4549,
+ "▁thus": 4550,
+ "/)": 4551,
+ "▁ele": 4552,
+ "▁так": 4553,
+ "▁па": 4554,
+ "▁dont": 4555,
+ "▁cause": 4556,
+ "Number": 4557,
+ "▁images": 4558,
+ "▁sample": 4559,
+ "▁sci": 4560,
+ "like": 4561,
+ "▁Lou": 4562,
+ "div": 4563,
+ "anc": 4564,
+ "▁front": 4565,
+ "nen": 4566,
+ "▁missing": 4567,
+ "aria": 4568,
+ "pres": 4569,
+ "▁пред": 4570,
+ "DI": 4571,
+ "filter": 4572,
+ "▁Mit": 4573,
+ "UR": 4574,
+ "▁opp": 4575,
+ "▁sql": 4576,
+ "▁року": 4577,
+ "eren": 4578,
+ "emat": 4579,
+ "ís": 4580,
+ "▁Jean": 4581,
+ "éc": 4582,
+ "▁ci": 4583,
+ "enne": 4584,
+ "atform": 4585,
+ "▁taken": 4586,
+ "▁Of": 4587,
+ "▁насе": 4588,
+ "▁err": 4589,
+ "OP": 4590,
+ "From": 4591,
+ "Default": 4592,
+ "▁General": 4593,
+ "wiki": 4594,
+ "▁grand": 4595,
+ "▁einen": 4596,
+ "Reg": 4597,
+ "Handler": 4598,
+ "conom": 4599,
+ "anger": 4600,
+ "▁был": 4601,
+ "▁Los": 4602,
+ "▁expression": 4603,
+ "ша": 4604,
+ "yal": 4605,
+ "▁$('": 4606,
+ "▁switch": 4607,
+ "▁vector": 4608,
+ "▁Thom": 4609,
+ "▁virt": 4610,
+ "leased": 4611,
+ "▁cover": 4612,
+ "▁resp": 4613,
+ "ako": 4614,
+ "rench": 4615,
+ "ota": 4616,
+ "Cell": 4617,
+ "anged": 4618,
+ "▁+=": 4619,
+ "lac": 4620,
+ "ska": 4621,
+ "next": 4622,
+ "▁International": 4623,
+ "▁Wil": 4624,
+ "▁ont": 4625,
+ "ibr": 4626,
+ "ustr": 4627,
+ "▁black": 4628,
+ "▁selected": 4629,
+ "cher": 4630,
+ "▁liter": 4631,
+ "root": 4632,
+ "лся": 4633,
+ "▁Life": 4634,
+ "▁insert": 4635,
+ "▁matrix": 4636,
+ "ises": 4637,
+ ")]": 4638,
+ "▁pel": 4639,
+ "Override": 4640,
+ "rypt": 4641,
+ "▁former": 4642,
+ "▁Film": 4643,
+ "▁North": 4644,
+ "client": 4645,
+ "▁night": 4646,
+ "ходи": 4647,
+ "▁Austral": 4648,
+ "▁Ret": 4649,
+ "rho": 4650,
+ "▁пер": 4651,
+ "ipedia": 4652,
+ "▁express": 4653,
+ "▁third": 4654,
+ "▁major": 4655,
+ "▁grad": 4656,
+ "owe": 4657,
+ "▁believe": 4658,
+ "ournal": 4659,
+ "▁status": 4660,
+ "unc": 4661,
+ "▁dou": 4662,
+ "▁JSON": 4663,
+ "uis": 4664,
+ "▁population": 4665,
+ "enz": 4666,
+ "▁William": 4667,
+ "sf": 4668,
+ "▁Object": 4669,
+ "▁cin": 4670,
+ "▁Di": 4671,
+ "curity": 4672,
+ "▁Open": 4673,
+ "▁ле": 4674,
+ "lar": 4675,
+ "adding": 4676,
+ "▁kom": 4677,
+ "}(\\": 4678,
+ "▁kil": 4679,
+ "umer": 4680,
+ "\"/>": 4681,
+ "▁feature": 4682,
+ "▁Are": 4683,
+ "cks": 4684,
+ "▁Internet": 4685,
+ "▁ih": 4686,
+ "▁started": 4687,
+ "▁early": 4688,
+ "▁began": 4689,
+ "TH": 4690,
+ "python": 4691,
+ "asp": 4692,
+ "▁Fr": 4693,
+ "▁clos": 4694,
+ "istic": 4695,
+ "▁music": 4696,
+ "▁dig": 4697,
+ "▁ital": 4698,
+ "▁David": 4699,
+ "▁website": 4700,
+ "▁controller": 4701,
+ "▁Mer": 4702,
+ "context": 4703,
+ "product": 4704,
+ "osp": 4705,
+ "▁▁▁▁▁▁▁": 4706,
+ "▁jun": 4707,
+ "rown": 4708,
+ "▁Az": 4709,
+ "\":\"": 4710,
+ "▁aan": 4711,
+ "▁Date": 4712,
+ "mult": 4713,
+ "▁browser": 4714,
+ "ред": 4715,
+ "which": 4716,
+ "RA": 4717,
+ "quare": 4718,
+ "▁Russ": 4719,
+ "▁soon": 4720,
+ "▁Pre": 4721,
+ "tau": 4722,
+ "▁week": 4723,
+ "▁ба": 4724,
+ "▁oct": 4725,
+ "▁town": 4726,
+ "roy": 4727,
+ "▁els": 4728,
+ "blic": 4729,
+ "undle": 4730,
+ "▁Histor": 4731,
+ "▁foi": 4732,
+ "▁models": 4733,
+ "зо": 4734,
+ "onym": 4735,
+ "Param": 4736,
+ "▁Met": 4737,
+ "gener": 4738,
+ "ją": 4739,
+ "▁espe": 4740,
+ "CE": 4741,
+ "▁device": 4742,
+ "ellow": 4743,
+ "▁debug": 4744,
+ "érie": 4745,
+ "using": 4746,
+ "анг": 4747,
+ "▁*)": 4748,
+ "udi": 4749,
+ "▁Miss": 4750,
+ "ком": 4751,
+ "posed": 4752,
+ "▁zwe": 4753,
+ "ін": 4754,
+ "▁Robert": 4755,
+ "▁Oct": 4756,
+ "lop": 4757,
+ "jar": 4758,
+ "▁aver": 4759,
+ "▁habit": 4760,
+ "▁::": 4761,
+ "äng": 4762,
+ "Start": 4763,
+ "▁pow": 4764,
+ "▁src": 4765,
+ "▁pattern": 4766,
+ "▁Э": 4767,
+ "▁bi": 4768,
+ "otes": 4769,
+ "▁__": 4770,
+ "▁sens": 4771,
+ "▁avoid": 4772,
+ "example": 4773,
+ "utt": 4774,
+ "Label": 4775,
+ "tex": 4776,
+ "boot": 4777,
+ "esto": 4778,
+ "▁March": 4779,
+ "▁easy": 4780,
+ "icture": 4781,
+ "Group": 4782,
+ "▁father": 4783,
+ "▁updated": 4784,
+ "▁Vo": 4785,
+ "▁III": 4786,
+ "omega": 4787,
+ "▁alle": 4788,
+ "Rec": 4789,
+ "yg": 4790,
+ "зе": 4791,
+ "▁Dim": 4792,
+ "nect": 4793,
+ "▁Tor": 4794,
+ "▁deutsch": 4795,
+ "▁white": 4796,
+ "▁national": 4797,
+ "ppe": 4798,
+ "▁air": 4799,
+ "▁password": 4800,
+ "det": 4801,
+ "▁big": 4802,
+ "▁Use": 4803,
+ "call": 4804,
+ "▁extra": 4805,
+ "We": 4806,
+ "ania": 4807,
+ "▁hold": 4808,
+ "Control": 4809,
+ "▁CO": 4810,
+ "▁мі": 4811,
+ "iti": 4812,
+ "▁Ke": 4813,
+ "enu": 4814,
+ "▁Park": 4815,
+ "том": 4816,
+ "▁auth": 4817,
+ "▁center": 4818,
+ "Ph": 4819,
+ "тов": 4820,
+ "iding": 4821,
+ "▁across": 4822,
+ "▁song": 4823,
+ "▁phys": 4824,
+ "▁numer": 4825,
+ "ща": 4826,
+ "▁Alex": 4827,
+ "▁problems": 4828,
+ "▁Error": 4829,
+ "format": 4830,
+ "▁Acc": 4831,
+ "▁six": 4832,
+ "▁db": 4833,
+ "▁Cast": 4834,
+ "oms": 4835,
+ "project": 4836,
+ "▁vert": 4837,
+ "cret": 4838,
+ "▁header": 4839,
+ "▁stream": 4840,
+ "ids": 4841,
+ "▁tor": 4842,
+ "▁sept": 4843,
+ "▁estim": 4844,
+ "▁decl": 4845,
+ "▁gave": 4846,
+ "▁player": 4847,
+ "ysis": 4848,
+ "▁дру": 4849,
+ "amm": 4850,
+ "що": 4851,
+ "▁(\"": 4852,
+ "▁ax": 4853,
+ "Property": 4854,
+ "usr": 4855,
+ "▁someone": 4856,
+ "▁impro": 4857,
+ "aden": 4858,
+ "rote": 4859,
+ "▁Ми": 4860,
+ "ih": 4861,
+ "++)": 4862,
+ "▁video": 4863,
+ "▁exists": 4864,
+ "кла": 4865,
+ "▁complete": 4866,
+ "▁session": 4867,
+ "▁constant": 4868,
+ "icos": 4869,
+ "▁pack": 4870,
+ "rome": 4871,
+ "egr": 4872,
+ "Application": 4873,
+ "▁yes": 4874,
+ "▁elle": 4875,
+ "▁email": 4876,
+ "orf": 4877,
+ "case": 4878,
+ "▁pointer": 4879,
+ "▁regard": 4880,
+ "sen": 4881,
+ "status": 4882,
+ "▁mes": 4883,
+ "▁delle": 4884,
+ "ington": 4885,
+ "▁Bas": 4886,
+ ")^": 4887,
+ "develop": 4888,
+ "▁force": 4889,
+ "▁characters": 4890,
+ "▁cross": 4891,
+ "▁death": 4892,
+ "▁takes": 4893,
+ "éri": 4894,
+ "igne": 4895,
+ "чен": 4896,
+ "UP": 4897,
+ ".:": 4898,
+ "Thread": 4899,
+ "ju": 4900,
+ "iny": 4901,
+ "▁details": 4902,
+ "▁xml": 4903,
+ "tait": 4904,
+ "output": 4905,
+ "message": 4906,
+ "''": 4907,
+ "▁British": 4908,
+ "ville": 4909,
+ "▁Div": 4910,
+ "▁User": 4911,
+ "cm": 4912,
+ "чно": 4913,
+ "column": 4914,
+ "eqref": 4915,
+ "ór": 4916,
+ "onom": 4917,
+ "▁Post": 4918,
+ "ellen": 4919,
+ "Ab": 4920,
+ "ulté": 4921,
+ "▁perfect": 4922,
+ "(){": 4923,
+ "vision": 4924,
+ "active": 4925,
+ "lier": 4926,
+ "rij": 4927,
+ "sd": 4928,
+ "▁kö": 4929,
+ "▁nie": 4930,
+ "▁relig": 4931,
+ "▁ot": 4932,
+ "▁machine": 4933,
+ "▁held": 4934,
+ ")$.": 4935,
+ "========": 4936,
+ "cker": 4937,
+ "вы": 4938,
+ "born": 4939,
+ "▁past": 4940,
+ "рия": 4941,
+ "▁Dr": 4942,
+ "▁regular": 4943,
+ "▁provided": 4944,
+ "TER": 4945,
+ "▁univers": 4946,
+ "▁gets": 4947,
+ "▁nu": 4948,
+ "▁/*": 4949,
+ "ober": 4950,
+ "fin": 4951,
+ "▁nella": 4952,
+ "▁become": 4953,
+ "▁``": 4954,
+ "▁history": 4955,
+ "▁Sol": 4956,
+ "▁Rad": 4957,
+ "▁terms": 4958,
+ "▁events": 4959,
+ "lymp": 4960,
+ ")))": 4961,
+ "рова": 4962,
+ "▁absol": 4963,
+ "▁soft": 4964,
+ "links": 4965,
+ "▁hope": 4966,
+ "▁subject": 4967,
+ "\"),": 4968,
+ "▁creating": 4969,
+ "▁}\r": 4970,
+ "▁Sk": 4971,
+ "▁flow": 4972,
+ "▁Ра": 4973,
+ "▁assert": 4974,
+ "zet": 4975,
+ "▁Frank": 4976,
+ "sa": 4977,
+ "▁distribution": 4978,
+ "cu": 4979,
+ "band": 4980,
+ "izz": 4981,
+ "▁job": 4982,
+ "iner": 4983,
+ "struct": 4984,
+ "ák": 4985,
+ "TO": 4986,
+ "auf": 4987,
+ "▁extends": 4988,
+ "▁Gra": 4989,
+ "display": 4990,
+ "▁signific": 4991,
+ "oney": 4992,
+ "source": 4993,
+ "microsoft": 4994,
+ "inder": 4995,
+ "▁quick": 4996,
+ "▁wonder": 4997,
+ "Instance": 4998,
+ "elles": 4999,
+ "ème": 5000,
+ "▁company": 5001,
+ "uß": 5002,
+ ".}": 5003,
+ "▁separate": 5004,
+ "UM": 5005,
+ "HERE": 5006,
+ "▁writing": 5007,
+ "itution": 5008,
+ "▁Gesch": 5009,
+ "мя": 5010,
+ "▁James": 5011,
+ "▁DE": 5012,
+ "▁Spe": 5013,
+ "process": 5014,
+ "Str": 5015,
+ "▁sym": 5016,
+ "▁ao": 5017,
+ "▁wy": 5018,
+ "▁anyone": 5019,
+ "▁Up": 5020,
+ "useum": 5021,
+ "aron": 5022,
+ "▁definition": 5023,
+ "▁`$": 5024,
+ "▁fav": 5025,
+ "ributes": 5026,
+ "▁Ré": 5027,
+ "ografia": 5028,
+ "element": 5029,
+ "cap": 5030,
+ "pat": 5031,
+ "▁Bra": 5032,
+ ")(": 5033,
+ "▁according": 5034,
+ "ге": 5035,
+ "▁pie": 5036,
+ "eli": 5037,
+ "}\"": 5038,
+ "▁activ": 5039,
+ "▁stop": 5040,
+ "patch": 5041,
+ "ті": 5042,
+ "▁Jose": 5043,
+ "End": 5044,
+ "▁prze": 5045,
+ "▁age": 5046,
+ "itory": 5047,
+ "▁PHP": 5048,
+ "agement": 5049,
+ "▁`.": 5050,
+ "▁pretty": 5051,
+ "▁recomm": 5052,
+ "▁sud": 5053,
+ "▁requ": 5054,
+ "▁обла": 5055,
+ "atives": 5056,
+ "▁High": 5057,
+ "áz": 5058,
+ "oul": 5059,
+ "rest": 5060,
+ "▁Ter": 5061,
+ "under": 5062,
+ "thern": 5063,
+ "center": 5064,
+ "▁ur": 5065,
+ "lat": 5066,
+ "▁interface": 5067,
+ "▁ин": 5068,
+ "▁whose": 5069,
+ "icas": 5070,
+ "amen": 5071,
+ "Filter": 5072,
+ "▁station": 5073,
+ "Page": 5074,
+ "▁arm": 5075,
+ "▁eyes": 5076,
+ "▁рай": 5077,
+ "▁seu": 5078,
+ "oli": 5079,
+ "win": 5080,
+ "lik": 5081,
+ "gex": 5082,
+ "chan": 5083,
+ "idence": 5084,
+ "args": 5085,
+ "aking": 5086,
+ "▁Google": 5087,
+ "▁Stud": 5088,
+ "▁ho": 5089,
+ "торы": 5090,
+ "Su": 5091,
+ "▁automat": 5092,
+ "ême": 5093,
+ "▁cy": 5094,
+ "lor": 5095,
+ "▁stack": 5096,
+ "▁SELECT": 5097,
+ "AF": 5098,
+ "▁>>": 5099,
+ "▁compet": 5100,
+ "▁pair": 5101,
+ "▁inglés": 5102,
+ "Response": 5103,
+ "▁Fig": 5104,
+ "grad": 5105,
+ "▁documentation": 5106,
+ "▁cant": 5107,
+ "▁appreci": 5108,
+ "ån": 5109,
+ "▁learn": 5110,
+ "▁indep": 5111,
+ "▁pal": 5112,
+ "package": 5113,
+ "ares": 5114,
+ "▁Berlin": 5115,
+ "бли": 5116,
+ "reich": 5117,
+ "ён": 5118,
+ "▁satisf": 5119,
+ "▁region": 5120,
+ "▁friend": 5121,
+ "▁George": 5122,
+ "▁Во": 5123,
+ "▁\"\"": 5124,
+ "▁desde": 5125,
+ "Factory": 5126,
+ "▁County": 5127,
+ "ouv": 5128,
+ "▁‘": 5129,
+ "▁installed": 5130,
+ "▁wanted": 5131,
+ "▁Python": 5132,
+ "▁interpre": 5133,
+ "▁included": 5134,
+ "▁((": 5135,
+ "▁altern": 5136,
+ "isto": 5137,
+ "gn": 5138,
+ "▁border": 5139,
+ "pdf": 5140,
+ "▁dup": 5141,
+ "▁download": 5142,
+ "just": 5143,
+ "▁members": 5144,
+ "child": 5145,
+ "▁pay": 5146,
+ "▁cer": 5147,
+ "▁looked": 5148,
+ "▁correctly": 5149,
+ "auth": 5150,
+ "▁стан": 5151,
+ "▁esp": 5152,
+ "▁desc": 5153,
+ "eben": 5154,
+ "▁questions": 5155,
+ "mal": 5156,
+ "▁abgerufen": 5157,
+ "▁Band": 5158,
+ "▁[]": 5159,
+ "Base": 5160,
+ "▁ris": 5161,
+ "▁fort": 5162,
+ "▁Id": 5163,
+ "▁various": 5164,
+ "▁League": 5165,
+ "▁Hand": 5166,
+ "▁Type": 5167,
+ "irl": 5168,
+ "▁Fe": 5169,
+ "ién": 5170,
+ "itter": 5171,
+ "▁fast": 5172,
+ "sta": 5173,
+ "▁except": 5174,
+ "icz": 5175,
+ "▁French": 5176,
+ "▁environment": 5177,
+ "▁conse": 5178,
+ "ур": 5179,
+ "ого": 5180,
+ "▁necessary": 5181,
+ "target": 5182,
+ "▁reading": 5183,
+ "home": 5184,
+ "zeich": 5185,
+ "▁equal": 5186,
+ "▁più": 5187,
+ "▁prem": 5188,
+ "▁difficult": 5189,
+ "▁unit": 5190,
+ "▁replace": 5191,
+ "▁heart": 5192,
+ "▁talk": 5193,
+ "AM": 5194,
+ "▁RE": 5195,
+ "▁Person": 5196,
+ "endency": 5197,
+ "▁imm": 5198,
+ "▁human": 5199,
+ "dn": 5200,
+ "▁Kir": 5201,
+ "▁Aut": 5202,
+ "known": 5203,
+ "▁frequ": 5204,
+ "system": 5205,
+ "лав": 5206,
+ "▁Sz": 5207,
+ "▁Gal": 5208,
+ "ное": 5209,
+ "selves": 5210,
+ "rightarrow": 5211,
+ "▁Са": 5212,
+ "=\"@": 5213,
+ "▁building": 5214,
+ "import": 5215,
+ "▁fam": 5216,
+ "▁delete": 5217,
+ "aire": 5218,
+ "mary": 5219,
+ "▁fund": 5220,
+ "▁particip": 5221,
+ "▁syn": 5222,
+ "sin": 5223,
+ "▁lower": 5224,
+ "▁zero": 5225,
+ "▁sec": 5226,
+ "▁fra": 5227,
+ "Point": 5228,
+ "▁failed": 5229,
+ "iento": 5230,
+ "cup": 5231,
+ "▁slow": 5232,
+ "▁nation": 5233,
+ "ähr": 5234,
+ "▁info": 5235,
+ "▁Public": 5236,
+ "▁decla": 5237,
+ "▁Та": 5238,
+ "▁sold": 5239,
+ "▁Rem": 5240,
+ "▁Phil": 5241,
+ "стра": 5242,
+ "▁mehr": 5243,
+ "▁Work": 5244,
+ "▁Nord": 5245,
+ "▁fait": 5246,
+ "▁gew": 5247,
+ "println": 5248,
+ "obile": 5249,
+ "▁Kon": 5250,
+ "▁assume": 5251,
+ "lands": 5252,
+ "▁amount": 5253,
+ "▁Press": 5254,
+ "ých": 5255,
+ "▁maxim": 5256,
+ "▁Champion": 5257,
+ "library": 5258,
+ "añ": 5259,
+ "▁Wal": 5260,
+ "Comm": 5261,
+ "]]": 5262,
+ "▁zw": 5263,
+ "▁social": 5264,
+ "LI": 5265,
+ "▁Unter": 5266,
+ "vor": 5267,
+ "Delta": 5268,
+ "email": 5269,
+ "raint": 5270,
+ "oni": 5271,
+ "▁alt": 5272,
+ "▁né": 5273,
+ "ция": 5274,
+ "ography": 5275,
+ "▁mentioned": 5276,
+ "▁<=": 5277,
+ "▁cette": 5278,
+ "▁currently": 5279,
+ "vare": 5280,
+ "izing": 5281,
+ "▁Def": 5282,
+ "icol": 5283,
+ "ünd": 5284,
+ "▁configuration": 5285,
+ "estig": 5286,
+ "III": 5287,
+ "lam": 5288,
+ "ière": 5289,
+ "▁Ear": 5290,
+ "▁tu": 5291,
+ "Ent": 5292,
+ "▁Using": 5293,
+ "▁ком": 5294,
+ "cie": 5295,
+ "▁proof": 5296,
+ "▁invol": 5297,
+ "▁History": 5298,
+ "><": 5299,
+ "▁AND": 5300,
+ "avy": 5301,
+ "▁relations": 5302,
+ "${": 5303,
+ "▁comes": 5304,
+ "▁direction": 5305,
+ "▁June": 5306,
+ "▁Way": 5307,
+ "Component": 5308,
+ "ech": 5309,
+ "▁Peter": 5310,
+ "sg": 5311,
+ "▁stra": 5312,
+ "uct": 5313,
+ "▁implementation": 5314,
+ "attle": 5315,
+ "▁cz": 5316,
+ "plot": 5317,
+ "▁played": 5318,
+ "\">": 5319,
+ "▁five": 5320,
+ "▁coll": 5321,
+ "▁Charles": 5322,
+ "Tra": 5323,
+ "▁suo": 5324,
+ "files": 5325,
+ "entes": 5326,
+ "response": 5327,
+ "How": 5328,
+ "▁Soci": 5329,
+ "▁ign": 5330,
+ "▁led": 5331,
+ "▁German": 5332,
+ "udo": 5333,
+ "▁Du": 5334,
+ "▁tim": 5335,
+ "ounter": 5336,
+ "▁attack": 5337,
+ "uri": 5338,
+ "▁ар": 5339,
+ "esse": 5340,
+ "ivil": 5341,
+ "▁Ju": 5342,
+ "▁vel": 5343,
+ "matrix": 5344,
+ "▁Mat": 5345,
+ "gio": 5346,
+ "▁Zeit": 5347,
+ "VER": 5348,
+ "has": 5349,
+ "Connection": 5350,
+ "▁ihr": 5351,
+ "▁attribute": 5352,
+ "▁discuss": 5353,
+ "▁domain": 5354,
+ "bind": 5355,
+ "▁Sec": 5356,
+ "rik": 5357,
+ "close": 5358,
+ "gin": 5359,
+ "▁love": 5360,
+ "anto": 5361,
+ "gent": 5362,
+ "aba": 5363,
+ "jango": 5364,
+ "bi": 5365,
+ "▁obser": 5366,
+ "itting": 5367,
+ "▁ру": 5368,
+ "}=": 5369,
+ "agen": 5370,
+ "BC": 5371,
+ "some": 5372,
+ "▁Bu": 5373,
+ "▁soci": 5374,
+ "▁individual": 5375,
+ "▁deal": 5376,
+ "▁outside": 5377,
+ "rio": 5378,
+ "Exec": 5379,
+ "andid": 5380,
+ "▁business": 5381,
+ "▁tempor": 5382,
+ "▁Tur": 5383,
+ "▁(!": 5384,
+ "riter": 5385,
+ "▁google": 5386,
+ "]:": 5387,
+ "itte": 5388,
+ "xi": 5389,
+ "▁Па": 5390,
+ "hol": 5391,
+ "нь": 5392,
+ "ring": 5393,
+ "▁sul": 5394,
+ "ности": 5395,
+ "_.": 5396,
+ "gar": 5397,
+ "Task": 5398,
+ "▁Check": 5399,
+ "▁modern": 5400,
+ "▁win": 5401,
+ "uster": 5402,
+ "han": 5403,
+ "formation": 5404,
+ "void": 5405,
+ "▁фи": 5406,
+ "▁useful": 5407,
+ "▁England": 5408,
+ "los": 5409,
+ "etime": 5410,
+ "eur": 5411,
+ "▁unique": 5412,
+ "▁как": 5413,
+ "ying": 5414,
+ "obj": 5415,
+ "uid": 5416,
+ "▁windows": 5417,
+ "▁distance": 5418,
+ "▁nombre": 5419,
+ "ія": 5420,
+ "ocus": 5421,
+ "ahn": 5422,
+ "ierte": 5423,
+ "▁dar": 5424,
+ "SI": 5425,
+ "long": 5426,
+ "asta": 5427,
+ "iven": 5428,
+ "▁told": 5429,
+ "▁Gru": 5430,
+ "foo": 5431,
+ "▁calling": 5432,
+ "iembre": 5433,
+ "▁future": 5434,
+ "près": 5435,
+ "leep": 5436,
+ "avigation": 5437,
+ "POST": 5438,
+ "▁described": 5439,
+ "▁noch": 5440,
+ "unit": 5441,
+ "allen": 5442,
+ "▁branch": 5443,
+ "fa": 5444,
+ "▁fill": 5445,
+ "▁obj": 5446,
+ "▁tree": 5447,
+ "▁wurden": 5448,
+ "▁Liter": 5449,
+ "rot": 5450,
+ "split": 5451,
+ "emein": 5452,
+ "module": 5453,
+ "CA": 5454,
+ "▁operator": 5455,
+ "▁wrote": 5456,
+ "▁Jack": 5457,
+ "ologie": 5458,
+ "▁Ant": 5459,
+ "тер": 5460,
+ "stream": 5461,
+ "▁Que": 5462,
+ "epsilon": 5463,
+ "non": 5464,
+ "stein": 5465,
+ "▁simpl": 5466,
+ "pub": 5467,
+ "▁July": 5468,
+ "▁nature": 5469,
+ "▁Database": 5470,
+ "ól": 5471,
+ "ним": 5472,
+ "▁VI": 5473,
+ "être": 5474,
+ "iles": 5475,
+ "▁wel": 5476,
+ "'),": 5477,
+ "▁mut": 5478,
+ "location": 5479,
+ "▁therefore": 5480,
+ "elli": 5481,
+ "▁І": 5482,
+ "né": 5483,
+ "▁ав": 5484,
+ "ledge": 5485,
+ "▁conver": 5486,
+ "ím": 5487,
+ "▁XV": 5488,
+ "vider": 5489,
+ "▁January": 5490,
+ "▁usually": 5491,
+ "▁released": 5492,
+ "▁Mi": 5493,
+ "Head": 5494,
+ "iller": 5495,
+ "▁jan": 5496,
+ "▁letter": 5497,
+ "produ": 5498,
+ "rd": 5499,
+ "▁Cam": 5500,
+ ",'": 5501,
+ "▁Ц": 5502,
+ "▁push": 5503,
+ "update": 5504,
+ "▁maybe": 5505,
+ "Http": 5506,
+ "@\"": 5507,
+ "мер": 5508,
+ "service": 5509,
+ "parse": 5510,
+ "▁dass": 5511,
+ "ên": 5512,
+ ")\"": 5513,
+ "more": 5514,
+ "/*": 5515,
+ "▁mas": 5516,
+ "▁likely": 5517,
+ "▁material": 5518,
+ "▁[[": 5519,
+ "▁longer": 5520,
+ "bal": 5521,
+ "▁Archiv": 5522,
+ "igt": 5523,
+ "▁egy": 5524,
+ "idge": 5525,
+ "igu": 5526,
+ "conf": 5527,
+ "▁inc": 5528,
+ "consulté": 5529,
+ "▁mai": 5530,
+ "Work": 5531,
+ "▁гра": 5532,
+ "▁October": 5533,
+ "▁global": 5534,
+ "▁sel": 5535,
+ "▁municip": 5536,
+ "▁viol": 5537,
+ "▁Does": 5538,
+ "▁\\[": 5539,
+ "ском": 5540,
+ "▁compos": 5541,
+ "бря": 5542,
+ "вя": 5543,
+ "▁respons": 5544,
+ "▁considered": 5545,
+ "▁Japan": 5546,
+ "pes": 5547,
+ "osto": 5548,
+ "▁milit": 5549,
+ "SP": 5550,
+ "сы": 5551,
+ "attr": 5552,
+ "cil": 5553,
+ "irectory": 5554,
+ "aving": 5555,
+ "▁Del": 5556,
+ "▁prevent": 5557,
+ "idade": 5558,
+ "git": 5559,
+ "iform": 5560,
+ "outer": 5561,
+ "inct": 5562,
+ "level": 5563,
+ "atever": 5564,
+ "▁repe": 5565,
+ "▁exc": 5566,
+ "дар": 5567,
+ "Style": 5568,
+ "▁Thomas": 5569,
+ "eline": 5570,
+ "▁ж": 5571,
+ "untime": 5572,
+ "▁larg": 5573,
+ "True": 5574,
+ ".*": 5575,
+ "creen": 5576,
+ "yles": 5577,
+ "▁transl": 5578,
+ "▁Со": 5579,
+ "ensions": 5580,
+ "äl": 5581,
+ "isse": 5582,
+ "▁volt": 5583,
+ "cially": 5584,
+ "nik": 5585,
+ ".]": 5586,
+ "▁Stadt": 5587,
+ "мы": 5588,
+ "fill": 5589,
+ "lov": 5590,
+ "▁\"/": 5591,
+ "Sp": 5592,
+ "▁Air": 5593,
+ "Call": 5594,
+ "▁nur": 5595,
+ "Check": 5596,
+ "ience": 5597,
+ "efined": 5598,
+ "▁вре": 5599,
+ "ło": 5600,
+ "dz": 5601,
+ "▁ор": 5602,
+ "iker": 5603,
+ "owa": 5604,
+ "ович": 5605,
+ "ré": 5606,
+ "OL": 5607,
+ "▁linear": 5608,
+ "▁export": 5609,
+ "ahr": 5610,
+ "icial": 5611,
+ "Rep": 5612,
+ "▁natural": 5613,
+ "▁cop": 5614,
+ "▁})": 5615,
+ "ções": 5616,
+ "zz": 5617,
+ "What": 5618,
+ "▁House": 5619,
+ "Ref": 5620,
+ "inger": 5621,
+ "▁taking": 5622,
+ "ně": 5623,
+ "▁Einz": 5624,
+ "▁dam": 5625,
+ "▁issues": 5626,
+ "Builder": 5627,
+ "edit": 5628,
+ "▁prz": 5629,
+ "password": 5630,
+ "Gener": 5631,
+ "rim": 5632,
+ "▁parts": 5633,
+ "---": 5634,
+ "iginal": 5635,
+ "▁Sci": 5636,
+ "▁mother": 5637,
+ "rea": 5638,
+ "▁container": 5639,
+ "дя": 5640,
+ "▁IP": 5641,
+ "▁none": 5642,
+ "▁followed": 5643,
+ "▁ple": 5644,
+ "▁measure": 5645,
+ "▁tout": 5646,
+ "Ext": 5647,
+ "▁TV": 5648,
+ "▁explain": 5649,
+ "▁paper": 5650,
+ "сті": 5651,
+ "ws": 5652,
+ "Wik": 5653,
+ "▁mm": 5654,
+ "▁Norm": 5655,
+ "▁Server": 5656,
+ "font": 5657,
+ "ecause": 5658,
+ "TR": 5659,
+ "▁би": 5660,
+ "La": 5661,
+ "▁ens": 5662,
+ "▁retr": 5663,
+ "▁Sil": 5664,
+ "▁sequence": 5665,
+ "arc": 5666,
+ "IV": 5667,
+ "zá": 5668,
+ "▁Android": 5669,
+ "▁Super": 5670,
+ "▁roz": 5671,
+ "ovie": 5672,
+ "Om": 5673,
+ "▁Well": 5674,
+ "make": 5675,
+ "orph": 5676,
+ "▁Jer": 5677,
+ "▁Ros": 5678,
+ "reference": 5679,
+ "▁features": 5680,
+ "▁Ger": 5681,
+ "▁Leg": 5682,
+ "▁late": 5683,
+ "▁additional": 5684,
+ "▁flo": 5685,
+ "▁его": 5686,
+ "▁algorithm": 5687,
+ "BA": 5688,
+ "kar": 5689,
+ "IP": 5690,
+ "]);": 5691,
+ "▁appears": 5692,
+ "yw": 5693,
+ "▁temp": 5694,
+ "▁aussi": 5695,
+ "method": 5696,
+ "▁pet": 5697,
+ "strap": 5698,
+ "arning": 5699,
+ "▁cut": 5700,
+ "▁Sa": 5701,
+ "▁track": 5702,
+ "▁employ": 5703,
+ "▁inde": 5704,
+ "rav": 5705,
+ "▁generate": 5706,
+ "bes": 5707,
+ "arts": 5708,
+ "Status": 5709,
+ "uge": 5710,
+ "alis": 5711,
+ "▁override": 5712,
+ "▁fi": 5713,
+ "▁lost": 5714,
+ "oted": 5715,
+ "▁room": 5716,
+ "▁calls": 5717,
+ "▁consist": 5718,
+ "рен": 5719,
+ "▁village": 5720,
+ "dist": 5721,
+ "▁techn": 5722,
+ "enza": 5723,
+ "▁роз": 5724,
+ "▁Catalog": 5725,
+ "▁becom": 5726,
+ "rows": 5727,
+ "▁Nel": 5728,
+ "comple": 5729,
+ "▁premi": 5730,
+ "▁rot": 5731,
+ "▁Weblinks": 5732,
+ "▁football": 5733,
+ "▁compar": 5734,
+ "▁live": 5735,
+ "ких": 5736,
+ "▁equival": 5737,
+ "cape": 5738,
+ "▁Gen": 5739,
+ "nder": 5740,
+ "▁Vis": 5741,
+ "▁behind": 5742,
+ "gers": 5743,
+ "voke": 5744,
+ "▁media": 5745,
+ "EX": 5746,
+ "that": 5747,
+ "▁sono": 5748,
+ "▁mysql": 5749,
+ "ev": 5750,
+ "▁rule": 5751,
+ "дов": 5752,
+ "acc": 5753,
+ "▁WHERE": 5754,
+ "ене": 5755,
+ "Grid": 5756,
+ "▁jul": 5757,
+ "▁mort": 5758,
+ "▁generated": 5759,
+ "encia": 5760,
+ "acter": 5761,
+ "clud": 5762,
+ "▁scen": 5763,
+ "▁closed": 5764,
+ "▁Michael": 5765,
+ "▁mount": 5766,
+ ")$,": 5767,
+ "▁drop": 5768,
+ "▁combin": 5769,
+ "tocol": 5770,
+ "▁goes": 5771,
+ "▁geb": 5772,
+ "MD": 5773,
+ "▁Anton": 5774,
+ "▁$(\"": 5775,
+ "Tem": 5776,
+ "▁ca": 5777,
+ "▁instru": 5778,
+ "eds": 5779,
+ "▁tool": 5780,
+ "mys": 5781,
+ "▁route": 5782,
+ "\"))": 5783,
+ "пре": 5784,
+ "▁float": 5785,
+ "▁services": 5786,
+ "▁чи": 5787,
+ "кі": 5788,
+ "embly": 5789,
+ "aker": 5790,
+ "▁Son": 5791,
+ "▁Math": 5792,
+ "asse": 5793,
+ "ously": 5794,
+ "lications": 5795,
+ "▁ru": 5796,
+ "▁що": 5797,
+ "▁Const": 5798,
+ "▁immedi": 5799,
+ "FO": 5800,
+ "oro": 5801,
+ "▁production": 5802,
+ "rei": 5803,
+ "▁jquery": 5804,
+ "annt": 5805,
+ "▁While": 5806,
+ "▁sn": 5807,
+ "▁годи": 5808,
+ "Format": 5809,
+ "▁star": 5810,
+ "▁Sen": 5811,
+ "▁ko": 5812,
+ "NAME": 5813,
+ "▁prés": 5814,
+ "cha": 5815,
+ "what": 5816,
+ "omin": 5817,
+ "endant": 5818,
+ "hy": 5819,
+ "▁observ": 5820,
+ "▁prefer": 5821,
+ "ун": 5822,
+ "▁constructor": 5823,
+ "bs": 5824,
+ "▁mac": 5825,
+ "▁Bre": 5826,
+ "▁Instit": 5827,
+ "▁story": 5828,
+ "▁symbol": 5829,
+ "eles": 5830,
+ "ße": 5831,
+ "asing": 5832,
+ "▁west": 5833,
+ "ians": 5834,
+ "▁master": 5835,
+ "ез": 5836,
+ "▁ways": 5837,
+ "bm": 5838,
+ "▁pick": 5839,
+ "▁depart": 5840,
+ "Back": 5841,
+ "enk": 5842,
+ "lipse": 5843,
+ "▁math": 5844,
+ "▁Francis": 5845,
+ "▁December": 5846,
+ "fs": 5847,
+ "rum": 5848,
+ "▁development": 5849,
+ "LT": 5850,
+ "ernel": 5851,
+ "▁True": 5852,
+ "▁More": 5853,
+ "rangle": 5854,
+ "▁conditions": 5855,
+ "Options": 5856,
+ "▁gli": 5857,
+ "▁operation": 5858,
+ "ék": 5859,
+ "acht": 5860,
+ "ights": 5861,
+ "▁mist": 5862,
+ "anda": 5863,
+ "▁energy": 5864,
+ "▁же": 5865,
+ "▁women": 5866,
+ "akt": 5867,
+ "▁CH": 5868,
+ "gebra": 5869,
+ "▁meet": 5870,
+ "iu": 5871,
+ "well": 5872,
+ "öl": 5873,
+ "▁government": 5874,
+ "▁Jos": 5875,
+ "ieg": 5876,
+ "▁syntax": 5877,
+ "fix": 5878,
+ "▁Pet": 5879,
+ "jquery": 5880,
+ "▁card": 5881,
+ "▁principal": 5882,
+ "▁dru": 5883,
+ "▁territ": 5884,
+ "▁пов": 5885,
+ "▁SS": 5886,
+ "рии": 5887,
+ "tres": 5888,
+ "agne": 5889,
+ "lying": 5890,
+ "tilde": 5891,
+ "bern": 5892,
+ "enter": 5893,
+ "Per": 5894,
+ "▁somet": 5895,
+ "Load": 5896,
+ "lice": 5897,
+ "▁sous": 5898,
+ "▁Louis": 5899,
+ "▁logic": 5900,
+ "▁Other": 5901,
+ "▁cir": 5902,
+ "év": 5903,
+ "chron": 5904,
+ "▁han": 5905,
+ "▁margin": 5906,
+ "Window": 5907,
+ "ères": 5908,
+ "nych": 5909,
+ "push": 5910,
+ "bolds": 5911,
+ "▁layout": 5912,
+ "▁[`": 5913,
+ "Char": 5914,
+ "▁Cap": 5915,
+ "boldsymbol": 5916,
+ "▁Roman": 5917,
+ "▁Max": 5918,
+ ":(": 5919,
+ "▁Code": 5920,
+ "ising": 5921,
+ "▁states": 5922,
+ "▁existing": 5923,
+ "support": 5924,
+ "▁research": 5925,
+ "licate": 5926,
+ "vari": 5927,
+ "▁bij": 5928,
+ "▁appe": 5929,
+ "▁happens": 5930,
+ "\\\"": 5931,
+ "▁concern": 5932,
+ "west": 5933,
+ "▁saying": 5934,
+ "pid": 5935,
+ "▁recogn": 5936,
+ "▁Het": 5937,
+ "Child": 5938,
+ "▁cs": 5939,
+ "\\,": 5940,
+ "▁clean": 5941,
+ "lections": 5942,
+ "access": 5943,
+ "ву": 5944,
+ "про": 5945,
+ "acity": 5946,
+ "▁Off": 5947,
+ "▁easily": 5948,
+ "èque": 5949,
+ "▁jako": 5950,
+ "▁iz": 5951,
+ "▁Ha": 5952,
+ "▁Det": 5953,
+ "▁forma": 5954,
+ "sche": 5955,
+ "swers": 5956,
+ "▁offer": 5957,
+ "quired": 5958,
+ "Users": 5959,
+ "▁subst": 5960,
+ ">(": 5961,
+ "▁ground": 5962,
+ "unn": 5963,
+ "rod": 5964,
+ "spe": 5965,
+ "ursor": 5966,
+ "▁leave": 5967,
+ "erk": 5968,
+ "▁tal": 5969,
+ "▁bottom": 5970,
+ "IO": 5971,
+ "▁popular": 5972,
+ "igo": 5973,
+ "▁Time": 5974,
+ "values": 5975,
+ "▁Loc": 5976,
+ "▁Club": 5977,
+ "▁anche": 5978,
+ "iał": 5979,
+ "ії": 5980,
+ "Omega": 5981,
+ "▁located": 5982,
+ "Url": 5983,
+ "▁Esp": 5984,
+ "лы": 5985,
+ "ць": 5986,
+ "ulate": 5987,
+ "▁join": 5988,
+ "aves": 5989,
+ "vet": 5990,
+ "lio": 5991,
+ "remove": 5992,
+ "▁token": 5993,
+ "▁optim": 5994,
+ "▁claim": 5995,
+ "ological": 5996,
+ "▁css": 5997,
+ "▁although": 5998,
+ "▁priv": 5999,
+ "▁Ba": 6000,
+ "ül": 6001,
+ "entication": 6002,
+ "▁ven": 6003,
+ "Server": 6004,
+ "▁Cong": 6005,
+ "NET": 6006,
+ "CON": 6007,
+ "dt": 6008,
+ "perties": 6009,
+ "▁epis": 6010,
+ "wikipedia": 6011,
+ "▁engine": 6012,
+ "▁fer": 6013,
+ "getElement": 6014,
+ "▁Cla": 6015,
+ "ří": 6016,
+ "▁rom": 6017,
+ "varepsilon": 6018,
+ "▁prime": 6019,
+ "istry": 6020,
+ "pected": 6021,
+ "orage": 6022,
+ "▁touch": 6023,
+ "▁['": 6024,
+ "▁dan": 6025,
+ "Em": 6026,
+ "aciones": 6027,
+ "Can": 6028,
+ "▁whom": 6029,
+ "▁behavior": 6030,
+ "▁strings": 6031,
+ "▁Europ": 6032,
+ "▁Rom": 6033,
+ "circ": 6034,
+ "▁pun": 6035,
+ "▁register": 6036,
+ "buntu": 6037,
+ "rain": 6038,
+ "Ob": 6039,
+ "TA": 6040,
+ "▁sometimes": 6041,
+ "▁ment": 6042,
+ "▁integer": 6043,
+ "▁Jac": 6044,
+ "legate": 6045,
+ "othing": 6046,
+ "▁sound": 6047,
+ "laces": 6048,
+ "▁Ба": 6049,
+ "rb": 6050,
+ "di": 6051,
+ "ления": 6052,
+ "▁themselves": 6053,
+ "▁Black": 6054,
+ "▁settings": 6055,
+ "▁norm": 6056,
+ "▁runs": 6057,
+ "▁NOT": 6058,
+ "KE": 6059,
+ "▁perhaps": 6060,
+ "▁Я": 6061,
+ "▁mol": 6062,
+ "▁ans": 6063,
+ "atre": 6064,
+ "▁Dies": 6065,
+ "Token": 6066,
+ "anie": 6067,
+ "▁allowed": 6068,
+ "Range": 6069,
+ "▁Gro": 6070,
+ "via": 6071,
+ "utorial": 6072,
+ "ensor": 6073,
+ "estival": 6074,
+ ");\r": 6075,
+ "краї": 6076,
+ "▁turned": 6077,
+ "scope": 6078,
+ "▁bien": 6079,
+ "=$": 6080,
+ "▁extension": 6081,
+ "atore": 6082,
+ "▁Ро": 6083,
+ "▁specify": 6084,
+ "edu": 6085,
+ "Datos": 6086,
+ "▁stored": 6087,
+ "▁parse": 6088,
+ "▁answers": 6089,
+ "ills": 6090,
+ "▁heard": 6091,
+ "lu": 6092,
+ "▁THE": 6093,
+ "▁gén": 6094,
+ "▁ful": 6095,
+ "ez": 6096,
+ "▁Prem": 6097,
+ "then": 6098,
+ "dp": 6099,
+ "ського": 6100,
+ "▁Si": 6101,
+ "ço": 6102,
+ "Edit": 6103,
+ "ків": 6104,
+ "▁Ли": 6105,
+ "▁Sing": 6106,
+ "▁categ": 6107,
+ "Equ": 6108,
+ "▁guer": 6109,
+ "Width": 6110,
+ "▁Christian": 6111,
+ "stat": 6112,
+ "Write": 6113,
+ "▁woman": 6114,
+ "wood": 6115,
+ "Vis": 6116,
+ "раз": 6117,
+ "▁$$\\": 6118,
+ "oder": 6119,
+ "▁bool": 6120,
+ "▁international": 6121,
+ "ность": 6122,
+ "▁Richard": 6123,
+ "▁addition": 6124,
+ "▁Music": 6125,
+ "▁aber": 6126,
+ "tó": 6127,
+ "▁hier": 6128,
+ "ugh": 6129,
+ "▁pob": 6130,
+ "▁tables": 6131,
+ "Do": 6132,
+ "▁higher": 6133,
+ "psi": 6134,
+ "rá": 6135,
+ "▁active": 6136,
+ "▁Table": 6137,
+ "ње": 6138,
+ "▁description": 6139,
+ "▁seemed": 6140,
+ "íst": 6141,
+ "▁myself": 6142,
+ "▁menu": 6143,
+ "del": 6144,
+ "▁ž": 6145,
+ "ele": 6146,
+ "Aut": 6147,
+ "▁гру": 6148,
+ "mut": 6149,
+ "oon": 6150,
+ "asc": 6151,
+ "bug": 6152,
+ "▁moved": 6153,
+ "CL": 6154,
+ "▁datas": 6155,
+ "SO": 6156,
+ "оло": 6157,
+ "▁Georg": 6158,
+ "▁reach": 6159,
+ ":\"": 6160,
+ "▁evalu": 6161,
+ "▁Hel": 6162,
+ "▁River": 6163,
+ "▁Ар": 6164,
+ "////": 6165,
+ "▁sets": 6166,
+ "▁Olymp": 6167,
+ "Adapter": 6168,
+ ".'": 6169,
+ "overn": 6170,
+ "▁Lord": 6171,
+ "!--": 6172,
+ "jpg": 6173,
+ "imento": 6174,
+ "▁Prof": 6175,
+ "▁achieve": 6176,
+ "}:": 6177,
+ "▁incor": 6178,
+ "▁onder": 6179,
+ "engl": 6180,
+ "ABLE": 6181,
+ "▁Mary": 6182,
+ "▁waren": 6183,
+ "lage": 6184,
+ "Dec": 6185,
+ "англ": 6186,
+ "encias": 6187,
+ "лей": 6188,
+ "▁Machine": 6189,
+ "▁Ан": 6190,
+ "uda": 6191,
+ "▁ś": 6192,
+ "▁XX": 6193,
+ "only": 6194,
+ "ление": 6195,
+ "▁también": 6196,
+ "nej": 6197,
+ "▁relative": 6198,
+ "▁hours": 6199,
+ "▁indeed": 6200,
+ "undo": 6201,
+ "ingu": 6202,
+ "area": 6203,
+ "▁Create": 6204,
+ "beit": 6205,
+ "▁removed": 6206,
+ "master": 6207,
+ "haus": 6208,
+ "▁Bern": 6209,
+ "▁speed": 6210,
+ "▁Bay": 6211,
+ "▁Att": 6212,
+ "▁None": 6213,
+ "application": 6214,
+ "üd": 6215,
+ "▁fit": 6216,
+ "▁Maria": 6217,
+ "▁nord": 6218,
+ "▁split": 6219,
+ "▁stru": 6220,
+ "▁official": 6221,
+ "▁execute": 6222,
+ "ouve": 6223,
+ "{{": 6224,
+ "▁Ap": 6225,
+ "▁ку": 6226,
+ "IL": 6227,
+ "▁^": 6228,
+ "dim": 6229,
+ "▁setup": 6230,
+ "ск": 6231,
+ "▁share": 6232,
+ "▁minutes": 6233,
+ "gle": 6234,
+ "oco": 6235,
+ "stell": 6236,
+ "▁Coun": 6237,
+ "▁temper": 6238,
+ "keit": 6239,
+ "ський": 6240,
+ "ao": 6241,
+ "▁Long": 6242,
+ "(&": 6243,
+ "кан": 6244,
+ "▁dens": 6245,
+ "But": 6246,
+ "XX": 6247,
+ "DATE": 6248,
+ "gan": 6249,
+ ".).": 6250,
+ "▁entry": 6251,
+ "install": 6252,
+ "▁зна": 6253,
+ "▁Som": 6254,
+ "Command": 6255,
+ "ßen": 6256,
+ "▁starting": 6257,
+ "▁sto": 6258,
+ "IG": 6259,
+ "▁minim": 6260,
+ "▁explicit": 6261,
+ "▁bytes": 6262,
+ "▁party": 6263,
+ "tober": 6264,
+ "▁Grand": 6265,
+ "▁Vor": 6266,
+ "▁leur": 6267,
+ "Document": 6268,
+ "erc": 6269,
+ "ensive": 6270,
+ "CP": 6271,
+ "env": 6272,
+ "▁arguments": 6273,
+ "▁Gran": 6274,
+ "arily": 6275,
+ "▁lin": 6276,
+ "tn": 6277,
+ "(-": 6278,
+ "geq": 6279,
+ "▁Famil": 6280,
+ "▁Бо": 6281,
+ "▁tour": 6282,
+ "▁nav": 6283,
+ "▁properly": 6284,
+ "▁Mrs": 6285,
+ "▁Mel": 6286,
+ "▁scale": 6287,
+ "astic": 6288,
+ "ds": 6289,
+ "▁Sir": 6290,
+ "▁Church": 6291,
+ "}^{\\": 6292,
+ "you": 6293,
+ "/.": 6294,
+ "So": 6295,
+ "▁brought": 6296,
+ "▁role": 6297,
+ "▁Sur": 6298,
+ "▁fond": 6299,
+ "▁ges": 6300,
+ "że": 6301,
+ "eten": 6302,
+ "▁était": 6303,
+ "SER": 6304,
+ "▁которы": 6305,
+ "▁equation": 6306,
+ "aspx": 6307,
+ "▁Afr": 6308,
+ "▁dit": 6309,
+ "empty": 6310,
+ "alement": 6311,
+ "wrap": 6312,
+ "▁Bet": 6313,
+ "▁collect": 6314,
+ "▁git": 6315,
+ "▁vie": 6316,
+ "▁..": 6317,
+ "рой": 6318,
+ "▁": 6319,
+ "▁educ": 6320,
+ "kl": 6321,
+ "ensis": 6322,
+ "▁OR": 6323,
+ "▁Hi": 6324,
+ "▁Cour": 6325,
+ "бы": 6326,
+ "cert": 6327,
+ "▁Ges": 6328,
+ "essor": 6329,
+ "Main": 6330,
+ "▁лю": 6331,
+ "cade": 6332,
+ "dot": 6333,
+ "augh": 6334,
+ "hib": 6335,
+ "▁automatically": 6336,
+ "▁spir": 6337,
+ "present": 6338,
+ "▁February": 6339,
+ "▁Elle": 6340,
+ "custom": 6341,
+ "▁proget": 6342,
+ "▁administr": 6343,
+ "AA": 6344,
+ "▁born": 6345,
+ "▁College": 6346,
+ "athol": 6347,
+ "`)": 6348,
+ "ierre": 6349,
+ "▁ran": 6350,
+ "▁profession": 6351,
+ "ogen": 6352,
+ "}_{\\": 6353,
+ "▁activity": 6354,
+ "▁scroll": 6355,
+ "▁prove": 6356,
+ "ibrary": 6357,
+ "eries": 6358,
+ "Read": 6359,
+ "year": 6360,
+ "▁lang": 6361,
+ "Det": 6362,
+ "▁knew": 6363,
+ "▁protected": 6364,
+ "▁wor": 6365,
+ "▁effic": 6366,
+ "▁rég": 6367,
+ "▁theory": 6368,
+ "▁published": 6369,
+ "real": 6370,
+ "▁Tour": 6371,
+ "▁durante": 6372,
+ "äs": 6373,
+ "▁positive": 6374,
+ "▁forward": 6375,
+ "▁Rel": 6376,
+ "{\"": 6377,
+ "park": 6378,
+ "▁Um": 6379,
+ "▁eer": 6380,
+ "enta": 6381,
+ "▁imag": 6382,
+ "ної": 6383,
+ "piel": 6384,
+ "▁jQuery": 6385,
+ "isme": 6386,
+ "chni": 6387,
+ "organ": 6388,
+ "▁args": 6389,
+ "oir": 6390,
+ "heim": 6391,
+ "rian": 6392,
+ "eless": 6393,
+ "uses": 6394,
+ "дин": 6395,
+ "ición": 6396,
+ "▁indust": 6397,
+ "▁wish": 6398,
+ "ány": 6399,
+ "oca": 6400,
+ "▁angular": 6401,
+ "ieved": 6402,
+ "▁occur": 6403,
+ "SELECT": 6404,
+ "onia": 6405,
+ "admin": 6406,
+ "▁Best": 6407,
+ "▁это": 6408,
+ "огра": 6409,
+ "▁loss": 6410,
+ "▁bal": 6411,
+ "▁Рос": 6412,
+ "▁career": 6413,
+ "▁пе": 6414,
+ "IX": 6415,
+ "▁fall": 6416,
+ "▁Rob": 6417,
+ "▁OP": 6418,
+ "ened": 6419,
+ "graphics": 6420,
+ "▁coming": 6421,
+ "Update": 6422,
+ "▁died": 6423,
+ "eden": 6424,
+ "▁abs": 6425,
+ "▁inner": 6426,
+ "▁trav": 6427,
+ "стоя": 6428,
+ "zą": 6429,
+ "ép": 6430,
+ "▁Group": 6431,
+ "▁cel": 6432,
+ "▁stuff": 6433,
+ "▁situation": 6434,
+ "▁${": 6435,
+ "acle": 6436,
+ "▁purpose": 6437,
+ "▁Fire": 6438,
+ "▁Oh": 6439,
+ "▁Second": 6440,
+ "▁upload": 6441,
+ "ostał": 6442,
+ "ющи": 6443,
+ "Auth": 6444,
+ "▁showing": 6445,
+ "▁completely": 6446,
+ "avel": 6447,
+ "bd": 6448,
+ "▁proced": 6449,
+ "▁Ö": 6450,
+ "control": 6451,
+ "▁thank": 6452,
+ "undred": 6453,
+ "▁tom": 6454,
+ "▁examples": 6455,
+ "▁remember": 6456,
+ "▁рабо": 6457,
+ "▁possib": 6458,
+ "▁detect": 6459,
+ "▁poor": 6460,
+ "▁Op": 6461,
+ "▁century": 6462,
+ "utter": 6463,
+ "▁login": 6464,
+ "unst": 6465,
+ "Output": 6466,
+ "▁otherwise": 6467,
+ "lan": 6468,
+ "тур": 6469,
+ "▁сов": 6470,
+ "▁groups": 6471,
+ "rip": 6472,
+ "▁shell": 6473,
+ "▁district": 6474,
+ "▁records": 6475,
+ "▁siè": 6476,
+ "fortun": 6477,
+ "enty": 6478,
+ "▁Tre": 6479,
+ "▁changing": 6480,
+ "след": 6481,
+ "aught": 6482,
+ "▁deep": 6483,
+ "subset": 6484,
+ "agy": 6485,
+ "endar": 6486,
+ "jax": 6487,
+ "OM": 6488,
+ "El": 6489,
+ "imate": 6490,
+ "ardo": 6491,
+ "▁plot": 6492,
+ "▁visit": 6493,
+ "▁bug": 6494,
+ "▁все": 6495,
+ "▁opened": 6496,
+ "▁repla": 6497,
+ "▁Henry": 6498,
+ "▁pp": 6499,
+ "bas": 6500,
+ "▁dark": 6501,
+ "▁Martin": 6502,
+ "▁resource": 6503,
+ "iling": 6504,
+ "▁watch": 6505,
+ "replace": 6506,
+ "▁release": 6507,
+ "Location": 6508,
+ "▁learning": 6509,
+ "menu": 6510,
+ "▁allows": 6511,
+ "ър": 6512,
+ "Length": 6513,
+ "▁whatever": 6514,
+ "▁pages": 6515,
+ "▁compiler": 6516,
+ "▁также": 6517,
+ "▁Pan": 6518,
+ "command": 6519,
+ "▁road": 6520,
+ "▁unless": 6521,
+ "`?": 6522,
+ "▁discover": 6523,
+ "▁он": 6524,
+ "}]": 6525,
+ "bour": 6526,
+ "▁Could": 6527,
+ "▁regex": 6528,
+ "▁ps": 6529,
+ "CD": 6530,
+ "из": 6531,
+ "▁wife": 6532,
+ "amenti": 6533,
+ "▁fair": 6534,
+ "▁DB": 6535,
+ "▁Cup": 6536,
+ "enen": 6537,
+ "ajax": 6538,
+ "othèque": 6539,
+ "▁seiner": 6540,
+ "icker": 6541,
+ "ám": 6542,
+ "exchange": 6543,
+ "oles": 6544,
+ "IF": 6545,
+ "▁До": 6546,
+ "ohn": 6547,
+ "▁grow": 6548,
+ "▁Thus": 6549,
+ "spec": 6550,
+ "▁hatte": 6551,
+ "#,": 6552,
+ "allel": 6553,
+ "▁rate": 6554,
+ "▁central": 6555,
+ "▁Van": 6556,
+ "iforn": 6557,
+ "Run": 6558,
+ "▁study": 6559,
+ "▁XML": 6560,
+ "▁Che": 6561,
+ "▁beaut": 6562,
+ "mid": 6563,
+ "▁advance": 6564,
+ "Ver": 6565,
+ "тя": 6566,
+ "▁hands": 6567,
+ "▁lay": 6568,
+ "▁š": 6569,
+ "▁OS": 6570,
+ "▁{}": 6571,
+ "Pre": 6572,
+ "▁Hall": 6573,
+ "imp": 6574,
+ "▁sun": 6575,
+ "▁steps": 6576,
+ "▁jud": 6577,
+ "qui": 6578,
+ "▁boot": 6579,
+ "▁%>": 6580,
+ "▁Ва": 6581,
+ "nost": 6582,
+ "▁nem": 6583,
+ "▁pen": 6584,
+ "Open": 6585,
+ "▁church": 6586,
+ "кон": 6587,
+ "▁average": 6588,
+ "▁comments": 6589,
+ "▁corresponding": 6590,
+ "levant": 6591,
+ "▁bed": 6592,
+ "▁meaning": 6593,
+ "Version": 6594,
+ "Link": 6595,
+ "bel": 6596,
+ "▁extract": 6597,
+ "ść": 6598,
+ "▁IV": 6599,
+ "▁Ir": 6600,
+ "▁computer": 6601,
+ "▁affect": 6602,
+ "▁Ста": 6603,
+ "AX": 6604,
+ "sort": 6605,
+ "▁species": 6606,
+ "▁Oper": 6607,
+ "▁hash": 6608,
+ "ches": 6609,
+ "▁Einzeln": 6610,
+ "▁keys": 6611,
+ "▁marzo": 6612,
+ "▁interpret": 6613,
+ "hood": 6614,
+ "▁coordin": 6615,
+ "ös": 6616,
+ "rage": 6617,
+ "etz": 6618,
+ "iza": 6619,
+ "дер": 6620,
+ "üt": 6621,
+ "^*": 6622,
+ "▁modify": 6623,
+ "▁termin": 6624,
+ "▁cred": 6625,
+ "zon": 6626,
+ "ную": 6627,
+ "▁mie": 6628,
+ "▁''": 6629,
+ "▁Mos": 6630,
+ "▁connected": 6631,
+ "NO": 6632,
+ "▁compile": 6633,
+ "▁\"\\": 6634,
+ "▁cat": 6635,
+ "fiddle": 6636,
+ "uta": 6637,
+ "Access": 6638,
+ "▁Sto": 6639,
+ "▁Bur": 6640,
+ "▁north": 6641,
+ "Gamma": 6642,
+ "▁alloc": 6643,
+ "Init": 6644,
+ "▁Link": 6645,
+ "ialize": 6646,
+ "Impl": 6647,
+ "oupe": 6648,
+ "ropri": 6649,
+ "▁Gold": 6650,
+ "▁solo": 6651,
+ "▁Dist": 6652,
+ ",-": 6653,
+ "nav": 6654,
+ "▁alert": 6655,
+ "esis": 6656,
+ "▁Os": 6657,
+ "///": 6658,
+ "▁feb": 6659,
+ "▁-->": 6660,
+ "foot": 6661,
+ "▁Fried": 6662,
+ "▁Einzelnach": 6663,
+ "▁rev": 6664,
+ "zeit": 6665,
+ "▁Stat": 6666,
+ "▁Seg": 6667,
+ "▁blo": 6668,
+ "wick": 6669,
+ "EL": 6670,
+ "caption": 6671,
+ "header": 6672,
+ "▁president": 6673,
+ "▁multip": 6674,
+ "▁Einzelnachweise": 6675,
+ "▁seine": 6676,
+ "?”": 6677,
+ "Function": 6678,
+ "▁Stand": 6679,
+ "▁Function": 6680,
+ "▁?>": 6681,
+ "▁Bill": 6682,
+ "▁spect": 6683,
+ "▁redirect": 6684,
+ "rupt": 6685,
+ "▁walk": 6686,
+ "вши": 6687,
+ "springframework": 6688,
+ "place": 6689,
+ "ého": 6690,
+ "Entity": 6691,
+ "▁Service": 6692,
+ "inte": 6693,
+ "▁training": 6694,
+ "▁(`": 6695,
+ "фор": 6696,
+ "▁кра": 6697,
+ "aur": 6698,
+ "▁fetch": 6699,
+ "▁†": 6700,
+ "▁même": 6701,
+ "▁('": 6702,
+ "atively": 6703,
+ "▁execut": 6704,
+ "äch": 6705,
+ "▁Catalogue": 6706,
+ "based": 6707,
+ "Attribute": 6708,
+ "▁spring": 6709,
+ "phone": 6710,
+ "тра": 6711,
+ "▁пи": 6712,
+ "тера": 6713,
+ "▁`\\": 6714,
+ "▁Od": 6715,
+ "One": 6716,
+ "send": 6717,
+ "bon": 6718,
+ "▁°": 6719,
+ "MO": 6720,
+ "▁asking": 6721,
+ "▁où": 6722,
+ "▁ingår": 6723,
+ "▁testing": 6724,
+ "▁фа": 6725,
+ "▁Book": 6726,
+ "imm": 6727,
+ "▁progress": 6728,
+ "bro": 6729,
+ "First": 6730,
+ "▁phot": 6731,
+ "▁ON": 6732,
+ "Template": 6733,
+ "developer": 6734,
+ "annot": 6735,
+ "▁>=": 6736,
+ "mission": 6737,
+ "▁któ": 6738,
+ "pc": 6739,
+ "bach": 6740,
+ "zent": 6741,
+ "ued": 6742,
+ "▁ones": 6743,
+ "ји": 6744,
+ "▁rout": 6745,
+ "▁Ки": 6746,
+ "Post": 6747,
+ "ції": 6748,
+ "▁Vir": 6749,
+ "nek": 6750,
+ "aging": 6751,
+ "▁ок": 6752,
+ "izont": 6753,
+ "▁agosto": 6754,
+ "▁choose": 6755,
+ "▁\r": 6756,
+ "▁systems": 6757,
+ "loss": 6758,
+ "iente": 6759,
+ "▁Cre": 6760,
+ "▁contra": 6761,
+ "ums": 6762,
+ "▁beginning": 6763,
+ "emy": 6764,
+ "istics": 6765,
+ "▁served": 6766,
+ "Down": 6767,
+ "options": 6768,
+ "▁Govern": 6769,
+ "▁BY": 6770,
+ "▁jest": 6771,
+ "té": 6772,
+ "▁continue": 6773,
+ "pers": 6774,
+ "▁easier": 6775,
+ "▁cos": 6776,
+ "esso": 6777,
+ ">>": 6778,
+ "Net": 6779,
+ "▁Bor": 6780,
+ "▁Cr": 6781,
+ "▁transfer": 6782,
+ "▁CSS": 6783,
+ "▁finns": 6784,
+ "▁хо": 6785,
+ "username": 6786,
+ "▁constru": 6787,
+ "▁pain": 6788,
+ "▁Tem": 6789,
+ "▁specified": 6790,
+ "▁brit": 6791,
+ "ские": 6792,
+ "irk": 6793,
+ "rapper": 6794,
+ "▁counter": 6795,
+ "▁[\"": 6796,
+ "oded": 6797,
+ "дан": 6798,
+ "property": 6799,
+ "hard": 6800,
+ "istrict": 6801,
+ ")/": 6802,
+ "▁Pour": 6803,
+ "▁Where": 6804,
+ "▁===": 6805,
+ "▁sowie": 6806,
+ "▁Про": 6807,
+ "▁dess": 6808,
+ "▁tras": 6809,
+ "▁уча": 6810,
+ "▁Over": 6811,
+ "note": 6812,
+ "▁America": 6813,
+ "cp": 6814,
+ "▁grande": 6815,
+ "Me": 6816,
+ ")-": 6817,
+ "Mode": 6818,
+ "▁passing": 6819,
+ "▁giving": 6820,
+ "Cl": 6821,
+ "}/": 6822,
+ "Menu": 6823,
+ "!!": 6824,
+ "angular": 6825,
+ "▁launch": 6826,
+ "varphi": 6827,
+ "▁Johann": 6828,
+ "▁foreach": 6829,
+ "ró": 6830,
+ "sequ": 6831,
+ "ifi": 6832,
+ "Am": 6833,
+ "arp": 6834,
+ "▁buffer": 6835,
+ "▁ni": 6836,
+ "▁mix": 6837,
+ "▁Museum": 6838,
+ "▁meant": 6839,
+ "asi": 6840,
+ "▁kan": 6841,
+ "прав": 6842,
+ "Comp": 6843,
+ "istoire": 6844,
+ "iful": 6845,
+ "jer": 6846,
+ "issions": 6847,
+ "Resource": 6848,
+ "▁воз": 6849,
+ "▁ST": 6850,
+ "▁solutions": 6851,
+ "▁belong": 6852,
+ "▁Associ": 6853,
+ "cf": 6854,
+ "▁Mär": 6855,
+ "▁grid": 6856,
+ "Mult": 6857,
+ "▁requires": 6858,
+ "kk": 6859,
+ "▁teach": 6860,
+ "emeinde": 6861,
+ "▁square": 6862,
+ "▁коман": 6863,
+ "▁Event": 6864,
+ "▁rules": 6865,
+ "▁bur": 6866,
+ "▁eing": 6867,
+ "▁Mai": 6868,
+ "▁nam": 6869,
+ "▁slä": 6870,
+ "hör": 6871,
+ "▁tip": 6872,
+ "▁Literatur": 6873,
+ "▁scope": 6874,
+ "overline": 6875,
+ "▁exit": 6876,
+ ")?": 6877,
+ "bet": 6878,
+ "▁vict": 6879,
+ "Off": 6880,
+ "▁approxim": 6881,
+ "▁Geb": 6882,
+ "ktop": 6883,
+ "heit": 6884,
+ "▁Ю": 6885,
+ "template": 6886,
+ "рон": 6887,
+ "▁uno": 6888,
+ "Serv": 6889,
+ "▁framework": 6890,
+ "operator": 6891,
+ "▁generally": 6892,
+ "▁hundred": 6893,
+ "▁divers": 6894,
+ "ovi": 6895,
+ "▁rés": 6896,
+ "abs": 6897,
+ "▁gal": 6898,
+ "çais": 6899,
+ "▁feet": 6900,
+ "▁virtual": 6901,
+ "czy": 6902,
+ "ску": 6903,
+ "./": 6904,
+ "hu": 6905,
+ "ancy": 6906,
+ "▁recommend": 6907,
+ "▁під": 6908,
+ "▁money": 6909,
+ "▁versions": 6910,
+ "▁helps": 6911,
+ "▁Hor": 6912,
+ "Items": 6913,
+ "look": 6914,
+ "connect": 6915,
+ "anges": 6916,
+ "ViewController": 6917,
+ "elijk": 6918,
+ "▁occup": 6919,
+ "▁editor": 6920,
+ "auto": 6921,
+ "ög": 6922,
+ "▁seconds": 6923,
+ "▁obvious": 6924,
+ "vm": 6925,
+ "akes": 6926,
+ "▁gegen": 6927,
+ "▁til": 6928,
+ "jection": 6929,
+ "лення": 6930,
+ "▁operations": 6931,
+ "▁East": 6932,
+ "ogy": 6933,
+ "▁Polit": 6934,
+ "uten": 6935,
+ "▁Joseph": 6936,
+ "\"`": 6937,
+ "▁Company": 6938,
+ "▁callback": 6939,
+ "▁sen": 6940,
+ "cción": 6941,
+ "▁associated": 6942,
+ "▁containing": 6943,
+ "▁practice": 6944,
+ "elijke": 6945,
+ "oke": 6946,
+ "éra": 6947,
+ "uns": 6948,
+ "anta": 6949,
+ "vey": 6950,
+ "zu": 6951,
+ "▁Bes": 6952,
+ "▁Flor": 6953,
+ "mem": 6954,
+ "ycz": 6955,
+ "▁architect": 6956,
+ "▁anni": 6957,
+ "▁contact": 6958,
+ "YPE": 6959,
+ "▁Cas": 6960,
+ "▁полу": 6961,
+ "ovo": 6962,
+ "▁bring": 6963,
+ "▁concept": 6964,
+ "▁js": 6965,
+ "▁Referencias": 6966,
+ "emble": 6967,
+ "▁н": 6968,
+ "▁supported": 6969,
+ "Big": 6970,
+ "▁Hans": 6971,
+ "erv": 6972,
+ "▁Maj": 6973,
+ "▁arriv": 6974,
+ "▁Have": 6975,
+ "▁probability": 6976,
+ "▁Pop": 6977,
+ "▁Pass": 6978,
+ "token": 6979,
+ "Provider": 6980,
+ "▁Ra": 6981,
+ "Reader": 6982,
+ "ooth": 6983,
+ "lap": 6984,
+ "▁assist": 6985,
+ "adow": 6986,
+ "▁tests": 6987,
+ "сси": 6988,
+ "▁king": 6989,
+ "langle": 6990,
+ "▁Sum": 6991,
+ "OIN": 6992,
+ "▁security": 6993,
+ "nis": 6994,
+ "../": 6995,
+ "▁basic": 6996,
+ "unity": 6997,
+ "`:": 6998,
+ "▁кото": 6999,
+ "kow": 7000,
+ "▁Bibliothèque": 7001,
+ "asion": 7002,
+ "alo": 7003,
+ "ifest": 7004,
+ "▁novembre": 7005,
+ "▁peu": 7006,
+ "▁Ж": 7007,
+ "enschaft": 7008,
+ "clus": 7009,
+ "ју": 7010,
+ "Height": 7011,
+ "ún": 7012,
+ "▁tur": 7013,
+ "▁ideas": 7014,
+ "▁ces": 7015,
+ "frak": 7016,
+ "▁premier": 7017,
+ "itation": 7018,
+ "▁sé": 7019,
+ "HTML": 7020,
+ "▁Royal": 7021,
+ "ської": 7022,
+ "▁byte": 7023,
+ "PS": 7024,
+ "▁segu": 7025,
+ "inen": 7026,
+ "▁Great": 7027,
+ "▁Ку": 7028,
+ "▁external": 7029,
+ "Title": 7030,
+ "Top": 7031,
+ "Process": 7032,
+ "ität": 7033,
+ "▁`/": 7034,
+ "▁secret": 7035,
+ "pository": 7036,
+ "▁potential": 7037,
+ "▁Bud": 7038,
+ "names": 7039,
+ "asons": 7040,
+ "stackexchange": 7041,
+ "background": 7042,
+ "пер": 7043,
+ "сов": 7044,
+ "after": 7045,
+ "▁pero": 7046,
+ "▁software": 7047,
+ "▁sed": 7048,
+ "▁arrays": 7049,
+ "tmp": 7050,
+ "▁asp": 7051,
+ "scale": 7052,
+ "▁Lat": 7053,
+ "anal": 7054,
+ "▁gem": 7055,
+ "PU": 7056,
+ "▁Altri": 7057,
+ "That": 7058,
+ "▁Ни": 7059,
+ "ifact": 7060,
+ "Address": 7061,
+ "▁south": 7062,
+ "▁formula": 7063,
+ "▁Colleg": 7064,
+ "▁ін": 7065,
+ "ktion": 7066,
+ "▁sac": 7067,
+ "SH": 7068,
+ "ajo": 7069,
+ "etc": 7070,
+ "vc": 7071,
+ "`](": 7072,
+ "▁Dur": 7073,
+ "▁Ме": 7074,
+ "▁Smith": 7075,
+ "items": 7076,
+ "CK": 7077,
+ "elo": 7078,
+ "▁plugin": 7079,
+ "▁serie": 7080,
+ "ienne": 7081,
+ "▁или": 7082,
+ "Mar": 7083,
+ "▁Image": 7084,
+ "got": 7085,
+ "andas": 7086,
+ "▁matches": 7087,
+ "▁worth": 7088,
+ "▁Deb": 7089,
+ "▁cache": 7090,
+ "▁felt": 7091,
+ "ersch": 7092,
+ "izes": 7093,
+ "Oper": 7094,
+ "▁Jahre": 7095,
+ "▁commune": 7096,
+ "thread": 7097,
+ "▁ny": 7098,
+ "dec": 7099,
+ "ouw": 7100,
+ "▁surface": 7101,
+ "▁Por": 7102,
+ "▁Street": 7103,
+ "при": 7104,
+ "▁candid": 7105,
+ "▁Return": 7106,
+ "▁Kom": 7107,
+ "gru": 7108,
+ "▁ти": 7109,
+ "[\\": 7110,
+ "▁depends": 7111,
+ "▁influ": 7112,
+ "▁towards": 7113,
+ "ained": 7114,
+ "▁rank": 7115,
+ "▁Januar": 7116,
+ "▁components": 7117,
+ "gest": 7118,
+ "getElementById": 7119,
+ "▁checked": 7120,
+ "airs": 7121,
+ "join": 7122,
+ "▁dead": 7123,
+ "▁hit": 7124,
+ "ény": 7125,
+ "▁equivalent": 7126,
+ "▁Пре": 7127,
+ "▁appropri": 7128,
+ "Pass": 7129,
+ "▁primer": 7130,
+ "englisch": 7131,
+ "▁appar": 7132,
+ "▁During": 7133,
+ "▁knowledge": 7134,
+ "▁trigger": 7135,
+ "▁core": 7136,
+ "▁Ol": 7137,
+ "▁Produ": 7138,
+ "▁Fern": 7139,
+ "▁нача": 7140,
+ "Te": 7141,
+ "▁Mot": 7142,
+ "erve": 7143,
+ "тво": 7144,
+ "▁mid": 7145,
+ "▁finally": 7146,
+ "aires": 7147,
+ "▁especially": 7148,
+ "▁tut": 7149,
+ "▁receive": 7150,
+ "adre": 7151,
+ "▁neigh": 7152,
+ "ktet": 7153,
+ "ilde": 7154,
+ "▁radio": 7155,
+ "▁driver": 7156,
+ "лись": 7157,
+ "endencies": 7158,
+ "▁IE": 7159,
+ "▁saved": 7160,
+ "ffect": 7161,
+ "▁Wayback": 7162,
+ "iat": 7163,
+ "▁padding": 7164,
+ "window": 7165,
+ "тиче": 7166,
+ "▁mur": 7167,
+ "actor": 7168,
+ "▁Han": 7169,
+ "ональ": 7170,
+ "▁gar": 7171,
+ "▁familjen": 7172,
+ "ós": 7173,
+ "▁nationale": 7174,
+ "▁pré": 7175,
+ "ded": 7176,
+ "onal": 7177,
+ "▁President": 7178,
+ "▁\\,": 7179,
+ "▁placed": 7180,
+ "erni": 7181,
+ "▁signal": 7182,
+ "nab": 7183,
+ "hm": 7184,
+ "Mon": 7185,
+ "▁vs": 7186,
+ "SC": 7187,
+ "▁progetti": 7188,
+ "▁Ü": 7189,
+ "▁forms": 7190,
+ "▁messages": 7191,
+ "inf": 7192,
+ "users": 7193,
+ "GET": 7194,
+ "▁dels": 7195,
+ "Collection": 7196,
+ "▁Good": 7197,
+ "▁Maybe": 7198,
+ "▁compr": 7199,
+ "▁larger": 7200,
+ "gres": 7201,
+ "aper": 7202,
+ "▁При": 7203,
+ "undes": 7204,
+ "▁sea": 7205,
+ "▁Spring": 7206,
+ "ulo": 7207,
+ "▁mechan": 7208,
+ "▁sans": 7209,
+ "GB": 7210,
+ "Valid": 7211,
+ "▁communic": 7212,
+ "▁pra": 7213,
+ "vier": 7214,
+ "▁Се": 7215,
+ "▁ain": 7216,
+ "тура": 7217,
+ "kom": 7218,
+ "skiego": 7219,
+ "ково": 7220,
+ "adata": 7221,
+ "▁Ре": 7222,
+ "▁boolean": 7223,
+ "sets": 7224,
+ "▁effort": 7225,
+ ".[": 7226,
+ "▁został": 7227,
+ "PA": 7228,
+ "▁Vict": 7229,
+ "SD": 7230,
+ "ował": 7231,
+ "▁emb": 7232,
+ "▁prima": 7233,
+ "▁hour": 7234,
+ "subsection": 7235,
+ "▁Fort": 7236,
+ "mathfrak": 7237,
+ "igin": 7238,
+ "GL": 7239,
+ ")+": 7240,
+ "fi": 7241,
+ "▁anci": 7242,
+ "▁pan": 7243,
+ "\\)": 7244,
+ "▁lug": 7245,
+ "▁deploy": 7246,
+ "domain": 7247,
+ "▁slight": 7248,
+ "JSON": 7249,
+ "▁morning": 7250,
+ "▁hi": 7251,
+ "▁compare": 7252,
+ "ije": 7253,
+ "▁blue": 7254,
+ "▁Ac": 7255,
+ "▁middle": 7256,
+ "anden": 7257,
+ "▁shared": 7258,
+ "▁Camp": 7259,
+ "▁Á": 7260,
+ "ounded": 7261,
+ "uw": 7262,
+ "ierung": 7263,
+ "Stack": 7264,
+ "▁eines": 7265,
+ "▁Da": 7266,
+ "lij": 7267,
+ "enti": 7268,
+ "▁й": 7269,
+ "Util": 7270,
+ "▁experience": 7271,
+ "▁await": 7272,
+ "uls": 7273,
+ "▁requests": 7274,
+ "▁impos": 7275,
+ "▁constraint": 7276,
+ "Change": 7277,
+ "emph": 7278,
+ "бер": 7279,
+ "▁Another": 7280,
+ "Custom": 7281,
+ "▁significant": 7282,
+ "cr": 7283,
+ "▁million": 7284,
+ "reek": 7285,
+ "▁dalla": 7286,
+ "▁Germ": 7287,
+ "otal": 7288,
+ "ateur": 7289,
+ "btn": 7290,
+ "▁thinking": 7291,
+ "▁interval": 7292,
+ "onne": 7293,
+ "▁liv": 7294,
+ "():": 7295,
+ "▁Ве": 7296,
+ "oe": 7297,
+ "▁Ev": 7298,
+ "meta": 7299,
+ "▁broad": 7300,
+ "Rem": 7301,
+ "apply": 7302,
+ "▁couple": 7303,
+ "▁techni": 7304,
+ "idades": 7305,
+ "▁goal": 7306,
+ "▁CD": 7307,
+ "hab": 7308,
+ "▁explan": 7309,
+ "anner": 7310,
+ "▁Because": 7311,
+ "blog": 7312,
+ "includegraphics": 7313,
+ "▁voice": 7314,
+ "▁Map": 7315,
+ "vention": 7316,
+ "Session": 7317,
+ "▁Liens": 7318,
+ "▁sor": 7319,
+ "category": 7320,
+ "ashington": 7321,
+ "▁März": 7322,
+ "pop": 7323,
+ "illet": 7324,
+ "▁zwei": 7325,
+ "▁Lie": 7326,
+ "Null": 7327,
+ "address": 7328,
+ "▁factor": 7329,
+ "▁ligne": 7330,
+ "▁HTTP": 7331,
+ "▁suf": 7332,
+ "▁personal": 7333,
+ "cip": 7334,
+ "▁Dar": 7335,
+ "▁adm": 7336,
+ "кой": 7337,
+ "▁Ext": 7338,
+ "▁god": 7339,
+ "aa": 7340,
+ "Right": 7341,
+ "été": 7342,
+ "▁dynamic": 7343,
+ "▁maintain": 7344,
+ "tor": 7345,
+ "########": 7346,
+ "▁Fra": 7347,
+ "▁choice": 7348,
+ "▁сто": 7349,
+ "СР": 7350,
+ "▁Feder": 7351,
+ "ston": 7352,
+ "▁flag": 7353,
+ "kit": 7354,
+ "Module": 7355,
+ "▁спо": 7356,
+ "▁Stra": 7357,
+ "icks": 7358,
+ "▁haven": 7359,
+ "▁Mass": 7360,
+ "▁Emp": 7361,
+ "▁Pi": 7362,
+ "▁Pen": 7363,
+ "Rect": 7364,
+ "▁Kr": 7365,
+ "itat": 7366,
+ "eler": 7367,
+ "ября": 7368,
+ "itet": 7369,
+ "▁Start": 7370,
+ "▁produced": 7371,
+ "▁пол": 7372,
+ "(_": 7373,
+ "▁delet": 7374,
+ "▁hot": 7375,
+ "▁Geschichte": 7376,
+ "~~": 7377,
+ "▁months": 7378,
+ "▁tod": 7379,
+ "▁ни": 7380,
+ "ús": 7381,
+ "temp": 7382,
+ "▁Dez": 7383,
+ "ypes": 7384,
+ "▁cui": 7385,
+ "ommun": 7386,
+ "actions": 7387,
+ "▁eigen": 7388,
+ "▁immediately": 7389,
+ "PL": 7390,
+ "▁Го": 7391,
+ "▁Bal": 7392,
+ "ље": 7393,
+ "ului": 7394,
+ "▁online": 7395,
+ "▁años": 7396,
+ "▁namespace": 7397,
+ "▁mond": 7398,
+ "▁Base": 7399,
+ "▁Canada": 7400,
+ "etzt": 7401,
+ "}-": 7402,
+ "▁defin": 7403,
+ "▁doubt": 7404,
+ "▁investig": 7405,
+ "views": 7406,
+ "▁Line": 7407,
+ "▁stage": 7408,
+ "ettings": 7409,
+ "ubre": 7410,
+ "float": 7411,
+ "▁Play": 7412,
+ "▁Las": 7413,
+ "ptr": 7414,
+ "▁becomes": 7415,
+ "estamp": 7416,
+ "▁independent": 7417,
+ "▁analysis": 7418,
+ "▁Look": 7419,
+ "lain": 7420,
+ "▁рас": 7421,
+ "Reference": 7422,
+ "▁sorry": 7423,
+ "▁supposed": 7424,
+ "ût": 7425,
+ "▁degree": 7426,
+ "utz": 7427,
+ "MM": 7428,
+ "▁desired": 7429,
+ "ły": 7430,
+ "▁len": 7431,
+ "▁alone": 7432,
+ "signed": 7433,
+ "▁Sta": 7434,
+ "Person": 7435,
+ "▁applied": 7436,
+ "▁Back": 7437,
+ "▁mars": 7438,
+ "Part": 7439,
+ "▁Did": 7440,
+ "▁externes": 7441,
+ "▁np": 7442,
+ "ongo": 7443,
+ "▁esta": 7444,
+ "Block": 7445,
+ "▁pou": 7446,
+ "adores": 7447,
+ "▁Studio": 7448,
+ ".$": 7449,
+ "▁reached": 7450,
+ "bot": 7451,
+ "▁Juni": 7452,
+ "tons": 7453,
+ "itel": 7454,
+ "▁Gar": 7455,
+ "▁articles": 7456,
+ "▁District": 7457,
+ "▁trouble": 7458,
+ "lide": 7459,
+ "▁Found": 7460,
+ "ád": 7461,
+ "▁equip": 7462,
+ "▁internal": 7463,
+ "'],": 7464,
+ "▁async": 7465,
+ "UB": 7466,
+ "gel": 7467,
+ "▁ai": 7468,
+ "ensure": 7469,
+ "▁appeared": 7470,
+ "▁$_": 7471,
+ "▁maximum": 7472,
+ "▁Си": 7473,
+ "рь": 7474,
+ "▁announ": 7475,
+ "лась": 7476,
+ "▁cm": 7477,
+ "ган": 7478,
+ "aupt": 7479,
+ "▁latter": 7480,
+ "▁platform": 7481,
+ "▁dra": 7482,
+ "▁capital": 7483,
+ "▁solved": 7484,
+ "riz": 7485,
+ "edic": 7486,
+ "▁Mur": 7487,
+ "▁Top": 7488,
+ "тся": 7489,
+ "Panel": 7490,
+ "rule": 7491,
+ "etic": 7492,
+ "▁Ren": 7493,
+ "▁Wikimedia": 7494,
+ "▁TO": 7495,
+ "second": 7496,
+ "isl": 7497,
+ "▁hy": 7498,
+ "▁niet": 7499,
+ "▁loaded": 7500,
+ "dig": 7501,
+ "▁mayo": 7502,
+ "[:": 7503,
+ "Acc": 7504,
+ "▁bek": 7505,
+ "нию": 7506,
+ "login": 7507,
+ "tx": 7508,
+ "▁Fur": 7509,
+ "▁Santa": 7510,
+ "azz": 7511,
+ "▁conduct": 7512,
+ "▁India": 7513,
+ "Order": 7514,
+ "irth": 7515,
+ "tw": 7516,
+ "}+": 7517,
+ "▁wieder": 7518,
+ "▁Edu": 7519,
+ "AV": 7520,
+ "▁```": 7521,
+ "▁manually": 7522,
+ "▁Read": 7523,
+ "fortunately": 7524,
+ "▁Run": 7525,
+ "▁Award": 7526,
+ "▁Foot": 7527,
+ "*)": 7528,
+ "params": 7529,
+ "пі": 7530,
+ "▁native": 7531,
+ "rift": 7532,
+ "▁ä": 7533,
+ "ATH": 7534,
+ "▁yourself": 7535,
+ "▁prior": 7536,
+ "▁cit": 7537,
+ "äh": 7538,
+ "▁treat": 7539,
+ "▁meas": 7540,
+ "ributed": 7541,
+ "▁clar": 7542,
+ "card": 7543,
+ "ROR": 7544,
+ "illes": 7545,
+ "▁layer": 7546,
+ "auer": 7547,
+ "▁rat": 7548,
+ "bernate": 7549,
+ "▁stato": 7550,
+ "▁China": 7551,
+ "▁$('#": 7552,
+ "▁naar": 7553,
+ "zip": 7554,
+ "▁${\\": 7555,
+ "▁appreciated": 7556,
+ "▁име": 7557,
+ "ży": 7558,
+ "▁przez": 7559,
+ "▁Indian": 7560,
+ "▁Tod": 7561,
+ "▁Source": 7562,
+ "▁други": 7563,
+ "internal": 7564,
+ "ionale": 7565,
+ "Product": 7566,
+ "▁Men": 7567,
+ "▁upper": 7568,
+ "▁Every": 7569,
+ "},\\": 7570,
+ "▁printf": 7571,
+ "▁continued": 7572,
+ "▁nodes": 7573,
+ "лки": 7574,
+ "▁nice": 7575,
+ "modules": 7576,
+ "eign": 7577,
+ "▁Mex": 7578,
+ "▁According": 7579,
+ "▁undefined": 7580,
+ "▁binary": 7581,
+ "cut": 7582,
+ "Current": 7583,
+ "edy": 7584,
+ "}}{": 7585,
+ "bles": 7586,
+ "▁вой": 7587,
+ "scri": 7588,
+ "eqn": 7589,
+ "Changed": 7590,
+ "▁köz": 7591,
+ "▁remote": 7592,
+ "вля": 7593,
+ "▁quel": 7594,
+ "▁align": 7595,
+ "▁пар": 7596,
+ "SV": 7597,
+ "yer": 7598,
+ "▁Californ": 7599,
+ "▁places": 7600,
+ "▁primary": 7601,
+ "▁conv": 7602,
+ "▁Juli": 7603,
+ "▁visual": 7604,
+ "▁Select": 7605,
+ "atory": 7606,
+ "=(": 7607,
+ "iser": 7608,
+ "▁intent": 7609,
+ "sur": 7610,
+ "container": 7611,
+ "iced": 7612,
+ "▁board": 7613,
+ "astr": 7614,
+ "omial": 7615,
+ "вет": 7616,
+ "зва": 7617,
+ "▁cru": 7618,
+ "▁Oktober": 7619,
+ "save": 7620,
+ "▁greater": 7621,
+ "▁inn": 7622,
+ "▁picture": 7623,
+ "▁То": 7624,
+ "▁obtained": 7625,
+ "Wikimedia": 7626,
+ "úblic": 7627,
+ "▁lors": 7628,
+ "▁mont": 7629,
+ "obre": 7630,
+ "▁civil": 7631,
+ "▁construction": 7632,
+ "▁Welt": 7633,
+ "▁Under": 7634,
+ "undert": 7635,
+ "▁edge": 7636,
+ "▁Liste": 7637,
+ "csv": 7638,
+ "▁experiment": 7639,
+ "localhost": 7640,
+ "▁Edit": 7641,
+ "greg": 7642,
+ "ová": 7643,
+ "ља": 7644,
+ "msg": 7645,
+ "▁Green": 7646,
+ "Dialog": 7647,
+ "Ident": 7648,
+ "▁JS": 7649,
+ "^{(": 7650,
+ "▁släktet": 7651,
+ "____": 7652,
+ "Project": 7653,
+ "▁beskre": 7654,
+ "▁ber": 7655,
+ "▁wouldn": 7656,
+ "▁react": 7657,
+ "Hel": 7658,
+ "zw": 7659,
+ "▁Washington": 7660,
+ "orie": 7661,
+ "task": 7662,
+ "▁category": 7663,
+ "▁artist": 7664,
+ "anno": 7665,
+ "▁ook": 7666,
+ "ammen": 7667,
+ "▁Minister": 7668,
+ "▁declar": 7669,
+ "▁Key": 7670,
+ ",.": 7671,
+ "▁mach": 7672,
+ "▁ww": 7673,
+ "isen": 7674,
+ "Fran": 7675,
+ "▁Росси": 7676,
+ "бор": 7677,
+ "три": 7678,
+ "▁rock": 7679,
+ "quis": 7680,
+ "mos": 7681,
+ "пера": 7682,
+ "▁esterni": 7683,
+ "▁gold": 7684,
+ "Windows": 7685,
+ "%%": 7686,
+ "▁partial": 7687,
+ "▁weight": 7688,
+ "▁spr": 7689,
+ "}).": 7690,
+ "▁français": 7691,
+ "fun": 7692,
+ "▁thous": 7693,
+ "holder": 7694,
+ "▁gone": 7695,
+ "▁Č": 7696,
+ "▁rend": 7697,
+ "DA": 7698,
+ "▁answered": 7699,
+ "▁False": 7700,
+ "Buffer": 7701,
+ "▁daugh": 7702,
+ ".--": 7703,
+ "▁Show": 7704,
+ "▁rect": 7705,
+ "▁Kre": 7706,
+ "dr": 7707,
+ "osoph": 7708,
+ "▁yield": 7709,
+ "urity": 7710,
+ "toString": 7711,
+ "aval": 7712,
+ "Pol": 7713,
+ "▁lock": 7714,
+ "imation": 7715,
+ "antic": 7716,
+ "Local": 7717,
+ "▁beskrevs": 7718,
+ "ités": 7719,
+ "grid": 7720,
+ "ут": 7721,
+ "▁_{": 7722,
+ "сі": 7723,
+ "FILE": 7724,
+ "▁км": 7725,
+ "▁speak": 7726,
+ "summary": 7727,
+ "prop": 7728,
+ "javascript": 7729,
+ "zk": 7730,
+ "izontal": 7731,
+ "▁trois": 7732,
+ "▁Rod": 7733,
+ "prise": 7734,
+ "рово": 7735,
+ "▁odd": 7736,
+ "▁gest": 7737,
+ "▁produce": 7738,
+ "▁waar": 7739,
+ "▁Av": 7740,
+ "ribu": 7741,
+ "вання": 7742,
+ "▁finished": 7743,
+ "▁adapt": 7744,
+ "▁Sar": 7745,
+ "textit": 7746,
+ "▁Ce": 7747,
+ "▁Fa": 7748,
+ "osen": 7749,
+ "▁deriv": 7750,
+ "▁ship": 7751,
+ "▁opin": 7752,
+ "▁Even": 7753,
+ "gesch": 7754,
+ "▁suppose": 7755,
+ "▁Fer": 7756,
+ "ское": 7757,
+ "▁worden": 7758,
+ "sey": 7759,
+ "hline": 7760,
+ "▁Union": 7761,
+ "▁/**": 7762,
+ "▁vez": 7763,
+ "▁Collegamenti": 7764,
+ "▁Society": 7765,
+ "▁econom": 7766,
+ "ší": 7767,
+ "oi": 7768,
+ "▁orient": 7769,
+ "▁Teil": 7770,
+ "rent": 7771,
+ "лекс": 7772,
+ "▁solid": 7773,
+ "▁cart": 7774,
+ "****************": 7775,
+ "▁cab": 7776,
+ "▁Message": 7777,
+ "dots": 7778,
+ "▁ég": 7779,
+ "▁twe": 7780,
+ "aga": 7781,
+ "▁naz": 7782,
+ "▁Microsoft": 7783,
+ "▁underarter": 7784,
+ "ppen": 7785,
+ "▁recent": 7786,
+ "▁net": 7787,
+ "▁resources": 7788,
+ "Ste": 7789,
+ ".\\": 7790,
+ "▁SO": 7791,
+ "лом": 7792,
+ "▁cele": 7793,
+ "▁lic": 7794,
+ "▁benef": 7795,
+ "ldots": 7796,
+ "▁serial": 7797,
+ "Integer": 7798,
+ "cles": 7799,
+ "▁miles": 7800,
+ "▁Ale": 7801,
+ "▁entered": 7802,
+ "▁Two": 7803,
+ "wie": 7804,
+ "▁includes": 7805,
+ "▁Each": 7806,
+ "elling": 7807,
+ "quer": 7808,
+ "▁Dom": 7809,
+ "pf": 7810,
+ "WS": 7811,
+ "▁straight": 7812,
+ "▁Stan": 7813,
+ "▁nos": 7814,
+ "ícul": 7815,
+ "atro": 7816,
+ "▁Center": 7817,
+ "FT": 7818,
+ "▁Inga": 7819,
+ "ilo": 7820,
+ "▁www": 7821,
+ "jsfiddle": 7822,
+ "nic": 7823,
+ "▁European": 7824,
+ "▁commer": 7825,
+ "▁girl": 7826,
+ "total": 7827,
+ "▁Star": 7828,
+ "▁suggested": 7829,
+ "pal": 7830,
+ "▁zwischen": 7831,
+ "писа": 7832,
+ "IM": 7833,
+ "▁handler": 7834,
+ "▁Program": 7835,
+ "xsl": 7836,
+ "ály": 7837,
+ "BU": 7838,
+ ",--": 7839,
+ "▁vid": 7840,
+ "▁established": 7841,
+ "▁Spiel": 7842,
+ "ometry": 7843,
+ "unes": 7844,
+ "▁sit": 7845,
+ "▁inher": 7846,
+ "▁puis": 7847,
+ "▁être": 7848,
+ "▁Most": 7849,
+ "Header": 7850,
+ "insert": 7851,
+ "▁sist": 7852,
+ "▁favor": 7853,
+ "dest": 7854,
+ "▁entity": 7855,
+ "Cal": 7856,
+ "▁Therefore": 7857,
+ "DD": 7858,
+ ";;": 7859,
+ "▁Dezember": 7860,
+ "▁Rh": 7861,
+ "iments": 7862,
+ "▁returning": 7863,
+ "sto": 7864,
+ "▁Value": 7865,
+ "▁liber": 7866,
+ "▁Result": 7867,
+ "▁bind": 7868,
+ "voir": 7869,
+ "▁Tim": 7870,
+ "▁Movie": 7871,
+ "weg": 7872,
+ "ket": 7873,
+ "▁исто": 7874,
+ "▁friends": 7875,
+ "▁fn": 7876,
+ "▁él": 7877,
+ "▁&=": 7878,
+ "arden": 7879,
+ "fficial": 7880,
+ "▁community": 7881,
+ "▁api": 7882,
+ "Args": 7883,
+ "ieren": 7884,
+ "▁dann": 7885,
+ "omorph": 7886,
+ "adr": 7887,
+ "loop": 7888,
+ "uman": 7889,
+ "▁vous": 7890,
+ "bst": 7891,
+ "submit": 7892,
+ "\\|": 7893,
+ "тин": 7894,
+ "Container": 7895,
+ "asket": 7896,
+ "?)": 7897,
+ "Sec": 7898,
+ "▁drive": 7899,
+ "Ass": 7900,
+ "▁swe": 7901,
+ "▁amer": 7902,
+ "▁mine": 7903,
+ "▁Ham": 7904,
+ "▁avait": 7905,
+ "▁Hon": 7906,
+ "▁après": 7907,
+ "▁Mann": 7908,
+ "ська": 7909,
+ "▁increase": 7910,
+ "▁ty": 7911,
+ "sky": 7912,
+ "▁accur": 7913,
+ "article": 7914,
+ "weight": 7915,
+ "▁sex": 7916,
+ "▁listade": 7917,
+ "/**": 7918,
+ "▁está": 7919,
+ "}}$": 7920,
+ "argo": 7921,
+ "define": 7922,
+ "▁состав": 7923,
+ "session": 7924,
+ "ads": 7925,
+ "стви": 7926,
+ "▁Law": 7927,
+ "▁dialog": 7928,
+ "▁duplicate": 7929,
+ "▁ép": 7930,
+ "▁voc": 7931,
+ "fri": 7932,
+ "▁green": 7933,
+ "▁hidden": 7934,
+ "▁Island": 7935,
+ "▁diag": 7936,
+ "owej": 7937,
+ "mysql": 7938,
+ "teil": 7939,
+ "rä": 7940,
+ "ikan": 7941,
+ "▁José": 7942,
+ "aled": 7943,
+ "Runtime": 7944,
+ "▁train": 7945,
+ "▁Division": 7946,
+ "ниц": 7947,
+ "▁Span": 7948,
+ "нима": 7949,
+ ")=\\": 7950,
+ "тан": 7951,
+ "▁stay": 7952,
+ "▁foo": 7953,
+ "▁accom": 7954,
+ "▁hers": 7955,
+ "▁нау": 7956,
+ "▁Mün": 7957,
+ "ideos": 7958,
+ "static": 7959,
+ "▁ready": 7960,
+ "]`": 7961,
+ "▁visible": 7962,
+ "▁Hope": 7963,
+ "ulated": 7964,
+ "▁Cult": 7965,
+ "стро": 7966,
+ "Co": 7967,
+ "▁smaller": 7968,
+ "atura": 7969,
+ "▁perfectly": 7970,
+ "req": 7971,
+ "▁proposed": 7972,
+ "▁degli": 7973,
+ "Search": 7974,
+ "▁ich": 7975,
+ "Max": 7976,
+ "▁volume": 7977,
+ "execute": 7978,
+ "gre": 7979,
+ "▁sport": 7980,
+ "udad": 7981,
+ "PT": 7982,
+ "▁Records": 7983,
+ "▁cook": 7984,
+ "▁expand": 7985,
+ "бі": 7986,
+ "▁altri": 7987,
+ "ppet": 7988,
+ "arse": 7989,
+ "▁wet": 7990,
+ "▁Bob": 7991,
+ "▁FC": 7992,
+ "▁Association": 7993,
+ "uje": 7994,
+ "▁fel": 7995,
+ "▁слу": 7996,
+ "▁Big": 7997,
+ "/\\": 7998,
+ "Ge": 7999,
+ "while": 8000,
+ "{(": 8001,
+ "▁sufficient": 8002,
+ "Position": 8003,
+ "▁understanding": 8004,
+ "▁nue": 8005,
+ "▁raz": 8006,
+ "▁ye": 8007,
+ "hem": 8008,
+ "Num": 8009,
+ "▁Project": 8010,
+ "▁Its": 8011,
+ "▁hasta": 8012,
+ "enso": 8013,
+ "▁wire": 8014,
+ "Ret": 8015,
+ "uj": 8016,
+ "proof": 8017,
+ "▁relevant": 8018,
+ "▁partir": 8019,
+ "▁ago": 8020,
+ "ificate": 8021,
+ "▁domin": 8022,
+ "▁boy": 8023,
+ "▁plant": 8024,
+ "▁encoding": 8025,
+ "▁throws": 8026,
+ "▁Rock": 8027,
+ "zone": 8028,
+ "gang": 8029,
+ "widget": 8030,
+ "▁interesting": 8031,
+ "DER": 8032,
+ "▁demon": 8033,
+ "▁office": 8034,
+ "amt": 8035,
+ "äter": 8036,
+ "▁White": 8037,
+ "▁versch": 8038,
+ "▁dieser": 8039,
+ "▁Mount": 8040,
+ "▁students": 8041,
+ "▁Pub": 8042,
+ "▁Де": 8043,
+ "ija": 8044,
+ "▁Cy": 8045,
+ "▁California": 8046,
+ "▁abril": 8047,
+ "äll": 8048,
+ "▁чем": 8049,
+ "TV": 8050,
+ "▁més": 8051,
+ "▁declared": 8052,
+ "▁ю": 8053,
+ "ől": 8054,
+ "appa": 8055,
+ "▁Бе": 8056,
+ "echo": 8057,
+ "numer": 8058,
+ "▁posted": 8059,
+ "▁вер": 8060,
+ "▁године": 8061,
+ "▁weak": 8062,
+ "▁Republic": 8063,
+ "▁champion": 8064,
+ "ensuremath": 8065,
+ "your": 8066,
+ "▁Ober": 8067,
+ "▁Central": 8068,
+ "isa": 8069,
+ "анд": 8070,
+ "yy": 8071,
+ "▁fully": 8072,
+ "▁SD": 8073,
+ "▁Linux": 8074,
+ "▁Scott": 8075,
+ "partment": 8076,
+ "kon": 8077,
+ "▁contract": 8078,
+ "▁OF": 8079,
+ "▁ale": 8080,
+ "▁Ann": 8081,
+ "▁над": 8082,
+ "lah": 8083,
+ "▁Next": 8084,
+ "oren": 8085,
+ "▁disk": 8086,
+ "▁eg": 8087,
+ "atu": 8088,
+ "логи": 8089,
+ "▁games": 8090,
+ "Left": 8091,
+ "▁lu": 8092,
+ "▁finite": 8093,
+ "▁ки": 8094,
+ "▁crash": 8095,
+ "pher": 8096,
+ "exe": 8097,
+ "ATION": 8098,
+ "▁brother": 8099,
+ "Eng": 8100,
+ "tat": 8101,
+ "▁Integer": 8102,
+ "ному": 8103,
+ "▁colon": 8104,
+ "iqu": 8105,
+ ")).": 8106,
+ "ivi": 8107,
+ "▁Method": 8108,
+ "arten": 8109,
+ "Uni": 8110,
+ "vector": 8111,
+ "▁wood": 8112,
+ "рт": 8113,
+ "▁Ле": 8114,
+ "▁siècle": 8115,
+ "▁gent": 8116,
+ "}\r": 8117,
+ "▁contents": 8118,
+ "▁compan": 8119,
+ "Go": 8120,
+ "▁jou": 8121,
+ "uent": 8122,
+ "Async": 8123,
+ "printf": 8124,
+ "▁Model": 8125,
+ "▁kept": 8126,
+ "ASE": 8127,
+ "▁provides": 8128,
+ "▁Abgerufen": 8129,
+ "▁Gall": 8130,
+ "▁Alf": 8131,
+ "SA": 8132,
+ "▁Mem": 8133,
+ "▁kter": 8134,
+ "▁Bru": 8135,
+ "Android": 8136,
+ "(:": 8137,
+ "▁Украї": 8138,
+ "Ne": 8139,
+ "Min": 8140,
+ "atr": 8141,
+ "▁Hal": 8142,
+ "delete": 8143,
+ "odo": 8144,
+ "▁não": 8145,
+ "ène": 8146,
+ "▁calculate": 8147,
+ "Json": 8148,
+ "keys": 8149,
+ "ней": 8150,
+ "▁hence": 8151,
+ "▁ow": 8152,
+ "▁Lib": 8153,
+ "eno": 8154,
+ "▁Love": 8155,
+ "osi": 8156,
+ "wide": 8157,
+ "▁score": 8158,
+ "full": 8159,
+ "вод": 8160,
+ "▁determine": 8161,
+ "▁spaces": 8162,
+ "лова": 8163,
+ "▁peut": 8164,
+ "éral": 8165,
+ "ół": 8166,
+ "▁appoint": 8167,
+ "▁Tw": 8168,
+ "": 8169,
+ "▁Order": 8170,
+ "▁hop": 8171,
+ "random": 8172,
+ "cache": 8173,
+ "▁destroy": 8174,
+ "▁race": 8175,
+ "Tag": 8176,
+ "▁rid": 8177,
+ "▁negative": 8178,
+ "Car": 8179,
+ "ensional": 8180,
+ "dk": 8181,
+ "▁cro": 8182,
+ "▁THEN": 8183,
+ "▁$.": 8184,
+ "ensk": 8185,
+ "NE": 8186,
+ "HO": 8187,
+ "▁kle": 8188,
+ "ospital": 8189,
+ "kte": 8190,
+ "férences": 8191,
+ "udes": 8192,
+ "IR": 8193,
+ "otion": 8194,
+ "▁Real": 8195,
+ "▁Februar": 8196,
+ "ин": 8197,
+ "▁Old": 8198,
+ "кого": 8199,
+ "leich": 8200,
+ "▁р": 8201,
+ "ían": 8202,
+ "▁га": 8203,
+ "cide": 8204,
+ "lab": 8205,
+ "▁pull": 8206,
+ "▁'/": 8207,
+ "Long": 8208,
+ ",$": 8209,
+ "▁appropriate": 8210,
+ "▁была": 8211,
+ "führ": 8212,
+ "▁Media": 8213,
+ "▁manner": 8214,
+ "▁Ге": 8215,
+ "description": 8216,
+ "Bean": 8217,
+ "▁Lar": 8218,
+ "'];": 8219,
+ "▁relation": 8220,
+ "▁Sorry": 8221,
+ "har": 8222,
+ "cpp": 8223,
+ "▁Ko": 8224,
+ "▁execution": 8225,
+ "inos": 8226,
+ "▁bul": 8227,
+ "grade": 8228,
+ "▁Mu": 8229,
+ "▁pil": 8230,
+ "writ": 8231,
+ "ifications": 8232,
+ "inese": 8233,
+ "▁Phili": 8234,
+ "dx": 8235,
+ "▁leading": 8236,
+ "▁Journal": 8237,
+ "oved": 8238,
+ "▁contro": 8239,
+ "нова": 8240,
+ "Yes": 8241,
+ "▁channel": 8242,
+ ")),": 8243,
+ "isten": 8244,
+ "aka": 8245,
+ "ToString": 8246,
+ "mas": 8247,
+ "▁ett": 8248,
+ "▁forces": 8249,
+ "ulations": 8250,
+ "▁Call": 8251,
+ "▁explanation": 8252,
+ "oring": 8253,
+ "ATA": 8254,
+ "chter": 8255,
+ "when": 8256,
+ "VC": 8257,
+ "▁Jahrh": 8258,
+ "Case": 8259,
+ "▁commands": 8260,
+ "▁rich": 8261,
+ "bus": 8262,
+ "Fe": 8263,
+ "mbox": 8264,
+ "▁recon": 8265,
+ "ño": 8266,
+ "▁shape": 8267,
+ "owy": 8268,
+ "entry": 8269,
+ "itable": 8270,
+ "▁election": 8271,
+ "ється": 8272,
+ "▁prep": 8273,
+ "vá": 8274,
+ "▁infin": 8275,
+ "lot": 8276,
+ "▁books": 8277,
+ "▁USA": 8278,
+ "лин": 8279,
+ "▁pom": 8280,
+ "▁nas": 8281,
+ "▁tags": 8282,
+ "▁executed": 8283,
+ "aille": 8284,
+ "lung": 8285,
+ "▁JavaScript": 8286,
+ "▁ball": 8287,
+ "▁ainsi": 8288,
+ "▁Pri": 8289,
+ "{$": 8290,
+ "▁UN": 8291,
+ "▁Ram": 8292,
+ "▁hear": 8293,
+ "▁Ubuntu": 8294,
+ ">();": 8295,
+ "▁pure": 8296,
+ "▁embed": 8297,
+ "ação": 8298,
+ "controller": 8299,
+ "▁married": 8300,
+ "▁Fol": 8301,
+ "famil": 8302,
+ "▁prec": 8303,
+ "▁recurs": 8304,
+ "pad": 8305,
+ "istration": 8306,
+ "▁respectively": 8307,
+ "[$": 8308,
+ "autor": 8309,
+ "▁grav": 8310,
+ "iera": 8311,
+ "azioni": 8312,
+ "▁Bul": 8313,
+ "▁Australia": 8314,
+ "mond": 8315,
+ "▁Tro": 8316,
+ "▁Ele": 8317,
+ "packages": 8318,
+ "msdn": 8319,
+ "▁Als": 8320,
+ "▁przy": 8321,
+ "ART": 8322,
+ "▁charge": 8323,
+ "▁applications": 8324,
+ "Unit": 8325,
+ "aren": 8326,
+ "▁sudden": 8327,
+ "ometer": 8328,
+ "▁dot": 8329,
+ "acji": 8330,
+ "ктор": 8331,
+ "imin": 8332,
+ "ening": 8333,
+ "▁donde": 8334,
+ "▁Ho": 8335,
+ "tree": 8336,
+ "mb": 8337,
+ "▁drag": 8338,
+ "aje": 8339,
+ "▁invalid": 8340,
+ "▁finish": 8341,
+ "laim": 8342,
+ "▁feed": 8343,
+ "▁Nap": 8344,
+ "room": 8345,
+ "images": 8346,
+ "▁сай": 8347,
+ "▁succ": 8348,
+ "iffer": 8349,
+ "▁año": 8350,
+ "▁cual": 8351,
+ "мери": 8352,
+ "DR": 8353,
+ "▁Bilder": 8354,
+ "бра": 8355,
+ "rait": 8356,
+ "pan": 8357,
+ "ень": 8358,
+ "▁distinct": 8359,
+ "▁Kn": 8360,
+ "önig": 8361,
+ "anced": 8362,
+ "▁loading": 8363,
+ "▁Techn": 8364,
+ "▁Sel": 8365,
+ "mus": 8366,
+ "▁rail": 8367,
+ "▁student": 8368,
+ "▁notice": 8369,
+ "▁sla": 8370,
+ "▁Да": 8371,
+ "▁guard": 8372,
+ "▁Day": 8373,
+ "вали": 8374,
+ "Option": 8375,
+ "aison": 8376,
+ "ipp": 8377,
+ "▁Jun": 8378,
+ "▁fell": 8379,
+ "▁absolute": 8380,
+ "ове": 8381,
+ "debug": 8382,
+ "▁Sud": 8383,
+ "пы": 8384,
+ "ugins": 8385,
+ "▁views": 8386,
+ "lay": 8387,
+ "▁surr": 8388,
+ "▁stood": 8389,
+ "▁ві": 8390,
+ "selected": 8391,
+ "гі": 8392,
+ "▁attributes": 8393,
+ "final": 8394,
+ "enda": 8395,
+ "▁Bon": 8396,
+ "ners": 8397,
+ "▁Wer": 8398,
+ "bur": 8399,
+ "ittel": 8400,
+ "▁moving": 8401,
+ "▁Plan": 8402,
+ "isches": 8403,
+ "Java": 8404,
+ "▁basis": 8405,
+ "▁Bus": 8406,
+ "▁Au": 8407,
+ "▁Ill": 8408,
+ "▁время": 8409,
+ "▁цент": 8410,
+ "handle": 8411,
+ "ступ": 8412,
+ "▁Far": 8413,
+ "▁oraz": 8414,
+ "ocr": 8415,
+ "▁seit": 8416,
+ "onder": 8417,
+ "дом": 8418,
+ ":/": 8419,
+ "chor": 8420,
+ "▁Town": 8421,
+ "▁definit": 8422,
+ "react": 8423,
+ "▁piece": 8424,
+ "▁Karl": 8425,
+ "CI": 8426,
+ "▁Application": 8427,
+ "unter": 8428,
+ "▁formed": 8429,
+ "▁пу": 8430,
+ "Bo": 8431,
+ "▁Daniel": 8432,
+ "▁пла": 8433,
+ "Body": 8434,
+ "})$": 8435,
+ "▁были": 8436,
+ "▁earth": 8437,
+ "гла": 8438,
+ "There": 8439,
+ "▁стра": 8440,
+ "▁ville": 8441,
+ "▁centre": 8442,
+ ")\r": 8443,
+ "▁helpful": 8444,
+ "▁++": 8445,
+ "▁CG": 8446,
+ "izione": 8447,
+ "▁Game": 8448,
+ "▁Which": 8449,
+ "▁pip": 8450,
+ "▁Portug": 8451,
+ "DS": 8452,
+ "▁describe": 8453,
+ "▁checking": 8454,
+ "▁manager": 8455,
+ "BO": 8456,
+ "▁Bundes": 8457,
+ "buch": 8458,
+ "▁decided": 8459,
+ "▁Jahrhundert": 8460,
+ "▁fif": 8461,
+ "efficient": 8462,
+ "anci": 8463,
+ "braries": 8464,
+ "▁fails": 8465,
+ "▁kernel": 8466,
+ "▁Gl": 8467,
+ "▁Nacional": 8468,
+ "▁proceed": 8469,
+ "▁fuer": 8470,
+ "▁living": 8471,
+ "▁successfully": 8472,
+ "▁faster": 8473,
+ "▁contre": 8474,
+ "▁prison": 8475,
+ "ORT": 8476,
+ "help": 8477,
+ "▁autor": 8478,
+ "ław": 8479,
+ "ają": 8480,
+ "▁Arm": 8481,
+ "▁provin": 8482,
+ "▁naam": 8483,
+ "/#": 8484,
+ "sed": 8485,
+ "▁gesch": 8486,
+ "▁мар": 8487,
+ "esk": 8488,
+ "term": 8489,
+ "▁Tex": 8490,
+ "iring": 8491,
+ "▁tools": 8492,
+ "PDF": 8493,
+ "▁ult": 8494,
+ "issenschaft": 8495,
+ "▁couldn": 8496,
+ "ding": 8497,
+ "Dep": 8498,
+ "{-": 8499,
+ "▁predict": 8500,
+ "antage": 8501,
+ "▁Like": 8502,
+ "▁Би": 8503,
+ "tools": 8504,
+ "estra": 8505,
+ "▁ki": 8506,
+ "▁Jim": 8507,
+ "star": 8508,
+ "▁remark": 8509,
+ "óg": 8510,
+ "nabla": 8511,
+ "▁Although": 8512,
+ "mode": 8513,
+ "Host": 8514,
+ "▁strange": 8515,
+ "None": 8516,
+ "black": 8517,
+ "▁Festival": 8518,
+ "▁IS": 8519,
+ "anza": 8520,
+ "▁(-": 8521,
+ "icket": 8522,
+ "кола": 8523,
+ "▁Jes": 8524,
+ "▁flex": 8525,
+ "▁À": 8526,
+ "▁Network": 8527,
+ "▁EX": 8528,
+ "▁enero": 8529,
+ "!”": 8530,
+ "▁Ort": 8531,
+ "▁alors": 8532,
+ "▁Original": 8533,
+ "▁zo": 8534,
+ "ными": 8535,
+ "▁spl": 8536,
+ "Draw": 8537,
+ "yond": 8538,
+ "──": 8539,
+ "▁Ot": 8540,
+ "▁dram": 8541,
+ "▁division": 8542,
+ "▁efficient": 8543,
+ "▁Га": 8544,
+ "▁vier": 8545,
+ "nak": 8546,
+ "LS": 8547,
+ "▁spirit": 8548,
+ "zeichnet": 8549,
+ "▁dici": 8550,
+ "clear": 8551,
+ "copy": 8552,
+ "yar": 8553,
+ "▁році": 8554,
+ "usqu": 8555,
+ "▁nous": 8556,
+ "▁blev": 8557,
+ "жде": 8558,
+ "Arg": 8559,
+ "▁performed": 8560,
+ "▁Make": 8561,
+ "▁Carol": 8562,
+ "etto": 8563,
+ "▁Sand": 8564,
+ "▁Disc": 8565,
+ "Enc": 8566,
+ "rero": 8567,
+ "hash": 8568,
+ "▁focus": 8569,
+ "▁attention": 8570,
+ "▁agre": 8571,
+ "▁divis": 8572,
+ "▁было": 8573,
+ "▁ej": 8574,
+ "▁march": 8575,
+ "▁phase": 8576,
+ "ías": 8577,
+ "▁phil": 8578,
+ "▁Pap": 8579,
+ "▁river": 8580,
+ "▁caused": 8581,
+ "plugin": 8582,
+ "▁Team": 8583,
+ "uler": 8584,
+ "▁$(\"#": 8585,
+ "iej": 8586,
+ "ISBN": 8587,
+ "nam": 8588,
+ "▁fight": 8589,
+ "vid": 8590,
+ "▁Lud": 8591,
+ "Selected": 8592,
+ ":@\"": 8593,
+ "▁Pod": 8594,
+ "▁années": 8595,
+ "arios": 8596,
+ "▁deutscher": 8597,
+ "▁NA": 8598,
+ "▁ию": 8599,
+ "▁dictionary": 8600,
+ "▁Ла": 8601,
+ "▁Tri": 8602,
+ "èn": 8603,
+ "▁political": 8604,
+ "ridge": 8605,
+ "atten": 8606,
+ "▁circle": 8607,
+ "▁transport": 8608,
+ "emas": 8609,
+ "FC": 8610,
+ "▁replaced": 8611,
+ "▁Aud": 8612,
+ "iska": 8613,
+ "Configuration": 8614,
+ "▁soort": 8615,
+ "▁Не": 8616,
+ "▁sequ": 8617,
+ "PRO": 8618,
+ "▁bud": 8619,
+ "▁{{": 8620,
+ "ließ": 8621,
+ "▁Mas": 8622,
+ "ders": 8623,
+ "usammen": 8624,
+ "esa": 8625,
+ "▁Ly": 8626,
+ "вро": 8627,
+ "mac": 8628,
+ "▁испо": 8629,
+ "▁suc": 8630,
+ "uy": 8631,
+ "▁illustr": 8632,
+ "▁primera": 8633,
+ "ilation": 8634,
+ "▁storage": 8635,
+ "▁params": 8636,
+ "kaz": 8637,
+ "▁terminal": 8638,
+ "раль": 8639,
+ "▁holds": 8640,
+ "лось": 8641,
+ "▁nad": 8642,
+ "”.": 8643,
+ "▁octubre": 8644,
+ "bul": 8645,
+ "▁hus": 8646,
+ "ULT": 8647,
+ "▁également": 8648,
+ "▁Mill": 8649,
+ "ład": 8650,
+ "▁contiene": 8651,
+ "\"?": 8652,
+ "▁>>>": 8653,
+ "Que": 8654,
+ " ": 8655,
+ "▁plain": 8656,
+ "ativa": 8657,
+ "ocker": 8658,
+ "Names": 8659,
+ "▁Jud": 8660,
+ "▁agree": 8661,
+ "▁Gemeinde": 8662,
+ "lare": 8663,
+ "каза": 8664,
+ "▁starts": 8665,
+ "▁price": 8666,
+ "Target": 8667,
+ "cus": 8668,
+ "▁Instead": 8669,
+ ".;": 8670,
+ "▁alternative": 8671,
+ "▁вла": 8672,
+ "IE": 8673,
+ "▁organiz": 8674,
+ "inu": 8675,
+ "▁completed": 8676,
+ "▁carry": 8677,
+ "atom": 8678,
+ "▁depending": 8679,
+ "▁Our": 8680,
+ "▁insp": 8681,
+ "▁&\\": 8682,
+ "aily": 8683,
+ "irection": 8684,
+ "фа": 8685,
+ "▁defe": 8686,
+ "TAC": 8687,
+ "▁designed": 8688,
+ "▁voir": 8689,
+ "break": 8690,
+ "▁partie": 8691,
+ "▁Jahren": 8692,
+ "▁studio": 8693,
+ "▁jour": 8694,
+ "▁Notes": 8695,
+ "fire": 8696,
+ "house": 8697,
+ "success": 8698,
+ "▁Juan": 8699,
+ "JS": 8700,
+ "▁Custom": 8701,
+ "▁besch": 8702,
+ "▁stated": 8703,
+ "bootstrap": 8704,
+ "ött": 8705,
+ "ozzá": 8706,
+ "▁CON": 8707,
+ "hav": 8708,
+ "▁sleep": 8709,
+ "eda": 8710,
+ "hot": 8711,
+ "ánd": 8712,
+ "▁Sy": 8713,
+ "▁temps": 8714,
+ "amar": 8715,
+ "▁scal": 8716,
+ "▁ast": 8717,
+ "▁opening": 8718,
+ "clipse": 8719,
+ "▁programming": 8720,
+ "▁letters": 8721,
+ "▁profile": 8722,
+ "nah": 8723,
+ "▁beyond": 8724,
+ "▁Further": 8725,
+ "faces": 8726,
+ "▁chart": 8727,
+ "зда": 8728,
+ "aign": 8729,
+ "ній": 8730,
+ "▁Rol": 8731,
+ "овано": 8732,
+ "terior": 8733,
+ "wed": 8734,
+ "▁herself": 8735,
+ "▁ng": 8736,
+ "anguages": 8737,
+ "}=\\": 8738,
+ "ynamic": 8739,
+ "▁jug": 8740,
+ "▁Example": 8741,
+ "▁(†": 8742,
+ "▁playing": 8743,
+ "▁usage": 8744,
+ "▁managed": 8745,
+ "▁Natur": 8746,
+ "тери": 8747,
+ "▁Et": 8748,
+ "eria": 8749,
+ "▁daughter": 8750,
+ "нием": 8751,
+ "Fragment": 8752,
+ "▁hol": 8753,
+ "Fl": 8754,
+ "ографи": 8755,
+ "▁ihn": 8756,
+ "üh": 8757,
+ "instance": 8758,
+ "▁comun": 8759,
+ "▁truth": 8760,
+ "▁само": 8761,
+ "▁implemented": 8762,
+ "▁anyway": 8763,
+ "▁Cro": 8764,
+ "фе": 8765,
+ "GC": 8766,
+ "ubuntu": 8767,
+ "types": 8768,
+ "ês": 8769,
+ ".~\\": 8770,
+ "fold": 8771,
+ "▁joined": 8772,
+ "??": 8773,
+ "▁mé": 8774,
+ "▁wild": 8775,
+ "клю": 8776,
+ "rowser": 8777,
+ "▁Home": 8778,
+ "skiej": 8779,
+ "▁JOIN": 8780,
+ "▁juin": 8781,
+ "hof": 8782,
+ "▁dataset": 8783,
+ "жду": 8784,
+ "'))": 8785,
+ "▁miejs": 8786,
+ "API": 8787,
+ "▁edited": 8788,
+ "ools": 8789,
+ "▁seeing": 8790,
+ "ijd": 8791,
+ "▁procedure": 8792,
+ "▁Bras": 8793,
+ "▁signed": 8794,
+ "▁externos": 8795,
+ "▁disapp": 8796,
+ "▁Direct": 8797,
+ "cyc": 8798,
+ "▁consult": 8799,
+ "örd": 8800,
+ "Widget": 8801,
+ "cious": 8802,
+ "sect": 8803,
+ "▁Ди": 8804,
+ "▁wind": 8805,
+ "▁Archivado": 8806,
+ "aml": 8807,
+ "сс": 8808,
+ "Wh": 8809,
+ "kbd": 8810,
+ "▁Army": 8811,
+ "▁suffer": 8812,
+ "artifact": 8813,
+ "▁resolve": 8814,
+ "▁Sport": 8815,
+ "▁це": 8816,
+ "idas": 8817,
+ "▁tax": 8818,
+ "idi": 8819,
+ "▁actions": 8820,
+ "пра": 8821,
+ "pués": 8822,
+ "▁naj": 8823,
+ "False": 8824,
+ "▁chance": 8825,
+ "▁тако": 8826,
+ "äd": 8827,
+ "▁dol": 8828,
+ "▁env": 8829,
+ "▁basically": 8830,
+ "▁Council": 8831,
+ "zte": 8832,
+ "▁displayed": 8833,
+ "nil": 8834,
+ "complete": 8835,
+ "▁Lem": 8836,
+ "iance": 8837,
+ "▁основ": 8838,
+ "▁depend": 8839,
+ "plom": 8840,
+ "ensus": 8841,
+ "uts": 8842,
+ "▁Hot": 8843,
+ "bitr": 8844,
+ "▁validation": 8845,
+ "abb": 8846,
+ "▁тре": 8847,
+ "km": 8848,
+ "zd": 8849,
+ "öff": 8850,
+ "WE": 8851,
+ "▁interested": 8852,
+ "▁{\"": 8853,
+ "aro": 8854,
+ "▁correl": 8855,
+ "▁dedic": 8856,
+ "▁lists": 8857,
+ "▁Bibliografia": 8858,
+ "▁earlier": 8859,
+ "program": 8860,
+ "▁première": 8861,
+ "front": 8862,
+ "Tab": 8863,
+ "ству": 8864,
+ "drop": 8865,
+ "▁fear": 8866,
+ "▁Enlaces": 8867,
+ "▁Capt": 8868,
+ "▁realiz": 8869,
+ "▁hal": 8870,
+ "▁instances": 8871,
+ "▁susp": 8872,
+ "illing": 8873,
+ "%;": 8874,
+ "{}": 8875,
+ "||": 8876,
+ "▁partition": 8877,
+ "▁Build": 8878,
+ "▁wo": 8879,
+ "▁Пер": 8880,
+ "▁director": 8881,
+ "▁Sin": 8882,
+ "тия": 8883,
+ "rsg": 8884,
+ "ouver": 8885,
+ "▁nearly": 8886,
+ "oda": 8887,
+ "ктив": 8888,
+ "▁sir": 8889,
+ "IME": 8890,
+ "▁janvier": 8891,
+ "▁Win": 8892,
+ "Build": 8893,
+ "ieurs": 8894,
+ "INE": 8895,
+ "double": 8896,
+ "Last": 8897,
+ "▁policy": 8898,
+ "store": 8899,
+ "▁observed": 8900,
+ "▁familie": 8901,
+ "nica": 8902,
+ "rey": 8903,
+ "зь": 8904,
+ "▁Year": 8905,
+ "▁developed": 8906,
+ "▁Institute": 8907,
+ "▁reply": 8908,
+ "Comple": 8909,
+ "ician": 8910,
+ "▁Guer": 8911,
+ "▁dall": 8912,
+ "▁desp": 8913,
+ "▁Football": 8914,
+ "Empty": 8915,
+ "cken": 8916,
+ "unda": 8917,
+ "▁Ur": 8918,
+ "▁ig": 8919,
+ "▁Atl": 8920,
+ "author": 8921,
+ "▁Bol": 8922,
+ "zig": 8923,
+ "nat": 8924,
+ "št": 8925,
+ "security": 8926,
+ "onic": 8927,
+ "▁pes": 8928,
+ "itan": 8929,
+ "▁Extern": 8930,
+ "jan": 8931,
+ "VAL": 8932,
+ "▁им": 8933,
+ "bold": 8934,
+ "▁ва": 8935,
+ "▁Мо": 8936,
+ "▁disput": 8937,
+ "▁trick": 8938,
+ "▁ped": 8939,
+ ")^{": 8940,
+ "into": 8941,
+ "Sim": 8942,
+ "▁parallel": 8943,
+ "fox": 8944,
+ "normal": 8945,
+ "inent": 8946,
+ "педи": 8947,
+ "hold": 8948,
+ "OK": 8949,
+ "▁chem": 8950,
+ "▁twice": 8951,
+ "▁username": 8952,
+ "ič": 8953,
+ "▁representation": 8954,
+ "▁journal": 8955,
+ "▁:-": 8956,
+ "▁batt": 8957,
+ "\\%": 8958,
+ "▁certainly": 8959,
+ "▁Exception": 8960,
+ "eps": 8961,
+ "shot": 8962,
+ "ategy": 8963,
+ "Show": 8964,
+ "▁Carl": 8965,
+ "rig": 8966,
+ "▁reported": 8967,
+ "bottom": 8968,
+ "TF": 8969,
+ "▁Francisco": 8970,
+ "nap": 8971,
+ "▁Championship": 8972,
+ "▁court": 8973,
+ "▁sources": 8974,
+ "iour": 8975,
+ "▁conserv": 8976,
+ "dict": 8977,
+ "▁Ру": 8978,
+ "IB": 8979,
+ "▁Ve": 8980,
+ "▁№": 8981,
+ "▁ER": 8982,
+ "\"));": 8983,
+ "▁Point": 8984,
+ "azine": 8985,
+ "▁internet": 8986,
+ "дна": 8987,
+ "▁carried": 8988,
+ "▁Field": 8989,
+ "axis": 8990,
+ "▁Sun": 8991,
+ "▁ave": 8992,
+ "пис": 8993,
+ "ян": 8994,
+ "asy": 8995,
+ "▁julio": 8996,
+ "▁depuis": 8997,
+ "▁suggestion": 8998,
+ "[[": 8999,
+ "▁Archive": 9000,
+ "ęp": 9001,
+ "▁Pra": 9002,
+ "reh": 9003,
+ "▁demonstr": 9004,
+ "фі": 9005,
+ "cmd": 9006,
+ "▁wasn": 9007,
+ "▁phone": 9008,
+ "upload": 9009,
+ "aya": 9010,
+ "тора": 9011,
+ "lines": 9012,
+ "▁indu": 9013,
+ "▁vot": 9014,
+ "▁espa": 9015,
+ "▁bin": 9016,
+ "▁после": 9017,
+ "plan": 9018,
+ "▁junio": 9019,
+ "orial": 9020,
+ "free": 9021,
+ "sterreich": 9022,
+ "▁ду": 9023,
+ "▁linked": 9024,
+ "▁enable": 9025,
+ "PC": 9026,
+ "▁density": 9027,
+ "▁Egy": 9028,
+ "yo": 9029,
+ "endre": 9030,
+ "▁съ": 9031,
+ "▁italiano": 9032,
+ "▁AR": 9033,
+ "▁Pers": 9034,
+ "férés": 9035,
+ "▁скла": 9036,
+ "Var": 9037,
+ "▁Once": 9038,
+ "Red": 9039,
+ "buffer": 9040,
+ "▁Enter": 9041,
+ "▁Š": 9042,
+ "imiento": 9043,
+ "Store": 9044,
+ "▁health": 9045,
+ "vat": 9046,
+ "IST": 9047,
+ "Oh": 9048,
+ "▁kw": 9049,
+ "▁riv": 9050,
+ "▁somewhere": 9051,
+ "ografie": 9052,
+ "private": 9053,
+ "кти": 9054,
+ "▁delay": 9055,
+ "▁Http": 9056,
+ "job": 9057,
+ "rael": 9058,
+ "empor": 9059,
+ "▁diciembre": 9060,
+ "ête": 9061,
+ "цу": 9062,
+ "▁commit": 9063,
+ "oso": 9064,
+ "Values": 9065,
+ "▁headers": 9066,
+ "transform": 9067,
+ "▁processing": 9068,
+ "rå": 9069,
+ "▁Ah": 9070,
+ "▁Node": 9071,
+ "------------": 9072,
+ "▁faire": 9073,
+ "▁hun": 9074,
+ "Player": 9075,
+ "▁review": 9076,
+ "гда": 9077,
+ "▁limited": 9078,
+ "▁Property": 9079,
+ "▁serve": 9080,
+ "riage": 9081,
+ "▁Master": 9082,
+ "▁kann": 9083,
+ "crete": 9084,
+ "phere": 9085,
+ "ёр": 9086,
+ "▁chief": 9087,
+ "▁scene": 9088,
+ "kin": 9089,
+ "▁uniform": 9090,
+ "▁febrero": 9091,
+ "\"}": 9092,
+ "illo": 9093,
+ "ITE": 9094,
+ "ouvel": 9095,
+ "usepackage": 9096,
+ "enth": 9097,
+ "▁quickly": 9098,
+ "Lambda": 9099,
+ "xes": 9100,
+ "▁cells": 9101,
+ "rog": 9102,
+ "amin": 9103,
+ "▁Мар": 9104,
+ "▁mayor": 9105,
+ "player": 9106,
+ "++;": 9107,
+ "▁Насе": 9108,
+ "▁safe": 9109,
+ "▁veloc": 9110,
+ "▁обра": 9111,
+ "Database": 9112,
+ "neh": 9113,
+ "Vert": 9114,
+ "▁fle": 9115,
+ "▁фор": 9116,
+ "▁foreign": 9117,
+ "Abstract": 9118,
+ "▁magn": 9119,
+ "▁modified": 9120,
+ "▁military": 9121,
+ "▁monde": 9122,
+ "▁Action": 9123,
+ "▁bank": 9124,
+ "Serial": 9125,
+ "▁continuous": 9126,
+ "▁gel": 9127,
+ "▁physical": 9128,
+ "▁introduced": 9129,
+ "uture": 9130,
+ "rick": 9131,
+ "▁presented": 9132,
+ "▁Prov": 9133,
+ "▁Both": 9134,
+ "Pos": 9135,
+ "super": 9136,
+ "": 9137,
+ "▁finding": 9138,
+ "nel": 9139,
+ "unde": 9140,
+ "▁från": 9141,
+ "skim": 9142,
+ "▁Hill": 9143,
+ "fn": 9144,
+ "▁Canad": 9145,
+ "▁intended": 9146,
+ "ozzáférés": 9147,
+ "▁juillet": 9148,
+ "▁Wars": 9149,
+ "▁successful": 9150,
+ "▁charg": 9151,
+ "iele": 9152,
+ "omething": 9153,
+ "oku": 9154,
+ "fetch": 9155,
+ "▁}}": 9156,
+ "bank": 9157,
+ "operatorname": 9158,
+ "▁Color": 9159,
+ "▁Card": 9160,
+ "tu": 9161,
+ "▁\",": 9162,
+ "wid": 9163,
+ "▁gep": 9164,
+ "XML": 9165,
+ "================": 9166,
+ "▁Virgin": 9167,
+ "ährend": 9168,
+ "licated": 9169,
+ "Dir": 9170,
+ "zero": 9171,
+ "▁Kal": 9172,
+ "▁Party": 9173,
+ "▁å": 9174,
+ "price": 9175,
+ "don": 9176,
+ "▁warning": 9177,
+ "▁Bad": 9178,
+ "▁Supp": 9179,
+ "▁Liga": 9180,
+ "▁Pierre": 9181,
+ "Record": 9182,
+ "ulator": 9183,
+ "▁Rome": 9184,
+ "▁theorem": 9185,
+ "▁entirely": 9186,
+ "ским": 9187,
+ "het": 9188,
+ "▁dopo": 9189,
+ "Next": 9190,
+ "mlung": 9191,
+ "wig": 9192,
+ "▁Ath": 9193,
+ "▁Sou": 9194,
+ "licher": 9195,
+ "▁sudo": 9196,
+ "ests": 9197,
+ "хів": 9198,
+ "▁septiembre": 9199,
+ "▁micro": 9200,
+ "▁trop": 9201,
+ "fit": 9202,
+ "Core": 9203,
+ "▁Radio": 9204,
+ "▁Organ": 9205,
+ "▁Power": 9206,
+ "CF": 9207,
+ "▁Last": 9208,
+ "▁oppos": 9209,
+ "▁offset": 9210,
+ "▁regia": 9211,
+ "▁minimum": 9212,
+ "▁helped": 9213,
+ "andon": 9214,
+ "ifying": 9215,
+ "ruit": 9216,
+ "enschapp": 9217,
+ "▁bere": 9218,
+ "VM": 9219,
+ "▁Awards": 9220,
+ "▁agr": 9221,
+ "ynomial": 9222,
+ "enced": 9223,
+ "▁devices": 9224,
+ "▁bot": 9225,
+ "▁firm": 9226,
+ "▁writer": 9227,
+ "▁ring": 9228,
+ ".-": 9229,
+ "istes": 9230,
+ "lä": 9231,
+ "▁mel": 9232,
+ "entation": 9233,
+ "▁Schw": 9234,
+ "▁nome": 9235,
+ "▁pobla": 9236,
+ "▁woj": 9237,
+ "▁ul": 9238,
+ "ento": 9239,
+ "ых": 9240,
+ "▁resist": 9241,
+ "▁remains": 9242,
+ "▁Ca": 9243,
+ "aña": 9244,
+ "▁Court": 9245,
+ "utable": 9246,
+ "entially": 9247,
+ "▁trat": 9248,
+ "▁Visual": 9249,
+ "▁restrict": 9250,
+ "▁previously": 9251,
+ "cation": 9252,
+ "▁осо": 9253,
+ "▁MySQL": 9254,
+ "för": 9255,
+ "cala": 9256,
+ "▁culture": 9257,
+ "live": 9258,
+ "▁accepted": 9259,
+ "Did": 9260,
+ "▁hous": 9261,
+ "▁selection": 9262,
+ "▁decre": 9263,
+ "margin": 9264,
+ "urb": 9265,
+ "▁Inc": 9266,
+ "▁Many": 9267,
+ "ibt": 9268,
+ "▁succeed": 9269,
+ "Binding": 9270,
+ "cí": 9271,
+ "▁Rog": 9272,
+ "▁shouldn": 9273,
+ "cloud": 9274,
+ "▁dz": 9275,
+ "вав": 9276,
+ "▁pix": 9277,
+ "small": 9278,
+ "▁projects": 9279,
+ "▁OK": 9280,
+ "▁latest": 9281,
+ "▁references": 9282,
+ "Program": 9283,
+ "▁erst": 9284,
+ "▁як": 9285,
+ "▁kam": 9286,
+ "▁Camb": 9287,
+ "ellt": 9288,
+ "öd": 9289,
+ "none": 9290,
+ "▁jusqu": 9291,
+ "king": 9292,
+ "▁Ped": 9293,
+ "assert": 9294,
+ "CS": 9295,
+ "rito": 9296,
+ "essa": 9297,
+ "лько": 9298,
+ "▁Von": 9299,
+ "▁Edward": 9300,
+ "▁impossible": 9301,
+ "np": 9302,
+ "words": 9303,
+ "ielt": 9304,
+ "▁Page": 9305,
+ "lers": 9306,
+ "▁pier": 9307,
+ "▁области": 9308,
+ "ittee": 9309,
+ "▁([": 9310,
+ "▁trust": 9311,
+ "NG": 9312,
+ "redu": 9313,
+ "<<": 9314,
+ "rial": 9315,
+ "▁products": 9316,
+ "▁Ern": 9317,
+ "rière": 9318,
+ "гов": 9319,
+ "▁Reich": 9320,
+ "▁Road": 9321,
+ "▁nested": 9322,
+ "Display": 9323,
+ "▁strength": 9324,
+ "ografía": 9325,
+ "▁announced": 9326,
+ "▁Science": 9327,
+ "▁райо": 9328,
+ "Parameter": 9329,
+ "▁Task": 9330,
+ "uments": 9331,
+ "▁adopt": 9332,
+ "▁Only": 9333,
+ "ють": 9334,
+ "▁cli": 9335,
+ "▁lem": 9336,
+ "stood": 9337,
+ "▁FI": 9338,
+ "ências": 9339,
+ "ponents": 9340,
+ "]$": 9341,
+ "comment": 9342,
+ "▁ya": 9343,
+ "should": 9344,
+ "ike": 9345,
+ "tim": 9346,
+ "ellig": 9347,
+ "▁sending": 9348,
+ "▁ajax": 9349,
+ "▁noviembre": 9350,
+ "umes": 9351,
+ "▁weiter": 9352,
+ "▁Dans": 9353,
+ "opp": 9354,
+ "▁septembre": 9355,
+ "otimes": 9356,
+ "ző": 9357,
+ "▁ep": 9358,
+ "vere": 9359,
+ "▁oh": 9360,
+ ":=": 9361,
+ "▁Song": 9362,
+ "”,": 9363,
+ "▁viv": 9364,
+ "▁queries": 9365,
+ "▁vá": 9366,
+ "▁décembre": 9367,
+ "▁unable": 9368,
+ "▁erh": 9369,
+ "▁`-": 9370,
+ "▁Lee": 9371,
+ "▁ersten": 9372,
+ "ôt": 9373,
+ "стве": 9374,
+ "TS": 9375,
+ "▁fragment": 9376,
+ "▁wide": 9377,
+ "▁suff": 9378,
+ "▁dut": 9379,
+ "▁Vere": 9380,
+ "іс": 9381,
+ "ading": 9382,
+ "iego": 9383,
+ "icago": 9384,
+ "▁Argent": 9385,
+ "orer": 9386,
+ "ennes": 9387,
+ "▁Leb": 9388,
+ "linux": 9389,
+ "acing": 9390,
+ "▁broken": 9391,
+ "tp": 9392,
+ "ío": 9393,
+ "abeth": 9394,
+ "istas": 9395,
+ "gew": 9396,
+ "ième": 9397,
+ "cas": 9398,
+ "▁preced": 9399,
+ "▁Dal": 9400,
+ "▁compared": 9401,
+ "equiv": 9402,
+ "illy": 9403,
+ "teen": 9404,
+ "▁Console": 9405,
+ "▁strict": 9406,
+ "itaire": 9407,
+ "▁ED": 9408,
+ "entials": 9409,
+ "▁perman": 9410,
+ "▁tous": 9411,
+ "▁geme": 9412,
+ "▁extrem": 9413,
+ "▁окру": 9414,
+ "kg": 9415,
+ "▁heavy": 9416,
+ "▁avril": 9417,
+ "▁anti": 9418,
+ "▁octobre": 9419,
+ "utf": 9420,
+ "helm": 9421,
+ "amples": 9422,
+ "▁(_": 9423,
+ "aken": 9424,
+ "▁dear": 9425,
+ "▁opinion": 9426,
+ "▁fish": 9427,
+ "▁Alexander": 9428,
+ "iw": 9429,
+ "им": 9430,
+ "cadem": 9431,
+ "▁reflect": 9432,
+ "▁др": 9433,
+ "▁trib": 9434,
+ "common": 9435,
+ "▁clearly": 9436,
+ "▁saf": 9437,
+ "=\"@+": 9438,
+ "▁Мос": 9439,
+ "сите": 9440,
+ "eqnarray": 9441,
+ "nung": 9442,
+ "▁relationship": 9443,
+ "▁Sem": 9444,
+ "▁killed": 9445,
+ "ted": 9446,
+ "uno": 9447,
+ "▁лі": 9448,
+ "▁wid": 9449,
+ "anning": 9450,
+ "▁panel": 9451,
+ "▁Leben": 9452,
+ "▁ruby": 9453,
+ "ansion": 9454,
+ "▁aren": 9455,
+ "tabular": 9456,
+ "alet": 9457,
+ "}$$": 9458,
+ "▁Lake": 9459,
+ "▁suite": 9460,
+ "▁minor": 9461,
+ "Hozzáférés": 9462,
+ "▁xmlns": 9463,
+ "DIR": 9464,
+ "driver": 9465,
+ "ints": 9466,
+ "▁vic": 9467,
+ "AND": 9468,
+ "prim": 9469,
+ "сылки": 9470,
+ "▁Ox": 9471,
+ "TC": 9472,
+ "rivial": 9473,
+ "atie": 9474,
+ "▁eight": 9475,
+ "▁conflic": 9476,
+ "angel": 9477,
+ "▁Begr": 9478,
+ "▁explicitly": 9479,
+ "ются": 9480,
+ "▁Dev": 9481,
+ "render": 9482,
+ "▁reprodu": 9483,
+ "▁cré": 9484,
+ "Gu": 9485,
+ "MB": 9486,
+ "▁kön": 9487,
+ "▁remained": 9488,
+ "▁kl": 9489,
+ "хов": 9490,
+ "▁byl": 9491,
+ "Phi": 9492,
+ "▁detail": 9493,
+ "jav": 9494,
+ "▁mouse": 9495,
+ "Bas": 9496,
+ "ię": 9497,
+ "asser": 9498,
+ "hs": 9499,
+ "▁shift": 9500,
+ "▁últ": 9501,
+ "rand": 9502,
+ "▁btn": 9503,
+ "raz": 9504,
+ "▁pul": 9505,
+ "▁statements": 9506,
+ "filename": 9507,
+ "▁prompt": 9508,
+ "élé": 9509,
+ "ikz": 9510,
+ "▁Sus": 9511,
+ "▁debut": 9512,
+ "Stat": 9513,
+ "forms": 9514,
+ "▁Hein": 9515,
+ "stadt": 9516,
+ "ennis": 9517,
+ "пол": 9518,
+ "arante": 9519,
+ "цій": 9520,
+ "▁queue": 9521,
+ "▁reci": 9522,
+ "▁sta": 9523,
+ "ynchron": 9524,
+ "centering": 9525,
+ "Some": 9526,
+ "Graph": 9527,
+ "▁tested": 9528,
+ "▁Kunst": 9529,
+ "ом": 9530,
+ "▁Nothing": 9531,
+ "ieu": 9532,
+ "“.": 9533,
+ "Bundle": 9534,
+ "▁oficial": 9535,
+ "allow": 9536,
+ "▁React": 9537,
+ "▁Library": 9538,
+ "blue": 9539,
+ "▁verw": 9540,
+ "▁pare": 9541,
+ "▁Friedrich": 9542,
+ "▁aware": 9543,
+ "Exp": 9544,
+ "▁effects": 9545,
+ "▁горо": 9546,
+ "lopedia": 9547,
+ "▁Ven": 9548,
+ "rale": 9549,
+ "▁Final": 9550,
+ "▁propos": 9551,
+ "lacement": 9552,
+ "kten": 9553,
+ "▁novel": 9554,
+ "orter": 9555,
+ "▁Germany": 9556,
+ "▁django": 9557,
+ "▁transition": 9558,
+ "▁happened": 9559,
+ "▁beautiful": 9560,
+ "▁neither": 9561,
+ "▁libraries": 9562,
+ "▁hide": 9563,
+ "alg": 9564,
+ "▁aspect": 9565,
+ "▁forget": 9566,
+ "cademy": 9567,
+ "onte": 9568,
+ "refix": 9569,
+ "▁cloud": 9570,
+ "ned": 9571,
+ "cdots": 9572,
+ "register": 9573,
+ "nym": 9574,
+ ".):": 9575,
+ "▁Jew": 9576,
+ "▁très": 9577,
+ "ниче": 9578,
+ "▁Dor": 9579,
+ "▁proc": 9580,
+ "▁gan": 9581,
+ "▁є": 9582,
+ "▁Sav": 9583,
+ "ví": 9584,
+ "Settings": 9585,
+ "▁Vari": 9586,
+ "▁cours": 9587,
+ "Ro": 9588,
+ "▁conj": 9589,
+ "▁reasons": 9590,
+ "▁reader": 9591,
+ "лександ": 9592,
+ "icate": 9593,
+ "}),": 9594,
+ "▁tasks": 9595,
+ "▁Ray": 9596,
+ "▁ric": 9597,
+ "Ke": 9598,
+ "onie": 9599,
+ "rf": 9600,
+ ")[": 9601,
+ "▁subsequ": 9602,
+ "▁Turn": 9603,
+ "▁VIAF": 9604,
+ "mathsf": 9605,
+ "HE": 9606,
+ "▁declare": 9607,
+ "▁protocol": 9608,
+ "▁PC": 9609,
+ "цион": 9610,
+ "ViewById": 9611,
+ "▁animation": 9612,
+ "▁confused": 9613,
+ "вич": 9614,
+ "▁enabled": 9615,
+ "owo": 9616,
+ "ást": 9617,
+ "öt": 9618,
+ "▁mand": 9619,
+ "▁Rail": 9620,
+ "fields": 9621,
+ "▁Kap": 9622,
+ "▁algebra": 9623,
+ "▁Су": 9624,
+ "férence": 9625,
+ "▁Current": 9626,
+ "сно": 9627,
+ "▁Lim": 9628,
+ "Params": 9629,
+ "▁Antonio": 9630,
+ "▁tv": 9631,
+ "late": 9632,
+ "ifer": 9633,
+ "Entry": 9634,
+ "▁Serv": 9635,
+ "▁musical": 9636,
+ "▁trace": 9637,
+ "▁scient": 9638,
+ "fic": 9639,
+ "▁forgot": 9640,
+ "video": 9641,
+ "▁older": 9642,
+ "Tree": 9643,
+ "▁uns": 9644,
+ "ники": 9645,
+ "▁Europa": 9646,
+ "▁Zwe": 9647,
+ "▁бе": 9648,
+ "▁vec": 9649,
+ "жу": 9650,
+ "▁▁▁▁▁▁▁▁▁▁▁": 9651,
+ "Match": 9652,
+ "span": 9653,
+ "▁blank": 9654,
+ "▁später": 9655,
+ "▁Ty": 9656,
+ "▁dict": 9657,
+ "ña": 9658,
+ "▁confirm": 9659,
+ "▁vý": 9660,
+ "зан": 9661,
+ "Rel": 9662,
+ "film": 9663,
+ "▁Rot": 9664,
+ "▁Hy": 9665,
+ "ках": 9666,
+ "▁demand": 9667,
+ "▁minist": 9668,
+ "▁Madrid": 9669,
+ "▁usual": 9670,
+ "spiel": 9671,
+ "eros": 9672,
+ "▁tutorial": 9673,
+ "▁Ссылки": 9674,
+ "sys": 9675,
+ "циаль": 9676,
+ "▁spread": 9677,
+ "▁convers": 9678,
+ "▁roll": 9679,
+ "artifactId": 9680,
+ "▁Number": 9681,
+ "▁symmet": 9682,
+ "▁Mult": 9683,
+ "expected": 9684,
+ "▁axis": 9685,
+ "▁matching": 9686,
+ "▁food": 9687,
+ "groupId": 9688,
+ "Mapp": 9689,
+ "▁свя": 9690,
+ "▁vend": 9691,
+ "Found": 9692,
+ "otto": 9693,
+ "Cat": 9694,
+ "crit": 9695,
+ "istent": 9696,
+ "▁drei": 9697,
+ "▁ended": 9698,
+ "▁Tele": 9699,
+ "component": 9700,
+ "▁involved": 9701,
+ "▁Estados": 9702,
+ "▁danger": 9703,
+ "▁chain": 9704,
+ "▁Prom": 9705,
+ "hom": 9706,
+ "▁polít": 9707,
+ "cop": 9708,
+ "▁nap": 9709,
+ "rif": 9710,
+ "plements": 9711,
+ "▁vent": 9712,
+ "anna": 9713,
+ "anted": 9714,
+ "dated": 9715,
+ "anth": 9716,
+ "▁threads": 9717,
+ "зова": 9718,
+ "▁станов": 9719,
+ "▁eerst": 9720,
+ "buf": 9721,
+ "heid": 9722,
+ "▁Ru": 9723,
+ "▁Prim": 9724,
+ "▁migr": 9725,
+ "▁Unidos": 9726,
+ "▁arbitr": 9727,
+ "▁roman": 9728,
+ "ountry": 9729,
+ "ultur": 9730,
+ "▁König": 9731,
+ "▁annot": 9732,
+ "aching": 9733,
+ "▁Haupt": 9734,
+ "umin": 9735,
+ "▁hem": 9736,
+ "ckets": 9737,
+ "bau": 9738,
+ "ection": 9739,
+ "eft": 9740,
+ "▁packages": 9741,
+ "▁Kur": 9742,
+ "thur": 9743,
+ "▁pays": 9744,
+ "liament": 9745,
+ "▁Бу": 9746,
+ "▁cada": 9747,
+ "points": 9748,
+ "ocket": 9749,
+ "▁verb": 9750,
+ "лее": 9751,
+ "▁submit": 9752,
+ "▁san": 9753,
+ "ruby": 9754,
+ "▁east": 9755,
+ "kov": 9756,
+ "▁Verlag": 9757,
+ "▁spot": 9758,
+ "ppo": 9759,
+ "Each": 9760,
+ "jekt": 9761,
+ "▁Biographie": 9762,
+ "▁news": 9763,
+ "▁país": 9764,
+ "ufact": 9765,
+ "▁dia": 9766,
+ "кова": 9767,
+ "▁accompl": 9768,
+ "▁Ét": 9769,
+ "ilities": 9770,
+ "▁ihm": 9771,
+ "invoke": 9772,
+ "▁append": 9773,
+ ".),": 9774,
+ "▁lab": 9775,
+ "anging": 9776,
+ "istan": 9777,
+ "resol": 9778,
+ "▁Section": 9779,
+ "Parent": 9780,
+ "moz": 9781,
+ "Mat": 9782,
+ "styles": 9783,
+ "unden": 9784,
+ "“,": 9785,
+ "irtschaft": 9786,
+ "ким": 9787,
+ "▁Finally": 9788,
+ "phen": 9789,
+ "▁Pac": 9790,
+ "▁ArrayList": 9791,
+ "▁recover": 9792,
+ "▁education": 9793,
+ "models": 9794,
+ "ped": 9795,
+ "▁happy": 9796,
+ "чу": 9797,
+ "▁guerra": 9798,
+ "media": 9799,
+ "OF": 9800,
+ "▁ensure": 9801,
+ "Mark": 9802,
+ "database": 9803,
+ "oggle": 9804,
+ "▁publish": 9805,
+ "OW": 9806,
+ "▁Bau": 9807,
+ "?.": 9808,
+ "▁части": 9809,
+ "▁repository": 9810,
+ "▁Matt": 9811,
+ "high": 9812,
+ "oven": 9813,
+ "▁ger": 9814,
+ "▁unknown": 9815,
+ "Amer": 9816,
+ "▁Brown": 9817,
+ "ALL": 9818,
+ "▁resulting": 9819,
+ "▁bor": 9820,
+ "▁poet": 9821,
+ "ними": 9822,
+ "Email": 9823,
+ "Font": 9824,
+ "▁hist": 9825,
+ "▁today": 9826,
+ "▁Berg": 9827,
+ "▁buttons": 9828,
+ "тал": 9829,
+ "▁sni": 9830,
+ "▁челов": 9831,
+ "Cre": 9832,
+ "▁union": 9833,
+ "▁zich": 9834,
+ "ishop": 9835,
+ "▁quando": 9836,
+ "Po": 9837,
+ "CTION": 9838,
+ "▁Cost": 9839,
+ "судар": 9840,
+ "erved": 9841,
+ "Note": 9842,
+ "Equal": 9843,
+ "лия": 9844,
+ "бур": 9845,
+ "▁abstract": 9846,
+ "stop": 9847,
+ "▁advice": 9848,
+ "▁icon": 9849,
+ "▁travel": 9850,
+ "BS": 9851,
+ "vens": 9852,
+ "▁batch": 9853,
+ "lique": 9854,
+ "sheet": 9855,
+ "▁ihre": 9856,
+ "emon": 9857,
+ "berto": 9858,
+ "▁assigned": 9859,
+ "ью": 9860,
+ "Phone": 9861,
+ "▁award": 9862,
+ "▁functionality": 9863,
+ "alla": 9864,
+ "▁Dam": 9865,
+ "▁ciudad": 9866,
+ "▁cluster": 9867,
+ "Description": 9868,
+ "▁sheet": 9869,
+ "▁Australian": 9870,
+ "▁».": 9871,
+ "▁\"<": 9872,
+ "▁wondering": 9873,
+ "aine": 9874,
+ "▁represented": 9875,
+ "kappa": 9876,
+ "nb": 9877,
+ "▁sy": 9878,
+ "▁Kö": 9879,
+ "=\"#": 9880,
+ "▁seven": 9881,
+ "Directory": 9882,
+ "▁sister": 9883,
+ "plates": 9884,
+ "▁luck": 9885,
+ "▁remaining": 9886,
+ "▁Vill": 9887,
+ "werk": 9888,
+ "anni": 9889,
+ "etti": 9890,
+ "func": 9891,
+ "▁ban": 9892,
+ "ims": 9893,
+ "miss": 9894,
+ "agraph": 9895,
+ "екси": 9896,
+ "▁Ref": 9897,
+ "nitt": 9898,
+ "▁Gab": 9899,
+ "▁andere": 9900,
+ "▁jedoch": 9901,
+ "results": 9902,
+ "!\\": 9903,
+ "▁listed": 9904,
+ "▁loro": 9905,
+ "▁knows": 9906,
+ "жно": 9907,
+ "Rad": 9908,
+ "▁socket": 9909,
+ "multi": 9910,
+ "▁рі": 9911,
+ "rails": 9912,
+ "▁tar": 9913,
+ "▁gentle": 9914,
+ "sett": 9915,
+ "services": 9916,
+ "bound": 9917,
+ "igkeit": 9918,
+ "aja": 9919,
+ "▁cmd": 9920,
+ "agger": 9921,
+ "▁ba": 9922,
+ "▁Belg": 9923,
+ "▁Kle": 9924,
+ "▁wordt": 9925,
+ "▁fost": 9926,
+ "▁dimension": 9927,
+ "Ang": 9928,
+ "uming": 9929,
+ "Obj": 9930,
+ "нен": 9931,
+ "▁Marie": 9932,
+ "exists": 9933,
+ "тро": 9934,
+ "▁боль": 9935,
+ "emente": 9936,
+ "▁Jon": 9937,
+ "SERT": 9938,
+ "▁highest": 9939,
+ "aki": 9940,
+ "▁tres": 9941,
+ "▁circum": 9942,
+ "▁Down": 9943,
+ "ommen": 9944,
+ "urer": 9945,
+ "▁causes": 9946,
+ "venue": 9947,
+ "issance": 9948,
+ "▁influence": 9949,
+ "▁fat": 9950,
+ "реди": 9951,
+ "}\\\\": 9952,
+ "▁entr": 9953,
+ "▁Sign": 9954,
+ "▁кла": 9955,
+ "▁binding": 9956,
+ "essen": 9957,
+ "▁Фран": 9958,
+ "▁Local": 9959,
+ "▁явля": 9960,
+ "appro": 9961,
+ "▁dependencies": 9962,
+ "▁talking": 9963,
+ "▁zurück": 9964,
+ "connection": 9965,
+ "Active": 9966,
+ "bbe": 9967,
+ "irls": 9968,
+ "▁Inf": 9969,
+ "wd": 9970,
+ "▁ис": 9971,
+ "road": 9972,
+ "▁conven": 9973,
+ "ět": 9974,
+ "вез": 9975,
+ "▁entries": 9976,
+ "esc": 9977,
+ "▁bits": 9978,
+ "asso": 9979,
+ "WR": 9980,
+ "ships": 9981,
+ "▁dés": 9982,
+ "esp": 9983,
+ "Make": 9984,
+ "▁familiar": 9985,
+ "Art": 9986,
+ "▁army": 9987,
+ "ctr": 9988,
+ "éric": 9989,
+ "queue": 9990,
+ "▁\\{": 9991,
+ "uela": 9992,
+ "amiento": 9993,
+ "ших": 9994,
+ "▁\"\"\"": 9995,
+ "contr": 9996,
+ "лле": 9997,
+ "FS": 9998,
+ "▁market": 9999,
+ "ång": 10000,
+ "citep": 10001,
+ "Ill": 10002,
+ "rank": 10003,
+ "▁sender": 10004,
+ "▁beim": 10005,
+ "рак": 10006,
+ "▁compat": 10007,
+ "▁occurs": 10008,
+ "▁diese": 10009,
+ "ститу": 10010,
+ "awa": 10011,
+ "▁iOS": 10012,
+ "▁Chinese": 10013,
+ "▁TR": 10014,
+ "▁Ken": 10015,
+ "▁Une": 10016,
+ "▁creates": 10017,
+ "▁showed": 10018,
+ "▁év": 10019,
+ "ologia": 10020,
+ "▁protest": 10021,
+ "▁Pf": 10022,
+ "▁squad": 10023,
+ "++,": 10024,
+ "áv": 10025,
+ "▁essere": 10026,
+ "зя": 10027,
+ "kol": 10028,
+ "▁slightly": 10029,
+ "addr": 10030,
+ "ân": 10031,
+ "▁reduce": 10032,
+ "▁\\(\\": 10033,
+ "▁Dep": 10034,
+ "▁generic": 10035,
+ "Loader": 10036,
+ "ți": 10037,
+ "▁пос": 10038,
+ "▁occasion": 10039,
+ "▁Lady": 10040,
+ "entity": 10041,
+ "▁avant": 10042,
+ "▁Pas": 10043,
+ "aggio": 10044,
+ "\\{": 10045,
+ "пад": 10046,
+ "atholic": 10047,
+ "Password": 10048,
+ "▁respond": 10049,
+ "▁Non": 10050,
+ "AG": 10051,
+ "neg": 10052,
+ "▁ус": 10053,
+ "blob": 10054,
+ "cke": 10055,
+ "▁Consider": 10056,
+ "▁Care": 10057,
+ "iki": 10058,
+ "▁Chicago": 10059,
+ "inden": 10060,
+ "▁Cop": 10061,
+ "]+": 10062,
+ "öm": 10063,
+ "évrier": 10064,
+ "кло": 10065,
+ "alen": 10066,
+ "▁maj": 10067,
+ "racy": 10068,
+ "orte": 10069,
+ "ients": 10070,
+ "ells": 10071,
+ "activity": 10072,
+ "▁runtime": 10073,
+ "NULL": 10074,
+ "▁possibly": 10075,
+ "▁stri": 10076,
+ "izi": 10077,
+ "▁mir": 10078,
+ "▁Version": 10079,
+ "prime": 10080,
+ "▁twenty": 10081,
+ "▁Mah": 10082,
+ "▁sounds": 10083,
+ "шен": 10084,
+ "clusion": 10085,
+ "acz": 10086,
+ "▁determined": 10087,
+ "▁Rep": 10088,
+ "▁Landes": 10089,
+ "▁wall": 10090,
+ "igi": 10091,
+ "▁reset": 10092,
+ "шо": 10093,
+ "yan": 10094,
+ "Met": 10095,
+ "ei": 10096,
+ "▁appearance": 10097,
+ "▁fois": 10098,
+ "▁nell": 10099,
+ "esi": 10100,
+ "ёт": 10101,
+ "loor": 10102,
+ "▁Ul": 10103,
+ "▁resolution": 10104,
+ "▁fot": 10105,
+ "▁throughout": 10106,
+ "▁ri": 10107,
+ "Level": 10108,
+ "pool": 10109,
+ "▁identity": 10110,
+ "▁janu": 10111,
+ "▁imper": 10112,
+ "▁över": 10113,
+ "}`": 10114,
+ "▁infer": 10115,
+ "▁dates": 10116,
+ "▁Standard": 10117,
+ "force": 10118,
+ "ockey": 10119,
+ "tera": 10120,
+ "▁distingu": 10121,
+ "▁presence": 10122,
+ "lica": 10123,
+ "▁leaving": 10124,
+ "itung": 10125,
+ "éb": 10126,
+ "▁establish": 10127,
+ "▁maar": 10128,
+ "adi": 10129,
+ "▁News": 10130,
+ "azon": 10131,
+ "folg": 10132,
+ "▁Hence": 10133,
+ "▁Ye": 10134,
+ "▁fab": 10135,
+ "▁führ": 10136,
+ "itmap": 10137,
+ "▁Vers": 10138,
+ "rov": 10139,
+ "Sign": 10140,
+ "device": 10141,
+ "Sigma": 10142,
+ "▁wetenschapp": 10143,
+ "▁Ps": 10144,
+ "PATH": 10145,
+ "▁torn": 10146,
+ "vest": 10147,
+ "стов": 10148,
+ "account": 10149,
+ "▁largest": 10150,
+ "▁percent": 10151,
+ "▁Women": 10152,
+ "▁img": 10153,
+ "tool": 10154,
+ "▁roce": 10155,
+ "▁ay": 10156,
+ "inet": 10157,
+ "▁août": 10158,
+ "▁polynomial": 10159,
+ "▁integral": 10160,
+ "▁areas": 10161,
+ "}'": 10162,
+ "▁hyp": 10163,
+ "loyee": 10164,
+ "таль": 10165,
+ "▁proxy": 10166,
+ "▁Wy": 10167,
+ "▁Мекси": 10168,
+ "▁escape": 10169,
+ "olar": 10170,
+ "▁mistake": 10171,
+ ")}{": 10172,
+ "▁Pot": 10173,
+ "▁processes": 10174,
+ "\">\r": 10175,
+ "halten": 10176,
+ "zza": 10177,
+ "amo": 10178,
+ "кре": 10179,
+ "▁Wood": 10180,
+ "ør": 10181,
+ "▁сер": 10182,
+ "ocia": 10183,
+ "two": 10184,
+ "profile": 10185,
+ "▁Ast": 10186,
+ "embro": 10187,
+ "▁arms": 10188,
+ "inas": 10189,
+ "innen": 10190,
+ "▁msg": 10191,
+ "INT": 10192,
+ "▁batter": 10193,
+ "ignment": 10194,
+ "▁vy": 10195,
+ "Hrsg": 10196,
+ "▁Grund": 10197,
+ "roc": 10198,
+ "seg": 10199,
+ "▁decor": 10200,
+ "▁eventually": 10201,
+ ">,": 10202,
+ "▁pag": 10203,
+ "anten": 10204,
+ "▁strugg": 10205,
+ "}^\\": 10206,
+ "daten": 10207,
+ "▁rela": 10208,
+ "пов": 10209,
+ "▁коро": 10210,
+ "▁Bos": 10211,
+ "▁labor": 10212,
+ "▁Secret": 10213,
+ "ugen": 10214,
+ "▁jap": 10215,
+ "▁husband": 10216,
+ "▁Album": 10217,
+ "▁etwa": 10218,
+ "▁произ": 10219,
+ "richt": 10220,
+ "rach": 10221,
+ "bat": 10222,
+ "▁prepar": 10223,
+ "▁Stock": 10224,
+ "▁lack": 10225,
+ "хід": 10226,
+ "▁hogy": 10227,
+ "▁Chrome": 10228,
+ "▁Admin": 10229,
+ "▁comparison": 10230,
+ "▁increasing": 10231,
+ "нг": 10232,
+ "imi": 10233,
+ "Db": 10234,
+ "▁gef": 10235,
+ "ucht": 10236,
+ "ése": 10237,
+ "gence": 10238,
+ "▁Core": 10239,
+ "▁incorrect": 10240,
+ "▁assuming": 10241,
+ "ourse": 10242,
+ "ieron": 10243,
+ "▁Theorem": 10244,
+ "▁casa": 10245,
+ "jes": 10246,
+ "▁дере": 10247,
+ "▁`\"": 10248,
+ "LD": 10249,
+ "äß": 10250,
+ "Deb": 10251,
+ "▁suiv": 10252,
+ "▁Bank": 10253,
+ "libs": 10254,
+ "▁Leon": 10255,
+ "▁quart": 10256,
+ "▁professional": 10257,
+ "▁tiene": 10258,
+ "▁accomp": 10259,
+ "стер": 10260,
+ "▁UK": 10261,
+ "NN": 10262,
+ "▁lí": 10263,
+ "ця": 10264,
+ "kel": 10265,
+ "▁•": 10266,
+ "▁dise": 10267,
+ "onto": 10268,
+ "▁má": 10269,
+ "ifs": 10270,
+ "bild": 10271,
+ "▁compute": 10272,
+ "▁éd": 10273,
+ "ję": 10274,
+ "▁Mé": 10275,
+ "▁languages": 10276,
+ "▁Times": 10277,
+ "cen": 10278,
+ "▁авто": 10279,
+ "ým": 10280,
+ "enez": 10281,
+ "▁upp": 10282,
+ "▁méd": 10283,
+ "▁cuando": 10284,
+ "од": 10285,
+ "Intent": 10286,
+ "eerd": 10287,
+ "▁Tal": 10288,
+ "offset": 10289,
+ "▁haben": 10290,
+ "reme": 10291,
+ "▁Stack": 10292,
+ "▁dri": 10293,
+ "▁seinem": 10294,
+ "▁février": 10295,
+ "▁combination": 10296,
+ "▁soll": 10297,
+ "▁movement": 10298,
+ "Spec": 10299,
+ "кры": 10300,
+ "retch": 10301,
+ "Offset": 10302,
+ "Root": 10303,
+ "Ар": 10304,
+ "wart": 10305,
+ "▁Follow": 10306,
+ "▁Social": 10307,
+ "ников": 10308,
+ "▁→": 10309,
+ "Don": 10310,
+ "▁harm": 10311,
+ "agr": 10312,
+ "nego": 10313,
+ "resource": 10314,
+ "▁Luc": 10315,
+ "▁seinen": 10316,
+ "▁Department": 10317,
+ "▁Update": 10318,
+ "▁Texas": 10319,
+ "▁reve": 10320,
+ "▁Pos": 10321,
+ "▁shot": 10322,
+ "othe": 10323,
+ "▁repeated": 10324,
+ "▁recently": 10325,
+ "ában": 10326,
+ "aks": 10327,
+ "пан": 10328,
+ "▁cha": 10329,
+ "ohl": 10330,
+ "▁tend": 10331,
+ "▁дво": 10332,
+ "chts": 10333,
+ "çaise": 10334,
+ "pling": 10335,
+ "album": 10336,
+ "ej": 10337,
+ "▁`[": 10338,
+ "maps": 10339,
+ "▁units": 10340,
+ "▁": 15110,
+ "▁pří": 15111,
+ "pandas": 15112,
+ "▁Plus": 15113,
+ "yll": 15114,
+ "▁terror": 15115,
+ "▁crim": 15116,
+ "▁zak": 15117,
+ "issue": 15118,
+ "panel": 15119,
+ "svg": 15120,
+ "▁reb": 15121,
+ "Customer": 15122,
+ "switch": 15123,
+ "обра": 15124,
+ "▁Championships": 15125,
+ "clo": 15126,
+ "atte": 15127,
+ "▁anymore": 15128,
+ "▁excellent": 15129,
+ "▁opportunity": 15130,
+ "▁Bahn": 15131,
+ "чин": 15132,
+ "eting": 15133,
+ "▁incident": 15134,
+ "tom": 15135,
+ "Pers": 15136,
+ "bben": 15137,
+ "ственной": 15138,
+ "их": 15139,
+ "router": 15140,
+ "▁newly": 15141,
+ "▁silence": 15142,
+ "▁GNU": 15143,
+ "▁Rails": 15144,
+ "▁Amb": 15145,
+ "▁Qual": 15146,
+ "▁Schaus": 15147,
+ "▁Sohn": 15148,
+ "▁ALL": 15149,
+ "▁royal": 15150,
+ "▁£": 15151,
+ "wię": 15152,
+ "▁entfer": 15153,
+ "▁Remove": 15154,
+ "▁hardly": 15155,
+ "Using": 15156,
+ "лог": 15157,
+ "▁Ich": 15158,
+ "▁derni": 15159,
+ "▁Connection": 15160,
+ "fish": 15161,
+ "▁Inform": 15162,
+ "▁Ener": 15163,
+ "roit": 15164,
+ "Bbb": 15165,
+ "ViewModel": 15166,
+ "Video": 15167,
+ "iley": 15168,
+ "▁много": 15169,
+ "▁Gem": 15170,
+ "▁compreh": 15171,
+ "enumerate": 15172,
+ "ulas": 15173,
+ "▁Bah": 15174,
+ "▁Yet": 15175,
+ "BR": 15176,
+ "хра": 15177,
+ "▁county": 15178,
+ "▁Hist": 15179,
+ "▁Гу": 15180,
+ "▁Ј": 15181,
+ "▁mari": 15182,
+ "▁Clar": 15183,
+ "Bitmap": 15184,
+ "▁Cz": 15185,
+ "▁mån": 15186,
+ "▁mere": 15187,
+ "▁musique": 15188,
+ "also": 15189,
+ "dates": 15190,
+ "▁DVD": 15191,
+ "▁gol": 15192,
+ "fony": 15193,
+ "▁Castle": 15194,
+ "▁фами": 15195,
+ "▁arrang": 15196,
+ "▁Business": 15197,
+ "▁Kaz": 15198,
+ "▁osc": 15199,
+ "▁secolo": 15200,
+ "▁affected": 15201,
+ "▁Health": 15202,
+ "reb": 15203,
+ "editor": 15204,
+ "▁owned": 15205,
+ "tl": 15206,
+ "▁ví": 15207,
+ "чних": 15208,
+ "кви": 15209,
+ "▁devient": 15210,
+ "Mutable": 15211,
+ "▁tegen": 15212,
+ "Register": 15213,
+ "єю": 15214,
+ "▁caracter": 15215,
+ "лли": 15216,
+ "▁nouvelle": 15217,
+ "oko": 15218,
+ "ichtet": 15219,
+ "▁evol": 15220,
+ "▁Hab": 15221,
+ "▁militar": 15222,
+ "▁puts": 15223,
+ "endif": 15224,
+ "▁Davis": 15225,
+ "▁Scotland": 15226,
+ "regular": 15227,
+ "▁Context": 15228,
+ "ispiel": 15229,
+ "▁Gallery": 15230,
+ "\",\r": 15231,
+ "▁arc": 15232,
+ "▁INFO": 15233,
+ "▁cod": 15234,
+ "дів": 15235,
+ "▁varchar": 15236,
+ "▁toujours": 15237,
+ "atial": 15238,
+ "▁hanno": 15239,
+ "▁профес": 15240,
+ "▁launched": 15241,
+ "▁населення": 15242,
+ "▁ton": 15243,
+ "aused": 15244,
+ "▁із": 15245,
+ "▁tö": 15246,
+ "▁Pur": 15247,
+ "▁olymp": 15248,
+ "ARN": 15249,
+ "óm": 15250,
+ "▁august": 15251,
+ "▁furn": 15252,
+ "▁Colomb": 15253,
+ "▁Staats": 15254,
+ "hora": 15255,
+ "▁мор": 15256,
+ "canvas": 15257,
+ "▁grave": 15258,
+ "▁composition": 15259,
+ "acja": 15260,
+ "▁которые": 15261,
+ "▁чо": 15262,
+ "General": 15263,
+ "ані": 15264,
+ "▁Johannes": 15265,
+ "кар": 15266,
+ "▁част": 15267,
+ "▁Васи": 15268,
+ "ssh": 15269,
+ "▁replacing": 15270,
+ "▁<>": 15271,
+ "ців": 15272,
+ "laus": 15273,
+ "eny": 15274,
+ "ähl": 15275,
+ "▁marg": 15276,
+ "cience": 15277,
+ "▁instruction": 15278,
+ "▁који": 15279,
+ "Editor": 15280,
+ "▁fundamental": 15281,
+ "mund": 15282,
+ "▁exceptions": 15283,
+ "▁plate": 15284,
+ "▁Lis": 15285,
+ "▁deren": 15286,
+ "prep": 15287,
+ "▁januari": 15288,
+ "Scope": 15289,
+ "ynast": 15290,
+ "rv": 15291,
+ "orsz": 15292,
+ "▁Tony": 15293,
+ "▁ді": 15294,
+ "▁одна": 15295,
+ "▁sab": 15296,
+ "oti": 15297,
+ "jel": 15298,
+ "▁generator": 15299,
+ "▁'.": 15300,
+ "▁sharp": 15301,
+ "▁только": 15302,
+ "▁accounts": 15303,
+ "▁že": 15304,
+ "▁foram": 15305,
+ "▁gouvern": 15306,
+ "TIME": 15307,
+ "▁Soviet": 15308,
+ "▁Gé": 15309,
+ "▁exped": 15310,
+ "▁ordinary": 15311,
+ "▁Conserv": 15312,
+ "▁compla": 15313,
+ "tei": 15314,
+ "▁captain": 15315,
+ "▁Samuel": 15316,
+ "▁Dark": 15317,
+ "▁він": 15318,
+ "▁delight": 15319,
+ "recht": 15320,
+ "dia": 15321,
+ "esses": 15322,
+ "ulp": 15323,
+ "шки": 15324,
+ "bez": 15325,
+ "▁detection": 15326,
+ "▁cookie": 15327,
+ "antry": 15328,
+ "Multi": 15329,
+ "oba": 15330,
+ "▁joy": 15331,
+ "▁safety": 15332,
+ "|^": 15333,
+ "pod": 15334,
+ "adém": 15335,
+ "▁Chron": 15336,
+ "▁Django": 15337,
+ "▁ehemal": 15338,
+ "kh": 15339,
+ "èle": 15340,
+ "▁poc": 15341,
+ "Bottom": 15342,
+ "launch": 15343,
+ "nem": 15344,
+ "▁GROUP": 15345,
+ "ního": 15346,
+ "▁Gib": 15347,
+ "sdk": 15348,
+ "BE": 15349,
+ "▁Gene": 15350,
+ "▁Staff": 15351,
+ "▁subsequent": 15352,
+ "icion": 15353,
+ "▁victory": 15354,
+ "▁canon": 15355,
+ "izar": 15356,
+ "izia": 15357,
+ "▁mate": 15358,
+ "▁layers": 15359,
+ "sudo": 15360,
+ "schule": 15361,
+ "periment": 15362,
+ "ület": 15363,
+ "ARCHAR": 15364,
+ "▁террито": 15365,
+ "▁measures": 15366,
+ "▁zou": 15367,
+ "opsis": 15368,
+ "нами": 15369,
+ "tbody": 15370,
+ "▁ese": 15371,
+ "sterdam": 15372,
+ "▁photo": 15373,
+ "ynchronous": 15374,
+ "setminus": 15375,
+ "▁loads": 15376,
+ "▁pleasure": 15377,
+ "▁meille": 15378,
+ "}\\,": 15379,
+ "qual": 15380,
+ "▁favour": 15381,
+ "▁rod": 15382,
+ "Der": 15383,
+ "рабо": 15384,
+ "▁pressed": 15385,
+ "rę": 15386,
+ "ieving": 15387,
+ "material": 15388,
+ "virt": 15389,
+ "▁capable": 15390,
+ "сло": 15391,
+ "ushed": 15392,
+ "▁побе": 15393,
+ "usetts": 15394,
+ "unsigned": 15395,
+ "ków": 15396,
+ "▁ov": 15397,
+ "egeben": 15398,
+ "▁applying": 15399,
+ "▁galax": 15400,
+ "▁Oracle": 15401,
+ "▁Stuttgart": 15402,
+ "Infl": 15403,
+ "achusetts": 15404,
+ "▁deel": 15405,
+ "lire": 15406,
+ "▁statunit": 15407,
+ "▁Politiker": 15408,
+ "▁beauty": 15409,
+ ")>": 15410,
+ "▁Columbia": 15411,
+ "▁zewnętrzne": 15412,
+ "▁програ": 15413,
+ "▁dx": 15414,
+ "cknow": 15415,
+ "▁dub": 15416,
+ "unächst": 15417,
+ "findViewById": 15418,
+ "▁Mand": 15419,
+ "áll": 15420,
+ "naire": 15421,
+ "▁destin": 15422,
+ "isting": 15423,
+ "aggi": 15424,
+ "chart": 15425,
+ "▁justice": 15426,
+ "Simple": 15427,
+ "▁unfortunately": 15428,
+ "ір": 15429,
+ "▁questa": 15430,
+ "▁Governor": 15431,
+ "яв": 15432,
+ "▁música": 15433,
+ "▁equipo": 15434,
+ "▁Dest": 15435,
+ "elect": 15436,
+ "StackTrace": 15437,
+ "зом": 15438,
+ "proc": 15439,
+ "entin": 15440,
+ "adora": 15441,
+ "▁Лю": 15442,
+ "▁registered": 15443,
+ "HL": 15444,
+ "facebook": 15445,
+ "▁storing": 15446,
+ "▁Currently": 15447,
+ "▁quadr": 15448,
+ "Standard": 15449,
+ "trim": 15450,
+ "ears": 15451,
+ "sender": 15452,
+ "▁Vas": 15453,
+ "▁edific": 15454,
+ "▁Bür": 15455,
+ "▁Country": 15456,
+ "tha": 15457,
+ ";\"": 15458,
+ "nor": 15459,
+ "▁Doctor": 15460,
+ "rument": 15461,
+ "Gen": 15462,
+ "▁Buen": 15463,
+ "rade": 15464,
+ "▁kun": 15465,
+ "navigation": 15466,
+ "Pay": 15467,
+ "▁captured": 15468,
+ "▁struck": 15469,
+ "venir": 15470,
+ "ément": 15471,
+ "▁Tree": 15472,
+ "▁xx": 15473,
+ "▁narr": 15474,
+ "льного": 15475,
+ "▁installing": 15476,
+ "▁association": 15477,
+ "▁inserted": 15478,
+ "erner": 15479,
+ "validate": 15480,
+ "▁lut": 15481,
+ "▁glo": 15482,
+ "▁technology": 15483,
+ "▁Place": 15484,
+ "$?": 15485,
+ "▁zv": 15486,
+ "слі": 15487,
+ "EP": 15488,
+ "▁atmos": 15489,
+ "ugo": 15490,
+ "ért": 15491,
+ "▁Werk": 15492,
+ "▁%}": 15493,
+ "tele": 15494,
+ "Span": 15495,
+ "▁Raj": 15496,
+ "▁Personen": 15497,
+ "▁Cant": 15498,
+ "▁combat": 15499,
+ "▁observation": 15500,
+ "parameter": 15501,
+ "▁agreed": 15502,
+ "pur": 15503,
+ "▁shadow": 15504,
+ "▁gł": 15505,
+ "Keys": 15506,
+ "Cred": 15507,
+ "ouri": 15508,
+ "▁pale": 15509,
+ "ické": 15510,
+ "▁Week": 15511,
+ "▁Prime": 15512,
+ ">.": 15513,
+ "Initial": 15514,
+ "▁один": 15515,
+ "▁'',": 15516,
+ "▁учи": 15517,
+ "▁Inv": 15518,
+ "cola": 15519,
+ "cible": 15520,
+ "▁Theatre": 15521,
+ "▁bem": 15522,
+ "▁satisfy": 15523,
+ "xl": 15524,
+ "▁разви": 15525,
+ "▁pixel": 15526,
+ "lán": 15527,
+ "▁twee": 15528,
+ "çon": 15529,
+ "нения": 15530,
+ "▁AT": 15531,
+ "ège": 15532,
+ "▁Mort": 15533,
+ "▁mysq": 15534,
+ "ften": 15535,
+ "▁пес": 15536,
+ "éma": 15537,
+ "▁Services": 15538,
+ "customer": 15539,
+ "▁AWS": 15540,
+ "ът": 15541,
+ "▁Ach": 15542,
+ "%.": 15543,
+ "▁clarify": 15544,
+ "▁университе": 15545,
+ "xture": 15546,
+ "umi": 15547,
+ "▁så": 15548,
+ "▁Pel": 15549,
+ "serial": 15550,
+ "URI": 15551,
+ "▁rg": 15552,
+ "▁соста": 15553,
+ "chestra": 15554,
+ "].[": 15555,
+ "wen": 15556,
+ "▁Londres": 15557,
+ "▁anys": 15558,
+ "DataSource": 15559,
+ "▁районе": 15560,
+ "▁rein": 15561,
+ "▁metadata": 15562,
+ "umble": 15563,
+ "arbeit": 15564,
+ "hner": 15565,
+ "cient": 15566,
+ "▁norte": 15567,
+ "▁она": 15568,
+ "▁scored": 15569,
+ "▁ray": 15570,
+ "▁февра": 15571,
+ "▁protagon": 15572,
+ "▁Sac": 15573,
+ "▁commonly": 15574,
+ "LinearLayout": 15575,
+ "▁applic": 15576,
+ "▁мая": 15577,
+ "За": 15578,
+ "▁accessible": 15579,
+ "iewer": 15580,
+ "flag": 15581,
+ "▁Rück": 15582,
+ "äu": 15583,
+ "▁erano": 15584,
+ "▁authentic": 15585,
+ "▁Ry": 15586,
+ "▁неско": 15587,
+ "▁embargo": 15588,
+ "▁dry": 15589,
+ "▁reasonable": 15590,
+ "▁Module": 15591,
+ "▁acceler": 15592,
+ "▁interview": 15593,
+ "▁Creek": 15594,
+ "▁alpha": 15595,
+ "serie": 15596,
+ "They": 15597,
+ "ючи": 15598,
+ "▁Hof": 15599,
+ "▁CR": 15600,
+ "modal": 15601,
+ "▁sequences": 15602,
+ "closed": 15603,
+ ")}$": 15604,
+ "▁Чер": 15605,
+ "▁ORDER": 15606,
+ "Rightarrow": 15607,
+ "hausen": 15608,
+ "}}_": 15609,
+ "▁també": 15610,
+ "▁magnetic": 15611,
+ "▁McC": 15612,
+ "▁winning": 15613,
+ "underline": 15614,
+ "▁Billboard": 15615,
+ "naio": 15616,
+ "▁liqu": 15617,
+ "displaystyle": 15618,
+ "timeout": 15619,
+ "▁considerable": 15620,
+ "▁eben": 15621,
+ "ifferent": 15622,
+ "anu": 15623,
+ "▁Сов": 15624,
+ "[(": 15625,
+ "▁:-)": 15626,
+ "leitung": 15627,
+ "formed": 15628,
+ "▁Manager": 15629,
+ "▁onclick": 15630,
+ "TY": 15631,
+ "тах": 15632,
+ "CV": 15633,
+ "runtime": 15634,
+ "poque": 15635,
+ "▁Ло": 15636,
+ "Temp": 15637,
+ "loaded": 15638,
+ "▁!==": 15639,
+ "▁singer": 15640,
+ "far": 15641,
+ "▁Comple": 15642,
+ "▁Österreich": 15643,
+ "Policy": 15644,
+ "▁worker": 15645,
+ "Wrapper": 15646,
+ "obi": 15647,
+ "▁discussed": 15648,
+ "▁buy": 15649,
+ "▁января": 15650,
+ "▁Din": 15651,
+ "▁ged": 15652,
+ "ској": 15653,
+ "Europe": 15654,
+ "▁tall": 15655,
+ "hos": 15656,
+ "лаго": 15657,
+ "▁Block": 15658,
+ "▁identified": 15659,
+ "ListView": 15660,
+ "▁attempting": 15661,
+ "▁typical": 15662,
+ "psum": 15663,
+ "oster": 15664,
+ "▁журна": 15665,
+ "Pe": 15666,
+ "merce": 15667,
+ "▁unexpected": 15668,
+ "hui": 15669,
+ "letter": 15670,
+ "▁nuevo": 15671,
+ "▁або": 15672,
+ "▁VALUES": 15673,
+ "▁Iz": 15674,
+ "Flags": 15675,
+ "▁TRUE": 15676,
+ "ización": 15677,
+ "▁growing": 15678,
+ "estre": 15679,
+ "▁poly": 15680,
+ "▁Stone": 15681,
+ "▁VIII": 15682,
+ "▁localhost": 15683,
+ "ählt": 15684,
+ "▁embedded": 15685,
+ "jdbc": 15686,
+ "▁convention": 15687,
+ "▁scala": 15688,
+ "сок": 15689,
+ "▁analog": 15690,
+ "▁\"+": 15691,
+ "цю": 15692,
+ "occ": 15693,
+ "▁litt": 15694,
+ "PN": 15695,
+ "▁актив": 15696,
+ "attributes": 15697,
+ "▁Ferd": 15698,
+ "▁azure": 15699,
+ "ști": 15700,
+ "ños": 15701,
+ "ping": 15702,
+ "▁teacher": 15703,
+ "}&": 15704,
+ "ipe": 15705,
+ "▁Nob": 15706,
+ "▁има": 15707,
+ "Bind": 15708,
+ "▁magic": 15709,
+ "▁Transport": 15710,
+ "ixel": 15711,
+ "▁computed": 15712,
+ "agna": 15713,
+ "erst": 15714,
+ "HA": 15715,
+ "Wait": 15716,
+ "▁authors": 15717,
+ "▁;)": 15718,
+ "clam": 15719,
+ "▁Pennsylvan": 15720,
+ "▁drug": 15721,
+ "▁vain": 15722,
+ "▁employed": 15723,
+ "▁individuals": 15724,
+ "▁ange": 15725,
+ "utat": 15726,
+ "▁$-": 15727,
+ "correct": 15728,
+ "▁experiments": 15729,
+ "Argument": 15730,
+ "▁IB": 15731,
+ "▁père": 15732,
+ "▁Brian": 15733,
+ "berger": 15734,
+ "Mac": 15735,
+ "iast": 15736,
+ "Perm": 15737,
+ "Cast": 15738,
+ "▁{};": 15739,
+ "▁Student": 15740,
+ "▁statt": 15741,
+ "algebra": 15742,
+ "▁equals": 15743,
+ "▁projet": 15744,
+ "▁président": 15745,
+ "ActivityThread": 15746,
+ "▁einz": 15747,
+ "enia": 15748,
+ "rez": 15749,
+ "essional": 15750,
+ "▁августа": 15751,
+ "override": 15752,
+ "news": 15753,
+ "▁planet": 15754,
+ "nn": 15755,
+ "▁Wis": 15756,
+ "твер": 15757,
+ "▁Valid": 15758,
+ "▁Gef": 15759,
+ "град": 15760,
+ "▁eig": 15761,
+ "antom": 15762,
+ "▁Meister": 15763,
+ "flags": 15764,
+ "fficiale": 15765,
+ "шая": 15766,
+ "-,": 15767,
+ "ationen": 15768,
+ "mouse": 15769,
+ "standard": 15770,
+ "Single": 15771,
+ "▁bol": 15772,
+ "isis": 15773,
+ "▁fruit": 15774,
+ "course": 15775,
+ "itants": 15776,
+ "▁étaient": 15777,
+ "TextField": 15778,
+ "▁фон": 15779,
+ "▁aircraft": 15780,
+ "▁ISSN": 15781,
+ "▁western": 15782,
+ "▁representing": 15783,
+ "Esp": 15784,
+ "▁Else": 15785,
+ "▁sizes": 15786,
+ "▁satisfied": 15787,
+ "otos": 15788,
+ "UD": 15789,
+ "Final": 15790,
+ "ój": 15791,
+ "ève": 15792,
+ "▁Roy": 15793,
+ "ffen": 15794,
+ "▁salt": 15795,
+ "▁Label": 15796,
+ "Sk": 15797,
+ "▁кре": 15798,
+ "▁Литература": 15799,
+ "▁см": 15800,
+ "Attributes": 15801,
+ "aye": 15802,
+ "ськ": 15803,
+ "▁высо": 15804,
+ "-)": 15805,
+ "oses": 15806,
+ "calcul": 15807,
+ "▁Cannot": 15808,
+ "Generic": 15809,
+ "emo": 15810,
+ "▁Autor": 15811,
+ "лён": 15812,
+ "лага": 15813,
+ "vote": 15814,
+ "licates": 15815,
+ "rus": 15816,
+ "éli": 15817,
+ "opf": 15818,
+ "atique": 15819,
+ "scala": 15820,
+ "▁Ohio": 15821,
+ "▁Britann": 15822,
+ "▁bef": 15823,
+ "▁Евро": 15824,
+ "▁Career": 15825,
+ "isée": 15826,
+ "ót": 15827,
+ "bose": 15828,
+ "▁Бер": 15829,
+ "▁Controller": 15830,
+ "pole": 15831,
+ "▁allen": 15832,
+ "▁hack": 15833,
+ "▁extent": 15834,
+ "▁calci": 15835,
+ "Mer": 15836,
+ "▁summary": 15837,
+ "Mart": 15838,
+ "▁historical": 15839,
+ "imat": 15840,
+ "bud": 15841,
+ "▁FOR": 15842,
+ "export": 15843,
+ "edi": 15844,
+ "Mapping": 15845,
+ "▁Ay": 15846,
+ "▁Ruby": 15847,
+ "▁definitions": 15848,
+ "▁{$": 15849,
+ "▁yours": 15850,
+ "rias": 15851,
+ "Touch": 15852,
+ "▁Gaz": 15853,
+ "▁Autom": 15854,
+ "▁истори": 15855,
+ "▁delen": 15856,
+ "▁Kinder": 15857,
+ "}}%": 15858,
+ "▁performing": 15859,
+ "FR": 15860,
+ "▁Sig": 15861,
+ "▁Brad": 15862,
+ "bras": 15863,
+ "▁Jar": 15864,
+ "pkg": 15865,
+ "wr": 15866,
+ "▁Pays": 15867,
+ "NC": 15868,
+ "▁opposed": 15869,
+ "Try": 15870,
+ "▁везе": 15871,
+ "▁Bog": 15872,
+ "▁writes": 15873,
+ "▁stories": 15874,
+ "▁mater": 15875,
+ "▁stagione": 15876,
+ "▁sty": 15877,
+ "▁compatible": 15878,
+ "heast": 15879,
+ "▁Guy": 15880,
+ "egründ": 15881,
+ "▁identifier": 15882,
+ "▁heads": 15883,
+ "пози": 15884,
+ "▁stup": 15885,
+ "▁tf": 15886,
+ "▁још": 15887,
+ "▁Hugh": 15888,
+ "▁cards": 15889,
+ "ovy": 15890,
+ "▁Toast": 15891,
+ "allas": 15892,
+ "▁públic": 15893,
+ "▁assumes": 15894,
+ "▁чемпиона": 15895,
+ "ycler": 15896,
+ "▁Junior": 15897,
+ "▁Fich": 15898,
+ "▁estimated": 15899,
+ "zerw": 15900,
+ "dialog": 15901,
+ "шин": 15902,
+ "shell": 15903,
+ "▁них": 15904,
+ "▁pitch": 15905,
+ "дол": 15906,
+ "outube": 15907,
+ "▁Santi": 15908,
+ "OnClickListener": 15909,
+ "▁Magyar": 15910,
+ "▁vue": 15911,
+ "ião": 15912,
+ "▁`#": 15913,
+ "collect": 15914,
+ "▁Rou": 15915,
+ "analysis": 15916,
+ "istrzost": 15917,
+ "▁Digital": 15918,
+ "▁crist": 15919,
+ "riere": 15920,
+ "▁campo": 15921,
+ "Us": 15922,
+ "▁circa": 15923,
+ "▁Component": 15924,
+ "▁NSString": 15925,
+ "pd": 15926,
+ "▁prince": 15927,
+ "▁invoke": 15928,
+ "▁Marine": 15929,
+ "Allow": 15930,
+ "estic": 15931,
+ "ристи": 15932,
+ "bone": 15933,
+ "туры": 15934,
+ "▁passion": 15935,
+ "áció": 15936,
+ "▁orn": 15937,
+ "вед": 15938,
+ "▁invari": 15939,
+ "▁ні": 15940,
+ "Remove": 15941,
+ "encies": 15942,
+ "ilib": 15943,
+ "▁Director": 15944,
+ "\"\"": 15945,
+ "▁Conse": 15946,
+ "googleapis": 15947,
+ "ók": 15948,
+ "▁Укра": 15949,
+ "▁Having": 15950,
+ "Domain": 15951,
+ "ierz": 15952,
+ "нологи": 15953,
+ "Cho": 15954,
+ "undefined": 15955,
+ "alloc": 15956,
+ "▁pied": 15957,
+ "▁fraction": 15958,
+ "bia": 15959,
+ "▁поло": 15960,
+ "ugno": 15961,
+ "minister": 15962,
+ "▁principale": 15963,
+ "▁refused": 15964,
+ "browser": 15965,
+ "*,": 15966,
+ "▁Hospital": 15967,
+ "▁universal": 15968,
+ "▁Ernst": 15969,
+ "who": 15970,
+ "▁Gard": 15971,
+ "'_": 15972,
+ "conde": 15973,
+ "▁[{": 15974,
+ "sob": 15975,
+ "▁Crit": 15976,
+ "▁декабря": 15977,
+ "▁punto": 15978,
+ "▁eingesetzt": 15979,
+ "▁tör": 15980,
+ "▁Ni": 15981,
+ "▁worry": 15982,
+ "▁legend": 15983,
+ "▁були": 15984,
+ "▁komm": 15985,
+ "rijk": 15986,
+ "effect": 15987,
+ "Ori": 15988,
+ "RES": 15989,
+ "▁Peters": 15990,
+ "▁Baron": 15991,
+ "▁Got": 15992,
+ "▁honest": 15993,
+ "äre": 15994,
+ "ász": 15995,
+ "▁noble": 15996,
+ "▁conclusion": 15997,
+ "▁formatting": 15998,
+ "▁otto": 15999,
+ "▁deleg": 16000,
+ "мб": 16001,
+ "ptop": 16002,
+ "▁sends": 16003,
+ "urname": 16004,
+ "▁festival": 16005,
+ ",": 16006,
+ "рус": 16007,
+ "▁doch": 16008,
+ "subject": 16009,
+ "▁careful": 16010,
+ "quent": 16011,
+ "▁Load": 16012,
+ "temperaturen": 16013,
+ "▁rue": 16014,
+ "Memory": 16015,
+ "ța": 16016,
+ "iona": 16017,
+ "▁dentro": 16018,
+ "▁begann": 16019,
+ "▁Aqu": 16020,
+ "▁scientific": 16021,
+ "kań": 16022,
+ "лок": 16023,
+ "elde": 16024,
+ "▁Those": 16025,
+ "quier": 16026,
+ "actér": 16027,
+ "▁Auflage": 16028,
+ ")'": 16029,
+ "▁gradient": 16030,
+ "integer": 16031,
+ "▁Import": 16032,
+ "SK": 16033,
+ "▁Status": 16034,
+ "▁explo": 16035,
+ "AE": 16036,
+ "Shell": 16037,
+ "▁Paulo": 16038,
+ ".»": 16039,
+ "}": 16040,
+ "flex": 16041,
+ "▁комп": 16042,
+ "onden": 16043,
+ "accept": 16044,
+ "▁miejsce": 16045,
+ "Hub": 16046,
+ "alleng": 16047,
+ "WN": 16048,
+ "▁implementing": 16049,
+ "▁лу": 16050,
+ "▁confusing": 16051,
+ "▁Install": 16052,
+ "▁rou": 16053,
+ "▁проек": 16054,
+ "Accessor": 16055,
+ "љашње": 16056,
+ "odio": 16057,
+ "▁applies": 16058,
+ "ющий": 16059,
+ "▁Mundial": 16060,
+ "État": 16061,
+ "ietnam": 16062,
+ "hum": 16063,
+ "▁сбор": 16064,
+ "ordinate": 16065,
+ "France": 16066,
+ "▁prend": 16067,
+ "eltemperaturen": 16068,
+ "▁trabaj": 16069,
+ "Axis": 16070,
+ "▁мно": 16071,
+ "primary": 16072,
+ "▁Seite": 16073,
+ "permission": 16074,
+ "▁orden": 16075,
+ "since": 16076,
+ "▁ic": 16077,
+ "▁Brazil": 16078,
+ "▁bare": 16079,
+ "▁Nar": 16080,
+ "▁Jur": 16081,
+ "▁freedom": 16082,
+ "▁medical": 16083,
+ "ischof": 16084,
+ "▁сп": 16085,
+ "ież": 16086,
+ "▁bootstrap": 16087,
+ "▁…": 16088,
+ "▁facil": 16089,
+ "cord": 16090,
+ "ване": 16091,
+ "▁Allen": 16092,
+ "avid": 16093,
+ "ingham": 16094,
+ "zas": 16095,
+ "▁inspect": 16096,
+ "itten": 16097,
+ "osti": 16098,
+ "uh": 16099,
+ "cé": 16100,
+ "▁#####": 16101,
+ "cius": 16102,
+ "omy": 16103,
+ "▁Seine": 16104,
+ "bres": 16105,
+ "▁genus": 16106,
+ "Other": 16107,
+ "▁Golden": 16108,
+ "mul": 16109,
+ "▁Спољашње": 16110,
+ "▁gennaio": 16111,
+ "▁carefully": 16112,
+ "aal": 16113,
+ "▁analyt": 16114,
+ "neur": 16115,
+ "▁stretch": 16116,
+ "▁Occ": 16117,
+ "olas": 16118,
+ "▁firebase": 16119,
+ "▁expecting": 16120,
+ "basic": 16121,
+ "condition": 16122,
+ "prov": 16123,
+ "▁Wasser": 16124,
+ "▁concaten": 16125,
+ "▁evil": 16126,
+ "▁coefficients": 16127,
+ "West": 16128,
+ "iry": 16129,
+ "phas": 16130,
+ "▁Jam": 16131,
+ "fois": 16132,
+ "▁consid": 16133,
+ "▁mainten": 16134,
+ "nim": 16135,
+ "esser": 16136,
+ "esz": 16137,
+ "unta": 16138,
+ "uest": 16139,
+ "▁credentials": 16140,
+ "_;": 16141,
+ "Dim": 16142,
+ "преде": 16143,
+ "▁Bü": 16144,
+ "built": 16145,
+ "▁Academ": 16146,
+ "▁audi": 16147,
+ "▁två": 16148,
+ "inand": 16149,
+ "▁Theater": 16150,
+ "▁genre": 16151,
+ "ços": 16152,
+ "gresql": 16153,
+ "▁weap": 16154,
+ "▁Rab": 16155,
+ "▁’": 16156,
+ "▁adult": 16157,
+ "▁dém": 16158,
+ "``": 16159,
+ "▁stabil": 16160,
+ "▁corresponds": 16161,
+ "▁Eastern": 16162,
+ "unnel": 16163,
+ "Worker": 16164,
+ "▁coh": 16165,
+ "лка": 16166,
+ "▁Massachusetts": 16167,
+ "pio": 16168,
+ "▁ports": 16169,
+ "agg": 16170,
+ "▁Debug": 16171,
+ "▁breath": 16172,
+ "MIN": 16173,
+ "Variable": 16174,
+ "batch": 16175,
+ "ссе": 16176,
+ "▁preg": 16177,
+ "▁roles": 16178,
+ "paste": 16179,
+ "▁referenced": 16180,
+ "adrat": 16181,
+ "чё": 16182,
+ "binom": 16183,
+ "▁defining": 16184,
+ "▁Budapest": 16185,
+ "▁дви": 16186,
+ "▁taught": 16187,
+ "▁hole": 16188,
+ "▁quella": 16189,
+ "Msg": 16190,
+ "aska": 16191,
+ "scan": 16192,
+ "▁propose": 16193,
+ "▁Биография": 16194,
+ "{{\\": 16195,
+ "textt": 16196,
+ "▁Alb": 16197,
+ "▁Sydney": 16198,
+ "▁backup": 16199,
+ "▁credit": 16200,
+ "▁францу": 16201,
+ "stats": 16202,
+ "\\\":": 16203,
+ "▁Пере": 16204,
+ "▁accordingly": 16205,
+ "▁Len": 16206,
+ "zna": 16207,
+ "▁Regional": 16208,
+ "▁изда": 16209,
+ "▁jú": 16210,
+ "histor": 16211,
+ "▁entities": 16212,
+ "Star": 16213,
+ "оне": 16214,
+ "']['": 16215,
+ "▁Nova": 16216,
+ "die": 16217,
+ "▁`'": 16218,
+ "▁obten": 16219,
+ "anst": 16220,
+ "▁Relig": 16221,
+ "▁trig": 16222,
+ "▁режи": 16223,
+ "▁Personal": 16224,
+ "▁tone": 16225,
+ "▁aid": 16226,
+ "Visual": 16227,
+ "Submit": 16228,
+ "▁moves": 16229,
+ "▁Bridge": 16230,
+ "▁Boy": 16231,
+ "▁accurate": 16232,
+ "osta": 16233,
+ "atto": 16234,
+ "▁defeated": 16235,
+ "▁datab": 16236,
+ "ginx": 16237,
+ "▁Liv": 16238,
+ "lywood": 16239,
+ "TW": 16240,
+ "rium": 16241,
+ "ipped": 16242,
+ "Fail": 16243,
+ "REQUEST": 16244,
+ "▁ignor": 16245,
+ "▁sitting": 16246,
+ "▁molto": 16247,
+ "▁endpoint": 16248,
+ "ución": 16249,
+ "▁collections": 16250,
+ "▁Ту": 16251,
+ "tembre": 16252,
+ "▁nécess": 16253,
+ "▁interact": 16254,
+ "▁otras": 16255,
+ "▁curr": 16256,
+ "▁tracks": 16257,
+ "▁família": 16258,
+ "▁numerical": 16259,
+ "legt": 16260,
+ "]/": 16261,
+ "▁Mario": 16262,
+ "▁tort": 16263,
+ "bg": 16264,
+ "ssl": 16265,
+ "texttt": 16266,
+ "▁spark": 16267,
+ "дии": 16268,
+ "▁probable": 16269,
+ "%%%%": 16270,
+ "phia": 16271,
+ "],[": 16272,
+ "▁boxes": 16273,
+ "▁academ": 16274,
+ "▁Slo": 16275,
+ "äude": 16276,
+ "▁witness": 16277,
+ "▁editing": 16278,
+ "лина": 16279,
+ "▁lookup": 16280,
+ "▁Buck": 16281,
+ "дня": 16282,
+ "▁jours": 16283,
+ "++){": 16284,
+ "▁indices": 16285,
+ "▁flight": 16286,
+ "▁computation": 16287,
+ "Plugin": 16288,
+ "▁realize": 16289,
+ "isset": 16290,
+ "▁derivative": 16291,
+ "linewidth": 16292,
+ "bund": 16293,
+ "▁thor": 16294,
+ "▁.=": 16295,
+ "▁sí": 16296,
+ "▁Click": 16297,
+ "▁Sebast": 16298,
+ ">'": 16299,
+ "havior": 16300,
+ "lei": 16301,
+ "ulf": 16302,
+ "▁geometry": 16303,
+ "prev": 16304,
+ "empl": 16305,
+ "▁Lé": 16306,
+ "anson": 16307,
+ "▁Alice": 16308,
+ "prototype": 16309,
+ "READ": 16310,
+ "icular": 16311,
+ "▁бі": 16312,
+ "▁deutsche": 16313,
+ "▁Represent": 16314,
+ "sites": 16315,
+ "▁Mean": 16316,
+ "▁diss": 16317,
+ "▁Zur": 16318,
+ "▁през": 16319,
+ "PAR": 16320,
+ "▁'#": 16321,
+ "▁Dra": 16322,
+ "сон": 16323,
+ "▁steht": 16324,
+ "markt": 16325,
+ "▁ease": 16326,
+ "Drawing": 16327,
+ "=%": 16328,
+ "Stop": 16329,
+ "▁serving": 16330,
+ "▁także": 16331,
+ "▁DNS": 16332,
+ "▁literal": 16333,
+ "Die": 16334,
+ "▁вос": 16335,
+ "▁senior": 16336,
+ "acion": 16337,
+ "▁ubuntu": 16338,
+ "▁Frankfurt": 16339,
+ "▁Sunday": 16340,
+ "áb": 16341,
+ "▁journey": 16342,
+ "issa": 16343,
+ "berry": 16344,
+ "▁sep": 16345,
+ "▁ion": 16346,
+ "wert": 16347,
+ "ország": 16348,
+ "serve": 16349,
+ "▁Milano": 16350,
+ "▁века": 16351,
+ "рах": 16352,
+ "▁июля": 16353,
+ "▁manera": 16354,
+ "▁stations": 16355,
+ "▁adopted": 16356,
+ "▁anybody": 16357,
+ "VERSION": 16358,
+ "FE": 16359,
+ "dorf": 16360,
+ "...,": 16361,
+ "▁образова": 16362,
+ "Logger": 16363,
+ "фициаль": 16364,
+ "WRITE": 16365,
+ "▁ham": 16366,
+ "▁Future": 16367,
+ "oten": 16368,
+ "▁AG": 16369,
+ "▁trained": 16370,
+ "▁Nich": 16371,
+ "▁university": 16372,
+ "▁Olympics": 16373,
+ "▁doit": 16374,
+ "▁cultural": 16375,
+ "Conf": 16376,
+ "▁Conference": 16377,
+ "orno": 16378,
+ "▁MP": 16379,
+ "▁bou": 16380,
+ "cin": 16381,
+ "High": 16382,
+ "annte": 16383,
+ "▁displaying": 16384,
+ "▁chapter": 16385,
+ "▁Frauen": 16386,
+ "▁realized": 16387,
+ "▁attempted": 16388,
+ "▁preferred": 16389,
+ "Dat": 16390,
+ "▁trouve": 16391,
+ "▁intention": 16392,
+ "▁Notice": 16393,
+ "timestamp": 16394,
+ "*(": 16395,
+ "▁Ша": 16396,
+ "anas": 16397,
+ "cla": 16398,
+ "isz": 16399,
+ "tbl": 16400,
+ "Arr": 16401,
+ "▁inverse": 16402,
+ "▁terrible": 16403,
+ "▁occupied": 16404,
+ "JAX": 16405,
+ "<-": 16406,
+ "▁Philosoph": 16407,
+ "▁Corps": 16408,
+ "builder": 16409,
+ "▁begins": 16410,
+ "▁census": 16411,
+ ".’": 16412,
+ "▁proven": 16413,
+ "metric": 16414,
+ "▁increases": 16415,
+ "wich": 16416,
+ "▁ABC": 16417,
+ "projects": 16418,
+ "▁Thor": 16419,
+ "▁confidence": 16420,
+ "▁ufficiale": 16421,
+ "elm": 16422,
+ "▁garden": 16423,
+ "▁robust": 16424,
+ "▁così": 16425,
+ "iedz": 16426,
+ "▁Islam": 16427,
+ "▁Address": 16428,
+ "▁divide": 16429,
+ "▁Eu": 16430,
+ "catal": 16431,
+ "detail": 16432,
+ "ependant": 16433,
+ "fg": 16434,
+ "▁bew": 16435,
+ "▁fis": 16436,
+ "▁BO": 16437,
+ "▁wsp": 16438,
+ "▁pipeline": 16439,
+ "hd": 16440,
+ "▁Session": 16441,
+ "länd": 16442,
+ "iveau": 16443,
+ "estr": 16444,
+ "▁particle": 16445,
+ "▁laravel": 16446,
+ "pic": 16447,
+ "▁nau": 16448,
+ "▁fins": 16449,
+ "▁Vil": 16450,
+ "▁fus": 16451,
+ "▁quasi": 16452,
+ "operation": 16453,
+ "▁aller": 16454,
+ "▁analy": 16455,
+ "▁Он": 16456,
+ "▁Mes": 16457,
+ "▁опера": 16458,
+ "▁handled": 16459,
+ "▁deprec": 16460,
+ "tto": 16461,
+ "▁Ek": 16462,
+ "▁stran": 16463,
+ "▁anglais": 16464,
+ "jure": 16465,
+ "▁Silver": 16466,
+ "▁closely": 16467,
+ "enkins": 16468,
+ "anos": 16469,
+ "sted": 16470,
+ "▁сентября": 16471,
+ "brand": 16472,
+ "ньо": 16473,
+ "▁présent": 16474,
+ "rok": 16475,
+ "mount": 16476,
+ "▁Anthony": 16477,
+ "▁Furthermore": 16478,
+ "inha": 16479,
+ "▁архи": 16480,
+ "▁разли": 16481,
+ "▁октября": 16482,
+ "▁pint": 16483,
+ "ný": 16484,
+ "pts": 16485,
+ "▁italien": 16486,
+ "▁реги": 16487,
+ "лез": 16488,
+ "дина": 16489,
+ "atherine": 16490,
+ "Internal": 16491,
+ "Question": 16492,
+ "▁settlement": 16493,
+ "▁Все": 16494,
+ "▁folders": 16495,
+ "дри": 16496,
+ "▁valor": 16497,
+ "▁Miller": 16498,
+ "▁Assert": 16499,
+ "▁patient": 16500,
+ "▁Nieder": 16501,
+ "▁EP": 16502,
+ "▁Agr": 16503,
+ "▁onde": 16504,
+ "▁scop": 16505,
+ "sequence": 16506,
+ "▁PL": 16507,
+ "▁seek": 16508,
+ "javase": 16509,
+ "▁Vector": 16510,
+ "▁ná": 16511,
+ "▁categoría": 16512,
+ "clone": 16513,
+ "NR": 16514,
+ "available": 16515,
+ "▁Besch": 16516,
+ "▁eclipse": 16517,
+ "wicklung": 16518,
+ "deploy": 16519,
+ "enie": 16520,
+ "▁\")": 16521,
+ "äst": 16522,
+ "▁sync": 16523,
+ "CODE": 16524,
+ "▁Че": 16525,
+ "▁floating": 16526,
+ "/`": 16527,
+ "▁retired": 16528,
+ "deb": 16529,
+ "▁particul": 16530,
+ "▁collected": 16531,
+ "▁downloaded": 16532,
+ "nice": 16533,
+ "▁Buffer": 16534,
+ "▁Account": 16535,
+ "▁maggio": 16536,
+ "▁реда": 16537,
+ "▁sales": 16538,
+ "▁statunitense": 16539,
+ "▁Ki": 16540,
+ "▁Ferr": 16541,
+ "Lock": 16542,
+ "▁Isabel": 16543,
+ "clar": 16544,
+ "▁pov": 16545,
+ "atra": 16546,
+ "▁Frau": 16547,
+ "▁sorting": 16548,
+ "▁phrase": 16549,
+ "▁апреля": 16550,
+ "▁деятель": 16551,
+ "▁André": 16552,
+ "definition": 16553,
+ "writing": 16554,
+ "éré": 16555,
+ "щу": 16556,
+ "▁Ord": 16557,
+ "▁rum": 16558,
+ "▁Turk": 16559,
+ "▁Ivan": 16560,
+ "theless": 16561,
+ "▁ги": 16562,
+ "▁sake": 16563,
+ "▁Based": 16564,
+ "deck": 16565,
+ "orus": 16566,
+ "▁tutti": 16567,
+ "▁blan": 16568,
+ "▁Пу": 16569,
+ "Detail": 16570,
+ "▁Но": 16571,
+ "▁Sky": 16572,
+ "▁près": 16573,
+ "мой": 16574,
+ "coln": 16575,
+ "ческой": 16576,
+ "eti": 16577,
+ "▁arrow": 16578,
+ "▁Cha": 16579,
+ "chmark": 16580,
+ "œur": 16581,
+ "fab": 16582,
+ "куль": 16583,
+ "GridView": 16584,
+ "▁Background": 16585,
+ "sn": 16586,
+ "▁seguito": 16587,
+ "▁nic": 16588,
+ "cou": 16589,
+ "тів": 16590,
+ "▁bzw": 16591,
+ "addEventListener": 16592,
+ "sync": 16593,
+ "azzo": 16594,
+ "abstract": 16595,
+ "assets": 16596,
+ "▁Dru": 16597,
+ "зд": 16598,
+ "ordnet": 16599,
+ "▁bigger": 16600,
+ "▁initialized": 16601,
+ "каз": 16602,
+ "ogene": 16603,
+ "viously": 16604,
+ "▁guid": 16605,
+ "scheidung": 16606,
+ "▁Zent": 16607,
+ "▁frames": 16608,
+ "rieben": 16609,
+ "▁issued": 16610,
+ "▁dow": 16611,
+ "▁describes": 16612,
+ "ilst": 16613,
+ "▁criteria": 16614,
+ "▁gentleman": 16615,
+ "Basic": 16616,
+ "nez": 16617,
+ "Dev": 16618,
+ "Move": 16619,
+ "▁estaba": 16620,
+ "▁settembre": 16621,
+ "circle": 16622,
+ "▁fais": 16623,
+ "▁myst": 16624,
+ "▁archiv": 16625,
+ "dynamic": 16626,
+ "jà": 16627,
+ "itas": 16628,
+ "▁який": 16629,
+ "▁dor": 16630,
+ "▁Amazon": 16631,
+ "▁neces": 16632,
+ "▁Marcel": 16633,
+ "▁ella": 16634,
+ "рок": 16635,
+ "▁Pennsylvania": 16636,
+ "cular": 16637,
+ "Pack": 16638,
+ "itage": 16639,
+ "▁Burn": 16640,
+ "▁RO": 16641,
+ "▁они": 16642,
+ "~$": 16643,
+ "TeX": 16644,
+ "assign": 16645,
+ "▁beat": 16646,
+ "idense": 16647,
+ "acent": 16648,
+ "Alert": 16649,
+ "▁strateg": 16650,
+ "▁månaden": 16651,
+ "LOC": 16652,
+ "▁catalog": 16653,
+ "printStackTrace": 16654,
+ "()).": 16655,
+ "usted": 16656,
+ "▁Framework": 16657,
+ "ECK": 16658,
+ "▁até": 16659,
+ "Framework": 16660,
+ "▁attacks": 16661,
+ "▁Bert": 16662,
+ "▁тран": 16663,
+ ":%": 16664,
+ "arsi": 16665,
+ "notation": 16666,
+ "▁logical": 16667,
+ "weet": 16668,
+ "▁visited": 16669,
+ "bru": 16670,
+ "▁surprise": 16671,
+ "^^": 16672,
+ "inale": 16673,
+ "remote": 16674,
+ "'},": 16675,
+ "Syntax": 16676,
+ "iane": 16677,
+ "onnen": 16678,
+ "▁breaking": 16679,
+ "parser": 16680,
+ "apk": 16681,
+ "▁Miguel": 16682,
+ "▁§": 16683,
+ "▁acting": 16684,
+ "▁gebru": 16685,
+ "AtIndex": 16686,
+ "ються": 16687,
+ "▁offers": 16688,
+ "▁prac": 16689,
+ "▁grant": 16690,
+ "ternoon": 16691,
+ "▁acquired": 16692,
+ "▁Ny": 16693,
+ "▁comma": 16694,
+ "ník": 16695,
+ "▁Step": 16696,
+ "inners": 16697,
+ "▁SA": 16698,
+ "▁wat": 16699,
+ "days": 16700,
+ "▁rectangle": 16701,
+ "dar": 16702,
+ "▁trac": 16703,
+ "▁Indones": 16704,
+ "▁feedback": 16705,
+ "▁breaks": 16706,
+ "partition": 16707,
+ "icans": 16708,
+ "▁Notices": 16709,
+ "▁improved": 16710,
+ "phan": 16711,
+ "▁differential": 16712,
+ "scripts": 16713,
+ "▁XIII": 16714,
+ "▁Labor": 16715,
+ "▁precision": 16716,
+ "▁seed": 16717,
+ "bundle": 16718,
+ "idents": 16719,
+ "hre": 16720,
+ "▁Douglas": 16721,
+ "uld": 16722,
+ "▁secondary": 16723,
+ "▁brig": 16724,
+ "▁confirmed": 16725,
+ "▁claims": 16726,
+ "Role": 16727,
+ "▁Jewish": 16728,
+ "▁před": 16729,
+ "▁hotel": 16730,
+ "▁compte": 16731,
+ "▁recursive": 16732,
+ "](#)": 16733,
+ "▁rotate": 16734,
+ "▁chrome": 16735,
+ "inea": 16736,
+ "%;\r": 16737,
+ "▁Environment": 16738,
+ "platz": 16739,
+ "▁Single": 16740,
+ "▁sevent": 16741,
+ "▁posting": 16742,
+ "▁dealing": 16743,
+ "parameters": 16744,
+ "граф": 16745,
+ "Authentication": 16746,
+ "touch": 16747,
+ "Az": 16748,
+ "▁gray": 16749,
+ "encing": 16750,
+ "boldmath": 16751,
+ "▁сайте": 16752,
+ "▁Za": 16753,
+ "anje": 16754,
+ "▁polar": 16755,
+ "▁ули": 16756,
+ "kil": 16757,
+ "▁hover": 16758,
+ "▁REST": 16759,
+ "▁Come": 16760,
+ "jb": 16761,
+ "▁Georgia": 16762,
+ "▁Estado": 16763,
+ "OutputStream": 16764,
+ "ћи": 16765,
+ "▁dump": 16766,
+ "▁Age": 16767,
+ "▁swo": 16768,
+ "mobile": 16769,
+ "occup": 16770,
+ "шего": 16771,
+ "▁constitution": 16772,
+ "good": 16773,
+ "aku": 16774,
+ "▁анг": 16775,
+ "ieck": 16776,
+ "▁Psych": 16777,
+ "▁roots": 16778,
+ "▁vest": 16779,
+ "▁годах": 16780,
+ "▁República": 16781,
+ "▁pian": 16782,
+ "igration": 16783,
+ "▁préc": 16784,
+ "▁generates": 16785,
+ "LY": 16786,
+ "(`": 16787,
+ "▁=~": 16788,
+ "шения": 16789,
+ "▁Rah": 16790,
+ "▁connecting": 16791,
+ "ží": 16792,
+ "▁fő": 16793,
+ "▁appel": 16794,
+ "▁Railway": 16795,
+ "гли": 16796,
+ "▁développ": 16797,
+ "▁apo": 16798,
+ "fran": 16799,
+ "▁immediate": 16800,
+ "вого": 16801,
+ "Runner": 16802,
+ "äg": 16803,
+ "Something": 16804,
+ "▁généra": 16805,
+ "EventArgs": 16806,
+ "inction": 16807,
+ "gly": 16808,
+ "▁Due": 16809,
+ "▁prost": 16810,
+ "▁referring": 16811,
+ "▁jog": 16812,
+ "▁executable": 16813,
+ "▁Dream": 16814,
+ "acs": 16815,
+ "▁Cole": 16816,
+ "ampf": 16817,
+ "▁Bis": 16818,
+ "▁июня": 16819,
+ "lieder": 16820,
+ "тек": 16821,
+ "▁vb": 16822,
+ "▁mom": 16823,
+ "▁:(": 16824,
+ "▁dernier": 16825,
+ "'=>": 16826,
+ "▁этого": 16827,
+ "▁neue": 16828,
+ "▁Ча": 16829,
+ "▁weitere": 16830,
+ "▁alleg": 16831,
+ "▁reality": 16832,
+ "▁judge": 16833,
+ "▁Balt": 16834,
+ "▁thin": 16835,
+ "▁Ged": 16836,
+ "ieval": 16837,
+ "mx": 16838,
+ "ціональ": 16839,
+ "▁выпу": 16840,
+ "▁IX": 16841,
+ "▁blind": 16842,
+ "▁Motor": 16843,
+ "▁ша": 16844,
+ "▁approximation": 16845,
+ "dam": 16846,
+ "▁fog": 16847,
+ "кор": 16848,
+ "▁Writ": 16849,
+ "▁ling": 16850,
+ "▁писа": 16851,
+ "▁Mars": 16852,
+ "otti": 16853,
+ "Enum": 16854,
+ "▁Trib": 16855,
+ "▁merc": 16856,
+ "zung": 16857,
+ "vanced": 16858,
+ "cfg": 16859,
+ "нах": 16860,
+ "schen": 16861,
+ "\"].": 16862,
+ "bek": 16863,
+ "▁ster": 16864,
+ "jp": 16865,
+ "▁Rap": 16866,
+ "▁recording": 16867,
+ "▁peint": 16868,
+ "▁lets": 16869,
+ "änge": 16870,
+ ">\";": 16871,
+ "▁місце": 16872,
+ "▁caval": 16873,
+ "▁CSV": 16874,
+ "▁entstand": 16875,
+ "▁helper": 16876,
+ "endet": 16877,
+ "▁Gram": 16878,
+ "▁Diego": 16879,
+ "▁Bishop": 16880,
+ "TAG": 16881,
+ "▁ecc": 16882,
+ "▁Een": 16883,
+ "▁AV": 16884,
+ "City": 16885,
+ "▁Guide": 16886,
+ "hind": 16887,
+ "rical": 16888,
+ "▁Основ": 16889,
+ "Bus": 16890,
+ "▁zunächst": 16891,
+ "▁tick": 16892,
+ "▁Colonel": 16893,
+ "Thanks": 16894,
+ "▁ferm": 16895,
+ "▁granted": 16896,
+ "▁threshold": 16897,
+ "omorphic": 16898,
+ "▁Hun": 16899,
+ "enis": 16900,
+ "▁прав": 16901,
+ "▁які": 16902,
+ "PG": 16903,
+ "▁ws": 16904,
+ "▁technical": 16905,
+ "estro": 16906,
+ "klär": 16907,
+ "vars": 16908,
+ "ocrat": 16909,
+ "▁општи": 16910,
+ "onso": 16911,
+ "iba": 16912,
+ "▁Save": 16913,
+ "▁programa": 16914,
+ "▁въ": 16915,
+ "▁invån": 16916,
+ ">()": 16917,
+ "▁mejor": 16918,
+ "▁слова": 16919,
+ "▁replacement": 16920,
+ "▁impr": 16921,
+ "▁Francesco": 16922,
+ "▁Hotel": 16923,
+ "▁UPDATE": 16924,
+ "▁музы": 16925,
+ "ugs": 16926,
+ "vard": 16927,
+ "▁faz": 16928,
+ "inton": 16929,
+ "▁arts": 16930,
+ "▁Ky": 16931,
+ "▁Ils": 16932,
+ "▁sera": 16933,
+ "▁Volume": 16934,
+ "▁giugno": 16935,
+ "▁asym": 16936,
+ "▁Pir": 16937,
+ "▁NAS": 16938,
+ "▁Tam": 16939,
+ "ěl": 16940,
+ "Sequ": 16941,
+ "kmal": 16942,
+ "▁Eins": 16943,
+ "▁компа": 16944,
+ "obe": 16945,
+ "oor": 16946,
+ "▁heap": 16947,
+ "ctl": 16948,
+ "▁separately": 16949,
+ "reader": 16950,
+ "▁significantly": 16951,
+ "▁Lag": 16952,
+ "notes": 16953,
+ "▁sele": 16954,
+ "▁dedicated": 16955,
+ "▁Host": 16956,
+ "choice": 16957,
+ "wing": 16958,
+ "▁Titel": 16959,
+ "▁befindet": 16960,
+ "large": 16961,
+ "▁conten": 16962,
+ "JavaScript": 16963,
+ "▁deser": 16964,
+ "▁Gordon": 16965,
+ "спе": 16966,
+ "▁patri": 16967,
+ "▁Random": 16968,
+ "▁Returns": 16969,
+ "ым": 16970,
+ "рома": 16971,
+ "▁Studies": 16972,
+ "Sl": 16973,
+ "▁frü": 16974,
+ "TEXT": 16975,
+ "inate": 16976,
+ "▁Tol": 16977,
+ "▁everywhere": 16978,
+ "arta": 16979,
+ "▁orbit": 16980,
+ "▁Aires": 16981,
+ "▁Iss": 16982,
+ "▁też": 16983,
+ "▁diverse": 16984,
+ "▁numeric": 16985,
+ "maz": 16986,
+ "▁mise": 16987,
+ "▁battery": 16988,
+ "▁Akadem": 16989,
+ "нение": 16990,
+ "▁simultane": 16991,
+ "▁Dead": 16992,
+ "▁clust": 16993,
+ "▁otro": 16994,
+ "▁cerca": 16995,
+ "()`,": 16996,
+ "roz": 16997,
+ "ăt": 16998,
+ "▁MO": 16999,
+ "riften": 17000,
+ "important": 17001,
+ "▁jeho": 17002,
+ "▁findViewById": 17003,
+ "▁consequence": 17004,
+ "▁measured": 17005,
+ "ishes": 17006,
+ "▁sze": 17007,
+ "iendo": 17008,
+ "▁Wahl": 17009,
+ "strip": 17010,
+ "ARD": 17011,
+ "▁opacity": 17012,
+ "WORD": 17013,
+ "▁Ві": 17014,
+ "▁Location": 17015,
+ "rai": 17016,
+ "пен": 17017,
+ "▁rif": 17018,
+ "aussian": 17019,
+ "FileName": 17020,
+ "▁disco": 17021,
+ "ilen": 17022,
+ "▁vagy": 17023,
+ "licity": 17024,
+ "Border": 17025,
+ "▁Track": 17026,
+ "бом": 17027,
+ "fact": 17028,
+ "oka": 17029,
+ "▁gior": 17030,
+ "▁XVII": 17031,
+ "▁där": 17032,
+ "Site": 17033,
+ "ało": 17034,
+ "ská": 17035,
+ "▁pixels": 17036,
+ "vity": 17037,
+ "jQuery": 17038,
+ "▁sculpt": 17039,
+ "▁cargo": 17040,
+ "▁directive": 17041,
+ "▁wal": 17042,
+ "▁conna": 17043,
+ "▁Through": 17044,
+ "▁этом": 17045,
+ "Static": 17046,
+ "omsnitt": 17047,
+ "▁rund": 17048,
+ "▁claimed": 17049,
+ "зня": 17050,
+ "sha": 17051,
+ "▁rag": 17052,
+ "crement": 17053,
+ "▁fünf": 17054,
+ "▁rival": 17055,
+ "rin": 17056,
+ "slash": 17057,
+ "▁thirty": 17058,
+ "sleep": 17059,
+ "ологи": 17060,
+ "SM": 17061,
+ "gate": 17062,
+ "izations": 17063,
+ "vik": 17064,
+ "▁bless": 17065,
+ "▁Illinois": 17066,
+ "▁TE": 17067,
+ "uting": 17068,
+ "▁solving": 17069,
+ "GER": 17070,
+ "▁XIV": 17071,
+ "▁Indians": 17072,
+ "express": 17073,
+ "▁Heil": 17074,
+ "▁mujer": 17075,
+ "▁invånare": 17076,
+ "']);": 17077,
+ "▁aur": 17078,
+ "boost": 17079,
+ "GO": 17080,
+ "▁nin": 17081,
+ "tok": 17082,
+ "god": 17083,
+ "oter": 17084,
+ ")$$": 17085,
+ "▁descend": 17086,
+ "рю": 17087,
+ "▁Language": 17088,
+ "▁diver": 17089,
+ "▁Assuming": 17090,
+ "▁frequent": 17091,
+ "чні": 17092,
+ "▁Biography": 17093,
+ ",[": 17094,
+ "urm": 17095,
+ "▁walked": 17096,
+ "▁federal": 17097,
+ "▁Michigan": 17098,
+ "▁facts": 17099,
+ "▁Integr": 17100,
+ "LES": 17101,
+ "▁Alan": 17102,
+ "▁coup": 17103,
+ "Ber": 17104,
+ "▁particles": 17105,
+ "ће": 17106,
+ "Inflater": 17107,
+ "+(": 17108,
+ "Bound": 17109,
+ "▁Sü": 17110,
+ "Audio": 17111,
+ "citet": 17112,
+ "yect": 17113,
+ "▁nr": 17114,
+ "xe": 17115,
+ "▁Brun": 17116,
+ "▁_,": 17117,
+ "avor": 17118,
+ "▁discipl": 17119,
+ "alm": 17120,
+ "▁ноября": 17121,
+ "▁SSL": 17122,
+ "▁Kaiser": 17123,
+ "▁recher": 17124,
+ "ygon": 17125,
+ "▁regardless": 17126,
+ "▁configur": 17127,
+ "▁unnecess": 17128,
+ "▁Clark": 17129,
+ "PHP": 17130,
+ "▁FALSE": 17131,
+ "▁pad": 17132,
+ "$}": 17133,
+ "▁valu": 17134,
+ "▁disease": 17135,
+ "▁maior": 17136,
+ "▁hommes": 17137,
+ "▁Edition": 17138,
+ "slant": 17139,
+ "▁ending": 17140,
+ "▁settled": 17141,
+ "urus": 17142,
+ "hed": 17143,
+ "Pattern": 17144,
+ "▁година": 17145,
+ "▁Philadel": 17146,
+ "tikzpicture": 17147,
+ "▁coal": 17148,
+ "▁sede": 17149,
+ "▁satisfies": 17150,
+ "▁trim": 17151,
+ "▁bat": 17152,
+ "▁américain": 17153,
+ "▁luglio": 17154,
+ "▁поча": 17155,
+ "ffff": 17156,
+ "▁Target": 17157,
+ "generate": 17158,
+ "▁Zie": 17159,
+ "ția": 17160,
+ "▁gard": 17161,
+ "▁workers": 17162,
+ "▁Job": 17163,
+ "▁urban": 17164,
+ "ahlen": 17165,
+ "▁Building": 17166,
+ "▁neu": 17167,
+ "▁chron": 17168,
+ "▁Earl": 17169,
+ "gro": 17170,
+ "USE": 17171,
+ "▁XII": 17172,
+ "▁wealth": 17173,
+ "inae": 17174,
+ "▁Бра": 17175,
+ "▁libert": 17176,
+ "iros": 17177,
+ ":$": 17178,
+ "lee": 17179,
+ "ieves": 17180,
+ "▁Justice": 17181,
+ "▁oil": 17182,
+ "▁Athlet": 17183,
+ "▁clo": 17184,
+ "Scale": 17185,
+ "▁lips": 17186,
+ "▁april": 17187,
+ "▁impression": 17188,
+ "▁perce": 17189,
+ "▁участи": 17190,
+ "vil": 17191,
+ "éch": 17192,
+ "▁equality": 17193,
+ "▁мет": 17194,
+ "▁annotation": 17195,
+ "ernal": 17196,
+ "▁Mach": 17197,
+ "▁intitul": 17198,
+ "problem": 17199,
+ "ющих": 17200,
+ "oplus": 17201,
+ "▁thousands": 17202,
+ "▁calculations": 17203,
+ "umps": 17204,
+ "▁triangle": 17205,
+ "phal": 17206,
+ "▁Dorf": 17207,
+ "▁dollars": 17208,
+ "▁denen": 17209,
+ "lès": 17210,
+ "olid": 17211,
+ "▁Results": 17212,
+ "▁Stadium": 17213,
+ "▁Desp": 17214,
+ "▁Eisen": 17215,
+ "imir": 17216,
+ "▁sotto": 17217,
+ "▁či": 17218,
+ "atable": 17219,
+ "orum": 17220,
+ "▁convergence": 17221,
+ "▁jeune": 17222,
+ "oking": 17223,
+ "▁живо": 17224,
+ "aining": 17225,
+ "pointer": 17226,
+ "culo": 17227,
+ "▁jsou": 17228,
+ "▁grab": 17229,
+ "akte": 17230,
+ "▁hoping": 17231,
+ "▁Mak": 17232,
+ "▁sag": 17233,
+ "origine": 17234,
+ "▁послед": 17235,
+ "▁Veg": 17236,
+ "▁theoret": 17237,
+ "▁Tru": 17238,
+ "nement": 17239,
+ "▁faces": 17240,
+ "Hor": 17241,
+ "Join": 17242,
+ "arel": 17243,
+ "▁около": 17244,
+ "However": 17245,
+ "▁catal": 17246,
+ "bourg": 17247,
+ "▁mysqli": 17248,
+ "acions": 17249,
+ "▁Initial": 17250,
+ "▁rain": 17251,
+ "iture": 17252,
+ "▁Sciences": 17253,
+ "▁Kreis": 17254,
+ ".__": 17255,
+ "▁cinq": 17256,
+ "▁Auß": 17257,
+ "ithmet": 17258,
+ "itors": 17259,
+ "amazon": 17260,
+ "▁gap": 17261,
+ "▁ignored": 17262,
+ "adv": 17263,
+ "кої": 17264,
+ "▁часть": 17265,
+ "▁corpor": 17266,
+ "цер": 17267,
+ "▁crime": 17268,
+ "uous": 17269,
+ "▁налази": 17270,
+ "DataFrame": 17271,
+ "води": 17272,
+ "Ign": 17273,
+ "▁Lincoln": 17274,
+ "▁menos": 17275,
+ "▁Luft": 17276,
+ "▁Lind": 17277,
+ "▁Cook": 17278,
+ "▁materials": 17279,
+ "apped": 17280,
+ "ignore": 17281,
+ "▁откры": 17282,
+ "fried": 17283,
+ "▁gouvernement": 17284,
+ "▁fired": 17285,
+ "▁screenshot": 17286,
+ "сен": 17287,
+ "▁[(": 17288,
+ "▁организа": 17289,
+ "Graphics": 17290,
+ "▁проти": 17291,
+ "▁phen": 17292,
+ "craft": 17293,
+ "▁brain": 17294,
+ "▁Como": 17295,
+ "▁Everything": 17296,
+ "anes": 17297,
+ "IGN": 17298,
+ "▁nederbörd": 17299,
+ "▁Forest": 17300,
+ "zahl": 17301,
+ "▁Among": 17302,
+ "Qt": 17303,
+ "▁togg": 17304,
+ "▁variant": 17305,
+ "▁hill": 17306,
+ "писи": 17307,
+ "colon": 17308,
+ "▁dicembre": 17309,
+ "гор": 17310,
+ "▁Wind": 17311,
+ "ünstler": 17312,
+ "▁=\\": 17313,
+ "saved": 17314,
+ "▁nej": 17315,
+ "unte": 17316,
+ "utto": 17317,
+ "▁recens": 17318,
+ "▁sick": 17319,
+ "▁desen": 17320,
+ "UST": 17321,
+ "▁worst": 17322,
+ "▁Angel": 17323,
+ "odox": 17324,
+ "▁Province": 17325,
+ "▁Maz": 17326,
+ "▁agreement": 17327,
+ "▁Bass": 17328,
+ "▁segunda": 17329,
+ "onces": 17330,
+ "▁Linki": 17331,
+ "▁CL": 17332,
+ "▁já": 17333,
+ "itement": 17334,
+ "▁área": 17335,
+ "▁scalar": 17336,
+ "▁Рес": 17337,
+ "awt": 17338,
+ "sieme": 17339,
+ "▁juni": 17340,
+ "▁худож": 17341,
+ "ikus": 17342,
+ "▁lid": 17343,
+ "ppel": 17344,
+ "avi": 17345,
+ "▁balance": 17346,
+ "ipping": 17347,
+ "cussion": 17348,
+ "ческих": 17349,
+ "(\".": 17350,
+ "Also": 17351,
+ "▁whis": 17352,
+ "HOME": 17353,
+ "▁brown": 17354,
+ "▁día": 17355,
+ "▁può": 17356,
+ "plotlib": 17357,
+ "▁Jahrhunderts": 17358,
+ "DK": 17359,
+ "▁anchor": 17360,
+ "...]": 17361,
+ "▁Austria": 17362,
+ "▁marca": 17363,
+ "▁gez": 17364,
+ "iously": 17365,
+ "▁lazy": 17366,
+ "xa": 17367,
+ "▁Channel": 17368,
+ "▁neuen": 17369,
+ "das": 17370,
+ "▁searched": 17371,
+ "▁staat": 17372,
+ "▁Так": 17373,
+ "▁Josef": 17374,
+ "▁Sher": 17375,
+ "pois": 17376,
+ "▁enem": 17377,
+ "▁accessing": 17378,
+ "▁неко": 17379,
+ "▁furono": 17380,
+ "▁pseudo": 17381,
+ "?>": 17382,
+ "▁estadoun": 17383,
+ "▁Види": 17384,
+ "▁motiv": 17385,
+ "▁recall": 17386,
+ "isson": 17387,
+ "ób": 17388,
+ ")--": 17389,
+ "▁Erz": 17390,
+ "▁савез": 17391,
+ "Direct": 17392,
+ "соб": 17393,
+ "▁sho": 17394,
+ "völker": 17395,
+ "Ap": 17396,
+ "gens": 17397,
+ "ништво": 17398,
+ "▁Amsterdam": 17399,
+ "usk": 17400,
+ "пло": 17401,
+ "▁simulation": 17402,
+ "▁BC": 17403,
+ "▁Woj": 17404,
+ "autom": 17405,
+ "Alex": 17406,
+ "▁economic": 17407,
+ "гом": 17408,
+ "ikai": 17409,
+ "▁altre": 17410,
+ "▁'-": 17411,
+ "▁Weg": 17412,
+ "NotFound": 17413,
+ "йской": 17414,
+ "▁converting": 17415,
+ "phabet": 17416,
+ "atrice": 17417,
+ "bourne": 17418,
+ "alom": 17419,
+ "▁comparing": 17420,
+ "▁Zo": 17421,
+ "▁fla": 17422,
+ "вая": 17423,
+ "▁entra": 17424,
+ "▁charset": 17425,
+ "developers": 17426,
+ "ística": 17427,
+ "}>": 17428,
+ "▁Jazz": 17429,
+ "▁Howard": 17430,
+ "шта": 17431,
+ "▁clone": 17432,
+ "door": 17433,
+ "▁Pin": 17434,
+ "***": 17435,
+ "▁silent": 17436,
+ "ecycle": 17437,
+ "isce": 17438,
+ "▁mud": 17439,
+ "▁Display": 17440,
+ "▁lip": 17441,
+ "▁использова": 17442,
+ "▁characteristic": 17443,
+ "▁sb": 17444,
+ "firebase": 17445,
+ "▁Bew": 17446,
+ "Calendar": 17447,
+ "▁uso": 17448,
+ "èse": 17449,
+ "▁Rat": 17450,
+ "▁esper": 17451,
+ "▁throwing": 17452,
+ "▁rodz": 17453,
+ "▁yards": 17454,
+ "▁grass": 17455,
+ "▁marker": 17456,
+ "▁Kos": 17457,
+ "Theta": 17458,
+ "▁organis": 17459,
+ "kernel": 17460,
+ "▁personas": 17461,
+ "keep": 17462,
+ "▁exclaimed": 17463,
+ "oslav": 17464,
+ "▁Entertain": 17465,
+ "нер": 17466,
+ "▁inwon": 17467,
+ "▁Rand": 17468,
+ "reduce": 17469,
+ "fac": 17470,
+ "expression": 17471,
+ "yj": 17472,
+ "▁differenti": 17473,
+ "aglia": 17474,
+ "▁templates": 17475,
+ "▁mű": 17476,
+ "▁prv": 17477,
+ "▁mois": 17478,
+ "▁gewann": 17479,
+ "▁була": 17480,
+ "bibli": 17481,
+ "demo": 17482,
+ "▁Anderson": 17483,
+ "▁ред": 17484,
+ "▁porque": 17485,
+ "▁Pologne": 17486,
+ "▁trip": 17487,
+ "▁exemple": 17488,
+ "▁Internacional": 17489,
+ "▁као": 17490,
+ "Insert": 17491,
+ "general": 17492,
+ "SESSION": 17493,
+ "berga": 17494,
+ "hält": 17495,
+ "unas": 17496,
+ "мира": 17497,
+ "▁yields": 17498,
+ "mapsto": 17499,
+ "spot": 17500,
+ "▁+\\": 17501,
+ "лла": 17502,
+ "▁precisely": 17503,
+ "▁член": 17504,
+ "shadow": 17505,
+ "Are": 17506,
+ "unal": 17507,
+ "▁dispar": 17508,
+ "▁título": 17509,
+ "nest": 17510,
+ "▁Low": 17511,
+ "▁prot": 17512,
+ "▁Costa": 17513,
+ "named": 17514,
+ "▁gained": 17515,
+ "lesia": 17516,
+ "▁administration": 17517,
+ "Import": 17518,
+ "branch": 17519,
+ "▁sympath": 17520,
+ "voj": 17521,
+ "▁EC": 17522,
+ "▁municipio": 17523,
+ "▁animated": 17524,
+ "▁directories": 17525,
+ "▁roof": 17526,
+ "ząd": 17527,
+ "imet": 17528,
+ "proto": 17529,
+ "bla": 17530,
+ ":]": 17531,
+ "have": 17532,
+ "atem": 17533,
+ "▁ns": 17534,
+ "▁sector": 17535,
+ "three": 17536,
+ "owane": 17537,
+ "wers": 17538,
+ "ових": 17539,
+ "rence": 17540,
+ "▁extr": 17541,
+ "igten": 17542,
+ "▁occident": 17543,
+ "ță": 17544,
+ "▁eat": 17545,
+ "▁hydro": 17546,
+ "ubernetes": 17547,
+ "[@": 17548,
+ "▁Moon": 17549,
+ "▁Sho": 17550,
+ "▁elsewhere": 17551,
+ "üller": 17552,
+ "Upload": 17553,
+ "ланд": 17554,
+ "▁För": 17555,
+ "wissenschaft": 17556,
+ "KS": 17557,
+ "▁physics": 17558,
+ "tz": 17559,
+ "▁серед": 17560,
+ "▁Arbeit": 17561,
+ "▁мест": 17562,
+ "▁Gebiet": 17563,
+ "▁insect": 17564,
+ "Ah": 17565,
+ "izado": 17566,
+ "▁temple": 17567,
+ "▁annual": 17568,
+ "stad": 17569,
+ "▁habitat": 17570,
+ "▁AB": 17571,
+ "wort": 17572,
+ "▁repos": 17573,
+ "▁Neu": 17574,
+ "▁$(\".": 17575,
+ "Vorlage": 17576,
+ "▁reprezent": 17577,
+ "estanden": 17578,
+ "Intern": 17579,
+ ".`": 17580,
+ "▁failing": 17581,
+ "▁Material": 17582,
+ "▁effectively": 17583,
+ "телем": 17584,
+ "▁гла": 17585,
+ "▁nahm": 17586,
+ "▁differently": 17587,
+ "extension": 17588,
+ "▁Verm": 17589,
+ "enabled": 17590,
+ "configure": 17591,
+ "nio": 17592,
+ "ciones": 17593,
+ "▁Beach": 17594,
+ "сона": 17595,
+ "▁copying": 17596,
+ "▁україн": 17597,
+ "▁призна": 17598,
+ "zh": 17599,
+ "Desktop": 17600,
+ "▁sost": 17601,
+ "▁subsequently": 17602,
+ "▁Lehr": 17603,
+ "▁ó": 17604,
+ "lär": 17605,
+ "odor": 17606,
+ "phon": 17607,
+ "nc": 17608,
+ "iterator": 17609,
+ "▁эти": 17610,
+ "▁europé": 17611,
+ "▁Toronto": 17612,
+ "ódigo": 17613,
+ "▁posto": 17614,
+ "ffe": 17615,
+ "▁crew": 17616,
+ "▁Schwar": 17617,
+ "Sa": 17618,
+ "square": 17619,
+ "▁beside": 17620,
+ "▁Мі": 17621,
+ "▁ath": 17622,
+ "▁advent": 17623,
+ "cji": 17624,
+ "written": 17625,
+ "▁russ": 17626,
+ "rost": 17627,
+ "HI": 17628,
+ "▁dice": 17629,
+ "cca": 17630,
+ "▁dép": 17631,
+ "ply": 17632,
+ "bigg": 17633,
+ "ział": 17634,
+ "ütt": 17635,
+ "▁одно": 17636,
+ "JECT": 17637,
+ "ському": 17638,
+ "nos": 17639,
+ "mock": 17640,
+ "Launch": 17641,
+ "same": 17642,
+ "▁jobs": 17643,
+ "▁widely": 17644,
+ "▁defines": 17645,
+ "▁Pse": 17646,
+ "▁neighbour": 17647,
+ "ющие": 17648,
+ "▁closer": 17649,
+ "▁располо": 17650,
+ "▁clubs": 17651,
+ "fly": 17652,
+ "шим": 17653,
+ "▁suffered": 17654,
+ "▁nar": 17655,
+ "▁lavor": 17656,
+ "Extension": 17657,
+ "itionally": 17658,
+ "▁grace": 17659,
+ "▁Campeonato": 17660,
+ "▁Christmas": 17661,
+ "middle": 17662,
+ "othek": 17663,
+ "elements": 17664,
+ "▁sondern": 17665,
+ "▁tarde": 17666,
+ "▁permanent": 17667,
+ "▁conclude": 17668,
+ "Seg": 17669,
+ "▁акаде": 17670,
+ "}\",": 17671,
+ "▁февраля": 17672,
+ "řed": 17673,
+ "▁IL": 17674,
+ "jud": 17675,
+ "▁USS": 17676,
+ "▁Nature": 17677,
+ "ifference": 17678,
+ "Serializer": 17679,
+ "▁twelve": 17680,
+ "tid": 17681,
+ "мия": 17682,
+ "ческого": 17683,
+ "▁calendar": 17684,
+ "concat": 17685,
+ "▁intersection": 17686,
+ "▁PA": 17687,
+ "azure": 17688,
+ "▁située": 17689,
+ "▁kinds": 17690,
+ "▁ausge": 17691,
+ "▁rural": 17692,
+ "Theme": 17693,
+ "▁tale": 17694,
+ "noindent": 17695,
+ "going": 17696,
+ "rx": 17697,
+ "agi": 17698,
+ "wrapper": 17699,
+ "▁Coast": 17700,
+ "mbH": 17701,
+ "▁перед": 17702,
+ "spre": 17703,
+ "▁}\\": 17704,
+ "▁LI": 17705,
+ "znam": 17706,
+ "itled": 17707,
+ "Sample": 17708,
+ "uliar": 17709,
+ "*\\": 17710,
+ "▁resistance": 17711,
+ "stock": 17712,
+ "ked": 17713,
+ "▁HE": 17714,
+ "▁possession": 17715,
+ "▁Ring": 17716,
+ "▁magyar": 17717,
+ "outs": 17718,
+ "▁Secretary": 17719,
+ "nde": 17720,
+ "▁Wald": 17721,
+ "-(": 17722,
+ "▁ISO": 17723,
+ "▁afternoon": 17724,
+ "ionen": 17725,
+ "▁stops": 17726,
+ "▁constants": 17727,
+ "guard": 17728,
+ "bow": 17729,
+ "▁ers": 17730,
+ "▁Firebase": 17731,
+ "▁Clear": 17732,
+ "▁Holy": 17733,
+ "Win": 17734,
+ "▁titles": 17735,
+ "▁трав": 17736,
+ "▁contrib": 17737,
+ "häng": 17738,
+ "▁photograph": 17739,
+ "▁Distribution": 17740,
+ "ifts": 17741,
+ "▁aunque": 17742,
+ "comb": 17743,
+ "ADD": 17744,
+ "▁publication": 17745,
+ "▁служ": 17746,
+ "▁кня": 17747,
+ "▁ayant": 17748,
+ "▁restore": 17749,
+ "▁belief": 17750,
+ "▁vég": 17751,
+ "▁extensions": 17752,
+ "▁decom": 17753,
+ "вший": 17754,
+ "WT": 17755,
+ "▁parti": 17756,
+ "▁gioc": 17757,
+ "▁мира": 17758,
+ "▁issu": 17759,
+ "pipe": 17760,
+ "▁props": 17761,
+ "▁willing": 17762,
+ "▁nest": 17763,
+ "aso": 17764,
+ "pot": 17765,
+ "▁handles": 17766,
+ "▁фо": 17767,
+ "▁moder": 17768,
+ "▁ebenfalls": 17769,
+ "▁fighting": 17770,
+ "umbn": 17771,
+ "▁transparent": 17772,
+ "▁Krist": 17773,
+ "▁homes": 17774,
+ "▁voyage": 17775,
+ "Failed": 17776,
+ "▁Bird": 17777,
+ "▁Heart": 17778,
+ "Counter": 17779,
+ "▁Scottish": 17780,
+ "ática": 17781,
+ "▁arbeit": 17782,
+ "^{-\\": 17783,
+ "▁Sor": 17784,
+ "▁engaged": 17785,
+ "▁aside": 17786,
+ "▁Fou": 17787,
+ "▁wiel": 17788,
+ "▁reconst": 17789,
+ "ousin": 17790,
+ "▁hosted": 17791,
+ "▁classe": 17792,
+ "▁contest": 17793,
+ "...\"": 17794,
+ "мом": 17795,
+ "▁bean": 17796,
+ "gem": 17797,
+ "▁consultato": 17798,
+ "▁bio": 17799,
+ "▁subjects": 17800,
+ "boBox": 17801,
+ "▁Schrift": 17802,
+ "▁dinner": 17803,
+ "ăr": 17804,
+ "▁równ": 17805,
+ "▁%%": 17806,
+ "bage": 17807,
+ "▁veröff": 17808,
+ "▁detected": 17809,
+ "ienn": 17810,
+ "rose": 17811,
+ "▁Ton": 17812,
+ "Complete": 17813,
+ "▁proto": 17814,
+ "ichts": 17815,
+ "STAT": 17816,
+ "Checked": 17817,
+ "▁inten": 17818,
+ "▁smile": 17819,
+ "▁strip": 17820,
+ "neut": 17821,
+ "');\r": 17822,
+ "four": 17823,
+ "▁todas": 17824,
+ "Controls": 17825,
+ "▁thorough": 17826,
+ "rup": 17827,
+ "▁држави": 17828,
+ "ită": 17829,
+ "Protocol": 17830,
+ "Ка": 17831,
+ "▁expanded": 17832,
+ "extra": 17833,
+ "oport": 17834,
+ "▁Станов": 17835,
+ "leases": 17836,
+ "▁notion": 17837,
+ "▁guest": 17838,
+ "▁Islands": 17839,
+ "icked": 17840,
+ "▁Dave": 17841,
+ "▁reflection": 17842,
+ "liv": 17843,
+ "ální": 17844,
+ "▁revealed": 17845,
+ "▁sog": 17846,
+ "▁Tax": 17847,
+ "▁periodo": 17848,
+ "▁Weltkrie": 17849,
+ "catalina": 17850,
+ "qué": 17851,
+ "▁Father": 17852,
+ "▁Bir": 17853,
+ "expect": 17854,
+ "▁regression": 17855,
+ "iné": 17856,
+ "▁dabei": 17857,
+ "perm": 17858,
+ "мене": 17859,
+ "▁Abd": 17860,
+ "▁CF": 17861,
+ "arks": 17862,
+ "resolve": 17863,
+ "wedge": 17864,
+ "▁initialization": 17865,
+ "▁Véase": 17866,
+ "▁приня": 17867,
+ "stmt": 17868,
+ "▁income": 17869,
+ "MY": 17870,
+ "▁odkazy": 17871,
+ "▁Siehe": 17872,
+ "▁bodies": 17873,
+ "▁soc": 17874,
+ "Random": 17875,
+ "▁senza": 17876,
+ "ablo": 17877,
+ "▁regarded": 17878,
+ "onCreate": 17879,
+ "▁Magazine": 17880,
+ "▁Raf": 17881,
+ "▁Buenos": 17882,
+ "ил": 17883,
+ ")));": 17884,
+ "capt": 17885,
+ "redirect": 17886,
+ "▁petit": 17887,
+ "▁farm": 17888,
+ "▁rôle": 17889,
+ "▁статьи": 17890,
+ " ": 17891,
+ "subfigure": 17892,
+ "èces": 17893,
+ "ziel": 17894,
+ "▁окон": 17895,
+ "EE": 17896,
+ "mee": 17897,
+ "▁perten": 17898,
+ "▁représent": 17899,
+ "▁LA": 17900,
+ "?'": 17901,
+ "▁тру": 17902,
+ "▁rational": 17903,
+ "osof": 17904,
+ "▁kne": 17905,
+ "▁artists": 17906,
+ "Flow": 17907,
+ "▁Аль": 17908,
+ "izard": 17909,
+ "▁numero": 17910,
+ "actic": 17911,
+ "▁destruct": 17912,
+ "▁Пра": 17913,
+ "onsieur": 17914,
+ "qt": 17915,
+ "abestanden": 17916,
+ "ność": 17917,
+ "Connect": 17918,
+ "▁oracle": 17919,
+ "▁Stockholm": 17920,
+ "sizeof": 17921,
+ "▁gemäß": 17922,
+ "ACT": 17923,
+ "▁expert": 17924,
+ "utions": 17925,
+ "▁hacia": 17926,
+ "▁logger": 17927,
+ "▁fool": 17928,
+ "rypto": 17929,
+ "ær": 17930,
+ "▁cidade": 17931,
+ "▁составе": 17932,
+ "oker": 17933,
+ "▁Transfer": 17934,
+ "▁denied": 17935,
+ "Track": 17936,
+ "▁radi": 17937,
+ "zec": 17938,
+ "▁Historic": 17939,
+ "▁Einwohner": 17940,
+ "кою": 17941,
+ "▁хра": 17942,
+ "▁Category": 17943,
+ "▁Disney": 17944,
+ "▁swap": 17945,
+ "Begin": 17946,
+ "▁mientras": 17947,
+ "▁dance": 17948,
+ "▁tête": 17949,
+ "▁droit": 17950,
+ "erta": 17951,
+ "▁birds": 17952,
+ "▁convin": 17953,
+ "parator": 17954,
+ "дра": 17955,
+ "▁ES": 17956,
+ "▁Ressources": 17957,
+ "EGIN": 17958,
+ "ücke": 17959,
+ "▁Cruz": 17960,
+ "abling": 17961,
+ "▁\"@": 17962,
+ "▁metres": 17963,
+ "▁Beg": 17964,
+ "▁Gründ": 17965,
+ "▁Boh": 17966,
+ "▁mile": 17967,
+ "▁Technology": 17968,
+ "\"+": 17969,
+ "acco": 17970,
+ "▁ss": 17971,
+ "▁Fed": 17972,
+ "▁Hend": 17973,
+ "usch": 17974,
+ "itä": 17975,
+ "folk": 17976,
+ "▁absor": 17977,
+ "antal": 17978,
+ "odge": 17979,
+ "▁WHEN": 17980,
+ "▁Externí": 17981,
+ "▁Regiment": 17982,
+ "▁evaluation": 17983,
+ "▁Tai": 17984,
+ "▁vocals": 17985,
+ "▁experimental": 17986,
+ "embed": 17987,
+ "▁Minn": 17988,
+ "▁вме": 17989,
+ "prec": 17990,
+ "every": 17991,
+ "▁hoof": 17992,
+ "▁Fernando": 17993,
+ "▁Bibliographie": 17994,
+ "▁nag": 17995,
+ "amerikanischer": 17996,
+ "▁marks": 17997,
+ "▁UTC": 17998,
+ "▁uncertain": 17999,
+ "дия": 18000,
+ "olia": 18001,
+ "▁cup": 18002,
+ "▁fille": 18003,
+ "▁dok": 18004,
+ "useppe": 18005,
+ "esterd": 18006,
+ "▁Brand": 18007,
+ "▁Third": 18008,
+ "PP": 18009,
+ "nodes": 18010,
+ "▁Pad": 18011,
+ "▁loved": 18012,
+ "swing": 18013,
+ "▁surprised": 18014,
+ "ardi": 18015,
+ "▁GR": 18016,
+ "]\"": 18017,
+ "▁equally": 18018,
+ "ihe": 18019,
+ "care": 18020,
+ "писок": 18021,
+ "lijk": 18022,
+ "rinn": 18023,
+ "▁\\[\\": 18024,
+ "▁sons": 18025,
+ "▁tät": 18026,
+ "icamente": 18027,
+ "▁listing": 18028,
+ "iellement": 18029,
+ "▁nyelven": 18030,
+ "▁ds": 18031,
+ "▁agricult": 18032,
+ "▁Hermann": 18033,
+ "▁besides": 18034,
+ "progress": 18035,
+ "▁peculiar": 18036,
+ "focus": 18037,
+ "cn": 18038,
+ "-$": 18039,
+ "ственный": 18040,
+ "ourg": 18041,
+ "▁wyn": 18042,
+ "▁conducted": 18043,
+ "▁Становништво": 18044,
+ "connected": 18045,
+ "▁bott": 18046,
+ "▁смер": 18047,
+ "▁Poz": 18048,
+ "unct": 18049,
+ "conda": 18050,
+ "▁савезној": 18051,
+ "▁havet": 18052,
+ "ligt": 18053,
+ "orted": 18054,
+ "▁entering": 18055,
+ "multip": 18056,
+ "▁Temple": 18057,
+ "▁Plant": 18058,
+ "typeof": 18059,
+ "▁Vlad": 18060,
+ "▁qued": 18061,
+ "▁reste": 18062,
+ "▁май": 18063,
+ "▁Very": 18064,
+ "ambiguation": 18065,
+ "▁challeng": 18066,
+ "▁respective": 18067,
+ "▁тор": 18068,
+ "Ctrl": 18069,
+ "▁absence": 18070,
+ "aru": 18071,
+ "вое": 18072,
+ "▁först": 18073,
+ "▁sq": 18074,
+ "▁Emperor": 18075,
+ "▁Ign": 18076,
+ "▁това": 18077,
+ ":`": 18078,
+ "adoop": 18079,
+ "▁Madame": 18080,
+ "▁gruppo": 18081,
+ "stud": 18082,
+ "▁externas": 18083,
+ "▁Александр": 18084,
+ "▁dign": 18085,
+ "▁живе": 18086,
+ "Amount": 18087,
+ "▁correlate": 18088,
+ "▁Fant": 18089,
+ "▁rails": 18090,
+ "fp": 18091,
+ "министратив": 18092,
+ "▁bought": 18093,
+ "▁filters": 18094,
+ "▁ancora": 18095,
+ "▁partner": 18096,
+ "▁quand": 18097,
+ "symbol": 18098,
+ "ulating": 18099,
+ "▁zd": 18100,
+ "awn": 18101,
+ "▁Grant": 18102,
+ "because": 18103,
+ "rable": 18104,
+ "\\}": 18105,
+ "ísticas": 18106,
+ "▁уче": 18107,
+ "▁période": 18108,
+ "▁ske": 18109,
+ "▁Anyway": 18110,
+ "▁indexes": 18111,
+ "▁directions": 18112,
+ "▁RAM": 18113,
+ "chrome": 18114,
+ "▁apost": 18115,
+ "▁warnings": 18116,
+ "▁Airport": 18117,
+ "VI": 18118,
+ "abile": 18119,
+ "▁lord": 18120,
+ "provider": 18121,
+ "▁Ji": 18122,
+ "ostream": 18123,
+ "▁gemeente": 18124,
+ "tableView": 18125,
+ "Extra": 18126,
+ "cursor": 18127,
+ "eground": 18128,
+ "▁Moz": 18129,
+ "▁rib": 18130,
+ "▁morph": 18131,
+ "loads": 18132,
+ "elsk": 18133,
+ "▁MAX": 18134,
+ "▁Santiago": 18135,
+ "▁Him": 18136,
+ "codes": 18137,
+ "▁lanz": 18138,
+ "▁counts": 18139,
+ "rinningsområ": 18140,
+ "щё": 18141,
+ "▁spé": 18142,
+ "▁pierws": 18143,
+ "▁Sver": 18144,
+ "▁acknow": 18145,
+ "Boolean": 18146,
+ "▁фамили": 18147,
+ "▁Senate": 18148,
+ "шов": 18149,
+ "agers": 18150,
+ "▁Nueva": 18151,
+ "bil": 18152,
+ "kiem": 18153,
+ "▁Mey": 18154,
+ "wij": 18155,
+ "▁GmbH": 18156,
+ "validation": 18157,
+ "▁ensuite": 18158,
+ "inking": 18159,
+ "▁campion": 18160,
+ "▁financial": 18161,
+ "izon": 18162,
+ "Headers": 18163,
+ "▁deprecated": 18164,
+ "▁fonction": 18165,
+ "REG": 18166,
+ "▁volumes": 18167,
+ "▁Chi": 18168,
+ "▁encountered": 18169,
+ "lak": 18170,
+ "рая": 18171,
+ "▁continues": 18172,
+ "▁~[": 18173,
+ "uerte": 18174,
+ "▁\\;": 18175,
+ "▁Dok": 18176,
+ "▁weights": 18177,
+ "▁rh": 18178,
+ "▁Napole": 18179,
+ "▁naturally": 18180,
+ "sku": 18181,
+ "pas": 18182,
+ "▁gegründ": 18183,
+ "etr": 18184,
+ "▁Ku": 18185,
+ "icted": 18186,
+ "▁fabric": 18187,
+ "▁ASC": 18188,
+ "▁Entertainment": 18189,
+ "▁energ": 18190,
+ "клад": 18191,
+ "omon": 18192,
+ "theme": 18193,
+ "▁харак": 18194,
+ "▁draft": 18195,
+ "▁channels": 18196,
+ "▁desert": 18197,
+ "▁través": 18198,
+ "▁Lock": 18199,
+ "▁siendo": 18200,
+ "фек": 18201,
+ "même": 18202,
+ "▁packet": 18203,
+ "▁Mountain": 18204,
+ "▁Fahr": 18205,
+ "braio": 18206,
+ "пере": 18207,
+ "▁genannt": 18208,
+ "▁deployment": 18209,
+ "Pal": 18210,
+ "ног": 18211,
+ "стру": 18212,
+ "Prim": 18213,
+ "für": 18214,
+ "▁dangerous": 18215,
+ "▁szám": 18216,
+ "reck": 18217,
+ "▁popup": 18218,
+ "icky": 18219,
+ "inar": 18220,
+ "cowo": 18221,
+ "нцикло": 18222,
+ "ítás": 18223,
+ "▁plugins": 18224,
+ "▁driven": 18225,
+ "лев": 18226,
+ "▁\"(": 18227,
+ "tta": 18228,
+ "▁Ú": 18229,
+ "▁eb": 18230,
+ "▁'';": 18231,
+ "▁knock": 18232,
+ "▁основа": 18233,
+ "▁maison": 18234,
+ "гля": 18235,
+ "▁Honor": 18236,
+ "tail": 18237,
+ "ritz": 18238,
+ "▁guys": 18239,
+ "▁combinations": 18240,
+ "ondere": 18241,
+ "▁Ald": 18242,
+ "▁fiddle": 18243,
+ "дав": 18244,
+ "urd": 18245,
+ "▁projection": 18246,
+ "▁También": 18247,
+ "verb": 18248,
+ "▁terre": 18249,
+ "rugu": 18250,
+ "▁september": 18251,
+ "▁=": 18572,
+ "▁Beat": 18573,
+ "▁Sax": 18574,
+ "vertical": 18575,
+ "кто": 18576,
+ "▁plants": 18577,
+ "▁Références": 18578,
+ "▁ogni": 18579,
+ "▁curs": 18580,
+ "▁SK": 18581,
+ "они": 18582,
+ "▁destac": 18583,
+ "\");\r": 18584,
+ "▁Sure": 18585,
+ "▁partido": 18586,
+ "▁Folge": 18587,
+ "▁Moore": 18588,
+ "▁wz": 18589,
+ "скус": 18590,
+ "ltre": 18591,
+ "ondo": 18592,
+ "▁pose": 18593,
+ "imos": 18594,
+ "бой": 18595,
+ "ципа": 18596,
+ "jus": 18597,
+ ".....": 18598,
+ "▁época": 18599,
+ "▁quanto": 18600,
+ "▁Support": 18601,
+ "geschichte": 18602,
+ "SERVER": 18603,
+ "▁Georges": 18604,
+ "enum": 18605,
+ "▁herm": 18606,
+ "▁nebo": 18607,
+ "▁Chr": 18608,
+ "character": 18609,
+ "▁***": 18610,
+ "▁Forsch": 18611,
+ "iami": 18612,
+ "▁¿": 18613,
+ "cych": 18614,
+ "▁fifth": 18615,
+ "sent": 18616,
+ "▁anderem": 18617,
+ "▁proportion": 18618,
+ "▁prest": 18619,
+ "▁Girl": 18620,
+ "▁drama": 18621,
+ "wand": 18622,
+ "▁Mail": 18623,
+ "▁Lux": 18624,
+ "▁který": 18625,
+ "▁Gesellschaft": 18626,
+ "▁Hinweis": 18627,
+ "nisse": 18628,
+ "▁mondo": 18629,
+ "Eq": 18630,
+ "▁perí": 18631,
+ "▁eastern": 18632,
+ "▁UEFA": 18633,
+ "uale": 18634,
+ "▁convex": 18635,
+ "▁поль": 18636,
+ "▁Hey": 18637,
+ "zenie": 18638,
+ "initely": 18639,
+ "▁Zusammen": 18640,
+ "SSL": 18641,
+ "ocal": 18642,
+ "▁canal": 18643,
+ "voy": 18644,
+ "▁Кри": 18645,
+ "▁között": 18646,
+ "▁cars": 18647,
+ "▁versión": 18648,
+ "Environment": 18649,
+ "Her": 18650,
+ "▁señ": 18651,
+ "▁spatial": 18652,
+ "ymi": 18653,
+ "Fire": 18654,
+ "▁veget": 18655,
+ "▁Wie": 18656,
+ "▁znaj": 18657,
+ "▁damage": 18658,
+ "▁endl": 18659,
+ "gif": 18660,
+ "▁quali": 18661,
+ "▁которых": 18662,
+ "ellan": 18663,
+ "▁mens": 18664,
+ "▁plug": 18665,
+ "▁abund": 18666,
+ "FIG": 18667,
+ "▁sf": 18668,
+ "▁confl": 18669,
+ "▁населения": 18670,
+ "▁principles": 18671,
+ "▁Gabriel": 18672,
+ "ibe": 18673,
+ "▁{%": 18674,
+ "▁població": 18675,
+ "ніципа": 18676,
+ "▁extreme": 18677,
+ "▁asse": 18678,
+ "▁vu": 18679,
+ "Mock": 18680,
+ "▁spielte": 18681,
+ "▁Aer": 18682,
+ "▁datos": 18683,
+ "endes": 18684,
+ "▁Gel": 18685,
+ "▁Gor": 18686,
+ "Christ": 18687,
+ "chos": 18688,
+ "Processor": 18689,
+ "▁instruct": 18690,
+ "▁picked": 18691,
+ "nahme": 18692,
+ "fahr": 18693,
+ "▁indicated": 18694,
+ "▁%.": 18695,
+ "▁ts": 18696,
+ "▁notable": 18697,
+ "▁qualified": 18698,
+ "▁Ал": 18699,
+ "Black": 18700,
+ "▁council": 18701,
+ "▁overhead": 18702,
+ "aci": 18703,
+ "année": 18704,
+ "▁initWith": 18705,
+ "bió": 18706,
+ "▁introduction": 18707,
+ "▁companion": 18708,
+ "▁expon": 18709,
+ "▁kör": 18710,
+ "oby": 18711,
+ "burn": 18712,
+ "gnu": 18713,
+ "virtual": 18714,
+ "▁intellect": 18715,
+ "▁держа": 18716,
+ "'+": 18717,
+ "бле": 18718,
+ "▁strictly": 18719,
+ "▁recognize": 18720,
+ "hour": 18721,
+ "▁Wrest": 18722,
+ "ennen": 18723,
+ "$).": 18724,
+ "fff": 18725,
+ "▁Centro": 18726,
+ "▁Pitt": 18727,
+ "▁dział": 18728,
+ "▁cela": 18729,
+ "▁francese": 18730,
+ "рами": 18731,
+ "special": 18732,
+ "▁Dup": 18733,
+ "toire": 18734,
+ "каль": 18735,
+ "COUNT": 18736,
+ "▁Brook": 18737,
+ "▁руково": 18738,
+ "publique": 18739,
+ "▁seconda": 18740,
+ "▁compt": 18741,
+ "▁bland": 18742,
+ "Before": 18743,
+ "▁Pack": 18744,
+ "alty": 18745,
+ "öder": 18746,
+ "▁intervals": 18747,
+ "▁Datenbank": 18748,
+ "Movie": 18749,
+ "▁transm": 18750,
+ "▁tap": 18751,
+ "▁поч": 18752,
+ "fon": 18753,
+ "iai": 18754,
+ "▁fib": 18755,
+ "▁wyd": 18756,
+ "▁hung": 18757,
+ "▁alive": 18758,
+ "Clear": 18759,
+ "▁pushed": 18760,
+ "▁tuple": 18761,
+ "achen": 18762,
+ "гово": 18763,
+ "▁revers": 18764,
+ "▁augment": 18765,
+ "▁challenge": 18766,
+ "lost": 18767,
+ "▁deuxième": 18768,
+ "structor": 18769,
+ "▁mehrerer": 18770,
+ "atural": 18771,
+ "Split": 18772,
+ "стем": 18773,
+ "шла": 18774,
+ ")\\\\": 18775,
+ "▁Dog": 18776,
+ "▁developers": 18777,
+ "▁nod": 18778,
+ "▁сторо": 18779,
+ "▁NaN": 18780,
+ "▁priest": 18781,
+ "▁exha": 18782,
+ "UND": 18783,
+ "pair": 18784,
+ "alone": 18785,
+ "▁moon": 18786,
+ "▁#!/": 18787,
+ "▁guns": 18788,
+ "rola": 18789,
+ "чита": 18790,
+ "▁Encyclopedia": 18791,
+ "atis": 18792,
+ "▁'\"": 18793,
+ "zych": 18794,
+ "▁superfic": 18795,
+ "▁эк": 18796,
+ "едера": 18797,
+ "feed": 18798,
+ "LAY": 18799,
+ "Fi": 18800,
+ "unks": 18801,
+ "isecond": 18802,
+ "▁'@": 18803,
+ "▁Adding": 18804,
+ "рое": 18805,
+ "▁tang": 18806,
+ "цо": 18807,
+ "hung": 18808,
+ "bis": 18809,
+ "ského": 18810,
+ "▁advert": 18811,
+ "▁занима": 18812,
+ "uzz": 18813,
+ "ágina": 18814,
+ "▁Tel": 18815,
+ "sig": 18816,
+ "▁Ez": 18817,
+ "▁guarantee": 18818,
+ "▁teaching": 18819,
+ "oty": 18820,
+ "termin": 18821,
+ "▁distributions": 18822,
+ "FLA": 18823,
+ "▁Giuseppe": 18824,
+ "querySelector": 18825,
+ "▁/\\": 18826,
+ "▁Squad": 18827,
+ "gz": 18828,
+ "delay": 18829,
+ "▁surrounding": 18830,
+ "▁manus": 18831,
+ "▁Hou": 18832,
+ "²,": 18833,
+ "▁cultiv": 18834,
+ "▁troubles": 18835,
+ "▁raison": 18836,
+ "expand": 18837,
+ "▁cov": 18838,
+ "nungen": 18839,
+ ")){": 18840,
+ "▁geen": 18841,
+ "▁außer": 18842,
+ "▁Лі": 18843,
+ "ři": 18844,
+ "▁situations": 18845,
+ "▁telep": 18846,
+ "▁Jed": 18847,
+ "▁travail": 18848,
+ "lias": 18849,
+ "bullet": 18850,
+ "▁selecting": 18851,
+ "avier": 18852,
+ "▁essential": 18853,
+ "(/": 18854,
+ "yyyy": 18855,
+ "ště": 18856,
+ "ulty": 18857,
+ "▁kra": 18858,
+ "▁tabs": 18859,
+ "▁experienced": 18860,
+ "azi": 18861,
+ "▁Directory": 18862,
+ "▁cron": 18863,
+ "▁spend": 18864,
+ "▁RA": 18865,
+ "▁selenium": 18866,
+ "▁Thé": 18867,
+ "Elements": 18868,
+ "cii": 18869,
+ "▁plat": 18870,
+ "▁archive": 18871,
+ "▁assistance": 18872,
+ "▁neck": 18873,
+ "▁Avenue": 18874,
+ "▁wheel": 18875,
+ "▁hade": 18876,
+ "Common": 18877,
+ "▁Dialog": 18878,
+ "▁forg": 18879,
+ "▁surely": 18880,
+ "▁hockey": 18881,
+ "któ": 18882,
+ "▁tk": 18883,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 18884,
+ "▁Bruce": 18885,
+ "▁enorm": 18886,
+ ",’": 18887,
+ "▁Christopher": 18888,
+ "jev": 18889,
+ "▁quad": 18890,
+ "▁AJAX": 18891,
+ "▁relief": 18892,
+ "▁modes": 18893,
+ "sklär": 18894,
+ "▁Vid": 18895,
+ "▁Serial": 18896,
+ "▁tokens": 18897,
+ "▁Poland": 18898,
+ "\\]": 18899,
+ "▁vide": 18900,
+ "rooms": 18901,
+ "omas": 18902,
+ "▁Bureau": 18903,
+ "cx": 18904,
+ "ностью": 18905,
+ "▁signs": 18906,
+ "шение": 18907,
+ "lossen": 18908,
+ "▁Queens": 18909,
+ "▁membre": 18910,
+ "▁mez": 18911,
+ "▁Bool": 18912,
+ "▁Naj": 18913,
+ "▁Memory": 18914,
+ "▁Khan": 18915,
+ "▁là": 18916,
+ "▁Hud": 18917,
+ "▁dismiss": 18918,
+ "ighth": 18919,
+ "▁fs": 18920,
+ "prevent": 18921,
+ "▁меда": 18922,
+ "▁Police": 18923,
+ "▁ско": 18924,
+ "finite": 18925,
+ "▁ami": 18926,
+ "▁Much": 18927,
+ "owania": 18928,
+ "ORY": 18929,
+ "iors": 18930,
+ "▁Premio": 18931,
+ "▁textbox": 18932,
+ "dm": 18933,
+ "▁afin": 18934,
+ "▁Donald": 18935,
+ "▁Priv": 18936,
+ "▁decid": 18937,
+ "▁Maurice": 18938,
+ "agan": 18939,
+ "▁Britannica": 18940,
+ "▁oft": 18941,
+ "▁consecutive": 18942,
+ "\"?>": 18943,
+ "овий": 18944,
+ "student": 18945,
+ "▁peque": 18946,
+ "▁dieses": 18947,
+ "▁retour": 18948,
+ "étr": 18949,
+ "▁сез": 18950,
+ "▁kre": 18951,
+ "▁votes": 18952,
+ "ruption": 18953,
+ "izada": 18954,
+ "▁Wiel": 18955,
+ "▁Gray": 18956,
+ "▁Leop": 18957,
+ "teilung": 18958,
+ "(['": 18959,
+ "▁whites": 18960,
+ "frica": 18961,
+ "animation": 18962,
+ "curl": 18963,
+ "lings": 18964,
+ "=\"$": 18965,
+ "loyd": 18966,
+ "textsc": 18967,
+ "ору": 18968,
+ "▁села": 18969,
+ "esian": 18970,
+ "▁Mission": 18971,
+ "▁неза": 18972,
+ "▁ultimately": 18973,
+ "бов": 18974,
+ "olen": 18975,
+ "скому": 18976,
+ "nete": 18977,
+ "▁Dit": 18978,
+ "▁costru": 18979,
+ "dependent": 18980,
+ "▁Resource": 18981,
+ "▁hosts": 18982,
+ "▁rear": 18983,
+ "Duration": 18984,
+ "ників": 18985,
+ "Ма": 18986,
+ "▁planning": 18987,
+ "▁prediction": 18988,
+ "▁Lyn": 18989,
+ "▁kir": 18990,
+ "▁Legisl": 18991,
+ "мат": 18992,
+ "▁Soccer": 18993,
+ "▁survey": 18994,
+ "▁estadounidense": 18995,
+ "orgen": 18996,
+ "jourd": 18997,
+ "▁aprile": 18998,
+ "▁ids": 18999,
+ "ське": 19000,
+ "▁employee": 19001,
+ "▁Schauspieler": 19002,
+ "ръ": 19003,
+ "▁multimedia": 19004,
+ "▁свою": 19005,
+ "▁wine": 19006,
+ "▁EU": 19007,
+ "ică": 19008,
+ "▁Rhein": 19009,
+ "▁Palmar": 19010,
+ "oteca": 19011,
+ "▁prepare": 19012,
+ "▁Tot": 19013,
+ "▁Null": 19014,
+ "▁kin": 19015,
+ "inals": 19016,
+ "▁Newton": 19017,
+ "▁tbl": 19018,
+ "▁Sold": 19019,
+ "▁verf": 19020,
+ "aturing": 19021,
+ "▁laptop": 19022,
+ "▁Совет": 19023,
+ "secret": 19024,
+ "▁Olympic": 19025,
+ "▁footballer": 19026,
+ "▁Rudolf": 19027,
+ "▁conhe": 19028,
+ "zysk": 19029,
+ "▁evaluated": 19030,
+ "»)": 19031,
+ "shop": 19032,
+ "repository": 19033,
+ "▁zach": 19034,
+ "▁losing": 19035,
+ "etter": 19036,
+ "▁Wirtschaft": 19037,
+ "так": 19038,
+ "▁unnecessary": 19039,
+ "▁Phot": 19040,
+ "anska": 19041,
+ "▁Native": 19042,
+ "CCE": 19043,
+ "▁fifty": 19044,
+ "▁erw": 19045,
+ "rh": 19046,
+ "issent": 19047,
+ "}{(": 19048,
+ "▁lanç": 19049,
+ "▁Xcode": 19050,
+ "город": 19051,
+ "cir": 19052,
+ "▁película": 19053,
+ "▁Oscar": 19054,
+ "▁shore": 19055,
+ "▁supplied": 19056,
+ "examples": 19057,
+ "Mess": 19058,
+ "VICE": 19059,
+ "▁exclude": 19060,
+ "▁hen": 19061,
+ "▁губер": 19062,
+ "▁Fragment": 19063,
+ "▁Bitte": 19064,
+ "▁Besides": 19065,
+ "▁hes": 19066,
+ "▁ihrem": 19067,
+ "▁Serge": 19068,
+ "▁artific": 19069,
+ "=\"${": 19070,
+ "лово": 19071,
+ "uteur": 19072,
+ "taire": 19073,
+ "пас": 19074,
+ "▁easiest": 19075,
+ "▁famiglia": 19076,
+ "Normal": 19077,
+ "▁dalle": 19078,
+ "▁nations": 19079,
+ "rp": 19080,
+ "thead": 19081,
+ "▁області": 19082,
+ "▁Democratic": 19083,
+ "▁челове": 19084,
+ "мож": 19085,
+ "▁гер": 19086,
+ "▁smallest": 19087,
+ "▁Publishing": 19088,
+ "▁Ts": 19089,
+ "▁laughed": 19090,
+ "lle": 19091,
+ "▁Amt": 19092,
+ "▁IIS": 19093,
+ "FORM": 19094,
+ "Mag": 19095,
+ "дон": 19096,
+ "▁storia": 19097,
+ "▁organized": 19098,
+ "ční": 19099,
+ "▁ox": 19100,
+ "lingen": 19101,
+ "▁luego": 19102,
+ "cció": 19103,
+ "▁rely": 19104,
+ "▁tussen": 19105,
+ "erten": 19106,
+ "▁honour": 19107,
+ "▁Claude": 19108,
+ "▁Korea": 19109,
+ "▁Metropol": 19110,
+ "Super": 19111,
+ "rien": 19112,
+ "érature": 19113,
+ "attro": 19114,
+ "▁біль": 19115,
+ "▁Herbert": 19116,
+ "▁auteurs": 19117,
+ "▁darauf": 19118,
+ "▁mental": 19119,
+ "▁rang": 19120,
+ "▁són": 19121,
+ "▁Soph": 19122,
+ ")\",": 19123,
+ "Descriptor": 19124,
+ "prepare": 19125,
+ "▁Landkreis": 19126,
+ "HC": 19127,
+ "cross": 19128,
+ "лиза": 19129,
+ "▁Login": 19130,
+ "onen": 19131,
+ "Feature": 19132,
+ "▁museum": 19133,
+ "vek": 19134,
+ "▁Nelson": 19135,
+ "▁rejo": 19136,
+ "▁команди": 19137,
+ "▁summar": 19138,
+ "▁следу": 19139,
+ "ämp": 19140,
+ "▁Gas": 19141,
+ "вом": 19142,
+ "VALUE": 19143,
+ "inge": 19144,
+ "period": 19145,
+ "lassen": 19146,
+ "ával": 19147,
+ "▁altogether": 19148,
+ "umph": 19149,
+ "istro": 19150,
+ "ąż": 19151,
+ "▁Keep": 19152,
+ "▁Marco": 19153,
+ "▁étant": 19154,
+ "▁Dre": 19155,
+ "geometry": 19156,
+ "▁Kas": 19157,
+ "messages": 19158,
+ "Cook": 19159,
+ "▁Side": 19160,
+ "▁коми": 19161,
+ "стри": 19162,
+ "▁excess": 19163,
+ "▁Biografia": 19164,
+ "XXXX": 19165,
+ "▁Nie": 19166,
+ "vendor": 19167,
+ "xsd": 19168,
+ "Mill": 19169,
+ "processing": 19170,
+ "▁Missouri": 19171,
+ "▁permett": 19172,
+ "▁apar": 19173,
+ "▁crowd": 19174,
+ "fert": 19175,
+ "▁Dou": 19176,
+ "rí": 19177,
+ "▁CC": 19178,
+ "▁payment": 19179,
+ "▁Hollywood": 19180,
+ "▁Virtual": 19181,
+ "▁spoken": 19182,
+ "▁tram": 19183,
+ "▁Community": 19184,
+ "▁administrative": 19185,
+ "▁воло": 19186,
+ "gior": 19187,
+ "visor": 19188,
+ "▁Украи": 19189,
+ "stage": 19190,
+ "▁Format": 19191,
+ "▁convenient": 19192,
+ "На": 19193,
+ "▁median": 19194,
+ "▁вра": 19195,
+ "▁Према": 19196,
+ "enig": 19197,
+ "▁Opera": 19198,
+ "rés": 19199,
+ "▁fmt": 19200,
+ "▁efficiency": 19201,
+ "male": 19202,
+ "Master": 19203,
+ "Series": 19204,
+ "▁syd": 19205,
+ "generic": 19206,
+ "interval": 19207,
+ "▁efect": 19208,
+ "▁inwoners": 19209,
+ "лимпи": 19210,
+ "irement": 19211,
+ "Err": 19212,
+ "öh": 19213,
+ "▁lying": 19214,
+ "▁Settings": 19215,
+ "!=": 19216,
+ "ematic": 19217,
+ "argv": 19218,
+ "▁Basic": 19219,
+ "▁consideration": 19220,
+ "▁habe": 19221,
+ "-%": 19222,
+ "▁mountains": 19223,
+ "▁peak": 19224,
+ "▁fallen": 19225,
+ "eded": 19226,
+ "logic": 19227,
+ "▁matched": 19228,
+ "▁typing": 19229,
+ ")},": 19230,
+ "▁fancy": 19231,
+ "▁elegant": 19232,
+ "ال": 19233,
+ "▁участ": 19234,
+ "▁Sarah": 19235,
+ "▁Verd": 19236,
+ "▁tego": 19237,
+ "rules": 19238,
+ "▁mounted": 19239,
+ "▁ім": 19240,
+ "еру": 19241,
+ "stoff": 19242,
+ "fahren": 19243,
+ "distance": 19244,
+ "▁License": 19245,
+ "▁LEFT": 19246,
+ "▁wp": 19247,
+ "/{": 19248,
+ "▁amazon": 19249,
+ ">&": 19250,
+ "▁első": 19251,
+ "quarters": 19252,
+ "▁shock": 19253,
+ "nick": 19254,
+ "▁Archite": 19255,
+ "▁Square": 19256,
+ "▁rates": 19257,
+ "iore": 19258,
+ "▁Nat": 19259,
+ "▁Charlot": 19260,
+ "reichen": 19261,
+ "▁variation": 19262,
+ "osis": 19263,
+ "life": 19264,
+ "slide": 19265,
+ "abi": 19266,
+ "uki": 19267,
+ "mysq": 19268,
+ "▁primitive": 19269,
+ "▁universitaire": 19270,
+ "LENG": 19271,
+ "ależ": 19272,
+ "ebook": 19273,
+ "syn": 19274,
+ "▁Gegen": 19275,
+ "▁Kü": 19276,
+ "▁але": 19277,
+ "▁Lub": 19278,
+ "concurrent": 19279,
+ "izzato": 19280,
+ "▁stub": 19281,
+ "▁ie": 19282,
+ "▁'./": 19283,
+ "cod": 19284,
+ "▁internacional": 19285,
+ "▁Glas": 19286,
+ "▁mare": 19287,
+ "▁Neb": 19288,
+ "▁GB": 19289,
+ "kwargs": 19290,
+ "▁aument": 19291,
+ "WID": 19292,
+ "▁род": 19293,
+ "punkt": 19294,
+ "▁Grad": 19295,
+ "SN": 19296,
+ "AMP": 19297,
+ "▁Born": 19298,
+ "▁Guerre": 19299,
+ "готов": 19300,
+ "▁medio": 19301,
+ "Med": 19302,
+ "supp": 19303,
+ "actual": 19304,
+ "dropdown": 19305,
+ "▁oktober": 19306,
+ "▁ř": 19307,
+ "▁circular": 19308,
+ "▁skin": 19309,
+ "▁emphas": 19310,
+ "▁голов": 19311,
+ "▁pue": 19312,
+ "▁informations": 19313,
+ "▁Wolfgang": 19314,
+ "▁useless": 19315,
+ "ит": 19316,
+ "▁Joan": 19317,
+ "▁бор": 19318,
+ "▁Glad": 19319,
+ "▁Know": 19320,
+ "ként": 19321,
+ "speed": 19322,
+ "▁Kevin": 19323,
+ "unft": 19324,
+ "▁arqu": 19325,
+ "▁Casa": 19326,
+ "(...": 19327,
+ "▁rapidly": 19328,
+ "▁proble": 19329,
+ "▁Википеди": 19330,
+ "žen": 19331,
+ "▁Neben": 19332,
+ "▁Meter": 19333,
+ "Children": 19334,
+ "cem": 19335,
+ "igos": 19336,
+ "aju": 19337,
+ "▁Retrie": 19338,
+ "▁Hell": 19339,
+ "▁gig": 19340,
+ "▁controvers": 19341,
+ "▁zoom": 19342,
+ "▁cens": 19343,
+ "▁alcuni": 19344,
+ "▁Header": 19345,
+ "Meta": 19346,
+ "Required": 19347,
+ "▁институ": 19348,
+ "▁skup": 19349,
+ "▁ingles": 19350,
+ "égl": 19351,
+ "bij": 19352,
+ "▁tér": 19353,
+ "▁compag": 19354,
+ "▁committed": 19355,
+ "▁processed": 19356,
+ "Lower": 19357,
+ "▁Foreign": 19358,
+ "▁seq": 19359,
+ "sheets": 19360,
+ "▁Fem": 19361,
+ "hoz": 19362,
+ "inks": 19363,
+ "▁kall": 19364,
+ "variant": 19365,
+ "▁libro": 19366,
+ "▁clicks": 19367,
+ "▁gobierno": 19368,
+ "iegel": 19369,
+ "мого": 19370,
+ "geme": 19371,
+ "▁tower": 19372,
+ "▁parish": 19373,
+ "▁TCP": 19374,
+ "▁ls": 19375,
+ "▁nginx": 19376,
+ "NaN": 19377,
+ "▁Dir": 19378,
+ "▁Begriffe": 19379,
+ "arie": 19380,
+ "ímp": 19381,
+ "icios": 19382,
+ "▁sharing": 19383,
+ "▁cinéma": 19384,
+ "bec": 19385,
+ "RED": 19386,
+ "▁Kra": 19387,
+ "abol": 19388,
+ "▁flux": 19389,
+ "▁expensive": 19390,
+ "▁суще": 19391,
+ "▁`_": 19392,
+ "ocz": 19393,
+ "лист": 19394,
+ "▁acquaint": 19395,
+ "▁wise": 19396,
+ "▁pouvoir": 19397,
+ "▁devant": 19398,
+ "▁momentum": 19399,
+ "immer": 19400,
+ "▁Coupe": 19401,
+ "indexOf": 19402,
+ "▁doesnt": 19403,
+ "▁зав": 19404,
+ "▁license": 19405,
+ "▁â": 19406,
+ "CSS": 19407,
+ "▁rice": 19408,
+ "Team": 19409,
+ "▁ano": 19410,
+ "lit": 19411,
+ "▁merged": 19412,
+ "▁Cell": 19413,
+ "лл": 19414,
+ "boy": 19415,
+ "asts": 19416,
+ "▁sell": 19417,
+ "▁große": 19418,
+ "▁virtuel": 19419,
+ "Cancel": 19420,
+ "▁sj": 19421,
+ "gment": 19422,
+ ".<": 19423,
+ "чай": 19424,
+ "ië": 19425,
+ "akh": 19426,
+ "izers": 19427,
+ "prit": 19428,
+ "▁Tib": 19429,
+ "▁elaborate": 19430,
+ "▁fé": 19431,
+ "▁меди": 19432,
+ "LENGTH": 19433,
+ "▁primarily": 19434,
+ "▁scores": 19435,
+ "▁carrying": 19436,
+ "▁lake": 19437,
+ "compose": 19438,
+ "▁Township": 19439,
+ "unge": 19440,
+ "▁alberga": 19441,
+ "anych": 19442,
+ "quelle": 19443,
+ "▁Ark": 19444,
+ "▁pris": 19445,
+ "▁voll": 19446,
+ "шли": 19447,
+ "Validation": 19448,
+ "▁ceux": 19449,
+ "▁populate": 19450,
+ "\"\r": 19451,
+ "▁femmes": 19452,
+ "ANG": 19453,
+ "▁Despite": 19454,
+ "вые": 19455,
+ "iske": 19456,
+ "zug": 19457,
+ "нача": 19458,
+ "▁hatten": 19459,
+ "INSERT": 19460,
+ "Employee": 19461,
+ "▁moments": 19462,
+ "▁última": 19463,
+ "▁holder": 19464,
+ "blank": 19465,
+ "Collections": 19466,
+ "athers": 19467,
+ "▁grade": 19468,
+ "▁affairs": 19469,
+ ".$$": 19470,
+ "▁delta": 19471,
+ "▁Jugend": 19472,
+ "▁español": 19473,
+ "▁OUT": 19474,
+ "▁mathematical": 19475,
+ "▁mongo": 19476,
+ "▁Фе": 19477,
+ "uling": 19478,
+ "▁revolution": 19479,
+ "▁coin": 19480,
+ "▁subclass": 19481,
+ "\"=>": 19482,
+ "äche": 19483,
+ "▁pyg": 19484,
+ "щая": 19485,
+ "illery": 19486,
+ "▁comenz": 19487,
+ "depth": 19488,
+ "▁cél": 19489,
+ "▁resize": 19490,
+ "▁Same": 19491,
+ "▁strik": 19492,
+ "▁tir": 19493,
+ "▁scarc": 19494,
+ "▁Member": 19495,
+ "subscribe": 19496,
+ "óż": 19497,
+ "útbol": 19498,
+ "except": 19499,
+ "▁driving": 19500,
+ "kie": 19501,
+ "zony": 19502,
+ "èmes": 19503,
+ "David": 19504,
+ "issant": 19505,
+ "▁ты": 19506,
+ "▁élect": 19507,
+ "▁rename": 19508,
+ "▁Running": 19509,
+ "▁interfaces": 19510,
+ "////////////////": 19511,
+ "▁Walker": 19512,
+ "▁société": 19513,
+ "▁asks": 19514,
+ "brid": 19515,
+ "▁jewe": 19516,
+ "▁seines": 19517,
+ "▁agents": 19518,
+ "▁MY": 19519,
+ "▁Lawrence": 19520,
+ "dess": 19521,
+ "iesen": 19522,
+ "▁людях": 19523,
+ "прави": 19524,
+ "▁ancest": 19525,
+ "▁welche": 19526,
+ "raum": 19527,
+ "▁orb": 19528,
+ "scal": 19529,
+ "▁Lear": 19530,
+ "▁wear": 19531,
+ "▁slave": 19532,
+ "▁renamed": 19533,
+ "čen": 19534,
+ "maste": 19535,
+ "angles": 19536,
+ "▁América": 19537,
+ "▁ti": 19538,
+ "▁demsel": 19539,
+ "▁beneath": 19540,
+ "binary": 19541,
+ "▁edición": 19542,
+ "▁kilomet": 19543,
+ "uits": 19544,
+ "▁cuatro": 19545,
+ "▁entrance": 19546,
+ "ondissement": 19547,
+ "▁bag": 19548,
+ "▁Armen": 19549,
+ "ijo": 19550,
+ "▁Lors": 19551,
+ "▁demselben": 19552,
+ "êm": 19553,
+ "▁discrete": 19554,
+ "▁prominent": 19555,
+ "▁Jay": 19556,
+ "decor": 19557,
+ "DL": 19558,
+ "▁dí": 19559,
+ "Struct": 19560,
+ "▁Production": 19561,
+ "they": 19562,
+ "arius": 19563,
+ "schnitt": 19564,
+ "▁Cou": 19565,
+ "▁lex": 19566,
+ "youtube": 19567,
+ "▁работа": 19568,
+ "station": 19569,
+ "sep": 19570,
+ "▁mirror": 19571,
+ "▁hits": 19572,
+ "▁Beck": 19573,
+ "atically": 19574,
+ "▁Laz": 19575,
+ "▁winner": 19576,
+ "DEX": 19577,
+ "▁INT": 19578,
+ "}^{-": 19579,
+ "▁wegen": 19580,
+ "mad": 19581,
+ "Angle": 19582,
+ "zing": 19583,
+ "▁Bayern": 19584,
+ "sal": 19585,
+ "äger": 19586,
+ "▁busy": 19587,
+ "▁stör": 19588,
+ "▁folk": 19589,
+ "▁prix": 19590,
+ "▁allocated": 19591,
+ "▁pt": 19592,
+ "affen": 19593,
+ "cluster": 19594,
+ "▁complement": 19595,
+ "árs": 19596,
+ "▁Amerika": 19597,
+ "рій": 19598,
+ "▁valley": 19599,
+ "▁rooms": 19600,
+ "▁moi": 19601,
+ ".\",": 19602,
+ ";;;;": 19603,
+ "▁lowest": 19604,
+ "nog": 19605,
+ "▁landet": 19606,
+ "▁programme": 19607,
+ "chio": 19608,
+ "▁Während": 19609,
+ "ández": 19610,
+ "▁долж": 19611,
+ "▁ouv": 19612,
+ "omány": 19613,
+ "▁Википедии": 19614,
+ "▁só": 19615,
+ "▁elektr": 19616,
+ "Desc": 19617,
+ "▁Beaut": 19618,
+ "нар": 19619,
+ "▁може": 19620,
+ "Pierre": 19621,
+ "esota": 19622,
+ "▁operated": 19623,
+ "▁forte": 19624,
+ "рис": 19625,
+ "▁opposition": 19626,
+ "alia": 19627,
+ "▁Syl": 19628,
+ "getName": 19629,
+ "вели": 19630,
+ "fik": 19631,
+ "▁comprom": 19632,
+ "▁TextView": 19633,
+ "Spring": 19634,
+ "metadata": 19635,
+ "engu": 19636,
+ "/,": 19637,
+ "▁carri": 19638,
+ "istol": 19639,
+ "▁diagonal": 19640,
+ "lista": 19641,
+ "izen": 19642,
+ "▁rende": 19643,
+ "gcc": 19644,
+ "beck": 19645,
+ "lius": 19646,
+ "iral": 19647,
+ "Resolver": 19648,
+ "▁percentage": 19649,
+ "▁attra": 19650,
+ "strings": 19651,
+ "wiąz": 19652,
+ "ods": 19653,
+ "волю": 19654,
+ "ęż": 19655,
+ "▁newspaper": 19656,
+ "imiter": 19657,
+ "ABC": 19658,
+ "▁Manchester": 19659,
+ "[{": 19660,
+ "Agent": 19661,
+ "▁Wor": 19662,
+ "▁Kath": 19663,
+ "▁пові": 19664,
+ "▁entonces": 19665,
+ "▁niveau": 19666,
+ "atted": 19667,
+ "learn": 19668,
+ "atiques": 19669,
+ "▁уби": 19670,
+ "▁quindi": 19671,
+ "binding": 19672,
+ "▁imported": 19673,
+ "▁Horn": 19674,
+ "emberg": 19675,
+ "complex": 19676,
+ "▁neural": 19677,
+ "information": 19678,
+ "▁recognition": 19679,
+ "ingt": 19680,
+ "▁inhabitants": 19681,
+ "vue": 19682,
+ "▁Bevölker": 19683,
+ "▁curves": 19684,
+ "▁leb": 19685,
+ "дій": 19686,
+ "▁sow": 19687,
+ "▁sentiment": 19688,
+ "PH": 19689,
+ "rache": 19690,
+ "▁-(": 19691,
+ "▁estable": 19692,
+ "▁Ferdinand": 19693,
+ "▁écrit": 19694,
+ "▁primeiro": 19695,
+ "▁tex": 19696,
+ "▁intermediate": 19697,
+ "verage": 19698,
+ "ibus": 19699,
+ "▁serves": 19700,
+ "ivas": 19701,
+ "▁bru": 19702,
+ "▁lum": 19703,
+ "attice": 19704,
+ "чный": 19705,
+ "▁Dres": 19706,
+ "▁videos": 19707,
+ "duration": 19708,
+ "▁abit": 19709,
+ "▁egg": 19710,
+ "ographical": 19711,
+ "alph": 19712,
+ "STATE": 19713,
+ "▁пара": 19714,
+ "reading": 19715,
+ "▁vehicle": 19716,
+ "▁fortune": 19717,
+ "ultats": 19718,
+ "▁Storia": 19719,
+ "midt": 19720,
+ "łącz": 19721,
+ "▁Memorial": 19722,
+ "▁vas": 19723,
+ "▁зан": 19724,
+ "▁utility": 19725,
+ "▁obsc": 19726,
+ "▁relacion": 19727,
+ "▁runat": 19728,
+ "Release": 19729,
+ "take": 19730,
+ "▁Oliver": 19731,
+ "▁Sid": 19732,
+ "ulos": 19733,
+ "▁Garc": 19734,
+ "▁розта": 19735,
+ "▁Sak": 19736,
+ "Py": 19737,
+ "führt": 19738,
+ "▁trabal": 19739,
+ "*{": 19740,
+ "▁zes": 19741,
+ "▁szere": 19742,
+ "▁varios": 19743,
+ "▁otra": 19744,
+ "▁eval": 19745,
+ "▁situé": 19746,
+ "▁wounded": 19747,
+ "▁Vincent": 19748,
+ "▁викори": 19749,
+ "▁encode": 19750,
+ "Modal": 19751,
+ "▁forb": 19752,
+ "▁dynamics": 19753,
+ "▁depos": 19754,
+ "arde": 19755,
+ "▁streets": 19756,
+ "▁Komm": 19757,
+ "=$(": 19758,
+ "▁повер": 19759,
+ "▁dois": 19760,
+ "▁vitt": 19761,
+ "▁automatisch": 19762,
+ "▁reload": 19763,
+ "▁Verwalt": 19764,
+ "bero": 19765,
+ "▁hub": 19766,
+ "▁mos": 19767,
+ "▁tutto": 19768,
+ "▁Frederick": 19769,
+ "łow": 19770,
+ "antages": 19771,
+ "aque": 19772,
+ "paper": 19773,
+ "▁einige": 19774,
+ "`),": 19775,
+ "dj": 19776,
+ "▁Ple": 19777,
+ "▁%,": 19778,
+ "▁Bitmap": 19779,
+ "▁friendly": 19780,
+ "▁truly": 19781,
+ "▁stroke": 19782,
+ "roph": 19783,
+ "▁engl": 19784,
+ "▁coff": 19785,
+ "▁dust": 19786,
+ "▁Jahres": 19787,
+ "ppi": 19788,
+ "▁wys": 19789,
+ "factor": 19790,
+ "schluss": 19791,
+ "▁деревня": 19792,
+ "▁Past": 19793,
+ "▁дома": 19794,
+ "COM": 19795,
+ "▁pueden": 19796,
+ "▁gift": 19797,
+ "▁Gla": 19798,
+ "▁triggered": 19799,
+ "ély": 19800,
+ "ülés": 19801,
+ "▁Oliv": 19802,
+ "▁verso": 19803,
+ "▁lle": 19804,
+ "▁Gli": 19805,
+ "▁Ltd": 19806,
+ "oa": 19807,
+ "▁territorio": 19808,
+ "ordre": 19809,
+ "▁deck": 19810,
+ "dra": 19811,
+ "aszt": 19812,
+ "▁concerning": 19813,
+ "▁Additionally": 19814,
+ "▁které": 19815,
+ "▁grund": 19816,
+ "▁Gest": 19817,
+ "▁misunder": 19818,
+ "pret": 19819,
+ "────": 19820,
+ "▁reputation": 19821,
+ "zia": 19822,
+ "▁успе": 19823,
+ "▁escaped": 19824,
+ "▁Prag": 19825,
+ "perform": 19826,
+ "▁austral": 19827,
+ "▁Vater": 19828,
+ "час": 19829,
+ "▁races": 19830,
+ "▁Byte": 19831,
+ "Mask": 19832,
+ "▁Territ": 19833,
+ "стю": 19834,
+ "▁Voci": 19835,
+ "▁Fichier": 19836,
+ "▁Населення": 19837,
+ "▁Unterscheidung": 19838,
+ "teenth": 19839,
+ "▁pilot": 19840,
+ "▁ji": 19841,
+ "▁двух": 19842,
+ "▁orientation": 19843,
+ "indre": 19844,
+ "▁Dort": 19845,
+ "ças": 19846,
+ "пли": 19847,
+ "▁reaction": 19848,
+ "▁consisting": 19849,
+ "▁ferro": 19850,
+ "тисти": 19851,
+ "yard": 19852,
+ "▁сві": 19853,
+ "▁interpretation": 19854,
+ "ią": 19855,
+ "rah": 19856,
+ "▁fand": 19857,
+ "Public": 19858,
+ "▁universe": 19859,
+ "▁retir": 19860,
+ "▁conscious": 19861,
+ "arqu": 19862,
+ "▁waste": 19863,
+ "▁Bib": 19864,
+ "yclerView": 19865,
+ "▁listening": 19866,
+ "gleich": 19867,
+ "niejs": 19868,
+ "▁correlation": 19869,
+ "▁receiver": 19870,
+ "▁уда": 19871,
+ "▁courage": 19872,
+ "uchs": 19873,
+ "fass": 19874,
+ "▁chunk": 19875,
+ "▁Anfang": 19876,
+ "▁großen": 19877,
+ "continue": 19878,
+ "▁Warszawa": 19879,
+ "hé": 19880,
+ "iy": 19881,
+ "ivement": 19882,
+ "▁α": 19883,
+ "▁exposed": 19884,
+ "▁zahl": 19885,
+ "▁sacr": 19886,
+ "▁Looks": 19887,
+ "▁eager": 19888,
+ "enten": 19889,
+ "Cursor": 19890,
+ "/_": 19891,
+ "ixa": 19892,
+ "рела": 19893,
+ "знача": 19894,
+ "▁фамилией": 19895,
+ "▁argent": 19896,
+ "▁Anders": 19897,
+ "œuvre": 19898,
+ "▁Isa": 19899,
+ "мента": 19900,
+ "▁advers": 19901,
+ "riction": 19902,
+ "GP": 19903,
+ "▁після": 19904,
+ "▁preserve": 19905,
+ "▁Garden": 19906,
+ "Rate": 19907,
+ "après": 19908,
+ "▁readable": 19909,
+ "indu": 19910,
+ "▁skill": 19911,
+ "▁helping": 19912,
+ "ographique": 19913,
+ "cling": 19914,
+ "ologist": 19915,
+ "▁Filter": 19916,
+ "▁finger": 19917,
+ "▁Vall": 19918,
+ "▁Polish": 19919,
+ "lg": 19920,
+ "▁Familien": 19921,
+ "▁waters": 19922,
+ "▁pseud": 19923,
+ "aza": 19924,
+ "_)": 19925,
+ "ARY": 19926,
+ "▁среди": 19927,
+ "▁Must": 19928,
+ "▁Bod": 19929,
+ "anon": 19930,
+ "▁lado": 19931,
+ "▁tight": 19932,
+ "imen": 19933,
+ "appen": 19934,
+ "frames": 19935,
+ "ingers": 19936,
+ "▁COVID": 19937,
+ "▁зі": 19938,
+ "▁све": 19939,
+ "▁ць": 19940,
+ "▁Left": 19941,
+ "]];": 19942,
+ "чь": 19943,
+ "фика": 19944,
+ "▁сло": 19945,
+ "▁пі": 19946,
+ "▁existe": 19947,
+ "▁Atlantic": 19948,
+ "▁maintained": 19949,
+ "▁irre": 19950,
+ "▁année": 19951,
+ "▁commented": 19952,
+ "веро": 19953,
+ "berta": 19954,
+ "▁Lad": 19955,
+ "▁Upon": 19956,
+ "▁pause": 19957,
+ "mill": 19958,
+ "opter": 19959,
+ "UK": 19960,
+ "рес": 19961,
+ "нциклопеди": 19962,
+ "▁alongside": 19963,
+ "▁robot": 19964,
+ "▁fert": 19965,
+ "▁moy": 19966,
+ "▁ade": 19967,
+ "Mapper": 19968,
+ ")->": 19969,
+ "igua": 19970,
+ "étique": 19971,
+ "тка": 19972,
+ "alias": 19973,
+ "▁ори": 19974,
+ "▁Magn": 19975,
+ "▁gehörte": 19976,
+ "imb": 19977,
+ ")}{\\": 19978,
+ "▁Wikipédia": 19979,
+ "▁urs": 19980,
+ "▁ende": 19981,
+ "leb": 19982,
+ "▁GC": 19983,
+ "Hol": 19984,
+ "ancing": 19985,
+ "Union": 19986,
+ "▁tenía": 19987,
+ "TT": 19988,
+ "▁estate": 19989,
+ "há": 19990,
+ "▁полі": 19991,
+ "ultan": 19992,
+ "▁Hockey": 19993,
+ "ulse": 19994,
+ "▁choices": 19995,
+ "scher": 19996,
+ "▁[],": 19997,
+ "▁potentially": 19998,
+ "▁Übers": 19999,
+ "▁admit": 20000,
+ "Comment": 20001,
+ "стя": 20002,
+ "▁Vien": 20003,
+ "▁ці": 20004,
+ "▁permut": 20005,
+ "cgi": 20006,
+ "▁crít": 20007,
+ "Console": 20008,
+ "ctic": 20009,
+ "▁okres": 20010,
+ "awk": 20011,
+ "football": 20012,
+ "ouest": 20013,
+ "CTYPE": 20014,
+ "ologique": 20015,
+ "▁constit": 20016,
+ "▁interests": 20017,
+ "▁Progress": 20018,
+ "▁Menu": 20019,
+ "▁také": 20020,
+ "▁Asian": 20021,
+ "▁защи": 20022,
+ "▁younger": 20023,
+ "▁wished": 20024,
+ "▁Sort": 20025,
+ "▁audience": 20026,
+ "amba": 20027,
+ "▁gehört": 20028,
+ "▁Kansas": 20029,
+ "yaume": 20030,
+ "▁Professional": 20031,
+ "âce": 20032,
+ "▁fatto": 20033,
+ "tod": 20034,
+ "▁datasets": 20035,
+ "▁fare": 20036,
+ "▁waves": 20037,
+ "~/": 20038,
+ "▁measurement": 20039,
+ "▁wol": 20040,
+ "indust": 20041,
+ "▁struggling": 20042,
+ "▁pulled": 20043,
+ "▁caratter": 20044,
+ "▁Externe": 20045,
+ "▁действи": 20046,
+ "cnt": 20047,
+ "liches": 20048,
+ "▁Possible": 20049,
+ "▁faced": 20050,
+ "▁hypothesis": 20051,
+ "▁kilom": 20052,
+ "▁när": 20053,
+ "boolean": 20054,
+ "PY": 20055,
+ "ampa": 20056,
+ "▁kiss": 20057,
+ "▁astero": 20058,
+ "▁negli": 20059,
+ "aments": 20060,
+ "▁Stu": 20061,
+ "ató": 20062,
+ "▁Constitution": 20063,
+ "▁interpol": 20064,
+ "▁Unable": 20065,
+ "▁pis": 20066,
+ "▁parc": 20067,
+ "\"])": 20068,
+ "pler": 20069,
+ "▁autory": 20070,
+ "▁algunos": 20071,
+ "ywna": 20072,
+ "}))": 20073,
+ "▁falls": 20074,
+ "▁équip": 20075,
+ "▁emit": 20076,
+ "▁profil": 20077,
+ "gets": 20078,
+ "фо": 20079,
+ "▁Military": 20080,
+ "▁nombreux": 20081,
+ "oct": 20082,
+ "Replace": 20083,
+ "▁seasons": 20084,
+ "▁château": 20085,
+ "▁typeof": 20086,
+ "polit": 20087,
+ "▁rand": 20088,
+ "▁quar": 20089,
+ "▁erstmals": 20090,
+ "сини": 20091,
+ "▁payload": 20092,
+ "По": 20093,
+ "кін": 20094,
+ "repo": 20095,
+ "▁Pav": 20096,
+ "Score": 20097,
+ "erves": 20098,
+ "▁sollte": 20099,
+ "▁між": 20100,
+ "ébec": 20101,
+ "▁clip": 20102,
+ "▁Nice": 20103,
+ "▁neben": 20104,
+ "▁assass": 20105,
+ "itories": 20106,
+ "▁unity": 20107,
+ "▁ен": 20108,
+ "▁Institut": 20109,
+ "▁internationale": 20110,
+ "▁наук": 20111,
+ "▁comand": 20112,
+ "▁kleine": 20113,
+ "▁adjacent": 20114,
+ "▁delivered": 20115,
+ "▁ше": 20116,
+ "зем": 20117,
+ "▁cot": 20118,
+ "visual": 20119,
+ "вает": 20120,
+ "▁Census": 20121,
+ "\\_": 20122,
+ "▁territory": 20123,
+ "чил": 20124,
+ "чные": 20125,
+ "flutter": 20126,
+ "DidLoad": 20127,
+ "Documents": 20128,
+ "▁dob": 20129,
+ "Bre": 20130,
+ "animate": 20131,
+ "▁biz": 20132,
+ "▁bata": 20133,
+ "▁SU": 20134,
+ "eso": 20135,
+ "▁priority": 20136,
+ "ván": 20137,
+ "iras": 20138,
+ "▁charged": 20139,
+ "▁Micro": 20140,
+ "atoire": 20141,
+ "чер": 20142,
+ "abad": 20143,
+ "uru": 20144,
+ "▁vš": 20145,
+ "dire": 20146,
+ "▁Twitter": 20147,
+ "▁мето": 20148,
+ ")..": 20149,
+ "▁Цент": 20150,
+ "▁entwick": 20151,
+ "▁Mind": 20152,
+ "▁функ": 20153,
+ "Future": 20154,
+ "lst": 20155,
+ "łoż": 20156,
+ "fli": 20157,
+ "tensor": 20158,
+ "▁topology": 20159,
+ "▁arte": 20160,
+ "ERT": 20161,
+ "▁variance": 20162,
+ "Images": 20163,
+ "▁(@": 20164,
+ "ArrayList": 20165,
+ "OC": 20166,
+ "▁Демо": 20167,
+ "aucoup": 20168,
+ "▁denotes": 20169,
+ "imon": 20170,
+ "њи": 20171,
+ "▁Przyp": 20172,
+ "▁Zag": 20173,
+ "▁дире": 20174,
+ "▁Similarly": 20175,
+ "бро": 20176,
+ "▁militaire": 20177,
+ "▁тому": 20178,
+ "▁Johnny": 20179,
+ "▁Мексику": 20180,
+ "ћа": 20181,
+ "Supp": 20182,
+ "▁junior": 20183,
+ "oltre": 20184,
+ "▁Моск": 20185,
+ "▁admitted": 20186,
+ "▁religios": 20187,
+ "зяй": 20188,
+ "его": 20189,
+ "▁tears": 20190,
+ "ingo": 20191,
+ "odu": 20192,
+ "iveness": 20193,
+ "▁logo": 20194,
+ "▁último": 20195,
+ "▁aliment": 20196,
+ "▁UITableView": 20197,
+ ")!": 20198,
+ "▁nj": 20199,
+ "lette": 20200,
+ "▁resident": 20201,
+ "▁termine": 20202,
+ "▁уже": 20203,
+ "▁Сте": 20204,
+ "office": 20205,
+ "▁carte": 20206,
+ "▁livre": 20207,
+ "▁Москов": 20208,
+ "▁elections": 20209,
+ "зиден": 20210,
+ "Trigger": 20211,
+ "▁Benjamin": 20212,
+ "addClass": 20213,
+ "ског": 20214,
+ "▁Observable": 20215,
+ "Cla": 20216,
+ "gemein": 20217,
+ "▁consent": 20218,
+ "ври": 20219,
+ "▁unfold": 20220,
+ "▁governor": 20221,
+ "нал": 20222,
+ "▁toda": 20223,
+ "Remote": 20224,
+ "arias": 20225,
+ "▁instal": 20226,
+ "fixed": 20227,
+ "▁decay": 20228,
+ "▁дерев": 20229,
+ "xyz": 20230,
+ "▁DATE": 20231,
+ "imar": 20232,
+ "ntil": 20233,
+ "▁startup": 20234,
+ "alion": 20235,
+ "▁kolej": 20236,
+ "cios": 20237,
+ "▁ranges": 20238,
+ "▁stupid": 20239,
+ "▁implementations": 20240,
+ "▁rm": 20241,
+ "ének": 20242,
+ "▁gcc": 20243,
+ "▁scène": 20244,
+ "Navigation": 20245,
+ "▁ ": 20246,
+ "▁кан": 20247,
+ "▁towns": 20248,
+ "Username": 20249,
+ "▁фе": 20250,
+ "▁leaders": 20251,
+ "oit": 20252,
+ "wär": 20253,
+ "▁dummy": 20254,
+ "▁assistant": 20255,
+ "{$\\": 20256,
+ "бір": 20257,
+ "▁roy": 20258,
+ "▁Layout": 20259,
+ "▁Jung": 20260,
+ "Lines": 20261,
+ "▁Holland": 20262,
+ "пор": 20263,
+ "▁Гри": 20264,
+ "▁Bened": 20265,
+ "▁Под": 20266,
+ "xls": 20267,
+ "▁Gol": 20268,
+ "▁Aleks": 20269,
+ "▁ejemplo": 20270,
+ "▁sezon": 20271,
+ "arding": 20272,
+ "footnote": 20273,
+ "▁Congrès": 20274,
+ "refer": 20275,
+ "ската": 20276,
+ "Iterator": 20277,
+ "▁ourselves": 20278,
+ "▁Mic": 20279,
+ "▁código": 20280,
+ "▁площа": 20281,
+ "▁\\$": 20282,
+ "▁Charlie": 20283,
+ "Nodes": 20284,
+ "▁puzz": 20285,
+ "▁Identifier": 20286,
+ "▁flutter": 20287,
+ "▁prü": 20288,
+ "▁ort": 20289,
+ "▁Cort": 20290,
+ "asticsearch": 20291,
+ "▁Свя": 20292,
+ "▁Bull": 20293,
+ "udem": 20294,
+ "▁apparent": 20295,
+ ":--": 20296,
+ "▁Хар": 20297,
+ "▁Lap": 20298,
+ "▁comport": 20299,
+ "matically": 20300,
+ "▁curios": 20301,
+ "▁может": 20302,
+ "▁Bh": 20303,
+ "apping": 20304,
+ "▁basketball": 20305,
+ "zetek": 20306,
+ "▁runt": 20307,
+ "▁Milan": 20308,
+ "fection": 20309,
+ "ría": 20310,
+ "▁Kin": 20311,
+ "▁slower": 20312,
+ "both": 20313,
+ "▁Instituto": 20314,
+ "▁Historical": 20315,
+ "▁również": 20316,
+ "matches": 20317,
+ "yci": 20318,
+ "▁espèce": 20319,
+ "▁Schweizer": 20320,
+ "NT": 20321,
+ "SF": 20322,
+ "acia": 20323,
+ "forge": 20324,
+ "Points": 20325,
+ "numbers": 20326,
+ "▁falling": 20327,
+ "▁inheritance": 20328,
+ "▁Erst": 20329,
+ "▁customers": 20330,
+ "▁actu": 20331,
+ "▁migration": 20332,
+ "\\'": 20333,
+ "Plan": 20334,
+ "Mr": 20335,
+ "othy": 20336,
+ "▁upgrad": 20337,
+ "бира": 20338,
+ "▁Offic": 20339,
+ "▁Wait": 20340,
+ "▁toler": 20341,
+ "ardon": 20342,
+ "▁slide": 20343,
+ ")_": 20344,
+ "▁став": 20345,
+ "▁nuclear": 20346,
+ "▁Bil": 20347,
+ "owner": 20348,
+ "▁Harris": 20349,
+ "Information": 20350,
+ "▁pó": 20351,
+ "▁включа": 20352,
+ "▁nuovo": 20353,
+ "▁Cav": 20354,
+ "▁Descri": 20355,
+ "▁ак": 20356,
+ "ództ": 20357,
+ "▁reactjs": 20358,
+ "▁Adams": 20359,
+ "▁Alternatively": 20360,
+ "струк": 20361,
+ ")`,": 20362,
+ "substring": 20363,
+ "▁massive": 20364,
+ "▁heavily": 20365,
+ "▁сезо": 20366,
+ "▁Ana": 20367,
+ "▁vale": 20368,
+ "Pad": 20369,
+ "▁Either": 20370,
+ "▁rs": 20371,
+ "anche": 20372,
+ "▁uploaded": 20373,
+ "▁(/": 20374,
+ "▁спор": 20375,
+ "▁reduction": 20376,
+ "▁Tokyo": 20377,
+ "gren": 20378,
+ "▁migli": 20379,
+ "▁iterator": 20380,
+ "stav": 20381,
+ "▁supporting": 20382,
+ "▁österreich": 20383,
+ "▁NSLog": 20384,
+ "istiques": 20385,
+ "rimin": 20386,
+ "MODE": 20387,
+ "}}}\\": 20388,
+ "▁explos": 20389,
+ "оте": 20390,
+ "▁(„": 20391,
+ "Sal": 20392,
+ "▁simplest": 20393,
+ "▁già": 20394,
+ "▁тан": 20395,
+ "▁cyl": 20396,
+ "bir": 20397,
+ "▁measurements": 20398,
+ "Created": 20399,
+ "erek": 20400,
+ "lookup": 20401,
+ "wirtschaft": 20402,
+ "▁Воло": 20403,
+ "timer": 20404,
+ "derr": 20405,
+ "▁стала": 20406,
+ "▁scenes": 20407,
+ "▁persu": 20408,
+ "liest": 20409,
+ "▁schedule": 20410,
+ "tal": 20411,
+ "лено": 20412,
+ "▁painting": 20413,
+ "▁improvement": 20414,
+ "software": 20415,
+ "▁governo": 20416,
+ "▁Hir": 20417,
+ "Execution": 20418,
+ "▁Okay": 20419,
+ "Prop": 20420,
+ "loster": 20421,
+ "ніципалі": 20422,
+ "▁peuvent": 20423,
+ "olu": 20424,
+ "▁Фа": 20425,
+ "rollo": 20426,
+ "▁коло": 20427,
+ "▁carrière": 20428,
+ "▁toggle": 20429,
+ "▁($\\": 20430,
+ "▁aggregate": 20431,
+ "▁Бі": 20432,
+ "textarea": 20433,
+ "Ok": 20434,
+ "itto": 20435,
+ "▁stim": 20436,
+ "▁recursion": 20437,
+ "▁Federation": 20438,
+ ")_{": 20439,
+ "ategor": 20440,
+ "▁distribu": 20441,
+ "Cloud": 20442,
+ "▁madre": 20443,
+ "▁iv": 20444,
+ "▁Lieutenant": 20445,
+ "▁substant": 20446,
+ "▁leaf": 20447,
+ "▁Kontrola": 20448,
+ "VA": 20449,
+ "▁tomb": 20450,
+ "эн": 20451,
+ "atoes": 20452,
+ "▁godine": 20453,
+ "▁#>": 20454,
+ "Cert": 20455,
+ "▁empresa": 20456,
+ "Props": 20457,
+ "▁planned": 20458,
+ "▁randomly": 20459,
+ "jähr": 20460,
+ "elem": 20461,
+ "▁Operation": 20462,
+ "*`": 20463,
+ "protocol": 20464,
+ "()));": 20465,
+ "wel": 20466,
+ "▁praw": 20467,
+ "▁сим": 20468,
+ "▁wob": 20469,
+ "▁hace": 20470,
+ "▁nearest": 20471,
+ "disable": 20472,
+ "▁Commun": 20473,
+ "▁revel": 20474,
+ "Free": 20475,
+ "▁brackets": 20476,
+ "IOException": 20477,
+ "▁alto": 20478,
+ "▁marry": 20479,
+ "▁auc": 20480,
+ "),\\": 20481,
+ "▁typo": 20482,
+ "edad": 20483,
+ "ará": 20484,
+ "icator": 20485,
+ "tatywna": 20486,
+ "▁buff": 20487,
+ "orders": 20488,
+ "▁asynchronous": 20489,
+ "▁econ": 20490,
+ "▁feu": 20491,
+ "▁Iron": 20492,
+ "▁rising": 20493,
+ "Radius": 20494,
+ "clk": 20495,
+ "▁zweiten": 20496,
+ "`'": 20497,
+ "▁uniqu": 20498,
+ "▁FM": 20499,
+ "▁Bran": 20500,
+ "▁flu": 20501,
+ "▁sensitive": 20502,
+ "urre": 20503,
+ "▁Iter": 20504,
+ "▁Sein": 20505,
+ "▁diferentes": 20506,
+ "▁него": 20507,
+ "chia": 20508,
+ "▁Anleitung": 20509,
+ "aturday": 20510,
+ "▁shorter": 20511,
+ "▁translated": 20512,
+ "▁Rés": 20513,
+ "▁rode": 20514,
+ "drag": 20515,
+ "▁lange": 20516,
+ "Bi": 20517,
+ "üb": 20518,
+ "leur": 20519,
+ "▁ordering": 20520,
+ "alous": 20521,
+ "▁Кор": 20522,
+ "archar": 20523,
+ "destroy": 20524,
+ "ervation": 20525,
+ "]],": 20526,
+ "AccessorImpl": 20527,
+ "▁autorytatywna": 20528,
+ "Sequence": 20529,
+ "▁proyect": 20530,
+ "▁bran": 20531,
+ "▁(+": 20532,
+ "▁Kab": 20533,
+ "▁zem": 20534,
+ "▁Calcul": 20535,
+ "▁seul": 20536,
+ "▁Niger": 20537,
+ "▁chiam": 20538,
+ "throw": 20539,
+ "▁Planet": 20540,
+ "bildung": 20541,
+ "▁zones": 20542,
+ "transition": 20543,
+ "лений": 20544,
+ "▁mapped": 20545,
+ "onaut": 20546,
+ "Pair": 20547,
+ "ilian": 20548,
+ "▁Morgan": 20549,
+ "▁unto": 20550,
+ "jou": 20551,
+ "▁hid": 20552,
+ "▁Meta": 20553,
+ "▁elles": 20554,
+ "Lou": 20555,
+ "rama": 20556,
+ "geordnet": 20557,
+ "▁scarcely": 20558,
+ "▁mint": 20559,
+ "Focus": 20560,
+ "▁Alter": 20561,
+ "▁dio": 20562,
+ "▁ampl": 20563,
+ "ièrement": 20564,
+ "▁исследова": 20565,
+ "LED": 20566,
+ "algorithm": 20567,
+ "▁сайті": 20568,
+ "▁\"\")": 20569,
+ "History": 20570,
+ "pk": 20571,
+ "▁Whit": 20572,
+ "▁систем": 20573,
+ "▁Kirchen": 20574,
+ "rà": 20575,
+ "APP": 20576,
+ "▁<%": 20577,
+ "antine": 20578,
+ "▁Disk": 20579,
+ "conv": 20580,
+ "welt": 20581,
+ "▁Fut": 20582,
+ "▁Nom": 20583,
+ "ordo": 20584,
+ "ellij": 20585,
+ "▁receives": 20586,
+ "cow": 20587,
+ "ytu": 20588,
+ "▁obras": 20589,
+ "▁purchase": 20590,
+ "▁earned": 20591,
+ "▁accessed": 20592,
+ "axi": 20593,
+ "▁Mans": 20594,
+ "ivan": 20595,
+ "▁tuvo": 20596,
+ "▁Trace": 20597,
+ "rimonio": 20598,
+ "▁desenvol": 20599,
+ "érique": 20600,
+ "▁resulted": 20601,
+ "▁computing": 20602,
+ "▁inspired": 20603,
+ "▁Prize": 20604,
+ "*\"": 20605,
+ "Comput": 20606,
+ "▁extensive": 20607,
+ "èg": 20608,
+ "▁Portály": 20609,
+ "▁castle": 20610,
+ "▁*.": 20611,
+ "▁photos": 20612,
+ "▁voet": 20613,
+ "ONG": 20614,
+ "▁Alle": 20615,
+ "▁threaten": 20616,
+ "stüt": 20617,
+ "▁albums": 20618,
+ "▁dense": 20619,
+ "flat": 20620,
+ "continu": 20621,
+ "Subject": 20622,
+ "▁readonly": 20623,
+ "Opt": 20624,
+ "писко": 20625,
+ "▁Aber": 20626,
+ "▁Position": 20627,
+ "▁Today": 20628,
+ "▁mini": 20629,
+ "▁Bef": 20630,
+ "listen": 20631,
+ "ственного": 20632,
+ "SUB": 20633,
+ "ossa": 20634,
+ "▁Pope": 20635,
+ "▁Jimmy": 20636,
+ "▁Дру": 20637,
+ "ungsseite": 20638,
+ "▁tren": 20639,
+ "optim": 20640,
+ "itsch": 20641,
+ "▁samt": 20642,
+ "▁испол": 20643,
+ "&=": 20644,
+ "▁Przypisy": 20645,
+ "▁продол": 20646,
+ "Cr": 20647,
+ "ermann": 20648,
+ "▁матери": 20649,
+ "▁Hugo": 20650,
+ "▁Deze": 20651,
+ "TRUE": 20652,
+ "▁defeat": 20653,
+ "▁watched": 20654,
+ "▁Gent": 20655,
+ "AUT": 20656,
+ "orous": 20657,
+ "▁опреде": 20658,
+ "orientation": 20659,
+ "▁distinguished": 20660,
+ "▁mesmo": 20661,
+ "▁sli": 20662,
+ "мена": 20663,
+ "mittel": 20664,
+ "gericht": 20665,
+ "eton": 20666,
+ "->{": 20667,
+ "▁wont": 20668,
+ "▁weg": 20669,
+ "▁classific": 20670,
+ "ilus": 20671,
+ "▁MD": 20672,
+ "tasks": 20673,
+ "▁chim": 20674,
+ "await": 20675,
+ "▁gang": 20676,
+ "▁wię": 20677,
+ "through": 20678,
+ "▁Russell": 20679,
+ "▁guessing": 20680,
+ "▁акт": 20681,
+ "блі": 20682,
+ "categories": 20683,
+ "сут": 20684,
+ "▁Fen": 20685,
+ "▁муж": 20686,
+ "▁newer": 20687,
+ "▁Async": 20688,
+ "▁terme": 20689,
+ ">/": 20690,
+ "пара": 20691,
+ "▁Trust": 20692,
+ "▁Opt": 20693,
+ "▁dah": 20694,
+ "▁wonderful": 20695,
+ "adratkil": 20696,
+ "▁Гра": 20697,
+ "mapping": 20698,
+ "▁discovery": 20699,
+ "▁BE": 20700,
+ "Enable": 20701,
+ "▁Friend": 20702,
+ "сня": 20703,
+ "▁controlled": 20704,
+ "чної": 20705,
+ "▁contributions": 20706,
+ "jší": 20707,
+ "▁Lev": 20708,
+ "▁francés": 20709,
+ "▁mic": 20710,
+ "zik": 20711,
+ "▁alem": 20712,
+ "cancel": 20713,
+ "!'": 20714,
+ "▁grat": 20715,
+ "▁Begriffsklär": 20716,
+ "Camera": 20717,
+ "ificación": 20718,
+ "ród": 20719,
+ "▁Arnold": 20720,
+ "▁bezeichneter": 20721,
+ "▁fought": 20722,
+ "▁deput": 20723,
+ "▁Drop": 20724,
+ "tax": 20725,
+ "dg": 20726,
+ "▁Hop": 20727,
+ "GN": 20728,
+ "▁Kirch": 20729,
+ "▁Бар": 20730,
+ "Invoke": 20731,
+ "▁erhalten": 20732,
+ "▁veel": 20733,
+ "▁wordpress": 20734,
+ "▁INNER": 20735,
+ "transaction": 20736,
+ "▁déjà": 20737,
+ "Fact": 20738,
+ "▁надмор": 20739,
+ "▁angularjs": 20740,
+ "▁át": 20741,
+ "▁alap": 20742,
+ "▁Price": 20743,
+ "▁effet": 20744,
+ "▁sphere": 20745,
+ "ClassLoader": 20746,
+ "▁rugby": 20747,
+ "▁kingdom": 20748,
+ "▁Mut": 20749,
+ "▁кино": 20750,
+ "▁reward": 20751,
+ "cit": 20752,
+ "▁presente": 20753,
+ "Sto": 20754,
+ "Character": 20755,
+ "logs": 20756,
+ "▁centrale": 20757,
+ "▁mouv": 20758,
+ "▁okay": 20759,
+ "▁aplic": 20760,
+ "More": 20761,
+ "ények": 20762,
+ "▁Köln": 20763,
+ "nett": 20764,
+ "▁истории": 20765,
+ "▁describing": 20766,
+ "▁soldier": 20767,
+ "▁Need": 20768,
+ "Light": 20769,
+ "▁\"\\<": 20770,
+ "▁hav": 20771,
+ "ermo": 20772,
+ "▁inferior": 20773,
+ "lea": 20774,
+ "▁gg": 20775,
+ "▁конце": 20776,
+ "fragment": 20777,
+ "sb": 20778,
+ "Country": 20779,
+ "▁vě": 20780,
+ "▁Beng": 20781,
+ "▁Это": 20782,
+ "▁водо": 20783,
+ "мар": 20784,
+ "STRING": 20785,
+ "▁új": 20786,
+ "multiple": 20787,
+ "statement": 20788,
+ "▁involves": 20789,
+ "▁tecn": 20790,
+ "Student": 20791,
+ "gré": 20792,
+ "▁lean": 20793,
+ "▁bringing": 20794,
+ "▁Medical": 20795,
+ "▁програм": 20796,
+ "▁Vog": 20797,
+ "▁жов": 20798,
+ "▁Spirit": 20799,
+ "nth": 20800,
+ "▁standards": 20801,
+ "▁Profile": 20802,
+ "▁ez": 20803,
+ "▁территории": 20804,
+ "▁stem": 20805,
+ "uil": 20806,
+ "▁Og": 20807,
+ "Btn": 20808,
+ "nal": 20809,
+ "▁nearby": 20810,
+ "▁producing": 20811,
+ "criv": 20812,
+ "▁assumptions": 20813,
+ "▁Spark": 20814,
+ "▁Lot": 20815,
+ "itudes": 20816,
+ "afka": 20817,
+ "five": 20818,
+ "atio": 20819,
+ "▁distinguish": 20820,
+ "rock": 20821,
+ "église": 20822,
+ "▁rappres": 20823,
+ ">\\<": 20824,
+ "лій": 20825,
+ "▁мини": 20826,
+ "▁intitulé": 20827,
+ "}}(\\": 20828,
+ "▁Rout": 20829,
+ "▁Border": 20830,
+ "▁overrid": 20831,
+ "HOST": 20832,
+ "ritten": 20833,
+ "say": 20834,
+ "▁Чи": 20835,
+ "ichtung": 20836,
+ "▁straightforward": 20837,
+ "obb": 20838,
+ "▁Terra": 20839,
+ "▁[:": 20840,
+ "Ben": 20841,
+ "▁composite": 20842,
+ ")+\\": 20843,
+ "▁crown": 20844,
+ "direction": 20845,
+ "▁несколько": 20846,
+ "▁avail": 20847,
+ "▁purchased": 20848,
+ "hook": 20849,
+ "eties": 20850,
+ "▁fase": 20851,
+ "▁Rum": 20852,
+ "▁genom": 20853,
+ "▁dét": 20854,
+ "ową": 20855,
+ "mpeg": 20856,
+ "▁Ін": 20857,
+ "desktop": 20858,
+ "▁injection": 20859,
+ "agle": 20860,
+ "▁Edd": 20861,
+ "_{(": 20862,
+ "▁Hem": 20863,
+ "utos": 20864,
+ "proj": 20865,
+ "▁superficie": 20866,
+ "Plot": 20867,
+ "▁Docker": 20868,
+ "ätz": 20869,
+ "kreich": 20870,
+ "▁unclear": 20871,
+ "▁Unity": 20872,
+ "▁streams": 20873,
+ "вид": 20874,
+ "▁simplified": 20875,
+ "Fill": 20876,
+ "▁sant": 20877,
+ "▁Kommun": 20878,
+ "▁duc": 20879,
+ "▁две": 20880,
+ "▁obs": 20881,
+ "žit": 20882,
+ "▁Janeiro": 20883,
+ "бя": 20884,
+ "▁presso": 20885,
+ "▁Ministry": 20886,
+ "▁burst": 20887,
+ "▁reaching": 20888,
+ "liter": 20889,
+ "▁responses": 20890,
+ "▁Eug": 20891,
+ "▁sod": 20892,
+ "▁Cord": 20893,
+ "▁Perm": 20894,
+ "parts": 20895,
+ "цима": 20896,
+ "variables": 20897,
+ "▁forgotten": 20898,
+ "Fern": 20899,
+ "ostęp": 20900,
+ "vl": 20901,
+ "▁См": 20902,
+ "kim": 20903,
+ "ając": 20904,
+ "наль": 20905,
+ "гле": 20906,
+ "helper": 20907,
+ "dup": 20908,
+ "euw": 20909,
+ "fra": 20910,
+ "ellite": 20911,
+ "anya": 20912,
+ "▁reign": 20913,
+ "gesamt": 20914,
+ "седа": 20915,
+ "▁Ryan": 20916,
+ "▁formatted": 20917,
+ "▁Borg": 20918,
+ "walk": 20919,
+ "▁ал": 20920,
+ "agnostics": 20921,
+ "▁Cape": 20922,
+ "▁Franco": 20923,
+ "▁fug": 20924,
+ ":)": 20925,
+ "юз": 20926,
+ "Fetch": 20927,
+ "▁roughly": 20928,
+ "▁Mis": 20929,
+ "uetooth": 20930,
+ "▁Venezuela": 20931,
+ "▁astronom": 20932,
+ "\")`": 20933,
+ "ombres": 20934,
+ "▁которой": 20935,
+ "óp": 20936,
+ "owed": 20937,
+ "HR": 20938,
+ "▁Camer": 20939,
+ "кие": 20940,
+ "parison": 20941,
+ "▁Bij": 20942,
+ "templates": 20943,
+ "environment": 20944,
+ "ização": 20945,
+ "▁ér": 20946,
+ "▁plenty": 20947,
+ "▁TypeError": 20948,
+ "▁forty": 20949,
+ "коном": 20950,
+ "▁Sed": 20951,
+ "▁thats": 20952,
+ "▁gravity": 20953,
+ "▁spiritual": 20954,
+ "▁duplicates": 20955,
+ "▁encryption": 20956,
+ "▁reven": 20957,
+ "getInstance": 20958,
+ "ällor": 20959,
+ "disk": 20960,
+ "▁thro": 20961,
+ "▁Nak": 20962,
+ "▁poł": 20963,
+ "▁heraus": 20964,
+ "invalid": 20965,
+ "sBy": 20966,
+ "Boot": 20967,
+ "▁bucket": 20968,
+ "▁Parse": 20969,
+ "hex": 20970,
+ "Conne": 20971,
+ "▁Computer": 20972,
+ "zyk": 20973,
+ "▁induced": 20974,
+ "▁Bruno": 20975,
+ "▁addressed": 20976,
+ "mania": 20977,
+ "▁inclus": 20978,
+ "ounced": 20979,
+ "scriptsize": 20980,
+ "▁Epis": 20981,
+ "▁vocal": 20982,
+ "▁Jonathan": 20983,
+ "ум": 20984,
+ "staden": 20985,
+ "▁Children": 20986,
+ "пей": 20987,
+ "Italia": 20988,
+ "reibung": 20989,
+ "▁nost": 20990,
+ "▁ещё": 20991,
+ "▁Werke": 20992,
+ "▁actress": 20993,
+ "▁Minnesota": 20994,
+ "rike": 20995,
+ "▁tek": 20996,
+ "▁primeira": 20997,
+ "▁frat": 20998,
+ "▁Configuration": 20999,
+ "▁bid": 21000,
+ "trigger": 21001,
+ "Contents": 21002,
+ "▁constantly": 21003,
+ "!!!": 21004,
+ "▁dread": 21005,
+ "▁hundreds": 21006,
+ "istische": 21007,
+ "▁cardinal": 21008,
+ "TABLE": 21009,
+ "▁estos": 21010,
+ "assoc": 21011,
+ "gray": 21012,
+ "▁Schloss": 21013,
+ "▁sche": 21014,
+ "cong": 21015,
+ "▁koji": 21016,
+ "ètes": 21017,
+ "▁Era": 21018,
+ "omi": 21019,
+ "▁SR": 21020,
+ "▁wrapped": 21021,
+ "▁trunc": 21022,
+ "▁ah": 21023,
+ "egos": 21024,
+ "oki": 21025,
+ "mouth": 21026,
+ "logging": 21027,
+ "▁fasc": 21028,
+ "▁Sample": 21029,
+ "▁conte": 21030,
+ "▁villa": 21031,
+ "comments": 21032,
+ "▁batal": 21033,
+ "▁García": 21034,
+ "▁Norte": 21035,
+ "▁wechsel": 21036,
+ "▁Museo": 21037,
+ "▁enfants": 21038,
+ "▁whisper": 21039,
+ "nake": 21040,
+ "▁jednak": 21041,
+ "lês": 21042,
+ "enders": 21043,
+ "▁äl": 21044,
+ "▁VB": 21045,
+ "▁cookies": 21046,
+ "zeti": 21047,
+ "atum": 21048,
+ "▁dedu": 21049,
+ "▁arranged": 21050,
+ "laz": 21051,
+ "▁cuenta": 21052,
+ "yml": 21053,
+ "▁flav": 21054,
+ "MR": 21055,
+ "emet": 21056,
+ "біль": 21057,
+ "cmp": 21058,
+ "ituto": 21059,
+ "zett": 21060,
+ "▁envi": 21061,
+ "▁kot": 21062,
+ "$:": 21063,
+ "upper": 21064,
+ "▁Alberto": 21065,
+ "kb": 21066,
+ "Anal": 21067,
+ "ört": 21068,
+ "▁[-": 21069,
+ "▁führte": 21070,
+ "iah": 21071,
+ "▁Tun": 21072,
+ "▁искус": 21073,
+ "uwe": 21074,
+ "ispecies": 21075,
+ "Pub": 21076,
+ "Sync": 21077,
+ "▁Colombia": 21078,
+ "akers": 21079,
+ "▁Imperial": 21080,
+ "oving": 21081,
+ "▁intelligence": 21082,
+ "▁equipment": 21083,
+ "ein": 21084,
+ "dagger": 21085,
+ "▁Edge": 21086,
+ "▁Республи": 21087,
+ "adratkilometer": 21088,
+ "▁Anto": 21089,
+ "▁charges": 21090,
+ "▁Ocean": 21091,
+ "▁simplify": 21092,
+ "▁miesz": 21093,
+ "running": 21094,
+ "▁Lac": 21095,
+ "genommen": 21096,
+ "▁representative": 21097,
+ "=.": 21098,
+ "▁Pred": 21099,
+ "▁spite": 21100,
+ "ciale": 21101,
+ "▁nave": 21102,
+ "▁extens": 21103,
+ "▁neutral": 21104,
+ "▁которая": 21105,
+ ".": 21106,
+ "▁CS": 21107,
+ "uky": 21108,
+ "▁whilst": 21109,
+ "▁lingu": 21110,
+ "extract": 21111,
+ "zeichnung": 21112,
+ "▁Feld": 21113,
+ "▁valuable": 21114,
+ "urable": 21115,
+ "▁Jen": 21116,
+ "▁struggle": 21117,
+ "▁committee": 21118,
+ "▁Wohn": 21119,
+ "▁sqlite": 21120,
+ "▁Temp": 21121,
+ "▁COUNT": 21122,
+ "consin": 21123,
+ "міні": 21124,
+ "usage": 21125,
+ "▁quest": 21126,
+ "дян": 21127,
+ "eared": 21128,
+ "▁Schne": 21129,
+ "▁dod": 21130,
+ "▁recht": 21131,
+ "▁kao": 21132,
+ "Capt": 21133,
+ "labels": 21134,
+ "▁ellos": 21135,
+ "▁industri": 21136,
+ "▁Colorado": 21137,
+ "▁contrary": 21138,
+ "▁Dum": 21139,
+ "Bel": 21140,
+ "▁Vent": 21141,
+ "▁authorities": 21142,
+ "YES": 21143,
+ "ensed": 21144,
+ "umbnail": 21145,
+ "izzazione": 21146,
+ "kou": 21147,
+ "rica": 21148,
+ "▁sect": 21149,
+ "tests": 21150,
+ "▁Klein": 21151,
+ "▁legs": 21152,
+ "▁Pietro": 21153,
+ "fu": 21154,
+ "thy": 21155,
+ "▁bast": 21156,
+ "▁tedes": 21157,
+ "ettes": 21158,
+ "▁repet": 21159,
+ "acre": 21160,
+ "retto": 21161,
+ "▁remainder": 21162,
+ "▁Geg": 21163,
+ "▁Гор": 21164,
+ "▁Rechts": 21165,
+ "▁filtering": 21166,
+ "ouss": 21167,
+ "▁deployed": 21168,
+ "▁prüfe": 21169,
+ "▁bitmap": 21170,
+ "▁sovi": 21171,
+ "▁<%=": 21172,
+ "▁entferne": 21173,
+ "kill": 21174,
+ "tabs": 21175,
+ "Expr": 21176,
+ "кому": 21177,
+ "▁Republican": 21178,
+ "▁Size": 21179,
+ "▁poll": 21180,
+ "▁rien": 21181,
+ "▁клуб": 21182,
+ "énd": 21183,
+ "▁Bio": 21184,
+ "▁perl": 21185,
+ "▁Andreas": 21186,
+ "вин": 21187,
+ "▁distant": 21188,
+ "▁Finn": 21189,
+ "▁Mitch": 21190,
+ "▁%{": 21191,
+ "▁charm": 21192,
+ "▁Mul": 21193,
+ "perate": 21194,
+ "▁sciences": 21195,
+ "▁monot": 21196,
+ "▁debido": 21197,
+ "rizona": 21198,
+ "iec": 21199,
+ "▁alarm": 21200,
+ "▁promoted": 21201,
+ "▁letzten": 21202,
+ "atin": 21203,
+ "▁conclus": 21204,
+ "herr": 21205,
+ "▁éch": 21206,
+ "edish": 21207,
+ "gor": 21208,
+ "▁stycz": 21209,
+ "▁impress": 21210,
+ "ruits": 21211,
+ "ierungs": 21212,
+ "▁parsed": 21213,
+ "▁río": 21214,
+ "▁Pakistan": 21215,
+ "igner": 21216,
+ "▁watching": 21217,
+ "▁databases": 21218,
+ "eding": 21219,
+ "▁Specific": 21220,
+ "▁generale": 21221,
+ "lax": 21222,
+ "▁Looking": 21223,
+ "▁bond": 21224,
+ "▁vista": 21225,
+ "▁ec": 21226,
+ "▁grud": 21227,
+ "▁deleting": 21228,
+ "tac": 21229,
+ "▁jazz": 21230,
+ "jm": 21231,
+ "▁pół": 21232,
+ "Language": 21233,
+ "delegate": 21234,
+ "▁registry": 21235,
+ "▁Shared": 21236,
+ "строй": 21237,
+ "Music": 21238,
+ "▁vessel": 21239,
+ ".@": 21240,
+ "▁Wür": 21241,
+ "▁fed": 21242,
+ "▁eredet": 21243,
+ "▁Gö": 21244,
+ "upt": 21245,
+ "▁pleasant": 21246,
+ "▁tableView": 21247,
+ "▁counting": 21248,
+ "▁Kriegs": 21249,
+ "▁получил": 21250,
+ "▁],": 21251,
+ "виа": 21252,
+ "▁až": 21253,
+ "ToList": 21254,
+ "▁Advent": 21255,
+ "▁sketch": 21256,
+ "pn": 21257,
+ "▁sier": 21258,
+ "▁находится": 21259,
+ "iop": 21260,
+ "▁ly": 21261,
+ "▁Schl": 21262,
+ "Contract": 21263,
+ "associ": 21264,
+ "▁Pear": 21265,
+ "▁whe": 21266,
+ "▁Delete": 21267,
+ "▁elem": 21268,
+ "ätte": 21269,
+ "▁česk": 21270,
+ "▁MC": 21271,
+ "▁shout": 21272,
+ "akespe": 21273,
+ "▁defaults": 21274,
+ "penas": 21275,
+ "òria": 21276,
+ "▁hierarchy": 21277,
+ "ipt": 21278,
+ "▁Elis": 21279,
+ "likely": 21280,
+ "Rot": 21281,
+ "▁cow": 21282,
+ "▁strike": 21283,
+ "▁березня": 21284,
+ "▁ensemble": 21285,
+ "▁Pseud": 21286,
+ "Virtual": 21287,
+ "▁її": 21288,
+ "ROOT": 21289,
+ "сия": 21290,
+ "▁соб": 21291,
+ "▁invert": 21292,
+ "▁switching": 21293,
+ "htaccess": 21294,
+ "▁награ": 21295,
+ "▁Norman": 21296,
+ "▁inglês": 21297,
+ "![": 21298,
+ "ousel": 21299,
+ "DOCTYPE": 21300,
+ "▁suppress": 21301,
+ "▁accompanied": 21302,
+ "▁Bé": 21303,
+ "implies": 21304,
+ "nut": 21305,
+ "▁Syntax": 21306,
+ "inho": 21307,
+ "▁tam": 21308,
+ "▁focused": 21309,
+ "avano": 21310,
+ "▁Baden": 21311,
+ "had": 21312,
+ "▁({": 21313,
+ "Ty": 21314,
+ "▁рос": 21315,
+ "▁чолові": 21316,
+ "oge": 21317,
+ "jsp": 21318,
+ "Blue": 21319,
+ "▁suas": 21320,
+ "apers": 21321,
+ "Short": 21322,
+ "Renderer": 21323,
+ "▁sendo": 21324,
+ "▁Cec": 21325,
+ "▁`__": 21326,
+ "▁Municipal": 21327,
+ "dotnet": 21328,
+ "▁bev": 21329,
+ "▁DA": 21330,
+ "MenuItem": 21331,
+ "▁amp": 21332,
+ "▁uri": 21333,
+ "▁fier": 21334,
+ "слен": 21335,
+ "),(": 21336,
+ "cules": 21337,
+ "illas": 21338,
+ "LOCK": 21339,
+ "▁derive": 21340,
+ "uben": 21341,
+ "▁GT": 21342,
+ "▁Mack": 21343,
+ "▁scholar": 21344,
+ ")}}": 21345,
+ "зм": 21346,
+ ">::": 21347,
+ "шёл": 21348,
+ "▁principales": 21349,
+ "▁цар": 21350,
+ "▁tied": 21351,
+ "▁alta": 21352,
+ "▁Cit": 21353,
+ "lined": 21354,
+ "major": 21355,
+ "▁punk": 21356,
+ "▁cinco": 21357,
+ "ický": 21358,
+ "▁raggi": 21359,
+ "typen": 21360,
+ "тельство": 21361,
+ "▁conference": 21362,
+ "▁сіль": 21363,
+ "▁heut": 21364,
+ "iš": 21365,
+ "ета": 21366,
+ "velope": 21367,
+ "hbox": 21368,
+ "nown": 21369,
+ "▁zar": 21370,
+ "ktiv": 21371,
+ "ieß": 21372,
+ "▁стре": 21373,
+ "▁EventArgs": 21374,
+ "▁Ira": 21375,
+ "▁VBA": 21376,
+ "▁Santo": 21377,
+ "▁Fach": 21378,
+ "▁FF": 21379,
+ "▁Raymond": 21380,
+ "мец": 21381,
+ "implementation": 21382,
+ "▁brothers": 21383,
+ "▁côté": 21384,
+ "▁controllers": 21385,
+ "▁Cle": 21386,
+ "▁cable": 21387,
+ "▁confer": 21388,
+ "▁{-": 21389,
+ "▁czł": 21390,
+ "▁Filip": 21391,
+ "atorio": 21392,
+ "▁wicht": 21393,
+ "▁beaucoup": 21394,
+ "▁Lit": 21395,
+ "▁sessions": 21396,
+ "▁Success": 21397,
+ "▁routing": 21398,
+ "niu": 21399,
+ "▁Vice": 21400,
+ "▁krit": 21401,
+ "updated": 21402,
+ "▁Invalid": 21403,
+ "▁Mannschaft": 21404,
+ "▁aos": 21405,
+ "▁tudi": 21406,
+ "▁després": 21407,
+ "qua": 21408,
+ "Contains": 21409,
+ "Company": 21410,
+ "▁persona": 21411,
+ "adapter": 21412,
+ "сни": 21413,
+ "▁voj": 21414,
+ "▁escri": 21415,
+ "agt": 21416,
+ "▁ство": 21417,
+ "▁distrito": 21418,
+ "apan": 21419,
+ "▁aspects": 21420,
+ "▁zal": 21421,
+ ")^{\\": 21422,
+ "▁système": 21423,
+ "▁ана": 21424,
+ "iums": 21425,
+ "▁premiers": 21426,
+ "▁поэ": 21427,
+ "▁mère": 21428,
+ "▁Gun": 21429,
+ "aping": 21430,
+ "▁Rain": 21431,
+ "▁igual": 21432,
+ "▁processor": 21433,
+ "')`": 21434,
+ "bling": 21435,
+ "▁mism": 21436,
+ "bráz": 21437,
+ "▁closest": 21438,
+ "▁Reading": 21439,
+ "▁попу": 21440,
+ "cono": 21441,
+ "▁kult": 21442,
+ "▁!!": 21443,
+ "▁Expression": 21444,
+ "▁induction": 21445,
+ "ahren": 21446,
+ "▁cp": 21447,
+ "▁violence": 21448,
+ "ientí": 21449,
+ "cente": 21450,
+ "▁Dob": 21451,
+ "jack": 21452,
+ "song": 21453,
+ "bucket": 21454,
+ "▁deport": 21455,
+ "кими": 21456,
+ "lm": 21457,
+ "▁innoc": 21458,
+ "Changes": 21459,
+ "▁prohib": 21460,
+ "angol": 21461,
+ "iseconds": 21462,
+ "▁пор": 21463,
+ "▁hip": 21464,
+ "▁pů": 21465,
+ "endorf": 21466,
+ "▁scheduled": 21467,
+ "▁Flug": 21468,
+ "acyj": 21469,
+ "▁Films": 21470,
+ "athedral": 21471,
+ "Power": 21472,
+ "ardin": 21473,
+ "kap": 21474,
+ "icken": 21475,
+ "resize": 21476,
+ "eus": 21477,
+ "rr": 21478,
+ "лян": 21479,
+ "▁Hav": 21480,
+ "▁ora": 21481,
+ "FROM": 21482,
+ "лося": 21483,
+ "▁terug": 21484,
+ "▁Width": 21485,
+ "▁accepts": 21486,
+ "бен": 21487,
+ "▁mich": 21488,
+ "▁Czech": 21489,
+ "▁Bedeut": 21490,
+ "▁вид": 21491,
+ "ôme": 21492,
+ "▁Loop": 21493,
+ "spect": 21494,
+ "ük": 21495,
+ "eston": 21496,
+ "▁slot": 21497,
+ "▁została": 21498,
+ "▁Charlotte": 21499,
+ "▁составляет": 21500,
+ "▁Promise": 21501,
+ "▁epo": 21502,
+ "▁diction": 21503,
+ "▁Franklin": 21504,
+ "▁Riv": 21505,
+ "руг": 21506,
+ "cida": 21507,
+ "▁Explorer": 21508,
+ "cookie": 21509,
+ "▁formerly": 21510,
+ "▁municipality": 21511,
+ "▁Stefan": 21512,
+ "lists": 21513,
+ "COMP": 21514,
+ "Len": 21515,
+ "▁Staat": 21516,
+ "▁NBA": 21517,
+ "dens": 21518,
+ "▁oscill": 21519,
+ "!.": 21520,
+ "▁PO": 21521,
+ "ône": 21522,
+ "eses": 21523,
+ "▁националь": 21524,
+ "voor": 21525,
+ "▁копи": 21526,
+ "▁пози": 21527,
+ "ulu": 21528,
+ "Constraint": 21529,
+ "▁своей": 21530,
+ "▁algebraic": 21531,
+ "чня": 21532,
+ "Dict": 21533,
+ "▁appearing": 21534,
+ "▁prav": 21535,
+ "▁Universal": 21536,
+ "Browser": 21537,
+ "▁Singap": 21538,
+ "ennessee": 21539,
+ "]_": 21540,
+ "▁Sof": 21541,
+ "▁Cad": 21542,
+ "ounce": 21543,
+ "▁costs": 21544,
+ "]{\\": 21545,
+ "../../": 21546,
+ "ській": 21547,
+ "ühl": 21548,
+ "iety": 21549,
+ "пр": 21550,
+ "▁interpreted": 21551,
+ "ajn": 21552,
+ "colog": 21553,
+ "YS": 21554,
+ "mans": 21555,
+ "▁metrics": 21556,
+ "▁registr": 21557,
+ "istance": 21558,
+ "▁Поль": 21559,
+ "▁anonymous": 21560,
+ "▁institutions": 21561,
+ "▁zdob": 21562,
+ "prüng": 21563,
+ "▁арти": 21564,
+ "▁estat": 21565,
+ "acci": 21566,
+ "▁academic": 21567,
+ "▁chiesa": 21568,
+ "▁Gian": 21569,
+ "contrib": 21570,
+ "umed": 21571,
+ "▁Gir": 21572,
+ "▁baseball": 21573,
+ "numeric": 21574,
+ "Generator": 21575,
+ "GM": 21576,
+ "▁tiny": 21577,
+ "▁distinction": 21578,
+ "гер": 21579,
+ "▁rust": 21580,
+ "▁FIFA": 21581,
+ "▁Properties": 21582,
+ "^-": 21583,
+ "▁экс": 21584,
+ "▁Stanis": 21585,
+ "▁Ajax": 21586,
+ "escape": 21587,
+ "▁consp": 21588,
+ "▁Chen": 21589,
+ "▁Naval": 21590,
+ "Bit": 21591,
+ "▁bât": 21592,
+ "скими": 21593,
+ "drive": 21594,
+ "▁Round": 21595,
+ "photo": 21596,
+ "▁Level": 21597,
+ "▁geg": 21598,
+ "Tom": 21599,
+ "▁Mobile": 21600,
+ "▁Trop": 21601,
+ "Direction": 21602,
+ "isan": 21603,
+ ")^{-": 21604,
+ "▁Setting": 21605,
+ "▁Probably": 21606,
+ "лья": 21607,
+ "▁assets": 21608,
+ "▁atte": 21609,
+ "▁bulk": 21610,
+ "ést": 21611,
+ "▁wing": 21612,
+ "nius": 21613,
+ "▁wins": 21614,
+ "▁lud": 21615,
+ "ushing": 21616,
+ "▁deven": 21617,
+ "ограф": 21618,
+ "burger": 21619,
+ "▁embar": 21620,
+ "FilterChain": 21621,
+ "▁tum": 21622,
+ "▁öss": 21623,
+ "▁nommé": 21624,
+ "▁pir": 21625,
+ "▁luc": 21626,
+ "dbo": 21627,
+ "agues": 21628,
+ "▁alcan": 21629,
+ "ouwen": 21630,
+ "▁Stanley": 21631,
+ "циали": 21632,
+ "▁grown": 21633,
+ "▁preserved": 21634,
+ "▁solar": 21635,
+ "▁Население": 21636,
+ "▁performances": 21637,
+ "▁Cow": 21638,
+ "▁engineering": 21639,
+ "▁scaling": 21640,
+ "atomic": 21641,
+ "endance": 21642,
+ "▁ace": 21643,
+ "ängen": 21644,
+ "Anim": 21645,
+ "phase": 21646,
+ "zburg": 21647,
+ "Old": 21648,
+ "▁servant": 21649,
+ "▁gemeins": 21650,
+ "▁Observ": 21651,
+ "translate": 21652,
+ "▁covering": 21653,
+ "▁están": 21654,
+ "▁problema": 21655,
+ "▁установ": 21656,
+ "▁llev": 21657,
+ "▁czerw": 21658,
+ "éal": 21659,
+ "mez": 21660,
+ "REE": 21661,
+ "ERR": 21662,
+ "тури": 21663,
+ "segu": 21664,
+ "▁profit": 21665,
+ "▁multiplication": 21666,
+ "kommen": 21667,
+ "▁faut": 21668,
+ "▁candidates": 21669,
+ "▁Uri": 21670,
+ "▁Laura": 21671,
+ "▁sap": 21672,
+ "▁висини": 21673,
+ "▁Between": 21674,
+ "fade": 21675,
+ "▁reserved": 21676,
+ "▁involving": 21677,
+ "▁Mare": 21678,
+ "▁Container": 21679,
+ "▁назна": 21680,
+ "▁DEBUG": 21681,
+ "▁hurt": 21682,
+ "▁Polski": 21683,
+ "▁lux": 21684,
+ "CB": 21685,
+ "wach": 21686,
+ "▁период": 21687,
+ "▁Catherine": 21688,
+ "▁ganz": 21689,
+ "uchte": 21690,
+ "▁consumer": 21691,
+ "▁crossed": 21692,
+ "ordered": 21693,
+ "away": 21694,
+ "techn": 21695,
+ "▁subscri": 21696,
+ "▁shortcut": 21697,
+ "▁производ": 21698,
+ "▁simultaneously": 21699,
+ "▁rating": 21700,
+ "▁Kings": 21701,
+ "▁relationships": 21702,
+ "▁Sex": 21703,
+ "▁Tool": 21704,
+ "agh": 21705,
+ "acters": 21706,
+ "logger": 21707,
+ "homme": 21708,
+ "engers": 21709,
+ "▁Ri": 21710,
+ "earance": 21711,
+ "▁appearances": 21712,
+ "Real": 21713,
+ "▁passe": 21714,
+ "iclopedia": 21715,
+ "чко": 21716,
+ "terre": 21717,
+ "▁Ontario": 21718,
+ "▁переда": 21719,
+ "footer": 21720,
+ "archivi": 21721,
+ "ifiz": 21722,
+ "▁Protest": 21723,
+ "▁LIN": 21724,
+ "unnable": 21725,
+ "▁centuries": 21726,
+ "▁Bayer": 21727,
+ "цію": 21728,
+ "овин": 21729,
+ "▁Andrea": 21730,
+ "selection": 21731,
+ "▁calm": 21732,
+ "▁modification": 21733,
+ "▁shortly": 21734,
+ "inaire": 21735,
+ "▁fusion": 21736,
+ "▁feelings": 21737,
+ "PK": 21738,
+ "▁Roberto": 21739,
+ "гне": 21740,
+ "Shared": 21741,
+ "▁mehrere": 21742,
+ "▁Niem": 21743,
+ "omp": 21744,
+ "Env": 21745,
+ "▁Article": 21746,
+ "▁Pok": 21747,
+ "▁VARCHAR": 21748,
+ "▁dil": 21749,
+ "▁afford": 21750,
+ "▁confront": 21751,
+ "owanie": 21752,
+ "▁ministre": 21753,
+ "adesh": 21754,
+ "▁Poly": 21755,
+ "▁Распо": 21756,
+ "▁Gruppe": 21757,
+ "▁Helen": 21758,
+ "▁cc": 21759,
+ "▁portrait": 21760,
+ "bew": 21761,
+ "▁beta": 21762,
+ "▁Wir": 21763,
+ "▁Audio": 21764,
+ "▁(\\<": 21765,
+ "riority": 21766,
+ "▁nit": 21767,
+ "▁представи": 21768,
+ "▁Vie": 21769,
+ "▁wür": 21770,
+ "▁Hold": 21771,
+ "▁Sad": 21772,
+ "▁Tochter": 21773,
+ "▁oltre": 21774,
+ "▁Activ": 21775,
+ "▁Jason": 21776,
+ "▁wieku": 21777,
+ "▁regards": 21778,
+ "▁taste": 21779,
+ "agnostic": 21780,
+ "лася": 21781,
+ "▁Self": 21782,
+ "▁apr": 21783,
+ "▁Deep": 21784,
+ "scop": 21785,
+ "Activ": 21786,
+ "▁typedef": 21787,
+ "ContentView": 21788,
+ "compiler": 21789,
+ "▁Roth": 21790,
+ "xc": 21791,
+ "зик": 21792,
+ "▁largo": 21793,
+ "▁Rena": 21794,
+ "heiten": 21795,
+ "▁platforms": 21796,
+ "ulla": 21797,
+ "▁glance": 21798,
+ "▁mascul": 21799,
+ "▁mex": 21800,
+ "▁Jorge": 21801,
+ "▁funcion": 21802,
+ "choose": 21803,
+ "▁reviews": 21804,
+ "▁Alban": 21805,
+ "▁Glo": 21806,
+ "▁Species": 21807,
+ "▁Fame": 21808,
+ "▁Roll": 21809,
+ "▁Puerto": 21810,
+ "▁\\)": 21811,
+ "ymnas": 21812,
+ "environ": 21813,
+ "▁iphone": 21814,
+ "▁Wrestling": 21815,
+ "ały": 21816,
+ "▁Indiana": 21817,
+ "Radio": 21818,
+ "VS": 21819,
+ "▁independence": 21820,
+ "тай": 21821,
+ "▁decode": 21822,
+ "White": 21823,
+ "▁journ": 21824,
+ "ículo": 21825,
+ "▁Barb": 21826,
+ "▁Evangel": 21827,
+ "▁Andy": 21828,
+ "▁Welcome": 21829,
+ "▁Device": 21830,
+ "gef": 21831,
+ "▁remembered": 21832,
+ "▁variations": 21833,
+ "▁Adolf": 21834,
+ "itaine": 21835,
+ "▁надморској": 21836,
+ "▁steam": 21837,
+ "▁concerns": 21838,
+ "▁`|": 21839,
+ "▁био": 21840,
+ "тельства": 21841,
+ "▁quattro": 21842,
+ "extend": 21843,
+ "▁trabajo": 21844,
+ "enberg": 21845,
+ "▁scenarios": 21846,
+ "ânt": 21847,
+ "▁kommt": 21848,
+ "▁domestic": 21849,
+ "▁Basketball": 21850,
+ "▁Cooper": 21851,
+ "sock": 21852,
+ "держа": 21853,
+ "={\\": 21854,
+ "▁inici": 21855,
+ "▁Phill": 21856,
+ "▁генерал": 21857,
+ "archiviato": 21858,
+ "ън": 21859,
+ "Rob": 21860,
+ "▁tong": 21861,
+ "▁characteristics": 21862,
+ "▁amaz": 21863,
+ "▁Mode": 21864,
+ "▁inaugur": 21865,
+ "wehr": 21866,
+ "rant": 21867,
+ "ionali": 21868,
+ "▁Mother": 21869,
+ "Ma": 21870,
+ "équ": 21871,
+ "▁Kelly": 21872,
+ "cile": 21873,
+ "▁besteht": 21874,
+ "▁estimates": 21875,
+ "ruguay": 21876,
+ "▁Ans": 21877,
+ "Mad": 21878,
+ "▁нав": 21879,
+ "▁données": 21880,
+ "▁tropical": 21881,
+ "▁Several": 21882,
+ "elter": 21883,
+ "▁Pho": 21884,
+ "kem": 21885,
+ "▁Customer": 21886,
+ "▁складі": 21887,
+ "▁courses": 21888,
+ "Platform": 21889,
+ "navbar": 21890,
+ "learning": 21891,
+ "▁Swedish": 21892,
+ "▁zast": 21893,
+ "▁Lig": 21894,
+ "management": 21895,
+ "▁lod": 21896,
+ "uffle": 21897,
+ "Texture": 21898,
+ "arga": 21899,
+ "átum": 21900,
+ "▁DDR": 21901,
+ "нії": 21902,
+ "▁Société": 21903,
+ "▁domains": 21904,
+ "▁permitted": 21905,
+ "▁externe": 21906,
+ "▁quelque": 21907,
+ "vt": 21908,
+ "yman": 21909,
+ "▁Ward": 21910,
+ "▁agli": 21911,
+ "▁andra": 21912,
+ "Snapshot": 21913,
+ "▁må": 21914,
+ "▁yeah": 21915,
+ "дена": 21916,
+ "ępu": 21917,
+ "askell": 21918,
+ "▁République": 21919,
+ "inject": 21920,
+ "▁';": 21921,
+ "änn": 21922,
+ "▁zelf": 21923,
+ "▁Entwicklung": 21924,
+ "ária": 21925,
+ "onomy": 21926,
+ "▁svil": 21927,
+ "iese": 21928,
+ "▁conser": 21929,
+ "▁nim": 21930,
+ "▁rész": 21931,
+ "▁Итали": 21932,
+ "▁partici": 21933,
+ "▁Lion": 21934,
+ "sr": 21935,
+ "always": 21936,
+ "▁Владимир": 21937,
+ "ческие": 21938,
+ "[,": 21939,
+ "▁Definition": 21940,
+ "nant": 21941,
+ "oem": 21942,
+ "Ids": 21943,
+ "▁вне": 21944,
+ "▁[...]": 21945,
+ "▁направ": 21946,
+ "▁GO": 21947,
+ "▁års": 21948,
+ "▁után": 21949,
+ "▁outros": 21950,
+ "▁región": 21951,
+ "▁Mong": 21952,
+ "▁filme": 21953,
+ "▁triple": 21954,
+ "▁spons": 21955,
+ "Develop": 21956,
+ "▁outcome": 21957,
+ "▁Bible": 21958,
+ "▁имени": 21959,
+ "Canvas": 21960,
+ "пута": 21961,
+ "curr": 21962,
+ "ások": 21963,
+ "){\\": 21964,
+ "ningar": 21965,
+ "`;": 21966,
+ "▁Flash": 21967,
+ ":#": 21968,
+ "must": 21969,
+ "cpu": 21970,
+ "▁formats": 21971,
+ "Har": 21972,
+ "▁episodio": 21973,
+ "▁Rosa": 21974,
+ "▁dès": 21975,
+ "emit": 21976,
+ "riteria": 21977,
+ "Annotation": 21978,
+ "Flag": 21979,
+ "gmail": 21980,
+ "▁Normal": 21981,
+ "ollary": 21982,
+ "▁foss": 21983,
+ "▁concurrent": 21984,
+ "▁crashes": 21985,
+ "▁виде": 21986,
+ "▁Minor": 21987,
+ "▁Sit": 21988,
+ "▁SN": 21989,
+ "▁scar": 21990,
+ "▁femin": 21991,
+ "▁specification": 21992,
+ "soap": 21993,
+ "▁operate": 21994,
+ "▁principalmente": 21995,
+ "▁aust": 21996,
+ "ibile": 21997,
+ "itime": 21998,
+ "лежа": 21999,
+ "iframe": 22000,
+ "▁concepts": 22001,
+ "▁tack": 22002,
+ "▁viss": 22003,
+ "▁carbon": 22004,
+ "tery": 22005,
+ "▁naming": 22006,
+ "▁Orts": 22007,
+ "idente": 22008,
+ "▁Capit": 22009,
+ "▁expr": 22010,
+ "▁насељу": 22011,
+ "▁Selected": 22012,
+ "▁hinter": 22013,
+ "▁iframe": 22014,
+ "▁zb": 22015,
+ "indexPath": 22016,
+ "coll": 22017,
+ "▁wrześ": 22018,
+ "▁acht": 22019,
+ "▁gradually": 22020,
+ "▁чу": 22021,
+ "зей": 22022,
+ "haft": 22023,
+ "▁tran": 22024,
+ "▁laquelle": 22025,
+ "ytics": 22026,
+ "IDE": 22027,
+ "▁pygame": 22028,
+ "▁Package": 22029,
+ "▁className": 22030,
+ "Bal": 22031,
+ "perl": 22032,
+ "тина": 22033,
+ "Occ": 22034,
+ "▁infrastr": 22035,
+ "▁Champions": 22036,
+ "▁classic": 22037,
+ "▁Raw": 22038,
+ "▁partially": 22039,
+ "▁Ted": 22040,
+ "▁stolet": 22041,
+ "rained": 22042,
+ "WHERE": 22043,
+ "▁vall": 22044,
+ "▁Julia": 22045,
+ "zat": 22046,
+ "▁surrounded": 22047,
+ "SEE": 22048,
+ "▁walking": 22049,
+ "Bad": 22050,
+ "FOR": 22051,
+ "contre": 22052,
+ "▁Palest": 22053,
+ "ático": 22054,
+ "▁engineer": 22055,
+ "▁partners": 22056,
+ "▁Jews": 22057,
+ "ilers": 22058,
+ "▁cerem": 22059,
+ "▁interactions": 22060,
+ "acu": 22061,
+ "sty": 22062,
+ "▁Princess": 22063,
+ "sharp": 22064,
+ "▁Singles": 22065,
+ "▁їх": 22066,
+ "chez": 22067,
+ "Receiver": 22068,
+ "▁patients": 22069,
+ "stringify": 22070,
+ "▁competed": 22071,
+ "bey": 22072,
+ "$;": 22073,
+ "▁Bd": 22074,
+ "hadoop": 22075,
+ "▁División": 22076,
+ "öld": 22077,
+ "▁restricted": 22078,
+ "▁commander": 22079,
+ "▁Highway": 22080,
+ "▁Česk": 22081,
+ "▁myth": 22082,
+ "чан": 22083,
+ "raham": 22084,
+ "▁enqu": 22085,
+ "▁pog": 22086,
+ "▁comuna": 22087,
+ "▁println": 22088,
+ "▁круп": 22089,
+ "▁depois": 22090,
+ "▁seats": 22091,
+ "▁neighb": 22092,
+ "циона": 22093,
+ "agine": 22094,
+ "▁clothes": 22095,
+ "▁Prior": 22096,
+ "Brain": 22097,
+ "FFFF": 22098,
+ "':'": 22099,
+ "features": 22100,
+ "▁filesystem": 22101,
+ "▁singles": 22102,
+ "▁Melbourne": 22103,
+ "▁destruction": 22104,
+ "▁Lyon": 22105,
+ "▁Insel": 22106,
+ "Nav": 22107,
+ "▁Replace": 22108,
+ "▁lé": 22109,
+ "Who": 22110,
+ "▁Estad": 22111,
+ "▁dimensional": 22112,
+ "▁öff": 22113,
+ "▁grands": 22114,
+ "джа": 22115,
+ "plane": 22116,
+ "ності": 22117,
+ "▁Origin": 22118,
+ "WI": 22119,
+ "änner": 22120,
+ "▁Cry": 22121,
+ "ITION": 22122,
+ "▁född": 22123,
+ "▁cultura": 22124,
+ "▁Rank": 22125,
+ "▁vuel": 22126,
+ "▁zag": 22127,
+ "▁Maxim": 22128,
+ "ону": 22129,
+ "()))": 22130,
+ "Raw": 22131,
+ "kirche": 22132,
+ "▁además": 22133,
+ "▁tie": 22134,
+ "▁Style": 22135,
+ "сков": 22136,
+ "istant": 22137,
+ "olph": 22138,
+ "▁Zür": 22139,
+ "▁Info": 22140,
+ "DOM": 22141,
+ "usc": 22142,
+ "nahm": 22143,
+ "▁Федера": 22144,
+ "▁Fot": 22145,
+ "▁specifying": 22146,
+ "▁titolo": 22147,
+ "▁Boys": 22148,
+ "iech": 22149,
+ "Place": 22150,
+ "▁Hoff": 22151,
+ "▁cached": 22152,
+ "валь": 22153,
+ "isher": 22154,
+ "rolling": 22155,
+ "opens": 22156,
+ "▁hr": 22157,
+ "------": 22158,
+ "▁maggior": 22159,
+ "▁transactions": 22160,
+ "▁criminal": 22161,
+ "▁retre": 22162,
+ "▁Campbell": 22163,
+ ")):": 22164,
+ "▁ned": 22165,
+ "Pager": 22166,
+ "▁Hero": 22167,
+ "(__": 22168,
+ "▁uncle": 22169,
+ "▁reaches": 22170,
+ "arto": 22171,
+ "▁hello": 22172,
+ "Preferences": 22173,
+ "▁затем": 22174,
+ "Named": 22175,
+ "▁readers": 22176,
+ "хі": 22177,
+ "kern": 22178,
+ "▁упо": 22179,
+ "кин": 22180,
+ "▁lav": 22181,
+ "▁nob": 22182,
+ "▁secre": 22183,
+ "▁ListView": 22184,
+ "вания": 22185,
+ "▁Mayor": 22186,
+ "borough": 22187,
+ "▁filosof": 22188,
+ "нення": 22189,
+ "фри": 22190,
+ "▁patr": 22191,
+ "FM": 22192,
+ "▁acid": 22193,
+ "▁Salvador": 22194,
+ "▁abb": 22195,
+ "▁Graham": 22196,
+ "policy": 22197,
+ "negative": 22198,
+ "ńskiego": 22199,
+ "▁Heimat": 22200,
+ "▁dazu": 22201,
+ "▁mely": 22202,
+ "▁ride": 22203,
+ "▁duties": 22204,
+ "overy": 22205,
+ "▁Proposition": 22206,
+ "▁Paolo": 22207,
+ "/'": 22208,
+ "▁Mau": 22209,
+ "imenti": 22210,
+ "Saint": 22211,
+ "father": 22212,
+ "▁equilib": 22213,
+ "phony": 22214,
+ "▁clas": 22215,
+ "▁отли": 22216,
+ "▁Buffered": 22217,
+ "rek": 22218,
+ "▁mitt": 22219,
+ "▁Hur": 22220,
+ "▁Harvard": 22221,
+ "▁demonstrate": 22222,
+ "uario": 22223,
+ "▁dolor": 22224,
+ "▁rejected": 22225,
+ "▁Müller": 22226,
+ "▁nac": 22227,
+ "▁Belle": 22228,
+ "▁gathered": 22229,
+ "nr": 22230,
+ "frika": 22231,
+ "öll": 22232,
+ "▁chemical": 22233,
+ "nig": 22234,
+ "▁calc": 22235,
+ "▁DEFAULT": 22236,
+ "▁philosophy": 22237,
+ "▁Laravel": 22238,
+ "▁alignment": 22239,
+ "EV": 22240,
+ "eor": 22241,
+ "▁dzie": 22242,
+ "▁mest": 22243,
+ "▁Io": 22244,
+ "CRE": 22245,
+ "зви": 22246,
+ "▁Medic": 22247,
+ "▁nä": 22248,
+ "▁zab": 22249,
+ "▁Slov": 22250,
+ "utlich": 22251,
+ "▁amplit": 22252,
+ "▁Frankreich": 22253,
+ "▁кіль": 22254,
+ "IND": 22255,
+ "execution": 22256,
+ "▁Karriere": 22257,
+ "dostęp": 22258,
+ "▁réal": 22259,
+ "engo": 22260,
+ "▁severe": 22261,
+ "зма": 22262,
+ "▁турни": 22263,
+ "▁Carter": 22264,
+ "▁Robinson": 22265,
+ "getElementsBy": 22266,
+ "▁prototype": 22267,
+ "▁japon": 22268,
+ "führung": 22269,
+ "▁consegu": 22270,
+ "▁studi": 22271,
+ "▁lire": 22272,
+ "▁schließ": 22273,
+ "▁Buff": 22274,
+ "▁redund": 22275,
+ "▁ern": 22276,
+ "▁myster": 22277,
+ "▁proprio": 22278,
+ "ateful": 22279,
+ "▁Parent": 22280,
+ "▁ladies": 22281,
+ "rack": 22282,
+ "тика": 22283,
+ "enburg": 22284,
+ "▁качестве": 22285,
+ "▁EF": 22286,
+ "▁stam": 22287,
+ "▁nueva": 22288,
+ "▁filtered": 22289,
+ "reten": 22290,
+ "▁Ian": 22291,
+ "▁Matthew": 22292,
+ "kih": 22293,
+ "▁ő": 22294,
+ "▁компози": 22295,
+ "▁forever": 22296,
+ "oires": 22297,
+ ":\\\\": 22298,
+ "▁études": 22299,
+ "▁soup": 22300,
+ "▁pleased": 22301,
+ ")}(": 22302,
+ "▁Stop": 22303,
+ "Setter": 22304,
+ "▁Help": 22305,
+ "▁bars": 22306,
+ "▁ERR": 22307,
+ "▁(?": 22308,
+ "▁poetry": 22309,
+ "▁Util": 22310,
+ "AK": 22311,
+ "▁fick": 22312,
+ "▁IM": 22313,
+ "▁proud": 22314,
+ "носи": 22315,
+ "▁muerte": 22316,
+ "▁Palmarès": 22317,
+ "▁Nas": 22318,
+ "щих": 22319,
+ "▁quer": 22320,
+ "▁apenas": 22321,
+ "]['": 22322,
+ "▁Konst": 22323,
+ "пон": 22324,
+ "▁Schiff": 22325,
+ "▁mp": 22326,
+ "▁благо": 22327,
+ "fram": 22328,
+ "▁household": 22329,
+ "▁tract": 22330,
+ "encoding": 22331,
+ "▁undert": 22332,
+ "▁Aug": 22333,
+ "ован": 22334,
+ "▁Arten": 22335,
+ "▁invoked": 22336,
+ "▁dynast": 22337,
+ "▁fleet": 22338,
+ "чество": 22339,
+ "▁Murray": 22340,
+ "▁gut": 22341,
+ "elihood": 22342,
+ "▁SSH": 22343,
+ "ответ": 22344,
+ "▁personally": 22345,
+ "прия": 22346,
+ "▁financi": 22347,
+ "▁Thompson": 22348,
+ "alu": 22349,
+ "identity": 22350,
+ "▁Grab": 22351,
+ "addle": 22352,
+ "Ét": 22353,
+ "▁Tob": 22354,
+ "▁verlor": 22355,
+ "▁Sainte": 22356,
+ "▁dop": 22357,
+ "▁вере": 22358,
+ "___": 22359,
+ "▁promotion": 22360,
+ "▁-=": 22361,
+ "▁отде": 22362,
+ "▁ambigu": 22363,
+ "ORDER": 22364,
+ "▁Communic": 22365,
+ "▁imply": 22366,
+ "oned": 22367,
+ "cluding": 22368,
+ "▁collision": 22369,
+ "▁fragments": 22370,
+ "scription": 22371,
+ "▁'{": 22372,
+ "лях": 22373,
+ "▁hans": 22374,
+ "ус": 22375,
+ "wire": 22376,
+ "namespace": 22377,
+ "▁sword": 22378,
+ "refresh": 22379,
+ "▁kwam": 22380,
+ "zs": 22381,
+ "commons": 22382,
+ "▁cosa": 22383,
+ "▁regime": 22384,
+ "grep": 22385,
+ "▁dioc": 22386,
+ "▁Contact": 22387,
+ "▁estas": 22388,
+ "▁Stewart": 22389,
+ "▁viele": 22390,
+ "това": 22391,
+ "▁Ran": 22392,
+ "annes": 22393,
+ "iday": 22394,
+ "▁snapshot": 22395,
+ "orrow": 22396,
+ "▁zač": 22397,
+ "▁участие": 22398,
+ "▁promised": 22399,
+ "Assembly": 22400,
+ "▁championship": 22401,
+ "▁Define": 22402,
+ "▁eren": 22403,
+ "▁ново": 22404,
+ "▁thinks": 22405,
+ "Age": 22406,
+ "▁gev": 22407,
+ "varchar": 22408,
+ "ività": 22409,
+ "compos": 22410,
+ "▁Mutter": 22411,
+ "CONT": 22412,
+ "armée": 22413,
+ "agnet": 22414,
+ "▁Brow": 22415,
+ ".—": 22416,
+ "▁Television": 22417,
+ "▁Для": 22418,
+ "▁vm": 22419,
+ "▁ordin": 22420,
+ "▁Михай": 22421,
+ "▁aproxim": 22422,
+ "')->": 22423,
+ "▁zoo": 22424,
+ "ippi": 22425,
+ "▁sino": 22426,
+ "▁Québec": 22427,
+ "rages": 22428,
+ "äck": 22429,
+ "eing": 22430,
+ "arlo": 22431,
+ "pios": 22432,
+ "▁Chan": 22433,
+ "▁elli": 22434,
+ "▁incons": 22435,
+ "gestellt": 22436,
+ "ppers": 22437,
+ "Jean": 22438,
+ "anstalt": 22439,
+ "▁Dance": 22440,
+ "▁toen": 22441,
+ "▁decis": 22442,
+ "▁Резу": 22443,
+ "▁officially": 22444,
+ "ätze": 22445,
+ "▁доро": 22446,
+ "▁enumer": 22447,
+ "▁troisième": 22448,
+ "typ": 22449,
+ "offs": 22450,
+ "боль": 22451,
+ "odn": 22452,
+ "▁Zar": 22453,
+ "▁друго": 22454,
+ "quia": 22455,
+ "▁Nicolas": 22456,
+ "пису": 22457,
+ "▁mob": 22458,
+ "paces": 22459,
+ "нього": 22460,
+ "Alg": 22461,
+ "éroï": 22462,
+ "Errors": 22463,
+ "▁гре": 22464,
+ "▁женщи": 22465,
+ "inch": 22466,
+ "▁Korean": 22467,
+ "▁Apost": 22468,
+ "▁Liver": 22469,
+ "▁elementary": 22470,
+ "▁DI": 22471,
+ "виси": 22472,
+ "▁soil": 22473,
+ "▁DLL": 22474,
+ "▁risp": 22475,
+ "▁Shakespe": 22476,
+ "▁Gaussian": 22477,
+ "▁Kurt": 22478,
+ "Vertex": 22479,
+ "ebol": 22480,
+ "organisation": 22481,
+ "ären": 22482,
+ "▁YES": 22483,
+ "CUR": 22484,
+ "▁началь": 22485,
+ "▁постро": 22486,
+ "▁Luigi": 22487,
+ "▁caching": 22488,
+ "preventDefault": 22489,
+ "amd": 22490,
+ "▁Vit": 22491,
+ "subst": 22492,
+ "▁строи": 22493,
+ "▁Campion": 22494,
+ "chr": 22495,
+ "фере": 22496,
+ "▁Список": 22497,
+ "NF": 22498,
+ "▁cím": 22499,
+ "▁hé": 22500,
+ "rebbe": 22501,
+ "ocy": 22502,
+ "below": 22503,
+ "▁bylo": 22504,
+ "▁Уи": 22505,
+ "▁\\({\\": 22506,
+ "▁`:": 22507,
+ "giore": 22508,
+ "San": 22509,
+ "▁Gate": 22510,
+ "▁вс": 22511,
+ "▁olimp": 22512,
+ "▁Matrix": 22513,
+ "▁hearing": 22514,
+ "rii": 22515,
+ "tfrac": 22516,
+ "▁allemand": 22517,
+ "▁Vue": 22518,
+ "лн": 22519,
+ "▁compiling": 22520,
+ "▁Ens": 22521,
+ "▁investigation": 22522,
+ "▁Ax": 22523,
+ "▁chars": 22524,
+ "▁targets": 22525,
+ "▁loud": 22526,
+ "usement": 22527,
+ "▁Nether": 22528,
+ "commerce": 22529,
+ "IGHT": 22530,
+ "ocoa": 22531,
+ "ifecycle": 22532,
+ "▁Leo": 22533,
+ "priv": 22534,
+ "▁goods": 22535,
+ "adamente": 22536,
+ "Austral": 22537,
+ "▁reboot": 22538,
+ "Gest": 22539,
+ "▁representations": 22540,
+ "ceu": 22541,
+ "▁doctrine": 22542,
+ "cers": 22543,
+ "▁Krak": 22544,
+ "▁advoc": 22545,
+ "▁squadra": 22546,
+ "▁arbeitete": 22547,
+ "üst": 22548,
+ "▁pill": 22549,
+ "Answer": 22550,
+ "▁квіт": 22551,
+ "▁Wa": 22552,
+ "umann": 22553,
+ "▁Dynam": 22554,
+ "Famil": 22555,
+ "▁tennis": 22556,
+ "▁Engineering": 22557,
+ "▁circles": 22558,
+ "▁Maryland": 22559,
+ "▁besta": 22560,
+ "▁bases": 22561,
+ "▁znajdu": 22562,
+ "ктора": 22563,
+ "▁arrest": 22564,
+ "лер": 22565,
+ "▁Gia": 22566,
+ "▁remarkable": 22567,
+ "▁могу": 22568,
+ "▁Supreme": 22569,
+ "▁`%": 22570,
+ "dor": 22571,
+ "▁aujourd": 22572,
+ "▁wis": 22573,
+ "WIDTH": 22574,
+ "▁misma": 22575,
+ "▁fluid": 22576,
+ "▁petite": 22577,
+ "▁Tow": 22578,
+ "Registry": 22579,
+ "emed": 22580,
+ "▁Wisconsin": 22581,
+ "▁Racing": 22582,
+ "▁registration": 22583,
+ "/%": 22584,
+ "third": 22585,
+ "▁monuments": 22586,
+ "чей": 22587,
+ "▁jet": 22588,
+ "▁Urban": 22589,
+ "álva": 22590,
+ "▁milieu": 22591,
+ "▁possess": 22592,
+ "▁germ": 22593,
+ "dependencies": 22594,
+ "▁enemies": 22595,
+ "▁samen": 22596,
+ "▁Werner": 22597,
+ "▁hizo": 22598,
+ "▁td": 22599,
+ "▁yesterday": 22600,
+ "▁Ад": 22601,
+ "▁hasn": 22602,
+ "cellation": 22603,
+ "ování": 22604,
+ "lika": 22605,
+ "Week": 22606,
+ "▁Ing": 22607,
+ "▁Email": 22608,
+ "▁mètres": 22609,
+ "▁OCLC": 22610,
+ "▁amongst": 22611,
+ "▁splend": 22612,
+ "fur": 22613,
+ "antics": 22614,
+ "▁XXX": 22615,
+ "▁группы": 22616,
+ "lach": 22617,
+ "▁cousin": 22618,
+ "▁invariant": 22619,
+ "ђу": 22620,
+ "▁Beispiel": 22621,
+ "▁harder": 22622,
+ "▁bell": 22623,
+ "▁orch": 22624,
+ "tb": 22625,
+ "Footnote": 22626,
+ "regon": 22627,
+ "Martin": 22628,
+ "▁incon": 22629,
+ "▁attacked": 22630,
+ "_{-": 22631,
+ "▁Tras": 22632,
+ "party": 22633,
+ "iteit": 22634,
+ "▁saint": 22635,
+ "rások": 22636,
+ "▁containers": 22637,
+ "Mo": 22638,
+ "▁Sn": 22639,
+ "quantity": 22640,
+ "▁ras": 22641,
+ "▁Canal": 22642,
+ "ccion": 22643,
+ "uvo": 22644,
+ "▁idx": 22645,
+ "typename": 22646,
+ "▁Rugby": 22647,
+ "▁Seems": 22648,
+ "▁transmit": 22649,
+ "▁Präsident": 22650,
+ "зне": 22651,
+ "▁Baker": 22652,
+ "inth": 22653,
+ "▁több": 22654,
+ "verein": 22655,
+ "▁especie": 22656,
+ ",(": 22657,
+ "▁téc": 22658,
+ "▁WITH": 22659,
+ "▁unos": 22660,
+ "▁politics": 22661,
+ "createElement": 22662,
+ "▁stats": 22663,
+ "▁Tennessee": 22664,
+ "▁Bedeutung": 22665,
+ "▁Screen": 22666,
+ "▁Straße": 22667,
+ "anze": 22668,
+ "▁partly": 22669,
+ "manuel": 22670,
+ "olation": 22671,
+ "horizontal": 22672,
+ "érieure": 22673,
+ "ampio": 22674,
+ "▁струк": 22675,
+ "Weight": 22676,
+ "Land": 22677,
+ "poly": 22678,
+ "▁Dak": 22679,
+ "▁Assume": 22680,
+ "\".$": 22681,
+ "▁casi": 22682,
+ "▁gross": 22683,
+ "▁entertain": 22684,
+ "▁década": 22685,
+ "'.$": 22686,
+ "encer": 22687,
+ "▁guaranteed": 22688,
+ "]$.": 22689,
+ "лися": 22690,
+ "▁acceptable": 22691,
+ "raise": 22692,
+ "irus": 22693,
+ "weit": 22694,
+ "▁Ана": 22695,
+ "▁hills": 22696,
+ "ipage": 22697,
+ "BIT": 22698,
+ "▁nucle": 22699,
+ "▁utilis": 22700,
+ "CAA": 22701,
+ "ènes": 22702,
+ "▁Schweiz": 22703,
+ "▁AA": 22704,
+ "ninger": 22705,
+ "▁bands": 22706,
+ "▁tender": 22707,
+ "som": 22708,
+ "Warning": 22709,
+ "▁Bischof": 22710,
+ "▁Arc": 22711,
+ "▁Woman": 22712,
+ "▁transmission": 22713,
+ "чни": 22714,
+ "istre": 22715,
+ "BY": 22716,
+ "▁SI": 22717,
+ "▁Пар": 22718,
+ "▁}).": 22719,
+ "▁presenta": 22720,
+ "▁René": 22721,
+ "▁happiness": 22722,
+ "▁Punk": 22723,
+ "cols": 22724,
+ "▁Desde": 22725,
+ "рёх": 22726,
+ "▁мона": 22727,
+ "▁scratch": 22728,
+ "▁tcp": 22729,
+ "êtes": 22730,
+ "itated": 22731,
+ "▁diferen": 22732,
+ "geh": 22733,
+ "nahmen": 22734,
+ "Пе": 22735,
+ "cki": 22736,
+ "▁Teatro": 22737,
+ "▁Remember": 22738,
+ "▁fright": 22739,
+ "▁Yam": 22740,
+ "western": 22741,
+ "leted": 22742,
+ "▁встре": 22743,
+ "▁település": 22744,
+ "зин": 22745,
+ "▁Quant": 22746,
+ "▁supre": 22747,
+ "ája": 22748,
+ "дія": 22749,
+ "▁carrera": 22750,
+ "kret": 22751,
+ "para": 22752,
+ "▁SUM": 22753,
+ "▁pit": 22754,
+ "źdz": 22755,
+ "éo": 22756,
+ "рення": 22757,
+ "▁Chor": 22758,
+ "▁voix": 22759,
+ "▁executive": 22760,
+ "▁allerdings": 22761,
+ "Maybe": 22762,
+ "▁день": 22763,
+ "▁flying": 22764,
+ "▁parliament": 22765,
+ "ждан": 22766,
+ "▁fram": 22767,
+ "▁жовт": 22768,
+ "▁ugly": 22769,
+ "▁буду": 22770,
+ "igny": 22771,
+ "\\|_{": 22772,
+ "▁bitter": 22773,
+ "sce": 22774,
+ "▁pole": 22775,
+ "Verlag": 22776,
+ "▁totalité": 22777,
+ "▁foundation": 22778,
+ "jt": 22779,
+ "▁slice": 22780,
+ "ifique": 22781,
+ "▁integrate": 22782,
+ "strij": 22783,
+ "▁asympt": 22784,
+ "▁ему": 22785,
+ "▁perturb": 22786,
+ "▁Flow": 22787,
+ "jboss": 22788,
+ "RIG": 22789,
+ "▁Aless": 22790,
+ "XXX": 22791,
+ "▁summ": 22792,
+ "sqlite": 22793,
+ "▁cheer": 22794,
+ "prob": 22795,
+ "▁GPU": 22796,
+ "ził": 22797,
+ "(*)": 22798,
+ "▁induct": 22799,
+ "RAY": 22800,
+ "blatt": 22801,
+ "questa": 22802,
+ "oru": 22803,
+ "▁Inside": 22804,
+ "▁McG": 22805,
+ "▁Nep": 22806,
+ "мп": 22807,
+ "▁inve": 22808,
+ "▁Animal": 22809,
+ "▁sob": 22810,
+ "ított": 22811,
+ "loyment": 22812,
+ "▁bund": 22813,
+ "Station": 22814,
+ "▁BEGIN": 22815,
+ "▁partiellement": 22816,
+ "igg": 22817,
+ "estore": 22818,
+ "▁coinc": 22819,
+ "▁Sommer": 22820,
+ "▁md": 22821,
+ "▁locked": 22822,
+ "mathchar": 22823,
+ "arma": 22824,
+ "pent": 22825,
+ "arium": 22826,
+ "▁ears": 22827,
+ "▁Songs": 22828,
+ "▁similarly": 22829,
+ "▁literally": 22830,
+ "▁inches": 22831,
+ "▁affection": 22832,
+ "lp": 22833,
+ "▁concluded": 22834,
+ "▁муніципалі": 22835,
+ "▁памя": 22836,
+ "estaur": 22837,
+ "▁Josh": 22838,
+ "▁Fritz": 22839,
+ "DBC": 22840,
+ "дён": 22841,
+ "posa": 22842,
+ "▁golden": 22843,
+ "▁pc": 22844,
+ "▁comte": 22845,
+ "▁Ziel": 22846,
+ "▁présente": 22847,
+ "marks": 22848,
+ "igneur": 22849,
+ "▁Drive": 22850,
+ "▁neglect": 22851,
+ "▁rozp": 22852,
+ "▁Five": 22853,
+ "spaces": 22854,
+ "▁Medi": 22855,
+ "▁existed": 22856,
+ "▁była": 22857,
+ "джи": 22858,
+ "▁frente": 22859,
+ "тник": 22860,
+ "odd": 22861,
+ "▁answering": 22862,
+ "bian": 22863,
+ "▁Eugen": 22864,
+ "▁Publications": 22865,
+ "▁Dia": 22866,
+ "lá": 22867,
+ "▁'_": 22868,
+ "▁recuper": 22869,
+ "ому": 22870,
+ "▁Append": 22871,
+ "obar": 22872,
+ "▁employees": 22873,
+ "▁compens": 22874,
+ "emetery": 22875,
+ "▁элект": 22876,
+ "MON": 22877,
+ "olin": 22878,
+ "▁historic": 22879,
+ "his": 22880,
+ "ąd": 22881,
+ "nm": 22882,
+ "▁Goth": 22883,
+ "▁stress": 22884,
+ "▁partecip": 22885,
+ "▁Aw": 22886,
+ "▁sar": 22887,
+ "▁hu": 22888,
+ "▁matplotlib": 22889,
+ "▁Myst": 22890,
+ "();`": 22891,
+ "schein": 22892,
+ "Longrightarrow": 22893,
+ "▁ря": 22894,
+ "▁Isra": 22895,
+ "[^": 22896,
+ "nou": 22897,
+ "▁synd": 22898,
+ "working": 22899,
+ "▁Nation": 22900,
+ "▁Pent": 22901,
+ "▁klass": 22902,
+ "▁applicable": 22903,
+ "▁Diam": 22904,
+ "▁brasile": 22905,
+ "▁pac": 22906,
+ "▁Height": 22907,
+ "Put": 22908,
+ "▁intro": 22909,
+ "▁unusual": 22910,
+ "nas": 22911,
+ "▁Gebäude": 22912,
+ "▁beam": 22913,
+ "▁Rect": 22914,
+ "▁Primera": 22915,
+ "▁haut": 22916,
+ "▁trait": 22917,
+ "prüft": 22918,
+ "inación": 22919,
+ "▁configurations": 22920,
+ "▁gilt": 22921,
+ "▁territoire": 22922,
+ "hez": 22923,
+ "▁alte": 22924,
+ "relative": 22925,
+ "Excel": 22926,
+ "▁Wright": 22927,
+ "GV": 22928,
+ "поли": 22929,
+ "Quant": 22930,
+ "▁gauge": 22931,
+ "▁multiply": 22932,
+ "ASS": 22933,
+ "ственно": 22934,
+ "ану": 22935,
+ "▁jeden": 22936,
+ "▁literary": 22937,
+ "▁Dro": 22938,
+ "▁advise": 22939,
+ "itzen": 22940,
+ "▁disag": 22941,
+ "website": 22942,
+ "▁дія": 22943,
+ "▁observer": 22944,
+ "▁január": 22945,
+ "vě": 22946,
+ "kup": 22947,
+ "▁Ses": 22948,
+ "▁wojew": 22949,
+ "▁stages": 22950,
+ "▁времени": 22951,
+ "łuż": 22952,
+ "нос": 22953,
+ "Download": 22954,
+ "ipo": 22955,
+ "▁graf": 22956,
+ "▁робо": 22957,
+ "▁Nikol": 22958,
+ "▁fic": 22959,
+ "▁joining": 22960,
+ "▁diversos": 22961,
+ "▁LIKE": 22962,
+ "▁Fitz": 22963,
+ "▁dimin": 22964,
+ "▁distrib": 22965,
+ "Sam": 22966,
+ "koz": 22967,
+ "▁alphabet": 22968,
+ "oser": 22969,
+ "OUR": 22970,
+ "uka": 22971,
+ "кая": 22972,
+ "▁steel": 22973,
+ "▁`--": 22974,
+ "▁tener": 22975,
+ "marker": 22976,
+ "▁Heaven": 22977,
+ "newcommand": 22978,
+ "▁prisoners": 22979,
+ "▁Knight": 22980,
+ "▁presents": 22981,
+ "▁questi": 22982,
+ "▁trains": 22983,
+ "opera": 22984,
+ "▁Linear": 22985,
+ "▁ME": 22986,
+ "▁Buc": 22987,
+ "Leg": 22988,
+ "▁agua": 22989,
+ "▁Griff": 22990,
+ "olg": 22991,
+ "dst": 22992,
+ ".\r": 22993,
+ "▁persones": 22994,
+ "Mal": 22995,
+ "бере": 22996,
+ "folge": 22997,
+ "▁acab": 22998,
+ "ctu": 22999,
+ "ptic": 23000,
+ "▁Navigation": 23001,
+ "Russ": 23002,
+ "галь": 23003,
+ "▁Ful": 23004,
+ "▁має": 23005,
+ "чная": 23006,
+ "wner": 23007,
+ "contra": 23008,
+ "▁joueur": 23009,
+ "▁Jess": 23010,
+ "▁renew": 23011,
+ "▁lap": 23012,
+ "▁casting": 23013,
+ "gal": 23014,
+ "▁tématu": 23015,
+ "▁называ": 23016,
+ "зах": 23017,
+ "чне": 23018,
+ ")-\\": 23019,
+ "▁часто": 23020,
+ "}$-": 23021,
+ "▁licz": 23022,
+ "▁emot": 23023,
+ "harm": 23024,
+ "▁occasionally": 23025,
+ "▁horror": 23026,
+ "east": 23027,
+ "▁printer": 23028,
+ "aran": 23029,
+ "▁Mississ": 23030,
+ "follow": 23031,
+ "▁Barry": 23032,
+ "▁investigate": 23033,
+ "gow": 23034,
+ "▁Americans": 23035,
+ "Since": 23036,
+ "▁відо": 23037,
+ "▁reun": 23038,
+ "osci": 23039,
+ "▁Chapter": 23040,
+ "▁bay": 23041,
+ "роме": 23042,
+ "ethe": 23043,
+ "édie": 23044,
+ "comot": 23045,
+ "▁miejscowo": 23046,
+ "▁studierte": 23047,
+ "ouvert": 23048,
+ "▁кур": 23049,
+ "▁DESC": 23050,
+ "▁touched": 23051,
+ "▁Jerry": 23052,
+ "uese": 23053,
+ "лище": 23054,
+ "authentication": 23055,
+ "▁colle": 23056,
+ "heart": 23057,
+ "▁regiment": 23058,
+ "cribed": 23059,
+ "▁Боль": 23060,
+ "▁проис": 23061,
+ "ceae": 23062,
+ "▁masses": 23063,
+ "▁scrolling": 23064,
+ "usto": 23065,
+ "SW": 23066,
+ "ovat": 23067,
+ "▁grâce": 23068,
+ "▁Архив": 23069,
+ "▁Север": 23070,
+ "avait": 23071,
+ "▁Marshall": 23072,
+ "▁HashMap": 23073,
+ "acon": 23074,
+ "ücken": 23075,
+ "[])": 23076,
+ "▁evangel": 23077,
+ "etzung": 23078,
+ "ttemberg": 23079,
+ "sters": 23080,
+ "TM": 23081,
+ "▁литера": 23082,
+ "quot": 23083,
+ "Pred": 23084,
+ "▁werk": 23085,
+ "▁haber": 23086,
+ "lava": 23087,
+ "vous": 23088,
+ "▁Late": 23089,
+ "cycle": 23090,
+ "тирова": 23091,
+ "▁проду": 23092,
+ "▁populations": 23093,
+ "▁Yan": 23094,
+ "Prefix": 23095,
+ "actéristiques": 23096,
+ "+'": 23097,
+ "()`](": 23098,
+ "▁Ль": 23099,
+ "филь": 23100,
+ "▁жизни": 23101,
+ "ftp": 23102,
+ "▁всех": 23103,
+ "▁gdzie": 23104,
+ "▁videa": 23105,
+ "oauth": 23106,
+ "▁pid": 23107,
+ "ům": 23108,
+ "▁pesso": 23109,
+ "▁tracking": 23110,
+ "izin": 23111,
+ "▁Morris": 23112,
+ "щий": 23113,
+ "▁Provinz": 23114,
+ "▁Mitte": 23115,
+ "▁artificial": 23116,
+ "brázky": 23117,
+ "▁дости": 23118,
+ "▁restored": 23119,
+ "▁communicate": 23120,
+ "agit": 23121,
+ "Recogn": 23122,
+ "▁lon": 23123,
+ "▁заня": 23124,
+ "▁Argument": 23125,
+ "flush": 23126,
+ "мана": 23127,
+ "seconds": 23128,
+ "UC": 23129,
+ "▁Ruth": 23130,
+ "▁tub": 23131,
+ "▁Bret": 23132,
+ "▁Pere": 23133,
+ "▁responsibility": 23134,
+ "ńczy": 23135,
+ "▁environments": 23136,
+ "kee": 23137,
+ "▁groot": 23138,
+ "▁painted": 23139,
+ "▁Éditions": 23140,
+ "cpy": 23141,
+ "árt": 23142,
+ "lichkeit": 23143,
+ "arda": 23144,
+ "Batch": 23145,
+ "▁Leopold": 23146,
+ "reason": 23147,
+ "noreferrer": 23148,
+ "sens": 23149,
+ "▁rocks": 23150,
+ "▁Hitler": 23151,
+ "лат": 23152,
+ "▁quoted": 23153,
+ "▁колле": 23154,
+ "▁уров": 23155,
+ "bag": 23156,
+ ".\")": 23157,
+ "▁ML": 23158,
+ "▁komt": 23159,
+ "▁[_": 23160,
+ "▁spectral": 23161,
+ "edo": 23162,
+ "▁insieme": 23163,
+ "▁suffering": 23164,
+ "slider": 23165,
+ "▁Kennedy": 23166,
+ "olate": 23167,
+ "▁Patri": 23168,
+ "зии": 23169,
+ "OH": 23170,
+ "▁теа": 23171,
+ "▁права": 23172,
+ "мах": 23173,
+ "rewrite": 23174,
+ "▁Einsatz": 23175,
+ "external": 23176,
+ "holds": 23177,
+ "▁Places": 23178,
+ "atype": 23179,
+ "▁vulner": 23180,
+ "▁abandoned": 23181,
+ "Origin": 23182,
+ "▁maximal": 23183,
+ "AAAA": 23184,
+ "▁Baseball": 23185,
+ "▁Close": 23186,
+ "▁painter": 23187,
+ "▁assigning": 23188,
+ "NB": 23189,
+ "blast": 23190,
+ "▁Künstler": 23191,
+ ")](": 23192,
+ "fach": 23193,
+ "▁Constantin": 23194,
+ "okes": 23195,
+ "▁nobody": 23196,
+ "▁subtract": 23197,
+ "▁fosse": 23198,
+ "▁certific": 23199,
+ "▁muse": 23200,
+ "/),": 23201,
+ "▁Profil": 23202,
+ "▁proxim": 23203,
+ "▁Jerusalem": 23204,
+ "▁simplicity": 23205,
+ "▁wsz": 23206,
+ "NUMBER": 23207,
+ "uttavia": 23208,
+ "UITableView": 23209,
+ "ichter": 23210,
+ "жан": 23211,
+ "▁Lav": 23212,
+ "itchen": 23213,
+ "▁Чем": 23214,
+ "Tu": 23215,
+ "▁geom": 23216,
+ "▁zvuky": 23217,
+ "▁Survey": 23218,
+ "ANCE": 23219,
+ "▁encrypted": 23220,
+ "prof": 23221,
+ "▁dare": 23222,
+ "▁Loren": 23223,
+ "тв": 23224,
+ "▁Алек": 23225,
+ "▁computers": 23226,
+ "▁expectation": 23227,
+ "▁substantial": 23228,
+ "▁Дми": 23229,
+ "▁`{": 23230,
+ "▁дра": 23231,
+ "ubble": 23232,
+ "▁performs": 23233,
+ "▁Krieg": 23234,
+ "▁incoming": 23235,
+ "▁Classification": 23236,
+ "WebView": 23237,
+ "▁episodes": 23238,
+ "apper": 23239,
+ "äufig": 23240,
+ "▁giov": 23241,
+ "▁Depart": 23242,
+ "бора": 23243,
+ "edly": 23244,
+ "ospod": 23245,
+ "▁ptr": 23246,
+ "▁dátum": 23247,
+ "▁estimation": 23248,
+ "icole": 23249,
+ "▁----": 23250,
+ "▁princes": 23251,
+ "HEAD": 23252,
+ "▁diffusion": 23253,
+ "▁drie": 23254,
+ "▁Ada": 23255,
+ "нице": 23256,
+ "nginx": 23257,
+ "shal": 23258,
+ "▁februari": 23259,
+ "▁Tat": 23260,
+ "looking": 23261,
+ "kund": 23262,
+ "▁Dean": 23263,
+ "mongodb": 23264,
+ "вших": 23265,
+ "▁Aur": 23266,
+ "▁Flora": 23267,
+ "▁Studios": 23268,
+ "ције": 23269,
+ "eil": 23270,
+ "Install": 23271,
+ "▁franch": 23272,
+ "▁HMS": 23273,
+ "▁practices": 23274,
+ "lej": 23275,
+ "dale": 23276,
+ "▁poste": 23277,
+ "▁Hels": 23278,
+ "▁reliable": 23279,
+ "ździer": 23280,
+ "▁verse": 23281,
+ "ermeister": 23282,
+ "▁quit": 23283,
+ "ético": 23284,
+ "ilis": 23285,
+ "edor": 23286,
+ "▁Cultural": 23287,
+ "дже": 23288,
+ "▁liked": 23289,
+ "▁mongodb": 23290,
+ "▁Broadway": 23291,
+ "▁IR": 23292,
+ "eszt": 23293,
+ "hov": 23294,
+ "▁míst": 23295,
+ "reiche": 23296,
+ "▁kB": 23297,
+ "стом": 23298,
+ "▁SQLite": 23299,
+ "▁torneo": 23300,
+ "\\.": 23301,
+ "Ord": 23302,
+ "▁Administration": 23303,
+ "▁зда": 23304,
+ "▁Hinter": 23305,
+ "▁Via": 23306,
+ "Decimal": 23307,
+ "orious": 23308,
+ "▁nécessaire": 23309,
+ "wx": 23310,
+ "▁tej": 23311,
+ "▁tema": 23312,
+ "Obrázky": 23313,
+ "рите": 23314,
+ "▁builds": 23315,
+ "▁laten": 23316,
+ "▁гг": 23317,
+ "Visibility": 23318,
+ "läu": 23319,
+ "▁sechs": 23320,
+ "▁луч": 23321,
+ "cera": 23322,
+ "Could": 23323,
+ "▁traject": 23324,
+ "}}^{": 23325,
+ "▁Japon": 23326,
+ "another": 23327,
+ "IK": 23328,
+ "▁belonging": 23329,
+ "▁facilities": 23330,
+ "▁Daily": 23331,
+ "▁dece": 23332,
+ "intro": 23333,
+ "▁случа": 23334,
+ "Namespace": 23335,
+ "▁Bak": 23336,
+ "locale": 23337,
+ "UG": 23338,
+ "=${": 23339,
+ "▁compañ": 23340,
+ "jąc": 23341,
+ "▁arithmetic": 23342,
+ "forum": 23343,
+ "▁porta": 23344,
+ "onk": 23345,
+ "▁gender": 23346,
+ "▁expects": 23347,
+ "бка": 23348,
+ "▁nak": 23349,
+ "▁Grace": 23350,
+ "▁stro": 23351,
+ "ividual": 23352,
+ "▁COM": 23353,
+ "▁Farm": 23354,
+ "▁canton": 23355,
+ "тому": 23356,
+ "javax": 23357,
+ "сей": 23358,
+ "▁briefly": 23359,
+ "Face": 23360,
+ "rotate": 23361,
+ "constant": 23362,
+ "▁gallery": 23363,
+ "astro": 23364,
+ "allery": 23365,
+ "▁DJ": 23366,
+ "charge": 23367,
+ "ходить": 23368,
+ "Cent": 23369,
+ "\\\",": 23370,
+ "▁donna": 23371,
+ "arca": 23372,
+ "lade": 23373,
+ "zin": 23374,
+ "▁Ned": 23375,
+ "▁hosting": 23376,
+ "idor": 23377,
+ "itative": 23378,
+ "igs": 23379,
+ "▁пря": 23380,
+ "▁ticket": 23381,
+ "▁studying": 23382,
+ "▁designer": 23383,
+ "lapsed": 23384,
+ "▁laat": 23385,
+ "▁dix": 23386,
+ "▁integrated": 23387,
+ "▁informed": 23388,
+ "▁behave": 23389,
+ "▁labour": 23390,
+ "estellt": 23391,
+ "calendar": 23392,
+ "▁killing": 23393,
+ "▁twitter": 23394,
+ "iae": 23395,
+ "▁historique": 23396,
+ "DEFAULT": 23397,
+ "iała": 23398,
+ "▁theoretical": 23399,
+ "▁unders": 23400,
+ "ляет": 23401,
+ "atan": 23402,
+ "▁surname": 23403,
+ "▁intercept": 23404,
+ "гласно": 23405,
+ "▁општини": 23406,
+ "▁tired": 23407,
+ "▁Beth": 23408,
+ "▁административ": 23409,
+ "Li": 23410,
+ "▁Тур": 23411,
+ "▁Scanner": 23412,
+ "▁Stern": 23413,
+ "▁вместе": 23414,
+ "▁reporting": 23415,
+ "▁sull": 23416,
+ "цией": 23417,
+ "berts": 23418,
+ "ogonal": 23419,
+ "ők": 23420,
+ "▁ipsum": 23421,
+ "▁seulement": 23422,
+ "▁Seiten": 23423,
+ "wordpress": 23424,
+ "▁featuring": 23425,
+ "istischen": 23426,
+ "jub": 23427,
+ "▁étr": 23428,
+ "▁tea": 23429,
+ "▁adapted": 23430,
+ "▁scales": 23431,
+ "▁nan": 23432,
+ "getValue": 23433,
+ "▁Blues": 23434,
+ "acles": 23435,
+ "▁stati": 23436,
+ "▁entitled": 23437,
+ "▁Ralph": 23438,
+ "gravity": 23439,
+ "▁entrepr": 23440,
+ "któber": 23441,
+ "limat": 23442,
+ "lis": 23443,
+ "Demo": 23444,
+ "relation": 23445,
+ "▁nep": 23446,
+ "prowad": 23447,
+ "itis": 23448,
+ "▁pup": 23449,
+ "nehmer": 23450,
+ "▁disappoint": 23451,
+ "▁etwas": 23452,
+ "annon": 23453,
+ "▁approved": 23454,
+ "▁clever": 23455,
+ "Loading": 23456,
+ "▁verz": 23457,
+ "resse": 23458,
+ "▁inspir": 23459,
+ "▁sampling": 23460,
+ "▁Bek": 23461,
+ "})$.": 23462,
+ "▁грома": 23463,
+ "▁specie": 23464,
+ "▁repub": 23465,
+ "▁loader": 23466,
+ "▁erf": 23467,
+ "▁shoulder": 23468,
+ "rais": 23469,
+ "▁мате": 23470,
+ "▁Month": 23471,
+ "Scene": 23472,
+ "▁blocking": 23473,
+ "▁ocean": 23474,
+ "geben": 23475,
+ "▁Kilometer": 23476,
+ "▁bedeut": 23477,
+ "▁Mix": 23478,
+ "fmt": 23479,
+ "▁Norweg": 23480,
+ "▁IDs": 23481,
+ "parallel": 23482,
+ "▁anticip": 23483,
+ "▁revis": 23484,
+ "хан": 23485,
+ "▁свет": 23486,
+ "CASE": 23487,
+ "▁führt": 23488,
+ "▁atomic": 23489,
+ "▁darkness": 23490,
+ "▁Fußballspieler": 23491,
+ "▁Жи": 23492,
+ "quisition": 23493,
+ "▁Sieg": 23494,
+ "Circ": 23495,
+ "▁cientí": 23496,
+ "nelle": 23497,
+ "SHA": 23498,
+ "▁urb": 23499,
+ "▁ksi": 23500,
+ "leqslant": 23501,
+ "▁фрон": 23502,
+ "▁defect": 23503,
+ "▁rá": 23504,
+ "▁stronger": 23505,
+ "▁pł": 23506,
+ "▁communities": 23507,
+ "нина": 23508,
+ "enas": 23509,
+ "iennent": 23510,
+ "▁safely": 23511,
+ "▁тя": 23512,
+ "▁benchmark": 23513,
+ "▁Braun": 23514,
+ "methods": 23515,
+ "argument": 23516,
+ "vos": 23517,
+ "obox": 23518,
+ "рови": 23519,
+ "▁recherche": 23520,
+ "mn": 23521,
+ "▁brings": 23522,
+ "machine": 23523,
+ "CESS": 23524,
+ "hosts": 23525,
+ "▁NY": 23526,
+ "Autow": 23527,
+ "▁современ": 23528,
+ "▁Gary": 23529,
+ "▁sensor": 23530,
+ "▁documented": 23531,
+ "▁prendre": 23532,
+ "▁peer": 23533,
+ "enix": 23534,
+ "hai": 23535,
+ "arbe": 23536,
+ "цент": 23537,
+ "_(": 23538,
+ "▁URI": 23539,
+ "ева": 23540,
+ "▁Regie": 23541,
+ "▁Monument": 23542,
+ "▁onderwerp": 23543,
+ "Bag": 23544,
+ "tit": 23545,
+ "▁stir": 23546,
+ "▁nerv": 23547,
+ "сторія": 23548,
+ "▁sov": 23549,
+ "▁writers": 23550,
+ "▁sorts": 23551,
+ "absolute": 23552,
+ "▁difficulties": 23553,
+ "▁parlament": 23554,
+ "▁IEnumerable": 23555,
+ "▁dissol": 23556,
+ "▁CHECK": 23557,
+ "arina": 23558,
+ "inburgh": 23559,
+ "DM": 23560,
+ "▁eind": 23561,
+ "▁budget": 23562,
+ "▁certains": 23563,
+ "▁första": 23564,
+ "anja": 23565,
+ "▁годов": 23566,
+ "▁тек": 23567,
+ "▁Duch": 23568,
+ "gui": 23569,
+ "▁Teams": 23570,
+ "▁многи": 23571,
+ "Marie": 23572,
+ "Integr": 23573,
+ "ThreadPool": 23574,
+ "rust": 23575,
+ "ík": 23576,
+ "%\"": 23577,
+ "enf": 23578,
+ "spl": 23579,
+ "▁begun": 23580,
+ "lou": 23581,
+ "▁RewriteRule": 23582,
+ "tuple": 23583,
+ "aneous": 23584,
+ "▁marine": 23585,
+ "attan": 23586,
+ "ikal": 23587,
+ "▁graduated": 23588,
+ "illé": 23589,
+ "▁прове": 23590,
+ "▁Роз": 23591,
+ "',\r": 23592,
+ "▁Pfarr": 23593,
+ "▁nivel": 23594,
+ "▁працю": 23595,
+ "music": 23596,
+ "▁setTimeout": 23597,
+ "ERS": 23598,
+ "▁Erik": 23599,
+ "pit": 23600,
+ "▁Хро": 23601,
+ "▁pił": 23602,
+ "▁peri": 23603,
+ "док": 23604,
+ "uszt": 23605,
+ "▁Bear": 23606,
+ "ClassName": 23607,
+ "▁Parlament": 23608,
+ "▁aix": 23609,
+ "▁invited": 23610,
+ "▁PATH": 23611,
+ "xter": 23612,
+ "▁Race": 23613,
+ "▁hecho": 23614,
+ "▁Tower": 23615,
+ "▁utf": 23616,
+ "actly": 23617,
+ "▁буде": 23618,
+ "▁angles": 23619,
+ "няя": 23620,
+ "ouvelles": 23621,
+ "▁climate": 23622,
+ "▁singing": 23623,
+ "▁navigate": 23624,
+ ">';": 23625,
+ "adows": 23626,
+ "▁leta": 23627,
+ "▁Sitz": 23628,
+ "▁partitions": 23629,
+ "▁dock": 23630,
+ "▁ży": 23631,
+ "▁allocate": 23632,
+ "▁benefits": 23633,
+ "▁nieder": 23634,
+ "xpath": 23635,
+ "meck": 23636,
+ "älle": 23637,
+ "▁coupling": 23638,
+ "жил": 23639,
+ "ForKey": 23640,
+ "argent": 23641,
+ "clou": 23642,
+ "▁instruments": 23643,
+ "▁enthus": 23644,
+ "▁még": 23645,
+ "▁Пав": 23646,
+ "▁Rach": 23647,
+ "-----": 23648,
+ "▁APIs": 23649,
+ "▁Vier": 23650,
+ "Cmd": 23651,
+ "itore": 23652,
+ "▁Cuba": 23653,
+ "▁dátummal": 23654,
+ "▁embedding": 23655,
+ "stdio": 23656,
+ "▁Gilbert": 23657,
+ "▁geprüft": 23658,
+ "▁stating": 23659,
+ "▁triggers": 23660,
+ "+=": 23661,
+ "▁spécial": 23662,
+ "▁deliber": 23663,
+ "мин": 23664,
+ "Produ": 23665,
+ "▁Stati": 23666,
+ "▁zus": 23667,
+ "ktionen": 23668,
+ "Dispatcher": 23669,
+ "idal": 23670,
+ "▁LP": 23671,
+ "optera": 23672,
+ "▁estar": 23673,
+ "▁значи": 23674,
+ "смо": 23675,
+ "ouses": 23676,
+ "engono": 23677,
+ "▁WPF": 23678,
+ "publish": 23679,
+ "▁teor": 23680,
+ "elif": 23681,
+ "▁erg": 23682,
+ "▁separation": 23683,
+ "Pan": 23684,
+ "▁Orchestra": 23685,
+ "Peter": 23686,
+ "bounds": 23687,
+ "▁Shakespeare": 23688,
+ "▁cantante": 23689,
+ "▁demi": 23690,
+ "▁Popular": 23691,
+ "фр": 23692,
+ "arring": 23693,
+ "цин": 23694,
+ "▁Ис": 23695,
+ "von": 23696,
+ "▁substitution": 23697,
+ "▁línea": 23698,
+ "\\}$.": 23699,
+ "como": 23700,
+ "▁важ": 23701,
+ "wagen": 23702,
+ "▁rarely": 23703,
+ "▁periods": 23704,
+ "glob": 23705,
+ "▁Frid": 23706,
+ "▁Terr": 23707,
+ "▁Release": 23708,
+ "Brainz": 23709,
+ "▁граф": 23710,
+ "DIS": 23711,
+ "compatible": 23712,
+ "▁poč": 23713,
+ "LIN": 23714,
+ "▁Källor": 23715,
+ "▁Arizona": 23716,
+ "ppy": 23717,
+ "Seq": 23718,
+ "▁Ain": 23719,
+ "▁Tourn": 23720,
+ "brow": 23721,
+ "▁Kör": 23722,
+ "▁ash": 23723,
+ "ogeneous": 23724,
+ "▁dialect": 23725,
+ "▁насеља": 23726,
+ "mysqli": 23727,
+ "цов": 23728,
+ "▁flor": 23729,
+ "▁фло": 23730,
+ "IAB": 23731,
+ "▁Within": 23732,
+ "^(": 23733,
+ "▁bois": 23734,
+ "▁tank": 23735,
+ "▁affili": 23736,
+ "▁hijo": 23737,
+ "▁Kate": 23738,
+ "▁Verl": 23739,
+ "▁Miami": 23740,
+ "▁typescript": 23741,
+ "њу": 23742,
+ "▁Vern": 23743,
+ "▁висо": 23744,
+ "iemann": 23745,
+ "▁coverage": 23746,
+ "brie": 23747,
+ "▁Starting": 23748,
+ "numpy": 23749,
+ "▁Jenkins": 23750,
+ "▁két": 23751,
+ "▁grup": 23752,
+ "▁Scient": 23753,
+ "▁interrupt": 23754,
+ "▁blob": 23755,
+ "ugel": 23756,
+ "▁Orth": 23757,
+ "abama": 23758,
+ "▁Bapt": 23759,
+ "ownik": 23760,
+ "▁быть": 23761,
+ "▁Julius": 23762,
+ "▁През": 23763,
+ "▁substitute": 23764,
+ "supported": 23765,
+ "chy": 23766,
+ "egyzetek": 23767,
+ "▁Performance": 23768,
+ "lessly": 23769,
+ "Constructor": 23770,
+ "▁extending": 23771,
+ "▁Muslim": 23772,
+ "Overflow": 23773,
+ "▁Jenn": 23774,
+ "▁produz": 23775,
+ "мії": 23776,
+ "▁países": 23777,
+ "▁eux": 23778,
+ "▁fate": 23779,
+ "ologe": 23780,
+ "ук": 23781,
+ "▁wobei": 23782,
+ "▁Sachsen": 23783,
+ "▁сайт": 23784,
+ "Models": 23785,
+ "▁Fast": 23786,
+ "besondere": 23787,
+ "▁FR": 23788,
+ "▁acon": 23789,
+ "▁Denkmal": 23790,
+ "▁anch": 23791,
+ "▁público": 23792,
+ "▁Tas": 23793,
+ "▁cand": 23794,
+ "▁paździer": 23795,
+ "▁Мон": 23796,
+ "▁versus": 23797,
+ "rut": 23798,
+ "GT": 23799,
+ "▁inserting": 23800,
+ "▁canad": 23801,
+ "єм": 23802,
+ "▁Metro": 23803,
+ "▁Herzog": 23804,
+ "Ignore": 23805,
+ "▁decrease": 23806,
+ "▁пун": 23807,
+ "▁Fischer": 23808,
+ "▁Mall": 23809,
+ "▁nörd": 23810,
+ "iostream": 23811,
+ "▁Luxemb": 23812,
+ "payload": 23813,
+ "▁Zeitung": 23814,
+ "▁modifying": 23815,
+ "▁Cher": 23816,
+ "▁Luci": 23817,
+ "nx": 23818,
+ "▁loose": 23819,
+ "▁topics": 23820,
+ "▁varied": 23821,
+ "▁pg": 23822,
+ "ajes": 23823,
+ "umm": 23824,
+ "Views": 23825,
+ "▁Beau": 23826,
+ "MAP": 23827,
+ "ipeline": 23828,
+ "▁Interest": 23829,
+ "arith": 23830,
+ "▁según": 23831,
+ "▁Gemeins": 23832,
+ "▁Attribute": 23833,
+ "community": 23834,
+ "▁центр": 23835,
+ "▁kilometer": 23836,
+ "▁économ": 23837,
+ "laration": 23838,
+ "▁къ": 23839,
+ "▁carriage": 23840,
+ "▁Lane": 23841,
+ "▁необ": 23842,
+ "kur": 23843,
+ "▁AF": 23844,
+ "INTER": 23845,
+ "))$": 23846,
+ "▁beide": 23847,
+ "destination": 23848,
+ "▁fonts": 23849,
+ "appendChild": 23850,
+ "▁MAR": 23851,
+ "▁gay": 23852,
+ "mil": 23853,
+ "lesh": 23854,
+ "èt": 23855,
+ "▁Wang": 23856,
+ "▁Years": 23857,
+ "▁Symbol": 23858,
+ "Live": 23859,
+ "quency": 23860,
+ "▁Users": 23861,
+ "▁Unicode": 23862,
+ "▁Sau": 23863,
+ "▁tons": 23864,
+ "▁Ні": 23865,
+ "▁краї": 23866,
+ "AXI": 23867,
+ "▁Pick": 23868,
+ "AI": 23869,
+ "▁hath": 23870,
+ "▁ainda": 23871,
+ "▁papa": 23872,
+ "▁Censo": 23873,
+ "▁Bald": 23874,
+ "▁Насеље": 23875,
+ "▁simulations": 23876,
+ "▁jaren": 23877,
+ "▁inherited": 23878,
+ "▁той": 23879,
+ "▁feels": 23880,
+ "ression": 23881,
+ "▁október": 23882,
+ "bid": 23883,
+ "ási": 23884,
+ "▁muss": 23885,
+ "ventory": 23886,
+ "▁meist": 23887,
+ "▁bore": 23888,
+ "▁slider": 23889,
+ "дели": 23890,
+ "\\;": 23891,
+ "▁extracted": 23892,
+ "кур": 23893,
+ "Edge": 23894,
+ "▁perf": 23895,
+ "▁Brigade": 23896,
+ "▁град": 23897,
+ "ienie": 23898,
+ "▁Norden": 23899,
+ "▁cancer": 23900,
+ "\"/": 23901,
+ "Cur": 23902,
+ "▁Сере": 23903,
+ "▁liquid": 23904,
+ "structure": 23905,
+ "▁choosing": 23906,
+ "▁Perl": 23907,
+ "Side": 23908,
+ "üs": 23909,
+ "ритор": 23910,
+ "▁kost": 23911,
+ "▁packets": 23912,
+ "▁которого": 23913,
+ "▁Comun": 23914,
+ "▁fingers": 23915,
+ "ográfica": 23916,
+ ">:": 23917,
+ "▁championnat": 23918,
+ "▁blieb": 23919,
+ "▁Situ": 23920,
+ "▁suic": 23921,
+ "andis": 23922,
+ "Fre": 23923,
+ "▁Conc": 23924,
+ "▁republic": 23925,
+ "▁armed": 23926,
+ "▁hell": 23927,
+ "▁hög": 23928,
+ "ragma": 23929,
+ "▁ense": 23930,
+ "▁acres": 23931,
+ "▁Від": 23932,
+ "▁Reform": 23933,
+ "MainActivity": 23934,
+ "keeper": 23935,
+ "erb": 23936,
+ "▁monaster": 23937,
+ "subsubsection": 23938,
+ "▁Див": 23939,
+ "▁creature": 23940,
+ "▁indicating": 23941,
+ "▁urls": 23942,
+ "▁kein": 23943,
+ "образ": 23944,
+ "pick": 23945,
+ "▁Admir": 23946,
+ "▁oldest": 23947,
+ "▁muz": 23948,
+ "▁contradiction": 23949,
+ "▁probabil": 23950,
+ "illiant": 23951,
+ "▁pav": 23952,
+ "▁papel": 23953,
+ "ubs": 23954,
+ "▁жена": 23955,
+ "AML": 23956,
+ "▁recip": 23957,
+ "▁COL": 23958,
+ "added": 23959,
+ "▁clue": 23960,
+ "▁Ukraine": 23961,
+ "▁jelent": 23962,
+ "чень": 23963,
+ "▁mathematics": 23964,
+ "Accept": 23965,
+ "▁сот": 23966,
+ "▁север": 23967,
+ "▁isolated": 23968,
+ "▁поя": 23969,
+ "wür": 23970,
+ "Router": 23971,
+ "CAT": 23972,
+ "rgb": 23973,
+ "▁Lov": 23974,
+ "mutable": 23975,
+ "▁Wes": 23976,
+ "▁Italien": 23977,
+ "Drag": 23978,
+ "enium": 23979,
+ "atting": 23980,
+ "tcp": 23981,
+ "▁erfolgte": 23982,
+ "▁Beit": 23983,
+ "гато": 23984,
+ "▁Systems": 23985,
+ "▁reserve": 23986,
+ "eree": 23987,
+ "▁Пари": 23988,
+ "▁зали": 23989,
+ "▁rent": 23990,
+ "▁sunt": 23991,
+ "▁Girls": 23992,
+ "▁Ernest": 23993,
+ "▁fits": 23994,
+ "▁oppon": 23995,
+ "▁живело": 23996,
+ "▁avaient": 23997,
+ "▁Florence": 23998,
+ "▁числе": 23999,
+ "▁engines": 24000,
+ "Dynamic": 24001,
+ "▁stycznia": 24002,
+ "▁bias": 24003,
+ "▁Exchange": 24004,
+ "дий": 24005,
+ "▁historiques": 24006,
+ "▁Hä": 24007,
+ "hod": 24008,
+ "▁wł": 24009,
+ "schap": 24010,
+ "▁lac": 24011,
+ "▁Foi": 24012,
+ "▁dwell": 24013,
+ "▁Unternehmen": 24014,
+ "URN": 24015,
+ "▁kilometres": 24016,
+ "▁Однако": 24017,
+ "кли": 24018,
+ "▁Sri": 24019,
+ "Groups": 24020,
+ "mind": 24021,
+ "oslov": 24022,
+ "fern": 24023,
+ "egu": 24024,
+ "abeled": 24025,
+ "Fiddle": 24026,
+ "▁Century": 24027,
+ "/-": 24028,
+ "▁Jegyzetek": 24029,
+ "Hen": 24030,
+ "ensemble": 24031,
+ "▁Gut": 24032,
+ "_{{\\": 24033,
+ "▁ranking": 24034,
+ "+$": 24035,
+ "ала": 24036,
+ "▁#{": 24037,
+ "imientos": 24038,
+ "achim": 24039,
+ "rides": 24040,
+ "▁Klaus": 24041,
+ "▁intend": 24042,
+ "▁Kentucky": 24043,
+ "cipe": 24044,
+ "▁Dienst": 24045,
+ "▁situated": 24046,
+ "▁póź": 24047,
+ "▁scrit": 24048,
+ "clip": 24049,
+ "нет": 24050,
+ "tables": 24051,
+ "▁Nied": 24052,
+ "▁McK": 24053,
+ "▁powst": 24054,
+ "▁kunnen": 24055,
+ "▁Evans": 24056,
+ "жды": 24057,
+ "вать": 24058,
+ "uchar": 24059,
+ "▁residents": 24060,
+ "iak": 24061,
+ "▁Resol": 24062,
+ "▁veces": 24063,
+ "▁satisfying": 24064,
+ "INF": 24065,
+ "▁син": 24066,
+ "▁crossing": 24067,
+ "iben": 24068,
+ "▁широ": 24069,
+ "pto": 24070,
+ "ILL": 24071,
+ "▁роль": 24072,
+ "▁aktiv": 24073,
+ "▁обращения": 24074,
+ "Wikispecies": 24075,
+ "▁Höhe": 24076,
+ "cro": 24077,
+ "════": 24078,
+ "altra": 24079,
+ "▁FILE": 24080,
+ "▁ups": 24081,
+ "▁allocation": 24082,
+ "Michael": 24083,
+ "▁acknowled": 24084,
+ "Linux": 24085,
+ "▁metros": 24086,
+ "tte": 24087,
+ "afen": 24088,
+ "▁xcode": 24089,
+ "▁тради": 24090,
+ "species": 24091,
+ "▁injury": 24092,
+ "▁самы": 24093,
+ "▁lattice": 24094,
+ "Material": 24095,
+ "andenburg": 24096,
+ "▁huvudstaden": 24097,
+ "story": 24098,
+ "▁varying": 24099,
+ "▁követ": 24100,
+ "▁Российской": 24101,
+ "irse": 24102,
+ "▁drum": 24103,
+ "Pressed": 24104,
+ "Lar": 24105,
+ "▁Agu": 24106,
+ "▁weil": 24107,
+ "▁commence": 24108,
+ "▁Según": 24109,
+ "Gesture": 24110,
+ "Shape": 24111,
+ "▁Vors": 24112,
+ "▁succès": 24113,
+ "▁corrected": 24114,
+ "Kar": 24115,
+ "▁cruel": 24116,
+ "▁politico": 24117,
+ "▁Schriftsteller": 24118,
+ "▁risult": 24119,
+ "etu": 24120,
+ "archiv": 24121,
+ "▁género": 24122,
+ "▁Lü": 24123,
+ "▁triumph": 24124,
+ "ORS": 24125,
+ "Lu": 24126,
+ "▁personnel": 24127,
+ "▁Hills": 24128,
+ "asset": 24129,
+ "domin": 24130,
+ "Receive": 24131,
+ "▁Oak": 24132,
+ "▁Kno": 24133,
+ "▁Theory": 24134,
+ "irie": 24135,
+ "owan": 24136,
+ "▁estava": 24137,
+ "▁executes": 24138,
+ "йт": 24139,
+ "ópez": 24140,
+ "поло": 24141,
+ "ética": 24142,
+ "▁название": 24143,
+ "▁converges": 24144,
+ "▁notre": 24145,
+ "▁populated": 24146,
+ "▁movements": 24147,
+ "▁statistical": 24148,
+ "▁Zweiten": 24149,
+ "quin": 24150,
+ "▁importantes": 24151,
+ "▁klein": 24152,
+ "▁Segunda": 24153,
+ "schließend": 24154,
+ "Failure": 24155,
+ "nar": 24156,
+ "dag": 24157,
+ "▁ruolo": 24158,
+ "▁fiction": 24159,
+ "▁использу": 24160,
+ "▁crisis": 24161,
+ "▁Getting": 24162,
+ ",%": 24163,
+ "▁армии": 24164,
+ "▁campus": 24165,
+ "▁footer": 24166,
+ "▁días": 24167,
+ "бан": 24168,
+ "▁liberty": 24169,
+ "▁gh": 24170,
+ "▁chamber": 24171,
+ "▁districts": 24172,
+ "▁excited": 24173,
+ "▁canción": 24174,
+ "tero": 24175,
+ "▁Working": 24176,
+ "▁części": 24177,
+ "льный": 24178,
+ "▁forum": 24179,
+ "▁Ehe": 24180,
+ "▁ката": 24181,
+ "itations": 24182,
+ "Tools": 24183,
+ "achiv": 24184,
+ "▁cres": 24185,
+ "asto": 24186,
+ "▁rever": 24187,
+ "▁nazionale": 24188,
+ "▁doors": 24189,
+ "▁Nancy": 24190,
+ "▁islands": 24191,
+ "Imp": 24192,
+ "▁Chair": 24193,
+ "▁vorm": 24194,
+ "sein": 24195,
+ "▁доку": 24196,
+ "erset": 24197,
+ "▁tätig": 24198,
+ "▁Krit": 24199,
+ "▁пя": 24200,
+ "▁conservation": 24201,
+ "▁Partido": 24202,
+ "minipage": 24203,
+ "Validator": 24204,
+ "▁recovery": 24205,
+ "▁NASA": 24206,
+ "▁breast": 24207,
+ "ilty": 24208,
+ "analy": 24209,
+ "elines": 24210,
+ "▁Saturday": 24211,
+ "emark": 24212,
+ "cej": 24213,
+ "Zero": 24214,
+ "▁Turner": 24215,
+ "secure": 24216,
+ "Exists": 24217,
+ "▁Rick": 24218,
+ "evalu": 24219,
+ "ctrl": 24220,
+ "▁compression": 24221,
+ "▁CURL": 24222,
+ "textcolor": 24223,
+ ")\\,": 24224,
+ "longrightarrow": 24225,
+ "▁Fernseh": 24226,
+ "icha": 24227,
+ "▁loi": 24228,
+ "▁Оте": 24229,
+ "▁cave": 24230,
+ "▁dozen": 24231,
+ "▁explaining": 24232,
+ "▁innov": 24233,
+ "▁Nicholas": 24234,
+ "▁diameter": 24235,
+ "▁Marian": 24236,
+ "▁fires": 24237,
+ "▁artifact": 24238,
+ "▁Parker": 24239,
+ "▁Bund": 24240,
+ "▁verte": 24241,
+ "▁talent": 24242,
+ "▁Lucas": 24243,
+ "reverse": 24244,
+ "▁folgenden": 24245,
+ "▁Sah": 24246,
+ "jections": 24247,
+ "▁invece": 24248,
+ "▁costitu": 24249,
+ "▁ssl": 24250,
+ "}}^": 24251,
+ "▁violent": 24252,
+ "▁spos": 24253,
+ "Rout": 24254,
+ "jdk": 24255,
+ "▁заме": 24256,
+ "▁furent": 24257,
+ "andal": 24258,
+ "Hom": 24259,
+ "▁Senior": 24260,
+ "▁pounds": 24261,
+ "▁Discogs": 24262,
+ "▁зе": 24263,
+ "'}[": 24264,
+ "▁Napoleon": 24265,
+ "ordinates": 24266,
+ "àn": 24267,
+ "▁kurz": 24268,
+ "▁vere": 24269,
+ "▁reuse": 24270,
+ "▁Ген": 24271,
+ "▁Syst": 24272,
+ "▁disappeared": 24273,
+ "▁Watch": 24274,
+ "bibliothek": 24275,
+ "▁корпу": 24276,
+ "▁Cs": 24277,
+ "▁}`": 24278,
+ "▁rör": 24279,
+ "▁дела": 24280,
+ "VB": 24281,
+ "▁calculus": 24282,
+ "рода": 24283,
+ "▁judgment": 24284,
+ "atile": 24285,
+ "▁longue": 24286,
+ "▁Hus": 24287,
+ "Jac": 24288,
+ "}})": 24289,
+ "RIPT": 24290,
+ "IABot": 24291,
+ "▁após": 24292,
+ "▁aston": 24293,
+ "Webachiv": 24294,
+ "▁URLs": 24295,
+ "▁coat": 24296,
+ "▁эконо": 24297,
+ "▁lear": 24298,
+ "extensions": 24299,
+ "▁Classic": 24300,
+ "TI": 24301,
+ "▁Tage": 24302,
+ "▁lá": 24303,
+ "▁semb": 24304,
+ "▁développement": 24305,
+ "ISTS": 24306,
+ "▁solves": 24307,
+ ",\\,": 24308,
+ "▁чемпі": 24309,
+ "ordinary": 24310,
+ "▁Bav": 24311,
+ "▁muchos": 24312,
+ "Self": 24313,
+ "▁Май": 24314,
+ "▁Diet": 24315,
+ "▁necessity": 24316,
+ "від": 24317,
+ "▁mano": 24318,
+ "▁Ср": 24319,
+ "▁carre": 24320,
+ "▁Camera": 24321,
+ "▁Narod": 24322,
+ "▁Phone": 24323,
+ "▁polym": 24324,
+ "imore": 24325,
+ "isEmpty": 24326,
+ "▁Houston": 24327,
+ "▁Rece": 24328,
+ "▁presentation": 24329,
+ "ниципа": 24330,
+ "▁Db": 24331,
+ "▁confident": 24332,
+ "▁}{": 24333,
+ "▁bullet": 24334,
+ "▁{},": 24335,
+ "ANGE": 24336,
+ "▁Notre": 24337,
+ "chin": 24338,
+ "▁Dragon": 24339,
+ "erca": 24340,
+ "iali": 24341,
+ "▁asset": 24342,
+ "▁muito": 24343,
+ "▁deeply": 24344,
+ "▁restriction": 24345,
+ "▁commerce": 24346,
+ "▁Bomb": 24347,
+ "caught": 24348,
+ "qq": 24349,
+ "▁Arag": 24350,
+ "▁немец": 24351,
+ "▁Analysis": 24352,
+ "▁článku": 24353,
+ "▁baby": 24354,
+ "▁echter": 24355,
+ "▁одного": 24356,
+ "жена": 24357,
+ "▁whitespace": 24358,
+ "çu": 24359,
+ "LIST": 24360,
+ "frique": 24361,
+ "▁varias": 24362,
+ "▁Wit": 24363,
+ "▁Licencia": 24364,
+ "Exit": 24365,
+ "▁sierp": 24366,
+ "▁assemb": 24367,
+ "▁splitting": 24368,
+ "▁palace": 24369,
+ "▁blocked": 24370,
+ "▁boundaries": 24371,
+ "▁iterations": 24372,
+ "▁Rotten": 24373,
+ "▁Verkehr": 24374,
+ "▁weer": 24375,
+ "Tests": 24376,
+ "ifting": 24377,
+ "▁regul": 24378,
+ "▁persist": 24379,
+ "▁Solution": 24380,
+ "pb": 24381,
+ "▁collapse": 24382,
+ "▁arrested": 24383,
+ "▁predicate": 24384,
+ "▁Zone": 24385,
+ "▁ingen": 24386,
+ "zález": 24387,
+ "▁banks": 24388,
+ "plant": 24389,
+ "▁Nella": 24390,
+ "▁бан": 24391,
+ "▁Snow": 24392,
+ "▁Kreuz": 24393,
+ "ício": 24394,
+ "▁enters": 24395,
+ "▁expose": 24396,
+ "či": 24397,
+ "шие": 24398,
+ "Qual": 24399,
+ "▁landscape": 24400,
+ "▁подацима": 24401,
+ "mai": 24402,
+ "stag": 24403,
+ "ований": 24404,
+ "DEF": 24405,
+ "[]{": 24406,
+ "▁dernière": 24407,
+ "icut": 24408,
+ "▁Xml": 24409,
+ "▁subgroup": 24410,
+ "▁Polsce": 24411,
+ "▁Warning": 24412,
+ "▁vehicles": 24413,
+ "iot": 24414,
+ "▁dll": 24415,
+ "ront": 24416,
+ "▁Louise": 24417,
+ "▁ara": 24418,
+ "▁Scala": 24419,
+ "▁canonical": 24420,
+ "▁placing": 24421,
+ "ERY": 24422,
+ "▁Jag": 24423,
+ "▁virus": 24424,
+ "emu": 24425,
+ "▁});\r": 24426,
+ "▁мм": 24427,
+ "▁Trying": 24428,
+ "▁Lexikon": 24429,
+ "abord": 24430,
+ "▁expedition": 24431,
+ "▁demanded": 24432,
+ "Zyg": 24433,
+ "lein": 24434,
+ "▁verwendet": 24435,
+ "рина": 24436,
+ "wol": 24437,
+ "▁pivot": 24438,
+ "▁однако": 24439,
+ "▁propriet": 24440,
+ "▁awards": 24441,
+ "tout": 24442,
+ "▁assim": 24443,
+ "▁Storm": 24444,
+ "Limit": 24445,
+ "elin": 24446,
+ "wealth": 24447,
+ "uez": 24448,
+ "▁rappresent": 24449,
+ "▁resta": 24450,
+ "▁gegründet": 24451,
+ "▁journalist": 24452,
+ "isie": 24453,
+ "▁facility": 24454,
+ "illed": 24455,
+ "ulk": 24456,
+ "▁PK": 24457,
+ "Anchor": 24458,
+ "▁_)": 24459,
+ "VF": 24460,
+ "LAB": 24461,
+ "▁nå": 24462,
+ "odos": 24463,
+ "▁billion": 24464,
+ "virti": 24465,
+ "▁Jeux": 24466,
+ "юза": 24467,
+ "tomcat": 24468,
+ "▁charts": 24469,
+ "▁Bundle": 24470,
+ "▁lst": 24471,
+ "▁exer": 24472,
+ "▁females": 24473,
+ "▁obliged": 24474,
+ "▁aby": 24475,
+ "rolled": 24476,
+ "dri": 24477,
+ "▁Sche": 24478,
+ "▁vessels": 24479,
+ "IMARY": 24480,
+ "▁reasoning": 24481,
+ "▁проте": 24482,
+ "FILES": 24483,
+ "verk": 24484,
+ "osos": 24485,
+ "▁комму": 24486,
+ "дії": 24487,
+ "▁dd": 24488,
+ "▁соответ": 24489,
+ "▁IOException": 24490,
+ "ských": 24491,
+ "▁CLI": 24492,
+ "▁ње": 24493,
+ "CM": 24494,
+ "TD": 24495,
+ "▁possibilities": 24496,
+ "▁Compos": 24497,
+ "half": 24498,
+ "▁webpage": 24499,
+ "▁swing": 24500,
+ "▁zas": 24501,
+ "▁cycl": 24502,
+ "leid": 24503,
+ "istica": 24504,
+ "▁Insert": 24505,
+ "▁Sweden": 24506,
+ "▁wanting": 24507,
+ "▁ال": 24508,
+ "▁eeuw": 24509,
+ "▁Administr": 24510,
+ "▁Warren": 24511,
+ "▁bs": 24512,
+ "▁pam": 24513,
+ "anus": 24514,
+ "Dra": 24515,
+ "expl": 24516,
+ "▁Kant": 24517,
+ "▁Austin": 24518,
+ "▁csak": 24519,
+ "▁theatre": 24520,
+ "▁compatibility": 24521,
+ "матиче": 24522,
+ "setState": 24523,
+ "бю": 24524,
+ "}{|": 24525,
+ "▁Dy": 24526,
+ "▁Zwischen": 24527,
+ "Alt": 24528,
+ "CLARE": 24529,
+ "steps": 24530,
+ "▁Lage": 24531,
+ "▁Mitt": 24532,
+ "▁Dublin": 24533,
+ "▁работы": 24534,
+ "deep": 24535,
+ "▁flows": 24536,
+ "▁Palace": 24537,
+ "unix": 24538,
+ "refs": 24539,
+ "umar": 24540,
+ "aset": 24541,
+ "cov": 24542,
+ "▁ping": 24543,
+ "▁Safari": 24544,
+ "flug": 24545,
+ "creens": 24546,
+ "{#": 24547,
+ "▁реа": 24548,
+ "adors": 24549,
+ "▁amor": 24550,
+ "uce": 24551,
+ "demic": 24552,
+ "▁Netherlands": 24553,
+ "▁clusters": 24554,
+ "▁enfor": 24555,
+ "marine": 24556,
+ "▁bugs": 24557,
+ "izzata": 24558,
+ "▁scra": 24559,
+ "Les": 24560,
+ "quick": 24561,
+ "▁turno": 24562,
+ "_*": 24563,
+ "ера": 24564,
+ "Generated": 24565,
+ ">[": 24566,
+ "▁estre": 24567,
+ "orde": 24568,
+ "▁verg": 24569,
+ "роз": 24570,
+ "▁pau": 24571,
+ "includes": 24572,
+ "assa": 24573,
+ "aders": 24574,
+ "▁Герма": 24575,
+ "▁estaven": 24576,
+ "▁earliest": 24577,
+ "▁resultado": 24578,
+ "mun": 24579,
+ "▁plots": 24580,
+ "din": 24581,
+ "sorted": 24582,
+ "▁preference": 24583,
+ "rió": 24584,
+ "туре": 24585,
+ "▁Ligue": 24586,
+ "▁завер": 24587,
+ "phr": 24588,
+ "▁pocket": 24589,
+ "▁parl": 24590,
+ "▁lak": 24591,
+ "▁powie": 24592,
+ "▁altres": 24593,
+ "$};": 24594,
+ "plain": 24595,
+ "▁Cred": 24596,
+ "itza": 24597,
+ "perp": 24598,
+ "Green": 24599,
+ "▁devoted": 24600,
+ "production": 24601,
+ "worker": 24602,
+ "elsen": 24603,
+ "▁vern": 24604,
+ "▁március": 24605,
+ "▁Confeder": 24606,
+ "▁Liverpool": 24607,
+ "▁музи": 24608,
+ "▁emails": 24609,
+ "▁distances": 24610,
+ "▁segments": 24611,
+ "▁anth": 24612,
+ "▁wrest": 24613,
+ "▁hoog": 24614,
+ "▁cinema": 24615,
+ "rror": 24616,
+ "▁geboren": 24617,
+ "▁éc": 24618,
+ "Marker": 24619,
+ "▁Compet": 24620,
+ "▁листо": 24621,
+ "allowed": 24622,
+ "volume": 24623,
+ "Espagne": 24624,
+ "Ze": 24625,
+ "▁fixes": 24626,
+ "▁rond": 24627,
+ "▁arrangement": 24628,
+ "/~": 24629,
+ ".](": 24630,
+ "▁Források": 24631,
+ "▁weiteren": 24632,
+ "excel": 24633,
+ "▁змі": 24634,
+ "▁moderne": 24635,
+ "English": 24636,
+ "▁Transfermarkt": 24637,
+ "▁bearing": 24638,
+ "▁cleared": 24639,
+ "▁сам": 24640,
+ "▁divs": 24641,
+ "ći": 24642,
+ "▁этой": 24643,
+ "▁Геор": 24644,
+ "scene": 24645,
+ "▁ages": 24646,
+ "GEN": 24647,
+ "rän": 24648,
+ "▁Toul": 24649,
+ "▁Abs": 24650,
+ "ját": 24651,
+ "▁mediante": 24652,
+ "▁empres": 24653,
+ "▁Employee": 24654,
+ "▁polynomials": 24655,
+ "▁optimize": 24656,
+ "▁выступа": 24657,
+ "fare": 24658,
+ "вей": 24659,
+ "xf": 24660,
+ "quez": 24661,
+ "▁botan": 24662,
+ "▁defend": 24663,
+ "▁Quart": 24664,
+ "Mont": 24665,
+ "vb": 24666,
+ "tick": 24667,
+ "WD": 24668,
+ "mine": 24669,
+ "▁modific": 24670,
+ "notification": 24671,
+ "▁denn": 24672,
+ "▁algo": 24673,
+ "▁Spo": 24674,
+ "▁mistrzost": 24675,
+ "/:": 24676,
+ "▁apresent": 24677,
+ "▁прод": 24678,
+ "Volume": 24679,
+ "ską": 24680,
+ "protected": 24681,
+ "▁Turkish": 24682,
+ "azy": 24683,
+ "▁pouv": 24684,
+ "▁período": 24685,
+ "skog": 24686,
+ "▁entropy": 24687,
+ "zed": 24688,
+ "тори": 24689,
+ "▁lij": 24690,
+ "boards": 24691,
+ "▁стату": 24692,
+ "Bool": 24693,
+ "▁polity": 24694,
+ "@\",": 24695,
+ "▁рік": 24696,
+ "née": 24697,
+ "▁Zug": 24698,
+ "▁Uniti": 24699,
+ "émet": 24700,
+ "atience": 24701,
+ "dimen": 24702,
+ "▁Steven": 24703,
+ "Ha": 24704,
+ "ACTION": 24705,
+ "▁wand": 24706,
+ "▁Navar": 24707,
+ "▁січня": 24708,
+ "Watch": 24709,
+ "▁Stuart": 24710,
+ "▁zde": 24711,
+ "▁контро": 24712,
+ "dataset": 24713,
+ "yó": 24714,
+ "▁Bush": 24715,
+ "▁себя": 24716,
+ "▁worthy": 24717,
+ "▁Ble": 24718,
+ "▁propor": 24719,
+ "▁Village": 24720,
+ "▁ry": 24721,
+ "▁voit": 24722,
+ "▁копия": 24723,
+ "▁zp": 24724,
+ "▁cura": 24725,
+ "▁Html": 24726,
+ "▁Dieser": 24727,
+ "▁Days": 24728,
+ "onnes": 24729,
+ "▁antigu": 24730,
+ "▁Staaten": 24731,
+ "▁faint": 24732,
+ "ongs": 24733,
+ "▁öst": 24734,
+ "Redirect": 24735,
+ "ель": 24736,
+ "atorial": 24737,
+ "▁bother": 24738,
+ "EditText": 24739,
+ "▁Giul": 24740,
+ "▁заво": 24741,
+ "▁pueblo": 24742,
+ "▁Mississippi": 24743,
+ "jak": 24744,
+ "▁wings": 24745,
+ "onc": 24746,
+ "ível": 24747,
+ "iencia": 24748,
+ "entlicht": 24749,
+ "▁BTW": 24750,
+ "ornal": 24751,
+ "▁Коро": 24752,
+ "▁одним": 24753,
+ "▁salv": 24754,
+ "▁finden": 24755,
+ "geo": 24756,
+ "▁авиа": 24757,
+ "attung": 24758,
+ "viv": 24759,
+ "▁Luther": 24760,
+ "▁общи": 24761,
+ "▁Rolle": 24762,
+ "▁Abraham": 24763,
+ "▁centered": 24764,
+ "▁slash": 24765,
+ "isat": 24766,
+ "emann": 24767,
+ "Os": 24768,
+ "парта": 24769,
+ "▁Pablo": 24770,
+ "▁collaboration": 24771,
+ "paths": 24772,
+ "édition": 24773,
+ "▁viewed": 24774,
+ "▁consisted": 24775,
+ "▁recovered": 24776,
+ "▁Mexican": 24777,
+ "▁Fix": 24778,
+ "▁spell": 24779,
+ "Special": 24780,
+ "▁Ст": 24781,
+ "esseur": 24782,
+ "▁Украины": 24783,
+ "former": 24784,
+ "▁św": 24785,
+ "▁zeros": 24786,
+ "▁Straßen": 24787,
+ "▁organisation": 24788,
+ "üssen": 24789,
+ "▁Sierra": 24790,
+ "▁Season": 24791,
+ "▁volont": 24792,
+ "BeanFactory": 24793,
+ "▁помощ": 24794,
+ "▁pressing": 24795,
+ "▁equivalence": 24796,
+ "▁catt": 24797,
+ "icity": 24798,
+ "▁accomplished": 24799,
+ "▁yo": 24800,
+ "▁sic": 24801,
+ "▁imports": 24802,
+ "▁accommod": 24803,
+ "▁Porto": 24804,
+ "▁яка": 24805,
+ "▁loan": 24806,
+ "тики": 24807,
+ "▁checkout": 24808,
+ "▁assess": 24809,
+ "▁Population": 24810,
+ "urent": 24811,
+ "clojure": 24812,
+ "▁Santos": 24813,
+ "▁információ": 24814,
+ "POS": 24815,
+ "▁gare": 24816,
+ "▁kick": 24817,
+ "▁radical": 24818,
+ "▁Peace": 24819,
+ "▁streaming": 24820,
+ "camp": 24821,
+ "ząt": 24822,
+ "говор": 24823,
+ "▁Regierung": 24824,
+ "▁proceeded": 24825,
+ "fm": 24826,
+ "лены": 24827,
+ "▁earnest": 24828,
+ "▁Parad": 24829,
+ "requests": 24830,
+ "▁Raum": 24831,
+ "šč": 24832,
+ "▁policies": 24833,
+ "▁Tig": 24834,
+ "▁sitt": 24835,
+ "▁Energy": 24836,
+ "▁purely": 24837,
+ "▁Haut": 24838,
+ "▁Speed": 24839,
+ "bio": 24840,
+ "▁orange": 24841,
+ "▁biggest": 24842,
+ "▁britannique": 24843,
+ "▁Notable": 24844,
+ "vu": 24845,
+ "лении": 24846,
+ "бин": 24847,
+ "▁Nash": 24848,
+ "щение": 24849,
+ "▁ciel": 24850,
+ "adémie": 24851,
+ "▁грудня": 24852,
+ "▁joue": 24853,
+ "▁voted": 24854,
+ "rico": 24855,
+ "▁гор": 24856,
+ "▁команду": 24857,
+ "itivity": 24858,
+ "▁ще": 24859,
+ "▁definite": 24860,
+ "uropa": 24861,
+ "!\");": 24862,
+ "Defaults": 24863,
+ "▁некоторы": 24864,
+ "édération": 24865,
+ "▁silly": 24866,
+ "▁talked": 24867,
+ "reu": 24868,
+ "▁Lomb": 24869,
+ "▁statue": 24870,
+ "кта": 24871,
+ "юр": 24872,
+ "umably": 24873,
+ "▁городе": 24874,
+ "▁Runtime": 24875,
+ "▁diagn": 24876,
+ "▁retro": 24877,
+ "▁Sverige": 24878,
+ "▁inicial": 24879,
+ "ienza": 24880,
+ "▁figlio": 24881,
+ "▁zog": 24882,
+ "▁rey": 24883,
+ "▁Rund": 24884,
+ "тный": 24885,
+ "▁ceased": 24886,
+ "erno": 24887,
+ "▁esa": 24888,
+ "▁trouv": 24889,
+ "▁Gemeinden": 24890,
+ "▁comercial": 24891,
+ "skap": 24892,
+ "enario": 24893,
+ "▁juris": 24894,
+ "TB": 24895,
+ "нала": 24896,
+ "▁vij": 24897,
+ "VO": 24898,
+ "▁clin": 24899,
+ "jör": 24900,
+ "сан": 24901,
+ "owała": 24902,
+ "ribución": 24903,
+ "▁ursprüng": 24904,
+ "▁condem": 24905,
+ "▁Stage": 24906,
+ "▁mixing": 24907,
+ "▁різ": 24908,
+ "▁fans": 24909,
+ "ház": 24910,
+ "social": 24911,
+ "zan": 24912,
+ "▁свой": 24913,
+ "Cookie": 24914,
+ "▁Roland": 24915,
+ "azionale": 24916,
+ "▁Sloven": 24917,
+ "▁Fiche": 24918,
+ "▁Sé": 24919,
+ "hä": 24920,
+ "▁officials": 24921,
+ "▁înt": 24922,
+ "Interceptor": 24923,
+ "Tables": 24924,
+ "▁davon": 24925,
+ "initialize": 24926,
+ "]=\"": 24927,
+ "▁Body": 24928,
+ "▁Upper": 24929,
+ "▁Collect": 24930,
+ "▁Zürich": 24931,
+ "Horizontal": 24932,
+ "Typ": 24933,
+ "▁político": 24934,
+ "▁RewriteCond": 24935,
+ "▁hoped": 24936,
+ "▁anxious": 24937,
+ "Liter": 24938,
+ "jahr": 24939,
+ "▁assemble": 24940,
+ "▁crypt": 24941,
+ "lahoma": 24942,
+ "ASH": 24943,
+ "▁Бри": 24944,
+ "▁Cic": 24945,
+ "twitter": 24946,
+ "hyper": 24947,
+ "▁Tell": 24948,
+ "ільки": 24949,
+ "вобо": 24950,
+ "▁bazie": 24951,
+ "▁contemporary": 24952,
+ "▁Parameter": 24953,
+ "stwa": 24954,
+ "▁bekend": 24955,
+ "cock": 24956,
+ "previous": 24957,
+ "enska": 24958,
+ "▁caller": 24959,
+ "]])": 24960,
+ "▁Raz": 24961,
+ "▁Selon": 24962,
+ "▁proposal": 24963,
+ "▁bý": 24964,
+ "▁Sied": 24965,
+ "▁Arbeits": 24966,
+ "▁pride": 24967,
+ "▁slope": 24968,
+ "idé": 24969,
+ "gradient": 24970,
+ "▁Джерела": 24971,
+ "▁SH": 24972,
+ "▁разрабо": 24973,
+ "iversity": 24974,
+ "сподар": 24975,
+ "\\{\\": 24976,
+ "▁стали": 24977,
+ "▁Einzel": 24978,
+ "▁rgba": 24979,
+ "▁Anim": 24980,
+ "▁alles": 24981,
+ "бар": 24982,
+ "erte": 24983,
+ "▁réalisé": 24984,
+ "Institut": 24985,
+ "▁markup": 24986,
+ "▁vars": 24987,
+ "▁gam": 24988,
+ "▁Василь": 24989,
+ "izza": 24990,
+ "▁Cob": 24991,
+ "▁Metal": 24992,
+ "▁leak": 24993,
+ "▁Lanc": 24994,
+ "Switch": 24995,
+ "Delay": 24996,
+ "atuur": 24997,
+ "▁четы": 24998,
+ "▁англий": 24999,
+ "▁legacy": 25000,
+ "▁desarroll": 25001,
+ "▁topological": 25002,
+ "▁jeweils": 25003,
+ "▁Nederlandse": 25004,
+ "▁atmosphere": 25005,
+ "urban": 25006,
+ "▁slov": 25007,
+ "▁lawyer": 25008,
+ "pecially": 25009,
+ "▁alternate": 25010,
+ "▁paramet": 25011,
+ "▁establishment": 25012,
+ "▁woods": 25013,
+ "PD": 25014,
+ "▁наи": 25015,
+ "▁mang": 25016,
+ "▁wechselte": 25017,
+ "ську": 25018,
+ ".=": 25019,
+ "▁fifteen": 25020,
+ "SUM": 25021,
+ "▁Fro": 25022,
+ "▁LED": 25023,
+ "owano": 25024,
+ "ствие": 25025,
+ "▁Données": 25026,
+ "tol": 25027,
+ "żyn": 25028,
+ "cref": 25029,
+ "ствии": 25030,
+ "horn": 25031,
+ "▁сооб": 25032,
+ "▁оборо": 25033,
+ "▁Complete": 25034,
+ "“)": 25035,
+ "▁kindly": 25036,
+ "▁Chamber": 25037,
+ "ség": 25038,
+ "WH": 25039,
+ "▁ambient": 25040,
+ "кро": 25041,
+ "▁cheval": 25042,
+ "▁написа": 25043,
+ "flu": 25044,
+ "▁Offiz": 25045,
+ "mate": 25046,
+ "natural": 25047,
+ "separ": 25048,
+ "empre": 25049,
+ "ViewHolder": 25050,
+ "fw": 25051,
+ "▁letech": 25052,
+ "▁trailing": 25053,
+ "atri": 25054,
+ "▁Gó": 25055,
+ "▁Bonn": 25056,
+ "▁unlikely": 25057,
+ "RAM": 25058,
+ "enst": 25059,
+ "Stats": 25060,
+ "▁политиче": 25061,
+ ")--(": 25062,
+ "▁trom": 25063,
+ "!...": 25064,
+ "▁Meanwhile": 25065,
+ "стана": 25066,
+ "▁Reino": 25067,
+ "▁Arist": 25068,
+ "$}}%": 25069,
+ "▁solem": 25070,
+ "closure": 25071,
+ "ignation": 25072,
+ "łod": 25073,
+ "▁divor": 25074,
+ "▁международ": 25075,
+ "=\"": 25076,
+ "▁molt": 25077,
+ "▁skills": 25078,
+ "▁Cir": 25079,
+ "▁Después": 25080,
+ "▁lun": 25081,
+ "▁coron": 25082,
+ "▁Comics": 25083,
+ "стори": 25084,
+ "▁Items": 25085,
+ "▁Think": 25086,
+ "игра": 25087,
+ "▁grows": 25088,
+ "portal": 25089,
+ "▁nich": 25090,
+ "▁restrictions": 25091,
+ "▁Lau": 25092,
+ "шення": 25093,
+ "▁Sozial": 25094,
+ "▁кі": 25095,
+ "mana": 25096,
+ "▁lieutenant": 25097,
+ "Attr": 25098,
+ "umeric": 25099,
+ "▁drives": 25100,
+ "asis": 25101,
+ "бай": 25102,
+ "NL": 25103,
+ "Zygote": 25104,
+ "physics": 25105,
+ "▁internally": 25106,
+ "вается": 25107,
+ "Hidden": 25108,
+ "▁Дата": 25109,
+ "▁unsafe": 25110,
+ "▁Roc": 25111,
+ "▁instantiate": 25112,
+ "udni": 25113,
+ "▁Room": 25114,
+ "▁Пред": 25115,
+ "▁maja": 25116,
+ "achment": 25117,
+ "uuid": 25118,
+ "Projects": 25119,
+ "Gre": 25120,
+ "▁взя": 25121,
+ "▁Blood": 25122,
+ "icile": 25123,
+ "▁Nouvelle": 25124,
+ "Does": 25125,
+ "▁nieuwe": 25126,
+ "ále": 25127,
+ "angs": 25128,
+ "weak": 25129,
+ "▁aantal": 25130,
+ "▁Ев": 25131,
+ "▁Dresden": 25132,
+ "▁Lost": 25133,
+ "ката": 25134,
+ "▁involve": 25135,
+ "▁declaring": 25136,
+ "▁Political": 25137,
+ "érez": 25138,
+ "kop": 25139,
+ "notify": 25140,
+ "▁Curt": 25141,
+ "▁schließlich": 25142,
+ "ghan": 25143,
+ "цена": 25144,
+ "▁kwiet": 25145,
+ "ügel": 25146,
+ "▁Sob": 25147,
+ "▁substr": 25148,
+ "▁ellen": 25149,
+ "ionario": 25150,
+ "enson": 25151,
+ "WIN": 25152,
+ "спорт": 25153,
+ "emer": 25154,
+ "nome": 25155,
+ "▁smiled": 25156,
+ "▁Schmidt": 25157,
+ "▁smoke": 25158,
+ "▁Token": 25159,
+ "▁vague": 25160,
+ "▁provision": 25161,
+ "yaml": 25162,
+ "нитель": 25163,
+ "onial": 25164,
+ "époque": 25165,
+ "▁NC": 25166,
+ "▁NFL": 25167,
+ "teck": 25168,
+ "▁allo": 25169,
+ "▁précéd": 25170,
+ "central": 25171,
+ "▁majd": 25172,
+ "▁chrom": 25173,
+ "▁Zum": 25174,
+ "verso": 25175,
+ "▁verschiedenen": 25176,
+ "▁старо": 25177,
+ "▁quelle": 25178,
+ "▁rép": 25179,
+ "ROW": 25180,
+ "▁ihnen": 25181,
+ "▁sensible": 25182,
+ "|$": 25183,
+ "▁schw": 25184,
+ "▁BR": 25185,
+ "▁Options": 25186,
+ "▁tens": 25187,
+ "▁conquist": 25188,
+ "▁ließ": 25189,
+ "ovis": 25190,
+ "▁міста": 25191,
+ "▁ela": 25192,
+ "rifice": 25193,
+ "▁lok": 25194,
+ "▁Queensland": 25195,
+ "Binary": 25196,
+ "▁Rahmen": 25197,
+ "▁abol": 25198,
+ "▁část": 25199,
+ "▁Edinburgh": 25200,
+ "inde": 25201,
+ "▁calculating": 25202,
+ "▁Oregon": 25203,
+ "▁legit": 25204,
+ "▁Nachdem": 25205,
+ "athon": 25206,
+ "Private": 25207,
+ "illaume": 25208,
+ "▁observable": 25209,
+ "leans": 25210,
+ "▁remarked": 25211,
+ "▁halt": 25212,
+ "ницы": 25213,
+ "▁stamp": 25214,
+ "▁Adv": 25215,
+ "Louis": 25216,
+ "imming": 25217,
+ "gruppe": 25218,
+ "▁Policy": 25219,
+ "▁vrij": 25220,
+ "ftrag": 25221,
+ "▁offices": 25222,
+ "▁participated": 25223,
+ "▁escol": 25224,
+ "▁\"": 25225,
+ "▁nombreuses": 25226,
+ "▁divid": 25227,
+ "▁advis": 25228,
+ "лтати": 25229,
+ "▁==>": 25230,
+ "Orientation": 25231,
+ "cid": 25232,
+ "Cart": 25233,
+ "▁murm": 25234,
+ "▁assez": 25235,
+ "▁linking": 25236,
+ "building": 25237,
+ "▁reconna": 25238,
+ "▁shook": 25239,
+ "managed": 25240,
+ "landa": 25241,
+ "▁León": 25242,
+ "▁création": 25243,
+ "дой": 25244,
+ "ocity": 25245,
+ "▁wij": 25246,
+ "▁wieś": 25247,
+ "xtart": 25248,
+ "▁Move": 25249,
+ "lungen": 25250,
+ "ствует": 25251,
+ "orney": 25252,
+ "optional": 25253,
+ "macro": 25254,
+ "Condition": 25255,
+ "▁squares": 25256,
+ "▁mistaken": 25257,
+ "ánt": 25258,
+ "▁Ris": 25259,
+ "▁sentences": 25260,
+ "erea": 25261,
+ "▁mij": 25262,
+ "Und": 25263,
+ "▁nombr": 25264,
+ "zA": 25265,
+ "▁Independent": 25266,
+ "▁preview": 25267,
+ "imas": 25268,
+ "▁males": 25269,
+ "inental": 25270,
+ "Thank": 25271,
+ "▁popol": 25272,
+ "▁pover": 25273,
+ "▁grasp": 25274,
+ "▁imped": 25275,
+ "▁campionato": 25276,
+ "▁Wei": 25277,
+ "▁titled": 25278,
+ "▁Además": 25279,
+ "▁Password": 25280,
+ "▁Pam": 25281,
+ "UILD": 25282,
+ "▁липня": 25283,
+ "werb": 25284,
+ "................": 25285,
+ "▁Río": 25286,
+ "▁teeth": 25287,
+ "bp": 25288,
+ "▁SW": 25289,
+ "ulaire": 25290,
+ "▁seized": 25291,
+ "▁Stef": 25292,
+ "úl": 25293,
+ "▁viz": 25294,
+ "iony": 25295,
+ "▁junt": 25296,
+ "▁která": 25297,
+ "▁września": 25298,
+ "<>": 25299,
+ "▁surg": 25300,
+ "▁tutte": 25301,
+ "▁Hob": 25302,
+ "повід": 25303,
+ "▁wohl": 25304,
+ "▁trag": 25305,
+ "▁Crown": 25306,
+ "▁trova": 25307,
+ "стову": 25308,
+ "▁Vienna": 25309,
+ "esehen": 25310,
+ "▁metropol": 25311,
+ "▁reflected": 25312,
+ "тета": 25313,
+ "▁traduc": 25314,
+ "▁Bast": 25315,
+ "▁erschien": 25316,
+ "woord": 25317,
+ "()\"": 25318,
+ "talet": 25319,
+ "▁roads": 25320,
+ "ведения": 25321,
+ "ührung": 25322,
+ "▁cogn": 25323,
+ "▁Valle": 25324,
+ "▁landing": 25325,
+ "▁Regex": 25326,
+ "▁Iowa": 25327,
+ "dział": 25328,
+ "▁erreichte": 25329,
+ "aum": 25330,
+ "▁founder": 25331,
+ "apolis": 25332,
+ "Compiler": 25333,
+ "▁kop": 25334,
+ "▁marc": 25335,
+ "▁територ": 25336,
+ "))`": 25337,
+ "▁lei": 25338,
+ "geon": 25339,
+ "▁weapons": 25340,
+ "▁horn": 25341,
+ "▁elif": 25342,
+ "▁Capital": 25343,
+ "će": 25344,
+ "▁forall": 25345,
+ "▁эта": 25346,
+ "preview": 25347,
+ "▁DNA": 25348,
+ "▁sid": 25349,
+ "orch": 25350,
+ "▁Ras": 25351,
+ "▁arab": 25352,
+ "Best": 25353,
+ "▁счита": 25354,
+ "▁López": 25355,
+ "ança": 25356,
+ "▁funkc": 25357,
+ "▁tienen": 25358,
+ ";&": 25359,
+ "museum": 25360,
+ "▁Err": 25361,
+ "▁resort": 25362,
+ "Nov": 25363,
+ "▁kal": 25364,
+ "MW": 25365,
+ "шь": 25366,
+ "anchor": 25367,
+ "▁роман": 25368,
+ "leading": 25369,
+ "▁manten": 25370,
+ "▁Silva": 25371,
+ "dade": 25372,
+ "▁designated": 25373,
+ "▁revista": 25374,
+ "Oct": 25375,
+ "percent": 25376,
+ "▁уні": 25377,
+ "identifier": 25378,
+ "mass": 25379,
+ "@@": 25380,
+ "ulsion": 25381,
+ "germeister": 25382,
+ "▁predicted": 25383,
+ "▁сви": 25384,
+ "жной": 25385,
+ "▁Ergeb": 25386,
+ "▁cust": 25387,
+ "▁removes": 25388,
+ "charg": 25389,
+ "пример": 25390,
+ "▁forming": 25391,
+ "asma": 25392,
+ "stdout": 25393,
+ "Fun": 25394,
+ "yme": 25395,
+ "tered": 25396,
+ "ursive": 25397,
+ "ighed": 25398,
+ "▁след": 25399,
+ "verband": 25400,
+ "▁LOG": 25401,
+ "rams": 25402,
+ "éon": 25403,
+ "endra": 25404,
+ "▁Bereich": 25405,
+ "▁temporal": 25406,
+ "▁langue": 25407,
+ "▁Inn": 25408,
+ "▁moreover": 25409,
+ "▁tutorials": 25410,
+ "Middle": 25411,
+ "▁советский": 25412,
+ "▁maintenance": 25413,
+ "asures": 25414,
+ "▁válto": 25415,
+ "BASE": 25416,
+ "▁disappear": 25417,
+ "ския": 25418,
+ "▁conocido": 25419,
+ "▁Нау": 25420,
+ "▁Libert": 25421,
+ "▁Harold": 25422,
+ "▁lifetime": 25423,
+ "▁Tür": 25424,
+ "▁zawod": 25425,
+ "omic": 25426,
+ "▁Retrieved": 25427,
+ "architecture": 25428,
+ "čka": 25429,
+ "iformes": 25430,
+ "development": 25431,
+ "ordnung": 25432,
+ "Inf": 25433,
+ "leben": 25434,
+ "▁Stars": 25435,
+ "signal": 25436,
+ "▁grammar": 25437,
+ "▁corso": 25438,
+ "▁Wagner": 25439,
+ "▁geht": 25440,
+ "▁royale": 25441,
+ "warn": 25442,
+ "umbled": 25443,
+ "▁instit": 25444,
+ "▁Ши": 25445,
+ "hh": 25446,
+ "▁refuge": 25447,
+ "▁favorite": 25448,
+ "ierto": 25449,
+ "▁condado": 25450,
+ "▁Ther": 25451,
+ "▁человека": 25452,
+ "▁Food": 25453,
+ "▁seizo": 25454,
+ "▁Initialize": 25455,
+ "▁connu": 25456,
+ "▁overlap": 25457,
+ "▁Emil": 25458,
+ "▁Martí": 25459,
+ "▁жовтня": 25460,
+ "erva": 25461,
+ "▁boats": 25462,
+ "ações": 25463,
+ "▁derrot": 25464,
+ "▁malloc": 25465,
+ "▁conject": 25466,
+ "jk": 25467,
+ "▁sare": 25468,
+ "лемен": 25469,
+ "▁sums": 25470,
+ "Authorization": 25471,
+ "▁Kun": 25472,
+ "]$,": 25473,
+ "gemeinde": 25474,
+ "odot": 25475,
+ "defin": 25476,
+ "▁emission": 25477,
+ "▁Крас": 25478,
+ "▁appart": 25479,
+ "▁stopping": 25480,
+ "▁Сред": 25481,
+ "▁conjug": 25482,
+ "▁insight": 25483,
+ "▁Broadcast": 25484,
+ "▁PMID": 25485,
+ "▁advantages": 25486,
+ "enes": 25487,
+ "▁residence": 25488,
+ "ljen": 25489,
+ "isseur": 25490,
+ "▁pubblicato": 25491,
+ "▁GitHub": 25492,
+ "▁Peru": 25493,
+ "▁galaxies": 25494,
+ "▁annotations": 25495,
+ "gas": 25496,
+ "▁répond": 25497,
+ "Js": 25498,
+ "▁independently": 25499,
+ "NP": 25500,
+ "▁inqu": 25501,
+ "▁grounds": 25502,
+ "Components": 25503,
+ "▁anten": 25504,
+ "▁вз": 25505,
+ "▁hos": 25506,
+ "▁sint": 25507,
+ "▁hiding": 25508,
+ "▁województ": 25509,
+ "Messages": 25510,
+ "▁показа": 25511,
+ "===": 25512,
+ "▁Abstract": 25513,
+ "▁läng": 25514,
+ "▁Formula": 25515,
+ "dawn": 25516,
+ "▁designs": 25517,
+ "Img": 25518,
+ "▁Portuguese": 25519,
+ "▁incluy": 25520,
+ "avigator": 25521,
+ "▁Brothers": 25522,
+ "▁continent": 25523,
+ "▁evidently": 25524,
+ "race": 25525,
+ "цького": 25526,
+ "▁reck": 25527,
+ "▁серпня": 25528,
+ "▁Grey": 25529,
+ "▁appeal": 25530,
+ "▁unlike": 25531,
+ "▁powershell": 25532,
+ "▁racc": 25533,
+ "fers": 25534,
+ "▁burning": 25535,
+ "fasst": 25536,
+ "installed": 25537,
+ "▁Give": 25538,
+ "▁colonial": 25539,
+ "▁€": 25540,
+ "▁Rö": 25541,
+ "▁christ": 25542,
+ "nehm": 25543,
+ "там": 25544,
+ "▁corpo": 25545,
+ "▁convirti": 25546,
+ "yter": 25547,
+ "Sym": 25548,
+ "▁Greece": 25549,
+ "▁moth": 25550,
+ "▁Johan": 25551,
+ "▁monarch": 25552,
+ "▁Download": 25553,
+ "▁craft": 25554,
+ "už": 25555,
+ "▁Luke": 25556,
+ "▁suffix": 25557,
+ "\\/": 25558,
+ "Have": 25559,
+ "▁карь": 25560,
+ "▁comfortable": 25561,
+ "▁tips": 25562,
+ "▁Після": 25563,
+ "▁броја": 25564,
+ "▁информа": 25565,
+ "MQ": 25566,
+ "бран": 25567,
+ "▁tx": 25568,
+ "▁slaves": 25569,
+ "▁firewall": 25570,
+ "▁Forces": 25571,
+ "atif": 25572,
+ "▁Quellen": 25573,
+ "▁théâtre": 25574,
+ "льных": 25575,
+ "▁расположен": 25576,
+ "▁Details": 25577,
+ "ką": 25578,
+ "▁longitud": 25579,
+ "INST": 25580,
+ "▁naval": 25581,
+ "Fernseh": 25582,
+ "essel": 25583,
+ "Grad": 25584,
+ "▁belang": 25585,
+ "▁aggi": 25586,
+ "ZygoteInit": 25587,
+ "łów": 25588,
+ "▁Sug": 25589,
+ "sil": 25590,
+ "▁exterior": 25591,
+ "щі": 25592,
+ "ORD": 25593,
+ "enser": 25594,
+ "▁rapide": 25595,
+ "▁темпера": 25596,
+ "incie": 25597,
+ "Si": 25598,
+ "avam": 25599,
+ "arded": 25600,
+ "▁Added": 25601,
+ "Endpoint": 25602,
+ "hardt": 25603,
+ "стран": 25604,
+ "▁estilo": 25605,
+ "▁Haz": 25606,
+ "▁musste": 25607,
+ "uo": 25608,
+ "iii": 25609,
+ "▁ří": 25610,
+ "anzen": 25611,
+ "жений": 25612,
+ "aha": 25613,
+ "ARNING": 25614,
+ "▁renov": 25615,
+ "▁divine": 25616,
+ "▁convinced": 25617,
+ "▁humans": 25618,
+ "▁departure": 25619,
+ "▁Mediter": 25620,
+ "qa": 25621,
+ "▁possessed": 25622,
+ "▁церкви": 25623,
+ "giv": 25624,
+ "▁свої": 25625,
+ "▁Ortste": 25626,
+ "Rich": 25627,
+ "puis": 25628,
+ "increment": 25629,
+ "▁Hannover": 25630,
+ "▁ucz": 25631,
+ "Done": 25632,
+ "▁alguns": 25633,
+ "FIX": 25634,
+ "▁Heritage": 25635,
+ "removeClass": 25636,
+ "фер": 25637,
+ "▁abc": 25638,
+ "Dr": 25639,
+ "▁семей": 25640,
+ "{:": 25641,
+ "▁seule": 25642,
+ "zeichnungen": 25643,
+ "addy": 25644,
+ "▁París": 25645,
+ "üsseld": 25646,
+ "▁reception": 25647,
+ "folio": 25648,
+ "tiny": 25649,
+ "▁recensement": 25650,
+ "▁Nur": 25651,
+ "▁kier": 25652,
+ "▁gmina": 25653,
+ "staat": 25654,
+ "ándose": 25655,
+ "ческая": 25656,
+ "▁speaker": 25657,
+ "▁exponential": 25658,
+ "▁Dieu": 25659,
+ "▁приз": 25660,
+ "▁Rafael": 25661,
+ "▁ggplot": 25662,
+ "▁Template": 25663,
+ "oure": 25664,
+ "▁Inner": 25665,
+ "ogne": 25666,
+ "igare": 25667,
+ "▁Arte": 25668,
+ "▁Cov": 25669,
+ "▁aufgrund": 25670,
+ "▁Бы": 25671,
+ "▁ceremony": 25672,
+ "▁Spart": 25673,
+ "jective": 25674,
+ "yi": 25675,
+ "▁inizi": 25676,
+ "▁latin": 25677,
+ "▁Nevertheless": 25678,
+ "▁Done": 25679,
+ "тря": 25680,
+ "▁Arr": 25681,
+ "season": 25682,
+ "▁складу": 25683,
+ "▁podczas": 25684,
+ "▁Beautiful": 25685,
+ "▁Weltkrieg": 25686,
+ "▁зо": 25687,
+ "▁overcome": 25688,
+ "▁Praha": 25689,
+ "▁району": 25690,
+ "▁subscription": 25691,
+ "igent": 25692,
+ "▁пока": 25693,
+ "latex": 25694,
+ "▁beach": 25695,
+ "▁роках": 25696,
+ "geg": 25697,
+ "▁probl": 25698,
+ "arguments": 25699,
+ "▁organizations": 25700,
+ "▁Nan": 25701,
+ "▁stones": 25702,
+ "▁Hunter": 25703,
+ "▁regularly": 25704,
+ "шого": 25705,
+ "▁flexible": 25706,
+ "opts": 25707,
+ "ář": 25708,
+ "witz": 25709,
+ "▁')": 25710,
+ "PASS": 25711,
+ "▁kraj": 25712,
+ "▁fake": 25713,
+ "heits": 25714,
+ "osph": 25715,
+ "parseInt": 25716,
+ "FALSE": 25717,
+ "▁profess": 25718,
+ "people": 25719,
+ "▁precip": 25720,
+ "dirname": 25721,
+ "▁perpet": 25722,
+ "▁Updated": 25723,
+ "rayed": 25724,
+ "▁provoc": 25725,
+ "▁травня": 25726,
+ "▁categorie": 25727,
+ "▁тео": 25728,
+ "сну": 25729,
+ "otr": 25730,
+ "▁Верхов": 25731,
+ "▁compét": 25732,
+ "Cost": 25733,
+ "▁wider": 25734,
+ "▁Obviously": 25735,
+ "писан": 25736,
+ "▁настоя": 25737,
+ "▁seeking": 25738,
+ "()),": 25739,
+ "▁équipe": 25740,
+ "▁commits": 25741,
+ "▁Svens": 25742,
+ "ябре": 25743,
+ "atern": 25744,
+ "▁heter": 25745,
+ "▁Bootstrap": 25746,
+ "éné": 25747,
+ "▁derivatives": 25748,
+ "▁Detroit": 25749,
+ "▁provincial": 25750,
+ "onomie": 25751,
+ "EB": 25752,
+ "▁cuer": 25753,
+ "▁относи": 25754,
+ "▁ней": 25755,
+ ")».": 25756,
+ "▁Ciudad": 25757,
+ "IAL": 25758,
+ "zyst": 25759,
+ ")\")": 25760,
+ "▁Alc": 25761,
+ "blogs": 25762,
+ "▁parmi": 25763,
+ "▁Albums": 25764,
+ "▁Boliv": 25765,
+ "▁clés": 25766,
+ "Products": 25767,
+ "uerdo": 25768,
+ "▁gelang": 25769,
+ "znik": 25770,
+ "hagen": 25771,
+ "anonymous": 25772,
+ "▁svg": 25773,
+ "▁Conseil": 25774,
+ "▁Ari": 25775,
+ "coli": 25776,
+ "▁czy": 25777,
+ "▁CV": 25778,
+ "▁ford": 25779,
+ "▁Außer": 25780,
+ "▁CI": 25781,
+ "▁tempt": 25782,
+ "▁Organisation": 25783,
+ "áš": 25784,
+ "▁cycles": 25785,
+ "▁geslacht": 25786,
+ "▁людей": 25787,
+ "ými": 25788,
+ "▁Spieler": 25789,
+ "efe": 25790,
+ "▁Marvel": 25791,
+ "▁portal": 25792,
+ "▁Серг": 25793,
+ "▁grado": 25794,
+ "▁handlers": 25795,
+ "▁Interface": 25796,
+ "AME": 25797,
+ "▁seriously": 25798,
+ "▁Binding": 25799,
+ "▁Rang": 25800,
+ "▁nada": 25801,
+ "oce": 25802,
+ "▁integra": 25803,
+ "ocracy": 25804,
+ "▁альбо": 25805,
+ "▁stability": 25806,
+ "Uns": 25807,
+ "▁veter": 25808,
+ "------+": 25809,
+ "▁serait": 25810,
+ "▁omitted": 25811,
+ "▁uncertainty": 25812,
+ "onian": 25813,
+ "▁resto": 25814,
+ "▁желез": 25815,
+ "▁одной": 25816,
+ "▁Bevölkerung": 25817,
+ "▁Kraft": 25818,
+ "стр": 25819,
+ "▁Moscow": 25820,
+ "lane": 25821,
+ "arab": 25822,
+ "▁spole": 25823,
+ "▁своего": 25824,
+ "?:": 25825,
+ "START": 25826,
+ "▁интер": 25827,
+ "▁sympt": 25828,
+ "▁Lorenzo": 25829,
+ "▁ejec": 25830,
+ "▁prosper": 25831,
+ "DAT": 25832,
+ "лимпий": 25833,
+ "▁shapes": 25834,
+ "valueOf": 25835,
+ "▁associate": 25836,
+ "▁Medien": 25837,
+ "ENV": 25838,
+ "▁сре": 25839,
+ "▁државе": 25840,
+ "▁theories": 25841,
+ "heb": 25842,
+ "▁Wayne": 25843,
+ "▁StringBuilder": 25844,
+ "iwers": 25845,
+ "▁Maps": 25846,
+ "Phys": 25847,
+ "\\}\\": 25848,
+ "▁Parte": 25849,
+ "▁Hudson": 25850,
+ "лон": 25851,
+ "Lng": 25852,
+ "▁ры": 25853,
+ "стей": 25854,
+ "lau": 25855,
+ "ancer": 25856,
+ "▁Coppa": 25857,
+ "▁війсь": 25858,
+ "▁ucc": 25859,
+ "▁Pattern": 25860,
+ "▁garbage": 25861,
+ "▁González": 25862,
+ "▁Encyclop": 25863,
+ "etten": 25864,
+ "External": 25865,
+ "REF": 25866,
+ ">;": 25867,
+ "lijke": 25868,
+ "▁intersect": 25869,
+ "▁Unless": 25870,
+ "▁deeper": 25871,
+ "▁жі": 25872,
+ "dent": 25873,
+ "lef": 25874,
+ "▁chanson": 25875,
+ "▁diffus": 25876,
+ "▁primi": 25877,
+ "▁Wieder": 25878,
+ "▁aws": 25879,
+ "owana": 25880,
+ "▁sociale": 25881,
+ "ikk": 25882,
+ "льной": 25883,
+ "▁divisions": 25884,
+ "лосо": 25885,
+ "▁Claud": 25886,
+ "▁Ya": 25887,
+ "▁voce": 25888,
+ "▁Branch": 25889,
+ "▁fitted": 25890,
+ "orr": 25891,
+ "ôtel": 25892,
+ "stroke": 25893,
+ "listener": 25894,
+ "iman": 25895,
+ "восто": 25896,
+ "▁Shah": 25897,
+ "Introduction": 25898,
+ "▁newline": 25899,
+ "▁tile": 25900,
+ "']))": 25901,
+ "▁travaux": 25902,
+ "CONFIG": 25903,
+ "▁quadratic": 25904,
+ "onneur": 25905,
+ "▁Giorg": 25906,
+ "▁identific": 25907,
+ "éricaine": 25908,
+ "▁UIView": 25909,
+ "▁Liberal": 25910,
+ "▁Koch": 25911,
+ "▁Berliner": 25912,
+ "▁notifications": 25913,
+ "▁Susan": 25914,
+ "▁cadre": 25915,
+ "▁Kloster": 25916,
+ "▁examine": 25917,
+ "▁един": 25918,
+ "▁UNION": 25919,
+ "▁alten": 25920,
+ "▁finit": 25921,
+ "▁pedig": 25922,
+ "cyk": 25923,
+ "▁mouvement": 25924,
+ "IOS": 25925,
+ "▁британ": 25926,
+ "▁bout": 25927,
+ "▁автор": 25928,
+ "ництво": 25929,
+ "ето": 25930,
+ "lera": 25931,
+ "cls": 25932,
+ "▁Ley": 25933,
+ "amy": 25934,
+ "agens": 25935,
+ "ashed": 25936,
+ "▁okrę": 25937,
+ "гро": 25938,
+ "ellett": 25939,
+ "▁Fellow": 25940,
+ "▁manifold": 25941,
+ "$),": 25942,
+ "lder": 25943,
+ "▁voz": 25944,
+ "▁begg": 25945,
+ "▁baron": 25946,
+ "▁fid": 25947,
+ "▁firing": 25948,
+ "ilda": 25949,
+ "dek": 25950,
+ "AU": 25951,
+ "itare": 25952,
+ "▁Ara": 25953,
+ "▁Exit": 25954,
+ "▁cinemat": 25955,
+ "▁intros": 25956,
+ "▁contacts": 25957,
+ "пени": 25958,
+ "▁möglich": 25959,
+ "▁Singapore": 25960,
+ "ström": 25961,
+ "▁Hern": 25962,
+ "▁sixth": 25963,
+ "▁publications": 25964,
+ "vie": 25965,
+ "▁Hat": 25966,
+ "▁accepting": 25967,
+ "ác": 25968,
+ "stwo": 25969,
+ "▁quietly": 25970,
+ "Photo": 25971,
+ "▁basket": 25972,
+ "▁eigenvalues": 25973,
+ "▁médec": 25974,
+ "▁Olimp": 25975,
+ "▁церков": 25976,
+ "alin": 25977,
+ "consum": 25978,
+ "▁lassen": 25979,
+ "▁анти": 25980,
+ "▁Seq": 25981,
+ "\";\r": 25982,
+ "rare": 25983,
+ "▁$|\\": 25984,
+ "▁nick": 25985,
+ "dflare": 25986,
+ "Vec": 25987,
+ "bindung": 25988,
+ "▁bg": 25989,
+ "changes": 25990,
+ "Days": 25991,
+ "▁Mouse": 25992,
+ "▁waited": 25993,
+ "▁Tomatoes": 25994,
+ "▁fas": 25995,
+ "verte": 25996,
+ "▁succession": 25997,
+ "сор": 25998,
+ "▁sols": 25999,
+ "▁Render": 26000,
+ "▁leadership": 26001,
+ "▁significance": 26002,
+ "▁gauche": 26003,
+ "cano": 26004,
+ "▁Pie": 26005,
+ "ensoort": 26006,
+ "▁cambio": 26007,
+ "▁уз": 26008,
+ "▁endeav": 26009,
+ "Completed": 26010,
+ "▁Архивная": 26011,
+ "jd": 26012,
+ "órico": 26013,
+ "▁churches": 26014,
+ "▁animate": 26015,
+ "SG": 26016,
+ "compute": 26017,
+ "▁uniformly": 26018,
+ "INIT": 26019,
+ "lles": 26020,
+ "HttpRequest": 26021,
+ "Ко": 26022,
+ "Diff": 26023,
+ "▁sah": 26024,
+ "airo": 26025,
+ "maybe": 26026,
+ "UTE": 26027,
+ "▁Dow": 26028,
+ "human": 26029,
+ "▁aurait": 26030,
+ "dark": 26031,
+ "▁repair": 26032,
+ "▁ner": 26033,
+ "▁Dabei": 26034,
+ "▁Botan": 26035,
+ "Original": 26036,
+ "ază": 26037,
+ "▁NAT": 26038,
+ "imper": 26039,
+ "▁Youth": 26040,
+ "thes": 26041,
+ "▁округа": 26042,
+ "▁Flo": 26043,
+ "▁breakfast": 26044,
+ "urls": 26045,
+ "▁übernahm": 26046,
+ "ários": 26047,
+ "▁Orange": 26048,
+ "▁Affairs": 26049,
+ "ske": 26050,
+ "▁notify": 26051,
+ "imoine": 26052,
+ "▁Arena": 26053,
+ "▁liberal": 26054,
+ "▁obec": 26055,
+ "ifa": 26056,
+ "guez": 26057,
+ "iono": 26058,
+ "ператор": 26059,
+ "▁retained": 26060,
+ "failed": 26061,
+ "bine": 26062,
+ "тных": 26063,
+ "▁CGRect": 26064,
+ "camera": 26065,
+ "idenote": 26066,
+ "KB": 26067,
+ "▁lights": 26068,
+ "▁Pictures": 26069,
+ "▁Squadron": 26070,
+ "▁Volk": 26071,
+ "▁burg": 26072,
+ ",]": 26073,
+ "Gi": 26074,
+ "êque": 26075,
+ "makeText": 26076,
+ "▁everybody": 26077,
+ "▁Hyper": 26078,
+ "▁Deux": 26079,
+ "▁glory": 26080,
+ "presentation": 26081,
+ "onica": 26082,
+ "▁frère": 26083,
+ "aget": 26084,
+ "▁hints": 26085,
+ "▁tunnel": 26086,
+ "▁Ej": 26087,
+ "ális": 26088,
+ "▁Viv": 26089,
+ "ственных": 26090,
+ "▁caps": 26091,
+ "PART": 26092,
+ "oci": 26093,
+ "▁prices": 26094,
+ "currency": 26095,
+ "▁achter": 26096,
+ "romagnet": 26097,
+ "gender": 26098,
+ "▁suis": 26099,
+ "versions": 26100,
+ "▁Training": 26101,
+ "inside": 26102,
+ "ege": 26103,
+ "▁totale": 26104,
+ "▁Daar": 26105,
+ "▁grudnia": 26106,
+ "▁Ier": 26107,
+ "▁occasions": 26108,
+ "▁kde": 26109,
+ "▁tensorflow": 26110,
+ "▁ór": 26111,
+ "Methods": 26112,
+ "▁looping": 26113,
+ "▁directeur": 26114,
+ "kę": 26115,
+ "▁isomorphism": 26116,
+ "▁João": 26117,
+ "▁aligned": 26118,
+ "онов": 26119,
+ "urger": 26120,
+ "▁nova": 26121,
+ "morrow": 26122,
+ "altern": 26123,
+ "HD": 26124,
+ "▁marqu": 26125,
+ "ativas": 26126,
+ "ggreg": 26127,
+ "▁ancien": 26128,
+ "nit": 26129,
+ "▁secured": 26130,
+ "mier": 26131,
+ "▁Ole": 26132,
+ "▁инте": 26133,
+ "▁minus": 26134,
+ "▁clearer": 26135,
+ "▁nello": 26136,
+ "▁információk": 26137,
+ "▁propre": 26138,
+ "{.": 26139,
+ "ilog": 26140,
+ "▁Quick": 26141,
+ "▁accus": 26142,
+ "employee": 26143,
+ "▁зу": 26144,
+ "цький": 26145,
+ "фіцій": 26146,
+ "▁публи": 26147,
+ "▁bent": 26148,
+ "▁позво": 26149,
+ "▁Пор": 26150,
+ "ází": 26151,
+ "ánico": 26152,
+ "emptyset": 26153,
+ "▁surtout": 26154,
+ "reno": 26155,
+ "unya": 26156,
+ "▁уез": 26157,
+ "▁Millionen": 26158,
+ "▁listopada": 26159,
+ "▁Maine": 26160,
+ "▁grupos": 26161,
+ "▁Storage": 26162,
+ "▁apple": 26163,
+ "▁Lö": 26164,
+ "oused": 26165,
+ "дро": 26166,
+ "sci": 26167,
+ "▁hibernate": 26168,
+ "dog": 26169,
+ "▁восто": 26170,
+ "▁intensity": 26171,
+ "legend": 26172,
+ "▁Wille": 26173,
+ "▁szerint": 26174,
+ "gesellschaft": 26175,
+ "▁Living": 26176,
+ "allo": 26177,
+ "▁Split": 26178,
+ "dru": 26179,
+ "need": 26180,
+ "▁Джон": 26181,
+ "▁Swiss": 26182,
+ "▁spraw": 26183,
+ "▁beho": 26184,
+ "▁fotograf": 26185,
+ "▁rencontre": 26186,
+ "▁kis": 26187,
+ "▁signing": 26188,
+ "akult": 26189,
+ "▁indexing": 26190,
+ "apor": 26191,
+ "▁conception": 26192,
+ "aggreg": 26193,
+ "▁Савез": 26194,
+ "▁affair": 26195,
+ "ění": 26196,
+ "August": 26197,
+ "▁секре": 26198,
+ "▁mieszkań": 26199,
+ "UIImage": 26200,
+ "▁bishop": 26201,
+ "▁servants": 26202,
+ "▁trail": 26203,
+ "digit": 26204,
+ "▁joins": 26205,
+ "▁Near": 26206,
+ "öffentlich": 26207,
+ ">{": 26208,
+ "▁skład": 26209,
+ "geführt": 26210,
+ "▁Holz": 26211,
+ "▁Militär": 26212,
+ "achi": 26213,
+ "Upper": 26214,
+ "pine": 26215,
+ "utzt": 26216,
+ "▁nuova": 26217,
+ "ibration": 26218,
+ "▁Bien": 26219,
+ "▁первый": 26220,
+ "▁Creating": 26221,
+ "Once": 26222,
+ "▁einmal": 26223,
+ "▁geometric": 26224,
+ "stvo": 26225,
+ "▁kW": 26226,
+ "▁decomposition": 26227,
+ "▁comedy": 26228,
+ "▁activation": 26229,
+ "▁angry": 26230,
+ "illeurs": 26231,
+ "▁instantly": 26232,
+ "▁suggesting": 26233,
+ "▁Clay": 26234,
+ "cot": 26235,
+ "▁Gén": 26236,
+ "($(": 26237,
+ "unwrap": 26238,
+ "▁lifted": 26239,
+ "▁Kit": 26240,
+ "▁linea": 26241,
+ "ок": 26242,
+ "hart": 26243,
+ "->_": 26244,
+ "▁nuit": 26245,
+ "▁Issue": 26246,
+ "лии": 26247,
+ "▁röm": 26248,
+ "Tasks": 26249,
+ "▁Sr": 26250,
+ "▁seis": 26251,
+ "asia": 26252,
+ "}}$.": 26253,
+ ":{": 26254,
+ "controls": 26255,
+ "▁Stim": 26256,
+ "▁Recht": 26257,
+ "ociación": 26258,
+ "▁Natal": 26259,
+ "▁Philippines": 26260,
+ "ulen": 26261,
+ "Fixed": 26262,
+ "▁switched": 26263,
+ "Zip": 26264,
+ "ospel": 26265,
+ "▁начале": 26266,
+ "▁Blan": 26267,
+ "urst": 26268,
+ "▁autour": 26269,
+ "Ca": 26270,
+ "▁latitude": 26271,
+ "▁Frei": 26272,
+ "▁Musée": 26273,
+ "▁Kurz": 26274,
+ "▁região": 26275,
+ "swap": 26276,
+ "▁hate": 26277,
+ "▁modifications": 26278,
+ "▁Ком": 26279,
+ "▁Antoine": 26280,
+ "uga": 26281,
+ "RECT": 26282,
+ "éter": 26283,
+ "GROUP": 26284,
+ "▁sacrific": 26285,
+ "▁Whe": 26286,
+ "▁Stevens": 26287,
+ "ologische": 26288,
+ "Summary": 26289,
+ "obs": 26290,
+ "hnen": 26291,
+ "<%=": 26292,
+ "dienst": 26293,
+ "remark": 26294,
+ "▁veröffentlicht": 26295,
+ "ел": 26296,
+ "▁Mock": 26297,
+ "▁Льв": 26298,
+ "▁três": 26299,
+ "gb": 26300,
+ "▁celebrated": 26301,
+ "▁Eb": 26302,
+ "▁costa": 26303,
+ "▁Geographic": 26304,
+ "▁attachment": 26305,
+ "mannschaft": 26306,
+ "▁dependence": 26307,
+ "��": 26308,
+ "▁attitude": 26309,
+ "etal": 26310,
+ "vic": 26311,
+ "baut": 26312,
+ "▁дов": 26313,
+ "▁interven": 26314,
+ "▁Gü": 26315,
+ "ónica": 26316,
+ "▁Pon": 26317,
+ "▁disponible": 26318,
+ "▁Feb": 26319,
+ "▁worship": 26320,
+ "▁Specifically": 26321,
+ "Hy": 26322,
+ "iju": 26323,
+ "▁cb": 26324,
+ "▁spac": 26325,
+ "leveland": 26326,
+ "▁localidad": 26327,
+ "▁preceding": 26328,
+ "▁Hessen": 26329,
+ "xp": 26330,
+ "▁Wein": 26331,
+ "▁Româ": 26332,
+ "▁giorno": 26333,
+ "▁квітня": 26334,
+ "llaços": 26335,
+ "▁Academia": 26336,
+ "▁kül": 26337,
+ "▁Års": 26338,
+ "▁нај": 26339,
+ "uclide": 26340,
+ "Internet": 26341,
+ "orton": 26342,
+ "▁corn": 26343,
+ "ями": 26344,
+ "▁\"*": 26345,
+ "▁Felix": 26346,
+ "apat": 26347,
+ "▁свои": 26348,
+ "MIT": 26349,
+ "made": 26350,
+ "▁locomot": 26351,
+ "хода": 26352,
+ "FP": 26353,
+ "▁pm": 26354,
+ ".*;": 26355,
+ "▁Hamm": 26356,
+ "`}": 26357,
+ "LayoutInflater": 26358,
+ "==\"": 26359,
+ "▁Eur": 26360,
+ "▁dogs": 26361,
+ "жении": 26362,
+ "▁azon": 26363,
+ "▁emulator": 26364,
+ "▁ricon": 26365,
+ "beeld": 26366,
+ "▁ну": 26367,
+ "▁approximate": 26368,
+ "LM": 26369,
+ "▁Bond": 26370,
+ "▁enh": 26371,
+ "ędz": 26372,
+ "▁solit": 26373,
+ "RelativeLayout": 26374,
+ "eteor": 26375,
+ "amentos": 26376,
+ "▁indirect": 26377,
+ "iből": 26378,
+ "▁gros": 26379,
+ "▁Originals": 26380,
+ "commands": 26381,
+ "Export": 26382,
+ "▁Avec": 26383,
+ "▁solemn": 26384,
+ "▁correction": 26385,
+ "▁проводи": 26386,
+ "▁Mosk": 26387,
+ "▁подо": 26388,
+ "▁gebied": 26389,
+ "▁następ": 26390,
+ "▁Driver": 26391,
+ "▁Ook": 26392,
+ "▁Vec": 26393,
+ "▁lungo": 26394,
+ "ficos": 26395,
+ "▁svol": 26396,
+ "▁kid": 26397,
+ "nja": 26398,
+ "▁Hr": 26399,
+ "▁поддер": 26400,
+ "▁visibility": 26401,
+ "▁Méd": 26402,
+ "▁cpu": 26403,
+ "discussion": 26404,
+ "Asset": 26405,
+ "▁defense": 26406,
+ "▁Anyone": 26407,
+ "▁Justin": 26408,
+ "iszt": 26409,
+ "▁Collins": 26410,
+ "▁Valent": 26411,
+ "▁Pale": 26412,
+ "▁fuel": 26413,
+ "▁nose": 26414,
+ "ríguez": 26415,
+ "▁Schles": 26416,
+ "▁Malays": 26417,
+ "▁commut": 26418,
+ "dro": 26419,
+ "uing": 26420,
+ "▁Rico": 26421,
+ "▁Emma": 26422,
+ "orp": 26423,
+ "▁Kirk": 26424,
+ "▁Quando": 26425,
+ "▁Neue": 26426,
+ "▁demande": 26427,
+ "▁Cover": 26428,
+ "▁rescue": 26429,
+ "▁gewählt": 26430,
+ "▁Calendar": 26431,
+ "▁Madonna": 26432,
+ "WP": 26433,
+ "oshi": 26434,
+ "▁Maven": 26435,
+ "▁belle": 26436,
+ "▁wx": 26437,
+ "▁sugar": 26438,
+ "▁Betrieb": 26439,
+ "▁equilibrium": 26440,
+ "EAR": 26441,
+ "▁texts": 26442,
+ "слов": 26443,
+ "▁czerwca": 26444,
+ "▁Düsseld": 26445,
+ "▁ELSE": 26446,
+ "▁amery": 26447,
+ "▁ani": 26448,
+ "▁obey": 26449,
+ "▁Nell": 26450,
+ "▁inne": 26451,
+ "▁тро": 26452,
+ "FD": 26453,
+ "cco": 26454,
+ "▁Zob": 26455,
+ "alette": 26456,
+ "▁május": 26457,
+ "ected": 26458,
+ "▁Turkey": 26459,
+ "▁Whether": 26460,
+ "qi": 26461,
+ "▁што": 26462,
+ "▁headquarters": 26463,
+ "endi": 26464,
+ "arus": 26465,
+ "opus": 26466,
+ "▁золо": 26467,
+ "▁destru": 26468,
+ "▁Lok": 26469,
+ "▁satisfaction": 26470,
+ "()\r": 26471,
+ "▁Тер": 26472,
+ "Jose": 26473,
+ "▁conquer": 26474,
+ "▁Effect": 26475,
+ "LayoutParams": 26476,
+ "iez": 26477,
+ "▁externs": 26478,
+ "▁gegenüber": 26479,
+ "▁ESP": 26480,
+ "olta": 26481,
+ "processor": 26482,
+ "▁Kult": 26483,
+ "▁Atlanta": 26484,
+ "▁tier": 26485,
+ "Operator": 26486,
+ "▁диа": 26487,
+ "▁пись": 26488,
+ "▁groß": 26489,
+ "▁hearts": 26490,
+ "▁millimeter": 26491,
+ "although": 26492,
+ "alles": 26493,
+ "▁Magic": 26494,
+ "training": 26495,
+ "oline": 26496,
+ "▁органі": 26497,
+ ">\\<^": 26498,
+ "ціаль": 26499,
+ "exports": 26500,
+ "Workbook": 26501,
+ "▁вересня": 26502,
+ "▁teles": 26503,
+ "▁economy": 26504,
+ "▁trap": 26505,
+ "▁refuse": 26506,
+ "▁stranger": 26507,
+ "▁instinct": 26508,
+ "пода": 26509,
+ "olan": 26510,
+ "▁ning": 26511,
+ "inflate": 26512,
+ "itatea": 26513,
+ "acks": 26514,
+ "▁Joy": 26515,
+ "FLAG": 26516,
+ "ailand": 26517,
+ "▁sorti": 26518,
+ "▁впер": 26519,
+ "▁pén": 26520,
+ "Nothing": 26521,
+ "▁száz": 26522,
+ "▁Áng": 26523,
+ "▁AUT": 26524,
+ "Actions": 26525,
+ "Every": 26526,
+ "▁червня": 26527,
+ "▁автомо": 26528,
+ "▁routine": 26529,
+ "▁estruct": 26530,
+ "▁Gang": 26531,
+ "▁holes": 26532,
+ "thesis": 26533,
+ "▁concl": 26534,
+ "▁pé": 26535,
+ "riers": 26536,
+ "ровой": 26537,
+ "adic": 26538,
+ "Speed": 26539,
+ "▁commanded": 26540,
+ "▁Nazionale": 26541,
+ "Managed": 26542,
+ "▁DECLARE": 26543,
+ "▁sedan": 26544,
+ "Strings": 26545,
+ "▁sacred": 26546,
+ "tersuch": 26547,
+ "▁abitanti": 26548,
+ "brit": 26549,
+ "▁NCAA": 26550,
+ "▁СП": 26551,
+ "▁aged": 26552,
+ "▁Chiesa": 26553,
+ "▁revision": 26554,
+ "opro": 26555,
+ "▁overwrite": 26556,
+ "embros": 26557,
+ "▁sortie": 26558,
+ "▁otten": 26559,
+ "xiv": 26560,
+ "▁deli": 26561,
+ "▁Asp": 26562,
+ "▁balls": 26563,
+ "kaf": 26564,
+ "▁brave": 26565,
+ "▁всего": 26566,
+ "egn": 26567,
+ "jpeg": 26568,
+ "▁Osten": 26569,
+ "Constants": 26570,
+ "▁Infantry": 26571,
+ "▁Nev": 26572,
+ "▁яких": 26573,
+ "▁муниципа": 26574,
+ "cija": 26575,
+ "▁poem": 26576,
+ "▁negro": 26577,
+ "хар": 26578,
+ "▁Ask": 26579,
+ "▁avo": 26580,
+ "▁Meyer": 26581,
+ "▁Westen": 26582,
+ "▁oko": 26583,
+ "agin": 26584,
+ "▁Süden": 26585,
+ "entries": 26586,
+ "▁Republik": 26587,
+ "CollectionView": 26588,
+ "-------": 26589,
+ "▁firefox": 26590,
+ "▁alcune": 26591,
+ "▁фото": 26592,
+ "▁отрима": 26593,
+ "~~~~~~~~": 26594,
+ "▁Раз": 26595,
+ "▁Complex": 26596,
+ "▁pia": 26597,
+ "▁publicada": 26598,
+ "wei": 26599,
+ "cedure": 26600,
+ "occupation": 26601,
+ "▁medicine": 26602,
+ "▁drove": 26603,
+ "Problem": 26604,
+ "▁beginner": 26605,
+ "▁thoroughly": 26606,
+ "uria": 26607,
+ "avant": 26608,
+ "ucha": 26609,
+ "▁lever": 26610,
+ "▁teatro": 26611,
+ "AVA": 26612,
+ "squ": 26613,
+ "trat": 26614,
+ "ivatal": 26615,
+ "▁dirty": 26616,
+ "▁seconde": 26617,
+ "▁gravit": 26618,
+ "▁proposition": 26619,
+ "hbar": 26620,
+ "omini": 26621,
+ "▁”": 26622,
+ "▁Camil": 26623,
+ "▁queen": 26624,
+ "modifier": 26625,
+ "Jan": 26626,
+ "▁lyr": 26627,
+ "ComboBox": 26628,
+ "ionic": 26629,
+ "▁holy": 26630,
+ "▁Sebastian": 26631,
+ "|_{": 26632,
+ "▁{@": 26633,
+ "▁можно": 26634,
+ "▁Creative": 26635,
+ "▁interess": 26636,
+ "▁CT": 26637,
+ "ições": 26638,
+ "▁chant": 26639,
+ "▁współ": 26640,
+ "▁Мексика": 26641,
+ "▁ranked": 26642,
+ "▁października": 26643,
+ "▁brut": 26644,
+ "▁farther": 26645,
+ "▁Verb": 26646,
+ "▁Seven": 26647,
+ "lbl": 26648,
+ "▁mentions": 26649,
+ "▁Fight": 26650,
+ "ifen": 26651,
+ "▁bog": 26652,
+ "▁regres": 26653,
+ "▁scoring": 26654,
+ "icane": 26655,
+ "▁Elli": 26656,
+ "▁pierw": 26657,
+ "measure": 26658,
+ "ńskiej": 26659,
+ "#{": 26660,
+ "▁деся": 26661,
+ "▁varmaste": 26662,
+ "▁Unix": 26663,
+ "IZ": 26664,
+ "itié": 26665,
+ "Primary": 26666,
+ "▁Springer": 26667,
+ "üng": 26668,
+ "▁anv": 26669,
+ "▁versione": 26670,
+ "▁shoulders": 26671,
+ "▁брига": 26672,
+ "▁jav": 26673,
+ "ltal": 26674,
+ "▁kallaste": 26675,
+ "▁Mitchell": 26676,
+ "▁wireless": 26677,
+ "▁Ál": 26678,
+ "respons": 26679,
+ "could": 26680,
+ "▁relax": 26681,
+ "Lond": 26682,
+ "ńcz": 26683,
+ "ствовал": 26684,
+ "▁polski": 26685,
+ "enç": 26686,
+ "zar": 26687,
+ "▁dtype": 26688,
+ "owned": 26689,
+ "unknown": 26690,
+ "▁mutable": 26691,
+ "▁siempre": 26692,
+ "▁Montreal": 26693,
+ "▁locate": 26694,
+ "▁traces": 26695,
+ "▁insgesamt": 26696,
+ "▁Nil": 26697,
+ "▁прода": 26698,
+ "▁Warner": 26699,
+ "▁Nau": 26700,
+ "triangle": 26701,
+ "▁concentration": 26702,
+ "▁gentlemen": 26703,
+ "ächt": 26704,
+ "filters": 26705,
+ "incipal": 26706,
+ "VALID": 26707,
+ "▁депута": 26708,
+ "adó": 26709,
+ "▁konst": 26710,
+ "gså": 26711,
+ "agas": 26712,
+ "▁meilleur": 26713,
+ "▁данным": 26714,
+ "єдна": 26715,
+ "encoded": 26716,
+ "<'": 26717,
+ "▁sheets": 26718,
+ "cuador": 26719,
+ "▁використову": 26720,
+ "▁Deput": 26721,
+ "▁manière": 26722,
+ "ąg": 26723,
+ "csol": 26724,
+ ")$-": 26725,
+ "UIView": 26726,
+ "▁millones": 26727,
+ "▁Ehren": 26728,
+ "Sil": 26729,
+ "▁atac": 26730,
+ "▁Cold": 26731,
+ "\"\\": 26732,
+ "▁approached": 26733,
+ "▁Årsmed": 26734,
+ "WM": 26735,
+ "▁Deport": 26736,
+ "mis": 26737,
+ "andbox": 26738,
+ "observ": 26739,
+ "setting": 26740,
+ "ható": 26741,
+ "▁strat": 26742,
+ "▁spre": 26743,
+ "▁personne": 26744,
+ "▁dirige": 26745,
+ "pull": 26746,
+ "dating": 26747,
+ "▁Fact": 26748,
+ "▁manipulate": 26749,
+ "▁MAC": 26750,
+ "▁dej": 26751,
+ "ultimo": 26752,
+ "FX": 26753,
+ "Life": 26754,
+ "▁crack": 26755,
+ "▁mí": 26756,
+ "▁пове": 26757,
+ "▁wore": 26758,
+ "université": 26759,
+ "▁formulas": 26760,
+ "▁Elisabeth": 26761,
+ "plots": 26762,
+ "mile": 26763,
+ "▁menor": 26764,
+ "тил": 26765,
+ "keyword": 26766,
+ "▁Baltimore": 26767,
+ "hrer": 26768,
+ "▁Clement": 26769,
+ "vim": 26770,
+ "rass": 26771,
+ "Take": 26772,
+ "▁című": 26773,
+ "▁Convention": 26774,
+ "atge": 26775,
+ "seed": 26776,
+ "▁Dí": 26777,
+ "▁Spider": 26778,
+ "ahoo": 26779,
+ "▁имеет": 26780,
+ "ührt": 26781,
+ "▁пописа": 26782,
+ "▁Cot": 26783,
+ "▁nobles": 26784,
+ "RESS": 26785,
+ "▁chemin": 26786,
+ "▁główn": 26787,
+ "GG": 26788,
+ "▁Germania": 26789,
+ "▁Alexandre": 26790,
+ "hens": 26791,
+ "swift": 26792,
+ "oop": 26793,
+ "Subview": 26794,
+ "▁requiring": 26795,
+ "ędzy": 26796,
+ "▁fict": 26797,
+ "▁Констан": 26798,
+ "▁déput": 26799,
+ "▁surprising": 26800,
+ "▁deix": 26801,
+ "▁unterschied": 26802,
+ "inson": 26803,
+ "▁Character": 26804,
+ "▁gestion": 26805,
+ "chus": 26806,
+ "comes": 26807,
+ "▁neur": 26808,
+ "▁yeux": 26809,
+ "ollar": 26810,
+ "▁parad": 26811,
+ "▁maggiore": 26812,
+ "TRAN": 26813,
+ "▁votre": 26814,
+ "▁descent": 26815,
+ "▁Icon": 26816,
+ "▁Judge": 26817,
+ "▁occupation": 26818,
+ "eping": 26819,
+ "▁tongue": 26820,
+ "▁Enllaços": 26821,
+ "ruf": 26822,
+ "▁protein": 26823,
+ "▁visitors": 26824,
+ "axy": 26825,
+ "esten": 26826,
+ "blica": 26827,
+ "hw": 26828,
+ "▁spirits": 26829,
+ "▁reduces": 26830,
+ "▁мен": 26831,
+ "▁Lamb": 26832,
+ "▁Mine": 26833,
+ "▁verified": 26834,
+ "▁Baby": 26835,
+ "▁prize": 26836,
+ "вър": 26837,
+ "▁ratings": 26838,
+ "▁fore": 26839,
+ "asha": 26840,
+ "urrence": 26841,
+ "▁intér": 26842,
+ "▁Olímp": 26843,
+ "cra": 26844,
+ "▁computational": 26845,
+ "irche": 26846,
+ ".: ": 26847,
+ "▁illustrated": 26848,
+ "▁Share": 26849,
+ "▁households": 26850,
+ "▁convolution": 26851,
+ "oemd": 26852,
+ "▁zdoby": 26853,
+ "ccc": 26854,
+ "▁quantities": 26855,
+ "Che": 26856,
+ "Should": 26857,
+ "▁genius": 26858,
+ "adj": 26859,
+ "хва": 26860,
+ "Петер": 26861,
+ "EMA": 26862,
+ "▁Rights": 26863,
+ "▁Eli": 26864,
+ "VAR": 26865,
+ "шло": 26866,
+ "▁збір": 26867,
+ "iftung": 26868,
+ "▁contributed": 26869,
+ "zef": 26870,
+ "▁CHAR": 26871,
+ "▁Sib": 26872,
+ "▁Mant": 26873,
+ "▁связи": 26874,
+ "▁javafx": 26875,
+ "▁cependant": 26876,
+ "▁intu": 26877,
+ "▁твор": 26878,
+ "▁Ó": 26879,
+ "guer": 26880,
+ "rado": 26881,
+ "▁Revol": 26882,
+ "▁fémin": 26883,
+ "▁Orleans": 26884,
+ "▁poj": 26885,
+ "▁prez": 26886,
+ "Tex": 26887,
+ "ouwd": 26888,
+ "?(": 26889,
+ "▁LIM": 26890,
+ "istique": 26891,
+ "esar": 26892,
+ "▁heures": 26893,
+ "icki": 26894,
+ "▁dbo": 26895,
+ "skih": 26896,
+ "confirm": 26897,
+ "▁világ": 26898,
+ "▁ciutat": 26899,
+ "▁DR": 26900,
+ "▁Hawai": 26901,
+ "ched": 26902,
+ "▁spher": 26903,
+ "▁Artikel": 26904,
+ "▁Multiple": 26905,
+ "ciu": 26906,
+ "▁мы": 26907,
+ "▁lipca": 26908,
+ "](/": 26909,
+ "Strategy": 26910,
+ "▁Alabama": 26911,
+ "SDK": 26912,
+ "UTC": 26913,
+ "__.": 26914,
+ "Arguments": 26915,
+ "▁setContentView": 26916,
+ "île": 26917,
+ "ByVal": 26918,
+ "▁JVM": 26919,
+ "ющего": 26920,
+ "▁Leonard": 26921,
+ "▁justify": 26922,
+ "цем": 26923,
+ "▁nab": 26924,
+ "CCESS": 26925,
+ "▁hopes": 26926,
+ ")&": 26927,
+ "sero": 26928,
+ "▁зай": 26929,
+ "слід": 26930,
+ "▁Rég": 26931,
+ "▁Sang": 26932,
+ "▁fung": 26933,
+ "baar": 26934,
+ "▁coffee": 26935,
+ "assembly": 26936,
+ "▁Він": 26937,
+ "эй": 26938,
+ "▁comprend": 26939,
+ "filled": 26940,
+ "рд": 26941,
+ "odia": 26942,
+ "▁gens": 26943,
+ "fluss": 26944,
+ "Drawable": 26945,
+ "▁surve": 26946,
+ "Setup": 26947,
+ "▁należ": 26948,
+ "▁conjunto": 26949,
+ "▁Его": 26950,
+ "▁oldal": 26951,
+ "▁verbose": 26952,
+ "▁Electric": 26953,
+ "▁Harrison": 26954,
+ "engen": 26955,
+ "paragraph": 26956,
+ "▁nouvelles": 26957,
+ "▁време": 26958,
+ "▁memor": 26959,
+ "▁mayoría": 26960,
+ "сад": 26961,
+ "▁bataille": 26962,
+ "▁thermal": 26963,
+ "▁Хронологи": 26964,
+ "▁Better": 26965,
+ "bye": 26966,
+ "▁театра": 26967,
+ "roe": 26968,
+ "▁segle": 26969,
+ "rott": 26970,
+ "▁opinions": 26971,
+ ")})": 26972,
+ "ühle": 26973,
+ "▁Gün": 26974,
+ "▁Щ": 26975,
+ "ból": 26976,
+ "▁Larry": 26977,
+ "▁solic": 26978,
+ "▁zwar": 26979,
+ "▁Caroline": 26980,
+ "▁Reichs": 26981,
+ "Extensions": 26982,
+ "migr": 26983,
+ ":@": 26984,
+ "▁enumerate": 26985,
+ "▁eigenen": 26986,
+ "▁explore": 26987,
+ "ému": 26988,
+ "▁gat": 26989,
+ "▁imperial": 26990,
+ "▁Usually": 26991,
+ "▁tud": 26992,
+ "▁укра": 26993,
+ "him": 26994,
+ "▁corners": 26995,
+ "▁SER": 26996,
+ "▁interpreter": 26997,
+ "▁Ice": 26998,
+ "▁amounts": 26999,
+ "▁Pala": 27000,
+ "▁tinha": 27001,
+ "vole": 27002,
+ "▁gle": 27003,
+ "ucci": 27004,
+ "▁siehe": 27005,
+ "Jack": 27006,
+ "▁woll": 27007,
+ "▁elder": 27008,
+ "▁кораб": 27009,
+ "▁engag": 27010,
+ "▁Laurent": 27011,
+ "▁achiev": 27012,
+ "istik": 27013,
+ "arct": 27014,
+ "тного": 27015,
+ "▁gir": 27016,
+ "▁Singh": 27017,
+ "mathop": 27018,
+ "USA": 27019,
+ "▁Projekt": 27020,
+ "▁debe": 27021,
+ "richtung": 27022,
+ "▁Tsch": 27023,
+ "uminate": 27024,
+ "▁szó": 27025,
+ "lyph": 27026,
+ "зидент": 27027,
+ "▁limitations": 27028,
+ "ющей": 27029,
+ "▁bila": 27030,
+ "Push": 27031,
+ "▁offering": 27032,
+ "iennes": 27033,
+ "Fri": 27034,
+ "▁postgresql": 27035,
+ "▁Tommy": 27036,
+ "▁particolare": 27037,
+ "▁století": 27038,
+ "▁arrib": 27039,
+ "▁Eva": 27040,
+ "school": 27041,
+ "▁vendor": 27042,
+ "▁Dallas": 27043,
+ "▁prolong": 27044,
+ "CREATE": 27045,
+ "▁suivante": 27046,
+ "STATUS": 27047,
+ "là": 27048,
+ "kv": 27049,
+ "▁häufig": 27050,
+ "▁Agricult": 27051,
+ "▁huit": 27052,
+ "▁inoltre": 27053,
+ "▁Lloyd": 27054,
+ "▁француз": 27055,
+ "▁выпол": 27056,
+ "▁faithful": 27057,
+ "▁Вар": 27058,
+ "▁verl": 27059,
+ "▁juego": 27060,
+ "▁Резултати": 27061,
+ ",...,": 27062,
+ "▁implicitly": 27063,
+ "irks": 27064,
+ "Calcul": 27065,
+ "▁meses": 27066,
+ "omed": 27067,
+ "▁pak": 27068,
+ "herit": 27069,
+ "▁optical": 27070,
+ "▁Історія": 27071,
+ "veis": 27072,
+ "▁capitale": 27073,
+ "placeholder": 27074,
+ "intrag": 27075,
+ "▁Atlas": 27076,
+ ")];": 27077,
+ "icons": 27078,
+ "▁Bent": 27079,
+ "▁Widget": 27080,
+ "▁volunt": 27081,
+ "avo": 27082,
+ "égr": 27083,
+ "lige": 27084,
+ "▁NAME": 27085,
+ "▁abstra": 27086,
+ "▁fís": 27087,
+ "▁Browser": 27088,
+ "▁bush": 27089,
+ "hall": 27090,
+ "▁clouds": 27091,
+ "▁SUB": 27092,
+ "▁tandis": 27093,
+ "▁Commonwealth": 27094,
+ "тая": 27095,
+ "▁exhaust": 27096,
+ "________________": 27097,
+ "▁Statistics": 27098,
+ "▁Religion": 27099,
+ "▁Muham": 27100,
+ "uals": 27101,
+ "goto": 27102,
+ "Digital": 27103,
+ "Family": 27104,
+ "▁Bun": 27105,
+ "letin": 27106,
+ "Management": 27107,
+ "▁capabilities": 27108,
+ "annten": 27109,
+ "▁себе": 27110,
+ "▁stays": 27111,
+ "kter": 27112,
+ "▁dost": 27113,
+ "▁Тре": 27114,
+ "лович": 27115,
+ "▁dying": 27116,
+ "sections": 27117,
+ "ános": 27118,
+ "▁apparten": 27119,
+ "▁zoals": 27120,
+ "▁dressed": 27121,
+ "▁compress": 27122,
+ "ńska": 27123,
+ "▁sierpnia": 27124,
+ "▁титу": 27125,
+ "dictionary": 27126,
+ "▁rabb": 27127,
+ "▁vérit": 27128,
+ "Во": 27129,
+ "▁singleton": 27130,
+ "▁vital": 27131,
+ "Refresh": 27132,
+ "мель": 27133,
+ "▁Zh": 27134,
+ "▁Afghan": 27135,
+ "inkel": 27136,
+ "aaaa": 27137,
+ "▁participants": 27138,
+ "arin": 27139,
+ "▁Mold": 27140,
+ "▁primeros": 27141,
+ "▁ран": 27142,
+ "▁Амери": 27143,
+ "▁restaurant": 27144,
+ "ével": 27145,
+ "▁SL": 27146,
+ "▁Rey": 27147,
+ "chas": 27148,
+ "▁electrons": 27149,
+ "▁Pitts": 27150,
+ "▁Jules": 27151,
+ "май": 27152,
+ "enant": 27153,
+ "-}": 27154,
+ "лад": 27155,
+ "▁Москва": 27156,
+ "gom": 27157,
+ "▁Fernández": 27158,
+ "fund": 27159,
+ "interno": 27160,
+ "▁Mari": 27161,
+ "▁rius": 27162,
+ "▁Prozent": 27163,
+ "стрі": 27164,
+ "▁внут": 27165,
+ "anterie": 27166,
+ "▁прис": 27167,
+ "▁обы": 27168,
+ "▁Marina": 27169,
+ "▁occurrence": 27170,
+ "rikt": 27171,
+ "▁физи": 27172,
+ "▁schwer": 27173,
+ "▁Гре": 27174,
+ "Reset": 27175,
+ "▁mucho": 27176,
+ "andr": 27177,
+ "▁Wies": 27178,
+ "▁Keith": 27179,
+ "▁Julian": 27180,
+ "▁cole": 27181,
+ "ciendo": 27182,
+ "▁Contempor": 27183,
+ "etry": 27184,
+ "elian": 27185,
+ "гии": 27186,
+ "▁голо": 27187,
+ "▁dél": 27188,
+ "▁decent": 27189,
+ "РСР": 27190,
+ "▁szeptember": 27191,
+ "мест": 27192,
+ "castle": 27193,
+ "▁держав": 27194,
+ "}\")": 27195,
+ "▁ASCII": 27196,
+ "▁Glen": 27197,
+ "itzerland": 27198,
+ "Toggle": 27199,
+ "▁tradicional": 27200,
+ "▁Plat": 27201,
+ "vee": 27202,
+ "abgerufen": 27203,
+ "(|": 27204,
+ "CLI": 27205,
+ "}}$,": 27206,
+ "▁Bowl": 27207,
+ "▁Male": 27208,
+ "▁Bres": 27209,
+ "▁пси": 27210,
+ "▁Challenge": 27211,
+ "zó": 27212,
+ "▁projekt": 27213,
+ "▁negoti": 27214,
+ "above": 27215,
+ "▁перио": 27216,
+ "▁longest": 27217,
+ "authentic": 27218,
+ "▁tradu": 27219,
+ "▁mujeres": 27220,
+ "▁Andre": 27221,
+ "▁hadn": 27222,
+ "▁Schule": 27223,
+ "odel": 27224,
+ "bled": 27225,
+ "▁Trade": 27226,
+ "▁mobil": 27227,
+ "▁algunas": 27228,
+ "▁Lak": 27229,
+ "▁Connecticut": 27230,
+ "▁alco": 27231,
+ "▁Selbst": 27232,
+ "ił": 27233,
+ "▁alb": 27234,
+ "ouverneur": 27235,
+ "▁sr": 27236,
+ "▁vba": 27237,
+ "loped": 27238,
+ "▁Partei": 27239,
+ "uate": 27240,
+ "▁Authentication": 27241,
+ "bei": 27242,
+ "}}.": 27243,
+ "▁konnten": 27244,
+ "▁допо": 27245,
+ "▁hyd": 27246,
+ "Office": 27247,
+ "données": 27248,
+ "▁Cleveland": 27249,
+ "rita": 27250,
+ "íos": 27251,
+ "▁выше": 27252,
+ "▁Roberts": 27253,
+ "▁élections": 27254,
+ "▁'')": 27255,
+ "▁publishing": 27256,
+ "▁bapt": 27257,
+ "<>();": 27258,
+ "missing": 27259,
+ "ровано": 27260,
+ "▁housing": 27261,
+ "▁inference": 27262,
+ "▁Renaissance": 27263,
+ "▁règ": 27264,
+ "▁Steph": 27265,
+ "CES": 27266,
+ "ERE": 27267,
+ "кет": 27268,
+ "OU": 27269,
+ "▁grouping": 27270,
+ "verkehr": 27271,
+ "jih": 27272,
+ "agli": 27273,
+ "▁milk": 27274,
+ "lait": 27275,
+ "Stage": 27276,
+ "▁byly": 27277,
+ "▁wooden": 27278,
+ "keley": 27279,
+ "etra": 27280,
+ "▁Peg": 27281,
+ "▁donné": 27282,
+ "adal": 27283,
+ "sequently": 27284,
+ "▁insbesondere": 27285,
+ "ELD": 27286,
+ "▁Mam": 27287,
+ "▁volte": 27288,
+ "▁prospect": 27289,
+ "нове": 27290,
+ "▁denoted": 27291,
+ "▁overlay": 27292,
+ "Permission": 27293,
+ "een": 27294,
+ "▁EM": 27295,
+ "▁uz": 27296,
+ "Mc": 27297,
+ "olit": 27298,
+ "▁servi": 27299,
+ "▁Heidel": 27300,
+ "▁Wiener": 27301,
+ "▁illegal": 27302,
+ "▁predictions": 27303,
+ "▁goog": 27304,
+ "hon": 27305,
+ "▁Cinema": 27306,
+ "▁револю": 27307,
+ "▁Rule": 27308,
+ "wod": 27309,
+ "▁radiation": 27310,
+ "oł": 27311,
+ "ової": 27312,
+ "▁Perform": 27313,
+ "▁prisoner": 27314,
+ "▁amet": 27315,
+ "▁figura": 27316,
+ "▁Commander": 27317,
+ "▁официаль": 27318,
+ "▁trov": 27319,
+ "▁acted": 27320,
+ "▁workflow": 27321,
+ "▁Республики": 27322,
+ "▁guidance": 27323,
+ "▁мене": 27324,
+ "National": 27325,
+ "▁Kel": 27326,
+ "webpack": 27327,
+ "простра": 27328,
+ "▁llamado": 27329,
+ "alog": 27330,
+ "terra": 27331,
+ "ixen": 27332,
+ "legraph": 27333,
+ "äischen": 27334,
+ "▁teachers": 27335,
+ "uden": 27336,
+ "▁også": 27337,
+ "possible": 27338,
+ "▁Soul": 27339,
+ "▁Geography": 27340,
+ "▁зада": 27341,
+ "hit": 27342,
+ "▁anger": 27343,
+ "▁remporte": 27344,
+ "Pod": 27345,
+ "чке": 27346,
+ "▁aria": 27347,
+ "▁Astronom": 27348,
+ "chapter": 27349,
+ "▁fork": 27350,
+ "▁Cuando": 27351,
+ "mense": 27352,
+ "▁Christians": 27353,
+ "gc": 27354,
+ "▁#(": 27355,
+ "Organ": 27356,
+ "▁steady": 27357,
+ "pse": 27358,
+ "жить": 27359,
+ "ignes": 27360,
+ "aterra": 27361,
+ "movie": 27362,
+ "posta": 27363,
+ "raste": 27364,
+ "▁Ressource": 27365,
+ "▁País": 27366,
+ "▁();": 27367,
+ "▁penalty": 27368,
+ "тт": 27369,
+ "▁trasfer": 27370,
+ "century": 27371,
+ "▁cleaner": 27372,
+ "selenium": 27373,
+ "ortheast": 27374,
+ "xic": 27375,
+ "лії": 27376,
+ "▁inglese": 27377,
+ "▁Tang": 27378,
+ "▁gods": 27379,
+ "frent": 27380,
+ "ciente": 27381,
+ "starts": 27382,
+ "▁musica": 27383,
+ "ymnasium": 27384,
+ "----+": 27385,
+ "▁terrest": 27386,
+ "▁retrieved": 27387,
+ "iare": 27388,
+ "unning": 27389,
+ "▁Marcus": 27390,
+ "▁promote": 27391,
+ "warning": 27392,
+ "тый": 27393,
+ "})$,": 27394,
+ "Transport": 27395,
+ "▁reson": 27396,
+ "▁Clo": 27397,
+ "▁erm": 27398,
+ "▁eliminate": 27399,
+ "heimer": 27400,
+ "▁saves": 27401,
+ "▁prayer": 27402,
+ "Classes": 27403,
+ "Express": 27404,
+ "▁Akademie": 27405,
+ "Else": 27406,
+ "Turn": 27407,
+ "▁ikke": 27408,
+ "▁rei": 27409,
+ "▁dirett": 27410,
+ "▁Rost": 27411,
+ "▁Papa": 27412,
+ "▁jsf": 27413,
+ "лением": 27414,
+ "▁Tul": 27415,
+ "▁Zak": 27416,
+ "▁niemieck": 27417,
+ "Tw": 27418,
+ "amour": 27419,
+ "nested": 27420,
+ "ppets": 27421,
+ "шп": 27422,
+ "dit": 27423,
+ "зен": 27424,
+ "zyma": 27425,
+ "hrte": 27426,
+ "Constraints": 27427,
+ "▁ownership": 27428,
+ "Arm": 27429,
+ "▁consumption": 27430,
+ "▁fet": 27431,
+ "ivari": 27432,
+ "chrom": 27433,
+ "setAttribute": 27434,
+ "▁compose": 27435,
+ "▁backing": 27436,
+ "▁Paz": 27437,
+ "▁scri": 27438,
+ "▁Mechan": 27439,
+ "▁Norway": 27440,
+ "▁Jup": 27441,
+ "▁mér": 27442,
+ "▁administrator": 27443,
+ "▁cabe": 27444,
+ "ivalent": 27445,
+ "▁throne": 27446,
+ "▁dues": 27447,
+ "▁humor": 27448,
+ "▁Adri": 27449,
+ "▁abort": 27450,
+ "ñas": 27451,
+ "▁Київ": 27452,
+ "jící": 27453,
+ "▁zweite": 27454,
+ "▁doub": 27455,
+ "ershell": 27456,
+ "шой": 27457,
+ "▁Fam": 27458,
+ "åk": 27459,
+ "▁tweede": 27460,
+ "▁Rib": 27461,
+ "▁før": 27462,
+ "pción": 27463,
+ "inned": 27464,
+ "rvm": 27465,
+ "▁Appar": 27466,
+ "▁Dj": 27467,
+ "▁Shang": 27468,
+ "Distance": 27469,
+ "▁dawn": 27470,
+ "▁Matth": 27471,
+ "▁errichtet": 27472,
+ "phantom": 27473,
+ "▁releases": 27474,
+ "Recognizer": 27475,
+ "▁Kop": 27476,
+ "▁Pul": 27477,
+ "ué": 27478,
+ "nats": 27479,
+ "relax": 27480,
+ "▁fled": 27481,
+ "▁experiences": 27482,
+ "щее": 27483,
+ "меня": 27484,
+ "▁персона": 27485,
+ "▁Identity": 27486,
+ "rets": 27487,
+ "kunft": 27488,
+ "larg": 27489,
+ "ListItem": 27490,
+ "vd": 27491,
+ "runner": 27492,
+ "lant": 27493,
+ "ipart": 27494,
+ "bay": 27495,
+ "iei": 27496,
+ "▁lengths": 27497,
+ "▁cattle": 27498,
+ "jets": 27499,
+ "▁sehen": 27500,
+ "Jul": 27501,
+ "fatt": 27502,
+ "▁surrender": 27503,
+ "▁Trump": 27504,
+ "дного": 27505,
+ "▁Fourier": 27506,
+ "ieben": 27507,
+ "_\"": 27508,
+ "▁früher": 27509,
+ "▁garant": 27510,
+ "uclidean": 27511,
+ "ägt": 27512,
+ "▁півден": 27513,
+ "Pages": 27514,
+ "▁rivers": 27515,
+ "▁donner": 27516,
+ "svn": 27517,
+ "▁ł": 27518,
+ "ově": 27519,
+ "▁Leist": 27520,
+ "arial": 27521,
+ "ových": 27522,
+ "▁filling": 27523,
+ "▁musicale": 27524,
+ "maxim": 27525,
+ "▁dashed": 27526,
+ "▁Нов": 27527,
+ "Drawer": 27528,
+ "▁Medicine": 27529,
+ "▁dokument": 27530,
+ "owel": 27531,
+ "vić": 27532,
+ "hely": 27533,
+ "▁elet": 27534,
+ "Seconds": 27535,
+ "▁Gonz": 27536,
+ "rou": 27537,
+ "▁finales": 27538,
+ "rn": 27539,
+ "fø": 27540,
+ "▁indexed": 27541,
+ "className": 27542,
+ "▁ober": 27543,
+ "▁duas": 27544,
+ "▁optimized": 27545,
+ "▁kdy": 27546,
+ "versary": 27547,
+ "energy": 27548,
+ "▁центра": 27549,
+ "▁currency": 27550,
+ "zyż": 27551,
+ "Like": 27552,
+ "▁Ги": 27553,
+ "sono": 27554,
+ "▁palab": 27555,
+ "▁pushing": 27556,
+ "ublik": 27557,
+ "▁Hass": 27558,
+ "}\\,\\": 27559,
+ "unker": 27560,
+ "▁Factory": 27561,
+ "▁Resources": 27562,
+ "datei": 27563,
+ "▁Tools": 27564,
+ "▁stehen": 27565,
+ "sime": 27566,
+ "▁Ху": 27567,
+ "▁hoch": 27568,
+ "▁Rodríguez": 27569,
+ "zeitig": 27570,
+ "▁Terry": 27571,
+ "▁обу": 27572,
+ "Usage": 27573,
+ "urchase": 27574,
+ "lö": 27575,
+ "▁Introduction": 27576,
+ "▁participation": 27577,
+ "ος": 27578,
+ "ogli": 27579,
+ "apy": 27580,
+ "▁hopefully": 27581,
+ "ponder": 27582,
+ "▁Yang": 27583,
+ "▁promises": 27584,
+ "▁верну": 27585,
+ "▁остров": 27586,
+ "^{+": 27587,
+ "▁mostra": 27588,
+ "▁CURLOPT": 27589,
+ "HH": 27590,
+ "▁stdout": 27591,
+ "▁brilliant": 27592,
+ "▁manuscript": 27593,
+ "▁decir": 27594,
+ "▁Bolog": 27595,
+ "▁места": 27596,
+ "▁invisible": 27597,
+ "▁Chal": 27598,
+ "▁analyze": 27599,
+ "prilis": 27600,
+ "attend": 27601,
+ "Mvc": 27602,
+ "than": 27603,
+ "cko": 27604,
+ "▁Quebec": 27605,
+ "▁planta": 27606,
+ "▁télévis": 27607,
+ "▁uninstall": 27608,
+ "ències": 27609,
+ "▁gminie": 27610,
+ "▁Pref": 27611,
+ "▁lequel": 27612,
+ "Invocation": 27613,
+ "▁Í": 27614,
+ "▁transformed": 27615,
+ "MAN": 27616,
+ "gebaut": 27617,
+ "▁сохра": 27618,
+ "▁второй": 27619,
+ "▁Lith": 27620,
+ "wendung": 27621,
+ "▁Politik": 27622,
+ "▁Senator": 27623,
+ "▁LL": 27624,
+ "ждение": 27625,
+ "ште": 27626,
+ "▁Cés": 27627,
+ "▁bande": 27628,
+ "▁historian": 27629,
+ "▁passwords": 27630,
+ "malloc": 27631,
+ "▁semif": 27632,
+ "▁rå": 27633,
+ "unicí": 27634,
+ "Available": 27635,
+ "Optional": 27636,
+ "▁Twe": 27637,
+ "▁kró": 27638,
+ "▁subsets": 27639,
+ "▁DAT": 27640,
+ "▁doubles": 27641,
+ "никами": 27642,
+ "▁зв": 27643,
+ "gegeben": 27644,
+ "▁Попис": 27645,
+ "▁július": 27646,
+ "▁meteor": 27647,
+ "Mount": 27648,
+ "ivent": 27649,
+ "▁Nathan": 27650,
+ "▁Schutz": 27651,
+ "egov": 27652,
+ "▁död": 27653,
+ "▁meat": 27654,
+ "▁пункт": 27655,
+ "▁minds": 27656,
+ "elivery": 27657,
+ "▁TLS": 27658,
+ "рем": 27659,
+ "ckså": 27660,
+ "▁stayed": 27661,
+ "▁Bin": 27662,
+ "▁Pia": 27663,
+ "▁имен": 27664,
+ "▁Bobby": 27665,
+ "▁produit": 27666,
+ "empio": 27667,
+ "▁reducing": 27668,
+ "▁Yu": 27669,
+ "▁Geschäft": 27670,
+ "▁perché": 27671,
+ "▁cors": 27672,
+ "▁icons": 27673,
+ "AppData": 27674,
+ "▁Hog": 27675,
+ "▁рів": 27676,
+ "▁Sans": 27677,
+ "▁siège": 27678,
+ "stellen": 27679,
+ "Brush": 27680,
+ "OFF": 27681,
+ "▁visitor": 27682,
+ "▁bath": 27683,
+ "▁fee": 27684,
+ "atisf": 27685,
+ "▁curv": 27686,
+ "▁folgender": 27687,
+ "▁conscience": 27688,
+ "▁Seattle": 27689,
+ "▁medieval": 27690,
+ "distribution": 27691,
+ "▁DM": 27692,
+ "▁мя": 27693,
+ "▁RUN": 27694,
+ "akov": 27695,
+ "ceil": 27696,
+ "▁letting": 27697,
+ "▁dov": 27698,
+ "▁оби": 27699,
+ "kiej": 27700,
+ "▁direkt": 27701,
+ "▁tm": 27702,
+ "colors": 27703,
+ "▁altro": 27704,
+ "▁tijdens": 27705,
+ "]{'": 27706,
+ "▁Bom": 27707,
+ "▁kunst": 27708,
+ "▁shelter": 27709,
+ "▁rav": 27710,
+ "predict": 27711,
+ "▁comenzó": 27712,
+ "▁świat": 27713,
+ "▁Durant": 27714,
+ "▁schemes": 27715,
+ "▁mesh": 27716,
+ "▁indicator": 27717,
+ "▁Emer": 27718,
+ "▁guilty": 27719,
+ "нец": 27720,
+ "▁consequences": 27721,
+ "cludes": 27722,
+ "▁Lower": 27723,
+ "▁поме": 27724,
+ "▁pace": 27725,
+ "даго": 27726,
+ "▁ambos": 27727,
+ "lb": 27728,
+ "▁educated": 27729,
+ "urale": 27730,
+ "anh": 27731,
+ "esség": 27732,
+ "▁associations": 27733,
+ "town": 27734,
+ "▁trif": 27735,
+ "samples": 27736,
+ "bos": 27737,
+ "▁Spect": 27738,
+ "▁Це": 27739,
+ "altung": 27740,
+ "▁Lob": 27741,
+ "▁curiosity": 27742,
+ "▁Weiter": 27743,
+ "estone": 27744,
+ "▁demol": 27745,
+ "▁apolog": 27746,
+ "▁Dynamic": 27747,
+ "Inner": 27748,
+ "esper": 27749,
+ "ecz": 27750,
+ "uellement": 27751,
+ "▁Hamiltonian": 27752,
+ "Atlas": 27753,
+ "▁argue": 27754,
+ "Foreign": 27755,
+ "collapse": 27756,
+ "▁términ": 27757,
+ "▁electronic": 27758,
+ "▁NR": 27759,
+ "▁corr": 27760,
+ "temps": 27761,
+ "IndexPath": 27762,
+ "яз": 27763,
+ "▁talál": 27764,
+ "today": 27765,
+ "wave": 27766,
+ "▁sib": 27767,
+ "▁спи": 27768,
+ "▁convey": 27769,
+ "▁Géographie": 27770,
+ "▁Нью": 27771,
+ "▁Hibernate": 27772,
+ "▁tin": 27773,
+ "dic": 27774,
+ "ppings": 27775,
+ "sweise": 27776,
+ "▁rolling": 27777,
+ "▁selects": 27778,
+ ")\\)": 27779,
+ "▁poeta": 27780,
+ "▁степени": 27781,
+ "▁Abr": 27782,
+ "▁höch": 27783,
+ "▁stern": 27784,
+ "▁fjär": 27785,
+ "▁installer": 27786,
+ "decl": 27787,
+ "▁miser": 27788,
+ "groupby": 27789,
+ "substr": 27790,
+ "▁phenomen": 27791,
+ "▁Wing": 27792,
+ "▁fills": 27793,
+ "▁único": 27794,
+ "Running": 27795,
+ "Come": 27796,
+ "irable": 27797,
+ "simeq": 27798,
+ "▁remp": 27799,
+ "kele": 27800,
+ "liers": 27801,
+ "▁kwietnia": 27802,
+ "▁interrupted": 27803,
+ "▁Jet": 27804,
+ "=\\{": 27805,
+ "ído": 27806,
+ "▁Taiwan": 27807,
+ "▁возра": 27808,
+ "▁alternatives": 27809,
+ "▁Tir": 27810,
+ "▁Reserve": 27811,
+ "▁Кур": 27812,
+ "▁Nobel": 27813,
+ "▁работал": 27814,
+ "▁axes": 27815,
+ "▁Cependant": 27816,
+ "ká": 27817,
+ "▁erneut": 27818,
+ "▁Demo": 27819,
+ "communic": 27820,
+ "constructor": 27821,
+ "▁Monday": 27822,
+ "Nil": 27823,
+ "HashMap": 27824,
+ "payment": 27825,
+ "▁fixing": 27826,
+ "▁ADD": 27827,
+ "review": 27828,
+ "▁possibil": 27829,
+ "▁grote": 27830,
+ "▁grouped": 27831,
+ "▁Lima": 27832,
+ "▁Augen": 27833,
+ "▁också": 27834,
+ "onas": 27835,
+ "▁debate": 27836,
+ "▁Ingl": 27837,
+ "Da": 27838,
+ "SOUR": 27839,
+ "ettbe": 27840,
+ "▁Battalion": 27841,
+ "▁Float": 27842,
+ "▁cone": 27843,
+ "readsheet": 27844,
+ "court": 27845,
+ "ligen": 27846,
+ "▁Beginn": 27847,
+ "▁LIMIT": 27848,
+ "▁enjoyed": 27849,
+ "▁Jakob": 27850,
+ "▁telt": 27851,
+ "backend": 27852,
+ "▁Gemeinsame": 27853,
+ "lint": 27854,
+ "alling": 27855,
+ "▁bör": 27856,
+ "grand": 27857,
+ "▁diverses": 27858,
+ "▁związ": 27859,
+ "▁Kompon": 27860,
+ "▁innerhalb": 27861,
+ "▁desarrollo": 27862,
+ "▁Masters": 27863,
+ "ioso": 27864,
+ "]`.": 27865,
+ "▁francesa": 27866,
+ "Aff": 27867,
+ "inek": 27868,
+ "▁dessin": 27869,
+ "`.`": 27870,
+ "▁ranks": 27871,
+ "берг": 27872,
+ "▁skal": 27873,
+ "▁Sultan": 27874,
+ "АН": 27875,
+ "▁способ": 27876,
+ "▁contradict": 27877,
+ "▁recom": 27878,
+ "▁Oklahoma": 27879,
+ "▁Vladimir": 27880,
+ "▁meters": 27881,
+ "transport": 27882,
+ "▁consulté": 27883,
+ "▁ATP": 27884,
+ "ebb": 27885,
+ "▁volunte": 27886,
+ "▁outline": 27887,
+ "LIC": 27888,
+ "▁euro": 27889,
+ "CharField": 27890,
+ "medium": 27891,
+ "▁Belgique": 27892,
+ "Proc": 27893,
+ "routes": 27894,
+ "▁contribu": 27895,
+ "!}": 27896,
+ "ším": 27897,
+ "▁Less": 27898,
+ "▁Kost": 27899,
+ "▁eredetiből": 27900,
+ "reven": 27901,
+ "verify": 27902,
+ "▁Salt": 27903,
+ "▁shooting": 27904,
+ "▁dispose": 27905,
+ "ují": 27906,
+ "▁tierra": 27907,
+ "▁poison": 27908,
+ "sak": 27909,
+ "perimental": 27910,
+ "▁Né": 27911,
+ "▁Kid": 27912,
+ "agyar": 27913,
+ "▁archiválva": 27914,
+ "bereich": 27915,
+ "íz": 27916,
+ "▁Ritter": 27917,
+ "▁Хронологија": 27918,
+ "zeum": 27919,
+ "дах": 27920,
+ "▁gründ": 27921,
+ "▁programmer": 27922,
+ "▁conseil": 27923,
+ "▁encrypt": 27924,
+ "integration": 27925,
+ "Culture": 27926,
+ "▁Circle": 27927,
+ "Observable": 27928,
+ "▁genomsnitt": 27929,
+ "▁Selection": 27930,
+ "▁irregular": 27931,
+ "Autres": 27932,
+ "Percent": 27933,
+ "fault": 27934,
+ "▁virtue": 27935,
+ "ąpi": 27936,
+ "▁sess": 27937,
+ "▁Также": 27938,
+ "Timestamp": 27939,
+ "▁littérature": 27940,
+ "▁moż": 27941,
+ "▁borrow": 27942,
+ "▁conced": 27943,
+ "чник": 27944,
+ "▁Lund": 27945,
+ "IONS": 27946,
+ "ynie": 27947,
+ "▁Shin": 27948,
+ "▁osob": 27949,
+ "bě": 27950,
+ "▁intuit": 27951,
+ "▁нап": 27952,
+ "▁proph": 27953,
+ "▁pitt": 27954,
+ "▁IBM": 27955,
+ "▁Till": 27956,
+ "▁hina": 27957,
+ "ittest": 27958,
+ "generator": 27959,
+ "▁Nin": 27960,
+ "▁Kot": 27961,
+ "▁passer": 27962,
+ "▁disposition": 27963,
+ "uning": 27964,
+ "▁fame": 27965,
+ "▁tenia": 27966,
+ "ancement": 27967,
+ "▁Suisse": 27968,
+ "`-": 27969,
+ "▁hombres": 27970,
+ "▁infinity": 27971,
+ "▁оконча": 27972,
+ "▁cosm": 27973,
+ "▁Dennis": 27974,
+ "baz": 27975,
+ "haupt": 27976,
+ "▁mighty": 27977,
+ "▁prede": 27978,
+ "usable": 27979,
+ "▁wszyst": 27980,
+ "▁lb": 27981,
+ "ABASE": 27982,
+ "jna": 27983,
+ "нев": 27984,
+ "▁ases": 27985,
+ "▁finalmente": 27986,
+ "йм": 27987,
+ "pection": 27988,
+ "▁Studien": 27989,
+ "▁Norwegian": 27990,
+ "cego": 27991,
+ "INDEX": 27992,
+ "orten": 27993,
+ "▁friendship": 27994,
+ "metro": 27995,
+ "thick": 27996,
+ "▁Zel": 27997,
+ "LOW": 27998,
+ "▁thereby": 27999,
+ "unted": 28000,
+ "▁surfaces": 28001,
+ "ющим": 28002,
+ "%).": 28003,
+ "▁Wonder": 28004,
+ "▁redundant": 28005,
+ "▁Gros": 28006,
+ "▁websites": 28007,
+ "▁vio": 28008,
+ "▁ocas": 28009,
+ "vés": 28010,
+ "▁Gam": 28011,
+ "dw": 28012,
+ "Indicator": 28013,
+ "▁Kob": 28014,
+ "▁jack": 28015,
+ "Hint": 28016,
+ "▁Apol": 28017,
+ "▁другие": 28018,
+ "▁NUM": 28019,
+ "▁ofic": 28020,
+ "ystycz": 28021,
+ "▁wereld": 28022,
+ "мости": 28023,
+ "LEFT": 28024,
+ "▁Types": 28025,
+ "seen": 28026,
+ "uncia": 28027,
+ "▁narod": 28028,
+ "▁этот": 28029,
+ "Sidenote": 28030,
+ "ueil": 28031,
+ "▁отме": 28032,
+ "▁courts": 28033,
+ "fir": 28034,
+ "urz": 28035,
+ "ченко": 28036,
+ "Credentials": 28037,
+ "▁imagination": 28038,
+ "itats": 28039,
+ "buff": 28040,
+ "flash": 28041,
+ "▁badly": 28042,
+ "▁worn": 28043,
+ "▁округу": 28044,
+ "catalog": 28045,
+ "lime": 28046,
+ "▁Gill": 28047,
+ "▁Sent": 28048,
+ "iella": 28049,
+ "▁Craig": 28050,
+ "▁Sele": 28051,
+ "▁Independ": 28052,
+ "▁provincie": 28053,
+ "ossen": 28054,
+ "▁запад": 28055,
+ "▁infant": 28056,
+ "▁prevents": 28057,
+ "▁provinces": 28058,
+ "afé": 28059,
+ "beg": 28060,
+ "▁colours": 28061,
+ "BF": 28062,
+ "ën": 28063,
+ "▁Между": 28064,
+ "în": 28065,
+ "Observer": 28066,
+ "forsch": 28067,
+ "ígen": 28068,
+ "umption": 28069,
+ "▁Illustr": 28070,
+ "рист": 28071,
+ "▁полови": 28072,
+ "▁`&": 28073,
+ "▁ore": 28074,
+ "▁supplies": 28075,
+ "▁parenthes": 28076,
+ "Foundation": 28077,
+ "▁vou": 28078,
+ "▁Tout": 28079,
+ "Donald": 28080,
+ "▁RET": 28081,
+ "weig": 28082,
+ "▁producción": 28083,
+ "mix": 28084,
+ "▁utwor": 28085,
+ "▁föl": 28086,
+ "▁então": 28087,
+ "▁Sister": 28088,
+ "Tags": 28089,
+ "▁Савезне": 28090,
+ "▁privileges": 28091,
+ "▁nazw": 28092,
+ "▁Rav": 28093,
+ "▁repro": 28094,
+ "▁Mason": 28095,
+ "▁Platform": 28096,
+ "▁пробле": 28097,
+ "▁Pérez": 28098,
+ "▁blanc": 28099,
+ "Behavior": 28100,
+ "фици": 28101,
+ "eken": 28102,
+ "▁meets": 28103,
+ "(.*": 28104,
+ "▁få": 28105,
+ "epen": 28106,
+ "maker": 28107,
+ "▁loyal": 28108,
+ "members": 28109,
+ "meisterschaft": 28110,
+ "goal": 28111,
+ "шлен": 28112,
+ "▁северо": 28113,
+ "iende": 28114,
+ "дні": 28115,
+ "Proof": 28116,
+ "▁explic": 28117,
+ "▁electro": 28118,
+ "iels": 28119,
+ "reload": 28120,
+ "▁eleven": 28121,
+ "▁partidos": 28122,
+ "îne": 28123,
+ "▁Regin": 28124,
+ "▁éx": 28125,
+ "▁Bulg": 28126,
+ "▁networking": 28127,
+ "▁separator": 28128,
+ "UserName": 28129,
+ "▁edificio": 28130,
+ "▁Mie": 28131,
+ "▁idle": 28132,
+ "yed": 28133,
+ "▁passengers": 28134,
+ "+)": 28135,
+ "meno": 28136,
+ "eggi": 28137,
+ "▁nicely": 28138,
+ "endencia": 28139,
+ "чий": 28140,
+ "étés": 28141,
+ "ightarrow": 28142,
+ "▁orthogonal": 28143,
+ "▁Half": 28144,
+ "▁fewer": 28145,
+ "▁propi": 28146,
+ "▁primit": 28147,
+ "icale": 28148,
+ "▁flower": 28149,
+ "merk": 28150,
+ "▁Отече": 28151,
+ "▁persistent": 28152,
+ "▁Ville": 28153,
+ "Men": 28154,
+ "gaben": 28155,
+ "▁Isaac": 28156,
+ "ativity": 28157,
+ "▁północ": 28158,
+ "▁rok": 28159,
+ "cards": 28160,
+ "дения": 28161,
+ "▁юго": 28162,
+ "▁extraordinary": 28163,
+ "▁kyr": 28164,
+ "(\",": 28165,
+ "))]": 28166,
+ "▁unix": 28167,
+ "кол": 28168,
+ "▁sink": 28169,
+ "apsed": 28170,
+ "▁kommen": 28171,
+ "▁forcing": 28172,
+ "About": 28173,
+ "▁Halle": 28174,
+ "▁Majesty": 28175,
+ "▁Switch": 28176,
+ "▁abroad": 28177,
+ "▁acceleration": 28178,
+ "urbed": 28179,
+ "▁остан": 28180,
+ "Ready": 28181,
+ "▁півні": 28182,
+ "Bra": 28183,
+ "▁цього": 28184,
+ "▁plut": 28185,
+ "▁Train": 28186,
+ "▁április": 28187,
+ "▁puesto": 28188,
+ "▁toss": 28189,
+ "▁irrelevant": 28190,
+ "▁dip": 28191,
+ "segment": 28192,
+ "opacity": 28193,
+ "▁lorsque": 28194,
+ "▁verschill": 28195,
+ "ена": 28196,
+ "▁Doc": 28197,
+ "%%%%%%%%": 28198,
+ "▁borders": 28199,
+ "gebras": 28200,
+ "▁ries": 28201,
+ "▁Olympedia": 28202,
+ "▁Generation": 28203,
+ "metros": 28204,
+ "▁horizon": 28205,
+ "▁adaptation": 28206,
+ "▁Zahl": 28207,
+ "▁nahe": 28208,
+ "▁Bug": 28209,
+ "Picture": 28210,
+ "љи": 28211,
+ "RGB": 28212,
+ "Owner": 28213,
+ "adin": 28214,
+ "▁Catalunya": 28215,
+ "ných": 28216,
+ "▁cualquier": 28217,
+ "▁Institution": 28218,
+ "insen": 28219,
+ "▁Brasile": 28220,
+ "▁fitting": 28221,
+ "Deleg": 28222,
+ "ictwo": 28223,
+ "▁Exper": 28224,
+ "ochastic": 28225,
+ "▁dus": 28226,
+ "▁пора": 28227,
+ "▁substring": 28228,
+ "ссии": 28229,
+ "oin": 28230,
+ "▁школа": 28231,
+ "▁cx": 28232,
+ "▁%)": 28233,
+ "▁Buddh": 28234,
+ "▁pending": 28235,
+ "▁Entry": 28236,
+ "▁Berl": 28237,
+ "▁cler": 28238,
+ "▁Soc": 28239,
+ "▁rounded": 28240,
+ "▁mv": 28241,
+ "ített": 28242,
+ "▁Diplom": 28243,
+ "▁französischen": 28244,
+ "▁Gan": 28245,
+ "▁Investig": 28246,
+ "▁indexPath": 28247,
+ "▁molti": 28248,
+ "persistence": 28249,
+ "▁XIXe": 28250,
+ "▁Electron": 28251,
+ "bü": 28252,
+ "gele": 28253,
+ "▁Maler": 28254,
+ "▁proyecto": 28255,
+ "▁Bath": 28256,
+ "ellers": 28257,
+ "▁GP": 28258,
+ "oning": 28259,
+ "cloudflare": 28260,
+ "▁při": 28261,
+ "▁ded": 28262,
+ "▁Odkazy": 28263,
+ "▁Msg": 28264,
+ "▁Being": 28265,
+ "▁Depuis": 28266,
+ "▁Primary": 28267,
+ "▁Appro": 28268,
+ "▁formally": 28269,
+ "ступил": 28270,
+ "▁fuera": 28271,
+ "▁Root": 28272,
+ "▁autonom": 28273,
+ "▁secretary": 28274,
+ "▁osób": 28275,
+ "▁cuales": 28276,
+ "▁Depending": 28277,
+ "▁asi": 28278,
+ "vera": 28279,
+ "▁russe": 28280,
+ "▁proves": 28281,
+ "▁presiden": 28282,
+ "RU": 28283,
+ "▁Watson": 28284,
+ "▁webpack": 28285,
+ "elligence": 28286,
+ "кам": 28287,
+ "▁Officer": 28288,
+ "▁delivery": 28289,
+ "ждён": 28290,
+ "▁импе": 28291,
+ "▁wil": 28292,
+ "▁vesc": 28293,
+ "usztus": 28294,
+ "▁Geoff": 28295,
+ "()}": 28296,
+ "▁Fore": 28297,
+ "▁wenig": 28298,
+ "▁Airl": 28299,
+ "▁Efter": 28300,
+ "▁Break": 28301,
+ "▁Städ": 28302,
+ "ismiss": 28303,
+ "íp": 28304,
+ "▁avoided": 28305,
+ "▁assertion": 28306,
+ "DN": 28307,
+ "▁teat": 28308,
+ "ína": 28309,
+ "▁mechanical": 28310,
+ "isu": 28311,
+ "@{": 28312,
+ "▁nou": 28313,
+ "Italie": 28314,
+ "sourceforge": 28315,
+ "▁svo": 28316,
+ "▁király": 28317,
+ "▁References": 28318,
+ "six": 28319,
+ "▁Archives": 28320,
+ "▁finishing": 28321,
+ "acje": 28322,
+ "état": 28323,
+ "iffs": 28324,
+ "▁stead": 28325,
+ "▁feas": 28326,
+ "aware": 28327,
+ "lande": 28328,
+ "Inject": 28329,
+ "▁Agent": 28330,
+ "▁Normdatei": 28331,
+ "▁amen": 28332,
+ "▁Architecture": 28333,
+ "aze": 28334,
+ "ște": 28335,
+ "▁usar": 28336,
+ "▁cores": 28337,
+ "лін": 28338,
+ "▁Castro": 28339,
+ "▁væ": 28340,
+ ">\",": 28341,
+ "omena": 28342,
+ "▁gesam": 28343,
+ "▁Martín": 28344,
+ "egung": 28345,
+ "▁společ": 28346,
+ "▁amplitude": 28347,
+ "▁importing": 28348,
+ "▁listview": 28349,
+ "THE": 28350,
+ "ziale": 28351,
+ "cedes": 28352,
+ "▁particulier": 28353,
+ "▁Расподела": 28354,
+ "▁край": 28355,
+ "▁divent": 28356,
+ "▁ké": 28357,
+ "quit": 28358,
+ "тором": 28359,
+ "CheckBox": 28360,
+ "▁Zobacz": 28361,
+ "phe": 28362,
+ "pta": 28363,
+ "▁sjö": 28364,
+ "▁розташ": 28365,
+ "▁tedesco": 28366,
+ "▁stal": 28367,
+ "▁Beruf": 28368,
+ "овая": 28369,
+ "▁svě": 28370,
+ "▁flush": 28371,
+ "▁відбу": 28372,
+ "▁radial": 28373,
+ "▁différentes": 28374,
+ "анта": 28375,
+ "▁Perry": 28376,
+ "Coll": 28377,
+ "liqu": 28378,
+ "▁Optional": 28379,
+ "▁Санкт": 28380,
+ "▁LINQ": 28381,
+ "▁Franc": 28382,
+ "cije": 28383,
+ "▁Guillaume": 28384,
+ "know": 28385,
+ "▁Units": 28386,
+ "olk": 28387,
+ "▁Système": 28388,
+ "▁Sales": 28389,
+ "▁ehemaligen": 28390,
+ "мирова": 28391,
+ "xhtml": 28392,
+ "setopt": 28393,
+ "▁mellan": 28394,
+ "▁zie": 28395,
+ "▁giant": 28396,
+ "Board": 28397,
+ "▁Caval": 28398,
+ "▁defence": 28399,
+ "----------": 28400,
+ "pshire": 28401,
+ "mart": 28402,
+ "▁Dioc": 28403,
+ "iskt": 28404,
+ "▁inse": 28405,
+ "▁épisode": 28406,
+ "чик": 28407,
+ "bars": 28408,
+ "Sito": 28409,
+ "▁integrity": 28410,
+ "auff": 28411,
+ "▁vär": 28412,
+ "Azure": 28413,
+ "▁starb": 28414,
+ "▁контра": 28415,
+ "▁Мексичка": 28416,
+ "▁запа": 28417,
+ "▁Mountains": 28418,
+ "}}=": 28419,
+ "▁pulling": 28420,
+ "▁satellite": 28421,
+ "▁atoms": 28422,
+ "▁profesor": 28423,
+ "▁repeatedly": 28424,
+ "▁invasion": 28425,
+ "programming": 28426,
+ "├──": 28427,
+ "▁Lip": 28428,
+ "вшие": 28429,
+ "▁keen": 28430,
+ "▁critics": 28431,
+ "▁Nicola": 28432,
+ "▁Cand": 28433,
+ "▁distint": 28434,
+ "▁heading": 28435,
+ "pragma": 28436,
+ "{|": 28437,
+ "ymen": 28438,
+ "▁terrain": 28439,
+ "iedenis": 28440,
+ "▁besonders": 28441,
+ "▁nominated": 28442,
+ "BOOL": 28443,
+ "▁Kay": 28444,
+ "cian": 28445,
+ "stelle": 28446,
+ "▁dispute": 28447,
+ "▁щ": 28448,
+ "DataSet": 28449,
+ "nothing": 28450,
+ "Autom": 28451,
+ "hören": 28452,
+ "▁shed": 28453,
+ "▁paused": 28454,
+ "san": 28455,
+ "▁nunca": 28456,
+ "!(\"": 28457,
+ "▁położ": 28458,
+ "Secret": 28459,
+ "▁Domain": 28460,
+ "▁возмож": 28461,
+ "XV": 28462,
+ "lv": 28463,
+ "ikh": 28464,
+ "▁Sony": 28465,
+ "mq": 28466,
+ "otrop": 28467,
+ "▁Logger": 28468,
+ "▁threat": 28469,
+ "asted": 28470,
+ "зько": 28471,
+ "▁freely": 28472,
+ "▁improvements": 28473,
+ "istema": 28474,
+ "▁illustrate": 28475,
+ "▁tact": 28476,
+ "▁figur": 28477,
+ "ués": 28478,
+ "riminal": 28479,
+ "odon": 28480,
+ "intendo": 28481,
+ "▁influenced": 28482,
+ "FFER": 28483,
+ "▁Ghost": 28484,
+ "▁совер": 28485,
+ "nad": 28486,
+ "ioned": 28487,
+ "▁Events": 28488,
+ "▁wrapping": 28489,
+ "---------+": 28490,
+ "fif": 28491,
+ "▁(**": 28492,
+ "={{": 28493,
+ "маль": 28494,
+ "▁losses": 28495,
+ "▁Galerie": 28496,
+ "tel": 28497,
+ "▁лютого": 28498,
+ "▁Kru": 28499,
+ "▁Polen": 28500,
+ "нім": 28501,
+ "near": 28502,
+ "▁shame": 28503,
+ "▁moyenne": 28504,
+ "▁CP": 28505,
+ "preis": 28506,
+ "▁passenger": 28507,
+ "lek": 28508,
+ "ionales": 28509,
+ "kafka": 28510,
+ "▁participe": 28511,
+ "▁membership": 28512,
+ "[_": 28513,
+ "lando": 28514,
+ "stelling": 28515,
+ "Sem": 28516,
+ "gon": 28517,
+ "▁Correct": 28518,
+ "▁valle": 28519,
+ "▁readily": 28520,
+ "▁Dokument": 28521,
+ "honneur": 28522,
+ "▁testim": 28523,
+ "ulative": 28524,
+ "doFilter": 28525,
+ "▁dominant": 28526,
+ "ammer": 28527,
+ "▁која": 28528,
+ "▁Monsieur": 28529,
+ "zeg": 28530,
+ "▁війни": 28531,
+ "▁Fo": 28532,
+ "▁Amy": 28533,
+ "▁¡": 28534,
+ "▁február": 28535,
+ "▁downloading": 28536,
+ "▁leng": 28537,
+ "\\}$,": 28538,
+ "▁neat": 28539,
+ "▁Cache": 28540,
+ "ICATION": 28541,
+ "▁deve": 28542,
+ "▁sorrow": 28543,
+ "slow": 28544,
+ "▁hinaus": 28545,
+ "▁reconoc": 28546,
+ "▁Linked": 28547,
+ "▁Shaw": 28548,
+ "market": 28549,
+ "▁Dic": 28550,
+ "▁Ski": 28551,
+ "▁delimiter": 28552,
+ "▁MainActivity": 28553,
+ "▁Musical": 28554,
+ "▁Reyn": 28555,
+ "ScrollView": 28556,
+ "▁conventional": 28557,
+ "ença": 28558,
+ "▁refactor": 28559,
+ "'-": 28560,
+ "▁Hed": 28561,
+ "sprech": 28562,
+ "▁athlet": 28563,
+ "▁especies": 28564,
+ "▁Schön": 28565,
+ "▁kleinen": 28566,
+ "шко": 28567,
+ "▁Йо": 28568,
+ "▁Happy": 28569,
+ "multirow": 28570,
+ "▁augusti": 28571,
+ "▁Gand": 28572,
+ "▁appointment": 28573,
+ "▁Mediabestanden": 28574,
+ "Three": 28575,
+ "▁Kenneth": 28576,
+ "NEW": 28577,
+ "▁Notification": 28578,
+ "▁Marx": 28579,
+ "▁insc": 28580,
+ "Mor": 28581,
+ "вый": 28582,
+ "väst": 28583,
+ "vidia": 28584,
+ "▁demonstrated": 28585,
+ "fonts": 28586,
+ "▁kamen": 28587,
+ "▁Ster": 28588,
+ "▁mieszkańców": 28589,
+ "▁Koh": 28590,
+ "~$\\": 28591,
+ "»).": 28592,
+ "rene": 28593,
+ "insic": 28594,
+ "ická": 28595,
+ "xygen": 28596,
+ "▁mn": 28597,
+ "▁sched": 28598,
+ "ASC": 28599,
+ "Ig": 28600,
+ "▁Constant": 28601,
+ "▁opportun": 28602,
+ "▁MyClass": 28603,
+ "sef": 28604,
+ "oped": 28605,
+ "▁injured": 28606,
+ "VIS": 28607,
+ "▁Pero": 28608,
+ "▁Until": 28609,
+ "▁flesh": 28610,
+ "orphism": 28611,
+ "▁Portal": 28612,
+ "▁gminy": 28613,
+ "▁власти": 28614,
+ "▁Nä": 28615,
+ "ктиче": 28616,
+ "▁hrab": 28617,
+ "▁Cub": 28618,
+ "avoir": 28619,
+ "▁Lars": 28620,
+ "▁Бело": 28621,
+ "▁seizoen": 28622,
+ "▁Genomsnitt": 28623,
+ "▁Lil": 28624,
+ "▁Pool": 28625,
+ "▁Dios": 28626,
+ "TX": 28627,
+ "aes": 28628,
+ "autore": 28629,
+ "Alpha": 28630,
+ "states": 28631,
+ "Lab": 28632,
+ "nederbörd": 28633,
+ "erton": 28634,
+ "▁brid": 28635,
+ "▁richt": 28636,
+ "▁Ela": 28637,
+ "▁сла": 28638,
+ "▁weapon": 28639,
+ "▁combatt": 28640,
+ "agar": 28641,
+ "▁regnig": 28642,
+ "▁utilisé": 28643,
+ "▁servir": 28644,
+ "▁brick": 28645,
+ "▁gateway": 28646,
+ "▁torraste": 28647,
+ "▁procedures": 28648,
+ "▁årsnederbörd": 28649,
+ "▁Genomsnittlig": 28650,
+ "чёт": 28651,
+ "▁områ": 28652,
+ "▁regnigaste": 28653,
+ "▁честь": 28654,
+ "▁amid": 28655,
+ "▁grateful": 28656,
+ "▁DIS": 28657,
+ "DAY": 28658,
+ "▁ору": 28659,
+ "▁rivière": 28660,
+ "heure": 28661,
+ "▁Richmond": 28662,
+ "▁Compar": 28663,
+ "▁Нор": 28664,
+ "DOC": 28665,
+ "esia": 28666,
+ "calc": 28667,
+ "▁IU": 28668,
+ "▁vorg": 28669,
+ "▁habían": 28670,
+ "çoit": 28671,
+ "▁arist": 28672,
+ "▁кли": 28673,
+ "▁Sue": 28674,
+ "▁Touch": 28675,
+ "▁Writing": 28676,
+ "ifiable": 28677,
+ "▁wc": 28678,
+ "▁withdraw": 28679,
+ "зар": 28680,
+ "▁presently": 28681,
+ "▁FK": 28682,
+ "▁prakt": 28683,
+ "▁colored": 28684,
+ "usb": 28685,
+ "▁Perú": 28686,
+ "▁plata": 28687,
+ "▁wishes": 28688,
+ "▁кам": 28689,
+ "azar": 28690,
+ "ável": 28691,
+ "▁lamp": 28692,
+ "bishop": 28693,
+ "▁inclusion": 28694,
+ "jq": 28695,
+ "arth": 28696,
+ "▁Flag": 28697,
+ "▁нор": 28698,
+ "ædia": 28699,
+ "UNCTION": 28700,
+ "▁Bahnhof": 28701,
+ "▁approaching": 28702,
+ "▁Gött": 28703,
+ "▁cube": 28704,
+ "▁argued": 28705,
+ "▁Things": 28706,
+ "Gui": 28707,
+ "дови": 28708,
+ "▁recre": 28709,
+ "▁réseau": 28710,
+ "▁significa": 28711,
+ "Git": 28712,
+ "gebracht": 28713,
+ "▁liga": 28714,
+ "▁assured": 28715,
+ "alus": 28716,
+ "рит": 28717,
+ "▁энциклопеди": 28718,
+ "▁%).": 28719,
+ "▁Première": 28720,
+ "▁declarations": 28721,
+ "▁tricky": 28722,
+ "▁profiles": 28723,
+ "▁Fon": 28724,
+ "▁Jas": 28725,
+ "âr": 28726,
+ "babel": 28727,
+ "▁Friday": 28728,
+ "▁június": 28729,
+ "▁cols": 28730,
+ "▁EXISTS": 28731,
+ "▁Italiana": 28732,
+ "▁authorization": 28733,
+ "▁sulle": 28734,
+ "▁Emb": 28735,
+ "▁Variable": 28736,
+ "trees": 28737,
+ "▁Fly": 28738,
+ "riors": 28739,
+ "▁damals": 28740,
+ "▁findet": 28741,
+ "▁Sept": 28742,
+ "▁mundial": 28743,
+ "▁removal": 28744,
+ "▁longitude": 28745,
+ "clic": 28746,
+ "▁fade": 28747,
+ "▁gradle": 28748,
+ "▁zák": 28749,
+ "▁timing": 28750,
+ "trightarrow": 28751,
+ "atia": 28752,
+ "-.": 28753,
+ "uche": 28754,
+ "▁serialize": 28755,
+ "▁Hmm": 28756,
+ "▁Representatives": 28757,
+ "bah": 28758,
+ "rend": 28759,
+ "assador": 28760,
+ "▁shield": 28761,
+ "ucion": 28762,
+ "▁américaine": 28763,
+ "zę": 28764,
+ "villa": 28765,
+ "▁hombre": 28766,
+ "áss": 28767,
+ "▁SF": 28768,
+ "▁repeating": 28769,
+ "▁criter": 28770,
+ "▁Struct": 28771,
+ "???": 28772,
+ "▁cheap": 28773,
+ "▁rings": 28774,
+ "abhäng": 28775,
+ "▁corte": 28776,
+ "▁administ": 28777,
+ "ixon": 28778,
+ "gypt": 28779,
+ "▁puntos": 28780,
+ "▁mezi": 28781,
+ "▁pochod": 28782,
+ "isko": 28783,
+ "nię": 28784,
+ "▁осу": 28785,
+ "▁ár": 28786,
+ "тельной": 28787,
+ "▁Metropolitan": 28788,
+ "jin": 28789,
+ "zess": 28790,
+ "▁віці": 28791,
+ "▁conflicts": 28792,
+ "ijst": 28793,
+ "▁Market": 28794,
+ "стров": 28795,
+ "▁\",\"": 28796,
+ "▁Scroll": 28797,
+ "gun": 28798,
+ "тара": 28799,
+ "▁amateur": 28800,
+ "▁róż": 28801,
+ "poss": 28802,
+ "▁generalized": 28803,
+ "▁Harm": 28804,
+ "cita": 28805,
+ "▁Switzerland": 28806,
+ "icola": 28807,
+ "▁muit": 28808,
+ "located": 28809,
+ "▁có": 28810,
+ "▁arose": 28811,
+ "▁communauté": 28812,
+ "})^": 28813,
+ "visibility": 28814,
+ "ída": 28815,
+ "▁FB": 28816,
+ "▁Freund": 28817,
+ "gat": 28818,
+ "\":{\"": 28819,
+ "intellij": 28820,
+ "ifie": 28821,
+ "hmen": 28822,
+ "▁édition": 28823,
+ "▁које": 28824,
+ "▁інших": 28825,
+ "oming": 28826,
+ "▁arquitect": 28827,
+ "▁Presidente": 28828,
+ "▁Під": 28829,
+ "▁cabin": 28830,
+ "Theorem": 28831,
+ "▁Gay": 28832,
+ "ifice": 28833,
+ "▁hect": 28834,
+ "lą": 28835,
+ "irmingham": 28836,
+ "▁semantic": 28837,
+ "▁Louisiana": 28838,
+ "▁sacrifice": 28839,
+ "▁Christoph": 28840,
+ "▁Executive": 28841,
+ "_+": 28842,
+ "ják": 28843,
+ "▁seria": 28844,
+ "▁Overflow": 28845,
+ "▁Lucy": 28846,
+ "▁melhor": 28847,
+ "▁voices": 28848,
+ "cza": 28849,
+ "▁капи": 28850,
+ "▁университета": 28851,
+ "INCT": 28852,
+ "▁coloc": 28853,
+ "▁prue": 28854,
+ "▁geomet": 28855,
+ "▁diretto": 28856,
+ "reso": 28857,
+ "▁Akt": 28858,
+ "▁unh": 28859,
+ "▁сери": 28860,
+ "▁Alert": 28861,
+ "Wel": 28862,
+ "audi": 28863,
+ "äler": 28864,
+ "▁guests": 28865,
+ "▁иде": 28866,
+ "Studio": 28867,
+ "▁кате": 28868,
+ "▁exponent": 28869,
+ "rze": 28870,
+ "pmod": 28871,
+ "rolle": 28872,
+ "▁Limited": 28873,
+ "Allemagne": 28874,
+ "▁pity": 28875,
+ "▁lä": 28876,
+ "▁runner": 28877,
+ "kende": 28878,
+ "EQ": 28879,
+ "▁MM": 28880,
+ "szág": 28881,
+ "поді": 28882,
+ "▁regret": 28883,
+ "▁publié": 28884,
+ "▁departamento": 28885,
+ "▁accused": 28886,
+ "hp": 28887,
+ "▁Pfl": 28888,
+ "▁Sint": 28889,
+ "▁ekonom": 28890,
+ "ractor": 28891,
+ "▁Пів": 28892,
+ "▁awful": 28893,
+ "ować": 28894,
+ "]->": 28895,
+ "▁Fine": 28896,
+ "Са": 28897,
+ "tis": 28898,
+ "éta": 28899,
+ "▁Роди": 28900,
+ "▁Düsseldorf": 28901,
+ "LOB": 28902,
+ "osas": 28903,
+ "werke": 28904,
+ "▁lance": 28905,
+ "▁листопада": 28906,
+ "▁incomplete": 28907,
+ "▁Picture": 28908,
+ "('\\": 28909,
+ "esters": 28910,
+ "▁belonged": 28911,
+ "▁Sank": 28912,
+ "ammed": 28913,
+ "▁repositories": 28914,
+ "▁addr": 28915,
+ "Collect": 28916,
+ "Hot": 28917,
+ "▁tyl": 28918,
+ "▁instanceof": 28919,
+ "▁bonus": 28920,
+ "ový": 28921,
+ "▁моря": 28922,
+ "▁interactive": 28923,
+ "▁Mys": 28924,
+ "▁Edmund": 28925,
+ "fileName": 28926,
+ "emor": 28927,
+ "▁Три": 28928,
+ "▁Rosen": 28929,
+ "▁Prima": 28930,
+ "▁voting": 28931,
+ "▁XP": 28932,
+ "▁Zero": 28933,
+ "▁Led": 28934,
+ "amsung": 28935,
+ "▁enables": 28936,
+ "▁redirects": 28937,
+ "AST": 28938,
+ "Paint": 28939,
+ "acker": 28940,
+ "lecht": 28941,
+ "▁chairman": 28942,
+ "▁Aven": 28943,
+ "▁Sach": 28944,
+ "(\"<": 28945,
+ "кер": 28946,
+ "▁mistakes": 28947,
+ "▁Weit": 28948,
+ "▁prowad": 28949,
+ "▁didnt": 28950,
+ "énario": 28951,
+ "unless": 28952,
+ "▁backwards": 28953,
+ "boa": 28954,
+ "duino": 28955,
+ "```": 28956,
+ "stor": 28957,
+ "Completion": 28958,
+ "puesta": 28959,
+ "▁dinast": 28960,
+ "últ": 28961,
+ "▁SY": 28962,
+ "ifolia": 28963,
+ "œuvres": 28964,
+ "▁racing": 28965,
+ "▁cabinet": 28966,
+ "▁cutting": 28967,
+ "▁thumb": 28968,
+ "▁Кара": 28969,
+ "highlight": 28970,
+ "куп": 28971,
+ "▁sd": 28972,
+ "▁національ": 28973,
+ "▁campagne": 28974,
+ "▁registers": 28975,
+ "▁educational": 28976,
+ "▁pesar": 28977,
+ "üge": 28978,
+ "▁oro": 28979,
+ "burgo": 28980,
+ "▁Athletics": 28981,
+ "▁MTV": 28982,
+ "getMessage": 28983,
+ "▁Hyp": 28984,
+ "▁victim": 28985,
+ "))\\": 28986,
+ "▁drums": 28987,
+ "hostname": 28988,
+ "tał": 28989,
+ "making": 28990,
+ "▁powiat": 28991,
+ "őd": 28992,
+ "threads": 28993,
+ "▁absolv": 28994,
+ "▁люди": 28995,
+ "▁stepped": 28996,
+ "exist": 28997,
+ "▁NK": 28998,
+ "▁ves": 28999,
+ "istiche": 29000,
+ "%'": 29001,
+ "ativos": 29002,
+ "▁такой": 29003,
+ "▁MongoDB": 29004,
+ "▁Ung": 29005,
+ "▁Рус": 29006,
+ "▁elim": 29007,
+ "▁Fif": 29008,
+ "icación": 29009,
+ "▁Tennis": 29010,
+ "▁Jefferson": 29011,
+ "ján": 29012,
+ "fog": 29013,
+ "anha": 29014,
+ "zor": 29015,
+ "▁університе": 29016,
+ "ahu": 29017,
+ "iada": 29018,
+ "Sdk": 29019,
+ "Setting": 29020,
+ "▁Kill": 29021,
+ "▁Wend": 29022,
+ "▁bald": 29023,
+ "▁Kub": 29024,
+ "▁visto": 29025,
+ "▁jeunes": 29026,
+ "collections": 29027,
+ "ací": 29028,
+ "вропей": 29029,
+ "▁arise": 29030,
+ "оні": 29031,
+ "MAIN": 29032,
+ "доступ": 29033,
+ "▁berg": 29034,
+ "▁criticism": 29035,
+ "▁Torre": 29036,
+ "▁descript": 29037,
+ "ières": 29038,
+ "▁estudio": 29039,
+ "▁ili": 29040,
+ "▁militare": 29041,
+ "▁Clara": 29042,
+ "▁Ellen": 29043,
+ "limited": 29044,
+ "лм": 29045,
+ "▁Españ": 29046,
+ "▁infinitely": 29047,
+ "America": 29048,
+ "ouc": 29049,
+ "glass": 29050,
+ "▁rud": 29051,
+ "▁zat": 29052,
+ "▁rin": 29053,
+ "▁Bibliografía": 29054,
+ "▁merchant": 29055,
+ "tensorflow": 29056,
+ "▁dér": 29057,
+ "▁ActiveRecord": 29058,
+ "IES": 29059,
+ "▁linker": 29060,
+ "▁estudios": 29061,
+ "cdnjs": 29062,
+ "▁Государ": 29063,
+ "ánchez": 29064,
+ "appe": 29065,
+ "club": 29066,
+ "▁další": 29067,
+ "▁Algorithm": 29068,
+ "dfs": 29069,
+ "▁Bac": 29070,
+ "▁кафе": 29071,
+ "▁&=\\": 29072,
+ "▁ат": 29073,
+ "▁Глав": 29074,
+ "▁Mou": 29075,
+ "Machine": 29076,
+ "(...)": 29077,
+ "▁compart": 29078,
+ "▁augusztus": 29079,
+ "avan": 29080,
+ "▁rolled": 29081,
+ "▁еди": 29082,
+ "Scan": 29083,
+ "▁регі": 29084,
+ "▁świata": 29085,
+ "▁mines": 29086,
+ "},{": 29087,
+ "▁Tier": 29088,
+ "Cannot": 29089,
+ "мін": 29090,
+ "▁NEW": 29091,
+ "▁Вол": 29092,
+ "▁Manh": 29093,
+ "▁Gregory": 29094,
+ "▁principe": 29095,
+ "ISO": 29096,
+ "prog": 29097,
+ "▁Fail": 29098,
+ "▁aa": 29099,
+ "▁fecha": 29100,
+ "▁WCF": 29101,
+ "▁magistr": 29102,
+ "▁Zach": 29103,
+ "▁unicode": 29104,
+ "▁converter": 29105,
+ "▁dispers": 29106,
+ "ksam": 29107,
+ "▁Uncle": 29108,
+ "PropertyChanged": 29109,
+ "▁lider": 29110,
+ "▁opts": 29111,
+ "▁там": 29112,
+ "locked": 29113,
+ "zak": 29114,
+ "▁counted": 29115,
+ "▁persone": 29116,
+ "▁hurried": 29117,
+ "ätter": 29118,
+ "▁outras": 29119,
+ "▁genu": 29120,
+ "BD": 29121,
+ "veg": 29122,
+ "due": 29123,
+ "▁Pract": 29124,
+ "▁posible": 29125,
+ "▁contribute": 29126,
+ "UMN": 29127,
+ "▁Bürger": 29128,
+ "▁wars": 29129,
+ "▁exhibition": 29130,
+ "hill": 29131,
+ "▁astr": 29132,
+ "▁музе": 29133,
+ "▁CASE": 29134,
+ "manifest": 29135,
+ "yellow": 29136,
+ "Fn": 29137,
+ "▁RC": 29138,
+ "▁sott": 29139,
+ "▁sujet": 29140,
+ "▁Socket": 29141,
+ "▁Chine": 29142,
+ "▁frameworks": 29143,
+ "Hold": 29144,
+ "êts": 29145,
+ "▁філь": 29146,
+ "Loaded": 29147,
+ "ophe": 29148,
+ "texte": 29149,
+ "▁expres": 29150,
+ "▁consume": 29151,
+ "▁Richtung": 29152,
+ "ografi": 29153,
+ "▁magnific": 29154,
+ "àt": 29155,
+ "▁indul": 29156,
+ "ryty": 29157,
+ "▁offici": 29158,
+ "▁assault": 29159,
+ "rund": 29160,
+ "▁variants": 29161,
+ "▁сельсов": 29162,
+ "▁excitement": 29163,
+ "Times": 29164,
+ "kotlin": 29165,
+ "▁gering": 29166,
+ "▁Engel": 29167,
+ "▁Timer": 29168,
+ "²).": 29169,
+ "▁Ng": 29170,
+ "ässt": 29171,
+ "schau": 29172,
+ "SError": 29173,
+ "▁Edwards": 29174,
+ "▁Terminal": 29175,
+ "lict": 29176,
+ "Under": 29177,
+ "▁spawn": 29178,
+ "ürgen": 29179,
+ "▁Außerdem": 29180,
+ "▁kitchen": 29181,
+ "fahrt": 29182,
+ "▁Colors": 29183,
+ "▁система": 29184,
+ "▁terminated": 29185,
+ "▁LaTeX": 29186,
+ "igkeiten": 29187,
+ "▁mesure": 29188,
+ "▁Amts": 29189,
+ "▁empir": 29190,
+ "▁striking": 29191,
+ "▁exclusive": 29192,
+ "тех": 29193,
+ "▁rez": 29194,
+ "▁quan": 29195,
+ "▁Glasgow": 29196,
+ "▁lecture": 29197,
+ "▁Testament": 29198,
+ "▁funds": 29199,
+ "▁stessa": 29200,
+ "▁tribes": 29201,
+ "▁parfois": 29202,
+ "▁treball": 29203,
+ "nitz": 29204,
+ "bove": 29205,
+ "▁заслу": 29206,
+ "▁absent": 29207,
+ "▁Lauf": 29208,
+ "Smith": 29209,
+ "▁Николай": 29210,
+ "▁européenne": 29211,
+ "lr": 29212,
+ "▁programma": 29213,
+ "▁midst": 29214,
+ "▁daughters": 29215,
+ "Syn": 29216,
+ "oben": 29217,
+ "ână": 29218,
+ "idan": 29219,
+ "▁ther": 29220,
+ "odore": 29221,
+ "sdl": 29222,
+ "▁Quint": 29223,
+ "▁casos": 29224,
+ "▁Zam": 29225,
+ "▁страны": 29226,
+ "▁sprite": 29227,
+ "кал": 29228,
+ "▁nasc": 29229,
+ "▁сотруд": 29230,
+ "▁trava": 29231,
+ "▁хозяй": 29232,
+ "▁Uruguay": 29233,
+ "▁sparse": 29234,
+ "▁поле": 29235,
+ "▁mystery": 29236,
+ "▁Mang": 29237,
+ "registr": 29238,
+ "▁CGFloat": 29239,
+ "▁submission": 29240,
+ "вана": 29241,
+ "▁\":": 29242,
+ "▁Traceback": 29243,
+ "▁Pit": 29244,
+ "▁Ehr": 29245,
+ "▁сра": 29246,
+ "▁Graphics": 29247,
+ "Updated": 29248,
+ "▁svensk": 29249,
+ "▁spacing": 29250,
+ "tritt": 29251,
+ "▁Guinea": 29252,
+ "▁França": 29253,
+ "Associ": 29254,
+ "▁Tová": 29255,
+ "stab": 29256,
+ "▁Learning": 29257,
+ "▁Bright": 29258,
+ "śc": 29259,
+ "▁idő": 29260,
+ "}}_{\\": 29261,
+ "▁droite": 29262,
+ "▁raising": 29263,
+ "getting": 29264,
+ "ythm": 29265,
+ "onyme": 29266,
+ "żs": 29267,
+ "▁blah": 29268,
+ "TagName": 29269,
+ "Vertical": 29270,
+ "▁aper": 29271,
+ "postgresql": 29272,
+ "▁Handle": 29273,
+ "zew": 29274,
+ "▁skulle": 29275,
+ "▁opere": 29276,
+ "layers": 29277,
+ "▁possono": 29278,
+ "▁relate": 29279,
+ "ąc": 29280,
+ "▁Mih": 29281,
+ "âge": 29282,
+ "▁Świ": 29283,
+ "isses": 29284,
+ "▁servlet": 29285,
+ "Los": 29286,
+ "▁Advanced": 29287,
+ "atica": 29288,
+ "▁ced": 29289,
+ "▁elementos": 29290,
+ "рона": 29291,
+ "iks": 29292,
+ "arf": 29293,
+ "ariat": 29294,
+ "Mobile": 29295,
+ "agua": 29296,
+ "▁timp": 29297,
+ "▁Comité": 29298,
+ "▁combining": 29299,
+ "wohl": 29300,
+ "▁Study": 29301,
+ "coordinate": 29302,
+ "▁recommendation": 29303,
+ "▁transformations": 29304,
+ "until": 29305,
+ "bounded": 29306,
+ "▁изу": 29307,
+ "hanced": 29308,
+ "▁вопро": 29309,
+ "▁Prés": 29310,
+ "▁coord": 29311,
+ "xty": 29312,
+ "▁$,": 29313,
+ "▁champions": 29314,
+ "Den": 29315,
+ "Mil": 29316,
+ "(',": 29317,
+ "▁Preis": 29318,
+ "▁eigh": 29319,
+ "▁markers": 29320,
+ "▁gewesen": 29321,
+ "ätten": 29322,
+ "▁pione": 29323,
+ "mv": 29324,
+ "▁ју": 29325,
+ "zeichnis": 29326,
+ "hoff": 29327,
+ "News": 29328,
+ "▁Stanisław": 29329,
+ "▁Brandenburg": 29330,
+ "▁Feuer": 29331,
+ "=&": 29332,
+ "жет": 29333,
+ "▁Neil": 29334,
+ "▁wirk": 29335,
+ "▁società": 29336,
+ "▁spare": 29337,
+ "▁civile": 29338,
+ "sprach": 29339,
+ "▁disse": 29340,
+ "▁gates": 29341,
+ "▁anom": 29342,
+ "▁Федерации": 29343,
+ "▁tib": 29344,
+ "▁fútbol": 29345,
+ "▁Wikiped": 29346,
+ "iate": 29347,
+ "Front": 29348,
+ "▁craw": 29349,
+ "▁Rak": 29350,
+ "▁зву": 29351,
+ "street": 29352,
+ "▁Agency": 29353,
+ "вало": 29354,
+ "▁Рас": 29355,
+ "▁mkdir": 29356,
+ "ację": 29357,
+ "▁shares": 29358,
+ "Story": 29359,
+ "▁remarks": 29360,
+ "▁keywords": 29361,
+ "Bob": 29362,
+ "▁toe": 29363,
+ "▁Vitt": 29364,
+ "▁rhs": 29365,
+ "ROP": 29366,
+ "oris": 29367,
+ "/@": 29368,
+ "сии": 29369,
+ "▁traverse": 29370,
+ "▁referencing": 29371,
+ "präsident": 29372,
+ "rong": 29373,
+ "'):": 29374,
+ "aties": 29375,
+ "AW": 29376,
+ "Outlet": 29377,
+ "▁évol": 29378,
+ "ikes": 29379,
+ "▁environmental": 29380,
+ "icum": 29381,
+ "▁Lied": 29382,
+ "▁warn": 29383,
+ "▁Butler": 29384,
+ "▁%),": 29385,
+ "▁Zeitschrift": 29386,
+ "▁Montr": 29387,
+ "важа": 29388,
+ "▁Mercur": 29389,
+ "jekte": 29390,
+ "meter": 29391,
+ "ducation": 29392,
+ "▁attributed": 29393,
+ "*$": 29394,
+ "▁unf": 29395,
+ "▁Vertrag": 29396,
+ "zien": 29397,
+ "▁Роб": 29398,
+ "lices": 29399,
+ "pply": 29400,
+ "ansen": 29401,
+ "▁zeit": 29402,
+ "▁immense": 29403,
+ "▁lutego": 29404,
+ "▁Bulgar": 29405,
+ "▁miembros": 29406,
+ "▁Националь": 29407,
+ "▁Allow": 29408,
+ "▁anglès": 29409,
+ "дви": 29410,
+ "▁Toy": 29411,
+ "туа": 29412,
+ "▁yard": 29413,
+ "(%": 29414,
+ "isser": 29415,
+ "▁golf": 29416,
+ "▁Ukrain": 29417,
+ "▁hosp": 29418,
+ "Include": 29419,
+ "▁Lisa": 29420,
+ "▁csal": 29421,
+ "▁Mira": 29422,
+ "recogn": 29423,
+ "▁Ке": 29424,
+ "▁hitting": 29425,
+ "кономі": 29426,
+ "▁Tournament": 29427,
+ "LOAD": 29428,
+ "▁Guardian": 29429,
+ "▁daher": 29430,
+ "▁timezone": 29431,
+ "▁tomcat": 29432,
+ "▁successor": 29433,
+ "▁Void": 29434,
+ "▁começ": 29435,
+ "▁converts": 29436,
+ "ächs": 29437,
+ "osex": 29438,
+ "xelles": 29439,
+ "aser": 29440,
+ "▁És": 29441,
+ "▁mou": 29442,
+ "▁ung": 29443,
+ "▁origen": 29444,
+ "▁Crow": 29445,
+ "▁Erd": 29446,
+ "▁sieben": 29447,
+ "lua": 29448,
+ "▁BB": 29449,
+ "RENT": 29450,
+ "▁piłkar": 29451,
+ "▁marque": 29452,
+ "▁Labour": 29453,
+ "viders": 29454,
+ "▁exempl": 29455,
+ "Sound": 29456,
+ "▁Wass": 29457,
+ "arrison": 29458,
+ "▁течение": 29459,
+ "▁Oficina": 29460,
+ "▁Daw": 29461,
+ "▁Kauf": 29462,
+ "ént": 29463,
+ "éső": 29464,
+ "▁=\"": 29465,
+ "▁kat": 29466,
+ "diction": 29467,
+ "▁Voll": 29468,
+ "▁highway": 29469,
+ "James": 29470,
+ "zeuge": 29471,
+ "▁modelo": 29472,
+ "Throw": 29473,
+ "▁Forum": 29474,
+ "(\"@": 29475,
+ "▁enfer": 29476,
+ "▁специаль": 29477,
+ "Numbers": 29478,
+ "▁Binary": 29479,
+ "▁Martínez": 29480,
+ "▁Stato": 29481,
+ "▁festiv": 29482,
+ "▁katol": 29483,
+ "▁Аб": 29484,
+ "▁limitation": 29485,
+ "▁STR": 29486,
+ "▁Официаль": 29487,
+ "ipes": 29488,
+ "▁Isn": 29489,
+ "▁ruled": 29490,
+ "▁cí": 29491,
+ "geber": 29492,
+ "▁lavoro": 29493,
+ "▁parentheses": 29494,
+ "оз": 29495,
+ "▁équipes": 29496,
+ "▁efficiently": 29497,
+ "▁Period": 29498,
+ "▁Regarding": 29499,
+ "leaf": 29500,
+ "▁similarity": 29501,
+ "▁gesture": 29502,
+ "datab": 29503,
+ "▁terminate": 29504,
+ "▁semantics": 29505,
+ "▁Alo": 29506,
+ "▁cig": 29507,
+ "▁OpenGL": 29508,
+ "▁heutigen": 29509,
+ "xaml": 29510,
+ "▁frequencies": 29511,
+ ")}.": 29512,
+ "▁threatened": 29513,
+ "тик": 29514,
+ "▁calcio": 29515,
+ "▁Riemann": 29516,
+ "slug": 29517,
+ "▁Finale": 29518,
+ "LR": 29519,
+ "▁Derby": 29520,
+ "▁още": 29521,
+ "▁deviation": 29522,
+ "ächen": 29523,
+ "▁Cris": 29524,
+ "ново": 29525,
+ "▁столі": 29526,
+ "▁relev": 29527,
+ "▁splendid": 29528,
+ "▁учё": 29529,
+ "erving": 29530,
+ "gable": 29531,
+ "▁générale": 29532,
+ "pom": 29533,
+ "▁Cheers": 29534,
+ "▁imprison": 29535,
+ "▁indent": 29536,
+ "▁analyz": 29537,
+ "▁revert": 29538,
+ "érer": 29539,
+ "▁phases": 29540,
+ "FirstName": 29541,
+ "▁mig": 29542,
+ "▁disturb": 29543,
+ "▁mixture": 29544,
+ "▁){": 29545,
+ "inture": 29546,
+ "▁Tried": 29547,
+ "▁sooner": 29548,
+ "▁pels": 29549,
+ "▁établ": 29550,
+ "etro": 29551,
+ "itie": 29552,
+ "▁quartier": 29553,
+ "▁гово": 29554,
+ "▁város": 29555,
+ "ufe": 29556,
+ "heten": 29557,
+ "хом": 29558,
+ "▁soap": 29559,
+ "utors": 29560,
+ "▁duch": 29561,
+ "syntax": 29562,
+ "▁tribe": 29563,
+ "▁chante": 29564,
+ "Tri": 29565,
+ "▁Mate": 29566,
+ "quality": 29567,
+ "uola": 29568,
+ "=\".": 29569,
+ "chk": 29570,
+ "▁всі": 29571,
+ "▁przeci": 29572,
+ "▁Meteor": 29573,
+ "▁scattered": 29574,
+ "Plus": 29575,
+ "trad": 29576,
+ "▁stackoverflow": 29577,
+ "▁retra": 29578,
+ "▁éditions": 29579,
+ "▁sain": 29580,
+ "cribe": 29581,
+ "ignon": 29582,
+ "ucker": 29583,
+ "▁мало": 29584,
+ "▁tenir": 29585,
+ "▁exports": 29586,
+ "▁auxili": 29587,
+ "▁]]": 29588,
+ "▁CBS": 29589,
+ "uniform": 29590,
+ "▁periodic": 29591,
+ "agrant": 29592,
+ "▁emple": 29593,
+ "Wil": 29594,
+ "▁fres": 29595,
+ "▁strutt": 29596,
+ "▁світ": 29597,
+ "▁betre": 29598,
+ "▁объек": 29599,
+ "тися": 29600,
+ "▁bisher": 29601,
+ "baum": 29602,
+ "ishi": 29603,
+ "▁Gazette": 29604,
+ "backgroundColor": 29605,
+ "jl": 29606,
+ "▁fiel": 29607,
+ "▁према": 29608,
+ "▁protagonista": 29609,
+ "▁Muhammad": 29610,
+ "▁simulate": 29611,
+ "▁Hook": 29612,
+ "fest": 29613,
+ "▁своих": 29614,
+ "Sender": 29615,
+ "▁listened": 29616,
+ "жі": 29617,
+ "jest": 29618,
+ "kord": 29619,
+ "Choice": 29620,
+ "▁hoofd": 29621,
+ "reducible": 29622,
+ "hpp": 29623,
+ "▁Wu": 29624,
+ "ši": 29625,
+ "▁Marse": 29626,
+ "▁soir": 29627,
+ "westen": 29628,
+ "emos": 29629,
+ "▁Duc": 29630,
+ "▁amerik": 29631,
+ "|}{": 29632,
+ "▁Gul": 29633,
+ "▁Sprache": 29634,
+ "▁mismatch": 29635,
+ "Scal": 29636,
+ "Pixel": 29637,
+ "EF": 29638,
+ "▁Sep": 29639,
+ "▁powiecie": 29640,
+ "urk": 29641,
+ "▁Napoli": 29642,
+ "▁neighbourhood": 29643,
+ "стоян": 29644,
+ "▁searches": 29645,
+ "yrus": 29646,
+ "пет": 29647,
+ "Help": 29648,
+ "pont": 29649,
+ "▁Orient": 29650,
+ "▁Alfonso": 29651,
+ "▁monitoring": 29652,
+ "iao": 29653,
+ "édé": 29654,
+ "▁César": 29655,
+ "шее": 29656,
+ "Shift": 29657,
+ "suit": 29658,
+ "coded": 29659,
+ "ното": 29660,
+ "▁Parti": 29661,
+ "▁lasci": 29662,
+ "▁awesome": 29663,
+ "usta": 29664,
+ "▁Сове": 29665,
+ "▁Fland": 29666,
+ "oom": 29667,
+ "▁devi": 29668,
+ "engelsk": 29669,
+ "endum": 29670,
+ "▁Pascal": 29671,
+ "▁Bind": 29672,
+ "▁siguientes": 29673,
+ "JB": 29674,
+ "▁Petersburg": 29675,
+ "▁incorrectly": 29676,
+ "▁Bash": 29677,
+ "▁pelos": 29678,
+ "▁zespo": 29679,
+ "NSURL": 29680,
+ "▁přek": 29681,
+ "▁Crime": 29682,
+ "nach": 29683,
+ "▁thrust": 29684,
+ "▁Cultura": 29685,
+ "WF": 29686,
+ "▁Solo": 29687,
+ "▁invas": 29688,
+ "▁individually": 29689,
+ "ibm": 29690,
+ "▁etapa": 29691,
+ "▁handed": 29692,
+ "▁wherever": 29693,
+ "▁interpolation": 29694,
+ "▁musée": 29695,
+ "▁CNN": 29696,
+ "idia": 29697,
+ "ństw": 29698,
+ "▁przew": 29699,
+ "ughing": 29700,
+ "▁actors": 29701,
+ "▁Oriental": 29702,
+ "▁convenience": 29703,
+ "▁miasta": 29704,
+ "brains": 29705,
+ "▁меся": 29706,
+ "▁infatti": 29707,
+ "▁AllMovie": 29708,
+ "▁critique": 29709,
+ "▁successo": 29710,
+ "ancouver": 29711,
+ "▁fá": 29712,
+ "ългар": 29713,
+ "▁wisdom": 29714,
+ "▁Phoenix": 29715,
+ "hole": 29716,
+ "▁información": 29717,
+ "▁Airlines": 29718,
+ ".«": 29719,
+ "mort": 29720,
+ "userId": 29721,
+ "▁*/\r": 29722,
+ "▁Congo": 29723,
+ "▁\"`": 29724,
+ "corr": 29725,
+ "▁problemas": 29726,
+ "▁bib": 29727,
+ "▁później": 29728,
+ "▁fileName": 29729,
+ "zott": 29730,
+ "macht": 29731,
+ "▁Ulrich": 29732,
+ "Cy": 29733,
+ "endpoint": 29734,
+ "▁sheep": 29735,
+ "▁ibn": 29736,
+ "Feed": 29737,
+ "▁sympathy": 29738,
+ "▁Ib": 29739,
+ "▁territorial": 29740,
+ "rating": 29741,
+ "дами": 29742,
+ "▁dst": 29743,
+ "ую": 29744,
+ "aho": 29745,
+ "▁sug": 29746,
+ "emia": 29747,
+ "▁ted": 29748,
+ "▁Api": 29749,
+ "▁Rica": 29750,
+ "▁MR": 29751,
+ "ńskim": 29752,
+ "▁Voor": 29753,
+ "▁devil": 29754,
+ "▁Фо": 29755,
+ "▁När": 29756,
+ "▁...)": 29757,
+ "▁vois": 29758,
+ "▁abbre": 29759,
+ "▁Männer": 29760,
+ "ximo": 29761,
+ "▁intellectual": 29762,
+ "▁tales": 29763,
+ "similar": 29764,
+ "neum": 29765,
+ "▁Orig": 29766,
+ "▁postal": 29767,
+ "▁hvor": 29768,
+ "▁identification": 29769,
+ "▁Од": 29770,
+ "uesto": 29771,
+ "▁../": 29772,
+ "▁bir": 29773,
+ "▁Лон": 29774,
+ "▁esempio": 29775,
+ "▁Eing": 29776,
+ "Expand": 29777,
+ "▁PRIMARY": 29778,
+ "▁Jin": 29779,
+ "▁však": 29780,
+ "ourses": 29781,
+ "▁Betty": 29782,
+ "▁WM": 29783,
+ "▁flask": 29784,
+ "hlen": 29785,
+ "▁Adel": 29786,
+ "laravel": 29787,
+ "▁дет": 29788,
+ "ською": 29789,
+ "▁Mundo": 29790,
+ "iczn": 29791,
+ "ifié": 29792,
+ "▁Мор": 29793,
+ "▁древ": 29794,
+ "DateFormat": 29795,
+ "ським": 29796,
+ "▁dated": 29797,
+ "коли": 29798,
+ "▁результате": 29799,
+ "\\).": 29800,
+ "▁delayed": 29801,
+ "sound": 29802,
+ "▁Мак": 29803,
+ "▁\"...": 29804,
+ "▁binnen": 29805,
+ "▁факуль": 29806,
+ "▁polygon": 29807,
+ "▁eggs": 29808,
+ "AtIndexPath": 29809,
+ "менталь": 29810,
+ "▁incred": 29811,
+ "chunk": 29812,
+ "webdriver": 29813,
+ "▁свобо": 29814,
+ "▁między": 29815,
+ "Received": 29816,
+ "▁Monde": 29817,
+ "▁JQuery": 29818,
+ "Butt": 29819,
+ "▁PDO": 29820,
+ "▁forec": 29821,
+ "▁discipline": 29822,
+ "chev": 29823,
+ "нат": 29824,
+ "▁redis": 29825,
+ "▁hunting": 29826,
+ "▁alk": 29827,
+ "▁proofs": 29828,
+ "PRI": 29829,
+ "▁chip": 29830,
+ "ésie": 29831,
+ "▁HO": 29832,
+ "▁rug": 29833,
+ "zos": 29834,
+ "▁sorte": 29835,
+ "▁zeigt": 29836,
+ "▁Physics": 29837,
+ "legte": 29838,
+ "▁proportional": 29839,
+ "▁toolbar": 29840,
+ "vement": 29841,
+ "notin": 29842,
+ "▁první": 29843,
+ "blah": 29844,
+ "▁présence": 29845,
+ "▁lloc": 29846,
+ "▁líder": 29847,
+ "▁Accept": 29848,
+ "▁Always": 29849,
+ "▁\"{": 29850,
+ "▁diversi": 29851,
+ "ikor": 29852,
+ "Period": 29853,
+ "жён": 29854,
+ "▁Alliance": 29855,
+ "▁relay": 29856,
+ "Bro": 29857,
+ "jön": 29858,
+ "▁Baud": 29859,
+ "▁Bian": 29860,
+ "')[": 29861,
+ "чив": 29862,
+ "▁Poss": 29863,
+ "▁Mitglieder": 29864,
+ "▁nev": 29865,
+ "Daniel": 29866,
+ "▁tends": 29867,
+ "▁compagnie": 29868,
+ "▁livres": 29869,
+ "lub": 29870,
+ "▁": 29871,
+ "e": 29872,
+ "t": 29873,
+ "a": 29874,
+ "i": 29875,
+ "n": 29876,
+ "o": 29877,
+ "r": 29878,
+ "s": 29879,
+ "l": 29880,
+ "d": 29881,
+ "h": 29882,
+ "c": 29883,
+ "u": 29884,
+ "m": 29885,
+ "p": 29886,
+ "g": 29887,
+ "f": 29888,
+ ".": 29889,
+ "b": 29890,
+ "y": 29891,
+ ",": 29892,
+ "w": 29893,
+ "v": 29894,
+ "k": 29895,
+ "1": 29896,
+ ")": 29897,
+ "(": 29898,
+ "-": 29899,
+ "0": 29900,
+ ":": 29901,
+ "I": 29902,
+ "S": 29903,
+ "о": 29904,
+ "\\": 29905,
+ "2": 29906,
+ "C": 29907,
+ "\"": 29908,
+ "A": 29909,
+ "а": 29910,
+ "T": 29911,
+ "{": 29912,
+ "}": 29913,
+ "/": 29914,
+ "'": 29915,
+ "x": 29916,
+ "и": 29917,
+ "_": 29918,
+ "е": 29919,
+ "z": 29920,
+ "н": 29921,
+ "=": 29922,
+ "E": 29923,
+ "M": 29924,
+ "P": 29925,
+ "j": 29926,
+ "р": 29927,
+ "D": 29928,
+ "9": 29929,
+ "*": 29930,
+ "L": 29931,
+ "т": 29932,
+ "B": 29933,
+ "R": 29934,
+ "с": 29935,
+ ";": 29936,
+ "#": 29937,
+ "$": 29938,
+ "q": 29939,
+ "N": 29940,
+ "3": 29941,
+ "в": 29942,
+ "F": 29943,
+ "л": 29944,
+ "5": 29945,
+ "4": 29946,
+ "8": 29947,
+ "é": 29948,
+ "O": 29949,
+ "H": 29950,
+ "к": 29951,
+ "`": 29952,
+ "6": 29953,
+ "G": 29954,
+ "7": 29955,
+ "W": 29956,
+ "д": 29957,
+ ">": 29958,
+ "м": 29959,
+ "у": 29960,
+ "[": 29961,
+ "]": 29962,
+ "V": 29963,
+ "п": 29964,
+ "U": 29965,
+ "<": 29966,
+ "J": 29967,
+ "K": 29968,
+ "г": 29969,
+ "я": 29970,
+ "і": 29971,
+ "з": 29972,
+ "?": 29973,
+ "+": 29974,
+ "б": 29975,
+ "á": 29976,
+ "й": 29977,
+ "ь": 29978,
+ "Y": 29979,
+ "ó": 29980,
+ "ч": 29981,
+ "ы": 29982,
+ "í": 29983,
+ "Q": 29984,
+ "^": 29985,
+ "ä": 29986,
+ "&": 29987,
+ "х": 29988,
+ "|": 29989,
+ "X": 29990,
+ "!": 29991,
+ "@": 29992,
+ "ü": 29993,
+ "–": 29994,
+ "%": 29995,
+ "ц": 29996,
+ "ö": 29997,
+ "ж": 29998,
+ "Z": 29999,
+ "è": 30000,
+ "à": 30001,
+ "ш": 30002,
+ "—": 30003,
+ "\r": 30004,
+ "ю": 30005,
+ "ł": 30006,
+ "»": 30007,
+ "С": 30008,
+ "«": 30009,
+ "’": 30010,
+ "ф": 30011,
+ "В": 30012,
+ "П": 30013,
+ "К": 30014,
+ "“": 30015,
+ "ј": 30016,
+ "М": 30017,
+ "А": 30018,
+ "ç": 30019,
+ "å": 30020,
+ "щ": 30021,
+ "~": 30022,
+ "ę": 30023,
+ "”": 30024,
+ "ą": 30025,
+ "č": 30026,
+ "Р": 30027,
+ "ї": 30028,
+ "Н": 30029,
+ "ú": 30030,
+ "Б": 30031,
+ "Д": 30032,
+ "ã": 30033,
+ "ß": 30034,
+ "ă": 30035,
+ "ě": 30036,
+ "ê": 30037,
+ "О": 30038,
+ "š": 30039,
+ "Г": 30040,
+ "Т": 30041,
+ "ż": 30042,
+ "ё": 30043,
+ "ž": 30044,
+ "ś": 30045,
+ "ñ": 30046,
+ "ř": 30047,
+ "ő": 30048,
+ "„": 30049,
+ "Л": 30050,
+ "э": 30051,
+ "ý": 30052,
+ "У": 30053,
+ "И": 30054,
+ "ъ": 30055,
+ "є": 30056,
+ "â": 30057,
+ "î": 30058,
+ "ò": 30059,
+ "З": 30060,
+ "Ф": 30061,
+ "É": 30062,
+ "ć": 30063,
+ "·": 30064,
+ "ș": 30065,
+ "ń": 30066,
+ "ț": 30067,
+ "Х": 30068,
+ "ô": 30069,
+ "Е": 30070,
+ "ù": 30071,
+ "ů": 30072,
+ "°": 30073,
+ "Ш": 30074,
+ "љ": 30075,
+ "Ч": 30076,
+ "ø": 30077,
+ "æ": 30078,
+ "њ": 30079,
+ " ": 30080,
+ " ": 30081,
+ "Э": 30082,
+ "ë": 30083,
+ "õ": 30084,
+ "ï": 30085,
+ "‘": 30086,
+ "†": 30087,
+ "²": 30088,
+ "ű": 30089,
+ "І": 30090,
+ "─": 30091,
+ "Ц": 30092,
+ "ћ": 30093,
+ "Ö": 30094,
+ "û": 30095,
+ "Я": 30096,
+ "ì": 30097,
+ "…": 30098,
+ "ō": 30099,
+ "Ж": 30100,
+ "Ю": 30101,
+ "Á": 30102,
+ "́": 30103,
+ "Ü": 30104,
+ "º": 30105,
+ "œ": 30106,
+ "ā": 30107,
+ "Č": 30108,
+ "ź": 30109,
+ "α": 30110,
+ "│": 30111,
+ "ا": 30112,
+ "À": 30113,
+ "═": 30114,
+ "Š": 30115,
+ "ђ": 30116,
+ "№": 30117,
+ " ": 30118,
+ "•": 30119,
+ "−": 30120,
+ "→": 30121,
+ "×": 30122,
+ "ο": 30123,
+ "₂": 30124,
+ "Ä": 30125,
+ "Î": 30126,
+ "Ś": 30127,
+ "đ": 30128,
+ "Å": 30129,
+ "ı": 30130,
+ "": 30131,
+ "ū": 30132,
+ "ν": 30133,
+ "Й": 30134,
+ "ª": 30135,
+ "ι": 30136,
+ "τ": 30137,
+ "ل": 30138,
+ "′": 30139,
+ "�": 30140,
+ "È": 30141,
+ "λ": 30142,
+ "": 30143,
+ "Ž": 30144,
+ "ς": 30145,
+ "ň": 30146,
+ "ρ": 30147,
+ "₁": 30148,
+ "Є": 30149,
+ "ī": 30150,
+ "ε": 30151,
+ "§": 30152,
+ "Ł": 30153,
+ "Ј": 30154,
+ "£": 30155,
+ "ر": 30156,
+ "Ż": 30157,
+ "¿": 30158,
+ "م": 30159,
+ "″": 30160,
+ "Ú": 30161,
+ "ن": 30162,
+ "ي": 30163,
+ "σ": 30164,
+ "´": 30165,
+ "": 30166,
+ "μ": 30167,
+ "³": 30168,
+ "ş": 30169,
+ "π": 30170,
+ "و": 30171,
+ "د": 30172,
+ "κ": 30173,
+ "₃": 30174,
+ "Í": 30175,
+ "ˈ": 30176,
+ "ب": 30177,
+ "Ó": 30178,
+ "Ã": 30179,
+ "¡": 30180,
+ "€": 30181,
+ "ť": 30182,
+ "η": 30183,
+ "ə": 30184,
+ "ー": 30185,
+ "Щ": 30186,
+ "β": 30187,
+ "├": 30188,
+ "ð": 30189,
+ "ґ": 30190,
+ "": 30191,
+ "υ": 30192,
+ "¹": 30193,
+ "₄": 30194,
+ "ت": 30195,
+ "י": 30196,
+ "γ": 30197,
+ "س": 30198,
+ "の": 30199,
+ "ğ": 30200,
+ "δ": 30201,
+ "ی": 30202,
+ "ン": 30203,
+ "ه": 30204,
+ "ו": 30205,
+ "ω": 30206,
+ "ί": 30207,
+ "█": 30208,
+ "θ": 30209,
+ "的": 30210,
+ "©": 30211,
+ "Â": 30212,
+ "↑": 30213,
+ ",": 30214,
+ "ː": 30215,
+ "ά": 30216,
+ "―": 30217,
+ "ع": 30218,
+ "Ç": 30219,
+ "₀": 30220,
+ "±": 30221,
+ "Ø": 30222,
+ "ď": 30223,
+ "Ř": 30224,
+ "Œ": 30225,
+ "½": 30226,
+ "└": 30227,
+ "ό": 30228,
+ "‚": 30229,
+ "ē": 30230,
+ "₅": 30231,
+ "Æ": 30232,
+ "Ș": 30233,
+ "ɛ": 30234,
+ "ה": 30235,
+ "ר": 30236,
+ "φ": 30237,
+ "₆": 30238,
+ "ė": 30239,
+ "ح": 30240,
+ "ف": 30241,
+ "ة": 30242,
+ "İ": 30243,
+ " ": 30244,
+ "←": 30245,
+ "║": 30246,
+ "ɔ": 30247,
+ "≤": 30248,
+ "ל": 30249,
+ "Đ": 30250,
+ "ա": 30251,
+ "Ō": 30252,
+ "א": 30253,
+ "്": 30254,
+ "ス": 30255,
+ "ش": 30256,
+ "大": 30257,
+ "ル": 30258,
+ "џ": 30259,
+ "イ": 30260,
+ "⟩": 30261,
+ " ": 30262,
+ "µ": 30263,
+ "∈": 30264,
+ "ق": 30265,
+ "⟨": 30266,
+ "。": 30267,
+ "Ґ": 30268,
+ "ा": 30269,
+ "ج": 30270,
+ "ʿ": 30271,
+ "ა": 30272,
+ "έ": 30273,
+ "χ": 30274,
+ "中": 30275,
+ "ב": 30276,
+ "ი": 30277,
+ "₈": 30278,
+ "ト": 30279,
+ "ή": 30280,
+ "ラ": 30281,
+ "Џ": 30282,
+ "ك": 30283,
+ "₇": 30284,
+ "מ": 30285,
+ "ת": 30286,
+ "一": 30287,
+ "Π": 30288,
+ "า": 30289,
+ "・": 30290,
+ "Σ": 30291,
+ "Α": 30292,
+ "Δ": 30293,
+ "ש": 30294,
+ "ز": 30295,
+ "्": 30296,
+ "ร": 30297,
+ "い": 30298,
+ "ʻ": 30299,
+ "Њ": 30300,
+ "₉": 30301,
+ "ʼ": 30302,
+ "リ": 30303,
+ "‐": 30304,
+ "ク": 30305,
+ "∞": 30306,
+ "⁄": 30307,
+ "ύ": 30308,
+ "Ş": 30309,
+ "ア": 30310,
+ "Ε": 30311,
+ "ɪ": 30312,
+ "人": 30313,
+ "Κ": 30314,
+ "∀": 30315,
+ "र": 30316,
+ "ッ": 30317,
+ "►": 30318,
+ "子": 30319,
+ "¬": 30320,
+ "خ": 30321,
+ "◄": 30322,
+ "َ": 30323,
+ "ע": 30324,
+ "日": 30325,
+ "し": 30326,
+ "ḥ": 30327,
+ "נ": 30328,
+ "山": 30329,
+ "、": 30330,
+ "Ї": 30331,
+ "る": 30332,
+ "文": 30333,
+ "Ñ": 30334,
+ "ド": 30335,
+ "ד": 30336,
+ "ն": 30337,
+ "Ђ": 30338,
+ "Γ": 30339,
+ "þ": 30340,
+ "": 30341,
+ "®": 30342,
+ "ک": 30343,
+ "": 30344,
+ "⚭": 30345,
+ "本": 30346,
+ "ℕ": 30347,
+ "น": 30348,
+ "ѝ": 30349,
+ "̶": 30350,
+ "อ": 30351,
+ "ў": 30352,
+ "に": 30353,
+ "数": 30354,
+ "ე": 30355,
+ "国": 30356,
+ "Ω": 30357,
+ " ": 30358,
+ "ǎ": 30359,
+ "ص": 30360,
+ "": 30361,
+ "Μ": 30362,
+ " ": 30363,
+ "と": 30364,
+ "": 30365,
+ "た": 30366,
+ "ط": 30367,
+ "ր": 30368,
+ "タ": 30369,
+ "ÿ": 30370,
+ "な": 30371,
+ "أ": 30372,
+ "シ": 30373,
+ "新": 30374,
+ "﹕": 30375,
+ "ʃ": 30376,
+ "ľ": 30377,
+ "ロ": 30378,
+ "⁴": 30379,
+ "்": 30380,
+ "⇒": 30381,
+ "ţ": 30382,
+ ":": 30383,
+ "Ț": 30384,
+ "ക": 30385,
+ "≥": 30386,
+ "ി": 30387,
+ "マ": 30388,
+ "ん": 30389,
+ "ṣ": 30390,
+ "ジ": 30391,
+ "是": 30392,
+ "이": 30393,
+ "⋅": 30394,
+ "田": 30395,
+ "を": 30396,
+ "道": 30397,
+ "ง": 30398,
+ "¨": 30399,
+ "ـ": 30400,
+ "เ": 30401,
+ "村": 30402,
+ "Ê": 30403,
+ "ם": 30404,
+ "›": 30405,
+ "用": 30406,
+ "ώ": 30407,
+ "天": 30408,
+ ")": 30409,
+ "་": 30410,
+ "镇": 30411,
+ "か": 30412,
+ "不": 30413,
+ "Τ": 30414,
+ "学": 30415,
+ "ư": 30416,
+ "有": 30417,
+ "ո": 30418,
+ "(": 30419,
+ "レ": 30420,
+ "گ": 30421,
+ "": 30422,
+ "フ": 30423,
+ "न": 30424,
+ "ก": 30425,
+ "ɑ": 30426,
+ "す": 30427,
+ "ח": 30428,
+ "上": 30429,
+ "": 30430,
+ "∧": 30431,
+ "ṭ": 30432,
+ "ק": 30433,
+ "ξ": 30434,
+ "¤": 30435,
+ "ि": 30436,
+ "会": 30437,
+ "ന": 30438,
+ "カ": 30439,
+ "ų": 30440,
+ "ま": 30441,
+ "ു": 30442,
+ "͡": 30443,
+ "क": 30444,
+ "া": 30445,
+ "小": 30446,
+ "ן": 30447,
+ "行": 30448,
+ "は": 30449,
+ "ʁ": 30450,
+ "Ő": 30451,
+ "Þ": 30452,
+ "り": 30453,
+ "キ": 30454,
+ "Λ": 30455,
+ "რ": 30456,
+ "三": 30457,
+ "が": 30458,
+ "コ": 30459,
+ "ζ": 30460,
+ "市": 30461,
+ "王": 30462,
+ "ℝ": 30463,
+ "Ź": 30464,
+ "う": 30465,
+ "て": 30466,
+ "区": 30467,
+ "ാ": 30468,
+ "": 30469,
+ "年": 30470,
+ "פ": 30471,
+ "ի": 30472,
+ "ſ": 30473,
+ "‹": 30474,
+ "त": 30475,
+ "ŏ": 30476,
+ "‑": 30477,
+ "̃": 30478,
+ "Ć": 30479,
+ "ى": 30480,
+ "「": 30481,
+ "」": 30482,
+ "ს": 30483,
+ "Ā": 30484,
+ "म": 30485,
+ "生": 30486,
+ "≠": 30487,
+ "Љ": 30488,
+ "स": 30489,
+ "↔": 30490,
+ "Ο": 30491,
+ "ว": 30492,
+ "ლ": 30493,
+ "成": 30494,
+ "定": 30495,
+ "ล": 30496,
+ "¶": 30497,
+ "כ": 30498,
+ "で": 30499,
+ "ּ": 30500,
+ "ม": 30501,
+ "个": 30502,
+ "和": 30503,
+ "ס": 30504,
+ "在": 30505,
+ "Β": 30506,
+ "ิ": 30507,
+ "Ι": 30508,
+ "⁵": 30509,
+ "ั": 30510,
+ "ɡ": 30511,
+ "━": 30512,
+ "ら": 30513,
+ "オ": 30514,
+ "¼": 30515,
+ "ե": 30516,
+ "バ": 30517,
+ "ָ": 30518,
+ "ŋ": 30519,
+ "ŭ": 30520,
+ "グ": 30521,
+ "⁶": 30522,
+ "Ь": 30523,
+ "⁰": 30524,
+ "方": 30525,
+ "บ": 30526,
+ "": 30527,
+ "高": 30528,
+ "ệ": 30529,
+ "Ν": 30530,
+ "ѣ": 30531,
+ "ィ": 30532,
+ "地": 30533,
+ "月": 30534,
+ "Ô": 30535,
+ "™": 30536,
+ "ウ": 30537,
+ "き": 30538,
+ "公": 30539,
+ "ạ": 30540,
+ "ო": 30541,
+ "ɾ": 30542,
+ "่": 30543,
+ "出": 30544,
+ "法": 30545,
+ "Θ": 30546,
+ "ส": 30547,
+ "名": 30548,
+ "ย": 30549,
+ "ത": 30550,
+ "Φ": 30551,
+ "↓": 30552,
+ "れ": 30553,
+ "ג": 30554,
+ "Ё": 30555,
+ "ơ": 30556,
+ "下": 30557,
+ "ә": 30558,
+ "ψ": 30559,
+ "┼": 30560,
+ "ャ": 30561,
+ "√": 30562,
+ "¥": 30563,
+ "社": 30564,
+ "ṇ": 30565,
+ "さ": 30566,
+ "ِ": 30567,
+ "く": 30568,
+ "े": 30569,
+ "Ы": 30570,
+ "ἐ": 30571,
+ "テ": 30572,
+ "为": 30573,
+ "乡": 30574,
+ "川": 30575,
+ "ナ": 30576,
+ "之": 30577,
+ "字": 30578,
+ "ム": 30579,
+ "ी": 30580,
+ "海": 30581,
+ "ブ": 30582,
+ "≈": 30583,
+ "!": 30584,
+ "پ": 30585,
+ "¯": 30586,
+ "ἀ": 30587,
+ "": 30588,
+ "こ": 30589,
+ "ְ": 30590,
+ "東": 30591,
+ "明": 30592,
+ "ὶ": 30593,
+ "时": 30594,
+ "ท": 30595,
+ "ɨ": 30596,
+ "デ": 30597,
+ "️": 30598,
+ "ʊ": 30599,
+ "エ": 30600,
+ "南": 30601,
+ "西": 30602,
+ "ल": 30603,
+ "メ": 30604,
+ "プ": 30605,
+ "平": 30606,
+ "式": 30607,
+ "ῖ": 30608,
+ "қ": 30609,
+ "व": 30610,
+ "غ": 30611,
+ "Ò": 30612,
+ "家": 30613,
+ "ʒ": 30614,
+ "サ": 30615,
+ "≡": 30616,
+ "ダ": 30617,
+ "ต": 30618,
+ "∃": 30619,
+ "₹": 30620,
+ "प": 30621,
+ "第": 30622,
+ "ര": 30623,
+ "ض": 30624,
+ "▄": 30625,
+ "城": 30626,
+ "ミ": 30627,
+ "ɐ": 30628,
+ "¦": 30629,
+ "美": 30630,
+ "件": 30631,
+ "ნ": 30632,
+ "Ð": 30633,
+ "ַ": 30634,
+ "ニ": 30635,
+ "部": 30636,
+ "ņ": 30637,
+ "ǐ": 30638,
+ "ט": 30639,
+ "य": 30640,
+ "あ": 30641,
+ "¾": 30642,
+ "ả": 30643,
+ "ち": 30644,
+ "ュ": 30645,
+ "÷": 30646,
+ "女": 30647,
+ "神": 30648,
+ "♦": 30649,
+ "¢": 30650,
+ "以": 30651,
+ "้": 30652,
+ "র": 30653,
+ "太": 30654,
+ "্": 30655,
+ "チ": 30656,
+ "յ": 30657,
+ "前": 30658,
+ "金": 30659,
+ "ւ": 30660,
+ "野": 30661,
+ "北": 30662,
+ "ห": 30663,
+ "‰": 30664,
+ "っ": 30665,
+ "加": 30666,
+ "原": 30667,
+ "ʲ": 30668,
+ "置": 30669,
+ "安": 30670,
+ "ガ": 30671,
+ "我": 30672,
+ "Ḥ": 30673,
+ "യ": 30674,
+ "京": 30675,
+ "▀": 30676,
+ "მ": 30677,
+ "ვ": 30678,
+ "ʾ": 30679,
+ "∨": 30680,
+ "ִ": 30681,
+ "可": 30682,
+ "取": 30683,
+ "县": 30684,
+ "二": 30685,
+ "▒": 30686,
+ "理": 30687,
+ "自": 30688,
+ "信": 30689,
+ "代": 30690,
+ "ี": 30691,
+ "צ": 30692,
+ "်": 30693,
+ "द": 30694,
+ "⁸": 30695,
+ "̯": 30696,
+ "お": 30697,
+ "要": 30698,
+ "ῦ": 30699,
+ "க": 30700,
+ "ễ": 30701,
+ "ु": 30702,
+ "ƒ": 30703,
+ "ʰ": 30704,
+ "化": 30705,
+ "✓": 30706,
+ "പ": 30707,
+ "의": 30708,
+ "다": 30709,
+ "木": 30710,
+ "ُ": 30711,
+ "̀": 30712,
+ "ˌ": 30713,
+ "ह": 30714,
+ "パ": 30715,
+ "水": 30716,
+ "ế": 30717,
+ "ด": 30718,
+ "ズ": 30719,
+ "⁹": 30720,
+ "島": 30721,
+ "": 30722,
+ "も": 30723,
+ "正": 30724,
+ "■": 30725,
+ "آ": 30726,
+ "พ": 30727,
+ "内": 30728,
+ "Ì": 30729,
+ "ǔ": 30730,
+ "┬": 30731,
+ "作": 30732,
+ "合": 30733,
+ "ὸ": 30734,
+ "み": 30735,
+ "▼": 30736,
+ "ῶ": 30737,
+ "⊙": 30738,
+ "~": 30739,
+ "ị": 30740,
+ "ْ": 30741,
+ "回": 30742,
+ "了": 30743,
+ "所": 30744,
+ "事": 30745,
+ "表": 30746,
+ "ำ": 30747,
+ "分": 30748,
+ "⁷": 30749,
+ "ү": 30750,
+ "": 30751,
+ "入": 30752,
+ "全": 30753,
+ "إ": 30754,
+ "里": 30755,
+ "Χ": 30756,
+ "ं": 30757,
+ "ハ": 30758,
+ "ค": 30759,
+ "⁻": 30760,
+ "モ": 30761,
+ "郎": 30762,
+ "据": 30763,
+ "●": 30764,
+ "州": 30765,
+ "∩": 30766,
+ "者": 30767,
+ "通": 30768,
+ "都": 30769,
+ "ℤ": 30770,
+ "♭": 30771,
+ "╌": 30772,
+ "つ": 30773,
+ "ḍ": 30774,
+ "江": 30775,
+ "ז": 30776,
+ "Ý": 30777,
+ "ө": 30778,
+ "์": 30779,
+ "到": 30780,
+ "ி": 30781,
+ "ʂ": 30782,
+ "对": 30783,
+ "스": 30784,
+ "使": 30785,
+ "ি": 30786,
+ "よ": 30787,
+ "Ἀ": 30788,
+ "Ï": 30789,
+ "∘": 30790,
+ "사": 30791,
+ "ন": 30792,
+ "世": 30793,
+ "ɕ": 30794,
+ "կ": 30795,
+ "უ": 30796,
+ "ട": 30797,
+ "ბ": 30798,
+ "ो": 30799,
+ "വ": 30800,
+ "果": 30801,
+ "十": 30802,
+ "ุ": 30803,
+ "藤": 30804,
+ "来": 30805,
+ "面": 30806,
+ "け": 30807,
+ "ĕ": 30808,
+ "ビ": 30809,
+ "这": 30810,
+ "지": 30811,
+ "ം": 30812,
+ "街": 30813,
+ "石": 30814,
+ "能": 30815,
+ "空": 30816,
+ "տ": 30817,
+ "ئ": 30818,
+ "武": 30819,
+ "ʹ": 30820,
+ "ϕ": 30821,
+ "后": 30822,
+ "ะ": 30823,
+ "元": 30824,
+ "ʔ": 30825,
+ "리": 30826,
+ "기": 30827,
+ "河": 30828,
+ "町": 30829,
+ "花": 30830,
+ "ὐ": 30831,
+ "类": 30832,
+ "░": 30833,
+ "物": 30834,
+ "Η": 30835,
+ "¸": 30836,
+ "ு": 30837,
+ "თ": 30838,
+ "ث": 30839,
+ "െ": 30840,
+ "╠": 30841,
+ "⊆": 30842,
+ "》": 30843,
+ "ツ": 30844,
+ "版": 30845,
+ "动": 30846,
+ "如": 30847,
+ "真": 30848,
+ "ɲ": 30849,
+ "号": 30850,
+ "ذ": 30851,
+ "정": 30852,
+ "林": 30853,
+ "書": 30854,
+ "民": 30855,
+ "口": 30856,
+ "ّ": 30857,
+ "示": 30858,
+ "മ": 30859,
+ "아": 30860,
+ "图": 30861,
+ "∪": 30862,
+ "戦": 30863,
+ "李": 30864,
+ "ല": 30865,
+ "《": 30866,
+ "光": 30867,
+ "白": 30868,
+ "心": 30869,
+ "த": 30870,
+ "ज": 30871,
+ "设": 30872,
+ "ί": 30873,
+ "路": 30874,
+ "ग": 30875,
+ "∥": 30876,
+ "한": 30877,
+ "最": 30878,
+ "Ћ": 30879,
+ "手": 30880,
+ "ս": 30881,
+ "?": 30882,
+ "型": 30883,
+ "ầ": 30884,
+ "セ": 30885,
+ "建": 30886,
+ "ェ": 30887,
+ "主": 30888,
+ "시": 30889,
+ "대": 30890,
+ "ῆ": 30891,
+ "‡": 30892,
+ "集": 30893,
+ "დ": 30894,
+ "目": 30895,
+ "Ρ": 30896,
+ "ァ": 30897,
+ "度": 30898,
+ "長": 30899,
+ "星": 30900,
+ "ノ": 30901,
+ "ộ": 30902,
+ "가": 30903,
+ "五": 30904,
+ "چ": 30905,
+ "로": 30906,
+ "ョ": 30907,
+ "重": 30908,
+ "于": 30909,
+ "发": 30910,
+ "史": 30911,
+ "ظ": 30912,
+ "ช": 30913,
+ "え": 30914,
+ "國": 30915,
+ "ĭ": 30916,
+ "ப": 30917,
+ "인": 30918,
+ "你": 30919,
+ "駅": 30920,
+ "‒": 30921,
+ "♥": 30922,
+ "多": 30923,
+ "ħ": 30924,
+ "Қ": 30925,
+ "ồ": 30926,
+ "士": 30927,
+ "四": 30928,
+ "┴": 30929,
+ "ம": 30930,
+ "司": 30931,
+ "ে": 30932,
+ "ὰ": 30933,
+ "∂": 30934,
+ "╬": 30935,
+ "次": 30936,
+ "Ľ": 30937,
+ "⟶": 30938,
+ "立": 30939,
+ "点": 30940,
+ "音": 30941,
+ "⠀": 30942,
+ "器": 30943,
+ "하": 30944,
+ "井": 30945,
+ "存": 30946,
+ "ֹ": 30947,
+ "当": 30948,
+ "Ë": 30949,
+ "★": 30950,
+ "寺": 30951,
+ "性": 30952,
+ "也": 30953,
+ "め": 30954,
+ "だ": 30955,
+ "位": 30956,
+ "ങ": 30957,
+ "ہ": 30958,
+ "值": 30959,
+ "古": 30960,
+ "გ": 30961,
+ "ব": 30962,
+ "院": 30963,
+ "േ": 30964,
+ "▶": 30965,
+ "ர": 30966,
+ "界": 30967,
+ "語": 30968,
+ "സ": 30969,
+ "수": 30970,
+ "ǒ": 30971,
+ "愛": 30972,
+ "✔": 30973,
+ "時": 30974,
+ "ọ": 30975,
+ "റ": 30976,
+ "մ": 30977,
+ "ケ": 30978,
+ "东": 30979,
+ "同": 30980,
+ "주": 30981,
+ "保": 30982,
+ "Õ": 30983,
+ "ố": 30984,
+ "ἰ": 30985,
+ "青": 30986,
+ "ゴ": 30987,
+ "体": 30988,
+ "清": 30989,
+ "相": 30990,
+ "จ": 30991,
+ "ء": 30992,
+ "情": 30993,
+ "𝕜": 30994,
+ "ক": 30995,
+ "ḫ": 30996,
+ "ờ": 30997,
+ "将": 30998,
+ "族": 30999,
+ "동": 31000,
+ "Υ": 31001,
+ "┌": 31002,
+ "ボ": 31003,
+ "宮": 31004,
+ "』": 31005,
+ "ম": 31006,
+ "『": 31007,
+ "ļ": 31008,
+ "श": 31009,
+ "ป": 31010,
+ "Ա": 31011,
+ "ब": 31012,
+ "자": 31013,
+ "政": 31014,
+ "ா": 31015,
+ "间": 31016,
+ "fi": 31017,
+ "松": 31018,
+ "ṃ": 31019,
+ "始": 31020,
+ "息": 31021,
+ "少": 31022,
+ "教": 31023,
+ "获": 31024,
+ "列": 31025,
+ "开": 31026,
+ "ტ": 31027,
+ "ワ": 31028,
+ "კ": 31029,
+ "科": 31030,
+ "春": 31031,
+ "治": 31032,
+ "吉": 31033,
+ "ས": 31034,
+ "ศ": 31035,
+ "ɒ": 31036,
+ "台": 31037,
+ "ネ": 31038,
+ "း": 31039,
+ "ĩ": 31040,
+ "工": 31041,
+ "ά": 31042,
+ "知": 31043,
+ "八": 31044,
+ "場": 31045,
+ "画": 31046,
+ "百": 31047,
+ "☆": 31048,
+ "記": 31049,
+ "得": 31050,
+ "ソ": 31051,
+ "氏": 31052,
+ "ာ": 31053,
+ "에": 31054,
+ "ল": 31055,
+ "ṛ": 31056,
+ "关": 31057,
+ "ġ": 31058,
+ "έ": 31059,
+ "∑": 31060,
+ "ベ": 31061,
+ "标": 31062,
+ "니": 31063,
+ "ὴ": 31064,
+ "ֵ": 31065,
+ "外": 31066,
+ "♠": 31067,
+ "わ": 31068,
+ "間": 31069,
+ "ภ": 31070,
+ "校": 31071,
+ "制": 31072,
+ "แ": 31073,
+ "力": 31074,
+ "門": 31075,
+ "好": 31076,
+ "ғ": 31077,
+ "Ù": 31078,
+ "ℓ": 31079,
+ "ֶ": 31080,
+ "는": 31081,
+ "┐": 31082,
+ "∗": 31083,
+ "指": 31084,
+ "色": 31085,
+ "返": 31086,
+ "馬": 31087,
+ "请": 31088,
+ "≫": 31089,
+ "風": 31090,
+ "ό": 31091,
+ "接": 31092,
+ "서": 31093,
+ "↳": 31094,
+ "せ": 31095,
+ "志": 31096,
+ "̲": 31097,
+ "魔": 31098,
+ "ң": 31099,
+ "更": 31100,
+ "程": 31101,
+ "김": 31102,
+ "郡": 31103,
+ "ོ": 31104,
+ "ũ": 31105,
+ "ച": 31106,
+ "利": 31107,
+ "県": 31108,
+ "周": 31109,
+ "そ": 31110,
+ "や": 31111,
+ "谷": 31112,
+ "香": 31113,
+ "♯": 31114,
+ "じ": 31115,
+ "،": 31116,
+ "期": 31117,
+ "∅": 31118,
+ "┘": 31119,
+ "初": 31120,
+ "福": 31121,
+ "片": 31122,
+ "ザ": 31123,
+ "動": 31124,
+ "参": 31125,
+ "성": 31126,
+ "Ə": 31127,
+ "╦": 31128,
+ "어": 31129,
+ "ხ": 31130,
+ "義": 31131,
+ "च": 31132,
+ "象": 31133,
+ "功": 31134,
+ "♂": 31135,
+ "도": 31136,
+ "고": 31137,
+ "过": 31138,
+ "վ": 31139,
+ "皇": 31140,
+ "特": 31141,
+ "ậ": 31142,
+ "长": 31143,
+ "英": 31144,
+ "ấ": 31145,
+ "ണ": 31146,
+ "Ъ": 31147,
+ "স": 31148,
+ "其": 31149,
+ "ত": 31150,
+ "流": 31151,
+ "除": 31152,
+ "일": 31153,
+ "ু": 31154,
+ "្": 31155,
+ "永": 31156,
+ "直": 31157,
+ "상": 31158,
+ "千": 31159,
+ "ắ": 31160,
+ "館": 31161,
+ "Ť": 31162,
+ "朝": 31163,
+ "ட": 31164,
+ "ɣ": 31165,
+ "单": 31166,
+ "ʀ": 31167,
+ "格": 31168,
+ "德": 31169,
+ "전": 31170,
+ "☺": 31171,
+ "ピ": 31172,
+ "歌": 31173,
+ "进": 31174,
+ "限": 31175,
+ "夫": 31176,
+ "트": 31177,
+ "⊢": 31178,
+ "園": 31179,
+ "量": 31180,
+ "土": 31181,
+ "放": 31182,
+ "码": 31183,
+ "等": 31184,
+ "系": 31185,
+ "∼": 31186,
+ "華": 31187,
+ "↵": 31188,
+ "소": 31189,
+ "常": 31190,
+ "否": 31191,
+ "見": 31192,
+ "源": 31193,
+ "ׁ": 31194,
+ "实": 31195,
+ "博": 31196,
+ "라": 31197,
+ "원": 31198,
+ "보": 31199,
+ "⊕": 31200,
+ "解": 31201,
+ "〜": 31202,
+ "男": 31203,
+ "দ": 31204,
+ "ポ": 31205,
+ "ろ": 31206,
+ "나": 31207,
+ "ག": 31208,
+ "無": 31209,
+ "Û": 31210,
+ "̥": 31211,
+ "ұ": 31212,
+ "查": 31213,
+ "̣": 31214,
+ "╗": 31215,
+ "╩": 31216,
+ "条": 31217,
+ "য": 31218,
+ "ὁ": 31219,
+ "後": 31220,
+ "他": 31221,
+ "网": 31222,
+ "ல": 31223,
+ "≃": 31224,
+ "화": 31225,
+ "ە": 31226,
+ "阿": 31227,
+ "ေ": 31228,
+ "户": 31229,
+ "∫": 31230,
+ "구": 31231,
+ "ར": 31232,
+ "မ": 31233,
+ "▸": 31234,
+ "լ": 31235,
+ "○": 31236,
+ "命": 31237,
+ "就": 31238,
+ "龍": 31239,
+ "君": 31240,
+ "夏": 31241,
+ "": 31242,
+ "言": 31243,
+ "先": 31244,
+ "➜": 31245,
+ "შ": 31246,
+ "ძ": 31247,
+ "ਾ": 31248,
+ "வ": 31249,
+ "ど": 31250,
+ "ヒ": 31251,
+ "ไ": 31252,
+ "ன": 31253,
+ "ば": 31254,
+ "ギ": 31255,
+ "գ": 31256,
+ "ἄ": 31257,
+ "ヤ": 31258,
+ "典": 31259,
+ "府": 31260,
+ "̄": 31261,
+ "신": 31262,
+ "组": 31263,
+ "改": 31264,
+ "ὲ": 31265,
+ "华": 31266,
+ "与": 31267,
+ "调": 31268,
+ "╝": 31269,
+ "ヴ": 31270,
+ "ქ": 31271,
+ "由": 31272,
+ "修": 31273,
+ "學": 31274,
+ "♣": 31275,
+ "消": 31276,
+ "符": 31277,
+ "ʌ": 31278,
+ "부": 31279,
+ "ớ": 31280,
+ "‾": 31281,
+ "▲": 31282,
+ "录": 31283,
+ "ള": 31284,
+ "연": 31285,
+ "을": 31286,
+ "ひ": 31287,
+ "영": 31288,
+ "┤": 31289,
+ "已": 31290,
+ "陽": 31291,
+ "င": 31292,
+ "국": 31293,
+ "容": 31294,
+ "未": 31295,
+ "宗": 31296,
+ "ᴇ": 31297,
+ "び": 31298,
+ "장": 31299,
+ "龙": 31300,
+ "්": 31301,
+ "提": 31302,
+ "ĝ": 31303,
+ "六": 31304,
+ "形": 31305,
+ "제": 31306,
+ "Հ": 31307,
+ "伊": 31308,
+ "ϵ": 31309,
+ "ข": 31310,
+ "Ű": 31311,
+ "ゃ": 31312,
+ "火": 31313,
+ "Ṣ": 31314,
+ "佐": 31315,
+ "⊥": 31316,
+ "̪": 31317,
+ "ứ": 31318,
+ "□": 31319,
+ "结": 31320,
+ "九": 31321,
+ "雄": 31322,
+ "թ": 31323,
+ "ា": 31324,
+ "而": 31325,
+ "བ": 31326,
+ "우": 31327,
+ "张": 31328,
+ "ट": 31329,
+ "ष": 31330,
+ "向": 31331,
+ "ῥ": 31332,
+ "选": 31333,
+ "공": 31334,
+ "ゲ": 31335,
+ "ʐ": 31336,
+ "仁": 31337,
+ "堂": 31338,
+ "ך": 31339,
+ "ု": 31340,
+ "ἔ": 31341,
+ "അ": 31342,
+ "ề": 31343,
+ "ད": 31344,
+ "선": 31345,
+ "오": 31346,
+ "久": 31347,
+ "": 31348,
+ "义": 31349,
+ "अ": 31350,
+ "╔": 31351,
+ "无": 31352,
+ "
": 31353,
+ "은": 31354,
+ "ʷ": 31355,
+ "那": 31356,
+ "線": 31357,
+ "务": 31358,
+ "基": 31359,
+ "属": 31360,
+ "配": 31361,
+ "미": 31362,
+ "軍": 31363,
+ "โ": 31364,
+ "津": 31365,
+ "完": 31366,
+ "研": 31367,
+ "注": 31368,
+ "失": 31369,
+ "应": 31370,
+ "က": 31371,
+ "╚": 31372,
+ "友": 31373,
+ "章": 31374,
+ "Ψ": 31375,
+ "求": 31376,
+ "ण": 31377,
+ "경": 31378,
+ "": 31379,
+ "भ": 31380,
+ "们": 31381,
+ "模": 31382,
+ "需": 31383,
+ "ச": 31384,
+ "電": 31385,
+ "প": 31386,
+ "դ": 31387,
+ "へ": 31388,
+ "此": 31389,
+ "夜": 31390,
+ "或": 31391,
+ "橋": 31392,
+ "根": 31393,
+ "Ī": 31394,
+ "玉": 31395,
+ "ู": 31396,
+ "ṅ": 31397,
+ "交": 31398,
+ "品": 31399,
+ "良": 31400,
+ "ང": 31401,
+ "ォ": 31402,
+ "则": 31403,
+ "開": 31404,
+ "Ζ": 31405,
+ "문": 31406,
+ "被": 31407,
+ "조": 31408,
+ "株": 31409,
+ "记": 31410,
+ "會": 31411,
+ "经": 31412,
+ "ू": 31413,
+ "ょ": 31414,
+ "转": 31415,
+ "崎": 31416,
+ "마": 31417,
+ "⌘": 31418,
+ "比": 31419,
+ "造": 31420,
+ "ܐ": 31421,
+ "ื": 31422,
+ "没": 31423,
+ "现": 31424,
+ "七": 31425,
+ "Ά": 31426,
+ "商": 31427,
+ "ை": 31428,
+ "机": 31429,
+ "阳": 31430,
+ "ĉ": 31431,
+ "角": 31432,
+ "站": 31433,
+ "բ": 31434,
+ "해": 31435,
+ "及": 31436,
+ "ध": 31437,
+ "術": 31438,
+ "认": 31439,
+ "": 31440,
+ "创": 31441,
+ "編": 31442,
+ "ղ": 31443,
+ "ḩ": 31444,
+ "伝": 31445,
+ "岡": 31446,
+ "ड": 31447,
+ "ホ": 31448,
+ "港": 31449,
+ "任": 31450,
+ "登": 31451,
+ "ི": 31452,
+ "็": 31453,
+ "布": 31454,
+ "究": 31455,
+ "帝": 31456,
+ "여": 31457,
+ "산": 31458,
+ "န": 31459,
+ "◦": 31460,
+ "密": 31461,
+ "变": 31462,
+ "序": 31463,
+ "♀": 31464,
+ "∣": 31465,
+ "计": 31466,
+ "曲": 31467,
+ "Ă": 31468,
+ "ύ": 31469,
+ "ʋ": 31470,
+ "传": 31471,
+ "】": 31472,
+ "包": 31473,
+ "意": 31474,
+ "去": 31475,
+ "沙": 31476,
+ "⸮": 31477,
+ "【": 31478,
+ "写": 31479,
+ "超": 31480,
+ "ய": 31481,
+ "今": 31482,
+ "┈": 31483,
+ "森": 31484,
+ "ි": 31485,
+ "⊗": 31486,
+ "비": 31487,
+ "հ": 31488,
+ "Ḩ": 31489,
+ "ǫ": 31490,
+ "黄": 31491,
+ "∙": 31492,
+ "드": 31493,
+ "🌍": 31494,
+ "景": 31495,
+ "湖": 31496,
+ "ք": 31497,
+ "ိ": 31498,
+ "ⁿ": 31499,
+ "̂": 31500,
+ "ペ": 31501,
+ "何": 31502,
+ "宇": 31503,
+ "張": 31504,
+ "语": 31505,
+ "老": 31506,
+ "例": 31507,
+ "Ṭ": 31508,
+ "鉄": 31509,
+ "克": 31510,
+ "☉": 31511,
+ "": 31512,
+ "ɹ": 31513,
+ "ἱ": 31514,
+ "ⴰ": 31515,
+ "然": 31516,
+ "를": 31517,
+ "ǧ": 31518,
+ "報": 31519,
+ "服": 31520,
+ "Ď": 31521,
+ "想": 31522,
+ "‖": 31523,
+ "ユ": 31524,
+ "実": 31525,
+ "载": 31526,
+ "요": 31527,
+ "ℚ": 31528,
+ "波": 31529,
+ "马": 31530,
+ "状": 31531,
+ "线": 31532,
+ "유": 31533,
+ "洋": 31534,
+ "万": 31535,
+ "진": 31536,
+ "জ": 31537,
+ "添": 31538,
+ "球": 31539,
+ "機": 31540,
+ "支": 31541,
+ "显": 31542,
+ "拉": 31543,
+ "ὑ": 31544,
+ "送": 31545,
+ "隊": 31546,
+ "ธ": 31547,
+ "处": 31548,
+ "師": 31549,
+ "⊂": 31550,
+ "像": 31551,
+ "়": 31552,
+ "黒": 31553,
+ "ց": 31554,
+ "": 31555,
+ "ủ": 31556,
+ "只": 31557,
+ "起": 31558,
+ "段": 31559,
+ "တ": 31560,
+ "區": 31561,
+ "選": 31562,
+ "천": 31563,
+ "業": 31564,
+ "算": 31565,
+ "广": 31566,
+ "រ": 31567,
+ "视": 31568,
+ "秋": 31569,
+ "因": 31570,
+ "년": 31571,
+ "ے": 31572,
+ "输": 31573,
+ "̱": 31574,
+ "Մ": 31575,
+ "∆": 31576,
+ "康": 31577,
+ "세": 31578,
+ "思": 31579,
+ "死": 31580,
+ "聖": 31581,
+ "민": 31582,
+ "-": 31583,
+ "头": 31584,
+ "ർ": 31585,
+ "∉": 31586,
+ "車": 31587,
+ "┃": 31588,
+ "▇": 31589,
+ "按": 31590,
+ "⍵": 31591,
+ "夢": 31592,
+ "汉": 31593,
+ "从": 31594,
+ "ী": 31595,
+ "题": 31596,
+ "ˆ": 31597,
+ "ἡ": 31598,
+ "展": 31599,
+ "省": 31600,
+ "ུ": 31601,
+ "葉": 31602,
+ "호": 31603,
+ "ਰ": 31604,
+ "素": 31605,
+ "関": 31606,
+ "그": 31607,
+ ";": 31608,
+ "න": 31609,
+ "页": 31610,
+ "共": 31611,
+ "宿": 31612,
+ "态": 31613,
+ "ན": 31614,
+ "技": 31615,
+ "乐": 31616,
+ "控": 31617,
+ "移": 31618,
+ "影": 31619,
+ "ụ": 31620,
+ "ゆ": 31621,
+ "ご": 31622,
+ "್": 31623,
+ "管": 31624,
+ "ൾ": 31625,
+ "╣": 31626,
+ "戸": 31627,
+ "⇔": 31628,
+ "函": 31629,
+ "ẓ": 31630,
+ "尾": 31631,
+ "场": 31632,
+ "介": 31633,
+ "": 31634,
+ "育": 31635,
+ "ර": 31636,
+ "泉": 31637,
+ "ൽ": 31638,
+ "说": 31639,
+ "换": 31640,
+ "必": 31641,
+ "紀": 31642,
+ "མ": 31643,
+ "ེ": 31644,
+ "ợ": 31645,
+ "ൻ": 31646,
+ "宝": 31647,
+ "気": 31648,
+ "门": 31649,
+ "令": 31650,
+ "左": 31651,
+ "漢": 31652,
+ "若": 31653,
+ "屋": 31654,
+ "局": 31655,
+ "打": 31656,
+ "発": 31657,
+ "问": 31658,
+ "恋": 31659,
+ "兵": 31660,
+ "別": 31661,
+ "ા": 31662,
+ "Ս": 31663,
+ "߬": 31664,
+ "গ": 31665,
+ "并": 31666,
+ "ख": 31667,
+ "ή": 31668,
+ "节": 31669,
+ "ʑ": 31670,
+ "ץ": 31671,
+ "Ḫ": 31672,
+ "ℂ": 31673,
+ "引": 31674,
+ "统": 31675,
+ "智": 31676,
+ "̩": 31677,
+ "ै": 31678,
+ "电": 31679,
+ "현": 31680,
+ "✅": 31681,
+ "赤": 31682,
+ "断": 31683,
+ "ね": 31684,
+ "称": 31685,
+ "শ": 31686,
+ "身": 31687,
+ "首": 31688,
+ "付": 31689,
+ "⅓": 31690,
+ "ਸ": 31691,
+ "連": 31692,
+ "ზ": 31693,
+ "官": 31694,
+ "持": 31695,
+ "奈": 31696,
+ "御": 31697,
+ "親": 31698,
+ "군": 31699,
+ "库": 31700,
+ "秀": 31701,
+ "址": 31702,
+ "守": 31703,
+ "活": 31704,
+ "ལ": 31705,
+ "ふ": 31706,
+ "藏": 31707,
+ "ស": 31708,
+ "竹": 31709,
+ "草": 31710,
+ "結": 31711,
+ "ා": 31712,
+ "昌": 31713,
+ "樹": 31714,
+ "ள": 31715,
+ "무": 31716,
+ "হ": 31717,
+ "ゼ": 31718,
+ "̈": 31719,
+ "շ": 31720,
+ "勝": 31721,
+ "足": 31722,
+ "ရ": 31723,
+ "위": 31724,
+ "į": 31725,
+ "Ἰ": 31726,
+ "航": 31727,
+ "陳": 31728,
+ "业": 31729,
+ "富": 31730,
+ "雪": 31731,
+ "आ": 31732,
+ "再": 31733,
+ "안": 31734,
+ "默": 31735,
+ "박": 31736,
+ "용": 31737,
+ "✿": 31738,
+ "楽": 31739,
+ "沢": 31740,
+ "羅": 31741,
+ "Ė": 31742,
+ "ʎ": 31743,
+ "忠": 31744,
+ "错": 31745,
+ "단": 31746,
+ "면": 31747,
+ "ķ": 31748,
+ "桥": 31749,
+ "雲": 31750,
+ "该": 31751,
+ "ṯ": 31752,
+ "岩": 31753,
+ "남": 31754,
+ "ỹ": 31755,
+ "专": 31756,
+ "切": 31757,
+ "店": 31758,
+ "朱": 31759,
+ "ף": 31760,
+ "ず": 31761,
+ "幸": 31762,
+ "母": 31763,
+ "ɫ": 31764,
+ "々": 31765,
+ "∷": 31766,
+ "串": 31767,
+ "击": 31768,
+ "Ἐ": 31769,
+ "設": 31770,
+ "⊤": 31771,
+ "ₗ": 31772,
+ "經": 31773,
+ "강": 31774,
+ "ပ": 31775,
+ "।": 31776,
+ "ѐ": 31777,
+ "ᾶ": 31778,
+ "➖": 31779,
+ "座": 31780,
+ "씨": 31781,
+ "ぶ": 31782,
+ "Ţ": 31783,
+ "云": 31784,
+ "告": 31785,
+ "変": 31786,
+ "试": 31787,
+ "隆": 31788,
+ "개": 31789,
+ "պ": 31790,
+ "判": 31791,
+ "劉": 31792,
+ "˜": 31793,
+ "ˠ": 31794,
+ "编": 31795,
+ "ณ": 31796,
+ "ữ": 31797,
+ "达": 31798,
+ "Ě": 31799,
+ "ܝ": 31800,
+ "ြ": 31801,
+ "ḷ": 31802,
+ "右": 31803,
+ "들": 31804,
+ "ŝ": 31805,
+ "ӏ": 31806,
+ "్": 31807,
+ "എ": 31808,
+ "ற": 31809,
+ "复": 31810,
+ "看": 31811,
+ "話": 31812,
+ "坂": 31813,
+ "尔": 31814,
+ "衛": 31815,
+ "զ": 31816,
+ "차": 31817,
+ "丸": 31818,
+ "样": 31819,
+ "鬼": 31820,
+ "़": 31821,
+ "학": 31822,
+ "喜": 31823,
+ "斯": 31824,
+ "銀": 31825,
+ "만": 31826,
+ "Ξ": 31827,
+ "ც": 31828,
+ "群": 31829,
+ "近": 31830,
+ "塔": 31831,
+ "ϊ": 31832,
+ "ந": 31833,
+ "む": 31834,
+ "确": 31835,
+ "索": 31836,
+ "∇": 31837,
+ "非": 31838,
+ "望": 31839,
+ "❯": 31840,
+ "希": 31841,
+ "ỳ": 31842,
+ "甲": 31843,
+ "越": 31844,
+ "鳥": 31845,
+ "麻": 31846,
+ "雅": 31847,
+ "拳": 31848,
+ "ក": 31849,
+ "溪": 31850,
+ "测": 31851,
+ "话": 31852,
+ "池": 31853,
+ "菜": 31854,
+ "食": 31855,
+ "터": 31856,
+ "ਿ": 31857,
+ "渡": 31858,
+ "速": 31859,
+ "ھ": 31860,
+ "ರ": 31861,
+ "陈": 31862,
+ "健": 31863,
+ "ো": 31864,
+ "ක": 31865,
+ "ὺ": 31866,
+ "军": 31867,
+ "庄": 31868,
+ "红": 31869,
+ "Ħ": 31870,
+ "論": 31871,
+ "Ÿ": 31872,
+ "Έ": 31873,
+ "ự": 31874,
+ "孝": 31875,
+ "頭": 31876,
+ "飛": 31877,
+ "˚": 31878,
+ "▓": 31879,
+ "ً": 31880,
+ "": 31881,
+ "么": 31882,
+ "達": 31883,
+ "ѫ": 31884,
+ "巴": 31885,
+ "洞": 31886,
+ "貴": 31887,
+ "项": 31888,
+ "ദ": 31889,
+ "ɵ": 31890,
+ "̍": 31891,
+ "ҡ": 31892,
+ "种": 31893,
+ "运": 31894,
+ "식": 31895,
+ "ྱ": 31896,
+ "ḳ": 31897,
+ "彦": 31898,
+ "⥤": 31899,
+ "书": 31900,
+ "构": 31901,
+ "米": 31902,
+ "连": 31903,
+ "操": 31904,
+ "装": 31905,
+ "과": 31906,
+ "ぐ": 31907,
+ "反": 31908,
+ "̌": 31909,
+ "仮": 31910,
+ "员": 31911,
+ "昭": 31912,
+ "ശ": 31913,
+ "兴": 31914,
+ "客": 31915,
+ "删": 31916,
+ "ම": 31917,
+ "ව": 31918,
+ "პ": 31919,
+ "ċ": 31920,
+ "ഷ": 31921,
+ "သ": 31922,
+ "ᵉ": 31923,
+ "居": 31924,
+ "타": 31925,
+ "𝓝": 31926,
+ "थ": 31927,
+ "現": 31928,
+ "ˇ": 31929,
+ "종": 31930,
+ "助": 31931,
+ "唐": 31932,
+ "瀬": 31933,
+ "ន": 31934,
+ "微": 31935,
+ "1": 31936,
+ "Ġ": 31937,
+ "ほ": 31938,
+ "舞": 31939,
+ "내": 31940,
+ "중": 31941,
+ "Ē": 31942,
+ "导": 31943,
+ "效": 31944,
+ "방": 31945,
+ "ḏ": 31946,
+ "深": 31947,
+ "梅": 31948,
+ "料": 31949,
+ "월": 31950,
+ "每": 31951,
+ "洲": 31952,
+ "회": 31953,
+ "茶": 31954,
+ "败": 31955,
+ "ഞ": 31956,
+ "ể": 31957,
+ "ヨ": 31958,
+ "些": 31959,
+ "双": 31960,
+ "嘉": 31961,
+ "모": 31962,
+ "바": 31963,
+ "ษ": 31964,
+ "進": 31965,
+ "음": 31966,
+ "ญ": 31967,
+ "丁": 31968,
+ "故": 31969,
+ "計": 31970,
+ "遠": 31971,
+ "교": 31972,
+ "재": 31973,
+ "候": 31974,
+ "房": 31975,
+ "명": 31976,
+ "两": 31977,
+ "ფ": 31978,
+ "才": 31979,
+ "합": 31980,
+ "止": 31981,
+ "番": 31982,
+ "ɯ": 31983,
+ "奇": 31984,
+ "怪": 31985,
+ "联": 31986,
+ "역": 31987,
+ "泰": 31988,
+ "백": 31989,
+ "ὀ": 31990,
+ "げ": 31991,
+ "べ": 31992,
+ "边": 31993,
+ "还": 31994,
+ "黃": 31995,
+ "왕": 31996,
+ "收": 31997,
+ "弘": 31998,
+ "给": 31999
+ },
+ "merges": [
+ "▁ t",
+ "e r",
+ "i n",
+ "▁ a",
+ "e n",
+ "o n",
+ "▁t h",
+ "▁ th",
+ "e s",
+ "▁ s",
+ "▁ d",
+ "a t",
+ "o r",
+ "a n",
+ "▁ c",
+ "i s",
+ "r e",
+ "i t",
+ "▁t he",
+ "▁th e",
+ "▁ the",
+ "a r",
+ "l e",
+ "▁ w",
+ "▁ p",
+ "o u",
+ "a l",
+ "▁ f",
+ "▁ m",
+ "e d",
+ "▁ o",
+ "▁ b",
+ "o m",
+ "io n",
+ "i on",
+ "in g",
+ "i ng",
+ "i c",
+ "a s",
+ "e l",
+ "en t",
+ "e nt",
+ "▁i n",
+ "▁ in",
+ "▁ h",
+ "n d",
+ "e t",
+ "▁ l",
+ "▁ n",
+ "s t",
+ "▁t o",
+ "▁ to",
+ "c h",
+ "▁ I",
+ "r o",
+ "i l",
+ "▁o f",
+ "▁ of",
+ "d e",
+ "c t",
+ "▁ (",
+ "a m",
+ "▁ C",
+ "▁d e",
+ "▁ de",
+ "▁ S",
+ "▁ u",
+ "▁ A",
+ "▁ \\",
+ "▁ e",
+ "▁a nd",
+ "▁an d",
+ "▁ and",
+ "▁ T",
+ "o l",
+ "▁ v",
+ "i m",
+ "o t",
+ "a d",
+ "u t",
+ "▁ g",
+ "e m",
+ "u r",
+ "i d",
+ "▁ *",
+ "i g",
+ "r a",
+ "▁r e",
+ "▁ re",
+ "▁i s",
+ "▁ is",
+ "q u",
+ "o w",
+ "▁ M",
+ "es t",
+ "e st",
+ "▁ y",
+ "s e",
+ "v e",
+ "c e",
+ "i e",
+ "u n",
+ "▁ P",
+ "▁ B",
+ "a g",
+ "u l",
+ "▁ =",
+ "h e",
+ "en d",
+ "e nd",
+ "od e",
+ "o de",
+ "te r",
+ "t er",
+ "me nt",
+ "men t",
+ "m ent",
+ "o s",
+ "▁ D",
+ "i f",
+ "at ion",
+ "ati on",
+ "atio n",
+ "a tion",
+ "▁f or",
+ "▁fo r",
+ "▁ for",
+ "▁ r",
+ "▁ L",
+ "▁y ou",
+ "▁yo u",
+ "▁ you",
+ "▁b e",
+ "▁ be",
+ "l y",
+ "ve r",
+ "v er",
+ "a b",
+ "t e",
+ "▁i t",
+ "▁ it",
+ "▁o n",
+ "▁ on",
+ "r i",
+ "u s",
+ "▁ \"",
+ "▁w h",
+ "▁ wh",
+ "▁c on",
+ "▁co n",
+ "▁ con",
+ "▁ H",
+ "▁s t",
+ "▁ st",
+ "i r",
+ "▁ E",
+ "▁ F",
+ "c k",
+ "▁a n",
+ "▁ an",
+ "t h",
+ "e g",
+ "a y",
+ "it h",
+ "i th",
+ "▁ R",
+ "is t",
+ "i st",
+ "an d",
+ "a nd",
+ "▁t hat",
+ "▁th at",
+ "▁ that",
+ "▁a l",
+ "▁ al",
+ "▁ $",
+ "▁ #",
+ "o d",
+ "u m",
+ "▁ W",
+ "h t",
+ "co de",
+ "cod e",
+ "c ode",
+ "▁ G",
+ "at e",
+ "a te",
+ "es s",
+ "e ss",
+ "▁ N",
+ "er e",
+ "e re",
+ "p p",
+ "▁a s",
+ "▁ as",
+ "▁s e",
+ "▁ se",
+ "▁p ro",
+ "▁pr o",
+ "▁ pro",
+ "▁w ith",
+ "▁wit h",
+ "▁ with",
+ "p e",
+ "▁ k",
+ "er s",
+ "e rs",
+ "p t",
+ ") ;",
+ "l o",
+ "▁c om",
+ "▁co m",
+ "▁ com",
+ "am e",
+ "a me",
+ "▁ `",
+ "▁C om",
+ "▁Co m",
+ "▁ Com",
+ "i a",
+ "an t",
+ "a nt",
+ "▁l a",
+ "▁ la",
+ "▁ {",
+ "▁e n",
+ "▁ en",
+ "ct ion",
+ "c tion",
+ "▁e x",
+ "▁ ex",
+ "l d",
+ "u b",
+ "▁ j",
+ "l a",
+ "u e",
+ "▁ J",
+ "ic h",
+ "i ch",
+ "▁d o",
+ "▁ do",
+ "▁ O",
+ "▁q u",
+ "▁ qu",
+ "i v",
+ "or t",
+ "o rt",
+ "ar t",
+ "a rt",
+ "▁u n",
+ "▁ un",
+ "▁# #",
+ "▁ ##",
+ "▁t his",
+ "▁th is",
+ "▁ this",
+ "k e",
+ "▁h a",
+ "▁ ha",
+ "▁ -",
+ "ou t",
+ "o ut",
+ "▁T he",
+ "▁Th e",
+ "▁ The",
+ "▁n ot",
+ "▁no t",
+ "▁ not",
+ "▁n e",
+ "▁ ne",
+ "il l",
+ "i ll",
+ "▁l e",
+ "▁ le",
+ "c i",
+ "ro m",
+ "r om",
+ "in e",
+ "i ne",
+ "/ /",
+ "o p",
+ "eg in",
+ "e gin",
+ "▁Com ment",
+ "▁Comm ent",
+ "▁ Comment",
+ "be gin",
+ "beg in",
+ "b egin",
+ "с т",
+ "as s",
+ "a ss",
+ "i z",
+ ") .",
+ "o g",
+ "▁ п",
+ "▁o r",
+ "▁ or",
+ "▁w as",
+ "▁wa s",
+ "▁ was",
+ "▁a t",
+ "▁ at",
+ "ou r",
+ "o ur",
+ "▁ i",
+ "ai n",
+ "a in",
+ "▁ K",
+ "н а",
+ "▁ V",
+ "g e",
+ "▁s u",
+ "▁ su",
+ "a p",
+ "ag e",
+ "a ge",
+ "ou ld",
+ "oul d",
+ "o uld",
+ "n e",
+ "a v",
+ "x t",
+ "or e",
+ "o re",
+ "il e",
+ "i le",
+ "- -",
+ "▁ в",
+ "▁b y",
+ "▁ by",
+ "l i",
+ "at h",
+ "a th",
+ "р а",
+ "be r",
+ "b er",
+ "ac h",
+ "a ch",
+ "al l",
+ "a ll",
+ "▁T h",
+ "▁ Th",
+ "ul t",
+ "u lt",
+ "▁ }",
+ "▁ U",
+ "▁u s",
+ "▁ us",
+ "▁ z",
+ "us t",
+ "u st",
+ "▁h ave",
+ "▁ha ve",
+ "▁hav e",
+ "▁ have",
+ "li c",
+ "l ic",
+ "н и",
+ "▁c an",
+ "▁ca n",
+ "▁ can",
+ "t r",
+ "co m",
+ "c om",
+ ") ,",
+ "▁I n",
+ "▁ In",
+ "in d",
+ "i nd",
+ "el l",
+ "e ll",
+ "▁f rom",
+ "▁fr om",
+ "▁fro m",
+ "▁ from",
+ "о в",
+ "t o",
+ "▁ [",
+ "ab le",
+ "abl e",
+ "a ble",
+ "os t",
+ "o st",
+ "▁c h",
+ "▁ ch",
+ "ec t",
+ "e ct",
+ "ig ht",
+ "igh t",
+ "in t",
+ "i nt",
+ "▁ '",
+ "▁a re",
+ "▁ar e",
+ "▁ are",
+ "▁i m",
+ "▁ im",
+ "▁s h",
+ "▁ sh",
+ "▁ <",
+ "▁A n",
+ "▁ An",
+ "▁ с",
+ "at a",
+ "a ta",
+ "ir e",
+ "i re",
+ "▁t r",
+ "▁ tr",
+ "co n",
+ "c on",
+ "or d",
+ "o rd",
+ "it y",
+ "i ty",
+ "ar d",
+ "a rd",
+ "▁h e",
+ "▁ he",
+ "▁b ut",
+ "▁bu t",
+ "▁ but",
+ "o c",
+ "= \"",
+ "▁p r",
+ "▁ pr",
+ "ur e",
+ "u re",
+ "pe r",
+ "p er",
+ "ac k",
+ "a ck",
+ "or k",
+ "on g",
+ "o ng",
+ "an s",
+ "a ns",
+ "к о",
+ "pl e",
+ "p le",
+ "▁d es",
+ "▁de s",
+ "▁ des",
+ "o k",
+ "or m",
+ "o rm",
+ "we r",
+ "w er",
+ "a k",
+ "p r",
+ "as e",
+ "a se",
+ "▁e l",
+ "▁ el",
+ "p h",
+ "a c",
+ "▁u nd",
+ "▁un d",
+ "▁ und",
+ "▁a r",
+ "▁ ar",
+ "▁i f",
+ "▁ if",
+ "u d",
+ "p s",
+ "it e",
+ "i te",
+ "bl e",
+ "b le",
+ "н о",
+ "fe r",
+ "f er",
+ "p l",
+ "iv e",
+ "i ve",
+ "an g",
+ "a ng",
+ "en s",
+ "e ns",
+ "р о",
+ "▁s o",
+ "▁ so",
+ "s o",
+ "as t",
+ "a st",
+ "( )",
+ "sw er",
+ "s wer",
+ "r u",
+ "ie s",
+ "i es",
+ "▁ :",
+ "a u",
+ "o v",
+ "р е",
+ "г о",
+ "▁d er",
+ "▁de r",
+ "▁ der",
+ "▁m y",
+ "▁ my",
+ "▁w e",
+ "▁ we",
+ "▁m e",
+ "▁ me",
+ "n t",
+ "▁a d",
+ "▁ ad",
+ "ur n",
+ "u rn",
+ "▁y our",
+ "▁you r",
+ "▁yo ur",
+ "▁ your",
+ ":/ /",
+ ": //",
+ "ar e",
+ "a re",
+ "▁a ll",
+ "▁al l",
+ "▁ all",
+ "f f",
+ "i o",
+ "es tion",
+ "est ion",
+ "esti on",
+ "im e",
+ "i me",
+ "▁e r",
+ "▁ er",
+ "la ss",
+ "las s",
+ "l ass",
+ "▁ и",
+ "▁wh ich",
+ "▁ which",
+ "om e",
+ "o me",
+ "on t",
+ "o nt",
+ "▁p ar",
+ "▁pa r",
+ "▁ par",
+ "▁m a",
+ "▁ ma",
+ "▁ Y",
+ "\" ,",
+ "▁ о",
+ "f t",
+ "ia l",
+ "i al",
+ "c c",
+ "ou nd",
+ "oun d",
+ "o und",
+ "▁l i",
+ "▁ li",
+ "▁re s",
+ "▁r es",
+ "▁ res",
+ "et h",
+ "e th",
+ "je ct",
+ "j ect",
+ "▁a pp",
+ "▁ap p",
+ "▁ app",
+ "▁S t",
+ "▁ St",
+ "ic e",
+ "i ce",
+ "▁a m",
+ "▁ am",
+ "ac t",
+ "a ct",
+ "▁d el",
+ "▁de l",
+ "▁ del",
+ "g r",
+ "at ed",
+ "ate d",
+ "a ted",
+ "ie r",
+ "i er",
+ "▁a b",
+ "▁ ab",
+ "▁e t",
+ "▁ et",
+ "al ly",
+ "all y",
+ ". .",
+ "po rt",
+ "por t",
+ "p ort",
+ "i k",
+ "▁p er",
+ "▁pe r",
+ "▁ per",
+ "▁c ont",
+ "▁con t",
+ "▁co nt",
+ "▁ cont",
+ "р и",
+ "к а",
+ "se r",
+ "s er",
+ "л и",
+ "l l",
+ "ie w",
+ "i ew",
+ "ig n",
+ "i gn",
+ "_ {",
+ "pu t",
+ "p ut",
+ "on e",
+ "o ne",
+ "un ction",
+ "unc tion",
+ "unct ion",
+ "▁d i",
+ "▁ di",
+ "ar y",
+ "a ry",
+ "it ion",
+ "iti on",
+ "i tion",
+ "m a",
+ "е н",
+ "ge t",
+ "g et",
+ "▁l o",
+ "▁ lo",
+ "▁v al",
+ "▁va l",
+ "▁ val",
+ "▁ Q",
+ "ra n",
+ "r an",
+ "▁ д",
+ "en ce",
+ "enc e",
+ "▁w ork",
+ "▁wor k",
+ "▁ work",
+ "▁н а",
+ "▁ на",
+ "i p",
+ "it em",
+ "ite m",
+ "i tem",
+ "yp e",
+ "y pe",
+ "▁ &",
+ "▁h is",
+ "▁hi s",
+ "▁ his",
+ "▁u se",
+ "▁us e",
+ "▁ use",
+ "de r",
+ "d er",
+ "▁An swer",
+ "▁Ans wer",
+ "▁ Answer",
+ "▁w ill",
+ "▁wil l",
+ "▁ will",
+ "iz e",
+ "i ze",
+ "т а",
+ "lo w",
+ "l ow",
+ "▁C h",
+ "▁ Ch",
+ "▁g et",
+ "▁ge t",
+ "▁ get",
+ "id e",
+ "i de",
+ "ou s",
+ "o us",
+ "in k",
+ "pt ion",
+ "p tion",
+ "л а",
+ "tu rn",
+ "t urn",
+ "un g",
+ "u ng",
+ "e c",
+ "u g",
+ "fo rm",
+ "for m",
+ "f orm",
+ "re s",
+ "r es",
+ "ht t",
+ "h tt",
+ "ou g",
+ "o ug",
+ "л ь",
+ "▁n o",
+ "▁ no",
+ "c l",
+ "▁r o",
+ "▁ ro",
+ "▁o ne",
+ "▁on e",
+ "▁ one",
+ "t t",
+ "cr i",
+ "c ri",
+ "d u",
+ "▁u p",
+ "▁ up",
+ "т о",
+ "( \"",
+ "▁o b",
+ "▁ ob",
+ "w e",
+ "or y",
+ "o ry",
+ "▁e st",
+ "▁es t",
+ "▁ est",
+ "er y",
+ "e ry",
+ "ie l",
+ "i el",
+ "st r",
+ "s tr",
+ "o b",
+ "▁qu e",
+ "▁q ue",
+ "▁ que",
+ "ia n",
+ "i an",
+ "▁o ut",
+ "▁ou t",
+ "▁ out",
+ "▁p l",
+ "▁ pl",
+ "▁n ew",
+ "▁ne w",
+ "▁ new",
+ "к и",
+ "▁ +",
+ "r y",
+ "ot h",
+ "o th",
+ "th er",
+ "the r",
+ "t her",
+ "▁v ar",
+ "▁va r",
+ "▁ var",
+ "▁w ould",
+ "▁wo uld",
+ "▁s er",
+ "▁se r",
+ "▁ ser",
+ "ter n",
+ "te rn",
+ "t ern",
+ "te xt",
+ "tex t",
+ "t ext",
+ "▁t here",
+ "▁th ere",
+ "▁the re",
+ "▁ther e",
+ "▁ there",
+ "is h",
+ "i sh",
+ "ro r",
+ "r or",
+ "т е",
+ "▁s et",
+ "▁se t",
+ "▁ set",
+ "▁ @",
+ "▁п о",
+ "▁ по",
+ "▁t e",
+ "▁ te",
+ "e x",
+ "▁re turn",
+ "▁ret urn",
+ "▁ return",
+ "ai l",
+ "a il",
+ "▁a ny",
+ "▁an y",
+ "▁ any",
+ "▁I t",
+ "▁ It",
+ "▁f unction",
+ "▁fun ction",
+ "▁func tion",
+ "▁ function",
+ "{ \\",
+ "' ,",
+ "é s",
+ "al e",
+ "a le",
+ "а н",
+ "▁w hen",
+ "▁wh en",
+ "▁whe n",
+ "▁ when",
+ "i b",
+ "▁g o",
+ "▁ go",
+ "an ce",
+ "anc e",
+ "▁h ad",
+ "▁ha d",
+ "▁ had",
+ "▁Q u",
+ "▁ Qu",
+ "▁c omp",
+ "▁com p",
+ "▁co mp",
+ "▁ comp",
+ "л е",
+ "▁ з",
+ "ma th",
+ "mat h",
+ "m ath",
+ "▁h as",
+ "▁ha s",
+ "▁ has",
+ "▁ м",
+ "▁p re",
+ "▁pr e",
+ "▁ pre",
+ "en er",
+ "ene r",
+ "e ner",
+ "▁p art",
+ "▁par t",
+ "▁pa rt",
+ "▁ part",
+ "el f",
+ "▁d ie",
+ "▁di e",
+ "▁ die",
+ "▁l ike",
+ "▁li ke",
+ "▁lik e",
+ "▁ like",
+ "ra y",
+ "r ay",
+ "ir st",
+ "irs t",
+ "▁d is",
+ "▁di s",
+ "▁ dis",
+ "▁m an",
+ "▁ma n",
+ "▁ man",
+ "ri t",
+ "r it",
+ "▁t hen",
+ "▁th en",
+ "▁the n",
+ "▁ then",
+ "▁c lass",
+ "▁cl ass",
+ "▁cla ss",
+ "▁clas s",
+ "▁ class",
+ "pr o",
+ "p ro",
+ "▁p o",
+ "▁ po",
+ "▁u sing",
+ "▁us ing",
+ "▁ using",
+ "e b",
+ "▁c ode",
+ "▁co de",
+ "▁cod e",
+ "▁ code",
+ "ow n",
+ "o wn",
+ "▁s ome",
+ "▁so me",
+ "▁som e",
+ "▁ some",
+ "ce s",
+ "c es",
+ "▁$ \\",
+ "▁ $\\",
+ "е р",
+ "le ct",
+ "l ect",
+ "▁a u",
+ "▁ au",
+ "is ch",
+ "isc h",
+ "i sch",
+ "▁c ol",
+ "▁co l",
+ "▁ col",
+ "▁ –",
+ "u p",
+ "on s",
+ "o ns",
+ "▁a dd",
+ "▁ad d",
+ "▁ add",
+ "il d",
+ "i ld",
+ "is s",
+ "i ss",
+ "va l",
+ "v al",
+ "ou nt",
+ "oun t",
+ "o unt",
+ "le s",
+ "l es",
+ "ve nt",
+ "ven t",
+ "v ent",
+ "▁ Z",
+ "I n",
+ "ro w",
+ "r ow",
+ "ea r",
+ "e ar",
+ "at ions",
+ "ation s",
+ "ati ons",
+ "atio ns",
+ "a h",
+ "qu e",
+ "q ue",
+ "ub lic",
+ "u blic",
+ "an k",
+ "▁s p",
+ "▁ sp",
+ "▁W h",
+ "▁ Wh",
+ "-- --",
+ "--- -",
+ "- ---",
+ "s k",
+ "e w",
+ "ag s",
+ "a gs",
+ "т и",
+ "an n",
+ "a nn",
+ "▁ —",
+ "er t",
+ "e rt",
+ "ac e",
+ "a ce",
+ "sc h",
+ "s ch",
+ "▁n eed",
+ "▁ne ed",
+ "▁ need",
+ "▁ à",
+ "ie n",
+ "i en",
+ "ou gh",
+ "oug h",
+ "o ugh",
+ "н е",
+ "▁d ef",
+ "▁de f",
+ "▁ def",
+ "i j",
+ "er n",
+ "e rn",
+ "▁w hat",
+ "▁wh at",
+ "▁ what",
+ "▁A r",
+ "▁ Ar",
+ "w o",
+ "m l",
+ "< /",
+ "▁R e",
+ "▁ Re",
+ "▁e s",
+ "▁ es",
+ "▁in st",
+ "▁ins t",
+ "▁ inst",
+ "b o",
+ "a z",
+ "▁# ##",
+ "▁## #",
+ "▁ б",
+ "er m",
+ "e rm",
+ "▁A l",
+ "▁ Al",
+ "le d",
+ "l ed",
+ "д а",
+ "te n",
+ "t en",
+ "se t",
+ "s et",
+ "л о",
+ "▁c omm",
+ "▁com m",
+ "▁co mm",
+ "▁ comm",
+ "s h",
+ "в а",
+ "▁ /",
+ "▁d ata",
+ "▁da ta",
+ "▁dat a",
+ "▁ data",
+ "▁/ /",
+ "▁ //",
+ "] (",
+ "▁s tr",
+ "▁st r",
+ "▁ str",
+ "os e",
+ "o se",
+ "▁U n",
+ "▁ Un",
+ "ve n",
+ "v en",
+ "S t",
+ ".. .",
+ ". ..",
+ "▁ С",
+ "ys t",
+ "y st",
+ "▁ «",
+ "ic k",
+ "i ck",
+ "i x",
+ "pa r",
+ "p ar",
+ "▁ у",
+ "▁w ant",
+ "▁wa nt",
+ "n g",
+ "ot e",
+ "o te",
+ "▁g r",
+ "▁ gr",
+ "▁d u",
+ "▁ du",
+ "▁ .",
+ "un d",
+ "u nd",
+ "▁on ly",
+ "▁ only",
+ "▁s a",
+ "▁ sa",
+ "el y",
+ "e ly",
+ "ve rs",
+ "ver s",
+ "v ers",
+ "▁e nt",
+ "▁en t",
+ "▁ ent",
+ ") )",
+ "( '",
+ "▁m od",
+ "▁mo d",
+ "▁ mod",
+ "av a",
+ "a va",
+ "to n",
+ "t on",
+ "▁sh ould",
+ "▁sho uld",
+ "▁ should",
+ "em ent",
+ "eme nt",
+ "emen t",
+ "e ment",
+ "▁f orm",
+ "▁for m",
+ "▁fo rm",
+ "▁ form",
+ "▁al so",
+ "▁als o",
+ "▁ also",
+ "▁s c",
+ "▁ sc",
+ "in gs",
+ "ing s",
+ "▁Y ou",
+ "▁ You",
+ "ó n",
+ "▁k n",
+ "▁ kn",
+ "() ;",
+ "( );",
+ "▁ |",
+ "▁w ere",
+ "▁we re",
+ "▁wer e",
+ "s s",
+ "▁Qu estion",
+ "▁ Question",
+ "is e",
+ "i se",
+ "▁th ey",
+ "▁the y",
+ "▁ they",
+ "▁D e",
+ "▁ De",
+ "on d",
+ "o nd",
+ "▁s ol",
+ "▁so l",
+ "▁ sol",
+ "▁f ol",
+ "▁fo l",
+ "▁ fol",
+ "▁m ore",
+ "▁mo re",
+ "▁mor e",
+ "▁ more",
+ "▁h er",
+ "▁he r",
+ "▁ her",
+ "▁ _",
+ "▁ é",
+ "at ch",
+ "ft er",
+ "fte r",
+ "f ter",
+ "▁c re",
+ "▁cr e",
+ "▁ cre",
+ "lo ck",
+ "loc k",
+ "l ock",
+ "tr ing",
+ "tri ng",
+ "t ring",
+ "▁T his",
+ "▁Th is",
+ "▁ This",
+ "z e",
+ "ad o",
+ "a do",
+ "ul l",
+ "u ll",
+ "ge r",
+ "g er",
+ "b e",
+ "▁o ther",
+ "▁ot her",
+ "▁ other",
+ "▁T ags",
+ "▁Tag s",
+ "▁Ta gs",
+ "▁ Tags",
+ "ut ion",
+ "uti on",
+ "u tion",
+ "ic t",
+ "i ct",
+ "▁h ow",
+ "▁ho w",
+ "▁ how",
+ "▁ x",
+ "▁S e",
+ "▁ Se",
+ "▁c he",
+ "▁ch e",
+ "▁ che",
+ "cri pt",
+ "cr ipt",
+ "▁j ust",
+ "▁ju st",
+ "▁ just",
+ "▁p os",
+ "▁po s",
+ "▁ pos",
+ "an ge",
+ "ang e",
+ "if ic",
+ "ifi c",
+ "i fic",
+ "re e",
+ "r ee",
+ "} }",
+ "▁t ime",
+ "▁tim e",
+ "▁ti me",
+ "▁ time",
+ "ap p",
+ "a pp",
+ "н ы",
+ "▁f ile",
+ "▁fil e",
+ "▁fi le",
+ "▁ file",
+ "ar k",
+ "ic al",
+ "ica l",
+ "i cal",
+ "▁f irst",
+ "▁fir st",
+ "▁ first",
+ "▁in t",
+ "▁i nt",
+ "▁ int",
+ "▁ В",
+ "▁H e",
+ "▁ He",
+ "t a",
+ "um ent",
+ "ume nt",
+ "umen t",
+ "u ment",
+ "or s",
+ "o rs",
+ "le ment",
+ "lem ent",
+ "l ement",
+ "ra c",
+ "r ac",
+ "▁a g",
+ "▁ ag",
+ "▁do es",
+ "▁ does",
+ "y n",
+ "re ad",
+ "rea d",
+ "r ead",
+ "ua l",
+ "u al",
+ "▁L e",
+ "▁ Le",
+ "y s",
+ "▁e m",
+ "▁ em",
+ "▁n um",
+ "▁nu m",
+ "▁ num",
+ "ve l",
+ "v el",
+ "д и",
+ "ov er",
+ "ove r",
+ "o ver",
+ "▁d if",
+ "▁di f",
+ "et hod",
+ "eth od",
+ "▁I f",
+ "▁ If",
+ "▁s pe",
+ "▁sp e",
+ "▁ spe",
+ "y m",
+ "▁t hem",
+ "▁th em",
+ "▁the m",
+ "▁in to",
+ "▁int o",
+ "▁ into",
+ "▁l es",
+ "▁le s",
+ "▁ les",
+ "▁it s",
+ "▁i ts",
+ "▁ its",
+ "es e",
+ "e se",
+ "ie ld",
+ "iel d",
+ "i eld",
+ "▁p ublic",
+ "▁pub lic",
+ "▁pu blic",
+ "▁publi c",
+ "▁ public",
+ "▁ П",
+ "▁d en",
+ "▁de n",
+ "▁ den",
+ "yst em",
+ "ys tem",
+ "o f",
+ "▁o ver",
+ "▁ov er",
+ "▁ over",
+ "- >",
+ "▁f il",
+ "▁fi l",
+ "▁ fil",
+ "na me",
+ "nam e",
+ "n ame",
+ "in al",
+ "ina l",
+ "i nal",
+ "▁i l",
+ "▁ il",
+ "am ple",
+ "amp le",
+ "▁w ay",
+ "▁wa y",
+ "▁ way",
+ "ic a",
+ "i ca",
+ "в о",
+ "ce ss",
+ "ces s",
+ "c ess",
+ "it t",
+ "i tt",
+ "uc h",
+ "u ch",
+ "▁w here",
+ "▁wh ere",
+ "▁whe re",
+ "▁ where",
+ "м и",
+ "or g",
+ "o rg",
+ "htt ps",
+ "http s",
+ "▁v o",
+ "▁ vo",
+ "ie nt",
+ "ien t",
+ "i ent",
+ "ov e",
+ "o ve",
+ "▁val ue",
+ "▁valu e",
+ "▁ value",
+ "en g",
+ "e ng",
+ "▁L a",
+ "▁ La",
+ "^ {",
+ "re f",
+ "r ef",
+ "ie d",
+ "i ed",
+ "E R",
+ "▁s tat",
+ "▁st at",
+ "▁sta t",
+ "▁ stat",
+ "fi g",
+ "f ig",
+ "m e",
+ "▁v on",
+ "▁vo n",
+ "▁ von",
+ "▁in ter",
+ "▁int er",
+ "▁inte r",
+ "▁ inter",
+ "ro id",
+ "r oid",
+ "at er",
+ "ate r",
+ "a ter",
+ "▁the ir",
+ "▁b et",
+ "▁be t",
+ "▁ bet",
+ "▁e in",
+ "▁ ein",
+ "} \\",
+ "\" >",
+ "▁s ub",
+ "▁su b",
+ "▁ sub",
+ "▁o p",
+ "▁ op",
+ "▁d on",
+ "▁do n",
+ "▁ don",
+ "t y",
+ "▁t ry",
+ "▁tr y",
+ "▁ try",
+ "▁P ro",
+ "▁Pr o",
+ "▁ Pro",
+ "▁t ra",
+ "▁tr a",
+ "▁ tra",
+ "▁s ame",
+ "▁sa me",
+ "▁sam e",
+ "▁ same",
+ "e p",
+ "▁t wo",
+ "▁tw o",
+ "▁ two",
+ "▁n ame",
+ "▁na me",
+ "▁nam e",
+ "▁ name",
+ "ol d",
+ "o ld",
+ "le t",
+ "l et",
+ "▁s im",
+ "▁si m",
+ "▁ sim",
+ "s p",
+ "▁a v",
+ "▁ av",
+ "br e",
+ "b re",
+ "ble m",
+ "bl em",
+ "b lem",
+ "e y",
+ "▁c ould",
+ "▁co uld",
+ "▁cou ld",
+ "▁ could",
+ "▁c or",
+ "▁co r",
+ "▁ cor",
+ "▁a cc",
+ "▁ac c",
+ "▁ acc",
+ "ay s",
+ "a ys",
+ "cr e",
+ "c re",
+ "ur r",
+ "u rr",
+ "s i",
+ "▁con st",
+ "▁cons t",
+ "▁ const",
+ "ue s",
+ "u es",
+ "} $",
+ "V iew",
+ "▁a ct",
+ "▁ac t",
+ "▁ act",
+ "▁b o",
+ "▁ bo",
+ "▁к о",
+ "▁ ко",
+ "▁s om",
+ "▁so m",
+ "▁ som",
+ "▁ab out",
+ "▁ about",
+ "la nd",
+ "lan d",
+ "l and",
+ "me r",
+ "m er",
+ "▁l ist",
+ "▁li st",
+ "▁ list",
+ "ca l",
+ "c al",
+ "▁im port",
+ "▁imp ort",
+ "▁ import",
+ "co l",
+ "c ol",
+ "▁n a",
+ "▁ na",
+ "n a",
+ ": :",
+ "▁w ho",
+ "▁wh o",
+ "▁ who",
+ "▁e rror",
+ "▁er ror",
+ "▁err or",
+ "▁ error",
+ "▁ X",
+ "at or",
+ "ato r",
+ "a tor",
+ "ex t",
+ "e xt",
+ "▁b een",
+ "▁be en",
+ "é r",
+ "▁r un",
+ "▁ru n",
+ "▁ run",
+ "po s",
+ "p os",
+ "▁c l",
+ "▁ cl",
+ "* *",
+ "▁ К",
+ "ul ar",
+ "ula r",
+ "u lar",
+ "au se",
+ "aus e",
+ "a use",
+ "▁re g",
+ "▁r eg",
+ "▁ reg",
+ "▁k now",
+ "▁kn ow",
+ "▁ know",
+ "▁s ee",
+ "▁se e",
+ "▁ see",
+ "▁h im",
+ "▁hi m",
+ "▁ him",
+ "ni ng",
+ "n ing",
+ "▁з а",
+ "▁ за",
+ "at es",
+ "ate s",
+ "a tes",
+ "fo re",
+ "for e",
+ "f ore",
+ "ion s",
+ "io ns",
+ "i ons",
+ "▁h el",
+ "▁he l",
+ "▁ hel",
+ "ut e",
+ "u te",
+ "▁re m",
+ "▁r em",
+ "▁ rem",
+ "▁г о",
+ "▁ го",
+ "▁M ar",
+ "▁Ma r",
+ "▁ Mar",
+ "р у",
+ "vi ce",
+ "vic e",
+ "v ice",
+ "ir ect",
+ "ire ct",
+ "i rect",
+ "ne r",
+ "n er",
+ "▁u nder",
+ "▁un der",
+ "▁und er",
+ "▁ under",
+ "ri b",
+ "r ib",
+ "h r",
+ "ч е",
+ "▁A s",
+ "▁ As",
+ "▁e nd",
+ "▁en d",
+ "▁ end",
+ "em ber",
+ "emb er",
+ "▁ а",
+ "▁a tt",
+ "▁at t",
+ "▁ att",
+ "in a",
+ "i na",
+ "so n",
+ "s on",
+ "▁f ollow",
+ "▁fol low",
+ "▁ follow",
+ "▁S ch",
+ "▁Sc h",
+ "▁ Sch",
+ "pe ct",
+ "pec t",
+ "p ect",
+ "▁re l",
+ "▁r el",
+ "▁ rel",
+ "▁S o",
+ "▁ So",
+ "▁l ook",
+ "▁lo ok",
+ "▁ look",
+ "ab el",
+ "abe l",
+ "a bel",
+ "▁pro blem",
+ "▁prob lem",
+ "▁proble m",
+ "▁probl em",
+ "▁ problem",
+ "▁v an",
+ "▁va n",
+ "▁ van",
+ "st rong",
+ "str ong",
+ "c o",
+ "po n",
+ "p on",
+ "c a",
+ "ad a",
+ "a da",
+ "\" :",
+ "con d",
+ "co nd",
+ "c ond",
+ "am b",
+ "a mb",
+ "} ,",
+ "qu est",
+ "que st",
+ "ques t",
+ "q uest",
+ "▁a ut",
+ "▁au t",
+ "▁ aut",
+ "▁res ult",
+ "▁ result",
+ "▁m ay",
+ "▁ma y",
+ "▁ may",
+ "R e",
+ "ht tp",
+ "htt p",
+ "h ttp",
+ ") :",
+ "▁A nd",
+ "▁An d",
+ "▁ And",
+ "re d",
+ "r ed",
+ "▁H ow",
+ "▁Ho w",
+ "▁ How",
+ "p o",
+ "ск о",
+ "с ко",
+ "at t",
+ "a tt",
+ "ou p",
+ "o up",
+ "ce d",
+ "c ed",
+ "▁t ype",
+ "▁typ e",
+ "▁ty pe",
+ "▁ type",
+ "▁t han",
+ "▁th an",
+ "▁ than",
+ "▁c ons",
+ "▁con s",
+ "▁co ns",
+ "▁ cons",
+ "u f",
+ "ц и",
+ "▁qu estion",
+ "▁quest ion",
+ "▁questi on",
+ "▁ question",
+ "ra ph",
+ "rap h",
+ "r aph",
+ "ig h",
+ "i gh",
+ "▁ М",
+ "▁h tt",
+ "▁ htt",
+ "in s",
+ "i ns",
+ "de n",
+ "d en",
+ "▁d a",
+ "▁ da",
+ "▁v er",
+ "▁ve r",
+ "▁ ver",
+ "o h",
+ "▁= >",
+ "▁ =>",
+ "ri v",
+ "r iv",
+ "ud e",
+ "u de",
+ "▁F or",
+ "▁Fo r",
+ "▁ For",
+ "▁r a",
+ "▁ ra",
+ "fr ac",
+ "fra c",
+ "f rac",
+ "м а",
+ "▁a fter",
+ "▁af ter",
+ "▁ after",
+ "} {",
+ "▁m ethod",
+ "▁met hod",
+ "▁ method",
+ "\" )",
+ "am p",
+ "a mp",
+ "as h",
+ "a sh",
+ "▁re c",
+ "▁r ec",
+ "▁ rec",
+ "▁d iffer",
+ "▁dif fer",
+ "▁diff er",
+ "O N",
+ "a x",
+ "am ent",
+ "ame nt",
+ "amen t",
+ "a ment",
+ "our ce",
+ "Co n",
+ "C on",
+ "it s",
+ "i ts",
+ "Na me",
+ "N ame",
+ "ma n",
+ "m an",
+ "▁b ec",
+ "▁be c",
+ "▁ bec",
+ "ch e",
+ "c he",
+ "▁E n",
+ "▁ En",
+ "a j",
+ "▁g ener",
+ "▁ge ner",
+ "▁gen er",
+ "▁gene r",
+ "▁ gener",
+ "I N",
+ "▁i d",
+ "▁ id",
+ "ag es",
+ "age s",
+ "a ges",
+ "▁l oc",
+ "▁lo c",
+ "▁ loc",
+ "f o",
+ "b r",
+ "▁s he",
+ "▁sh e",
+ "▁ she",
+ "Pr o",
+ "P ro",
+ "▁u na",
+ "▁un a",
+ "▁ una",
+ "▁ к",
+ "et a",
+ "e ta",
+ "lo g",
+ "l og",
+ "ol og",
+ "olo g",
+ "o log",
+ "▁s ur",
+ "▁su r",
+ "▁ sur",
+ "ar g",
+ "a rg",
+ "▁- -",
+ "▁ --",
+ "k t",
+ "( \\",
+ "mi n",
+ "m in",
+ "▁l ine",
+ "▁li ne",
+ "▁lin e",
+ "▁ line",
+ "▁v ari",
+ "▁var i",
+ "▁va ri",
+ "▁ vari",
+ "с я",
+ "ic s",
+ "i cs",
+ "н я",
+ "ve ry",
+ "ver y",
+ "v ery",
+ "ad d",
+ "a dd",
+ "▁o bject",
+ "▁ob ject",
+ "▁obj ect",
+ "▁ object",
+ "I d",
+ "▁B ut",
+ "▁Bu t",
+ "▁ But",
+ "▁c ase",
+ "▁cas e",
+ "▁ca se",
+ "▁ case",
+ "▁m ake",
+ "▁ma ke",
+ "▁mak e",
+ "▁ make",
+ "▁c al",
+ "▁ca l",
+ "▁ cal",
+ "▁p ass",
+ "▁pas s",
+ "▁pa ss",
+ "▁ pass",
+ "с ь",
+ "ess ion",
+ "ne t",
+ "n et",
+ ". \"",
+ "▁ г",
+ "ä r",
+ "д е",
+ "n o",
+ "at ing",
+ "ati ng",
+ "atin g",
+ "a ting",
+ "at o",
+ "a to",
+ "li ne",
+ "lin e",
+ "l ine",
+ "в и",
+ "▁E x",
+ "▁ Ex",
+ "▁a ss",
+ "▁as s",
+ "▁ ass",
+ "▁v ers",
+ "▁ver s",
+ "▁ve rs",
+ "▁ vers",
+ "л я",
+ "▁e d",
+ "▁ ed",
+ "um n",
+ "u mn",
+ "ot her",
+ "oth er",
+ "othe r",
+ "o ther",
+ "ст а",
+ "с та",
+ "at ive",
+ "ativ e",
+ "ati ve",
+ "St ring",
+ "Str ing",
+ "S tring",
+ "▁l os",
+ "▁lo s",
+ "▁ los",
+ "w n",
+ "▁an swer",
+ "▁ans wer",
+ "▁ answer",
+ "▁l et",
+ "▁le t",
+ "▁ let",
+ "▁p e",
+ "▁ pe",
+ "en ts",
+ "ent s",
+ "▁f e",
+ "▁ fe",
+ "in ce",
+ "inc e",
+ "n i",
+ "id er",
+ "ide r",
+ "i der",
+ "ow s",
+ "o ws",
+ "▁t est",
+ "▁te st",
+ "▁ test",
+ "▁h ere",
+ "▁he re",
+ "▁her e",
+ "▁ here",
+ "ro ll",
+ "rol l",
+ "r oll",
+ "▁c all",
+ "▁cal l",
+ "▁ca ll",
+ "▁ call",
+ "ru ct",
+ "r uct",
+ "▁p ol",
+ "▁po l",
+ "▁ pol",
+ "ai t",
+ "a it",
+ "▁b ack",
+ "▁ba ck",
+ "▁ back",
+ "h o",
+ "E x",
+ "re ss",
+ "res s",
+ "r ess",
+ "S T",
+ "ri ed",
+ "rie d",
+ "r ied",
+ "da te",
+ "dat e",
+ "d ate",
+ "е т",
+ "▁d id",
+ "▁di d",
+ "▁ did",
+ "ti ng",
+ "t ing",
+ "▁E l",
+ "▁ El",
+ "▁d em",
+ "▁de m",
+ "▁ dem",
+ ") $",
+ "ов а",
+ "о ва",
+ "ur rent",
+ "urr ent",
+ "urre nt",
+ "la ce",
+ "lac e",
+ "l ace",
+ "rig ht",
+ "r ight",
+ "re n",
+ "r en",
+ "п о",
+ "▁e ach",
+ "▁ each",
+ "c y",
+ "bl ock",
+ "blo ck",
+ "b lock",
+ "da ta",
+ "dat a",
+ "d ata",
+ "▁ %",
+ "▁a c",
+ "▁ ac",
+ "▁= =",
+ "▁ ==",
+ "ü r",
+ "▁p or",
+ "▁po r",
+ "▁ por",
+ "as k",
+ "a sk",
+ "ar ch",
+ "arc h",
+ "am es",
+ "ame s",
+ "a mes",
+ "▁C on",
+ "▁Co n",
+ "▁ Con",
+ "ч а",
+ "▁o ff",
+ "▁of f",
+ "▁ off",
+ "▁f ind",
+ "▁fin d",
+ "▁fi nd",
+ "▁ find",
+ "con t",
+ "co nt",
+ "c ont",
+ "▁n ow",
+ "▁no w",
+ "▁ now",
+ "wor k",
+ "w ork",
+ "at ional",
+ "ation al",
+ "ati onal",
+ "atio nal",
+ "d d",
+ "ci ón",
+ "ció n",
+ "c ión",
+ "▁ А",
+ "au lt",
+ "a ult",
+ "Li st",
+ "L ist",
+ "▁e xt",
+ "▁ex t",
+ "▁ ext",
+ "ur s",
+ "u rs",
+ "ak e",
+ "a ke",
+ "ul e",
+ "u le",
+ "▁p oint",
+ "▁po int",
+ "▁poi nt",
+ "▁ point",
+ "A T",
+ "au t",
+ "a ut",
+ "▁tr ans",
+ "▁tra ns",
+ "▁tran s",
+ "▁ trans",
+ "▁c o",
+ "▁ co",
+ "▁re ad",
+ "▁r ead",
+ "▁ read",
+ "▁u sed",
+ "▁us ed",
+ "▁use d",
+ "▁ used",
+ "ск и",
+ "с ки",
+ "ar i",
+ "a ri",
+ "L E",
+ "et er",
+ "ete r",
+ "e ter",
+ "ou n",
+ "o un",
+ "ev er",
+ "e ver",
+ "sel f",
+ "s elf",
+ "in ed",
+ "ine d",
+ "i ned",
+ "id th",
+ "u x",
+ "j s",
+ "▁s uch",
+ "▁su ch",
+ "▁suc h",
+ "▁ such",
+ "▁I s",
+ "▁ Is",
+ "é e",
+ "fu l",
+ "f ul",
+ "▁d ist",
+ "▁di st",
+ "▁dis t",
+ "▁ dist",
+ "▁b u",
+ "▁ bu",
+ "item ize",
+ "Con t",
+ "Co nt",
+ "C ont",
+ "j e",
+ "с и",
+ "▁p rov",
+ "▁pro v",
+ "▁pr ov",
+ "▁ prov",
+ "b b",
+ "wa rd",
+ "war d",
+ "w ard",
+ "es ent",
+ "ese nt",
+ "esen t",
+ "e sent",
+ "er son",
+ "ers on",
+ "an ks",
+ "ank s",
+ "w h",
+ "no t",
+ "n ot",
+ "▁W e",
+ "▁ We",
+ "k a",
+ "ro p",
+ "r op",
+ "at ur",
+ "atu r",
+ "al s",
+ "a ls",
+ "▁b el",
+ "▁be l",
+ "▁ bel",
+ "ö r",
+ "f r",
+ "▁ex ample",
+ "▁exam ple",
+ "▁ example",
+ "▁in cl",
+ "▁inc l",
+ "am il",
+ "ami l",
+ "a mil",
+ "▁р а",
+ "▁ ра",
+ "▁ “",
+ "▁s tring",
+ "▁st ring",
+ "▁str ing",
+ "▁stri ng",
+ "▁ string",
+ "▁th ink",
+ "▁thin k",
+ "T h",
+ "▁t em",
+ "▁te m",
+ "▁ tem",
+ "av e",
+ "a ve",
+ "▁F ran",
+ "▁Fr an",
+ "▁Fra n",
+ "▁ Fran",
+ "▁n umber",
+ "▁num ber",
+ "▁ number",
+ "▁s i",
+ "▁ si",
+ "im es",
+ "ime s",
+ "i mes",
+ "te m",
+ "t em",
+ "m y",
+ "le r",
+ "l er",
+ "lo ad",
+ "= =",
+ "▁h and",
+ "▁ha nd",
+ "▁han d",
+ "▁ hand",
+ "z a",
+ "▁b ecause",
+ "▁bec ause",
+ "▁ because",
+ "▁s ch",
+ "▁sc h",
+ "▁ sch",
+ "v o",
+ "th is",
+ "t his",
+ "I D",
+ "ã o",
+ "▁st art",
+ "▁star t",
+ "▁sta rt",
+ "▁ start",
+ "▁w ar",
+ "▁wa r",
+ "▁ war",
+ "▁he lp",
+ "▁hel p",
+ "▁ help",
+ "t s",
+ "▁c har",
+ "▁ch ar",
+ "▁cha r",
+ "▁ char",
+ "▁p h",
+ "▁ ph",
+ "▁m in",
+ "▁mi n",
+ "▁ min",
+ "ti l",
+ "t il",
+ "ri te",
+ "rit e",
+ "r ite",
+ "-- ------",
+ "---- ----",
+ "--- -----",
+ "------ --",
+ "----- ---",
+ "------- -",
+ "- -------",
+ "el s",
+ "e ls",
+ "▁m it",
+ "▁mi t",
+ "▁ mit",
+ "ed ia",
+ "edi a",
+ "e dia",
+ "к у",
+ "▁S h",
+ "▁ Sh",
+ "an y",
+ "a ny",
+ "] ;",
+ "▁ Б",
+ "iqu e",
+ "i que",
+ "d a",
+ "e f",
+ "de x",
+ "d ex",
+ "▁p rodu",
+ "▁pro du",
+ "▁pr odu",
+ "▁prod u",
+ "▁ produ",
+ "▁ Н",
+ "gr am",
+ "gra m",
+ "g ram",
+ "▁O r",
+ "▁ Or",
+ "▁g re",
+ "▁gr e",
+ "▁ gre",
+ "qu ote",
+ "quot e",
+ "le g",
+ "l eg",
+ "or n",
+ "o rn",
+ "▁in d",
+ "▁i nd",
+ "▁ ind",
+ "▁p ost",
+ "▁po st",
+ "▁pos t",
+ "▁ post",
+ "▁d ep",
+ "▁de p",
+ "▁ dep",
+ "] ,",
+ "v i",
+ "▁u ser",
+ "▁us er",
+ "▁use r",
+ "▁ user",
+ "▁ >",
+ "li ck",
+ "lic k",
+ "l ick",
+ "▁v ery",
+ "▁ver y",
+ "▁ve ry",
+ "▁ very",
+ "et hing",
+ "eth ing",
+ "e thing",
+ "▁ar ray",
+ "▁arr ay",
+ "▁ array",
+ "▁g u",
+ "▁ gu",
+ "▁d ur",
+ "▁du r",
+ "` .",
+ "т ь",
+ "li cation",
+ "lic ation",
+ "lica tion",
+ "ст и",
+ "с ти",
+ "e k",
+ "ic o",
+ "i co",
+ "▁d at",
+ "▁da t",
+ "▁ dat",
+ "о р",
+ "ht ml",
+ "htm l",
+ "h tml",
+ "ion e",
+ "io ne",
+ "i one",
+ "▁d ifferent",
+ "▁differ ent",
+ "▁c heck",
+ "▁che ck",
+ "▁ check",
+ "▁f r",
+ "▁ fr",
+ "▁E r",
+ "▁ Er",
+ "▁t ext",
+ "▁te xt",
+ "▁tex t",
+ "▁ text",
+ "н і",
+ "ic ht",
+ "ich t",
+ "i cht",
+ "st ack",
+ "sta ck",
+ "E N",
+ "ra g",
+ "r ag",
+ "▁e very",
+ "▁ev ery",
+ "▁ever y",
+ "▁ every",
+ "A r",
+ "▁be fore",
+ "▁bef ore",
+ "▁ before",
+ "al se",
+ "als e",
+ "▁f in",
+ "▁fi n",
+ "▁ fin",
+ "▁d é",
+ "▁th ese",
+ "▁the se",
+ "▁d et",
+ "▁de t",
+ "▁ det",
+ "V al",
+ "ce ption",
+ "cept ion",
+ "cep tion",
+ "▁and roid",
+ "▁ android",
+ "block quote",
+ "▁j e",
+ "▁ je",
+ "fil e",
+ "fi le",
+ "f ile",
+ "at s",
+ "a ts",
+ "▁д о",
+ "▁ до",
+ "ess age",
+ "essa ge",
+ "▁ag ain",
+ "a w",
+ "C h",
+ "we en",
+ "w een",
+ "▁ Д",
+ "fo r",
+ "f or",
+ "ci al",
+ "cia l",
+ "c ial",
+ "pl ay",
+ "pla y",
+ "p lay",
+ "pr e",
+ "p re",
+ "id a",
+ "i da",
+ "▁P ar",
+ "▁Pa r",
+ "▁ Par",
+ "n y",
+ "ra ct",
+ "rac t",
+ "r act",
+ "▁s upp",
+ "▁su pp",
+ "▁sup p",
+ "▁ supp",
+ "as ed",
+ "ase d",
+ "a sed",
+ "le ction",
+ "lect ion",
+ "l ection",
+ "▁d ans",
+ "▁da ns",
+ "▁dan s",
+ "ai r",
+ "a ir",
+ "ro l",
+ "r ol",
+ "▁t hr",
+ "▁th r",
+ "Dat a",
+ "Da ta",
+ "D ata",
+ "li ch",
+ "lic h",
+ "l ich",
+ "▁п ро",
+ "▁пр о",
+ "▁ про",
+ "▁l ong",
+ "▁lo ng",
+ "▁lon g",
+ "▁ long",
+ "▁se cond",
+ "▁sec ond",
+ "▁ second",
+ "ual ly",
+ "u ally",
+ "in es",
+ "ine s",
+ "i nes",
+ "▁f ound",
+ "▁fo und",
+ "▁fou nd",
+ "▁ found",
+ "eng th",
+ "y p",
+ "ea d",
+ "e ad",
+ "▁l og",
+ "▁lo g",
+ "▁ log",
+ "u i",
+ "ne w",
+ "n ew",
+ "▁ Р",
+ "g o",
+ "au s",
+ "a us",
+ "od y",
+ "o dy",
+ "▁s on",
+ "▁so n",
+ "▁ son",
+ "м е",
+ "er o",
+ "e ro",
+ "ve d",
+ "v ed",
+ "su b",
+ "s ub",
+ "▁r ight",
+ "▁rig ht",
+ "▁ right",
+ "vi ew",
+ "vie w",
+ "v iew",
+ "▁follow ing",
+ "' )",
+ "\") ;",
+ "\" );",
+ "▁sa id",
+ "ж е",
+ "ч и",
+ "т у",
+ "ot t",
+ "o tt",
+ "с е",
+ "ar s",
+ "a rs",
+ "$ .",
+ "g g",
+ "▁b r",
+ "▁ br",
+ "oo l",
+ "o ol",
+ "yl e",
+ "y le",
+ "us e",
+ "u se",
+ "▁s how",
+ "▁sh ow",
+ "▁sho w",
+ "▁ show",
+ "le ase",
+ "lea se",
+ "ci a",
+ "c ia",
+ "▁d irect",
+ "▁di rect",
+ "▁dire ct",
+ "▁dir ect",
+ "▁ direct",
+ "do c",
+ "d oc",
+ "а р",
+ "m s",
+ "▁g iv",
+ "▁gi v",
+ "▁ giv",
+ "▁e xp",
+ "▁ex p",
+ "▁ exp",
+ "q l",
+ "д у",
+ "в е",
+ "▁B e",
+ "▁ Be",
+ "Co m",
+ "C om",
+ "it er",
+ "ite r",
+ "i ter",
+ "R E",
+ "m p",
+ "me n",
+ "m en",
+ "▁R o",
+ "▁ Ro",
+ "M A",
+ "▁C ol",
+ "▁Co l",
+ "▁ Col",
+ "is ter",
+ "ist er",
+ "iste r",
+ "i ster",
+ "▁w ell",
+ "▁we ll",
+ "▁wel l",
+ "▁ well",
+ "▁< /",
+ "▁ ",
+ "ay out",
+ "at ure",
+ "atur e",
+ "atu re",
+ "iv ers",
+ "ive rs",
+ "iver s",
+ "i vers",
+ "z y",
+ "▁н е",
+ "▁ не",
+ "▁m et",
+ "▁me t",
+ "▁ met",
+ "un e",
+ "u ne",
+ "yt h",
+ "y th",
+ "Ty pe",
+ "Typ e",
+ "T ype",
+ "▁e lement",
+ "▁el ement",
+ "▁ele ment",
+ "▁elem ent",
+ "▁ element",
+ "▁l ink",
+ "▁lin k",
+ "▁ link",
+ "mo d",
+ "m od",
+ "▁bet ween",
+ "▁ between",
+ "ce pt",
+ "cep t",
+ "qu ire",
+ "qui re",
+ "▁th rough",
+ "▁thr ough",
+ "▁thro ugh",
+ "▁ through",
+ "▁wh ile",
+ "▁ while",
+ "▁O n",
+ "▁ On",
+ "th e",
+ "t he",
+ "í a",
+ "▁s omething",
+ "▁some thing",
+ "▁som ething",
+ "▁somet hing",
+ "▁ something",
+ "vo l",
+ "v ol",
+ "▁m ost",
+ "▁mo st",
+ "▁mos t",
+ "▁ most",
+ "s c",
+ "us s",
+ "u ss",
+ "▁c ar",
+ "▁ca r",
+ "▁ car",
+ "▁s m",
+ "▁ sm",
+ "▁р о",
+ "▁ ро",
+ "an o",
+ "a no",
+ "le ft",
+ "lef t",
+ "l eft",
+ "v a",
+ "▁tr ue",
+ "▁ true",
+ "( $",
+ "em s",
+ "e ms",
+ "▁m uch",
+ "▁mu ch",
+ "á s",
+ "▁N ew",
+ "▁Ne w",
+ "▁ New",
+ "▁pro per",
+ "▁pr oper",
+ "▁prop er",
+ "er a",
+ "e ra",
+ "it ed",
+ "ite d",
+ "i ted",
+ "▁d oc",
+ "▁do c",
+ "▁ doc",
+ "ic es",
+ "ice s",
+ "i ces",
+ "Th e",
+ "T he",
+ "▁ ?",
+ "ст о",
+ "с то",
+ "f l",
+ "▁s pec",
+ "▁sp ec",
+ "▁spe c",
+ "▁ spec",
+ "en der",
+ "end er",
+ "ende r",
+ "e nder",
+ "wa y",
+ "w ay",
+ "▁s elf",
+ "▁sel f",
+ "▁ self",
+ "▁e ven",
+ "▁ev en",
+ "▁ even",
+ "і в",
+ "▁с е",
+ "▁ се",
+ "ни я",
+ "▁P r",
+ "▁ Pr",
+ "▁k e",
+ "▁ ke",
+ "em b",
+ "e mb",
+ "▁t able",
+ "▁tab le",
+ "▁ta ble",
+ "▁ table",
+ "▁e qu",
+ "▁eq u",
+ "▁ equ",
+ "li ent",
+ "lie nt",
+ "l ient",
+ "t d",
+ "par t",
+ "pa rt",
+ "p art",
+ "▁pr int",
+ "▁pri nt",
+ "▁prin t",
+ "▁ print",
+ "▁u ne",
+ "▁un e",
+ "▁ une",
+ "if y",
+ "▁- >",
+ "▁ ->",
+ "en e",
+ "e ne",
+ "▁m on",
+ "▁mo n",
+ "▁ mon",
+ "▁d ec",
+ "▁de c",
+ "▁ dec",
+ "▁st ill",
+ "▁о б",
+ "▁ об",
+ "▁T r",
+ "▁ Tr",
+ "▁ ф",
+ "if e",
+ "i fe",
+ "is m",
+ "i sm",
+ "b y",
+ "ra w",
+ "r aw",
+ "io r",
+ "i or",
+ "▁m ed",
+ "▁me d",
+ "▁ med",
+ "or ld",
+ "▁com ple",
+ "▁comp le",
+ "▁compl e",
+ "▁ comple",
+ "w w",
+ "▁a rt",
+ "▁ar t",
+ "▁ art",
+ "ro n",
+ "r on",
+ "▁ Г",
+ "▁M y",
+ "▁ My",
+ "▁a ls",
+ "▁al s",
+ "▁ als",
+ "re ct",
+ "rec t",
+ "r ect",
+ "▁a uf",
+ "▁au f",
+ "▁ auf",
+ "▁d own",
+ "▁do wn",
+ "▁dow n",
+ "▁ down",
+ "at her",
+ "ath er",
+ "a ther",
+ "Co l",
+ "C ol",
+ "Te xt",
+ "Tex t",
+ "T ext",
+ "ba ck",
+ "b ack",
+ "$ ,",
+ "▁y ear",
+ "▁ye ar",
+ "▁ year",
+ "м о",
+ "p i",
+ "▁G r",
+ "▁ Gr",
+ "re am",
+ "rea m",
+ "▁re p",
+ "▁r ep",
+ "▁ rep",
+ "b f",
+ "ww w",
+ "w ww",
+ "▁w ur",
+ "▁o rg",
+ "▁or g",
+ "▁ org",
+ "in ter",
+ "int er",
+ "inte r",
+ "▁D ie",
+ "▁Di e",
+ "▁ Die",
+ "▁b eing",
+ "▁be ing",
+ "▁bei ng",
+ "\" .",
+ "la bel",
+ "lab el",
+ "l abel",
+ "▁c ent",
+ "▁ce nt",
+ "▁ cent",
+ "ja va",
+ "jav a",
+ "j ava",
+ "ba r",
+ "b ar",
+ "an te",
+ "ant e",
+ "an a",
+ "a na",
+ "_ _",
+ "▁sol ution",
+ "▁ О",
+ "▁f l",
+ "▁ fl",
+ "▁c reate",
+ "▁cre ate",
+ "▁ create",
+ "ic i",
+ "i ci",
+ "st e",
+ "s te",
+ "yth on",
+ "yt hon",
+ "un t",
+ "u nt",
+ "as on",
+ "aso n",
+ "a son",
+ "fer ence",
+ "fe rence",
+ "S E",
+ "▁n on",
+ "▁no n",
+ "▁ non",
+ "an e",
+ "a ne",
+ "▁in s",
+ "▁i ns",
+ "▁ ins",
+ "ad er",
+ "ade r",
+ "a der",
+ "_{ \\",
+ "_ {\\",
+ "Re s",
+ "R es",
+ "▁m ain",
+ "▁ma in",
+ "▁mai n",
+ "▁ main",
+ "п и",
+ "▁T here",
+ "▁The re",
+ "▁Th ere",
+ "▁Ther e",
+ "▁ There",
+ "▁p our",
+ "▁po ur",
+ "▁pou r",
+ "R O",
+ "` ,",
+ "li sh",
+ "lis h",
+ "l ish",
+ "b ject",
+ "cc ess",
+ "c cess",
+ "▁o rig",
+ "▁or ig",
+ "▁ orig",
+ "is chen",
+ "isch en",
+ "ische n",
+ "isc hen",
+ "i schen",
+ "ow er",
+ "owe r",
+ "o wer",
+ "▁h et",
+ "▁he t",
+ "▁ het",
+ "u c",
+ "▁el se",
+ "▁els e",
+ "▁ else",
+ "» .",
+ "▁о т",
+ "▁ от",
+ "eq u",
+ "e qu",
+ "si ble",
+ "s ible",
+ "te st",
+ "tes t",
+ "t est",
+ "st and",
+ "sta nd",
+ "stan d",
+ "é n",
+ "et s",
+ "e ts",
+ "G E",
+ "id ent",
+ "ide nt",
+ "iden t",
+ "i dent",
+ "▁ е",
+ "▁п ри",
+ "▁пр и",
+ "▁ при",
+ ". ,",
+ "▁d as",
+ "▁da s",
+ "▁ das",
+ "oc k",
+ "o ck",
+ ", \"",
+ "▁v ol",
+ "▁vo l",
+ "▁ vol",
+ "▁f o",
+ "▁ fo",
+ "▁p ara",
+ "▁par a",
+ "▁pa ra",
+ "▁ para",
+ "▁ Т",
+ "▁C ar",
+ "▁Ca r",
+ "▁ Car",
+ "ra l",
+ "r al",
+ "▁S p",
+ "▁ Sp",
+ "va r",
+ "v ar",
+ "▁p lay",
+ "▁pl ay",
+ "▁pla y",
+ "▁ play",
+ "ou se",
+ "ous e",
+ "o use",
+ "▁т а",
+ "▁ та",
+ "ic ally",
+ "ical ly",
+ "▁con tain",
+ "▁cont ain",
+ "pon se",
+ "▁S tring",
+ "▁St ring",
+ "▁Str ing",
+ "▁ String",
+ "á n",
+ "▁b oth",
+ "▁bo th",
+ "▁bot h",
+ "▁ both",
+ "ke n",
+ "k en",
+ "A R",
+ "ер е",
+ "е ре",
+ "▁I l",
+ "▁ Il",
+ "▁is s",
+ "▁i ss",
+ "▁ iss",
+ "▁o pen",
+ "▁op en",
+ "▁ open",
+ "▁ )",
+ "▁W hat",
+ "▁Wh at",
+ "▁ What",
+ "f e",
+ "riv ate",
+ "re g",
+ "r eg",
+ "▁with out",
+ "▁ without",
+ "▁z u",
+ "▁ zu",
+ "vi s",
+ "v is",
+ "fl ow",
+ "f low",
+ "▁h ttp",
+ "▁htt p",
+ "▁ http",
+ "ab ase",
+ "aba se",
+ "a base",
+ "▁w ord",
+ "▁wor d",
+ "▁wo rd",
+ "▁ word",
+ "▁ch ange",
+ "▁chang e",
+ "▁ change",
+ "▁work s",
+ "▁wor ks",
+ "▁ works",
+ "▁g e",
+ "▁ ge",
+ "▁ !",
+ "▁e en",
+ "▁ een",
+ "it le",
+ "▁e vent",
+ "▁even t",
+ "▁ev ent",
+ "▁ event",
+ "wo rd",
+ "wor d",
+ "w ord",
+ "an do",
+ "and o",
+ "S B",
+ "re m",
+ "r em",
+ "▁f ield",
+ "▁fi eld",
+ "▁fiel d",
+ "▁ field",
+ "vi ng",
+ "vin g",
+ "v ing",
+ "Se r",
+ "S er",
+ "▁o ur",
+ "▁ou r",
+ "▁ our",
+ "▁qu i",
+ "▁q ui",
+ "▁ qui",
+ "▁o per",
+ "▁op er",
+ "▁ oper",
+ "▁is t",
+ "▁i st",
+ "▁ ist",
+ "de f",
+ "d ef",
+ "▁m ade",
+ "▁ma de",
+ "▁mad e",
+ "▁ made",
+ "ни е",
+ "p x",
+ "▁m en",
+ "▁me n",
+ "▁ men",
+ "r m",
+ "ai s",
+ "a is",
+ "ce nt",
+ "cen t",
+ "c ent",
+ "li st",
+ "lis t",
+ "l ist",
+ "T o",
+ "▁T o",
+ "▁ To",
+ "j a",
+ "ve rt",
+ "ver t",
+ "v ert",
+ "▁m ar",
+ "▁ma r",
+ "▁ mar",
+ "val ue",
+ "valu e",
+ "▁ „",
+ "\" ;",
+ "▁a us",
+ "▁au s",
+ "▁ aus",
+ "▁B r",
+ "▁ Br",
+ "ol e",
+ "o le",
+ "▁m ult",
+ "▁mu lt",
+ "▁mul t",
+ "▁ mult",
+ "oug ht",
+ "ough t",
+ "▁m at",
+ "▁ma t",
+ "▁ mat",
+ "▁v iew",
+ "▁vi ew",
+ "▁vie w",
+ "▁ view",
+ "fi l",
+ "f il",
+ "▁с о",
+ "▁ со",
+ "г а",
+ "▁v oid",
+ "▁vo id",
+ "▁ void",
+ "▁g ood",
+ "▁go od",
+ "▁ good",
+ "б о",
+ "C T",
+ "▁m any",
+ "▁ma ny",
+ "▁man y",
+ "▁ many",
+ "be n",
+ "b en",
+ "▁в о",
+ "▁ во",
+ "▁к а",
+ "▁ ка",
+ "▁s ystem",
+ "▁sys tem",
+ "▁syst em",
+ "▁ system",
+ "in o",
+ "i no",
+ "▁an other",
+ "▁ano ther",
+ "▁ another",
+ "▁re st",
+ "▁r est",
+ "▁res t",
+ "▁ rest",
+ "us er",
+ "use r",
+ "u ser",
+ "il ity",
+ "ili ty",
+ "a i",
+ "▁m ight",
+ "▁mig ht",
+ "us tom",
+ "ust om",
+ "usto m",
+ "▁or der",
+ "▁ord er",
+ "▁ order",
+ "▁V er",
+ "▁Ve r",
+ "▁ Ver",
+ "S S",
+ "} )",
+ "▁e ff",
+ "▁ eff",
+ "д о",
+ "et t",
+ "e tt",
+ "▁s ign",
+ "▁si gn",
+ "▁sig n",
+ "▁ sign",
+ "м у",
+ "I T",
+ "st ring",
+ "str ing",
+ "s tring",
+ "el le",
+ "ell e",
+ "e lle",
+ "▁s ing",
+ "▁si ng",
+ "▁sin g",
+ "▁ sing",
+ "cu l",
+ "c ul",
+ "▁tr ying",
+ "▁try ing",
+ "▁b eg",
+ "▁be g",
+ "▁ beg",
+ "▁p age",
+ "▁pa ge",
+ "▁pag e",
+ "▁ page",
+ "х о",
+ "▁C an",
+ "▁Ca n",
+ "▁ Can",
+ "▁S er",
+ "▁Se r",
+ "▁ Ser",
+ "+ +",
+ "▁m ust",
+ "▁mus t",
+ "▁mu st",
+ "▁ must",
+ "▁val ues",
+ "▁value s",
+ "▁valu es",
+ "▁ values",
+ "▁k ey",
+ "▁ke y",
+ "▁ key",
+ "ib le",
+ "i ble",
+ "] .",
+ "ir d",
+ "i rd",
+ "▁pro gram",
+ "▁pr ogram",
+ "▁ program",
+ "roll er",
+ "rol ler",
+ "rolle r",
+ "▁c onne",
+ "▁con ne",
+ "▁conn e",
+ "▁ conne",
+ "▁s ay",
+ "▁sa y",
+ "▁ say",
+ "▁p aram",
+ "▁par am",
+ "▁para m",
+ "▁pa ram",
+ "▁ param",
+ "ach e",
+ "ac he",
+ "a che",
+ "ve lop",
+ "vel op",
+ "▁s elect",
+ "▁se lect",
+ "▁sel ect",
+ "▁sele ct",
+ "▁ select",
+ "▁f amil",
+ "▁fa mil",
+ "▁fam il",
+ "▁ famil",
+ "▁l ast",
+ "▁la st",
+ "▁las t",
+ "▁ last",
+ "▁Th anks",
+ "▁Thank s",
+ "▁ Thanks",
+ "▁p op",
+ "▁po p",
+ "▁ pop",
+ "} .",
+ "e q",
+ "▁does n",
+ "[ '",
+ "▁t erm",
+ "▁te rm",
+ "▁ter m",
+ "▁ term",
+ "▁r é",
+ "▁ ré",
+ "▁d ocument",
+ "▁doc ument",
+ "▁ document",
+ "п а",
+ "л у",
+ "at eg",
+ "ate g",
+ ". )",
+ "li ng",
+ "lin g",
+ "l ing",
+ "ion al",
+ "io nal",
+ "iona l",
+ "i onal",
+ "ab les",
+ "able s",
+ "abl es",
+ "a bles",
+ "▁t ak",
+ "▁ta k",
+ "ut ton",
+ "utt on",
+ "utto n",
+ "▁a rg",
+ "▁ar g",
+ "▁ arg",
+ "ty pe",
+ "typ e",
+ "t ype",
+ "▁s ure",
+ "▁su re",
+ "▁sur e",
+ "▁re al",
+ "▁ real",
+ "▁w eb",
+ "▁we b",
+ "▁ web",
+ "▁c urrent",
+ "▁cur rent",
+ "▁curr ent",
+ "▁ current",
+ "▁P l",
+ "▁ Pl",
+ "ch o",
+ "c ho",
+ "ment s",
+ "men ts",
+ "m ents",
+ "▁J oh",
+ "▁Jo h",
+ "ot s",
+ "o ts",
+ "▁ex ist",
+ "▁ exist",
+ "н у",
+ "▁f ür",
+ "▁ für",
+ "▁и з",
+ "▁ из",
+ "d o",
+ "но го",
+ "ног о",
+ "н ого",
+ "▁l as",
+ "▁la s",
+ "▁ las",
+ "▁n ull",
+ "▁nu ll",
+ "▁ null",
+ "▁in form",
+ "▁inf orm",
+ "▁info rm",
+ "▁ Л",
+ "▁v ersion",
+ "▁vers ion",
+ "▁ version",
+ "▁c hang",
+ "▁ch ang",
+ "▁cha ng",
+ "ag er",
+ "age r",
+ "a ger",
+ "▁C omm",
+ "▁Com m",
+ "▁Co mm",
+ "▁ Comm",
+ "л і",
+ "us h",
+ "u sh",
+ "▁G e",
+ "▁ Ge",
+ "▁h igh",
+ "▁hi gh",
+ "▁ high",
+ "▁in put",
+ "▁ input",
+ "og le",
+ "o gle",
+ "ro s",
+ "r os",
+ "bo x",
+ "b ox",
+ "ge n",
+ "g en",
+ "▁s te",
+ "▁st e",
+ "▁ ste",
+ "▁l ocal",
+ "▁lo cal",
+ "▁loc al",
+ "▁ local",
+ "I m",
+ "▁pro cess",
+ "▁proc ess",
+ "▁proces s",
+ "▁ process",
+ "ter nal",
+ "tern al",
+ "t ernal",
+ "iz ed",
+ "ize d",
+ "i zed",
+ "г и",
+ "é t",
+ "▁I nd",
+ "▁In d",
+ "▁ Ind",
+ "▁o ch",
+ "▁oc h",
+ "▁ och",
+ "l t",
+ "▁col umn",
+ "▁ column",
+ "▁t ried",
+ "▁tr ied",
+ "▁tri ed",
+ "▁comm and",
+ "▁comma nd",
+ "▁ command",
+ "▁b est",
+ "▁be st",
+ "▁bes t",
+ "▁ best",
+ "as ter",
+ "ast er",
+ "aste r",
+ "a ster",
+ "з а",
+ "▁p rim",
+ "▁pr im",
+ "▁pri m",
+ "▁ prim",
+ "▁m odel",
+ "▁mod el",
+ "▁mo del",
+ "▁mode l",
+ "▁ model",
+ "▁ і",
+ "▁th ose",
+ "it ies",
+ "iti es",
+ "itie s",
+ "i ties",
+ "è re",
+ "▁р е",
+ "▁ ре",
+ "ј е",
+ "ш и",
+ "qu es",
+ "que s",
+ "q ues",
+ "▁A m",
+ "▁ Am",
+ "▁o wn",
+ "▁ow n",
+ "▁ own",
+ "li n",
+ "l in",
+ "з и",
+ "Val ue",
+ "th ing",
+ "t hing",
+ "▁ ,",
+ "▁T e",
+ "▁ Te",
+ "▁st ud",
+ "▁ stud",
+ "▁u m",
+ "▁ um",
+ "▁ser ver",
+ "▁serv er",
+ "▁serve r",
+ "▁ server",
+ "il le",
+ "ill e",
+ "i lle",
+ "▁p ut",
+ "▁pu t",
+ "▁ put",
+ "at iv",
+ "ati v",
+ "g y",
+ "ов и",
+ "о ви",
+ "ra f",
+ "r af",
+ "ов о",
+ "о во",
+ "▁wur de",
+ "▁W hen",
+ "▁Wh en",
+ "▁Whe n",
+ "▁ When",
+ "▁d iv",
+ "▁di v",
+ "▁ div",
+ "an ts",
+ "ant s",
+ "▁t er",
+ "▁te r",
+ "▁ ter",
+ "▁part ic",
+ "▁parti c",
+ "▁ т",
+ "▁D o",
+ "▁ Do",
+ "▁N o",
+ "▁ No",
+ "se rt",
+ "ser t",
+ "s ert",
+ "id o",
+ "i do",
+ "math cal",
+ "ad e",
+ "a de",
+ "▁I I",
+ "▁ II",
+ "le ar",
+ "lea r",
+ "l ear",
+ "og raph",
+ "o graph",
+ "en se",
+ "ens e",
+ "▁r ow",
+ "▁ro w",
+ "▁ row",
+ "nu m",
+ "n um",
+ "▁pos sible",
+ "▁poss ible",
+ "▁possib le",
+ "▁ possible",
+ "▁s ince",
+ "▁sin ce",
+ "▁ since",
+ "▁B o",
+ "▁ Bo",
+ "ct ions",
+ "ction s",
+ "▁I m",
+ "▁ Im",
+ "O R",
+ "ц і",
+ "▁i de",
+ "▁id e",
+ "▁ ide",
+ "ma p",
+ "m ap",
+ "▁cor rect",
+ "▁corre ct",
+ "▁corr ect",
+ "▁ correct",
+ "ve s",
+ "v es",
+ "ph p",
+ "p hp",
+ "▁out put",
+ "▁ output",
+ "▁P h",
+ "▁ Ph",
+ "A L",
+ "ar ed",
+ "are d",
+ "a red",
+ "\\ \\",
+ "▁im age",
+ "▁imag e",
+ "▁ image",
+ "es ch",
+ "esc h",
+ "e sch",
+ "ж и",
+ "▁con f",
+ "▁ conf",
+ "po r",
+ "p or",
+ "qu ery",
+ "que ry",
+ "quer y",
+ "ur es",
+ "ure s",
+ "u res",
+ "iu m",
+ "i um",
+ "en ds",
+ "end s",
+ "▁A b",
+ "▁ Ab",
+ "SB N",
+ "і д",
+ "et her",
+ "eth er",
+ "ethe r",
+ "e ther",
+ "pt ions",
+ "ption s",
+ "it u",
+ "i tu",
+ "li b",
+ "l ib",
+ "n s",
+ "k i",
+ "▁work ing",
+ "▁wor king",
+ "▁ working",
+ "▁c omo",
+ "▁com o",
+ "▁co mo",
+ "▁ como",
+ "▁T hen",
+ "▁The n",
+ "▁Th en",
+ "▁ Then",
+ "M L",
+ "ke y",
+ "k ey",
+ "cl ass",
+ "cla ss",
+ "c lass",
+ "op le",
+ "o ple",
+ "itt le",
+ "▁m atch",
+ "▁mat ch",
+ "▁ match",
+ "way s",
+ "wa ys",
+ "w ays",
+ "math bb",
+ "▁re quire",
+ "▁requ ire",
+ "▁ require",
+ "al t",
+ "a lt",
+ "▁v is",
+ "▁vi s",
+ "▁ vis",
+ "▁b l",
+ "▁ bl",
+ "▁c alled",
+ "▁cal led",
+ "▁call ed",
+ "▁ called",
+ "It em",
+ "I tem",
+ "ur a",
+ "u ra",
+ "ve c",
+ "v ec",
+ "em e",
+ "e me",
+ "▁d ella",
+ "▁de lla",
+ "▁del la",
+ "▁dell a",
+ "em bre",
+ "emb re",
+ "ur g",
+ "u rg",
+ "S e",
+ "▁re quest",
+ "▁requ est",
+ "▁req uest",
+ "▁ request",
+ "is che",
+ "isch e",
+ "isc he",
+ "i sche",
+ "▁p ort",
+ "▁po rt",
+ "▁por t",
+ "▁ port",
+ "▁inst ead",
+ "= \\",
+ "▁ У",
+ "ho r",
+ "h or",
+ "en te",
+ "ent e",
+ "um e",
+ "u me",
+ "er d",
+ "e rd",
+ "с а",
+ "▁w hy",
+ "▁wh y",
+ "▁ why",
+ "ri st",
+ "ris t",
+ "r ist",
+ "▁p erson",
+ "▁per son",
+ "▁pers on",
+ "▁ person",
+ "▁. ..",
+ "▁.. .",
+ "▁ ...",
+ "▁p rivate",
+ "▁priv ate",
+ "▁ private",
+ "▁t ot",
+ "▁to t",
+ "▁ tot",
+ "ph a",
+ "p ha",
+ "if t",
+ "i ft",
+ "it a",
+ "i ta",
+ "lo c",
+ "l oc",
+ "▁o ld",
+ "▁ol d",
+ "▁ old",
+ "о н",
+ "▁n el",
+ "▁ne l",
+ "▁ nel",
+ "' ]",
+ "t i",
+ "ie t",
+ "i et",
+ "ci te",
+ "cit e",
+ "c ite",
+ "ple ment",
+ "pl ement",
+ "p lement",
+ "▁a bove",
+ "▁ab ove",
+ "▁ above",
+ "k s",
+ "re ady",
+ "read y",
+ "rea dy",
+ "▁c ome",
+ "▁com e",
+ "▁co me",
+ "▁ come",
+ "se ction",
+ "sec tion",
+ "sect ion",
+ "s ection",
+ "▁P ol",
+ "▁Po l",
+ "▁ Pol",
+ "▁w rit",
+ "▁wr it",
+ "▁ writ",
+ "▁htt ps",
+ "▁http s",
+ "▁ https",
+ "▁$ $",
+ "▁ $$",
+ "▁ »",
+ "▁bu ild",
+ "▁ build",
+ "it o",
+ "i to",
+ "▁cons ider",
+ "▁consid er",
+ "af t",
+ "a ft",
+ "Ap p",
+ "A pp",
+ ", \\",
+ "ind ows",
+ "indow s",
+ "indo ws",
+ "com m",
+ "co mm",
+ "c omm",
+ "▁ ;",
+ "gr ound",
+ "gro und",
+ "g round",
+ "▁p lace",
+ "▁pl ace",
+ "▁pla ce",
+ "▁ place",
+ "B y",
+ "▁pro ject",
+ "▁ project",
+ "Ob ject",
+ "Obj ect",
+ "O bject",
+ "▁re pr",
+ "▁rep r",
+ "en ces",
+ "ence s",
+ "enc es",
+ "ind ow",
+ "indo w",
+ "z t",
+ "▁f iles",
+ "▁file s",
+ "▁fil es",
+ "▁fi les",
+ "▁ files",
+ "c z",
+ "iv ity",
+ "ivi ty",
+ "i vity",
+ "▁in it",
+ "▁i nit",
+ "▁ init",
+ "▁p rob",
+ "▁pro b",
+ "▁pr ob",
+ "▁ prob",
+ "▁s k",
+ "▁ sk",
+ "or th",
+ "ort h",
+ "im ent",
+ "ime nt",
+ "imen t",
+ "i ment",
+ "ou ble",
+ "at al",
+ "ata l",
+ "a tal",
+ "ir c",
+ "i rc",
+ "▁ è",
+ "▁b re",
+ "▁br e",
+ "▁ bre",
+ "is ta",
+ "ist a",
+ "i sta",
+ "in put",
+ "▁ И",
+ "но й",
+ "su m",
+ "s um",
+ "pa th",
+ "pat h",
+ "p ath",
+ "▁c our",
+ "▁co ur",
+ "▁cou r",
+ "▁t oo",
+ "▁to o",
+ "▁A d",
+ "▁ Ad",
+ "▁G u",
+ "▁ Gu",
+ "▁f alse",
+ "▁fal se",
+ "▁ false",
+ "▁f un",
+ "▁fu n",
+ "▁ fun",
+ "▁с т",
+ "▁ ст",
+ "oo d",
+ "o od",
+ "è s",
+ "▁e nc",
+ "▁en c",
+ "▁ enc",
+ "bo l",
+ "b ol",
+ "r l",
+ "ar get",
+ "arg et",
+ "or der",
+ "ord er",
+ "orde r",
+ "▁me an",
+ "▁ mean",
+ "п е",
+ "ig en",
+ "ige n",
+ "i gen",
+ "▁п ре",
+ "▁пр е",
+ "▁ пре",
+ "wid th",
+ "w idth",
+ "; \r",
+ "it or",
+ "ito r",
+ "i tor",
+ "▁st ate",
+ "▁stat e",
+ "▁sta te",
+ "▁ state",
+ "▁gre at",
+ "en n",
+ "e nn",
+ "bi n",
+ "b in",
+ "E r",
+ "Mo d",
+ "M od",
+ "o z",
+ "▁w on",
+ "▁wo n",
+ "▁ won",
+ "▁f act",
+ "▁fa ct",
+ "▁fac t",
+ "▁ fact",
+ "▁j ava",
+ "▁ja va",
+ "▁jav a",
+ "▁ java",
+ "▁Un ivers",
+ "▁ Univers",
+ "▁c ap",
+ "▁ca p",
+ "▁ cap",
+ "is tor",
+ "ist or",
+ "isto r",
+ "i stor",
+ "} (",
+ "k u",
+ "it her",
+ "ith er",
+ "i ther",
+ "al es",
+ "ale s",
+ "a les",
+ "▁o u",
+ "▁ ou",
+ "ro ss",
+ "ros s",
+ "r oss",
+ "▁t ake",
+ "▁tak e",
+ "▁ta ke",
+ "▁ take",
+ "ri x",
+ "r ix",
+ "lo b",
+ "l ob",
+ "▁e ine",
+ "▁ein e",
+ "as es",
+ "ase s",
+ "▁a ccess",
+ "▁acc ess",
+ "▁ac cess",
+ "▁ access",
+ "it é",
+ "i té",
+ "is tr",
+ "ist r",
+ "i str",
+ "iz ation",
+ "iza tion",
+ "▁app ro",
+ "▁ap pro",
+ "▁ appro",
+ "ba ll",
+ "bal l",
+ "b all",
+ "▁m ak",
+ "▁ma k",
+ "} ^",
+ "▁C ons",
+ "▁Con s",
+ "▁Co ns",
+ "▁ Cons",
+ "pr ess",
+ "pre ss",
+ "pres s",
+ "p ress",
+ "se rv",
+ "ser v",
+ "s erv",
+ "() .",
+ "( ).",
+ "a f",
+ "▁re f",
+ "▁r ef",
+ "▁ ref",
+ ") \\",
+ "▁cont in",
+ "s u",
+ "iv er",
+ "ive r",
+ "i ver",
+ "▁c ond",
+ "▁con d",
+ "▁co nd",
+ "▁ cond",
+ "▁ex pect",
+ "▁exp ect",
+ "▁ expect",
+ "▁char act",
+ "▁cha ract",
+ "ber t",
+ "be rt",
+ "b ert",
+ "el t",
+ "e lt",
+ "ter s",
+ "te rs",
+ "t ers",
+ "scri pt",
+ "scr ipt",
+ "s cript",
+ "▁E d",
+ "▁ Ed",
+ "ap t",
+ "a pt",
+ "') ;",
+ "' );",
+ "pr int",
+ "▁s ize",
+ "▁si ze",
+ "▁ size",
+ "▁s ich",
+ "▁si ch",
+ "▁sic h",
+ "fa ce",
+ "fac e",
+ "f ace",
+ "en den",
+ "end en",
+ "ende n",
+ "▁A mer",
+ "▁Am er",
+ "▁ Amer",
+ "if ied",
+ "ifi ed",
+ "ifie d",
+ "ó w",
+ "▁S u",
+ "▁ Su",
+ "te s",
+ "t es",
+ "me d",
+ "m ed",
+ "▁R eg",
+ "▁Re g",
+ "▁ Reg",
+ "so le",
+ "sol e",
+ "s ole",
+ "▁in clud",
+ "▁incl ud",
+ "▁inclu d",
+ "▁ includ",
+ "in i",
+ "i ni",
+ "in ci",
+ "inc i",
+ "▁p la",
+ "▁pl a",
+ "▁ pla",
+ "▁l eft",
+ "▁le ft",
+ "▁ left",
+ "d f",
+ "Pa r",
+ "P ar",
+ "▁A ll",
+ "▁Al l",
+ "▁ All",
+ "▁o cc",
+ "▁oc c",
+ "▁ occ",
+ "▁A t",
+ "▁ At",
+ "▁c r",
+ "▁ cr",
+ "Q u",
+ "▁g iven",
+ "▁giv en",
+ "▁give n",
+ "▁gi ven",
+ "▁S ystem",
+ "▁Syst em",
+ "▁ System",
+ "ic an",
+ "ica n",
+ "i can",
+ "▁f inal",
+ "▁fin al",
+ "▁fi nal",
+ "▁ final",
+ "it ions",
+ "ition s",
+ "iti ons",
+ "▁б ы",
+ "▁ бы",
+ "▁per form",
+ "▁perf orm",
+ "▁ perform",
+ "A N",
+ "▁M e",
+ "▁ Me",
+ "ur o",
+ "u ro",
+ "▁T hat",
+ "▁Th at",
+ "▁ That",
+ "г ра",
+ "▁П о",
+ "▁ По",
+ "▁в и",
+ "▁ ви",
+ "ab ly",
+ "abl y",
+ "▁pr esent",
+ "▁pre sent",
+ "▁pres ent",
+ "▁ present",
+ "du ct",
+ "d uct",
+ "ri c",
+ "r ic",
+ "▁E ng",
+ "▁En g",
+ "▁ Eng",
+ "tr y",
+ "t ry",
+ "▁l ar",
+ "▁la r",
+ "▁ lar",
+ "b l",
+ "id d",
+ "i dd",
+ "▁ä r",
+ "▁ är",
+ "or a",
+ "o ra",
+ "L L",
+ "os s",
+ "o ss",
+ "▁I SBN",
+ "▁ ISBN",
+ "▁th ree",
+ "▁thr ee",
+ "▁thre e",
+ "▁ three",
+ "j o",
+ "n í",
+ "r c",
+ "▁f ar",
+ "▁fa r",
+ "▁ far",
+ "▁N ot",
+ "▁No t",
+ "▁ Not",
+ "▁l ittle",
+ "▁litt le",
+ "di s",
+ "d is",
+ "at i",
+ "a ti",
+ "fun ction",
+ "func tion",
+ "f unction",
+ "▁a ble",
+ "▁ab le",
+ "▁ able",
+ "le ss",
+ "les s",
+ "l ess",
+ "с о",
+ "▁p ath",
+ "▁pat h",
+ "▁pa th",
+ "▁ path",
+ "▁p res",
+ "▁pr es",
+ "▁pre s",
+ "▁ pres",
+ "lo se",
+ "los e",
+ "l ose",
+ "P I",
+ "▁iss ue",
+ "▁issu e",
+ "▁ issue",
+ "ack age",
+ "ti me",
+ "tim e",
+ "t ime",
+ "ig e",
+ "i ge",
+ "am s",
+ "a ms",
+ "▁C l",
+ "▁ Cl",
+ "ail s",
+ "ai ls",
+ "a ils",
+ "al k",
+ "i i",
+ "ш е",
+ "pe n",
+ "p en",
+ "Q L",
+ "▁e as",
+ "R L",
+ "ce l",
+ "c el",
+ "▁s l",
+ "▁ sl",
+ "▁a sk",
+ "▁as k",
+ "▁ ask",
+ "▁n om",
+ "▁no m",
+ "▁ nom",
+ "▁t op",
+ "▁to p",
+ "▁ top",
+ "id es",
+ "ide s",
+ "i des",
+ "in dex",
+ "ind ex",
+ "inde x",
+ "é m",
+ "▁h app",
+ "▁ha pp",
+ "o x",
+ "c d",
+ "▁b etter",
+ "▁bet ter",
+ "▁lo ad",
+ "▁ load",
+ "ad os",
+ "ado s",
+ "ze n",
+ "z en",
+ "▁c e",
+ "▁ ce",
+ "▁f a",
+ "▁ fa",
+ "▁J ohn",
+ "▁Joh n",
+ "▁Jo hn",
+ "▁ John",
+ "IM A",
+ "I MA",
+ "▁B ar",
+ "▁Ba r",
+ "▁ Bar",
+ "over flow",
+ "▁д е",
+ "▁ де",
+ "ne ss",
+ "nes s",
+ "n ess",
+ "ce r",
+ "c er",
+ "▁H ere",
+ "▁He re",
+ "▁Her e",
+ "▁ Here",
+ "re t",
+ "r et",
+ "▁s z",
+ "▁ sz",
+ "amb da",
+ "op y",
+ "o py",
+ "ur l",
+ "u rl",
+ "p y",
+ "r t",
+ "▁under stand",
+ "a ł",
+ "he r",
+ "h er",
+ "# #",
+ "▁ch ild",
+ "▁chi ld",
+ "▁ child",
+ "▁ex ec",
+ "▁ exec",
+ "▁app lication",
+ "▁applic ation",
+ "▁ application",
+ "▁st ruct",
+ "▁str uct",
+ "▁stru ct",
+ "▁ struct",
+ "▁ я",
+ "Fil e",
+ "Fi le",
+ "F ile",
+ "▁c ert",
+ "▁ce rt",
+ "▁cer t",
+ "▁ cert",
+ "is on",
+ "iso n",
+ "i son",
+ "▁vari able",
+ "▁ variable",
+ "D E",
+ "r s",
+ "▁re ally",
+ "▁real ly",
+ "Po rt",
+ "P ort",
+ "b a",
+ "▁B er",
+ "▁Be r",
+ "▁ Ber",
+ "▁in te",
+ "▁int e",
+ "▁ inte",
+ "▁st atic",
+ "▁stat ic",
+ "▁stati c",
+ "▁ static",
+ "▁con fig",
+ "▁conf ig",
+ "▁ config",
+ "▁S he",
+ "▁Sh e",
+ "▁ She",
+ "est ions",
+ "estion s",
+ "esti ons",
+ "▁p lus",
+ "▁pl us",
+ "▁ plus",
+ "▁h ab",
+ "▁ha b",
+ "▁ hab",
+ "op e",
+ "o pe",
+ "▁m us",
+ "▁mu s",
+ "▁ mus",
+ "▁c ount",
+ "▁co unt",
+ "▁coun t",
+ "▁cou nt",
+ "▁ count",
+ "M E",
+ "▁su pport",
+ "▁supp ort",
+ "▁sup port",
+ "▁ support",
+ "▁pe ople",
+ "▁ people",
+ "▁b eh",
+ "▁be h",
+ "▁al ready",
+ "T r",
+ "▁d one",
+ "▁do ne",
+ "▁don e",
+ "▁ done",
+ "de m",
+ "d em",
+ "si ze",
+ "s ize",
+ "al pha",
+ "alph a",
+ "▁d isc",
+ "▁di sc",
+ "▁dis c",
+ "] )",
+ "▁M an",
+ "▁Ma n",
+ "▁ Man",
+ "▁m il",
+ "▁mi l",
+ "▁ mil",
+ "▁st and",
+ "▁sta nd",
+ "▁stan d",
+ "▁ stand",
+ "▁gr oup",
+ "▁gro up",
+ "▁ group",
+ "▁sm all",
+ "▁ small",
+ "▁m ag",
+ "▁ma g",
+ "▁ mag",
+ "ст ь",
+ "с ть",
+ "▁de fault",
+ "▁def ault",
+ "▁ default",
+ "▁sing le",
+ "▁sin gle",
+ "▁ single",
+ "lin k",
+ "l ink",
+ "cl ude",
+ "clud e",
+ "▁e ar",
+ "▁ ear",
+ "il ar",
+ "ila r",
+ "i lar",
+ "** **",
+ "*** *",
+ "* ***",
+ "▁f ix",
+ "▁fi x",
+ "▁ fix",
+ "le y",
+ "l ey",
+ "▁p as",
+ "▁pa s",
+ "▁ pas",
+ "ни й",
+ "iss ion",
+ "▁im plement",
+ "▁imp lement",
+ "▁impl ement",
+ "it ch",
+ "▁го да",
+ "▁год а",
+ "▁al ways",
+ "▁ always",
+ "▁J ah",
+ "▁Ja h",
+ "pr ing",
+ "p ring",
+ "ç ão",
+ "pl ate",
+ "pla te",
+ "p late",
+ "▁de scri",
+ "▁des cri",
+ "▁desc ri",
+ "▁h ead",
+ "▁he ad",
+ "▁ head",
+ "in it",
+ "ini t",
+ "i nit",
+ "og raf",
+ "▁qu ery",
+ "▁que ry",
+ "▁quer y",
+ "▁ query",
+ "iv ed",
+ "ive d",
+ "i ved",
+ "▁in g",
+ "▁i ng",
+ "▁ ing",
+ "pt y",
+ "p ty",
+ "h a",
+ "▁m ov",
+ "▁mo v",
+ "▁ mov",
+ "▁ э",
+ "et te",
+ "ett e",
+ "e tte",
+ "il y",
+ "i ly",
+ "▁g ot",
+ "▁go t",
+ "▁ got",
+ "il ed",
+ "ile d",
+ "i led",
+ "ic ro",
+ "i cro",
+ "▁w r",
+ "▁ wr",
+ "р я",
+ "▁n ever",
+ "▁ne ver",
+ "▁nev er",
+ "or es",
+ "ore s",
+ "o res",
+ "▁b as",
+ "▁ba s",
+ "▁ bas",
+ "io s",
+ "i os",
+ "la ck",
+ "lac k",
+ "l ack",
+ "ain t",
+ "ai nt",
+ "a int",
+ "vi ous",
+ "v ious",
+ "▁g ive",
+ "▁giv e",
+ "▁gi ve",
+ "id ad",
+ "ida d",
+ "E n",
+ "ны й",
+ "н ый",
+ "ta ble",
+ "tab le",
+ "t able",
+ "▁Н а",
+ "▁ На",
+ "▁p at",
+ "▁pa t",
+ "▁ pat",
+ "то р",
+ "т ор",
+ "an gu",
+ "ang u",
+ "lo y",
+ "l oy",
+ "▁s eg",
+ "▁se g",
+ "▁ seg",
+ "ar ray",
+ "arr ay",
+ "▁F l",
+ "▁ Fl",
+ "▁in dex",
+ "▁ind ex",
+ "▁inde x",
+ "▁ index",
+ "▁s w",
+ "▁ sw",
+ "IMA GE",
+ "IM AGE",
+ "▁k m",
+ "▁ km",
+ "б и",
+ "Cl ass",
+ "Cla ss",
+ "C lass",
+ "en a",
+ "e na",
+ "ме н",
+ "м ен",
+ "com p",
+ "co mp",
+ "c omp",
+ "at us",
+ "atu s",
+ "ra p",
+ "r ap",
+ "▁L ist",
+ "▁Li st",
+ "▁Lis t",
+ "▁ List",
+ "Er ror",
+ "Err or",
+ "E rror",
+ "▁t yp",
+ "▁ty p",
+ "▁ typ",
+ "▁м а",
+ "▁ ма",
+ "c s",
+ "' :",
+ "j i",
+ "▁How ever",
+ "▁ However",
+ "▁т е",
+ "▁ те",
+ "▁be low",
+ "▁bel ow",
+ "▁ below",
+ "▁A pp",
+ "▁Ap p",
+ "▁ App",
+ "щ е",
+ "} _",
+ "bu m",
+ "b um",
+ "vi r",
+ "v ir",
+ "ée s",
+ "é es",
+ "▁re cord",
+ "▁rec ord",
+ "▁ record",
+ "ta in",
+ "t ain",
+ "le m",
+ "l em",
+ "it al",
+ "ita l",
+ "i tal",
+ "▁i mp",
+ "▁im p",
+ "▁ imp",
+ "eg o",
+ "e go",
+ "▁o d",
+ "▁ od",
+ "▁re ce",
+ "▁rec e",
+ "▁ rece",
+ "mi t",
+ "m it",
+ "ff ic",
+ "f fic",
+ "stack overflow",
+ "ie ve",
+ "iev e",
+ "▁ З",
+ "▁n ov",
+ "▁no v",
+ "▁ nov",
+ "ц е",
+ "▁In tern",
+ "▁Int ern",
+ "▁Inter n",
+ "▁ Intern",
+ "b u",
+ "▁s ugg",
+ "▁su gg",
+ "▁sug g",
+ "▁l oop",
+ "▁lo op",
+ "▁ loop",
+ "ri de",
+ "rid e",
+ "r ide",
+ "▁$ (",
+ "▁ $(",
+ "▁s uper",
+ "▁su per",
+ "▁sup er",
+ "▁ super",
+ "ri d",
+ "r id",
+ "ны х",
+ "н ых",
+ "▁P er",
+ "▁Pe r",
+ "▁ Per",
+ "▁d om",
+ "▁do m",
+ "▁ dom",
+ "= '",
+ "ut sch",
+ "uts ch",
+ "le n",
+ "l en",
+ "▁w rite",
+ "▁writ e",
+ "▁wr ite",
+ "▁ write",
+ "▁in v",
+ "▁ inv",
+ "ou th",
+ "out h",
+ "o uth",
+ "▁H er",
+ "▁He r",
+ "▁ Her",
+ "▁y ears",
+ "▁year s",
+ "▁ye ars",
+ "▁or iginal",
+ "▁orig inal",
+ "▁origin al",
+ "▁ original",
+ "eg a",
+ "e ga",
+ "▁S te",
+ "▁St e",
+ "▁ Ste",
+ "▁se ems",
+ "▁see ms",
+ "▁seem s",
+ "é g",
+ "▁n ext",
+ "▁ne xt",
+ "▁ next",
+ "ed er",
+ "ede r",
+ "e der",
+ "▁N e",
+ "▁ Ne",
+ "av as",
+ "ava s",
+ "a vas",
+ "ific ation",
+ "ifi cation",
+ "ifica tion",
+ "Ex ception",
+ "▁D er",
+ "▁De r",
+ "▁ Der",
+ "▁v e",
+ "▁ ve",
+ "at ic",
+ "ati c",
+ "ha t",
+ "h at",
+ "br ary",
+ "bra ry",
+ "re turn",
+ "ret urn",
+ "ur ch",
+ "is ion",
+ "isi on",
+ "m i",
+ "oi nt",
+ "oin t",
+ "o int",
+ "▁d ay",
+ "▁da y",
+ "▁ day",
+ "ic tion",
+ "ict ion",
+ "i ction",
+ "á l",
+ "▁é s",
+ "▁ és",
+ "▁th ough",
+ "▁thou gh",
+ "▁ though",
+ "ac tion",
+ "act ion",
+ "a ction",
+ "í t",
+ "un gen",
+ "ung en",
+ "unge n",
+ "ou rs",
+ "our s",
+ "o urs",
+ "▁s cript",
+ "▁scr ipt",
+ "▁scri pt",
+ "▁ script",
+ "▁in formation",
+ "▁inform ation",
+ "▁ information",
+ "▁mult i",
+ "▁mul ti",
+ "▁ multi",
+ "▁\\ \\",
+ "▁ \\\\",
+ "st er",
+ "ste r",
+ "s ter",
+ "к е",
+ "A C",
+ "ci es",
+ "cie s",
+ "c ies",
+ "▁dis play",
+ "▁disp lay",
+ "▁ display",
+ "om an",
+ "oma n",
+ "o man",
+ "Tim e",
+ "T ime",
+ "iu s",
+ "i us",
+ ")) ;",
+ ") );",
+ "tr e",
+ "t re",
+ "▁l im",
+ "▁li m",
+ "▁ lim",
+ "at ely",
+ "ate ly",
+ "atel y",
+ "é d",
+ "is te",
+ "ist e",
+ "i ste",
+ "▁с а",
+ "▁ са",
+ "pos t",
+ "po st",
+ "p ost",
+ "ue l",
+ "u el",
+ "im g",
+ "▁ ч",
+ "ск а",
+ "с ка",
+ "el d",
+ "e ld",
+ "pp er",
+ "ppe r",
+ "p per",
+ "ul a",
+ "u la",
+ "▁gener al",
+ "▁gen eral",
+ "▁gene ral",
+ "▁ general",
+ "A l",
+ "For m",
+ "F orm",
+ "▁u pon",
+ "▁up on",
+ "z o",
+ "am ente",
+ "ament e",
+ "amen te",
+ "a mente",
+ "▁p rom",
+ "▁pro m",
+ "▁pr om",
+ "▁ prom",
+ "▁ ü",
+ "le x",
+ "l ex",
+ "▁t urn",
+ "▁tu rn",
+ "▁tur n",
+ "▁ turn",
+ "▁м е",
+ "▁ ме",
+ "en tion",
+ "ent ion",
+ "enti on",
+ "ле н",
+ "л ен",
+ "▁a f",
+ "▁ af",
+ "ic le",
+ "i cle",
+ "ст в",
+ "с тв",
+ "▁F il",
+ "▁ Fil",
+ "▁ Ф",
+ "ava script",
+ "avas cript",
+ "Ma n",
+ "M an",
+ "ar a",
+ "a ra",
+ "wa re",
+ "war e",
+ "w are",
+ "al ign",
+ "ali gn",
+ "an gle",
+ "ang le",
+ "▁S c",
+ "▁ Sc",
+ "un ic",
+ "uni c",
+ "u nic",
+ "▁f ran",
+ "▁fr an",
+ "▁fra n",
+ "▁ fran",
+ "U n",
+ "z i",
+ "me t",
+ "m et",
+ "Ad d",
+ "A dd",
+ "▁p ub",
+ "▁pu b",
+ "▁ pub",
+ "ко в",
+ "к ов",
+ "▁g en",
+ "▁ge n",
+ "▁ gen",
+ "▁p od",
+ "▁po d",
+ "▁ pod",
+ "▁s um",
+ "▁su m",
+ "▁ sum",
+ "▁h aving",
+ "▁ha ving",
+ "▁hav ing",
+ "▁a vec",
+ "▁av ec",
+ "▁ave c",
+ "s l",
+ "▁f ig",
+ "▁fi g",
+ "▁ fig",
+ "▁R es",
+ "▁Re s",
+ "▁ Res",
+ "Dat e",
+ "Da te",
+ "D ate",
+ "ul es",
+ "ule s",
+ "u les",
+ "wi th",
+ "w ith",
+ "ски й",
+ "с кий",
+ "g u",
+ "E T",
+ "▁b ro",
+ "▁br o",
+ "▁ bro",
+ "ri e",
+ "r ie",
+ "ap s",
+ "a ps",
+ "en ding",
+ "end ing",
+ "endi ng",
+ "ma il",
+ "mai l",
+ "m ail",
+ "oo k",
+ "o ok",
+ "▁su ccess",
+ "▁succ ess",
+ "▁suc cess",
+ "▁ success",
+ "ber g",
+ "be rg",
+ "b erg",
+ "▁d eb",
+ "▁de b",
+ "▁ deb",
+ "el ta",
+ "elt a",
+ "() `",
+ "( )`",
+ "ent ial",
+ "enti al",
+ "fr ame",
+ "fra me",
+ "fram e",
+ "f rame",
+ "Ke y",
+ "K ey",
+ "in n",
+ "i nn",
+ "▁sim ple",
+ "▁simp le",
+ "▁simpl e",
+ "▁ simple",
+ "iv al",
+ "iva l",
+ "i val",
+ "▁c are",
+ "▁car e",
+ "▁ca re",
+ "▁ care",
+ "▁W eb",
+ "▁We b",
+ "▁ Web",
+ "\") .",
+ "\" ).",
+ ">< /",
+ "> ",
+ "▁d atabase",
+ "▁data base",
+ "▁dat abase",
+ "▁datab ase",
+ "▁ database",
+ "▁N ow",
+ "▁No w",
+ "▁ Now",
+ "In d",
+ "I nd",
+ "▁м о",
+ "▁ мо",
+ "ch t",
+ "c ht",
+ "ba n",
+ "b an",
+ "ra m",
+ "r am",
+ "equ ation",
+ "sk i",
+ "s ki",
+ "ie f",
+ "i ef",
+ "li m",
+ "l im",
+ "Ge t",
+ "G et",
+ "▁t re",
+ "▁tr e",
+ "▁ tre",
+ "at en",
+ "ate n",
+ "a ten",
+ "be d",
+ "b ed",
+ "▁J e",
+ "▁ Je",
+ "▁result s",
+ "▁ results",
+ "л ю",
+ "те ль",
+ "тел ь",
+ "т ель",
+ "d b",
+ "▁b it",
+ "▁bi t",
+ "▁ bit",
+ "bo dy",
+ "b ody",
+ "Ar ray",
+ "Arr ay",
+ "m u",
+ "pr ession",
+ "press ion",
+ "p ression",
+ "▁с та",
+ "▁ст а",
+ "▁ ста",
+ "on y",
+ "o ny",
+ "if f",
+ "i ff",
+ "▁b ar",
+ "▁ba r",
+ "▁ bar",
+ "▁Ar ch",
+ "▁Arc h",
+ "▁ Arch",
+ "ber s",
+ "be rs",
+ "b ers",
+ ") {",
+ "▁M on",
+ "▁Mo n",
+ "▁ Mon",
+ "▁do ing",
+ "▁doi ng",
+ "▁pro f",
+ "▁pr of",
+ "▁ prof",
+ "▁inst all",
+ "▁instal l",
+ "▁ install",
+ "▁p osition",
+ "▁pos ition",
+ "▁posit ion",
+ "▁ position",
+ "em a",
+ "e ma",
+ "▁} );",
+ "▁}) ;",
+ "▁ });",
+ "Pat h",
+ "Pa th",
+ "P ath",
+ "al i",
+ "a li",
+ "▁& &",
+ "▁ &&",
+ "le v",
+ "l ev",
+ "▁c annot",
+ "▁can not",
+ "▁M ay",
+ "▁Ma y",
+ "▁ May",
+ "in st",
+ "ins t",
+ "- \\",
+ "▁c oun",
+ "▁co un",
+ "▁cou n",
+ "▁a ng",
+ "▁an g",
+ "▁ ang",
+ "▁app ear",
+ "▁appe ar",
+ "co r",
+ "c or",
+ "ci ó",
+ "c ió",
+ "id ed",
+ "ide d",
+ "i ded",
+ "qu estions",
+ "quest ions",
+ "question s",
+ "at ter",
+ "att er",
+ "atte r",
+ "▁P a",
+ "▁ Pa",
+ "se lect",
+ "sel ect",
+ "s elect",
+ "▁pr inci",
+ "▁prin ci",
+ "E vent",
+ "▁s ide",
+ "▁si de",
+ "▁sid e",
+ "▁ side",
+ "▁m em",
+ "▁me m",
+ "▁ mem",
+ "▁J an",
+ "▁Ja n",
+ "▁ Jan",
+ "ar io",
+ "ari o",
+ "a rio",
+ "▁with in",
+ "▁wit hin",
+ "▁V al",
+ "▁Va l",
+ "▁ Val",
+ "ode s",
+ "od es",
+ "o des",
+ "idd le",
+ "ur ation",
+ "ura tion",
+ "br a",
+ "b ra",
+ "▁d ate",
+ "▁da te",
+ "▁dat e",
+ "▁ date",
+ "[ ]",
+ "▁en tre",
+ "▁ent re",
+ "▁entr e",
+ "▁ entre",
+ "il i",
+ "i li",
+ "Port ail",
+ "doc s",
+ "do cs",
+ "d ocs",
+ "ско й",
+ "с кой",
+ "El ement",
+ "E lement",
+ "▁m essage",
+ "▁mess age",
+ "▁ message",
+ "▁n ach",
+ "▁na ch",
+ "▁nac h",
+ "▁ nach",
+ "▁d uring",
+ "▁du ring",
+ "▁dur ing",
+ "▁g ra",
+ "▁gr a",
+ "▁ gra",
+ "et work",
+ "▁B y",
+ "▁ By",
+ "▁t ell",
+ "▁te ll",
+ "▁tel l",
+ "et e",
+ "e te",
+ "~ \\",
+ "▁b is",
+ "▁bi s",
+ "▁ bis",
+ "▁p u",
+ "▁ pu",
+ "▁re d",
+ "▁r ed",
+ "▁ red",
+ "▁t hing",
+ "▁th ing",
+ "▁thin g",
+ "▁ thing",
+ "▁s ort",
+ "▁so rt",
+ "▁sor t",
+ "▁ sort",
+ "xi m",
+ "x im",
+ "ir es",
+ "ire s",
+ "i res",
+ "Use r",
+ "Us er",
+ "U ser",
+ "io d",
+ "i od",
+ "▁E st",
+ "▁Es t",
+ "▁ Est",
+ "os ed",
+ "ose d",
+ "o sed",
+ "ou te",
+ "out e",
+ "o ute",
+ "▁L es",
+ "▁Le s",
+ "▁ Les",
+ "▁s ent",
+ "▁se nt",
+ "▁sen t",
+ "▁ sent",
+ "rib ute",
+ "ribu te",
+ "ut es",
+ "ute s",
+ "u tes",
+ "ist ory",
+ "istor y",
+ "isto ry",
+ "i story",
+ "▁ser vice",
+ "▁serv ice",
+ "▁servi ce",
+ "▁ service",
+ "' ;",
+ "fi eld",
+ "f ield",
+ "▁I N",
+ "▁ IN",
+ "ens ion",
+ "re l",
+ "r el",
+ "▁go ing",
+ "▁ going",
+ "we b",
+ "w eb",
+ "Con text",
+ "Cont ext",
+ "▁l ater",
+ "▁la ter",
+ "▁lat er",
+ "▁late r",
+ "u k",
+ "lay out",
+ "l ayout",
+ "on a",
+ "o na",
+ "á t",
+ "---- ------------",
+ "-------- --------",
+ "------------ ----",
+ "------ ----------",
+ "---------- ------",
+ "▁ex act",
+ "an dom",
+ "and om",
+ "ando m",
+ "▁s ie",
+ "▁si e",
+ "I I",
+ "▁The y",
+ "▁Th ey",
+ "▁ They",
+ "ment e",
+ "men te",
+ "m ente",
+ "ib li",
+ "▁f ine",
+ "▁fin e",
+ "▁fi ne",
+ "U T",
+ "▁de velop",
+ "▁deve lop",
+ "▁ develop",
+ "▁E in",
+ "so ft",
+ "of f",
+ "o ff",
+ "Se t",
+ "S et",
+ "▁a z",
+ "▁ az",
+ "et ers",
+ "eter s",
+ "ete rs",
+ "e ters",
+ "il der",
+ "ild er",
+ "ilde r",
+ "i lder",
+ "ple s",
+ "pl es",
+ "p les",
+ "▁spec ific",
+ "▁ specific",
+ "▁o m",
+ "▁ om",
+ "er ror",
+ "err or",
+ "e rror",
+ "ent ly",
+ "▁fil m",
+ "▁fi lm",
+ "▁ film",
+ "uc k",
+ "u ck",
+ "ain s",
+ "ai ns",
+ "a ins",
+ "ac ión",
+ "ació n",
+ "aci ón",
+ "a ción",
+ "ge s",
+ "g es",
+ "ж а",
+ "▁th ings",
+ "▁thing s",
+ "▁thin gs",
+ "S h",
+ "▁th ought",
+ "▁though t",
+ "▁ad ded",
+ "▁add ed",
+ "▁ added",
+ "de p",
+ "d ep",
+ "ско го",
+ "ск ого",
+ "ског о",
+ "с кого",
+ "▁L i",
+ "▁ Li",
+ "il s",
+ "i ls",
+ "yn c",
+ "y nc",
+ "▁т о",
+ "▁ то",
+ "ri es",
+ "rie s",
+ "r ies",
+ "▁c u",
+ "▁ cu",
+ "ch en",
+ "che n",
+ "c hen",
+ "IO N",
+ "I ON",
+ "▁D es",
+ "▁De s",
+ "▁ Des",
+ "ult ado",
+ "ir t",
+ "i rt",
+ "▁b ased",
+ "▁bas ed",
+ "▁base d",
+ "▁ba sed",
+ "▁ based",
+ "▁m o",
+ "▁ mo",
+ "▁d est",
+ "▁de st",
+ "▁des t",
+ "▁ dest",
+ "pn g",
+ "p ng",
+ "re en",
+ "ree n",
+ "r een",
+ "▁r unning",
+ "▁run ning",
+ "▁ running",
+ "am ma",
+ "amm a",
+ "ou d",
+ "o ud",
+ "▁re fer",
+ "▁ref er",
+ "▁ refer",
+ "io us",
+ "i ous",
+ "▁J ul",
+ "▁Ju l",
+ "▁ Jul",
+ "▁s earch",
+ "▁se arch",
+ "▁ search",
+ "al d",
+ "a ld",
+ "ed e",
+ "e de",
+ "▁w rong",
+ "▁wr ong",
+ "A n",
+ "▁u ntil",
+ "▁un til",
+ "▁ until",
+ "si te",
+ "s ite",
+ "ay er",
+ "aye r",
+ "a yer",
+ "▁on ce",
+ "▁ once",
+ "ar r",
+ "a rr",
+ "▁again st",
+ "== ==",
+ "=== =",
+ "= ===",
+ "▁s ource",
+ "▁ source",
+ "ar n",
+ "a rn",
+ "ap i",
+ "a pi",
+ "▁re present",
+ "▁repr esent",
+ "▁repres ent",
+ "▁repre sent",
+ "▁a ff",
+ "▁af f",
+ "▁ aff",
+ "▁s ein",
+ "▁se in",
+ "▁sei n",
+ "▁ sein",
+ "▁al low",
+ "▁all ow",
+ "▁allo w",
+ "▁ allow",
+ "or mal",
+ "orm al",
+ "en ded",
+ "end ed",
+ "ende d",
+ "▁cont rol",
+ "▁contr ol",
+ "▁contro l",
+ "▁ control",
+ "math bf",
+ "com e",
+ "co me",
+ "c ome",
+ "cu r",
+ "c ur",
+ "en do",
+ "end o",
+ "w a",
+ "▁up date",
+ "▁upd ate",
+ "▁ update",
+ "▁in side",
+ "▁ins ide",
+ "▁ inside",
+ "▁re ason",
+ "▁ reason",
+ "om en",
+ "ome n",
+ "o men",
+ "▁в ы",
+ "▁ вы",
+ "D e",
+ "▁ј е",
+ "▁ је",
+ "s w",
+ "▁s ever",
+ "▁se ver",
+ "O f",
+ "▁inst ance",
+ "▁ instance",
+ "▁m er",
+ "▁me r",
+ "▁ mer",
+ "▁e ffect",
+ "▁eff ect",
+ "▁ effect",
+ "col or",
+ "co lor",
+ "colo r",
+ "ug ust",
+ "il t",
+ "i lt",
+ "de s",
+ "d es",
+ "it z",
+ "i tz",
+ "ul ation",
+ "ula tion",
+ "u lation",
+ "ni e",
+ "n ie",
+ "▁W orld",
+ "▁Wor ld",
+ "▁ World",
+ "▁sim ilar",
+ "▁ similar",
+ "ym bol",
+ "hi ng",
+ "hin g",
+ "h ing",
+ "▁m ark",
+ "▁mar k",
+ "▁ mark",
+ "St ate",
+ "Stat e",
+ "▁cont ent",
+ "▁conten t",
+ "▁conte nt",
+ "▁ content",
+ "▁me ans",
+ "▁mean s",
+ "am ed",
+ "ame d",
+ "a med",
+ "▁E nd",
+ "▁En d",
+ "▁ End",
+ "N D",
+ "co unt",
+ "cou nt",
+ "c ount",
+ "▁In st",
+ "▁Ins t",
+ "▁ Inst",
+ "per ty",
+ "pert y",
+ "ct or",
+ "c tor",
+ "▁{ \\",
+ "▁ {\\",
+ "▁L et",
+ "▁Le t",
+ "▁ Let",
+ "▁! =",
+ "▁ !=",
+ "▁get ting",
+ "▁ getting",
+ "ut h",
+ "u th",
+ "um ber",
+ "umb er",
+ "▁Cons ultado",
+ "sch aft",
+ "sc haft",
+ "le te",
+ "let e",
+ "l ete",
+ "▁W ill",
+ "▁Wil l",
+ "▁Wi ll",
+ "▁ Will",
+ "▁E m",
+ "▁ Em",
+ "he ad",
+ "h ead",
+ "▁l eg",
+ "▁le g",
+ "▁ leg",
+ "но м",
+ "н ом",
+ "O r",
+ "ar m",
+ "a rm",
+ "pon d",
+ "po nd",
+ "p ond",
+ "▁Ch rist",
+ "▁Chris t",
+ "▁Chr ist",
+ "▁ Christ",
+ "▁a round",
+ "▁ar ound",
+ "▁ around",
+ "▁c lear",
+ "▁cl ear",
+ "▁cle ar",
+ "▁ clear",
+ "▁h ref",
+ "▁hr ef",
+ "▁ href",
+ "▁S ee",
+ "▁Se e",
+ "▁ See",
+ "') .",
+ "' ).",
+ "▁cre ated",
+ "▁create d",
+ "▁ created",
+ "▁b utton",
+ "▁but ton",
+ "▁ button",
+ "in ing",
+ "ini ng",
+ "i ning",
+ "▁c lick",
+ "▁cl ick",
+ "▁cli ck",
+ "▁ click",
+ "ia m",
+ "i am",
+ "pl it",
+ "p lit",
+ "F or",
+ "▁p olit",
+ "▁po lit",
+ "▁pol it",
+ "▁ polit",
+ "▁se em",
+ "▁see m",
+ "▁l ife",
+ "▁li fe",
+ "▁lif e",
+ "▁ life",
+ "но в",
+ "н ов",
+ "▁in tern",
+ "▁int ern",
+ "▁inter n",
+ "▁inte rn",
+ "▁ intern",
+ "щ и",
+ "se l",
+ "s el",
+ "so ci",
+ "s oci",
+ "▁s tor",
+ "▁st or",
+ "▁sto r",
+ "▁ stor",
+ "cl e",
+ "c le",
+ "ear ch",
+ "e arch",
+ "and roid",
+ "andro id",
+ "andr oid",
+ "}^ {",
+ "} ^{",
+ "▁e ither",
+ "▁f ew",
+ "▁fe w",
+ "▁init ial",
+ "▁initi al",
+ "▁ initial",
+ "l ength",
+ "ri a",
+ "r ia",
+ "sq l",
+ "s ql",
+ "wi k",
+ "w ik",
+ "▁é t",
+ "▁ ét",
+ "ue r",
+ "u er",
+ "▁val id",
+ "▁ valid",
+ "An d",
+ "A nd",
+ "in clude",
+ "includ e",
+ "ur y",
+ "u ry",
+ "▁s us",
+ "▁su s",
+ "ir ed",
+ "ire d",
+ "i red",
+ "▁A fter",
+ "▁Af ter",
+ "▁ After",
+ "▁d ue",
+ "▁du e",
+ "▁ due",
+ "▁b ei",
+ "▁be i",
+ "▁ bei",
+ "our ces",
+ "ource s",
+ "▁N ov",
+ "▁No v",
+ "▁ Nov",
+ "Ac t",
+ "A ct",
+ "▁C ont",
+ "▁Con t",
+ "▁Co nt",
+ "▁ Cont",
+ "▁bre ak",
+ "▁ break",
+ "es ted",
+ "est ed",
+ "este d",
+ "e sted",
+ "▁act ually",
+ "▁actual ly",
+ "▁actu ally",
+ "el se",
+ "els e",
+ "tm l",
+ "t ml",
+ "re r",
+ "r er",
+ "on es",
+ "one s",
+ "o nes",
+ "▁de sign",
+ "▁des ign",
+ "▁ design",
+ "▁pro perty",
+ "▁proper ty",
+ "▁ property",
+ "ph i",
+ "p hi",
+ "al ity",
+ "ali ty",
+ "oc h",
+ "o ch",
+ "is ts",
+ "ist s",
+ "▁ ·",
+ "ud io",
+ "udi o",
+ "A B",
+ "al a",
+ "a la",
+ "ion es",
+ "io nes",
+ "ione s",
+ "i ones",
+ "ф и",
+ "fin d",
+ "fi nd",
+ "f ind",
+ "A s",
+ "▁c ustom",
+ "▁cust om",
+ "▁ custom",
+ "▁a nn",
+ "▁an n",
+ "▁ ann",
+ "E S",
+ "O T",
+ "l ambda",
+ "▁i dent",
+ "▁id ent",
+ "▁ide nt",
+ "▁ ident",
+ "▁or gan",
+ "▁org an",
+ "▁ organ",
+ "▁C ent",
+ "▁Ce nt",
+ "▁ Cent",
+ "▁C har",
+ "▁Ch ar",
+ "▁Cha r",
+ "▁ Char",
+ "▁o s",
+ "▁ os",
+ "▁h ard",
+ "▁ha rd",
+ "▁har d",
+ "▁ hard",
+ "ро в",
+ "р ов",
+ "▁/ >",
+ "▁ />",
+ "k o",
+ "▁ex per",
+ "▁exp er",
+ "▁se par",
+ "▁sep ar",
+ "▁ separ",
+ "y l",
+ "ou rn",
+ "our n",
+ "o urn",
+ "▁d ev",
+ "▁de v",
+ "▁ dev",
+ "▁a uch",
+ "▁au ch",
+ "▁auc h",
+ "▁ auch",
+ "▁b lock",
+ "▁bl ock",
+ "▁blo ck",
+ "▁ block",
+ "bo ok",
+ "b ook",
+ "▁m ap",
+ "▁ma p",
+ "▁ map",
+ "il la",
+ "ill a",
+ "i lla",
+ "▁com put",
+ "▁comp ut",
+ "▁ comput",
+ "▁s pace",
+ "▁sp ace",
+ "▁spac e",
+ "▁ space",
+ "res ult",
+ ") }",
+ "▁e cho",
+ "▁ec ho",
+ "▁ echo",
+ "con fig",
+ "conf ig",
+ "h i",
+ "▁lar ge",
+ "▁larg e",
+ "▁ large",
+ "▁w idth",
+ "▁wid th",
+ "▁ width",
+ "▁G o",
+ "▁ Go",
+ "ma t",
+ "m at",
+ "▁d iff",
+ "▁di ff",
+ "▁dif f",
+ "▁ diff",
+ "▁k ind",
+ "▁ki nd",
+ "▁kin d",
+ "▁ kind",
+ "an ces",
+ "ance s",
+ "anc es",
+ "yn am",
+ "yna m",
+ "y nam",
+ "▁col or",
+ "▁co lor",
+ "▁ color",
+ "In t",
+ "I nt",
+ "so l",
+ "s ol",
+ "▁p i",
+ "▁ pi",
+ "▁char acter",
+ "▁charact er",
+ "▁ character",
+ "om ent",
+ "ome nt",
+ "omen t",
+ "o ment",
+ "▁res ponse",
+ "▁respons e",
+ "▁ response",
+ "ig ma",
+ "ward s",
+ "war ds",
+ "w ards",
+ "ar row",
+ "arr ow",
+ "с у",
+ "ti es",
+ "t ies",
+ "▁ü ber",
+ "▁ über",
+ "Im age",
+ "y d",
+ "▁п ере",
+ "▁пер е",
+ "▁пе ре",
+ "▁ пере",
+ "▁n ode",
+ "▁no de",
+ "▁nod e",
+ "▁ node",
+ "▁it em",
+ "▁i tem",
+ "▁ item",
+ "ach ine",
+ "achi ne",
+ "im a",
+ "i ma",
+ "▁v a",
+ "▁ va",
+ "▁appro ach",
+ "▁w er",
+ "▁we r",
+ "▁ wer",
+ "▁ч е",
+ "▁ че",
+ "O n",
+ "ol low",
+ "oll ow",
+ "он а",
+ "о на",
+ "ct ed",
+ "c ted",
+ "ur ed",
+ "ure d",
+ "u red",
+ "Cont roller",
+ "Control ler",
+ "li ed",
+ "lie d",
+ "l ied",
+ "▁j o",
+ "▁ jo",
+ "▁d al",
+ "▁da l",
+ "▁ dal",
+ "un k",
+ "▁ î",
+ "st art",
+ "sta rt",
+ "star t",
+ "ol a",
+ "o la",
+ "▁com pon",
+ "▁comp on",
+ "I C",
+ "bi t",
+ "b it",
+ "▁b ase",
+ "▁bas e",
+ "▁ba se",
+ "▁ base",
+ "п у",
+ "▁id ea",
+ "▁ide a",
+ "▁ idea",
+ "▁d ire",
+ "▁di re",
+ "▁dir e",
+ "▁ dire",
+ "▁r ad",
+ "▁ra d",
+ "▁ rad",
+ "gr oup",
+ "gro up",
+ "▁W ith",
+ "▁Wi th",
+ "▁Wit h",
+ "▁ With",
+ "ser ver",
+ "serv er",
+ "serve r",
+ "si de",
+ "s ide",
+ "si ng",
+ "sin g",
+ "s ing",
+ "▁d ies",
+ "▁di es",
+ "▁die s",
+ "▁n ear",
+ "▁ne ar",
+ "▁ near",
+ "▁v oor",
+ "▁vo or",
+ "▁ voor",
+ "▁arg ument",
+ "▁ argument",
+ "▁} ,",
+ "▁ },",
+ "▁l and",
+ "▁la nd",
+ "▁lan d",
+ "▁ land",
+ "▁n ames",
+ "▁name s",
+ "▁na mes",
+ "▁nam es",
+ "▁ names",
+ "▁o ption",
+ "▁op tion",
+ "▁opt ion",
+ "▁ option",
+ "ith ub",
+ "pp ed",
+ "ppe d",
+ "p ped",
+ "au g",
+ "a ug",
+ "▁l inks",
+ "▁link s",
+ "▁lin ks",
+ "▁ links",
+ "▁f ull",
+ "▁fu ll",
+ "▁ful l",
+ "▁ full",
+ "▁s itu",
+ "▁si tu",
+ "▁sit u",
+ "▁con sole",
+ "▁cons ole",
+ "▁ console",
+ "▁e tc",
+ "▁et c",
+ "▁ etc",
+ "au x",
+ "a ux",
+ "▁C or",
+ "▁Co r",
+ "▁ Cor",
+ "icro soft",
+ "▁c ame",
+ "▁cam e",
+ "▁ca me",
+ "lo cal",
+ "loc al",
+ "l ocal",
+ "▁k nown",
+ "▁kn own",
+ "▁know n",
+ "▁ known",
+ "▁multi ple",
+ "▁multip le",
+ "▁ multiple",
+ "angu age",
+ "▁t otal",
+ "▁to tal",
+ "▁tot al",
+ "▁ total",
+ "ol ogy",
+ "olog y",
+ "olo gy",
+ "ä t",
+ "▁ Х",
+ "▁f re",
+ "▁fr e",
+ "▁ fre",
+ "▁t en",
+ "▁te n",
+ "▁ ten",
+ "ide o",
+ "▁b es",
+ "▁be s",
+ "▁ bes",
+ "tr ue",
+ "Qu ery",
+ "Que ry",
+ "om m",
+ "o mm",
+ "▁A rt",
+ "▁Ar t",
+ "▁ Art",
+ "▁ke ep",
+ "▁ keep",
+ "▁Un iversity",
+ "▁Univers ity",
+ "re ate",
+ "rea te",
+ "pp ort",
+ "ppo rt",
+ "p port",
+ "▁p ython",
+ "▁ python",
+ "tr a",
+ "t ra",
+ "ect or",
+ "ec tor",
+ "e ctor",
+ "р і",
+ "op h",
+ "o ph",
+ "▁c onc",
+ "▁con c",
+ "▁co nc",
+ "▁f our",
+ "▁fo ur",
+ "▁fou r",
+ "▁ four",
+ "vi ron",
+ "vir on",
+ "▁v ia",
+ "▁vi a",
+ "▁ via",
+ "? \"",
+ "im age",
+ "ima ge",
+ "ol l",
+ "o ll",
+ "ны е",
+ "н ые",
+ "▁con text",
+ "▁cont ext",
+ "▁conte xt",
+ "▁ context",
+ "▁s em",
+ "▁se m",
+ "▁ sem",
+ ". _",
+ "▁e ng",
+ "▁en g",
+ "▁ eng",
+ "ma r",
+ "m ar",
+ "A D",
+ "▁m or",
+ "▁mo r",
+ "▁ mor",
+ "▁C al",
+ "▁Ca l",
+ "▁ Cal",
+ "▁c ell",
+ "▁ce ll",
+ "▁cel l",
+ "▁ cell",
+ "im al",
+ "ima l",
+ "i mal",
+ "AT E",
+ "A TE",
+ "▁in f",
+ "▁ inf",
+ "ö n",
+ "uf fer",
+ "uff er",
+ "s q",
+ ".. ..",
+ "... .",
+ ". ...",
+ "▁z ur",
+ "▁zu r",
+ "W ith",
+ "ра н",
+ "р ан",
+ "ch n",
+ "c hn",
+ "▁d oor",
+ "▁do or",
+ "▁ door",
+ "cont ent",
+ "▁m iss",
+ "▁mi ss",
+ "▁mis s",
+ "▁ miss",
+ "▁s imp",
+ "▁sim p",
+ "▁si mp",
+ "▁ simp",
+ "á r",
+ "ir a",
+ "i ra",
+ "▁h at",
+ "▁ha t",
+ "▁ hat",
+ "Te st",
+ "T est",
+ "▁c ertain",
+ "▁cert ain",
+ "▁cer tain",
+ "▁ certain",
+ "N S",
+ "▁c ho",
+ "▁ch o",
+ "▁ cho",
+ "▁ad v",
+ "▁ adv",
+ "wh ere",
+ "w here",
+ "▁lo oking",
+ "▁look ing",
+ "▁ looking",
+ "▁t imes",
+ "▁time s",
+ "▁tim es",
+ "▁ti mes",
+ "▁ times",
+ "ни х",
+ "н их",
+ "ut o",
+ "u to",
+ "▁ É",
+ "ca n",
+ "c an",
+ "ho st",
+ "hos t",
+ "h ost",
+ "▁( *",
+ "▁ (*",
+ "lo at",
+ "▁n icht",
+ "▁ni cht",
+ "▁nic ht",
+ "▁nich t",
+ "Fi eld",
+ "F ield",
+ "bu rg",
+ "bur g",
+ "b urg",
+ "con st",
+ "cons t",
+ "ad es",
+ "ade s",
+ "a des",
+ "▁M us",
+ "▁Mu s",
+ "▁ Mus",
+ "▁n othing",
+ "▁not hing",
+ "▁no thing",
+ "▁ nothing",
+ "▁in cre",
+ "▁inc re",
+ "▁M in",
+ "▁Mi n",
+ "▁ Min",
+ "▁p ower",
+ "▁po wer",
+ "▁pow er",
+ "▁ power",
+ "▁Amer ican",
+ "▁America n",
+ "▁ American",
+ "l n",
+ "val id",
+ "un gs",
+ "ung s",
+ "▁N ational",
+ "▁Nat ional",
+ "▁Nation al",
+ "▁ National",
+ "▁S an",
+ "▁Sa n",
+ "▁ San",
+ "▁Y ork",
+ "Re quest",
+ "ch ar",
+ "cha r",
+ "c har",
+ "▁Z e",
+ "▁ Ze",
+ "but ton",
+ "b utton",
+ "▁a lg",
+ "▁al g",
+ "▁ alg",
+ "SO N",
+ "S ON",
+ "▁a p",
+ "▁ ap",
+ "uf f",
+ "u ff",
+ "ab ility",
+ "abil ity",
+ "е м",
+ "▁any thing",
+ "el a",
+ "e la",
+ "() )",
+ "( ))",
+ "б а",
+ "amp ion",
+ "ampio n",
+ "▁p ot",
+ "▁po t",
+ "▁ pot",
+ "▁f ut",
+ "▁fu t",
+ "ail able",
+ "▁p rop",
+ "▁pro p",
+ "▁pr op",
+ "▁ prop",
+ "\" ]",
+ "▁l ess",
+ "▁le ss",
+ "▁les s",
+ "▁ less",
+ "la g",
+ "l ag",
+ "▁A ugust",
+ "▁Aug ust",
+ "▁ August",
+ "I t",
+ "▁p lease",
+ "▁ple ase",
+ "▁st yle",
+ "▁sty le",
+ "▁ style",
+ "▁Al so",
+ "▁Als o",
+ "▁ Also",
+ "b t",
+ "▁pro bably",
+ "▁prob ably",
+ "▁O ne",
+ "▁On e",
+ "▁ One",
+ "▁p oss",
+ "▁po ss",
+ "▁pos s",
+ "▁ poss",
+ "U I",
+ "ui t",
+ "u it",
+ "▁W est",
+ "▁We st",
+ "▁Wes t",
+ "▁ West",
+ "h n",
+ "+ \\",
+ "But ton",
+ "Butt on",
+ "B utton",
+ "js on",
+ "j son",
+ "er r",
+ "e rr",
+ "ra me",
+ "ram e",
+ "r ame",
+ "do m",
+ "d om",
+ "il on",
+ "ilo n",
+ "i lon",
+ "al f",
+ "▁c lient",
+ "▁cl ient",
+ "▁cli ent",
+ "▁ client",
+ "▁cont inu",
+ "▁contin u",
+ "▁ continu",
+ "x ml",
+ "pe c",
+ "p ec",
+ "ad or",
+ "ado r",
+ "a dor",
+ "l s",
+ "▁how ever",
+ "▁A ny",
+ "▁An y",
+ "▁ Any",
+ "än d",
+ "ä nd",
+ "math rm",
+ "▁u rl",
+ "▁ur l",
+ "▁ url",
+ "▁b ook",
+ "▁bo ok",
+ "▁ book",
+ "▁g l",
+ "▁ gl",
+ "iv es",
+ "ive s",
+ "i ves",
+ "g i",
+ "▁t ro",
+ "▁tr o",
+ "▁U S",
+ "▁ US",
+ "po int",
+ "p oint",
+ "op en",
+ "ope n",
+ "o pen",
+ "▁c ur",
+ "▁cu r",
+ "▁ cur",
+ "▁e ra",
+ "▁er a",
+ "▁ era",
+ "▁part icular",
+ "▁partic ular",
+ "▁particul ar",
+ "▁parti cular",
+ "▁H T",
+ "▁ HT",
+ "oo t",
+ "o ot",
+ "el lo",
+ "ell o",
+ "lo bal",
+ "lob al",
+ "▁a ction",
+ "▁act ion",
+ "▁ac tion",
+ "▁ action",
+ "▁I nt",
+ "▁In t",
+ "▁ Int",
+ "▁in clude",
+ "▁incl ude",
+ "▁includ e",
+ "▁inclu de",
+ "▁ include",
+ "▁el ements",
+ "▁element s",
+ "▁ele ments",
+ "▁elem ents",
+ "▁ elements",
+ "на я",
+ "ar ds",
+ "ard s",
+ "▁B l",
+ "▁ Bl",
+ "▁h um",
+ "▁hu m",
+ "▁ hum",
+ "fr om",
+ "f rom",
+ "ch ange",
+ "chan ge",
+ "▁function s",
+ "▁fun ctions",
+ "▁ functions",
+ "he n",
+ "h en",
+ "Ser vice",
+ "Serv ice",
+ "▁he ight",
+ "▁ height",
+ "▁L and",
+ "▁La nd",
+ "▁Lan d",
+ "▁ Land",
+ "ia s",
+ "i as",
+ "g s",
+ "ió n",
+ "i ón",
+ "ло в",
+ "л ов",
+ "no de",
+ "n ode",
+ ". ”",
+ "ha nd",
+ "han d",
+ "h and",
+ "▁б у",
+ "▁ бу",
+ "▁a mb",
+ "▁am b",
+ "▁ amb",
+ "▁L u",
+ "▁ Lu",
+ "▁th row",
+ "▁thr ow",
+ "▁thro w",
+ "▁ throw",
+ "▁m ot",
+ "▁mo t",
+ "▁ mot",
+ "▁A ct",
+ "▁Ac t",
+ "▁ Act",
+ "▁w orld",
+ "▁wor ld",
+ "▁ world",
+ "_ \\",
+ "ba se",
+ "bas e",
+ "b ase",
+ "▁C o",
+ "▁ Co",
+ "▁ar ch",
+ "▁arc h",
+ "▁ arch",
+ "▁## ##",
+ "▁### #",
+ "▁ ####",
+ "ge d",
+ "g ed",
+ "pr il",
+ "p ril",
+ "ol der",
+ "old er",
+ "o lder",
+ "Mod el",
+ "Mode l",
+ "Mo del",
+ "M odel",
+ "▁sever al",
+ "li e",
+ "l ie",
+ "che ck",
+ "c heck",
+ "] {",
+ "con s",
+ "co ns",
+ "c ons",
+ "▁T ra",
+ "▁Tr a",
+ "▁ Tra",
+ "he ck",
+ "▁l east",
+ "▁le ast",
+ "do wn",
+ "d own",
+ "eb ru",
+ "e bru",
+ "De f",
+ "D ef",
+ "par am",
+ "pa ram",
+ "para m",
+ "p aram",
+ "is cher",
+ "isch er",
+ "ische r",
+ "isc her",
+ "i scher",
+ "▁c as",
+ "▁ca s",
+ "▁ cas",
+ "C H",
+ "▁add ress",
+ "▁addr ess",
+ "▁ address",
+ "▁ра з",
+ "▁ раз",
+ "uf en",
+ "ufe n",
+ "u fen",
+ "ur ope",
+ "uro pe",
+ "urop e",
+ "е й",
+ "▁b ound",
+ "▁bo und",
+ "▁bou nd",
+ "▁ bound",
+ "C O",
+ "▁A ng",
+ "▁An g",
+ "▁ Ang",
+ "▁M a",
+ "▁ Ma",
+ "In dex",
+ "Ind ex",
+ "co re",
+ "cor e",
+ "c ore",
+ "ou ch",
+ "ouc h",
+ "o uch",
+ "at abase",
+ "ata base",
+ "rib ution",
+ "ribu tion",
+ "doc ument",
+ "d ocument",
+ "L e",
+ "}_ {",
+ "} _{",
+ "ve rn",
+ "ver n",
+ "v ern",
+ "▁stat ement",
+ "▁state ment",
+ "▁ statement",
+ "▁B rit",
+ "▁Br it",
+ "on o",
+ "o no",
+ "ps ilon",
+ "psi lon",
+ "▁le vel",
+ "▁lev el",
+ "▁ level",
+ "▁pro duct",
+ "▁produ ct",
+ "▁prod uct",
+ "▁ product",
+ "I S",
+ "▁c ourse",
+ "▁cour se",
+ "▁cours e",
+ "▁ course",
+ "▁M r",
+ "▁ Mr",
+ "> \r",
+ "▁back ground",
+ "▁ background",
+ "▁re t",
+ "▁r et",
+ "▁ ret",
+ "er ing",
+ "eri ng",
+ "e ring",
+ "mo st",
+ "mos t",
+ "m ost",
+ "сь ко",
+ "ськ о",
+ "▁th read",
+ "▁thr ead",
+ "▁thre ad",
+ "▁ thread",
+ "it ional",
+ "ition al",
+ "iti onal",
+ "it es",
+ "ite s",
+ "i tes",
+ "P l",
+ "▁d os",
+ "▁do s",
+ "g a",
+ "da y",
+ "d ay",
+ "▁G ener",
+ "▁Ge ner",
+ "▁Gen er",
+ "▁Gene r",
+ "▁ Gener",
+ "▁t w",
+ "▁ tw",
+ "A d",
+ "\"> <",
+ "\" ><",
+ "▁( $",
+ "▁ ($",
+ "▁m oment",
+ "▁mo ment",
+ "▁mom ent",
+ "tit le",
+ "t itle",
+ "cre ate",
+ "c reate",
+ "vers ion",
+ "v ersion",
+ "Man ager",
+ "▁f ur",
+ "▁fu r",
+ "▁ fur",
+ "pp ing",
+ "ppi ng",
+ "p ping",
+ "ij n",
+ "о с",
+ "▁r ather",
+ "▁ra ther",
+ "▁rat her",
+ "pt ember",
+ "O S",
+ "▁s ite",
+ "▁si te",
+ "▁sit e",
+ "▁ site",
+ "▁c aus",
+ "▁ca us",
+ "an i",
+ "a ni",
+ "▁h ome",
+ "▁hom e",
+ "▁ho me",
+ "▁ home",
+ "м і",
+ "▁sh ort",
+ "▁sho rt",
+ "▁ short",
+ "p a",
+ "▁l ead",
+ "▁le ad",
+ "is hed",
+ "ish ed",
+ "ci ng",
+ "cin g",
+ "c ing",
+ "or ding",
+ "ord ing",
+ "ordin g",
+ "▁p rote",
+ "▁pro te",
+ "▁pr ote",
+ "▁prot e",
+ "▁ prote",
+ "с ле",
+ "LE CT",
+ "L ECT",
+ "▁di dn",
+ "▁did n",
+ "pos ition",
+ "p osition",
+ "\", \"",
+ "\" ,\"",
+ "() ,",
+ "( ),",
+ "tr ans",
+ "tra ns",
+ "▁l ot",
+ "▁lo t",
+ "▁ lot",
+ "▁о д",
+ "▁ од",
+ "A S",
+ "▁s at",
+ "▁sa t",
+ "▁po ints",
+ "▁point s",
+ "▁ points",
+ "g ithub",
+ "st yle",
+ "sty le",
+ "▁го ду",
+ "▁год у",
+ "▁D is",
+ "▁Di s",
+ "▁ Dis",
+ "pon ent",
+ "om et",
+ "ome t",
+ "o met",
+ "ze r",
+ "z er",
+ "UL L",
+ "U LL",
+ "▁p a",
+ "▁ pa",
+ "A P",
+ "ac es",
+ "ace s",
+ "a ces",
+ "▁Un ited",
+ "▁Unit ed",
+ "am a",
+ "a ma",
+ "et y",
+ "e ty",
+ "Col or",
+ "Co lor",
+ "▁en ough",
+ "U S",
+ "▁l ength",
+ "▁leng th",
+ "▁ length",
+ "() );",
+ "()) ;",
+ "( ));",
+ "^{ \\",
+ "^ {\\",
+ "ft y",
+ "f ty",
+ "Bo x",
+ "B ox",
+ "ap ter",
+ "apt er",
+ "▁comp let",
+ "▁comple t",
+ "▁compl et",
+ "ни к",
+ "ma x",
+ "m ax",
+ "ob ject",
+ "obj ect",
+ "o bject",
+ "( {",
+ "img ur",
+ "it ive",
+ "iti ve",
+ "un ch",
+ "unc h",
+ "▁S ub",
+ "▁Su b",
+ "▁ Sub",
+ "en de",
+ "end e",
+ "e nde",
+ "г у",
+ "ateg ory",
+ "ategor y",
+ "т ы",
+ "ia no",
+ "ian o",
+ "i ano",
+ "▁u pd",
+ "▁up d",
+ "▁A ust",
+ "▁Aus t",
+ "▁Au st",
+ "}{ \\",
+ "} {\\",
+ "to p",
+ "t op",
+ "la s",
+ "l as",
+ "pi s",
+ "p is",
+ "in ess",
+ "ine ss",
+ "ines s",
+ "i ness",
+ "▁{ \r",
+ "▁ {\r",
+ "▁ Е",
+ "G r",
+ "▁A S",
+ "▁ AS",
+ "▁в е",
+ "▁ ве",
+ "th ers",
+ "ther s",
+ "the rs",
+ "▁d efined",
+ "▁def ined",
+ "▁define d",
+ "▁defin ed",
+ "▁ defined",
+ "az ione",
+ "azi one",
+ "a zione",
+ "▁o ffic",
+ "▁of fic",
+ "▁off ic",
+ "▁au tom",
+ "▁aut om",
+ "▁auto m",
+ "▁ autom",
+ "ü n",
+ "▁b row",
+ "▁br ow",
+ "▁bro w",
+ "▁ brow",
+ "▁s erv",
+ "▁se rv",
+ "▁ser v",
+ "▁ serv",
+ "▁re move",
+ "▁rem ove",
+ "▁remov e",
+ "▁ remove",
+ "ir o",
+ "i ro",
+ "▁B ibli",
+ "▁Bib li",
+ "E D",
+ "▁w hole",
+ "▁wh ole",
+ "▁who le",
+ "▁ ш",
+ "▁J ava",
+ "▁Ja va",
+ "▁ Java",
+ "▁z um",
+ "▁zu m",
+ "u a",
+ "p m",
+ "de v",
+ "d ev",
+ "к ра",
+ "ol ds",
+ "old s",
+ "▁W ar",
+ "▁Wa r",
+ "ä n",
+ "pa ss",
+ "pas s",
+ "p ass",
+ "u z",
+ "[ \"",
+ "▁t ri",
+ "▁tr i",
+ "▁ tri",
+ "is ed",
+ "ise d",
+ "i sed",
+ "х а",
+ "▁mem ory",
+ "▁memor y",
+ "▁ memory",
+ "▁P ort",
+ "▁Po rt",
+ "▁Por t",
+ "▁ Port",
+ "op er",
+ "ope r",
+ "o per",
+ "U p",
+ "▁Th ank",
+ "▁ Thank",
+ "▁M ich",
+ "▁Mi ch",
+ "▁Mic h",
+ "▁ Mich",
+ "yc h",
+ "y ch",
+ "bo ard",
+ "boa rd",
+ "б у",
+ "In st",
+ "▁b egin",
+ "▁be gin",
+ "▁beg in",
+ "▁ begin",
+ "in ation",
+ "ina tion",
+ "▁M od",
+ "▁Mo d",
+ "▁ Mod",
+ "_ ,",
+ "▁D en",
+ "▁De n",
+ "▁ Den",
+ "op tion",
+ "opt ion",
+ "o ption",
+ "▁con struct",
+ "▁const ruct",
+ "▁constru ct",
+ "▁ construct",
+ "▁J ust",
+ "▁Ju st",
+ "▁ Just",
+ "Ma p",
+ "M ap",
+ "ru n",
+ "r un",
+ "▁re spect",
+ "▁res pect",
+ "▁resp ect",
+ "ha m",
+ "h am",
+ "ма н",
+ "м ан",
+ "im edia",
+ "ime dia",
+ "i media",
+ "▁a pply",
+ "▁app ly",
+ "▁ap ply",
+ "▁ apply",
+ "cri ption",
+ "cript ion",
+ "ma in",
+ "mai n",
+ "m ain",
+ "▁К а",
+ "▁ Ка",
+ "oi d",
+ "o id",
+ "Co de",
+ "C ode",
+ "} ;",
+ "In fo",
+ "Inf o",
+ "▁for mat",
+ "▁form at",
+ "▁forma t",
+ "▁ format",
+ "Lo g",
+ "L og",
+ "▁с у",
+ "▁ су",
+ "▁l at",
+ "▁la t",
+ "▁ lat",
+ "ut or",
+ "uto r",
+ "u tor",
+ "▁re ference",
+ "▁refer ence",
+ "▁ reference",
+ "▁cal cul",
+ "▁calc ul",
+ "▁ calcul",
+ "on n",
+ "o nn",
+ "L o",
+ "in fty",
+ "inf ty",
+ "▁a long",
+ "▁al ong",
+ "▁ č",
+ "▁t ask",
+ "▁ta sk",
+ "▁ task",
+ "▁e v",
+ "▁ ev",
+ "th eta",
+ "the ta",
+ "ra s",
+ "r as",
+ "jo r",
+ "j or",
+ "▁б о",
+ "▁ бо",
+ "▁princi p",
+ "▁prin cip",
+ "M y",
+ "▁e iner",
+ "▁ein er",
+ "▁eine r",
+ "▁E s",
+ "▁ Es",
+ "om b",
+ "o mb",
+ "qu ad",
+ "qua d",
+ "^{ -",
+ "^ {-",
+ "um p",
+ "u mp",
+ "▁t ill",
+ "▁til l",
+ "▁ti ll",
+ "д і",
+ "▁lo oks",
+ "▁look s",
+ "▁o k",
+ "▁ ok",
+ "ц а",
+ "n u",
+ "Fi l",
+ "F il",
+ "▁s ont",
+ "▁so nt",
+ "▁son t",
+ "▁M ed",
+ "▁Me d",
+ "▁ Med",
+ "ag ue",
+ "agu e",
+ "a gue",
+ "▁c ost",
+ "▁co st",
+ "▁cos t",
+ "▁ cost",
+ "▁S im",
+ "▁Si m",
+ "▁ Sim",
+ "▁com ment",
+ "▁comm ent",
+ "▁comme nt",
+ "▁ comment",
+ "▁( \\",
+ "▁ (\\",
+ "eg en",
+ "ege n",
+ "e gen",
+ "▁para meter",
+ "▁param eter",
+ "▁paramet er",
+ "▁ parameter",
+ "▁F rance",
+ "▁Fran ce",
+ "▁Fr ance",
+ "▁Franc e",
+ "▁ France",
+ "re p",
+ "r ep",
+ "▁T H",
+ "▁ TH",
+ "▁y et",
+ "▁ye t",
+ "▁a way",
+ "▁aw ay",
+ "▁ away",
+ "▁c irc",
+ "▁ci rc",
+ "▁cir c",
+ "▁ circ",
+ "▁A PI",
+ "▁AP I",
+ "▁ API",
+ "em p",
+ "e mp",
+ "в і",
+ "L ayout",
+ "▁l ines",
+ "▁li nes",
+ "▁line s",
+ "▁lin es",
+ "▁ lines",
+ "▁P art",
+ "▁Par t",
+ "▁Pa rt",
+ "▁ Part",
+ "em pt",
+ "emp t",
+ "▁B i",
+ "▁ Bi",
+ "▁m ind",
+ "▁min d",
+ "▁mi nd",
+ "▁ mind",
+ "k y",
+ "gi ng",
+ "gin g",
+ "g ing",
+ "▁re port",
+ "▁rep ort",
+ "▁repo rt",
+ "▁ report",
+ "▁A dd",
+ "▁Ad d",
+ "▁ Add",
+ "ро д",
+ "р од",
+ "▁r ange",
+ "▁ran ge",
+ "▁rang e",
+ "▁ range",
+ "ci as",
+ "cia s",
+ "c ias",
+ "li p",
+ "l ip",
+ "▁K ar",
+ "▁Ka r",
+ "▁ Kar",
+ "▁Comm ons",
+ "▁Common s",
+ "ger ufen",
+ "af f",
+ "a ff",
+ "se c",
+ "s ec",
+ "▁h tml",
+ "▁ html",
+ "li g",
+ "l ig",
+ "▁w indow",
+ "▁wind ow",
+ "▁ window",
+ "in ition",
+ "ini tion",
+ "init ion",
+ "ci s",
+ "c is",
+ "▁u t",
+ "▁ ut",
+ "el n",
+ "e ln",
+ "▁a ux",
+ "▁au x",
+ "▁ aux",
+ "▁n eg",
+ "▁ne g",
+ "▁ neg",
+ "Ha nd",
+ "H and",
+ "▁) ;",
+ "▁ );",
+ "▁a nal",
+ "▁an al",
+ "▁ anal",
+ "▁f ri",
+ "▁fr i",
+ "▁ fri",
+ "▁с и",
+ "▁ си",
+ "et ch",
+ "etc h",
+ "m d",
+ "pa ge",
+ "pag e",
+ "p age",
+ "▁l ibrary",
+ "▁li brary",
+ "▁ library",
+ "▁: =",
+ "▁ :=",
+ "RO M",
+ "R OM",
+ "Y ou",
+ "sp ace",
+ "s pace",
+ "▁d urch",
+ "▁dur ch",
+ "▁h ost",
+ "▁ho st",
+ "▁hos t",
+ "▁ host",
+ "av en",
+ "ave n",
+ "a ven",
+ "▁F ile",
+ "▁Fil e",
+ "▁ File",
+ "al le",
+ "all e",
+ "a lle",
+ "ти в",
+ "▁p ap",
+ "▁pa p",
+ "ст во",
+ "ств о",
+ "с тво",
+ "mar k",
+ "m ark",
+ "▁m ais",
+ "▁ma is",
+ "▁mai s",
+ "er man",
+ "erm an",
+ "Si ze",
+ "S ize",
+ "е к",
+ "▁М а",
+ "▁ Ма",
+ "▁is n",
+ "▁i sn",
+ "▁c opy",
+ "▁co py",
+ "▁cop y",
+ "▁ copy",
+ "st en",
+ "ste n",
+ "s ten",
+ "ri ver",
+ "riv er",
+ "rive r",
+ "r iver",
+ "▁w ent",
+ "▁we nt",
+ "▁wen t",
+ "▁j avascript",
+ "▁java script",
+ "▁ javascript",
+ "▁s am",
+ "▁sa m",
+ "▁ sam",
+ "▁f rame",
+ "▁fr ame",
+ "▁fra me",
+ "▁fram e",
+ "▁ frame",
+ "▁v i",
+ "▁ vi",
+ "▁pre vious",
+ "▁prev ious",
+ "▁ previous",
+ "ro du",
+ "rod u",
+ "r odu",
+ "▁method s",
+ "▁ methods",
+ "▁ne cess",
+ "▁neces s",
+ "▁ necess",
+ "N A",
+ "ck et",
+ "cke t",
+ "c ket",
+ "▁o pt",
+ "▁op t",
+ "▁ opt",
+ "Lo c",
+ "L oc",
+ "ho w",
+ "h ow",
+ "▁î n",
+ "▁ în",
+ "sh ip",
+ "s hip",
+ "▁it self",
+ "▁its elf",
+ "▁P lease",
+ "▁Ple ase",
+ "▁ Please",
+ "ie ne",
+ "ien e",
+ "i ene",
+ "ве р",
+ "в ер",
+ "▁< <",
+ "▁ <<",
+ "▁m ill",
+ "▁mil l",
+ "▁mi ll",
+ "▁ mill",
+ "▁t rad",
+ "▁tr ad",
+ "▁tra d",
+ "▁ trad",
+ "pa ce",
+ "p ace",
+ "▁H ar",
+ "▁Ha r",
+ "▁ Har",
+ "it en",
+ "ite n",
+ "i ten",
+ "wi se",
+ "w ise",
+ "writ e",
+ "wr ite",
+ "w rite",
+ "ци и",
+ "р ы",
+ "Lin e",
+ "Li ne",
+ "L ine",
+ "ol o",
+ "o lo",
+ "▁ac cept",
+ "▁ accept",
+ "he ight",
+ "▁e lect",
+ "▁el ect",
+ "▁ele ct",
+ "▁ elect",
+ "el la",
+ "ell a",
+ "e lla",
+ "▁p å",
+ "Se lect",
+ "S elect",
+ "▁ ли",
+ "▁\\ <",
+ "▁ \\<",
+ "( (",
+ "▁I D",
+ "▁ ID",
+ "op s",
+ "o ps",
+ "ва н",
+ "в ан",
+ "i ó",
+ "T P",
+ "» ,",
+ "ne ction",
+ "nect ion",
+ "n ection",
+ "par ent",
+ "pa rent",
+ "▁M ag",
+ "▁Ma g",
+ "▁ Mag",
+ "Tab le",
+ "T able",
+ "O ver",
+ "▁n etwork",
+ "▁net work",
+ "▁ network",
+ "с по",
+ "▁as sign",
+ "▁ass ign",
+ "▁ assign",
+ "ig ger",
+ "igg er",
+ "ir m",
+ "i rm",
+ ") `",
+ "ot tom",
+ "ott om",
+ "otto m",
+ "be ta",
+ "bet a",
+ "b eta",
+ "▁d ell",
+ "▁de ll",
+ "▁del l",
+ "▁b ody",
+ "▁bo dy",
+ "▁bod y",
+ "▁ body",
+ "▁д а",
+ "▁ да",
+ "▁Y our",
+ "▁You r",
+ "▁ Your",
+ "▁f ue",
+ "▁fu e",
+ "▁p ackage",
+ "▁pack age",
+ "▁ package",
+ "▁l ight",
+ "▁lig ht",
+ "▁ light",
+ "▁* *",
+ "▁ **",
+ "M P",
+ "▁c ou",
+ "▁co u",
+ "▁ cou",
+ "ye s",
+ "y es",
+ ": \\",
+ "▁ Ч",
+ "▁m ention",
+ "▁men tion",
+ "▁ment ion",
+ "en sch",
+ "ens ch",
+ "▁d eg",
+ "▁de g",
+ "▁ deg",
+ "▁con vert",
+ "▁conver t",
+ "▁conv ert",
+ "▁ convert",
+ "▁D av",
+ "▁Da v",
+ "ad t",
+ "a dt",
+ "Res ult",
+ "th ough",
+ "▁b us",
+ "▁bu s",
+ "▁ bus",
+ "x y",
+ "▁s een",
+ "▁se en",
+ "▁see n",
+ "▁ seen",
+ "Al l",
+ "A ll",
+ "pu blic",
+ "pub lic",
+ "p ublic",
+ "iv ely",
+ "ive ly",
+ "ivel y",
+ "▁R ec",
+ "▁Re c",
+ "▁ Rec",
+ "▁H is",
+ "▁Hi s",
+ "si m",
+ "s im",
+ "▁f ör",
+ "▁fö r",
+ "▁ för",
+ "▁h istor",
+ "▁his tor",
+ "▁hi stor",
+ "▁hist or",
+ "▁ histor",
+ "▁s ett",
+ "▁se tt",
+ "▁set t",
+ "▁ sett",
+ "ra t",
+ "r at",
+ "ab led",
+ "able d",
+ "abl ed",
+ "a bled",
+ "▁» ,",
+ "▁ »,",
+ "go ogle",
+ "We b",
+ "W eb",
+ "é l",
+ "▁t itle",
+ "▁tit le",
+ "▁ title",
+ "▁J anu",
+ "▁Jan u",
+ "▁Ja nu",
+ "ј а",
+ "▁t ook",
+ "▁to ok",
+ "▁too k",
+ "id en",
+ "ide n",
+ "i den",
+ "s z",
+ "▁G et",
+ "▁Ge t",
+ "▁ Get",
+ "▁object s",
+ "▁ objects",
+ "▁com mon",
+ "▁comm on",
+ "▁ common",
+ "▁ch anges",
+ "▁change s",
+ "▁chang es",
+ "▁ changes",
+ "▁L ond",
+ "▁Lo nd",
+ "▁ Lond",
+ "▁ex tern",
+ "▁ext ern",
+ "▁j u",
+ "▁ ju",
+ "I s",
+ "▁av ailable",
+ "▁avail able",
+ "▁ available",
+ "tr i",
+ "t ri",
+ "▁m ás",
+ "▁má s",
+ "os a",
+ "o sa",
+ "B e",
+ "▁D ata",
+ "▁Da ta",
+ "▁Dat a",
+ "▁ Data",
+ "ur al",
+ "ura l",
+ "u ral",
+ "▁h om",
+ "▁ho m",
+ "▁ hom",
+ "▁acc ount",
+ "▁ac count",
+ "▁ account",
+ "o o",
+ "▁p erm",
+ "▁per m",
+ "▁pe rm",
+ "▁ perm",
+ "res pond",
+ "resp ond",
+ "y t",
+ "▁s end",
+ "▁se nd",
+ "▁sen d",
+ "▁ send",
+ "▁return s",
+ "▁ returns",
+ "iv id",
+ "ivi d",
+ "i vid",
+ "▁ex pla",
+ "▁exp la",
+ "▁expl a",
+ "í n",
+ "▁n or",
+ "▁no r",
+ "▁ nor",
+ "I f",
+ "▁F rom",
+ "▁Fr om",
+ "▁Fro m",
+ "▁ From",
+ "▁t arget",
+ "▁tar get",
+ "▁ target",
+ "fe ct",
+ "f ect",
+ "ен т",
+ "▁u it",
+ "▁ui t",
+ "▁ uit",
+ "▁J o",
+ "▁ Jo",
+ "▁vari ables",
+ "▁variable s",
+ "▁ variables",
+ "▁s eries",
+ "▁se ries",
+ "▁ser ies",
+ "▁serie s",
+ "▁ series",
+ "▁f unc",
+ "▁fun c",
+ "▁fu nc",
+ "▁ func",
+ "▁him self",
+ "▁ч а",
+ "▁ ча",
+ "an ti",
+ "ant i",
+ "▁a ch",
+ "▁ac h",
+ "▁ ach",
+ "ia log",
+ "ial og",
+ "i alog",
+ "▁s td",
+ "▁st d",
+ "▁ std",
+ "a e",
+ "▁f oot",
+ "▁fo ot",
+ "▁foo t",
+ "▁ foot",
+ "▁un ter",
+ "▁ unter",
+ "gr ess",
+ "gres s",
+ "gre ss",
+ "g ress",
+ "No t",
+ "N ot",
+ "ra d",
+ "r ad",
+ "f ér",
+ "▁u til",
+ "▁ut il",
+ "▁ util",
+ "or em",
+ "ore m",
+ "o rem",
+ "▁s ou",
+ "▁so u",
+ "op t",
+ "o pt",
+ "▁o g",
+ "▁ og",
+ "▁u ma",
+ "▁um a",
+ "▁ uma",
+ "it ar",
+ "ita r",
+ "i tar",
+ "▁O k",
+ "▁ Ok",
+ "ü ck",
+ "sq rt",
+ "▁a nt",
+ "▁an t",
+ "▁ ant",
+ "▁wer den",
+ "▁werd en",
+ "å r",
+ "}) ;",
+ "} );",
+ "▁P aris",
+ "▁Par is",
+ "▁Pa ris",
+ "▁ex ception",
+ "▁except ion",
+ "▁ exception",
+ "▁de term",
+ "▁det erm",
+ "▁V ol",
+ "▁Vo l",
+ "▁ Vol",
+ "▁S am",
+ "▁Sa m",
+ "▁ Sam",
+ "▁e ss",
+ "▁es s",
+ "▁ ess",
+ "li es",
+ "lie s",
+ "l ies",
+ "ion i",
+ "io ni",
+ "i oni",
+ "od ing",
+ "odi ng",
+ "o ding",
+ "id get",
+ "idge t",
+ "▁p ri",
+ "▁pr i",
+ "▁wh ether",
+ "▁whe ther",
+ "▁п од",
+ "▁по д",
+ "▁num bers",
+ "▁number s",
+ "▁ numbers",
+ "▁ ~",
+ "ev ent",
+ "even t",
+ "e vent",
+ "▁sh ows",
+ "▁show s",
+ "▁sho ws",
+ "at ures",
+ "atur es",
+ "ature s",
+ "atu res",
+ "▁h ouse",
+ "▁ho use",
+ "▁hous e",
+ "▁ house",
+ "▁f ace",
+ "▁fa ce",
+ "▁fac e",
+ "▁ face",
+ "▁s ię",
+ "▁si ę",
+ "viron ment",
+ "va n",
+ "v an",
+ "▁in cluding",
+ "▁includ ing",
+ "▁inclu ding",
+ "▁ including",
+ "▁< -",
+ "▁ <-",
+ "ti mes",
+ "time s",
+ "tim es",
+ "t imes",
+ "no w",
+ "n ow",
+ "▁p ur",
+ "▁pu r",
+ "▁ pur",
+ "if ier",
+ "ifi er",
+ "ifie r",
+ "▁e mp",
+ "▁em p",
+ "▁ emp",
+ "▁c la",
+ "▁cl a",
+ "▁ cla",
+ "mo n",
+ "m on",
+ "▁D as",
+ "▁Da s",
+ "ad y",
+ "a dy",
+ "▁в ід",
+ "▁ві д",
+ "▁ від",
+ "▁ ц",
+ "ab or",
+ "a bor",
+ "OS T",
+ "O ST",
+ "▁b and",
+ "▁ban d",
+ "▁ba nd",
+ "▁ band",
+ "▁ ú",
+ "▁ex actly",
+ "▁exact ly",
+ "ie rt",
+ "ier t",
+ "i ert",
+ "av ig",
+ "avi g",
+ "▁re du",
+ "▁r edu",
+ "▁red u",
+ "▁ redu",
+ "▁S E",
+ "▁ SE",
+ "lish ed",
+ "lis hed",
+ "l ished",
+ "B u",
+ "Mess age",
+ "M essage",
+ "ce ll",
+ "cel l",
+ "c ell",
+ "ful ly",
+ "full y",
+ "▁s v",
+ "▁ sv",
+ "▁m akes",
+ "▁ma kes",
+ "▁make s",
+ "▁mak es",
+ "po l",
+ "p ol",
+ "▁re quired",
+ "▁require d",
+ "▁requ ired",
+ "▁ required",
+ "fer rer",
+ "▁p ers",
+ "▁per s",
+ "▁pe rs",
+ "▁ pers",
+ "▁m i",
+ "▁ mi",
+ "F I",
+ "▁Pa ul",
+ "▁ Paul",
+ "▁U I",
+ "▁ UI",
+ "▁B el",
+ "▁Be l",
+ "▁ Bel",
+ "in c",
+ "i nc",
+ "▁cont ains",
+ "▁contain s",
+ "▁ contains",
+ "O ut",
+ "as ure",
+ "p u",
+ "ot o",
+ "o to",
+ "▁g ame",
+ "▁ga me",
+ "▁gam e",
+ "▁ game",
+ "z n",
+ "▁W hy",
+ "▁Wh y",
+ "▁ Why",
+ "or ith",
+ "ori th",
+ "bi g",
+ "b ig",
+ "ки й",
+ "sig ma",
+ "s igma",
+ "▁qu ite",
+ "▁qui te",
+ "▁quit e",
+ "▁j ed",
+ "▁je d",
+ "▁ jed",
+ "re c",
+ "r ec",
+ "▁S QL",
+ "▁ SQL",
+ "б е",
+ "▁M art",
+ "▁Mar t",
+ "▁Ma rt",
+ "▁ Mart",
+ "y a",
+ "▁sch ool",
+ "▁ school",
+ "▁sim ply",
+ "▁simp ly",
+ "▁simpl y",
+ "▁v or",
+ "▁vo r",
+ "▁ vor",
+ "▁d ouble",
+ "▁dou ble",
+ "▁doub le",
+ "▁ double",
+ "ра в",
+ "▁S tr",
+ "▁St r",
+ "▁ Str",
+ "ie m",
+ "i em",
+ "▁al bum",
+ "▁alb um",
+ "▁ album",
+ "▁re sol",
+ "▁res ol",
+ "▁ resol",
+ "▁d ei",
+ "▁de i",
+ "▁W ik",
+ "▁Wi k",
+ "▁ Wik",
+ "▁a w",
+ "▁ aw",
+ "um b",
+ "u mb",
+ "ol s",
+ "o ls",
+ "▁* /",
+ "▁ */",
+ "▁z e",
+ "▁ ze",
+ "▁a nim",
+ "▁an im",
+ "▁ani m",
+ "▁ anim",
+ "/ >",
+ "ri s",
+ "r is",
+ "re sh",
+ "res h",
+ "r esh",
+ "N o",
+ "ique s",
+ "iqu es",
+ "i ques",
+ "cur rent",
+ "curr ent",
+ "c urrent",
+ "▁per iod",
+ "▁peri od",
+ "▁ period",
+ "▁A pril",
+ "▁Ap ril",
+ "▁st ore",
+ "▁stor e",
+ "▁sto re",
+ "▁ store",
+ "', '",
+ "' ,'",
+ "▁S et",
+ "▁Se t",
+ "▁ Set",
+ "= {",
+ "ach ed",
+ "ac hed",
+ "ache d",
+ "a ched",
+ "▁M al",
+ "▁Ma l",
+ "▁ Mal",
+ "▁P al",
+ "▁Pa l",
+ "▁ Pal",
+ "an tes",
+ "ant es",
+ "ante s",
+ "ate rial",
+ "ater ial",
+ "▁work ed",
+ "▁wor ked",
+ "le q",
+ "l eq",
+ "ore ferrer",
+ "▁h appen",
+ "▁ha ppen",
+ "▁happ en",
+ "▁b ox",
+ "▁bo x",
+ "▁ box",
+ "ne y",
+ "n ey",
+ "▁c lose",
+ "▁cl ose",
+ "▁clos e",
+ "▁clo se",
+ "▁ close",
+ "▁g ran",
+ "▁gr an",
+ "▁gra n",
+ "▁l ie",
+ "▁li e",
+ "▁ lie",
+ "▁i r",
+ "▁ ir",
+ "▁ex pected",
+ "▁exp ected",
+ "▁expect ed",
+ "▁ expected",
+ "▁д ля",
+ "cl ick",
+ "cli ck",
+ "clic k",
+ "c lick",
+ "ș i",
+ "▁p arte",
+ "▁par te",
+ "▁part e",
+ "og n",
+ "o gn",
+ "▁F orm",
+ "▁For m",
+ "▁Fo rm",
+ "▁ Form",
+ "▁m emb",
+ "▁me mb",
+ "▁mem b",
+ "▁p lan",
+ "▁pl an",
+ "▁pla n",
+ "▁ plan",
+ "▁te am",
+ "▁tea m",
+ "▁ team",
+ "] [",
+ "▁c ommun",
+ "▁com mun",
+ "▁comm un",
+ "or ry",
+ "orr y",
+ "en cy",
+ "enc y",
+ "g l",
+ "in ary",
+ "ina ry",
+ "inar y",
+ "cd ot",
+ "c dot",
+ "^ \\",
+ "▁F irst",
+ "▁Fir st",
+ "▁ First",
+ "an der",
+ "and er",
+ "ande r",
+ "a nder",
+ "▁D ec",
+ "▁De c",
+ "▁ Dec",
+ "re quest",
+ "req uest",
+ "ст ва",
+ "ств а",
+ "с тва",
+ "▁str ucture",
+ "▁struct ure",
+ "▁ structure",
+ "▁| |",
+ "▁ ||",
+ "▁C omp",
+ "▁Com p",
+ "▁Co mp",
+ "▁ Comp",
+ "act ory",
+ "actor y",
+ "▁M il",
+ "▁Mi l",
+ "▁ Mil",
+ "▁S ome",
+ "▁So me",
+ "▁Som e",
+ "▁ Some",
+ "St ream",
+ "▁as sum",
+ "▁ass um",
+ "ue n",
+ "u en",
+ "▁w ords",
+ "▁word s",
+ "▁wor ds",
+ "▁ words",
+ "▁Se ptember",
+ "▁Sept ember",
+ "▁К о",
+ "▁ Ко",
+ "▁d ays",
+ "▁da ys",
+ "▁day s",
+ "▁ days",
+ "or ies",
+ "ori es",
+ "orie s",
+ "o ries",
+ "ста в",
+ "s m",
+ "vi n",
+ "v in",
+ "part ial",
+ "▁par ent",
+ "▁pa rent",
+ "▁pare nt",
+ "▁ parent",
+ "o j",
+ "ни и",
+ "! \"",
+ "ug in",
+ "u gin",
+ "▁W indows",
+ "▁Wind ows",
+ "▁Window s",
+ "▁ Windows",
+ "E d",
+ ": }",
+ "▁ q",
+ "▁b en",
+ "▁be n",
+ "▁ ben",
+ "ia na",
+ "ian a",
+ "i ana",
+ "▁l abel",
+ "▁la bel",
+ "▁lab el",
+ "▁ label",
+ "st ate",
+ "sta te",
+ "stat e",
+ "ut ed",
+ "ute d",
+ "u ted",
+ "▁( )",
+ "▁ ()",
+ "▁с во",
+ "▁e dit",
+ "▁ed it",
+ "▁ edit",
+ "ur ing",
+ "uri ng",
+ "u ring",
+ "▁N S",
+ "▁ NS",
+ "▁J ahr",
+ "▁Jah r",
+ "▁Ja hr",
+ "▁prov ide",
+ "H e",
+ "▁Y es",
+ "▁Ye s",
+ "▁ Yes",
+ "an el",
+ "ane l",
+ "a nel",
+ "en ame",
+ "ena me",
+ "e name",
+ "▁D on",
+ "▁Do n",
+ "▁ Don",
+ "is k",
+ "i sk",
+ "gr a",
+ "g ra",
+ "el ij",
+ "eli j",
+ "e lij",
+ "▁r oot",
+ "▁ro ot",
+ "▁ root",
+ "* /",
+ "▁F re",
+ "▁Fr e",
+ "▁ Fre",
+ "▁M or",
+ "▁Mo r",
+ "▁ Mor",
+ "us ed",
+ "use d",
+ "u sed",
+ "ran ge",
+ "r ange",
+ "▁t amb",
+ "▁ta mb",
+ "▁tam b",
+ "▁mod ule",
+ "▁ module",
+ "▁d irectory",
+ "▁direct ory",
+ "▁director y",
+ "▁ directory",
+ "ound s",
+ "oun ds",
+ "Act ivity",
+ "Activ ity",
+ "▁m u",
+ "▁ mu",
+ "in fo",
+ "inf o",
+ "▁f ree",
+ "▁fr ee",
+ "▁fre e",
+ "▁ free",
+ "or ge",
+ "org e",
+ "ta b",
+ "t ab",
+ ") =",
+ "la ng",
+ "lan g",
+ "l ang",
+ "▁о с",
+ "▁ ос",
+ "▁F ROM",
+ "▁FR OM",
+ "▁ FROM",
+ "▁en ter",
+ "▁ent er",
+ "▁ enter",
+ "▁bec ame",
+ "id ae",
+ "ida e",
+ "х и",
+ "▁St ates",
+ "▁State s",
+ "▁Stat es",
+ "▁Sta tes",
+ "ver se",
+ "vers e",
+ "▁ex pl",
+ "▁exp l",
+ "▁ expl",
+ "yn t",
+ "y nt",
+ "U N",
+ "e e",
+ "en dent",
+ "end ent",
+ "enden t",
+ "ende nt",
+ "▁m aking",
+ "▁ma king",
+ "▁mak ing",
+ "▁ making",
+ "▁\" $",
+ "un i",
+ "u ni",
+ "qu ence",
+ "▁l ui",
+ "▁lu i",
+ "H T",
+ "▁us es",
+ "▁use s",
+ "▁ uses",
+ "zi e",
+ "z ie",
+ "ni a",
+ "n ia",
+ "Cont ent",
+ "▁C ount",
+ "▁Co unt",
+ "▁Coun t",
+ "▁Cou nt",
+ "▁ Count",
+ "▁stand ard",
+ "▁ standard",
+ "EN T",
+ "E NT",
+ "▁ко н",
+ "▁к он",
+ "▁ кон",
+ "fo rt",
+ "for t",
+ "f ort",
+ "ad as",
+ "ada s",
+ "a das",
+ "з у",
+ "S ystem",
+ "▁S w",
+ "▁ Sw",
+ "▁e ver",
+ "▁ev er",
+ "▁ ever",
+ "L O",
+ "▁cor respond",
+ "▁P o",
+ "▁ Po",
+ "ar gin",
+ "arg in",
+ "к т",
+ "і й",
+ "▁re main",
+ "▁rem ain",
+ "ci o",
+ "c io",
+ "▁act ual",
+ "▁actu al",
+ "▁ actual",
+ "ст у",
+ "с ту",
+ "▁s ind",
+ "▁si nd",
+ "▁sin d",
+ "▁P e",
+ "▁ Pe",
+ "▁ch anged",
+ "▁change d",
+ "▁chang ed",
+ "▁ changed",
+ "▁N ote",
+ "▁No te",
+ "▁Not e",
+ "▁ Note",
+ "sk ie",
+ "ski e",
+ "s kie",
+ "▁famil y",
+ "▁fam ily",
+ "▁ family",
+ "it à",
+ "co s",
+ "c os",
+ "tx t",
+ "t xt",
+ "ke r",
+ "k er",
+ "ce ed",
+ "c eed",
+ "▁a rr",
+ "▁ar r",
+ "▁ arr",
+ "▁c am",
+ "▁ca m",
+ "▁ cam",
+ "iz er",
+ "ize r",
+ "i zer",
+ "▁D an",
+ "▁Da n",
+ "▁ Dan",
+ "he l",
+ "h el",
+ "ic ult",
+ "icul t",
+ "H P",
+ "il er",
+ "ile r",
+ "i ler",
+ "▁S al",
+ "▁Sa l",
+ "▁ Sal",
+ "▁con nection",
+ "▁conne ction",
+ "▁connect ion",
+ "▁conn ection",
+ "▁ connection",
+ "us ion",
+ "k n",
+ "R I",
+ "▁v om",
+ "▁vo m",
+ "List ener",
+ "▁ ö",
+ "▁d im",
+ "▁di m",
+ "▁ dim",
+ "▁p ress",
+ "▁pr ess",
+ "▁pre ss",
+ "▁pres s",
+ "▁ press",
+ "▁e sc",
+ "▁es c",
+ "▁ esc",
+ "▁T ry",
+ "▁Tr y",
+ "▁ Try",
+ "at alog",
+ "ata log",
+ "atal og",
+ "▁th anks",
+ "▁than ks",
+ "▁thank s",
+ "D O",
+ "▁w ritten",
+ "▁writ ten",
+ "▁wr itten",
+ "▁ written",
+ "di r",
+ "d ir",
+ "re w",
+ "r ew",
+ "▁f ire",
+ "▁fi re",
+ "▁fir e",
+ "▁ fire",
+ "▁N ach",
+ "▁Na ch",
+ "▁ á",
+ "en c",
+ "e nc",
+ "▁or igin",
+ "▁orig in",
+ "▁ origin",
+ "▁Nov ember",
+ "▁} ;",
+ "▁ };",
+ "Co unt",
+ "C ount",
+ "▁З а",
+ "▁ За",
+ "▁g raph",
+ "▁gr aph",
+ "▁gra ph",
+ "▁ graph",
+ "▁m is",
+ "▁mi s",
+ "▁ mis",
+ "▁Ex ternal",
+ "▁Ext ernal",
+ "▁Extern al",
+ "▁Externa l",
+ "▁ External",
+ "▁o ptions",
+ "▁option s",
+ "▁opt ions",
+ "▁ options",
+ "▁U RL",
+ "▁ URL",
+ "▁p hp",
+ "▁ph p",
+ "▁ php",
+ "▁in tegr",
+ "▁int egr",
+ "▁inte gr",
+ "▁ integr",
+ "Con fig",
+ "Conf ig",
+ "▁T ext",
+ "▁Te xt",
+ "▁Tex t",
+ "▁ Text",
+ "in ner",
+ "inn er",
+ "▁c rit",
+ "▁cr it",
+ "▁cri t",
+ "▁ crit",
+ ", ”",
+ "▁t og",
+ "▁to g",
+ "$ $",
+ "no f",
+ "n of",
+ "▁s es",
+ "▁se s",
+ "üh r",
+ "ü hr",
+ "▁S ince",
+ "▁Sin ce",
+ "▁ Since",
+ "De s",
+ "D es",
+ "ub e",
+ "u be",
+ "▁s ection",
+ "▁se ction",
+ "▁sec tion",
+ "▁sect ion",
+ "▁ section",
+ "▁g i",
+ "▁ gi",
+ "fo rd",
+ "for d",
+ "f ord",
+ "▁A ss",
+ "▁As s",
+ "▁ Ass",
+ "ain er",
+ "ai ner",
+ "aine r",
+ "a iner",
+ "tt p",
+ "t tp",
+ "▁be hav",
+ "▁beh av",
+ "port s",
+ "por ts",
+ "dr aw",
+ "dra w",
+ "d raw",
+ "Th is",
+ "T his",
+ "ran ch",
+ "r anch",
+ "in ding",
+ "ind ing",
+ "indi ng",
+ "▁e stab",
+ "▁est ab",
+ "▁es tab",
+ "▁esta b",
+ "▁ob tain",
+ "▁obt ain",
+ "ri ch",
+ "ric h",
+ "r ich",
+ "li cit",
+ "lic it",
+ "е в",
+ "▁qu al",
+ "▁q ual",
+ "▁ qual",
+ "▁z a",
+ "▁ za",
+ "▁h ar",
+ "▁ha r",
+ "▁ har",
+ "▁f ac",
+ "▁fa c",
+ "▁ fac",
+ "aa r",
+ "a ar",
+ "je t",
+ "j et",
+ "ic les",
+ "icle s",
+ "i cles",
+ "▁A us",
+ "▁Au s",
+ "▁ Aus",
+ "▁h or",
+ "▁ho r",
+ "▁ hor",
+ "▁re mov",
+ "▁rem ov",
+ "▁w ie",
+ "▁ wie",
+ "Cl ient",
+ "C lient",
+ "▁n atur",
+ "▁nat ur",
+ "hi p",
+ "h ip",
+ "Su b",
+ "S ub",
+ "▁r andom",
+ "▁ran dom",
+ "▁rand om",
+ "▁ random",
+ "D F",
+ "▁a rea",
+ "▁are a",
+ "▁ar ea",
+ "▁ area",
+ "ta g",
+ "t ag",
+ "P r",
+ "▁I tal",
+ "▁It al",
+ "▁ Ital",
+ "▁r oku",
+ "▁ro ku",
+ "▁rok u",
+ "no follow",
+ "nof ollow",
+ "* }",
+ "▁o thers",
+ "▁other s",
+ "▁l imit",
+ "▁li mit",
+ "▁lim it",
+ "▁ limit",
+ "▁s il",
+ "▁si l",
+ "▁ sil",
+ "▁s av",
+ "▁sa v",
+ "▁o ften",
+ "▁of ten",
+ "▁oft en",
+ "▁re nder",
+ "▁r ender",
+ "▁ren der",
+ "▁rend er",
+ "▁rende r",
+ "▁ render",
+ "D B",
+ "▁M c",
+ "▁ Mc",
+ "▁z ijn",
+ "▁zij n",
+ "же н",
+ "ж ен",
+ "▁t ag",
+ "▁ta g",
+ "▁ tag",
+ "min g",
+ "mi ng",
+ "m ing",
+ "li chen",
+ "lic hen",
+ "lich en",
+ "liche n",
+ "l ichen",
+ "pa ck",
+ "p ack",
+ "▁A g",
+ "▁ Ag",
+ "▁s ense",
+ "▁sens e",
+ "▁sen se",
+ "p g",
+ "Met hod",
+ "M ethod",
+ "ag ed",
+ "age d",
+ "a ged",
+ "á g",
+ "ł a",
+ "▁inter est",
+ "▁inte rest",
+ "▁as soci",
+ "▁ass oci",
+ "▁ associ",
+ "vol ution",
+ "▁em pty",
+ "▁emp ty",
+ "▁ empty",
+ "ic he",
+ "ich e",
+ "i che",
+ "▁g ro",
+ "▁gr o",
+ "▁ gro",
+ "▁t ypes",
+ "▁type s",
+ "▁typ es",
+ "▁ty pes",
+ "▁ types",
+ "▁S ie",
+ "▁Si e",
+ "In ter",
+ "Int er",
+ "▁n oreferrer",
+ "▁ noreferrer",
+ "▁g ives",
+ "▁giv es",
+ "▁give s",
+ "▁gi ves",
+ "ha l",
+ "h al",
+ "▁s ave",
+ "▁sa ve",
+ "▁sav e",
+ "▁ save",
+ "▁f ont",
+ "▁fo nt",
+ "▁fon t",
+ "▁ font",
+ "ru ction",
+ "ruct ion",
+ "S cript",
+ "▁a lla",
+ "▁al la",
+ "▁all a",
+ "▁ alla",
+ "▁s ays",
+ "▁sa ys",
+ "▁say s",
+ "▁f u",
+ "▁ fu",
+ "ap e",
+ "a pe",
+ "▁l anguage",
+ "▁ language",
+ "ig er",
+ "ige r",
+ "i ger",
+ "▁K ing",
+ "▁Ki ng",
+ "▁Kin g",
+ "bo r",
+ "b or",
+ "u v",
+ "▁s hall",
+ "▁sh all",
+ "▁E urope",
+ "▁Europ e",
+ "▁Euro pe",
+ "▁Eur ope",
+ "▁ Europe",
+ "▁ein em",
+ "▁eine m",
+ "▁w ater",
+ "▁wa ter",
+ "▁wat er",
+ "▁ water",
+ "▁g overn",
+ "▁go vern",
+ "▁gover n",
+ "an z",
+ "at ors",
+ "ator s",
+ "ato rs",
+ "▁mon th",
+ "▁mo nth",
+ "▁mont h",
+ "▁ month",
+ "y e",
+ "▁import ant",
+ "▁ important",
+ "at z",
+ "a tz",
+ "fir st",
+ "f irst",
+ "▁Tr ans",
+ "▁Tra ns",
+ "▁ Trans",
+ "▁M ad",
+ "▁Ma d",
+ "▁ Mad",
+ "▁b ra",
+ "▁br a",
+ "▁ bra",
+ "ik a",
+ "i ka",
+ "▁S aint",
+ "▁Sa int",
+ "▁Sain t",
+ "▁ Saint",
+ "or ia",
+ "ori a",
+ "o ria",
+ "kr e",
+ "k re",
+ "em ents",
+ "ement s",
+ "emen ts",
+ "e ments",
+ "▁B en",
+ "▁Be n",
+ "▁ Ben",
+ "la v",
+ "l av",
+ "▁ad min",
+ "▁adm in",
+ "▁ admin",
+ "▁H en",
+ "▁He n",
+ "▁ Hen",
+ "ri l",
+ "r il",
+ "▁S m",
+ "▁ Sm",
+ "ca t",
+ "c at",
+ "▁Re fer",
+ "▁Ref er",
+ "▁ Ш",
+ "▁p ract",
+ "▁pr act",
+ "▁pra ct",
+ "▁prac t",
+ "▁P at",
+ "▁Pa t",
+ "▁ Pat",
+ "▁G re",
+ "▁Gr e",
+ "▁ Gre",
+ "▁you ng",
+ "▁yo ung",
+ "▁In ter",
+ "▁Int er",
+ "▁ Inter",
+ "om a",
+ "o ma",
+ "te ger",
+ "ib ility",
+ "ibil ity",
+ "▁param eters",
+ "▁parameter s",
+ "▁paramet ers",
+ "▁ parameters",
+ "▁every thing",
+ "da t",
+ "d at",
+ "ur op",
+ "uro p",
+ "u rop",
+ "ole an",
+ "o lean",
+ "▁return ed",
+ "▁C lass",
+ "▁Cl ass",
+ "▁Cla ss",
+ "▁ Class",
+ "ac y",
+ "a cy",
+ "## ##",
+ "▁p ř",
+ "▁f older",
+ "▁fol der",
+ "▁fo lder",
+ "▁ folder",
+ "▁k on",
+ "▁ko n",
+ "▁ kon",
+ "▁gu ess",
+ "g t",
+ "je n",
+ "j en",
+ "an nel",
+ "ann el",
+ "anne l",
+ "ic on",
+ "ico n",
+ "i con",
+ "▁c omb",
+ "▁com b",
+ "▁co mb",
+ "▁ comb",
+ "ri ct",
+ "ric t",
+ "r ict",
+ "▁h ij",
+ "▁hi j",
+ "▁aut hor",
+ "▁auth or",
+ "▁ author",
+ "se e",
+ "s ee",
+ "he re",
+ "her e",
+ "h ere",
+ "st ra",
+ "str a",
+ "s tra",
+ "▁ent ire",
+ "▁direct ly",
+ "ra ft",
+ "raf t",
+ "r aft",
+ "he et",
+ "es ter",
+ "est er",
+ "este r",
+ "e ster",
+ "▁м и",
+ "▁ ми",
+ "▁m ass",
+ "▁ma ss",
+ "▁mas s",
+ "▁ mass",
+ "un tu",
+ "unt u",
+ "▁u sers",
+ "▁us ers",
+ "▁use rs",
+ "▁user s",
+ "▁ users",
+ "ch i",
+ "c hi",
+ "P E",
+ "▁com ponent",
+ "▁compon ent",
+ "▁ component",
+ "Cl ick",
+ "C lick",
+ "At t",
+ "A tt",
+ "▁s obre",
+ "▁so bre",
+ "▁sob re",
+ "an ds",
+ "and s",
+ "▁H ol",
+ "▁Ho l",
+ "▁ Hol",
+ "▁S ant",
+ "▁San t",
+ "▁Sa nt",
+ "or i",
+ "o ri",
+ "▁s ua",
+ "▁su a",
+ "st d",
+ "s td",
+ "ent ic",
+ "enti c",
+ "C C",
+ "▁fil ter",
+ "▁ filter",
+ "S QL",
+ "▁G od",
+ "▁Go d",
+ "A t",
+ "▁м у",
+ "▁ му",
+ "▁per formance",
+ "▁perform ance",
+ "del ta",
+ "d elta",
+ "an de",
+ "and e",
+ "a nde",
+ "am er",
+ "ame r",
+ "a mer",
+ "д ы",
+ "▁c ult",
+ "▁cu lt",
+ "▁cul t",
+ "▁N or",
+ "▁No r",
+ "bu t",
+ "b ut",
+ "▁l ik",
+ "▁li k",
+ "▁ lik",
+ "**** ****",
+ "ст вен",
+ "ств ен",
+ "стве н",
+ "▁com me",
+ "▁comm e",
+ "▁d r",
+ "▁ dr",
+ "im er",
+ "ime r",
+ "i mer",
+ "or din",
+ "ord in",
+ "▁cond ition",
+ "▁ condition",
+ "es te",
+ "est e",
+ "e ste",
+ "( [",
+ "F F",
+ "ть ся",
+ "im o",
+ "i mo",
+ "ra b",
+ "r ab",
+ "і ль",
+ "▁h alf",
+ "▁hal f",
+ "▁ half",
+ "ea ch",
+ "e ach",
+ "Di s",
+ "D is",
+ "▁r ows",
+ "▁ro ws",
+ "▁row s",
+ "▁ rows",
+ "▁h on",
+ "▁ho n",
+ "▁ hon",
+ "▁t ogether",
+ "▁tog ether",
+ "▁ și",
+ "me di",
+ "med i",
+ "m edi",
+ "ag n",
+ "a gn",
+ "al led",
+ "all ed",
+ "alle d",
+ "▁v ill",
+ "▁vi ll",
+ "▁vil l",
+ "IN G",
+ "I NG",
+ "id den",
+ "idd en",
+ "▁d raw",
+ "▁dr aw",
+ "▁dra w",
+ "▁ draw",
+ "yn tax",
+ "ynt ax",
+ "▁att empt",
+ "UR L",
+ "U RL",
+ "pos e",
+ "po se",
+ "p ose",
+ "▁in dic",
+ "▁ind ic",
+ "ни ка",
+ "ник а",
+ "▁Eng lish",
+ "▁ English",
+ "▁d éc",
+ "▁dé c",
+ "▁ne eds",
+ "▁need s",
+ "▁n ormal",
+ "▁nor mal",
+ "▁norm al",
+ "▁ normal",
+ "ur t",
+ "u rt",
+ "▁н о",
+ "▁ но",
+ "}} \\",
+ "} }\\",
+ "la st",
+ "las t",
+ "l ast",
+ "▁F in",
+ "▁ Fin",
+ "▁F ebru",
+ "▁Fe bru",
+ "▁Feb ru",
+ "il a",
+ "i la",
+ "▁c ountry",
+ "▁count ry",
+ "▁coun try",
+ "▁ country",
+ "▁field s",
+ "▁fiel ds",
+ "▁ fields",
+ "▁m ax",
+ "▁ma x",
+ "▁ max",
+ "lé s",
+ "l és",
+ "ow ie",
+ "owi e",
+ "o wie",
+ "▁de ux",
+ "▁bu ilt",
+ "▁ built",
+ "▁M ain",
+ "▁Ma in",
+ "▁Mai n",
+ "▁ Main",
+ "▁c amp",
+ "▁cam p",
+ "▁ca mp",
+ "▁ camp",
+ "iv o",
+ "i vo",
+ "iv a",
+ "i va",
+ "ic y",
+ "i cy",
+ "zi one",
+ "z ione",
+ "No de",
+ "N ode",
+ "▁: )",
+ "▁ :)",
+ "▁am ong",
+ "▁O b",
+ "▁ Ob",
+ "▁c ases",
+ "▁case s",
+ "▁cas es",
+ "▁ cases",
+ "ha ps",
+ "h aps",
+ "se rs",
+ "ser s",
+ "s ers",
+ "ar ter",
+ "art er",
+ "arte r",
+ "śc i",
+ "ś ci",
+ "▁it er",
+ "▁i ter",
+ "▁ iter",
+ "▁n amed",
+ "▁name d",
+ "▁na med",
+ "▁nam ed",
+ "▁ named",
+ "ex ec",
+ "exe c",
+ "▁se ason",
+ "▁sea son",
+ "▁ season",
+ "to t",
+ "t ot",
+ "= >",
+ "gr aph",
+ "gra ph",
+ "g raph",
+ "▁n il",
+ "▁ni l",
+ "▁ nil",
+ "ac ional",
+ "acion al",
+ "aci onal",
+ "▁N ULL",
+ "▁ NULL",
+ "▁spe cial",
+ "▁spec ial",
+ "▁ special",
+ "ст е",
+ "с те",
+ "cs s",
+ "c ss",
+ "▁\\ (",
+ "v s",
+ "ae l",
+ "a el",
+ "▁c ity",
+ "▁ci ty",
+ "▁cit y",
+ "▁ city",
+ "ov a",
+ "o va",
+ "▁art icle",
+ "▁ article",
+ "▁S outh",
+ "▁So uth",
+ "▁Sou th",
+ "Act ion",
+ "Ac tion",
+ "A ction",
+ "ç a",
+ "sp ring",
+ "spr ing",
+ "s pring",
+ "it ude",
+ "itu de",
+ "itud e",
+ "▁com plex",
+ "▁comp lex",
+ "▁comple x",
+ "▁compl ex",
+ "▁ complex",
+ "▁ч то",
+ "bu ild",
+ "g amma",
+ "▁E nt",
+ "▁En t",
+ "▁ Ent",
+ "ie rs",
+ "ier s",
+ "i ers",
+ "' .",
+ "ca r",
+ "c ar",
+ "ap ache",
+ "apa che",
+ "in gen",
+ "ing en",
+ "inge n",
+ "In put",
+ ": ",
+ "▁d ynam",
+ "▁dy nam",
+ "al ls",
+ "all s",
+ "sh ow",
+ "s how",
+ "| \\",
+ "▁w ird",
+ "▁wir d",
+ "B ar",
+ "al th",
+ "alt h",
+ "mod el",
+ "mo del",
+ "mode l",
+ "m odel",
+ "Tr ans",
+ "Tra ns",
+ "Ro w",
+ "R ow",
+ "ab e",
+ "a be",
+ "▁l ib",
+ "▁li b",
+ "▁ lib",
+ "nu ll",
+ "n ull",
+ "ra gment",
+ "rag ment",
+ "▁St ate",
+ "▁Stat e",
+ "▁Sta te",
+ "▁ State",
+ "▁l aw",
+ "▁la w",
+ "▁ law",
+ "Fr ame",
+ "F rame",
+ "▁L o",
+ "▁ Lo",
+ "ge b",
+ "g eb",
+ "}$ .",
+ "} $.",
+ "▁ne eded",
+ "▁need ed",
+ "▁con tr",
+ "▁cont r",
+ "▁ contr",
+ "ar ies",
+ "ari es",
+ "arie s",
+ "a ries",
+ "▁s creen",
+ "▁sc reen",
+ "▁scr een",
+ "▁ screen",
+ "y r",
+ "m m",
+ "▁sh own",
+ "▁show n",
+ "▁sho wn",
+ "▁b ad",
+ "▁ba d",
+ "▁ bad",
+ "▁c ast",
+ "▁cas t",
+ "▁ca st",
+ "▁ cast",
+ "▁T est",
+ "▁Te st",
+ "▁ Test",
+ "▁A uf",
+ "▁Au f",
+ "▁qu ant",
+ "▁quan t",
+ "▁ quant",
+ "ig a",
+ "i ga",
+ "▁re n",
+ "▁r en",
+ "▁ ren",
+ "▁M ac",
+ "▁Ma c",
+ "▁ Mac",
+ "▁trans form",
+ "▁ transform",
+ "▁d ifference",
+ "▁dif ference",
+ "▁differ ence",
+ "▁t it",
+ "▁ti t",
+ "▁ tit",
+ "T E",
+ "▁st ep",
+ "▁ste p",
+ "▁ step",
+ "▁c apt",
+ "▁cap t",
+ "▁ca pt",
+ "▁ capt",
+ "▁col lection",
+ "▁coll ection",
+ "▁collect ion",
+ "▁colle ction",
+ "▁ collection",
+ "iction ary",
+ "▁T om",
+ "▁To m",
+ "▁ Tom",
+ "ri er",
+ "rie r",
+ "r ier",
+ "▁m ove",
+ "▁mov e",
+ "▁mo ve",
+ "▁ move",
+ "co pe",
+ "cop e",
+ "c ope",
+ "or ds",
+ "ord s",
+ "▁fur ther",
+ "▁column s",
+ "▁ columns",
+ "▁L in",
+ "▁Li n",
+ "▁ Lin",
+ "▁f ixed",
+ "▁fix ed",
+ "▁ fixed",
+ "▁child ren",
+ "▁ children",
+ "M S",
+ "m o",
+ "un a",
+ "u na",
+ "▁ind ivid",
+ "tt y",
+ "t ty",
+ "as te",
+ "ast e",
+ "a ste",
+ "sr c",
+ "s rc",
+ "mat ch",
+ "m atch",
+ "w i",
+ "▁ х",
+ "▁д и",
+ "▁ ди",
+ "▁o rd",
+ "▁or d",
+ "▁ ord",
+ "iv ing",
+ "ivi ng",
+ "i ving",
+ "▁B ro",
+ "▁Br o",
+ "▁ Bro",
+ "▁al most",
+ "▁P res",
+ "▁Pr es",
+ "▁Pre s",
+ "▁ Pres",
+ "re ci",
+ "rec i",
+ "ar ing",
+ "ari ng",
+ "arin g",
+ "a ring",
+ "▁/ //",
+ "▁// /",
+ "▁ ///",
+ "ет ся",
+ "е тся",
+ "▁s ig",
+ "▁si g",
+ "▁ sig",
+ "lig ht",
+ "l ight",
+ "▁R ed",
+ "▁Re d",
+ "▁ Red",
+ "▁sugg est",
+ "▁sug gest",
+ "ol f",
+ "▁é té",
+ "▁ét é",
+ "▁ été",
+ "is ation",
+ "isa tion",
+ "isat ion",
+ "з на",
+ "Ne w",
+ "N ew",
+ "ст ан",
+ "ста н",
+ "с тан",
+ "L A",
+ "un icip",
+ "unic ip",
+ "uni cip",
+ "▁fig ure",
+ "▁figur e",
+ "▁ figure",
+ "m t",
+ "ia le",
+ "ial e",
+ "i ale",
+ "▁c atch",
+ "▁cat ch",
+ "▁ catch",
+ "de fault",
+ "def ault",
+ "▁t ele",
+ "▁te le",
+ "▁tel e",
+ "▁ tele",
+ "▁m atter",
+ "▁mat ter",
+ "ca st",
+ "cas t",
+ "c ast",
+ "▁R ich",
+ "▁Ric h",
+ "▁Ri ch",
+ "▁ Rich",
+ "▁hand le",
+ "▁ handle",
+ "val u",
+ "va lu",
+ "v alu",
+ "$ -",
+ "о б",
+ "▁j son",
+ "▁js on",
+ "▁ json",
+ "Cre ate",
+ "C reate",
+ "▁ex am",
+ "ал ь",
+ "а ль",
+ "ю т",
+ "or ed",
+ "ore d",
+ "o red",
+ "id os",
+ "ido s",
+ "ap pend",
+ "app end",
+ "appen d",
+ "appe nd",
+ "▁Ar ray",
+ "▁Arr ay",
+ "▁ Array",
+ "к с",
+ "} [",
+ "ri ve",
+ "riv e",
+ "r ive",
+ "▁c lub",
+ "▁cl ub",
+ "▁ club",
+ "ma nn",
+ "man n",
+ "m ann",
+ "▁e ste",
+ "▁est e",
+ "▁es te",
+ "▁ este",
+ "es ta",
+ "est a",
+ "e sta",
+ "▁G i",
+ "▁ Gi",
+ "▁J ap",
+ "▁Ja p",
+ "▁N ame",
+ "▁Na me",
+ "▁Nam e",
+ "▁ Name",
+ "Col umn",
+ "ou ps",
+ "oup s",
+ "o ups",
+ "is mo",
+ "ism o",
+ "▁C ity",
+ "▁Ci ty",
+ "▁Cit y",
+ "▁ City",
+ "▁class es",
+ "▁classe s",
+ "▁ classes",
+ "▁in fl",
+ "▁inf l",
+ "▁ infl",
+ "h l",
+ "ро м",
+ "р ом",
+ "▁ad ding",
+ "▁add ing",
+ "▁ adding",
+ "▁f ail",
+ "▁fa il",
+ "▁ fail",
+ "x x",
+ "õ es",
+ "S c",
+ "ut il",
+ "uti l",
+ "u til",
+ "▁l ocation",
+ "▁lo cation",
+ "▁loc ation",
+ "▁ location",
+ "le ge",
+ "leg e",
+ "l ege",
+ "ag o",
+ "a go",
+ "▁pro perties",
+ "▁proper ties",
+ "▁ properties",
+ "ab il",
+ "abi l",
+ "a bil",
+ "va s",
+ "v as",
+ "}$ ,",
+ "} $,",
+ "it ted",
+ "itt ed",
+ "itte d",
+ "ó d",
+ "▁D em",
+ "▁De m",
+ "▁as ked",
+ "▁ask ed",
+ "▁t ab",
+ "▁ta b",
+ "▁ tab",
+ "S ource",
+ "▁error s",
+ "▁err ors",
+ "▁ errors",
+ "ograph ie",
+ "▁ж и",
+ "▁ жи",
+ "▁m al",
+ "▁ma l",
+ "▁ mal",
+ "st ract",
+ "str act",
+ "stra ct",
+ "▁d ro",
+ "▁dr o",
+ "▁ dro",
+ "ra k",
+ "r ak",
+ "▁n ote",
+ "▁not e",
+ "▁no te",
+ "▁ note",
+ "▁set ting",
+ "▁sett ing",
+ "▁ setting",
+ "▁f em",
+ "▁fe m",
+ "▁s aw",
+ "▁sa w",
+ "ia r",
+ "i ar",
+ "HE R",
+ "H ER",
+ "е с",
+ "▁p red",
+ "▁pr ed",
+ "▁pre d",
+ "▁ pred",
+ "▁O ut",
+ "▁ Out",
+ "▁it ems",
+ "▁item s",
+ "▁ items",
+ "ла н",
+ "л ан",
+ "▁w erd",
+ "▁we rd",
+ "▁wer d",
+ "ers ion",
+ "li a",
+ "l ia",
+ "▁s in",
+ "▁si n",
+ "▁ sin",
+ "ich te",
+ "icht e",
+ "i chte",
+ "▁fe el",
+ "▁fee l",
+ "▁п ра",
+ "▁пр а",
+ "▁ пра",
+ "▁o der",
+ "▁od er",
+ "▁ oder",
+ "U E",
+ "oc ument",
+ "▁m ode",
+ "▁mod e",
+ "▁mo de",
+ "▁ mode",
+ "▁N a",
+ "▁ Na",
+ "де н",
+ "д ен",
+ "me s",
+ "m es",
+ "frame work",
+ "▁a uto",
+ "▁au to",
+ "▁aut o",
+ "▁ auto",
+ "ны м",
+ "н ым",
+ "ub y",
+ "u by",
+ "▁tem plate",
+ "▁temp late",
+ "▁ template",
+ "▁m ess",
+ "▁me ss",
+ "▁mes s",
+ "▁ mess",
+ "ie der",
+ "ied er",
+ "i eder",
+ "▁rel ated",
+ "▁rela ted",
+ "▁relate d",
+ "▁ related",
+ "ok en",
+ "oke n",
+ "o ken",
+ "▁follow s",
+ "se arch",
+ "s earch",
+ "am i",
+ "a mi",
+ "▁w ait",
+ "▁wa it",
+ "▁ wait",
+ "ig r",
+ "i gr",
+ "▁l ow",
+ "▁lo w",
+ "▁ low",
+ "ски х",
+ "ск их",
+ "с ких",
+ "ска я",
+ "с кая",
+ "▁M ark",
+ "▁Mar k",
+ "▁ Mark",
+ "▁i ll",
+ "▁il l",
+ "▁ ill",
+ "am ento",
+ "ament o",
+ "amen to",
+ "\\ <",
+ "▁d f",
+ "▁ df",
+ "os ition",
+ "osi tion",
+ "▁В и",
+ "is f",
+ "i sf",
+ "▁De utsch",
+ "ah l",
+ "a hl",
+ "wa r",
+ "w ar",
+ "it ect",
+ "ite ct",
+ "▁s al",
+ "▁sa l",
+ "▁ sal",
+ "el en",
+ "ele n",
+ "e len",
+ "By Id",
+ "▁g ru",
+ "▁gr u",
+ "▁ gru",
+ "s v",
+ "▁pass ed",
+ "▁pas sed",
+ "▁passe d",
+ "▁a ñ",
+ "▁ añ",
+ "Sc h",
+ "S ch",
+ "▁sol ve",
+ "we ise",
+ "weis e",
+ "wei se",
+ "at os",
+ "ato s",
+ "▁m eg",
+ "▁me g",
+ "▁m ember",
+ "▁mem ber",
+ "▁memb er",
+ "▁ member",
+ "er name",
+ "ern ame",
+ "erna me",
+ "▁con nect",
+ "▁conne ct",
+ "▁conn ect",
+ "▁ connect",
+ "ip s",
+ "i ps",
+ "▁r ound",
+ "▁ro und",
+ "▁rou nd",
+ "▁ round",
+ "▁ ]",
+ "ne s",
+ "n es",
+ "▁d ir",
+ "▁di r",
+ "▁ dir",
+ "▁Lond on",
+ "d y",
+ "F A",
+ "▁rece ived",
+ "▁receive d",
+ "re et",
+ "ree t",
+ "▁L og",
+ "▁Lo g",
+ "▁ Log",
+ "▁Sch ool",
+ "an go",
+ "ang o",
+ "▁The se",
+ "▁Th ese",
+ "▁M ont",
+ "▁Mon t",
+ "▁Mo nt",
+ "▁ Mont",
+ "▁e ner",
+ "▁en er",
+ "▁ ener",
+ "la d",
+ "l ad",
+ "▁def ine",
+ "▁defin e",
+ "▁ define",
+ "si gn",
+ "sig n",
+ "s ign",
+ "▁c le",
+ "▁cl e",
+ "▁ cle",
+ "fig ure",
+ "▁V iew",
+ "▁Vi ew",
+ "▁Vie w",
+ "▁ View",
+ "text bf",
+ "$ \\",
+ "з ы",
+ "num ber",
+ "n umber",
+ "▁d in",
+ "▁di n",
+ "▁ din",
+ "el ler",
+ "ell er",
+ "elle r",
+ "orith m",
+ "ori thm",
+ "fal se",
+ "f alse",
+ "fo l",
+ "f ol",
+ "ffic ient",
+ "▁HT ML",
+ "▁ HTML",
+ "li che",
+ "lic he",
+ "lich e",
+ "l iche",
+ "▁M o",
+ "▁ Mo",
+ "▁int rodu",
+ "▁intr odu",
+ "▁intro du",
+ "ex p",
+ "e xp",
+ "▁st rong",
+ "▁str ong",
+ "▁stro ng",
+ "▁ strong",
+ "▁t hus",
+ "▁th us",
+ "/ )",
+ "▁e le",
+ "▁el e",
+ "▁ ele",
+ "▁та к",
+ "▁ так",
+ "▁п а",
+ "▁ па",
+ "▁d ont",
+ "▁do nt",
+ "▁don t",
+ "▁c ause",
+ "▁caus e",
+ "▁ca use",
+ "Num ber",
+ "N umber",
+ "▁im ages",
+ "▁image s",
+ "▁imag es",
+ "▁ images",
+ "▁s ample",
+ "▁sam ple",
+ "▁ sample",
+ "▁s ci",
+ "▁sc i",
+ "▁ sci",
+ "li ke",
+ "lik e",
+ "l ike",
+ "▁L ou",
+ "▁Lo u",
+ "▁ Lou",
+ "di v",
+ "d iv",
+ "an c",
+ "a nc",
+ "▁f ront",
+ "▁fr ont",
+ "▁fro nt",
+ "▁ front",
+ "ne n",
+ "n en",
+ "▁miss ing",
+ "▁mis sing",
+ "▁ missing",
+ "ar ia",
+ "ari a",
+ "a ria",
+ "pr es",
+ "pre s",
+ "p res",
+ "▁п ред",
+ "▁пре д",
+ "D I",
+ "fil ter",
+ "▁M it",
+ "▁Mi t",
+ "U R",
+ "▁o pp",
+ "▁op p",
+ "▁ opp",
+ "▁s ql",
+ "▁sq l",
+ "▁ sql",
+ "▁ро ку",
+ "er en",
+ "ere n",
+ "e ren",
+ "em at",
+ "ema t",
+ "e mat",
+ "í s",
+ "▁Je an",
+ "▁ Jean",
+ "é c",
+ "▁c i",
+ "▁ ci",
+ "en ne",
+ "enn e",
+ "at form",
+ "▁t aken",
+ "▁tak en",
+ "▁take n",
+ "▁ta ken",
+ "▁O f",
+ "▁ Of",
+ "▁на се",
+ "▁e rr",
+ "▁er r",
+ "▁ err",
+ "O P",
+ "Fr om",
+ "F rom",
+ "De fault",
+ "Def ault",
+ "▁Gener al",
+ "▁Gen eral",
+ "▁Gene ral",
+ "▁ General",
+ "wik i",
+ "wi ki",
+ "w iki",
+ "▁g rand",
+ "▁gr and",
+ "▁gra nd",
+ "▁gran d",
+ "▁ grand",
+ "▁e inen",
+ "▁ein en",
+ "▁eine n",
+ "Re g",
+ "R eg",
+ "Hand ler",
+ "Handle r",
+ "con om",
+ "co nom",
+ "cono m",
+ "c onom",
+ "an ger",
+ "ang er",
+ "ange r",
+ "▁бы л",
+ "▁L os",
+ "▁Lo s",
+ "▁ Los",
+ "▁ex pression",
+ "▁exp ression",
+ "▁express ion",
+ "▁expr ession",
+ "▁ expression",
+ "ш а",
+ "ya l",
+ "y al",
+ "▁$ ('",
+ "▁$( '",
+ "▁sw itch",
+ "▁ switch",
+ "▁v ector",
+ "▁ve ctor",
+ "▁vec tor",
+ "▁ vector",
+ "▁T hom",
+ "▁Th om",
+ "▁v irt",
+ "▁vi rt",
+ "▁vir t",
+ "▁ virt",
+ "le ased",
+ "lease d",
+ "lea sed",
+ "▁c over",
+ "▁co ver",
+ "▁cov er",
+ "▁ cover",
+ "▁re sp",
+ "▁r esp",
+ "▁res p",
+ "▁ resp",
+ "ak o",
+ "a ko",
+ "ren ch",
+ "ot a",
+ "o ta",
+ "C ell",
+ "an ged",
+ "ang ed",
+ "ange d",
+ "▁+ =",
+ "▁ +=",
+ "la c",
+ "l ac",
+ "sk a",
+ "s ka",
+ "ne xt",
+ "nex t",
+ "n ext",
+ "▁Intern ational",
+ "▁W il",
+ "▁Wi l",
+ "▁ Wil",
+ "▁o nt",
+ "▁on t",
+ "▁ ont",
+ "ib r",
+ "i br",
+ "us tr",
+ "ust r",
+ "u str",
+ "▁b lack",
+ "▁bl ack",
+ "▁bla ck",
+ "▁ black",
+ "▁select ed",
+ "▁sel ected",
+ "▁sele cted",
+ "▁ selected",
+ "ch er",
+ "che r",
+ "c her",
+ "▁l iter",
+ "▁li ter",
+ "▁lit er",
+ "▁ liter",
+ "ro ot",
+ "r oot",
+ "л ся",
+ "▁L ife",
+ "▁Li fe",
+ "▁ Life",
+ "▁in sert",
+ "▁ins ert",
+ "▁inser t",
+ "▁inse rt",
+ "▁ insert",
+ "▁mat rix",
+ "▁ matrix",
+ "is es",
+ "ise s",
+ ") ]",
+ "▁p el",
+ "▁pe l",
+ "▁ pel",
+ "Over ride",
+ "ry pt",
+ "▁for mer",
+ "▁form er",
+ "▁forme r",
+ "▁ former",
+ "▁Fil m",
+ "▁N orth",
+ "▁Nor th",
+ "cl ient",
+ "cli ent",
+ "c lient",
+ "▁n ight",
+ "▁ night",
+ "хо ди",
+ "ход и",
+ "▁A ustral",
+ "▁Aust ral",
+ "▁ Austral",
+ "▁R et",
+ "▁Re t",
+ "▁ Ret",
+ "rh o",
+ "r ho",
+ "▁п ер",
+ "▁пе р",
+ "▁ пер",
+ "ip edia",
+ "ipe dia",
+ "▁ex press",
+ "▁exp ress",
+ "▁expr ess",
+ "▁expres s",
+ "▁ express",
+ "▁th ird",
+ "▁ third",
+ "▁ma jor",
+ "▁maj or",
+ "▁ major",
+ "▁g rad",
+ "▁gr ad",
+ "▁gra d",
+ "▁ grad",
+ "ow e",
+ "o we",
+ "▁bel ieve",
+ "our nal",
+ "ourn al",
+ "▁st atus",
+ "▁stat us",
+ "▁ status",
+ "un c",
+ "u nc",
+ "▁d ou",
+ "▁do u",
+ "▁J SON",
+ "▁JS ON",
+ "▁ JSON",
+ "ui s",
+ "u is",
+ "▁pop ulation",
+ "▁popula tion",
+ "▁popul ation",
+ "en z",
+ "▁Will iam",
+ "s f",
+ "▁O bject",
+ "▁Ob ject",
+ "▁ Object",
+ "▁c in",
+ "▁ci n",
+ "▁ cin",
+ "▁D i",
+ "▁ Di",
+ "cur ity",
+ "c urity",
+ "▁O pen",
+ "▁Op en",
+ "▁ Open",
+ "▁ ле",
+ "la r",
+ "l ar",
+ "ad ding",
+ "add ing",
+ "▁k om",
+ "▁ko m",
+ "▁ kom",
+ "}( \\",
+ "} (\\",
+ "▁k il",
+ "▁ki l",
+ "▁ kil",
+ "um er",
+ "ume r",
+ "u mer",
+ "\"/ >",
+ "\" />",
+ "▁fe ature",
+ "▁ feature",
+ "▁A re",
+ "▁Ar e",
+ "▁ Are",
+ "ck s",
+ "c ks",
+ "▁Intern et",
+ "▁Inter net",
+ "▁ Internet",
+ "▁i h",
+ "▁ ih",
+ "▁start ed",
+ "▁star ted",
+ "▁ear ly",
+ "▁be gan",
+ "▁beg an",
+ "T H",
+ "p ython",
+ "as p",
+ "a sp",
+ "▁F r",
+ "▁ Fr",
+ "▁c los",
+ "▁cl os",
+ "▁clo s",
+ "▁ clos",
+ "ist ic",
+ "isti c",
+ "▁mus ic",
+ "▁ music",
+ "▁d ig",
+ "▁di g",
+ "▁ dig",
+ "▁it al",
+ "▁i tal",
+ "▁ ital",
+ "▁D avid",
+ "▁Dav id",
+ "▁Da vid",
+ "▁ David",
+ "▁web site",
+ "▁ website",
+ "▁cont roller",
+ "▁control ler",
+ "▁ controller",
+ "▁M er",
+ "▁Me r",
+ "▁ Mer",
+ "con text",
+ "cont ext",
+ "pro duct",
+ "produ ct",
+ "prod uct",
+ "os p",
+ "o sp",
+ "▁j un",
+ "▁ju n",
+ "ro wn",
+ "row n",
+ "r own",
+ "▁A z",
+ "▁ Az",
+ "\": \"",
+ "\" :\"",
+ "▁a an",
+ "▁aa n",
+ "▁D ate",
+ "▁Da te",
+ "▁Dat e",
+ "▁ Date",
+ "mu lt",
+ "mul t",
+ "m ult",
+ "▁b rowser",
+ "▁brow ser",
+ "▁ browser",
+ "ре д",
+ "wh ich",
+ "R A",
+ "qu are",
+ "qua re",
+ "▁R uss",
+ "▁Ru ss",
+ "▁Rus s",
+ "▁ Russ",
+ "▁s oon",
+ "▁so on",
+ "▁P re",
+ "▁Pr e",
+ "▁ Pre",
+ "ta u",
+ "t au",
+ "▁we ek",
+ "▁ week",
+ "▁б а",
+ "▁ ба",
+ "▁o ct",
+ "▁oc t",
+ "▁ oct",
+ "▁t own",
+ "▁to wn",
+ "▁ town",
+ "ro y",
+ "r oy",
+ "▁e ls",
+ "▁el s",
+ "▁ els",
+ "bl ic",
+ "b lic",
+ "und le",
+ "▁H istor",
+ "▁His tor",
+ "▁Hi stor",
+ "▁Hist or",
+ "▁f oi",
+ "▁fo i",
+ "▁mod els",
+ "▁model s",
+ "▁mode ls",
+ "▁ models",
+ "з о",
+ "on ym",
+ "ony m",
+ "o nym",
+ "Par am",
+ "Pa ram",
+ "P aram",
+ "▁M et",
+ "▁Me t",
+ "▁ Met",
+ "ge ner",
+ "gen er",
+ "g ener",
+ "j ą",
+ "▁e spe",
+ "▁es pe",
+ "▁esp e",
+ "C E",
+ "▁de vice",
+ "▁dev ice",
+ "▁devi ce",
+ "▁ device",
+ "el low",
+ "ell ow",
+ "ello w",
+ "▁de bug",
+ "▁deb ug",
+ "▁ debug",
+ "ér ie",
+ "éri e",
+ "é rie",
+ "us ing",
+ "u sing",
+ "ан г",
+ "а нг",
+ "▁* )",
+ "▁ *)",
+ "ud i",
+ "u di",
+ "▁M iss",
+ "▁Mi ss",
+ "▁Mis s",
+ "▁ Miss",
+ "ко м",
+ "к ом",
+ "pos ed",
+ "po sed",
+ "pose d",
+ "p osed",
+ "▁z we",
+ "▁zw e",
+ "і н",
+ "▁Ro bert",
+ "▁Rob ert",
+ "▁O ct",
+ "▁ Oct",
+ "lo p",
+ "l op",
+ "ja r",
+ "j ar",
+ "▁a ver",
+ "▁av er",
+ "▁ave r",
+ "▁ aver",
+ "▁ha bit",
+ "▁hab it",
+ "▁: :",
+ "▁ ::",
+ "än g",
+ "ä ng",
+ "St art",
+ "Star t",
+ "▁p ow",
+ "▁po w",
+ "▁ pow",
+ "▁s rc",
+ "▁sr c",
+ "▁ src",
+ "▁pat tern",
+ "▁ pattern",
+ "▁ Э",
+ "▁b i",
+ "▁ bi",
+ "ot es",
+ "ote s",
+ "o tes",
+ "▁_ _",
+ "▁ __",
+ "▁s ens",
+ "▁se ns",
+ "▁sen s",
+ "▁ sens",
+ "▁a void",
+ "▁av oid",
+ "▁avo id",
+ "ex ample",
+ "ut t",
+ "u tt",
+ "La bel",
+ "Lab el",
+ "L abel",
+ "te x",
+ "t ex",
+ "bo ot",
+ "b oot",
+ "es to",
+ "est o",
+ "e sto",
+ "▁M arch",
+ "▁Mar ch",
+ "▁Marc h",
+ "▁e asy",
+ "▁eas y",
+ "ict ure",
+ "Gr oup",
+ "▁f ather",
+ "▁fa ther",
+ "▁fat her",
+ "▁ father",
+ "▁up dated",
+ "▁update d",
+ "▁upd ated",
+ "▁ updated",
+ "▁V o",
+ "▁I II",
+ "▁II I",
+ "▁ III",
+ "om ega",
+ "ome ga",
+ "▁a lle",
+ "▁al le",
+ "▁all e",
+ "▁ alle",
+ "Re c",
+ "R ec",
+ "y g",
+ "з е",
+ "▁D im",
+ "▁Di m",
+ "▁ Dim",
+ "ne ct",
+ "n ect",
+ "▁T or",
+ "▁To r",
+ "▁de utsch",
+ "▁ deutsch",
+ "▁wh ite",
+ "▁ white",
+ "▁n ational",
+ "▁nation al",
+ "▁nat ional",
+ "pp e",
+ "p pe",
+ "▁a ir",
+ "▁ai r",
+ "▁ air",
+ "▁pass word",
+ "▁ password",
+ "de t",
+ "d et",
+ "▁b ig",
+ "▁bi g",
+ "▁ big",
+ "▁U se",
+ "▁Us e",
+ "▁ Use",
+ "cal l",
+ "ca ll",
+ "c all",
+ "▁ex tra",
+ "▁ext ra",
+ "▁extr a",
+ "▁ extra",
+ "W e",
+ "an ia",
+ "ani a",
+ "a nia",
+ "▁h old",
+ "▁ho ld",
+ "▁hol d",
+ "▁ hold",
+ "Cont rol",
+ "▁C O",
+ "▁ CO",
+ "▁м і",
+ "▁ мі",
+ "it i",
+ "i ti",
+ "▁K e",
+ "▁ Ke",
+ "en u",
+ "e nu",
+ "▁P ark",
+ "▁Par k",
+ "то м",
+ "т ом",
+ "▁a uth",
+ "▁au th",
+ "▁aut h",
+ "▁ auth",
+ "▁c enter",
+ "▁cent er",
+ "▁ center",
+ "P h",
+ "то в",
+ "т ов",
+ "id ing",
+ "idi ng",
+ "i ding",
+ "▁a cross",
+ "▁ac ross",
+ "▁s ong",
+ "▁so ng",
+ "▁son g",
+ "▁ song",
+ "▁ph ys",
+ "▁ phys",
+ "▁n umer",
+ "▁num er",
+ "▁nu mer",
+ "▁ numer",
+ "щ а",
+ "▁A lex",
+ "▁Al ex",
+ "▁Ale x",
+ "▁ Alex",
+ "▁problem s",
+ "▁proble ms",
+ "▁probl ems",
+ "▁E rror",
+ "▁Er ror",
+ "▁Err or",
+ "▁ Error",
+ "form at",
+ "for mat",
+ "▁A cc",
+ "▁Ac c",
+ "▁ Acc",
+ "▁s ix",
+ "▁si x",
+ "▁ six",
+ "▁d b",
+ "▁ db",
+ "▁C ast",
+ "▁Cas t",
+ "▁Ca st",
+ "▁ Cast",
+ "om s",
+ "o ms",
+ "pro ject",
+ "proj ect",
+ "▁v ert",
+ "▁ver t",
+ "▁ve rt",
+ "▁ vert",
+ "cre t",
+ "cr et",
+ "c ret",
+ "▁he ader",
+ "▁head er",
+ "▁ header",
+ "▁st ream",
+ "▁stre am",
+ "▁ stream",
+ "id s",
+ "i ds",
+ "▁t or",
+ "▁to r",
+ "▁ tor",
+ "▁se pt",
+ "▁sep t",
+ "▁est im",
+ "▁es tim",
+ "▁de cl",
+ "▁dec l",
+ "▁ decl",
+ "▁g ave",
+ "▁ga ve",
+ "▁p layer",
+ "▁pl ayer",
+ "▁play er",
+ "▁pla yer",
+ "▁ player",
+ "ys is",
+ "▁д ру",
+ "▁др у",
+ "am m",
+ "a mm",
+ "щ о",
+ "▁( \"",
+ "▁ (\"",
+ "▁a x",
+ "▁ ax",
+ "Pro perty",
+ "us r",
+ "u sr",
+ "▁some one",
+ "▁im pro",
+ "▁imp ro",
+ "▁impr o",
+ "ad en",
+ "ade n",
+ "a den",
+ "ro te",
+ "rot e",
+ "r ote",
+ "▁М и",
+ "i h",
+ "++ )",
+ "+ +)",
+ "▁v ideo",
+ "▁vide o",
+ "▁ video",
+ "▁ex ists",
+ "▁exist s",
+ "▁ exists",
+ "к ла",
+ "▁comp lete",
+ "▁comple te",
+ "▁complet e",
+ "▁compl ete",
+ "▁ complete",
+ "▁s ession",
+ "▁sess ion",
+ "▁ session",
+ "▁const ant",
+ "▁ constant",
+ "ic os",
+ "ico s",
+ "i cos",
+ "▁p ack",
+ "▁pa ck",
+ "▁pac k",
+ "▁ pack",
+ "ro me",
+ "rom e",
+ "r ome",
+ "eg r",
+ "e gr",
+ "App lication",
+ "▁y es",
+ "▁ye s",
+ "▁ yes",
+ "▁e lle",
+ "▁el le",
+ "▁ell e",
+ "▁ elle",
+ "▁e mail",
+ "▁em ail",
+ "▁ email",
+ "or f",
+ "o rf",
+ "ca se",
+ "cas e",
+ "c ase",
+ "▁po inter",
+ "▁point er",
+ "▁ pointer",
+ "▁reg ard",
+ "se n",
+ "s en",
+ "st atus",
+ "stat us",
+ "▁m es",
+ "▁me s",
+ "▁ mes",
+ "▁d elle",
+ "▁de lle",
+ "▁del le",
+ "▁dell e",
+ "ing ton",
+ "ingt on",
+ "▁B as",
+ "▁Ba s",
+ "▁ Bas",
+ ") ^",
+ "de velop",
+ "▁for ce",
+ "▁ force",
+ "▁char acters",
+ "▁charact ers",
+ "▁character s",
+ "▁c ross",
+ "▁cr oss",
+ "▁cro ss",
+ "▁ cross",
+ "▁de ath",
+ "▁t akes",
+ "▁tak es",
+ "▁take s",
+ "▁ta kes",
+ "ér i",
+ "é ri",
+ "ig ne",
+ "ign e",
+ "че н",
+ "ч ен",
+ "U P",
+ ". :",
+ "Th read",
+ "j u",
+ "in y",
+ "i ny",
+ "▁det ails",
+ "▁detail s",
+ "▁ details",
+ "▁x ml",
+ "▁ xml",
+ "ta it",
+ "t ait",
+ "out put",
+ "mess age",
+ "m essage",
+ "' '",
+ "▁Brit ish",
+ "vi lle",
+ "vil le",
+ "v ille",
+ "▁D iv",
+ "▁Di v",
+ "▁ Div",
+ "▁U ser",
+ "▁Use r",
+ "▁Us er",
+ "▁ User",
+ "c m",
+ "ч но",
+ "col umn",
+ "eq ref",
+ "ó r",
+ "on om",
+ "ono m",
+ "o nom",
+ "▁P ost",
+ "▁Po st",
+ "▁Pos t",
+ "▁ Post",
+ "el len",
+ "ell en",
+ "elle n",
+ "A b",
+ "ul té",
+ "ult é",
+ "▁per fect",
+ "▁perf ect",
+ "() {",
+ "( ){",
+ "vis ion",
+ "v ision",
+ "act ive",
+ "activ e",
+ "li er",
+ "lie r",
+ "l ier",
+ "ri j",
+ "r ij",
+ "s d",
+ "▁k ö",
+ "▁ kö",
+ "▁n ie",
+ "▁ni e",
+ "▁ nie",
+ "▁re lig",
+ "▁rel ig",
+ "▁reli g",
+ "▁o t",
+ "▁ ot",
+ "▁m achine",
+ "▁mach ine",
+ "▁ machine",
+ "▁h eld",
+ "▁he ld",
+ "▁hel d",
+ ")$ .",
+ ") $.",
+ "==== ====",
+ "ck er",
+ "cke r",
+ "c ker",
+ "в ы",
+ "bo rn",
+ "bor n",
+ "b orn",
+ "▁p ast",
+ "▁pas t",
+ "▁pa st",
+ "ри я",
+ "▁D r",
+ "▁ Dr",
+ "▁reg ular",
+ "▁regul ar",
+ "▁ regular",
+ "▁prov ided",
+ "▁provide d",
+ "TE R",
+ "T ER",
+ "▁un ivers",
+ "▁ univers",
+ "▁g ets",
+ "▁get s",
+ "▁ge ts",
+ "▁ gets",
+ "▁n u",
+ "▁ nu",
+ "▁/ *",
+ "▁ /*",
+ "ob er",
+ "obe r",
+ "o ber",
+ "fi n",
+ "f in",
+ "▁n ella",
+ "▁ne lla",
+ "▁nel la",
+ "▁nell a",
+ "▁be come",
+ "▁bec ome",
+ "▁becom e",
+ "▁` `",
+ "▁ ``",
+ "▁h istory",
+ "▁histor y",
+ "▁hi story",
+ "▁hist ory",
+ "▁ history",
+ "▁S ol",
+ "▁So l",
+ "▁ Sol",
+ "▁R ad",
+ "▁Ra d",
+ "▁ Rad",
+ "▁term s",
+ "▁ter ms",
+ "▁even ts",
+ "▁event s",
+ "▁ev ents",
+ "▁ events",
+ "ly mp",
+ ")) )",
+ ") ))",
+ "ро ва",
+ "ров а",
+ "р ова",
+ "▁ab sol",
+ "▁abs ol",
+ "▁so ft",
+ "▁ soft",
+ "lin ks",
+ "link s",
+ "l inks",
+ "▁h ope",
+ "▁ho pe",
+ "▁hop e",
+ "▁su bject",
+ "▁sub ject",
+ "▁ subject",
+ "\") ,",
+ "\" ),",
+ "▁cre ating",
+ "▁} \r",
+ "▁ }\r",
+ "▁S k",
+ "▁ Sk",
+ "▁f low",
+ "▁fl ow",
+ "▁flo w",
+ "▁ flow",
+ "▁Р а",
+ "▁as sert",
+ "▁ass ert",
+ "▁asse rt",
+ "▁ assert",
+ "ze t",
+ "z et",
+ "▁F rank",
+ "▁Fran k",
+ "▁Fr ank",
+ "s a",
+ "▁dist ribution",
+ "▁distribu tion",
+ "▁distrib ution",
+ "▁ distribution",
+ "c u",
+ "ba nd",
+ "ban d",
+ "b and",
+ "iz z",
+ "i zz",
+ "▁j ob",
+ "▁jo b",
+ "▁ job",
+ "in er",
+ "ine r",
+ "i ner",
+ "st ruct",
+ "str uct",
+ "stru ct",
+ "á k",
+ "T O",
+ "au f",
+ "a uf",
+ "▁ext ends",
+ "▁extend s",
+ "▁G ra",
+ "▁Gr a",
+ "dis play",
+ "▁sign ific",
+ "on ey",
+ "one y",
+ "o ney",
+ "s ource",
+ "m icrosoft",
+ "in der",
+ "ind er",
+ "inde r",
+ "i nder",
+ "▁qu ick",
+ "▁qui ck",
+ "▁ quick",
+ "▁w onder",
+ "▁won der",
+ "▁wo nder",
+ "Inst ance",
+ "el les",
+ "ell es",
+ "elle s",
+ "e lles",
+ "è me",
+ "▁comp any",
+ "▁compan y",
+ "▁ company",
+ "u ß",
+ ". }",
+ "▁separ ate",
+ "U M",
+ "HER E",
+ "HE RE",
+ "H ERE",
+ "▁writ ing",
+ "▁wr iting",
+ "▁ writing",
+ "it ution",
+ "itu tion",
+ "itut ion",
+ "▁G esch",
+ "▁Ge sch",
+ "▁Ges ch",
+ "м я",
+ "▁J ames",
+ "▁Ja mes",
+ "▁Jam es",
+ "▁ James",
+ "▁D E",
+ "▁ DE",
+ "▁S pe",
+ "▁Sp e",
+ "▁ Spe",
+ "pro cess",
+ "proc ess",
+ "St r",
+ "S tr",
+ "▁s ym",
+ "▁sy m",
+ "▁ sym",
+ "▁a o",
+ "▁ ao",
+ "▁w y",
+ "▁ wy",
+ "▁any one",
+ "▁U p",
+ "▁ Up",
+ "use um",
+ "ar on",
+ "aro n",
+ "a ron",
+ "▁def inition",
+ "▁defin ition",
+ "▁definit ion",
+ "▁ definition",
+ "▁` $",
+ "▁f av",
+ "▁fa v",
+ "rib utes",
+ "ribute s",
+ "ribu tes",
+ "▁R é",
+ "ograf ia",
+ "ografi a",
+ "el ement",
+ "ele ment",
+ "elem ent",
+ "e lement",
+ "ca p",
+ "c ap",
+ "pa t",
+ "p at",
+ "▁B ra",
+ "▁Br a",
+ "▁ Bra",
+ ") (",
+ "▁acc ording",
+ "▁accord ing",
+ "г е",
+ "▁p ie",
+ "▁pi e",
+ "▁ pie",
+ "el i",
+ "e li",
+ "} \"",
+ "▁act iv",
+ "▁ activ",
+ "▁s top",
+ "▁st op",
+ "▁sto p",
+ "▁ stop",
+ "pat ch",
+ "p atch",
+ "т і",
+ "▁J ose",
+ "▁Jo se",
+ "▁Jos e",
+ "▁ Jose",
+ "En d",
+ "E nd",
+ "▁p rze",
+ "▁pr ze",
+ "▁prz e",
+ "▁a ge",
+ "▁ag e",
+ "▁ age",
+ "it ory",
+ "ito ry",
+ "itor y",
+ "▁P HP",
+ "▁ PHP",
+ "ag ement",
+ "age ment",
+ "agem ent",
+ "▁` .",
+ "▁ `.",
+ "▁pre tty",
+ "▁pret ty",
+ "▁re comm",
+ "▁rec omm",
+ "▁recom m",
+ "▁s ud",
+ "▁su d",
+ "▁re qu",
+ "▁r equ",
+ "▁req u",
+ "▁об ла",
+ "at ives",
+ "ative s",
+ "ativ es",
+ "ati ves",
+ "▁H igh",
+ "▁Hi gh",
+ "▁ High",
+ "á z",
+ "ou l",
+ "o ul",
+ "re st",
+ "res t",
+ "r est",
+ "▁T er",
+ "▁Te r",
+ "un der",
+ "und er",
+ "unde r",
+ "u nder",
+ "th ern",
+ "ther n",
+ "the rn",
+ "cent er",
+ "cen ter",
+ "cente r",
+ "c enter",
+ "▁u r",
+ "▁ ur",
+ "la t",
+ "l at",
+ "▁inter face",
+ "▁ interface",
+ "▁и н",
+ "▁ ин",
+ "▁wh ose",
+ "▁who se",
+ "ic as",
+ "ica s",
+ "i cas",
+ "am en",
+ "ame n",
+ "a men",
+ "Fil ter",
+ "▁st ation",
+ "▁stat ion",
+ "▁sta tion",
+ "▁stati on",
+ "▁ station",
+ "Pa ge",
+ "P age",
+ "▁a rm",
+ "▁ar m",
+ "▁ arm",
+ "▁e yes",
+ "▁eye s",
+ "▁ра й",
+ "▁s eu",
+ "▁se u",
+ "ol i",
+ "o li",
+ "wi n",
+ "w in",
+ "li k",
+ "l ik",
+ "ge x",
+ "g ex",
+ "ch an",
+ "cha n",
+ "c han",
+ "id ence",
+ "iden ce",
+ "ar gs",
+ "arg s",
+ "ak ing",
+ "aki ng",
+ "a king",
+ "▁Go ogle",
+ "▁ Google",
+ "▁St ud",
+ "▁Stu d",
+ "▁h o",
+ "▁ ho",
+ "то ры",
+ "тор ы",
+ "S u",
+ "▁autom at",
+ "▁auto mat",
+ "êm e",
+ "ê me",
+ "▁c y",
+ "▁ cy",
+ "lo r",
+ "l or",
+ "▁st ack",
+ "▁sta ck",
+ "▁ stack",
+ "▁SE LECT",
+ "▁ SELECT",
+ "A F",
+ "▁> >",
+ "▁ >>",
+ "▁com pet",
+ "▁comp et",
+ "▁p air",
+ "▁pa ir",
+ "▁ pair",
+ "▁ing lés",
+ "Res ponse",
+ "▁F ig",
+ "▁ Fig",
+ "gr ad",
+ "gra d",
+ "g rad",
+ "▁document ation",
+ "▁ documentation",
+ "▁c ant",
+ "▁can t",
+ "▁ca nt",
+ "▁app reci",
+ "å n",
+ "▁le arn",
+ "▁lear n",
+ "▁ learn",
+ "▁in dep",
+ "▁ind ep",
+ "▁inde p",
+ "▁p al",
+ "▁pa l",
+ "▁ pal",
+ "pack age",
+ "p ackage",
+ "ar es",
+ "are s",
+ "a res",
+ "▁Ber lin",
+ "▁Berl in",
+ "б ли",
+ "re ich",
+ "rei ch",
+ "ё н",
+ "▁s atisf",
+ "▁sat isf",
+ "▁reg ion",
+ "▁ region",
+ "▁fri end",
+ "▁ friend",
+ "▁Ge orge",
+ "▁Georg e",
+ "▁В о",
+ "▁ Во",
+ "▁\" \"",
+ "▁ \"\"",
+ "▁des de",
+ "Fact ory",
+ "F actory",
+ "▁Count y",
+ "▁Coun ty",
+ "ou v",
+ "o uv",
+ "▁ ‘",
+ "▁inst alled",
+ "▁install ed",
+ "▁instal led",
+ "▁ installed",
+ "▁w anted",
+ "▁want ed",
+ "▁P ython",
+ "▁ Python",
+ "▁inter pre",
+ "▁in cluded",
+ "▁includ ed",
+ "▁include d",
+ "▁inclu ded",
+ "▁( (",
+ "▁ ((",
+ "▁al tern",
+ "▁alt ern",
+ "▁alter n",
+ "▁alte rn",
+ "▁ altern",
+ "is to",
+ "ist o",
+ "i sto",
+ "g n",
+ "▁b order",
+ "▁bor der",
+ "▁bord er",
+ "▁ border",
+ "pd f",
+ "p df",
+ "▁d up",
+ "▁du p",
+ "▁ dup",
+ "▁down load",
+ "▁ download",
+ "ju st",
+ "jus t",
+ "j ust",
+ "▁m embers",
+ "▁mem bers",
+ "▁memb ers",
+ "▁member s",
+ "▁ members",
+ "ch ild",
+ "chi ld",
+ "▁p ay",
+ "▁pa y",
+ "▁ pay",
+ "▁c er",
+ "▁ce r",
+ "▁ cer",
+ "▁lo oked",
+ "▁look ed",
+ "▁correct ly",
+ "au th",
+ "aut h",
+ "a uth",
+ "▁с тан",
+ "▁ст ан",
+ "▁ста н",
+ "▁ стан",
+ "▁e sp",
+ "▁es p",
+ "▁ esp",
+ "▁d esc",
+ "▁de sc",
+ "▁des c",
+ "▁ desc",
+ "eb en",
+ "e ben",
+ "▁qu estions",
+ "▁question s",
+ "▁quest ions",
+ "▁questi ons",
+ "▁ questions",
+ "ma l",
+ "m al",
+ "▁ab gerufen",
+ "▁ abgerufen",
+ "▁B and",
+ "▁Ba nd",
+ "▁Ban d",
+ "▁[ ]",
+ "▁ []",
+ "Bas e",
+ "B ase",
+ "▁r is",
+ "▁ri s",
+ "▁ ris",
+ "▁f ort",
+ "▁for t",
+ "▁fo rt",
+ "▁ fort",
+ "▁I d",
+ "▁ Id",
+ "▁var ious",
+ "▁vari ous",
+ "▁Le ague",
+ "▁H and",
+ "▁Ha nd",
+ "▁Han d",
+ "▁ Hand",
+ "▁T ype",
+ "▁Ty pe",
+ "▁Typ e",
+ "▁ Type",
+ "ir l",
+ "i rl",
+ "▁F e",
+ "▁ Fe",
+ "i én",
+ "it ter",
+ "itt er",
+ "itte r",
+ "▁f ast",
+ "▁fa st",
+ "▁fas t",
+ "▁ fast",
+ "st a",
+ "s ta",
+ "▁ex cept",
+ "▁ except",
+ "ic z",
+ "i cz",
+ "▁F rench",
+ "▁en vironment",
+ "▁environ ment",
+ "▁ environment",
+ "▁con se",
+ "▁cons e",
+ "у р",
+ "о го",
+ "▁necess ary",
+ "tar get",
+ "t arget",
+ "▁re ading",
+ "▁read ing",
+ "▁ reading",
+ "ho me",
+ "hom e",
+ "h ome",
+ "ze ich",
+ "▁e qual",
+ "▁equ al",
+ "▁eq ual",
+ "▁ equal",
+ "▁pi ù",
+ "▁p rem",
+ "▁pr em",
+ "▁pre m",
+ "▁diff icult",
+ "▁u nit",
+ "▁un it",
+ "▁ unit",
+ "▁re place",
+ "▁rep lace",
+ "▁repla ce",
+ "▁ replace",
+ "▁he art",
+ "▁hear t",
+ "▁ heart",
+ "▁t alk",
+ "▁tal k",
+ "A M",
+ "▁R E",
+ "▁ RE",
+ "▁P erson",
+ "▁Per son",
+ "▁Pers on",
+ "▁ Person",
+ "end ency",
+ "enden cy",
+ "▁i mm",
+ "▁im m",
+ "▁ imm",
+ "▁h uman",
+ "▁hum an",
+ "▁hu man",
+ "▁ human",
+ "d n",
+ "▁K ir",
+ "▁Ki r",
+ "▁A ut",
+ "▁Au t",
+ "▁ Aut",
+ "kn own",
+ "know n",
+ "k nown",
+ "▁fr equ",
+ "▁fre qu",
+ "sys tem",
+ "s ystem",
+ "ла в",
+ "▁S z",
+ "▁G al",
+ "▁Ga l",
+ "но е",
+ "sel ves",
+ "right arrow",
+ "r ightarrow",
+ "▁С а",
+ "▁ Са",
+ "=\" @",
+ "▁build ing",
+ "▁ building",
+ "im port",
+ "imp ort",
+ "▁f am",
+ "▁fa m",
+ "▁de lete",
+ "▁del ete",
+ "▁delet e",
+ "▁ delete",
+ "air e",
+ "ai re",
+ "a ire",
+ "ma ry",
+ "mar y",
+ "m ary",
+ "▁f und",
+ "▁fun d",
+ "▁fu nd",
+ "▁ fund",
+ "▁part icip",
+ "▁partic ip",
+ "▁parti cip",
+ "▁partici p",
+ "▁s yn",
+ "▁sy n",
+ "▁ syn",
+ "si n",
+ "s in",
+ "▁l ower",
+ "▁lo wer",
+ "▁low er",
+ "▁ lower",
+ "▁z ero",
+ "▁ze ro",
+ "▁ zero",
+ "▁s ec",
+ "▁se c",
+ "▁ sec",
+ "▁f ra",
+ "▁fr a",
+ "▁ fra",
+ "Po int",
+ "P oint",
+ "▁fa iled",
+ "▁fail ed",
+ "▁ failed",
+ "ien to",
+ "ient o",
+ "i ento",
+ "cu p",
+ "c up",
+ "▁s low",
+ "▁sl ow",
+ "▁slo w",
+ "▁ slow",
+ "▁n ation",
+ "▁na tion",
+ "▁nat ion",
+ "äh r",
+ "ä hr",
+ "▁in fo",
+ "▁inf o",
+ "▁ info",
+ "▁P ublic",
+ "▁Pub lic",
+ "▁Pu blic",
+ "▁ Public",
+ "▁de cla",
+ "▁dec la",
+ "▁decl a",
+ "▁Т а",
+ "▁s old",
+ "▁so ld",
+ "▁sol d",
+ "▁R em",
+ "▁Re m",
+ "▁ Rem",
+ "▁Ph il",
+ "ст ра",
+ "стр а",
+ "с тра",
+ "▁me hr",
+ "▁W ork",
+ "▁Wor k",
+ "▁ Work",
+ "▁N ord",
+ "▁No rd",
+ "▁Nor d",
+ "▁f ait",
+ "▁fa it",
+ "▁g ew",
+ "▁ge w",
+ "▁ gew",
+ "print ln",
+ "ob ile",
+ "obil e",
+ "obi le",
+ "▁K on",
+ "▁Ko n",
+ "▁ass ume",
+ "▁assum e",
+ "land s",
+ "lan ds",
+ "l ands",
+ "▁a mount",
+ "▁am ount",
+ "▁ amount",
+ "▁P ress",
+ "▁Pr ess",
+ "▁Pres s",
+ "▁Pre ss",
+ "▁ Press",
+ "ý ch",
+ "▁ma xim",
+ "▁max im",
+ "▁ maxim",
+ "▁Ch ampion",
+ "▁Champ ion",
+ "li brary",
+ "l ibrary",
+ "a ñ",
+ "▁W al",
+ "▁Wa l",
+ "Com m",
+ "Co mm",
+ "C omm",
+ "] ]",
+ "▁z w",
+ "▁ zw",
+ "▁so cial",
+ "▁soci al",
+ "▁soc ial",
+ "▁ social",
+ "L I",
+ "▁Un ter",
+ "vo r",
+ "v or",
+ "Del ta",
+ "D elta",
+ "em ail",
+ "ema il",
+ "e mail",
+ "ra int",
+ "rain t",
+ "rai nt",
+ "r aint",
+ "on i",
+ "o ni",
+ "▁a lt",
+ "▁al t",
+ "▁ alt",
+ "▁n é",
+ "▁ né",
+ "ци я",
+ "ograph y",
+ "▁mention ed",
+ "▁ment ioned",
+ "▁< =",
+ "▁ <=",
+ "▁c ette",
+ "▁ce tte",
+ "▁cet te",
+ "▁current ly",
+ "▁curr ently",
+ "va re",
+ "var e",
+ "v are",
+ "iz ing",
+ "izi ng",
+ "izin g",
+ "i zing",
+ "▁D ef",
+ "▁De f",
+ "▁ Def",
+ "ic ol",
+ "ico l",
+ "i col",
+ "ün d",
+ "ü nd",
+ "▁config uration",
+ "▁configur ation",
+ "▁ configuration",
+ "est ig",
+ "esti g",
+ "II I",
+ "I II",
+ "la m",
+ "l am",
+ "i ère",
+ "▁E ar",
+ "▁t u",
+ "▁ tu",
+ "En t",
+ "E nt",
+ "▁U sing",
+ "▁Us ing",
+ "▁ Using",
+ "▁ко м",
+ "▁к ом",
+ "▁ ком",
+ "ci e",
+ "c ie",
+ "▁pro of",
+ "▁ proof",
+ "▁in vol",
+ "▁inv ol",
+ "▁H istory",
+ "▁Histor y",
+ "▁Hi story",
+ "▁Hist ory",
+ "▁ History",
+ "> <",
+ "▁A ND",
+ "▁AN D",
+ "▁ AND",
+ "av y",
+ "a vy",
+ "▁rel ations",
+ "▁relation s",
+ "$ {",
+ "▁com es",
+ "▁co mes",
+ "▁come s",
+ "▁ comes",
+ "▁d irection",
+ "▁direct ion",
+ "▁dire ction",
+ "▁dir ection",
+ "▁ direction",
+ "▁J une",
+ "▁Ju ne",
+ "▁Jun e",
+ "▁W ay",
+ "▁Wa y",
+ "Com ponent",
+ "ec h",
+ "e ch",
+ "▁P eter",
+ "▁Pe ter",
+ "▁Pet er",
+ "▁ Peter",
+ "s g",
+ "▁s tra",
+ "▁st ra",
+ "▁str a",
+ "▁ stra",
+ "uc t",
+ "u ct",
+ "▁im plementation",
+ "▁implement ation",
+ "▁ implementation",
+ "att le",
+ "▁c z",
+ "▁ cz",
+ "pl ot",
+ "p lot",
+ "▁play ed",
+ "▁pla yed",
+ "\"> ",
+ "\">< /",
+ "\" >",
+ "▁f ive",
+ "▁fi ve",
+ "▁ five",
+ "▁c oll",
+ "▁col l",
+ "▁co ll",
+ "▁ coll",
+ "▁Char les",
+ "Tr a",
+ "T ra",
+ "▁s uo",
+ "▁su o",
+ "file s",
+ "fil es",
+ "fi les",
+ "f iles",
+ "en tes",
+ "ent es",
+ "ente s",
+ "res ponse",
+ "respons e",
+ "H ow",
+ "▁S oci",
+ "▁So ci",
+ "▁Soc i",
+ "▁i gn",
+ "▁ig n",
+ "▁ ign",
+ "▁l ed",
+ "▁le d",
+ "▁ led",
+ "▁G erman",
+ "▁Ger man",
+ "▁Germ an",
+ "ud o",
+ "u do",
+ "▁D u",
+ "▁t im",
+ "▁ti m",
+ "▁ tim",
+ "ount er",
+ "oun ter",
+ "o unter",
+ "▁att ack",
+ "ur i",
+ "u ri",
+ "▁а р",
+ "▁ ар",
+ "es se",
+ "ess e",
+ "iv il",
+ "ivi l",
+ "i vil",
+ "▁J u",
+ "▁v el",
+ "▁ve l",
+ "▁ vel",
+ "mat rix",
+ "▁M at",
+ "▁Ma t",
+ "▁ Mat",
+ "gi o",
+ "g io",
+ "▁Ze it",
+ "VE R",
+ "V ER",
+ "ha s",
+ "h as",
+ "Con nection",
+ "Connect ion",
+ "Conne ction",
+ "▁i hr",
+ "▁ih r",
+ "▁att ribute",
+ "▁ attribute",
+ "▁dis cuss",
+ "▁disc uss",
+ "▁do main",
+ "▁dom ain",
+ "▁ domain",
+ "bin d",
+ "bi nd",
+ "b ind",
+ "▁S ec",
+ "▁Se c",
+ "▁ Sec",
+ "ri k",
+ "r ik",
+ "cl ose",
+ "clos e",
+ "clo se",
+ "c lose",
+ "gi n",
+ "g in",
+ "▁l ove",
+ "▁lo ve",
+ "▁lov e",
+ "an to",
+ "ant o",
+ "ge nt",
+ "gen t",
+ "g ent",
+ "ab a",
+ "a ba",
+ "jan go",
+ "j ango",
+ "b i",
+ "▁ob ser",
+ "▁obs er",
+ "it ting",
+ "itt ing",
+ "▁р у",
+ "▁ ру",
+ "} =",
+ "ag en",
+ "age n",
+ "a gen",
+ "B C",
+ "so me",
+ "som e",
+ "s ome",
+ "▁B u",
+ "▁ Bu",
+ "▁s oci",
+ "▁so ci",
+ "▁soc i",
+ "▁ soci",
+ "▁ind ividual",
+ "▁individ ual",
+ "▁de al",
+ "▁out side",
+ "ri o",
+ "r io",
+ "Ex ec",
+ "an did",
+ "and id",
+ "▁bus iness",
+ "▁t empor",
+ "▁tem por",
+ "▁temp or",
+ "▁tempo r",
+ "▁T ur",
+ "▁Tu r",
+ "▁( !",
+ "▁ (!",
+ "ri ter",
+ "rit er",
+ "rite r",
+ "r iter",
+ "▁go ogle",
+ "▁goog le",
+ "▁ google",
+ "] :",
+ "it te",
+ "itt e",
+ "i tte",
+ "x i",
+ "▁П а",
+ "ho l",
+ "h ol",
+ "н ь",
+ "ri ng",
+ "rin g",
+ "r ing",
+ "▁s ul",
+ "▁su l",
+ "но сти",
+ "ност и",
+ "нос ти",
+ "_ .",
+ "ga r",
+ "g ar",
+ "T ask",
+ "▁C heck",
+ "▁Che ck",
+ "▁ Check",
+ "▁mod ern",
+ "▁mo dern",
+ "▁mode rn",
+ "▁moder n",
+ "▁w in",
+ "▁ win",
+ "us ter",
+ "ust er",
+ "u ster",
+ "ha n",
+ "h an",
+ "form ation",
+ "format ion",
+ "vo id",
+ "v oid",
+ "▁ф и",
+ "▁ фи",
+ "▁use ful",
+ "▁Eng land",
+ "lo s",
+ "l os",
+ "et ime",
+ "eti me",
+ "e time",
+ "eu r",
+ "e ur",
+ "▁un ique",
+ "▁uniqu e",
+ "▁ unique",
+ "▁ка к",
+ "yi ng",
+ "y ing",
+ "ob j",
+ "ui d",
+ "u id",
+ "▁w indows",
+ "▁window s",
+ "▁wind ows",
+ "▁ windows",
+ "▁d istance",
+ "▁dist ance",
+ "▁ distance",
+ "▁nom bre",
+ "▁nombr e",
+ "і я",
+ "oc us",
+ "o cus",
+ "ah n",
+ "a hn",
+ "ier te",
+ "iert e",
+ "i erte",
+ "▁d ar",
+ "▁da r",
+ "▁ dar",
+ "S I",
+ "lo ng",
+ "lon g",
+ "l ong",
+ "as ta",
+ "ast a",
+ "a sta",
+ "iv en",
+ "ive n",
+ "i ven",
+ "▁t old",
+ "▁to ld",
+ "▁G ru",
+ "▁Gr u",
+ "fo o",
+ "f oo",
+ "▁c alling",
+ "▁cal ling",
+ "▁call ing",
+ "iem bre",
+ "i embre",
+ "▁f uture",
+ "▁fut ure",
+ "pr ès",
+ "p rès",
+ "le ep",
+ "lee p",
+ "avig ation",
+ "PO ST",
+ "POS T",
+ "P OST",
+ "▁des cribed",
+ "▁descri bed",
+ "▁describe d",
+ "▁n och",
+ "▁no ch",
+ "un it",
+ "uni t",
+ "u nit",
+ "al len",
+ "all en",
+ "alle n",
+ "▁b ranch",
+ "▁br anch",
+ "▁bran ch",
+ "▁ branch",
+ "f a",
+ "▁f ill",
+ "▁fil l",
+ "▁fi ll",
+ "▁ fill",
+ "▁ob j",
+ "▁ obj",
+ "▁t ree",
+ "▁tr ee",
+ "▁tre e",
+ "▁ tree",
+ "▁wur den",
+ "▁wurde n",
+ "▁L iter",
+ "▁Li ter",
+ "▁Lit er",
+ "▁ Liter",
+ "ro t",
+ "r ot",
+ "sp lit",
+ "spl it",
+ "s plit",
+ "em ein",
+ "eme in",
+ "mod ule",
+ "C A",
+ "▁oper ator",
+ "▁opera tor",
+ "▁ operator",
+ "▁w rote",
+ "▁wr ote",
+ "▁J ack",
+ "▁Jac k",
+ "▁Ja ck",
+ "▁ Jack",
+ "olog ie",
+ "olo gie",
+ "▁A nt",
+ "▁An t",
+ "▁ Ant",
+ "те р",
+ "т ер",
+ "st ream",
+ "stre am",
+ "▁Q ue",
+ "▁Qu e",
+ "▁ Que",
+ "eps ilon",
+ "e psilon",
+ "no n",
+ "n on",
+ "st ein",
+ "ste in",
+ "▁s impl",
+ "▁sim pl",
+ "▁simp l",
+ "pu b",
+ "p ub",
+ "▁J uly",
+ "▁Jul y",
+ "▁Ju ly",
+ "▁n ature",
+ "▁natur e",
+ "▁nat ure",
+ "▁D atabase",
+ "▁Data base",
+ "▁Dat abase",
+ "▁ Database",
+ "ó l",
+ "ни м",
+ "н им",
+ "▁V I",
+ "▁ VI",
+ "êt re",
+ "ê tre",
+ "il es",
+ "ile s",
+ "i les",
+ "▁w el",
+ "▁we l",
+ "▁ wel",
+ "') ,",
+ "' ),",
+ "▁m ut",
+ "▁mu t",
+ "▁ mut",
+ "lo cation",
+ "loc ation",
+ "l ocation",
+ "▁there fore",
+ "el li",
+ "ell i",
+ "▁ І",
+ "n é",
+ "▁а в",
+ "led ge",
+ "l edge",
+ "▁con ver",
+ "▁conv er",
+ "í m",
+ "▁X V",
+ "▁ XV",
+ "vi der",
+ "vid er",
+ "v ider",
+ "▁Janu ary",
+ "▁Januar y",
+ "▁us ually",
+ "▁usual ly",
+ "▁re leased",
+ "▁release d",
+ "▁M i",
+ "He ad",
+ "H ead",
+ "il ler",
+ "ill er",
+ "ille r",
+ "▁j an",
+ "▁ja n",
+ "▁ jan",
+ "▁l etter",
+ "▁let ter",
+ "▁lett er",
+ "▁ letter",
+ "pr odu",
+ "pro du",
+ "prod u",
+ "p rodu",
+ "r d",
+ "▁C am",
+ "▁Ca m",
+ "▁ Cam",
+ ", '",
+ "▁ Ц",
+ "▁p ush",
+ "▁pu sh",
+ "▁ push",
+ "up date",
+ "▁may be",
+ "▁ maybe",
+ "H ttp",
+ "@ \"",
+ "ме р",
+ "м ер",
+ "ser vice",
+ "serv ice",
+ "par se",
+ "p arse",
+ "▁d ass",
+ "▁da ss",
+ "▁das s",
+ "ê n",
+ ") \"",
+ "mo re",
+ "mor e",
+ "m ore",
+ "/ *",
+ "▁m as",
+ "▁ma s",
+ "▁ mas",
+ "▁like ly",
+ "▁lik ely",
+ "▁ likely",
+ "▁m aterial",
+ "▁mate rial",
+ "▁mater ial",
+ "▁ material",
+ "▁[ [",
+ "▁ [[",
+ "▁long er",
+ "▁lon ger",
+ "ba l",
+ "b al",
+ "▁Arch iv",
+ "ig t",
+ "i gt",
+ "▁e gy",
+ "▁eg y",
+ "▁ egy",
+ "id ge",
+ "ig u",
+ "i gu",
+ "con f",
+ "▁in c",
+ "▁i nc",
+ "▁ inc",
+ "cons ulté",
+ "▁m ai",
+ "▁ma i",
+ "▁ mai",
+ "W ork",
+ "▁г ра",
+ "▁ гра",
+ "▁Oct ober",
+ "▁g lobal",
+ "▁glob al",
+ "▁glo bal",
+ "▁ global",
+ "▁s el",
+ "▁se l",
+ "▁ sel",
+ "▁m unicip",
+ "▁vi ol",
+ "▁vio l",
+ "▁Do es",
+ "▁ Does",
+ "▁\\ [",
+ "ско м",
+ "ск ом",
+ "с ком",
+ "▁com pos",
+ "▁comp os",
+ "▁ compos",
+ "б ря",
+ "в я",
+ "▁resp ons",
+ "▁ respons",
+ "▁consider ed",
+ "▁consid ered",
+ "▁J apan",
+ "▁Jap an",
+ "▁Ja pan",
+ "pe s",
+ "p es",
+ "os to",
+ "ost o",
+ "o sto",
+ "▁mil it",
+ "▁mi lit",
+ "S P",
+ "с ы",
+ "at tr",
+ "att r",
+ "ci l",
+ "c il",
+ "irect ory",
+ "av ing",
+ "avi ng",
+ "a ving",
+ "▁D el",
+ "▁De l",
+ "▁ Del",
+ "▁pr event",
+ "▁pre vent",
+ "▁prev ent",
+ "▁ prevent",
+ "id ade",
+ "ida de",
+ "idad e",
+ "i dade",
+ "gi t",
+ "g it",
+ "if orm",
+ "i form",
+ "ou ter",
+ "out er",
+ "oute r",
+ "o uter",
+ "in ct",
+ "inc t",
+ "le vel",
+ "lev el",
+ "at ever",
+ "ate ver",
+ "▁re pe",
+ "▁rep e",
+ "▁e xc",
+ "▁ex c",
+ "да р",
+ "д ар",
+ "St yle",
+ "▁Th omas",
+ "▁Thom as",
+ "el ine",
+ "eli ne",
+ "elin e",
+ "e line",
+ "▁ ж",
+ "un time",
+ "unt ime",
+ "▁l arg",
+ "▁la rg",
+ "▁lar g",
+ "▁ larg",
+ "Tr ue",
+ ". *",
+ "cre en",
+ "cr een",
+ "c reen",
+ "yle s",
+ "yl es",
+ "y les",
+ "▁trans l",
+ "▁tran sl",
+ "▁С о",
+ "ens ions",
+ "ension s",
+ "ä l",
+ "is se",
+ "iss e",
+ "▁v olt",
+ "▁vo lt",
+ "▁vol t",
+ "ci ally",
+ "cial ly",
+ "ni k",
+ "n ik",
+ ". ]",
+ "▁St adt",
+ "▁Sta dt",
+ "▁Stad t",
+ "м ы",
+ "fil l",
+ "fi ll",
+ "f ill",
+ "lo v",
+ "l ov",
+ "▁\" /",
+ "▁ \"/",
+ "S p",
+ "▁A ir",
+ "Cal l",
+ "Ca ll",
+ "C all",
+ "▁n ur",
+ "▁nu r",
+ "Che ck",
+ "C heck",
+ "ien ce",
+ "i ence",
+ "ef ined",
+ "▁в ре",
+ "ł o",
+ "d z",
+ "▁о р",
+ "▁ ор",
+ "ik er",
+ "ike r",
+ "i ker",
+ "ow a",
+ "o wa",
+ "ови ч",
+ "о вич",
+ "r é",
+ "O L",
+ "▁li near",
+ "▁line ar",
+ "▁lin ear",
+ "▁linea r",
+ "▁ linear",
+ "▁ex port",
+ "▁exp ort",
+ "▁ export",
+ "ah r",
+ "a hr",
+ "ic ial",
+ "ici al",
+ "icia l",
+ "i cial",
+ "Re p",
+ "R ep",
+ "▁n atural",
+ "▁natur al",
+ "▁nat ural",
+ "▁ natural",
+ "▁c op",
+ "▁co p",
+ "▁ cop",
+ "▁} )",
+ "▁ })",
+ "ç ões",
+ "z z",
+ "Wh at",
+ "W hat",
+ "▁H ouse",
+ "▁Ho use",
+ "▁Hou se",
+ "Re f",
+ "R ef",
+ "in ger",
+ "ing er",
+ "inge r",
+ "▁t aking",
+ "▁tak ing",
+ "▁ta king",
+ "n ě",
+ "▁Ein z",
+ "▁d am",
+ "▁da m",
+ "▁ dam",
+ "▁iss ues",
+ "▁issue s",
+ "▁issu es",
+ "▁ issues",
+ "Bu ilder",
+ "Build er",
+ "ed it",
+ "edi t",
+ "e dit",
+ "▁p rz",
+ "▁pr z",
+ "pass word",
+ "Ge ner",
+ "Gen er",
+ "G ener",
+ "ri m",
+ "r im",
+ "▁p arts",
+ "▁par ts",
+ "▁part s",
+ "▁ parts",
+ "-- -",
+ "- --",
+ "ig inal",
+ "igin al",
+ "igi nal",
+ "▁S ci",
+ "▁Sc i",
+ "▁m other",
+ "▁mo ther",
+ "▁mot her",
+ "▁moth er",
+ "re a",
+ "r ea",
+ "▁cont ainer",
+ "▁contain er",
+ "▁ container",
+ "д я",
+ "▁I P",
+ "▁ IP",
+ "▁n one",
+ "▁no ne",
+ "▁non e",
+ "▁ none",
+ "▁follow ed",
+ "▁p le",
+ "▁pl e",
+ "▁ ple",
+ "▁me asure",
+ "▁meas ure",
+ "▁ measure",
+ "▁t out",
+ "▁to ut",
+ "▁tou t",
+ "▁ tout",
+ "Ex t",
+ "E xt",
+ "▁T V",
+ "▁ TV",
+ "▁ex plain",
+ "▁exp lain",
+ "▁expla in",
+ "▁expl ain",
+ "▁p aper",
+ "▁pa per",
+ "▁pap er",
+ "▁ paper",
+ "ст і",
+ "с ті",
+ "w s",
+ "W ik",
+ "▁m m",
+ "▁ mm",
+ "▁N orm",
+ "▁No rm",
+ "▁Nor m",
+ "▁Ser ver",
+ "▁Serv er",
+ "▁ Server",
+ "fo nt",
+ "fon t",
+ "f ont",
+ "ec ause",
+ "eca use",
+ "T R",
+ "▁б и",
+ "▁ би",
+ "L a",
+ "▁e ns",
+ "▁en s",
+ "▁ ens",
+ "▁re tr",
+ "▁r etr",
+ "▁ret r",
+ "▁S il",
+ "▁Si l",
+ "▁ Sil",
+ "▁se quence",
+ "▁sequ ence",
+ "▁ sequence",
+ "ar c",
+ "a rc",
+ "I V",
+ "z á",
+ "▁And roid",
+ "▁ Android",
+ "▁S uper",
+ "▁Su per",
+ "▁Sup er",
+ "▁ Super",
+ "▁r oz",
+ "▁ro z",
+ "▁ roz",
+ "ov ie",
+ "ovi e",
+ "o vie",
+ "O m",
+ "▁W ell",
+ "▁We ll",
+ "▁Wel l",
+ "▁ Well",
+ "ma ke",
+ "m ake",
+ "or ph",
+ "orp h",
+ "▁J er",
+ "▁Je r",
+ "▁R os",
+ "▁Ro s",
+ "re ference",
+ "refer ence",
+ "▁fe atures",
+ "▁feature s",
+ "▁ features",
+ "▁G er",
+ "▁Ge r",
+ "▁L eg",
+ "▁Le g",
+ "▁ Leg",
+ "▁l ate",
+ "▁la te",
+ "▁lat e",
+ "▁ late",
+ "▁add itional",
+ "▁addition al",
+ "▁f lo",
+ "▁fl o",
+ "▁е го",
+ "▁ его",
+ "▁alg orithm",
+ "▁ algorithm",
+ "B A",
+ "ka r",
+ "k ar",
+ "I P",
+ "]) ;",
+ "] );",
+ "▁app ears",
+ "▁appear s",
+ "▁appe ars",
+ "y w",
+ "▁t emp",
+ "▁te mp",
+ "▁tem p",
+ "▁ temp",
+ "▁aus si",
+ "met hod",
+ "m ethod",
+ "▁p et",
+ "▁pe t",
+ "▁ pet",
+ "st rap",
+ "str ap",
+ "stra p",
+ "ar ning",
+ "arn ing",
+ "▁c ut",
+ "▁cu t",
+ "▁ cut",
+ "▁S a",
+ "▁ Sa",
+ "▁t rack",
+ "▁tr ack",
+ "▁tra ck",
+ "▁trac k",
+ "▁ track",
+ "▁emp loy",
+ "▁in de",
+ "▁i nde",
+ "▁ind e",
+ "▁ inde",
+ "ra v",
+ "r av",
+ "▁gener ate",
+ "▁gene rate",
+ "▁ generate",
+ "be s",
+ "b es",
+ "ar ts",
+ "art s",
+ "St atus",
+ "Stat us",
+ "ug e",
+ "u ge",
+ "al is",
+ "ali s",
+ "a lis",
+ "▁over ride",
+ "▁overrid e",
+ "▁ override",
+ "▁f i",
+ "▁ fi",
+ "▁l ost",
+ "▁lo st",
+ "▁los t",
+ "▁ lost",
+ "ot ed",
+ "ote d",
+ "o ted",
+ "▁r oom",
+ "▁ro om",
+ "▁ room",
+ "▁c alls",
+ "▁cal ls",
+ "▁call s",
+ "▁cons ist",
+ "ре н",
+ "р ен",
+ "▁vill age",
+ "▁vil lage",
+ "▁villa ge",
+ "dis t",
+ "di st",
+ "d ist",
+ "▁te chn",
+ "▁tec hn",
+ "▁ techn",
+ "en za",
+ "enz a",
+ "▁ро з",
+ "▁р оз",
+ "▁ роз",
+ "▁C atalog",
+ "▁Cat alog",
+ "▁Catal og",
+ "▁be com",
+ "▁bec om",
+ "ro ws",
+ "row s",
+ "r ows",
+ "▁N el",
+ "▁Ne l",
+ "com ple",
+ "comp le",
+ "▁pr emi",
+ "▁pre mi",
+ "▁prem i",
+ "▁r ot",
+ "▁ro t",
+ "▁ rot",
+ "▁Web links",
+ "▁foot ball",
+ "▁ football",
+ "▁com par",
+ "▁comp ar",
+ "▁l ive",
+ "▁li ve",
+ "▁liv e",
+ "▁ live",
+ "ки х",
+ "к их",
+ "▁equ ival",
+ "ca pe",
+ "cap e",
+ "c ape",
+ "▁G en",
+ "▁Ge n",
+ "▁ Gen",
+ "nd er",
+ "nde r",
+ "n der",
+ "▁V is",
+ "▁Vi s",
+ "▁ Vis",
+ "▁be hind",
+ "▁beh ind",
+ "ge rs",
+ "ger s",
+ "g ers",
+ "vo ke",
+ "v oke",
+ "▁m edia",
+ "▁me dia",
+ "▁med ia",
+ "▁medi a",
+ "▁ media",
+ "E X",
+ "th at",
+ "tha t",
+ "t hat",
+ "▁s ono",
+ "▁so no",
+ "▁son o",
+ "▁ sono",
+ "▁my sql",
+ "▁mysq l",
+ "▁ mysql",
+ "e v",
+ "▁r ule",
+ "▁ru le",
+ "▁ rule",
+ "до в",
+ "д ов",
+ "ac c",
+ "a cc",
+ "▁W HERE",
+ "▁WH ERE",
+ "▁ WHERE",
+ "ен е",
+ "е не",
+ "Gr id",
+ "G rid",
+ "▁j ul",
+ "▁ju l",
+ "▁m ort",
+ "▁mo rt",
+ "▁mor t",
+ "▁ mort",
+ "▁gener ated",
+ "▁generate d",
+ "▁ generated",
+ "en cia",
+ "enc ia",
+ "enci a",
+ "ac ter",
+ "act er",
+ "cl ud",
+ "▁s cen",
+ "▁sc en",
+ "▁cl osed",
+ "▁close d",
+ "▁clos ed",
+ "▁clo sed",
+ "▁ closed",
+ "▁Mich ael",
+ "▁ Michael",
+ "▁m ount",
+ "▁mo unt",
+ "▁mou nt",
+ "▁ mount",
+ ")$ ,",
+ ") $,",
+ "▁d rop",
+ "▁dr op",
+ "▁dro p",
+ "▁ drop",
+ "▁com bin",
+ "▁comb in",
+ "to col",
+ "▁go es",
+ "▁g eb",
+ "▁ge b",
+ "▁ geb",
+ "M D",
+ "▁An ton",
+ "▁Ant on",
+ "▁Anto n",
+ "▁$ (\"",
+ "▁$( \"",
+ "Te m",
+ "T em",
+ "▁c a",
+ "▁ ca",
+ "▁in stru",
+ "▁inst ru",
+ "ed s",
+ "e ds",
+ "▁t ool",
+ "▁to ol",
+ "▁too l",
+ "▁ tool",
+ "my s",
+ "m ys",
+ "▁r oute",
+ "▁ro ute",
+ "▁rout e",
+ "▁rou te",
+ "▁ route",
+ "\") )",
+ "\" ))",
+ "пр е",
+ "п ре",
+ "▁f loat",
+ "▁flo at",
+ "▁ float",
+ "▁service s",
+ "▁serv ices",
+ "▁servi ces",
+ "▁ services",
+ "▁ч и",
+ "▁ чи",
+ "к і",
+ "emb ly",
+ "embl y",
+ "ak er",
+ "ake r",
+ "a ker",
+ "▁S on",
+ "▁So n",
+ "▁M ath",
+ "▁Ma th",
+ "▁Mat h",
+ "▁ Math",
+ "as se",
+ "ass e",
+ "ous ly",
+ "lic ations",
+ "lication s",
+ "▁r u",
+ "▁ ru",
+ "▁щ о",
+ "▁ що",
+ "▁Con st",
+ "▁Cons t",
+ "▁ Const",
+ "▁im medi",
+ "▁imm edi",
+ "F O",
+ "or o",
+ "o ro",
+ "▁p roduction",
+ "▁produ ction",
+ "▁product ion",
+ "▁ production",
+ "re i",
+ "r ei",
+ "▁j query",
+ "▁ jquery",
+ "an nt",
+ "ann t",
+ "▁Wh ile",
+ "▁s n",
+ "▁ sn",
+ "▁го ди",
+ "▁год и",
+ "Form at",
+ "For mat",
+ "▁s tar",
+ "▁st ar",
+ "▁sta r",
+ "▁ star",
+ "▁S en",
+ "▁Se n",
+ "▁k o",
+ "▁ ko",
+ "NA ME",
+ "N AME",
+ "▁p rés",
+ "▁pr és",
+ "▁pré s",
+ "▁ prés",
+ "ch a",
+ "c ha",
+ "wh at",
+ "w hat",
+ "om in",
+ "omi n",
+ "o min",
+ "end ant",
+ "enda nt",
+ "h y",
+ "▁ob serv",
+ "▁obser v",
+ "▁obs erv",
+ "▁ observ",
+ "▁p refer",
+ "▁pre fer",
+ "у н",
+ "▁con structor",
+ "▁construct or",
+ "▁constru ctor",
+ "▁ constructor",
+ "b s",
+ "▁m ac",
+ "▁ma c",
+ "▁ mac",
+ "▁B re",
+ "▁Br e",
+ "▁ Bre",
+ "▁Inst it",
+ "▁Ins tit",
+ "▁st ory",
+ "▁stor y",
+ "▁sto ry",
+ "▁ story",
+ "▁s ymbol",
+ "▁sym bol",
+ "▁ symbol",
+ "el es",
+ "ele s",
+ "e les",
+ "ß e",
+ "as ing",
+ "asi ng",
+ "a sing",
+ "▁w est",
+ "▁we st",
+ "▁ west",
+ "ia ns",
+ "ian s",
+ "i ans",
+ "▁m aster",
+ "▁ma ster",
+ "▁mas ter",
+ "▁ master",
+ "е з",
+ "▁w ays",
+ "▁way s",
+ "▁wa ys",
+ "▁ ways",
+ "b m",
+ "▁p ick",
+ "▁pi ck",
+ "▁pic k",
+ "▁ pick",
+ "▁de part",
+ "▁dep art",
+ "B ack",
+ "en k",
+ "li pse",
+ "lip se",
+ "▁m ath",
+ "▁ma th",
+ "▁mat h",
+ "▁ math",
+ "▁Fran cis",
+ "▁Franc is",
+ "▁Dec ember",
+ "f s",
+ "ru m",
+ "r um",
+ "▁develop ment",
+ "▁ development",
+ "L T",
+ "er nel",
+ "ern el",
+ "erne l",
+ "▁Tr ue",
+ "▁Tru e",
+ "▁ True",
+ "▁M ore",
+ "▁Mor e",
+ "▁Mo re",
+ "▁ More",
+ "ran gle",
+ "r angle",
+ "▁cond itions",
+ "▁condition s",
+ "Option s",
+ "Opt ions",
+ "O ptions",
+ "▁g li",
+ "▁gl i",
+ "▁oper ation",
+ "▁opera tion",
+ "▁ operation",
+ "é k",
+ "ach t",
+ "ac ht",
+ "a cht",
+ "ight s",
+ "igh ts",
+ "▁m ist",
+ "▁mi st",
+ "▁mis t",
+ "an da",
+ "and a",
+ "▁ener gy",
+ "▁energ y",
+ "▁ energy",
+ "▁ж е",
+ "▁ же",
+ "▁w omen",
+ "▁wo men",
+ "ak t",
+ "a kt",
+ "▁C H",
+ "▁ CH",
+ "ge bra",
+ "geb ra",
+ "▁me et",
+ "i u",
+ "we ll",
+ "wel l",
+ "w ell",
+ "ö l",
+ "▁govern ment",
+ "▁J os",
+ "▁Jo s",
+ "ie g",
+ "i eg",
+ "▁s yntax",
+ "▁syn tax",
+ "▁ syntax",
+ "fi x",
+ "f ix",
+ "▁P et",
+ "▁Pe t",
+ "j query",
+ "▁c ard",
+ "▁car d",
+ "▁ca rd",
+ "▁ card",
+ "▁pr incipal",
+ "▁princi pal",
+ "▁princip al",
+ "▁d ru",
+ "▁dr u",
+ "▁ dru",
+ "▁ter rit",
+ "▁п ов",
+ "▁по в",
+ "▁ пов",
+ "▁S S",
+ "▁ SS",
+ "ри и",
+ "tr es",
+ "tre s",
+ "t res",
+ "ag ne",
+ "agn e",
+ "ly ing",
+ "l ying",
+ "til de",
+ "t ilde",
+ "ber n",
+ "be rn",
+ "b ern",
+ "en ter",
+ "ent er",
+ "ente r",
+ "Pe r",
+ "P er",
+ "▁s omet",
+ "▁so met",
+ "▁some t",
+ "▁som et",
+ "Lo ad",
+ "li ce",
+ "lic e",
+ "l ice",
+ "▁s ous",
+ "▁so us",
+ "▁sou s",
+ "▁Lo uis",
+ "▁Lou is",
+ "▁ Louis",
+ "▁log ic",
+ "▁ logic",
+ "▁O ther",
+ "▁Ot her",
+ "▁ Other",
+ "▁c ir",
+ "▁ci r",
+ "▁ cir",
+ "é v",
+ "ch ron",
+ "chr on",
+ "▁h an",
+ "▁ha n",
+ "▁ han",
+ "▁m argin",
+ "▁mar gin",
+ "▁marg in",
+ "▁ margin",
+ "W indow",
+ "ère s",
+ "è res",
+ "ny ch",
+ "n ych",
+ "pu sh",
+ "pus h",
+ "p ush",
+ "bol ds",
+ "bold s",
+ "b olds",
+ "▁l ayout",
+ "▁lay out",
+ "▁ layout",
+ "▁[ `",
+ "Ch ar",
+ "C har",
+ "▁C ap",
+ "▁Ca p",
+ "▁ Cap",
+ "bolds ymbol",
+ "bold symbol",
+ "▁R oman",
+ "▁Ro man",
+ "▁Rom an",
+ "▁Roma n",
+ "▁M ax",
+ "▁Ma x",
+ "▁ Max",
+ ": (",
+ "▁C ode",
+ "▁Co de",
+ "▁ Code",
+ "is ing",
+ "isi ng",
+ "i sing",
+ "▁st ates",
+ "▁stat es",
+ "▁state s",
+ "▁sta tes",
+ "▁ states",
+ "▁ex isting",
+ "▁exist ing",
+ "su pport",
+ "sup port",
+ "supp ort",
+ "▁re search",
+ "▁res earch",
+ "lic ate",
+ "lica te",
+ "l icate",
+ "va ri",
+ "var i",
+ "v ari",
+ "▁b ij",
+ "▁bi j",
+ "▁ bij",
+ "▁a ppe",
+ "▁app e",
+ "▁ap pe",
+ "▁ appe",
+ "▁happ ens",
+ "▁happen s",
+ "\\ \"",
+ "▁conc ern",
+ "▁conce rn",
+ "we st",
+ "w est",
+ "▁sa ying",
+ "▁say ing",
+ "pi d",
+ "p id",
+ "▁rec ogn",
+ "▁ recogn",
+ "▁H et",
+ "▁He t",
+ "Ch ild",
+ "▁c s",
+ "▁ cs",
+ "\\ ,",
+ "▁c lean",
+ "▁cle an",
+ "▁ clean",
+ "le ctions",
+ "lect ions",
+ "lection s",
+ "ac cess",
+ "acc ess",
+ "a ccess",
+ "в у",
+ "пр о",
+ "п ро",
+ "ac ity",
+ "aci ty",
+ "a city",
+ "▁O ff",
+ "▁Of f",
+ "▁ Off",
+ "▁eas ily",
+ "è que",
+ "▁j ako",
+ "▁ja ko",
+ "▁jak o",
+ "▁i z",
+ "▁ iz",
+ "▁H a",
+ "▁ Ha",
+ "▁D et",
+ "▁De t",
+ "▁ Det",
+ "▁for ma",
+ "▁form a",
+ "sch e",
+ "sc he",
+ "s che",
+ "swer s",
+ "sw ers",
+ "s wers",
+ "▁of fer",
+ "▁off er",
+ "qu ired",
+ "quire d",
+ "qui red",
+ "User s",
+ "Use rs",
+ "Us ers",
+ "U sers",
+ "▁su bst",
+ "▁sub st",
+ "▁subs t",
+ "▁ subst",
+ "> (",
+ "▁g round",
+ "▁gr ound",
+ "▁gro und",
+ "▁ ground",
+ "un n",
+ "u nn",
+ "ro d",
+ "r od",
+ "sp e",
+ "s pe",
+ "urs or",
+ "▁le ave",
+ "er k",
+ "▁t al",
+ "▁ta l",
+ "▁ tal",
+ "▁b ottom",
+ "▁bot tom",
+ "▁bott om",
+ "▁ bottom",
+ "I O",
+ "▁pop ular",
+ "▁popula r",
+ "▁popul ar",
+ "ig o",
+ "i go",
+ "▁T ime",
+ "▁Tim e",
+ "▁Ti me",
+ "▁ Time",
+ "val ues",
+ "value s",
+ "valu es",
+ "▁L oc",
+ "▁Lo c",
+ "▁ Loc",
+ "▁C lub",
+ "▁Cl ub",
+ "▁an che",
+ "▁anc he",
+ "▁anch e",
+ "▁ anche",
+ "ia ł",
+ "i ał",
+ "і ї",
+ "Om ega",
+ "▁loc ated",
+ "▁locate d",
+ "▁ located",
+ "U rl",
+ "▁E sp",
+ "▁Es p",
+ "▁ Esp",
+ "л ы",
+ "ц ь",
+ "ul ate",
+ "ula te",
+ "u late",
+ "▁j oin",
+ "▁jo in",
+ "▁ join",
+ "av es",
+ "ave s",
+ "a ves",
+ "ve t",
+ "v et",
+ "li o",
+ "l io",
+ "re move",
+ "rem ove",
+ "▁t oken",
+ "▁to ken",
+ "▁ token",
+ "▁op tim",
+ "▁opt im",
+ "▁ optim",
+ "▁c laim",
+ "▁cla im",
+ "olog ical",
+ "▁c ss",
+ "▁cs s",
+ "▁ css",
+ "▁al though",
+ "▁ although",
+ "▁p riv",
+ "▁pr iv",
+ "▁pri v",
+ "▁ priv",
+ "▁B a",
+ "ü l",
+ "entic ation",
+ "enti cation",
+ "▁v en",
+ "▁ve n",
+ "▁ ven",
+ "Ser ver",
+ "Serv er",
+ "▁C ong",
+ "▁Con g",
+ "▁Co ng",
+ "NE T",
+ "N ET",
+ "CO N",
+ "C ON",
+ "d t",
+ "per ties",
+ "pert ies",
+ "▁e pis",
+ "▁ep is",
+ "wik ipedia",
+ "▁eng ine",
+ "▁ engine",
+ "▁f er",
+ "▁fe r",
+ "▁ fer",
+ "get Element",
+ "▁C la",
+ "▁Cl a",
+ "▁ Cla",
+ "ř í",
+ "▁r om",
+ "▁ro m",
+ "▁ rom",
+ "var epsilon",
+ "vare psilon",
+ "▁pr ime",
+ "▁prim e",
+ "▁pri me",
+ "▁ prime",
+ "is try",
+ "ist ry",
+ "istr y",
+ "pe cted",
+ "pect ed",
+ "pec ted",
+ "p ected",
+ "or age",
+ "ora ge",
+ "o rage",
+ "▁t ouch",
+ "▁to uch",
+ "▁tou ch",
+ "▁ touch",
+ "▁[ '",
+ "▁ ['",
+ "▁d an",
+ "▁da n",
+ "▁ dan",
+ "E m",
+ "ac iones",
+ "acion es",
+ "aci ones",
+ "a ciones",
+ "Ca n",
+ "C an",
+ "▁w hom",
+ "▁wh om",
+ "▁who m",
+ "▁be havior",
+ "▁behav ior",
+ "▁str ings",
+ "▁string s",
+ "▁ strings",
+ "▁E urop",
+ "▁Euro p",
+ "▁Eu rop",
+ "▁Eur op",
+ "▁R om",
+ "▁Ro m",
+ "ci rc",
+ "cir c",
+ "c irc",
+ "▁p un",
+ "▁pu n",
+ "▁reg ister",
+ "▁ register",
+ "b untu",
+ "ra in",
+ "rai n",
+ "r ain",
+ "O b",
+ "T A",
+ "▁s ometimes",
+ "▁some times",
+ "▁somet imes",
+ "▁m ent",
+ "▁me nt",
+ "▁men t",
+ "▁ ment",
+ "▁in teger",
+ "▁inte ger",
+ "▁ integer",
+ "▁J ac",
+ "▁Ja c",
+ "▁ Jac",
+ "le gate",
+ "leg ate",
+ "ot hing",
+ "oth ing",
+ "o thing",
+ "▁s ound",
+ "▁so und",
+ "▁sou nd",
+ "▁ sound",
+ "la ces",
+ "lace s",
+ "lac es",
+ "l aces",
+ "▁Б а",
+ "r b",
+ "d i",
+ "ле ния",
+ "▁them selves",
+ "▁B lack",
+ "▁Bl ack",
+ "▁Bla ck",
+ "▁ Black",
+ "▁s ettings",
+ "▁sett ings",
+ "▁setting s",
+ "▁ settings",
+ "▁n orm",
+ "▁no rm",
+ "▁nor m",
+ "▁ norm",
+ "▁r uns",
+ "▁run s",
+ "▁ru ns",
+ "▁N OT",
+ "▁NO T",
+ "▁ NOT",
+ "K E",
+ "▁per haps",
+ "▁ Я",
+ "▁m ol",
+ "▁mo l",
+ "▁a ns",
+ "▁an s",
+ "▁ ans",
+ "at re",
+ "atr e",
+ "a tre",
+ "▁D ies",
+ "▁Die s",
+ "▁Di es",
+ "To ken",
+ "T oken",
+ "an ie",
+ "ani e",
+ "a nie",
+ "▁all owed",
+ "▁allow ed",
+ "▁allo wed",
+ "▁ allowed",
+ "R ange",
+ "▁G ro",
+ "▁Gr o",
+ "vi a",
+ "v ia",
+ "ut orial",
+ "uto rial",
+ "utor ial",
+ "ens or",
+ "enso r",
+ "est ival",
+ "esti val",
+ "); \r",
+ ") ;\r",
+ "кра ї",
+ "▁turn ed",
+ "▁tur ned",
+ "sc ope",
+ "scop e",
+ "s cope",
+ "▁b ien",
+ "▁bi en",
+ "= $",
+ "▁ext ension",
+ "▁extens ion",
+ "▁ extension",
+ "at ore",
+ "ator e",
+ "ato re",
+ "▁Р о",
+ "▁spec ify",
+ "ed u",
+ "e du",
+ "Dat os",
+ "D atos",
+ "▁st ored",
+ "▁stor ed",
+ "▁store d",
+ "▁sto red",
+ "▁p arse",
+ "▁par se",
+ "▁ parse",
+ "▁an swers",
+ "▁answer s",
+ "▁ans wers",
+ "il ls",
+ "ill s",
+ "▁he ard",
+ "▁hear d",
+ "l u",
+ "▁T HE",
+ "▁TH E",
+ "▁ THE",
+ "▁g én",
+ "▁gé n",
+ "▁f ul",
+ "▁fu l",
+ "▁ ful",
+ "e z",
+ "▁P rem",
+ "▁Pr em",
+ "▁Pre m",
+ "th en",
+ "the n",
+ "t hen",
+ "d p",
+ "сь кого",
+ "сько го",
+ "ськ ого",
+ "▁S i",
+ "▁ Si",
+ "ç o",
+ "Ed it",
+ "E dit",
+ "кі в",
+ "к ів",
+ "▁Л и",
+ "▁S ing",
+ "▁Si ng",
+ "▁Sin g",
+ "▁ Sing",
+ "▁c ateg",
+ "▁cat eg",
+ "Eq u",
+ "E qu",
+ "▁g uer",
+ "▁gu er",
+ "▁ guer",
+ "W idth",
+ "▁Christ ian",
+ "st at",
+ "sta t",
+ "s tat",
+ "W rite",
+ "▁w oman",
+ "▁wo man",
+ "wo od",
+ "w ood",
+ "V is",
+ "ра з",
+ "▁$ $\\",
+ "▁$$ \\",
+ "ode r",
+ "od er",
+ "o der",
+ "▁b ool",
+ "▁bo ol",
+ "▁ bool",
+ "▁intern ational",
+ "но сть",
+ "ност ь",
+ "нос ть",
+ "▁Rich ard",
+ "▁Ric hard",
+ "▁add ition",
+ "▁Mus ic",
+ "▁ Music",
+ "▁a ber",
+ "▁ab er",
+ "t ó",
+ "▁h ier",
+ "▁hi er",
+ "ug h",
+ "u gh",
+ "▁p ob",
+ "▁po b",
+ "▁t ables",
+ "▁table s",
+ "▁tab les",
+ "▁ta bles",
+ "▁ tables",
+ "D o",
+ "▁high er",
+ "ps i",
+ "p si",
+ "r á",
+ "▁act ive",
+ "▁activ e",
+ "▁ active",
+ "▁T able",
+ "▁Ta ble",
+ "▁Tab le",
+ "▁ Table",
+ "њ е",
+ "▁de scription",
+ "▁des cription",
+ "▁descri ption",
+ "▁descript ion",
+ "▁ description",
+ "▁se emed",
+ "▁see med",
+ "▁seem ed",
+ "ís t",
+ "í st",
+ "▁my self",
+ "▁m enu",
+ "▁me nu",
+ "▁men u",
+ "▁ menu",
+ "de l",
+ "d el",
+ "▁ ž",
+ "el e",
+ "e le",
+ "A ut",
+ "▁г ру",
+ "mu t",
+ "m ut",
+ "oo n",
+ "o on",
+ "as c",
+ "a sc",
+ "bu g",
+ "b ug",
+ "▁m oved",
+ "▁mov ed",
+ "▁mo ved",
+ "▁move d",
+ "C L",
+ "▁data s",
+ "▁dat as",
+ "▁ datas",
+ "S O",
+ "о ло",
+ "▁Ge org",
+ "▁re ach",
+ "▁r each",
+ ": \"",
+ "▁e valu",
+ "▁ev alu",
+ "▁eval u",
+ "▁ evalu",
+ "▁H el",
+ "▁He l",
+ "▁ Hel",
+ "▁R iver",
+ "▁Riv er",
+ "▁Ri ver",
+ "▁А р",
+ "▁ Ар",
+ "// //",
+ "/// /",
+ "/ ///",
+ "▁s ets",
+ "▁se ts",
+ "▁set s",
+ "▁ sets",
+ "▁O lymp",
+ "Ad apter",
+ ". '",
+ "ov ern",
+ "over n",
+ "ove rn",
+ "o vern",
+ "▁L ord",
+ "▁Lo rd",
+ "▁Lor d",
+ "! --",
+ "jp g",
+ "j pg",
+ "im ento",
+ "iment o",
+ "imen to",
+ "▁Pro f",
+ "▁Pr of",
+ "▁ach ieve",
+ "▁achiev e",
+ "} :",
+ "▁in cor",
+ "▁inc or",
+ "▁o nder",
+ "▁on der",
+ "▁onde r",
+ "▁ onder",
+ "en gl",
+ "eng l",
+ "AB LE",
+ "▁M ary",
+ "▁Mar y",
+ "▁Ma ry",
+ "▁w aren",
+ "▁war en",
+ "▁wa ren",
+ "la ge",
+ "lag e",
+ "l age",
+ "De c",
+ "D ec",
+ "анг л",
+ "en cias",
+ "enc ias",
+ "encia s",
+ "enci as",
+ "ле й",
+ "л ей",
+ "▁M achine",
+ "▁Mach ine",
+ "▁ Machine",
+ "▁А н",
+ "ud a",
+ "u da",
+ "▁ ś",
+ "▁X X",
+ "▁ XX",
+ "on ly",
+ "ле ние",
+ "▁tamb ién",
+ "ne j",
+ "n ej",
+ "▁rel ative",
+ "▁relativ e",
+ "▁ relative",
+ "▁h ours",
+ "▁ho urs",
+ "▁hour s",
+ "▁ind eed",
+ "▁inde ed",
+ "un do",
+ "und o",
+ "in gu",
+ "ing u",
+ "ar ea",
+ "are a",
+ "a rea",
+ "▁C reate",
+ "▁Cre ate",
+ "▁ Create",
+ "be it",
+ "bei t",
+ "▁rem oved",
+ "▁remove d",
+ "▁remov ed",
+ "ma ster",
+ "mas ter",
+ "maste r",
+ "m aster",
+ "ha us",
+ "h aus",
+ "▁B ern",
+ "▁Be rn",
+ "▁Ber n",
+ "▁sp eed",
+ "▁spe ed",
+ "▁ speed",
+ "▁B ay",
+ "▁Ba y",
+ "▁A tt",
+ "▁At t",
+ "▁ Att",
+ "▁N one",
+ "▁No ne",
+ "▁Non e",
+ "▁ None",
+ "app lication",
+ "ü d",
+ "▁f it",
+ "▁fi t",
+ "▁ fit",
+ "▁M aria",
+ "▁Mar ia",
+ "▁Ma ria",
+ "▁Mari a",
+ "▁n ord",
+ "▁no rd",
+ "▁nor d",
+ "▁s plit",
+ "▁sp lit",
+ "▁spl it",
+ "▁ split",
+ "▁st ru",
+ "▁str u",
+ "▁ stru",
+ "▁o fficial",
+ "▁off icial",
+ "▁offic ial",
+ "▁offici al",
+ "▁exec ute",
+ "▁execut e",
+ "▁ execute",
+ "ou ve",
+ "ouv e",
+ "o uve",
+ "{ {",
+ "▁A p",
+ "▁ Ap",
+ "▁к у",
+ "▁ ку",
+ "I L",
+ "▁ ^",
+ "di m",
+ "d im",
+ "▁set up",
+ "▁ setup",
+ "с к",
+ "▁sh are",
+ "▁ share",
+ "▁min utes",
+ "▁minute s",
+ "gl e",
+ "g le",
+ "oc o",
+ "o co",
+ "st ell",
+ "ste ll",
+ "▁C oun",
+ "▁Co un",
+ "▁Cou n",
+ "▁tem per",
+ "▁temp er",
+ "▁ temper",
+ "ke it",
+ "сь кий",
+ "a o",
+ "▁L ong",
+ "▁Lo ng",
+ "▁ Long",
+ "( &",
+ "ка н",
+ "к ан",
+ "▁d ens",
+ "▁de ns",
+ "▁den s",
+ "▁ dens",
+ "Bu t",
+ "B ut",
+ "X X",
+ "DA TE",
+ "DAT E",
+ "D ATE",
+ "ga n",
+ "g an",
+ ".) .",
+ ". ).",
+ "▁en try",
+ "▁ent ry",
+ "▁entr y",
+ "▁ entry",
+ "inst all",
+ "▁з на",
+ "▁ зна",
+ "▁S om",
+ "▁So m",
+ "Comm and",
+ "ße n",
+ "ß en",
+ "▁start ing",
+ "▁star ting",
+ "▁s to",
+ "▁st o",
+ "▁ sto",
+ "I G",
+ "▁min im",
+ "▁mi nim",
+ "▁mini m",
+ "▁exp licit",
+ "▁explic it",
+ "▁by tes",
+ "▁byte s",
+ "▁ bytes",
+ "▁par ty",
+ "▁part y",
+ "▁ party",
+ "to ber",
+ "t ober",
+ "▁G rand",
+ "▁Gr and",
+ "▁Gra nd",
+ "▁Gran d",
+ "▁V or",
+ "▁Vo r",
+ "▁ Vor",
+ "▁l eur",
+ "▁le ur",
+ "▁ leur",
+ "Doc ument",
+ "D ocument",
+ "er c",
+ "e rc",
+ "ens ive",
+ "C P",
+ "en v",
+ "▁arg uments",
+ "▁argument s",
+ "▁ arguments",
+ "▁G ran",
+ "▁Gr an",
+ "▁Gra n",
+ "ar ily",
+ "ari ly",
+ "▁l in",
+ "▁li n",
+ "▁ lin",
+ "t n",
+ "( -",
+ "ge q",
+ "g eq",
+ "▁F amil",
+ "▁Fa mil",
+ "▁Fam il",
+ "▁ Famil",
+ "▁Б о",
+ "▁t our",
+ "▁to ur",
+ "▁tou r",
+ "▁n av",
+ "▁na v",
+ "▁ nav",
+ "▁proper ly",
+ "▁M rs",
+ "▁Mr s",
+ "▁M el",
+ "▁Me l",
+ "▁sc ale",
+ "▁scal e",
+ "▁ scale",
+ "ast ic",
+ "d s",
+ "▁S ir",
+ "▁Si r",
+ "▁Ch urch",
+ "}^ {\\",
+ "}^{ \\",
+ "} ^{\\",
+ "yo u",
+ "y ou",
+ "/ .",
+ "S o",
+ "▁br ought",
+ "▁r ole",
+ "▁ro le",
+ "▁rol e",
+ "▁ role",
+ "▁S ur",
+ "▁Su r",
+ "▁ Sur",
+ "▁f ond",
+ "▁fo nd",
+ "▁fon d",
+ "▁g es",
+ "▁ge s",
+ "▁ ges",
+ "ż e",
+ "et en",
+ "ete n",
+ "e ten",
+ "▁é tait",
+ "▁ét ait",
+ "▁ était",
+ "SE R",
+ "S ER",
+ "▁ко торы",
+ "▁кото ры",
+ "▁equ ation",
+ "▁ equation",
+ "as px",
+ "asp x",
+ "▁A fr",
+ "▁Af r",
+ "▁d it",
+ "▁di t",
+ "▁ dit",
+ "em pty",
+ "emp ty",
+ "empt y",
+ "al ement",
+ "ale ment",
+ "alem ent",
+ "a lement",
+ "wr ap",
+ "w rap",
+ "▁B et",
+ "▁Be t",
+ "▁col lect",
+ "▁coll ect",
+ "▁colle ct",
+ "▁ collect",
+ "▁g it",
+ "▁gi t",
+ "▁ git",
+ "▁v ie",
+ "▁vi e",
+ "▁ vie",
+ "▁. .",
+ "▁ ..",
+ "ро й",
+ "▁< ?",
+ "▁ ",
+ "▁ed uc",
+ "k l",
+ "ens is",
+ "▁O R",
+ "▁ OR",
+ "▁H i",
+ "▁ Hi",
+ "▁C our",
+ "▁Co ur",
+ "▁Cou r",
+ "б ы",
+ "ce rt",
+ "cer t",
+ "c ert",
+ "▁G es",
+ "▁Ge s",
+ "ess or",
+ "esso r",
+ "Ma in",
+ "M ain",
+ "▁ лю",
+ "ca de",
+ "c ade",
+ "do t",
+ "d ot",
+ "au gh",
+ "aug h",
+ "a ugh",
+ "hi b",
+ "h ib",
+ "▁autom atically",
+ "▁auto matically",
+ "▁automat ically",
+ "▁automatic ally",
+ "▁sp ir",
+ "pr esent",
+ "pre sent",
+ "pres ent",
+ "▁Febru ary",
+ "▁Februar y",
+ "▁E lle",
+ "▁El le",
+ "▁Ell e",
+ "cus tom",
+ "c ustom",
+ "▁pro get",
+ "▁admin istr",
+ "▁administ r",
+ "A A",
+ "▁b orn",
+ "▁bo rn",
+ "▁bor n",
+ "▁ born",
+ "▁Col lege",
+ "▁Colleg e",
+ "▁Coll ege",
+ "at hol",
+ "ath ol",
+ "` )",
+ "ier re",
+ "▁r an",
+ "▁ra n",
+ "▁ ran",
+ "▁prof ession",
+ "▁profess ion",
+ "og en",
+ "oge n",
+ "o gen",
+ "}_ {\\",
+ "}_{ \\",
+ "} _{\\",
+ "▁act ivity",
+ "▁activ ity",
+ "▁ activity",
+ "▁sc roll",
+ "▁scr oll",
+ "▁ scroll",
+ "▁pro ve",
+ "▁pr ove",
+ "▁prov e",
+ "ibr ary",
+ "i brary",
+ "er ies",
+ "erie s",
+ "eri es",
+ "e ries",
+ "Re ad",
+ "R ead",
+ "ye ar",
+ "y ear",
+ "▁l ang",
+ "▁la ng",
+ "▁lan g",
+ "▁ lang",
+ "De t",
+ "D et",
+ "▁k new",
+ "▁kn ew",
+ "▁kne w",
+ "▁prote cted",
+ "▁protect ed",
+ "▁prot ected",
+ "▁ protected",
+ "▁w or",
+ "▁wo r",
+ "▁ wor",
+ "▁e ffic",
+ "▁eff ic",
+ "▁r ég",
+ "▁ré g",
+ "▁the ory",
+ "▁ theory",
+ "▁pub lished",
+ "▁publish ed",
+ "re al",
+ "rea l",
+ "▁T our",
+ "▁To ur",
+ "▁dur ante",
+ "▁durant e",
+ "ä s",
+ "▁pos itive",
+ "▁posit ive",
+ "▁for ward",
+ "▁ forward",
+ "▁R el",
+ "▁Re l",
+ "▁ Rel",
+ "{ \"",
+ "par k",
+ "p ark",
+ "▁U m",
+ "▁e er",
+ "en ta",
+ "ent a",
+ "▁i mag",
+ "▁im ag",
+ "но ї",
+ "pi el",
+ "pie l",
+ "p iel",
+ "▁j Query",
+ "▁ jQuery",
+ "is me",
+ "ism e",
+ "ch ni",
+ "chn i",
+ "or gan",
+ "org an",
+ "▁ar gs",
+ "▁arg s",
+ "▁ args",
+ "oi r",
+ "o ir",
+ "he im",
+ "ri an",
+ "ria n",
+ "r ian",
+ "el ess",
+ "eles s",
+ "ele ss",
+ "e less",
+ "us es",
+ "use s",
+ "ди н",
+ "д ин",
+ "ic ión",
+ "ici ón",
+ "ició n",
+ "i ción",
+ "▁ind ust",
+ "▁indu st",
+ "▁ indust",
+ "▁w ish",
+ "▁wis h",
+ "án y",
+ "á ny",
+ "oc a",
+ "o ca",
+ "▁ang ular",
+ "▁ angular",
+ "ie ved",
+ "ieve d",
+ "iev ed",
+ "▁occ ur",
+ "▁oc cur",
+ "SE LECT",
+ "on ia",
+ "oni a",
+ "o nia",
+ "ad min",
+ "▁B est",
+ "▁Be st",
+ "▁Bes t",
+ "▁ Best",
+ "▁э то",
+ "о гра",
+ "▁l oss",
+ "▁lo ss",
+ "▁los s",
+ "▁ loss",
+ "▁b al",
+ "▁ba l",
+ "▁ bal",
+ "▁Р ос",
+ "▁Ро с",
+ "▁care er",
+ "▁п е",
+ "▁ пе",
+ "I X",
+ "▁f all",
+ "▁fa ll",
+ "▁fal l",
+ "▁ fall",
+ "▁R ob",
+ "▁Ro b",
+ "▁ Rob",
+ "▁O P",
+ "▁ OP",
+ "en ed",
+ "ene d",
+ "e ned",
+ "graph ics",
+ "▁c oming",
+ "▁com ing",
+ "▁co ming",
+ "▁ coming",
+ "Up date",
+ "▁d ied",
+ "▁di ed",
+ "▁die d",
+ "ed en",
+ "ede n",
+ "e den",
+ "▁a bs",
+ "▁ab s",
+ "▁ abs",
+ "▁in ner",
+ "▁inn er",
+ "▁inne r",
+ "▁ inner",
+ "▁t rav",
+ "▁tr av",
+ "▁tra v",
+ "сто я",
+ "z ą",
+ "é p",
+ "▁Gr oup",
+ "▁Gro up",
+ "▁ Group",
+ "▁c el",
+ "▁ce l",
+ "▁ cel",
+ "▁st uff",
+ "▁situ ation",
+ "▁$ {",
+ "▁ ${",
+ "ac le",
+ "a cle",
+ "▁pur pose",
+ "▁F ire",
+ "▁Fir e",
+ "▁ Fire",
+ "▁O h",
+ "▁ Oh",
+ "▁Se cond",
+ "▁Sec ond",
+ "▁ Second",
+ "▁up load",
+ "▁ upload",
+ "os tał",
+ "ost ał",
+ "osta ł",
+ "ю щи",
+ "Aut h",
+ "A uth",
+ "▁show ing",
+ "▁sho wing",
+ "▁complet ely",
+ "▁complete ly",
+ "av el",
+ "ave l",
+ "a vel",
+ "b d",
+ "▁pro ced",
+ "▁proc ed",
+ "▁ Ö",
+ "cont rol",
+ "contr ol",
+ "▁th ank",
+ "▁than k",
+ "und red",
+ "▁t om",
+ "▁to m",
+ "▁ tom",
+ "▁ex amples",
+ "▁example s",
+ "▁exam ples",
+ "▁ examples",
+ "▁re member",
+ "▁rem ember",
+ "▁ра бо",
+ "▁ рабо",
+ "▁poss ib",
+ "▁det ect",
+ "▁p oor",
+ "▁po or",
+ "▁O p",
+ "▁ Op",
+ "▁cent ury",
+ "▁ century",
+ "ut ter",
+ "utt er",
+ "▁lo gin",
+ "▁log in",
+ "▁ login",
+ "un st",
+ "uns t",
+ "Out put",
+ "▁other wise",
+ "la n",
+ "l an",
+ "ту р",
+ "т ур",
+ "▁с ов",
+ "▁со в",
+ "▁ сов",
+ "▁gr oups",
+ "▁group s",
+ "▁gro ups",
+ "▁ groups",
+ "ri p",
+ "r ip",
+ "▁s hell",
+ "▁sh ell",
+ "▁she ll",
+ "▁ shell",
+ "▁d istrict",
+ "▁dist rict",
+ "▁rec ords",
+ "▁record s",
+ "▁si è",
+ "fort un",
+ "en ty",
+ "ent y",
+ "▁T re",
+ "▁Tr e",
+ "▁ch anging",
+ "▁chang ing",
+ "сле д",
+ "aug ht",
+ "augh t",
+ "▁de ep",
+ "▁ deep",
+ "sub set",
+ "ag y",
+ "a gy",
+ "en dar",
+ "end ar",
+ "enda r",
+ "ja x",
+ "j ax",
+ "O M",
+ "E l",
+ "im ate",
+ "ima te",
+ "imat e",
+ "i mate",
+ "ar do",
+ "ard o",
+ "▁p lot",
+ "▁pl ot",
+ "▁ plot",
+ "▁vis it",
+ "▁b ug",
+ "▁bu g",
+ "▁ bug",
+ "▁в се",
+ "▁вс е",
+ "▁op ened",
+ "▁open ed",
+ "▁re pla",
+ "▁rep la",
+ "▁Hen ry",
+ "▁p p",
+ "▁ pp",
+ "ba s",
+ "b as",
+ "▁d ark",
+ "▁dar k",
+ "▁ dark",
+ "▁Mart in",
+ "▁ Martin",
+ "▁re source",
+ "▁res ource",
+ "▁ resource",
+ "il ing",
+ "ili ng",
+ "i ling",
+ "▁w atch",
+ "▁wat ch",
+ "▁ watch",
+ "re place",
+ "rep lace",
+ "▁re lease",
+ "▁ release",
+ "Lo cation",
+ "Loc ation",
+ "L ocation",
+ "▁le arning",
+ "▁learn ing",
+ "▁lear ning",
+ "▁ learning",
+ "me nu",
+ "men u",
+ "m enu",
+ "▁all ows",
+ "▁allow s",
+ "▁allo ws",
+ "ъ р",
+ "L ength",
+ "▁wh atever",
+ "▁what ever",
+ "▁p ages",
+ "▁page s",
+ "▁pa ges",
+ "▁pag es",
+ "▁ pages",
+ "▁comp iler",
+ "▁compile r",
+ "▁ compiler",
+ "▁так же",
+ "▁P an",
+ "▁Pa n",
+ "▁ Pan",
+ "comm and",
+ "▁ro ad",
+ "▁ road",
+ "▁un less",
+ "▁ unless",
+ "` ?",
+ "▁dis cover",
+ "▁disc over",
+ "▁disco ver",
+ "▁о н",
+ "▁ он",
+ "} ]",
+ "bo ur",
+ "b our",
+ "▁C ould",
+ "▁Co uld",
+ "▁Cou ld",
+ "▁ Could",
+ "▁re gex",
+ "▁reg ex",
+ "▁ regex",
+ "▁p s",
+ "▁ ps",
+ "C D",
+ "и з",
+ "▁w ife",
+ "am enti",
+ "ament i",
+ "amen ti",
+ "▁f air",
+ "▁fa ir",
+ "▁D B",
+ "▁ DB",
+ "▁C up",
+ "▁Cu p",
+ "en en",
+ "ene n",
+ "e nen",
+ "aj ax",
+ "aja x",
+ "a jax",
+ "oth èque",
+ "▁se iner",
+ "▁sein er",
+ "▁seine r",
+ "▁sei ner",
+ "ic ker",
+ "ick er",
+ "i cker",
+ "á m",
+ "ex change",
+ "ol es",
+ "ole s",
+ "o les",
+ "I F",
+ "▁Д о",
+ "oh n",
+ "o hn",
+ "▁g row",
+ "▁gr ow",
+ "▁gro w",
+ "▁T hus",
+ "▁Th us",
+ "sp ec",
+ "spe c",
+ "s pec",
+ "▁h atte",
+ "▁ha tte",
+ "▁hat te",
+ "# ,",
+ "all el",
+ "alle l",
+ "▁r ate",
+ "▁ra te",
+ "▁rat e",
+ "▁ rate",
+ "▁cent ral",
+ "▁ central",
+ "▁V an",
+ "▁Va n",
+ "if orn",
+ "R un",
+ "▁stud y",
+ "▁X ML",
+ "▁ XML",
+ "▁C he",
+ "▁Ch e",
+ "▁ Che",
+ "▁be aut",
+ "mi d",
+ "m id",
+ "▁adv ance",
+ "V er",
+ "т я",
+ "▁h ands",
+ "▁hand s",
+ "▁han ds",
+ "▁l ay",
+ "▁la y",
+ "▁ lay",
+ "▁ š",
+ "▁O S",
+ "▁ OS",
+ "▁{ }",
+ "▁ {}",
+ "Pr e",
+ "P re",
+ "▁H all",
+ "▁Ha ll",
+ "▁Hal l",
+ "im p",
+ "i mp",
+ "▁s un",
+ "▁su n",
+ "▁ sun",
+ "▁st eps",
+ "▁ste ps",
+ "▁step s",
+ "▁ steps",
+ "▁j ud",
+ "▁ju d",
+ "▁ jud",
+ "qu i",
+ "q ui",
+ "▁b oot",
+ "▁bo ot",
+ "▁ boot",
+ "▁% >",
+ "▁В а",
+ "no st",
+ "nos t",
+ "n ost",
+ "▁n em",
+ "▁ne m",
+ "▁ nem",
+ "▁p en",
+ "▁pe n",
+ "▁ pen",
+ "Op en",
+ "O pen",
+ "▁ch urch",
+ "ко н",
+ "к он",
+ "▁a verage",
+ "▁aver age",
+ "▁ave rage",
+ "▁com ments",
+ "▁comm ents",
+ "▁comment s",
+ "▁ comments",
+ "▁correspond ing",
+ "lev ant",
+ "▁b ed",
+ "▁be d",
+ "▁ bed",
+ "▁mean ing",
+ "V ersion",
+ "Lin k",
+ "L ink",
+ "be l",
+ "b el",
+ "▁ext ract",
+ "▁extra ct",
+ "▁extr act",
+ "▁ extract",
+ "ś ć",
+ "▁I V",
+ "▁ IV",
+ "▁I r",
+ "▁comp uter",
+ "▁comput er",
+ "▁compute r",
+ "▁a ffect",
+ "▁af fect",
+ "▁aff ect",
+ "▁С та",
+ "▁Ст а",
+ "A X",
+ "so rt",
+ "s ort",
+ "▁s pecies",
+ "▁spe cies",
+ "▁spec ies",
+ "▁specie s",
+ "▁ species",
+ "▁O per",
+ "▁Op er",
+ "▁ Oper",
+ "▁h ash",
+ "▁ha sh",
+ "▁has h",
+ "▁ hash",
+ "ch es",
+ "che s",
+ "c hes",
+ "▁Einz eln",
+ "▁Einzel n",
+ "▁ke ys",
+ "▁key s",
+ "▁ keys",
+ "▁mar zo",
+ "▁inter pret",
+ "▁interpre t",
+ "ho od",
+ "h ood",
+ "▁co ordin",
+ "▁coord in",
+ "ö s",
+ "ra ge",
+ "rag e",
+ "r age",
+ "et z",
+ "e tz",
+ "iz a",
+ "i za",
+ "де р",
+ "д ер",
+ "ü t",
+ "^ *",
+ "▁mod ify",
+ "▁term in",
+ "▁ter min",
+ "▁ termin",
+ "▁c red",
+ "▁cre d",
+ "▁cr ed",
+ "▁ cred",
+ "zo n",
+ "z on",
+ "ну ю",
+ "н ую",
+ "▁m ie",
+ "▁mi e",
+ "▁' '",
+ "▁ ''",
+ "▁M os",
+ "▁Mo s",
+ "▁conne cted",
+ "▁connect ed",
+ "▁conn ected",
+ "▁ connected",
+ "N O",
+ "▁comp ile",
+ "▁ compile",
+ "▁\" \\",
+ "▁ \"\\",
+ "▁c at",
+ "▁ca t",
+ "▁ cat",
+ "f iddle",
+ "ut a",
+ "u ta",
+ "Acc ess",
+ "Ac cess",
+ "A ccess",
+ "▁S to",
+ "▁St o",
+ "▁ Sto",
+ "▁B ur",
+ "▁Bu r",
+ "▁n orth",
+ "▁nor th",
+ "G amma",
+ "▁al loc",
+ "▁all oc",
+ "▁allo c",
+ "▁ alloc",
+ "In it",
+ "I nit",
+ "▁L ink",
+ "▁Lin k",
+ "▁ Link",
+ "ial ize",
+ "iali ze",
+ "Im pl",
+ "Imp l",
+ "ou pe",
+ "oup e",
+ "rop ri",
+ "▁G old",
+ "▁Go ld",
+ "▁Gol d",
+ "▁s olo",
+ "▁so lo",
+ "▁sol o",
+ "▁D ist",
+ "▁Dis t",
+ "▁Di st",
+ "▁ Dist",
+ ", -",
+ "na v",
+ "n av",
+ "▁al ert",
+ "▁ale rt",
+ "▁ alert",
+ "es is",
+ "esi s",
+ "▁O s",
+ "▁ Os",
+ "// /",
+ "/ //",
+ "▁f eb",
+ "▁fe b",
+ "▁- ->",
+ "▁-- >",
+ "▁ -->",
+ "fo ot",
+ "foo t",
+ "f oot",
+ "▁F ried",
+ "▁Fr ied",
+ "▁Fri ed",
+ "▁Einzeln ach",
+ "▁Einzel nach",
+ "▁re v",
+ "▁r ev",
+ "▁ rev",
+ "ze it",
+ "▁S tat",
+ "▁St at",
+ "▁Sta t",
+ "▁ Stat",
+ "▁S eg",
+ "▁Se g",
+ "▁ Seg",
+ "▁b lo",
+ "▁bl o",
+ "▁ blo",
+ "wi ck",
+ "w ick",
+ "E L",
+ "ca ption",
+ "cap tion",
+ "capt ion",
+ "he ader",
+ "head er",
+ "▁pres ident",
+ "▁presiden t",
+ "▁mult ip",
+ "▁multi p",
+ "▁mul tip",
+ "▁ multip",
+ "▁Einzelnach weise",
+ "▁se ine",
+ "▁sein e",
+ "▁sei ne",
+ "? ”",
+ "Func tion",
+ "Fun ction",
+ "F unction",
+ "▁St and",
+ "▁Sta nd",
+ "▁Stan d",
+ "▁ Stand",
+ "▁F unction",
+ "▁Fun ction",
+ "▁ Function",
+ "▁? >",
+ "▁ ?>",
+ "▁B ill",
+ "▁Bi ll",
+ "▁Bil l",
+ "▁s pect",
+ "▁sp ect",
+ "▁spe ct",
+ "▁spec t",
+ "▁ spect",
+ "▁re direct",
+ "▁red irect",
+ "▁ redirect",
+ "ru pt",
+ "rup t",
+ "r upt",
+ "▁w alk",
+ "▁wal k",
+ "▁ walk",
+ "в ши",
+ "spring framework",
+ "pl ace",
+ "pla ce",
+ "p lace",
+ "é ho",
+ "Ent ity",
+ "▁Ser vice",
+ "▁Serv ice",
+ "▁ Service",
+ "in te",
+ "int e",
+ "▁tr aining",
+ "▁tra ining",
+ "▁train ing",
+ "▁ training",
+ "▁( `",
+ "▁ (`",
+ "фо р",
+ "ф ор",
+ "▁к ра",
+ "▁ кра",
+ "au r",
+ "a ur",
+ "▁f etch",
+ "▁fet ch",
+ "▁ fetch",
+ "▁ †",
+ "▁m ême",
+ "▁ même",
+ "▁( '",
+ "▁ ('",
+ "at ively",
+ "ative ly",
+ "ativ ely",
+ "▁exec ut",
+ "ä ch",
+ "▁Catalog ue",
+ "ba sed",
+ "base d",
+ "bas ed",
+ "b ased",
+ "Att ribute",
+ "▁s pring",
+ "▁sp ring",
+ "▁spr ing",
+ "▁ spring",
+ "ph one",
+ "phon e",
+ "т ра",
+ "▁п и",
+ "▁ пи",
+ "те ра",
+ "тер а",
+ "т ера",
+ "▁` \\",
+ "▁O d",
+ "On e",
+ "O ne",
+ "se nd",
+ "sen d",
+ "s end",
+ "bo n",
+ "b on",
+ "▁ °",
+ "M O",
+ "▁as king",
+ "▁ask ing",
+ "▁o ù",
+ "▁ing år",
+ "▁test ing",
+ "▁ testing",
+ "▁ф а",
+ "▁ фа",
+ "▁B ook",
+ "▁Bo ok",
+ "▁ Book",
+ "im m",
+ "i mm",
+ "▁pro gress",
+ "▁ progress",
+ "br o",
+ "b ro",
+ "F irst",
+ "▁p hot",
+ "▁ph ot",
+ "▁O N",
+ "▁ ON",
+ "Tem plate",
+ "Temp late",
+ "develop er",
+ "an not",
+ "ann ot",
+ "anno t",
+ "▁> =",
+ "▁ >=",
+ "miss ion",
+ "m ission",
+ "▁k tó",
+ "▁ któ",
+ "p c",
+ "ba ch",
+ "b ach",
+ "ze nt",
+ "zen t",
+ "z ent",
+ "ue d",
+ "u ed",
+ "▁o nes",
+ "▁on es",
+ "▁one s",
+ "▁ ones",
+ "ј и",
+ "▁r out",
+ "▁ro ut",
+ "▁rou t",
+ "▁ rout",
+ "▁К и",
+ "Pos t",
+ "Po st",
+ "P ost",
+ "ці ї",
+ "ц ії",
+ "▁V ir",
+ "▁Vi r",
+ "ne k",
+ "n ek",
+ "ag ing",
+ "agi ng",
+ "agin g",
+ "a ging",
+ "▁о к",
+ "▁ ок",
+ "iz ont",
+ "izo nt",
+ "izon t",
+ "▁ag osto",
+ "▁ago sto",
+ "▁cho ose",
+ "▁ choose",
+ "▁ \r",
+ "▁system s",
+ "▁syst ems",
+ "lo ss",
+ "los s",
+ "l oss",
+ "ien te",
+ "ient e",
+ "i ente",
+ "▁C re",
+ "▁Cr e",
+ "▁ Cre",
+ "▁con tra",
+ "▁cont ra",
+ "▁contr a",
+ "▁ contra",
+ "um s",
+ "u ms",
+ "▁begin ning",
+ "em y",
+ "e my",
+ "ist ics",
+ "istic s",
+ "isti cs",
+ "▁s erved",
+ "▁ser ved",
+ "▁serv ed",
+ "▁serve d",
+ "Do wn",
+ "D own",
+ "option s",
+ "opt ions",
+ "o ptions",
+ "▁G overn",
+ "▁Go vern",
+ "▁B Y",
+ "▁ BY",
+ "▁j est",
+ "▁je st",
+ "▁ jest",
+ "t é",
+ "▁cont inue",
+ "▁contin ue",
+ "▁continu e",
+ "▁ continue",
+ "pe rs",
+ "per s",
+ "p ers",
+ "▁eas ier",
+ "▁c os",
+ "▁co s",
+ "▁ cos",
+ "es so",
+ "ess o",
+ "> >",
+ "Ne t",
+ "N et",
+ "▁B or",
+ "▁Bo r",
+ "▁C r",
+ "▁ Cr",
+ "▁trans fer",
+ "▁C SS",
+ "▁CS S",
+ "▁ CSS",
+ "▁fin ns",
+ "▁х о",
+ "▁ хо",
+ "us ername",
+ "user name",
+ "▁con stru",
+ "▁const ru",
+ "▁p ain",
+ "▁pa in",
+ "▁T em",
+ "▁Te m",
+ "▁ Tem",
+ "▁spec ified",
+ "▁b rit",
+ "▁br it",
+ "▁ brit",
+ "ски е",
+ "с кие",
+ "ir k",
+ "ra pper",
+ "rap per",
+ "r apper",
+ "▁c ounter",
+ "▁co unter",
+ "▁count er",
+ "▁coun ter",
+ "▁ counter",
+ "▁[ \"",
+ "▁ [\"",
+ "ode d",
+ "od ed",
+ "o ded",
+ "да н",
+ "д ан",
+ "pro perty",
+ "ha rd",
+ "har d",
+ "h ard",
+ "ist rict",
+ "istr ict",
+ ") /",
+ "▁P our",
+ "▁Po ur",
+ "▁W here",
+ "▁Wh ere",
+ "▁Whe re",
+ "▁ Where",
+ "▁= ==",
+ "▁== =",
+ "▁ ===",
+ "▁s owie",
+ "▁so wie",
+ "▁sow ie",
+ "▁П ро",
+ "▁d ess",
+ "▁de ss",
+ "▁des s",
+ "▁ dess",
+ "▁t ras",
+ "▁tr as",
+ "▁tra s",
+ "▁ tras",
+ "▁у ча",
+ "▁O ver",
+ "▁ Over",
+ "no te",
+ "not e",
+ "n ote",
+ "▁Amer ica",
+ "▁ America",
+ "c p",
+ "▁gr ande",
+ "▁gra nde",
+ "▁gran de",
+ "▁grand e",
+ "M e",
+ ") -",
+ "Mod e",
+ "Mo de",
+ "M ode",
+ "▁pass ing",
+ "▁pas sing",
+ "▁g iving",
+ "▁giv ing",
+ "▁gi ving",
+ "C l",
+ "} /",
+ "Me nu",
+ "Men u",
+ "M enu",
+ "! !",
+ "ang ular",
+ "angu lar",
+ "▁la unch",
+ "▁ launch",
+ "var phi",
+ "▁Joh ann",
+ "▁Johan n",
+ "▁for each",
+ "▁fore ach",
+ "▁ foreach",
+ "r ó",
+ "se qu",
+ "seq u",
+ "s equ",
+ "if i",
+ "i fi",
+ "A m",
+ "ar p",
+ "a rp",
+ "▁b uffer",
+ "▁buf fer",
+ "▁buff er",
+ "▁ buffer",
+ "▁n i",
+ "▁ ni",
+ "▁m ix",
+ "▁mi x",
+ "▁ mix",
+ "▁M useum",
+ "▁Muse um",
+ "▁me ant",
+ "▁mean t",
+ "as i",
+ "a si",
+ "▁k an",
+ "▁ka n",
+ "▁ kan",
+ "пра в",
+ "п рав",
+ "Com p",
+ "Co mp",
+ "C omp",
+ "is toire",
+ "ist oire",
+ "isto ire",
+ "if ul",
+ "i ful",
+ "je r",
+ "j er",
+ "iss ions",
+ "ission s",
+ "Re source",
+ "Res ource",
+ "▁в оз",
+ "▁во з",
+ "▁S T",
+ "▁ ST",
+ "▁sol utions",
+ "▁solution s",
+ "▁be long",
+ "▁bel ong",
+ "▁As soci",
+ "▁Ass oci",
+ "▁ Associ",
+ "c f",
+ "▁M är",
+ "▁g rid",
+ "▁gr id",
+ "▁ grid",
+ "M ult",
+ "▁require s",
+ "▁requ ires",
+ "k k",
+ "▁t each",
+ "▁te ach",
+ "▁tea ch",
+ "eme inde",
+ "emein de",
+ "▁s quare",
+ "▁squ are",
+ "▁ square",
+ "▁ко ман",
+ "▁ком ан",
+ "▁E vent",
+ "▁Ev ent",
+ "▁Even t",
+ "▁ Event",
+ "▁r ules",
+ "▁rule s",
+ "▁ru les",
+ "▁ rules",
+ "▁b ur",
+ "▁bu r",
+ "▁ bur",
+ "▁e ing",
+ "▁ein g",
+ "▁ eing",
+ "▁M ai",
+ "▁Ma i",
+ "▁n am",
+ "▁na m",
+ "▁ nam",
+ "▁s lä",
+ "▁sl ä",
+ "hö r",
+ "h ör",
+ "▁t ip",
+ "▁ti p",
+ "▁ tip",
+ "▁Liter atur",
+ "▁s cope",
+ "▁sc ope",
+ "▁scop e",
+ "▁ scope",
+ "over line",
+ "▁ex it",
+ "▁ exit",
+ ") ?",
+ "be t",
+ "b et",
+ "▁v ict",
+ "▁vi ct",
+ "▁vic t",
+ "Of f",
+ "O ff",
+ "▁appro xim",
+ "▁G eb",
+ "▁Ge b",
+ "kt op",
+ "k top",
+ "he it",
+ "▁ Ю",
+ "tem plate",
+ "temp late",
+ "ро н",
+ "р он",
+ "▁u no",
+ "▁un o",
+ "▁ uno",
+ "Ser v",
+ "Se rv",
+ "S erv",
+ "▁frame work",
+ "▁ framework",
+ "oper ator",
+ "opera tor",
+ "▁gener ally",
+ "▁general ly",
+ "▁h undred",
+ "▁d ivers",
+ "▁di vers",
+ "▁div ers",
+ "▁diver s",
+ "ov i",
+ "o vi",
+ "▁r és",
+ "▁ré s",
+ "▁ rés",
+ "ab s",
+ "a bs",
+ "▁g al",
+ "▁ga l",
+ "▁ gal",
+ "ça is",
+ "ç ais",
+ "▁fe et",
+ "▁fee t",
+ "▁v irtual",
+ "▁virt ual",
+ "▁ virtual",
+ "cz y",
+ "c zy",
+ "ск у",
+ "с ку",
+ ". /",
+ "h u",
+ "an cy",
+ "anc y",
+ "▁recomm end",
+ "▁п ід",
+ "▁пі д",
+ "▁m oney",
+ "▁mon ey",
+ "▁mo ney",
+ "▁vers ions",
+ "▁version s",
+ "▁ versions",
+ "▁hel ps",
+ "▁help s",
+ "▁H or",
+ "▁Ho r",
+ "▁ Hor",
+ "Item s",
+ "It ems",
+ "lo ok",
+ "l ook",
+ "con nect",
+ "conne ct",
+ "conn ect",
+ "an ges",
+ "ang es",
+ "ange s",
+ "View Controller",
+ "el ijk",
+ "elij k",
+ "eli jk",
+ "e lijk",
+ "▁occ up",
+ "▁oc cup",
+ "▁ occup",
+ "▁ed itor",
+ "▁edit or",
+ "▁ editor",
+ "au to",
+ "aut o",
+ "a uto",
+ "ö g",
+ "▁second s",
+ "▁sec onds",
+ "▁ seconds",
+ "▁ob vious",
+ "v m",
+ "ak es",
+ "ake s",
+ "a kes",
+ "▁g egen",
+ "▁ge gen",
+ "▁geg en",
+ "▁t il",
+ "▁ti l",
+ "▁ til",
+ "ject ion",
+ "je ction",
+ "j ection",
+ "ле ння",
+ "лен ня",
+ "▁oper ations",
+ "▁operation s",
+ "▁E ast",
+ "og y",
+ "o gy",
+ "▁P olit",
+ "▁Pol it",
+ "▁Po lit",
+ "ut en",
+ "ute n",
+ "u ten",
+ "▁Jose ph",
+ "\" `",
+ "▁Comp any",
+ "▁ Company",
+ "▁call back",
+ "▁ callback",
+ "▁s en",
+ "▁se n",
+ "▁ sen",
+ "cc ión",
+ "cció n",
+ "c ción",
+ "▁associ ated",
+ "▁associate d",
+ "▁cont aining",
+ "▁contain ing",
+ "▁pract ice",
+ "elij ke",
+ "elijk e",
+ "e lijke",
+ "ok e",
+ "o ke",
+ "ér a",
+ "é ra",
+ "un s",
+ "u ns",
+ "an ta",
+ "ant a",
+ "ve y",
+ "v ey",
+ "z u",
+ "▁B es",
+ "▁Be s",
+ "▁F lor",
+ "▁Fl or",
+ "▁Flo r",
+ "me m",
+ "m em",
+ "yc z",
+ "y cz",
+ "▁arch itect",
+ "▁an ni",
+ "▁ann i",
+ "▁ anni",
+ "▁cont act",
+ "▁ contact",
+ "Y PE",
+ "▁C as",
+ "▁Ca s",
+ "▁по лу",
+ "▁пол у",
+ "ov o",
+ "o vo",
+ "▁b ring",
+ "▁br ing",
+ "▁con cept",
+ "▁conce pt",
+ "▁j s",
+ "▁ js",
+ "▁Refer encias",
+ "em ble",
+ "emb le",
+ "embl e",
+ "▁ н",
+ "▁supp orted",
+ "▁support ed",
+ "▁ supported",
+ "Bi g",
+ "B ig",
+ "▁H ans",
+ "▁Ha ns",
+ "▁Han s",
+ "er v",
+ "e rv",
+ "▁M aj",
+ "▁Ma j",
+ "▁ar riv",
+ "▁arr iv",
+ "▁H ave",
+ "▁Ha ve",
+ "▁Hav e",
+ "▁ Have",
+ "▁prob ability",
+ "▁probabil ity",
+ "▁P op",
+ "▁Po p",
+ "▁ Pop",
+ "▁P ass",
+ "▁Pa ss",
+ "▁Pas s",
+ "▁ Pass",
+ "to ken",
+ "tok en",
+ "t oken",
+ "Pro vider",
+ "▁R a",
+ "Re ader",
+ "Read er",
+ "oot h",
+ "oo th",
+ "o oth",
+ "la p",
+ "l ap",
+ "▁ass ist",
+ "ad ow",
+ "ado w",
+ "▁t ests",
+ "▁test s",
+ "▁ tests",
+ "сс и",
+ "с си",
+ "▁k ing",
+ "▁ki ng",
+ "▁kin g",
+ "▁ king",
+ "lang le",
+ "lan gle",
+ "l angle",
+ "▁S um",
+ "▁Su m",
+ "▁ Sum",
+ "O IN",
+ "▁se curity",
+ "▁sec urity",
+ "▁ security",
+ "ni s",
+ "n is",
+ ".. /",
+ ". ./",
+ "▁bas ic",
+ "▁ basic",
+ "un ity",
+ "uni ty",
+ "unit y",
+ "` :",
+ "▁ко то",
+ "ko w",
+ "k ow",
+ "▁Bibli othèque",
+ "as ion",
+ "asi on",
+ "al o",
+ "a lo",
+ "if est",
+ "ife st",
+ "i fest",
+ "▁nov embre",
+ "▁p eu",
+ "▁pe u",
+ "▁ Ж",
+ "en schaft",
+ "ensch aft",
+ "cl us",
+ "c lus",
+ "ј у",
+ "He ight",
+ "ú n",
+ "▁t ur",
+ "▁tu r",
+ "▁ide as",
+ "▁idea s",
+ "▁c es",
+ "▁ce s",
+ "▁ ces",
+ "fr ak",
+ "fra k",
+ "f rak",
+ "▁pre mier",
+ "▁prem ier",
+ "▁premi er",
+ "it ation",
+ "ita tion",
+ "itat ion",
+ "▁s é",
+ "HT ML",
+ "▁Ro yal",
+ "▁Roy al",
+ "сь кої",
+ "сько ї",
+ "▁by te",
+ "▁ byte",
+ "P S",
+ "▁s egu",
+ "▁se gu",
+ "▁seg u",
+ "▁ segu",
+ "in en",
+ "ine n",
+ "i nen",
+ "▁Gre at",
+ "▁К у",
+ "▁ex ternal",
+ "▁ext ernal",
+ "▁extern al",
+ "▁ external",
+ "T itle",
+ "To p",
+ "T op",
+ "Pro cess",
+ "Proc ess",
+ "it ät",
+ "itä t",
+ "▁` /",
+ "▁se cret",
+ "▁sec ret",
+ "▁secre t",
+ "▁ secret",
+ "pos itory",
+ "▁pot ential",
+ "▁B ud",
+ "▁Bu d",
+ "name s",
+ "na mes",
+ "nam es",
+ "n ames",
+ "as ons",
+ "ason s",
+ "aso ns",
+ "stack exchange",
+ "back ground",
+ "пе р",
+ "п ер",
+ "со в",
+ "с ов",
+ "aft er",
+ "af ter",
+ "a fter",
+ "▁p ero",
+ "▁per o",
+ "▁pe ro",
+ "▁so ftware",
+ "▁soft ware",
+ "▁ software",
+ "▁s ed",
+ "▁se d",
+ "▁ sed",
+ "▁array s",
+ "▁arr ays",
+ "tm p",
+ "t mp",
+ "▁a sp",
+ "▁as p",
+ "▁ asp",
+ "sc ale",
+ "scal e",
+ "▁L at",
+ "▁La t",
+ "▁ Lat",
+ "an al",
+ "ana l",
+ "a nal",
+ "▁g em",
+ "▁ge m",
+ "▁ gem",
+ "P U",
+ "▁Al tri",
+ "▁Alt ri",
+ "Th at",
+ "T hat",
+ "▁Н и",
+ "if act",
+ "ifa ct",
+ "i fact",
+ "Add ress",
+ "▁s outh",
+ "▁so uth",
+ "▁sou th",
+ "▁sout h",
+ "▁form ula",
+ "▁Col leg",
+ "▁Coll eg",
+ "▁і н",
+ "▁ ін",
+ "kt ion",
+ "k tion",
+ "▁s ac",
+ "▁sa c",
+ "S H",
+ "aj o",
+ "a jo",
+ "et c",
+ "e tc",
+ "v c",
+ "` ](",
+ "▁D ur",
+ "▁Du r",
+ "▁М е",
+ "▁Sm ith",
+ "▁ Smith",
+ "it ems",
+ "ite ms",
+ "item s",
+ "C K",
+ "el o",
+ "e lo",
+ "▁pl ugin",
+ "▁plug in",
+ "▁ plugin",
+ "▁s erie",
+ "▁se rie",
+ "▁ser ie",
+ "▁ serie",
+ "ien ne",
+ "ienn e",
+ "i enne",
+ "▁и ли",
+ "Ma r",
+ "M ar",
+ "▁Im age",
+ "▁ Image",
+ "go t",
+ "g ot",
+ "an das",
+ "and as",
+ "anda s",
+ "▁mat ches",
+ "▁match es",
+ "▁ matches",
+ "▁w orth",
+ "▁wor th",
+ "▁ worth",
+ "▁D eb",
+ "▁De b",
+ "▁ Deb",
+ "▁c ache",
+ "▁ca che",
+ "▁ cache",
+ "▁f elt",
+ "▁fe lt",
+ "▁fel t",
+ "er sch",
+ "ers ch",
+ "iz es",
+ "ize s",
+ "i zes",
+ "Op er",
+ "O per",
+ "▁Jah re",
+ "▁Jahr e",
+ "▁Ja hre",
+ "▁comm une",
+ "▁commun e",
+ "th read",
+ "▁n y",
+ "▁ ny",
+ "de c",
+ "d ec",
+ "ou w",
+ "o uw",
+ "▁sur face",
+ "▁P or",
+ "▁Po r",
+ "▁St reet",
+ "▁Stre et",
+ "пр и",
+ "п ри",
+ "▁c andid",
+ "▁can did",
+ "▁cand id",
+ "▁Re turn",
+ "▁Ret urn",
+ "▁ Return",
+ "▁K om",
+ "▁Ko m",
+ "gr u",
+ "g ru",
+ "▁т и",
+ "▁ ти",
+ "[ \\",
+ "▁dep ends",
+ "▁depend s",
+ "▁in flu",
+ "▁inf lu",
+ "▁infl u",
+ "▁to wards",
+ "▁toward s",
+ "ain ed",
+ "ai ned",
+ "aine d",
+ "a ined",
+ "▁r ank",
+ "▁ran k",
+ "▁ rank",
+ "▁Janu ar",
+ "▁com ponents",
+ "▁compon ents",
+ "▁component s",
+ "▁ components",
+ "ge st",
+ "ges t",
+ "g est",
+ "getElement ById",
+ "▁check ed",
+ "▁ checked",
+ "air s",
+ "ai rs",
+ "a irs",
+ "jo in",
+ "j oin",
+ "▁d ead",
+ "▁de ad",
+ "▁h it",
+ "▁hi t",
+ "▁ hit",
+ "én y",
+ "é ny",
+ "▁equ ivalent",
+ "▁equival ent",
+ "▁П ре",
+ "▁app ropri",
+ "Pa ss",
+ "P ass",
+ "▁pr imer",
+ "▁prim er",
+ "▁pri mer",
+ "▁prime r",
+ "engl isch",
+ "▁app ar",
+ "▁ap par",
+ "▁D uring",
+ "▁Du ring",
+ "▁Dur ing",
+ "▁know ledge",
+ "▁tr igger",
+ "▁trig ger",
+ "▁ trigger",
+ "▁c ore",
+ "▁cor e",
+ "▁co re",
+ "▁ core",
+ "▁O l",
+ "▁P rodu",
+ "▁Pro du",
+ "▁Pr odu",
+ "▁ Produ",
+ "▁F ern",
+ "▁Fe rn",
+ "▁Fer n",
+ "▁ Fern",
+ "▁на ча",
+ "▁ нача",
+ "T e",
+ "▁M ot",
+ "▁Mo t",
+ "er ve",
+ "erv e",
+ "тв о",
+ "т во",
+ "▁m id",
+ "▁mi d",
+ "▁ mid",
+ "▁fin ally",
+ "▁final ly",
+ "air es",
+ "ai res",
+ "aire s",
+ "a ires",
+ "▁es pecially",
+ "▁espe cially",
+ "▁especial ly",
+ "▁t ut",
+ "▁tu t",
+ "▁rece ive",
+ "ad re",
+ "adr e",
+ "▁ne igh",
+ "▁nei gh",
+ "kt et",
+ "kte t",
+ "il de",
+ "ild e",
+ "▁rad io",
+ "▁radi o",
+ "▁ radio",
+ "▁d river",
+ "▁dr iver",
+ "▁drive r",
+ "▁dri ver",
+ "▁driv er",
+ "▁ driver",
+ "ли сь",
+ "end encies",
+ "enden cies",
+ "▁I E",
+ "▁ IE",
+ "▁s aved",
+ "▁sa ved",
+ "▁sav ed",
+ "▁save d",
+ "▁ saved",
+ "ff ect",
+ "ffe ct",
+ "f fect",
+ "▁Way back",
+ "ia t",
+ "i at",
+ "▁p adding",
+ "▁pad ding",
+ "▁ padding",
+ "wind ow",
+ "w indow",
+ "ти че",
+ "▁m ur",
+ "▁mu r",
+ "ac tor",
+ "act or",
+ "a ctor",
+ "▁H an",
+ "▁Ha n",
+ "он аль",
+ "она ль",
+ "о наль",
+ "▁g ar",
+ "▁ga r",
+ "▁ gar",
+ "▁famil jen",
+ "ó s",
+ "▁n ationale",
+ "▁national e",
+ "▁nation ale",
+ "▁nat ionale",
+ "▁p ré",
+ "▁pr é",
+ "de d",
+ "d ed",
+ "on al",
+ "ona l",
+ "o nal",
+ "▁Pres ident",
+ "▁\\ ,",
+ "▁ \\,",
+ "▁place d",
+ "▁pla ced",
+ "er ni",
+ "ern i",
+ "▁sign al",
+ "▁sig nal",
+ "▁ signal",
+ "na b",
+ "n ab",
+ "h m",
+ "Mo n",
+ "M on",
+ "▁v s",
+ "▁ vs",
+ "S C",
+ "▁proget ti",
+ "▁ Ü",
+ "▁for ms",
+ "▁form s",
+ "▁ forms",
+ "▁message s",
+ "▁mess ages",
+ "▁ messages",
+ "in f",
+ "us ers",
+ "use rs",
+ "user s",
+ "u sers",
+ "GE T",
+ "G ET",
+ "▁d els",
+ "▁de ls",
+ "▁del s",
+ "Col lection",
+ "Coll ection",
+ "Collect ion",
+ "▁G ood",
+ "▁Go od",
+ "▁ Good",
+ "▁May be",
+ "▁ Maybe",
+ "▁com pr",
+ "▁comp r",
+ "▁lar ger",
+ "▁large r",
+ "▁larg er",
+ "gr es",
+ "gre s",
+ "g res",
+ "ap er",
+ "ape r",
+ "a per",
+ "▁П ри",
+ "un des",
+ "und es",
+ "unde s",
+ "▁s ea",
+ "▁se a",
+ "▁S pring",
+ "▁Sp ring",
+ "▁Spr ing",
+ "▁ Spring",
+ "ul o",
+ "u lo",
+ "▁me chan",
+ "▁s ans",
+ "▁sa ns",
+ "▁san s",
+ "G B",
+ "Val id",
+ "▁comm unic",
+ "▁commun ic",
+ "▁ communic",
+ "▁p ra",
+ "▁pr a",
+ "vi er",
+ "vie r",
+ "v ier",
+ "▁С е",
+ "▁a in",
+ "▁ai n",
+ "▁ ain",
+ "ту ра",
+ "тур а",
+ "ko m",
+ "k om",
+ "sk iego",
+ "ski ego",
+ "skie go",
+ "ко во",
+ "ков о",
+ "к ово",
+ "ad ata",
+ "ada ta",
+ "a data",
+ "▁Р е",
+ "▁bo olean",
+ "▁ boolean",
+ "se ts",
+ "set s",
+ "s ets",
+ "▁eff ort",
+ ". [",
+ "▁z ostał",
+ "P A",
+ "▁V ict",
+ "▁Vi ct",
+ "▁Vic t",
+ "S D",
+ "ow ał",
+ "owa ł",
+ "▁e mb",
+ "▁em b",
+ "▁ emb",
+ "▁pr ima",
+ "▁prim a",
+ "▁pri ma",
+ "▁h our",
+ "▁ho ur",
+ "▁ hour",
+ "sub section",
+ "▁F ort",
+ "▁For t",
+ "▁Fo rt",
+ "math frak",
+ "ig in",
+ "igi n",
+ "i gin",
+ "G L",
+ ") +",
+ "f i",
+ "▁an ci",
+ "▁anc i",
+ "▁ anci",
+ "▁p an",
+ "▁pa n",
+ "▁ pan",
+ "\\ )",
+ "▁l ug",
+ "▁lu g",
+ "▁dep loy",
+ "▁ deploy",
+ "do main",
+ "dom ain",
+ "▁s light",
+ "▁sl ight",
+ "JS ON",
+ "J SON",
+ "▁mor ning",
+ "▁h i",
+ "▁ hi",
+ "▁comp are",
+ "▁compar e",
+ "▁ compare",
+ "ij e",
+ "i je",
+ "▁bl ue",
+ "▁ blue",
+ "▁A c",
+ "▁ Ac",
+ "▁m iddle",
+ "▁ middle",
+ "an den",
+ "and en",
+ "ande n",
+ "▁sh ared",
+ "▁share d",
+ "▁ shared",
+ "▁C amp",
+ "▁Cam p",
+ "▁Ca mp",
+ "▁ Á",
+ "ound ed",
+ "oun ded",
+ "u w",
+ "ier ung",
+ "St ack",
+ "▁e ines",
+ "▁ein es",
+ "▁eine s",
+ "▁D a",
+ "▁ Da",
+ "li j",
+ "l ij",
+ "en ti",
+ "ent i",
+ "▁ й",
+ "U til",
+ "▁exper ience",
+ "▁experien ce",
+ "▁a wait",
+ "▁aw ait",
+ "▁ await",
+ "ul s",
+ "u ls",
+ "▁request s",
+ "▁requ ests",
+ "▁ requests",
+ "▁im pos",
+ "▁imp os",
+ "▁const raint",
+ "▁ constraint",
+ "Ch ange",
+ "em ph",
+ "emp h",
+ "бе р",
+ "б ер",
+ "▁An other",
+ "C ustom",
+ "▁signific ant",
+ "▁significa nt",
+ "c r",
+ "▁mill ion",
+ "re ek",
+ "ree k",
+ "▁d alla",
+ "▁da lla",
+ "▁dal la",
+ "▁dall a",
+ "▁G erm",
+ "▁Ge rm",
+ "▁Ger m",
+ "ot al",
+ "ota l",
+ "o tal",
+ "at eur",
+ "ate ur",
+ "bt n",
+ "b tn",
+ "▁th inking",
+ "▁think ing",
+ "▁thin king",
+ "▁inter val",
+ "▁ interval",
+ "on ne",
+ "onn e",
+ "▁l iv",
+ "▁li v",
+ "▁ liv",
+ "() :",
+ "( ):",
+ "▁В е",
+ "o e",
+ "▁E v",
+ "me ta",
+ "met a",
+ "m eta",
+ "▁b road",
+ "▁bro ad",
+ "Re m",
+ "R em",
+ "ap ply",
+ "app ly",
+ "a pply",
+ "▁cou ple",
+ "▁coup le",
+ "▁te chni",
+ "▁techn i",
+ "id ades",
+ "ida des",
+ "idad es",
+ "idade s",
+ "▁go al",
+ "▁ goal",
+ "▁C D",
+ "▁ CD",
+ "ha b",
+ "h ab",
+ "▁ex plan",
+ "▁exp lan",
+ "▁expla n",
+ "▁expl an",
+ "an ner",
+ "ann er",
+ "anne r",
+ "▁B ecause",
+ "bl og",
+ "blo g",
+ "b log",
+ "include graphics",
+ "▁vo ice",
+ "▁ voice",
+ "▁M ap",
+ "▁Ma p",
+ "▁ Map",
+ "vent ion",
+ "ven tion",
+ "v ention",
+ "S ession",
+ "▁L iens",
+ "▁Li ens",
+ "▁Lie ns",
+ "▁s or",
+ "▁so r",
+ "c ategory",
+ "ash ington",
+ "▁Mär z",
+ "po p",
+ "p op",
+ "il let",
+ "ill et",
+ "ille t",
+ "▁z wei",
+ "▁zwe i",
+ "▁zw ei",
+ "▁L ie",
+ "▁Li e",
+ "N ull",
+ "add ress",
+ "addr ess",
+ "▁f actor",
+ "▁fact or",
+ "▁fa ctor",
+ "▁fac tor",
+ "▁ factor",
+ "▁l igne",
+ "▁lig ne",
+ "▁HT TP",
+ "▁ HTTP",
+ "▁s uf",
+ "▁su f",
+ "▁person al",
+ "▁pers onal",
+ "▁persona l",
+ "ci p",
+ "c ip",
+ "▁D ar",
+ "▁Da r",
+ "▁a dm",
+ "▁ad m",
+ "ко й",
+ "▁E xt",
+ "▁Ex t",
+ "▁ Ext",
+ "▁g od",
+ "▁go d",
+ "▁ god",
+ "a a",
+ "R ight",
+ "ét é",
+ "é té",
+ "▁d ynamic",
+ "▁dynam ic",
+ "▁ dynamic",
+ "▁main tain",
+ "to r",
+ "t or",
+ "#### ####",
+ "▁F ra",
+ "▁Fr a",
+ "▁cho ice",
+ "▁ choice",
+ "▁с то",
+ "▁ст о",
+ "▁ сто",
+ "С Р",
+ "▁F eder",
+ "▁Fe der",
+ "▁Fed er",
+ "st on",
+ "sto n",
+ "s ton",
+ "▁f lag",
+ "▁fl ag",
+ "▁fla g",
+ "▁ flag",
+ "ki t",
+ "k it",
+ "Mod ule",
+ "▁с по",
+ "▁сп о",
+ "▁ спо",
+ "▁S tra",
+ "▁St ra",
+ "▁Str a",
+ "ic ks",
+ "ick s",
+ "i cks",
+ "▁h aven",
+ "▁ha ven",
+ "▁have n",
+ "▁hav en",
+ "▁M ass",
+ "▁Ma ss",
+ "▁Mas s",
+ "▁E mp",
+ "▁Em p",
+ "▁ Emp",
+ "▁P i",
+ "▁ Pi",
+ "▁P en",
+ "▁Pe n",
+ "Re ct",
+ "Rec t",
+ "R ect",
+ "▁K r",
+ "it at",
+ "ita t",
+ "i tat",
+ "el er",
+ "ele r",
+ "e ler",
+ "я бря",
+ "it et",
+ "ite t",
+ "▁St art",
+ "▁Sta rt",
+ "▁Star t",
+ "▁ Start",
+ "▁produ ced",
+ "▁produce d",
+ "▁по л",
+ "▁ пол",
+ "( _",
+ "▁de let",
+ "▁del et",
+ "▁h ot",
+ "▁ho t",
+ "▁ hot",
+ "▁Gesch ichte",
+ "~ ~",
+ "▁month s",
+ "▁mont hs",
+ "▁t od",
+ "▁to d",
+ "▁ tod",
+ "▁н и",
+ "▁ ни",
+ "ú s",
+ "te mp",
+ "tem p",
+ "t emp",
+ "▁D ez",
+ "▁De z",
+ "ype s",
+ "yp es",
+ "y pes",
+ "▁c ui",
+ "▁cu i",
+ "om mun",
+ "omm un",
+ "act ions",
+ "action s",
+ "a ctions",
+ "▁e igen",
+ "▁eig en",
+ "▁immedi ately",
+ "▁immediate ly",
+ "P L",
+ "▁Г о",
+ "▁B al",
+ "▁Ba l",
+ "▁ Bal",
+ "љ е",
+ "ul ui",
+ "ulu i",
+ "▁on line",
+ "▁ online",
+ "▁a ños",
+ "▁añ os",
+ "▁año s",
+ "▁name space",
+ "▁names pace",
+ "▁ namespace",
+ "▁m ond",
+ "▁mon d",
+ "▁mo nd",
+ "▁ mond",
+ "▁B ase",
+ "▁Bas e",
+ "▁Ba se",
+ "▁ Base",
+ "▁Can ada",
+ "▁Canad a",
+ "et zt",
+ "etz t",
+ "} -",
+ "▁de fin",
+ "▁def in",
+ "▁ defin",
+ "▁dou bt",
+ "▁doub t",
+ "▁inv estig",
+ "▁invest ig",
+ "view s",
+ "vie ws",
+ "▁L ine",
+ "▁Li ne",
+ "▁Lin e",
+ "▁ Line",
+ "▁st age",
+ "▁sta ge",
+ "▁stag e",
+ "▁ stage",
+ "ett ings",
+ "ub re",
+ "u bre",
+ "f loat",
+ "▁P lay",
+ "▁Pl ay",
+ "▁Pla y",
+ "▁ Play",
+ "▁L as",
+ "▁La s",
+ "pt r",
+ "p tr",
+ "▁be comes",
+ "▁become s",
+ "▁becom es",
+ "est amp",
+ "esta mp",
+ "▁in dependent",
+ "▁indep endent",
+ "▁independ ent",
+ "▁anal ysis",
+ "▁ analysis",
+ "▁L ook",
+ "▁Lo ok",
+ "▁ Look",
+ "la in",
+ "l ain",
+ "▁ра с",
+ "Re ference",
+ "▁s orry",
+ "▁sor ry",
+ "▁supp osed",
+ "▁suppose d",
+ "▁sup posed",
+ "û t",
+ "▁deg ree",
+ "ut z",
+ "u tz",
+ "M M",
+ "▁des ired",
+ "▁desire d",
+ "ł y",
+ "▁l en",
+ "▁le n",
+ "▁ len",
+ "▁al one",
+ "▁ alone",
+ "sign ed",
+ "sig ned",
+ "s igned",
+ "▁S ta",
+ "▁St a",
+ "Per son",
+ "Pers on",
+ "P erson",
+ "▁app lied",
+ "▁B ack",
+ "▁Ba ck",
+ "▁Bac k",
+ "▁ Back",
+ "▁m ars",
+ "▁ma rs",
+ "▁mar s",
+ "Par t",
+ "Pa rt",
+ "P art",
+ "▁D id",
+ "▁Di d",
+ "▁ Did",
+ "▁extern es",
+ "▁externe s",
+ "▁n p",
+ "▁ np",
+ "on go",
+ "ong o",
+ "▁e sta",
+ "▁est a",
+ "▁es ta",
+ "▁ esta",
+ "Bl ock",
+ "B lock",
+ "▁p ou",
+ "▁po u",
+ "ad ores",
+ "ado res",
+ "ador es",
+ "▁St udio",
+ "▁Stud io",
+ "▁ Studio",
+ ". $",
+ "▁re ached",
+ "▁reach ed",
+ "bo t",
+ "b ot",
+ "▁J uni",
+ "▁Ju ni",
+ "▁Jun i",
+ "to ns",
+ "ton s",
+ "t ons",
+ "it el",
+ "ite l",
+ "i tel",
+ "▁G ar",
+ "▁Ga r",
+ "▁art icles",
+ "▁article s",
+ "▁ articles",
+ "▁D istrict",
+ "▁Dist rict",
+ "▁tr ouble",
+ "▁trou ble",
+ "li de",
+ "l ide",
+ "▁F ound",
+ "▁Fou nd",
+ "▁Fo und",
+ "▁ Found",
+ "á d",
+ "▁e quip",
+ "▁equ ip",
+ "▁in ternal",
+ "▁int ernal",
+ "▁inter nal",
+ "▁intern al",
+ "▁ internal",
+ "'] ,",
+ "' ],",
+ "▁a sync",
+ "▁as ync",
+ "▁ async",
+ "U B",
+ "ge l",
+ "g el",
+ "▁a i",
+ "▁ ai",
+ "ens ure",
+ "▁app eared",
+ "▁appear ed",
+ "▁appe ared",
+ "▁$ _",
+ "▁ $_",
+ "▁max imum",
+ "▁maxim um",
+ "▁С и",
+ "р ь",
+ "▁ann oun",
+ "▁anno un",
+ "ла сь",
+ "▁c m",
+ "▁ cm",
+ "га н",
+ "г ан",
+ "au pt",
+ "a upt",
+ "▁l atter",
+ "▁lat ter",
+ "▁pl atform",
+ "▁plat form",
+ "▁ platform",
+ "▁d ra",
+ "▁dr a",
+ "▁ dra",
+ "▁cap ital",
+ "▁capit al",
+ "▁sol ved",
+ "▁solve d",
+ "ri z",
+ "r iz",
+ "ed ic",
+ "edi c",
+ "e dic",
+ "▁M ur",
+ "▁Mu r",
+ "▁T op",
+ "▁To p",
+ "▁ Top",
+ "т ся",
+ "Pa nel",
+ "Pane l",
+ "Pan el",
+ "P anel",
+ "ru le",
+ "r ule",
+ "et ic",
+ "eti c",
+ "▁R en",
+ "▁Re n",
+ "▁Wik imedia",
+ "▁ Wikimedia",
+ "▁T O",
+ "▁ TO",
+ "se cond",
+ "sec ond",
+ "is l",
+ "i sl",
+ "▁h y",
+ "▁ hy",
+ "▁n iet",
+ "▁nie t",
+ "▁ni et",
+ "▁lo aded",
+ "▁load ed",
+ "▁ loaded",
+ "di g",
+ "d ig",
+ "▁ma yo",
+ "▁may o",
+ "[ :",
+ "Ac c",
+ "A cc",
+ "▁b ek",
+ "▁be k",
+ "▁ bek",
+ "ни ю",
+ "lo gin",
+ "log in",
+ "t x",
+ "▁F ur",
+ "▁Fu r",
+ "▁S anta",
+ "▁San ta",
+ "▁Sant a",
+ "az z",
+ "a zz",
+ "▁con duct",
+ "▁cond uct",
+ "▁condu ct",
+ "▁In dia",
+ "▁Ind ia",
+ "Or der",
+ "Ord er",
+ "ir th",
+ "irt h",
+ "t w",
+ "} +",
+ "▁w ieder",
+ "▁wie der",
+ "▁E du",
+ "▁Ed u",
+ "A V",
+ "▁` ``",
+ "▁`` `",
+ "▁ ```",
+ "▁man ually",
+ "▁manual ly",
+ "▁R ead",
+ "▁Re ad",
+ "▁ Read",
+ "fortun ately",
+ "▁R un",
+ "▁Ru n",
+ "▁ Run",
+ "▁A ward",
+ "▁Aw ard",
+ "▁F oot",
+ "▁Foo t",
+ "▁Fo ot",
+ "▁ Foot",
+ "* )",
+ "par ams",
+ "param s",
+ "pa rams",
+ "para ms",
+ "п і",
+ "▁n ative",
+ "▁nat ive",
+ "▁ native",
+ "ri ft",
+ "rif t",
+ "r ift",
+ "▁ ä",
+ "AT H",
+ "A TH",
+ "▁your self",
+ "▁yours elf",
+ "▁p rior",
+ "▁pr ior",
+ "▁pri or",
+ "▁c it",
+ "▁ci t",
+ "▁ cit",
+ "ä h",
+ "▁tre at",
+ "▁me as",
+ "rib uted",
+ "ribute d",
+ "ribu ted",
+ "▁c lar",
+ "▁cl ar",
+ "▁cla r",
+ "▁ clar",
+ "ca rd",
+ "car d",
+ "c ard",
+ "RO R",
+ "R OR",
+ "il les",
+ "ill es",
+ "ille s",
+ "i lles",
+ "▁l ayer",
+ "▁la yer",
+ "▁lay er",
+ "▁ layer",
+ "au er",
+ "a uer",
+ "▁r at",
+ "▁ra t",
+ "▁ rat",
+ "bern ate",
+ "▁st ato",
+ "▁stat o",
+ "▁sta to",
+ "▁Ch ina",
+ "▁Chi na",
+ "▁$ ('#",
+ "▁$(' #",
+ "▁n aar",
+ "▁na ar",
+ "zi p",
+ "z ip",
+ "▁$ {\\",
+ "▁${ \\",
+ "▁appreci ated",
+ "▁appreciate d",
+ "▁и ме",
+ "▁им е",
+ "ż y",
+ "▁prze z",
+ "▁prz ez",
+ "▁Ind ian",
+ "▁India n",
+ "▁T od",
+ "▁To d",
+ "▁S ource",
+ "▁ Source",
+ "▁дру ги",
+ "in ternal",
+ "int ernal",
+ "inter nal",
+ "intern al",
+ "ion ale",
+ "ional e",
+ "iona le",
+ "Pro duct",
+ "Produ ct",
+ "▁M en",
+ "▁Me n",
+ "▁ Men",
+ "▁u pper",
+ "▁up per",
+ "▁upp er",
+ "▁ upper",
+ "▁E very",
+ "▁Ev ery",
+ "▁Ever y",
+ "▁ Every",
+ "}, \\",
+ "} ,\\",
+ "▁print f",
+ "▁prin tf",
+ "▁ printf",
+ "▁contin ued",
+ "▁continu ed",
+ "▁continue d",
+ "▁n odes",
+ "▁no des",
+ "▁node s",
+ "▁nod es",
+ "▁ nodes",
+ "л ки",
+ "▁n ice",
+ "▁ni ce",
+ "▁nic e",
+ "▁ nice",
+ "mod ules",
+ "module s",
+ "ei gn",
+ "e ign",
+ "▁M ex",
+ "▁Me x",
+ "▁Acc ording",
+ "▁un defined",
+ "▁und efined",
+ "▁ undefined",
+ "▁b inary",
+ "▁bin ary",
+ "▁ binary",
+ "cu t",
+ "c ut",
+ "Cur rent",
+ "C urrent",
+ "ed y",
+ "e dy",
+ "}} {",
+ "} }{",
+ "ble s",
+ "bl es",
+ "b les",
+ "▁во й",
+ "▁ вой",
+ "sc ri",
+ "scr i",
+ "s cri",
+ "eq n",
+ "Ch anged",
+ "Change d",
+ "▁kö z",
+ "▁rem ote",
+ "▁ remote",
+ "в ля",
+ "▁qu el",
+ "▁que l",
+ "▁q uel",
+ "▁ quel",
+ "▁al ign",
+ "▁ali gn",
+ "▁ align",
+ "▁п ар",
+ "▁па р",
+ "▁ пар",
+ "S V",
+ "ye r",
+ "y er",
+ "▁Cal iforn",
+ "▁p laces",
+ "▁pl aces",
+ "▁place s",
+ "▁pla ces",
+ "▁prim ary",
+ "▁pri mary",
+ "▁prima ry",
+ "▁ primary",
+ "▁con v",
+ "▁ conv",
+ "▁J uli",
+ "▁Jul i",
+ "▁Ju li",
+ "▁vis ual",
+ "▁ visual",
+ "▁S elect",
+ "▁Se lect",
+ "▁Sel ect",
+ "▁Sele ct",
+ "▁ Select",
+ "at ory",
+ "ator y",
+ "ato ry",
+ "= (",
+ "is er",
+ "ise r",
+ "i ser",
+ "▁int ent",
+ "▁inte nt",
+ "▁inten t",
+ "▁ intent",
+ "su r",
+ "s ur",
+ "cont ainer",
+ "ic ed",
+ "ice d",
+ "i ced",
+ "▁bo ard",
+ "▁ board",
+ "as tr",
+ "ast r",
+ "a str",
+ "om ial",
+ "omi al",
+ "ве т",
+ "в ет",
+ "з ва",
+ "▁c ru",
+ "▁cr u",
+ "▁Ok tober",
+ "sa ve",
+ "s ave",
+ "▁gre ater",
+ "▁great er",
+ "▁in n",
+ "▁i nn",
+ "▁ inn",
+ "▁p icture",
+ "▁ picture",
+ "▁Т о",
+ "▁obtain ed",
+ "▁obt ained",
+ "Wik imedia",
+ "ú blic",
+ "▁l ors",
+ "▁lo rs",
+ "▁m ont",
+ "▁mon t",
+ "▁mo nt",
+ "▁ mont",
+ "ob re",
+ "o bre",
+ "▁c ivil",
+ "▁ci vil",
+ "▁civ il",
+ "▁const ruction",
+ "▁construct ion",
+ "▁constru ction",
+ "▁W elt",
+ "▁We lt",
+ "▁Wel t",
+ "▁U nder",
+ "▁Un der",
+ "▁Und er",
+ "▁ Under",
+ "und ert",
+ "under t",
+ "unde rt",
+ "▁ed ge",
+ "▁ edge",
+ "▁L iste",
+ "▁List e",
+ "▁Li ste",
+ "▁Lis te",
+ "cs v",
+ "c sv",
+ "▁ex periment",
+ "▁exper iment",
+ "local host",
+ "▁E dit",
+ "▁Ed it",
+ "▁ Edit",
+ "gr eg",
+ "gre g",
+ "g reg",
+ "ov á",
+ "o vá",
+ "љ а",
+ "ms g",
+ "m sg",
+ "▁G reen",
+ "▁Gr een",
+ "▁Gre en",
+ "▁Gree n",
+ "▁ Green",
+ "Di alog",
+ "D ialog",
+ "Id ent",
+ "I dent",
+ "▁J S",
+ "▁ JS",
+ "^{ (",
+ "^ {(",
+ "▁slä ktet",
+ "__ __",
+ "___ _",
+ "_ ___",
+ "Pro ject",
+ "▁bes kre",
+ "▁b er",
+ "▁be r",
+ "▁ ber",
+ "▁would n",
+ "▁re act",
+ "▁ react",
+ "He l",
+ "H el",
+ "z w",
+ "▁W ashington",
+ "or ie",
+ "ori e",
+ "o rie",
+ "ta sk",
+ "t ask",
+ "▁c ategory",
+ "▁categ ory",
+ "▁categor y",
+ "▁ category",
+ "▁art ist",
+ "an no",
+ "ann o",
+ "▁o ok",
+ "▁ ook",
+ "am men",
+ "amm en",
+ "▁Min ister",
+ "▁de clar",
+ "▁dec lar",
+ "▁decl ar",
+ "▁decla r",
+ "▁K ey",
+ "▁Ke y",
+ "▁ Key",
+ ", .",
+ "▁m ach",
+ "▁ma ch",
+ "▁mac h",
+ "▁w w",
+ "▁ ww",
+ "is en",
+ "ise n",
+ "i sen",
+ "Fr an",
+ "F ran",
+ "▁Ро сси",
+ "▁Рос си",
+ "бо р",
+ "б ор",
+ "т ри",
+ "▁r ock",
+ "▁ro ck",
+ "▁ rock",
+ "qu is",
+ "qui s",
+ "q uis",
+ "mo s",
+ "m os",
+ "пе ра",
+ "пер а",
+ "п ера",
+ "▁est erni",
+ "▁g old",
+ "▁go ld",
+ "▁gol d",
+ "Window s",
+ "W indows",
+ "% %",
+ "▁part ial",
+ "▁parti al",
+ "▁ partial",
+ "▁we ight",
+ "▁ weight",
+ "▁s pr",
+ "▁sp r",
+ "▁ spr",
+ "}) .",
+ "} ).",
+ "▁fran çais",
+ "fu n",
+ "f un",
+ "▁th ous",
+ "▁thou s",
+ "ho lder",
+ "hol der",
+ "hold er",
+ "h older",
+ "▁g one",
+ "▁go ne",
+ "▁ Č",
+ "▁re nd",
+ "▁r end",
+ "▁ren d",
+ "▁ rend",
+ "D A",
+ "▁answer ed",
+ "▁F alse",
+ "▁Fal se",
+ "▁ False",
+ "B uffer",
+ "▁d augh",
+ "▁da ugh",
+ ".- -",
+ ". --",
+ "▁S how",
+ "▁Sh ow",
+ "▁Sho w",
+ "▁ Show",
+ "▁re ct",
+ "▁r ect",
+ "▁rec t",
+ "▁ rect",
+ "▁K re",
+ "▁Kr e",
+ "d r",
+ "os oph",
+ "oso ph",
+ "▁y ield",
+ "ur ity",
+ "uri ty",
+ "to String",
+ "av al",
+ "ava l",
+ "a val",
+ "Po l",
+ "P ol",
+ "▁l ock",
+ "▁lo ck",
+ "▁loc k",
+ "▁ lock",
+ "im ation",
+ "ima tion",
+ "imat ion",
+ "ant ic",
+ "anti c",
+ "Lo cal",
+ "Loc al",
+ "L ocal",
+ "▁beskre vs",
+ "it és",
+ "ité s",
+ "gr id",
+ "g rid",
+ "у т",
+ "▁_ {",
+ "▁ _{",
+ "с і",
+ "FI LE",
+ "▁к м",
+ "▁spe ak",
+ "sum mary",
+ "pr op",
+ "pro p",
+ "p rop",
+ "java script",
+ "j avascript",
+ "z k",
+ "izont al",
+ "izon tal",
+ "▁tr ois",
+ "▁tro is",
+ "▁R od",
+ "▁Ro d",
+ "pr ise",
+ "ро во",
+ "ров о",
+ "р ово",
+ "▁o dd",
+ "▁od d",
+ "▁ odd",
+ "▁g est",
+ "▁ge st",
+ "▁ges t",
+ "▁ gest",
+ "▁produ ce",
+ "▁prod uce",
+ "▁w aar",
+ "▁wa ar",
+ "▁A v",
+ "▁ Av",
+ "ri bu",
+ "rib u",
+ "ва ння",
+ "ван ня",
+ "▁fin ished",
+ "▁finish ed",
+ "▁ad apt",
+ "▁S ar",
+ "▁Sa r",
+ "text it",
+ "tex tit",
+ "▁C e",
+ "▁F a",
+ "▁ Fa",
+ "os en",
+ "ose n",
+ "o sen",
+ "▁de riv",
+ "▁der iv",
+ "▁s hip",
+ "▁sh ip",
+ "▁ ship",
+ "▁o pin",
+ "▁op in",
+ "▁E ven",
+ "▁Ev en",
+ "ge sch",
+ "ges ch",
+ "g esch",
+ "▁supp ose",
+ "▁sup pose",
+ "▁F er",
+ "▁Fe r",
+ "ско е",
+ "▁w orden",
+ "▁word en",
+ "▁wor den",
+ "se y",
+ "s ey",
+ "hl ine",
+ "h line",
+ "▁Un ion",
+ "▁ Union",
+ "▁/ **",
+ "▁/* *",
+ "▁ /**",
+ "▁v ez",
+ "▁ve z",
+ "▁ vez",
+ "▁Colleg amenti",
+ "▁Soci ety",
+ "▁Soc iety",
+ "▁e conom",
+ "▁econ om",
+ "▁ec onom",
+ "š í",
+ "o i",
+ "▁or ient",
+ "▁ orient",
+ "▁T eil",
+ "▁Te il",
+ "re nt",
+ "ren t",
+ "r ent",
+ "ле кс",
+ "лек с",
+ "▁s olid",
+ "▁sol id",
+ "▁c art",
+ "▁car t",
+ "▁ca rt",
+ "▁ cart",
+ "******** ********",
+ "▁c ab",
+ "▁ca b",
+ "▁M essage",
+ "▁Mess age",
+ "▁ Message",
+ "do ts",
+ "dot s",
+ "d ots",
+ "▁é g",
+ "▁ ég",
+ "▁t we",
+ "▁tw e",
+ "ag a",
+ "a ga",
+ "▁n az",
+ "▁na z",
+ "▁M icrosoft",
+ "▁Micro soft",
+ "▁ Microsoft",
+ "▁under arter",
+ "pp en",
+ "ppe n",
+ "p pen",
+ "▁re cent",
+ "▁rec ent",
+ "▁rece nt",
+ "▁n et",
+ "▁ne t",
+ "▁ net",
+ "▁res ources",
+ "▁resource s",
+ "▁ resources",
+ "St e",
+ "S te",
+ ". \\",
+ "▁S O",
+ "▁ SO",
+ "ло м",
+ "л ом",
+ "▁c ele",
+ "▁ce le",
+ "▁cel e",
+ "▁l ic",
+ "▁li c",
+ "▁ lic",
+ "▁ben ef",
+ "▁bene f",
+ "ld ots",
+ "l dots",
+ "▁se rial",
+ "▁ser ial",
+ "▁seria l",
+ "▁ serial",
+ "In teger",
+ "cl es",
+ "cle s",
+ "c les",
+ "▁m iles",
+ "▁mil es",
+ "▁mi les",
+ "▁mile s",
+ "▁A le",
+ "▁Al e",
+ "▁en tered",
+ "▁ent ered",
+ "▁enter ed",
+ "▁T wo",
+ "▁Tw o",
+ "▁ Two",
+ "wi e",
+ "w ie",
+ "▁in cludes",
+ "▁incl udes",
+ "▁includ es",
+ "▁include s",
+ "▁inclu des",
+ "▁ includes",
+ "▁E ach",
+ "▁ Each",
+ "el ling",
+ "ell ing",
+ "elli ng",
+ "qu er",
+ "que r",
+ "q uer",
+ "▁D om",
+ "▁Do m",
+ "▁ Dom",
+ "p f",
+ "W S",
+ "▁stra ight",
+ "▁S tan",
+ "▁St an",
+ "▁Sta n",
+ "▁n os",
+ "▁no s",
+ "▁ nos",
+ "í cul",
+ "at ro",
+ "atr o",
+ "▁C enter",
+ "▁Cent er",
+ "▁ Center",
+ "F T",
+ "▁In ga",
+ "▁Ing a",
+ "il o",
+ "i lo",
+ "▁w ww",
+ "▁ww w",
+ "▁ www",
+ "js fiddle",
+ "ni c",
+ "n ic",
+ "▁Europe an",
+ "▁com mer",
+ "▁comm er",
+ "▁comme r",
+ "▁g irl",
+ "▁gi rl",
+ "▁gir l",
+ "to tal",
+ "tot al",
+ "t otal",
+ "▁S tar",
+ "▁St ar",
+ "▁Sta r",
+ "▁ Star",
+ "▁sugg ested",
+ "▁suggest ed",
+ "pa l",
+ "p al",
+ "▁zw ischen",
+ "пи са",
+ "пис а",
+ "I M",
+ "▁hand ler",
+ "▁handle r",
+ "▁ handler",
+ "▁Pro gram",
+ "▁Pr ogram",
+ "▁ Program",
+ "xs l",
+ "x sl",
+ "ál y",
+ "á ly",
+ "B U",
+ ",- -",
+ ", --",
+ "▁v id",
+ "▁vi d",
+ "▁ vid",
+ "▁estab lished",
+ "▁establish ed",
+ "▁S piel",
+ "▁Sp iel",
+ "om etry",
+ "ome try",
+ "omet ry",
+ "un es",
+ "une s",
+ "u nes",
+ "▁s it",
+ "▁si t",
+ "▁in her",
+ "▁p uis",
+ "▁pu is",
+ "▁ puis",
+ "▁ être",
+ "▁M ost",
+ "▁Mo st",
+ "▁Mos t",
+ "He ader",
+ "Head er",
+ "in sert",
+ "ins ert",
+ "▁s ist",
+ "▁si st",
+ "▁f avor",
+ "▁fa vor",
+ "▁fav or",
+ "de st",
+ "des t",
+ "d est",
+ "▁ent ity",
+ "▁ entity",
+ "Ca l",
+ "C al",
+ "▁There fore",
+ "D D",
+ "; ;",
+ "▁Dez ember",
+ "▁R h",
+ "im ents",
+ "iment s",
+ "imen ts",
+ "i ments",
+ "▁return ing",
+ "st o",
+ "s to",
+ "▁Val ue",
+ "▁ Value",
+ "▁l iber",
+ "▁li ber",
+ "▁lib er",
+ "▁Res ult",
+ "▁ Result",
+ "▁b ind",
+ "▁bi nd",
+ "▁bin d",
+ "▁ bind",
+ "vo ir",
+ "v oir",
+ "▁T im",
+ "▁Ti m",
+ "▁ Tim",
+ "▁M ovie",
+ "▁Mo vie",
+ "▁Mov ie",
+ "▁ Movie",
+ "we g",
+ "w eg",
+ "ke t",
+ "k et",
+ "▁и сто",
+ "▁ис то",
+ "▁fri ends",
+ "▁friend s",
+ "▁f n",
+ "▁ fn",
+ "▁é l",
+ "▁ él",
+ "▁& =",
+ "▁ &=",
+ "ar den",
+ "ard en",
+ "arde n",
+ "ff icial",
+ "ffic ial",
+ "▁comm unity",
+ "▁commun ity",
+ "▁ community",
+ "▁a pi",
+ "▁ap i",
+ "▁ api",
+ "Ar gs",
+ "Arg s",
+ "ie ren",
+ "ier en",
+ "iere n",
+ "i eren",
+ "▁d ann",
+ "▁da nn",
+ "▁dan n",
+ "om orph",
+ "ad r",
+ "a dr",
+ "lo op",
+ "l oop",
+ "um an",
+ "uma n",
+ "u man",
+ "▁v ous",
+ "▁vo us",
+ "▁vou s",
+ "▁ vous",
+ "bs t",
+ "b st",
+ "sub mit",
+ "\\ |",
+ "ти н",
+ "т ин",
+ "Cont ainer",
+ "as ket",
+ "ask et",
+ "? )",
+ "Se c",
+ "S ec",
+ "▁d rive",
+ "▁dr ive",
+ "▁dri ve",
+ "▁driv e",
+ "▁ drive",
+ "As s",
+ "A ss",
+ "▁s we",
+ "▁sw e",
+ "▁a mer",
+ "▁am er",
+ "▁ amer",
+ "▁m ine",
+ "▁min e",
+ "▁mi ne",
+ "▁ mine",
+ "▁H am",
+ "▁Ha m",
+ "▁av ait",
+ "▁ avait",
+ "▁H on",
+ "▁Ho n",
+ "▁a près",
+ "▁ap rès",
+ "▁apr ès",
+ "▁ après",
+ "▁M ann",
+ "▁Man n",
+ "▁Ma nn",
+ "сь ка",
+ "ськ а",
+ "▁incre ase",
+ "▁t y",
+ "▁ ty",
+ "sk y",
+ "s ky",
+ "▁acc ur",
+ "▁ac cur",
+ "art icle",
+ "we ight",
+ "weig ht",
+ "▁s ex",
+ "▁se x",
+ "▁ sex",
+ "▁list ade",
+ "▁lista de",
+ "/* *",
+ "/ **",
+ "▁est á",
+ "}} $",
+ "} }$",
+ "ar go",
+ "arg o",
+ "def ine",
+ "defin e",
+ "▁со став",
+ "▁соста в",
+ "s ession",
+ "ad s",
+ "a ds",
+ "ст ви",
+ "ств и",
+ "▁L aw",
+ "▁La w",
+ "▁d ialog",
+ "▁di alog",
+ "▁dia log",
+ "▁ dialog",
+ "▁dup licate",
+ "▁é p",
+ "▁ ép",
+ "▁v oc",
+ "▁vo c",
+ "fr i",
+ "f ri",
+ "▁g reen",
+ "▁gr een",
+ "▁gre en",
+ "▁ green",
+ "▁h idden",
+ "▁hid den",
+ "▁ hidden",
+ "▁Is land",
+ "▁di ag",
+ "▁dia g",
+ "ow ej",
+ "owe j",
+ "my sql",
+ "mys ql",
+ "mysq l",
+ "te il",
+ "tei l",
+ "t eil",
+ "r ä",
+ "ik an",
+ "ika n",
+ "i kan",
+ "▁Jos é",
+ "al ed",
+ "ale d",
+ "a led",
+ "Run time",
+ "R untime",
+ "▁t rain",
+ "▁tr ain",
+ "▁tra in",
+ "▁ train",
+ "▁Di vision",
+ "▁Div ision",
+ "ни ц",
+ "▁S pan",
+ "▁Sp an",
+ "▁ Span",
+ "ни ма",
+ "ним а",
+ ")= \\",
+ ") =\\",
+ "та н",
+ "т ан",
+ "▁st ay",
+ "▁sta y",
+ "▁f oo",
+ "▁fo o",
+ "▁ foo",
+ "▁acc om",
+ "▁ac com",
+ "▁h ers",
+ "▁he rs",
+ "▁her s",
+ "▁на у",
+ "▁M ün",
+ "ide os",
+ "ideo s",
+ "st atic",
+ "stat ic",
+ "▁re ady",
+ "▁read y",
+ "▁ ready",
+ "] `",
+ "▁vis ible",
+ "▁vi sible",
+ "▁ visible",
+ "▁H ope",
+ "▁Ho pe",
+ "▁Hop e",
+ "ul ated",
+ "ula ted",
+ "ulate d",
+ "▁C ult",
+ "▁Cu lt",
+ "ст ро",
+ "стр о",
+ "с тро",
+ "C o",
+ "▁sm aller",
+ "▁small er",
+ "at ura",
+ "atur a",
+ "atu ra",
+ "▁perfect ly",
+ "re q",
+ "r eq",
+ "▁pro posed",
+ "▁prop osed",
+ "▁propos ed",
+ "▁propose d",
+ "▁deg li",
+ "Se arch",
+ "S earch",
+ "▁i ch",
+ "▁ic h",
+ "▁ ich",
+ "Ma x",
+ "M ax",
+ "▁vol ume",
+ "▁ volume",
+ "exec ute",
+ "gr e",
+ "g re",
+ "▁s port",
+ "▁sp ort",
+ "▁spo rt",
+ "ud ad",
+ "uda d",
+ "P T",
+ "▁Rec ords",
+ "▁Record s",
+ "▁c ook",
+ "▁co ok",
+ "▁ cook",
+ "▁exp and",
+ "▁ expand",
+ "б і",
+ "▁al tri",
+ "▁alt ri",
+ "pp et",
+ "ppe t",
+ "p pet",
+ "ar se",
+ "ars e",
+ "▁w et",
+ "▁we t",
+ "▁B ob",
+ "▁Bo b",
+ "▁ Bob",
+ "▁F C",
+ "▁ FC",
+ "▁Associ ation",
+ "uj e",
+ "u je",
+ "▁f el",
+ "▁fe l",
+ "▁ fel",
+ "▁с лу",
+ "▁ слу",
+ "▁B ig",
+ "▁Bi g",
+ "▁ Big",
+ "/ \\",
+ "G e",
+ "wh ile",
+ "{ (",
+ "▁su fficient",
+ "Pos ition",
+ "P osition",
+ "▁under standing",
+ "▁understand ing",
+ "▁n ue",
+ "▁nu e",
+ "▁r az",
+ "▁ra z",
+ "▁ raz",
+ "▁y e",
+ "▁ ye",
+ "he m",
+ "h em",
+ "N um",
+ "▁Pro ject",
+ "▁ Project",
+ "▁I ts",
+ "▁It s",
+ "▁h asta",
+ "▁ha sta",
+ "▁has ta",
+ "▁hast a",
+ "en so",
+ "ens o",
+ "▁w ire",
+ "▁wir e",
+ "▁ wire",
+ "Re t",
+ "R et",
+ "u j",
+ "pro of",
+ "▁re levant",
+ "▁relev ant",
+ "▁part ir",
+ "▁parti r",
+ "▁a go",
+ "▁ag o",
+ "▁ ago",
+ "if icate",
+ "ific ate",
+ "ifica te",
+ "▁d omin",
+ "▁do min",
+ "▁dom in",
+ "▁ domin",
+ "▁b oy",
+ "▁bo y",
+ "▁ boy",
+ "▁p lant",
+ "▁pl ant",
+ "▁pla nt",
+ "▁plan t",
+ "▁ plant",
+ "▁enc oding",
+ "▁ encoding",
+ "▁th rows",
+ "▁thr ows",
+ "▁throw s",
+ "▁thro ws",
+ "▁R ock",
+ "▁Ro ck",
+ "▁Roc k",
+ "zo ne",
+ "zon e",
+ "z one",
+ "ga ng",
+ "gan g",
+ "g ang",
+ "wid get",
+ "w idget",
+ "▁interest ing",
+ "DE R",
+ "D ER",
+ "▁d emon",
+ "▁de mon",
+ "▁dem on",
+ "▁demo n",
+ "▁off ice",
+ "▁offic e",
+ "▁ office",
+ "am t",
+ "a mt",
+ "ät er",
+ "ä ter",
+ "▁Wh ite",
+ "▁Whit e",
+ "▁ White",
+ "▁v ersch",
+ "▁ver sch",
+ "▁vers ch",
+ "▁die ser",
+ "▁dies er",
+ "▁diese r",
+ "▁M ount",
+ "▁Mo unt",
+ "▁Mou nt",
+ "▁ Mount",
+ "▁stud ents",
+ "▁student s",
+ "▁P ub",
+ "▁Pu b",
+ "▁ Pub",
+ "▁Д е",
+ "ij a",
+ "i ja",
+ "▁C y",
+ "▁ Cy",
+ "▁Californ ia",
+ "▁ab ril",
+ "äl l",
+ "ä ll",
+ "▁ч ем",
+ "▁че м",
+ "T V",
+ "▁m és",
+ "▁mé s",
+ "▁decl ared",
+ "▁decla red",
+ "▁declar ed",
+ "▁declare d",
+ "▁ ю",
+ "ő l",
+ "ap pa",
+ "app a",
+ "a ppa",
+ "▁Б е",
+ "ec ho",
+ "ech o",
+ "e cho",
+ "num er",
+ "nu mer",
+ "n umer",
+ "▁po sted",
+ "▁pos ted",
+ "▁post ed",
+ "▁poste d",
+ "▁в ер",
+ "▁ве р",
+ "▁ вер",
+ "▁годи не",
+ "▁we ak",
+ "▁ weak",
+ "▁Re public",
+ "▁Rep ublic",
+ "▁Repub lic",
+ "▁ch ampion",
+ "▁champ ion",
+ "ensure math",
+ "you r",
+ "yo ur",
+ "y our",
+ "▁O ber",
+ "▁Ob er",
+ "▁Cent ral",
+ "is a",
+ "i sa",
+ "ан д",
+ "а нд",
+ "y y",
+ "▁full y",
+ "▁ful ly",
+ "▁ fully",
+ "▁S D",
+ "▁ SD",
+ "▁Lin ux",
+ "▁ Linux",
+ "▁Sc ott",
+ "▁Scot t",
+ "part ment",
+ "ko n",
+ "k on",
+ "▁cont ract",
+ "▁contr act",
+ "▁contra ct",
+ "▁O F",
+ "▁ OF",
+ "▁a le",
+ "▁al e",
+ "▁ ale",
+ "▁A nn",
+ "▁An n",
+ "▁на д",
+ "▁ над",
+ "la h",
+ "l ah",
+ "▁N ext",
+ "▁Ne xt",
+ "▁ Next",
+ "or en",
+ "ore n",
+ "o ren",
+ "▁d isk",
+ "▁di sk",
+ "▁dis k",
+ "▁ disk",
+ "▁e g",
+ "▁ eg",
+ "at u",
+ "a tu",
+ "ло ги",
+ "лог и",
+ "▁g ames",
+ "▁game s",
+ "▁ga mes",
+ "▁gam es",
+ "Le ft",
+ "L eft",
+ "▁l u",
+ "▁ lu",
+ "▁fin ite",
+ "▁finit e",
+ "▁ finite",
+ "▁к и",
+ "▁ ки",
+ "▁cr ash",
+ "▁cra sh",
+ "ph er",
+ "phe r",
+ "p her",
+ "ex e",
+ "e xe",
+ "AT ION",
+ "▁br other",
+ "▁bro ther",
+ "En g",
+ "E ng",
+ "ta t",
+ "t at",
+ "▁In teger",
+ "▁ Integer",
+ "но му",
+ "ном у",
+ "н ому",
+ "▁col on",
+ "▁co lon",
+ "▁ colon",
+ "i qu",
+ ")) .",
+ ") ).",
+ "iv i",
+ "i vi",
+ "▁M ethod",
+ "▁Met hod",
+ "▁ Method",
+ "ar ten",
+ "art en",
+ "arte n",
+ "Un i",
+ "U ni",
+ "ve ctor",
+ "vec tor",
+ "v ector",
+ "▁w ood",
+ "▁wo od",
+ "▁ wood",
+ "р т",
+ "▁Л е",
+ "▁siè cle",
+ "▁g ent",
+ "▁ge nt",
+ "▁gen t",
+ "▁ gent",
+ "} \r",
+ "▁cont ents",
+ "▁content s",
+ "▁conten ts",
+ "▁ contents",
+ "▁com pan",
+ "▁comp an",
+ "G o",
+ "▁j ou",
+ "▁jo u",
+ "▁ jou",
+ "ue nt",
+ "uen t",
+ "u ent",
+ "As ync",
+ "A sync",
+ "print f",
+ "▁M odel",
+ "▁Mod el",
+ "▁Mo del",
+ "▁Mode l",
+ "▁ Model",
+ "▁ke pt",
+ "AS E",
+ "A SE",
+ "▁prov ides",
+ "▁provide s",
+ "▁Ab gerufen",
+ "▁G all",
+ "▁Gal l",
+ "▁Ga ll",
+ "▁Al f",
+ "S A",
+ "▁M em",
+ "▁Me m",
+ "▁ Mem",
+ "▁k ter",
+ "▁ kter",
+ "▁B ru",
+ "▁Br u",
+ "And roid",
+ "( :",
+ "▁У краї",
+ "▁Укра ї",
+ "N e",
+ "M in",
+ "at r",
+ "a tr",
+ "▁H al",
+ "▁Ha l",
+ "de lete",
+ "del ete",
+ "od o",
+ "o do",
+ "▁n ão",
+ "èn e",
+ "è ne",
+ "▁calcul ate",
+ "▁calc ulate",
+ "Js on",
+ "J son",
+ "ke ys",
+ "key s",
+ "не й",
+ "н ей",
+ "▁h ence",
+ "▁hen ce",
+ "▁o w",
+ "▁ ow",
+ "▁L ib",
+ "▁Li b",
+ "▁ Lib",
+ "en o",
+ "e no",
+ "▁L ove",
+ "▁Lo ve",
+ "▁Lov e",
+ "os i",
+ "o si",
+ "wi de",
+ "wid e",
+ "w ide",
+ "▁s core",
+ "▁sc ore",
+ "▁ score",
+ "ful l",
+ "fu ll",
+ "f ull",
+ "во д",
+ "в од",
+ "▁determ ine",
+ "▁determin e",
+ "▁s paces",
+ "▁sp aces",
+ "▁space s",
+ "▁spac es",
+ "▁ spaces",
+ "ло ва",
+ "лов а",
+ "л ова",
+ "▁pe ut",
+ "▁peu t",
+ "ér al",
+ "éra l",
+ "é ral",
+ "ó ł",
+ "▁app oint",
+ "▁ap point",
+ "▁T w",
+ "▁ Tw",
+ "< ?",
+ "▁Or der",
+ "▁Ord er",
+ "▁ Order",
+ "▁h op",
+ "▁ho p",
+ "ran dom",
+ "rand om",
+ "r andom",
+ "ca che",
+ "c ache",
+ "▁dest roy",
+ "▁ destroy",
+ "▁r ace",
+ "▁ra ce",
+ "▁rac e",
+ "▁ race",
+ "T ag",
+ "▁r id",
+ "▁ri d",
+ "▁ rid",
+ "▁neg ative",
+ "▁ negative",
+ "Ca r",
+ "C ar",
+ "ens ional",
+ "ension al",
+ "d k",
+ "▁c ro",
+ "▁cr o",
+ "▁ cro",
+ "▁TH EN",
+ "▁THE N",
+ "▁$ .",
+ "▁ $.",
+ "en sk",
+ "ens k",
+ "N E",
+ "H O",
+ "▁k le",
+ "▁kl e",
+ "osp ital",
+ "kt e",
+ "k te",
+ "fér ences",
+ "férence s",
+ "ud es",
+ "ude s",
+ "u des",
+ "I R",
+ "ot ion",
+ "oti on",
+ "o tion",
+ "▁Re al",
+ "▁ Real",
+ "▁Febru ar",
+ "и н",
+ "▁O ld",
+ "▁Ol d",
+ "▁ Old",
+ "ко го",
+ "к ого",
+ "le ich",
+ "lei ch",
+ "▁ р",
+ "ía n",
+ "í an",
+ "▁г а",
+ "▁ га",
+ "ci de",
+ "cid e",
+ "c ide",
+ "la b",
+ "l ab",
+ "▁p ull",
+ "▁pu ll",
+ "▁pul l",
+ "▁ pull",
+ "▁' /",
+ "Lo ng",
+ "L ong",
+ ", $",
+ "▁appropri ate",
+ "▁бы ла",
+ "▁был а",
+ "f ühr",
+ "▁M edia",
+ "▁Me dia",
+ "▁Med ia",
+ "▁Medi a",
+ "▁ Media",
+ "▁m anner",
+ "▁man ner",
+ "▁Г е",
+ "de scription",
+ "des cription",
+ "Be an",
+ "▁L ar",
+ "▁La r",
+ "▁ Lar",
+ "'] ;",
+ "' ];",
+ "▁re lation",
+ "▁rel ation",
+ "▁rela tion",
+ "▁ relation",
+ "▁S orry",
+ "▁Sor ry",
+ "ha r",
+ "h ar",
+ "cp p",
+ "c pp",
+ "▁K o",
+ "▁exec ution",
+ "▁execut ion",
+ "▁ execution",
+ "in os",
+ "ino s",
+ "i nos",
+ "▁b ul",
+ "▁bu l",
+ "▁ bul",
+ "gr ade",
+ "gra de",
+ "grad e",
+ "g rade",
+ "▁M u",
+ "▁p il",
+ "▁pi l",
+ "wr it",
+ "w rit",
+ "ific ations",
+ "ification s",
+ "in ese",
+ "ine se",
+ "ines e",
+ "▁Ph ili",
+ "▁Phil i",
+ "d x",
+ "▁le ading",
+ "▁lead ing",
+ "▁ leading",
+ "▁J ournal",
+ "ov ed",
+ "ove d",
+ "o ved",
+ "▁cont ro",
+ "▁contr o",
+ "но ва",
+ "нов а",
+ "н ова",
+ "Y es",
+ "▁ch annel",
+ "▁ channel",
+ ")) ,",
+ ") ),",
+ "is ten",
+ "ist en",
+ "iste n",
+ "i sten",
+ "ak a",
+ "a ka",
+ "To String",
+ "ma s",
+ "m as",
+ "▁e tt",
+ "▁et t",
+ "▁ ett",
+ "▁for ces",
+ "▁force s",
+ "ul ations",
+ "ulation s",
+ "▁C all",
+ "▁Cal l",
+ "▁Ca ll",
+ "▁ Call",
+ "▁explan ation",
+ "or ing",
+ "ori ng",
+ "o ring",
+ "AT A",
+ "A TA",
+ "ch ter",
+ "cht er",
+ "chte r",
+ "wh en",
+ "w hen",
+ "V C",
+ "▁Jah rh",
+ "▁Jahr h",
+ "Ca se",
+ "C ase",
+ "▁comm ands",
+ "▁command s",
+ "▁ commands",
+ "▁r ich",
+ "▁ric h",
+ "▁ri ch",
+ "▁ rich",
+ "bu s",
+ "b us",
+ "F e",
+ "mb ox",
+ "m box",
+ "▁re con",
+ "▁rec on",
+ "ñ o",
+ "▁s hape",
+ "▁sh ape",
+ "▁ shape",
+ "ow y",
+ "o wy",
+ "en try",
+ "ent ry",
+ "entr y",
+ "it able",
+ "ita ble",
+ "i table",
+ "▁e lection",
+ "▁el ection",
+ "▁elect ion",
+ "▁ele ction",
+ "є ться",
+ "▁p rep",
+ "▁pr ep",
+ "▁pre p",
+ "▁ prep",
+ "v á",
+ "▁in fin",
+ "▁inf in",
+ "lo t",
+ "l ot",
+ "▁bo oks",
+ "▁book s",
+ "▁ books",
+ "▁U SA",
+ "▁US A",
+ "▁ USA",
+ "ли н",
+ "л ин",
+ "▁p om",
+ "▁po m",
+ "▁ pom",
+ "▁n as",
+ "▁na s",
+ "▁ nas",
+ "▁t ags",
+ "▁tag s",
+ "▁ta gs",
+ "▁ tags",
+ "▁exec uted",
+ "▁execute d",
+ "▁execut ed",
+ "ail le",
+ "ai lle",
+ "a ille",
+ "lu ng",
+ "l ung",
+ "▁Java Script",
+ "▁ JavaScript",
+ "▁b all",
+ "▁bal l",
+ "▁ba ll",
+ "▁ ball",
+ "▁ain si",
+ "▁P ri",
+ "▁Pr i",
+ "{ $",
+ "▁U N",
+ "▁ UN",
+ "▁R am",
+ "▁Ra m",
+ "▁h ear",
+ "▁he ar",
+ "▁U buntu",
+ ">( );",
+ ">() ;",
+ "> ();",
+ "▁p ure",
+ "▁pu re",
+ "▁pur e",
+ "▁em bed",
+ "▁emb ed",
+ "▁ embed",
+ "a ção",
+ "cont roller",
+ "control ler",
+ "▁mar ried",
+ "▁F ol",
+ "▁Fo l",
+ "fa mil",
+ "f amil",
+ "▁p rec",
+ "▁pr ec",
+ "▁pre c",
+ "▁ prec",
+ "▁rec urs",
+ "pa d",
+ "p ad",
+ "istr ation",
+ "istra tion",
+ "▁respect ively",
+ "▁respective ly",
+ "[ $",
+ "au tor",
+ "aut or",
+ "auto r",
+ "a utor",
+ "▁g rav",
+ "▁gr av",
+ "▁gra v",
+ "ie ra",
+ "ier a",
+ "i era",
+ "az ioni",
+ "azi oni",
+ "a zioni",
+ "▁B ul",
+ "▁Bu l",
+ "▁Austral ia",
+ "mon d",
+ "mo nd",
+ "m ond",
+ "▁T ro",
+ "▁Tr o",
+ "▁E le",
+ "▁El e",
+ "pack ages",
+ "package s",
+ "ms dn",
+ "▁A ls",
+ "▁Al s",
+ "▁pr zy",
+ "▁prz y",
+ "AR T",
+ "A RT",
+ "▁char ge",
+ "▁charg e",
+ "▁ charge",
+ "▁app lications",
+ "▁application s",
+ "▁applic ations",
+ "Un it",
+ "Uni t",
+ "U nit",
+ "ar en",
+ "are n",
+ "a ren",
+ "▁sud den",
+ "om eter",
+ "ome ter",
+ "omet er",
+ "o meter",
+ "▁d ot",
+ "▁do t",
+ "▁ dot",
+ "ac ji",
+ "a cji",
+ "кт ор",
+ "кто р",
+ "к тор",
+ "im in",
+ "imi n",
+ "i min",
+ "en ing",
+ "eni ng",
+ "e ning",
+ "▁d onde",
+ "▁do nde",
+ "▁don de",
+ "▁H o",
+ "tr ee",
+ "tre e",
+ "t ree",
+ "m b",
+ "▁d rag",
+ "▁dr ag",
+ "▁dra g",
+ "▁ drag",
+ "aj e",
+ "a je",
+ "▁in valid",
+ "▁ invalid",
+ "▁fin ish",
+ "la im",
+ "▁f eed",
+ "▁fe ed",
+ "▁fee d",
+ "▁ feed",
+ "▁N ap",
+ "▁Na p",
+ "ro om",
+ "r oom",
+ "im ages",
+ "ima ges",
+ "image s",
+ "▁са й",
+ "▁su cc",
+ "▁suc c",
+ "if fer",
+ "iff er",
+ "iffe r",
+ "▁a ño",
+ "▁añ o",
+ "▁c ual",
+ "▁cu al",
+ "ме ри",
+ "мер и",
+ "D R",
+ "▁B ilder",
+ "▁Bi lder",
+ "▁Bild er",
+ "▁Bil der",
+ "б ра",
+ "ra it",
+ "rai t",
+ "r ait",
+ "pa n",
+ "p an",
+ "ен ь",
+ "е нь",
+ "▁dist inct",
+ "▁K n",
+ "ön ig",
+ "ö nig",
+ "an ced",
+ "ance d",
+ "anc ed",
+ "▁lo ading",
+ "▁load ing",
+ "▁ loading",
+ "▁Te chn",
+ "▁S el",
+ "▁Se l",
+ "mu s",
+ "m us",
+ "▁r ail",
+ "▁ra il",
+ "▁st udent",
+ "▁stud ent",
+ "▁ student",
+ "▁not ice",
+ "▁s la",
+ "▁sl a",
+ "▁Д а",
+ "▁gu ard",
+ "▁ guard",
+ "▁D ay",
+ "▁Da y",
+ "▁ Day",
+ "ва ли",
+ "вал и",
+ "в али",
+ "Op tion",
+ "Opt ion",
+ "O ption",
+ "ais on",
+ "ai son",
+ "a ison",
+ "ip p",
+ "i pp",
+ "▁J un",
+ "▁Ju n",
+ "▁f ell",
+ "▁fe ll",
+ "▁fel l",
+ "▁ab solute",
+ "▁absol ute",
+ "▁ absolute",
+ "ов е",
+ "о ве",
+ "de bug",
+ "deb ug",
+ "▁S ud",
+ "▁Su d",
+ "п ы",
+ "ug ins",
+ "ugin s",
+ "▁view s",
+ "▁vie ws",
+ "▁ views",
+ "la y",
+ "l ay",
+ "▁s urr",
+ "▁su rr",
+ "▁sur r",
+ "▁st ood",
+ "▁sto od",
+ "▁ stood",
+ "▁в і",
+ "▁ ві",
+ "select ed",
+ "sel ected",
+ "г і",
+ "▁att ributes",
+ "▁attribute s",
+ "▁ attributes",
+ "fin al",
+ "fi nal",
+ "f inal",
+ "en da",
+ "end a",
+ "▁B on",
+ "▁Bo n",
+ "ne rs",
+ "ner s",
+ "n ers",
+ "▁W er",
+ "▁We r",
+ "bu r",
+ "b ur",
+ "it tel",
+ "itt el",
+ "itte l",
+ "▁m oving",
+ "▁mov ing",
+ "▁mo ving",
+ "▁P lan",
+ "▁Pl an",
+ "▁Pla n",
+ "▁ Plan",
+ "is ches",
+ "isch es",
+ "ische s",
+ "isc hes",
+ "J ava",
+ "▁b asis",
+ "▁bas is",
+ "▁B us",
+ "▁Bu s",
+ "▁ Bus",
+ "▁A u",
+ "▁I ll",
+ "▁Il l",
+ "▁ Ill",
+ "▁вре мя",
+ "▁ц ент",
+ "▁ цент",
+ "hand le",
+ "сту п",
+ "▁F ar",
+ "▁Fa r",
+ "▁o raz",
+ "▁or az",
+ "▁ora z",
+ "oc r",
+ "o cr",
+ "▁se it",
+ "▁sei t",
+ "on der",
+ "ond er",
+ "onde r",
+ "o nder",
+ "до м",
+ "д ом",
+ ": /",
+ "ch or",
+ "cho r",
+ "c hor",
+ "▁T own",
+ "▁To wn",
+ "▁Tow n",
+ "▁def init",
+ "▁defin it",
+ "re act",
+ "rea ct",
+ "▁pie ce",
+ "▁Kar l",
+ "▁Ka rl",
+ "C I",
+ "▁App lication",
+ "▁ Application",
+ "un ter",
+ "unt er",
+ "unte r",
+ "▁for med",
+ "▁form ed",
+ "▁forme d",
+ "▁ formed",
+ "▁п у",
+ "▁ пу",
+ "B o",
+ "▁Dan iel",
+ "▁ Daniel",
+ "▁п ла",
+ "▁ пла",
+ "Bo dy",
+ "B ody",
+ "}) $",
+ "} )$",
+ "▁бы ли",
+ "▁был и",
+ "▁e arth",
+ "▁ear th",
+ "г ла",
+ "Th ere",
+ "The re",
+ "T here",
+ "▁с тра",
+ "▁ст ра",
+ "▁ стра",
+ "▁v ille",
+ "▁vi lle",
+ "▁vill e",
+ "▁vil le",
+ "▁ ville",
+ "▁c entre",
+ "▁cent re",
+ ") \r",
+ "▁help ful",
+ "▁+ +",
+ "▁ ++",
+ "▁C G",
+ "▁ CG",
+ "iz ione",
+ "izi one",
+ "izio ne",
+ "i zione",
+ "▁G ame",
+ "▁Ga me",
+ "▁Gam e",
+ "▁ Game",
+ "▁Wh ich",
+ "▁p ip",
+ "▁pi p",
+ "▁ pip",
+ "▁Port ug",
+ "D S",
+ "▁de scribe",
+ "▁des cribe",
+ "▁descri be",
+ "▁check ing",
+ "▁man ager",
+ "▁manage r",
+ "▁ manager",
+ "B O",
+ "▁B undes",
+ "▁Bund es",
+ "▁Bun des",
+ "bu ch",
+ "b uch",
+ "▁dec ided",
+ "▁decide d",
+ "▁decid ed",
+ "▁Jahrh undert",
+ "▁f if",
+ "▁fi f",
+ "▁ fif",
+ "e fficient",
+ "an ci",
+ "anc i",
+ "br aries",
+ "bra ries",
+ "▁f ails",
+ "▁fa ils",
+ "▁fail s",
+ "▁k ernel",
+ "▁ker nel",
+ "▁ kernel",
+ "▁G l",
+ "▁N acional",
+ "▁pro ceed",
+ "▁proc eed",
+ "▁f uer",
+ "▁fue r",
+ "▁fu er",
+ "▁l iving",
+ "▁li ving",
+ "▁liv ing",
+ "▁success fully",
+ "▁successful ly",
+ "▁f aster",
+ "▁fa ster",
+ "▁fast er",
+ "▁fas ter",
+ "▁con tre",
+ "▁cont re",
+ "▁contr e",
+ "▁ contre",
+ "▁pr ison",
+ "▁pri son",
+ "▁pris on",
+ "OR T",
+ "O RT",
+ "he lp",
+ "hel p",
+ "▁a utor",
+ "▁au tor",
+ "▁aut or",
+ "▁auto r",
+ "▁ autor",
+ "ła w",
+ "ł aw",
+ "aj ą",
+ "a ją",
+ "▁A rm",
+ "▁Ar m",
+ "▁ Arm",
+ "▁pro vin",
+ "▁prov in",
+ "▁na am",
+ "/ #",
+ "se d",
+ "s ed",
+ "▁g esch",
+ "▁ge sch",
+ "▁ges ch",
+ "▁ gesch",
+ "▁м ар",
+ "▁ма р",
+ "▁ мар",
+ "es k",
+ "e sk",
+ "ter m",
+ "te rm",
+ "t erm",
+ "▁T ex",
+ "▁Te x",
+ "▁ Tex",
+ "ir ing",
+ "iri ng",
+ "i ring",
+ "▁t ools",
+ "▁to ols",
+ "▁too ls",
+ "▁tool s",
+ "▁ tools",
+ "PD F",
+ "P DF",
+ "▁u lt",
+ "▁ul t",
+ "▁ ult",
+ "iss enschaft",
+ "issen schaft",
+ "▁could n",
+ "di ng",
+ "din g",
+ "d ing",
+ "De p",
+ "D ep",
+ "{ -",
+ "▁pre dict",
+ "▁pred ict",
+ "▁ predict",
+ "ant age",
+ "anta ge",
+ "▁L ike",
+ "▁Li ke",
+ "▁ Like",
+ "▁Б и",
+ "to ols",
+ "tool s",
+ "t ools",
+ "es tra",
+ "est ra",
+ "estr a",
+ "e stra",
+ "▁k i",
+ "▁ ki",
+ "▁J im",
+ "▁Ji m",
+ "st ar",
+ "sta r",
+ "s tar",
+ "▁re mark",
+ "▁r emark",
+ "▁rem ark",
+ "▁ remark",
+ "ó g",
+ "na bla",
+ "nab la",
+ "▁Al though",
+ "mod e",
+ "mo de",
+ "m ode",
+ "H ost",
+ "▁st range",
+ "▁str ange",
+ "▁stran ge",
+ "No ne",
+ "Non e",
+ "N one",
+ "bl ack",
+ "bla ck",
+ "b lack",
+ "▁F estival",
+ "▁Fest ival",
+ "▁I S",
+ "▁ IS",
+ "an za",
+ "anz a",
+ "▁( -",
+ "▁ (-",
+ "ic ket",
+ "ick et",
+ "i cket",
+ "ко ла",
+ "кол а",
+ "▁J es",
+ "▁Je s",
+ "▁f lex",
+ "▁fl ex",
+ "▁fle x",
+ "▁ flex",
+ "▁ À",
+ "▁N etwork",
+ "▁Net work",
+ "▁ Network",
+ "▁E X",
+ "▁ EX",
+ "▁e nero",
+ "▁en ero",
+ "▁ener o",
+ "! ”",
+ "▁O rt",
+ "▁Or t",
+ "▁al ors",
+ "▁Or iginal",
+ "▁Origin al",
+ "▁Orig inal",
+ "▁ Original",
+ "▁z o",
+ "▁ zo",
+ "ны ми",
+ "ным и",
+ "▁s pl",
+ "▁sp l",
+ "▁ spl",
+ "Dra w",
+ "Dr aw",
+ "D raw",
+ "yo nd",
+ "y ond",
+ "─ ─",
+ "▁O t",
+ "▁d ram",
+ "▁dr am",
+ "▁dra m",
+ "▁di vision",
+ "▁div ision",
+ "▁divis ion",
+ "▁e fficient",
+ "▁effic ient",
+ "▁ efficient",
+ "▁Г а",
+ "▁v ier",
+ "▁vi er",
+ "▁vie r",
+ "▁ vier",
+ "na k",
+ "n ak",
+ "L S",
+ "▁sp irit",
+ "▁spir it",
+ "zeich net",
+ "▁d ici",
+ "▁di ci",
+ "▁dic i",
+ "cl ear",
+ "cle ar",
+ "c lear",
+ "co py",
+ "cop y",
+ "c opy",
+ "ya r",
+ "y ar",
+ "▁ро ці",
+ "us qu",
+ "u squ",
+ "▁n ous",
+ "▁no us",
+ "▁nou s",
+ "▁b lev",
+ "▁bl ev",
+ "▁ble v",
+ "ж де",
+ "Ar g",
+ "A rg",
+ "▁per formed",
+ "▁perform ed",
+ "▁M ake",
+ "▁Ma ke",
+ "▁Mak e",
+ "▁ Make",
+ "▁Car ol",
+ "▁Ca rol",
+ "et to",
+ "ett o",
+ "e tto",
+ "▁S and",
+ "▁San d",
+ "▁Sa nd",
+ "▁D isc",
+ "▁Dis c",
+ "▁Di sc",
+ "En c",
+ "E nc",
+ "re ro",
+ "rer o",
+ "r ero",
+ "ha sh",
+ "has h",
+ "h ash",
+ "▁f ocus",
+ "▁fo cus",
+ "▁foc us",
+ "▁ focus",
+ "▁att ention",
+ "▁a gre",
+ "▁ag re",
+ "▁agr e",
+ "▁di vis",
+ "▁div is",
+ "▁бы ло",
+ "▁был о",
+ "▁e j",
+ "▁ ej",
+ "▁m arch",
+ "▁mar ch",
+ "▁marc h",
+ "▁ph ase",
+ "▁ phase",
+ "ía s",
+ "í as",
+ "▁ph il",
+ "▁P ap",
+ "▁Pa p",
+ "▁r iver",
+ "▁riv er",
+ "▁ri ver",
+ "▁ river",
+ "▁c aused",
+ "▁caus ed",
+ "▁cause d",
+ "▁ca used",
+ "pl ugin",
+ "▁Te am",
+ "▁ Team",
+ "ul er",
+ "ule r",
+ "u ler",
+ "▁$ (\"#",
+ "▁$(\" #",
+ "ie j",
+ "i ej",
+ "I SBN",
+ "na m",
+ "n am",
+ "▁f ight",
+ "▁fig ht",
+ "vi d",
+ "v id",
+ "▁L ud",
+ "▁Lu d",
+ "Select ed",
+ ":@ \"",
+ ": @\"",
+ "▁P od",
+ "▁Po d",
+ "▁ Pod",
+ "▁ann ées",
+ "▁année s",
+ "ar ios",
+ "ari os",
+ "ario s",
+ "a rios",
+ "▁deutsch er",
+ "▁deutsche r",
+ "▁N A",
+ "▁ NA",
+ "▁и ю",
+ "▁d ictionary",
+ "▁diction ary",
+ "▁ dictionary",
+ "▁Л а",
+ "▁T ri",
+ "▁Tr i",
+ "▁ Tri",
+ "è n",
+ "▁polit ical",
+ "rid ge",
+ "r idge",
+ "at ten",
+ "att en",
+ "atte n",
+ "▁circ le",
+ "▁cir cle",
+ "▁ circle",
+ "▁trans port",
+ "▁ transport",
+ "em as",
+ "ema s",
+ "e mas",
+ "F C",
+ "▁replace d",
+ "▁repla ced",
+ "▁A ud",
+ "▁Au d",
+ "is ka",
+ "isk a",
+ "i ska",
+ "Config uration",
+ "▁so ort",
+ "▁Н е",
+ "▁s equ",
+ "▁se qu",
+ "▁seq u",
+ "▁ sequ",
+ "PR O",
+ "P RO",
+ "▁b ud",
+ "▁bu d",
+ "▁ bud",
+ "▁{ {",
+ "▁ {{",
+ "lie ß",
+ "l ieß",
+ "▁M as",
+ "▁Ma s",
+ "de rs",
+ "der s",
+ "d ers",
+ "us ammen",
+ "es a",
+ "e sa",
+ "▁L y",
+ "в ро",
+ "ma c",
+ "m ac",
+ "▁и спо",
+ "▁ис по",
+ "▁s uc",
+ "▁su c",
+ "u y",
+ "▁ill ustr",
+ "▁prim era",
+ "▁prime ra",
+ "▁primer a",
+ "il ation",
+ "ila tion",
+ "i lation",
+ "▁st orage",
+ "▁stor age",
+ "▁sto rage",
+ "▁ storage",
+ "▁par ams",
+ "▁para ms",
+ "▁param s",
+ "▁pa rams",
+ "▁ params",
+ "ka z",
+ "k az",
+ "▁term inal",
+ "▁termin al",
+ "ра ль",
+ "рал ь",
+ "р аль",
+ "▁h olds",
+ "▁hold s",
+ "▁hol ds",
+ "▁ holds",
+ "ло сь",
+ "▁n ad",
+ "▁na d",
+ "▁ nad",
+ "” .",
+ "▁oct ubre",
+ "bu l",
+ "b ul",
+ "▁h us",
+ "▁hu s",
+ "▁ hus",
+ "UL T",
+ "U LT",
+ "▁ég alement",
+ "▁M ill",
+ "▁Mil l",
+ "▁Mi ll",
+ "▁ Mill",
+ "ła d",
+ "ł ad",
+ "▁cont iene",
+ "\" ?",
+ "▁> >>",
+ "▁>> >",
+ "Qu e",
+ "Q ue",
+ " ",
+ "▁p lain",
+ "▁pl ain",
+ "▁pla in",
+ "▁ plain",
+ "at iva",
+ "ativ a",
+ "ati va",
+ "oc ker",
+ "ock er",
+ "o cker",
+ "Name s",
+ "Na mes",
+ "N ames",
+ "▁J ud",
+ "▁Ju d",
+ "▁ag ree",
+ "▁agre e",
+ "▁agr ee",
+ "▁G emeinde",
+ "▁Geme inde",
+ "la re",
+ "lar e",
+ "l are",
+ "ка за",
+ "каз а",
+ "▁st arts",
+ "▁start s",
+ "▁star ts",
+ "▁ starts",
+ "▁p rice",
+ "▁pr ice",
+ "▁pri ce",
+ "▁ price",
+ "T arget",
+ "cu s",
+ "c us",
+ "▁Inst ead",
+ ". ;",
+ "▁altern ative",
+ "▁alter native",
+ "▁в ла",
+ "I E",
+ "▁organ iz",
+ "in u",
+ "i nu",
+ "▁comp leted",
+ "▁comple ted",
+ "▁complet ed",
+ "▁complete d",
+ "▁car ry",
+ "at om",
+ "ato m",
+ "a tom",
+ "▁dep ending",
+ "▁depend ing",
+ "▁O ur",
+ "▁in sp",
+ "▁ins p",
+ "▁& \\",
+ "▁ &\\",
+ "ail y",
+ "ai ly",
+ "a ily",
+ "ir ection",
+ "ire ction",
+ "irect ion",
+ "ф а",
+ "▁d efe",
+ "▁de fe",
+ "▁def e",
+ "TA C",
+ "T AC",
+ "▁de signed",
+ "▁des igned",
+ "▁design ed",
+ "▁v oir",
+ "▁vo ir",
+ "▁ voir",
+ "bre ak",
+ "▁part ie",
+ "▁parti e",
+ "▁J ahren",
+ "▁Jah ren",
+ "▁Jahr en",
+ "▁Jahre n",
+ "▁Ja hren",
+ "▁st udio",
+ "▁stud io",
+ "▁studi o",
+ "▁ studio",
+ "▁j our",
+ "▁jo ur",
+ "▁jou r",
+ "▁N otes",
+ "▁No tes",
+ "▁Not es",
+ "▁Note s",
+ "fi re",
+ "fir e",
+ "f ire",
+ "ho use",
+ "hou se",
+ "h ouse",
+ "su ccess",
+ "▁J uan",
+ "▁Ju an",
+ "J S",
+ "▁C ustom",
+ "▁ Custom",
+ "▁b esch",
+ "▁be sch",
+ "▁bes ch",
+ "▁st ated",
+ "▁stat ed",
+ "▁state d",
+ "▁sta ted",
+ "boot strap",
+ "öt t",
+ "ö tt",
+ "oz zá",
+ "▁C ON",
+ "▁CO N",
+ "▁ CON",
+ "ha v",
+ "h av",
+ "▁s leep",
+ "▁sle ep",
+ "▁ sleep",
+ "ed a",
+ "e da",
+ "ho t",
+ "h ot",
+ "án d",
+ "á nd",
+ "▁S y",
+ "▁tem ps",
+ "▁temp s",
+ "▁ temps",
+ "am ar",
+ "ama r",
+ "a mar",
+ "▁s cal",
+ "▁sc al",
+ "▁ scal",
+ "▁a st",
+ "▁as t",
+ "▁ ast",
+ "▁op ening",
+ "▁open ing",
+ "cli pse",
+ "clip se",
+ "c lipse",
+ "▁program ming",
+ "▁ programming",
+ "▁let ters",
+ "▁letter s",
+ "▁lett ers",
+ "▁pro file",
+ "▁prof ile",
+ "▁profil e",
+ "▁ profile",
+ "na h",
+ "n ah",
+ "▁be yond",
+ "▁Fur ther",
+ "face s",
+ "fa ces",
+ "fac es",
+ "f aces",
+ "▁c hart",
+ "▁ch art",
+ "▁char t",
+ "▁cha rt",
+ "▁ chart",
+ "зд а",
+ "з да",
+ "ai gn",
+ "a ign",
+ "ні й",
+ "н ій",
+ "▁R ol",
+ "▁Ro l",
+ "ова но",
+ "ован о",
+ "ter ior",
+ "te rior",
+ "we d",
+ "w ed",
+ "▁her self",
+ "▁hers elf",
+ "▁n g",
+ "▁ ng",
+ "angu ages",
+ "anguage s",
+ "}= \\",
+ "} =\\",
+ "ynam ic",
+ "yna mic",
+ "▁j ug",
+ "▁ju g",
+ "▁Ex ample",
+ "▁ Example",
+ "▁( †",
+ "▁play ing",
+ "▁pla ying",
+ "▁us age",
+ "▁ usage",
+ "▁man aged",
+ "▁manage d",
+ "▁ managed",
+ "▁N atur",
+ "▁Nat ur",
+ "те ри",
+ "тер и",
+ "▁E t",
+ "er ia",
+ "eri a",
+ "e ria",
+ "▁daugh ter",
+ "ни ем",
+ "ние м",
+ "F ragment",
+ "▁h ol",
+ "▁ho l",
+ "▁ hol",
+ "F l",
+ "огра фи",
+ "ограф и",
+ "о графи",
+ "▁i hn",
+ "▁ih n",
+ "ü h",
+ "inst ance",
+ "▁com un",
+ "▁co mun",
+ "▁tr uth",
+ "▁са мо",
+ "▁сам о",
+ "▁implement ed",
+ "▁any way",
+ "▁C ro",
+ "▁Cr o",
+ "ф е",
+ "G C",
+ "ub untu",
+ "u buntu",
+ "ty pes",
+ "type s",
+ "typ es",
+ "t ypes",
+ "ê s",
+ ".~ \\",
+ ". ~\\",
+ "fo ld",
+ "fol d",
+ "f old",
+ "▁jo ined",
+ "▁join ed",
+ "? ?",
+ "▁m é",
+ "▁ mé",
+ "▁w ild",
+ "▁wil d",
+ "к лю",
+ "row ser",
+ "rows er",
+ "▁H ome",
+ "▁Ho me",
+ "▁Hom e",
+ "▁ Home",
+ "sk iej",
+ "ski ej",
+ "skie j",
+ "s kiej",
+ "▁J OIN",
+ "▁ju in",
+ "ho f",
+ "h of",
+ "▁data set",
+ "▁dat aset",
+ "▁datas et",
+ "▁ dataset",
+ "ж ду",
+ "') )",
+ "' ))",
+ "▁mie js",
+ "AP I",
+ "A PI",
+ "▁ed ited",
+ "▁edit ed",
+ "ool s",
+ "oo ls",
+ "o ols",
+ "▁se eing",
+ "▁see ing",
+ "ij d",
+ "i jd",
+ "▁pro cedure",
+ "▁proced ure",
+ "▁B ras",
+ "▁Br as",
+ "▁Bra s",
+ "▁s igned",
+ "▁sign ed",
+ "▁sig ned",
+ "▁ signed",
+ "▁extern os",
+ "▁dis app",
+ "▁D irect",
+ "▁Di rect",
+ "▁Dire ct",
+ "▁Dir ect",
+ "▁ Direct",
+ "cy c",
+ "c yc",
+ "▁cons ult",
+ "ör d",
+ "ö rd",
+ "W idget",
+ "ci ous",
+ "cio us",
+ "c ious",
+ "se ct",
+ "sec t",
+ "s ect",
+ "▁Д и",
+ "▁w ind",
+ "▁win d",
+ "▁ wind",
+ "▁Archiv ado",
+ "am l",
+ "a ml",
+ "с с",
+ "W h",
+ "kb d",
+ "k bd",
+ "▁Ar my",
+ "▁Arm y",
+ "▁s uffer",
+ "▁suf fer",
+ "▁suff er",
+ "art ifact",
+ "▁resol ve",
+ "▁ resolve",
+ "▁S port",
+ "▁Sp ort",
+ "▁Spo rt",
+ "▁ц е",
+ "▁ це",
+ "id as",
+ "ida s",
+ "i das",
+ "▁t ax",
+ "▁ta x",
+ "▁ tax",
+ "id i",
+ "i di",
+ "▁a ctions",
+ "▁act ions",
+ "▁action s",
+ "▁ actions",
+ "пр а",
+ "п ра",
+ "pu és",
+ "p ués",
+ "▁n aj",
+ "▁na j",
+ "F alse",
+ "▁ch ance",
+ "▁та ко",
+ "▁так о",
+ "ä d",
+ "▁d ol",
+ "▁do l",
+ "▁en v",
+ "▁ env",
+ "▁bas ically",
+ "▁basic ally",
+ "▁Coun cil",
+ "zt e",
+ "z te",
+ "▁display ed",
+ "ni l",
+ "n il",
+ "comp lete",
+ "comple te",
+ "▁L em",
+ "▁Le m",
+ "ian ce",
+ "i ance",
+ "▁ос нов",
+ "▁de pend",
+ "▁dep end",
+ "pl om",
+ "ens us",
+ "ut s",
+ "u ts",
+ "▁H ot",
+ "▁Ho t",
+ "▁ Hot",
+ "bit r",
+ "bi tr",
+ "▁valid ation",
+ "▁ validation",
+ "ab b",
+ "a bb",
+ "▁т ре",
+ "▁ тре",
+ "k m",
+ "z d",
+ "ö ff",
+ "W E",
+ "▁inter ested",
+ "▁interest ed",
+ "▁{ \"",
+ "▁ {\"",
+ "ar o",
+ "a ro",
+ "▁cor rel",
+ "▁corre l",
+ "▁corr el",
+ "▁d edic",
+ "▁de dic",
+ "▁ded ic",
+ "▁l ists",
+ "▁list s",
+ "▁ lists",
+ "▁Bibli ografia",
+ "▁ear lier",
+ "pr ogram",
+ "pro gram",
+ "prog ram",
+ "▁prem ière",
+ "▁premi ère",
+ "fr ont",
+ "f ront",
+ "T ab",
+ "ст ву",
+ "ств у",
+ "dr op",
+ "dro p",
+ "d rop",
+ "▁f ear",
+ "▁fe ar",
+ "▁En laces",
+ "▁C apt",
+ "▁Cap t",
+ "▁Ca pt",
+ "▁ Capt",
+ "▁real iz",
+ "▁h al",
+ "▁ha l",
+ "▁ hal",
+ "▁inst ances",
+ "▁instance s",
+ "▁su sp",
+ "▁sus p",
+ "il ling",
+ "ill ing",
+ "illi ng",
+ "% ;",
+ "{ }",
+ "| |",
+ "▁part ition",
+ "▁parti tion",
+ "▁ partition",
+ "▁Bu ild",
+ "▁ Build",
+ "▁w o",
+ "▁ wo",
+ "▁П ер",
+ "▁Пе р",
+ "▁direct or",
+ "▁dire ctor",
+ "▁dir ector",
+ "▁S in",
+ "▁Si n",
+ "ти я",
+ "rs g",
+ "r sg",
+ "ou ver",
+ "ouv er",
+ "ouve r",
+ "▁near ly",
+ "od a",
+ "o da",
+ "кти в",
+ "к тив",
+ "▁s ir",
+ "▁si r",
+ "IM E",
+ "I ME",
+ "▁jan vier",
+ "▁W in",
+ "▁Wi n",
+ "▁ Win",
+ "Bu ild",
+ "ie urs",
+ "ieu rs",
+ "ieur s",
+ "i eurs",
+ "IN E",
+ "I NE",
+ "d ouble",
+ "La st",
+ "L ast",
+ "▁pol icy",
+ "▁polic y",
+ "▁ policy",
+ "st ore",
+ "sto re",
+ "stor e",
+ "▁obser ved",
+ "▁observ ed",
+ "▁observe d",
+ "▁obs erved",
+ "▁famil ie",
+ "ni ca",
+ "nic a",
+ "n ica",
+ "re y",
+ "r ey",
+ "з ь",
+ "▁Y ear",
+ "▁Ye ar",
+ "▁ Year",
+ "▁develop ed",
+ "▁deve loped",
+ "▁Inst itute",
+ "▁Instit ute",
+ "▁Institut e",
+ "▁re ply",
+ "▁rep ly",
+ "Com ple",
+ "Comp le",
+ "ic ian",
+ "ici an",
+ "icia n",
+ "i cian",
+ "▁G uer",
+ "▁Gu er",
+ "▁d all",
+ "▁da ll",
+ "▁dal l",
+ "▁d esp",
+ "▁de sp",
+ "▁des p",
+ "▁Foot ball",
+ "Em pty",
+ "Emp ty",
+ "ck en",
+ "cke n",
+ "c ken",
+ "un da",
+ "und a",
+ "▁U r",
+ "▁i g",
+ "▁ ig",
+ "▁A tl",
+ "▁At l",
+ "aut hor",
+ "auth or",
+ "▁B ol",
+ "▁Bo l",
+ "zi g",
+ "z ig",
+ "na t",
+ "n at",
+ "š t",
+ "se curity",
+ "sec urity",
+ "on ic",
+ "oni c",
+ "o nic",
+ "▁p es",
+ "▁pe s",
+ "▁ pes",
+ "it an",
+ "ita n",
+ "i tan",
+ "▁Ex tern",
+ "▁Ext ern",
+ "ja n",
+ "j an",
+ "VA L",
+ "V AL",
+ "▁и м",
+ "▁ им",
+ "bo ld",
+ "bol d",
+ "b old",
+ "▁в а",
+ "▁ ва",
+ "▁М о",
+ "▁dis put",
+ "▁disp ut",
+ "▁t rick",
+ "▁tr ick",
+ "▁tri ck",
+ "▁p ed",
+ "▁pe d",
+ "▁ ped",
+ ")^ {",
+ ") ^{",
+ "in to",
+ "int o",
+ "Si m",
+ "S im",
+ "▁par allel",
+ "▁ parallel",
+ "fo x",
+ "f ox",
+ "norm al",
+ "nor mal",
+ "n ormal",
+ "in ent",
+ "ine nt",
+ "inen t",
+ "пе ди",
+ "п еди",
+ "ho ld",
+ "hol d",
+ "h old",
+ "O K",
+ "▁c hem",
+ "▁ch em",
+ "▁che m",
+ "▁ chem",
+ "▁tw ice",
+ "▁us ername",
+ "▁user name",
+ "▁ username",
+ "i č",
+ "▁re presentation",
+ "▁represent ation",
+ "▁repres entation",
+ "▁j ournal",
+ "▁jour nal",
+ "▁journ al",
+ "▁: -",
+ "▁ :-",
+ "▁b att",
+ "▁ba tt",
+ "▁bat t",
+ "\\ %",
+ "▁certain ly",
+ "▁Ex ception",
+ "▁ Exception",
+ "ep s",
+ "e ps",
+ "sh ot",
+ "s hot",
+ "at egy",
+ "ate gy",
+ "ateg y",
+ "Sh ow",
+ "S how",
+ "▁Car l",
+ "▁Ca rl",
+ "ri g",
+ "r ig",
+ "▁rep orted",
+ "▁report ed",
+ "bot tom",
+ "b ottom",
+ "T F",
+ "▁Francis co",
+ "na p",
+ "n ap",
+ "▁Champion ship",
+ "▁Champions hip",
+ "▁c ourt",
+ "▁co urt",
+ "▁cour t",
+ "▁cou rt",
+ "▁ court",
+ "▁s ources",
+ "▁source s",
+ "io ur",
+ "i our",
+ "▁con serv",
+ "▁cons erv",
+ "▁conse rv",
+ "▁conser v",
+ "di ct",
+ "dic t",
+ "d ict",
+ "▁Р у",
+ "I B",
+ "▁V e",
+ "▁ №",
+ "▁E R",
+ "▁ ER",
+ "\") );",
+ "\")) ;",
+ "\" ));",
+ "▁P oint",
+ "▁Po int",
+ "▁ Point",
+ "az ine",
+ "azi ne",
+ "▁inter net",
+ "▁intern et",
+ "д на",
+ "▁car ried",
+ "▁carri ed",
+ "▁F ield",
+ "▁ Field",
+ "ax is",
+ "axi s",
+ "a xis",
+ "▁S un",
+ "▁Su n",
+ "▁a ve",
+ "▁av e",
+ "▁ ave",
+ "пи с",
+ "п ис",
+ "я н",
+ "as y",
+ "▁ju lio",
+ "▁jul io",
+ "▁juli o",
+ "▁de puis",
+ "▁dep uis",
+ "▁sugg estion",
+ "▁suggest ion",
+ "[ [",
+ "▁Arch ive",
+ "▁Archiv e",
+ "ę p",
+ "▁P ra",
+ "▁Pr a",
+ "re h",
+ "r eh",
+ "▁demon str",
+ "ф і",
+ "cm d",
+ "c md",
+ "▁was n",
+ "▁wa sn",
+ "▁ph one",
+ "▁ phone",
+ "up load",
+ "ay a",
+ "a ya",
+ "то ра",
+ "тор а",
+ "li nes",
+ "line s",
+ "lin es",
+ "l ines",
+ "▁in du",
+ "▁ind u",
+ "▁ indu",
+ "▁v ot",
+ "▁vo t",
+ "▁es pa",
+ "▁esp a",
+ "▁b in",
+ "▁bi n",
+ "▁ bin",
+ "▁по сле",
+ "▁пос ле",
+ "pl an",
+ "pla n",
+ "p lan",
+ "▁ju nio",
+ "▁jun io",
+ "▁juni o",
+ "or ial",
+ "oria l",
+ "ori al",
+ "o rial",
+ "fr ee",
+ "fre e",
+ "f ree",
+ "ster reich",
+ "▁д у",
+ "▁ ду",
+ "▁link ed",
+ "▁lin ked",
+ "▁en able",
+ "▁ enable",
+ "P C",
+ "▁dens ity",
+ "▁E gy",
+ "▁Eg y",
+ "y o",
+ "end re",
+ "▁с ъ",
+ "▁ital iano",
+ "▁A R",
+ "▁ AR",
+ "▁P ers",
+ "▁Per s",
+ "▁Pe rs",
+ "▁ Pers",
+ "fér és",
+ "▁с кла",
+ "V ar",
+ "▁On ce",
+ "▁ Once",
+ "Re d",
+ "R ed",
+ "buf fer",
+ "buff er",
+ "b uffer",
+ "▁En ter",
+ "▁Ent er",
+ "▁ Enter",
+ "▁ Š",
+ "im iento",
+ "imi ento",
+ "St ore",
+ "Sto re",
+ "▁he alth",
+ "va t",
+ "v at",
+ "IS T",
+ "I ST",
+ "O h",
+ "▁k w",
+ "▁ kw",
+ "▁r iv",
+ "▁ri v",
+ "▁ riv",
+ "▁some where",
+ "ograf ie",
+ "ografi e",
+ "priv ate",
+ "p rivate",
+ "кт и",
+ "к ти",
+ "▁de lay",
+ "▁del ay",
+ "▁ delay",
+ "▁H ttp",
+ "▁ Http",
+ "jo b",
+ "j ob",
+ "ra el",
+ "r ael",
+ "em por",
+ "emp or",
+ "▁dici embre",
+ "▁dic iembre",
+ "êt e",
+ "ê te",
+ "ц у",
+ "▁com mit",
+ "▁comm it",
+ "▁ commit",
+ "os o",
+ "o so",
+ "Val ues",
+ "Value s",
+ "▁he aders",
+ "▁head ers",
+ "▁header s",
+ "▁ headers",
+ "trans form",
+ "▁process ing",
+ "▁proces sing",
+ "▁ processing",
+ "r å",
+ "▁A h",
+ "▁ Ah",
+ "▁N ode",
+ "▁No de",
+ "▁ Node",
+ "-- ----------",
+ "---- --------",
+ "-------- ----",
+ "------ ------",
+ "----- -------",
+ "------- -----",
+ "---------- --",
+ "▁f aire",
+ "▁fa ire",
+ "▁fair e",
+ "▁h un",
+ "▁hu n",
+ "Pl ayer",
+ "Play er",
+ "P layer",
+ "▁re view",
+ "▁rev iew",
+ "▁ review",
+ "г да",
+ "▁lim ited",
+ "▁limit ed",
+ "▁ limited",
+ "▁Pro perty",
+ "▁ Property",
+ "▁s erve",
+ "▁ser ve",
+ "▁serv e",
+ "▁ serve",
+ "ri age",
+ "ria ge",
+ "▁M aster",
+ "▁Ma ster",
+ "▁Mas ter",
+ "▁ Master",
+ "▁k ann",
+ "▁kan n",
+ "▁ka nn",
+ "cre te",
+ "cret e",
+ "cr ete",
+ "ph ere",
+ "pher e",
+ "phe re",
+ "p here",
+ "ё р",
+ "▁ch ief",
+ "▁chi ef",
+ "▁sc ene",
+ "▁scen e",
+ "▁ scene",
+ "ki n",
+ "k in",
+ "▁un iform",
+ "▁ uniform",
+ "▁feb rero",
+ "\" }",
+ "il lo",
+ "ill o",
+ "IT E",
+ "I TE",
+ "ou vel",
+ "ouv el",
+ "ouve l",
+ "use package",
+ "en th",
+ "ent h",
+ "e nth",
+ "▁quick ly",
+ "L ambda",
+ "xe s",
+ "x es",
+ "▁c ells",
+ "▁cell s",
+ "▁cel ls",
+ "ro g",
+ "r og",
+ "am in",
+ "ami n",
+ "a min",
+ "▁М ар",
+ "▁Ма р",
+ "▁may or",
+ "▁mayo r",
+ "pl ayer",
+ "play er",
+ "pla yer",
+ "p layer",
+ "++ ;",
+ "▁На се",
+ "▁sa fe",
+ "▁saf e",
+ "▁ safe",
+ "▁ve loc",
+ "▁vel oc",
+ "▁о бра",
+ "▁об ра",
+ "▁ обра",
+ "Data base",
+ "Dat abase",
+ "D atabase",
+ "ne h",
+ "n eh",
+ "Ver t",
+ "V ert",
+ "▁f le",
+ "▁fl e",
+ "▁ф ор",
+ "▁фо р",
+ "▁ фор",
+ "▁f oreign",
+ "▁for eign",
+ "▁fore ign",
+ "Ab stract",
+ "▁m agn",
+ "▁ma gn",
+ "▁mag n",
+ "▁mod ified",
+ "▁milit ary",
+ "▁militar y",
+ "▁m onde",
+ "▁mon de",
+ "▁mo nde",
+ "▁mond e",
+ "▁A ction",
+ "▁Act ion",
+ "▁Ac tion",
+ "▁ Action",
+ "▁b ank",
+ "▁ban k",
+ "▁ bank",
+ "Ser ial",
+ "Se rial",
+ "▁contin uous",
+ "▁continu ous",
+ "▁g el",
+ "▁ge l",
+ "▁ gel",
+ "▁phys ical",
+ "▁introdu ced",
+ "▁introduce d",
+ "ut ure",
+ "ri ck",
+ "ric k",
+ "r ick",
+ "▁present ed",
+ "▁pres ented",
+ "▁presente d",
+ "▁P rov",
+ "▁Pro v",
+ "▁Pr ov",
+ "▁B oth",
+ "▁Bo th",
+ "▁Bot h",
+ "Po s",
+ "P os",
+ "su per",
+ "sup er",
+ "s uper",
+ "& #",
+ "▁f inding",
+ "▁find ing",
+ "▁fin ding",
+ "ne l",
+ "n el",
+ "un de",
+ "und e",
+ "u nde",
+ "▁fr ån",
+ "sk im",
+ "ski m",
+ "s kim",
+ "▁H ill",
+ "▁Hi ll",
+ "▁Hil l",
+ "f n",
+ "▁Can ad",
+ "▁Ca nad",
+ "▁int ended",
+ "▁inten ded",
+ "▁intend ed",
+ "ozzá férés",
+ "▁ju illet",
+ "▁W ars",
+ "▁War s",
+ "▁Wa rs",
+ "▁success ful",
+ "▁ch arg",
+ "▁char g",
+ "▁cha rg",
+ "▁ charg",
+ "ie le",
+ "iel e",
+ "i ele",
+ "om ething",
+ "ome thing",
+ "omet hing",
+ "ok u",
+ "o ku",
+ "f etch",
+ "▁} }",
+ "▁ }}",
+ "ban k",
+ "b ank",
+ "operator name",
+ "▁Col or",
+ "▁Co lor",
+ "▁ Color",
+ "▁C ard",
+ "▁Car d",
+ "▁Ca rd",
+ "▁ Card",
+ "t u",
+ "▁\" ,",
+ "▁ \",",
+ "wi d",
+ "w id",
+ "▁g ep",
+ "▁ge p",
+ "X ML",
+ "======== ========",
+ "▁Vir gin",
+ "ähr end",
+ "äh rend",
+ "lic ated",
+ "licate d",
+ "lica ted",
+ "Di r",
+ "D ir",
+ "ze ro",
+ "zer o",
+ "z ero",
+ "▁K al",
+ "▁Ka l",
+ "▁Par ty",
+ "▁Part y",
+ "▁ å",
+ "pr ice",
+ "p rice",
+ "do n",
+ "d on",
+ "▁w arning",
+ "▁war ning",
+ "▁warn ing",
+ "▁ warning",
+ "▁B ad",
+ "▁Ba d",
+ "▁ Bad",
+ "▁S upp",
+ "▁Su pp",
+ "▁Sup p",
+ "▁ Supp",
+ "▁L iga",
+ "▁Li ga",
+ "▁Lig a",
+ "▁P ierre",
+ "▁Pier re",
+ "▁ Pierre",
+ "Re cord",
+ "Rec ord",
+ "ul ator",
+ "ula tor",
+ "▁R ome",
+ "▁Ro me",
+ "▁Rom e",
+ "▁the orem",
+ "▁ theorem",
+ "▁entire ly",
+ "ски м",
+ "ск им",
+ "с ким",
+ "he t",
+ "h et",
+ "▁d opo",
+ "▁do po",
+ "▁dop o",
+ "Ne xt",
+ "N ext",
+ "ml ung",
+ "m lung",
+ "wi g",
+ "w ig",
+ "▁A th",
+ "▁At h",
+ "▁S ou",
+ "▁So u",
+ "li cher",
+ "lic her",
+ "lich er",
+ "liche r",
+ "l icher",
+ "▁s udo",
+ "▁su do",
+ "▁sud o",
+ "▁ sudo",
+ "es ts",
+ "est s",
+ "хі в",
+ "х ів",
+ "▁sept iembre",
+ "▁m icro",
+ "▁mi cro",
+ "▁mic ro",
+ "▁t rop",
+ "▁tr op",
+ "▁tro p",
+ "fi t",
+ "f it",
+ "Co re",
+ "Cor e",
+ "C ore",
+ "▁Rad io",
+ "▁ Radio",
+ "▁Or gan",
+ "▁ Organ",
+ "▁P ower",
+ "▁Po wer",
+ "▁Pow er",
+ "▁ Power",
+ "C F",
+ "▁L ast",
+ "▁La st",
+ "▁Las t",
+ "▁ Last",
+ "▁op pos",
+ "▁opp os",
+ "▁off set",
+ "▁ offset",
+ "▁re gia",
+ "▁reg ia",
+ "▁min imum",
+ "▁minim um",
+ "▁hel ped",
+ "▁help ed",
+ "an don",
+ "and on",
+ "ando n",
+ "if ying",
+ "ify ing",
+ "ru it",
+ "r uit",
+ "ensch app",
+ "▁b ere",
+ "▁be re",
+ "▁ber e",
+ "▁ bere",
+ "V M",
+ "▁A wards",
+ "▁Award s",
+ "▁Aw ards",
+ "▁a gr",
+ "▁ag r",
+ "▁ agr",
+ "yn omial",
+ "en ced",
+ "ence d",
+ "enc ed",
+ "▁dev ices",
+ "▁device s",
+ "▁devi ces",
+ "▁b ot",
+ "▁bo t",
+ "▁ bot",
+ "▁f irm",
+ "▁fi rm",
+ "▁fir m",
+ "▁w riter",
+ "▁writ er",
+ "▁wr iter",
+ "▁write r",
+ "▁ writer",
+ "▁r ing",
+ "▁ri ng",
+ "▁rin g",
+ "▁ ring",
+ ". -",
+ "is tes",
+ "ist es",
+ "iste s",
+ "l ä",
+ "▁m el",
+ "▁me l",
+ "▁ mel",
+ "ent ation",
+ "enta tion",
+ "▁Sch w",
+ "▁Sc hw",
+ "▁n ome",
+ "▁no me",
+ "▁nom e",
+ "▁ nome",
+ "▁po bla",
+ "▁pob la",
+ "▁w oj",
+ "▁wo j",
+ "▁u l",
+ "▁ ul",
+ "en to",
+ "ent o",
+ "ы х",
+ "▁res ist",
+ "▁rem ains",
+ "▁remain s",
+ "▁C a",
+ "▁ Ca",
+ "añ a",
+ "a ña",
+ "▁C ourt",
+ "▁Co urt",
+ "▁Cour t",
+ "▁Cou rt",
+ "ut able",
+ "uta ble",
+ "u table",
+ "ential ly",
+ "enti ally",
+ "▁t rat",
+ "▁tr at",
+ "▁tra t",
+ "▁ trat",
+ "▁Vis ual",
+ "▁ Visual",
+ "▁rest rict",
+ "▁pre viously",
+ "▁previous ly",
+ "▁prev iously",
+ "ca tion",
+ "cat ion",
+ "c ation",
+ "▁о со",
+ "▁ос о",
+ "▁My SQL",
+ "f ör",
+ "cal a",
+ "ca la",
+ "c ala",
+ "▁c ulture",
+ "▁cult ure",
+ "li ve",
+ "liv e",
+ "l ive",
+ "▁accept ed",
+ "Di d",
+ "D id",
+ "▁h ous",
+ "▁ho us",
+ "▁se lection",
+ "▁select ion",
+ "▁sel ection",
+ "▁sele ction",
+ "▁ selection",
+ "▁de cre",
+ "▁dec re",
+ "mar gin",
+ "m argin",
+ "ur b",
+ "u rb",
+ "▁I nc",
+ "▁In c",
+ "▁M any",
+ "▁Man y",
+ "▁Ma ny",
+ "▁ Many",
+ "ib t",
+ "i bt",
+ "▁succ eed",
+ "▁suc ceed",
+ "Bind ing",
+ "B inding",
+ "c í",
+ "▁R og",
+ "▁Ro g",
+ "▁should n",
+ "cl oud",
+ "clo ud",
+ "clou d",
+ "▁d z",
+ "▁ dz",
+ "ва в",
+ "▁p ix",
+ "▁pi x",
+ "sm all",
+ "▁project s",
+ "▁ projects",
+ "▁O K",
+ "▁ OK",
+ "▁la test",
+ "▁lat est",
+ "▁late st",
+ "▁ latest",
+ "▁re ferences",
+ "▁refer ences",
+ "▁reference s",
+ "Pro gram",
+ "Pr ogram",
+ "▁er st",
+ "▁ers t",
+ "▁ erst",
+ "▁я к",
+ "▁k am",
+ "▁ka m",
+ "▁C amb",
+ "▁Cam b",
+ "▁Ca mb",
+ "el lt",
+ "ell t",
+ "ö d",
+ "no ne",
+ "non e",
+ "n one",
+ "▁j usqu",
+ "▁ju squ",
+ "ki ng",
+ "kin g",
+ "k ing",
+ "▁P ed",
+ "▁Pe d",
+ "as sert",
+ "ass ert",
+ "asse rt",
+ "asser t",
+ "C S",
+ "ri to",
+ "rit o",
+ "r ito",
+ "es sa",
+ "ess a",
+ "ль ко",
+ "▁V on",
+ "▁Vo n",
+ "▁Ed ward",
+ "▁im possible",
+ "▁impos sible",
+ "n p",
+ "word s",
+ "wor ds",
+ "w ords",
+ "ie lt",
+ "iel t",
+ "i elt",
+ "▁P age",
+ "▁Pa ge",
+ "▁ Page",
+ "le rs",
+ "ler s",
+ "l ers",
+ "▁p ier",
+ "▁pi er",
+ "▁pie r",
+ "▁обла сти",
+ "itt ee",
+ "itte e",
+ "▁( [",
+ "▁ ([",
+ "▁t rust",
+ "▁tr ust",
+ "N G",
+ "re du",
+ "red u",
+ "r edu",
+ "< <",
+ "ri al",
+ "ria l",
+ "r ial",
+ "▁product s",
+ "▁ products",
+ "▁E rn",
+ "▁Er n",
+ "ri ère",
+ "r ière",
+ "го в",
+ "г ов",
+ "▁Re ich",
+ "▁Ro ad",
+ "▁n ested",
+ "▁ne sted",
+ "▁nest ed",
+ "▁ nested",
+ "Dis play",
+ "▁str ength",
+ "ograf ía",
+ "▁ann ounced",
+ "▁announ ced",
+ "▁S cience",
+ "▁Sc ience",
+ "▁Sci ence",
+ "▁рай о",
+ "Param eter",
+ "▁T ask",
+ "▁Ta sk",
+ "▁Tas k",
+ "▁ Task",
+ "um ents",
+ "ument s",
+ "umen ts",
+ "u ments",
+ "▁ad opt",
+ "▁On ly",
+ "▁ Only",
+ "ют ь",
+ "ю ть",
+ "▁c li",
+ "▁cl i",
+ "▁ cli",
+ "▁l em",
+ "▁le m",
+ "▁ lem",
+ "st ood",
+ "sto od",
+ "▁F I",
+ "▁ FI",
+ "ên cias",
+ "ência s",
+ "pon ents",
+ "ponent s",
+ "] $",
+ "com ment",
+ "comm ent",
+ "▁y a",
+ "▁ ya",
+ "sh ould",
+ "ik e",
+ "i ke",
+ "ti m",
+ "t im",
+ "el lig",
+ "ell ig",
+ "elli g",
+ "▁s ending",
+ "▁send ing",
+ "▁sen ding",
+ "▁a jax",
+ "▁aj ax",
+ "▁ ajax",
+ "▁nov iembre",
+ "um es",
+ "ume s",
+ "u mes",
+ "▁we iter",
+ "▁weit er",
+ "▁D ans",
+ "▁Dan s",
+ "▁Da ns",
+ "op p",
+ "o pp",
+ "▁sept embre",
+ "▁sep tembre",
+ "ot imes",
+ "oti mes",
+ "o times",
+ "z ő",
+ "▁e p",
+ "▁ ep",
+ "ve re",
+ "ver e",
+ "v ere",
+ "▁o h",
+ "▁ oh",
+ ": =",
+ "▁S ong",
+ "▁So ng",
+ "▁Son g",
+ "” ,",
+ "▁v iv",
+ "▁vi v",
+ "▁ viv",
+ "▁qu eries",
+ "▁que ries",
+ "▁quer ies",
+ "▁v á",
+ "▁ vá",
+ "▁déc embre",
+ "▁un able",
+ "▁una ble",
+ "▁e rh",
+ "▁er h",
+ "▁` -",
+ "▁ `-",
+ "▁L ee",
+ "▁Le e",
+ "▁er sten",
+ "▁erst en",
+ "▁erste n",
+ "▁ers ten",
+ "ô t",
+ "ст ве",
+ "ств е",
+ "T S",
+ "▁f ragment",
+ "▁fra gment",
+ "▁frag ment",
+ "▁ fragment",
+ "▁w ide",
+ "▁wid e",
+ "▁ wide",
+ "▁s uff",
+ "▁su ff",
+ "▁suf f",
+ "▁d ut",
+ "▁du t",
+ "▁V ere",
+ "▁Ver e",
+ "▁Ve re",
+ "і с",
+ "ad ing",
+ "adi ng",
+ "adin g",
+ "a ding",
+ "ie go",
+ "ieg o",
+ "i ego",
+ "ic ago",
+ "ica go",
+ "▁Ar gent",
+ "▁Arg ent",
+ "or er",
+ "ore r",
+ "o rer",
+ "en nes",
+ "enn es",
+ "enne s",
+ "▁L eb",
+ "▁Le b",
+ "lin ux",
+ "ac ing",
+ "aci ng",
+ "a cing",
+ "▁br oken",
+ "▁bro ken",
+ "▁broke n",
+ "t p",
+ "í o",
+ "ab eth",
+ "abe th",
+ "abet h",
+ "ist as",
+ "ista s",
+ "ge w",
+ "g ew",
+ "i ème",
+ "ca s",
+ "c as",
+ "▁pre ced",
+ "▁prec ed",
+ "▁D al",
+ "▁Da l",
+ "▁comp ared",
+ "▁compar ed",
+ "▁compare d",
+ "equ iv",
+ "il ly",
+ "ill y",
+ "te en",
+ "t een",
+ "▁Con sole",
+ "▁Cons ole",
+ "▁ Console",
+ "▁st rict",
+ "▁str ict",
+ "▁stri ct",
+ "it aire",
+ "ita ire",
+ "i taire",
+ "▁E D",
+ "▁ ED",
+ "ential s",
+ "enti als",
+ "▁p erman",
+ "▁per man",
+ "▁perm an",
+ "▁t ous",
+ "▁to us",
+ "▁tou s",
+ "▁g eme",
+ "▁ge me",
+ "▁gem e",
+ "▁ geme",
+ "▁ext rem",
+ "▁extr em",
+ "▁ок ру",
+ "k g",
+ "▁he avy",
+ "▁heav y",
+ "▁av ril",
+ "▁an ti",
+ "▁ant i",
+ "▁ anti",
+ "▁oct obre",
+ "ut f",
+ "u tf",
+ "he lm",
+ "hel m",
+ "h elm",
+ "am ples",
+ "ample s",
+ "amp les",
+ "▁( _",
+ "▁ (_",
+ "ak en",
+ "ake n",
+ "a ken",
+ "▁d ear",
+ "▁de ar",
+ "▁opin ion",
+ "▁f ish",
+ "▁fi sh",
+ "▁fis h",
+ "▁ fish",
+ "▁Alex ander",
+ "▁Alexand er",
+ "i w",
+ "и м",
+ "ca dem",
+ "cade m",
+ "c adem",
+ "▁ref lect",
+ "▁ reflect",
+ "▁д р",
+ "▁t rib",
+ "▁tr ib",
+ "▁tri b",
+ "com mon",
+ "comm on",
+ "▁clear ly",
+ "▁s af",
+ "▁sa f",
+ "=\"@ +",
+ "▁М ос",
+ "▁Мо с",
+ "си те",
+ "eqn array",
+ "nu ng",
+ "n ung",
+ "▁relations hip",
+ "▁relation ship",
+ "▁S em",
+ "▁Se m",
+ "▁ Sem",
+ "▁k illed",
+ "▁kil led",
+ "▁kill ed",
+ "te d",
+ "t ed",
+ "un o",
+ "u no",
+ "▁ лі",
+ "▁w id",
+ "▁ wid",
+ "an ning",
+ "ann ing",
+ "anni ng",
+ "▁p anel",
+ "▁pa nel",
+ "▁pan el",
+ "▁ panel",
+ "▁L eben",
+ "▁Le ben",
+ "▁Leb en",
+ "▁r uby",
+ "▁ru by",
+ "▁rub y",
+ "▁ ruby",
+ "ans ion",
+ "▁a ren",
+ "▁are n",
+ "▁ar en",
+ "▁ aren",
+ "tab ular",
+ "al et",
+ "ale t",
+ "a let",
+ "}$ $",
+ "} $$",
+ "▁L ake",
+ "▁La ke",
+ "▁Lak e",
+ "▁su ite",
+ "▁suit e",
+ "▁ suite",
+ "▁min or",
+ "▁mi nor",
+ "H ozzáférés",
+ "▁xml ns",
+ "▁ xmlns",
+ "DI R",
+ "D IR",
+ "dr iver",
+ "drive r",
+ "dri ver",
+ "d river",
+ "in ts",
+ "int s",
+ "▁v ic",
+ "▁vi c",
+ "▁ vic",
+ "AN D",
+ "A ND",
+ "pr im",
+ "p rim",
+ "сы лки",
+ "▁O x",
+ "T C",
+ "riv ial",
+ "at ie",
+ "ati e",
+ "▁e ight",
+ "▁eig ht",
+ "▁eigh t",
+ "▁conf lic",
+ "▁confl ic",
+ "an gel",
+ "ang el",
+ "ange l",
+ "▁B egr",
+ "▁Be gr",
+ "▁Beg r",
+ "▁explicit ly",
+ "ют ся",
+ "ю тся",
+ "▁D ev",
+ "▁De v",
+ "▁ Dev",
+ "re nder",
+ "ren der",
+ "rend er",
+ "r ender",
+ "▁re produ",
+ "▁rep rodu",
+ "▁repr odu",
+ "▁repro du",
+ "▁c ré",
+ "▁cr é",
+ "G u",
+ "M B",
+ "▁k ön",
+ "▁kö n",
+ "▁rem ained",
+ "▁remain ed",
+ "▁k l",
+ "▁ kl",
+ "хо в",
+ "х ов",
+ "▁b yl",
+ "▁by l",
+ "Ph i",
+ "P hi",
+ "▁de tail",
+ "▁det ail",
+ "▁ detail",
+ "ja v",
+ "j av",
+ "▁m ouse",
+ "▁mo use",
+ "▁mou se",
+ "▁ mouse",
+ "B as",
+ "i ę",
+ "as ser",
+ "ass er",
+ "asse r",
+ "h s",
+ "▁sh ift",
+ "▁ shift",
+ "▁ú lt",
+ "▁ últ",
+ "ra nd",
+ "ran d",
+ "r and",
+ "▁b tn",
+ "▁ btn",
+ "ra z",
+ "r az",
+ "▁p ul",
+ "▁pu l",
+ "▁stat ements",
+ "▁state ments",
+ "▁statement s",
+ "file name",
+ "fil ename",
+ "▁prom pt",
+ "él é",
+ "é lé",
+ "ik z",
+ "▁S us",
+ "▁Su s",
+ "▁de but",
+ "▁deb ut",
+ "St at",
+ "S tat",
+ "form s",
+ "for ms",
+ "▁H ein",
+ "▁He in",
+ "st adt",
+ "sta dt",
+ "stad t",
+ "en nis",
+ "enn is",
+ "по л",
+ "ar ante",
+ "aran te",
+ "ці й",
+ "ц ій",
+ "▁que ue",
+ "▁ queue",
+ "▁re ci",
+ "▁rec i",
+ "▁ reci",
+ "▁s ta",
+ "▁st a",
+ "▁ sta",
+ "yn chron",
+ "cent ering",
+ "center ing",
+ "cente ring",
+ "So me",
+ "S ome",
+ "Gr aph",
+ "G raph",
+ "▁t ested",
+ "▁te sted",
+ "▁test ed",
+ "▁K unst",
+ "▁Kun st",
+ "о м",
+ "▁N othing",
+ "▁No thing",
+ "▁Not hing",
+ "▁ Nothing",
+ "ie u",
+ "i eu",
+ "“ .",
+ "B undle",
+ "▁of icial",
+ "▁ofic ial",
+ "al low",
+ "all ow",
+ "allo w",
+ "▁Re act",
+ "▁L ibrary",
+ "▁Li brary",
+ "▁ Library",
+ "bl ue",
+ "▁ver w",
+ "▁ve rw",
+ "▁p are",
+ "▁par e",
+ "▁pa re",
+ "▁Fried rich",
+ "▁a ware",
+ "▁aw are",
+ "▁ aware",
+ "Ex p",
+ "E xp",
+ "▁effect s",
+ "▁го ро",
+ "▁гор о",
+ "lop edia",
+ "loped ia",
+ "▁V en",
+ "▁Ve n",
+ "ra le",
+ "ral e",
+ "r ale",
+ "▁F inal",
+ "▁Fin al",
+ "▁ Final",
+ "▁pro pos",
+ "▁prop os",
+ "la cement",
+ "lace ment",
+ "lac ement",
+ "kt en",
+ "kte n",
+ "k ten",
+ "▁no vel",
+ "▁nov el",
+ "or ter",
+ "ort er",
+ "orte r",
+ "▁German y",
+ "▁Ger many",
+ "▁Germ any",
+ "▁d jango",
+ "▁ django",
+ "▁trans ition",
+ "▁ transition",
+ "▁happ ened",
+ "▁happen ed",
+ "▁beaut iful",
+ "▁ne ither",
+ "▁nei ther",
+ "▁li braries",
+ "▁h ide",
+ "▁hi de",
+ "▁hid e",
+ "▁ hide",
+ "al g",
+ "a lg",
+ "▁a spect",
+ "▁as pect",
+ "▁asp ect",
+ "▁for get",
+ "▁forg et",
+ "cade my",
+ "cadem y",
+ "on te",
+ "ont e",
+ "re fix",
+ "ref ix",
+ "▁cl oud",
+ "▁clo ud",
+ "▁ cloud",
+ "ne d",
+ "n ed",
+ "cd ots",
+ "cdot s",
+ "c dots",
+ "reg ister",
+ "ny m",
+ "n ym",
+ ".) :",
+ ". ):",
+ "▁J ew",
+ "▁Je w",
+ "▁t rès",
+ "▁tr ès",
+ "ни че",
+ "▁D or",
+ "▁Do r",
+ "▁p roc",
+ "▁pro c",
+ "▁pr oc",
+ "▁ proc",
+ "▁g an",
+ "▁ga n",
+ "▁ gan",
+ "▁ є",
+ "▁S av",
+ "▁Sa v",
+ "v í",
+ "Setting s",
+ "S ettings",
+ "▁V ari",
+ "▁Var i",
+ "▁Va ri",
+ "▁ Vari",
+ "▁c ours",
+ "▁co urs",
+ "▁cour s",
+ "▁cou rs",
+ "R o",
+ "▁con j",
+ "▁re asons",
+ "▁reason s",
+ "▁re ader",
+ "▁read er",
+ "▁ reader",
+ "лекс анд",
+ "ic ate",
+ "ica te",
+ "}) ,",
+ "} ),",
+ "▁task s",
+ "▁ tasks",
+ "▁R ay",
+ "▁Ra y",
+ "▁r ic",
+ "▁ri c",
+ "▁ ric",
+ "K e",
+ "on ie",
+ "oni e",
+ "o nie",
+ "r f",
+ ") [",
+ "▁sub sequ",
+ "▁subs equ",
+ "▁T urn",
+ "▁Tur n",
+ "▁Tu rn",
+ "▁ Turn",
+ "▁VI AF",
+ "math sf",
+ "H E",
+ "▁dec lare",
+ "▁decl are",
+ "▁decla re",
+ "▁declar e",
+ "▁pro tocol",
+ "▁proto col",
+ "▁ protocol",
+ "▁P C",
+ "▁ PC",
+ "ци он",
+ "View ById",
+ "▁an imation",
+ "▁anim ation",
+ "▁ animation",
+ "▁conf used",
+ "ви ч",
+ "▁en abled",
+ "▁enable d",
+ "▁ enabled",
+ "ow o",
+ "o wo",
+ "ás t",
+ "á st",
+ "ö t",
+ "▁m and",
+ "▁ma nd",
+ "▁man d",
+ "▁R ail",
+ "▁Ra il",
+ "field s",
+ "▁K ap",
+ "▁Ka p",
+ "▁al gebra",
+ "▁ algebra",
+ "▁С у",
+ "fér ence",
+ "▁C urrent",
+ "▁Cur rent",
+ "▁ Current",
+ "с но",
+ "▁L im",
+ "▁Li m",
+ "Par ams",
+ "Param s",
+ "Pa rams",
+ "▁Ant onio",
+ "▁Anton io",
+ "▁Anto nio",
+ "▁t v",
+ "▁ tv",
+ "la te",
+ "lat e",
+ "l ate",
+ "if er",
+ "ife r",
+ "i fer",
+ "En try",
+ "Ent ry",
+ "▁S erv",
+ "▁Se rv",
+ "▁Ser v",
+ "▁ Serv",
+ "▁mus ical",
+ "▁music al",
+ "▁musica l",
+ "▁t race",
+ "▁tr ace",
+ "▁tra ce",
+ "▁trac e",
+ "▁ trace",
+ "▁s cient",
+ "▁sc ient",
+ "▁sci ent",
+ "fi c",
+ "f ic",
+ "▁for got",
+ "▁forg ot",
+ "v ideo",
+ "▁o lder",
+ "▁old er",
+ "▁ol der",
+ "▁ older",
+ "Tr ee",
+ "T ree",
+ "▁u ns",
+ "▁un s",
+ "▁ uns",
+ "ни ки",
+ "ник и",
+ "▁E uropa",
+ "▁Europ a",
+ "▁Euro pa",
+ "▁Z we",
+ "▁Zw e",
+ "▁б е",
+ "▁ бе",
+ "▁v ec",
+ "▁ve c",
+ "▁ vec",
+ "ж у",
+ "Mat ch",
+ "M atch",
+ "sp an",
+ "s pan",
+ "▁bl ank",
+ "▁blan k",
+ "▁ blank",
+ "▁sp äter",
+ "▁T y",
+ "▁ Ty",
+ "▁d ict",
+ "▁di ct",
+ "▁dic t",
+ "▁ dict",
+ "ñ a",
+ "▁conf irm",
+ "▁confir m",
+ "▁ confirm",
+ "▁v ý",
+ "за н",
+ "з ан",
+ "Re l",
+ "R el",
+ "fil m",
+ "fi lm",
+ "▁R ot",
+ "▁Ro t",
+ "▁ Rot",
+ "▁H y",
+ "▁ Hy",
+ "ка х",
+ "▁dem and",
+ "▁min ist",
+ "▁mini st",
+ "▁Mad rid",
+ "▁us ual",
+ "sp iel",
+ "s piel",
+ "er os",
+ "ero s",
+ "e ros",
+ "▁t utorial",
+ "▁tut orial",
+ "▁ tutorial",
+ "▁С сылки",
+ "s ys",
+ "ци аль",
+ "▁sp read",
+ "▁spr ead",
+ "▁spre ad",
+ "▁con vers",
+ "▁conver s",
+ "▁conv ers",
+ "▁r oll",
+ "▁ro ll",
+ "▁rol l",
+ "▁ roll",
+ "artifact Id",
+ "▁N umber",
+ "▁Num ber",
+ "▁ Number",
+ "▁sym met",
+ "▁M ult",
+ "▁Mu lt",
+ "▁Mul t",
+ "▁ Mult",
+ "ex pected",
+ "exp ected",
+ "expect ed",
+ "▁a xis",
+ "▁ax is",
+ "▁ axis",
+ "▁match ing",
+ "▁f ood",
+ "▁fo od",
+ "▁foo d",
+ "group Id",
+ "Map p",
+ "Ma pp",
+ "M app",
+ "▁с вя",
+ "▁v end",
+ "▁ve nd",
+ "▁ven d",
+ "F ound",
+ "ot to",
+ "ott o",
+ "o tto",
+ "Ca t",
+ "C at",
+ "cri t",
+ "cr it",
+ "c rit",
+ "ist ent",
+ "iste nt",
+ "isten t",
+ "▁d rei",
+ "▁dr ei",
+ "▁dre i",
+ "▁en ded",
+ "▁end ed",
+ "▁ende d",
+ "▁ ended",
+ "▁T ele",
+ "▁Te le",
+ "▁Tel e",
+ "com ponent",
+ "▁invol ved",
+ "▁involve d",
+ "▁Est ados",
+ "▁Estado s",
+ "▁Estad os",
+ "▁d anger",
+ "▁dan ger",
+ "▁ch ain",
+ "▁cha in",
+ "▁ chain",
+ "▁P rom",
+ "▁Pro m",
+ "▁Pr om",
+ "▁ Prom",
+ "ho m",
+ "h om",
+ "▁pol ít",
+ "co p",
+ "c op",
+ "▁n ap",
+ "▁na p",
+ "▁ nap",
+ "ri f",
+ "r if",
+ "ple ments",
+ "pl ements",
+ "plement s",
+ "▁v ent",
+ "▁ve nt",
+ "▁ven t",
+ "▁ vent",
+ "an na",
+ "ann a",
+ "an ted",
+ "ant ed",
+ "ante d",
+ "date d",
+ "da ted",
+ "dat ed",
+ "d ated",
+ "an th",
+ "ant h",
+ "a nth",
+ "▁thread s",
+ "▁thre ads",
+ "▁ threads",
+ "зо ва",
+ "зов а",
+ "з ова",
+ "▁ста нов",
+ "▁стан ов",
+ "▁ станов",
+ "▁e erst",
+ "▁eer st",
+ "bu f",
+ "b uf",
+ "he id",
+ "▁R u",
+ "▁P rim",
+ "▁Pr im",
+ "▁Pri m",
+ "▁ Prim",
+ "▁m igr",
+ "▁mi gr",
+ "▁mig r",
+ "▁ migr",
+ "▁Un idos",
+ "▁ar bitr",
+ "▁r oman",
+ "▁ro man",
+ "▁rom an",
+ "ount ry",
+ "oun try",
+ "ult ur",
+ "▁K önig",
+ "▁Kö nig",
+ "▁an not",
+ "▁ann ot",
+ "▁anno t",
+ "▁ annot",
+ "ach ing",
+ "ac hing",
+ "achi ng",
+ "▁H aupt",
+ "▁Ha upt",
+ "um in",
+ "umi n",
+ "u min",
+ "▁h em",
+ "▁he m",
+ "▁ hem",
+ "ck ets",
+ "cket s",
+ "cke ts",
+ "ba u",
+ "b au",
+ "ect ion",
+ "ec tion",
+ "e ction",
+ "ef t",
+ "e ft",
+ "▁package s",
+ "▁pack ages",
+ "▁ packages",
+ "▁K ur",
+ "▁Ku r",
+ "th ur",
+ "▁p ays",
+ "▁pa ys",
+ "▁pay s",
+ "li ament",
+ "lia ment",
+ "▁Б у",
+ "▁c ada",
+ "▁ca da",
+ "▁cad a",
+ "po ints",
+ "point s",
+ "oc ket",
+ "ock et",
+ "o cket",
+ "▁v erb",
+ "▁ver b",
+ "▁ve rb",
+ "▁ verb",
+ "ле е",
+ "▁sub mit",
+ "▁subm it",
+ "▁ submit",
+ "▁s an",
+ "▁sa n",
+ "▁ san",
+ "ru by",
+ "r uby",
+ "▁e ast",
+ "▁eas t",
+ "▁ east",
+ "ko v",
+ "k ov",
+ "▁Ver lag",
+ "▁Verl ag",
+ "▁ Verlag",
+ "▁s pot",
+ "▁sp ot",
+ "▁spo t",
+ "▁ spot",
+ "pp o",
+ "p po",
+ "E ach",
+ "je kt",
+ "▁Bi ographie",
+ "▁ne ws",
+ "▁new s",
+ "▁ news",
+ "▁pa ís",
+ "uf act",
+ "u fact",
+ "▁d ia",
+ "▁di a",
+ "▁ dia",
+ "ко ва",
+ "ков а",
+ "к ова",
+ "▁accom pl",
+ "▁accomp l",
+ "▁É t",
+ "▁ Ét",
+ "il ities",
+ "ili ties",
+ "▁i hm",
+ "▁ih m",
+ "in voke",
+ "inv oke",
+ "▁app end",
+ "▁ap pend",
+ "▁appe nd",
+ "▁ append",
+ ".) ,",
+ ". ),",
+ "▁l ab",
+ "▁la b",
+ "▁ lab",
+ "an ging",
+ "ang ing",
+ "is tan",
+ "ist an",
+ "ista n",
+ "i stan",
+ "re sol",
+ "res ol",
+ "reso l",
+ "▁S ection",
+ "▁Se ction",
+ "▁Sec tion",
+ "▁ Section",
+ "Par ent",
+ "Pa rent",
+ "mo z",
+ "m oz",
+ "Ma t",
+ "M at",
+ "st yles",
+ "style s",
+ "sty les",
+ "un den",
+ "und en",
+ "unde n",
+ "“ ,",
+ "irt schaft",
+ "ки м",
+ "к им",
+ "▁Fin ally",
+ "▁Final ly",
+ "ph en",
+ "phe n",
+ "p hen",
+ "▁P ac",
+ "▁Pa c",
+ "▁Array List",
+ "▁ ArrayList",
+ "▁re cover",
+ "▁rec over",
+ "▁e ducation",
+ "▁educ ation",
+ "mod els",
+ "model s",
+ "mode ls",
+ "pe d",
+ "p ed",
+ "▁h appy",
+ "▁ha ppy",
+ "▁happ y",
+ "ч у",
+ "▁guer ra",
+ "me dia",
+ "med ia",
+ "medi a",
+ "m edia",
+ "O F",
+ "▁ens ure",
+ "▁ ensure",
+ "Mar k",
+ "M ark",
+ "data base",
+ "dat abase",
+ "datab ase",
+ "d atabase",
+ "og gle",
+ "▁pub lish",
+ "▁publi sh",
+ "▁ publish",
+ "O W",
+ "▁B au",
+ "▁Ba u",
+ "? .",
+ "▁ча сти",
+ "▁час ти",
+ "▁част и",
+ "▁re pository",
+ "▁repos itory",
+ "▁ repository",
+ "▁M att",
+ "▁Ma tt",
+ "▁Mat t",
+ "hi gh",
+ "h igh",
+ "ov en",
+ "ove n",
+ "o ven",
+ "▁g er",
+ "▁ge r",
+ "▁ ger",
+ "▁un known",
+ "▁ unknown",
+ "Am er",
+ "A mer",
+ "▁B rown",
+ "▁Br own",
+ "▁Bro wn",
+ "▁Brow n",
+ "AL L",
+ "A LL",
+ "▁result ing",
+ "▁b or",
+ "▁bo r",
+ "▁ bor",
+ "▁po et",
+ "ни ми",
+ "ним и",
+ "Em ail",
+ "E mail",
+ "F ont",
+ "▁h ist",
+ "▁his t",
+ "▁hi st",
+ "▁to day",
+ "▁tod ay",
+ "▁toda y",
+ "▁ today",
+ "▁B erg",
+ "▁Be rg",
+ "▁Ber g",
+ "▁but tons",
+ "▁button s",
+ "та л",
+ "т ал",
+ "▁s ni",
+ "▁sn i",
+ "▁че лов",
+ "Cr e",
+ "C re",
+ "▁un ion",
+ "▁ union",
+ "▁z ich",
+ "ish op",
+ "i shop",
+ "▁qu ando",
+ "▁quand o",
+ "▁quan do",
+ "P o",
+ "CT ION",
+ "▁C ost",
+ "▁Co st",
+ "▁Cos t",
+ "▁ Cost",
+ "су дар",
+ "er ved",
+ "erv ed",
+ "erve d",
+ "Not e",
+ "No te",
+ "N ote",
+ "Equ al",
+ "Eq ual",
+ "E qual",
+ "ли я",
+ "бу р",
+ "б ур",
+ "▁ab stract",
+ "▁abstra ct",
+ "▁ abstract",
+ "st op",
+ "sto p",
+ "s top",
+ "▁ad vice",
+ "▁adv ice",
+ "▁i con",
+ "▁ic on",
+ "▁ icon",
+ "▁tr avel",
+ "▁tra vel",
+ "▁trav el",
+ "B S",
+ "ve ns",
+ "ven s",
+ "v ens",
+ "▁b atch",
+ "▁bat ch",
+ "▁ batch",
+ "li que",
+ "liqu e",
+ "l ique",
+ "she et",
+ "s heet",
+ "▁i hre",
+ "▁ih re",
+ "▁ihr e",
+ "em on",
+ "emo n",
+ "e mon",
+ "ber to",
+ "bert o",
+ "▁as signed",
+ "▁ass igned",
+ "▁assign ed",
+ "ь ю",
+ "Ph one",
+ "▁a ward",
+ "▁aw ard",
+ "▁function ality",
+ "▁functional ity",
+ "al la",
+ "all a",
+ "a lla",
+ "▁D am",
+ "▁Da m",
+ "▁ci udad",
+ "▁cl uster",
+ "▁clust er",
+ "▁ cluster",
+ "De scription",
+ "Des cription",
+ "▁s heet",
+ "▁she et",
+ "▁ sheet",
+ "▁Austral ian",
+ "▁Australia n",
+ "▁» .",
+ "▁ ».",
+ "▁\" <",
+ "▁wonder ing",
+ "ain e",
+ "ai ne",
+ "a ine",
+ "▁represent ed",
+ "▁repres ented",
+ "ka ppa",
+ "kap pa",
+ "k appa",
+ "n b",
+ "▁s y",
+ "▁K ö",
+ "=\" #",
+ "▁s even",
+ "▁se ven",
+ "Direct ory",
+ "D irectory",
+ "▁s ister",
+ "▁si ster",
+ "▁sist er",
+ "pl ates",
+ "plate s",
+ "pla tes",
+ "▁l uck",
+ "▁lu ck",
+ "▁luc k",
+ "▁rem aining",
+ "▁remain ing",
+ "▁V ill",
+ "▁Vi ll",
+ "▁Vil l",
+ "wer k",
+ "w erk",
+ "an ni",
+ "ann i",
+ "et ti",
+ "ett i",
+ "fun c",
+ "fu nc",
+ "f unc",
+ "▁b an",
+ "▁ba n",
+ "▁ ban",
+ "im s",
+ "i ms",
+ "mi ss",
+ "mis s",
+ "m iss",
+ "ag raph",
+ "agr aph",
+ "a graph",
+ "ек си",
+ "е кси",
+ "▁R ef",
+ "▁Re f",
+ "▁ Ref",
+ "ni tt",
+ "nit t",
+ "n itt",
+ "▁G ab",
+ "▁Ga b",
+ "▁and ere",
+ "▁jed och",
+ "result s",
+ "! \\",
+ "▁l isted",
+ "▁li sted",
+ "▁list ed",
+ "▁liste d",
+ "▁l oro",
+ "▁lo ro",
+ "▁kn ows",
+ "▁know s",
+ "ж но",
+ "R ad",
+ "▁s ocket",
+ "▁so cket",
+ "▁soc ket",
+ "▁ socket",
+ "mult i",
+ "mul ti",
+ "▁р і",
+ "▁ рі",
+ "ra ils",
+ "rai ls",
+ "r ails",
+ "▁t ar",
+ "▁ta r",
+ "▁ tar",
+ "▁gent le",
+ "se tt",
+ "set t",
+ "s ett",
+ "serv ices",
+ "service s",
+ "bo und",
+ "b ound",
+ "ig keit",
+ "aj a",
+ "a ja",
+ "▁c md",
+ "▁cm d",
+ "▁ cmd",
+ "ag ger",
+ "agg er",
+ "▁b a",
+ "▁ ba",
+ "▁Be lg",
+ "▁Bel g",
+ "▁K le",
+ "▁Kl e",
+ "▁word t",
+ "▁wor dt",
+ "▁f ost",
+ "▁fo st",
+ "▁fos t",
+ "▁dim ension",
+ "An g",
+ "A ng",
+ "um ing",
+ "umin g",
+ "umi ng",
+ "u ming",
+ "Ob j",
+ "не н",
+ "н ен",
+ "▁M arie",
+ "▁Mar ie",
+ "▁Ma rie",
+ "▁Mari e",
+ "▁ Marie",
+ "ex ists",
+ "exist s",
+ "т ро",
+ "▁бо ль",
+ "▁ боль",
+ "em ente",
+ "ement e",
+ "emen te",
+ "e mente",
+ "▁J on",
+ "▁Jo n",
+ "SE RT",
+ "SER T",
+ "S ERT",
+ "▁high est",
+ "ak i",
+ "a ki",
+ "▁t res",
+ "▁tr es",
+ "▁tre s",
+ "▁ tres",
+ "▁circ um",
+ "▁D own",
+ "▁Do wn",
+ "▁Dow n",
+ "▁ Down",
+ "om men",
+ "omm en",
+ "ur er",
+ "ure r",
+ "u rer",
+ "▁caus es",
+ "▁cause s",
+ "▁ca uses",
+ "ven ue",
+ "iss ance",
+ "▁influ ence",
+ "▁influen ce",
+ "▁f at",
+ "▁fa t",
+ "ре ди",
+ "ред и",
+ "р еди",
+ "}\\ \\",
+ "} \\\\",
+ "▁en tr",
+ "▁ent r",
+ "▁ entr",
+ "▁S ign",
+ "▁Si gn",
+ "▁Sig n",
+ "▁ Sign",
+ "▁к ла",
+ "▁ кла",
+ "▁b inding",
+ "▁bind ing",
+ "▁bin ding",
+ "▁ binding",
+ "es sen",
+ "ess en",
+ "esse n",
+ "▁Ф ран",
+ "▁L ocal",
+ "▁Lo cal",
+ "▁Loc al",
+ "▁ Local",
+ "▁я вля",
+ "ap pro",
+ "app ro",
+ "▁dep endencies",
+ "▁depend encies",
+ "▁ dependencies",
+ "▁talk ing",
+ "▁tal king",
+ "▁zur ück",
+ "con nection",
+ "connect ion",
+ "conne ction",
+ "conn ection",
+ "Act ive",
+ "Activ e",
+ "bb e",
+ "b be",
+ "ir ls",
+ "irl s",
+ "▁In f",
+ "▁ Inf",
+ "w d",
+ "▁и с",
+ "▁ ис",
+ "ro ad",
+ "▁con ven",
+ "▁conv en",
+ "ě t",
+ "ве з",
+ "в ез",
+ "▁ent ries",
+ "▁entr ies",
+ "▁ entries",
+ "es c",
+ "e sc",
+ "▁b its",
+ "▁bit s",
+ "▁bi ts",
+ "▁ bits",
+ "as so",
+ "ass o",
+ "W R",
+ "sh ips",
+ "ship s",
+ "s hips",
+ "▁d és",
+ "▁dé s",
+ "es p",
+ "e sp",
+ "Ma ke",
+ "M ake",
+ "▁famil iar",
+ "▁familia r",
+ "Ar t",
+ "A rt",
+ "▁ar my",
+ "▁arm y",
+ "ct r",
+ "c tr",
+ "ér ic",
+ "éri c",
+ "é ric",
+ "que ue",
+ "▁\\ {",
+ "▁ \\{",
+ "ue la",
+ "uel a",
+ "u ela",
+ "am iento",
+ "ami ento",
+ "ши х",
+ "ш их",
+ "▁\" \"\"",
+ "▁\"\" \"",
+ "con tr",
+ "cont r",
+ "лл е",
+ "л ле",
+ "F S",
+ "▁mar ket",
+ "▁mark et",
+ "▁ market",
+ "ån g",
+ "å ng",
+ "cite p",
+ "cit ep",
+ "Il l",
+ "I ll",
+ "ran k",
+ "r ank",
+ "▁s ender",
+ "▁se nder",
+ "▁send er",
+ "▁sen der",
+ "▁ sender",
+ "▁be im",
+ "▁bei m",
+ "ра к",
+ "▁com pat",
+ "▁comp at",
+ "▁ compat",
+ "▁occ urs",
+ "▁occur s",
+ "▁d iese",
+ "▁di ese",
+ "▁die se",
+ "▁dies e",
+ "сти ту",
+ "aw a",
+ "a wa",
+ "▁i OS",
+ "▁Ch inese",
+ "▁Chine se",
+ "▁T R",
+ "▁ TR",
+ "▁K en",
+ "▁Ke n",
+ "▁U ne",
+ "▁Un e",
+ "▁cre ates",
+ "▁create s",
+ "▁sh owed",
+ "▁show ed",
+ "▁sho wed",
+ "▁é v",
+ "▁ év",
+ "olog ia",
+ "olo gia",
+ "▁pro test",
+ "▁prote st",
+ "▁prot est",
+ "▁P f",
+ "▁s quad",
+ "▁squ ad",
+ "++ ,",
+ "á v",
+ "▁ess ere",
+ "з я",
+ "ko l",
+ "k ol",
+ "▁slight ly",
+ "ad dr",
+ "add r",
+ "â n",
+ "▁red uce",
+ "▁redu ce",
+ "▁ reduce",
+ "▁\\ (\\",
+ "▁\\( \\",
+ "▁D ep",
+ "▁De p",
+ "▁ Dep",
+ "▁gener ic",
+ "▁gene ric",
+ "▁ generic",
+ "Lo ader",
+ "Load er",
+ "ț i",
+ "▁п ос",
+ "▁по с",
+ "▁occ asion",
+ "▁occas ion",
+ "▁L ady",
+ "▁La dy",
+ "▁Lad y",
+ "ent ity",
+ "enti ty",
+ "▁av ant",
+ "▁ avant",
+ "▁P as",
+ "▁Pa s",
+ "ag gio",
+ "aggi o",
+ "agg io",
+ "\\ {",
+ "па д",
+ "athol ic",
+ "Pass word",
+ "▁res pond",
+ "▁resp ond",
+ "▁ respond",
+ "▁N on",
+ "▁No n",
+ "▁ Non",
+ "A G",
+ "ne g",
+ "n eg",
+ "▁у с",
+ "▁ ус",
+ "bl ob",
+ "blo b",
+ "b lob",
+ "ck e",
+ "c ke",
+ "▁Cons ider",
+ "▁C are",
+ "▁Car e",
+ "▁Ca re",
+ "ik i",
+ "i ki",
+ "▁Ch icago",
+ "in den",
+ "ind en",
+ "inde n",
+ "▁C op",
+ "▁Co p",
+ "] +",
+ "ö m",
+ "év rier",
+ "к ло",
+ "al en",
+ "ale n",
+ "a len",
+ "▁m aj",
+ "▁ma j",
+ "ra cy",
+ "rac y",
+ "r acy",
+ "or te",
+ "ort e",
+ "ien ts",
+ "ient s",
+ "i ents",
+ "el ls",
+ "ell s",
+ "act ivity",
+ "activ ity",
+ "▁r untime",
+ "▁run time",
+ "▁runt ime",
+ "▁ runtime",
+ "NU LL",
+ "N ULL",
+ "▁poss ibly",
+ "▁possib ly",
+ "▁s tri",
+ "▁st ri",
+ "▁str i",
+ "iz i",
+ "i zi",
+ "▁m ir",
+ "▁mi r",
+ "▁ mir",
+ "▁V ersion",
+ "▁Vers ion",
+ "▁ Version",
+ "pr ime",
+ "prim e",
+ "▁tw enty",
+ "▁M ah",
+ "▁Ma h",
+ "▁s ounds",
+ "▁sound s",
+ "ше н",
+ "ш ен",
+ "cl usion",
+ "clus ion",
+ "ac z",
+ "a cz",
+ "▁determ ined",
+ "▁determine d",
+ "▁determin ed",
+ "▁R ep",
+ "▁Re p",
+ "▁ Rep",
+ "▁Land es",
+ "▁Lan des",
+ "▁w all",
+ "▁wa ll",
+ "▁wal l",
+ "▁ wall",
+ "ig i",
+ "i gi",
+ "▁re set",
+ "▁res et",
+ "▁ reset",
+ "ш о",
+ "ya n",
+ "y an",
+ "Me t",
+ "M et",
+ "e i",
+ "▁app earance",
+ "▁appear ance",
+ "▁f ois",
+ "▁fo is",
+ "▁foi s",
+ "▁ fois",
+ "▁n ell",
+ "▁ne ll",
+ "▁nel l",
+ "▁ nell",
+ "es i",
+ "e si",
+ "ё т",
+ "lo or",
+ "l oor",
+ "▁U l",
+ "▁resol ution",
+ "▁f ot",
+ "▁fo t",
+ "▁through out",
+ "▁r i",
+ "▁ ri",
+ "Le vel",
+ "po ol",
+ "p ool",
+ "▁id entity",
+ "▁ident ity",
+ "▁ identity",
+ "▁j anu",
+ "▁jan u",
+ "▁ja nu",
+ "▁im per",
+ "▁imp er",
+ "▁ imper",
+ "▁ö ver",
+ "} `",
+ "▁in fer",
+ "▁inf er",
+ "▁d ates",
+ "▁da tes",
+ "▁dat es",
+ "▁date s",
+ "▁ dates",
+ "▁Stand ard",
+ "▁ Standard",
+ "for ce",
+ "oc key",
+ "ock ey",
+ "ter a",
+ "te ra",
+ "t era",
+ "▁dist ingu",
+ "▁pres ence",
+ "li ca",
+ "lic a",
+ "l ica",
+ "▁le aving",
+ "it ung",
+ "itu ng",
+ "é b",
+ "▁estab lish",
+ "▁m aar",
+ "▁ma ar",
+ "ad i",
+ "a di",
+ "▁New s",
+ "▁Ne ws",
+ "▁ News",
+ "az on",
+ "a zon",
+ "fo lg",
+ "fol g",
+ "f olg",
+ "▁H ence",
+ "▁Hen ce",
+ "▁Y e",
+ "▁f ab",
+ "▁fa b",
+ "▁ fab",
+ "▁f ühr",
+ "▁ führ",
+ "it map",
+ "▁V ers",
+ "▁Ver s",
+ "▁Ve rs",
+ "ro v",
+ "r ov",
+ "Si gn",
+ "S ign",
+ "de vice",
+ "dev ice",
+ "S igma",
+ "▁wet enschapp",
+ "▁P s",
+ "PA TH",
+ "P ATH",
+ "▁t orn",
+ "▁to rn",
+ "▁tor n",
+ "ve st",
+ "ves t",
+ "v est",
+ "ст ов",
+ "сто в",
+ "с тов",
+ "ac count",
+ "acc ount",
+ "acco unt",
+ "▁lar gest",
+ "▁large st",
+ "▁larg est",
+ "▁per cent",
+ "▁perce nt",
+ "▁ percent",
+ "▁W omen",
+ "▁Wo men",
+ "▁im g",
+ "▁ img",
+ "to ol",
+ "t ool",
+ "▁r oce",
+ "▁ro ce",
+ "▁a y",
+ "▁ ay",
+ "in et",
+ "ine t",
+ "i net",
+ "▁ao ût",
+ "▁pol ynomial",
+ "▁integr al",
+ "▁integra l",
+ "▁a reas",
+ "▁are as",
+ "▁area s",
+ "} '",
+ "▁h yp",
+ "▁hy p",
+ "loy ee",
+ "та ль",
+ "тал ь",
+ "т аль",
+ "▁pro xy",
+ "▁ proxy",
+ "▁W y",
+ "▁М екси",
+ "▁Ме кси",
+ "▁es cape",
+ "▁esc ape",
+ "▁ escape",
+ "ol ar",
+ "ola r",
+ "o lar",
+ "▁mis take",
+ "▁mist ake",
+ ")} {",
+ ") }{",
+ "▁P ot",
+ "▁Po t",
+ "▁process es",
+ "▁proc esses",
+ "\"> \r",
+ "\" >\r",
+ "hal ten",
+ "halt en",
+ "zz a",
+ "z za",
+ "am o",
+ "a mo",
+ "к ре",
+ "▁W ood",
+ "▁Wo od",
+ "ø r",
+ "▁с ер",
+ "▁се р",
+ "▁ сер",
+ "oc ia",
+ "oci a",
+ "o cia",
+ "tw o",
+ "t wo",
+ "pro file",
+ "prof ile",
+ "▁A st",
+ "▁As t",
+ "em bro",
+ "emb ro",
+ "▁ar ms",
+ "▁arm s",
+ "in as",
+ "ina s",
+ "i nas",
+ "in nen",
+ "inn en",
+ "▁m sg",
+ "▁ms g",
+ "▁ msg",
+ "IN T",
+ "I NT",
+ "▁b atter",
+ "▁batt er",
+ "▁bat ter",
+ "ign ment",
+ "▁v y",
+ "▁ vy",
+ "H rsg",
+ "▁G rund",
+ "▁Gr und",
+ "▁Gru nd",
+ "ro c",
+ "r oc",
+ "se g",
+ "s eg",
+ "▁de cor",
+ "▁dec or",
+ "▁ decor",
+ "▁event ually",
+ "> ,",
+ "▁p ag",
+ "▁pa g",
+ "▁ pag",
+ "an ten",
+ "ant en",
+ "ante n",
+ "a nten",
+ "▁str ugg",
+ "▁stru gg",
+ "}^ \\",
+ "} ^\\",
+ "date n",
+ "da ten",
+ "dat en",
+ "d aten",
+ "▁re la",
+ "▁r ela",
+ "▁rel a",
+ "по в",
+ "п ов",
+ "▁ко ро",
+ "▁кор о",
+ "▁B os",
+ "▁Bo s",
+ "▁l abor",
+ "▁la bor",
+ "▁lab or",
+ "▁Se cret",
+ "▁Sec ret",
+ "▁ Secret",
+ "ug en",
+ "uge n",
+ "u gen",
+ "▁j ap",
+ "▁ja p",
+ "▁hus band",
+ "▁Al bum",
+ "▁Alb um",
+ "▁et wa",
+ "▁про из",
+ "ri cht",
+ "ric ht",
+ "rich t",
+ "r icht",
+ "ra ch",
+ "rac h",
+ "r ach",
+ "ba t",
+ "b at",
+ "▁pre par",
+ "▁prep ar",
+ "▁St ock",
+ "▁Sto ck",
+ "▁l ack",
+ "▁la ck",
+ "▁lac k",
+ "▁ lack",
+ "хі д",
+ "х ід",
+ "▁h ogy",
+ "▁ho gy",
+ "▁Ch rome",
+ "▁Chr ome",
+ "▁Ad min",
+ "▁ Admin",
+ "▁com parison",
+ "▁compar ison",
+ "▁incre asing",
+ "н г",
+ "im i",
+ "i mi",
+ "D b",
+ "▁g ef",
+ "▁ge f",
+ "▁ gef",
+ "uch t",
+ "uc ht",
+ "u cht",
+ "és e",
+ "é se",
+ "gen ce",
+ "g ence",
+ "▁C ore",
+ "▁Cor e",
+ "▁Co re",
+ "▁ Core",
+ "▁in correct",
+ "▁incor rect",
+ "▁ass uming",
+ "▁assum ing",
+ "our se",
+ "ours e",
+ "ie ron",
+ "ier on",
+ "iero n",
+ "▁The orem",
+ "▁ Theorem",
+ "▁c asa",
+ "▁cas a",
+ "▁ca sa",
+ "je s",
+ "j es",
+ "▁д ере",
+ "▁де ре",
+ "▁` \"",
+ "L D",
+ "ä ß",
+ "De b",
+ "D eb",
+ "▁su iv",
+ "▁B ank",
+ "▁Ban k",
+ "li bs",
+ "lib s",
+ "▁Le on",
+ "▁Leo n",
+ "▁qu art",
+ "▁quar t",
+ "▁prof essional",
+ "▁profession al",
+ "▁profess ional",
+ "▁t iene",
+ "▁ti ene",
+ "▁tie ne",
+ "▁acc omp",
+ "▁ac comp",
+ "▁accom p",
+ "ст ер",
+ "сте р",
+ "с тер",
+ "▁U K",
+ "▁ UK",
+ "N N",
+ "▁l í",
+ "ц я",
+ "ke l",
+ "k el",
+ "▁ •",
+ "▁d ise",
+ "▁di se",
+ "▁dis e",
+ "on to",
+ "ont o",
+ "▁m á",
+ "if s",
+ "i fs",
+ "bi ld",
+ "bil d",
+ "b ild",
+ "▁comp ute",
+ "▁comput e",
+ "▁ compute",
+ "▁é d",
+ "▁ éd",
+ "j ę",
+ "▁M é",
+ "▁l anguages",
+ "▁language s",
+ "▁T imes",
+ "▁Time s",
+ "▁Tim es",
+ "▁Ti mes",
+ "▁ Times",
+ "ce n",
+ "c en",
+ "▁ав то",
+ "ý m",
+ "en ez",
+ "ene z",
+ "e nez",
+ "▁u pp",
+ "▁up p",
+ "▁ upp",
+ "▁m éd",
+ "▁mé d",
+ "▁cu ando",
+ "о д",
+ "Int ent",
+ "ee rd",
+ "e erd",
+ "▁T al",
+ "▁Ta l",
+ "off set",
+ "offs et",
+ "▁h aben",
+ "▁ha ben",
+ "▁hab en",
+ "▁habe n",
+ "re me",
+ "rem e",
+ "r eme",
+ "▁St ack",
+ "▁Sta ck",
+ "▁ Stack",
+ "▁d ri",
+ "▁dr i",
+ "▁ dri",
+ "▁sein em",
+ "▁seine m",
+ "▁sei nem",
+ "▁f évrier",
+ "▁comb ination",
+ "▁combin ation",
+ "▁s oll",
+ "▁so ll",
+ "▁sol l",
+ "▁mov ement",
+ "▁mo vement",
+ "▁move ment",
+ "Sp ec",
+ "Spe c",
+ "S pec",
+ "к ры",
+ "ret ch",
+ "r etch",
+ "Off set",
+ "Ro ot",
+ "R oot",
+ "А р",
+ "wa rt",
+ "war t",
+ "w art",
+ "▁F ollow",
+ "▁Fol low",
+ "▁So cial",
+ "▁Soci al",
+ "▁Soc ial",
+ "ни ков",
+ "ник ов",
+ "▁ →",
+ "Do n",
+ "D on",
+ "▁h arm",
+ "▁ha rm",
+ "▁har m",
+ "▁ harm",
+ "ag r",
+ "a gr",
+ "ne go",
+ "neg o",
+ "n ego",
+ "re source",
+ "res ource",
+ "▁L uc",
+ "▁Lu c",
+ "▁se inen",
+ "▁sein en",
+ "▁seine n",
+ "▁sei nen",
+ "▁De partment",
+ "▁Depart ment",
+ "▁Up date",
+ "▁ Update",
+ "▁Tex as",
+ "▁re ve",
+ "▁rev e",
+ "▁P os",
+ "▁Po s",
+ "▁ Pos",
+ "▁s hot",
+ "▁sh ot",
+ "▁sho t",
+ "▁ shot",
+ "ot he",
+ "oth e",
+ "o the",
+ "▁repe ated",
+ "▁repeat ed",
+ "▁rec ently",
+ "▁recent ly",
+ "áb an",
+ "á ban",
+ "ak s",
+ "a ks",
+ "па н",
+ "п ан",
+ "▁c ha",
+ "▁ch a",
+ "▁ cha",
+ "oh l",
+ "o hl",
+ "▁t end",
+ "▁te nd",
+ "▁ten d",
+ "▁д во",
+ "ch ts",
+ "cht s",
+ "ça ise",
+ "çais e",
+ "pl ing",
+ "p ling",
+ "al bum",
+ "e j",
+ "▁` [",
+ "ma ps",
+ "map s",
+ "m aps",
+ "▁un its",
+ "▁unit s",
+ "▁< !--",
+ "▁",
+ "St and",
+ "▁techn ique",
+ "▁techni que",
+ "▁E ss",
+ "▁Es s",
+ "▁Ox ford",
+ "▁ ла",
+ "t ikz",
+ "ли й",
+ "Log in",
+ "Lo gin",
+ "▁min ister",
+ "▁minist er",
+ "▁mini ster",
+ "▁ minister",
+ "▁c url",
+ "▁cu rl",
+ "▁cur l",
+ "▁ curl",
+ "ka n",
+ "k an",
+ "▁m aps",
+ "▁ma ps",
+ "▁map s",
+ "▁ maps",
+ "in da",
+ "ind a",
+ "ri eb",
+ "rie b",
+ "r ieb",
+ "▁E ND",
+ "▁EN D",
+ "▁ END",
+ "if ies",
+ "ifi es",
+ "ifie s",
+ "con sole",
+ "cons ole",
+ "bu ry",
+ "bur y",
+ "b ury",
+ "▁L E",
+ "▁ LE",
+ "▁indep end",
+ "▁inde pend",
+ "▁t a",
+ "▁ ta",
+ "▁ Ś",
+ "on el",
+ "one l",
+ "o nel",
+ "és z",
+ "é sz",
+ "▁I st",
+ "▁Is t",
+ "ut ive",
+ "uti ve",
+ "ё л",
+ "▁Reg ion",
+ "▁ Region",
+ "▁( =",
+ "▁comp act",
+ "ço is",
+ "ç ois",
+ "▁label s",
+ "▁lab els",
+ "▁ labels",
+ "autor ité",
+ "▁s tan",
+ "▁st an",
+ "▁sta n",
+ "▁ stan",
+ "▁fran çaise",
+ "▁français e",
+ "▁rem oving",
+ "▁remov ing",
+ "y c",
+ "} |",
+ "▁Ex ec",
+ "▁ Exec",
+ "($ _",
+ "( $_",
+ "ma g",
+ "m ag",
+ "be fore",
+ "▁stop ped",
+ "▁sto pped",
+ "ми и",
+ "▁ref resh",
+ "▁ refresh",
+ "un kt",
+ "unk t",
+ "ic io",
+ "ici o",
+ "i cio",
+ "X ml",
+ "▁T ab",
+ "▁Ta b",
+ "▁ Tab",
+ "▁f ounded",
+ "▁found ed",
+ "▁f al",
+ "▁fa l",
+ "▁ fal",
+ "f x",
+ "▁Histor ia",
+ "▁Hist oria",
+ "▁Ear ly",
+ "▁Earl y",
+ "Do m",
+ "D om",
+ "▁de cide",
+ "▁dec ide",
+ "▁decid e",
+ "▁under stood",
+ "▁j ur",
+ "▁ju r",
+ "▁N r",
+ "▁cap ac",
+ "wa s",
+ "w as",
+ "▁en emy",
+ "▁enem y",
+ "▁program s",
+ "▁m ask",
+ "▁ma sk",
+ "▁mas k",
+ "▁ mask",
+ "ск е",
+ "с ке",
+ "▁gr oupe",
+ "▁group e",
+ "ca m",
+ "c am",
+ "▁w idget",
+ "▁wid get",
+ "▁ widget",
+ "RE ATE",
+ "▁se va",
+ "▁Bar cel",
+ "▁p erd",
+ "▁per d",
+ "▁pe rd",
+ "▁М у",
+ "ran ce",
+ "r ance",
+ "TY PE",
+ "T YPE",
+ "▁{ '",
+ "▁ {'",
+ "▁b ill",
+ "▁bi ll",
+ "▁bil l",
+ "▁\" _",
+ "' `",
+ "ba hn",
+ "bah n",
+ "b ahn",
+ "▁cont ained",
+ "▁contain ed",
+ "Cl ose",
+ "C lose",
+ "ru g",
+ "r ug",
+ "eg y",
+ "e gy",
+ "▁s ight",
+ "▁sig ht",
+ "▁Pro vin",
+ "▁Prov in",
+ "н ю",
+ "ar z",
+ "a rz",
+ "ще н",
+ "щ ен",
+ "▁J oe",
+ "▁Jo e",
+ "▁de leted",
+ "▁delete d",
+ "▁delet ed",
+ "▁A uto",
+ "▁Aut o",
+ "▁Au to",
+ "▁ Auto",
+ "▁m eter",
+ "▁me ter",
+ "▁met er",
+ "▁ meter",
+ "C G",
+ "ъ л",
+ "▁p ent",
+ "▁pe nt",
+ "▁pen t",
+ "▁ pent",
+ "▁be zeichnet",
+ "Su m",
+ "S um",
+ "db c",
+ "d bc",
+ "▁Pl atz",
+ "▁Pla tz",
+ "▁Plat z",
+ "ect ors",
+ "ector s",
+ "e ctors",
+ "▁L ittle",
+ "QU E",
+ "Q UE",
+ "ці я",
+ "ц ія",
+ "те ля",
+ "тел я",
+ "nig ht",
+ "n ight",
+ "▁l l",
+ "▁ ll",
+ "▁most ly",
+ "UI D",
+ "U ID",
+ "▁b ez",
+ "▁be z",
+ "▁ bez",
+ "do b",
+ "d ob",
+ "кс и",
+ "к си",
+ "ter ne",
+ "tern e",
+ "t erne",
+ "▁cor ner",
+ "▁corn er",
+ "at y",
+ "a ty",
+ "▁impro ve",
+ "▁improv e",
+ "▁impr ove",
+ "▁in tr",
+ "▁int r",
+ "▁` @",
+ "ar od",
+ "aro d",
+ "a rod",
+ "▁install ation",
+ "▁instal lation",
+ "▁Refer ências",
+ "ig an",
+ "iga n",
+ "i gan",
+ "▁crit ic",
+ "ad el",
+ "ade l",
+ "a del",
+ "▁се ло",
+ ", \r",
+ "at ori",
+ "ator i",
+ "ato ri",
+ "▁F ri",
+ "▁Fr i",
+ "▁ Fri",
+ "▁ré férences",
+ "▁Int ent",
+ "▁ Intent",
+ "▁t ant",
+ "▁tan t",
+ "▁ta nt",
+ "un ci",
+ "unc i",
+ "▁level s",
+ "▁lev els",
+ "er es",
+ "ere s",
+ "e res",
+ "▁e mer",
+ "▁em er",
+ "▁ emer",
+ "sa fe",
+ "t k",
+ "▁c ham",
+ "▁ch am",
+ "▁cha m",
+ "▁great ly",
+ "▁we it",
+ "▁ weit",
+ "▁co ach",
+ "▁to ward",
+ "Hom e",
+ "H ome",
+ "▁Bo olean",
+ "▁ Boolean",
+ "те л",
+ "т ел",
+ "▁m ock",
+ "▁mo ck",
+ "▁ mock",
+ "▁appreci ate",
+ "▁C ross",
+ "▁Cr oss",
+ "▁Cro ss",
+ "▁T ake",
+ "▁Ta ke",
+ "▁Tak e",
+ "▁ Take",
+ "D P",
+ "▁s ides",
+ "▁si des",
+ "▁side s",
+ "▁sid es",
+ "▁Norm daten",
+ "де й",
+ "д ей",
+ "st al",
+ "sta l",
+ "s tal",
+ "▁c out",
+ "▁co ut",
+ "▁cou t",
+ "▁ cout",
+ "b n",
+ "▁V ert",
+ "▁Ver t",
+ "▁Ve rt",
+ "▁ Vert",
+ "▁b ird",
+ "▁bi rd",
+ "▁bir d",
+ "▁ bird",
+ "▁dynam ically",
+ "▁dynamic ally",
+ "▁D ol",
+ "▁Do l",
+ "▁B urg",
+ "▁Bu rg",
+ "▁Bur g",
+ "▁d og",
+ "▁do g",
+ "▁ dog",
+ "ät t",
+ "ä tt",
+ "▁n uc",
+ "▁nu c",
+ "E C",
+ "By tes",
+ "Byte s",
+ "▁a k",
+ "▁ ak",
+ "re land",
+ "rel and",
+ "r eland",
+ "▁gu itar",
+ "▁reg arding",
+ "▁regard ing",
+ "▁F uß",
+ "▁Fu ß",
+ "▁до л",
+ "▁ дол",
+ "au ss",
+ "aus s",
+ "a uss",
+ "▁j ej",
+ "▁je j",
+ "ac o",
+ "a co",
+ "▁up dates",
+ "▁update s",
+ "▁upd ates",
+ "ру к",
+ "р ук",
+ "(' /",
+ "▁c old",
+ "▁col d",
+ "▁co ld",
+ "▁G iven",
+ "▁Gi ven",
+ "▁Give n",
+ "hi n",
+ "h in",
+ "▁fe eling",
+ "▁feel ing",
+ "▁fee ling",
+ "ig li",
+ "fa h",
+ "f ah",
+ "ст ре",
+ "стр е",
+ "с тре",
+ "bo ol",
+ "b ool",
+ "init ial",
+ "▁станов ника",
+ "▁An na",
+ "▁Ann a",
+ "▁h ors",
+ "▁hor s",
+ "▁ho rs",
+ "▁d oll",
+ "▁do ll",
+ "▁dol l",
+ "▁con sum",
+ "▁cons um",
+ "▁ consum",
+ "ub er",
+ "ube r",
+ "u ber",
+ "stand ing",
+ "stan ding",
+ "act iv",
+ "з і",
+ "check ed",
+ "▁perm issions",
+ "▁permission s",
+ "▁M onte",
+ "▁Mon te",
+ "▁Mont e",
+ "Write Line",
+ "pl us",
+ "p lus",
+ "▁E qu",
+ "▁Eq u",
+ "▁ Equ",
+ "▁и х",
+ "▁ их",
+ "ч ки",
+ "un que",
+ "▁L O",
+ "▁ LO",
+ "e a",
+ "sam ple",
+ "s ample",
+ "ie sz",
+ "ies z",
+ "i esz",
+ "or al",
+ "ora l",
+ "o ral",
+ "▁И н",
+ "os ton",
+ "ost on",
+ "osto n",
+ "o ston",
+ "▁S imon",
+ "▁Sim on",
+ "▁Si mon",
+ "fa st",
+ "fas t",
+ "f ast",
+ "m k",
+ "as sen",
+ "ass en",
+ "asse n",
+ "▁arch itecture",
+ "▁architect ure",
+ "▁ architecture",
+ "ens es",
+ "ense s",
+ "▁ Å",
+ "▁to pic",
+ "▁top ic",
+ "▁ topic",
+ "▁dis able",
+ "▁ disable",
+ "▁C ru",
+ "▁Cr u",
+ "▁Cont rol",
+ "▁ Control",
+ "▁cre ation",
+ "▁hy per",
+ "▁hyp er",
+ "▁ hyper",
+ "it ud",
+ "itu d",
+ "же ния",
+ "ar am",
+ "ara m",
+ "a ram",
+ "▁г де",
+ "ien st",
+ "iens t",
+ "i enst",
+ "ed ule",
+ "edu le",
+ "▁B ot",
+ "▁Bo t",
+ "▁О с",
+ "▁The ir",
+ "an ne",
+ "ann e",
+ "M icrosoft",
+ "▁P M",
+ "▁ PM",
+ "yd ro",
+ "y dro",
+ "ent lich",
+ "▁E ine",
+ "▁Ein e",
+ "CH AR",
+ ": '",
+ "We ll",
+ "Wel l",
+ "W ell",
+ "le ton",
+ "let on",
+ "l eton",
+ "▁support s",
+ "▁sup ports",
+ "'] )",
+ "' ])",
+ "man ual",
+ "▁v ice",
+ "▁vi ce",
+ "▁vic e",
+ "▁ vice",
+ "as a",
+ "a sa",
+ "cl os",
+ "clo s",
+ "c los",
+ "vi sed",
+ "vis ed",
+ "v ised",
+ "▁p ok",
+ "▁po k",
+ "tr ack",
+ "tra ck",
+ "t rack",
+ "но ст",
+ "нос т",
+ "... .....",
+ ".... ....",
+ "..... ...",
+ "▁' \\",
+ "▁ '\\",
+ "² .",
+ "▁or ders",
+ "▁order s",
+ "▁ord ers",
+ "▁ orders",
+ "et ta",
+ "ett a",
+ "e tta",
+ "▁con version",
+ "▁conv ersion",
+ "▁convers ion",
+ "▁t rade",
+ "▁tr ade",
+ "▁tra de",
+ "▁trad e",
+ "cl i",
+ "c li",
+ "▁И сто",
+ "▁Ис то",
+ "▁a kt",
+ "▁ak t",
+ "▁ akt",
+ "▁sub set",
+ "▁subs et",
+ "▁ subset",
+ "▁a ug",
+ "▁au g",
+ "▁ aug",
+ "▁le aves",
+ "▁leave s",
+ "Mat h",
+ "Ma th",
+ "M ath",
+ "an ned",
+ "ann ed",
+ "anne d",
+ "ka l",
+ "k al",
+ "▁Ве ли",
+ "▁n og",
+ "▁no g",
+ "▁ nog",
+ "▁e th",
+ "▁et h",
+ "▁ eth",
+ "▁h air",
+ "▁ha ir",
+ "ar ound",
+ "aro und",
+ "a round",
+ "▁java x",
+ "▁jav ax",
+ "▁ javax",
+ "во й",
+ "▁C entre",
+ "▁Cent re",
+ "ö ß",
+ "ut i",
+ "u ti",
+ "▁n avigation",
+ "▁navig ation",
+ "▁ navigation",
+ "▁P S",
+ "▁ PS",
+ "▁w a",
+ "▁ wa",
+ "▁Ро ссии",
+ "▁Рос сии",
+ "▁Росси и",
+ "us a",
+ "u sa",
+ "ze ta",
+ "zet a",
+ "z eta",
+ "▁P DF",
+ "▁ PDF",
+ "▁m ismo",
+ "▁mis mo",
+ "▁mism o",
+ "pro perties",
+ "me ister",
+ "ль та",
+ "for ward",
+ "▁O st",
+ "▁Os t",
+ "ki ns",
+ "kin s",
+ "k ins",
+ "▁s ido",
+ "▁si do",
+ "▁sid o",
+ "зо в",
+ "з ов",
+ "ta gs",
+ "tag s",
+ "t ags",
+ "▁a ctor",
+ "▁act or",
+ "▁ac tor",
+ "▁ actor",
+ "▁f ly",
+ "▁fl y",
+ "▁ fly",
+ "C R",
+ "ag ini",
+ "agi ni",
+ "agin i",
+ "▁l ett",
+ "▁le tt",
+ "▁let t",
+ "▁ lett",
+ "en i",
+ "e ni",
+ "te ch",
+ "t ech",
+ "▁E nc",
+ "▁En c",
+ "▁ Enc",
+ "or acle",
+ "ora cle",
+ "o racle",
+ "amil ton",
+ "ze j",
+ "z ej",
+ "fe n",
+ "f en",
+ "ume rate",
+ "umer ate",
+ "▁qu esto",
+ "▁que sto",
+ "▁q uesto",
+ "▁quest o",
+ "da rt",
+ "dar t",
+ "d art",
+ "▁K ore",
+ "▁Ko re",
+ "▁Kor e",
+ "ap is",
+ "api s",
+ "a pis",
+ "ep er",
+ "e per",
+ "Sc reen",
+ "S creen",
+ "wa ll",
+ "wal l",
+ "w all",
+ "▁is land",
+ "sh e",
+ "s he",
+ "▁l igger",
+ "▁lig ger",
+ "в ся",
+ "fa ng",
+ "fan g",
+ "f ang",
+ "▁t ard",
+ "▁tar d",
+ "▁ta rd",
+ "▁pla ats",
+ "▁п ло",
+ "▁ пло",
+ "▁Off ice",
+ "▁Offic e",
+ "▁ Office",
+ "▁S ET",
+ "▁SE T",
+ "▁ SET",
+ "▁circ uit",
+ "je d",
+ "j ed",
+ "Sa ve",
+ "S ave",
+ "ль но",
+ "So cket",
+ "S ocket",
+ "▁In dex",
+ "▁Ind ex",
+ "▁ Index",
+ "AC K",
+ "A CK",
+ "id ers",
+ "ide rs",
+ "ider s",
+ "i ders",
+ "er er",
+ "ere r",
+ "e rer",
+ "▁С ША",
+ "▁l ady",
+ "▁la dy",
+ "▁lad y",
+ "▁sch eme",
+ "▁sche me",
+ "ie lle",
+ "iel le",
+ "i elle",
+ "▁ex erc",
+ "▁exer c",
+ ")} \\",
+ ") }\\",
+ "Date Time",
+ "at han",
+ "ath an",
+ "a than",
+ "▁Prof essor",
+ "▁mo ins",
+ "▁moi ns",
+ "▁Ex cel",
+ "▁ Excel",
+ "▁H ay",
+ "▁Ha y",
+ "▁Mus ik",
+ "▁ ї",
+ "ę d",
+ "▁\" .",
+ "▁ \".",
+ "▁бу в",
+ "▁inst rument",
+ "▁instru ment",
+ "па р",
+ "п ар",
+ "▁б ере",
+ "▁бе ре",
+ "▁ бере",
+ "▁polit ique",
+ "▁trad ition",
+ "▁V M",
+ "▁ VM",
+ "▁Ar ts",
+ "▁Art s",
+ "▁C i",
+ "Us e",
+ "U se",
+ "▁a ggreg",
+ "▁ag greg",
+ "▁ aggreg",
+ "▁we eks",
+ "▁week s",
+ "▁o pport",
+ "▁op port",
+ "▁opp ort",
+ "it ing",
+ "iti ng",
+ "i ting",
+ "▁vert ical",
+ "▁ vertical",
+ "▁N az",
+ "▁Na z",
+ ".. .)",
+ "... )",
+ "iz o",
+ "i zo",
+ "▁c ycle",
+ "▁cy cle",
+ "▁cycl e",
+ "▁ cycle",
+ "▁tem po",
+ "▁temp o",
+ "т ре",
+ "▁hand ling",
+ "ist ence",
+ "isten ce",
+ "▁p aste",
+ "▁pas te",
+ "▁pa ste",
+ "▁past e",
+ "▁ paste",
+ "▁en jo",
+ "RO UP",
+ "▁o uter",
+ "▁out er",
+ "▁ou ter",
+ "▁ outer",
+ "▁su pply",
+ "▁supp ly",
+ "▁sup ply",
+ "em an",
+ "ema n",
+ "e man",
+ "▁acc ident",
+ "▁\\ ]",
+ "▁ \\]",
+ "▁те х",
+ "▁ тех",
+ "Po ol",
+ "P ool",
+ "ot ing",
+ "oti ng",
+ "o ting",
+ "onym ous",
+ "▁Gi ov",
+ "▁u d",
+ "▁ ud",
+ "▁. /",
+ "▁ ./",
+ "ER ROR",
+ "ERR OR",
+ "con struct",
+ "const ruct",
+ "text width",
+ "qu ipe",
+ "qui pe",
+ "quip e",
+ "case s",
+ "cas es",
+ "c ases",
+ "▁а д",
+ "▁R ow",
+ "▁Ro w",
+ "▁ Row",
+ "Hol der",
+ "Hold er",
+ "H older",
+ "wa n",
+ "w an",
+ "ar na",
+ "arn a",
+ "Me m",
+ "M em",
+ "▁Canad ian",
+ "▁Com mission",
+ "▁Comm ission",
+ "su n",
+ "s un",
+ "▁app s",
+ "▁ap ps",
+ "▁ apps",
+ "▁B lo",
+ "▁Bl o",
+ "▁i hrer",
+ "▁ih rer",
+ "▁ihr er",
+ "▁ihre r",
+ "▁famil le",
+ "▁fam ille",
+ "▁m ě",
+ "▁p y",
+ "▁ py",
+ "и с",
+ "▁т ого",
+ "▁то го",
+ "▁ того",
+ "▁Ag ain",
+ "▁ign ore",
+ "▁ignor e",
+ "▁ ignore",
+ "▁tele vision",
+ "▁televis ion",
+ "Pa t",
+ "P at",
+ "hi de",
+ "h ide",
+ "▁R ev",
+ "▁Re v",
+ "▁b ear",
+ "▁be ar",
+ "ph y",
+ "p hy",
+ "▁no ise",
+ "▁w ra",
+ "▁wr a",
+ "at ionale",
+ "ation ale",
+ "ational e",
+ "▁coll abor",
+ "bor der",
+ "b order",
+ "▁el ected",
+ "▁elect ed",
+ "▁ele cted",
+ "▁sur pr",
+ "▁a voir",
+ "▁av oir",
+ "▁avo ir",
+ "▁ avoir",
+ "▁ass embly",
+ "▁assemb ly",
+ "▁ assembly",
+ "▁об ще",
+ "▁arbitr ary",
+ "▁br ief",
+ "▁- --",
+ "▁-- -",
+ "▁ ---",
+ "▁M aur",
+ "▁Ma ur",
+ "▁Mau r",
+ "gr ession",
+ "gress ion",
+ "g ression",
+ "ic ia",
+ "ici a",
+ "i cia",
+ "▁lie gt",
+ "▁Fig ure",
+ "▁on to",
+ "▁ont o",
+ "▁ onto",
+ "Re pository",
+ "Repos itory",
+ "▁dé f",
+ "▁f orth",
+ "▁for th",
+ "▁fort h",
+ "▁cl icked",
+ "▁click ed",
+ "se ite",
+ "▁n otes",
+ "▁not es",
+ "▁no tes",
+ "▁note s",
+ "▁ notes",
+ "nat ive",
+ "n ative",
+ "▁ED IT",
+ "▁ EDIT",
+ "ы е",
+ "M T",
+ "am ental",
+ "ament al",
+ "amen tal",
+ "▁r ose",
+ "▁ro se",
+ "▁ros e",
+ "▁ rose",
+ "▁pu ede",
+ "▁pue de",
+ "De legate",
+ "Deleg ate",
+ "ub a",
+ "u ba",
+ "ne o",
+ "xi s",
+ "x is",
+ "▁Ar thur",
+ "UR E",
+ "U RE",
+ "am ing",
+ "ami ng",
+ "amin g",
+ "a ming",
+ "De vice",
+ "Dev ice",
+ "▁d iam",
+ "▁di am",
+ "▁dia m",
+ "st änd",
+ "▁p ron",
+ "▁pro n",
+ "▁pr on",
+ "oi s",
+ "o is",
+ "com ing",
+ "co ming",
+ "c oming",
+ "Param eters",
+ "Parameter s",
+ "uv ud",
+ "▁ab ility",
+ "▁ ability",
+ "▁m ét",
+ "▁mé t",
+ "▁Un fortunately",
+ "f d",
+ "D ictionary",
+ "so cket",
+ "sock et",
+ "s ocket",
+ "▁con oc",
+ "▁co noc",
+ "cont ains",
+ "es sed",
+ "ess ed",
+ "esse d",
+ "▁gel dig",
+ "▁geld ig",
+ "ни ца",
+ "ниц а",
+ "▁point ed",
+ "es ti",
+ "est i",
+ "no m",
+ "n om",
+ "ографи я",
+ "▁represent s",
+ "▁repres ents",
+ "▁man ip",
+ "wor ld",
+ "w orld",
+ "▁resol ved",
+ "▁resolve d",
+ "te gr",
+ "t egr",
+ "▁d ort",
+ "▁do rt",
+ "▁dor t",
+ "as tern",
+ "ast ern",
+ "aster n",
+ "aste rn",
+ "▁camp aign",
+ "▁pr imo",
+ "▁prim o",
+ "▁pri mo",
+ "▁; ;",
+ "▁ ;;",
+ "▁sni ppet",
+ "▁N ik",
+ "▁Ni k",
+ "To tal",
+ "T otal",
+ "iss ement",
+ "isse ment",
+ "AC E",
+ "A CE",
+ "▁ver ify",
+ "▁ verify",
+ "if fe",
+ "iff e",
+ "i ffe",
+ "la gen",
+ "lag en",
+ "lage n",
+ "l agen",
+ "ie ur",
+ "ieu r",
+ "i eur",
+ "▁convert ed",
+ "▁conver ted",
+ "▁Mil it",
+ "▁Mi lit",
+ "▁A lg",
+ "▁Al g",
+ "▁ Alg",
+ "▁R on",
+ "▁Ro n",
+ "▁k onn",
+ "▁kon n",
+ "▁ko nn",
+ "ap ple",
+ "app le",
+ "▁dis pos",
+ "▁disp os",
+ "stell ung",
+ "▁re tain",
+ "▁ret ain",
+ "▁m entre",
+ "▁men tre",
+ "▁ment re",
+ "▁ne ut",
+ "▁neu t",
+ "▁ neut",
+ "▁N ight",
+ "ch é",
+ "c hé",
+ "at ti",
+ "att i",
+ "▁o bra",
+ "▁ob ra",
+ "▁super ior",
+ "▁Con gress",
+ "▁Cong ress",
+ "ё м",
+ "▁c odes",
+ "▁code s",
+ "▁co des",
+ "▁cod es",
+ "▁ codes",
+ "▁A ma",
+ "▁Am a",
+ "▁E arth",
+ "▁Ear th",
+ "▁oppos ite",
+ "▁p ool",
+ "▁po ol",
+ "▁ pool",
+ "▁D un",
+ "▁Du n",
+ "же ние",
+ "▁\" ${",
+ "▁\"$ {",
+ "in v",
+ "▁у ни",
+ "▁And rew",
+ "▁Andre w",
+ "те лей",
+ "тел ей",
+ "▁by ł",
+ "Un ivers",
+ "Uni vers",
+ "▁Ang ular",
+ "an im",
+ "ani m",
+ "a nim",
+ "до ва",
+ "дов а",
+ "д ова",
+ "BU G",
+ "B UG",
+ "ut ely",
+ "ute ly",
+ "▁draw ing",
+ "▁dra wing",
+ "▁g ain",
+ "▁ga in",
+ "▁four th",
+ "▁Pro blem",
+ "▁ Problem",
+ "▁sudden ly",
+ "▁ Ä",
+ "on na",
+ "onn a",
+ "▁K ont",
+ "▁Kon t",
+ "▁Ko nt",
+ "▁Bilder n",
+ "▁Bild ern",
+ "▁Bil dern",
+ "▁konn te",
+ "ž e",
+ "Tr ace",
+ "Tra ce",
+ "T race",
+ "▁sec ure",
+ "▁ secure",
+ "▁któ ry",
+ "▁e q",
+ "▁ eq",
+ "▁f ormal",
+ "▁for mal",
+ "▁form al",
+ "▁forma l",
+ "amer ikan",
+ "▁A nal",
+ "▁An al",
+ "▁Ana l",
+ "▁ Anal",
+ "▁R ewrite",
+ "▁Re write",
+ "▁D ouble",
+ "▁Dou ble",
+ "▁ Double",
+ "cre ated",
+ "create d",
+ "N U",
+ "MD b",
+ "M Db",
+ "ap es",
+ "ape s",
+ "a pes",
+ "Un is",
+ "Uni s",
+ "U nis",
+ "▁e special",
+ "▁espe cial",
+ "▁espec ial",
+ "}) \\",
+ "} )\\",
+ "ed om",
+ "edo m",
+ "e dom",
+ "▁c ategor",
+ "▁categ or",
+ "Re turn",
+ "Ret urn",
+ "▁H amb",
+ "▁Ha mb",
+ "▁Ham b",
+ "▁R io",
+ "▁Ri o",
+ "▁M ir",
+ "▁Mi r",
+ "▁G eme",
+ "▁Ge me",
+ "▁Gem e",
+ "ab ilities",
+ "abil ities",
+ "tr z",
+ "t rz",
+ "us et",
+ "use t",
+ "u set",
+ "ier ra",
+ "net work",
+ "n etwork",
+ "▁do ctor",
+ "▁doc tor",
+ "eur s",
+ "eu rs",
+ "e urs",
+ "▁l isten",
+ "▁li sten",
+ "▁list en",
+ "▁liste n",
+ "▁ listen",
+ "д ж",
+ "▁H ö",
+ "▁cons ists",
+ "▁consist s",
+ "as m",
+ "a sm",
+ "Ch r",
+ "C hr",
+ "al and",
+ "ala nd",
+ "a land",
+ "▁испо ль",
+ "▁ис поль",
+ "▁испол ь",
+ "▁lug ar",
+ "▁lu gar",
+ "▁def initely",
+ "▁definit ely",
+ "▁definite ly",
+ "mo ve",
+ "mov e",
+ "m ove",
+ "úblic a",
+ "ú blica",
+ "▁l än",
+ "▁lä n",
+ "is mus",
+ "ism us",
+ "▁др жа",
+ "▁d t",
+ "▁ dt",
+ "▁Per haps",
+ "▁Bra sil",
+ "▁Bras il",
+ "Jo hn",
+ "J ohn",
+ "▁prom ise",
+ "ł u",
+ "re ens",
+ "ree ns",
+ "reen s",
+ "▁ps ych",
+ "▁W ho",
+ "▁Wh o",
+ "▁ Who",
+ "ря д",
+ "▁IN TO",
+ "▁INT O",
+ "▁Pe ople",
+ "▁Will iams",
+ "▁William s",
+ "▁M arg",
+ "▁Mar g",
+ "▁Ma rg",
+ "▁д ан",
+ "▁да н",
+ "▁ дан",
+ "re cord",
+ "rec ord",
+ "▁E uro",
+ "▁Eu ro",
+ "▁Eur o",
+ "▁Virgin ia",
+ "▁R est",
+ "▁Re st",
+ "▁Res t",
+ "▁ Rest",
+ "▁C orn",
+ "▁Cor n",
+ "▁Co rn",
+ "}} ,",
+ "} },",
+ "▁G rid",
+ "▁Gr id",
+ "▁ Grid",
+ "▁in ject",
+ "▁inj ect",
+ "▁ inject",
+ "на н",
+ "н ан",
+ "▁c row",
+ "▁cr ow",
+ "▁cro w",
+ "▁Ph ys",
+ "▁ Phys",
+ "▁D O",
+ "▁ DO",
+ "▁\" -",
+ "▁incre ased",
+ "▁increase d",
+ "ach er",
+ "ac her",
+ "ache r",
+ "a cher",
+ "pe at",
+ "Li n",
+ "L in",
+ "▁D ub",
+ "▁Du b",
+ "ri ces",
+ "ric es",
+ "rice s",
+ "r ices",
+ "ag nost",
+ "agn ost",
+ "d l",
+ "▁cur ve",
+ "▁curv e",
+ "ü g",
+ "ri ce",
+ "ric e",
+ "r ice",
+ "l anguage",
+ "Click Listener",
+ "▁municip al",
+ "▁O ri",
+ "▁Or i",
+ "▁ Ori",
+ "▁B ild",
+ "▁Bi ld",
+ "▁Bil d",
+ "▁C ab",
+ "▁Ca b",
+ "▁V ar",
+ "▁Va r",
+ "▁ Var",
+ "▁n oted",
+ "▁not ed",
+ "▁no ted",
+ "▁note d",
+ "▁ Î",
+ "▁s ubs",
+ "▁su bs",
+ "▁sub s",
+ "ia tion",
+ "iat ion",
+ "i ation",
+ "W OR",
+ "in gly",
+ "ing ly",
+ "▁R us",
+ "▁Ru s",
+ "ie ns",
+ "ien s",
+ "i ens",
+ "IN FO",
+ "INF O",
+ "к ва",
+ "at ivo",
+ "ativ o",
+ "ati vo",
+ "ge nde",
+ "gen de",
+ "g ende",
+ "▁Fran z",
+ "▁Fr anz",
+ "▁is ol",
+ "▁i sol",
+ "ed es",
+ "ede s",
+ "e des",
+ "ni er",
+ "nie r",
+ "n ier",
+ "▁N O",
+ "▁ NO",
+ "▁H as",
+ "▁Ha s",
+ "▁ Has",
+ "be ans",
+ "bean s",
+ "▁p andas",
+ "▁pan das",
+ "▁ pandas",
+ "(\" %",
+ "ві т",
+ "ут бо",
+ "▁g ather",
+ "▁ga ther",
+ "▁gat her",
+ "▁le gal",
+ "▁leg al",
+ "▁ legal",
+ "in clud",
+ "▁circum st",
+ "cript or",
+ "ri ble",
+ "rib le",
+ "r ible",
+ "▁S üd",
+ "▁Sü d",
+ "▁a pro",
+ "▁ap ro",
+ "▁apr o",
+ "Ap i",
+ "A pi",
+ "▁на й",
+ "▁Afr ican",
+ "▁Africa n",
+ "ow ski",
+ "ows ki",
+ "▁John son",
+ "ie k",
+ "i ek",
+ "▁v ote",
+ "▁vo te",
+ "▁vot e",
+ "▁ vote",
+ "▁K an",
+ "▁Ka n",
+ "▁b ibli",
+ "▁bib li",
+ "▁ bibli",
+ "▁h aar",
+ "▁ha ar",
+ "▁v r",
+ "▁ vr",
+ "]) ,",
+ "] ),",
+ "subset eq",
+ "Par ser",
+ "Parse r",
+ "ia ni",
+ "ian i",
+ "i ani",
+ "is é",
+ "id ea",
+ "ide a",
+ "On ly",
+ "▁á l",
+ "▁ ál",
+ "▁C atal",
+ "▁Ca tal",
+ "▁Cat al",
+ "▁C ase",
+ "▁Cas e",
+ "▁Ca se",
+ "▁ Case",
+ "se h",
+ "s eh",
+ "▁en counter",
+ "▁enc ounter",
+ "▁re form",
+ "▁ref orm",
+ "ми ни",
+ "мин и",
+ "▁S tre",
+ "▁St re",
+ "▁Str e",
+ "ex ception",
+ "except ion",
+ "▁T ar",
+ "▁Ta r",
+ "та р",
+ "т ар",
+ "tr l",
+ "t rl",
+ "▁А лександ",
+ "ле кт",
+ "лек т",
+ "equ al",
+ "eq ual",
+ "e qual",
+ "O p",
+ "▁l if",
+ "▁li f",
+ "▁й ого",
+ "▁volt age",
+ "▁volta ge",
+ "sh ire",
+ "s hire",
+ "▁Gro ß",
+ "в ня",
+ "ning s",
+ "n ings",
+ "н ци",
+ "▁l ag",
+ "▁la g",
+ "▁ lag",
+ "▁and eren",
+ "▁andere n",
+ "▁v ac",
+ "▁va c",
+ "▁ma cro",
+ "▁mac ro",
+ "▁ macro",
+ "= [",
+ "Th en",
+ "The n",
+ "T hen",
+ "▁control s",
+ "▁contr ols",
+ "▁contro ls",
+ "▁ controls",
+ "se q",
+ "s eq",
+ "olog ies",
+ "ologie s",
+ "▁select or",
+ "▁sel ector",
+ "▁sele ctor",
+ "▁ selector",
+ "▁Украї ни",
+ "хів овано",
+ "ы й",
+ "allen ge",
+ "alleng e",
+ "▁I MDb",
+ "▁IM Db",
+ "um my",
+ "umm y",
+ "ye n",
+ "y en",
+ "▁b este",
+ "▁be ste",
+ "▁best e",
+ "▁bes te",
+ "▁B ox",
+ "▁Bo x",
+ "▁ Box",
+ "▁ch air",
+ "▁cha ir",
+ "▁S ab",
+ "▁Sa b",
+ "er de",
+ "erd e",
+ "▁n ast",
+ "▁na st",
+ "▁nas t",
+ "iv amente",
+ "iva mente",
+ "▁об ъ",
+ "▁require ments",
+ "▁requirement s",
+ "▁me eting",
+ "▁meet ing",
+ "▁fin an",
+ "▁fi nan",
+ "▁A dam",
+ "▁Ad am",
+ "▁Ada m",
+ "▁tele vis",
+ "▁b right",
+ "▁br ight",
+ "▁brig ht",
+ "▁G it",
+ "▁Gi t",
+ "▁ Git",
+ "E G",
+ "▁G il",
+ "▁Gi l",
+ "r ès",
+ "▁C ond",
+ "▁Con d",
+ "▁Co nd",
+ "▁ Cond",
+ "▁f t",
+ "▁ ft",
+ "▁бу ло",
+ "- +",
+ "EN D",
+ "E ND",
+ "er ne",
+ "ern e",
+ "▁Com put",
+ "▁Comp ut",
+ "▁ Comput",
+ "▁i ls",
+ "▁il s",
+ "▁ ils",
+ "▁g all",
+ "▁gal l",
+ "▁ga ll",
+ "▁c sv",
+ "▁cs v",
+ "▁ csv",
+ "łu g",
+ "ł ug",
+ "▁sum mer",
+ "▁summ er",
+ "ga me",
+ "g ame",
+ "▁pos ts",
+ "▁post s",
+ "▁ posts",
+ "Ар хівовано",
+ "▁z ij",
+ "▁de termin",
+ "▁determ in",
+ "▁ab andon",
+ "co unter",
+ "count er",
+ "c ounter",
+ "▁require ment",
+ "▁requ irement",
+ "▁T it",
+ "▁Ti t",
+ "irt ual",
+ "▁V ideos",
+ "▁Video s",
+ "▁qu iet",
+ "▁qui et",
+ "▁T erm",
+ "▁Te rm",
+ "▁Ter m",
+ "▁ Term",
+ "▁time out",
+ "▁ timeout",
+ "Pr int",
+ "▁in vent",
+ "▁inv ent",
+ "▁inve nt",
+ "la is",
+ "l ais",
+ "▁mon itor",
+ "ha lb",
+ "hal b",
+ "▁W ild",
+ "▁Wil d",
+ "▁Wi ld",
+ "▁le ader",
+ "▁lead er",
+ "▁с ель",
+ "▁се ль",
+ "▁util iz",
+ "▁par ents",
+ "▁parent s",
+ "▁for ced",
+ "▁force d",
+ "▁pro ved",
+ "▁pr oved",
+ "▁prov ed",
+ "▁prove d",
+ "▁effect ive",
+ "▁l lam",
+ "▁ll am",
+ "▁С по",
+ "or b",
+ "o rb",
+ "gg i",
+ "g gi",
+ "▁ass umption",
+ "▁assum ption",
+ "▁su bm",
+ "▁sub m",
+ "▁в ій",
+ "▁ві й",
+ "il ia",
+ "ili a",
+ "i lia",
+ "▁re verse",
+ "▁revers e",
+ "▁rever se",
+ "▁ reverse",
+ "' \"",
+ "▁qu otes",
+ "▁quot es",
+ "▁quote s",
+ "▁s ites",
+ "▁si tes",
+ "▁site s",
+ "▁sit es",
+ "▁ sites",
+ "ig ung",
+ "igu ng",
+ "▁A rg",
+ "▁Ar g",
+ "▁ Arg",
+ "D ouble",
+ "▁s creens",
+ "▁sc reens",
+ "▁screen s",
+ "▁cl ause",
+ "▁cla use",
+ "▁b undle",
+ "▁bund le",
+ "▁ bundle",
+ "▁phil osoph",
+ "▁N um",
+ "▁Nu m",
+ "▁ Num",
+ "▁g leich",
+ "▁gle ich",
+ "▁ gleich",
+ "ul y",
+ "u ly",
+ "dir ect",
+ "di rect",
+ "dire ct",
+ "d irect",
+ "asket ball",
+ "ow any",
+ "owa ny",
+ "owan y",
+ "\\} $",
+ "\\ }$",
+ "▁rad ius",
+ "▁radi us",
+ "▁ radius",
+ "▁S earch",
+ "▁Se arch",
+ "▁ Search",
+ "Pro perties",
+ "▁e lev",
+ "▁el ev",
+ "▁ele v",
+ "▁p rod",
+ "▁pro d",
+ "▁pr od",
+ "▁ prod",
+ "▁\" %",
+ "is ión",
+ "isi ón",
+ "De bug",
+ "Deb ug",
+ "Se cond",
+ "Sec ond",
+ "( !",
+ "▁C atholic",
+ "ро ван",
+ "ров ан",
+ "рова н",
+ "р ован",
+ "le z",
+ "l ez",
+ "P a",
+ "ps on",
+ "p son",
+ "▁er ste",
+ "▁erst e",
+ "▁ers te",
+ "▁F u",
+ "▁l it",
+ "▁li t",
+ "▁ lit",
+ "▁S aison",
+ "▁Sa ison",
+ "▁H ash",
+ "▁Ha sh",
+ "▁Has h",
+ "▁ Hash",
+ "▁ex em",
+ "▁пред став",
+ ") *",
+ "▁e u",
+ "▁ eu",
+ "▁ │",
+ "▁g ab",
+ "▁ga b",
+ "eta iled",
+ "Co py",
+ "C opy",
+ "▁д ва",
+ "ev en",
+ "e ven",
+ "K ind",
+ "▁Jack son",
+ "а л",
+ "▁con sec",
+ "▁cons ec",
+ "▁conse c",
+ "US ER",
+ "USE R",
+ "U SER",
+ "▁T ok",
+ "▁To k",
+ "( .",
+ "▁$ |",
+ "▁T amb",
+ "▁Ta mb",
+ "▁Tam b",
+ "▁Lem ma",
+ "ha ng",
+ "han g",
+ "h ang",
+ "▁cont ribution",
+ "▁contrib ution",
+ "▁contribu tion",
+ "roll ers",
+ "rol lers",
+ "roller s",
+ "rolle rs",
+ "▁stud ies",
+ "▁studi es",
+ "▁p oi",
+ "▁po i",
+ "ge ms",
+ "gem s",
+ "g ems",
+ "▁U P",
+ "▁ UP",
+ "▁W ol",
+ "▁Wo l",
+ "> \"",
+ "▁f loor",
+ "▁fl oor",
+ "▁flo or",
+ "▁ floor",
+ "▁init ialize",
+ "▁initial ize",
+ "▁ initialize",
+ "▁L ew",
+ "▁Le w",
+ "ze k",
+ "z ek",
+ "ar te",
+ "art e",
+ "▁pos itions",
+ "▁position s",
+ "▁posit ions",
+ "▁por tion",
+ "▁port ion",
+ "co ver",
+ "cov er",
+ "c over",
+ "w p",
+ "ов ого",
+ "ово го",
+ "о вого",
+ "▁p iano",
+ "▁pi ano",
+ "▁pian o",
+ "▁pia no",
+ "▁m etal",
+ "▁me tal",
+ "▁met al",
+ "▁meta l",
+ "▁s amples",
+ "▁sam ples",
+ "▁sample s",
+ "▁ samples",
+ "▁С ан",
+ "▁Са н",
+ "vari able",
+ "▁ста ть",
+ "▁inte gers",
+ "▁integer s",
+ "Wh ere",
+ "W here",
+ "famil y",
+ "▁n un",
+ "▁nu n",
+ "▁in crement",
+ "▁incre ment",
+ "▁ increment",
+ "ix ed",
+ "▁he eft",
+ "ft e",
+ "f te",
+ "▁v il",
+ "▁vi l",
+ "▁ vil",
+ "▁ot ros",
+ "▁otro s",
+ "Mult imedia",
+ "Multi media",
+ "▁Hen ri",
+ "ad ed",
+ "ade d",
+ "a ded",
+ "ге н",
+ "г ен",
+ "▁cap it",
+ "▁ca pit",
+ "▁други х",
+ "is p",
+ "i sp",
+ "IT Y",
+ "I TY",
+ "▁constraint s",
+ "▁K irche",
+ "▁Kir che",
+ "▁Kirch e",
+ "fo und",
+ "f ound",
+ "ши й",
+ "▁p ic",
+ "▁pi c",
+ "▁ pic",
+ "▁t ou",
+ "▁to u",
+ "cre d",
+ "cr ed",
+ "c red",
+ "ро б",
+ "р об",
+ "▁M ess",
+ "▁Me ss",
+ "▁Mes s",
+ "▁ Mess",
+ "Jo b",
+ "J ob",
+ "▁M ais",
+ "▁Ma is",
+ "▁Mai s",
+ "▁st yles",
+ "▁style s",
+ "▁sty les",
+ "▁ styles",
+ "fa ll",
+ "fal l",
+ "f all",
+ "▁U k",
+ "▁st reet",
+ "▁stre et",
+ "▁ street",
+ "oc cer",
+ "occ er",
+ "es en",
+ "ese n",
+ "e sen",
+ "▁col ors",
+ "▁color s",
+ "▁ colors",
+ "ce an",
+ "ю ще",
+ "con ne",
+ "conn e",
+ "c onne",
+ "▁r atio",
+ "▁rat io",
+ "an ton",
+ "ant on",
+ "anto n",
+ "▁F el",
+ "▁Fe l",
+ "▁custom er",
+ "▁cust omer",
+ "▁ customer",
+ "▁P rix",
+ "▁Pr ix",
+ "▁Pri x",
+ "rá s",
+ "r ás",
+ "pr ed",
+ "pre d",
+ "p red",
+ "▁elect ron",
+ "▁electro n",
+ "s ym",
+ "▁ве ли",
+ "▁ вели",
+ "▁over flow",
+ "▁ overflow",
+ "▁$ [",
+ "▁P OST",
+ "▁PO ST",
+ "▁ POST",
+ "▁C in",
+ "▁Ci n",
+ "sc heid",
+ "sche id",
+ "(\" /",
+ "( \"/",
+ "▁search ing",
+ "▁pur poses",
+ "▁purpose s",
+ "▁arr ived",
+ "▁arriv ed",
+ "▁arrive d",
+ "▁p unt",
+ "▁pu nt",
+ "▁pun t",
+ "▁l ad",
+ "▁la d",
+ "▁ lad",
+ "P ython",
+ "▁le ads",
+ "▁lead s",
+ "▁s and",
+ "▁sa nd",
+ "▁san d",
+ "па да",
+ "пад а",
+ "▁comm unes",
+ "▁commun es",
+ "▁commune s",
+ "▁CH AP",
+ "▁c aso",
+ "▁cas o",
+ "▁ca so",
+ "r z",
+ "▁d w",
+ "▁ dw",
+ "ac a",
+ "a ca",
+ "▁Col umb",
+ "child ren",
+ "ê t",
+ "sch emas",
+ "sche mas",
+ "schema s",
+ "▁instru ctions",
+ "▁instruction s",
+ "▁instruct ions",
+ "▁- \\",
+ "▁ -\\",
+ "▁Is rael",
+ "▁Isra el",
+ "no ści",
+ "▁об раз",
+ "▁обра з",
+ "▁ образ",
+ "▁со вет",
+ "▁сов ет",
+ "▁imm agini",
+ "▁F red",
+ "▁Fre d",
+ "▁Fr ed",
+ "▁G lobal",
+ "▁Glo bal",
+ "▁ Global",
+ "▁th ick",
+ "▁ thick",
+ "▁fue ron",
+ "▁fuer on",
+ "▁th rown",
+ "▁thr own",
+ "▁throw n",
+ "▁thro wn",
+ "▁c lock",
+ "▁cl ock",
+ "▁clo ck",
+ "▁ clock",
+ "en able",
+ "ena ble",
+ "'' '",
+ "' ''",
+ "▁S und",
+ "▁Su nd",
+ "▁Sun d",
+ "▁cont empor",
+ "an swer",
+ "ans wer",
+ "▁man ufact",
+ "▁i o",
+ "▁ io",
+ "q quad",
+ "OU T",
+ "O UT",
+ "▁L ab",
+ "▁La b",
+ "▁ Lab",
+ "▁Z w",
+ "le gal",
+ "leg al",
+ "▁V el",
+ "▁Ve l",
+ "▁ra ise",
+ "▁ raise",
+ "▁de liver",
+ "▁del iver",
+ "▁deli ver",
+ "▁V oir",
+ "▁Vo ir",
+ "▁ass umed",
+ "▁assum ed",
+ "▁assume d",
+ "Le t",
+ "L et",
+ "ier ten",
+ "iert en",
+ "ierte n",
+ "i erten",
+ "▁K ong",
+ "▁Kon g",
+ "▁Ko ng",
+ "▁E xp",
+ "▁Ex p",
+ "▁ Exp",
+ "▁J ug",
+ "▁Ju g",
+ "▁dec laration",
+ "▁declar ation",
+ "▁F ish",
+ "m é",
+ "▁spe ech",
+ "▁t ent",
+ "▁te nt",
+ "▁ten t",
+ "▁R oute",
+ "▁Ro ute",
+ "▁Rou te",
+ "▁Rout e",
+ "▁ Route",
+ "__ (",
+ "_ _(",
+ "▁ré alis",
+ "▁réal is",
+ "▁De sign",
+ "▁Des ign",
+ "set Text",
+ "▁St ation",
+ "▁Stat ion",
+ "▁Sta tion",
+ "▁Stati on",
+ "▁ Station",
+ "ar chy",
+ "arch y",
+ "arc hy",
+ "▁ка то",
+ "▁d ent",
+ "▁de nt",
+ "▁den t",
+ "▁ dent",
+ "▁K l",
+ "i ß",
+ "▁r isk",
+ "▁ris k",
+ "▁ri sk",
+ "▁B road",
+ "▁Bro ad",
+ "▁v ectors",
+ "▁ve ctors",
+ "▁vector s",
+ "▁S pec",
+ "▁Sp ec",
+ "▁Spe c",
+ "▁ Spec",
+ "▁ro utes",
+ "▁route s",
+ "▁rout es",
+ "▁rou tes",
+ "▁ routes",
+ "ym n",
+ "y mn",
+ "▁G reg",
+ "▁Gr eg",
+ "▁Gre g",
+ "▁полу чи",
+ "gi e",
+ "g ie",
+ "OR M",
+ "ве де",
+ "вед е",
+ "в еде",
+ "wa lt",
+ "wal t",
+ "w alt",
+ "▁e fter",
+ "P tr",
+ "▁su bt",
+ "▁sub t",
+ "▁b irth",
+ "▁bir th",
+ "▁dr awn",
+ "▁draw n",
+ "▁dra wn",
+ "me ss",
+ "mes s",
+ "m ess",
+ "мери кан",
+ "V E",
+ "▁P ut",
+ "▁Pu t",
+ "▁ Put",
+ "▁a sc",
+ "▁as c",
+ "▁ asc",
+ "▁f eder",
+ "▁fe der",
+ "▁fed er",
+ "с ли",
+ "▁P rin",
+ "▁Pr in",
+ "▁Pri n",
+ "▁s tick",
+ "▁st ick",
+ "re set",
+ "res et",
+ "y k",
+ "st udio",
+ "stud io",
+ "▁St ill",
+ "Con st",
+ "Cons t",
+ "ac ió",
+ "aci ó",
+ "a ció",
+ "▁Portug al",
+ "▁script s",
+ "▁scri pts",
+ "▁ scripts",
+ "und ial",
+ "▁l ives",
+ "▁li ves",
+ "▁live s",
+ "▁liv es",
+ "▁s zer",
+ "▁sz er",
+ "▁sze r",
+ "▁est ado",
+ "▁esta do",
+ "▁estad o",
+ "fo lder",
+ "fol der",
+ "fold er",
+ "f older",
+ "▁communic ation",
+ "Ro ute",
+ "Rout e",
+ "R oute",
+ "▁sw ift",
+ "▁ swift",
+ "те н",
+ "т ен",
+ "▁k ill",
+ "▁kil l",
+ "▁ki ll",
+ "▁ kill",
+ "▁P R",
+ "▁ PR",
+ "jo int",
+ "join t",
+ "j oint",
+ "▁ob jective",
+ "▁object ive",
+ "▁comp licated",
+ "▁Ü ber",
+ "es h",
+ "e sh",
+ "p icture",
+ "ra ine",
+ "rain e",
+ "rai ne",
+ "r aine",
+ "com put",
+ "comp ut",
+ "▁pro port",
+ "▁pr oport",
+ "▁prop ort",
+ "▁propor t",
+ "og s",
+ "o gs",
+ "ül t",
+ "ü lt",
+ "▁quant um",
+ "к ри",
+ "▁s op",
+ "▁so p",
+ "▁lo ops",
+ "▁loop s",
+ "▁Re ference",
+ "▁Refer ence",
+ "▁ Reference",
+ "▁n ei",
+ "▁ne i",
+ "IC E",
+ "I CE",
+ "▁v erm",
+ "▁ver m",
+ "▁ve rm",
+ "▁a dj",
+ "▁ad j",
+ "▁ adj",
+ "▁per ò",
+ "▁t rou",
+ "▁tr ou",
+ "▁tro u",
+ "is ions",
+ "ision s",
+ "isi ons",
+ "▁App le",
+ "▁Ap ple",
+ "serv able",
+ "▁B oston",
+ "▁Bo ston",
+ "▁Bos ton",
+ "or et",
+ "ore t",
+ "o ret",
+ "ok s",
+ "o ks",
+ "▁k g",
+ "▁ kg",
+ "def ined",
+ "define d",
+ "defin ed",
+ "d efined",
+ "pl atform",
+ "cl er",
+ "cle r",
+ "c ler",
+ "ograph ic",
+ "ri tt",
+ "rit t",
+ "r itt",
+ "▁d ic",
+ "▁di c",
+ "▁ dic",
+ "▁M ond",
+ "▁Mon d",
+ "▁Mo nd",
+ "▁I reland",
+ "▁Ir eland",
+ "▁U na",
+ "▁Un a",
+ "▁commer cial",
+ "▁P u",
+ "D i",
+ "▁е ё",
+ "▁pre cis",
+ "▁prec is",
+ "на род",
+ "нар од",
+ "▁qu atre",
+ "ust ral",
+ "ustr al",
+ "▁d ag",
+ "▁da g",
+ "▁ dag",
+ "ig ue",
+ "igu e",
+ "i gue",
+ "▁b urn",
+ "▁bu rn",
+ "▁bur n",
+ "▁ burn",
+ "▁offic er",
+ "▁office r",
+ "▁А в",
+ "▁high light",
+ "▁ highlight",
+ "▁Supp ose",
+ "▁Sup pose",
+ "od i",
+ "o di",
+ "serv let",
+ "▁En cyc",
+ "▁Enc yc",
+ "▁R ange",
+ "▁Ran ge",
+ "▁Rang e",
+ "▁ Range",
+ "ти й",
+ "P lease",
+ "▁ро ків",
+ "qu ant",
+ "qua nt",
+ "▁f lat",
+ "▁fl at",
+ "▁fla t",
+ "▁ flat",
+ "▁Ré férence",
+ "сле дова",
+ "след ова",
+ "ro le",
+ "rol e",
+ "r ole",
+ "▁d iesen",
+ "▁di esen",
+ "▁die sen",
+ "▁dies en",
+ "▁diese n",
+ "}} (",
+ "} }(",
+ "▁Ind ust",
+ "▁nú mer",
+ "▁\" ;",
+ "▁ \";",
+ "lu s",
+ "l us",
+ "ô le",
+ "▁z m",
+ "▁ zm",
+ "de g",
+ "d eg",
+ "▁r ough",
+ "▁ro ugh",
+ "▁rou gh",
+ "▁ rough",
+ "In v",
+ "▁h ur",
+ "▁hu r",
+ "▁R ess",
+ "▁Re ss",
+ "▁Res s",
+ "ch s",
+ "c hs",
+ "▁turn s",
+ "▁tur ns",
+ "ne ro",
+ "ner o",
+ "n ero",
+ "function s",
+ "fun ctions",
+ "ал и",
+ "а ли",
+ "▁hab itants",
+ "▁habit ants",
+ "а т",
+ "iss ues",
+ "issue s",
+ "▁h uge",
+ "▁hu ge",
+ "Util s",
+ "▁S at",
+ "▁Sa t",
+ "▁го судар",
+ "▁co ast",
+ "sh ape",
+ "sha pe",
+ "s hape",
+ "L C",
+ "▁log ging",
+ "▁ logging",
+ "en dor",
+ "end or",
+ "endo r",
+ "▁l ies",
+ "▁li es",
+ "▁lie s",
+ "▁ lies",
+ "▁d ifer",
+ "▁di fer",
+ "▁dif er",
+ "▁crit ical",
+ "▁critic al",
+ "X T",
+ "ми на",
+ "мин а",
+ "an sk",
+ "ans k",
+ "Result s",
+ "k c",
+ "ivers e",
+ "iver se",
+ "i verse",
+ "EX T",
+ "E XT",
+ "AL SE",
+ "▁v ál",
+ "▁vá l",
+ "P i",
+ "comp ile",
+ "hel lo",
+ "hell o",
+ "h ello",
+ "▁чем пи",
+ "▁It alia",
+ "▁Ital ia",
+ "▁ Italia",
+ "ко ло",
+ "кол о",
+ "к оло",
+ "▁ed ition",
+ "▁edit ion",
+ "gr und",
+ "gru nd",
+ "g rund",
+ "▁data frame",
+ "▁Follow ing",
+ "re ib",
+ "rei b",
+ "▁J eff",
+ "▁Je ff",
+ "▁citt à",
+ "IT able",
+ "I Table",
+ "▁$ (\\",
+ "▁$( \\",
+ "▁redu ced",
+ "▁reduce d",
+ "ob il",
+ "obi l",
+ "o bil",
+ "▁any where",
+ "' (",
+ "▁p hr",
+ "▁ph r",
+ "▁ phr",
+ "▁K h",
+ "▁F rame",
+ "▁Fr ame",
+ "▁Fra me",
+ "▁ Frame",
+ "▁man ual",
+ "▁ manual",
+ "▁c ra",
+ "▁cr a",
+ "▁ cra",
+ "▁V S",
+ "▁ VS",
+ "% =",
+ "Instance State",
+ "▁б ра",
+ "▁ бра",
+ "▁D rag",
+ "▁Dr ag",
+ "▁Dra g",
+ "▁ Drag",
+ "▁H err",
+ "▁He rr",
+ "▁Her r",
+ "▁г у",
+ "▁ гу",
+ "▁m ús",
+ "To ol",
+ "T ool",
+ "▁P rivate",
+ "▁Priv ate",
+ "▁ Private",
+ "▁s ynchron",
+ "▁syn chron",
+ "ir ation",
+ "ira tion",
+ "irat ion",
+ "▁о бо",
+ "▁об о",
+ "▁typ ically",
+ "▁typical ly",
+ "▁imp licit",
+ "or ient",
+ "ori ent",
+ "orie nt",
+ "▁t imer",
+ "▁time r",
+ "▁tim er",
+ "▁ti mer",
+ "▁ timer",
+ "▁kön nen",
+ "ie st",
+ "ies t",
+ "i est",
+ "ra id",
+ "rai d",
+ "▁expression s",
+ "▁express ions",
+ "▁expr essions",
+ "▁a im",
+ "▁ai m",
+ "▁s tre",
+ "▁st re",
+ "▁str e",
+ "▁ stre",
+ "▁w rap",
+ "▁wr ap",
+ "▁wra p",
+ "▁ wrap",
+ "▁B art",
+ "▁Bar t",
+ "▁Ba rt",
+ "▁b ron",
+ "▁br on",
+ "▁bro n",
+ "▁key board",
+ "po w",
+ "p ow",
+ "▁gru po",
+ "▁grup o",
+ "▁ре зу",
+ "▁prof essor",
+ "▁profess or",
+ "▁H ead",
+ "▁He ad",
+ "▁ Head",
+ "но ю",
+ "min us",
+ "m inus",
+ "▁Mich el",
+ "▁Mic hel",
+ "NO T",
+ "N OT",
+ "mo r",
+ "m or",
+ "] }",
+ "wide hat",
+ "ar is",
+ "ari s",
+ "a ris",
+ "тера тура",
+ "de fn",
+ "def n",
+ "is trz",
+ "ist rz",
+ "istr z",
+ "▁t anto",
+ "▁tan to",
+ "▁tant o",
+ "▁P ow",
+ "▁Po w",
+ "▁ind icate",
+ "▁indic ate",
+ "▁W inter",
+ "▁Win ter",
+ "res hold",
+ "resh old",
+ "рі в",
+ "р ів",
+ "▁` (",
+ "▁o wner",
+ "▁own er",
+ "▁ow ner",
+ "▁ owner",
+ "▁d isp",
+ "▁di sp",
+ "▁dis p",
+ "▁к ри",
+ "▁ кри",
+ "ме т",
+ "м ет",
+ "мен т",
+ "м ент",
+ "re port",
+ "rep ort",
+ "repo rt",
+ "re quire",
+ "▁v oy",
+ "▁vo y",
+ "▁ voy",
+ "▁A P",
+ "▁ AP",
+ "▁Esp aña",
+ "▁Españ a",
+ "▁S ão",
+ "j är",
+ "No n",
+ "N on",
+ "Li brary",
+ "L ibrary",
+ "ich ten",
+ "icht en",
+ "ichte n",
+ "i chten",
+ "▁struct ures",
+ "▁structure s",
+ "▁m uy",
+ "▁mu y",
+ "ár io",
+ "á rio",
+ "▁cert ificate",
+ "▁certific ate",
+ "чно го",
+ "ч ного",
+ "▁prov ince",
+ "▁provin ce",
+ "pa ges",
+ "page s",
+ "pag es",
+ "p ages",
+ "da l",
+ "d al",
+ "▁Fre der",
+ "▁Fr eder",
+ "▁Fred er",
+ "ь е",
+ "Exec ute",
+ "▁an cient",
+ "▁anci ent",
+ "▁anc ient",
+ "▁ancien t",
+ "▁fil ms",
+ "▁film s",
+ "▁Al fred",
+ "▁Alf red",
+ "Aut o",
+ "A uto",
+ "▁a tom",
+ "▁at om",
+ "▁ atom",
+ "▁e ll",
+ "▁el l",
+ "▁ ell",
+ "▁H arr",
+ "▁Har r",
+ "▁Ha rr",
+ "й н",
+ "▁\" #",
+ "▁n acional",
+ "▁nac ional",
+ "▁neigh bor",
+ "▁neighb or",
+ "сту па",
+ "ступ а",
+ "▁w it",
+ "Po p",
+ "P op",
+ "▁G reek",
+ "▁Gre ek",
+ "▁Gree k",
+ "▁re peat",
+ "▁repe at",
+ "▁ repeat",
+ "ba d",
+ "b ad",
+ "▁S C",
+ "▁ SC",
+ "▁Date Time",
+ "▁ DateTime",
+ "ш ти",
+ "▁W H",
+ "▁ WH",
+ "▁пра ви",
+ "▁прав и",
+ "▁ прави",
+ "▁Т и",
+ "▁s aison",
+ "▁sa ison",
+ "▁H art",
+ "▁Har t",
+ "▁Ha rt",
+ "direct ory",
+ "d irectory",
+ "ua n",
+ "u an",
+ "no rm",
+ "nor m",
+ "n orm",
+ "▁Phil ipp",
+ "▁Phili pp",
+ "▁Philip p",
+ "▁su spect",
+ "▁sus pect",
+ "▁susp ect",
+ "▁an no",
+ "▁ann o",
+ "▁ anno",
+ "b c",
+ "с ла",
+ "$ (",
+ "▁be find",
+ "▁bef ind",
+ "oc s",
+ "o cs",
+ "la test",
+ "lat est",
+ "late st",
+ ";\" >",
+ "; \">",
+ "▁after wards",
+ "PU T",
+ "P UT",
+ "▁j a",
+ "▁ ja",
+ "▁H il",
+ "▁Hi l",
+ "y z",
+ "▁B our",
+ "▁Bo ur",
+ "▁Bou r",
+ "▁la id",
+ "▁Д же",
+ "▁Дж е",
+ "pi e",
+ "p ie",
+ "w atch",
+ "▁E q",
+ "▁ Eq",
+ "cont act",
+ "ib er",
+ "ibe r",
+ "i ber",
+ "check box",
+ "▁esp añ",
+ "▁espa ñ",
+ "an se",
+ "ans e",
+ "▁ш ко",
+ "▁ шко",
+ "ef f",
+ "e ff",
+ "xx x",
+ "x xx",
+ "▁G ET",
+ "▁ GET",
+ "▁l ov",
+ "▁lo v",
+ "▁ lov",
+ "it ute",
+ "itu te",
+ "itut e",
+ "ze ch",
+ "zec h",
+ "z ech",
+ "ter e",
+ "te re",
+ "t ere",
+ "▁p urs",
+ "▁pu rs",
+ "▁pur s",
+ "ke ns",
+ "ken s",
+ "k ens",
+ "ian te",
+ "i ante",
+ "▁F ree",
+ "▁Fre e",
+ "▁Fr ee",
+ "▁ Free",
+ "▁ор гани",
+ "▁орган и",
+ "kre is",
+ "▁{ :",
+ "▁ {:",
+ "sh ared",
+ "share d",
+ "sha red",
+ "▁G raph",
+ "▁Gr aph",
+ "▁Gra ph",
+ "▁ Graph",
+ "▁conne ctions",
+ "▁connection s",
+ "▁connect ions",
+ "▁D OM",
+ "▁DO M",
+ "▁ DOM",
+ "▁C art",
+ "▁Car t",
+ "▁Ca rt",
+ "▁ Cart",
+ "ss on",
+ "s son",
+ "▁H amilton",
+ "те ли",
+ "тел и",
+ "▁r estaur",
+ "▁rest aur",
+ "▁resta ur",
+ "Re sol",
+ "Res ol",
+ "Dr iver",
+ "D river",
+ "▁en f",
+ "▁ enf",
+ "ED IT",
+ "▁p rev",
+ "▁pr ev",
+ "▁pre v",
+ "▁ prev",
+ "▁i k",
+ "▁ ik",
+ "▁s ă",
+ "j ö",
+ "▁С ССР",
+ "▁col our",
+ "ch ten",
+ "cht en",
+ "chte n",
+ "▁e stad",
+ "▁est ad",
+ "▁esta d",
+ "in ois",
+ "ino is",
+ "▁con fir",
+ "▁conf ir",
+ "▁v é",
+ "▁ vé",
+ "▁C es",
+ "▁Ce s",
+ "▁N ever",
+ "▁Ne ver",
+ "▁Nev er",
+ "om er",
+ "ome r",
+ "o mer",
+ "ж да",
+ "с лу",
+ "че ния",
+ "dl l",
+ "d ll",
+ "▁y outh",
+ "▁you th",
+ "▁yo uth",
+ "em en",
+ "eme n",
+ "e men",
+ "▁stud ied",
+ "▁studi ed",
+ "▁K il",
+ "▁Ki l",
+ "ci on",
+ "cio n",
+ "c ion",
+ "▁n avig",
+ "▁nav ig",
+ "re quired",
+ "require d",
+ "orith ms",
+ "orithm s",
+ "il or",
+ "ilo r",
+ "i lor",
+ "▁Deutsch en",
+ "▁Deutsche n",
+ "▁person s",
+ "▁pers ons",
+ "▁Barcel ona",
+ "▁form ation",
+ "▁format ion",
+ "▁forma tion",
+ "▁ formation",
+ "ab ei",
+ "abe i",
+ "a bei",
+ "▁про тив",
+ "▁проти в",
+ "Eng ine",
+ "ON E",
+ "O NE",
+ "og rá",
+ "Ca p",
+ "C ap",
+ "ri r",
+ "r ir",
+ "▁g ate",
+ "▁ga te",
+ "▁gat e",
+ "▁ gate",
+ "or ation",
+ "ora tion",
+ "ma ven",
+ "m aven",
+ "▁comb ined",
+ "▁combin ed",
+ "▁combine d",
+ "▁at tr",
+ "▁att r",
+ "▁ attr",
+ "▁h ook",
+ "▁ho ok",
+ "▁ hook",
+ "▁которы й",
+ "▁ser vers",
+ "▁server s",
+ "▁serv ers",
+ "▁serve rs",
+ "uct ure",
+ "же ння",
+ "жен ня",
+ "t v",
+ "▁re q",
+ "▁r eq",
+ "▁ req",
+ "ja l",
+ "j al",
+ "▁loc ally",
+ "▁local ly",
+ "}} {\\",
+ "}}{ \\",
+ "} }{\\",
+ "B r",
+ "▁H ier",
+ "▁Hi er",
+ "мо р",
+ "м ор",
+ "▁a part",
+ "▁ap art",
+ "▁apar t",
+ "\"] ,",
+ "\" ],",
+ "▁%> %",
+ "▁z usammen",
+ "▁zus ammen",
+ "▁ident ify",
+ "▁Al tern",
+ "▁Alt ern",
+ "▁Alter n",
+ "▁б ро",
+ "▁ бро",
+ "▁ц и",
+ "▁ ци",
+ "g h",
+ "▁T en",
+ "▁Te n",
+ "R S",
+ "фор ма",
+ "▁n elle",
+ "▁ne lle",
+ "▁nel le",
+ "▁nell e",
+ "▁ nelle",
+ "▁H in",
+ "▁Hi n",
+ "ound ing",
+ "oun ding",
+ "▁re prés",
+ "▁rep rés",
+ "▁repr és",
+ "ap h",
+ "a ph",
+ "▁[ \\",
+ "▁ [\\",
+ "▁S ports",
+ "▁Sport s",
+ "ра л",
+ "р ал",
+ "▁t hre",
+ "▁th re",
+ "▁thr e",
+ "▁p rin",
+ "▁pr in",
+ "▁pri n",
+ "▁El iz",
+ "▁Eli z",
+ "▁F our",
+ "▁Fou r",
+ "▁Fo ur",
+ "▁soci ety",
+ "▁soc iety",
+ "Trans action",
+ "▁v eg",
+ "▁ve g",
+ "▁ veg",
+ "▁sch ools",
+ "▁school s",
+ "▁over all",
+ "▁t ail",
+ "▁ta il",
+ "▁ tail",
+ "üb er",
+ "ü ber",
+ "▁S ov",
+ "▁So v",
+ "▁С ер",
+ "▁Се р",
+ "▁r app",
+ "▁ra pp",
+ "▁rap p",
+ "▁tra ffic",
+ "qu estion",
+ "quest ion",
+ "ques tion",
+ "▁en viron",
+ "▁envi ron",
+ "▁ environ",
+ "ate ien",
+ "ic us",
+ "i cus",
+ "▁n arrow",
+ "▁narr ow",
+ "▁nar row",
+ "▁p ray",
+ "▁pr ay",
+ "▁pra y",
+ "▁B ou",
+ "▁Bo u",
+ "▁C lient",
+ "▁Cl ient",
+ "▁ Client",
+ "ab l",
+ "a bl",
+ "▁Aud iod",
+ "▁Audio d",
+ "▁n pm",
+ "▁np m",
+ "▁ npm",
+ "▁Col umn",
+ "▁ Column",
+ "▁G ames",
+ "▁Game s",
+ "▁Ga mes",
+ "▁Gam es",
+ "av er",
+ "ave r",
+ "a ver",
+ "ony mes",
+ "onym es",
+ "onyme s",
+ "▁По сле",
+ "n ą",
+ "▁N u",
+ "▁D ick",
+ "▁Di ck",
+ "▁Dic k",
+ "▁t ensor",
+ "▁tens or",
+ "▁ tensor",
+ "▁@ \"",
+ "▁ @\"",
+ "v é",
+ "I con",
+ "▁по да",
+ "▁под а",
+ "▁ пода",
+ "▁G on",
+ "▁Go n",
+ "/) .",
+ "/ ).",
+ "is tra",
+ "ist ra",
+ "istr a",
+ "i stra",
+ "▁Audiod ateien",
+ "De lete",
+ "Del ete",
+ "}} }",
+ "} }}",
+ "▁j ump",
+ "▁ju mp",
+ "▁О б",
+ "▁princi ple",
+ "▁princip le",
+ "▁Ét ats",
+ "ok ed",
+ "oke d",
+ "o ked",
+ "▁В ла",
+ "Inter val",
+ "▁s au",
+ "▁sa u",
+ "en code",
+ "enc ode",
+ "▁p on",
+ "▁po n",
+ "▁ pon",
+ "cat ch",
+ "c atch",
+ "▁t iem",
+ "▁ti em",
+ "▁tie m",
+ "▁G ust",
+ "▁Gu st",
+ "M C",
+ "lim its",
+ "limit s",
+ "▁ke eping",
+ "▁keep ing",
+ "▁s ongs",
+ "▁son gs",
+ "▁song s",
+ "▁ав гу",
+ "▁рай он",
+ "▁райо н",
+ "▁not ification",
+ "▁ notification",
+ "▁off ered",
+ "▁offer ed",
+ "Co r",
+ "C or",
+ "▁sh ut",
+ "error s",
+ "err ors",
+ "▁E N",
+ "▁ EN",
+ "▁lat ach",
+ "▁sel bst",
+ "▁check box",
+ "▁ checkbox",
+ "▁c ool",
+ "▁co ol",
+ "▁f actory",
+ "▁fact ory",
+ "▁factor y",
+ "▁ factory",
+ "▁pa id",
+ "dim ensional",
+ "ni ej",
+ "nie j",
+ "n iej",
+ "pt on",
+ "pto n",
+ "p ton",
+ "▁p in",
+ "▁pi n",
+ "▁ pin",
+ "ak ed",
+ "ake d",
+ "a ked",
+ "▁re li",
+ "▁r eli",
+ "▁rel i",
+ "▁T aylor",
+ "▁S omething",
+ "▁Some thing",
+ "▁Som ething",
+ "▁ Something",
+ "im um",
+ "▁V in",
+ "▁Vi n",
+ "▁iter ation",
+ "Fin d",
+ "Fi nd",
+ "F ind",
+ "ко ви",
+ "ков и",
+ "к ови",
+ "▁bo ys",
+ "▁boy s",
+ "▁Sim ple",
+ "▁ Simple",
+ "▁C rist",
+ "▁Cr ist",
+ "▁Cris t",
+ "▁W as",
+ "▁Wa s",
+ "ân d",
+ "â nd",
+ "▁V a",
+ "▁т ра",
+ "▁ тра",
+ "▁dest ination",
+ "▁destin ation",
+ "▁ destination",
+ "li mp",
+ "lim p",
+ "l imp",
+ "▁K at",
+ "▁Ka t",
+ "wor th",
+ "wort h",
+ "w orth",
+ "▁K or",
+ "▁Ko r",
+ "i ção",
+ "= `",
+ "▁fair ly",
+ "fall s",
+ "fal ls",
+ "f alls",
+ "▁re ject",
+ "▁d ream",
+ "▁dre am",
+ "be ll",
+ "bel l",
+ "b ell",
+ "▁t oute",
+ "▁to ute",
+ "▁tout e",
+ "▁tou te",
+ "▁$ \\{",
+ "▁$\\ {",
+ "▁st one",
+ "▁sto ne",
+ "▁ stone",
+ "▁prote ct",
+ "▁prot ect",
+ "▁ex cell",
+ "▁exc ell",
+ "▁excel l",
+ "▁Me xico",
+ "▁Mex ico",
+ "▁d ash",
+ "▁da sh",
+ "▁das h",
+ "▁ dash",
+ "▁f ault",
+ "▁fa ult",
+ "▁ fault",
+ "p matrix",
+ "al ler",
+ "all er",
+ "alle r",
+ "▁guer re",
+ "or igin",
+ "ori gin",
+ "orig in",
+ "hi bernate",
+ "í lia",
+ "▁Reg ister",
+ "▁ Register",
+ "un to",
+ "unt o",
+ "▁B at",
+ "▁Ba t",
+ "▁b ow",
+ "▁bo w",
+ "▁ bow",
+ "сь ких",
+ "ськ их",
+ "et à",
+ "▁L uis",
+ "▁Lu is",
+ "▁f ou",
+ "▁fo u",
+ "▁Cam bridge",
+ "▁Camb ridge",
+ "▁o tt",
+ "▁ot t",
+ "▁ ott",
+ "su p",
+ "s up",
+ "re as",
+ "rea s",
+ "▁point ers",
+ "▁pointer s",
+ "▁Bo ard",
+ "▁ Board",
+ "▁р и",
+ "▁ ри",
+ "▁d riv",
+ "▁dr iv",
+ "▁dri v",
+ "ни н",
+ "н ин",
+ "▁C irc",
+ "▁Ci rc",
+ "▁Cir c",
+ "▁ Circ",
+ "▁t hou",
+ "▁th ou",
+ "Di v",
+ "D iv",
+ "sp ark",
+ "s park",
+ "la ment",
+ "lam ent",
+ "l ament",
+ "▁V AL",
+ "▁ VAL",
+ "Se nd",
+ "S end",
+ "▁Ir ish",
+ "o y",
+ "▁T u",
+ "▁ Tu",
+ "▁t rivial",
+ "Form s",
+ "For ms",
+ "▁as í",
+ "▁Im per",
+ "▁Imp er",
+ "▁sign ature",
+ "un os",
+ "uno s",
+ "u nos",
+ "▁N eg",
+ "▁Ne g",
+ "▁can cel",
+ "▁ cancel",
+ "▁Hein rich",
+ "ee d",
+ "e ed",
+ "Ill ustration",
+ "▁s ulla",
+ "▁su lla",
+ "▁sul la",
+ "▁sull a",
+ "▁qu arter",
+ "▁quart er",
+ "▁quar ter",
+ "as z",
+ "a sz",
+ "▁b log",
+ "▁bl og",
+ "▁blo g",
+ "▁ blog",
+ "fi ca",
+ "fic a",
+ "f ica",
+ "wo n",
+ "w on",
+ "qu et",
+ "que t",
+ "q uet",
+ "]) )",
+ "] ))",
+ "▁gener ation",
+ "▁c aught",
+ "▁ caught",
+ "▁l ands",
+ "▁land s",
+ "▁lan ds",
+ "▁ lands",
+ "▁King dom",
+ "schaft en",
+ "ro ns",
+ "ron s",
+ "r ons",
+ "ann els",
+ "annel s",
+ "anne ls",
+ "▁Spe cial",
+ "▁Spec ial",
+ "▁ Special",
+ "t utorial",
+ "ti p",
+ "t ip",
+ "▁\" \",",
+ "▁\"\" ,",
+ "▁Az ure",
+ "▁ Azure",
+ "▁b ounded",
+ "▁bound ed",
+ "▁ bounded",
+ "S m",
+ "ta r",
+ "t ar",
+ "ве н",
+ "в ен",
+ "▁з ем",
+ "▁зе м",
+ "▁ зем",
+ "▁not ation",
+ "▁ notation",
+ "▁ap ache",
+ "▁ apache",
+ "▁g az",
+ "▁ga z",
+ "ier no",
+ "i erno",
+ "an gen",
+ "ang en",
+ "ange n",
+ "pect ive",
+ "▁elect ric",
+ "▁s emi",
+ "▁se mi",
+ "▁sem i",
+ "MA X",
+ "M AX",
+ "ed erb",
+ "eder b",
+ "ede rb",
+ "object s",
+ "▁dif ferences",
+ "▁differ ences",
+ "▁difference s",
+ "is ted",
+ "ist ed",
+ "iste d",
+ "i sted",
+ "hr ef",
+ "hre f",
+ "h ref",
+ "ic ip",
+ "ici p",
+ "i cip",
+ "▁num py",
+ "▁ numpy",
+ "▁ф утбо",
+ "lo ader",
+ "load er",
+ "▁d ich",
+ "▁di ch",
+ "▁dic h",
+ "љ у",
+ "▁D é",
+ "H z",
+ "▁P aram",
+ "▁Par am",
+ "▁Pa ram",
+ "▁Para m",
+ "▁ Param",
+ "document ation",
+ "ir craft",
+ "irc raft",
+ "E M",
+ "▁inst itution",
+ "▁instit ution",
+ "com pat",
+ "comp at",
+ "▁а ль",
+ "▁ал ь",
+ "▁ аль",
+ "сла в",
+ "с лав",
+ "▁N et",
+ "▁Ne t",
+ "▁ Net",
+ "ци ональ",
+ "цион аль",
+ "циона ль",
+ "▁broad cast",
+ "date time",
+ "dat etime",
+ "as ync",
+ "asy nc",
+ "a sync",
+ "vr e",
+ "v re",
+ "me an",
+ "▁C hem",
+ "▁Ch em",
+ "▁Che m",
+ "▁est imate",
+ "▁estim ate",
+ "ic ana",
+ "ica na",
+ "ican a",
+ "▁g rep",
+ "▁gr ep",
+ "▁gre p",
+ "▁ grep",
+ "te k",
+ "t ek",
+ "ä m",
+ "or ig",
+ "ori g",
+ "o rig",
+ "▁Vict or",
+ "▁Vi ctor",
+ "▁Vic tor",
+ "ut enant",
+ "ute nant",
+ "uten ant",
+ "an ga",
+ "ang a",
+ "pi n",
+ "p in",
+ "▁ver tex",
+ "▁vert ex",
+ "▁verte x",
+ "▁CHAP TER",
+ "ci ty",
+ "cit y",
+ "c ity",
+ "ug by",
+ "gr een",
+ "gre en",
+ "g reen",
+ "▁K er",
+ "▁Ke r",
+ "▁dif fér",
+ "▁diff ér",
+ "▁necess arily",
+ "D C",
+ "Line ar",
+ "Lin ear",
+ "Li near",
+ "al em",
+ "ale m",
+ "a lem",
+ "▁L ater",
+ "▁La ter",
+ "▁Lat er",
+ "▁Late r",
+ "▁m eta",
+ "▁me ta",
+ "▁met a",
+ "▁ meta",
+ "je m",
+ "j em",
+ "ra gen",
+ "rag en",
+ "rage n",
+ "r agen",
+ "Ma y",
+ "M ay",
+ "▁Mitg lied",
+ "▁s orted",
+ "▁sort ed",
+ "▁sor ted",
+ "▁sorte d",
+ "▁ sorted",
+ "us sen",
+ "uss en",
+ "▁sp oke",
+ "▁spo ke",
+ "▁dis abled",
+ "▁disable d",
+ "▁ disabled",
+ "▁accompl ish",
+ "▁accomp lish",
+ "▁Russ ia",
+ "th ere",
+ "ther e",
+ "the re",
+ "t here",
+ "ee s",
+ "e es",
+ "▁h all",
+ "▁ha ll",
+ "▁hal l",
+ "▁ hall",
+ "▁met ric",
+ "▁ metric",
+ "att ribute",
+ "то го",
+ "т ого",
+ "ab out",
+ "▁L am",
+ "▁La m",
+ "ch annel",
+ "chan nel",
+ "▁e pisode",
+ "▁epis ode",
+ "▁$ ('.",
+ "▁$( '.",
+ "▁$(' .",
+ "▁ ought",
+ "▁E ste",
+ "▁Est e",
+ "▁Es te",
+ "Object s",
+ "▁valid ate",
+ "▁ validate",
+ "▁r im",
+ "▁ri m",
+ "▁ rim",
+ "▁numer ous",
+ "▁numero us",
+ "▁J avascript",
+ "▁Java script",
+ "▁G L",
+ "▁ GL",
+ "▁It aly",
+ "▁Ital y",
+ "ederb örd",
+ "on ato",
+ "ona to",
+ "bo oks",
+ "book s",
+ "st one",
+ "ston e",
+ "sto ne",
+ "х у",
+ "▁j el",
+ "▁je l",
+ "▁ jel",
+ "ir i",
+ "i ri",
+ "▁A SP",
+ "▁AS P",
+ "G A",
+ "▁st ata",
+ "▁stat a",
+ "▁sta ta",
+ "▁b az",
+ "▁ba z",
+ "▁ baz",
+ "Da y",
+ "D ay",
+ "th m",
+ "t hm",
+ "d h",
+ "▁F iles",
+ "▁Fil es",
+ "▁File s",
+ "▁ Files",
+ "Android Runtime",
+ "▁che cks",
+ "▁check s",
+ "k r",
+ "▁v enne",
+ "▁ven ne",
+ "S L",
+ "av ia",
+ "avi a",
+ "a via",
+ "ka zy",
+ "kaz y",
+ "k azy",
+ "▁Th ree",
+ "▁ Three",
+ "Ad min",
+ "▁col lege",
+ "▁coll ege",
+ "▁colleg e",
+ "▁colle ge",
+ "G lobal",
+ "ti on",
+ "t ion",
+ "▁cur ious",
+ "sh ort",
+ "▁b ass",
+ "▁bas s",
+ "▁ba ss",
+ "де ла",
+ "▁де я",
+ "Sch ema",
+ "' \\",
+ "di ff",
+ "d iff",
+ "▁C A",
+ "▁ CA",
+ "▁Cor por",
+ "▁oper ators",
+ "▁operator s",
+ "om rå",
+ "▁ed ges",
+ "▁edge s",
+ "); `",
+ ") ;`",
+ "in ds",
+ "ind s",
+ "▁g ing",
+ "▁gi ng",
+ "▁ ging",
+ "& &",
+ "}- \\",
+ "} -\\",
+ "ra no",
+ "ran o",
+ "r ano",
+ "▁s ão",
+ "▁ad ds",
+ "▁add s",
+ "el or",
+ "elo r",
+ "e lor",
+ "▁un signed",
+ "▁uns igned",
+ "▁ unsigned",
+ "▁п р",
+ "▁ пр",
+ "▁Con fig",
+ "▁Conf ig",
+ "▁ Config",
+ "▁E sc",
+ "▁Es c",
+ "▁ch ose",
+ "▁cho se",
+ "▁pie ces",
+ "▁piece s",
+ "▁reg ions",
+ "▁region s",
+ "Es t",
+ "E st",
+ "▁B attle",
+ "▁Batt le",
+ "▁f oc",
+ "▁fo c",
+ "▁L ight",
+ "▁Lig ht",
+ "▁ Light",
+ "pad ding",
+ "p adding",
+ "ab en",
+ "abe n",
+ "a ben",
+ "▁e urop",
+ "▁eu rop",
+ "▁euro p",
+ "il lon",
+ "ill on",
+ "illo n",
+ "▁е сть",
+ "▁b ord",
+ "▁bo rd",
+ "▁bor d",
+ "▁о тно",
+ "▁от но",
+ "▁H ong",
+ "▁Hon g",
+ "▁Ho ng",
+ "▁v ul",
+ "▁vu l",
+ "pl ugins",
+ "plugin s",
+ "▁' <",
+ "▁k ur",
+ "▁ kur",
+ "reg ion",
+ "▁Re pub",
+ "▁Rep ub",
+ "ic her",
+ "ich er",
+ "iche r",
+ "i cher",
+ "}_ \\",
+ "} _\\",
+ "▁me dal",
+ "▁med al",
+ "▁More over",
+ "B I",
+ "A v",
+ "ut er",
+ "ute r",
+ "u ter",
+ "▁s can",
+ "▁sc an",
+ "▁ scan",
+ "▁M unicip",
+ "▁Mun icip",
+ "▁contr ast",
+ "▁contra st",
+ "▁I g",
+ "▁ Ig",
+ "▁го род",
+ "▁горо д",
+ "▁гор од",
+ "▁ город",
+ "rel ated",
+ "al ing",
+ "ali ng",
+ "alin g",
+ "a ling",
+ "▁м ат",
+ "▁ма т",
+ "▁ мат",
+ "ün st",
+ "▁Ch ris",
+ "▁Chr is",
+ "w y",
+ "▁Act ually",
+ "▁Univers idad",
+ "Event Listener",
+ "▁tempor ada",
+ "▁ass ignment",
+ "▁assign ment",
+ "▁M ike",
+ "▁Mi ke",
+ "▁Mik e",
+ "▁w ährend",
+ "▁ś wi",
+ "▁św i",
+ "▁с ред",
+ "▁сре д",
+ "ка де",
+ "▁calcul ated",
+ "▁calculate d",
+ "▁calc ulated",
+ "▁el ler",
+ "▁elle r",
+ "▁ell er",
+ "▁ eller",
+ "▁A sh",
+ "▁As h",
+ "ri el",
+ "rie l",
+ "r iel",
+ "▁hard ware",
+ "▁int ens",
+ "▁inte ns",
+ "▁inten s",
+ "(' .",
+ "( '.",
+ "il li",
+ "ill i",
+ "ag on",
+ "ago n",
+ "a gon",
+ "▁G y",
+ "▁he ute",
+ "▁heut e",
+ "▁s le",
+ "▁sl e",
+ "▁liter ature",
+ "se m",
+ "s em",
+ "man ager",
+ "mana ger",
+ "▁Gr ande",
+ "▁Gra nde",
+ "▁Grand e",
+ "▁Gran de",
+ "▁m ixed",
+ "▁mix ed",
+ "▁В ер",
+ "▁Ве р",
+ "í cí",
+ "▁s oit",
+ "▁so it",
+ "▁wel come",
+ "че ние",
+ "▁Univers ität",
+ "▁bu ilder",
+ "▁build er",
+ "▁ builder",
+ "sim ple",
+ "simp le",
+ "ic ode",
+ "ico de",
+ "i code",
+ "ř e",
+ "in dent",
+ "ind ent",
+ "inden t",
+ "inde nt",
+ "op o",
+ "o po",
+ "▁ad vanced",
+ "▁adv anced",
+ "▁advance d",
+ "tem per",
+ "temp er",
+ "ed ge",
+ "▁dat etime",
+ "▁date time",
+ "▁ datetime",
+ "▁d onc",
+ "▁do nc",
+ "▁don c",
+ "ла ння",
+ "лан ня",
+ "▁v erd",
+ "▁ver d",
+ "▁ve rd",
+ "д но",
+ "it os",
+ "ito s",
+ "▁he at",
+ "vi sible",
+ "vis ible",
+ "me l",
+ "m el",
+ "▁Giov anni",
+ "▁var iety",
+ "▁vari ety",
+ "▁r outer",
+ "▁ro uter",
+ "▁route r",
+ "▁rout er",
+ "▁rou ter",
+ "▁ router",
+ "Vec tor",
+ "V ector",
+ "▁W alk",
+ "▁Wal k",
+ "▁ob viously",
+ "▁obvious ly",
+ "he in",
+ "h ein",
+ "Fi n",
+ "F in",
+ "ITable View",
+ "Y ear",
+ "▁E conom",
+ "▁vel ocity",
+ "▁veloc ity",
+ "▁C ivil",
+ "▁Ci vil",
+ "▁ ј",
+ "al ert",
+ "ale rt",
+ "aler t",
+ "Ident ifier",
+ "èn cia",
+ "▁normal ly",
+ "▁norm ally",
+ "▁E gypt",
+ "▁Egy pt",
+ "▁c tx",
+ "▁ ctx",
+ "▁Ver ein",
+ "▁Vere in",
+ "▁H u",
+ "ult ure",
+ "ultur e",
+ "ни те",
+ "l é",
+ "▁W ien",
+ "▁Wi en",
+ "▁Wie n",
+ "▁P rz",
+ "▁Pr z",
+ "By te",
+ "▁n ah",
+ "▁na h",
+ "▁ nah",
+ "is ms",
+ "ism s",
+ "▁Pub lish",
+ "▁He rz",
+ "▁Her z",
+ "ic ul",
+ "i cul",
+ "pis ode",
+ "ч і",
+ "▁die sem",
+ "▁dies em",
+ "▁diese m",
+ "k ö",
+ "Vis ible",
+ "▁r ig",
+ "▁ri g",
+ "▁ rig",
+ "`) .",
+ "` ).",
+ "Par se",
+ "P arse",
+ "▁Jac ques",
+ "N I",
+ "▁g lass",
+ "▁gl ass",
+ "▁gla ss",
+ "▁ glass",
+ "-- -+",
+ "--- +",
+ "- --+",
+ "▁initial ly",
+ "▁initi ally",
+ "▁k r",
+ "▁ kr",
+ "CC N",
+ "C CN",
+ "pl ays",
+ "play s",
+ "pla ys",
+ "▁s igu",
+ "▁si gu",
+ "▁sig u",
+ "F older",
+ "st orage",
+ "sto rage",
+ "stor age",
+ "▁\\ |",
+ "▁ \\|",
+ "iv os",
+ "ivo s",
+ "i vos",
+ "ск ую",
+ "ску ю",
+ "▁M oh",
+ "▁Mo h",
+ "▁Comm ittee",
+ "▁K im",
+ "▁Ki m",
+ "e u",
+ "те м",
+ "т ем",
+ "▁orig inale",
+ "▁original e",
+ "▁origin ale",
+ "ir s",
+ "i rs",
+ "▁R eb",
+ "▁Re b",
+ "it ut",
+ "itu t",
+ "n l",
+ "▁P ier",
+ "▁Pi er",
+ "▁Pie r",
+ "▁] ;",
+ "▁ ];",
+ "▁F al",
+ "▁Fa l",
+ "▁\" \";",
+ "▁\"\" ;",
+ "mv c",
+ "m vc",
+ "▁fe male",
+ "▁fem ale",
+ "▁b ridge",
+ "▁br idge",
+ "▁brid ge",
+ "▁ bridge",
+ "▁t ít",
+ "kt r",
+ "k tr",
+ "> )",
+ "▁se at",
+ "▁sea t",
+ "▁v ess",
+ "▁ve ss",
+ "▁ves s",
+ "▁U SB",
+ "▁US B",
+ "▁Art icles",
+ "▁Article s",
+ "▁De scription",
+ "▁Des cription",
+ "▁Descri ption",
+ "▁ Description",
+ "▁o c",
+ "▁ oc",
+ "▁h ouses",
+ "▁house s",
+ "▁ho uses",
+ "▁hous es",
+ "▁П ет",
+ "▁Пе т",
+ "lo n",
+ "l on",
+ "Not ification",
+ "▁press ure",
+ "▁ку ль",
+ "▁ куль",
+ "ig ned",
+ "ign ed",
+ "igne d",
+ "▁relig ious",
+ "fa n",
+ "f an",
+ "ig lia",
+ "igli a",
+ "▁class ification",
+ "▁classific ation",
+ "og ether",
+ "oge ther",
+ "▁S DK",
+ "▁SD K",
+ "▁ SDK",
+ "▁H uman",
+ "▁Hu man",
+ "▁Hum an",
+ "▁com mission",
+ "▁comm ission",
+ "▁О р",
+ "▁an tes",
+ "▁ant es",
+ "▁ante s",
+ "▁ antes",
+ "D T",
+ "èt e",
+ "è te",
+ "pr és",
+ "p rés",
+ "/ \"",
+ "▁( «",
+ "▁h ö",
+ "▁ hö",
+ "▁ча с",
+ "▁ час",
+ "▁j ak",
+ "▁ja k",
+ "▁ jak",
+ "ie nen",
+ "ien en",
+ "iene n",
+ "i enen",
+ "ug g",
+ "u gg",
+ "W A",
+ "▁place holder",
+ "▁ placeholder",
+ "Wil l",
+ "W ill",
+ ", ,",
+ "▁K am",
+ "▁Ka m",
+ "▁w en",
+ "▁we n",
+ "▁ wen",
+ "▁Sch ul",
+ "ți e",
+ "ț ie",
+ "▁a ud",
+ "▁au d",
+ "▁ aud",
+ "▁s ue",
+ "▁su e",
+ "▁re ferred",
+ "▁refer red",
+ "ва т",
+ "в ат",
+ "▁P ara",
+ "▁Par a",
+ "▁Pa ra",
+ "▁b la",
+ "▁bl a",
+ "▁ bla",
+ "UE S",
+ "U ES",
+ "▁stat ist",
+ "▁stati st",
+ "▁т у",
+ "▁ ту",
+ "▁Wars za",
+ "gu e",
+ "g ue",
+ "▁I de",
+ "▁Id e",
+ "math scr",
+ "▁l ieu",
+ "▁li eu",
+ "▁lie u",
+ "▁b od",
+ "▁bo d",
+ "▁r us",
+ "▁ru s",
+ "▁ rus",
+ "▁bo at",
+ "xs pace",
+ "x space",
+ "▁mod al",
+ "▁mo dal",
+ "▁ modal",
+ "ле к",
+ "л ек",
+ "to pic",
+ "top ic",
+ "ma ny",
+ "man y",
+ "m any",
+ "sk ý",
+ "▁organ ization",
+ "▁organiz ation",
+ "▁г ене",
+ "▁ге не",
+ "▁Wil son",
+ "▁com fort",
+ "ib il",
+ "i bil",
+ ": -",
+ "▁an imal",
+ "▁anim al",
+ "▁ani mal",
+ "Re port",
+ "Rep ort",
+ "ка ми",
+ "кам и",
+ "jo n",
+ "j on",
+ "▁k er",
+ "▁ke r",
+ "▁ ker",
+ "▁к ни",
+ "moz illa",
+ "Pr ice",
+ "P rice",
+ "ant in",
+ "anti n",
+ "em ento",
+ "ement o",
+ "emen to",
+ "ma y",
+ "m ay",
+ "▁l ung",
+ "▁lu ng",
+ "▁lun g",
+ "▁ lung",
+ "▁b low",
+ "▁bl ow",
+ "▁blo w",
+ "ede ut",
+ "▁type d",
+ "▁typ ed",
+ "▁ty ped",
+ "▁dec ember",
+ "▁. ...",
+ "▁... .",
+ "▁.. ..",
+ "▁ ....",
+ "li ance",
+ "l iance",
+ "▁v iel",
+ "▁vi el",
+ "▁vie l",
+ "▁Ф и",
+ "pr esa",
+ "pre sa",
+ "pres a",
+ "▁ос іб",
+ "▁N am",
+ "▁Na m",
+ "▁G ren",
+ "▁Gr en",
+ "▁Gre n",
+ "си лання",
+ "VI D",
+ "V ID",
+ "st re",
+ "str e",
+ "s tre",
+ "we is",
+ "wei s",
+ "▁prote ction",
+ "▁protect ion",
+ "▁prot ection",
+ "ta ient",
+ "t aient",
+ "▁offic ers",
+ "▁office rs",
+ "▁officer s",
+ "т но",
+ "▁B rig",
+ "▁Br ig",
+ "▁int ellig",
+ "▁intel lig",
+ "я х",
+ "IT H",
+ "I TH",
+ "▁separ ated",
+ "▁separate d",
+ "▁L CCN",
+ "ní m",
+ "n ím",
+ "cl ock",
+ "clo ck",
+ "c lock",
+ "▁ap are",
+ "▁apar e",
+ "яв и",
+ "я ви",
+ "▁Eliz abeth",
+ "▁W ater",
+ "▁Wat er",
+ "▁Wa ter",
+ "geb iet",
+ "▁con vent",
+ "▁conv ent",
+ "▁conven t",
+ "fu rt",
+ "fur t",
+ "f urt",
+ "▁be iden",
+ "▁bei den",
+ "▁beide n",
+ "ba sh",
+ "bas h",
+ "b ash",
+ "▁че рез",
+ "▁чер ез",
+ "▁u b",
+ "▁ ub",
+ "▁Stat ist",
+ "▁Stati st",
+ "▁lim its",
+ "▁limit s",
+ "▁ limits",
+ "V ol",
+ "ct x",
+ "c tx",
+ "▁но в",
+ "▁н ов",
+ "▁ нов",
+ "gu ide",
+ "gui de",
+ "mi c",
+ "m ic",
+ "ie sa",
+ "ies a",
+ "i esa",
+ "▁h uvud",
+ "R T",
+ "Fi g",
+ "F ig",
+ "▁l ect",
+ "▁le ct",
+ "▁ lect",
+ "con n",
+ "co nn",
+ "c onn",
+ "im it",
+ "imi t",
+ "i mit",
+ "га р",
+ "г ар",
+ "▁b ajo",
+ "▁ba jo",
+ "scri be",
+ "scr ibe",
+ "s cribe",
+ "re gex",
+ "reg ex",
+ "▁C ass",
+ "▁Cas s",
+ "▁Ca ss",
+ "▁pro pag",
+ "▁prop ag",
+ "' $",
+ "▁prof es",
+ "un ique",
+ "uni que",
+ "▁S ql",
+ "▁ Sql",
+ "un ion",
+ "uni on",
+ "ri os",
+ "rio s",
+ "r ios",
+ "pi p",
+ "p ip",
+ "-- +",
+ "- -+",
+ "ka dem",
+ "k adem",
+ "column s",
+ "▁v ary",
+ "▁var y",
+ "▁va ry",
+ "▁bere its",
+ "▁d oi",
+ "▁do i",
+ "▁Com mon",
+ "▁Comm on",
+ "▁ Common",
+ "▁Ro bin",
+ "▁Rob in",
+ "▁ ×",
+ "▁s ei",
+ "▁se i",
+ "▁s yst",
+ "▁sy st",
+ "▁sys t",
+ "▁v ä",
+ "▁ vä",
+ "▁De fault",
+ "▁Def ault",
+ "▁ Default",
+ "▁t ym",
+ "▁ty m",
+ "pe l",
+ "p el",
+ "▁bel ieved",
+ "▁believe d",
+ "▁pro vider",
+ "▁prov ider",
+ "▁provide r",
+ "▁ provider",
+ "▁min imal",
+ "▁minim al",
+ "▁mini mal",
+ "та ли",
+ "тал и",
+ "т али",
+ "ain es",
+ "ai nes",
+ "aine s",
+ "a ines",
+ "K it",
+ "iz io",
+ "izi o",
+ "is sen",
+ "iss en",
+ "isse n",
+ "pr essed",
+ "press ed",
+ "pres sed",
+ "▁s tag",
+ "▁st ag",
+ "▁sta g",
+ "▁ stag",
+ "▁u int",
+ "▁ui nt",
+ "▁ uint",
+ "ko r",
+ "k or",
+ "▁ра спо",
+ "▁рас по",
+ "▁in herit",
+ "▁inher it",
+ "▁comp iled",
+ "▁compile d",
+ "▁f ebru",
+ "▁fe bru",
+ "▁feb ru",
+ "▁t mp",
+ "▁tm p",
+ "▁ tmp",
+ "work s",
+ "wor ks",
+ "ч на",
+ "draw able",
+ "▁N av",
+ "▁Na v",
+ "▁ Nav",
+ "▁though ts",
+ "▁thought s",
+ "ro ute",
+ "rout e",
+ "rou te",
+ "r oute",
+ "▁con cert",
+ "▁conc ert",
+ "▁conce rt",
+ "▁option al",
+ "▁opt ional",
+ "▁ optional",
+ "▁b ras",
+ "▁br as",
+ "▁bra s",
+ "▁ bras",
+ "▁prov iding",
+ "со м",
+ "с ом",
+ "id x",
+ "i dx",
+ "emp lo",
+ "empl o",
+ "▁ко ли",
+ "▁ коли",
+ "▁B ere",
+ "▁Be re",
+ "▁Ber e",
+ "▁E ls",
+ "▁El s",
+ "ре мен",
+ "рем ен",
+ "▁де ка",
+ "co ut",
+ "cou t",
+ "c out",
+ "la yer",
+ "lay er",
+ "l ayer",
+ "▁g lob",
+ "▁gl ob",
+ "▁glo b",
+ "▁ glob",
+ "fore ach",
+ "for each",
+ "▁E ducation",
+ "▁Edu cation",
+ "P O",
+ "▁im prov",
+ "▁imp rov",
+ "▁impro v",
+ "▁impr ov",
+ "▁cl ients",
+ "▁client s",
+ "▁cli ents",
+ "gr oups",
+ "group s",
+ "gro ups",
+ "▁k ont",
+ "▁kon t",
+ "▁ko nt",
+ "De l",
+ "D el",
+ "re tt",
+ "ret t",
+ "r ett",
+ "▁s up",
+ "▁su p",
+ "▁ sup",
+ "▁m og",
+ "▁mo g",
+ "ta n",
+ "t an",
+ "▁com pl",
+ "▁comp l",
+ "ir ty",
+ "irt y",
+ "▁nouve au",
+ "os z",
+ "o sz",
+ "▁N avy",
+ "▁Na vy",
+ "▁Nav y",
+ "ber e",
+ "be re",
+ "b ere",
+ "ma sk",
+ "mas k",
+ "m ask",
+ "ov é",
+ "o vé",
+ "zi l",
+ "z il",
+ "PE R",
+ "P ER",
+ "▁pobla ción",
+ "▁població n",
+ "▁d etailed",
+ "▁detail ed",
+ "ле т",
+ "л ет",
+ "▁famil ies",
+ "▁familie s",
+ "ab et",
+ "abe t",
+ "a bet",
+ "е вич",
+ "änd er",
+ "än der",
+ "ände r",
+ "ä nder",
+ "▁å r",
+ "▁ år",
+ "▁p endant",
+ "▁b il",
+ "▁bi l",
+ "▁ bil",
+ "▁h int",
+ "▁hi nt",
+ "▁hin t",
+ "ode n",
+ "od en",
+ "o den",
+ "▁exp ansion",
+ "▁p ont",
+ "▁po nt",
+ "▁pon t",
+ "▁ pont",
+ "as ant",
+ "asa nt",
+ "▁K ind",
+ "▁Ki nd",
+ "▁Kin d",
+ "▁ Kind",
+ "ij i",
+ "i ji",
+ "▁A uth",
+ "▁Aut h",
+ "▁Au th",
+ "▁ Auth",
+ "laim ed",
+ "ref lect",
+ "] =",
+ "by tes",
+ "byte s",
+ "ho ver",
+ "hov er",
+ "h over",
+ "▁ц ер",
+ "▁це р",
+ "▁ цер",
+ "grad le",
+ "Ar ch",
+ "ap est",
+ "ape st",
+ "apes t",
+ "ás a",
+ "á sa",
+ "Car d",
+ "Ca rd",
+ "C ard",
+ "▁tempor ary",
+ "▁départ ement",
+ "class es",
+ "жи ва",
+ "▁х удо",
+ "▁m ole",
+ "▁mo le",
+ "▁mol e",
+ "R Y",
+ "L P",
+ "▁p ec",
+ "▁pe c",
+ "▁ pec",
+ "rodu ction",
+ "▁Gu ard",
+ "▁Par liament",
+ "▁inst anti",
+ "▁instant i",
+ "▁not amment",
+ "▁D oug",
+ "▁Do ug",
+ "▁Dou g",
+ "▁Mar sh",
+ "▁Mars h",
+ ". ~",
+ "▁\\ \"",
+ "▁ \\\"",
+ "▁t hé",
+ "▁th é",
+ "▁li bre",
+ "▁lib re",
+ "do es",
+ "▁dé but",
+ "▁U nit",
+ "▁Un it",
+ "▁ Unit",
+ "▁с ту",
+ "▁ст у",
+ "▁ сту",
+ "▁le ague",
+ "▁qu ale",
+ "▁q uale",
+ "▁qual e",
+ "▁состав ля",
+ "▁соста вля",
+ "Se curity",
+ "Sec urity",
+ "▁appar ently",
+ "▁apparent ly",
+ "▁tro ops",
+ "ic ano",
+ "ica no",
+ "ican o",
+ "i cano",
+ "▁M B",
+ "▁ MB",
+ "en ze",
+ "enz e",
+ "lo ading",
+ "load ing",
+ "▁dist ributed",
+ "▁distribu ted",
+ "▁distrib uted",
+ "write r",
+ "writ er",
+ "wr iter",
+ "w riter",
+ "res ources",
+ "resource s",
+ "h ö",
+ "ut ils",
+ "util s",
+ "uti ls",
+ "▁prep ared",
+ "▁prepar ed",
+ "▁prepare d",
+ "ci er",
+ "cie r",
+ "c ier",
+ "op ol",
+ "opo l",
+ "o pol",
+ "▁län kar",
+ "he s",
+ "h es",
+ "н ва",
+ "▁op ens",
+ "▁open s",
+ "▁ opens",
+ "ag og",
+ "ago g",
+ "inter face",
+ "▁F und",
+ "▁Fu nd",
+ "▁Fun d",
+ "▁pent ru",
+ "ní ch",
+ "n ích",
+ "▁config ured",
+ "▁configure d",
+ "▁configur ed",
+ "▁Web site",
+ "▁list ener",
+ "▁listen er",
+ "▁liste ner",
+ "▁ listener",
+ "iv el",
+ "ive l",
+ "i vel",
+ "n ę",
+ "min a",
+ "mi na",
+ "m ina",
+ "▁in vest",
+ "▁inv est",
+ "▁inve st",
+ "▁м іс",
+ "▁мі с",
+ "▁d av",
+ "▁da v",
+ "▁p atch",
+ "▁pat ch",
+ "▁ patch",
+ "pi eler",
+ "piel er",
+ "pie ler",
+ "▁Ext erna",
+ "▁Extern a",
+ "t f",
+ "▁e red",
+ "▁er ed",
+ "▁ere d",
+ "▁ ered",
+ "▁Ass embly",
+ "▁ Assembly",
+ "▁s out",
+ "▁so ut",
+ "▁sou t",
+ "▁v erk",
+ "▁ver k",
+ "▁ verk",
+ "me rs",
+ "mer s",
+ "m ers",
+ "t oggle",
+ "▁up dating",
+ "▁upd ating",
+ "▁K ent",
+ "▁Ke nt",
+ "▁Ken t",
+ "ec a",
+ "e ca",
+ "FA ULT",
+ "▁tit re",
+ "▁ti tre",
+ "▁K enn",
+ "▁Ke nn",
+ "▁Ken n",
+ "▁Ми ха",
+ "ст ор",
+ "сто р",
+ "с тор",
+ "▁p ode",
+ "▁po de",
+ "▁pod e",
+ "▁S eb",
+ "▁Se b",
+ "це в",
+ "ц ев",
+ "E Y",
+ "▁sil ver",
+ "▁cap acity",
+ "▁capac ity",
+ "▁comple tion",
+ "▁complet ion",
+ "▁Pe dro",
+ "▁Ped ro",
+ "fe l",
+ "f el",
+ "va no",
+ "van o",
+ "v ano",
+ "ze ug",
+ "▁in terior",
+ "▁inter ior",
+ "▁inte rior",
+ "▁Res ponse",
+ "▁ Response",
+ "éd ia",
+ "é dia",
+ "▁World Cat",
+ "▁c ă",
+ "qu el",
+ "que l",
+ "q uel",
+ "So l",
+ "S ol",
+ "іс ля",
+ "▁D omin",
+ "▁Do min",
+ "▁Dom in",
+ "▁c um",
+ "▁cu m",
+ "ce p",
+ "c ep",
+ "▁M use",
+ "▁Mus e",
+ "▁Mu se",
+ "▁M aría",
+ "▁Mar ía",
+ "▁Ma ría",
+ "▁function al",
+ "▁ad apter",
+ "▁adapt er",
+ "▁ adapter",
+ "config uration",
+ "▁t ipo",
+ "▁tip o",
+ "▁ti po",
+ "▁B ry",
+ "▁Br y",
+ "v y",
+ "U L",
+ "▁tra vers",
+ "▁trav ers",
+ "! (",
+ "▁absol utely",
+ "▁absolute ly",
+ "л та",
+ "тт я",
+ "т тя",
+ "▁I T",
+ "▁ IT",
+ "▁во ен",
+ "yc le",
+ "y cle",
+ "be st",
+ "bes t",
+ "b est",
+ "▁construct ed",
+ "▁constru cted",
+ "▁фи ль",
+ "▁ филь",
+ "ci do",
+ "cid o",
+ "c ido",
+ "ex it",
+ "ga rt",
+ "gar t",
+ "g art",
+ "▁provin cia",
+ "ve z",
+ "v ez",
+ "ci pl",
+ "cip l",
+ "▁Face book",
+ "▁Fac ebook",
+ "▁y ellow",
+ "▁ yellow",
+ "▁Sum mer",
+ "▁point ing",
+ "▁poss ibility",
+ "▁possib ility",
+ "▁possibil ity",
+ "▁leg isl",
+ "▁мо ж",
+ "▁ мож",
+ "de rn",
+ "der n",
+ "d ern",
+ "ко но",
+ "кон о",
+ "▁mechan ism",
+ "▁Bern ard",
+ "ex pr",
+ "exp r",
+ "ло ви",
+ "лов и",
+ "л ови",
+ "▁dig its",
+ "▁digit s",
+ "▁de legate",
+ "▁deleg ate",
+ "▁ delegate",
+ "og ram",
+ "o gram",
+ "▁D ictionary",
+ "▁ Dictionary",
+ "is y",
+ "▁s po",
+ "▁sp o",
+ "/ $",
+ "clude d",
+ "clud ed",
+ "▁M VC",
+ "▁t ém",
+ "▁té m",
+ "▁print ed",
+ "▁prin ted",
+ "▁G ott",
+ "▁Go tt",
+ "▁Got t",
+ "▁O m",
+ "▁ Om",
+ "ans as",
+ "▁D urch",
+ "▁Dur ch",
+ "▁I dent",
+ "▁Id ent",
+ "▁Ide nt",
+ "▁ Ident",
+ "Q U",
+ "ht m",
+ "h tm",
+ "▁S ul",
+ "▁Su l",
+ "'] .",
+ "' ].",
+ "▁du ty",
+ "▁dut y",
+ "▁Aut hor",
+ "▁Auth or",
+ "▁ Author",
+ "▁n ě",
+ "▁ ně",
+ "ow ego",
+ "owe go",
+ "pu s",
+ "p us",
+ "em bl",
+ "emb l",
+ "Exec utor",
+ "B L",
+ "▁M ens",
+ "▁Me ns",
+ "▁Men s",
+ "dis patch",
+ "▁M id",
+ "▁Mi d",
+ "ap ps",
+ "app s",
+ "Trans form",
+ "▁D at",
+ "▁Da t",
+ "▁ Dat",
+ "▁im pl",
+ "▁imp l",
+ "▁ impl",
+ "ou x",
+ "o ux",
+ "ho lm",
+ "hol m",
+ "▁I ns",
+ "▁In s",
+ "▁Emp ire",
+ "ру п",
+ "▁Ap ache",
+ "SI ON",
+ "S ION",
+ "▁pass age",
+ "######## ########",
+ "▁ex pressed",
+ "▁express ed",
+ "▁expr essed",
+ "▁expres sed",
+ "на д",
+ "▁o l",
+ "▁ ol",
+ "▁h avia",
+ "▁ha via",
+ "▁hav ia",
+ "▁бо лее",
+ "▁enjo y",
+ "form ance",
+ "▁dim ensions",
+ "▁dimension s",
+ "▁ч ер",
+ "▁че р",
+ "▁ чер",
+ "Se e",
+ "S ee",
+ "▁m outh",
+ "▁mo uth",
+ "▁mou th",
+ "▁ mouth",
+ "▁g au",
+ "▁ga u",
+ "ien cy",
+ "i ency",
+ "▁Carol ina",
+ "Dis t",
+ "Di st",
+ "D ist",
+ "rad io",
+ "li mit",
+ "lim it",
+ "l imit",
+ "/ ?",
+ "▁B all",
+ "▁Ba ll",
+ "▁Bal l",
+ "ні сть",
+ "Mem ber",
+ "M ember",
+ "wa ter",
+ "w ater",
+ "▁mur der",
+ "▁stand ing",
+ "▁stan ding",
+ "▁ standing",
+ "▁V II",
+ "▁VI I",
+ "Cent er",
+ "C enter",
+ "pp a",
+ "p pa",
+ "ur eau",
+ "ure au",
+ "▁Le ip",
+ "▁ob jet",
+ "▁obj et",
+ "▁Act ivity",
+ "▁Activ ity",
+ "▁ Activity",
+ "em bers",
+ "ember s",
+ "emb ers",
+ "v r",
+ "▁con du",
+ "▁cond u",
+ "Cell s",
+ "C ells",
+ "in us",
+ "inu s",
+ "▁' ,",
+ "▁ ',",
+ "▁af raid",
+ "▁х а",
+ "▁ ха",
+ "▁V ic",
+ "▁Vi c",
+ "test ing",
+ "tes ting",
+ "Tu be",
+ "T ube",
+ "▁v ast",
+ "▁va st",
+ "▁vas t",
+ "P M",
+ "ni h",
+ "n ih",
+ "SS N",
+ "S SN",
+ "▁Ch ile",
+ "▁Chi le",
+ "yl van",
+ "▁B ow",
+ "▁Bo w",
+ "▁relig ion",
+ "op her",
+ "oph er",
+ "ophe r",
+ "o pher",
+ "▁C oll",
+ "▁Col l",
+ "▁Co ll",
+ "▁ Coll",
+ "▁dig ital",
+ "▁digit al",
+ "zi oni",
+ "z ioni",
+ "Se ction",
+ "Sec tion",
+ "S ection",
+ "▁резу льта",
+ "Foo t",
+ "F oot",
+ "con vert",
+ "conv ert",
+ "▁rece iving",
+ "Cont act",
+ "▁h ero",
+ "▁he ro",
+ "▁her o",
+ "sa m",
+ "s am",
+ "▁pos terior",
+ "▁poster ior",
+ "▁poste rior",
+ "ow i",
+ "o wi",
+ "An t",
+ "A nt",
+ "▁fl ags",
+ "▁flag s",
+ "▁fla gs",
+ "▁ flags",
+ "▁Ze aland",
+ "▁b ounds",
+ "▁bound s",
+ "▁ bounds",
+ "▁where as",
+ "▁whe reas",
+ "in fl",
+ "inf l",
+ "Pl ay",
+ "P lay",
+ "▁d emo",
+ "▁de mo",
+ "▁dem o",
+ "▁ demo",
+ "▁g ibt",
+ "▁gi bt",
+ "▁h ospital",
+ "▁hosp ital",
+ "▁v olta",
+ "▁vol ta",
+ "▁volt a",
+ "л ё",
+ "▁f ashion",
+ "▁ex ceed",
+ "▁exc eed",
+ "el enium",
+ "elen ium",
+ "It er",
+ "I ter",
+ "kr ie",
+ "k rie",
+ "▁integr ation",
+ "▁integra tion",
+ "▁ integration",
+ "▁Other wise",
+ "ad u",
+ "a du",
+ "Sh e",
+ "S he",
+ "on de",
+ "ond e",
+ "o nde",
+ "ui nt",
+ "u int",
+ "rad ius",
+ "▁r am",
+ "▁ra m",
+ "▁ ram",
+ "▁ál bum",
+ "▁т ур",
+ "▁ту р",
+ "▁ тур",
+ "▁d y",
+ "▁ dy",
+ "▁O tt",
+ "▁Ot t",
+ "▁пер и",
+ "▁пе ри",
+ "re v",
+ "r ev",
+ "ri or",
+ "rio r",
+ "r ior",
+ "í d",
+ "ir at",
+ "ira t",
+ "i rat",
+ "▁в клю",
+ "▁import ante",
+ "▁important e",
+ "▁Du ke",
+ "▁caus a",
+ "▁ca usa",
+ "▁Math emat",
+ "▁di plom",
+ "▁N icol",
+ "▁Nic ol",
+ "▁Ni col",
+ "▁ex clus",
+ "▁exc lus",
+ "▁debug ging",
+ "▁G h",
+ "or iginal",
+ "origin al",
+ "orig inal",
+ "ly n",
+ "l yn",
+ "▁P la",
+ "▁Pl a",
+ "su ite",
+ "suit e",
+ "ch at",
+ "cha t",
+ "c hat",
+ "▁e stud",
+ "▁est ud",
+ "ue lle",
+ "uel le",
+ "u elle",
+ "▁p ert",
+ "▁per t",
+ "▁pe rt",
+ "▁ pert",
+ "▁import ance",
+ "▁appro aches",
+ "▁approach es",
+ "▁d la",
+ "▁про ф",
+ "Pr es",
+ "Pre s",
+ "P res",
+ "< \\",
+ "pre fix",
+ "p refix",
+ "SS ION",
+ "S SION",
+ "ро ди",
+ "род и",
+ "count ry",
+ "c ountry",
+ "it zer",
+ "itz er",
+ "▁ко р",
+ "▁к ор",
+ "▁ кор",
+ "▁sing ular",
+ "go v",
+ "g ov",
+ "ри н",
+ "р ин",
+ "▁F A",
+ "▁ FA",
+ "▁mat rices",
+ "ol are",
+ "ola re",
+ "olar e",
+ "o lare",
+ "ni ka",
+ "nik a",
+ "n ika",
+ "po wer",
+ "pow er",
+ "p ower",
+ "ll a",
+ "l la",
+ "▁des ire",
+ "▁famil ia",
+ "▁fam ilia",
+ "до р",
+ "д ор",
+ "▁f an",
+ "▁fa n",
+ "▁ fan",
+ "gener ated",
+ "generate d",
+ "▁C os",
+ "▁Co s",
+ "▁ż e",
+ "▁ że",
+ "▁D iese",
+ "▁Die se",
+ "▁Di ese",
+ "▁Dies e",
+ "mo v",
+ "m ov",
+ "▁de note",
+ "▁den ote",
+ "\") ]",
+ "\" )]",
+ "ou vern",
+ "ouv ern",
+ "ouve rn",
+ "ouver n",
+ "am an",
+ "ama n",
+ "a man",
+ "▁in ser",
+ "▁ins er",
+ "▁inse r",
+ "ij k",
+ "i jk",
+ "ot ta",
+ "ott a",
+ "o tta",
+ "er al",
+ "era l",
+ "e ral",
+ "де ль",
+ "д ель",
+ "() ->",
+ "( )->",
+ "▁p oder",
+ "▁po der",
+ "▁pod er",
+ "▁pode r",
+ "ig es",
+ "ige s",
+ "i ges",
+ "▁On line",
+ "▁we ird",
+ "ia c",
+ "i ac",
+ "▁quel ques",
+ "▁quelque s",
+ "ère nt",
+ "è rent",
+ "▁t el",
+ "▁te l",
+ "▁ tel",
+ "▁L atin",
+ "▁Lat in",
+ "ver ter",
+ "vert er",
+ "verte r",
+ "ля р",
+ "ро и",
+ "▁p df",
+ "▁pd f",
+ "▁ pdf",
+ "▁key word",
+ "▁ keyword",
+ "Hand le",
+ "A fter",
+ "re ce",
+ "rec e",
+ "▁ident ical",
+ "style sheet",
+ "styles heet",
+ "▁стан ови",
+ "▁станов и",
+ "▁k a",
+ "▁ ka",
+ "ce ment",
+ "cem ent",
+ "c ement",
+ "те т",
+ "т ет",
+ "▁c hat",
+ "▁ch at",
+ "▁cha t",
+ "▁ chat",
+ "▁M un",
+ "▁Mu n",
+ "ał a",
+ "a ła",
+ "AN T",
+ "A NT",
+ "ol óg",
+ "▁f ant",
+ "▁fa nt",
+ "▁fan t",
+ "▁for est",
+ "▁fo rest",
+ "▁fore st",
+ "▁ви ко",
+ "cu ss",
+ "cus s",
+ "c uss",
+ "▁se hr",
+ "pa g",
+ "p ag",
+ "ot ic",
+ "oti c",
+ "▁á ll",
+ "▁ál l",
+ "▁ áll",
+ "ма ти",
+ "мат и",
+ "▁\" '",
+ "+ \"",
+ "An imation",
+ "Anim ation",
+ "ходи т",
+ "ход ит",
+ "az u",
+ "a zu",
+ "▁pl ays",
+ "▁play s",
+ "▁pla ys",
+ "▁ plays",
+ "iz ioni",
+ "izi oni",
+ "izio ni",
+ "i zioni",
+ "ми че",
+ "▁b omb",
+ "▁bo mb",
+ "▁bom b",
+ "▁mer ely",
+ "▁mere ly",
+ "▁hold ing",
+ "▁hol ding",
+ "▁w enn",
+ "▁we nn",
+ "▁wen n",
+ "▁m edic",
+ "▁me dic",
+ "▁med ic",
+ "▁medi c",
+ "▁spe aking",
+ "▁speak ing",
+ "ong odb",
+ "ongo db",
+ "▁Cam pe",
+ "▁Camp e",
+ "in ity",
+ "ini ty",
+ "init y",
+ "▁я нва",
+ "() `.",
+ "()` .",
+ "( )`.",
+ "lu ss",
+ "lus s",
+ "l uss",
+ "▁H istoire",
+ "▁His toire",
+ "▁Hist oire",
+ "▁oper ating",
+ "▁opera ting",
+ "Ch annel",
+ "▁accur acy",
+ "▁b os",
+ "▁bo s",
+ "▁ bos",
+ "▁ev ident",
+ "ци ю",
+ "event s",
+ "ev ents",
+ "even ts",
+ "text rm",
+ "or eign",
+ "ore ign",
+ "▁i i",
+ "▁ ii",
+ "hr en",
+ "hre n",
+ "h ren",
+ "lo wer",
+ "low er",
+ "l ower",
+ "▁т ом",
+ "▁то м",
+ "▁ том",
+ "▁Ab out",
+ "▁ About",
+ "▁a j",
+ "▁ aj",
+ "er i",
+ "e ri",
+ "сту пи",
+ "ступ и",
+ "▁di git",
+ "▁dig it",
+ "▁ digit",
+ "▁Sp ain",
+ "▁D aten",
+ "▁Date n",
+ "▁Da ten",
+ "▁Dat en",
+ "▁for me",
+ "▁form e",
+ "▁ш та",
+ "▁ шта",
+ "▁B ach",
+ "▁Ba ch",
+ "▁Bac h",
+ "no number",
+ "non umber",
+ "▁recomm ended",
+ "▁recommend ed",
+ "▁re ads",
+ "▁read s",
+ "his toire",
+ "h istoire",
+ "▁s ang",
+ "▁sa ng",
+ "▁san g",
+ "▁? ?",
+ "▁ ??",
+ "▁с тал",
+ "▁ст ал",
+ "▁ста л",
+ "sc ore",
+ "s core",
+ "fa s",
+ "f as",
+ "▁c ub",
+ "▁cu b",
+ "▁g rew",
+ "▁gr ew",
+ "▁gre w",
+ "▁cent ro",
+ "▁bek annt",
+ "Event s",
+ "BE R",
+ "B ER",
+ "he w",
+ "h ew",
+ "сс а",
+ "с са",
+ "▁major ity",
+ "ît re",
+ "î tre",
+ "en ci",
+ "enc i",
+ "▁Qu ery",
+ "▁Que ry",
+ "▁ Query",
+ "▁któ re",
+ "i ć",
+ "▁complex ity",
+ "▁Fran çois",
+ "const raint",
+ "ур на",
+ "═ ═",
+ "▁iter ate",
+ "le tt",
+ "let t",
+ "l ett",
+ "pe ror",
+ "per or",
+ "▁Neder land",
+ "sh are",
+ "sha re",
+ "▁incl u",
+ "▁inc lu",
+ "än ger",
+ "äng er",
+ "änge r",
+ "▁N ic",
+ "▁Ni c",
+ "ч о",
+ "F ull",
+ "▁ra pport",
+ "▁rapp ort",
+ "▁rap port",
+ "ec lipse",
+ "e clipse",
+ "▁indust ry",
+ "he aders",
+ "head ers",
+ "header s",
+ "▁Р и",
+ "ch sel",
+ "chs el",
+ "▁po lic",
+ "▁pol ic",
+ "sch ied",
+ "% ,",
+ "O D",
+ "▁J ak",
+ "▁Ja k",
+ "({ \\",
+ "( {\\",
+ "al igned",
+ "align ed",
+ "▁frequ ently",
+ "▁frequent ly",
+ "▁su oi",
+ "▁suo i",
+ "▁ess entially",
+ "▁essential ly",
+ "▁R ic",
+ "▁Ri c",
+ "▁re ports",
+ "▁report s",
+ "▁dec imal",
+ "ra r",
+ "r ar",
+ "▁F oo",
+ "▁Fo o",
+ "▁ Foo",
+ "▁K a",
+ "▁D C",
+ "▁ DC",
+ "▁sim pler",
+ "▁simple r",
+ "▁simp ler",
+ "▁simpl er",
+ "Pa ne",
+ "Pan e",
+ "P ane",
+ "? }",
+ "So rt",
+ "S ort",
+ "▁pos it",
+ "cd n",
+ "c dn",
+ "kt ur",
+ "▁aw k",
+ "▁ awk",
+ "зе р",
+ "з ер",
+ "P F",
+ "u ur",
+ "▁R oss",
+ "▁Ro ss",
+ "▁Ros s",
+ "▁m ant",
+ "▁ma nt",
+ "▁man t",
+ "N a",
+ "Con s",
+ "Co ns",
+ "C ons",
+ ")) ))",
+ "))) )",
+ ") )))",
+ "▁techn iques",
+ "▁techni ques",
+ "▁technique s",
+ "im pl",
+ "imp l",
+ "▁dro pped",
+ "▁drop ped",
+ "▁L ista",
+ "▁List a",
+ "▁Li sta",
+ "▁Lis ta",
+ "▁Bas ically",
+ "▁Basic ally",
+ "en tal",
+ "ent al",
+ "enta l",
+ "▁cel ui",
+ "▁str ategy",
+ "▁strateg y",
+ "▁strat egy",
+ "▁W ales",
+ "▁Wal es",
+ "▁Wa les",
+ "na n",
+ "n an",
+ "▁g min",
+ "▁gr öß",
+ "▁eer ste",
+ "▁eerst e",
+ "T im",
+ "nt en",
+ "n ten",
+ "re sp",
+ "res p",
+ "r esp",
+ "▁s table",
+ "▁st able",
+ "▁sta ble",
+ "▁ stable",
+ "no v",
+ "n ov",
+ "ro b",
+ "r ob",
+ "но ј",
+ "▁mar riage",
+ "get String",
+ "Aut hor",
+ "Auth or",
+ "▁G raf",
+ "▁Gr af",
+ "▁Gra f",
+ "▁di agram",
+ "▁diag ram",
+ "▁dia gram",
+ "gi a",
+ "g ia",
+ "Net work",
+ "N etwork",
+ "▁com posed",
+ "▁comp osed",
+ "▁compos ed",
+ "▁compose d",
+ "▁miss ed",
+ "▁mis sed",
+ "▁M eg",
+ "▁Me g",
+ "▁пра во",
+ "▁прав о",
+ "▁hom onymes",
+ "▁Bo oks",
+ "▁Book s",
+ "▁en cou",
+ "▁enc ou",
+ "port e",
+ "por te",
+ "p orte",
+ "▁rot ation",
+ "▁f ir",
+ "▁fi r",
+ "▁ fir",
+ "те льно",
+ "тель но",
+ "▁g un",
+ "▁gu n",
+ "▁ gun",
+ "▁A ff",
+ "▁Af f",
+ "▁ Aff",
+ "но к",
+ "н ок",
+ "▁Fuß ball",
+ "▁St ory",
+ "▁Sto ry",
+ "▁ Story",
+ "▁Ch ap",
+ "▁Cha p",
+ "▁) .",
+ "▁ ).",
+ "▁Se it",
+ "мо н",
+ "м он",
+ "▁t élé",
+ "▁té lé",
+ "▁cop ied",
+ "▁cons istent",
+ "▁consist ent",
+ "▁dr ink",
+ "▁C ham",
+ "▁Ch am",
+ "▁Cha m",
+ "▁mat ters",
+ "▁matter s",
+ "▁render ed",
+ "▁rend ered",
+ "▁rende red",
+ "▁hyp oth",
+ "œ uv",
+ "▁me er",
+ "▁par sing",
+ "▁P RO",
+ "▁PR O",
+ "▁ PRO",
+ "se ries",
+ "ser ies",
+ "serie s",
+ "s eries",
+ "▁z á",
+ "▁ zá",
+ "stra ße",
+ "▁B oot",
+ "▁Bo ot",
+ "▁ Boot",
+ "▁re po",
+ "▁rep o",
+ "▁ repo",
+ "wo r",
+ "w or",
+ "▁St ream",
+ "▁Stre am",
+ "▁ Stream",
+ "▁A N",
+ "▁ AN",
+ "▁п ів",
+ "▁пі в",
+ "▁S M",
+ "▁ SM",
+ "▁A rn",
+ "▁Ar n",
+ "▁ Ž",
+ "▁[ ];",
+ "▁[] ;",
+ "Res ources",
+ "Resource s",
+ "▁el abor",
+ "▁ela bor",
+ "▁E th",
+ "▁Et h",
+ "▁l iste",
+ "▁li ste",
+ "▁list e",
+ "▁rel atively",
+ "▁relative ly",
+ "▁relativ ely",
+ "ch ant",
+ "chan t",
+ "cha nt",
+ "=\" \"",
+ "= \"\"",
+ "▁l ift",
+ "▁li ft",
+ "▁lif t",
+ "C N",
+ "Service s",
+ "Serv ices",
+ "ME NT",
+ "M ENT",
+ "▁и гра",
+ "▁иг ра",
+ "▁ игра",
+ "б ре",
+ "▁J ord",
+ "▁Jo rd",
+ "▁t ec",
+ "▁te c",
+ "ш ка",
+ "▁S up",
+ "▁Su p",
+ "▁infl uen",
+ "▁influ en",
+ "on ds",
+ "ond s",
+ "hand ler",
+ "handle r",
+ "▁b anda",
+ "▁band a",
+ "▁ban da",
+ "▁vert ices",
+ "▁z ap",
+ "▁za p",
+ "▁c ord",
+ "▁cor d",
+ "▁co rd",
+ "▁ cord",
+ "al ter",
+ "alt er",
+ "ze nia",
+ "zen ia",
+ "z enia",
+ "ât eau",
+ "âte au",
+ "▁know ing",
+ "▁Argent ina",
+ "Ar ea",
+ "Are a",
+ "A rea",
+ "ан е",
+ "а не",
+ "f c",
+ "=\" /",
+ "= \"/",
+ "▁M ik",
+ "▁Mi k",
+ "at ă",
+ "ie ux",
+ "ieu x",
+ "▁deutsch en",
+ "▁deutsche n",
+ "▁trad itional",
+ "▁tradition al",
+ "de code",
+ "dec ode",
+ "ve x",
+ "v ex",
+ "▁size of",
+ "▁ sizeof",
+ "▁F un",
+ "▁Fu n",
+ "▁ Fun",
+ "▁par ser",
+ "▁parse r",
+ "▁ parser",
+ "▁Flor ida",
+ "▁build ings",
+ "▁building s",
+ "▁Man uel",
+ "ri le",
+ "ril e",
+ "r ile",
+ "▁log ged",
+ "▁strong ly",
+ "▁re vol",
+ "▁rev ol",
+ "не е",
+ "xi co",
+ "xic o",
+ "x ico",
+ "▁F air",
+ "▁Fa ir",
+ "ca rt",
+ "car t",
+ "c art",
+ "▁W ort",
+ "▁Wo rt",
+ "▁Wor t",
+ "▁Jes us",
+ "em es",
+ "eme s",
+ "e mes",
+ "sch rift",
+ "Input Stream",
+ "wa d",
+ "w ad",
+ "▁gran des",
+ "▁grand es",
+ "▁grande s",
+ "▁númer o",
+ "▁O tto",
+ "▁Ot to",
+ "▁Ott o",
+ "ien tes",
+ "ient es",
+ "iente s",
+ "i entes",
+ "▁fam ous",
+ "ol ogne",
+ "olog ne",
+ "J e",
+ "ни ш",
+ "▁Guer ra",
+ "bar a",
+ "ba ra",
+ "b ara",
+ "▁c ad",
+ "▁ca d",
+ "el ve",
+ "br ace",
+ "bra ce",
+ "b race",
+ "▁J r",
+ "st able",
+ "sta ble",
+ "stab le",
+ "s table",
+ "EC T",
+ "E CT",
+ "lem ma",
+ "med iate",
+ "medi ate",
+ "media te",
+ "▁v in",
+ "▁vi n",
+ "▁ vin",
+ "▁mon ument",
+ "▁c v",
+ "▁ cv",
+ "▁w inter",
+ "▁win ter",
+ "▁trans formation",
+ "▁transform ation",
+ "▁N ick",
+ "▁Nic k",
+ "▁Ni ck",
+ "str onom",
+ "▁f rag",
+ "▁fr ag",
+ "▁fra g",
+ "▁in tel",
+ "▁int el",
+ "▁inte l",
+ "ra ction",
+ "rac tion",
+ "ract ion",
+ "r action",
+ "▁consider ing",
+ "▁consid ering",
+ "▁F le",
+ "▁Fl e",
+ "▁ ло",
+ "▁A près",
+ "▁Ap rès",
+ "▁A M",
+ "▁ AM",
+ "▁H um",
+ "▁Hu m",
+ "▁m undo",
+ "NE R",
+ "N ER",
+ "▁Be low",
+ "▁Bel ow",
+ "▁го рода",
+ "▁горо да",
+ "▁город а",
+ "ar ters",
+ "art ers",
+ "arter s",
+ "arte rs",
+ "-- \"",
+ "▁П е",
+ "▁ Пе",
+ "î t",
+ "▁t xt",
+ "▁tx t",
+ "▁ txt",
+ "an gers",
+ "ang ers",
+ "ange rs",
+ "anger s",
+ "▁t hy",
+ "▁th y",
+ "▁ thy",
+ "CL A",
+ "C LA",
+ "ib les",
+ "ible s",
+ "i bles",
+ "▁request ed",
+ "▁requ ested",
+ "▁Alex and",
+ "▁fact ors",
+ "▁fa ctors",
+ "▁factor s",
+ "▁produ ces",
+ "▁produce s",
+ "ning en",
+ "n ingen",
+ "▁со стоя",
+ "▁optim ization",
+ "ch od",
+ "cho d",
+ "c hod",
+ "> `",
+ "▁Wik ip",
+ "nost i",
+ "nos ti",
+ "n osti",
+ "▁compet ition",
+ "▁H ann",
+ "▁Ha nn",
+ "▁Han n",
+ "▁z ona",
+ "▁zo na",
+ "d c",
+ "de sign",
+ "des ign",
+ "▁Z u",
+ "▁e spec",
+ "▁es pec",
+ "▁espe c",
+ "▁esp ec",
+ "equ ality",
+ "equal ity",
+ "e quality",
+ "▁A bb",
+ "▁Ab b",
+ "▁develop er",
+ "▁ developer",
+ "▁\" ^",
+ "▁Sh ort",
+ "▁Sho rt",
+ "▁ Short",
+ "▁pl ans",
+ "▁pla ns",
+ "▁plan s",
+ "▁v it",
+ "▁vi t",
+ "iz able",
+ "iza ble",
+ "burg h",
+ "bur gh",
+ "ag em",
+ "age m",
+ "a gem",
+ "▁Pr int",
+ "▁Pri nt",
+ "▁Prin t",
+ "▁ Print",
+ "í v",
+ "▁su itable",
+ "▁suit able",
+ "pi cker",
+ "pic ker",
+ "pick er",
+ "p icker",
+ "Pro file",
+ "an dy",
+ "and y",
+ "▁qu ot",
+ "▁ quot",
+ "▁Dur ante",
+ "▁Durant e",
+ "▁Fran cia",
+ "▁Fr ancia",
+ "▁Franc ia",
+ "▁t art",
+ "▁tar t",
+ "▁ta rt",
+ "▁V enez",
+ "▁Ve nez",
+ "▁Ven ez",
+ "▁dis patch",
+ "▁disp atch",
+ "▁ dispatch",
+ "▁observ ations",
+ "▁observation s",
+ "▁ ż",
+ "In valid",
+ "▁occ urr",
+ "▁occur r",
+ "▁oc curr",
+ "т ки",
+ "Mem ento",
+ "M emento",
+ "▁S yd",
+ "▁Sy d",
+ "▁tiem po",
+ "▁st aff",
+ "▁sta ff",
+ "▁se ctions",
+ "▁section s",
+ "▁sect ions",
+ "▁ sections",
+ "▁s sh",
+ "▁ss h",
+ "▁ ssh",
+ "▁N GC",
+ "ë l",
+ "▁er re",
+ "▁err e",
+ "▁div ided",
+ "▁divide d",
+ "▁divid ed",
+ "▁With out",
+ "▁du rant",
+ "▁dur ant",
+ "▁j aar",
+ "▁ja ar",
+ "▁ −",
+ "▁sold iers",
+ "▁soldier s",
+ "ун к",
+ "la pse",
+ "lap se",
+ "laps e",
+ "▁Val ley",
+ "▁Vall ey",
+ "▁Valle y",
+ "▁( :",
+ "▁ (:",
+ "re ra",
+ "rer a",
+ "r era",
+ "▁d ével",
+ "▁dé vel",
+ "▁p éri",
+ "▁pé ri",
+ "▁calcul ation",
+ "▁calc ulation",
+ "▁ke ine",
+ "▁kein e",
+ "er tain",
+ "ert ain",
+ "erta in",
+ "▁те ле",
+ "ру д",
+ "▁c ul",
+ "▁cu l",
+ "▁ cul",
+ "▁cl oth",
+ "▁clo th",
+ "; }",
+ "▁pr zed",
+ "▁prze d",
+ "▁prz ed",
+ "Mon th",
+ "Mo nth",
+ "Mont h",
+ "Pi cker",
+ "P icker",
+ "▁S V",
+ "▁ SV",
+ "ar ian",
+ "ari an",
+ "aria n",
+ "a rian",
+ "▁Re view",
+ "▁Rev iew",
+ "▁h ang",
+ "▁ha ng",
+ "▁han g",
+ "▁ hang",
+ "▁о кт",
+ "▁ок т",
+ "▁F ront",
+ "▁Fr ont",
+ "▁Fro nt",
+ "▁ Front",
+ "ot lin",
+ "▁trans lation",
+ "▁transl ation",
+ "▁m odo",
+ "▁mod o",
+ "▁mo do",
+ "▁stat istics",
+ "▁statist ics",
+ "▁N ue",
+ "▁Nu e",
+ "▁Ни кола",
+ "NU M",
+ "N UM",
+ "▁s hips",
+ "▁sh ips",
+ "▁ship s",
+ "▁ ships",
+ "▁Re port",
+ "▁Rep ort",
+ "▁ Report",
+ "{ [",
+ "E ffect",
+ "ie ri",
+ "ier i",
+ "i eri",
+ "▁par ties",
+ "▁part ies",
+ "▁partie s",
+ "▁parti es",
+ "pl a",
+ "p la",
+ "r w",
+ "▁Work s",
+ "▁Wor ks",
+ "▁i ron",
+ "▁ir on",
+ "▁att ract",
+ "▁attr act",
+ "▁attra ct",
+ "▁c ort",
+ "▁cor t",
+ "▁co rt",
+ "n á",
+ "▁Ste ve",
+ "▁b ene",
+ "▁be ne",
+ "▁ben e",
+ "то н",
+ "т он",
+ "ícul a",
+ "Tw o",
+ "T wo",
+ "▁г лав",
+ "▁гла в",
+ "▁V ideo",
+ "▁ Video",
+ "▁power ful",
+ "au ch",
+ "auc h",
+ "a uch",
+ "ma nde",
+ "man de",
+ "m ande",
+ "äch st",
+ "ächs t",
+ "La t",
+ "L at",
+ "▁z na",
+ "▁zn a",
+ "▁ zna",
+ "▁fig ures",
+ "▁figure s",
+ "▁figur es",
+ "▁a lias",
+ "▁al ias",
+ "▁ali as",
+ "▁ alias",
+ "ne x",
+ "n ex",
+ "▁c ategories",
+ "▁categ ories",
+ "▁categor ies",
+ "▁categorie s",
+ "▁ categories",
+ "cal led",
+ "call ed",
+ "c alled",
+ "▁Sim ilar",
+ "▁g irls",
+ "▁girl s",
+ "▁gir ls",
+ "pe z",
+ "p ez",
+ "▁j oint",
+ "▁jo int",
+ "▁join t",
+ "▁ joint",
+ "ро го",
+ "р ого",
+ "ik en",
+ "ike n",
+ "i ken",
+ "чи на",
+ "чин а",
+ "an cia",
+ "anc ia",
+ "anci a",
+ "▁t ijd",
+ "▁ti jd",
+ "▁R ose",
+ "▁Ro se",
+ "▁Ros e",
+ "▁alg orithms",
+ "▁algorithm s",
+ "▁print ing",
+ "▁prin ting",
+ "ne a",
+ "n ea",
+ "▁exec uting",
+ "▁execut ing",
+ "▁l ambda",
+ "▁ lambda",
+ "▁reg ional",
+ "▁region al",
+ "▁Co pa",
+ "▁Cop a",
+ "F oo",
+ "ph ys",
+ "phy s",
+ "z m",
+ "▁L aur",
+ "▁La ur",
+ "▁Lau r",
+ "▁candid ate",
+ "▁J a",
+ "zy m",
+ "z ym",
+ "Ex ample",
+ "▁s piel",
+ "▁sp iel",
+ "▁ spiel",
+ "▁д ей",
+ "▁де й",
+ "▁ дей",
+ "ne hmen",
+ "neh men",
+ "nehm en",
+ "ke iten",
+ "keit en",
+ "▁с ент",
+ "int ent",
+ "inte nt",
+ ". (",
+ "▁пер вы",
+ "pr om",
+ "pro m",
+ "p rom",
+ "▁n at",
+ "▁na t",
+ "▁ nat",
+ "▁im agine",
+ "▁imag ine",
+ "call back",
+ "com ponents",
+ "component s",
+ "with out",
+ "▁a quest",
+ "▁aqu est",
+ "Su pport",
+ "Supp ort",
+ "▁respons ible",
+ "▁j ego",
+ "▁je go",
+ "l j",
+ "wi ll",
+ "w ill",
+ "le an",
+ "lea n",
+ "el and",
+ "ela nd",
+ "e land",
+ "olog ía",
+ "m c",
+ "Pro xy",
+ "▁o cup",
+ "▁oc up",
+ "▁на ходи",
+ "▁r ub",
+ "▁ru b",
+ "ні в",
+ "н ів",
+ "▁F all",
+ "▁Fa ll",
+ "▁Fal l",
+ "am os",
+ "amo s",
+ "a mos",
+ "▁E p",
+ "en tre",
+ "ent re",
+ "entr e",
+ "fa il",
+ "f ail",
+ "W orld",
+ "▁Ed itor",
+ "▁Edit or",
+ "▁ Editor",
+ "▁ex pos",
+ "▁exp os",
+ "▁f inds",
+ "▁find s",
+ "▁fin ds",
+ "▁C ulture",
+ "▁Cult ure",
+ "▁ Culture",
+ "LE ASE",
+ "▁m ovie",
+ "▁mov ie",
+ "▁mo vie",
+ "▁ movie",
+ "< =",
+ "omet ric",
+ "o metric",
+ "el ing",
+ "eli ng",
+ "elin g",
+ "e ling",
+ "numer able",
+ "ou rd",
+ "our d",
+ "o urd",
+ "▁S ea",
+ "▁Se a",
+ "▁b ild",
+ "▁bi ld",
+ "▁bil d",
+ "▁ bild",
+ "▁о ста",
+ "▁ос та",
+ "▁ост а",
+ "bl o",
+ "b lo",
+ "▁l ose",
+ "▁lo se",
+ "▁los e",
+ "▁ lose",
+ "at eurs",
+ "ate urs",
+ "ateur s",
+ "ou red",
+ "our ed",
+ "oure d",
+ "o ured",
+ "▁B att",
+ "▁Ba tt",
+ "▁Bat t",
+ "() ;\r",
+ "(); \r",
+ "( );\r",
+ "▁p oz",
+ "▁po z",
+ "pos ts",
+ "post s",
+ "pe nd",
+ "pen d",
+ "p end",
+ "cer tain",
+ "cert ain",
+ "c ertain",
+ "ни ком",
+ "ник ом",
+ "J ust",
+ "web kit",
+ "dem ás",
+ "~~ ~~",
+ "▁indic ates",
+ "▁indicate s",
+ "▁p ark",
+ "▁par k",
+ "▁ park",
+ "ri que",
+ "r ique",
+ "vo d",
+ "v od",
+ "▁Ch amp",
+ "▁Cham p",
+ "▁Cha mp",
+ "ft ware",
+ "OP T",
+ "O PT",
+ "dj ango",
+ "d jango",
+ "re lease",
+ "▁ È",
+ "S R",
+ "▁polit ician",
+ "▁r oi",
+ "▁ro i",
+ "at uren",
+ "atur en",
+ "ature n",
+ "atu ren",
+ "▁Deutsch e",
+ "ta gon",
+ "tag on",
+ "t agon",
+ "▁M ov",
+ "▁Mo v",
+ "ob ierno",
+ "obi erno",
+ "▁da ß",
+ "ut her",
+ "uth er",
+ "u ther",
+ "in di",
+ "ind i",
+ "▁Wik ipedia",
+ "▁Wikip edia",
+ "▁Wikiped ia",
+ "▁a nos",
+ "▁an os",
+ "▁ano s",
+ "▁ anos",
+ "▁ob serve",
+ "▁obser ve",
+ "▁observ e",
+ "▁obs erve",
+ "el ly",
+ "ell y",
+ "▁rail way",
+ "at on",
+ "ato n",
+ "a ton",
+ "▁e num",
+ "▁en um",
+ "▁ enum",
+ "hu s",
+ "h us",
+ "▁in hab",
+ "P si",
+ "oir e",
+ "oi re",
+ "o ire",
+ "▁Х о",
+ "▁S pace",
+ "▁Sp ace",
+ "▁ Space",
+ "▁Ар хи",
+ "▁an terior",
+ "▁ante rior",
+ "▁ Ł",
+ "is ons",
+ "ison s",
+ "iso ns",
+ "I l",
+ "▁am éric",
+ "la ps",
+ "lap s",
+ "l aps",
+ "▁B BC",
+ "▁BB C",
+ "QUE ST",
+ "Con stra",
+ "Const ra",
+ "Cons tra",
+ "mon t",
+ "mo nt",
+ "m ont",
+ "ä ft",
+ "▁ä ven",
+ "ub ern",
+ "ube rn",
+ "uber n",
+ "u bern",
+ "< !--",
+ "▁c oding",
+ "▁co ding",
+ "▁cod ing",
+ "the ory",
+ "at hed",
+ "ath ed",
+ "▁Ar be",
+ "▁ш и",
+ "▁ ши",
+ "for Each",
+ "om orphism",
+ "omorph ism",
+ "det ails",
+ "detail s",
+ "ach sen",
+ "in tegr",
+ "int egr",
+ "inte gr",
+ "V or",
+ "Un known",
+ "ace ae",
+ "a ceae",
+ "in ue",
+ "inu e",
+ "es ome",
+ "eso me",
+ "e some",
+ "▁F ir",
+ "ch ain",
+ "cha in",
+ "▁extrem ely",
+ "▁extreme ly",
+ "mult icol",
+ "multi col",
+ "▁Sw ift",
+ "▁address es",
+ "▁addr esses",
+ "hs pace",
+ "h space",
+ "▁Ro ger",
+ "▁Rog er",
+ "▁d essen",
+ "▁des sen",
+ "▁dess en",
+ "▁con sequ",
+ "▁cons equ",
+ "▁conse qu",
+ "ual mente",
+ "▁Pre mier",
+ "▁Prem ier",
+ "▁Re cord",
+ "▁Rec ord",
+ "▁ Record",
+ "▁B ron",
+ "▁Br on",
+ "▁Bro n",
+ "ki r",
+ "k ir",
+ "se x",
+ "s ex",
+ "in tern",
+ "int ern",
+ "inter n",
+ "inte rn",
+ "▁benef it",
+ "▁bene fit",
+ "um en",
+ "ume n",
+ "u men",
+ "▁be coming",
+ "▁bec oming",
+ "▁becom ing",
+ "▁l ig",
+ "▁li g",
+ "▁ lig",
+ "▁pop ula",
+ "▁popul a",
+ "os c",
+ "o sc",
+ "▁c iv",
+ "▁ci v",
+ "▁great est",
+ "▁pro ces",
+ "▁proc es",
+ "] *",
+ "▁ме сто",
+ "▁мест о",
+ "▁' $",
+ "▁ '$",
+ "he ll",
+ "hel l",
+ "h ell",
+ "(\" \\",
+ "( \"\\",
+ "▁n ine",
+ "▁ni ne",
+ "▁nin e",
+ "▁F ac",
+ "▁Fa c",
+ "ul pt",
+ "ulp t",
+ "jo urs",
+ "jou rs",
+ "j ours",
+ "▁C opy",
+ "▁Co py",
+ "▁Cop y",
+ "▁ Copy",
+ "▁activ ities",
+ "▁Dem ocr",
+ "▁Demo cr",
+ "E s",
+ "Su ccess",
+ "▁E sta",
+ "▁Est a",
+ "▁Es ta",
+ "it ul",
+ "itu l",
+ "is ti",
+ "ist i",
+ "▁B ed",
+ "▁Be d",
+ "ja s",
+ "j as",
+ "▁т ем",
+ "▁те м",
+ "▁ тем",
+ "▁H ung",
+ "▁Hu ng",
+ "▁Hun g",
+ "G ame",
+ "▁he av",
+ "onn ées",
+ "▁branch es",
+ "▁bran ches",
+ "bo rg",
+ "bor g",
+ "b org",
+ "▁v l",
+ "▁ vl",
+ "▁slow ly",
+ "F a",
+ "Go ogle",
+ "em i",
+ "e mi",
+ "▁circumst ances",
+ "▁' %",
+ "▁U nd",
+ "▁Un d",
+ "▁ Und",
+ "▁Vict oria",
+ "▁Victor ia",
+ "▁T yp",
+ "▁Ty p",
+ "▁ Typ",
+ "rupt ed",
+ "rup ted",
+ "▁rel ativ",
+ "▁s lo",
+ "▁sl o",
+ "▁p adre",
+ "▁pad re",
+ "▁d aily",
+ "▁da ily",
+ "▁dai ly",
+ "▁or th",
+ "▁ort h",
+ "▁ orth",
+ "чни й",
+ "ч ний",
+ "▁fran zös",
+ "▁t eil",
+ "▁te il",
+ "▁ teil",
+ "▁Se curity",
+ "▁Sec urity",
+ "▁ Security",
+ "or don",
+ "ord on",
+ "ordo n",
+ "▁s weet",
+ "▁swe et",
+ "SI ZE",
+ "▁C el",
+ "▁Ce l",
+ "èt res",
+ "è tres",
+ "om mes",
+ "omm es",
+ "▁с і",
+ "▁ сі",
+ "▁effort s",
+ "ą z",
+ "▁oh ne",
+ "▁South ern",
+ "▁Sou thern",
+ "▁approxim ately",
+ "▁approximate ly",
+ "це н",
+ "ц ен",
+ "(' #",
+ "▁s aving",
+ "▁sa ving",
+ "▁sav ing",
+ "nb sp",
+ "▁trans late",
+ "▁transl ate",
+ "▁ translate",
+ "▁Î n",
+ "mem ber",
+ "m ember",
+ "▁l aws",
+ "▁la ws",
+ "▁law s",
+ "▁ж ен",
+ "▁же н",
+ "▁ жен",
+ "▁си сте",
+ "t c",
+ "> \\",
+ "el te",
+ "elt e",
+ "▁e hem",
+ "▁con trad",
+ "▁cont rad",
+ "▁contr ad",
+ "▁contra d",
+ "▁ру с",
+ "▁р ус",
+ "▁ рус",
+ "ь я",
+ "▁M iddle",
+ "▁ Middle",
+ "qu ip",
+ "qui p",
+ "▁c hez",
+ "▁ch ez",
+ "▁che z",
+ "▁ chez",
+ "Field s",
+ "▁per mit",
+ "▁perm it",
+ "ik el",
+ "ike l",
+ "i kel",
+ "▁w ir",
+ "▁t rial",
+ "▁tr ial",
+ "▁tri al",
+ "▁ver schied",
+ "▁versch ied",
+ "▁ф ев",
+ "▁фе в",
+ "▁m ale",
+ "▁ma le",
+ "▁mal e",
+ "▁ male",
+ "▁я зы",
+ "▁ny el",
+ "ak ter",
+ "akt er",
+ "akte r",
+ "a kter",
+ "▁den omin",
+ "cept or",
+ "cep tor",
+ "▁W at",
+ "▁Wa t",
+ "▁f ino",
+ "▁fin o",
+ "▁fi no",
+ "▁XV III",
+ "▁XVI II",
+ "▁XVII I",
+ "ry ption",
+ "rypt ion",
+ "de sc",
+ "des c",
+ "d esc",
+ "ap a",
+ "a pa",
+ "ле на",
+ "лен а",
+ "л ена",
+ "▁k ol",
+ "▁ko l",
+ "▁ kol",
+ "▁ Є",
+ "▁dep endent",
+ "▁depend ent",
+ "▁ dependent",
+ "▁C ra",
+ "▁Cr a",
+ "▁st orm",
+ "▁stor m",
+ "▁sto rm",
+ "▁Г ер",
+ "▁Ге р",
+ "▁p ipe",
+ "▁pi pe",
+ "▁pip e",
+ "▁ pipe",
+ "▁att ended",
+ "▁attend ed",
+ "▁v ita",
+ "▁vi ta",
+ "▁vit a",
+ "uz ione",
+ "u zione",
+ "cz as",
+ "cza s",
+ "c zas",
+ "on da",
+ "ond a",
+ "▁b old",
+ "▁bo ld",
+ "▁bol d",
+ "▁ bold",
+ "Column s",
+ "ic ió",
+ "ici ó",
+ "i ció",
+ "▁c zę",
+ "▁cz ę",
+ "▁из вест",
+ "▁Cl oud",
+ "▁Clo ud",
+ "▁ Cloud",
+ "▁w arm",
+ "▁war m",
+ "▁wa rm",
+ "▁с ы",
+ "▁ сы",
+ "▁с те",
+ "▁ст е",
+ "▁ сте",
+ "▁produ cer",
+ "▁produce r",
+ "▁Lud wig",
+ "▁Nor thern",
+ "▁North ern",
+ "ł ą",
+ "NS String",
+ "▁H ad",
+ "▁Ha d",
+ "▁И ван",
+ "▁E g",
+ "▁I mp",
+ "▁Im p",
+ "▁ Imp",
+ "ш і",
+ "▁A uch",
+ "▁Au ch",
+ "то к",
+ "т ок",
+ "▁H it",
+ "▁Hi t",
+ "▁qu ien",
+ "▁qui en",
+ "▁de partment",
+ "▁depart ment",
+ "▁erh ielt",
+ "▁u i",
+ "▁ ui",
+ "▁S pr",
+ "▁Sp r",
+ "се р",
+ "с ер",
+ "ou rt",
+ "our t",
+ "o urt",
+ "▁Ste phen",
+ "▁Step hen",
+ "▁Steph en",
+ "te am",
+ "▁z ip",
+ "▁ zip",
+ "▁B ang",
+ "▁Ba ng",
+ "▁Ban g",
+ "▁grow th",
+ "▁j am",
+ "▁ja m",
+ "▁K ais",
+ "▁Ka is",
+ "b matrix",
+ "▁As ia",
+ "▁rég ion",
+ "= /",
+ "▁Pac ific",
+ "▁author ity",
+ "▁# [",
+ "та ми",
+ "там и",
+ "▁every one",
+ "▁att end",
+ "▁atte nd",
+ "▁ attend",
+ "▁tim estamp",
+ "▁ timestamp",
+ "▁t ries",
+ "▁tr ies",
+ "▁tri es",
+ "▁f f",
+ "▁ ff",
+ "ше й",
+ "ш ей",
+ "▁develop ing",
+ "ol t",
+ "o lt",
+ "up s",
+ "u ps",
+ "▁moment o",
+ "▁mom ento",
+ "▁S ain",
+ "▁Sa in",
+ "Te rm",
+ "T erm",
+ "▁c elle",
+ "▁ce lle",
+ "▁cell e",
+ "▁cel le",
+ "G R",
+ "Mo use",
+ "M ouse",
+ "▁челов ек",
+ "▁челове к",
+ "▁Col lection",
+ "▁Coll ection",
+ "▁Collect ion",
+ "▁ Collection",
+ "ât re",
+ "â tre",
+ "▁W rite",
+ "▁Writ e",
+ "▁ Write",
+ "▁P om",
+ "▁Po m",
+ "[ -",
+ "Ca m",
+ "C am",
+ "▁loc ations",
+ "▁location s",
+ "▁J son",
+ "▁ Json",
+ "el led",
+ "ell ed",
+ "elle d",
+ "select or",
+ "sel ector",
+ "re peat",
+ "ct ors",
+ "ctor s",
+ "ot te",
+ "ott e",
+ "o tte",
+ "ви зи",
+ "änd e",
+ "än de",
+ "ä nde",
+ "▁ach ieved",
+ "▁achieve d",
+ "▁achiev ed",
+ "▁main ly",
+ "____ ____",
+ "! )",
+ "▁явля ется",
+ "▁c ities",
+ "▁ci ties",
+ "▁cit ies",
+ "sing le",
+ "sin gle",
+ "г ре",
+ "▁P ak",
+ "▁Pa k",
+ "▁allow ing",
+ "▁allo wing",
+ "fer red",
+ "▁а пре",
+ "хо дя",
+ "ход я",
+ "▁brow sers",
+ "▁browser s",
+ "▁es crit",
+ "▁esc rit",
+ "▁escri t",
+ "▁mount ain",
+ "▁network s",
+ "▁net works",
+ "ki nd",
+ "kin d",
+ "k ind",
+ "li ver",
+ "live r",
+ "liv er",
+ "l iver",
+ "▁cl osing",
+ "▁clos ing",
+ "▁clo sing",
+ "▁sk ip",
+ "▁ski p",
+ "▁ skip",
+ "ú t",
+ "▁d uration",
+ "▁dur ation",
+ "▁ duration",
+ "ét ait",
+ "éta it",
+ "é tait",
+ "▁s cr",
+ "▁sc r",
+ "▁ scr",
+ "B B",
+ "ór ia",
+ "ó ria",
+ "▁K ultur",
+ "▁Kult ur",
+ "▁output s",
+ "multi column",
+ "multicol umn",
+ "▁bel ongs",
+ "▁belong s",
+ "fe ature",
+ "uc ky",
+ "uck y",
+ "▁j uli",
+ "▁ju li",
+ "▁jul i",
+ "▁рай она",
+ "▁райо на",
+ "▁район а",
+ "з во",
+ "fact ory",
+ "factor y",
+ "f actory",
+ "Fun c",
+ "F unc",
+ "▁ut ter",
+ "▁ utter",
+ "▁TO DO",
+ "▁o bt",
+ "▁ob t",
+ "ateg ories",
+ "ategor ies",
+ "▁com bine",
+ "▁comb ine",
+ "▁combin e",
+ "▁W all",
+ "▁Wal l",
+ "▁Wa ll",
+ "▁under lying",
+ "ar ono",
+ "aron o",
+ "aro no",
+ "▁P rote",
+ "▁Pro te",
+ "▁Pr ote",
+ "c ów",
+ "st an",
+ "sta n",
+ "s tan",
+ "▁G ew",
+ "▁Ge w",
+ "▁opt imal",
+ "▁optim al",
+ "▁Archiv link",
+ "▁S cript",
+ "▁ Script",
+ "▁destroy ed",
+ "х е",
+ "▁Fire fox",
+ "▁s ole",
+ "▁so le",
+ "▁sol e",
+ "▁ sole",
+ "La yer",
+ "L ayer",
+ "т ку",
+ "▁st ores",
+ "▁stor es",
+ "▁store s",
+ "▁sto res",
+ "▁dis plays",
+ "▁display s",
+ "is hing",
+ "ish ing",
+ "ishi ng",
+ "▁о ст",
+ "▁ос т",
+ "▁inst ant",
+ "▁el ő",
+ "▁habit antes",
+ "▁Ein wo",
+ "▁a li",
+ "▁al i",
+ "▁ ali",
+ "▁ER ROR",
+ "▁ERR OR",
+ "▁ ERROR",
+ "▁a head",
+ "▁ah ead",
+ "▁go als",
+ "▁goal s",
+ "▁m ár",
+ "▁má r",
+ "▁s ą",
+ "▁m art",
+ "▁ma rt",
+ "▁mar t",
+ "▁ mart",
+ "мини стра",
+ "F r",
+ "▁V illa",
+ "▁Vill a",
+ "▁Vi lla",
+ "▁Vil la",
+ "▁M arc",
+ "▁Mar c",
+ "▁Ma rc",
+ "ro py",
+ "rop y",
+ "r opy",
+ "ag ram",
+ "agr am",
+ "a gram",
+ "ha pe",
+ "h ape",
+ "ме й",
+ "м ей",
+ "▁A L",
+ "▁ AL",
+ "▁conne xes",
+ "▁En tre",
+ "▁Ent re",
+ "St ep",
+ "Ste p",
+ "лі в",
+ "л ів",
+ "▁De ath",
+ "▁r ise",
+ "▁ris e",
+ "▁ri se",
+ "▁f os",
+ "▁fo s",
+ "▁l ev",
+ "▁le v",
+ "▁ lev",
+ "ga be",
+ "g abe",
+ "▁b roke",
+ "▁br oke",
+ "▁bro ke",
+ "product s",
+ "▁m edi",
+ "▁me di",
+ "▁med i",
+ "▁ medi",
+ "▁dis pon",
+ "▁disp on",
+ "Pack age",
+ "P ackage",
+ "Image View",
+ "▁N ag",
+ "▁Na g",
+ "uj ą",
+ "u ją",
+ "W ord",
+ "▁k ole",
+ "▁ko le",
+ "▁kol e",
+ "ße r",
+ "ß er",
+ ")` .",
+ ") `.",
+ "▁r ol",
+ "▁ro l",
+ "▁ rol",
+ "▁ í",
+ "те й",
+ "т ей",
+ "Pro gress",
+ "be an",
+ "▁s empre",
+ "▁sem pre",
+ "State ment",
+ "Stat ement",
+ "UP DATE",
+ "▁mond iale",
+ "▁w rapper",
+ "▁wr apper",
+ "▁wra pper",
+ "▁wrap per",
+ "▁ wrapper",
+ "▁C hart",
+ "▁Ch art",
+ "▁Char t",
+ "▁Cha rt",
+ "▁ Chart",
+ "▁on Click",
+ "че ння",
+ "чен ня",
+ "LO G",
+ "some thing",
+ "som ething",
+ "s omething",
+ "▁IN SERT",
+ "▁ INSERT",
+ "ще ния",
+ "ue t",
+ "u et",
+ "wer p",
+ "we rp",
+ "ro und",
+ "rou nd",
+ "r ound",
+ "ic hen",
+ "ich en",
+ "iche n",
+ "i chen",
+ "▁X VI",
+ "▁XV I",
+ "з ни",
+ "▁ave va",
+ "▁St ore",
+ "▁Sto re",
+ "▁ Store",
+ "▁x s",
+ "▁ xs",
+ "ra cht",
+ "rac ht",
+ "rach t",
+ "r acht",
+ "sc ar",
+ "s car",
+ "▁op era",
+ "▁oper a",
+ "▁ opera",
+ "▁deg rees",
+ "▁degree s",
+ "▁cit iz",
+ "äs ident",
+ "▁class ical",
+ "▁classic al",
+ "▁Jer sey",
+ "▁er sch",
+ "▁ers ch",
+ "▁ ersch",
+ "▁treat ment",
+ "▁насе ље",
+ "н ня",
+ "▁bo ost",
+ "▁ boost",
+ "am ount",
+ "amo unt",
+ "a mount",
+ "▁со зда",
+ "ér ieur",
+ "érie ur",
+ "éri eur",
+ "▁t elling",
+ "▁tell ing",
+ "▁tel ling",
+ "Ha s",
+ "H as",
+ "▁in iti",
+ "▁init i",
+ "▁П и",
+ "ev al",
+ "e val",
+ "▁M atch",
+ "▁Mat ch",
+ "▁ Match",
+ "▁cor re",
+ "▁corr e",
+ "Point er",
+ "Po inter",
+ "▁pass es",
+ "▁passe s",
+ "comp any",
+ "▁а н",
+ "▁ ан",
+ "ach es",
+ "ac hes",
+ "ache s",
+ "a ches",
+ "▁sig lo",
+ "не м",
+ "н ем",
+ "▁ex change",
+ "▁ exchange",
+ "ci to",
+ "cit o",
+ "c ito",
+ "▁B ab",
+ "▁Ba b",
+ "Do c",
+ "D oc",
+ "ze ś",
+ "▁на род",
+ "▁ народ",
+ "▁conf lict",
+ "▁conflic t",
+ "▁confl ict",
+ "▁nov ember",
+ "ea u",
+ "e au",
+ "ö v",
+ "▁H ub",
+ "▁Hu b",
+ "▁ Hub",
+ "▁p oco",
+ "▁po co",
+ "▁poc o",
+ "en sa",
+ "ens a",
+ "sch ließ",
+ "lass e",
+ "las se",
+ "l asse",
+ "data s",
+ "dat as",
+ "▁с ти",
+ "▁ст и",
+ "▁ сти",
+ "un ivers",
+ "uni vers",
+ "ek s",
+ "e ks",
+ "▁C ho",
+ "▁Ch o",
+ "▁ Cho",
+ "▁c ô",
+ "▁( .",
+ "▁ (.",
+ "ew nę",
+ "▁Ch ief",
+ "▁Chi ef",
+ "▁ch ef",
+ "▁che f",
+ "▁у прав",
+ "ul i",
+ "u li",
+ "▁' ''",
+ "▁'' '",
+ "▁ '''",
+ "nap shot",
+ "▁re lac",
+ "▁rel ac",
+ "▁rela c",
+ "ég e",
+ "é ge",
+ "w t",
+ "we nd",
+ "wen d",
+ "w end",
+ "os ing",
+ "osi ng",
+ "o sing",
+ "▁ha cer",
+ "▁hace r",
+ "▁ф ран",
+ "au tres",
+ "aut res",
+ "autre s",
+ "▁f ils",
+ "▁fil s",
+ "▁fi ls",
+ "er ed",
+ "ere d",
+ "e red",
+ "▁По силання",
+ "▁th erm",
+ "▁the rm",
+ "▁ther m",
+ "ер жа",
+ "su ch",
+ "s uch",
+ "▁i hren",
+ "▁ih ren",
+ "▁ihr en",
+ "▁ihre n",
+ "▁en contr",
+ "▁l ots",
+ "▁lo ts",
+ "▁lot s",
+ "lo go",
+ "log o",
+ "l ogo",
+ "▁W i",
+ "/ (",
+ "ш ње",
+ "DA TA",
+ "DAT A",
+ "D ATA",
+ "▁P layer",
+ "▁Pl ayer",
+ "▁Play er",
+ "▁Pla yer",
+ "▁ Player",
+ "▁Leip zig",
+ "▁rel atives",
+ "▁relative s",
+ "▁relativ es",
+ "ре в",
+ "р ев",
+ "▁new sp",
+ "▁news p",
+ "? ,",
+ "▁St utt",
+ "▁Stu tt",
+ "▁d ual",
+ "▁du al",
+ "▁compan ies",
+ "▁z am",
+ "▁za m",
+ "put ation",
+ "▁in equality",
+ "▁t rem",
+ "▁tr em",
+ "▁tre m",
+ "hi ps",
+ "hip s",
+ "h ips",
+ "an ch",
+ "anc h",
+ "▁ Ż",
+ "бур г",
+ "▁cop ies",
+ "da sh",
+ "das h",
+ "d ash",
+ "во р",
+ "в ор",
+ "spiel er",
+ "s pieler",
+ "▁Re volution",
+ "▁Revol ution",
+ "es ty",
+ "est y",
+ "e sty",
+ "▁j unto",
+ "▁jun to",
+ "▁junt o",
+ "▁Ind eed",
+ "ok al",
+ "oka l",
+ "o kal",
+ "ctr ine",
+ "▁F ord",
+ "▁For d",
+ "▁Fo rd",
+ "▁C REATE",
+ "▁ CREATE",
+ "▁w alls",
+ "▁wall s",
+ "▁wal ls",
+ "▁a ute",
+ "▁au te",
+ "▁aut e",
+ "S U",
+ "wh y",
+ "w hy",
+ "plement ation",
+ "ro ut",
+ "rou t",
+ "r out",
+ "Mat rix",
+ "▁s ad",
+ "▁sa d",
+ "ан а",
+ "а на",
+ "▁P ic",
+ "▁Pi c",
+ ". “",
+ "▁A C",
+ "▁ AC",
+ "▁F est",
+ "▁Fe st",
+ "▁des ktop",
+ "▁ desktop",
+ "▁P ay",
+ "▁Pa y",
+ "▁ Pay",
+ "ome times",
+ "omet imes",
+ "▁T ak",
+ "▁Ta k",
+ "ра б",
+ "▁S ever",
+ "▁Se ver",
+ "▁nor thern",
+ "▁north ern",
+ "an ter",
+ "ant er",
+ "ante r",
+ "▁Mod ern",
+ "▁Mo dern",
+ "▁Mode rn",
+ "wa l",
+ "w al",
+ "{ \r",
+ "on line",
+ "ö k",
+ "▁brit ann",
+ "$ _",
+ "▁j ar",
+ "▁ja r",
+ "▁ jar",
+ "T L",
+ "xx xx",
+ "xxx x",
+ "x xxx",
+ "mer ge",
+ "▁N amen",
+ "▁Name n",
+ "▁Na men",
+ "▁Nam en",
+ "▁K EY",
+ "▁ KEY",
+ "▁re fers",
+ "▁ref ers",
+ "▁refer s",
+ "▁h in",
+ "▁hi n",
+ "▁ hin",
+ "▁Vol ks",
+ "▁Volk s",
+ "st eller",
+ "stell er",
+ "stelle r",
+ "vi ation",
+ "via tion",
+ "v iation",
+ "on io",
+ "oni o",
+ "o nio",
+ "ight er",
+ "igh ter",
+ "Com pat",
+ "Comp at",
+ "▁C E",
+ "▁ CE",
+ "▁p ró",
+ "▁pr ó",
+ "▁encuent ra",
+ "the orem",
+ "▁pub li",
+ "▁Develop ment",
+ "н д",
+ "▁r os",
+ "▁ro s",
+ "▁ ros",
+ "▁s hr",
+ "▁sh r",
+ "se au",
+ "s eau",
+ "▁gener ating",
+ "▁gene rating",
+ "▁difficult y",
+ "▁Ex press",
+ "▁Exp ress",
+ "▁ Express",
+ "Al ignment",
+ "de utsch",
+ "▁Вла ди",
+ "▁sugg ests",
+ "▁suggest s",
+ "▁Famil y",
+ "▁Fam ily",
+ "▁ Family",
+ "bb i",
+ "b bi",
+ "]) .",
+ "] ).",
+ "st aw",
+ "sta w",
+ "▁pres idente",
+ "▁president e",
+ "▁presiden te",
+ "▁st esso",
+ "in x",
+ "i nx",
+ "set up",
+ "▁con form",
+ "▁conf orm",
+ "▁f ro",
+ "▁fr o",
+ "=\\ \"",
+ "= \\\"",
+ "▁d å",
+ "ic iones",
+ "ici ones",
+ "icio nes",
+ "icion es",
+ "i ciones",
+ "▁e volution",
+ "▁evol ution",
+ "pr ote",
+ "pro te",
+ "p rote",
+ "▁pr ints",
+ "▁print s",
+ "▁prin ts",
+ "▁P ont",
+ "▁Po nt",
+ "▁Pon t",
+ "▁conf usion",
+ "▁ Й",
+ "▁d ello",
+ "▁del lo",
+ "▁dell o",
+ "▁man if",
+ "Def inition",
+ "ár a",
+ "á ra",
+ "ma ls",
+ "mal s",
+ "m als",
+ "▁s ale",
+ "▁sa le",
+ "▁sal e",
+ "▁drop down",
+ "▁ dropdown",
+ "Ch ain",
+ "Amer ican",
+ "America n",
+ "▁m k",
+ "▁ mk",
+ "▁B ez",
+ "▁Be z",
+ "▁F ue",
+ "▁Fu e",
+ "▁N E",
+ "▁ NE",
+ "гра фи",
+ "граф и",
+ "doc ker",
+ "do cker",
+ "d ocker",
+ "▁^ {",
+ "▁ ^{",
+ "As sert",
+ "Ass ert",
+ "▁hor izontal",
+ "▁horizon tal",
+ "▁ horizontal",
+ "(@ \"",
+ "( @\"",
+ "▁д ву",
+ "pro xy",
+ "U ri",
+ "gen cy",
+ "g ency",
+ "▁\" [",
+ "▁Q t",
+ "▁ Qt",
+ "▁N ames",
+ "▁Name s",
+ "▁Na mes",
+ "▁Nam es",
+ "▁ Names",
+ "▁evalu ate",
+ "▁eval uate",
+ "! /",
+ "▁ein ges",
+ "▁eing es",
+ "▁syn th",
+ "▁sy nth",
+ "▁You Tube",
+ "▁turn ing",
+ "▁tur ning",
+ "▁E ric",
+ "▁Er ic",
+ "▁б ли",
+ "▁ бли",
+ "▁k lub",
+ "▁kl ub",
+ "pl orer",
+ "▁s ports",
+ "▁sport s",
+ "▁s ia",
+ "▁si a",
+ "о ш",
+ "▁d ai",
+ "▁da i",
+ "▁e urope",
+ "▁europ e",
+ "▁euro pe",
+ "ic ians",
+ "ici ans",
+ "ician s",
+ "icia ns",
+ "ings områ",
+ "▁d re",
+ "▁dr e",
+ "▁work around",
+ "▁s uit",
+ "▁su it",
+ "▁ suit",
+ "amb igu",
+ "▁quant ity",
+ "▁ quantity",
+ "▁seg undo",
+ "Sym bol",
+ "S ymbol",
+ "▁m oral",
+ "▁mo ral",
+ "▁mor al",
+ "Ch art",
+ "Char t",
+ "C hart",
+ "▁da mit",
+ "▁dam it",
+ "▁attempt s",
+ "▁d onn",
+ "▁do nn",
+ "▁don n",
+ "jo s",
+ "j os",
+ "▁e re",
+ "▁er e",
+ "▁ ere",
+ "▁hom me",
+ "▁ homme",
+ "si mp",
+ "sim p",
+ "s imp",
+ "rypt ed",
+ "▁act s",
+ "▁ac ts",
+ "inner HTML",
+ "▁tourn ament",
+ "▁s ky",
+ "▁sk y",
+ "▁ sky",
+ "Time r",
+ "Tim er",
+ "T imer",
+ "▁mill ions",
+ "▁million s",
+ "^ +",
+ "ag ent",
+ "age nt",
+ "agen t",
+ "a gent",
+ "') );",
+ "')) ;",
+ "' ));",
+ "▁o st",
+ "▁os t",
+ "▁ ost",
+ "▁g la",
+ "▁gl a",
+ "▁по мо",
+ "▁f ün",
+ "ст вом",
+ "ств ом",
+ "ство м",
+ "ewnę trz",
+ "▁Mé xico",
+ "▁l ub",
+ "▁lu b",
+ "▁ lub",
+ "▁É d",
+ "if ik",
+ "ifi k",
+ "i fik",
+ "че ский",
+ "▁im mer",
+ "▁imm er",
+ "▁ immer",
+ "en sen",
+ "ens en",
+ "ense n",
+ "an ny",
+ "ann y",
+ "in line",
+ "▁g over",
+ "▁go ver",
+ "au c",
+ "a uc",
+ "▁re pre",
+ "▁rep re",
+ "▁repr e",
+ "▁histor ia",
+ "▁hist oria",
+ "A g",
+ "▁p lt",
+ "▁pl t",
+ "▁Pr inci",
+ "▁Prin ci",
+ "im eter",
+ "ime ter",
+ "imet er",
+ "i meter",
+ "ő s",
+ "š e",
+ "▁U E",
+ "▁ UE",
+ "Equ als",
+ "Equal s",
+ "Eq uals",
+ "Dis patch",
+ "le gen",
+ "leg en",
+ "lege n",
+ "l egen",
+ "ла зи",
+ "чно й",
+ "ч ной",
+ "▁st ell",
+ "▁ste ll",
+ "▁ stell",
+ "ń st",
+ "▁c ri",
+ "▁cr i",
+ "▁ cri",
+ "▁In dep",
+ "▁Ind ep",
+ "è de",
+ "}\\ )",
+ "} \\)",
+ "▁w yst",
+ "▁wy st",
+ "▁wys t",
+ "▁fig ured",
+ "▁figure d",
+ "▁figur ed",
+ "AT CH",
+ "éb en",
+ "é ben",
+ "la cht",
+ "lac ht",
+ "lach t",
+ "l acht",
+ "▁succeed ed",
+ "gr y",
+ "g ry",
+ "▁p ret",
+ "▁pr et",
+ "▁pre t",
+ "▁ pret",
+ "▁S af",
+ "▁Sa f",
+ "▁\" );",
+ "▁\") ;",
+ "▁ \");",
+ "e h",
+ "▁offic iel",
+ "▁offici el",
+ "краї н",
+ "wi nd",
+ "win d",
+ "w ind",
+ "▁sc atter",
+ "▁F ox",
+ "▁Fo x",
+ "ic ious",
+ "ici ous",
+ "icio us",
+ "i cious",
+ "Man y",
+ "Ma ny",
+ "M any",
+ "up er",
+ "u per",
+ "▁Con vert",
+ "▁ Convert",
+ "st erd",
+ "ste rd",
+ "ster d",
+ "▁St ein",
+ "▁Ste in",
+ "▁О т",
+ "}^ {(",
+ "}^{ (",
+ "} ^{(",
+ "bet ween",
+ "hi re",
+ "h ire",
+ "▁on Create",
+ "▁ onCreate",
+ "; ",
+ "b ably",
+ "S Y",
+ "mo t",
+ "m ot",
+ "▁D ire",
+ "▁Di re",
+ "▁Dir e",
+ "itect ure",
+ "то й",
+ "▁co ordinate",
+ "▁coordin ate",
+ "▁coord inate",
+ "▁ coordinate",
+ "(\" #",
+ "▁s üd",
+ "O B",
+ "▁m orte",
+ "▁mor te",
+ "▁mort e",
+ "▁we ather",
+ "▁h ely",
+ "▁he ly",
+ "▁hel y",
+ "▁ hely",
+ "▁priv ile",
+ "RE LEASE",
+ "at el",
+ "ate l",
+ "a tel",
+ "▁recogn ized",
+ "▁recognize d",
+ "▁Th ough",
+ "сси й",
+ "mem ory",
+ "▁comp ilation",
+ "bit s",
+ "bi ts",
+ "b its",
+ "▁w ed",
+ "▁we d",
+ "▁ wed",
+ "}} _{",
+ "}}_ {",
+ "} }_{",
+ "▁G UI",
+ "п ня",
+ "▁sou thern",
+ "▁south ern",
+ "▁h ay",
+ "▁ha y",
+ "ov ić",
+ "ovi ć",
+ "o vić",
+ "la uf",
+ "lau f",
+ "l auf",
+ "▁E L",
+ "▁ EL",
+ "▁F ull",
+ "▁Fu ll",
+ "▁Ful l",
+ "▁ Full",
+ "▁Ham burg",
+ "▁Hamb urg",
+ "▁M ittel",
+ "▁Mit tel",
+ "▁Mitte l",
+ "▁Mitt el",
+ "D U",
+ "appro x",
+ "H S",
+ "▁про це",
+ "▁mag azine",
+ "▁M ig",
+ "▁Mi g",
+ "▁click ing",
+ "en tr",
+ "ent r",
+ "▁au tre",
+ "▁aut re",
+ "▁ autre",
+ "▁t é",
+ "▁ té",
+ "▁h á",
+ "▁ há",
+ "ст ы",
+ "с ты",
+ "▁M A",
+ "▁ MA",
+ "ap py",
+ "app y",
+ "a ppy",
+ "st ví",
+ "▁se lon",
+ "▁sel on",
+ "▁g ek",
+ "▁ge k",
+ "▁S l",
+ "▁ Sl",
+ "fr astr",
+ "fra str",
+ "Li b",
+ "L ib",
+ "▁Д у",
+ "▁f acing",
+ "▁fa cing",
+ "▁fac ing",
+ "▁с тар",
+ "▁ст ар",
+ "▁ста р",
+ "▁D utch",
+ "at ar",
+ "ata r",
+ "a tar",
+ "▁ke eps",
+ "▁keep s",
+ "▁Pat rick",
+ "▁Patri ck",
+ "il io",
+ "ili o",
+ "i lio",
+ "▁v ig",
+ "▁vi g",
+ "тв а",
+ "т ва",
+ "▁Feder al",
+ "▁Fed eral",
+ "▁par agraph",
+ "▁para graph",
+ "▁ paragraph",
+ "▁inter action",
+ "▁inte raction",
+ "▁interact ion",
+ "▁occ as",
+ "▁oc cas",
+ "▁I ran",
+ "▁Ir an",
+ "▁Ira n",
+ "▁machine s",
+ "▁mach ines",
+ "(( )",
+ "( ()",
+ "ur ies",
+ "uri es",
+ "u ries",
+ "▁ро ди",
+ "▁род и",
+ "▁ роди",
+ "▁а мерикан",
+ "up p",
+ "u pp",
+ "▁i ce",
+ "▁ic e",
+ "▁ ice",
+ "▁S ay",
+ "▁Sa y",
+ "▁s ail",
+ "▁sa il",
+ "▁B egin",
+ "▁Be gin",
+ "▁Beg in",
+ "▁ Begin",
+ "fi co",
+ "fic o",
+ "f ico",
+ "og a",
+ "o ga",
+ "▁d esar",
+ "▁des ar",
+ "▁d v",
+ "▁ра ди",
+ "oh en",
+ "o hen",
+ "er ei",
+ "ere i",
+ "e rei",
+ "án ak",
+ "á nak",
+ "▁d aar",
+ "▁da ar",
+ "if iers",
+ "ifier s",
+ "ifi ers",
+ "ifie rs",
+ "▁th ee",
+ "▁the e",
+ "▁by la",
+ "▁byl a",
+ "ва ла",
+ "вал а",
+ "в ала",
+ "an dro",
+ "and ro",
+ "andr o",
+ "▁м оло",
+ "▁мо ло",
+ "▁tot ally",
+ "▁total ly",
+ "io m",
+ "i om",
+ "▁a er",
+ "ns ylvan",
+ "▁cor ps",
+ "▁tre ated",
+ "▁treat ed",
+ "▁com une",
+ "▁comun e",
+ "M ich",
+ "vo ice",
+ "pg f",
+ "▁a nx",
+ "▁an x",
+ "▁Phil ip",
+ "▁Phili p",
+ "▁e k",
+ "▁ ek",
+ "▁Men schen",
+ "▁Mens chen",
+ "▁d ere",
+ "▁de re",
+ "▁der e",
+ "▁per met",
+ "▁perm et",
+ "Ma il",
+ "M ail",
+ "▁V é",
+ "en ted",
+ "ent ed",
+ "ente d",
+ "▁b unch",
+ "▁P iet",
+ "▁Pi et",
+ "▁Pie t",
+ "att ach",
+ "atta ch",
+ "▁p orte",
+ "▁por te",
+ "▁port e",
+ "▁ porte",
+ "да т",
+ "д ат",
+ "▁Brit ain",
+ "Enc oding",
+ "▁` <",
+ "Sp ace",
+ "S pace",
+ "▁r ap",
+ "▁ra p",
+ "▁ rap",
+ "▁pop ul",
+ "fl oor",
+ "f loor",
+ "spec ific",
+ "cle an",
+ "c lean",
+ "▁con qu",
+ "f b",
+ "▁introdu ce",
+ "▁Ent ity",
+ "▁ Entity",
+ "▁er folg",
+ "▁erf olg",
+ "at ol",
+ "ato l",
+ "a tol",
+ "ient os",
+ "iento s",
+ "ки педи",
+ "▁U t",
+ "▁б ри",
+ "▁ бри",
+ "ed uler",
+ "edu ler",
+ "edule r",
+ "▁conc entr",
+ "▁concent r",
+ "▁c her",
+ "▁ch er",
+ "▁che r",
+ "▁ cher",
+ "▁up grade",
+ "▁upgrad e",
+ "▁p ictures",
+ "▁picture s",
+ "▁Famil ie",
+ "M us",
+ "Lo ok",
+ "L ook",
+ "▁e ran",
+ "▁er an",
+ "▁era n",
+ "▁g ram",
+ "▁gr am",
+ "▁gra m",
+ "▁ gram",
+ "▁W o",
+ "np m",
+ "n pm",
+ "▁Sal v",
+ "▁Sa lv",
+ "▁c d",
+ "▁ cd",
+ "▁В ы",
+ "wa hl",
+ "w ahl",
+ "tr ain",
+ "tra in",
+ "t rain",
+ "ch em",
+ "che m",
+ "c hem",
+ "▁P il",
+ "▁Pi l",
+ "▁Con nect",
+ "▁ Connect",
+ "č e",
+ "▁h ast",
+ "▁ha st",
+ "▁has t",
+ "▁Mult i",
+ "▁Mul ti",
+ "▁ Multi",
+ "at ta",
+ "att a",
+ "a tta",
+ "▁S ound",
+ "▁So und",
+ "▁Sou nd",
+ "▁ Sound",
+ "sol ute",
+ "▁qu ote",
+ "▁quot e",
+ "▁ quote",
+ "▁o bst",
+ "▁ob st",
+ "▁obs t",
+ "cc iones",
+ "ccion es",
+ "c ciones",
+ "ib ly",
+ "▁b rand",
+ "▁br and",
+ "▁bra nd",
+ "▁bran d",
+ "▁ brand",
+ "▁convers ation",
+ "▁to utes",
+ "▁tout es",
+ "▁tou tes",
+ "▁toute s",
+ "▁R ub",
+ "▁Ru b",
+ "ie nia",
+ "ien ia",
+ "i enia",
+ "ir it",
+ "iri t",
+ "i rit",
+ "▁А нд",
+ "▁Ан д",
+ "edu led",
+ "edule d",
+ "▁T otal",
+ "▁To tal",
+ "▁Tot al",
+ "▁ Total",
+ "Di g",
+ "D ig",
+ "er em",
+ "ere m",
+ "e rem",
+ "▁s ki",
+ "▁sk i",
+ "▁ ski",
+ "De st",
+ "Des t",
+ "D est",
+ "Y Y",
+ "е ди",
+ "al y",
+ "a ly",
+ "▁back end",
+ "▁ backend",
+ "ul us",
+ "ulu s",
+ "u lus",
+ "▁feature d",
+ "▁person n",
+ "▁pers onn",
+ "▁sc hon",
+ "▁sch on",
+ "tr ace",
+ "tra ce",
+ "t race",
+ "▁I DE",
+ "▁ID E",
+ "▁ IDE",
+ "á j",
+ "▁anim als",
+ "▁animal s",
+ "▁ani mals",
+ "▁s now",
+ "▁sn ow",
+ "uv e",
+ "u ve",
+ "uer to",
+ "▁d rew",
+ "▁dr ew",
+ "▁dre w",
+ "▁Ye ah",
+ "▁S v",
+ "\\, \\",
+ "\\ ,\\",
+ "▁S erie",
+ "▁Se rie",
+ "▁Ser ie",
+ "▁second o",
+ "▁sec ondo",
+ "▁Leb ens",
+ "▁Leben s",
+ "▁acc ord",
+ "▁ac cord",
+ "▁C et",
+ "▁Ce t",
+ "er ade",
+ "era de",
+ "e rade",
+ "▁desp ite",
+ "▁C arlo",
+ "▁Car lo",
+ "▁Carl o",
+ "▁z ewnętrz",
+ "▁l ista",
+ "▁li sta",
+ "▁list a",
+ "▁ lista",
+ "ni co",
+ "nic o",
+ "n ico",
+ "▁Corpor ation",
+ "vs pace",
+ "v space",
+ "▁вой ны",
+ "▁st ands",
+ "▁stand s",
+ "▁stan ds",
+ "▁wor se",
+ "▁sim ult",
+ "▁si mult",
+ "▁pract ical",
+ "CO L",
+ "C OL",
+ "ch anged",
+ "change d",
+ "chan ged",
+ "▁Исто рия",
+ "б ри",
+ "in do",
+ "ind o",
+ "▁Lew is",
+ "▁pattern s",
+ "if ica",
+ "ific a",
+ "ifi ca",
+ "i fica",
+ "▁s mart",
+ "▁sm art",
+ "▁concern ed",
+ "ți i",
+ "ț ii",
+ "▁H ello",
+ "▁Hel lo",
+ "▁Hell o",
+ "▁ Hello",
+ "re ll",
+ "rel l",
+ "r ell",
+ "▁L ex",
+ "▁Le x",
+ "▁в то",
+ "▁cond itional",
+ "▁condition al",
+ "ot ted",
+ "ott ed",
+ "otte d",
+ "▁sh oot",
+ "▁sho ot",
+ "▁W ed",
+ "▁We d",
+ "▁мар та",
+ "au d",
+ "a ud",
+ "▁an te",
+ "▁ant e",
+ "▁ ante",
+ "ien tras",
+ "ient ras",
+ "▁p apers",
+ "▁pa pers",
+ "▁pap ers",
+ "▁paper s",
+ "▁port ug",
+ "▁Man agement",
+ "▁ Management",
+ "▁exerc ise",
+ "▁Begr iff",
+ "com mit",
+ "comm it",
+ "▁render ing",
+ "▁rend ering",
+ "▁rende ring",
+ "▁c zas",
+ "▁cz as",
+ "▁ czas",
+ "Dr op",
+ "D rop",
+ "er g",
+ "e rg",
+ "▁m ul",
+ "▁mu l",
+ "▁ mul",
+ "▁T an",
+ "▁Ta n",
+ "ie ro",
+ "ier o",
+ "i ero",
+ "▁loc ale",
+ "▁local e",
+ "▁ locale",
+ "▁in aug",
+ "du mp",
+ "d ump",
+ "ци й",
+ "▁symbol s",
+ "in ta",
+ "int a",
+ "▁aw arded",
+ "▁award ed",
+ "▁s ust",
+ "▁su st",
+ "▁sus t",
+ "▁S end",
+ "▁Se nd",
+ "▁Sen d",
+ "▁ Send",
+ "ї в",
+ "Re st",
+ "Res t",
+ "R est",
+ "zt en",
+ "zte n",
+ "z ten",
+ "ли м",
+ "л им",
+ "ri val",
+ "riv al",
+ "r ival",
+ "PO RT",
+ "P ORT",
+ "öl ker",
+ "im ately",
+ "imate ly",
+ "imat ely",
+ "ig te",
+ "igt e",
+ "ч ных",
+ "▁ter ra",
+ "▁ terra",
+ "ög lich",
+ "▁H om",
+ "▁Ho m",
+ "▁ Hom",
+ "▁h ex",
+ "▁he x",
+ "▁ hex",
+ "do ne",
+ "don e",
+ "d one",
+ "am ps",
+ "amp s",
+ "▁c et",
+ "▁ce t",
+ "PR E",
+ "P RE",
+ "ös t",
+ "ö st",
+ "▁fem me",
+ "Se lection",
+ "Select ion",
+ "▁z aw",
+ "▁za w",
+ "sp r",
+ "s pr",
+ "▁horse s",
+ "▁hors es",
+ "▁s nap",
+ "▁sn ap",
+ "Text Box",
+ "▁E clipse",
+ "ul le",
+ "ull e",
+ "u lle",
+ "ow ym",
+ "owy m",
+ "▁c omer",
+ "▁com er",
+ "▁co mer",
+ "▁come r",
+ "ne cess",
+ "co ok",
+ "c ook",
+ "en ger",
+ "eng er",
+ "-- >",
+ "- ->",
+ "▁p ří",
+ "▁př í",
+ "pan das",
+ "p andas",
+ "▁P lus",
+ "▁Pl us",
+ "▁ Plus",
+ "yl l",
+ "y ll",
+ "▁t error",
+ "▁te rror",
+ "▁ter ror",
+ "▁c rim",
+ "▁cr im",
+ "▁cri m",
+ "▁z ak",
+ "▁za k",
+ "▁ zak",
+ "iss ue",
+ "pa nel",
+ "pan el",
+ "p anel",
+ "sv g",
+ "▁re b",
+ "▁r eb",
+ "▁ reb",
+ "Custom er",
+ "sw itch",
+ "об ра",
+ "о бра",
+ "▁Champion ships",
+ "▁Championship s",
+ "▁Champions hips",
+ "cl o",
+ "c lo",
+ "at te",
+ "att e",
+ "a tte",
+ "▁any more",
+ "▁excell ent",
+ "▁opport unity",
+ "▁opportun ity",
+ "▁B ahn",
+ "▁Ba hn",
+ "▁Bah n",
+ "чи н",
+ "ч ин",
+ "et ing",
+ "eti ng",
+ "e ting",
+ "▁inc ident",
+ "to m",
+ "t om",
+ "Per s",
+ "Pe rs",
+ "P ers",
+ "bb en",
+ "bbe n",
+ "b ben",
+ "ствен ной",
+ "ственно й",
+ "и х",
+ "ro uter",
+ "route r",
+ "rout er",
+ "rou ter",
+ "r outer",
+ "▁new ly",
+ "▁sil ence",
+ "▁G NU",
+ "▁R ails",
+ "▁Ra ils",
+ "▁Rail s",
+ "▁A mb",
+ "▁Am b",
+ "▁Q ual",
+ "▁Qu al",
+ "▁ Qual",
+ "▁Sch aus",
+ "▁Sc haus",
+ "▁S ohn",
+ "▁So hn",
+ "▁A LL",
+ "▁AL L",
+ "▁ ALL",
+ "▁ro yal",
+ "▁roy al",
+ "▁ £",
+ "wi ę",
+ "w ię",
+ "▁ent fer",
+ "▁Re move",
+ "▁Rem ove",
+ "▁ Remove",
+ "▁hard ly",
+ "Us ing",
+ "U sing",
+ "ло г",
+ "▁I ch",
+ "▁d erni",
+ "▁der ni",
+ "▁Con nection",
+ "▁Connect ion",
+ "▁ Connection",
+ "fi sh",
+ "f ish",
+ "▁In form",
+ "▁Inf orm",
+ "▁Info rm",
+ "▁E ner",
+ "▁En er",
+ "ro it",
+ "r oit",
+ "B bb",
+ "View Model",
+ "V ideo",
+ "il ey",
+ "ile y",
+ "i ley",
+ "▁м ного",
+ "▁мно го",
+ "▁G em",
+ "▁Ge m",
+ "▁comp reh",
+ "▁compr eh",
+ "en umerate",
+ "ul as",
+ "ula s",
+ "u las",
+ "▁B ah",
+ "▁Ba h",
+ "▁Y et",
+ "▁Ye t",
+ "B R",
+ "х ра",
+ "▁count y",
+ "▁coun ty",
+ "▁H ist",
+ "▁His t",
+ "▁Hi st",
+ "▁Г у",
+ "▁ Ј",
+ "▁m ari",
+ "▁ma ri",
+ "▁mar i",
+ "▁C lar",
+ "▁Cl ar",
+ "▁Cla r",
+ "Bit map",
+ "B itmap",
+ "▁C z",
+ "▁m ån",
+ "▁må n",
+ "▁m ere",
+ "▁me re",
+ "▁mer e",
+ "▁mus ique",
+ "al so",
+ "als o",
+ "date s",
+ "da tes",
+ "dat es",
+ "d ates",
+ "▁D VD",
+ "▁g ol",
+ "▁go l",
+ "fo ny",
+ "fon y",
+ "f ony",
+ "▁Cast le",
+ "▁фа ми",
+ "▁arr ang",
+ "▁Bus iness",
+ "▁K az",
+ "▁Ka z",
+ "▁o sc",
+ "▁os c",
+ "▁ osc",
+ "▁se colo",
+ "▁sec olo",
+ "▁aff ected",
+ "▁affect ed",
+ "▁He alth",
+ "re b",
+ "r eb",
+ "ed itor",
+ "edit or",
+ "edi tor",
+ "▁own ed",
+ "▁ow ned",
+ "▁ owned",
+ "t l",
+ "▁v í",
+ "▁ ví",
+ "чни х",
+ "ч них",
+ "к ви",
+ "▁dev ient",
+ "▁devi ent",
+ "M utable",
+ "▁t egen",
+ "▁te gen",
+ "Reg ister",
+ "є ю",
+ "▁car acter",
+ "лл и",
+ "л ли",
+ "▁n ouvelle",
+ "▁nouve lle",
+ "ok o",
+ "o ko",
+ "icht et",
+ "ichte t",
+ "▁e vol",
+ "▁ev ol",
+ "▁H ab",
+ "▁Ha b",
+ "▁mil itar",
+ "▁milit ar",
+ "▁p uts",
+ "▁put s",
+ "▁pu ts",
+ "end if",
+ "endi f",
+ "▁Dav is",
+ "▁Da vis",
+ "▁Scot land",
+ "reg ular",
+ "▁Con text",
+ "▁Cont ext",
+ "▁ Context",
+ "is piel",
+ "isp iel",
+ "i spiel",
+ "▁G allery",
+ "▁Gall ery",
+ "\", \r",
+ "\" ,\r",
+ "▁a rc",
+ "▁ar c",
+ "▁ arc",
+ "▁IN FO",
+ "▁ INFO",
+ "▁c od",
+ "▁co d",
+ "▁ cod",
+ "ді в",
+ "д ів",
+ "▁v archar",
+ "▁var char",
+ "▁ varchar",
+ "▁tou jours",
+ "at ial",
+ "ati al",
+ "atia l",
+ "▁h anno",
+ "▁han no",
+ "▁проф ес",
+ "▁launch ed",
+ "▁насе лення",
+ "▁t on",
+ "▁to n",
+ "▁ ton",
+ "au sed",
+ "ause d",
+ "aus ed",
+ "a used",
+ "▁і з",
+ "▁t ö",
+ "▁P ur",
+ "▁Pu r",
+ "▁o lymp",
+ "AR N",
+ "ó m",
+ "▁a ugust",
+ "▁aug ust",
+ "▁f urn",
+ "▁fur n",
+ "▁fu rn",
+ "▁Col omb",
+ "▁Sta ats",
+ "▁Staat s",
+ "ho ra",
+ "hor a",
+ "h ora",
+ "▁м ор",
+ "▁мо р",
+ "▁ мор",
+ "can vas",
+ "▁gr ave",
+ "▁gra ve",
+ "▁grav e",
+ "▁com position",
+ "▁comp osition",
+ "▁compos ition",
+ "ac ja",
+ "▁которы е",
+ "▁ч о",
+ "▁ чо",
+ "Gener al",
+ "Gen eral",
+ "ан і",
+ "а ні",
+ "▁Joh annes",
+ "▁Johann es",
+ "▁Johan nes",
+ "ка р",
+ "к ар",
+ "▁ча ст",
+ "▁час т",
+ "▁Ва си",
+ "ss h",
+ "s sh",
+ "▁repla cing",
+ "▁< >",
+ "▁ <>",
+ "ці в",
+ "ц ів",
+ "la us",
+ "lau s",
+ "l aus",
+ "en y",
+ "e ny",
+ "äh l",
+ "ä hl",
+ "▁m arg",
+ "▁ma rg",
+ "▁mar g",
+ "ci ence",
+ "c ience",
+ "▁inst ruction",
+ "▁instru ction",
+ "▁instruct ion",
+ "▁ко ји",
+ "Ed itor",
+ "Edit or",
+ "▁fund amental",
+ "mu nd",
+ "mun d",
+ "m und",
+ "▁exception s",
+ "▁except ions",
+ "▁p late",
+ "▁pl ate",
+ "▁pla te",
+ "▁plat e",
+ "▁ plate",
+ "▁L is",
+ "▁Li s",
+ "▁d eren",
+ "▁de ren",
+ "▁der en",
+ "▁dere n",
+ "pr ep",
+ "pre p",
+ "p rep",
+ "▁janu ari",
+ "Sc ope",
+ "S cope",
+ "yn ast",
+ "yna st",
+ "r v",
+ "or sz",
+ "ors z",
+ "▁T ony",
+ "▁To ny",
+ "▁Ton y",
+ "▁д і",
+ "▁ ді",
+ "▁о дна",
+ "▁од на",
+ "▁s ab",
+ "▁sa b",
+ "ot i",
+ "o ti",
+ "je l",
+ "j el",
+ "▁gener ator",
+ "▁ generator",
+ "▁' .",
+ "▁ '.",
+ "▁sh arp",
+ "▁ sharp",
+ "▁то лько",
+ "▁account s",
+ "▁ž e",
+ "▁ že",
+ "▁for am",
+ "▁fo ram",
+ "▁g ouvern",
+ "TI ME",
+ "T IME",
+ "▁Sov iet",
+ "▁G é",
+ "▁ex ped",
+ "▁exp ed",
+ "▁ord inary",
+ "▁ordin ary",
+ "▁ ordinary",
+ "▁Con serv",
+ "▁Cons erv",
+ "▁Conse rv",
+ "▁com pla",
+ "▁comp la",
+ "▁compl a",
+ "te i",
+ "t ei",
+ "▁cap tain",
+ "▁capt ain",
+ "▁Sam uel",
+ "▁D ark",
+ "▁Dar k",
+ "▁в ін",
+ "▁ві н",
+ "▁de light",
+ "▁del ight",
+ "re cht",
+ "rec ht",
+ "di a",
+ "d ia",
+ "ess es",
+ "esse s",
+ "ul p",
+ "u lp",
+ "ш ки",
+ "be z",
+ "b ez",
+ "▁det ection",
+ "▁detect ion",
+ "▁cook ie",
+ "▁ cookie",
+ "an try",
+ "ant ry",
+ "Mult i",
+ "ob a",
+ "o ba",
+ "▁j oy",
+ "▁jo y",
+ "▁safe ty",
+ "▁saf ety",
+ "| ^",
+ "po d",
+ "p od",
+ "ad ém",
+ "▁Ch ron",
+ "▁Chr on",
+ "▁D jango",
+ "▁Dj ango",
+ "▁ehem al",
+ "k h",
+ "è le",
+ "▁p oc",
+ "▁po c",
+ "B ottom",
+ "la unch",
+ "ne m",
+ "n em",
+ "▁G ROUP",
+ "▁ GROUP",
+ "ní ho",
+ "▁G ib",
+ "▁Gi b",
+ "sd k",
+ "s dk",
+ "B E",
+ "▁G ene",
+ "▁Ge ne",
+ "▁Gen e",
+ "▁St aff",
+ "▁Sta ff",
+ "▁subsequ ent",
+ "ic ion",
+ "ici on",
+ "icio n",
+ "i cion",
+ "▁vict ory",
+ "▁c anon",
+ "▁can on",
+ "▁ca non",
+ "iz ar",
+ "iza r",
+ "i zar",
+ "iz ia",
+ "izi a",
+ "i zia",
+ "▁m ate",
+ "▁ma te",
+ "▁mat e",
+ "▁ mate",
+ "▁lay ers",
+ "▁layer s",
+ "▁ layers",
+ "su do",
+ "s udo",
+ "sch ule",
+ "per iment",
+ "ül et",
+ "ü let",
+ "AR CHAR",
+ "▁тер рито",
+ "▁me asures",
+ "▁measure s",
+ "▁meas ures",
+ "▁z ou",
+ "▁zo u",
+ "ops is",
+ "на ми",
+ "tb ody",
+ "t body",
+ "▁e se",
+ "▁es e",
+ "▁ ese",
+ "ster dam",
+ "sterd am",
+ "▁ph oto",
+ "▁phot o",
+ "▁ photo",
+ "ynchron ous",
+ "set minus",
+ "▁lo ads",
+ "▁load s",
+ "▁ loads",
+ "▁ple asure",
+ "▁me ille",
+ "}\\ ,",
+ "} \\,",
+ "qu al",
+ "qua l",
+ "q ual",
+ "▁fav our",
+ "▁r od",
+ "▁ro d",
+ "▁ rod",
+ "De r",
+ "D er",
+ "ра бо",
+ "раб о",
+ "▁pr essed",
+ "▁pres sed",
+ "▁press ed",
+ "▁ pressed",
+ "r ę",
+ "ie ving",
+ "iev ing",
+ "mate rial",
+ "m aterial",
+ "vi rt",
+ "vir t",
+ "v irt",
+ "▁cap able",
+ "с ло",
+ "us hed",
+ "ush ed",
+ "▁по бе",
+ "uset ts",
+ "un signed",
+ "uns igned",
+ "k ów",
+ "▁o v",
+ "▁ ov",
+ "eg eben",
+ "ege ben",
+ "e geben",
+ "▁app lying",
+ "▁apply ing",
+ "▁gal ax",
+ "▁ga lax",
+ "▁O racle",
+ "▁Or acle",
+ "▁Stutt gart",
+ "In fl",
+ "Inf l",
+ "ach usetts",
+ "▁de el",
+ "li re",
+ "l ire",
+ "▁stat unit",
+ "▁Polit iker",
+ "▁Politik er",
+ "▁beaut y",
+ ") >",
+ "▁Columb ia",
+ "▁zewnętrz ne",
+ "▁про гра",
+ "▁пр огра",
+ "▁d x",
+ "▁ dx",
+ "ck now",
+ "c know",
+ "▁d ub",
+ "▁du b",
+ "un ächst",
+ "find ViewById",
+ "▁M and",
+ "▁Man d",
+ "▁Ma nd",
+ "ál l",
+ "á ll",
+ "na ire",
+ "n aire",
+ "▁dest in",
+ "is ting",
+ "ist ing",
+ "isti ng",
+ "ag gi",
+ "agg i",
+ "a ggi",
+ "ch art",
+ "char t",
+ "cha rt",
+ "c hart",
+ "▁just ice",
+ "Sim ple",
+ "▁un fortunately",
+ "і р",
+ "▁qu esta",
+ "▁que sta",
+ "▁quest a",
+ "▁ questa",
+ "▁Govern or",
+ "я в",
+ "▁mús ica",
+ "▁equ ipo",
+ "▁equip o",
+ "▁D est",
+ "▁De st",
+ "▁Des t",
+ "▁ Dest",
+ "el ect",
+ "ele ct",
+ "e lect",
+ "Stack Trace",
+ "зо м",
+ "з ом",
+ "pr oc",
+ "pro c",
+ "p roc",
+ "ent in",
+ "enti n",
+ "ad ora",
+ "ado ra",
+ "ador a",
+ "▁Л ю",
+ "▁register ed",
+ "H L",
+ "face book",
+ "fac ebook",
+ "▁st oring",
+ "▁stor ing",
+ "▁sto ring",
+ "▁Current ly",
+ "▁qu adr",
+ "▁quad r",
+ "Stand ard",
+ "tr im",
+ "tri m",
+ "t rim",
+ "ear s",
+ "ea rs",
+ "e ars",
+ "se nder",
+ "sen der",
+ "send er",
+ "s ender",
+ "▁V as",
+ "▁Va s",
+ "▁ed ific",
+ "▁B ür",
+ "▁Bü r",
+ "▁C ountry",
+ "▁Count ry",
+ "▁Coun try",
+ "▁ Country",
+ "th a",
+ "t ha",
+ "; \"",
+ "no r",
+ "n or",
+ "▁Do ctor",
+ "▁Doc tor",
+ "ru ment",
+ "rum ent",
+ "r ument",
+ "Ge n",
+ "G en",
+ "▁B uen",
+ "▁Bu en",
+ "ra de",
+ "rad e",
+ "r ade",
+ "▁k un",
+ "n avigation",
+ "Pa y",
+ "P ay",
+ "▁capt ured",
+ "▁capture d",
+ "▁st ruck",
+ "▁str uck",
+ "▁stru ck",
+ "ven ir",
+ "ém ent",
+ "é ment",
+ "▁T ree",
+ "▁Tr ee",
+ "▁Tre e",
+ "▁ Tree",
+ "▁x x",
+ "▁ xx",
+ "▁n arr",
+ "▁na rr",
+ "▁nar r",
+ "ль ного",
+ "льно го",
+ "▁inst alling",
+ "▁install ing",
+ "▁instal ling",
+ "▁associ ation",
+ "▁insert ed",
+ "▁inser ted",
+ "er ner",
+ "ern er",
+ "erne r",
+ "valid ate",
+ "▁l ut",
+ "▁lu t",
+ "▁g lo",
+ "▁gl o",
+ "▁techn ology",
+ "▁P lace",
+ "▁Pl ace",
+ "▁Pla ce",
+ "▁ Place",
+ "$ ?",
+ "▁z v",
+ "с лі",
+ "E P",
+ "▁at mos",
+ "ug o",
+ "u go",
+ "ér t",
+ "é rt",
+ "▁W erk",
+ "▁Wer k",
+ "▁% }",
+ "te le",
+ "tel e",
+ "t ele",
+ "Sp an",
+ "S pan",
+ "▁R aj",
+ "▁Ra j",
+ "▁Person en",
+ "▁Pers onen",
+ "▁C ant",
+ "▁Can t",
+ "▁Ca nt",
+ "▁com bat",
+ "▁comb at",
+ "▁observ ation",
+ "▁obs ervation",
+ "param eter",
+ "para meter",
+ "▁agre ed",
+ "▁agree d",
+ "▁agr eed",
+ "pu r",
+ "p ur",
+ "▁sh adow",
+ "▁ shadow",
+ "▁g ł",
+ "Key s",
+ "Ke ys",
+ "Cre d",
+ "Cr ed",
+ "C red",
+ "ou ri",
+ "our i",
+ "o uri",
+ "▁p ale",
+ "▁pa le",
+ "▁pal e",
+ "ic ké",
+ "ick é",
+ "▁We ek",
+ "▁ Week",
+ "▁Pr ime",
+ "▁Pri me",
+ "▁Prim e",
+ "> .",
+ "Init ial",
+ "▁о дин",
+ "▁од ин",
+ "▁' ',",
+ "▁'' ,",
+ "▁у чи",
+ "▁In v",
+ "▁ Inv",
+ "col a",
+ "co la",
+ "c ola",
+ "ci ble",
+ "c ible",
+ "▁The atre",
+ "▁b em",
+ "▁be m",
+ "▁satisf y",
+ "x l",
+ "▁ра зви",
+ "▁раз ви",
+ "▁p ixel",
+ "▁pix el",
+ "lá n",
+ "l án",
+ "▁tw ee",
+ "▁twe e",
+ "ço n",
+ "ç on",
+ "не ния",
+ "▁A T",
+ "▁ AT",
+ "èg e",
+ "è ge",
+ "▁M ort",
+ "▁Mor t",
+ "▁Mo rt",
+ "▁my sq",
+ "▁ mysq",
+ "ft en",
+ "fte n",
+ "f ten",
+ "▁п ес",
+ "▁пе с",
+ "ém a",
+ "é ma",
+ "▁Service s",
+ "▁Serv ices",
+ "▁ Services",
+ "custom er",
+ "▁A WS",
+ "ъ т",
+ "▁A ch",
+ "▁Ac h",
+ "% .",
+ "▁clar ify",
+ "▁уни версите",
+ "xt ure",
+ "um i",
+ "u mi",
+ "▁s å",
+ "▁P el",
+ "▁Pe l",
+ "se rial",
+ "ser ial",
+ "UR I",
+ "U RI",
+ "▁r g",
+ "▁ rg",
+ "▁со ста",
+ "ch estra",
+ "che stra",
+ "ches tra",
+ "]. [",
+ "] .[",
+ "we n",
+ "w en",
+ "▁Lond res",
+ "▁an ys",
+ "▁any s",
+ "Data Source",
+ "▁рай оне",
+ "▁райо не",
+ "▁район е",
+ "▁re in",
+ "▁r ein",
+ "▁rei n",
+ "▁met adata",
+ "▁meta data",
+ "▁ metadata",
+ "um ble",
+ "umb le",
+ "ar beit",
+ "arbe it",
+ "hn er",
+ "h ner",
+ "ci ent",
+ "cie nt",
+ "c ient",
+ "▁n orte",
+ "▁nor te",
+ "▁о на",
+ "▁он а",
+ "▁ она",
+ "▁sc ored",
+ "▁score d",
+ "▁r ay",
+ "▁ra y",
+ "▁ ray",
+ "▁фев ра",
+ "▁фе вра",
+ "▁pro tagon",
+ "▁prot agon",
+ "▁S ac",
+ "▁Sa c",
+ "▁comm only",
+ "▁common ly",
+ "Linear Layout",
+ "▁app lic",
+ "▁ма я",
+ "З а",
+ "▁access ible",
+ "ie wer",
+ "iew er",
+ "fl ag",
+ "f lag",
+ "▁R ück",
+ "ä u",
+ "▁e rano",
+ "▁er ano",
+ "▁era no",
+ "▁eran o",
+ "▁auth entic",
+ "▁ authentic",
+ "▁R y",
+ "▁не ско",
+ "▁emb argo",
+ "▁embar go",
+ "▁d ry",
+ "▁dr y",
+ "▁reason able",
+ "▁Mod ule",
+ "▁ Module",
+ "▁acc eler",
+ "▁inter view",
+ "▁C reek",
+ "▁Cre ek",
+ "▁al pha",
+ "▁ alpha",
+ "se rie",
+ "ser ie",
+ "s erie",
+ "Th ey",
+ "The y",
+ "ю чи",
+ "▁H of",
+ "▁Ho f",
+ "▁C R",
+ "▁ CR",
+ "mod al",
+ "mo dal",
+ "▁sequence s",
+ "▁sequ ences",
+ "cl osed",
+ "close d",
+ "clos ed",
+ "clo sed",
+ ")} $",
+ ") }$",
+ "▁Ч ер",
+ "▁Че р",
+ "▁OR DER",
+ "▁ ORDER",
+ "Right arrow",
+ "R ightarrow",
+ "haus en",
+ "}} _",
+ "} }_",
+ "▁tamb é",
+ "▁magn etic",
+ "▁magnet ic",
+ "▁Mc C",
+ "▁win ning",
+ "under line",
+ "▁Bill board",
+ "na io",
+ "▁l iqu",
+ "▁li qu",
+ "▁ liqu",
+ "display style",
+ "time out",
+ "▁consider able",
+ "▁e ben",
+ "▁eb en",
+ "▁ eben",
+ "iffer ent",
+ "iffe rent",
+ "an u",
+ "a nu",
+ "▁С ов",
+ "▁Со в",
+ "[ (",
+ "▁: -)",
+ "▁:- )",
+ "le itung",
+ "form ed",
+ "for med",
+ "▁Man ager",
+ "▁ Manager",
+ "▁on click",
+ "T Y",
+ "та х",
+ "C V",
+ "run time",
+ "r untime",
+ "po que",
+ "▁Л о",
+ "Tem p",
+ "Te mp",
+ "T emp",
+ "lo aded",
+ "load ed",
+ "▁! ==",
+ "▁!= =",
+ "▁s inger",
+ "▁sing er",
+ "▁sin ger",
+ "fa r",
+ "f ar",
+ "▁Com ple",
+ "▁Comp le",
+ "▁ Comple",
+ "▁Ö sterreich",
+ "Pol icy",
+ "▁work er",
+ "▁wor ker",
+ "▁ worker",
+ "W rapper",
+ "ob i",
+ "o bi",
+ "▁discuss ed",
+ "▁b uy",
+ "▁bu y",
+ "▁янва ря",
+ "▁D in",
+ "▁Di n",
+ "▁g ed",
+ "▁ge d",
+ "▁ ged",
+ "ско ј",
+ "E urope",
+ "▁t all",
+ "▁tal l",
+ "▁ta ll",
+ "ho s",
+ "h os",
+ "ла го",
+ "▁B lock",
+ "▁Bl ock",
+ "▁Blo ck",
+ "▁ Block",
+ "▁ident ified",
+ "List View",
+ "▁attempt ing",
+ "▁typ ical",
+ "ps um",
+ "p sum",
+ "os ter",
+ "ost er",
+ "o ster",
+ "▁ж урна",
+ "P e",
+ "mer ce",
+ "▁un expected",
+ "hu i",
+ "h ui",
+ "let ter",
+ "lett er",
+ "lette r",
+ "l etter",
+ "▁nue vo",
+ "▁а бо",
+ "▁VAL UES",
+ "▁I z",
+ "Fl ags",
+ "Flag s",
+ "▁TR UE",
+ "▁ TRUE",
+ "iz ación",
+ "iza ción",
+ "▁gro wing",
+ "▁grow ing",
+ "es tre",
+ "est re",
+ "estr e",
+ "e stre",
+ "▁p oly",
+ "▁po ly",
+ "▁pol y",
+ "▁ poly",
+ "▁St one",
+ "▁Sto ne",
+ "▁V III",
+ "▁VI II",
+ "▁VII I",
+ "▁local host",
+ "▁ localhost",
+ "äh lt",
+ "ähl t",
+ "▁embed ded",
+ "jd bc",
+ "j dbc",
+ "▁con vention",
+ "▁conv ention",
+ "▁conven tion",
+ "▁convent ion",
+ "▁s cala",
+ "▁sc ala",
+ "▁scal a",
+ "▁ scala",
+ "со к",
+ "с ок",
+ "▁an alog",
+ "▁anal og",
+ "▁\" +",
+ "▁ \"+",
+ "ц ю",
+ "oc c",
+ "o cc",
+ "▁l itt",
+ "▁li tt",
+ "▁lit t",
+ "P N",
+ "▁а ктив",
+ "▁ак тив",
+ "att ributes",
+ "attribute s",
+ "▁F erd",
+ "▁Fe rd",
+ "▁Fer d",
+ "▁az ure",
+ "▁ azure",
+ "ș ti",
+ "ño s",
+ "ñ os",
+ "pi ng",
+ "pin g",
+ "p ing",
+ "▁te acher",
+ "▁teach er",
+ "▁tea cher",
+ "} &",
+ "ip e",
+ "i pe",
+ "▁N ob",
+ "▁No b",
+ "▁и ма",
+ "▁им а",
+ "Bi nd",
+ "B ind",
+ "▁mag ic",
+ "▁Trans port",
+ "▁ Transport",
+ "ix el",
+ "▁comp uted",
+ "▁comput ed",
+ "▁compute d",
+ "ag na",
+ "agn a",
+ "er st",
+ "ers t",
+ "H A",
+ "W ait",
+ "▁author s",
+ "▁auth ors",
+ "▁; )",
+ "cl am",
+ "cla m",
+ "c lam",
+ "▁Pen nsylvan",
+ "▁d rug",
+ "▁dr ug",
+ "▁dru g",
+ "▁v ain",
+ "▁va in",
+ "▁employ ed",
+ "▁individ uals",
+ "▁individual s",
+ "▁an ge",
+ "▁ang e",
+ "▁ ange",
+ "ut at",
+ "uta t",
+ "u tat",
+ "▁$ -",
+ "▁ $-",
+ "cor rect",
+ "corr ect",
+ "▁exper iments",
+ "▁experiment s",
+ "Arg ument",
+ "▁I B",
+ "▁ IB",
+ "▁p ère",
+ "▁B rian",
+ "▁Br ian",
+ "ber ger",
+ "berg er",
+ "Ma c",
+ "M ac",
+ "ia st",
+ "ias t",
+ "i ast",
+ "Per m",
+ "Pe rm",
+ "P erm",
+ "Ca st",
+ "C ast",
+ "▁{ };",
+ "▁{} ;",
+ "▁St udent",
+ "▁Stud ent",
+ "▁Stu dent",
+ "▁ Student",
+ "▁st att",
+ "▁stat t",
+ "▁sta tt",
+ "al gebra",
+ "▁equ als",
+ "▁equal s",
+ "▁eq uals",
+ "▁ equals",
+ "▁pro jet",
+ "▁prés ident",
+ "Activity Thread",
+ "▁ein z",
+ "en ia",
+ "eni a",
+ "e nia",
+ "re z",
+ "r ez",
+ "ess ional",
+ "ession al",
+ "▁авгу ста",
+ "over ride",
+ "ne ws",
+ "new s",
+ "▁pla net",
+ "▁plan et",
+ "▁plane t",
+ "n n",
+ "▁W is",
+ "▁Wi s",
+ "тв ер",
+ "т вер",
+ "▁Val id",
+ "▁ Valid",
+ "▁G ef",
+ "▁Ge f",
+ "гра д",
+ "▁e ig",
+ "an tom",
+ "ant om",
+ "anto m",
+ "▁Me ister",
+ "fl ags",
+ "flag s",
+ "ffic iale",
+ "fficial e",
+ "ша я",
+ "- ,",
+ "at ionen",
+ "ation en",
+ "ati onen",
+ "atio nen",
+ "mo use",
+ "m ouse",
+ "stand ard",
+ "Sing le",
+ "▁b ol",
+ "▁bo l",
+ "▁ bol",
+ "is is",
+ "isi s",
+ "▁f ruit",
+ "▁fr uit",
+ "c ourse",
+ "it ants",
+ "itan ts",
+ "▁é taient",
+ "▁ét aient",
+ "Text Field",
+ "▁ф он",
+ "▁фо н",
+ "▁a ircraft",
+ "▁air craft",
+ "▁I SSN",
+ "▁IS SN",
+ "▁west ern",
+ "▁ western",
+ "▁represent ing",
+ "Es p",
+ "E sp",
+ "▁El se",
+ "▁Els e",
+ "▁ Else",
+ "▁s izes",
+ "▁si zes",
+ "▁size s",
+ "▁satisf ied",
+ "ot os",
+ "oto s",
+ "U D",
+ "Fin al",
+ "Fi nal",
+ "F inal",
+ "ó j",
+ "è ve",
+ "▁R oy",
+ "▁Ro y",
+ "ff en",
+ "ffe n",
+ "f fen",
+ "▁s alt",
+ "▁sa lt",
+ "▁sal t",
+ "▁L abel",
+ "▁La bel",
+ "▁Lab el",
+ "▁ Label",
+ "S k",
+ "▁к ре",
+ "▁ кре",
+ "▁Ли тература",
+ "▁с м",
+ "Att ributes",
+ "Attribute s",
+ "ay e",
+ "a ye",
+ "сь к",
+ "▁вы со",
+ "- )",
+ "os es",
+ "ose s",
+ "cal cul",
+ "calc ul",
+ "▁C annot",
+ "▁Can not",
+ "▁ Cannot",
+ "Gener ic",
+ "em o",
+ "e mo",
+ "▁A utor",
+ "▁Aut or",
+ "▁Au tor",
+ "▁Auto r",
+ "лё н",
+ "л ён",
+ "ла га",
+ "vo te",
+ "v ote",
+ "lic ates",
+ "licate s",
+ "lica tes",
+ "ru s",
+ "r us",
+ "él i",
+ "é li",
+ "op f",
+ "o pf",
+ "at ique",
+ "ati que",
+ "sc ala",
+ "scal a",
+ "s cala",
+ "▁Oh io",
+ "▁Brit ann",
+ "▁b ef",
+ "▁be f",
+ "▁Е вро",
+ "▁Ев ро",
+ "▁Care er",
+ "is ée",
+ "isé e",
+ "ó t",
+ "bo se",
+ "bos e",
+ "b ose",
+ "▁Б ер",
+ "▁Бе р",
+ "▁Cont roller",
+ "▁Control ler",
+ "▁ Controller",
+ "po le",
+ "pol e",
+ "p ole",
+ "▁al len",
+ "▁all en",
+ "▁alle n",
+ "▁ allen",
+ "▁h ack",
+ "▁ha ck",
+ "▁ext ent",
+ "▁cal ci",
+ "▁calc i",
+ "Me r",
+ "M er",
+ "▁sum mary",
+ "▁summar y",
+ "▁summ ary",
+ "▁ summary",
+ "Mar t",
+ "Ma rt",
+ "M art",
+ "▁histor ical",
+ "▁historic al",
+ "im at",
+ "ima t",
+ "i mat",
+ "bu d",
+ "b ud",
+ "▁F OR",
+ "▁FO R",
+ "▁ FOR",
+ "ex port",
+ "exp ort",
+ "ed i",
+ "e di",
+ "Map ping",
+ "Mapp ing",
+ "Ma pping",
+ "M apping",
+ "▁A y",
+ "▁R uby",
+ "▁Ru by",
+ "▁Rub y",
+ "▁definition s",
+ "▁defin itions",
+ "▁definit ions",
+ "▁{ $",
+ "▁ {$",
+ "▁y ours",
+ "▁you rs",
+ "▁your s",
+ "▁yo urs",
+ "ri as",
+ "ria s",
+ "r ias",
+ "To uch",
+ "T ouch",
+ "▁G az",
+ "▁Ga z",
+ "▁Aut om",
+ "▁Au tom",
+ "▁Auto m",
+ "▁ Autom",
+ "▁и стори",
+ "▁исто ри",
+ "▁ис тори",
+ "▁d elen",
+ "▁de len",
+ "▁del en",
+ "▁K inder",
+ "▁Kind er",
+ "▁Ki nder",
+ "▁Kin der",
+ "}} %",
+ "} }%",
+ "▁perform ing",
+ "F R",
+ "▁S ig",
+ "▁Si g",
+ "▁B rad",
+ "▁Br ad",
+ "▁Bra d",
+ "br as",
+ "bra s",
+ "b ras",
+ "▁J ar",
+ "▁Ja r",
+ "pk g",
+ "p kg",
+ "w r",
+ "▁P ays",
+ "▁Pa ys",
+ "▁Pay s",
+ "N C",
+ "▁op posed",
+ "▁opp osed",
+ "▁oppos ed",
+ "Tr y",
+ "T ry",
+ "▁ве зе",
+ "▁B og",
+ "▁Bo g",
+ "▁writ es",
+ "▁wr ites",
+ "▁write s",
+ "▁st ories",
+ "▁stor ies",
+ "▁sto ries",
+ "▁m ater",
+ "▁ma ter",
+ "▁mat er",
+ "▁mate r",
+ "▁stag ione",
+ "▁s ty",
+ "▁st y",
+ "▁ sty",
+ "▁compat ible",
+ "▁ compatible",
+ "he ast",
+ "h east",
+ "▁G uy",
+ "▁Gu y",
+ "egr ünd",
+ "▁ident ifier",
+ "▁ identifier",
+ "▁he ads",
+ "▁head s",
+ "по зи",
+ "▁st up",
+ "▁t f",
+ "▁ tf",
+ "▁ј ош",
+ "▁H ugh",
+ "▁Hu gh",
+ "▁c ards",
+ "▁car ds",
+ "▁card s",
+ "▁ cards",
+ "ov y",
+ "o vy",
+ "▁To ast",
+ "al las",
+ "all as",
+ "alla s",
+ "▁p úblic",
+ "▁ass umes",
+ "▁assum es",
+ "▁assume s",
+ "▁чемпи она",
+ "yc ler",
+ "ycle r",
+ "y cler",
+ "▁Juni or",
+ "▁Jun ior",
+ "▁F ich",
+ "▁estim ated",
+ "▁estimate d",
+ "ze rw",
+ "zer w",
+ "di alog",
+ "dia log",
+ "d ialog",
+ "ши н",
+ "ш ин",
+ "sh ell",
+ "she ll",
+ "s hell",
+ "▁н их",
+ "▁ни х",
+ "▁ них",
+ "▁p itch",
+ "▁pit ch",
+ "до л",
+ "out ube",
+ "▁S anti",
+ "▁San ti",
+ "▁Sant i",
+ "On ClickListener",
+ "▁M agyar",
+ "▁Mag yar",
+ "▁v ue",
+ "▁vu e",
+ "▁ vue",
+ "i ão",
+ "▁` #",
+ "col lect",
+ "coll ect",
+ "▁R ou",
+ "▁Ro u",
+ "anal ysis",
+ "istrz ost",
+ "▁Dig ital",
+ "▁ Digital",
+ "▁c rist",
+ "▁cr ist",
+ "▁cri st",
+ "ri ere",
+ "rie re",
+ "rier e",
+ "r iere",
+ "▁cam po",
+ "▁camp o",
+ "U s",
+ "▁circ a",
+ "▁cir ca",
+ "▁Com ponent",
+ "▁ Component",
+ "▁NS String",
+ "▁ NSString",
+ "p d",
+ "▁pr ince",
+ "▁prin ce",
+ "▁in voke",
+ "▁inv oke",
+ "▁ invoke",
+ "▁Mar ine",
+ "▁Mari ne",
+ "Al low",
+ "All ow",
+ "est ic",
+ "esti c",
+ "ри сти",
+ "рис ти",
+ "рист и",
+ "bo ne",
+ "bon e",
+ "b one",
+ "ту ры",
+ "тур ы",
+ "▁pass ion",
+ "ác ió",
+ "á ció",
+ "▁o rn",
+ "▁or n",
+ "▁ orn",
+ "ве д",
+ "▁in vari",
+ "▁inv ari",
+ "▁н і",
+ "▁ ні",
+ "Re move",
+ "Rem ove",
+ "en cies",
+ "enc ies",
+ "enci es",
+ "il ib",
+ "ili b",
+ "i lib",
+ "▁Direct or",
+ "▁Dire ctor",
+ "▁Dir ector",
+ "\" \"",
+ "▁Con se",
+ "▁Cons e",
+ "google apis",
+ "ó k",
+ "▁У кра",
+ "▁H aving",
+ "▁Ha ving",
+ "▁Hav ing",
+ "Do main",
+ "Dom ain",
+ "ie rz",
+ "ier z",
+ "но логи",
+ "н ологи",
+ "Ch o",
+ "C ho",
+ "un defined",
+ "und efined",
+ "al loc",
+ "all oc",
+ "allo c",
+ "▁p ied",
+ "▁pi ed",
+ "▁pie d",
+ "▁f raction",
+ "▁fr action",
+ "▁fra ction",
+ "bi a",
+ "b ia",
+ "▁п оло",
+ "▁по ло",
+ "▁пол о",
+ "▁ поло",
+ "ug no",
+ "min ister",
+ "▁princip ale",
+ "▁principal e",
+ "▁ref used",
+ "▁refuse d",
+ "brow ser",
+ "b rowser",
+ "* ,",
+ "▁H ospital",
+ "▁univers al",
+ "▁Ern st",
+ "wh o",
+ "w ho",
+ "▁G ard",
+ "▁Gar d",
+ "▁Ga rd",
+ "' _",
+ "con de",
+ "co nde",
+ "cond e",
+ "c onde",
+ "▁[ {",
+ "▁ [{",
+ "so b",
+ "s ob",
+ "▁C rit",
+ "▁Cr it",
+ "▁дека бря",
+ "▁p unto",
+ "▁pun to",
+ "▁punt o",
+ "▁einges etzt",
+ "▁t ör",
+ "▁tö r",
+ "▁N i",
+ "▁w orry",
+ "▁wor ry",
+ "▁leg end",
+ "▁ legend",
+ "▁бу ли",
+ "▁k omm",
+ "▁kom m",
+ "▁ko mm",
+ "ri jk",
+ "rij k",
+ "r ijk",
+ "ef fect",
+ "eff ect",
+ "e ffect",
+ "Or i",
+ "O ri",
+ "RE S",
+ "R ES",
+ "▁P eters",
+ "▁Pe ters",
+ "▁Peter s",
+ "▁Pet ers",
+ "▁B aron",
+ "▁Bar on",
+ "▁Ba ron",
+ "▁G ot",
+ "▁Go t",
+ "▁hon est",
+ "▁ho nest",
+ "är e",
+ "ä re",
+ "ás z",
+ "á sz",
+ "▁no ble",
+ "▁nob le",
+ "▁con clusion",
+ "▁conclus ion",
+ "▁concl usion",
+ "▁form atting",
+ "▁format ting",
+ "▁formatt ing",
+ "▁o tto",
+ "▁ot to",
+ "▁ott o",
+ "▁ otto",
+ "▁de leg",
+ "▁del eg",
+ "м б",
+ "pt op",
+ "pto p",
+ "p top",
+ "▁s ends",
+ "▁send s",
+ "▁sen ds",
+ "ur name",
+ "urn ame",
+ "▁f estival",
+ "▁fest ival",
+ "▁festiv al",
+ ", ",
+ "ру с",
+ "р ус",
+ "▁d och",
+ "▁do ch",
+ "▁doc h",
+ "sub ject",
+ "su bject",
+ "▁care ful",
+ "qu ent",
+ "que nt",
+ "q uent",
+ "▁Lo ad",
+ "▁ Load",
+ "temper aturen",
+ "▁r ue",
+ "▁ru e",
+ "Mem ory",
+ "ț a",
+ "ion a",
+ "io na",
+ "i ona",
+ "▁dent ro",
+ "▁beg ann",
+ "▁began n",
+ "▁A qu",
+ "▁scient ific",
+ "ka ń",
+ "ло к",
+ "л ок",
+ "el de",
+ "eld e",
+ "▁Th ose",
+ "qu ier",
+ "qui er",
+ "act ér",
+ "▁Auf lage",
+ ") '",
+ "▁grad ient",
+ "▁ gradient",
+ "in teger",
+ "inte ger",
+ "▁Im port",
+ "▁Imp ort",
+ "▁ Import",
+ "S K",
+ "▁St atus",
+ "▁Stat us",
+ "▁ Status",
+ "▁exp lo",
+ "▁expl o",
+ "A E",
+ "Sh ell",
+ "She ll",
+ "S hell",
+ "▁Pa ulo",
+ "▁Paul o",
+ ". »",
+ "} ",
+ "fl ex",
+ "f lex",
+ "▁ко мп",
+ "▁ком п",
+ "on den",
+ "ond en",
+ "onde n",
+ "ac cept",
+ "▁miejs ce",
+ "H ub",
+ "all eng",
+ "alle ng",
+ "allen g",
+ "W N",
+ "▁implement ing",
+ "▁ лу",
+ "▁conf using",
+ "▁Inst all",
+ "▁ Install",
+ "▁r ou",
+ "▁ro u",
+ "▁ rou",
+ "▁про ек",
+ "Access or",
+ "Acc essor",
+ "ља шње",
+ "od io",
+ "odi o",
+ "▁app lies",
+ "ющи й",
+ "ю щий",
+ "▁M undial",
+ "Ét at",
+ "É tat",
+ "iet nam",
+ "hu m",
+ "h um",
+ "▁с бор",
+ "ord inate",
+ "ordin ate",
+ "Fran ce",
+ "Fr ance",
+ "F rance",
+ "▁p rend",
+ "▁pr end",
+ "▁pre nd",
+ "el temperaturen",
+ "▁trab aj",
+ "A xis",
+ "▁м но",
+ "prim ary",
+ "▁Se ite",
+ "▁Seit e",
+ "per mission",
+ "perm ission",
+ "▁or den",
+ "▁ord en",
+ "▁ orden",
+ "sin ce",
+ "s ince",
+ "▁i c",
+ "▁ ic",
+ "▁Bra zil",
+ "▁b are",
+ "▁bar e",
+ "▁ba re",
+ "▁ bare",
+ "▁N ar",
+ "▁Na r",
+ "▁J ur",
+ "▁Ju r",
+ "▁fre edom",
+ "▁free dom",
+ "▁med ical",
+ "▁medic al",
+ "▁medi cal",
+ "isch of",
+ "isc hof",
+ "▁с п",
+ "ie ż",
+ "▁boot strap",
+ "▁ bootstrap",
+ "▁ …",
+ "▁fa cil",
+ "▁fac il",
+ "co rd",
+ "cor d",
+ "c ord",
+ "ва не",
+ "ван е",
+ "в ане",
+ "▁Al len",
+ "▁All en",
+ "▁Alle n",
+ "av id",
+ "avi d",
+ "a vid",
+ "ing ham",
+ "za s",
+ "z as",
+ "▁in spect",
+ "▁ins pect",
+ "▁insp ect",
+ "it ten",
+ "itt en",
+ "itte n",
+ "os ti",
+ "ost i",
+ "u h",
+ "c é",
+ "▁# ####",
+ "▁### ##",
+ "▁#### #",
+ "ci us",
+ "ciu s",
+ "c ius",
+ "om y",
+ "o my",
+ "▁Se ine",
+ "▁Sein e",
+ "bre s",
+ "br es",
+ "b res",
+ "▁gen us",
+ "▁genu s",
+ "O ther",
+ "▁Gold en",
+ "▁Gol den",
+ "mu l",
+ "m ul",
+ "▁Спо љашње",
+ "▁gen naio",
+ "▁care fully",
+ "▁careful ly",
+ "aa l",
+ "a al",
+ "▁anal yt",
+ "▁analy t",
+ "ne ur",
+ "n eur",
+ "▁st retch",
+ "▁str etch",
+ "▁O cc",
+ "▁ Occ",
+ "ol as",
+ "ola s",
+ "o las",
+ "▁fire base",
+ "▁ firebase",
+ "▁expect ing",
+ "bas ic",
+ "cond ition",
+ "pr ov",
+ "pro v",
+ "p rov",
+ "▁W asser",
+ "▁Was ser",
+ "▁Wass er",
+ "▁conc aten",
+ "▁e vil",
+ "▁ev il",
+ "▁coefficient s",
+ "We st",
+ "W est",
+ "ir y",
+ "i ry",
+ "ph as",
+ "pha s",
+ "p has",
+ "▁J am",
+ "▁Ja m",
+ "fo is",
+ "f ois",
+ "▁cons id",
+ "▁main ten",
+ "▁mai nten",
+ "ni m",
+ "n im",
+ "es ser",
+ "ess er",
+ "esse r",
+ "es z",
+ "e sz",
+ "un ta",
+ "unt a",
+ "ue st",
+ "ues t",
+ "u est",
+ "▁cred entials",
+ "_ ;",
+ "Di m",
+ "D im",
+ "пре де",
+ "пр еде",
+ "▁B ü",
+ "bu ilt",
+ "▁A cadem",
+ "▁Ac adem",
+ "▁a udi",
+ "▁au di",
+ "▁aud i",
+ "▁ audi",
+ "▁tv å",
+ "in and",
+ "ina nd",
+ "▁The ater",
+ "▁gen re",
+ "ço s",
+ "ç os",
+ "gres ql",
+ "gre sql",
+ "▁we ap",
+ "▁R ab",
+ "▁Ra b",
+ "▁ ’",
+ "▁ad ult",
+ "▁d ém",
+ "▁dé m",
+ "` `",
+ "▁st abil",
+ "▁sta bil",
+ "▁correspond s",
+ "▁E astern",
+ "▁East ern",
+ "un nel",
+ "unn el",
+ "Work er",
+ "▁c oh",
+ "▁co h",
+ "л ка",
+ "▁Mass achusetts",
+ "pi o",
+ "p io",
+ "▁por ts",
+ "▁port s",
+ "▁ ports",
+ "ag g",
+ "a gg",
+ "▁De bug",
+ "▁Deb ug",
+ "▁ Debug",
+ "▁bre ath",
+ "MI N",
+ "M IN",
+ "Vari able",
+ "bat ch",
+ "b atch",
+ "сс е",
+ "с се",
+ "▁p reg",
+ "▁pr eg",
+ "▁pre g",
+ "▁r oles",
+ "▁ro les",
+ "▁role s",
+ "▁rol es",
+ "pa ste",
+ "pas te",
+ "p aste",
+ "▁refer enced",
+ "▁reference d",
+ "ad rat",
+ "adr at",
+ "ч ё",
+ "bin om",
+ "bi nom",
+ "▁def ining",
+ "▁defin ing",
+ "▁Bud apest",
+ "▁д ви",
+ "▁ дви",
+ "▁t aught",
+ "▁h ole",
+ "▁ho le",
+ "▁hol e",
+ "▁ hole",
+ "▁qu ella",
+ "▁que lla",
+ "▁quel la",
+ "M sg",
+ "as ka",
+ "ask a",
+ "a ska",
+ "sc an",
+ "s can",
+ "▁pro pose",
+ "▁prop ose",
+ "▁propos e",
+ "▁Би ография",
+ "{{ \\",
+ "{ {\\",
+ "text t",
+ "tex tt",
+ "▁A lb",
+ "▁Al b",
+ "▁Syd ney",
+ "▁back up",
+ "▁cre dit",
+ "▁cr edit",
+ "▁cred it",
+ "▁фран цу",
+ "st ats",
+ "sta ts",
+ "stat s",
+ "\\\" :",
+ "\\ \":",
+ "▁П ере",
+ "▁Пер е",
+ "▁Пе ре",
+ "▁according ly",
+ "▁accord ingly",
+ "▁L en",
+ "▁Le n",
+ "▁ Len",
+ "zn a",
+ "z na",
+ "▁Reg ional",
+ "▁Region al",
+ "▁и зда",
+ "▁из да",
+ "▁j ú",
+ "hi stor",
+ "his tor",
+ "h istor",
+ "▁ent ities",
+ "St ar",
+ "S tar",
+ "он е",
+ "о не",
+ "'] ['",
+ "' ]['",
+ "▁N ova",
+ "▁No va",
+ "▁Nov a",
+ "di e",
+ "d ie",
+ "▁` '",
+ "▁ `'",
+ "▁ob ten",
+ "▁obt en",
+ "an st",
+ "ans t",
+ "▁Re lig",
+ "▁Rel ig",
+ "▁t rig",
+ "▁tr ig",
+ "▁tri g",
+ "▁ре жи",
+ "▁Person al",
+ "▁Pers onal",
+ "▁t one",
+ "▁to ne",
+ "▁ton e",
+ "▁a id",
+ "▁ai d",
+ "Vis ual",
+ "Sub mit",
+ "▁mov es",
+ "▁mo ves",
+ "▁move s",
+ "▁B ridge",
+ "▁Br idge",
+ "▁B oy",
+ "▁Bo y",
+ "▁accur ate",
+ "os ta",
+ "ost a",
+ "o sta",
+ "at to",
+ "att o",
+ "a tto",
+ "▁defe ated",
+ "▁defeat ed",
+ "▁data b",
+ "▁da tab",
+ "▁dat ab",
+ "▁ datab",
+ "gi nx",
+ "gin x",
+ "g inx",
+ "▁L iv",
+ "▁Li v",
+ "ly wood",
+ "T W",
+ "ri um",
+ "r ium",
+ "ip ped",
+ "ipp ed",
+ "i pped",
+ "Fa il",
+ "F ail",
+ "RE QUEST",
+ "▁ign or",
+ "▁ig nor",
+ "▁s itting",
+ "▁sit ting",
+ "▁sitt ing",
+ "▁mol to",
+ "▁molt o",
+ "▁end point",
+ "▁ endpoint",
+ "uc ión",
+ "u ción",
+ "▁col lections",
+ "▁collection s",
+ "▁collect ions",
+ "▁colle ctions",
+ "▁ collections",
+ "▁Т у",
+ "tem bre",
+ "t embre",
+ "▁né cess",
+ "▁inter act",
+ "▁inte ract",
+ "▁o tras",
+ "▁ot ras",
+ "▁otra s",
+ "▁c urr",
+ "▁cu rr",
+ "▁cur r",
+ "▁ curr",
+ "▁tr acks",
+ "▁tra cks",
+ "▁track s",
+ "▁trac ks",
+ "▁fam ília",
+ "▁numer ical",
+ "▁numeric al",
+ "le gt",
+ "leg t",
+ "] /",
+ "▁M ario",
+ "▁Mar io",
+ "▁Ma rio",
+ "▁Mari o",
+ "▁t ort",
+ "▁to rt",
+ "▁tor t",
+ "b g",
+ "ss l",
+ "s sl",
+ "text tt",
+ "textt t",
+ "▁s park",
+ "▁sp ark",
+ "▁ spark",
+ "ди и",
+ "▁prob able",
+ "%% %%",
+ "ph ia",
+ "phi a",
+ "], [",
+ "] ,[",
+ "▁bo xes",
+ "▁box es",
+ "▁a cadem",
+ "▁ac adem",
+ "▁S lo",
+ "▁Sl o",
+ "äu de",
+ "ä ude",
+ "▁wit ness",
+ "▁ed iting",
+ "▁edit ing",
+ "ли на",
+ "лин а",
+ "▁look up",
+ "▁ lookup",
+ "▁B uck",
+ "▁Bu ck",
+ "▁Buc k",
+ "д ня",
+ "▁j ours",
+ "▁jo urs",
+ "▁jou rs",
+ "▁jour s",
+ "▁ jours",
+ "++ ){",
+ "++) {",
+ "▁ind ices",
+ "▁indic es",
+ "▁f light",
+ "▁fl ight",
+ "▁com putation",
+ "▁comput ation",
+ "Pl ugin",
+ "▁real ize",
+ "▁realiz e",
+ "is set",
+ "iss et",
+ "isse t",
+ "▁deriv ative",
+ "line width",
+ "bu nd",
+ "b und",
+ "▁t hor",
+ "▁th or",
+ "▁. =",
+ "▁ .=",
+ "▁s í",
+ "▁C lick",
+ "▁Cl ick",
+ "▁ Click",
+ "▁Seb ast",
+ "> '",
+ "hav ior",
+ "le i",
+ "l ei",
+ "ul f",
+ "▁ge ometry",
+ "▁geom etry",
+ "▁geomet ry",
+ "▁ geometry",
+ "pr ev",
+ "pre v",
+ "p rev",
+ "em pl",
+ "emp l",
+ "▁L é",
+ "an son",
+ "ans on",
+ "▁A lice",
+ "▁Al ice",
+ "▁Ali ce",
+ "pro totype",
+ "proto type",
+ "RE AD",
+ "ic ular",
+ "icul ar",
+ "i cular",
+ "▁б і",
+ "▁ бі",
+ "▁deutsch e",
+ "▁Re present",
+ "si tes",
+ "site s",
+ "s ites",
+ "▁Me an",
+ "▁d iss",
+ "▁di ss",
+ "▁dis s",
+ "▁Z ur",
+ "▁Zu r",
+ "▁п рез",
+ "▁пре з",
+ "▁пр ез",
+ "PA R",
+ "P AR",
+ "▁' #",
+ "▁D ra",
+ "▁Dr a",
+ "▁ Dra",
+ "со н",
+ "с он",
+ "▁ste ht",
+ "mar kt",
+ "mark t",
+ "▁e ase",
+ "▁eas e",
+ "Draw ing",
+ "Dra wing",
+ "= %",
+ "St op",
+ "Sto p",
+ "S top",
+ "▁s erving",
+ "▁ser ving",
+ "▁serv ing",
+ "▁servi ng",
+ "▁tak że",
+ "▁D NS",
+ "▁liter al",
+ "▁lit eral",
+ "Di e",
+ "D ie",
+ "▁в ос",
+ "▁во с",
+ "▁sen ior",
+ "ac ion",
+ "aci on",
+ "a cion",
+ "▁u buntu",
+ "▁ub untu",
+ "▁ ubuntu",
+ "▁Frank furt",
+ "▁Sun day",
+ "▁Sund ay",
+ "á b",
+ "▁jour ney",
+ "▁journ ey",
+ "is sa",
+ "iss a",
+ "ber ry",
+ "▁s ep",
+ "▁se p",
+ "▁ sep",
+ "▁i on",
+ "▁io n",
+ "▁ ion",
+ "wer t",
+ "we rt",
+ "w ert",
+ "or szág",
+ "orsz ág",
+ "ser ve",
+ "serv e",
+ "s erve",
+ "▁Mil ano",
+ "▁Milan o",
+ "▁ве ка",
+ "ра х",
+ "▁ию ля",
+ "▁man era",
+ "▁st ations",
+ "▁stat ions",
+ "▁station s",
+ "▁stati ons",
+ "▁adopt ed",
+ "▁any body",
+ "VER SION",
+ "F E",
+ "do rf",
+ "dor f",
+ "d orf",
+ ".. .,",
+ "... ,",
+ "▁обра зова",
+ "▁образ ова",
+ "Log ger",
+ "фи циаль",
+ "фици аль",
+ "WR ITE",
+ "▁h am",
+ "▁ha m",
+ "▁ ham",
+ "▁F uture",
+ "▁Fut ure",
+ "▁ Future",
+ "ot en",
+ "ote n",
+ "o ten",
+ "▁A G",
+ "▁ AG",
+ "▁t rained",
+ "▁tr ained",
+ "▁tra ined",
+ "▁train ed",
+ "▁N ich",
+ "▁Nic h",
+ "▁Ni ch",
+ "▁un iversity",
+ "▁univers ity",
+ "▁Olymp ics",
+ "▁Olympic s",
+ "▁d oit",
+ "▁do it",
+ "▁doi t",
+ "▁cult ural",
+ "▁cultura l",
+ "Con f",
+ "▁Con ference",
+ "or no",
+ "orn o",
+ "▁M P",
+ "▁ MP",
+ "▁b ou",
+ "▁bo u",
+ "ci n",
+ "c in",
+ "Hi gh",
+ "H igh",
+ "ann te",
+ "annt e",
+ "▁display ing",
+ "▁ch apter",
+ "▁chap ter",
+ "▁ chapter",
+ "▁Fra uen",
+ "▁Frau en",
+ "▁real ized",
+ "▁realiz ed",
+ "▁realize d",
+ "▁attempt ed",
+ "▁pre ferred",
+ "▁prefer red",
+ "Da t",
+ "D at",
+ "▁tr ouve",
+ "▁tro uve",
+ "▁trou ve",
+ "▁trouv e",
+ "▁int ention",
+ "▁intent ion",
+ "▁inten tion",
+ "▁Not ice",
+ "tim estamp",
+ "* (",
+ "▁Ш а",
+ "an as",
+ "ana s",
+ "a nas",
+ "cl a",
+ "c la",
+ "is z",
+ "i sz",
+ "tb l",
+ "t bl",
+ "Ar r",
+ "A rr",
+ "▁in verse",
+ "▁ter rible",
+ "▁occup ied",
+ "J AX",
+ "< -",
+ "▁Phil osoph",
+ "▁Cor ps",
+ "bu ilder",
+ "build er",
+ "▁beg ins",
+ "▁begin s",
+ "▁c ensus",
+ "▁cens us",
+ ". ’",
+ "▁pro ven",
+ "▁pr oven",
+ "▁prov en",
+ "▁prove n",
+ "met ric",
+ "▁incre ases",
+ "▁increase s",
+ "wi ch",
+ "w ich",
+ "▁A BC",
+ "▁AB C",
+ "▁ ABC",
+ "project s",
+ "▁T hor",
+ "▁Th or",
+ "▁conf idence",
+ "▁u fficiale",
+ "el m",
+ "e lm",
+ "▁g arden",
+ "▁gar den",
+ "▁gard en",
+ "▁rob ust",
+ "▁cos ì",
+ "ie dz",
+ "ied z",
+ "▁Is lam",
+ "▁Add ress",
+ "▁ Address",
+ "▁div ide",
+ "▁divid e",
+ "▁E u",
+ "ca tal",
+ "cat al",
+ "c atal",
+ "de tail",
+ "det ail",
+ "ep endant",
+ "f g",
+ "▁b ew",
+ "▁be w",
+ "▁ bew",
+ "▁f is",
+ "▁fi s",
+ "▁B O",
+ "▁ BO",
+ "▁w sp",
+ "▁ws p",
+ "▁p ipeline",
+ "▁pip eline",
+ "▁pipe line",
+ "h d",
+ "▁S ession",
+ "▁ Session",
+ "lä nd",
+ "l änd",
+ "iv eau",
+ "ive au",
+ "es tr",
+ "est r",
+ "e str",
+ "▁p article",
+ "▁part icle",
+ "▁partic le",
+ "▁parti cle",
+ "▁lar avel",
+ "▁ laravel",
+ "pi c",
+ "p ic",
+ "▁n au",
+ "▁na u",
+ "▁f ins",
+ "▁fin s",
+ "▁fi ns",
+ "▁V il",
+ "▁Vi l",
+ "▁f us",
+ "▁fu s",
+ "▁qu asi",
+ "oper ation",
+ "opera tion",
+ "▁al ler",
+ "▁all er",
+ "▁alle r",
+ "▁ aller",
+ "▁an aly",
+ "▁anal y",
+ "▁ analy",
+ "▁О н",
+ "▁M es",
+ "▁Me s",
+ "▁о пера",
+ "▁оп ера",
+ "▁hand led",
+ "▁handle d",
+ "▁de prec",
+ "▁dep rec",
+ "tt o",
+ "t to",
+ "▁E k",
+ "▁st ran",
+ "▁str an",
+ "▁stra n",
+ "▁ang lais",
+ "ju re",
+ "j ure",
+ "▁Sil ver",
+ "▁close ly",
+ "▁clos ely",
+ "en kins",
+ "enk ins",
+ "an os",
+ "ano s",
+ "a nos",
+ "st ed",
+ "ste d",
+ "s ted",
+ "▁сент ября",
+ "br and",
+ "bra nd",
+ "b rand",
+ "нь о",
+ "▁prés ent",
+ "▁pré sent",
+ "ro k",
+ "r ok",
+ "mo unt",
+ "m ount",
+ "▁Anth ony",
+ "▁Further more",
+ "in ha",
+ "▁ар хи",
+ "▁раз ли",
+ "▁окт ября",
+ "▁p int",
+ "▁pi nt",
+ "▁pin t",
+ "n ý",
+ "pt s",
+ "p ts",
+ "▁ital ien",
+ "▁ре ги",
+ "ле з",
+ "л ез",
+ "ди на",
+ "дин а",
+ "ather ine",
+ "In ternal",
+ "Int ernal",
+ "Inter nal",
+ "Intern al",
+ "Qu estion",
+ "▁sett lement",
+ "▁В се",
+ "▁fol ders",
+ "▁folder s",
+ "д ри",
+ "▁val or",
+ "▁va lor",
+ "▁M iller",
+ "▁Mil ler",
+ "▁Mill er",
+ "▁As sert",
+ "▁Ass ert",
+ "▁ Assert",
+ "▁pat ient",
+ "▁N ieder",
+ "▁Ni eder",
+ "▁Nie der",
+ "▁Nied er",
+ "▁E P",
+ "▁ EP",
+ "▁A gr",
+ "▁Ag r",
+ "▁o nde",
+ "▁on de",
+ "▁ onde",
+ "▁s cop",
+ "▁sc op",
+ "▁ scop",
+ "se quence",
+ "sequ ence",
+ "▁P L",
+ "▁ PL",
+ "▁se ek",
+ "▁see k",
+ "java se",
+ "jav ase",
+ "▁V ector",
+ "▁Ve ctor",
+ "▁Vec tor",
+ "▁ Vector",
+ "▁n á",
+ "▁ ná",
+ "▁categor ía",
+ "cl one",
+ "clo ne",
+ "N R",
+ "av ailable",
+ "▁B esch",
+ "▁Be sch",
+ "▁Bes ch",
+ "▁e clipse",
+ "▁ec lipse",
+ "▁ eclipse",
+ "wick lung",
+ "dep loy",
+ "en ie",
+ "eni e",
+ "e nie",
+ "▁\" )",
+ "▁ \")",
+ "äs t",
+ "ä st",
+ "▁s ync",
+ "▁syn c",
+ "▁sy nc",
+ "▁ sync",
+ "CO DE",
+ "▁Ч е",
+ "▁flo ating",
+ "▁float ing",
+ "/ `",
+ "▁ret ired",
+ "▁retir ed",
+ "de b",
+ "d eb",
+ "▁part icul",
+ "▁partic ul",
+ "▁parti cul",
+ "▁coll ected",
+ "▁collect ed",
+ "▁colle cted",
+ "▁down loaded",
+ "▁download ed",
+ "ni ce",
+ "nic e",
+ "n ice",
+ "▁B uffer",
+ "▁Buff er",
+ "▁ Buffer",
+ "▁Acc ount",
+ "▁Ac count",
+ "▁ Account",
+ "▁m aggio",
+ "▁mag gio",
+ "▁ре да",
+ "▁ред а",
+ "▁s ales",
+ "▁sa les",
+ "▁sal es",
+ "▁sale s",
+ "▁statunit ense",
+ "▁K i",
+ "▁F err",
+ "▁Fe rr",
+ "▁Fer r",
+ "Lo ck",
+ "Loc k",
+ "L ock",
+ "▁Is abel",
+ "▁Isa bel",
+ "cl ar",
+ "cla r",
+ "c lar",
+ "▁p ov",
+ "▁po v",
+ "at ra",
+ "atr a",
+ "a tra",
+ "▁Fr au",
+ "▁Fra u",
+ "▁sort ing",
+ "▁sor ting",
+ "▁sorti ng",
+ "▁phr ase",
+ "▁апре ля",
+ "▁дея тель",
+ "▁And ré",
+ "def inition",
+ "defin ition",
+ "writ ing",
+ "wr iting",
+ "ér é",
+ "é ré",
+ "щ у",
+ "▁O rd",
+ "▁Or d",
+ "▁ Ord",
+ "▁r um",
+ "▁ru m",
+ "▁ rum",
+ "▁T urk",
+ "▁Tur k",
+ "▁I van",
+ "th eless",
+ "the less",
+ "▁г и",
+ "▁ ги",
+ "▁s ake",
+ "▁sa ke",
+ "▁B ased",
+ "▁Bas ed",
+ "▁Ba sed",
+ "▁Base d",
+ "de ck",
+ "dec k",
+ "or us",
+ "oru s",
+ "o rus",
+ "▁tut ti",
+ "▁b lan",
+ "▁bl an",
+ "▁bla n",
+ "▁П у",
+ "De tail",
+ "Det ail",
+ "▁Н о",
+ "▁S ky",
+ "▁Sk y",
+ "▁p rès",
+ "▁pr ès",
+ "▁ près",
+ "мо й",
+ "col n",
+ "co ln",
+ "че ской",
+ "et i",
+ "e ti",
+ "▁ar row",
+ "▁arr ow",
+ "▁ arrow",
+ "▁C ha",
+ "▁Ch a",
+ "ch mark",
+ "œ ur",
+ "fa b",
+ "f ab",
+ "ку ль",
+ "Grid View",
+ "▁Back ground",
+ "▁ Background",
+ "s n",
+ "▁segu ito",
+ "▁n ic",
+ "▁ni c",
+ "▁ nic",
+ "co u",
+ "c ou",
+ "ті в",
+ "т ів",
+ "▁b zw",
+ "add EventListener",
+ "syn c",
+ "s ync",
+ "az zo",
+ "azz o",
+ "ab stract",
+ "as sets",
+ "ass ets",
+ "asse ts",
+ "asset s",
+ "▁D ru",
+ "▁Dr u",
+ "з д",
+ "ord net",
+ "▁b igger",
+ "▁big ger",
+ "▁initial ized",
+ "▁initialize d",
+ "ка з",
+ "og ene",
+ "ogen e",
+ "oge ne",
+ "vi ously",
+ "vious ly",
+ "v iously",
+ "▁g uid",
+ "▁gu id",
+ "scheid ung",
+ "▁Z ent",
+ "▁Ze nt",
+ "▁fr ames",
+ "▁frame s",
+ "▁fra mes",
+ "▁fram es",
+ "▁ frames",
+ "ri eben",
+ "rie ben",
+ "rieb en",
+ "r ieben",
+ "▁iss ued",
+ "▁issue d",
+ "▁issu ed",
+ "▁d ow",
+ "▁do w",
+ "▁descri bes",
+ "▁describe s",
+ "il st",
+ "ils t",
+ "i lst",
+ "▁c riteria",
+ "▁crit eria",
+ "▁criter ia",
+ "▁gentle man",
+ "Bas ic",
+ "ne z",
+ "n ez",
+ "De v",
+ "D ev",
+ "Mo ve",
+ "M ove",
+ "▁est aba",
+ "▁estab a",
+ "▁esta ba",
+ "▁set tembre",
+ "▁sett embre",
+ "circ le",
+ "cir cle",
+ "▁f ais",
+ "▁fa is",
+ "▁m yst",
+ "▁my st",
+ "▁arch iv",
+ "▁ archiv",
+ "d ynamic",
+ "j à",
+ "it as",
+ "ita s",
+ "▁я кий",
+ "▁d or",
+ "▁do r",
+ "▁ dor",
+ "▁Am azon",
+ "▁Ama zon",
+ "▁ne ces",
+ "▁Mar cel",
+ "▁Marc el",
+ "▁e lla",
+ "▁el la",
+ "▁ell a",
+ "▁ ella",
+ "ро к",
+ "р ок",
+ "▁Pennsylvan ia",
+ "cul ar",
+ "cu lar",
+ "c ular",
+ "Pa ck",
+ "P ack",
+ "it age",
+ "ita ge",
+ "▁B urn",
+ "▁Bu rn",
+ "▁Bur n",
+ "▁R O",
+ "▁ RO",
+ "▁о ни",
+ "▁он и",
+ "▁ они",
+ "~ $",
+ "Te X",
+ "as sign",
+ "ass ign",
+ "▁be at",
+ "id ense",
+ "iden se",
+ "ac ent",
+ "ace nt",
+ "a cent",
+ "Al ert",
+ "▁str ateg",
+ "▁strat eg",
+ "▁mån aden",
+ "LO C",
+ "L OC",
+ "▁c atalog",
+ "▁cat alog",
+ "▁catal og",
+ "▁ catalog",
+ "print StackTrace",
+ "() ).",
+ "()) .",
+ "( )).",
+ "us ted",
+ "ust ed",
+ "u sted",
+ "▁Frame work",
+ "▁ Framework",
+ "EC K",
+ "E CK",
+ "▁a té",
+ "▁at é",
+ "Frame work",
+ "▁att acks",
+ "▁attack s",
+ "▁B ert",
+ "▁Be rt",
+ "▁Ber t",
+ "▁т ран",
+ "▁тра н",
+ ": %",
+ "ar si",
+ "ars i",
+ "not ation",
+ "▁log ical",
+ "▁logic al",
+ "we et",
+ "▁vis ited",
+ "▁visit ed",
+ "br u",
+ "b ru",
+ "▁sur prise",
+ "▁surpr ise",
+ "^ ^",
+ "in ale",
+ "inal e",
+ "ina le",
+ "rem ote",
+ "'} ,",
+ "' },",
+ "Syn tax",
+ "S yntax",
+ "ia ne",
+ "ian e",
+ "i ane",
+ "on nen",
+ "onn en",
+ "onne n",
+ "▁bre aking",
+ "▁break ing",
+ "par ser",
+ "parse r",
+ "ap k",
+ "a pk",
+ "▁Mig uel",
+ "▁ §",
+ "▁act ing",
+ "▁ac ting",
+ "▁g ebru",
+ "▁ge bru",
+ "▁geb ru",
+ "At Index",
+ "ють ся",
+ "ю ться",
+ "▁of fers",
+ "▁off ers",
+ "▁offer s",
+ "▁p rac",
+ "▁pr ac",
+ "▁pra c",
+ "▁g rant",
+ "▁gr ant",
+ "▁gra nt",
+ "▁gran t",
+ "tern oon",
+ "▁ac quired",
+ "▁acqu ired",
+ "▁N y",
+ "▁com ma",
+ "▁comm a",
+ "ní k",
+ "n ík",
+ "▁St ep",
+ "▁Ste p",
+ "▁ Step",
+ "in ners",
+ "inn ers",
+ "inner s",
+ "▁S A",
+ "▁ SA",
+ "▁w at",
+ "▁wa t",
+ "da ys",
+ "day s",
+ "d ays",
+ "▁rect angle",
+ "da r",
+ "d ar",
+ "▁t rac",
+ "▁tr ac",
+ "▁tra c",
+ "▁Ind ones",
+ "▁feed back",
+ "▁bre aks",
+ "▁break s",
+ "part ition",
+ "ic ans",
+ "ica ns",
+ "ican s",
+ "▁Not ices",
+ "▁Notice s",
+ "▁impro ved",
+ "▁improve d",
+ "▁improv ed",
+ "▁impr oved",
+ "ph an",
+ "pha n",
+ "p han",
+ "▁differ ential",
+ "▁different ial",
+ "▁differenti al",
+ "script s",
+ "scri pts",
+ "▁X III",
+ "▁XII I",
+ "▁XI II",
+ "▁L abor",
+ "▁La bor",
+ "▁Lab or",
+ "▁prec ision",
+ "▁precis ion",
+ "▁s eed",
+ "▁se ed",
+ "▁see d",
+ "▁ seed",
+ "bund le",
+ "b undle",
+ "id ents",
+ "ident s",
+ "iden ts",
+ "hr e",
+ "h re",
+ "▁Doug las",
+ "ul d",
+ "u ld",
+ "▁second ary",
+ "▁seconda ry",
+ "▁b rig",
+ "▁br ig",
+ "▁confirm ed",
+ "▁confir med",
+ "▁cla ims",
+ "▁claim s",
+ "Ro le",
+ "R ole",
+ "▁Jew ish",
+ "▁p řed",
+ "▁př ed",
+ "▁ho tel",
+ "▁hot el",
+ "▁comp te",
+ "▁compt e",
+ "▁rec ursive",
+ "▁recurs ive",
+ "](# )",
+ "▁rot ate",
+ "▁ rotate",
+ "▁ch rome",
+ "▁chr ome",
+ "▁chrom e",
+ "▁ chrome",
+ "in ea",
+ "ine a",
+ "i nea",
+ "%; \r",
+ "% ;\r",
+ "▁En vironment",
+ "▁ Environment",
+ "pl atz",
+ "pla tz",
+ "▁Sing le",
+ "▁Sin gle",
+ "▁ Single",
+ "▁s event",
+ "▁se vent",
+ "▁seven t",
+ "▁pos ting",
+ "▁post ing",
+ "▁de aling",
+ "▁deal ing",
+ "param eters",
+ "parameter s",
+ "гра ф",
+ "Auth entication",
+ "to uch",
+ "t ouch",
+ "A z",
+ "▁g ray",
+ "▁gr ay",
+ "▁gra y",
+ "▁ gray",
+ "en cing",
+ "enc ing",
+ "enci ng",
+ "bold math",
+ "▁сай те",
+ "▁сайт е",
+ "▁Z a",
+ "an je",
+ "▁p olar",
+ "▁po lar",
+ "▁pol ar",
+ "▁у ли",
+ "ki l",
+ "k il",
+ "▁h over",
+ "▁ho ver",
+ "▁ hover",
+ "▁RE ST",
+ "▁C ome",
+ "▁Com e",
+ "▁Co me",
+ "▁ Come",
+ "j b",
+ "▁Georg ia",
+ "▁Est ado",
+ "▁Esta do",
+ "▁Estad o",
+ "Output Stream",
+ "ћ и",
+ "▁d ump",
+ "▁du mp",
+ "▁ dump",
+ "▁A ge",
+ "▁Ag e",
+ "▁ Age",
+ "▁s wo",
+ "▁sw o",
+ "m obile",
+ "oc cup",
+ "occ up",
+ "ше го",
+ "ш его",
+ "▁const itution",
+ "▁constitu tion",
+ "▁constit ution",
+ "go od",
+ "g ood",
+ "ak u",
+ "a ku",
+ "▁а нг",
+ "▁ан г",
+ "▁ анг",
+ "ie ck",
+ "iec k",
+ "▁Ps ych",
+ "▁ro ots",
+ "▁root s",
+ "▁v est",
+ "▁ve st",
+ "▁ves t",
+ "▁ vest",
+ "▁го дах",
+ "▁года х",
+ "▁Rep ública",
+ "▁p ian",
+ "▁pi an",
+ "▁pia n",
+ "igr ation",
+ "▁pr éc",
+ "▁pré c",
+ "▁gener ates",
+ "▁generate s",
+ "L Y",
+ "( `",
+ "▁= ~",
+ "ше ния",
+ "▁R ah",
+ "▁Ra h",
+ "▁connect ing",
+ "ž í",
+ "▁f ő",
+ "▁a ppel",
+ "▁app el",
+ "▁ap pel",
+ "▁appe l",
+ "▁Rail way",
+ "г ли",
+ "▁dével opp",
+ "▁a po",
+ "▁ap o",
+ "fr an",
+ "fra n",
+ "f ran",
+ "▁im mediate",
+ "▁immedi ate",
+ "во го",
+ "в ого",
+ "Run ner",
+ "ä g",
+ "Some thing",
+ "S omething",
+ "▁gén éra",
+ "Event Args",
+ "in ction",
+ "inc tion",
+ "inct ion",
+ "gl y",
+ "g ly",
+ "▁D ue",
+ "▁Du e",
+ "▁p rost",
+ "▁pro st",
+ "▁pr ost",
+ "▁pros t",
+ "▁refer ring",
+ "▁j og",
+ "▁jo g",
+ "▁exec utable",
+ "▁execut able",
+ "▁D ream",
+ "▁Dre am",
+ "ac s",
+ "a cs",
+ "▁C ole",
+ "▁Col e",
+ "▁Co le",
+ "am pf",
+ "amp f",
+ "▁B is",
+ "▁Bi s",
+ "▁ию ня",
+ "li eder",
+ "lied er",
+ "lie der",
+ "l ieder",
+ "те к",
+ "т ек",
+ "▁v b",
+ "▁ vb",
+ "▁m om",
+ "▁mo m",
+ "▁: (",
+ "▁ :(",
+ "▁der nier",
+ "▁derni er",
+ "' =>",
+ "▁э того",
+ "▁это го",
+ "▁ne ue",
+ "▁neu e",
+ "▁Ч а",
+ "▁weiter e",
+ "▁weit ere",
+ "▁al leg",
+ "▁all eg",
+ "▁alle g",
+ "▁re ality",
+ "▁real ity",
+ "▁jud ge",
+ "▁B alt",
+ "▁Ba lt",
+ "▁Bal t",
+ "▁t hin",
+ "▁th in",
+ "▁G ed",
+ "▁Ge d",
+ "ie val",
+ "iev al",
+ "i eval",
+ "m x",
+ "ці ональ",
+ "▁вы пу",
+ "▁I X",
+ "▁ IX",
+ "▁bl ind",
+ "▁Mo tor",
+ "▁Mot or",
+ "▁ш а",
+ "▁ ша",
+ "▁approxim ation",
+ "da m",
+ "d am",
+ "▁f og",
+ "▁fo g",
+ "▁ fog",
+ "ко р",
+ "к ор",
+ "▁W rit",
+ "▁l ing",
+ "▁li ng",
+ "▁lin g",
+ "▁ ling",
+ "▁пи са",
+ "▁ писа",
+ "▁M ars",
+ "▁Mar s",
+ "▁Ma rs",
+ "ot ti",
+ "ott i",
+ "En um",
+ "E num",
+ "▁T rib",
+ "▁Tr ib",
+ "▁Tri b",
+ "▁m erc",
+ "▁me rc",
+ "▁mer c",
+ "zu ng",
+ "z ung",
+ "van ced",
+ "v anced",
+ "cf g",
+ "c fg",
+ "на х",
+ "sch en",
+ "sc hen",
+ "sche n",
+ "s chen",
+ "\"] .",
+ "\" ].",
+ "be k",
+ "b ek",
+ "▁s ter",
+ "▁st er",
+ "▁ste r",
+ "▁ ster",
+ "j p",
+ "▁R ap",
+ "▁Ra p",
+ "▁rec ording",
+ "▁record ing",
+ "▁pe int",
+ "▁l ets",
+ "▁le ts",
+ "▁let s",
+ "▁ lets",
+ "än ge",
+ "äng e",
+ ">\" ;",
+ "> \";",
+ "▁міс це",
+ "▁c aval",
+ "▁ca val",
+ "▁cav al",
+ "▁C SV",
+ "▁CS V",
+ "▁ent stand",
+ "▁hel per",
+ "▁help er",
+ "▁ helper",
+ "en det",
+ "end et",
+ "ende t",
+ "▁G ram",
+ "▁Gr am",
+ "▁Gra m",
+ "▁D iego",
+ "▁Die go",
+ "▁Di ego",
+ "▁B ishop",
+ "▁Bi shop",
+ "TA G",
+ "T AG",
+ "▁e cc",
+ "▁ec c",
+ "▁E en",
+ "▁A V",
+ "▁ AV",
+ "C ity",
+ "▁Gu ide",
+ "hi nd",
+ "hin d",
+ "h ind",
+ "ri cal",
+ "ric al",
+ "rica l",
+ "r ical",
+ "▁Ос нов",
+ "Bu s",
+ "B us",
+ "▁z unächst",
+ "▁t ick",
+ "▁ti ck",
+ "▁ tick",
+ "▁Col onel",
+ "Th anks",
+ "Thank s",
+ "▁f erm",
+ "▁fe rm",
+ "▁fer m",
+ "▁gr anted",
+ "▁gran ted",
+ "▁grant ed",
+ "▁th reshold",
+ "omorph ic",
+ "▁H un",
+ "▁Hu n",
+ "en is",
+ "eni s",
+ "e nis",
+ "▁п рав",
+ "▁пра в",
+ "▁ прав",
+ "▁я кі",
+ "▁як і",
+ "P G",
+ "▁w s",
+ "▁ ws",
+ "▁techn ical",
+ "▁techni cal",
+ "est ro",
+ "estr o",
+ "kl är",
+ "k lär",
+ "va rs",
+ "var s",
+ "v ars",
+ "oc rat",
+ "ocr at",
+ "▁оп шти",
+ "on so",
+ "ons o",
+ "ib a",
+ "i ba",
+ "▁S ave",
+ "▁Sa ve",
+ "▁Sav e",
+ "▁ Save",
+ "▁program a",
+ "▁в ъ",
+ "▁inv ån",
+ ">( )",
+ "> ()",
+ "▁me jor",
+ "▁с лова",
+ "▁сло ва",
+ "▁rep lacement",
+ "▁replace ment",
+ "▁repla cement",
+ "▁im pr",
+ "▁imp r",
+ "▁Frances co",
+ "▁Ho tel",
+ "▁Hot el",
+ "▁UP DATE",
+ "▁ UPDATE",
+ "▁му зы",
+ "ug s",
+ "u gs",
+ "va rd",
+ "var d",
+ "v ard",
+ "▁f az",
+ "▁fa z",
+ "in ton",
+ "int on",
+ "into n",
+ "▁ar ts",
+ "▁art s",
+ "▁ arts",
+ "▁K y",
+ "▁I ls",
+ "▁Il s",
+ "▁s era",
+ "▁se ra",
+ "▁ser a",
+ "▁Vol ume",
+ "▁ Volume",
+ "▁gi ugno",
+ "▁a sym",
+ "▁as ym",
+ "▁P ir",
+ "▁Pi r",
+ "▁N AS",
+ "▁NA S",
+ "▁T am",
+ "▁Ta m",
+ "ě l",
+ "Se qu",
+ "Seq u",
+ "S equ",
+ "km al",
+ "k mal",
+ "▁E ins",
+ "▁Ein s",
+ "▁ком па",
+ "▁комп а",
+ "ob e",
+ "o be",
+ "oo r",
+ "o or",
+ "▁he ap",
+ "ct l",
+ "c tl",
+ "▁separ ately",
+ "▁separate ly",
+ "re ader",
+ "read er",
+ "rea der",
+ "▁signific antly",
+ "▁significant ly",
+ "▁L ag",
+ "▁La g",
+ "no tes",
+ "not es",
+ "note s",
+ "n otes",
+ "▁s ele",
+ "▁se le",
+ "▁sel e",
+ "▁dedic ated",
+ "▁H ost",
+ "▁Ho st",
+ "▁ Host",
+ "cho ice",
+ "wi ng",
+ "win g",
+ "w ing",
+ "▁T itel",
+ "▁Tit el",
+ "▁Ti tel",
+ "▁befind et",
+ "lar ge",
+ "larg e",
+ "▁con ten",
+ "▁cont en",
+ "▁co nten",
+ "▁conte n",
+ "Java Script",
+ "▁de ser",
+ "▁des er",
+ "▁G ordon",
+ "▁Gor don",
+ "с пе",
+ "▁p atri",
+ "▁pat ri",
+ "▁pa tri",
+ "▁patr i",
+ "▁R andom",
+ "▁Rand om",
+ "▁Ran dom",
+ "▁ Random",
+ "▁Return s",
+ "ы м",
+ "ро ма",
+ "ром а",
+ "▁Stud ies",
+ "S l",
+ "▁fr ü",
+ "TE XT",
+ "T EXT",
+ "in ate",
+ "ina te",
+ "▁T ol",
+ "▁To l",
+ "▁every where",
+ "ar ta",
+ "art a",
+ "▁or bit",
+ "▁orb it",
+ "▁A ires",
+ "▁Air es",
+ "▁I ss",
+ "▁Is s",
+ "▁te ż",
+ "▁d iverse",
+ "▁di verse",
+ "▁divers e",
+ "▁diver se",
+ "▁n umeric",
+ "▁numer ic",
+ "▁ numeric",
+ "ma z",
+ "m az",
+ "▁m ise",
+ "▁mi se",
+ "▁mis e",
+ "▁batt ery",
+ "▁batter y",
+ "▁bat tery",
+ "▁A kadem",
+ "▁Ak adem",
+ "не ние",
+ "▁simult ane",
+ "▁D ead",
+ "▁De ad",
+ "▁cl ust",
+ "▁ot ro",
+ "▁c erca",
+ "▁cer ca",
+ "() `,",
+ "()` ,",
+ "( )`,",
+ "ro z",
+ "r oz",
+ "ă t",
+ "▁M O",
+ "▁ MO",
+ "ri ften",
+ "rift en",
+ "rif ten",
+ "import ant",
+ "▁je ho",
+ "▁find ViewById",
+ "▁ findViewById",
+ "▁con sequence",
+ "▁conse quence",
+ "▁consequ ence",
+ "▁measure d",
+ "▁meas ured",
+ "is hes",
+ "ish es",
+ "▁s ze",
+ "▁sz e",
+ "ien do",
+ "i endo",
+ "▁W ahl",
+ "▁Wa hl",
+ "st rip",
+ "str ip",
+ "AR D",
+ "▁op acity",
+ "▁ opacity",
+ "WOR D",
+ "W ORD",
+ "▁В і",
+ "▁L ocation",
+ "▁Lo cation",
+ "▁Loc ation",
+ "▁ Location",
+ "ra i",
+ "r ai",
+ "пе н",
+ "п ен",
+ "▁r if",
+ "▁ri f",
+ "▁ rif",
+ "auss ian",
+ "File Name",
+ "▁dis co",
+ "▁disc o",
+ "il en",
+ "ile n",
+ "i len",
+ "▁v agy",
+ "▁va gy",
+ "li city",
+ "lic ity",
+ "licit y",
+ "l icity",
+ "B order",
+ "▁T rack",
+ "▁Tr ack",
+ "▁Tra ck",
+ "▁ Track",
+ "бо м",
+ "б ом",
+ "fa ct",
+ "fac t",
+ "f act",
+ "ok a",
+ "o ka",
+ "▁g ior",
+ "▁gi or",
+ "▁ gior",
+ "▁XV II",
+ "▁XVI I",
+ "▁d är",
+ "Si te",
+ "S ite",
+ "ał o",
+ "a ło",
+ "sk á",
+ "s ká",
+ "▁pix els",
+ "▁pixel s",
+ "vi ty",
+ "v ity",
+ "j Query",
+ "▁sc ulpt",
+ "▁c argo",
+ "▁car go",
+ "▁direct ive",
+ "▁w al",
+ "▁wa l",
+ "▁ wal",
+ "▁c onna",
+ "▁con na",
+ "▁conn a",
+ "▁Th rough",
+ "▁э том",
+ "▁это м",
+ "St atic",
+ "Stat ic",
+ "oms nitt",
+ "▁r und",
+ "▁run d",
+ "▁ru nd",
+ "▁ rund",
+ "▁c laimed",
+ "▁claim ed",
+ "з ня",
+ "sh a",
+ "s ha",
+ "▁r ag",
+ "▁ra g",
+ "▁ rag",
+ "cre ment",
+ "cr ement",
+ "▁fün f",
+ "▁r ival",
+ "▁riv al",
+ "▁ri val",
+ "▁ rival",
+ "ri n",
+ "r in",
+ "sl ash",
+ "▁th irty",
+ "s leep",
+ "оло ги",
+ "о логи",
+ "S M",
+ "ga te",
+ "gat e",
+ "g ate",
+ "iz ations",
+ "ization s",
+ "vi k",
+ "v ik",
+ "▁b less",
+ "▁bl ess",
+ "▁ble ss",
+ "▁Ill inois",
+ "▁T E",
+ "▁ TE",
+ "ut ing",
+ "uti ng",
+ "u ting",
+ "▁sol ving",
+ "GE R",
+ "G ER",
+ "▁X IV",
+ "▁XI V",
+ "▁Ind ians",
+ "▁India ns",
+ "▁Indian s",
+ "ex press",
+ "exp ress",
+ "expr ess",
+ "▁H eil",
+ "▁He il",
+ "▁mu jer",
+ "▁invån are",
+ "'] );",
+ "']) ;",
+ "' ]);",
+ "▁a ur",
+ "▁au r",
+ "▁ aur",
+ "bo ost",
+ "G O",
+ "▁n in",
+ "▁ni n",
+ "to k",
+ "t ok",
+ "go d",
+ "g od",
+ "ot er",
+ "ote r",
+ "o ter",
+ ")$ $",
+ ") $$",
+ "▁desc end",
+ "р ю",
+ "▁L anguage",
+ "▁ Language",
+ "▁d iver",
+ "▁di ver",
+ "▁div er",
+ "▁Ass uming",
+ "▁fre quent",
+ "▁frequ ent",
+ "ч ні",
+ "▁Bi ography",
+ ", [",
+ "ur m",
+ "u rm",
+ "▁walk ed",
+ "▁wal ked",
+ "▁feder al",
+ "▁fed eral",
+ "▁Mich igan",
+ "▁fact s",
+ "▁fac ts",
+ "▁In tegr",
+ "▁Int egr",
+ "▁ Integr",
+ "LE S",
+ "L ES",
+ "▁A lan",
+ "▁Al an",
+ "▁c oup",
+ "▁co up",
+ "▁cou p",
+ "Be r",
+ "B er",
+ "▁p articles",
+ "▁part icles",
+ "▁partic les",
+ "▁particle s",
+ "▁parti cles",
+ "ћ е",
+ "Infl ater",
+ "+ (",
+ "Bo und",
+ "B ound",
+ "▁S ü",
+ "A udio",
+ "cite t",
+ "cit et",
+ "c itet",
+ "ye ct",
+ "y ect",
+ "▁n r",
+ "▁ nr",
+ "x e",
+ "▁B run",
+ "▁Br un",
+ "▁Bru n",
+ "▁_ ,",
+ "▁ _,",
+ "av or",
+ "avo r",
+ "a vor",
+ "▁dis cipl",
+ "al m",
+ "a lm",
+ "▁но ября",
+ "▁S SL",
+ "▁SS L",
+ "▁ SSL",
+ "▁Ka iser",
+ "▁Kais er",
+ "▁re cher",
+ "▁rec her",
+ "yg on",
+ "y gon",
+ "▁regard less",
+ "▁config ur",
+ "▁un necess",
+ "▁Cl ark",
+ "▁Clar k",
+ "PH P",
+ "P HP",
+ "▁F ALSE",
+ "▁ FALSE",
+ "▁p ad",
+ "▁pa d",
+ "▁ pad",
+ "$ }",
+ "▁v alu",
+ "▁val u",
+ "▁va lu",
+ "▁ valu",
+ "▁dise ase",
+ "▁ma ior",
+ "▁mai or",
+ "▁h ommes",
+ "▁hom mes",
+ "▁homme s",
+ "▁Ed ition",
+ "▁Edit ion",
+ "sl ant",
+ "s lant",
+ "▁en ding",
+ "▁end ing",
+ "▁ ending",
+ "▁sett led",
+ "ur us",
+ "uru s",
+ "u rus",
+ "he d",
+ "h ed",
+ "Pat tern",
+ "▁го дина",
+ "▁годи на",
+ "▁Phil adel",
+ "tikz picture",
+ "▁co al",
+ "▁s ede",
+ "▁se de",
+ "▁sed e",
+ "▁satisf ies",
+ "▁t rim",
+ "▁tr im",
+ "▁tri m",
+ "▁ trim",
+ "▁b at",
+ "▁ba t",
+ "▁ bat",
+ "▁améric ain",
+ "▁lug lio",
+ "▁по ча",
+ "▁поч а",
+ "ff ff",
+ "fff f",
+ "f fff",
+ "▁T arget",
+ "▁Tar get",
+ "▁ Target",
+ "gener ate",
+ "▁Z ie",
+ "ți a",
+ "ț ia",
+ "▁g ard",
+ "▁gar d",
+ "▁ga rd",
+ "▁work ers",
+ "▁worker s",
+ "▁J ob",
+ "▁Jo b",
+ "▁ Job",
+ "▁ur ban",
+ "▁urb an",
+ "▁ urban",
+ "ah len",
+ "ahl en",
+ "a hlen",
+ "▁Build ing",
+ "▁n eu",
+ "▁ne u",
+ "▁ch ron",
+ "▁chr on",
+ "▁ chron",
+ "▁Ear l",
+ "gr o",
+ "g ro",
+ "US E",
+ "U SE",
+ "▁X II",
+ "▁XI I",
+ "▁we alth",
+ "▁ wealth",
+ "in ae",
+ "ina e",
+ "▁Б ра",
+ "▁li bert",
+ "▁lib ert",
+ "▁liber t",
+ "ir os",
+ "iro s",
+ "i ros",
+ ": $",
+ "le e",
+ "l ee",
+ "ie ves",
+ "ieve s",
+ "iev es",
+ "▁Just ice",
+ "▁o il",
+ "▁Ath let",
+ "▁c lo",
+ "▁cl o",
+ "▁ clo",
+ "Sc ale",
+ "Scal e",
+ "▁l ips",
+ "▁li ps",
+ "▁lip s",
+ "▁a pril",
+ "▁ap ril",
+ "▁apr il",
+ "▁im pression",
+ "▁imp ression",
+ "▁impr ession",
+ "▁impress ion",
+ "▁per ce",
+ "▁уча сти",
+ "▁участ и",
+ "vi l",
+ "v il",
+ "éc h",
+ "é ch",
+ "▁e quality",
+ "▁equ ality",
+ "▁equal ity",
+ "▁ equality",
+ "▁м ет",
+ "▁ме т",
+ "▁ мет",
+ "▁an notation",
+ "▁annot ation",
+ "▁ annotation",
+ "er nal",
+ "ern al",
+ "erna l",
+ "▁M ach",
+ "▁Ma ch",
+ "▁Mac h",
+ "▁int itul",
+ "pro blem",
+ "prob lem",
+ "ющи х",
+ "ю щих",
+ "op lus",
+ "o plus",
+ "▁thous ands",
+ "▁thousand s",
+ "▁calcul ations",
+ "▁calculation s",
+ "▁calc ulations",
+ "um ps",
+ "ump s",
+ "▁tri angle",
+ "▁ triangle",
+ "ph al",
+ "pha l",
+ "p hal",
+ "▁D orf",
+ "▁Do rf",
+ "▁Dor f",
+ "▁doll ars",
+ "▁d enen",
+ "▁de nen",
+ "▁den en",
+ "l ès",
+ "ol id",
+ "oli d",
+ "▁Result s",
+ "▁ Results",
+ "▁Stad ium",
+ "▁D esp",
+ "▁De sp",
+ "▁Des p",
+ "▁E isen",
+ "im ir",
+ "imi r",
+ "i mir",
+ "▁s otto",
+ "▁so tto",
+ "▁sott o",
+ "▁č i",
+ "▁ či",
+ "at able",
+ "ata ble",
+ "a table",
+ "or um",
+ "oru m",
+ "o rum",
+ "▁conver gence",
+ "▁je une",
+ "▁jeu ne",
+ "ok ing",
+ "oki ng",
+ "o king",
+ "▁жи во",
+ "ain ing",
+ "ai ning",
+ "a ining",
+ "po inter",
+ "point er",
+ "cul o",
+ "cu lo",
+ "c ulo",
+ "▁js ou",
+ "▁g rab",
+ "▁gr ab",
+ "▁gra b",
+ "ak te",
+ "akt e",
+ "a kte",
+ "▁ho ping",
+ "▁hop ing",
+ "▁M ak",
+ "▁Ma k",
+ "▁s ag",
+ "▁sa g",
+ "origin e",
+ "orig ine",
+ "▁по след",
+ "▁после д",
+ "▁V eg",
+ "▁Ve g",
+ "▁the oret",
+ "▁T ru",
+ "▁Tr u",
+ "ne ment",
+ "nem ent",
+ "n ement",
+ "▁f aces",
+ "▁fa ces",
+ "▁face s",
+ "▁fac es",
+ "▁ faces",
+ "H or",
+ "Jo in",
+ "J oin",
+ "ar el",
+ "are l",
+ "a rel",
+ "▁о коло",
+ "▁ок оло",
+ "How ever",
+ "▁c atal",
+ "▁ca tal",
+ "▁cat al",
+ "▁ catal",
+ "bo urg",
+ "bour g",
+ "b ourg",
+ "▁mysql i",
+ "▁mysq li",
+ "▁ mysqli",
+ "ac ions",
+ "acion s",
+ "aci ons",
+ "▁Init ial",
+ "▁ Initial",
+ "▁r ain",
+ "▁ra in",
+ "▁ rain",
+ "it ure",
+ "itu re",
+ "▁Sci ences",
+ "▁Science s",
+ "▁Kre is",
+ "._ _",
+ ". __",
+ "▁cin q",
+ "▁A uß",
+ "▁Au ß",
+ "ith met",
+ "it ors",
+ "ito rs",
+ "itor s",
+ "am azon",
+ "ama zon",
+ "▁g ap",
+ "▁ga p",
+ "▁ign ored",
+ "▁ignore d",
+ "▁ignor ed",
+ "ad v",
+ "ко ї",
+ "▁ча сть",
+ "▁час ть",
+ "▁част ь",
+ "▁cor por",
+ "▁corpo r",
+ "це р",
+ "ц ер",
+ "▁cr ime",
+ "▁cri me",
+ "▁crim e",
+ "uo us",
+ "u ous",
+ "▁на лази",
+ "Data Frame",
+ "во ди",
+ "вод и",
+ "Ig n",
+ "I gn",
+ "▁Lin coln",
+ "▁me nos",
+ "▁men os",
+ "▁Lu ft",
+ "▁L ind",
+ "▁Li nd",
+ "▁Lin d",
+ "▁C ook",
+ "▁Co ok",
+ "▁ Cook",
+ "▁material s",
+ "ap ped",
+ "app ed",
+ "appe d",
+ "a pped",
+ "ign ore",
+ "▁от кры",
+ "fr ied",
+ "fri ed",
+ "f ried",
+ "▁gouvern ement",
+ "▁f ired",
+ "▁fire d",
+ "▁fi red",
+ "▁fir ed",
+ "▁screen shot",
+ "▁screens hot",
+ "се н",
+ "с ен",
+ "▁[ (",
+ "▁ [(",
+ "▁органи за",
+ "Graph ics",
+ "▁про ти",
+ "▁p hen",
+ "▁ph en",
+ "▁ phen",
+ "cr aft",
+ "cra ft",
+ "c raft",
+ "▁b rain",
+ "▁br ain",
+ "▁bra in",
+ "▁C omo",
+ "▁Com o",
+ "▁Co mo",
+ "▁Every thing",
+ "an es",
+ "ane s",
+ "a nes",
+ "IG N",
+ "I GN",
+ "▁n ederbörd",
+ "▁ nederbörd",
+ "▁For est",
+ "▁Fore st",
+ "▁Fo rest",
+ "za hl",
+ "z ahl",
+ "▁Am ong",
+ "Q t",
+ "▁to gg",
+ "▁tog g",
+ "▁vari ant",
+ "▁ variant",
+ "▁h ill",
+ "▁hi ll",
+ "▁ hill",
+ "пи си",
+ "пис и",
+ "col on",
+ "co lon",
+ "colo n",
+ "▁dic embre",
+ "го р",
+ "г ор",
+ "▁W ind",
+ "▁Win d",
+ "▁Wi nd",
+ "ünst ler",
+ "▁= \\",
+ "▁ =\\",
+ "sa ved",
+ "save d",
+ "s aved",
+ "▁n ej",
+ "▁ne j",
+ "▁ nej",
+ "un te",
+ "unt e",
+ "ut to",
+ "utt o",
+ "u tto",
+ "▁rec ens",
+ "▁rece ns",
+ "▁s ick",
+ "▁si ck",
+ "▁sic k",
+ "▁d esen",
+ "▁de sen",
+ "▁des en",
+ "US T",
+ "U ST",
+ "▁wor st",
+ "▁An gel",
+ "▁Ang el",
+ "od ox",
+ "odo x",
+ "▁Prov ince",
+ "▁Provin ce",
+ "▁M az",
+ "▁Ma z",
+ "▁agre ement",
+ "▁agree ment",
+ "▁B ass",
+ "▁Bas s",
+ "▁Ba ss",
+ "▁seg unda",
+ "on ces",
+ "once s",
+ "onc es",
+ "▁Lin ki",
+ "▁Link i",
+ "▁C L",
+ "▁ CL",
+ "▁j á",
+ "it ement",
+ "ite ment",
+ "item ent",
+ "▁á rea",
+ "▁ár ea",
+ "▁scal ar",
+ "▁scala r",
+ "▁Р ес",
+ "▁Ре с",
+ "aw t",
+ "a wt",
+ "si eme",
+ "▁j uni",
+ "▁ju ni",
+ "▁jun i",
+ "▁худо ж",
+ "ik us",
+ "iku s",
+ "▁l id",
+ "▁li d",
+ "pp el",
+ "ppe l",
+ "p pel",
+ "av i",
+ "a vi",
+ "▁bal ance",
+ "ip ping",
+ "ipp ing",
+ "ippi ng",
+ "i pping",
+ "cuss ion",
+ "че ских",
+ "(\" .",
+ "( \".",
+ "Al so",
+ "▁w his",
+ "▁wh is",
+ "HO ME",
+ "▁b rown",
+ "▁br own",
+ "▁bro wn",
+ "▁brow n",
+ "▁d ía",
+ "▁dí a",
+ "▁pu ò",
+ "plot lib",
+ "▁Jahrhundert s",
+ "D K",
+ "▁an chor",
+ "▁anc hor",
+ "▁anch or",
+ "▁ anchor",
+ ".. .]",
+ "... ]",
+ "▁Aust ria",
+ "▁m arca",
+ "▁mar ca",
+ "▁marc a",
+ "▁g ez",
+ "▁ge z",
+ "ious ly",
+ "i ously",
+ "▁l azy",
+ "▁la zy",
+ "x a",
+ "▁Ch annel",
+ "▁Chan nel",
+ "▁ Channel",
+ "▁ne uen",
+ "▁neue n",
+ "▁neu en",
+ "da s",
+ "d as",
+ "▁search ed",
+ "▁sta at",
+ "▁ staat",
+ "▁Та к",
+ "▁Jo sef",
+ "▁Jose f",
+ "▁Jos ef",
+ "▁S her",
+ "▁Sh er",
+ "▁She r",
+ "po is",
+ "p ois",
+ "▁e nem",
+ "▁en em",
+ "▁access ing",
+ "▁не ко",
+ "▁fur ono",
+ "▁pse udo",
+ "▁pseud o",
+ "? >",
+ "▁estado un",
+ "▁estad oun",
+ "▁Ви ди",
+ "▁mot iv",
+ "▁re call",
+ "▁rec all",
+ "is son",
+ "iss on",
+ "i sson",
+ "ó b",
+ ")- -",
+ ") --",
+ "▁E rz",
+ "▁Er z",
+ "▁са вез",
+ "Dir ect",
+ "Di rect",
+ "D irect",
+ "со б",
+ "с об",
+ "▁s ho",
+ "▁sh o",
+ "v ölker",
+ "A p",
+ "ge ns",
+ "gen s",
+ "g ens",
+ "ниш тво",
+ "▁Am sterdam",
+ "us k",
+ "u sk",
+ "п ло",
+ "▁sim ulation",
+ "▁B C",
+ "▁ BC",
+ "▁W oj",
+ "▁Wo j",
+ "au tom",
+ "aut om",
+ "auto m",
+ "Al ex",
+ "A lex",
+ "▁econom ic",
+ "▁econ omic",
+ "го м",
+ "г ом",
+ "ik ai",
+ "ika i",
+ "▁a ltre",
+ "▁al tre",
+ "▁alt re",
+ "▁' -",
+ "▁ '-",
+ "▁W eg",
+ "▁We g",
+ "Not Found",
+ "й ской",
+ "▁convert ing",
+ "▁conver ting",
+ "ph abet",
+ "pha bet",
+ "at rice",
+ "atr ice",
+ "atri ce",
+ "bour ne",
+ "al om",
+ "alo m",
+ "▁comp aring",
+ "▁compar ing",
+ "▁Z o",
+ "▁f la",
+ "▁fl a",
+ "ва я",
+ "▁en tra",
+ "▁ent ra",
+ "▁entr a",
+ "▁char set",
+ "▁chars et",
+ "develop ers",
+ "developer s",
+ "íst ica",
+ "} >",
+ "▁J azz",
+ "▁Ja zz",
+ "▁How ard",
+ "▁Ho ward",
+ "ш та",
+ "▁cl one",
+ "▁clo ne",
+ "▁ clone",
+ "do or",
+ "d oor",
+ "▁P in",
+ "▁Pi n",
+ "** *",
+ "* **",
+ "▁sil ent",
+ "ec ycle",
+ "e cycle",
+ "is ce",
+ "isc e",
+ "i sce",
+ "▁m ud",
+ "▁mu d",
+ "▁Dis play",
+ "▁ Display",
+ "▁l ip",
+ "▁li p",
+ "▁ lip",
+ "▁исполь зова",
+ "▁character istic",
+ "▁s b",
+ "▁ sb",
+ "fire base",
+ "▁B ew",
+ "▁Be w",
+ "Cal endar",
+ "▁u so",
+ "▁us o",
+ "▁ uso",
+ "ès e",
+ "è se",
+ "▁R at",
+ "▁Ra t",
+ "▁es per",
+ "▁espe r",
+ "▁esp er",
+ "▁ esper",
+ "▁throw ing",
+ "▁thro wing",
+ "▁ro dz",
+ "▁rod z",
+ "▁y ards",
+ "▁yard s",
+ "▁g rass",
+ "▁gr ass",
+ "▁gra ss",
+ "▁mar ker",
+ "▁mark er",
+ "▁ marker",
+ "▁K os",
+ "▁Ko s",
+ "Th eta",
+ "The ta",
+ "▁organ is",
+ "ker nel",
+ "kern el",
+ "k ernel",
+ "▁person as",
+ "▁pers onas",
+ "▁persona s",
+ "ke ep",
+ "kee p",
+ "▁exc laimed",
+ "os lav",
+ "▁Ent ertain",
+ "▁Enter tain",
+ "не р",
+ "н ер",
+ "▁in won",
+ "▁R and",
+ "▁Ra nd",
+ "▁Ran d",
+ "red uce",
+ "redu ce",
+ "fa c",
+ "f ac",
+ "ex pression",
+ "exp ression",
+ "expr ession",
+ "express ion",
+ "y j",
+ "▁differ enti",
+ "▁different i",
+ "ag lia",
+ "agli a",
+ "▁tem plates",
+ "▁template s",
+ "▁ templates",
+ "▁m ű",
+ "▁p rv",
+ "▁pr v",
+ "▁m ois",
+ "▁mo is",
+ "▁moi s",
+ "▁gew ann",
+ "▁бу ла",
+ "bib li",
+ "b ibli",
+ "de mo",
+ "dem o",
+ "d emo",
+ "▁And erson",
+ "▁Anders on",
+ "▁ре д",
+ "▁ ред",
+ "▁por que",
+ "▁P ologne",
+ "▁Pol ogne",
+ "▁t rip",
+ "▁tr ip",
+ "▁tri p",
+ "▁exem ple",
+ "▁exempl e",
+ "▁Intern acional",
+ "▁ка о",
+ "In sert",
+ "gen eral",
+ "gener al",
+ "SE SSION",
+ "ber ga",
+ "berg a",
+ "hä lt",
+ "h ält",
+ "un as",
+ "una s",
+ "u nas",
+ "ми ра",
+ "мир а",
+ "▁yield s",
+ "map sto",
+ "maps to",
+ "sp ot",
+ "s pot",
+ "▁+ \\",
+ "▁ +\\",
+ "лл а",
+ "л ла",
+ "▁precis ely",
+ "▁precise ly",
+ "▁ч лен",
+ "sh adow",
+ "Ar e",
+ "A re",
+ "un al",
+ "una l",
+ "u nal",
+ "▁dis par",
+ "▁disp ar",
+ "▁tít ulo",
+ "ne st",
+ "nes t",
+ "n est",
+ "▁L ow",
+ "▁Lo w",
+ "▁p rot",
+ "▁pro t",
+ "▁pr ot",
+ "▁C osta",
+ "▁Co sta",
+ "▁Cost a",
+ "▁Cos ta",
+ "name d",
+ "na med",
+ "nam ed",
+ "n amed",
+ "▁g ained",
+ "▁ga ined",
+ "▁gain ed",
+ "les ia",
+ "l esia",
+ "▁admin istration",
+ "▁administr ation",
+ "Im port",
+ "Imp ort",
+ "br anch",
+ "b ranch",
+ "▁sym path",
+ "vo j",
+ "v oj",
+ "▁E C",
+ "▁ EC",
+ "▁municip io",
+ "▁anim ated",
+ "▁animate d",
+ "▁direct ories",
+ "▁director ies",
+ "▁ro of",
+ "zą d",
+ "z ąd",
+ "im et",
+ "ime t",
+ "i met",
+ "pr oto",
+ "pro to",
+ "bl a",
+ "b la",
+ ": ]",
+ "ha ve",
+ "hav e",
+ "h ave",
+ "at em",
+ "ate m",
+ "a tem",
+ "▁n s",
+ "▁ ns",
+ "▁s ector",
+ "▁se ctor",
+ "▁sec tor",
+ "▁sect or",
+ "th ree",
+ "ow ane",
+ "owa ne",
+ "owan e",
+ "wer s",
+ "we rs",
+ "w ers",
+ "ов их",
+ "ови х",
+ "ren ce",
+ "r ence",
+ "▁ex tr",
+ "▁ext r",
+ "ig ten",
+ "igt en",
+ "igte n",
+ "▁occ ident",
+ "ț ă",
+ "▁e at",
+ "▁h ydro",
+ "▁hy dro",
+ "▁hyd ro",
+ "ubern etes",
+ "[ @",
+ "▁M oon",
+ "▁Mo on",
+ "▁S ho",
+ "▁Sh o",
+ "▁else where",
+ "ül ler",
+ "üll er",
+ "Up load",
+ "ла нд",
+ "лан д",
+ "л анд",
+ "▁F ör",
+ "w issenschaft",
+ "K S",
+ "▁phys ics",
+ "▁ physics",
+ "t z",
+ "▁се ред",
+ "▁Ar beit",
+ "▁Arbe it",
+ "▁ме ст",
+ "▁ мест",
+ "▁Geb iet",
+ "▁in sect",
+ "▁ins ect",
+ "▁inse ct",
+ "A h",
+ "iz ado",
+ "iza do",
+ "▁tem ple",
+ "▁temp le",
+ "▁ann ual",
+ "st ad",
+ "sta d",
+ "▁hab itat",
+ "▁habit at",
+ "▁A B",
+ "▁ AB",
+ "wo rt",
+ "wor t",
+ "w ort",
+ "▁re pos",
+ "▁rep os",
+ "▁repo s",
+ "▁N eu",
+ "▁Ne u",
+ "▁$ (\".",
+ "▁$( \".",
+ "▁$(\" .",
+ "Vor lage",
+ "▁repre zent",
+ "est anden",
+ "In tern",
+ "Int ern",
+ "Inter n",
+ ". `",
+ "▁fa iling",
+ "▁fail ing",
+ "▁M aterial",
+ "▁Mate rial",
+ "▁ Material",
+ "▁effect ively",
+ "▁effective ly",
+ "те лем",
+ "тел ем",
+ "▁г ла",
+ "▁ гла",
+ "▁na hm",
+ "▁nah m",
+ "▁ nahm",
+ "▁differ ently",
+ "▁different ly",
+ "ext ension",
+ "▁V erm",
+ "▁Ver m",
+ "▁Ve rm",
+ "en abled",
+ "ena bled",
+ "enable d",
+ "con figure",
+ "config ure",
+ "ni o",
+ "n io",
+ "ci ones",
+ "cio nes",
+ "cion es",
+ "c iones",
+ "▁B each",
+ "▁Be ach",
+ "со на",
+ "сон а",
+ "с она",
+ "▁copy ing",
+ "▁cop ying",
+ "▁у країн",
+ "▁при зна",
+ "▁приз на",
+ "z h",
+ "Des ktop",
+ "▁s ost",
+ "▁so st",
+ "▁sub sequently",
+ "▁subsequ ently",
+ "▁subsequent ly",
+ "▁Le hr",
+ "▁ ó",
+ "lä r",
+ "l är",
+ "od or",
+ "odo r",
+ "o dor",
+ "ph on",
+ "p hon",
+ "n c",
+ "iter ator",
+ "▁э ти",
+ "▁europ é",
+ "▁Tor onto",
+ "ód igo",
+ "▁p osto",
+ "▁po sto",
+ "▁pos to",
+ "▁post o",
+ "ff e",
+ "f fe",
+ "▁c rew",
+ "▁cre w",
+ "▁cr ew",
+ "▁Sch war",
+ "▁Schw ar",
+ "S a",
+ "squ are",
+ "s quare",
+ "▁be side",
+ "▁bes ide",
+ "▁М і",
+ "▁a th",
+ "▁at h",
+ "▁ ath",
+ "▁ad vent",
+ "▁adv ent",
+ "c ji",
+ "writ ten",
+ "wr itten",
+ "w ritten",
+ "▁r uss",
+ "▁ru ss",
+ "▁rus s",
+ "ro st",
+ "ros t",
+ "r ost",
+ "H I",
+ "▁d ice",
+ "▁di ce",
+ "▁dic e",
+ "cc a",
+ "c ca",
+ "▁d ép",
+ "▁dé p",
+ "pl y",
+ "p ly",
+ "big g",
+ "bi gg",
+ "b igg",
+ "zi ał",
+ "zia ł",
+ "z iał",
+ "üt t",
+ "ü tt",
+ "▁о дно",
+ "▁од но",
+ "J ECT",
+ "сь кому",
+ "сько му",
+ "ськ ому",
+ "no s",
+ "n os",
+ "mo ck",
+ "m ock",
+ "La unch",
+ "sa me",
+ "sam e",
+ "s ame",
+ "▁j obs",
+ "▁jo bs",
+ "▁job s",
+ "▁wide ly",
+ "▁wid ely",
+ "▁def ines",
+ "▁define s",
+ "▁defin es",
+ "▁P se",
+ "▁Ps e",
+ "▁neigh bour",
+ "▁neighb our",
+ "ющи е",
+ "▁cl oser",
+ "▁close r",
+ "▁clos er",
+ "▁clo ser",
+ "▁рас поло",
+ "▁распо ло",
+ "▁cl ubs",
+ "▁club s",
+ "fl y",
+ "f ly",
+ "ши м",
+ "ш им",
+ "▁suffer ed",
+ "▁suff ered",
+ "▁n ar",
+ "▁na r",
+ "▁ nar",
+ "▁l avor",
+ "▁la vor",
+ "▁lav or",
+ "Ext ension",
+ "ition ally",
+ "itional ly",
+ "▁g race",
+ "▁gr ace",
+ "▁gra ce",
+ "▁Campe onato",
+ "▁Christ mas",
+ "m iddle",
+ "oth ek",
+ "othe k",
+ "el ements",
+ "element s",
+ "ele ments",
+ "elem ents",
+ "▁son dern",
+ "▁t arde",
+ "▁tar de",
+ "▁tard e",
+ "▁perman ent",
+ "▁con clude",
+ "▁concl ude",
+ "Se g",
+ "S eg",
+ "▁а каде",
+ "}\" ,",
+ "} \",",
+ "▁февра ля",
+ "ře d",
+ "ř ed",
+ "▁I L",
+ "▁ IL",
+ "ju d",
+ "j ud",
+ "▁U SS",
+ "▁US S",
+ "▁N ature",
+ "▁Natur e",
+ "▁Nat ure",
+ "if ference",
+ "iffer ence",
+ "iffe rence",
+ "Serial izer",
+ "▁tw elve",
+ "ti d",
+ "t id",
+ "ми я",
+ "че ского",
+ "▁cal endar",
+ "▁ calendar",
+ "con cat",
+ "▁inter section",
+ "▁intersect ion",
+ "▁P A",
+ "▁ PA",
+ "az ure",
+ "azu re",
+ "▁situ ée",
+ "▁situé e",
+ "▁k inds",
+ "▁kind s",
+ "▁kin ds",
+ "▁aus ge",
+ "▁r ural",
+ "▁ru ral",
+ "Th eme",
+ "The me",
+ "▁t ale",
+ "▁tal e",
+ "▁ta le",
+ "no indent",
+ "go ing",
+ "r x",
+ "ag i",
+ "a gi",
+ "wrap per",
+ "wr apper",
+ "w rapper",
+ "▁Co ast",
+ "mb H",
+ "▁пере д",
+ "▁пе ред",
+ "sp re",
+ "spr e",
+ "s pre",
+ "▁} \\",
+ "▁ }\\",
+ "▁L I",
+ "▁ LI",
+ "zn am",
+ "zna m",
+ "z nam",
+ "it led",
+ "itle d",
+ "Sam ple",
+ "S ample",
+ "ul iar",
+ "uli ar",
+ "* \\",
+ "▁res istance",
+ "▁resist ance",
+ "st ock",
+ "sto ck",
+ "ke d",
+ "k ed",
+ "▁H E",
+ "▁ HE",
+ "▁pos session",
+ "▁poss ession",
+ "▁possess ion",
+ "▁R ing",
+ "▁Ri ng",
+ "▁m agyar",
+ "▁mag yar",
+ "ou ts",
+ "out s",
+ "o uts",
+ "▁Secret ary",
+ "nd e",
+ "n de",
+ "▁W ald",
+ "▁Wal d",
+ "▁Wa ld",
+ "- (",
+ "▁I SO",
+ "▁IS O",
+ "▁ ISO",
+ "▁af ternoon",
+ "ion en",
+ "io nen",
+ "ione n",
+ "i onen",
+ "▁st ops",
+ "▁stop s",
+ "▁sto ps",
+ "▁const ants",
+ "▁constant s",
+ "gu ard",
+ "bo w",
+ "b ow",
+ "▁e rs",
+ "▁er s",
+ "▁ ers",
+ "▁Fire base",
+ "▁C lear",
+ "▁Cl ear",
+ "▁Cle ar",
+ "▁ Clear",
+ "▁H oly",
+ "▁Hol y",
+ "▁Ho ly",
+ "W in",
+ "▁title s",
+ "▁tit les",
+ "▁т рав",
+ "▁тра в",
+ "▁cont rib",
+ "▁contr ib",
+ "▁ contrib",
+ "hä ng",
+ "h äng",
+ "▁phot ograph",
+ "▁photo graph",
+ "▁Dist ribution",
+ "if ts",
+ "ift s",
+ "▁a unque",
+ "com b",
+ "co mb",
+ "c omb",
+ "AD D",
+ "A DD",
+ "▁public ation",
+ "▁pub lication",
+ "▁publi cation",
+ "▁слу ж",
+ "▁к ня",
+ "▁ay ant",
+ "▁re store",
+ "▁r estore",
+ "▁rest ore",
+ "▁resto re",
+ "▁bel ief",
+ "▁v ég",
+ "▁vé g",
+ "▁ext ensions",
+ "▁extension s",
+ "▁extens ions",
+ "▁ extensions",
+ "▁de com",
+ "▁dec om",
+ "вши й",
+ "в ший",
+ "W T",
+ "▁par ti",
+ "▁part i",
+ "▁gi oc",
+ "▁ми ра",
+ "▁ мира",
+ "▁is su",
+ "▁iss u",
+ "pi pe",
+ "pip e",
+ "p ipe",
+ "▁pro ps",
+ "▁pr ops",
+ "▁prop s",
+ "▁ props",
+ "▁w illing",
+ "▁will ing",
+ "▁wil ling",
+ "▁n est",
+ "▁ne st",
+ "▁ nest",
+ "as o",
+ "a so",
+ "po t",
+ "p ot",
+ "▁hand les",
+ "▁handle s",
+ "▁ф о",
+ "▁ фо",
+ "▁m oder",
+ "▁mod er",
+ "▁mo der",
+ "▁mode r",
+ "▁eben falls",
+ "▁fight ing",
+ "um bn",
+ "umb n",
+ "▁trans parent",
+ "▁K rist",
+ "▁Kr ist",
+ "▁home s",
+ "▁hom es",
+ "▁ho mes",
+ "▁voy age",
+ "Fa iled",
+ "Fail ed",
+ "▁B ird",
+ "▁Bi rd",
+ "▁Bir d",
+ "▁He art",
+ "Count er",
+ "Co unter",
+ "C ounter",
+ "▁Scott ish",
+ "át ica",
+ "▁ar beit",
+ "▁ arbeit",
+ "^{ -\\",
+ "^{- \\",
+ "▁S or",
+ "▁So r",
+ "▁eng aged",
+ "▁engag ed",
+ "▁a side",
+ "▁as ide",
+ "▁asi de",
+ "▁F ou",
+ "▁Fo u",
+ "▁w iel",
+ "▁wie l",
+ "▁re const",
+ "▁recon st",
+ "ou sin",
+ "ous in",
+ "▁host ed",
+ "▁ho sted",
+ "▁hos ted",
+ "▁c lasse",
+ "▁class e",
+ "▁cl asse",
+ "▁clas se",
+ "▁con test",
+ "▁cont est",
+ "▁conte st",
+ ".. .\"",
+ "... \"",
+ "мо м",
+ "м ом",
+ "▁be an",
+ "▁ bean",
+ "ge m",
+ "g em",
+ "▁consult ato",
+ "▁b io",
+ "▁bi o",
+ "▁ bio",
+ "▁subject s",
+ "bo Box",
+ "▁Sch rift",
+ "▁d inner",
+ "▁din ner",
+ "ă r",
+ "▁r ówn",
+ "▁% %",
+ "▁ %%",
+ "ba ge",
+ "bag e",
+ "b age",
+ "▁ver öff",
+ "▁det ected",
+ "▁detect ed",
+ "ie nn",
+ "ien n",
+ "i enn",
+ "ro se",
+ "ros e",
+ "r ose",
+ "▁T on",
+ "▁To n",
+ "Comp lete",
+ "Comple te",
+ "▁pro to",
+ "▁pr oto",
+ "▁prot o",
+ "▁ proto",
+ "ich ts",
+ "icht s",
+ "i chts",
+ "ST AT",
+ "Check ed",
+ "▁in ten",
+ "▁i nten",
+ "▁int en",
+ "▁inte n",
+ "▁s mile",
+ "▁sm ile",
+ "▁st rip",
+ "▁str ip",
+ "▁stri p",
+ "▁ strip",
+ "ne ut",
+ "') ;\r",
+ "'); \r",
+ "' );\r",
+ "fo ur",
+ "f our",
+ "▁to das",
+ "▁tod as",
+ "▁toda s",
+ "Control s",
+ "▁thor ough",
+ "ru p",
+ "r up",
+ "▁држа ви",
+ "it ă",
+ "Pro tocol",
+ "К а",
+ "▁expand ed",
+ "ex tra",
+ "ext ra",
+ "op ort",
+ "opo rt",
+ "o port",
+ "▁Ста нов",
+ "le ases",
+ "lease s",
+ "▁n otion",
+ "▁not ion",
+ "▁no tion",
+ "▁g uest",
+ "▁gu est",
+ "▁Is lands",
+ "▁Island s",
+ "ic ked",
+ "ick ed",
+ "▁D ave",
+ "▁Dav e",
+ "▁Da ve",
+ "▁ref lection",
+ "▁reflect ion",
+ "li v",
+ "l iv",
+ "ál ní",
+ "▁reve aled",
+ "▁s og",
+ "▁so g",
+ "▁T ax",
+ "▁Ta x",
+ "▁period o",
+ "▁peri odo",
+ "▁Welt krie",
+ "catal ina",
+ "qu é",
+ "q ué",
+ "▁F ather",
+ "▁Fa ther",
+ "▁B ir",
+ "▁Bi r",
+ "ex pect",
+ "exp ect",
+ "▁re gression",
+ "▁reg ression",
+ "in é",
+ "i né",
+ "▁d abei",
+ "▁da bei",
+ "pe rm",
+ "per m",
+ "p erm",
+ "ме не",
+ "мен е",
+ "м ене",
+ "▁A bd",
+ "▁Ab d",
+ "▁C F",
+ "▁ CF",
+ "ar ks",
+ "ark s",
+ "resol ve",
+ "wed ge",
+ "w edge",
+ "▁initial ization",
+ "▁Vé ase",
+ "▁при ня",
+ "st mt",
+ "▁in come",
+ "▁inc ome",
+ "M Y",
+ "▁od kazy",
+ "▁Sie he",
+ "▁bod ies",
+ "▁s oc",
+ "▁so c",
+ "R andom",
+ "▁s enza",
+ "▁sen za",
+ "ab lo",
+ "abl o",
+ "a blo",
+ "▁reg arded",
+ "▁regard ed",
+ "on Create",
+ "▁Mag azine",
+ "▁R af",
+ "▁Ra f",
+ "▁Buen os",
+ "и л",
+ ")) );",
+ "))) ;",
+ ") ));",
+ "ca pt",
+ "cap t",
+ "c apt",
+ "re direct",
+ "red irect",
+ "▁pe tit",
+ "▁pet it",
+ "▁f arm",
+ "▁far m",
+ "▁fa rm",
+ "▁r ôle",
+ "▁стать и",
+ " ",
+ "sub figure",
+ "èce s",
+ "è ces",
+ "zi el",
+ "zie l",
+ "z iel",
+ "▁о кон",
+ "▁ок он",
+ "E E",
+ "me e",
+ "m ee",
+ "▁p erten",
+ "▁per ten",
+ "▁pert en",
+ "▁représ ent",
+ "▁L A",
+ "▁ LA",
+ "? '",
+ "▁т ру",
+ "▁r ational",
+ "▁rat ional",
+ "▁ratio nal",
+ "os of",
+ "oso f",
+ "▁k ne",
+ "▁kn e",
+ "▁art ists",
+ "▁artist s",
+ "Fl ow",
+ "F low",
+ "▁А ль",
+ "▁Ал ь",
+ "iz ard",
+ "iza rd",
+ "izar d",
+ "▁num ero",
+ "▁numer o",
+ "act ic",
+ "a ctic",
+ "▁de struct",
+ "▁dest ruct",
+ "▁destru ct",
+ "▁П ра",
+ "ons ieur",
+ "q t",
+ "ab estanden",
+ "no ść",
+ "Con nect",
+ "Conne ct",
+ "▁o racle",
+ "▁or acle",
+ "▁ora cle",
+ "▁ oracle",
+ "▁Stock holm",
+ "size of",
+ "▁gem äß",
+ "AC T",
+ "A CT",
+ "▁ex pert",
+ "▁exp ert",
+ "▁exper t",
+ "ut ions",
+ "ution s",
+ "uti ons",
+ "▁h acia",
+ "▁ha cia",
+ "▁log ger",
+ "▁ logger",
+ "▁f ool",
+ "▁fo ol",
+ "▁foo l",
+ "ry pto",
+ "rypt o",
+ "æ r",
+ "▁c idade",
+ "▁ci dade",
+ "▁состав е",
+ "▁соста ве",
+ "ok er",
+ "oke r",
+ "o ker",
+ "▁Trans fer",
+ "▁den ied",
+ "Tr ack",
+ "Tra ck",
+ "T rack",
+ "▁r adi",
+ "▁ra di",
+ "▁rad i",
+ "ze c",
+ "z ec",
+ "▁Histor ic",
+ "▁Einwo hner",
+ "ко ю",
+ "▁х ра",
+ "▁ хра",
+ "▁C ategory",
+ "▁ Category",
+ "▁Dis ney",
+ "▁sw ap",
+ "▁ swap",
+ "Be gin",
+ "B egin",
+ "▁m ientras",
+ "▁d ance",
+ "▁dan ce",
+ "▁t ête",
+ "▁d roit",
+ "▁dr oit",
+ "▁dro it",
+ "er ta",
+ "ert a",
+ "▁bird s",
+ "▁bir ds",
+ "▁con vin",
+ "▁conv in",
+ "par ator",
+ "para tor",
+ "д ра",
+ "▁E S",
+ "▁ ES",
+ "▁Ress ources",
+ "▁Ressource s",
+ "EG IN",
+ "ück e",
+ "ü cke",
+ "▁Cr uz",
+ "▁Cru z",
+ "ab ling",
+ "abl ing",
+ "a bling",
+ "▁\" @",
+ "▁me tres",
+ "▁met res",
+ "▁B eg",
+ "▁Be g",
+ "▁Gr ünd",
+ "▁B oh",
+ "▁Bo h",
+ "▁m ile",
+ "▁mil e",
+ "▁mi le",
+ "▁ mile",
+ "▁Techn ology",
+ "\" +",
+ "ac co",
+ "acc o",
+ "a cco",
+ "▁s s",
+ "▁ ss",
+ "▁F ed",
+ "▁Fe d",
+ "▁H end",
+ "▁He nd",
+ "▁Hen d",
+ "us ch",
+ "usc h",
+ "u sch",
+ "it ä",
+ "fol k",
+ "f olk",
+ "▁abs or",
+ "an tal",
+ "ant al",
+ "anta l",
+ "od ge",
+ "▁WH EN",
+ "▁Extern í",
+ "▁Reg iment",
+ "▁evalu ation",
+ "▁T ai",
+ "▁Ta i",
+ "▁voc als",
+ "▁vocal s",
+ "▁ex perimental",
+ "▁experiment al",
+ "em bed",
+ "emb ed",
+ "▁M inn",
+ "▁Min n",
+ "▁Mi nn",
+ "▁в ме",
+ "pr ec",
+ "pre c",
+ "p rec",
+ "ever y",
+ "ev ery",
+ "e very",
+ "▁ho of",
+ "▁Fern ando",
+ "▁Bibli ographie",
+ "▁n ag",
+ "▁na g",
+ "amerikan ischer",
+ "▁m arks",
+ "▁mar ks",
+ "▁mark s",
+ "▁ marks",
+ "▁U TC",
+ "▁ UTC",
+ "▁un certain",
+ "ди я",
+ "ol ia",
+ "oli a",
+ "o lia",
+ "▁c up",
+ "▁cu p",
+ "▁ cup",
+ "▁f ille",
+ "▁fil le",
+ "▁fill e",
+ "▁fi lle",
+ "▁d ok",
+ "▁do k",
+ "use ppe",
+ "est erd",
+ "ester d",
+ "este rd",
+ "e sterd",
+ "▁B rand",
+ "▁Br and",
+ "▁Bra nd",
+ "▁Bran d",
+ "▁Th ird",
+ "P P",
+ "no des",
+ "node s",
+ "n odes",
+ "▁P ad",
+ "▁Pa d",
+ "▁ Pad",
+ "▁l oved",
+ "▁lo ved",
+ "▁love d",
+ "▁lov ed",
+ "sw ing",
+ "s wing",
+ "▁surpr ised",
+ "▁surprise d",
+ "ar di",
+ "ard i",
+ "▁G R",
+ "▁ GR",
+ "] \"",
+ "▁equ ally",
+ "▁equal ly",
+ "▁eq ually",
+ "ih e",
+ "i he",
+ "ca re",
+ "car e",
+ "c are",
+ "пи сок",
+ "пис ок",
+ "li jk",
+ "lij k",
+ "l ijk",
+ "ri nn",
+ "rin n",
+ "r inn",
+ "▁\\ [\\",
+ "▁\\[ \\",
+ "▁s ons",
+ "▁so ns",
+ "▁son s",
+ "▁t ät",
+ "ic amente",
+ "ica mente",
+ "▁l isting",
+ "▁list ing",
+ "iel lement",
+ "ielle ment",
+ "▁nyel ven",
+ "▁d s",
+ "▁ ds",
+ "▁agr icult",
+ "▁H ermann",
+ "▁Her mann",
+ "▁Herm ann",
+ "▁bes ides",
+ "▁beside s",
+ "pro gress",
+ "prog ress",
+ "▁pec uliar",
+ "fo cus",
+ "f ocus",
+ "c n",
+ "- $",
+ "ствен ный",
+ "ou rg",
+ "our g",
+ "o urg",
+ "▁w yn",
+ "▁wy n",
+ "▁conduct ed",
+ "▁condu cted",
+ "▁Станов ништво",
+ "connect ed",
+ "conne cted",
+ "conn ected",
+ "▁b ott",
+ "▁bo tt",
+ "▁bot t",
+ "▁с мер",
+ "▁см ер",
+ "▁P oz",
+ "▁Po z",
+ "un ct",
+ "unc t",
+ "con da",
+ "cond a",
+ "c onda",
+ "▁савез ној",
+ "▁ha vet",
+ "▁have t",
+ "▁hav et",
+ "li gt",
+ "lig t",
+ "l igt",
+ "or ted",
+ "ort ed",
+ "orte d",
+ "▁ent ering",
+ "▁enter ing",
+ "mult ip",
+ "multi p",
+ "mul tip",
+ "▁Tem ple",
+ "▁Temp le",
+ "▁P lant",
+ "▁Pl ant",
+ "▁Plan t",
+ "▁Pla nt",
+ "type of",
+ "▁V lad",
+ "▁qu ed",
+ "▁que d",
+ "▁q ued",
+ "▁re ste",
+ "▁r este",
+ "▁res te",
+ "▁rest e",
+ "▁ма й",
+ "▁ май",
+ "▁V ery",
+ "▁Ver y",
+ "▁Ve ry",
+ "ambigu ation",
+ "▁ch alleng",
+ "▁res pective",
+ "▁respect ive",
+ "▁т ор",
+ "▁то р",
+ "▁ тор",
+ "C trl",
+ "▁abs ence",
+ "ar u",
+ "a ru",
+ "во е",
+ "▁för st",
+ "▁s q",
+ "▁ sq",
+ "▁Em peror",
+ "▁I gn",
+ "▁Ig n",
+ "▁ Ign",
+ "▁т ова",
+ "▁то ва",
+ "▁ това",
+ ": `",
+ "ad oop",
+ "ado op",
+ "▁Mad ame",
+ "▁gru ppo",
+ "▁grup po",
+ "st ud",
+ "▁extern as",
+ "▁Александ р",
+ "▁d ign",
+ "▁di gn",
+ "▁dig n",
+ "▁жи ве",
+ "Am ount",
+ "A mount",
+ "▁correl ate",
+ "▁corre late",
+ "▁F ant",
+ "▁Fa nt",
+ "▁r ails",
+ "▁ra ils",
+ "▁rail s",
+ "▁ rails",
+ "f p",
+ "министра тив",
+ "▁b ought",
+ "▁fil ters",
+ "▁filter s",
+ "▁ filters",
+ "▁anc ora",
+ "▁part ner",
+ "▁qu and",
+ "▁quan d",
+ "sym bol",
+ "s ymbol",
+ "ul ating",
+ "ula ting",
+ "▁z d",
+ "▁ zd",
+ "aw n",
+ "a wn",
+ "▁G rant",
+ "▁Gr ant",
+ "▁Gra nt",
+ "▁Gran t",
+ "bec ause",
+ "b ecause",
+ "ra ble",
+ "rab le",
+ "r able",
+ "\\ }",
+ "íst icas",
+ "ística s",
+ "▁у че",
+ "▁péri ode",
+ "▁s ke",
+ "▁sk e",
+ "▁ ske",
+ "▁Any way",
+ "▁index es",
+ "▁inde xes",
+ "▁direct ions",
+ "▁dire ctions",
+ "▁direction s",
+ "▁R AM",
+ "▁RA M",
+ "▁ RAM",
+ "ch rome",
+ "chr ome",
+ "chrom e",
+ "▁a post",
+ "▁ap ost",
+ "▁apo st",
+ "▁war nings",
+ "▁warning s",
+ "▁warn ings",
+ "▁Air port",
+ "V I",
+ "ab ile",
+ "abil e",
+ "abi le",
+ "▁l ord",
+ "▁lo rd",
+ "pro vider",
+ "prov ider",
+ "▁J i",
+ "ost ream",
+ "o stream",
+ "▁geme ente",
+ "table View",
+ "Ex tra",
+ "Ext ra",
+ "c ursor",
+ "eg round",
+ "egr ound",
+ "e ground",
+ "▁M oz",
+ "▁Mo z",
+ "▁r ib",
+ "▁ri b",
+ "▁ rib",
+ "▁m orph",
+ "▁mor ph",
+ "lo ads",
+ "load s",
+ "el sk",
+ "els k",
+ "▁M AX",
+ "▁MA X",
+ "▁ MAX",
+ "▁Santi ago",
+ "▁H im",
+ "▁Hi m",
+ "code s",
+ "co des",
+ "cod es",
+ "c odes",
+ "▁l anz",
+ "▁lan z",
+ "▁count s",
+ "▁coun ts",
+ "rinn ingsområ",
+ "щ ё",
+ "▁sp é",
+ "▁pier ws",
+ "▁pierw s",
+ "▁S ver",
+ "▁Sv er",
+ "▁a cknow",
+ "▁ac know",
+ "Bo olean",
+ "▁фами ли",
+ "▁Sen ate",
+ "шо в",
+ "ш ов",
+ "ag ers",
+ "age rs",
+ "ager s",
+ "a gers",
+ "▁Nue va",
+ "bi l",
+ "b il",
+ "ki em",
+ "kie m",
+ "k iem",
+ "▁M ey",
+ "▁Me y",
+ "wi j",
+ "w ij",
+ "▁G mbH",
+ "valid ation",
+ "▁en suite",
+ "in king",
+ "ink ing",
+ "▁c ampion",
+ "▁camp ion",
+ "▁finan cial",
+ "▁financi al",
+ "iz on",
+ "izo n",
+ "i zon",
+ "He aders",
+ "Head ers",
+ "Header s",
+ "▁deprec ated",
+ "▁fon ction",
+ "RE G",
+ "R EG",
+ "▁vol umes",
+ "▁volume s",
+ "▁C hi",
+ "▁Ch i",
+ "▁encounter ed",
+ "la k",
+ "l ak",
+ "ра я",
+ "▁contin ues",
+ "▁continu es",
+ "▁continue s",
+ "▁~ [",
+ "uer te",
+ "u erte",
+ "▁\\ ;",
+ "▁ \\;",
+ "▁D ok",
+ "▁Do k",
+ "▁we ights",
+ "▁weight s",
+ "▁r h",
+ "▁ rh",
+ "▁Na pole",
+ "▁Nap ole",
+ "▁natur ally",
+ "▁natural ly",
+ "sk u",
+ "s ku",
+ "pa s",
+ "p as",
+ "▁g egründ",
+ "et r",
+ "e tr",
+ "▁K u",
+ "ic ted",
+ "ict ed",
+ "i cted",
+ "▁fab ric",
+ "▁A SC",
+ "▁AS C",
+ "▁ ASC",
+ "▁Entertain ment",
+ "▁en erg",
+ "▁ener g",
+ "кла д",
+ "к лад",
+ "om on",
+ "omo n",
+ "o mon",
+ "th eme",
+ "the me",
+ "▁ха рак",
+ "▁d raft",
+ "▁dr aft",
+ "▁dra ft",
+ "▁ch annels",
+ "▁channel s",
+ "▁de sert",
+ "▁des ert",
+ "▁deser t",
+ "▁tra vés",
+ "▁trav és",
+ "▁L ock",
+ "▁Lo ck",
+ "▁Loc k",
+ "▁ Lock",
+ "▁s iendo",
+ "▁si endo",
+ "фе к",
+ "ф ек",
+ "m ême",
+ "▁pa cket",
+ "▁pack et",
+ "▁pac ket",
+ "▁Mount ain",
+ "▁F ahr",
+ "▁Fa hr",
+ "bra io",
+ "пе ре",
+ "пер е",
+ "п ере",
+ "▁gen annt",
+ "▁dep loyment",
+ "▁deploy ment",
+ "Pa l",
+ "P al",
+ "но г",
+ "ст ру",
+ "стр у",
+ "Pr im",
+ "P rim",
+ "f ür",
+ "▁danger ous",
+ "▁sz ám",
+ "re ck",
+ "rec k",
+ "▁pop up",
+ "ic ky",
+ "ick y",
+ "in ar",
+ "ina r",
+ "i nar",
+ "co wo",
+ "cow o",
+ "c owo",
+ "нци кло",
+ "ít ás",
+ "▁pl ugins",
+ "▁plugin s",
+ "▁plug ins",
+ "▁ plugins",
+ "▁dr iven",
+ "▁drive n",
+ "▁dri ven",
+ "▁driv en",
+ "ле в",
+ "л ев",
+ "▁\" (",
+ "tt a",
+ "t ta",
+ "▁ Ú",
+ "▁e b",
+ "▁ eb",
+ "▁' ';",
+ "▁'' ;",
+ "▁kn ock",
+ "▁ос нова",
+ "▁основ а",
+ "▁m aison",
+ "▁ma ison",
+ "▁mais on",
+ "▁mai son",
+ "г ля",
+ "▁Hon or",
+ "▁Ho nor",
+ "ta il",
+ "t ail",
+ "ri tz",
+ "rit z",
+ "r itz",
+ "▁gu ys",
+ "▁combin ations",
+ "▁combination s",
+ "ond ere",
+ "onder e",
+ "onde re",
+ "▁A ld",
+ "▁Al d",
+ "▁f iddle",
+ "▁ fiddle",
+ "да в",
+ "ur d",
+ "u rd",
+ "▁pro jection",
+ "▁project ion",
+ "▁Tamb ién",
+ "ve rb",
+ "ver b",
+ "v erb",
+ "▁ter re",
+ "▁ terre",
+ "ru gu",
+ "rug u",
+ "▁se ptember",
+ "▁sept ember",
+ "▁< !",
+ "co st",
+ "cos t",
+ "c ost",
+ "▁n ut",
+ "▁nu t",
+ "▁ nut",
+ "{ %",
+ "▁ub ic",
+ "am arin",
+ "ama rin",
+ "amar in",
+ "ти и",
+ "▁pat ron",
+ "▁patr on",
+ "▁am ely",
+ "▁e sto",
+ "▁est o",
+ "▁es to",
+ "▁ esto",
+ "▁li stop",
+ "▁list op",
+ "fa l",
+ "f al",
+ "▁P rop",
+ "▁Pro p",
+ "▁Pr op",
+ "▁ Prop",
+ "▁O nt",
+ "▁On t",
+ "▁M ade",
+ "▁Ma de",
+ "▁Mad e",
+ "TE ST",
+ "▁N em",
+ "▁Ne m",
+ "▁N ations",
+ "▁Nat ions",
+ "▁Nation s",
+ "▁в у",
+ "▁ ву",
+ "in cluding",
+ "includ ing",
+ "▁spect rum",
+ "▁L an",
+ "▁La n",
+ "▁E ver",
+ "▁Ev er",
+ "Pa ul",
+ "t m",
+ "App end",
+ "Ap pend",
+ "Rel ative",
+ "dis abled",
+ "disable d",
+ "return s",
+ "▁flow ers",
+ "▁flo wers",
+ "▁flower s",
+ "ik u",
+ "i ku",
+ "▁| \\",
+ "▁ |\\",
+ "▁Jord an",
+ "▁Sm all",
+ "▁c ic",
+ "▁ci c",
+ "▁sex ual",
+ "au tre",
+ "aut re",
+ "ва л",
+ "в ал",
+ "▁r ip",
+ "▁ri p",
+ "▁ rip",
+ "ou st",
+ "ous t",
+ "o ust",
+ "▁Philadel phia",
+ "▁u k",
+ "▁ uk",
+ "▁M ongo",
+ "▁Mon go",
+ "▁Mong o",
+ "xml ns",
+ "▁sh op",
+ "▁sho p",
+ "▁ shop",
+ "▁debug ger",
+ "▁z aj",
+ "▁za j",
+ "▁B illy",
+ "▁Bill y",
+ "▁Bil ly",
+ "▁n iem",
+ "▁nie m",
+ "▁ni em",
+ "ol is",
+ "oli s",
+ "o lis",
+ "▁ро ссий",
+ "ag ner",
+ "agn er",
+ "agne r",
+ "▁m aven",
+ "▁ma ven",
+ "▁ maven",
+ "▁Gu stav",
+ "▁Gust av",
+ "A us",
+ "comp are",
+ "▁j eu",
+ "▁je u",
+ "ud er",
+ "ude r",
+ "u der",
+ "ish ment",
+ "▁ди визи",
+ "▁Fin land",
+ "ну т",
+ "н ут",
+ "z és",
+ "▁Liga ções",
+ "▁Lig ações",
+ "▁qu ello",
+ "▁quel lo",
+ "an notation",
+ "annot ation",
+ "▁th rew",
+ "▁thr ew",
+ "▁thre w",
+ "▁Pro of",
+ "▁ Proof",
+ "▁A rea",
+ "▁Ar ea",
+ "▁Are a",
+ "▁ Area",
+ "as hi",
+ "ash i",
+ "▁F O",
+ "▁ FO",
+ "ja min",
+ "j amin",
+ "ден т",
+ "д ент",
+ "▁un us",
+ "fri end",
+ ".\" );",
+ ".\") ;",
+ ". \");",
+ "▁tra kten",
+ "document class",
+ "an ka",
+ "ank a",
+ "▁ar rive",
+ "▁arr ive",
+ "▁arriv e",
+ "▁d onne",
+ "▁don ne",
+ "▁donn e",
+ "ol y",
+ "o ly",
+ "▁R ein",
+ "▁Re in",
+ "▁face book",
+ "▁fac ebook",
+ "▁ facebook",
+ "ic ina",
+ "ici na",
+ "sl ice",
+ "s lice",
+ "▁n agy",
+ "▁na gy",
+ "▁nag y",
+ "▁he bben",
+ "▁I C",
+ "▁ IC",
+ "▁B ag",
+ "▁Ba g",
+ "▁ Bag",
+ "▁circ ul",
+ "▁cir cul",
+ "ác t",
+ "á ct",
+ "mit t",
+ "mi tt",
+ "m itt",
+ "▁g rey",
+ "▁gr ey",
+ "▁gre y",
+ "▁c av",
+ "▁ca v",
+ "▁осо би",
+ "▁sym metric",
+ "▁symmet ric",
+ "▁S ic",
+ "▁Si c",
+ "▁med ium",
+ "▁medi um",
+ "▁ medium",
+ "▁U TF",
+ "▁ UTF",
+ "▁D opo",
+ "▁Do po",
+ "í ch",
+ "bar e",
+ "ba re",
+ "b are",
+ "dz ie",
+ "d zie",
+ "▁he aven",
+ "▁heav en",
+ "▁cam pe",
+ "▁camp e",
+ "ester day",
+ "esterd ay",
+ "▁W issenschaft",
+ "по ль",
+ "пол ь",
+ "di d",
+ "d id",
+ "al er",
+ "ale r",
+ "a ler",
+ "▁citiz ens",
+ "▁Marg aret",
+ "▁s ought",
+ "ch arts",
+ "char ts",
+ "chart s",
+ "CL C",
+ "C LC",
+ "ol ly",
+ "oll y",
+ "ys z",
+ "y sz",
+ "wa ld",
+ "wal d",
+ "w ald",
+ "▁f en",
+ "▁fe n",
+ "▁ fen",
+ "▁S ix",
+ "▁Si x",
+ "▁U rs",
+ "▁Ur s",
+ "▁ор ган",
+ "▁T rad",
+ "▁Tr ad",
+ "▁Tra d",
+ "cu e",
+ "c ue",
+ "sch utz",
+ "▁prec ise",
+ "▁precis e",
+ "▁W indow",
+ "▁Wind ow",
+ "▁ Window",
+ "ти е",
+ "ло ві",
+ "лов і",
+ "it ori",
+ "ito ri",
+ "itor i",
+ "dis ambiguation",
+ "▁х и",
+ "▁ хи",
+ "▁N atural",
+ "▁Natur al",
+ "▁Nat ural",
+ "da n",
+ "d an",
+ "▁con crete",
+ "ци ја",
+ "▁s pel",
+ "▁sp el",
+ "▁spe l",
+ "▁Fa iled",
+ "▁Fail ed",
+ "▁ Failed",
+ "ści e",
+ "śc ie",
+ "ś cie",
+ "▁b uf",
+ "▁bu f",
+ "▁ buf",
+ "uc a",
+ "u ca",
+ "ic ional",
+ "ici onal",
+ "icio nal",
+ "icion al",
+ "▁ott obre",
+ "▁otto bre",
+ "▁ф і",
+ "▁ фі",
+ "▁submit ted",
+ "▁subm itted",
+ "la ve",
+ "lav e",
+ "l ave",
+ "▁P lot",
+ "▁Pl ot",
+ "▁ Plot",
+ "▁col leg",
+ "▁coll eg",
+ "▁colle g",
+ "ad em",
+ "ade m",
+ "a dem",
+ "▁ch aque",
+ "▁cha que",
+ "▁neighbor hood",
+ "▁calci atore",
+ "Lo op",
+ "L oop",
+ "▁G ast",
+ "▁Ga st",
+ "▁Gas t",
+ "▁ко гда",
+ "▁indust rial",
+ "▁industri al",
+ "▁f atal",
+ "▁fa tal",
+ "▁fat al",
+ "▁C ert",
+ "▁Ce rt",
+ "▁Cer t",
+ "▁ Cert",
+ "la tion",
+ "lat ion",
+ "l ation",
+ "▁О дна",
+ "▁Од на",
+ "▁jam ais",
+ "▁acc um",
+ "Id entity",
+ "Ident ity",
+ "▁Me dal",
+ "▁Med al",
+ "Met adata",
+ "Meta data",
+ "▁лю дя",
+ "br idge",
+ "brid ge",
+ "b ridge",
+ "Go od",
+ "G ood",
+ "▁что бы",
+ "▁comp oser",
+ "▁compos er",
+ "▁compose r",
+ "▁b read",
+ "▁br ead",
+ "▁bre ad",
+ "▁clos ure",
+ "▁ closure",
+ "▁large ly",
+ "▁larg ely",
+ "F B",
+ "▁обла сть",
+ "▁autom atic",
+ "▁automat ic",
+ "ar ía",
+ "a ría",
+ "▁sufficient ly",
+ "▁ital iana",
+ "▁ка че",
+ "▁J ó",
+ "hi story",
+ "histor y",
+ "h istory",
+ "▁H D",
+ "▁ HD",
+ "▁sigu iente",
+ "ne ll",
+ "nel l",
+ "n ell",
+ "▁G ree",
+ "▁Gr ee",
+ "▁Gre e",
+ "▁T i",
+ "▁trans ferred",
+ "▁transfer red",
+ "équ ipe",
+ "é quipe",
+ "▁Phili ppe",
+ "▁Philipp e",
+ "▁Philip pe",
+ "▁encou rag",
+ "▁V ietnam",
+ "▁graph s",
+ "▁symmet ry",
+ "fr ed",
+ "fre d",
+ "f red",
+ "we ek",
+ "▁bron ze",
+ "ry s",
+ "r ys",
+ "▁name ly",
+ "▁nam ely",
+ "on ders",
+ "ond ers",
+ "onder s",
+ "onde rs",
+ "lem agne",
+ "X Y",
+ "Con vert",
+ "}] (",
+ "} ](",
+ "Reg ion",
+ "pe cies",
+ "pec ies",
+ "▁te xture",
+ "▁text ure",
+ "▁c hr",
+ "▁ch r",
+ "▁ chr",
+ "не го",
+ "н его",
+ "▁some body",
+ "a qu",
+ "er as",
+ "era s",
+ "e ras",
+ "▁Н ово",
+ "▁Но во",
+ "▁Нов о",
+ "▁d ez",
+ "▁de z",
+ "an iu",
+ "ani u",
+ "a niu",
+ "ok rat",
+ "▁co vers",
+ "▁cover s",
+ "▁cov ers",
+ "▁sign als",
+ "▁signal s",
+ "ђ е",
+ "▁H eb",
+ "▁He b",
+ "▁An ti",
+ "▁Ant i",
+ "IV E",
+ "I VE",
+ "▁re ss",
+ "▁r ess",
+ "▁res s",
+ "▁ ress",
+ "LE TE",
+ "yn a",
+ "y na",
+ "п ла",
+ "жде ния",
+ "ж дения",
+ "▁ch amp",
+ "▁cha mp",
+ "▁cham p",
+ "▁vill ages",
+ "▁village s",
+ "▁villa ges",
+ "Z one",
+ "▁i Phone",
+ "▁sou vent",
+ "сь кі",
+ "ськ і",
+ "▁feb braio",
+ "ér cito",
+ "▁X I",
+ "ok at",
+ "oka t",
+ "▁mem bres",
+ "▁memb res",
+ "▁membre s",
+ "ju nit",
+ "j unit",
+ "▁D raw",
+ "▁Dr aw",
+ "▁Dra w",
+ "▁ Draw",
+ "▁п рово",
+ "▁про во",
+ "▁пров о",
+ "▁пр ово",
+ "aud io",
+ "audi o",
+ "a udio",
+ "en dl",
+ "end l",
+ "▁N ad",
+ "▁Na d",
+ "▁magn itude",
+ "Su r",
+ "S ur",
+ "ic ing",
+ "ici ng",
+ "i cing",
+ "▁un w",
+ "▁о три",
+ "▁от ри",
+ "▁B ey",
+ "▁Be y",
+ "▁V ik",
+ "▁Vi k",
+ "▁polít ica",
+ "port er",
+ "por ter",
+ "porte r",
+ "p orter",
+ "▁Bar bara",
+ "▁Barb ara",
+ "ál t",
+ "á lt",
+ "bi b",
+ "b ib",
+ "▁accom pan",
+ "▁accomp an",
+ "V P",
+ "▁en coded",
+ "▁enc oded",
+ "▁encode d",
+ "▁ encoded",
+ "▁S ometimes",
+ "▁Some times",
+ "bi rd",
+ "bir d",
+ "b ird",
+ "▁U lt",
+ "▁Ul t",
+ "▁t un",
+ "▁tu n",
+ "get Text",
+ "▁ar rival",
+ "▁arr ival",
+ "▁arriv al",
+ "script style",
+ "{ `",
+ "▁pers pective",
+ "LI NE",
+ "LIN E",
+ "L INE",
+ "Form atter",
+ "Format ter",
+ "▁b om",
+ "▁bo m",
+ "в ра",
+ "DE BUG",
+ "Bound s",
+ "B ounds",
+ "▁T itle",
+ "▁Tit le",
+ "▁ Title",
+ "l ó",
+ "Da n",
+ "D an",
+ "▁g ene",
+ "▁ge ne",
+ "▁gen e",
+ "▁B it",
+ "▁Bi t",
+ "▁ Bit",
+ "▁reprodu ce",
+ "▁graph ics",
+ "▁ graphics",
+ "▁с ем",
+ "▁се м",
+ "р ё",
+ "▁ре ки",
+ "us alem",
+ "usa lem",
+ "ро ж",
+ "▁D ES",
+ "▁DE S",
+ "▁So ftware",
+ "ur ance",
+ "u rance",
+ "ithmet ic",
+ "en ess",
+ "ene ss",
+ "enes s",
+ "e ness",
+ "ic hi",
+ "ich i",
+ "i chi",
+ "Con verter",
+ "Convert er",
+ "▁g ithub",
+ "▁ github",
+ "erd ings",
+ "gl ise",
+ "ác h",
+ "á ch",
+ "▁bu ried",
+ "▁bur ied",
+ "▁v ision",
+ "▁vis ion",
+ "▁ vision",
+ "M iss",
+ "▁s ees",
+ "▁se es",
+ "▁see s",
+ "▁person nes",
+ "▁pers onnes",
+ "▁personn es",
+ "▁personne s",
+ "▁In tel",
+ "▁Int el",
+ "el ia",
+ "eli a",
+ "e lia",
+ "▁č lán",
+ "▁c hi",
+ "▁ch i",
+ "▁ chi",
+ "▁k las",
+ "▁kl as",
+ "au té",
+ "aut é",
+ "▁st ark",
+ "▁star k",
+ "cz e",
+ "c ze",
+ "▁dr ivers",
+ "▁driver s",
+ "▁drive rs",
+ "▁dri vers",
+ "▁driv ers",
+ "v n",
+ "! ,",
+ "▁го ды",
+ "▁год ы",
+ "H i",
+ "▁expla ins",
+ "▁expl ains",
+ "▁explain s",
+ "art icles",
+ "article s",
+ "▁z ug",
+ "▁zu g",
+ "▁ zug",
+ "Pro m",
+ "Pr om",
+ "P rom",
+ "> =",
+ "▁Be at",
+ "▁S ax",
+ "▁Sa x",
+ "vert ical",
+ "кт о",
+ "к то",
+ "▁pl ants",
+ "▁plan ts",
+ "▁plant s",
+ "▁Ré férences",
+ "▁Référence s",
+ "▁og ni",
+ "▁c urs",
+ "▁cu rs",
+ "▁cur s",
+ "▁S K",
+ "▁ SK",
+ "он и",
+ "о ни",
+ "▁des tac",
+ "▁dest ac",
+ "\") ;\r",
+ "\"); \r",
+ "\" );\r",
+ "▁S ure",
+ "▁Su re",
+ "▁Sur e",
+ "▁part ido",
+ "▁parti do",
+ "▁Fol ge",
+ "▁Mo ore",
+ "▁w z",
+ "ск ус",
+ "ску с",
+ "lt re",
+ "l tre",
+ "on do",
+ "ond o",
+ "▁p ose",
+ "▁po se",
+ "▁pos e",
+ "▁ pose",
+ "im os",
+ "imo s",
+ "i mos",
+ "бо й",
+ "ци па",
+ "ju s",
+ "j us",
+ ".. ...",
+ "... ..",
+ ".... .",
+ ". ....",
+ "▁ép oca",
+ "▁qu anto",
+ "▁quant o",
+ "▁quan to",
+ "▁Su pport",
+ "▁Supp ort",
+ "▁Sup port",
+ "▁ Support",
+ "gesch ichte",
+ "SER VER",
+ "▁George s",
+ "▁Georg es",
+ "en um",
+ "enu m",
+ "e num",
+ "▁h erm",
+ "▁he rm",
+ "▁her m",
+ "▁ne bo",
+ "▁C hr",
+ "▁Ch r",
+ "▁ Chr",
+ "char acter",
+ "▁* **",
+ "▁** *",
+ "▁ ***",
+ "▁For sch",
+ "ia mi",
+ "iam i",
+ "i ami",
+ "▁ ¿",
+ "cy ch",
+ "cyc h",
+ "c ych",
+ "▁fif th",
+ "se nt",
+ "sen t",
+ "s ent",
+ "▁and erem",
+ "▁andere m",
+ "▁proport ion",
+ "▁propor tion",
+ "▁p rest",
+ "▁pr est",
+ "▁pre st",
+ "▁pres t",
+ "▁G irl",
+ "▁Gi rl",
+ "▁Gir l",
+ "▁d rama",
+ "▁dr ama",
+ "▁dra ma",
+ "▁dram a",
+ "wa nd",
+ "wan d",
+ "w and",
+ "▁M ail",
+ "▁Ma il",
+ "▁Mai l",
+ "▁ Mail",
+ "▁L ux",
+ "▁Lu x",
+ "▁kter ý",
+ "▁Ges ellschaft",
+ "▁Hin weis",
+ "nis se",
+ "n isse",
+ "▁m ondo",
+ "▁mon do",
+ "▁mond o",
+ "E q",
+ "▁per í",
+ "▁pe rí",
+ "▁e astern",
+ "▁eas tern",
+ "▁east ern",
+ "▁UE FA",
+ "ual e",
+ "ua le",
+ "u ale",
+ "▁con vex",
+ "▁conv ex",
+ "▁по ль",
+ "▁пол ь",
+ "▁ поль",
+ "▁H ey",
+ "▁He y",
+ "ze nie",
+ "zen ie",
+ "z enie",
+ "init ely",
+ "▁Z usammen",
+ "SS L",
+ "S SL",
+ "oc al",
+ "oca l",
+ "o cal",
+ "▁c anal",
+ "▁can al",
+ "▁ca nal",
+ "vo y",
+ "v oy",
+ "▁К ри",
+ "▁köz ött",
+ "▁c ars",
+ "▁car s",
+ "▁ca rs",
+ "▁vers ión",
+ "En vironment",
+ "He r",
+ "H er",
+ "▁se ñ",
+ "▁sp atial",
+ "ym i",
+ "y mi",
+ "Fi re",
+ "F ire",
+ "▁ve get",
+ "▁veg et",
+ "▁W ie",
+ "▁Wi e",
+ "▁zn aj",
+ "▁zna j",
+ "▁dam age",
+ "▁en dl",
+ "▁end l",
+ "▁ endl",
+ "gi f",
+ "g if",
+ "▁qu ali",
+ "▁qual i",
+ "▁которы х",
+ "el lan",
+ "ell an",
+ "ella n",
+ "▁m ens",
+ "▁me ns",
+ "▁men s",
+ "▁pl ug",
+ "▁a bund",
+ "▁ab und",
+ "FI G",
+ "F IG",
+ "▁s f",
+ "▁ sf",
+ "▁con fl",
+ "▁conf l",
+ "▁насе ления",
+ "▁princi ples",
+ "▁princip les",
+ "▁principle s",
+ "▁Gab riel",
+ "ib e",
+ "i be",
+ "▁{ %",
+ "▁ {%",
+ "▁pobla ció",
+ "ні ципа",
+ "▁ext reme",
+ "▁extrem e",
+ "▁extr eme",
+ "▁as se",
+ "▁ass e",
+ "▁ asse",
+ "▁v u",
+ "▁ vu",
+ "Mo ck",
+ "M ock",
+ "▁spiel te",
+ "▁A er",
+ "▁d atos",
+ "▁dat os",
+ "en des",
+ "end es",
+ "ende s",
+ "▁G el",
+ "▁Ge l",
+ "▁G or",
+ "▁Go r",
+ "Ch rist",
+ "Chr ist",
+ "ch os",
+ "cho s",
+ "c hos",
+ "Process or",
+ "Proc essor",
+ "▁in struct",
+ "▁inst ruct",
+ "▁instru ct",
+ "▁p icked",
+ "▁pick ed",
+ "▁pic ked",
+ "nah me",
+ "nahm e",
+ "fa hr",
+ "fah r",
+ "f ahr",
+ "▁indic ated",
+ "▁indicate d",
+ "▁% .",
+ "▁ %.",
+ "▁t s",
+ "▁ ts",
+ "▁not able",
+ "▁no table",
+ "▁qual ified",
+ "▁А л",
+ "Bl ack",
+ "B lack",
+ "▁coun cil",
+ "▁over head",
+ "ac i",
+ "a ci",
+ "an née",
+ "ann ée",
+ "▁init With",
+ "bi ó",
+ "b ió",
+ "▁int roduction",
+ "▁introdu ction",
+ "▁compan ion",
+ "▁ex pon",
+ "▁exp on",
+ "▁k ör",
+ "▁kö r",
+ "ob y",
+ "o by",
+ "bu rn",
+ "bur n",
+ "b urn",
+ "gn u",
+ "g nu",
+ "virt ual",
+ "v irtual",
+ "▁intel lect",
+ "▁д ержа",
+ "▁ держа",
+ "' +",
+ "б ле",
+ "▁strict ly",
+ "▁recogn ize",
+ "ho ur",
+ "hou r",
+ "h our",
+ "▁W rest",
+ "en nen",
+ "enn en",
+ "enne n",
+ "$) .",
+ "$ ).",
+ "ff f",
+ "f ff",
+ "▁Cent ro",
+ "▁P itt",
+ "▁Pi tt",
+ "▁Pit t",
+ "▁d ział",
+ "▁dz iał",
+ "▁ dział",
+ "▁c ela",
+ "▁ce la",
+ "▁cel a",
+ "▁frances e",
+ "▁franc ese",
+ "ра ми",
+ "spe cial",
+ "spec ial",
+ "▁D up",
+ "▁Du p",
+ "to ire",
+ "t oire",
+ "ка ль",
+ "кал ь",
+ "к аль",
+ "CO UNT",
+ "▁Br ook",
+ "▁Bro ok",
+ "▁ру ково",
+ "pub lique",
+ "▁se conda",
+ "▁second a",
+ "▁sec onda",
+ "▁com pt",
+ "▁comp t",
+ "▁b land",
+ "▁bl and",
+ "▁bla nd",
+ "▁blan d",
+ "Be fore",
+ "▁P ack",
+ "▁Pa ck",
+ "▁Pac k",
+ "▁ Pack",
+ "al ty",
+ "alt y",
+ "öd er",
+ "ö der",
+ "▁interval s",
+ "▁Daten bank",
+ "Mo vie",
+ "M ovie",
+ "▁trans m",
+ "▁tran sm",
+ "▁t ap",
+ "▁ta p",
+ "▁по ч",
+ "fo n",
+ "f on",
+ "ia i",
+ "i ai",
+ "▁f ib",
+ "▁fi b",
+ "▁w yd",
+ "▁wy d",
+ "▁h ung",
+ "▁hun g",
+ "▁hu ng",
+ "▁ hung",
+ "▁a live",
+ "▁al ive",
+ "▁ali ve",
+ "Cl ear",
+ "C lear",
+ "▁p ushed",
+ "▁push ed",
+ "▁tu ple",
+ "▁ tuple",
+ "ach en",
+ "ac hen",
+ "ache n",
+ "a chen",
+ "го во",
+ "гов о",
+ "г ово",
+ "▁re vers",
+ "▁rev ers",
+ "▁reve rs",
+ "▁rever s",
+ "▁au gment",
+ "▁aug ment",
+ "▁ch allenge",
+ "▁challeng e",
+ "lo st",
+ "los t",
+ "l ost",
+ "▁deux ième",
+ "struct or",
+ "stru ctor",
+ "▁mehr erer",
+ "▁mehrere r",
+ "at ural",
+ "atur al",
+ "atura l",
+ "atu ral",
+ "Sp lit",
+ "S plit",
+ "ст ем",
+ "сте м",
+ "с тем",
+ "ш ла",
+ ")\\ \\",
+ ") \\\\",
+ "▁D og",
+ "▁Do g",
+ "▁develop ers",
+ "▁developer s",
+ "▁ developers",
+ "▁n od",
+ "▁no d",
+ "▁сто ро",
+ "▁Na N",
+ "▁ NaN",
+ "▁pr iest",
+ "▁pri est",
+ "▁ex ha",
+ "UN D",
+ "U ND",
+ "pa ir",
+ "p air",
+ "al one",
+ "alo ne",
+ "▁m oon",
+ "▁mo on",
+ "▁# !/",
+ "▁g uns",
+ "▁gu ns",
+ "▁gun s",
+ "ro la",
+ "rol a",
+ "r ola",
+ "чи та",
+ "▁Encyc lopedia",
+ "▁Encyclop edia",
+ "at is",
+ "ati s",
+ "a tis",
+ "▁' \"",
+ "▁ '\"",
+ "zy ch",
+ "z ych",
+ "▁super fic",
+ "▁э к",
+ "еде ра",
+ "fe ed",
+ "f eed",
+ "LA Y",
+ "F i",
+ "un ks",
+ "unk s",
+ "ise cond",
+ "i second",
+ "▁' @",
+ "▁Ad ding",
+ "▁Add ing",
+ "ро е",
+ "▁t ang",
+ "▁tan g",
+ "▁ta ng",
+ "ц о",
+ "hu ng",
+ "h ung",
+ "bi s",
+ "b is",
+ "sk ého",
+ "ské ho",
+ "▁ad vert",
+ "▁adv ert",
+ "▁за нима",
+ "uz z",
+ "u zz",
+ "ág ina",
+ "▁T el",
+ "▁Te l",
+ "si g",
+ "s ig",
+ "▁E z",
+ "▁guarante e",
+ "▁te aching",
+ "▁teach ing",
+ "ot y",
+ "o ty",
+ "ter min",
+ "term in",
+ "▁distribution s",
+ "▁distrib utions",
+ "FL A",
+ "F LA",
+ "▁Gi useppe",
+ "query Selector",
+ "▁/ \\",
+ "▁ /\\",
+ "▁S quad",
+ "g z",
+ "de lay",
+ "del ay",
+ "▁surr ounding",
+ "▁m anus",
+ "▁man us",
+ "▁H ou",
+ "▁Ho u",
+ "² ,",
+ "▁cult iv",
+ "▁trouble s",
+ "▁trou bles",
+ "▁r aison",
+ "▁ra ison",
+ "exp and",
+ "▁c ov",
+ "▁co v",
+ "▁ cov",
+ "nung en",
+ "n ungen",
+ ")) {",
+ ") ){",
+ "▁g een",
+ "▁ge en",
+ "▁au ßer",
+ "▁Л і",
+ "ř i",
+ "▁situ ations",
+ "▁situation s",
+ "▁tele p",
+ "▁tel ep",
+ "▁J ed",
+ "▁Je d",
+ "▁trav ail",
+ "▁trava il",
+ "li as",
+ "lia s",
+ "l ias",
+ "bul let",
+ "▁select ing",
+ "av ier",
+ "avi er",
+ "a vier",
+ "▁ess ential",
+ "( /",
+ "yy yy",
+ "št ě",
+ "ul ty",
+ "ult y",
+ "▁k ra",
+ "▁kr a",
+ "▁t abs",
+ "▁tab s",
+ "▁ta bs",
+ "▁ tabs",
+ "▁experience d",
+ "▁experien ced",
+ "az i",
+ "a zi",
+ "▁D irectory",
+ "▁Direct ory",
+ "▁Director y",
+ "▁ Directory",
+ "▁c ron",
+ "▁cr on",
+ "▁cro n",
+ "▁s pend",
+ "▁sp end",
+ "▁spe nd",
+ "▁R A",
+ "▁ RA",
+ "▁s elenium",
+ "▁sel enium",
+ "▁ selenium",
+ "▁T hé",
+ "▁Th é",
+ "Element s",
+ "El ements",
+ "ci i",
+ "c ii",
+ "▁p lat",
+ "▁pl at",
+ "▁pla t",
+ "▁arch ive",
+ "▁archiv e",
+ "▁ archive",
+ "▁ass istance",
+ "▁assist ance",
+ "▁ne ck",
+ "▁A venue",
+ "▁Aven ue",
+ "▁w heel",
+ "▁whe el",
+ "▁h ade",
+ "▁ha de",
+ "▁had e",
+ "Com mon",
+ "Comm on",
+ "▁D ialog",
+ "▁Di alog",
+ "▁Dia log",
+ "▁ Dialog",
+ "▁f org",
+ "▁for g",
+ "▁fo rg",
+ "▁sur ely",
+ "▁sure ly",
+ "▁h ockey",
+ "kt ó",
+ "k tó",
+ "▁t k",
+ "▁ tk",
+ "▁Br uce",
+ "▁Bru ce",
+ "▁e norm",
+ "▁en orm",
+ ", ’",
+ "▁Christ opher",
+ "▁Christoph er",
+ "je v",
+ "j ev",
+ "▁qu ad",
+ "▁ quad",
+ "▁A JAX",
+ "▁rel ief",
+ "▁reli ef",
+ "▁m odes",
+ "▁mod es",
+ "▁mo des",
+ "▁mode s",
+ "sk lär",
+ "s klär",
+ "▁V id",
+ "▁Vi d",
+ "▁Se rial",
+ "▁Ser ial",
+ "▁ Serial",
+ "▁to kens",
+ "▁token s",
+ "▁Pol and",
+ "▁Po land",
+ "\\ ]",
+ "▁v ide",
+ "▁vi de",
+ "▁vid e",
+ "ro oms",
+ "room s",
+ "om as",
+ "oma s",
+ "o mas",
+ "▁B ureau",
+ "▁Bur eau",
+ "c x",
+ "ность ю",
+ "ност ью",
+ "▁sign s",
+ "▁sig ns",
+ "ше ние",
+ "los sen",
+ "loss en",
+ "l ossen",
+ "▁Que ens",
+ "▁Queen s",
+ "▁m embre",
+ "▁mem bre",
+ "▁memb re",
+ "▁m ez",
+ "▁me z",
+ "▁ mez",
+ "▁B ool",
+ "▁Bo ol",
+ "▁ Bool",
+ "▁N aj",
+ "▁Na j",
+ "▁Mem ory",
+ "▁ Memory",
+ "▁K han",
+ "▁Kh an",
+ "▁l à",
+ "▁ là",
+ "▁H ud",
+ "▁Hu d",
+ "▁d ismiss",
+ "▁dis miss",
+ "ight h",
+ "igh th",
+ "▁f s",
+ "▁ fs",
+ "pr event",
+ "pre vent",
+ "prev ent",
+ "▁ме да",
+ "▁Pol ice",
+ "▁Po lice",
+ "▁с ко",
+ "▁ ско",
+ "fin ite",
+ "▁a mi",
+ "▁am i",
+ "▁ ami",
+ "▁M uch",
+ "▁Mu ch",
+ "ow ania",
+ "owa nia",
+ "owan ia",
+ "OR Y",
+ "O RY",
+ "io rs",
+ "ior s",
+ "i ors",
+ "▁Prem io",
+ "▁text box",
+ "d m",
+ "▁a fin",
+ "▁af in",
+ "▁Don ald",
+ "▁ Donald",
+ "▁P riv",
+ "▁Pr iv",
+ "▁Pri v",
+ "▁de cid",
+ "▁dec id",
+ "▁Maur ice",
+ "▁Mau rice",
+ "ag an",
+ "aga n",
+ "a gan",
+ "▁Britann ica",
+ "▁o ft",
+ "▁of t",
+ "▁consec utive",
+ "\"? >",
+ "\" ?>",
+ "ови й",
+ "st udent",
+ "stud ent",
+ "▁pe que",
+ "▁di eses",
+ "▁dies es",
+ "▁diese s",
+ "▁ret our",
+ "ét r",
+ "é tr",
+ "▁с ез",
+ "▁се з",
+ "▁k re",
+ "▁kr e",
+ "▁ kre",
+ "▁v otes",
+ "▁vo tes",
+ "▁vot es",
+ "▁vote s",
+ "ru ption",
+ "rupt ion",
+ "rup tion",
+ "iz ada",
+ "iza da",
+ "▁W iel",
+ "▁Wi el",
+ "▁Wie l",
+ "▁G ray",
+ "▁Gr ay",
+ "▁Gra y",
+ "▁Le op",
+ "▁Leo p",
+ "teil ung",
+ "tei lung",
+ "([ '",
+ "( ['",
+ "▁wh ites",
+ "▁white s",
+ "fr ica",
+ "fri ca",
+ "f rica",
+ "an imation",
+ "anim ation",
+ "cur l",
+ "cu rl",
+ "c url",
+ "ling s",
+ "lin gs",
+ "l ings",
+ "=\" $",
+ "lo yd",
+ "loy d",
+ "text sc",
+ "ор у",
+ "о ру",
+ "▁се ла",
+ "es ian",
+ "esi an",
+ "esia n",
+ "▁M ission",
+ "▁Miss ion",
+ "▁не за",
+ "▁ult imately",
+ "бо в",
+ "б ов",
+ "ol en",
+ "ole n",
+ "o len",
+ "ско му",
+ "ском у",
+ "ск ому",
+ "с кому",
+ "ne te",
+ "net e",
+ "n ete",
+ "▁D it",
+ "▁Di t",
+ "▁co stru",
+ "▁cost ru",
+ "dep endent",
+ "▁Re source",
+ "▁Res ource",
+ "▁ Resource",
+ "▁host s",
+ "▁hos ts",
+ "▁ hosts",
+ "▁re ar",
+ "▁r ear",
+ "D uration",
+ "ни ків",
+ "ник ів",
+ "М а",
+ "▁pl anning",
+ "▁plan ning",
+ "▁pre diction",
+ "▁pred iction",
+ "▁predict ion",
+ "▁L yn",
+ "▁Ly n",
+ "▁k ir",
+ "▁ki r",
+ "▁ kir",
+ "▁Leg isl",
+ "ма т",
+ "м ат",
+ "▁S occer",
+ "▁Soc cer",
+ "▁sur vey",
+ "▁surv ey",
+ "▁surve y",
+ "▁estadoun idense",
+ "or gen",
+ "org en",
+ "orge n",
+ "jo urd",
+ "jou rd",
+ "j ourd",
+ "▁ap rile",
+ "▁april e",
+ "▁apr ile",
+ "▁i ds",
+ "▁id s",
+ "▁ ids",
+ "сь ке",
+ "ськ е",
+ "▁emp loyee",
+ "▁employ ee",
+ "▁ employee",
+ "▁Schaus pieler",
+ "р ъ",
+ "▁mult imedia",
+ "▁multi media",
+ "▁сво ю",
+ "▁w ine",
+ "▁win e",
+ "▁E U",
+ "ic ă",
+ "▁R hein",
+ "▁Rh ein",
+ "▁Pal mar",
+ "ot eca",
+ "ote ca",
+ "▁prep are",
+ "▁prepar e",
+ "▁ prepare",
+ "▁T ot",
+ "▁To t",
+ "▁N ull",
+ "▁Nu ll",
+ "▁ Null",
+ "▁k in",
+ "▁ki n",
+ "▁ kin",
+ "in als",
+ "inal s",
+ "ina ls",
+ "▁New ton",
+ "▁t bl",
+ "▁ tbl",
+ "▁S old",
+ "▁So ld",
+ "▁Sol d",
+ "▁ver f",
+ "▁ve rf",
+ "at uring",
+ "atur ing",
+ "atu ring",
+ "▁la ptop",
+ "▁lap top",
+ "▁Со вет",
+ "▁Сов ет",
+ "▁Сове т",
+ "se cret",
+ "sec ret",
+ "▁Olymp ic",
+ "▁football er",
+ "▁Rud olf",
+ "▁con he",
+ "zy sk",
+ "▁evalu ated",
+ "▁evaluate d",
+ "» )",
+ "sh op",
+ "re pository",
+ "▁z ach",
+ "▁za ch",
+ "▁l osing",
+ "▁lo sing",
+ "▁los ing",
+ "et ter",
+ "ett er",
+ "ette r",
+ "▁W irtschaft",
+ "та к",
+ "▁unnecess ary",
+ "▁P hot",
+ "▁Ph ot",
+ "▁Pho t",
+ "an ska",
+ "ans ka",
+ "ansk a",
+ "▁N ative",
+ "▁Nat ive",
+ "▁ Native",
+ "CC E",
+ "C CE",
+ "▁fi fty",
+ "▁fif ty",
+ "▁e rw",
+ "▁er w",
+ "r h",
+ "is sent",
+ "iss ent",
+ "isse nt",
+ "issen t",
+ "}{ (",
+ "} {(",
+ "▁lan ç",
+ "▁X code",
+ "го род",
+ "гор од",
+ "ci r",
+ "c ir",
+ "▁pel ícula",
+ "▁O scar",
+ "▁Os car",
+ "▁sh ore",
+ "▁sho re",
+ "▁supp lied",
+ "ex amples",
+ "example s",
+ "Me ss",
+ "M ess",
+ "VI CE",
+ "V ICE",
+ "▁ex clude",
+ "▁h en",
+ "▁he n",
+ "▁ hen",
+ "▁гу бер",
+ "▁F ragment",
+ "▁Fra gment",
+ "▁ Fragment",
+ "▁B itte",
+ "▁Bi tte",
+ "▁Bit te",
+ "▁Bes ides",
+ "▁h es",
+ "▁he s",
+ "▁ hes",
+ "▁ih rem",
+ "▁ihr em",
+ "▁ihre m",
+ "▁Ser ge",
+ "▁art ific",
+ "=\" ${",
+ "=\"$ {",
+ "ло во",
+ "лов о",
+ "л ово",
+ "ut eur",
+ "ute ur",
+ "ta ire",
+ "t aire",
+ "па с",
+ "▁eas iest",
+ "▁fam iglia",
+ "N ormal",
+ "▁d alle",
+ "▁da lle",
+ "▁dal le",
+ "▁dall e",
+ "▁n ations",
+ "▁nation s",
+ "▁nat ions",
+ "r p",
+ "th ead",
+ "the ad",
+ "t head",
+ "▁обла сті",
+ "▁Democr atic",
+ "▁челов е",
+ "мо ж",
+ "▁г ер",
+ "▁ге р",
+ "▁ гер",
+ "▁small est",
+ "▁Publish ing",
+ "▁T s",
+ "▁laugh ed",
+ "ll e",
+ "l le",
+ "▁A mt",
+ "▁Am t",
+ "▁I IS",
+ "▁II S",
+ "FOR M",
+ "F ORM",
+ "Ma g",
+ "M ag",
+ "до н",
+ "д он",
+ "▁st oria",
+ "▁stor ia",
+ "▁sto ria",
+ "▁organ ized",
+ "▁organiz ed",
+ "č ní",
+ "▁o x",
+ "▁ ox",
+ "ling en",
+ "lin gen",
+ "l ingen",
+ "▁lu ego",
+ "cc ió",
+ "c ció",
+ "▁re ly",
+ "▁r ely",
+ "▁rel y",
+ "▁t ussen",
+ "er ten",
+ "ert en",
+ "erte n",
+ "▁hon our",
+ "▁Cla ude",
+ "▁Claud e",
+ "▁Ko rea",
+ "▁Kore a",
+ "▁Kor ea",
+ "▁Met ropol",
+ "▁Metro pol",
+ "Su per",
+ "S uper",
+ "ri en",
+ "rie n",
+ "r ien",
+ "ér ature",
+ "att ro",
+ "attr o",
+ "▁б іль",
+ "▁бі ль",
+ "▁ біль",
+ "▁Her bert",
+ "▁aut eurs",
+ "▁aute urs",
+ "▁dar auf",
+ "▁m ental",
+ "▁men tal",
+ "▁ment al",
+ "▁r ang",
+ "▁ra ng",
+ "▁ran g",
+ "▁s ón",
+ "▁só n",
+ "▁S oph",
+ "▁So ph",
+ ")\" ,",
+ ") \",",
+ "Des criptor",
+ "prep are",
+ "▁Land kreis",
+ "H C",
+ "cr oss",
+ "cro ss",
+ "c ross",
+ "ли за",
+ "▁Lo gin",
+ "▁Log in",
+ "▁ Login",
+ "on en",
+ "one n",
+ "o nen",
+ "Fe ature",
+ "▁m useum",
+ "▁muse um",
+ "▁ museum",
+ "ve k",
+ "v ek",
+ "▁Nel son",
+ "▁re jo",
+ "▁коман ди",
+ "▁sum mar",
+ "▁summ ar",
+ "▁сле ду",
+ "▁след у",
+ "äm p",
+ "ä mp",
+ "▁G as",
+ "▁Ga s",
+ "во м",
+ "в ом",
+ "VAL UE",
+ "in ge",
+ "ing e",
+ "per iod",
+ "lass en",
+ "las sen",
+ "lasse n",
+ "l assen",
+ "áv al",
+ "á val",
+ "▁alt ogether",
+ "um ph",
+ "ump h",
+ "ist ro",
+ "istr o",
+ "ą ż",
+ "▁Ke ep",
+ "▁Mar co",
+ "▁Marc o",
+ "▁ét ant",
+ "▁D re",
+ "▁Dr e",
+ "ge ometry",
+ "▁K as",
+ "▁Ka s",
+ "message s",
+ "mess ages",
+ "Co ok",
+ "C ook",
+ "▁S ide",
+ "▁Si de",
+ "▁Sid e",
+ "▁ Side",
+ "▁ко ми",
+ "▁ком и",
+ "ст ри",
+ "стр и",
+ "с три",
+ "▁ex cess",
+ "▁exc ess",
+ "▁Bi ografia",
+ "XX XX",
+ "XXX X",
+ "X XXX",
+ "▁N ie",
+ "▁Ni e",
+ "ven dor",
+ "v endor",
+ "xs d",
+ "x sd",
+ "Mil l",
+ "M ill",
+ "process ing",
+ "▁Miss ouri",
+ "▁perm ett",
+ "▁permet t",
+ "▁a par",
+ "▁ap ar",
+ "▁cro wd",
+ "▁crow d",
+ "fer t",
+ "fe rt",
+ "f ert",
+ "▁D ou",
+ "▁Do u",
+ "r í",
+ "▁C C",
+ "▁ CC",
+ "▁pay ment",
+ "▁ payment",
+ "▁Hol lywood",
+ "▁V irtual",
+ "▁ Virtual",
+ "▁sp oken",
+ "▁spoke n",
+ "▁spo ken",
+ "▁t ram",
+ "▁tr am",
+ "▁tra m",
+ "▁Comm unity",
+ "▁Commun ity",
+ "▁administr ative",
+ "▁в оло",
+ "▁во ло",
+ "gi or",
+ "gio r",
+ "g ior",
+ "vis or",
+ "▁Укра и",
+ "st age",
+ "sta ge",
+ "stag e",
+ "▁For mat",
+ "▁Form at",
+ "▁ Format",
+ "▁conven ient",
+ "Н а",
+ "▁med ian",
+ "▁media n",
+ "▁medi an",
+ "▁в ра",
+ "▁ вра",
+ "▁Пре ма",
+ "en ig",
+ "eni g",
+ "e nig",
+ "▁Op era",
+ "▁Oper a",
+ "ré s",
+ "r és",
+ "▁f mt",
+ "▁ fmt",
+ "▁effic iency",
+ "ma le",
+ "mal e",
+ "m ale",
+ "Ma ster",
+ "M aster",
+ "Ser ies",
+ "Se ries",
+ "S eries",
+ "▁s yd",
+ "▁sy d",
+ "gener ic",
+ "inter val",
+ "▁e fect",
+ "▁inwon ers",
+ "лим пи",
+ "ir ement",
+ "ire ment",
+ "Er r",
+ "E rr",
+ "ö h",
+ "▁l ying",
+ "▁ly ing",
+ "▁ lying",
+ "▁S ettings",
+ "▁Setting s",
+ "▁ Settings",
+ "! =",
+ "em atic",
+ "emat ic",
+ "arg v",
+ "▁Bas ic",
+ "▁ Basic",
+ "▁consider ation",
+ "▁h abe",
+ "▁ha be",
+ "▁hab e",
+ "- %",
+ "▁mount ains",
+ "▁mountain s",
+ "▁pe ak",
+ "▁f allen",
+ "▁fall en",
+ "▁fal len",
+ "ed ed",
+ "ede d",
+ "e ded",
+ "log ic",
+ "▁mat ched",
+ "▁match ed",
+ "▁typ ing",
+ "▁ty ping",
+ ")} ,",
+ ") },",
+ "▁f ancy",
+ "▁fan cy",
+ "▁eleg ant",
+ "ا ل",
+ "▁уча ст",
+ "▁Sa rah",
+ "▁Sar ah",
+ "▁V erd",
+ "▁Ver d",
+ "▁Ve rd",
+ "▁t ego",
+ "▁te go",
+ "ru les",
+ "rule s",
+ "r ules",
+ "▁mo unted",
+ "▁mount ed",
+ "▁і м",
+ "ер у",
+ "е ру",
+ "st off",
+ "sto ff",
+ "fa hren",
+ "fah ren",
+ "fahr en",
+ "f ahren",
+ "dist ance",
+ "d istance",
+ "▁Lic ense",
+ "▁LE FT",
+ "▁ LEFT",
+ "▁w p",
+ "▁ wp",
+ "/ {",
+ "▁am azon",
+ "▁amaz on",
+ "▁ amazon",
+ "> &",
+ "▁els ő",
+ "qu arters",
+ "▁sh ock",
+ "▁sho ck",
+ "ni ck",
+ "nic k",
+ "n ick",
+ "▁Arch ite",
+ "▁S quare",
+ "▁r ates",
+ "▁ra tes",
+ "▁rate s",
+ "▁rat es",
+ "io re",
+ "ior e",
+ "i ore",
+ "▁N at",
+ "▁Na t",
+ "▁Char lot",
+ "re ichen",
+ "reich en",
+ "rei chen",
+ "reiche n",
+ "▁var iation",
+ "▁vari ation",
+ "os is",
+ "osi s",
+ "li fe",
+ "l ife",
+ "sl ide",
+ "s lide",
+ "ab i",
+ "a bi",
+ "uk i",
+ "u ki",
+ "my sq",
+ "mys q",
+ "▁prim itive",
+ "▁primit ive",
+ "▁univers itaire",
+ "LE NG",
+ "ale ż",
+ "eb ook",
+ "e book",
+ "s yn",
+ "▁G egen",
+ "▁Ge gen",
+ "▁Geg en",
+ "▁K ü",
+ "▁а ле",
+ "▁ал е",
+ "▁L ub",
+ "▁Lu b",
+ "con current",
+ "izz ato",
+ "izza to",
+ "▁st ub",
+ "▁i e",
+ "▁ ie",
+ "▁' ./",
+ "▁'. /",
+ "co d",
+ "c od",
+ "▁intern acional",
+ "▁G las",
+ "▁Gl as",
+ "▁Gla s",
+ "▁m are",
+ "▁ma re",
+ "▁mar e",
+ "▁N eb",
+ "▁Ne b",
+ "▁G B",
+ "▁ GB",
+ "kw args",
+ "▁a ument",
+ "▁au ment",
+ "WI D",
+ "W ID",
+ "▁ро д",
+ "▁р од",
+ "▁ род",
+ "p unkt",
+ "▁G rad",
+ "▁Gr ad",
+ "▁Gra d",
+ "▁ Grad",
+ "S N",
+ "AM P",
+ "A MP",
+ "▁B orn",
+ "▁Bo rn",
+ "▁Bor n",
+ "▁Guer re",
+ "го тов",
+ "▁med io",
+ "▁medi o",
+ "Me d",
+ "M ed",
+ "su pp",
+ "sup p",
+ "s upp",
+ "act ual",
+ "drop down",
+ "▁ok tober",
+ "▁ ř",
+ "▁circ ular",
+ "▁cir cular",
+ "▁circul ar",
+ "▁s kin",
+ "▁sk in",
+ "▁ski n",
+ "▁em phas",
+ "▁emp has",
+ "▁го лов",
+ "▁голо в",
+ "▁p ue",
+ "▁pu e",
+ "▁inform ations",
+ "▁information s",
+ "▁Wolf gang",
+ "▁us eless",
+ "▁use less",
+ "и т",
+ "▁Jo an",
+ "▁б ор",
+ "▁бо р",
+ "▁ бор",
+ "▁G lad",
+ "▁Gl ad",
+ "▁Gla d",
+ "▁K now",
+ "▁Kn ow",
+ "▁Kno w",
+ "ké nt",
+ "k ént",
+ "sp eed",
+ "spe ed",
+ "▁Ke vin",
+ "un ft",
+ "▁ar qu",
+ "▁ arqu",
+ "▁C asa",
+ "▁Cas a",
+ "▁Ca sa",
+ "(. ..",
+ "( ...",
+ "▁rapid ly",
+ "▁pro ble",
+ "▁prob le",
+ "▁probl e",
+ "▁Ви кипеди",
+ "že n",
+ "ž en",
+ "▁N eben",
+ "▁Ne ben",
+ "▁Neb en",
+ "▁M eter",
+ "▁Me ter",
+ "▁Met er",
+ "Child ren",
+ "ce m",
+ "c em",
+ "ig os",
+ "igo s",
+ "aj u",
+ "a ju",
+ "▁Ret rie",
+ "▁H ell",
+ "▁He ll",
+ "▁Hel l",
+ "▁g ig",
+ "▁gi g",
+ "▁contro vers",
+ "▁z oom",
+ "▁zo om",
+ "▁zoo m",
+ "▁c ens",
+ "▁ce ns",
+ "▁alc uni",
+ "▁He ader",
+ "▁Head er",
+ "▁ Header",
+ "Me ta",
+ "Met a",
+ "M eta",
+ "Re quired",
+ "▁ин ститу",
+ "▁s kup",
+ "▁sk up",
+ "▁ing les",
+ "ég l",
+ "é gl",
+ "bi j",
+ "b ij",
+ "▁t ér",
+ "▁té r",
+ "▁com pag",
+ "▁comp ag",
+ "▁comm itted",
+ "▁commit ted",
+ "▁process ed",
+ "▁proc essed",
+ "▁proces sed",
+ "Lo wer",
+ "L ower",
+ "▁F oreign",
+ "▁For eign",
+ "▁Fore ign",
+ "▁ Foreign",
+ "▁s eq",
+ "▁se q",
+ "▁ seq",
+ "sheet s",
+ "she ets",
+ "▁F em",
+ "▁Fe m",
+ "ho z",
+ "h oz",
+ "in ks",
+ "ink s",
+ "▁k all",
+ "▁ka ll",
+ "▁kal l",
+ "vari ant",
+ "▁li bro",
+ "▁lib ro",
+ "▁cl icks",
+ "▁click s",
+ "▁cli cks",
+ "▁g obierno",
+ "ie gel",
+ "ieg el",
+ "мо го",
+ "м ого",
+ "ge me",
+ "gem e",
+ "g eme",
+ "▁t ower",
+ "▁to wer",
+ "▁par ish",
+ "▁T CP",
+ "▁l s",
+ "▁ ls",
+ "▁n ginx",
+ "▁ng inx",
+ "▁ nginx",
+ "Na N",
+ "▁D ir",
+ "▁Di r",
+ "▁ Dir",
+ "▁Begr iffe",
+ "▁Begriff e",
+ "ar ie",
+ "ari e",
+ "a rie",
+ "ím p",
+ "í mp",
+ "ic ios",
+ "ici os",
+ "icio s",
+ "i cios",
+ "▁sh aring",
+ "▁cin éma",
+ "be c",
+ "b ec",
+ "RE D",
+ "R ED",
+ "▁K ra",
+ "▁Kr a",
+ "ab ol",
+ "a bol",
+ "▁fl ux",
+ "▁flu x",
+ "▁exp ensive",
+ "▁су ще",
+ "▁` _",
+ "oc z",
+ "o cz",
+ "ли ст",
+ "▁acqu aint",
+ "▁w ise",
+ "▁wis e",
+ "▁ wise",
+ "▁pou voir",
+ "▁pouv oir",
+ "▁dev ant",
+ "▁moment um",
+ "im mer",
+ "imm er",
+ "▁C oupe",
+ "▁Cou pe",
+ "index Of",
+ "▁does nt",
+ "▁doesn t",
+ "▁за в",
+ "▁lic ense",
+ "▁ â",
+ "CS S",
+ "C SS",
+ "▁r ice",
+ "▁ric e",
+ "▁ri ce",
+ "▁ rice",
+ "Te am",
+ "▁a no",
+ "▁an o",
+ "▁ ano",
+ "li t",
+ "l it",
+ "▁mer ged",
+ "▁merge d",
+ "▁C ell",
+ "▁Ce ll",
+ "▁Cel l",
+ "▁ Cell",
+ "л л",
+ "bo y",
+ "b oy",
+ "as ts",
+ "ast s",
+ "▁s ell",
+ "▁se ll",
+ "▁sel l",
+ "▁gro ße",
+ "▁groß e",
+ "▁virt uel",
+ "▁virtue l",
+ "Can cel",
+ "▁s j",
+ "g ment",
+ ". <",
+ "ча й",
+ "i ë",
+ "ak h",
+ "a kh",
+ "iz ers",
+ "ize rs",
+ "izer s",
+ "pr it",
+ "p rit",
+ "▁T ib",
+ "▁Ti b",
+ "▁elabor ate",
+ "▁f é",
+ "▁м еди",
+ "▁ме ди",
+ "LENG TH",
+ "▁prim arily",
+ "▁sc ores",
+ "▁score s",
+ "▁carry ing",
+ "▁l ake",
+ "▁la ke",
+ "▁lak e",
+ "com pose",
+ "comp ose",
+ "compos e",
+ "▁Town ship",
+ "un ge",
+ "ung e",
+ "▁al berga",
+ "an ych",
+ "any ch",
+ "a nych",
+ "qu elle",
+ "que lle",
+ "quel le",
+ "q uelle",
+ "▁Ar k",
+ "▁p ris",
+ "▁pr is",
+ "▁pri s",
+ "▁v oll",
+ "▁vo ll",
+ "▁vol l",
+ "ш ли",
+ "Valid ation",
+ "▁ce ux",
+ "▁pop ulate",
+ "▁popula te",
+ "▁popul ate",
+ "\" \r",
+ "▁fem mes",
+ "▁femme s",
+ "AN G",
+ "A NG",
+ "▁Desp ite",
+ "вы е",
+ "в ые",
+ "is ke",
+ "isk e",
+ "i ske",
+ "zu g",
+ "z ug",
+ "на ча",
+ "▁h atten",
+ "▁hat ten",
+ "▁hatte n",
+ "IN SERT",
+ "Emp loyee",
+ "▁mo ments",
+ "▁moment s",
+ "▁mom ents",
+ "▁últ ima",
+ "▁h older",
+ "▁hold er",
+ "▁ho lder",
+ "▁hol der",
+ "▁ holder",
+ "bl ank",
+ "Col lections",
+ "Collection s",
+ "Collect ions",
+ "ath ers",
+ "ather s",
+ "a thers",
+ "▁g rade",
+ "▁gr ade",
+ "▁gra de",
+ "▁grad e",
+ "▁ grade",
+ "▁aff airs",
+ "▁affair s",
+ ".$ $",
+ ". $$",
+ "▁d elta",
+ "▁del ta",
+ "▁ delta",
+ "▁Jug end",
+ "▁españ ol",
+ "▁O UT",
+ "▁ OUT",
+ "▁mathemat ical",
+ "▁m ongo",
+ "▁mon go",
+ "▁Ф е",
+ "ul ing",
+ "uli ng",
+ "u ling",
+ "▁re volution",
+ "▁revol ution",
+ "▁c oin",
+ "▁co in",
+ "▁sub class",
+ "\" =>",
+ "äch e",
+ "ä che",
+ "▁p yg",
+ "▁py g",
+ "ща я",
+ "ill ery",
+ "ille ry",
+ "iller y",
+ "▁com enz",
+ "dep th",
+ "▁c él",
+ "▁re size",
+ "▁res ize",
+ "▁ resize",
+ "▁S ame",
+ "▁Sam e",
+ "▁Sa me",
+ "▁st rik",
+ "▁str ik",
+ "▁stri k",
+ "▁t ir",
+ "▁ti r",
+ "▁sc arc",
+ "▁scar c",
+ "▁M ember",
+ "▁Mem ber",
+ "▁ Member",
+ "sub scribe",
+ "ó ż",
+ "út bol",
+ "ex cept",
+ "▁dr iving",
+ "▁dri ving",
+ "▁driv ing",
+ "ki e",
+ "k ie",
+ "zo ny",
+ "zon y",
+ "z ony",
+ "ème s",
+ "è mes",
+ "Da vid",
+ "D avid",
+ "iss ant",
+ "issa nt",
+ "▁т ы",
+ "▁ ты",
+ "▁é lect",
+ "▁él ect",
+ "▁re name",
+ "▁r ename",
+ "▁ren ame",
+ "▁R unning",
+ "▁Run ning",
+ "▁ Running",
+ "▁inter faces",
+ "▁interface s",
+ "//////// ////////",
+ "▁Wal ker",
+ "▁Walk er",
+ "▁soci été",
+ "▁as ks",
+ "▁ask s",
+ "br id",
+ "b rid",
+ "▁je we",
+ "▁se ines",
+ "▁sein es",
+ "▁seine s",
+ "▁sei nes",
+ "▁ag ents",
+ "▁agent s",
+ "▁M Y",
+ "▁ MY",
+ "▁Law rence",
+ "de ss",
+ "des s",
+ "d ess",
+ "ie sen",
+ "ies en",
+ "iese n",
+ "i esen",
+ "▁людя х",
+ "прав и",
+ "пра ви",
+ "▁anc est",
+ "▁wel che",
+ "ra um",
+ "r aum",
+ "▁o rb",
+ "▁or b",
+ "▁ orb",
+ "sc al",
+ "s cal",
+ "▁L ear",
+ "▁Le ar",
+ "▁w ear",
+ "▁we ar",
+ "▁s lave",
+ "▁sl ave",
+ "▁sla ve",
+ "▁re named",
+ "▁ren amed",
+ "▁rename d",
+ "če n",
+ "č en",
+ "ma ste",
+ "mas te",
+ "m aste",
+ "ang les",
+ "angle s",
+ "▁Am érica",
+ "▁t i",
+ "▁ ti",
+ "▁dem sel",
+ "▁bene ath",
+ "bin ary",
+ "b inary",
+ "▁ed ición",
+ "▁kil omet",
+ "▁kilom et",
+ "ui ts",
+ "uit s",
+ "u its",
+ "▁cu atro",
+ "▁ent rance",
+ "▁entr ance",
+ "ond issement",
+ "▁b ag",
+ "▁ba g",
+ "▁ bag",
+ "▁Ar men",
+ "▁Arm en",
+ "ij o",
+ "i jo",
+ "▁L ors",
+ "▁Lo rs",
+ "▁Lor s",
+ "▁demsel ben",
+ "ê m",
+ "▁dis crete",
+ "▁prom inent",
+ "▁J ay",
+ "▁Ja y",
+ "de cor",
+ "dec or",
+ "D L",
+ "▁d í",
+ "St ruct",
+ "Str uct",
+ "▁P roduction",
+ "▁Produ ction",
+ "▁Product ion",
+ "th ey",
+ "the y",
+ "ar ius",
+ "ari us",
+ "sch nitt",
+ "▁C ou",
+ "▁Co u",
+ "▁l ex",
+ "▁le x",
+ "▁ lex",
+ "y outube",
+ "▁рабо та",
+ "st ation",
+ "sta tion",
+ "stat ion",
+ "se p",
+ "s ep",
+ "▁mi rror",
+ "▁mir ror",
+ "▁h its",
+ "▁hit s",
+ "▁hi ts",
+ "▁Be ck",
+ "at ically",
+ "atic ally",
+ "▁L az",
+ "▁La z",
+ "▁w inner",
+ "▁win ner",
+ "DE X",
+ "D EX",
+ "▁I NT",
+ "▁IN T",
+ "▁ INT",
+ "}^ {-",
+ "}^{ -",
+ "} ^{-",
+ "▁w egen",
+ "▁we gen",
+ "▁weg en",
+ "ma d",
+ "m ad",
+ "An gle",
+ "Ang le",
+ "zi ng",
+ "zin g",
+ "z ing",
+ "▁Bay ern",
+ "▁Bayer n",
+ "sa l",
+ "s al",
+ "äg er",
+ "ä ger",
+ "▁bus y",
+ "▁st ör",
+ "▁f olk",
+ "▁fol k",
+ "▁ folk",
+ "▁p rix",
+ "▁pr ix",
+ "▁pri x",
+ "▁al located",
+ "▁alloc ated",
+ "▁allocate d",
+ "▁p t",
+ "▁ pt",
+ "af fen",
+ "aff en",
+ "a ffen",
+ "cl uster",
+ "clus ter",
+ "▁com plement",
+ "▁comp lement",
+ "▁comple ment",
+ "▁compl ement",
+ "ár s",
+ "á rs",
+ "▁Amer ika",
+ "рі й",
+ "р ій",
+ "▁val ley",
+ "▁vall ey",
+ "▁valle y",
+ "▁ro oms",
+ "▁room s",
+ "▁ rooms",
+ "▁m oi",
+ "▁mo i",
+ ".\" ,",
+ ". \",",
+ ";; ;;",
+ "▁lo west",
+ "▁low est",
+ "no g",
+ "n og",
+ "▁land et",
+ "▁lan det",
+ "▁program me",
+ "ch io",
+ "chi o",
+ "▁W ährend",
+ "ánd ez",
+ "▁дол ж",
+ "▁o uv",
+ "▁ou v",
+ "▁ ouv",
+ "om ány",
+ "▁Википеди и",
+ "▁s ó",
+ "▁ele ktr",
+ "De sc",
+ "Des c",
+ "D esc",
+ "▁Be aut",
+ "▁Beau t",
+ "на р",
+ "н ар",
+ "▁мо же",
+ "▁мож е",
+ "P ierre",
+ "es ota",
+ "eso ta",
+ "▁oper ated",
+ "▁opera ted",
+ "▁operate d",
+ "▁f orte",
+ "▁for te",
+ "▁fort e",
+ "ри с",
+ "р ис",
+ "▁op position",
+ "▁opp osition",
+ "▁oppos ition",
+ "al ia",
+ "ali a",
+ "a lia",
+ "▁S yl",
+ "▁Sy l",
+ "get Name",
+ "ве ли",
+ "fi k",
+ "f ik",
+ "▁com prom",
+ "▁comp rom",
+ "▁compr om",
+ "▁Text View",
+ "▁ TextView",
+ "Sp ring",
+ "S pring",
+ "met adata",
+ "meta data",
+ "en gu",
+ "eng u",
+ "/ ,",
+ "▁car ri",
+ "is tol",
+ "ist ol",
+ "isto l",
+ "▁diag onal",
+ "li sta",
+ "list a",
+ "lis ta",
+ "l ista",
+ "iz en",
+ "ize n",
+ "i zen",
+ "▁re nde",
+ "▁r ende",
+ "▁ren de",
+ "▁rend e",
+ "gc c",
+ "g cc",
+ "be ck",
+ "bec k",
+ "li us",
+ "l ius",
+ "ir al",
+ "ira l",
+ "i ral",
+ "Resol ver",
+ "▁percent age",
+ "▁at tra",
+ "▁att ra",
+ "▁attr a",
+ "str ings",
+ "string s",
+ "wi ąz",
+ "od s",
+ "o ds",
+ "во лю",
+ "ę ż",
+ "▁news paper",
+ "▁newsp aper",
+ "im iter",
+ "imi ter",
+ "imit er",
+ "AB C",
+ "A BC",
+ "▁Man chester",
+ "[ {",
+ "Ag ent",
+ "Age nt",
+ "A gent",
+ "▁W or",
+ "▁Wo r",
+ "▁K ath",
+ "▁Kat h",
+ "▁Ka th",
+ "▁по ві",
+ "▁пов і",
+ "▁ent onces",
+ "▁n iveau",
+ "at ted",
+ "att ed",
+ "atte d",
+ "le arn",
+ "lear n",
+ "lea rn",
+ "at iques",
+ "ati ques",
+ "atique s",
+ "▁у би",
+ "▁qu indi",
+ "bin ding",
+ "bind ing",
+ "b inding",
+ "▁import ed",
+ "▁imp orted",
+ "▁H orn",
+ "▁Hor n",
+ "▁Ho rn",
+ "em berg",
+ "ember g",
+ "emb erg",
+ "com plex",
+ "comp lex",
+ "comple x",
+ "▁ne ural",
+ "▁neu ral",
+ "▁neur al",
+ "in formation",
+ "▁recogn ition",
+ "in gt",
+ "ing t",
+ "▁inhab itants",
+ "vu e",
+ "v ue",
+ "▁Be völker",
+ "▁cur ves",
+ "▁curve s",
+ "▁curv es",
+ "▁l eb",
+ "▁le b",
+ "▁ leb",
+ "ді й",
+ "д ій",
+ "▁s ow",
+ "▁so w",
+ "▁sent iment",
+ "P H",
+ "ra che",
+ "rac he",
+ "rach e",
+ "r ache",
+ "▁- (",
+ "▁ -(",
+ "▁e stable",
+ "▁est able",
+ "▁es table",
+ "▁estab le",
+ "▁esta ble",
+ "▁Ferd inand",
+ "▁é crit",
+ "▁éc rit",
+ "▁prime iro",
+ "▁t ex",
+ "▁te x",
+ "▁ tex",
+ "▁inter mediate",
+ "ve rage",
+ "ver age",
+ "vera ge",
+ "ib us",
+ "i bus",
+ "▁s erves",
+ "▁ser ves",
+ "▁serv es",
+ "▁serve s",
+ "iv as",
+ "iva s",
+ "i vas",
+ "▁b ru",
+ "▁br u",
+ "▁ bru",
+ "▁l um",
+ "▁lu m",
+ "att ice",
+ "atti ce",
+ "ч ный",
+ "▁D res",
+ "▁Dr es",
+ "▁Dre s",
+ "▁v ideos",
+ "▁video s",
+ "▁vide os",
+ "d uration",
+ "▁a bit",
+ "▁ab it",
+ "▁e gg",
+ "▁eg g",
+ "ograph ical",
+ "ographic al",
+ "al ph",
+ "ST ATE",
+ "STAT E",
+ "▁па ра",
+ "▁пар а",
+ "▁ пара",
+ "re ading",
+ "read ing",
+ "rea ding",
+ "▁veh icle",
+ "▁fort une",
+ "ult ats",
+ "▁St oria",
+ "▁Sto ria",
+ "mi dt",
+ "mid t",
+ "łą cz",
+ "▁Mem orial",
+ "▁v as",
+ "▁va s",
+ "▁ vas",
+ "▁з ан",
+ "▁за н",
+ "▁ зан",
+ "▁ut ility",
+ "▁util ity",
+ "▁ob sc",
+ "▁obs c",
+ "▁rel acion",
+ "▁rela cion",
+ "▁relac ion",
+ "▁run at",
+ "▁ru nat",
+ "Re lease",
+ "ta ke",
+ "t ake",
+ "▁O liver",
+ "▁Ol iver",
+ "▁Oliv er",
+ "▁S id",
+ "▁Si d",
+ "ul os",
+ "ulo s",
+ "u los",
+ "▁G arc",
+ "▁Gar c",
+ "▁Ga rc",
+ "▁роз та",
+ "▁S ak",
+ "▁Sa k",
+ "P y",
+ "führ t",
+ "f ührt",
+ "▁tra bal",
+ "▁trab al",
+ "* {",
+ "▁z es",
+ "▁ze s",
+ "▁ zes",
+ "▁sz ere",
+ "▁szer e",
+ "▁sze re",
+ "▁v arios",
+ "▁var ios",
+ "▁vari os",
+ "▁va rios",
+ "▁o tra",
+ "▁ot ra",
+ "▁e val",
+ "▁ev al",
+ "▁ eval",
+ "▁situ é",
+ "▁sit ué",
+ "▁w ounded",
+ "▁Vin cent",
+ "▁вико ри",
+ "▁en code",
+ "▁enc ode",
+ "▁ encode",
+ "Mod al",
+ "Mo dal",
+ "▁f orb",
+ "▁for b",
+ "▁fo rb",
+ "▁dynam ics",
+ "▁dynamic s",
+ "▁de pos",
+ "▁dep os",
+ "ar de",
+ "ard e",
+ "▁street s",
+ "▁stre ets",
+ "▁K omm",
+ "▁Kom m",
+ "▁Ko mm",
+ "=$ (",
+ "= $(",
+ "▁по вер",
+ "▁пов ер",
+ "▁пове р",
+ "▁d ois",
+ "▁do is",
+ "▁doi s",
+ "▁v itt",
+ "▁vi tt",
+ "▁vit t",
+ "▁automat isch",
+ "▁re load",
+ "▁ reload",
+ "▁Ver walt",
+ "ber o",
+ "be ro",
+ "b ero",
+ "▁h ub",
+ "▁hu b",
+ "▁m os",
+ "▁mo s",
+ "▁ mos",
+ "▁t utto",
+ "▁tu tto",
+ "▁tut to",
+ "▁Freder ick",
+ "ło w",
+ "ł ow",
+ "ant ages",
+ "anta ges",
+ "antage s",
+ "aqu e",
+ "a que",
+ "pa per",
+ "p aper",
+ "▁ein ige",
+ "`) ,",
+ "` ),",
+ "d j",
+ "▁P le",
+ "▁Pl e",
+ "▁% ,",
+ "▁ %,",
+ "▁B itmap",
+ "▁Bit map",
+ "▁ Bitmap",
+ "▁friend ly",
+ "▁tr uly",
+ "▁st roke",
+ "▁str oke",
+ "▁stro ke",
+ "▁ stroke",
+ "ro ph",
+ "rop h",
+ "r oph",
+ "▁en gl",
+ "▁eng l",
+ "▁ engl",
+ "▁c off",
+ "▁co ff",
+ "▁d ust",
+ "▁du st",
+ "▁dus t",
+ "▁Jah res",
+ "▁Jahr es",
+ "▁Jahre s",
+ "pp i",
+ "p pi",
+ "▁w ys",
+ "▁wy s",
+ "fa ctor",
+ "fact or",
+ "fac tor",
+ "f actor",
+ "sch luss",
+ "▁дере вня",
+ "▁дерев ня",
+ "▁P ast",
+ "▁Pa st",
+ "▁Pas t",
+ "▁до ма",
+ "CO M",
+ "C OM",
+ "▁pu eden",
+ "▁puede n",
+ "▁pue den",
+ "▁g ift",
+ "▁gi ft",
+ "▁G la",
+ "▁Gl a",
+ "▁trigger ed",
+ "él y",
+ "é ly",
+ "ül és",
+ "ü lés",
+ "▁O liv",
+ "▁Ol iv",
+ "▁ver so",
+ "▁vers o",
+ "▁ verso",
+ "▁l le",
+ "▁ll e",
+ "▁ lle",
+ "▁G li",
+ "▁Gl i",
+ "▁L td",
+ "o a",
+ "▁territ orio",
+ "ord re",
+ "▁de ck",
+ "▁dec k",
+ "▁ deck",
+ "dr a",
+ "d ra",
+ "as zt",
+ "asz t",
+ "▁concern ing",
+ "▁Add itionally",
+ "▁kter é",
+ "▁g rund",
+ "▁gr und",
+ "▁gru nd",
+ "▁ grund",
+ "▁G est",
+ "▁Ge st",
+ "▁Ges t",
+ "▁ Gest",
+ "▁mis under",
+ "pr et",
+ "pre t",
+ "p ret",
+ "── ──",
+ "▁re putation",
+ "zi a",
+ "z ia",
+ "▁у спе",
+ "▁ус пе",
+ "▁esc aped",
+ "▁escape d",
+ "▁P rag",
+ "▁Pr ag",
+ "▁Pra g",
+ "per form",
+ "▁a ustral",
+ "▁aust ral",
+ "▁V ater",
+ "▁Va ter",
+ "ча с",
+ "▁r aces",
+ "▁ra ces",
+ "▁race s",
+ "▁rac es",
+ "▁By te",
+ "▁ Byte",
+ "Ma sk",
+ "M ask",
+ "▁Ter rit",
+ "▁Terr it",
+ "ст ю",
+ "▁V oci",
+ "▁Vo ci",
+ "▁Fich ier",
+ "▁Насе лення",
+ "▁Unter scheidung",
+ "te enth",
+ "teen th",
+ "▁pi lot",
+ "▁pil ot",
+ "▁j i",
+ "▁ ji",
+ "▁дву х",
+ "▁orient ation",
+ "▁ orientation",
+ "ind re",
+ "▁D ort",
+ "▁Do rt",
+ "▁Dor t",
+ "ça s",
+ "ç as",
+ "п ли",
+ "▁re action",
+ "▁react ion",
+ "▁cons isting",
+ "▁consist ing",
+ "▁fer ro",
+ "ти сти",
+ "ya rd",
+ "yar d",
+ "y ard",
+ "▁с ві",
+ "▁interpret ation",
+ "i ą",
+ "ra h",
+ "r ah",
+ "▁f and",
+ "▁fa nd",
+ "▁fan d",
+ "Pub lic",
+ "P ublic",
+ "▁un iverse",
+ "▁univers e",
+ "▁ret ir",
+ "▁cons cious",
+ "ar qu",
+ "▁w aste",
+ "▁was te",
+ "▁wa ste",
+ "▁B ib",
+ "▁Bi b",
+ "ycler View",
+ "▁list ening",
+ "▁listen ing",
+ "▁liste ning",
+ "gle ich",
+ "g leich",
+ "nie js",
+ "niej s",
+ "▁cor relation",
+ "▁correl ation",
+ "▁corre lation",
+ "▁rece iver",
+ "▁receive r",
+ "▁у да",
+ "▁cour age",
+ "▁cou rage",
+ "uch s",
+ "uc hs",
+ "u chs",
+ "fa ss",
+ "fas s",
+ "f ass",
+ "▁ch unk",
+ "▁ chunk",
+ "▁An fang",
+ "▁gro ßen",
+ "▁große n",
+ "▁groß en",
+ "cont inue",
+ "continu e",
+ "▁Warsza wa",
+ "h é",
+ "i y",
+ "iv ement",
+ "ive ment",
+ "i vement",
+ "▁ α",
+ "▁ex posed",
+ "▁exp osed",
+ "▁expos ed",
+ "▁expose d",
+ "▁z ahl",
+ "▁za hl",
+ "▁ zahl",
+ "▁sa cr",
+ "▁sac r",
+ "▁Lo oks",
+ "▁Look s",
+ "▁e ager",
+ "en ten",
+ "ent en",
+ "ente n",
+ "e nten",
+ "C ursor",
+ "/ _",
+ "ix a",
+ "i xa",
+ "ре ла",
+ "зна ча",
+ "з нача",
+ "▁фамили ей",
+ "▁ar gent",
+ "▁arg ent",
+ "▁ argent",
+ "▁An ders",
+ "▁And ers",
+ "œuv re",
+ "▁I sa",
+ "▁Is a",
+ "мен та",
+ "мент а",
+ "▁ad vers",
+ "▁adv ers",
+ "ri ction",
+ "ric tion",
+ "rict ion",
+ "r iction",
+ "G P",
+ "▁п ісля",
+ "▁pre serve",
+ "▁pres erve",
+ "▁G arden",
+ "▁Gar den",
+ "▁Gard en",
+ "R ate",
+ "ap rès",
+ "a près",
+ "▁read able",
+ "in du",
+ "ind u",
+ "▁s kill",
+ "▁sk ill",
+ "▁ski ll",
+ "▁hel ping",
+ "▁help ing",
+ "ograph ique",
+ "cl ing",
+ "cli ng",
+ "c ling",
+ "olog ist",
+ "▁Fil ter",
+ "▁ Filter",
+ "▁f inger",
+ "▁fin ger",
+ "▁V all",
+ "▁Val l",
+ "▁Va ll",
+ "▁Pol ish",
+ "▁Po lish",
+ "l g",
+ "▁Famil ien",
+ "▁Familie n",
+ "▁w aters",
+ "▁water s",
+ "▁wa ters",
+ "▁wat ers",
+ "▁pse ud",
+ "az a",
+ "a za",
+ "_ )",
+ "AR Y",
+ "A RY",
+ "▁с реди",
+ "▁сред и",
+ "▁сре ди",
+ "▁M ust",
+ "▁Mus t",
+ "▁Mu st",
+ "▁B od",
+ "▁Bo d",
+ "an on",
+ "ano n",
+ "a non",
+ "▁l ado",
+ "▁la do",
+ "▁lad o",
+ "▁t ight",
+ "im en",
+ "ime n",
+ "i men",
+ "ap pen",
+ "app en",
+ "appe n",
+ "a ppen",
+ "fr ames",
+ "frame s",
+ "fra mes",
+ "fram es",
+ "in gers",
+ "ing ers",
+ "inger s",
+ "inge rs",
+ "▁CO VID",
+ "▁з і",
+ "▁ зі",
+ "▁с ве",
+ "▁ц ь",
+ "▁ ць",
+ "▁L eft",
+ "▁Le ft",
+ "▁ Left",
+ "]] ;",
+ "] ];",
+ "ч ь",
+ "фи ка",
+ "▁с ло",
+ "▁ сло",
+ "▁п і",
+ "▁ пі",
+ "▁ex iste",
+ "▁exist e",
+ "▁Atl antic",
+ "▁maintain ed",
+ "▁ir re",
+ "▁an née",
+ "▁ann ée",
+ "▁ année",
+ "▁comm ented",
+ "▁comment ed",
+ "ве ро",
+ "вер о",
+ "ber ta",
+ "bert a",
+ "b erta",
+ "▁L ad",
+ "▁La d",
+ "▁U pon",
+ "▁Up on",
+ "▁p ause",
+ "▁pa use",
+ "▁pau se",
+ "mi ll",
+ "mil l",
+ "m ill",
+ "op ter",
+ "opt er",
+ "U K",
+ "ре с",
+ "р ес",
+ "нцикло педи",
+ "▁along side",
+ "▁ro bot",
+ "▁rob ot",
+ "▁f ert",
+ "▁fe rt",
+ "▁fer t",
+ "▁ fert",
+ "▁m oy",
+ "▁mo y",
+ "▁a de",
+ "▁ad e",
+ "▁ ade",
+ "Map per",
+ "Mapp er",
+ "Ma pper",
+ "M apper",
+ ")- >",
+ ") ->",
+ "ig ua",
+ "igu a",
+ "ét ique",
+ "т ка",
+ "al ias",
+ "ali as",
+ "alia s",
+ "a lias",
+ "▁о ри",
+ "▁ор и",
+ "▁M agn",
+ "▁Ma gn",
+ "▁Mag n",
+ "▁gehör te",
+ "▁gehört e",
+ "im b",
+ "i mb",
+ ")} {\\",
+ ")}{ \\",
+ ") }{\\",
+ "▁Wikip édia",
+ "▁u rs",
+ "▁ur s",
+ "▁ urs",
+ "▁e nde",
+ "▁en de",
+ "▁end e",
+ "▁ ende",
+ "le b",
+ "l eb",
+ "▁G C",
+ "▁ GC",
+ "H ol",
+ "an cing",
+ "anc ing",
+ "anci ng",
+ "Un ion",
+ "Uni on",
+ "▁ten ía",
+ "T T",
+ "▁e state",
+ "▁est ate",
+ "▁esta te",
+ "▁estat e",
+ "h á",
+ "▁по лі",
+ "▁пол і",
+ "ul tan",
+ "ult an",
+ "▁H ockey",
+ "ul se",
+ "uls e",
+ "▁cho ices",
+ "▁choice s",
+ "sch er",
+ "sc her",
+ "sche r",
+ "s cher",
+ "▁[ ],",
+ "▁[] ,",
+ "▁pot entially",
+ "▁potential ly",
+ "▁Ü bers",
+ "▁Über s",
+ "▁ad mit",
+ "▁adm it",
+ "Com ment",
+ "Comm ent",
+ "ст я",
+ "с тя",
+ "▁V ien",
+ "▁Vi en",
+ "▁Vie n",
+ "▁ц і",
+ "▁ ці",
+ "▁per mut",
+ "▁perm ut",
+ "c gi",
+ "▁cr ít",
+ "Con sole",
+ "Cons ole",
+ "ct ic",
+ "▁ok res",
+ "aw k",
+ "foot ball",
+ "ou est",
+ "o uest",
+ "CT YPE",
+ "C TYPE",
+ "olog ique",
+ "▁const it",
+ "▁cons tit",
+ "▁inter ests",
+ "▁interest s",
+ "▁Pro gress",
+ "▁ Progress",
+ "▁M enu",
+ "▁Me nu",
+ "▁Men u",
+ "▁ Menu",
+ "▁tak é",
+ "▁ta ké",
+ "▁As ian",
+ "▁Asia n",
+ "▁за щи",
+ "▁young er",
+ "▁w ished",
+ "▁wish ed",
+ "▁wis hed",
+ "▁S ort",
+ "▁So rt",
+ "▁Sor t",
+ "▁ Sort",
+ "▁aud ience",
+ "▁audi ence",
+ "am ba",
+ "amb a",
+ "▁gehör t",
+ "▁K ansas",
+ "ya ume",
+ "▁Prof essional",
+ "â ce",
+ "▁f atto",
+ "▁fa tto",
+ "▁fat to",
+ "to d",
+ "t od",
+ "▁data sets",
+ "▁datas ets",
+ "▁dataset s",
+ "▁f are",
+ "▁far e",
+ "▁fa re",
+ "▁ fare",
+ "▁w aves",
+ "▁wave s",
+ "▁wa ves",
+ "~ /",
+ "▁measure ment",
+ "▁w ol",
+ "▁wo l",
+ "▁ wol",
+ "ind ust",
+ "indu st",
+ "▁strugg ling",
+ "▁pull ed",
+ "▁pul led",
+ "▁car atter",
+ "▁Ex terne",
+ "▁Ext erne",
+ "▁Extern e",
+ "▁дей стви",
+ "cn t",
+ "c nt",
+ "li ches",
+ "lic hes",
+ "lich es",
+ "liche s",
+ "▁Pos sible",
+ "▁Poss ible",
+ "▁fa ced",
+ "▁face d",
+ "▁fac ed",
+ "▁hypoth esis",
+ "▁kil om",
+ "▁n är",
+ "▁nä r",
+ "bo olean",
+ "P Y",
+ "am pa",
+ "amp a",
+ "▁k iss",
+ "▁ki ss",
+ "▁kis s",
+ "▁as tero",
+ "▁ast ero",
+ "▁neg li",
+ "am ents",
+ "ament s",
+ "amen ts",
+ "a ments",
+ "▁S tu",
+ "▁St u",
+ "at ó",
+ "a tó",
+ "▁Const itution",
+ "▁inter pol",
+ "▁Un able",
+ "▁Una ble",
+ "▁p is",
+ "▁pi s",
+ "▁ pis",
+ "▁p arc",
+ "▁par c",
+ "▁pa rc",
+ "\"] )",
+ "\" ])",
+ "ple r",
+ "pl er",
+ "p ler",
+ "▁aut ory",
+ "▁auto ry",
+ "▁autor y",
+ "▁alg unos",
+ "yw na",
+ "}) )",
+ "} ))",
+ "▁f alls",
+ "▁fall s",
+ "▁fal ls",
+ "▁ falls",
+ "▁é quip",
+ "▁e mit",
+ "▁em it",
+ "▁ emit",
+ "▁pro fil",
+ "▁prof il",
+ "ge ts",
+ "get s",
+ "g ets",
+ "ф о",
+ "▁Milit ary",
+ "▁nombre ux",
+ "oc t",
+ "o ct",
+ "Re place",
+ "Rep lace",
+ "▁se asons",
+ "▁season s",
+ "▁ch âteau",
+ "▁type of",
+ "▁ typeof",
+ "po lit",
+ "pol it",
+ "p olit",
+ "▁r and",
+ "▁ra nd",
+ "▁ran d",
+ "▁ rand",
+ "▁qu ar",
+ "▁erst mals",
+ "си ни",
+ "▁pay load",
+ "▁ payload",
+ "П о",
+ "кі н",
+ "к ін",
+ "re po",
+ "rep o",
+ "▁P av",
+ "▁Pa v",
+ "Sc ore",
+ "S core",
+ "er ves",
+ "erv es",
+ "erve s",
+ "▁soll te",
+ "▁мі ж",
+ "éb ec",
+ "é bec",
+ "▁c lip",
+ "▁cl ip",
+ "▁cli p",
+ "▁ clip",
+ "▁N ice",
+ "▁Nic e",
+ "▁Ni ce",
+ "▁n eben",
+ "▁ne ben",
+ "▁ass ass",
+ "it ories",
+ "ito ries",
+ "itor ies",
+ "itori es",
+ "▁un ity",
+ "▁unit y",
+ "▁ unity",
+ "▁е н",
+ "▁ ен",
+ "▁Inst itut",
+ "▁Instit ut",
+ "▁ Institut",
+ "▁intern ationale",
+ "▁international e",
+ "▁на ук",
+ "▁нау к",
+ "▁com and",
+ "▁kle ine",
+ "▁klein e",
+ "▁adj acent",
+ "▁deliver ed",
+ "▁ш е",
+ "▁ ше",
+ "зе м",
+ "з ем",
+ "▁c ot",
+ "▁co t",
+ "▁ cot",
+ "vis ual",
+ "ва ет",
+ "▁C ensus",
+ "\\ _",
+ "▁territ ory",
+ "чи л",
+ "ч ил",
+ "ч ные",
+ "fl utter",
+ "Did Load",
+ "Document s",
+ "Doc uments",
+ "▁d ob",
+ "▁do b",
+ "▁ dob",
+ "Br e",
+ "B re",
+ "an imate",
+ "ani mate",
+ "anim ate",
+ "▁b iz",
+ "▁bi z",
+ "▁b ata",
+ "▁ba ta",
+ "▁bat a",
+ "▁S U",
+ "▁ SU",
+ "es o",
+ "e so",
+ "▁p riority",
+ "▁prior ity",
+ "vá n",
+ "v án",
+ "ir as",
+ "ira s",
+ "i ras",
+ "▁char ged",
+ "▁charge d",
+ "▁charg ed",
+ "▁M icro",
+ "▁Mi cro",
+ "▁Mic ro",
+ "at oire",
+ "ato ire",
+ "a toire",
+ "че р",
+ "ч ер",
+ "ab ad",
+ "aba d",
+ "a bad",
+ "ur u",
+ "u ru",
+ "▁v š",
+ "dir e",
+ "di re",
+ "d ire",
+ "▁Tw itter",
+ "▁м ето",
+ "▁ме то",
+ "▁мет о",
+ "). .",
+ ") ..",
+ "▁Ц ент",
+ "▁ent wick",
+ "▁M ind",
+ "▁Min d",
+ "▁Mi nd",
+ "▁ф унк",
+ "F uture",
+ "ls t",
+ "l st",
+ "ło ż",
+ "fl i",
+ "f li",
+ "t ensor",
+ "▁top ology",
+ "▁ar te",
+ "▁art e",
+ "▁ arte",
+ "ER T",
+ "E RT",
+ "▁var iance",
+ "▁vari ance",
+ "Im ages",
+ "Image s",
+ "▁( @",
+ "▁ (@",
+ "Array List",
+ "O C",
+ "▁Де мо",
+ "auc oup",
+ "▁de notes",
+ "▁den otes",
+ "▁denote s",
+ "im on",
+ "imo n",
+ "i mon",
+ "њ и",
+ "▁Prz yp",
+ "▁Z ag",
+ "▁Za g",
+ "▁ди ре",
+ "▁Similar ly",
+ "б ро",
+ "▁mil itaire",
+ "▁milit aire",
+ "▁т ому",
+ "▁то му",
+ "▁том у",
+ "▁ тому",
+ "▁John ny",
+ "▁Мекси ку",
+ "ћ а",
+ "Su pp",
+ "S upp",
+ "▁jun ior",
+ "▁junio r",
+ "▁juni or",
+ "ol tre",
+ "olt re",
+ "o ltre",
+ "▁Мо ск",
+ "▁Мос к",
+ "▁adm itted",
+ "▁admit ted",
+ "▁relig ios",
+ "зя й",
+ "е го",
+ "▁t ears",
+ "▁te ars",
+ "▁tea rs",
+ "in go",
+ "ing o",
+ "od u",
+ "o du",
+ "iv eness",
+ "ive ness",
+ "iven ess",
+ "▁l ogo",
+ "▁lo go",
+ "▁log o",
+ "▁ logo",
+ "▁últ imo",
+ "▁al iment",
+ "▁ali ment",
+ "▁U ITableView",
+ "▁ UITableView",
+ ") !",
+ "▁n j",
+ "le tte",
+ "let te",
+ "lett e",
+ "l ette",
+ "▁res ident",
+ "▁resid ent",
+ "▁term ine",
+ "▁ter mine",
+ "▁termin e",
+ "▁у же",
+ "▁С те",
+ "▁Ст е",
+ "off ice",
+ "▁c arte",
+ "▁car te",
+ "▁cart e",
+ "▁li vre",
+ "▁liv re",
+ "▁Мо сков",
+ "▁Мос ков",
+ "▁Моск ов",
+ "▁e lections",
+ "▁elect ions",
+ "▁ele ctions",
+ "▁election s",
+ "зи ден",
+ "Tr igger",
+ "▁Ben jamin",
+ "add Class",
+ "ско г",
+ "▁Ob servable",
+ "▁Observ able",
+ "▁ Observable",
+ "Cl a",
+ "C la",
+ "gem ein",
+ "geme in",
+ "g emein",
+ "▁con sent",
+ "▁cons ent",
+ "▁conse nt",
+ "в ри",
+ "▁un fold",
+ "▁unf old",
+ "▁govern or",
+ "▁gover nor",
+ "▁governo r",
+ "на л",
+ "н ал",
+ "▁t oda",
+ "▁to da",
+ "▁tod a",
+ "Rem ote",
+ "ar ias",
+ "ari as",
+ "aria s",
+ "a rias",
+ "▁in stal",
+ "▁inst al",
+ "▁ins tal",
+ "fix ed",
+ "f ixed",
+ "▁dec ay",
+ "▁де рев",
+ "▁дере в",
+ "xy z",
+ "x yz",
+ "▁D ATE",
+ "▁DA TE",
+ "▁DAT E",
+ "▁ DATE",
+ "im ar",
+ "ima r",
+ "i mar",
+ "nt il",
+ "n til",
+ "▁start up",
+ "al ion",
+ "ali on",
+ "▁ko lej",
+ "▁kol ej",
+ "▁kole j",
+ "ci os",
+ "cio s",
+ "c ios",
+ "▁r anges",
+ "▁range s",
+ "▁ran ges",
+ "▁rang es",
+ "▁stup id",
+ "▁implement ations",
+ "▁implementation s",
+ "▁r m",
+ "▁ rm",
+ "én ek",
+ "é nek",
+ "▁g cc",
+ "▁ gcc",
+ "▁sc ène",
+ "N avigation",
+ "▁ ",
+ "▁к ан",
+ "▁ка н",
+ "▁ кан",
+ "▁town s",
+ "User name",
+ "Us ername",
+ "▁ф е",
+ "▁ фе",
+ "▁le aders",
+ "▁lead ers",
+ "▁leader s",
+ "oi t",
+ "o it",
+ "w är",
+ "▁d ummy",
+ "▁ass istant",
+ "▁assist ant",
+ "{$ \\",
+ "{ $\\",
+ "бі р",
+ "б ір",
+ "▁r oy",
+ "▁ro y",
+ "▁ roy",
+ "▁L ayout",
+ "▁ Layout",
+ "▁J ung",
+ "▁Ju ng",
+ "▁Jun g",
+ "Line s",
+ "Lin es",
+ "Li nes",
+ "L ines",
+ "▁Hol land",
+ "по р",
+ "п ор",
+ "▁Г ри",
+ "▁B ened",
+ "▁Be ned",
+ "▁Ben ed",
+ "▁П од",
+ "▁По д",
+ "xl s",
+ "x ls",
+ "▁G ol",
+ "▁Go l",
+ "▁Al eks",
+ "▁Ale ks",
+ "▁ej emplo",
+ "▁se zon",
+ "ar ding",
+ "ard ing",
+ "ardi ng",
+ "ardin g",
+ "foot note",
+ "▁Cong rès",
+ "re fer",
+ "ref er",
+ "ска та",
+ "с ката",
+ "Iter ator",
+ "▁our selves",
+ "▁M ic",
+ "▁Mi c",
+ "▁c ódigo",
+ "▁пло ща",
+ "▁\\ $",
+ "▁Char lie",
+ "No des",
+ "Node s",
+ "N odes",
+ "▁p uzz",
+ "▁pu zz",
+ "▁Ident ifier",
+ "▁ Identifier",
+ "▁fl utter",
+ "▁ flutter",
+ "▁pr ü",
+ "▁ prü",
+ "▁o rt",
+ "▁or t",
+ "▁ ort",
+ "▁C ort",
+ "▁Cor t",
+ "▁Co rt",
+ "astic search",
+ "▁С вя",
+ "▁B ull",
+ "▁Bu ll",
+ "▁Bul l",
+ "ud em",
+ "ude m",
+ "u dem",
+ "▁ap parent",
+ "▁appar ent",
+ ":- -",
+ ": --",
+ "▁Х ар",
+ "▁Ха р",
+ "▁L ap",
+ "▁La p",
+ "▁com port",
+ "▁comp ort",
+ "mat ically",
+ "m atically",
+ "▁cu rios",
+ "▁cur ios",
+ "▁мо жет",
+ "▁мож ет",
+ "▁може т",
+ "▁B h",
+ "ap ping",
+ "app ing",
+ "a pping",
+ "▁b asketball",
+ "▁basket ball",
+ "ze tek",
+ "zet ek",
+ "▁r unt",
+ "▁run t",
+ "▁ru nt",
+ "▁Mil an",
+ "▁Mi lan",
+ "fe ction",
+ "fect ion",
+ "f ection",
+ "rí a",
+ "r ía",
+ "▁K in",
+ "▁Ki n",
+ "▁s lower",
+ "▁sl ower",
+ "▁slow er",
+ "▁slo wer",
+ "bo th",
+ "bot h",
+ "b oth",
+ "▁Inst ituto",
+ "▁Instit uto",
+ "▁Institut o",
+ "▁Histor ical",
+ "▁Historic al",
+ "▁równ ież",
+ "mat ches",
+ "match es",
+ "yc i",
+ "y ci",
+ "▁esp èce",
+ "▁Schwe izer",
+ "▁Schweiz er",
+ "N T",
+ "S F",
+ "ac ia",
+ "aci a",
+ "a cia",
+ "for ge",
+ "f orge",
+ "Point s",
+ "Po ints",
+ "num bers",
+ "number s",
+ "▁f alling",
+ "▁fall ing",
+ "▁fal ling",
+ "▁inherit ance",
+ "▁Er st",
+ "▁custom ers",
+ "▁customer s",
+ "▁a ctu",
+ "▁act u",
+ "▁ac tu",
+ "▁m igration",
+ "▁migr ation",
+ "\\ '",
+ "Pl an",
+ "P lan",
+ "M r",
+ "ot hy",
+ "oth y",
+ "o thy",
+ "▁up grad",
+ "би ра",
+ "▁O ffic",
+ "▁Of fic",
+ "▁Off ic",
+ "▁W ait",
+ "▁Wa it",
+ "▁ Wait",
+ "▁to ler",
+ "ar don",
+ "ard on",
+ "ardo n",
+ "▁s lide",
+ "▁sl ide",
+ "▁sli de",
+ "▁ slide",
+ ") _",
+ "▁ста в",
+ "▁ став",
+ "▁nu clear",
+ "▁nuc lear",
+ "▁nucle ar",
+ "▁B il",
+ "▁Bi l",
+ "ow ner",
+ "own er",
+ "o wner",
+ "▁Har ris",
+ "▁Harr is",
+ "In formation",
+ "▁p ó",
+ "▁вклю ча",
+ "▁nu ovo",
+ "▁C av",
+ "▁Ca v",
+ "▁De scri",
+ "▁Des cri",
+ "▁а к",
+ "ód zt",
+ "▁react js",
+ "▁Ad ams",
+ "▁Adam s",
+ "▁Ada ms",
+ "▁Altern atively",
+ "ст рук",
+ "стру к",
+ "стр ук",
+ ")` ,",
+ ") `,",
+ "sub string",
+ "subst ring",
+ "substr ing",
+ "▁mass ive",
+ "▁heav ily",
+ "▁се зо",
+ "▁сез о",
+ "▁A na",
+ "▁An a",
+ "▁v ale",
+ "▁val e",
+ "▁va le",
+ "Pa d",
+ "P ad",
+ "▁E ither",
+ "▁r s",
+ "▁ rs",
+ "an che",
+ "anc he",
+ "anch e",
+ "▁up loaded",
+ "▁upload ed",
+ "▁( /",
+ "▁ (/",
+ "▁с пор",
+ "▁спо р",
+ "▁сп ор",
+ "▁redu ction",
+ "▁Tok yo",
+ "gr en",
+ "gre n",
+ "g ren",
+ "▁m igli",
+ "▁mig li",
+ "▁iter ator",
+ "▁ iterator",
+ "st av",
+ "sta v",
+ "▁support ing",
+ "▁ö sterreich",
+ "▁NS Log",
+ "ist iques",
+ "isti ques",
+ "istique s",
+ "ri min",
+ "rim in",
+ "r imin",
+ "MO DE",
+ "}} }\\",
+ "}}} \\",
+ "} }}\\",
+ "▁exp los",
+ "▁expl os",
+ "▁explo s",
+ "от е",
+ "о те",
+ "▁( „",
+ "Sa l",
+ "S al",
+ "▁simple st",
+ "▁simpl est",
+ "▁gi à",
+ "▁та н",
+ "▁т ан",
+ "▁ тан",
+ "▁c yl",
+ "▁cy l",
+ "bi r",
+ "b ir",
+ "▁measure ments",
+ "▁measurement s",
+ "Create d",
+ "Cre ated",
+ "er ek",
+ "ere k",
+ "e rek",
+ "look up",
+ "w irtschaft",
+ "▁В оло",
+ "▁Во ло",
+ "▁Вол о",
+ "ti mer",
+ "time r",
+ "tim er",
+ "t imer",
+ "de rr",
+ "der r",
+ "d err",
+ "▁ст ала",
+ "▁ста ла",
+ "▁стал а",
+ "▁sc enes",
+ "▁scen es",
+ "▁scene s",
+ "▁per su",
+ "▁pers u",
+ "li est",
+ "lie st",
+ "lies t",
+ "l iest",
+ "▁sch edule",
+ "▁sched ule",
+ "ta l",
+ "t al",
+ "ле но",
+ "лен о",
+ "▁pain ting",
+ "▁paint ing",
+ "▁impro vement",
+ "▁improve ment",
+ "▁improv ement",
+ "so ftware",
+ "soft ware",
+ "▁govern o",
+ "▁gover no",
+ "▁H ir",
+ "▁Hi r",
+ "Exec ution",
+ "▁Ok ay",
+ "Pro p",
+ "Pr op",
+ "P rop",
+ "lo ster",
+ "los ter",
+ "lost er",
+ "l oster",
+ "ніципа лі",
+ "▁peu vent",
+ "ol u",
+ "o lu",
+ "▁Ф а",
+ "roll o",
+ "rol lo",
+ "▁ко ло",
+ "▁к оло",
+ "▁ коло",
+ "▁car rière",
+ "▁carri ère",
+ "▁t oggle",
+ "▁tog gle",
+ "▁togg le",
+ "▁ toggle",
+ "▁( $\\",
+ "▁($ \\",
+ "▁aggreg ate",
+ "▁Б і",
+ "text area",
+ "O k",
+ "it to",
+ "itt o",
+ "i tto",
+ "▁s tim",
+ "▁st im",
+ "▁recurs ion",
+ "▁Feder ation",
+ ")_ {",
+ ") _{",
+ "ate gor",
+ "ateg or",
+ "▁dist ribu",
+ "▁distrib u",
+ "Cl oud",
+ "▁m adre",
+ "▁mad re",
+ "▁i v",
+ "▁ iv",
+ "▁Lie utenant",
+ "▁subst ant",
+ "▁le af",
+ "▁ leaf",
+ "▁Kont rola",
+ "V A",
+ "▁t omb",
+ "▁to mb",
+ "▁tom b",
+ "э н",
+ "ato es",
+ "▁god ine",
+ "▁# >",
+ "C ert",
+ "▁em presa",
+ "▁empres a",
+ "Pro ps",
+ "Pr ops",
+ "Prop s",
+ "▁pl anned",
+ "▁plan ned",
+ "▁random ly",
+ "j ähr",
+ "el em",
+ "ele m",
+ "e lem",
+ "▁Oper ation",
+ "▁Opera tion",
+ "▁ Operation",
+ "* `",
+ "pro tocol",
+ "proto col",
+ "() ));",
+ "()) );",
+ "())) ;",
+ "( )));",
+ "we l",
+ "w el",
+ "▁p raw",
+ "▁pr aw",
+ "▁pra w",
+ "▁с им",
+ "▁си м",
+ "▁w ob",
+ "▁wo b",
+ "▁h ace",
+ "▁ha ce",
+ "▁near est",
+ "dis able",
+ "▁C ommun",
+ "▁Com mun",
+ "▁Comm un",
+ "▁re vel",
+ "▁rev el",
+ "▁reve l",
+ "Fr ee",
+ "Fre e",
+ "F ree",
+ "▁bra ckets",
+ "IO Exception",
+ "▁al to",
+ "▁alt o",
+ "▁mar ry",
+ "▁a uc",
+ "▁au c",
+ "▁ auc",
+ "), \\",
+ ") ,\\",
+ "▁typ o",
+ "▁ty po",
+ "ed ad",
+ "eda d",
+ "ar á",
+ "a rá",
+ "ic ator",
+ "ica tor",
+ "tat ywna",
+ "▁b uff",
+ "▁bu ff",
+ "▁buf f",
+ "▁ buff",
+ "or ders",
+ "ord ers",
+ "order s",
+ "orde rs",
+ "▁as ynchronous",
+ "▁e con",
+ "▁ec on",
+ "▁f eu",
+ "▁fe u",
+ "▁I ron",
+ "▁Ir on",
+ "▁r ising",
+ "▁ris ing",
+ "▁ri sing",
+ "Rad ius",
+ "cl k",
+ "▁zwe iten",
+ "▁zwei ten",
+ "▁zweite n",
+ "` '",
+ "▁un iqu",
+ "▁F M",
+ "▁ FM",
+ "▁B ran",
+ "▁Br an",
+ "▁Bra n",
+ "▁f lu",
+ "▁fl u",
+ "▁ flu",
+ "▁sens itive",
+ "ur re",
+ "urr e",
+ "▁I ter",
+ "▁It er",
+ "▁ Iter",
+ "▁S ein",
+ "▁Se in",
+ "▁difer entes",
+ "▁diferen tes",
+ "▁не го",
+ "▁н его",
+ "▁ него",
+ "ch ia",
+ "chi a",
+ "▁An leitung",
+ "atur day",
+ "▁sh orter",
+ "▁short er",
+ "▁transl ated",
+ "▁translate d",
+ "▁R és",
+ "▁Ré s",
+ "▁r ode",
+ "▁ro de",
+ "▁rod e",
+ "dr ag",
+ "dra g",
+ "d rag",
+ "▁l ange",
+ "▁lang e",
+ "▁lan ge",
+ "B i",
+ "ü b",
+ "le ur",
+ "l eur",
+ "▁order ing",
+ "▁ord ering",
+ "al ous",
+ "alo us",
+ "▁К ор",
+ "▁Ко р",
+ "ar char",
+ "arch ar",
+ "arc har",
+ "dest roy",
+ "erv ation",
+ "erva tion",
+ "]] ,",
+ "] ],",
+ "Accessor Impl",
+ "▁autory tatywna",
+ "Se quence",
+ "Sequ ence",
+ "▁pro yect",
+ "▁b ran",
+ "▁br an",
+ "▁bra n",
+ "▁( +",
+ "▁K ab",
+ "▁Ka b",
+ "▁z em",
+ "▁ze m",
+ "▁ zem",
+ "▁Cal cul",
+ "▁ Calcul",
+ "▁se ul",
+ "▁seu l",
+ "▁N iger",
+ "▁Ni ger",
+ "▁ch iam",
+ "▁chi am",
+ "th row",
+ "▁Plan et",
+ "▁Pla net",
+ "bild ung",
+ "▁z ones",
+ "▁zo nes",
+ "▁zone s",
+ "trans ition",
+ "ле ний",
+ "▁m apped",
+ "▁ma pped",
+ "▁map ped",
+ "on aut",
+ "ona ut",
+ "Pa ir",
+ "P air",
+ "il ian",
+ "ili an",
+ "ilia n",
+ "▁M organ",
+ "▁Mor gan",
+ "▁un to",
+ "▁ unto",
+ "jo u",
+ "j ou",
+ "▁h id",
+ "▁hi d",
+ "▁M eta",
+ "▁Me ta",
+ "▁Met a",
+ "▁ Meta",
+ "▁e lles",
+ "▁el les",
+ "▁elle s",
+ "▁ell es",
+ "▁ elles",
+ "Lo u",
+ "L ou",
+ "ra ma",
+ "ram a",
+ "r ama",
+ "ge ordnet",
+ "▁scarc ely",
+ "▁m int",
+ "▁min t",
+ "▁mi nt",
+ "F ocus",
+ "▁Al ter",
+ "▁Alt er",
+ "▁d io",
+ "▁di o",
+ "▁am pl",
+ "▁amp l",
+ "ière ment",
+ "▁ис следова",
+ "LE D",
+ "L ED",
+ "alg orithm",
+ "▁сай ті",
+ "▁сайт і",
+ "▁\" \")",
+ "▁\"\" )",
+ "Hi story",
+ "H istory",
+ "p k",
+ "▁W hit",
+ "▁Wh it",
+ "▁си стем",
+ "▁систе м",
+ "▁Kir chen",
+ "▁Kirche n",
+ "▁Kirch en",
+ "r à",
+ "AP P",
+ "A PP",
+ "▁< %",
+ "ant ine",
+ "anti ne",
+ "antin e",
+ "▁D isk",
+ "▁Dis k",
+ "▁Di sk",
+ "con v",
+ "we lt",
+ "wel t",
+ "w elt",
+ "▁F ut",
+ "▁Fu t",
+ "▁N om",
+ "▁No m",
+ "or do",
+ "ord o",
+ "el lij",
+ "ell ij",
+ "elli j",
+ "▁rece ives",
+ "▁receive s",
+ "co w",
+ "c ow",
+ "yt u",
+ "y tu",
+ "▁o bras",
+ "▁ob ras",
+ "▁obra s",
+ "▁p urchase",
+ "▁purch ase",
+ "▁ear ned",
+ "▁acc essed",
+ "▁access ed",
+ "ax i",
+ "a xi",
+ "▁M ans",
+ "▁Man s",
+ "▁Ma ns",
+ "iv an",
+ "iva n",
+ "i van",
+ "▁t uvo",
+ "▁tu vo",
+ "▁T race",
+ "▁Tr ace",
+ "▁Tra ce",
+ "▁ Trace",
+ "rim onio",
+ "▁desen vol",
+ "ér ique",
+ "éri que",
+ "é rique",
+ "▁result ed",
+ "▁comp uting",
+ "▁comput ing",
+ "▁insp ired",
+ "▁inspir ed",
+ "▁Pr ize",
+ "▁Pri ze",
+ "* \"",
+ "Com put",
+ "Comp ut",
+ "▁ext ensive",
+ "▁extens ive",
+ "è g",
+ "▁Port ály",
+ "▁cast le",
+ "▁ castle",
+ "▁* .",
+ "▁ *.",
+ "▁ph otos",
+ "▁phot os",
+ "▁photo s",
+ "▁vo et",
+ "ON G",
+ "O NG",
+ "▁A lle",
+ "▁Al le",
+ "▁All e",
+ "▁thre aten",
+ "▁threat en",
+ "st üt",
+ "▁album s",
+ "▁alb ums",
+ "▁d ense",
+ "▁den se",
+ "▁dens e",
+ "fl at",
+ "f lat",
+ "cont inu",
+ "Sub ject",
+ "Su bject",
+ "▁read only",
+ "Op t",
+ "O pt",
+ "пи ско",
+ "пис ко",
+ "▁A ber",
+ "▁Ab er",
+ "▁P osition",
+ "▁Pos ition",
+ "▁ Position",
+ "▁To day",
+ "▁Tod ay",
+ "▁m ini",
+ "▁min i",
+ "▁mi ni",
+ "▁B ef",
+ "▁Be f",
+ "li sten",
+ "list en",
+ "lis ten",
+ "l isten",
+ "ствен ного",
+ "ственно го",
+ "SU B",
+ "S UB",
+ "os sa",
+ "oss a",
+ "▁P ope",
+ "▁Po pe",
+ "▁Pop e",
+ "▁Jim my",
+ "▁Д ру",
+ "ungs seite",
+ "▁t ren",
+ "▁tr en",
+ "▁tre n",
+ "op tim",
+ "opt im",
+ "it sch",
+ "its ch",
+ "▁s amt",
+ "▁sa mt",
+ "▁sam t",
+ "▁испо л",
+ "▁ис пол",
+ "& =",
+ "▁Przyp isy",
+ "▁про дол",
+ "C r",
+ "er mann",
+ "erm ann",
+ "erman n",
+ "▁ма тери",
+ "▁мате ри",
+ "▁H ugo",
+ "▁Hu go",
+ "▁De ze",
+ "▁Dez e",
+ "TR UE",
+ "▁defe at",
+ "▁watch ed",
+ "▁wat ched",
+ "▁G ent",
+ "▁Ge nt",
+ "▁Gen t",
+ "AU T",
+ "A UT",
+ "or ous",
+ "oro us",
+ "▁о преде",
+ "ori entation",
+ "orient ation",
+ "▁distingu ished",
+ "▁distinguish ed",
+ "▁mes mo",
+ "▁s li",
+ "▁sl i",
+ "ме на",
+ "мен а",
+ "м ена",
+ "mit tel",
+ "mitt el",
+ "m ittel",
+ "ge richt",
+ "ger icht",
+ "et on",
+ "eto n",
+ "e ton",
+ "-> {",
+ "- >{",
+ "▁w ont",
+ "▁won t",
+ "▁wo nt",
+ "▁w eg",
+ "▁we g",
+ "▁ weg",
+ "▁class ific",
+ "il us",
+ "i lus",
+ "▁M D",
+ "▁ MD",
+ "task s",
+ "▁c him",
+ "▁ch im",
+ "▁chi m",
+ "aw ait",
+ "awa it",
+ "a wait",
+ "▁g ang",
+ "▁gan g",
+ "▁ga ng",
+ "▁ gang",
+ "▁w ię",
+ "▁ wię",
+ "th rough",
+ "▁Russ ell",
+ "▁guess ing",
+ "▁а кт",
+ "▁ак т",
+ "б лі",
+ "c ategories",
+ "су т",
+ "с ут",
+ "▁F en",
+ "▁Fe n",
+ "▁му ж",
+ "▁ne wer",
+ "▁new er",
+ "▁A sync",
+ "▁As ync",
+ "▁ Async",
+ "▁t erme",
+ "▁term e",
+ "▁ter me",
+ "> /",
+ "па ра",
+ "пар а",
+ "▁T rust",
+ "▁Tr ust",
+ "▁Tru st",
+ "▁O pt",
+ "▁Op t",
+ "▁ Opt",
+ "▁d ah",
+ "▁da h",
+ "▁wonder ful",
+ "adrat kil",
+ "▁Г ра",
+ "ma pping",
+ "map ping",
+ "m apping",
+ "▁disc overy",
+ "▁discover y",
+ "▁disco very",
+ "▁B E",
+ "▁ BE",
+ "En able",
+ "▁Fri end",
+ "с ня",
+ "▁cont rolled",
+ "▁control led",
+ "чно ї",
+ "ч ної",
+ "▁contribution s",
+ "▁contrib utions",
+ "j ší",
+ "▁L ev",
+ "▁Le v",
+ "▁franc és",
+ "▁m ic",
+ "▁mi c",
+ "▁ mic",
+ "zi k",
+ "z ik",
+ "▁a lem",
+ "▁al em",
+ "▁ale m",
+ "▁ alem",
+ "can cel",
+ "! '",
+ "▁g rat",
+ "▁gr at",
+ "▁gra t",
+ "▁Begriff sklär",
+ "Cam era",
+ "if icación",
+ "ific ación",
+ "ifica ción",
+ "ró d",
+ "r ód",
+ "▁Arn old",
+ "▁bezeichnet er",
+ "▁f ought",
+ "▁de put",
+ "▁dep ut",
+ "▁D rop",
+ "▁Dr op",
+ "▁Dro p",
+ "▁ Drop",
+ "ta x",
+ "t ax",
+ "d g",
+ "▁H op",
+ "▁Ho p",
+ "G N",
+ "▁Kir ch",
+ "▁Б ар",
+ "▁Ба р",
+ "In voke",
+ "Inv oke",
+ "▁er halten",
+ "▁ve el",
+ "▁word press",
+ "▁ wordpress",
+ "▁IN NER",
+ "trans action",
+ "▁dé jà",
+ "Fa ct",
+ "F act",
+ "▁над мор",
+ "▁angular js",
+ "▁á t",
+ "▁ át",
+ "▁a lap",
+ "▁al ap",
+ "▁P rice",
+ "▁Pr ice",
+ "▁Pri ce",
+ "▁ Price",
+ "▁eff et",
+ "▁s phere",
+ "▁sp here",
+ "▁spher e",
+ "Class Loader",
+ "▁r ugby",
+ "▁rug by",
+ "▁king dom",
+ "▁M ut",
+ "▁Mu t",
+ "▁ки но",
+ "▁re ward",
+ "ci t",
+ "c it",
+ "▁present e",
+ "▁pres ente",
+ "St o",
+ "S to",
+ "Char acter",
+ "lo gs",
+ "log s",
+ "l ogs",
+ "▁cent rale",
+ "▁central e",
+ "▁m ouv",
+ "▁mo uv",
+ "▁mou v",
+ "▁ok ay",
+ "▁ap lic",
+ "Mo re",
+ "Mor e",
+ "M ore",
+ "ény ek",
+ "▁Kö ln",
+ "ne tt",
+ "net t",
+ "n ett",
+ "▁исто рии",
+ "▁истори и",
+ "▁descri bing",
+ "▁sold ier",
+ "▁N eed",
+ "▁Ne ed",
+ "L ight",
+ "▁\" \\<",
+ "▁\"\\ <",
+ "▁h av",
+ "▁ha v",
+ "▁ hav",
+ "er mo",
+ "erm o",
+ "▁infer ior",
+ "le a",
+ "l ea",
+ "▁g g",
+ "▁ gg",
+ "▁кон це",
+ "fra gment",
+ "f ragment",
+ "s b",
+ "Count ry",
+ "C ountry",
+ "▁v ě",
+ "▁ vě",
+ "▁B eng",
+ "▁Be ng",
+ "▁Ben g",
+ "▁Э то",
+ "▁во до",
+ "ма р",
+ "м ар",
+ "STR ING",
+ "▁ú j",
+ "multi ple",
+ "multip le",
+ "state ment",
+ "stat ement",
+ "▁invol ves",
+ "▁involve s",
+ "▁te cn",
+ "▁tec n",
+ "St udent",
+ "gr é",
+ "g ré",
+ "▁le an",
+ "▁ lean",
+ "▁bring ing",
+ "▁Med ical",
+ "▁Medic al",
+ "▁Medi cal",
+ "▁програ м",
+ "▁V og",
+ "▁Vo g",
+ "▁ж ов",
+ "▁Sp irit",
+ "nt h",
+ "n th",
+ "▁stand ards",
+ "▁standard s",
+ "▁Pro file",
+ "▁Prof ile",
+ "▁Profil e",
+ "▁ Profile",
+ "▁e z",
+ "▁ ez",
+ "▁террито рии",
+ "▁s tem",
+ "▁st em",
+ "▁ste m",
+ "ui l",
+ "u il",
+ "▁O g",
+ "B tn",
+ "na l",
+ "n al",
+ "▁near by",
+ "▁produ cing",
+ "cri v",
+ "cr iv",
+ "c riv",
+ "▁assum ptions",
+ "▁assumption s",
+ "▁S park",
+ "▁Sp ark",
+ "▁L ot",
+ "▁Lo t",
+ "it udes",
+ "itu des",
+ "itude s",
+ "itud es",
+ "af ka",
+ "fi ve",
+ "f ive",
+ "at io",
+ "ati o",
+ "▁distingu ish",
+ "ro ck",
+ "roc k",
+ "r ock",
+ "égl ise",
+ "é glise",
+ "▁rapp res",
+ "▁rap pres",
+ ">\\ <",
+ "> \\<",
+ "лі й",
+ "л ій",
+ "▁ми ни",
+ "▁ мини",
+ "▁intitul é",
+ "}} (\\",
+ "}}( \\",
+ "} }(\\",
+ "▁R out",
+ "▁Ro ut",
+ "▁Rou t",
+ "▁ Rout",
+ "▁B order",
+ "▁Bor der",
+ "▁ Border",
+ "▁over rid",
+ "HO ST",
+ "H OST",
+ "rit ten",
+ "ritt en",
+ "r itten",
+ "sa y",
+ "s ay",
+ "▁Ч и",
+ "icht ung",
+ "▁straight forward",
+ "ob b",
+ "o bb",
+ "▁Ter ra",
+ "▁Terr a",
+ "▁[ :",
+ "▁ [:",
+ "Be n",
+ "B en",
+ "▁compos ite",
+ ")+ \\",
+ ") +\\",
+ "▁c rown",
+ "▁cr own",
+ "▁cro wn",
+ "▁crow n",
+ "dir ection",
+ "direct ion",
+ "dire ction",
+ "d irection",
+ "▁неско лько",
+ "▁av ail",
+ "▁purch ased",
+ "▁purchase d",
+ "ho ok",
+ "h ook",
+ "et ies",
+ "eti es",
+ "e ties",
+ "▁f ase",
+ "▁fa se",
+ "▁fas e",
+ "▁R um",
+ "▁Ru m",
+ "▁ge nom",
+ "▁gen om",
+ "▁d ét",
+ "▁dé t",
+ "ow ą",
+ "mp eg",
+ "▁І н",
+ "des ktop",
+ "▁in jection",
+ "▁inj ection",
+ "▁inject ion",
+ "ag le",
+ "a gle",
+ "▁E dd",
+ "▁Ed d",
+ "_{ (",
+ "_ {(",
+ "▁H em",
+ "▁He m",
+ "ut os",
+ "uto s",
+ "pr oj",
+ "pro j",
+ "▁superfic ie",
+ "Pl ot",
+ "P lot",
+ "▁D ocker",
+ "▁Do cker",
+ "▁Doc ker",
+ "ät z",
+ "ä tz",
+ "kre ich",
+ "k reich",
+ "▁un clear",
+ "▁uncle ar",
+ "▁Un ity",
+ "▁Unit y",
+ "▁stream s",
+ "▁stre ams",
+ "ви д",
+ "▁simpl ified",
+ "Fil l",
+ "Fi ll",
+ "F ill",
+ "▁s ant",
+ "▁sa nt",
+ "▁san t",
+ "▁K ommun",
+ "▁Kom mun",
+ "▁Komm un",
+ "▁d uc",
+ "▁du c",
+ "▁д ве",
+ "▁o bs",
+ "▁ob s",
+ "▁ obs",
+ "ž it",
+ "▁Jane iro",
+ "б я",
+ "▁pr esso",
+ "▁pres so",
+ "▁press o",
+ "▁Min istry",
+ "▁b urst",
+ "▁bur st",
+ "▁re aching",
+ "▁reach ing",
+ "li ter",
+ "lit er",
+ "l iter",
+ "▁response s",
+ "▁respons es",
+ "▁E ug",
+ "▁Eu g",
+ "▁s od",
+ "▁so d",
+ "▁C ord",
+ "▁Cor d",
+ "▁Co rd",
+ "▁P erm",
+ "▁Per m",
+ "▁Pe rm",
+ "▁ Perm",
+ "par ts",
+ "part s",
+ "p arts",
+ "ци ма",
+ "vari ables",
+ "variable s",
+ "▁forgot ten",
+ "Fe rn",
+ "F ern",
+ "ost ęp",
+ "v l",
+ "▁С м",
+ "ki m",
+ "k im",
+ "aj ąc",
+ "ają c",
+ "a jąc",
+ "на ль",
+ "нал ь",
+ "н аль",
+ "г ле",
+ "hel per",
+ "help er",
+ "du p",
+ "d up",
+ "eu w",
+ "e uw",
+ "fr a",
+ "f ra",
+ "ell ite",
+ "elli te",
+ "an ya",
+ "any a",
+ "▁re ign",
+ "▁r eign",
+ "▁rei gn",
+ "ges amt",
+ "се да",
+ "▁R yan",
+ "▁Ry an",
+ "▁form atted",
+ "▁format ted",
+ "▁formatt ed",
+ "▁B org",
+ "▁Bo rg",
+ "▁Bor g",
+ "wal k",
+ "w alk",
+ "▁а л",
+ "▁ ал",
+ "agnost ics",
+ "agnostic s",
+ "▁C ape",
+ "▁Cap e",
+ "▁Ca pe",
+ "▁Fran co",
+ "▁Franc o",
+ "▁f ug",
+ "▁fu g",
+ ": )",
+ "ю з",
+ "F etch",
+ "▁rough ly",
+ "▁M is",
+ "▁Mi s",
+ "uet ooth",
+ "▁Venez uela",
+ "▁a stronom",
+ "▁astr onom",
+ "\") `",
+ "\" )`",
+ "om bres",
+ "omb res",
+ "▁кото рой",
+ "ó p",
+ "ow ed",
+ "owe d",
+ "o wed",
+ "H R",
+ "▁C amer",
+ "▁Cam er",
+ "▁Ca mer",
+ "ки е",
+ "par ison",
+ "▁B ij",
+ "▁Bi j",
+ "tem plates",
+ "template s",
+ "en vironment",
+ "environ ment",
+ "iz ação",
+ "iza ção",
+ "▁é r",
+ "▁ ér",
+ "▁pl enty",
+ "▁Type Error",
+ "▁for ty",
+ "▁fort y",
+ "ко ном",
+ "кон ом",
+ "коно м",
+ "▁S ed",
+ "▁Se d",
+ "▁th ats",
+ "▁that s",
+ "▁gra vity",
+ "▁grav ity",
+ "▁gravit y",
+ "▁ gravity",
+ "▁spirit ual",
+ "▁dup licates",
+ "▁duplicate s",
+ "▁enc ryption",
+ "▁encrypt ion",
+ "▁re ven",
+ "▁r even",
+ "▁rev en",
+ "▁reve n",
+ "▁ reven",
+ "get Instance",
+ "äl lor",
+ "äll or",
+ "dis k",
+ "di sk",
+ "d isk",
+ "▁th ro",
+ "▁thr o",
+ "▁N ak",
+ "▁Na k",
+ "▁p oł",
+ "▁po ł",
+ "▁her aus",
+ "in valid",
+ "s By",
+ "Bo ot",
+ "B oot",
+ "▁bu cket",
+ "▁ bucket",
+ "▁P arse",
+ "▁Par se",
+ "▁ Parse",
+ "he x",
+ "h ex",
+ "Con ne",
+ "C onne",
+ "▁Comp uter",
+ "▁Comput er",
+ "zy k",
+ "z yk",
+ "▁indu ced",
+ "▁Br uno",
+ "▁Bru no",
+ "▁Brun o",
+ "▁address ed",
+ "▁addr essed",
+ "ma nia",
+ "man ia",
+ "m ania",
+ "▁in clus",
+ "▁incl us",
+ "▁inc lus",
+ "▁inclu s",
+ "oun ced",
+ "ounce d",
+ "script size",
+ "scripts ize",
+ "▁E pis",
+ "▁Ep is",
+ "▁v ocal",
+ "▁vo cal",
+ "▁voc al",
+ "▁Jon athan",
+ "у м",
+ "st aden",
+ "sta den",
+ "stad en",
+ "▁Child ren",
+ "▁ Children",
+ "пе й",
+ "п ей",
+ "It alia",
+ "Ital ia",
+ "reib ung",
+ "▁n ost",
+ "▁no st",
+ "▁nos t",
+ "▁ nost",
+ "▁е щё",
+ "▁Wer ke",
+ "▁Werk e",
+ "▁act ress",
+ "▁Minn esota",
+ "ri ke",
+ "rik e",
+ "r ike",
+ "▁t ek",
+ "▁te k",
+ "▁ tek",
+ "▁prime ira",
+ "▁f rat",
+ "▁fr at",
+ "▁fra t",
+ "▁Config uration",
+ "▁ Configuration",
+ "▁b id",
+ "▁bi d",
+ "▁ bid",
+ "tr igger",
+ "Cont ents",
+ "Content s",
+ "▁const antly",
+ "▁constant ly",
+ "!! !",
+ "! !!",
+ "▁d read",
+ "▁dr ead",
+ "▁dre ad",
+ "▁hundred s",
+ "ist ische",
+ "isti sche",
+ "▁card inal",
+ "T ABLE",
+ "▁est os",
+ "▁esto s",
+ "ass oc",
+ "asso c",
+ "gr ay",
+ "gra y",
+ "g ray",
+ "▁Sch loss",
+ "▁Schl oss",
+ "▁s che",
+ "▁sc he",
+ "▁sch e",
+ "▁ sche",
+ "con g",
+ "co ng",
+ "c ong",
+ "▁ko ji",
+ "ète s",
+ "èt es",
+ "è tes",
+ "▁E ra",
+ "▁Er a",
+ "om i",
+ "o mi",
+ "▁S R",
+ "▁ SR",
+ "▁wr apped",
+ "▁wra pped",
+ "▁wrap ped",
+ "▁tr unc",
+ "▁a h",
+ "▁ ah",
+ "eg os",
+ "ego s",
+ "ok i",
+ "o ki",
+ "mo uth",
+ "m outh",
+ "log ging",
+ "▁f asc",
+ "▁fa sc",
+ "▁fas c",
+ "▁S ample",
+ "▁Sam ple",
+ "▁ Sample",
+ "▁c onte",
+ "▁con te",
+ "▁cont e",
+ "▁v illa",
+ "▁vi lla",
+ "▁vill a",
+ "▁vil la",
+ "▁ villa",
+ "com ments",
+ "comm ents",
+ "comment s",
+ "▁b atal",
+ "▁ba tal",
+ "▁bat al",
+ "▁bata l",
+ "▁Garc ía",
+ "▁N orte",
+ "▁Nor te",
+ "▁we chsel",
+ "▁Muse o",
+ "▁enf ants",
+ "▁whis per",
+ "na ke",
+ "nak e",
+ "n ake",
+ "▁jed nak",
+ "l ês",
+ "en ders",
+ "end ers",
+ "ender s",
+ "ende rs",
+ "▁ä l",
+ "▁ äl",
+ "▁V B",
+ "▁ VB",
+ "▁cook ies",
+ "▁cookie s",
+ "ze ti",
+ "zet i",
+ "z eti",
+ "at um",
+ "atu m",
+ "▁d edu",
+ "▁de du",
+ "▁ded u",
+ "▁arr anged",
+ "▁arrang ed",
+ "la z",
+ "l az",
+ "▁cu enta",
+ "ym l",
+ "y ml",
+ "▁f lav",
+ "▁fl av",
+ "▁fla v",
+ "M R",
+ "em et",
+ "eme t",
+ "e met",
+ "бі ль",
+ "б іль",
+ "cm p",
+ "c mp",
+ "it uto",
+ "itu to",
+ "itut o",
+ "ze tt",
+ "zet t",
+ "z ett",
+ "▁en vi",
+ "▁env i",
+ "▁k ot",
+ "▁ko t",
+ "$ :",
+ "up per",
+ "upp er",
+ "u pper",
+ "▁Al berto",
+ "▁Albert o",
+ "k b",
+ "An al",
+ "A nal",
+ "ör t",
+ "ö rt",
+ "▁[ -",
+ "▁ [-",
+ "▁führ te",
+ "▁führt e",
+ "ia h",
+ "i ah",
+ "▁T un",
+ "▁Tu n",
+ "▁и скус",
+ "uw e",
+ "u we",
+ "is pecies",
+ "i species",
+ "P ub",
+ "Syn c",
+ "S ync",
+ "▁Colomb ia",
+ "ak ers",
+ "ake rs",
+ "aker s",
+ "▁Imper ial",
+ "ov ing",
+ "ovi ng",
+ "o ving",
+ "▁int elligence",
+ "▁intellig ence",
+ "▁equip ment",
+ "ei n",
+ "e in",
+ "dag ger",
+ "d agger",
+ "▁Ed ge",
+ "▁ Edge",
+ "▁Рес публи",
+ "adratkil ometer",
+ "▁An to",
+ "▁Ant o",
+ "▁char ges",
+ "▁charge s",
+ "▁charg es",
+ "▁O cean",
+ "▁simpl ify",
+ "▁m iesz",
+ "▁mi esz",
+ "▁mie sz",
+ "run ning",
+ "r unning",
+ "▁L ac",
+ "▁La c",
+ "gen ommen",
+ "▁represent ative",
+ "= .",
+ "▁P red",
+ "▁Pr ed",
+ "▁Pre d",
+ "▁ Pred",
+ "▁sp ite",
+ "ci ale",
+ "cial e",
+ "cia le",
+ "c iale",
+ "▁n ave",
+ "▁na ve",
+ "▁nav e",
+ "▁ext ens",
+ "▁neut ral",
+ "▁кото рая",
+ ".< /",
+ ". ",
+ "▁C S",
+ "▁ CS",
+ "uk y",
+ "u ky",
+ "▁wh ilst",
+ "▁l ingu",
+ "▁lin gu",
+ "▁ling u",
+ "ext ract",
+ "extra ct",
+ "zeich nung",
+ "▁F eld",
+ "▁Fe ld",
+ "▁Fel d",
+ "▁valu able",
+ "ur able",
+ "ura ble",
+ "u rable",
+ "▁J en",
+ "▁Je n",
+ "▁strugg le",
+ "▁comm ittee",
+ "▁W ohn",
+ "▁Wo hn",
+ "▁sql ite",
+ "▁ sqlite",
+ "▁T emp",
+ "▁Te mp",
+ "▁Tem p",
+ "▁ Temp",
+ "▁CO UNT",
+ "▁ COUNT",
+ "con sin",
+ "cons in",
+ "мі ні",
+ "мін і",
+ "us age",
+ "usa ge",
+ "▁qu est",
+ "▁que st",
+ "▁q uest",
+ "▁ quest",
+ "дя н",
+ "д ян",
+ "ear ed",
+ "ea red",
+ "e ared",
+ "▁Sch ne",
+ "▁d od",
+ "▁do d",
+ "▁re cht",
+ "▁rec ht",
+ "▁ recht",
+ "▁k ao",
+ "▁ka o",
+ "Cap t",
+ "Ca pt",
+ "C apt",
+ "label s",
+ "lab els",
+ "▁el los",
+ "▁ell os",
+ "▁indust ri",
+ "▁Color ado",
+ "▁contr ary",
+ "▁contra ry",
+ "▁D um",
+ "▁Du m",
+ "Be l",
+ "B el",
+ "▁V ent",
+ "▁Ve nt",
+ "▁Ven t",
+ "▁author ities",
+ "Y ES",
+ "en sed",
+ "ens ed",
+ "ense d",
+ "umbn ail",
+ "izz azione",
+ "izza zione",
+ "ko u",
+ "k ou",
+ "ri ca",
+ "ric a",
+ "r ica",
+ "▁s ect",
+ "▁se ct",
+ "▁sec t",
+ "▁ sect",
+ "test s",
+ "tes ts",
+ "t ests",
+ "▁K lein",
+ "▁Kle in",
+ "▁Kl ein",
+ "▁le gs",
+ "▁leg s",
+ "▁Pi etro",
+ "▁Piet ro",
+ "f u",
+ "th y",
+ "t hy",
+ "▁b ast",
+ "▁bas t",
+ "▁ba st",
+ "▁t edes",
+ "▁te des",
+ "▁ted es",
+ "et tes",
+ "ett es",
+ "ette s",
+ "▁re pet",
+ "▁rep et",
+ "▁repe t",
+ "ac re",
+ "a cre",
+ "re tto",
+ "ret to",
+ "rett o",
+ "r etto",
+ "▁remain der",
+ "▁G eg",
+ "▁Ge g",
+ "▁Г ор",
+ "▁Го р",
+ "▁Re chts",
+ "▁Recht s",
+ "▁filter ing",
+ "ou ss",
+ "ous s",
+ "o uss",
+ "▁deploy ed",
+ "▁prü fe",
+ "▁b itmap",
+ "▁bit map",
+ "▁s ovi",
+ "▁so vi",
+ "▁sov i",
+ "▁< %=",
+ "▁<% =",
+ "▁ <%=",
+ "▁entfer ne",
+ "ki ll",
+ "kil l",
+ "k ill",
+ "ta bs",
+ "tab s",
+ "t abs",
+ "Ex pr",
+ "Exp r",
+ "ко му",
+ "ком у",
+ "к ому",
+ "▁Republic an",
+ "▁S ize",
+ "▁Si ze",
+ "▁ Size",
+ "▁p oll",
+ "▁po ll",
+ "▁pol l",
+ "▁r ien",
+ "▁ri en",
+ "▁ rien",
+ "▁клу б",
+ "én d",
+ "é nd",
+ "▁B io",
+ "▁Bi o",
+ "▁per l",
+ "▁pe rl",
+ "▁ perl",
+ "▁And reas",
+ "▁Andrea s",
+ "▁Andre as",
+ "ви н",
+ "в ин",
+ "▁d istant",
+ "▁dist ant",
+ "▁F inn",
+ "▁Fin n",
+ "▁M itch",
+ "▁Mit ch",
+ "▁% {",
+ "▁c harm",
+ "▁ch arm",
+ "▁char m",
+ "▁cha rm",
+ "▁M ul",
+ "▁Mu l",
+ "pe rate",
+ "per ate",
+ "▁sci ences",
+ "▁science s",
+ "▁mon ot",
+ "▁mo not",
+ "▁deb ido",
+ "riz ona",
+ "ie c",
+ "i ec",
+ "▁al arm",
+ "▁prom oted",
+ "▁promote d",
+ "▁let zten",
+ "at in",
+ "ati n",
+ "▁con clus",
+ "▁conc lus",
+ "▁concl us",
+ "he rr",
+ "her r",
+ "h err",
+ "▁é ch",
+ "▁éc h",
+ "▁ éch",
+ "ed ish",
+ "edi sh",
+ "go r",
+ "g or",
+ "▁st ycz",
+ "▁sty cz",
+ "▁im press",
+ "▁imp ress",
+ "▁impr ess",
+ "ru its",
+ "ruit s",
+ "r uits",
+ "ier ungs",
+ "ierung s",
+ "▁par sed",
+ "▁parse d",
+ "▁r ío",
+ "▁Pak istan",
+ "ig ner",
+ "ign er",
+ "igne r",
+ "▁watch ing",
+ "▁database s",
+ "▁datab ases",
+ "ed ing",
+ "edi ng",
+ "e ding",
+ "▁Spec ific",
+ "▁gener ale",
+ "▁general e",
+ "▁gene rale",
+ "la x",
+ "l ax",
+ "▁Lo oking",
+ "▁Look ing",
+ "▁b ond",
+ "▁bo nd",
+ "▁bon d",
+ "▁v ista",
+ "▁vis ta",
+ "▁vi sta",
+ "▁e c",
+ "▁ ec",
+ "▁gr ud",
+ "▁gru d",
+ "▁del eting",
+ "▁delet ing",
+ "ta c",
+ "t ac",
+ "▁j azz",
+ "▁ja zz",
+ "j m",
+ "▁p ół",
+ "▁pó ł",
+ "L anguage",
+ "de legate",
+ "▁reg istry",
+ "▁registr y",
+ "▁Sh ared",
+ "▁Share d",
+ "▁ Shared",
+ "ст рой",
+ "стро й",
+ "Mus ic",
+ "▁v essel",
+ "▁vess el",
+ "▁ves sel",
+ ". @",
+ "▁W ür",
+ "▁f ed",
+ "▁fe d",
+ "▁ered et",
+ "▁ere det",
+ "▁G ö",
+ "up t",
+ "u pt",
+ "▁ple asant",
+ "▁table View",
+ "▁ tableView",
+ "▁count ing",
+ "▁coun ting",
+ "▁Krie gs",
+ "▁Krieg s",
+ "▁полу чил",
+ "▁получи л",
+ "▁] ,",
+ "▁ ],",
+ "ви а",
+ "▁a ž",
+ "To List",
+ "▁Ad vent",
+ "▁Adv ent",
+ "▁sk etch",
+ "p n",
+ "▁s ier",
+ "▁si er",
+ "▁sie r",
+ "▁находи тся",
+ "io p",
+ "i op",
+ "▁l y",
+ "▁ ly",
+ "▁Sch l",
+ "▁Sc hl",
+ "Cont ract",
+ "as soci",
+ "ass oci",
+ "asso ci",
+ "assoc i",
+ "▁P ear",
+ "▁Pe ar",
+ "▁w he",
+ "▁wh e",
+ "▁De lete",
+ "▁Del ete",
+ "▁ Delete",
+ "▁e lem",
+ "▁el em",
+ "▁ele m",
+ "▁ elem",
+ "ät te",
+ "ätt e",
+ "ä tte",
+ "▁č esk",
+ "▁M C",
+ "▁ MC",
+ "▁sh out",
+ "▁sho ut",
+ "ake spe",
+ "akes pe",
+ "▁default s",
+ "pe nas",
+ "pen as",
+ "p enas",
+ "ò ria",
+ "▁hier archy",
+ "ip t",
+ "i pt",
+ "▁E lis",
+ "▁El is",
+ "▁Eli s",
+ "like ly",
+ "lik ely",
+ "Ro t",
+ "R ot",
+ "▁c ow",
+ "▁co w",
+ "▁ cow",
+ "▁st rike",
+ "▁str ike",
+ "▁stri ke",
+ "▁strik e",
+ "▁бере зня",
+ "▁ens emble",
+ "▁ ensemble",
+ "▁Pse ud",
+ "V irtual",
+ "▁ї ї",
+ "RO OT",
+ "си я",
+ "▁с об",
+ "▁со б",
+ "▁ соб",
+ "▁in vert",
+ "▁inv ert",
+ "▁inve rt",
+ "▁switch ing",
+ "ht access",
+ "▁на гра",
+ "▁Nor man",
+ "▁Norm an",
+ "▁ing lês",
+ "! [",
+ "ou sel",
+ "ous el",
+ "ouse l",
+ "DO CTYPE",
+ "DOC TYPE",
+ "▁supp ress",
+ "▁sup press",
+ "▁accompan ied",
+ "▁B é",
+ "imp lies",
+ "impl ies",
+ "nu t",
+ "n ut",
+ "▁S yntax",
+ "▁Syn tax",
+ "▁ Syntax",
+ "in ho",
+ "▁t am",
+ "▁ta m",
+ "▁focus ed",
+ "▁foc used",
+ "av ano",
+ "ava no",
+ "avan o",
+ "a vano",
+ "▁B aden",
+ "▁Ba den",
+ "▁Bad en",
+ "ha d",
+ "h ad",
+ "▁( {",
+ "▁ ({",
+ "T y",
+ "▁ро с",
+ "▁р ос",
+ "▁ рос",
+ "▁чо лові",
+ "og e",
+ "o ge",
+ "js p",
+ "j sp",
+ "Bl ue",
+ "▁su as",
+ "▁sua s",
+ "ap ers",
+ "ape rs",
+ "aper s",
+ "a pers",
+ "Sh ort",
+ "Render er",
+ "▁s endo",
+ "▁send o",
+ "▁sen do",
+ "▁C ec",
+ "▁Ce c",
+ "▁` __",
+ "▁`_ _",
+ "▁Municip al",
+ "dot net",
+ "▁b ev",
+ "▁be v",
+ "▁D A",
+ "▁ DA",
+ "Menu Item",
+ "▁a mp",
+ "▁am p",
+ "▁ amp",
+ "▁u ri",
+ "▁ur i",
+ "▁ uri",
+ "▁f ier",
+ "▁fi er",
+ "сле н",
+ "с лен",
+ "), (",
+ ") ,(",
+ "cul es",
+ "cu les",
+ "c ules",
+ "il las",
+ "ill as",
+ "illa s",
+ "LO CK",
+ "LOC K",
+ "▁de rive",
+ "▁der ive",
+ "▁deriv e",
+ "ub en",
+ "ube n",
+ "u ben",
+ "▁G T",
+ "▁ GT",
+ "▁M ack",
+ "▁Ma ck",
+ "▁Mac k",
+ "▁sch olar",
+ ")} }",
+ ") }}",
+ "з м",
+ ">: :",
+ "> ::",
+ "ш ёл",
+ "▁princip ales",
+ "▁principal es",
+ "▁principale s",
+ "▁ц ар",
+ "▁t ied",
+ "▁ti ed",
+ "▁tie d",
+ "▁al ta",
+ "▁alt a",
+ "▁C it",
+ "▁Ci t",
+ "li ned",
+ "line d",
+ "lin ed",
+ "l ined",
+ "ma jor",
+ "▁p unk",
+ "▁pun k",
+ "▁cin co",
+ "ick ý",
+ "▁r aggi",
+ "▁ra ggi",
+ "▁rag gi",
+ "ty pen",
+ "type n",
+ "typ en",
+ "тель ство",
+ "▁con ference",
+ "▁confer ence",
+ "▁с іль",
+ "▁сі ль",
+ "▁he ut",
+ "i š",
+ "ет а",
+ "е та",
+ "vel ope",
+ "velop e",
+ "h box",
+ "no wn",
+ "now n",
+ "n own",
+ "▁z ar",
+ "▁za r",
+ "▁ zar",
+ "kt iv",
+ "ie ß",
+ "▁с тре",
+ "▁ст ре",
+ "▁ стре",
+ "▁Event Args",
+ "▁ EventArgs",
+ "▁I ra",
+ "▁Ir a",
+ "▁V BA",
+ "▁VB A",
+ "▁S anto",
+ "▁San to",
+ "▁Sant o",
+ "▁F ach",
+ "▁Fa ch",
+ "▁Fac h",
+ "▁F F",
+ "▁ FF",
+ "▁Ray mond",
+ "ме ц",
+ "im plementation",
+ "▁bro thers",
+ "▁brother s",
+ "▁cô té",
+ "▁cont rollers",
+ "▁control lers",
+ "▁controller s",
+ "▁C le",
+ "▁Cl e",
+ "▁c able",
+ "▁ca ble",
+ "▁cab le",
+ "▁con fer",
+ "▁conf er",
+ "▁{ -",
+ "▁ {-",
+ "▁cz ł",
+ "▁Fil ip",
+ "at orio",
+ "ator io",
+ "ato rio",
+ "atori o",
+ "▁w icht",
+ "▁be aucoup",
+ "▁L it",
+ "▁Li t",
+ "▁s essions",
+ "▁session s",
+ "▁sess ions",
+ "▁Su ccess",
+ "▁ Success",
+ "▁ro uting",
+ "▁rout ing",
+ "▁rou ting",
+ "ni u",
+ "n iu",
+ "▁V ice",
+ "▁Vi ce",
+ "▁Vic e",
+ "▁k rit",
+ "▁kr it",
+ "up dated",
+ "update d",
+ "▁In valid",
+ "▁ Invalid",
+ "▁Mann schaft",
+ "▁a os",
+ "▁ao s",
+ "▁t udi",
+ "▁tu di",
+ "▁tud i",
+ "▁des prés",
+ "▁desp rés",
+ "qu a",
+ "q ua",
+ "Cont ains",
+ "Comp any",
+ "▁person a",
+ "▁pers ona",
+ "ad apter",
+ "с ни",
+ "▁v oj",
+ "▁vo j",
+ "▁ voj",
+ "▁e scri",
+ "▁es cri",
+ "▁esc ri",
+ "ag t",
+ "a gt",
+ "▁с тво",
+ "▁ст во",
+ "▁ ство",
+ "▁dist rito",
+ "ap an",
+ "apa n",
+ "a pan",
+ "▁aspect s",
+ "▁z al",
+ "▁za l",
+ ")^ {\\",
+ ")^{ \\",
+ ") ^{\\",
+ "▁syst ème",
+ "▁а на",
+ "▁ан а",
+ "▁ ана",
+ "ium s",
+ "iu ms",
+ "i ums",
+ "▁prem iers",
+ "▁premi ers",
+ "▁premier s",
+ "▁по э",
+ "▁m ère",
+ "▁G un",
+ "▁Gu n",
+ "ap ing",
+ "api ng",
+ "a ping",
+ "▁R ain",
+ "▁Ra in",
+ "▁ig ual",
+ "▁process or",
+ "▁proc essor",
+ "▁ processor",
+ "') `",
+ "' )`",
+ "bl ing",
+ "b ling",
+ "▁m ism",
+ "▁mi sm",
+ "▁mis m",
+ "br áz",
+ "▁close st",
+ "▁clos est",
+ "▁Re ading",
+ "▁Read ing",
+ "▁по пу",
+ "con o",
+ "co no",
+ "c ono",
+ "▁k ult",
+ "▁! !",
+ "▁ !!",
+ "▁Ex pression",
+ "▁Exp ression",
+ "▁Express ion",
+ "▁ Expression",
+ "▁indu ction",
+ "▁induct ion",
+ "ah ren",
+ "ahr en",
+ "a hren",
+ "▁c p",
+ "▁ cp",
+ "▁viol ence",
+ "ient í",
+ "cent e",
+ "cen te",
+ "c ente",
+ "▁D ob",
+ "▁Do b",
+ "ja ck",
+ "j ack",
+ "so ng",
+ "son g",
+ "s ong",
+ "bu cket",
+ "▁de port",
+ "▁dep ort",
+ "ки ми",
+ "ким и",
+ "l m",
+ "▁in noc",
+ "▁inn oc",
+ "Ch anges",
+ "Change s",
+ "▁pro hib",
+ "ang ol",
+ "ango l",
+ "isecond s",
+ "i seconds",
+ "▁п ор",
+ "▁по р",
+ "▁ пор",
+ "▁h ip",
+ "▁hi p",
+ "▁ hip",
+ "▁p ů",
+ "en dorf",
+ "end orf",
+ "endo rf",
+ "endor f",
+ "▁sch eduled",
+ "▁schedule d",
+ "▁Fl ug",
+ "ac yj",
+ "acy j",
+ "▁Fil ms",
+ "▁Film s",
+ "athed ral",
+ "Po wer",
+ "P ower",
+ "ar din",
+ "ard in",
+ "ardi n",
+ "ka p",
+ "k ap",
+ "ic ken",
+ "ick en",
+ "i cken",
+ "re size",
+ "res ize",
+ "eu s",
+ "e us",
+ "r r",
+ "ля н",
+ "л ян",
+ "▁H av",
+ "▁Ha v",
+ "▁o ra",
+ "▁or a",
+ "▁ ora",
+ "FR OM",
+ "F ROM",
+ "ло ся",
+ "▁te rug",
+ "▁ter ug",
+ "▁W idth",
+ "▁ Width",
+ "▁accept s",
+ "бе н",
+ "б ен",
+ "▁m ich",
+ "▁mi ch",
+ "▁mic h",
+ "▁C zech",
+ "▁Cz ech",
+ "▁B edeut",
+ "▁ви д",
+ "▁ вид",
+ "ô me",
+ "▁L oop",
+ "▁Lo op",
+ "▁ Loop",
+ "sp ect",
+ "spe ct",
+ "spec t",
+ "s pect",
+ "ü k",
+ "es ton",
+ "est on",
+ "esto n",
+ "e ston",
+ "▁s lot",
+ "▁sl ot",
+ "▁slo t",
+ "▁został a",
+ "▁Charlot te",
+ "▁состав ляет",
+ "▁составля ет",
+ "▁Prom ise",
+ "▁e po",
+ "▁ep o",
+ "▁d iction",
+ "▁di ction",
+ "▁dict ion",
+ "▁dic tion",
+ "▁ diction",
+ "▁Frank lin",
+ "▁R iv",
+ "▁Ri v",
+ "ру г",
+ "ci da",
+ "cid a",
+ "c ida",
+ "▁Ex plorer",
+ "cook ie",
+ "▁former ly",
+ "▁municip ality",
+ "▁municipal ity",
+ "▁Ste fan",
+ "▁Stef an",
+ "list s",
+ "lis ts",
+ "l ists",
+ "CO MP",
+ "COM P",
+ "Le n",
+ "L en",
+ "▁Sta at",
+ "▁N BA",
+ "de ns",
+ "den s",
+ "d ens",
+ "▁osc ill",
+ "! .",
+ "▁P O",
+ "▁ PO",
+ "ô ne",
+ "es es",
+ "ese s",
+ "▁на циональ",
+ "vo or",
+ "v oor",
+ "▁ко пи",
+ "▁по зи",
+ "▁ пози",
+ "ul u",
+ "u lu",
+ "Const raint",
+ "Constra int",
+ "▁сво ей",
+ "▁algebra ic",
+ "ч ня",
+ "Di ct",
+ "D ict",
+ "▁appear ing",
+ "▁appe aring",
+ "▁p rav",
+ "▁pr av",
+ "▁pra v",
+ "▁Univers al",
+ "B rowser",
+ "▁Sing ap",
+ "ennes see",
+ "] _",
+ "▁S of",
+ "▁So f",
+ "▁C ad",
+ "▁Ca d",
+ "oun ce",
+ "▁cost s",
+ "▁cos ts",
+ "]{ \\",
+ "] {\\",
+ "../ ../",
+ "ськ ій",
+ "ські й",
+ "üh l",
+ "ü hl",
+ "ie ty",
+ "iet y",
+ "i ety",
+ "п р",
+ "▁interpre ted",
+ "▁interpret ed",
+ "aj n",
+ "col og",
+ "co log",
+ "colo g",
+ "c olog",
+ "Y S",
+ "ma ns",
+ "man s",
+ "m ans",
+ "▁met rics",
+ "▁metric s",
+ "▁reg istr",
+ "▁ registr",
+ "ist ance",
+ "istan ce",
+ "▁По ль",
+ "▁an onymous",
+ "▁ anonymous",
+ "▁institution s",
+ "▁instit utions",
+ "▁z dob",
+ "▁zd ob",
+ "pr üng",
+ "prü ng",
+ "▁ар ти",
+ "▁e stat",
+ "▁est at",
+ "▁es tat",
+ "▁esta t",
+ "ac ci",
+ "acc i",
+ "▁academ ic",
+ "▁ch iesa",
+ "▁chi esa",
+ "▁G ian",
+ "▁Gi an",
+ "▁Gia n",
+ "cont rib",
+ "contr ib",
+ "um ed",
+ "ume d",
+ "u med",
+ "▁G ir",
+ "▁Gi r",
+ "▁base ball",
+ "numer ic",
+ "n umeric",
+ "Gener ator",
+ "G M",
+ "▁t iny",
+ "▁ti ny",
+ "▁tin y",
+ "▁ tiny",
+ "▁dist inction",
+ "▁distinct ion",
+ "ге р",
+ "г ер",
+ "▁r ust",
+ "▁ru st",
+ "▁rus t",
+ "▁ rust",
+ "▁FI FA",
+ "▁Pro perties",
+ "▁ Properties",
+ "^ -",
+ "▁э кс",
+ "▁эк с",
+ "▁Sta nis",
+ "▁Stan is",
+ "▁A jax",
+ "es cape",
+ "esc ape",
+ "▁con sp",
+ "▁cons p",
+ "▁C hen",
+ "▁Ch en",
+ "▁Che n",
+ "▁N aval",
+ "▁Na val",
+ "▁Nav al",
+ "Bi t",
+ "B it",
+ "▁b ât",
+ "ски ми",
+ "ским и",
+ "с кими",
+ "dr ive",
+ "dri ve",
+ "d rive",
+ "▁R ound",
+ "▁Ro und",
+ "▁Rou nd",
+ "ph oto",
+ "▁Le vel",
+ "▁Lev el",
+ "▁ Level",
+ "▁g eg",
+ "▁ge g",
+ "▁ geg",
+ "To m",
+ "T om",
+ "▁M obile",
+ "▁ Mobile",
+ "▁T rop",
+ "▁Tr op",
+ "▁Tro p",
+ "Dir ection",
+ "Direct ion",
+ "D irection",
+ "is an",
+ "isa n",
+ "i san",
+ ")^ {-",
+ ")^{ -",
+ ") ^{-",
+ "▁Set ting",
+ "▁ Setting",
+ "▁Pro bably",
+ "ль я",
+ "л ья",
+ "▁as sets",
+ "▁ass ets",
+ "▁asse ts",
+ "▁asset s",
+ "▁ assets",
+ "▁a tte",
+ "▁at te",
+ "▁att e",
+ "▁ atte",
+ "▁b ulk",
+ "▁bul k",
+ "és t",
+ "é st",
+ "▁w ing",
+ "▁win g",
+ "▁ wing",
+ "ni us",
+ "niu s",
+ "n ius",
+ "▁w ins",
+ "▁win s",
+ "▁l ud",
+ "▁lu d",
+ "us hing",
+ "ush ing",
+ "▁d even",
+ "▁de ven",
+ "▁dev en",
+ "▁deve n",
+ "огра ф",
+ "о граф",
+ "burg er",
+ "bur ger",
+ "b urger",
+ "▁em bar",
+ "▁emb ar",
+ "Filter Chain",
+ "▁t um",
+ "▁tu m",
+ "▁ö ss",
+ "▁nom mé",
+ "▁p ir",
+ "▁pi r",
+ "▁l uc",
+ "▁lu c",
+ "db o",
+ "d bo",
+ "ag ues",
+ "ague s",
+ "agu es",
+ "▁al can",
+ "▁alc an",
+ "ou wen",
+ "ouw en",
+ "▁Stan ley",
+ "ци али",
+ "▁g rown",
+ "▁gr own",
+ "▁gro wn",
+ "▁grow n",
+ "▁pres erved",
+ "▁preserve d",
+ "▁s olar",
+ "▁so lar",
+ "▁sol ar",
+ "▁Насе ление",
+ "▁perform ances",
+ "▁performance s",
+ "▁C ow",
+ "▁Co w",
+ "▁engine ering",
+ "▁engineer ing",
+ "▁sc aling",
+ "▁scal ing",
+ "at omic",
+ "ato mic",
+ "atom ic",
+ "end ance",
+ "▁a ce",
+ "▁ac e",
+ "▁ ace",
+ "än gen",
+ "äng en",
+ "änge n",
+ "An im",
+ "A nim",
+ "ph ase",
+ "pha se",
+ "phas e",
+ "z burg",
+ "O ld",
+ "▁serv ant",
+ "▁geme ins",
+ "▁Ob serv",
+ "trans late",
+ "▁cover ing",
+ "▁cov ering",
+ "▁est án",
+ "▁está n",
+ "▁problem a",
+ "▁proble ma",
+ "▁probl ema",
+ "▁у станов",
+ "▁l lev",
+ "▁ll ev",
+ "▁lle v",
+ "▁c zerw",
+ "é al",
+ "me z",
+ "m ez",
+ "RE E",
+ "R EE",
+ "ER R",
+ "ту ри",
+ "тур и",
+ "se gu",
+ "seg u",
+ "s egu",
+ "▁pro fit",
+ "▁prof it",
+ "▁multip lication",
+ "kom men",
+ "k ommen",
+ "▁f aut",
+ "▁fa ut",
+ "▁candid ates",
+ "▁candidate s",
+ "▁U ri",
+ "▁Ur i",
+ "▁ Uri",
+ "▁La ura",
+ "▁Laur a",
+ "▁Lau ra",
+ "▁s ap",
+ "▁sa p",
+ "▁ви сини",
+ "▁Bet ween",
+ "fa de",
+ "f ade",
+ "▁res erved",
+ "▁reserve d",
+ "▁invol ving",
+ "▁M are",
+ "▁Mar e",
+ "▁Ma re",
+ "▁Cont ainer",
+ "▁ Container",
+ "▁на зна",
+ "▁DE BUG",
+ "▁ DEBUG",
+ "▁h urt",
+ "▁hur t",
+ "▁hu rt",
+ "▁Pol ski",
+ "▁l ux",
+ "▁lu x",
+ "C B",
+ "wa ch",
+ "w ach",
+ "▁пери од",
+ "▁перио д",
+ "▁C atherine",
+ "▁g anz",
+ "▁gan z",
+ "uch te",
+ "ucht e",
+ "u chte",
+ "▁cons umer",
+ "▁consum er",
+ "▁consume r",
+ "▁cross ed",
+ "ord ered",
+ "order ed",
+ "orde red",
+ "aw ay",
+ "awa y",
+ "a way",
+ "te chn",
+ "tech n",
+ "▁sub scri",
+ "▁subs cri",
+ "▁short cut",
+ "▁произ вод",
+ "▁simultane ously",
+ "▁r ating",
+ "▁ra ting",
+ "▁rat ing",
+ "▁ rating",
+ "▁K ings",
+ "▁King s",
+ "▁Kin gs",
+ "▁relations hips",
+ "▁relation ships",
+ "▁relationship s",
+ "▁S ex",
+ "▁Se x",
+ "▁T ool",
+ "▁To ol",
+ "▁ Tool",
+ "ag h",
+ "a gh",
+ "ac ters",
+ "act ers",
+ "acter s",
+ "log ger",
+ "hom me",
+ "en gers",
+ "eng ers",
+ "enger s",
+ "▁R i",
+ "ear ance",
+ "ea rance",
+ "▁appear ances",
+ "▁appearance s",
+ "Re al",
+ "▁p asse",
+ "▁pass e",
+ "▁pas se",
+ "ic lopedia",
+ "ч ко",
+ "ter re",
+ "▁Ont ario",
+ "▁пере да",
+ "▁перед а",
+ "fo oter",
+ "foo ter",
+ "foot er",
+ "arch ivi",
+ "archiv i",
+ "if iz",
+ "ifi z",
+ "▁Pro test",
+ "▁Prote st",
+ "▁L IN",
+ "▁LI N",
+ "▁ LIN",
+ "unn able",
+ "▁cent uries",
+ "▁B ayer",
+ "▁Ba yer",
+ "▁Bay er",
+ "ці ю",
+ "ов ин",
+ "ови н",
+ "о вин",
+ "▁And rea",
+ "▁Andre a",
+ "se lection",
+ "select ion",
+ "sel ection",
+ "▁c alm",
+ "▁cal m",
+ "▁ca lm",
+ "▁mod ification",
+ "▁modific ation",
+ "▁short ly",
+ "in aire",
+ "ina ire",
+ "i naire",
+ "▁f usion",
+ "▁fus ion",
+ "▁feel ings",
+ "▁feeling s",
+ "▁fee lings",
+ "P K",
+ "▁Ro berto",
+ "▁Robert o",
+ "г не",
+ "Sh ared",
+ "▁mehr ere",
+ "▁N iem",
+ "▁Ni em",
+ "▁Nie m",
+ "om p",
+ "o mp",
+ "En v",
+ "▁Art icle",
+ "▁P ok",
+ "▁Po k",
+ "▁V ARCHAR",
+ "▁d il",
+ "▁di l",
+ "▁af ford",
+ "▁aff ord",
+ "▁con front",
+ "▁conf ront",
+ "ow anie",
+ "owa nie",
+ "owan ie",
+ "▁min istre",
+ "▁minist re",
+ "▁mini stre",
+ "ad esh",
+ "ade sh",
+ "ades h",
+ "▁P oly",
+ "▁Pol y",
+ "▁Po ly",
+ "▁Ра спо",
+ "▁Рас по",
+ "▁Gru ppe",
+ "▁H elen",
+ "▁He len",
+ "▁Hel en",
+ "▁c c",
+ "▁ cc",
+ "▁port rait",
+ "be w",
+ "b ew",
+ "▁b eta",
+ "▁be ta",
+ "▁bet a",
+ "▁ beta",
+ "▁W ir",
+ "▁Wi r",
+ "▁A udio",
+ "▁Aud io",
+ "▁ Audio",
+ "▁( \\<",
+ "▁(\\ <",
+ "rior ity",
+ "▁n it",
+ "▁ni t",
+ "▁ nit",
+ "▁пред стави",
+ "▁представ и",
+ "▁V ie",
+ "▁Vi e",
+ "▁w ür",
+ "▁ wür",
+ "▁H old",
+ "▁Hol d",
+ "▁Ho ld",
+ "▁ Hold",
+ "▁S ad",
+ "▁Sa d",
+ "▁To chter",
+ "▁o ltre",
+ "▁ol tre",
+ "▁ oltre",
+ "▁Act iv",
+ "▁ Activ",
+ "▁J ason",
+ "▁Ja son",
+ "▁Jas on",
+ "▁wie ku",
+ "▁reg ards",
+ "▁regard s",
+ "▁t aste",
+ "▁ta ste",
+ "agnost ic",
+ "ла ся",
+ "▁S elf",
+ "▁Sel f",
+ "▁ Self",
+ "▁a pr",
+ "▁ap r",
+ "▁De ep",
+ "sc op",
+ "s cop",
+ "Act iv",
+ "▁type def",
+ "▁typed ef",
+ "Content View",
+ "comp iler",
+ "compile r",
+ "▁R oth",
+ "▁Ro th",
+ "▁Rot h",
+ "x c",
+ "зи к",
+ "▁l argo",
+ "▁lar go",
+ "▁larg o",
+ "▁R ena",
+ "▁Re na",
+ "▁Ren a",
+ "he iten",
+ "heit en",
+ "▁platform s",
+ "▁plat forms",
+ "ul la",
+ "ull a",
+ "u lla",
+ "▁gl ance",
+ "▁mas cul",
+ "▁m ex",
+ "▁me x",
+ "▁J orge",
+ "▁fun cion",
+ "▁func ion",
+ "cho ose",
+ "▁re views",
+ "▁review s",
+ "▁Al ban",
+ "▁Alb an",
+ "▁G lo",
+ "▁Gl o",
+ "▁S pecies",
+ "▁Spe cies",
+ "▁Spec ies",
+ "▁F ame",
+ "▁Fa me",
+ "▁Fam e",
+ "▁R oll",
+ "▁Ro ll",
+ "▁Rol l",
+ "▁P uerto",
+ "▁\\ )",
+ "▁ \\)",
+ "ym nas",
+ "ymn as",
+ "en viron",
+ "▁i phone",
+ "▁Wrest ling",
+ "ał y",
+ "a ły",
+ "▁Ind iana",
+ "▁India na",
+ "▁Indian a",
+ "Rad io",
+ "V S",
+ "▁independ ence",
+ "та й",
+ "▁de code",
+ "▁dec ode",
+ "▁ decode",
+ "Wh ite",
+ "▁j ourn",
+ "▁jo urn",
+ "▁jou rn",
+ "▁jour n",
+ "ícul o",
+ "í culo",
+ "▁Bar b",
+ "▁Ba rb",
+ "▁Ev angel",
+ "▁An dy",
+ "▁And y",
+ "▁Wel come",
+ "▁De vice",
+ "▁Dev ice",
+ "▁ Device",
+ "ge f",
+ "g ef",
+ "▁remember ed",
+ "▁vari ations",
+ "▁variation s",
+ "▁Ad olf",
+ "it aine",
+ "ita ine",
+ "▁надмор ској",
+ "▁s team",
+ "▁ste am",
+ "▁concern s",
+ "▁` |",
+ "▁би о",
+ "тель ства",
+ "▁qu attro",
+ "ext end",
+ "▁trab ajo",
+ "▁trabaj o",
+ "en berg",
+ "▁scen arios",
+ "▁scenario s",
+ "ân t",
+ "â nt",
+ "▁kom mt",
+ "▁komm t",
+ "▁dom estic",
+ "▁B asketball",
+ "▁Co oper",
+ "so ck",
+ "s ock",
+ "дер жа",
+ "д ержа",
+ "={ \\",
+ "= {\\",
+ "▁in ici",
+ "▁P hill",
+ "▁Ph ill",
+ "▁Phil l",
+ "▁гене рал",
+ "archivi ato",
+ "ъ н",
+ "Ro b",
+ "R ob",
+ "▁t ong",
+ "▁to ng",
+ "▁ton g",
+ "▁character istics",
+ "▁characteristic s",
+ "▁a maz",
+ "▁am az",
+ "▁M ode",
+ "▁Mod e",
+ "▁Mo de",
+ "▁ Mode",
+ "▁inaug ur",
+ "we hr",
+ "ra nt",
+ "ran t",
+ "r ant",
+ "ion ali",
+ "ional i",
+ "iona li",
+ "▁M other",
+ "▁Mo ther",
+ "▁Mot her",
+ "M a",
+ "é qu",
+ "▁K elly",
+ "▁Kel ly",
+ "ci le",
+ "cil e",
+ "c ile",
+ "▁beste ht",
+ "▁estim ates",
+ "▁estimate s",
+ "rugu ay",
+ "▁A ns",
+ "▁An s",
+ "Ma d",
+ "M ad",
+ "▁на в",
+ "▁d onnées",
+ "▁donn ées",
+ "▁donné es",
+ "▁ données",
+ "▁trop ical",
+ "▁Sever al",
+ "el ter",
+ "elt er",
+ "elte r",
+ "▁P ho",
+ "▁Ph o",
+ "ke m",
+ "k em",
+ "▁Custom er",
+ "▁ Customer",
+ "▁скла ді",
+ "▁c ourses",
+ "▁course s",
+ "▁cours es",
+ "Pl atform",
+ "nav bar",
+ "le arning",
+ "lear ning",
+ "learn ing",
+ "▁Sw edish",
+ "▁z ast",
+ "▁za st",
+ "▁zas t",
+ "▁L ig",
+ "▁Li g",
+ "man agement",
+ "▁l od",
+ "▁lo d",
+ "uff le",
+ "Text ure",
+ "Te xture",
+ "ar ga",
+ "arg a",
+ "át um",
+ "▁D DR",
+ "ні ї",
+ "н ії",
+ "▁Soci été",
+ "▁dom ains",
+ "▁domain s",
+ "▁perm itted",
+ "▁permit ted",
+ "▁ex terne",
+ "▁ext erne",
+ "▁extern e",
+ "▁quel que",
+ "v t",
+ "ym an",
+ "y man",
+ "▁W ard",
+ "▁War d",
+ "▁Wa rd",
+ "▁ag li",
+ "▁ agli",
+ "▁and ra",
+ "▁an dra",
+ "▁ andra",
+ "S napshot",
+ "▁m å",
+ "▁ye ah",
+ "де на",
+ "ден а",
+ "д ена",
+ "ęp u",
+ "ę pu",
+ "ask ell",
+ "▁Ré publique",
+ "in ject",
+ "▁' ;",
+ "▁ ';",
+ "än n",
+ "ä nn",
+ "▁z elf",
+ "▁Ent wicklung",
+ "ár ia",
+ "á ria",
+ "on omy",
+ "ono my",
+ "onom y",
+ "▁s vil",
+ "▁sv il",
+ "ie se",
+ "ies e",
+ "i ese",
+ "▁con ser",
+ "▁cons er",
+ "▁conse r",
+ "▁n im",
+ "▁ni m",
+ "▁ nim",
+ "▁r ész",
+ "▁ré sz",
+ "▁rés z",
+ "▁И тали",
+ "▁part ici",
+ "▁partic i",
+ "▁parti ci",
+ "▁L ion",
+ "▁Li on",
+ "s r",
+ "al ways",
+ "▁Влади мир",
+ "че ские",
+ "[ ,",
+ "▁Def inition",
+ "▁ Definition",
+ "na nt",
+ "nan t",
+ "n ant",
+ "oe m",
+ "o em",
+ "Id s",
+ "I ds",
+ "▁в не",
+ "▁[ ...]",
+ "▁на прав",
+ "▁нап рав",
+ "▁G O",
+ "▁ GO",
+ "▁å rs",
+ "▁år s",
+ "▁ut án",
+ "▁out ros",
+ "▁reg ión",
+ "▁M ong",
+ "▁Mon g",
+ "▁Mo ng",
+ "▁fil me",
+ "▁film e",
+ "▁tri ple",
+ "▁trip le",
+ "▁sp ons",
+ "▁spo ns",
+ "De velop",
+ "▁out come",
+ "▁B ible",
+ "▁Bi ble",
+ "▁Bib le",
+ "▁и мени",
+ "▁име ни",
+ "▁имен и",
+ "Can vas",
+ "пу та",
+ "cur r",
+ "cu rr",
+ "c urr",
+ "ás ok",
+ "){ \\",
+ ") {\\",
+ "ning ar",
+ "` ;",
+ "▁Fl ash",
+ ": #",
+ "mu st",
+ "mus t",
+ "m ust",
+ "cp u",
+ "c pu",
+ "▁form ats",
+ "▁format s",
+ "▁forma ts",
+ "Ha r",
+ "H ar",
+ "▁epis odio",
+ "▁R osa",
+ "▁Ro sa",
+ "▁Ros a",
+ "▁d ès",
+ "em it",
+ "emi t",
+ "e mit",
+ "rit eria",
+ "rite ria",
+ "riter ia",
+ "An notation",
+ "Fl ag",
+ "F lag",
+ "g mail",
+ "▁N ormal",
+ "▁Nor mal",
+ "▁Norm al",
+ "▁ Normal",
+ "oll ary",
+ "ollar y",
+ "▁f oss",
+ "▁fo ss",
+ "▁fos s",
+ "▁con current",
+ "▁conc urrent",
+ "▁ concurrent",
+ "▁crash es",
+ "▁ви де",
+ "▁вид е",
+ "▁Min or",
+ "▁Mi nor",
+ "▁S it",
+ "▁Si t",
+ "▁S N",
+ "▁ SN",
+ "▁s car",
+ "▁sc ar",
+ "▁ scar",
+ "▁fe min",
+ "▁fem in",
+ "▁spec ification",
+ "▁specific ation",
+ "so ap",
+ "▁o perate",
+ "▁oper ate",
+ "▁opera te",
+ "▁principal mente",
+ "▁a ust",
+ "▁au st",
+ "▁aus t",
+ "ib ile",
+ "ibil e",
+ "it ime",
+ "iti me",
+ "i time",
+ "ле жа",
+ "if rame",
+ "i frame",
+ "▁concept s",
+ "▁conce pts",
+ "▁t ack",
+ "▁ta ck",
+ "▁v iss",
+ "▁vis s",
+ "▁vi ss",
+ "▁car bon",
+ "ter y",
+ "te ry",
+ "t ery",
+ "▁n aming",
+ "▁na ming",
+ "▁nam ing",
+ "▁Or ts",
+ "▁Ort s",
+ "id ente",
+ "ident e",
+ "iden te",
+ "▁Cap it",
+ "▁Ca pit",
+ "▁ex pr",
+ "▁exp r",
+ "▁ expr",
+ "▁насе љу",
+ "▁Select ed",
+ "▁Sel ected",
+ "▁Sele cted",
+ "▁ Selected",
+ "▁h inter",
+ "▁hint er",
+ "▁hin ter",
+ "▁i frame",
+ "▁if rame",
+ "▁ iframe",
+ "▁z b",
+ "index Path",
+ "col l",
+ "co ll",
+ "c oll",
+ "▁wr ześ",
+ "▁a cht",
+ "▁ac ht",
+ "▁ach t",
+ "▁ acht",
+ "▁grad ually",
+ "▁gradu ally",
+ "▁ч у",
+ "▁ чу",
+ "зе й",
+ "з ей",
+ "ha ft",
+ "h aft",
+ "▁t ran",
+ "▁tr an",
+ "▁tra n",
+ "▁la quelle",
+ "yt ics",
+ "ID E",
+ "I DE",
+ "▁py game",
+ "▁pyg ame",
+ "▁P ackage",
+ "▁Pack age",
+ "▁ Package",
+ "▁class Name",
+ "▁ className",
+ "B al",
+ "pe rl",
+ "per l",
+ "ти на",
+ "тин а",
+ "O cc",
+ "▁in frastr",
+ "▁Champion s",
+ "▁Champ ions",
+ "▁class ic",
+ "▁R aw",
+ "▁Ra w",
+ "▁ Raw",
+ "▁partial ly",
+ "▁parti ally",
+ "▁T ed",
+ "▁Te d",
+ "▁sto let",
+ "ra ined",
+ "rain ed",
+ "raine d",
+ "rai ned",
+ "r ained",
+ "WH ERE",
+ "W HERE",
+ "▁v all",
+ "▁val l",
+ "▁va ll",
+ "▁Jul ia",
+ "▁Ju lia",
+ "▁Juli a",
+ "za t",
+ "z at",
+ "▁surr ounded",
+ "SE E",
+ "S EE",
+ "▁walk ing",
+ "▁wal king",
+ "B ad",
+ "FO R",
+ "F OR",
+ "con tre",
+ "cont re",
+ "contr e",
+ "▁Pal est",
+ "▁Pale st",
+ "át ico",
+ "▁engine er",
+ "▁part ners",
+ "▁partner s",
+ "▁Je ws",
+ "▁Jew s",
+ "il ers",
+ "ile rs",
+ "iler s",
+ "i lers",
+ "▁c erem",
+ "▁ce rem",
+ "▁cer em",
+ "▁inter actions",
+ "▁interaction s",
+ "▁interact ions",
+ "ac u",
+ "a cu",
+ "st y",
+ "s ty",
+ "▁Prince ss",
+ "▁Prin cess",
+ "sh arp",
+ "sha rp",
+ "▁Sing les",
+ "▁Single s",
+ "▁ї х",
+ "ch ez",
+ "che z",
+ "c hez",
+ "Rece iver",
+ "Receive r",
+ "▁pat ients",
+ "▁patient s",
+ "string ify",
+ "▁compet ed",
+ "be y",
+ "b ey",
+ "$ ;",
+ "▁B d",
+ "had oop",
+ "h adoop",
+ "▁Div isión",
+ "öl d",
+ "ö ld",
+ "▁restrict ed",
+ "▁comm ander",
+ "▁command er",
+ "▁comma nder",
+ "▁High way",
+ "▁Č esk",
+ "▁m yth",
+ "▁my th",
+ "ча н",
+ "ч ан",
+ "ra ham",
+ "rah am",
+ "▁en qu",
+ "▁p og",
+ "▁po g",
+ "▁com una",
+ "▁comun a",
+ "▁print ln",
+ "▁ println",
+ "▁к руп",
+ "▁de pois",
+ "▁dep ois",
+ "▁se ats",
+ "▁sea ts",
+ "▁seat s",
+ "▁neigh b",
+ "ци она",
+ "цион а",
+ "ag ine",
+ "agi ne",
+ "agin e",
+ "▁cloth es",
+ "▁clo thes",
+ "▁P rior",
+ "▁Pr ior",
+ "▁Pri or",
+ "Br ain",
+ "Bra in",
+ "B rain",
+ "FF FF",
+ "': '",
+ "' :'",
+ "fe atures",
+ "feature s",
+ "▁file system",
+ "▁files ystem",
+ "▁sing les",
+ "▁single s",
+ "▁Mel bourne",
+ "▁dest ruction",
+ "▁destruct ion",
+ "▁destru ction",
+ "▁Ly on",
+ "▁In sel",
+ "▁Ins el",
+ "Na v",
+ "N av",
+ "▁Re place",
+ "▁Rep lace",
+ "▁ Replace",
+ "▁l é",
+ "▁ lé",
+ "Wh o",
+ "W ho",
+ "▁E stad",
+ "▁Est ad",
+ "▁Esta d",
+ "▁dim ensional",
+ "▁dimension al",
+ "▁ dimensional",
+ "▁ö ff",
+ "▁ öff",
+ "▁gr ands",
+ "▁gran ds",
+ "▁grand s",
+ "дж а",
+ "д жа",
+ "pl ane",
+ "plan e",
+ "pla ne",
+ "p lane",
+ "но сті",
+ "ност і",
+ "нос ті",
+ "▁Or igin",
+ "▁Ori gin",
+ "▁Orig in",
+ "▁ Origin",
+ "W I",
+ "än ner",
+ "änn er",
+ "▁C ry",
+ "▁Cr y",
+ "IT ION",
+ "▁fö dd",
+ "▁cult ura",
+ "▁R ank",
+ "▁Ran k",
+ "▁v uel",
+ "▁vue l",
+ "▁vu el",
+ "▁z ag",
+ "▁za g",
+ "▁Ma xim",
+ "▁Max im",
+ "он у",
+ "о ну",
+ "() ))",
+ "()) )",
+ "( )))",
+ "R aw",
+ "kir che",
+ "k irche",
+ "▁a demás",
+ "▁t ie",
+ "▁ti e",
+ "▁St yle",
+ "▁ Style",
+ "ско в",
+ "ск ов",
+ "с ков",
+ "ist ant",
+ "ista nt",
+ "istan t",
+ "ol ph",
+ "▁Z ür",
+ "▁In fo",
+ "▁Inf o",
+ "▁ Info",
+ "DO M",
+ "D OM",
+ "us c",
+ "u sc",
+ "na hm",
+ "nah m",
+ "▁Ф едера",
+ "▁F ot",
+ "▁Fo t",
+ "▁spec ifying",
+ "▁specify ing",
+ "▁tit olo",
+ "▁Bo ys",
+ "▁Boy s",
+ "ie ch",
+ "iec h",
+ "i ech",
+ "Pl ace",
+ "P lace",
+ "▁H off",
+ "▁Ho ff",
+ "▁Hof f",
+ "▁c ached",
+ "▁ca ched",
+ "▁cache d",
+ "ва ль",
+ "вал ь",
+ "в аль",
+ "is her",
+ "ish er",
+ "roll ing",
+ "rol ling",
+ "op ens",
+ "ope ns",
+ "open s",
+ "▁h r",
+ "▁ hr",
+ "-- ----",
+ "---- --",
+ "--- ---",
+ "----- -",
+ "- -----",
+ "▁mag gior",
+ "▁maggio r",
+ "▁trans actions",
+ "▁transaction s",
+ "▁c riminal",
+ "▁crim inal",
+ "▁re tre",
+ "▁ret re",
+ "▁retr e",
+ "▁Camp bell",
+ ")) :",
+ ") ):",
+ "▁n ed",
+ "▁ne d",
+ "▁ ned",
+ "Page r",
+ "Pa ger",
+ "P ager",
+ "▁H ero",
+ "▁He ro",
+ "▁Her o",
+ "(_ _",
+ "( __",
+ "▁un cle",
+ "▁re aches",
+ "▁reach es",
+ "ar to",
+ "art o",
+ "▁h ello",
+ "▁hel lo",
+ "▁hell o",
+ "▁ hello",
+ "Pre ferences",
+ "▁за тем",
+ "Name d",
+ "Na med",
+ "N amed",
+ "▁re aders",
+ "▁read ers",
+ "▁reader s",
+ "х і",
+ "ke rn",
+ "ker n",
+ "k ern",
+ "▁у по",
+ "ки н",
+ "к ин",
+ "▁l av",
+ "▁la v",
+ "▁ lav",
+ "▁n ob",
+ "▁no b",
+ "▁se cre",
+ "▁sec re",
+ "▁List View",
+ "▁ ListView",
+ "ва ния",
+ "▁May or",
+ "bo rough",
+ "bor ough",
+ "▁fil osof",
+ "не ння",
+ "нен ня",
+ "фр и",
+ "ф ри",
+ "▁p atr",
+ "▁pat r",
+ "▁pa tr",
+ "F M",
+ "▁a cid",
+ "▁ac id",
+ "▁Salv ador",
+ "▁a bb",
+ "▁ab b",
+ "▁ abb",
+ "▁G raham",
+ "▁Gra ham",
+ "pol icy",
+ "neg ative",
+ "ński ego",
+ "ń skiego",
+ "▁He imat",
+ "▁d azu",
+ "▁da zu",
+ "▁m ely",
+ "▁me ly",
+ "▁mel y",
+ "▁r ide",
+ "▁rid e",
+ "▁ri de",
+ "▁ ride",
+ "▁du ties",
+ "▁dut ies",
+ "ov ery",
+ "over y",
+ "ove ry",
+ "o very",
+ "▁Pro position",
+ "▁Prop osition",
+ "▁Pa olo",
+ "/ '",
+ "▁M au",
+ "▁Ma u",
+ "im enti",
+ "iment i",
+ "imen ti",
+ "Sa int",
+ "S aint",
+ "fa ther",
+ "f ather",
+ "▁equ ilib",
+ "ph ony",
+ "phon y",
+ "▁c las",
+ "▁cl as",
+ "▁cla s",
+ "▁от ли",
+ "▁Buffer ed",
+ "▁Buff ered",
+ "re k",
+ "r ek",
+ "▁m itt",
+ "▁mit t",
+ "▁mi tt",
+ "▁ mitt",
+ "▁H ur",
+ "▁Hu r",
+ "▁Har vard",
+ "▁demonstr ate",
+ "ua rio",
+ "u ario",
+ "▁do lor",
+ "▁dol or",
+ "▁reject ed",
+ "▁M üller",
+ "▁n ac",
+ "▁na c",
+ "▁B elle",
+ "▁Be lle",
+ "▁Bel le",
+ "▁Bell e",
+ "▁gather ed",
+ "n r",
+ "fr ika",
+ "fri ka",
+ "öl l",
+ "ö ll",
+ "▁chem ical",
+ "ni g",
+ "n ig",
+ "▁cal c",
+ "▁ calc",
+ "▁DE FAULT",
+ "▁ DEFAULT",
+ "▁philosoph y",
+ "▁Lar avel",
+ "▁al ignment",
+ "▁align ment",
+ "E V",
+ "e or",
+ "▁d zie",
+ "▁dz ie",
+ "▁ dzie",
+ "▁m est",
+ "▁me st",
+ "▁mes t",
+ "▁I o",
+ "CR E",
+ "C RE",
+ "з ви",
+ "▁M edic",
+ "▁Me dic",
+ "▁Med ic",
+ "▁Medi c",
+ "▁n ä",
+ "▁z ab",
+ "▁za b",
+ "▁S lov",
+ "▁Sl ov",
+ "▁Slo v",
+ "ut lich",
+ "▁am plit",
+ "▁ampl it",
+ "▁amp lit",
+ "▁Fran kreich",
+ "▁Frank reich",
+ "▁к іль",
+ "▁кі ль",
+ "IN D",
+ "I ND",
+ "exec ution",
+ "▁Kar riere",
+ "d ostęp",
+ "▁r éal",
+ "▁ré al",
+ "en go",
+ "eng o",
+ "▁se vere",
+ "▁sever e",
+ "зм а",
+ "з ма",
+ "▁тур ни",
+ "▁C arter",
+ "▁Car ter",
+ "▁Cart er",
+ "▁Rob inson",
+ "▁Robin son",
+ "getElement sBy",
+ "▁pro totype",
+ "▁proto type",
+ "▁ prototype",
+ "▁jap on",
+ "▁ja pon",
+ "führ ung",
+ "f ührung",
+ "▁con segu",
+ "▁cons egu",
+ "▁conse gu",
+ "▁st udi",
+ "▁stud i",
+ "▁l ire",
+ "▁li re",
+ "▁ lire",
+ "▁sch ließ",
+ "▁ schließ",
+ "▁B uff",
+ "▁Bu ff",
+ "▁red und",
+ "▁redu nd",
+ "▁e rn",
+ "▁er n",
+ "▁ ern",
+ "▁my ster",
+ "▁myst er",
+ "▁prop rio",
+ "▁propri o",
+ "ate ful",
+ "▁Par ent",
+ "▁Pa rent",
+ "▁ Parent",
+ "▁lad ies",
+ "ra ck",
+ "rac k",
+ "r ack",
+ "ти ка",
+ "тик а",
+ "en burg",
+ "▁каче стве",
+ "▁E F",
+ "▁ EF",
+ "▁st am",
+ "▁sta m",
+ "▁nue va",
+ "▁fil tered",
+ "▁filter ed",
+ "re ten",
+ "ret en",
+ "r eten",
+ "▁I an",
+ "▁Matt hew",
+ "▁Matth ew",
+ "ki h",
+ "k ih",
+ "▁ ő",
+ "▁ком пози",
+ "▁for ever",
+ "▁fore ver",
+ "oir es",
+ "oi res",
+ "oire s",
+ "o ires",
+ ":\\ \\",
+ ": \\\\",
+ "▁ét udes",
+ "▁s oup",
+ "▁so up",
+ "▁sou p",
+ "▁p leased",
+ "▁please d",
+ "▁ple ased",
+ ")} (",
+ ") }(",
+ "▁S top",
+ "▁St op",
+ "▁Sto p",
+ "▁ Stop",
+ "Set ter",
+ "S etter",
+ "▁He lp",
+ "▁Hel p",
+ "▁ Help",
+ "▁b ars",
+ "▁bar s",
+ "▁ba rs",
+ "▁ bars",
+ "▁ER R",
+ "▁ ERR",
+ "▁( ?",
+ "▁ (?",
+ "▁po etry",
+ "▁poet ry",
+ "▁U til",
+ "▁Ut il",
+ "▁ Util",
+ "A K",
+ "▁f ick",
+ "▁fi ck",
+ "▁fic k",
+ "▁I M",
+ "▁ IM",
+ "▁pro ud",
+ "▁pr oud",
+ "но си",
+ "нос и",
+ "▁m uerte",
+ "▁mu erte",
+ "▁Palmar ès",
+ "▁N as",
+ "▁Na s",
+ "щи х",
+ "щ их",
+ "▁qu er",
+ "▁que r",
+ "▁q uer",
+ "▁ quer",
+ "▁a penas",
+ "▁ap enas",
+ "][ '",
+ "] ['",
+ "▁Kon st",
+ "по н",
+ "п он",
+ "▁Sch iff",
+ "▁m p",
+ "▁ mp",
+ "▁б лаго",
+ "fr am",
+ "fra m",
+ "f ram",
+ "▁house hold",
+ "▁t ract",
+ "▁tr act",
+ "▁tra ct",
+ "▁trac t",
+ "enc oding",
+ "▁und ert",
+ "▁under t",
+ "▁ undert",
+ "▁A ug",
+ "▁Au g",
+ "ов ан",
+ "ова н",
+ "о ван",
+ "▁Ar ten",
+ "▁Art en",
+ "▁Arte n",
+ "▁inv oked",
+ "▁invoke d",
+ "▁d ynast",
+ "▁fle et",
+ "че ство",
+ "▁Mur ray",
+ "▁g ut",
+ "▁gu t",
+ "eli hood",
+ "▁S SH",
+ "▁SS H",
+ "от вет",
+ "▁person ally",
+ "▁personal ly",
+ "при я",
+ "п рия",
+ "▁fin anci",
+ "▁finan ci",
+ "▁Thom pson",
+ "al u",
+ "a lu",
+ "id entity",
+ "ident ity",
+ "▁G rab",
+ "▁Gr ab",
+ "▁Gra b",
+ "add le",
+ "É t",
+ "▁T ob",
+ "▁To b",
+ "▁ver lor",
+ "▁verl or",
+ "▁Saint e",
+ "▁Sa inte",
+ "▁Sain te",
+ "▁d op",
+ "▁do p",
+ "▁в ере",
+ "▁ве ре",
+ "▁вер е",
+ "__ _",
+ "_ __",
+ "▁prom otion",
+ "▁- =",
+ "▁от де",
+ "▁amb igu",
+ "▁ ambigu",
+ "OR DER",
+ "ORD ER",
+ "▁Comm unic",
+ "▁Commun ic",
+ "▁im ply",
+ "▁imp ly",
+ "▁impl y",
+ "on ed",
+ "one d",
+ "o ned",
+ "clud ing",
+ "▁coll ision",
+ "▁fragment s",
+ "▁frag ments",
+ "script ion",
+ "scri ption",
+ "s cription",
+ "▁' {",
+ "ля х",
+ "л ях",
+ "▁h ans",
+ "▁ha ns",
+ "▁han s",
+ "у с",
+ "wi re",
+ "w ire",
+ "name space",
+ "names pace",
+ "▁s word",
+ "▁sw ord",
+ "▁swo rd",
+ "ref resh",
+ "▁kw am",
+ "z s",
+ "comm ons",
+ "common s",
+ "▁c osa",
+ "▁co sa",
+ "▁cos a",
+ "▁reg ime",
+ "gr ep",
+ "gre p",
+ "g rep",
+ "▁di oc",
+ "▁dio c",
+ "▁Cont act",
+ "▁ Contact",
+ "▁est as",
+ "▁esta s",
+ "▁Ste wart",
+ "▁v iele",
+ "▁vi ele",
+ "▁vie le",
+ "▁viel e",
+ "то ва",
+ "тов а",
+ "т ова",
+ "▁R an",
+ "▁Ra n",
+ "an nes",
+ "ann es",
+ "anne s",
+ "id ay",
+ "ida y",
+ "i day",
+ "▁s napshot",
+ "▁snap shot",
+ "or row",
+ "orr ow",
+ "▁za č",
+ "▁участи е",
+ "▁prom ised",
+ "▁promise d",
+ "Ass embly",
+ "▁champion ship",
+ "▁champions hip",
+ "▁Def ine",
+ "▁e ren",
+ "▁er en",
+ "▁ere n",
+ "▁ eren",
+ "▁но во",
+ "▁н ово",
+ "▁нов о",
+ "▁ ново",
+ "▁th inks",
+ "▁think s",
+ "▁thin ks",
+ "Ag e",
+ "A ge",
+ "▁g ev",
+ "▁ge v",
+ "var char",
+ "v archar",
+ "iv ità",
+ "com pos",
+ "comp os",
+ "▁M utter",
+ "▁Mut ter",
+ "CO NT",
+ "CON T",
+ "arm ée",
+ "ag net",
+ "agn et",
+ "agne t",
+ "▁B row",
+ "▁Br ow",
+ "▁Bro w",
+ ". —",
+ "▁Tele vision",
+ "▁Д ля",
+ "▁v m",
+ "▁ vm",
+ "▁or din",
+ "▁ord in",
+ "▁ ordin",
+ "▁Миха й",
+ "▁apro xim",
+ "') ->",
+ "' )->",
+ "▁z oo",
+ "▁zo o",
+ "ip pi",
+ "ipp i",
+ "i ppi",
+ "▁s ino",
+ "▁si no",
+ "▁sin o",
+ "▁Qu ébec",
+ "ra ges",
+ "rag es",
+ "rage s",
+ "r ages",
+ "ä ck",
+ "ei ng",
+ "ein g",
+ "e ing",
+ "ar lo",
+ "pi os",
+ "pio s",
+ "p ios",
+ "▁C han",
+ "▁Ch an",
+ "▁Cha n",
+ "▁el li",
+ "▁ell i",
+ "▁ elli",
+ "▁in cons",
+ "▁inc ons",
+ "▁incon s",
+ "gest ellt",
+ "g estellt",
+ "pp ers",
+ "pper s",
+ "ppe rs",
+ "p pers",
+ "Je an",
+ "anst alt",
+ "▁D ance",
+ "▁Dan ce",
+ "▁to en",
+ "▁toe n",
+ "▁de cis",
+ "▁dec is",
+ "▁Ре зу",
+ "▁official ly",
+ "▁offici ally",
+ "ät ze",
+ "ätz e",
+ "▁до ро",
+ "▁e numer",
+ "▁en umer",
+ "▁enum er",
+ "▁trois ième",
+ "ty p",
+ "t yp",
+ "of fs",
+ "off s",
+ "бо ль",
+ "od n",
+ "o dn",
+ "▁Z ar",
+ "▁Za r",
+ "▁дру го",
+ "qu ia",
+ "qui a",
+ "▁Nicol as",
+ "▁Nic olas",
+ "▁Nicola s",
+ "пи су",
+ "пис у",
+ "▁m ob",
+ "▁mo b",
+ "pa ces",
+ "pace s",
+ "p aces",
+ "нь ого",
+ "ньо го",
+ "Al g",
+ "A lg",
+ "éro ï",
+ "Error s",
+ "Err ors",
+ "▁г ре",
+ "▁ гре",
+ "▁жен щи",
+ "in ch",
+ "inc h",
+ "▁Kore an",
+ "▁Korea n",
+ "▁A post",
+ "▁Ap ost",
+ "▁L iver",
+ "▁Li ver",
+ "▁Live r",
+ "▁Liv er",
+ "▁element ary",
+ "▁D I",
+ "▁ DI",
+ "ви си",
+ "▁so il",
+ "▁D LL",
+ "▁r isp",
+ "▁ris p",
+ "▁ri sp",
+ "▁Sh akespe",
+ "▁G aussian",
+ "▁K urt",
+ "▁Kur t",
+ "▁Ku rt",
+ "Ver tex",
+ "Vert ex",
+ "eb ol",
+ "e bol",
+ "organ isation",
+ "är en",
+ "äre n",
+ "ä ren",
+ "▁Y ES",
+ "▁ YES",
+ "C UR",
+ "▁нача ль",
+ "▁по стро",
+ "▁пос тро",
+ "▁Lu igi",
+ "▁c aching",
+ "prevent Default",
+ "am d",
+ "a md",
+ "▁V it",
+ "▁Vi t",
+ "sub st",
+ "su bst",
+ "▁ст рои",
+ "▁C ampion",
+ "▁Camp ion",
+ "ch r",
+ "c hr",
+ "фе ре",
+ "фер е",
+ "ф ере",
+ "▁С писок",
+ "N F",
+ "▁c ím",
+ "▁cí m",
+ "▁h é",
+ "▁ hé",
+ "re bbe",
+ "reb be",
+ "oc y",
+ "o cy",
+ "be low",
+ "bel ow",
+ "▁by lo",
+ "▁byl o",
+ "▁У и",
+ "▁\\ ({\\",
+ "▁\\( {\\",
+ "▁` :",
+ "▁ `:",
+ "gi ore",
+ "gio re",
+ "gior e",
+ "g iore",
+ "Sa n",
+ "S an",
+ "▁G ate",
+ "▁Ga te",
+ "▁в с",
+ "▁o limp",
+ "▁ol imp",
+ "▁Mat rix",
+ "▁ Matrix",
+ "▁he aring",
+ "▁hear ing",
+ "ri i",
+ "r ii",
+ "tf rac",
+ "t frac",
+ "▁allem and",
+ "▁V ue",
+ "л н",
+ "▁comp iling",
+ "▁E ns",
+ "▁En s",
+ "▁investig ation",
+ "▁A x",
+ "▁ch ars",
+ "▁char s",
+ "▁cha rs",
+ "▁target s",
+ "▁tar gets",
+ "▁l oud",
+ "▁lo ud",
+ "us ement",
+ "use ment",
+ "▁N ether",
+ "▁Ne ther",
+ "▁Net her",
+ "com merce",
+ "IG HT",
+ "oc oa",
+ "oco a",
+ "if ecycle",
+ "ife cycle",
+ "▁Le o",
+ "pr iv",
+ "p riv",
+ "▁go ods",
+ "▁good s",
+ "ad amente",
+ "ada mente",
+ "A ustral",
+ "▁re boot",
+ "▁reb oot",
+ "Ge st",
+ "G est",
+ "▁represent ations",
+ "▁representation s",
+ "ce u",
+ "c eu",
+ "▁do ctrine",
+ "ce rs",
+ "cer s",
+ "c ers",
+ "▁K rak",
+ "▁Kr ak",
+ "▁Kra k",
+ "▁adv oc",
+ "▁squad ra",
+ "▁arbeit ete",
+ "üs t",
+ "ü st",
+ "▁p ill",
+ "▁pi ll",
+ "▁pil l",
+ "An swer",
+ "▁к віт",
+ "▁W a",
+ "um ann",
+ "uman n",
+ "uma nn",
+ "u mann",
+ "▁D ynam",
+ "▁Dy nam",
+ "Fa mil",
+ "F amil",
+ "▁t ennis",
+ "▁ten nis",
+ "▁Engine ering",
+ "▁circ les",
+ "▁cir cles",
+ "▁circle s",
+ "▁Mary land",
+ "▁b esta",
+ "▁be sta",
+ "▁best a",
+ "▁bes ta",
+ "▁b ases",
+ "▁bas es",
+ "▁base s",
+ "▁znaj du",
+ "ктор а",
+ "кто ра",
+ "к тора",
+ "▁ar rest",
+ "▁arr est",
+ "ле р",
+ "л ер",
+ "▁G ia",
+ "▁Gi a",
+ "▁remark able",
+ "▁мо гу",
+ "▁Sup reme",
+ "▁` %",
+ "do r",
+ "d or",
+ "▁au jourd",
+ "▁w is",
+ "WID TH",
+ "▁mis ma",
+ "▁mism a",
+ "▁fl uid",
+ "▁flu id",
+ "▁pet ite",
+ "▁petit e",
+ "▁T ow",
+ "▁To w",
+ "Reg istry",
+ "em ed",
+ "eme d",
+ "e med",
+ "▁Wis consin",
+ "▁R acing",
+ "▁Ra cing",
+ "▁reg istration",
+ "▁registr ation",
+ "/ %",
+ "th ird",
+ "▁mon uments",
+ "▁monument s",
+ "че й",
+ "ч ей",
+ "▁j et",
+ "▁je t",
+ "▁ jet",
+ "▁Ur ban",
+ "ál va",
+ "▁mil ieu",
+ "▁poss ess",
+ "▁g erm",
+ "▁ge rm",
+ "▁ger m",
+ "dep endencies",
+ "▁enem ies",
+ "▁s amen",
+ "▁sa men",
+ "▁same n",
+ "▁sam en",
+ "▁W erner",
+ "▁Wer ner",
+ "▁h izo",
+ "▁hi zo",
+ "▁t d",
+ "▁ td",
+ "▁y esterday",
+ "▁А д",
+ "▁ha sn",
+ "▁has n",
+ "cel lation",
+ "cell ation",
+ "ov ání",
+ "ová ní",
+ "li ka",
+ "lik a",
+ "l ika",
+ "We ek",
+ "▁I ng",
+ "▁In g",
+ "▁E mail",
+ "▁Em ail",
+ "▁ Email",
+ "▁m ètres",
+ "▁O CLC",
+ "▁among st",
+ "▁spl end",
+ "fu r",
+ "f ur",
+ "ant ics",
+ "anti cs",
+ "antic s",
+ "▁X XX",
+ "▁XX X",
+ "▁ XXX",
+ "▁груп пы",
+ "la ch",
+ "lac h",
+ "l ach",
+ "▁c ousin",
+ "▁cou sin",
+ "▁in variant",
+ "▁invari ant",
+ "ђ у",
+ "▁Be ispiel",
+ "▁Bei spiel",
+ "▁hard er",
+ "▁har der",
+ "▁b ell",
+ "▁be ll",
+ "▁bel l",
+ "▁ bell",
+ "▁or ch",
+ "▁ orch",
+ "t b",
+ "Foot note",
+ "re gon",
+ "reg on",
+ "Mart in",
+ "▁in con",
+ "▁inc on",
+ "▁attack ed",
+ "_{ -",
+ "_ {-",
+ "▁T ras",
+ "▁Tr as",
+ "▁Tra s",
+ "par ty",
+ "part y",
+ "ite it",
+ "▁s aint",
+ "▁sa int",
+ "▁sain t",
+ "rás ok",
+ "r ások",
+ "▁contain ers",
+ "▁container s",
+ "M o",
+ "▁S n",
+ "quant ity",
+ "▁r as",
+ "▁ra s",
+ "▁ ras",
+ "▁C anal",
+ "▁Can al",
+ "▁Ca nal",
+ "cc ion",
+ "c cion",
+ "uv o",
+ "u vo",
+ "▁i dx",
+ "▁id x",
+ "▁ idx",
+ "type name",
+ "typen ame",
+ "typ ename",
+ "▁R ugby",
+ "▁Se ems",
+ "▁See ms",
+ "▁trans mit",
+ "▁transm it",
+ "▁Pr äsident",
+ "з не",
+ "▁B aker",
+ "▁Ba ker",
+ "▁Bak er",
+ "in th",
+ "int h",
+ "i nth",
+ "▁tö bb",
+ "ver ein",
+ "vere in",
+ "▁espe cie",
+ "▁espec ie",
+ ", (",
+ "▁t éc",
+ "▁té c",
+ "▁W ITH",
+ "▁u nos",
+ "▁un os",
+ "▁uno s",
+ "▁ unos",
+ "▁polit ics",
+ "create Element",
+ "▁st ats",
+ "▁stat s",
+ "▁sta ts",
+ "▁ stats",
+ "▁T ennessee",
+ "▁Bedeut ung",
+ "▁S creen",
+ "▁Sc reen",
+ "▁ Screen",
+ "▁Stra ße",
+ "an ze",
+ "anz e",
+ "▁part ly",
+ "man uel",
+ "ol ation",
+ "ola tion",
+ "o lation",
+ "hor izontal",
+ "érie ure",
+ "érieur e",
+ "am pio",
+ "amp io",
+ "▁ст рук",
+ "▁ струк",
+ "We ight",
+ "La nd",
+ "L and",
+ "po ly",
+ "pol y",
+ "p oly",
+ "▁D ak",
+ "▁Da k",
+ "▁Ass ume",
+ "\". $",
+ "\" .$",
+ "▁c asi",
+ "▁cas i",
+ "▁ca si",
+ "▁g ross",
+ "▁gr oss",
+ "▁gro ss",
+ "▁gros s",
+ "▁ent ertain",
+ "▁enter tain",
+ "▁déc ada",
+ "'. $",
+ "' .$",
+ "en cer",
+ "ence r",
+ "enc er",
+ "▁guarante ed",
+ "▁guarantee d",
+ "]$ .",
+ "] $.",
+ "ли ся",
+ "▁accept able",
+ "ra ise",
+ "rai se",
+ "rais e",
+ "ir us",
+ "i rus",
+ "we it",
+ "wei t",
+ "▁А на",
+ "▁Ан а",
+ "▁h ills",
+ "▁hill s",
+ "ip age",
+ "i page",
+ "BI T",
+ "B IT",
+ "▁nu cle",
+ "▁nuc le",
+ "▁ut ilis",
+ "▁util is",
+ "CA A",
+ "C AA",
+ "ène s",
+ "èn es",
+ "è nes",
+ "▁Schwe iz",
+ "▁A A",
+ "▁ AA",
+ "ning er",
+ "n inger",
+ "▁b ands",
+ "▁band s",
+ "▁ban ds",
+ "▁t ender",
+ "▁te nder",
+ "▁ten der",
+ "▁tend er",
+ "so m",
+ "s om",
+ "W arning",
+ "▁B ischof",
+ "▁A rc",
+ "▁Ar c",
+ "▁W oman",
+ "▁Wo man",
+ "▁trans mission",
+ "▁transm ission",
+ "ч ни",
+ "is tre",
+ "ist re",
+ "istr e",
+ "i stre",
+ "B Y",
+ "▁S I",
+ "▁ SI",
+ "▁П ар",
+ "▁Па р",
+ "▁} ).",
+ "▁}) .",
+ "▁ }).",
+ "▁present a",
+ "▁pres enta",
+ "▁Re né",
+ "▁Ren é",
+ "▁happ iness",
+ "▁P unk",
+ "col s",
+ "co ls",
+ "c ols",
+ "▁Des de",
+ "рё х",
+ "▁м она",
+ "▁мо на",
+ "▁scr atch",
+ "▁t cp",
+ "▁ tcp",
+ "ête s",
+ "êt es",
+ "ê tes",
+ "it ated",
+ "ita ted",
+ "itat ed",
+ "itate d",
+ "▁dif eren",
+ "▁difer en",
+ "ge h",
+ "g eh",
+ "na hmen",
+ "nah men",
+ "nahme n",
+ "nahm en",
+ "П е",
+ "ck i",
+ "c ki",
+ "▁Te atro",
+ "▁Re member",
+ "▁Rem ember",
+ "▁f right",
+ "▁fr ight",
+ "▁Y am",
+ "▁Ya m",
+ "west ern",
+ "le ted",
+ "let ed",
+ "lete d",
+ "▁в стре",
+ "▁вс тре",
+ "▁telep ülés",
+ "зи н",
+ "з ин",
+ "▁Qu ant",
+ "▁ Quant",
+ "▁su pre",
+ "▁sup re",
+ "áj a",
+ "á ja",
+ "ді я",
+ "д ія",
+ "▁car rera",
+ "▁carre ra",
+ "kre t",
+ "kr et",
+ "k ret",
+ "par a",
+ "pa ra",
+ "p ara",
+ "▁S UM",
+ "▁SU M",
+ "▁ SUM",
+ "▁p it",
+ "▁pi t",
+ "▁ pit",
+ "ź dz",
+ "é o",
+ "ре ння",
+ "рен ня",
+ "▁C hor",
+ "▁Ch or",
+ "▁Cho r",
+ "▁vo ix",
+ "▁exec utive",
+ "▁execut ive",
+ "▁all erdings",
+ "May be",
+ "▁д ень",
+ "▁де нь",
+ "▁f lying",
+ "▁fl ying",
+ "▁fly ing",
+ "▁par liament",
+ "жда н",
+ "ж дан",
+ "▁f ram",
+ "▁fr am",
+ "▁fra m",
+ "▁ fram",
+ "▁жов т",
+ "▁u gly",
+ "▁бу ду",
+ "ig ny",
+ "ign y",
+ "\\| _{",
+ "\\ |_{",
+ "▁b itter",
+ "▁bit ter",
+ "sc e",
+ "s ce",
+ "▁p ole",
+ "▁po le",
+ "▁pol e",
+ "▁ pole",
+ "Ver lag",
+ "▁total ité",
+ "▁found ation",
+ "j t",
+ "▁s lice",
+ "▁sl ice",
+ "▁sli ce",
+ "▁ slice",
+ "if ique",
+ "ifi que",
+ "▁integr ate",
+ "▁integra te",
+ "st rij",
+ "str ij",
+ "▁asym pt",
+ "▁е му",
+ "▁pert urb",
+ "▁F low",
+ "▁Fl ow",
+ "▁Flo w",
+ "▁ Flow",
+ "jb oss",
+ "RI G",
+ "R IG",
+ "▁A less",
+ "▁Al ess",
+ "▁Ale ss",
+ "XX X",
+ "X XX",
+ "▁s umm",
+ "▁su mm",
+ "▁sum m",
+ "sql ite",
+ "▁che er",
+ "pr ob",
+ "pro b",
+ "p rob",
+ "▁G PU",
+ "▁GP U",
+ "zi ł",
+ "z ił",
+ "(* )",
+ "( *)",
+ "▁in duct",
+ "▁ind uct",
+ "▁indu ct",
+ "RA Y",
+ "bl att",
+ "bla tt",
+ "qu esta",
+ "que sta",
+ "quest a",
+ "ques ta",
+ "or u",
+ "o ru",
+ "▁In side",
+ "▁Ins ide",
+ "▁Mc G",
+ "▁N ep",
+ "▁Ne p",
+ "м п",
+ "▁in ve",
+ "▁inv e",
+ "▁An imal",
+ "▁Anim al",
+ "▁s ob",
+ "▁so b",
+ "▁ sob",
+ "ít ott",
+ "loy ment",
+ "▁b und",
+ "▁bu nd",
+ "▁ bund",
+ "St ation",
+ "Stat ion",
+ "▁B EGIN",
+ "▁part iellement",
+ "ig g",
+ "i gg",
+ "est ore",
+ "esto re",
+ "e store",
+ "▁co inc",
+ "▁coin c",
+ "▁Som mer",
+ "▁m d",
+ "▁ md",
+ "▁loc ked",
+ "▁lock ed",
+ "▁ locked",
+ "math char",
+ "ar ma",
+ "arm a",
+ "pe nt",
+ "pen t",
+ "p ent",
+ "ar ium",
+ "ari um",
+ "a rium",
+ "▁e ars",
+ "▁ear s",
+ "▁ ears",
+ "▁S ongs",
+ "▁Son gs",
+ "▁Song s",
+ "▁similar ly",
+ "▁liter ally",
+ "▁literal ly",
+ "▁in ches",
+ "▁inc hes",
+ "▁af fection",
+ "▁aff ection",
+ "▁affect ion",
+ "l p",
+ "▁con cluded",
+ "▁conclude d",
+ "▁му ніципалі",
+ "▁па мя",
+ "est aur",
+ "esta ur",
+ "▁J osh",
+ "▁Jo sh",
+ "▁Jos h",
+ "▁F ritz",
+ "▁Fr itz",
+ "▁Fri tz",
+ "DB C",
+ "D BC",
+ "д ён",
+ "pos a",
+ "po sa",
+ "p osa",
+ "▁gold en",
+ "▁gol den",
+ "▁p c",
+ "▁ pc",
+ "▁com te",
+ "▁Z iel",
+ "▁Zie l",
+ "▁prés ente",
+ "▁présent e",
+ "mar ks",
+ "mark s",
+ "m arks",
+ "ig neur",
+ "ign eur",
+ "igne ur",
+ "▁D rive",
+ "▁Dr ive",
+ "▁neg lect",
+ "▁roz p",
+ "▁F ive",
+ "sp aces",
+ "space s",
+ "s paces",
+ "▁M edi",
+ "▁Me di",
+ "▁Med i",
+ "▁ex isted",
+ "▁exist ed",
+ "▁existe d",
+ "▁by ła",
+ "▁był a",
+ "дж и",
+ "д жи",
+ "▁fr ente",
+ "т ник",
+ "od d",
+ "o dd",
+ "▁answer ing",
+ "bi an",
+ "bia n",
+ "b ian",
+ "▁E ugen",
+ "▁Eu gen",
+ "▁Eug en",
+ "▁Public ations",
+ "▁Pub lications",
+ "▁D ia",
+ "▁Di a",
+ "l á",
+ "▁' _",
+ "▁ '_",
+ "▁rec uper",
+ "ом у",
+ "о му",
+ "▁App end",
+ "▁Ap pend",
+ "▁ Append",
+ "ob ar",
+ "oba r",
+ "o bar",
+ "▁employ ees",
+ "▁employee s",
+ "▁comp ens",
+ "eme tery",
+ "emet ery",
+ "▁э лект",
+ "MO N",
+ "M ON",
+ "ol in",
+ "oli n",
+ "o lin",
+ "▁histor ic",
+ "hi s",
+ "h is",
+ "ą d",
+ "n m",
+ "▁G oth",
+ "▁Go th",
+ "▁Got h",
+ "▁st ress",
+ "▁str ess",
+ "▁stre ss",
+ "▁parte cip",
+ "▁A w",
+ "▁s ar",
+ "▁sa r",
+ "▁h u",
+ "▁ hu",
+ "▁mat plotlib",
+ "▁M yst",
+ "▁My st",
+ "▁Mys t",
+ "() ;`",
+ "(); `",
+ "( );`",
+ "sch ein",
+ "sc hein",
+ "sche in",
+ "Long rightarrow",
+ "▁р я",
+ "▁ ря",
+ "▁Is ra",
+ "[ ^",
+ "no u",
+ "n ou",
+ "▁syn d",
+ "▁sy nd",
+ "work ing",
+ "wor king",
+ "▁N ation",
+ "▁Na tion",
+ "▁Nat ion",
+ "▁P ent",
+ "▁Pe nt",
+ "▁Pen t",
+ "▁k lass",
+ "▁kl ass",
+ "▁klas s",
+ "▁applic able",
+ "▁D iam",
+ "▁Di am",
+ "▁Dia m",
+ "▁bras ile",
+ "▁p ac",
+ "▁pa c",
+ "▁He ight",
+ "▁ Height",
+ "P ut",
+ "▁int ro",
+ "▁intr o",
+ "▁ intro",
+ "▁unus ual",
+ "na s",
+ "n as",
+ "▁Geb äude",
+ "▁be am",
+ "▁R ect",
+ "▁Re ct",
+ "▁Rec t",
+ "▁ Rect",
+ "▁Prim era",
+ "▁Prime ra",
+ "▁h aut",
+ "▁ha ut",
+ "▁t rait",
+ "▁tr ait",
+ "▁tra it",
+ "prü ft",
+ "in ación",
+ "ina ción",
+ "▁configuration s",
+ "▁configur ations",
+ "▁g ilt",
+ "▁gi lt",
+ "▁territ oire",
+ "he z",
+ "h ez",
+ "▁al te",
+ "▁alt e",
+ "rel ative",
+ "Ex cel",
+ "▁W right",
+ "G V",
+ "по ли",
+ "пол и",
+ "Qu ant",
+ "▁ga uge",
+ "▁gau ge",
+ "▁multi ply",
+ "▁multip ly",
+ "AS S",
+ "A SS",
+ "ствен но",
+ "ан у",
+ "а ну",
+ "▁j eden",
+ "▁je den",
+ "▁jed en",
+ "▁liter ary",
+ "▁D ro",
+ "▁Dr o",
+ "▁adv ise",
+ "▁advis e",
+ "it zen",
+ "itz en",
+ "▁dis ag",
+ "web site",
+ "▁д ія",
+ "▁ді я",
+ "▁ дія",
+ "▁ob server",
+ "▁obser ver",
+ "▁observ er",
+ "▁observe r",
+ "▁janu ár",
+ "v ě",
+ "ku p",
+ "k up",
+ "▁S es",
+ "▁Se s",
+ "▁woj ew",
+ "▁st ages",
+ "▁stage s",
+ "▁sta ges",
+ "▁stag es",
+ "▁вре мени",
+ "▁време ни",
+ "łu ż",
+ "но с",
+ "н ос",
+ "Down load",
+ "ip o",
+ "i po",
+ "▁g raf",
+ "▁gr af",
+ "▁gra f",
+ "▁ро бо",
+ "▁Nik ol",
+ "▁Ni kol",
+ "▁f ic",
+ "▁fi c",
+ "▁ fic",
+ "▁jo ining",
+ "▁join ing",
+ "▁divers os",
+ "▁LI KE",
+ "▁F itz",
+ "▁d imin",
+ "▁di min",
+ "▁dim in",
+ "▁dist rib",
+ "Sa m",
+ "S am",
+ "ko z",
+ "k oz",
+ "▁al phabet",
+ "▁alpha bet",
+ "os er",
+ "ose r",
+ "o ser",
+ "OU R",
+ "O UR",
+ "uk a",
+ "u ka",
+ "ка я",
+ "▁ste el",
+ "▁` --",
+ "▁`- -",
+ "▁t ener",
+ "▁te ner",
+ "▁ten er",
+ "mar ker",
+ "mark er",
+ "▁He aven",
+ "new command",
+ "▁prison ers",
+ "▁prisoner s",
+ "▁K night",
+ "▁Kn ight",
+ "▁present s",
+ "▁pres ents",
+ "▁qu esti",
+ "▁quest i",
+ "▁tr ains",
+ "▁tra ins",
+ "▁train s",
+ "op era",
+ "ope ra",
+ "oper a",
+ "▁Li near",
+ "▁Lin ear",
+ "▁Line ar",
+ "▁ Linear",
+ "▁M E",
+ "▁ ME",
+ "▁B uc",
+ "▁Bu c",
+ "Le g",
+ "L eg",
+ "▁ag ua",
+ "▁ agua",
+ "▁Gr iff",
+ "ol g",
+ "o lg",
+ "ds t",
+ "d st",
+ ". \r",
+ "▁person es",
+ "▁pers ones",
+ "▁persone s",
+ "Ma l",
+ "M al",
+ "бе ре",
+ "бер е",
+ "б ере",
+ "fol ge",
+ "folg e",
+ "▁ac ab",
+ "ct u",
+ "c tu",
+ "pt ic",
+ "▁N avigation",
+ "▁ Navigation",
+ "R uss",
+ "га ль",
+ "г аль",
+ "▁F ul",
+ "▁Fu l",
+ "▁ма є",
+ "чна я",
+ "ч ная",
+ "wn er",
+ "w ner",
+ "con tra",
+ "cont ra",
+ "contr a",
+ "▁jou eur",
+ "▁joue ur",
+ "▁J ess",
+ "▁Je ss",
+ "▁Jes s",
+ "▁re new",
+ "▁ren ew",
+ "▁l ap",
+ "▁la p",
+ "▁ lap",
+ "▁cas ting",
+ "▁cast ing",
+ "ga l",
+ "g al",
+ "▁tém atu",
+ "▁на зыва",
+ "за х",
+ "ч не",
+ ")- \\",
+ ") -\\",
+ "▁ча сто",
+ "▁час то",
+ "▁част о",
+ "}$ -",
+ "} $-",
+ "▁l icz",
+ "▁li cz",
+ "▁lic z",
+ "▁e mot",
+ "▁em ot",
+ "ha rm",
+ "har m",
+ "h arm",
+ "▁occasion ally",
+ "▁hor ror",
+ "▁ho rror",
+ "ea st",
+ "e ast",
+ "▁pr inter",
+ "▁print er",
+ "▁prin ter",
+ "ar an",
+ "ara n",
+ "a ran",
+ "▁Miss iss",
+ "fol low",
+ "f ollow",
+ "▁Bar ry",
+ "▁investig ate",
+ "go w",
+ "g ow",
+ "▁Amer icans",
+ "▁American s",
+ "▁America ns",
+ "S ince",
+ "▁від о",
+ "▁ві до",
+ "▁re un",
+ "os ci",
+ "osc i",
+ "o sci",
+ "▁Ch apter",
+ "▁Chap ter",
+ "▁b ay",
+ "▁ba y",
+ "▁ bay",
+ "ро ме",
+ "ром е",
+ "et he",
+ "eth e",
+ "e the",
+ "éd ie",
+ "é die",
+ "com ot",
+ "co mot",
+ "como t",
+ "▁miejs cowo",
+ "▁stud ierte",
+ "▁studi erte",
+ "ou vert",
+ "ouv ert",
+ "ouve rt",
+ "ouver t",
+ "▁к ур",
+ "▁ку р",
+ "▁ кур",
+ "▁DE SC",
+ "▁DES C",
+ "▁touch ed",
+ "▁tou ched",
+ "▁Jer ry",
+ "ue se",
+ "ues e",
+ "u ese",
+ "ли ще",
+ "auth entication",
+ "authentic ation",
+ "▁col le",
+ "▁co lle",
+ "▁coll e",
+ "he art",
+ "▁reg iment",
+ "▁regime nt",
+ "cri bed",
+ "cribe d",
+ "▁Бо ль",
+ "▁про ис",
+ "ce ae",
+ "▁mass es",
+ "▁sc rolling",
+ "▁scroll ing",
+ "us to",
+ "ust o",
+ "u sto",
+ "S W",
+ "ov at",
+ "ova t",
+ "o vat",
+ "▁gr âce",
+ "▁Архи в",
+ "▁Се вер",
+ "av ait",
+ "ava it",
+ "▁Marsh all",
+ "▁Mars hall",
+ "▁Hash Map",
+ "▁ HashMap",
+ "ac on",
+ "aco n",
+ "a con",
+ "ück en",
+ "ücke n",
+ "ü cken",
+ "[] )",
+ "[ ])",
+ "▁ev angel",
+ "et zung",
+ "etz ung",
+ "tt emberg",
+ "st ers",
+ "ste rs",
+ "ster s",
+ "s ters",
+ "T M",
+ "▁ли тера",
+ "qu ot",
+ "Pr ed",
+ "Pre d",
+ "P red",
+ "▁w erk",
+ "▁wer k",
+ "▁ werk",
+ "▁ha ber",
+ "▁hab er",
+ "▁habe r",
+ "la va",
+ "lav a",
+ "l ava",
+ "vo us",
+ "v ous",
+ "▁L ate",
+ "▁La te",
+ "▁Lat e",
+ "cy cle",
+ "cyc le",
+ "c ycle",
+ "ти рова",
+ "▁про ду",
+ "▁прод у",
+ "▁pop ulations",
+ "▁population s",
+ "▁popul ations",
+ "▁Y an",
+ "▁Ya n",
+ "Pre fix",
+ "P refix",
+ "actér istiques",
+ "+ '",
+ "() `](",
+ "()` ](",
+ "▁Л ь",
+ "фи ль",
+ "▁жи зни",
+ "ft p",
+ "f tp",
+ "▁все х",
+ "▁g dzie",
+ "▁v idea",
+ "▁vid ea",
+ "▁vide a",
+ "oa uth",
+ "o auth",
+ "▁p id",
+ "▁pi d",
+ "▁ pid",
+ "ů m",
+ "▁p esso",
+ "▁pes so",
+ "▁track ing",
+ "▁trac king",
+ "iz in",
+ "izi n",
+ "i zin",
+ "▁Mor ris",
+ "щи й",
+ "▁Provin z",
+ "▁M itte",
+ "▁Mit te",
+ "▁Mi tte",
+ "▁Mitt e",
+ "▁artific ial",
+ "bráz ky",
+ "▁до сти",
+ "▁rest ored",
+ "▁restore d",
+ "▁resto red",
+ "▁commun icate",
+ "▁communic ate",
+ "ag it",
+ "agi t",
+ "a git",
+ "Rec ogn",
+ "▁l on",
+ "▁lo n",
+ "▁ lon",
+ "▁за ня",
+ "▁зан я",
+ "▁Arg ument",
+ "▁ Argument",
+ "fl ush",
+ "flu sh",
+ "ма на",
+ "ман а",
+ "м ана",
+ "sec onds",
+ "second s",
+ "U C",
+ "▁R uth",
+ "▁Ru th",
+ "▁t ub",
+ "▁tu b",
+ "▁B ret",
+ "▁Br et",
+ "▁Bre t",
+ "▁P ere",
+ "▁Per e",
+ "▁Pe re",
+ "▁respons ibility",
+ "ńcz y",
+ "ń czy",
+ "▁environment s",
+ "▁environ ments",
+ "ke e",
+ "k ee",
+ "▁g root",
+ "▁gr oot",
+ "▁gro ot",
+ "▁pain ted",
+ "▁paint ed",
+ "▁Éd itions",
+ "cp y",
+ "c py",
+ "ár t",
+ "á rt",
+ "lich keit",
+ "ar da",
+ "ard a",
+ "B atch",
+ "▁Leop old",
+ "re ason",
+ "rea son",
+ "reas on",
+ "n oreferrer",
+ "se ns",
+ "sen s",
+ "s ens",
+ "▁ro cks",
+ "▁rock s",
+ "▁Hit ler",
+ "ла т",
+ "л ат",
+ "▁qu oted",
+ "▁quot ed",
+ "▁quote d",
+ "▁ко лле",
+ "▁у ров",
+ "ba g",
+ "b ag",
+ ".\" )",
+ ". \")",
+ "▁M L",
+ "▁ ML",
+ "▁kom t",
+ "▁ko mt",
+ "▁[ _",
+ "▁ [_",
+ "▁spect ral",
+ "ed o",
+ "e do",
+ "▁in sieme",
+ "▁suffer ing",
+ "▁suff ering",
+ "sl ider",
+ "slide r",
+ "▁Kenn edy",
+ "ol ate",
+ "ola te",
+ "o late",
+ "▁P atri",
+ "▁Pa tri",
+ "▁Pat ri",
+ "зи и",
+ "O H",
+ "▁те а",
+ "▁пра ва",
+ "▁прав а",
+ "ма х",
+ "re write",
+ "rew rite",
+ "r ewrite",
+ "▁Eins atz",
+ "ex ternal",
+ "ext ernal",
+ "hol ds",
+ "hold s",
+ "h olds",
+ "▁P laces",
+ "▁Pl aces",
+ "▁Pla ces",
+ "▁Place s",
+ "at ype",
+ "aty pe",
+ "a type",
+ "▁vul ner",
+ "▁abandon ed",
+ "Or igin",
+ "Ori gin",
+ "▁max imal",
+ "▁maxim al",
+ "AA AA",
+ "▁Base ball",
+ "▁C lose",
+ "▁Cl ose",
+ "▁Clo se",
+ "▁ Close",
+ "▁pa inter",
+ "▁pain ter",
+ "▁paint er",
+ "▁assign ing",
+ "N B",
+ "bl ast",
+ "bla st",
+ "b last",
+ "▁K ünstler",
+ ")] (",
+ ") ](",
+ "fa ch",
+ "fac h",
+ "f ach",
+ "▁Const antin",
+ "▁Constant in",
+ "ok es",
+ "oke s",
+ "o kes",
+ "▁no body",
+ "▁nob ody",
+ "▁subt ract",
+ "▁fos se",
+ "▁foss e",
+ "▁cert ific",
+ "▁m use",
+ "▁mus e",
+ "▁mu se",
+ "/) ,",
+ "/ ),",
+ "▁Pro fil",
+ "▁Prof il",
+ "▁pro xim",
+ "▁Jer usalem",
+ "▁simp licity",
+ "▁simpl icity",
+ "▁w sz",
+ "▁ws z",
+ "NUM BER",
+ "utt avia",
+ "U ITableView",
+ "ich ter",
+ "icht er",
+ "ichte r",
+ "i chter",
+ "жа н",
+ "ж ан",
+ "▁L av",
+ "▁La v",
+ "it chen",
+ "itch en",
+ "▁Ч ем",
+ "▁Че м",
+ "T u",
+ "▁ge om",
+ "▁zv uky",
+ "▁Sur vey",
+ "AN CE",
+ "▁enc rypted",
+ "▁encrypt ed",
+ "pr of",
+ "pro f",
+ "▁d are",
+ "▁da re",
+ "▁dar e",
+ "▁L oren",
+ "▁Lo ren",
+ "▁Lor en",
+ "т в",
+ "▁А лек",
+ "▁Ал ек",
+ "▁comput ers",
+ "▁computer s",
+ "▁compute rs",
+ "▁expect ation",
+ "▁substant ial",
+ "▁Д ми",
+ "▁` {",
+ "▁д ра",
+ "▁др а",
+ "▁ дра",
+ "ub ble",
+ "▁per forms",
+ "▁perform s",
+ "▁Kr ieg",
+ "▁Krie g",
+ "▁in coming",
+ "▁inc oming",
+ "▁Class ification",
+ "Web View",
+ "▁epis odes",
+ "▁episode s",
+ "ap per",
+ "app er",
+ "appe r",
+ "a pper",
+ "äu fig",
+ "▁gi ov",
+ "▁De part",
+ "▁Dep art",
+ "бо ра",
+ "бор а",
+ "ed ly",
+ "os pod",
+ "osp od",
+ "▁p tr",
+ "▁pt r",
+ "▁ ptr",
+ "▁d átum",
+ "▁est imation",
+ "▁estim ation",
+ "ic ole",
+ "ico le",
+ "icol e",
+ "i cole",
+ "▁- ---",
+ "▁-- --",
+ "▁--- -",
+ "▁ ----",
+ "▁prin ces",
+ "▁prince s",
+ "HE AD",
+ "▁diff usion",
+ "▁diffus ion",
+ "▁d rie",
+ "▁dr ie",
+ "▁dri e",
+ "▁A da",
+ "▁Ad a",
+ "ни це",
+ "ниц е",
+ "ng inx",
+ "n ginx",
+ "sh al",
+ "sha l",
+ "s hal",
+ "▁febru ari",
+ "▁T at",
+ "▁Ta t",
+ "lo oking",
+ "look ing",
+ "ku nd",
+ "k und",
+ "▁De an",
+ "m ongodb",
+ "вши х",
+ "в ших",
+ "▁A ur",
+ "▁Au r",
+ "▁Fl ora",
+ "▁Flor a",
+ "▁Flo ra",
+ "▁Stud ios",
+ "▁Studio s",
+ "ци је",
+ "ei l",
+ "e il",
+ "Inst all",
+ "▁f ranch",
+ "▁fr anch",
+ "▁fran ch",
+ "▁franc h",
+ "▁H MS",
+ "▁pract ices",
+ "▁practice s",
+ "le j",
+ "l ej",
+ "da le",
+ "dal e",
+ "d ale",
+ "▁po ste",
+ "▁pos te",
+ "▁post e",
+ "▁H els",
+ "▁He ls",
+ "▁Hel s",
+ "▁reli able",
+ "źdz ier",
+ "▁ver se",
+ "▁vers e",
+ "▁ verse",
+ "er meister",
+ "erme ister",
+ "▁qu it",
+ "▁qui t",
+ "▁q uit",
+ "▁ quit",
+ "ét ico",
+ "il is",
+ "ili s",
+ "i lis",
+ "ed or",
+ "edo r",
+ "e dor",
+ "▁Cult ural",
+ "▁Cultura l",
+ "дж е",
+ "д же",
+ "▁li ked",
+ "▁like d",
+ "▁lik ed",
+ "▁m ongodb",
+ "▁mongo db",
+ "▁ mongodb",
+ "▁Broad way",
+ "▁I R",
+ "▁ IR",
+ "es zt",
+ "esz t",
+ "ho v",
+ "h ov",
+ "▁m íst",
+ "▁mí st",
+ "re iche",
+ "reich e",
+ "rei che",
+ "▁k B",
+ "ст ом",
+ "сто м",
+ "с том",
+ "▁SQL ite",
+ "▁tor neo",
+ "\\ .",
+ "Or d",
+ "O rd",
+ "▁Admin istration",
+ "▁Administr ation",
+ "▁з да",
+ "▁ зда",
+ "▁H inter",
+ "▁Hin ter",
+ "▁V ia",
+ "▁Vi a",
+ "Dec imal",
+ "or ious",
+ "ori ous",
+ "orio us",
+ "▁nécess aire",
+ "w x",
+ "▁t ej",
+ "▁te j",
+ "▁t ema",
+ "▁te ma",
+ "▁tem a",
+ "O brázky",
+ "ри те",
+ "рит е",
+ "▁build s",
+ "▁l aten",
+ "▁la ten",
+ "▁lat en",
+ "▁late n",
+ "▁г г",
+ "Vis ibility",
+ "lä u",
+ "l äu",
+ "▁se chs",
+ "▁sec hs",
+ "▁лу ч",
+ "ce ra",
+ "cer a",
+ "c era",
+ "Co uld",
+ "C ould",
+ "▁tra ject",
+ "}} ^{",
+ "}}^ {",
+ "} }^{",
+ "▁Jap on",
+ "▁Ja pon",
+ "an other",
+ "ano ther",
+ "I K",
+ "▁belong ing",
+ "▁fac ilities",
+ "▁facil ities",
+ "▁D aily",
+ "▁Da ily",
+ "▁de ce",
+ "▁dec e",
+ "int ro",
+ "▁слу ча",
+ "Name space",
+ "Names pace",
+ "▁B ak",
+ "▁Ba k",
+ "loc ale",
+ "local e",
+ "U G",
+ "=$ {",
+ "= ${",
+ "▁comp añ",
+ "ją c",
+ "j ąc",
+ "▁ar ithmetic",
+ "fo rum",
+ "for um",
+ "f orum",
+ "▁por ta",
+ "▁port a",
+ "on k",
+ "▁g ender",
+ "▁ge nder",
+ "▁gen der",
+ "▁ gender",
+ "▁expect s",
+ "б ка",
+ "▁n ak",
+ "▁na k",
+ "▁ nak",
+ "▁G race",
+ "▁Gr ace",
+ "▁Gra ce",
+ "▁st ro",
+ "▁str o",
+ "ivid ual",
+ "▁C OM",
+ "▁CO M",
+ "▁ COM",
+ "▁F arm",
+ "▁Fa rm",
+ "▁Far m",
+ "▁c anton",
+ "▁can ton",
+ "▁cant on",
+ "то му",
+ "том у",
+ "т ому",
+ "java x",
+ "jav ax",
+ "се й",
+ "с ей",
+ "▁brief ly",
+ "Fa ce",
+ "F ace",
+ "rot ate",
+ "const ant",
+ "▁g allery",
+ "▁gall ery",
+ "ast ro",
+ "astr o",
+ "all ery",
+ "alle ry",
+ "aller y",
+ "▁D J",
+ "char ge",
+ "charg e",
+ "ходи ть",
+ "ходит ь",
+ "C ent",
+ "\\\" ,",
+ "\\ \",",
+ "▁d onna",
+ "▁don na",
+ "▁donn a",
+ "ar ca",
+ "arc a",
+ "la de",
+ "lad e",
+ "l ade",
+ "zi n",
+ "z in",
+ "▁N ed",
+ "▁Ne d",
+ "▁host ing",
+ "▁hos ting",
+ "id or",
+ "ido r",
+ "i dor",
+ "it ative",
+ "itat ive",
+ "ig s",
+ "i gs",
+ "▁п ря",
+ "▁пр я",
+ "▁t icket",
+ "▁tick et",
+ "▁ti cket",
+ "▁stud ying",
+ "▁study ing",
+ "▁des igner",
+ "▁design er",
+ "lap sed",
+ "lapse d",
+ "laps ed",
+ "l apsed",
+ "▁la at",
+ "▁d ix",
+ "▁di x",
+ "▁integr ated",
+ "▁integrate d",
+ "▁integra ted",
+ "▁in formed",
+ "▁inform ed",
+ "▁be have",
+ "▁beh ave",
+ "▁behav e",
+ "▁la bour",
+ "▁lab our",
+ "est ellt",
+ "cal endar",
+ "▁k illing",
+ "▁kil ling",
+ "▁kill ing",
+ "▁tw itter",
+ "▁ twitter",
+ "ia e",
+ "i ae",
+ "▁histor ique",
+ "DE FAULT",
+ "ia ła",
+ "iał a",
+ "i ała",
+ "▁theoret ical",
+ "▁un ders",
+ "▁und ers",
+ "▁under s",
+ "ля ет",
+ "at an",
+ "ata n",
+ "a tan",
+ "▁s urname",
+ "▁sur name",
+ "▁inter cept",
+ "гла сно",
+ "▁општи ни",
+ "▁t ired",
+ "▁tir ed",
+ "▁ti red",
+ "▁B eth",
+ "▁Be th",
+ "▁Bet h",
+ "▁ад министратив",
+ "L i",
+ "▁Т ур",
+ "▁Ту р",
+ "▁Sc anner",
+ "▁S tern",
+ "▁St ern",
+ "▁Ste rn",
+ "▁Ster n",
+ "▁вме сте",
+ "▁report ing",
+ "▁s ull",
+ "▁su ll",
+ "▁sul l",
+ "ци ей",
+ "ber ts",
+ "bert s",
+ "og onal",
+ "ogo nal",
+ "ő k",
+ "▁i psum",
+ "▁ip sum",
+ "▁seu lement",
+ "▁seul ement",
+ "▁seule ment",
+ "▁Se iten",
+ "▁Seit en",
+ "▁Seite n",
+ "word press",
+ "▁fe aturing",
+ "ist ischen",
+ "isti schen",
+ "istische n",
+ "ju b",
+ "j ub",
+ "▁é tr",
+ "▁ét r",
+ "▁ étr",
+ "▁t ea",
+ "▁te a",
+ "▁adapt ed",
+ "▁sc ales",
+ "▁scale s",
+ "▁scal es",
+ "▁n an",
+ "▁na n",
+ "▁ nan",
+ "get Value",
+ "▁Bl ues",
+ "▁Blue s",
+ "ac les",
+ "acle s",
+ "a cles",
+ "▁st ati",
+ "▁stat i",
+ "▁sta ti",
+ "▁ent itled",
+ "▁R alph",
+ "gra vity",
+ "▁entre pr",
+ "któ ber",
+ "li mat",
+ "lim at",
+ "l imat",
+ "li s",
+ "l is",
+ "De mo",
+ "D emo",
+ "re lation",
+ "rel ation",
+ "▁n ep",
+ "▁ne p",
+ "pro wad",
+ "it is",
+ "iti s",
+ "i tis",
+ "▁p up",
+ "▁pu p",
+ "neh mer",
+ "nehm er",
+ "▁disapp oint",
+ "▁et was",
+ "▁etwa s",
+ "an non",
+ "ann on",
+ "anno n",
+ "▁appro ved",
+ "▁cl ever",
+ "▁cle ver",
+ "Lo ading",
+ "Load ing",
+ "▁ver z",
+ "▁ve rz",
+ "res se",
+ "ress e",
+ "r esse",
+ "▁insp ir",
+ "▁sam pling",
+ "▁B ek",
+ "▁Be k",
+ "}) $.",
+ "})$ .",
+ "} )$.",
+ "▁г рома",
+ "▁spe cie",
+ "▁spec ie",
+ "▁re pub",
+ "▁rep ub",
+ "▁lo ader",
+ "▁load er",
+ "▁ loader",
+ "▁e rf",
+ "▁er f",
+ "▁should er",
+ "ra is",
+ "rai s",
+ "r ais",
+ "▁ма те",
+ "▁мат е",
+ "▁Mon th",
+ "▁Mont h",
+ "▁Mo nth",
+ "▁ Month",
+ "Sc ene",
+ "▁block ing",
+ "▁o cean",
+ "ge ben",
+ "geb en",
+ "g eben",
+ "▁Kil ometer",
+ "▁b edeut",
+ "▁M ix",
+ "▁Mi x",
+ "fm t",
+ "f mt",
+ "▁Nor weg",
+ "▁ID s",
+ "par allel",
+ "▁ant icip",
+ "▁anti cip",
+ "▁re vis",
+ "▁rev is",
+ "ха н",
+ "х ан",
+ "▁с вет",
+ "▁све т",
+ "CA SE",
+ "C ASE",
+ "▁f ührt",
+ "▁führ t",
+ "▁ führt",
+ "▁at omic",
+ "▁atom ic",
+ "▁ atomic",
+ "▁dark ness",
+ "▁Fußball spieler",
+ "▁Ж и",
+ "quis ition",
+ "▁S ieg",
+ "▁Sie g",
+ "▁Si eg",
+ "C irc",
+ "▁c ientí",
+ "ne lle",
+ "nel le",
+ "nell e",
+ "n elle",
+ "SH A",
+ "S HA",
+ "▁u rb",
+ "▁ur b",
+ "▁ urb",
+ "▁k si",
+ "leq slant",
+ "▁ф рон",
+ "▁de fect",
+ "▁def ect",
+ "▁defe ct",
+ "▁r á",
+ "▁ rá",
+ "▁strong er",
+ "▁p ł",
+ "▁commun ities",
+ "ни на",
+ "нин а",
+ "en as",
+ "ena s",
+ "e nas",
+ "ienne nt",
+ "ienn ent",
+ "▁safe ly",
+ "▁saf ely",
+ "▁т я",
+ "▁ тя",
+ "▁ben chmark",
+ "▁Bra un",
+ "method s",
+ "arg ument",
+ "vo s",
+ "v os",
+ "ob ox",
+ "o box",
+ "ро ви",
+ "ров и",
+ "р ови",
+ "▁recher che",
+ "m n",
+ "▁br ings",
+ "▁bring s",
+ "m achine",
+ "CE SS",
+ "CES S",
+ "host s",
+ "hos ts",
+ "▁N Y",
+ "Aut ow",
+ "Auto w",
+ "▁сов ремен",
+ "▁G ary",
+ "▁Gar y",
+ "▁Ga ry",
+ "▁s ensor",
+ "▁sens or",
+ "▁document ed",
+ "▁pr endre",
+ "▁prend re",
+ "▁pe er",
+ "en ix",
+ "eni x",
+ "ha i",
+ "h ai",
+ "ar be",
+ "цен т",
+ "ц ент",
+ "_ (",
+ "▁U RI",
+ "▁ URI",
+ "ев а",
+ "е ва",
+ "▁Re gie",
+ "▁Reg ie",
+ "▁Mon ument",
+ "▁onder werp",
+ "B ag",
+ "ti t",
+ "t it",
+ "▁st ir",
+ "▁n erv",
+ "▁ne rv",
+ "▁ner v",
+ "стор ія",
+ "▁s ov",
+ "▁so v",
+ "▁writ ers",
+ "▁write rs",
+ "▁writer s",
+ "▁sort s",
+ "▁sor ts",
+ "ab solute",
+ "▁difficult ies",
+ "▁par lament",
+ "▁parl ament",
+ "▁IE numerable",
+ "▁dis sol",
+ "▁diss ol",
+ "▁CH ECK",
+ "ar ina",
+ "ari na",
+ "arin a",
+ "in burgh",
+ "D M",
+ "▁e ind",
+ "▁ein d",
+ "▁bud get",
+ "▁cert ains",
+ "▁certain s",
+ "▁för sta",
+ "▁först a",
+ "an ja",
+ "a nja",
+ "▁го дов",
+ "▁год ов",
+ "▁т ек",
+ "▁те к",
+ "▁ тек",
+ "▁D uch",
+ "▁Du ch",
+ "▁Duc h",
+ "gu i",
+ "g ui",
+ "▁Te ams",
+ "▁Team s",
+ "▁мно ги",
+ "Mar ie",
+ "Ma rie",
+ "M arie",
+ "In tegr",
+ "Int egr",
+ "Thread Pool",
+ "ru st",
+ "rus t",
+ "r ust",
+ "í k",
+ "% \"",
+ "en f",
+ "sp l",
+ "s pl",
+ "▁be gun",
+ "▁beg un",
+ "lo u",
+ "l ou",
+ "▁Rewrite Rule",
+ "tu ple",
+ "ane ous",
+ "▁mar ine",
+ "▁mari ne",
+ "▁ marine",
+ "at tan",
+ "att an",
+ "atta n",
+ "ik al",
+ "ika l",
+ "i kal",
+ "▁gradu ated",
+ "il lé",
+ "ill é",
+ "▁про ве",
+ "▁пров е",
+ "▁пр ове",
+ "▁Р оз",
+ "▁Ро з",
+ "', \r",
+ "' ,\r",
+ "▁Pf arr",
+ "▁n ivel",
+ "▁ni vel",
+ "▁пра цю",
+ "mus ic",
+ "▁set Timeout",
+ "ER S",
+ "E RS",
+ "▁E rik",
+ "▁Er ik",
+ "pi t",
+ "p it",
+ "▁Х ро",
+ "▁p ił",
+ "▁pi ł",
+ "▁p eri",
+ "▁per i",
+ "▁pe ri",
+ "до к",
+ "д ок",
+ "us zt",
+ "usz t",
+ "▁B ear",
+ "▁Be ar",
+ "Class Name",
+ "▁Par lament",
+ "▁a ix",
+ "▁ai x",
+ "▁inv ited",
+ "▁P ATH",
+ "▁PA TH",
+ "▁ PATH",
+ "xt er",
+ "x ter",
+ "▁R ace",
+ "▁Ra ce",
+ "▁h echo",
+ "▁he cho",
+ "▁T ower",
+ "▁To wer",
+ "▁Tow er",
+ "▁u tf",
+ "▁ut f",
+ "▁ utf",
+ "act ly",
+ "▁бу де",
+ "▁ang les",
+ "▁angle s",
+ "▁ angles",
+ "ня я",
+ "ouv elles",
+ "ouve lles",
+ "ouvel les",
+ "ouvelle s",
+ "▁cl imate",
+ "▁cli mate",
+ "▁clim ate",
+ "▁sing ing",
+ "▁sin ging",
+ "▁navig ate",
+ ">' ;",
+ "> ';",
+ "ad ows",
+ "ado ws",
+ "adow s",
+ "▁l eta",
+ "▁le ta",
+ "▁let a",
+ "▁S itz",
+ "▁Si tz",
+ "▁Sit z",
+ "▁part itions",
+ "▁partition s",
+ "▁d ock",
+ "▁do ck",
+ "▁doc k",
+ "▁ż y",
+ "▁ ży",
+ "▁alloc ate",
+ "▁benef its",
+ "▁benefit s",
+ "▁n ieder",
+ "▁nie der",
+ "▁ni eder",
+ "xp ath",
+ "x path",
+ "me ck",
+ "äl le",
+ "äll e",
+ "ä lle",
+ "▁cou pling",
+ "▁coup ling",
+ "жи л",
+ "ж ил",
+ "For Key",
+ "ar gent",
+ "arg ent",
+ "cl ou",
+ "clo u",
+ "c lou",
+ "▁instru ments",
+ "▁instrument s",
+ "▁ent hus",
+ "▁m ég",
+ "▁mé g",
+ "▁Па в",
+ "▁R ach",
+ "▁Ra ch",
+ "-- ---",
+ "---- -",
+ "--- --",
+ "- ----",
+ "▁API s",
+ "▁AP Is",
+ "▁V ier",
+ "▁Vi er",
+ "▁Vie r",
+ "C md",
+ "it ore",
+ "ito re",
+ "itor e",
+ "▁C uba",
+ "▁Cu ba",
+ "▁Cub a",
+ "▁dátum mal",
+ "▁embed ding",
+ "std io",
+ "▁Gil bert",
+ "▁ge prüft",
+ "▁st ating",
+ "▁stat ing",
+ "▁sta ting",
+ "▁stati ng",
+ "▁trigger s",
+ "▁trig gers",
+ "+ =",
+ "▁spé cial",
+ "▁del iber",
+ "▁deli ber",
+ "ми н",
+ "м ин",
+ "Pro du",
+ "Pr odu",
+ "P rodu",
+ "▁St ati",
+ "▁Stat i",
+ "▁Sta ti",
+ "▁z us",
+ "▁zu s",
+ "kt ionen",
+ "ktion en",
+ "Dispatch er",
+ "id al",
+ "ida l",
+ "i dal",
+ "▁L P",
+ "▁ LP",
+ "op tera",
+ "opt era",
+ "opter a",
+ "▁e star",
+ "▁est ar",
+ "▁es tar",
+ "▁esta r",
+ "▁зна чи",
+ "с мо",
+ "ous es",
+ "ouse s",
+ "o uses",
+ "eng ono",
+ "engo no",
+ "▁W PF",
+ "pub lish",
+ "▁t eor",
+ "▁te or",
+ "el if",
+ "eli f",
+ "▁e rg",
+ "▁er g",
+ "▁ erg",
+ "▁separ ation",
+ "Pa n",
+ "P an",
+ "▁Or chestra",
+ "Pe ter",
+ "P eter",
+ "bound s",
+ "b ounds",
+ "▁Shakespe are",
+ "▁cant ante",
+ "▁d emi",
+ "▁de mi",
+ "▁dem i",
+ "▁Pop ular",
+ "ф р",
+ "ar ring",
+ "arr ing",
+ "ци н",
+ "ц ин",
+ "▁И с",
+ "vo n",
+ "v on",
+ "▁subst itution",
+ "▁lí nea",
+ "\\}$ .",
+ "\\} $.",
+ "\\ }$.",
+ "com o",
+ "co mo",
+ "c omo",
+ "▁ва ж",
+ "wa gen",
+ "w agen",
+ "▁rare ly",
+ "▁period s",
+ "▁peri ods",
+ "gl ob",
+ "g lob",
+ "▁F rid",
+ "▁Fr id",
+ "▁Fri d",
+ "▁T err",
+ "▁Te rr",
+ "▁Ter r",
+ "▁Re lease",
+ "▁ Release",
+ "Brain z",
+ "▁гра ф",
+ "▁ граф",
+ "DI S",
+ "D IS",
+ "compat ible",
+ "▁po č",
+ "LI N",
+ "L IN",
+ "▁K ällor",
+ "▁A rizona",
+ "pp y",
+ "p py",
+ "Se q",
+ "S eq",
+ "▁A in",
+ "▁T ourn",
+ "▁To urn",
+ "▁Tour n",
+ "br ow",
+ "bro w",
+ "b row",
+ "▁K ör",
+ "▁Kö r",
+ "▁a sh",
+ "▁as h",
+ "▁ ash",
+ "ogene ous",
+ "▁dia lect",
+ "▁насе ља",
+ "mysql i",
+ "mysq li",
+ "цо в",
+ "ц ов",
+ "▁f lor",
+ "▁fl or",
+ "▁flo r",
+ "▁ф ло",
+ "IA B",
+ "I AB",
+ "▁With in",
+ "▁Wit hin",
+ "^ (",
+ "▁b ois",
+ "▁bo is",
+ "▁t ank",
+ "▁tan k",
+ "▁aff ili",
+ "▁h ijo",
+ "▁hij o",
+ "▁hi jo",
+ "▁K ate",
+ "▁Kat e",
+ "▁Ka te",
+ "▁Ver l",
+ "▁Ve rl",
+ "▁M iami",
+ "▁Mi ami",
+ "▁type script",
+ "▁types cript",
+ "њ у",
+ "▁V ern",
+ "▁Ver n",
+ "▁Ve rn",
+ "▁ви со",
+ "ie mann",
+ "iem ann",
+ "i emann",
+ "▁co verage",
+ "▁cover age",
+ "br ie",
+ "b rie",
+ "▁Start ing",
+ "▁Star ting",
+ "num py",
+ "▁J enkins",
+ "▁Jen kins",
+ "▁k ét",
+ "▁ké t",
+ "▁g rup",
+ "▁gr up",
+ "▁gru p",
+ "▁S cient",
+ "▁Sc ient",
+ "▁Sci ent",
+ "▁inter rupt",
+ "▁b lob",
+ "▁bl ob",
+ "▁blo b",
+ "▁ blob",
+ "ug el",
+ "uge l",
+ "u gel",
+ "▁Or th",
+ "▁Ort h",
+ "ab ama",
+ "aba ma",
+ "▁B apt",
+ "▁Ba pt",
+ "ow nik",
+ "own ik",
+ "▁бы ть",
+ "▁Jul ius",
+ "▁Ju lius",
+ "▁Juli us",
+ "▁П рез",
+ "▁Пре з",
+ "▁subst itute",
+ "support ed",
+ "supp orted",
+ "ch y",
+ "c hy",
+ "egy zetek",
+ "▁Per formance",
+ "▁Perform ance",
+ "less ly",
+ "Con structor",
+ "▁ext ending",
+ "▁extend ing",
+ "▁Mus lim",
+ "Over flow",
+ "▁J enn",
+ "▁Je nn",
+ "▁Jen n",
+ "▁produ z",
+ "▁prod uz",
+ "мі ї",
+ "м ії",
+ "▁país es",
+ "▁e ux",
+ "▁eu x",
+ "▁f ate",
+ "▁fa te",
+ "▁fat e",
+ "ol oge",
+ "olog e",
+ "olo ge",
+ "у к",
+ "▁wo bei",
+ "▁wob ei",
+ "▁S achsen",
+ "▁Sach sen",
+ "▁са йт",
+ "▁сай т",
+ "Mod els",
+ "Model s",
+ "Mode ls",
+ "▁F ast",
+ "▁Fa st",
+ "bes ondere",
+ "▁F R",
+ "▁ FR",
+ "▁a con",
+ "▁ac on",
+ "▁ acon",
+ "▁Den kmal",
+ "▁an ch",
+ "▁anc h",
+ "▁ anch",
+ "▁públic o",
+ "▁T as",
+ "▁Ta s",
+ "▁c and",
+ "▁can d",
+ "▁ca nd",
+ "▁pa ździer",
+ "▁М он",
+ "▁Мо н",
+ "▁vers us",
+ "ru t",
+ "r ut",
+ "G T",
+ "▁insert ing",
+ "▁inser ting",
+ "▁can ad",
+ "▁ca nad",
+ "є м",
+ "▁M etro",
+ "▁Met ro",
+ "▁Herz og",
+ "Ign ore",
+ "▁decre ase",
+ "▁п ун",
+ "▁пу н",
+ "▁F ischer",
+ "▁M all",
+ "▁Ma ll",
+ "▁Mal l",
+ "▁n örd",
+ "io stream",
+ "i ostream",
+ "▁Lux emb",
+ "pay load",
+ "▁Ze itung",
+ "▁Zeit ung",
+ "▁mod ifying",
+ "▁modify ing",
+ "▁C her",
+ "▁Ch er",
+ "▁Che r",
+ "▁Lu ci",
+ "▁Luc i",
+ "n x",
+ "▁lo ose",
+ "▁top ics",
+ "▁topic s",
+ "▁var ied",
+ "▁vari ed",
+ "▁va ried",
+ "▁p g",
+ "▁ pg",
+ "aj es",
+ "aje s",
+ "a jes",
+ "um m",
+ "u mm",
+ "View s",
+ "▁B eau",
+ "▁Be au",
+ "MA P",
+ "M AP",
+ "ip eline",
+ "ipe line",
+ "▁Inter est",
+ "ar ith",
+ "ari th",
+ "▁seg ún",
+ "▁Geme ins",
+ "▁Att ribute",
+ "▁ Attribute",
+ "comm unity",
+ "▁цент р",
+ "▁kil ometer",
+ "▁kilomet er",
+ "▁kilom eter",
+ "▁é conom",
+ "▁éc onom",
+ "lar ation",
+ "▁к ъ",
+ "▁car riage",
+ "▁carri age",
+ "▁L ane",
+ "▁La ne",
+ "▁Lan e",
+ "▁не об",
+ "ku r",
+ "k ur",
+ "▁A F",
+ "▁ AF",
+ "IN TER",
+ "INT ER",
+ ")) $",
+ ") )$",
+ "▁be ide",
+ "▁bei de",
+ "dest ination",
+ "▁font s",
+ "▁fon ts",
+ "▁ fonts",
+ "append Child",
+ "▁M AR",
+ "▁MA R",
+ "▁g ay",
+ "▁ga y",
+ "mi l",
+ "m il",
+ "le sh",
+ "les h",
+ "l esh",
+ "è t",
+ "▁W ang",
+ "▁Wa ng",
+ "▁Y ears",
+ "▁Year s",
+ "▁Ye ars",
+ "▁S ymbol",
+ "▁Sym bol",
+ "▁ Symbol",
+ "Li ve",
+ "L ive",
+ "qu ency",
+ "▁U sers",
+ "▁Use rs",
+ "▁User s",
+ "▁Us ers",
+ "▁ Users",
+ "▁Un icode",
+ "▁S au",
+ "▁Sa u",
+ "▁t ons",
+ "▁to ns",
+ "▁ton s",
+ "▁ tons",
+ "▁Н і",
+ "▁кра ї",
+ "▁ краї",
+ "AX I",
+ "▁P ick",
+ "▁Pi ck",
+ "▁Pic k",
+ "A I",
+ "▁h ath",
+ "▁ha th",
+ "▁hat h",
+ "▁a inda",
+ "▁ain da",
+ "▁p apa",
+ "▁pa pa",
+ "▁pap a",
+ "▁C enso",
+ "▁B ald",
+ "▁Ba ld",
+ "▁Bal d",
+ "▁Насе ље",
+ "▁sim ulations",
+ "▁simulation s",
+ "▁j aren",
+ "▁ja ren",
+ "▁jar en",
+ "▁inher ited",
+ "▁inherit ed",
+ "▁то й",
+ "▁ той",
+ "▁fe els",
+ "▁feel s",
+ "▁fee ls",
+ "ress ion",
+ "r ession",
+ "▁o któber",
+ "bi d",
+ "b id",
+ "ás i",
+ "á si",
+ "▁m uss",
+ "▁mus s",
+ "▁mu ss",
+ "vent ory",
+ "▁me ist",
+ "▁b ore",
+ "▁bo re",
+ "▁bor e",
+ "▁sl ider",
+ "▁slide r",
+ "▁sli der",
+ "▁ slider",
+ "де ли",
+ "\\ ;",
+ "▁extra cted",
+ "▁extract ed",
+ "ку р",
+ "к ур",
+ "Ed ge",
+ "▁per f",
+ "▁pe rf",
+ "▁Brig ade",
+ "▁гра д",
+ "▁ град",
+ "ie nie",
+ "ien ie",
+ "i enie",
+ "▁N orden",
+ "▁Nor den",
+ "▁Nord en",
+ "▁c ancer",
+ "▁can cer",
+ "\" /",
+ "C ur",
+ "▁С ере",
+ "▁Се ре",
+ "▁Сер е",
+ "▁liqu id",
+ "str ucture",
+ "struct ure",
+ "▁cho osing",
+ "▁Per l",
+ "▁Pe rl",
+ "Si de",
+ "S ide",
+ "ü s",
+ "ри тор",
+ "рито р",
+ "рит ор",
+ "▁k ost",
+ "▁ko st",
+ "▁pa ckets",
+ "▁pack ets",
+ "▁packet s",
+ "▁кото рого",
+ "▁Com un",
+ "▁Co mun",
+ "▁f ingers",
+ "▁fin gers",
+ "▁finger s",
+ "ográ fica",
+ "> :",
+ "▁champion nat",
+ "▁bl ieb",
+ "▁S itu",
+ "▁Si tu",
+ "▁Sit u",
+ "▁su ic",
+ "an dis",
+ "and is",
+ "Fr e",
+ "F re",
+ "▁C onc",
+ "▁Con c",
+ "▁Co nc",
+ "▁re public",
+ "▁rep ublic",
+ "▁repub lic",
+ "▁ar med",
+ "▁arm ed",
+ "▁h ell",
+ "▁he ll",
+ "▁hel l",
+ "▁ hell",
+ "▁h ög",
+ "▁hö g",
+ "rag ma",
+ "▁en se",
+ "▁ens e",
+ "▁ ense",
+ "▁ac res",
+ "▁В ід",
+ "▁Ві д",
+ "▁Re form",
+ "▁Ref orm",
+ "Main Activity",
+ "ke eper",
+ "keep er",
+ "kee per",
+ "er b",
+ "e rb",
+ "▁mon aster",
+ "sub subsection",
+ "▁Ди в",
+ "▁cre ature",
+ "▁indic ating",
+ "▁url s",
+ "▁ur ls",
+ "▁ urls",
+ "▁k ein",
+ "▁ke in",
+ "об раз",
+ "обра з",
+ "pi ck",
+ "pic k",
+ "p ick",
+ "▁Ad mir",
+ "▁old est",
+ "▁ol dest",
+ "▁m uz",
+ "▁mu z",
+ "▁contra diction",
+ "▁contrad iction",
+ "▁contradict ion",
+ "▁prob abil",
+ "illi ant",
+ "▁p av",
+ "▁pa v",
+ "▁pa pel",
+ "▁pap el",
+ "ub s",
+ "u bs",
+ "▁ж ена",
+ "▁же на",
+ "▁жен а",
+ "▁ жена",
+ "AM L",
+ "A ML",
+ "▁re cip",
+ "▁rec ip",
+ "▁reci p",
+ "▁C OL",
+ "▁CO L",
+ "▁ COL",
+ "ad ded",
+ "add ed",
+ "▁cl ue",
+ "▁Uk raine",
+ "▁Ukrain e",
+ "▁jel ent",
+ "че нь",
+ "чен ь",
+ "ч ень",
+ "▁mathemat ics",
+ "Ac cept",
+ "▁с от",
+ "▁со т",
+ "▁се вер",
+ "▁isol ated",
+ "▁по я",
+ "w ür",
+ "Ro uter",
+ "Route r",
+ "Rout er",
+ "R outer",
+ "CA T",
+ "C AT",
+ "rg b",
+ "r gb",
+ "▁L ov",
+ "▁Lo v",
+ "mu table",
+ "mut able",
+ "m utable",
+ "▁W es",
+ "▁We s",
+ "▁Ital ien",
+ "Dra g",
+ "Dr ag",
+ "D rag",
+ "en ium",
+ "eni um",
+ "at ting",
+ "att ing",
+ "atti ng",
+ "tc p",
+ "t cp",
+ "▁erfolg te",
+ "▁Be it",
+ "▁Bei t",
+ "га то",
+ "▁System s",
+ "▁Syst ems",
+ "▁re serve",
+ "▁res erve",
+ "er ee",
+ "ere e",
+ "e ree",
+ "▁Па ри",
+ "▁Пар и",
+ "▁з али",
+ "▁за ли",
+ "▁re nt",
+ "▁r ent",
+ "▁ren t",
+ "▁ rent",
+ "▁s unt",
+ "▁su nt",
+ "▁sun t",
+ "▁G irls",
+ "▁Girl s",
+ "▁Gir ls",
+ "▁Er nest",
+ "▁Ern est",
+ "▁f its",
+ "▁fi ts",
+ "▁fit s",
+ "▁op pon",
+ "▁opp on",
+ "▁живе ло",
+ "▁av aient",
+ "▁Flor ence",
+ "▁Flo rence",
+ "▁чи сле",
+ "▁eng ines",
+ "▁engine s",
+ "D ynamic",
+ "▁stycz nia",
+ "▁b ias",
+ "▁bi as",
+ "▁Ex change",
+ "ди й",
+ "▁histor iques",
+ "▁historique s",
+ "▁H ä",
+ "ho d",
+ "h od",
+ "▁w ł",
+ "sch ap",
+ "▁l ac",
+ "▁la c",
+ "▁ lac",
+ "▁F oi",
+ "▁Fo i",
+ "▁d well",
+ "▁dw ell",
+ "▁Unter nehmen",
+ "UR N",
+ "▁kilomet res",
+ "▁Одна ко",
+ "к ли",
+ "▁S ri",
+ "▁Sr i",
+ "Gr oups",
+ "Group s",
+ "min d",
+ "mi nd",
+ "m ind",
+ "os lov",
+ "fer n",
+ "fe rn",
+ "f ern",
+ "eg u",
+ "e gu",
+ "abel ed",
+ "abe led",
+ "F iddle",
+ "▁Cent ury",
+ "/ -",
+ "▁J egyzetek",
+ "He n",
+ "H en",
+ "ens emble",
+ "▁G ut",
+ "▁Gu t",
+ "_{ {\\",
+ "_ {{\\",
+ "▁ran king",
+ "▁rank ing",
+ "+ $",
+ "ал а",
+ "а ла",
+ "▁# {",
+ "▁ #{",
+ "im ientos",
+ "imiento s",
+ "ach im",
+ "ac him",
+ "achi m",
+ "ri des",
+ "ride s",
+ "rid es",
+ "r ides",
+ "▁K laus",
+ "▁Kl aus",
+ "▁int end",
+ "▁inte nd",
+ "▁inten d",
+ "▁Kent ucky",
+ "ci pe",
+ "cip e",
+ "c ipe",
+ "▁D ienst",
+ "▁Di enst",
+ "▁situ ated",
+ "▁pó ź",
+ "▁s crit",
+ "▁sc rit",
+ "▁scr it",
+ "▁scri t",
+ "cl ip",
+ "cli p",
+ "c lip",
+ "не т",
+ "н ет",
+ "ta bles",
+ "table s",
+ "tab les",
+ "t ables",
+ "▁N ied",
+ "▁Ni ed",
+ "▁Nie d",
+ "▁Mc K",
+ "▁pow st",
+ "▁kun nen",
+ "▁Ev ans",
+ "▁Eva ns",
+ "ж ды",
+ "ва ть",
+ "ват ь",
+ "uch ar",
+ "uc har",
+ "ucha r",
+ "u char",
+ "▁res idents",
+ "▁resid ents",
+ "▁resident s",
+ "ia k",
+ "i ak",
+ "▁Re sol",
+ "▁Res ol",
+ "▁ Resol",
+ "▁ve ces",
+ "▁vec es",
+ "▁satisf ying",
+ "▁satisfy ing",
+ "IN F",
+ "I NF",
+ "▁с ин",
+ "▁си н",
+ "▁cross ing",
+ "ib en",
+ "ibe n",
+ "i ben",
+ "▁ши ро",
+ "pt o",
+ "p to",
+ "IL L",
+ "I LL",
+ "▁ро ль",
+ "▁a ktiv",
+ "▁akt iv",
+ "▁обра щения",
+ "Wik ispecies",
+ "▁Hö he",
+ "cr o",
+ "c ro",
+ "══ ══",
+ "al tra",
+ "alt ra",
+ "▁FI LE",
+ "▁ FILE",
+ "▁u ps",
+ "▁up s",
+ "▁ ups",
+ "▁al location",
+ "▁all ocation",
+ "▁alloc ation",
+ "▁allo cation",
+ "Mich ael",
+ "▁acknow led",
+ "Lin ux",
+ "▁met ros",
+ "▁ metros",
+ "tt e",
+ "t te",
+ "af en",
+ "a fen",
+ "▁x code",
+ "▁тра ди",
+ "spe cies",
+ "spec ies",
+ "s pecies",
+ "▁inj ury",
+ "▁са мы",
+ "▁сам ы",
+ "▁l attice",
+ "M aterial",
+ "and enburg",
+ "anden burg",
+ "▁huvud staden",
+ "st ory",
+ "sto ry",
+ "stor y",
+ "▁var ying",
+ "▁vary ing",
+ "▁kö vet",
+ "▁Росси йской",
+ "ir se",
+ "irs e",
+ "▁d rum",
+ "▁dr um",
+ "▁dru m",
+ "Pr essed",
+ "Press ed",
+ "Pres sed",
+ "La r",
+ "L ar",
+ "▁A gu",
+ "▁Ag u",
+ "▁w eil",
+ "▁we il",
+ "▁comm ence",
+ "▁Seg ún",
+ "Gest ure",
+ "Sh ape",
+ "S hape",
+ "▁V ors",
+ "▁Vo rs",
+ "▁Vor s",
+ "▁succ ès",
+ "▁correct ed",
+ "▁corre cted",
+ "▁corr ected",
+ "K ar",
+ "▁cr uel",
+ "▁cru el",
+ "▁polit ico",
+ "▁Schrift steller",
+ "▁ris ult",
+ "et u",
+ "e tu",
+ "arch iv",
+ "▁gén ero",
+ "▁gé nero",
+ "▁L ü",
+ "▁tri umph",
+ "OR S",
+ "O RS",
+ "L u",
+ "▁person nel",
+ "▁personn el",
+ "▁personne l",
+ "▁H ills",
+ "▁Hill s",
+ "▁Hil ls",
+ "as set",
+ "ass et",
+ "asse t",
+ "do min",
+ "dom in",
+ "d omin",
+ "Rece ive",
+ "▁O ak",
+ "▁K no",
+ "▁Kn o",
+ "▁The ory",
+ "ir ie",
+ "iri e",
+ "i rie",
+ "ow an",
+ "owa n",
+ "o wan",
+ "▁est ava",
+ "▁esta va",
+ "▁exec utes",
+ "▁execute s",
+ "▁execut es",
+ "й т",
+ "óp ez",
+ "ó pez",
+ "по ло",
+ "пол о",
+ "п оло",
+ "ét ica",
+ "▁назва ние",
+ "▁conver ges",
+ "▁not re",
+ "▁no tre",
+ "▁pop ulated",
+ "▁popula ted",
+ "▁popul ated",
+ "▁populate d",
+ "▁mov ements",
+ "▁move ments",
+ "▁movement s",
+ "▁statist ical",
+ "▁Zwe iten",
+ "qu in",
+ "qui n",
+ "▁import antes",
+ "▁important es",
+ "▁importante s",
+ "▁k lein",
+ "▁kle in",
+ "▁kl ein",
+ "▁Seg unda",
+ "schließ end",
+ "Fail ure",
+ "na r",
+ "n ar",
+ "da g",
+ "d ag",
+ "▁ru olo",
+ "▁f iction",
+ "▁fi ction",
+ "▁fic tion",
+ "▁fict ion",
+ "▁исполь зу",
+ "▁cr isis",
+ "▁Get ting",
+ ", %",
+ "▁ар мии",
+ "▁cam pus",
+ "▁camp us",
+ "▁fo oter",
+ "▁foot er",
+ "▁foo ter",
+ "▁ footer",
+ "▁d ías",
+ "▁día s",
+ "▁dí as",
+ "ба н",
+ "б ан",
+ "▁liber ty",
+ "▁libert y",
+ "▁g h",
+ "▁ gh",
+ "▁cham ber",
+ "▁district s",
+ "▁exc ited",
+ "▁can ción",
+ "ter o",
+ "te ro",
+ "t ero",
+ "▁Work ing",
+ "▁Wor king",
+ "▁czę ści",
+ "ль ный",
+ "▁f orum",
+ "▁for um",
+ "▁fo rum",
+ "▁ forum",
+ "▁E he",
+ "▁ка та",
+ "▁ ката",
+ "it ations",
+ "itation s",
+ "itat ions",
+ "To ols",
+ "Tool s",
+ "T ools",
+ "ach iv",
+ "achi v",
+ "▁c res",
+ "▁cre s",
+ "▁cr es",
+ "as to",
+ "ast o",
+ "a sto",
+ "▁re ver",
+ "▁r ever",
+ "▁rev er",
+ "▁reve r",
+ "▁n azionale",
+ "▁naz ionale",
+ "▁do ors",
+ "▁door s",
+ "▁N ancy",
+ "▁Nan cy",
+ "▁is lands",
+ "▁island s",
+ "Im p",
+ "I mp",
+ "▁Ch air",
+ "▁Cha ir",
+ "▁v orm",
+ "▁vo rm",
+ "▁vor m",
+ "se in",
+ "s ein",
+ "▁до ку",
+ "er set",
+ "ers et",
+ "▁tät ig",
+ "▁K rit",
+ "▁Kr it",
+ "▁п я",
+ "▁cons ervation",
+ "▁conserv ation",
+ "▁Part ido",
+ "▁Parti do",
+ "min ipage",
+ "Valid ator",
+ "▁rec overy",
+ "▁recover y",
+ "▁NA SA",
+ "▁NAS A",
+ "▁br east",
+ "▁bre ast",
+ "il ty",
+ "ilt y",
+ "an aly",
+ "ana ly",
+ "anal y",
+ "el ines",
+ "eli nes",
+ "eline s",
+ "elin es",
+ "e lines",
+ "▁S aturday",
+ "em ark",
+ "e mark",
+ "ce j",
+ "c ej",
+ "Ze ro",
+ "Z ero",
+ "▁Tur ner",
+ "▁Turn er",
+ "sec ure",
+ "Ex ists",
+ "▁R ick",
+ "▁Ric k",
+ "▁Ri ck",
+ "ev alu",
+ "eval u",
+ "e valu",
+ "ct rl",
+ "ctr l",
+ "c trl",
+ "▁com pression",
+ "▁comp ression",
+ "▁compr ession",
+ "▁compress ion",
+ "▁C URL",
+ "text color",
+ ")\\ ,",
+ ") \\,",
+ "long rightarrow",
+ "▁Fern seh",
+ "▁ Fernseh",
+ "ic ha",
+ "ich a",
+ "i cha",
+ "▁l oi",
+ "▁lo i",
+ "▁О те",
+ "▁От е",
+ "▁c ave",
+ "▁ca ve",
+ "▁cav e",
+ "▁do zen",
+ "▁expla ining",
+ "▁expl aining",
+ "▁explain ing",
+ "▁in nov",
+ "▁inn ov",
+ "▁Nich olas",
+ "▁dia meter",
+ "▁diam eter",
+ "▁M arian",
+ "▁Mar ian",
+ "▁Ma rian",
+ "▁Maria n",
+ "▁Mari an",
+ "▁f ires",
+ "▁fire s",
+ "▁fi res",
+ "▁fir es",
+ "▁art ifact",
+ "▁ artifact",
+ "▁Par ker",
+ "▁Park er",
+ "▁B und",
+ "▁Bu nd",
+ "▁Bun d",
+ "▁v erte",
+ "▁ver te",
+ "▁vert e",
+ "▁ verte",
+ "▁tal ent",
+ "▁tale nt",
+ "▁Lu cas",
+ "▁Luc as",
+ "re verse",
+ "▁folg enden",
+ "▁S ah",
+ "▁Sa h",
+ "ject ions",
+ "je ctions",
+ "jection s",
+ "▁inve ce",
+ "▁cost itu",
+ "▁s sl",
+ "▁ss l",
+ "▁ ssl",
+ "}} ^",
+ "} }^",
+ "▁viol ent",
+ "▁s pos",
+ "▁sp os",
+ "▁spo s",
+ "Ro ut",
+ "R out",
+ "jd k",
+ "j dk",
+ "▁за ме",
+ "▁f urent",
+ "▁fur ent",
+ "▁fu rent",
+ "an dal",
+ "and al",
+ "anda l",
+ "H om",
+ "▁Sen ior",
+ "▁p ounds",
+ "▁Disc ogs",
+ "▁з е",
+ "▁ зе",
+ "'} [",
+ "' }[",
+ "▁Napole on",
+ "ordin ates",
+ "ordinate s",
+ "à n",
+ "▁k urz",
+ "▁kur z",
+ "▁v ere",
+ "▁ver e",
+ "▁ve re",
+ "▁ vere",
+ "▁re use",
+ "▁Г ен",
+ "▁Ге н",
+ "▁S yst",
+ "▁Sy st",
+ "▁disapp eared",
+ "▁disappear ed",
+ "▁W atch",
+ "▁Wat ch",
+ "▁ Watch",
+ "bibli othek",
+ "▁кор пу",
+ "▁C s",
+ "▁} `",
+ "▁ }`",
+ "▁r ör",
+ "▁де ла",
+ "▁ дела",
+ "V B",
+ "▁calcul us",
+ "▁calc ulus",
+ "ро да",
+ "род а",
+ "▁jud gment",
+ "at ile",
+ "ati le",
+ "▁long ue",
+ "▁lon gue",
+ "▁H us",
+ "▁Hu s",
+ "J ac",
+ "}} )",
+ "} })",
+ "RI PT",
+ "IAB ot",
+ "▁ap ós",
+ "▁a ston",
+ "▁as ton",
+ "▁ast on",
+ "Web achiv",
+ "▁URL s",
+ "▁co at",
+ "▁э коно",
+ "▁l ear",
+ "▁le ar",
+ "▁ lear",
+ "ext ensions",
+ "extension s",
+ "▁Class ic",
+ "T I",
+ "▁T age",
+ "▁Tag e",
+ "▁Ta ge",
+ "▁l á",
+ "▁ lá",
+ "▁s emb",
+ "▁se mb",
+ "▁sem b",
+ "▁développ ement",
+ "IS TS",
+ "IST S",
+ "▁sol ves",
+ "▁solve s",
+ ",\\ ,",
+ ", \\,",
+ "▁чем пі",
+ "ord inary",
+ "ordin ary",
+ "▁B av",
+ "▁Ba v",
+ "▁much os",
+ "▁mu chos",
+ "▁mucho s",
+ "S elf",
+ "▁Ма й",
+ "▁D iet",
+ "▁Die t",
+ "▁Di et",
+ "▁necess ity",
+ "ві д",
+ "в ід",
+ "▁m ano",
+ "▁ma no",
+ "▁man o",
+ "▁С р",
+ "▁car re",
+ "▁Cam era",
+ "▁Camer a",
+ "▁ Camera",
+ "▁N arod",
+ "▁Na rod",
+ "▁Nar od",
+ "▁Ph one",
+ "▁Pho ne",
+ "▁ Phone",
+ "▁pol ym",
+ "▁poly m",
+ "im ore",
+ "imo re",
+ "i more",
+ "is Empty",
+ "▁Hou ston",
+ "▁Re ce",
+ "▁Rec e",
+ "▁ Rece",
+ "▁present ation",
+ "▁pres entation",
+ "▁presenta tion",
+ "▁ presentation",
+ "ни ципа",
+ "ници па",
+ "▁D b",
+ "▁ Db",
+ "▁conf ident",
+ "▁} {",
+ "▁ }{",
+ "▁bul let",
+ "▁ bullet",
+ "▁{ },",
+ "▁{} ,",
+ "AN GE",
+ "ANG E",
+ "▁No tre",
+ "▁Not re",
+ "ch in",
+ "chi n",
+ "c hin",
+ "▁Dr agon",
+ "▁Drag on",
+ "▁Dra gon",
+ "er ca",
+ "erc a",
+ "ia li",
+ "ial i",
+ "i ali",
+ "▁as set",
+ "▁ass et",
+ "▁asse t",
+ "▁ asset",
+ "▁mu ito",
+ "▁muit o",
+ "▁deep ly",
+ "▁rest riction",
+ "▁restrict ion",
+ "▁com merce",
+ "▁commer ce",
+ "▁ commerce",
+ "▁B omb",
+ "▁Bo mb",
+ "▁Bom b",
+ "c aught",
+ "q q",
+ "▁A rag",
+ "▁Ar ag",
+ "▁Ara g",
+ "▁не мец",
+ "▁Anal ysis",
+ "▁člán ku",
+ "▁b aby",
+ "▁ba by",
+ "▁e chter",
+ "▁о дного",
+ "▁од ного",
+ "▁одно го",
+ "же на",
+ "жен а",
+ "ж ена",
+ "▁white space",
+ "▁whites pace",
+ "ç u",
+ "LI ST",
+ "L IST",
+ "fr ique",
+ "fri que",
+ "f rique",
+ "▁v arias",
+ "▁var ias",
+ "▁vari as",
+ "▁va rias",
+ "▁W it",
+ "▁Wi t",
+ "▁Lic encia",
+ "Ex it",
+ "▁sie rp",
+ "▁sier p",
+ "▁ass emb",
+ "▁asse mb",
+ "▁split ting",
+ "▁spl itting",
+ "▁pa lace",
+ "▁pal ace",
+ "▁b locked",
+ "▁block ed",
+ "▁bound aries",
+ "▁iter ations",
+ "▁iteration s",
+ "▁Rot ten",
+ "▁Ver kehr",
+ "▁we er",
+ "Test s",
+ "T ests",
+ "if ting",
+ "ift ing",
+ "▁reg ul",
+ "▁pers ist",
+ "▁Sol ution",
+ "p b",
+ "▁col lapse",
+ "▁ collapse",
+ "▁arr ested",
+ "▁arrest ed",
+ "▁pred icate",
+ "▁Z one",
+ "▁Zo ne",
+ "▁ Zone",
+ "▁in gen",
+ "▁ing en",
+ "▁ ingen",
+ "zá lez",
+ "▁b anks",
+ "▁bank s",
+ "▁ban ks",
+ "pl ant",
+ "plan t",
+ "pla nt",
+ "p lant",
+ "▁N ella",
+ "▁Ne lla",
+ "▁Nel la",
+ "▁Nell a",
+ "▁б ан",
+ "▁ба н",
+ "▁ бан",
+ "▁S now",
+ "▁Sn ow",
+ "▁Kre uz",
+ "í cio",
+ "▁en ters",
+ "▁ent ers",
+ "▁enter s",
+ "▁ex pose",
+ "▁exp ose",
+ "▁expos e",
+ "č i",
+ "ши е",
+ "Qu al",
+ "Q ual",
+ "▁lands cape",
+ "▁пода цима",
+ "ma i",
+ "m ai",
+ "st ag",
+ "sta g",
+ "s tag",
+ "ова ний",
+ "DE F",
+ "D EF",
+ "[] {",
+ "[ ]{",
+ "▁derni ère",
+ "ic ut",
+ "i cut",
+ "▁X ml",
+ "▁ Xml",
+ "▁sub group",
+ "▁Pol sce",
+ "▁W arning",
+ "▁War ning",
+ "▁ Warning",
+ "▁veh icles",
+ "▁vehicle s",
+ "io t",
+ "i ot",
+ "▁d ll",
+ "▁ dll",
+ "ro nt",
+ "ron t",
+ "r ont",
+ "▁Lou ise",
+ "▁Louis e",
+ "▁a ra",
+ "▁ar a",
+ "▁ ara",
+ "▁S cala",
+ "▁Sc ala",
+ "▁canon ical",
+ "▁pl acing",
+ "▁pla cing",
+ "ER Y",
+ "E RY",
+ "▁J ag",
+ "▁Ja g",
+ "▁v irus",
+ "▁vi rus",
+ "▁vir us",
+ "em u",
+ "e mu",
+ "▁} );\r",
+ "▁}); \r",
+ "▁}) ;\r",
+ "▁м м",
+ "▁Tr ying",
+ "▁Try ing",
+ "▁Lex ikon",
+ "ab ord",
+ "abor d",
+ "▁exped ition",
+ "▁demand ed",
+ "▁demande d",
+ "Z yg",
+ "le in",
+ "lei n",
+ "l ein",
+ "▁verw endet",
+ "ри на",
+ "рин а",
+ "wo l",
+ "w ol",
+ "▁p ivot",
+ "▁одна ко",
+ "▁propri et",
+ "▁a wards",
+ "▁aw ards",
+ "▁award s",
+ "to ut",
+ "t out",
+ "▁as sim",
+ "▁ass im",
+ "▁St orm",
+ "▁Sto rm",
+ "Li mit",
+ "L imit",
+ "el in",
+ "eli n",
+ "e lin",
+ "we alth",
+ "ue z",
+ "u ez",
+ "▁rap present",
+ "▁rappres ent",
+ "▁re sta",
+ "▁r esta",
+ "▁res ta",
+ "▁rest a",
+ "▁gegründ et",
+ "▁journal ist",
+ "is ie",
+ "isi e",
+ "▁fac ility",
+ "▁facil ity",
+ "il led",
+ "ill ed",
+ "ille d",
+ "ul k",
+ "▁P K",
+ "▁ PK",
+ "An chor",
+ "▁_ )",
+ "▁ _)",
+ "V F",
+ "LA B",
+ "L AB",
+ "▁n å",
+ "od os",
+ "odo s",
+ "▁bill ion",
+ "vir ti",
+ "virt i",
+ "▁Je ux",
+ "юз а",
+ "ю за",
+ "tom cat",
+ "▁ch arts",
+ "▁char ts",
+ "▁chart s",
+ "▁ charts",
+ "▁B undle",
+ "▁Bund le",
+ "▁ Bundle",
+ "▁l st",
+ "▁ls t",
+ "▁ lst",
+ "▁ex er",
+ "▁fem ales",
+ "▁female s",
+ "▁oblig ed",
+ "▁a by",
+ "▁ab y",
+ "▁ aby",
+ "roll ed",
+ "rol led",
+ "rolle d",
+ "dr i",
+ "d ri",
+ "▁S che",
+ "▁Sch e",
+ "▁Sc he",
+ "▁vess els",
+ "▁vessel s",
+ "IMA RY",
+ "IM ARY",
+ "▁reason ing",
+ "▁про те",
+ "▁пр оте",
+ "FI LES",
+ "FILE S",
+ "ver k",
+ "v erk",
+ "os os",
+ "oso s",
+ "▁ком му",
+ "ді ї",
+ "д ії",
+ "▁d d",
+ "▁ dd",
+ "▁со ответ",
+ "▁IO Exception",
+ "▁ IOException",
+ "sk ých",
+ "ský ch",
+ "▁C LI",
+ "▁CL I",
+ "▁ CLI",
+ "▁ ње",
+ "C M",
+ "T D",
+ "▁possib ilities",
+ "▁possibil ities",
+ "▁Com pos",
+ "▁Comp os",
+ "hal f",
+ "h alf",
+ "▁web page",
+ "▁s wing",
+ "▁sw ing",
+ "▁ swing",
+ "▁z as",
+ "▁za s",
+ "▁ zas",
+ "▁cy cl",
+ "le id",
+ "lei d",
+ "ist ica",
+ "istic a",
+ "isti ca",
+ "▁In sert",
+ "▁Ins ert",
+ "▁ Insert",
+ "▁Sw eden",
+ "▁want ing",
+ "▁ ال",
+ "▁e euw",
+ "▁Admin istr",
+ "▁War ren",
+ "▁b s",
+ "▁ bs",
+ "▁p am",
+ "▁pa m",
+ "an us",
+ "anu s",
+ "Dr a",
+ "D ra",
+ "ex pl",
+ "exp l",
+ "▁K ant",
+ "▁Kan t",
+ "▁Ka nt",
+ "▁Aust in",
+ "▁c sak",
+ "▁cs ak",
+ "▁the atre",
+ "▁compat ibility",
+ "ма тиче",
+ "мати че",
+ "set State",
+ "б ю",
+ "}{ |",
+ "} {|",
+ "▁D y",
+ "▁Zw ischen",
+ "Al t",
+ "A lt",
+ "CLA RE",
+ "st eps",
+ "ste ps",
+ "step s",
+ "▁L age",
+ "▁La ge",
+ "▁Lag e",
+ "▁M itt",
+ "▁Mit t",
+ "▁Mi tt",
+ "▁Dub lin",
+ "▁рабо ты",
+ "de ep",
+ "▁fl ows",
+ "▁flow s",
+ "▁flo ws",
+ "▁Pa lace",
+ "▁Pal ace",
+ "▁Pala ce",
+ "un ix",
+ "uni x",
+ "re fs",
+ "ref s",
+ "um ar",
+ "uma r",
+ "u mar",
+ "as et",
+ "ase t",
+ "a set",
+ "co v",
+ "c ov",
+ "▁p ing",
+ "▁pi ng",
+ "▁pin g",
+ "▁ ping",
+ "▁Saf ari",
+ "fl ug",
+ "flu g",
+ "cre ens",
+ "creen s",
+ "c reens",
+ "{ #",
+ "▁ре а",
+ "ad ors",
+ "ado rs",
+ "ador s",
+ "▁a mor",
+ "▁am or",
+ "uc e",
+ "u ce",
+ "de mic",
+ "dem ic",
+ "▁Nether lands",
+ "▁cluster s",
+ "▁clust ers",
+ "▁en for",
+ "▁enf or",
+ "mar ine",
+ "▁b ugs",
+ "▁bu gs",
+ "▁bug s",
+ "izz ata",
+ "izza ta",
+ "▁s cra",
+ "▁sc ra",
+ "▁scr a",
+ "Le s",
+ "L es",
+ "qu ick",
+ "qui ck",
+ "▁turn o",
+ "▁tur no",
+ "_ *",
+ "ер а",
+ "е ра",
+ "Gener ated",
+ "> [",
+ "▁e stre",
+ "▁est re",
+ "▁es tre",
+ "▁ estre",
+ "or de",
+ "ord e",
+ "▁v erg",
+ "▁ver g",
+ "▁ve rg",
+ "ро з",
+ "р оз",
+ "▁p au",
+ "▁pa u",
+ "in cludes",
+ "include s",
+ "includ es",
+ "as sa",
+ "ass a",
+ "ad ers",
+ "ader s",
+ "ade rs",
+ "a ders",
+ "▁Гер ма",
+ "▁est aven",
+ "▁esta ven",
+ "▁ear liest",
+ "▁res ultado",
+ "▁result ado",
+ "mu n",
+ "m un",
+ "▁pl ots",
+ "▁plot s",
+ "▁ plots",
+ "di n",
+ "d in",
+ "sort ed",
+ "s orted",
+ "▁p reference",
+ "▁pre ference",
+ "▁prefer ence",
+ "ri ó",
+ "r ió",
+ "ту ре",
+ "тур е",
+ "▁L igue",
+ "▁Li gue",
+ "▁Lig ue",
+ "▁за вер",
+ "▁зав ер",
+ "ph r",
+ "p hr",
+ "▁p ocket",
+ "▁po cket",
+ "▁poc ket",
+ "▁par l",
+ "▁pa rl",
+ "▁l ak",
+ "▁la k",
+ "▁ lak",
+ "▁p owie",
+ "▁po wie",
+ "▁pow ie",
+ "▁al tres",
+ "▁alt res",
+ "▁altre s",
+ "$} ;",
+ "$ };",
+ "pl ain",
+ "pla in",
+ "p lain",
+ "▁C red",
+ "▁Cre d",
+ "▁Cr ed",
+ "▁ Cred",
+ "it za",
+ "itz a",
+ "pe rp",
+ "per p",
+ "Gr een",
+ "Gre en",
+ "G reen",
+ "▁dev oted",
+ "product ion",
+ "produ ction",
+ "p roduction",
+ "work er",
+ "wor ker",
+ "el sen",
+ "els en",
+ "else n",
+ "▁v ern",
+ "▁ver n",
+ "▁ve rn",
+ "▁ vern",
+ "▁már cius",
+ "▁Conf eder",
+ "▁Liver pool",
+ "▁му зи",
+ "▁em ails",
+ "▁email s",
+ "▁dist ances",
+ "▁distance s",
+ "▁seg ments",
+ "▁segment s",
+ "▁a nth",
+ "▁an th",
+ "▁ant h",
+ "▁ anth",
+ "▁w rest",
+ "▁wr est",
+ "▁ho og",
+ "▁cin ema",
+ "rr or",
+ "r ror",
+ "▁geb oren",
+ "▁é c",
+ "▁ éc",
+ "Mar ker",
+ "Mark er",
+ "▁Com pet",
+ "▁Comp et",
+ "▁ли сто",
+ "all owed",
+ "allow ed",
+ "allo wed",
+ "vol ume",
+ "Esp agne",
+ "Z e",
+ "▁fix es",
+ "▁fi xes",
+ "▁r ond",
+ "▁ro nd",
+ "▁arrang ement",
+ "/ ~",
+ ".] (",
+ ". ](",
+ "▁For rások",
+ "▁weiter en",
+ "▁weit eren",
+ "▁weitere n",
+ "ex cel",
+ "▁з мі",
+ "▁mod erne",
+ "▁modern e",
+ "▁moder ne",
+ "Eng lish",
+ "▁Transfer markt",
+ "▁be aring",
+ "▁bear ing",
+ "▁cl eared",
+ "▁clear ed",
+ "▁cle ared",
+ "▁са м",
+ "▁di vs",
+ "▁div s",
+ "ć i",
+ "▁э той",
+ "▁это й",
+ "▁Ге ор",
+ "sc ene",
+ "sce ne",
+ "▁a ges",
+ "▁ag es",
+ "▁age s",
+ "▁ ages",
+ "GE N",
+ "G EN",
+ "rä n",
+ "r än",
+ "▁T oul",
+ "▁To ul",
+ "▁A bs",
+ "▁Ab s",
+ "j át",
+ "▁med iante",
+ "▁medi ante",
+ "▁median te",
+ "▁em pres",
+ "▁emp res",
+ "▁Emp loyee",
+ "▁ Employee",
+ "▁polynomial s",
+ "▁optim ize",
+ "▁вы ступа",
+ "fa re",
+ "far e",
+ "f are",
+ "ве й",
+ "в ей",
+ "x f",
+ "qu ez",
+ "que z",
+ "q uez",
+ "▁bo tan",
+ "▁bot an",
+ "▁def end",
+ "▁defe nd",
+ "▁Qu art",
+ "Mon t",
+ "Mo nt",
+ "M ont",
+ "v b",
+ "ti ck",
+ "t ick",
+ "W D",
+ "min e",
+ "mi ne",
+ "m ine",
+ "▁mod ific",
+ "not ification",
+ "▁d enn",
+ "▁de nn",
+ "▁den n",
+ "▁al go",
+ "▁alg o",
+ "▁S po",
+ "▁Sp o",
+ "▁m istrzost",
+ "/ :",
+ "▁a present",
+ "▁apr esent",
+ "▁п род",
+ "▁про д",
+ "▁пр од",
+ "Vol ume",
+ "sk ą",
+ "s ką",
+ "prote cted",
+ "▁Turk ish",
+ "az y",
+ "a zy",
+ "▁p ouv",
+ "▁po uv",
+ "▁pou v",
+ "▁perí odo",
+ "sk og",
+ "sko g",
+ "▁ent ropy",
+ "▁entr opy",
+ "ze d",
+ "z ed",
+ "то ри",
+ "тор и",
+ "▁l ij",
+ "▁li j",
+ "▁ lij",
+ "bo ards",
+ "board s",
+ "▁ста ту",
+ "Bo ol",
+ "B ool",
+ "▁pol ity",
+ "▁polit y",
+ "@\" ,",
+ "@ \",",
+ "▁рі к",
+ "né e",
+ "n ée",
+ "▁Z ug",
+ "▁Zu g",
+ "▁Un iti",
+ "▁Unit i",
+ "ém et",
+ "é met",
+ "at ience",
+ "ati ence",
+ "di men",
+ "dim en",
+ "d imen",
+ "▁St even",
+ "▁Ste ven",
+ "▁Steve n",
+ "H a",
+ "ACT ION",
+ "A CTION",
+ "▁w and",
+ "▁wa nd",
+ "▁ wand",
+ "▁Na var",
+ "▁Nav ar",
+ "▁сі чня",
+ "W atch",
+ "▁Stu art",
+ "▁z de",
+ "▁zd e",
+ "▁кон тро",
+ "data set",
+ "dat aset",
+ "datas et",
+ "y ó",
+ "▁B ush",
+ "▁Bu sh",
+ "▁Bus h",
+ "▁се бя",
+ "▁wor thy",
+ "▁worth y",
+ "▁B le",
+ "▁Bl e",
+ "▁pro por",
+ "▁prop or",
+ "▁Vill age",
+ "▁Villa ge",
+ "▁Vil lage",
+ "▁r y",
+ "▁ ry",
+ "▁v oit",
+ "▁vo it",
+ "▁копи я",
+ "▁z p",
+ "▁c ura",
+ "▁cu ra",
+ "▁cur a",
+ "▁H tml",
+ "▁ Html",
+ "▁Die ser",
+ "▁Dies er",
+ "▁Diese r",
+ "▁D ays",
+ "▁Da ys",
+ "▁Day s",
+ "▁ Days",
+ "on nes",
+ "onn es",
+ "onne s",
+ "▁ant igu",
+ "▁anti gu",
+ "▁Sta aten",
+ "▁Staat en",
+ "▁f aint",
+ "▁fa int",
+ "on gs",
+ "ong s",
+ "▁ö st",
+ "▁ öst",
+ "Re direct",
+ "Red irect",
+ "ел ь",
+ "е ль",
+ "at orial",
+ "ator ial",
+ "ato rial",
+ "atori al",
+ "▁b other",
+ "▁bo ther",
+ "▁both er",
+ "▁bot her",
+ "Edit Text",
+ "▁Gi ul",
+ "▁за во",
+ "▁зав о",
+ "▁pue blo",
+ "▁Mississ ippi",
+ "ja k",
+ "j ak",
+ "▁w ings",
+ "▁win gs",
+ "▁wing s",
+ "on c",
+ "o nc",
+ "ív el",
+ "í vel",
+ "ien cia",
+ "i encia",
+ "ent licht",
+ "entlich t",
+ "▁B TW",
+ "or nal",
+ "orn al",
+ "▁Ко ро",
+ "▁Кор о",
+ "▁од ним",
+ "▁sa lv",
+ "▁sal v",
+ "▁f inden",
+ "▁find en",
+ "▁fin den",
+ "ge o",
+ "▁а виа",
+ "att ung",
+ "vi v",
+ "v iv",
+ "▁L uther",
+ "▁Lu ther",
+ "▁об щи",
+ "▁Ro lle",
+ "▁Rol le",
+ "▁Roll e",
+ "▁Ab raham",
+ "▁cent ered",
+ "▁center ed",
+ "▁sl ash",
+ "▁sla sh",
+ "▁ slash",
+ "is at",
+ "isa t",
+ "em ann",
+ "ema nn",
+ "eman n",
+ "e mann",
+ "O s",
+ "пар та",
+ "▁P ablo",
+ "▁Pa blo",
+ "▁collabor ation",
+ "path s",
+ "pat hs",
+ "éd ition",
+ "▁view ed",
+ "▁vie wed",
+ "▁cons isted",
+ "▁consist ed",
+ "▁recover ed",
+ "▁Mex ican",
+ "▁F ix",
+ "▁sp ell",
+ "▁spe ll",
+ "▁spel l",
+ "Spec ial",
+ "Spe cial",
+ "▁С т",
+ "ess eur",
+ "esse ur",
+ "▁Украи ны",
+ "form er",
+ "for mer",
+ "▁ś w",
+ "▁z eros",
+ "▁ze ros",
+ "▁zero s",
+ "▁Stra ßen",
+ "▁Straße n",
+ "▁organ isation",
+ "▁organis ation",
+ "▁ organisation",
+ "üss en",
+ "üs sen",
+ "▁S ierra",
+ "▁Se ason",
+ "▁Sea son",
+ "▁vol ont",
+ "Bean Factory",
+ "▁помо щ",
+ "▁pres sing",
+ "▁press ing",
+ "▁equival ence",
+ "▁c att",
+ "▁ca tt",
+ "▁cat t",
+ "ic ity",
+ "ici ty",
+ "i city",
+ "▁accompl ished",
+ "▁accomp lished",
+ "▁accomplish ed",
+ "▁y o",
+ "▁ yo",
+ "▁s ic",
+ "▁si c",
+ "▁im ports",
+ "▁import s",
+ "▁accom mod",
+ "▁Port o",
+ "▁Por to",
+ "▁я ка",
+ "▁як а",
+ "▁lo an",
+ "ти ки",
+ "тик и",
+ "▁check out",
+ "▁ass ess",
+ "▁asse ss",
+ "▁Pop ulation",
+ "ur ent",
+ "ure nt",
+ "uren t",
+ "u rent",
+ "clo jure",
+ "▁Sant os",
+ "▁Santo s",
+ "▁inform áció",
+ "PO S",
+ "P OS",
+ "▁g are",
+ "▁gar e",
+ "▁ga re",
+ "▁k ick",
+ "▁ki ck",
+ "▁rad ical",
+ "▁radi cal",
+ "▁Pe ace",
+ "▁stream ing",
+ "▁stre aming",
+ "ca mp",
+ "cam p",
+ "c amp",
+ "zą t",
+ "го вор",
+ "гов ор",
+ "гово р",
+ "▁Reg ierung",
+ "▁proceed ed",
+ "f m",
+ "ле ны",
+ "лен ы",
+ "▁ear nest",
+ "▁Par ad",
+ "▁Pa rad",
+ "▁Para d",
+ "request s",
+ "▁R aum",
+ "▁Ra um",
+ "š č",
+ "▁polic ies",
+ "▁T ig",
+ "▁Ti g",
+ "▁s itt",
+ "▁si tt",
+ "▁sit t",
+ "▁Ener gy",
+ "▁pur ely",
+ "▁pure ly",
+ "▁H aut",
+ "▁Ha ut",
+ "▁Sp eed",
+ "▁Spe ed",
+ "▁ Speed",
+ "bi o",
+ "b io",
+ "▁o range",
+ "▁or ange",
+ "▁big gest",
+ "▁britann ique",
+ "▁No table",
+ "▁Not able",
+ "v u",
+ "ле нии",
+ "би н",
+ "б ин",
+ "▁N ash",
+ "▁Na sh",
+ "▁Nas h",
+ "ще ние",
+ "▁c iel",
+ "▁ci el",
+ "adém ie",
+ "▁гру дня",
+ "▁jo ue",
+ "▁jou e",
+ "▁v oted",
+ "▁vo ted",
+ "▁vot ed",
+ "▁vote d",
+ "ri co",
+ "ric o",
+ "r ico",
+ "▁го р",
+ "▁г ор",
+ "▁ гор",
+ "▁коман ду",
+ "it ivity",
+ "iti vity",
+ "▁щ е",
+ "▁ ще",
+ "▁de finite",
+ "▁defin ite",
+ "▁definit e",
+ "uro pa",
+ "urop a",
+ "!\" );",
+ "! \");",
+ "Default s",
+ "▁неко торы",
+ "éd ération",
+ "▁s illy",
+ "▁sil ly",
+ "▁talk ed",
+ "▁tal ked",
+ "re u",
+ "r eu",
+ "▁L omb",
+ "▁Lo mb",
+ "▁stat ue",
+ "кт а",
+ "к та",
+ "ю р",
+ "um ably",
+ "▁горо де",
+ "▁город е",
+ "▁R untime",
+ "▁Run time",
+ "▁ Runtime",
+ "▁di agn",
+ "▁diag n",
+ "▁dia gn",
+ "▁r etro",
+ "▁ret ro",
+ "▁retr o",
+ "▁Sver ige",
+ "▁in icial",
+ "▁inici al",
+ "ien za",
+ "i enza",
+ "▁fig lio",
+ "▁z og",
+ "▁zo g",
+ "▁re y",
+ "▁r ey",
+ "▁ rey",
+ "▁R und",
+ "▁Run d",
+ "▁Ru nd",
+ "т ный",
+ "▁ce ased",
+ "er no",
+ "ern o",
+ "▁e sa",
+ "▁es a",
+ "▁ esa",
+ "▁tr ouv",
+ "▁tro uv",
+ "▁trou v",
+ "▁Gemeinde n",
+ "▁Geme inden",
+ "▁comer cial",
+ "sk ap",
+ "ska p",
+ "s kap",
+ "en ario",
+ "ena rio",
+ "▁ju ris",
+ "▁jur is",
+ "T B",
+ "на ла",
+ "нал а",
+ "н ала",
+ "▁v ij",
+ "▁vi j",
+ "V O",
+ "▁c lin",
+ "▁cl in",
+ "▁cli n",
+ "jö r",
+ "j ör",
+ "са н",
+ "с ан",
+ "ow ała",
+ "owa ła",
+ "ował a",
+ "rib ución",
+ "ribu ción",
+ "▁urs prüng",
+ "▁con dem",
+ "▁cond em",
+ "▁St age",
+ "▁Sta ge",
+ "▁ Stage",
+ "▁mix ing",
+ "▁рі з",
+ "▁f ans",
+ "▁fa ns",
+ "▁fan s",
+ "há z",
+ "h áz",
+ "so cial",
+ "soci al",
+ "za n",
+ "z an",
+ "▁с вой",
+ "▁сво й",
+ "Cook ie",
+ "▁Ro land",
+ "▁Rol and",
+ "az ionale",
+ "▁Sl oven",
+ "▁Slo ven",
+ "▁Slov en",
+ "▁F iche",
+ "▁Fich e",
+ "▁S é",
+ "h ä",
+ "▁official s",
+ "▁offici als",
+ "▁î nt",
+ "▁în t",
+ "Inter ceptor",
+ "Table s",
+ "Tab les",
+ "T ables",
+ "▁da von",
+ "▁dav on",
+ "init ialize",
+ "initial ize",
+ "]= \"",
+ "] =\"",
+ "▁B ody",
+ "▁Bo dy",
+ "▁Bod y",
+ "▁ Body",
+ "▁U pper",
+ "▁Up per",
+ "▁ Upper",
+ "▁Col lect",
+ "▁Coll ect",
+ "▁ Collect",
+ "▁Zür ich",
+ "Hor izontal",
+ "Ty p",
+ "T yp",
+ "▁polít ico",
+ "▁Rewrite Cond",
+ "▁h oped",
+ "▁hope d",
+ "▁ho ped",
+ "▁hop ed",
+ "▁anx ious",
+ "Li ter",
+ "L iter",
+ "ja hr",
+ "j ahr",
+ "▁ass emble",
+ "▁assemb le",
+ "▁c rypt",
+ "▁cry pt",
+ "lah oma",
+ "AS H",
+ "A SH",
+ "▁Б ри",
+ "▁C ic",
+ "▁Ci c",
+ "tw itter",
+ "hy per",
+ "▁T ell",
+ "▁Te ll",
+ "▁Tel l",
+ "іль ки",
+ "во бо",
+ "▁ba zie",
+ "▁baz ie",
+ "▁contempor ary",
+ "▁Param eter",
+ "▁Para meter",
+ "▁ Parameter",
+ "st wa",
+ "▁bek end",
+ "co ck",
+ "c ock",
+ "pre vious",
+ "prev ious",
+ "en ska",
+ "ens ka",
+ "ensk a",
+ "▁c aller",
+ "▁cal ler",
+ "▁call er",
+ "]] )",
+ "] ])",
+ "▁R az",
+ "▁Ra z",
+ "▁Se lon",
+ "▁Sel on",
+ "▁propos al",
+ "▁b ý",
+ "▁S ied",
+ "▁Sie d",
+ "▁Si ed",
+ "▁Arbe its",
+ "▁Arbeit s",
+ "▁p ride",
+ "▁pr ide",
+ "▁pri de",
+ "▁sl ope",
+ "▁slo pe",
+ "id é",
+ "grad ient",
+ "▁Дже рела",
+ "▁S H",
+ "▁ SH",
+ "▁раз рабо",
+ "ivers ity",
+ "спо дар",
+ "\\{ \\",
+ "\\ {\\",
+ "▁с тали",
+ "▁ст али",
+ "▁ста ли",
+ "▁стал и",
+ "▁Ein zel",
+ "▁Einz el",
+ "▁rg ba",
+ "▁A nim",
+ "▁An im",
+ "▁ Anim",
+ "▁a lles",
+ "▁al les",
+ "▁all es",
+ "▁alle s",
+ "▁ alles",
+ "ба р",
+ "б ар",
+ "er te",
+ "ert e",
+ "▁réalis é",
+ "▁réal isé",
+ "Inst itut",
+ "▁mar kup",
+ "▁mark up",
+ "▁v ars",
+ "▁var s",
+ "▁va rs",
+ "▁ vars",
+ "▁g am",
+ "▁ga m",
+ "▁Васи ль",
+ "iz za",
+ "izz a",
+ "i zza",
+ "▁C ob",
+ "▁Co b",
+ "▁M etal",
+ "▁Me tal",
+ "▁Met al",
+ "▁Meta l",
+ "▁le ak",
+ "▁L anc",
+ "▁La nc",
+ "▁Lan c",
+ "Sw itch",
+ "De lay",
+ "Del ay",
+ "at uur",
+ "atu ur",
+ "▁че ты",
+ "▁анг лий",
+ "▁leg acy",
+ "▁desar roll",
+ "▁top ological",
+ "▁jewe ils",
+ "▁Nederland se",
+ "▁atmos phere",
+ "ur ban",
+ "urb an",
+ "▁s lov",
+ "▁sl ov",
+ "▁slo v",
+ "▁law yer",
+ "pe cially",
+ "▁altern ate",
+ "▁para met",
+ "▁param et",
+ "▁establish ment",
+ "▁wood s",
+ "▁wo ods",
+ "P D",
+ "▁на и",
+ "▁m ang",
+ "▁ma ng",
+ "▁man g",
+ "▁wechsel te",
+ "сь ку",
+ "ськ у",
+ ". =",
+ "▁fif teen",
+ "SU M",
+ "S UM",
+ "▁F ro",
+ "▁Fr o",
+ "▁L ED",
+ "▁LE D",
+ "▁ LED",
+ "ow ano",
+ "owa no",
+ "owan o",
+ "стви е",
+ "▁D onnées",
+ "to l",
+ "t ol",
+ "ży n",
+ "ż yn",
+ "cre f",
+ "cr ef",
+ "c ref",
+ "стви и",
+ "ho rn",
+ "hor n",
+ "h orn",
+ "▁со об",
+ "▁обо ро",
+ "▁Comp lete",
+ "▁Comple te",
+ "▁ Complete",
+ "“ )",
+ "▁kind ly",
+ "▁Cham ber",
+ "s ég",
+ "W H",
+ "▁amb ient",
+ "к ро",
+ "▁ch eval",
+ "▁che val",
+ "▁на писа",
+ "fl u",
+ "f lu",
+ "▁Off iz",
+ "ma te",
+ "mat e",
+ "m ate",
+ "nat ural",
+ "n atural",
+ "se par",
+ "sep ar",
+ "em pre",
+ "emp re",
+ "View Holder",
+ "f w",
+ "▁le tech",
+ "▁let ech",
+ "▁tra iling",
+ "▁trail ing",
+ "at ri",
+ "atr i",
+ "a tri",
+ "▁G ó",
+ "▁B onn",
+ "▁Bo nn",
+ "▁Bon n",
+ "▁un likely",
+ "▁unlike ly",
+ "RA M",
+ "R AM",
+ "en st",
+ "ens t",
+ "St ats",
+ "Stat s",
+ "▁поли тиче",
+ ")- -(",
+ ")-- (",
+ "▁t rom",
+ "▁tr om",
+ "▁tro m",
+ "!. ..",
+ "! ...",
+ "▁Mean while",
+ "ст ана",
+ "ста на",
+ "стан а",
+ "▁Re ino",
+ "▁Rein o",
+ "▁A rist",
+ "▁Ar ist",
+ "▁Ari st",
+ "$} }%",
+ "$ }}%",
+ "▁so lem",
+ "▁sol em",
+ "▁sole m",
+ "clos ure",
+ "ign ation",
+ "ło d",
+ "ł od",
+ "▁di vor",
+ "▁div or",
+ "▁между народ",
+ "=\" ",
+ "▁m olt",
+ "▁mo lt",
+ "▁mol t",
+ "▁sk ills",
+ "▁skill s",
+ "▁C ir",
+ "▁Ci r",
+ "▁Des pués",
+ "▁Desp ués",
+ "▁l un",
+ "▁lu n",
+ "▁cor on",
+ "▁co ron",
+ "▁Com ics",
+ "сто ри",
+ "стор и",
+ "с тори",
+ "▁It ems",
+ "▁Item s",
+ "▁ Items",
+ "▁Th ink",
+ "и гра",
+ "▁g rows",
+ "▁gr ows",
+ "▁gro ws",
+ "▁grow s",
+ "port al",
+ "por tal",
+ "▁n ich",
+ "▁ni ch",
+ "▁nic h",
+ "▁restrict ions",
+ "▁restriction s",
+ "▁L au",
+ "▁La u",
+ "ше ння",
+ "шен ня",
+ "▁So zial",
+ "▁к і",
+ "▁ кі",
+ "ma na",
+ "man a",
+ "m ana",
+ "▁lie utenant",
+ "Att r",
+ "At tr",
+ "ume ric",
+ "umer ic",
+ "▁dr ives",
+ "▁drive s",
+ "▁dri ves",
+ "▁driv es",
+ "as is",
+ "asi s",
+ "ба й",
+ "N L",
+ "Zyg ote",
+ "phys ics",
+ "▁intern ally",
+ "▁internal ly",
+ "ва ется",
+ "вает ся",
+ "H idden",
+ "▁Да та",
+ "▁un safe",
+ "▁R oc",
+ "▁Ro c",
+ "▁instanti ate",
+ "▁instant iate",
+ "ud ni",
+ "▁R oom",
+ "▁Ro om",
+ "▁П ред",
+ "▁Пре д",
+ "▁m aja",
+ "▁ma ja",
+ "▁maj a",
+ "ach ment",
+ "u uid",
+ "Project s",
+ "Gr e",
+ "G re",
+ "▁в зя",
+ "▁вз я",
+ "▁Bl ood",
+ "▁Blo od",
+ "ic ile",
+ "ici le",
+ "i cile",
+ "▁N ouvelle",
+ "Do es",
+ "▁nie uwe",
+ "ál e",
+ "á le",
+ "an gs",
+ "ang s",
+ "we ak",
+ "▁a antal",
+ "▁aan tal",
+ "▁Е в",
+ "▁Dres den",
+ "▁L ost",
+ "▁Lo st",
+ "▁Los t",
+ "ка та",
+ "▁invol ve",
+ "▁decl aring",
+ "▁decla ring",
+ "▁declar ing",
+ "▁Polit ical",
+ "ér ez",
+ "ére z",
+ "é rez",
+ "ko p",
+ "k op",
+ "not ify",
+ "▁C urt",
+ "▁Cu rt",
+ "▁Cur t",
+ "▁schließ lich",
+ "gh an",
+ "g han",
+ "це на",
+ "цен а",
+ "ц ена",
+ "▁kw iet",
+ "üg el",
+ "üge l",
+ "ü gel",
+ "▁S ob",
+ "▁So b",
+ "▁sub str",
+ "▁subst r",
+ "▁subs tr",
+ "▁ substr",
+ "▁el len",
+ "▁elle n",
+ "▁ell en",
+ "▁ ellen",
+ "ion ario",
+ "iona rio",
+ "en son",
+ "ens on",
+ "enso n",
+ "WI N",
+ "W IN",
+ "спо рт",
+ "em er",
+ "eme r",
+ "e mer",
+ "no me",
+ "nom e",
+ "n ome",
+ "▁sm iled",
+ "▁smile d",
+ "▁Sch midt",
+ "▁sm oke",
+ "▁T oken",
+ "▁To ken",
+ "▁Tok en",
+ "▁ Token",
+ "▁v ague",
+ "▁va gue",
+ "▁pro vision",
+ "▁prov ision",
+ "ya ml",
+ "y aml",
+ "ни тель",
+ "ните ль",
+ "on ial",
+ "oni al",
+ "onia l",
+ "é poque",
+ "▁N C",
+ "▁ NC",
+ "▁N FL",
+ "te ck",
+ "▁al lo",
+ "▁all o",
+ "▁ allo",
+ "▁préc éd",
+ "cent ral",
+ "▁ma jd",
+ "▁maj d",
+ "▁ch rom",
+ "▁chr om",
+ "▁ chrom",
+ "▁Z um",
+ "▁Zu m",
+ "ver so",
+ "vers o",
+ "▁verschied enen",
+ "▁ста ро",
+ "▁стар о",
+ "▁qu elle",
+ "▁que lle",
+ "▁q uelle",
+ "▁quel le",
+ "▁ quelle",
+ "▁r ép",
+ "▁ré p",
+ "RO W",
+ "R OW",
+ "▁i hnen",
+ "▁ih nen",
+ "▁ihn en",
+ "▁sens ible",
+ "▁sen sible",
+ "| $",
+ "▁sc hw",
+ "▁sch w",
+ "▁B R",
+ "▁ BR",
+ "▁O ptions",
+ "▁Option s",
+ "▁Opt ions",
+ "▁ Options",
+ "▁t ens",
+ "▁te ns",
+ "▁ten s",
+ "▁conqu ist",
+ "▁l ieß",
+ "▁lie ß",
+ "▁ ließ",
+ "ov is",
+ "ovi s",
+ "o vis",
+ "▁мі ста",
+ "▁міс та",
+ "▁e la",
+ "▁el a",
+ "▁ ela",
+ "rif ice",
+ "r ifice",
+ "▁l ok",
+ "▁lo k",
+ "▁Queens land",
+ "B inary",
+ "▁Ra hmen",
+ "▁Rah men",
+ "▁a bol",
+ "▁ab ol",
+ "▁ abol",
+ "▁č ást",
+ "▁Ed inburgh",
+ "in de",
+ "ind e",
+ "i nde",
+ "▁calcul ating",
+ "▁calc ulating",
+ "▁O regon",
+ "▁le git",
+ "▁leg it",
+ "▁Nach dem",
+ "at hon",
+ "ath on",
+ "P rivate",
+ "illa ume",
+ "▁ob servable",
+ "▁observ able",
+ "le ans",
+ "lean s",
+ "lea ns",
+ "▁remark ed",
+ "▁h alt",
+ "▁ha lt",
+ "▁hal t",
+ "▁ halt",
+ "ни цы",
+ "ниц ы",
+ "▁st amp",
+ "▁sta mp",
+ "▁stam p",
+ "▁Ad v",
+ "Lo uis",
+ "Lou is",
+ "im ming",
+ "imm ing",
+ "gru ppe",
+ "▁Pol icy",
+ "▁ Policy",
+ "▁v rij",
+ "▁vr ij",
+ "ft rag",
+ "▁off ices",
+ "▁offic es",
+ "▁office s",
+ "▁particip ated",
+ "▁es col",
+ "▁esc ol",
+ "▁\" ",
+ "▁\"< /",
+ "▁nombre uses",
+ "▁d ivid",
+ "▁di vid",
+ "▁div id",
+ "▁ad vis",
+ "▁adv is",
+ "лта ти",
+ "▁= =>",
+ "▁== >",
+ "Ori entation",
+ "ci d",
+ "c id",
+ "Car t",
+ "Ca rt",
+ "C art",
+ "▁m urm",
+ "▁mu rm",
+ "▁mur m",
+ "▁ass ez",
+ "▁asse z",
+ "▁l inking",
+ "▁link ing",
+ "▁lin king",
+ "build ing",
+ "▁rec onna",
+ "▁recon na",
+ "▁s hook",
+ "▁sh ook",
+ "▁sho ok",
+ "man aged",
+ "mana ged",
+ "land a",
+ "lan da",
+ "l anda",
+ "▁Le ón",
+ "▁cré ation",
+ "до й",
+ "oc ity",
+ "oci ty",
+ "o city",
+ "▁w ij",
+ "▁ wij",
+ "▁wie ś",
+ "xt art",
+ "▁M ove",
+ "▁Mo ve",
+ "▁Mov e",
+ "▁ Move",
+ "lung en",
+ "l ungen",
+ "ству ет",
+ "or ney",
+ "orn ey",
+ "option al",
+ "opt ional",
+ "ma cro",
+ "mac ro",
+ "Cond ition",
+ "▁square s",
+ "▁squ ares",
+ "▁mist aken",
+ "▁mistake n",
+ "án t",
+ "á nt",
+ "▁R is",
+ "▁Ri s",
+ "▁sent ences",
+ "▁sentence s",
+ "er ea",
+ "ere a",
+ "e rea",
+ "▁m ij",
+ "▁mi j",
+ "Un d",
+ "U nd",
+ "▁nom br",
+ "z A",
+ "▁In dependent",
+ "▁Indep endent",
+ "▁Independ ent",
+ "▁p review",
+ "▁pre view",
+ "▁prev iew",
+ "▁ preview",
+ "im as",
+ "ima s",
+ "i mas",
+ "▁m ales",
+ "▁ma les",
+ "▁mal es",
+ "▁male s",
+ "in ental",
+ "inen tal",
+ "inent al",
+ "Th ank",
+ "▁p opol",
+ "▁po pol",
+ "▁pop ol",
+ "▁p over",
+ "▁po ver",
+ "▁pov er",
+ "▁gr asp",
+ "▁gra sp",
+ "▁im ped",
+ "▁imp ed",
+ "▁campion ato",
+ "▁W ei",
+ "▁We i",
+ "▁t itled",
+ "▁title d",
+ "▁tit led",
+ "▁A demás",
+ "▁Pass word",
+ "▁ Password",
+ "▁P am",
+ "▁Pa m",
+ "UI LD",
+ "▁ли пня",
+ "wer b",
+ "we rb",
+ "w erb",
+ "........ ........",
+ "▁R ío",
+ "▁te eth",
+ "b p",
+ "▁S W",
+ "▁ SW",
+ "ul aire",
+ "ula ire",
+ "▁se ized",
+ "▁sei zed",
+ "▁St ef",
+ "▁Ste f",
+ "ú l",
+ "▁v iz",
+ "▁vi z",
+ "ion y",
+ "io ny",
+ "i ony",
+ "▁j unt",
+ "▁ju nt",
+ "▁jun t",
+ "▁kter á",
+ "▁wrześ nia",
+ "< >",
+ "▁s urg",
+ "▁su rg",
+ "▁sur g",
+ "▁tu tte",
+ "▁tut te",
+ "▁H ob",
+ "▁Ho b",
+ "по від",
+ "пов ід",
+ "▁w ohl",
+ "▁wo hl",
+ "▁ wohl",
+ "▁t rag",
+ "▁tr ag",
+ "▁tra g",
+ "▁C rown",
+ "▁Cr own",
+ "▁Cro wn",
+ "▁Crow n",
+ "▁tr ova",
+ "▁tro va",
+ "▁trov a",
+ "сто ву",
+ "стов у",
+ "▁Vien na",
+ "ese hen",
+ "▁met ropol",
+ "▁reflect ed",
+ "те та",
+ "тет а",
+ "т ета",
+ "▁trad uc",
+ "▁tradu c",
+ "▁B ast",
+ "▁Bas t",
+ "▁Ba st",
+ "▁ersch ien",
+ "wo ord",
+ "() \"",
+ "( )\"",
+ "ta let",
+ "tal et",
+ "t alet",
+ "▁ro ads",
+ "▁road s",
+ "ве дения",
+ "веде ния",
+ "ühr ung",
+ "▁c ogn",
+ "▁co gn",
+ "▁V alle",
+ "▁Val le",
+ "▁Va lle",
+ "▁Vall e",
+ "▁land ing",
+ "▁lan ding",
+ "▁Re gex",
+ "▁Reg ex",
+ "▁I owa",
+ "▁Io wa",
+ "dz iał",
+ "d ział",
+ "▁erre ichte",
+ "au m",
+ "a um",
+ "▁found er",
+ "▁fo under",
+ "▁fou nder",
+ "ap olis",
+ "Comp iler",
+ "▁k op",
+ "▁ko p",
+ "▁ kop",
+ "▁m arc",
+ "▁ma rc",
+ "▁mar c",
+ "▁те ритор",
+ ")) `",
+ ") )`",
+ "▁l ei",
+ "▁le i",
+ "▁ lei",
+ "ge on",
+ "geo n",
+ "▁weap ons",
+ "▁weapon s",
+ "▁h orn",
+ "▁hor n",
+ "▁ho rn",
+ "▁ horn",
+ "▁el if",
+ "▁ elif",
+ "▁Cap ital",
+ "▁Capit al",
+ "ć e",
+ "▁for all",
+ "▁ forall",
+ "▁э та",
+ "pre view",
+ "prev iew",
+ "p review",
+ "▁D NA",
+ "▁s id",
+ "▁si d",
+ "or ch",
+ "▁R as",
+ "▁Ra s",
+ "▁a rab",
+ "▁ar ab",
+ "▁ara b",
+ "▁ arab",
+ "Be st",
+ "B est",
+ "▁с чита",
+ "▁L ópez",
+ "an ça",
+ "▁fun kc",
+ "▁t ienen",
+ "▁tiene n",
+ "▁ti enen",
+ "▁tie nen",
+ "; &",
+ "m useum",
+ "▁E rr",
+ "▁Er r",
+ "▁ Err",
+ "▁re sort",
+ "▁res ort",
+ "No v",
+ "N ov",
+ "▁k al",
+ "▁ka l",
+ "▁ kal",
+ "M W",
+ "ш ь",
+ "an chor",
+ "anc hor",
+ "anch or",
+ "▁ро ман",
+ "le ading",
+ "lea ding",
+ "▁m anten",
+ "▁ma nten",
+ "▁man ten",
+ "▁mant en",
+ "▁Sil va",
+ "da de",
+ "d ade",
+ "▁design ated",
+ "▁rev ista",
+ "▁revis ta",
+ "O ct",
+ "per cent",
+ "▁у ні",
+ "ident ifier",
+ "ma ss",
+ "mas s",
+ "m ass",
+ "@ @",
+ "uls ion",
+ "ger meister",
+ "g ermeister",
+ "▁pred icted",
+ "▁predict ed",
+ "▁с ви",
+ "жно й",
+ "ж ной",
+ "▁Er geb",
+ "▁c ust",
+ "▁cu st",
+ "▁remove s",
+ "▁remov es",
+ "ch arg",
+ "char g",
+ "cha rg",
+ "при мер",
+ "▁for ming",
+ "▁form ing",
+ "as ma",
+ "asm a",
+ "std out",
+ "F un",
+ "ym e",
+ "y me",
+ "ter ed",
+ "te red",
+ "tere d",
+ "t ered",
+ "urs ive",
+ "ig hed",
+ "igh ed",
+ "▁сле д",
+ "▁ след",
+ "ver band",
+ "verb and",
+ "▁LO G",
+ "▁ LOG",
+ "ra ms",
+ "ram s",
+ "r ams",
+ "éo n",
+ "é on",
+ "en dra",
+ "end ra",
+ "▁Be reich",
+ "▁Bere ich",
+ "▁tempor al",
+ "▁temp oral",
+ "▁tempo ral",
+ "▁lang ue",
+ "▁lan gue",
+ "▁I nn",
+ "▁In n",
+ "▁more over",
+ "▁tutorial s",
+ "M iddle",
+ "▁совет ский",
+ "▁mainten ance",
+ "as ures",
+ "asure s",
+ "▁vál to",
+ "BA SE",
+ "B ASE",
+ "▁disapp ear",
+ "ски я",
+ "▁conoc ido",
+ "▁На у",
+ "▁Li bert",
+ "▁Lib ert",
+ "▁Liber t",
+ "▁Har old",
+ "▁life time",
+ "▁lif etime",
+ "▁T ür",
+ "▁za wod",
+ "▁zaw od",
+ "om ic",
+ "omi c",
+ "o mic",
+ "▁Retrie ved",
+ "arch itecture",
+ "č ka",
+ "iform es",
+ "develop ment",
+ "ord nung",
+ "In f",
+ "le ben",
+ "leb en",
+ "l eben",
+ "▁St ars",
+ "▁Sta rs",
+ "▁Star s",
+ "sign al",
+ "sig nal",
+ "▁gram mar",
+ "▁cor so",
+ "▁cors o",
+ "▁W agner",
+ "▁ge ht",
+ "▁royal e",
+ "▁roy ale",
+ "wa rn",
+ "war n",
+ "w arn",
+ "um bled",
+ "umb led",
+ "umble d",
+ "▁inst it",
+ "▁ins tit",
+ "▁Ш и",
+ "h h",
+ "▁ref uge",
+ "▁favor ite",
+ "ier to",
+ "iert o",
+ "▁cond ado",
+ "▁T her",
+ "▁The r",
+ "▁Th er",
+ "▁человек а",
+ "▁челове ка",
+ "▁F ood",
+ "▁Foo d",
+ "▁Fo od",
+ "▁se izo",
+ "▁sei zo",
+ "▁Init ialize",
+ "▁Initial ize",
+ "▁con nu",
+ "▁conn u",
+ "▁over lap",
+ "▁E mil",
+ "▁Em il",
+ "▁Mart í",
+ "▁жовт ня",
+ "er va",
+ "erv a",
+ "▁bo ats",
+ "▁boat s",
+ "a ções",
+ "▁der rot",
+ "▁m alloc",
+ "▁mal loc",
+ "▁ malloc",
+ "▁con ject",
+ "▁conj ect",
+ "j k",
+ "▁s are",
+ "▁sa re",
+ "▁sar e",
+ "ле мен",
+ "лем ен",
+ "▁s ums",
+ "▁su ms",
+ "▁sum s",
+ "Author ization",
+ "▁K un",
+ "▁Ku n",
+ "]$ ,",
+ "] $,",
+ "geme inde",
+ "gemein de",
+ "g emeinde",
+ "od ot",
+ "odo t",
+ "o dot",
+ "de fin",
+ "def in",
+ "▁e mission",
+ "▁em ission",
+ "▁Кра с",
+ "▁app art",
+ "▁ap part",
+ "▁appar t",
+ "▁stop ping",
+ "▁sto pping",
+ "▁С ред",
+ "▁conj ug",
+ "▁ins ight",
+ "▁Broad cast",
+ "▁PM ID",
+ "▁adv antages",
+ "▁advantage s",
+ "en es",
+ "ene s",
+ "e nes",
+ "▁res idence",
+ "▁resid ence",
+ "lj en",
+ "l jen",
+ "iss eur",
+ "isse ur",
+ "▁pubblic ato",
+ "▁Git Hub",
+ "▁Per u",
+ "▁Pe ru",
+ "▁galax ies",
+ "▁annot ations",
+ "▁annotation s",
+ "ga s",
+ "g as",
+ "▁ré pond",
+ "▁rép ond",
+ "J s",
+ "▁independent ly",
+ "▁independ ently",
+ "N P",
+ "▁in qu",
+ "▁gr ounds",
+ "▁ground s",
+ "Com ponents",
+ "Component s",
+ "▁a nten",
+ "▁an ten",
+ "▁ant en",
+ "▁ante n",
+ "▁ anten",
+ "▁в з",
+ "▁h os",
+ "▁ho s",
+ "▁ hos",
+ "▁s int",
+ "▁si nt",
+ "▁sin t",
+ "▁h iding",
+ "▁hi ding",
+ "▁hid ing",
+ "▁wojew ództ",
+ "Message s",
+ "Mess ages",
+ "▁по каза",
+ "▁пока за",
+ "== =",
+ "= ==",
+ "▁Ab stract",
+ "▁ Abstract",
+ "▁l äng",
+ "▁län g",
+ "▁lä ng",
+ "▁Form ula",
+ "da wn",
+ "d awn",
+ "▁design s",
+ "Im g",
+ "▁Portug uese",
+ "▁incl uy",
+ "▁inclu y",
+ "avig ator",
+ "▁Bro thers",
+ "▁cont inent",
+ "▁contin ent",
+ "▁evident ly",
+ "ra ce",
+ "rac e",
+ "r ace",
+ "ць кого",
+ "▁re ck",
+ "▁rec k",
+ "▁ reck",
+ "▁сер пня",
+ "▁G rey",
+ "▁Gr ey",
+ "▁Gre y",
+ "▁appe al",
+ "▁un like",
+ "▁power shell",
+ "▁pow ershell",
+ "▁powers hell",
+ "▁r acc",
+ "▁ra cc",
+ "▁rac c",
+ "fer s",
+ "fe rs",
+ "f ers",
+ "▁bur ning",
+ "▁burn ing",
+ "fas st",
+ "fass t",
+ "inst alled",
+ "install ed",
+ "▁G ive",
+ "▁Gi ve",
+ "▁col onial",
+ "▁colon ial",
+ "▁ €",
+ "▁R ö",
+ "▁ch rist",
+ "▁chr ist",
+ "ne hm",
+ "neh m",
+ "та м",
+ "▁cor po",
+ "▁con virti",
+ "yt er",
+ "y ter",
+ "S ym",
+ "▁Gree ce",
+ "▁m oth",
+ "▁mo th",
+ "▁mot h",
+ "▁Joh an",
+ "▁Jo han",
+ "▁mon arch",
+ "▁Down load",
+ "▁ Download",
+ "▁c raft",
+ "▁cr aft",
+ "▁cra ft",
+ "▁ craft",
+ "u ž",
+ "▁Lu ke",
+ "▁suf fix",
+ "▁suff ix",
+ "\\ /",
+ "Ha ve",
+ "H ave",
+ "▁ка рь",
+ "▁кар ь",
+ "▁comfort able",
+ "▁t ips",
+ "▁tip s",
+ "▁ti ps",
+ "▁П ісля",
+ "▁бро ја",
+ "▁ин форма",
+ "M Q",
+ "бра н",
+ "б ран",
+ "▁t x",
+ "▁ tx",
+ "▁sl aves",
+ "▁sla ves",
+ "▁slave s",
+ "▁fire wall",
+ "▁For ces",
+ "▁Force s",
+ "at if",
+ "ati f",
+ "▁Qu ellen",
+ "▁thé âtre",
+ "ль ных",
+ "▁располо жен",
+ "▁Det ails",
+ "▁ Details",
+ "k ą",
+ "▁long itud",
+ "IN ST",
+ "▁n aval",
+ "▁na val",
+ "▁nav al",
+ "Fern seh",
+ "es sel",
+ "ess el",
+ "esse l",
+ "Gr ad",
+ "G rad",
+ "▁be lang",
+ "▁bel ang",
+ "▁a ggi",
+ "▁ag gi",
+ "▁ aggi",
+ "Zygote Init",
+ "ł ów",
+ "▁S ug",
+ "▁Su g",
+ "si l",
+ "s il",
+ "▁ex terior",
+ "щ і",
+ "OR D",
+ "en ser",
+ "ens er",
+ "ense r",
+ "▁rapid e",
+ "▁rap ide",
+ "▁тем пера",
+ "in cie",
+ "inci e",
+ "inc ie",
+ "S i",
+ "av am",
+ "ava m",
+ "ar ded",
+ "ard ed",
+ "arde d",
+ "▁Ad ded",
+ "▁Add ed",
+ "End point",
+ "hard t",
+ "har dt",
+ "ст ран",
+ "стра н",
+ "стр ан",
+ "▁est ilo",
+ "▁H az",
+ "▁Ha z",
+ "▁mus ste",
+ "▁muss te",
+ "u o",
+ "ii i",
+ "i ii",
+ "▁ř í",
+ "▁ ří",
+ "an zen",
+ "anz en",
+ "anze n",
+ "же ний",
+ "ah a",
+ "a ha",
+ "ARN ING",
+ "▁re nov",
+ "▁ren ov",
+ "▁div ine",
+ "▁convin ced",
+ "▁hum ans",
+ "▁human s",
+ "▁hu mans",
+ "▁depart ure",
+ "▁Med iter",
+ "▁Medi ter",
+ "q a",
+ "▁poss essed",
+ "▁possess ed",
+ "▁цер кви",
+ "gi v",
+ "g iv",
+ "▁сво ї",
+ "▁Ort ste",
+ "▁Orts te",
+ "R ich",
+ "pu is",
+ "p uis",
+ "in crement",
+ "▁Hann over",
+ "▁u cz",
+ "Do ne",
+ "Don e",
+ "D one",
+ "▁alg uns",
+ "FI X",
+ "F IX",
+ "▁Her itage",
+ "remove Class",
+ "фе р",
+ "ф ер",
+ "▁a bc",
+ "▁ab c",
+ "▁ abc",
+ "D r",
+ "▁се мей",
+ "▁сем ей",
+ "{ :",
+ "▁se ule",
+ "▁seu le",
+ "▁seul e",
+ "zeich nungen",
+ "zeichnung en",
+ "ad dy",
+ "add y",
+ "▁Par ís",
+ "üss eld",
+ "▁re ception",
+ "▁rece ption",
+ "fo lio",
+ "fol io",
+ "ti ny",
+ "t iny",
+ "▁recens ement",
+ "▁N ur",
+ "▁Nu r",
+ "▁k ier",
+ "▁ki er",
+ "▁g mina",
+ "▁gmin a",
+ "sta at",
+ "ánd ose",
+ "че ская",
+ "▁spe aker",
+ "▁speak er",
+ "▁expon ential",
+ "▁exponent ial",
+ "▁D ieu",
+ "▁Die u",
+ "▁Di eu",
+ "▁при з",
+ "▁пр из",
+ "▁Raf ael",
+ "▁gg plot",
+ "▁Tem plate",
+ "▁Temp late",
+ "▁ Template",
+ "ou re",
+ "our e",
+ "o ure",
+ "▁In ner",
+ "▁Inn er",
+ "▁ Inner",
+ "og ne",
+ "ogn e",
+ "ig are",
+ "iga re",
+ "▁Ar te",
+ "▁Art e",
+ "▁C ov",
+ "▁Co v",
+ "▁auf grund",
+ "▁Б ы",
+ "▁cerem ony",
+ "▁S part",
+ "▁Sp art",
+ "ject ive",
+ "y i",
+ "▁in izi",
+ "▁l atin",
+ "▁lat in",
+ "▁Never theless",
+ "▁D one",
+ "▁Do ne",
+ "▁Don e",
+ "▁ Done",
+ "т ря",
+ "▁A rr",
+ "▁Ar r",
+ "▁ Arr",
+ "se ason",
+ "▁скла ду",
+ "▁pod czas",
+ "▁Beaut iful",
+ "▁Weltkrie g",
+ "▁з о",
+ "▁ зо",
+ "▁over come",
+ "▁Pr aha",
+ "▁Pra ha",
+ "▁рай ону",
+ "▁райо ну",
+ "▁район у",
+ "▁sub scription",
+ "▁subs cription",
+ "▁subscri ption",
+ "ig ent",
+ "igen t",
+ "ige nt",
+ "i gent",
+ "▁по ка",
+ "la tex",
+ "lat ex",
+ "late x",
+ "▁b each",
+ "▁be ach",
+ "▁ро ках",
+ "ge g",
+ "g eg",
+ "▁pro bl",
+ "▁prob l",
+ "arg uments",
+ "argument s",
+ "▁organ izations",
+ "▁organiz ations",
+ "▁organization s",
+ "▁N an",
+ "▁Na n",
+ "▁st ones",
+ "▁sto nes",
+ "▁stone s",
+ "▁H unter",
+ "▁Hun ter",
+ "▁regular ly",
+ "шо го",
+ "ш ого",
+ "▁flex ible",
+ "op ts",
+ "opt s",
+ "o pts",
+ "á ř",
+ "wi tz",
+ "w itz",
+ "▁' )",
+ "▁ ')",
+ "PA SS",
+ "P ASS",
+ "▁k raj",
+ "▁kr aj",
+ "▁kra j",
+ "▁f ake",
+ "▁fa ke",
+ "he its",
+ "heit s",
+ "os ph",
+ "osp h",
+ "parse Int",
+ "F ALSE",
+ "▁prof ess",
+ "▁profes s",
+ "pe ople",
+ "▁pre cip",
+ "▁prec ip",
+ "dir name",
+ "▁per pet",
+ "▁Up dated",
+ "▁Update d",
+ "▁ Updated",
+ "ra yed",
+ "ray ed",
+ "▁prov oc",
+ "▁тра вня",
+ "▁трав ня",
+ "▁categ orie",
+ "▁categor ie",
+ "▁те о",
+ "с ну",
+ "ot r",
+ "o tr",
+ "▁Вер хов",
+ "▁comp ét",
+ "Co st",
+ "C ost",
+ "▁w ider",
+ "▁wide r",
+ "▁wid er",
+ "▁Ob viously",
+ "пи сан",
+ "писа н",
+ "пис ан",
+ "▁на стоя",
+ "▁see king",
+ "▁seek ing",
+ "() ),",
+ "()) ,",
+ "( )),",
+ "▁é quipe",
+ "▁équip e",
+ "▁ équipe",
+ "▁comm its",
+ "▁commit s",
+ "▁S vens",
+ "▁Sv ens",
+ "я бре",
+ "at ern",
+ "ate rn",
+ "ater n",
+ "a tern",
+ "▁h eter",
+ "▁he ter",
+ "▁het er",
+ "▁Boot strap",
+ "én é",
+ "é né",
+ "▁deriv atives",
+ "▁derivative s",
+ "▁Det roit",
+ "▁provin cial",
+ "▁provincia l",
+ "onom ie",
+ "E B",
+ "▁c uer",
+ "▁cu er",
+ "▁от носи",
+ "▁отно си",
+ "▁не й",
+ "▁н ей",
+ "▁ ней",
+ ") ».",
+ "▁Ci udad",
+ "IA L",
+ "I AL",
+ "zy st",
+ "z yst",
+ ")\" )",
+ ") \")",
+ "▁Al c",
+ "bl ogs",
+ "blog s",
+ "blo gs",
+ "b logs",
+ "▁par mi",
+ "▁Album s",
+ "▁Alb ums",
+ "▁Bo liv",
+ "▁Bol iv",
+ "▁c lés",
+ "▁cl és",
+ "Product s",
+ "uer do",
+ "▁ge lang",
+ "▁gel ang",
+ "zn ik",
+ "z nik",
+ "ha gen",
+ "h agen",
+ "an onymous",
+ "▁sv g",
+ "▁ svg",
+ "▁Cons eil",
+ "▁Conse il",
+ "▁A ri",
+ "▁Ar i",
+ "col i",
+ "co li",
+ "c oli",
+ "▁c zy",
+ "▁cz y",
+ "▁ czy",
+ "▁C V",
+ "▁ CV",
+ "▁f ord",
+ "▁for d",
+ "▁fo rd",
+ "▁ ford",
+ "▁Au ßer",
+ "▁Auß er",
+ "▁C I",
+ "▁ CI",
+ "▁t empt",
+ "▁tem pt",
+ "▁temp t",
+ "▁Organ isation",
+ "á š",
+ "▁cy cles",
+ "▁cycle s",
+ "▁cycl es",
+ "▁ges lacht",
+ "▁лю дей",
+ "ým i",
+ "ý mi",
+ "▁S pieler",
+ "▁Spiel er",
+ "ef e",
+ "e fe",
+ "▁Mar vel",
+ "▁por tal",
+ "▁port al",
+ "▁porta l",
+ "▁ portal",
+ "▁Сер г",
+ "▁g rado",
+ "▁gr ado",
+ "▁gra do",
+ "▁grad o",
+ "▁hand lers",
+ "▁handle rs",
+ "▁handler s",
+ "▁Inter face",
+ "▁ Interface",
+ "AM E",
+ "A ME",
+ "▁ser iously",
+ "▁serious ly",
+ "▁B inding",
+ "▁Bin ding",
+ "▁Bind ing",
+ "▁ Binding",
+ "▁R ang",
+ "▁Ra ng",
+ "▁Ran g",
+ "▁n ada",
+ "▁na da",
+ "▁nad a",
+ "oc e",
+ "o ce",
+ "▁inte gra",
+ "▁integr a",
+ "oc racy",
+ "ocr acy",
+ "▁аль бо",
+ "▁st ability",
+ "▁stabil ity",
+ "Un s",
+ "U ns",
+ "▁v eter",
+ "▁ve ter",
+ "-- ----+",
+ "---- --+",
+ "--- ---+",
+ "------ +",
+ "----- -+",
+ "▁se rait",
+ "▁ser ait",
+ "▁sera it",
+ "▁om itted",
+ "▁uncertain ty",
+ "on ian",
+ "oni an",
+ "onia n",
+ "▁re sto",
+ "▁r esto",
+ "▁res to",
+ "▁rest o",
+ "▁же лез",
+ "▁од ной",
+ "▁одно й",
+ "▁Bevölker ung",
+ "▁K raft",
+ "▁Kr aft",
+ "▁Kra ft",
+ "ст р",
+ "▁Mos cow",
+ "la ne",
+ "lan e",
+ "l ane",
+ "ar ab",
+ "ara b",
+ "a rab",
+ "▁s pole",
+ "▁sp ole",
+ "▁spo le",
+ "▁сво его",
+ "? :",
+ "ST ART",
+ "▁ин тер",
+ "▁инте р",
+ "▁sym pt",
+ "▁Loren zo",
+ "▁ej ec",
+ "▁pros per",
+ "DA T",
+ "D AT",
+ "лимпи й",
+ "▁sh apes",
+ "▁shape s",
+ "value Of",
+ "▁associ ate",
+ "▁Med ien",
+ "▁Medi en",
+ "EN V",
+ "▁с ре",
+ "▁држа ве",
+ "▁the ories",
+ "he b",
+ "h eb",
+ "▁Way ne",
+ "▁String Builder",
+ "iw ers",
+ "i wers",
+ "▁M aps",
+ "▁Ma ps",
+ "▁Map s",
+ "Ph ys",
+ "\\} \\",
+ "\\ }\\",
+ "▁P arte",
+ "▁Par te",
+ "▁Part e",
+ "▁Hud son",
+ "ло н",
+ "л он",
+ "L ng",
+ "▁р ы",
+ "▁ ры",
+ "ст ей",
+ "сте й",
+ "с тей",
+ "la u",
+ "l au",
+ "an cer",
+ "ance r",
+ "anc er",
+ "▁Co ppa",
+ "▁Cop pa",
+ "▁вій сь",
+ "▁u cc",
+ "▁Pat tern",
+ "▁ Pattern",
+ "▁gar bage",
+ "▁Gon zález",
+ "▁Encyc lop",
+ "et ten",
+ "ett en",
+ "ette n",
+ "Ex ternal",
+ "Ext ernal",
+ "RE F",
+ "R EF",
+ "> ;",
+ "lij ke",
+ "lijk e",
+ "▁inter sect",
+ "▁Un less",
+ "▁de eper",
+ "▁deep er",
+ "▁ж і",
+ "▁ жі",
+ "de nt",
+ "den t",
+ "d ent",
+ "le f",
+ "l ef",
+ "▁ch anson",
+ "▁diff us",
+ "▁pr imi",
+ "▁prim i",
+ "▁pri mi",
+ "▁W ieder",
+ "▁Wi eder",
+ "▁Wie der",
+ "▁a ws",
+ "▁aw s",
+ "▁ aws",
+ "ow ana",
+ "owa na",
+ "owan a",
+ "▁so ciale",
+ "▁social e",
+ "▁soci ale",
+ "▁soc iale",
+ "ik k",
+ "i kk",
+ "ль ной",
+ "льно й",
+ "▁div isions",
+ "▁division s",
+ "▁divis ions",
+ "ло со",
+ "▁Cl aud",
+ "▁Cla ud",
+ "▁Y a",
+ "▁v oce",
+ "▁vo ce",
+ "▁voc e",
+ "▁B ranch",
+ "▁Br anch",
+ "▁Bran ch",
+ "▁f itted",
+ "▁fit ted",
+ "or r",
+ "o rr",
+ "ôt el",
+ "ô tel",
+ "st roke",
+ "str oke",
+ "list ener",
+ "listen er",
+ "im an",
+ "ima n",
+ "i man",
+ "во сто",
+ "▁Sh ah",
+ "Int roduction",
+ "▁new line",
+ "▁t ile",
+ "▁til e",
+ "▁ti le",
+ "'] ))",
+ "']) )",
+ "' ]))",
+ "▁trav aux",
+ "▁trava ux",
+ "CON FIG",
+ "▁quadr atic",
+ "on neur",
+ "onn eur",
+ "onne ur",
+ "▁Gi org",
+ "▁ident ific",
+ "éric aine",
+ "érica ine",
+ "▁UI View",
+ "▁ UIView",
+ "▁Lib eral",
+ "▁Liber al",
+ "▁K och",
+ "▁Ko ch",
+ "▁Berlin er",
+ "▁Berl iner",
+ "▁not ifications",
+ "▁notification s",
+ "▁Su san",
+ "▁Sus an",
+ "▁c adre",
+ "▁cad re",
+ "▁K loster",
+ "▁Kl oster",
+ "▁exam ine",
+ "▁е дин",
+ "▁еди н",
+ "▁UN ION",
+ "▁al ten",
+ "▁alt en",
+ "▁alte n",
+ "▁f init",
+ "▁fin it",
+ "▁fi nit",
+ "▁pe dig",
+ "▁ped ig",
+ "cy k",
+ "c yk",
+ "▁mouv ement",
+ "▁mou vement",
+ "IO S",
+ "I OS",
+ "▁бри тан",
+ "▁b out",
+ "▁bo ut",
+ "▁bou t",
+ "▁ав тор",
+ "▁авто р",
+ "ниц тво",
+ "ет о",
+ "е то",
+ "le ra",
+ "ler a",
+ "l era",
+ "cl s",
+ "c ls",
+ "▁L ey",
+ "▁Le y",
+ "am y",
+ "a my",
+ "ag ens",
+ "age ns",
+ "agen s",
+ "a gens",
+ "as hed",
+ "ash ed",
+ "▁ok rę",
+ "г ро",
+ "el lett",
+ "ell ett",
+ "elle tt",
+ "▁F ellow",
+ "▁Fel low",
+ "▁manif old",
+ "$) ,",
+ "$ ),",
+ "ld er",
+ "l der",
+ "▁v oz",
+ "▁vo z",
+ "▁be gg",
+ "▁beg g",
+ "▁b aron",
+ "▁bar on",
+ "▁ba ron",
+ "▁f id",
+ "▁fi d",
+ "▁f iring",
+ "▁fi ring",
+ "▁fir ing",
+ "il da",
+ "ild a",
+ "de k",
+ "d ek",
+ "A U",
+ "it are",
+ "ita re",
+ "itar e",
+ "▁A ra",
+ "▁Ar a",
+ "▁Ex it",
+ "▁ Exit",
+ "▁cin emat",
+ "▁cinema t",
+ "▁int ros",
+ "▁intr os",
+ "▁intro s",
+ "▁contact s",
+ "пе ни",
+ "пен и",
+ "▁m öglich",
+ "▁Singap ore",
+ "str öm",
+ "▁H ern",
+ "▁He rn",
+ "▁Her n",
+ "▁six th",
+ "▁public ations",
+ "▁pub lications",
+ "▁publication s",
+ "vi e",
+ "v ie",
+ "▁H at",
+ "▁Ha t",
+ "▁accept ing",
+ "á c",
+ "st wo",
+ "s two",
+ "▁quiet ly",
+ "Ph oto",
+ "▁b asket",
+ "▁bas ket",
+ "▁eigen values",
+ "▁mé dec",
+ "▁méd ec",
+ "▁O limp",
+ "▁Ol imp",
+ "▁цер ков",
+ "al in",
+ "ali n",
+ "a lin",
+ "con sum",
+ "cons um",
+ "▁l assen",
+ "▁las sen",
+ "▁ lassen",
+ "▁ан ти",
+ "▁S eq",
+ "▁Se q",
+ "▁ Seq",
+ "\"; \r",
+ "\" ;\r",
+ "ra re",
+ "rar e",
+ "r are",
+ "▁$ |\\",
+ "▁$| \\",
+ "▁n ick",
+ "▁ni ck",
+ "▁nic k",
+ "▁ nick",
+ "df lare",
+ "V ec",
+ "bind ung",
+ "▁b g",
+ "▁ bg",
+ "ch anges",
+ "change s",
+ "chan ges",
+ "Day s",
+ "Da ys",
+ "D ays",
+ "▁M ouse",
+ "▁Mo use",
+ "▁Mou se",
+ "▁ Mouse",
+ "▁wait ed",
+ "▁wa ited",
+ "▁Tom atoes",
+ "▁f as",
+ "▁fa s",
+ "▁ fas",
+ "ver te",
+ "vert e",
+ "v erte",
+ "▁success ion",
+ "▁succ ession",
+ "со р",
+ "с ор",
+ "▁s ols",
+ "▁so ls",
+ "▁sol s",
+ "▁R ender",
+ "▁Re nder",
+ "▁Ren der",
+ "▁ Render",
+ "▁lead ership",
+ "▁leader ship",
+ "▁leaders hip",
+ "▁signific ance",
+ "▁ga uche",
+ "▁gau che",
+ "ca no",
+ "can o",
+ "c ano",
+ "▁P ie",
+ "▁Pi e",
+ "enso ort",
+ "▁cam bio",
+ "▁camb io",
+ "▁у з",
+ "▁ende av",
+ "Comp leted",
+ "Comple ted",
+ "Complete d",
+ "▁Архив ная",
+ "j d",
+ "ór ico",
+ "ó rico",
+ "▁church es",
+ "▁an imate",
+ "▁anim ate",
+ "▁ani mate",
+ "▁ animate",
+ "S G",
+ "comp ute",
+ "comput e",
+ "▁uniform ly",
+ "IN IT",
+ "ll es",
+ "lle s",
+ "l les",
+ "Http Request",
+ "К о",
+ "Di ff",
+ "D iff",
+ "▁s ah",
+ "▁sa h",
+ "air o",
+ "ai ro",
+ "a iro",
+ "may be",
+ "UT E",
+ "U TE",
+ "▁D ow",
+ "▁Do w",
+ "hu man",
+ "hum an",
+ "h uman",
+ "▁au rait",
+ "▁aur ait",
+ "dar k",
+ "d ark",
+ "▁re pair",
+ "▁rep air",
+ "▁n er",
+ "▁ne r",
+ "▁ ner",
+ "▁D abei",
+ "▁Da bei",
+ "▁Bo tan",
+ "▁Bot an",
+ "Or iginal",
+ "Origin al",
+ "az ă",
+ "▁N AT",
+ "▁NA T",
+ "im per",
+ "imp er",
+ "▁Y outh",
+ "▁You th",
+ "th es",
+ "the s",
+ "t hes",
+ "▁окру га",
+ "▁F lo",
+ "▁Fl o",
+ "▁break fast",
+ "ur ls",
+ "url s",
+ "▁über nahm",
+ "ár ios",
+ "ário s",
+ "á rios",
+ "▁O range",
+ "▁Or ange",
+ "▁Aff airs",
+ "sk e",
+ "s ke",
+ "▁not ify",
+ "▁ notify",
+ "imo ine",
+ "▁Ar ena",
+ "▁Are na",
+ "▁lib eral",
+ "▁liber al",
+ "▁o bec",
+ "▁ob ec",
+ "if a",
+ "i fa",
+ "gu ez",
+ "gue z",
+ "g uez",
+ "ion o",
+ "io no",
+ "i ono",
+ "пера тор",
+ "▁ret ained",
+ "▁retain ed",
+ "fa iled",
+ "fail ed",
+ "bin e",
+ "bi ne",
+ "b ine",
+ "т ных",
+ "▁CG Rect",
+ "cam era",
+ "ide note",
+ "iden ote",
+ "K B",
+ "▁l ights",
+ "▁light s",
+ "▁P ictures",
+ "▁Picture s",
+ "▁Squad ron",
+ "▁V olk",
+ "▁Vol k",
+ "▁b urg",
+ "▁bu rg",
+ "▁bur g",
+ "▁ burg",
+ ", ]",
+ "G i",
+ "ê que",
+ "make Text",
+ "▁every body",
+ "▁Hy per",
+ "▁Hyp er",
+ "▁De ux",
+ "▁gl ory",
+ "▁glo ry",
+ "pres entation",
+ "present ation",
+ "on ica",
+ "oni ca",
+ "onic a",
+ "o nica",
+ "▁fr ère",
+ "ag et",
+ "age t",
+ "a get",
+ "▁h ints",
+ "▁hint s",
+ "▁hin ts",
+ "▁t unnel",
+ "▁tun nel",
+ "▁E j",
+ "ál is",
+ "á lis",
+ "▁V iv",
+ "▁Vi v",
+ "ствен ных",
+ "▁c aps",
+ "▁cap s",
+ "▁ca ps",
+ "PA RT",
+ "PAR T",
+ "P ART",
+ "oc i",
+ "o ci",
+ "▁p rices",
+ "▁pr ices",
+ "▁pri ces",
+ "▁price s",
+ "curr ency",
+ "c urrency",
+ "▁a chter",
+ "▁ach ter",
+ "▁acht er",
+ "rom agnet",
+ "ge nder",
+ "gen der",
+ "gende r",
+ "g ender",
+ "▁s uis",
+ "▁su is",
+ "vers ions",
+ "version s",
+ "▁Tr aining",
+ "▁Tra ining",
+ "▁Train ing",
+ "in side",
+ "ins ide",
+ "eg e",
+ "e ge",
+ "▁tot ale",
+ "▁total e",
+ "▁D aar",
+ "▁Da ar",
+ "▁grud nia",
+ "▁I er",
+ "▁occasion s",
+ "▁occas ions",
+ "▁k de",
+ "▁tensor flow",
+ "▁ tensorflow",
+ "▁ó r",
+ "▁ ór",
+ "Method s",
+ "▁loop ing",
+ "▁direct eur",
+ "k ę",
+ "▁is omorphism",
+ "▁Jo ão",
+ "▁al igned",
+ "▁align ed",
+ "▁ aligned",
+ "он ов",
+ "о нов",
+ "ur ger",
+ "urg er",
+ "▁n ova",
+ "▁no va",
+ "▁nov a",
+ "mor row",
+ "m orrow",
+ "al tern",
+ "alt ern",
+ "alter n",
+ "H D",
+ "▁m arqu",
+ "▁mar qu",
+ "at ivas",
+ "ativ as",
+ "ati vas",
+ "ativa s",
+ "gg reg",
+ "g greg",
+ "▁anci en",
+ "▁anc ien",
+ "ni t",
+ "n it",
+ "▁sec ured",
+ "▁secure d",
+ "mi er",
+ "m ier",
+ "▁O le",
+ "▁Ol e",
+ "▁ин те",
+ "▁m inus",
+ "▁min us",
+ "▁ minus",
+ "▁clear er",
+ "▁n ello",
+ "▁nel lo",
+ "▁nell o",
+ "▁információ k",
+ "▁pro pre",
+ "▁prop re",
+ "{ .",
+ "il og",
+ "ilo g",
+ "i log",
+ "▁Qu ick",
+ "▁acc us",
+ "▁ac cus",
+ "emp loyee",
+ "▁з у",
+ "▁ зу",
+ "ць кий",
+ "фі цій",
+ "▁пу бли",
+ "▁ публи",
+ "▁b ent",
+ "▁be nt",
+ "▁ben t",
+ "▁по зво",
+ "▁П ор",
+ "▁По р",
+ "áz í",
+ "án ico",
+ "á nico",
+ "empty set",
+ "▁sur tout",
+ "re no",
+ "ren o",
+ "r eno",
+ "un ya",
+ "▁у ез",
+ "▁Mill ionen",
+ "▁listop ada",
+ "▁M aine",
+ "▁Ma ine",
+ "▁Main e",
+ "▁Mai ne",
+ "▁gru pos",
+ "▁grupo s",
+ "▁grup os",
+ "▁St orage",
+ "▁Sto rage",
+ "▁ Storage",
+ "▁app le",
+ "▁ap ple",
+ "▁ apple",
+ "▁L ö",
+ "ou sed",
+ "ous ed",
+ "ouse d",
+ "o used",
+ "д ро",
+ "sc i",
+ "s ci",
+ "▁hi bernate",
+ "▁ hibernate",
+ "do g",
+ "d og",
+ "▁во сто",
+ "▁вос то",
+ "▁ восто",
+ "▁intens ity",
+ "leg end",
+ "lege nd",
+ "legen d",
+ "▁W ille",
+ "▁Will e",
+ "▁Wil le",
+ "▁Wi lle",
+ "▁szer int",
+ "ges ellschaft",
+ "▁L iving",
+ "▁Li ving",
+ "▁Liv ing",
+ "al lo",
+ "all o",
+ "▁S plit",
+ "▁Sp lit",
+ "▁ Split",
+ "dr u",
+ "d ru",
+ "ne ed",
+ "n eed",
+ "▁Дж он",
+ "▁Sw iss",
+ "▁sp raw",
+ "▁spr aw",
+ "▁be ho",
+ "▁beh o",
+ "▁fot ograf",
+ "▁ren contre",
+ "▁k is",
+ "▁ki s",
+ "▁sign ing",
+ "▁sig ning",
+ "ak ult",
+ "aku lt",
+ "▁index ing",
+ "ap or",
+ "a por",
+ "▁con ception",
+ "▁concept ion",
+ "▁conce ption",
+ "ag greg",
+ "agg reg",
+ "a ggreg",
+ "▁Са вез",
+ "▁aff air",
+ "ě ní",
+ "A ugust",
+ "▁се кре",
+ "▁miesz kań",
+ "UI Image",
+ "▁b ishop",
+ "▁bi shop",
+ "▁ bishop",
+ "▁serv ants",
+ "▁servant s",
+ "▁tr ail",
+ "▁tra il",
+ "di git",
+ "dig it",
+ "▁jo ins",
+ "▁join s",
+ "▁N ear",
+ "▁Ne ar",
+ "öff entlich",
+ "> {",
+ "▁sk ład",
+ "ge führt",
+ "gef ührt",
+ "▁Hol z",
+ "▁Milit är",
+ "ach i",
+ "ac hi",
+ "a chi",
+ "Up per",
+ "U pper",
+ "pi ne",
+ "pin e",
+ "p ine",
+ "ut zt",
+ "utz t",
+ "▁nu ova",
+ "ibr ation",
+ "▁B ien",
+ "▁Bi en",
+ "▁пер вый",
+ "▁первы й",
+ "▁Cre ating",
+ "On ce",
+ "▁ein mal",
+ "▁ge ometric",
+ "▁geomet ric",
+ "st vo",
+ "▁k W",
+ "▁decom position",
+ "▁com edy",
+ "▁come dy",
+ "▁activ ation",
+ "▁an gry",
+ "▁ang ry",
+ "ill eurs",
+ "ille urs",
+ "▁inst antly",
+ "▁instant ly",
+ "▁suggest ing",
+ "▁C lay",
+ "▁Cl ay",
+ "▁Cla y",
+ "co t",
+ "c ot",
+ "▁G én",
+ "▁Gé n",
+ "($ (",
+ "( $(",
+ "un wrap",
+ "▁lif ted",
+ "▁lift ed",
+ "▁K it",
+ "▁Ki t",
+ "▁ Kit",
+ "▁l inea",
+ "▁li nea",
+ "▁line a",
+ "▁lin ea",
+ "о к",
+ "ha rt",
+ "har t",
+ "h art",
+ "-> _",
+ "▁n uit",
+ "▁nu it",
+ "▁Iss ue",
+ "ли и",
+ "▁r öm",
+ "Task s",
+ "▁S r",
+ "▁se is",
+ "▁sei s",
+ "as ia",
+ "asi a",
+ "}} $.",
+ "}}$ .",
+ "} }$.",
+ ": {",
+ "control s",
+ "contr ols",
+ "▁S tim",
+ "▁St im",
+ "▁Re cht",
+ "▁Rec ht",
+ "ocia ción",
+ "oci ación",
+ "▁N atal",
+ "▁Na tal",
+ "▁Nat al",
+ "▁Philipp ines",
+ "ul en",
+ "ule n",
+ "u len",
+ "F ixed",
+ "▁switch ed",
+ "Z ip",
+ "os pel",
+ "osp el",
+ "▁нача ле",
+ "▁B lan",
+ "▁Bl an",
+ "▁Bla n",
+ "ur st",
+ "urs t",
+ "▁aut our",
+ "▁auto ur",
+ "C a",
+ "▁lat itude",
+ "▁F rei",
+ "▁Fre i",
+ "▁Fr ei",
+ "▁Mus ée",
+ "▁K urz",
+ "▁Kur z",
+ "▁Ku rz",
+ "▁reg ião",
+ "sw ap",
+ "▁h ate",
+ "▁ha te",
+ "▁hat e",
+ "▁mod ifications",
+ "▁modification s",
+ "▁modific ations",
+ "▁К ом",
+ "▁Ко м",
+ "▁Anto ine",
+ "ug a",
+ "u ga",
+ "RE CT",
+ "R ECT",
+ "ét er",
+ "é ter",
+ "G ROUP",
+ "▁sacr ific",
+ "▁W he",
+ "▁Wh e",
+ "▁Ste vens",
+ "▁Steve ns",
+ "▁Steven s",
+ "olog ische",
+ "Sum mary",
+ "ob s",
+ "o bs",
+ "hn en",
+ "h nen",
+ "< %=",
+ "di enst",
+ "d ienst",
+ "re mark",
+ "rem ark",
+ "r emark",
+ "▁veröff entlicht",
+ "е л",
+ "▁M ock",
+ "▁Mo ck",
+ "▁ Mock",
+ "▁Ль в",
+ "▁tr ês",
+ "g b",
+ "▁celebr ated",
+ "▁E b",
+ "▁c osta",
+ "▁co sta",
+ "▁cost a",
+ "▁cos ta",
+ "▁Ge ographic",
+ "▁att achment",
+ "▁attach ment",
+ "mann schaft",
+ "▁depend ence",
+ "� �",
+ "▁att itude",
+ "et al",
+ "eta l",
+ "e tal",
+ "vi c",
+ "v ic",
+ "ba ut",
+ "bau t",
+ "b aut",
+ "▁д ов",
+ "▁до в",
+ "▁ дов",
+ "▁inter ven",
+ "▁G ü",
+ "ón ica",
+ "ó nica",
+ "▁P on",
+ "▁Po n",
+ "▁dispon ible",
+ "▁F eb",
+ "▁Fe b",
+ "▁wor ship",
+ "▁Specific ally",
+ "H y",
+ "ij u",
+ "i ju",
+ "▁c b",
+ "▁ cb",
+ "▁sp ac",
+ "lev eland",
+ "level and",
+ "▁local idad",
+ "▁prec eding",
+ "▁preced ing",
+ "▁H essen",
+ "x p",
+ "▁W ein",
+ "▁We in",
+ "▁Wei n",
+ "▁Rom â",
+ "▁gi orno",
+ "▁gior no",
+ "▁квіт ня",
+ "lla ços",
+ "▁Academ ia",
+ "▁k ül",
+ "▁Å rs",
+ "▁на ј",
+ "uc lide",
+ "Inter net",
+ "Intern et",
+ "or ton",
+ "ort on",
+ "▁c orn",
+ "▁cor n",
+ "▁co rn",
+ "я ми",
+ "▁\" *",
+ "▁Fel ix",
+ "ap at",
+ "apa t",
+ "a pat",
+ "▁сво и",
+ "MI T",
+ "M IT",
+ "ma de",
+ "mad e",
+ "m ade",
+ "▁lo comot",
+ "хо да",
+ "ход а",
+ "F P",
+ "▁p m",
+ "▁ pm",
+ ".* ;",
+ "▁H amm",
+ "▁Ha mm",
+ "▁Ham m",
+ "` }",
+ "Layout Inflater",
+ "== \"",
+ "= =\"",
+ "▁E ur",
+ "▁Eu r",
+ "▁d ogs",
+ "▁do gs",
+ "▁dog s",
+ "же нии",
+ "▁a zon",
+ "▁az on",
+ "▁ azon",
+ "▁em ulator",
+ "▁r icon",
+ "▁ric on",
+ "▁ri con",
+ "be eld",
+ "▁н у",
+ "▁ ну",
+ "▁approxim ate",
+ "L M",
+ "▁B ond",
+ "▁Bo nd",
+ "▁Bon d",
+ "▁en h",
+ "ęd z",
+ "ę dz",
+ "▁s olit",
+ "▁so lit",
+ "▁sol it",
+ "Relative Layout",
+ "et eor",
+ "ete or",
+ "ament os",
+ "amento s",
+ "▁in direct",
+ "▁ind irect",
+ "ib ől",
+ "▁g ros",
+ "▁gr os",
+ "▁gro s",
+ "▁Original s",
+ "▁Origin als",
+ "▁Orig inals",
+ "comm ands",
+ "command s",
+ "Ex port",
+ "Exp ort",
+ "▁A vec",
+ "▁Av ec",
+ "▁sole mn",
+ "▁solem n",
+ "▁correct ion",
+ "▁corre ction",
+ "▁corr ection",
+ "▁про води",
+ "▁прово ди",
+ "▁Mo sk",
+ "▁Mos k",
+ "▁по до",
+ "▁под о",
+ "▁geb ied",
+ "▁nast ęp",
+ "▁D river",
+ "▁Dr iver",
+ "▁Drive r",
+ "▁ Driver",
+ "▁O ok",
+ "▁V ec",
+ "▁Ve c",
+ "▁ Vec",
+ "▁lung o",
+ "▁lun go",
+ "fi cos",
+ "fic os",
+ "fico s",
+ "f icos",
+ "▁s vol",
+ "▁sv ol",
+ "▁svo l",
+ "▁k id",
+ "▁ki d",
+ "n ja",
+ "▁H r",
+ "▁под дер",
+ "▁vis ibility",
+ "▁ visibility",
+ "▁M éd",
+ "▁Mé d",
+ "▁c pu",
+ "▁cp u",
+ "▁ cpu",
+ "dis cussion",
+ "As set",
+ "Ass et",
+ "▁def ense",
+ "▁Any one",
+ "▁Just in",
+ "is zt",
+ "isz t",
+ "▁Coll ins",
+ "▁Val ent",
+ "▁P ale",
+ "▁Pa le",
+ "▁Pal e",
+ "▁f uel",
+ "▁fue l",
+ "▁fu el",
+ "▁n ose",
+ "▁no se",
+ "▁nos e",
+ "rí guez",
+ "▁Sch les",
+ "▁Schl es",
+ "▁Mal ays",
+ "▁com mut",
+ "▁comm ut",
+ "dr o",
+ "d ro",
+ "ui ng",
+ "u ing",
+ "▁R ico",
+ "▁Ric o",
+ "▁Ri co",
+ "▁Em ma",
+ "or p",
+ "o rp",
+ "▁K irk",
+ "▁Kir k",
+ "▁Qu ando",
+ "▁Ne ue",
+ "▁Neu e",
+ "▁de mande",
+ "▁dem ande",
+ "▁demand e",
+ "▁C over",
+ "▁Co ver",
+ "▁Cov er",
+ "▁res cue",
+ "▁gew ählt",
+ "▁Cal endar",
+ "▁ Calendar",
+ "▁Mad onna",
+ "W P",
+ "os hi",
+ "osh i",
+ "▁M aven",
+ "▁Ma ven",
+ "▁b elle",
+ "▁be lle",
+ "▁bel le",
+ "▁bell e",
+ "▁w x",
+ "▁ wx",
+ "▁su gar",
+ "▁sug ar",
+ "▁Bet rieb",
+ "▁equilib rium",
+ "E AR",
+ "▁text s",
+ "▁tex ts",
+ "сло в",
+ "с лов",
+ "▁czerw ca",
+ "▁D üsseld",
+ "▁EL SE",
+ "▁am ery",
+ "▁amer y",
+ "▁a ni",
+ "▁an i",
+ "▁ ani",
+ "▁o bey",
+ "▁ob ey",
+ "▁N ell",
+ "▁Ne ll",
+ "▁Nel l",
+ "▁in ne",
+ "▁inn e",
+ "▁т ро",
+ "▁ тро",
+ "F D",
+ "cc o",
+ "c co",
+ "▁Z ob",
+ "▁Zo b",
+ "al ette",
+ "ale tte",
+ "alet te",
+ "a lette",
+ "▁má jus",
+ "ect ed",
+ "ec ted",
+ "e cted",
+ "▁Tur key",
+ "▁Turk ey",
+ "▁Wh ether",
+ "▁Whe ther",
+ "q i",
+ "▁ш то",
+ "▁head quarters",
+ "en di",
+ "end i",
+ "ar us",
+ "aru s",
+ "a rus",
+ "op us",
+ "o pus",
+ "▁з оло",
+ "▁зо ло",
+ "▁de stru",
+ "▁dest ru",
+ "▁L ok",
+ "▁Lo k",
+ "▁satisf action",
+ "() \r",
+ "( )\r",
+ "▁Т ер",
+ "▁Те р",
+ "Jo se",
+ "J ose",
+ "▁con quer",
+ "▁conqu er",
+ "▁E ffect",
+ "▁ Effect",
+ "Layout Params",
+ "ie z",
+ "i ez",
+ "▁extern s",
+ "▁gegen über",
+ "▁E SP",
+ "▁ES P",
+ "ol ta",
+ "olt a",
+ "process or",
+ "proc essor",
+ "▁K ult",
+ "▁Ku lt",
+ "▁Atl anta",
+ "▁t ier",
+ "▁ti er",
+ "▁tie r",
+ "Oper ator",
+ "▁ди а",
+ "▁пи сь",
+ "▁gro ß",
+ "▁he arts",
+ "▁heart s",
+ "▁hear ts",
+ "▁mill imeter",
+ "al though",
+ "alth ough",
+ "al les",
+ "all es",
+ "alle s",
+ "a lles",
+ "▁Mag ic",
+ "tr aining",
+ "tra ining",
+ "train ing",
+ "ol ine",
+ "oli ne",
+ "olin e",
+ "o line",
+ "▁орган і",
+ ">\\< ^",
+ "> \\<^",
+ "ці аль",
+ "ex ports",
+ "export s",
+ "Work book",
+ "▁вере сня",
+ "▁t eles",
+ "▁te les",
+ "▁tele s",
+ "▁tel es",
+ "▁econom y",
+ "▁econ omy",
+ "▁ec onomy",
+ "▁t rap",
+ "▁tr ap",
+ "▁tra p",
+ "▁ref use",
+ "▁str anger",
+ "▁strange r",
+ "▁stran ger",
+ "▁inst inct",
+ "по да",
+ "ol an",
+ "ola n",
+ "o lan",
+ "▁n ing",
+ "▁ni ng",
+ "▁nin g",
+ "▁ ning",
+ "inf late",
+ "infl ate",
+ "itat ea",
+ "itate a",
+ "ack s",
+ "ac ks",
+ "a cks",
+ "▁J oy",
+ "▁Jo y",
+ "FL AG",
+ "FLA G",
+ "ail and",
+ "ai land",
+ "▁sort i",
+ "▁sor ti",
+ "▁в пер",
+ "▁p én",
+ "▁pé n",
+ "Not hing",
+ "No thing",
+ "N othing",
+ "▁sz áz",
+ "▁Á ng",
+ "▁A UT",
+ "▁ AUT",
+ "Act ions",
+ "Action s",
+ "A ctions",
+ "E very",
+ "▁чер вня",
+ "▁авто мо",
+ "▁rout ine",
+ "▁e struct",
+ "▁est ruct",
+ "▁G ang",
+ "▁Ga ng",
+ "▁Gan g",
+ "▁h oles",
+ "▁ho les",
+ "▁hol es",
+ "▁hole s",
+ "th esis",
+ "thes is",
+ "▁con cl",
+ "▁conc l",
+ "▁p é",
+ "ri ers",
+ "rie rs",
+ "rier s",
+ "r iers",
+ "ро вой",
+ "рово й",
+ "р овой",
+ "ad ic",
+ "adi c",
+ "a dic",
+ "Sp eed",
+ "Spe ed",
+ "▁command ed",
+ "▁N azionale",
+ "▁Naz ionale",
+ "Man aged",
+ "▁DE CLARE",
+ "▁se dan",
+ "▁sed an",
+ "String s",
+ "Str ings",
+ "▁sa cred",
+ "▁sac red",
+ "▁sacr ed",
+ "ter such",
+ "ters uch",
+ "▁abit anti",
+ "br it",
+ "b rit",
+ "▁N CAA",
+ "▁NC AA",
+ "▁С П",
+ "▁a ged",
+ "▁ag ed",
+ "▁age d",
+ "▁ aged",
+ "▁Ch iesa",
+ "▁Chi esa",
+ "▁re vision",
+ "▁rev ision",
+ "▁revis ion",
+ "op ro",
+ "o pro",
+ "▁over write",
+ "emb ros",
+ "embro s",
+ "▁sort ie",
+ "▁sorti e",
+ "▁ot ten",
+ "▁ott en",
+ "xi v",
+ "x iv",
+ "▁d eli",
+ "▁de li",
+ "▁del i",
+ "▁A sp",
+ "▁As p",
+ "▁b alls",
+ "▁bal ls",
+ "▁ball s",
+ "ka f",
+ "k af",
+ "▁br ave",
+ "▁bra ve",
+ "▁все го",
+ "▁вс его",
+ "eg n",
+ "e gn",
+ "jp eg",
+ "▁O sten",
+ "▁Os ten",
+ "▁Ost en",
+ "Const ants",
+ "▁Inf antry",
+ "▁N ev",
+ "▁Ne v",
+ "▁я ких",
+ "▁як их",
+ "▁му ниципа",
+ "ci ja",
+ "c ija",
+ "▁p oem",
+ "▁po em",
+ "▁ne gro",
+ "▁neg ro",
+ "ха р",
+ "х ар",
+ "▁A sk",
+ "▁As k",
+ "▁a vo",
+ "▁av o",
+ "▁ avo",
+ "▁Me yer",
+ "▁Mey er",
+ "▁W esten",
+ "▁We sten",
+ "▁West en",
+ "▁Wes ten",
+ "▁o ko",
+ "▁ok o",
+ "▁ oko",
+ "ag in",
+ "agi n",
+ "a gin",
+ "▁Süd en",
+ "▁Sü den",
+ "ent ries",
+ "entr ies",
+ "▁Rep ublik",
+ "▁Repub lik",
+ "Collection View",
+ "-- -----",
+ "---- ---",
+ "--- ----",
+ "------ -",
+ "----- --",
+ "- ------",
+ "▁fire fox",
+ "▁alc une",
+ "▁фо то",
+ "▁отри ма",
+ "~~~~ ~~~~",
+ "▁Ра з",
+ "▁Com plex",
+ "▁Comp lex",
+ "▁Comple x",
+ "▁p ia",
+ "▁pi a",
+ "▁public ada",
+ "we i",
+ "w ei",
+ "ced ure",
+ "occup ation",
+ "▁medic ine",
+ "▁dr ove",
+ "▁dro ve",
+ "Pro blem",
+ "▁beg inner",
+ "▁begin ner",
+ "▁thorough ly",
+ "ur ia",
+ "uri a",
+ "u ria",
+ "av ant",
+ "ava nt",
+ "avan t",
+ "uch a",
+ "uc ha",
+ "u cha",
+ "▁l ever",
+ "▁le ver",
+ "▁lev er",
+ "▁te atro",
+ "▁teat ro",
+ "AV A",
+ "A VA",
+ "sq u",
+ "s qu",
+ "tr at",
+ "tra t",
+ "t rat",
+ "iv atal",
+ "iva tal",
+ "▁d irty",
+ "▁dir ty",
+ "▁se conde",
+ "▁second e",
+ "▁sec onde",
+ "▁grav it",
+ "▁pro position",
+ "▁prop osition",
+ "▁propos ition",
+ "h bar",
+ "om ini",
+ "omin i",
+ "omi ni",
+ "▁ ”",
+ "▁C amil",
+ "▁Cam il",
+ "▁Ca mil",
+ "▁qu een",
+ "▁que en",
+ "mod ifier",
+ "J an",
+ "▁l yr",
+ "▁ly r",
+ "Com boBox",
+ "ion ic",
+ "io nic",
+ "ioni c",
+ "i onic",
+ "▁h oly",
+ "▁ho ly",
+ "▁hol y",
+ "▁Sebast ian",
+ "| _{",
+ "▁{ @",
+ "▁мо жно",
+ "▁мож но",
+ "▁Cre ative",
+ "▁inter ess",
+ "▁inte ress",
+ "▁C T",
+ "▁ CT",
+ "i ções",
+ "▁ch ant",
+ "▁cha nt",
+ "▁ chant",
+ "▁wsp ół",
+ "▁Мекси ка",
+ "▁ran ked",
+ "▁rank ed",
+ "▁paździer nika",
+ "▁b rut",
+ "▁br ut",
+ "▁bru t",
+ "▁far ther",
+ "▁V erb",
+ "▁Ver b",
+ "▁Ve rb",
+ "▁S even",
+ "▁Se ven",
+ "lb l",
+ "l bl",
+ "▁mention s",
+ "▁ment ions",
+ "▁F ight",
+ "▁Fig ht",
+ "if en",
+ "ife n",
+ "i fen",
+ "▁b og",
+ "▁bo g",
+ "▁re gres",
+ "▁reg res",
+ "▁sc oring",
+ "ic ane",
+ "ica ne",
+ "ican e",
+ "▁El li",
+ "▁Ell i",
+ "▁pie rw",
+ "▁pier w",
+ "me asure",
+ "ński ej",
+ "ń skiej",
+ "# {",
+ "▁де ся",
+ "▁var maste",
+ "▁Un ix",
+ "I Z",
+ "iti é",
+ "Prim ary",
+ "▁Spring er",
+ "▁Spr inger",
+ "ün g",
+ "ü ng",
+ "▁an v",
+ "▁vers ione",
+ "▁version e",
+ "▁should ers",
+ "▁shoulder s",
+ "▁бри га",
+ "▁j av",
+ "▁ja v",
+ "▁ jav",
+ "lt al",
+ "l tal",
+ "▁kall aste",
+ "▁Mitch ell",
+ "▁wire less",
+ "▁wir eless",
+ "▁Á l",
+ "resp ons",
+ "co uld",
+ "cou ld",
+ "c ould",
+ "▁re lax",
+ "▁rel ax",
+ "▁rela x",
+ "▁ relax",
+ "Lo nd",
+ "L ond",
+ "ń cz",
+ "ство вал",
+ "ствова л",
+ "▁pol ski",
+ "en ç",
+ "za r",
+ "z ar",
+ "▁d type",
+ "▁dt ype",
+ "ow ned",
+ "own ed",
+ "un known",
+ "unk nown",
+ "▁m utable",
+ "▁mu table",
+ "▁mut able",
+ "▁ mutable",
+ "▁si empre",
+ "▁Mont real",
+ "▁loc ate",
+ "▁tr aces",
+ "▁tra ces",
+ "▁trace s",
+ "▁trac es",
+ "▁ins gesamt",
+ "▁N il",
+ "▁Ni l",
+ "▁ Nil",
+ "▁п рода",
+ "▁про да",
+ "▁прод а",
+ "▁War ner",
+ "▁N au",
+ "▁Na u",
+ "tri angle",
+ "▁concentr ation",
+ "▁gentle men",
+ "äch t",
+ "ä cht",
+ "fil ters",
+ "filter s",
+ "inci pal",
+ "VAL ID",
+ "▁де пута",
+ "ad ó",
+ "▁kon st",
+ "gs å",
+ "ag as",
+ "aga s",
+ "a gas",
+ "▁meille ur",
+ "▁дан ным",
+ "є дна",
+ "en coded",
+ "enc oded",
+ "encode d",
+ "< '",
+ "▁she ets",
+ "▁sheet s",
+ "▁ sheets",
+ "cu ador",
+ "▁викори стову",
+ "▁De put",
+ "▁Dep ut",
+ "▁man ière",
+ "ą g",
+ "cs ol",
+ "c sol",
+ ")$ -",
+ ") $-",
+ "UI View",
+ "▁mill ones",
+ "▁E hren",
+ "▁Ehr en",
+ "Si l",
+ "S il",
+ "▁a tac",
+ "▁at ac",
+ "▁C old",
+ "▁Col d",
+ "▁Co ld",
+ "\" \\",
+ "▁appro ached",
+ "▁approach ed",
+ "▁Års med",
+ "W M",
+ "▁De port",
+ "▁Dep ort",
+ "mi s",
+ "m is",
+ "and box",
+ "ob serv",
+ "obs erv",
+ "set ting",
+ "sett ing",
+ "ha tó",
+ "hat ó",
+ "h ató",
+ "▁s trat",
+ "▁st rat",
+ "▁str at",
+ "▁stra t",
+ "▁s pre",
+ "▁sp re",
+ "▁spr e",
+ "▁ spre",
+ "▁person ne",
+ "▁pers onne",
+ "▁personn e",
+ "▁dir ige",
+ "▁dirig e",
+ "pu ll",
+ "p ull",
+ "da ting",
+ "dat ing",
+ "d ating",
+ "▁F act",
+ "▁Fa ct",
+ "▁Fac t",
+ "▁ Fact",
+ "▁manip ulate",
+ "▁M AC",
+ "▁MA C",
+ "▁d ej",
+ "▁de j",
+ "ult imo",
+ "F X",
+ "Li fe",
+ "L ife",
+ "▁c rack",
+ "▁cr ack",
+ "▁cra ck",
+ "▁m í",
+ "▁п ове",
+ "▁по ве",
+ "▁пов е",
+ "▁w ore",
+ "▁wor e",
+ "▁wo re",
+ "univers ité",
+ "▁form ulas",
+ "▁formula s",
+ "▁Elis abeth",
+ "pl ots",
+ "plot s",
+ "mi le",
+ "mil e",
+ "m ile",
+ "▁me nor",
+ "▁men or",
+ "ти л",
+ "т ил",
+ "key word",
+ "▁Balt imore",
+ "hr er",
+ "hre r",
+ "h rer",
+ "▁C lement",
+ "▁Cl ement",
+ "▁Cle ment",
+ "vi m",
+ "v im",
+ "ra ss",
+ "ras s",
+ "r ass",
+ "T ake",
+ "▁cím ű",
+ "▁Con vention",
+ "at ge",
+ "se ed",
+ "see d",
+ "s eed",
+ "▁D í",
+ "▁Sp ider",
+ "ah oo",
+ "aho o",
+ "▁име ет",
+ "ühr t",
+ "üh rt",
+ "▁по писа",
+ "▁C ot",
+ "▁Co t",
+ "▁no bles",
+ "▁noble s",
+ "▁nob les",
+ "RE SS",
+ "RES S",
+ "▁che min",
+ "▁chem in",
+ "▁gł ówn",
+ "G G",
+ "▁German ia",
+ "▁Ger mania",
+ "▁Germ ania",
+ "▁Alexand re",
+ "he ns",
+ "hen s",
+ "h ens",
+ "sw ift",
+ "oo p",
+ "o op",
+ "Sub view",
+ "▁requ iring",
+ "ęd zy",
+ "ędz y",
+ "▁f ict",
+ "▁fi ct",
+ "▁fic t",
+ "▁Кон стан",
+ "▁dé put",
+ "▁dép ut",
+ "▁surpr ising",
+ "▁de ix",
+ "▁dei x",
+ "▁unter schied",
+ "in son",
+ "ins on",
+ "▁Char acter",
+ "▁ Character",
+ "▁g estion",
+ "▁ges tion",
+ "▁gest ion",
+ "ch us",
+ "c hus",
+ "com es",
+ "co mes",
+ "come s",
+ "▁n eur",
+ "▁ne ur",
+ "▁neu r",
+ "▁ neur",
+ "▁ye ux",
+ "ol lar",
+ "oll ar",
+ "▁par ad",
+ "▁para d",
+ "▁pa rad",
+ "▁mag giore",
+ "▁maggio re",
+ "▁maggior e",
+ "TR AN",
+ "▁vo tre",
+ "▁vot re",
+ "▁des cent",
+ "▁desc ent",
+ "▁I con",
+ "▁ Icon",
+ "▁Jud ge",
+ "▁occup ation",
+ "▁ occupation",
+ "ep ing",
+ "e ping",
+ "▁ton gue",
+ "▁tong ue",
+ "▁En llaços",
+ "ru f",
+ "r uf",
+ "▁prote in",
+ "▁prot ein",
+ "▁vis itors",
+ "▁visit ors",
+ "▁visitor s",
+ "ax y",
+ "a xy",
+ "es ten",
+ "est en",
+ "este n",
+ "e sten",
+ "bl ica",
+ "blic a",
+ "b lica",
+ "h w",
+ "▁spir its",
+ "▁spirit s",
+ "▁redu ces",
+ "▁reduce s",
+ "▁м ен",
+ "▁ме н",
+ "▁ мен",
+ "▁L amb",
+ "▁La mb",
+ "▁Lam b",
+ "▁M ine",
+ "▁Min e",
+ "▁Mi ne",
+ "▁ver ified",
+ "▁B aby",
+ "▁Ba by",
+ "▁Bab y",
+ "▁pr ize",
+ "▁pri ze",
+ "в ър",
+ "▁rat ings",
+ "▁rating s",
+ "▁f ore",
+ "▁for e",
+ "▁fo re",
+ "▁ fore",
+ "as ha",
+ "ash a",
+ "a sha",
+ "ur rence",
+ "urr ence",
+ "▁int ér",
+ "▁Ol ímp",
+ "cr a",
+ "c ra",
+ "▁comput ational",
+ "▁computation al",
+ "ir che",
+ "irc he",
+ ".: ",
+ "▁illustr ated",
+ "▁illustrate d",
+ "▁Sh are",
+ "▁house holds",
+ "▁household s",
+ "▁con volution",
+ "oe md",
+ "oem d",
+ "▁zd oby",
+ "▁zdob y",
+ "cc c",
+ "c cc",
+ "▁quant ities",
+ "Ch e",
+ "C he",
+ "Sh ould",
+ "▁ge nius",
+ "▁gen ius",
+ "ad j",
+ "a dj",
+ "х ва",
+ "Пе тер",
+ "EM A",
+ "E MA",
+ "▁R ights",
+ "▁Right s",
+ "▁E li",
+ "▁El i",
+ "VA R",
+ "V AR",
+ "ш ло",
+ "▁з бір",
+ "ift ung",
+ "▁cont ributed",
+ "▁contrib uted",
+ "▁contribu ted",
+ "▁contribute d",
+ "ze f",
+ "z ef",
+ "▁CH AR",
+ "▁ CHAR",
+ "▁S ib",
+ "▁Si b",
+ "▁M ant",
+ "▁Man t",
+ "▁Ma nt",
+ "▁свя зи",
+ "▁java fx",
+ "▁c ependant",
+ "▁in tu",
+ "▁int u",
+ "▁т вор",
+ "▁ Ó",
+ "gu er",
+ "gue r",
+ "g uer",
+ "ra do",
+ "rad o",
+ "r ado",
+ "▁Re vol",
+ "▁Rev ol",
+ "▁fé min",
+ "▁Or leans",
+ "▁p oj",
+ "▁po j",
+ "▁p rez",
+ "▁pr ez",
+ "▁pre z",
+ "Te x",
+ "T ex",
+ "ou wd",
+ "ouw d",
+ "? (",
+ "▁L IM",
+ "▁LI M",
+ "ist ique",
+ "isti que",
+ "es ar",
+ "esa r",
+ "▁he ures",
+ "ic ki",
+ "ick i",
+ "i cki",
+ "▁d bo",
+ "▁db o",
+ "▁ dbo",
+ "sk ih",
+ "ski h",
+ "s kih",
+ "conf irm",
+ "▁vil ág",
+ "▁ci utat",
+ "▁D R",
+ "▁ DR",
+ "▁Haw ai",
+ "ch ed",
+ "che d",
+ "c hed",
+ "▁s pher",
+ "▁sp her",
+ "▁Art ikel",
+ "▁Multi ple",
+ "ci u",
+ "c iu",
+ "▁м ы",
+ "▁ мы",
+ "▁lip ca",
+ "]( /",
+ "] (/",
+ "Str ategy",
+ "▁Al abama",
+ "SD K",
+ "S DK",
+ "UT C",
+ "U TC",
+ "__ .",
+ "_ _.",
+ "Arg uments",
+ "Argument s",
+ "▁set ContentView",
+ "î le",
+ "By Val",
+ "▁J VM",
+ "юще го",
+ "▁Leon ard",
+ "▁just ify",
+ "це м",
+ "ц ем",
+ "▁n ab",
+ "▁na b",
+ "▁ nab",
+ "CCE SS",
+ "C CESS",
+ "▁hope s",
+ "▁ho pes",
+ "▁hop es",
+ ") &",
+ "se ro",
+ "ser o",
+ "s ero",
+ "▁за й",
+ "слі д",
+ "▁R ég",
+ "▁Ré g",
+ "▁S ang",
+ "▁San g",
+ "▁Sa ng",
+ "▁f ung",
+ "▁fun g",
+ "▁fu ng",
+ "ba ar",
+ "b aar",
+ "▁coff ee",
+ "ass embly",
+ "▁В ін",
+ "▁Ві н",
+ "э й",
+ "▁comp rend",
+ "▁compr end",
+ "fil led",
+ "fill ed",
+ "f illed",
+ "р д",
+ "od ia",
+ "odi a",
+ "o dia",
+ "▁g ens",
+ "▁ge ns",
+ "▁gen s",
+ "▁ gens",
+ "fl uss",
+ "flu ss",
+ "f luss",
+ "Draw able",
+ "▁sur ve",
+ "▁surv e",
+ "Set up",
+ "▁n ależ",
+ "▁conj unto",
+ "▁Е го",
+ "▁old al",
+ "▁ol dal",
+ "▁ver bose",
+ "▁verb ose",
+ "▁Elect ric",
+ "▁H arrison",
+ "▁Harr ison",
+ "▁Harris on",
+ "en gen",
+ "eng en",
+ "par agraph",
+ "para graph",
+ "▁n ouvelles",
+ "▁nouve lles",
+ "▁nouvelle s",
+ "▁вре ме",
+ "▁m emor",
+ "▁me mor",
+ "▁mem or",
+ "▁mayo ría",
+ "▁mayor ía",
+ "са д",
+ "▁bat aille",
+ "▁bata ille",
+ "▁therm al",
+ "▁ther mal",
+ "▁Хро нологи",
+ "▁B etter",
+ "▁Bet ter",
+ "by e",
+ "b ye",
+ "▁теа тра",
+ "ro e",
+ "r oe",
+ "▁se gle",
+ "▁seg le",
+ "ro tt",
+ "rot t",
+ "r ott",
+ "▁opin ions",
+ "▁opinion s",
+ ")} )",
+ ") })",
+ "üh le",
+ "ühl e",
+ "▁G ün",
+ "▁Gü n",
+ "▁ Щ",
+ "b ól",
+ "▁Lar ry",
+ "▁so lic",
+ "▁sol ic",
+ "▁z war",
+ "▁zw ar",
+ "▁Car oline",
+ "▁Carol ine",
+ "▁Reich s",
+ "Ext ensions",
+ "Extension s",
+ "mi gr",
+ "m igr",
+ ": @",
+ "▁en umerate",
+ "▁enumer ate",
+ "▁ enumerate",
+ "▁eigen en",
+ "▁eig enen",
+ "▁expl ore",
+ "▁explo re",
+ "ém u",
+ "é mu",
+ "▁g at",
+ "▁ga t",
+ "▁ gat",
+ "▁imper ial",
+ "▁Us ually",
+ "▁t ud",
+ "▁tu d",
+ "▁у кра",
+ "hi m",
+ "h im",
+ "▁cor ners",
+ "▁corner s",
+ "▁corn ers",
+ "▁S ER",
+ "▁SE R",
+ "▁ SER",
+ "▁interpre ter",
+ "▁interpret er",
+ "▁I ce",
+ "▁amount s",
+ "▁P ala",
+ "▁Pa la",
+ "▁Pal a",
+ "▁t inha",
+ "▁tin ha",
+ "vo le",
+ "vol e",
+ "v ole",
+ "▁g le",
+ "▁gl e",
+ "▁ gle",
+ "uc ci",
+ "▁sie he",
+ "Jac k",
+ "J ack",
+ "▁w oll",
+ "▁wo ll",
+ "▁wol l",
+ "▁e lder",
+ "▁el der",
+ "▁ко раб",
+ "▁eng ag",
+ "▁La urent",
+ "▁Laur ent",
+ "▁Lau rent",
+ "▁ach iev",
+ "ist ik",
+ "isti k",
+ "ar ct",
+ "arc t",
+ "тно го",
+ "т ного",
+ "▁g ir",
+ "▁gi r",
+ "▁Sing h",
+ "▁Sin gh",
+ "math op",
+ "US A",
+ "U SA",
+ "▁Pro jekt",
+ "▁de be",
+ "▁deb e",
+ "richt ung",
+ "r ichtung",
+ "▁T sch",
+ "▁Ts ch",
+ "um inate",
+ "umin ate",
+ "▁s zó",
+ "▁sz ó",
+ "ly ph",
+ "зи дент",
+ "зиден т",
+ "▁lim itations",
+ "▁limit ations",
+ "▁limitation s",
+ "юще й",
+ "▁b ila",
+ "▁bi la",
+ "▁bil a",
+ "P ush",
+ "▁off ering",
+ "▁offer ing",
+ "ien nes",
+ "ienne s",
+ "ienn es",
+ "i ennes",
+ "Fr i",
+ "F ri",
+ "▁post gresql",
+ "▁ postgresql",
+ "▁Tom my",
+ "▁partic olare",
+ "▁stolet í",
+ "▁ar rib",
+ "▁arr ib",
+ "▁E va",
+ "▁Ev a",
+ "sch ool",
+ "▁v endor",
+ "▁ven dor",
+ "▁vend or",
+ "▁ vendor",
+ "▁D allas",
+ "▁Dal las",
+ "▁pro long",
+ "CRE ATE",
+ "C REATE",
+ "▁suiv ante",
+ "STAT US",
+ "l à",
+ "k v",
+ "▁h äufig",
+ "▁Agr icult",
+ "▁h uit",
+ "▁hu it",
+ "▁in oltre",
+ "▁L loyd",
+ "▁францу з",
+ "▁вы пол",
+ "▁faith ful",
+ "▁В ар",
+ "▁Ва р",
+ "▁ver l",
+ "▁ve rl",
+ "▁ju ego",
+ "▁Резу лтати",
+ ", ...,",
+ "▁implicit ly",
+ "ir ks",
+ "irk s",
+ "Cal cul",
+ "▁m eses",
+ "▁mes es",
+ "om ed",
+ "ome d",
+ "o med",
+ "▁p ak",
+ "▁pa k",
+ "he rit",
+ "her it",
+ "▁opt ical",
+ "▁І сторія",
+ "ve is",
+ "▁capital e",
+ "▁capit ale",
+ "place holder",
+ "int rag",
+ "▁At las",
+ "▁Atl as",
+ "▁ Atlas",
+ ")] ;",
+ ") ];",
+ "ic ons",
+ "ico ns",
+ "icon s",
+ "i cons",
+ "▁B ent",
+ "▁Be nt",
+ "▁Ben t",
+ "▁W idget",
+ "▁ Widget",
+ "▁vol unt",
+ "av o",
+ "a vo",
+ "ég r",
+ "é gr",
+ "li ge",
+ "lig e",
+ "l ige",
+ "▁N AME",
+ "▁NA ME",
+ "▁ NAME",
+ "▁ab stra",
+ "▁abs tra",
+ "▁f ís",
+ "▁B rowser",
+ "▁Brow ser",
+ "▁ Browser",
+ "▁b ush",
+ "▁bu sh",
+ "▁bus h",
+ "ha ll",
+ "hal l",
+ "h all",
+ "▁cloud s",
+ "▁S UB",
+ "▁SU B",
+ "▁ SUB",
+ "▁t andis",
+ "▁tan dis",
+ "▁Common wealth",
+ "та я",
+ "▁exha ust",
+ "________ ________",
+ "▁Stat istics",
+ "▁Statist ics",
+ "▁Relig ion",
+ "▁Mu ham",
+ "ual s",
+ "ua ls",
+ "u als",
+ "go to",
+ "got o",
+ "g oto",
+ "Dig ital",
+ "Famil y",
+ "▁B un",
+ "▁Bu n",
+ "let in",
+ "Man agement",
+ "▁cap abilities",
+ "an nten",
+ "ann ten",
+ "annt en",
+ "annte n",
+ "▁се бе",
+ "▁st ays",
+ "▁stay s",
+ "▁sta ys",
+ "kt er",
+ "kte r",
+ "k ter",
+ "▁d ost",
+ "▁do st",
+ "▁dos t",
+ "▁Т ре",
+ "ло вич",
+ "лови ч",
+ "л ович",
+ "▁d ying",
+ "▁dy ing",
+ "se ctions",
+ "section s",
+ "sect ions",
+ "án os",
+ "á nos",
+ "▁app arten",
+ "▁appar ten",
+ "▁appart en",
+ "▁zo als",
+ "▁dr essed",
+ "▁dress ed",
+ "▁com press",
+ "▁comp ress",
+ "▁compr ess",
+ "ń ska",
+ "▁sierp nia",
+ "▁ти ту",
+ "diction ary",
+ "d ictionary",
+ "▁r abb",
+ "▁ra bb",
+ "▁vé rit",
+ "В о",
+ "▁sing leton",
+ "▁single ton",
+ "▁v ital",
+ "▁vi tal",
+ "▁vit al",
+ "▁vita l",
+ "Ref resh",
+ "ме ль",
+ "м ель",
+ "▁Z h",
+ "▁Af ghan",
+ "in kel",
+ "ink el",
+ "aa aa",
+ "▁particip ants",
+ "ar in",
+ "ari n",
+ "a rin",
+ "▁M old",
+ "▁Mo ld",
+ "▁Mol d",
+ "▁prim eros",
+ "▁prime ros",
+ "▁primer os",
+ "▁ра н",
+ "▁р ан",
+ "▁ ран",
+ "▁А мери",
+ "▁restaur ant",
+ "év el",
+ "é vel",
+ "▁S L",
+ "▁ SL",
+ "▁R ey",
+ "▁Re y",
+ "ch as",
+ "cha s",
+ "c has",
+ "▁elect rons",
+ "▁electron s",
+ "▁electro ns",
+ "▁Pitt s",
+ "▁Pit ts",
+ "▁J ules",
+ "▁Jul es",
+ "▁Ju les",
+ "ма й",
+ "en ant",
+ "ena nt",
+ "e nant",
+ "- }",
+ "ла д",
+ "▁Мос ква",
+ "▁Моск ва",
+ "go m",
+ "g om",
+ "▁Fern ández",
+ "fun d",
+ "fu nd",
+ "f und",
+ "int erno",
+ "inter no",
+ "intern o",
+ "▁M ari",
+ "▁Mar i",
+ "▁Ma ri",
+ "▁r ius",
+ "▁ri us",
+ "▁Pro zent",
+ "ст рі",
+ "стр і",
+ "▁в нут",
+ "ant erie",
+ "ante rie",
+ "anter ie",
+ "▁п рис",
+ "▁при с",
+ "▁пр ис",
+ "▁о бы",
+ "▁об ы",
+ "▁M arina",
+ "▁Mar ina",
+ "▁Mari na",
+ "▁occ urrence",
+ "▁occur rence",
+ "▁occurr ence",
+ "ri kt",
+ "rik t",
+ "r ikt",
+ "▁фи зи",
+ "▁sch wer",
+ "▁schw er",
+ "▁Г ре",
+ "Re set",
+ "Res et",
+ "▁much o",
+ "▁mu cho",
+ "an dr",
+ "and r",
+ "▁W ies",
+ "▁Wi es",
+ "▁Wie s",
+ "▁Ke ith",
+ "▁Jul ian",
+ "▁Juli an",
+ "▁Julia n",
+ "▁c ole",
+ "▁col e",
+ "▁co le",
+ "▁ cole",
+ "ci endo",
+ "c iendo",
+ "▁Cont empor",
+ "et ry",
+ "etr y",
+ "e try",
+ "el ian",
+ "eli an",
+ "elia n",
+ "ги и",
+ "▁го ло",
+ "▁г оло",
+ "▁d él",
+ "▁dé l",
+ "▁de cent",
+ "▁dec ent",
+ "▁dece nt",
+ "Р СР",
+ "▁sze ptember",
+ "ме ст",
+ "cast le",
+ "▁держа в",
+ "}\" )",
+ "} \")",
+ "▁ASC II",
+ "▁G len",
+ "▁Gl en",
+ "itzer land",
+ "T oggle",
+ "▁trad icional",
+ "▁P lat",
+ "▁Pl at",
+ "▁Pla t",
+ "ve e",
+ "v ee",
+ "ab gerufen",
+ "( |",
+ "CL I",
+ "C LI",
+ "}} $,",
+ "}}$ ,",
+ "} }$,",
+ "▁Bow l",
+ "▁M ale",
+ "▁Ma le",
+ "▁Mal e",
+ "▁B res",
+ "▁Br es",
+ "▁Bre s",
+ "▁п си",
+ "▁Ch allenge",
+ "z ó",
+ "▁pro jekt",
+ "▁neg oti",
+ "ab ove",
+ "a bove",
+ "▁пери о",
+ "▁long est",
+ "▁lon gest",
+ "auth entic",
+ "▁tr adu",
+ "▁tra du",
+ "▁trad u",
+ "▁mujer es",
+ "▁And re",
+ "▁ha dn",
+ "▁had n",
+ "▁Sch ule",
+ "▁Schul e",
+ "ode l",
+ "od el",
+ "o del",
+ "ble d",
+ "bl ed",
+ "b led",
+ "▁T rade",
+ "▁Tr ade",
+ "▁Tra de",
+ "▁Trad e",
+ "▁m obil",
+ "▁mo bil",
+ "▁mob il",
+ "▁alg unas",
+ "▁L ak",
+ "▁La k",
+ "▁Connect icut",
+ "▁al co",
+ "▁alc o",
+ "▁Sel bst",
+ "i ł",
+ "▁a lb",
+ "▁al b",
+ "ouver neur",
+ "ouvern eur",
+ "▁s r",
+ "▁ sr",
+ "▁v ba",
+ "▁vb a",
+ "lo ped",
+ "lop ed",
+ "l oped",
+ "▁Par tei",
+ "▁Part ei",
+ "▁Parte i",
+ "ua te",
+ "u ate",
+ "▁Auth entication",
+ "▁ Authentication",
+ "be i",
+ "b ei",
+ "}} .",
+ "} }.",
+ "▁kon nten",
+ "▁konn ten",
+ "▁konnte n",
+ "▁до по",
+ "▁h yd",
+ "▁hy d",
+ "Off ice",
+ "d onnées",
+ "▁C leveland",
+ "ri ta",
+ "rit a",
+ "r ita",
+ "ío s",
+ "í os",
+ "▁вы ше",
+ "▁Ro berts",
+ "▁Robert s",
+ "▁é lections",
+ "▁élect ions",
+ "▁' ')",
+ "▁'' )",
+ "▁publish ing",
+ "▁b apt",
+ "▁ba pt",
+ "<> ();",
+ "< >();",
+ "miss ing",
+ "mis sing",
+ "рова но",
+ "рован о",
+ "р овано",
+ "▁ho using",
+ "▁hous ing",
+ "▁in ference",
+ "▁infer ence",
+ "▁Rena issance",
+ "▁r èg",
+ "▁Ste ph",
+ "▁Step h",
+ "CE S",
+ "C ES",
+ "ER E",
+ "E RE",
+ "ке т",
+ "к ет",
+ "O U",
+ "▁group ing",
+ "ver kehr",
+ "ji h",
+ "j ih",
+ "ag li",
+ "▁mil k",
+ "la it",
+ "l ait",
+ "St age",
+ "▁by ly",
+ "▁byl y",
+ "▁wood en",
+ "▁wo oden",
+ "ke ley",
+ "kel ey",
+ "kele y",
+ "et ra",
+ "etr a",
+ "e tra",
+ "▁P eg",
+ "▁Pe g",
+ "▁don né",
+ "▁donn é",
+ "ad al",
+ "ada l",
+ "a dal",
+ "sequ ently",
+ "▁ins besondere",
+ "EL D",
+ "E LD",
+ "▁M am",
+ "▁Ma m",
+ "▁vol te",
+ "▁volt e",
+ "▁pro spect",
+ "▁pros pect",
+ "но ве",
+ "нов е",
+ "н ове",
+ "▁den oted",
+ "▁denote d",
+ "▁over lay",
+ "Per mission",
+ "Perm ission",
+ "ee n",
+ "e en",
+ "▁E M",
+ "▁ EM",
+ "▁u z",
+ "▁ uz",
+ "M c",
+ "ol it",
+ "oli t",
+ "o lit",
+ "▁ser vi",
+ "▁serv i",
+ "▁He idel",
+ "▁Wien er",
+ "▁Wi ener",
+ "▁Wie ner",
+ "▁il legal",
+ "▁predict ions",
+ "▁prediction s",
+ "▁go og",
+ "ho n",
+ "h on",
+ "▁Cin ema",
+ "▁ре волю",
+ "▁R ule",
+ "▁Ru le",
+ "▁ Rule",
+ "wo d",
+ "w od",
+ "▁rad iation",
+ "▁radi ation",
+ "o ł",
+ "ово ї",
+ "▁Per form",
+ "▁prison er",
+ "▁a met",
+ "▁am et",
+ "▁fig ura",
+ "▁figur a",
+ "▁Comm ander",
+ "▁Command er",
+ "▁о фициаль",
+ "▁t rov",
+ "▁tr ov",
+ "▁tro v",
+ "▁a cted",
+ "▁act ed",
+ "▁ac ted",
+ "▁work flow",
+ "▁Республи ки",
+ "▁guid ance",
+ "▁м ене",
+ "▁ме не",
+ "▁мен е",
+ "▁ мене",
+ "N ational",
+ "▁K el",
+ "▁Ke l",
+ "web pack",
+ "про стра",
+ "▁llam ado",
+ "al og",
+ "alo g",
+ "a log",
+ "ter ra",
+ "ix en",
+ "le graph",
+ "leg raph",
+ "ä ischen",
+ "▁teach ers",
+ "▁teacher s",
+ "ud en",
+ "ude n",
+ "u den",
+ "▁o gså",
+ "pos sible",
+ "poss ible",
+ "▁S oul",
+ "▁So ul",
+ "▁Sou l",
+ "▁Ge ography",
+ "▁за да",
+ "hi t",
+ "h it",
+ "▁an ger",
+ "▁ang er",
+ "▁ange r",
+ "▁ anger",
+ "▁rem porte",
+ "▁remp orte",
+ "Po d",
+ "P od",
+ "ч ке",
+ "▁a ria",
+ "▁ar ia",
+ "▁ aria",
+ "▁A stronom",
+ "ch apter",
+ "▁f ork",
+ "▁for k",
+ "▁Cu ando",
+ "men se",
+ "m ense",
+ "▁Christ ians",
+ "▁Christian s",
+ "g c",
+ "▁# (",
+ "Or gan",
+ "▁ste ady",
+ "▁stead y",
+ "ps e",
+ "p se",
+ "жи ть",
+ "ig nes",
+ "ign es",
+ "igne s",
+ "ater ra",
+ "a terra",
+ "mo vie",
+ "mov ie",
+ "m ovie",
+ "pos ta",
+ "po sta",
+ "post a",
+ "p osta",
+ "ra ste",
+ "ras te",
+ "r aste",
+ "▁Res source",
+ "▁Ress ource",
+ "▁Pa ís",
+ "▁( );",
+ "▁() ;",
+ "▁ ();",
+ "▁pen alty",
+ "т т",
+ "▁tras fer",
+ "cent ury",
+ "▁clean er",
+ "sel enium",
+ "s elenium",
+ "ort heast",
+ "orth east",
+ "xi c",
+ "x ic",
+ "лі ї",
+ "л ії",
+ "▁ingles e",
+ "▁T ang",
+ "▁Ta ng",
+ "▁Tan g",
+ "▁g ods",
+ "▁go ds",
+ "▁god s",
+ "fr ent",
+ "fre nt",
+ "f rent",
+ "ci ente",
+ "cient e",
+ "c iente",
+ "st arts",
+ "start s",
+ "star ts",
+ "▁mus ica",
+ "▁music a",
+ "ymnas ium",
+ "-- --+",
+ "---- +",
+ "--- -+",
+ "- ---+",
+ "▁ter rest",
+ "▁terre st",
+ "▁retr ieved",
+ "▁retrieve d",
+ "ia re",
+ "iar e",
+ "i are",
+ "un ning",
+ "unn ing",
+ "▁Mar cus",
+ "▁Marc us",
+ "▁prom ote",
+ "war ning",
+ "warn ing",
+ "w arning",
+ "ты й",
+ "т ый",
+ "}) $,",
+ "})$ ,",
+ "} )$,",
+ "Trans port",
+ "▁re son",
+ "▁res on",
+ "▁C lo",
+ "▁Cl o",
+ "▁e rm",
+ "▁er m",
+ "▁ erm",
+ "▁elimin ate",
+ "▁elim inate",
+ "he imer",
+ "heim er",
+ "▁s aves",
+ "▁sa ves",
+ "▁sav es",
+ "▁save s",
+ "▁pr ayer",
+ "▁pra yer",
+ "▁pray er",
+ "Class es",
+ "Ex press",
+ "Exp ress",
+ "Expr ess",
+ "▁Akadem ie",
+ "El se",
+ "Tu rn",
+ "T urn",
+ "▁ik ke",
+ "▁re i",
+ "▁r ei",
+ "▁ rei",
+ "▁di rett",
+ "▁dire tt",
+ "▁dir ett",
+ "▁R ost",
+ "▁Ro st",
+ "▁Ros t",
+ "▁P apa",
+ "▁Pa pa",
+ "▁Pap a",
+ "▁j sf",
+ "▁js f",
+ "ле нием",
+ "ление м",
+ "▁T ul",
+ "▁Tu l",
+ "▁Z ak",
+ "▁Za k",
+ "▁niem ieck",
+ "T w",
+ "am our",
+ "amo ur",
+ "ne sted",
+ "nes ted",
+ "nest ed",
+ "n ested",
+ "pp ets",
+ "ppe ts",
+ "ppet s",
+ "ш п",
+ "di t",
+ "d it",
+ "зе н",
+ "з ен",
+ "zy ma",
+ "zym a",
+ "hr te",
+ "Constra ints",
+ "Constraint s",
+ "▁own ership",
+ "▁owner ship",
+ "Ar m",
+ "A rm",
+ "▁cons umption",
+ "▁consum ption",
+ "▁f et",
+ "▁fe t",
+ "iv ari",
+ "iva ri",
+ "i vari",
+ "ch rom",
+ "chr om",
+ "set Attribute",
+ "▁com pose",
+ "▁comp ose",
+ "▁compos e",
+ "▁ compose",
+ "▁back ing",
+ "▁P az",
+ "▁Pa z",
+ "▁s cri",
+ "▁sc ri",
+ "▁scr i",
+ "▁ scri",
+ "▁Me chan",
+ "▁Nor way",
+ "▁J up",
+ "▁Ju p",
+ "▁m ér",
+ "▁mé r",
+ "▁administr ator",
+ "▁c abe",
+ "▁ca be",
+ "▁cab e",
+ "ival ent",
+ "▁thr one",
+ "▁thro ne",
+ "▁d ues",
+ "▁du es",
+ "▁due s",
+ "▁hum or",
+ "▁hu mor",
+ "▁A dri",
+ "▁Ad ri",
+ "▁ab ort",
+ "ña s",
+ "ñ as",
+ "▁Ки їв",
+ "j ící",
+ "▁zwe ite",
+ "▁zwei te",
+ "▁do ub",
+ "▁dou b",
+ "er shell",
+ "ers hell",
+ "шо й",
+ "▁F am",
+ "▁Fa m",
+ "å k",
+ "▁twe ede",
+ "▁twee de",
+ "▁R ib",
+ "▁Ri b",
+ "▁f ør",
+ "pc ión",
+ "p ción",
+ "in ned",
+ "inn ed",
+ "rv m",
+ "r vm",
+ "▁App ar",
+ "▁Ap par",
+ "▁D j",
+ "▁S hang",
+ "▁Sh ang",
+ "Dist ance",
+ "D istance",
+ "▁d awn",
+ "▁da wn",
+ "▁ dawn",
+ "▁Mat th",
+ "▁Matt h",
+ "▁err ichtet",
+ "ph antom",
+ "phan tom",
+ "▁re leases",
+ "▁release s",
+ "Recogn izer",
+ "▁K op",
+ "▁Ko p",
+ "▁P ul",
+ "▁Pu l",
+ "u é",
+ "na ts",
+ "nat s",
+ "n ats",
+ "re lax",
+ "rel ax",
+ "▁f led",
+ "▁fl ed",
+ "▁fle d",
+ "▁experience s",
+ "▁experien ces",
+ "ще е",
+ "ме ня",
+ "мен я",
+ "▁пер сона",
+ "▁Id entity",
+ "▁Ident ity",
+ "▁ Identity",
+ "re ts",
+ "ret s",
+ "r ets",
+ "k unft",
+ "la rg",
+ "lar g",
+ "l arg",
+ "List Item",
+ "v d",
+ "run ner",
+ "la nt",
+ "lan t",
+ "l ant",
+ "ip art",
+ "i part",
+ "ba y",
+ "b ay",
+ "ie i",
+ "i ei",
+ "▁length s",
+ "▁c attle",
+ "▁catt le",
+ "je ts",
+ "jet s",
+ "j ets",
+ "▁se hen",
+ "J ul",
+ "fa tt",
+ "f att",
+ "▁sur render",
+ "▁surr ender",
+ "▁Tr ump",
+ "▁Tru mp",
+ "дно го",
+ "д ного",
+ "▁Four ier",
+ "▁Fou rier",
+ "ie ben",
+ "ieb en",
+ "i eben",
+ "_ \"",
+ "▁frü her",
+ "▁gar ant",
+ "▁ga rant",
+ "uclide an",
+ "äg t",
+ "ä gt",
+ "▁пів ден",
+ "Page s",
+ "Pa ges",
+ "P ages",
+ "▁r ivers",
+ "▁river s",
+ "▁riv ers",
+ "▁ri vers",
+ "▁don ner",
+ "▁donn er",
+ "▁donne r",
+ "sv n",
+ "s vn",
+ "▁ ł",
+ "ov ě",
+ "o vě",
+ "▁Le ist",
+ "ar ial",
+ "ari al",
+ "aria l",
+ "a rial",
+ "ov ých",
+ "ový ch",
+ "▁f illing",
+ "▁fil ling",
+ "▁fill ing",
+ "▁mus icale",
+ "▁music ale",
+ "▁musical e",
+ "▁musica le",
+ "ma xim",
+ "max im",
+ "▁d ashed",
+ "▁das hed",
+ "▁dash ed",
+ "▁Н ов",
+ "▁Но в",
+ "Draw er",
+ "Dra wer",
+ "▁Medic ine",
+ "▁dok ument",
+ "ow el",
+ "owe l",
+ "o wel",
+ "vi ć",
+ "v ić",
+ "he ly",
+ "hel y",
+ "h ely",
+ "▁e let",
+ "▁el et",
+ "▁ele t",
+ "Sec onds",
+ "Second s",
+ "▁Gon z",
+ "ro u",
+ "r ou",
+ "▁fin ales",
+ "▁final es",
+ "▁finale s",
+ "r n",
+ "f ø",
+ "▁index ed",
+ "class Name",
+ "▁o ber",
+ "▁ob er",
+ "▁ ober",
+ "▁du as",
+ "▁optim ized",
+ "▁optimize d",
+ "▁k dy",
+ "vers ary",
+ "ener gy",
+ "▁цент ра",
+ "▁центр а",
+ "▁c urrency",
+ "▁curr ency",
+ "▁ currency",
+ "zy ż",
+ "Li ke",
+ "L ike",
+ "▁Г и",
+ "so no",
+ "son o",
+ "s ono",
+ "▁pa lab",
+ "▁pal ab",
+ "▁p ushing",
+ "▁push ing",
+ "ub lik",
+ "▁H ass",
+ "▁Ha ss",
+ "▁Has s",
+ "}\\ ,\\",
+ "}\\, \\",
+ "} \\,\\",
+ "un ker",
+ "unk er",
+ "▁F actory",
+ "▁Fact ory",
+ "▁ Factory",
+ "▁Res ources",
+ "▁Resource s",
+ "▁ Resources",
+ "date i",
+ "da tei",
+ "dat ei",
+ "▁T ools",
+ "▁To ols",
+ "▁Tool s",
+ "▁ Tools",
+ "▁ste hen",
+ "si me",
+ "sim e",
+ "s ime",
+ "▁Х у",
+ "▁h och",
+ "▁ho ch",
+ "▁Rod ríguez",
+ "zeit ig",
+ "▁Ter ry",
+ "▁Terr y",
+ "▁о бу",
+ "▁об у",
+ "Us age",
+ "urch ase",
+ "l ö",
+ "▁Int roduction",
+ "▁ Introduction",
+ "▁particip ation",
+ "ο ς",
+ "og li",
+ "ap y",
+ "a py",
+ "▁hope fully",
+ "pon der",
+ "po nder",
+ "pond er",
+ "p onder",
+ "▁Y ang",
+ "▁Yan g",
+ "▁Ya ng",
+ "▁prom ises",
+ "▁promise s",
+ "▁вер ну",
+ "▁о стров",
+ "▁ост ров",
+ "^{ +",
+ "▁most ra",
+ "▁mo stra",
+ "▁mos tra",
+ "▁CURL OPT",
+ "H H",
+ "▁std out",
+ "▁ stdout",
+ "▁br illiant",
+ "▁manus cript",
+ "▁de cir",
+ "▁dec ir",
+ "▁B olog",
+ "▁Bo log",
+ "▁Bol og",
+ "▁ме ста",
+ "▁мест а",
+ "▁in visible",
+ "▁C hal",
+ "▁Ch al",
+ "▁Cha l",
+ "▁analy ze",
+ "▁analyz e",
+ "pr ilis",
+ "pril is",
+ "att end",
+ "atten d",
+ "atte nd",
+ "M vc",
+ "th an",
+ "tha n",
+ "t han",
+ "ck o",
+ "c ko",
+ "▁Que bec",
+ "▁pl anta",
+ "▁plan ta",
+ "▁plant a",
+ "▁télé vis",
+ "▁un install",
+ "èn cies",
+ "▁gmin ie",
+ "▁P ref",
+ "▁Pr ef",
+ "▁Pre f",
+ "▁le quel",
+ "Inv ocation",
+ "▁ Í",
+ "▁trans formed",
+ "▁transform ed",
+ "MA N",
+ "M AN",
+ "ge baut",
+ "geb aut",
+ "▁со хра",
+ "▁вто рой",
+ "▁L ith",
+ "▁Li th",
+ "▁Lit h",
+ "wend ung",
+ "▁Polit ik",
+ "▁Sen ator",
+ "▁L L",
+ "▁ LL",
+ "жде ние",
+ "ш те",
+ "▁C és",
+ "▁b ande",
+ "▁band e",
+ "▁ban de",
+ "▁ba nde",
+ "▁histor ian",
+ "▁historia n",
+ "▁pass words",
+ "▁password s",
+ "mal loc",
+ "m alloc",
+ "▁sem if",
+ "▁semi f",
+ "▁r å",
+ "▁ rå",
+ "unic í",
+ "uni cí",
+ "Av ailable",
+ "Option al",
+ "Opt ional",
+ "▁T we",
+ "▁Tw e",
+ "▁k ró",
+ "▁kr ó",
+ "▁sub sets",
+ "▁subset s",
+ "▁subs ets",
+ "▁D AT",
+ "▁DA T",
+ "▁ DAT",
+ "▁double s",
+ "▁dou bles",
+ "▁doub les",
+ "ни ками",
+ "ника ми",
+ "▁з в",
+ "ge geben",
+ "geg eben",
+ "g egeben",
+ "▁По пис",
+ "▁jú lius",
+ "▁m eteor",
+ "▁met eor",
+ "Mo unt",
+ "M ount",
+ "iv ent",
+ "ive nt",
+ "iven t",
+ "i vent",
+ "▁N athan",
+ "▁Na than",
+ "▁Nat han",
+ "▁Sch utz",
+ "eg ov",
+ "ego v",
+ "e gov",
+ "▁d öd",
+ "▁me at",
+ "▁пун кт",
+ "▁m inds",
+ "▁min ds",
+ "▁mind s",
+ "eli very",
+ "▁T LS",
+ "ре м",
+ "р ем",
+ "cks å",
+ "▁stay ed",
+ "▁sta yed",
+ "▁B in",
+ "▁Bi n",
+ "▁P ia",
+ "▁Pi a",
+ "▁и мен",
+ "▁име н",
+ "▁им ен",
+ "▁Bob by",
+ "▁produ it",
+ "▁prod uit",
+ "em pio",
+ "emp io",
+ "▁redu cing",
+ "▁Y u",
+ "▁Gesch äft",
+ "▁per ché",
+ "▁c ors",
+ "▁cor s",
+ "▁co rs",
+ "▁i cons",
+ "▁icon s",
+ "▁ic ons",
+ "▁ icons",
+ "App Data",
+ "▁H og",
+ "▁Ho g",
+ "▁р ів",
+ "▁рі в",
+ "▁ рів",
+ "▁S ans",
+ "▁San s",
+ "▁Sa ns",
+ "▁si ège",
+ "▁siè ge",
+ "st ellen",
+ "stell en",
+ "stelle n",
+ "Br ush",
+ "OF F",
+ "O FF",
+ "▁vis itor",
+ "▁visit or",
+ "▁b ath",
+ "▁ba th",
+ "▁bat h",
+ "▁f ee",
+ "▁fe e",
+ "at isf",
+ "ati sf",
+ "atis f",
+ "▁cu rv",
+ "▁cur v",
+ "▁fol gender",
+ "▁folg ender",
+ "▁cons cience",
+ "▁Se attle",
+ "▁med ieval",
+ "▁medi eval",
+ "dist ribution",
+ "▁D M",
+ "▁ DM",
+ "▁м я",
+ "▁ мя",
+ "▁R UN",
+ "ak ov",
+ "ako v",
+ "a kov",
+ "ce il",
+ "c eil",
+ "▁let ting",
+ "▁lett ing",
+ "▁d ov",
+ "▁do v",
+ "▁о би",
+ "▁об и",
+ "ki ej",
+ "kie j",
+ "k iej",
+ "▁dire kt",
+ "▁t m",
+ "▁ tm",
+ "col ors",
+ "color s",
+ "colo rs",
+ "▁alt ro",
+ "▁tijd ens",
+ "]{ '",
+ "] {'",
+ "▁B om",
+ "▁Bo m",
+ "▁k unst",
+ "▁kun st",
+ "▁sh elter",
+ "▁r av",
+ "▁ra v",
+ "▁ rav",
+ "pre dict",
+ "pred ict",
+ "▁comenz ó",
+ "▁świ at",
+ "▁św iat",
+ "▁Du rant",
+ "▁Dur ant",
+ "▁sch emes",
+ "▁scheme s",
+ "▁sche mes",
+ "▁m esh",
+ "▁me sh",
+ "▁mes h",
+ "▁ind icator",
+ "▁indic ator",
+ "▁E mer",
+ "▁Em er",
+ "▁gu ilty",
+ "не ц",
+ "▁consequ ences",
+ "▁consequence s",
+ "cl udes",
+ "clude s",
+ "clud es",
+ "▁L ower",
+ "▁Lo wer",
+ "▁Low er",
+ "▁ Lower",
+ "▁по ме",
+ "▁p ace",
+ "▁pa ce",
+ "▁pac e",
+ "▁ pace",
+ "да го",
+ "▁am bos",
+ "▁amb os",
+ "l b",
+ "▁educ ated",
+ "ur ale",
+ "ura le",
+ "ural e",
+ "u rale",
+ "an h",
+ "es ség",
+ "ess ég",
+ "▁associ ations",
+ "▁association s",
+ "to wn",
+ "t own",
+ "▁t rif",
+ "▁tr if",
+ "▁tri f",
+ "sample s",
+ "sam ples",
+ "s amples",
+ "bo s",
+ "b os",
+ "▁S pect",
+ "▁Sp ect",
+ "▁Spe ct",
+ "▁Spec t",
+ "▁Ц е",
+ "alt ung",
+ "▁L ob",
+ "▁Lo b",
+ "▁curios ity",
+ "▁We iter",
+ "▁Wei ter",
+ "▁Weit er",
+ "est one",
+ "esto ne",
+ "eston e",
+ "e stone",
+ "▁dem ol",
+ "▁demo l",
+ "▁ap olog",
+ "▁apo log",
+ "▁D ynamic",
+ "▁Dynam ic",
+ "▁ Dynamic",
+ "In ner",
+ "es per",
+ "esp er",
+ "ec z",
+ "e cz",
+ "uel lement",
+ "uelle ment",
+ "▁Hamilton ian",
+ "At las",
+ "▁ar gue",
+ "▁arg ue",
+ "For eign",
+ "F oreign",
+ "col lapse",
+ "▁tér min",
+ "▁electron ic",
+ "▁electro nic",
+ "▁N R",
+ "▁ NR",
+ "▁c orr",
+ "▁cor r",
+ "▁co rr",
+ "▁ corr",
+ "tem ps",
+ "temp s",
+ "Index Path",
+ "я з",
+ "▁tal ál",
+ "to day",
+ "tod ay",
+ "wa ve",
+ "w ave",
+ "▁s ib",
+ "▁si b",
+ "▁с пи",
+ "▁сп и",
+ "▁con vey",
+ "▁conv ey",
+ "▁Gé ographie",
+ "▁Н ью",
+ "▁Hi bernate",
+ "▁t in",
+ "▁ti n",
+ "di c",
+ "d ic",
+ "pp ings",
+ "pping s",
+ "s weise",
+ "▁roll ing",
+ "▁rol ling",
+ "▁ rolling",
+ "▁select s",
+ ")\\ )",
+ ") \\)",
+ "▁po eta",
+ "▁poet a",
+ "▁сте пени",
+ "▁A br",
+ "▁Ab r",
+ "▁hö ch",
+ "▁s tern",
+ "▁st ern",
+ "▁ste rn",
+ "▁ster n",
+ "▁f jär",
+ "▁inst aller",
+ "▁install er",
+ "▁instal ler",
+ "de cl",
+ "dec l",
+ "▁m iser",
+ "▁mi ser",
+ "▁mis er",
+ "▁mise r",
+ "group by",
+ "sub str",
+ "subst r",
+ "▁phen omen",
+ "▁W ing",
+ "▁Win g",
+ "▁Wi ng",
+ "▁f ills",
+ "▁fil ls",
+ "▁fill s",
+ "▁ú nico",
+ "Run ning",
+ "R unning",
+ "Com e",
+ "Co me",
+ "C ome",
+ "ir able",
+ "ira ble",
+ "i rable",
+ "sim eq",
+ "sime q",
+ "▁re mp",
+ "▁r emp",
+ "▁rem p",
+ "ke le",
+ "kel e",
+ "k ele",
+ "li ers",
+ "lie rs",
+ "lier s",
+ "l iers",
+ "▁kwiet nia",
+ "▁inter rupted",
+ "▁interrupt ed",
+ "▁J et",
+ "▁Je t",
+ "=\\ {",
+ "= \\{",
+ "íd o",
+ "í do",
+ "▁Tai wan",
+ "▁воз ра",
+ "▁altern atives",
+ "▁alternative s",
+ "▁T ir",
+ "▁Ti r",
+ "▁Re serve",
+ "▁Res erve",
+ "▁К ур",
+ "▁Ку р",
+ "▁No bel",
+ "▁Nob el",
+ "▁рабо тал",
+ "▁работа л",
+ "▁a xes",
+ "▁ax es",
+ "▁C ependant",
+ "k á",
+ "▁er neut",
+ "▁D emo",
+ "▁De mo",
+ "▁Dem o",
+ "▁ Demo",
+ "comm unic",
+ "con structor",
+ "construct or",
+ "▁Mon day",
+ "▁Mond ay",
+ "N il",
+ "Hash Map",
+ "pay ment",
+ "▁fix ing",
+ "▁A DD",
+ "▁AD D",
+ "▁ ADD",
+ "re view",
+ "rev iew",
+ "▁poss ibil",
+ "▁possib il",
+ "▁g rote",
+ "▁gr ote",
+ "▁gro te",
+ "▁group ed",
+ "▁groupe d",
+ "▁L ima",
+ "▁Li ma",
+ "▁Lim a",
+ "▁A ugen",
+ "▁Au gen",
+ "▁Aug en",
+ "▁o ckså",
+ "on as",
+ "ona s",
+ "o nas",
+ "▁deb ate",
+ "▁In gl",
+ "▁Ing l",
+ "D a",
+ "SO UR",
+ "S OUR",
+ "ett be",
+ "▁Batt alion",
+ "▁F loat",
+ "▁Flo at",
+ "▁ Float",
+ "▁c one",
+ "▁con e",
+ "▁co ne",
+ "read sheet",
+ "co urt",
+ "cou rt",
+ "c ourt",
+ "li gen",
+ "lig en",
+ "lige n",
+ "l igen",
+ "▁Begin n",
+ "▁Beg inn",
+ "▁LI MIT",
+ "▁LIM IT",
+ "▁enjo yed",
+ "▁enjoy ed",
+ "▁Jak ob",
+ "▁t elt",
+ "▁te lt",
+ "▁tel t",
+ "back end",
+ "▁Gemeins ame",
+ "li nt",
+ "lin t",
+ "l int",
+ "al ling",
+ "all ing",
+ "▁b ör",
+ "gr and",
+ "gra nd",
+ "g rand",
+ "▁divers es",
+ "▁diverse s",
+ "▁z wiąz",
+ "▁Kom pon",
+ "▁inner halb",
+ "▁desar rollo",
+ "▁desarroll o",
+ "▁Ma sters",
+ "▁Mas ters",
+ "▁Master s",
+ "io so",
+ "ios o",
+ "i oso",
+ "]` .",
+ "] `.",
+ "▁frances a",
+ "▁franc esa",
+ "A ff",
+ "in ek",
+ "ine k",
+ "i nek",
+ "▁des sin",
+ "▁dess in",
+ "`. `",
+ "` .`",
+ "▁r anks",
+ "▁ran ks",
+ "▁rank s",
+ "бер г",
+ "▁s kal",
+ "▁sk al",
+ "▁S ultan",
+ "▁Sul tan",
+ "А Н",
+ "▁спо соб",
+ "▁contra dict",
+ "▁contrad ict",
+ "▁re com",
+ "▁rec om",
+ "▁Ok lahoma",
+ "▁Vlad imir",
+ "▁m eters",
+ "▁me ters",
+ "▁met ers",
+ "▁meter s",
+ "trans port",
+ "▁cons ulté",
+ "▁consult é",
+ "▁ consulté",
+ "▁A TP",
+ "▁AT P",
+ "eb b",
+ "e bb",
+ "▁vol unte",
+ "▁volunt e",
+ "▁out line",
+ "LI C",
+ "L IC",
+ "▁e uro",
+ "▁eu ro",
+ "Char Field",
+ "med ium",
+ "medi um",
+ "▁Belg ique",
+ "Pro c",
+ "Pr oc",
+ "P roc",
+ "ro utes",
+ "route s",
+ "rout es",
+ "rou tes",
+ "▁cont ribu",
+ "▁contrib u",
+ "! }",
+ "ší m",
+ "š ím",
+ "▁L ess",
+ "▁Le ss",
+ "▁Les s",
+ "▁K ost",
+ "▁Ko st",
+ "▁Kos t",
+ "▁eredet iből",
+ "re ven",
+ "rev en",
+ "r even",
+ "ver ify",
+ "▁S alt",
+ "▁Sal t",
+ "▁Sa lt",
+ "▁shoot ing",
+ "▁sho oting",
+ "▁dis pose",
+ "▁dispos e",
+ "▁disp ose",
+ "uj í",
+ "▁t ierra",
+ "▁tier ra",
+ "▁po ison",
+ "▁poi son",
+ "sa k",
+ "s ak",
+ "periment al",
+ "▁N é",
+ "▁K id",
+ "▁Ki d",
+ "ag yar",
+ "agy ar",
+ "▁archiv álva",
+ "be reich",
+ "bere ich",
+ "í z",
+ "▁R itter",
+ "▁Хронологи ја",
+ "ze um",
+ "да х",
+ "▁gr ünd",
+ "▁program mer",
+ "▁programme r",
+ "▁cons eil",
+ "▁conse il",
+ "▁enc rypt",
+ "integr ation",
+ "C ulture",
+ "▁Circ le",
+ "▁Cir cle",
+ "Ob servable",
+ "▁gen omsnitt",
+ "▁Se lection",
+ "▁Select ion",
+ "▁Sel ection",
+ "▁Sele ction",
+ "▁ Selection",
+ "▁ir regular",
+ "Aut res",
+ "Per cent",
+ "fa ult",
+ "f ault",
+ "▁virt ue",
+ "ą pi",
+ "▁s ess",
+ "▁se ss",
+ "▁ses s",
+ "▁Так же",
+ "Tim estamp",
+ "▁litt érature",
+ "▁mo ż",
+ "▁b orrow",
+ "▁bor row",
+ "▁con ced",
+ "▁conc ed",
+ "▁conce d",
+ "чни к",
+ "ч ник",
+ "▁L und",
+ "▁Lu nd",
+ "ION S",
+ "IO NS",
+ "yn ie",
+ "y nie",
+ "▁S hin",
+ "▁Sh in",
+ "▁o sob",
+ "▁os ob",
+ "b ě",
+ "▁int uit",
+ "▁intu it",
+ "▁на п",
+ "▁p roph",
+ "▁pro ph",
+ "▁pr oph",
+ "▁prop h",
+ "▁p itt",
+ "▁pi tt",
+ "▁pit t",
+ "▁IB M",
+ "▁T ill",
+ "▁Ti ll",
+ "▁h ina",
+ "▁hi na",
+ "▁hin a",
+ "it test",
+ "itt est",
+ "itte st",
+ "gener ator",
+ "▁N in",
+ "▁Ni n",
+ "▁K ot",
+ "▁Ko t",
+ "▁p asser",
+ "▁pass er",
+ "▁pas ser",
+ "▁passe r",
+ "▁dis position",
+ "▁dispos ition",
+ "▁disp osition",
+ "un ing",
+ "uni ng",
+ "u ning",
+ "▁f ame",
+ "▁fa me",
+ "▁fam e",
+ "▁t enia",
+ "▁te nia",
+ "▁ten ia",
+ "an cement",
+ "ance ment",
+ "anc ement",
+ "▁Su isse",
+ "` -",
+ "▁h ombres",
+ "▁hom bres",
+ "▁hombre s",
+ "▁inf inity",
+ "▁infin ity",
+ "▁окон ча",
+ "▁co sm",
+ "▁cos m",
+ "▁D ennis",
+ "▁Den nis",
+ "ba z",
+ "b az",
+ "ha upt",
+ "h aupt",
+ "▁might y",
+ "▁pr ede",
+ "▁pre de",
+ "▁pred e",
+ "us able",
+ "usa ble",
+ "▁ws zyst",
+ "▁wsz yst",
+ "▁l b",
+ "▁ lb",
+ "AB ASE",
+ "A BASE",
+ "j na",
+ "не в",
+ "н ев",
+ "▁as es",
+ "▁ ases",
+ "▁final mente",
+ "й м",
+ "pe ction",
+ "pect ion",
+ "pec tion",
+ "p ection",
+ "▁Stud ien",
+ "▁Norweg ian",
+ "ce go",
+ "c ego",
+ "IN DEX",
+ "IND EX",
+ "or ten",
+ "ort en",
+ "orte n",
+ "▁friend ship",
+ "▁friends hip",
+ "met ro",
+ "m etro",
+ "th ick",
+ "▁Z el",
+ "▁Ze l",
+ "LO W",
+ "L OW",
+ "▁there by",
+ "un ted",
+ "unt ed",
+ "unte d",
+ "▁sur faces",
+ "▁surface s",
+ "ющи м",
+ "%) .",
+ "% ).",
+ "▁W onder",
+ "▁Wo nder",
+ "▁redund ant",
+ "▁G ros",
+ "▁Gr os",
+ "▁Gro s",
+ "▁web sites",
+ "▁website s",
+ "▁v io",
+ "▁vi o",
+ "▁o cas",
+ "▁oc as",
+ "vé s",
+ "v és",
+ "▁G am",
+ "▁Ga m",
+ "d w",
+ "Ind icator",
+ "▁K ob",
+ "▁Ko b",
+ "▁j ack",
+ "▁ja ck",
+ "▁ jack",
+ "Hi nt",
+ "H int",
+ "▁A pol",
+ "▁Ap ol",
+ "▁други е",
+ "▁N UM",
+ "▁ NUM",
+ "▁o fic",
+ "▁of ic",
+ "yst ycz",
+ "▁were ld",
+ "▁wer eld",
+ "мо сти",
+ "LE FT",
+ "▁T ypes",
+ "▁Type s",
+ "▁Ty pes",
+ "▁Typ es",
+ "▁ Types",
+ "se en",
+ "see n",
+ "s een",
+ "un cia",
+ "unc ia",
+ "unci a",
+ "▁n arod",
+ "▁na rod",
+ "▁nar od",
+ "▁это т",
+ "Side note",
+ "S idenote",
+ "ue il",
+ "u eil",
+ "▁от ме",
+ "▁cour ts",
+ "▁court s",
+ "fi r",
+ "f ir",
+ "ur z",
+ "u rz",
+ "чен ко",
+ "Cred entials",
+ "▁imag ination",
+ "it ats",
+ "ita ts",
+ "itat s",
+ "bu ff",
+ "buf f",
+ "b uff",
+ "fl ash",
+ "▁bad ly",
+ "▁w orn",
+ "▁wor n",
+ "▁wo rn",
+ "▁окру гу",
+ "cat alog",
+ "catal og",
+ "c atalog",
+ "li me",
+ "lim e",
+ "l ime",
+ "▁G ill",
+ "▁Gi ll",
+ "▁Gil l",
+ "▁S ent",
+ "▁Se nt",
+ "▁Sen t",
+ "ie lla",
+ "iel la",
+ "i ella",
+ "▁Cra ig",
+ "▁S ele",
+ "▁Se le",
+ "▁Sel e",
+ "▁Indep end",
+ "▁prov incie",
+ "▁provin cie",
+ "os sen",
+ "oss en",
+ "▁за пад",
+ "▁запа д",
+ "▁inf ant",
+ "▁pr events",
+ "▁prevent s",
+ "▁prev ents",
+ "▁provin ces",
+ "▁province s",
+ "af é",
+ "be g",
+ "b eg",
+ "▁col ours",
+ "▁colour s",
+ "B F",
+ "ë n",
+ "▁Ме жду",
+ "î n",
+ "Ob server",
+ "for sch",
+ "í gen",
+ "um ption",
+ "ump tion",
+ "▁Ill ustr",
+ "ри ст",
+ "рис т",
+ "▁по лови",
+ "▁пол ови",
+ "▁поло ви",
+ "▁` &",
+ "▁o re",
+ "▁or e",
+ "▁ ore",
+ "▁supp lies",
+ "▁parent hes",
+ "Found ation",
+ "▁v ou",
+ "▁vo u",
+ "▁T out",
+ "▁To ut",
+ "Don ald",
+ "▁R ET",
+ "▁RE T",
+ "we ig",
+ "wei g",
+ "▁produ cción",
+ "mi x",
+ "m ix",
+ "▁ut wor",
+ "▁f öl",
+ "▁fö l",
+ "▁ent ão",
+ "▁S ister",
+ "▁Si ster",
+ "Tag s",
+ "T ags",
+ "▁Савез не",
+ "▁privile ges",
+ "▁na zw",
+ "▁naz w",
+ "▁R av",
+ "▁Ra v",
+ "▁re pro",
+ "▁rep ro",
+ "▁repr o",
+ "▁M ason",
+ "▁Ma son",
+ "▁Mas on",
+ "▁Pl atform",
+ "▁Plat form",
+ "▁ Platform",
+ "▁про бле",
+ "▁P érez",
+ "▁bl anc",
+ "▁bla nc",
+ "▁blan c",
+ "Be havior",
+ "фи ци",
+ "ek en",
+ "e ken",
+ "▁me ets",
+ "▁meet s",
+ "(. *",
+ "( .*",
+ "▁f å",
+ "ep en",
+ "e pen",
+ "ma ker",
+ "make r",
+ "m aker",
+ "▁lo yal",
+ "mem bers",
+ "member s",
+ "m embers",
+ "meister schaft",
+ "go al",
+ "ш лен",
+ "▁се веро",
+ "▁север о",
+ "ie nde",
+ "ien de",
+ "i ende",
+ "д ні",
+ "Pro of",
+ "▁exp lic",
+ "▁expl ic",
+ "▁elect ro",
+ "ie ls",
+ "iel s",
+ "i els",
+ "re load",
+ "▁el even",
+ "▁ele ven",
+ "▁elev en",
+ "▁part idos",
+ "▁partido s",
+ "în e",
+ "î ne",
+ "▁R egin",
+ "▁Re gin",
+ "▁Reg in",
+ "▁é x",
+ "▁Bu lg",
+ "▁Bul g",
+ "▁network ing",
+ "▁net working",
+ "▁se parator",
+ "▁separ ator",
+ "User Name",
+ "▁edific io",
+ "▁M ie",
+ "▁Mi e",
+ "▁id le",
+ "ye d",
+ "y ed",
+ "▁pass engers",
+ "▁passenger s",
+ "+ )",
+ "me no",
+ "men o",
+ "m eno",
+ "eg gi",
+ "e ggi",
+ "▁nice ly",
+ "▁nic ely",
+ "end encia",
+ "enden cia",
+ "чи й",
+ "ét és",
+ "été s",
+ "ight arrow",
+ "▁orth ogonal",
+ "▁H alf",
+ "▁Hal f",
+ "▁fe wer",
+ "▁few er",
+ "▁pro pi",
+ "▁prop i",
+ "▁pr imit",
+ "▁prim it",
+ "▁pri mit",
+ "▁primi t",
+ "ic ale",
+ "ical e",
+ "ica le",
+ "▁f lower",
+ "▁fl ower",
+ "▁flow er",
+ "▁flo wer",
+ "mer k",
+ "m erk",
+ "▁Оте че",
+ "▁pers istent",
+ "▁persist ent",
+ "▁V ille",
+ "▁Vill e",
+ "▁Vi lle",
+ "▁Vil le",
+ "Me n",
+ "M en",
+ "ga ben",
+ "gabe n",
+ "g aben",
+ "▁Isa ac",
+ "at ivity",
+ "ativ ity",
+ "ati vity",
+ "▁pół noc",
+ "▁r ok",
+ "▁ro k",
+ "▁ rok",
+ "car ds",
+ "card s",
+ "c ards",
+ "де ния",
+ "▁ю го",
+ "▁extra ordinary",
+ "▁k yr",
+ "(\" ,",
+ "( \",",
+ ")) ]",
+ ") )]",
+ "▁un ix",
+ "▁ unix",
+ "ко л",
+ "▁s ink",
+ "▁sin k",
+ "ap sed",
+ "aps ed",
+ "▁k ommen",
+ "▁kom men",
+ "▁komm en",
+ "▁ kommen",
+ "▁for cing",
+ "Ab out",
+ "▁H alle",
+ "▁Ha lle",
+ "▁Hall e",
+ "▁Hal le",
+ "▁Maj esty",
+ "▁Sw itch",
+ "▁ Switch",
+ "▁ab road",
+ "▁acceler ation",
+ "ur bed",
+ "urb ed",
+ "▁о стан",
+ "▁ос тан",
+ "▁оста н",
+ "▁ост ан",
+ "Re ady",
+ "Read y",
+ "▁пів ні",
+ "Br a",
+ "B ra",
+ "▁ць ого",
+ "▁pl ut",
+ "▁T rain",
+ "▁Tr ain",
+ "▁Tra in",
+ "▁á prilis",
+ "▁p uesto",
+ "▁pu esto",
+ "▁pue sto",
+ "▁t oss",
+ "▁to ss",
+ "▁irre levant",
+ "▁d ip",
+ "▁di p",
+ "se gment",
+ "seg ment",
+ "op acity",
+ "▁lors que",
+ "▁versch ill",
+ "ен а",
+ "е на",
+ "▁D oc",
+ "▁Do c",
+ "▁ Doc",
+ "%%%% %%%%",
+ "▁b orders",
+ "▁border s",
+ "▁bor ders",
+ "▁bord ers",
+ "ge bras",
+ "geb ras",
+ "gebra s",
+ "▁r ies",
+ "▁ri es",
+ "▁ ries",
+ "▁Olymp edia",
+ "▁Gener ation",
+ "met ros",
+ "metro s",
+ "▁hor izon",
+ "▁adapt ation",
+ "▁Z ahl",
+ "▁Za hl",
+ "▁na he",
+ "▁nah e",
+ "▁B ug",
+ "▁Bu g",
+ "P icture",
+ "љ и",
+ "R GB",
+ "O wner",
+ "ad in",
+ "adi n",
+ "a din",
+ "▁Catal unya",
+ "ný ch",
+ "n ých",
+ "▁cual quier",
+ "▁Inst itution",
+ "▁Instit ution",
+ "▁Institut ion",
+ "in sen",
+ "ins en",
+ "▁Bras ile",
+ "▁Brasil e",
+ "▁f itting",
+ "▁fit ting",
+ "De leg",
+ "Del eg",
+ "ic two",
+ "ict wo",
+ "▁Ex per",
+ "▁Exp er",
+ "och astic",
+ "▁d us",
+ "▁du s",
+ "▁по ра",
+ "▁пор а",
+ "▁sub string",
+ "▁subst ring",
+ "▁subs tring",
+ "▁substr ing",
+ "▁ substring",
+ "сси и",
+ "с сии",
+ "oi n",
+ "o in",
+ "▁ш кола",
+ "▁шко ла",
+ "▁c x",
+ "▁ cx",
+ "▁% )",
+ "▁ %)",
+ "▁Bud dh",
+ "▁p ending",
+ "▁pen ding",
+ "▁En try",
+ "▁Ent ry",
+ "▁ Entry",
+ "▁Be rl",
+ "▁Ber l",
+ "▁c ler",
+ "▁cl er",
+ "▁cle r",
+ "▁ cler",
+ "▁S oc",
+ "▁So c",
+ "▁r ounded",
+ "▁round ed",
+ "▁m v",
+ "▁ mv",
+ "ít ett",
+ "▁Di plom",
+ "▁französ ischen",
+ "▁G an",
+ "▁Ga n",
+ "▁Inv estig",
+ "▁index Path",
+ "▁ indexPath",
+ "▁mol ti",
+ "▁molt i",
+ "pers istence",
+ "▁XIX e",
+ "▁Elect ron",
+ "b ü",
+ "ge le",
+ "gel e",
+ "g ele",
+ "▁M aler",
+ "▁Ma ler",
+ "▁Mal er",
+ "▁Male r",
+ "▁proyect o",
+ "▁B ath",
+ "▁Ba th",
+ "▁Bat h",
+ "el lers",
+ "ell ers",
+ "elle rs",
+ "eller s",
+ "▁G P",
+ "▁ GP",
+ "on ing",
+ "oni ng",
+ "o ning",
+ "clou dflare",
+ "▁p ři",
+ "▁př i",
+ "▁d ed",
+ "▁de d",
+ "▁ ded",
+ "▁Od kazy",
+ "▁M sg",
+ "▁ Msg",
+ "▁B eing",
+ "▁Be ing",
+ "▁Bei ng",
+ "▁De puis",
+ "▁Dep uis",
+ "▁Pri mary",
+ "▁Prim ary",
+ "▁Prima ry",
+ "▁ Primary",
+ "▁App ro",
+ "▁Ap pro",
+ "▁form ally",
+ "▁formal ly",
+ "ступ ил",
+ "ступи л",
+ "▁fue ra",
+ "▁fu era",
+ "▁fuer a",
+ "▁R oot",
+ "▁Ro ot",
+ "▁ Root",
+ "▁aut onom",
+ "▁auto nom",
+ "▁secret ary",
+ "▁os ób",
+ "▁cu ales",
+ "▁cual es",
+ "▁Dep ending",
+ "▁a si",
+ "▁as i",
+ "▁ asi",
+ "ve ra",
+ "ver a",
+ "v era",
+ "▁rus se",
+ "▁russ e",
+ "▁pro ves",
+ "▁prov es",
+ "▁prove s",
+ "▁pres iden",
+ "R U",
+ "▁Wat son",
+ "▁web pack",
+ "▁ webpack",
+ "elli gence",
+ "ellig ence",
+ "ка м",
+ "▁Office r",
+ "▁Offic er",
+ "▁d elivery",
+ "▁deliver y",
+ "▁deli very",
+ "ж дён",
+ "▁им пе",
+ "▁w il",
+ "▁v esc",
+ "▁ve sc",
+ "▁ves c",
+ "uszt us",
+ "▁Ge off",
+ "() }",
+ "( )}",
+ "▁F ore",
+ "▁For e",
+ "▁Fo re",
+ "▁w enig",
+ "▁we nig",
+ "▁wen ig",
+ "▁A irl",
+ "▁Air l",
+ "▁E fter",
+ "▁Bre ak",
+ "▁St äd",
+ "is miss",
+ "ism iss",
+ "í p",
+ "▁avoid ed",
+ "▁avo ided",
+ "▁assert ion",
+ "D N",
+ "▁te at",
+ "▁tea t",
+ "ín a",
+ "í na",
+ "▁mechan ical",
+ "is u",
+ "i su",
+ "@ {",
+ "▁n ou",
+ "▁no u",
+ "▁ nou",
+ "Ital ie",
+ "source forge",
+ "▁s vo",
+ "▁sv o",
+ "▁kir ály",
+ "▁Re ferences",
+ "▁Refer ences",
+ "▁Reference s",
+ "si x",
+ "s ix",
+ "▁Arch ives",
+ "▁Archiv es",
+ "▁Archive s",
+ "▁fin ishing",
+ "▁finish ing",
+ "ac je",
+ "ét at",
+ "éta t",
+ "é tat",
+ "if fs",
+ "iff s",
+ "▁st ead",
+ "▁ste ad",
+ "▁fe as",
+ "aw are",
+ "awa re",
+ "a ware",
+ "la nde",
+ "land e",
+ "lan de",
+ "l ande",
+ "In ject",
+ "▁A gent",
+ "▁Ag ent",
+ "▁Age nt",
+ "▁ Agent",
+ "▁Norm datei",
+ "▁a men",
+ "▁am en",
+ "▁ amen",
+ "▁Arch itecture",
+ "az e",
+ "a ze",
+ "ș te",
+ "▁us ar",
+ "▁c ores",
+ "▁cor es",
+ "▁co res",
+ "▁core s",
+ "лі н",
+ "л ін",
+ "▁C astro",
+ "▁Cast ro",
+ "▁v æ",
+ ">\" ,",
+ "> \",",
+ "om ena",
+ "ome na",
+ "omen a",
+ "▁ge sam",
+ "▁ges am",
+ "▁Mart ín",
+ "▁Martí n",
+ "eg ung",
+ "egu ng",
+ "▁spole č",
+ "▁ampl itude",
+ "▁amplit ude",
+ "▁import ing",
+ "▁list view",
+ "TH E",
+ "T HE",
+ "zi ale",
+ "zial e",
+ "zia le",
+ "z iale",
+ "ce des",
+ "ced es",
+ "c edes",
+ "▁particul ier",
+ "▁Распо дела",
+ "▁кра й",
+ "▁d ivent",
+ "▁di vent",
+ "▁div ent",
+ "▁k é",
+ "▁ ké",
+ "qu it",
+ "qui t",
+ "q uit",
+ "то ром",
+ "тор ом",
+ "Check Box",
+ "▁Zob acz",
+ "ph e",
+ "p he",
+ "pt a",
+ "p ta",
+ "▁s jö",
+ "▁sj ö",
+ "▁розта ш",
+ "▁tedes co",
+ "▁s tal",
+ "▁st al",
+ "▁sta l",
+ "▁ stal",
+ "▁Be ruf",
+ "▁Ber uf",
+ "ова я",
+ "о вая",
+ "▁s vě",
+ "▁sv ě",
+ "▁fl ush",
+ "▁flu sh",
+ "▁ flush",
+ "▁від бу",
+ "▁rad ial",
+ "▁radi al",
+ "▁différ entes",
+ "ан та",
+ "▁Per ry",
+ "Col l",
+ "Co ll",
+ "C oll",
+ "li qu",
+ "l iqu",
+ "▁Option al",
+ "▁Opt ional",
+ "▁ Optional",
+ "▁Сан кт",
+ "▁LIN Q",
+ "▁Fran c",
+ "▁Fr anc",
+ "▁Fra nc",
+ "ci je",
+ "c ije",
+ "▁Gu illaume",
+ "kn ow",
+ "k now",
+ "▁Un its",
+ "▁Unit s",
+ "ol k",
+ "▁Syst ème",
+ "▁S ales",
+ "▁Sal es",
+ "▁Sa les",
+ "▁ehemal igen",
+ "ми рова",
+ "мир ова",
+ "x html",
+ "set opt",
+ "▁m ellan",
+ "▁mel lan",
+ "▁z ie",
+ "▁ zie",
+ "▁gi ant",
+ "Bo ard",
+ "▁C aval",
+ "▁Ca val",
+ "▁Cav al",
+ "▁def ence",
+ "-- --------",
+ "---- ------",
+ "-------- --",
+ "--- -------",
+ "------ ----",
+ "----- -----",
+ "------- ---",
+ "ps hire",
+ "p shire",
+ "ma rt",
+ "mar t",
+ "m art",
+ "▁Di oc",
+ "is kt",
+ "isk t",
+ "▁in se",
+ "▁ins e",
+ "▁é pisode",
+ "чи к",
+ "bar s",
+ "ba rs",
+ "b ars",
+ "Si to",
+ "S ito",
+ "▁integr ity",
+ "au ff",
+ "auf f",
+ "a uff",
+ "▁v är",
+ "▁vä r",
+ "Az ure",
+ "▁star b",
+ "▁sta rb",
+ "▁кон тра",
+ "▁Мекси чка",
+ "▁за па",
+ "▁Mount ains",
+ "▁Mountain s",
+ "}} =",
+ "} }=",
+ "▁pull ing",
+ "▁pul ling",
+ "▁sat ellite",
+ "▁at oms",
+ "▁atom s",
+ "▁profes or",
+ "▁repeated ly",
+ "▁repeat edly",
+ "▁inv asion",
+ "▁invas ion",
+ "program ming",
+ "├ ──",
+ "▁L ip",
+ "▁Li p",
+ "вши е",
+ "в шие",
+ "▁k een",
+ "▁ke en",
+ "▁crit ics",
+ "▁critic s",
+ "▁N icola",
+ "▁Nicol a",
+ "▁Nic ola",
+ "▁Ni cola",
+ "▁C and",
+ "▁Can d",
+ "▁Ca nd",
+ "▁dist int",
+ "▁he ading",
+ "▁head ing",
+ "p ragma",
+ "{ |",
+ "ym en",
+ "yme n",
+ "y men",
+ "▁ter rain",
+ "▁terra in",
+ "ied enis",
+ "▁bes onders",
+ "▁nomin ated",
+ "BO OL",
+ "▁K ay",
+ "▁Ka y",
+ "ci an",
+ "cia n",
+ "c ian",
+ "st elle",
+ "ste lle",
+ "stell e",
+ "▁disput e",
+ "▁disp ute",
+ "▁ щ",
+ "Data Set",
+ "no thing",
+ "not hing",
+ "n othing",
+ "Aut om",
+ "Auto m",
+ "hör en",
+ "hö ren",
+ "▁s hed",
+ "▁sh ed",
+ "▁she d",
+ "▁p aused",
+ "▁pa used",
+ "▁pause d",
+ "▁pau sed",
+ "sa n",
+ "s an",
+ "▁nun ca",
+ "!( \"",
+ "! (\"",
+ "▁po łoż",
+ "Se cret",
+ "Sec ret",
+ "▁Do main",
+ "▁Dom ain",
+ "▁ Domain",
+ "▁воз мож",
+ "X V",
+ "l v",
+ "ik h",
+ "i kh",
+ "▁S ony",
+ "▁So ny",
+ "▁Son y",
+ "m q",
+ "ot rop",
+ "otr op",
+ "▁Log ger",
+ "▁ Logger",
+ "▁thre at",
+ "as ted",
+ "ast ed",
+ "aste d",
+ "a sted",
+ "зь ко",
+ "▁fre ely",
+ "▁free ly",
+ "▁improve ments",
+ "▁improv ements",
+ "▁improvement s",
+ "ist ema",
+ "iste ma",
+ "▁illustr ate",
+ "▁t act",
+ "▁ta ct",
+ "▁fig ur",
+ "ué s",
+ "u és",
+ "rim inal",
+ "rimin al",
+ "od on",
+ "odo n",
+ "o don",
+ "int endo",
+ "▁influ enced",
+ "▁influence d",
+ "▁influen ced",
+ "FF ER",
+ "▁G host",
+ "▁Gh ost",
+ "▁со вер",
+ "▁сов ер",
+ "na d",
+ "n ad",
+ "ion ed",
+ "io ned",
+ "ione d",
+ "i oned",
+ "▁Event s",
+ "▁Ev ents",
+ "▁Even ts",
+ "▁ Events",
+ "▁wr apping",
+ "▁wra pping",
+ "▁wrap ping",
+ "-------- -+",
+ "--- ------+",
+ "------ ---+",
+ "----- ----+",
+ "------- --+",
+ "fi f",
+ "f if",
+ "▁( **",
+ "▁(* *",
+ "={ {",
+ "= {{",
+ "ма ль",
+ "м аль",
+ "▁loss es",
+ "▁Gal erie",
+ "te l",
+ "t el",
+ "▁лю того",
+ "▁K ru",
+ "▁Kr u",
+ "▁P olen",
+ "▁Pol en",
+ "▁Po len",
+ "ні м",
+ "ne ar",
+ "nea r",
+ "n ear",
+ "▁sh ame",
+ "▁moy enne",
+ "▁C P",
+ "▁ CP",
+ "pre is",
+ "▁pass enger",
+ "le k",
+ "l ek",
+ "ion ales",
+ "ional es",
+ "ionale s",
+ "iona les",
+ "kaf ka",
+ "k afka",
+ "▁partic ipe",
+ "▁particip e",
+ "▁parti cipe",
+ "▁partici pe",
+ "▁memb ership",
+ "▁member ship",
+ "▁members hip",
+ "[ _",
+ "land o",
+ "lan do",
+ "l ando",
+ "st elling",
+ "stell ing",
+ "Se m",
+ "S em",
+ "go n",
+ "g on",
+ "▁Cor rect",
+ "▁v alle",
+ "▁val le",
+ "▁va lle",
+ "▁vall e",
+ "▁read ily",
+ "▁Dok ument",
+ "hon neur",
+ "h onneur",
+ "▁test im",
+ "ul ative",
+ "do Filter",
+ "▁domin ant",
+ "am mer",
+ "amm er",
+ "▁ко ја",
+ "▁M onsieur",
+ "ze g",
+ "z eg",
+ "▁вій ни",
+ "▁F o",
+ "▁A my",
+ "▁Am y",
+ "▁ ¡",
+ "▁febru ár",
+ "▁down loading",
+ "▁download ing",
+ "▁l eng",
+ "▁le ng",
+ "▁len g",
+ "\\}$ ,",
+ "\\} $,",
+ "\\ }$,",
+ "▁ne at",
+ "▁C ache",
+ "▁Ca che",
+ "▁ Cache",
+ "IC ATION",
+ "▁de ve",
+ "▁dev e",
+ "▁s orrow",
+ "▁sor row",
+ "sl ow",
+ "s low",
+ "▁hin aus",
+ "▁hina us",
+ "▁recon oc",
+ "▁Lin ked",
+ "▁Link ed",
+ "▁Sh aw",
+ "mar ket",
+ "mark et",
+ "▁D ic",
+ "▁Di c",
+ "▁S ki",
+ "▁Sk i",
+ "▁del imiter",
+ "▁Main Activity",
+ "▁ MainActivity",
+ "▁Mus ical",
+ "▁Music al",
+ "▁Re yn",
+ "▁Rey n",
+ "Scroll View",
+ "▁convent ional",
+ "▁convention al",
+ "en ça",
+ "enç a",
+ "▁re factor",
+ "▁ref actor",
+ "' -",
+ "▁H ed",
+ "▁He d",
+ "spr ech",
+ "spre ch",
+ "▁ath let",
+ "▁e species",
+ "▁es pecies",
+ "▁espe cies",
+ "▁espec ies",
+ "▁especie s",
+ "▁Sch ön",
+ "▁kle inen",
+ "▁kleine n",
+ "▁klein en",
+ "ш ко",
+ "▁Й о",
+ "▁H appy",
+ "▁Ha ppy",
+ "multi row",
+ "▁august i",
+ "▁G and",
+ "▁Ga nd",
+ "▁Gan d",
+ "▁appoint ment",
+ "▁Medi abestanden",
+ "Th ree",
+ "▁Kenn eth",
+ "NE W",
+ "▁Not ification",
+ "▁ Notification",
+ "▁Mar x",
+ "▁Ma rx",
+ "▁in sc",
+ "▁ins c",
+ "Mo r",
+ "M or",
+ "вы й",
+ "в ый",
+ "vä st",
+ "v äst",
+ "vi dia",
+ "vid ia",
+ "v idia",
+ "▁demonstr ated",
+ "▁demonstrate d",
+ "font s",
+ "fon ts",
+ "▁k amen",
+ "▁kam en",
+ "▁ka men",
+ "▁S ter",
+ "▁St er",
+ "▁Ste r",
+ "▁mieszkań ców",
+ "▁K oh",
+ "▁Ko h",
+ "~$ \\",
+ "~ $\\",
+ "») .",
+ "» ).",
+ "re ne",
+ "ren e",
+ "r ene",
+ "ins ic",
+ "ic ká",
+ "ick á",
+ "xy gen",
+ "▁m n",
+ "▁ mn",
+ "▁s ched",
+ "▁sc hed",
+ "▁sch ed",
+ "▁sche d",
+ "AS C",
+ "A SC",
+ "I g",
+ "▁Const ant",
+ "▁opport un",
+ "▁My Class",
+ "se f",
+ "s ef",
+ "op ed",
+ "ope d",
+ "o ped",
+ "▁inj ured",
+ "VI S",
+ "V IS",
+ "▁P ero",
+ "▁Per o",
+ "▁Pe ro",
+ "▁U ntil",
+ "▁Un til",
+ "▁f lesh",
+ "▁fl esh",
+ "▁fle sh",
+ "orph ism",
+ "▁Port al",
+ "▁Por tal",
+ "▁gmin y",
+ "▁вла сти",
+ "▁N ä",
+ "кти че",
+ "к тиче",
+ "▁h rab",
+ "▁hr ab",
+ "▁C ub",
+ "▁Cu b",
+ "av oir",
+ "avo ir",
+ "a voir",
+ "▁L ars",
+ "▁La rs",
+ "▁Lar s",
+ "▁Бе ло",
+ "▁seizo en",
+ "▁Gen omsnitt",
+ "▁L il",
+ "▁Li l",
+ "▁P ool",
+ "▁Po ol",
+ "▁ Pool",
+ "▁D ios",
+ "▁Di os",
+ "T X",
+ "ae s",
+ "a es",
+ "aut ore",
+ "auto re",
+ "autor e",
+ "Al pha",
+ "st ates",
+ "state s",
+ "sta tes",
+ "stat es",
+ "La b",
+ "L ab",
+ "n ederbörd",
+ "er ton",
+ "ert on",
+ "▁b rid",
+ "▁br id",
+ "▁ brid",
+ "▁r icht",
+ "▁rich t",
+ "▁ric ht",
+ "▁ri cht",
+ "▁ richt",
+ "▁E la",
+ "▁El a",
+ "▁с ла",
+ "▁ сла",
+ "▁weap on",
+ "▁comb att",
+ "▁combat t",
+ "ag ar",
+ "aga r",
+ "a gar",
+ "▁reg nig",
+ "▁util isé",
+ "▁utilis é",
+ "▁ser vir",
+ "▁serv ir",
+ "▁servi r",
+ "▁b rick",
+ "▁br ick",
+ "▁gate way",
+ "▁tor raste",
+ "▁proced ures",
+ "▁procedure s",
+ "▁års nederbörd",
+ "▁Genomsnitt lig",
+ "чё т",
+ "ч ёт",
+ "▁om rå",
+ "▁ områ",
+ "▁regnig aste",
+ "▁че сть",
+ "▁a mid",
+ "▁am id",
+ "▁ami d",
+ "▁gr ateful",
+ "▁D IS",
+ "▁DI S",
+ "▁ DIS",
+ "DA Y",
+ "▁о ру",
+ "▁ор у",
+ "▁ ору",
+ "▁riv ière",
+ "he ure",
+ "▁Rich mond",
+ "▁Com par",
+ "▁Comp ar",
+ "▁Н ор",
+ "▁Но р",
+ "DO C",
+ "D OC",
+ "es ia",
+ "esi a",
+ "cal c",
+ "▁I U",
+ "▁v org",
+ "▁vo rg",
+ "▁vor g",
+ "▁hab ían",
+ "▁había n",
+ "ço it",
+ "ç oit",
+ "▁a rist",
+ "▁ar ist",
+ "▁к ли",
+ "▁ кли",
+ "▁S ue",
+ "▁Su e",
+ "▁T ouch",
+ "▁To uch",
+ "▁ Touch",
+ "▁Writ ing",
+ "ifi able",
+ "▁w c",
+ "▁with draw",
+ "за р",
+ "з ар",
+ "▁present ly",
+ "▁pres ently",
+ "▁F K",
+ "▁pr akt",
+ "▁pra kt",
+ "▁col ored",
+ "▁color ed",
+ "us b",
+ "u sb",
+ "▁Per ú",
+ "▁pl ata",
+ "▁pla ta",
+ "▁plat a",
+ "▁w ishes",
+ "▁wish es",
+ "▁wis hes",
+ "▁ка м",
+ "▁ кам",
+ "az ar",
+ "aza r",
+ "a zar",
+ "áv el",
+ "á vel",
+ "▁l amp",
+ "▁la mp",
+ "bi shop",
+ "b ishop",
+ "▁in clusion",
+ "▁incl usion",
+ "▁inclus ion",
+ "j q",
+ "ar th",
+ "art h",
+ "▁F lag",
+ "▁Fl ag",
+ "▁ Flag",
+ "▁но р",
+ "▁н ор",
+ "æ dia",
+ "UN CTION",
+ "▁Bahn hof",
+ "▁appro aching",
+ "▁approach ing",
+ "▁G ött",
+ "▁Gö tt",
+ "▁c ube",
+ "▁cu be",
+ "▁cub e",
+ "▁arg ued",
+ "▁argue d",
+ "▁Th ings",
+ "Gu i",
+ "G ui",
+ "до ви",
+ "дов и",
+ "д ови",
+ "▁re cre",
+ "▁rec re",
+ "▁ré seau",
+ "▁rés eau",
+ "▁sign ifica",
+ "▁signific a",
+ "Gi t",
+ "G it",
+ "geb racht",
+ "gebra cht",
+ "▁l iga",
+ "▁li ga",
+ "▁lig a",
+ "▁ liga",
+ "▁ass ured",
+ "al us",
+ "alu s",
+ "a lus",
+ "ри т",
+ "р ит",
+ "▁э нциклопеди",
+ "▁% ).",
+ "▁%) .",
+ "▁ %).",
+ "▁Prem ière",
+ "▁declar ations",
+ "▁declaration s",
+ "▁tr icky",
+ "▁trick y",
+ "▁pro files",
+ "▁prof iles",
+ "▁profile s",
+ "▁profil es",
+ "▁F on",
+ "▁Fo n",
+ "▁J as",
+ "▁Ja s",
+ "â r",
+ "ba bel",
+ "b abel",
+ "▁Fr iday",
+ "▁Fri day",
+ "▁Frid ay",
+ "▁jú nius",
+ "▁c ols",
+ "▁col s",
+ "▁co ls",
+ "▁ cols",
+ "▁EX ISTS",
+ "▁Ital iana",
+ "▁Italian a",
+ "▁Italia na",
+ "▁author ization",
+ "▁s ulle",
+ "▁su lle",
+ "▁sul le",
+ "▁sull e",
+ "▁E mb",
+ "▁Em b",
+ "▁Vari able",
+ "▁ Variable",
+ "tr ees",
+ "tre es",
+ "tree s",
+ "t rees",
+ "▁F ly",
+ "▁Fl y",
+ "ri ors",
+ "rio rs",
+ "rior s",
+ "r iors",
+ "▁da mals",
+ "▁dam als",
+ "▁find et",
+ "▁fin det",
+ "▁Se pt",
+ "▁Sep t",
+ "▁m undial",
+ "▁rem oval",
+ "▁remov al",
+ "▁long itude",
+ "▁longitud e",
+ "cl ic",
+ "cli c",
+ "c lic",
+ "▁f ade",
+ "▁fa de",
+ "▁ fade",
+ "▁grad le",
+ "▁ gradle",
+ "▁z ák",
+ "▁zá k",
+ "▁tim ing",
+ "▁ti ming",
+ "tr ightarrow",
+ "t rightarrow",
+ "at ia",
+ "ati a",
+ "- .",
+ "uch e",
+ "uc he",
+ "u che",
+ "▁ser ialize",
+ "▁serial ize",
+ "▁H mm",
+ "▁Represent atives",
+ "ba h",
+ "b ah",
+ "re nd",
+ "ren d",
+ "r end",
+ "ass ador",
+ "assa dor",
+ "▁sh ield",
+ "uc ion",
+ "u cion",
+ "▁am éricaine",
+ "▁améric aine",
+ "▁américain e",
+ "z ę",
+ "vi lla",
+ "vil la",
+ "v illa",
+ "▁hom bre",
+ "ás s",
+ "á ss",
+ "▁S F",
+ "▁ SF",
+ "▁repe ating",
+ "▁repeat ing",
+ "▁c riter",
+ "▁cr iter",
+ "▁crit er",
+ "▁cri ter",
+ "▁St ruct",
+ "▁Str uct",
+ "▁ Struct",
+ "?? ?",
+ "? ??",
+ "▁che ap",
+ "▁r ings",
+ "▁ring s",
+ "▁rin gs",
+ "ab häng",
+ "▁c orte",
+ "▁cor te",
+ "▁cort e",
+ "▁admin ist",
+ "ix on",
+ "gy pt",
+ "▁punt os",
+ "▁punto s",
+ "▁me zi",
+ "▁mez i",
+ "▁po chod",
+ "▁poc hod",
+ "is ko",
+ "isk o",
+ "i sko",
+ "ni ę",
+ "n ię",
+ "▁о су",
+ "▁ос у",
+ "▁á r",
+ "▁ ár",
+ "те льной",
+ "тель ной",
+ "тельно й",
+ "▁Metropol itan",
+ "ji n",
+ "j in",
+ "ze ss",
+ "zes s",
+ "z ess",
+ "▁ві ці",
+ "▁conflic ts",
+ "▁conflict s",
+ "ij st",
+ "▁Mar ket",
+ "▁Mark et",
+ "ст ров",
+ "стро в",
+ "стр ов",
+ "▁\" ,\"",
+ "▁\", \"",
+ "▁ \",\"",
+ "▁Sc roll",
+ "▁ Scroll",
+ "gu n",
+ "g un",
+ "та ра",
+ "тар а",
+ "▁am ateur",
+ "▁r óż",
+ "pos s",
+ "po ss",
+ "p oss",
+ "▁general ized",
+ "▁H arm",
+ "▁Har m",
+ "▁Ha rm",
+ "ci ta",
+ "cit a",
+ "c ita",
+ "▁Sw itzerland",
+ "ic ola",
+ "ico la",
+ "icol a",
+ "i cola",
+ "▁m uit",
+ "▁mu it",
+ "loc ated",
+ "▁c ó",
+ "▁a rose",
+ "▁ar ose",
+ "▁commun auté",
+ "}) ^",
+ "} )^",
+ "vis ibility",
+ "íd a",
+ "í da",
+ "▁F B",
+ "▁ FB",
+ "▁Fre und",
+ "ga t",
+ "g at",
+ "\": {\"",
+ "int ellij",
+ "if ie",
+ "ifi e",
+ "hm en",
+ "h men",
+ "▁éd ition",
+ "▁ édition",
+ "▁ко је",
+ "▁ін ших",
+ "om ing",
+ "omin g",
+ "omi ng",
+ "o ming",
+ "▁arqu itect",
+ "▁Pres idente",
+ "▁President e",
+ "▁П ід",
+ "▁ca bin",
+ "▁cab in",
+ "The orem",
+ "▁G ay",
+ "▁Ga y",
+ "if ice",
+ "ific e",
+ "ifi ce",
+ "▁h ect",
+ "▁he ct",
+ "l ą",
+ "irm ingham",
+ "▁sem antic",
+ "▁Louis iana",
+ "▁sac rifice",
+ "▁sacr ifice",
+ "▁sacrific e",
+ "▁Christ oph",
+ "▁Exec utive",
+ "_ +",
+ "j ák",
+ "▁s eria",
+ "▁se ria",
+ "▁ser ia",
+ "▁Over flow",
+ "▁ Overflow",
+ "▁Lu cy",
+ "▁Luc y",
+ "▁mel hor",
+ "▁vo ices",
+ "▁voice s",
+ "cz a",
+ "c za",
+ "▁ка пи",
+ "▁университе та",
+ "IN CT",
+ "▁col oc",
+ "▁co loc",
+ "▁pr ue",
+ "▁ge omet",
+ "▁geom et",
+ "▁di retto",
+ "▁dire tto",
+ "▁dir etto",
+ "▁dirett o",
+ "re so",
+ "res o",
+ "r eso",
+ "▁A kt",
+ "▁Ak t",
+ "▁un h",
+ "▁се ри",
+ "▁сер и",
+ "▁Al ert",
+ "▁Ale rt",
+ "▁ Alert",
+ "We l",
+ "W el",
+ "au di",
+ "aud i",
+ "a udi",
+ "äl er",
+ "ä ler",
+ "▁gu ests",
+ "▁guest s",
+ "▁и де",
+ "St udio",
+ "▁ка те",
+ "▁ex ponent",
+ "▁expon ent",
+ "rz e",
+ "r ze",
+ "pm od",
+ "p mod",
+ "ro lle",
+ "roll e",
+ "rol le",
+ "▁Lim ited",
+ "Al lemagne",
+ "▁p ity",
+ "▁pi ty",
+ "▁pit y",
+ "▁l ä",
+ "▁ lä",
+ "▁run ner",
+ "▁ runner",
+ "ke nde",
+ "ken de",
+ "k ende",
+ "E Q",
+ "▁M M",
+ "▁ MM",
+ "sz ág",
+ "по ді",
+ "▁reg ret",
+ "▁publi é",
+ "▁depart amento",
+ "▁acc used",
+ "▁accus ed",
+ "h p",
+ "▁P fl",
+ "▁Pf l",
+ "▁S int",
+ "▁Si nt",
+ "▁Sin t",
+ "▁ek onom",
+ "ra ctor",
+ "rac tor",
+ "ract or",
+ "r actor",
+ "▁П ів",
+ "▁aw ful",
+ "owa ć",
+ "] ->",
+ "▁F ine",
+ "▁Fin e",
+ "С а",
+ "ti s",
+ "t is",
+ "ét a",
+ "é ta",
+ "▁Ро ди",
+ "▁Düsseld orf",
+ "LO B",
+ "L OB",
+ "os as",
+ "osa s",
+ "wer ke",
+ "werk e",
+ "▁l ance",
+ "▁lan ce",
+ "▁листо пада",
+ "▁in complete",
+ "▁P icture",
+ "▁ Picture",
+ "(' \\",
+ "( '\\",
+ "es ters",
+ "est ers",
+ "ester s",
+ "este rs",
+ "e sters",
+ "▁belong ed",
+ "▁S ank",
+ "▁San k",
+ "am med",
+ "amm ed",
+ "▁repos itories",
+ "▁ad dr",
+ "▁add r",
+ "▁ addr",
+ "Col lect",
+ "Coll ect",
+ "H ot",
+ "▁t yl",
+ "▁ty l",
+ "▁instance of",
+ "▁bon us",
+ "ov ý",
+ "▁мо ря",
+ "▁мор я",
+ "▁inter active",
+ "▁interact ive",
+ "▁M ys",
+ "▁My s",
+ "▁Ed mund",
+ "file Name",
+ "em or",
+ "emo r",
+ "e mor",
+ "▁Т ри",
+ "▁R osen",
+ "▁Ro sen",
+ "▁Ros en",
+ "▁Rose n",
+ "▁Pr ima",
+ "▁Pri ma",
+ "▁Prim a",
+ "▁v oting",
+ "▁vo ting",
+ "▁vot ing",
+ "▁X P",
+ "▁Z ero",
+ "▁Ze ro",
+ "▁ Zero",
+ "▁L ed",
+ "▁Le d",
+ "ams ung",
+ "▁en ables",
+ "▁enable s",
+ "▁redirect s",
+ "AS T",
+ "A ST",
+ "Pa int",
+ "P aint",
+ "ack er",
+ "ac ker",
+ "a cker",
+ "le cht",
+ "▁chair man",
+ "▁A ven",
+ "▁Av en",
+ "▁S ach",
+ "▁Sa ch",
+ "▁Sac h",
+ "(\" <",
+ "ке р",
+ "к ер",
+ "▁mist akes",
+ "▁mistake s",
+ "▁We it",
+ "▁Wei t",
+ "▁pro wad",
+ "▁ prowad",
+ "▁did nt",
+ "▁didn t",
+ "én ario",
+ "un less",
+ "▁back wards",
+ "bo a",
+ "b oa",
+ "du ino",
+ "`` `",
+ "` ``",
+ "st or",
+ "sto r",
+ "s tor",
+ "Comple tion",
+ "pu esta",
+ "▁din ast",
+ "úl t",
+ "ú lt",
+ "▁S Y",
+ "▁ SY",
+ "if olia",
+ "œuv res",
+ "œuvre s",
+ "▁r acing",
+ "▁ra cing",
+ "▁rac ing",
+ "▁cab inet",
+ "▁cabin et",
+ "▁cut ting",
+ "▁th umb",
+ "▁Ка ра",
+ "▁Кар а",
+ "high light",
+ "ку п",
+ "▁s d",
+ "▁ sd",
+ "▁на ціональ",
+ "▁camp agne",
+ "▁register s",
+ "▁educ ational",
+ "▁education al",
+ "▁p esar",
+ "▁pes ar",
+ "üg e",
+ "ü ge",
+ "▁o ro",
+ "▁or o",
+ "▁ oro",
+ "burg o",
+ "bur go",
+ "▁Athlet ics",
+ "▁M TV",
+ "get Message",
+ "▁H yp",
+ "▁Hy p",
+ "▁vict im",
+ "▁vic tim",
+ ")) \\",
+ ") )\\",
+ "▁dr ums",
+ "▁dru ms",
+ "▁drum s",
+ "host name",
+ "ta ł",
+ "t ał",
+ "ma king",
+ "m aking",
+ "▁pow iat",
+ "ő d",
+ "thread s",
+ "▁absol v",
+ "▁лю ди",
+ "▁ste pped",
+ "▁step ped",
+ "ex ist",
+ "▁N K",
+ "▁v es",
+ "▁ve s",
+ "▁ ves",
+ "ist iche",
+ "istic he",
+ "isti che",
+ "% '",
+ "at ivos",
+ "ativ os",
+ "ati vos",
+ "ativo s",
+ "▁та кой",
+ "▁тако й",
+ "▁Mongo DB",
+ "▁U ng",
+ "▁Un g",
+ "▁Р ус",
+ "▁Ру с",
+ "▁e lim",
+ "▁el im",
+ "▁F if",
+ "ic ación",
+ "ica ción",
+ "▁T ennis",
+ "▁Ten nis",
+ "▁Jeff erson",
+ "j án",
+ "fo g",
+ "f og",
+ "an ha",
+ "anh a",
+ "zo r",
+ "z or",
+ "▁уні версите",
+ "ah u",
+ "a hu",
+ "ia da",
+ "i ada",
+ "S dk",
+ "Set ting",
+ "▁K ill",
+ "▁Kil l",
+ "▁Ki ll",
+ "▁W end",
+ "▁We nd",
+ "▁b ald",
+ "▁bal d",
+ "▁ba ld",
+ "▁K ub",
+ "▁Ku b",
+ "▁v isto",
+ "▁vis to",
+ "▁vi sto",
+ "▁je unes",
+ "▁jeune s",
+ "▁jeu nes",
+ "col lections",
+ "collection s",
+ "collect ions",
+ "ac í",
+ "a cí",
+ "вро пей",
+ "▁ar ise",
+ "он і",
+ "о ні",
+ "MA IN",
+ "до ступ",
+ "▁b erg",
+ "▁be rg",
+ "▁ber g",
+ "▁ berg",
+ "▁critic ism",
+ "▁Tor re",
+ "▁de script",
+ "▁des cript",
+ "▁descri pt",
+ "ière s",
+ "i ères",
+ "▁e studio",
+ "▁est udio",
+ "▁estud io",
+ "▁i li",
+ "▁il i",
+ "▁ ili",
+ "▁mil itare",
+ "▁milit are",
+ "▁militar e",
+ "▁Cl ara",
+ "▁Cla ra",
+ "▁Clar a",
+ "▁El len",
+ "▁Elle n",
+ "▁Ell en",
+ "lim ited",
+ "limit ed",
+ "л м",
+ "▁Esp añ",
+ "▁inf initely",
+ "▁infinite ly",
+ "Amer ica",
+ "ou c",
+ "o uc",
+ "gl ass",
+ "g lass",
+ "▁r ud",
+ "▁ru d",
+ "▁z at",
+ "▁za t",
+ "▁ zat",
+ "▁r in",
+ "▁ri n",
+ "▁ rin",
+ "▁Bibli ografía",
+ "▁mer chant",
+ "tensor flow",
+ "▁d ér",
+ "▁dé r",
+ "▁Active Record",
+ "IE S",
+ "I ES",
+ "▁link er",
+ "▁lin ker",
+ "▁estud ios",
+ "▁estudio s",
+ "cdn js",
+ "▁Го судар",
+ "án chez",
+ "ap pe",
+ "app e",
+ "a ppe",
+ "cl ub",
+ "c lub",
+ "▁dal ší",
+ "▁Alg orithm",
+ "df s",
+ "d fs",
+ "▁B ac",
+ "▁Ba c",
+ "▁ка фе",
+ "▁& =\\",
+ "▁&= \\",
+ "▁а т",
+ "▁ ат",
+ "▁Г лав",
+ "▁M ou",
+ "▁Mo u",
+ "M achine",
+ "(... )",
+ "( ...)",
+ "▁com part",
+ "▁comp art",
+ "▁compar t",
+ "▁aug usztus",
+ "av an",
+ "ava n",
+ "a van",
+ "▁roll ed",
+ "▁rol led",
+ "▁ rolled",
+ "▁е ди",
+ "▁ еди",
+ "Sc an",
+ "S can",
+ "▁ре гі",
+ "▁świ ata",
+ "▁świat a",
+ "▁m ines",
+ "▁min es",
+ "▁mi nes",
+ "▁mine s",
+ "}, {",
+ "▁T ier",
+ "▁Ti er",
+ "Can not",
+ "C annot",
+ "мі н",
+ "м ін",
+ "▁NE W",
+ "▁ NEW",
+ "▁Во л",
+ "▁M anh",
+ "▁Man h",
+ "▁Greg ory",
+ "▁princi pe",
+ "▁princip e",
+ "▁prin cipe",
+ "IS O",
+ "I SO",
+ "pr og",
+ "pro g",
+ "p rog",
+ "▁F ail",
+ "▁Fa il",
+ "▁ Fail",
+ "▁a a",
+ "▁ aa",
+ "▁fe cha",
+ "▁W CF",
+ "▁mag istr",
+ "▁Z ach",
+ "▁Za ch",
+ "▁un icode",
+ "▁con verter",
+ "▁convert er",
+ "▁conver ter",
+ "▁dis pers",
+ "▁disp ers",
+ "ks am",
+ "k sam",
+ "▁Un cle",
+ "Property Changed",
+ "▁l ider",
+ "▁li der",
+ "▁lid er",
+ "▁o pts",
+ "▁op ts",
+ "▁opt s",
+ "▁ opts",
+ "▁та м",
+ "▁ там",
+ "lock ed",
+ "loc ked",
+ "za k",
+ "z ak",
+ "▁co unted",
+ "▁count ed",
+ "▁coun ted",
+ "▁person e",
+ "▁pers one",
+ "▁hur ried",
+ "ät ter",
+ "ätt er",
+ "ätte r",
+ "▁out ras",
+ "▁ou tras",
+ "▁g enu",
+ "▁ge nu",
+ "▁gen u",
+ "B D",
+ "ve g",
+ "v eg",
+ "du e",
+ "d ue",
+ "▁P ract",
+ "▁Pr act",
+ "▁Pra ct",
+ "▁po sible",
+ "▁pos ible",
+ "▁cont ribute",
+ "▁contrib ute",
+ "▁contribu te",
+ "UM N",
+ "▁Bür ger",
+ "▁w ars",
+ "▁war s",
+ "▁wa rs",
+ "▁exhib ition",
+ "hi ll",
+ "h ill",
+ "▁a str",
+ "▁as tr",
+ "▁ast r",
+ "▁ astr",
+ "▁му зе",
+ "▁C ASE",
+ "▁CA SE",
+ "▁ CASE",
+ "man ifest",
+ "y ellow",
+ "F n",
+ "▁R C",
+ "▁ RC",
+ "▁s ott",
+ "▁so tt",
+ "▁su jet",
+ "▁S ocket",
+ "▁So cket",
+ "▁Soc ket",
+ "▁ Socket",
+ "▁Ch ine",
+ "▁Chi ne",
+ "▁frame works",
+ "▁framework s",
+ "Hol d",
+ "H old",
+ "êt s",
+ "ê ts",
+ "▁ф іль",
+ "▁фі ль",
+ "Lo aded",
+ "Load ed",
+ "op he",
+ "oph e",
+ "o phe",
+ "text e",
+ "tex te",
+ "▁ex pres",
+ "▁exp res",
+ "▁expr es",
+ "▁cons ume",
+ "▁consum e",
+ "▁R ichtung",
+ "ograf i",
+ "▁magn ific",
+ "à t",
+ "▁ind ul",
+ "▁indu l",
+ "ry ty",
+ "▁off ici",
+ "▁offic i",
+ "▁ass ault",
+ "ru nd",
+ "run d",
+ "r und",
+ "▁vari ants",
+ "▁variant s",
+ "▁сель сов",
+ "▁exc itement",
+ "Time s",
+ "Tim es",
+ "T imes",
+ "k otlin",
+ "▁g ering",
+ "▁ge ring",
+ "▁ger ing",
+ "▁En gel",
+ "▁Eng el",
+ "▁T imer",
+ "▁Time r",
+ "▁Tim er",
+ "▁Ti mer",
+ "▁ Timer",
+ "² ).",
+ "▁N g",
+ "äs st",
+ "sch au",
+ "SE rror",
+ "S Error",
+ "▁Ed wards",
+ "▁Edward s",
+ "▁Term inal",
+ "li ct",
+ "lic t",
+ "l ict",
+ "Un der",
+ "Und er",
+ "U nder",
+ "▁sp awn",
+ "ür gen",
+ "▁Außer dem",
+ "▁k itchen",
+ "fah rt",
+ "fahr t",
+ "▁Col ors",
+ "▁Color s",
+ "▁систе ма",
+ "▁систем а",
+ "▁termin ated",
+ "▁terminate d",
+ "▁La TeX",
+ "ig keiten",
+ "igkeit en",
+ "▁mes ure",
+ "▁Am ts",
+ "▁Amt s",
+ "▁emp ir",
+ "▁stri king",
+ "▁strik ing",
+ "▁exclus ive",
+ "те х",
+ "▁re z",
+ "▁r ez",
+ "▁ rez",
+ "▁qu an",
+ "▁q uan",
+ "▁Glas gow",
+ "▁lect ure",
+ "▁Test ament",
+ "▁fun ds",
+ "▁fund s",
+ "▁st essa",
+ "▁tri bes",
+ "▁trib es",
+ "▁tribe s",
+ "▁par fois",
+ "▁tre ball",
+ "ni tz",
+ "nit z",
+ "n itz",
+ "bo ve",
+ "b ove",
+ "▁за слу",
+ "▁ab sent",
+ "▁abs ent",
+ "▁L auf",
+ "▁La uf",
+ "▁Lau f",
+ "Sm ith",
+ "▁Никола й",
+ "▁europé enne",
+ "l r",
+ "▁program ma",
+ "▁mi dst",
+ "▁mid st",
+ "▁daugh ters",
+ "▁daughter s",
+ "S yn",
+ "ob en",
+ "obe n",
+ "o ben",
+ "ân ă",
+ "id an",
+ "ida n",
+ "i dan",
+ "▁t her",
+ "▁th er",
+ "▁the r",
+ "▁ ther",
+ "od ore",
+ "odo re",
+ "odor e",
+ "sd l",
+ "s dl",
+ "▁Q uint",
+ "▁Qu int",
+ "▁cas os",
+ "▁caso s",
+ "▁Z am",
+ "▁Za m",
+ "▁стра ны",
+ "▁sp rite",
+ "▁spr ite",
+ "ка л",
+ "к ал",
+ "▁n asc",
+ "▁na sc",
+ "▁nas c",
+ "▁сот руд",
+ "▁tr ava",
+ "▁tra va",
+ "▁trav a",
+ "▁хо зяй",
+ "▁U ruguay",
+ "▁s parse",
+ "▁sp arse",
+ "▁по ле",
+ "▁пол е",
+ "▁myst ery",
+ "▁myster y",
+ "▁M ang",
+ "▁Man g",
+ "▁Ma ng",
+ "reg istr",
+ "▁CG Float",
+ "▁sub mission",
+ "▁subm ission",
+ "ва на",
+ "ван а",
+ "в ана",
+ "▁\" :",
+ "▁ \":",
+ "▁Trace back",
+ "▁P it",
+ "▁Pi t",
+ "▁E hr",
+ "▁с ра",
+ "▁Graph ics",
+ "▁ Graphics",
+ "Up dated",
+ "Update d",
+ "▁sv ensk",
+ "▁sp acing",
+ "▁spac ing",
+ "tr itt",
+ "tri tt",
+ "t ritt",
+ "▁Gu inea",
+ "▁Fran ça",
+ "▁Fr ança",
+ "As soci",
+ "Ass oci",
+ "▁T ová",
+ "▁To vá",
+ "st ab",
+ "sta b",
+ "s tab",
+ "▁Le arning",
+ "▁Lear ning",
+ "▁B right",
+ "▁Br ight",
+ "▁Brig ht",
+ "ś c",
+ "▁id ő",
+ "}} _{\\",
+ "}}_{ \\",
+ "}}_ {\\",
+ "} }_{\\",
+ "▁dro ite",
+ "▁droit e",
+ "▁ra ising",
+ "get ting",
+ "yth m",
+ "yt hm",
+ "y thm",
+ "on yme",
+ "ony me",
+ "onym e",
+ "ż s",
+ "▁b lah",
+ "▁bl ah",
+ "▁bla h",
+ "▁ blah",
+ "Tag Name",
+ "Vert ical",
+ "▁a per",
+ "▁ap er",
+ "▁ aper",
+ "post gresql",
+ "▁Hand le",
+ "▁ Handle",
+ "ze w",
+ "z ew",
+ "▁sk ulle",
+ "▁op ere",
+ "▁oper e",
+ "lay ers",
+ "layer s",
+ "▁pos sono",
+ "▁poss ono",
+ "▁re late",
+ "▁rel ate",
+ "▁rela te",
+ "ą c",
+ "▁M ih",
+ "▁Mi h",
+ "â ge",
+ "▁Ś wi",
+ "iss es",
+ "isse s",
+ "▁serv let",
+ "▁ servlet",
+ "Lo s",
+ "L os",
+ "▁Ad vanced",
+ "▁Adv anced",
+ "at ica",
+ "ati ca",
+ "atic a",
+ "▁c ed",
+ "▁ce d",
+ "▁ ced",
+ "▁element os",
+ "ро на",
+ "рон а",
+ "р она",
+ "ik s",
+ "i ks",
+ "ar f",
+ "a rf",
+ "ar iat",
+ "ari at",
+ "aria t",
+ "M obile",
+ "ag ua",
+ "agu a",
+ "▁t imp",
+ "▁tim p",
+ "▁ti mp",
+ "▁Com ité",
+ "▁comb ining",
+ "▁combin ing",
+ "wo hl",
+ "w ohl",
+ "▁Stud y",
+ "▁Stu dy",
+ "co ordinate",
+ "▁recommend ation",
+ "▁transform ations",
+ "▁transformation s",
+ "un til",
+ "unt il",
+ "u ntil",
+ "bound ed",
+ "b ounded",
+ "▁и зу",
+ "▁из у",
+ "han ced",
+ "h anced",
+ "▁во про",
+ "▁P rés",
+ "▁Pr és",
+ "▁co ord",
+ "xt y",
+ "x ty",
+ "▁$ ,",
+ "▁ $,",
+ "▁champion s",
+ "▁champ ions",
+ "De n",
+ "D en",
+ "M il",
+ "(' ,",
+ "( ',",
+ "▁Pre is",
+ "▁e igh",
+ "▁eig h",
+ "▁mark ers",
+ "▁marker s",
+ "▁gew esen",
+ "ät ten",
+ "ätt en",
+ "ätte n",
+ "▁p ione",
+ "▁pi one",
+ "m v",
+ "▁ј у",
+ "▁ ју",
+ "zeich nis",
+ "ho ff",
+ "hof f",
+ "h off",
+ "New s",
+ "Ne ws",
+ "▁Stanis ław",
+ "▁Br andenburg",
+ "▁Brand enburg",
+ "▁Fe uer",
+ "= &",
+ "же т",
+ "ж ет",
+ "▁N eil",
+ "▁Ne il",
+ "▁w irk",
+ "▁wir k",
+ "▁soci età",
+ "▁sp are",
+ "▁civil e",
+ "▁civ ile",
+ "sp rach",
+ "spr ach",
+ "▁d isse",
+ "▁dis se",
+ "▁diss e",
+ "▁g ates",
+ "▁ga tes",
+ "▁gate s",
+ "▁gat es",
+ "▁a nom",
+ "▁an om",
+ "▁ano m",
+ "▁Федера ции",
+ "▁t ib",
+ "▁ti b",
+ "▁f útbol",
+ "▁Wikip ed",
+ "ia te",
+ "iat e",
+ "i ate",
+ "Fr ont",
+ "F ront",
+ "▁c raw",
+ "▁cr aw",
+ "▁cra w",
+ "▁R ak",
+ "▁Ra k",
+ "▁з ву",
+ "▁зв у",
+ "st reet",
+ "stre et",
+ "▁A gency",
+ "▁Ag ency",
+ "ва ло",
+ "вал о",
+ "▁Ра с",
+ "▁mk dir",
+ "ac ję",
+ "▁sh ares",
+ "▁share s",
+ "St ory",
+ "Sto ry",
+ "▁re marks",
+ "▁rem arks",
+ "▁remark s",
+ "▁key words",
+ "▁keyword s",
+ "Bo b",
+ "B ob",
+ "▁t oe",
+ "▁to e",
+ "▁V itt",
+ "▁Vi tt",
+ "▁Vit t",
+ "▁r hs",
+ "▁rh s",
+ "RO P",
+ "R OP",
+ "or is",
+ "ori s",
+ "o ris",
+ "/ @",
+ "си и",
+ "▁tra verse",
+ "▁travers e",
+ "▁refer encing",
+ "pr äsident",
+ "ro ng",
+ "ron g",
+ "r ong",
+ "') :",
+ "' ):",
+ "at ies",
+ "ati es",
+ "atie s",
+ "a ties",
+ "A W",
+ "Out let",
+ "▁é vol",
+ "▁év ol",
+ "ik es",
+ "ike s",
+ "i kes",
+ "▁environment al",
+ "ic um",
+ "▁L ied",
+ "▁Li ed",
+ "▁Lie d",
+ "▁w arn",
+ "▁war n",
+ "▁wa rn",
+ "▁ warn",
+ "▁But ler",
+ "▁% ),",
+ "▁%) ,",
+ "▁Zeit schrift",
+ "▁Mon tr",
+ "▁Mont r",
+ "ва жа",
+ "▁Mer cur",
+ "je kte",
+ "jekt e",
+ "me ter",
+ "met er",
+ "m eter",
+ "du cation",
+ "▁att ributed",
+ "▁attribute d",
+ "* $",
+ "▁un f",
+ "▁Vert rag",
+ "zi en",
+ "zie n",
+ "z ien",
+ "▁Р об",
+ "▁Ро б",
+ "li ces",
+ "lic es",
+ "lice s",
+ "l ices",
+ "pp ly",
+ "p ply",
+ "an sen",
+ "ans en",
+ "anse n",
+ "▁ze it",
+ "▁ zeit",
+ "▁im mense",
+ "▁imm ense",
+ "▁lut ego",
+ "▁Bul gar",
+ "▁Bulg ar",
+ "▁mi embros",
+ "▁На циональ",
+ "▁Al low",
+ "▁All ow",
+ "▁ Allow",
+ "▁ang lès",
+ "д ви",
+ "▁T oy",
+ "▁To y",
+ "ту а",
+ "▁y ard",
+ "▁ya rd",
+ "▁ yard",
+ "( %",
+ "is ser",
+ "iss er",
+ "isse r",
+ "▁g olf",
+ "▁gol f",
+ "▁Uk rain",
+ "▁h osp",
+ "▁ho sp",
+ "▁hos p",
+ "In clude",
+ "▁L isa",
+ "▁Li sa",
+ "▁Lis a",
+ "▁c sal",
+ "▁cs al",
+ "▁M ira",
+ "▁Mi ra",
+ "▁Mir a",
+ "rec ogn",
+ "▁К е",
+ "▁h itting",
+ "▁hit ting",
+ "коно мі",
+ "коном і",
+ "▁Tourn ament",
+ "LO AD",
+ "▁Guard ian",
+ "▁da her",
+ "▁dah er",
+ "▁time zone",
+ "▁tom cat",
+ "▁ tomcat",
+ "▁success or",
+ "▁succ essor",
+ "▁successo r",
+ "▁V oid",
+ "▁Vo id",
+ "▁come ç",
+ "▁convert s",
+ "▁conver ts",
+ "äch s",
+ "ä chs",
+ "os ex",
+ "ose x",
+ "o sex",
+ "xe lles",
+ "x elles",
+ "as er",
+ "ase r",
+ "a ser",
+ "▁É s",
+ "▁m ou",
+ "▁mo u",
+ "▁u ng",
+ "▁un g",
+ "▁ ung",
+ "▁or igen",
+ "▁orig en",
+ "▁C row",
+ "▁Cr ow",
+ "▁Cro w",
+ "▁E rd",
+ "▁Er d",
+ "▁s ieben",
+ "▁si eben",
+ "▁sie ben",
+ "lu a",
+ "l ua",
+ "▁B B",
+ "▁ BB",
+ "RE NT",
+ "R ENT",
+ "▁pił kar",
+ "▁mar que",
+ "▁marqu e",
+ "▁La bour",
+ "▁Lab our",
+ "vi ders",
+ "vider s",
+ "vid ers",
+ "v iders",
+ "▁ex empl",
+ "▁exem pl",
+ "So und",
+ "S ound",
+ "▁W ass",
+ "▁Was s",
+ "▁Wa ss",
+ "arr ison",
+ "▁те чение",
+ "▁Of icina",
+ "▁D aw",
+ "▁Da w",
+ "▁K auf",
+ "▁Ka uf",
+ "én t",
+ "é nt",
+ "és ő",
+ "▁= \"",
+ "▁ =\"",
+ "▁k at",
+ "▁ka t",
+ "di ction",
+ "dict ion",
+ "dic tion",
+ "d iction",
+ "▁V oll",
+ "▁Vol l",
+ "▁Vo ll",
+ "▁high way",
+ "J ames",
+ "ze uge",
+ "zeug e",
+ "▁mod elo",
+ "▁model o",
+ "▁mode lo",
+ "Th row",
+ "▁F orum",
+ "▁For um",
+ "▁Fo rum",
+ "(\" @",
+ "▁en fer",
+ "▁enf er",
+ "▁спе циаль",
+ "Number s",
+ "Num bers",
+ "▁B inary",
+ "▁Bin ary",
+ "▁ Binary",
+ "▁Martí nez",
+ "▁Martín ez",
+ "▁St ato",
+ "▁Stat o",
+ "▁Sta to",
+ "▁fest iv",
+ "▁k atol",
+ "▁ka tol",
+ "▁kat ol",
+ "▁А б",
+ "▁lim itation",
+ "▁limit ation",
+ "▁S TR",
+ "▁ST R",
+ "▁ STR",
+ "▁О фициаль",
+ "ip es",
+ "ipe s",
+ "i pes",
+ "▁I sn",
+ "▁Is n",
+ "▁rule d",
+ "▁ru led",
+ "▁c í",
+ "▁ cí",
+ "ge ber",
+ "geb er",
+ "▁lavor o",
+ "▁lav oro",
+ "▁parenthes es",
+ "о з",
+ "▁équip es",
+ "▁équipe s",
+ "▁efficient ly",
+ "▁Per iod",
+ "▁ Period",
+ "▁Reg arding",
+ "le af",
+ "lea f",
+ "▁similar ity",
+ "▁gest ure",
+ "data b",
+ "da tab",
+ "dat ab",
+ "▁term inate",
+ "▁termin ate",
+ "▁sem antics",
+ "▁semantic s",
+ "▁A lo",
+ "▁Al o",
+ "▁c ig",
+ "▁ci g",
+ "▁Open GL",
+ "▁heut igen",
+ "xa ml",
+ "x aml",
+ "▁frequ encies",
+ ")} .",
+ ") }.",
+ "▁threaten ed",
+ "▁threat ened",
+ "ти к",
+ "▁cal cio",
+ "▁calci o",
+ "▁calc io",
+ "▁R iemann",
+ "▁Ri emann",
+ "sl ug",
+ "▁F inale",
+ "▁Fin ale",
+ "▁Final e",
+ "L R",
+ "▁Der by",
+ "▁о ще",
+ "▁de viation",
+ "▁dev iation",
+ "▁devi ation",
+ "äch en",
+ "äche n",
+ "ä chen",
+ "▁C ris",
+ "▁Cr is",
+ "но во",
+ "нов о",
+ "н ово",
+ "▁сто лі",
+ "▁re lev",
+ "▁rel ev",
+ "▁splend id",
+ "▁у чё",
+ "er ving",
+ "erv ing",
+ "ga ble",
+ "g able",
+ "▁général e",
+ "▁généra le",
+ "po m",
+ "p om",
+ "▁Che ers",
+ "▁impr ison",
+ "▁in dent",
+ "▁ind ent",
+ "▁inde nt",
+ "▁ indent",
+ "▁anal yz",
+ "▁analy z",
+ "▁re vert",
+ "▁rev ert",
+ "▁reve rt",
+ "▁rever t",
+ "ér er",
+ "ére r",
+ "é rer",
+ "▁ph ases",
+ "▁phase s",
+ "First Name",
+ "▁m ig",
+ "▁mi g",
+ "▁dist urb",
+ "▁mi xture",
+ "▁) {",
+ "▁ ){",
+ "int ure",
+ "▁T ried",
+ "▁Tr ied",
+ "▁Tri ed",
+ "▁soon er",
+ "▁p els",
+ "▁pe ls",
+ "▁pel s",
+ "▁ét abl",
+ "et ro",
+ "etr o",
+ "it ie",
+ "iti e",
+ "▁quart ier",
+ "▁го во",
+ "▁г ово",
+ "▁ гово",
+ "▁vá ros",
+ "uf e",
+ "u fe",
+ "he ten",
+ "het en",
+ "h eten",
+ "хо м",
+ "х ом",
+ "▁so ap",
+ "▁ soap",
+ "ut ors",
+ "uto rs",
+ "utor s",
+ "▁d uch",
+ "▁du ch",
+ "▁duc h",
+ "syn tax",
+ "s yntax",
+ "▁tr ibe",
+ "▁tri be",
+ "▁trib e",
+ "▁ch ante",
+ "▁chant e",
+ "Tr i",
+ "T ri",
+ "▁M ate",
+ "▁Ma te",
+ "▁Mat e",
+ "qu ality",
+ "qual ity",
+ "uo la",
+ "u ola",
+ "=\" .",
+ "= \".",
+ "ch k",
+ "▁в сі",
+ "▁вс і",
+ "▁prze ci",
+ "▁M eteor",
+ "▁Met eor",
+ "▁scatter ed",
+ "Pl us",
+ "P lus",
+ "tr ad",
+ "tra d",
+ "t rad",
+ "▁stack overflow",
+ "▁ stackoverflow",
+ "▁re tra",
+ "▁r etra",
+ "▁ret ra",
+ "▁retr a",
+ "▁éd itions",
+ "▁édition s",
+ "▁s ain",
+ "▁sa in",
+ "cri be",
+ "cr ibe",
+ "ig non",
+ "ign on",
+ "uc ker",
+ "uck er",
+ "u cker",
+ "▁ма ло",
+ "▁ten ir",
+ "▁ex ports",
+ "▁export s",
+ "▁ exports",
+ "▁aux ili",
+ "▁] ]",
+ "▁ ]]",
+ "▁C BS",
+ "un iform",
+ "uni form",
+ "▁period ic",
+ "ag rant",
+ "agr ant",
+ "▁em ple",
+ "▁emp le",
+ "W il",
+ "▁f res",
+ "▁fr es",
+ "▁fre s",
+ "▁str utt",
+ "▁stru tt",
+ "▁с віт",
+ "▁сві т",
+ "▁be tre",
+ "▁bet re",
+ "▁объ ек",
+ "ти ся",
+ "▁b isher",
+ "▁bis her",
+ "ba um",
+ "bau m",
+ "b aum",
+ "is hi",
+ "ish i",
+ "▁Gaz ette",
+ "background Color",
+ "j l",
+ "▁f iel",
+ "▁fi el",
+ "▁пре ма",
+ "▁protagon ista",
+ "▁Muham mad",
+ "▁sim ulate",
+ "▁H ook",
+ "▁Ho ok",
+ "fe st",
+ "f est",
+ "▁сво их",
+ "▁свои х",
+ "Se nder",
+ "Send er",
+ "S ender",
+ "▁list ened",
+ "▁listen ed",
+ "▁liste ned",
+ "ж і",
+ "je st",
+ "jes t",
+ "j est",
+ "ko rd",
+ "kor d",
+ "k ord",
+ "Cho ice",
+ "▁hoof d",
+ "redu cible",
+ "hp p",
+ "h pp",
+ "▁W u",
+ "š i",
+ "▁M arse",
+ "▁Mar se",
+ "▁Mars e",
+ "▁s oir",
+ "▁so ir",
+ "we sten",
+ "west en",
+ "w esten",
+ "em os",
+ "emo s",
+ "e mos",
+ "▁D uc",
+ "▁Du c",
+ "▁amer ik",
+ "| }{",
+ "▁G ul",
+ "▁Gu l",
+ "▁Sp rache",
+ "▁Spr ache",
+ "▁mis match",
+ "▁mism atch",
+ "Sc al",
+ "S cal",
+ "P ixel",
+ "E F",
+ "▁S ep",
+ "▁Se p",
+ "▁powie cie",
+ "ur k",
+ "▁Nap oli",
+ "▁neighbour hood",
+ "сто ян",
+ "стоя н",
+ "▁search es",
+ "yr us",
+ "y rus",
+ "пе т",
+ "п ет",
+ "He lp",
+ "Hel p",
+ "pon t",
+ "po nt",
+ "p ont",
+ "▁Or ient",
+ "▁Ori ent",
+ "▁Alf onso",
+ "▁monitor ing",
+ "ia o",
+ "i ao",
+ "éd é",
+ "▁Cés ar",
+ "ше е",
+ "Sh ift",
+ "su it",
+ "s uit",
+ "code d",
+ "co ded",
+ "cod ed",
+ "c oded",
+ "но то",
+ "▁Par ti",
+ "▁Part i",
+ "▁la sci",
+ "▁las ci",
+ "▁aw esome",
+ "us ta",
+ "ust a",
+ "u sta",
+ "▁С ове",
+ "▁Со ве",
+ "▁Сов е",
+ "▁F land",
+ "▁Fl and",
+ "oo m",
+ "o om",
+ "▁de vi",
+ "▁dev i",
+ "eng elsk",
+ "end um",
+ "▁Pa scal",
+ "▁Pas cal",
+ "▁B ind",
+ "▁Bi nd",
+ "▁Bin d",
+ "▁ Bind",
+ "▁sigu ientes",
+ "▁siguiente s",
+ "J B",
+ "▁Peters burg",
+ "▁incorrect ly",
+ "▁B ash",
+ "▁Bas h",
+ "▁Ba sh",
+ "▁pe los",
+ "▁pel os",
+ "▁pelo s",
+ "▁zes po",
+ "NS URL",
+ "▁př ek",
+ "▁Cr ime",
+ "na ch",
+ "n ach",
+ "▁th rust",
+ "▁thr ust",
+ "▁Cult ura",
+ "W F",
+ "▁S olo",
+ "▁So lo",
+ "▁Sol o",
+ "▁in vas",
+ "▁inv as",
+ "▁individ ually",
+ "▁individual ly",
+ "ib m",
+ "i bm",
+ "▁et apa",
+ "▁hand ed",
+ "▁han ded",
+ "▁where ver",
+ "▁interpol ation",
+ "▁mus ée",
+ "▁C NN",
+ "id ia",
+ "idi a",
+ "i dia",
+ "ńst w",
+ "▁pr zew",
+ "▁prze w",
+ "▁prz ew",
+ "ug hing",
+ "ugh ing",
+ "▁a ctors",
+ "▁act ors",
+ "▁actor s",
+ "▁Ori ental",
+ "▁Orient al",
+ "▁conven ience",
+ "▁mi asta",
+ "br ains",
+ "bra ins",
+ "▁ме ся",
+ "▁inf atti",
+ "▁All Movie",
+ "▁crit ique",
+ "▁success o",
+ "▁succ esso",
+ "anc ouver",
+ "▁f á",
+ "ъл гар",
+ "▁wis dom",
+ "▁Pho enix",
+ "ho le",
+ "hol e",
+ "h ole",
+ "▁inform ación",
+ "▁Air lines",
+ "▁Airl ines",
+ ". «",
+ "mo rt",
+ "mor t",
+ "m ort",
+ "user Id",
+ "▁*/ \r",
+ "▁C ongo",
+ "▁Con go",
+ "▁Cong o",
+ "▁\" `",
+ "▁ \"`",
+ "co rr",
+ "cor r",
+ "c orr",
+ "▁problem as",
+ "▁proble mas",
+ "▁problema s",
+ "▁probl emas",
+ "▁b ib",
+ "▁bi b",
+ "▁ bib",
+ "▁póź niej",
+ "▁file Name",
+ "▁ fileName",
+ "zo tt",
+ "z ott",
+ "ma cht",
+ "mac ht",
+ "m acht",
+ "▁Ul rich",
+ "C y",
+ "end point",
+ "▁she ep",
+ "▁i bn",
+ "Fe ed",
+ "F eed",
+ "▁sympath y",
+ "▁I b",
+ "▁territ orial",
+ "ra ting",
+ "rat ing",
+ "r ating",
+ "да ми",
+ "▁d st",
+ "▁ds t",
+ "▁ dst",
+ "у ю",
+ "ah o",
+ "a ho",
+ "▁s ug",
+ "▁su g",
+ "em ia",
+ "emi a",
+ "▁t ed",
+ "▁te d",
+ "▁ ted",
+ "▁A pi",
+ "▁Ap i",
+ "▁ Api",
+ "▁R ica",
+ "▁Ric a",
+ "▁Ri ca",
+ "▁M R",
+ "▁ MR",
+ "ński m",
+ "ń skim",
+ "▁V oor",
+ "▁Vo or",
+ "▁de vil",
+ "▁dev il",
+ "▁devi l",
+ "▁Ф о",
+ "▁N är",
+ "▁Nä r",
+ "▁... )",
+ "▁.. .)",
+ "▁ ...)",
+ "▁v ois",
+ "▁vo is",
+ "▁ab bre",
+ "▁abb re",
+ "▁M änner",
+ "xim o",
+ "xi mo",
+ "x imo",
+ "▁intellect ual",
+ "▁t ales",
+ "▁tal es",
+ "▁ta les",
+ "▁tale s",
+ "sim ilar",
+ "ne um",
+ "▁O rig",
+ "▁Or ig",
+ "▁Ori g",
+ "▁po stal",
+ "▁pos tal",
+ "▁post al",
+ "▁h vor",
+ "▁ident ification",
+ "▁identific ation",
+ "▁О д",
+ "ue sto",
+ "ues to",
+ "uest o",
+ "u esto",
+ "▁. ./",
+ "▁.. /",
+ "▁ ../",
+ "▁b ir",
+ "▁bi r",
+ "▁ bir",
+ "▁Л он",
+ "▁Ло н",
+ "▁es empio",
+ "▁E ing",
+ "▁Ein g",
+ "Exp and",
+ "▁PR IMARY",
+ "▁J in",
+ "▁Ji n",
+ "▁vš ak",
+ "ours es",
+ "ourse s",
+ "▁Be tty",
+ "▁Bet ty",
+ "▁W M",
+ "▁ WM",
+ "▁fl ask",
+ "▁fla sk",
+ "hl en",
+ "h len",
+ "▁A del",
+ "▁Ad el",
+ "lar avel",
+ "▁д ет",
+ "▁де т",
+ "сь кою",
+ "сько ю",
+ "▁M undo",
+ "▁Mun do",
+ "ic zn",
+ "icz n",
+ "ifi é",
+ "▁М ор",
+ "▁Мо р",
+ "▁д рев",
+ "▁др ев",
+ "Date Format",
+ "сь ким",
+ "ськ им",
+ "▁d ated",
+ "▁da ted",
+ "▁dat ed",
+ "▁date d",
+ "▁ dated",
+ "ко ли",
+ "кол и",
+ "▁результа те",
+ "\\) .",
+ "\\ ).",
+ "▁delay ed",
+ "so und",
+ "s ound",
+ "▁Ма к",
+ "▁\" ...",
+ "▁\". ..",
+ "▁b innen",
+ "▁bin nen",
+ "▁фа куль",
+ "▁pol ygon",
+ "▁poly gon",
+ "▁eg gs",
+ "▁egg s",
+ "At IndexPath",
+ "AtIndex Path",
+ "мен таль",
+ "мент аль",
+ "мента ль",
+ "▁in cred",
+ "▁incre d",
+ "▁inc red",
+ "ch unk",
+ "web driver",
+ "▁с вобо",
+ "▁сво бо",
+ "▁mi ędzy",
+ "Rece ived",
+ "Receive d",
+ "▁M onde",
+ "▁Mon de",
+ "▁Mo nde",
+ "▁Mond e",
+ "▁J Query",
+ "Bu tt",
+ "But t",
+ "B utt",
+ "▁P DO",
+ "▁for ec",
+ "▁fo rec",
+ "▁fore c",
+ "▁discipl ine",
+ "ch ev",
+ "che v",
+ "на т",
+ "н ат",
+ "▁re dis",
+ "▁red is",
+ "▁hun ting",
+ "▁al k",
+ "▁ alk",
+ "▁proof s",
+ "PR I",
+ "P RI",
+ "▁c hip",
+ "▁ch ip",
+ "▁chi p",
+ "és ie",
+ "▁H O",
+ "▁ HO",
+ "▁r ug",
+ "▁ru g",
+ "▁ rug",
+ "zo s",
+ "z os",
+ "▁s orte",
+ "▁sort e",
+ "▁sor te",
+ "▁ze igt",
+ "▁Phys ics",
+ "leg te",
+ "legt e",
+ "▁proport ional",
+ "▁proportion al",
+ "▁tool bar",
+ "ve ment",
+ "v ement",
+ "not in",
+ "▁prv ní",
+ "bl ah",
+ "bla h",
+ "b lah",
+ "▁prés ence",
+ "▁l loc",
+ "▁ll oc",
+ "▁lí der",
+ "▁Ac cept",
+ "▁ Accept",
+ "▁Al ways",
+ "▁\" {",
+ "▁divers i",
+ "▁diver si",
+ "ik or",
+ "iko r",
+ "i kor",
+ "Per iod",
+ "ж ён",
+ "▁Al liance",
+ "▁All iance",
+ "▁re lay",
+ "▁rel ay",
+ "▁rela y",
+ "Br o",
+ "B ro",
+ "jö n",
+ "j ön",
+ "▁B aud",
+ "▁Ba ud",
+ "▁Bau d",
+ "▁B ian",
+ "▁Bi an",
+ "') [",
+ "' )[",
+ "чи в",
+ "▁P oss",
+ "▁Po ss",
+ "▁Pos s",
+ "▁Mitg lieder",
+ "▁Mitglied er",
+ "▁n ev",
+ "▁ne v",
+ "Dan iel",
+ "▁t ends",
+ "▁ten ds",
+ "▁tend s",
+ "▁compag nie",
+ "▁liv res",
+ "▁livre s",
+ "lu b",
+ "l ub",
+ "▁ ▁",
+ "▁▁ ▁▁",
+ "▁▁▁ ▁",
+ "▁ ▁▁▁",
+ "▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁",
+ "▁▁▁▁ ▁",
+ "▁▁▁ ▁▁",
+ "▁ ▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁",
+ "▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁",
+ "▁ ▁▁",
+ "▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/out/finetune/tinyllama_full_arc/2505/final/tokenizer_config.json b/out/finetune/tinyllama_full_arc/2505/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ef41cbc275000b29afe157ba487f0530b8c26dc
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/final/tokenizer_config.json
@@ -0,0 +1,35 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "bos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "clean_up_tokenization_spaces": false,
+ "eos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "legacy": false,
+ "model_max_length": 1000000000000000019884624838656,
+ "pad_token": null,
+ "padding_side": "right",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizer",
+ "unk_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/out/finetune/tinyllama_full_arc/2505/logs/csv/version_0/metrics.csv b/out/finetune/tinyllama_full_arc/2505/logs/csv/version_0/metrics.csv
new file mode 100644
index 0000000000000000000000000000000000000000..136ea892b1d415b56a3546286ce9ad85cee569e9
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2505/logs/csv/version_0/metrics.csv
@@ -0,0 +1,556 @@
+epoch,iter,iter_time,learning_rate,loss,step,tokens,total_tokens,val_loss,val_ppl
+0,1,0.22036682441830635,0.0,3.977588653564453,1,109,109,,
+0,2,0.06603323295712471,0.0,4.021753787994385,2,273,273,,
+0,3,0.06065511330962181,0.0,3.7837331295013428,3,455,455,,
+0,4,0.05950053781270981,0.0,3.853276014328003,4,568,568,,
+0,5,0.05716502387076616,0.0,3.7513785362243652,5,702,702,,
+0,6,0.05733102932572365,0.0,3.686058759689331,6,812,812,,
+0,7,0.056986840441823006,0.0,3.7082130908966064,7,950,950,,
+0,8,0.16229595802724361,2.0000000000000002e-07,3.7402195930480957,8,1057,1057,,
+0,9,0.05961649585515261,2.0000000000000002e-07,3.635772705078125,9,1215,1215,,
+0,10,0.058932882733643055,2.0000000000000002e-07,3.5626254081726074,10,1390,1390,,
+0,11,0.05743370857089758,2.0000000000000002e-07,3.5679855346679688,11,1553,1553,,
+0,12,0.0581944864243269,2.0000000000000002e-07,3.545797348022461,12,1685,1685,,
+0,13,0.05838715471327305,2.0000000000000002e-07,3.5822277069091797,13,1825,1825,,
+0,14,0.05867634993046522,2.0000000000000002e-07,3.581185817718506,14,2005,2005,,
+0,15,0.058610282838344574,2.0000000000000002e-07,3.5027151107788086,15,2175,2175,,
+0,16,0.087312251329422,4.0000000000000003e-07,3.388878345489502,16,2341,2341,,
+0,17,0.05722502153366804,4.0000000000000003e-07,3.44913911819458,17,2487,2487,,
+0,18,0.05807347875088453,4.0000000000000003e-07,3.4440360069274902,18,2642,2642,,
+0,19,0.05870610475540161,4.0000000000000003e-07,3.4615283012390137,19,2783,2783,,
+0,20,0.05876717809587717,4.0000000000000003e-07,3.4832816123962402,20,2901,2901,,
+0,21,0.0593144167214632,4.0000000000000003e-07,3.52083683013916,21,3019,3019,,
+0,22,0.058743588626384735,4.0000000000000003e-07,3.5494461059570312,22,3132,3132,,
+0,23,0.05884195398539305,4.0000000000000003e-07,3.51861572265625,23,3418,3418,,
+0,24,0.08766415528953075,6.000000000000001e-07,3.508800983428955,24,3712,3712,,
+0,25,0.057949247770011425,6.000000000000001e-07,3.5897679328918457,25,3820,3820,,
+0,26,0.05893516819924116,6.000000000000001e-07,3.585960626602173,26,4037,4037,,
+0,27,0.0590171730145812,6.000000000000001e-07,3.583287000656128,27,4177,4177,,
+0,28,0.059038564562797546,6.000000000000001e-07,3.539269208908081,28,4324,4324,,
+0,29,0.058558130636811256,6.000000000000001e-07,3.5136852264404297,29,4468,4468,,
+0,30,0.061085423454642296,6.000000000000001e-07,3.5650691986083984,30,4607,4607,,
+0,31,0.05919390358030796,6.000000000000001e-07,3.589381456375122,31,4790,4790,,
+0,32,0.08790638390928507,8.000000000000001e-07,3.669027328491211,32,4995,4995,,
+0,33,0.05739918164908886,8.000000000000001e-07,3.6374993324279785,33,5116,5116,,
+0,34,0.05894847679883242,8.000000000000001e-07,3.6551051139831543,34,5253,5253,,
+0,35,0.058837647549808025,8.000000000000001e-07,3.6374316215515137,35,5443,5443,,
+0,36,0.05829231534153223,8.000000000000001e-07,3.625943660736084,36,5616,5616,,
+0,37,0.05835225619375706,8.000000000000001e-07,3.601151943206787,37,5759,5759,,
+0,38,0.05895186495035887,8.000000000000001e-07,3.589193105697632,38,5891,5891,,
+0,39,0.05851658992469311,8.000000000000001e-07,3.6851258277893066,39,6042,6042,,
+0,40,0.08819851838052273,1.0000000000000002e-06,3.6343486309051514,40,6240,6240,,
+0,41,0.058050982654094696,1.0000000000000002e-06,3.612482786178589,41,6396,6396,,
+0,42,0.058962369337677956,1.0000000000000002e-06,3.5826351642608643,42,6555,6555,,
+0,43,0.05862669553607702,1.0000000000000002e-06,3.6229255199432373,43,6703,6703,,
+0,44,0.058848850429058075,1.0000000000000002e-06,3.622488260269165,44,6835,6835,,
+0,45,0.05920871254056692,1.0000000000000002e-06,3.618406295776367,45,6966,6966,,
+0,46,0.05851050280034542,1.0000000000000002e-06,3.6329023838043213,46,7070,7070,,
+0,47,0.05849015712738037,1.0000000000000002e-06,3.6626341342926025,47,7189,7189,,
+0,48,0.08795123267918825,1.2000000000000002e-06,3.665822982788086,48,7342,7342,,
+0,49,0.05760013218969107,1.2000000000000002e-06,3.66611385345459,49,7476,7476,,
+0,50,0.059022591449320316,1.2000000000000002e-06,3.6673974990844727,50,7632,7632,,
+0,51,0.05809655413031578,1.2000000000000002e-06,3.693744659423828,51,7763,7763,,
+0,52,0.05850104056298733,1.2000000000000002e-06,3.6864638328552246,52,7911,7911,,
+0,53,0.058419537730515,1.2000000000000002e-06,3.6318845748901367,53,8102,8102,,
+0,54,0.05890894774347544,1.2000000000000002e-06,3.5126559734344482,54,8300,8300,,
+0,55,0.05859504546970129,1.2000000000000002e-06,3.425534963607788,55,8469,8469,,
+0,56,0.08745238371193409,1.4000000000000001e-06,3.432317018508911,56,8642,8642,,
+0,57,0.05752033460885286,1.4000000000000001e-06,3.4366462230682373,57,8770,8770,,
+0,58,0.05820525623857975,1.4000000000000001e-06,3.3977138996124268,58,8980,8980,,
+0,59,0.05895816721022129,1.4000000000000001e-06,3.3567304611206055,59,9113,9113,,
+0,60,0.059340049512684345,1.4000000000000001e-06,3.3527138233184814,60,9234,9234,,
+0,61,0.05897766724228859,1.4000000000000001e-06,3.4256839752197266,61,9397,9397,,
+0,62,0.058598773553967476,1.4000000000000001e-06,3.489137887954712,62,9539,9539,,
+0,63,0.05919953994452953,1.4000000000000001e-06,3.4691343307495117,63,9744,9744,,
+0,64,0.08751910272985697,1.6000000000000001e-06,3.5127103328704834,64,9888,9888,,
+0,65,0.057818991132080555,1.6000000000000001e-06,3.521411418914795,65,10022,10022,,
+0,66,0.05869201850146055,1.6000000000000001e-06,3.6025216579437256,66,10125,10125,,
+0,67,0.05891639459878206,1.6000000000000001e-06,3.5918538570404053,67,10235,10235,,
+0,68,0.05849655717611313,1.6000000000000001e-06,3.617232084274292,68,10354,10354,,
+0,69,0.058584585785865784,1.6000000000000001e-06,3.569638252258301,69,10545,10545,,
+0,70,0.059221453964710236,1.6000000000000001e-06,3.5488314628601074,70,10713,10713,,
+0,71,0.05885664280503988,1.6000000000000001e-06,3.6000170707702637,71,10839,10839,,
+0,72,0.08724530972540379,1.8e-06,3.5793495178222656,72,10953,10953,,
+0,73,0.05770923104137182,1.8e-06,3.564842462539673,73,11123,11123,,
+0,74,0.058265565894544125,1.8e-06,3.5189244747161865,74,11295,11295,,
+0,75,0.05805624555796385,1.8e-06,3.532644748687744,75,11422,11422,,
+0,76,0.058728414587676525,1.8e-06,3.5522139072418213,76,11527,11527,,
+0,77,0.05831637419760227,1.8e-06,3.6124114990234375,77,11649,11649,,
+0,78,0.05859321262687445,1.8e-06,3.6249916553497314,78,11801,11801,,
+0,79,0.05796791519969702,1.8e-06,3.5977976322174072,79,11941,11941,,
+0,80,0.08736481051892042,2.0000000000000003e-06,3.5896003246307373,80,12113,12113,,
+0,81,0.05739527475088835,2.0000000000000003e-06,3.5236659049987793,81,12270,12270,,
+0,82,0.05897958017885685,2.0000000000000003e-06,3.528078556060791,82,12463,12463,,
+0,83,0.05837750993669033,2.0000000000000003e-06,3.547523260116577,83,12576,12576,,
+0,84,0.05867480952292681,2.0000000000000003e-06,3.5576083660125732,84,12712,12712,,
+0,85,0.05855601094663143,2.0000000000000003e-06,3.4893887042999268,85,12905,12905,,
+0,86,0.05906574334949255,2.0000000000000003e-06,3.5081942081451416,86,13030,13030,,
+0,87,0.05812970548868179,2.0000000000000003e-06,3.510497808456421,87,13212,13212,,
+0,88,0.08786605019122362,2.2e-06,3.441455841064453,88,13517,13517,,
+0,89,0.05769270844757557,2.2e-06,3.484395742416382,89,13650,13650,,
+0,90,0.05837022326886654,2.2e-06,3.469480514526367,90,13802,13802,,
+0,91,0.0608054855838418,2.2e-06,3.3956656455993652,91,14007,14007,,
+0,92,0.05826552398502827,2.2e-06,3.3502681255340576,92,14117,14117,,
+0,93,0.05880777910351753,2.2e-06,3.413836717605591,93,14329,14329,,
+0,94,0.05827184487134218,2.2e-06,3.436652660369873,94,14480,14480,,
+0,95,0.058068541809916496,2.2e-06,3.441863775253296,95,14605,14605,,
+0,96,0.08699484821408987,2.4000000000000003e-06,3.5961294174194336,96,14709,14709,,
+0,97,0.05733994860202074,2.4000000000000003e-06,3.509021282196045,97,14917,14917,,
+0,98,0.058325767517089844,2.4000000000000003e-06,3.5329370498657227,98,15091,15091,,
+0,99,0.05870159808546305,2.4000000000000003e-06,3.5440688133239746,99,15352,15352,,
+0,100,0.05816303379833698,2.4000000000000003e-06,3.551018238067627,100,15454,15454,,
+0,101,0.05841334629803896,2.4000000000000003e-06,3.512852668762207,101,15607,15607,,
+0,102,0.058900076895952225,2.4000000000000003e-06,3.4940943717956543,102,15730,15730,,
+0,103,0.05847087688744068,2.4000000000000003e-06,3.463775873184204,103,15893,15893,,
+0,104,0.08723654597997665,2.6e-06,3.358018636703491,104,16101,16101,,
+0,105,0.05755382031202316,2.6e-06,3.447558879852295,105,16248,16248,,
+0,106,0.058339374139904976,2.6e-06,3.426302671432495,106,16365,16365,,
+0,107,0.05894412100315094,2.6e-06,3.408048629760742,107,16549,16549,,
+0,108,0.05857611820101738,2.6e-06,3.436041831970215,108,16722,16722,,
+0,109,0.05816440563648939,2.6e-06,3.5144734382629395,109,16828,16828,,
+0,110,0.05807187967002392,2.6e-06,3.4574828147888184,110,17021,17021,,
+0,111,0.05801199097186327,2.6e-06,3.432046890258789,111,17228,17228,,
+0,112,0.08785667270421982,2.8000000000000003e-06,3.4251084327697754,112,17416,17416,,
+0,113,0.05719238705933094,2.8000000000000003e-06,3.408963918685913,113,17584,17584,,
+0,114,0.05825834721326828,2.8000000000000003e-06,3.488886833190918,114,17714,17714,,
+0,115,0.05841815285384655,2.8000000000000003e-06,3.4846932888031006,115,17892,17892,,
+0,116,0.05867694225162268,2.8000000000000003e-06,3.4603211879730225,116,18065,18065,,
+0,117,0.05821120738983154,2.8000000000000003e-06,3.417713165283203,117,18175,18175,,
+0,118,0.05845919996500015,2.8000000000000003e-06,3.4065825939178467,118,18331,18331,,
+0,119,0.058615049347281456,2.8000000000000003e-06,3.4122819900512695,119,18549,18549,,
+0,120,0.08722074422985315,3e-06,3.4004547595977783,120,18750,18750,,
+0,121,0.05949892848730087,3e-06,3.3716719150543213,121,18881,18881,,
+0,122,0.05889610107988119,3e-06,3.34857439994812,122,18988,18988,,
+0,123,0.05851195193827152,3e-06,3.428514242172241,123,19120,19120,,
+0,124,0.058369070291519165,3e-06,3.407944917678833,124,19246,19246,,
+0,125,0.05933573190122843,3e-06,3.295397996902466,125,19396,19396,,
+0,126,0.058772833086550236,3e-06,3.375514268875122,126,19522,19522,,
+0,127,0.059178924188017845,3e-06,3.432615280151367,127,19624,19624,,
+0,128,0.08738842699676752,3.2000000000000003e-06,3.422583818435669,128,19807,19807,,
+0,129,0.05752178467810154,3.2000000000000003e-06,3.4319827556610107,129,19978,19978,,
+0,130,0.05831766966730356,3.2000000000000003e-06,3.349270820617676,130,20110,20110,,
+0,131,0.05821986868977547,3.2000000000000003e-06,3.332969903945923,131,20226,20226,,
+0,132,0.05840504448860884,3.2000000000000003e-06,3.397563934326172,132,20327,20327,,
+0,133,0.05848054029047489,3.2000000000000003e-06,3.4220056533813477,133,20536,20536,,
+0,134,0.05826111510396004,3.2000000000000003e-06,3.3708934783935547,134,20666,20666,,
+0,135,0.05813945457339287,3.2000000000000003e-06,3.3493142127990723,135,20777,20777,,
+0,136,0.08720842562615871,3.4000000000000005e-06,3.329951047897339,136,20968,20968,,
+0,137,0.05797726195305586,3.4000000000000005e-06,3.3712995052337646,137,21062,21062,,
+0,138,0.05814183596521616,3.4000000000000005e-06,3.420804738998413,138,21185,21185,,
+0,139,0.05866741202771664,3.4000000000000005e-06,3.3688995838165283,139,21340,21340,,
+0,140,0.058036740869283676,3.4000000000000005e-06,3.334770917892456,140,21452,21452,,
+0,141,0.05826028995215893,3.4000000000000005e-06,3.3953588008880615,141,21610,21610,,
+0,142,0.058864526450634,3.4000000000000005e-06,3.3472585678100586,142,21815,21815,,
+0,143,0.058239719830453396,3.4000000000000005e-06,3.369658946990967,143,21941,21941,,
+0,144,0.08711814321577549,3.6e-06,3.4309377670288086,144,22037,22037,,
+0,145,0.05732255708426237,3.6e-06,3.391162395477295,145,22212,22212,,
+0,146,0.058792213909327984,3.6e-06,3.399188995361328,146,22300,22300,,
+0,147,0.058464325964450836,3.6e-06,3.4862587451934814,147,22424,22424,,
+0,148,0.058295609429478645,3.6e-06,3.4578869342803955,148,22528,22528,,
+0,149,0.0586352813988924,3.6e-06,3.377096176147461,149,22694,22694,,
+0,150,0.05845527537167072,3.6e-06,3.4168686866760254,150,22824,22824,,
+0,151,0.05851834174245596,3.6e-06,3.4770290851593018,151,22952,22952,,
+0,152,0.08688070625066757,3.8e-06,3.446418523788452,152,23111,23111,,
+0,153,0.0577058894559741,3.8e-06,3.4788382053375244,153,23217,23217,,
+0,154,0.05837253760546446,3.8e-06,3.5193755626678467,154,23340,23340,,
+0,155,0.058428470976650715,3.8e-06,3.4616682529449463,155,23532,23532,,
+0,156,0.0579761378467083,3.8e-06,3.4235174655914307,156,23696,23696,,
+0,157,0.05871518701314926,3.8e-06,3.447946786880493,157,23897,23897,,
+0,158,0.05850976426154375,3.8e-06,3.5047996044158936,158,24049,24049,,
+0,159,0.05842813104391098,3.8e-06,3.442310333251953,159,24172,24172,,
+0,160,0.08693454414606094,4.000000000000001e-06,3.48319149017334,160,24344,24344,,
+0,161,0.05784800834953785,4.000000000000001e-06,3.389293670654297,161,24535,24535,,
+0,162,0.05845895875245333,4.000000000000001e-06,3.3375024795532227,162,24717,24717,,
+0,163,0.0584632596001029,4.000000000000001e-06,3.330716371536255,163,24838,24838,,
+0,164,0.058245851658284664,4.000000000000001e-06,3.3114402294158936,164,25016,25016,,
+0,165,0.058235508389770985,4.000000000000001e-06,3.3887741565704346,165,25124,25124,,
+0,166,0.058360373601317406,4.000000000000001e-06,3.369479179382324,166,25270,25270,,
+0,167,0.058384185656905174,4.000000000000001e-06,3.3250415325164795,167,25406,25406,,
+0,168,0.08706132415682077,4.2000000000000004e-06,3.294081449508667,168,25569,25569,,
+0,169,0.05776510667055845,4.2000000000000004e-06,3.298370599746704,169,25732,25732,,
+0,170,0.058111860416829586,4.2000000000000004e-06,3.2414145469665527,170,25903,25903,,
+0,171,0.05853790882974863,4.2000000000000004e-06,3.233212947845459,171,26051,26051,,
+0,172,0.05850404594093561,4.2000000000000004e-06,3.2320938110351562,172,26220,26220,,
+0,173,0.058331361040472984,4.2000000000000004e-06,3.20155930519104,173,26348,26348,,
+0,174,0.05855842027813196,4.2000000000000004e-06,3.1901209354400635,174,26503,26503,,
+0,175,0.05863947980105877,4.2000000000000004e-06,3.1617238521575928,175,26647,26647,,
+0,176,0.08746491465717554,4.4e-06,3.195085287094116,176,26780,26780,,
+0,177,0.05869822483509779,4.4e-06,3.2849786281585693,177,26883,26883,,
+0,178,0.06035820581018925,4.4e-06,3.3749942779541016,178,26980,26980,,
+0,179,0.05888631381094456,4.4e-06,3.3498880863189697,179,27169,27169,,
+0,180,0.058408007957041264,4.4e-06,3.384164333343506,180,27322,27322,,
+0,181,0.058370450511574745,4.4e-06,3.3399553298950195,181,27510,27510,,
+0,182,0.05846324469894171,4.4e-06,3.2966792583465576,182,27612,27612,,
+0,183,0.05840216390788555,4.4e-06,3.3315916061401367,183,27778,27778,,
+0,184,0.08707457408308983,4.6e-06,3.258239984512329,184,27973,27973,,
+0,185,0.05810163822025061,4.6e-06,3.1955630779266357,185,28105,28105,,
+0,186,0.058357181027531624,4.6e-06,3.157625913619995,186,28253,28253,,
+0,187,0.05807219538837671,4.6e-06,3.165903329849243,187,28408,28408,,
+0,188,0.05817330349236727,4.6e-06,3.1347053050994873,188,28573,28573,,
+0,189,0.05847890395671129,4.6e-06,3.2092530727386475,189,28674,28674,,
+0,190,0.05846359673887491,4.6e-06,3.2560884952545166,190,28831,28831,,
+0,191,0.05834475625306368,4.6e-06,3.236483097076416,191,28962,28962,,
+0,192,0.08713243436068296,4.800000000000001e-06,3.266127347946167,192,29103,29103,,
+0,193,0.05801778845489025,4.800000000000001e-06,3.2508175373077393,193,29338,29338,,
+0,194,0.05819811951369047,4.800000000000001e-06,3.1803104877471924,194,29513,29513,,
+0,195,0.058097573928534985,4.800000000000001e-06,3.197164297103882,195,29667,29667,,
+0,196,0.05844968184828758,4.800000000000001e-06,3.2518107891082764,196,29815,29815,,
+0,197,0.05864894203841686,4.800000000000001e-06,3.169834852218628,197,29924,29924,,
+0,198,0.05902355257421732,4.800000000000001e-06,3.0924417972564697,198,30063,30063,,
+0,199,0.05874883662909269,4.800000000000001e-06,3.081393003463745,199,30242,30242,,
+0,200,0.08782642520964146,5e-06,3.0599024295806885,200,30528,30528,,
+,,,,,200,,,3.022123098373413,20.534842927664766
+0,201,0.06113393884152174,5e-06,3.063011407852173,201,30671,30671,,
+0,202,0.05920317675918341,5e-06,3.087829351425171,202,30862,30862,,
+0,203,0.058640098199248314,5e-06,3.031139612197876,203,31074,31074,,
+0,204,0.05848992150276899,5e-06,2.989647626876831,204,31246,31246,,
+0,205,0.05799773335456848,5e-06,2.996131181716919,205,31411,31411,,
+0,206,0.0589539622887969,5e-06,2.9813106060028076,206,31579,31579,,
+0,207,0.05825209431350231,5e-06,2.9840993881225586,207,31704,31704,,
+0,208,0.08762750029563904,5.2e-06,3.0559799671173096,208,31840,31840,,
+0,209,0.05752636771649122,5.2e-06,3.143444061279297,209,31964,31964,,
+0,210,0.05888444930315018,5.2e-06,3.155764102935791,210,32115,32115,,
+0,211,0.061080850660800934,5.2e-06,3.2140300273895264,211,32222,32222,,
+0,212,0.058790079317986965,5.2e-06,3.151496171951294,212,32410,32410,,
+0,213,0.05847755912691355,5.2e-06,3.1482536792755127,213,32546,32546,,
+0,214,0.0588877210393548,5.2e-06,3.1495025157928467,214,32722,32722,,
+0,215,0.05859090108424425,5.2e-06,3.092653274536133,215,32910,32910,,
+0,216,0.08746666926890612,5.4e-06,2.9981696605682373,216,33079,33079,,
+0,217,0.05775183718651533,5.4e-06,2.85746169090271,217,33197,33197,,
+0,218,0.05871262587606907,5.4e-06,2.8590760231018066,218,33358,33358,,
+0,219,0.05852790828794241,5.4e-06,2.835206985473633,219,33506,33506,,
+0,220,0.058281213976442814,5.4e-06,2.8668439388275146,220,33674,33674,,
+0,221,0.0585042629390955,5.4e-06,2.8897111415863037,221,33816,33816,,
+0,222,0.0585623849183321,5.4e-06,2.9151268005371094,222,33943,33943,,
+0,223,0.05870239995419979,5.4e-06,3.0039021968841553,223,34108,34108,,
+0,224,0.08779313787817955,5.600000000000001e-06,3.083247184753418,224,34210,34210,,
+0,225,0.05766622815281153,5.600000000000001e-06,3.114593982696533,225,34352,34352,,
+0,226,0.05899193324148655,5.600000000000001e-06,3.1162848472595215,226,34593,34593,,
+0,227,0.0589931420981884,5.600000000000001e-06,3.0663845539093018,227,34766,34766,,
+0,228,0.05851531494408846,5.600000000000001e-06,3.085599184036255,228,34918,34918,,
+0,229,0.05845919996500015,5.600000000000001e-06,3.0113275051116943,229,35091,35091,,
+0,230,0.05853528808802366,5.600000000000001e-06,2.9641382694244385,230,35233,35233,,
+0,231,0.05838629510253668,5.600000000000001e-06,2.914579391479492,231,35358,35358,,
+0,232,0.08741449564695358,5.8e-06,2.83109450340271,232,35531,35531,,
+0,233,0.05761909205466509,5.8e-06,2.8836801052093506,233,35668,35668,,
+0,234,0.05844358541071415,5.8e-06,2.8334603309631348,234,35891,35891,,
+0,235,0.0580706549808383,5.8e-06,2.8880903720855713,235,36033,36033,,
+0,236,0.058623901568353176,5.8e-06,2.878441095352173,236,36191,36191,,
+0,237,0.058418006636202335,5.8e-06,2.921557664871216,237,36400,36400,,
+0,238,0.05825850274413824,5.8e-06,2.9494149684906006,238,36560,36560,,
+0,239,0.05870048422366381,5.8e-06,2.905329704284668,239,36737,36737,,
+0,240,0.08763903565704823,6e-06,2.9505422115325928,240,36922,36922,,
+0,241,0.057746900245547295,6e-06,2.9133660793304443,241,37049,37049,,
+0,242,0.05812089517712593,6e-06,2.9412267208099365,242,37241,37241,,
+0,243,0.05845825467258692,6e-06,2.9549901485443115,243,37389,37389,,
+0,244,0.05848260782659054,6e-06,2.971628427505493,244,37559,37559,,
+0,245,0.05847777891904116,6e-06,2.9869420528411865,245,37695,37695,,
+0,246,0.05803634040057659,6e-06,2.968331813812256,246,37897,37897,,
+0,247,0.058442654088139534,6e-06,3.01625919342041,247,38065,38065,,
+0,248,0.0873855259269476,6.2e-06,2.9462099075317383,248,38244,38244,,
+0,249,0.057473867200315,6.2e-06,2.919675827026367,249,38444,38444,,
+0,250,0.05865573417395353,6.2e-06,2.8624305725097656,250,38600,38600,,
+0,251,0.058667127043008804,6.2e-06,2.8119850158691406,251,38757,38757,,
+0,252,0.05862101726233959,6.2e-06,2.7430286407470703,252,38884,38884,,
+0,253,0.05848786514252424,6.2e-06,2.761819362640381,253,38984,38984,,
+0,254,0.059610314667224884,6.2e-06,2.7880449295043945,254,39133,39133,,
+0,255,0.058283841237425804,6.2e-06,2.776440143585205,255,39315,39315,,
+0,256,0.08699237927794456,6.4000000000000006e-06,2.7868096828460693,256,39477,39477,,
+0,257,0.05738572869449854,6.4000000000000006e-06,2.7978062629699707,257,39668,39668,,
+0,258,0.058733588084578514,6.4000000000000006e-06,2.8340179920196533,258,39818,39818,,
+0,259,0.05822249688208103,6.4000000000000006e-06,2.7821061611175537,259,39981,39981,,
+0,260,0.058640564791858196,6.4000000000000006e-06,2.7930779457092285,260,40117,40117,,
+0,261,0.05849011614918709,6.4000000000000006e-06,2.7379310131073,261,40228,40228,,
+0,262,0.058630380779504776,6.4000000000000006e-06,2.7497899532318115,262,40355,40355,,
+0,263,0.05825355648994446,6.4000000000000006e-06,2.7203917503356934,263,40547,40547,,
+0,264,0.08738582488149405,6.6e-06,2.7258150577545166,264,40689,40689,,
+0,265,0.05768441502004862,6.6e-06,2.680128335952759,265,40832,40832,,
+0,266,0.05862235464155674,6.6e-06,2.7062456607818604,266,40982,40982,,
+0,267,0.05849298648536205,6.6e-06,2.7568390369415283,267,41086,41086,,
+0,268,0.05869513563811779,6.6e-06,2.755671977996826,268,41188,41188,,
+0,269,0.05835269205272198,6.6e-06,2.8183722496032715,269,41315,41315,,
+0,270,0.05860274191945791,6.6e-06,2.808157205581665,270,41434,41434,,
+0,271,0.05833677016198635,6.6e-06,2.8424127101898193,271,41574,41574,,
+0,272,0.08796016126871109,6.800000000000001e-06,2.8852624893188477,272,41744,41744,,
+0,273,0.05744637083262205,6.800000000000001e-06,2.922184467315674,273,41878,41878,,
+0,274,0.05842136964201927,6.800000000000001e-06,2.852025270462036,274,41995,41995,,
+0,275,0.05854075215756893,6.800000000000001e-06,2.802497148513794,275,42169,42169,,
+0,276,0.05915355775505304,6.800000000000001e-06,2.7989869117736816,276,42468,42468,,
+0,277,0.05847250297665596,6.800000000000001e-06,2.725520372390747,277,42591,42591,,
+0,278,0.058813647367060184,6.800000000000001e-06,2.712477445602417,278,42751,42751,,
+0,279,0.05880928132683039,6.800000000000001e-06,2.7278740406036377,279,42928,42928,,
+0,280,0.08736400119960308,7.000000000000001e-06,2.7382984161376953,280,43036,43036,,
+0,281,0.05876121576875448,7.000000000000001e-06,2.7650840282440186,281,43206,43206,,
+0,282,0.058664300478994846,7.000000000000001e-06,2.820542097091675,282,43381,43381,,
+0,283,0.05873496178537607,7.000000000000001e-06,2.812453508377075,283,43505,43505,,
+0,284,0.0586523599922657,7.000000000000001e-06,2.7843379974365234,284,43608,43608,,
+0,285,0.05842131748795509,7.000000000000001e-06,2.8719897270202637,285,43719,43719,,
+0,286,0.05843707825988531,7.000000000000001e-06,2.861994981765747,286,43876,43876,,
+0,287,0.05852930806577206,7.000000000000001e-06,2.835768938064575,287,44005,44005,,
+0,288,0.08805067837238312,7.2e-06,2.7100472450256348,288,44207,44207,,
+0,289,0.05782130919396877,7.2e-06,2.6647071838378906,289,44340,44340,,
+0,290,0.06025991681963205,7.2e-06,2.6016416549682617,290,44540,44540,,
+0,291,0.058939035050570965,7.2e-06,2.628549098968506,291,44706,44706,,
+0,292,0.05854237079620361,7.2e-06,2.7116641998291016,292,44852,44852,,
+0,293,0.05866934172809124,7.2e-06,2.6320667266845703,293,45000,45000,,
+0,294,0.05879194848239422,7.2e-06,2.6096158027648926,294,45166,45166,,
+0,295,0.05864084791392088,7.2e-06,2.6248979568481445,295,45305,45305,,
+0,296,0.08756995014846325,7.4e-06,2.758854389190674,296,45435,45435,,
+0,297,0.057383183389902115,7.4e-06,2.7327260971069336,297,45641,45641,,
+0,298,0.05851467978209257,7.4e-06,2.7785727977752686,298,45788,45788,,
+0,299,0.05842593498528004,7.4e-06,2.7969589233398438,299,45920,45920,,
+0,300,0.0584189398214221,7.4e-06,2.721376419067383,300,46057,46057,,
+0,301,0.05850489158183336,7.4e-06,2.7068262100219727,301,46171,46171,,
+0,302,0.05848448537290096,7.4e-06,2.6991934776306152,302,46330,46330,,
+0,303,0.058466593734920025,7.4e-06,2.6209659576416016,303,46446,46446,,
+0,304,0.08775867335498333,7.6e-06,2.5618584156036377,304,46610,46610,,
+0,305,0.057900577783584595,7.6e-06,2.5421133041381836,305,46793,46793,,
+0,306,0.058504823595285416,7.6e-06,2.4908721446990967,306,47063,47063,,
+0,307,0.05850960686802864,7.6e-06,2.4598793983459473,307,47148,47148,,
+0,308,0.05828231666237116,7.6e-06,2.443141460418701,308,47271,47271,,
+0,309,0.05849599186331034,7.6e-06,2.4637064933776855,309,47445,47445,,
+0,310,0.058680287562310696,7.6e-06,2.473914623260498,310,47620,47620,,
+0,311,0.05840760562568903,7.6e-06,2.4742813110351562,311,47749,47749,,
+0,312,0.0870918519794941,7.8e-06,2.5060222148895264,312,47910,47910,,
+0,313,0.057855489663779736,7.8e-06,2.5351545810699463,313,48080,48080,,
+0,314,0.05876499880105257,7.8e-06,2.528449773788452,314,48181,48181,,
+0,315,0.058560699224472046,7.8e-06,2.5880126953125,315,48319,48319,,
+0,316,0.058608672581613064,7.8e-06,2.6398513317108154,316,48474,48474,,
+0,317,0.05816989578306675,7.8e-06,2.5855302810668945,317,48603,48603,,
+0,318,0.05858391057699919,7.8e-06,2.557441473007202,318,48724,48724,,
+0,319,0.058136419393122196,7.8e-06,2.612161159515381,319,48914,48914,,
+0,320,0.0874014226719737,8.000000000000001e-06,2.586534261703491,320,49027,49027,,
+0,321,0.061455244198441505,8.000000000000001e-06,2.574665069580078,321,49166,49166,,
+0,322,0.05812390334904194,8.000000000000001e-06,2.569620370864868,322,49365,49365,,
+0,323,0.058081469498574734,8.000000000000001e-06,2.5172009468078613,323,49557,49557,,
+0,324,0.0584578076377511,8.000000000000001e-06,2.4980270862579346,324,49686,49686,,
+0,325,0.058480276726186275,8.000000000000001e-06,2.468215227127075,325,49856,49856,,
+0,326,0.05890673864632845,8.000000000000001e-06,2.4611642360687256,326,49959,49959,,
+0,327,0.05862889625132084,8.000000000000001e-06,2.3838608264923096,327,50096,50096,,
+0,328,0.08772832434624434,8.200000000000001e-06,2.3746891021728516,328,50207,50207,,
+0,329,0.05792783759534359,8.200000000000001e-06,2.3592724800109863,329,50396,50396,,
+0,330,0.05871915630996227,8.200000000000001e-06,2.4270071983337402,330,50560,50560,,
+0,331,0.058473315089941025,8.200000000000001e-06,2.4249472618103027,331,50671,50671,,
+0,332,0.05869846511632204,8.200000000000001e-06,2.4093117713928223,332,50859,50859,,
+0,333,0.05849656742066145,8.200000000000001e-06,2.5116419792175293,333,51014,51014,,
+0,334,0.05852008704096079,8.200000000000001e-06,2.5497376918792725,334,51167,51167,,
+0,335,0.05849272292107344,8.200000000000001e-06,2.618948459625244,335,51272,51272,,
+0,336,0.08719955012202263,8.400000000000001e-06,2.590698719024658,336,51433,51433,,
+0,337,0.05785071384161711,8.400000000000001e-06,2.589482545852661,337,51592,51592,,
+0,338,0.05862008035182953,8.400000000000001e-06,2.576789140701294,338,51718,51718,,
+0,339,0.058317224495112896,8.400000000000001e-06,2.568934440612793,339,51832,51832,,
+0,340,0.058649024926126,8.400000000000001e-06,2.580456495285034,340,51952,51952,,
+0,341,0.058555387891829014,8.400000000000001e-06,2.605499029159546,341,52076,52076,,
+0,342,0.05857590213418007,8.400000000000001e-06,2.6230015754699707,342,52192,52192,,
+0,343,0.05885522812604904,8.400000000000001e-06,2.620776653289795,343,52347,52347,,
+0,344,0.08753609098494053,8.599999999999999e-06,2.6432814598083496,344,52458,52458,,
+0,345,0.057857489213347435,8.599999999999999e-06,2.615433931350708,345,52610,52610,,
+0,346,0.058719513937830925,8.599999999999999e-06,2.5998497009277344,346,52746,52746,,
+0,347,0.0586804524064064,8.599999999999999e-06,2.637993812561035,347,52888,52888,,
+0,348,0.05860563088208437,8.599999999999999e-06,2.6537976264953613,348,53063,53063,,
+0,349,0.05828040651977062,8.599999999999999e-06,2.5473461151123047,349,53267,53267,,
+0,350,0.058592433109879494,8.599999999999999e-06,2.528951644897461,350,53370,53370,,
+0,351,0.05834573321044445,8.599999999999999e-06,2.532151460647583,351,53490,53490,,
+0,352,0.08722606487572193,8.8e-06,2.504965305328369,352,53626,53626,,
+0,353,0.057356963865458965,8.8e-06,2.6016557216644287,353,53793,53793,,
+0,354,0.0581579115241766,8.8e-06,2.65627121925354,354,53997,53997,,
+0,355,0.05815588217228651,8.8e-06,2.5945186614990234,355,54199,54199,,
+0,356,0.05855168681591749,8.8e-06,2.5469655990600586,356,54325,54325,,
+0,357,0.058335479348897934,8.8e-06,2.5659477710723877,357,54487,54487,,
+0,358,0.05907842703163624,8.8e-06,2.511428117752075,358,54720,54720,,
+0,359,0.05843842588365078,8.8e-06,2.4743311405181885,359,54864,54864,,
+0,360,0.08808263670653105,9e-06,2.465351104736328,360,54957,54957,,
+0,361,0.057750359177589417,9e-06,2.4183733463287354,361,55080,55080,,
+0,362,0.058486875146627426,9e-06,2.334463119506836,362,55196,55196,,
+0,363,0.061607666313648224,9e-06,2.389169931411743,363,55316,55316,,
+0,364,0.059525576420128345,9e-06,2.356961727142334,364,55467,55467,,
+0,365,0.05853655282407999,9e-06,2.3966259956359863,365,55588,55588,,
+0,366,0.0583518436178565,9e-06,2.4510295391082764,366,55753,55753,,
+0,367,0.05855641979724169,9e-06,2.449894905090332,367,55912,55912,,
+0,368,0.0873849643394351,9.2e-06,2.467672824859619,368,56040,56040,,
+0,369,0.05766594968736172,9.2e-06,2.4646291732788086,369,56145,56145,,
+0,370,0.05860217846930027,9.2e-06,2.472358226776123,370,56288,56288,,
+0,371,0.05831302050501108,9.2e-06,2.4154505729675293,371,56437,56437,,
+0,372,0.05824231542646885,9.2e-06,2.5037312507629395,372,56649,56649,,
+0,373,0.058687346056103706,9.2e-06,2.5230376720428467,373,56787,56787,,
+0,374,0.05853154230862856,9.2e-06,2.5023443698883057,374,56921,56921,,
+0,375,0.05829708743840456,9.2e-06,2.5248875617980957,375,57055,57055,,
+0,376,0.08695565722882748,9.4e-06,2.484229803085327,376,57213,57213,,
+0,377,0.05800142232328653,9.4e-06,2.4280459880828857,377,57432,57432,,
+0,378,0.05841579847037792,9.4e-06,2.4415109157562256,378,57566,57566,,
+0,379,0.0586417093873024,9.4e-06,2.4966325759887695,379,57710,57710,,
+0,380,0.05875092092901468,9.4e-06,2.4606387615203857,380,57852,57852,,
+0,381,0.05808763299137354,9.4e-06,2.4013402462005615,381,58031,58031,,
+0,382,0.05829441361129284,9.4e-06,2.3907573223114014,382,58146,58146,,
+0,383,0.058440083637833595,9.4e-06,2.415029287338257,383,58384,58384,,
+0,384,0.08759980741888285,9.600000000000001e-06,2.456454038619995,384,58556,58556,,
+0,385,0.05790906585752964,9.600000000000001e-06,2.5210137367248535,385,58758,58758,,
+0,386,0.05867717321962118,9.600000000000001e-06,2.484687089920044,386,58907,58907,,
+0,387,0.05842768773436546,9.600000000000001e-06,2.4789419174194336,387,59069,59069,,
+0,388,0.058634327724575996,9.600000000000001e-06,2.4707562923431396,388,59221,59221,,
+0,389,0.0585209671407938,9.600000000000001e-06,2.4789083003997803,389,59332,59332,,
+0,390,0.05865313112735748,9.600000000000001e-06,2.4692323207855225,390,59455,59455,,
+0,391,0.05845645535737276,9.600000000000001e-06,2.443699598312378,391,59585,59585,,
+0,392,0.08720975741744041,9.800000000000001e-06,2.448765277862549,392,59756,59756,,
+0,393,0.057754519395530224,9.800000000000001e-06,2.434278964996338,393,59889,59889,,
+0,394,0.058727835305035114,9.800000000000001e-06,2.4805092811584473,394,60039,60039,,
+0,395,0.058640383183956146,9.800000000000001e-06,2.4420313835144043,395,60183,60183,,
+0,396,0.0582136670127511,9.800000000000001e-06,2.449462890625,396,60382,60382,,
+0,397,0.05870670173317194,9.800000000000001e-06,2.4505434036254883,397,60587,60587,,
+0,398,0.05850147269666195,9.800000000000001e-06,2.427353858947754,398,60729,60729,,
+0,399,0.05951907206326723,9.800000000000001e-06,2.353635311126709,399,60875,60875,,
+0,400,0.08797634113579988,1e-05,2.360355854034424,400,61004,61004,,
+,,,,,400,,,2.259676218032837,9.579986837568692
+0,401,0.06090785004198551,1e-05,2.3082666397094727,401,61208,61208,,
+0,402,0.05947335064411163,1e-05,2.249687910079956,402,61354,61354,,
+0,403,0.05890280846506357,1e-05,2.260080099105835,403,61506,61506,,
+0,404,0.05866015516221523,1e-05,2.220649003982544,404,61672,61672,,
+0,405,0.05814972147345543,1e-05,2.1544766426086426,405,61819,61819,,
+0,406,0.058136897161602974,1e-05,2.2275328636169434,406,61946,61946,,
+0,407,0.05791305750608444,1e-05,2.2704715728759766,407,62125,62125,,
+0,408,0.0878074849024415,1.02e-05,2.2710673809051514,408,62314,62314,,
+0,409,0.05685704853385687,1.02e-05,2.360161781311035,409,62464,62464,,
+0,410,0.05831377301365137,1.02e-05,2.432908296585083,410,62583,62583,,
+0,411,0.05795848090201616,1.02e-05,2.4523353576660156,411,62791,62791,,
+0,412,0.058473444543778896,1.02e-05,2.4899728298187256,412,62962,62962,,
+0,413,0.05924249812960625,1.02e-05,2.4915707111358643,413,63137,63137,,
+0,414,0.05876447446644306,1.02e-05,2.431929588317871,414,63295,63295,,
+0,415,0.05852004885673523,1.02e-05,2.429297924041748,415,63433,63433,,
+0,416,0.08742308057844639,1.04e-05,2.411468029022217,416,63532,63532,,
+0,417,0.057464033365249634,1.04e-05,2.4057376384735107,417,63680,63680,,
+0,418,0.05843458790332079,1.04e-05,2.377513885498047,418,63795,63795,,
+0,419,0.058291797526180744,1.04e-05,2.3187649250030518,419,63929,63929,,
+0,420,0.05827290192246437,1.04e-05,2.2672314643859863,420,64059,64059,,
+0,421,0.058405911549925804,1.04e-05,2.2912063598632812,421,64203,64203,,
+0,422,0.058584037236869335,1.04e-05,2.2654647827148438,422,64370,64370,,
+0,423,0.05846572574228048,1.04e-05,2.256305694580078,423,64546,64546,,
+0,424,0.08725717570632696,1.06e-05,2.249582290649414,424,64720,64720,,
+0,425,0.057303059846162796,1.06e-05,2.241198778152466,425,64886,64886,,
+0,426,0.05796551052480936,1.06e-05,2.245741844177246,426,65080,65080,,
+0,427,0.05826796684414148,1.06e-05,2.301074266433716,427,65238,65238,,
+0,428,0.058267065323889256,1.06e-05,2.317786931991577,428,65364,65364,,
+0,429,0.05822224169969559,1.06e-05,2.3395512104034424,429,65498,65498,,
+0,430,0.05878444295376539,1.06e-05,2.338923215866089,430,65673,65673,,
+0,431,0.05836092308163643,1.06e-05,2.368471384048462,431,65885,65885,,
+0,432,0.0871158242225647,1.08e-05,2.342681646347046,432,66044,66044,,
+0,433,0.05760335270315409,1.08e-05,2.348623275756836,433,66215,66215,,
+0,434,0.058302232064306736,1.08e-05,2.345613956451416,434,66334,66334,,
+0,435,0.058016419410705566,1.08e-05,2.31805419921875,435,66517,66517,,
+0,436,0.05860091466456652,1.08e-05,2.3607726097106934,436,66686,66686,,
+0,437,0.058258640579879284,1.08e-05,2.365250587463379,437,66795,66795,,
+0,438,0.0583985997363925,1.08e-05,2.4263036251068115,438,66955,66955,,
+0,439,0.05835849978029728,1.08e-05,2.4191133975982666,439,67050,67050,,
+0,440,0.08731603808701038,1.1000000000000001e-05,2.4172282218933105,440,67209,67209,,
+0,441,0.05751971807330847,1.1000000000000001e-05,2.413212776184082,441,67350,67350,,
+0,442,0.0580077338963747,1.1000000000000001e-05,2.408581495285034,442,67507,67507,,
+0,443,0.06113448925316334,1.1000000000000001e-05,2.4456632137298584,443,67686,67686,,
+0,444,0.058949535712599754,1.1000000000000001e-05,2.4171619415283203,444,67792,67792,,
+0,445,0.05862227454781532,1.1000000000000001e-05,2.4496631622314453,445,67964,67964,,
+0,446,0.058120246976614,1.1000000000000001e-05,2.4121460914611816,446,68102,68102,,
+0,447,0.05834031477570534,1.1000000000000001e-05,2.3612558841705322,447,68240,68240,,
+0,448,0.08716592565178871,1.1200000000000001e-05,2.380742073059082,448,68374,68374,,
+0,449,0.057864497415721416,1.1200000000000001e-05,2.32767653465271,449,68542,68542,,
+0,450,0.05859732814133167,1.1200000000000001e-05,2.329117774963379,450,68678,68678,,
+0,451,0.05805183295160532,1.1200000000000001e-05,2.3191821575164795,451,68866,68866,,
+0,452,0.058398221619427204,1.1200000000000001e-05,2.314413547515869,452,69021,69021,,
+0,453,0.05862909276038408,1.1200000000000001e-05,2.2462260723114014,453,69163,69163,,
+0,454,0.059197600930929184,1.1200000000000001e-05,2.2708323001861572,454,69336,69336,,
+0,455,0.058457535691559315,1.1200000000000001e-05,2.298171043395996,455,69554,69554,,
+0,456,0.08714175410568714,1.1400000000000001e-05,2.271897315979004,456,69698,69698,,
+0,457,0.05753088649362326,1.1400000000000001e-05,2.282458782196045,457,69819,69819,,
+0,458,0.058519250713288784,1.1400000000000001e-05,2.2828845977783203,458,69980,69980,,
+0,459,0.057970295660197735,1.1400000000000001e-05,2.23221492767334,459,70125,70125,,
+0,460,0.05851880740374327,1.1400000000000001e-05,2.2251505851745605,460,70248,70248,,
+0,461,0.05859365686774254,1.1400000000000001e-05,2.269207000732422,461,70427,70427,,
+0,462,0.05874397698789835,1.1400000000000001e-05,2.2124409675598145,462,70530,70530,,
+0,463,0.058527412824332714,1.1400000000000001e-05,2.2051894664764404,463,70671,70671,,
+0,464,0.08705233410000801,1.16e-05,2.2136964797973633,464,70863,70863,,
+0,465,0.057738084346055984,1.16e-05,2.2150955200195312,465,71007,71007,,
+0,466,0.058448842726647854,1.16e-05,2.161525249481201,466,71153,71153,,
+0,467,0.058413730934262276,1.16e-05,2.167595386505127,467,71297,71297,,
+0,468,0.05873540695756674,1.16e-05,2.177746295928955,468,71407,71407,,
+0,469,0.05858637858182192,1.16e-05,2.1813902854919434,469,71577,71577,,
+0,470,0.05832053814083338,1.16e-05,2.2181925773620605,470,71765,71765,,
+0,471,0.05821781978011131,1.16e-05,2.227870464324951,471,71987,71987,,
+0,472,0.08755064383149147,1.18e-05,2.2796876430511475,472,72145,72145,,
+0,473,0.057715630158782005,1.18e-05,2.281419038772583,473,72307,72307,,
+0,474,0.058877550065517426,1.18e-05,2.329087018966675,474,72423,72423,,
+0,475,0.058452973142266273,1.18e-05,2.347616195678711,475,72564,72564,,
+0,476,0.058612107299268246,1.18e-05,2.3563389778137207,476,72677,72677,,
+0,477,0.058421675115823746,1.18e-05,2.3813130855560303,477,72817,72817,,
+0,478,0.05855968315154314,1.18e-05,2.40824294090271,478,72947,72947,,
+0,479,0.05862721335142851,1.18e-05,2.44850754737854,479,73183,73183,,
+0,480,0.08759406488388777,1.2e-05,2.4542834758758545,480,73346,73346,,
+0,481,0.0576087636873126,1.2e-05,2.418139696121216,481,73488,73488,,
+0,482,0.058430309407413006,1.2e-05,2.4088635444641113,482,73602,73602,,
+0,483,0.05792842339724302,1.2e-05,2.4091567993164062,483,73802,73802,,
+0,484,0.05854593124240637,1.2e-05,2.385232448577881,484,73943,73943,,
+0,485,0.0584897780790925,1.2e-05,2.3099868297576904,485,74081,74081,,
+0,486,0.05821060203015804,1.2e-05,2.2861926555633545,486,74239,74239,,
+0,487,0.05941920727491379,1.2e-05,2.239415407180786,487,74353,74353,,
+0,488,0.0877877026796341,1.22e-05,2.19842791557312,488,74524,74524,,
+0,489,0.057762667536735535,1.22e-05,2.219407796859741,489,74681,74681,,
+0,490,0.05860058777034283,1.22e-05,2.1847634315490723,490,74864,74864,,
+0,491,0.05836878716945648,1.22e-05,2.1939032077789307,491,75030,75030,,
+0,492,0.05884746555238962,1.22e-05,2.2353010177612305,492,75155,75155,,
+0,493,0.05888144392520189,1.22e-05,2.2359466552734375,493,75276,75276,,
+0,494,0.05821214895695448,1.22e-05,2.2520556449890137,494,75458,75458,,
+0,495,0.058598331175744534,1.22e-05,2.2303009033203125,495,75575,75575,,
+0,496,0.08696796465665102,1.24e-05,2.2603869438171387,496,75738,75738,,
+0,497,0.05762072280049324,1.24e-05,2.3108999729156494,497,75875,75875,,
+0,498,0.05834908317774534,1.24e-05,2.367213249206543,498,76069,76069,,
+0,499,0.0583013566210866,1.24e-05,2.3224236965179443,499,76214,76214,,
+0,500,0.058379337191581726,1.24e-05,2.237978935241699,500,76345,76345,,
+0,501,0.05822243448346853,1.24e-05,2.245035171508789,501,76465,76465,,
+0,502,0.058443523943424225,1.24e-05,2.216355800628662,502,76680,76680,,
+0,503,0.058759176172316074,1.24e-05,2.20168399810791,503,76764,76764,,
+0,504,0.08706891909241676,1.2600000000000001e-05,2.1720635890960693,504,76897,76897,,
+0,505,0.057352395728230476,1.2600000000000001e-05,2.1213791370391846,505,77032,77032,,
+0,506,0.05809353198856115,1.2600000000000001e-05,2.1143391132354736,506,77163,77163,,
+0,507,0.057995651848614216,1.2600000000000001e-05,2.131929397583008,507,77315,77315,,
+0,508,0.05807813350111246,1.2600000000000001e-05,2.1808271408081055,508,77413,77413,,
+0,509,0.057954151183366776,1.2600000000000001e-05,2.1554088592529297,509,77602,77602,,
+0,510,0.05770289618521929,1.2600000000000001e-05,2.1353578567504883,510,77777,77777,,
+0,511,0.05849095340818167,1.2600000000000001e-05,2.1751656532287598,511,77888,77888,,
+0,512,0.08689795527607203,1.2800000000000001e-05,2.134063720703125,512,78068,78068,,
+0,513,0.05711778160184622,1.2800000000000001e-05,2.1495494842529297,513,78244,78244,,
+0,514,0.058718432672321796,1.2800000000000001e-05,2.1335983276367188,514,78383,78383,,
+0,515,0.057968090288341045,1.2800000000000001e-05,2.1329452991485596,515,78496,78496,,
+0,516,0.05800469685345888,1.2800000000000001e-05,2.125297784805298,516,78723,78723,,
+0,517,0.05832025874406099,1.2800000000000001e-05,2.178377628326416,517,78887,78887,,
+0,518,0.058107275515794754,1.2800000000000001e-05,2.2293825149536133,518,79042,79042,,
+0,519,0.0582367405295372,1.2800000000000001e-05,2.211251974105835,519,79171,79171,,
+0,520,0.08749044314026833,1.3000000000000001e-05,2.25724196434021,520,79309,79309,,
+0,521,0.059225658886134624,1.3000000000000001e-05,2.2533018589019775,521,79438,79438,,
+0,522,0.058021352626383305,1.3000000000000001e-05,2.266336441040039,522,79579,79579,,
+0,523,0.05827790778130293,1.3000000000000001e-05,2.2740559577941895,523,79758,79758,,
+0,524,0.058246239088475704,1.3000000000000001e-05,2.2779788970947266,524,79942,79942,,
+0,525,0.05812204349786043,1.3000000000000001e-05,2.197573661804199,525,80065,80065,,
+0,526,0.05823363084346056,1.3000000000000001e-05,2.154660701751709,526,80207,80207,,
+0,527,0.058749631978571415,1.3000000000000001e-05,2.1561906337738037,527,80365,80365,,
+0,528,0.08698271494358778,1.32e-05,2.178048610687256,528,80576,80576,,
+0,529,0.057069798931479454,1.32e-05,2.2032761573791504,529,80732,80732,,
+0,530,0.05875034537166357,1.32e-05,2.2034802436828613,530,80896,80896,,
+0,531,0.058330172672867775,1.32e-05,2.1781163215637207,531,81010,81010,,
+0,532,0.05862553138285875,1.32e-05,2.199892044067383,532,81150,81150,,
+0,533,0.05846296902745962,1.32e-05,2.213904857635498,533,81271,81271,,
+0,534,0.05821539647877216,1.32e-05,2.2733564376831055,534,81403,81403,,
+0,535,0.05852340441197157,1.32e-05,2.281970500946045,535,81540,81540,,
+0,536,0.08739793952554464,1.3400000000000002e-05,2.2079524993896484,536,81693,81693,,
+0,537,0.057458736933767796,1.3400000000000002e-05,2.181652545928955,537,81845,81845,,
+0,538,0.05784975178539753,1.3400000000000002e-05,2.1329338550567627,538,82049,82049,,
+0,539,0.05798489134758711,1.3400000000000002e-05,2.1485114097595215,539,82244,82244,,
+0,540,0.05825705919414759,1.3400000000000002e-05,2.12247633934021,540,82420,82420,,
+0,541,0.05850991699844599,1.3400000000000002e-05,2.1901469230651855,541,82578,82578,,
+0,542,0.05845172796398401,1.3400000000000002e-05,2.1697471141815186,542,82706,82706,,
+0,543,0.058176581747829914,1.3400000000000002e-05,2.235166311264038,543,82849,82849,,
+0,544,0.0875738076865673,1.3600000000000002e-05,2.267808198928833,544,83005,83005,,
+0,545,0.05765432119369507,1.3600000000000002e-05,2.2795138359069824,545,83177,83177,,
+0,546,0.0585904261097312,1.3600000000000002e-05,2.2729992866516113,546,83335,83335,,
+0,547,0.058684809133410454,1.3600000000000002e-05,2.301082134246826,547,83529,83529,,
+0,548,0.05826713517308235,1.3600000000000002e-05,2.325613021850586,548,83756,83756,,
+0,549,0.0581961777061224,1.3600000000000002e-05,2.3065199851989746,549,83978,83978,,
+0,550,0.05831395834684372,1.3600000000000002e-05,2.2437150478363037,550,84130,84130,,
+0,551,0.05853256583213806,1.3600000000000002e-05,2.1900219917297363,551,84284,84284,,
+0,552,0.08787752036005259,1.3800000000000002e-05,2.236006498336792,552,84388,84388,,
+,,,,,553,,,2.0928428173065186,8.107931801602348
diff --git a/out/finetune/tinyllama_full_arc/2506/final/config.json b/out/finetune/tinyllama_full_arc/2506/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/final/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/finetune/tinyllama_full_arc/2506/final/generation_config.json b/out/finetune/tinyllama_full_arc/2506/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/finetune/tinyllama_full_arc/2506/final/hyperparameters.yaml b/out/finetune/tinyllama_full_arc/2506/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..37f29151aa320d22c9790647581c7dda24864bb8
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/final/hyperparameters.yaml
@@ -0,0 +1,43 @@
+checkpoint_dir: out/pretrain/tinyllama/2506_full/final
+out_dir: out/finetune/tinyllama_full_arc/2506
+precision: bf16-true
+devices: 1
+num_nodes: 1
+resume: false
+data:
+ class_path: litgpt.data.JSON
+ init_args:
+ json_path: litgpt/data/arc_finetune/train.json
+ mask_prompt: false
+ val_split_fraction: 0.02
+ prompt_style: default
+ ignore_index: -100
+ seed: 42
+ num_workers: 4
+train:
+ save_interval: 800
+ log_interval: 1
+ global_batch_size: 32
+ micro_batch_size: 4
+ lr_warmup_steps: 1000
+ epochs: 1
+ max_seq_length: 512
+ min_lr: 6.0e-05
+eval:
+ interval: 25
+ max_new_tokens: 100
+ max_iters: 100
+ initial_validation: false
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 0.0002
+ weight_decay: 0.0
+ betas:
+ - 0.9
+ - 0.95
+logger_name: csv
+seed: 1337
diff --git a/out/finetune/tinyllama_full_arc/2506/final/model_config.yaml b/out/finetune/tinyllama_full_arc/2506/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d31881309289cb59520314f7da89a8ef38f3c77e
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 64
+hf_config:
+ name: TinyLlama-1.1B-intermediate-step-1431k-3T
+ org: TinyLlama
+intermediate_size: 5632
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 2048
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 22
+n_query_groups: 4
+name: tiny-llama-1.1b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-05
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/finetune/tinyllama_full_arc/2506/final/prompt_style.yaml b/out/finetune/tinyllama_full_arc/2506/final/prompt_style.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..941ee04454a29d3bc5e7d95772771250ed72f339
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/final/prompt_style.yaml
@@ -0,0 +1 @@
+class_path: litgpt.prompts.Default
diff --git a/out/finetune/tinyllama_full_arc/2506/final/tokenizer.json b/out/finetune/tinyllama_full_arc/2506/final/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6e931b92caff4c79c5c56282f1e89569a0ae558
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/final/tokenizer.json
@@ -0,0 +1,93391 @@
+{
+ "version": "1.0",
+ "truncation": null,
+ "padding": null,
+ "added_tokens": [
+ {
+ "id": 0,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 1,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 2,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ }
+ ],
+ "normalizer": {
+ "type": "Sequence",
+ "normalizers": [
+ {
+ "type": "Prepend",
+ "prepend": "▁"
+ },
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": " "
+ },
+ "content": "▁"
+ }
+ ]
+ },
+ "pre_tokenizer": null,
+ "post_processor": {
+ "type": "TemplateProcessing",
+ "single": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ }
+ ],
+ "pair": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ },
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 1
+ }
+ },
+ {
+ "Sequence": {
+ "id": "B",
+ "type_id": 1
+ }
+ }
+ ],
+ "special_tokens": {
+ "": {
+ "id": "",
+ "ids": [
+ 1
+ ],
+ "tokens": [
+ ""
+ ]
+ }
+ }
+ },
+ "decoder": {
+ "type": "Sequence",
+ "decoders": [
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": "▁"
+ },
+ "content": " "
+ },
+ {
+ "type": "ByteFallback"
+ },
+ {
+ "type": "Fuse"
+ },
+ {
+ "type": "Strip",
+ "content": " ",
+ "start": 1,
+ "stop": 0
+ }
+ ]
+ },
+ "model": {
+ "type": "BPE",
+ "dropout": null,
+ "unk_token": "",
+ "continuing_subword_prefix": null,
+ "end_of_word_suffix": null,
+ "fuse_unk": true,
+ "byte_fallback": true,
+ "vocab": {
+ "": 0,
+ "": 1,
+ "": 2,
+ "<0x00>": 3,
+ "<0x01>": 4,
+ "<0x02>": 5,
+ "<0x03>": 6,
+ "<0x04>": 7,
+ "<0x05>": 8,
+ "<0x06>": 9,
+ "<0x07>": 10,
+ "<0x08>": 11,
+ "<0x09>": 12,
+ "<0x0A>": 13,
+ "<0x0B>": 14,
+ "<0x0C>": 15,
+ "<0x0D>": 16,
+ "<0x0E>": 17,
+ "<0x0F>": 18,
+ "<0x10>": 19,
+ "<0x11>": 20,
+ "<0x12>": 21,
+ "<0x13>": 22,
+ "<0x14>": 23,
+ "<0x15>": 24,
+ "<0x16>": 25,
+ "<0x17>": 26,
+ "<0x18>": 27,
+ "<0x19>": 28,
+ "<0x1A>": 29,
+ "<0x1B>": 30,
+ "<0x1C>": 31,
+ "<0x1D>": 32,
+ "<0x1E>": 33,
+ "<0x1F>": 34,
+ "<0x20>": 35,
+ "<0x21>": 36,
+ "<0x22>": 37,
+ "<0x23>": 38,
+ "<0x24>": 39,
+ "<0x25>": 40,
+ "<0x26>": 41,
+ "<0x27>": 42,
+ "<0x28>": 43,
+ "<0x29>": 44,
+ "<0x2A>": 45,
+ "<0x2B>": 46,
+ "<0x2C>": 47,
+ "<0x2D>": 48,
+ "<0x2E>": 49,
+ "<0x2F>": 50,
+ "<0x30>": 51,
+ "<0x31>": 52,
+ "<0x32>": 53,
+ "<0x33>": 54,
+ "<0x34>": 55,
+ "<0x35>": 56,
+ "<0x36>": 57,
+ "<0x37>": 58,
+ "<0x38>": 59,
+ "<0x39>": 60,
+ "<0x3A>": 61,
+ "<0x3B>": 62,
+ "<0x3C>": 63,
+ "<0x3D>": 64,
+ "<0x3E>": 65,
+ "<0x3F>": 66,
+ "<0x40>": 67,
+ "<0x41>": 68,
+ "<0x42>": 69,
+ "<0x43>": 70,
+ "<0x44>": 71,
+ "<0x45>": 72,
+ "<0x46>": 73,
+ "<0x47>": 74,
+ "<0x48>": 75,
+ "<0x49>": 76,
+ "<0x4A>": 77,
+ "<0x4B>": 78,
+ "<0x4C>": 79,
+ "<0x4D>": 80,
+ "<0x4E>": 81,
+ "<0x4F>": 82,
+ "<0x50>": 83,
+ "<0x51>": 84,
+ "<0x52>": 85,
+ "<0x53>": 86,
+ "<0x54>": 87,
+ "<0x55>": 88,
+ "<0x56>": 89,
+ "<0x57>": 90,
+ "<0x58>": 91,
+ "<0x59>": 92,
+ "<0x5A>": 93,
+ "<0x5B>": 94,
+ "<0x5C>": 95,
+ "<0x5D>": 96,
+ "<0x5E>": 97,
+ "<0x5F>": 98,
+ "<0x60>": 99,
+ "<0x61>": 100,
+ "<0x62>": 101,
+ "<0x63>": 102,
+ "<0x64>": 103,
+ "<0x65>": 104,
+ "<0x66>": 105,
+ "<0x67>": 106,
+ "<0x68>": 107,
+ "<0x69>": 108,
+ "<0x6A>": 109,
+ "<0x6B>": 110,
+ "<0x6C>": 111,
+ "<0x6D>": 112,
+ "<0x6E>": 113,
+ "<0x6F>": 114,
+ "<0x70>": 115,
+ "<0x71>": 116,
+ "<0x72>": 117,
+ "<0x73>": 118,
+ "<0x74>": 119,
+ "<0x75>": 120,
+ "<0x76>": 121,
+ "<0x77>": 122,
+ "<0x78>": 123,
+ "<0x79>": 124,
+ "<0x7A>": 125,
+ "<0x7B>": 126,
+ "<0x7C>": 127,
+ "<0x7D>": 128,
+ "<0x7E>": 129,
+ "<0x7F>": 130,
+ "<0x80>": 131,
+ "<0x81>": 132,
+ "<0x82>": 133,
+ "<0x83>": 134,
+ "<0x84>": 135,
+ "<0x85>": 136,
+ "<0x86>": 137,
+ "<0x87>": 138,
+ "<0x88>": 139,
+ "<0x89>": 140,
+ "<0x8A>": 141,
+ "<0x8B>": 142,
+ "<0x8C>": 143,
+ "<0x8D>": 144,
+ "<0x8E>": 145,
+ "<0x8F>": 146,
+ "<0x90>": 147,
+ "<0x91>": 148,
+ "<0x92>": 149,
+ "<0x93>": 150,
+ "<0x94>": 151,
+ "<0x95>": 152,
+ "<0x96>": 153,
+ "<0x97>": 154,
+ "<0x98>": 155,
+ "<0x99>": 156,
+ "<0x9A>": 157,
+ "<0x9B>": 158,
+ "<0x9C>": 159,
+ "<0x9D>": 160,
+ "<0x9E>": 161,
+ "<0x9F>": 162,
+ "<0xA0>": 163,
+ "<0xA1>": 164,
+ "<0xA2>": 165,
+ "<0xA3>": 166,
+ "<0xA4>": 167,
+ "<0xA5>": 168,
+ "<0xA6>": 169,
+ "<0xA7>": 170,
+ "<0xA8>": 171,
+ "<0xA9>": 172,
+ "<0xAA>": 173,
+ "<0xAB>": 174,
+ "<0xAC>": 175,
+ "<0xAD>": 176,
+ "<0xAE>": 177,
+ "<0xAF>": 178,
+ "<0xB0>": 179,
+ "<0xB1>": 180,
+ "<0xB2>": 181,
+ "<0xB3>": 182,
+ "<0xB4>": 183,
+ "<0xB5>": 184,
+ "<0xB6>": 185,
+ "<0xB7>": 186,
+ "<0xB8>": 187,
+ "<0xB9>": 188,
+ "<0xBA>": 189,
+ "<0xBB>": 190,
+ "<0xBC>": 191,
+ "<0xBD>": 192,
+ "<0xBE>": 193,
+ "<0xBF>": 194,
+ "<0xC0>": 195,
+ "<0xC1>": 196,
+ "<0xC2>": 197,
+ "<0xC3>": 198,
+ "<0xC4>": 199,
+ "<0xC5>": 200,
+ "<0xC6>": 201,
+ "<0xC7>": 202,
+ "<0xC8>": 203,
+ "<0xC9>": 204,
+ "<0xCA>": 205,
+ "<0xCB>": 206,
+ "<0xCC>": 207,
+ "<0xCD>": 208,
+ "<0xCE>": 209,
+ "<0xCF>": 210,
+ "<0xD0>": 211,
+ "<0xD1>": 212,
+ "<0xD2>": 213,
+ "<0xD3>": 214,
+ "<0xD4>": 215,
+ "<0xD5>": 216,
+ "<0xD6>": 217,
+ "<0xD7>": 218,
+ "<0xD8>": 219,
+ "<0xD9>": 220,
+ "<0xDA>": 221,
+ "<0xDB>": 222,
+ "<0xDC>": 223,
+ "<0xDD>": 224,
+ "<0xDE>": 225,
+ "<0xDF>": 226,
+ "<0xE0>": 227,
+ "<0xE1>": 228,
+ "<0xE2>": 229,
+ "<0xE3>": 230,
+ "<0xE4>": 231,
+ "<0xE5>": 232,
+ "<0xE6>": 233,
+ "<0xE7>": 234,
+ "<0xE8>": 235,
+ "<0xE9>": 236,
+ "<0xEA>": 237,
+ "<0xEB>": 238,
+ "<0xEC>": 239,
+ "<0xED>": 240,
+ "<0xEE>": 241,
+ "<0xEF>": 242,
+ "<0xF0>": 243,
+ "<0xF1>": 244,
+ "<0xF2>": 245,
+ "<0xF3>": 246,
+ "<0xF4>": 247,
+ "<0xF5>": 248,
+ "<0xF6>": 249,
+ "<0xF7>": 250,
+ "<0xF8>": 251,
+ "<0xF9>": 252,
+ "<0xFA>": 253,
+ "<0xFB>": 254,
+ "<0xFC>": 255,
+ "<0xFD>": 256,
+ "<0xFE>": 257,
+ "<0xFF>": 258,
+ "▁▁": 259,
+ "▁t": 260,
+ "er": 261,
+ "in": 262,
+ "▁a": 263,
+ "en": 264,
+ "on": 265,
+ "▁th": 266,
+ "es": 267,
+ "▁▁▁▁": 268,
+ "▁s": 269,
+ "▁d": 270,
+ "at": 271,
+ "or": 272,
+ "an": 273,
+ "▁c": 274,
+ "is": 275,
+ "re": 276,
+ "it": 277,
+ "▁the": 278,
+ "ar": 279,
+ "le": 280,
+ "▁w": 281,
+ "▁p": 282,
+ "ou": 283,
+ "al": 284,
+ "▁f": 285,
+ "▁m": 286,
+ "ed": 287,
+ "▁o": 288,
+ "▁b": 289,
+ "om": 290,
+ "ion": 291,
+ "ing": 292,
+ "ic": 293,
+ "as": 294,
+ "el": 295,
+ "ent": 296,
+ "▁in": 297,
+ "▁h": 298,
+ "nd": 299,
+ "et": 300,
+ "▁l": 301,
+ "▁n": 302,
+ "st": 303,
+ "▁to": 304,
+ "ch": 305,
+ "▁I": 306,
+ "ro": 307,
+ "▁▁▁▁▁▁▁▁": 308,
+ "il": 309,
+ "▁of": 310,
+ "de": 311,
+ "ct": 312,
+ "▁(": 313,
+ "am": 314,
+ "▁C": 315,
+ "▁de": 316,
+ "▁S": 317,
+ "▁u": 318,
+ "▁A": 319,
+ "▁\\": 320,
+ "▁e": 321,
+ "▁and": 322,
+ "▁T": 323,
+ "ol": 324,
+ "▁v": 325,
+ "im": 326,
+ "ot": 327,
+ "ad": 328,
+ "ut": 329,
+ "▁g": 330,
+ "em": 331,
+ "ur": 332,
+ "id": 333,
+ "▁*": 334,
+ "ig": 335,
+ "ra": 336,
+ "▁re": 337,
+ "▁is": 338,
+ "qu": 339,
+ "ow": 340,
+ "▁M": 341,
+ "est": 342,
+ "▁y": 343,
+ "se": 344,
+ "ve": 345,
+ "ce": 346,
+ "ie": 347,
+ "un": 348,
+ "▁P": 349,
+ "▁B": 350,
+ "ag": 351,
+ "ul": 352,
+ "▁=": 353,
+ "he": 354,
+ "end": 355,
+ "ode": 356,
+ "ter": 357,
+ "ment": 358,
+ "os": 359,
+ "▁D": 360,
+ "if": 361,
+ "ation": 362,
+ "▁for": 363,
+ "▁r": 364,
+ "▁L": 365,
+ "▁you": 366,
+ "▁be": 367,
+ "ly": 368,
+ "ver": 369,
+ "ab": 370,
+ "te": 371,
+ "▁it": 372,
+ "▁on": 373,
+ "ri": 374,
+ "us": 375,
+ "▁\"": 376,
+ "▁wh": 377,
+ "▁con": 378,
+ "▁H": 379,
+ "▁st": 380,
+ "ir": 381,
+ "▁E": 382,
+ "▁F": 383,
+ "ck": 384,
+ "▁an": 385,
+ "th": 386,
+ "eg": 387,
+ "ay": 388,
+ "ith": 389,
+ "▁R": 390,
+ "ist": 391,
+ "and": 392,
+ "▁that": 393,
+ "▁al": 394,
+ "▁$": 395,
+ "▁#": 396,
+ "od": 397,
+ "um": 398,
+ "▁W": 399,
+ "ht": 400,
+ "code": 401,
+ "▁G": 402,
+ "ate": 403,
+ "ess": 404,
+ "▁N": 405,
+ "ere": 406,
+ "pp": 407,
+ "▁as": 408,
+ "▁se": 409,
+ "▁pro": 410,
+ "▁with": 411,
+ "pe": 412,
+ "▁k": 413,
+ "ers": 414,
+ "pt": 415,
+ ");": 416,
+ "lo": 417,
+ "▁▁▁▁▁": 418,
+ "▁com": 419,
+ "ame": 420,
+ "▁`": 421,
+ "▁Com": 422,
+ "ia": 423,
+ "ant": 424,
+ "▁la": 425,
+ "▁{": 426,
+ "▁en": 427,
+ "ction": 428,
+ "▁ex": 429,
+ "ld": 430,
+ "ub": 431,
+ "▁j": 432,
+ "la": 433,
+ "ue": 434,
+ "▁J": 435,
+ "ich": 436,
+ "▁do": 437,
+ "▁O": 438,
+ "▁qu": 439,
+ "iv": 440,
+ "ort": 441,
+ "art": 442,
+ "▁un": 443,
+ "▁##": 444,
+ "▁this": 445,
+ "ke": 446,
+ "▁ha": 447,
+ "▁-": 448,
+ "out": 449,
+ "▁The": 450,
+ "▁not": 451,
+ "▁ne": 452,
+ "ill": 453,
+ "▁le": 454,
+ "ci": 455,
+ "rom": 456,
+ "ine": 457,
+ "//": 458,
+ "op": 459,
+ "egin": 460,
+ "▁Comment": 461,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 462,
+ "begin": 463,
+ "ст": 464,
+ "ass": 465,
+ "iz": 466,
+ ").": 467,
+ "og": 468,
+ "▁п": 469,
+ "▁or": 470,
+ "▁was": 471,
+ "▁at": 472,
+ "our": 473,
+ "▁i": 474,
+ "ain": 475,
+ "▁K": 476,
+ "на": 477,
+ "▁V": 478,
+ "ge": 479,
+ "▁su": 480,
+ "ap": 481,
+ "age": 482,
+ "ould": 483,
+ "ne": 484,
+ "av": 485,
+ "xt": 486,
+ "ore": 487,
+ "ile": 488,
+ "--": 489,
+ "▁в": 490,
+ "▁by": 491,
+ "li": 492,
+ "ath": 493,
+ "ра": 494,
+ "ber": 495,
+ "ach": 496,
+ "all": 497,
+ "▁Th": 498,
+ "ult": 499,
+ "▁}": 500,
+ "▁U": 501,
+ "▁us": 502,
+ "▁z": 503,
+ "ust": 504,
+ "▁have": 505,
+ "lic": 506,
+ "ни": 507,
+ "▁can": 508,
+ "tr": 509,
+ "com": 510,
+ "),": 511,
+ "▁In": 512,
+ "ind": 513,
+ "ell": 514,
+ "▁from": 515,
+ "ов": 516,
+ "to": 517,
+ "▁[": 518,
+ "able": 519,
+ "ost": 520,
+ "▁ch": 521,
+ "ect": 522,
+ "ight": 523,
+ "int": 524,
+ "▁'": 525,
+ "▁are": 526,
+ "▁im": 527,
+ "▁sh": 528,
+ "▁<": 529,
+ "▁An": 530,
+ "▁с": 531,
+ "ata": 532,
+ "ire": 533,
+ "▁tr": 534,
+ "con": 535,
+ "ord": 536,
+ "ity": 537,
+ "ard": 538,
+ "▁▁▁▁▁▁": 539,
+ "▁he": 540,
+ "▁but": 541,
+ "oc": 542,
+ "=\"": 543,
+ "▁pr": 544,
+ "ure": 545,
+ "per": 546,
+ "ack": 547,
+ "ork": 548,
+ "ong": 549,
+ "ans": 550,
+ "ко": 551,
+ "ple": 552,
+ "▁des": 553,
+ "ok": 554,
+ "orm": 555,
+ "wer": 556,
+ "ak": 557,
+ "pr": 558,
+ "ase": 559,
+ "▁el": 560,
+ "ph": 561,
+ "ac": 562,
+ "▁und": 563,
+ "▁ar": 564,
+ "▁if": 565,
+ "ud": 566,
+ "ps": 567,
+ "ite": 568,
+ "ble": 569,
+ "но": 570,
+ "fer": 571,
+ "pl": 572,
+ "ive": 573,
+ "ang": 574,
+ "ens": 575,
+ "ро": 576,
+ "▁so": 577,
+ "so": 578,
+ "ast": 579,
+ "()": 580,
+ "swer": 581,
+ "ru": 582,
+ "ies": 583,
+ "▁:": 584,
+ "au": 585,
+ "ov": 586,
+ "ре": 587,
+ "го": 588,
+ "▁der": 589,
+ "▁my": 590,
+ "▁we": 591,
+ "▁me": 592,
+ "nt": 593,
+ "▁ad": 594,
+ "urn": 595,
+ "▁your": 596,
+ "://": 597,
+ "are": 598,
+ "▁all": 599,
+ "ff": 600,
+ "io": 601,
+ "estion": 602,
+ "ime": 603,
+ "▁er": 604,
+ "lass": 605,
+ "▁и": 606,
+ "▁which": 607,
+ "ome": 608,
+ "ont": 609,
+ "▁par": 610,
+ "▁ma": 611,
+ "▁Y": 612,
+ "\",": 613,
+ "▁о": 614,
+ "ft": 615,
+ "ial": 616,
+ "cc": 617,
+ "ound": 618,
+ "▁li": 619,
+ "▁res": 620,
+ "eth": 621,
+ "ject": 622,
+ "▁app": 623,
+ "▁St": 624,
+ "ice": 625,
+ "▁am": 626,
+ "act": 627,
+ "▁del": 628,
+ "gr": 629,
+ "ated": 630,
+ "ier": 631,
+ "▁▁▁▁▁▁▁▁▁▁▁▁": 632,
+ "▁ab": 633,
+ "▁et": 634,
+ "ally": 635,
+ "..": 636,
+ "port": 637,
+ "ik": 638,
+ "▁per": 639,
+ "▁cont": 640,
+ "ри": 641,
+ "ка": 642,
+ "ser": 643,
+ "ли": 644,
+ "ll": 645,
+ "iew": 646,
+ "ign": 647,
+ "_{": 648,
+ "put": 649,
+ "one": 650,
+ "unction": 651,
+ "▁di": 652,
+ "ary": 653,
+ "ition": 654,
+ "ma": 655,
+ "ен": 656,
+ "get": 657,
+ "▁lo": 658,
+ "▁val": 659,
+ "▁Q": 660,
+ "ran": 661,
+ "▁д": 662,
+ "ence": 663,
+ "▁work": 664,
+ "▁на": 665,
+ "ip": 666,
+ "item": 667,
+ "ype": 668,
+ "▁&": 669,
+ "▁his": 670,
+ "▁use": 671,
+ "der": 672,
+ "▁Answer": 673,
+ "▁will": 674,
+ "ize": 675,
+ "та": 676,
+ "low": 677,
+ "▁Ch": 678,
+ "▁get": 679,
+ "ide": 680,
+ "ous": 681,
+ "ink": 682,
+ "ption": 683,
+ "ла": 684,
+ "turn": 685,
+ "ung": 686,
+ "ec": 687,
+ "ug": 688,
+ "form": 689,
+ "res": 690,
+ "htt": 691,
+ "oug": 692,
+ "ль": 693,
+ "▁no": 694,
+ "cl": 695,
+ "▁ro": 696,
+ "▁one": 697,
+ "tt": 698,
+ "cri": 699,
+ "du": 700,
+ "▁up": 701,
+ "то": 702,
+ "(\"": 703,
+ "▁ob": 704,
+ "we": 705,
+ "ory": 706,
+ "▁est": 707,
+ "ery": 708,
+ "iel": 709,
+ "str": 710,
+ "ob": 711,
+ "▁que": 712,
+ "ian": 713,
+ "▁out": 714,
+ "▁pl": 715,
+ "▁new": 716,
+ "ки": 717,
+ "▁+": 718,
+ "ry": 719,
+ "oth": 720,
+ "ther": 721,
+ "▁var": 722,
+ "▁would": 723,
+ "▁ser": 724,
+ "tern": 725,
+ "text": 726,
+ "▁there": 727,
+ "ish": 728,
+ "ror": 729,
+ "те": 730,
+ "▁set": 731,
+ "▁@": 732,
+ "▁по": 733,
+ "▁te": 734,
+ "ex": 735,
+ "▁return": 736,
+ "ail": 737,
+ "▁any": 738,
+ "▁It": 739,
+ "▁function": 740,
+ "{\\": 741,
+ "',": 742,
+ "és": 743,
+ "ale": 744,
+ "ан": 745,
+ "▁when": 746,
+ "ib": 747,
+ "▁go": 748,
+ "ance": 749,
+ "▁had": 750,
+ "▁Qu": 751,
+ "▁comp": 752,
+ "ле": 753,
+ "▁з": 754,
+ "math": 755,
+ "▁has": 756,
+ "▁м": 757,
+ "▁pre": 758,
+ "ener": 759,
+ "▁part": 760,
+ "elf": 761,
+ "▁die": 762,
+ "▁like": 763,
+ "ray": 764,
+ "irst": 765,
+ "▁dis": 766,
+ "▁man": 767,
+ "rit": 768,
+ "▁then": 769,
+ "▁class": 770,
+ "pro": 771,
+ "▁po": 772,
+ "▁using": 773,
+ "eb": 774,
+ "▁code": 775,
+ "own": 776,
+ "▁some": 777,
+ "ces": 778,
+ "▁$\\": 779,
+ "ер": 780,
+ "lect": 781,
+ "▁au": 782,
+ "isch": 783,
+ "▁col": 784,
+ "▁–": 785,
+ "up": 786,
+ "ons": 787,
+ "▁add": 788,
+ "ild": 789,
+ "iss": 790,
+ "val": 791,
+ "ount": 792,
+ "les": 793,
+ "vent": 794,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁": 795,
+ "▁Z": 796,
+ "In": 797,
+ "row": 798,
+ "ear": 799,
+ "ations": 800,
+ "ah": 801,
+ "que": 802,
+ "ublic": 803,
+ "ank": 804,
+ "▁sp": 805,
+ "▁Wh": 806,
+ "----": 807,
+ "sk": 808,
+ "ew": 809,
+ "ags": 810,
+ "ти": 811,
+ "ann": 812,
+ "▁—": 813,
+ "ert": 814,
+ "ace": 815,
+ "sch": 816,
+ "▁need": 817,
+ "▁à": 818,
+ "ien": 819,
+ "ough": 820,
+ "не": 821,
+ "▁def": 822,
+ "ij": 823,
+ "ern": 824,
+ "▁what": 825,
+ "▁Ar": 826,
+ "wo": 827,
+ "ml": 828,
+ "": 829,
+ "▁Re": 830,
+ "▁es": 831,
+ "▁inst": 832,
+ "bo": 833,
+ "az": 834,
+ "▁###": 835,
+ "▁б": 836,
+ "erm": 837,
+ "▁Al": 838,
+ "led": 839,
+ "да": 840,
+ "ten": 841,
+ "set": 842,
+ "ло": 843,
+ "▁comm": 844,
+ "sh": 845,
+ "ва": 846,
+ "▁/": 847,
+ "▁data": 848,
+ "▁//": 849,
+ "](": 850,
+ "▁str": 851,
+ "ose": 852,
+ "▁Un": 853,
+ "ven": 854,
+ "St": 855,
+ "...": 856,
+ "▁С": 857,
+ "yst": 858,
+ "▁«": 859,
+ "ick": 860,
+ "ix": 861,
+ "par": 862,
+ "▁у": 863,
+ "▁want": 864,
+ "ng": 865,
+ "ote": 866,
+ "▁gr": 867,
+ "▁du": 868,
+ "▁.": 869,
+ "und": 870,
+ "▁only": 871,
+ "▁sa": 872,
+ "ely": 873,
+ "vers": 874,
+ "▁ent": 875,
+ "))": 876,
+ "('": 877,
+ "▁mod": 878,
+ "ava": 879,
+ "ton": 880,
+ "▁should": 881,
+ "ement": 882,
+ "▁form": 883,
+ "▁also": 884,
+ "▁sc": 885,
+ "ings": 886,
+ "▁You": 887,
+ "ón": 888,
+ "▁kn": 889,
+ "();": 890,
+ "▁|": 891,
+ "▁were": 892,
+ "ss": 893,
+ "▁Question": 894,
+ "ise": 895,
+ "▁they": 896,
+ "▁De": 897,
+ "ond": 898,
+ "▁sol": 899,
+ "▁fol": 900,
+ "▁more": 901,
+ "▁her": 902,
+ "▁_": 903,
+ "▁é": 904,
+ "atch": 905,
+ "fter": 906,
+ "▁cre": 907,
+ "lock": 908,
+ "tring": 909,
+ "▁This": 910,
+ "ze": 911,
+ "ado": 912,
+ "ull": 913,
+ "ger": 914,
+ "be": 915,
+ "▁other": 916,
+ "▁Tags": 917,
+ "ution": 918,
+ "ict": 919,
+ "▁how": 920,
+ "▁x": 921,
+ "▁Se": 922,
+ "▁che": 923,
+ "cript": 924,
+ "▁just": 925,
+ "▁pos": 926,
+ "ange": 927,
+ "ific": 928,
+ "ree": 929,
+ "}}": 930,
+ "▁time": 931,
+ "app": 932,
+ "ны": 933,
+ "▁file": 934,
+ "ark": 935,
+ "ical": 936,
+ "▁first": 937,
+ "▁int": 938,
+ "▁В": 939,
+ "▁He": 940,
+ "ta": 941,
+ "ument": 942,
+ "ors": 943,
+ "lement": 944,
+ "rac": 945,
+ "▁ag": 946,
+ "▁does": 947,
+ "yn": 948,
+ "read": 949,
+ "ual": 950,
+ "▁Le": 951,
+ "ys": 952,
+ "▁em": 953,
+ "▁num": 954,
+ "vel": 955,
+ "ди": 956,
+ "over": 957,
+ "▁dif": 958,
+ "ethod": 959,
+ "▁If": 960,
+ "▁spe": 961,
+ "ym": 962,
+ "▁them": 963,
+ "▁into": 964,
+ "▁▁▁▁▁▁▁▁▁▁": 965,
+ "▁les": 966,
+ "▁its": 967,
+ "ese": 968,
+ "ield": 969,
+ "▁public": 970,
+ "▁П": 971,
+ "▁den": 972,
+ "ystem": 973,
+ "of": 974,
+ "▁over": 975,
+ "->": 976,
+ "▁fil": 977,
+ "name": 978,
+ "inal": 979,
+ "▁il": 980,
+ "ample": 981,
+ "▁way": 982,
+ "ica": 983,
+ "во": 984,
+ "cess": 985,
+ "itt": 986,
+ "uch": 987,
+ "▁where": 988,
+ "ми": 989,
+ "org": 990,
+ "https": 991,
+ "▁vo": 992,
+ "ient": 993,
+ "ove": 994,
+ "▁value": 995,
+ "eng": 996,
+ "▁La": 997,
+ "^{": 998,
+ "ref": 999,
+ "ied": 1000,
+ "ER": 1001,
+ "▁stat": 1002,
+ "fig": 1003,
+ "me": 1004,
+ "▁von": 1005,
+ "▁inter": 1006,
+ "roid": 1007,
+ "ater": 1008,
+ "▁their": 1009,
+ "▁bet": 1010,
+ "▁ein": 1011,
+ "}\\": 1012,
+ "\">": 1013,
+ "▁sub": 1014,
+ "▁op": 1015,
+ "▁don": 1016,
+ "ty": 1017,
+ "▁try": 1018,
+ "▁Pro": 1019,
+ "▁tra": 1020,
+ "▁same": 1021,
+ "ep": 1022,
+ "▁two": 1023,
+ "▁name": 1024,
+ "old": 1025,
+ "let": 1026,
+ "▁sim": 1027,
+ "sp": 1028,
+ "▁av": 1029,
+ "bre": 1030,
+ "blem": 1031,
+ "ey": 1032,
+ "▁could": 1033,
+ "▁cor": 1034,
+ "▁acc": 1035,
+ "ays": 1036,
+ "cre": 1037,
+ "urr": 1038,
+ "si": 1039,
+ "▁const": 1040,
+ "ues": 1041,
+ "}$": 1042,
+ "View": 1043,
+ "▁act": 1044,
+ "▁bo": 1045,
+ "▁ко": 1046,
+ "▁som": 1047,
+ "▁about": 1048,
+ "land": 1049,
+ "mer": 1050,
+ "▁list": 1051,
+ "cal": 1052,
+ "▁import": 1053,
+ "col": 1054,
+ "▁na": 1055,
+ "na": 1056,
+ "::": 1057,
+ "▁who": 1058,
+ "▁error": 1059,
+ "▁X": 1060,
+ "ator": 1061,
+ "ext": 1062,
+ "▁been": 1063,
+ "ér": 1064,
+ "▁run": 1065,
+ "pos": 1066,
+ "▁cl": 1067,
+ "**": 1068,
+ "▁К": 1069,
+ "ular": 1070,
+ "ause": 1071,
+ "▁reg": 1072,
+ "▁know": 1073,
+ "▁see": 1074,
+ "▁him": 1075,
+ "ning": 1076,
+ "▁за": 1077,
+ "ates": 1078,
+ "fore": 1079,
+ "ions": 1080,
+ "▁hel": 1081,
+ "ute": 1082,
+ "▁rem": 1083,
+ "▁го": 1084,
+ "▁Mar": 1085,
+ "ру": 1086,
+ "vice": 1087,
+ "irect": 1088,
+ "ner": 1089,
+ "▁under": 1090,
+ "rib": 1091,
+ "hr": 1092,
+ "че": 1093,
+ "▁As": 1094,
+ "▁end": 1095,
+ "ember": 1096,
+ "▁а": 1097,
+ "▁att": 1098,
+ "ina": 1099,
+ "son": 1100,
+ "▁follow": 1101,
+ "▁Sch": 1102,
+ "pect": 1103,
+ "▁rel": 1104,
+ "▁So": 1105,
+ "▁look": 1106,
+ "abel": 1107,
+ "▁problem": 1108,
+ "▁van": 1109,
+ "strong": 1110,
+ "co": 1111,
+ "pon": 1112,
+ "ca": 1113,
+ "ada": 1114,
+ "\":": 1115,
+ "cond": 1116,
+ "amb": 1117,
+ "},": 1118,
+ "quest": 1119,
+ "▁aut": 1120,
+ "▁result": 1121,
+ "▁may": 1122,
+ "Re": 1123,
+ "http": 1124,
+ "):": 1125,
+ "▁And": 1126,
+ "red": 1127,
+ "▁How": 1128,
+ "po": 1129,
+ "ско": 1130,
+ "att": 1131,
+ "oup": 1132,
+ "ced": 1133,
+ "▁type": 1134,
+ "▁than": 1135,
+ "▁cons": 1136,
+ "uf": 1137,
+ "ци": 1138,
+ "▁question": 1139,
+ "raph": 1140,
+ "igh": 1141,
+ "▁М": 1142,
+ "▁htt": 1143,
+ "ins": 1144,
+ "den": 1145,
+ "▁da": 1146,
+ "▁ver": 1147,
+ "oh": 1148,
+ "▁=>": 1149,
+ "riv": 1150,
+ "ude": 1151,
+ "▁For": 1152,
+ "▁ra": 1153,
+ "frac": 1154,
+ "ма": 1155,
+ "▁after": 1156,
+ "}{": 1157,
+ "▁method": 1158,
+ "\")": 1159,
+ "amp": 1160,
+ "ash": 1161,
+ "▁rec": 1162,
+ "▁differ": 1163,
+ "ON": 1164,
+ "ax": 1165,
+ "ament": 1166,
+ "ource": 1167,
+ "Con": 1168,
+ "its": 1169,
+ "Name": 1170,
+ "man": 1171,
+ "▁bec": 1172,
+ "che": 1173,
+ "▁En": 1174,
+ "aj": 1175,
+ "▁gener": 1176,
+ "IN": 1177,
+ "▁id": 1178,
+ "ages": 1179,
+ "▁loc": 1180,
+ "fo": 1181,
+ "br": 1182,
+ "▁she": 1183,
+ "Pro": 1184,
+ "▁una": 1185,
+ "▁к": 1186,
+ "eta": 1187,
+ "log": 1188,
+ "olog": 1189,
+ "▁sur": 1190,
+ "arg": 1191,
+ "▁--": 1192,
+ "kt": 1193,
+ "(\\": 1194,
+ "min": 1195,
+ "▁line": 1196,
+ "▁vari": 1197,
+ "ся": 1198,
+ "ics": 1199,
+ "ня": 1200,
+ "very": 1201,
+ "add": 1202,
+ "▁object": 1203,
+ "Id": 1204,
+ "▁But": 1205,
+ "▁case": 1206,
+ "▁make": 1207,
+ "▁cal": 1208,
+ "▁pass": 1209,
+ "сь": 1210,
+ "ession": 1211,
+ "net": 1212,
+ ".\"": 1213,
+ "▁г": 1214,
+ "är": 1215,
+ "де": 1216,
+ "no": 1217,
+ "ating": 1218,
+ "ato": 1219,
+ "line": 1220,
+ "ви": 1221,
+ "▁Ex": 1222,
+ "▁ass": 1223,
+ "▁vers": 1224,
+ "ля": 1225,
+ "▁ed": 1226,
+ "umn": 1227,
+ "other": 1228,
+ "ста": 1229,
+ "ative": 1230,
+ "String": 1231,
+ "▁los": 1232,
+ "wn": 1233,
+ "▁answer": 1234,
+ "▁let": 1235,
+ "▁pe": 1236,
+ "ents": 1237,
+ "▁fe": 1238,
+ "ince": 1239,
+ "ni": 1240,
+ "ider": 1241,
+ "ows": 1242,
+ "▁test": 1243,
+ "▁here": 1244,
+ "roll": 1245,
+ "▁call": 1246,
+ "ruct": 1247,
+ "▁pol": 1248,
+ "ait": 1249,
+ "▁back": 1250,
+ "ho": 1251,
+ "Ex": 1252,
+ "ress": 1253,
+ "ST": 1254,
+ "ried": 1255,
+ "date": 1256,
+ "ет": 1257,
+ "▁did": 1258,
+ "ting": 1259,
+ "▁El": 1260,
+ "▁dem": 1261,
+ ")$": 1262,
+ "ова": 1263,
+ "urrent": 1264,
+ "lace": 1265,
+ "right": 1266,
+ "ren": 1267,
+ "по": 1268,
+ "▁each": 1269,
+ "cy": 1270,
+ "block": 1271,
+ "data": 1272,
+ "▁%": 1273,
+ "▁ac": 1274,
+ "▁==": 1275,
+ "ür": 1276,
+ "▁por": 1277,
+ "ask": 1278,
+ "arch": 1279,
+ "ames": 1280,
+ "▁Con": 1281,
+ "ча": 1282,
+ "▁off": 1283,
+ "▁find": 1284,
+ "cont": 1285,
+ "▁now": 1286,
+ "work": 1287,
+ "ational": 1288,
+ "dd": 1289,
+ "ción": 1290,
+ "▁А": 1291,
+ "ault": 1292,
+ "List": 1293,
+ "▁ext": 1294,
+ "urs": 1295,
+ "ake": 1296,
+ "ule": 1297,
+ "▁point": 1298,
+ "AT": 1299,
+ "aut": 1300,
+ "▁trans": 1301,
+ "▁co": 1302,
+ "▁read": 1303,
+ "▁used": 1304,
+ "ски": 1305,
+ "ari": 1306,
+ "LE": 1307,
+ "eter": 1308,
+ "oun": 1309,
+ "ever": 1310,
+ "self": 1311,
+ "ined": 1312,
+ "idth": 1313,
+ "ux": 1314,
+ "js": 1315,
+ "▁such": 1316,
+ "▁Is": 1317,
+ "ée": 1318,
+ "ful": 1319,
+ "▁dist": 1320,
+ "▁bu": 1321,
+ "itemize": 1322,
+ "Cont": 1323,
+ "je": 1324,
+ "си": 1325,
+ "▁prov": 1326,
+ "bb": 1327,
+ "ward": 1328,
+ "esent": 1329,
+ "erson": 1330,
+ "anks": 1331,
+ "wh": 1332,
+ "not": 1333,
+ "▁We": 1334,
+ "ka": 1335,
+ "rop": 1336,
+ "atur": 1337,
+ "als": 1338,
+ "▁bel": 1339,
+ "ör": 1340,
+ "fr": 1341,
+ "▁example": 1342,
+ "▁incl": 1343,
+ "amil": 1344,
+ "▁ра": 1345,
+ "▁“": 1346,
+ "▁string": 1347,
+ "▁think": 1348,
+ "Th": 1349,
+ "▁tem": 1350,
+ "ave": 1351,
+ "▁Fran": 1352,
+ "▁number": 1353,
+ "▁si": 1354,
+ "imes": 1355,
+ "tem": 1356,
+ "my": 1357,
+ "ler": 1358,
+ "load": 1359,
+ "==": 1360,
+ "▁hand": 1361,
+ "za": 1362,
+ "▁because": 1363,
+ "▁sch": 1364,
+ "vo": 1365,
+ "this": 1366,
+ "ID": 1367,
+ "ão": 1368,
+ "▁start": 1369,
+ "▁war": 1370,
+ "▁help": 1371,
+ "ts": 1372,
+ "▁char": 1373,
+ "▁ph": 1374,
+ "▁min": 1375,
+ "til": 1376,
+ "rite": 1377,
+ "--------": 1378,
+ "els": 1379,
+ "▁mit": 1380,
+ "edia": 1381,
+ "ку": 1382,
+ "▁Sh": 1383,
+ "any": 1384,
+ "];": 1385,
+ "▁Б": 1386,
+ "ique": 1387,
+ "da": 1388,
+ "ef": 1389,
+ "dex": 1390,
+ "▁produ": 1391,
+ "▁Н": 1392,
+ "gram": 1393,
+ "▁Or": 1394,
+ "▁gre": 1395,
+ "quote": 1396,
+ "leg": 1397,
+ "orn": 1398,
+ "▁ind": 1399,
+ "▁post": 1400,
+ "▁dep": 1401,
+ "],": 1402,
+ "vi": 1403,
+ "▁user": 1404,
+ "▁>": 1405,
+ "lick": 1406,
+ "▁very": 1407,
+ "ething": 1408,
+ "▁array": 1409,
+ "▁gu": 1410,
+ "▁dur": 1411,
+ "`.": 1412,
+ "ть": 1413,
+ "lication": 1414,
+ "сти": 1415,
+ "ek": 1416,
+ "ico": 1417,
+ "▁dat": 1418,
+ "ор": 1419,
+ "html": 1420,
+ "ione": 1421,
+ "▁different": 1422,
+ "▁check": 1423,
+ "▁fr": 1424,
+ "▁Er": 1425,
+ "▁text": 1426,
+ "ні": 1427,
+ "icht": 1428,
+ "stack": 1429,
+ "EN": 1430,
+ "rag": 1431,
+ "▁every": 1432,
+ "Ar": 1433,
+ "▁before": 1434,
+ "alse": 1435,
+ "▁fin": 1436,
+ "▁dé": 1437,
+ "▁these": 1438,
+ "▁det": 1439,
+ "Val": 1440,
+ "ception": 1441,
+ "▁android": 1442,
+ "blockquote": 1443,
+ "▁je": 1444,
+ "file": 1445,
+ "ats": 1446,
+ "▁до": 1447,
+ "essage": 1448,
+ "▁again": 1449,
+ "aw": 1450,
+ "Ch": 1451,
+ "ween": 1452,
+ "▁Д": 1453,
+ "for": 1454,
+ "cial": 1455,
+ "play": 1456,
+ "pre": 1457,
+ "ida": 1458,
+ "▁Par": 1459,
+ "ny": 1460,
+ "ract": 1461,
+ "▁supp": 1462,
+ "ased": 1463,
+ "lection": 1464,
+ "▁dans": 1465,
+ "air": 1466,
+ "rol": 1467,
+ "▁thr": 1468,
+ "Data": 1469,
+ "lich": 1470,
+ "▁про": 1471,
+ "▁long": 1472,
+ "▁second": 1473,
+ "ually": 1474,
+ "ines": 1475,
+ "▁found": 1476,
+ "ength": 1477,
+ "yp": 1478,
+ "ead": 1479,
+ "▁log": 1480,
+ "ui": 1481,
+ "new": 1482,
+ "▁Р": 1483,
+ "go": 1484,
+ "aus": 1485,
+ "ody": 1486,
+ "▁son": 1487,
+ "ме": 1488,
+ "ero": 1489,
+ "ved": 1490,
+ "sub": 1491,
+ "▁right": 1492,
+ "view": 1493,
+ "▁following": 1494,
+ "')": 1495,
+ "\");": 1496,
+ "▁said": 1497,
+ "же": 1498,
+ "чи": 1499,
+ "ту": 1500,
+ "ott": 1501,
+ "се": 1502,
+ "ars": 1503,
+ "$.": 1504,
+ "gg": 1505,
+ "▁br": 1506,
+ "ool": 1507,
+ "yle": 1508,
+ "use": 1509,
+ "▁show": 1510,
+ "lease": 1511,
+ "cia": 1512,
+ "▁direct": 1513,
+ "doc": 1514,
+ "ар": 1515,
+ "ms": 1516,
+ "▁giv": 1517,
+ "▁exp": 1518,
+ "ql": 1519,
+ "ду": 1520,
+ "ве": 1521,
+ "▁Be": 1522,
+ "Com": 1523,
+ "iter": 1524,
+ "RE": 1525,
+ "mp": 1526,
+ "men": 1527,
+ "▁Ro": 1528,
+ "MA": 1529,
+ "▁Col": 1530,
+ "ister": 1531,
+ "▁well": 1532,
+ "▁": 1533,
+ "ayout": 1534,
+ "ature": 1535,
+ "ivers": 1536,
+ "zy": 1537,
+ "▁не": 1538,
+ "▁met": 1539,
+ "une": 1540,
+ "yth": 1541,
+ "Type": 1542,
+ "▁element": 1543,
+ "▁link": 1544,
+ "mod": 1545,
+ "▁between": 1546,
+ "cept": 1547,
+ "quire": 1548,
+ "▁through": 1549,
+ "▁while": 1550,
+ "▁On": 1551,
+ "the": 1552,
+ "ía": 1553,
+ "▁something": 1554,
+ "vol": 1555,
+ "▁most": 1556,
+ "sc": 1557,
+ "uss": 1558,
+ "▁car": 1559,
+ "▁sm": 1560,
+ "▁ро": 1561,
+ "ano": 1562,
+ "left": 1563,
+ "va": 1564,
+ "▁true": 1565,
+ "($": 1566,
+ "ems": 1567,
+ "▁much": 1568,
+ "ás": 1569,
+ "▁New": 1570,
+ "▁proper": 1571,
+ "era": 1572,
+ "ited": 1573,
+ "▁doc": 1574,
+ "ices": 1575,
+ "The": 1576,
+ "▁?": 1577,
+ "сто": 1578,
+ "fl": 1579,
+ "▁spec": 1580,
+ "ender": 1581,
+ "way": 1582,
+ "▁self": 1583,
+ "▁even": 1584,
+ "ів": 1585,
+ "▁се": 1586,
+ "ния": 1587,
+ "▁Pr": 1588,
+ "▁ke": 1589,
+ "emb": 1590,
+ "▁table": 1591,
+ "▁equ": 1592,
+ "lient": 1593,
+ "td": 1594,
+ "part": 1595,
+ "▁print": 1596,
+ "▁une": 1597,
+ "ify": 1598,
+ "▁->": 1599,
+ "ene": 1600,
+ "▁mon": 1601,
+ "▁dec": 1602,
+ "▁still": 1603,
+ "▁об": 1604,
+ "▁Tr": 1605,
+ "▁ф": 1606,
+ "ife": 1607,
+ "ism": 1608,
+ "by": 1609,
+ "raw": 1610,
+ "ior": 1611,
+ "▁med": 1612,
+ "orld": 1613,
+ "▁comple": 1614,
+ "ww": 1615,
+ "▁art": 1616,
+ "ron": 1617,
+ "▁Г": 1618,
+ "▁My": 1619,
+ "▁als": 1620,
+ "rect": 1621,
+ "▁auf": 1622,
+ "▁down": 1623,
+ "ather": 1624,
+ "Col": 1625,
+ "Text": 1626,
+ "back": 1627,
+ "$,": 1628,
+ "▁year": 1629,
+ "мо": 1630,
+ "pi": 1631,
+ "▁Gr": 1632,
+ "ream": 1633,
+ "▁rep": 1634,
+ "bf": 1635,
+ "www": 1636,
+ "▁wur": 1637,
+ "▁org": 1638,
+ "inter": 1639,
+ "▁Die": 1640,
+ "▁being": 1641,
+ "\".": 1642,
+ "label": 1643,
+ "▁cent": 1644,
+ "java": 1645,
+ "bar": 1646,
+ "ante": 1647,
+ "ana": 1648,
+ "__": 1649,
+ "▁solution": 1650,
+ "▁О": 1651,
+ "▁fl": 1652,
+ "▁create": 1653,
+ "ici": 1654,
+ "ste": 1655,
+ "ython": 1656,
+ "unt": 1657,
+ "ason": 1658,
+ "ference": 1659,
+ "SE": 1660,
+ "▁non": 1661,
+ "ane": 1662,
+ "▁ins": 1663,
+ "ader": 1664,
+ "_{\\": 1665,
+ "Res": 1666,
+ "▁main": 1667,
+ "пи": 1668,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 1669,
+ "▁There": 1670,
+ "▁pour": 1671,
+ "RO": 1672,
+ "`,": 1673,
+ "lish": 1674,
+ "bject": 1675,
+ "ccess": 1676,
+ "▁orig": 1677,
+ "▁▁▁": 1678,
+ "ischen": 1679,
+ "ower": 1680,
+ "▁het": 1681,
+ "uc": 1682,
+ "▁else": 1683,
+ "».": 1684,
+ "▁от": 1685,
+ "equ": 1686,
+ "sible": 1687,
+ "test": 1688,
+ "stand": 1689,
+ "én": 1690,
+ "ets": 1691,
+ "GE": 1692,
+ "ident": 1693,
+ "▁е": 1694,
+ "▁при": 1695,
+ ".,": 1696,
+ "▁das": 1697,
+ "ock": 1698,
+ ",\"": 1699,
+ "▁vol": 1700,
+ "▁fo": 1701,
+ "▁para": 1702,
+ "▁Т": 1703,
+ "▁Car": 1704,
+ "ral": 1705,
+ "▁Sp": 1706,
+ "var": 1707,
+ "▁play": 1708,
+ "ouse": 1709,
+ "▁та": 1710,
+ "ically": 1711,
+ "▁contain": 1712,
+ "ponse": 1713,
+ "▁String": 1714,
+ "án": 1715,
+ "▁both": 1716,
+ "ken": 1717,
+ "AR": 1718,
+ "ере": 1719,
+ "▁Il": 1720,
+ "▁iss": 1721,
+ "▁open": 1722,
+ "▁)": 1723,
+ "▁What": 1724,
+ "fe": 1725,
+ "rivate": 1726,
+ "reg": 1727,
+ "▁without": 1728,
+ "▁zu": 1729,
+ "vis": 1730,
+ "flow": 1731,
+ "▁http": 1732,
+ "abase": 1733,
+ "▁word": 1734,
+ "▁change": 1735,
+ "▁works": 1736,
+ "▁ge": 1737,
+ "▁!": 1738,
+ "▁een": 1739,
+ "itle": 1740,
+ "▁event": 1741,
+ "word": 1742,
+ "ando": 1743,
+ "SB": 1744,
+ "rem": 1745,
+ "▁field": 1746,
+ "ving": 1747,
+ "Ser": 1748,
+ "▁our": 1749,
+ "▁qui": 1750,
+ "▁oper": 1751,
+ "▁ist": 1752,
+ "def": 1753,
+ "▁made": 1754,
+ "ние": 1755,
+ "px": 1756,
+ "▁men": 1757,
+ "rm": 1758,
+ "ais": 1759,
+ "cent": 1760,
+ "list": 1761,
+ "To": 1762,
+ "▁To": 1763,
+ "ja": 1764,
+ "vert": 1765,
+ "▁mar": 1766,
+ "value": 1767,
+ "▁„": 1768,
+ "\";": 1769,
+ "▁aus": 1770,
+ "▁Br": 1771,
+ "ole": 1772,
+ "▁mult": 1773,
+ "ought": 1774,
+ "▁mat": 1775,
+ "▁view": 1776,
+ "fil": 1777,
+ "▁со": 1778,
+ "га": 1779,
+ "▁void": 1780,
+ "▁good": 1781,
+ "бо": 1782,
+ "CT": 1783,
+ "▁many": 1784,
+ "ben": 1785,
+ "▁во": 1786,
+ "▁ка": 1787,
+ "▁system": 1788,
+ "ino": 1789,
+ "▁another": 1790,
+ "▁rest": 1791,
+ "user": 1792,
+ "ility": 1793,
+ "ai": 1794,
+ "▁might": 1795,
+ "ustom": 1796,
+ "▁order": 1797,
+ "▁Ver": 1798,
+ "SS": 1799,
+ "})": 1800,
+ "▁eff": 1801,
+ "до": 1802,
+ "ett": 1803,
+ "▁sign": 1804,
+ "му": 1805,
+ "IT": 1806,
+ "string": 1807,
+ "elle": 1808,
+ "▁sing": 1809,
+ "cul": 1810,
+ "▁trying": 1811,
+ "▁beg": 1812,
+ "▁page": 1813,
+ "хо": 1814,
+ "▁Can": 1815,
+ "▁Ser": 1816,
+ "++": 1817,
+ "▁must": 1818,
+ "▁values": 1819,
+ "▁key": 1820,
+ "ible": 1821,
+ "].": 1822,
+ "ird": 1823,
+ "▁program": 1824,
+ "roller": 1825,
+ "▁conne": 1826,
+ "▁say": 1827,
+ "▁param": 1828,
+ "ache": 1829,
+ "velop": 1830,
+ "▁select": 1831,
+ "▁famil": 1832,
+ "▁last": 1833,
+ "▁Thanks": 1834,
+ "▁pop": 1835,
+ "}.": 1836,
+ "eq": 1837,
+ "▁doesn": 1838,
+ "['": 1839,
+ "▁term": 1840,
+ "▁ré": 1841,
+ "▁document": 1842,
+ "па": 1843,
+ "лу": 1844,
+ "ateg": 1845,
+ ".)": 1846,
+ "ling": 1847,
+ "ional": 1848,
+ "ables": 1849,
+ "▁tak": 1850,
+ "utton": 1851,
+ "▁arg": 1852,
+ "type": 1853,
+ "▁sure": 1854,
+ "▁real": 1855,
+ "▁web": 1856,
+ "▁current": 1857,
+ "▁Pl": 1858,
+ "cho": 1859,
+ "ments": 1860,
+ "▁Joh": 1861,
+ "ots": 1862,
+ "▁exist": 1863,
+ "ну": 1864,
+ "▁für": 1865,
+ "▁из": 1866,
+ "do": 1867,
+ "ного": 1868,
+ "▁las": 1869,
+ "▁null": 1870,
+ "▁inform": 1871,
+ "▁Л": 1872,
+ "▁version": 1873,
+ "▁chang": 1874,
+ "ager": 1875,
+ "▁Comm": 1876,
+ "лі": 1877,
+ "ush": 1878,
+ "▁Ge": 1879,
+ "▁high": 1880,
+ "▁input": 1881,
+ "ogle": 1882,
+ "ros": 1883,
+ "box": 1884,
+ "gen": 1885,
+ "▁ste": 1886,
+ "▁local": 1887,
+ "Im": 1888,
+ "▁process": 1889,
+ "ternal": 1890,
+ "ized": 1891,
+ "ги": 1892,
+ "ét": 1893,
+ "▁Ind": 1894,
+ "▁och": 1895,
+ "lt": 1896,
+ "▁column": 1897,
+ "▁tried": 1898,
+ "▁command": 1899,
+ "▁best": 1900,
+ "aster": 1901,
+ "за": 1902,
+ "▁prim": 1903,
+ "▁model": 1904,
+ "▁і": 1905,
+ "▁those": 1906,
+ "ities": 1907,
+ "ère": 1908,
+ "▁ре": 1909,
+ "је": 1910,
+ "ши": 1911,
+ "ques": 1912,
+ "▁Am": 1913,
+ "▁own": 1914,
+ "lin": 1915,
+ "зи": 1916,
+ "Value": 1917,
+ "thing": 1918,
+ "▁,": 1919,
+ "▁Te": 1920,
+ "▁stud": 1921,
+ "▁um": 1922,
+ "▁server": 1923,
+ "ille": 1924,
+ "▁put": 1925,
+ "ativ": 1926,
+ "gy": 1927,
+ "ови": 1928,
+ "raf": 1929,
+ "ово": 1930,
+ "▁wurde": 1931,
+ "▁When": 1932,
+ "▁div": 1933,
+ "ants": 1934,
+ "▁ter": 1935,
+ "▁partic": 1936,
+ "▁т": 1937,
+ "▁Do": 1938,
+ "▁No": 1939,
+ "sert": 1940,
+ "ido": 1941,
+ "mathcal": 1942,
+ "ade": 1943,
+ "▁II": 1944,
+ "lear": 1945,
+ "ograph": 1946,
+ "ense": 1947,
+ "▁row": 1948,
+ "num": 1949,
+ "▁possible": 1950,
+ "▁since": 1951,
+ "▁Bo": 1952,
+ "ctions": 1953,
+ "▁Im": 1954,
+ "OR": 1955,
+ "ці": 1956,
+ "▁ide": 1957,
+ "map": 1958,
+ "▁correct": 1959,
+ "ves": 1960,
+ "php": 1961,
+ "▁output": 1962,
+ "▁Ph": 1963,
+ "AL": 1964,
+ "ared": 1965,
+ "\\\\": 1966,
+ "▁image": 1967,
+ "esch": 1968,
+ "жи": 1969,
+ "▁conf": 1970,
+ "por": 1971,
+ "query": 1972,
+ "ures": 1973,
+ "ium": 1974,
+ "ends": 1975,
+ "▁Ab": 1976,
+ "SBN": 1977,
+ "ід": 1978,
+ "ether": 1979,
+ "ptions": 1980,
+ "itu": 1981,
+ "lib": 1982,
+ "ns": 1983,
+ "ki": 1984,
+ "▁working": 1985,
+ "▁como": 1986,
+ "▁Then": 1987,
+ "ML": 1988,
+ "key": 1989,
+ "class": 1990,
+ "ople": 1991,
+ "ittle": 1992,
+ "▁match": 1993,
+ "ways": 1994,
+ "mathbb": 1995,
+ "▁require": 1996,
+ "alt": 1997,
+ "▁vis": 1998,
+ "▁bl": 1999,
+ "▁called": 2000,
+ "Item": 2001,
+ "ura": 2002,
+ "vec": 2003,
+ "eme": 2004,
+ "▁della": 2005,
+ "embre": 2006,
+ "urg": 2007,
+ "Se": 2008,
+ "▁request": 2009,
+ "ische": 2010,
+ "▁port": 2011,
+ "▁instead": 2012,
+ "=\\": 2013,
+ "▁У": 2014,
+ "hor": 2015,
+ "ente": 2016,
+ "ume": 2017,
+ "erd": 2018,
+ "са": 2019,
+ "▁why": 2020,
+ "rist": 2021,
+ "▁person": 2022,
+ "▁...": 2023,
+ "▁private": 2024,
+ "▁tot": 2025,
+ "pha": 2026,
+ "ift": 2027,
+ "ita": 2028,
+ "loc": 2029,
+ "▁old": 2030,
+ "он": 2031,
+ "▁nel": 2032,
+ "']": 2033,
+ "ti": 2034,
+ "iet": 2035,
+ "cite": 2036,
+ "plement": 2037,
+ "▁above": 2038,
+ "ks": 2039,
+ "ready": 2040,
+ "▁come": 2041,
+ "section": 2042,
+ "▁Pol": 2043,
+ "▁writ": 2044,
+ "▁https": 2045,
+ "▁$$": 2046,
+ "▁»": 2047,
+ "▁build": 2048,
+ "ito": 2049,
+ "▁consider": 2050,
+ "aft": 2051,
+ "App": 2052,
+ ",\\": 2053,
+ "indows": 2054,
+ "comm": 2055,
+ "▁;": 2056,
+ "ground": 2057,
+ "▁place": 2058,
+ "By": 2059,
+ "▁project": 2060,
+ "Object": 2061,
+ "▁repr": 2062,
+ "ences": 2063,
+ "indow": 2064,
+ "zt": 2065,
+ "▁files": 2066,
+ "cz": 2067,
+ "ivity": 2068,
+ "▁init": 2069,
+ "▁prob": 2070,
+ "▁sk": 2071,
+ "orth": 2072,
+ "iment": 2073,
+ "ouble": 2074,
+ "atal": 2075,
+ "irc": 2076,
+ "▁è": 2077,
+ "▁bre": 2078,
+ "ista": 2079,
+ "input": 2080,
+ "▁И": 2081,
+ "ной": 2082,
+ "sum": 2083,
+ "path": 2084,
+ "▁cour": 2085,
+ "▁too": 2086,
+ "▁Ad": 2087,
+ "▁Gu": 2088,
+ "▁false": 2089,
+ "▁fun": 2090,
+ "▁ст": 2091,
+ "ood": 2092,
+ "ès": 2093,
+ "▁enc": 2094,
+ "bol": 2095,
+ "rl": 2096,
+ "arget": 2097,
+ "order": 2098,
+ "▁mean": 2099,
+ "пе": 2100,
+ "igen": 2101,
+ "▁пре": 2102,
+ "width": 2103,
+ ";\r": 2104,
+ "itor": 2105,
+ "▁state": 2106,
+ "▁great": 2107,
+ "enn": 2108,
+ "bin": 2109,
+ "Er": 2110,
+ "Mod": 2111,
+ "oz": 2112,
+ "▁won": 2113,
+ "▁fact": 2114,
+ "▁java": 2115,
+ "▁Univers": 2116,
+ "▁cap": 2117,
+ "istor": 2118,
+ "}(": 2119,
+ "ku": 2120,
+ "ither": 2121,
+ "ales": 2122,
+ "▁ou": 2123,
+ "ross": 2124,
+ "▁take": 2125,
+ "rix": 2126,
+ "lob": 2127,
+ "▁eine": 2128,
+ "ases": 2129,
+ "▁access": 2130,
+ "ité": 2131,
+ "istr": 2132,
+ "ization": 2133,
+ "▁appro": 2134,
+ "ball": 2135,
+ "▁mak": 2136,
+ "}^": 2137,
+ "▁Cons": 2138,
+ "press": 2139,
+ "serv": 2140,
+ "().": 2141,
+ "af": 2142,
+ "▁ref": 2143,
+ ")\\": 2144,
+ "▁contin": 2145,
+ "su": 2146,
+ "iver": 2147,
+ "▁cond": 2148,
+ "▁expect": 2149,
+ "▁charact": 2150,
+ "bert": 2151,
+ "elt": 2152,
+ "ters": 2153,
+ "script": 2154,
+ "▁Ed": 2155,
+ "apt": 2156,
+ "');": 2157,
+ "print": 2158,
+ "▁size": 2159,
+ "▁sich": 2160,
+ "face": 2161,
+ "enden": 2162,
+ "▁Amer": 2163,
+ "ified": 2164,
+ "ów": 2165,
+ "▁Su": 2166,
+ "tes": 2167,
+ "med": 2168,
+ "▁Reg": 2169,
+ "sole": 2170,
+ "▁includ": 2171,
+ "ini": 2172,
+ "inci": 2173,
+ "▁pla": 2174,
+ "▁left": 2175,
+ "df": 2176,
+ "Par": 2177,
+ "▁All": 2178,
+ "▁occ": 2179,
+ "▁At": 2180,
+ "▁cr": 2181,
+ "Qu": 2182,
+ "▁given": 2183,
+ "▁System": 2184,
+ "ican": 2185,
+ "▁final": 2186,
+ "itions": 2187,
+ "▁бы": 2188,
+ "▁perform": 2189,
+ "AN": 2190,
+ "▁Me": 2191,
+ "uro": 2192,
+ "▁That": 2193,
+ "гра": 2194,
+ "▁По": 2195,
+ "▁ви": 2196,
+ "ably": 2197,
+ "▁present": 2198,
+ "duct": 2199,
+ "ric": 2200,
+ "▁Eng": 2201,
+ "try": 2202,
+ "▁lar": 2203,
+ "bl": 2204,
+ "idd": 2205,
+ "▁är": 2206,
+ "ora": 2207,
+ "LL": 2208,
+ "oss": 2209,
+ "▁ISBN": 2210,
+ "▁three": 2211,
+ "jo": 2212,
+ "ní": 2213,
+ "rc": 2214,
+ "▁far": 2215,
+ "▁Not": 2216,
+ "▁little": 2217,
+ "dis": 2218,
+ "ati": 2219,
+ "function": 2220,
+ "▁able": 2221,
+ "less": 2222,
+ "со": 2223,
+ "▁path": 2224,
+ "▁pres": 2225,
+ "lose": 2226,
+ "PI": 2227,
+ "▁issue": 2228,
+ "ackage": 2229,
+ "time": 2230,
+ "ige": 2231,
+ "ams": 2232,
+ "▁Cl": 2233,
+ "ails": 2234,
+ "alk": 2235,
+ "ii": 2236,
+ "ше": 2237,
+ "pen": 2238,
+ "QL": 2239,
+ "▁eas": 2240,
+ "RL": 2241,
+ "cel": 2242,
+ "▁sl": 2243,
+ "▁ask": 2244,
+ "▁nom": 2245,
+ "▁top": 2246,
+ "ides": 2247,
+ "index": 2248,
+ "ém": 2249,
+ "▁happ": 2250,
+ "ox": 2251,
+ "cd": 2252,
+ "▁better": 2253,
+ "▁load": 2254,
+ "ados": 2255,
+ "zen": 2256,
+ "▁ce": 2257,
+ "▁fa": 2258,
+ "▁John": 2259,
+ "IMA": 2260,
+ "▁Bar": 2261,
+ "overflow": 2262,
+ "▁де": 2263,
+ "ness": 2264,
+ "cer": 2265,
+ "▁Here": 2266,
+ "ret": 2267,
+ "▁sz": 2268,
+ "ambda": 2269,
+ "opy": 2270,
+ "url": 2271,
+ "py": 2272,
+ "rt": 2273,
+ "▁understand": 2274,
+ "ał": 2275,
+ "her": 2276,
+ "##": 2277,
+ "▁child": 2278,
+ "▁exec": 2279,
+ "▁application": 2280,
+ "▁struct": 2281,
+ "▁я": 2282,
+ "File": 2283,
+ "▁cert": 2284,
+ "ison": 2285,
+ "▁variable": 2286,
+ "DE": 2287,
+ "rs": 2288,
+ "▁really": 2289,
+ "Port": 2290,
+ "ba": 2291,
+ "▁Ber": 2292,
+ "▁inte": 2293,
+ "▁static": 2294,
+ "▁config": 2295,
+ "▁She": 2296,
+ "estions": 2297,
+ "▁plus": 2298,
+ "▁hab": 2299,
+ "ope": 2300,
+ "▁mus": 2301,
+ "▁count": 2302,
+ "ME": 2303,
+ "▁support": 2304,
+ "▁people": 2305,
+ "▁beh": 2306,
+ "▁already": 2307,
+ "Tr": 2308,
+ "▁done": 2309,
+ "dem": 2310,
+ "size": 2311,
+ "alpha": 2312,
+ "▁disc": 2313,
+ "])": 2314,
+ "▁Man": 2315,
+ "▁mil": 2316,
+ "▁stand": 2317,
+ "▁group": 2318,
+ "▁small": 2319,
+ "▁mag": 2320,
+ "сть": 2321,
+ "▁default": 2322,
+ "▁single": 2323,
+ "link": 2324,
+ "clude": 2325,
+ "▁ear": 2326,
+ "ilar": 2327,
+ "****": 2328,
+ "▁fix": 2329,
+ "ley": 2330,
+ "▁pas": 2331,
+ "ний": 2332,
+ "ission": 2333,
+ "▁implement": 2334,
+ "itch": 2335,
+ "▁года": 2336,
+ "▁always": 2337,
+ "▁Jah": 2338,
+ "pring": 2339,
+ "ção": 2340,
+ "plate": 2341,
+ "▁descri": 2342,
+ "▁head": 2343,
+ "init": 2344,
+ "ograf": 2345,
+ "▁query": 2346,
+ "ived": 2347,
+ "▁ing": 2348,
+ "pty": 2349,
+ "ha": 2350,
+ "▁mov": 2351,
+ "▁э": 2352,
+ "ette": 2353,
+ "ily": 2354,
+ "▁got": 2355,
+ "iled": 2356,
+ "icro": 2357,
+ "▁wr": 2358,
+ "ря": 2359,
+ "▁never": 2360,
+ "ores": 2361,
+ "▁bas": 2362,
+ "ios": 2363,
+ "lack": 2364,
+ "aint": 2365,
+ "vious": 2366,
+ "▁give": 2367,
+ "idad": 2368,
+ "En": 2369,
+ "ный": 2370,
+ "table": 2371,
+ "▁На": 2372,
+ "▁pat": 2373,
+ "тор": 2374,
+ "angu": 2375,
+ "loy": 2376,
+ "▁seg": 2377,
+ "array": 2378,
+ "▁Fl": 2379,
+ "▁index": 2380,
+ "▁sw": 2381,
+ "IMAGE": 2382,
+ "▁km": 2383,
+ "би": 2384,
+ "Class": 2385,
+ "ena": 2386,
+ "мен": 2387,
+ "comp": 2388,
+ "atus": 2389,
+ "rap": 2390,
+ "▁List": 2391,
+ "Error": 2392,
+ "▁typ": 2393,
+ "▁ма": 2394,
+ "cs": 2395,
+ "':": 2396,
+ "ji": 2397,
+ "▁However": 2398,
+ "▁те": 2399,
+ "▁below": 2400,
+ "▁App": 2401,
+ "ще": 2402,
+ "}_": 2403,
+ "bum": 2404,
+ "vir": 2405,
+ "ées": 2406,
+ "▁record": 2407,
+ "tain": 2408,
+ "lem": 2409,
+ "ital": 2410,
+ "▁imp": 2411,
+ "ego": 2412,
+ "▁od": 2413,
+ "▁rece": 2414,
+ "mit": 2415,
+ "ffic": 2416,
+ "stackoverflow": 2417,
+ "ieve": 2418,
+ "▁З": 2419,
+ "▁nov": 2420,
+ "це": 2421,
+ "▁Intern": 2422,
+ "bu": 2423,
+ "▁sugg": 2424,
+ "▁loop": 2425,
+ "ride": 2426,
+ "▁$(": 2427,
+ "▁super": 2428,
+ "rid": 2429,
+ "ных": 2430,
+ "▁Per": 2431,
+ "▁dom": 2432,
+ "='": 2433,
+ "utsch": 2434,
+ "len": 2435,
+ "▁write": 2436,
+ "▁inv": 2437,
+ "outh": 2438,
+ "▁Her": 2439,
+ "▁years": 2440,
+ "▁original": 2441,
+ "ega": 2442,
+ "▁Ste": 2443,
+ "▁seems": 2444,
+ "ég": 2445,
+ "▁next": 2446,
+ "eder": 2447,
+ "▁Ne": 2448,
+ "avas": 2449,
+ "ification": 2450,
+ "Exception": 2451,
+ "▁Der": 2452,
+ "▁ve": 2453,
+ "atic": 2454,
+ "hat": 2455,
+ "brary": 2456,
+ "return": 2457,
+ "urch": 2458,
+ "ision": 2459,
+ "mi": 2460,
+ "oint": 2461,
+ "▁day": 2462,
+ "iction": 2463,
+ "ál": 2464,
+ "▁és": 2465,
+ "▁though": 2466,
+ "action": 2467,
+ "ít": 2468,
+ "ungen": 2469,
+ "ours": 2470,
+ "▁script": 2471,
+ "▁information": 2472,
+ "▁multi": 2473,
+ "▁\\\\": 2474,
+ "ster": 2475,
+ "ке": 2476,
+ "AC": 2477,
+ "cies": 2478,
+ "▁display": 2479,
+ "oman": 2480,
+ "Time": 2481,
+ "ius": 2482,
+ "));": 2483,
+ "tre": 2484,
+ "▁lim": 2485,
+ "ately": 2486,
+ "éd": 2487,
+ "iste": 2488,
+ "▁са": 2489,
+ "post": 2490,
+ "uel": 2491,
+ "img": 2492,
+ "▁ч": 2493,
+ "ска": 2494,
+ "eld": 2495,
+ "pper": 2496,
+ "ula": 2497,
+ "▁general": 2498,
+ "Al": 2499,
+ "Form": 2500,
+ "▁upon": 2501,
+ "zo": 2502,
+ "amente": 2503,
+ "▁prom": 2504,
+ "▁ü": 2505,
+ "lex": 2506,
+ "▁turn": 2507,
+ "▁ме": 2508,
+ "ention": 2509,
+ "лен": 2510,
+ "▁af": 2511,
+ "icle": 2512,
+ "ств": 2513,
+ "▁Fil": 2514,
+ "▁Ф": 2515,
+ "avascript": 2516,
+ "Man": 2517,
+ "ara": 2518,
+ "ware": 2519,
+ "align": 2520,
+ "angle": 2521,
+ "▁Sc": 2522,
+ "unic": 2523,
+ "▁fran": 2524,
+ "Un": 2525,
+ "zi": 2526,
+ "met": 2527,
+ "Add": 2528,
+ "▁pub": 2529,
+ "ков": 2530,
+ "▁gen": 2531,
+ "▁pod": 2532,
+ "▁sum": 2533,
+ "▁having": 2534,
+ "▁avec": 2535,
+ "sl": 2536,
+ "▁fig": 2537,
+ "▁Res": 2538,
+ "Date": 2539,
+ "ules": 2540,
+ "with": 2541,
+ "ский": 2542,
+ "gu": 2543,
+ "ET": 2544,
+ "▁bro": 2545,
+ "rie": 2546,
+ "aps": 2547,
+ "ending": 2548,
+ "mail": 2549,
+ "ook": 2550,
+ "▁success": 2551,
+ "berg": 2552,
+ "▁deb": 2553,
+ "elta": 2554,
+ "()`": 2555,
+ "ential": 2556,
+ "frame": 2557,
+ "Key": 2558,
+ "inn": 2559,
+ "▁simple": 2560,
+ "ival": 2561,
+ "▁care": 2562,
+ "▁Web": 2563,
+ "\").": 2564,
+ ">": 2565,
+ "▁database": 2566,
+ "▁Now": 2567,
+ "Ind": 2568,
+ "▁мо": 2569,
+ "cht": 2570,
+ "ban": 2571,
+ "ram": 2572,
+ "equation": 2573,
+ "ski": 2574,
+ "ief": 2575,
+ "lim": 2576,
+ "Get": 2577,
+ "▁tre": 2578,
+ "aten": 2579,
+ "bed": 2580,
+ "▁Je": 2581,
+ "▁results": 2582,
+ "лю": 2583,
+ "тель": 2584,
+ "db": 2585,
+ "▁bit": 2586,
+ "body": 2587,
+ "Array": 2588,
+ "mu": 2589,
+ "pression": 2590,
+ "▁ста": 2591,
+ "ony": 2592,
+ "iff": 2593,
+ "▁bar": 2594,
+ "▁Arch": 2595,
+ "bers": 2596,
+ "){": 2597,
+ "▁Mon": 2598,
+ "▁doing": 2599,
+ "▁prof": 2600,
+ "▁install": 2601,
+ "▁position": 2602,
+ "ema": 2603,
+ "▁});": 2604,
+ "Path": 2605,
+ "ali": 2606,
+ "▁&&": 2607,
+ "lev": 2608,
+ "▁cannot": 2609,
+ "▁May": 2610,
+ "inst": 2611,
+ "-\\": 2612,
+ "▁coun": 2613,
+ "▁ang": 2614,
+ "▁appear": 2615,
+ "cor": 2616,
+ "ció": 2617,
+ "ided": 2618,
+ "questions": 2619,
+ "atter": 2620,
+ "▁Pa": 2621,
+ "select": 2622,
+ "▁princi": 2623,
+ "Event": 2624,
+ "▁side": 2625,
+ "▁mem": 2626,
+ "▁Jan": 2627,
+ "ario": 2628,
+ "▁within": 2629,
+ "▁Val": 2630,
+ "odes": 2631,
+ "iddle": 2632,
+ "uration": 2633,
+ "bra": 2634,
+ "▁date": 2635,
+ "[]": 2636,
+ "▁entre": 2637,
+ "ili": 2638,
+ "Portail": 2639,
+ "docs": 2640,
+ "ской": 2641,
+ "Element": 2642,
+ "▁message": 2643,
+ "▁nach": 2644,
+ "▁during": 2645,
+ "▁gra": 2646,
+ "etwork": 2647,
+ "▁By": 2648,
+ "▁tell": 2649,
+ "ete": 2650,
+ "~\\": 2651,
+ "▁bis": 2652,
+ "▁pu": 2653,
+ "▁red": 2654,
+ "▁thing": 2655,
+ "▁sort": 2656,
+ "xim": 2657,
+ "ires": 2658,
+ "User": 2659,
+ "iod": 2660,
+ "▁Est": 2661,
+ "osed": 2662,
+ "oute": 2663,
+ "▁Les": 2664,
+ "▁sent": 2665,
+ "ribute": 2666,
+ "utes": 2667,
+ "istory": 2668,
+ "▁service": 2669,
+ "';": 2670,
+ "field": 2671,
+ "▁IN": 2672,
+ "ension": 2673,
+ "rel": 2674,
+ "▁going": 2675,
+ "web": 2676,
+ "Context": 2677,
+ "▁later": 2678,
+ "uk": 2679,
+ "layout": 2680,
+ "ona": 2681,
+ "át": 2682,
+ "----------------": 2683,
+ "▁exact": 2684,
+ "andom": 2685,
+ "▁sie": 2686,
+ "II": 2687,
+ "▁They": 2688,
+ "mente": 2689,
+ "ibli": 2690,
+ "▁fine": 2691,
+ "UT": 2692,
+ "▁develop": 2693,
+ "▁Ein": 2694,
+ "soft": 2695,
+ "off": 2696,
+ "Set": 2697,
+ "▁az": 2698,
+ "eters": 2699,
+ "ilder": 2700,
+ "ples": 2701,
+ "▁specific": 2702,
+ "▁om": 2703,
+ "error": 2704,
+ "ently": 2705,
+ "▁film": 2706,
+ "uck": 2707,
+ "ains": 2708,
+ "ación": 2709,
+ "ges": 2710,
+ "жа": 2711,
+ "▁things": 2712,
+ "Sh": 2713,
+ "▁thought": 2714,
+ "▁added": 2715,
+ "dep": 2716,
+ "ского": 2717,
+ "▁Li": 2718,
+ "ils": 2719,
+ "ync": 2720,
+ "▁то": 2721,
+ "ries": 2722,
+ "▁cu": 2723,
+ "chen": 2724,
+ "ION": 2725,
+ "▁Des": 2726,
+ "ultado": 2727,
+ "irt": 2728,
+ "▁based": 2729,
+ "▁mo": 2730,
+ "▁dest": 2731,
+ "png": 2732,
+ "reen": 2733,
+ "▁running": 2734,
+ "amma": 2735,
+ "oud": 2736,
+ "▁refer": 2737,
+ "ious": 2738,
+ "▁Jul": 2739,
+ "▁search": 2740,
+ "ald": 2741,
+ "ede": 2742,
+ "▁wrong": 2743,
+ "An": 2744,
+ "▁until": 2745,
+ "site": 2746,
+ "ayer": 2747,
+ "▁once": 2748,
+ "arr": 2749,
+ "▁against": 2750,
+ "====": 2751,
+ "▁source": 2752,
+ "arn": 2753,
+ "api": 2754,
+ "▁represent": 2755,
+ "▁aff": 2756,
+ "▁sein": 2757,
+ "▁allow": 2758,
+ "ormal": 2759,
+ "ended": 2760,
+ "▁control": 2761,
+ "mathbf": 2762,
+ "come": 2763,
+ "cur": 2764,
+ "endo": 2765,
+ "wa": 2766,
+ "▁update": 2767,
+ "▁inside": 2768,
+ "▁reason": 2769,
+ "omen": 2770,
+ "▁вы": 2771,
+ "De": 2772,
+ "▁је": 2773,
+ "sw": 2774,
+ "▁sever": 2775,
+ "Of": 2776,
+ "▁instance": 2777,
+ "▁mer": 2778,
+ "▁effect": 2779,
+ "color": 2780,
+ "ugust": 2781,
+ "ilt": 2782,
+ "des": 2783,
+ "itz": 2784,
+ "ulation": 2785,
+ "nie": 2786,
+ "▁World": 2787,
+ "▁similar": 2788,
+ "ymbol": 2789,
+ "hing": 2790,
+ "▁mark": 2791,
+ "State": 2792,
+ "▁content": 2793,
+ "▁means": 2794,
+ "amed": 2795,
+ "▁End": 2796,
+ "ND": 2797,
+ "count": 2798,
+ "▁Inst": 2799,
+ "perty": 2800,
+ "ctor": 2801,
+ "▁{\\": 2802,
+ "▁Let": 2803,
+ "▁!=": 2804,
+ "▁getting": 2805,
+ "uth": 2806,
+ "umber": 2807,
+ "▁Consultado": 2808,
+ "schaft": 2809,
+ "lete": 2810,
+ "▁Will": 2811,
+ "▁Em": 2812,
+ "head": 2813,
+ "▁leg": 2814,
+ "ном": 2815,
+ "Or": 2816,
+ "arm": 2817,
+ "pond": 2818,
+ "▁Christ": 2819,
+ "▁around": 2820,
+ "▁clear": 2821,
+ "▁href": 2822,
+ "▁See": 2823,
+ "').": 2824,
+ "▁created": 2825,
+ "▁button": 2826,
+ "ining": 2827,
+ "▁click": 2828,
+ "iam": 2829,
+ "plit": 2830,
+ "For": 2831,
+ "▁polit": 2832,
+ "▁seem": 2833,
+ "▁life": 2834,
+ "нов": 2835,
+ "▁intern": 2836,
+ "щи": 2837,
+ "sel": 2838,
+ "soci": 2839,
+ "▁stor": 2840,
+ "cle": 2841,
+ "earch": 2842,
+ "android": 2843,
+ "}^{": 2844,
+ "▁either": 2845,
+ "▁few": 2846,
+ "▁initial": 2847,
+ "length": 2848,
+ "ria": 2849,
+ "sql": 2850,
+ "wik": 2851,
+ "▁ét": 2852,
+ "uer": 2853,
+ "▁valid": 2854,
+ "And": 2855,
+ "include": 2856,
+ "ury": 2857,
+ "▁sus": 2858,
+ "ired": 2859,
+ "▁After": 2860,
+ "▁due": 2861,
+ "▁bei": 2862,
+ "ources": 2863,
+ "▁Nov": 2864,
+ "Act": 2865,
+ "▁Cont": 2866,
+ "▁break": 2867,
+ "ested": 2868,
+ "▁actually": 2869,
+ "else": 2870,
+ "tml": 2871,
+ "rer": 2872,
+ "ones": 2873,
+ "▁design": 2874,
+ "▁property": 2875,
+ "phi": 2876,
+ "ality": 2877,
+ "och": 2878,
+ "ists": 2879,
+ "▁·": 2880,
+ "udio": 2881,
+ "AB": 2882,
+ "ala": 2883,
+ "iones": 2884,
+ "фи": 2885,
+ "find": 2886,
+ "As": 2887,
+ "▁custom": 2888,
+ "▁ann": 2889,
+ "ES": 2890,
+ "OT": 2891,
+ "lambda": 2892,
+ "▁ident": 2893,
+ "▁organ": 2894,
+ "▁Cent": 2895,
+ "▁Char": 2896,
+ "▁os": 2897,
+ "▁hard": 2898,
+ "ров": 2899,
+ "▁/>": 2900,
+ "ko": 2901,
+ "▁exper": 2902,
+ "▁separ": 2903,
+ "yl": 2904,
+ "ourn": 2905,
+ "▁dev": 2906,
+ "▁auch": 2907,
+ "▁block": 2908,
+ "book": 2909,
+ "▁map": 2910,
+ "illa": 2911,
+ "▁comput": 2912,
+ "▁space": 2913,
+ "result": 2914,
+ ")}": 2915,
+ "▁echo": 2916,
+ "config": 2917,
+ "hi": 2918,
+ "▁large": 2919,
+ "▁width": 2920,
+ "▁Go": 2921,
+ "mat": 2922,
+ "▁diff": 2923,
+ "▁kind": 2924,
+ "ances": 2925,
+ "ynam": 2926,
+ "▁color": 2927,
+ "Int": 2928,
+ "sol": 2929,
+ "▁pi": 2930,
+ "▁character": 2931,
+ "oment": 2932,
+ "▁response": 2933,
+ "igma": 2934,
+ "wards": 2935,
+ "arrow": 2936,
+ "су": 2937,
+ "ties": 2938,
+ "▁über": 2939,
+ "Image": 2940,
+ "yd": 2941,
+ "▁пере": 2942,
+ "▁node": 2943,
+ "▁item": 2944,
+ "achine": 2945,
+ "ima": 2946,
+ "▁va": 2947,
+ "▁approach": 2948,
+ "▁wer": 2949,
+ "▁че": 2950,
+ "On": 2951,
+ "ollow": 2952,
+ "она": 2953,
+ "cted": 2954,
+ "ured": 2955,
+ "Controller": 2956,
+ "lied": 2957,
+ "▁jo": 2958,
+ "▁dal": 2959,
+ "unk": 2960,
+ "▁î": 2961,
+ "start": 2962,
+ "ola": 2963,
+ "▁compon": 2964,
+ "IC": 2965,
+ "bit": 2966,
+ "▁base": 2967,
+ "пу": 2968,
+ "▁idea": 2969,
+ "▁dire": 2970,
+ "▁rad": 2971,
+ "group": 2972,
+ "▁With": 2973,
+ "server": 2974,
+ "side": 2975,
+ "sing": 2976,
+ "▁dies": 2977,
+ "▁near": 2978,
+ "▁voor": 2979,
+ "▁argument": 2980,
+ "▁},": 2981,
+ "▁land": 2982,
+ "▁names": 2983,
+ "▁option": 2984,
+ "ithub": 2985,
+ "pped": 2986,
+ "aug": 2987,
+ "▁links": 2988,
+ "▁full": 2989,
+ "▁situ": 2990,
+ "▁console": 2991,
+ "▁etc": 2992,
+ "aux": 2993,
+ "▁Cor": 2994,
+ "icrosoft": 2995,
+ "▁came": 2996,
+ "local": 2997,
+ "▁known": 2998,
+ "▁multiple": 2999,
+ "anguage": 3000,
+ "▁total": 3001,
+ "ology": 3002,
+ "ät": 3003,
+ "▁Х": 3004,
+ "▁fre": 3005,
+ "▁ten": 3006,
+ "ideo": 3007,
+ "▁bes": 3008,
+ "true": 3009,
+ "Query": 3010,
+ "omm": 3011,
+ "▁Art": 3012,
+ "▁keep": 3013,
+ "▁University": 3014,
+ "reate": 3015,
+ "pport": 3016,
+ "▁python": 3017,
+ "tra": 3018,
+ "ector": 3019,
+ "рі": 3020,
+ "oph": 3021,
+ "▁conc": 3022,
+ "▁four": 3023,
+ "viron": 3024,
+ "▁via": 3025,
+ "?\"": 3026,
+ "image": 3027,
+ "oll": 3028,
+ "ные": 3029,
+ "▁context": 3030,
+ "▁sem": 3031,
+ "._": 3032,
+ "▁eng": 3033,
+ "mar": 3034,
+ "AD": 3035,
+ "▁mor": 3036,
+ "▁Cal": 3037,
+ "▁cell": 3038,
+ "imal": 3039,
+ "ATE": 3040,
+ "▁inf": 3041,
+ "ön": 3042,
+ "uffer": 3043,
+ "sq": 3044,
+ "....": 3045,
+ "▁zur": 3046,
+ "With": 3047,
+ "ран": 3048,
+ "chn": 3049,
+ "▁door": 3050,
+ "content": 3051,
+ "▁miss": 3052,
+ "▁simp": 3053,
+ "ár": 3054,
+ "ira": 3055,
+ "▁hat": 3056,
+ "Test": 3057,
+ "▁certain": 3058,
+ "NS": 3059,
+ "▁cho": 3060,
+ "▁adv": 3061,
+ "where": 3062,
+ "▁looking": 3063,
+ "▁times": 3064,
+ "них": 3065,
+ "uto": 3066,
+ "▁É": 3067,
+ "can": 3068,
+ "host": 3069,
+ "▁(*": 3070,
+ "loat": 3071,
+ "▁nicht": 3072,
+ "Field": 3073,
+ "burg": 3074,
+ "const": 3075,
+ "ades": 3076,
+ "▁Mus": 3077,
+ "▁nothing": 3078,
+ "▁incre": 3079,
+ "▁Min": 3080,
+ "▁power": 3081,
+ "▁American": 3082,
+ "ln": 3083,
+ "valid": 3084,
+ "ungs": 3085,
+ "▁National": 3086,
+ "▁San": 3087,
+ "▁York": 3088,
+ "Request": 3089,
+ "char": 3090,
+ "▁Ze": 3091,
+ "button": 3092,
+ "▁alg": 3093,
+ "SON": 3094,
+ "▁ap": 3095,
+ "uff": 3096,
+ "ability": 3097,
+ "ем": 3098,
+ "▁anything": 3099,
+ "ela": 3100,
+ "())": 3101,
+ "ба": 3102,
+ "ampion": 3103,
+ "▁pot": 3104,
+ "▁fut": 3105,
+ "ailable": 3106,
+ "▁prop": 3107,
+ "\"]": 3108,
+ "▁less": 3109,
+ "lag": 3110,
+ "▁August": 3111,
+ "It": 3112,
+ "▁please": 3113,
+ "▁style": 3114,
+ "▁Also": 3115,
+ "bt": 3116,
+ "▁probably": 3117,
+ "▁One": 3118,
+ "▁poss": 3119,
+ "UI": 3120,
+ "uit": 3121,
+ "▁West": 3122,
+ "hn": 3123,
+ "+\\": 3124,
+ "Button": 3125,
+ "json": 3126,
+ "err": 3127,
+ "rame": 3128,
+ "dom": 3129,
+ "ilon": 3130,
+ "alf": 3131,
+ "▁client": 3132,
+ "▁continu": 3133,
+ "xml": 3134,
+ "pec": 3135,
+ "ador": 3136,
+ "ls": 3137,
+ "▁however": 3138,
+ "▁Any": 3139,
+ "änd": 3140,
+ "mathrm": 3141,
+ "▁url": 3142,
+ "▁book": 3143,
+ "▁gl": 3144,
+ "ives": 3145,
+ "gi": 3146,
+ "▁tro": 3147,
+ "▁US": 3148,
+ "point": 3149,
+ "open": 3150,
+ "▁cur": 3151,
+ "▁era": 3152,
+ "▁particular": 3153,
+ "▁HT": 3154,
+ "oot": 3155,
+ "ello": 3156,
+ "lobal": 3157,
+ "▁action": 3158,
+ "▁Int": 3159,
+ "▁include": 3160,
+ "▁elements": 3161,
+ "ная": 3162,
+ "ards": 3163,
+ "▁Bl": 3164,
+ "▁hum": 3165,
+ "from": 3166,
+ "change": 3167,
+ "▁functions": 3168,
+ "hen": 3169,
+ "Service": 3170,
+ "▁height": 3171,
+ "▁Land": 3172,
+ "ias": 3173,
+ "gs": 3174,
+ "ión": 3175,
+ "лов": 3176,
+ "node": 3177,
+ ".”": 3178,
+ "hand": 3179,
+ "▁бу": 3180,
+ "▁amb": 3181,
+ "▁Lu": 3182,
+ "▁throw": 3183,
+ "▁mot": 3184,
+ "▁Act": 3185,
+ "▁world": 3186,
+ "_\\": 3187,
+ "base": 3188,
+ "▁Co": 3189,
+ "▁arch": 3190,
+ "▁####": 3191,
+ "ged": 3192,
+ "pril": 3193,
+ "older": 3194,
+ "Model": 3195,
+ "▁several": 3196,
+ "lie": 3197,
+ "check": 3198,
+ "]{": 3199,
+ "cons": 3200,
+ "▁Tra": 3201,
+ "heck": 3202,
+ "▁least": 3203,
+ "down": 3204,
+ "ebru": 3205,
+ "Def": 3206,
+ "param": 3207,
+ "ischer": 3208,
+ "▁cas": 3209,
+ "CH": 3210,
+ "▁address": 3211,
+ "▁раз": 3212,
+ "ufen": 3213,
+ "urope": 3214,
+ "ей": 3215,
+ "▁bound": 3216,
+ "CO": 3217,
+ "▁Ang": 3218,
+ "▁Ma": 3219,
+ "Index": 3220,
+ "core": 3221,
+ "ouch": 3222,
+ "atabase": 3223,
+ "ribution": 3224,
+ "document": 3225,
+ "Le": 3226,
+ "}_{": 3227,
+ "vern": 3228,
+ "▁statement": 3229,
+ "▁Brit": 3230,
+ "ono": 3231,
+ "psilon": 3232,
+ "▁level": 3233,
+ "▁product": 3234,
+ "IS": 3235,
+ "▁course": 3236,
+ "▁Mr": 3237,
+ ">\r": 3238,
+ "▁background": 3239,
+ "▁ret": 3240,
+ "ering": 3241,
+ "most": 3242,
+ "сько": 3243,
+ "▁thread": 3244,
+ "itional": 3245,
+ "ites": 3246,
+ "Pl": 3247,
+ "▁dos": 3248,
+ "ga": 3249,
+ "day": 3250,
+ "▁Gener": 3251,
+ "▁tw": 3252,
+ "Ad": 3253,
+ "\"><": 3254,
+ "▁($": 3255,
+ "▁moment": 3256,
+ "title": 3257,
+ "create": 3258,
+ "version": 3259,
+ "Manager": 3260,
+ "▁fur": 3261,
+ "pping": 3262,
+ "ijn": 3263,
+ "ос": 3264,
+ "▁rather": 3265,
+ "ptember": 3266,
+ "OS": 3267,
+ "▁site": 3268,
+ "▁caus": 3269,
+ "ani": 3270,
+ "▁home": 3271,
+ "мі": 3272,
+ "▁short": 3273,
+ "pa": 3274,
+ "▁lead": 3275,
+ "ished": 3276,
+ "cing": 3277,
+ "ording": 3278,
+ "▁prote": 3279,
+ "сле": 3280,
+ "LECT": 3281,
+ "▁didn": 3282,
+ "position": 3283,
+ "\",\"": 3284,
+ "(),": 3285,
+ "trans": 3286,
+ "▁lot": 3287,
+ "▁од": 3288,
+ "AS": 3289,
+ "▁sat": 3290,
+ "▁points": 3291,
+ "github": 3292,
+ "style": 3293,
+ "▁году": 3294,
+ "▁Dis": 3295,
+ "ponent": 3296,
+ "omet": 3297,
+ "zer": 3298,
+ "ULL": 3299,
+ "▁pa": 3300,
+ "AP": 3301,
+ "aces": 3302,
+ "▁United": 3303,
+ "ama": 3304,
+ "ety": 3305,
+ "Color": 3306,
+ "▁enough": 3307,
+ "US": 3308,
+ "▁length": 3309,
+ "());": 3310,
+ "^{\\": 3311,
+ "fty": 3312,
+ "Box": 3313,
+ "apter": 3314,
+ "▁complet": 3315,
+ "ник": 3316,
+ "max": 3317,
+ "object": 3318,
+ "({": 3319,
+ "imgur": 3320,
+ "itive": 3321,
+ "unch": 3322,
+ "▁Sub": 3323,
+ "ende": 3324,
+ "гу": 3325,
+ "ategory": 3326,
+ "ты": 3327,
+ "iano": 3328,
+ "▁upd": 3329,
+ "▁Aust": 3330,
+ "}{\\": 3331,
+ "top": 3332,
+ "las": 3333,
+ "pis": 3334,
+ "iness": 3335,
+ "▁{\r": 3336,
+ "▁Е": 3337,
+ "Gr": 3338,
+ "▁AS": 3339,
+ "▁ве": 3340,
+ "thers": 3341,
+ "▁defined": 3342,
+ "azione": 3343,
+ "▁offic": 3344,
+ "▁autom": 3345,
+ "ün": 3346,
+ "▁brow": 3347,
+ "▁serv": 3348,
+ "▁remove": 3349,
+ "iro": 3350,
+ "▁Bibli": 3351,
+ "ED": 3352,
+ "▁whole": 3353,
+ "▁ш": 3354,
+ "▁Java": 3355,
+ "▁zum": 3356,
+ "ua": 3357,
+ "pm": 3358,
+ "dev": 3359,
+ "кра": 3360,
+ "olds": 3361,
+ "▁War": 3362,
+ "än": 3363,
+ "pass": 3364,
+ "uz": 3365,
+ "[\"": 3366,
+ "▁tri": 3367,
+ "ised": 3368,
+ "ха": 3369,
+ "▁memory": 3370,
+ "▁Port": 3371,
+ "oper": 3372,
+ "Up": 3373,
+ "▁Thank": 3374,
+ "▁Mich": 3375,
+ "ych": 3376,
+ "board": 3377,
+ "бу": 3378,
+ "Inst": 3379,
+ "▁begin": 3380,
+ "ination": 3381,
+ "▁Mod": 3382,
+ "_,": 3383,
+ "▁Den": 3384,
+ "option": 3385,
+ "▁construct": 3386,
+ "▁Just": 3387,
+ "Map": 3388,
+ "run": 3389,
+ "▁respect": 3390,
+ "ham": 3391,
+ "ман": 3392,
+ "imedia": 3393,
+ "▁apply": 3394,
+ "cription": 3395,
+ "main": 3396,
+ "▁Ка": 3397,
+ "oid": 3398,
+ "Code": 3399,
+ "};": 3400,
+ "Info": 3401,
+ "▁format": 3402,
+ "Log": 3403,
+ "▁су": 3404,
+ "▁lat": 3405,
+ "utor": 3406,
+ "▁reference": 3407,
+ "▁calcul": 3408,
+ "onn": 3409,
+ "Lo": 3410,
+ "infty": 3411,
+ "▁along": 3412,
+ "▁č": 3413,
+ "▁task": 3414,
+ "▁ev": 3415,
+ "theta": 3416,
+ "ras": 3417,
+ "jor": 3418,
+ "▁бо": 3419,
+ "▁princip": 3420,
+ "My": 3421,
+ "▁einer": 3422,
+ "▁Es": 3423,
+ "omb": 3424,
+ "quad": 3425,
+ "^{-": 3426,
+ "ump": 3427,
+ "▁till": 3428,
+ "ді": 3429,
+ "▁looks": 3430,
+ "▁ok": 3431,
+ "ца": 3432,
+ "nu": 3433,
+ "Fil": 3434,
+ "▁sont": 3435,
+ "▁Med": 3436,
+ "ague": 3437,
+ "▁cost": 3438,
+ "▁Sim": 3439,
+ "▁comment": 3440,
+ "▁(\\": 3441,
+ "egen": 3442,
+ "▁parameter": 3443,
+ "▁France": 3444,
+ "rep": 3445,
+ "▁TH": 3446,
+ "▁yet": 3447,
+ "▁away": 3448,
+ "▁circ": 3449,
+ "▁API": 3450,
+ "emp": 3451,
+ "ві": 3452,
+ "Layout": 3453,
+ "▁lines": 3454,
+ "▁Part": 3455,
+ "empt": 3456,
+ "▁Bi": 3457,
+ "▁mind": 3458,
+ "ky": 3459,
+ "ging": 3460,
+ "▁report": 3461,
+ "▁Add": 3462,
+ "род": 3463,
+ "▁range": 3464,
+ "cias": 3465,
+ "lip": 3466,
+ "▁Kar": 3467,
+ "▁Commons": 3468,
+ "gerufen": 3469,
+ "aff": 3470,
+ "sec": 3471,
+ "▁html": 3472,
+ "lig": 3473,
+ "▁window": 3474,
+ "inition": 3475,
+ "cis": 3476,
+ "▁ut": 3477,
+ "eln": 3478,
+ "▁aux": 3479,
+ "▁neg": 3480,
+ "Hand": 3481,
+ "▁);": 3482,
+ "▁anal": 3483,
+ "▁fri": 3484,
+ "▁си": 3485,
+ "etch": 3486,
+ "md": 3487,
+ "page": 3488,
+ "▁library": 3489,
+ "▁:=": 3490,
+ "ROM": 3491,
+ "You": 3492,
+ "space": 3493,
+ "▁durch": 3494,
+ "▁host": 3495,
+ "aven": 3496,
+ "▁File": 3497,
+ "alle": 3498,
+ "тив": 3499,
+ "▁pap": 3500,
+ "ство": 3501,
+ "mark": 3502,
+ "▁mais": 3503,
+ "erman": 3504,
+ "Size": 3505,
+ "ек": 3506,
+ "▁Ма": 3507,
+ "▁isn": 3508,
+ "▁copy": 3509,
+ "sten": 3510,
+ "river": 3511,
+ "▁went": 3512,
+ "▁javascript": 3513,
+ "▁sam": 3514,
+ "▁frame": 3515,
+ "▁vi": 3516,
+ "▁previous": 3517,
+ "rodu": 3518,
+ "▁methods": 3519,
+ "▁necess": 3520,
+ "NA": 3521,
+ "cket": 3522,
+ "▁opt": 3523,
+ "Loc": 3524,
+ "how": 3525,
+ "▁în": 3526,
+ "ship": 3527,
+ "▁itself": 3528,
+ "▁Please": 3529,
+ "iene": 3530,
+ "вер": 3531,
+ "▁<<": 3532,
+ "▁mill": 3533,
+ "▁trad": 3534,
+ "pace": 3535,
+ "▁Har": 3536,
+ "iten": 3537,
+ "wise": 3538,
+ "write": 3539,
+ "ции": 3540,
+ "ры": 3541,
+ "Line": 3542,
+ "olo": 3543,
+ "▁accept": 3544,
+ "height": 3545,
+ "▁elect": 3546,
+ "ella": 3547,
+ "▁på": 3548,
+ "Select": 3549,
+ "▁ли": 3550,
+ "▁\\<": 3551,
+ "((": 3552,
+ "▁ID": 3553,
+ "ops": 3554,
+ "ван": 3555,
+ "ió": 3556,
+ "TP": 3557,
+ "»,": 3558,
+ "nection": 3559,
+ "parent": 3560,
+ "▁Mag": 3561,
+ "Table": 3562,
+ "Over": 3563,
+ "▁network": 3564,
+ "спо": 3565,
+ "▁assign": 3566,
+ "igger": 3567,
+ "irm": 3568,
+ ")`": 3569,
+ "ottom": 3570,
+ "beta": 3571,
+ "▁dell": 3572,
+ "▁body": 3573,
+ "▁да": 3574,
+ "▁Your": 3575,
+ "▁fue": 3576,
+ "▁package": 3577,
+ "▁light": 3578,
+ "▁**": 3579,
+ "MP": 3580,
+ "▁cou": 3581,
+ "yes": 3582,
+ ":\\": 3583,
+ "▁Ч": 3584,
+ "▁mention": 3585,
+ "ensch": 3586,
+ "▁deg": 3587,
+ "▁convert": 3588,
+ "▁Dav": 3589,
+ "adt": 3590,
+ "Result": 3591,
+ "though": 3592,
+ "▁bus": 3593,
+ "xy": 3594,
+ "▁seen": 3595,
+ "All": 3596,
+ "public": 3597,
+ "ively": 3598,
+ "▁Rec": 3599,
+ "▁His": 3600,
+ "sim": 3601,
+ "▁för": 3602,
+ "▁histor": 3603,
+ "▁sett": 3604,
+ "rat": 3605,
+ "abled": 3606,
+ "▁»,": 3607,
+ "google": 3608,
+ "Web": 3609,
+ "él": 3610,
+ "▁title": 3611,
+ "▁Janu": 3612,
+ "ја": 3613,
+ "▁took": 3614,
+ "iden": 3615,
+ "sz": 3616,
+ "▁Get": 3617,
+ "▁objects": 3618,
+ "▁common": 3619,
+ "▁changes": 3620,
+ "▁Lond": 3621,
+ "▁extern": 3622,
+ "▁ju": 3623,
+ "Is": 3624,
+ "▁available": 3625,
+ "tri": 3626,
+ "▁más": 3627,
+ "osa": 3628,
+ "Be": 3629,
+ "▁Data": 3630,
+ "ural": 3631,
+ "▁hom": 3632,
+ "▁account": 3633,
+ "oo": 3634,
+ "▁perm": 3635,
+ "respond": 3636,
+ "yt": 3637,
+ "▁send": 3638,
+ "▁returns": 3639,
+ "ivid": 3640,
+ "▁expla": 3641,
+ "ín": 3642,
+ "▁nor": 3643,
+ "If": 3644,
+ "▁From": 3645,
+ "▁target": 3646,
+ "fect": 3647,
+ "ент": 3648,
+ "▁uit": 3649,
+ "▁Jo": 3650,
+ "▁variables": 3651,
+ "▁series": 3652,
+ "▁func": 3653,
+ "▁himself": 3654,
+ "▁ча": 3655,
+ "anti": 3656,
+ "▁ach": 3657,
+ "ialog": 3658,
+ "▁std": 3659,
+ "ae": 3660,
+ "▁foot": 3661,
+ "▁unter": 3662,
+ "gress": 3663,
+ "Not": 3664,
+ "rad": 3665,
+ "fér": 3666,
+ "▁util": 3667,
+ "orem": 3668,
+ "▁sou": 3669,
+ "opt": 3670,
+ "▁og": 3671,
+ "▁uma": 3672,
+ "itar": 3673,
+ "▁Ok": 3674,
+ "ück": 3675,
+ "sqrt": 3676,
+ "▁ant": 3677,
+ "▁werden": 3678,
+ "år": 3679,
+ "});": 3680,
+ "▁Paris": 3681,
+ "▁exception": 3682,
+ "▁determ": 3683,
+ "▁Vol": 3684,
+ "▁Sam": 3685,
+ "▁ess": 3686,
+ "lies": 3687,
+ "ioni": 3688,
+ "oding": 3689,
+ "idget": 3690,
+ "▁pri": 3691,
+ "▁whether": 3692,
+ "▁под": 3693,
+ "▁numbers": 3694,
+ "▁~": 3695,
+ "event": 3696,
+ "▁shows": 3697,
+ "atures": 3698,
+ "▁house": 3699,
+ "▁face": 3700,
+ "▁się": 3701,
+ "vironment": 3702,
+ "van": 3703,
+ "▁including": 3704,
+ "▁<-": 3705,
+ "times": 3706,
+ "now": 3707,
+ "▁pur": 3708,
+ "ifier": 3709,
+ "▁emp": 3710,
+ "▁cla": 3711,
+ "mon": 3712,
+ "▁Das": 3713,
+ "ady": 3714,
+ "▁від": 3715,
+ "▁ц": 3716,
+ "abor": 3717,
+ "OST": 3718,
+ "▁band": 3719,
+ "▁ú": 3720,
+ "▁exactly": 3721,
+ "iert": 3722,
+ "avig": 3723,
+ "▁redu": 3724,
+ "▁SE": 3725,
+ "lished": 3726,
+ "Bu": 3727,
+ "Message": 3728,
+ "cell": 3729,
+ "fully": 3730,
+ "▁sv": 3731,
+ "▁makes": 3732,
+ "pol": 3733,
+ "▁required": 3734,
+ "ferrer": 3735,
+ "▁pers": 3736,
+ "▁mi": 3737,
+ "FI": 3738,
+ "▁Paul": 3739,
+ "▁UI": 3740,
+ "▁Bel": 3741,
+ "inc": 3742,
+ "▁contains": 3743,
+ "Out": 3744,
+ "asure": 3745,
+ "pu": 3746,
+ "oto": 3747,
+ "▁game": 3748,
+ "zn": 3749,
+ "▁Why": 3750,
+ "orith": 3751,
+ "big": 3752,
+ "кий": 3753,
+ "sigma": 3754,
+ "▁quite": 3755,
+ "▁jed": 3756,
+ "rec": 3757,
+ "▁SQL": 3758,
+ "бе": 3759,
+ "▁Mart": 3760,
+ "ya": 3761,
+ "▁school": 3762,
+ "▁simply": 3763,
+ "▁vor": 3764,
+ "▁double": 3765,
+ "рав": 3766,
+ "▁Str": 3767,
+ "iem": 3768,
+ "▁album": 3769,
+ "▁resol": 3770,
+ "▁dei": 3771,
+ "▁Wik": 3772,
+ "▁aw": 3773,
+ "umb": 3774,
+ "ols": 3775,
+ "▁*/": 3776,
+ "▁ze": 3777,
+ "▁anim": 3778,
+ "/>": 3779,
+ "ris": 3780,
+ "resh": 3781,
+ "No": 3782,
+ "iques": 3783,
+ "current": 3784,
+ "▁period": 3785,
+ "▁April": 3786,
+ "▁store": 3787,
+ "','": 3788,
+ "▁Set": 3789,
+ "={": 3790,
+ "ached": 3791,
+ "▁Mal": 3792,
+ "▁Pal": 3793,
+ "antes": 3794,
+ "aterial": 3795,
+ "▁worked": 3796,
+ "leq": 3797,
+ "oreferrer": 3798,
+ "▁happen": 3799,
+ "▁box": 3800,
+ "ney": 3801,
+ "▁close": 3802,
+ "▁gran": 3803,
+ "▁lie": 3804,
+ "▁ir": 3805,
+ "▁expected": 3806,
+ "▁для": 3807,
+ "click": 3808,
+ "și": 3809,
+ "▁parte": 3810,
+ "ogn": 3811,
+ "▁Form": 3812,
+ "▁memb": 3813,
+ "▁plan": 3814,
+ "▁team": 3815,
+ "][": 3816,
+ "▁commun": 3817,
+ "orry": 3818,
+ "ency": 3819,
+ "gl": 3820,
+ "inary": 3821,
+ "cdot": 3822,
+ "^\\": 3823,
+ "▁First": 3824,
+ "ander": 3825,
+ "▁Dec": 3826,
+ "request": 3827,
+ "ства": 3828,
+ "▁structure": 3829,
+ "▁||": 3830,
+ "▁Comp": 3831,
+ "actory": 3832,
+ "▁Mil": 3833,
+ "▁Some": 3834,
+ "Stream": 3835,
+ "▁assum": 3836,
+ "uen": 3837,
+ "▁words": 3838,
+ "▁September": 3839,
+ "▁Ко": 3840,
+ "▁days": 3841,
+ "ories": 3842,
+ "став": 3843,
+ "sm": 3844,
+ "vin": 3845,
+ "partial": 3846,
+ "▁parent": 3847,
+ "oj": 3848,
+ "нии": 3849,
+ "!\"": 3850,
+ "ugin": 3851,
+ "▁Windows": 3852,
+ "Ed": 3853,
+ ":}": 3854,
+ "▁q": 3855,
+ "▁ben": 3856,
+ "iana": 3857,
+ "▁label": 3858,
+ "state": 3859,
+ "uted": 3860,
+ "▁()": 3861,
+ "▁сво": 3862,
+ "▁edit": 3863,
+ "uring": 3864,
+ "▁NS": 3865,
+ "▁Jahr": 3866,
+ "▁provide": 3867,
+ "He": 3868,
+ "▁Yes": 3869,
+ "anel": 3870,
+ "ename": 3871,
+ "▁Don": 3872,
+ "isk": 3873,
+ "gra": 3874,
+ "elij": 3875,
+ "▁root": 3876,
+ "*/": 3877,
+ "▁Fre": 3878,
+ "▁Mor": 3879,
+ "used": 3880,
+ "range": 3881,
+ "▁tamb": 3882,
+ "▁module": 3883,
+ "▁directory": 3884,
+ "ounds": 3885,
+ "Activity": 3886,
+ "▁mu": 3887,
+ "info": 3888,
+ "▁free": 3889,
+ "orge": 3890,
+ "tab": 3891,
+ ")=": 3892,
+ "lang": 3893,
+ "▁ос": 3894,
+ "▁FROM": 3895,
+ "▁enter": 3896,
+ "▁became": 3897,
+ "idae": 3898,
+ "хи": 3899,
+ "▁States": 3900,
+ "verse": 3901,
+ "▁expl": 3902,
+ "ynt": 3903,
+ "UN": 3904,
+ "ee": 3905,
+ "endent": 3906,
+ "▁making": 3907,
+ "▁\"$": 3908,
+ "uni": 3909,
+ "quence": 3910,
+ "▁lui": 3911,
+ "HT": 3912,
+ "▁uses": 3913,
+ "zie": 3914,
+ "nia": 3915,
+ "Content": 3916,
+ "▁Count": 3917,
+ "▁standard": 3918,
+ "ENT": 3919,
+ "▁кон": 3920,
+ "fort": 3921,
+ "adas": 3922,
+ "зу": 3923,
+ "System": 3924,
+ "▁Sw": 3925,
+ "▁ever": 3926,
+ "LO": 3927,
+ "▁correspond": 3928,
+ "▁Po": 3929,
+ "argin": 3930,
+ "кт": 3931,
+ "ій": 3932,
+ "▁remain": 3933,
+ "cio": 3934,
+ "▁actual": 3935,
+ "сту": 3936,
+ "▁sind": 3937,
+ "▁Pe": 3938,
+ "▁changed": 3939,
+ "▁Note": 3940,
+ "skie": 3941,
+ "▁family": 3942,
+ "ità": 3943,
+ "cos": 3944,
+ "txt": 3945,
+ "ker": 3946,
+ "ceed": 3947,
+ "▁arr": 3948,
+ "▁cam": 3949,
+ "izer": 3950,
+ "▁Dan": 3951,
+ "hel": 3952,
+ "icult": 3953,
+ "HP": 3954,
+ "iler": 3955,
+ "▁Sal": 3956,
+ "▁connection": 3957,
+ "usion": 3958,
+ "kn": 3959,
+ "RI": 3960,
+ "▁vom": 3961,
+ "Listener": 3962,
+ "▁ö": 3963,
+ "▁dim": 3964,
+ "▁press": 3965,
+ "▁esc": 3966,
+ "▁Try": 3967,
+ "atalog": 3968,
+ "▁thanks": 3969,
+ "DO": 3970,
+ "▁written": 3971,
+ "dir": 3972,
+ "rew": 3973,
+ "▁fire": 3974,
+ "▁Nach": 3975,
+ "▁á": 3976,
+ "enc": 3977,
+ "▁origin": 3978,
+ "▁November": 3979,
+ "▁};": 3980,
+ "Count": 3981,
+ "▁За": 3982,
+ "▁graph": 3983,
+ "▁mis": 3984,
+ "▁External": 3985,
+ "▁▁▁▁▁▁▁▁▁": 3986,
+ "▁options": 3987,
+ "▁URL": 3988,
+ "▁php": 3989,
+ "▁integr": 3990,
+ "Config": 3991,
+ "▁Text": 3992,
+ "inner": 3993,
+ "▁crit": 3994,
+ ",”": 3995,
+ "▁tog": 3996,
+ "$$": 3997,
+ "nof": 3998,
+ "▁ses": 3999,
+ "ühr": 4000,
+ "▁Since": 4001,
+ "Des": 4002,
+ "ube": 4003,
+ "▁section": 4004,
+ "▁gi": 4005,
+ "ford": 4006,
+ "▁Ass": 4007,
+ "ainer": 4008,
+ "ttp": 4009,
+ "▁behav": 4010,
+ "ports": 4011,
+ "draw": 4012,
+ "This": 4013,
+ "ranch": 4014,
+ "inding": 4015,
+ "▁estab": 4016,
+ "▁obtain": 4017,
+ "rich": 4018,
+ "licit": 4019,
+ "ев": 4020,
+ "▁qual": 4021,
+ "▁za": 4022,
+ "▁har": 4023,
+ "▁fac": 4024,
+ "aar": 4025,
+ "jet": 4026,
+ "icles": 4027,
+ "▁Aus": 4028,
+ "▁hor": 4029,
+ "▁remov": 4030,
+ "▁wie": 4031,
+ "Client": 4032,
+ "▁natur": 4033,
+ "hip": 4034,
+ "Sub": 4035,
+ "▁random": 4036,
+ "DF": 4037,
+ "▁area": 4038,
+ "tag": 4039,
+ "Pr": 4040,
+ "▁Ital": 4041,
+ "▁roku": 4042,
+ "nofollow": 4043,
+ "*}": 4044,
+ "▁others": 4045,
+ "▁limit": 4046,
+ "▁sil": 4047,
+ "▁sav": 4048,
+ "▁often": 4049,
+ "▁render": 4050,
+ "DB": 4051,
+ "▁Mc": 4052,
+ "▁zijn": 4053,
+ "жен": 4054,
+ "▁tag": 4055,
+ "ming": 4056,
+ "lichen": 4057,
+ "pack": 4058,
+ "▁Ag": 4059,
+ "▁sense": 4060,
+ "pg": 4061,
+ "Method": 4062,
+ "aged": 4063,
+ "ág": 4064,
+ "ła": 4065,
+ "▁interest": 4066,
+ "▁associ": 4067,
+ "volution": 4068,
+ "▁empty": 4069,
+ "iche": 4070,
+ "▁gro": 4071,
+ "▁types": 4072,
+ "▁Sie": 4073,
+ "Inter": 4074,
+ "▁noreferrer": 4075,
+ "▁gives": 4076,
+ "hal": 4077,
+ "▁save": 4078,
+ "▁font": 4079,
+ "ruction": 4080,
+ "Script": 4081,
+ "▁alla": 4082,
+ "▁says": 4083,
+ "▁fu": 4084,
+ "ape": 4085,
+ "▁language": 4086,
+ "iger": 4087,
+ "▁King": 4088,
+ "bor": 4089,
+ "uv": 4090,
+ "▁shall": 4091,
+ "▁Europe": 4092,
+ "▁einem": 4093,
+ "▁water": 4094,
+ "▁govern": 4095,
+ "anz": 4096,
+ "ators": 4097,
+ "▁month": 4098,
+ "ye": 4099,
+ "▁important": 4100,
+ "atz": 4101,
+ "first": 4102,
+ "▁Trans": 4103,
+ "▁Mad": 4104,
+ "▁bra": 4105,
+ "ika": 4106,
+ "▁Saint": 4107,
+ "oria": 4108,
+ "kre": 4109,
+ "ements": 4110,
+ "▁Ben": 4111,
+ "lav": 4112,
+ "▁admin": 4113,
+ "▁Hen": 4114,
+ "ril": 4115,
+ "▁Sm": 4116,
+ "cat": 4117,
+ "▁Refer": 4118,
+ "▁Ш": 4119,
+ "▁pract": 4120,
+ "▁Pat": 4121,
+ "▁Gre": 4122,
+ "▁young": 4123,
+ "▁Inter": 4124,
+ "oma": 4125,
+ "teger": 4126,
+ "ibility": 4127,
+ "▁parameters": 4128,
+ "▁everything": 4129,
+ "dat": 4130,
+ "urop": 4131,
+ "olean": 4132,
+ "▁returned": 4133,
+ "▁Class": 4134,
+ "acy": 4135,
+ "####": 4136,
+ "▁př": 4137,
+ "▁folder": 4138,
+ "▁kon": 4139,
+ "▁guess": 4140,
+ "gt": 4141,
+ "jen": 4142,
+ "annel": 4143,
+ "icon": 4144,
+ "▁comb": 4145,
+ "rict": 4146,
+ "▁hij": 4147,
+ "▁author": 4148,
+ "see": 4149,
+ "here": 4150,
+ "stra": 4151,
+ "▁entire": 4152,
+ "▁directly": 4153,
+ "raft": 4154,
+ "heet": 4155,
+ "ester": 4156,
+ "▁ми": 4157,
+ "▁mass": 4158,
+ "untu": 4159,
+ "▁users": 4160,
+ "chi": 4161,
+ "PE": 4162,
+ "▁component": 4163,
+ "Click": 4164,
+ "Att": 4165,
+ "▁sobre": 4166,
+ "ands": 4167,
+ "▁Hol": 4168,
+ "▁Sant": 4169,
+ "ori": 4170,
+ "▁sua": 4171,
+ "std": 4172,
+ "entic": 4173,
+ "CC": 4174,
+ "▁filter": 4175,
+ "SQL": 4176,
+ "▁God": 4177,
+ "At": 4178,
+ "▁му": 4179,
+ "▁performance": 4180,
+ "delta": 4181,
+ "ande": 4182,
+ "amer": 4183,
+ "ды": 4184,
+ "▁cult": 4185,
+ "▁Nor": 4186,
+ "but": 4187,
+ "▁lik": 4188,
+ "********": 4189,
+ "ствен": 4190,
+ "▁comme": 4191,
+ "▁dr": 4192,
+ "imer": 4193,
+ "ordin": 4194,
+ "▁condition": 4195,
+ "este": 4196,
+ "([": 4197,
+ "FF": 4198,
+ "ться": 4199,
+ "imo": 4200,
+ "rab": 4201,
+ "іль": 4202,
+ "▁half": 4203,
+ "each": 4204,
+ "Dis": 4205,
+ "▁rows": 4206,
+ "▁hon": 4207,
+ "▁together": 4208,
+ "▁și": 4209,
+ "medi": 4210,
+ "agn": 4211,
+ "alled": 4212,
+ "▁vill": 4213,
+ "ING": 4214,
+ "idden": 4215,
+ "▁draw": 4216,
+ "yntax": 4217,
+ "▁attempt": 4218,
+ "URL": 4219,
+ "pose": 4220,
+ "▁indic": 4221,
+ "ника": 4222,
+ "▁English": 4223,
+ "▁déc": 4224,
+ "▁needs": 4225,
+ "▁normal": 4226,
+ "urt": 4227,
+ "▁но": 4228,
+ "}}\\": 4229,
+ "last": 4230,
+ "▁Fin": 4231,
+ "▁Febru": 4232,
+ "ila": 4233,
+ "▁country": 4234,
+ "▁fields": 4235,
+ "▁max": 4236,
+ "lés": 4237,
+ "owie": 4238,
+ "▁deux": 4239,
+ "▁built": 4240,
+ "▁Main": 4241,
+ "▁camp": 4242,
+ "ivo": 4243,
+ "iva": 4244,
+ "icy": 4245,
+ "zione": 4246,
+ "Node": 4247,
+ "▁:)": 4248,
+ "▁among": 4249,
+ "▁Ob": 4250,
+ "▁cases": 4251,
+ "haps": 4252,
+ "sers": 4253,
+ "arter": 4254,
+ "ści": 4255,
+ "▁iter": 4256,
+ "▁named": 4257,
+ "exec": 4258,
+ "▁season": 4259,
+ "tot": 4260,
+ "=>": 4261,
+ "graph": 4262,
+ "▁nil": 4263,
+ "acional": 4264,
+ "▁NULL": 4265,
+ "▁special": 4266,
+ "сте": 4267,
+ "css": 4268,
+ "▁\\(": 4269,
+ "vs": 4270,
+ "ael": 4271,
+ "▁city": 4272,
+ "ova": 4273,
+ "▁article": 4274,
+ "▁South": 4275,
+ "Action": 4276,
+ "ça": 4277,
+ "spring": 4278,
+ "itude": 4279,
+ "▁complex": 4280,
+ "▁что": 4281,
+ "build": 4282,
+ "gamma": 4283,
+ "▁Ent": 4284,
+ "iers": 4285,
+ "'.": 4286,
+ "car": 4287,
+ "apache": 4288,
+ "ingen": 4289,
+ "Input": 4290,
+ ": ": 4291,
+ "▁dynam": 4292,
+ "alls": 4293,
+ "show": 4294,
+ "|\\": 4295,
+ "▁wird": 4296,
+ "Bar": 4297,
+ "alth": 4298,
+ "model": 4299,
+ "Trans": 4300,
+ "Row": 4301,
+ "abe": 4302,
+ "▁lib": 4303,
+ "null": 4304,
+ "ragment": 4305,
+ "▁State": 4306,
+ "▁law": 4307,
+ "Frame": 4308,
+ "▁Lo": 4309,
+ "geb": 4310,
+ "}$.": 4311,
+ "▁needed": 4312,
+ "▁contr": 4313,
+ "aries": 4314,
+ "▁screen": 4315,
+ "yr": 4316,
+ "mm": 4317,
+ "▁shown": 4318,
+ "▁bad": 4319,
+ "▁cast": 4320,
+ "▁Test": 4321,
+ "▁Auf": 4322,
+ "▁quant": 4323,
+ "iga": 4324,
+ "▁ren": 4325,
+ "▁Mac": 4326,
+ "▁transform": 4327,
+ "▁difference": 4328,
+ "▁tit": 4329,
+ "TE": 4330,
+ "▁step": 4331,
+ "▁capt": 4332,
+ "▁collection": 4333,
+ "ictionary": 4334,
+ "▁Tom": 4335,
+ "rier": 4336,
+ "▁move": 4337,
+ "cope": 4338,
+ "ords": 4339,
+ "▁further": 4340,
+ "▁columns": 4341,
+ "▁Lin": 4342,
+ "▁fixed": 4343,
+ "▁children": 4344,
+ "MS": 4345,
+ "mo": 4346,
+ "una": 4347,
+ "▁individ": 4348,
+ "tty": 4349,
+ "aste": 4350,
+ "src": 4351,
+ "match": 4352,
+ "wi": 4353,
+ "▁х": 4354,
+ "▁ди": 4355,
+ "▁ord": 4356,
+ "iving": 4357,
+ "▁Bro": 4358,
+ "▁almost": 4359,
+ "▁Pres": 4360,
+ "reci": 4361,
+ "aring": 4362,
+ "▁///": 4363,
+ "ется": 4364,
+ "▁sig": 4365,
+ "light": 4366,
+ "▁Red": 4367,
+ "▁suggest": 4368,
+ "olf": 4369,
+ "▁été": 4370,
+ "isation": 4371,
+ "зна": 4372,
+ "New": 4373,
+ "стан": 4374,
+ "LA": 4375,
+ "unicip": 4376,
+ "▁figure": 4377,
+ "mt": 4378,
+ "iale": 4379,
+ "▁catch": 4380,
+ "default": 4381,
+ "▁tele": 4382,
+ "▁matter": 4383,
+ "cast": 4384,
+ "▁Rich": 4385,
+ "▁handle": 4386,
+ "valu": 4387,
+ "$-": 4388,
+ "об": 4389,
+ "▁json": 4390,
+ "Create": 4391,
+ "▁exam": 4392,
+ "аль": 4393,
+ "ют": 4394,
+ "ored": 4395,
+ "idos": 4396,
+ "append": 4397,
+ "▁Array": 4398,
+ "кс": 4399,
+ "}[": 4400,
+ "rive": 4401,
+ "▁club": 4402,
+ "mann": 4403,
+ "▁este": 4404,
+ "esta": 4405,
+ "▁Gi": 4406,
+ "▁Jap": 4407,
+ "▁Name": 4408,
+ "Column": 4409,
+ "oups": 4410,
+ "ismo": 4411,
+ "▁City": 4412,
+ "▁classes": 4413,
+ "▁infl": 4414,
+ "hl": 4415,
+ "ром": 4416,
+ "▁adding": 4417,
+ "▁fail": 4418,
+ "xx": 4419,
+ "ões": 4420,
+ "Sc": 4421,
+ "util": 4422,
+ "▁location": 4423,
+ "lege": 4424,
+ "ago": 4425,
+ "▁properties": 4426,
+ "abil": 4427,
+ "vas": 4428,
+ "}$,": 4429,
+ "itted": 4430,
+ "ód": 4431,
+ "▁Dem": 4432,
+ "▁asked": 4433,
+ "▁tab": 4434,
+ "Source": 4435,
+ "▁errors": 4436,
+ "ographie": 4437,
+ "▁жи": 4438,
+ "▁mal": 4439,
+ "stract": 4440,
+ "▁dro": 4441,
+ "rak": 4442,
+ "▁note": 4443,
+ "▁setting": 4444,
+ "▁fem": 4445,
+ "▁saw": 4446,
+ "iar": 4447,
+ "HER": 4448,
+ "ес": 4449,
+ "▁pred": 4450,
+ "▁Out": 4451,
+ "▁items": 4452,
+ "лан": 4453,
+ "▁werd": 4454,
+ "ersion": 4455,
+ "lia": 4456,
+ "▁sin": 4457,
+ "ichte": 4458,
+ "▁feel": 4459,
+ "▁пра": 4460,
+ "▁oder": 4461,
+ "UE": 4462,
+ "ocument": 4463,
+ "▁mode": 4464,
+ "▁Na": 4465,
+ "ден": 4466,
+ "mes": 4467,
+ "framework": 4468,
+ "▁auto": 4469,
+ "ным": 4470,
+ "uby": 4471,
+ "▁template": 4472,
+ "▁mess": 4473,
+ "ieder": 4474,
+ "▁related": 4475,
+ "oken": 4476,
+ "▁follows": 4477,
+ "search": 4478,
+ "ami": 4479,
+ "▁wait": 4480,
+ "igr": 4481,
+ "▁low": 4482,
+ "ских": 4483,
+ "ская": 4484,
+ "▁Mark": 4485,
+ "▁ill": 4486,
+ "amento": 4487,
+ "\\<": 4488,
+ "▁df": 4489,
+ "osition": 4490,
+ "▁Ви": 4491,
+ "isf": 4492,
+ "▁Deutsch": 4493,
+ "ahl": 4494,
+ "war": 4495,
+ "itect": 4496,
+ "▁sal": 4497,
+ "elen": 4498,
+ "ById": 4499,
+ "▁gru": 4500,
+ "sv": 4501,
+ "▁passed": 4502,
+ "▁añ": 4503,
+ "Sch": 4504,
+ "▁solve": 4505,
+ "weise": 4506,
+ "atos": 4507,
+ "▁meg": 4508,
+ "▁member": 4509,
+ "ername": 4510,
+ "▁connect": 4511,
+ "ips": 4512,
+ "▁round": 4513,
+ "▁]": 4514,
+ "nes": 4515,
+ "▁dir": 4516,
+ "▁London": 4517,
+ "dy": 4518,
+ "FA": 4519,
+ "▁received": 4520,
+ "reet": 4521,
+ "▁Log": 4522,
+ "▁School": 4523,
+ "ango": 4524,
+ "▁These": 4525,
+ "▁Mont": 4526,
+ "▁ener": 4527,
+ "lad": 4528,
+ "▁define": 4529,
+ "sign": 4530,
+ "▁cle": 4531,
+ "figure": 4532,
+ "▁View": 4533,
+ "textbf": 4534,
+ "$\\": 4535,
+ "зы": 4536,
+ "number": 4537,
+ "▁din": 4538,
+ "eller": 4539,
+ "orithm": 4540,
+ "false": 4541,
+ "fol": 4542,
+ "fficient": 4543,
+ "▁HTML": 4544,
+ "liche": 4545,
+ "▁Mo": 4546,
+ "▁introdu": 4547,
+ "exp": 4548,
+ "▁strong": 4549,
+ "▁thus": 4550,
+ "/)": 4551,
+ "▁ele": 4552,
+ "▁так": 4553,
+ "▁па": 4554,
+ "▁dont": 4555,
+ "▁cause": 4556,
+ "Number": 4557,
+ "▁images": 4558,
+ "▁sample": 4559,
+ "▁sci": 4560,
+ "like": 4561,
+ "▁Lou": 4562,
+ "div": 4563,
+ "anc": 4564,
+ "▁front": 4565,
+ "nen": 4566,
+ "▁missing": 4567,
+ "aria": 4568,
+ "pres": 4569,
+ "▁пред": 4570,
+ "DI": 4571,
+ "filter": 4572,
+ "▁Mit": 4573,
+ "UR": 4574,
+ "▁opp": 4575,
+ "▁sql": 4576,
+ "▁року": 4577,
+ "eren": 4578,
+ "emat": 4579,
+ "ís": 4580,
+ "▁Jean": 4581,
+ "éc": 4582,
+ "▁ci": 4583,
+ "enne": 4584,
+ "atform": 4585,
+ "▁taken": 4586,
+ "▁Of": 4587,
+ "▁насе": 4588,
+ "▁err": 4589,
+ "OP": 4590,
+ "From": 4591,
+ "Default": 4592,
+ "▁General": 4593,
+ "wiki": 4594,
+ "▁grand": 4595,
+ "▁einen": 4596,
+ "Reg": 4597,
+ "Handler": 4598,
+ "conom": 4599,
+ "anger": 4600,
+ "▁был": 4601,
+ "▁Los": 4602,
+ "▁expression": 4603,
+ "ша": 4604,
+ "yal": 4605,
+ "▁$('": 4606,
+ "▁switch": 4607,
+ "▁vector": 4608,
+ "▁Thom": 4609,
+ "▁virt": 4610,
+ "leased": 4611,
+ "▁cover": 4612,
+ "▁resp": 4613,
+ "ako": 4614,
+ "rench": 4615,
+ "ota": 4616,
+ "Cell": 4617,
+ "anged": 4618,
+ "▁+=": 4619,
+ "lac": 4620,
+ "ska": 4621,
+ "next": 4622,
+ "▁International": 4623,
+ "▁Wil": 4624,
+ "▁ont": 4625,
+ "ibr": 4626,
+ "ustr": 4627,
+ "▁black": 4628,
+ "▁selected": 4629,
+ "cher": 4630,
+ "▁liter": 4631,
+ "root": 4632,
+ "лся": 4633,
+ "▁Life": 4634,
+ "▁insert": 4635,
+ "▁matrix": 4636,
+ "ises": 4637,
+ ")]": 4638,
+ "▁pel": 4639,
+ "Override": 4640,
+ "rypt": 4641,
+ "▁former": 4642,
+ "▁Film": 4643,
+ "▁North": 4644,
+ "client": 4645,
+ "▁night": 4646,
+ "ходи": 4647,
+ "▁Austral": 4648,
+ "▁Ret": 4649,
+ "rho": 4650,
+ "▁пер": 4651,
+ "ipedia": 4652,
+ "▁express": 4653,
+ "▁third": 4654,
+ "▁major": 4655,
+ "▁grad": 4656,
+ "owe": 4657,
+ "▁believe": 4658,
+ "ournal": 4659,
+ "▁status": 4660,
+ "unc": 4661,
+ "▁dou": 4662,
+ "▁JSON": 4663,
+ "uis": 4664,
+ "▁population": 4665,
+ "enz": 4666,
+ "▁William": 4667,
+ "sf": 4668,
+ "▁Object": 4669,
+ "▁cin": 4670,
+ "▁Di": 4671,
+ "curity": 4672,
+ "▁Open": 4673,
+ "▁ле": 4674,
+ "lar": 4675,
+ "adding": 4676,
+ "▁kom": 4677,
+ "}(\\": 4678,
+ "▁kil": 4679,
+ "umer": 4680,
+ "\"/>": 4681,
+ "▁feature": 4682,
+ "▁Are": 4683,
+ "cks": 4684,
+ "▁Internet": 4685,
+ "▁ih": 4686,
+ "▁started": 4687,
+ "▁early": 4688,
+ "▁began": 4689,
+ "TH": 4690,
+ "python": 4691,
+ "asp": 4692,
+ "▁Fr": 4693,
+ "▁clos": 4694,
+ "istic": 4695,
+ "▁music": 4696,
+ "▁dig": 4697,
+ "▁ital": 4698,
+ "▁David": 4699,
+ "▁website": 4700,
+ "▁controller": 4701,
+ "▁Mer": 4702,
+ "context": 4703,
+ "product": 4704,
+ "osp": 4705,
+ "▁▁▁▁▁▁▁": 4706,
+ "▁jun": 4707,
+ "rown": 4708,
+ "▁Az": 4709,
+ "\":\"": 4710,
+ "▁aan": 4711,
+ "▁Date": 4712,
+ "mult": 4713,
+ "▁browser": 4714,
+ "ред": 4715,
+ "which": 4716,
+ "RA": 4717,
+ "quare": 4718,
+ "▁Russ": 4719,
+ "▁soon": 4720,
+ "▁Pre": 4721,
+ "tau": 4722,
+ "▁week": 4723,
+ "▁ба": 4724,
+ "▁oct": 4725,
+ "▁town": 4726,
+ "roy": 4727,
+ "▁els": 4728,
+ "blic": 4729,
+ "undle": 4730,
+ "▁Histor": 4731,
+ "▁foi": 4732,
+ "▁models": 4733,
+ "зо": 4734,
+ "onym": 4735,
+ "Param": 4736,
+ "▁Met": 4737,
+ "gener": 4738,
+ "ją": 4739,
+ "▁espe": 4740,
+ "CE": 4741,
+ "▁device": 4742,
+ "ellow": 4743,
+ "▁debug": 4744,
+ "érie": 4745,
+ "using": 4746,
+ "анг": 4747,
+ "▁*)": 4748,
+ "udi": 4749,
+ "▁Miss": 4750,
+ "ком": 4751,
+ "posed": 4752,
+ "▁zwe": 4753,
+ "ін": 4754,
+ "▁Robert": 4755,
+ "▁Oct": 4756,
+ "lop": 4757,
+ "jar": 4758,
+ "▁aver": 4759,
+ "▁habit": 4760,
+ "▁::": 4761,
+ "äng": 4762,
+ "Start": 4763,
+ "▁pow": 4764,
+ "▁src": 4765,
+ "▁pattern": 4766,
+ "▁Э": 4767,
+ "▁bi": 4768,
+ "otes": 4769,
+ "▁__": 4770,
+ "▁sens": 4771,
+ "▁avoid": 4772,
+ "example": 4773,
+ "utt": 4774,
+ "Label": 4775,
+ "tex": 4776,
+ "boot": 4777,
+ "esto": 4778,
+ "▁March": 4779,
+ "▁easy": 4780,
+ "icture": 4781,
+ "Group": 4782,
+ "▁father": 4783,
+ "▁updated": 4784,
+ "▁Vo": 4785,
+ "▁III": 4786,
+ "omega": 4787,
+ "▁alle": 4788,
+ "Rec": 4789,
+ "yg": 4790,
+ "зе": 4791,
+ "▁Dim": 4792,
+ "nect": 4793,
+ "▁Tor": 4794,
+ "▁deutsch": 4795,
+ "▁white": 4796,
+ "▁national": 4797,
+ "ppe": 4798,
+ "▁air": 4799,
+ "▁password": 4800,
+ "det": 4801,
+ "▁big": 4802,
+ "▁Use": 4803,
+ "call": 4804,
+ "▁extra": 4805,
+ "We": 4806,
+ "ania": 4807,
+ "▁hold": 4808,
+ "Control": 4809,
+ "▁CO": 4810,
+ "▁мі": 4811,
+ "iti": 4812,
+ "▁Ke": 4813,
+ "enu": 4814,
+ "▁Park": 4815,
+ "том": 4816,
+ "▁auth": 4817,
+ "▁center": 4818,
+ "Ph": 4819,
+ "тов": 4820,
+ "iding": 4821,
+ "▁across": 4822,
+ "▁song": 4823,
+ "▁phys": 4824,
+ "▁numer": 4825,
+ "ща": 4826,
+ "▁Alex": 4827,
+ "▁problems": 4828,
+ "▁Error": 4829,
+ "format": 4830,
+ "▁Acc": 4831,
+ "▁six": 4832,
+ "▁db": 4833,
+ "▁Cast": 4834,
+ "oms": 4835,
+ "project": 4836,
+ "▁vert": 4837,
+ "cret": 4838,
+ "▁header": 4839,
+ "▁stream": 4840,
+ "ids": 4841,
+ "▁tor": 4842,
+ "▁sept": 4843,
+ "▁estim": 4844,
+ "▁decl": 4845,
+ "▁gave": 4846,
+ "▁player": 4847,
+ "ysis": 4848,
+ "▁дру": 4849,
+ "amm": 4850,
+ "що": 4851,
+ "▁(\"": 4852,
+ "▁ax": 4853,
+ "Property": 4854,
+ "usr": 4855,
+ "▁someone": 4856,
+ "▁impro": 4857,
+ "aden": 4858,
+ "rote": 4859,
+ "▁Ми": 4860,
+ "ih": 4861,
+ "++)": 4862,
+ "▁video": 4863,
+ "▁exists": 4864,
+ "кла": 4865,
+ "▁complete": 4866,
+ "▁session": 4867,
+ "▁constant": 4868,
+ "icos": 4869,
+ "▁pack": 4870,
+ "rome": 4871,
+ "egr": 4872,
+ "Application": 4873,
+ "▁yes": 4874,
+ "▁elle": 4875,
+ "▁email": 4876,
+ "orf": 4877,
+ "case": 4878,
+ "▁pointer": 4879,
+ "▁regard": 4880,
+ "sen": 4881,
+ "status": 4882,
+ "▁mes": 4883,
+ "▁delle": 4884,
+ "ington": 4885,
+ "▁Bas": 4886,
+ ")^": 4887,
+ "develop": 4888,
+ "▁force": 4889,
+ "▁characters": 4890,
+ "▁cross": 4891,
+ "▁death": 4892,
+ "▁takes": 4893,
+ "éri": 4894,
+ "igne": 4895,
+ "чен": 4896,
+ "UP": 4897,
+ ".:": 4898,
+ "Thread": 4899,
+ "ju": 4900,
+ "iny": 4901,
+ "▁details": 4902,
+ "▁xml": 4903,
+ "tait": 4904,
+ "output": 4905,
+ "message": 4906,
+ "''": 4907,
+ "▁British": 4908,
+ "ville": 4909,
+ "▁Div": 4910,
+ "▁User": 4911,
+ "cm": 4912,
+ "чно": 4913,
+ "column": 4914,
+ "eqref": 4915,
+ "ór": 4916,
+ "onom": 4917,
+ "▁Post": 4918,
+ "ellen": 4919,
+ "Ab": 4920,
+ "ulté": 4921,
+ "▁perfect": 4922,
+ "(){": 4923,
+ "vision": 4924,
+ "active": 4925,
+ "lier": 4926,
+ "rij": 4927,
+ "sd": 4928,
+ "▁kö": 4929,
+ "▁nie": 4930,
+ "▁relig": 4931,
+ "▁ot": 4932,
+ "▁machine": 4933,
+ "▁held": 4934,
+ ")$.": 4935,
+ "========": 4936,
+ "cker": 4937,
+ "вы": 4938,
+ "born": 4939,
+ "▁past": 4940,
+ "рия": 4941,
+ "▁Dr": 4942,
+ "▁regular": 4943,
+ "▁provided": 4944,
+ "TER": 4945,
+ "▁univers": 4946,
+ "▁gets": 4947,
+ "▁nu": 4948,
+ "▁/*": 4949,
+ "ober": 4950,
+ "fin": 4951,
+ "▁nella": 4952,
+ "▁become": 4953,
+ "▁``": 4954,
+ "▁history": 4955,
+ "▁Sol": 4956,
+ "▁Rad": 4957,
+ "▁terms": 4958,
+ "▁events": 4959,
+ "lymp": 4960,
+ ")))": 4961,
+ "рова": 4962,
+ "▁absol": 4963,
+ "▁soft": 4964,
+ "links": 4965,
+ "▁hope": 4966,
+ "▁subject": 4967,
+ "\"),": 4968,
+ "▁creating": 4969,
+ "▁}\r": 4970,
+ "▁Sk": 4971,
+ "▁flow": 4972,
+ "▁Ра": 4973,
+ "▁assert": 4974,
+ "zet": 4975,
+ "▁Frank": 4976,
+ "sa": 4977,
+ "▁distribution": 4978,
+ "cu": 4979,
+ "band": 4980,
+ "izz": 4981,
+ "▁job": 4982,
+ "iner": 4983,
+ "struct": 4984,
+ "ák": 4985,
+ "TO": 4986,
+ "auf": 4987,
+ "▁extends": 4988,
+ "▁Gra": 4989,
+ "display": 4990,
+ "▁signific": 4991,
+ "oney": 4992,
+ "source": 4993,
+ "microsoft": 4994,
+ "inder": 4995,
+ "▁quick": 4996,
+ "▁wonder": 4997,
+ "Instance": 4998,
+ "elles": 4999,
+ "ème": 5000,
+ "▁company": 5001,
+ "uß": 5002,
+ ".}": 5003,
+ "▁separate": 5004,
+ "UM": 5005,
+ "HERE": 5006,
+ "▁writing": 5007,
+ "itution": 5008,
+ "▁Gesch": 5009,
+ "мя": 5010,
+ "▁James": 5011,
+ "▁DE": 5012,
+ "▁Spe": 5013,
+ "process": 5014,
+ "Str": 5015,
+ "▁sym": 5016,
+ "▁ao": 5017,
+ "▁wy": 5018,
+ "▁anyone": 5019,
+ "▁Up": 5020,
+ "useum": 5021,
+ "aron": 5022,
+ "▁definition": 5023,
+ "▁`$": 5024,
+ "▁fav": 5025,
+ "ributes": 5026,
+ "▁Ré": 5027,
+ "ografia": 5028,
+ "element": 5029,
+ "cap": 5030,
+ "pat": 5031,
+ "▁Bra": 5032,
+ ")(": 5033,
+ "▁according": 5034,
+ "ге": 5035,
+ "▁pie": 5036,
+ "eli": 5037,
+ "}\"": 5038,
+ "▁activ": 5039,
+ "▁stop": 5040,
+ "patch": 5041,
+ "ті": 5042,
+ "▁Jose": 5043,
+ "End": 5044,
+ "▁prze": 5045,
+ "▁age": 5046,
+ "itory": 5047,
+ "▁PHP": 5048,
+ "agement": 5049,
+ "▁`.": 5050,
+ "▁pretty": 5051,
+ "▁recomm": 5052,
+ "▁sud": 5053,
+ "▁requ": 5054,
+ "▁обла": 5055,
+ "atives": 5056,
+ "▁High": 5057,
+ "áz": 5058,
+ "oul": 5059,
+ "rest": 5060,
+ "▁Ter": 5061,
+ "under": 5062,
+ "thern": 5063,
+ "center": 5064,
+ "▁ur": 5065,
+ "lat": 5066,
+ "▁interface": 5067,
+ "▁ин": 5068,
+ "▁whose": 5069,
+ "icas": 5070,
+ "amen": 5071,
+ "Filter": 5072,
+ "▁station": 5073,
+ "Page": 5074,
+ "▁arm": 5075,
+ "▁eyes": 5076,
+ "▁рай": 5077,
+ "▁seu": 5078,
+ "oli": 5079,
+ "win": 5080,
+ "lik": 5081,
+ "gex": 5082,
+ "chan": 5083,
+ "idence": 5084,
+ "args": 5085,
+ "aking": 5086,
+ "▁Google": 5087,
+ "▁Stud": 5088,
+ "▁ho": 5089,
+ "торы": 5090,
+ "Su": 5091,
+ "▁automat": 5092,
+ "ême": 5093,
+ "▁cy": 5094,
+ "lor": 5095,
+ "▁stack": 5096,
+ "▁SELECT": 5097,
+ "AF": 5098,
+ "▁>>": 5099,
+ "▁compet": 5100,
+ "▁pair": 5101,
+ "▁inglés": 5102,
+ "Response": 5103,
+ "▁Fig": 5104,
+ "grad": 5105,
+ "▁documentation": 5106,
+ "▁cant": 5107,
+ "▁appreci": 5108,
+ "ån": 5109,
+ "▁learn": 5110,
+ "▁indep": 5111,
+ "▁pal": 5112,
+ "package": 5113,
+ "ares": 5114,
+ "▁Berlin": 5115,
+ "бли": 5116,
+ "reich": 5117,
+ "ён": 5118,
+ "▁satisf": 5119,
+ "▁region": 5120,
+ "▁friend": 5121,
+ "▁George": 5122,
+ "▁Во": 5123,
+ "▁\"\"": 5124,
+ "▁desde": 5125,
+ "Factory": 5126,
+ "▁County": 5127,
+ "ouv": 5128,
+ "▁‘": 5129,
+ "▁installed": 5130,
+ "▁wanted": 5131,
+ "▁Python": 5132,
+ "▁interpre": 5133,
+ "▁included": 5134,
+ "▁((": 5135,
+ "▁altern": 5136,
+ "isto": 5137,
+ "gn": 5138,
+ "▁border": 5139,
+ "pdf": 5140,
+ "▁dup": 5141,
+ "▁download": 5142,
+ "just": 5143,
+ "▁members": 5144,
+ "child": 5145,
+ "▁pay": 5146,
+ "▁cer": 5147,
+ "▁looked": 5148,
+ "▁correctly": 5149,
+ "auth": 5150,
+ "▁стан": 5151,
+ "▁esp": 5152,
+ "▁desc": 5153,
+ "eben": 5154,
+ "▁questions": 5155,
+ "mal": 5156,
+ "▁abgerufen": 5157,
+ "▁Band": 5158,
+ "▁[]": 5159,
+ "Base": 5160,
+ "▁ris": 5161,
+ "▁fort": 5162,
+ "▁Id": 5163,
+ "▁various": 5164,
+ "▁League": 5165,
+ "▁Hand": 5166,
+ "▁Type": 5167,
+ "irl": 5168,
+ "▁Fe": 5169,
+ "ién": 5170,
+ "itter": 5171,
+ "▁fast": 5172,
+ "sta": 5173,
+ "▁except": 5174,
+ "icz": 5175,
+ "▁French": 5176,
+ "▁environment": 5177,
+ "▁conse": 5178,
+ "ур": 5179,
+ "ого": 5180,
+ "▁necessary": 5181,
+ "target": 5182,
+ "▁reading": 5183,
+ "home": 5184,
+ "zeich": 5185,
+ "▁equal": 5186,
+ "▁più": 5187,
+ "▁prem": 5188,
+ "▁difficult": 5189,
+ "▁unit": 5190,
+ "▁replace": 5191,
+ "▁heart": 5192,
+ "▁talk": 5193,
+ "AM": 5194,
+ "▁RE": 5195,
+ "▁Person": 5196,
+ "endency": 5197,
+ "▁imm": 5198,
+ "▁human": 5199,
+ "dn": 5200,
+ "▁Kir": 5201,
+ "▁Aut": 5202,
+ "known": 5203,
+ "▁frequ": 5204,
+ "system": 5205,
+ "лав": 5206,
+ "▁Sz": 5207,
+ "▁Gal": 5208,
+ "ное": 5209,
+ "selves": 5210,
+ "rightarrow": 5211,
+ "▁Са": 5212,
+ "=\"@": 5213,
+ "▁building": 5214,
+ "import": 5215,
+ "▁fam": 5216,
+ "▁delete": 5217,
+ "aire": 5218,
+ "mary": 5219,
+ "▁fund": 5220,
+ "▁particip": 5221,
+ "▁syn": 5222,
+ "sin": 5223,
+ "▁lower": 5224,
+ "▁zero": 5225,
+ "▁sec": 5226,
+ "▁fra": 5227,
+ "Point": 5228,
+ "▁failed": 5229,
+ "iento": 5230,
+ "cup": 5231,
+ "▁slow": 5232,
+ "▁nation": 5233,
+ "ähr": 5234,
+ "▁info": 5235,
+ "▁Public": 5236,
+ "▁decla": 5237,
+ "▁Та": 5238,
+ "▁sold": 5239,
+ "▁Rem": 5240,
+ "▁Phil": 5241,
+ "стра": 5242,
+ "▁mehr": 5243,
+ "▁Work": 5244,
+ "▁Nord": 5245,
+ "▁fait": 5246,
+ "▁gew": 5247,
+ "println": 5248,
+ "obile": 5249,
+ "▁Kon": 5250,
+ "▁assume": 5251,
+ "lands": 5252,
+ "▁amount": 5253,
+ "▁Press": 5254,
+ "ých": 5255,
+ "▁maxim": 5256,
+ "▁Champion": 5257,
+ "library": 5258,
+ "añ": 5259,
+ "▁Wal": 5260,
+ "Comm": 5261,
+ "]]": 5262,
+ "▁zw": 5263,
+ "▁social": 5264,
+ "LI": 5265,
+ "▁Unter": 5266,
+ "vor": 5267,
+ "Delta": 5268,
+ "email": 5269,
+ "raint": 5270,
+ "oni": 5271,
+ "▁alt": 5272,
+ "▁né": 5273,
+ "ция": 5274,
+ "ography": 5275,
+ "▁mentioned": 5276,
+ "▁<=": 5277,
+ "▁cette": 5278,
+ "▁currently": 5279,
+ "vare": 5280,
+ "izing": 5281,
+ "▁Def": 5282,
+ "icol": 5283,
+ "ünd": 5284,
+ "▁configuration": 5285,
+ "estig": 5286,
+ "III": 5287,
+ "lam": 5288,
+ "ière": 5289,
+ "▁Ear": 5290,
+ "▁tu": 5291,
+ "Ent": 5292,
+ "▁Using": 5293,
+ "▁ком": 5294,
+ "cie": 5295,
+ "▁proof": 5296,
+ "▁invol": 5297,
+ "▁History": 5298,
+ "><": 5299,
+ "▁AND": 5300,
+ "avy": 5301,
+ "▁relations": 5302,
+ "${": 5303,
+ "▁comes": 5304,
+ "▁direction": 5305,
+ "▁June": 5306,
+ "▁Way": 5307,
+ "Component": 5308,
+ "ech": 5309,
+ "▁Peter": 5310,
+ "sg": 5311,
+ "▁stra": 5312,
+ "uct": 5313,
+ "▁implementation": 5314,
+ "attle": 5315,
+ "▁cz": 5316,
+ "plot": 5317,
+ "▁played": 5318,
+ "\">": 5319,
+ "▁five": 5320,
+ "▁coll": 5321,
+ "▁Charles": 5322,
+ "Tra": 5323,
+ "▁suo": 5324,
+ "files": 5325,
+ "entes": 5326,
+ "response": 5327,
+ "How": 5328,
+ "▁Soci": 5329,
+ "▁ign": 5330,
+ "▁led": 5331,
+ "▁German": 5332,
+ "udo": 5333,
+ "▁Du": 5334,
+ "▁tim": 5335,
+ "ounter": 5336,
+ "▁attack": 5337,
+ "uri": 5338,
+ "▁ар": 5339,
+ "esse": 5340,
+ "ivil": 5341,
+ "▁Ju": 5342,
+ "▁vel": 5343,
+ "matrix": 5344,
+ "▁Mat": 5345,
+ "gio": 5346,
+ "▁Zeit": 5347,
+ "VER": 5348,
+ "has": 5349,
+ "Connection": 5350,
+ "▁ihr": 5351,
+ "▁attribute": 5352,
+ "▁discuss": 5353,
+ "▁domain": 5354,
+ "bind": 5355,
+ "▁Sec": 5356,
+ "rik": 5357,
+ "close": 5358,
+ "gin": 5359,
+ "▁love": 5360,
+ "anto": 5361,
+ "gent": 5362,
+ "aba": 5363,
+ "jango": 5364,
+ "bi": 5365,
+ "▁obser": 5366,
+ "itting": 5367,
+ "▁ру": 5368,
+ "}=": 5369,
+ "agen": 5370,
+ "BC": 5371,
+ "some": 5372,
+ "▁Bu": 5373,
+ "▁soci": 5374,
+ "▁individual": 5375,
+ "▁deal": 5376,
+ "▁outside": 5377,
+ "rio": 5378,
+ "Exec": 5379,
+ "andid": 5380,
+ "▁business": 5381,
+ "▁tempor": 5382,
+ "▁Tur": 5383,
+ "▁(!": 5384,
+ "riter": 5385,
+ "▁google": 5386,
+ "]:": 5387,
+ "itte": 5388,
+ "xi": 5389,
+ "▁Па": 5390,
+ "hol": 5391,
+ "нь": 5392,
+ "ring": 5393,
+ "▁sul": 5394,
+ "ности": 5395,
+ "_.": 5396,
+ "gar": 5397,
+ "Task": 5398,
+ "▁Check": 5399,
+ "▁modern": 5400,
+ "▁win": 5401,
+ "uster": 5402,
+ "han": 5403,
+ "formation": 5404,
+ "void": 5405,
+ "▁фи": 5406,
+ "▁useful": 5407,
+ "▁England": 5408,
+ "los": 5409,
+ "etime": 5410,
+ "eur": 5411,
+ "▁unique": 5412,
+ "▁как": 5413,
+ "ying": 5414,
+ "obj": 5415,
+ "uid": 5416,
+ "▁windows": 5417,
+ "▁distance": 5418,
+ "▁nombre": 5419,
+ "ія": 5420,
+ "ocus": 5421,
+ "ahn": 5422,
+ "ierte": 5423,
+ "▁dar": 5424,
+ "SI": 5425,
+ "long": 5426,
+ "asta": 5427,
+ "iven": 5428,
+ "▁told": 5429,
+ "▁Gru": 5430,
+ "foo": 5431,
+ "▁calling": 5432,
+ "iembre": 5433,
+ "▁future": 5434,
+ "près": 5435,
+ "leep": 5436,
+ "avigation": 5437,
+ "POST": 5438,
+ "▁described": 5439,
+ "▁noch": 5440,
+ "unit": 5441,
+ "allen": 5442,
+ "▁branch": 5443,
+ "fa": 5444,
+ "▁fill": 5445,
+ "▁obj": 5446,
+ "▁tree": 5447,
+ "▁wurden": 5448,
+ "▁Liter": 5449,
+ "rot": 5450,
+ "split": 5451,
+ "emein": 5452,
+ "module": 5453,
+ "CA": 5454,
+ "▁operator": 5455,
+ "▁wrote": 5456,
+ "▁Jack": 5457,
+ "ologie": 5458,
+ "▁Ant": 5459,
+ "тер": 5460,
+ "stream": 5461,
+ "▁Que": 5462,
+ "epsilon": 5463,
+ "non": 5464,
+ "stein": 5465,
+ "▁simpl": 5466,
+ "pub": 5467,
+ "▁July": 5468,
+ "▁nature": 5469,
+ "▁Database": 5470,
+ "ól": 5471,
+ "ним": 5472,
+ "▁VI": 5473,
+ "être": 5474,
+ "iles": 5475,
+ "▁wel": 5476,
+ "'),": 5477,
+ "▁mut": 5478,
+ "location": 5479,
+ "▁therefore": 5480,
+ "elli": 5481,
+ "▁І": 5482,
+ "né": 5483,
+ "▁ав": 5484,
+ "ledge": 5485,
+ "▁conver": 5486,
+ "ím": 5487,
+ "▁XV": 5488,
+ "vider": 5489,
+ "▁January": 5490,
+ "▁usually": 5491,
+ "▁released": 5492,
+ "▁Mi": 5493,
+ "Head": 5494,
+ "iller": 5495,
+ "▁jan": 5496,
+ "▁letter": 5497,
+ "produ": 5498,
+ "rd": 5499,
+ "▁Cam": 5500,
+ ",'": 5501,
+ "▁Ц": 5502,
+ "▁push": 5503,
+ "update": 5504,
+ "▁maybe": 5505,
+ "Http": 5506,
+ "@\"": 5507,
+ "мер": 5508,
+ "service": 5509,
+ "parse": 5510,
+ "▁dass": 5511,
+ "ên": 5512,
+ ")\"": 5513,
+ "more": 5514,
+ "/*": 5515,
+ "▁mas": 5516,
+ "▁likely": 5517,
+ "▁material": 5518,
+ "▁[[": 5519,
+ "▁longer": 5520,
+ "bal": 5521,
+ "▁Archiv": 5522,
+ "igt": 5523,
+ "▁egy": 5524,
+ "idge": 5525,
+ "igu": 5526,
+ "conf": 5527,
+ "▁inc": 5528,
+ "consulté": 5529,
+ "▁mai": 5530,
+ "Work": 5531,
+ "▁гра": 5532,
+ "▁October": 5533,
+ "▁global": 5534,
+ "▁sel": 5535,
+ "▁municip": 5536,
+ "▁viol": 5537,
+ "▁Does": 5538,
+ "▁\\[": 5539,
+ "ском": 5540,
+ "▁compos": 5541,
+ "бря": 5542,
+ "вя": 5543,
+ "▁respons": 5544,
+ "▁considered": 5545,
+ "▁Japan": 5546,
+ "pes": 5547,
+ "osto": 5548,
+ "▁milit": 5549,
+ "SP": 5550,
+ "сы": 5551,
+ "attr": 5552,
+ "cil": 5553,
+ "irectory": 5554,
+ "aving": 5555,
+ "▁Del": 5556,
+ "▁prevent": 5557,
+ "idade": 5558,
+ "git": 5559,
+ "iform": 5560,
+ "outer": 5561,
+ "inct": 5562,
+ "level": 5563,
+ "atever": 5564,
+ "▁repe": 5565,
+ "▁exc": 5566,
+ "дар": 5567,
+ "Style": 5568,
+ "▁Thomas": 5569,
+ "eline": 5570,
+ "▁ж": 5571,
+ "untime": 5572,
+ "▁larg": 5573,
+ "True": 5574,
+ ".*": 5575,
+ "creen": 5576,
+ "yles": 5577,
+ "▁transl": 5578,
+ "▁Со": 5579,
+ "ensions": 5580,
+ "äl": 5581,
+ "isse": 5582,
+ "▁volt": 5583,
+ "cially": 5584,
+ "nik": 5585,
+ ".]": 5586,
+ "▁Stadt": 5587,
+ "мы": 5588,
+ "fill": 5589,
+ "lov": 5590,
+ "▁\"/": 5591,
+ "Sp": 5592,
+ "▁Air": 5593,
+ "Call": 5594,
+ "▁nur": 5595,
+ "Check": 5596,
+ "ience": 5597,
+ "efined": 5598,
+ "▁вре": 5599,
+ "ło": 5600,
+ "dz": 5601,
+ "▁ор": 5602,
+ "iker": 5603,
+ "owa": 5604,
+ "ович": 5605,
+ "ré": 5606,
+ "OL": 5607,
+ "▁linear": 5608,
+ "▁export": 5609,
+ "ahr": 5610,
+ "icial": 5611,
+ "Rep": 5612,
+ "▁natural": 5613,
+ "▁cop": 5614,
+ "▁})": 5615,
+ "ções": 5616,
+ "zz": 5617,
+ "What": 5618,
+ "▁House": 5619,
+ "Ref": 5620,
+ "inger": 5621,
+ "▁taking": 5622,
+ "ně": 5623,
+ "▁Einz": 5624,
+ "▁dam": 5625,
+ "▁issues": 5626,
+ "Builder": 5627,
+ "edit": 5628,
+ "▁prz": 5629,
+ "password": 5630,
+ "Gener": 5631,
+ "rim": 5632,
+ "▁parts": 5633,
+ "---": 5634,
+ "iginal": 5635,
+ "▁Sci": 5636,
+ "▁mother": 5637,
+ "rea": 5638,
+ "▁container": 5639,
+ "дя": 5640,
+ "▁IP": 5641,
+ "▁none": 5642,
+ "▁followed": 5643,
+ "▁ple": 5644,
+ "▁measure": 5645,
+ "▁tout": 5646,
+ "Ext": 5647,
+ "▁TV": 5648,
+ "▁explain": 5649,
+ "▁paper": 5650,
+ "сті": 5651,
+ "ws": 5652,
+ "Wik": 5653,
+ "▁mm": 5654,
+ "▁Norm": 5655,
+ "▁Server": 5656,
+ "font": 5657,
+ "ecause": 5658,
+ "TR": 5659,
+ "▁би": 5660,
+ "La": 5661,
+ "▁ens": 5662,
+ "▁retr": 5663,
+ "▁Sil": 5664,
+ "▁sequence": 5665,
+ "arc": 5666,
+ "IV": 5667,
+ "zá": 5668,
+ "▁Android": 5669,
+ "▁Super": 5670,
+ "▁roz": 5671,
+ "ovie": 5672,
+ "Om": 5673,
+ "▁Well": 5674,
+ "make": 5675,
+ "orph": 5676,
+ "▁Jer": 5677,
+ "▁Ros": 5678,
+ "reference": 5679,
+ "▁features": 5680,
+ "▁Ger": 5681,
+ "▁Leg": 5682,
+ "▁late": 5683,
+ "▁additional": 5684,
+ "▁flo": 5685,
+ "▁его": 5686,
+ "▁algorithm": 5687,
+ "BA": 5688,
+ "kar": 5689,
+ "IP": 5690,
+ "]);": 5691,
+ "▁appears": 5692,
+ "yw": 5693,
+ "▁temp": 5694,
+ "▁aussi": 5695,
+ "method": 5696,
+ "▁pet": 5697,
+ "strap": 5698,
+ "arning": 5699,
+ "▁cut": 5700,
+ "▁Sa": 5701,
+ "▁track": 5702,
+ "▁employ": 5703,
+ "▁inde": 5704,
+ "rav": 5705,
+ "▁generate": 5706,
+ "bes": 5707,
+ "arts": 5708,
+ "Status": 5709,
+ "uge": 5710,
+ "alis": 5711,
+ "▁override": 5712,
+ "▁fi": 5713,
+ "▁lost": 5714,
+ "oted": 5715,
+ "▁room": 5716,
+ "▁calls": 5717,
+ "▁consist": 5718,
+ "рен": 5719,
+ "▁village": 5720,
+ "dist": 5721,
+ "▁techn": 5722,
+ "enza": 5723,
+ "▁роз": 5724,
+ "▁Catalog": 5725,
+ "▁becom": 5726,
+ "rows": 5727,
+ "▁Nel": 5728,
+ "comple": 5729,
+ "▁premi": 5730,
+ "▁rot": 5731,
+ "▁Weblinks": 5732,
+ "▁football": 5733,
+ "▁compar": 5734,
+ "▁live": 5735,
+ "ких": 5736,
+ "▁equival": 5737,
+ "cape": 5738,
+ "▁Gen": 5739,
+ "nder": 5740,
+ "▁Vis": 5741,
+ "▁behind": 5742,
+ "gers": 5743,
+ "voke": 5744,
+ "▁media": 5745,
+ "EX": 5746,
+ "that": 5747,
+ "▁sono": 5748,
+ "▁mysql": 5749,
+ "ev": 5750,
+ "▁rule": 5751,
+ "дов": 5752,
+ "acc": 5753,
+ "▁WHERE": 5754,
+ "ене": 5755,
+ "Grid": 5756,
+ "▁jul": 5757,
+ "▁mort": 5758,
+ "▁generated": 5759,
+ "encia": 5760,
+ "acter": 5761,
+ "clud": 5762,
+ "▁scen": 5763,
+ "▁closed": 5764,
+ "▁Michael": 5765,
+ "▁mount": 5766,
+ ")$,": 5767,
+ "▁drop": 5768,
+ "▁combin": 5769,
+ "tocol": 5770,
+ "▁goes": 5771,
+ "▁geb": 5772,
+ "MD": 5773,
+ "▁Anton": 5774,
+ "▁$(\"": 5775,
+ "Tem": 5776,
+ "▁ca": 5777,
+ "▁instru": 5778,
+ "eds": 5779,
+ "▁tool": 5780,
+ "mys": 5781,
+ "▁route": 5782,
+ "\"))": 5783,
+ "пре": 5784,
+ "▁float": 5785,
+ "▁services": 5786,
+ "▁чи": 5787,
+ "кі": 5788,
+ "embly": 5789,
+ "aker": 5790,
+ "▁Son": 5791,
+ "▁Math": 5792,
+ "asse": 5793,
+ "ously": 5794,
+ "lications": 5795,
+ "▁ru": 5796,
+ "▁що": 5797,
+ "▁Const": 5798,
+ "▁immedi": 5799,
+ "FO": 5800,
+ "oro": 5801,
+ "▁production": 5802,
+ "rei": 5803,
+ "▁jquery": 5804,
+ "annt": 5805,
+ "▁While": 5806,
+ "▁sn": 5807,
+ "▁годи": 5808,
+ "Format": 5809,
+ "▁star": 5810,
+ "▁Sen": 5811,
+ "▁ko": 5812,
+ "NAME": 5813,
+ "▁prés": 5814,
+ "cha": 5815,
+ "what": 5816,
+ "omin": 5817,
+ "endant": 5818,
+ "hy": 5819,
+ "▁observ": 5820,
+ "▁prefer": 5821,
+ "ун": 5822,
+ "▁constructor": 5823,
+ "bs": 5824,
+ "▁mac": 5825,
+ "▁Bre": 5826,
+ "▁Instit": 5827,
+ "▁story": 5828,
+ "▁symbol": 5829,
+ "eles": 5830,
+ "ße": 5831,
+ "asing": 5832,
+ "▁west": 5833,
+ "ians": 5834,
+ "▁master": 5835,
+ "ез": 5836,
+ "▁ways": 5837,
+ "bm": 5838,
+ "▁pick": 5839,
+ "▁depart": 5840,
+ "Back": 5841,
+ "enk": 5842,
+ "lipse": 5843,
+ "▁math": 5844,
+ "▁Francis": 5845,
+ "▁December": 5846,
+ "fs": 5847,
+ "rum": 5848,
+ "▁development": 5849,
+ "LT": 5850,
+ "ernel": 5851,
+ "▁True": 5852,
+ "▁More": 5853,
+ "rangle": 5854,
+ "▁conditions": 5855,
+ "Options": 5856,
+ "▁gli": 5857,
+ "▁operation": 5858,
+ "ék": 5859,
+ "acht": 5860,
+ "ights": 5861,
+ "▁mist": 5862,
+ "anda": 5863,
+ "▁energy": 5864,
+ "▁же": 5865,
+ "▁women": 5866,
+ "akt": 5867,
+ "▁CH": 5868,
+ "gebra": 5869,
+ "▁meet": 5870,
+ "iu": 5871,
+ "well": 5872,
+ "öl": 5873,
+ "▁government": 5874,
+ "▁Jos": 5875,
+ "ieg": 5876,
+ "▁syntax": 5877,
+ "fix": 5878,
+ "▁Pet": 5879,
+ "jquery": 5880,
+ "▁card": 5881,
+ "▁principal": 5882,
+ "▁dru": 5883,
+ "▁territ": 5884,
+ "▁пов": 5885,
+ "▁SS": 5886,
+ "рии": 5887,
+ "tres": 5888,
+ "agne": 5889,
+ "lying": 5890,
+ "tilde": 5891,
+ "bern": 5892,
+ "enter": 5893,
+ "Per": 5894,
+ "▁somet": 5895,
+ "Load": 5896,
+ "lice": 5897,
+ "▁sous": 5898,
+ "▁Louis": 5899,
+ "▁logic": 5900,
+ "▁Other": 5901,
+ "▁cir": 5902,
+ "év": 5903,
+ "chron": 5904,
+ "▁han": 5905,
+ "▁margin": 5906,
+ "Window": 5907,
+ "ères": 5908,
+ "nych": 5909,
+ "push": 5910,
+ "bolds": 5911,
+ "▁layout": 5912,
+ "▁[`": 5913,
+ "Char": 5914,
+ "▁Cap": 5915,
+ "boldsymbol": 5916,
+ "▁Roman": 5917,
+ "▁Max": 5918,
+ ":(": 5919,
+ "▁Code": 5920,
+ "ising": 5921,
+ "▁states": 5922,
+ "▁existing": 5923,
+ "support": 5924,
+ "▁research": 5925,
+ "licate": 5926,
+ "vari": 5927,
+ "▁bij": 5928,
+ "▁appe": 5929,
+ "▁happens": 5930,
+ "\\\"": 5931,
+ "▁concern": 5932,
+ "west": 5933,
+ "▁saying": 5934,
+ "pid": 5935,
+ "▁recogn": 5936,
+ "▁Het": 5937,
+ "Child": 5938,
+ "▁cs": 5939,
+ "\\,": 5940,
+ "▁clean": 5941,
+ "lections": 5942,
+ "access": 5943,
+ "ву": 5944,
+ "про": 5945,
+ "acity": 5946,
+ "▁Off": 5947,
+ "▁easily": 5948,
+ "èque": 5949,
+ "▁jako": 5950,
+ "▁iz": 5951,
+ "▁Ha": 5952,
+ "▁Det": 5953,
+ "▁forma": 5954,
+ "sche": 5955,
+ "swers": 5956,
+ "▁offer": 5957,
+ "quired": 5958,
+ "Users": 5959,
+ "▁subst": 5960,
+ ">(": 5961,
+ "▁ground": 5962,
+ "unn": 5963,
+ "rod": 5964,
+ "spe": 5965,
+ "ursor": 5966,
+ "▁leave": 5967,
+ "erk": 5968,
+ "▁tal": 5969,
+ "▁bottom": 5970,
+ "IO": 5971,
+ "▁popular": 5972,
+ "igo": 5973,
+ "▁Time": 5974,
+ "values": 5975,
+ "▁Loc": 5976,
+ "▁Club": 5977,
+ "▁anche": 5978,
+ "iał": 5979,
+ "ії": 5980,
+ "Omega": 5981,
+ "▁located": 5982,
+ "Url": 5983,
+ "▁Esp": 5984,
+ "лы": 5985,
+ "ць": 5986,
+ "ulate": 5987,
+ "▁join": 5988,
+ "aves": 5989,
+ "vet": 5990,
+ "lio": 5991,
+ "remove": 5992,
+ "▁token": 5993,
+ "▁optim": 5994,
+ "▁claim": 5995,
+ "ological": 5996,
+ "▁css": 5997,
+ "▁although": 5998,
+ "▁priv": 5999,
+ "▁Ba": 6000,
+ "ül": 6001,
+ "entication": 6002,
+ "▁ven": 6003,
+ "Server": 6004,
+ "▁Cong": 6005,
+ "NET": 6006,
+ "CON": 6007,
+ "dt": 6008,
+ "perties": 6009,
+ "▁epis": 6010,
+ "wikipedia": 6011,
+ "▁engine": 6012,
+ "▁fer": 6013,
+ "getElement": 6014,
+ "▁Cla": 6015,
+ "ří": 6016,
+ "▁rom": 6017,
+ "varepsilon": 6018,
+ "▁prime": 6019,
+ "istry": 6020,
+ "pected": 6021,
+ "orage": 6022,
+ "▁touch": 6023,
+ "▁['": 6024,
+ "▁dan": 6025,
+ "Em": 6026,
+ "aciones": 6027,
+ "Can": 6028,
+ "▁whom": 6029,
+ "▁behavior": 6030,
+ "▁strings": 6031,
+ "▁Europ": 6032,
+ "▁Rom": 6033,
+ "circ": 6034,
+ "▁pun": 6035,
+ "▁register": 6036,
+ "buntu": 6037,
+ "rain": 6038,
+ "Ob": 6039,
+ "TA": 6040,
+ "▁sometimes": 6041,
+ "▁ment": 6042,
+ "▁integer": 6043,
+ "▁Jac": 6044,
+ "legate": 6045,
+ "othing": 6046,
+ "▁sound": 6047,
+ "laces": 6048,
+ "▁Ба": 6049,
+ "rb": 6050,
+ "di": 6051,
+ "ления": 6052,
+ "▁themselves": 6053,
+ "▁Black": 6054,
+ "▁settings": 6055,
+ "▁norm": 6056,
+ "▁runs": 6057,
+ "▁NOT": 6058,
+ "KE": 6059,
+ "▁perhaps": 6060,
+ "▁Я": 6061,
+ "▁mol": 6062,
+ "▁ans": 6063,
+ "atre": 6064,
+ "▁Dies": 6065,
+ "Token": 6066,
+ "anie": 6067,
+ "▁allowed": 6068,
+ "Range": 6069,
+ "▁Gro": 6070,
+ "via": 6071,
+ "utorial": 6072,
+ "ensor": 6073,
+ "estival": 6074,
+ ");\r": 6075,
+ "краї": 6076,
+ "▁turned": 6077,
+ "scope": 6078,
+ "▁bien": 6079,
+ "=$": 6080,
+ "▁extension": 6081,
+ "atore": 6082,
+ "▁Ро": 6083,
+ "▁specify": 6084,
+ "edu": 6085,
+ "Datos": 6086,
+ "▁stored": 6087,
+ "▁parse": 6088,
+ "▁answers": 6089,
+ "ills": 6090,
+ "▁heard": 6091,
+ "lu": 6092,
+ "▁THE": 6093,
+ "▁gén": 6094,
+ "▁ful": 6095,
+ "ez": 6096,
+ "▁Prem": 6097,
+ "then": 6098,
+ "dp": 6099,
+ "ського": 6100,
+ "▁Si": 6101,
+ "ço": 6102,
+ "Edit": 6103,
+ "ків": 6104,
+ "▁Ли": 6105,
+ "▁Sing": 6106,
+ "▁categ": 6107,
+ "Equ": 6108,
+ "▁guer": 6109,
+ "Width": 6110,
+ "▁Christian": 6111,
+ "stat": 6112,
+ "Write": 6113,
+ "▁woman": 6114,
+ "wood": 6115,
+ "Vis": 6116,
+ "раз": 6117,
+ "▁$$\\": 6118,
+ "oder": 6119,
+ "▁bool": 6120,
+ "▁international": 6121,
+ "ность": 6122,
+ "▁Richard": 6123,
+ "▁addition": 6124,
+ "▁Music": 6125,
+ "▁aber": 6126,
+ "tó": 6127,
+ "▁hier": 6128,
+ "ugh": 6129,
+ "▁pob": 6130,
+ "▁tables": 6131,
+ "Do": 6132,
+ "▁higher": 6133,
+ "psi": 6134,
+ "rá": 6135,
+ "▁active": 6136,
+ "▁Table": 6137,
+ "ње": 6138,
+ "▁description": 6139,
+ "▁seemed": 6140,
+ "íst": 6141,
+ "▁myself": 6142,
+ "▁menu": 6143,
+ "del": 6144,
+ "▁ž": 6145,
+ "ele": 6146,
+ "Aut": 6147,
+ "▁гру": 6148,
+ "mut": 6149,
+ "oon": 6150,
+ "asc": 6151,
+ "bug": 6152,
+ "▁moved": 6153,
+ "CL": 6154,
+ "▁datas": 6155,
+ "SO": 6156,
+ "оло": 6157,
+ "▁Georg": 6158,
+ "▁reach": 6159,
+ ":\"": 6160,
+ "▁evalu": 6161,
+ "▁Hel": 6162,
+ "▁River": 6163,
+ "▁Ар": 6164,
+ "////": 6165,
+ "▁sets": 6166,
+ "▁Olymp": 6167,
+ "Adapter": 6168,
+ ".'": 6169,
+ "overn": 6170,
+ "▁Lord": 6171,
+ "!--": 6172,
+ "jpg": 6173,
+ "imento": 6174,
+ "▁Prof": 6175,
+ "▁achieve": 6176,
+ "}:": 6177,
+ "▁incor": 6178,
+ "▁onder": 6179,
+ "engl": 6180,
+ "ABLE": 6181,
+ "▁Mary": 6182,
+ "▁waren": 6183,
+ "lage": 6184,
+ "Dec": 6185,
+ "англ": 6186,
+ "encias": 6187,
+ "лей": 6188,
+ "▁Machine": 6189,
+ "▁Ан": 6190,
+ "uda": 6191,
+ "▁ś": 6192,
+ "▁XX": 6193,
+ "only": 6194,
+ "ление": 6195,
+ "▁también": 6196,
+ "nej": 6197,
+ "▁relative": 6198,
+ "▁hours": 6199,
+ "▁indeed": 6200,
+ "undo": 6201,
+ "ingu": 6202,
+ "area": 6203,
+ "▁Create": 6204,
+ "beit": 6205,
+ "▁removed": 6206,
+ "master": 6207,
+ "haus": 6208,
+ "▁Bern": 6209,
+ "▁speed": 6210,
+ "▁Bay": 6211,
+ "▁Att": 6212,
+ "▁None": 6213,
+ "application": 6214,
+ "üd": 6215,
+ "▁fit": 6216,
+ "▁Maria": 6217,
+ "▁nord": 6218,
+ "▁split": 6219,
+ "▁stru": 6220,
+ "▁official": 6221,
+ "▁execute": 6222,
+ "ouve": 6223,
+ "{{": 6224,
+ "▁Ap": 6225,
+ "▁ку": 6226,
+ "IL": 6227,
+ "▁^": 6228,
+ "dim": 6229,
+ "▁setup": 6230,
+ "ск": 6231,
+ "▁share": 6232,
+ "▁minutes": 6233,
+ "gle": 6234,
+ "oco": 6235,
+ "stell": 6236,
+ "▁Coun": 6237,
+ "▁temper": 6238,
+ "keit": 6239,
+ "ський": 6240,
+ "ao": 6241,
+ "▁Long": 6242,
+ "(&": 6243,
+ "кан": 6244,
+ "▁dens": 6245,
+ "But": 6246,
+ "XX": 6247,
+ "DATE": 6248,
+ "gan": 6249,
+ ".).": 6250,
+ "▁entry": 6251,
+ "install": 6252,
+ "▁зна": 6253,
+ "▁Som": 6254,
+ "Command": 6255,
+ "ßen": 6256,
+ "▁starting": 6257,
+ "▁sto": 6258,
+ "IG": 6259,
+ "▁minim": 6260,
+ "▁explicit": 6261,
+ "▁bytes": 6262,
+ "▁party": 6263,
+ "tober": 6264,
+ "▁Grand": 6265,
+ "▁Vor": 6266,
+ "▁leur": 6267,
+ "Document": 6268,
+ "erc": 6269,
+ "ensive": 6270,
+ "CP": 6271,
+ "env": 6272,
+ "▁arguments": 6273,
+ "▁Gran": 6274,
+ "arily": 6275,
+ "▁lin": 6276,
+ "tn": 6277,
+ "(-": 6278,
+ "geq": 6279,
+ "▁Famil": 6280,
+ "▁Бо": 6281,
+ "▁tour": 6282,
+ "▁nav": 6283,
+ "▁properly": 6284,
+ "▁Mrs": 6285,
+ "▁Mel": 6286,
+ "▁scale": 6287,
+ "astic": 6288,
+ "ds": 6289,
+ "▁Sir": 6290,
+ "▁Church": 6291,
+ "}^{\\": 6292,
+ "you": 6293,
+ "/.": 6294,
+ "So": 6295,
+ "▁brought": 6296,
+ "▁role": 6297,
+ "▁Sur": 6298,
+ "▁fond": 6299,
+ "▁ges": 6300,
+ "że": 6301,
+ "eten": 6302,
+ "▁était": 6303,
+ "SER": 6304,
+ "▁которы": 6305,
+ "▁equation": 6306,
+ "aspx": 6307,
+ "▁Afr": 6308,
+ "▁dit": 6309,
+ "empty": 6310,
+ "alement": 6311,
+ "wrap": 6312,
+ "▁Bet": 6313,
+ "▁collect": 6314,
+ "▁git": 6315,
+ "▁vie": 6316,
+ "▁..": 6317,
+ "рой": 6318,
+ "▁": 6319,
+ "▁educ": 6320,
+ "kl": 6321,
+ "ensis": 6322,
+ "▁OR": 6323,
+ "▁Hi": 6324,
+ "▁Cour": 6325,
+ "бы": 6326,
+ "cert": 6327,
+ "▁Ges": 6328,
+ "essor": 6329,
+ "Main": 6330,
+ "▁лю": 6331,
+ "cade": 6332,
+ "dot": 6333,
+ "augh": 6334,
+ "hib": 6335,
+ "▁automatically": 6336,
+ "▁spir": 6337,
+ "present": 6338,
+ "▁February": 6339,
+ "▁Elle": 6340,
+ "custom": 6341,
+ "▁proget": 6342,
+ "▁administr": 6343,
+ "AA": 6344,
+ "▁born": 6345,
+ "▁College": 6346,
+ "athol": 6347,
+ "`)": 6348,
+ "ierre": 6349,
+ "▁ran": 6350,
+ "▁profession": 6351,
+ "ogen": 6352,
+ "}_{\\": 6353,
+ "▁activity": 6354,
+ "▁scroll": 6355,
+ "▁prove": 6356,
+ "ibrary": 6357,
+ "eries": 6358,
+ "Read": 6359,
+ "year": 6360,
+ "▁lang": 6361,
+ "Det": 6362,
+ "▁knew": 6363,
+ "▁protected": 6364,
+ "▁wor": 6365,
+ "▁effic": 6366,
+ "▁rég": 6367,
+ "▁theory": 6368,
+ "▁published": 6369,
+ "real": 6370,
+ "▁Tour": 6371,
+ "▁durante": 6372,
+ "äs": 6373,
+ "▁positive": 6374,
+ "▁forward": 6375,
+ "▁Rel": 6376,
+ "{\"": 6377,
+ "park": 6378,
+ "▁Um": 6379,
+ "▁eer": 6380,
+ "enta": 6381,
+ "▁imag": 6382,
+ "ної": 6383,
+ "piel": 6384,
+ "▁jQuery": 6385,
+ "isme": 6386,
+ "chni": 6387,
+ "organ": 6388,
+ "▁args": 6389,
+ "oir": 6390,
+ "heim": 6391,
+ "rian": 6392,
+ "eless": 6393,
+ "uses": 6394,
+ "дин": 6395,
+ "ición": 6396,
+ "▁indust": 6397,
+ "▁wish": 6398,
+ "ány": 6399,
+ "oca": 6400,
+ "▁angular": 6401,
+ "ieved": 6402,
+ "▁occur": 6403,
+ "SELECT": 6404,
+ "onia": 6405,
+ "admin": 6406,
+ "▁Best": 6407,
+ "▁это": 6408,
+ "огра": 6409,
+ "▁loss": 6410,
+ "▁bal": 6411,
+ "▁Рос": 6412,
+ "▁career": 6413,
+ "▁пе": 6414,
+ "IX": 6415,
+ "▁fall": 6416,
+ "▁Rob": 6417,
+ "▁OP": 6418,
+ "ened": 6419,
+ "graphics": 6420,
+ "▁coming": 6421,
+ "Update": 6422,
+ "▁died": 6423,
+ "eden": 6424,
+ "▁abs": 6425,
+ "▁inner": 6426,
+ "▁trav": 6427,
+ "стоя": 6428,
+ "zą": 6429,
+ "ép": 6430,
+ "▁Group": 6431,
+ "▁cel": 6432,
+ "▁stuff": 6433,
+ "▁situation": 6434,
+ "▁${": 6435,
+ "acle": 6436,
+ "▁purpose": 6437,
+ "▁Fire": 6438,
+ "▁Oh": 6439,
+ "▁Second": 6440,
+ "▁upload": 6441,
+ "ostał": 6442,
+ "ющи": 6443,
+ "Auth": 6444,
+ "▁showing": 6445,
+ "▁completely": 6446,
+ "avel": 6447,
+ "bd": 6448,
+ "▁proced": 6449,
+ "▁Ö": 6450,
+ "control": 6451,
+ "▁thank": 6452,
+ "undred": 6453,
+ "▁tom": 6454,
+ "▁examples": 6455,
+ "▁remember": 6456,
+ "▁рабо": 6457,
+ "▁possib": 6458,
+ "▁detect": 6459,
+ "▁poor": 6460,
+ "▁Op": 6461,
+ "▁century": 6462,
+ "utter": 6463,
+ "▁login": 6464,
+ "unst": 6465,
+ "Output": 6466,
+ "▁otherwise": 6467,
+ "lan": 6468,
+ "тур": 6469,
+ "▁сов": 6470,
+ "▁groups": 6471,
+ "rip": 6472,
+ "▁shell": 6473,
+ "▁district": 6474,
+ "▁records": 6475,
+ "▁siè": 6476,
+ "fortun": 6477,
+ "enty": 6478,
+ "▁Tre": 6479,
+ "▁changing": 6480,
+ "след": 6481,
+ "aught": 6482,
+ "▁deep": 6483,
+ "subset": 6484,
+ "agy": 6485,
+ "endar": 6486,
+ "jax": 6487,
+ "OM": 6488,
+ "El": 6489,
+ "imate": 6490,
+ "ardo": 6491,
+ "▁plot": 6492,
+ "▁visit": 6493,
+ "▁bug": 6494,
+ "▁все": 6495,
+ "▁opened": 6496,
+ "▁repla": 6497,
+ "▁Henry": 6498,
+ "▁pp": 6499,
+ "bas": 6500,
+ "▁dark": 6501,
+ "▁Martin": 6502,
+ "▁resource": 6503,
+ "iling": 6504,
+ "▁watch": 6505,
+ "replace": 6506,
+ "▁release": 6507,
+ "Location": 6508,
+ "▁learning": 6509,
+ "menu": 6510,
+ "▁allows": 6511,
+ "ър": 6512,
+ "Length": 6513,
+ "▁whatever": 6514,
+ "▁pages": 6515,
+ "▁compiler": 6516,
+ "▁также": 6517,
+ "▁Pan": 6518,
+ "command": 6519,
+ "▁road": 6520,
+ "▁unless": 6521,
+ "`?": 6522,
+ "▁discover": 6523,
+ "▁он": 6524,
+ "}]": 6525,
+ "bour": 6526,
+ "▁Could": 6527,
+ "▁regex": 6528,
+ "▁ps": 6529,
+ "CD": 6530,
+ "из": 6531,
+ "▁wife": 6532,
+ "amenti": 6533,
+ "▁fair": 6534,
+ "▁DB": 6535,
+ "▁Cup": 6536,
+ "enen": 6537,
+ "ajax": 6538,
+ "othèque": 6539,
+ "▁seiner": 6540,
+ "icker": 6541,
+ "ám": 6542,
+ "exchange": 6543,
+ "oles": 6544,
+ "IF": 6545,
+ "▁До": 6546,
+ "ohn": 6547,
+ "▁grow": 6548,
+ "▁Thus": 6549,
+ "spec": 6550,
+ "▁hatte": 6551,
+ "#,": 6552,
+ "allel": 6553,
+ "▁rate": 6554,
+ "▁central": 6555,
+ "▁Van": 6556,
+ "iforn": 6557,
+ "Run": 6558,
+ "▁study": 6559,
+ "▁XML": 6560,
+ "▁Che": 6561,
+ "▁beaut": 6562,
+ "mid": 6563,
+ "▁advance": 6564,
+ "Ver": 6565,
+ "тя": 6566,
+ "▁hands": 6567,
+ "▁lay": 6568,
+ "▁š": 6569,
+ "▁OS": 6570,
+ "▁{}": 6571,
+ "Pre": 6572,
+ "▁Hall": 6573,
+ "imp": 6574,
+ "▁sun": 6575,
+ "▁steps": 6576,
+ "▁jud": 6577,
+ "qui": 6578,
+ "▁boot": 6579,
+ "▁%>": 6580,
+ "▁Ва": 6581,
+ "nost": 6582,
+ "▁nem": 6583,
+ "▁pen": 6584,
+ "Open": 6585,
+ "▁church": 6586,
+ "кон": 6587,
+ "▁average": 6588,
+ "▁comments": 6589,
+ "▁corresponding": 6590,
+ "levant": 6591,
+ "▁bed": 6592,
+ "▁meaning": 6593,
+ "Version": 6594,
+ "Link": 6595,
+ "bel": 6596,
+ "▁extract": 6597,
+ "ść": 6598,
+ "▁IV": 6599,
+ "▁Ir": 6600,
+ "▁computer": 6601,
+ "▁affect": 6602,
+ "▁Ста": 6603,
+ "AX": 6604,
+ "sort": 6605,
+ "▁species": 6606,
+ "▁Oper": 6607,
+ "▁hash": 6608,
+ "ches": 6609,
+ "▁Einzeln": 6610,
+ "▁keys": 6611,
+ "▁marzo": 6612,
+ "▁interpret": 6613,
+ "hood": 6614,
+ "▁coordin": 6615,
+ "ös": 6616,
+ "rage": 6617,
+ "etz": 6618,
+ "iza": 6619,
+ "дер": 6620,
+ "üt": 6621,
+ "^*": 6622,
+ "▁modify": 6623,
+ "▁termin": 6624,
+ "▁cred": 6625,
+ "zon": 6626,
+ "ную": 6627,
+ "▁mie": 6628,
+ "▁''": 6629,
+ "▁Mos": 6630,
+ "▁connected": 6631,
+ "NO": 6632,
+ "▁compile": 6633,
+ "▁\"\\": 6634,
+ "▁cat": 6635,
+ "fiddle": 6636,
+ "uta": 6637,
+ "Access": 6638,
+ "▁Sto": 6639,
+ "▁Bur": 6640,
+ "▁north": 6641,
+ "Gamma": 6642,
+ "▁alloc": 6643,
+ "Init": 6644,
+ "▁Link": 6645,
+ "ialize": 6646,
+ "Impl": 6647,
+ "oupe": 6648,
+ "ropri": 6649,
+ "▁Gold": 6650,
+ "▁solo": 6651,
+ "▁Dist": 6652,
+ ",-": 6653,
+ "nav": 6654,
+ "▁alert": 6655,
+ "esis": 6656,
+ "▁Os": 6657,
+ "///": 6658,
+ "▁feb": 6659,
+ "▁-->": 6660,
+ "foot": 6661,
+ "▁Fried": 6662,
+ "▁Einzelnach": 6663,
+ "▁rev": 6664,
+ "zeit": 6665,
+ "▁Stat": 6666,
+ "▁Seg": 6667,
+ "▁blo": 6668,
+ "wick": 6669,
+ "EL": 6670,
+ "caption": 6671,
+ "header": 6672,
+ "▁president": 6673,
+ "▁multip": 6674,
+ "▁Einzelnachweise": 6675,
+ "▁seine": 6676,
+ "?”": 6677,
+ "Function": 6678,
+ "▁Stand": 6679,
+ "▁Function": 6680,
+ "▁?>": 6681,
+ "▁Bill": 6682,
+ "▁spect": 6683,
+ "▁redirect": 6684,
+ "rupt": 6685,
+ "▁walk": 6686,
+ "вши": 6687,
+ "springframework": 6688,
+ "place": 6689,
+ "ého": 6690,
+ "Entity": 6691,
+ "▁Service": 6692,
+ "inte": 6693,
+ "▁training": 6694,
+ "▁(`": 6695,
+ "фор": 6696,
+ "▁кра": 6697,
+ "aur": 6698,
+ "▁fetch": 6699,
+ "▁†": 6700,
+ "▁même": 6701,
+ "▁('": 6702,
+ "atively": 6703,
+ "▁execut": 6704,
+ "äch": 6705,
+ "▁Catalogue": 6706,
+ "based": 6707,
+ "Attribute": 6708,
+ "▁spring": 6709,
+ "phone": 6710,
+ "тра": 6711,
+ "▁пи": 6712,
+ "тера": 6713,
+ "▁`\\": 6714,
+ "▁Od": 6715,
+ "One": 6716,
+ "send": 6717,
+ "bon": 6718,
+ "▁°": 6719,
+ "MO": 6720,
+ "▁asking": 6721,
+ "▁où": 6722,
+ "▁ingår": 6723,
+ "▁testing": 6724,
+ "▁фа": 6725,
+ "▁Book": 6726,
+ "imm": 6727,
+ "▁progress": 6728,
+ "bro": 6729,
+ "First": 6730,
+ "▁phot": 6731,
+ "▁ON": 6732,
+ "Template": 6733,
+ "developer": 6734,
+ "annot": 6735,
+ "▁>=": 6736,
+ "mission": 6737,
+ "▁któ": 6738,
+ "pc": 6739,
+ "bach": 6740,
+ "zent": 6741,
+ "ued": 6742,
+ "▁ones": 6743,
+ "ји": 6744,
+ "▁rout": 6745,
+ "▁Ки": 6746,
+ "Post": 6747,
+ "ції": 6748,
+ "▁Vir": 6749,
+ "nek": 6750,
+ "aging": 6751,
+ "▁ок": 6752,
+ "izont": 6753,
+ "▁agosto": 6754,
+ "▁choose": 6755,
+ "▁\r": 6756,
+ "▁systems": 6757,
+ "loss": 6758,
+ "iente": 6759,
+ "▁Cre": 6760,
+ "▁contra": 6761,
+ "ums": 6762,
+ "▁beginning": 6763,
+ "emy": 6764,
+ "istics": 6765,
+ "▁served": 6766,
+ "Down": 6767,
+ "options": 6768,
+ "▁Govern": 6769,
+ "▁BY": 6770,
+ "▁jest": 6771,
+ "té": 6772,
+ "▁continue": 6773,
+ "pers": 6774,
+ "▁easier": 6775,
+ "▁cos": 6776,
+ "esso": 6777,
+ ">>": 6778,
+ "Net": 6779,
+ "▁Bor": 6780,
+ "▁Cr": 6781,
+ "▁transfer": 6782,
+ "▁CSS": 6783,
+ "▁finns": 6784,
+ "▁хо": 6785,
+ "username": 6786,
+ "▁constru": 6787,
+ "▁pain": 6788,
+ "▁Tem": 6789,
+ "▁specified": 6790,
+ "▁brit": 6791,
+ "ские": 6792,
+ "irk": 6793,
+ "rapper": 6794,
+ "▁counter": 6795,
+ "▁[\"": 6796,
+ "oded": 6797,
+ "дан": 6798,
+ "property": 6799,
+ "hard": 6800,
+ "istrict": 6801,
+ ")/": 6802,
+ "▁Pour": 6803,
+ "▁Where": 6804,
+ "▁===": 6805,
+ "▁sowie": 6806,
+ "▁Про": 6807,
+ "▁dess": 6808,
+ "▁tras": 6809,
+ "▁уча": 6810,
+ "▁Over": 6811,
+ "note": 6812,
+ "▁America": 6813,
+ "cp": 6814,
+ "▁grande": 6815,
+ "Me": 6816,
+ ")-": 6817,
+ "Mode": 6818,
+ "▁passing": 6819,
+ "▁giving": 6820,
+ "Cl": 6821,
+ "}/": 6822,
+ "Menu": 6823,
+ "!!": 6824,
+ "angular": 6825,
+ "▁launch": 6826,
+ "varphi": 6827,
+ "▁Johann": 6828,
+ "▁foreach": 6829,
+ "ró": 6830,
+ "sequ": 6831,
+ "ifi": 6832,
+ "Am": 6833,
+ "arp": 6834,
+ "▁buffer": 6835,
+ "▁ni": 6836,
+ "▁mix": 6837,
+ "▁Museum": 6838,
+ "▁meant": 6839,
+ "asi": 6840,
+ "▁kan": 6841,
+ "прав": 6842,
+ "Comp": 6843,
+ "istoire": 6844,
+ "iful": 6845,
+ "jer": 6846,
+ "issions": 6847,
+ "Resource": 6848,
+ "▁воз": 6849,
+ "▁ST": 6850,
+ "▁solutions": 6851,
+ "▁belong": 6852,
+ "▁Associ": 6853,
+ "cf": 6854,
+ "▁Mär": 6855,
+ "▁grid": 6856,
+ "Mult": 6857,
+ "▁requires": 6858,
+ "kk": 6859,
+ "▁teach": 6860,
+ "emeinde": 6861,
+ "▁square": 6862,
+ "▁коман": 6863,
+ "▁Event": 6864,
+ "▁rules": 6865,
+ "▁bur": 6866,
+ "▁eing": 6867,
+ "▁Mai": 6868,
+ "▁nam": 6869,
+ "▁slä": 6870,
+ "hör": 6871,
+ "▁tip": 6872,
+ "▁Literatur": 6873,
+ "▁scope": 6874,
+ "overline": 6875,
+ "▁exit": 6876,
+ ")?": 6877,
+ "bet": 6878,
+ "▁vict": 6879,
+ "Off": 6880,
+ "▁approxim": 6881,
+ "▁Geb": 6882,
+ "ktop": 6883,
+ "heit": 6884,
+ "▁Ю": 6885,
+ "template": 6886,
+ "рон": 6887,
+ "▁uno": 6888,
+ "Serv": 6889,
+ "▁framework": 6890,
+ "operator": 6891,
+ "▁generally": 6892,
+ "▁hundred": 6893,
+ "▁divers": 6894,
+ "ovi": 6895,
+ "▁rés": 6896,
+ "abs": 6897,
+ "▁gal": 6898,
+ "çais": 6899,
+ "▁feet": 6900,
+ "▁virtual": 6901,
+ "czy": 6902,
+ "ску": 6903,
+ "./": 6904,
+ "hu": 6905,
+ "ancy": 6906,
+ "▁recommend": 6907,
+ "▁під": 6908,
+ "▁money": 6909,
+ "▁versions": 6910,
+ "▁helps": 6911,
+ "▁Hor": 6912,
+ "Items": 6913,
+ "look": 6914,
+ "connect": 6915,
+ "anges": 6916,
+ "ViewController": 6917,
+ "elijk": 6918,
+ "▁occup": 6919,
+ "▁editor": 6920,
+ "auto": 6921,
+ "ög": 6922,
+ "▁seconds": 6923,
+ "▁obvious": 6924,
+ "vm": 6925,
+ "akes": 6926,
+ "▁gegen": 6927,
+ "▁til": 6928,
+ "jection": 6929,
+ "лення": 6930,
+ "▁operations": 6931,
+ "▁East": 6932,
+ "ogy": 6933,
+ "▁Polit": 6934,
+ "uten": 6935,
+ "▁Joseph": 6936,
+ "\"`": 6937,
+ "▁Company": 6938,
+ "▁callback": 6939,
+ "▁sen": 6940,
+ "cción": 6941,
+ "▁associated": 6942,
+ "▁containing": 6943,
+ "▁practice": 6944,
+ "elijke": 6945,
+ "oke": 6946,
+ "éra": 6947,
+ "uns": 6948,
+ "anta": 6949,
+ "vey": 6950,
+ "zu": 6951,
+ "▁Bes": 6952,
+ "▁Flor": 6953,
+ "mem": 6954,
+ "ycz": 6955,
+ "▁architect": 6956,
+ "▁anni": 6957,
+ "▁contact": 6958,
+ "YPE": 6959,
+ "▁Cas": 6960,
+ "▁полу": 6961,
+ "ovo": 6962,
+ "▁bring": 6963,
+ "▁concept": 6964,
+ "▁js": 6965,
+ "▁Referencias": 6966,
+ "emble": 6967,
+ "▁н": 6968,
+ "▁supported": 6969,
+ "Big": 6970,
+ "▁Hans": 6971,
+ "erv": 6972,
+ "▁Maj": 6973,
+ "▁arriv": 6974,
+ "▁Have": 6975,
+ "▁probability": 6976,
+ "▁Pop": 6977,
+ "▁Pass": 6978,
+ "token": 6979,
+ "Provider": 6980,
+ "▁Ra": 6981,
+ "Reader": 6982,
+ "ooth": 6983,
+ "lap": 6984,
+ "▁assist": 6985,
+ "adow": 6986,
+ "▁tests": 6987,
+ "сси": 6988,
+ "▁king": 6989,
+ "langle": 6990,
+ "▁Sum": 6991,
+ "OIN": 6992,
+ "▁security": 6993,
+ "nis": 6994,
+ "../": 6995,
+ "▁basic": 6996,
+ "unity": 6997,
+ "`:": 6998,
+ "▁кото": 6999,
+ "kow": 7000,
+ "▁Bibliothèque": 7001,
+ "asion": 7002,
+ "alo": 7003,
+ "ifest": 7004,
+ "▁novembre": 7005,
+ "▁peu": 7006,
+ "▁Ж": 7007,
+ "enschaft": 7008,
+ "clus": 7009,
+ "ју": 7010,
+ "Height": 7011,
+ "ún": 7012,
+ "▁tur": 7013,
+ "▁ideas": 7014,
+ "▁ces": 7015,
+ "frak": 7016,
+ "▁premier": 7017,
+ "itation": 7018,
+ "▁sé": 7019,
+ "HTML": 7020,
+ "▁Royal": 7021,
+ "ської": 7022,
+ "▁byte": 7023,
+ "PS": 7024,
+ "▁segu": 7025,
+ "inen": 7026,
+ "▁Great": 7027,
+ "▁Ку": 7028,
+ "▁external": 7029,
+ "Title": 7030,
+ "Top": 7031,
+ "Process": 7032,
+ "ität": 7033,
+ "▁`/": 7034,
+ "▁secret": 7035,
+ "pository": 7036,
+ "▁potential": 7037,
+ "▁Bud": 7038,
+ "names": 7039,
+ "asons": 7040,
+ "stackexchange": 7041,
+ "background": 7042,
+ "пер": 7043,
+ "сов": 7044,
+ "after": 7045,
+ "▁pero": 7046,
+ "▁software": 7047,
+ "▁sed": 7048,
+ "▁arrays": 7049,
+ "tmp": 7050,
+ "▁asp": 7051,
+ "scale": 7052,
+ "▁Lat": 7053,
+ "anal": 7054,
+ "▁gem": 7055,
+ "PU": 7056,
+ "▁Altri": 7057,
+ "That": 7058,
+ "▁Ни": 7059,
+ "ifact": 7060,
+ "Address": 7061,
+ "▁south": 7062,
+ "▁formula": 7063,
+ "▁Colleg": 7064,
+ "▁ін": 7065,
+ "ktion": 7066,
+ "▁sac": 7067,
+ "SH": 7068,
+ "ajo": 7069,
+ "etc": 7070,
+ "vc": 7071,
+ "`](": 7072,
+ "▁Dur": 7073,
+ "▁Ме": 7074,
+ "▁Smith": 7075,
+ "items": 7076,
+ "CK": 7077,
+ "elo": 7078,
+ "▁plugin": 7079,
+ "▁serie": 7080,
+ "ienne": 7081,
+ "▁или": 7082,
+ "Mar": 7083,
+ "▁Image": 7084,
+ "got": 7085,
+ "andas": 7086,
+ "▁matches": 7087,
+ "▁worth": 7088,
+ "▁Deb": 7089,
+ "▁cache": 7090,
+ "▁felt": 7091,
+ "ersch": 7092,
+ "izes": 7093,
+ "Oper": 7094,
+ "▁Jahre": 7095,
+ "▁commune": 7096,
+ "thread": 7097,
+ "▁ny": 7098,
+ "dec": 7099,
+ "ouw": 7100,
+ "▁surface": 7101,
+ "▁Por": 7102,
+ "▁Street": 7103,
+ "при": 7104,
+ "▁candid": 7105,
+ "▁Return": 7106,
+ "▁Kom": 7107,
+ "gru": 7108,
+ "▁ти": 7109,
+ "[\\": 7110,
+ "▁depends": 7111,
+ "▁influ": 7112,
+ "▁towards": 7113,
+ "ained": 7114,
+ "▁rank": 7115,
+ "▁Januar": 7116,
+ "▁components": 7117,
+ "gest": 7118,
+ "getElementById": 7119,
+ "▁checked": 7120,
+ "airs": 7121,
+ "join": 7122,
+ "▁dead": 7123,
+ "▁hit": 7124,
+ "ény": 7125,
+ "▁equivalent": 7126,
+ "▁Пре": 7127,
+ "▁appropri": 7128,
+ "Pass": 7129,
+ "▁primer": 7130,
+ "englisch": 7131,
+ "▁appar": 7132,
+ "▁During": 7133,
+ "▁knowledge": 7134,
+ "▁trigger": 7135,
+ "▁core": 7136,
+ "▁Ol": 7137,
+ "▁Produ": 7138,
+ "▁Fern": 7139,
+ "▁нача": 7140,
+ "Te": 7141,
+ "▁Mot": 7142,
+ "erve": 7143,
+ "тво": 7144,
+ "▁mid": 7145,
+ "▁finally": 7146,
+ "aires": 7147,
+ "▁especially": 7148,
+ "▁tut": 7149,
+ "▁receive": 7150,
+ "adre": 7151,
+ "▁neigh": 7152,
+ "ktet": 7153,
+ "ilde": 7154,
+ "▁radio": 7155,
+ "▁driver": 7156,
+ "лись": 7157,
+ "endencies": 7158,
+ "▁IE": 7159,
+ "▁saved": 7160,
+ "ffect": 7161,
+ "▁Wayback": 7162,
+ "iat": 7163,
+ "▁padding": 7164,
+ "window": 7165,
+ "тиче": 7166,
+ "▁mur": 7167,
+ "actor": 7168,
+ "▁Han": 7169,
+ "ональ": 7170,
+ "▁gar": 7171,
+ "▁familjen": 7172,
+ "ós": 7173,
+ "▁nationale": 7174,
+ "▁pré": 7175,
+ "ded": 7176,
+ "onal": 7177,
+ "▁President": 7178,
+ "▁\\,": 7179,
+ "▁placed": 7180,
+ "erni": 7181,
+ "▁signal": 7182,
+ "nab": 7183,
+ "hm": 7184,
+ "Mon": 7185,
+ "▁vs": 7186,
+ "SC": 7187,
+ "▁progetti": 7188,
+ "▁Ü": 7189,
+ "▁forms": 7190,
+ "▁messages": 7191,
+ "inf": 7192,
+ "users": 7193,
+ "GET": 7194,
+ "▁dels": 7195,
+ "Collection": 7196,
+ "▁Good": 7197,
+ "▁Maybe": 7198,
+ "▁compr": 7199,
+ "▁larger": 7200,
+ "gres": 7201,
+ "aper": 7202,
+ "▁При": 7203,
+ "undes": 7204,
+ "▁sea": 7205,
+ "▁Spring": 7206,
+ "ulo": 7207,
+ "▁mechan": 7208,
+ "▁sans": 7209,
+ "GB": 7210,
+ "Valid": 7211,
+ "▁communic": 7212,
+ "▁pra": 7213,
+ "vier": 7214,
+ "▁Се": 7215,
+ "▁ain": 7216,
+ "тура": 7217,
+ "kom": 7218,
+ "skiego": 7219,
+ "ково": 7220,
+ "adata": 7221,
+ "▁Ре": 7222,
+ "▁boolean": 7223,
+ "sets": 7224,
+ "▁effort": 7225,
+ ".[": 7226,
+ "▁został": 7227,
+ "PA": 7228,
+ "▁Vict": 7229,
+ "SD": 7230,
+ "ował": 7231,
+ "▁emb": 7232,
+ "▁prima": 7233,
+ "▁hour": 7234,
+ "subsection": 7235,
+ "▁Fort": 7236,
+ "mathfrak": 7237,
+ "igin": 7238,
+ "GL": 7239,
+ ")+": 7240,
+ "fi": 7241,
+ "▁anci": 7242,
+ "▁pan": 7243,
+ "\\)": 7244,
+ "▁lug": 7245,
+ "▁deploy": 7246,
+ "domain": 7247,
+ "▁slight": 7248,
+ "JSON": 7249,
+ "▁morning": 7250,
+ "▁hi": 7251,
+ "▁compare": 7252,
+ "ije": 7253,
+ "▁blue": 7254,
+ "▁Ac": 7255,
+ "▁middle": 7256,
+ "anden": 7257,
+ "▁shared": 7258,
+ "▁Camp": 7259,
+ "▁Á": 7260,
+ "ounded": 7261,
+ "uw": 7262,
+ "ierung": 7263,
+ "Stack": 7264,
+ "▁eines": 7265,
+ "▁Da": 7266,
+ "lij": 7267,
+ "enti": 7268,
+ "▁й": 7269,
+ "Util": 7270,
+ "▁experience": 7271,
+ "▁await": 7272,
+ "uls": 7273,
+ "▁requests": 7274,
+ "▁impos": 7275,
+ "▁constraint": 7276,
+ "Change": 7277,
+ "emph": 7278,
+ "бер": 7279,
+ "▁Another": 7280,
+ "Custom": 7281,
+ "▁significant": 7282,
+ "cr": 7283,
+ "▁million": 7284,
+ "reek": 7285,
+ "▁dalla": 7286,
+ "▁Germ": 7287,
+ "otal": 7288,
+ "ateur": 7289,
+ "btn": 7290,
+ "▁thinking": 7291,
+ "▁interval": 7292,
+ "onne": 7293,
+ "▁liv": 7294,
+ "():": 7295,
+ "▁Ве": 7296,
+ "oe": 7297,
+ "▁Ev": 7298,
+ "meta": 7299,
+ "▁broad": 7300,
+ "Rem": 7301,
+ "apply": 7302,
+ "▁couple": 7303,
+ "▁techni": 7304,
+ "idades": 7305,
+ "▁goal": 7306,
+ "▁CD": 7307,
+ "hab": 7308,
+ "▁explan": 7309,
+ "anner": 7310,
+ "▁Because": 7311,
+ "blog": 7312,
+ "includegraphics": 7313,
+ "▁voice": 7314,
+ "▁Map": 7315,
+ "vention": 7316,
+ "Session": 7317,
+ "▁Liens": 7318,
+ "▁sor": 7319,
+ "category": 7320,
+ "ashington": 7321,
+ "▁März": 7322,
+ "pop": 7323,
+ "illet": 7324,
+ "▁zwei": 7325,
+ "▁Lie": 7326,
+ "Null": 7327,
+ "address": 7328,
+ "▁factor": 7329,
+ "▁ligne": 7330,
+ "▁HTTP": 7331,
+ "▁suf": 7332,
+ "▁personal": 7333,
+ "cip": 7334,
+ "▁Dar": 7335,
+ "▁adm": 7336,
+ "кой": 7337,
+ "▁Ext": 7338,
+ "▁god": 7339,
+ "aa": 7340,
+ "Right": 7341,
+ "été": 7342,
+ "▁dynamic": 7343,
+ "▁maintain": 7344,
+ "tor": 7345,
+ "########": 7346,
+ "▁Fra": 7347,
+ "▁choice": 7348,
+ "▁сто": 7349,
+ "СР": 7350,
+ "▁Feder": 7351,
+ "ston": 7352,
+ "▁flag": 7353,
+ "kit": 7354,
+ "Module": 7355,
+ "▁спо": 7356,
+ "▁Stra": 7357,
+ "icks": 7358,
+ "▁haven": 7359,
+ "▁Mass": 7360,
+ "▁Emp": 7361,
+ "▁Pi": 7362,
+ "▁Pen": 7363,
+ "Rect": 7364,
+ "▁Kr": 7365,
+ "itat": 7366,
+ "eler": 7367,
+ "ября": 7368,
+ "itet": 7369,
+ "▁Start": 7370,
+ "▁produced": 7371,
+ "▁пол": 7372,
+ "(_": 7373,
+ "▁delet": 7374,
+ "▁hot": 7375,
+ "▁Geschichte": 7376,
+ "~~": 7377,
+ "▁months": 7378,
+ "▁tod": 7379,
+ "▁ни": 7380,
+ "ús": 7381,
+ "temp": 7382,
+ "▁Dez": 7383,
+ "ypes": 7384,
+ "▁cui": 7385,
+ "ommun": 7386,
+ "actions": 7387,
+ "▁eigen": 7388,
+ "▁immediately": 7389,
+ "PL": 7390,
+ "▁Го": 7391,
+ "▁Bal": 7392,
+ "ље": 7393,
+ "ului": 7394,
+ "▁online": 7395,
+ "▁años": 7396,
+ "▁namespace": 7397,
+ "▁mond": 7398,
+ "▁Base": 7399,
+ "▁Canada": 7400,
+ "etzt": 7401,
+ "}-": 7402,
+ "▁defin": 7403,
+ "▁doubt": 7404,
+ "▁investig": 7405,
+ "views": 7406,
+ "▁Line": 7407,
+ "▁stage": 7408,
+ "ettings": 7409,
+ "ubre": 7410,
+ "float": 7411,
+ "▁Play": 7412,
+ "▁Las": 7413,
+ "ptr": 7414,
+ "▁becomes": 7415,
+ "estamp": 7416,
+ "▁independent": 7417,
+ "▁analysis": 7418,
+ "▁Look": 7419,
+ "lain": 7420,
+ "▁рас": 7421,
+ "Reference": 7422,
+ "▁sorry": 7423,
+ "▁supposed": 7424,
+ "ût": 7425,
+ "▁degree": 7426,
+ "utz": 7427,
+ "MM": 7428,
+ "▁desired": 7429,
+ "ły": 7430,
+ "▁len": 7431,
+ "▁alone": 7432,
+ "signed": 7433,
+ "▁Sta": 7434,
+ "Person": 7435,
+ "▁applied": 7436,
+ "▁Back": 7437,
+ "▁mars": 7438,
+ "Part": 7439,
+ "▁Did": 7440,
+ "▁externes": 7441,
+ "▁np": 7442,
+ "ongo": 7443,
+ "▁esta": 7444,
+ "Block": 7445,
+ "▁pou": 7446,
+ "adores": 7447,
+ "▁Studio": 7448,
+ ".$": 7449,
+ "▁reached": 7450,
+ "bot": 7451,
+ "▁Juni": 7452,
+ "tons": 7453,
+ "itel": 7454,
+ "▁Gar": 7455,
+ "▁articles": 7456,
+ "▁District": 7457,
+ "▁trouble": 7458,
+ "lide": 7459,
+ "▁Found": 7460,
+ "ád": 7461,
+ "▁equip": 7462,
+ "▁internal": 7463,
+ "'],": 7464,
+ "▁async": 7465,
+ "UB": 7466,
+ "gel": 7467,
+ "▁ai": 7468,
+ "ensure": 7469,
+ "▁appeared": 7470,
+ "▁$_": 7471,
+ "▁maximum": 7472,
+ "▁Си": 7473,
+ "рь": 7474,
+ "▁announ": 7475,
+ "лась": 7476,
+ "▁cm": 7477,
+ "ган": 7478,
+ "aupt": 7479,
+ "▁latter": 7480,
+ "▁platform": 7481,
+ "▁dra": 7482,
+ "▁capital": 7483,
+ "▁solved": 7484,
+ "riz": 7485,
+ "edic": 7486,
+ "▁Mur": 7487,
+ "▁Top": 7488,
+ "тся": 7489,
+ "Panel": 7490,
+ "rule": 7491,
+ "etic": 7492,
+ "▁Ren": 7493,
+ "▁Wikimedia": 7494,
+ "▁TO": 7495,
+ "second": 7496,
+ "isl": 7497,
+ "▁hy": 7498,
+ "▁niet": 7499,
+ "▁loaded": 7500,
+ "dig": 7501,
+ "▁mayo": 7502,
+ "[:": 7503,
+ "Acc": 7504,
+ "▁bek": 7505,
+ "нию": 7506,
+ "login": 7507,
+ "tx": 7508,
+ "▁Fur": 7509,
+ "▁Santa": 7510,
+ "azz": 7511,
+ "▁conduct": 7512,
+ "▁India": 7513,
+ "Order": 7514,
+ "irth": 7515,
+ "tw": 7516,
+ "}+": 7517,
+ "▁wieder": 7518,
+ "▁Edu": 7519,
+ "AV": 7520,
+ "▁```": 7521,
+ "▁manually": 7522,
+ "▁Read": 7523,
+ "fortunately": 7524,
+ "▁Run": 7525,
+ "▁Award": 7526,
+ "▁Foot": 7527,
+ "*)": 7528,
+ "params": 7529,
+ "пі": 7530,
+ "▁native": 7531,
+ "rift": 7532,
+ "▁ä": 7533,
+ "ATH": 7534,
+ "▁yourself": 7535,
+ "▁prior": 7536,
+ "▁cit": 7537,
+ "äh": 7538,
+ "▁treat": 7539,
+ "▁meas": 7540,
+ "ributed": 7541,
+ "▁clar": 7542,
+ "card": 7543,
+ "ROR": 7544,
+ "illes": 7545,
+ "▁layer": 7546,
+ "auer": 7547,
+ "▁rat": 7548,
+ "bernate": 7549,
+ "▁stato": 7550,
+ "▁China": 7551,
+ "▁$('#": 7552,
+ "▁naar": 7553,
+ "zip": 7554,
+ "▁${\\": 7555,
+ "▁appreciated": 7556,
+ "▁име": 7557,
+ "ży": 7558,
+ "▁przez": 7559,
+ "▁Indian": 7560,
+ "▁Tod": 7561,
+ "▁Source": 7562,
+ "▁други": 7563,
+ "internal": 7564,
+ "ionale": 7565,
+ "Product": 7566,
+ "▁Men": 7567,
+ "▁upper": 7568,
+ "▁Every": 7569,
+ "},\\": 7570,
+ "▁printf": 7571,
+ "▁continued": 7572,
+ "▁nodes": 7573,
+ "лки": 7574,
+ "▁nice": 7575,
+ "modules": 7576,
+ "eign": 7577,
+ "▁Mex": 7578,
+ "▁According": 7579,
+ "▁undefined": 7580,
+ "▁binary": 7581,
+ "cut": 7582,
+ "Current": 7583,
+ "edy": 7584,
+ "}}{": 7585,
+ "bles": 7586,
+ "▁вой": 7587,
+ "scri": 7588,
+ "eqn": 7589,
+ "Changed": 7590,
+ "▁köz": 7591,
+ "▁remote": 7592,
+ "вля": 7593,
+ "▁quel": 7594,
+ "▁align": 7595,
+ "▁пар": 7596,
+ "SV": 7597,
+ "yer": 7598,
+ "▁Californ": 7599,
+ "▁places": 7600,
+ "▁primary": 7601,
+ "▁conv": 7602,
+ "▁Juli": 7603,
+ "▁visual": 7604,
+ "▁Select": 7605,
+ "atory": 7606,
+ "=(": 7607,
+ "iser": 7608,
+ "▁intent": 7609,
+ "sur": 7610,
+ "container": 7611,
+ "iced": 7612,
+ "▁board": 7613,
+ "astr": 7614,
+ "omial": 7615,
+ "вет": 7616,
+ "зва": 7617,
+ "▁cru": 7618,
+ "▁Oktober": 7619,
+ "save": 7620,
+ "▁greater": 7621,
+ "▁inn": 7622,
+ "▁picture": 7623,
+ "▁То": 7624,
+ "▁obtained": 7625,
+ "Wikimedia": 7626,
+ "úblic": 7627,
+ "▁lors": 7628,
+ "▁mont": 7629,
+ "obre": 7630,
+ "▁civil": 7631,
+ "▁construction": 7632,
+ "▁Welt": 7633,
+ "▁Under": 7634,
+ "undert": 7635,
+ "▁edge": 7636,
+ "▁Liste": 7637,
+ "csv": 7638,
+ "▁experiment": 7639,
+ "localhost": 7640,
+ "▁Edit": 7641,
+ "greg": 7642,
+ "ová": 7643,
+ "ља": 7644,
+ "msg": 7645,
+ "▁Green": 7646,
+ "Dialog": 7647,
+ "Ident": 7648,
+ "▁JS": 7649,
+ "^{(": 7650,
+ "▁släktet": 7651,
+ "____": 7652,
+ "Project": 7653,
+ "▁beskre": 7654,
+ "▁ber": 7655,
+ "▁wouldn": 7656,
+ "▁react": 7657,
+ "Hel": 7658,
+ "zw": 7659,
+ "▁Washington": 7660,
+ "orie": 7661,
+ "task": 7662,
+ "▁category": 7663,
+ "▁artist": 7664,
+ "anno": 7665,
+ "▁ook": 7666,
+ "ammen": 7667,
+ "▁Minister": 7668,
+ "▁declar": 7669,
+ "▁Key": 7670,
+ ",.": 7671,
+ "▁mach": 7672,
+ "▁ww": 7673,
+ "isen": 7674,
+ "Fran": 7675,
+ "▁Росси": 7676,
+ "бор": 7677,
+ "три": 7678,
+ "▁rock": 7679,
+ "quis": 7680,
+ "mos": 7681,
+ "пера": 7682,
+ "▁esterni": 7683,
+ "▁gold": 7684,
+ "Windows": 7685,
+ "%%": 7686,
+ "▁partial": 7687,
+ "▁weight": 7688,
+ "▁spr": 7689,
+ "}).": 7690,
+ "▁français": 7691,
+ "fun": 7692,
+ "▁thous": 7693,
+ "holder": 7694,
+ "▁gone": 7695,
+ "▁Č": 7696,
+ "▁rend": 7697,
+ "DA": 7698,
+ "▁answered": 7699,
+ "▁False": 7700,
+ "Buffer": 7701,
+ "▁daugh": 7702,
+ ".--": 7703,
+ "▁Show": 7704,
+ "▁rect": 7705,
+ "▁Kre": 7706,
+ "dr": 7707,
+ "osoph": 7708,
+ "▁yield": 7709,
+ "urity": 7710,
+ "toString": 7711,
+ "aval": 7712,
+ "Pol": 7713,
+ "▁lock": 7714,
+ "imation": 7715,
+ "antic": 7716,
+ "Local": 7717,
+ "▁beskrevs": 7718,
+ "ités": 7719,
+ "grid": 7720,
+ "ут": 7721,
+ "▁_{": 7722,
+ "сі": 7723,
+ "FILE": 7724,
+ "▁км": 7725,
+ "▁speak": 7726,
+ "summary": 7727,
+ "prop": 7728,
+ "javascript": 7729,
+ "zk": 7730,
+ "izontal": 7731,
+ "▁trois": 7732,
+ "▁Rod": 7733,
+ "prise": 7734,
+ "рово": 7735,
+ "▁odd": 7736,
+ "▁gest": 7737,
+ "▁produce": 7738,
+ "▁waar": 7739,
+ "▁Av": 7740,
+ "ribu": 7741,
+ "вання": 7742,
+ "▁finished": 7743,
+ "▁adapt": 7744,
+ "▁Sar": 7745,
+ "textit": 7746,
+ "▁Ce": 7747,
+ "▁Fa": 7748,
+ "osen": 7749,
+ "▁deriv": 7750,
+ "▁ship": 7751,
+ "▁opin": 7752,
+ "▁Even": 7753,
+ "gesch": 7754,
+ "▁suppose": 7755,
+ "▁Fer": 7756,
+ "ское": 7757,
+ "▁worden": 7758,
+ "sey": 7759,
+ "hline": 7760,
+ "▁Union": 7761,
+ "▁/**": 7762,
+ "▁vez": 7763,
+ "▁Collegamenti": 7764,
+ "▁Society": 7765,
+ "▁econom": 7766,
+ "ší": 7767,
+ "oi": 7768,
+ "▁orient": 7769,
+ "▁Teil": 7770,
+ "rent": 7771,
+ "лекс": 7772,
+ "▁solid": 7773,
+ "▁cart": 7774,
+ "****************": 7775,
+ "▁cab": 7776,
+ "▁Message": 7777,
+ "dots": 7778,
+ "▁ég": 7779,
+ "▁twe": 7780,
+ "aga": 7781,
+ "▁naz": 7782,
+ "▁Microsoft": 7783,
+ "▁underarter": 7784,
+ "ppen": 7785,
+ "▁recent": 7786,
+ "▁net": 7787,
+ "▁resources": 7788,
+ "Ste": 7789,
+ ".\\": 7790,
+ "▁SO": 7791,
+ "лом": 7792,
+ "▁cele": 7793,
+ "▁lic": 7794,
+ "▁benef": 7795,
+ "ldots": 7796,
+ "▁serial": 7797,
+ "Integer": 7798,
+ "cles": 7799,
+ "▁miles": 7800,
+ "▁Ale": 7801,
+ "▁entered": 7802,
+ "▁Two": 7803,
+ "wie": 7804,
+ "▁includes": 7805,
+ "▁Each": 7806,
+ "elling": 7807,
+ "quer": 7808,
+ "▁Dom": 7809,
+ "pf": 7810,
+ "WS": 7811,
+ "▁straight": 7812,
+ "▁Stan": 7813,
+ "▁nos": 7814,
+ "ícul": 7815,
+ "atro": 7816,
+ "▁Center": 7817,
+ "FT": 7818,
+ "▁Inga": 7819,
+ "ilo": 7820,
+ "▁www": 7821,
+ "jsfiddle": 7822,
+ "nic": 7823,
+ "▁European": 7824,
+ "▁commer": 7825,
+ "▁girl": 7826,
+ "total": 7827,
+ "▁Star": 7828,
+ "▁suggested": 7829,
+ "pal": 7830,
+ "▁zwischen": 7831,
+ "писа": 7832,
+ "IM": 7833,
+ "▁handler": 7834,
+ "▁Program": 7835,
+ "xsl": 7836,
+ "ály": 7837,
+ "BU": 7838,
+ ",--": 7839,
+ "▁vid": 7840,
+ "▁established": 7841,
+ "▁Spiel": 7842,
+ "ometry": 7843,
+ "unes": 7844,
+ "▁sit": 7845,
+ "▁inher": 7846,
+ "▁puis": 7847,
+ "▁être": 7848,
+ "▁Most": 7849,
+ "Header": 7850,
+ "insert": 7851,
+ "▁sist": 7852,
+ "▁favor": 7853,
+ "dest": 7854,
+ "▁entity": 7855,
+ "Cal": 7856,
+ "▁Therefore": 7857,
+ "DD": 7858,
+ ";;": 7859,
+ "▁Dezember": 7860,
+ "▁Rh": 7861,
+ "iments": 7862,
+ "▁returning": 7863,
+ "sto": 7864,
+ "▁Value": 7865,
+ "▁liber": 7866,
+ "▁Result": 7867,
+ "▁bind": 7868,
+ "voir": 7869,
+ "▁Tim": 7870,
+ "▁Movie": 7871,
+ "weg": 7872,
+ "ket": 7873,
+ "▁исто": 7874,
+ "▁friends": 7875,
+ "▁fn": 7876,
+ "▁él": 7877,
+ "▁&=": 7878,
+ "arden": 7879,
+ "fficial": 7880,
+ "▁community": 7881,
+ "▁api": 7882,
+ "Args": 7883,
+ "ieren": 7884,
+ "▁dann": 7885,
+ "omorph": 7886,
+ "adr": 7887,
+ "loop": 7888,
+ "uman": 7889,
+ "▁vous": 7890,
+ "bst": 7891,
+ "submit": 7892,
+ "\\|": 7893,
+ "тин": 7894,
+ "Container": 7895,
+ "asket": 7896,
+ "?)": 7897,
+ "Sec": 7898,
+ "▁drive": 7899,
+ "Ass": 7900,
+ "▁swe": 7901,
+ "▁amer": 7902,
+ "▁mine": 7903,
+ "▁Ham": 7904,
+ "▁avait": 7905,
+ "▁Hon": 7906,
+ "▁après": 7907,
+ "▁Mann": 7908,
+ "ська": 7909,
+ "▁increase": 7910,
+ "▁ty": 7911,
+ "sky": 7912,
+ "▁accur": 7913,
+ "article": 7914,
+ "weight": 7915,
+ "▁sex": 7916,
+ "▁listade": 7917,
+ "/**": 7918,
+ "▁está": 7919,
+ "}}$": 7920,
+ "argo": 7921,
+ "define": 7922,
+ "▁состав": 7923,
+ "session": 7924,
+ "ads": 7925,
+ "стви": 7926,
+ "▁Law": 7927,
+ "▁dialog": 7928,
+ "▁duplicate": 7929,
+ "▁ép": 7930,
+ "▁voc": 7931,
+ "fri": 7932,
+ "▁green": 7933,
+ "▁hidden": 7934,
+ "▁Island": 7935,
+ "▁diag": 7936,
+ "owej": 7937,
+ "mysql": 7938,
+ "teil": 7939,
+ "rä": 7940,
+ "ikan": 7941,
+ "▁José": 7942,
+ "aled": 7943,
+ "Runtime": 7944,
+ "▁train": 7945,
+ "▁Division": 7946,
+ "ниц": 7947,
+ "▁Span": 7948,
+ "нима": 7949,
+ ")=\\": 7950,
+ "тан": 7951,
+ "▁stay": 7952,
+ "▁foo": 7953,
+ "▁accom": 7954,
+ "▁hers": 7955,
+ "▁нау": 7956,
+ "▁Mün": 7957,
+ "ideos": 7958,
+ "static": 7959,
+ "▁ready": 7960,
+ "]`": 7961,
+ "▁visible": 7962,
+ "▁Hope": 7963,
+ "ulated": 7964,
+ "▁Cult": 7965,
+ "стро": 7966,
+ "Co": 7967,
+ "▁smaller": 7968,
+ "atura": 7969,
+ "▁perfectly": 7970,
+ "req": 7971,
+ "▁proposed": 7972,
+ "▁degli": 7973,
+ "Search": 7974,
+ "▁ich": 7975,
+ "Max": 7976,
+ "▁volume": 7977,
+ "execute": 7978,
+ "gre": 7979,
+ "▁sport": 7980,
+ "udad": 7981,
+ "PT": 7982,
+ "▁Records": 7983,
+ "▁cook": 7984,
+ "▁expand": 7985,
+ "бі": 7986,
+ "▁altri": 7987,
+ "ppet": 7988,
+ "arse": 7989,
+ "▁wet": 7990,
+ "▁Bob": 7991,
+ "▁FC": 7992,
+ "▁Association": 7993,
+ "uje": 7994,
+ "▁fel": 7995,
+ "▁слу": 7996,
+ "▁Big": 7997,
+ "/\\": 7998,
+ "Ge": 7999,
+ "while": 8000,
+ "{(": 8001,
+ "▁sufficient": 8002,
+ "Position": 8003,
+ "▁understanding": 8004,
+ "▁nue": 8005,
+ "▁raz": 8006,
+ "▁ye": 8007,
+ "hem": 8008,
+ "Num": 8009,
+ "▁Project": 8010,
+ "▁Its": 8011,
+ "▁hasta": 8012,
+ "enso": 8013,
+ "▁wire": 8014,
+ "Ret": 8015,
+ "uj": 8016,
+ "proof": 8017,
+ "▁relevant": 8018,
+ "▁partir": 8019,
+ "▁ago": 8020,
+ "ificate": 8021,
+ "▁domin": 8022,
+ "▁boy": 8023,
+ "▁plant": 8024,
+ "▁encoding": 8025,
+ "▁throws": 8026,
+ "▁Rock": 8027,
+ "zone": 8028,
+ "gang": 8029,
+ "widget": 8030,
+ "▁interesting": 8031,
+ "DER": 8032,
+ "▁demon": 8033,
+ "▁office": 8034,
+ "amt": 8035,
+ "äter": 8036,
+ "▁White": 8037,
+ "▁versch": 8038,
+ "▁dieser": 8039,
+ "▁Mount": 8040,
+ "▁students": 8041,
+ "▁Pub": 8042,
+ "▁Де": 8043,
+ "ija": 8044,
+ "▁Cy": 8045,
+ "▁California": 8046,
+ "▁abril": 8047,
+ "äll": 8048,
+ "▁чем": 8049,
+ "TV": 8050,
+ "▁més": 8051,
+ "▁declared": 8052,
+ "▁ю": 8053,
+ "ől": 8054,
+ "appa": 8055,
+ "▁Бе": 8056,
+ "echo": 8057,
+ "numer": 8058,
+ "▁posted": 8059,
+ "▁вер": 8060,
+ "▁године": 8061,
+ "▁weak": 8062,
+ "▁Republic": 8063,
+ "▁champion": 8064,
+ "ensuremath": 8065,
+ "your": 8066,
+ "▁Ober": 8067,
+ "▁Central": 8068,
+ "isa": 8069,
+ "анд": 8070,
+ "yy": 8071,
+ "▁fully": 8072,
+ "▁SD": 8073,
+ "▁Linux": 8074,
+ "▁Scott": 8075,
+ "partment": 8076,
+ "kon": 8077,
+ "▁contract": 8078,
+ "▁OF": 8079,
+ "▁ale": 8080,
+ "▁Ann": 8081,
+ "▁над": 8082,
+ "lah": 8083,
+ "▁Next": 8084,
+ "oren": 8085,
+ "▁disk": 8086,
+ "▁eg": 8087,
+ "atu": 8088,
+ "логи": 8089,
+ "▁games": 8090,
+ "Left": 8091,
+ "▁lu": 8092,
+ "▁finite": 8093,
+ "▁ки": 8094,
+ "▁crash": 8095,
+ "pher": 8096,
+ "exe": 8097,
+ "ATION": 8098,
+ "▁brother": 8099,
+ "Eng": 8100,
+ "tat": 8101,
+ "▁Integer": 8102,
+ "ному": 8103,
+ "▁colon": 8104,
+ "iqu": 8105,
+ ")).": 8106,
+ "ivi": 8107,
+ "▁Method": 8108,
+ "arten": 8109,
+ "Uni": 8110,
+ "vector": 8111,
+ "▁wood": 8112,
+ "рт": 8113,
+ "▁Ле": 8114,
+ "▁siècle": 8115,
+ "▁gent": 8116,
+ "}\r": 8117,
+ "▁contents": 8118,
+ "▁compan": 8119,
+ "Go": 8120,
+ "▁jou": 8121,
+ "uent": 8122,
+ "Async": 8123,
+ "printf": 8124,
+ "▁Model": 8125,
+ "▁kept": 8126,
+ "ASE": 8127,
+ "▁provides": 8128,
+ "▁Abgerufen": 8129,
+ "▁Gall": 8130,
+ "▁Alf": 8131,
+ "SA": 8132,
+ "▁Mem": 8133,
+ "▁kter": 8134,
+ "▁Bru": 8135,
+ "Android": 8136,
+ "(:": 8137,
+ "▁Украї": 8138,
+ "Ne": 8139,
+ "Min": 8140,
+ "atr": 8141,
+ "▁Hal": 8142,
+ "delete": 8143,
+ "odo": 8144,
+ "▁não": 8145,
+ "ène": 8146,
+ "▁calculate": 8147,
+ "Json": 8148,
+ "keys": 8149,
+ "ней": 8150,
+ "▁hence": 8151,
+ "▁ow": 8152,
+ "▁Lib": 8153,
+ "eno": 8154,
+ "▁Love": 8155,
+ "osi": 8156,
+ "wide": 8157,
+ "▁score": 8158,
+ "full": 8159,
+ "вод": 8160,
+ "▁determine": 8161,
+ "▁spaces": 8162,
+ "лова": 8163,
+ "▁peut": 8164,
+ "éral": 8165,
+ "ół": 8166,
+ "▁appoint": 8167,
+ "▁Tw": 8168,
+ "": 8169,
+ "▁Order": 8170,
+ "▁hop": 8171,
+ "random": 8172,
+ "cache": 8173,
+ "▁destroy": 8174,
+ "▁race": 8175,
+ "Tag": 8176,
+ "▁rid": 8177,
+ "▁negative": 8178,
+ "Car": 8179,
+ "ensional": 8180,
+ "dk": 8181,
+ "▁cro": 8182,
+ "▁THEN": 8183,
+ "▁$.": 8184,
+ "ensk": 8185,
+ "NE": 8186,
+ "HO": 8187,
+ "▁kle": 8188,
+ "ospital": 8189,
+ "kte": 8190,
+ "férences": 8191,
+ "udes": 8192,
+ "IR": 8193,
+ "otion": 8194,
+ "▁Real": 8195,
+ "▁Februar": 8196,
+ "ин": 8197,
+ "▁Old": 8198,
+ "кого": 8199,
+ "leich": 8200,
+ "▁р": 8201,
+ "ían": 8202,
+ "▁га": 8203,
+ "cide": 8204,
+ "lab": 8205,
+ "▁pull": 8206,
+ "▁'/": 8207,
+ "Long": 8208,
+ ",$": 8209,
+ "▁appropriate": 8210,
+ "▁была": 8211,
+ "führ": 8212,
+ "▁Media": 8213,
+ "▁manner": 8214,
+ "▁Ге": 8215,
+ "description": 8216,
+ "Bean": 8217,
+ "▁Lar": 8218,
+ "'];": 8219,
+ "▁relation": 8220,
+ "▁Sorry": 8221,
+ "har": 8222,
+ "cpp": 8223,
+ "▁Ko": 8224,
+ "▁execution": 8225,
+ "inos": 8226,
+ "▁bul": 8227,
+ "grade": 8228,
+ "▁Mu": 8229,
+ "▁pil": 8230,
+ "writ": 8231,
+ "ifications": 8232,
+ "inese": 8233,
+ "▁Phili": 8234,
+ "dx": 8235,
+ "▁leading": 8236,
+ "▁Journal": 8237,
+ "oved": 8238,
+ "▁contro": 8239,
+ "нова": 8240,
+ "Yes": 8241,
+ "▁channel": 8242,
+ ")),": 8243,
+ "isten": 8244,
+ "aka": 8245,
+ "ToString": 8246,
+ "mas": 8247,
+ "▁ett": 8248,
+ "▁forces": 8249,
+ "ulations": 8250,
+ "▁Call": 8251,
+ "▁explanation": 8252,
+ "oring": 8253,
+ "ATA": 8254,
+ "chter": 8255,
+ "when": 8256,
+ "VC": 8257,
+ "▁Jahrh": 8258,
+ "Case": 8259,
+ "▁commands": 8260,
+ "▁rich": 8261,
+ "bus": 8262,
+ "Fe": 8263,
+ "mbox": 8264,
+ "▁recon": 8265,
+ "ño": 8266,
+ "▁shape": 8267,
+ "owy": 8268,
+ "entry": 8269,
+ "itable": 8270,
+ "▁election": 8271,
+ "ється": 8272,
+ "▁prep": 8273,
+ "vá": 8274,
+ "▁infin": 8275,
+ "lot": 8276,
+ "▁books": 8277,
+ "▁USA": 8278,
+ "лин": 8279,
+ "▁pom": 8280,
+ "▁nas": 8281,
+ "▁tags": 8282,
+ "▁executed": 8283,
+ "aille": 8284,
+ "lung": 8285,
+ "▁JavaScript": 8286,
+ "▁ball": 8287,
+ "▁ainsi": 8288,
+ "▁Pri": 8289,
+ "{$": 8290,
+ "▁UN": 8291,
+ "▁Ram": 8292,
+ "▁hear": 8293,
+ "▁Ubuntu": 8294,
+ ">();": 8295,
+ "▁pure": 8296,
+ "▁embed": 8297,
+ "ação": 8298,
+ "controller": 8299,
+ "▁married": 8300,
+ "▁Fol": 8301,
+ "famil": 8302,
+ "▁prec": 8303,
+ "▁recurs": 8304,
+ "pad": 8305,
+ "istration": 8306,
+ "▁respectively": 8307,
+ "[$": 8308,
+ "autor": 8309,
+ "▁grav": 8310,
+ "iera": 8311,
+ "azioni": 8312,
+ "▁Bul": 8313,
+ "▁Australia": 8314,
+ "mond": 8315,
+ "▁Tro": 8316,
+ "▁Ele": 8317,
+ "packages": 8318,
+ "msdn": 8319,
+ "▁Als": 8320,
+ "▁przy": 8321,
+ "ART": 8322,
+ "▁charge": 8323,
+ "▁applications": 8324,
+ "Unit": 8325,
+ "aren": 8326,
+ "▁sudden": 8327,
+ "ometer": 8328,
+ "▁dot": 8329,
+ "acji": 8330,
+ "ктор": 8331,
+ "imin": 8332,
+ "ening": 8333,
+ "▁donde": 8334,
+ "▁Ho": 8335,
+ "tree": 8336,
+ "mb": 8337,
+ "▁drag": 8338,
+ "aje": 8339,
+ "▁invalid": 8340,
+ "▁finish": 8341,
+ "laim": 8342,
+ "▁feed": 8343,
+ "▁Nap": 8344,
+ "room": 8345,
+ "images": 8346,
+ "▁сай": 8347,
+ "▁succ": 8348,
+ "iffer": 8349,
+ "▁año": 8350,
+ "▁cual": 8351,
+ "мери": 8352,
+ "DR": 8353,
+ "▁Bilder": 8354,
+ "бра": 8355,
+ "rait": 8356,
+ "pan": 8357,
+ "ень": 8358,
+ "▁distinct": 8359,
+ "▁Kn": 8360,
+ "önig": 8361,
+ "anced": 8362,
+ "▁loading": 8363,
+ "▁Techn": 8364,
+ "▁Sel": 8365,
+ "mus": 8366,
+ "▁rail": 8367,
+ "▁student": 8368,
+ "▁notice": 8369,
+ "▁sla": 8370,
+ "▁Да": 8371,
+ "▁guard": 8372,
+ "▁Day": 8373,
+ "вали": 8374,
+ "Option": 8375,
+ "aison": 8376,
+ "ipp": 8377,
+ "▁Jun": 8378,
+ "▁fell": 8379,
+ "▁absolute": 8380,
+ "ове": 8381,
+ "debug": 8382,
+ "▁Sud": 8383,
+ "пы": 8384,
+ "ugins": 8385,
+ "▁views": 8386,
+ "lay": 8387,
+ "▁surr": 8388,
+ "▁stood": 8389,
+ "▁ві": 8390,
+ "selected": 8391,
+ "гі": 8392,
+ "▁attributes": 8393,
+ "final": 8394,
+ "enda": 8395,
+ "▁Bon": 8396,
+ "ners": 8397,
+ "▁Wer": 8398,
+ "bur": 8399,
+ "ittel": 8400,
+ "▁moving": 8401,
+ "▁Plan": 8402,
+ "isches": 8403,
+ "Java": 8404,
+ "▁basis": 8405,
+ "▁Bus": 8406,
+ "▁Au": 8407,
+ "▁Ill": 8408,
+ "▁время": 8409,
+ "▁цент": 8410,
+ "handle": 8411,
+ "ступ": 8412,
+ "▁Far": 8413,
+ "▁oraz": 8414,
+ "ocr": 8415,
+ "▁seit": 8416,
+ "onder": 8417,
+ "дом": 8418,
+ ":/": 8419,
+ "chor": 8420,
+ "▁Town": 8421,
+ "▁definit": 8422,
+ "react": 8423,
+ "▁piece": 8424,
+ "▁Karl": 8425,
+ "CI": 8426,
+ "▁Application": 8427,
+ "unter": 8428,
+ "▁formed": 8429,
+ "▁пу": 8430,
+ "Bo": 8431,
+ "▁Daniel": 8432,
+ "▁пла": 8433,
+ "Body": 8434,
+ "})$": 8435,
+ "▁были": 8436,
+ "▁earth": 8437,
+ "гла": 8438,
+ "There": 8439,
+ "▁стра": 8440,
+ "▁ville": 8441,
+ "▁centre": 8442,
+ ")\r": 8443,
+ "▁helpful": 8444,
+ "▁++": 8445,
+ "▁CG": 8446,
+ "izione": 8447,
+ "▁Game": 8448,
+ "▁Which": 8449,
+ "▁pip": 8450,
+ "▁Portug": 8451,
+ "DS": 8452,
+ "▁describe": 8453,
+ "▁checking": 8454,
+ "▁manager": 8455,
+ "BO": 8456,
+ "▁Bundes": 8457,
+ "buch": 8458,
+ "▁decided": 8459,
+ "▁Jahrhundert": 8460,
+ "▁fif": 8461,
+ "efficient": 8462,
+ "anci": 8463,
+ "braries": 8464,
+ "▁fails": 8465,
+ "▁kernel": 8466,
+ "▁Gl": 8467,
+ "▁Nacional": 8468,
+ "▁proceed": 8469,
+ "▁fuer": 8470,
+ "▁living": 8471,
+ "▁successfully": 8472,
+ "▁faster": 8473,
+ "▁contre": 8474,
+ "▁prison": 8475,
+ "ORT": 8476,
+ "help": 8477,
+ "▁autor": 8478,
+ "ław": 8479,
+ "ają": 8480,
+ "▁Arm": 8481,
+ "▁provin": 8482,
+ "▁naam": 8483,
+ "/#": 8484,
+ "sed": 8485,
+ "▁gesch": 8486,
+ "▁мар": 8487,
+ "esk": 8488,
+ "term": 8489,
+ "▁Tex": 8490,
+ "iring": 8491,
+ "▁tools": 8492,
+ "PDF": 8493,
+ "▁ult": 8494,
+ "issenschaft": 8495,
+ "▁couldn": 8496,
+ "ding": 8497,
+ "Dep": 8498,
+ "{-": 8499,
+ "▁predict": 8500,
+ "antage": 8501,
+ "▁Like": 8502,
+ "▁Би": 8503,
+ "tools": 8504,
+ "estra": 8505,
+ "▁ki": 8506,
+ "▁Jim": 8507,
+ "star": 8508,
+ "▁remark": 8509,
+ "óg": 8510,
+ "nabla": 8511,
+ "▁Although": 8512,
+ "mode": 8513,
+ "Host": 8514,
+ "▁strange": 8515,
+ "None": 8516,
+ "black": 8517,
+ "▁Festival": 8518,
+ "▁IS": 8519,
+ "anza": 8520,
+ "▁(-": 8521,
+ "icket": 8522,
+ "кола": 8523,
+ "▁Jes": 8524,
+ "▁flex": 8525,
+ "▁À": 8526,
+ "▁Network": 8527,
+ "▁EX": 8528,
+ "▁enero": 8529,
+ "!”": 8530,
+ "▁Ort": 8531,
+ "▁alors": 8532,
+ "▁Original": 8533,
+ "▁zo": 8534,
+ "ными": 8535,
+ "▁spl": 8536,
+ "Draw": 8537,
+ "yond": 8538,
+ "──": 8539,
+ "▁Ot": 8540,
+ "▁dram": 8541,
+ "▁division": 8542,
+ "▁efficient": 8543,
+ "▁Га": 8544,
+ "▁vier": 8545,
+ "nak": 8546,
+ "LS": 8547,
+ "▁spirit": 8548,
+ "zeichnet": 8549,
+ "▁dici": 8550,
+ "clear": 8551,
+ "copy": 8552,
+ "yar": 8553,
+ "▁році": 8554,
+ "usqu": 8555,
+ "▁nous": 8556,
+ "▁blev": 8557,
+ "жде": 8558,
+ "Arg": 8559,
+ "▁performed": 8560,
+ "▁Make": 8561,
+ "▁Carol": 8562,
+ "etto": 8563,
+ "▁Sand": 8564,
+ "▁Disc": 8565,
+ "Enc": 8566,
+ "rero": 8567,
+ "hash": 8568,
+ "▁focus": 8569,
+ "▁attention": 8570,
+ "▁agre": 8571,
+ "▁divis": 8572,
+ "▁было": 8573,
+ "▁ej": 8574,
+ "▁march": 8575,
+ "▁phase": 8576,
+ "ías": 8577,
+ "▁phil": 8578,
+ "▁Pap": 8579,
+ "▁river": 8580,
+ "▁caused": 8581,
+ "plugin": 8582,
+ "▁Team": 8583,
+ "uler": 8584,
+ "▁$(\"#": 8585,
+ "iej": 8586,
+ "ISBN": 8587,
+ "nam": 8588,
+ "▁fight": 8589,
+ "vid": 8590,
+ "▁Lud": 8591,
+ "Selected": 8592,
+ ":@\"": 8593,
+ "▁Pod": 8594,
+ "▁années": 8595,
+ "arios": 8596,
+ "▁deutscher": 8597,
+ "▁NA": 8598,
+ "▁ию": 8599,
+ "▁dictionary": 8600,
+ "▁Ла": 8601,
+ "▁Tri": 8602,
+ "èn": 8603,
+ "▁political": 8604,
+ "ridge": 8605,
+ "atten": 8606,
+ "▁circle": 8607,
+ "▁transport": 8608,
+ "emas": 8609,
+ "FC": 8610,
+ "▁replaced": 8611,
+ "▁Aud": 8612,
+ "iska": 8613,
+ "Configuration": 8614,
+ "▁soort": 8615,
+ "▁Не": 8616,
+ "▁sequ": 8617,
+ "PRO": 8618,
+ "▁bud": 8619,
+ "▁{{": 8620,
+ "ließ": 8621,
+ "▁Mas": 8622,
+ "ders": 8623,
+ "usammen": 8624,
+ "esa": 8625,
+ "▁Ly": 8626,
+ "вро": 8627,
+ "mac": 8628,
+ "▁испо": 8629,
+ "▁suc": 8630,
+ "uy": 8631,
+ "▁illustr": 8632,
+ "▁primera": 8633,
+ "ilation": 8634,
+ "▁storage": 8635,
+ "▁params": 8636,
+ "kaz": 8637,
+ "▁terminal": 8638,
+ "раль": 8639,
+ "▁holds": 8640,
+ "лось": 8641,
+ "▁nad": 8642,
+ "”.": 8643,
+ "▁octubre": 8644,
+ "bul": 8645,
+ "▁hus": 8646,
+ "ULT": 8647,
+ "▁également": 8648,
+ "▁Mill": 8649,
+ "ład": 8650,
+ "▁contiene": 8651,
+ "\"?": 8652,
+ "▁>>>": 8653,
+ "Que": 8654,
+ " ": 8655,
+ "▁plain": 8656,
+ "ativa": 8657,
+ "ocker": 8658,
+ "Names": 8659,
+ "▁Jud": 8660,
+ "▁agree": 8661,
+ "▁Gemeinde": 8662,
+ "lare": 8663,
+ "каза": 8664,
+ "▁starts": 8665,
+ "▁price": 8666,
+ "Target": 8667,
+ "cus": 8668,
+ "▁Instead": 8669,
+ ".;": 8670,
+ "▁alternative": 8671,
+ "▁вла": 8672,
+ "IE": 8673,
+ "▁organiz": 8674,
+ "inu": 8675,
+ "▁completed": 8676,
+ "▁carry": 8677,
+ "atom": 8678,
+ "▁depending": 8679,
+ "▁Our": 8680,
+ "▁insp": 8681,
+ "▁&\\": 8682,
+ "aily": 8683,
+ "irection": 8684,
+ "фа": 8685,
+ "▁defe": 8686,
+ "TAC": 8687,
+ "▁designed": 8688,
+ "▁voir": 8689,
+ "break": 8690,
+ "▁partie": 8691,
+ "▁Jahren": 8692,
+ "▁studio": 8693,
+ "▁jour": 8694,
+ "▁Notes": 8695,
+ "fire": 8696,
+ "house": 8697,
+ "success": 8698,
+ "▁Juan": 8699,
+ "JS": 8700,
+ "▁Custom": 8701,
+ "▁besch": 8702,
+ "▁stated": 8703,
+ "bootstrap": 8704,
+ "ött": 8705,
+ "ozzá": 8706,
+ "▁CON": 8707,
+ "hav": 8708,
+ "▁sleep": 8709,
+ "eda": 8710,
+ "hot": 8711,
+ "ánd": 8712,
+ "▁Sy": 8713,
+ "▁temps": 8714,
+ "amar": 8715,
+ "▁scal": 8716,
+ "▁ast": 8717,
+ "▁opening": 8718,
+ "clipse": 8719,
+ "▁programming": 8720,
+ "▁letters": 8721,
+ "▁profile": 8722,
+ "nah": 8723,
+ "▁beyond": 8724,
+ "▁Further": 8725,
+ "faces": 8726,
+ "▁chart": 8727,
+ "зда": 8728,
+ "aign": 8729,
+ "ній": 8730,
+ "▁Rol": 8731,
+ "овано": 8732,
+ "terior": 8733,
+ "wed": 8734,
+ "▁herself": 8735,
+ "▁ng": 8736,
+ "anguages": 8737,
+ "}=\\": 8738,
+ "ynamic": 8739,
+ "▁jug": 8740,
+ "▁Example": 8741,
+ "▁(†": 8742,
+ "▁playing": 8743,
+ "▁usage": 8744,
+ "▁managed": 8745,
+ "▁Natur": 8746,
+ "тери": 8747,
+ "▁Et": 8748,
+ "eria": 8749,
+ "▁daughter": 8750,
+ "нием": 8751,
+ "Fragment": 8752,
+ "▁hol": 8753,
+ "Fl": 8754,
+ "ографи": 8755,
+ "▁ihn": 8756,
+ "üh": 8757,
+ "instance": 8758,
+ "▁comun": 8759,
+ "▁truth": 8760,
+ "▁само": 8761,
+ "▁implemented": 8762,
+ "▁anyway": 8763,
+ "▁Cro": 8764,
+ "фе": 8765,
+ "GC": 8766,
+ "ubuntu": 8767,
+ "types": 8768,
+ "ês": 8769,
+ ".~\\": 8770,
+ "fold": 8771,
+ "▁joined": 8772,
+ "??": 8773,
+ "▁mé": 8774,
+ "▁wild": 8775,
+ "клю": 8776,
+ "rowser": 8777,
+ "▁Home": 8778,
+ "skiej": 8779,
+ "▁JOIN": 8780,
+ "▁juin": 8781,
+ "hof": 8782,
+ "▁dataset": 8783,
+ "жду": 8784,
+ "'))": 8785,
+ "▁miejs": 8786,
+ "API": 8787,
+ "▁edited": 8788,
+ "ools": 8789,
+ "▁seeing": 8790,
+ "ijd": 8791,
+ "▁procedure": 8792,
+ "▁Bras": 8793,
+ "▁signed": 8794,
+ "▁externos": 8795,
+ "▁disapp": 8796,
+ "▁Direct": 8797,
+ "cyc": 8798,
+ "▁consult": 8799,
+ "örd": 8800,
+ "Widget": 8801,
+ "cious": 8802,
+ "sect": 8803,
+ "▁Ди": 8804,
+ "▁wind": 8805,
+ "▁Archivado": 8806,
+ "aml": 8807,
+ "сс": 8808,
+ "Wh": 8809,
+ "kbd": 8810,
+ "▁Army": 8811,
+ "▁suffer": 8812,
+ "artifact": 8813,
+ "▁resolve": 8814,
+ "▁Sport": 8815,
+ "▁це": 8816,
+ "idas": 8817,
+ "▁tax": 8818,
+ "idi": 8819,
+ "▁actions": 8820,
+ "пра": 8821,
+ "pués": 8822,
+ "▁naj": 8823,
+ "False": 8824,
+ "▁chance": 8825,
+ "▁тако": 8826,
+ "äd": 8827,
+ "▁dol": 8828,
+ "▁env": 8829,
+ "▁basically": 8830,
+ "▁Council": 8831,
+ "zte": 8832,
+ "▁displayed": 8833,
+ "nil": 8834,
+ "complete": 8835,
+ "▁Lem": 8836,
+ "iance": 8837,
+ "▁основ": 8838,
+ "▁depend": 8839,
+ "plom": 8840,
+ "ensus": 8841,
+ "uts": 8842,
+ "▁Hot": 8843,
+ "bitr": 8844,
+ "▁validation": 8845,
+ "abb": 8846,
+ "▁тре": 8847,
+ "km": 8848,
+ "zd": 8849,
+ "öff": 8850,
+ "WE": 8851,
+ "▁interested": 8852,
+ "▁{\"": 8853,
+ "aro": 8854,
+ "▁correl": 8855,
+ "▁dedic": 8856,
+ "▁lists": 8857,
+ "▁Bibliografia": 8858,
+ "▁earlier": 8859,
+ "program": 8860,
+ "▁première": 8861,
+ "front": 8862,
+ "Tab": 8863,
+ "ству": 8864,
+ "drop": 8865,
+ "▁fear": 8866,
+ "▁Enlaces": 8867,
+ "▁Capt": 8868,
+ "▁realiz": 8869,
+ "▁hal": 8870,
+ "▁instances": 8871,
+ "▁susp": 8872,
+ "illing": 8873,
+ "%;": 8874,
+ "{}": 8875,
+ "||": 8876,
+ "▁partition": 8877,
+ "▁Build": 8878,
+ "▁wo": 8879,
+ "▁Пер": 8880,
+ "▁director": 8881,
+ "▁Sin": 8882,
+ "тия": 8883,
+ "rsg": 8884,
+ "ouver": 8885,
+ "▁nearly": 8886,
+ "oda": 8887,
+ "ктив": 8888,
+ "▁sir": 8889,
+ "IME": 8890,
+ "▁janvier": 8891,
+ "▁Win": 8892,
+ "Build": 8893,
+ "ieurs": 8894,
+ "INE": 8895,
+ "double": 8896,
+ "Last": 8897,
+ "▁policy": 8898,
+ "store": 8899,
+ "▁observed": 8900,
+ "▁familie": 8901,
+ "nica": 8902,
+ "rey": 8903,
+ "зь": 8904,
+ "▁Year": 8905,
+ "▁developed": 8906,
+ "▁Institute": 8907,
+ "▁reply": 8908,
+ "Comple": 8909,
+ "ician": 8910,
+ "▁Guer": 8911,
+ "▁dall": 8912,
+ "▁desp": 8913,
+ "▁Football": 8914,
+ "Empty": 8915,
+ "cken": 8916,
+ "unda": 8917,
+ "▁Ur": 8918,
+ "▁ig": 8919,
+ "▁Atl": 8920,
+ "author": 8921,
+ "▁Bol": 8922,
+ "zig": 8923,
+ "nat": 8924,
+ "št": 8925,
+ "security": 8926,
+ "onic": 8927,
+ "▁pes": 8928,
+ "itan": 8929,
+ "▁Extern": 8930,
+ "jan": 8931,
+ "VAL": 8932,
+ "▁им": 8933,
+ "bold": 8934,
+ "▁ва": 8935,
+ "▁Мо": 8936,
+ "▁disput": 8937,
+ "▁trick": 8938,
+ "▁ped": 8939,
+ ")^{": 8940,
+ "into": 8941,
+ "Sim": 8942,
+ "▁parallel": 8943,
+ "fox": 8944,
+ "normal": 8945,
+ "inent": 8946,
+ "педи": 8947,
+ "hold": 8948,
+ "OK": 8949,
+ "▁chem": 8950,
+ "▁twice": 8951,
+ "▁username": 8952,
+ "ič": 8953,
+ "▁representation": 8954,
+ "▁journal": 8955,
+ "▁:-": 8956,
+ "▁batt": 8957,
+ "\\%": 8958,
+ "▁certainly": 8959,
+ "▁Exception": 8960,
+ "eps": 8961,
+ "shot": 8962,
+ "ategy": 8963,
+ "Show": 8964,
+ "▁Carl": 8965,
+ "rig": 8966,
+ "▁reported": 8967,
+ "bottom": 8968,
+ "TF": 8969,
+ "▁Francisco": 8970,
+ "nap": 8971,
+ "▁Championship": 8972,
+ "▁court": 8973,
+ "▁sources": 8974,
+ "iour": 8975,
+ "▁conserv": 8976,
+ "dict": 8977,
+ "▁Ру": 8978,
+ "IB": 8979,
+ "▁Ve": 8980,
+ "▁№": 8981,
+ "▁ER": 8982,
+ "\"));": 8983,
+ "▁Point": 8984,
+ "azine": 8985,
+ "▁internet": 8986,
+ "дна": 8987,
+ "▁carried": 8988,
+ "▁Field": 8989,
+ "axis": 8990,
+ "▁Sun": 8991,
+ "▁ave": 8992,
+ "пис": 8993,
+ "ян": 8994,
+ "asy": 8995,
+ "▁julio": 8996,
+ "▁depuis": 8997,
+ "▁suggestion": 8998,
+ "[[": 8999,
+ "▁Archive": 9000,
+ "ęp": 9001,
+ "▁Pra": 9002,
+ "reh": 9003,
+ "▁demonstr": 9004,
+ "фі": 9005,
+ "cmd": 9006,
+ "▁wasn": 9007,
+ "▁phone": 9008,
+ "upload": 9009,
+ "aya": 9010,
+ "тора": 9011,
+ "lines": 9012,
+ "▁indu": 9013,
+ "▁vot": 9014,
+ "▁espa": 9015,
+ "▁bin": 9016,
+ "▁после": 9017,
+ "plan": 9018,
+ "▁junio": 9019,
+ "orial": 9020,
+ "free": 9021,
+ "sterreich": 9022,
+ "▁ду": 9023,
+ "▁linked": 9024,
+ "▁enable": 9025,
+ "PC": 9026,
+ "▁density": 9027,
+ "▁Egy": 9028,
+ "yo": 9029,
+ "endre": 9030,
+ "▁съ": 9031,
+ "▁italiano": 9032,
+ "▁AR": 9033,
+ "▁Pers": 9034,
+ "férés": 9035,
+ "▁скла": 9036,
+ "Var": 9037,
+ "▁Once": 9038,
+ "Red": 9039,
+ "buffer": 9040,
+ "▁Enter": 9041,
+ "▁Š": 9042,
+ "imiento": 9043,
+ "Store": 9044,
+ "▁health": 9045,
+ "vat": 9046,
+ "IST": 9047,
+ "Oh": 9048,
+ "▁kw": 9049,
+ "▁riv": 9050,
+ "▁somewhere": 9051,
+ "ografie": 9052,
+ "private": 9053,
+ "кти": 9054,
+ "▁delay": 9055,
+ "▁Http": 9056,
+ "job": 9057,
+ "rael": 9058,
+ "empor": 9059,
+ "▁diciembre": 9060,
+ "ête": 9061,
+ "цу": 9062,
+ "▁commit": 9063,
+ "oso": 9064,
+ "Values": 9065,
+ "▁headers": 9066,
+ "transform": 9067,
+ "▁processing": 9068,
+ "rå": 9069,
+ "▁Ah": 9070,
+ "▁Node": 9071,
+ "------------": 9072,
+ "▁faire": 9073,
+ "▁hun": 9074,
+ "Player": 9075,
+ "▁review": 9076,
+ "гда": 9077,
+ "▁limited": 9078,
+ "▁Property": 9079,
+ "▁serve": 9080,
+ "riage": 9081,
+ "▁Master": 9082,
+ "▁kann": 9083,
+ "crete": 9084,
+ "phere": 9085,
+ "ёр": 9086,
+ "▁chief": 9087,
+ "▁scene": 9088,
+ "kin": 9089,
+ "▁uniform": 9090,
+ "▁febrero": 9091,
+ "\"}": 9092,
+ "illo": 9093,
+ "ITE": 9094,
+ "ouvel": 9095,
+ "usepackage": 9096,
+ "enth": 9097,
+ "▁quickly": 9098,
+ "Lambda": 9099,
+ "xes": 9100,
+ "▁cells": 9101,
+ "rog": 9102,
+ "amin": 9103,
+ "▁Мар": 9104,
+ "▁mayor": 9105,
+ "player": 9106,
+ "++;": 9107,
+ "▁Насе": 9108,
+ "▁safe": 9109,
+ "▁veloc": 9110,
+ "▁обра": 9111,
+ "Database": 9112,
+ "neh": 9113,
+ "Vert": 9114,
+ "▁fle": 9115,
+ "▁фор": 9116,
+ "▁foreign": 9117,
+ "Abstract": 9118,
+ "▁magn": 9119,
+ "▁modified": 9120,
+ "▁military": 9121,
+ "▁monde": 9122,
+ "▁Action": 9123,
+ "▁bank": 9124,
+ "Serial": 9125,
+ "▁continuous": 9126,
+ "▁gel": 9127,
+ "▁physical": 9128,
+ "▁introduced": 9129,
+ "uture": 9130,
+ "rick": 9131,
+ "▁presented": 9132,
+ "▁Prov": 9133,
+ "▁Both": 9134,
+ "Pos": 9135,
+ "super": 9136,
+ "": 9137,
+ "▁finding": 9138,
+ "nel": 9139,
+ "unde": 9140,
+ "▁från": 9141,
+ "skim": 9142,
+ "▁Hill": 9143,
+ "fn": 9144,
+ "▁Canad": 9145,
+ "▁intended": 9146,
+ "ozzáférés": 9147,
+ "▁juillet": 9148,
+ "▁Wars": 9149,
+ "▁successful": 9150,
+ "▁charg": 9151,
+ "iele": 9152,
+ "omething": 9153,
+ "oku": 9154,
+ "fetch": 9155,
+ "▁}}": 9156,
+ "bank": 9157,
+ "operatorname": 9158,
+ "▁Color": 9159,
+ "▁Card": 9160,
+ "tu": 9161,
+ "▁\",": 9162,
+ "wid": 9163,
+ "▁gep": 9164,
+ "XML": 9165,
+ "================": 9166,
+ "▁Virgin": 9167,
+ "ährend": 9168,
+ "licated": 9169,
+ "Dir": 9170,
+ "zero": 9171,
+ "▁Kal": 9172,
+ "▁Party": 9173,
+ "▁å": 9174,
+ "price": 9175,
+ "don": 9176,
+ "▁warning": 9177,
+ "▁Bad": 9178,
+ "▁Supp": 9179,
+ "▁Liga": 9180,
+ "▁Pierre": 9181,
+ "Record": 9182,
+ "ulator": 9183,
+ "▁Rome": 9184,
+ "▁theorem": 9185,
+ "▁entirely": 9186,
+ "ским": 9187,
+ "het": 9188,
+ "▁dopo": 9189,
+ "Next": 9190,
+ "mlung": 9191,
+ "wig": 9192,
+ "▁Ath": 9193,
+ "▁Sou": 9194,
+ "licher": 9195,
+ "▁sudo": 9196,
+ "ests": 9197,
+ "хів": 9198,
+ "▁septiembre": 9199,
+ "▁micro": 9200,
+ "▁trop": 9201,
+ "fit": 9202,
+ "Core": 9203,
+ "▁Radio": 9204,
+ "▁Organ": 9205,
+ "▁Power": 9206,
+ "CF": 9207,
+ "▁Last": 9208,
+ "▁oppos": 9209,
+ "▁offset": 9210,
+ "▁regia": 9211,
+ "▁minimum": 9212,
+ "▁helped": 9213,
+ "andon": 9214,
+ "ifying": 9215,
+ "ruit": 9216,
+ "enschapp": 9217,
+ "▁bere": 9218,
+ "VM": 9219,
+ "▁Awards": 9220,
+ "▁agr": 9221,
+ "ynomial": 9222,
+ "enced": 9223,
+ "▁devices": 9224,
+ "▁bot": 9225,
+ "▁firm": 9226,
+ "▁writer": 9227,
+ "▁ring": 9228,
+ ".-": 9229,
+ "istes": 9230,
+ "lä": 9231,
+ "▁mel": 9232,
+ "entation": 9233,
+ "▁Schw": 9234,
+ "▁nome": 9235,
+ "▁pobla": 9236,
+ "▁woj": 9237,
+ "▁ul": 9238,
+ "ento": 9239,
+ "ых": 9240,
+ "▁resist": 9241,
+ "▁remains": 9242,
+ "▁Ca": 9243,
+ "aña": 9244,
+ "▁Court": 9245,
+ "utable": 9246,
+ "entially": 9247,
+ "▁trat": 9248,
+ "▁Visual": 9249,
+ "▁restrict": 9250,
+ "▁previously": 9251,
+ "cation": 9252,
+ "▁осо": 9253,
+ "▁MySQL": 9254,
+ "för": 9255,
+ "cala": 9256,
+ "▁culture": 9257,
+ "live": 9258,
+ "▁accepted": 9259,
+ "Did": 9260,
+ "▁hous": 9261,
+ "▁selection": 9262,
+ "▁decre": 9263,
+ "margin": 9264,
+ "urb": 9265,
+ "▁Inc": 9266,
+ "▁Many": 9267,
+ "ibt": 9268,
+ "▁succeed": 9269,
+ "Binding": 9270,
+ "cí": 9271,
+ "▁Rog": 9272,
+ "▁shouldn": 9273,
+ "cloud": 9274,
+ "▁dz": 9275,
+ "вав": 9276,
+ "▁pix": 9277,
+ "small": 9278,
+ "▁projects": 9279,
+ "▁OK": 9280,
+ "▁latest": 9281,
+ "▁references": 9282,
+ "Program": 9283,
+ "▁erst": 9284,
+ "▁як": 9285,
+ "▁kam": 9286,
+ "▁Camb": 9287,
+ "ellt": 9288,
+ "öd": 9289,
+ "none": 9290,
+ "▁jusqu": 9291,
+ "king": 9292,
+ "▁Ped": 9293,
+ "assert": 9294,
+ "CS": 9295,
+ "rito": 9296,
+ "essa": 9297,
+ "лько": 9298,
+ "▁Von": 9299,
+ "▁Edward": 9300,
+ "▁impossible": 9301,
+ "np": 9302,
+ "words": 9303,
+ "ielt": 9304,
+ "▁Page": 9305,
+ "lers": 9306,
+ "▁pier": 9307,
+ "▁области": 9308,
+ "ittee": 9309,
+ "▁([": 9310,
+ "▁trust": 9311,
+ "NG": 9312,
+ "redu": 9313,
+ "<<": 9314,
+ "rial": 9315,
+ "▁products": 9316,
+ "▁Ern": 9317,
+ "rière": 9318,
+ "гов": 9319,
+ "▁Reich": 9320,
+ "▁Road": 9321,
+ "▁nested": 9322,
+ "Display": 9323,
+ "▁strength": 9324,
+ "ografía": 9325,
+ "▁announced": 9326,
+ "▁Science": 9327,
+ "▁райо": 9328,
+ "Parameter": 9329,
+ "▁Task": 9330,
+ "uments": 9331,
+ "▁adopt": 9332,
+ "▁Only": 9333,
+ "ють": 9334,
+ "▁cli": 9335,
+ "▁lem": 9336,
+ "stood": 9337,
+ "▁FI": 9338,
+ "ências": 9339,
+ "ponents": 9340,
+ "]$": 9341,
+ "comment": 9342,
+ "▁ya": 9343,
+ "should": 9344,
+ "ike": 9345,
+ "tim": 9346,
+ "ellig": 9347,
+ "▁sending": 9348,
+ "▁ajax": 9349,
+ "▁noviembre": 9350,
+ "umes": 9351,
+ "▁weiter": 9352,
+ "▁Dans": 9353,
+ "opp": 9354,
+ "▁septembre": 9355,
+ "otimes": 9356,
+ "ző": 9357,
+ "▁ep": 9358,
+ "vere": 9359,
+ "▁oh": 9360,
+ ":=": 9361,
+ "▁Song": 9362,
+ "”,": 9363,
+ "▁viv": 9364,
+ "▁queries": 9365,
+ "▁vá": 9366,
+ "▁décembre": 9367,
+ "▁unable": 9368,
+ "▁erh": 9369,
+ "▁`-": 9370,
+ "▁Lee": 9371,
+ "▁ersten": 9372,
+ "ôt": 9373,
+ "стве": 9374,
+ "TS": 9375,
+ "▁fragment": 9376,
+ "▁wide": 9377,
+ "▁suff": 9378,
+ "▁dut": 9379,
+ "▁Vere": 9380,
+ "іс": 9381,
+ "ading": 9382,
+ "iego": 9383,
+ "icago": 9384,
+ "▁Argent": 9385,
+ "orer": 9386,
+ "ennes": 9387,
+ "▁Leb": 9388,
+ "linux": 9389,
+ "acing": 9390,
+ "▁broken": 9391,
+ "tp": 9392,
+ "ío": 9393,
+ "abeth": 9394,
+ "istas": 9395,
+ "gew": 9396,
+ "ième": 9397,
+ "cas": 9398,
+ "▁preced": 9399,
+ "▁Dal": 9400,
+ "▁compared": 9401,
+ "equiv": 9402,
+ "illy": 9403,
+ "teen": 9404,
+ "▁Console": 9405,
+ "▁strict": 9406,
+ "itaire": 9407,
+ "▁ED": 9408,
+ "entials": 9409,
+ "▁perman": 9410,
+ "▁tous": 9411,
+ "▁geme": 9412,
+ "▁extrem": 9413,
+ "▁окру": 9414,
+ "kg": 9415,
+ "▁heavy": 9416,
+ "▁avril": 9417,
+ "▁anti": 9418,
+ "▁octobre": 9419,
+ "utf": 9420,
+ "helm": 9421,
+ "amples": 9422,
+ "▁(_": 9423,
+ "aken": 9424,
+ "▁dear": 9425,
+ "▁opinion": 9426,
+ "▁fish": 9427,
+ "▁Alexander": 9428,
+ "iw": 9429,
+ "им": 9430,
+ "cadem": 9431,
+ "▁reflect": 9432,
+ "▁др": 9433,
+ "▁trib": 9434,
+ "common": 9435,
+ "▁clearly": 9436,
+ "▁saf": 9437,
+ "=\"@+": 9438,
+ "▁Мос": 9439,
+ "сите": 9440,
+ "eqnarray": 9441,
+ "nung": 9442,
+ "▁relationship": 9443,
+ "▁Sem": 9444,
+ "▁killed": 9445,
+ "ted": 9446,
+ "uno": 9447,
+ "▁лі": 9448,
+ "▁wid": 9449,
+ "anning": 9450,
+ "▁panel": 9451,
+ "▁Leben": 9452,
+ "▁ruby": 9453,
+ "ansion": 9454,
+ "▁aren": 9455,
+ "tabular": 9456,
+ "alet": 9457,
+ "}$$": 9458,
+ "▁Lake": 9459,
+ "▁suite": 9460,
+ "▁minor": 9461,
+ "Hozzáférés": 9462,
+ "▁xmlns": 9463,
+ "DIR": 9464,
+ "driver": 9465,
+ "ints": 9466,
+ "▁vic": 9467,
+ "AND": 9468,
+ "prim": 9469,
+ "сылки": 9470,
+ "▁Ox": 9471,
+ "TC": 9472,
+ "rivial": 9473,
+ "atie": 9474,
+ "▁eight": 9475,
+ "▁conflic": 9476,
+ "angel": 9477,
+ "▁Begr": 9478,
+ "▁explicitly": 9479,
+ "ются": 9480,
+ "▁Dev": 9481,
+ "render": 9482,
+ "▁reprodu": 9483,
+ "▁cré": 9484,
+ "Gu": 9485,
+ "MB": 9486,
+ "▁kön": 9487,
+ "▁remained": 9488,
+ "▁kl": 9489,
+ "хов": 9490,
+ "▁byl": 9491,
+ "Phi": 9492,
+ "▁detail": 9493,
+ "jav": 9494,
+ "▁mouse": 9495,
+ "Bas": 9496,
+ "ię": 9497,
+ "asser": 9498,
+ "hs": 9499,
+ "▁shift": 9500,
+ "▁últ": 9501,
+ "rand": 9502,
+ "▁btn": 9503,
+ "raz": 9504,
+ "▁pul": 9505,
+ "▁statements": 9506,
+ "filename": 9507,
+ "▁prompt": 9508,
+ "élé": 9509,
+ "ikz": 9510,
+ "▁Sus": 9511,
+ "▁debut": 9512,
+ "Stat": 9513,
+ "forms": 9514,
+ "▁Hein": 9515,
+ "stadt": 9516,
+ "ennis": 9517,
+ "пол": 9518,
+ "arante": 9519,
+ "цій": 9520,
+ "▁queue": 9521,
+ "▁reci": 9522,
+ "▁sta": 9523,
+ "ynchron": 9524,
+ "centering": 9525,
+ "Some": 9526,
+ "Graph": 9527,
+ "▁tested": 9528,
+ "▁Kunst": 9529,
+ "ом": 9530,
+ "▁Nothing": 9531,
+ "ieu": 9532,
+ "“.": 9533,
+ "Bundle": 9534,
+ "▁oficial": 9535,
+ "allow": 9536,
+ "▁React": 9537,
+ "▁Library": 9538,
+ "blue": 9539,
+ "▁verw": 9540,
+ "▁pare": 9541,
+ "▁Friedrich": 9542,
+ "▁aware": 9543,
+ "Exp": 9544,
+ "▁effects": 9545,
+ "▁горо": 9546,
+ "lopedia": 9547,
+ "▁Ven": 9548,
+ "rale": 9549,
+ "▁Final": 9550,
+ "▁propos": 9551,
+ "lacement": 9552,
+ "kten": 9553,
+ "▁novel": 9554,
+ "orter": 9555,
+ "▁Germany": 9556,
+ "▁django": 9557,
+ "▁transition": 9558,
+ "▁happened": 9559,
+ "▁beautiful": 9560,
+ "▁neither": 9561,
+ "▁libraries": 9562,
+ "▁hide": 9563,
+ "alg": 9564,
+ "▁aspect": 9565,
+ "▁forget": 9566,
+ "cademy": 9567,
+ "onte": 9568,
+ "refix": 9569,
+ "▁cloud": 9570,
+ "ned": 9571,
+ "cdots": 9572,
+ "register": 9573,
+ "nym": 9574,
+ ".):": 9575,
+ "▁Jew": 9576,
+ "▁très": 9577,
+ "ниче": 9578,
+ "▁Dor": 9579,
+ "▁proc": 9580,
+ "▁gan": 9581,
+ "▁є": 9582,
+ "▁Sav": 9583,
+ "ví": 9584,
+ "Settings": 9585,
+ "▁Vari": 9586,
+ "▁cours": 9587,
+ "Ro": 9588,
+ "▁conj": 9589,
+ "▁reasons": 9590,
+ "▁reader": 9591,
+ "лександ": 9592,
+ "icate": 9593,
+ "}),": 9594,
+ "▁tasks": 9595,
+ "▁Ray": 9596,
+ "▁ric": 9597,
+ "Ke": 9598,
+ "onie": 9599,
+ "rf": 9600,
+ ")[": 9601,
+ "▁subsequ": 9602,
+ "▁Turn": 9603,
+ "▁VIAF": 9604,
+ "mathsf": 9605,
+ "HE": 9606,
+ "▁declare": 9607,
+ "▁protocol": 9608,
+ "▁PC": 9609,
+ "цион": 9610,
+ "ViewById": 9611,
+ "▁animation": 9612,
+ "▁confused": 9613,
+ "вич": 9614,
+ "▁enabled": 9615,
+ "owo": 9616,
+ "ást": 9617,
+ "öt": 9618,
+ "▁mand": 9619,
+ "▁Rail": 9620,
+ "fields": 9621,
+ "▁Kap": 9622,
+ "▁algebra": 9623,
+ "▁Су": 9624,
+ "férence": 9625,
+ "▁Current": 9626,
+ "сно": 9627,
+ "▁Lim": 9628,
+ "Params": 9629,
+ "▁Antonio": 9630,
+ "▁tv": 9631,
+ "late": 9632,
+ "ifer": 9633,
+ "Entry": 9634,
+ "▁Serv": 9635,
+ "▁musical": 9636,
+ "▁trace": 9637,
+ "▁scient": 9638,
+ "fic": 9639,
+ "▁forgot": 9640,
+ "video": 9641,
+ "▁older": 9642,
+ "Tree": 9643,
+ "▁uns": 9644,
+ "ники": 9645,
+ "▁Europa": 9646,
+ "▁Zwe": 9647,
+ "▁бе": 9648,
+ "▁vec": 9649,
+ "жу": 9650,
+ "▁▁▁▁▁▁▁▁▁▁▁": 9651,
+ "Match": 9652,
+ "span": 9653,
+ "▁blank": 9654,
+ "▁später": 9655,
+ "▁Ty": 9656,
+ "▁dict": 9657,
+ "ña": 9658,
+ "▁confirm": 9659,
+ "▁vý": 9660,
+ "зан": 9661,
+ "Rel": 9662,
+ "film": 9663,
+ "▁Rot": 9664,
+ "▁Hy": 9665,
+ "ках": 9666,
+ "▁demand": 9667,
+ "▁minist": 9668,
+ "▁Madrid": 9669,
+ "▁usual": 9670,
+ "spiel": 9671,
+ "eros": 9672,
+ "▁tutorial": 9673,
+ "▁Ссылки": 9674,
+ "sys": 9675,
+ "циаль": 9676,
+ "▁spread": 9677,
+ "▁convers": 9678,
+ "▁roll": 9679,
+ "artifactId": 9680,
+ "▁Number": 9681,
+ "▁symmet": 9682,
+ "▁Mult": 9683,
+ "expected": 9684,
+ "▁axis": 9685,
+ "▁matching": 9686,
+ "▁food": 9687,
+ "groupId": 9688,
+ "Mapp": 9689,
+ "▁свя": 9690,
+ "▁vend": 9691,
+ "Found": 9692,
+ "otto": 9693,
+ "Cat": 9694,
+ "crit": 9695,
+ "istent": 9696,
+ "▁drei": 9697,
+ "▁ended": 9698,
+ "▁Tele": 9699,
+ "component": 9700,
+ "▁involved": 9701,
+ "▁Estados": 9702,
+ "▁danger": 9703,
+ "▁chain": 9704,
+ "▁Prom": 9705,
+ "hom": 9706,
+ "▁polít": 9707,
+ "cop": 9708,
+ "▁nap": 9709,
+ "rif": 9710,
+ "plements": 9711,
+ "▁vent": 9712,
+ "anna": 9713,
+ "anted": 9714,
+ "dated": 9715,
+ "anth": 9716,
+ "▁threads": 9717,
+ "зова": 9718,
+ "▁станов": 9719,
+ "▁eerst": 9720,
+ "buf": 9721,
+ "heid": 9722,
+ "▁Ru": 9723,
+ "▁Prim": 9724,
+ "▁migr": 9725,
+ "▁Unidos": 9726,
+ "▁arbitr": 9727,
+ "▁roman": 9728,
+ "ountry": 9729,
+ "ultur": 9730,
+ "▁König": 9731,
+ "▁annot": 9732,
+ "aching": 9733,
+ "▁Haupt": 9734,
+ "umin": 9735,
+ "▁hem": 9736,
+ "ckets": 9737,
+ "bau": 9738,
+ "ection": 9739,
+ "eft": 9740,
+ "▁packages": 9741,
+ "▁Kur": 9742,
+ "thur": 9743,
+ "▁pays": 9744,
+ "liament": 9745,
+ "▁Бу": 9746,
+ "▁cada": 9747,
+ "points": 9748,
+ "ocket": 9749,
+ "▁verb": 9750,
+ "лее": 9751,
+ "▁submit": 9752,
+ "▁san": 9753,
+ "ruby": 9754,
+ "▁east": 9755,
+ "kov": 9756,
+ "▁Verlag": 9757,
+ "▁spot": 9758,
+ "ppo": 9759,
+ "Each": 9760,
+ "jekt": 9761,
+ "▁Biographie": 9762,
+ "▁news": 9763,
+ "▁país": 9764,
+ "ufact": 9765,
+ "▁dia": 9766,
+ "кова": 9767,
+ "▁accompl": 9768,
+ "▁Ét": 9769,
+ "ilities": 9770,
+ "▁ihm": 9771,
+ "invoke": 9772,
+ "▁append": 9773,
+ ".),": 9774,
+ "▁lab": 9775,
+ "anging": 9776,
+ "istan": 9777,
+ "resol": 9778,
+ "▁Section": 9779,
+ "Parent": 9780,
+ "moz": 9781,
+ "Mat": 9782,
+ "styles": 9783,
+ "unden": 9784,
+ "“,": 9785,
+ "irtschaft": 9786,
+ "ким": 9787,
+ "▁Finally": 9788,
+ "phen": 9789,
+ "▁Pac": 9790,
+ "▁ArrayList": 9791,
+ "▁recover": 9792,
+ "▁education": 9793,
+ "models": 9794,
+ "ped": 9795,
+ "▁happy": 9796,
+ "чу": 9797,
+ "▁guerra": 9798,
+ "media": 9799,
+ "OF": 9800,
+ "▁ensure": 9801,
+ "Mark": 9802,
+ "database": 9803,
+ "oggle": 9804,
+ "▁publish": 9805,
+ "OW": 9806,
+ "▁Bau": 9807,
+ "?.": 9808,
+ "▁части": 9809,
+ "▁repository": 9810,
+ "▁Matt": 9811,
+ "high": 9812,
+ "oven": 9813,
+ "▁ger": 9814,
+ "▁unknown": 9815,
+ "Amer": 9816,
+ "▁Brown": 9817,
+ "ALL": 9818,
+ "▁resulting": 9819,
+ "▁bor": 9820,
+ "▁poet": 9821,
+ "ними": 9822,
+ "Email": 9823,
+ "Font": 9824,
+ "▁hist": 9825,
+ "▁today": 9826,
+ "▁Berg": 9827,
+ "▁buttons": 9828,
+ "тал": 9829,
+ "▁sni": 9830,
+ "▁челов": 9831,
+ "Cre": 9832,
+ "▁union": 9833,
+ "▁zich": 9834,
+ "ishop": 9835,
+ "▁quando": 9836,
+ "Po": 9837,
+ "CTION": 9838,
+ "▁Cost": 9839,
+ "судар": 9840,
+ "erved": 9841,
+ "Note": 9842,
+ "Equal": 9843,
+ "лия": 9844,
+ "бур": 9845,
+ "▁abstract": 9846,
+ "stop": 9847,
+ "▁advice": 9848,
+ "▁icon": 9849,
+ "▁travel": 9850,
+ "BS": 9851,
+ "vens": 9852,
+ "▁batch": 9853,
+ "lique": 9854,
+ "sheet": 9855,
+ "▁ihre": 9856,
+ "emon": 9857,
+ "berto": 9858,
+ "▁assigned": 9859,
+ "ью": 9860,
+ "Phone": 9861,
+ "▁award": 9862,
+ "▁functionality": 9863,
+ "alla": 9864,
+ "▁Dam": 9865,
+ "▁ciudad": 9866,
+ "▁cluster": 9867,
+ "Description": 9868,
+ "▁sheet": 9869,
+ "▁Australian": 9870,
+ "▁».": 9871,
+ "▁\"<": 9872,
+ "▁wondering": 9873,
+ "aine": 9874,
+ "▁represented": 9875,
+ "kappa": 9876,
+ "nb": 9877,
+ "▁sy": 9878,
+ "▁Kö": 9879,
+ "=\"#": 9880,
+ "▁seven": 9881,
+ "Directory": 9882,
+ "▁sister": 9883,
+ "plates": 9884,
+ "▁luck": 9885,
+ "▁remaining": 9886,
+ "▁Vill": 9887,
+ "werk": 9888,
+ "anni": 9889,
+ "etti": 9890,
+ "func": 9891,
+ "▁ban": 9892,
+ "ims": 9893,
+ "miss": 9894,
+ "agraph": 9895,
+ "екси": 9896,
+ "▁Ref": 9897,
+ "nitt": 9898,
+ "▁Gab": 9899,
+ "▁andere": 9900,
+ "▁jedoch": 9901,
+ "results": 9902,
+ "!\\": 9903,
+ "▁listed": 9904,
+ "▁loro": 9905,
+ "▁knows": 9906,
+ "жно": 9907,
+ "Rad": 9908,
+ "▁socket": 9909,
+ "multi": 9910,
+ "▁рі": 9911,
+ "rails": 9912,
+ "▁tar": 9913,
+ "▁gentle": 9914,
+ "sett": 9915,
+ "services": 9916,
+ "bound": 9917,
+ "igkeit": 9918,
+ "aja": 9919,
+ "▁cmd": 9920,
+ "agger": 9921,
+ "▁ba": 9922,
+ "▁Belg": 9923,
+ "▁Kle": 9924,
+ "▁wordt": 9925,
+ "▁fost": 9926,
+ "▁dimension": 9927,
+ "Ang": 9928,
+ "uming": 9929,
+ "Obj": 9930,
+ "нен": 9931,
+ "▁Marie": 9932,
+ "exists": 9933,
+ "тро": 9934,
+ "▁боль": 9935,
+ "emente": 9936,
+ "▁Jon": 9937,
+ "SERT": 9938,
+ "▁highest": 9939,
+ "aki": 9940,
+ "▁tres": 9941,
+ "▁circum": 9942,
+ "▁Down": 9943,
+ "ommen": 9944,
+ "urer": 9945,
+ "▁causes": 9946,
+ "venue": 9947,
+ "issance": 9948,
+ "▁influence": 9949,
+ "▁fat": 9950,
+ "реди": 9951,
+ "}\\\\": 9952,
+ "▁entr": 9953,
+ "▁Sign": 9954,
+ "▁кла": 9955,
+ "▁binding": 9956,
+ "essen": 9957,
+ "▁Фран": 9958,
+ "▁Local": 9959,
+ "▁явля": 9960,
+ "appro": 9961,
+ "▁dependencies": 9962,
+ "▁talking": 9963,
+ "▁zurück": 9964,
+ "connection": 9965,
+ "Active": 9966,
+ "bbe": 9967,
+ "irls": 9968,
+ "▁Inf": 9969,
+ "wd": 9970,
+ "▁ис": 9971,
+ "road": 9972,
+ "▁conven": 9973,
+ "ět": 9974,
+ "вез": 9975,
+ "▁entries": 9976,
+ "esc": 9977,
+ "▁bits": 9978,
+ "asso": 9979,
+ "WR": 9980,
+ "ships": 9981,
+ "▁dés": 9982,
+ "esp": 9983,
+ "Make": 9984,
+ "▁familiar": 9985,
+ "Art": 9986,
+ "▁army": 9987,
+ "ctr": 9988,
+ "éric": 9989,
+ "queue": 9990,
+ "▁\\{": 9991,
+ "uela": 9992,
+ "amiento": 9993,
+ "ших": 9994,
+ "▁\"\"\"": 9995,
+ "contr": 9996,
+ "лле": 9997,
+ "FS": 9998,
+ "▁market": 9999,
+ "ång": 10000,
+ "citep": 10001,
+ "Ill": 10002,
+ "rank": 10003,
+ "▁sender": 10004,
+ "▁beim": 10005,
+ "рак": 10006,
+ "▁compat": 10007,
+ "▁occurs": 10008,
+ "▁diese": 10009,
+ "ститу": 10010,
+ "awa": 10011,
+ "▁iOS": 10012,
+ "▁Chinese": 10013,
+ "▁TR": 10014,
+ "▁Ken": 10015,
+ "▁Une": 10016,
+ "▁creates": 10017,
+ "▁showed": 10018,
+ "▁év": 10019,
+ "ologia": 10020,
+ "▁protest": 10021,
+ "▁Pf": 10022,
+ "▁squad": 10023,
+ "++,": 10024,
+ "áv": 10025,
+ "▁essere": 10026,
+ "зя": 10027,
+ "kol": 10028,
+ "▁slightly": 10029,
+ "addr": 10030,
+ "ân": 10031,
+ "▁reduce": 10032,
+ "▁\\(\\": 10033,
+ "▁Dep": 10034,
+ "▁generic": 10035,
+ "Loader": 10036,
+ "ți": 10037,
+ "▁пос": 10038,
+ "▁occasion": 10039,
+ "▁Lady": 10040,
+ "entity": 10041,
+ "▁avant": 10042,
+ "▁Pas": 10043,
+ "aggio": 10044,
+ "\\{": 10045,
+ "пад": 10046,
+ "atholic": 10047,
+ "Password": 10048,
+ "▁respond": 10049,
+ "▁Non": 10050,
+ "AG": 10051,
+ "neg": 10052,
+ "▁ус": 10053,
+ "blob": 10054,
+ "cke": 10055,
+ "▁Consider": 10056,
+ "▁Care": 10057,
+ "iki": 10058,
+ "▁Chicago": 10059,
+ "inden": 10060,
+ "▁Cop": 10061,
+ "]+": 10062,
+ "öm": 10063,
+ "évrier": 10064,
+ "кло": 10065,
+ "alen": 10066,
+ "▁maj": 10067,
+ "racy": 10068,
+ "orte": 10069,
+ "ients": 10070,
+ "ells": 10071,
+ "activity": 10072,
+ "▁runtime": 10073,
+ "NULL": 10074,
+ "▁possibly": 10075,
+ "▁stri": 10076,
+ "izi": 10077,
+ "▁mir": 10078,
+ "▁Version": 10079,
+ "prime": 10080,
+ "▁twenty": 10081,
+ "▁Mah": 10082,
+ "▁sounds": 10083,
+ "шен": 10084,
+ "clusion": 10085,
+ "acz": 10086,
+ "▁determined": 10087,
+ "▁Rep": 10088,
+ "▁Landes": 10089,
+ "▁wall": 10090,
+ "igi": 10091,
+ "▁reset": 10092,
+ "шо": 10093,
+ "yan": 10094,
+ "Met": 10095,
+ "ei": 10096,
+ "▁appearance": 10097,
+ "▁fois": 10098,
+ "▁nell": 10099,
+ "esi": 10100,
+ "ёт": 10101,
+ "loor": 10102,
+ "▁Ul": 10103,
+ "▁resolution": 10104,
+ "▁fot": 10105,
+ "▁throughout": 10106,
+ "▁ri": 10107,
+ "Level": 10108,
+ "pool": 10109,
+ "▁identity": 10110,
+ "▁janu": 10111,
+ "▁imper": 10112,
+ "▁över": 10113,
+ "}`": 10114,
+ "▁infer": 10115,
+ "▁dates": 10116,
+ "▁Standard": 10117,
+ "force": 10118,
+ "ockey": 10119,
+ "tera": 10120,
+ "▁distingu": 10121,
+ "▁presence": 10122,
+ "lica": 10123,
+ "▁leaving": 10124,
+ "itung": 10125,
+ "éb": 10126,
+ "▁establish": 10127,
+ "▁maar": 10128,
+ "adi": 10129,
+ "▁News": 10130,
+ "azon": 10131,
+ "folg": 10132,
+ "▁Hence": 10133,
+ "▁Ye": 10134,
+ "▁fab": 10135,
+ "▁führ": 10136,
+ "itmap": 10137,
+ "▁Vers": 10138,
+ "rov": 10139,
+ "Sign": 10140,
+ "device": 10141,
+ "Sigma": 10142,
+ "▁wetenschapp": 10143,
+ "▁Ps": 10144,
+ "PATH": 10145,
+ "▁torn": 10146,
+ "vest": 10147,
+ "стов": 10148,
+ "account": 10149,
+ "▁largest": 10150,
+ "▁percent": 10151,
+ "▁Women": 10152,
+ "▁img": 10153,
+ "tool": 10154,
+ "▁roce": 10155,
+ "▁ay": 10156,
+ "inet": 10157,
+ "▁août": 10158,
+ "▁polynomial": 10159,
+ "▁integral": 10160,
+ "▁areas": 10161,
+ "}'": 10162,
+ "▁hyp": 10163,
+ "loyee": 10164,
+ "таль": 10165,
+ "▁proxy": 10166,
+ "▁Wy": 10167,
+ "▁Мекси": 10168,
+ "▁escape": 10169,
+ "olar": 10170,
+ "▁mistake": 10171,
+ ")}{": 10172,
+ "▁Pot": 10173,
+ "▁processes": 10174,
+ "\">\r": 10175,
+ "halten": 10176,
+ "zza": 10177,
+ "amo": 10178,
+ "кре": 10179,
+ "▁Wood": 10180,
+ "ør": 10181,
+ "▁сер": 10182,
+ "ocia": 10183,
+ "two": 10184,
+ "profile": 10185,
+ "▁Ast": 10186,
+ "embro": 10187,
+ "▁arms": 10188,
+ "inas": 10189,
+ "innen": 10190,
+ "▁msg": 10191,
+ "INT": 10192,
+ "▁batter": 10193,
+ "ignment": 10194,
+ "▁vy": 10195,
+ "Hrsg": 10196,
+ "▁Grund": 10197,
+ "roc": 10198,
+ "seg": 10199,
+ "▁decor": 10200,
+ "▁eventually": 10201,
+ ">,": 10202,
+ "▁pag": 10203,
+ "anten": 10204,
+ "▁strugg": 10205,
+ "}^\\": 10206,
+ "daten": 10207,
+ "▁rela": 10208,
+ "пов": 10209,
+ "▁коро": 10210,
+ "▁Bos": 10211,
+ "▁labor": 10212,
+ "▁Secret": 10213,
+ "ugen": 10214,
+ "▁jap": 10215,
+ "▁husband": 10216,
+ "▁Album": 10217,
+ "▁etwa": 10218,
+ "▁произ": 10219,
+ "richt": 10220,
+ "rach": 10221,
+ "bat": 10222,
+ "▁prepar": 10223,
+ "▁Stock": 10224,
+ "▁lack": 10225,
+ "хід": 10226,
+ "▁hogy": 10227,
+ "▁Chrome": 10228,
+ "▁Admin": 10229,
+ "▁comparison": 10230,
+ "▁increasing": 10231,
+ "нг": 10232,
+ "imi": 10233,
+ "Db": 10234,
+ "▁gef": 10235,
+ "ucht": 10236,
+ "ése": 10237,
+ "gence": 10238,
+ "▁Core": 10239,
+ "▁incorrect": 10240,
+ "▁assuming": 10241,
+ "ourse": 10242,
+ "ieron": 10243,
+ "▁Theorem": 10244,
+ "▁casa": 10245,
+ "jes": 10246,
+ "▁дере": 10247,
+ "▁`\"": 10248,
+ "LD": 10249,
+ "äß": 10250,
+ "Deb": 10251,
+ "▁suiv": 10252,
+ "▁Bank": 10253,
+ "libs": 10254,
+ "▁Leon": 10255,
+ "▁quart": 10256,
+ "▁professional": 10257,
+ "▁tiene": 10258,
+ "▁accomp": 10259,
+ "стер": 10260,
+ "▁UK": 10261,
+ "NN": 10262,
+ "▁lí": 10263,
+ "ця": 10264,
+ "kel": 10265,
+ "▁•": 10266,
+ "▁dise": 10267,
+ "onto": 10268,
+ "▁má": 10269,
+ "ifs": 10270,
+ "bild": 10271,
+ "▁compute": 10272,
+ "▁éd": 10273,
+ "ję": 10274,
+ "▁Mé": 10275,
+ "▁languages": 10276,
+ "▁Times": 10277,
+ "cen": 10278,
+ "▁авто": 10279,
+ "ým": 10280,
+ "enez": 10281,
+ "▁upp": 10282,
+ "▁méd": 10283,
+ "▁cuando": 10284,
+ "од": 10285,
+ "Intent": 10286,
+ "eerd": 10287,
+ "▁Tal": 10288,
+ "offset": 10289,
+ "▁haben": 10290,
+ "reme": 10291,
+ "▁Stack": 10292,
+ "▁dri": 10293,
+ "▁seinem": 10294,
+ "▁février": 10295,
+ "▁combination": 10296,
+ "▁soll": 10297,
+ "▁movement": 10298,
+ "Spec": 10299,
+ "кры": 10300,
+ "retch": 10301,
+ "Offset": 10302,
+ "Root": 10303,
+ "Ар": 10304,
+ "wart": 10305,
+ "▁Follow": 10306,
+ "▁Social": 10307,
+ "ников": 10308,
+ "▁→": 10309,
+ "Don": 10310,
+ "▁harm": 10311,
+ "agr": 10312,
+ "nego": 10313,
+ "resource": 10314,
+ "▁Luc": 10315,
+ "▁seinen": 10316,
+ "▁Department": 10317,
+ "▁Update": 10318,
+ "▁Texas": 10319,
+ "▁reve": 10320,
+ "▁Pos": 10321,
+ "▁shot": 10322,
+ "othe": 10323,
+ "▁repeated": 10324,
+ "▁recently": 10325,
+ "ában": 10326,
+ "aks": 10327,
+ "пан": 10328,
+ "▁cha": 10329,
+ "ohl": 10330,
+ "▁tend": 10331,
+ "▁дво": 10332,
+ "chts": 10333,
+ "çaise": 10334,
+ "pling": 10335,
+ "album": 10336,
+ "ej": 10337,
+ "▁`[": 10338,
+ "maps": 10339,
+ "▁units": 10340,
+ "▁": 15110,
+ "▁pří": 15111,
+ "pandas": 15112,
+ "▁Plus": 15113,
+ "yll": 15114,
+ "▁terror": 15115,
+ "▁crim": 15116,
+ "▁zak": 15117,
+ "issue": 15118,
+ "panel": 15119,
+ "svg": 15120,
+ "▁reb": 15121,
+ "Customer": 15122,
+ "switch": 15123,
+ "обра": 15124,
+ "▁Championships": 15125,
+ "clo": 15126,
+ "atte": 15127,
+ "▁anymore": 15128,
+ "▁excellent": 15129,
+ "▁opportunity": 15130,
+ "▁Bahn": 15131,
+ "чин": 15132,
+ "eting": 15133,
+ "▁incident": 15134,
+ "tom": 15135,
+ "Pers": 15136,
+ "bben": 15137,
+ "ственной": 15138,
+ "их": 15139,
+ "router": 15140,
+ "▁newly": 15141,
+ "▁silence": 15142,
+ "▁GNU": 15143,
+ "▁Rails": 15144,
+ "▁Amb": 15145,
+ "▁Qual": 15146,
+ "▁Schaus": 15147,
+ "▁Sohn": 15148,
+ "▁ALL": 15149,
+ "▁royal": 15150,
+ "▁£": 15151,
+ "wię": 15152,
+ "▁entfer": 15153,
+ "▁Remove": 15154,
+ "▁hardly": 15155,
+ "Using": 15156,
+ "лог": 15157,
+ "▁Ich": 15158,
+ "▁derni": 15159,
+ "▁Connection": 15160,
+ "fish": 15161,
+ "▁Inform": 15162,
+ "▁Ener": 15163,
+ "roit": 15164,
+ "Bbb": 15165,
+ "ViewModel": 15166,
+ "Video": 15167,
+ "iley": 15168,
+ "▁много": 15169,
+ "▁Gem": 15170,
+ "▁compreh": 15171,
+ "enumerate": 15172,
+ "ulas": 15173,
+ "▁Bah": 15174,
+ "▁Yet": 15175,
+ "BR": 15176,
+ "хра": 15177,
+ "▁county": 15178,
+ "▁Hist": 15179,
+ "▁Гу": 15180,
+ "▁Ј": 15181,
+ "▁mari": 15182,
+ "▁Clar": 15183,
+ "Bitmap": 15184,
+ "▁Cz": 15185,
+ "▁mån": 15186,
+ "▁mere": 15187,
+ "▁musique": 15188,
+ "also": 15189,
+ "dates": 15190,
+ "▁DVD": 15191,
+ "▁gol": 15192,
+ "fony": 15193,
+ "▁Castle": 15194,
+ "▁фами": 15195,
+ "▁arrang": 15196,
+ "▁Business": 15197,
+ "▁Kaz": 15198,
+ "▁osc": 15199,
+ "▁secolo": 15200,
+ "▁affected": 15201,
+ "▁Health": 15202,
+ "reb": 15203,
+ "editor": 15204,
+ "▁owned": 15205,
+ "tl": 15206,
+ "▁ví": 15207,
+ "чних": 15208,
+ "кви": 15209,
+ "▁devient": 15210,
+ "Mutable": 15211,
+ "▁tegen": 15212,
+ "Register": 15213,
+ "єю": 15214,
+ "▁caracter": 15215,
+ "лли": 15216,
+ "▁nouvelle": 15217,
+ "oko": 15218,
+ "ichtet": 15219,
+ "▁evol": 15220,
+ "▁Hab": 15221,
+ "▁militar": 15222,
+ "▁puts": 15223,
+ "endif": 15224,
+ "▁Davis": 15225,
+ "▁Scotland": 15226,
+ "regular": 15227,
+ "▁Context": 15228,
+ "ispiel": 15229,
+ "▁Gallery": 15230,
+ "\",\r": 15231,
+ "▁arc": 15232,
+ "▁INFO": 15233,
+ "▁cod": 15234,
+ "дів": 15235,
+ "▁varchar": 15236,
+ "▁toujours": 15237,
+ "atial": 15238,
+ "▁hanno": 15239,
+ "▁профес": 15240,
+ "▁launched": 15241,
+ "▁населення": 15242,
+ "▁ton": 15243,
+ "aused": 15244,
+ "▁із": 15245,
+ "▁tö": 15246,
+ "▁Pur": 15247,
+ "▁olymp": 15248,
+ "ARN": 15249,
+ "óm": 15250,
+ "▁august": 15251,
+ "▁furn": 15252,
+ "▁Colomb": 15253,
+ "▁Staats": 15254,
+ "hora": 15255,
+ "▁мор": 15256,
+ "canvas": 15257,
+ "▁grave": 15258,
+ "▁composition": 15259,
+ "acja": 15260,
+ "▁которые": 15261,
+ "▁чо": 15262,
+ "General": 15263,
+ "ані": 15264,
+ "▁Johannes": 15265,
+ "кар": 15266,
+ "▁част": 15267,
+ "▁Васи": 15268,
+ "ssh": 15269,
+ "▁replacing": 15270,
+ "▁<>": 15271,
+ "ців": 15272,
+ "laus": 15273,
+ "eny": 15274,
+ "ähl": 15275,
+ "▁marg": 15276,
+ "cience": 15277,
+ "▁instruction": 15278,
+ "▁који": 15279,
+ "Editor": 15280,
+ "▁fundamental": 15281,
+ "mund": 15282,
+ "▁exceptions": 15283,
+ "▁plate": 15284,
+ "▁Lis": 15285,
+ "▁deren": 15286,
+ "prep": 15287,
+ "▁januari": 15288,
+ "Scope": 15289,
+ "ynast": 15290,
+ "rv": 15291,
+ "orsz": 15292,
+ "▁Tony": 15293,
+ "▁ді": 15294,
+ "▁одна": 15295,
+ "▁sab": 15296,
+ "oti": 15297,
+ "jel": 15298,
+ "▁generator": 15299,
+ "▁'.": 15300,
+ "▁sharp": 15301,
+ "▁только": 15302,
+ "▁accounts": 15303,
+ "▁že": 15304,
+ "▁foram": 15305,
+ "▁gouvern": 15306,
+ "TIME": 15307,
+ "▁Soviet": 15308,
+ "▁Gé": 15309,
+ "▁exped": 15310,
+ "▁ordinary": 15311,
+ "▁Conserv": 15312,
+ "▁compla": 15313,
+ "tei": 15314,
+ "▁captain": 15315,
+ "▁Samuel": 15316,
+ "▁Dark": 15317,
+ "▁він": 15318,
+ "▁delight": 15319,
+ "recht": 15320,
+ "dia": 15321,
+ "esses": 15322,
+ "ulp": 15323,
+ "шки": 15324,
+ "bez": 15325,
+ "▁detection": 15326,
+ "▁cookie": 15327,
+ "antry": 15328,
+ "Multi": 15329,
+ "oba": 15330,
+ "▁joy": 15331,
+ "▁safety": 15332,
+ "|^": 15333,
+ "pod": 15334,
+ "adém": 15335,
+ "▁Chron": 15336,
+ "▁Django": 15337,
+ "▁ehemal": 15338,
+ "kh": 15339,
+ "èle": 15340,
+ "▁poc": 15341,
+ "Bottom": 15342,
+ "launch": 15343,
+ "nem": 15344,
+ "▁GROUP": 15345,
+ "ního": 15346,
+ "▁Gib": 15347,
+ "sdk": 15348,
+ "BE": 15349,
+ "▁Gene": 15350,
+ "▁Staff": 15351,
+ "▁subsequent": 15352,
+ "icion": 15353,
+ "▁victory": 15354,
+ "▁canon": 15355,
+ "izar": 15356,
+ "izia": 15357,
+ "▁mate": 15358,
+ "▁layers": 15359,
+ "sudo": 15360,
+ "schule": 15361,
+ "periment": 15362,
+ "ület": 15363,
+ "ARCHAR": 15364,
+ "▁террито": 15365,
+ "▁measures": 15366,
+ "▁zou": 15367,
+ "opsis": 15368,
+ "нами": 15369,
+ "tbody": 15370,
+ "▁ese": 15371,
+ "sterdam": 15372,
+ "▁photo": 15373,
+ "ynchronous": 15374,
+ "setminus": 15375,
+ "▁loads": 15376,
+ "▁pleasure": 15377,
+ "▁meille": 15378,
+ "}\\,": 15379,
+ "qual": 15380,
+ "▁favour": 15381,
+ "▁rod": 15382,
+ "Der": 15383,
+ "рабо": 15384,
+ "▁pressed": 15385,
+ "rę": 15386,
+ "ieving": 15387,
+ "material": 15388,
+ "virt": 15389,
+ "▁capable": 15390,
+ "сло": 15391,
+ "ushed": 15392,
+ "▁побе": 15393,
+ "usetts": 15394,
+ "unsigned": 15395,
+ "ków": 15396,
+ "▁ov": 15397,
+ "egeben": 15398,
+ "▁applying": 15399,
+ "▁galax": 15400,
+ "▁Oracle": 15401,
+ "▁Stuttgart": 15402,
+ "Infl": 15403,
+ "achusetts": 15404,
+ "▁deel": 15405,
+ "lire": 15406,
+ "▁statunit": 15407,
+ "▁Politiker": 15408,
+ "▁beauty": 15409,
+ ")>": 15410,
+ "▁Columbia": 15411,
+ "▁zewnętrzne": 15412,
+ "▁програ": 15413,
+ "▁dx": 15414,
+ "cknow": 15415,
+ "▁dub": 15416,
+ "unächst": 15417,
+ "findViewById": 15418,
+ "▁Mand": 15419,
+ "áll": 15420,
+ "naire": 15421,
+ "▁destin": 15422,
+ "isting": 15423,
+ "aggi": 15424,
+ "chart": 15425,
+ "▁justice": 15426,
+ "Simple": 15427,
+ "▁unfortunately": 15428,
+ "ір": 15429,
+ "▁questa": 15430,
+ "▁Governor": 15431,
+ "яв": 15432,
+ "▁música": 15433,
+ "▁equipo": 15434,
+ "▁Dest": 15435,
+ "elect": 15436,
+ "StackTrace": 15437,
+ "зом": 15438,
+ "proc": 15439,
+ "entin": 15440,
+ "adora": 15441,
+ "▁Лю": 15442,
+ "▁registered": 15443,
+ "HL": 15444,
+ "facebook": 15445,
+ "▁storing": 15446,
+ "▁Currently": 15447,
+ "▁quadr": 15448,
+ "Standard": 15449,
+ "trim": 15450,
+ "ears": 15451,
+ "sender": 15452,
+ "▁Vas": 15453,
+ "▁edific": 15454,
+ "▁Bür": 15455,
+ "▁Country": 15456,
+ "tha": 15457,
+ ";\"": 15458,
+ "nor": 15459,
+ "▁Doctor": 15460,
+ "rument": 15461,
+ "Gen": 15462,
+ "▁Buen": 15463,
+ "rade": 15464,
+ "▁kun": 15465,
+ "navigation": 15466,
+ "Pay": 15467,
+ "▁captured": 15468,
+ "▁struck": 15469,
+ "venir": 15470,
+ "ément": 15471,
+ "▁Tree": 15472,
+ "▁xx": 15473,
+ "▁narr": 15474,
+ "льного": 15475,
+ "▁installing": 15476,
+ "▁association": 15477,
+ "▁inserted": 15478,
+ "erner": 15479,
+ "validate": 15480,
+ "▁lut": 15481,
+ "▁glo": 15482,
+ "▁technology": 15483,
+ "▁Place": 15484,
+ "$?": 15485,
+ "▁zv": 15486,
+ "слі": 15487,
+ "EP": 15488,
+ "▁atmos": 15489,
+ "ugo": 15490,
+ "ért": 15491,
+ "▁Werk": 15492,
+ "▁%}": 15493,
+ "tele": 15494,
+ "Span": 15495,
+ "▁Raj": 15496,
+ "▁Personen": 15497,
+ "▁Cant": 15498,
+ "▁combat": 15499,
+ "▁observation": 15500,
+ "parameter": 15501,
+ "▁agreed": 15502,
+ "pur": 15503,
+ "▁shadow": 15504,
+ "▁gł": 15505,
+ "Keys": 15506,
+ "Cred": 15507,
+ "ouri": 15508,
+ "▁pale": 15509,
+ "ické": 15510,
+ "▁Week": 15511,
+ "▁Prime": 15512,
+ ">.": 15513,
+ "Initial": 15514,
+ "▁один": 15515,
+ "▁'',": 15516,
+ "▁учи": 15517,
+ "▁Inv": 15518,
+ "cola": 15519,
+ "cible": 15520,
+ "▁Theatre": 15521,
+ "▁bem": 15522,
+ "▁satisfy": 15523,
+ "xl": 15524,
+ "▁разви": 15525,
+ "▁pixel": 15526,
+ "lán": 15527,
+ "▁twee": 15528,
+ "çon": 15529,
+ "нения": 15530,
+ "▁AT": 15531,
+ "ège": 15532,
+ "▁Mort": 15533,
+ "▁mysq": 15534,
+ "ften": 15535,
+ "▁пес": 15536,
+ "éma": 15537,
+ "▁Services": 15538,
+ "customer": 15539,
+ "▁AWS": 15540,
+ "ът": 15541,
+ "▁Ach": 15542,
+ "%.": 15543,
+ "▁clarify": 15544,
+ "▁университе": 15545,
+ "xture": 15546,
+ "umi": 15547,
+ "▁så": 15548,
+ "▁Pel": 15549,
+ "serial": 15550,
+ "URI": 15551,
+ "▁rg": 15552,
+ "▁соста": 15553,
+ "chestra": 15554,
+ "].[": 15555,
+ "wen": 15556,
+ "▁Londres": 15557,
+ "▁anys": 15558,
+ "DataSource": 15559,
+ "▁районе": 15560,
+ "▁rein": 15561,
+ "▁metadata": 15562,
+ "umble": 15563,
+ "arbeit": 15564,
+ "hner": 15565,
+ "cient": 15566,
+ "▁norte": 15567,
+ "▁она": 15568,
+ "▁scored": 15569,
+ "▁ray": 15570,
+ "▁февра": 15571,
+ "▁protagon": 15572,
+ "▁Sac": 15573,
+ "▁commonly": 15574,
+ "LinearLayout": 15575,
+ "▁applic": 15576,
+ "▁мая": 15577,
+ "За": 15578,
+ "▁accessible": 15579,
+ "iewer": 15580,
+ "flag": 15581,
+ "▁Rück": 15582,
+ "äu": 15583,
+ "▁erano": 15584,
+ "▁authentic": 15585,
+ "▁Ry": 15586,
+ "▁неско": 15587,
+ "▁embargo": 15588,
+ "▁dry": 15589,
+ "▁reasonable": 15590,
+ "▁Module": 15591,
+ "▁acceler": 15592,
+ "▁interview": 15593,
+ "▁Creek": 15594,
+ "▁alpha": 15595,
+ "serie": 15596,
+ "They": 15597,
+ "ючи": 15598,
+ "▁Hof": 15599,
+ "▁CR": 15600,
+ "modal": 15601,
+ "▁sequences": 15602,
+ "closed": 15603,
+ ")}$": 15604,
+ "▁Чер": 15605,
+ "▁ORDER": 15606,
+ "Rightarrow": 15607,
+ "hausen": 15608,
+ "}}_": 15609,
+ "▁també": 15610,
+ "▁magnetic": 15611,
+ "▁McC": 15612,
+ "▁winning": 15613,
+ "underline": 15614,
+ "▁Billboard": 15615,
+ "naio": 15616,
+ "▁liqu": 15617,
+ "displaystyle": 15618,
+ "timeout": 15619,
+ "▁considerable": 15620,
+ "▁eben": 15621,
+ "ifferent": 15622,
+ "anu": 15623,
+ "▁Сов": 15624,
+ "[(": 15625,
+ "▁:-)": 15626,
+ "leitung": 15627,
+ "formed": 15628,
+ "▁Manager": 15629,
+ "▁onclick": 15630,
+ "TY": 15631,
+ "тах": 15632,
+ "CV": 15633,
+ "runtime": 15634,
+ "poque": 15635,
+ "▁Ло": 15636,
+ "Temp": 15637,
+ "loaded": 15638,
+ "▁!==": 15639,
+ "▁singer": 15640,
+ "far": 15641,
+ "▁Comple": 15642,
+ "▁Österreich": 15643,
+ "Policy": 15644,
+ "▁worker": 15645,
+ "Wrapper": 15646,
+ "obi": 15647,
+ "▁discussed": 15648,
+ "▁buy": 15649,
+ "▁января": 15650,
+ "▁Din": 15651,
+ "▁ged": 15652,
+ "ској": 15653,
+ "Europe": 15654,
+ "▁tall": 15655,
+ "hos": 15656,
+ "лаго": 15657,
+ "▁Block": 15658,
+ "▁identified": 15659,
+ "ListView": 15660,
+ "▁attempting": 15661,
+ "▁typical": 15662,
+ "psum": 15663,
+ "oster": 15664,
+ "▁журна": 15665,
+ "Pe": 15666,
+ "merce": 15667,
+ "▁unexpected": 15668,
+ "hui": 15669,
+ "letter": 15670,
+ "▁nuevo": 15671,
+ "▁або": 15672,
+ "▁VALUES": 15673,
+ "▁Iz": 15674,
+ "Flags": 15675,
+ "▁TRUE": 15676,
+ "ización": 15677,
+ "▁growing": 15678,
+ "estre": 15679,
+ "▁poly": 15680,
+ "▁Stone": 15681,
+ "▁VIII": 15682,
+ "▁localhost": 15683,
+ "ählt": 15684,
+ "▁embedded": 15685,
+ "jdbc": 15686,
+ "▁convention": 15687,
+ "▁scala": 15688,
+ "сок": 15689,
+ "▁analog": 15690,
+ "▁\"+": 15691,
+ "цю": 15692,
+ "occ": 15693,
+ "▁litt": 15694,
+ "PN": 15695,
+ "▁актив": 15696,
+ "attributes": 15697,
+ "▁Ferd": 15698,
+ "▁azure": 15699,
+ "ști": 15700,
+ "ños": 15701,
+ "ping": 15702,
+ "▁teacher": 15703,
+ "}&": 15704,
+ "ipe": 15705,
+ "▁Nob": 15706,
+ "▁има": 15707,
+ "Bind": 15708,
+ "▁magic": 15709,
+ "▁Transport": 15710,
+ "ixel": 15711,
+ "▁computed": 15712,
+ "agna": 15713,
+ "erst": 15714,
+ "HA": 15715,
+ "Wait": 15716,
+ "▁authors": 15717,
+ "▁;)": 15718,
+ "clam": 15719,
+ "▁Pennsylvan": 15720,
+ "▁drug": 15721,
+ "▁vain": 15722,
+ "▁employed": 15723,
+ "▁individuals": 15724,
+ "▁ange": 15725,
+ "utat": 15726,
+ "▁$-": 15727,
+ "correct": 15728,
+ "▁experiments": 15729,
+ "Argument": 15730,
+ "▁IB": 15731,
+ "▁père": 15732,
+ "▁Brian": 15733,
+ "berger": 15734,
+ "Mac": 15735,
+ "iast": 15736,
+ "Perm": 15737,
+ "Cast": 15738,
+ "▁{};": 15739,
+ "▁Student": 15740,
+ "▁statt": 15741,
+ "algebra": 15742,
+ "▁equals": 15743,
+ "▁projet": 15744,
+ "▁président": 15745,
+ "ActivityThread": 15746,
+ "▁einz": 15747,
+ "enia": 15748,
+ "rez": 15749,
+ "essional": 15750,
+ "▁августа": 15751,
+ "override": 15752,
+ "news": 15753,
+ "▁planet": 15754,
+ "nn": 15755,
+ "▁Wis": 15756,
+ "твер": 15757,
+ "▁Valid": 15758,
+ "▁Gef": 15759,
+ "град": 15760,
+ "▁eig": 15761,
+ "antom": 15762,
+ "▁Meister": 15763,
+ "flags": 15764,
+ "fficiale": 15765,
+ "шая": 15766,
+ "-,": 15767,
+ "ationen": 15768,
+ "mouse": 15769,
+ "standard": 15770,
+ "Single": 15771,
+ "▁bol": 15772,
+ "isis": 15773,
+ "▁fruit": 15774,
+ "course": 15775,
+ "itants": 15776,
+ "▁étaient": 15777,
+ "TextField": 15778,
+ "▁фон": 15779,
+ "▁aircraft": 15780,
+ "▁ISSN": 15781,
+ "▁western": 15782,
+ "▁representing": 15783,
+ "Esp": 15784,
+ "▁Else": 15785,
+ "▁sizes": 15786,
+ "▁satisfied": 15787,
+ "otos": 15788,
+ "UD": 15789,
+ "Final": 15790,
+ "ój": 15791,
+ "ève": 15792,
+ "▁Roy": 15793,
+ "ffen": 15794,
+ "▁salt": 15795,
+ "▁Label": 15796,
+ "Sk": 15797,
+ "▁кре": 15798,
+ "▁Литература": 15799,
+ "▁см": 15800,
+ "Attributes": 15801,
+ "aye": 15802,
+ "ськ": 15803,
+ "▁высо": 15804,
+ "-)": 15805,
+ "oses": 15806,
+ "calcul": 15807,
+ "▁Cannot": 15808,
+ "Generic": 15809,
+ "emo": 15810,
+ "▁Autor": 15811,
+ "лён": 15812,
+ "лага": 15813,
+ "vote": 15814,
+ "licates": 15815,
+ "rus": 15816,
+ "éli": 15817,
+ "opf": 15818,
+ "atique": 15819,
+ "scala": 15820,
+ "▁Ohio": 15821,
+ "▁Britann": 15822,
+ "▁bef": 15823,
+ "▁Евро": 15824,
+ "▁Career": 15825,
+ "isée": 15826,
+ "ót": 15827,
+ "bose": 15828,
+ "▁Бер": 15829,
+ "▁Controller": 15830,
+ "pole": 15831,
+ "▁allen": 15832,
+ "▁hack": 15833,
+ "▁extent": 15834,
+ "▁calci": 15835,
+ "Mer": 15836,
+ "▁summary": 15837,
+ "Mart": 15838,
+ "▁historical": 15839,
+ "imat": 15840,
+ "bud": 15841,
+ "▁FOR": 15842,
+ "export": 15843,
+ "edi": 15844,
+ "Mapping": 15845,
+ "▁Ay": 15846,
+ "▁Ruby": 15847,
+ "▁definitions": 15848,
+ "▁{$": 15849,
+ "▁yours": 15850,
+ "rias": 15851,
+ "Touch": 15852,
+ "▁Gaz": 15853,
+ "▁Autom": 15854,
+ "▁истори": 15855,
+ "▁delen": 15856,
+ "▁Kinder": 15857,
+ "}}%": 15858,
+ "▁performing": 15859,
+ "FR": 15860,
+ "▁Sig": 15861,
+ "▁Brad": 15862,
+ "bras": 15863,
+ "▁Jar": 15864,
+ "pkg": 15865,
+ "wr": 15866,
+ "▁Pays": 15867,
+ "NC": 15868,
+ "▁opposed": 15869,
+ "Try": 15870,
+ "▁везе": 15871,
+ "▁Bog": 15872,
+ "▁writes": 15873,
+ "▁stories": 15874,
+ "▁mater": 15875,
+ "▁stagione": 15876,
+ "▁sty": 15877,
+ "▁compatible": 15878,
+ "heast": 15879,
+ "▁Guy": 15880,
+ "egründ": 15881,
+ "▁identifier": 15882,
+ "▁heads": 15883,
+ "пози": 15884,
+ "▁stup": 15885,
+ "▁tf": 15886,
+ "▁још": 15887,
+ "▁Hugh": 15888,
+ "▁cards": 15889,
+ "ovy": 15890,
+ "▁Toast": 15891,
+ "allas": 15892,
+ "▁públic": 15893,
+ "▁assumes": 15894,
+ "▁чемпиона": 15895,
+ "ycler": 15896,
+ "▁Junior": 15897,
+ "▁Fich": 15898,
+ "▁estimated": 15899,
+ "zerw": 15900,
+ "dialog": 15901,
+ "шин": 15902,
+ "shell": 15903,
+ "▁них": 15904,
+ "▁pitch": 15905,
+ "дол": 15906,
+ "outube": 15907,
+ "▁Santi": 15908,
+ "OnClickListener": 15909,
+ "▁Magyar": 15910,
+ "▁vue": 15911,
+ "ião": 15912,
+ "▁`#": 15913,
+ "collect": 15914,
+ "▁Rou": 15915,
+ "analysis": 15916,
+ "istrzost": 15917,
+ "▁Digital": 15918,
+ "▁crist": 15919,
+ "riere": 15920,
+ "▁campo": 15921,
+ "Us": 15922,
+ "▁circa": 15923,
+ "▁Component": 15924,
+ "▁NSString": 15925,
+ "pd": 15926,
+ "▁prince": 15927,
+ "▁invoke": 15928,
+ "▁Marine": 15929,
+ "Allow": 15930,
+ "estic": 15931,
+ "ристи": 15932,
+ "bone": 15933,
+ "туры": 15934,
+ "▁passion": 15935,
+ "áció": 15936,
+ "▁orn": 15937,
+ "вед": 15938,
+ "▁invari": 15939,
+ "▁ні": 15940,
+ "Remove": 15941,
+ "encies": 15942,
+ "ilib": 15943,
+ "▁Director": 15944,
+ "\"\"": 15945,
+ "▁Conse": 15946,
+ "googleapis": 15947,
+ "ók": 15948,
+ "▁Укра": 15949,
+ "▁Having": 15950,
+ "Domain": 15951,
+ "ierz": 15952,
+ "нологи": 15953,
+ "Cho": 15954,
+ "undefined": 15955,
+ "alloc": 15956,
+ "▁pied": 15957,
+ "▁fraction": 15958,
+ "bia": 15959,
+ "▁поло": 15960,
+ "ugno": 15961,
+ "minister": 15962,
+ "▁principale": 15963,
+ "▁refused": 15964,
+ "browser": 15965,
+ "*,": 15966,
+ "▁Hospital": 15967,
+ "▁universal": 15968,
+ "▁Ernst": 15969,
+ "who": 15970,
+ "▁Gard": 15971,
+ "'_": 15972,
+ "conde": 15973,
+ "▁[{": 15974,
+ "sob": 15975,
+ "▁Crit": 15976,
+ "▁декабря": 15977,
+ "▁punto": 15978,
+ "▁eingesetzt": 15979,
+ "▁tör": 15980,
+ "▁Ni": 15981,
+ "▁worry": 15982,
+ "▁legend": 15983,
+ "▁були": 15984,
+ "▁komm": 15985,
+ "rijk": 15986,
+ "effect": 15987,
+ "Ori": 15988,
+ "RES": 15989,
+ "▁Peters": 15990,
+ "▁Baron": 15991,
+ "▁Got": 15992,
+ "▁honest": 15993,
+ "äre": 15994,
+ "ász": 15995,
+ "▁noble": 15996,
+ "▁conclusion": 15997,
+ "▁formatting": 15998,
+ "▁otto": 15999,
+ "▁deleg": 16000,
+ "мб": 16001,
+ "ptop": 16002,
+ "▁sends": 16003,
+ "urname": 16004,
+ "▁festival": 16005,
+ ",": 16006,
+ "рус": 16007,
+ "▁doch": 16008,
+ "subject": 16009,
+ "▁careful": 16010,
+ "quent": 16011,
+ "▁Load": 16012,
+ "temperaturen": 16013,
+ "▁rue": 16014,
+ "Memory": 16015,
+ "ța": 16016,
+ "iona": 16017,
+ "▁dentro": 16018,
+ "▁begann": 16019,
+ "▁Aqu": 16020,
+ "▁scientific": 16021,
+ "kań": 16022,
+ "лок": 16023,
+ "elde": 16024,
+ "▁Those": 16025,
+ "quier": 16026,
+ "actér": 16027,
+ "▁Auflage": 16028,
+ ")'": 16029,
+ "▁gradient": 16030,
+ "integer": 16031,
+ "▁Import": 16032,
+ "SK": 16033,
+ "▁Status": 16034,
+ "▁explo": 16035,
+ "AE": 16036,
+ "Shell": 16037,
+ "▁Paulo": 16038,
+ ".»": 16039,
+ "}": 16040,
+ "flex": 16041,
+ "▁комп": 16042,
+ "onden": 16043,
+ "accept": 16044,
+ "▁miejsce": 16045,
+ "Hub": 16046,
+ "alleng": 16047,
+ "WN": 16048,
+ "▁implementing": 16049,
+ "▁лу": 16050,
+ "▁confusing": 16051,
+ "▁Install": 16052,
+ "▁rou": 16053,
+ "▁проек": 16054,
+ "Accessor": 16055,
+ "љашње": 16056,
+ "odio": 16057,
+ "▁applies": 16058,
+ "ющий": 16059,
+ "▁Mundial": 16060,
+ "État": 16061,
+ "ietnam": 16062,
+ "hum": 16063,
+ "▁сбор": 16064,
+ "ordinate": 16065,
+ "France": 16066,
+ "▁prend": 16067,
+ "eltemperaturen": 16068,
+ "▁trabaj": 16069,
+ "Axis": 16070,
+ "▁мно": 16071,
+ "primary": 16072,
+ "▁Seite": 16073,
+ "permission": 16074,
+ "▁orden": 16075,
+ "since": 16076,
+ "▁ic": 16077,
+ "▁Brazil": 16078,
+ "▁bare": 16079,
+ "▁Nar": 16080,
+ "▁Jur": 16081,
+ "▁freedom": 16082,
+ "▁medical": 16083,
+ "ischof": 16084,
+ "▁сп": 16085,
+ "ież": 16086,
+ "▁bootstrap": 16087,
+ "▁…": 16088,
+ "▁facil": 16089,
+ "cord": 16090,
+ "ване": 16091,
+ "▁Allen": 16092,
+ "avid": 16093,
+ "ingham": 16094,
+ "zas": 16095,
+ "▁inspect": 16096,
+ "itten": 16097,
+ "osti": 16098,
+ "uh": 16099,
+ "cé": 16100,
+ "▁#####": 16101,
+ "cius": 16102,
+ "omy": 16103,
+ "▁Seine": 16104,
+ "bres": 16105,
+ "▁genus": 16106,
+ "Other": 16107,
+ "▁Golden": 16108,
+ "mul": 16109,
+ "▁Спољашње": 16110,
+ "▁gennaio": 16111,
+ "▁carefully": 16112,
+ "aal": 16113,
+ "▁analyt": 16114,
+ "neur": 16115,
+ "▁stretch": 16116,
+ "▁Occ": 16117,
+ "olas": 16118,
+ "▁firebase": 16119,
+ "▁expecting": 16120,
+ "basic": 16121,
+ "condition": 16122,
+ "prov": 16123,
+ "▁Wasser": 16124,
+ "▁concaten": 16125,
+ "▁evil": 16126,
+ "▁coefficients": 16127,
+ "West": 16128,
+ "iry": 16129,
+ "phas": 16130,
+ "▁Jam": 16131,
+ "fois": 16132,
+ "▁consid": 16133,
+ "▁mainten": 16134,
+ "nim": 16135,
+ "esser": 16136,
+ "esz": 16137,
+ "unta": 16138,
+ "uest": 16139,
+ "▁credentials": 16140,
+ "_;": 16141,
+ "Dim": 16142,
+ "преде": 16143,
+ "▁Bü": 16144,
+ "built": 16145,
+ "▁Academ": 16146,
+ "▁audi": 16147,
+ "▁två": 16148,
+ "inand": 16149,
+ "▁Theater": 16150,
+ "▁genre": 16151,
+ "ços": 16152,
+ "gresql": 16153,
+ "▁weap": 16154,
+ "▁Rab": 16155,
+ "▁’": 16156,
+ "▁adult": 16157,
+ "▁dém": 16158,
+ "``": 16159,
+ "▁stabil": 16160,
+ "▁corresponds": 16161,
+ "▁Eastern": 16162,
+ "unnel": 16163,
+ "Worker": 16164,
+ "▁coh": 16165,
+ "лка": 16166,
+ "▁Massachusetts": 16167,
+ "pio": 16168,
+ "▁ports": 16169,
+ "agg": 16170,
+ "▁Debug": 16171,
+ "▁breath": 16172,
+ "MIN": 16173,
+ "Variable": 16174,
+ "batch": 16175,
+ "ссе": 16176,
+ "▁preg": 16177,
+ "▁roles": 16178,
+ "paste": 16179,
+ "▁referenced": 16180,
+ "adrat": 16181,
+ "чё": 16182,
+ "binom": 16183,
+ "▁defining": 16184,
+ "▁Budapest": 16185,
+ "▁дви": 16186,
+ "▁taught": 16187,
+ "▁hole": 16188,
+ "▁quella": 16189,
+ "Msg": 16190,
+ "aska": 16191,
+ "scan": 16192,
+ "▁propose": 16193,
+ "▁Биография": 16194,
+ "{{\\": 16195,
+ "textt": 16196,
+ "▁Alb": 16197,
+ "▁Sydney": 16198,
+ "▁backup": 16199,
+ "▁credit": 16200,
+ "▁францу": 16201,
+ "stats": 16202,
+ "\\\":": 16203,
+ "▁Пере": 16204,
+ "▁accordingly": 16205,
+ "▁Len": 16206,
+ "zna": 16207,
+ "▁Regional": 16208,
+ "▁изда": 16209,
+ "▁jú": 16210,
+ "histor": 16211,
+ "▁entities": 16212,
+ "Star": 16213,
+ "оне": 16214,
+ "']['": 16215,
+ "▁Nova": 16216,
+ "die": 16217,
+ "▁`'": 16218,
+ "▁obten": 16219,
+ "anst": 16220,
+ "▁Relig": 16221,
+ "▁trig": 16222,
+ "▁режи": 16223,
+ "▁Personal": 16224,
+ "▁tone": 16225,
+ "▁aid": 16226,
+ "Visual": 16227,
+ "Submit": 16228,
+ "▁moves": 16229,
+ "▁Bridge": 16230,
+ "▁Boy": 16231,
+ "▁accurate": 16232,
+ "osta": 16233,
+ "atto": 16234,
+ "▁defeated": 16235,
+ "▁datab": 16236,
+ "ginx": 16237,
+ "▁Liv": 16238,
+ "lywood": 16239,
+ "TW": 16240,
+ "rium": 16241,
+ "ipped": 16242,
+ "Fail": 16243,
+ "REQUEST": 16244,
+ "▁ignor": 16245,
+ "▁sitting": 16246,
+ "▁molto": 16247,
+ "▁endpoint": 16248,
+ "ución": 16249,
+ "▁collections": 16250,
+ "▁Ту": 16251,
+ "tembre": 16252,
+ "▁nécess": 16253,
+ "▁interact": 16254,
+ "▁otras": 16255,
+ "▁curr": 16256,
+ "▁tracks": 16257,
+ "▁família": 16258,
+ "▁numerical": 16259,
+ "legt": 16260,
+ "]/": 16261,
+ "▁Mario": 16262,
+ "▁tort": 16263,
+ "bg": 16264,
+ "ssl": 16265,
+ "texttt": 16266,
+ "▁spark": 16267,
+ "дии": 16268,
+ "▁probable": 16269,
+ "%%%%": 16270,
+ "phia": 16271,
+ "],[": 16272,
+ "▁boxes": 16273,
+ "▁academ": 16274,
+ "▁Slo": 16275,
+ "äude": 16276,
+ "▁witness": 16277,
+ "▁editing": 16278,
+ "лина": 16279,
+ "▁lookup": 16280,
+ "▁Buck": 16281,
+ "дня": 16282,
+ "▁jours": 16283,
+ "++){": 16284,
+ "▁indices": 16285,
+ "▁flight": 16286,
+ "▁computation": 16287,
+ "Plugin": 16288,
+ "▁realize": 16289,
+ "isset": 16290,
+ "▁derivative": 16291,
+ "linewidth": 16292,
+ "bund": 16293,
+ "▁thor": 16294,
+ "▁.=": 16295,
+ "▁sí": 16296,
+ "▁Click": 16297,
+ "▁Sebast": 16298,
+ ">'": 16299,
+ "havior": 16300,
+ "lei": 16301,
+ "ulf": 16302,
+ "▁geometry": 16303,
+ "prev": 16304,
+ "empl": 16305,
+ "▁Lé": 16306,
+ "anson": 16307,
+ "▁Alice": 16308,
+ "prototype": 16309,
+ "READ": 16310,
+ "icular": 16311,
+ "▁бі": 16312,
+ "▁deutsche": 16313,
+ "▁Represent": 16314,
+ "sites": 16315,
+ "▁Mean": 16316,
+ "▁diss": 16317,
+ "▁Zur": 16318,
+ "▁през": 16319,
+ "PAR": 16320,
+ "▁'#": 16321,
+ "▁Dra": 16322,
+ "сон": 16323,
+ "▁steht": 16324,
+ "markt": 16325,
+ "▁ease": 16326,
+ "Drawing": 16327,
+ "=%": 16328,
+ "Stop": 16329,
+ "▁serving": 16330,
+ "▁także": 16331,
+ "▁DNS": 16332,
+ "▁literal": 16333,
+ "Die": 16334,
+ "▁вос": 16335,
+ "▁senior": 16336,
+ "acion": 16337,
+ "▁ubuntu": 16338,
+ "▁Frankfurt": 16339,
+ "▁Sunday": 16340,
+ "áb": 16341,
+ "▁journey": 16342,
+ "issa": 16343,
+ "berry": 16344,
+ "▁sep": 16345,
+ "▁ion": 16346,
+ "wert": 16347,
+ "ország": 16348,
+ "serve": 16349,
+ "▁Milano": 16350,
+ "▁века": 16351,
+ "рах": 16352,
+ "▁июля": 16353,
+ "▁manera": 16354,
+ "▁stations": 16355,
+ "▁adopted": 16356,
+ "▁anybody": 16357,
+ "VERSION": 16358,
+ "FE": 16359,
+ "dorf": 16360,
+ "...,": 16361,
+ "▁образова": 16362,
+ "Logger": 16363,
+ "фициаль": 16364,
+ "WRITE": 16365,
+ "▁ham": 16366,
+ "▁Future": 16367,
+ "oten": 16368,
+ "▁AG": 16369,
+ "▁trained": 16370,
+ "▁Nich": 16371,
+ "▁university": 16372,
+ "▁Olympics": 16373,
+ "▁doit": 16374,
+ "▁cultural": 16375,
+ "Conf": 16376,
+ "▁Conference": 16377,
+ "orno": 16378,
+ "▁MP": 16379,
+ "▁bou": 16380,
+ "cin": 16381,
+ "High": 16382,
+ "annte": 16383,
+ "▁displaying": 16384,
+ "▁chapter": 16385,
+ "▁Frauen": 16386,
+ "▁realized": 16387,
+ "▁attempted": 16388,
+ "▁preferred": 16389,
+ "Dat": 16390,
+ "▁trouve": 16391,
+ "▁intention": 16392,
+ "▁Notice": 16393,
+ "timestamp": 16394,
+ "*(": 16395,
+ "▁Ша": 16396,
+ "anas": 16397,
+ "cla": 16398,
+ "isz": 16399,
+ "tbl": 16400,
+ "Arr": 16401,
+ "▁inverse": 16402,
+ "▁terrible": 16403,
+ "▁occupied": 16404,
+ "JAX": 16405,
+ "<-": 16406,
+ "▁Philosoph": 16407,
+ "▁Corps": 16408,
+ "builder": 16409,
+ "▁begins": 16410,
+ "▁census": 16411,
+ ".’": 16412,
+ "▁proven": 16413,
+ "metric": 16414,
+ "▁increases": 16415,
+ "wich": 16416,
+ "▁ABC": 16417,
+ "projects": 16418,
+ "▁Thor": 16419,
+ "▁confidence": 16420,
+ "▁ufficiale": 16421,
+ "elm": 16422,
+ "▁garden": 16423,
+ "▁robust": 16424,
+ "▁così": 16425,
+ "iedz": 16426,
+ "▁Islam": 16427,
+ "▁Address": 16428,
+ "▁divide": 16429,
+ "▁Eu": 16430,
+ "catal": 16431,
+ "detail": 16432,
+ "ependant": 16433,
+ "fg": 16434,
+ "▁bew": 16435,
+ "▁fis": 16436,
+ "▁BO": 16437,
+ "▁wsp": 16438,
+ "▁pipeline": 16439,
+ "hd": 16440,
+ "▁Session": 16441,
+ "länd": 16442,
+ "iveau": 16443,
+ "estr": 16444,
+ "▁particle": 16445,
+ "▁laravel": 16446,
+ "pic": 16447,
+ "▁nau": 16448,
+ "▁fins": 16449,
+ "▁Vil": 16450,
+ "▁fus": 16451,
+ "▁quasi": 16452,
+ "operation": 16453,
+ "▁aller": 16454,
+ "▁analy": 16455,
+ "▁Он": 16456,
+ "▁Mes": 16457,
+ "▁опера": 16458,
+ "▁handled": 16459,
+ "▁deprec": 16460,
+ "tto": 16461,
+ "▁Ek": 16462,
+ "▁stran": 16463,
+ "▁anglais": 16464,
+ "jure": 16465,
+ "▁Silver": 16466,
+ "▁closely": 16467,
+ "enkins": 16468,
+ "anos": 16469,
+ "sted": 16470,
+ "▁сентября": 16471,
+ "brand": 16472,
+ "ньо": 16473,
+ "▁présent": 16474,
+ "rok": 16475,
+ "mount": 16476,
+ "▁Anthony": 16477,
+ "▁Furthermore": 16478,
+ "inha": 16479,
+ "▁архи": 16480,
+ "▁разли": 16481,
+ "▁октября": 16482,
+ "▁pint": 16483,
+ "ný": 16484,
+ "pts": 16485,
+ "▁italien": 16486,
+ "▁реги": 16487,
+ "лез": 16488,
+ "дина": 16489,
+ "atherine": 16490,
+ "Internal": 16491,
+ "Question": 16492,
+ "▁settlement": 16493,
+ "▁Все": 16494,
+ "▁folders": 16495,
+ "дри": 16496,
+ "▁valor": 16497,
+ "▁Miller": 16498,
+ "▁Assert": 16499,
+ "▁patient": 16500,
+ "▁Nieder": 16501,
+ "▁EP": 16502,
+ "▁Agr": 16503,
+ "▁onde": 16504,
+ "▁scop": 16505,
+ "sequence": 16506,
+ "▁PL": 16507,
+ "▁seek": 16508,
+ "javase": 16509,
+ "▁Vector": 16510,
+ "▁ná": 16511,
+ "▁categoría": 16512,
+ "clone": 16513,
+ "NR": 16514,
+ "available": 16515,
+ "▁Besch": 16516,
+ "▁eclipse": 16517,
+ "wicklung": 16518,
+ "deploy": 16519,
+ "enie": 16520,
+ "▁\")": 16521,
+ "äst": 16522,
+ "▁sync": 16523,
+ "CODE": 16524,
+ "▁Че": 16525,
+ "▁floating": 16526,
+ "/`": 16527,
+ "▁retired": 16528,
+ "deb": 16529,
+ "▁particul": 16530,
+ "▁collected": 16531,
+ "▁downloaded": 16532,
+ "nice": 16533,
+ "▁Buffer": 16534,
+ "▁Account": 16535,
+ "▁maggio": 16536,
+ "▁реда": 16537,
+ "▁sales": 16538,
+ "▁statunitense": 16539,
+ "▁Ki": 16540,
+ "▁Ferr": 16541,
+ "Lock": 16542,
+ "▁Isabel": 16543,
+ "clar": 16544,
+ "▁pov": 16545,
+ "atra": 16546,
+ "▁Frau": 16547,
+ "▁sorting": 16548,
+ "▁phrase": 16549,
+ "▁апреля": 16550,
+ "▁деятель": 16551,
+ "▁André": 16552,
+ "definition": 16553,
+ "writing": 16554,
+ "éré": 16555,
+ "щу": 16556,
+ "▁Ord": 16557,
+ "▁rum": 16558,
+ "▁Turk": 16559,
+ "▁Ivan": 16560,
+ "theless": 16561,
+ "▁ги": 16562,
+ "▁sake": 16563,
+ "▁Based": 16564,
+ "deck": 16565,
+ "orus": 16566,
+ "▁tutti": 16567,
+ "▁blan": 16568,
+ "▁Пу": 16569,
+ "Detail": 16570,
+ "▁Но": 16571,
+ "▁Sky": 16572,
+ "▁près": 16573,
+ "мой": 16574,
+ "coln": 16575,
+ "ческой": 16576,
+ "eti": 16577,
+ "▁arrow": 16578,
+ "▁Cha": 16579,
+ "chmark": 16580,
+ "œur": 16581,
+ "fab": 16582,
+ "куль": 16583,
+ "GridView": 16584,
+ "▁Background": 16585,
+ "sn": 16586,
+ "▁seguito": 16587,
+ "▁nic": 16588,
+ "cou": 16589,
+ "тів": 16590,
+ "▁bzw": 16591,
+ "addEventListener": 16592,
+ "sync": 16593,
+ "azzo": 16594,
+ "abstract": 16595,
+ "assets": 16596,
+ "▁Dru": 16597,
+ "зд": 16598,
+ "ordnet": 16599,
+ "▁bigger": 16600,
+ "▁initialized": 16601,
+ "каз": 16602,
+ "ogene": 16603,
+ "viously": 16604,
+ "▁guid": 16605,
+ "scheidung": 16606,
+ "▁Zent": 16607,
+ "▁frames": 16608,
+ "rieben": 16609,
+ "▁issued": 16610,
+ "▁dow": 16611,
+ "▁describes": 16612,
+ "ilst": 16613,
+ "▁criteria": 16614,
+ "▁gentleman": 16615,
+ "Basic": 16616,
+ "nez": 16617,
+ "Dev": 16618,
+ "Move": 16619,
+ "▁estaba": 16620,
+ "▁settembre": 16621,
+ "circle": 16622,
+ "▁fais": 16623,
+ "▁myst": 16624,
+ "▁archiv": 16625,
+ "dynamic": 16626,
+ "jà": 16627,
+ "itas": 16628,
+ "▁який": 16629,
+ "▁dor": 16630,
+ "▁Amazon": 16631,
+ "▁neces": 16632,
+ "▁Marcel": 16633,
+ "▁ella": 16634,
+ "рок": 16635,
+ "▁Pennsylvania": 16636,
+ "cular": 16637,
+ "Pack": 16638,
+ "itage": 16639,
+ "▁Burn": 16640,
+ "▁RO": 16641,
+ "▁они": 16642,
+ "~$": 16643,
+ "TeX": 16644,
+ "assign": 16645,
+ "▁beat": 16646,
+ "idense": 16647,
+ "acent": 16648,
+ "Alert": 16649,
+ "▁strateg": 16650,
+ "▁månaden": 16651,
+ "LOC": 16652,
+ "▁catalog": 16653,
+ "printStackTrace": 16654,
+ "()).": 16655,
+ "usted": 16656,
+ "▁Framework": 16657,
+ "ECK": 16658,
+ "▁até": 16659,
+ "Framework": 16660,
+ "▁attacks": 16661,
+ "▁Bert": 16662,
+ "▁тран": 16663,
+ ":%": 16664,
+ "arsi": 16665,
+ "notation": 16666,
+ "▁logical": 16667,
+ "weet": 16668,
+ "▁visited": 16669,
+ "bru": 16670,
+ "▁surprise": 16671,
+ "^^": 16672,
+ "inale": 16673,
+ "remote": 16674,
+ "'},": 16675,
+ "Syntax": 16676,
+ "iane": 16677,
+ "onnen": 16678,
+ "▁breaking": 16679,
+ "parser": 16680,
+ "apk": 16681,
+ "▁Miguel": 16682,
+ "▁§": 16683,
+ "▁acting": 16684,
+ "▁gebru": 16685,
+ "AtIndex": 16686,
+ "ються": 16687,
+ "▁offers": 16688,
+ "▁prac": 16689,
+ "▁grant": 16690,
+ "ternoon": 16691,
+ "▁acquired": 16692,
+ "▁Ny": 16693,
+ "▁comma": 16694,
+ "ník": 16695,
+ "▁Step": 16696,
+ "inners": 16697,
+ "▁SA": 16698,
+ "▁wat": 16699,
+ "days": 16700,
+ "▁rectangle": 16701,
+ "dar": 16702,
+ "▁trac": 16703,
+ "▁Indones": 16704,
+ "▁feedback": 16705,
+ "▁breaks": 16706,
+ "partition": 16707,
+ "icans": 16708,
+ "▁Notices": 16709,
+ "▁improved": 16710,
+ "phan": 16711,
+ "▁differential": 16712,
+ "scripts": 16713,
+ "▁XIII": 16714,
+ "▁Labor": 16715,
+ "▁precision": 16716,
+ "▁seed": 16717,
+ "bundle": 16718,
+ "idents": 16719,
+ "hre": 16720,
+ "▁Douglas": 16721,
+ "uld": 16722,
+ "▁secondary": 16723,
+ "▁brig": 16724,
+ "▁confirmed": 16725,
+ "▁claims": 16726,
+ "Role": 16727,
+ "▁Jewish": 16728,
+ "▁před": 16729,
+ "▁hotel": 16730,
+ "▁compte": 16731,
+ "▁recursive": 16732,
+ "](#)": 16733,
+ "▁rotate": 16734,
+ "▁chrome": 16735,
+ "inea": 16736,
+ "%;\r": 16737,
+ "▁Environment": 16738,
+ "platz": 16739,
+ "▁Single": 16740,
+ "▁sevent": 16741,
+ "▁posting": 16742,
+ "▁dealing": 16743,
+ "parameters": 16744,
+ "граф": 16745,
+ "Authentication": 16746,
+ "touch": 16747,
+ "Az": 16748,
+ "▁gray": 16749,
+ "encing": 16750,
+ "boldmath": 16751,
+ "▁сайте": 16752,
+ "▁Za": 16753,
+ "anje": 16754,
+ "▁polar": 16755,
+ "▁ули": 16756,
+ "kil": 16757,
+ "▁hover": 16758,
+ "▁REST": 16759,
+ "▁Come": 16760,
+ "jb": 16761,
+ "▁Georgia": 16762,
+ "▁Estado": 16763,
+ "OutputStream": 16764,
+ "ћи": 16765,
+ "▁dump": 16766,
+ "▁Age": 16767,
+ "▁swo": 16768,
+ "mobile": 16769,
+ "occup": 16770,
+ "шего": 16771,
+ "▁constitution": 16772,
+ "good": 16773,
+ "aku": 16774,
+ "▁анг": 16775,
+ "ieck": 16776,
+ "▁Psych": 16777,
+ "▁roots": 16778,
+ "▁vest": 16779,
+ "▁годах": 16780,
+ "▁República": 16781,
+ "▁pian": 16782,
+ "igration": 16783,
+ "▁préc": 16784,
+ "▁generates": 16785,
+ "LY": 16786,
+ "(`": 16787,
+ "▁=~": 16788,
+ "шения": 16789,
+ "▁Rah": 16790,
+ "▁connecting": 16791,
+ "ží": 16792,
+ "▁fő": 16793,
+ "▁appel": 16794,
+ "▁Railway": 16795,
+ "гли": 16796,
+ "▁développ": 16797,
+ "▁apo": 16798,
+ "fran": 16799,
+ "▁immediate": 16800,
+ "вого": 16801,
+ "Runner": 16802,
+ "äg": 16803,
+ "Something": 16804,
+ "▁généra": 16805,
+ "EventArgs": 16806,
+ "inction": 16807,
+ "gly": 16808,
+ "▁Due": 16809,
+ "▁prost": 16810,
+ "▁referring": 16811,
+ "▁jog": 16812,
+ "▁executable": 16813,
+ "▁Dream": 16814,
+ "acs": 16815,
+ "▁Cole": 16816,
+ "ampf": 16817,
+ "▁Bis": 16818,
+ "▁июня": 16819,
+ "lieder": 16820,
+ "тек": 16821,
+ "▁vb": 16822,
+ "▁mom": 16823,
+ "▁:(": 16824,
+ "▁dernier": 16825,
+ "'=>": 16826,
+ "▁этого": 16827,
+ "▁neue": 16828,
+ "▁Ча": 16829,
+ "▁weitere": 16830,
+ "▁alleg": 16831,
+ "▁reality": 16832,
+ "▁judge": 16833,
+ "▁Balt": 16834,
+ "▁thin": 16835,
+ "▁Ged": 16836,
+ "ieval": 16837,
+ "mx": 16838,
+ "ціональ": 16839,
+ "▁выпу": 16840,
+ "▁IX": 16841,
+ "▁blind": 16842,
+ "▁Motor": 16843,
+ "▁ша": 16844,
+ "▁approximation": 16845,
+ "dam": 16846,
+ "▁fog": 16847,
+ "кор": 16848,
+ "▁Writ": 16849,
+ "▁ling": 16850,
+ "▁писа": 16851,
+ "▁Mars": 16852,
+ "otti": 16853,
+ "Enum": 16854,
+ "▁Trib": 16855,
+ "▁merc": 16856,
+ "zung": 16857,
+ "vanced": 16858,
+ "cfg": 16859,
+ "нах": 16860,
+ "schen": 16861,
+ "\"].": 16862,
+ "bek": 16863,
+ "▁ster": 16864,
+ "jp": 16865,
+ "▁Rap": 16866,
+ "▁recording": 16867,
+ "▁peint": 16868,
+ "▁lets": 16869,
+ "änge": 16870,
+ ">\";": 16871,
+ "▁місце": 16872,
+ "▁caval": 16873,
+ "▁CSV": 16874,
+ "▁entstand": 16875,
+ "▁helper": 16876,
+ "endet": 16877,
+ "▁Gram": 16878,
+ "▁Diego": 16879,
+ "▁Bishop": 16880,
+ "TAG": 16881,
+ "▁ecc": 16882,
+ "▁Een": 16883,
+ "▁AV": 16884,
+ "City": 16885,
+ "▁Guide": 16886,
+ "hind": 16887,
+ "rical": 16888,
+ "▁Основ": 16889,
+ "Bus": 16890,
+ "▁zunächst": 16891,
+ "▁tick": 16892,
+ "▁Colonel": 16893,
+ "Thanks": 16894,
+ "▁ferm": 16895,
+ "▁granted": 16896,
+ "▁threshold": 16897,
+ "omorphic": 16898,
+ "▁Hun": 16899,
+ "enis": 16900,
+ "▁прав": 16901,
+ "▁які": 16902,
+ "PG": 16903,
+ "▁ws": 16904,
+ "▁technical": 16905,
+ "estro": 16906,
+ "klär": 16907,
+ "vars": 16908,
+ "ocrat": 16909,
+ "▁општи": 16910,
+ "onso": 16911,
+ "iba": 16912,
+ "▁Save": 16913,
+ "▁programa": 16914,
+ "▁въ": 16915,
+ "▁invån": 16916,
+ ">()": 16917,
+ "▁mejor": 16918,
+ "▁слова": 16919,
+ "▁replacement": 16920,
+ "▁impr": 16921,
+ "▁Francesco": 16922,
+ "▁Hotel": 16923,
+ "▁UPDATE": 16924,
+ "▁музы": 16925,
+ "ugs": 16926,
+ "vard": 16927,
+ "▁faz": 16928,
+ "inton": 16929,
+ "▁arts": 16930,
+ "▁Ky": 16931,
+ "▁Ils": 16932,
+ "▁sera": 16933,
+ "▁Volume": 16934,
+ "▁giugno": 16935,
+ "▁asym": 16936,
+ "▁Pir": 16937,
+ "▁NAS": 16938,
+ "▁Tam": 16939,
+ "ěl": 16940,
+ "Sequ": 16941,
+ "kmal": 16942,
+ "▁Eins": 16943,
+ "▁компа": 16944,
+ "obe": 16945,
+ "oor": 16946,
+ "▁heap": 16947,
+ "ctl": 16948,
+ "▁separately": 16949,
+ "reader": 16950,
+ "▁significantly": 16951,
+ "▁Lag": 16952,
+ "notes": 16953,
+ "▁sele": 16954,
+ "▁dedicated": 16955,
+ "▁Host": 16956,
+ "choice": 16957,
+ "wing": 16958,
+ "▁Titel": 16959,
+ "▁befindet": 16960,
+ "large": 16961,
+ "▁conten": 16962,
+ "JavaScript": 16963,
+ "▁deser": 16964,
+ "▁Gordon": 16965,
+ "спе": 16966,
+ "▁patri": 16967,
+ "▁Random": 16968,
+ "▁Returns": 16969,
+ "ым": 16970,
+ "рома": 16971,
+ "▁Studies": 16972,
+ "Sl": 16973,
+ "▁frü": 16974,
+ "TEXT": 16975,
+ "inate": 16976,
+ "▁Tol": 16977,
+ "▁everywhere": 16978,
+ "arta": 16979,
+ "▁orbit": 16980,
+ "▁Aires": 16981,
+ "▁Iss": 16982,
+ "▁też": 16983,
+ "▁diverse": 16984,
+ "▁numeric": 16985,
+ "maz": 16986,
+ "▁mise": 16987,
+ "▁battery": 16988,
+ "▁Akadem": 16989,
+ "нение": 16990,
+ "▁simultane": 16991,
+ "▁Dead": 16992,
+ "▁clust": 16993,
+ "▁otro": 16994,
+ "▁cerca": 16995,
+ "()`,": 16996,
+ "roz": 16997,
+ "ăt": 16998,
+ "▁MO": 16999,
+ "riften": 17000,
+ "important": 17001,
+ "▁jeho": 17002,
+ "▁findViewById": 17003,
+ "▁consequence": 17004,
+ "▁measured": 17005,
+ "ishes": 17006,
+ "▁sze": 17007,
+ "iendo": 17008,
+ "▁Wahl": 17009,
+ "strip": 17010,
+ "ARD": 17011,
+ "▁opacity": 17012,
+ "WORD": 17013,
+ "▁Ві": 17014,
+ "▁Location": 17015,
+ "rai": 17016,
+ "пен": 17017,
+ "▁rif": 17018,
+ "aussian": 17019,
+ "FileName": 17020,
+ "▁disco": 17021,
+ "ilen": 17022,
+ "▁vagy": 17023,
+ "licity": 17024,
+ "Border": 17025,
+ "▁Track": 17026,
+ "бом": 17027,
+ "fact": 17028,
+ "oka": 17029,
+ "▁gior": 17030,
+ "▁XVII": 17031,
+ "▁där": 17032,
+ "Site": 17033,
+ "ało": 17034,
+ "ská": 17035,
+ "▁pixels": 17036,
+ "vity": 17037,
+ "jQuery": 17038,
+ "▁sculpt": 17039,
+ "▁cargo": 17040,
+ "▁directive": 17041,
+ "▁wal": 17042,
+ "▁conna": 17043,
+ "▁Through": 17044,
+ "▁этом": 17045,
+ "Static": 17046,
+ "omsnitt": 17047,
+ "▁rund": 17048,
+ "▁claimed": 17049,
+ "зня": 17050,
+ "sha": 17051,
+ "▁rag": 17052,
+ "crement": 17053,
+ "▁fünf": 17054,
+ "▁rival": 17055,
+ "rin": 17056,
+ "slash": 17057,
+ "▁thirty": 17058,
+ "sleep": 17059,
+ "ологи": 17060,
+ "SM": 17061,
+ "gate": 17062,
+ "izations": 17063,
+ "vik": 17064,
+ "▁bless": 17065,
+ "▁Illinois": 17066,
+ "▁TE": 17067,
+ "uting": 17068,
+ "▁solving": 17069,
+ "GER": 17070,
+ "▁XIV": 17071,
+ "▁Indians": 17072,
+ "express": 17073,
+ "▁Heil": 17074,
+ "▁mujer": 17075,
+ "▁invånare": 17076,
+ "']);": 17077,
+ "▁aur": 17078,
+ "boost": 17079,
+ "GO": 17080,
+ "▁nin": 17081,
+ "tok": 17082,
+ "god": 17083,
+ "oter": 17084,
+ ")$$": 17085,
+ "▁descend": 17086,
+ "рю": 17087,
+ "▁Language": 17088,
+ "▁diver": 17089,
+ "▁Assuming": 17090,
+ "▁frequent": 17091,
+ "чні": 17092,
+ "▁Biography": 17093,
+ ",[": 17094,
+ "urm": 17095,
+ "▁walked": 17096,
+ "▁federal": 17097,
+ "▁Michigan": 17098,
+ "▁facts": 17099,
+ "▁Integr": 17100,
+ "LES": 17101,
+ "▁Alan": 17102,
+ "▁coup": 17103,
+ "Ber": 17104,
+ "▁particles": 17105,
+ "ће": 17106,
+ "Inflater": 17107,
+ "+(": 17108,
+ "Bound": 17109,
+ "▁Sü": 17110,
+ "Audio": 17111,
+ "citet": 17112,
+ "yect": 17113,
+ "▁nr": 17114,
+ "xe": 17115,
+ "▁Brun": 17116,
+ "▁_,": 17117,
+ "avor": 17118,
+ "▁discipl": 17119,
+ "alm": 17120,
+ "▁ноября": 17121,
+ "▁SSL": 17122,
+ "▁Kaiser": 17123,
+ "▁recher": 17124,
+ "ygon": 17125,
+ "▁regardless": 17126,
+ "▁configur": 17127,
+ "▁unnecess": 17128,
+ "▁Clark": 17129,
+ "PHP": 17130,
+ "▁FALSE": 17131,
+ "▁pad": 17132,
+ "$}": 17133,
+ "▁valu": 17134,
+ "▁disease": 17135,
+ "▁maior": 17136,
+ "▁hommes": 17137,
+ "▁Edition": 17138,
+ "slant": 17139,
+ "▁ending": 17140,
+ "▁settled": 17141,
+ "urus": 17142,
+ "hed": 17143,
+ "Pattern": 17144,
+ "▁година": 17145,
+ "▁Philadel": 17146,
+ "tikzpicture": 17147,
+ "▁coal": 17148,
+ "▁sede": 17149,
+ "▁satisfies": 17150,
+ "▁trim": 17151,
+ "▁bat": 17152,
+ "▁américain": 17153,
+ "▁luglio": 17154,
+ "▁поча": 17155,
+ "ffff": 17156,
+ "▁Target": 17157,
+ "generate": 17158,
+ "▁Zie": 17159,
+ "ția": 17160,
+ "▁gard": 17161,
+ "▁workers": 17162,
+ "▁Job": 17163,
+ "▁urban": 17164,
+ "ahlen": 17165,
+ "▁Building": 17166,
+ "▁neu": 17167,
+ "▁chron": 17168,
+ "▁Earl": 17169,
+ "gro": 17170,
+ "USE": 17171,
+ "▁XII": 17172,
+ "▁wealth": 17173,
+ "inae": 17174,
+ "▁Бра": 17175,
+ "▁libert": 17176,
+ "iros": 17177,
+ ":$": 17178,
+ "lee": 17179,
+ "ieves": 17180,
+ "▁Justice": 17181,
+ "▁oil": 17182,
+ "▁Athlet": 17183,
+ "▁clo": 17184,
+ "Scale": 17185,
+ "▁lips": 17186,
+ "▁april": 17187,
+ "▁impression": 17188,
+ "▁perce": 17189,
+ "▁участи": 17190,
+ "vil": 17191,
+ "éch": 17192,
+ "▁equality": 17193,
+ "▁мет": 17194,
+ "▁annotation": 17195,
+ "ernal": 17196,
+ "▁Mach": 17197,
+ "▁intitul": 17198,
+ "problem": 17199,
+ "ющих": 17200,
+ "oplus": 17201,
+ "▁thousands": 17202,
+ "▁calculations": 17203,
+ "umps": 17204,
+ "▁triangle": 17205,
+ "phal": 17206,
+ "▁Dorf": 17207,
+ "▁dollars": 17208,
+ "▁denen": 17209,
+ "lès": 17210,
+ "olid": 17211,
+ "▁Results": 17212,
+ "▁Stadium": 17213,
+ "▁Desp": 17214,
+ "▁Eisen": 17215,
+ "imir": 17216,
+ "▁sotto": 17217,
+ "▁či": 17218,
+ "atable": 17219,
+ "orum": 17220,
+ "▁convergence": 17221,
+ "▁jeune": 17222,
+ "oking": 17223,
+ "▁живо": 17224,
+ "aining": 17225,
+ "pointer": 17226,
+ "culo": 17227,
+ "▁jsou": 17228,
+ "▁grab": 17229,
+ "akte": 17230,
+ "▁hoping": 17231,
+ "▁Mak": 17232,
+ "▁sag": 17233,
+ "origine": 17234,
+ "▁послед": 17235,
+ "▁Veg": 17236,
+ "▁theoret": 17237,
+ "▁Tru": 17238,
+ "nement": 17239,
+ "▁faces": 17240,
+ "Hor": 17241,
+ "Join": 17242,
+ "arel": 17243,
+ "▁около": 17244,
+ "However": 17245,
+ "▁catal": 17246,
+ "bourg": 17247,
+ "▁mysqli": 17248,
+ "acions": 17249,
+ "▁Initial": 17250,
+ "▁rain": 17251,
+ "iture": 17252,
+ "▁Sciences": 17253,
+ "▁Kreis": 17254,
+ ".__": 17255,
+ "▁cinq": 17256,
+ "▁Auß": 17257,
+ "ithmet": 17258,
+ "itors": 17259,
+ "amazon": 17260,
+ "▁gap": 17261,
+ "▁ignored": 17262,
+ "adv": 17263,
+ "кої": 17264,
+ "▁часть": 17265,
+ "▁corpor": 17266,
+ "цер": 17267,
+ "▁crime": 17268,
+ "uous": 17269,
+ "▁налази": 17270,
+ "DataFrame": 17271,
+ "води": 17272,
+ "Ign": 17273,
+ "▁Lincoln": 17274,
+ "▁menos": 17275,
+ "▁Luft": 17276,
+ "▁Lind": 17277,
+ "▁Cook": 17278,
+ "▁materials": 17279,
+ "apped": 17280,
+ "ignore": 17281,
+ "▁откры": 17282,
+ "fried": 17283,
+ "▁gouvernement": 17284,
+ "▁fired": 17285,
+ "▁screenshot": 17286,
+ "сен": 17287,
+ "▁[(": 17288,
+ "▁организа": 17289,
+ "Graphics": 17290,
+ "▁проти": 17291,
+ "▁phen": 17292,
+ "craft": 17293,
+ "▁brain": 17294,
+ "▁Como": 17295,
+ "▁Everything": 17296,
+ "anes": 17297,
+ "IGN": 17298,
+ "▁nederbörd": 17299,
+ "▁Forest": 17300,
+ "zahl": 17301,
+ "▁Among": 17302,
+ "Qt": 17303,
+ "▁togg": 17304,
+ "▁variant": 17305,
+ "▁hill": 17306,
+ "писи": 17307,
+ "colon": 17308,
+ "▁dicembre": 17309,
+ "гор": 17310,
+ "▁Wind": 17311,
+ "ünstler": 17312,
+ "▁=\\": 17313,
+ "saved": 17314,
+ "▁nej": 17315,
+ "unte": 17316,
+ "utto": 17317,
+ "▁recens": 17318,
+ "▁sick": 17319,
+ "▁desen": 17320,
+ "UST": 17321,
+ "▁worst": 17322,
+ "▁Angel": 17323,
+ "odox": 17324,
+ "▁Province": 17325,
+ "▁Maz": 17326,
+ "▁agreement": 17327,
+ "▁Bass": 17328,
+ "▁segunda": 17329,
+ "onces": 17330,
+ "▁Linki": 17331,
+ "▁CL": 17332,
+ "▁já": 17333,
+ "itement": 17334,
+ "▁área": 17335,
+ "▁scalar": 17336,
+ "▁Рес": 17337,
+ "awt": 17338,
+ "sieme": 17339,
+ "▁juni": 17340,
+ "▁худож": 17341,
+ "ikus": 17342,
+ "▁lid": 17343,
+ "ppel": 17344,
+ "avi": 17345,
+ "▁balance": 17346,
+ "ipping": 17347,
+ "cussion": 17348,
+ "ческих": 17349,
+ "(\".": 17350,
+ "Also": 17351,
+ "▁whis": 17352,
+ "HOME": 17353,
+ "▁brown": 17354,
+ "▁día": 17355,
+ "▁può": 17356,
+ "plotlib": 17357,
+ "▁Jahrhunderts": 17358,
+ "DK": 17359,
+ "▁anchor": 17360,
+ "...]": 17361,
+ "▁Austria": 17362,
+ "▁marca": 17363,
+ "▁gez": 17364,
+ "iously": 17365,
+ "▁lazy": 17366,
+ "xa": 17367,
+ "▁Channel": 17368,
+ "▁neuen": 17369,
+ "das": 17370,
+ "▁searched": 17371,
+ "▁staat": 17372,
+ "▁Так": 17373,
+ "▁Josef": 17374,
+ "▁Sher": 17375,
+ "pois": 17376,
+ "▁enem": 17377,
+ "▁accessing": 17378,
+ "▁неко": 17379,
+ "▁furono": 17380,
+ "▁pseudo": 17381,
+ "?>": 17382,
+ "▁estadoun": 17383,
+ "▁Види": 17384,
+ "▁motiv": 17385,
+ "▁recall": 17386,
+ "isson": 17387,
+ "ób": 17388,
+ ")--": 17389,
+ "▁Erz": 17390,
+ "▁савез": 17391,
+ "Direct": 17392,
+ "соб": 17393,
+ "▁sho": 17394,
+ "völker": 17395,
+ "Ap": 17396,
+ "gens": 17397,
+ "ништво": 17398,
+ "▁Amsterdam": 17399,
+ "usk": 17400,
+ "пло": 17401,
+ "▁simulation": 17402,
+ "▁BC": 17403,
+ "▁Woj": 17404,
+ "autom": 17405,
+ "Alex": 17406,
+ "▁economic": 17407,
+ "гом": 17408,
+ "ikai": 17409,
+ "▁altre": 17410,
+ "▁'-": 17411,
+ "▁Weg": 17412,
+ "NotFound": 17413,
+ "йской": 17414,
+ "▁converting": 17415,
+ "phabet": 17416,
+ "atrice": 17417,
+ "bourne": 17418,
+ "alom": 17419,
+ "▁comparing": 17420,
+ "▁Zo": 17421,
+ "▁fla": 17422,
+ "вая": 17423,
+ "▁entra": 17424,
+ "▁charset": 17425,
+ "developers": 17426,
+ "ística": 17427,
+ "}>": 17428,
+ "▁Jazz": 17429,
+ "▁Howard": 17430,
+ "шта": 17431,
+ "▁clone": 17432,
+ "door": 17433,
+ "▁Pin": 17434,
+ "***": 17435,
+ "▁silent": 17436,
+ "ecycle": 17437,
+ "isce": 17438,
+ "▁mud": 17439,
+ "▁Display": 17440,
+ "▁lip": 17441,
+ "▁использова": 17442,
+ "▁characteristic": 17443,
+ "▁sb": 17444,
+ "firebase": 17445,
+ "▁Bew": 17446,
+ "Calendar": 17447,
+ "▁uso": 17448,
+ "èse": 17449,
+ "▁Rat": 17450,
+ "▁esper": 17451,
+ "▁throwing": 17452,
+ "▁rodz": 17453,
+ "▁yards": 17454,
+ "▁grass": 17455,
+ "▁marker": 17456,
+ "▁Kos": 17457,
+ "Theta": 17458,
+ "▁organis": 17459,
+ "kernel": 17460,
+ "▁personas": 17461,
+ "keep": 17462,
+ "▁exclaimed": 17463,
+ "oslav": 17464,
+ "▁Entertain": 17465,
+ "нер": 17466,
+ "▁inwon": 17467,
+ "▁Rand": 17468,
+ "reduce": 17469,
+ "fac": 17470,
+ "expression": 17471,
+ "yj": 17472,
+ "▁differenti": 17473,
+ "aglia": 17474,
+ "▁templates": 17475,
+ "▁mű": 17476,
+ "▁prv": 17477,
+ "▁mois": 17478,
+ "▁gewann": 17479,
+ "▁була": 17480,
+ "bibli": 17481,
+ "demo": 17482,
+ "▁Anderson": 17483,
+ "▁ред": 17484,
+ "▁porque": 17485,
+ "▁Pologne": 17486,
+ "▁trip": 17487,
+ "▁exemple": 17488,
+ "▁Internacional": 17489,
+ "▁као": 17490,
+ "Insert": 17491,
+ "general": 17492,
+ "SESSION": 17493,
+ "berga": 17494,
+ "hält": 17495,
+ "unas": 17496,
+ "мира": 17497,
+ "▁yields": 17498,
+ "mapsto": 17499,
+ "spot": 17500,
+ "▁+\\": 17501,
+ "лла": 17502,
+ "▁precisely": 17503,
+ "▁член": 17504,
+ "shadow": 17505,
+ "Are": 17506,
+ "unal": 17507,
+ "▁dispar": 17508,
+ "▁título": 17509,
+ "nest": 17510,
+ "▁Low": 17511,
+ "▁prot": 17512,
+ "▁Costa": 17513,
+ "named": 17514,
+ "▁gained": 17515,
+ "lesia": 17516,
+ "▁administration": 17517,
+ "Import": 17518,
+ "branch": 17519,
+ "▁sympath": 17520,
+ "voj": 17521,
+ "▁EC": 17522,
+ "▁municipio": 17523,
+ "▁animated": 17524,
+ "▁directories": 17525,
+ "▁roof": 17526,
+ "ząd": 17527,
+ "imet": 17528,
+ "proto": 17529,
+ "bla": 17530,
+ ":]": 17531,
+ "have": 17532,
+ "atem": 17533,
+ "▁ns": 17534,
+ "▁sector": 17535,
+ "three": 17536,
+ "owane": 17537,
+ "wers": 17538,
+ "ових": 17539,
+ "rence": 17540,
+ "▁extr": 17541,
+ "igten": 17542,
+ "▁occident": 17543,
+ "ță": 17544,
+ "▁eat": 17545,
+ "▁hydro": 17546,
+ "ubernetes": 17547,
+ "[@": 17548,
+ "▁Moon": 17549,
+ "▁Sho": 17550,
+ "▁elsewhere": 17551,
+ "üller": 17552,
+ "Upload": 17553,
+ "ланд": 17554,
+ "▁För": 17555,
+ "wissenschaft": 17556,
+ "KS": 17557,
+ "▁physics": 17558,
+ "tz": 17559,
+ "▁серед": 17560,
+ "▁Arbeit": 17561,
+ "▁мест": 17562,
+ "▁Gebiet": 17563,
+ "▁insect": 17564,
+ "Ah": 17565,
+ "izado": 17566,
+ "▁temple": 17567,
+ "▁annual": 17568,
+ "stad": 17569,
+ "▁habitat": 17570,
+ "▁AB": 17571,
+ "wort": 17572,
+ "▁repos": 17573,
+ "▁Neu": 17574,
+ "▁$(\".": 17575,
+ "Vorlage": 17576,
+ "▁reprezent": 17577,
+ "estanden": 17578,
+ "Intern": 17579,
+ ".`": 17580,
+ "▁failing": 17581,
+ "▁Material": 17582,
+ "▁effectively": 17583,
+ "телем": 17584,
+ "▁гла": 17585,
+ "▁nahm": 17586,
+ "▁differently": 17587,
+ "extension": 17588,
+ "▁Verm": 17589,
+ "enabled": 17590,
+ "configure": 17591,
+ "nio": 17592,
+ "ciones": 17593,
+ "▁Beach": 17594,
+ "сона": 17595,
+ "▁copying": 17596,
+ "▁україн": 17597,
+ "▁призна": 17598,
+ "zh": 17599,
+ "Desktop": 17600,
+ "▁sost": 17601,
+ "▁subsequently": 17602,
+ "▁Lehr": 17603,
+ "▁ó": 17604,
+ "lär": 17605,
+ "odor": 17606,
+ "phon": 17607,
+ "nc": 17608,
+ "iterator": 17609,
+ "▁эти": 17610,
+ "▁europé": 17611,
+ "▁Toronto": 17612,
+ "ódigo": 17613,
+ "▁posto": 17614,
+ "ffe": 17615,
+ "▁crew": 17616,
+ "▁Schwar": 17617,
+ "Sa": 17618,
+ "square": 17619,
+ "▁beside": 17620,
+ "▁Мі": 17621,
+ "▁ath": 17622,
+ "▁advent": 17623,
+ "cji": 17624,
+ "written": 17625,
+ "▁russ": 17626,
+ "rost": 17627,
+ "HI": 17628,
+ "▁dice": 17629,
+ "cca": 17630,
+ "▁dép": 17631,
+ "ply": 17632,
+ "bigg": 17633,
+ "ział": 17634,
+ "ütt": 17635,
+ "▁одно": 17636,
+ "JECT": 17637,
+ "ському": 17638,
+ "nos": 17639,
+ "mock": 17640,
+ "Launch": 17641,
+ "same": 17642,
+ "▁jobs": 17643,
+ "▁widely": 17644,
+ "▁defines": 17645,
+ "▁Pse": 17646,
+ "▁neighbour": 17647,
+ "ющие": 17648,
+ "▁closer": 17649,
+ "▁располо": 17650,
+ "▁clubs": 17651,
+ "fly": 17652,
+ "шим": 17653,
+ "▁suffered": 17654,
+ "▁nar": 17655,
+ "▁lavor": 17656,
+ "Extension": 17657,
+ "itionally": 17658,
+ "▁grace": 17659,
+ "▁Campeonato": 17660,
+ "▁Christmas": 17661,
+ "middle": 17662,
+ "othek": 17663,
+ "elements": 17664,
+ "▁sondern": 17665,
+ "▁tarde": 17666,
+ "▁permanent": 17667,
+ "▁conclude": 17668,
+ "Seg": 17669,
+ "▁акаде": 17670,
+ "}\",": 17671,
+ "▁февраля": 17672,
+ "řed": 17673,
+ "▁IL": 17674,
+ "jud": 17675,
+ "▁USS": 17676,
+ "▁Nature": 17677,
+ "ifference": 17678,
+ "Serializer": 17679,
+ "▁twelve": 17680,
+ "tid": 17681,
+ "мия": 17682,
+ "ческого": 17683,
+ "▁calendar": 17684,
+ "concat": 17685,
+ "▁intersection": 17686,
+ "▁PA": 17687,
+ "azure": 17688,
+ "▁située": 17689,
+ "▁kinds": 17690,
+ "▁ausge": 17691,
+ "▁rural": 17692,
+ "Theme": 17693,
+ "▁tale": 17694,
+ "noindent": 17695,
+ "going": 17696,
+ "rx": 17697,
+ "agi": 17698,
+ "wrapper": 17699,
+ "▁Coast": 17700,
+ "mbH": 17701,
+ "▁перед": 17702,
+ "spre": 17703,
+ "▁}\\": 17704,
+ "▁LI": 17705,
+ "znam": 17706,
+ "itled": 17707,
+ "Sample": 17708,
+ "uliar": 17709,
+ "*\\": 17710,
+ "▁resistance": 17711,
+ "stock": 17712,
+ "ked": 17713,
+ "▁HE": 17714,
+ "▁possession": 17715,
+ "▁Ring": 17716,
+ "▁magyar": 17717,
+ "outs": 17718,
+ "▁Secretary": 17719,
+ "nde": 17720,
+ "▁Wald": 17721,
+ "-(": 17722,
+ "▁ISO": 17723,
+ "▁afternoon": 17724,
+ "ionen": 17725,
+ "▁stops": 17726,
+ "▁constants": 17727,
+ "guard": 17728,
+ "bow": 17729,
+ "▁ers": 17730,
+ "▁Firebase": 17731,
+ "▁Clear": 17732,
+ "▁Holy": 17733,
+ "Win": 17734,
+ "▁titles": 17735,
+ "▁трав": 17736,
+ "▁contrib": 17737,
+ "häng": 17738,
+ "▁photograph": 17739,
+ "▁Distribution": 17740,
+ "ifts": 17741,
+ "▁aunque": 17742,
+ "comb": 17743,
+ "ADD": 17744,
+ "▁publication": 17745,
+ "▁служ": 17746,
+ "▁кня": 17747,
+ "▁ayant": 17748,
+ "▁restore": 17749,
+ "▁belief": 17750,
+ "▁vég": 17751,
+ "▁extensions": 17752,
+ "▁decom": 17753,
+ "вший": 17754,
+ "WT": 17755,
+ "▁parti": 17756,
+ "▁gioc": 17757,
+ "▁мира": 17758,
+ "▁issu": 17759,
+ "pipe": 17760,
+ "▁props": 17761,
+ "▁willing": 17762,
+ "▁nest": 17763,
+ "aso": 17764,
+ "pot": 17765,
+ "▁handles": 17766,
+ "▁фо": 17767,
+ "▁moder": 17768,
+ "▁ebenfalls": 17769,
+ "▁fighting": 17770,
+ "umbn": 17771,
+ "▁transparent": 17772,
+ "▁Krist": 17773,
+ "▁homes": 17774,
+ "▁voyage": 17775,
+ "Failed": 17776,
+ "▁Bird": 17777,
+ "▁Heart": 17778,
+ "Counter": 17779,
+ "▁Scottish": 17780,
+ "ática": 17781,
+ "▁arbeit": 17782,
+ "^{-\\": 17783,
+ "▁Sor": 17784,
+ "▁engaged": 17785,
+ "▁aside": 17786,
+ "▁Fou": 17787,
+ "▁wiel": 17788,
+ "▁reconst": 17789,
+ "ousin": 17790,
+ "▁hosted": 17791,
+ "▁classe": 17792,
+ "▁contest": 17793,
+ "...\"": 17794,
+ "мом": 17795,
+ "▁bean": 17796,
+ "gem": 17797,
+ "▁consultato": 17798,
+ "▁bio": 17799,
+ "▁subjects": 17800,
+ "boBox": 17801,
+ "▁Schrift": 17802,
+ "▁dinner": 17803,
+ "ăr": 17804,
+ "▁równ": 17805,
+ "▁%%": 17806,
+ "bage": 17807,
+ "▁veröff": 17808,
+ "▁detected": 17809,
+ "ienn": 17810,
+ "rose": 17811,
+ "▁Ton": 17812,
+ "Complete": 17813,
+ "▁proto": 17814,
+ "ichts": 17815,
+ "STAT": 17816,
+ "Checked": 17817,
+ "▁inten": 17818,
+ "▁smile": 17819,
+ "▁strip": 17820,
+ "neut": 17821,
+ "');\r": 17822,
+ "four": 17823,
+ "▁todas": 17824,
+ "Controls": 17825,
+ "▁thorough": 17826,
+ "rup": 17827,
+ "▁држави": 17828,
+ "ită": 17829,
+ "Protocol": 17830,
+ "Ка": 17831,
+ "▁expanded": 17832,
+ "extra": 17833,
+ "oport": 17834,
+ "▁Станов": 17835,
+ "leases": 17836,
+ "▁notion": 17837,
+ "▁guest": 17838,
+ "▁Islands": 17839,
+ "icked": 17840,
+ "▁Dave": 17841,
+ "▁reflection": 17842,
+ "liv": 17843,
+ "ální": 17844,
+ "▁revealed": 17845,
+ "▁sog": 17846,
+ "▁Tax": 17847,
+ "▁periodo": 17848,
+ "▁Weltkrie": 17849,
+ "catalina": 17850,
+ "qué": 17851,
+ "▁Father": 17852,
+ "▁Bir": 17853,
+ "expect": 17854,
+ "▁regression": 17855,
+ "iné": 17856,
+ "▁dabei": 17857,
+ "perm": 17858,
+ "мене": 17859,
+ "▁Abd": 17860,
+ "▁CF": 17861,
+ "arks": 17862,
+ "resolve": 17863,
+ "wedge": 17864,
+ "▁initialization": 17865,
+ "▁Véase": 17866,
+ "▁приня": 17867,
+ "stmt": 17868,
+ "▁income": 17869,
+ "MY": 17870,
+ "▁odkazy": 17871,
+ "▁Siehe": 17872,
+ "▁bodies": 17873,
+ "▁soc": 17874,
+ "Random": 17875,
+ "▁senza": 17876,
+ "ablo": 17877,
+ "▁regarded": 17878,
+ "onCreate": 17879,
+ "▁Magazine": 17880,
+ "▁Raf": 17881,
+ "▁Buenos": 17882,
+ "ил": 17883,
+ ")));": 17884,
+ "capt": 17885,
+ "redirect": 17886,
+ "▁petit": 17887,
+ "▁farm": 17888,
+ "▁rôle": 17889,
+ "▁статьи": 17890,
+ " ": 17891,
+ "subfigure": 17892,
+ "èces": 17893,
+ "ziel": 17894,
+ "▁окон": 17895,
+ "EE": 17896,
+ "mee": 17897,
+ "▁perten": 17898,
+ "▁représent": 17899,
+ "▁LA": 17900,
+ "?'": 17901,
+ "▁тру": 17902,
+ "▁rational": 17903,
+ "osof": 17904,
+ "▁kne": 17905,
+ "▁artists": 17906,
+ "Flow": 17907,
+ "▁Аль": 17908,
+ "izard": 17909,
+ "▁numero": 17910,
+ "actic": 17911,
+ "▁destruct": 17912,
+ "▁Пра": 17913,
+ "onsieur": 17914,
+ "qt": 17915,
+ "abestanden": 17916,
+ "ność": 17917,
+ "Connect": 17918,
+ "▁oracle": 17919,
+ "▁Stockholm": 17920,
+ "sizeof": 17921,
+ "▁gemäß": 17922,
+ "ACT": 17923,
+ "▁expert": 17924,
+ "utions": 17925,
+ "▁hacia": 17926,
+ "▁logger": 17927,
+ "▁fool": 17928,
+ "rypto": 17929,
+ "ær": 17930,
+ "▁cidade": 17931,
+ "▁составе": 17932,
+ "oker": 17933,
+ "▁Transfer": 17934,
+ "▁denied": 17935,
+ "Track": 17936,
+ "▁radi": 17937,
+ "zec": 17938,
+ "▁Historic": 17939,
+ "▁Einwohner": 17940,
+ "кою": 17941,
+ "▁хра": 17942,
+ "▁Category": 17943,
+ "▁Disney": 17944,
+ "▁swap": 17945,
+ "Begin": 17946,
+ "▁mientras": 17947,
+ "▁dance": 17948,
+ "▁tête": 17949,
+ "▁droit": 17950,
+ "erta": 17951,
+ "▁birds": 17952,
+ "▁convin": 17953,
+ "parator": 17954,
+ "дра": 17955,
+ "▁ES": 17956,
+ "▁Ressources": 17957,
+ "EGIN": 17958,
+ "ücke": 17959,
+ "▁Cruz": 17960,
+ "abling": 17961,
+ "▁\"@": 17962,
+ "▁metres": 17963,
+ "▁Beg": 17964,
+ "▁Gründ": 17965,
+ "▁Boh": 17966,
+ "▁mile": 17967,
+ "▁Technology": 17968,
+ "\"+": 17969,
+ "acco": 17970,
+ "▁ss": 17971,
+ "▁Fed": 17972,
+ "▁Hend": 17973,
+ "usch": 17974,
+ "itä": 17975,
+ "folk": 17976,
+ "▁absor": 17977,
+ "antal": 17978,
+ "odge": 17979,
+ "▁WHEN": 17980,
+ "▁Externí": 17981,
+ "▁Regiment": 17982,
+ "▁evaluation": 17983,
+ "▁Tai": 17984,
+ "▁vocals": 17985,
+ "▁experimental": 17986,
+ "embed": 17987,
+ "▁Minn": 17988,
+ "▁вме": 17989,
+ "prec": 17990,
+ "every": 17991,
+ "▁hoof": 17992,
+ "▁Fernando": 17993,
+ "▁Bibliographie": 17994,
+ "▁nag": 17995,
+ "amerikanischer": 17996,
+ "▁marks": 17997,
+ "▁UTC": 17998,
+ "▁uncertain": 17999,
+ "дия": 18000,
+ "olia": 18001,
+ "▁cup": 18002,
+ "▁fille": 18003,
+ "▁dok": 18004,
+ "useppe": 18005,
+ "esterd": 18006,
+ "▁Brand": 18007,
+ "▁Third": 18008,
+ "PP": 18009,
+ "nodes": 18010,
+ "▁Pad": 18011,
+ "▁loved": 18012,
+ "swing": 18013,
+ "▁surprised": 18014,
+ "ardi": 18015,
+ "▁GR": 18016,
+ "]\"": 18017,
+ "▁equally": 18018,
+ "ihe": 18019,
+ "care": 18020,
+ "писок": 18021,
+ "lijk": 18022,
+ "rinn": 18023,
+ "▁\\[\\": 18024,
+ "▁sons": 18025,
+ "▁tät": 18026,
+ "icamente": 18027,
+ "▁listing": 18028,
+ "iellement": 18029,
+ "▁nyelven": 18030,
+ "▁ds": 18031,
+ "▁agricult": 18032,
+ "▁Hermann": 18033,
+ "▁besides": 18034,
+ "progress": 18035,
+ "▁peculiar": 18036,
+ "focus": 18037,
+ "cn": 18038,
+ "-$": 18039,
+ "ственный": 18040,
+ "ourg": 18041,
+ "▁wyn": 18042,
+ "▁conducted": 18043,
+ "▁Становништво": 18044,
+ "connected": 18045,
+ "▁bott": 18046,
+ "▁смер": 18047,
+ "▁Poz": 18048,
+ "unct": 18049,
+ "conda": 18050,
+ "▁савезној": 18051,
+ "▁havet": 18052,
+ "ligt": 18053,
+ "orted": 18054,
+ "▁entering": 18055,
+ "multip": 18056,
+ "▁Temple": 18057,
+ "▁Plant": 18058,
+ "typeof": 18059,
+ "▁Vlad": 18060,
+ "▁qued": 18061,
+ "▁reste": 18062,
+ "▁май": 18063,
+ "▁Very": 18064,
+ "ambiguation": 18065,
+ "▁challeng": 18066,
+ "▁respective": 18067,
+ "▁тор": 18068,
+ "Ctrl": 18069,
+ "▁absence": 18070,
+ "aru": 18071,
+ "вое": 18072,
+ "▁först": 18073,
+ "▁sq": 18074,
+ "▁Emperor": 18075,
+ "▁Ign": 18076,
+ "▁това": 18077,
+ ":`": 18078,
+ "adoop": 18079,
+ "▁Madame": 18080,
+ "▁gruppo": 18081,
+ "stud": 18082,
+ "▁externas": 18083,
+ "▁Александр": 18084,
+ "▁dign": 18085,
+ "▁живе": 18086,
+ "Amount": 18087,
+ "▁correlate": 18088,
+ "▁Fant": 18089,
+ "▁rails": 18090,
+ "fp": 18091,
+ "министратив": 18092,
+ "▁bought": 18093,
+ "▁filters": 18094,
+ "▁ancora": 18095,
+ "▁partner": 18096,
+ "▁quand": 18097,
+ "symbol": 18098,
+ "ulating": 18099,
+ "▁zd": 18100,
+ "awn": 18101,
+ "▁Grant": 18102,
+ "because": 18103,
+ "rable": 18104,
+ "\\}": 18105,
+ "ísticas": 18106,
+ "▁уче": 18107,
+ "▁période": 18108,
+ "▁ske": 18109,
+ "▁Anyway": 18110,
+ "▁indexes": 18111,
+ "▁directions": 18112,
+ "▁RAM": 18113,
+ "chrome": 18114,
+ "▁apost": 18115,
+ "▁warnings": 18116,
+ "▁Airport": 18117,
+ "VI": 18118,
+ "abile": 18119,
+ "▁lord": 18120,
+ "provider": 18121,
+ "▁Ji": 18122,
+ "ostream": 18123,
+ "▁gemeente": 18124,
+ "tableView": 18125,
+ "Extra": 18126,
+ "cursor": 18127,
+ "eground": 18128,
+ "▁Moz": 18129,
+ "▁rib": 18130,
+ "▁morph": 18131,
+ "loads": 18132,
+ "elsk": 18133,
+ "▁MAX": 18134,
+ "▁Santiago": 18135,
+ "▁Him": 18136,
+ "codes": 18137,
+ "▁lanz": 18138,
+ "▁counts": 18139,
+ "rinningsområ": 18140,
+ "щё": 18141,
+ "▁spé": 18142,
+ "▁pierws": 18143,
+ "▁Sver": 18144,
+ "▁acknow": 18145,
+ "Boolean": 18146,
+ "▁фамили": 18147,
+ "▁Senate": 18148,
+ "шов": 18149,
+ "agers": 18150,
+ "▁Nueva": 18151,
+ "bil": 18152,
+ "kiem": 18153,
+ "▁Mey": 18154,
+ "wij": 18155,
+ "▁GmbH": 18156,
+ "validation": 18157,
+ "▁ensuite": 18158,
+ "inking": 18159,
+ "▁campion": 18160,
+ "▁financial": 18161,
+ "izon": 18162,
+ "Headers": 18163,
+ "▁deprecated": 18164,
+ "▁fonction": 18165,
+ "REG": 18166,
+ "▁volumes": 18167,
+ "▁Chi": 18168,
+ "▁encountered": 18169,
+ "lak": 18170,
+ "рая": 18171,
+ "▁continues": 18172,
+ "▁~[": 18173,
+ "uerte": 18174,
+ "▁\\;": 18175,
+ "▁Dok": 18176,
+ "▁weights": 18177,
+ "▁rh": 18178,
+ "▁Napole": 18179,
+ "▁naturally": 18180,
+ "sku": 18181,
+ "pas": 18182,
+ "▁gegründ": 18183,
+ "etr": 18184,
+ "▁Ku": 18185,
+ "icted": 18186,
+ "▁fabric": 18187,
+ "▁ASC": 18188,
+ "▁Entertainment": 18189,
+ "▁energ": 18190,
+ "клад": 18191,
+ "omon": 18192,
+ "theme": 18193,
+ "▁харак": 18194,
+ "▁draft": 18195,
+ "▁channels": 18196,
+ "▁desert": 18197,
+ "▁través": 18198,
+ "▁Lock": 18199,
+ "▁siendo": 18200,
+ "фек": 18201,
+ "même": 18202,
+ "▁packet": 18203,
+ "▁Mountain": 18204,
+ "▁Fahr": 18205,
+ "braio": 18206,
+ "пере": 18207,
+ "▁genannt": 18208,
+ "▁deployment": 18209,
+ "Pal": 18210,
+ "ног": 18211,
+ "стру": 18212,
+ "Prim": 18213,
+ "für": 18214,
+ "▁dangerous": 18215,
+ "▁szám": 18216,
+ "reck": 18217,
+ "▁popup": 18218,
+ "icky": 18219,
+ "inar": 18220,
+ "cowo": 18221,
+ "нцикло": 18222,
+ "ítás": 18223,
+ "▁plugins": 18224,
+ "▁driven": 18225,
+ "лев": 18226,
+ "▁\"(": 18227,
+ "tta": 18228,
+ "▁Ú": 18229,
+ "▁eb": 18230,
+ "▁'';": 18231,
+ "▁knock": 18232,
+ "▁основа": 18233,
+ "▁maison": 18234,
+ "гля": 18235,
+ "▁Honor": 18236,
+ "tail": 18237,
+ "ritz": 18238,
+ "▁guys": 18239,
+ "▁combinations": 18240,
+ "ondere": 18241,
+ "▁Ald": 18242,
+ "▁fiddle": 18243,
+ "дав": 18244,
+ "urd": 18245,
+ "▁projection": 18246,
+ "▁También": 18247,
+ "verb": 18248,
+ "▁terre": 18249,
+ "rugu": 18250,
+ "▁september": 18251,
+ "▁=": 18572,
+ "▁Beat": 18573,
+ "▁Sax": 18574,
+ "vertical": 18575,
+ "кто": 18576,
+ "▁plants": 18577,
+ "▁Références": 18578,
+ "▁ogni": 18579,
+ "▁curs": 18580,
+ "▁SK": 18581,
+ "они": 18582,
+ "▁destac": 18583,
+ "\");\r": 18584,
+ "▁Sure": 18585,
+ "▁partido": 18586,
+ "▁Folge": 18587,
+ "▁Moore": 18588,
+ "▁wz": 18589,
+ "скус": 18590,
+ "ltre": 18591,
+ "ondo": 18592,
+ "▁pose": 18593,
+ "imos": 18594,
+ "бой": 18595,
+ "ципа": 18596,
+ "jus": 18597,
+ ".....": 18598,
+ "▁época": 18599,
+ "▁quanto": 18600,
+ "▁Support": 18601,
+ "geschichte": 18602,
+ "SERVER": 18603,
+ "▁Georges": 18604,
+ "enum": 18605,
+ "▁herm": 18606,
+ "▁nebo": 18607,
+ "▁Chr": 18608,
+ "character": 18609,
+ "▁***": 18610,
+ "▁Forsch": 18611,
+ "iami": 18612,
+ "▁¿": 18613,
+ "cych": 18614,
+ "▁fifth": 18615,
+ "sent": 18616,
+ "▁anderem": 18617,
+ "▁proportion": 18618,
+ "▁prest": 18619,
+ "▁Girl": 18620,
+ "▁drama": 18621,
+ "wand": 18622,
+ "▁Mail": 18623,
+ "▁Lux": 18624,
+ "▁který": 18625,
+ "▁Gesellschaft": 18626,
+ "▁Hinweis": 18627,
+ "nisse": 18628,
+ "▁mondo": 18629,
+ "Eq": 18630,
+ "▁perí": 18631,
+ "▁eastern": 18632,
+ "▁UEFA": 18633,
+ "uale": 18634,
+ "▁convex": 18635,
+ "▁поль": 18636,
+ "▁Hey": 18637,
+ "zenie": 18638,
+ "initely": 18639,
+ "▁Zusammen": 18640,
+ "SSL": 18641,
+ "ocal": 18642,
+ "▁canal": 18643,
+ "voy": 18644,
+ "▁Кри": 18645,
+ "▁között": 18646,
+ "▁cars": 18647,
+ "▁versión": 18648,
+ "Environment": 18649,
+ "Her": 18650,
+ "▁señ": 18651,
+ "▁spatial": 18652,
+ "ymi": 18653,
+ "Fire": 18654,
+ "▁veget": 18655,
+ "▁Wie": 18656,
+ "▁znaj": 18657,
+ "▁damage": 18658,
+ "▁endl": 18659,
+ "gif": 18660,
+ "▁quali": 18661,
+ "▁которых": 18662,
+ "ellan": 18663,
+ "▁mens": 18664,
+ "▁plug": 18665,
+ "▁abund": 18666,
+ "FIG": 18667,
+ "▁sf": 18668,
+ "▁confl": 18669,
+ "▁населения": 18670,
+ "▁principles": 18671,
+ "▁Gabriel": 18672,
+ "ibe": 18673,
+ "▁{%": 18674,
+ "▁població": 18675,
+ "ніципа": 18676,
+ "▁extreme": 18677,
+ "▁asse": 18678,
+ "▁vu": 18679,
+ "Mock": 18680,
+ "▁spielte": 18681,
+ "▁Aer": 18682,
+ "▁datos": 18683,
+ "endes": 18684,
+ "▁Gel": 18685,
+ "▁Gor": 18686,
+ "Christ": 18687,
+ "chos": 18688,
+ "Processor": 18689,
+ "▁instruct": 18690,
+ "▁picked": 18691,
+ "nahme": 18692,
+ "fahr": 18693,
+ "▁indicated": 18694,
+ "▁%.": 18695,
+ "▁ts": 18696,
+ "▁notable": 18697,
+ "▁qualified": 18698,
+ "▁Ал": 18699,
+ "Black": 18700,
+ "▁council": 18701,
+ "▁overhead": 18702,
+ "aci": 18703,
+ "année": 18704,
+ "▁initWith": 18705,
+ "bió": 18706,
+ "▁introduction": 18707,
+ "▁companion": 18708,
+ "▁expon": 18709,
+ "▁kör": 18710,
+ "oby": 18711,
+ "burn": 18712,
+ "gnu": 18713,
+ "virtual": 18714,
+ "▁intellect": 18715,
+ "▁держа": 18716,
+ "'+": 18717,
+ "бле": 18718,
+ "▁strictly": 18719,
+ "▁recognize": 18720,
+ "hour": 18721,
+ "▁Wrest": 18722,
+ "ennen": 18723,
+ "$).": 18724,
+ "fff": 18725,
+ "▁Centro": 18726,
+ "▁Pitt": 18727,
+ "▁dział": 18728,
+ "▁cela": 18729,
+ "▁francese": 18730,
+ "рами": 18731,
+ "special": 18732,
+ "▁Dup": 18733,
+ "toire": 18734,
+ "каль": 18735,
+ "COUNT": 18736,
+ "▁Brook": 18737,
+ "▁руково": 18738,
+ "publique": 18739,
+ "▁seconda": 18740,
+ "▁compt": 18741,
+ "▁bland": 18742,
+ "Before": 18743,
+ "▁Pack": 18744,
+ "alty": 18745,
+ "öder": 18746,
+ "▁intervals": 18747,
+ "▁Datenbank": 18748,
+ "Movie": 18749,
+ "▁transm": 18750,
+ "▁tap": 18751,
+ "▁поч": 18752,
+ "fon": 18753,
+ "iai": 18754,
+ "▁fib": 18755,
+ "▁wyd": 18756,
+ "▁hung": 18757,
+ "▁alive": 18758,
+ "Clear": 18759,
+ "▁pushed": 18760,
+ "▁tuple": 18761,
+ "achen": 18762,
+ "гово": 18763,
+ "▁revers": 18764,
+ "▁augment": 18765,
+ "▁challenge": 18766,
+ "lost": 18767,
+ "▁deuxième": 18768,
+ "structor": 18769,
+ "▁mehrerer": 18770,
+ "atural": 18771,
+ "Split": 18772,
+ "стем": 18773,
+ "шла": 18774,
+ ")\\\\": 18775,
+ "▁Dog": 18776,
+ "▁developers": 18777,
+ "▁nod": 18778,
+ "▁сторо": 18779,
+ "▁NaN": 18780,
+ "▁priest": 18781,
+ "▁exha": 18782,
+ "UND": 18783,
+ "pair": 18784,
+ "alone": 18785,
+ "▁moon": 18786,
+ "▁#!/": 18787,
+ "▁guns": 18788,
+ "rola": 18789,
+ "чита": 18790,
+ "▁Encyclopedia": 18791,
+ "atis": 18792,
+ "▁'\"": 18793,
+ "zych": 18794,
+ "▁superfic": 18795,
+ "▁эк": 18796,
+ "едера": 18797,
+ "feed": 18798,
+ "LAY": 18799,
+ "Fi": 18800,
+ "unks": 18801,
+ "isecond": 18802,
+ "▁'@": 18803,
+ "▁Adding": 18804,
+ "рое": 18805,
+ "▁tang": 18806,
+ "цо": 18807,
+ "hung": 18808,
+ "bis": 18809,
+ "ského": 18810,
+ "▁advert": 18811,
+ "▁занима": 18812,
+ "uzz": 18813,
+ "ágina": 18814,
+ "▁Tel": 18815,
+ "sig": 18816,
+ "▁Ez": 18817,
+ "▁guarantee": 18818,
+ "▁teaching": 18819,
+ "oty": 18820,
+ "termin": 18821,
+ "▁distributions": 18822,
+ "FLA": 18823,
+ "▁Giuseppe": 18824,
+ "querySelector": 18825,
+ "▁/\\": 18826,
+ "▁Squad": 18827,
+ "gz": 18828,
+ "delay": 18829,
+ "▁surrounding": 18830,
+ "▁manus": 18831,
+ "▁Hou": 18832,
+ "²,": 18833,
+ "▁cultiv": 18834,
+ "▁troubles": 18835,
+ "▁raison": 18836,
+ "expand": 18837,
+ "▁cov": 18838,
+ "nungen": 18839,
+ ")){": 18840,
+ "▁geen": 18841,
+ "▁außer": 18842,
+ "▁Лі": 18843,
+ "ři": 18844,
+ "▁situations": 18845,
+ "▁telep": 18846,
+ "▁Jed": 18847,
+ "▁travail": 18848,
+ "lias": 18849,
+ "bullet": 18850,
+ "▁selecting": 18851,
+ "avier": 18852,
+ "▁essential": 18853,
+ "(/": 18854,
+ "yyyy": 18855,
+ "ště": 18856,
+ "ulty": 18857,
+ "▁kra": 18858,
+ "▁tabs": 18859,
+ "▁experienced": 18860,
+ "azi": 18861,
+ "▁Directory": 18862,
+ "▁cron": 18863,
+ "▁spend": 18864,
+ "▁RA": 18865,
+ "▁selenium": 18866,
+ "▁Thé": 18867,
+ "Elements": 18868,
+ "cii": 18869,
+ "▁plat": 18870,
+ "▁archive": 18871,
+ "▁assistance": 18872,
+ "▁neck": 18873,
+ "▁Avenue": 18874,
+ "▁wheel": 18875,
+ "▁hade": 18876,
+ "Common": 18877,
+ "▁Dialog": 18878,
+ "▁forg": 18879,
+ "▁surely": 18880,
+ "▁hockey": 18881,
+ "któ": 18882,
+ "▁tk": 18883,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 18884,
+ "▁Bruce": 18885,
+ "▁enorm": 18886,
+ ",’": 18887,
+ "▁Christopher": 18888,
+ "jev": 18889,
+ "▁quad": 18890,
+ "▁AJAX": 18891,
+ "▁relief": 18892,
+ "▁modes": 18893,
+ "sklär": 18894,
+ "▁Vid": 18895,
+ "▁Serial": 18896,
+ "▁tokens": 18897,
+ "▁Poland": 18898,
+ "\\]": 18899,
+ "▁vide": 18900,
+ "rooms": 18901,
+ "omas": 18902,
+ "▁Bureau": 18903,
+ "cx": 18904,
+ "ностью": 18905,
+ "▁signs": 18906,
+ "шение": 18907,
+ "lossen": 18908,
+ "▁Queens": 18909,
+ "▁membre": 18910,
+ "▁mez": 18911,
+ "▁Bool": 18912,
+ "▁Naj": 18913,
+ "▁Memory": 18914,
+ "▁Khan": 18915,
+ "▁là": 18916,
+ "▁Hud": 18917,
+ "▁dismiss": 18918,
+ "ighth": 18919,
+ "▁fs": 18920,
+ "prevent": 18921,
+ "▁меда": 18922,
+ "▁Police": 18923,
+ "▁ско": 18924,
+ "finite": 18925,
+ "▁ami": 18926,
+ "▁Much": 18927,
+ "owania": 18928,
+ "ORY": 18929,
+ "iors": 18930,
+ "▁Premio": 18931,
+ "▁textbox": 18932,
+ "dm": 18933,
+ "▁afin": 18934,
+ "▁Donald": 18935,
+ "▁Priv": 18936,
+ "▁decid": 18937,
+ "▁Maurice": 18938,
+ "agan": 18939,
+ "▁Britannica": 18940,
+ "▁oft": 18941,
+ "▁consecutive": 18942,
+ "\"?>": 18943,
+ "овий": 18944,
+ "student": 18945,
+ "▁peque": 18946,
+ "▁dieses": 18947,
+ "▁retour": 18948,
+ "étr": 18949,
+ "▁сез": 18950,
+ "▁kre": 18951,
+ "▁votes": 18952,
+ "ruption": 18953,
+ "izada": 18954,
+ "▁Wiel": 18955,
+ "▁Gray": 18956,
+ "▁Leop": 18957,
+ "teilung": 18958,
+ "(['": 18959,
+ "▁whites": 18960,
+ "frica": 18961,
+ "animation": 18962,
+ "curl": 18963,
+ "lings": 18964,
+ "=\"$": 18965,
+ "loyd": 18966,
+ "textsc": 18967,
+ "ору": 18968,
+ "▁села": 18969,
+ "esian": 18970,
+ "▁Mission": 18971,
+ "▁неза": 18972,
+ "▁ultimately": 18973,
+ "бов": 18974,
+ "olen": 18975,
+ "скому": 18976,
+ "nete": 18977,
+ "▁Dit": 18978,
+ "▁costru": 18979,
+ "dependent": 18980,
+ "▁Resource": 18981,
+ "▁hosts": 18982,
+ "▁rear": 18983,
+ "Duration": 18984,
+ "ників": 18985,
+ "Ма": 18986,
+ "▁planning": 18987,
+ "▁prediction": 18988,
+ "▁Lyn": 18989,
+ "▁kir": 18990,
+ "▁Legisl": 18991,
+ "мат": 18992,
+ "▁Soccer": 18993,
+ "▁survey": 18994,
+ "▁estadounidense": 18995,
+ "orgen": 18996,
+ "jourd": 18997,
+ "▁aprile": 18998,
+ "▁ids": 18999,
+ "ське": 19000,
+ "▁employee": 19001,
+ "▁Schauspieler": 19002,
+ "ръ": 19003,
+ "▁multimedia": 19004,
+ "▁свою": 19005,
+ "▁wine": 19006,
+ "▁EU": 19007,
+ "ică": 19008,
+ "▁Rhein": 19009,
+ "▁Palmar": 19010,
+ "oteca": 19011,
+ "▁prepare": 19012,
+ "▁Tot": 19013,
+ "▁Null": 19014,
+ "▁kin": 19015,
+ "inals": 19016,
+ "▁Newton": 19017,
+ "▁tbl": 19018,
+ "▁Sold": 19019,
+ "▁verf": 19020,
+ "aturing": 19021,
+ "▁laptop": 19022,
+ "▁Совет": 19023,
+ "secret": 19024,
+ "▁Olympic": 19025,
+ "▁footballer": 19026,
+ "▁Rudolf": 19027,
+ "▁conhe": 19028,
+ "zysk": 19029,
+ "▁evaluated": 19030,
+ "»)": 19031,
+ "shop": 19032,
+ "repository": 19033,
+ "▁zach": 19034,
+ "▁losing": 19035,
+ "etter": 19036,
+ "▁Wirtschaft": 19037,
+ "так": 19038,
+ "▁unnecessary": 19039,
+ "▁Phot": 19040,
+ "anska": 19041,
+ "▁Native": 19042,
+ "CCE": 19043,
+ "▁fifty": 19044,
+ "▁erw": 19045,
+ "rh": 19046,
+ "issent": 19047,
+ "}{(": 19048,
+ "▁lanç": 19049,
+ "▁Xcode": 19050,
+ "город": 19051,
+ "cir": 19052,
+ "▁película": 19053,
+ "▁Oscar": 19054,
+ "▁shore": 19055,
+ "▁supplied": 19056,
+ "examples": 19057,
+ "Mess": 19058,
+ "VICE": 19059,
+ "▁exclude": 19060,
+ "▁hen": 19061,
+ "▁губер": 19062,
+ "▁Fragment": 19063,
+ "▁Bitte": 19064,
+ "▁Besides": 19065,
+ "▁hes": 19066,
+ "▁ihrem": 19067,
+ "▁Serge": 19068,
+ "▁artific": 19069,
+ "=\"${": 19070,
+ "лово": 19071,
+ "uteur": 19072,
+ "taire": 19073,
+ "пас": 19074,
+ "▁easiest": 19075,
+ "▁famiglia": 19076,
+ "Normal": 19077,
+ "▁dalle": 19078,
+ "▁nations": 19079,
+ "rp": 19080,
+ "thead": 19081,
+ "▁області": 19082,
+ "▁Democratic": 19083,
+ "▁челове": 19084,
+ "мож": 19085,
+ "▁гер": 19086,
+ "▁smallest": 19087,
+ "▁Publishing": 19088,
+ "▁Ts": 19089,
+ "▁laughed": 19090,
+ "lle": 19091,
+ "▁Amt": 19092,
+ "▁IIS": 19093,
+ "FORM": 19094,
+ "Mag": 19095,
+ "дон": 19096,
+ "▁storia": 19097,
+ "▁organized": 19098,
+ "ční": 19099,
+ "▁ox": 19100,
+ "lingen": 19101,
+ "▁luego": 19102,
+ "cció": 19103,
+ "▁rely": 19104,
+ "▁tussen": 19105,
+ "erten": 19106,
+ "▁honour": 19107,
+ "▁Claude": 19108,
+ "▁Korea": 19109,
+ "▁Metropol": 19110,
+ "Super": 19111,
+ "rien": 19112,
+ "érature": 19113,
+ "attro": 19114,
+ "▁біль": 19115,
+ "▁Herbert": 19116,
+ "▁auteurs": 19117,
+ "▁darauf": 19118,
+ "▁mental": 19119,
+ "▁rang": 19120,
+ "▁són": 19121,
+ "▁Soph": 19122,
+ ")\",": 19123,
+ "Descriptor": 19124,
+ "prepare": 19125,
+ "▁Landkreis": 19126,
+ "HC": 19127,
+ "cross": 19128,
+ "лиза": 19129,
+ "▁Login": 19130,
+ "onen": 19131,
+ "Feature": 19132,
+ "▁museum": 19133,
+ "vek": 19134,
+ "▁Nelson": 19135,
+ "▁rejo": 19136,
+ "▁команди": 19137,
+ "▁summar": 19138,
+ "▁следу": 19139,
+ "ämp": 19140,
+ "▁Gas": 19141,
+ "вом": 19142,
+ "VALUE": 19143,
+ "inge": 19144,
+ "period": 19145,
+ "lassen": 19146,
+ "ával": 19147,
+ "▁altogether": 19148,
+ "umph": 19149,
+ "istro": 19150,
+ "ąż": 19151,
+ "▁Keep": 19152,
+ "▁Marco": 19153,
+ "▁étant": 19154,
+ "▁Dre": 19155,
+ "geometry": 19156,
+ "▁Kas": 19157,
+ "messages": 19158,
+ "Cook": 19159,
+ "▁Side": 19160,
+ "▁коми": 19161,
+ "стри": 19162,
+ "▁excess": 19163,
+ "▁Biografia": 19164,
+ "XXXX": 19165,
+ "▁Nie": 19166,
+ "vendor": 19167,
+ "xsd": 19168,
+ "Mill": 19169,
+ "processing": 19170,
+ "▁Missouri": 19171,
+ "▁permett": 19172,
+ "▁apar": 19173,
+ "▁crowd": 19174,
+ "fert": 19175,
+ "▁Dou": 19176,
+ "rí": 19177,
+ "▁CC": 19178,
+ "▁payment": 19179,
+ "▁Hollywood": 19180,
+ "▁Virtual": 19181,
+ "▁spoken": 19182,
+ "▁tram": 19183,
+ "▁Community": 19184,
+ "▁administrative": 19185,
+ "▁воло": 19186,
+ "gior": 19187,
+ "visor": 19188,
+ "▁Украи": 19189,
+ "stage": 19190,
+ "▁Format": 19191,
+ "▁convenient": 19192,
+ "На": 19193,
+ "▁median": 19194,
+ "▁вра": 19195,
+ "▁Према": 19196,
+ "enig": 19197,
+ "▁Opera": 19198,
+ "rés": 19199,
+ "▁fmt": 19200,
+ "▁efficiency": 19201,
+ "male": 19202,
+ "Master": 19203,
+ "Series": 19204,
+ "▁syd": 19205,
+ "generic": 19206,
+ "interval": 19207,
+ "▁efect": 19208,
+ "▁inwoners": 19209,
+ "лимпи": 19210,
+ "irement": 19211,
+ "Err": 19212,
+ "öh": 19213,
+ "▁lying": 19214,
+ "▁Settings": 19215,
+ "!=": 19216,
+ "ematic": 19217,
+ "argv": 19218,
+ "▁Basic": 19219,
+ "▁consideration": 19220,
+ "▁habe": 19221,
+ "-%": 19222,
+ "▁mountains": 19223,
+ "▁peak": 19224,
+ "▁fallen": 19225,
+ "eded": 19226,
+ "logic": 19227,
+ "▁matched": 19228,
+ "▁typing": 19229,
+ ")},": 19230,
+ "▁fancy": 19231,
+ "▁elegant": 19232,
+ "ال": 19233,
+ "▁участ": 19234,
+ "▁Sarah": 19235,
+ "▁Verd": 19236,
+ "▁tego": 19237,
+ "rules": 19238,
+ "▁mounted": 19239,
+ "▁ім": 19240,
+ "еру": 19241,
+ "stoff": 19242,
+ "fahren": 19243,
+ "distance": 19244,
+ "▁License": 19245,
+ "▁LEFT": 19246,
+ "▁wp": 19247,
+ "/{": 19248,
+ "▁amazon": 19249,
+ ">&": 19250,
+ "▁első": 19251,
+ "quarters": 19252,
+ "▁shock": 19253,
+ "nick": 19254,
+ "▁Archite": 19255,
+ "▁Square": 19256,
+ "▁rates": 19257,
+ "iore": 19258,
+ "▁Nat": 19259,
+ "▁Charlot": 19260,
+ "reichen": 19261,
+ "▁variation": 19262,
+ "osis": 19263,
+ "life": 19264,
+ "slide": 19265,
+ "abi": 19266,
+ "uki": 19267,
+ "mysq": 19268,
+ "▁primitive": 19269,
+ "▁universitaire": 19270,
+ "LENG": 19271,
+ "ależ": 19272,
+ "ebook": 19273,
+ "syn": 19274,
+ "▁Gegen": 19275,
+ "▁Kü": 19276,
+ "▁але": 19277,
+ "▁Lub": 19278,
+ "concurrent": 19279,
+ "izzato": 19280,
+ "▁stub": 19281,
+ "▁ie": 19282,
+ "▁'./": 19283,
+ "cod": 19284,
+ "▁internacional": 19285,
+ "▁Glas": 19286,
+ "▁mare": 19287,
+ "▁Neb": 19288,
+ "▁GB": 19289,
+ "kwargs": 19290,
+ "▁aument": 19291,
+ "WID": 19292,
+ "▁род": 19293,
+ "punkt": 19294,
+ "▁Grad": 19295,
+ "SN": 19296,
+ "AMP": 19297,
+ "▁Born": 19298,
+ "▁Guerre": 19299,
+ "готов": 19300,
+ "▁medio": 19301,
+ "Med": 19302,
+ "supp": 19303,
+ "actual": 19304,
+ "dropdown": 19305,
+ "▁oktober": 19306,
+ "▁ř": 19307,
+ "▁circular": 19308,
+ "▁skin": 19309,
+ "▁emphas": 19310,
+ "▁голов": 19311,
+ "▁pue": 19312,
+ "▁informations": 19313,
+ "▁Wolfgang": 19314,
+ "▁useless": 19315,
+ "ит": 19316,
+ "▁Joan": 19317,
+ "▁бор": 19318,
+ "▁Glad": 19319,
+ "▁Know": 19320,
+ "ként": 19321,
+ "speed": 19322,
+ "▁Kevin": 19323,
+ "unft": 19324,
+ "▁arqu": 19325,
+ "▁Casa": 19326,
+ "(...": 19327,
+ "▁rapidly": 19328,
+ "▁proble": 19329,
+ "▁Википеди": 19330,
+ "žen": 19331,
+ "▁Neben": 19332,
+ "▁Meter": 19333,
+ "Children": 19334,
+ "cem": 19335,
+ "igos": 19336,
+ "aju": 19337,
+ "▁Retrie": 19338,
+ "▁Hell": 19339,
+ "▁gig": 19340,
+ "▁controvers": 19341,
+ "▁zoom": 19342,
+ "▁cens": 19343,
+ "▁alcuni": 19344,
+ "▁Header": 19345,
+ "Meta": 19346,
+ "Required": 19347,
+ "▁институ": 19348,
+ "▁skup": 19349,
+ "▁ingles": 19350,
+ "égl": 19351,
+ "bij": 19352,
+ "▁tér": 19353,
+ "▁compag": 19354,
+ "▁committed": 19355,
+ "▁processed": 19356,
+ "Lower": 19357,
+ "▁Foreign": 19358,
+ "▁seq": 19359,
+ "sheets": 19360,
+ "▁Fem": 19361,
+ "hoz": 19362,
+ "inks": 19363,
+ "▁kall": 19364,
+ "variant": 19365,
+ "▁libro": 19366,
+ "▁clicks": 19367,
+ "▁gobierno": 19368,
+ "iegel": 19369,
+ "мого": 19370,
+ "geme": 19371,
+ "▁tower": 19372,
+ "▁parish": 19373,
+ "▁TCP": 19374,
+ "▁ls": 19375,
+ "▁nginx": 19376,
+ "NaN": 19377,
+ "▁Dir": 19378,
+ "▁Begriffe": 19379,
+ "arie": 19380,
+ "ímp": 19381,
+ "icios": 19382,
+ "▁sharing": 19383,
+ "▁cinéma": 19384,
+ "bec": 19385,
+ "RED": 19386,
+ "▁Kra": 19387,
+ "abol": 19388,
+ "▁flux": 19389,
+ "▁expensive": 19390,
+ "▁суще": 19391,
+ "▁`_": 19392,
+ "ocz": 19393,
+ "лист": 19394,
+ "▁acquaint": 19395,
+ "▁wise": 19396,
+ "▁pouvoir": 19397,
+ "▁devant": 19398,
+ "▁momentum": 19399,
+ "immer": 19400,
+ "▁Coupe": 19401,
+ "indexOf": 19402,
+ "▁doesnt": 19403,
+ "▁зав": 19404,
+ "▁license": 19405,
+ "▁â": 19406,
+ "CSS": 19407,
+ "▁rice": 19408,
+ "Team": 19409,
+ "▁ano": 19410,
+ "lit": 19411,
+ "▁merged": 19412,
+ "▁Cell": 19413,
+ "лл": 19414,
+ "boy": 19415,
+ "asts": 19416,
+ "▁sell": 19417,
+ "▁große": 19418,
+ "▁virtuel": 19419,
+ "Cancel": 19420,
+ "▁sj": 19421,
+ "gment": 19422,
+ ".<": 19423,
+ "чай": 19424,
+ "ië": 19425,
+ "akh": 19426,
+ "izers": 19427,
+ "prit": 19428,
+ "▁Tib": 19429,
+ "▁elaborate": 19430,
+ "▁fé": 19431,
+ "▁меди": 19432,
+ "LENGTH": 19433,
+ "▁primarily": 19434,
+ "▁scores": 19435,
+ "▁carrying": 19436,
+ "▁lake": 19437,
+ "compose": 19438,
+ "▁Township": 19439,
+ "unge": 19440,
+ "▁alberga": 19441,
+ "anych": 19442,
+ "quelle": 19443,
+ "▁Ark": 19444,
+ "▁pris": 19445,
+ "▁voll": 19446,
+ "шли": 19447,
+ "Validation": 19448,
+ "▁ceux": 19449,
+ "▁populate": 19450,
+ "\"\r": 19451,
+ "▁femmes": 19452,
+ "ANG": 19453,
+ "▁Despite": 19454,
+ "вые": 19455,
+ "iske": 19456,
+ "zug": 19457,
+ "нача": 19458,
+ "▁hatten": 19459,
+ "INSERT": 19460,
+ "Employee": 19461,
+ "▁moments": 19462,
+ "▁última": 19463,
+ "▁holder": 19464,
+ "blank": 19465,
+ "Collections": 19466,
+ "athers": 19467,
+ "▁grade": 19468,
+ "▁affairs": 19469,
+ ".$$": 19470,
+ "▁delta": 19471,
+ "▁Jugend": 19472,
+ "▁español": 19473,
+ "▁OUT": 19474,
+ "▁mathematical": 19475,
+ "▁mongo": 19476,
+ "▁Фе": 19477,
+ "uling": 19478,
+ "▁revolution": 19479,
+ "▁coin": 19480,
+ "▁subclass": 19481,
+ "\"=>": 19482,
+ "äche": 19483,
+ "▁pyg": 19484,
+ "щая": 19485,
+ "illery": 19486,
+ "▁comenz": 19487,
+ "depth": 19488,
+ "▁cél": 19489,
+ "▁resize": 19490,
+ "▁Same": 19491,
+ "▁strik": 19492,
+ "▁tir": 19493,
+ "▁scarc": 19494,
+ "▁Member": 19495,
+ "subscribe": 19496,
+ "óż": 19497,
+ "útbol": 19498,
+ "except": 19499,
+ "▁driving": 19500,
+ "kie": 19501,
+ "zony": 19502,
+ "èmes": 19503,
+ "David": 19504,
+ "issant": 19505,
+ "▁ты": 19506,
+ "▁élect": 19507,
+ "▁rename": 19508,
+ "▁Running": 19509,
+ "▁interfaces": 19510,
+ "////////////////": 19511,
+ "▁Walker": 19512,
+ "▁société": 19513,
+ "▁asks": 19514,
+ "brid": 19515,
+ "▁jewe": 19516,
+ "▁seines": 19517,
+ "▁agents": 19518,
+ "▁MY": 19519,
+ "▁Lawrence": 19520,
+ "dess": 19521,
+ "iesen": 19522,
+ "▁людях": 19523,
+ "прави": 19524,
+ "▁ancest": 19525,
+ "▁welche": 19526,
+ "raum": 19527,
+ "▁orb": 19528,
+ "scal": 19529,
+ "▁Lear": 19530,
+ "▁wear": 19531,
+ "▁slave": 19532,
+ "▁renamed": 19533,
+ "čen": 19534,
+ "maste": 19535,
+ "angles": 19536,
+ "▁América": 19537,
+ "▁ti": 19538,
+ "▁demsel": 19539,
+ "▁beneath": 19540,
+ "binary": 19541,
+ "▁edición": 19542,
+ "▁kilomet": 19543,
+ "uits": 19544,
+ "▁cuatro": 19545,
+ "▁entrance": 19546,
+ "ondissement": 19547,
+ "▁bag": 19548,
+ "▁Armen": 19549,
+ "ijo": 19550,
+ "▁Lors": 19551,
+ "▁demselben": 19552,
+ "êm": 19553,
+ "▁discrete": 19554,
+ "▁prominent": 19555,
+ "▁Jay": 19556,
+ "decor": 19557,
+ "DL": 19558,
+ "▁dí": 19559,
+ "Struct": 19560,
+ "▁Production": 19561,
+ "they": 19562,
+ "arius": 19563,
+ "schnitt": 19564,
+ "▁Cou": 19565,
+ "▁lex": 19566,
+ "youtube": 19567,
+ "▁работа": 19568,
+ "station": 19569,
+ "sep": 19570,
+ "▁mirror": 19571,
+ "▁hits": 19572,
+ "▁Beck": 19573,
+ "atically": 19574,
+ "▁Laz": 19575,
+ "▁winner": 19576,
+ "DEX": 19577,
+ "▁INT": 19578,
+ "}^{-": 19579,
+ "▁wegen": 19580,
+ "mad": 19581,
+ "Angle": 19582,
+ "zing": 19583,
+ "▁Bayern": 19584,
+ "sal": 19585,
+ "äger": 19586,
+ "▁busy": 19587,
+ "▁stör": 19588,
+ "▁folk": 19589,
+ "▁prix": 19590,
+ "▁allocated": 19591,
+ "▁pt": 19592,
+ "affen": 19593,
+ "cluster": 19594,
+ "▁complement": 19595,
+ "árs": 19596,
+ "▁Amerika": 19597,
+ "рій": 19598,
+ "▁valley": 19599,
+ "▁rooms": 19600,
+ "▁moi": 19601,
+ ".\",": 19602,
+ ";;;;": 19603,
+ "▁lowest": 19604,
+ "nog": 19605,
+ "▁landet": 19606,
+ "▁programme": 19607,
+ "chio": 19608,
+ "▁Während": 19609,
+ "ández": 19610,
+ "▁долж": 19611,
+ "▁ouv": 19612,
+ "omány": 19613,
+ "▁Википедии": 19614,
+ "▁só": 19615,
+ "▁elektr": 19616,
+ "Desc": 19617,
+ "▁Beaut": 19618,
+ "нар": 19619,
+ "▁може": 19620,
+ "Pierre": 19621,
+ "esota": 19622,
+ "▁operated": 19623,
+ "▁forte": 19624,
+ "рис": 19625,
+ "▁opposition": 19626,
+ "alia": 19627,
+ "▁Syl": 19628,
+ "getName": 19629,
+ "вели": 19630,
+ "fik": 19631,
+ "▁comprom": 19632,
+ "▁TextView": 19633,
+ "Spring": 19634,
+ "metadata": 19635,
+ "engu": 19636,
+ "/,": 19637,
+ "▁carri": 19638,
+ "istol": 19639,
+ "▁diagonal": 19640,
+ "lista": 19641,
+ "izen": 19642,
+ "▁rende": 19643,
+ "gcc": 19644,
+ "beck": 19645,
+ "lius": 19646,
+ "iral": 19647,
+ "Resolver": 19648,
+ "▁percentage": 19649,
+ "▁attra": 19650,
+ "strings": 19651,
+ "wiąz": 19652,
+ "ods": 19653,
+ "волю": 19654,
+ "ęż": 19655,
+ "▁newspaper": 19656,
+ "imiter": 19657,
+ "ABC": 19658,
+ "▁Manchester": 19659,
+ "[{": 19660,
+ "Agent": 19661,
+ "▁Wor": 19662,
+ "▁Kath": 19663,
+ "▁пові": 19664,
+ "▁entonces": 19665,
+ "▁niveau": 19666,
+ "atted": 19667,
+ "learn": 19668,
+ "atiques": 19669,
+ "▁уби": 19670,
+ "▁quindi": 19671,
+ "binding": 19672,
+ "▁imported": 19673,
+ "▁Horn": 19674,
+ "emberg": 19675,
+ "complex": 19676,
+ "▁neural": 19677,
+ "information": 19678,
+ "▁recognition": 19679,
+ "ingt": 19680,
+ "▁inhabitants": 19681,
+ "vue": 19682,
+ "▁Bevölker": 19683,
+ "▁curves": 19684,
+ "▁leb": 19685,
+ "дій": 19686,
+ "▁sow": 19687,
+ "▁sentiment": 19688,
+ "PH": 19689,
+ "rache": 19690,
+ "▁-(": 19691,
+ "▁estable": 19692,
+ "▁Ferdinand": 19693,
+ "▁écrit": 19694,
+ "▁primeiro": 19695,
+ "▁tex": 19696,
+ "▁intermediate": 19697,
+ "verage": 19698,
+ "ibus": 19699,
+ "▁serves": 19700,
+ "ivas": 19701,
+ "▁bru": 19702,
+ "▁lum": 19703,
+ "attice": 19704,
+ "чный": 19705,
+ "▁Dres": 19706,
+ "▁videos": 19707,
+ "duration": 19708,
+ "▁abit": 19709,
+ "▁egg": 19710,
+ "ographical": 19711,
+ "alph": 19712,
+ "STATE": 19713,
+ "▁пара": 19714,
+ "reading": 19715,
+ "▁vehicle": 19716,
+ "▁fortune": 19717,
+ "ultats": 19718,
+ "▁Storia": 19719,
+ "midt": 19720,
+ "łącz": 19721,
+ "▁Memorial": 19722,
+ "▁vas": 19723,
+ "▁зан": 19724,
+ "▁utility": 19725,
+ "▁obsc": 19726,
+ "▁relacion": 19727,
+ "▁runat": 19728,
+ "Release": 19729,
+ "take": 19730,
+ "▁Oliver": 19731,
+ "▁Sid": 19732,
+ "ulos": 19733,
+ "▁Garc": 19734,
+ "▁розта": 19735,
+ "▁Sak": 19736,
+ "Py": 19737,
+ "führt": 19738,
+ "▁trabal": 19739,
+ "*{": 19740,
+ "▁zes": 19741,
+ "▁szere": 19742,
+ "▁varios": 19743,
+ "▁otra": 19744,
+ "▁eval": 19745,
+ "▁situé": 19746,
+ "▁wounded": 19747,
+ "▁Vincent": 19748,
+ "▁викори": 19749,
+ "▁encode": 19750,
+ "Modal": 19751,
+ "▁forb": 19752,
+ "▁dynamics": 19753,
+ "▁depos": 19754,
+ "arde": 19755,
+ "▁streets": 19756,
+ "▁Komm": 19757,
+ "=$(": 19758,
+ "▁повер": 19759,
+ "▁dois": 19760,
+ "▁vitt": 19761,
+ "▁automatisch": 19762,
+ "▁reload": 19763,
+ "▁Verwalt": 19764,
+ "bero": 19765,
+ "▁hub": 19766,
+ "▁mos": 19767,
+ "▁tutto": 19768,
+ "▁Frederick": 19769,
+ "łow": 19770,
+ "antages": 19771,
+ "aque": 19772,
+ "paper": 19773,
+ "▁einige": 19774,
+ "`),": 19775,
+ "dj": 19776,
+ "▁Ple": 19777,
+ "▁%,": 19778,
+ "▁Bitmap": 19779,
+ "▁friendly": 19780,
+ "▁truly": 19781,
+ "▁stroke": 19782,
+ "roph": 19783,
+ "▁engl": 19784,
+ "▁coff": 19785,
+ "▁dust": 19786,
+ "▁Jahres": 19787,
+ "ppi": 19788,
+ "▁wys": 19789,
+ "factor": 19790,
+ "schluss": 19791,
+ "▁деревня": 19792,
+ "▁Past": 19793,
+ "▁дома": 19794,
+ "COM": 19795,
+ "▁pueden": 19796,
+ "▁gift": 19797,
+ "▁Gla": 19798,
+ "▁triggered": 19799,
+ "ély": 19800,
+ "ülés": 19801,
+ "▁Oliv": 19802,
+ "▁verso": 19803,
+ "▁lle": 19804,
+ "▁Gli": 19805,
+ "▁Ltd": 19806,
+ "oa": 19807,
+ "▁territorio": 19808,
+ "ordre": 19809,
+ "▁deck": 19810,
+ "dra": 19811,
+ "aszt": 19812,
+ "▁concerning": 19813,
+ "▁Additionally": 19814,
+ "▁které": 19815,
+ "▁grund": 19816,
+ "▁Gest": 19817,
+ "▁misunder": 19818,
+ "pret": 19819,
+ "────": 19820,
+ "▁reputation": 19821,
+ "zia": 19822,
+ "▁успе": 19823,
+ "▁escaped": 19824,
+ "▁Prag": 19825,
+ "perform": 19826,
+ "▁austral": 19827,
+ "▁Vater": 19828,
+ "час": 19829,
+ "▁races": 19830,
+ "▁Byte": 19831,
+ "Mask": 19832,
+ "▁Territ": 19833,
+ "стю": 19834,
+ "▁Voci": 19835,
+ "▁Fichier": 19836,
+ "▁Населення": 19837,
+ "▁Unterscheidung": 19838,
+ "teenth": 19839,
+ "▁pilot": 19840,
+ "▁ji": 19841,
+ "▁двух": 19842,
+ "▁orientation": 19843,
+ "indre": 19844,
+ "▁Dort": 19845,
+ "ças": 19846,
+ "пли": 19847,
+ "▁reaction": 19848,
+ "▁consisting": 19849,
+ "▁ferro": 19850,
+ "тисти": 19851,
+ "yard": 19852,
+ "▁сві": 19853,
+ "▁interpretation": 19854,
+ "ią": 19855,
+ "rah": 19856,
+ "▁fand": 19857,
+ "Public": 19858,
+ "▁universe": 19859,
+ "▁retir": 19860,
+ "▁conscious": 19861,
+ "arqu": 19862,
+ "▁waste": 19863,
+ "▁Bib": 19864,
+ "yclerView": 19865,
+ "▁listening": 19866,
+ "gleich": 19867,
+ "niejs": 19868,
+ "▁correlation": 19869,
+ "▁receiver": 19870,
+ "▁уда": 19871,
+ "▁courage": 19872,
+ "uchs": 19873,
+ "fass": 19874,
+ "▁chunk": 19875,
+ "▁Anfang": 19876,
+ "▁großen": 19877,
+ "continue": 19878,
+ "▁Warszawa": 19879,
+ "hé": 19880,
+ "iy": 19881,
+ "ivement": 19882,
+ "▁α": 19883,
+ "▁exposed": 19884,
+ "▁zahl": 19885,
+ "▁sacr": 19886,
+ "▁Looks": 19887,
+ "▁eager": 19888,
+ "enten": 19889,
+ "Cursor": 19890,
+ "/_": 19891,
+ "ixa": 19892,
+ "рела": 19893,
+ "знача": 19894,
+ "▁фамилией": 19895,
+ "▁argent": 19896,
+ "▁Anders": 19897,
+ "œuvre": 19898,
+ "▁Isa": 19899,
+ "мента": 19900,
+ "▁advers": 19901,
+ "riction": 19902,
+ "GP": 19903,
+ "▁після": 19904,
+ "▁preserve": 19905,
+ "▁Garden": 19906,
+ "Rate": 19907,
+ "après": 19908,
+ "▁readable": 19909,
+ "indu": 19910,
+ "▁skill": 19911,
+ "▁helping": 19912,
+ "ographique": 19913,
+ "cling": 19914,
+ "ologist": 19915,
+ "▁Filter": 19916,
+ "▁finger": 19917,
+ "▁Vall": 19918,
+ "▁Polish": 19919,
+ "lg": 19920,
+ "▁Familien": 19921,
+ "▁waters": 19922,
+ "▁pseud": 19923,
+ "aza": 19924,
+ "_)": 19925,
+ "ARY": 19926,
+ "▁среди": 19927,
+ "▁Must": 19928,
+ "▁Bod": 19929,
+ "anon": 19930,
+ "▁lado": 19931,
+ "▁tight": 19932,
+ "imen": 19933,
+ "appen": 19934,
+ "frames": 19935,
+ "ingers": 19936,
+ "▁COVID": 19937,
+ "▁зі": 19938,
+ "▁све": 19939,
+ "▁ць": 19940,
+ "▁Left": 19941,
+ "]];": 19942,
+ "чь": 19943,
+ "фика": 19944,
+ "▁сло": 19945,
+ "▁пі": 19946,
+ "▁existe": 19947,
+ "▁Atlantic": 19948,
+ "▁maintained": 19949,
+ "▁irre": 19950,
+ "▁année": 19951,
+ "▁commented": 19952,
+ "веро": 19953,
+ "berta": 19954,
+ "▁Lad": 19955,
+ "▁Upon": 19956,
+ "▁pause": 19957,
+ "mill": 19958,
+ "opter": 19959,
+ "UK": 19960,
+ "рес": 19961,
+ "нциклопеди": 19962,
+ "▁alongside": 19963,
+ "▁robot": 19964,
+ "▁fert": 19965,
+ "▁moy": 19966,
+ "▁ade": 19967,
+ "Mapper": 19968,
+ ")->": 19969,
+ "igua": 19970,
+ "étique": 19971,
+ "тка": 19972,
+ "alias": 19973,
+ "▁ори": 19974,
+ "▁Magn": 19975,
+ "▁gehörte": 19976,
+ "imb": 19977,
+ ")}{\\": 19978,
+ "▁Wikipédia": 19979,
+ "▁urs": 19980,
+ "▁ende": 19981,
+ "leb": 19982,
+ "▁GC": 19983,
+ "Hol": 19984,
+ "ancing": 19985,
+ "Union": 19986,
+ "▁tenía": 19987,
+ "TT": 19988,
+ "▁estate": 19989,
+ "há": 19990,
+ "▁полі": 19991,
+ "ultan": 19992,
+ "▁Hockey": 19993,
+ "ulse": 19994,
+ "▁choices": 19995,
+ "scher": 19996,
+ "▁[],": 19997,
+ "▁potentially": 19998,
+ "▁Übers": 19999,
+ "▁admit": 20000,
+ "Comment": 20001,
+ "стя": 20002,
+ "▁Vien": 20003,
+ "▁ці": 20004,
+ "▁permut": 20005,
+ "cgi": 20006,
+ "▁crít": 20007,
+ "Console": 20008,
+ "ctic": 20009,
+ "▁okres": 20010,
+ "awk": 20011,
+ "football": 20012,
+ "ouest": 20013,
+ "CTYPE": 20014,
+ "ologique": 20015,
+ "▁constit": 20016,
+ "▁interests": 20017,
+ "▁Progress": 20018,
+ "▁Menu": 20019,
+ "▁také": 20020,
+ "▁Asian": 20021,
+ "▁защи": 20022,
+ "▁younger": 20023,
+ "▁wished": 20024,
+ "▁Sort": 20025,
+ "▁audience": 20026,
+ "amba": 20027,
+ "▁gehört": 20028,
+ "▁Kansas": 20029,
+ "yaume": 20030,
+ "▁Professional": 20031,
+ "âce": 20032,
+ "▁fatto": 20033,
+ "tod": 20034,
+ "▁datasets": 20035,
+ "▁fare": 20036,
+ "▁waves": 20037,
+ "~/": 20038,
+ "▁measurement": 20039,
+ "▁wol": 20040,
+ "indust": 20041,
+ "▁struggling": 20042,
+ "▁pulled": 20043,
+ "▁caratter": 20044,
+ "▁Externe": 20045,
+ "▁действи": 20046,
+ "cnt": 20047,
+ "liches": 20048,
+ "▁Possible": 20049,
+ "▁faced": 20050,
+ "▁hypothesis": 20051,
+ "▁kilom": 20052,
+ "▁när": 20053,
+ "boolean": 20054,
+ "PY": 20055,
+ "ampa": 20056,
+ "▁kiss": 20057,
+ "▁astero": 20058,
+ "▁negli": 20059,
+ "aments": 20060,
+ "▁Stu": 20061,
+ "ató": 20062,
+ "▁Constitution": 20063,
+ "▁interpol": 20064,
+ "▁Unable": 20065,
+ "▁pis": 20066,
+ "▁parc": 20067,
+ "\"])": 20068,
+ "pler": 20069,
+ "▁autory": 20070,
+ "▁algunos": 20071,
+ "ywna": 20072,
+ "}))": 20073,
+ "▁falls": 20074,
+ "▁équip": 20075,
+ "▁emit": 20076,
+ "▁profil": 20077,
+ "gets": 20078,
+ "фо": 20079,
+ "▁Military": 20080,
+ "▁nombreux": 20081,
+ "oct": 20082,
+ "Replace": 20083,
+ "▁seasons": 20084,
+ "▁château": 20085,
+ "▁typeof": 20086,
+ "polit": 20087,
+ "▁rand": 20088,
+ "▁quar": 20089,
+ "▁erstmals": 20090,
+ "сини": 20091,
+ "▁payload": 20092,
+ "По": 20093,
+ "кін": 20094,
+ "repo": 20095,
+ "▁Pav": 20096,
+ "Score": 20097,
+ "erves": 20098,
+ "▁sollte": 20099,
+ "▁між": 20100,
+ "ébec": 20101,
+ "▁clip": 20102,
+ "▁Nice": 20103,
+ "▁neben": 20104,
+ "▁assass": 20105,
+ "itories": 20106,
+ "▁unity": 20107,
+ "▁ен": 20108,
+ "▁Institut": 20109,
+ "▁internationale": 20110,
+ "▁наук": 20111,
+ "▁comand": 20112,
+ "▁kleine": 20113,
+ "▁adjacent": 20114,
+ "▁delivered": 20115,
+ "▁ше": 20116,
+ "зем": 20117,
+ "▁cot": 20118,
+ "visual": 20119,
+ "вает": 20120,
+ "▁Census": 20121,
+ "\\_": 20122,
+ "▁territory": 20123,
+ "чил": 20124,
+ "чные": 20125,
+ "flutter": 20126,
+ "DidLoad": 20127,
+ "Documents": 20128,
+ "▁dob": 20129,
+ "Bre": 20130,
+ "animate": 20131,
+ "▁biz": 20132,
+ "▁bata": 20133,
+ "▁SU": 20134,
+ "eso": 20135,
+ "▁priority": 20136,
+ "ván": 20137,
+ "iras": 20138,
+ "▁charged": 20139,
+ "▁Micro": 20140,
+ "atoire": 20141,
+ "чер": 20142,
+ "abad": 20143,
+ "uru": 20144,
+ "▁vš": 20145,
+ "dire": 20146,
+ "▁Twitter": 20147,
+ "▁мето": 20148,
+ ")..": 20149,
+ "▁Цент": 20150,
+ "▁entwick": 20151,
+ "▁Mind": 20152,
+ "▁функ": 20153,
+ "Future": 20154,
+ "lst": 20155,
+ "łoż": 20156,
+ "fli": 20157,
+ "tensor": 20158,
+ "▁topology": 20159,
+ "▁arte": 20160,
+ "ERT": 20161,
+ "▁variance": 20162,
+ "Images": 20163,
+ "▁(@": 20164,
+ "ArrayList": 20165,
+ "OC": 20166,
+ "▁Демо": 20167,
+ "aucoup": 20168,
+ "▁denotes": 20169,
+ "imon": 20170,
+ "њи": 20171,
+ "▁Przyp": 20172,
+ "▁Zag": 20173,
+ "▁дире": 20174,
+ "▁Similarly": 20175,
+ "бро": 20176,
+ "▁militaire": 20177,
+ "▁тому": 20178,
+ "▁Johnny": 20179,
+ "▁Мексику": 20180,
+ "ћа": 20181,
+ "Supp": 20182,
+ "▁junior": 20183,
+ "oltre": 20184,
+ "▁Моск": 20185,
+ "▁admitted": 20186,
+ "▁religios": 20187,
+ "зяй": 20188,
+ "его": 20189,
+ "▁tears": 20190,
+ "ingo": 20191,
+ "odu": 20192,
+ "iveness": 20193,
+ "▁logo": 20194,
+ "▁último": 20195,
+ "▁aliment": 20196,
+ "▁UITableView": 20197,
+ ")!": 20198,
+ "▁nj": 20199,
+ "lette": 20200,
+ "▁resident": 20201,
+ "▁termine": 20202,
+ "▁уже": 20203,
+ "▁Сте": 20204,
+ "office": 20205,
+ "▁carte": 20206,
+ "▁livre": 20207,
+ "▁Москов": 20208,
+ "▁elections": 20209,
+ "зиден": 20210,
+ "Trigger": 20211,
+ "▁Benjamin": 20212,
+ "addClass": 20213,
+ "ског": 20214,
+ "▁Observable": 20215,
+ "Cla": 20216,
+ "gemein": 20217,
+ "▁consent": 20218,
+ "ври": 20219,
+ "▁unfold": 20220,
+ "▁governor": 20221,
+ "нал": 20222,
+ "▁toda": 20223,
+ "Remote": 20224,
+ "arias": 20225,
+ "▁instal": 20226,
+ "fixed": 20227,
+ "▁decay": 20228,
+ "▁дерев": 20229,
+ "xyz": 20230,
+ "▁DATE": 20231,
+ "imar": 20232,
+ "ntil": 20233,
+ "▁startup": 20234,
+ "alion": 20235,
+ "▁kolej": 20236,
+ "cios": 20237,
+ "▁ranges": 20238,
+ "▁stupid": 20239,
+ "▁implementations": 20240,
+ "▁rm": 20241,
+ "ének": 20242,
+ "▁gcc": 20243,
+ "▁scène": 20244,
+ "Navigation": 20245,
+ "▁ ": 20246,
+ "▁кан": 20247,
+ "▁towns": 20248,
+ "Username": 20249,
+ "▁фе": 20250,
+ "▁leaders": 20251,
+ "oit": 20252,
+ "wär": 20253,
+ "▁dummy": 20254,
+ "▁assistant": 20255,
+ "{$\\": 20256,
+ "бір": 20257,
+ "▁roy": 20258,
+ "▁Layout": 20259,
+ "▁Jung": 20260,
+ "Lines": 20261,
+ "▁Holland": 20262,
+ "пор": 20263,
+ "▁Гри": 20264,
+ "▁Bened": 20265,
+ "▁Под": 20266,
+ "xls": 20267,
+ "▁Gol": 20268,
+ "▁Aleks": 20269,
+ "▁ejemplo": 20270,
+ "▁sezon": 20271,
+ "arding": 20272,
+ "footnote": 20273,
+ "▁Congrès": 20274,
+ "refer": 20275,
+ "ската": 20276,
+ "Iterator": 20277,
+ "▁ourselves": 20278,
+ "▁Mic": 20279,
+ "▁código": 20280,
+ "▁площа": 20281,
+ "▁\\$": 20282,
+ "▁Charlie": 20283,
+ "Nodes": 20284,
+ "▁puzz": 20285,
+ "▁Identifier": 20286,
+ "▁flutter": 20287,
+ "▁prü": 20288,
+ "▁ort": 20289,
+ "▁Cort": 20290,
+ "asticsearch": 20291,
+ "▁Свя": 20292,
+ "▁Bull": 20293,
+ "udem": 20294,
+ "▁apparent": 20295,
+ ":--": 20296,
+ "▁Хар": 20297,
+ "▁Lap": 20298,
+ "▁comport": 20299,
+ "matically": 20300,
+ "▁curios": 20301,
+ "▁может": 20302,
+ "▁Bh": 20303,
+ "apping": 20304,
+ "▁basketball": 20305,
+ "zetek": 20306,
+ "▁runt": 20307,
+ "▁Milan": 20308,
+ "fection": 20309,
+ "ría": 20310,
+ "▁Kin": 20311,
+ "▁slower": 20312,
+ "both": 20313,
+ "▁Instituto": 20314,
+ "▁Historical": 20315,
+ "▁również": 20316,
+ "matches": 20317,
+ "yci": 20318,
+ "▁espèce": 20319,
+ "▁Schweizer": 20320,
+ "NT": 20321,
+ "SF": 20322,
+ "acia": 20323,
+ "forge": 20324,
+ "Points": 20325,
+ "numbers": 20326,
+ "▁falling": 20327,
+ "▁inheritance": 20328,
+ "▁Erst": 20329,
+ "▁customers": 20330,
+ "▁actu": 20331,
+ "▁migration": 20332,
+ "\\'": 20333,
+ "Plan": 20334,
+ "Mr": 20335,
+ "othy": 20336,
+ "▁upgrad": 20337,
+ "бира": 20338,
+ "▁Offic": 20339,
+ "▁Wait": 20340,
+ "▁toler": 20341,
+ "ardon": 20342,
+ "▁slide": 20343,
+ ")_": 20344,
+ "▁став": 20345,
+ "▁nuclear": 20346,
+ "▁Bil": 20347,
+ "owner": 20348,
+ "▁Harris": 20349,
+ "Information": 20350,
+ "▁pó": 20351,
+ "▁включа": 20352,
+ "▁nuovo": 20353,
+ "▁Cav": 20354,
+ "▁Descri": 20355,
+ "▁ак": 20356,
+ "ództ": 20357,
+ "▁reactjs": 20358,
+ "▁Adams": 20359,
+ "▁Alternatively": 20360,
+ "струк": 20361,
+ ")`,": 20362,
+ "substring": 20363,
+ "▁massive": 20364,
+ "▁heavily": 20365,
+ "▁сезо": 20366,
+ "▁Ana": 20367,
+ "▁vale": 20368,
+ "Pad": 20369,
+ "▁Either": 20370,
+ "▁rs": 20371,
+ "anche": 20372,
+ "▁uploaded": 20373,
+ "▁(/": 20374,
+ "▁спор": 20375,
+ "▁reduction": 20376,
+ "▁Tokyo": 20377,
+ "gren": 20378,
+ "▁migli": 20379,
+ "▁iterator": 20380,
+ "stav": 20381,
+ "▁supporting": 20382,
+ "▁österreich": 20383,
+ "▁NSLog": 20384,
+ "istiques": 20385,
+ "rimin": 20386,
+ "MODE": 20387,
+ "}}}\\": 20388,
+ "▁explos": 20389,
+ "оте": 20390,
+ "▁(„": 20391,
+ "Sal": 20392,
+ "▁simplest": 20393,
+ "▁già": 20394,
+ "▁тан": 20395,
+ "▁cyl": 20396,
+ "bir": 20397,
+ "▁measurements": 20398,
+ "Created": 20399,
+ "erek": 20400,
+ "lookup": 20401,
+ "wirtschaft": 20402,
+ "▁Воло": 20403,
+ "timer": 20404,
+ "derr": 20405,
+ "▁стала": 20406,
+ "▁scenes": 20407,
+ "▁persu": 20408,
+ "liest": 20409,
+ "▁schedule": 20410,
+ "tal": 20411,
+ "лено": 20412,
+ "▁painting": 20413,
+ "▁improvement": 20414,
+ "software": 20415,
+ "▁governo": 20416,
+ "▁Hir": 20417,
+ "Execution": 20418,
+ "▁Okay": 20419,
+ "Prop": 20420,
+ "loster": 20421,
+ "ніципалі": 20422,
+ "▁peuvent": 20423,
+ "olu": 20424,
+ "▁Фа": 20425,
+ "rollo": 20426,
+ "▁коло": 20427,
+ "▁carrière": 20428,
+ "▁toggle": 20429,
+ "▁($\\": 20430,
+ "▁aggregate": 20431,
+ "▁Бі": 20432,
+ "textarea": 20433,
+ "Ok": 20434,
+ "itto": 20435,
+ "▁stim": 20436,
+ "▁recursion": 20437,
+ "▁Federation": 20438,
+ ")_{": 20439,
+ "ategor": 20440,
+ "▁distribu": 20441,
+ "Cloud": 20442,
+ "▁madre": 20443,
+ "▁iv": 20444,
+ "▁Lieutenant": 20445,
+ "▁substant": 20446,
+ "▁leaf": 20447,
+ "▁Kontrola": 20448,
+ "VA": 20449,
+ "▁tomb": 20450,
+ "эн": 20451,
+ "atoes": 20452,
+ "▁godine": 20453,
+ "▁#>": 20454,
+ "Cert": 20455,
+ "▁empresa": 20456,
+ "Props": 20457,
+ "▁planned": 20458,
+ "▁randomly": 20459,
+ "jähr": 20460,
+ "elem": 20461,
+ "▁Operation": 20462,
+ "*`": 20463,
+ "protocol": 20464,
+ "()));": 20465,
+ "wel": 20466,
+ "▁praw": 20467,
+ "▁сим": 20468,
+ "▁wob": 20469,
+ "▁hace": 20470,
+ "▁nearest": 20471,
+ "disable": 20472,
+ "▁Commun": 20473,
+ "▁revel": 20474,
+ "Free": 20475,
+ "▁brackets": 20476,
+ "IOException": 20477,
+ "▁alto": 20478,
+ "▁marry": 20479,
+ "▁auc": 20480,
+ "),\\": 20481,
+ "▁typo": 20482,
+ "edad": 20483,
+ "ará": 20484,
+ "icator": 20485,
+ "tatywna": 20486,
+ "▁buff": 20487,
+ "orders": 20488,
+ "▁asynchronous": 20489,
+ "▁econ": 20490,
+ "▁feu": 20491,
+ "▁Iron": 20492,
+ "▁rising": 20493,
+ "Radius": 20494,
+ "clk": 20495,
+ "▁zweiten": 20496,
+ "`'": 20497,
+ "▁uniqu": 20498,
+ "▁FM": 20499,
+ "▁Bran": 20500,
+ "▁flu": 20501,
+ "▁sensitive": 20502,
+ "urre": 20503,
+ "▁Iter": 20504,
+ "▁Sein": 20505,
+ "▁diferentes": 20506,
+ "▁него": 20507,
+ "chia": 20508,
+ "▁Anleitung": 20509,
+ "aturday": 20510,
+ "▁shorter": 20511,
+ "▁translated": 20512,
+ "▁Rés": 20513,
+ "▁rode": 20514,
+ "drag": 20515,
+ "▁lange": 20516,
+ "Bi": 20517,
+ "üb": 20518,
+ "leur": 20519,
+ "▁ordering": 20520,
+ "alous": 20521,
+ "▁Кор": 20522,
+ "archar": 20523,
+ "destroy": 20524,
+ "ervation": 20525,
+ "]],": 20526,
+ "AccessorImpl": 20527,
+ "▁autorytatywna": 20528,
+ "Sequence": 20529,
+ "▁proyect": 20530,
+ "▁bran": 20531,
+ "▁(+": 20532,
+ "▁Kab": 20533,
+ "▁zem": 20534,
+ "▁Calcul": 20535,
+ "▁seul": 20536,
+ "▁Niger": 20537,
+ "▁chiam": 20538,
+ "throw": 20539,
+ "▁Planet": 20540,
+ "bildung": 20541,
+ "▁zones": 20542,
+ "transition": 20543,
+ "лений": 20544,
+ "▁mapped": 20545,
+ "onaut": 20546,
+ "Pair": 20547,
+ "ilian": 20548,
+ "▁Morgan": 20549,
+ "▁unto": 20550,
+ "jou": 20551,
+ "▁hid": 20552,
+ "▁Meta": 20553,
+ "▁elles": 20554,
+ "Lou": 20555,
+ "rama": 20556,
+ "geordnet": 20557,
+ "▁scarcely": 20558,
+ "▁mint": 20559,
+ "Focus": 20560,
+ "▁Alter": 20561,
+ "▁dio": 20562,
+ "▁ampl": 20563,
+ "ièrement": 20564,
+ "▁исследова": 20565,
+ "LED": 20566,
+ "algorithm": 20567,
+ "▁сайті": 20568,
+ "▁\"\")": 20569,
+ "History": 20570,
+ "pk": 20571,
+ "▁Whit": 20572,
+ "▁систем": 20573,
+ "▁Kirchen": 20574,
+ "rà": 20575,
+ "APP": 20576,
+ "▁<%": 20577,
+ "antine": 20578,
+ "▁Disk": 20579,
+ "conv": 20580,
+ "welt": 20581,
+ "▁Fut": 20582,
+ "▁Nom": 20583,
+ "ordo": 20584,
+ "ellij": 20585,
+ "▁receives": 20586,
+ "cow": 20587,
+ "ytu": 20588,
+ "▁obras": 20589,
+ "▁purchase": 20590,
+ "▁earned": 20591,
+ "▁accessed": 20592,
+ "axi": 20593,
+ "▁Mans": 20594,
+ "ivan": 20595,
+ "▁tuvo": 20596,
+ "▁Trace": 20597,
+ "rimonio": 20598,
+ "▁desenvol": 20599,
+ "érique": 20600,
+ "▁resulted": 20601,
+ "▁computing": 20602,
+ "▁inspired": 20603,
+ "▁Prize": 20604,
+ "*\"": 20605,
+ "Comput": 20606,
+ "▁extensive": 20607,
+ "èg": 20608,
+ "▁Portály": 20609,
+ "▁castle": 20610,
+ "▁*.": 20611,
+ "▁photos": 20612,
+ "▁voet": 20613,
+ "ONG": 20614,
+ "▁Alle": 20615,
+ "▁threaten": 20616,
+ "stüt": 20617,
+ "▁albums": 20618,
+ "▁dense": 20619,
+ "flat": 20620,
+ "continu": 20621,
+ "Subject": 20622,
+ "▁readonly": 20623,
+ "Opt": 20624,
+ "писко": 20625,
+ "▁Aber": 20626,
+ "▁Position": 20627,
+ "▁Today": 20628,
+ "▁mini": 20629,
+ "▁Bef": 20630,
+ "listen": 20631,
+ "ственного": 20632,
+ "SUB": 20633,
+ "ossa": 20634,
+ "▁Pope": 20635,
+ "▁Jimmy": 20636,
+ "▁Дру": 20637,
+ "ungsseite": 20638,
+ "▁tren": 20639,
+ "optim": 20640,
+ "itsch": 20641,
+ "▁samt": 20642,
+ "▁испол": 20643,
+ "&=": 20644,
+ "▁Przypisy": 20645,
+ "▁продол": 20646,
+ "Cr": 20647,
+ "ermann": 20648,
+ "▁матери": 20649,
+ "▁Hugo": 20650,
+ "▁Deze": 20651,
+ "TRUE": 20652,
+ "▁defeat": 20653,
+ "▁watched": 20654,
+ "▁Gent": 20655,
+ "AUT": 20656,
+ "orous": 20657,
+ "▁опреде": 20658,
+ "orientation": 20659,
+ "▁distinguished": 20660,
+ "▁mesmo": 20661,
+ "▁sli": 20662,
+ "мена": 20663,
+ "mittel": 20664,
+ "gericht": 20665,
+ "eton": 20666,
+ "->{": 20667,
+ "▁wont": 20668,
+ "▁weg": 20669,
+ "▁classific": 20670,
+ "ilus": 20671,
+ "▁MD": 20672,
+ "tasks": 20673,
+ "▁chim": 20674,
+ "await": 20675,
+ "▁gang": 20676,
+ "▁wię": 20677,
+ "through": 20678,
+ "▁Russell": 20679,
+ "▁guessing": 20680,
+ "▁акт": 20681,
+ "блі": 20682,
+ "categories": 20683,
+ "сут": 20684,
+ "▁Fen": 20685,
+ "▁муж": 20686,
+ "▁newer": 20687,
+ "▁Async": 20688,
+ "▁terme": 20689,
+ ">/": 20690,
+ "пара": 20691,
+ "▁Trust": 20692,
+ "▁Opt": 20693,
+ "▁dah": 20694,
+ "▁wonderful": 20695,
+ "adratkil": 20696,
+ "▁Гра": 20697,
+ "mapping": 20698,
+ "▁discovery": 20699,
+ "▁BE": 20700,
+ "Enable": 20701,
+ "▁Friend": 20702,
+ "сня": 20703,
+ "▁controlled": 20704,
+ "чної": 20705,
+ "▁contributions": 20706,
+ "jší": 20707,
+ "▁Lev": 20708,
+ "▁francés": 20709,
+ "▁mic": 20710,
+ "zik": 20711,
+ "▁alem": 20712,
+ "cancel": 20713,
+ "!'": 20714,
+ "▁grat": 20715,
+ "▁Begriffsklär": 20716,
+ "Camera": 20717,
+ "ificación": 20718,
+ "ród": 20719,
+ "▁Arnold": 20720,
+ "▁bezeichneter": 20721,
+ "▁fought": 20722,
+ "▁deput": 20723,
+ "▁Drop": 20724,
+ "tax": 20725,
+ "dg": 20726,
+ "▁Hop": 20727,
+ "GN": 20728,
+ "▁Kirch": 20729,
+ "▁Бар": 20730,
+ "Invoke": 20731,
+ "▁erhalten": 20732,
+ "▁veel": 20733,
+ "▁wordpress": 20734,
+ "▁INNER": 20735,
+ "transaction": 20736,
+ "▁déjà": 20737,
+ "Fact": 20738,
+ "▁надмор": 20739,
+ "▁angularjs": 20740,
+ "▁át": 20741,
+ "▁alap": 20742,
+ "▁Price": 20743,
+ "▁effet": 20744,
+ "▁sphere": 20745,
+ "ClassLoader": 20746,
+ "▁rugby": 20747,
+ "▁kingdom": 20748,
+ "▁Mut": 20749,
+ "▁кино": 20750,
+ "▁reward": 20751,
+ "cit": 20752,
+ "▁presente": 20753,
+ "Sto": 20754,
+ "Character": 20755,
+ "logs": 20756,
+ "▁centrale": 20757,
+ "▁mouv": 20758,
+ "▁okay": 20759,
+ "▁aplic": 20760,
+ "More": 20761,
+ "ények": 20762,
+ "▁Köln": 20763,
+ "nett": 20764,
+ "▁истории": 20765,
+ "▁describing": 20766,
+ "▁soldier": 20767,
+ "▁Need": 20768,
+ "Light": 20769,
+ "▁\"\\<": 20770,
+ "▁hav": 20771,
+ "ermo": 20772,
+ "▁inferior": 20773,
+ "lea": 20774,
+ "▁gg": 20775,
+ "▁конце": 20776,
+ "fragment": 20777,
+ "sb": 20778,
+ "Country": 20779,
+ "▁vě": 20780,
+ "▁Beng": 20781,
+ "▁Это": 20782,
+ "▁водо": 20783,
+ "мар": 20784,
+ "STRING": 20785,
+ "▁új": 20786,
+ "multiple": 20787,
+ "statement": 20788,
+ "▁involves": 20789,
+ "▁tecn": 20790,
+ "Student": 20791,
+ "gré": 20792,
+ "▁lean": 20793,
+ "▁bringing": 20794,
+ "▁Medical": 20795,
+ "▁програм": 20796,
+ "▁Vog": 20797,
+ "▁жов": 20798,
+ "▁Spirit": 20799,
+ "nth": 20800,
+ "▁standards": 20801,
+ "▁Profile": 20802,
+ "▁ez": 20803,
+ "▁территории": 20804,
+ "▁stem": 20805,
+ "uil": 20806,
+ "▁Og": 20807,
+ "Btn": 20808,
+ "nal": 20809,
+ "▁nearby": 20810,
+ "▁producing": 20811,
+ "criv": 20812,
+ "▁assumptions": 20813,
+ "▁Spark": 20814,
+ "▁Lot": 20815,
+ "itudes": 20816,
+ "afka": 20817,
+ "five": 20818,
+ "atio": 20819,
+ "▁distinguish": 20820,
+ "rock": 20821,
+ "église": 20822,
+ "▁rappres": 20823,
+ ">\\<": 20824,
+ "лій": 20825,
+ "▁мини": 20826,
+ "▁intitulé": 20827,
+ "}}(\\": 20828,
+ "▁Rout": 20829,
+ "▁Border": 20830,
+ "▁overrid": 20831,
+ "HOST": 20832,
+ "ritten": 20833,
+ "say": 20834,
+ "▁Чи": 20835,
+ "ichtung": 20836,
+ "▁straightforward": 20837,
+ "obb": 20838,
+ "▁Terra": 20839,
+ "▁[:": 20840,
+ "Ben": 20841,
+ "▁composite": 20842,
+ ")+\\": 20843,
+ "▁crown": 20844,
+ "direction": 20845,
+ "▁несколько": 20846,
+ "▁avail": 20847,
+ "▁purchased": 20848,
+ "hook": 20849,
+ "eties": 20850,
+ "▁fase": 20851,
+ "▁Rum": 20852,
+ "▁genom": 20853,
+ "▁dét": 20854,
+ "ową": 20855,
+ "mpeg": 20856,
+ "▁Ін": 20857,
+ "desktop": 20858,
+ "▁injection": 20859,
+ "agle": 20860,
+ "▁Edd": 20861,
+ "_{(": 20862,
+ "▁Hem": 20863,
+ "utos": 20864,
+ "proj": 20865,
+ "▁superficie": 20866,
+ "Plot": 20867,
+ "▁Docker": 20868,
+ "ätz": 20869,
+ "kreich": 20870,
+ "▁unclear": 20871,
+ "▁Unity": 20872,
+ "▁streams": 20873,
+ "вид": 20874,
+ "▁simplified": 20875,
+ "Fill": 20876,
+ "▁sant": 20877,
+ "▁Kommun": 20878,
+ "▁duc": 20879,
+ "▁две": 20880,
+ "▁obs": 20881,
+ "žit": 20882,
+ "▁Janeiro": 20883,
+ "бя": 20884,
+ "▁presso": 20885,
+ "▁Ministry": 20886,
+ "▁burst": 20887,
+ "▁reaching": 20888,
+ "liter": 20889,
+ "▁responses": 20890,
+ "▁Eug": 20891,
+ "▁sod": 20892,
+ "▁Cord": 20893,
+ "▁Perm": 20894,
+ "parts": 20895,
+ "цима": 20896,
+ "variables": 20897,
+ "▁forgotten": 20898,
+ "Fern": 20899,
+ "ostęp": 20900,
+ "vl": 20901,
+ "▁См": 20902,
+ "kim": 20903,
+ "ając": 20904,
+ "наль": 20905,
+ "гле": 20906,
+ "helper": 20907,
+ "dup": 20908,
+ "euw": 20909,
+ "fra": 20910,
+ "ellite": 20911,
+ "anya": 20912,
+ "▁reign": 20913,
+ "gesamt": 20914,
+ "седа": 20915,
+ "▁Ryan": 20916,
+ "▁formatted": 20917,
+ "▁Borg": 20918,
+ "walk": 20919,
+ "▁ал": 20920,
+ "agnostics": 20921,
+ "▁Cape": 20922,
+ "▁Franco": 20923,
+ "▁fug": 20924,
+ ":)": 20925,
+ "юз": 20926,
+ "Fetch": 20927,
+ "▁roughly": 20928,
+ "▁Mis": 20929,
+ "uetooth": 20930,
+ "▁Venezuela": 20931,
+ "▁astronom": 20932,
+ "\")`": 20933,
+ "ombres": 20934,
+ "▁которой": 20935,
+ "óp": 20936,
+ "owed": 20937,
+ "HR": 20938,
+ "▁Camer": 20939,
+ "кие": 20940,
+ "parison": 20941,
+ "▁Bij": 20942,
+ "templates": 20943,
+ "environment": 20944,
+ "ização": 20945,
+ "▁ér": 20946,
+ "▁plenty": 20947,
+ "▁TypeError": 20948,
+ "▁forty": 20949,
+ "коном": 20950,
+ "▁Sed": 20951,
+ "▁thats": 20952,
+ "▁gravity": 20953,
+ "▁spiritual": 20954,
+ "▁duplicates": 20955,
+ "▁encryption": 20956,
+ "▁reven": 20957,
+ "getInstance": 20958,
+ "ällor": 20959,
+ "disk": 20960,
+ "▁thro": 20961,
+ "▁Nak": 20962,
+ "▁poł": 20963,
+ "▁heraus": 20964,
+ "invalid": 20965,
+ "sBy": 20966,
+ "Boot": 20967,
+ "▁bucket": 20968,
+ "▁Parse": 20969,
+ "hex": 20970,
+ "Conne": 20971,
+ "▁Computer": 20972,
+ "zyk": 20973,
+ "▁induced": 20974,
+ "▁Bruno": 20975,
+ "▁addressed": 20976,
+ "mania": 20977,
+ "▁inclus": 20978,
+ "ounced": 20979,
+ "scriptsize": 20980,
+ "▁Epis": 20981,
+ "▁vocal": 20982,
+ "▁Jonathan": 20983,
+ "ум": 20984,
+ "staden": 20985,
+ "▁Children": 20986,
+ "пей": 20987,
+ "Italia": 20988,
+ "reibung": 20989,
+ "▁nost": 20990,
+ "▁ещё": 20991,
+ "▁Werke": 20992,
+ "▁actress": 20993,
+ "▁Minnesota": 20994,
+ "rike": 20995,
+ "▁tek": 20996,
+ "▁primeira": 20997,
+ "▁frat": 20998,
+ "▁Configuration": 20999,
+ "▁bid": 21000,
+ "trigger": 21001,
+ "Contents": 21002,
+ "▁constantly": 21003,
+ "!!!": 21004,
+ "▁dread": 21005,
+ "▁hundreds": 21006,
+ "istische": 21007,
+ "▁cardinal": 21008,
+ "TABLE": 21009,
+ "▁estos": 21010,
+ "assoc": 21011,
+ "gray": 21012,
+ "▁Schloss": 21013,
+ "▁sche": 21014,
+ "cong": 21015,
+ "▁koji": 21016,
+ "ètes": 21017,
+ "▁Era": 21018,
+ "omi": 21019,
+ "▁SR": 21020,
+ "▁wrapped": 21021,
+ "▁trunc": 21022,
+ "▁ah": 21023,
+ "egos": 21024,
+ "oki": 21025,
+ "mouth": 21026,
+ "logging": 21027,
+ "▁fasc": 21028,
+ "▁Sample": 21029,
+ "▁conte": 21030,
+ "▁villa": 21031,
+ "comments": 21032,
+ "▁batal": 21033,
+ "▁García": 21034,
+ "▁Norte": 21035,
+ "▁wechsel": 21036,
+ "▁Museo": 21037,
+ "▁enfants": 21038,
+ "▁whisper": 21039,
+ "nake": 21040,
+ "▁jednak": 21041,
+ "lês": 21042,
+ "enders": 21043,
+ "▁äl": 21044,
+ "▁VB": 21045,
+ "▁cookies": 21046,
+ "zeti": 21047,
+ "atum": 21048,
+ "▁dedu": 21049,
+ "▁arranged": 21050,
+ "laz": 21051,
+ "▁cuenta": 21052,
+ "yml": 21053,
+ "▁flav": 21054,
+ "MR": 21055,
+ "emet": 21056,
+ "біль": 21057,
+ "cmp": 21058,
+ "ituto": 21059,
+ "zett": 21060,
+ "▁envi": 21061,
+ "▁kot": 21062,
+ "$:": 21063,
+ "upper": 21064,
+ "▁Alberto": 21065,
+ "kb": 21066,
+ "Anal": 21067,
+ "ört": 21068,
+ "▁[-": 21069,
+ "▁führte": 21070,
+ "iah": 21071,
+ "▁Tun": 21072,
+ "▁искус": 21073,
+ "uwe": 21074,
+ "ispecies": 21075,
+ "Pub": 21076,
+ "Sync": 21077,
+ "▁Colombia": 21078,
+ "akers": 21079,
+ "▁Imperial": 21080,
+ "oving": 21081,
+ "▁intelligence": 21082,
+ "▁equipment": 21083,
+ "ein": 21084,
+ "dagger": 21085,
+ "▁Edge": 21086,
+ "▁Республи": 21087,
+ "adratkilometer": 21088,
+ "▁Anto": 21089,
+ "▁charges": 21090,
+ "▁Ocean": 21091,
+ "▁simplify": 21092,
+ "▁miesz": 21093,
+ "running": 21094,
+ "▁Lac": 21095,
+ "genommen": 21096,
+ "▁representative": 21097,
+ "=.": 21098,
+ "▁Pred": 21099,
+ "▁spite": 21100,
+ "ciale": 21101,
+ "▁nave": 21102,
+ "▁extens": 21103,
+ "▁neutral": 21104,
+ "▁которая": 21105,
+ ".": 21106,
+ "▁CS": 21107,
+ "uky": 21108,
+ "▁whilst": 21109,
+ "▁lingu": 21110,
+ "extract": 21111,
+ "zeichnung": 21112,
+ "▁Feld": 21113,
+ "▁valuable": 21114,
+ "urable": 21115,
+ "▁Jen": 21116,
+ "▁struggle": 21117,
+ "▁committee": 21118,
+ "▁Wohn": 21119,
+ "▁sqlite": 21120,
+ "▁Temp": 21121,
+ "▁COUNT": 21122,
+ "consin": 21123,
+ "міні": 21124,
+ "usage": 21125,
+ "▁quest": 21126,
+ "дян": 21127,
+ "eared": 21128,
+ "▁Schne": 21129,
+ "▁dod": 21130,
+ "▁recht": 21131,
+ "▁kao": 21132,
+ "Capt": 21133,
+ "labels": 21134,
+ "▁ellos": 21135,
+ "▁industri": 21136,
+ "▁Colorado": 21137,
+ "▁contrary": 21138,
+ "▁Dum": 21139,
+ "Bel": 21140,
+ "▁Vent": 21141,
+ "▁authorities": 21142,
+ "YES": 21143,
+ "ensed": 21144,
+ "umbnail": 21145,
+ "izzazione": 21146,
+ "kou": 21147,
+ "rica": 21148,
+ "▁sect": 21149,
+ "tests": 21150,
+ "▁Klein": 21151,
+ "▁legs": 21152,
+ "▁Pietro": 21153,
+ "fu": 21154,
+ "thy": 21155,
+ "▁bast": 21156,
+ "▁tedes": 21157,
+ "ettes": 21158,
+ "▁repet": 21159,
+ "acre": 21160,
+ "retto": 21161,
+ "▁remainder": 21162,
+ "▁Geg": 21163,
+ "▁Гор": 21164,
+ "▁Rechts": 21165,
+ "▁filtering": 21166,
+ "ouss": 21167,
+ "▁deployed": 21168,
+ "▁prüfe": 21169,
+ "▁bitmap": 21170,
+ "▁sovi": 21171,
+ "▁<%=": 21172,
+ "▁entferne": 21173,
+ "kill": 21174,
+ "tabs": 21175,
+ "Expr": 21176,
+ "кому": 21177,
+ "▁Republican": 21178,
+ "▁Size": 21179,
+ "▁poll": 21180,
+ "▁rien": 21181,
+ "▁клуб": 21182,
+ "énd": 21183,
+ "▁Bio": 21184,
+ "▁perl": 21185,
+ "▁Andreas": 21186,
+ "вин": 21187,
+ "▁distant": 21188,
+ "▁Finn": 21189,
+ "▁Mitch": 21190,
+ "▁%{": 21191,
+ "▁charm": 21192,
+ "▁Mul": 21193,
+ "perate": 21194,
+ "▁sciences": 21195,
+ "▁monot": 21196,
+ "▁debido": 21197,
+ "rizona": 21198,
+ "iec": 21199,
+ "▁alarm": 21200,
+ "▁promoted": 21201,
+ "▁letzten": 21202,
+ "atin": 21203,
+ "▁conclus": 21204,
+ "herr": 21205,
+ "▁éch": 21206,
+ "edish": 21207,
+ "gor": 21208,
+ "▁stycz": 21209,
+ "▁impress": 21210,
+ "ruits": 21211,
+ "ierungs": 21212,
+ "▁parsed": 21213,
+ "▁río": 21214,
+ "▁Pakistan": 21215,
+ "igner": 21216,
+ "▁watching": 21217,
+ "▁databases": 21218,
+ "eding": 21219,
+ "▁Specific": 21220,
+ "▁generale": 21221,
+ "lax": 21222,
+ "▁Looking": 21223,
+ "▁bond": 21224,
+ "▁vista": 21225,
+ "▁ec": 21226,
+ "▁grud": 21227,
+ "▁deleting": 21228,
+ "tac": 21229,
+ "▁jazz": 21230,
+ "jm": 21231,
+ "▁pół": 21232,
+ "Language": 21233,
+ "delegate": 21234,
+ "▁registry": 21235,
+ "▁Shared": 21236,
+ "строй": 21237,
+ "Music": 21238,
+ "▁vessel": 21239,
+ ".@": 21240,
+ "▁Wür": 21241,
+ "▁fed": 21242,
+ "▁eredet": 21243,
+ "▁Gö": 21244,
+ "upt": 21245,
+ "▁pleasant": 21246,
+ "▁tableView": 21247,
+ "▁counting": 21248,
+ "▁Kriegs": 21249,
+ "▁получил": 21250,
+ "▁],": 21251,
+ "виа": 21252,
+ "▁až": 21253,
+ "ToList": 21254,
+ "▁Advent": 21255,
+ "▁sketch": 21256,
+ "pn": 21257,
+ "▁sier": 21258,
+ "▁находится": 21259,
+ "iop": 21260,
+ "▁ly": 21261,
+ "▁Schl": 21262,
+ "Contract": 21263,
+ "associ": 21264,
+ "▁Pear": 21265,
+ "▁whe": 21266,
+ "▁Delete": 21267,
+ "▁elem": 21268,
+ "ätte": 21269,
+ "▁česk": 21270,
+ "▁MC": 21271,
+ "▁shout": 21272,
+ "akespe": 21273,
+ "▁defaults": 21274,
+ "penas": 21275,
+ "òria": 21276,
+ "▁hierarchy": 21277,
+ "ipt": 21278,
+ "▁Elis": 21279,
+ "likely": 21280,
+ "Rot": 21281,
+ "▁cow": 21282,
+ "▁strike": 21283,
+ "▁березня": 21284,
+ "▁ensemble": 21285,
+ "▁Pseud": 21286,
+ "Virtual": 21287,
+ "▁її": 21288,
+ "ROOT": 21289,
+ "сия": 21290,
+ "▁соб": 21291,
+ "▁invert": 21292,
+ "▁switching": 21293,
+ "htaccess": 21294,
+ "▁награ": 21295,
+ "▁Norman": 21296,
+ "▁inglês": 21297,
+ "![": 21298,
+ "ousel": 21299,
+ "DOCTYPE": 21300,
+ "▁suppress": 21301,
+ "▁accompanied": 21302,
+ "▁Bé": 21303,
+ "implies": 21304,
+ "nut": 21305,
+ "▁Syntax": 21306,
+ "inho": 21307,
+ "▁tam": 21308,
+ "▁focused": 21309,
+ "avano": 21310,
+ "▁Baden": 21311,
+ "had": 21312,
+ "▁({": 21313,
+ "Ty": 21314,
+ "▁рос": 21315,
+ "▁чолові": 21316,
+ "oge": 21317,
+ "jsp": 21318,
+ "Blue": 21319,
+ "▁suas": 21320,
+ "apers": 21321,
+ "Short": 21322,
+ "Renderer": 21323,
+ "▁sendo": 21324,
+ "▁Cec": 21325,
+ "▁`__": 21326,
+ "▁Municipal": 21327,
+ "dotnet": 21328,
+ "▁bev": 21329,
+ "▁DA": 21330,
+ "MenuItem": 21331,
+ "▁amp": 21332,
+ "▁uri": 21333,
+ "▁fier": 21334,
+ "слен": 21335,
+ "),(": 21336,
+ "cules": 21337,
+ "illas": 21338,
+ "LOCK": 21339,
+ "▁derive": 21340,
+ "uben": 21341,
+ "▁GT": 21342,
+ "▁Mack": 21343,
+ "▁scholar": 21344,
+ ")}}": 21345,
+ "зм": 21346,
+ ">::": 21347,
+ "шёл": 21348,
+ "▁principales": 21349,
+ "▁цар": 21350,
+ "▁tied": 21351,
+ "▁alta": 21352,
+ "▁Cit": 21353,
+ "lined": 21354,
+ "major": 21355,
+ "▁punk": 21356,
+ "▁cinco": 21357,
+ "ický": 21358,
+ "▁raggi": 21359,
+ "typen": 21360,
+ "тельство": 21361,
+ "▁conference": 21362,
+ "▁сіль": 21363,
+ "▁heut": 21364,
+ "iš": 21365,
+ "ета": 21366,
+ "velope": 21367,
+ "hbox": 21368,
+ "nown": 21369,
+ "▁zar": 21370,
+ "ktiv": 21371,
+ "ieß": 21372,
+ "▁стре": 21373,
+ "▁EventArgs": 21374,
+ "▁Ira": 21375,
+ "▁VBA": 21376,
+ "▁Santo": 21377,
+ "▁Fach": 21378,
+ "▁FF": 21379,
+ "▁Raymond": 21380,
+ "мец": 21381,
+ "implementation": 21382,
+ "▁brothers": 21383,
+ "▁côté": 21384,
+ "▁controllers": 21385,
+ "▁Cle": 21386,
+ "▁cable": 21387,
+ "▁confer": 21388,
+ "▁{-": 21389,
+ "▁czł": 21390,
+ "▁Filip": 21391,
+ "atorio": 21392,
+ "▁wicht": 21393,
+ "▁beaucoup": 21394,
+ "▁Lit": 21395,
+ "▁sessions": 21396,
+ "▁Success": 21397,
+ "▁routing": 21398,
+ "niu": 21399,
+ "▁Vice": 21400,
+ "▁krit": 21401,
+ "updated": 21402,
+ "▁Invalid": 21403,
+ "▁Mannschaft": 21404,
+ "▁aos": 21405,
+ "▁tudi": 21406,
+ "▁després": 21407,
+ "qua": 21408,
+ "Contains": 21409,
+ "Company": 21410,
+ "▁persona": 21411,
+ "adapter": 21412,
+ "сни": 21413,
+ "▁voj": 21414,
+ "▁escri": 21415,
+ "agt": 21416,
+ "▁ство": 21417,
+ "▁distrito": 21418,
+ "apan": 21419,
+ "▁aspects": 21420,
+ "▁zal": 21421,
+ ")^{\\": 21422,
+ "▁système": 21423,
+ "▁ана": 21424,
+ "iums": 21425,
+ "▁premiers": 21426,
+ "▁поэ": 21427,
+ "▁mère": 21428,
+ "▁Gun": 21429,
+ "aping": 21430,
+ "▁Rain": 21431,
+ "▁igual": 21432,
+ "▁processor": 21433,
+ "')`": 21434,
+ "bling": 21435,
+ "▁mism": 21436,
+ "bráz": 21437,
+ "▁closest": 21438,
+ "▁Reading": 21439,
+ "▁попу": 21440,
+ "cono": 21441,
+ "▁kult": 21442,
+ "▁!!": 21443,
+ "▁Expression": 21444,
+ "▁induction": 21445,
+ "ahren": 21446,
+ "▁cp": 21447,
+ "▁violence": 21448,
+ "ientí": 21449,
+ "cente": 21450,
+ "▁Dob": 21451,
+ "jack": 21452,
+ "song": 21453,
+ "bucket": 21454,
+ "▁deport": 21455,
+ "кими": 21456,
+ "lm": 21457,
+ "▁innoc": 21458,
+ "Changes": 21459,
+ "▁prohib": 21460,
+ "angol": 21461,
+ "iseconds": 21462,
+ "▁пор": 21463,
+ "▁hip": 21464,
+ "▁pů": 21465,
+ "endorf": 21466,
+ "▁scheduled": 21467,
+ "▁Flug": 21468,
+ "acyj": 21469,
+ "▁Films": 21470,
+ "athedral": 21471,
+ "Power": 21472,
+ "ardin": 21473,
+ "kap": 21474,
+ "icken": 21475,
+ "resize": 21476,
+ "eus": 21477,
+ "rr": 21478,
+ "лян": 21479,
+ "▁Hav": 21480,
+ "▁ora": 21481,
+ "FROM": 21482,
+ "лося": 21483,
+ "▁terug": 21484,
+ "▁Width": 21485,
+ "▁accepts": 21486,
+ "бен": 21487,
+ "▁mich": 21488,
+ "▁Czech": 21489,
+ "▁Bedeut": 21490,
+ "▁вид": 21491,
+ "ôme": 21492,
+ "▁Loop": 21493,
+ "spect": 21494,
+ "ük": 21495,
+ "eston": 21496,
+ "▁slot": 21497,
+ "▁została": 21498,
+ "▁Charlotte": 21499,
+ "▁составляет": 21500,
+ "▁Promise": 21501,
+ "▁epo": 21502,
+ "▁diction": 21503,
+ "▁Franklin": 21504,
+ "▁Riv": 21505,
+ "руг": 21506,
+ "cida": 21507,
+ "▁Explorer": 21508,
+ "cookie": 21509,
+ "▁formerly": 21510,
+ "▁municipality": 21511,
+ "▁Stefan": 21512,
+ "lists": 21513,
+ "COMP": 21514,
+ "Len": 21515,
+ "▁Staat": 21516,
+ "▁NBA": 21517,
+ "dens": 21518,
+ "▁oscill": 21519,
+ "!.": 21520,
+ "▁PO": 21521,
+ "ône": 21522,
+ "eses": 21523,
+ "▁националь": 21524,
+ "voor": 21525,
+ "▁копи": 21526,
+ "▁пози": 21527,
+ "ulu": 21528,
+ "Constraint": 21529,
+ "▁своей": 21530,
+ "▁algebraic": 21531,
+ "чня": 21532,
+ "Dict": 21533,
+ "▁appearing": 21534,
+ "▁prav": 21535,
+ "▁Universal": 21536,
+ "Browser": 21537,
+ "▁Singap": 21538,
+ "ennessee": 21539,
+ "]_": 21540,
+ "▁Sof": 21541,
+ "▁Cad": 21542,
+ "ounce": 21543,
+ "▁costs": 21544,
+ "]{\\": 21545,
+ "../../": 21546,
+ "ській": 21547,
+ "ühl": 21548,
+ "iety": 21549,
+ "пр": 21550,
+ "▁interpreted": 21551,
+ "ajn": 21552,
+ "colog": 21553,
+ "YS": 21554,
+ "mans": 21555,
+ "▁metrics": 21556,
+ "▁registr": 21557,
+ "istance": 21558,
+ "▁Поль": 21559,
+ "▁anonymous": 21560,
+ "▁institutions": 21561,
+ "▁zdob": 21562,
+ "prüng": 21563,
+ "▁арти": 21564,
+ "▁estat": 21565,
+ "acci": 21566,
+ "▁academic": 21567,
+ "▁chiesa": 21568,
+ "▁Gian": 21569,
+ "contrib": 21570,
+ "umed": 21571,
+ "▁Gir": 21572,
+ "▁baseball": 21573,
+ "numeric": 21574,
+ "Generator": 21575,
+ "GM": 21576,
+ "▁tiny": 21577,
+ "▁distinction": 21578,
+ "гер": 21579,
+ "▁rust": 21580,
+ "▁FIFA": 21581,
+ "▁Properties": 21582,
+ "^-": 21583,
+ "▁экс": 21584,
+ "▁Stanis": 21585,
+ "▁Ajax": 21586,
+ "escape": 21587,
+ "▁consp": 21588,
+ "▁Chen": 21589,
+ "▁Naval": 21590,
+ "Bit": 21591,
+ "▁bât": 21592,
+ "скими": 21593,
+ "drive": 21594,
+ "▁Round": 21595,
+ "photo": 21596,
+ "▁Level": 21597,
+ "▁geg": 21598,
+ "Tom": 21599,
+ "▁Mobile": 21600,
+ "▁Trop": 21601,
+ "Direction": 21602,
+ "isan": 21603,
+ ")^{-": 21604,
+ "▁Setting": 21605,
+ "▁Probably": 21606,
+ "лья": 21607,
+ "▁assets": 21608,
+ "▁atte": 21609,
+ "▁bulk": 21610,
+ "ést": 21611,
+ "▁wing": 21612,
+ "nius": 21613,
+ "▁wins": 21614,
+ "▁lud": 21615,
+ "ushing": 21616,
+ "▁deven": 21617,
+ "ограф": 21618,
+ "burger": 21619,
+ "▁embar": 21620,
+ "FilterChain": 21621,
+ "▁tum": 21622,
+ "▁öss": 21623,
+ "▁nommé": 21624,
+ "▁pir": 21625,
+ "▁luc": 21626,
+ "dbo": 21627,
+ "agues": 21628,
+ "▁alcan": 21629,
+ "ouwen": 21630,
+ "▁Stanley": 21631,
+ "циали": 21632,
+ "▁grown": 21633,
+ "▁preserved": 21634,
+ "▁solar": 21635,
+ "▁Население": 21636,
+ "▁performances": 21637,
+ "▁Cow": 21638,
+ "▁engineering": 21639,
+ "▁scaling": 21640,
+ "atomic": 21641,
+ "endance": 21642,
+ "▁ace": 21643,
+ "ängen": 21644,
+ "Anim": 21645,
+ "phase": 21646,
+ "zburg": 21647,
+ "Old": 21648,
+ "▁servant": 21649,
+ "▁gemeins": 21650,
+ "▁Observ": 21651,
+ "translate": 21652,
+ "▁covering": 21653,
+ "▁están": 21654,
+ "▁problema": 21655,
+ "▁установ": 21656,
+ "▁llev": 21657,
+ "▁czerw": 21658,
+ "éal": 21659,
+ "mez": 21660,
+ "REE": 21661,
+ "ERR": 21662,
+ "тури": 21663,
+ "segu": 21664,
+ "▁profit": 21665,
+ "▁multiplication": 21666,
+ "kommen": 21667,
+ "▁faut": 21668,
+ "▁candidates": 21669,
+ "▁Uri": 21670,
+ "▁Laura": 21671,
+ "▁sap": 21672,
+ "▁висини": 21673,
+ "▁Between": 21674,
+ "fade": 21675,
+ "▁reserved": 21676,
+ "▁involving": 21677,
+ "▁Mare": 21678,
+ "▁Container": 21679,
+ "▁назна": 21680,
+ "▁DEBUG": 21681,
+ "▁hurt": 21682,
+ "▁Polski": 21683,
+ "▁lux": 21684,
+ "CB": 21685,
+ "wach": 21686,
+ "▁период": 21687,
+ "▁Catherine": 21688,
+ "▁ganz": 21689,
+ "uchte": 21690,
+ "▁consumer": 21691,
+ "▁crossed": 21692,
+ "ordered": 21693,
+ "away": 21694,
+ "techn": 21695,
+ "▁subscri": 21696,
+ "▁shortcut": 21697,
+ "▁производ": 21698,
+ "▁simultaneously": 21699,
+ "▁rating": 21700,
+ "▁Kings": 21701,
+ "▁relationships": 21702,
+ "▁Sex": 21703,
+ "▁Tool": 21704,
+ "agh": 21705,
+ "acters": 21706,
+ "logger": 21707,
+ "homme": 21708,
+ "engers": 21709,
+ "▁Ri": 21710,
+ "earance": 21711,
+ "▁appearances": 21712,
+ "Real": 21713,
+ "▁passe": 21714,
+ "iclopedia": 21715,
+ "чко": 21716,
+ "terre": 21717,
+ "▁Ontario": 21718,
+ "▁переда": 21719,
+ "footer": 21720,
+ "archivi": 21721,
+ "ifiz": 21722,
+ "▁Protest": 21723,
+ "▁LIN": 21724,
+ "unnable": 21725,
+ "▁centuries": 21726,
+ "▁Bayer": 21727,
+ "цію": 21728,
+ "овин": 21729,
+ "▁Andrea": 21730,
+ "selection": 21731,
+ "▁calm": 21732,
+ "▁modification": 21733,
+ "▁shortly": 21734,
+ "inaire": 21735,
+ "▁fusion": 21736,
+ "▁feelings": 21737,
+ "PK": 21738,
+ "▁Roberto": 21739,
+ "гне": 21740,
+ "Shared": 21741,
+ "▁mehrere": 21742,
+ "▁Niem": 21743,
+ "omp": 21744,
+ "Env": 21745,
+ "▁Article": 21746,
+ "▁Pok": 21747,
+ "▁VARCHAR": 21748,
+ "▁dil": 21749,
+ "▁afford": 21750,
+ "▁confront": 21751,
+ "owanie": 21752,
+ "▁ministre": 21753,
+ "adesh": 21754,
+ "▁Poly": 21755,
+ "▁Распо": 21756,
+ "▁Gruppe": 21757,
+ "▁Helen": 21758,
+ "▁cc": 21759,
+ "▁portrait": 21760,
+ "bew": 21761,
+ "▁beta": 21762,
+ "▁Wir": 21763,
+ "▁Audio": 21764,
+ "▁(\\<": 21765,
+ "riority": 21766,
+ "▁nit": 21767,
+ "▁представи": 21768,
+ "▁Vie": 21769,
+ "▁wür": 21770,
+ "▁Hold": 21771,
+ "▁Sad": 21772,
+ "▁Tochter": 21773,
+ "▁oltre": 21774,
+ "▁Activ": 21775,
+ "▁Jason": 21776,
+ "▁wieku": 21777,
+ "▁regards": 21778,
+ "▁taste": 21779,
+ "agnostic": 21780,
+ "лася": 21781,
+ "▁Self": 21782,
+ "▁apr": 21783,
+ "▁Deep": 21784,
+ "scop": 21785,
+ "Activ": 21786,
+ "▁typedef": 21787,
+ "ContentView": 21788,
+ "compiler": 21789,
+ "▁Roth": 21790,
+ "xc": 21791,
+ "зик": 21792,
+ "▁largo": 21793,
+ "▁Rena": 21794,
+ "heiten": 21795,
+ "▁platforms": 21796,
+ "ulla": 21797,
+ "▁glance": 21798,
+ "▁mascul": 21799,
+ "▁mex": 21800,
+ "▁Jorge": 21801,
+ "▁funcion": 21802,
+ "choose": 21803,
+ "▁reviews": 21804,
+ "▁Alban": 21805,
+ "▁Glo": 21806,
+ "▁Species": 21807,
+ "▁Fame": 21808,
+ "▁Roll": 21809,
+ "▁Puerto": 21810,
+ "▁\\)": 21811,
+ "ymnas": 21812,
+ "environ": 21813,
+ "▁iphone": 21814,
+ "▁Wrestling": 21815,
+ "ały": 21816,
+ "▁Indiana": 21817,
+ "Radio": 21818,
+ "VS": 21819,
+ "▁independence": 21820,
+ "тай": 21821,
+ "▁decode": 21822,
+ "White": 21823,
+ "▁journ": 21824,
+ "ículo": 21825,
+ "▁Barb": 21826,
+ "▁Evangel": 21827,
+ "▁Andy": 21828,
+ "▁Welcome": 21829,
+ "▁Device": 21830,
+ "gef": 21831,
+ "▁remembered": 21832,
+ "▁variations": 21833,
+ "▁Adolf": 21834,
+ "itaine": 21835,
+ "▁надморској": 21836,
+ "▁steam": 21837,
+ "▁concerns": 21838,
+ "▁`|": 21839,
+ "▁био": 21840,
+ "тельства": 21841,
+ "▁quattro": 21842,
+ "extend": 21843,
+ "▁trabajo": 21844,
+ "enberg": 21845,
+ "▁scenarios": 21846,
+ "ânt": 21847,
+ "▁kommt": 21848,
+ "▁domestic": 21849,
+ "▁Basketball": 21850,
+ "▁Cooper": 21851,
+ "sock": 21852,
+ "держа": 21853,
+ "={\\": 21854,
+ "▁inici": 21855,
+ "▁Phill": 21856,
+ "▁генерал": 21857,
+ "archiviato": 21858,
+ "ън": 21859,
+ "Rob": 21860,
+ "▁tong": 21861,
+ "▁characteristics": 21862,
+ "▁amaz": 21863,
+ "▁Mode": 21864,
+ "▁inaugur": 21865,
+ "wehr": 21866,
+ "rant": 21867,
+ "ionali": 21868,
+ "▁Mother": 21869,
+ "Ma": 21870,
+ "équ": 21871,
+ "▁Kelly": 21872,
+ "cile": 21873,
+ "▁besteht": 21874,
+ "▁estimates": 21875,
+ "ruguay": 21876,
+ "▁Ans": 21877,
+ "Mad": 21878,
+ "▁нав": 21879,
+ "▁données": 21880,
+ "▁tropical": 21881,
+ "▁Several": 21882,
+ "elter": 21883,
+ "▁Pho": 21884,
+ "kem": 21885,
+ "▁Customer": 21886,
+ "▁складі": 21887,
+ "▁courses": 21888,
+ "Platform": 21889,
+ "navbar": 21890,
+ "learning": 21891,
+ "▁Swedish": 21892,
+ "▁zast": 21893,
+ "▁Lig": 21894,
+ "management": 21895,
+ "▁lod": 21896,
+ "uffle": 21897,
+ "Texture": 21898,
+ "arga": 21899,
+ "átum": 21900,
+ "▁DDR": 21901,
+ "нії": 21902,
+ "▁Société": 21903,
+ "▁domains": 21904,
+ "▁permitted": 21905,
+ "▁externe": 21906,
+ "▁quelque": 21907,
+ "vt": 21908,
+ "yman": 21909,
+ "▁Ward": 21910,
+ "▁agli": 21911,
+ "▁andra": 21912,
+ "Snapshot": 21913,
+ "▁må": 21914,
+ "▁yeah": 21915,
+ "дена": 21916,
+ "ępu": 21917,
+ "askell": 21918,
+ "▁République": 21919,
+ "inject": 21920,
+ "▁';": 21921,
+ "änn": 21922,
+ "▁zelf": 21923,
+ "▁Entwicklung": 21924,
+ "ária": 21925,
+ "onomy": 21926,
+ "▁svil": 21927,
+ "iese": 21928,
+ "▁conser": 21929,
+ "▁nim": 21930,
+ "▁rész": 21931,
+ "▁Итали": 21932,
+ "▁partici": 21933,
+ "▁Lion": 21934,
+ "sr": 21935,
+ "always": 21936,
+ "▁Владимир": 21937,
+ "ческие": 21938,
+ "[,": 21939,
+ "▁Definition": 21940,
+ "nant": 21941,
+ "oem": 21942,
+ "Ids": 21943,
+ "▁вне": 21944,
+ "▁[...]": 21945,
+ "▁направ": 21946,
+ "▁GO": 21947,
+ "▁års": 21948,
+ "▁után": 21949,
+ "▁outros": 21950,
+ "▁región": 21951,
+ "▁Mong": 21952,
+ "▁filme": 21953,
+ "▁triple": 21954,
+ "▁spons": 21955,
+ "Develop": 21956,
+ "▁outcome": 21957,
+ "▁Bible": 21958,
+ "▁имени": 21959,
+ "Canvas": 21960,
+ "пута": 21961,
+ "curr": 21962,
+ "ások": 21963,
+ "){\\": 21964,
+ "ningar": 21965,
+ "`;": 21966,
+ "▁Flash": 21967,
+ ":#": 21968,
+ "must": 21969,
+ "cpu": 21970,
+ "▁formats": 21971,
+ "Har": 21972,
+ "▁episodio": 21973,
+ "▁Rosa": 21974,
+ "▁dès": 21975,
+ "emit": 21976,
+ "riteria": 21977,
+ "Annotation": 21978,
+ "Flag": 21979,
+ "gmail": 21980,
+ "▁Normal": 21981,
+ "ollary": 21982,
+ "▁foss": 21983,
+ "▁concurrent": 21984,
+ "▁crashes": 21985,
+ "▁виде": 21986,
+ "▁Minor": 21987,
+ "▁Sit": 21988,
+ "▁SN": 21989,
+ "▁scar": 21990,
+ "▁femin": 21991,
+ "▁specification": 21992,
+ "soap": 21993,
+ "▁operate": 21994,
+ "▁principalmente": 21995,
+ "▁aust": 21996,
+ "ibile": 21997,
+ "itime": 21998,
+ "лежа": 21999,
+ "iframe": 22000,
+ "▁concepts": 22001,
+ "▁tack": 22002,
+ "▁viss": 22003,
+ "▁carbon": 22004,
+ "tery": 22005,
+ "▁naming": 22006,
+ "▁Orts": 22007,
+ "idente": 22008,
+ "▁Capit": 22009,
+ "▁expr": 22010,
+ "▁насељу": 22011,
+ "▁Selected": 22012,
+ "▁hinter": 22013,
+ "▁iframe": 22014,
+ "▁zb": 22015,
+ "indexPath": 22016,
+ "coll": 22017,
+ "▁wrześ": 22018,
+ "▁acht": 22019,
+ "▁gradually": 22020,
+ "▁чу": 22021,
+ "зей": 22022,
+ "haft": 22023,
+ "▁tran": 22024,
+ "▁laquelle": 22025,
+ "ytics": 22026,
+ "IDE": 22027,
+ "▁pygame": 22028,
+ "▁Package": 22029,
+ "▁className": 22030,
+ "Bal": 22031,
+ "perl": 22032,
+ "тина": 22033,
+ "Occ": 22034,
+ "▁infrastr": 22035,
+ "▁Champions": 22036,
+ "▁classic": 22037,
+ "▁Raw": 22038,
+ "▁partially": 22039,
+ "▁Ted": 22040,
+ "▁stolet": 22041,
+ "rained": 22042,
+ "WHERE": 22043,
+ "▁vall": 22044,
+ "▁Julia": 22045,
+ "zat": 22046,
+ "▁surrounded": 22047,
+ "SEE": 22048,
+ "▁walking": 22049,
+ "Bad": 22050,
+ "FOR": 22051,
+ "contre": 22052,
+ "▁Palest": 22053,
+ "ático": 22054,
+ "▁engineer": 22055,
+ "▁partners": 22056,
+ "▁Jews": 22057,
+ "ilers": 22058,
+ "▁cerem": 22059,
+ "▁interactions": 22060,
+ "acu": 22061,
+ "sty": 22062,
+ "▁Princess": 22063,
+ "sharp": 22064,
+ "▁Singles": 22065,
+ "▁їх": 22066,
+ "chez": 22067,
+ "Receiver": 22068,
+ "▁patients": 22069,
+ "stringify": 22070,
+ "▁competed": 22071,
+ "bey": 22072,
+ "$;": 22073,
+ "▁Bd": 22074,
+ "hadoop": 22075,
+ "▁División": 22076,
+ "öld": 22077,
+ "▁restricted": 22078,
+ "▁commander": 22079,
+ "▁Highway": 22080,
+ "▁Česk": 22081,
+ "▁myth": 22082,
+ "чан": 22083,
+ "raham": 22084,
+ "▁enqu": 22085,
+ "▁pog": 22086,
+ "▁comuna": 22087,
+ "▁println": 22088,
+ "▁круп": 22089,
+ "▁depois": 22090,
+ "▁seats": 22091,
+ "▁neighb": 22092,
+ "циона": 22093,
+ "agine": 22094,
+ "▁clothes": 22095,
+ "▁Prior": 22096,
+ "Brain": 22097,
+ "FFFF": 22098,
+ "':'": 22099,
+ "features": 22100,
+ "▁filesystem": 22101,
+ "▁singles": 22102,
+ "▁Melbourne": 22103,
+ "▁destruction": 22104,
+ "▁Lyon": 22105,
+ "▁Insel": 22106,
+ "Nav": 22107,
+ "▁Replace": 22108,
+ "▁lé": 22109,
+ "Who": 22110,
+ "▁Estad": 22111,
+ "▁dimensional": 22112,
+ "▁öff": 22113,
+ "▁grands": 22114,
+ "джа": 22115,
+ "plane": 22116,
+ "ності": 22117,
+ "▁Origin": 22118,
+ "WI": 22119,
+ "änner": 22120,
+ "▁Cry": 22121,
+ "ITION": 22122,
+ "▁född": 22123,
+ "▁cultura": 22124,
+ "▁Rank": 22125,
+ "▁vuel": 22126,
+ "▁zag": 22127,
+ "▁Maxim": 22128,
+ "ону": 22129,
+ "()))": 22130,
+ "Raw": 22131,
+ "kirche": 22132,
+ "▁además": 22133,
+ "▁tie": 22134,
+ "▁Style": 22135,
+ "сков": 22136,
+ "istant": 22137,
+ "olph": 22138,
+ "▁Zür": 22139,
+ "▁Info": 22140,
+ "DOM": 22141,
+ "usc": 22142,
+ "nahm": 22143,
+ "▁Федера": 22144,
+ "▁Fot": 22145,
+ "▁specifying": 22146,
+ "▁titolo": 22147,
+ "▁Boys": 22148,
+ "iech": 22149,
+ "Place": 22150,
+ "▁Hoff": 22151,
+ "▁cached": 22152,
+ "валь": 22153,
+ "isher": 22154,
+ "rolling": 22155,
+ "opens": 22156,
+ "▁hr": 22157,
+ "------": 22158,
+ "▁maggior": 22159,
+ "▁transactions": 22160,
+ "▁criminal": 22161,
+ "▁retre": 22162,
+ "▁Campbell": 22163,
+ ")):": 22164,
+ "▁ned": 22165,
+ "Pager": 22166,
+ "▁Hero": 22167,
+ "(__": 22168,
+ "▁uncle": 22169,
+ "▁reaches": 22170,
+ "arto": 22171,
+ "▁hello": 22172,
+ "Preferences": 22173,
+ "▁затем": 22174,
+ "Named": 22175,
+ "▁readers": 22176,
+ "хі": 22177,
+ "kern": 22178,
+ "▁упо": 22179,
+ "кин": 22180,
+ "▁lav": 22181,
+ "▁nob": 22182,
+ "▁secre": 22183,
+ "▁ListView": 22184,
+ "вания": 22185,
+ "▁Mayor": 22186,
+ "borough": 22187,
+ "▁filosof": 22188,
+ "нення": 22189,
+ "фри": 22190,
+ "▁patr": 22191,
+ "FM": 22192,
+ "▁acid": 22193,
+ "▁Salvador": 22194,
+ "▁abb": 22195,
+ "▁Graham": 22196,
+ "policy": 22197,
+ "negative": 22198,
+ "ńskiego": 22199,
+ "▁Heimat": 22200,
+ "▁dazu": 22201,
+ "▁mely": 22202,
+ "▁ride": 22203,
+ "▁duties": 22204,
+ "overy": 22205,
+ "▁Proposition": 22206,
+ "▁Paolo": 22207,
+ "/'": 22208,
+ "▁Mau": 22209,
+ "imenti": 22210,
+ "Saint": 22211,
+ "father": 22212,
+ "▁equilib": 22213,
+ "phony": 22214,
+ "▁clas": 22215,
+ "▁отли": 22216,
+ "▁Buffered": 22217,
+ "rek": 22218,
+ "▁mitt": 22219,
+ "▁Hur": 22220,
+ "▁Harvard": 22221,
+ "▁demonstrate": 22222,
+ "uario": 22223,
+ "▁dolor": 22224,
+ "▁rejected": 22225,
+ "▁Müller": 22226,
+ "▁nac": 22227,
+ "▁Belle": 22228,
+ "▁gathered": 22229,
+ "nr": 22230,
+ "frika": 22231,
+ "öll": 22232,
+ "▁chemical": 22233,
+ "nig": 22234,
+ "▁calc": 22235,
+ "▁DEFAULT": 22236,
+ "▁philosophy": 22237,
+ "▁Laravel": 22238,
+ "▁alignment": 22239,
+ "EV": 22240,
+ "eor": 22241,
+ "▁dzie": 22242,
+ "▁mest": 22243,
+ "▁Io": 22244,
+ "CRE": 22245,
+ "зви": 22246,
+ "▁Medic": 22247,
+ "▁nä": 22248,
+ "▁zab": 22249,
+ "▁Slov": 22250,
+ "utlich": 22251,
+ "▁amplit": 22252,
+ "▁Frankreich": 22253,
+ "▁кіль": 22254,
+ "IND": 22255,
+ "execution": 22256,
+ "▁Karriere": 22257,
+ "dostęp": 22258,
+ "▁réal": 22259,
+ "engo": 22260,
+ "▁severe": 22261,
+ "зма": 22262,
+ "▁турни": 22263,
+ "▁Carter": 22264,
+ "▁Robinson": 22265,
+ "getElementsBy": 22266,
+ "▁prototype": 22267,
+ "▁japon": 22268,
+ "führung": 22269,
+ "▁consegu": 22270,
+ "▁studi": 22271,
+ "▁lire": 22272,
+ "▁schließ": 22273,
+ "▁Buff": 22274,
+ "▁redund": 22275,
+ "▁ern": 22276,
+ "▁myster": 22277,
+ "▁proprio": 22278,
+ "ateful": 22279,
+ "▁Parent": 22280,
+ "▁ladies": 22281,
+ "rack": 22282,
+ "тика": 22283,
+ "enburg": 22284,
+ "▁качестве": 22285,
+ "▁EF": 22286,
+ "▁stam": 22287,
+ "▁nueva": 22288,
+ "▁filtered": 22289,
+ "reten": 22290,
+ "▁Ian": 22291,
+ "▁Matthew": 22292,
+ "kih": 22293,
+ "▁ő": 22294,
+ "▁компози": 22295,
+ "▁forever": 22296,
+ "oires": 22297,
+ ":\\\\": 22298,
+ "▁études": 22299,
+ "▁soup": 22300,
+ "▁pleased": 22301,
+ ")}(": 22302,
+ "▁Stop": 22303,
+ "Setter": 22304,
+ "▁Help": 22305,
+ "▁bars": 22306,
+ "▁ERR": 22307,
+ "▁(?": 22308,
+ "▁poetry": 22309,
+ "▁Util": 22310,
+ "AK": 22311,
+ "▁fick": 22312,
+ "▁IM": 22313,
+ "▁proud": 22314,
+ "носи": 22315,
+ "▁muerte": 22316,
+ "▁Palmarès": 22317,
+ "▁Nas": 22318,
+ "щих": 22319,
+ "▁quer": 22320,
+ "▁apenas": 22321,
+ "]['": 22322,
+ "▁Konst": 22323,
+ "пон": 22324,
+ "▁Schiff": 22325,
+ "▁mp": 22326,
+ "▁благо": 22327,
+ "fram": 22328,
+ "▁household": 22329,
+ "▁tract": 22330,
+ "encoding": 22331,
+ "▁undert": 22332,
+ "▁Aug": 22333,
+ "ован": 22334,
+ "▁Arten": 22335,
+ "▁invoked": 22336,
+ "▁dynast": 22337,
+ "▁fleet": 22338,
+ "чество": 22339,
+ "▁Murray": 22340,
+ "▁gut": 22341,
+ "elihood": 22342,
+ "▁SSH": 22343,
+ "ответ": 22344,
+ "▁personally": 22345,
+ "прия": 22346,
+ "▁financi": 22347,
+ "▁Thompson": 22348,
+ "alu": 22349,
+ "identity": 22350,
+ "▁Grab": 22351,
+ "addle": 22352,
+ "Ét": 22353,
+ "▁Tob": 22354,
+ "▁verlor": 22355,
+ "▁Sainte": 22356,
+ "▁dop": 22357,
+ "▁вере": 22358,
+ "___": 22359,
+ "▁promotion": 22360,
+ "▁-=": 22361,
+ "▁отде": 22362,
+ "▁ambigu": 22363,
+ "ORDER": 22364,
+ "▁Communic": 22365,
+ "▁imply": 22366,
+ "oned": 22367,
+ "cluding": 22368,
+ "▁collision": 22369,
+ "▁fragments": 22370,
+ "scription": 22371,
+ "▁'{": 22372,
+ "лях": 22373,
+ "▁hans": 22374,
+ "ус": 22375,
+ "wire": 22376,
+ "namespace": 22377,
+ "▁sword": 22378,
+ "refresh": 22379,
+ "▁kwam": 22380,
+ "zs": 22381,
+ "commons": 22382,
+ "▁cosa": 22383,
+ "▁regime": 22384,
+ "grep": 22385,
+ "▁dioc": 22386,
+ "▁Contact": 22387,
+ "▁estas": 22388,
+ "▁Stewart": 22389,
+ "▁viele": 22390,
+ "това": 22391,
+ "▁Ran": 22392,
+ "annes": 22393,
+ "iday": 22394,
+ "▁snapshot": 22395,
+ "orrow": 22396,
+ "▁zač": 22397,
+ "▁участие": 22398,
+ "▁promised": 22399,
+ "Assembly": 22400,
+ "▁championship": 22401,
+ "▁Define": 22402,
+ "▁eren": 22403,
+ "▁ново": 22404,
+ "▁thinks": 22405,
+ "Age": 22406,
+ "▁gev": 22407,
+ "varchar": 22408,
+ "ività": 22409,
+ "compos": 22410,
+ "▁Mutter": 22411,
+ "CONT": 22412,
+ "armée": 22413,
+ "agnet": 22414,
+ "▁Brow": 22415,
+ ".—": 22416,
+ "▁Television": 22417,
+ "▁Для": 22418,
+ "▁vm": 22419,
+ "▁ordin": 22420,
+ "▁Михай": 22421,
+ "▁aproxim": 22422,
+ "')->": 22423,
+ "▁zoo": 22424,
+ "ippi": 22425,
+ "▁sino": 22426,
+ "▁Québec": 22427,
+ "rages": 22428,
+ "äck": 22429,
+ "eing": 22430,
+ "arlo": 22431,
+ "pios": 22432,
+ "▁Chan": 22433,
+ "▁elli": 22434,
+ "▁incons": 22435,
+ "gestellt": 22436,
+ "ppers": 22437,
+ "Jean": 22438,
+ "anstalt": 22439,
+ "▁Dance": 22440,
+ "▁toen": 22441,
+ "▁decis": 22442,
+ "▁Резу": 22443,
+ "▁officially": 22444,
+ "ätze": 22445,
+ "▁доро": 22446,
+ "▁enumer": 22447,
+ "▁troisième": 22448,
+ "typ": 22449,
+ "offs": 22450,
+ "боль": 22451,
+ "odn": 22452,
+ "▁Zar": 22453,
+ "▁друго": 22454,
+ "quia": 22455,
+ "▁Nicolas": 22456,
+ "пису": 22457,
+ "▁mob": 22458,
+ "paces": 22459,
+ "нього": 22460,
+ "Alg": 22461,
+ "éroï": 22462,
+ "Errors": 22463,
+ "▁гре": 22464,
+ "▁женщи": 22465,
+ "inch": 22466,
+ "▁Korean": 22467,
+ "▁Apost": 22468,
+ "▁Liver": 22469,
+ "▁elementary": 22470,
+ "▁DI": 22471,
+ "виси": 22472,
+ "▁soil": 22473,
+ "▁DLL": 22474,
+ "▁risp": 22475,
+ "▁Shakespe": 22476,
+ "▁Gaussian": 22477,
+ "▁Kurt": 22478,
+ "Vertex": 22479,
+ "ebol": 22480,
+ "organisation": 22481,
+ "ären": 22482,
+ "▁YES": 22483,
+ "CUR": 22484,
+ "▁началь": 22485,
+ "▁постро": 22486,
+ "▁Luigi": 22487,
+ "▁caching": 22488,
+ "preventDefault": 22489,
+ "amd": 22490,
+ "▁Vit": 22491,
+ "subst": 22492,
+ "▁строи": 22493,
+ "▁Campion": 22494,
+ "chr": 22495,
+ "фере": 22496,
+ "▁Список": 22497,
+ "NF": 22498,
+ "▁cím": 22499,
+ "▁hé": 22500,
+ "rebbe": 22501,
+ "ocy": 22502,
+ "below": 22503,
+ "▁bylo": 22504,
+ "▁Уи": 22505,
+ "▁\\({\\": 22506,
+ "▁`:": 22507,
+ "giore": 22508,
+ "San": 22509,
+ "▁Gate": 22510,
+ "▁вс": 22511,
+ "▁olimp": 22512,
+ "▁Matrix": 22513,
+ "▁hearing": 22514,
+ "rii": 22515,
+ "tfrac": 22516,
+ "▁allemand": 22517,
+ "▁Vue": 22518,
+ "лн": 22519,
+ "▁compiling": 22520,
+ "▁Ens": 22521,
+ "▁investigation": 22522,
+ "▁Ax": 22523,
+ "▁chars": 22524,
+ "▁targets": 22525,
+ "▁loud": 22526,
+ "usement": 22527,
+ "▁Nether": 22528,
+ "commerce": 22529,
+ "IGHT": 22530,
+ "ocoa": 22531,
+ "ifecycle": 22532,
+ "▁Leo": 22533,
+ "priv": 22534,
+ "▁goods": 22535,
+ "adamente": 22536,
+ "Austral": 22537,
+ "▁reboot": 22538,
+ "Gest": 22539,
+ "▁representations": 22540,
+ "ceu": 22541,
+ "▁doctrine": 22542,
+ "cers": 22543,
+ "▁Krak": 22544,
+ "▁advoc": 22545,
+ "▁squadra": 22546,
+ "▁arbeitete": 22547,
+ "üst": 22548,
+ "▁pill": 22549,
+ "Answer": 22550,
+ "▁квіт": 22551,
+ "▁Wa": 22552,
+ "umann": 22553,
+ "▁Dynam": 22554,
+ "Famil": 22555,
+ "▁tennis": 22556,
+ "▁Engineering": 22557,
+ "▁circles": 22558,
+ "▁Maryland": 22559,
+ "▁besta": 22560,
+ "▁bases": 22561,
+ "▁znajdu": 22562,
+ "ктора": 22563,
+ "▁arrest": 22564,
+ "лер": 22565,
+ "▁Gia": 22566,
+ "▁remarkable": 22567,
+ "▁могу": 22568,
+ "▁Supreme": 22569,
+ "▁`%": 22570,
+ "dor": 22571,
+ "▁aujourd": 22572,
+ "▁wis": 22573,
+ "WIDTH": 22574,
+ "▁misma": 22575,
+ "▁fluid": 22576,
+ "▁petite": 22577,
+ "▁Tow": 22578,
+ "Registry": 22579,
+ "emed": 22580,
+ "▁Wisconsin": 22581,
+ "▁Racing": 22582,
+ "▁registration": 22583,
+ "/%": 22584,
+ "third": 22585,
+ "▁monuments": 22586,
+ "чей": 22587,
+ "▁jet": 22588,
+ "▁Urban": 22589,
+ "álva": 22590,
+ "▁milieu": 22591,
+ "▁possess": 22592,
+ "▁germ": 22593,
+ "dependencies": 22594,
+ "▁enemies": 22595,
+ "▁samen": 22596,
+ "▁Werner": 22597,
+ "▁hizo": 22598,
+ "▁td": 22599,
+ "▁yesterday": 22600,
+ "▁Ад": 22601,
+ "▁hasn": 22602,
+ "cellation": 22603,
+ "ování": 22604,
+ "lika": 22605,
+ "Week": 22606,
+ "▁Ing": 22607,
+ "▁Email": 22608,
+ "▁mètres": 22609,
+ "▁OCLC": 22610,
+ "▁amongst": 22611,
+ "▁splend": 22612,
+ "fur": 22613,
+ "antics": 22614,
+ "▁XXX": 22615,
+ "▁группы": 22616,
+ "lach": 22617,
+ "▁cousin": 22618,
+ "▁invariant": 22619,
+ "ђу": 22620,
+ "▁Beispiel": 22621,
+ "▁harder": 22622,
+ "▁bell": 22623,
+ "▁orch": 22624,
+ "tb": 22625,
+ "Footnote": 22626,
+ "regon": 22627,
+ "Martin": 22628,
+ "▁incon": 22629,
+ "▁attacked": 22630,
+ "_{-": 22631,
+ "▁Tras": 22632,
+ "party": 22633,
+ "iteit": 22634,
+ "▁saint": 22635,
+ "rások": 22636,
+ "▁containers": 22637,
+ "Mo": 22638,
+ "▁Sn": 22639,
+ "quantity": 22640,
+ "▁ras": 22641,
+ "▁Canal": 22642,
+ "ccion": 22643,
+ "uvo": 22644,
+ "▁idx": 22645,
+ "typename": 22646,
+ "▁Rugby": 22647,
+ "▁Seems": 22648,
+ "▁transmit": 22649,
+ "▁Präsident": 22650,
+ "зне": 22651,
+ "▁Baker": 22652,
+ "inth": 22653,
+ "▁több": 22654,
+ "verein": 22655,
+ "▁especie": 22656,
+ ",(": 22657,
+ "▁téc": 22658,
+ "▁WITH": 22659,
+ "▁unos": 22660,
+ "▁politics": 22661,
+ "createElement": 22662,
+ "▁stats": 22663,
+ "▁Tennessee": 22664,
+ "▁Bedeutung": 22665,
+ "▁Screen": 22666,
+ "▁Straße": 22667,
+ "anze": 22668,
+ "▁partly": 22669,
+ "manuel": 22670,
+ "olation": 22671,
+ "horizontal": 22672,
+ "érieure": 22673,
+ "ampio": 22674,
+ "▁струк": 22675,
+ "Weight": 22676,
+ "Land": 22677,
+ "poly": 22678,
+ "▁Dak": 22679,
+ "▁Assume": 22680,
+ "\".$": 22681,
+ "▁casi": 22682,
+ "▁gross": 22683,
+ "▁entertain": 22684,
+ "▁década": 22685,
+ "'.$": 22686,
+ "encer": 22687,
+ "▁guaranteed": 22688,
+ "]$.": 22689,
+ "лися": 22690,
+ "▁acceptable": 22691,
+ "raise": 22692,
+ "irus": 22693,
+ "weit": 22694,
+ "▁Ана": 22695,
+ "▁hills": 22696,
+ "ipage": 22697,
+ "BIT": 22698,
+ "▁nucle": 22699,
+ "▁utilis": 22700,
+ "CAA": 22701,
+ "ènes": 22702,
+ "▁Schweiz": 22703,
+ "▁AA": 22704,
+ "ninger": 22705,
+ "▁bands": 22706,
+ "▁tender": 22707,
+ "som": 22708,
+ "Warning": 22709,
+ "▁Bischof": 22710,
+ "▁Arc": 22711,
+ "▁Woman": 22712,
+ "▁transmission": 22713,
+ "чни": 22714,
+ "istre": 22715,
+ "BY": 22716,
+ "▁SI": 22717,
+ "▁Пар": 22718,
+ "▁}).": 22719,
+ "▁presenta": 22720,
+ "▁René": 22721,
+ "▁happiness": 22722,
+ "▁Punk": 22723,
+ "cols": 22724,
+ "▁Desde": 22725,
+ "рёх": 22726,
+ "▁мона": 22727,
+ "▁scratch": 22728,
+ "▁tcp": 22729,
+ "êtes": 22730,
+ "itated": 22731,
+ "▁diferen": 22732,
+ "geh": 22733,
+ "nahmen": 22734,
+ "Пе": 22735,
+ "cki": 22736,
+ "▁Teatro": 22737,
+ "▁Remember": 22738,
+ "▁fright": 22739,
+ "▁Yam": 22740,
+ "western": 22741,
+ "leted": 22742,
+ "▁встре": 22743,
+ "▁település": 22744,
+ "зин": 22745,
+ "▁Quant": 22746,
+ "▁supre": 22747,
+ "ája": 22748,
+ "дія": 22749,
+ "▁carrera": 22750,
+ "kret": 22751,
+ "para": 22752,
+ "▁SUM": 22753,
+ "▁pit": 22754,
+ "źdz": 22755,
+ "éo": 22756,
+ "рення": 22757,
+ "▁Chor": 22758,
+ "▁voix": 22759,
+ "▁executive": 22760,
+ "▁allerdings": 22761,
+ "Maybe": 22762,
+ "▁день": 22763,
+ "▁flying": 22764,
+ "▁parliament": 22765,
+ "ждан": 22766,
+ "▁fram": 22767,
+ "▁жовт": 22768,
+ "▁ugly": 22769,
+ "▁буду": 22770,
+ "igny": 22771,
+ "\\|_{": 22772,
+ "▁bitter": 22773,
+ "sce": 22774,
+ "▁pole": 22775,
+ "Verlag": 22776,
+ "▁totalité": 22777,
+ "▁foundation": 22778,
+ "jt": 22779,
+ "▁slice": 22780,
+ "ifique": 22781,
+ "▁integrate": 22782,
+ "strij": 22783,
+ "▁asympt": 22784,
+ "▁ему": 22785,
+ "▁perturb": 22786,
+ "▁Flow": 22787,
+ "jboss": 22788,
+ "RIG": 22789,
+ "▁Aless": 22790,
+ "XXX": 22791,
+ "▁summ": 22792,
+ "sqlite": 22793,
+ "▁cheer": 22794,
+ "prob": 22795,
+ "▁GPU": 22796,
+ "ził": 22797,
+ "(*)": 22798,
+ "▁induct": 22799,
+ "RAY": 22800,
+ "blatt": 22801,
+ "questa": 22802,
+ "oru": 22803,
+ "▁Inside": 22804,
+ "▁McG": 22805,
+ "▁Nep": 22806,
+ "мп": 22807,
+ "▁inve": 22808,
+ "▁Animal": 22809,
+ "▁sob": 22810,
+ "ított": 22811,
+ "loyment": 22812,
+ "▁bund": 22813,
+ "Station": 22814,
+ "▁BEGIN": 22815,
+ "▁partiellement": 22816,
+ "igg": 22817,
+ "estore": 22818,
+ "▁coinc": 22819,
+ "▁Sommer": 22820,
+ "▁md": 22821,
+ "▁locked": 22822,
+ "mathchar": 22823,
+ "arma": 22824,
+ "pent": 22825,
+ "arium": 22826,
+ "▁ears": 22827,
+ "▁Songs": 22828,
+ "▁similarly": 22829,
+ "▁literally": 22830,
+ "▁inches": 22831,
+ "▁affection": 22832,
+ "lp": 22833,
+ "▁concluded": 22834,
+ "▁муніципалі": 22835,
+ "▁памя": 22836,
+ "estaur": 22837,
+ "▁Josh": 22838,
+ "▁Fritz": 22839,
+ "DBC": 22840,
+ "дён": 22841,
+ "posa": 22842,
+ "▁golden": 22843,
+ "▁pc": 22844,
+ "▁comte": 22845,
+ "▁Ziel": 22846,
+ "▁présente": 22847,
+ "marks": 22848,
+ "igneur": 22849,
+ "▁Drive": 22850,
+ "▁neglect": 22851,
+ "▁rozp": 22852,
+ "▁Five": 22853,
+ "spaces": 22854,
+ "▁Medi": 22855,
+ "▁existed": 22856,
+ "▁była": 22857,
+ "джи": 22858,
+ "▁frente": 22859,
+ "тник": 22860,
+ "odd": 22861,
+ "▁answering": 22862,
+ "bian": 22863,
+ "▁Eugen": 22864,
+ "▁Publications": 22865,
+ "▁Dia": 22866,
+ "lá": 22867,
+ "▁'_": 22868,
+ "▁recuper": 22869,
+ "ому": 22870,
+ "▁Append": 22871,
+ "obar": 22872,
+ "▁employees": 22873,
+ "▁compens": 22874,
+ "emetery": 22875,
+ "▁элект": 22876,
+ "MON": 22877,
+ "olin": 22878,
+ "▁historic": 22879,
+ "his": 22880,
+ "ąd": 22881,
+ "nm": 22882,
+ "▁Goth": 22883,
+ "▁stress": 22884,
+ "▁partecip": 22885,
+ "▁Aw": 22886,
+ "▁sar": 22887,
+ "▁hu": 22888,
+ "▁matplotlib": 22889,
+ "▁Myst": 22890,
+ "();`": 22891,
+ "schein": 22892,
+ "Longrightarrow": 22893,
+ "▁ря": 22894,
+ "▁Isra": 22895,
+ "[^": 22896,
+ "nou": 22897,
+ "▁synd": 22898,
+ "working": 22899,
+ "▁Nation": 22900,
+ "▁Pent": 22901,
+ "▁klass": 22902,
+ "▁applicable": 22903,
+ "▁Diam": 22904,
+ "▁brasile": 22905,
+ "▁pac": 22906,
+ "▁Height": 22907,
+ "Put": 22908,
+ "▁intro": 22909,
+ "▁unusual": 22910,
+ "nas": 22911,
+ "▁Gebäude": 22912,
+ "▁beam": 22913,
+ "▁Rect": 22914,
+ "▁Primera": 22915,
+ "▁haut": 22916,
+ "▁trait": 22917,
+ "prüft": 22918,
+ "inación": 22919,
+ "▁configurations": 22920,
+ "▁gilt": 22921,
+ "▁territoire": 22922,
+ "hez": 22923,
+ "▁alte": 22924,
+ "relative": 22925,
+ "Excel": 22926,
+ "▁Wright": 22927,
+ "GV": 22928,
+ "поли": 22929,
+ "Quant": 22930,
+ "▁gauge": 22931,
+ "▁multiply": 22932,
+ "ASS": 22933,
+ "ственно": 22934,
+ "ану": 22935,
+ "▁jeden": 22936,
+ "▁literary": 22937,
+ "▁Dro": 22938,
+ "▁advise": 22939,
+ "itzen": 22940,
+ "▁disag": 22941,
+ "website": 22942,
+ "▁дія": 22943,
+ "▁observer": 22944,
+ "▁január": 22945,
+ "vě": 22946,
+ "kup": 22947,
+ "▁Ses": 22948,
+ "▁wojew": 22949,
+ "▁stages": 22950,
+ "▁времени": 22951,
+ "łuż": 22952,
+ "нос": 22953,
+ "Download": 22954,
+ "ipo": 22955,
+ "▁graf": 22956,
+ "▁робо": 22957,
+ "▁Nikol": 22958,
+ "▁fic": 22959,
+ "▁joining": 22960,
+ "▁diversos": 22961,
+ "▁LIKE": 22962,
+ "▁Fitz": 22963,
+ "▁dimin": 22964,
+ "▁distrib": 22965,
+ "Sam": 22966,
+ "koz": 22967,
+ "▁alphabet": 22968,
+ "oser": 22969,
+ "OUR": 22970,
+ "uka": 22971,
+ "кая": 22972,
+ "▁steel": 22973,
+ "▁`--": 22974,
+ "▁tener": 22975,
+ "marker": 22976,
+ "▁Heaven": 22977,
+ "newcommand": 22978,
+ "▁prisoners": 22979,
+ "▁Knight": 22980,
+ "▁presents": 22981,
+ "▁questi": 22982,
+ "▁trains": 22983,
+ "opera": 22984,
+ "▁Linear": 22985,
+ "▁ME": 22986,
+ "▁Buc": 22987,
+ "Leg": 22988,
+ "▁agua": 22989,
+ "▁Griff": 22990,
+ "olg": 22991,
+ "dst": 22992,
+ ".\r": 22993,
+ "▁persones": 22994,
+ "Mal": 22995,
+ "бере": 22996,
+ "folge": 22997,
+ "▁acab": 22998,
+ "ctu": 22999,
+ "ptic": 23000,
+ "▁Navigation": 23001,
+ "Russ": 23002,
+ "галь": 23003,
+ "▁Ful": 23004,
+ "▁має": 23005,
+ "чная": 23006,
+ "wner": 23007,
+ "contra": 23008,
+ "▁joueur": 23009,
+ "▁Jess": 23010,
+ "▁renew": 23011,
+ "▁lap": 23012,
+ "▁casting": 23013,
+ "gal": 23014,
+ "▁tématu": 23015,
+ "▁называ": 23016,
+ "зах": 23017,
+ "чне": 23018,
+ ")-\\": 23019,
+ "▁часто": 23020,
+ "}$-": 23021,
+ "▁licz": 23022,
+ "▁emot": 23023,
+ "harm": 23024,
+ "▁occasionally": 23025,
+ "▁horror": 23026,
+ "east": 23027,
+ "▁printer": 23028,
+ "aran": 23029,
+ "▁Mississ": 23030,
+ "follow": 23031,
+ "▁Barry": 23032,
+ "▁investigate": 23033,
+ "gow": 23034,
+ "▁Americans": 23035,
+ "Since": 23036,
+ "▁відо": 23037,
+ "▁reun": 23038,
+ "osci": 23039,
+ "▁Chapter": 23040,
+ "▁bay": 23041,
+ "роме": 23042,
+ "ethe": 23043,
+ "édie": 23044,
+ "comot": 23045,
+ "▁miejscowo": 23046,
+ "▁studierte": 23047,
+ "ouvert": 23048,
+ "▁кур": 23049,
+ "▁DESC": 23050,
+ "▁touched": 23051,
+ "▁Jerry": 23052,
+ "uese": 23053,
+ "лище": 23054,
+ "authentication": 23055,
+ "▁colle": 23056,
+ "heart": 23057,
+ "▁regiment": 23058,
+ "cribed": 23059,
+ "▁Боль": 23060,
+ "▁проис": 23061,
+ "ceae": 23062,
+ "▁masses": 23063,
+ "▁scrolling": 23064,
+ "usto": 23065,
+ "SW": 23066,
+ "ovat": 23067,
+ "▁grâce": 23068,
+ "▁Архив": 23069,
+ "▁Север": 23070,
+ "avait": 23071,
+ "▁Marshall": 23072,
+ "▁HashMap": 23073,
+ "acon": 23074,
+ "ücken": 23075,
+ "[])": 23076,
+ "▁evangel": 23077,
+ "etzung": 23078,
+ "ttemberg": 23079,
+ "sters": 23080,
+ "TM": 23081,
+ "▁литера": 23082,
+ "quot": 23083,
+ "Pred": 23084,
+ "▁werk": 23085,
+ "▁haber": 23086,
+ "lava": 23087,
+ "vous": 23088,
+ "▁Late": 23089,
+ "cycle": 23090,
+ "тирова": 23091,
+ "▁проду": 23092,
+ "▁populations": 23093,
+ "▁Yan": 23094,
+ "Prefix": 23095,
+ "actéristiques": 23096,
+ "+'": 23097,
+ "()`](": 23098,
+ "▁Ль": 23099,
+ "филь": 23100,
+ "▁жизни": 23101,
+ "ftp": 23102,
+ "▁всех": 23103,
+ "▁gdzie": 23104,
+ "▁videa": 23105,
+ "oauth": 23106,
+ "▁pid": 23107,
+ "ům": 23108,
+ "▁pesso": 23109,
+ "▁tracking": 23110,
+ "izin": 23111,
+ "▁Morris": 23112,
+ "щий": 23113,
+ "▁Provinz": 23114,
+ "▁Mitte": 23115,
+ "▁artificial": 23116,
+ "brázky": 23117,
+ "▁дости": 23118,
+ "▁restored": 23119,
+ "▁communicate": 23120,
+ "agit": 23121,
+ "Recogn": 23122,
+ "▁lon": 23123,
+ "▁заня": 23124,
+ "▁Argument": 23125,
+ "flush": 23126,
+ "мана": 23127,
+ "seconds": 23128,
+ "UC": 23129,
+ "▁Ruth": 23130,
+ "▁tub": 23131,
+ "▁Bret": 23132,
+ "▁Pere": 23133,
+ "▁responsibility": 23134,
+ "ńczy": 23135,
+ "▁environments": 23136,
+ "kee": 23137,
+ "▁groot": 23138,
+ "▁painted": 23139,
+ "▁Éditions": 23140,
+ "cpy": 23141,
+ "árt": 23142,
+ "lichkeit": 23143,
+ "arda": 23144,
+ "Batch": 23145,
+ "▁Leopold": 23146,
+ "reason": 23147,
+ "noreferrer": 23148,
+ "sens": 23149,
+ "▁rocks": 23150,
+ "▁Hitler": 23151,
+ "лат": 23152,
+ "▁quoted": 23153,
+ "▁колле": 23154,
+ "▁уров": 23155,
+ "bag": 23156,
+ ".\")": 23157,
+ "▁ML": 23158,
+ "▁komt": 23159,
+ "▁[_": 23160,
+ "▁spectral": 23161,
+ "edo": 23162,
+ "▁insieme": 23163,
+ "▁suffering": 23164,
+ "slider": 23165,
+ "▁Kennedy": 23166,
+ "olate": 23167,
+ "▁Patri": 23168,
+ "зии": 23169,
+ "OH": 23170,
+ "▁теа": 23171,
+ "▁права": 23172,
+ "мах": 23173,
+ "rewrite": 23174,
+ "▁Einsatz": 23175,
+ "external": 23176,
+ "holds": 23177,
+ "▁Places": 23178,
+ "atype": 23179,
+ "▁vulner": 23180,
+ "▁abandoned": 23181,
+ "Origin": 23182,
+ "▁maximal": 23183,
+ "AAAA": 23184,
+ "▁Baseball": 23185,
+ "▁Close": 23186,
+ "▁painter": 23187,
+ "▁assigning": 23188,
+ "NB": 23189,
+ "blast": 23190,
+ "▁Künstler": 23191,
+ ")](": 23192,
+ "fach": 23193,
+ "▁Constantin": 23194,
+ "okes": 23195,
+ "▁nobody": 23196,
+ "▁subtract": 23197,
+ "▁fosse": 23198,
+ "▁certific": 23199,
+ "▁muse": 23200,
+ "/),": 23201,
+ "▁Profil": 23202,
+ "▁proxim": 23203,
+ "▁Jerusalem": 23204,
+ "▁simplicity": 23205,
+ "▁wsz": 23206,
+ "NUMBER": 23207,
+ "uttavia": 23208,
+ "UITableView": 23209,
+ "ichter": 23210,
+ "жан": 23211,
+ "▁Lav": 23212,
+ "itchen": 23213,
+ "▁Чем": 23214,
+ "Tu": 23215,
+ "▁geom": 23216,
+ "▁zvuky": 23217,
+ "▁Survey": 23218,
+ "ANCE": 23219,
+ "▁encrypted": 23220,
+ "prof": 23221,
+ "▁dare": 23222,
+ "▁Loren": 23223,
+ "тв": 23224,
+ "▁Алек": 23225,
+ "▁computers": 23226,
+ "▁expectation": 23227,
+ "▁substantial": 23228,
+ "▁Дми": 23229,
+ "▁`{": 23230,
+ "▁дра": 23231,
+ "ubble": 23232,
+ "▁performs": 23233,
+ "▁Krieg": 23234,
+ "▁incoming": 23235,
+ "▁Classification": 23236,
+ "WebView": 23237,
+ "▁episodes": 23238,
+ "apper": 23239,
+ "äufig": 23240,
+ "▁giov": 23241,
+ "▁Depart": 23242,
+ "бора": 23243,
+ "edly": 23244,
+ "ospod": 23245,
+ "▁ptr": 23246,
+ "▁dátum": 23247,
+ "▁estimation": 23248,
+ "icole": 23249,
+ "▁----": 23250,
+ "▁princes": 23251,
+ "HEAD": 23252,
+ "▁diffusion": 23253,
+ "▁drie": 23254,
+ "▁Ada": 23255,
+ "нице": 23256,
+ "nginx": 23257,
+ "shal": 23258,
+ "▁februari": 23259,
+ "▁Tat": 23260,
+ "looking": 23261,
+ "kund": 23262,
+ "▁Dean": 23263,
+ "mongodb": 23264,
+ "вших": 23265,
+ "▁Aur": 23266,
+ "▁Flora": 23267,
+ "▁Studios": 23268,
+ "ције": 23269,
+ "eil": 23270,
+ "Install": 23271,
+ "▁franch": 23272,
+ "▁HMS": 23273,
+ "▁practices": 23274,
+ "lej": 23275,
+ "dale": 23276,
+ "▁poste": 23277,
+ "▁Hels": 23278,
+ "▁reliable": 23279,
+ "ździer": 23280,
+ "▁verse": 23281,
+ "ermeister": 23282,
+ "▁quit": 23283,
+ "ético": 23284,
+ "ilis": 23285,
+ "edor": 23286,
+ "▁Cultural": 23287,
+ "дже": 23288,
+ "▁liked": 23289,
+ "▁mongodb": 23290,
+ "▁Broadway": 23291,
+ "▁IR": 23292,
+ "eszt": 23293,
+ "hov": 23294,
+ "▁míst": 23295,
+ "reiche": 23296,
+ "▁kB": 23297,
+ "стом": 23298,
+ "▁SQLite": 23299,
+ "▁torneo": 23300,
+ "\\.": 23301,
+ "Ord": 23302,
+ "▁Administration": 23303,
+ "▁зда": 23304,
+ "▁Hinter": 23305,
+ "▁Via": 23306,
+ "Decimal": 23307,
+ "orious": 23308,
+ "▁nécessaire": 23309,
+ "wx": 23310,
+ "▁tej": 23311,
+ "▁tema": 23312,
+ "Obrázky": 23313,
+ "рите": 23314,
+ "▁builds": 23315,
+ "▁laten": 23316,
+ "▁гг": 23317,
+ "Visibility": 23318,
+ "läu": 23319,
+ "▁sechs": 23320,
+ "▁луч": 23321,
+ "cera": 23322,
+ "Could": 23323,
+ "▁traject": 23324,
+ "}}^{": 23325,
+ "▁Japon": 23326,
+ "another": 23327,
+ "IK": 23328,
+ "▁belonging": 23329,
+ "▁facilities": 23330,
+ "▁Daily": 23331,
+ "▁dece": 23332,
+ "intro": 23333,
+ "▁случа": 23334,
+ "Namespace": 23335,
+ "▁Bak": 23336,
+ "locale": 23337,
+ "UG": 23338,
+ "=${": 23339,
+ "▁compañ": 23340,
+ "jąc": 23341,
+ "▁arithmetic": 23342,
+ "forum": 23343,
+ "▁porta": 23344,
+ "onk": 23345,
+ "▁gender": 23346,
+ "▁expects": 23347,
+ "бка": 23348,
+ "▁nak": 23349,
+ "▁Grace": 23350,
+ "▁stro": 23351,
+ "ividual": 23352,
+ "▁COM": 23353,
+ "▁Farm": 23354,
+ "▁canton": 23355,
+ "тому": 23356,
+ "javax": 23357,
+ "сей": 23358,
+ "▁briefly": 23359,
+ "Face": 23360,
+ "rotate": 23361,
+ "constant": 23362,
+ "▁gallery": 23363,
+ "astro": 23364,
+ "allery": 23365,
+ "▁DJ": 23366,
+ "charge": 23367,
+ "ходить": 23368,
+ "Cent": 23369,
+ "\\\",": 23370,
+ "▁donna": 23371,
+ "arca": 23372,
+ "lade": 23373,
+ "zin": 23374,
+ "▁Ned": 23375,
+ "▁hosting": 23376,
+ "idor": 23377,
+ "itative": 23378,
+ "igs": 23379,
+ "▁пря": 23380,
+ "▁ticket": 23381,
+ "▁studying": 23382,
+ "▁designer": 23383,
+ "lapsed": 23384,
+ "▁laat": 23385,
+ "▁dix": 23386,
+ "▁integrated": 23387,
+ "▁informed": 23388,
+ "▁behave": 23389,
+ "▁labour": 23390,
+ "estellt": 23391,
+ "calendar": 23392,
+ "▁killing": 23393,
+ "▁twitter": 23394,
+ "iae": 23395,
+ "▁historique": 23396,
+ "DEFAULT": 23397,
+ "iała": 23398,
+ "▁theoretical": 23399,
+ "▁unders": 23400,
+ "ляет": 23401,
+ "atan": 23402,
+ "▁surname": 23403,
+ "▁intercept": 23404,
+ "гласно": 23405,
+ "▁општини": 23406,
+ "▁tired": 23407,
+ "▁Beth": 23408,
+ "▁административ": 23409,
+ "Li": 23410,
+ "▁Тур": 23411,
+ "▁Scanner": 23412,
+ "▁Stern": 23413,
+ "▁вместе": 23414,
+ "▁reporting": 23415,
+ "▁sull": 23416,
+ "цией": 23417,
+ "berts": 23418,
+ "ogonal": 23419,
+ "ők": 23420,
+ "▁ipsum": 23421,
+ "▁seulement": 23422,
+ "▁Seiten": 23423,
+ "wordpress": 23424,
+ "▁featuring": 23425,
+ "istischen": 23426,
+ "jub": 23427,
+ "▁étr": 23428,
+ "▁tea": 23429,
+ "▁adapted": 23430,
+ "▁scales": 23431,
+ "▁nan": 23432,
+ "getValue": 23433,
+ "▁Blues": 23434,
+ "acles": 23435,
+ "▁stati": 23436,
+ "▁entitled": 23437,
+ "▁Ralph": 23438,
+ "gravity": 23439,
+ "▁entrepr": 23440,
+ "któber": 23441,
+ "limat": 23442,
+ "lis": 23443,
+ "Demo": 23444,
+ "relation": 23445,
+ "▁nep": 23446,
+ "prowad": 23447,
+ "itis": 23448,
+ "▁pup": 23449,
+ "nehmer": 23450,
+ "▁disappoint": 23451,
+ "▁etwas": 23452,
+ "annon": 23453,
+ "▁approved": 23454,
+ "▁clever": 23455,
+ "Loading": 23456,
+ "▁verz": 23457,
+ "resse": 23458,
+ "▁inspir": 23459,
+ "▁sampling": 23460,
+ "▁Bek": 23461,
+ "})$.": 23462,
+ "▁грома": 23463,
+ "▁specie": 23464,
+ "▁repub": 23465,
+ "▁loader": 23466,
+ "▁erf": 23467,
+ "▁shoulder": 23468,
+ "rais": 23469,
+ "▁мате": 23470,
+ "▁Month": 23471,
+ "Scene": 23472,
+ "▁blocking": 23473,
+ "▁ocean": 23474,
+ "geben": 23475,
+ "▁Kilometer": 23476,
+ "▁bedeut": 23477,
+ "▁Mix": 23478,
+ "fmt": 23479,
+ "▁Norweg": 23480,
+ "▁IDs": 23481,
+ "parallel": 23482,
+ "▁anticip": 23483,
+ "▁revis": 23484,
+ "хан": 23485,
+ "▁свет": 23486,
+ "CASE": 23487,
+ "▁führt": 23488,
+ "▁atomic": 23489,
+ "▁darkness": 23490,
+ "▁Fußballspieler": 23491,
+ "▁Жи": 23492,
+ "quisition": 23493,
+ "▁Sieg": 23494,
+ "Circ": 23495,
+ "▁cientí": 23496,
+ "nelle": 23497,
+ "SHA": 23498,
+ "▁urb": 23499,
+ "▁ksi": 23500,
+ "leqslant": 23501,
+ "▁фрон": 23502,
+ "▁defect": 23503,
+ "▁rá": 23504,
+ "▁stronger": 23505,
+ "▁pł": 23506,
+ "▁communities": 23507,
+ "нина": 23508,
+ "enas": 23509,
+ "iennent": 23510,
+ "▁safely": 23511,
+ "▁тя": 23512,
+ "▁benchmark": 23513,
+ "▁Braun": 23514,
+ "methods": 23515,
+ "argument": 23516,
+ "vos": 23517,
+ "obox": 23518,
+ "рови": 23519,
+ "▁recherche": 23520,
+ "mn": 23521,
+ "▁brings": 23522,
+ "machine": 23523,
+ "CESS": 23524,
+ "hosts": 23525,
+ "▁NY": 23526,
+ "Autow": 23527,
+ "▁современ": 23528,
+ "▁Gary": 23529,
+ "▁sensor": 23530,
+ "▁documented": 23531,
+ "▁prendre": 23532,
+ "▁peer": 23533,
+ "enix": 23534,
+ "hai": 23535,
+ "arbe": 23536,
+ "цент": 23537,
+ "_(": 23538,
+ "▁URI": 23539,
+ "ева": 23540,
+ "▁Regie": 23541,
+ "▁Monument": 23542,
+ "▁onderwerp": 23543,
+ "Bag": 23544,
+ "tit": 23545,
+ "▁stir": 23546,
+ "▁nerv": 23547,
+ "сторія": 23548,
+ "▁sov": 23549,
+ "▁writers": 23550,
+ "▁sorts": 23551,
+ "absolute": 23552,
+ "▁difficulties": 23553,
+ "▁parlament": 23554,
+ "▁IEnumerable": 23555,
+ "▁dissol": 23556,
+ "▁CHECK": 23557,
+ "arina": 23558,
+ "inburgh": 23559,
+ "DM": 23560,
+ "▁eind": 23561,
+ "▁budget": 23562,
+ "▁certains": 23563,
+ "▁första": 23564,
+ "anja": 23565,
+ "▁годов": 23566,
+ "▁тек": 23567,
+ "▁Duch": 23568,
+ "gui": 23569,
+ "▁Teams": 23570,
+ "▁многи": 23571,
+ "Marie": 23572,
+ "Integr": 23573,
+ "ThreadPool": 23574,
+ "rust": 23575,
+ "ík": 23576,
+ "%\"": 23577,
+ "enf": 23578,
+ "spl": 23579,
+ "▁begun": 23580,
+ "lou": 23581,
+ "▁RewriteRule": 23582,
+ "tuple": 23583,
+ "aneous": 23584,
+ "▁marine": 23585,
+ "attan": 23586,
+ "ikal": 23587,
+ "▁graduated": 23588,
+ "illé": 23589,
+ "▁прове": 23590,
+ "▁Роз": 23591,
+ "',\r": 23592,
+ "▁Pfarr": 23593,
+ "▁nivel": 23594,
+ "▁працю": 23595,
+ "music": 23596,
+ "▁setTimeout": 23597,
+ "ERS": 23598,
+ "▁Erik": 23599,
+ "pit": 23600,
+ "▁Хро": 23601,
+ "▁pił": 23602,
+ "▁peri": 23603,
+ "док": 23604,
+ "uszt": 23605,
+ "▁Bear": 23606,
+ "ClassName": 23607,
+ "▁Parlament": 23608,
+ "▁aix": 23609,
+ "▁invited": 23610,
+ "▁PATH": 23611,
+ "xter": 23612,
+ "▁Race": 23613,
+ "▁hecho": 23614,
+ "▁Tower": 23615,
+ "▁utf": 23616,
+ "actly": 23617,
+ "▁буде": 23618,
+ "▁angles": 23619,
+ "няя": 23620,
+ "ouvelles": 23621,
+ "▁climate": 23622,
+ "▁singing": 23623,
+ "▁navigate": 23624,
+ ">';": 23625,
+ "adows": 23626,
+ "▁leta": 23627,
+ "▁Sitz": 23628,
+ "▁partitions": 23629,
+ "▁dock": 23630,
+ "▁ży": 23631,
+ "▁allocate": 23632,
+ "▁benefits": 23633,
+ "▁nieder": 23634,
+ "xpath": 23635,
+ "meck": 23636,
+ "älle": 23637,
+ "▁coupling": 23638,
+ "жил": 23639,
+ "ForKey": 23640,
+ "argent": 23641,
+ "clou": 23642,
+ "▁instruments": 23643,
+ "▁enthus": 23644,
+ "▁még": 23645,
+ "▁Пав": 23646,
+ "▁Rach": 23647,
+ "-----": 23648,
+ "▁APIs": 23649,
+ "▁Vier": 23650,
+ "Cmd": 23651,
+ "itore": 23652,
+ "▁Cuba": 23653,
+ "▁dátummal": 23654,
+ "▁embedding": 23655,
+ "stdio": 23656,
+ "▁Gilbert": 23657,
+ "▁geprüft": 23658,
+ "▁stating": 23659,
+ "▁triggers": 23660,
+ "+=": 23661,
+ "▁spécial": 23662,
+ "▁deliber": 23663,
+ "мин": 23664,
+ "Produ": 23665,
+ "▁Stati": 23666,
+ "▁zus": 23667,
+ "ktionen": 23668,
+ "Dispatcher": 23669,
+ "idal": 23670,
+ "▁LP": 23671,
+ "optera": 23672,
+ "▁estar": 23673,
+ "▁значи": 23674,
+ "смо": 23675,
+ "ouses": 23676,
+ "engono": 23677,
+ "▁WPF": 23678,
+ "publish": 23679,
+ "▁teor": 23680,
+ "elif": 23681,
+ "▁erg": 23682,
+ "▁separation": 23683,
+ "Pan": 23684,
+ "▁Orchestra": 23685,
+ "Peter": 23686,
+ "bounds": 23687,
+ "▁Shakespeare": 23688,
+ "▁cantante": 23689,
+ "▁demi": 23690,
+ "▁Popular": 23691,
+ "фр": 23692,
+ "arring": 23693,
+ "цин": 23694,
+ "▁Ис": 23695,
+ "von": 23696,
+ "▁substitution": 23697,
+ "▁línea": 23698,
+ "\\}$.": 23699,
+ "como": 23700,
+ "▁важ": 23701,
+ "wagen": 23702,
+ "▁rarely": 23703,
+ "▁periods": 23704,
+ "glob": 23705,
+ "▁Frid": 23706,
+ "▁Terr": 23707,
+ "▁Release": 23708,
+ "Brainz": 23709,
+ "▁граф": 23710,
+ "DIS": 23711,
+ "compatible": 23712,
+ "▁poč": 23713,
+ "LIN": 23714,
+ "▁Källor": 23715,
+ "▁Arizona": 23716,
+ "ppy": 23717,
+ "Seq": 23718,
+ "▁Ain": 23719,
+ "▁Tourn": 23720,
+ "brow": 23721,
+ "▁Kör": 23722,
+ "▁ash": 23723,
+ "ogeneous": 23724,
+ "▁dialect": 23725,
+ "▁насеља": 23726,
+ "mysqli": 23727,
+ "цов": 23728,
+ "▁flor": 23729,
+ "▁фло": 23730,
+ "IAB": 23731,
+ "▁Within": 23732,
+ "^(": 23733,
+ "▁bois": 23734,
+ "▁tank": 23735,
+ "▁affili": 23736,
+ "▁hijo": 23737,
+ "▁Kate": 23738,
+ "▁Verl": 23739,
+ "▁Miami": 23740,
+ "▁typescript": 23741,
+ "њу": 23742,
+ "▁Vern": 23743,
+ "▁висо": 23744,
+ "iemann": 23745,
+ "▁coverage": 23746,
+ "brie": 23747,
+ "▁Starting": 23748,
+ "numpy": 23749,
+ "▁Jenkins": 23750,
+ "▁két": 23751,
+ "▁grup": 23752,
+ "▁Scient": 23753,
+ "▁interrupt": 23754,
+ "▁blob": 23755,
+ "ugel": 23756,
+ "▁Orth": 23757,
+ "abama": 23758,
+ "▁Bapt": 23759,
+ "ownik": 23760,
+ "▁быть": 23761,
+ "▁Julius": 23762,
+ "▁През": 23763,
+ "▁substitute": 23764,
+ "supported": 23765,
+ "chy": 23766,
+ "egyzetek": 23767,
+ "▁Performance": 23768,
+ "lessly": 23769,
+ "Constructor": 23770,
+ "▁extending": 23771,
+ "▁Muslim": 23772,
+ "Overflow": 23773,
+ "▁Jenn": 23774,
+ "▁produz": 23775,
+ "мії": 23776,
+ "▁países": 23777,
+ "▁eux": 23778,
+ "▁fate": 23779,
+ "ologe": 23780,
+ "ук": 23781,
+ "▁wobei": 23782,
+ "▁Sachsen": 23783,
+ "▁сайт": 23784,
+ "Models": 23785,
+ "▁Fast": 23786,
+ "besondere": 23787,
+ "▁FR": 23788,
+ "▁acon": 23789,
+ "▁Denkmal": 23790,
+ "▁anch": 23791,
+ "▁público": 23792,
+ "▁Tas": 23793,
+ "▁cand": 23794,
+ "▁paździer": 23795,
+ "▁Мон": 23796,
+ "▁versus": 23797,
+ "rut": 23798,
+ "GT": 23799,
+ "▁inserting": 23800,
+ "▁canad": 23801,
+ "єм": 23802,
+ "▁Metro": 23803,
+ "▁Herzog": 23804,
+ "Ignore": 23805,
+ "▁decrease": 23806,
+ "▁пун": 23807,
+ "▁Fischer": 23808,
+ "▁Mall": 23809,
+ "▁nörd": 23810,
+ "iostream": 23811,
+ "▁Luxemb": 23812,
+ "payload": 23813,
+ "▁Zeitung": 23814,
+ "▁modifying": 23815,
+ "▁Cher": 23816,
+ "▁Luci": 23817,
+ "nx": 23818,
+ "▁loose": 23819,
+ "▁topics": 23820,
+ "▁varied": 23821,
+ "▁pg": 23822,
+ "ajes": 23823,
+ "umm": 23824,
+ "Views": 23825,
+ "▁Beau": 23826,
+ "MAP": 23827,
+ "ipeline": 23828,
+ "▁Interest": 23829,
+ "arith": 23830,
+ "▁según": 23831,
+ "▁Gemeins": 23832,
+ "▁Attribute": 23833,
+ "community": 23834,
+ "▁центр": 23835,
+ "▁kilometer": 23836,
+ "▁économ": 23837,
+ "laration": 23838,
+ "▁къ": 23839,
+ "▁carriage": 23840,
+ "▁Lane": 23841,
+ "▁необ": 23842,
+ "kur": 23843,
+ "▁AF": 23844,
+ "INTER": 23845,
+ "))$": 23846,
+ "▁beide": 23847,
+ "destination": 23848,
+ "▁fonts": 23849,
+ "appendChild": 23850,
+ "▁MAR": 23851,
+ "▁gay": 23852,
+ "mil": 23853,
+ "lesh": 23854,
+ "èt": 23855,
+ "▁Wang": 23856,
+ "▁Years": 23857,
+ "▁Symbol": 23858,
+ "Live": 23859,
+ "quency": 23860,
+ "▁Users": 23861,
+ "▁Unicode": 23862,
+ "▁Sau": 23863,
+ "▁tons": 23864,
+ "▁Ні": 23865,
+ "▁краї": 23866,
+ "AXI": 23867,
+ "▁Pick": 23868,
+ "AI": 23869,
+ "▁hath": 23870,
+ "▁ainda": 23871,
+ "▁papa": 23872,
+ "▁Censo": 23873,
+ "▁Bald": 23874,
+ "▁Насеље": 23875,
+ "▁simulations": 23876,
+ "▁jaren": 23877,
+ "▁inherited": 23878,
+ "▁той": 23879,
+ "▁feels": 23880,
+ "ression": 23881,
+ "▁október": 23882,
+ "bid": 23883,
+ "ási": 23884,
+ "▁muss": 23885,
+ "ventory": 23886,
+ "▁meist": 23887,
+ "▁bore": 23888,
+ "▁slider": 23889,
+ "дели": 23890,
+ "\\;": 23891,
+ "▁extracted": 23892,
+ "кур": 23893,
+ "Edge": 23894,
+ "▁perf": 23895,
+ "▁Brigade": 23896,
+ "▁град": 23897,
+ "ienie": 23898,
+ "▁Norden": 23899,
+ "▁cancer": 23900,
+ "\"/": 23901,
+ "Cur": 23902,
+ "▁Сере": 23903,
+ "▁liquid": 23904,
+ "structure": 23905,
+ "▁choosing": 23906,
+ "▁Perl": 23907,
+ "Side": 23908,
+ "üs": 23909,
+ "ритор": 23910,
+ "▁kost": 23911,
+ "▁packets": 23912,
+ "▁которого": 23913,
+ "▁Comun": 23914,
+ "▁fingers": 23915,
+ "ográfica": 23916,
+ ">:": 23917,
+ "▁championnat": 23918,
+ "▁blieb": 23919,
+ "▁Situ": 23920,
+ "▁suic": 23921,
+ "andis": 23922,
+ "Fre": 23923,
+ "▁Conc": 23924,
+ "▁republic": 23925,
+ "▁armed": 23926,
+ "▁hell": 23927,
+ "▁hög": 23928,
+ "ragma": 23929,
+ "▁ense": 23930,
+ "▁acres": 23931,
+ "▁Від": 23932,
+ "▁Reform": 23933,
+ "MainActivity": 23934,
+ "keeper": 23935,
+ "erb": 23936,
+ "▁monaster": 23937,
+ "subsubsection": 23938,
+ "▁Див": 23939,
+ "▁creature": 23940,
+ "▁indicating": 23941,
+ "▁urls": 23942,
+ "▁kein": 23943,
+ "образ": 23944,
+ "pick": 23945,
+ "▁Admir": 23946,
+ "▁oldest": 23947,
+ "▁muz": 23948,
+ "▁contradiction": 23949,
+ "▁probabil": 23950,
+ "illiant": 23951,
+ "▁pav": 23952,
+ "▁papel": 23953,
+ "ubs": 23954,
+ "▁жена": 23955,
+ "AML": 23956,
+ "▁recip": 23957,
+ "▁COL": 23958,
+ "added": 23959,
+ "▁clue": 23960,
+ "▁Ukraine": 23961,
+ "▁jelent": 23962,
+ "чень": 23963,
+ "▁mathematics": 23964,
+ "Accept": 23965,
+ "▁сот": 23966,
+ "▁север": 23967,
+ "▁isolated": 23968,
+ "▁поя": 23969,
+ "wür": 23970,
+ "Router": 23971,
+ "CAT": 23972,
+ "rgb": 23973,
+ "▁Lov": 23974,
+ "mutable": 23975,
+ "▁Wes": 23976,
+ "▁Italien": 23977,
+ "Drag": 23978,
+ "enium": 23979,
+ "atting": 23980,
+ "tcp": 23981,
+ "▁erfolgte": 23982,
+ "▁Beit": 23983,
+ "гато": 23984,
+ "▁Systems": 23985,
+ "▁reserve": 23986,
+ "eree": 23987,
+ "▁Пари": 23988,
+ "▁зали": 23989,
+ "▁rent": 23990,
+ "▁sunt": 23991,
+ "▁Girls": 23992,
+ "▁Ernest": 23993,
+ "▁fits": 23994,
+ "▁oppon": 23995,
+ "▁живело": 23996,
+ "▁avaient": 23997,
+ "▁Florence": 23998,
+ "▁числе": 23999,
+ "▁engines": 24000,
+ "Dynamic": 24001,
+ "▁stycznia": 24002,
+ "▁bias": 24003,
+ "▁Exchange": 24004,
+ "дий": 24005,
+ "▁historiques": 24006,
+ "▁Hä": 24007,
+ "hod": 24008,
+ "▁wł": 24009,
+ "schap": 24010,
+ "▁lac": 24011,
+ "▁Foi": 24012,
+ "▁dwell": 24013,
+ "▁Unternehmen": 24014,
+ "URN": 24015,
+ "▁kilometres": 24016,
+ "▁Однако": 24017,
+ "кли": 24018,
+ "▁Sri": 24019,
+ "Groups": 24020,
+ "mind": 24021,
+ "oslov": 24022,
+ "fern": 24023,
+ "egu": 24024,
+ "abeled": 24025,
+ "Fiddle": 24026,
+ "▁Century": 24027,
+ "/-": 24028,
+ "▁Jegyzetek": 24029,
+ "Hen": 24030,
+ "ensemble": 24031,
+ "▁Gut": 24032,
+ "_{{\\": 24033,
+ "▁ranking": 24034,
+ "+$": 24035,
+ "ала": 24036,
+ "▁#{": 24037,
+ "imientos": 24038,
+ "achim": 24039,
+ "rides": 24040,
+ "▁Klaus": 24041,
+ "▁intend": 24042,
+ "▁Kentucky": 24043,
+ "cipe": 24044,
+ "▁Dienst": 24045,
+ "▁situated": 24046,
+ "▁póź": 24047,
+ "▁scrit": 24048,
+ "clip": 24049,
+ "нет": 24050,
+ "tables": 24051,
+ "▁Nied": 24052,
+ "▁McK": 24053,
+ "▁powst": 24054,
+ "▁kunnen": 24055,
+ "▁Evans": 24056,
+ "жды": 24057,
+ "вать": 24058,
+ "uchar": 24059,
+ "▁residents": 24060,
+ "iak": 24061,
+ "▁Resol": 24062,
+ "▁veces": 24063,
+ "▁satisfying": 24064,
+ "INF": 24065,
+ "▁син": 24066,
+ "▁crossing": 24067,
+ "iben": 24068,
+ "▁широ": 24069,
+ "pto": 24070,
+ "ILL": 24071,
+ "▁роль": 24072,
+ "▁aktiv": 24073,
+ "▁обращения": 24074,
+ "Wikispecies": 24075,
+ "▁Höhe": 24076,
+ "cro": 24077,
+ "════": 24078,
+ "altra": 24079,
+ "▁FILE": 24080,
+ "▁ups": 24081,
+ "▁allocation": 24082,
+ "Michael": 24083,
+ "▁acknowled": 24084,
+ "Linux": 24085,
+ "▁metros": 24086,
+ "tte": 24087,
+ "afen": 24088,
+ "▁xcode": 24089,
+ "▁тради": 24090,
+ "species": 24091,
+ "▁injury": 24092,
+ "▁самы": 24093,
+ "▁lattice": 24094,
+ "Material": 24095,
+ "andenburg": 24096,
+ "▁huvudstaden": 24097,
+ "story": 24098,
+ "▁varying": 24099,
+ "▁követ": 24100,
+ "▁Российской": 24101,
+ "irse": 24102,
+ "▁drum": 24103,
+ "Pressed": 24104,
+ "Lar": 24105,
+ "▁Agu": 24106,
+ "▁weil": 24107,
+ "▁commence": 24108,
+ "▁Según": 24109,
+ "Gesture": 24110,
+ "Shape": 24111,
+ "▁Vors": 24112,
+ "▁succès": 24113,
+ "▁corrected": 24114,
+ "Kar": 24115,
+ "▁cruel": 24116,
+ "▁politico": 24117,
+ "▁Schriftsteller": 24118,
+ "▁risult": 24119,
+ "etu": 24120,
+ "archiv": 24121,
+ "▁género": 24122,
+ "▁Lü": 24123,
+ "▁triumph": 24124,
+ "ORS": 24125,
+ "Lu": 24126,
+ "▁personnel": 24127,
+ "▁Hills": 24128,
+ "asset": 24129,
+ "domin": 24130,
+ "Receive": 24131,
+ "▁Oak": 24132,
+ "▁Kno": 24133,
+ "▁Theory": 24134,
+ "irie": 24135,
+ "owan": 24136,
+ "▁estava": 24137,
+ "▁executes": 24138,
+ "йт": 24139,
+ "ópez": 24140,
+ "поло": 24141,
+ "ética": 24142,
+ "▁название": 24143,
+ "▁converges": 24144,
+ "▁notre": 24145,
+ "▁populated": 24146,
+ "▁movements": 24147,
+ "▁statistical": 24148,
+ "▁Zweiten": 24149,
+ "quin": 24150,
+ "▁importantes": 24151,
+ "▁klein": 24152,
+ "▁Segunda": 24153,
+ "schließend": 24154,
+ "Failure": 24155,
+ "nar": 24156,
+ "dag": 24157,
+ "▁ruolo": 24158,
+ "▁fiction": 24159,
+ "▁использу": 24160,
+ "▁crisis": 24161,
+ "▁Getting": 24162,
+ ",%": 24163,
+ "▁армии": 24164,
+ "▁campus": 24165,
+ "▁footer": 24166,
+ "▁días": 24167,
+ "бан": 24168,
+ "▁liberty": 24169,
+ "▁gh": 24170,
+ "▁chamber": 24171,
+ "▁districts": 24172,
+ "▁excited": 24173,
+ "▁canción": 24174,
+ "tero": 24175,
+ "▁Working": 24176,
+ "▁części": 24177,
+ "льный": 24178,
+ "▁forum": 24179,
+ "▁Ehe": 24180,
+ "▁ката": 24181,
+ "itations": 24182,
+ "Tools": 24183,
+ "achiv": 24184,
+ "▁cres": 24185,
+ "asto": 24186,
+ "▁rever": 24187,
+ "▁nazionale": 24188,
+ "▁doors": 24189,
+ "▁Nancy": 24190,
+ "▁islands": 24191,
+ "Imp": 24192,
+ "▁Chair": 24193,
+ "▁vorm": 24194,
+ "sein": 24195,
+ "▁доку": 24196,
+ "erset": 24197,
+ "▁tätig": 24198,
+ "▁Krit": 24199,
+ "▁пя": 24200,
+ "▁conservation": 24201,
+ "▁Partido": 24202,
+ "minipage": 24203,
+ "Validator": 24204,
+ "▁recovery": 24205,
+ "▁NASA": 24206,
+ "▁breast": 24207,
+ "ilty": 24208,
+ "analy": 24209,
+ "elines": 24210,
+ "▁Saturday": 24211,
+ "emark": 24212,
+ "cej": 24213,
+ "Zero": 24214,
+ "▁Turner": 24215,
+ "secure": 24216,
+ "Exists": 24217,
+ "▁Rick": 24218,
+ "evalu": 24219,
+ "ctrl": 24220,
+ "▁compression": 24221,
+ "▁CURL": 24222,
+ "textcolor": 24223,
+ ")\\,": 24224,
+ "longrightarrow": 24225,
+ "▁Fernseh": 24226,
+ "icha": 24227,
+ "▁loi": 24228,
+ "▁Оте": 24229,
+ "▁cave": 24230,
+ "▁dozen": 24231,
+ "▁explaining": 24232,
+ "▁innov": 24233,
+ "▁Nicholas": 24234,
+ "▁diameter": 24235,
+ "▁Marian": 24236,
+ "▁fires": 24237,
+ "▁artifact": 24238,
+ "▁Parker": 24239,
+ "▁Bund": 24240,
+ "▁verte": 24241,
+ "▁talent": 24242,
+ "▁Lucas": 24243,
+ "reverse": 24244,
+ "▁folgenden": 24245,
+ "▁Sah": 24246,
+ "jections": 24247,
+ "▁invece": 24248,
+ "▁costitu": 24249,
+ "▁ssl": 24250,
+ "}}^": 24251,
+ "▁violent": 24252,
+ "▁spos": 24253,
+ "Rout": 24254,
+ "jdk": 24255,
+ "▁заме": 24256,
+ "▁furent": 24257,
+ "andal": 24258,
+ "Hom": 24259,
+ "▁Senior": 24260,
+ "▁pounds": 24261,
+ "▁Discogs": 24262,
+ "▁зе": 24263,
+ "'}[": 24264,
+ "▁Napoleon": 24265,
+ "ordinates": 24266,
+ "àn": 24267,
+ "▁kurz": 24268,
+ "▁vere": 24269,
+ "▁reuse": 24270,
+ "▁Ген": 24271,
+ "▁Syst": 24272,
+ "▁disappeared": 24273,
+ "▁Watch": 24274,
+ "bibliothek": 24275,
+ "▁корпу": 24276,
+ "▁Cs": 24277,
+ "▁}`": 24278,
+ "▁rör": 24279,
+ "▁дела": 24280,
+ "VB": 24281,
+ "▁calculus": 24282,
+ "рода": 24283,
+ "▁judgment": 24284,
+ "atile": 24285,
+ "▁longue": 24286,
+ "▁Hus": 24287,
+ "Jac": 24288,
+ "}})": 24289,
+ "RIPT": 24290,
+ "IABot": 24291,
+ "▁após": 24292,
+ "▁aston": 24293,
+ "Webachiv": 24294,
+ "▁URLs": 24295,
+ "▁coat": 24296,
+ "▁эконо": 24297,
+ "▁lear": 24298,
+ "extensions": 24299,
+ "▁Classic": 24300,
+ "TI": 24301,
+ "▁Tage": 24302,
+ "▁lá": 24303,
+ "▁semb": 24304,
+ "▁développement": 24305,
+ "ISTS": 24306,
+ "▁solves": 24307,
+ ",\\,": 24308,
+ "▁чемпі": 24309,
+ "ordinary": 24310,
+ "▁Bav": 24311,
+ "▁muchos": 24312,
+ "Self": 24313,
+ "▁Май": 24314,
+ "▁Diet": 24315,
+ "▁necessity": 24316,
+ "від": 24317,
+ "▁mano": 24318,
+ "▁Ср": 24319,
+ "▁carre": 24320,
+ "▁Camera": 24321,
+ "▁Narod": 24322,
+ "▁Phone": 24323,
+ "▁polym": 24324,
+ "imore": 24325,
+ "isEmpty": 24326,
+ "▁Houston": 24327,
+ "▁Rece": 24328,
+ "▁presentation": 24329,
+ "ниципа": 24330,
+ "▁Db": 24331,
+ "▁confident": 24332,
+ "▁}{": 24333,
+ "▁bullet": 24334,
+ "▁{},": 24335,
+ "ANGE": 24336,
+ "▁Notre": 24337,
+ "chin": 24338,
+ "▁Dragon": 24339,
+ "erca": 24340,
+ "iali": 24341,
+ "▁asset": 24342,
+ "▁muito": 24343,
+ "▁deeply": 24344,
+ "▁restriction": 24345,
+ "▁commerce": 24346,
+ "▁Bomb": 24347,
+ "caught": 24348,
+ "qq": 24349,
+ "▁Arag": 24350,
+ "▁немец": 24351,
+ "▁Analysis": 24352,
+ "▁článku": 24353,
+ "▁baby": 24354,
+ "▁echter": 24355,
+ "▁одного": 24356,
+ "жена": 24357,
+ "▁whitespace": 24358,
+ "çu": 24359,
+ "LIST": 24360,
+ "frique": 24361,
+ "▁varias": 24362,
+ "▁Wit": 24363,
+ "▁Licencia": 24364,
+ "Exit": 24365,
+ "▁sierp": 24366,
+ "▁assemb": 24367,
+ "▁splitting": 24368,
+ "▁palace": 24369,
+ "▁blocked": 24370,
+ "▁boundaries": 24371,
+ "▁iterations": 24372,
+ "▁Rotten": 24373,
+ "▁Verkehr": 24374,
+ "▁weer": 24375,
+ "Tests": 24376,
+ "ifting": 24377,
+ "▁regul": 24378,
+ "▁persist": 24379,
+ "▁Solution": 24380,
+ "pb": 24381,
+ "▁collapse": 24382,
+ "▁arrested": 24383,
+ "▁predicate": 24384,
+ "▁Zone": 24385,
+ "▁ingen": 24386,
+ "zález": 24387,
+ "▁banks": 24388,
+ "plant": 24389,
+ "▁Nella": 24390,
+ "▁бан": 24391,
+ "▁Snow": 24392,
+ "▁Kreuz": 24393,
+ "ício": 24394,
+ "▁enters": 24395,
+ "▁expose": 24396,
+ "či": 24397,
+ "шие": 24398,
+ "Qual": 24399,
+ "▁landscape": 24400,
+ "▁подацима": 24401,
+ "mai": 24402,
+ "stag": 24403,
+ "ований": 24404,
+ "DEF": 24405,
+ "[]{": 24406,
+ "▁dernière": 24407,
+ "icut": 24408,
+ "▁Xml": 24409,
+ "▁subgroup": 24410,
+ "▁Polsce": 24411,
+ "▁Warning": 24412,
+ "▁vehicles": 24413,
+ "iot": 24414,
+ "▁dll": 24415,
+ "ront": 24416,
+ "▁Louise": 24417,
+ "▁ara": 24418,
+ "▁Scala": 24419,
+ "▁canonical": 24420,
+ "▁placing": 24421,
+ "ERY": 24422,
+ "▁Jag": 24423,
+ "▁virus": 24424,
+ "emu": 24425,
+ "▁});\r": 24426,
+ "▁мм": 24427,
+ "▁Trying": 24428,
+ "▁Lexikon": 24429,
+ "abord": 24430,
+ "▁expedition": 24431,
+ "▁demanded": 24432,
+ "Zyg": 24433,
+ "lein": 24434,
+ "▁verwendet": 24435,
+ "рина": 24436,
+ "wol": 24437,
+ "▁pivot": 24438,
+ "▁однако": 24439,
+ "▁propriet": 24440,
+ "▁awards": 24441,
+ "tout": 24442,
+ "▁assim": 24443,
+ "▁Storm": 24444,
+ "Limit": 24445,
+ "elin": 24446,
+ "wealth": 24447,
+ "uez": 24448,
+ "▁rappresent": 24449,
+ "▁resta": 24450,
+ "▁gegründet": 24451,
+ "▁journalist": 24452,
+ "isie": 24453,
+ "▁facility": 24454,
+ "illed": 24455,
+ "ulk": 24456,
+ "▁PK": 24457,
+ "Anchor": 24458,
+ "▁_)": 24459,
+ "VF": 24460,
+ "LAB": 24461,
+ "▁nå": 24462,
+ "odos": 24463,
+ "▁billion": 24464,
+ "virti": 24465,
+ "▁Jeux": 24466,
+ "юза": 24467,
+ "tomcat": 24468,
+ "▁charts": 24469,
+ "▁Bundle": 24470,
+ "▁lst": 24471,
+ "▁exer": 24472,
+ "▁females": 24473,
+ "▁obliged": 24474,
+ "▁aby": 24475,
+ "rolled": 24476,
+ "dri": 24477,
+ "▁Sche": 24478,
+ "▁vessels": 24479,
+ "IMARY": 24480,
+ "▁reasoning": 24481,
+ "▁проте": 24482,
+ "FILES": 24483,
+ "verk": 24484,
+ "osos": 24485,
+ "▁комму": 24486,
+ "дії": 24487,
+ "▁dd": 24488,
+ "▁соответ": 24489,
+ "▁IOException": 24490,
+ "ských": 24491,
+ "▁CLI": 24492,
+ "▁ње": 24493,
+ "CM": 24494,
+ "TD": 24495,
+ "▁possibilities": 24496,
+ "▁Compos": 24497,
+ "half": 24498,
+ "▁webpage": 24499,
+ "▁swing": 24500,
+ "▁zas": 24501,
+ "▁cycl": 24502,
+ "leid": 24503,
+ "istica": 24504,
+ "▁Insert": 24505,
+ "▁Sweden": 24506,
+ "▁wanting": 24507,
+ "▁ال": 24508,
+ "▁eeuw": 24509,
+ "▁Administr": 24510,
+ "▁Warren": 24511,
+ "▁bs": 24512,
+ "▁pam": 24513,
+ "anus": 24514,
+ "Dra": 24515,
+ "expl": 24516,
+ "▁Kant": 24517,
+ "▁Austin": 24518,
+ "▁csak": 24519,
+ "▁theatre": 24520,
+ "▁compatibility": 24521,
+ "матиче": 24522,
+ "setState": 24523,
+ "бю": 24524,
+ "}{|": 24525,
+ "▁Dy": 24526,
+ "▁Zwischen": 24527,
+ "Alt": 24528,
+ "CLARE": 24529,
+ "steps": 24530,
+ "▁Lage": 24531,
+ "▁Mitt": 24532,
+ "▁Dublin": 24533,
+ "▁работы": 24534,
+ "deep": 24535,
+ "▁flows": 24536,
+ "▁Palace": 24537,
+ "unix": 24538,
+ "refs": 24539,
+ "umar": 24540,
+ "aset": 24541,
+ "cov": 24542,
+ "▁ping": 24543,
+ "▁Safari": 24544,
+ "flug": 24545,
+ "creens": 24546,
+ "{#": 24547,
+ "▁реа": 24548,
+ "adors": 24549,
+ "▁amor": 24550,
+ "uce": 24551,
+ "demic": 24552,
+ "▁Netherlands": 24553,
+ "▁clusters": 24554,
+ "▁enfor": 24555,
+ "marine": 24556,
+ "▁bugs": 24557,
+ "izzata": 24558,
+ "▁scra": 24559,
+ "Les": 24560,
+ "quick": 24561,
+ "▁turno": 24562,
+ "_*": 24563,
+ "ера": 24564,
+ "Generated": 24565,
+ ">[": 24566,
+ "▁estre": 24567,
+ "orde": 24568,
+ "▁verg": 24569,
+ "роз": 24570,
+ "▁pau": 24571,
+ "includes": 24572,
+ "assa": 24573,
+ "aders": 24574,
+ "▁Герма": 24575,
+ "▁estaven": 24576,
+ "▁earliest": 24577,
+ "▁resultado": 24578,
+ "mun": 24579,
+ "▁plots": 24580,
+ "din": 24581,
+ "sorted": 24582,
+ "▁preference": 24583,
+ "rió": 24584,
+ "туре": 24585,
+ "▁Ligue": 24586,
+ "▁завер": 24587,
+ "phr": 24588,
+ "▁pocket": 24589,
+ "▁parl": 24590,
+ "▁lak": 24591,
+ "▁powie": 24592,
+ "▁altres": 24593,
+ "$};": 24594,
+ "plain": 24595,
+ "▁Cred": 24596,
+ "itza": 24597,
+ "perp": 24598,
+ "Green": 24599,
+ "▁devoted": 24600,
+ "production": 24601,
+ "worker": 24602,
+ "elsen": 24603,
+ "▁vern": 24604,
+ "▁március": 24605,
+ "▁Confeder": 24606,
+ "▁Liverpool": 24607,
+ "▁музи": 24608,
+ "▁emails": 24609,
+ "▁distances": 24610,
+ "▁segments": 24611,
+ "▁anth": 24612,
+ "▁wrest": 24613,
+ "▁hoog": 24614,
+ "▁cinema": 24615,
+ "rror": 24616,
+ "▁geboren": 24617,
+ "▁éc": 24618,
+ "Marker": 24619,
+ "▁Compet": 24620,
+ "▁листо": 24621,
+ "allowed": 24622,
+ "volume": 24623,
+ "Espagne": 24624,
+ "Ze": 24625,
+ "▁fixes": 24626,
+ "▁rond": 24627,
+ "▁arrangement": 24628,
+ "/~": 24629,
+ ".](": 24630,
+ "▁Források": 24631,
+ "▁weiteren": 24632,
+ "excel": 24633,
+ "▁змі": 24634,
+ "▁moderne": 24635,
+ "English": 24636,
+ "▁Transfermarkt": 24637,
+ "▁bearing": 24638,
+ "▁cleared": 24639,
+ "▁сам": 24640,
+ "▁divs": 24641,
+ "ći": 24642,
+ "▁этой": 24643,
+ "▁Геор": 24644,
+ "scene": 24645,
+ "▁ages": 24646,
+ "GEN": 24647,
+ "rän": 24648,
+ "▁Toul": 24649,
+ "▁Abs": 24650,
+ "ját": 24651,
+ "▁mediante": 24652,
+ "▁empres": 24653,
+ "▁Employee": 24654,
+ "▁polynomials": 24655,
+ "▁optimize": 24656,
+ "▁выступа": 24657,
+ "fare": 24658,
+ "вей": 24659,
+ "xf": 24660,
+ "quez": 24661,
+ "▁botan": 24662,
+ "▁defend": 24663,
+ "▁Quart": 24664,
+ "Mont": 24665,
+ "vb": 24666,
+ "tick": 24667,
+ "WD": 24668,
+ "mine": 24669,
+ "▁modific": 24670,
+ "notification": 24671,
+ "▁denn": 24672,
+ "▁algo": 24673,
+ "▁Spo": 24674,
+ "▁mistrzost": 24675,
+ "/:": 24676,
+ "▁apresent": 24677,
+ "▁прод": 24678,
+ "Volume": 24679,
+ "ską": 24680,
+ "protected": 24681,
+ "▁Turkish": 24682,
+ "azy": 24683,
+ "▁pouv": 24684,
+ "▁período": 24685,
+ "skog": 24686,
+ "▁entropy": 24687,
+ "zed": 24688,
+ "тори": 24689,
+ "▁lij": 24690,
+ "boards": 24691,
+ "▁стату": 24692,
+ "Bool": 24693,
+ "▁polity": 24694,
+ "@\",": 24695,
+ "▁рік": 24696,
+ "née": 24697,
+ "▁Zug": 24698,
+ "▁Uniti": 24699,
+ "émet": 24700,
+ "atience": 24701,
+ "dimen": 24702,
+ "▁Steven": 24703,
+ "Ha": 24704,
+ "ACTION": 24705,
+ "▁wand": 24706,
+ "▁Navar": 24707,
+ "▁січня": 24708,
+ "Watch": 24709,
+ "▁Stuart": 24710,
+ "▁zde": 24711,
+ "▁контро": 24712,
+ "dataset": 24713,
+ "yó": 24714,
+ "▁Bush": 24715,
+ "▁себя": 24716,
+ "▁worthy": 24717,
+ "▁Ble": 24718,
+ "▁propor": 24719,
+ "▁Village": 24720,
+ "▁ry": 24721,
+ "▁voit": 24722,
+ "▁копия": 24723,
+ "▁zp": 24724,
+ "▁cura": 24725,
+ "▁Html": 24726,
+ "▁Dieser": 24727,
+ "▁Days": 24728,
+ "onnes": 24729,
+ "▁antigu": 24730,
+ "▁Staaten": 24731,
+ "▁faint": 24732,
+ "ongs": 24733,
+ "▁öst": 24734,
+ "Redirect": 24735,
+ "ель": 24736,
+ "atorial": 24737,
+ "▁bother": 24738,
+ "EditText": 24739,
+ "▁Giul": 24740,
+ "▁заво": 24741,
+ "▁pueblo": 24742,
+ "▁Mississippi": 24743,
+ "jak": 24744,
+ "▁wings": 24745,
+ "onc": 24746,
+ "ível": 24747,
+ "iencia": 24748,
+ "entlicht": 24749,
+ "▁BTW": 24750,
+ "ornal": 24751,
+ "▁Коро": 24752,
+ "▁одним": 24753,
+ "▁salv": 24754,
+ "▁finden": 24755,
+ "geo": 24756,
+ "▁авиа": 24757,
+ "attung": 24758,
+ "viv": 24759,
+ "▁Luther": 24760,
+ "▁общи": 24761,
+ "▁Rolle": 24762,
+ "▁Abraham": 24763,
+ "▁centered": 24764,
+ "▁slash": 24765,
+ "isat": 24766,
+ "emann": 24767,
+ "Os": 24768,
+ "парта": 24769,
+ "▁Pablo": 24770,
+ "▁collaboration": 24771,
+ "paths": 24772,
+ "édition": 24773,
+ "▁viewed": 24774,
+ "▁consisted": 24775,
+ "▁recovered": 24776,
+ "▁Mexican": 24777,
+ "▁Fix": 24778,
+ "▁spell": 24779,
+ "Special": 24780,
+ "▁Ст": 24781,
+ "esseur": 24782,
+ "▁Украины": 24783,
+ "former": 24784,
+ "▁św": 24785,
+ "▁zeros": 24786,
+ "▁Straßen": 24787,
+ "▁organisation": 24788,
+ "üssen": 24789,
+ "▁Sierra": 24790,
+ "▁Season": 24791,
+ "▁volont": 24792,
+ "BeanFactory": 24793,
+ "▁помощ": 24794,
+ "▁pressing": 24795,
+ "▁equivalence": 24796,
+ "▁catt": 24797,
+ "icity": 24798,
+ "▁accomplished": 24799,
+ "▁yo": 24800,
+ "▁sic": 24801,
+ "▁imports": 24802,
+ "▁accommod": 24803,
+ "▁Porto": 24804,
+ "▁яка": 24805,
+ "▁loan": 24806,
+ "тики": 24807,
+ "▁checkout": 24808,
+ "▁assess": 24809,
+ "▁Population": 24810,
+ "urent": 24811,
+ "clojure": 24812,
+ "▁Santos": 24813,
+ "▁információ": 24814,
+ "POS": 24815,
+ "▁gare": 24816,
+ "▁kick": 24817,
+ "▁radical": 24818,
+ "▁Peace": 24819,
+ "▁streaming": 24820,
+ "camp": 24821,
+ "ząt": 24822,
+ "говор": 24823,
+ "▁Regierung": 24824,
+ "▁proceeded": 24825,
+ "fm": 24826,
+ "лены": 24827,
+ "▁earnest": 24828,
+ "▁Parad": 24829,
+ "requests": 24830,
+ "▁Raum": 24831,
+ "šč": 24832,
+ "▁policies": 24833,
+ "▁Tig": 24834,
+ "▁sitt": 24835,
+ "▁Energy": 24836,
+ "▁purely": 24837,
+ "▁Haut": 24838,
+ "▁Speed": 24839,
+ "bio": 24840,
+ "▁orange": 24841,
+ "▁biggest": 24842,
+ "▁britannique": 24843,
+ "▁Notable": 24844,
+ "vu": 24845,
+ "лении": 24846,
+ "бин": 24847,
+ "▁Nash": 24848,
+ "щение": 24849,
+ "▁ciel": 24850,
+ "adémie": 24851,
+ "▁грудня": 24852,
+ "▁joue": 24853,
+ "▁voted": 24854,
+ "rico": 24855,
+ "▁гор": 24856,
+ "▁команду": 24857,
+ "itivity": 24858,
+ "▁ще": 24859,
+ "▁definite": 24860,
+ "uropa": 24861,
+ "!\");": 24862,
+ "Defaults": 24863,
+ "▁некоторы": 24864,
+ "édération": 24865,
+ "▁silly": 24866,
+ "▁talked": 24867,
+ "reu": 24868,
+ "▁Lomb": 24869,
+ "▁statue": 24870,
+ "кта": 24871,
+ "юр": 24872,
+ "umably": 24873,
+ "▁городе": 24874,
+ "▁Runtime": 24875,
+ "▁diagn": 24876,
+ "▁retro": 24877,
+ "▁Sverige": 24878,
+ "▁inicial": 24879,
+ "ienza": 24880,
+ "▁figlio": 24881,
+ "▁zog": 24882,
+ "▁rey": 24883,
+ "▁Rund": 24884,
+ "тный": 24885,
+ "▁ceased": 24886,
+ "erno": 24887,
+ "▁esa": 24888,
+ "▁trouv": 24889,
+ "▁Gemeinden": 24890,
+ "▁comercial": 24891,
+ "skap": 24892,
+ "enario": 24893,
+ "▁juris": 24894,
+ "TB": 24895,
+ "нала": 24896,
+ "▁vij": 24897,
+ "VO": 24898,
+ "▁clin": 24899,
+ "jör": 24900,
+ "сан": 24901,
+ "owała": 24902,
+ "ribución": 24903,
+ "▁ursprüng": 24904,
+ "▁condem": 24905,
+ "▁Stage": 24906,
+ "▁mixing": 24907,
+ "▁різ": 24908,
+ "▁fans": 24909,
+ "ház": 24910,
+ "social": 24911,
+ "zan": 24912,
+ "▁свой": 24913,
+ "Cookie": 24914,
+ "▁Roland": 24915,
+ "azionale": 24916,
+ "▁Sloven": 24917,
+ "▁Fiche": 24918,
+ "▁Sé": 24919,
+ "hä": 24920,
+ "▁officials": 24921,
+ "▁înt": 24922,
+ "Interceptor": 24923,
+ "Tables": 24924,
+ "▁davon": 24925,
+ "initialize": 24926,
+ "]=\"": 24927,
+ "▁Body": 24928,
+ "▁Upper": 24929,
+ "▁Collect": 24930,
+ "▁Zürich": 24931,
+ "Horizontal": 24932,
+ "Typ": 24933,
+ "▁político": 24934,
+ "▁RewriteCond": 24935,
+ "▁hoped": 24936,
+ "▁anxious": 24937,
+ "Liter": 24938,
+ "jahr": 24939,
+ "▁assemble": 24940,
+ "▁crypt": 24941,
+ "lahoma": 24942,
+ "ASH": 24943,
+ "▁Бри": 24944,
+ "▁Cic": 24945,
+ "twitter": 24946,
+ "hyper": 24947,
+ "▁Tell": 24948,
+ "ільки": 24949,
+ "вобо": 24950,
+ "▁bazie": 24951,
+ "▁contemporary": 24952,
+ "▁Parameter": 24953,
+ "stwa": 24954,
+ "▁bekend": 24955,
+ "cock": 24956,
+ "previous": 24957,
+ "enska": 24958,
+ "▁caller": 24959,
+ "]])": 24960,
+ "▁Raz": 24961,
+ "▁Selon": 24962,
+ "▁proposal": 24963,
+ "▁bý": 24964,
+ "▁Sied": 24965,
+ "▁Arbeits": 24966,
+ "▁pride": 24967,
+ "▁slope": 24968,
+ "idé": 24969,
+ "gradient": 24970,
+ "▁Джерела": 24971,
+ "▁SH": 24972,
+ "▁разрабо": 24973,
+ "iversity": 24974,
+ "сподар": 24975,
+ "\\{\\": 24976,
+ "▁стали": 24977,
+ "▁Einzel": 24978,
+ "▁rgba": 24979,
+ "▁Anim": 24980,
+ "▁alles": 24981,
+ "бар": 24982,
+ "erte": 24983,
+ "▁réalisé": 24984,
+ "Institut": 24985,
+ "▁markup": 24986,
+ "▁vars": 24987,
+ "▁gam": 24988,
+ "▁Василь": 24989,
+ "izza": 24990,
+ "▁Cob": 24991,
+ "▁Metal": 24992,
+ "▁leak": 24993,
+ "▁Lanc": 24994,
+ "Switch": 24995,
+ "Delay": 24996,
+ "atuur": 24997,
+ "▁четы": 24998,
+ "▁англий": 24999,
+ "▁legacy": 25000,
+ "▁desarroll": 25001,
+ "▁topological": 25002,
+ "▁jeweils": 25003,
+ "▁Nederlandse": 25004,
+ "▁atmosphere": 25005,
+ "urban": 25006,
+ "▁slov": 25007,
+ "▁lawyer": 25008,
+ "pecially": 25009,
+ "▁alternate": 25010,
+ "▁paramet": 25011,
+ "▁establishment": 25012,
+ "▁woods": 25013,
+ "PD": 25014,
+ "▁наи": 25015,
+ "▁mang": 25016,
+ "▁wechselte": 25017,
+ "ську": 25018,
+ ".=": 25019,
+ "▁fifteen": 25020,
+ "SUM": 25021,
+ "▁Fro": 25022,
+ "▁LED": 25023,
+ "owano": 25024,
+ "ствие": 25025,
+ "▁Données": 25026,
+ "tol": 25027,
+ "żyn": 25028,
+ "cref": 25029,
+ "ствии": 25030,
+ "horn": 25031,
+ "▁сооб": 25032,
+ "▁оборо": 25033,
+ "▁Complete": 25034,
+ "“)": 25035,
+ "▁kindly": 25036,
+ "▁Chamber": 25037,
+ "ség": 25038,
+ "WH": 25039,
+ "▁ambient": 25040,
+ "кро": 25041,
+ "▁cheval": 25042,
+ "▁написа": 25043,
+ "flu": 25044,
+ "▁Offiz": 25045,
+ "mate": 25046,
+ "natural": 25047,
+ "separ": 25048,
+ "empre": 25049,
+ "ViewHolder": 25050,
+ "fw": 25051,
+ "▁letech": 25052,
+ "▁trailing": 25053,
+ "atri": 25054,
+ "▁Gó": 25055,
+ "▁Bonn": 25056,
+ "▁unlikely": 25057,
+ "RAM": 25058,
+ "enst": 25059,
+ "Stats": 25060,
+ "▁политиче": 25061,
+ ")--(": 25062,
+ "▁trom": 25063,
+ "!...": 25064,
+ "▁Meanwhile": 25065,
+ "стана": 25066,
+ "▁Reino": 25067,
+ "▁Arist": 25068,
+ "$}}%": 25069,
+ "▁solem": 25070,
+ "closure": 25071,
+ "ignation": 25072,
+ "łod": 25073,
+ "▁divor": 25074,
+ "▁международ": 25075,
+ "=\"": 25076,
+ "▁molt": 25077,
+ "▁skills": 25078,
+ "▁Cir": 25079,
+ "▁Después": 25080,
+ "▁lun": 25081,
+ "▁coron": 25082,
+ "▁Comics": 25083,
+ "стори": 25084,
+ "▁Items": 25085,
+ "▁Think": 25086,
+ "игра": 25087,
+ "▁grows": 25088,
+ "portal": 25089,
+ "▁nich": 25090,
+ "▁restrictions": 25091,
+ "▁Lau": 25092,
+ "шення": 25093,
+ "▁Sozial": 25094,
+ "▁кі": 25095,
+ "mana": 25096,
+ "▁lieutenant": 25097,
+ "Attr": 25098,
+ "umeric": 25099,
+ "▁drives": 25100,
+ "asis": 25101,
+ "бай": 25102,
+ "NL": 25103,
+ "Zygote": 25104,
+ "physics": 25105,
+ "▁internally": 25106,
+ "вается": 25107,
+ "Hidden": 25108,
+ "▁Дата": 25109,
+ "▁unsafe": 25110,
+ "▁Roc": 25111,
+ "▁instantiate": 25112,
+ "udni": 25113,
+ "▁Room": 25114,
+ "▁Пред": 25115,
+ "▁maja": 25116,
+ "achment": 25117,
+ "uuid": 25118,
+ "Projects": 25119,
+ "Gre": 25120,
+ "▁взя": 25121,
+ "▁Blood": 25122,
+ "icile": 25123,
+ "▁Nouvelle": 25124,
+ "Does": 25125,
+ "▁nieuwe": 25126,
+ "ále": 25127,
+ "angs": 25128,
+ "weak": 25129,
+ "▁aantal": 25130,
+ "▁Ев": 25131,
+ "▁Dresden": 25132,
+ "▁Lost": 25133,
+ "ката": 25134,
+ "▁involve": 25135,
+ "▁declaring": 25136,
+ "▁Political": 25137,
+ "érez": 25138,
+ "kop": 25139,
+ "notify": 25140,
+ "▁Curt": 25141,
+ "▁schließlich": 25142,
+ "ghan": 25143,
+ "цена": 25144,
+ "▁kwiet": 25145,
+ "ügel": 25146,
+ "▁Sob": 25147,
+ "▁substr": 25148,
+ "▁ellen": 25149,
+ "ionario": 25150,
+ "enson": 25151,
+ "WIN": 25152,
+ "спорт": 25153,
+ "emer": 25154,
+ "nome": 25155,
+ "▁smiled": 25156,
+ "▁Schmidt": 25157,
+ "▁smoke": 25158,
+ "▁Token": 25159,
+ "▁vague": 25160,
+ "▁provision": 25161,
+ "yaml": 25162,
+ "нитель": 25163,
+ "onial": 25164,
+ "époque": 25165,
+ "▁NC": 25166,
+ "▁NFL": 25167,
+ "teck": 25168,
+ "▁allo": 25169,
+ "▁précéd": 25170,
+ "central": 25171,
+ "▁majd": 25172,
+ "▁chrom": 25173,
+ "▁Zum": 25174,
+ "verso": 25175,
+ "▁verschiedenen": 25176,
+ "▁старо": 25177,
+ "▁quelle": 25178,
+ "▁rép": 25179,
+ "ROW": 25180,
+ "▁ihnen": 25181,
+ "▁sensible": 25182,
+ "|$": 25183,
+ "▁schw": 25184,
+ "▁BR": 25185,
+ "▁Options": 25186,
+ "▁tens": 25187,
+ "▁conquist": 25188,
+ "▁ließ": 25189,
+ "ovis": 25190,
+ "▁міста": 25191,
+ "▁ela": 25192,
+ "rifice": 25193,
+ "▁lok": 25194,
+ "▁Queensland": 25195,
+ "Binary": 25196,
+ "▁Rahmen": 25197,
+ "▁abol": 25198,
+ "▁část": 25199,
+ "▁Edinburgh": 25200,
+ "inde": 25201,
+ "▁calculating": 25202,
+ "▁Oregon": 25203,
+ "▁legit": 25204,
+ "▁Nachdem": 25205,
+ "athon": 25206,
+ "Private": 25207,
+ "illaume": 25208,
+ "▁observable": 25209,
+ "leans": 25210,
+ "▁remarked": 25211,
+ "▁halt": 25212,
+ "ницы": 25213,
+ "▁stamp": 25214,
+ "▁Adv": 25215,
+ "Louis": 25216,
+ "imming": 25217,
+ "gruppe": 25218,
+ "▁Policy": 25219,
+ "▁vrij": 25220,
+ "ftrag": 25221,
+ "▁offices": 25222,
+ "▁participated": 25223,
+ "▁escol": 25224,
+ "▁\"": 25225,
+ "▁nombreuses": 25226,
+ "▁divid": 25227,
+ "▁advis": 25228,
+ "лтати": 25229,
+ "▁==>": 25230,
+ "Orientation": 25231,
+ "cid": 25232,
+ "Cart": 25233,
+ "▁murm": 25234,
+ "▁assez": 25235,
+ "▁linking": 25236,
+ "building": 25237,
+ "▁reconna": 25238,
+ "▁shook": 25239,
+ "managed": 25240,
+ "landa": 25241,
+ "▁León": 25242,
+ "▁création": 25243,
+ "дой": 25244,
+ "ocity": 25245,
+ "▁wij": 25246,
+ "▁wieś": 25247,
+ "xtart": 25248,
+ "▁Move": 25249,
+ "lungen": 25250,
+ "ствует": 25251,
+ "orney": 25252,
+ "optional": 25253,
+ "macro": 25254,
+ "Condition": 25255,
+ "▁squares": 25256,
+ "▁mistaken": 25257,
+ "ánt": 25258,
+ "▁Ris": 25259,
+ "▁sentences": 25260,
+ "erea": 25261,
+ "▁mij": 25262,
+ "Und": 25263,
+ "▁nombr": 25264,
+ "zA": 25265,
+ "▁Independent": 25266,
+ "▁preview": 25267,
+ "imas": 25268,
+ "▁males": 25269,
+ "inental": 25270,
+ "Thank": 25271,
+ "▁popol": 25272,
+ "▁pover": 25273,
+ "▁grasp": 25274,
+ "▁imped": 25275,
+ "▁campionato": 25276,
+ "▁Wei": 25277,
+ "▁titled": 25278,
+ "▁Además": 25279,
+ "▁Password": 25280,
+ "▁Pam": 25281,
+ "UILD": 25282,
+ "▁липня": 25283,
+ "werb": 25284,
+ "................": 25285,
+ "▁Río": 25286,
+ "▁teeth": 25287,
+ "bp": 25288,
+ "▁SW": 25289,
+ "ulaire": 25290,
+ "▁seized": 25291,
+ "▁Stef": 25292,
+ "úl": 25293,
+ "▁viz": 25294,
+ "iony": 25295,
+ "▁junt": 25296,
+ "▁která": 25297,
+ "▁września": 25298,
+ "<>": 25299,
+ "▁surg": 25300,
+ "▁tutte": 25301,
+ "▁Hob": 25302,
+ "повід": 25303,
+ "▁wohl": 25304,
+ "▁trag": 25305,
+ "▁Crown": 25306,
+ "▁trova": 25307,
+ "стову": 25308,
+ "▁Vienna": 25309,
+ "esehen": 25310,
+ "▁metropol": 25311,
+ "▁reflected": 25312,
+ "тета": 25313,
+ "▁traduc": 25314,
+ "▁Bast": 25315,
+ "▁erschien": 25316,
+ "woord": 25317,
+ "()\"": 25318,
+ "talet": 25319,
+ "▁roads": 25320,
+ "ведения": 25321,
+ "ührung": 25322,
+ "▁cogn": 25323,
+ "▁Valle": 25324,
+ "▁landing": 25325,
+ "▁Regex": 25326,
+ "▁Iowa": 25327,
+ "dział": 25328,
+ "▁erreichte": 25329,
+ "aum": 25330,
+ "▁founder": 25331,
+ "apolis": 25332,
+ "Compiler": 25333,
+ "▁kop": 25334,
+ "▁marc": 25335,
+ "▁територ": 25336,
+ "))`": 25337,
+ "▁lei": 25338,
+ "geon": 25339,
+ "▁weapons": 25340,
+ "▁horn": 25341,
+ "▁elif": 25342,
+ "▁Capital": 25343,
+ "će": 25344,
+ "▁forall": 25345,
+ "▁эта": 25346,
+ "preview": 25347,
+ "▁DNA": 25348,
+ "▁sid": 25349,
+ "orch": 25350,
+ "▁Ras": 25351,
+ "▁arab": 25352,
+ "Best": 25353,
+ "▁счита": 25354,
+ "▁López": 25355,
+ "ança": 25356,
+ "▁funkc": 25357,
+ "▁tienen": 25358,
+ ";&": 25359,
+ "museum": 25360,
+ "▁Err": 25361,
+ "▁resort": 25362,
+ "Nov": 25363,
+ "▁kal": 25364,
+ "MW": 25365,
+ "шь": 25366,
+ "anchor": 25367,
+ "▁роман": 25368,
+ "leading": 25369,
+ "▁manten": 25370,
+ "▁Silva": 25371,
+ "dade": 25372,
+ "▁designated": 25373,
+ "▁revista": 25374,
+ "Oct": 25375,
+ "percent": 25376,
+ "▁уні": 25377,
+ "identifier": 25378,
+ "mass": 25379,
+ "@@": 25380,
+ "ulsion": 25381,
+ "germeister": 25382,
+ "▁predicted": 25383,
+ "▁сви": 25384,
+ "жной": 25385,
+ "▁Ergeb": 25386,
+ "▁cust": 25387,
+ "▁removes": 25388,
+ "charg": 25389,
+ "пример": 25390,
+ "▁forming": 25391,
+ "asma": 25392,
+ "stdout": 25393,
+ "Fun": 25394,
+ "yme": 25395,
+ "tered": 25396,
+ "ursive": 25397,
+ "ighed": 25398,
+ "▁след": 25399,
+ "verband": 25400,
+ "▁LOG": 25401,
+ "rams": 25402,
+ "éon": 25403,
+ "endra": 25404,
+ "▁Bereich": 25405,
+ "▁temporal": 25406,
+ "▁langue": 25407,
+ "▁Inn": 25408,
+ "▁moreover": 25409,
+ "▁tutorials": 25410,
+ "Middle": 25411,
+ "▁советский": 25412,
+ "▁maintenance": 25413,
+ "asures": 25414,
+ "▁válto": 25415,
+ "BASE": 25416,
+ "▁disappear": 25417,
+ "ския": 25418,
+ "▁conocido": 25419,
+ "▁Нау": 25420,
+ "▁Libert": 25421,
+ "▁Harold": 25422,
+ "▁lifetime": 25423,
+ "▁Tür": 25424,
+ "▁zawod": 25425,
+ "omic": 25426,
+ "▁Retrieved": 25427,
+ "architecture": 25428,
+ "čka": 25429,
+ "iformes": 25430,
+ "development": 25431,
+ "ordnung": 25432,
+ "Inf": 25433,
+ "leben": 25434,
+ "▁Stars": 25435,
+ "signal": 25436,
+ "▁grammar": 25437,
+ "▁corso": 25438,
+ "▁Wagner": 25439,
+ "▁geht": 25440,
+ "▁royale": 25441,
+ "warn": 25442,
+ "umbled": 25443,
+ "▁instit": 25444,
+ "▁Ши": 25445,
+ "hh": 25446,
+ "▁refuge": 25447,
+ "▁favorite": 25448,
+ "ierto": 25449,
+ "▁condado": 25450,
+ "▁Ther": 25451,
+ "▁человека": 25452,
+ "▁Food": 25453,
+ "▁seizo": 25454,
+ "▁Initialize": 25455,
+ "▁connu": 25456,
+ "▁overlap": 25457,
+ "▁Emil": 25458,
+ "▁Martí": 25459,
+ "▁жовтня": 25460,
+ "erva": 25461,
+ "▁boats": 25462,
+ "ações": 25463,
+ "▁derrot": 25464,
+ "▁malloc": 25465,
+ "▁conject": 25466,
+ "jk": 25467,
+ "▁sare": 25468,
+ "лемен": 25469,
+ "▁sums": 25470,
+ "Authorization": 25471,
+ "▁Kun": 25472,
+ "]$,": 25473,
+ "gemeinde": 25474,
+ "odot": 25475,
+ "defin": 25476,
+ "▁emission": 25477,
+ "▁Крас": 25478,
+ "▁appart": 25479,
+ "▁stopping": 25480,
+ "▁Сред": 25481,
+ "▁conjug": 25482,
+ "▁insight": 25483,
+ "▁Broadcast": 25484,
+ "▁PMID": 25485,
+ "▁advantages": 25486,
+ "enes": 25487,
+ "▁residence": 25488,
+ "ljen": 25489,
+ "isseur": 25490,
+ "▁pubblicato": 25491,
+ "▁GitHub": 25492,
+ "▁Peru": 25493,
+ "▁galaxies": 25494,
+ "▁annotations": 25495,
+ "gas": 25496,
+ "▁répond": 25497,
+ "Js": 25498,
+ "▁independently": 25499,
+ "NP": 25500,
+ "▁inqu": 25501,
+ "▁grounds": 25502,
+ "Components": 25503,
+ "▁anten": 25504,
+ "▁вз": 25505,
+ "▁hos": 25506,
+ "▁sint": 25507,
+ "▁hiding": 25508,
+ "▁województ": 25509,
+ "Messages": 25510,
+ "▁показа": 25511,
+ "===": 25512,
+ "▁Abstract": 25513,
+ "▁läng": 25514,
+ "▁Formula": 25515,
+ "dawn": 25516,
+ "▁designs": 25517,
+ "Img": 25518,
+ "▁Portuguese": 25519,
+ "▁incluy": 25520,
+ "avigator": 25521,
+ "▁Brothers": 25522,
+ "▁continent": 25523,
+ "▁evidently": 25524,
+ "race": 25525,
+ "цького": 25526,
+ "▁reck": 25527,
+ "▁серпня": 25528,
+ "▁Grey": 25529,
+ "▁appeal": 25530,
+ "▁unlike": 25531,
+ "▁powershell": 25532,
+ "▁racc": 25533,
+ "fers": 25534,
+ "▁burning": 25535,
+ "fasst": 25536,
+ "installed": 25537,
+ "▁Give": 25538,
+ "▁colonial": 25539,
+ "▁€": 25540,
+ "▁Rö": 25541,
+ "▁christ": 25542,
+ "nehm": 25543,
+ "там": 25544,
+ "▁corpo": 25545,
+ "▁convirti": 25546,
+ "yter": 25547,
+ "Sym": 25548,
+ "▁Greece": 25549,
+ "▁moth": 25550,
+ "▁Johan": 25551,
+ "▁monarch": 25552,
+ "▁Download": 25553,
+ "▁craft": 25554,
+ "už": 25555,
+ "▁Luke": 25556,
+ "▁suffix": 25557,
+ "\\/": 25558,
+ "Have": 25559,
+ "▁карь": 25560,
+ "▁comfortable": 25561,
+ "▁tips": 25562,
+ "▁Після": 25563,
+ "▁броја": 25564,
+ "▁информа": 25565,
+ "MQ": 25566,
+ "бран": 25567,
+ "▁tx": 25568,
+ "▁slaves": 25569,
+ "▁firewall": 25570,
+ "▁Forces": 25571,
+ "atif": 25572,
+ "▁Quellen": 25573,
+ "▁théâtre": 25574,
+ "льных": 25575,
+ "▁расположен": 25576,
+ "▁Details": 25577,
+ "ką": 25578,
+ "▁longitud": 25579,
+ "INST": 25580,
+ "▁naval": 25581,
+ "Fernseh": 25582,
+ "essel": 25583,
+ "Grad": 25584,
+ "▁belang": 25585,
+ "▁aggi": 25586,
+ "ZygoteInit": 25587,
+ "łów": 25588,
+ "▁Sug": 25589,
+ "sil": 25590,
+ "▁exterior": 25591,
+ "щі": 25592,
+ "ORD": 25593,
+ "enser": 25594,
+ "▁rapide": 25595,
+ "▁темпера": 25596,
+ "incie": 25597,
+ "Si": 25598,
+ "avam": 25599,
+ "arded": 25600,
+ "▁Added": 25601,
+ "Endpoint": 25602,
+ "hardt": 25603,
+ "стран": 25604,
+ "▁estilo": 25605,
+ "▁Haz": 25606,
+ "▁musste": 25607,
+ "uo": 25608,
+ "iii": 25609,
+ "▁ří": 25610,
+ "anzen": 25611,
+ "жений": 25612,
+ "aha": 25613,
+ "ARNING": 25614,
+ "▁renov": 25615,
+ "▁divine": 25616,
+ "▁convinced": 25617,
+ "▁humans": 25618,
+ "▁departure": 25619,
+ "▁Mediter": 25620,
+ "qa": 25621,
+ "▁possessed": 25622,
+ "▁церкви": 25623,
+ "giv": 25624,
+ "▁свої": 25625,
+ "▁Ortste": 25626,
+ "Rich": 25627,
+ "puis": 25628,
+ "increment": 25629,
+ "▁Hannover": 25630,
+ "▁ucz": 25631,
+ "Done": 25632,
+ "▁alguns": 25633,
+ "FIX": 25634,
+ "▁Heritage": 25635,
+ "removeClass": 25636,
+ "фер": 25637,
+ "▁abc": 25638,
+ "Dr": 25639,
+ "▁семей": 25640,
+ "{:": 25641,
+ "▁seule": 25642,
+ "zeichnungen": 25643,
+ "addy": 25644,
+ "▁París": 25645,
+ "üsseld": 25646,
+ "▁reception": 25647,
+ "folio": 25648,
+ "tiny": 25649,
+ "▁recensement": 25650,
+ "▁Nur": 25651,
+ "▁kier": 25652,
+ "▁gmina": 25653,
+ "staat": 25654,
+ "ándose": 25655,
+ "ческая": 25656,
+ "▁speaker": 25657,
+ "▁exponential": 25658,
+ "▁Dieu": 25659,
+ "▁приз": 25660,
+ "▁Rafael": 25661,
+ "▁ggplot": 25662,
+ "▁Template": 25663,
+ "oure": 25664,
+ "▁Inner": 25665,
+ "ogne": 25666,
+ "igare": 25667,
+ "▁Arte": 25668,
+ "▁Cov": 25669,
+ "▁aufgrund": 25670,
+ "▁Бы": 25671,
+ "▁ceremony": 25672,
+ "▁Spart": 25673,
+ "jective": 25674,
+ "yi": 25675,
+ "▁inizi": 25676,
+ "▁latin": 25677,
+ "▁Nevertheless": 25678,
+ "▁Done": 25679,
+ "тря": 25680,
+ "▁Arr": 25681,
+ "season": 25682,
+ "▁складу": 25683,
+ "▁podczas": 25684,
+ "▁Beautiful": 25685,
+ "▁Weltkrieg": 25686,
+ "▁зо": 25687,
+ "▁overcome": 25688,
+ "▁Praha": 25689,
+ "▁району": 25690,
+ "▁subscription": 25691,
+ "igent": 25692,
+ "▁пока": 25693,
+ "latex": 25694,
+ "▁beach": 25695,
+ "▁роках": 25696,
+ "geg": 25697,
+ "▁probl": 25698,
+ "arguments": 25699,
+ "▁organizations": 25700,
+ "▁Nan": 25701,
+ "▁stones": 25702,
+ "▁Hunter": 25703,
+ "▁regularly": 25704,
+ "шого": 25705,
+ "▁flexible": 25706,
+ "opts": 25707,
+ "ář": 25708,
+ "witz": 25709,
+ "▁')": 25710,
+ "PASS": 25711,
+ "▁kraj": 25712,
+ "▁fake": 25713,
+ "heits": 25714,
+ "osph": 25715,
+ "parseInt": 25716,
+ "FALSE": 25717,
+ "▁profess": 25718,
+ "people": 25719,
+ "▁precip": 25720,
+ "dirname": 25721,
+ "▁perpet": 25722,
+ "▁Updated": 25723,
+ "rayed": 25724,
+ "▁provoc": 25725,
+ "▁травня": 25726,
+ "▁categorie": 25727,
+ "▁тео": 25728,
+ "сну": 25729,
+ "otr": 25730,
+ "▁Верхов": 25731,
+ "▁compét": 25732,
+ "Cost": 25733,
+ "▁wider": 25734,
+ "▁Obviously": 25735,
+ "писан": 25736,
+ "▁настоя": 25737,
+ "▁seeking": 25738,
+ "()),": 25739,
+ "▁équipe": 25740,
+ "▁commits": 25741,
+ "▁Svens": 25742,
+ "ябре": 25743,
+ "atern": 25744,
+ "▁heter": 25745,
+ "▁Bootstrap": 25746,
+ "éné": 25747,
+ "▁derivatives": 25748,
+ "▁Detroit": 25749,
+ "▁provincial": 25750,
+ "onomie": 25751,
+ "EB": 25752,
+ "▁cuer": 25753,
+ "▁относи": 25754,
+ "▁ней": 25755,
+ ")».": 25756,
+ "▁Ciudad": 25757,
+ "IAL": 25758,
+ "zyst": 25759,
+ ")\")": 25760,
+ "▁Alc": 25761,
+ "blogs": 25762,
+ "▁parmi": 25763,
+ "▁Albums": 25764,
+ "▁Boliv": 25765,
+ "▁clés": 25766,
+ "Products": 25767,
+ "uerdo": 25768,
+ "▁gelang": 25769,
+ "znik": 25770,
+ "hagen": 25771,
+ "anonymous": 25772,
+ "▁svg": 25773,
+ "▁Conseil": 25774,
+ "▁Ari": 25775,
+ "coli": 25776,
+ "▁czy": 25777,
+ "▁CV": 25778,
+ "▁ford": 25779,
+ "▁Außer": 25780,
+ "▁CI": 25781,
+ "▁tempt": 25782,
+ "▁Organisation": 25783,
+ "áš": 25784,
+ "▁cycles": 25785,
+ "▁geslacht": 25786,
+ "▁людей": 25787,
+ "ými": 25788,
+ "▁Spieler": 25789,
+ "efe": 25790,
+ "▁Marvel": 25791,
+ "▁portal": 25792,
+ "▁Серг": 25793,
+ "▁grado": 25794,
+ "▁handlers": 25795,
+ "▁Interface": 25796,
+ "AME": 25797,
+ "▁seriously": 25798,
+ "▁Binding": 25799,
+ "▁Rang": 25800,
+ "▁nada": 25801,
+ "oce": 25802,
+ "▁integra": 25803,
+ "ocracy": 25804,
+ "▁альбо": 25805,
+ "▁stability": 25806,
+ "Uns": 25807,
+ "▁veter": 25808,
+ "------+": 25809,
+ "▁serait": 25810,
+ "▁omitted": 25811,
+ "▁uncertainty": 25812,
+ "onian": 25813,
+ "▁resto": 25814,
+ "▁желез": 25815,
+ "▁одной": 25816,
+ "▁Bevölkerung": 25817,
+ "▁Kraft": 25818,
+ "стр": 25819,
+ "▁Moscow": 25820,
+ "lane": 25821,
+ "arab": 25822,
+ "▁spole": 25823,
+ "▁своего": 25824,
+ "?:": 25825,
+ "START": 25826,
+ "▁интер": 25827,
+ "▁sympt": 25828,
+ "▁Lorenzo": 25829,
+ "▁ejec": 25830,
+ "▁prosper": 25831,
+ "DAT": 25832,
+ "лимпий": 25833,
+ "▁shapes": 25834,
+ "valueOf": 25835,
+ "▁associate": 25836,
+ "▁Medien": 25837,
+ "ENV": 25838,
+ "▁сре": 25839,
+ "▁државе": 25840,
+ "▁theories": 25841,
+ "heb": 25842,
+ "▁Wayne": 25843,
+ "▁StringBuilder": 25844,
+ "iwers": 25845,
+ "▁Maps": 25846,
+ "Phys": 25847,
+ "\\}\\": 25848,
+ "▁Parte": 25849,
+ "▁Hudson": 25850,
+ "лон": 25851,
+ "Lng": 25852,
+ "▁ры": 25853,
+ "стей": 25854,
+ "lau": 25855,
+ "ancer": 25856,
+ "▁Coppa": 25857,
+ "▁війсь": 25858,
+ "▁ucc": 25859,
+ "▁Pattern": 25860,
+ "▁garbage": 25861,
+ "▁González": 25862,
+ "▁Encyclop": 25863,
+ "etten": 25864,
+ "External": 25865,
+ "REF": 25866,
+ ">;": 25867,
+ "lijke": 25868,
+ "▁intersect": 25869,
+ "▁Unless": 25870,
+ "▁deeper": 25871,
+ "▁жі": 25872,
+ "dent": 25873,
+ "lef": 25874,
+ "▁chanson": 25875,
+ "▁diffus": 25876,
+ "▁primi": 25877,
+ "▁Wieder": 25878,
+ "▁aws": 25879,
+ "owana": 25880,
+ "▁sociale": 25881,
+ "ikk": 25882,
+ "льной": 25883,
+ "▁divisions": 25884,
+ "лосо": 25885,
+ "▁Claud": 25886,
+ "▁Ya": 25887,
+ "▁voce": 25888,
+ "▁Branch": 25889,
+ "▁fitted": 25890,
+ "orr": 25891,
+ "ôtel": 25892,
+ "stroke": 25893,
+ "listener": 25894,
+ "iman": 25895,
+ "восто": 25896,
+ "▁Shah": 25897,
+ "Introduction": 25898,
+ "▁newline": 25899,
+ "▁tile": 25900,
+ "']))": 25901,
+ "▁travaux": 25902,
+ "CONFIG": 25903,
+ "▁quadratic": 25904,
+ "onneur": 25905,
+ "▁Giorg": 25906,
+ "▁identific": 25907,
+ "éricaine": 25908,
+ "▁UIView": 25909,
+ "▁Liberal": 25910,
+ "▁Koch": 25911,
+ "▁Berliner": 25912,
+ "▁notifications": 25913,
+ "▁Susan": 25914,
+ "▁cadre": 25915,
+ "▁Kloster": 25916,
+ "▁examine": 25917,
+ "▁един": 25918,
+ "▁UNION": 25919,
+ "▁alten": 25920,
+ "▁finit": 25921,
+ "▁pedig": 25922,
+ "cyk": 25923,
+ "▁mouvement": 25924,
+ "IOS": 25925,
+ "▁британ": 25926,
+ "▁bout": 25927,
+ "▁автор": 25928,
+ "ництво": 25929,
+ "ето": 25930,
+ "lera": 25931,
+ "cls": 25932,
+ "▁Ley": 25933,
+ "amy": 25934,
+ "agens": 25935,
+ "ashed": 25936,
+ "▁okrę": 25937,
+ "гро": 25938,
+ "ellett": 25939,
+ "▁Fellow": 25940,
+ "▁manifold": 25941,
+ "$),": 25942,
+ "lder": 25943,
+ "▁voz": 25944,
+ "▁begg": 25945,
+ "▁baron": 25946,
+ "▁fid": 25947,
+ "▁firing": 25948,
+ "ilda": 25949,
+ "dek": 25950,
+ "AU": 25951,
+ "itare": 25952,
+ "▁Ara": 25953,
+ "▁Exit": 25954,
+ "▁cinemat": 25955,
+ "▁intros": 25956,
+ "▁contacts": 25957,
+ "пени": 25958,
+ "▁möglich": 25959,
+ "▁Singapore": 25960,
+ "ström": 25961,
+ "▁Hern": 25962,
+ "▁sixth": 25963,
+ "▁publications": 25964,
+ "vie": 25965,
+ "▁Hat": 25966,
+ "▁accepting": 25967,
+ "ác": 25968,
+ "stwo": 25969,
+ "▁quietly": 25970,
+ "Photo": 25971,
+ "▁basket": 25972,
+ "▁eigenvalues": 25973,
+ "▁médec": 25974,
+ "▁Olimp": 25975,
+ "▁церков": 25976,
+ "alin": 25977,
+ "consum": 25978,
+ "▁lassen": 25979,
+ "▁анти": 25980,
+ "▁Seq": 25981,
+ "\";\r": 25982,
+ "rare": 25983,
+ "▁$|\\": 25984,
+ "▁nick": 25985,
+ "dflare": 25986,
+ "Vec": 25987,
+ "bindung": 25988,
+ "▁bg": 25989,
+ "changes": 25990,
+ "Days": 25991,
+ "▁Mouse": 25992,
+ "▁waited": 25993,
+ "▁Tomatoes": 25994,
+ "▁fas": 25995,
+ "verte": 25996,
+ "▁succession": 25997,
+ "сор": 25998,
+ "▁sols": 25999,
+ "▁Render": 26000,
+ "▁leadership": 26001,
+ "▁significance": 26002,
+ "▁gauche": 26003,
+ "cano": 26004,
+ "▁Pie": 26005,
+ "ensoort": 26006,
+ "▁cambio": 26007,
+ "▁уз": 26008,
+ "▁endeav": 26009,
+ "Completed": 26010,
+ "▁Архивная": 26011,
+ "jd": 26012,
+ "órico": 26013,
+ "▁churches": 26014,
+ "▁animate": 26015,
+ "SG": 26016,
+ "compute": 26017,
+ "▁uniformly": 26018,
+ "INIT": 26019,
+ "lles": 26020,
+ "HttpRequest": 26021,
+ "Ко": 26022,
+ "Diff": 26023,
+ "▁sah": 26024,
+ "airo": 26025,
+ "maybe": 26026,
+ "UTE": 26027,
+ "▁Dow": 26028,
+ "human": 26029,
+ "▁aurait": 26030,
+ "dark": 26031,
+ "▁repair": 26032,
+ "▁ner": 26033,
+ "▁Dabei": 26034,
+ "▁Botan": 26035,
+ "Original": 26036,
+ "ază": 26037,
+ "▁NAT": 26038,
+ "imper": 26039,
+ "▁Youth": 26040,
+ "thes": 26041,
+ "▁округа": 26042,
+ "▁Flo": 26043,
+ "▁breakfast": 26044,
+ "urls": 26045,
+ "▁übernahm": 26046,
+ "ários": 26047,
+ "▁Orange": 26048,
+ "▁Affairs": 26049,
+ "ske": 26050,
+ "▁notify": 26051,
+ "imoine": 26052,
+ "▁Arena": 26053,
+ "▁liberal": 26054,
+ "▁obec": 26055,
+ "ifa": 26056,
+ "guez": 26057,
+ "iono": 26058,
+ "ператор": 26059,
+ "▁retained": 26060,
+ "failed": 26061,
+ "bine": 26062,
+ "тных": 26063,
+ "▁CGRect": 26064,
+ "camera": 26065,
+ "idenote": 26066,
+ "KB": 26067,
+ "▁lights": 26068,
+ "▁Pictures": 26069,
+ "▁Squadron": 26070,
+ "▁Volk": 26071,
+ "▁burg": 26072,
+ ",]": 26073,
+ "Gi": 26074,
+ "êque": 26075,
+ "makeText": 26076,
+ "▁everybody": 26077,
+ "▁Hyper": 26078,
+ "▁Deux": 26079,
+ "▁glory": 26080,
+ "presentation": 26081,
+ "onica": 26082,
+ "▁frère": 26083,
+ "aget": 26084,
+ "▁hints": 26085,
+ "▁tunnel": 26086,
+ "▁Ej": 26087,
+ "ális": 26088,
+ "▁Viv": 26089,
+ "ственных": 26090,
+ "▁caps": 26091,
+ "PART": 26092,
+ "oci": 26093,
+ "▁prices": 26094,
+ "currency": 26095,
+ "▁achter": 26096,
+ "romagnet": 26097,
+ "gender": 26098,
+ "▁suis": 26099,
+ "versions": 26100,
+ "▁Training": 26101,
+ "inside": 26102,
+ "ege": 26103,
+ "▁totale": 26104,
+ "▁Daar": 26105,
+ "▁grudnia": 26106,
+ "▁Ier": 26107,
+ "▁occasions": 26108,
+ "▁kde": 26109,
+ "▁tensorflow": 26110,
+ "▁ór": 26111,
+ "Methods": 26112,
+ "▁looping": 26113,
+ "▁directeur": 26114,
+ "kę": 26115,
+ "▁isomorphism": 26116,
+ "▁João": 26117,
+ "▁aligned": 26118,
+ "онов": 26119,
+ "urger": 26120,
+ "▁nova": 26121,
+ "morrow": 26122,
+ "altern": 26123,
+ "HD": 26124,
+ "▁marqu": 26125,
+ "ativas": 26126,
+ "ggreg": 26127,
+ "▁ancien": 26128,
+ "nit": 26129,
+ "▁secured": 26130,
+ "mier": 26131,
+ "▁Ole": 26132,
+ "▁инте": 26133,
+ "▁minus": 26134,
+ "▁clearer": 26135,
+ "▁nello": 26136,
+ "▁információk": 26137,
+ "▁propre": 26138,
+ "{.": 26139,
+ "ilog": 26140,
+ "▁Quick": 26141,
+ "▁accus": 26142,
+ "employee": 26143,
+ "▁зу": 26144,
+ "цький": 26145,
+ "фіцій": 26146,
+ "▁публи": 26147,
+ "▁bent": 26148,
+ "▁позво": 26149,
+ "▁Пор": 26150,
+ "ází": 26151,
+ "ánico": 26152,
+ "emptyset": 26153,
+ "▁surtout": 26154,
+ "reno": 26155,
+ "unya": 26156,
+ "▁уез": 26157,
+ "▁Millionen": 26158,
+ "▁listopada": 26159,
+ "▁Maine": 26160,
+ "▁grupos": 26161,
+ "▁Storage": 26162,
+ "▁apple": 26163,
+ "▁Lö": 26164,
+ "oused": 26165,
+ "дро": 26166,
+ "sci": 26167,
+ "▁hibernate": 26168,
+ "dog": 26169,
+ "▁восто": 26170,
+ "▁intensity": 26171,
+ "legend": 26172,
+ "▁Wille": 26173,
+ "▁szerint": 26174,
+ "gesellschaft": 26175,
+ "▁Living": 26176,
+ "allo": 26177,
+ "▁Split": 26178,
+ "dru": 26179,
+ "need": 26180,
+ "▁Джон": 26181,
+ "▁Swiss": 26182,
+ "▁spraw": 26183,
+ "▁beho": 26184,
+ "▁fotograf": 26185,
+ "▁rencontre": 26186,
+ "▁kis": 26187,
+ "▁signing": 26188,
+ "akult": 26189,
+ "▁indexing": 26190,
+ "apor": 26191,
+ "▁conception": 26192,
+ "aggreg": 26193,
+ "▁Савез": 26194,
+ "▁affair": 26195,
+ "ění": 26196,
+ "August": 26197,
+ "▁секре": 26198,
+ "▁mieszkań": 26199,
+ "UIImage": 26200,
+ "▁bishop": 26201,
+ "▁servants": 26202,
+ "▁trail": 26203,
+ "digit": 26204,
+ "▁joins": 26205,
+ "▁Near": 26206,
+ "öffentlich": 26207,
+ ">{": 26208,
+ "▁skład": 26209,
+ "geführt": 26210,
+ "▁Holz": 26211,
+ "▁Militär": 26212,
+ "achi": 26213,
+ "Upper": 26214,
+ "pine": 26215,
+ "utzt": 26216,
+ "▁nuova": 26217,
+ "ibration": 26218,
+ "▁Bien": 26219,
+ "▁первый": 26220,
+ "▁Creating": 26221,
+ "Once": 26222,
+ "▁einmal": 26223,
+ "▁geometric": 26224,
+ "stvo": 26225,
+ "▁kW": 26226,
+ "▁decomposition": 26227,
+ "▁comedy": 26228,
+ "▁activation": 26229,
+ "▁angry": 26230,
+ "illeurs": 26231,
+ "▁instantly": 26232,
+ "▁suggesting": 26233,
+ "▁Clay": 26234,
+ "cot": 26235,
+ "▁Gén": 26236,
+ "($(": 26237,
+ "unwrap": 26238,
+ "▁lifted": 26239,
+ "▁Kit": 26240,
+ "▁linea": 26241,
+ "ок": 26242,
+ "hart": 26243,
+ "->_": 26244,
+ "▁nuit": 26245,
+ "▁Issue": 26246,
+ "лии": 26247,
+ "▁röm": 26248,
+ "Tasks": 26249,
+ "▁Sr": 26250,
+ "▁seis": 26251,
+ "asia": 26252,
+ "}}$.": 26253,
+ ":{": 26254,
+ "controls": 26255,
+ "▁Stim": 26256,
+ "▁Recht": 26257,
+ "ociación": 26258,
+ "▁Natal": 26259,
+ "▁Philippines": 26260,
+ "ulen": 26261,
+ "Fixed": 26262,
+ "▁switched": 26263,
+ "Zip": 26264,
+ "ospel": 26265,
+ "▁начале": 26266,
+ "▁Blan": 26267,
+ "urst": 26268,
+ "▁autour": 26269,
+ "Ca": 26270,
+ "▁latitude": 26271,
+ "▁Frei": 26272,
+ "▁Musée": 26273,
+ "▁Kurz": 26274,
+ "▁região": 26275,
+ "swap": 26276,
+ "▁hate": 26277,
+ "▁modifications": 26278,
+ "▁Ком": 26279,
+ "▁Antoine": 26280,
+ "uga": 26281,
+ "RECT": 26282,
+ "éter": 26283,
+ "GROUP": 26284,
+ "▁sacrific": 26285,
+ "▁Whe": 26286,
+ "▁Stevens": 26287,
+ "ologische": 26288,
+ "Summary": 26289,
+ "obs": 26290,
+ "hnen": 26291,
+ "<%=": 26292,
+ "dienst": 26293,
+ "remark": 26294,
+ "▁veröffentlicht": 26295,
+ "ел": 26296,
+ "▁Mock": 26297,
+ "▁Льв": 26298,
+ "▁três": 26299,
+ "gb": 26300,
+ "▁celebrated": 26301,
+ "▁Eb": 26302,
+ "▁costa": 26303,
+ "▁Geographic": 26304,
+ "▁attachment": 26305,
+ "mannschaft": 26306,
+ "▁dependence": 26307,
+ "��": 26308,
+ "▁attitude": 26309,
+ "etal": 26310,
+ "vic": 26311,
+ "baut": 26312,
+ "▁дов": 26313,
+ "▁interven": 26314,
+ "▁Gü": 26315,
+ "ónica": 26316,
+ "▁Pon": 26317,
+ "▁disponible": 26318,
+ "▁Feb": 26319,
+ "▁worship": 26320,
+ "▁Specifically": 26321,
+ "Hy": 26322,
+ "iju": 26323,
+ "▁cb": 26324,
+ "▁spac": 26325,
+ "leveland": 26326,
+ "▁localidad": 26327,
+ "▁preceding": 26328,
+ "▁Hessen": 26329,
+ "xp": 26330,
+ "▁Wein": 26331,
+ "▁Româ": 26332,
+ "▁giorno": 26333,
+ "▁квітня": 26334,
+ "llaços": 26335,
+ "▁Academia": 26336,
+ "▁kül": 26337,
+ "▁Års": 26338,
+ "▁нај": 26339,
+ "uclide": 26340,
+ "Internet": 26341,
+ "orton": 26342,
+ "▁corn": 26343,
+ "ями": 26344,
+ "▁\"*": 26345,
+ "▁Felix": 26346,
+ "apat": 26347,
+ "▁свои": 26348,
+ "MIT": 26349,
+ "made": 26350,
+ "▁locomot": 26351,
+ "хода": 26352,
+ "FP": 26353,
+ "▁pm": 26354,
+ ".*;": 26355,
+ "▁Hamm": 26356,
+ "`}": 26357,
+ "LayoutInflater": 26358,
+ "==\"": 26359,
+ "▁Eur": 26360,
+ "▁dogs": 26361,
+ "жении": 26362,
+ "▁azon": 26363,
+ "▁emulator": 26364,
+ "▁ricon": 26365,
+ "beeld": 26366,
+ "▁ну": 26367,
+ "▁approximate": 26368,
+ "LM": 26369,
+ "▁Bond": 26370,
+ "▁enh": 26371,
+ "ędz": 26372,
+ "▁solit": 26373,
+ "RelativeLayout": 26374,
+ "eteor": 26375,
+ "amentos": 26376,
+ "▁indirect": 26377,
+ "iből": 26378,
+ "▁gros": 26379,
+ "▁Originals": 26380,
+ "commands": 26381,
+ "Export": 26382,
+ "▁Avec": 26383,
+ "▁solemn": 26384,
+ "▁correction": 26385,
+ "▁проводи": 26386,
+ "▁Mosk": 26387,
+ "▁подо": 26388,
+ "▁gebied": 26389,
+ "▁następ": 26390,
+ "▁Driver": 26391,
+ "▁Ook": 26392,
+ "▁Vec": 26393,
+ "▁lungo": 26394,
+ "ficos": 26395,
+ "▁svol": 26396,
+ "▁kid": 26397,
+ "nja": 26398,
+ "▁Hr": 26399,
+ "▁поддер": 26400,
+ "▁visibility": 26401,
+ "▁Méd": 26402,
+ "▁cpu": 26403,
+ "discussion": 26404,
+ "Asset": 26405,
+ "▁defense": 26406,
+ "▁Anyone": 26407,
+ "▁Justin": 26408,
+ "iszt": 26409,
+ "▁Collins": 26410,
+ "▁Valent": 26411,
+ "▁Pale": 26412,
+ "▁fuel": 26413,
+ "▁nose": 26414,
+ "ríguez": 26415,
+ "▁Schles": 26416,
+ "▁Malays": 26417,
+ "▁commut": 26418,
+ "dro": 26419,
+ "uing": 26420,
+ "▁Rico": 26421,
+ "▁Emma": 26422,
+ "orp": 26423,
+ "▁Kirk": 26424,
+ "▁Quando": 26425,
+ "▁Neue": 26426,
+ "▁demande": 26427,
+ "▁Cover": 26428,
+ "▁rescue": 26429,
+ "▁gewählt": 26430,
+ "▁Calendar": 26431,
+ "▁Madonna": 26432,
+ "WP": 26433,
+ "oshi": 26434,
+ "▁Maven": 26435,
+ "▁belle": 26436,
+ "▁wx": 26437,
+ "▁sugar": 26438,
+ "▁Betrieb": 26439,
+ "▁equilibrium": 26440,
+ "EAR": 26441,
+ "▁texts": 26442,
+ "слов": 26443,
+ "▁czerwca": 26444,
+ "▁Düsseld": 26445,
+ "▁ELSE": 26446,
+ "▁amery": 26447,
+ "▁ani": 26448,
+ "▁obey": 26449,
+ "▁Nell": 26450,
+ "▁inne": 26451,
+ "▁тро": 26452,
+ "FD": 26453,
+ "cco": 26454,
+ "▁Zob": 26455,
+ "alette": 26456,
+ "▁május": 26457,
+ "ected": 26458,
+ "▁Turkey": 26459,
+ "▁Whether": 26460,
+ "qi": 26461,
+ "▁што": 26462,
+ "▁headquarters": 26463,
+ "endi": 26464,
+ "arus": 26465,
+ "opus": 26466,
+ "▁золо": 26467,
+ "▁destru": 26468,
+ "▁Lok": 26469,
+ "▁satisfaction": 26470,
+ "()\r": 26471,
+ "▁Тер": 26472,
+ "Jose": 26473,
+ "▁conquer": 26474,
+ "▁Effect": 26475,
+ "LayoutParams": 26476,
+ "iez": 26477,
+ "▁externs": 26478,
+ "▁gegenüber": 26479,
+ "▁ESP": 26480,
+ "olta": 26481,
+ "processor": 26482,
+ "▁Kult": 26483,
+ "▁Atlanta": 26484,
+ "▁tier": 26485,
+ "Operator": 26486,
+ "▁диа": 26487,
+ "▁пись": 26488,
+ "▁groß": 26489,
+ "▁hearts": 26490,
+ "▁millimeter": 26491,
+ "although": 26492,
+ "alles": 26493,
+ "▁Magic": 26494,
+ "training": 26495,
+ "oline": 26496,
+ "▁органі": 26497,
+ ">\\<^": 26498,
+ "ціаль": 26499,
+ "exports": 26500,
+ "Workbook": 26501,
+ "▁вересня": 26502,
+ "▁teles": 26503,
+ "▁economy": 26504,
+ "▁trap": 26505,
+ "▁refuse": 26506,
+ "▁stranger": 26507,
+ "▁instinct": 26508,
+ "пода": 26509,
+ "olan": 26510,
+ "▁ning": 26511,
+ "inflate": 26512,
+ "itatea": 26513,
+ "acks": 26514,
+ "▁Joy": 26515,
+ "FLAG": 26516,
+ "ailand": 26517,
+ "▁sorti": 26518,
+ "▁впер": 26519,
+ "▁pén": 26520,
+ "Nothing": 26521,
+ "▁száz": 26522,
+ "▁Áng": 26523,
+ "▁AUT": 26524,
+ "Actions": 26525,
+ "Every": 26526,
+ "▁червня": 26527,
+ "▁автомо": 26528,
+ "▁routine": 26529,
+ "▁estruct": 26530,
+ "▁Gang": 26531,
+ "▁holes": 26532,
+ "thesis": 26533,
+ "▁concl": 26534,
+ "▁pé": 26535,
+ "riers": 26536,
+ "ровой": 26537,
+ "adic": 26538,
+ "Speed": 26539,
+ "▁commanded": 26540,
+ "▁Nazionale": 26541,
+ "Managed": 26542,
+ "▁DECLARE": 26543,
+ "▁sedan": 26544,
+ "Strings": 26545,
+ "▁sacred": 26546,
+ "tersuch": 26547,
+ "▁abitanti": 26548,
+ "brit": 26549,
+ "▁NCAA": 26550,
+ "▁СП": 26551,
+ "▁aged": 26552,
+ "▁Chiesa": 26553,
+ "▁revision": 26554,
+ "opro": 26555,
+ "▁overwrite": 26556,
+ "embros": 26557,
+ "▁sortie": 26558,
+ "▁otten": 26559,
+ "xiv": 26560,
+ "▁deli": 26561,
+ "▁Asp": 26562,
+ "▁balls": 26563,
+ "kaf": 26564,
+ "▁brave": 26565,
+ "▁всего": 26566,
+ "egn": 26567,
+ "jpeg": 26568,
+ "▁Osten": 26569,
+ "Constants": 26570,
+ "▁Infantry": 26571,
+ "▁Nev": 26572,
+ "▁яких": 26573,
+ "▁муниципа": 26574,
+ "cija": 26575,
+ "▁poem": 26576,
+ "▁negro": 26577,
+ "хар": 26578,
+ "▁Ask": 26579,
+ "▁avo": 26580,
+ "▁Meyer": 26581,
+ "▁Westen": 26582,
+ "▁oko": 26583,
+ "agin": 26584,
+ "▁Süden": 26585,
+ "entries": 26586,
+ "▁Republik": 26587,
+ "CollectionView": 26588,
+ "-------": 26589,
+ "▁firefox": 26590,
+ "▁alcune": 26591,
+ "▁фото": 26592,
+ "▁отрима": 26593,
+ "~~~~~~~~": 26594,
+ "▁Раз": 26595,
+ "▁Complex": 26596,
+ "▁pia": 26597,
+ "▁publicada": 26598,
+ "wei": 26599,
+ "cedure": 26600,
+ "occupation": 26601,
+ "▁medicine": 26602,
+ "▁drove": 26603,
+ "Problem": 26604,
+ "▁beginner": 26605,
+ "▁thoroughly": 26606,
+ "uria": 26607,
+ "avant": 26608,
+ "ucha": 26609,
+ "▁lever": 26610,
+ "▁teatro": 26611,
+ "AVA": 26612,
+ "squ": 26613,
+ "trat": 26614,
+ "ivatal": 26615,
+ "▁dirty": 26616,
+ "▁seconde": 26617,
+ "▁gravit": 26618,
+ "▁proposition": 26619,
+ "hbar": 26620,
+ "omini": 26621,
+ "▁”": 26622,
+ "▁Camil": 26623,
+ "▁queen": 26624,
+ "modifier": 26625,
+ "Jan": 26626,
+ "▁lyr": 26627,
+ "ComboBox": 26628,
+ "ionic": 26629,
+ "▁holy": 26630,
+ "▁Sebastian": 26631,
+ "|_{": 26632,
+ "▁{@": 26633,
+ "▁можно": 26634,
+ "▁Creative": 26635,
+ "▁interess": 26636,
+ "▁CT": 26637,
+ "ições": 26638,
+ "▁chant": 26639,
+ "▁współ": 26640,
+ "▁Мексика": 26641,
+ "▁ranked": 26642,
+ "▁października": 26643,
+ "▁brut": 26644,
+ "▁farther": 26645,
+ "▁Verb": 26646,
+ "▁Seven": 26647,
+ "lbl": 26648,
+ "▁mentions": 26649,
+ "▁Fight": 26650,
+ "ifen": 26651,
+ "▁bog": 26652,
+ "▁regres": 26653,
+ "▁scoring": 26654,
+ "icane": 26655,
+ "▁Elli": 26656,
+ "▁pierw": 26657,
+ "measure": 26658,
+ "ńskiej": 26659,
+ "#{": 26660,
+ "▁деся": 26661,
+ "▁varmaste": 26662,
+ "▁Unix": 26663,
+ "IZ": 26664,
+ "itié": 26665,
+ "Primary": 26666,
+ "▁Springer": 26667,
+ "üng": 26668,
+ "▁anv": 26669,
+ "▁versione": 26670,
+ "▁shoulders": 26671,
+ "▁брига": 26672,
+ "▁jav": 26673,
+ "ltal": 26674,
+ "▁kallaste": 26675,
+ "▁Mitchell": 26676,
+ "▁wireless": 26677,
+ "▁Ál": 26678,
+ "respons": 26679,
+ "could": 26680,
+ "▁relax": 26681,
+ "Lond": 26682,
+ "ńcz": 26683,
+ "ствовал": 26684,
+ "▁polski": 26685,
+ "enç": 26686,
+ "zar": 26687,
+ "▁dtype": 26688,
+ "owned": 26689,
+ "unknown": 26690,
+ "▁mutable": 26691,
+ "▁siempre": 26692,
+ "▁Montreal": 26693,
+ "▁locate": 26694,
+ "▁traces": 26695,
+ "▁insgesamt": 26696,
+ "▁Nil": 26697,
+ "▁прода": 26698,
+ "▁Warner": 26699,
+ "▁Nau": 26700,
+ "triangle": 26701,
+ "▁concentration": 26702,
+ "▁gentlemen": 26703,
+ "ächt": 26704,
+ "filters": 26705,
+ "incipal": 26706,
+ "VALID": 26707,
+ "▁депута": 26708,
+ "adó": 26709,
+ "▁konst": 26710,
+ "gså": 26711,
+ "agas": 26712,
+ "▁meilleur": 26713,
+ "▁данным": 26714,
+ "єдна": 26715,
+ "encoded": 26716,
+ "<'": 26717,
+ "▁sheets": 26718,
+ "cuador": 26719,
+ "▁використову": 26720,
+ "▁Deput": 26721,
+ "▁manière": 26722,
+ "ąg": 26723,
+ "csol": 26724,
+ ")$-": 26725,
+ "UIView": 26726,
+ "▁millones": 26727,
+ "▁Ehren": 26728,
+ "Sil": 26729,
+ "▁atac": 26730,
+ "▁Cold": 26731,
+ "\"\\": 26732,
+ "▁approached": 26733,
+ "▁Årsmed": 26734,
+ "WM": 26735,
+ "▁Deport": 26736,
+ "mis": 26737,
+ "andbox": 26738,
+ "observ": 26739,
+ "setting": 26740,
+ "ható": 26741,
+ "▁strat": 26742,
+ "▁spre": 26743,
+ "▁personne": 26744,
+ "▁dirige": 26745,
+ "pull": 26746,
+ "dating": 26747,
+ "▁Fact": 26748,
+ "▁manipulate": 26749,
+ "▁MAC": 26750,
+ "▁dej": 26751,
+ "ultimo": 26752,
+ "FX": 26753,
+ "Life": 26754,
+ "▁crack": 26755,
+ "▁mí": 26756,
+ "▁пове": 26757,
+ "▁wore": 26758,
+ "université": 26759,
+ "▁formulas": 26760,
+ "▁Elisabeth": 26761,
+ "plots": 26762,
+ "mile": 26763,
+ "▁menor": 26764,
+ "тил": 26765,
+ "keyword": 26766,
+ "▁Baltimore": 26767,
+ "hrer": 26768,
+ "▁Clement": 26769,
+ "vim": 26770,
+ "rass": 26771,
+ "Take": 26772,
+ "▁című": 26773,
+ "▁Convention": 26774,
+ "atge": 26775,
+ "seed": 26776,
+ "▁Dí": 26777,
+ "▁Spider": 26778,
+ "ahoo": 26779,
+ "▁имеет": 26780,
+ "ührt": 26781,
+ "▁пописа": 26782,
+ "▁Cot": 26783,
+ "▁nobles": 26784,
+ "RESS": 26785,
+ "▁chemin": 26786,
+ "▁główn": 26787,
+ "GG": 26788,
+ "▁Germania": 26789,
+ "▁Alexandre": 26790,
+ "hens": 26791,
+ "swift": 26792,
+ "oop": 26793,
+ "Subview": 26794,
+ "▁requiring": 26795,
+ "ędzy": 26796,
+ "▁fict": 26797,
+ "▁Констан": 26798,
+ "▁déput": 26799,
+ "▁surprising": 26800,
+ "▁deix": 26801,
+ "▁unterschied": 26802,
+ "inson": 26803,
+ "▁Character": 26804,
+ "▁gestion": 26805,
+ "chus": 26806,
+ "comes": 26807,
+ "▁neur": 26808,
+ "▁yeux": 26809,
+ "ollar": 26810,
+ "▁parad": 26811,
+ "▁maggiore": 26812,
+ "TRAN": 26813,
+ "▁votre": 26814,
+ "▁descent": 26815,
+ "▁Icon": 26816,
+ "▁Judge": 26817,
+ "▁occupation": 26818,
+ "eping": 26819,
+ "▁tongue": 26820,
+ "▁Enllaços": 26821,
+ "ruf": 26822,
+ "▁protein": 26823,
+ "▁visitors": 26824,
+ "axy": 26825,
+ "esten": 26826,
+ "blica": 26827,
+ "hw": 26828,
+ "▁spirits": 26829,
+ "▁reduces": 26830,
+ "▁мен": 26831,
+ "▁Lamb": 26832,
+ "▁Mine": 26833,
+ "▁verified": 26834,
+ "▁Baby": 26835,
+ "▁prize": 26836,
+ "вър": 26837,
+ "▁ratings": 26838,
+ "▁fore": 26839,
+ "asha": 26840,
+ "urrence": 26841,
+ "▁intér": 26842,
+ "▁Olímp": 26843,
+ "cra": 26844,
+ "▁computational": 26845,
+ "irche": 26846,
+ ".: ": 26847,
+ "▁illustrated": 26848,
+ "▁Share": 26849,
+ "▁households": 26850,
+ "▁convolution": 26851,
+ "oemd": 26852,
+ "▁zdoby": 26853,
+ "ccc": 26854,
+ "▁quantities": 26855,
+ "Che": 26856,
+ "Should": 26857,
+ "▁genius": 26858,
+ "adj": 26859,
+ "хва": 26860,
+ "Петер": 26861,
+ "EMA": 26862,
+ "▁Rights": 26863,
+ "▁Eli": 26864,
+ "VAR": 26865,
+ "шло": 26866,
+ "▁збір": 26867,
+ "iftung": 26868,
+ "▁contributed": 26869,
+ "zef": 26870,
+ "▁CHAR": 26871,
+ "▁Sib": 26872,
+ "▁Mant": 26873,
+ "▁связи": 26874,
+ "▁javafx": 26875,
+ "▁cependant": 26876,
+ "▁intu": 26877,
+ "▁твор": 26878,
+ "▁Ó": 26879,
+ "guer": 26880,
+ "rado": 26881,
+ "▁Revol": 26882,
+ "▁fémin": 26883,
+ "▁Orleans": 26884,
+ "▁poj": 26885,
+ "▁prez": 26886,
+ "Tex": 26887,
+ "ouwd": 26888,
+ "?(": 26889,
+ "▁LIM": 26890,
+ "istique": 26891,
+ "esar": 26892,
+ "▁heures": 26893,
+ "icki": 26894,
+ "▁dbo": 26895,
+ "skih": 26896,
+ "confirm": 26897,
+ "▁világ": 26898,
+ "▁ciutat": 26899,
+ "▁DR": 26900,
+ "▁Hawai": 26901,
+ "ched": 26902,
+ "▁spher": 26903,
+ "▁Artikel": 26904,
+ "▁Multiple": 26905,
+ "ciu": 26906,
+ "▁мы": 26907,
+ "▁lipca": 26908,
+ "](/": 26909,
+ "Strategy": 26910,
+ "▁Alabama": 26911,
+ "SDK": 26912,
+ "UTC": 26913,
+ "__.": 26914,
+ "Arguments": 26915,
+ "▁setContentView": 26916,
+ "île": 26917,
+ "ByVal": 26918,
+ "▁JVM": 26919,
+ "ющего": 26920,
+ "▁Leonard": 26921,
+ "▁justify": 26922,
+ "цем": 26923,
+ "▁nab": 26924,
+ "CCESS": 26925,
+ "▁hopes": 26926,
+ ")&": 26927,
+ "sero": 26928,
+ "▁зай": 26929,
+ "слід": 26930,
+ "▁Rég": 26931,
+ "▁Sang": 26932,
+ "▁fung": 26933,
+ "baar": 26934,
+ "▁coffee": 26935,
+ "assembly": 26936,
+ "▁Він": 26937,
+ "эй": 26938,
+ "▁comprend": 26939,
+ "filled": 26940,
+ "рд": 26941,
+ "odia": 26942,
+ "▁gens": 26943,
+ "fluss": 26944,
+ "Drawable": 26945,
+ "▁surve": 26946,
+ "Setup": 26947,
+ "▁należ": 26948,
+ "▁conjunto": 26949,
+ "▁Его": 26950,
+ "▁oldal": 26951,
+ "▁verbose": 26952,
+ "▁Electric": 26953,
+ "▁Harrison": 26954,
+ "engen": 26955,
+ "paragraph": 26956,
+ "▁nouvelles": 26957,
+ "▁време": 26958,
+ "▁memor": 26959,
+ "▁mayoría": 26960,
+ "сад": 26961,
+ "▁bataille": 26962,
+ "▁thermal": 26963,
+ "▁Хронологи": 26964,
+ "▁Better": 26965,
+ "bye": 26966,
+ "▁театра": 26967,
+ "roe": 26968,
+ "▁segle": 26969,
+ "rott": 26970,
+ "▁opinions": 26971,
+ ")})": 26972,
+ "ühle": 26973,
+ "▁Gün": 26974,
+ "▁Щ": 26975,
+ "ból": 26976,
+ "▁Larry": 26977,
+ "▁solic": 26978,
+ "▁zwar": 26979,
+ "▁Caroline": 26980,
+ "▁Reichs": 26981,
+ "Extensions": 26982,
+ "migr": 26983,
+ ":@": 26984,
+ "▁enumerate": 26985,
+ "▁eigenen": 26986,
+ "▁explore": 26987,
+ "ému": 26988,
+ "▁gat": 26989,
+ "▁imperial": 26990,
+ "▁Usually": 26991,
+ "▁tud": 26992,
+ "▁укра": 26993,
+ "him": 26994,
+ "▁corners": 26995,
+ "▁SER": 26996,
+ "▁interpreter": 26997,
+ "▁Ice": 26998,
+ "▁amounts": 26999,
+ "▁Pala": 27000,
+ "▁tinha": 27001,
+ "vole": 27002,
+ "▁gle": 27003,
+ "ucci": 27004,
+ "▁siehe": 27005,
+ "Jack": 27006,
+ "▁woll": 27007,
+ "▁elder": 27008,
+ "▁кораб": 27009,
+ "▁engag": 27010,
+ "▁Laurent": 27011,
+ "▁achiev": 27012,
+ "istik": 27013,
+ "arct": 27014,
+ "тного": 27015,
+ "▁gir": 27016,
+ "▁Singh": 27017,
+ "mathop": 27018,
+ "USA": 27019,
+ "▁Projekt": 27020,
+ "▁debe": 27021,
+ "richtung": 27022,
+ "▁Tsch": 27023,
+ "uminate": 27024,
+ "▁szó": 27025,
+ "lyph": 27026,
+ "зидент": 27027,
+ "▁limitations": 27028,
+ "ющей": 27029,
+ "▁bila": 27030,
+ "Push": 27031,
+ "▁offering": 27032,
+ "iennes": 27033,
+ "Fri": 27034,
+ "▁postgresql": 27035,
+ "▁Tommy": 27036,
+ "▁particolare": 27037,
+ "▁století": 27038,
+ "▁arrib": 27039,
+ "▁Eva": 27040,
+ "school": 27041,
+ "▁vendor": 27042,
+ "▁Dallas": 27043,
+ "▁prolong": 27044,
+ "CREATE": 27045,
+ "▁suivante": 27046,
+ "STATUS": 27047,
+ "là": 27048,
+ "kv": 27049,
+ "▁häufig": 27050,
+ "▁Agricult": 27051,
+ "▁huit": 27052,
+ "▁inoltre": 27053,
+ "▁Lloyd": 27054,
+ "▁француз": 27055,
+ "▁выпол": 27056,
+ "▁faithful": 27057,
+ "▁Вар": 27058,
+ "▁verl": 27059,
+ "▁juego": 27060,
+ "▁Резултати": 27061,
+ ",...,": 27062,
+ "▁implicitly": 27063,
+ "irks": 27064,
+ "Calcul": 27065,
+ "▁meses": 27066,
+ "omed": 27067,
+ "▁pak": 27068,
+ "herit": 27069,
+ "▁optical": 27070,
+ "▁Історія": 27071,
+ "veis": 27072,
+ "▁capitale": 27073,
+ "placeholder": 27074,
+ "intrag": 27075,
+ "▁Atlas": 27076,
+ ")];": 27077,
+ "icons": 27078,
+ "▁Bent": 27079,
+ "▁Widget": 27080,
+ "▁volunt": 27081,
+ "avo": 27082,
+ "égr": 27083,
+ "lige": 27084,
+ "▁NAME": 27085,
+ "▁abstra": 27086,
+ "▁fís": 27087,
+ "▁Browser": 27088,
+ "▁bush": 27089,
+ "hall": 27090,
+ "▁clouds": 27091,
+ "▁SUB": 27092,
+ "▁tandis": 27093,
+ "▁Commonwealth": 27094,
+ "тая": 27095,
+ "▁exhaust": 27096,
+ "________________": 27097,
+ "▁Statistics": 27098,
+ "▁Religion": 27099,
+ "▁Muham": 27100,
+ "uals": 27101,
+ "goto": 27102,
+ "Digital": 27103,
+ "Family": 27104,
+ "▁Bun": 27105,
+ "letin": 27106,
+ "Management": 27107,
+ "▁capabilities": 27108,
+ "annten": 27109,
+ "▁себе": 27110,
+ "▁stays": 27111,
+ "kter": 27112,
+ "▁dost": 27113,
+ "▁Тре": 27114,
+ "лович": 27115,
+ "▁dying": 27116,
+ "sections": 27117,
+ "ános": 27118,
+ "▁apparten": 27119,
+ "▁zoals": 27120,
+ "▁dressed": 27121,
+ "▁compress": 27122,
+ "ńska": 27123,
+ "▁sierpnia": 27124,
+ "▁титу": 27125,
+ "dictionary": 27126,
+ "▁rabb": 27127,
+ "▁vérit": 27128,
+ "Во": 27129,
+ "▁singleton": 27130,
+ "▁vital": 27131,
+ "Refresh": 27132,
+ "мель": 27133,
+ "▁Zh": 27134,
+ "▁Afghan": 27135,
+ "inkel": 27136,
+ "aaaa": 27137,
+ "▁participants": 27138,
+ "arin": 27139,
+ "▁Mold": 27140,
+ "▁primeros": 27141,
+ "▁ран": 27142,
+ "▁Амери": 27143,
+ "▁restaurant": 27144,
+ "ével": 27145,
+ "▁SL": 27146,
+ "▁Rey": 27147,
+ "chas": 27148,
+ "▁electrons": 27149,
+ "▁Pitts": 27150,
+ "▁Jules": 27151,
+ "май": 27152,
+ "enant": 27153,
+ "-}": 27154,
+ "лад": 27155,
+ "▁Москва": 27156,
+ "gom": 27157,
+ "▁Fernández": 27158,
+ "fund": 27159,
+ "interno": 27160,
+ "▁Mari": 27161,
+ "▁rius": 27162,
+ "▁Prozent": 27163,
+ "стрі": 27164,
+ "▁внут": 27165,
+ "anterie": 27166,
+ "▁прис": 27167,
+ "▁обы": 27168,
+ "▁Marina": 27169,
+ "▁occurrence": 27170,
+ "rikt": 27171,
+ "▁физи": 27172,
+ "▁schwer": 27173,
+ "▁Гре": 27174,
+ "Reset": 27175,
+ "▁mucho": 27176,
+ "andr": 27177,
+ "▁Wies": 27178,
+ "▁Keith": 27179,
+ "▁Julian": 27180,
+ "▁cole": 27181,
+ "ciendo": 27182,
+ "▁Contempor": 27183,
+ "etry": 27184,
+ "elian": 27185,
+ "гии": 27186,
+ "▁голо": 27187,
+ "▁dél": 27188,
+ "▁decent": 27189,
+ "РСР": 27190,
+ "▁szeptember": 27191,
+ "мест": 27192,
+ "castle": 27193,
+ "▁держав": 27194,
+ "}\")": 27195,
+ "▁ASCII": 27196,
+ "▁Glen": 27197,
+ "itzerland": 27198,
+ "Toggle": 27199,
+ "▁tradicional": 27200,
+ "▁Plat": 27201,
+ "vee": 27202,
+ "abgerufen": 27203,
+ "(|": 27204,
+ "CLI": 27205,
+ "}}$,": 27206,
+ "▁Bowl": 27207,
+ "▁Male": 27208,
+ "▁Bres": 27209,
+ "▁пси": 27210,
+ "▁Challenge": 27211,
+ "zó": 27212,
+ "▁projekt": 27213,
+ "▁negoti": 27214,
+ "above": 27215,
+ "▁перио": 27216,
+ "▁longest": 27217,
+ "authentic": 27218,
+ "▁tradu": 27219,
+ "▁mujeres": 27220,
+ "▁Andre": 27221,
+ "▁hadn": 27222,
+ "▁Schule": 27223,
+ "odel": 27224,
+ "bled": 27225,
+ "▁Trade": 27226,
+ "▁mobil": 27227,
+ "▁algunas": 27228,
+ "▁Lak": 27229,
+ "▁Connecticut": 27230,
+ "▁alco": 27231,
+ "▁Selbst": 27232,
+ "ił": 27233,
+ "▁alb": 27234,
+ "ouverneur": 27235,
+ "▁sr": 27236,
+ "▁vba": 27237,
+ "loped": 27238,
+ "▁Partei": 27239,
+ "uate": 27240,
+ "▁Authentication": 27241,
+ "bei": 27242,
+ "}}.": 27243,
+ "▁konnten": 27244,
+ "▁допо": 27245,
+ "▁hyd": 27246,
+ "Office": 27247,
+ "données": 27248,
+ "▁Cleveland": 27249,
+ "rita": 27250,
+ "íos": 27251,
+ "▁выше": 27252,
+ "▁Roberts": 27253,
+ "▁élections": 27254,
+ "▁'')": 27255,
+ "▁publishing": 27256,
+ "▁bapt": 27257,
+ "<>();": 27258,
+ "missing": 27259,
+ "ровано": 27260,
+ "▁housing": 27261,
+ "▁inference": 27262,
+ "▁Renaissance": 27263,
+ "▁règ": 27264,
+ "▁Steph": 27265,
+ "CES": 27266,
+ "ERE": 27267,
+ "кет": 27268,
+ "OU": 27269,
+ "▁grouping": 27270,
+ "verkehr": 27271,
+ "jih": 27272,
+ "agli": 27273,
+ "▁milk": 27274,
+ "lait": 27275,
+ "Stage": 27276,
+ "▁byly": 27277,
+ "▁wooden": 27278,
+ "keley": 27279,
+ "etra": 27280,
+ "▁Peg": 27281,
+ "▁donné": 27282,
+ "adal": 27283,
+ "sequently": 27284,
+ "▁insbesondere": 27285,
+ "ELD": 27286,
+ "▁Mam": 27287,
+ "▁volte": 27288,
+ "▁prospect": 27289,
+ "нове": 27290,
+ "▁denoted": 27291,
+ "▁overlay": 27292,
+ "Permission": 27293,
+ "een": 27294,
+ "▁EM": 27295,
+ "▁uz": 27296,
+ "Mc": 27297,
+ "olit": 27298,
+ "▁servi": 27299,
+ "▁Heidel": 27300,
+ "▁Wiener": 27301,
+ "▁illegal": 27302,
+ "▁predictions": 27303,
+ "▁goog": 27304,
+ "hon": 27305,
+ "▁Cinema": 27306,
+ "▁револю": 27307,
+ "▁Rule": 27308,
+ "wod": 27309,
+ "▁radiation": 27310,
+ "oł": 27311,
+ "ової": 27312,
+ "▁Perform": 27313,
+ "▁prisoner": 27314,
+ "▁amet": 27315,
+ "▁figura": 27316,
+ "▁Commander": 27317,
+ "▁официаль": 27318,
+ "▁trov": 27319,
+ "▁acted": 27320,
+ "▁workflow": 27321,
+ "▁Республики": 27322,
+ "▁guidance": 27323,
+ "▁мене": 27324,
+ "National": 27325,
+ "▁Kel": 27326,
+ "webpack": 27327,
+ "простра": 27328,
+ "▁llamado": 27329,
+ "alog": 27330,
+ "terra": 27331,
+ "ixen": 27332,
+ "legraph": 27333,
+ "äischen": 27334,
+ "▁teachers": 27335,
+ "uden": 27336,
+ "▁også": 27337,
+ "possible": 27338,
+ "▁Soul": 27339,
+ "▁Geography": 27340,
+ "▁зада": 27341,
+ "hit": 27342,
+ "▁anger": 27343,
+ "▁remporte": 27344,
+ "Pod": 27345,
+ "чке": 27346,
+ "▁aria": 27347,
+ "▁Astronom": 27348,
+ "chapter": 27349,
+ "▁fork": 27350,
+ "▁Cuando": 27351,
+ "mense": 27352,
+ "▁Christians": 27353,
+ "gc": 27354,
+ "▁#(": 27355,
+ "Organ": 27356,
+ "▁steady": 27357,
+ "pse": 27358,
+ "жить": 27359,
+ "ignes": 27360,
+ "aterra": 27361,
+ "movie": 27362,
+ "posta": 27363,
+ "raste": 27364,
+ "▁Ressource": 27365,
+ "▁País": 27366,
+ "▁();": 27367,
+ "▁penalty": 27368,
+ "тт": 27369,
+ "▁trasfer": 27370,
+ "century": 27371,
+ "▁cleaner": 27372,
+ "selenium": 27373,
+ "ortheast": 27374,
+ "xic": 27375,
+ "лії": 27376,
+ "▁inglese": 27377,
+ "▁Tang": 27378,
+ "▁gods": 27379,
+ "frent": 27380,
+ "ciente": 27381,
+ "starts": 27382,
+ "▁musica": 27383,
+ "ymnasium": 27384,
+ "----+": 27385,
+ "▁terrest": 27386,
+ "▁retrieved": 27387,
+ "iare": 27388,
+ "unning": 27389,
+ "▁Marcus": 27390,
+ "▁promote": 27391,
+ "warning": 27392,
+ "тый": 27393,
+ "})$,": 27394,
+ "Transport": 27395,
+ "▁reson": 27396,
+ "▁Clo": 27397,
+ "▁erm": 27398,
+ "▁eliminate": 27399,
+ "heimer": 27400,
+ "▁saves": 27401,
+ "▁prayer": 27402,
+ "Classes": 27403,
+ "Express": 27404,
+ "▁Akademie": 27405,
+ "Else": 27406,
+ "Turn": 27407,
+ "▁ikke": 27408,
+ "▁rei": 27409,
+ "▁dirett": 27410,
+ "▁Rost": 27411,
+ "▁Papa": 27412,
+ "▁jsf": 27413,
+ "лением": 27414,
+ "▁Tul": 27415,
+ "▁Zak": 27416,
+ "▁niemieck": 27417,
+ "Tw": 27418,
+ "amour": 27419,
+ "nested": 27420,
+ "ppets": 27421,
+ "шп": 27422,
+ "dit": 27423,
+ "зен": 27424,
+ "zyma": 27425,
+ "hrte": 27426,
+ "Constraints": 27427,
+ "▁ownership": 27428,
+ "Arm": 27429,
+ "▁consumption": 27430,
+ "▁fet": 27431,
+ "ivari": 27432,
+ "chrom": 27433,
+ "setAttribute": 27434,
+ "▁compose": 27435,
+ "▁backing": 27436,
+ "▁Paz": 27437,
+ "▁scri": 27438,
+ "▁Mechan": 27439,
+ "▁Norway": 27440,
+ "▁Jup": 27441,
+ "▁mér": 27442,
+ "▁administrator": 27443,
+ "▁cabe": 27444,
+ "ivalent": 27445,
+ "▁throne": 27446,
+ "▁dues": 27447,
+ "▁humor": 27448,
+ "▁Adri": 27449,
+ "▁abort": 27450,
+ "ñas": 27451,
+ "▁Київ": 27452,
+ "jící": 27453,
+ "▁zweite": 27454,
+ "▁doub": 27455,
+ "ershell": 27456,
+ "шой": 27457,
+ "▁Fam": 27458,
+ "åk": 27459,
+ "▁tweede": 27460,
+ "▁Rib": 27461,
+ "▁før": 27462,
+ "pción": 27463,
+ "inned": 27464,
+ "rvm": 27465,
+ "▁Appar": 27466,
+ "▁Dj": 27467,
+ "▁Shang": 27468,
+ "Distance": 27469,
+ "▁dawn": 27470,
+ "▁Matth": 27471,
+ "▁errichtet": 27472,
+ "phantom": 27473,
+ "▁releases": 27474,
+ "Recognizer": 27475,
+ "▁Kop": 27476,
+ "▁Pul": 27477,
+ "ué": 27478,
+ "nats": 27479,
+ "relax": 27480,
+ "▁fled": 27481,
+ "▁experiences": 27482,
+ "щее": 27483,
+ "меня": 27484,
+ "▁персона": 27485,
+ "▁Identity": 27486,
+ "rets": 27487,
+ "kunft": 27488,
+ "larg": 27489,
+ "ListItem": 27490,
+ "vd": 27491,
+ "runner": 27492,
+ "lant": 27493,
+ "ipart": 27494,
+ "bay": 27495,
+ "iei": 27496,
+ "▁lengths": 27497,
+ "▁cattle": 27498,
+ "jets": 27499,
+ "▁sehen": 27500,
+ "Jul": 27501,
+ "fatt": 27502,
+ "▁surrender": 27503,
+ "▁Trump": 27504,
+ "дного": 27505,
+ "▁Fourier": 27506,
+ "ieben": 27507,
+ "_\"": 27508,
+ "▁früher": 27509,
+ "▁garant": 27510,
+ "uclidean": 27511,
+ "ägt": 27512,
+ "▁півден": 27513,
+ "Pages": 27514,
+ "▁rivers": 27515,
+ "▁donner": 27516,
+ "svn": 27517,
+ "▁ł": 27518,
+ "ově": 27519,
+ "▁Leist": 27520,
+ "arial": 27521,
+ "ových": 27522,
+ "▁filling": 27523,
+ "▁musicale": 27524,
+ "maxim": 27525,
+ "▁dashed": 27526,
+ "▁Нов": 27527,
+ "Drawer": 27528,
+ "▁Medicine": 27529,
+ "▁dokument": 27530,
+ "owel": 27531,
+ "vić": 27532,
+ "hely": 27533,
+ "▁elet": 27534,
+ "Seconds": 27535,
+ "▁Gonz": 27536,
+ "rou": 27537,
+ "▁finales": 27538,
+ "rn": 27539,
+ "fø": 27540,
+ "▁indexed": 27541,
+ "className": 27542,
+ "▁ober": 27543,
+ "▁duas": 27544,
+ "▁optimized": 27545,
+ "▁kdy": 27546,
+ "versary": 27547,
+ "energy": 27548,
+ "▁центра": 27549,
+ "▁currency": 27550,
+ "zyż": 27551,
+ "Like": 27552,
+ "▁Ги": 27553,
+ "sono": 27554,
+ "▁palab": 27555,
+ "▁pushing": 27556,
+ "ublik": 27557,
+ "▁Hass": 27558,
+ "}\\,\\": 27559,
+ "unker": 27560,
+ "▁Factory": 27561,
+ "▁Resources": 27562,
+ "datei": 27563,
+ "▁Tools": 27564,
+ "▁stehen": 27565,
+ "sime": 27566,
+ "▁Ху": 27567,
+ "▁hoch": 27568,
+ "▁Rodríguez": 27569,
+ "zeitig": 27570,
+ "▁Terry": 27571,
+ "▁обу": 27572,
+ "Usage": 27573,
+ "urchase": 27574,
+ "lö": 27575,
+ "▁Introduction": 27576,
+ "▁participation": 27577,
+ "ος": 27578,
+ "ogli": 27579,
+ "apy": 27580,
+ "▁hopefully": 27581,
+ "ponder": 27582,
+ "▁Yang": 27583,
+ "▁promises": 27584,
+ "▁верну": 27585,
+ "▁остров": 27586,
+ "^{+": 27587,
+ "▁mostra": 27588,
+ "▁CURLOPT": 27589,
+ "HH": 27590,
+ "▁stdout": 27591,
+ "▁brilliant": 27592,
+ "▁manuscript": 27593,
+ "▁decir": 27594,
+ "▁Bolog": 27595,
+ "▁места": 27596,
+ "▁invisible": 27597,
+ "▁Chal": 27598,
+ "▁analyze": 27599,
+ "prilis": 27600,
+ "attend": 27601,
+ "Mvc": 27602,
+ "than": 27603,
+ "cko": 27604,
+ "▁Quebec": 27605,
+ "▁planta": 27606,
+ "▁télévis": 27607,
+ "▁uninstall": 27608,
+ "ències": 27609,
+ "▁gminie": 27610,
+ "▁Pref": 27611,
+ "▁lequel": 27612,
+ "Invocation": 27613,
+ "▁Í": 27614,
+ "▁transformed": 27615,
+ "MAN": 27616,
+ "gebaut": 27617,
+ "▁сохра": 27618,
+ "▁второй": 27619,
+ "▁Lith": 27620,
+ "wendung": 27621,
+ "▁Politik": 27622,
+ "▁Senator": 27623,
+ "▁LL": 27624,
+ "ждение": 27625,
+ "ште": 27626,
+ "▁Cés": 27627,
+ "▁bande": 27628,
+ "▁historian": 27629,
+ "▁passwords": 27630,
+ "malloc": 27631,
+ "▁semif": 27632,
+ "▁rå": 27633,
+ "unicí": 27634,
+ "Available": 27635,
+ "Optional": 27636,
+ "▁Twe": 27637,
+ "▁kró": 27638,
+ "▁subsets": 27639,
+ "▁DAT": 27640,
+ "▁doubles": 27641,
+ "никами": 27642,
+ "▁зв": 27643,
+ "gegeben": 27644,
+ "▁Попис": 27645,
+ "▁július": 27646,
+ "▁meteor": 27647,
+ "Mount": 27648,
+ "ivent": 27649,
+ "▁Nathan": 27650,
+ "▁Schutz": 27651,
+ "egov": 27652,
+ "▁död": 27653,
+ "▁meat": 27654,
+ "▁пункт": 27655,
+ "▁minds": 27656,
+ "elivery": 27657,
+ "▁TLS": 27658,
+ "рем": 27659,
+ "ckså": 27660,
+ "▁stayed": 27661,
+ "▁Bin": 27662,
+ "▁Pia": 27663,
+ "▁имен": 27664,
+ "▁Bobby": 27665,
+ "▁produit": 27666,
+ "empio": 27667,
+ "▁reducing": 27668,
+ "▁Yu": 27669,
+ "▁Geschäft": 27670,
+ "▁perché": 27671,
+ "▁cors": 27672,
+ "▁icons": 27673,
+ "AppData": 27674,
+ "▁Hog": 27675,
+ "▁рів": 27676,
+ "▁Sans": 27677,
+ "▁siège": 27678,
+ "stellen": 27679,
+ "Brush": 27680,
+ "OFF": 27681,
+ "▁visitor": 27682,
+ "▁bath": 27683,
+ "▁fee": 27684,
+ "atisf": 27685,
+ "▁curv": 27686,
+ "▁folgender": 27687,
+ "▁conscience": 27688,
+ "▁Seattle": 27689,
+ "▁medieval": 27690,
+ "distribution": 27691,
+ "▁DM": 27692,
+ "▁мя": 27693,
+ "▁RUN": 27694,
+ "akov": 27695,
+ "ceil": 27696,
+ "▁letting": 27697,
+ "▁dov": 27698,
+ "▁оби": 27699,
+ "kiej": 27700,
+ "▁direkt": 27701,
+ "▁tm": 27702,
+ "colors": 27703,
+ "▁altro": 27704,
+ "▁tijdens": 27705,
+ "]{'": 27706,
+ "▁Bom": 27707,
+ "▁kunst": 27708,
+ "▁shelter": 27709,
+ "▁rav": 27710,
+ "predict": 27711,
+ "▁comenzó": 27712,
+ "▁świat": 27713,
+ "▁Durant": 27714,
+ "▁schemes": 27715,
+ "▁mesh": 27716,
+ "▁indicator": 27717,
+ "▁Emer": 27718,
+ "▁guilty": 27719,
+ "нец": 27720,
+ "▁consequences": 27721,
+ "cludes": 27722,
+ "▁Lower": 27723,
+ "▁поме": 27724,
+ "▁pace": 27725,
+ "даго": 27726,
+ "▁ambos": 27727,
+ "lb": 27728,
+ "▁educated": 27729,
+ "urale": 27730,
+ "anh": 27731,
+ "esség": 27732,
+ "▁associations": 27733,
+ "town": 27734,
+ "▁trif": 27735,
+ "samples": 27736,
+ "bos": 27737,
+ "▁Spect": 27738,
+ "▁Це": 27739,
+ "altung": 27740,
+ "▁Lob": 27741,
+ "▁curiosity": 27742,
+ "▁Weiter": 27743,
+ "estone": 27744,
+ "▁demol": 27745,
+ "▁apolog": 27746,
+ "▁Dynamic": 27747,
+ "Inner": 27748,
+ "esper": 27749,
+ "ecz": 27750,
+ "uellement": 27751,
+ "▁Hamiltonian": 27752,
+ "Atlas": 27753,
+ "▁argue": 27754,
+ "Foreign": 27755,
+ "collapse": 27756,
+ "▁términ": 27757,
+ "▁electronic": 27758,
+ "▁NR": 27759,
+ "▁corr": 27760,
+ "temps": 27761,
+ "IndexPath": 27762,
+ "яз": 27763,
+ "▁talál": 27764,
+ "today": 27765,
+ "wave": 27766,
+ "▁sib": 27767,
+ "▁спи": 27768,
+ "▁convey": 27769,
+ "▁Géographie": 27770,
+ "▁Нью": 27771,
+ "▁Hibernate": 27772,
+ "▁tin": 27773,
+ "dic": 27774,
+ "ppings": 27775,
+ "sweise": 27776,
+ "▁rolling": 27777,
+ "▁selects": 27778,
+ ")\\)": 27779,
+ "▁poeta": 27780,
+ "▁степени": 27781,
+ "▁Abr": 27782,
+ "▁höch": 27783,
+ "▁stern": 27784,
+ "▁fjär": 27785,
+ "▁installer": 27786,
+ "decl": 27787,
+ "▁miser": 27788,
+ "groupby": 27789,
+ "substr": 27790,
+ "▁phenomen": 27791,
+ "▁Wing": 27792,
+ "▁fills": 27793,
+ "▁único": 27794,
+ "Running": 27795,
+ "Come": 27796,
+ "irable": 27797,
+ "simeq": 27798,
+ "▁remp": 27799,
+ "kele": 27800,
+ "liers": 27801,
+ "▁kwietnia": 27802,
+ "▁interrupted": 27803,
+ "▁Jet": 27804,
+ "=\\{": 27805,
+ "ído": 27806,
+ "▁Taiwan": 27807,
+ "▁возра": 27808,
+ "▁alternatives": 27809,
+ "▁Tir": 27810,
+ "▁Reserve": 27811,
+ "▁Кур": 27812,
+ "▁Nobel": 27813,
+ "▁работал": 27814,
+ "▁axes": 27815,
+ "▁Cependant": 27816,
+ "ká": 27817,
+ "▁erneut": 27818,
+ "▁Demo": 27819,
+ "communic": 27820,
+ "constructor": 27821,
+ "▁Monday": 27822,
+ "Nil": 27823,
+ "HashMap": 27824,
+ "payment": 27825,
+ "▁fixing": 27826,
+ "▁ADD": 27827,
+ "review": 27828,
+ "▁possibil": 27829,
+ "▁grote": 27830,
+ "▁grouped": 27831,
+ "▁Lima": 27832,
+ "▁Augen": 27833,
+ "▁också": 27834,
+ "onas": 27835,
+ "▁debate": 27836,
+ "▁Ingl": 27837,
+ "Da": 27838,
+ "SOUR": 27839,
+ "ettbe": 27840,
+ "▁Battalion": 27841,
+ "▁Float": 27842,
+ "▁cone": 27843,
+ "readsheet": 27844,
+ "court": 27845,
+ "ligen": 27846,
+ "▁Beginn": 27847,
+ "▁LIMIT": 27848,
+ "▁enjoyed": 27849,
+ "▁Jakob": 27850,
+ "▁telt": 27851,
+ "backend": 27852,
+ "▁Gemeinsame": 27853,
+ "lint": 27854,
+ "alling": 27855,
+ "▁bör": 27856,
+ "grand": 27857,
+ "▁diverses": 27858,
+ "▁związ": 27859,
+ "▁Kompon": 27860,
+ "▁innerhalb": 27861,
+ "▁desarrollo": 27862,
+ "▁Masters": 27863,
+ "ioso": 27864,
+ "]`.": 27865,
+ "▁francesa": 27866,
+ "Aff": 27867,
+ "inek": 27868,
+ "▁dessin": 27869,
+ "`.`": 27870,
+ "▁ranks": 27871,
+ "берг": 27872,
+ "▁skal": 27873,
+ "▁Sultan": 27874,
+ "АН": 27875,
+ "▁способ": 27876,
+ "▁contradict": 27877,
+ "▁recom": 27878,
+ "▁Oklahoma": 27879,
+ "▁Vladimir": 27880,
+ "▁meters": 27881,
+ "transport": 27882,
+ "▁consulté": 27883,
+ "▁ATP": 27884,
+ "ebb": 27885,
+ "▁volunte": 27886,
+ "▁outline": 27887,
+ "LIC": 27888,
+ "▁euro": 27889,
+ "CharField": 27890,
+ "medium": 27891,
+ "▁Belgique": 27892,
+ "Proc": 27893,
+ "routes": 27894,
+ "▁contribu": 27895,
+ "!}": 27896,
+ "ším": 27897,
+ "▁Less": 27898,
+ "▁Kost": 27899,
+ "▁eredetiből": 27900,
+ "reven": 27901,
+ "verify": 27902,
+ "▁Salt": 27903,
+ "▁shooting": 27904,
+ "▁dispose": 27905,
+ "ují": 27906,
+ "▁tierra": 27907,
+ "▁poison": 27908,
+ "sak": 27909,
+ "perimental": 27910,
+ "▁Né": 27911,
+ "▁Kid": 27912,
+ "agyar": 27913,
+ "▁archiválva": 27914,
+ "bereich": 27915,
+ "íz": 27916,
+ "▁Ritter": 27917,
+ "▁Хронологија": 27918,
+ "zeum": 27919,
+ "дах": 27920,
+ "▁gründ": 27921,
+ "▁programmer": 27922,
+ "▁conseil": 27923,
+ "▁encrypt": 27924,
+ "integration": 27925,
+ "Culture": 27926,
+ "▁Circle": 27927,
+ "Observable": 27928,
+ "▁genomsnitt": 27929,
+ "▁Selection": 27930,
+ "▁irregular": 27931,
+ "Autres": 27932,
+ "Percent": 27933,
+ "fault": 27934,
+ "▁virtue": 27935,
+ "ąpi": 27936,
+ "▁sess": 27937,
+ "▁Также": 27938,
+ "Timestamp": 27939,
+ "▁littérature": 27940,
+ "▁moż": 27941,
+ "▁borrow": 27942,
+ "▁conced": 27943,
+ "чник": 27944,
+ "▁Lund": 27945,
+ "IONS": 27946,
+ "ynie": 27947,
+ "▁Shin": 27948,
+ "▁osob": 27949,
+ "bě": 27950,
+ "▁intuit": 27951,
+ "▁нап": 27952,
+ "▁proph": 27953,
+ "▁pitt": 27954,
+ "▁IBM": 27955,
+ "▁Till": 27956,
+ "▁hina": 27957,
+ "ittest": 27958,
+ "generator": 27959,
+ "▁Nin": 27960,
+ "▁Kot": 27961,
+ "▁passer": 27962,
+ "▁disposition": 27963,
+ "uning": 27964,
+ "▁fame": 27965,
+ "▁tenia": 27966,
+ "ancement": 27967,
+ "▁Suisse": 27968,
+ "`-": 27969,
+ "▁hombres": 27970,
+ "▁infinity": 27971,
+ "▁оконча": 27972,
+ "▁cosm": 27973,
+ "▁Dennis": 27974,
+ "baz": 27975,
+ "haupt": 27976,
+ "▁mighty": 27977,
+ "▁prede": 27978,
+ "usable": 27979,
+ "▁wszyst": 27980,
+ "▁lb": 27981,
+ "ABASE": 27982,
+ "jna": 27983,
+ "нев": 27984,
+ "▁ases": 27985,
+ "▁finalmente": 27986,
+ "йм": 27987,
+ "pection": 27988,
+ "▁Studien": 27989,
+ "▁Norwegian": 27990,
+ "cego": 27991,
+ "INDEX": 27992,
+ "orten": 27993,
+ "▁friendship": 27994,
+ "metro": 27995,
+ "thick": 27996,
+ "▁Zel": 27997,
+ "LOW": 27998,
+ "▁thereby": 27999,
+ "unted": 28000,
+ "▁surfaces": 28001,
+ "ющим": 28002,
+ "%).": 28003,
+ "▁Wonder": 28004,
+ "▁redundant": 28005,
+ "▁Gros": 28006,
+ "▁websites": 28007,
+ "▁vio": 28008,
+ "▁ocas": 28009,
+ "vés": 28010,
+ "▁Gam": 28011,
+ "dw": 28012,
+ "Indicator": 28013,
+ "▁Kob": 28014,
+ "▁jack": 28015,
+ "Hint": 28016,
+ "▁Apol": 28017,
+ "▁другие": 28018,
+ "▁NUM": 28019,
+ "▁ofic": 28020,
+ "ystycz": 28021,
+ "▁wereld": 28022,
+ "мости": 28023,
+ "LEFT": 28024,
+ "▁Types": 28025,
+ "seen": 28026,
+ "uncia": 28027,
+ "▁narod": 28028,
+ "▁этот": 28029,
+ "Sidenote": 28030,
+ "ueil": 28031,
+ "▁отме": 28032,
+ "▁courts": 28033,
+ "fir": 28034,
+ "urz": 28035,
+ "ченко": 28036,
+ "Credentials": 28037,
+ "▁imagination": 28038,
+ "itats": 28039,
+ "buff": 28040,
+ "flash": 28041,
+ "▁badly": 28042,
+ "▁worn": 28043,
+ "▁округу": 28044,
+ "catalog": 28045,
+ "lime": 28046,
+ "▁Gill": 28047,
+ "▁Sent": 28048,
+ "iella": 28049,
+ "▁Craig": 28050,
+ "▁Sele": 28051,
+ "▁Independ": 28052,
+ "▁provincie": 28053,
+ "ossen": 28054,
+ "▁запад": 28055,
+ "▁infant": 28056,
+ "▁prevents": 28057,
+ "▁provinces": 28058,
+ "afé": 28059,
+ "beg": 28060,
+ "▁colours": 28061,
+ "BF": 28062,
+ "ën": 28063,
+ "▁Между": 28064,
+ "în": 28065,
+ "Observer": 28066,
+ "forsch": 28067,
+ "ígen": 28068,
+ "umption": 28069,
+ "▁Illustr": 28070,
+ "рист": 28071,
+ "▁полови": 28072,
+ "▁`&": 28073,
+ "▁ore": 28074,
+ "▁supplies": 28075,
+ "▁parenthes": 28076,
+ "Foundation": 28077,
+ "▁vou": 28078,
+ "▁Tout": 28079,
+ "Donald": 28080,
+ "▁RET": 28081,
+ "weig": 28082,
+ "▁producción": 28083,
+ "mix": 28084,
+ "▁utwor": 28085,
+ "▁föl": 28086,
+ "▁então": 28087,
+ "▁Sister": 28088,
+ "Tags": 28089,
+ "▁Савезне": 28090,
+ "▁privileges": 28091,
+ "▁nazw": 28092,
+ "▁Rav": 28093,
+ "▁repro": 28094,
+ "▁Mason": 28095,
+ "▁Platform": 28096,
+ "▁пробле": 28097,
+ "▁Pérez": 28098,
+ "▁blanc": 28099,
+ "Behavior": 28100,
+ "фици": 28101,
+ "eken": 28102,
+ "▁meets": 28103,
+ "(.*": 28104,
+ "▁få": 28105,
+ "epen": 28106,
+ "maker": 28107,
+ "▁loyal": 28108,
+ "members": 28109,
+ "meisterschaft": 28110,
+ "goal": 28111,
+ "шлен": 28112,
+ "▁северо": 28113,
+ "iende": 28114,
+ "дні": 28115,
+ "Proof": 28116,
+ "▁explic": 28117,
+ "▁electro": 28118,
+ "iels": 28119,
+ "reload": 28120,
+ "▁eleven": 28121,
+ "▁partidos": 28122,
+ "îne": 28123,
+ "▁Regin": 28124,
+ "▁éx": 28125,
+ "▁Bulg": 28126,
+ "▁networking": 28127,
+ "▁separator": 28128,
+ "UserName": 28129,
+ "▁edificio": 28130,
+ "▁Mie": 28131,
+ "▁idle": 28132,
+ "yed": 28133,
+ "▁passengers": 28134,
+ "+)": 28135,
+ "meno": 28136,
+ "eggi": 28137,
+ "▁nicely": 28138,
+ "endencia": 28139,
+ "чий": 28140,
+ "étés": 28141,
+ "ightarrow": 28142,
+ "▁orthogonal": 28143,
+ "▁Half": 28144,
+ "▁fewer": 28145,
+ "▁propi": 28146,
+ "▁primit": 28147,
+ "icale": 28148,
+ "▁flower": 28149,
+ "merk": 28150,
+ "▁Отече": 28151,
+ "▁persistent": 28152,
+ "▁Ville": 28153,
+ "Men": 28154,
+ "gaben": 28155,
+ "▁Isaac": 28156,
+ "ativity": 28157,
+ "▁północ": 28158,
+ "▁rok": 28159,
+ "cards": 28160,
+ "дения": 28161,
+ "▁юго": 28162,
+ "▁extraordinary": 28163,
+ "▁kyr": 28164,
+ "(\",": 28165,
+ "))]": 28166,
+ "▁unix": 28167,
+ "кол": 28168,
+ "▁sink": 28169,
+ "apsed": 28170,
+ "▁kommen": 28171,
+ "▁forcing": 28172,
+ "About": 28173,
+ "▁Halle": 28174,
+ "▁Majesty": 28175,
+ "▁Switch": 28176,
+ "▁abroad": 28177,
+ "▁acceleration": 28178,
+ "urbed": 28179,
+ "▁остан": 28180,
+ "Ready": 28181,
+ "▁півні": 28182,
+ "Bra": 28183,
+ "▁цього": 28184,
+ "▁plut": 28185,
+ "▁Train": 28186,
+ "▁április": 28187,
+ "▁puesto": 28188,
+ "▁toss": 28189,
+ "▁irrelevant": 28190,
+ "▁dip": 28191,
+ "segment": 28192,
+ "opacity": 28193,
+ "▁lorsque": 28194,
+ "▁verschill": 28195,
+ "ена": 28196,
+ "▁Doc": 28197,
+ "%%%%%%%%": 28198,
+ "▁borders": 28199,
+ "gebras": 28200,
+ "▁ries": 28201,
+ "▁Olympedia": 28202,
+ "▁Generation": 28203,
+ "metros": 28204,
+ "▁horizon": 28205,
+ "▁adaptation": 28206,
+ "▁Zahl": 28207,
+ "▁nahe": 28208,
+ "▁Bug": 28209,
+ "Picture": 28210,
+ "љи": 28211,
+ "RGB": 28212,
+ "Owner": 28213,
+ "adin": 28214,
+ "▁Catalunya": 28215,
+ "ných": 28216,
+ "▁cualquier": 28217,
+ "▁Institution": 28218,
+ "insen": 28219,
+ "▁Brasile": 28220,
+ "▁fitting": 28221,
+ "Deleg": 28222,
+ "ictwo": 28223,
+ "▁Exper": 28224,
+ "ochastic": 28225,
+ "▁dus": 28226,
+ "▁пора": 28227,
+ "▁substring": 28228,
+ "ссии": 28229,
+ "oin": 28230,
+ "▁школа": 28231,
+ "▁cx": 28232,
+ "▁%)": 28233,
+ "▁Buddh": 28234,
+ "▁pending": 28235,
+ "▁Entry": 28236,
+ "▁Berl": 28237,
+ "▁cler": 28238,
+ "▁Soc": 28239,
+ "▁rounded": 28240,
+ "▁mv": 28241,
+ "ített": 28242,
+ "▁Diplom": 28243,
+ "▁französischen": 28244,
+ "▁Gan": 28245,
+ "▁Investig": 28246,
+ "▁indexPath": 28247,
+ "▁molti": 28248,
+ "persistence": 28249,
+ "▁XIXe": 28250,
+ "▁Electron": 28251,
+ "bü": 28252,
+ "gele": 28253,
+ "▁Maler": 28254,
+ "▁proyecto": 28255,
+ "▁Bath": 28256,
+ "ellers": 28257,
+ "▁GP": 28258,
+ "oning": 28259,
+ "cloudflare": 28260,
+ "▁při": 28261,
+ "▁ded": 28262,
+ "▁Odkazy": 28263,
+ "▁Msg": 28264,
+ "▁Being": 28265,
+ "▁Depuis": 28266,
+ "▁Primary": 28267,
+ "▁Appro": 28268,
+ "▁formally": 28269,
+ "ступил": 28270,
+ "▁fuera": 28271,
+ "▁Root": 28272,
+ "▁autonom": 28273,
+ "▁secretary": 28274,
+ "▁osób": 28275,
+ "▁cuales": 28276,
+ "▁Depending": 28277,
+ "▁asi": 28278,
+ "vera": 28279,
+ "▁russe": 28280,
+ "▁proves": 28281,
+ "▁presiden": 28282,
+ "RU": 28283,
+ "▁Watson": 28284,
+ "▁webpack": 28285,
+ "elligence": 28286,
+ "кам": 28287,
+ "▁Officer": 28288,
+ "▁delivery": 28289,
+ "ждён": 28290,
+ "▁импе": 28291,
+ "▁wil": 28292,
+ "▁vesc": 28293,
+ "usztus": 28294,
+ "▁Geoff": 28295,
+ "()}": 28296,
+ "▁Fore": 28297,
+ "▁wenig": 28298,
+ "▁Airl": 28299,
+ "▁Efter": 28300,
+ "▁Break": 28301,
+ "▁Städ": 28302,
+ "ismiss": 28303,
+ "íp": 28304,
+ "▁avoided": 28305,
+ "▁assertion": 28306,
+ "DN": 28307,
+ "▁teat": 28308,
+ "ína": 28309,
+ "▁mechanical": 28310,
+ "isu": 28311,
+ "@{": 28312,
+ "▁nou": 28313,
+ "Italie": 28314,
+ "sourceforge": 28315,
+ "▁svo": 28316,
+ "▁király": 28317,
+ "▁References": 28318,
+ "six": 28319,
+ "▁Archives": 28320,
+ "▁finishing": 28321,
+ "acje": 28322,
+ "état": 28323,
+ "iffs": 28324,
+ "▁stead": 28325,
+ "▁feas": 28326,
+ "aware": 28327,
+ "lande": 28328,
+ "Inject": 28329,
+ "▁Agent": 28330,
+ "▁Normdatei": 28331,
+ "▁amen": 28332,
+ "▁Architecture": 28333,
+ "aze": 28334,
+ "ște": 28335,
+ "▁usar": 28336,
+ "▁cores": 28337,
+ "лін": 28338,
+ "▁Castro": 28339,
+ "▁væ": 28340,
+ ">\",": 28341,
+ "omena": 28342,
+ "▁gesam": 28343,
+ "▁Martín": 28344,
+ "egung": 28345,
+ "▁společ": 28346,
+ "▁amplitude": 28347,
+ "▁importing": 28348,
+ "▁listview": 28349,
+ "THE": 28350,
+ "ziale": 28351,
+ "cedes": 28352,
+ "▁particulier": 28353,
+ "▁Расподела": 28354,
+ "▁край": 28355,
+ "▁divent": 28356,
+ "▁ké": 28357,
+ "quit": 28358,
+ "тором": 28359,
+ "CheckBox": 28360,
+ "▁Zobacz": 28361,
+ "phe": 28362,
+ "pta": 28363,
+ "▁sjö": 28364,
+ "▁розташ": 28365,
+ "▁tedesco": 28366,
+ "▁stal": 28367,
+ "▁Beruf": 28368,
+ "овая": 28369,
+ "▁svě": 28370,
+ "▁flush": 28371,
+ "▁відбу": 28372,
+ "▁radial": 28373,
+ "▁différentes": 28374,
+ "анта": 28375,
+ "▁Perry": 28376,
+ "Coll": 28377,
+ "liqu": 28378,
+ "▁Optional": 28379,
+ "▁Санкт": 28380,
+ "▁LINQ": 28381,
+ "▁Franc": 28382,
+ "cije": 28383,
+ "▁Guillaume": 28384,
+ "know": 28385,
+ "▁Units": 28386,
+ "olk": 28387,
+ "▁Système": 28388,
+ "▁Sales": 28389,
+ "▁ehemaligen": 28390,
+ "мирова": 28391,
+ "xhtml": 28392,
+ "setopt": 28393,
+ "▁mellan": 28394,
+ "▁zie": 28395,
+ "▁giant": 28396,
+ "Board": 28397,
+ "▁Caval": 28398,
+ "▁defence": 28399,
+ "----------": 28400,
+ "pshire": 28401,
+ "mart": 28402,
+ "▁Dioc": 28403,
+ "iskt": 28404,
+ "▁inse": 28405,
+ "▁épisode": 28406,
+ "чик": 28407,
+ "bars": 28408,
+ "Sito": 28409,
+ "▁integrity": 28410,
+ "auff": 28411,
+ "▁vär": 28412,
+ "Azure": 28413,
+ "▁starb": 28414,
+ "▁контра": 28415,
+ "▁Мексичка": 28416,
+ "▁запа": 28417,
+ "▁Mountains": 28418,
+ "}}=": 28419,
+ "▁pulling": 28420,
+ "▁satellite": 28421,
+ "▁atoms": 28422,
+ "▁profesor": 28423,
+ "▁repeatedly": 28424,
+ "▁invasion": 28425,
+ "programming": 28426,
+ "├──": 28427,
+ "▁Lip": 28428,
+ "вшие": 28429,
+ "▁keen": 28430,
+ "▁critics": 28431,
+ "▁Nicola": 28432,
+ "▁Cand": 28433,
+ "▁distint": 28434,
+ "▁heading": 28435,
+ "pragma": 28436,
+ "{|": 28437,
+ "ymen": 28438,
+ "▁terrain": 28439,
+ "iedenis": 28440,
+ "▁besonders": 28441,
+ "▁nominated": 28442,
+ "BOOL": 28443,
+ "▁Kay": 28444,
+ "cian": 28445,
+ "stelle": 28446,
+ "▁dispute": 28447,
+ "▁щ": 28448,
+ "DataSet": 28449,
+ "nothing": 28450,
+ "Autom": 28451,
+ "hören": 28452,
+ "▁shed": 28453,
+ "▁paused": 28454,
+ "san": 28455,
+ "▁nunca": 28456,
+ "!(\"": 28457,
+ "▁położ": 28458,
+ "Secret": 28459,
+ "▁Domain": 28460,
+ "▁возмож": 28461,
+ "XV": 28462,
+ "lv": 28463,
+ "ikh": 28464,
+ "▁Sony": 28465,
+ "mq": 28466,
+ "otrop": 28467,
+ "▁Logger": 28468,
+ "▁threat": 28469,
+ "asted": 28470,
+ "зько": 28471,
+ "▁freely": 28472,
+ "▁improvements": 28473,
+ "istema": 28474,
+ "▁illustrate": 28475,
+ "▁tact": 28476,
+ "▁figur": 28477,
+ "ués": 28478,
+ "riminal": 28479,
+ "odon": 28480,
+ "intendo": 28481,
+ "▁influenced": 28482,
+ "FFER": 28483,
+ "▁Ghost": 28484,
+ "▁совер": 28485,
+ "nad": 28486,
+ "ioned": 28487,
+ "▁Events": 28488,
+ "▁wrapping": 28489,
+ "---------+": 28490,
+ "fif": 28491,
+ "▁(**": 28492,
+ "={{": 28493,
+ "маль": 28494,
+ "▁losses": 28495,
+ "▁Galerie": 28496,
+ "tel": 28497,
+ "▁лютого": 28498,
+ "▁Kru": 28499,
+ "▁Polen": 28500,
+ "нім": 28501,
+ "near": 28502,
+ "▁shame": 28503,
+ "▁moyenne": 28504,
+ "▁CP": 28505,
+ "preis": 28506,
+ "▁passenger": 28507,
+ "lek": 28508,
+ "ionales": 28509,
+ "kafka": 28510,
+ "▁participe": 28511,
+ "▁membership": 28512,
+ "[_": 28513,
+ "lando": 28514,
+ "stelling": 28515,
+ "Sem": 28516,
+ "gon": 28517,
+ "▁Correct": 28518,
+ "▁valle": 28519,
+ "▁readily": 28520,
+ "▁Dokument": 28521,
+ "honneur": 28522,
+ "▁testim": 28523,
+ "ulative": 28524,
+ "doFilter": 28525,
+ "▁dominant": 28526,
+ "ammer": 28527,
+ "▁која": 28528,
+ "▁Monsieur": 28529,
+ "zeg": 28530,
+ "▁війни": 28531,
+ "▁Fo": 28532,
+ "▁Amy": 28533,
+ "▁¡": 28534,
+ "▁február": 28535,
+ "▁downloading": 28536,
+ "▁leng": 28537,
+ "\\}$,": 28538,
+ "▁neat": 28539,
+ "▁Cache": 28540,
+ "ICATION": 28541,
+ "▁deve": 28542,
+ "▁sorrow": 28543,
+ "slow": 28544,
+ "▁hinaus": 28545,
+ "▁reconoc": 28546,
+ "▁Linked": 28547,
+ "▁Shaw": 28548,
+ "market": 28549,
+ "▁Dic": 28550,
+ "▁Ski": 28551,
+ "▁delimiter": 28552,
+ "▁MainActivity": 28553,
+ "▁Musical": 28554,
+ "▁Reyn": 28555,
+ "ScrollView": 28556,
+ "▁conventional": 28557,
+ "ença": 28558,
+ "▁refactor": 28559,
+ "'-": 28560,
+ "▁Hed": 28561,
+ "sprech": 28562,
+ "▁athlet": 28563,
+ "▁especies": 28564,
+ "▁Schön": 28565,
+ "▁kleinen": 28566,
+ "шко": 28567,
+ "▁Йо": 28568,
+ "▁Happy": 28569,
+ "multirow": 28570,
+ "▁augusti": 28571,
+ "▁Gand": 28572,
+ "▁appointment": 28573,
+ "▁Mediabestanden": 28574,
+ "Three": 28575,
+ "▁Kenneth": 28576,
+ "NEW": 28577,
+ "▁Notification": 28578,
+ "▁Marx": 28579,
+ "▁insc": 28580,
+ "Mor": 28581,
+ "вый": 28582,
+ "väst": 28583,
+ "vidia": 28584,
+ "▁demonstrated": 28585,
+ "fonts": 28586,
+ "▁kamen": 28587,
+ "▁Ster": 28588,
+ "▁mieszkańców": 28589,
+ "▁Koh": 28590,
+ "~$\\": 28591,
+ "»).": 28592,
+ "rene": 28593,
+ "insic": 28594,
+ "ická": 28595,
+ "xygen": 28596,
+ "▁mn": 28597,
+ "▁sched": 28598,
+ "ASC": 28599,
+ "Ig": 28600,
+ "▁Constant": 28601,
+ "▁opportun": 28602,
+ "▁MyClass": 28603,
+ "sef": 28604,
+ "oped": 28605,
+ "▁injured": 28606,
+ "VIS": 28607,
+ "▁Pero": 28608,
+ "▁Until": 28609,
+ "▁flesh": 28610,
+ "orphism": 28611,
+ "▁Portal": 28612,
+ "▁gminy": 28613,
+ "▁власти": 28614,
+ "▁Nä": 28615,
+ "ктиче": 28616,
+ "▁hrab": 28617,
+ "▁Cub": 28618,
+ "avoir": 28619,
+ "▁Lars": 28620,
+ "▁Бело": 28621,
+ "▁seizoen": 28622,
+ "▁Genomsnitt": 28623,
+ "▁Lil": 28624,
+ "▁Pool": 28625,
+ "▁Dios": 28626,
+ "TX": 28627,
+ "aes": 28628,
+ "autore": 28629,
+ "Alpha": 28630,
+ "states": 28631,
+ "Lab": 28632,
+ "nederbörd": 28633,
+ "erton": 28634,
+ "▁brid": 28635,
+ "▁richt": 28636,
+ "▁Ela": 28637,
+ "▁сла": 28638,
+ "▁weapon": 28639,
+ "▁combatt": 28640,
+ "agar": 28641,
+ "▁regnig": 28642,
+ "▁utilisé": 28643,
+ "▁servir": 28644,
+ "▁brick": 28645,
+ "▁gateway": 28646,
+ "▁torraste": 28647,
+ "▁procedures": 28648,
+ "▁årsnederbörd": 28649,
+ "▁Genomsnittlig": 28650,
+ "чёт": 28651,
+ "▁områ": 28652,
+ "▁regnigaste": 28653,
+ "▁честь": 28654,
+ "▁amid": 28655,
+ "▁grateful": 28656,
+ "▁DIS": 28657,
+ "DAY": 28658,
+ "▁ору": 28659,
+ "▁rivière": 28660,
+ "heure": 28661,
+ "▁Richmond": 28662,
+ "▁Compar": 28663,
+ "▁Нор": 28664,
+ "DOC": 28665,
+ "esia": 28666,
+ "calc": 28667,
+ "▁IU": 28668,
+ "▁vorg": 28669,
+ "▁habían": 28670,
+ "çoit": 28671,
+ "▁arist": 28672,
+ "▁кли": 28673,
+ "▁Sue": 28674,
+ "▁Touch": 28675,
+ "▁Writing": 28676,
+ "ifiable": 28677,
+ "▁wc": 28678,
+ "▁withdraw": 28679,
+ "зар": 28680,
+ "▁presently": 28681,
+ "▁FK": 28682,
+ "▁prakt": 28683,
+ "▁colored": 28684,
+ "usb": 28685,
+ "▁Perú": 28686,
+ "▁plata": 28687,
+ "▁wishes": 28688,
+ "▁кам": 28689,
+ "azar": 28690,
+ "ável": 28691,
+ "▁lamp": 28692,
+ "bishop": 28693,
+ "▁inclusion": 28694,
+ "jq": 28695,
+ "arth": 28696,
+ "▁Flag": 28697,
+ "▁нор": 28698,
+ "ædia": 28699,
+ "UNCTION": 28700,
+ "▁Bahnhof": 28701,
+ "▁approaching": 28702,
+ "▁Gött": 28703,
+ "▁cube": 28704,
+ "▁argued": 28705,
+ "▁Things": 28706,
+ "Gui": 28707,
+ "дови": 28708,
+ "▁recre": 28709,
+ "▁réseau": 28710,
+ "▁significa": 28711,
+ "Git": 28712,
+ "gebracht": 28713,
+ "▁liga": 28714,
+ "▁assured": 28715,
+ "alus": 28716,
+ "рит": 28717,
+ "▁энциклопеди": 28718,
+ "▁%).": 28719,
+ "▁Première": 28720,
+ "▁declarations": 28721,
+ "▁tricky": 28722,
+ "▁profiles": 28723,
+ "▁Fon": 28724,
+ "▁Jas": 28725,
+ "âr": 28726,
+ "babel": 28727,
+ "▁Friday": 28728,
+ "▁június": 28729,
+ "▁cols": 28730,
+ "▁EXISTS": 28731,
+ "▁Italiana": 28732,
+ "▁authorization": 28733,
+ "▁sulle": 28734,
+ "▁Emb": 28735,
+ "▁Variable": 28736,
+ "trees": 28737,
+ "▁Fly": 28738,
+ "riors": 28739,
+ "▁damals": 28740,
+ "▁findet": 28741,
+ "▁Sept": 28742,
+ "▁mundial": 28743,
+ "▁removal": 28744,
+ "▁longitude": 28745,
+ "clic": 28746,
+ "▁fade": 28747,
+ "▁gradle": 28748,
+ "▁zák": 28749,
+ "▁timing": 28750,
+ "trightarrow": 28751,
+ "atia": 28752,
+ "-.": 28753,
+ "uche": 28754,
+ "▁serialize": 28755,
+ "▁Hmm": 28756,
+ "▁Representatives": 28757,
+ "bah": 28758,
+ "rend": 28759,
+ "assador": 28760,
+ "▁shield": 28761,
+ "ucion": 28762,
+ "▁américaine": 28763,
+ "zę": 28764,
+ "villa": 28765,
+ "▁hombre": 28766,
+ "áss": 28767,
+ "▁SF": 28768,
+ "▁repeating": 28769,
+ "▁criter": 28770,
+ "▁Struct": 28771,
+ "???": 28772,
+ "▁cheap": 28773,
+ "▁rings": 28774,
+ "abhäng": 28775,
+ "▁corte": 28776,
+ "▁administ": 28777,
+ "ixon": 28778,
+ "gypt": 28779,
+ "▁puntos": 28780,
+ "▁mezi": 28781,
+ "▁pochod": 28782,
+ "isko": 28783,
+ "nię": 28784,
+ "▁осу": 28785,
+ "▁ár": 28786,
+ "тельной": 28787,
+ "▁Metropolitan": 28788,
+ "jin": 28789,
+ "zess": 28790,
+ "▁віці": 28791,
+ "▁conflicts": 28792,
+ "ijst": 28793,
+ "▁Market": 28794,
+ "стров": 28795,
+ "▁\",\"": 28796,
+ "▁Scroll": 28797,
+ "gun": 28798,
+ "тара": 28799,
+ "▁amateur": 28800,
+ "▁róż": 28801,
+ "poss": 28802,
+ "▁generalized": 28803,
+ "▁Harm": 28804,
+ "cita": 28805,
+ "▁Switzerland": 28806,
+ "icola": 28807,
+ "▁muit": 28808,
+ "located": 28809,
+ "▁có": 28810,
+ "▁arose": 28811,
+ "▁communauté": 28812,
+ "})^": 28813,
+ "visibility": 28814,
+ "ída": 28815,
+ "▁FB": 28816,
+ "▁Freund": 28817,
+ "gat": 28818,
+ "\":{\"": 28819,
+ "intellij": 28820,
+ "ifie": 28821,
+ "hmen": 28822,
+ "▁édition": 28823,
+ "▁које": 28824,
+ "▁інших": 28825,
+ "oming": 28826,
+ "▁arquitect": 28827,
+ "▁Presidente": 28828,
+ "▁Під": 28829,
+ "▁cabin": 28830,
+ "Theorem": 28831,
+ "▁Gay": 28832,
+ "ifice": 28833,
+ "▁hect": 28834,
+ "lą": 28835,
+ "irmingham": 28836,
+ "▁semantic": 28837,
+ "▁Louisiana": 28838,
+ "▁sacrifice": 28839,
+ "▁Christoph": 28840,
+ "▁Executive": 28841,
+ "_+": 28842,
+ "ják": 28843,
+ "▁seria": 28844,
+ "▁Overflow": 28845,
+ "▁Lucy": 28846,
+ "▁melhor": 28847,
+ "▁voices": 28848,
+ "cza": 28849,
+ "▁капи": 28850,
+ "▁университета": 28851,
+ "INCT": 28852,
+ "▁coloc": 28853,
+ "▁prue": 28854,
+ "▁geomet": 28855,
+ "▁diretto": 28856,
+ "reso": 28857,
+ "▁Akt": 28858,
+ "▁unh": 28859,
+ "▁сери": 28860,
+ "▁Alert": 28861,
+ "Wel": 28862,
+ "audi": 28863,
+ "äler": 28864,
+ "▁guests": 28865,
+ "▁иде": 28866,
+ "Studio": 28867,
+ "▁кате": 28868,
+ "▁exponent": 28869,
+ "rze": 28870,
+ "pmod": 28871,
+ "rolle": 28872,
+ "▁Limited": 28873,
+ "Allemagne": 28874,
+ "▁pity": 28875,
+ "▁lä": 28876,
+ "▁runner": 28877,
+ "kende": 28878,
+ "EQ": 28879,
+ "▁MM": 28880,
+ "szág": 28881,
+ "поді": 28882,
+ "▁regret": 28883,
+ "▁publié": 28884,
+ "▁departamento": 28885,
+ "▁accused": 28886,
+ "hp": 28887,
+ "▁Pfl": 28888,
+ "▁Sint": 28889,
+ "▁ekonom": 28890,
+ "ractor": 28891,
+ "▁Пів": 28892,
+ "▁awful": 28893,
+ "ować": 28894,
+ "]->": 28895,
+ "▁Fine": 28896,
+ "Са": 28897,
+ "tis": 28898,
+ "éta": 28899,
+ "▁Роди": 28900,
+ "▁Düsseldorf": 28901,
+ "LOB": 28902,
+ "osas": 28903,
+ "werke": 28904,
+ "▁lance": 28905,
+ "▁листопада": 28906,
+ "▁incomplete": 28907,
+ "▁Picture": 28908,
+ "('\\": 28909,
+ "esters": 28910,
+ "▁belonged": 28911,
+ "▁Sank": 28912,
+ "ammed": 28913,
+ "▁repositories": 28914,
+ "▁addr": 28915,
+ "Collect": 28916,
+ "Hot": 28917,
+ "▁tyl": 28918,
+ "▁instanceof": 28919,
+ "▁bonus": 28920,
+ "ový": 28921,
+ "▁моря": 28922,
+ "▁interactive": 28923,
+ "▁Mys": 28924,
+ "▁Edmund": 28925,
+ "fileName": 28926,
+ "emor": 28927,
+ "▁Три": 28928,
+ "▁Rosen": 28929,
+ "▁Prima": 28930,
+ "▁voting": 28931,
+ "▁XP": 28932,
+ "▁Zero": 28933,
+ "▁Led": 28934,
+ "amsung": 28935,
+ "▁enables": 28936,
+ "▁redirects": 28937,
+ "AST": 28938,
+ "Paint": 28939,
+ "acker": 28940,
+ "lecht": 28941,
+ "▁chairman": 28942,
+ "▁Aven": 28943,
+ "▁Sach": 28944,
+ "(\"<": 28945,
+ "кер": 28946,
+ "▁mistakes": 28947,
+ "▁Weit": 28948,
+ "▁prowad": 28949,
+ "▁didnt": 28950,
+ "énario": 28951,
+ "unless": 28952,
+ "▁backwards": 28953,
+ "boa": 28954,
+ "duino": 28955,
+ "```": 28956,
+ "stor": 28957,
+ "Completion": 28958,
+ "puesta": 28959,
+ "▁dinast": 28960,
+ "últ": 28961,
+ "▁SY": 28962,
+ "ifolia": 28963,
+ "œuvres": 28964,
+ "▁racing": 28965,
+ "▁cabinet": 28966,
+ "▁cutting": 28967,
+ "▁thumb": 28968,
+ "▁Кара": 28969,
+ "highlight": 28970,
+ "куп": 28971,
+ "▁sd": 28972,
+ "▁національ": 28973,
+ "▁campagne": 28974,
+ "▁registers": 28975,
+ "▁educational": 28976,
+ "▁pesar": 28977,
+ "üge": 28978,
+ "▁oro": 28979,
+ "burgo": 28980,
+ "▁Athletics": 28981,
+ "▁MTV": 28982,
+ "getMessage": 28983,
+ "▁Hyp": 28984,
+ "▁victim": 28985,
+ "))\\": 28986,
+ "▁drums": 28987,
+ "hostname": 28988,
+ "tał": 28989,
+ "making": 28990,
+ "▁powiat": 28991,
+ "őd": 28992,
+ "threads": 28993,
+ "▁absolv": 28994,
+ "▁люди": 28995,
+ "▁stepped": 28996,
+ "exist": 28997,
+ "▁NK": 28998,
+ "▁ves": 28999,
+ "istiche": 29000,
+ "%'": 29001,
+ "ativos": 29002,
+ "▁такой": 29003,
+ "▁MongoDB": 29004,
+ "▁Ung": 29005,
+ "▁Рус": 29006,
+ "▁elim": 29007,
+ "▁Fif": 29008,
+ "icación": 29009,
+ "▁Tennis": 29010,
+ "▁Jefferson": 29011,
+ "ján": 29012,
+ "fog": 29013,
+ "anha": 29014,
+ "zor": 29015,
+ "▁університе": 29016,
+ "ahu": 29017,
+ "iada": 29018,
+ "Sdk": 29019,
+ "Setting": 29020,
+ "▁Kill": 29021,
+ "▁Wend": 29022,
+ "▁bald": 29023,
+ "▁Kub": 29024,
+ "▁visto": 29025,
+ "▁jeunes": 29026,
+ "collections": 29027,
+ "ací": 29028,
+ "вропей": 29029,
+ "▁arise": 29030,
+ "оні": 29031,
+ "MAIN": 29032,
+ "доступ": 29033,
+ "▁berg": 29034,
+ "▁criticism": 29035,
+ "▁Torre": 29036,
+ "▁descript": 29037,
+ "ières": 29038,
+ "▁estudio": 29039,
+ "▁ili": 29040,
+ "▁militare": 29041,
+ "▁Clara": 29042,
+ "▁Ellen": 29043,
+ "limited": 29044,
+ "лм": 29045,
+ "▁Españ": 29046,
+ "▁infinitely": 29047,
+ "America": 29048,
+ "ouc": 29049,
+ "glass": 29050,
+ "▁rud": 29051,
+ "▁zat": 29052,
+ "▁rin": 29053,
+ "▁Bibliografía": 29054,
+ "▁merchant": 29055,
+ "tensorflow": 29056,
+ "▁dér": 29057,
+ "▁ActiveRecord": 29058,
+ "IES": 29059,
+ "▁linker": 29060,
+ "▁estudios": 29061,
+ "cdnjs": 29062,
+ "▁Государ": 29063,
+ "ánchez": 29064,
+ "appe": 29065,
+ "club": 29066,
+ "▁další": 29067,
+ "▁Algorithm": 29068,
+ "dfs": 29069,
+ "▁Bac": 29070,
+ "▁кафе": 29071,
+ "▁&=\\": 29072,
+ "▁ат": 29073,
+ "▁Глав": 29074,
+ "▁Mou": 29075,
+ "Machine": 29076,
+ "(...)": 29077,
+ "▁compart": 29078,
+ "▁augusztus": 29079,
+ "avan": 29080,
+ "▁rolled": 29081,
+ "▁еди": 29082,
+ "Scan": 29083,
+ "▁регі": 29084,
+ "▁świata": 29085,
+ "▁mines": 29086,
+ "},{": 29087,
+ "▁Tier": 29088,
+ "Cannot": 29089,
+ "мін": 29090,
+ "▁NEW": 29091,
+ "▁Вол": 29092,
+ "▁Manh": 29093,
+ "▁Gregory": 29094,
+ "▁principe": 29095,
+ "ISO": 29096,
+ "prog": 29097,
+ "▁Fail": 29098,
+ "▁aa": 29099,
+ "▁fecha": 29100,
+ "▁WCF": 29101,
+ "▁magistr": 29102,
+ "▁Zach": 29103,
+ "▁unicode": 29104,
+ "▁converter": 29105,
+ "▁dispers": 29106,
+ "ksam": 29107,
+ "▁Uncle": 29108,
+ "PropertyChanged": 29109,
+ "▁lider": 29110,
+ "▁opts": 29111,
+ "▁там": 29112,
+ "locked": 29113,
+ "zak": 29114,
+ "▁counted": 29115,
+ "▁persone": 29116,
+ "▁hurried": 29117,
+ "ätter": 29118,
+ "▁outras": 29119,
+ "▁genu": 29120,
+ "BD": 29121,
+ "veg": 29122,
+ "due": 29123,
+ "▁Pract": 29124,
+ "▁posible": 29125,
+ "▁contribute": 29126,
+ "UMN": 29127,
+ "▁Bürger": 29128,
+ "▁wars": 29129,
+ "▁exhibition": 29130,
+ "hill": 29131,
+ "▁astr": 29132,
+ "▁музе": 29133,
+ "▁CASE": 29134,
+ "manifest": 29135,
+ "yellow": 29136,
+ "Fn": 29137,
+ "▁RC": 29138,
+ "▁sott": 29139,
+ "▁sujet": 29140,
+ "▁Socket": 29141,
+ "▁Chine": 29142,
+ "▁frameworks": 29143,
+ "Hold": 29144,
+ "êts": 29145,
+ "▁філь": 29146,
+ "Loaded": 29147,
+ "ophe": 29148,
+ "texte": 29149,
+ "▁expres": 29150,
+ "▁consume": 29151,
+ "▁Richtung": 29152,
+ "ografi": 29153,
+ "▁magnific": 29154,
+ "àt": 29155,
+ "▁indul": 29156,
+ "ryty": 29157,
+ "▁offici": 29158,
+ "▁assault": 29159,
+ "rund": 29160,
+ "▁variants": 29161,
+ "▁сельсов": 29162,
+ "▁excitement": 29163,
+ "Times": 29164,
+ "kotlin": 29165,
+ "▁gering": 29166,
+ "▁Engel": 29167,
+ "▁Timer": 29168,
+ "²).": 29169,
+ "▁Ng": 29170,
+ "ässt": 29171,
+ "schau": 29172,
+ "SError": 29173,
+ "▁Edwards": 29174,
+ "▁Terminal": 29175,
+ "lict": 29176,
+ "Under": 29177,
+ "▁spawn": 29178,
+ "ürgen": 29179,
+ "▁Außerdem": 29180,
+ "▁kitchen": 29181,
+ "fahrt": 29182,
+ "▁Colors": 29183,
+ "▁система": 29184,
+ "▁terminated": 29185,
+ "▁LaTeX": 29186,
+ "igkeiten": 29187,
+ "▁mesure": 29188,
+ "▁Amts": 29189,
+ "▁empir": 29190,
+ "▁striking": 29191,
+ "▁exclusive": 29192,
+ "тех": 29193,
+ "▁rez": 29194,
+ "▁quan": 29195,
+ "▁Glasgow": 29196,
+ "▁lecture": 29197,
+ "▁Testament": 29198,
+ "▁funds": 29199,
+ "▁stessa": 29200,
+ "▁tribes": 29201,
+ "▁parfois": 29202,
+ "▁treball": 29203,
+ "nitz": 29204,
+ "bove": 29205,
+ "▁заслу": 29206,
+ "▁absent": 29207,
+ "▁Lauf": 29208,
+ "Smith": 29209,
+ "▁Николай": 29210,
+ "▁européenne": 29211,
+ "lr": 29212,
+ "▁programma": 29213,
+ "▁midst": 29214,
+ "▁daughters": 29215,
+ "Syn": 29216,
+ "oben": 29217,
+ "ână": 29218,
+ "idan": 29219,
+ "▁ther": 29220,
+ "odore": 29221,
+ "sdl": 29222,
+ "▁Quint": 29223,
+ "▁casos": 29224,
+ "▁Zam": 29225,
+ "▁страны": 29226,
+ "▁sprite": 29227,
+ "кал": 29228,
+ "▁nasc": 29229,
+ "▁сотруд": 29230,
+ "▁trava": 29231,
+ "▁хозяй": 29232,
+ "▁Uruguay": 29233,
+ "▁sparse": 29234,
+ "▁поле": 29235,
+ "▁mystery": 29236,
+ "▁Mang": 29237,
+ "registr": 29238,
+ "▁CGFloat": 29239,
+ "▁submission": 29240,
+ "вана": 29241,
+ "▁\":": 29242,
+ "▁Traceback": 29243,
+ "▁Pit": 29244,
+ "▁Ehr": 29245,
+ "▁сра": 29246,
+ "▁Graphics": 29247,
+ "Updated": 29248,
+ "▁svensk": 29249,
+ "▁spacing": 29250,
+ "tritt": 29251,
+ "▁Guinea": 29252,
+ "▁França": 29253,
+ "Associ": 29254,
+ "▁Tová": 29255,
+ "stab": 29256,
+ "▁Learning": 29257,
+ "▁Bright": 29258,
+ "śc": 29259,
+ "▁idő": 29260,
+ "}}_{\\": 29261,
+ "▁droite": 29262,
+ "▁raising": 29263,
+ "getting": 29264,
+ "ythm": 29265,
+ "onyme": 29266,
+ "żs": 29267,
+ "▁blah": 29268,
+ "TagName": 29269,
+ "Vertical": 29270,
+ "▁aper": 29271,
+ "postgresql": 29272,
+ "▁Handle": 29273,
+ "zew": 29274,
+ "▁skulle": 29275,
+ "▁opere": 29276,
+ "layers": 29277,
+ "▁possono": 29278,
+ "▁relate": 29279,
+ "ąc": 29280,
+ "▁Mih": 29281,
+ "âge": 29282,
+ "▁Świ": 29283,
+ "isses": 29284,
+ "▁servlet": 29285,
+ "Los": 29286,
+ "▁Advanced": 29287,
+ "atica": 29288,
+ "▁ced": 29289,
+ "▁elementos": 29290,
+ "рона": 29291,
+ "iks": 29292,
+ "arf": 29293,
+ "ariat": 29294,
+ "Mobile": 29295,
+ "agua": 29296,
+ "▁timp": 29297,
+ "▁Comité": 29298,
+ "▁combining": 29299,
+ "wohl": 29300,
+ "▁Study": 29301,
+ "coordinate": 29302,
+ "▁recommendation": 29303,
+ "▁transformations": 29304,
+ "until": 29305,
+ "bounded": 29306,
+ "▁изу": 29307,
+ "hanced": 29308,
+ "▁вопро": 29309,
+ "▁Prés": 29310,
+ "▁coord": 29311,
+ "xty": 29312,
+ "▁$,": 29313,
+ "▁champions": 29314,
+ "Den": 29315,
+ "Mil": 29316,
+ "(',": 29317,
+ "▁Preis": 29318,
+ "▁eigh": 29319,
+ "▁markers": 29320,
+ "▁gewesen": 29321,
+ "ätten": 29322,
+ "▁pione": 29323,
+ "mv": 29324,
+ "▁ју": 29325,
+ "zeichnis": 29326,
+ "hoff": 29327,
+ "News": 29328,
+ "▁Stanisław": 29329,
+ "▁Brandenburg": 29330,
+ "▁Feuer": 29331,
+ "=&": 29332,
+ "жет": 29333,
+ "▁Neil": 29334,
+ "▁wirk": 29335,
+ "▁società": 29336,
+ "▁spare": 29337,
+ "▁civile": 29338,
+ "sprach": 29339,
+ "▁disse": 29340,
+ "▁gates": 29341,
+ "▁anom": 29342,
+ "▁Федерации": 29343,
+ "▁tib": 29344,
+ "▁fútbol": 29345,
+ "▁Wikiped": 29346,
+ "iate": 29347,
+ "Front": 29348,
+ "▁craw": 29349,
+ "▁Rak": 29350,
+ "▁зву": 29351,
+ "street": 29352,
+ "▁Agency": 29353,
+ "вало": 29354,
+ "▁Рас": 29355,
+ "▁mkdir": 29356,
+ "ację": 29357,
+ "▁shares": 29358,
+ "Story": 29359,
+ "▁remarks": 29360,
+ "▁keywords": 29361,
+ "Bob": 29362,
+ "▁toe": 29363,
+ "▁Vitt": 29364,
+ "▁rhs": 29365,
+ "ROP": 29366,
+ "oris": 29367,
+ "/@": 29368,
+ "сии": 29369,
+ "▁traverse": 29370,
+ "▁referencing": 29371,
+ "präsident": 29372,
+ "rong": 29373,
+ "'):": 29374,
+ "aties": 29375,
+ "AW": 29376,
+ "Outlet": 29377,
+ "▁évol": 29378,
+ "ikes": 29379,
+ "▁environmental": 29380,
+ "icum": 29381,
+ "▁Lied": 29382,
+ "▁warn": 29383,
+ "▁Butler": 29384,
+ "▁%),": 29385,
+ "▁Zeitschrift": 29386,
+ "▁Montr": 29387,
+ "важа": 29388,
+ "▁Mercur": 29389,
+ "jekte": 29390,
+ "meter": 29391,
+ "ducation": 29392,
+ "▁attributed": 29393,
+ "*$": 29394,
+ "▁unf": 29395,
+ "▁Vertrag": 29396,
+ "zien": 29397,
+ "▁Роб": 29398,
+ "lices": 29399,
+ "pply": 29400,
+ "ansen": 29401,
+ "▁zeit": 29402,
+ "▁immense": 29403,
+ "▁lutego": 29404,
+ "▁Bulgar": 29405,
+ "▁miembros": 29406,
+ "▁Националь": 29407,
+ "▁Allow": 29408,
+ "▁anglès": 29409,
+ "дви": 29410,
+ "▁Toy": 29411,
+ "туа": 29412,
+ "▁yard": 29413,
+ "(%": 29414,
+ "isser": 29415,
+ "▁golf": 29416,
+ "▁Ukrain": 29417,
+ "▁hosp": 29418,
+ "Include": 29419,
+ "▁Lisa": 29420,
+ "▁csal": 29421,
+ "▁Mira": 29422,
+ "recogn": 29423,
+ "▁Ке": 29424,
+ "▁hitting": 29425,
+ "кономі": 29426,
+ "▁Tournament": 29427,
+ "LOAD": 29428,
+ "▁Guardian": 29429,
+ "▁daher": 29430,
+ "▁timezone": 29431,
+ "▁tomcat": 29432,
+ "▁successor": 29433,
+ "▁Void": 29434,
+ "▁começ": 29435,
+ "▁converts": 29436,
+ "ächs": 29437,
+ "osex": 29438,
+ "xelles": 29439,
+ "aser": 29440,
+ "▁És": 29441,
+ "▁mou": 29442,
+ "▁ung": 29443,
+ "▁origen": 29444,
+ "▁Crow": 29445,
+ "▁Erd": 29446,
+ "▁sieben": 29447,
+ "lua": 29448,
+ "▁BB": 29449,
+ "RENT": 29450,
+ "▁piłkar": 29451,
+ "▁marque": 29452,
+ "▁Labour": 29453,
+ "viders": 29454,
+ "▁exempl": 29455,
+ "Sound": 29456,
+ "▁Wass": 29457,
+ "arrison": 29458,
+ "▁течение": 29459,
+ "▁Oficina": 29460,
+ "▁Daw": 29461,
+ "▁Kauf": 29462,
+ "ént": 29463,
+ "éső": 29464,
+ "▁=\"": 29465,
+ "▁kat": 29466,
+ "diction": 29467,
+ "▁Voll": 29468,
+ "▁highway": 29469,
+ "James": 29470,
+ "zeuge": 29471,
+ "▁modelo": 29472,
+ "Throw": 29473,
+ "▁Forum": 29474,
+ "(\"@": 29475,
+ "▁enfer": 29476,
+ "▁специаль": 29477,
+ "Numbers": 29478,
+ "▁Binary": 29479,
+ "▁Martínez": 29480,
+ "▁Stato": 29481,
+ "▁festiv": 29482,
+ "▁katol": 29483,
+ "▁Аб": 29484,
+ "▁limitation": 29485,
+ "▁STR": 29486,
+ "▁Официаль": 29487,
+ "ipes": 29488,
+ "▁Isn": 29489,
+ "▁ruled": 29490,
+ "▁cí": 29491,
+ "geber": 29492,
+ "▁lavoro": 29493,
+ "▁parentheses": 29494,
+ "оз": 29495,
+ "▁équipes": 29496,
+ "▁efficiently": 29497,
+ "▁Period": 29498,
+ "▁Regarding": 29499,
+ "leaf": 29500,
+ "▁similarity": 29501,
+ "▁gesture": 29502,
+ "datab": 29503,
+ "▁terminate": 29504,
+ "▁semantics": 29505,
+ "▁Alo": 29506,
+ "▁cig": 29507,
+ "▁OpenGL": 29508,
+ "▁heutigen": 29509,
+ "xaml": 29510,
+ "▁frequencies": 29511,
+ ")}.": 29512,
+ "▁threatened": 29513,
+ "тик": 29514,
+ "▁calcio": 29515,
+ "▁Riemann": 29516,
+ "slug": 29517,
+ "▁Finale": 29518,
+ "LR": 29519,
+ "▁Derby": 29520,
+ "▁още": 29521,
+ "▁deviation": 29522,
+ "ächen": 29523,
+ "▁Cris": 29524,
+ "ново": 29525,
+ "▁столі": 29526,
+ "▁relev": 29527,
+ "▁splendid": 29528,
+ "▁учё": 29529,
+ "erving": 29530,
+ "gable": 29531,
+ "▁générale": 29532,
+ "pom": 29533,
+ "▁Cheers": 29534,
+ "▁imprison": 29535,
+ "▁indent": 29536,
+ "▁analyz": 29537,
+ "▁revert": 29538,
+ "érer": 29539,
+ "▁phases": 29540,
+ "FirstName": 29541,
+ "▁mig": 29542,
+ "▁disturb": 29543,
+ "▁mixture": 29544,
+ "▁){": 29545,
+ "inture": 29546,
+ "▁Tried": 29547,
+ "▁sooner": 29548,
+ "▁pels": 29549,
+ "▁établ": 29550,
+ "etro": 29551,
+ "itie": 29552,
+ "▁quartier": 29553,
+ "▁гово": 29554,
+ "▁város": 29555,
+ "ufe": 29556,
+ "heten": 29557,
+ "хом": 29558,
+ "▁soap": 29559,
+ "utors": 29560,
+ "▁duch": 29561,
+ "syntax": 29562,
+ "▁tribe": 29563,
+ "▁chante": 29564,
+ "Tri": 29565,
+ "▁Mate": 29566,
+ "quality": 29567,
+ "uola": 29568,
+ "=\".": 29569,
+ "chk": 29570,
+ "▁всі": 29571,
+ "▁przeci": 29572,
+ "▁Meteor": 29573,
+ "▁scattered": 29574,
+ "Plus": 29575,
+ "trad": 29576,
+ "▁stackoverflow": 29577,
+ "▁retra": 29578,
+ "▁éditions": 29579,
+ "▁sain": 29580,
+ "cribe": 29581,
+ "ignon": 29582,
+ "ucker": 29583,
+ "▁мало": 29584,
+ "▁tenir": 29585,
+ "▁exports": 29586,
+ "▁auxili": 29587,
+ "▁]]": 29588,
+ "▁CBS": 29589,
+ "uniform": 29590,
+ "▁periodic": 29591,
+ "agrant": 29592,
+ "▁emple": 29593,
+ "Wil": 29594,
+ "▁fres": 29595,
+ "▁strutt": 29596,
+ "▁світ": 29597,
+ "▁betre": 29598,
+ "▁объек": 29599,
+ "тися": 29600,
+ "▁bisher": 29601,
+ "baum": 29602,
+ "ishi": 29603,
+ "▁Gazette": 29604,
+ "backgroundColor": 29605,
+ "jl": 29606,
+ "▁fiel": 29607,
+ "▁према": 29608,
+ "▁protagonista": 29609,
+ "▁Muhammad": 29610,
+ "▁simulate": 29611,
+ "▁Hook": 29612,
+ "fest": 29613,
+ "▁своих": 29614,
+ "Sender": 29615,
+ "▁listened": 29616,
+ "жі": 29617,
+ "jest": 29618,
+ "kord": 29619,
+ "Choice": 29620,
+ "▁hoofd": 29621,
+ "reducible": 29622,
+ "hpp": 29623,
+ "▁Wu": 29624,
+ "ši": 29625,
+ "▁Marse": 29626,
+ "▁soir": 29627,
+ "westen": 29628,
+ "emos": 29629,
+ "▁Duc": 29630,
+ "▁amerik": 29631,
+ "|}{": 29632,
+ "▁Gul": 29633,
+ "▁Sprache": 29634,
+ "▁mismatch": 29635,
+ "Scal": 29636,
+ "Pixel": 29637,
+ "EF": 29638,
+ "▁Sep": 29639,
+ "▁powiecie": 29640,
+ "urk": 29641,
+ "▁Napoli": 29642,
+ "▁neighbourhood": 29643,
+ "стоян": 29644,
+ "▁searches": 29645,
+ "yrus": 29646,
+ "пет": 29647,
+ "Help": 29648,
+ "pont": 29649,
+ "▁Orient": 29650,
+ "▁Alfonso": 29651,
+ "▁monitoring": 29652,
+ "iao": 29653,
+ "édé": 29654,
+ "▁César": 29655,
+ "шее": 29656,
+ "Shift": 29657,
+ "suit": 29658,
+ "coded": 29659,
+ "ното": 29660,
+ "▁Parti": 29661,
+ "▁lasci": 29662,
+ "▁awesome": 29663,
+ "usta": 29664,
+ "▁Сове": 29665,
+ "▁Fland": 29666,
+ "oom": 29667,
+ "▁devi": 29668,
+ "engelsk": 29669,
+ "endum": 29670,
+ "▁Pascal": 29671,
+ "▁Bind": 29672,
+ "▁siguientes": 29673,
+ "JB": 29674,
+ "▁Petersburg": 29675,
+ "▁incorrectly": 29676,
+ "▁Bash": 29677,
+ "▁pelos": 29678,
+ "▁zespo": 29679,
+ "NSURL": 29680,
+ "▁přek": 29681,
+ "▁Crime": 29682,
+ "nach": 29683,
+ "▁thrust": 29684,
+ "▁Cultura": 29685,
+ "WF": 29686,
+ "▁Solo": 29687,
+ "▁invas": 29688,
+ "▁individually": 29689,
+ "ibm": 29690,
+ "▁etapa": 29691,
+ "▁handed": 29692,
+ "▁wherever": 29693,
+ "▁interpolation": 29694,
+ "▁musée": 29695,
+ "▁CNN": 29696,
+ "idia": 29697,
+ "ństw": 29698,
+ "▁przew": 29699,
+ "ughing": 29700,
+ "▁actors": 29701,
+ "▁Oriental": 29702,
+ "▁convenience": 29703,
+ "▁miasta": 29704,
+ "brains": 29705,
+ "▁меся": 29706,
+ "▁infatti": 29707,
+ "▁AllMovie": 29708,
+ "▁critique": 29709,
+ "▁successo": 29710,
+ "ancouver": 29711,
+ "▁fá": 29712,
+ "ългар": 29713,
+ "▁wisdom": 29714,
+ "▁Phoenix": 29715,
+ "hole": 29716,
+ "▁información": 29717,
+ "▁Airlines": 29718,
+ ".«": 29719,
+ "mort": 29720,
+ "userId": 29721,
+ "▁*/\r": 29722,
+ "▁Congo": 29723,
+ "▁\"`": 29724,
+ "corr": 29725,
+ "▁problemas": 29726,
+ "▁bib": 29727,
+ "▁później": 29728,
+ "▁fileName": 29729,
+ "zott": 29730,
+ "macht": 29731,
+ "▁Ulrich": 29732,
+ "Cy": 29733,
+ "endpoint": 29734,
+ "▁sheep": 29735,
+ "▁ibn": 29736,
+ "Feed": 29737,
+ "▁sympathy": 29738,
+ "▁Ib": 29739,
+ "▁territorial": 29740,
+ "rating": 29741,
+ "дами": 29742,
+ "▁dst": 29743,
+ "ую": 29744,
+ "aho": 29745,
+ "▁sug": 29746,
+ "emia": 29747,
+ "▁ted": 29748,
+ "▁Api": 29749,
+ "▁Rica": 29750,
+ "▁MR": 29751,
+ "ńskim": 29752,
+ "▁Voor": 29753,
+ "▁devil": 29754,
+ "▁Фо": 29755,
+ "▁När": 29756,
+ "▁...)": 29757,
+ "▁vois": 29758,
+ "▁abbre": 29759,
+ "▁Männer": 29760,
+ "ximo": 29761,
+ "▁intellectual": 29762,
+ "▁tales": 29763,
+ "similar": 29764,
+ "neum": 29765,
+ "▁Orig": 29766,
+ "▁postal": 29767,
+ "▁hvor": 29768,
+ "▁identification": 29769,
+ "▁Од": 29770,
+ "uesto": 29771,
+ "▁../": 29772,
+ "▁bir": 29773,
+ "▁Лон": 29774,
+ "▁esempio": 29775,
+ "▁Eing": 29776,
+ "Expand": 29777,
+ "▁PRIMARY": 29778,
+ "▁Jin": 29779,
+ "▁však": 29780,
+ "ourses": 29781,
+ "▁Betty": 29782,
+ "▁WM": 29783,
+ "▁flask": 29784,
+ "hlen": 29785,
+ "▁Adel": 29786,
+ "laravel": 29787,
+ "▁дет": 29788,
+ "ською": 29789,
+ "▁Mundo": 29790,
+ "iczn": 29791,
+ "ifié": 29792,
+ "▁Мор": 29793,
+ "▁древ": 29794,
+ "DateFormat": 29795,
+ "ським": 29796,
+ "▁dated": 29797,
+ "коли": 29798,
+ "▁результате": 29799,
+ "\\).": 29800,
+ "▁delayed": 29801,
+ "sound": 29802,
+ "▁Мак": 29803,
+ "▁\"...": 29804,
+ "▁binnen": 29805,
+ "▁факуль": 29806,
+ "▁polygon": 29807,
+ "▁eggs": 29808,
+ "AtIndexPath": 29809,
+ "менталь": 29810,
+ "▁incred": 29811,
+ "chunk": 29812,
+ "webdriver": 29813,
+ "▁свобо": 29814,
+ "▁między": 29815,
+ "Received": 29816,
+ "▁Monde": 29817,
+ "▁JQuery": 29818,
+ "Butt": 29819,
+ "▁PDO": 29820,
+ "▁forec": 29821,
+ "▁discipline": 29822,
+ "chev": 29823,
+ "нат": 29824,
+ "▁redis": 29825,
+ "▁hunting": 29826,
+ "▁alk": 29827,
+ "▁proofs": 29828,
+ "PRI": 29829,
+ "▁chip": 29830,
+ "ésie": 29831,
+ "▁HO": 29832,
+ "▁rug": 29833,
+ "zos": 29834,
+ "▁sorte": 29835,
+ "▁zeigt": 29836,
+ "▁Physics": 29837,
+ "legte": 29838,
+ "▁proportional": 29839,
+ "▁toolbar": 29840,
+ "vement": 29841,
+ "notin": 29842,
+ "▁první": 29843,
+ "blah": 29844,
+ "▁présence": 29845,
+ "▁lloc": 29846,
+ "▁líder": 29847,
+ "▁Accept": 29848,
+ "▁Always": 29849,
+ "▁\"{": 29850,
+ "▁diversi": 29851,
+ "ikor": 29852,
+ "Period": 29853,
+ "жён": 29854,
+ "▁Alliance": 29855,
+ "▁relay": 29856,
+ "Bro": 29857,
+ "jön": 29858,
+ "▁Baud": 29859,
+ "▁Bian": 29860,
+ "')[": 29861,
+ "чив": 29862,
+ "▁Poss": 29863,
+ "▁Mitglieder": 29864,
+ "▁nev": 29865,
+ "Daniel": 29866,
+ "▁tends": 29867,
+ "▁compagnie": 29868,
+ "▁livres": 29869,
+ "lub": 29870,
+ "▁": 29871,
+ "e": 29872,
+ "t": 29873,
+ "a": 29874,
+ "i": 29875,
+ "n": 29876,
+ "o": 29877,
+ "r": 29878,
+ "s": 29879,
+ "l": 29880,
+ "d": 29881,
+ "h": 29882,
+ "c": 29883,
+ "u": 29884,
+ "m": 29885,
+ "p": 29886,
+ "g": 29887,
+ "f": 29888,
+ ".": 29889,
+ "b": 29890,
+ "y": 29891,
+ ",": 29892,
+ "w": 29893,
+ "v": 29894,
+ "k": 29895,
+ "1": 29896,
+ ")": 29897,
+ "(": 29898,
+ "-": 29899,
+ "0": 29900,
+ ":": 29901,
+ "I": 29902,
+ "S": 29903,
+ "о": 29904,
+ "\\": 29905,
+ "2": 29906,
+ "C": 29907,
+ "\"": 29908,
+ "A": 29909,
+ "а": 29910,
+ "T": 29911,
+ "{": 29912,
+ "}": 29913,
+ "/": 29914,
+ "'": 29915,
+ "x": 29916,
+ "и": 29917,
+ "_": 29918,
+ "е": 29919,
+ "z": 29920,
+ "н": 29921,
+ "=": 29922,
+ "E": 29923,
+ "M": 29924,
+ "P": 29925,
+ "j": 29926,
+ "р": 29927,
+ "D": 29928,
+ "9": 29929,
+ "*": 29930,
+ "L": 29931,
+ "т": 29932,
+ "B": 29933,
+ "R": 29934,
+ "с": 29935,
+ ";": 29936,
+ "#": 29937,
+ "$": 29938,
+ "q": 29939,
+ "N": 29940,
+ "3": 29941,
+ "в": 29942,
+ "F": 29943,
+ "л": 29944,
+ "5": 29945,
+ "4": 29946,
+ "8": 29947,
+ "é": 29948,
+ "O": 29949,
+ "H": 29950,
+ "к": 29951,
+ "`": 29952,
+ "6": 29953,
+ "G": 29954,
+ "7": 29955,
+ "W": 29956,
+ "д": 29957,
+ ">": 29958,
+ "м": 29959,
+ "у": 29960,
+ "[": 29961,
+ "]": 29962,
+ "V": 29963,
+ "п": 29964,
+ "U": 29965,
+ "<": 29966,
+ "J": 29967,
+ "K": 29968,
+ "г": 29969,
+ "я": 29970,
+ "і": 29971,
+ "з": 29972,
+ "?": 29973,
+ "+": 29974,
+ "б": 29975,
+ "á": 29976,
+ "й": 29977,
+ "ь": 29978,
+ "Y": 29979,
+ "ó": 29980,
+ "ч": 29981,
+ "ы": 29982,
+ "í": 29983,
+ "Q": 29984,
+ "^": 29985,
+ "ä": 29986,
+ "&": 29987,
+ "х": 29988,
+ "|": 29989,
+ "X": 29990,
+ "!": 29991,
+ "@": 29992,
+ "ü": 29993,
+ "–": 29994,
+ "%": 29995,
+ "ц": 29996,
+ "ö": 29997,
+ "ж": 29998,
+ "Z": 29999,
+ "è": 30000,
+ "à": 30001,
+ "ш": 30002,
+ "—": 30003,
+ "\r": 30004,
+ "ю": 30005,
+ "ł": 30006,
+ "»": 30007,
+ "С": 30008,
+ "«": 30009,
+ "’": 30010,
+ "ф": 30011,
+ "В": 30012,
+ "П": 30013,
+ "К": 30014,
+ "“": 30015,
+ "ј": 30016,
+ "М": 30017,
+ "А": 30018,
+ "ç": 30019,
+ "å": 30020,
+ "щ": 30021,
+ "~": 30022,
+ "ę": 30023,
+ "”": 30024,
+ "ą": 30025,
+ "č": 30026,
+ "Р": 30027,
+ "ї": 30028,
+ "Н": 30029,
+ "ú": 30030,
+ "Б": 30031,
+ "Д": 30032,
+ "ã": 30033,
+ "ß": 30034,
+ "ă": 30035,
+ "ě": 30036,
+ "ê": 30037,
+ "О": 30038,
+ "š": 30039,
+ "Г": 30040,
+ "Т": 30041,
+ "ż": 30042,
+ "ё": 30043,
+ "ž": 30044,
+ "ś": 30045,
+ "ñ": 30046,
+ "ř": 30047,
+ "ő": 30048,
+ "„": 30049,
+ "Л": 30050,
+ "э": 30051,
+ "ý": 30052,
+ "У": 30053,
+ "И": 30054,
+ "ъ": 30055,
+ "є": 30056,
+ "â": 30057,
+ "î": 30058,
+ "ò": 30059,
+ "З": 30060,
+ "Ф": 30061,
+ "É": 30062,
+ "ć": 30063,
+ "·": 30064,
+ "ș": 30065,
+ "ń": 30066,
+ "ț": 30067,
+ "Х": 30068,
+ "ô": 30069,
+ "Е": 30070,
+ "ù": 30071,
+ "ů": 30072,
+ "°": 30073,
+ "Ш": 30074,
+ "љ": 30075,
+ "Ч": 30076,
+ "ø": 30077,
+ "æ": 30078,
+ "њ": 30079,
+ " ": 30080,
+ " ": 30081,
+ "Э": 30082,
+ "ë": 30083,
+ "õ": 30084,
+ "ï": 30085,
+ "‘": 30086,
+ "†": 30087,
+ "²": 30088,
+ "ű": 30089,
+ "І": 30090,
+ "─": 30091,
+ "Ц": 30092,
+ "ћ": 30093,
+ "Ö": 30094,
+ "û": 30095,
+ "Я": 30096,
+ "ì": 30097,
+ "…": 30098,
+ "ō": 30099,
+ "Ж": 30100,
+ "Ю": 30101,
+ "Á": 30102,
+ "́": 30103,
+ "Ü": 30104,
+ "º": 30105,
+ "œ": 30106,
+ "ā": 30107,
+ "Č": 30108,
+ "ź": 30109,
+ "α": 30110,
+ "│": 30111,
+ "ا": 30112,
+ "À": 30113,
+ "═": 30114,
+ "Š": 30115,
+ "ђ": 30116,
+ "№": 30117,
+ " ": 30118,
+ "•": 30119,
+ "−": 30120,
+ "→": 30121,
+ "×": 30122,
+ "ο": 30123,
+ "₂": 30124,
+ "Ä": 30125,
+ "Î": 30126,
+ "Ś": 30127,
+ "đ": 30128,
+ "Å": 30129,
+ "ı": 30130,
+ "": 30131,
+ "ū": 30132,
+ "ν": 30133,
+ "Й": 30134,
+ "ª": 30135,
+ "ι": 30136,
+ "τ": 30137,
+ "ل": 30138,
+ "′": 30139,
+ "�": 30140,
+ "È": 30141,
+ "λ": 30142,
+ "": 30143,
+ "Ž": 30144,
+ "ς": 30145,
+ "ň": 30146,
+ "ρ": 30147,
+ "₁": 30148,
+ "Є": 30149,
+ "ī": 30150,
+ "ε": 30151,
+ "§": 30152,
+ "Ł": 30153,
+ "Ј": 30154,
+ "£": 30155,
+ "ر": 30156,
+ "Ż": 30157,
+ "¿": 30158,
+ "م": 30159,
+ "″": 30160,
+ "Ú": 30161,
+ "ن": 30162,
+ "ي": 30163,
+ "σ": 30164,
+ "´": 30165,
+ "": 30166,
+ "μ": 30167,
+ "³": 30168,
+ "ş": 30169,
+ "π": 30170,
+ "و": 30171,
+ "د": 30172,
+ "κ": 30173,
+ "₃": 30174,
+ "Í": 30175,
+ "ˈ": 30176,
+ "ب": 30177,
+ "Ó": 30178,
+ "Ã": 30179,
+ "¡": 30180,
+ "€": 30181,
+ "ť": 30182,
+ "η": 30183,
+ "ə": 30184,
+ "ー": 30185,
+ "Щ": 30186,
+ "β": 30187,
+ "├": 30188,
+ "ð": 30189,
+ "ґ": 30190,
+ "": 30191,
+ "υ": 30192,
+ "¹": 30193,
+ "₄": 30194,
+ "ت": 30195,
+ "י": 30196,
+ "γ": 30197,
+ "س": 30198,
+ "の": 30199,
+ "ğ": 30200,
+ "δ": 30201,
+ "ی": 30202,
+ "ン": 30203,
+ "ه": 30204,
+ "ו": 30205,
+ "ω": 30206,
+ "ί": 30207,
+ "█": 30208,
+ "θ": 30209,
+ "的": 30210,
+ "©": 30211,
+ "Â": 30212,
+ "↑": 30213,
+ ",": 30214,
+ "ː": 30215,
+ "ά": 30216,
+ "―": 30217,
+ "ع": 30218,
+ "Ç": 30219,
+ "₀": 30220,
+ "±": 30221,
+ "Ø": 30222,
+ "ď": 30223,
+ "Ř": 30224,
+ "Œ": 30225,
+ "½": 30226,
+ "└": 30227,
+ "ό": 30228,
+ "‚": 30229,
+ "ē": 30230,
+ "₅": 30231,
+ "Æ": 30232,
+ "Ș": 30233,
+ "ɛ": 30234,
+ "ה": 30235,
+ "ר": 30236,
+ "φ": 30237,
+ "₆": 30238,
+ "ė": 30239,
+ "ح": 30240,
+ "ف": 30241,
+ "ة": 30242,
+ "İ": 30243,
+ " ": 30244,
+ "←": 30245,
+ "║": 30246,
+ "ɔ": 30247,
+ "≤": 30248,
+ "ל": 30249,
+ "Đ": 30250,
+ "ա": 30251,
+ "Ō": 30252,
+ "א": 30253,
+ "്": 30254,
+ "ス": 30255,
+ "ش": 30256,
+ "大": 30257,
+ "ル": 30258,
+ "џ": 30259,
+ "イ": 30260,
+ "⟩": 30261,
+ " ": 30262,
+ "µ": 30263,
+ "∈": 30264,
+ "ق": 30265,
+ "⟨": 30266,
+ "。": 30267,
+ "Ґ": 30268,
+ "ा": 30269,
+ "ج": 30270,
+ "ʿ": 30271,
+ "ა": 30272,
+ "έ": 30273,
+ "χ": 30274,
+ "中": 30275,
+ "ב": 30276,
+ "ი": 30277,
+ "₈": 30278,
+ "ト": 30279,
+ "ή": 30280,
+ "ラ": 30281,
+ "Џ": 30282,
+ "ك": 30283,
+ "₇": 30284,
+ "מ": 30285,
+ "ת": 30286,
+ "一": 30287,
+ "Π": 30288,
+ "า": 30289,
+ "・": 30290,
+ "Σ": 30291,
+ "Α": 30292,
+ "Δ": 30293,
+ "ש": 30294,
+ "ز": 30295,
+ "्": 30296,
+ "ร": 30297,
+ "い": 30298,
+ "ʻ": 30299,
+ "Њ": 30300,
+ "₉": 30301,
+ "ʼ": 30302,
+ "リ": 30303,
+ "‐": 30304,
+ "ク": 30305,
+ "∞": 30306,
+ "⁄": 30307,
+ "ύ": 30308,
+ "Ş": 30309,
+ "ア": 30310,
+ "Ε": 30311,
+ "ɪ": 30312,
+ "人": 30313,
+ "Κ": 30314,
+ "∀": 30315,
+ "र": 30316,
+ "ッ": 30317,
+ "►": 30318,
+ "子": 30319,
+ "¬": 30320,
+ "خ": 30321,
+ "◄": 30322,
+ "َ": 30323,
+ "ע": 30324,
+ "日": 30325,
+ "し": 30326,
+ "ḥ": 30327,
+ "נ": 30328,
+ "山": 30329,
+ "、": 30330,
+ "Ї": 30331,
+ "る": 30332,
+ "文": 30333,
+ "Ñ": 30334,
+ "ド": 30335,
+ "ד": 30336,
+ "ն": 30337,
+ "Ђ": 30338,
+ "Γ": 30339,
+ "þ": 30340,
+ "": 30341,
+ "®": 30342,
+ "ک": 30343,
+ "": 30344,
+ "⚭": 30345,
+ "本": 30346,
+ "ℕ": 30347,
+ "น": 30348,
+ "ѝ": 30349,
+ "̶": 30350,
+ "อ": 30351,
+ "ў": 30352,
+ "に": 30353,
+ "数": 30354,
+ "ე": 30355,
+ "国": 30356,
+ "Ω": 30357,
+ " ": 30358,
+ "ǎ": 30359,
+ "ص": 30360,
+ "": 30361,
+ "Μ": 30362,
+ " ": 30363,
+ "と": 30364,
+ "": 30365,
+ "た": 30366,
+ "ط": 30367,
+ "ր": 30368,
+ "タ": 30369,
+ "ÿ": 30370,
+ "な": 30371,
+ "أ": 30372,
+ "シ": 30373,
+ "新": 30374,
+ "﹕": 30375,
+ "ʃ": 30376,
+ "ľ": 30377,
+ "ロ": 30378,
+ "⁴": 30379,
+ "்": 30380,
+ "⇒": 30381,
+ "ţ": 30382,
+ ":": 30383,
+ "Ț": 30384,
+ "ക": 30385,
+ "≥": 30386,
+ "ി": 30387,
+ "マ": 30388,
+ "ん": 30389,
+ "ṣ": 30390,
+ "ジ": 30391,
+ "是": 30392,
+ "이": 30393,
+ "⋅": 30394,
+ "田": 30395,
+ "を": 30396,
+ "道": 30397,
+ "ง": 30398,
+ "¨": 30399,
+ "ـ": 30400,
+ "เ": 30401,
+ "村": 30402,
+ "Ê": 30403,
+ "ם": 30404,
+ "›": 30405,
+ "用": 30406,
+ "ώ": 30407,
+ "天": 30408,
+ ")": 30409,
+ "་": 30410,
+ "镇": 30411,
+ "か": 30412,
+ "不": 30413,
+ "Τ": 30414,
+ "学": 30415,
+ "ư": 30416,
+ "有": 30417,
+ "ո": 30418,
+ "(": 30419,
+ "レ": 30420,
+ "گ": 30421,
+ "": 30422,
+ "フ": 30423,
+ "न": 30424,
+ "ก": 30425,
+ "ɑ": 30426,
+ "す": 30427,
+ "ח": 30428,
+ "上": 30429,
+ "": 30430,
+ "∧": 30431,
+ "ṭ": 30432,
+ "ק": 30433,
+ "ξ": 30434,
+ "¤": 30435,
+ "ि": 30436,
+ "会": 30437,
+ "ന": 30438,
+ "カ": 30439,
+ "ų": 30440,
+ "ま": 30441,
+ "ു": 30442,
+ "͡": 30443,
+ "क": 30444,
+ "া": 30445,
+ "小": 30446,
+ "ן": 30447,
+ "行": 30448,
+ "は": 30449,
+ "ʁ": 30450,
+ "Ő": 30451,
+ "Þ": 30452,
+ "り": 30453,
+ "キ": 30454,
+ "Λ": 30455,
+ "რ": 30456,
+ "三": 30457,
+ "が": 30458,
+ "コ": 30459,
+ "ζ": 30460,
+ "市": 30461,
+ "王": 30462,
+ "ℝ": 30463,
+ "Ź": 30464,
+ "う": 30465,
+ "て": 30466,
+ "区": 30467,
+ "ാ": 30468,
+ "": 30469,
+ "年": 30470,
+ "פ": 30471,
+ "ի": 30472,
+ "ſ": 30473,
+ "‹": 30474,
+ "त": 30475,
+ "ŏ": 30476,
+ "‑": 30477,
+ "̃": 30478,
+ "Ć": 30479,
+ "ى": 30480,
+ "「": 30481,
+ "」": 30482,
+ "ს": 30483,
+ "Ā": 30484,
+ "म": 30485,
+ "生": 30486,
+ "≠": 30487,
+ "Љ": 30488,
+ "स": 30489,
+ "↔": 30490,
+ "Ο": 30491,
+ "ว": 30492,
+ "ლ": 30493,
+ "成": 30494,
+ "定": 30495,
+ "ล": 30496,
+ "¶": 30497,
+ "כ": 30498,
+ "で": 30499,
+ "ּ": 30500,
+ "ม": 30501,
+ "个": 30502,
+ "和": 30503,
+ "ס": 30504,
+ "在": 30505,
+ "Β": 30506,
+ "ิ": 30507,
+ "Ι": 30508,
+ "⁵": 30509,
+ "ั": 30510,
+ "ɡ": 30511,
+ "━": 30512,
+ "ら": 30513,
+ "オ": 30514,
+ "¼": 30515,
+ "ե": 30516,
+ "バ": 30517,
+ "ָ": 30518,
+ "ŋ": 30519,
+ "ŭ": 30520,
+ "グ": 30521,
+ "⁶": 30522,
+ "Ь": 30523,
+ "⁰": 30524,
+ "方": 30525,
+ "บ": 30526,
+ "": 30527,
+ "高": 30528,
+ "ệ": 30529,
+ "Ν": 30530,
+ "ѣ": 30531,
+ "ィ": 30532,
+ "地": 30533,
+ "月": 30534,
+ "Ô": 30535,
+ "™": 30536,
+ "ウ": 30537,
+ "き": 30538,
+ "公": 30539,
+ "ạ": 30540,
+ "ო": 30541,
+ "ɾ": 30542,
+ "่": 30543,
+ "出": 30544,
+ "法": 30545,
+ "Θ": 30546,
+ "ส": 30547,
+ "名": 30548,
+ "ย": 30549,
+ "ത": 30550,
+ "Φ": 30551,
+ "↓": 30552,
+ "れ": 30553,
+ "ג": 30554,
+ "Ё": 30555,
+ "ơ": 30556,
+ "下": 30557,
+ "ә": 30558,
+ "ψ": 30559,
+ "┼": 30560,
+ "ャ": 30561,
+ "√": 30562,
+ "¥": 30563,
+ "社": 30564,
+ "ṇ": 30565,
+ "さ": 30566,
+ "ِ": 30567,
+ "く": 30568,
+ "े": 30569,
+ "Ы": 30570,
+ "ἐ": 30571,
+ "テ": 30572,
+ "为": 30573,
+ "乡": 30574,
+ "川": 30575,
+ "ナ": 30576,
+ "之": 30577,
+ "字": 30578,
+ "ム": 30579,
+ "ी": 30580,
+ "海": 30581,
+ "ブ": 30582,
+ "≈": 30583,
+ "!": 30584,
+ "پ": 30585,
+ "¯": 30586,
+ "ἀ": 30587,
+ "": 30588,
+ "こ": 30589,
+ "ְ": 30590,
+ "東": 30591,
+ "明": 30592,
+ "ὶ": 30593,
+ "时": 30594,
+ "ท": 30595,
+ "ɨ": 30596,
+ "デ": 30597,
+ "️": 30598,
+ "ʊ": 30599,
+ "エ": 30600,
+ "南": 30601,
+ "西": 30602,
+ "ल": 30603,
+ "メ": 30604,
+ "プ": 30605,
+ "平": 30606,
+ "式": 30607,
+ "ῖ": 30608,
+ "қ": 30609,
+ "व": 30610,
+ "غ": 30611,
+ "Ò": 30612,
+ "家": 30613,
+ "ʒ": 30614,
+ "サ": 30615,
+ "≡": 30616,
+ "ダ": 30617,
+ "ต": 30618,
+ "∃": 30619,
+ "₹": 30620,
+ "प": 30621,
+ "第": 30622,
+ "ര": 30623,
+ "ض": 30624,
+ "▄": 30625,
+ "城": 30626,
+ "ミ": 30627,
+ "ɐ": 30628,
+ "¦": 30629,
+ "美": 30630,
+ "件": 30631,
+ "ნ": 30632,
+ "Ð": 30633,
+ "ַ": 30634,
+ "ニ": 30635,
+ "部": 30636,
+ "ņ": 30637,
+ "ǐ": 30638,
+ "ט": 30639,
+ "य": 30640,
+ "あ": 30641,
+ "¾": 30642,
+ "ả": 30643,
+ "ち": 30644,
+ "ュ": 30645,
+ "÷": 30646,
+ "女": 30647,
+ "神": 30648,
+ "♦": 30649,
+ "¢": 30650,
+ "以": 30651,
+ "้": 30652,
+ "র": 30653,
+ "太": 30654,
+ "্": 30655,
+ "チ": 30656,
+ "յ": 30657,
+ "前": 30658,
+ "金": 30659,
+ "ւ": 30660,
+ "野": 30661,
+ "北": 30662,
+ "ห": 30663,
+ "‰": 30664,
+ "っ": 30665,
+ "加": 30666,
+ "原": 30667,
+ "ʲ": 30668,
+ "置": 30669,
+ "安": 30670,
+ "ガ": 30671,
+ "我": 30672,
+ "Ḥ": 30673,
+ "യ": 30674,
+ "京": 30675,
+ "▀": 30676,
+ "მ": 30677,
+ "ვ": 30678,
+ "ʾ": 30679,
+ "∨": 30680,
+ "ִ": 30681,
+ "可": 30682,
+ "取": 30683,
+ "县": 30684,
+ "二": 30685,
+ "▒": 30686,
+ "理": 30687,
+ "自": 30688,
+ "信": 30689,
+ "代": 30690,
+ "ี": 30691,
+ "צ": 30692,
+ "်": 30693,
+ "द": 30694,
+ "⁸": 30695,
+ "̯": 30696,
+ "お": 30697,
+ "要": 30698,
+ "ῦ": 30699,
+ "க": 30700,
+ "ễ": 30701,
+ "ु": 30702,
+ "ƒ": 30703,
+ "ʰ": 30704,
+ "化": 30705,
+ "✓": 30706,
+ "പ": 30707,
+ "의": 30708,
+ "다": 30709,
+ "木": 30710,
+ "ُ": 30711,
+ "̀": 30712,
+ "ˌ": 30713,
+ "ह": 30714,
+ "パ": 30715,
+ "水": 30716,
+ "ế": 30717,
+ "ด": 30718,
+ "ズ": 30719,
+ "⁹": 30720,
+ "島": 30721,
+ "": 30722,
+ "も": 30723,
+ "正": 30724,
+ "■": 30725,
+ "آ": 30726,
+ "พ": 30727,
+ "内": 30728,
+ "Ì": 30729,
+ "ǔ": 30730,
+ "┬": 30731,
+ "作": 30732,
+ "合": 30733,
+ "ὸ": 30734,
+ "み": 30735,
+ "▼": 30736,
+ "ῶ": 30737,
+ "⊙": 30738,
+ "~": 30739,
+ "ị": 30740,
+ "ْ": 30741,
+ "回": 30742,
+ "了": 30743,
+ "所": 30744,
+ "事": 30745,
+ "表": 30746,
+ "ำ": 30747,
+ "分": 30748,
+ "⁷": 30749,
+ "ү": 30750,
+ "": 30751,
+ "入": 30752,
+ "全": 30753,
+ "إ": 30754,
+ "里": 30755,
+ "Χ": 30756,
+ "ं": 30757,
+ "ハ": 30758,
+ "ค": 30759,
+ "⁻": 30760,
+ "モ": 30761,
+ "郎": 30762,
+ "据": 30763,
+ "●": 30764,
+ "州": 30765,
+ "∩": 30766,
+ "者": 30767,
+ "通": 30768,
+ "都": 30769,
+ "ℤ": 30770,
+ "♭": 30771,
+ "╌": 30772,
+ "つ": 30773,
+ "ḍ": 30774,
+ "江": 30775,
+ "ז": 30776,
+ "Ý": 30777,
+ "ө": 30778,
+ "์": 30779,
+ "到": 30780,
+ "ி": 30781,
+ "ʂ": 30782,
+ "对": 30783,
+ "스": 30784,
+ "使": 30785,
+ "ি": 30786,
+ "よ": 30787,
+ "Ἀ": 30788,
+ "Ï": 30789,
+ "∘": 30790,
+ "사": 30791,
+ "ন": 30792,
+ "世": 30793,
+ "ɕ": 30794,
+ "կ": 30795,
+ "უ": 30796,
+ "ട": 30797,
+ "ბ": 30798,
+ "ो": 30799,
+ "വ": 30800,
+ "果": 30801,
+ "十": 30802,
+ "ุ": 30803,
+ "藤": 30804,
+ "来": 30805,
+ "面": 30806,
+ "け": 30807,
+ "ĕ": 30808,
+ "ビ": 30809,
+ "这": 30810,
+ "지": 30811,
+ "ം": 30812,
+ "街": 30813,
+ "石": 30814,
+ "能": 30815,
+ "空": 30816,
+ "տ": 30817,
+ "ئ": 30818,
+ "武": 30819,
+ "ʹ": 30820,
+ "ϕ": 30821,
+ "后": 30822,
+ "ะ": 30823,
+ "元": 30824,
+ "ʔ": 30825,
+ "리": 30826,
+ "기": 30827,
+ "河": 30828,
+ "町": 30829,
+ "花": 30830,
+ "ὐ": 30831,
+ "类": 30832,
+ "░": 30833,
+ "物": 30834,
+ "Η": 30835,
+ "¸": 30836,
+ "ு": 30837,
+ "თ": 30838,
+ "ث": 30839,
+ "െ": 30840,
+ "╠": 30841,
+ "⊆": 30842,
+ "》": 30843,
+ "ツ": 30844,
+ "版": 30845,
+ "动": 30846,
+ "如": 30847,
+ "真": 30848,
+ "ɲ": 30849,
+ "号": 30850,
+ "ذ": 30851,
+ "정": 30852,
+ "林": 30853,
+ "書": 30854,
+ "民": 30855,
+ "口": 30856,
+ "ّ": 30857,
+ "示": 30858,
+ "മ": 30859,
+ "아": 30860,
+ "图": 30861,
+ "∪": 30862,
+ "戦": 30863,
+ "李": 30864,
+ "ല": 30865,
+ "《": 30866,
+ "光": 30867,
+ "白": 30868,
+ "心": 30869,
+ "த": 30870,
+ "ज": 30871,
+ "设": 30872,
+ "ί": 30873,
+ "路": 30874,
+ "ग": 30875,
+ "∥": 30876,
+ "한": 30877,
+ "最": 30878,
+ "Ћ": 30879,
+ "手": 30880,
+ "ս": 30881,
+ "?": 30882,
+ "型": 30883,
+ "ầ": 30884,
+ "セ": 30885,
+ "建": 30886,
+ "ェ": 30887,
+ "主": 30888,
+ "시": 30889,
+ "대": 30890,
+ "ῆ": 30891,
+ "‡": 30892,
+ "集": 30893,
+ "დ": 30894,
+ "目": 30895,
+ "Ρ": 30896,
+ "ァ": 30897,
+ "度": 30898,
+ "長": 30899,
+ "星": 30900,
+ "ノ": 30901,
+ "ộ": 30902,
+ "가": 30903,
+ "五": 30904,
+ "چ": 30905,
+ "로": 30906,
+ "ョ": 30907,
+ "重": 30908,
+ "于": 30909,
+ "发": 30910,
+ "史": 30911,
+ "ظ": 30912,
+ "ช": 30913,
+ "え": 30914,
+ "國": 30915,
+ "ĭ": 30916,
+ "ப": 30917,
+ "인": 30918,
+ "你": 30919,
+ "駅": 30920,
+ "‒": 30921,
+ "♥": 30922,
+ "多": 30923,
+ "ħ": 30924,
+ "Қ": 30925,
+ "ồ": 30926,
+ "士": 30927,
+ "四": 30928,
+ "┴": 30929,
+ "ம": 30930,
+ "司": 30931,
+ "ে": 30932,
+ "ὰ": 30933,
+ "∂": 30934,
+ "╬": 30935,
+ "次": 30936,
+ "Ľ": 30937,
+ "⟶": 30938,
+ "立": 30939,
+ "点": 30940,
+ "音": 30941,
+ "⠀": 30942,
+ "器": 30943,
+ "하": 30944,
+ "井": 30945,
+ "存": 30946,
+ "ֹ": 30947,
+ "当": 30948,
+ "Ë": 30949,
+ "★": 30950,
+ "寺": 30951,
+ "性": 30952,
+ "也": 30953,
+ "め": 30954,
+ "だ": 30955,
+ "位": 30956,
+ "ങ": 30957,
+ "ہ": 30958,
+ "值": 30959,
+ "古": 30960,
+ "გ": 30961,
+ "ব": 30962,
+ "院": 30963,
+ "േ": 30964,
+ "▶": 30965,
+ "ர": 30966,
+ "界": 30967,
+ "語": 30968,
+ "സ": 30969,
+ "수": 30970,
+ "ǒ": 30971,
+ "愛": 30972,
+ "✔": 30973,
+ "時": 30974,
+ "ọ": 30975,
+ "റ": 30976,
+ "մ": 30977,
+ "ケ": 30978,
+ "东": 30979,
+ "同": 30980,
+ "주": 30981,
+ "保": 30982,
+ "Õ": 30983,
+ "ố": 30984,
+ "ἰ": 30985,
+ "青": 30986,
+ "ゴ": 30987,
+ "体": 30988,
+ "清": 30989,
+ "相": 30990,
+ "จ": 30991,
+ "ء": 30992,
+ "情": 30993,
+ "𝕜": 30994,
+ "ক": 30995,
+ "ḫ": 30996,
+ "ờ": 30997,
+ "将": 30998,
+ "族": 30999,
+ "동": 31000,
+ "Υ": 31001,
+ "┌": 31002,
+ "ボ": 31003,
+ "宮": 31004,
+ "』": 31005,
+ "ম": 31006,
+ "『": 31007,
+ "ļ": 31008,
+ "श": 31009,
+ "ป": 31010,
+ "Ա": 31011,
+ "ब": 31012,
+ "자": 31013,
+ "政": 31014,
+ "ா": 31015,
+ "间": 31016,
+ "fi": 31017,
+ "松": 31018,
+ "ṃ": 31019,
+ "始": 31020,
+ "息": 31021,
+ "少": 31022,
+ "教": 31023,
+ "获": 31024,
+ "列": 31025,
+ "开": 31026,
+ "ტ": 31027,
+ "ワ": 31028,
+ "კ": 31029,
+ "科": 31030,
+ "春": 31031,
+ "治": 31032,
+ "吉": 31033,
+ "ས": 31034,
+ "ศ": 31035,
+ "ɒ": 31036,
+ "台": 31037,
+ "ネ": 31038,
+ "း": 31039,
+ "ĩ": 31040,
+ "工": 31041,
+ "ά": 31042,
+ "知": 31043,
+ "八": 31044,
+ "場": 31045,
+ "画": 31046,
+ "百": 31047,
+ "☆": 31048,
+ "記": 31049,
+ "得": 31050,
+ "ソ": 31051,
+ "氏": 31052,
+ "ာ": 31053,
+ "에": 31054,
+ "ল": 31055,
+ "ṛ": 31056,
+ "关": 31057,
+ "ġ": 31058,
+ "έ": 31059,
+ "∑": 31060,
+ "ベ": 31061,
+ "标": 31062,
+ "니": 31063,
+ "ὴ": 31064,
+ "ֵ": 31065,
+ "外": 31066,
+ "♠": 31067,
+ "わ": 31068,
+ "間": 31069,
+ "ภ": 31070,
+ "校": 31071,
+ "制": 31072,
+ "แ": 31073,
+ "力": 31074,
+ "門": 31075,
+ "好": 31076,
+ "ғ": 31077,
+ "Ù": 31078,
+ "ℓ": 31079,
+ "ֶ": 31080,
+ "는": 31081,
+ "┐": 31082,
+ "∗": 31083,
+ "指": 31084,
+ "色": 31085,
+ "返": 31086,
+ "馬": 31087,
+ "请": 31088,
+ "≫": 31089,
+ "風": 31090,
+ "ό": 31091,
+ "接": 31092,
+ "서": 31093,
+ "↳": 31094,
+ "せ": 31095,
+ "志": 31096,
+ "̲": 31097,
+ "魔": 31098,
+ "ң": 31099,
+ "更": 31100,
+ "程": 31101,
+ "김": 31102,
+ "郡": 31103,
+ "ོ": 31104,
+ "ũ": 31105,
+ "ച": 31106,
+ "利": 31107,
+ "県": 31108,
+ "周": 31109,
+ "そ": 31110,
+ "や": 31111,
+ "谷": 31112,
+ "香": 31113,
+ "♯": 31114,
+ "じ": 31115,
+ "،": 31116,
+ "期": 31117,
+ "∅": 31118,
+ "┘": 31119,
+ "初": 31120,
+ "福": 31121,
+ "片": 31122,
+ "ザ": 31123,
+ "動": 31124,
+ "参": 31125,
+ "성": 31126,
+ "Ə": 31127,
+ "╦": 31128,
+ "어": 31129,
+ "ხ": 31130,
+ "義": 31131,
+ "च": 31132,
+ "象": 31133,
+ "功": 31134,
+ "♂": 31135,
+ "도": 31136,
+ "고": 31137,
+ "过": 31138,
+ "վ": 31139,
+ "皇": 31140,
+ "特": 31141,
+ "ậ": 31142,
+ "长": 31143,
+ "英": 31144,
+ "ấ": 31145,
+ "ണ": 31146,
+ "Ъ": 31147,
+ "স": 31148,
+ "其": 31149,
+ "ত": 31150,
+ "流": 31151,
+ "除": 31152,
+ "일": 31153,
+ "ু": 31154,
+ "្": 31155,
+ "永": 31156,
+ "直": 31157,
+ "상": 31158,
+ "千": 31159,
+ "ắ": 31160,
+ "館": 31161,
+ "Ť": 31162,
+ "朝": 31163,
+ "ட": 31164,
+ "ɣ": 31165,
+ "单": 31166,
+ "ʀ": 31167,
+ "格": 31168,
+ "德": 31169,
+ "전": 31170,
+ "☺": 31171,
+ "ピ": 31172,
+ "歌": 31173,
+ "进": 31174,
+ "限": 31175,
+ "夫": 31176,
+ "트": 31177,
+ "⊢": 31178,
+ "園": 31179,
+ "量": 31180,
+ "土": 31181,
+ "放": 31182,
+ "码": 31183,
+ "等": 31184,
+ "系": 31185,
+ "∼": 31186,
+ "華": 31187,
+ "↵": 31188,
+ "소": 31189,
+ "常": 31190,
+ "否": 31191,
+ "見": 31192,
+ "源": 31193,
+ "ׁ": 31194,
+ "实": 31195,
+ "博": 31196,
+ "라": 31197,
+ "원": 31198,
+ "보": 31199,
+ "⊕": 31200,
+ "解": 31201,
+ "〜": 31202,
+ "男": 31203,
+ "দ": 31204,
+ "ポ": 31205,
+ "ろ": 31206,
+ "나": 31207,
+ "ག": 31208,
+ "無": 31209,
+ "Û": 31210,
+ "̥": 31211,
+ "ұ": 31212,
+ "查": 31213,
+ "̣": 31214,
+ "╗": 31215,
+ "╩": 31216,
+ "条": 31217,
+ "য": 31218,
+ "ὁ": 31219,
+ "後": 31220,
+ "他": 31221,
+ "网": 31222,
+ "ல": 31223,
+ "≃": 31224,
+ "화": 31225,
+ "ە": 31226,
+ "阿": 31227,
+ "ေ": 31228,
+ "户": 31229,
+ "∫": 31230,
+ "구": 31231,
+ "ར": 31232,
+ "မ": 31233,
+ "▸": 31234,
+ "լ": 31235,
+ "○": 31236,
+ "命": 31237,
+ "就": 31238,
+ "龍": 31239,
+ "君": 31240,
+ "夏": 31241,
+ "": 31242,
+ "言": 31243,
+ "先": 31244,
+ "➜": 31245,
+ "შ": 31246,
+ "ძ": 31247,
+ "ਾ": 31248,
+ "வ": 31249,
+ "ど": 31250,
+ "ヒ": 31251,
+ "ไ": 31252,
+ "ன": 31253,
+ "ば": 31254,
+ "ギ": 31255,
+ "գ": 31256,
+ "ἄ": 31257,
+ "ヤ": 31258,
+ "典": 31259,
+ "府": 31260,
+ "̄": 31261,
+ "신": 31262,
+ "组": 31263,
+ "改": 31264,
+ "ὲ": 31265,
+ "华": 31266,
+ "与": 31267,
+ "调": 31268,
+ "╝": 31269,
+ "ヴ": 31270,
+ "ქ": 31271,
+ "由": 31272,
+ "修": 31273,
+ "學": 31274,
+ "♣": 31275,
+ "消": 31276,
+ "符": 31277,
+ "ʌ": 31278,
+ "부": 31279,
+ "ớ": 31280,
+ "‾": 31281,
+ "▲": 31282,
+ "录": 31283,
+ "ള": 31284,
+ "연": 31285,
+ "을": 31286,
+ "ひ": 31287,
+ "영": 31288,
+ "┤": 31289,
+ "已": 31290,
+ "陽": 31291,
+ "င": 31292,
+ "국": 31293,
+ "容": 31294,
+ "未": 31295,
+ "宗": 31296,
+ "ᴇ": 31297,
+ "び": 31298,
+ "장": 31299,
+ "龙": 31300,
+ "්": 31301,
+ "提": 31302,
+ "ĝ": 31303,
+ "六": 31304,
+ "形": 31305,
+ "제": 31306,
+ "Հ": 31307,
+ "伊": 31308,
+ "ϵ": 31309,
+ "ข": 31310,
+ "Ű": 31311,
+ "ゃ": 31312,
+ "火": 31313,
+ "Ṣ": 31314,
+ "佐": 31315,
+ "⊥": 31316,
+ "̪": 31317,
+ "ứ": 31318,
+ "□": 31319,
+ "结": 31320,
+ "九": 31321,
+ "雄": 31322,
+ "թ": 31323,
+ "ា": 31324,
+ "而": 31325,
+ "བ": 31326,
+ "우": 31327,
+ "张": 31328,
+ "ट": 31329,
+ "ष": 31330,
+ "向": 31331,
+ "ῥ": 31332,
+ "选": 31333,
+ "공": 31334,
+ "ゲ": 31335,
+ "ʐ": 31336,
+ "仁": 31337,
+ "堂": 31338,
+ "ך": 31339,
+ "ု": 31340,
+ "ἔ": 31341,
+ "അ": 31342,
+ "ề": 31343,
+ "ད": 31344,
+ "선": 31345,
+ "오": 31346,
+ "久": 31347,
+ "": 31348,
+ "义": 31349,
+ "अ": 31350,
+ "╔": 31351,
+ "无": 31352,
+ "
": 31353,
+ "은": 31354,
+ "ʷ": 31355,
+ "那": 31356,
+ "線": 31357,
+ "务": 31358,
+ "基": 31359,
+ "属": 31360,
+ "配": 31361,
+ "미": 31362,
+ "軍": 31363,
+ "โ": 31364,
+ "津": 31365,
+ "完": 31366,
+ "研": 31367,
+ "注": 31368,
+ "失": 31369,
+ "应": 31370,
+ "က": 31371,
+ "╚": 31372,
+ "友": 31373,
+ "章": 31374,
+ "Ψ": 31375,
+ "求": 31376,
+ "ण": 31377,
+ "경": 31378,
+ "": 31379,
+ "भ": 31380,
+ "们": 31381,
+ "模": 31382,
+ "需": 31383,
+ "ச": 31384,
+ "電": 31385,
+ "প": 31386,
+ "դ": 31387,
+ "へ": 31388,
+ "此": 31389,
+ "夜": 31390,
+ "或": 31391,
+ "橋": 31392,
+ "根": 31393,
+ "Ī": 31394,
+ "玉": 31395,
+ "ู": 31396,
+ "ṅ": 31397,
+ "交": 31398,
+ "品": 31399,
+ "良": 31400,
+ "ང": 31401,
+ "ォ": 31402,
+ "则": 31403,
+ "開": 31404,
+ "Ζ": 31405,
+ "문": 31406,
+ "被": 31407,
+ "조": 31408,
+ "株": 31409,
+ "记": 31410,
+ "會": 31411,
+ "经": 31412,
+ "ू": 31413,
+ "ょ": 31414,
+ "转": 31415,
+ "崎": 31416,
+ "마": 31417,
+ "⌘": 31418,
+ "比": 31419,
+ "造": 31420,
+ "ܐ": 31421,
+ "ื": 31422,
+ "没": 31423,
+ "现": 31424,
+ "七": 31425,
+ "Ά": 31426,
+ "商": 31427,
+ "ை": 31428,
+ "机": 31429,
+ "阳": 31430,
+ "ĉ": 31431,
+ "角": 31432,
+ "站": 31433,
+ "բ": 31434,
+ "해": 31435,
+ "及": 31436,
+ "ध": 31437,
+ "術": 31438,
+ "认": 31439,
+ "": 31440,
+ "创": 31441,
+ "編": 31442,
+ "ղ": 31443,
+ "ḩ": 31444,
+ "伝": 31445,
+ "岡": 31446,
+ "ड": 31447,
+ "ホ": 31448,
+ "港": 31449,
+ "任": 31450,
+ "登": 31451,
+ "ི": 31452,
+ "็": 31453,
+ "布": 31454,
+ "究": 31455,
+ "帝": 31456,
+ "여": 31457,
+ "산": 31458,
+ "န": 31459,
+ "◦": 31460,
+ "密": 31461,
+ "变": 31462,
+ "序": 31463,
+ "♀": 31464,
+ "∣": 31465,
+ "计": 31466,
+ "曲": 31467,
+ "Ă": 31468,
+ "ύ": 31469,
+ "ʋ": 31470,
+ "传": 31471,
+ "】": 31472,
+ "包": 31473,
+ "意": 31474,
+ "去": 31475,
+ "沙": 31476,
+ "⸮": 31477,
+ "【": 31478,
+ "写": 31479,
+ "超": 31480,
+ "ய": 31481,
+ "今": 31482,
+ "┈": 31483,
+ "森": 31484,
+ "ි": 31485,
+ "⊗": 31486,
+ "비": 31487,
+ "հ": 31488,
+ "Ḩ": 31489,
+ "ǫ": 31490,
+ "黄": 31491,
+ "∙": 31492,
+ "드": 31493,
+ "🌍": 31494,
+ "景": 31495,
+ "湖": 31496,
+ "ք": 31497,
+ "ိ": 31498,
+ "ⁿ": 31499,
+ "̂": 31500,
+ "ペ": 31501,
+ "何": 31502,
+ "宇": 31503,
+ "張": 31504,
+ "语": 31505,
+ "老": 31506,
+ "例": 31507,
+ "Ṭ": 31508,
+ "鉄": 31509,
+ "克": 31510,
+ "☉": 31511,
+ "": 31512,
+ "ɹ": 31513,
+ "ἱ": 31514,
+ "ⴰ": 31515,
+ "然": 31516,
+ "를": 31517,
+ "ǧ": 31518,
+ "報": 31519,
+ "服": 31520,
+ "Ď": 31521,
+ "想": 31522,
+ "‖": 31523,
+ "ユ": 31524,
+ "実": 31525,
+ "载": 31526,
+ "요": 31527,
+ "ℚ": 31528,
+ "波": 31529,
+ "马": 31530,
+ "状": 31531,
+ "线": 31532,
+ "유": 31533,
+ "洋": 31534,
+ "万": 31535,
+ "진": 31536,
+ "জ": 31537,
+ "添": 31538,
+ "球": 31539,
+ "機": 31540,
+ "支": 31541,
+ "显": 31542,
+ "拉": 31543,
+ "ὑ": 31544,
+ "送": 31545,
+ "隊": 31546,
+ "ธ": 31547,
+ "处": 31548,
+ "師": 31549,
+ "⊂": 31550,
+ "像": 31551,
+ "়": 31552,
+ "黒": 31553,
+ "ց": 31554,
+ "": 31555,
+ "ủ": 31556,
+ "只": 31557,
+ "起": 31558,
+ "段": 31559,
+ "တ": 31560,
+ "區": 31561,
+ "選": 31562,
+ "천": 31563,
+ "業": 31564,
+ "算": 31565,
+ "广": 31566,
+ "រ": 31567,
+ "视": 31568,
+ "秋": 31569,
+ "因": 31570,
+ "년": 31571,
+ "ے": 31572,
+ "输": 31573,
+ "̱": 31574,
+ "Մ": 31575,
+ "∆": 31576,
+ "康": 31577,
+ "세": 31578,
+ "思": 31579,
+ "死": 31580,
+ "聖": 31581,
+ "민": 31582,
+ "-": 31583,
+ "头": 31584,
+ "ർ": 31585,
+ "∉": 31586,
+ "車": 31587,
+ "┃": 31588,
+ "▇": 31589,
+ "按": 31590,
+ "⍵": 31591,
+ "夢": 31592,
+ "汉": 31593,
+ "从": 31594,
+ "ী": 31595,
+ "题": 31596,
+ "ˆ": 31597,
+ "ἡ": 31598,
+ "展": 31599,
+ "省": 31600,
+ "ུ": 31601,
+ "葉": 31602,
+ "호": 31603,
+ "ਰ": 31604,
+ "素": 31605,
+ "関": 31606,
+ "그": 31607,
+ ";": 31608,
+ "න": 31609,
+ "页": 31610,
+ "共": 31611,
+ "宿": 31612,
+ "态": 31613,
+ "ན": 31614,
+ "技": 31615,
+ "乐": 31616,
+ "控": 31617,
+ "移": 31618,
+ "影": 31619,
+ "ụ": 31620,
+ "ゆ": 31621,
+ "ご": 31622,
+ "್": 31623,
+ "管": 31624,
+ "ൾ": 31625,
+ "╣": 31626,
+ "戸": 31627,
+ "⇔": 31628,
+ "函": 31629,
+ "ẓ": 31630,
+ "尾": 31631,
+ "场": 31632,
+ "介": 31633,
+ "": 31634,
+ "育": 31635,
+ "ර": 31636,
+ "泉": 31637,
+ "ൽ": 31638,
+ "说": 31639,
+ "换": 31640,
+ "必": 31641,
+ "紀": 31642,
+ "མ": 31643,
+ "ེ": 31644,
+ "ợ": 31645,
+ "ൻ": 31646,
+ "宝": 31647,
+ "気": 31648,
+ "门": 31649,
+ "令": 31650,
+ "左": 31651,
+ "漢": 31652,
+ "若": 31653,
+ "屋": 31654,
+ "局": 31655,
+ "打": 31656,
+ "発": 31657,
+ "问": 31658,
+ "恋": 31659,
+ "兵": 31660,
+ "別": 31661,
+ "ા": 31662,
+ "Ս": 31663,
+ "߬": 31664,
+ "গ": 31665,
+ "并": 31666,
+ "ख": 31667,
+ "ή": 31668,
+ "节": 31669,
+ "ʑ": 31670,
+ "ץ": 31671,
+ "Ḫ": 31672,
+ "ℂ": 31673,
+ "引": 31674,
+ "统": 31675,
+ "智": 31676,
+ "̩": 31677,
+ "ै": 31678,
+ "电": 31679,
+ "현": 31680,
+ "✅": 31681,
+ "赤": 31682,
+ "断": 31683,
+ "ね": 31684,
+ "称": 31685,
+ "শ": 31686,
+ "身": 31687,
+ "首": 31688,
+ "付": 31689,
+ "⅓": 31690,
+ "ਸ": 31691,
+ "連": 31692,
+ "ზ": 31693,
+ "官": 31694,
+ "持": 31695,
+ "奈": 31696,
+ "御": 31697,
+ "親": 31698,
+ "군": 31699,
+ "库": 31700,
+ "秀": 31701,
+ "址": 31702,
+ "守": 31703,
+ "活": 31704,
+ "ལ": 31705,
+ "ふ": 31706,
+ "藏": 31707,
+ "ស": 31708,
+ "竹": 31709,
+ "草": 31710,
+ "結": 31711,
+ "ා": 31712,
+ "昌": 31713,
+ "樹": 31714,
+ "ள": 31715,
+ "무": 31716,
+ "হ": 31717,
+ "ゼ": 31718,
+ "̈": 31719,
+ "շ": 31720,
+ "勝": 31721,
+ "足": 31722,
+ "ရ": 31723,
+ "위": 31724,
+ "į": 31725,
+ "Ἰ": 31726,
+ "航": 31727,
+ "陳": 31728,
+ "业": 31729,
+ "富": 31730,
+ "雪": 31731,
+ "आ": 31732,
+ "再": 31733,
+ "안": 31734,
+ "默": 31735,
+ "박": 31736,
+ "용": 31737,
+ "✿": 31738,
+ "楽": 31739,
+ "沢": 31740,
+ "羅": 31741,
+ "Ė": 31742,
+ "ʎ": 31743,
+ "忠": 31744,
+ "错": 31745,
+ "단": 31746,
+ "면": 31747,
+ "ķ": 31748,
+ "桥": 31749,
+ "雲": 31750,
+ "该": 31751,
+ "ṯ": 31752,
+ "岩": 31753,
+ "남": 31754,
+ "ỹ": 31755,
+ "专": 31756,
+ "切": 31757,
+ "店": 31758,
+ "朱": 31759,
+ "ף": 31760,
+ "ず": 31761,
+ "幸": 31762,
+ "母": 31763,
+ "ɫ": 31764,
+ "々": 31765,
+ "∷": 31766,
+ "串": 31767,
+ "击": 31768,
+ "Ἐ": 31769,
+ "設": 31770,
+ "⊤": 31771,
+ "ₗ": 31772,
+ "經": 31773,
+ "강": 31774,
+ "ပ": 31775,
+ "।": 31776,
+ "ѐ": 31777,
+ "ᾶ": 31778,
+ "➖": 31779,
+ "座": 31780,
+ "씨": 31781,
+ "ぶ": 31782,
+ "Ţ": 31783,
+ "云": 31784,
+ "告": 31785,
+ "変": 31786,
+ "试": 31787,
+ "隆": 31788,
+ "개": 31789,
+ "պ": 31790,
+ "判": 31791,
+ "劉": 31792,
+ "˜": 31793,
+ "ˠ": 31794,
+ "编": 31795,
+ "ณ": 31796,
+ "ữ": 31797,
+ "达": 31798,
+ "Ě": 31799,
+ "ܝ": 31800,
+ "ြ": 31801,
+ "ḷ": 31802,
+ "右": 31803,
+ "들": 31804,
+ "ŝ": 31805,
+ "ӏ": 31806,
+ "్": 31807,
+ "എ": 31808,
+ "ற": 31809,
+ "复": 31810,
+ "看": 31811,
+ "話": 31812,
+ "坂": 31813,
+ "尔": 31814,
+ "衛": 31815,
+ "զ": 31816,
+ "차": 31817,
+ "丸": 31818,
+ "样": 31819,
+ "鬼": 31820,
+ "़": 31821,
+ "학": 31822,
+ "喜": 31823,
+ "斯": 31824,
+ "銀": 31825,
+ "만": 31826,
+ "Ξ": 31827,
+ "ც": 31828,
+ "群": 31829,
+ "近": 31830,
+ "塔": 31831,
+ "ϊ": 31832,
+ "ந": 31833,
+ "む": 31834,
+ "确": 31835,
+ "索": 31836,
+ "∇": 31837,
+ "非": 31838,
+ "望": 31839,
+ "❯": 31840,
+ "希": 31841,
+ "ỳ": 31842,
+ "甲": 31843,
+ "越": 31844,
+ "鳥": 31845,
+ "麻": 31846,
+ "雅": 31847,
+ "拳": 31848,
+ "ក": 31849,
+ "溪": 31850,
+ "测": 31851,
+ "话": 31852,
+ "池": 31853,
+ "菜": 31854,
+ "食": 31855,
+ "터": 31856,
+ "ਿ": 31857,
+ "渡": 31858,
+ "速": 31859,
+ "ھ": 31860,
+ "ರ": 31861,
+ "陈": 31862,
+ "健": 31863,
+ "ো": 31864,
+ "ක": 31865,
+ "ὺ": 31866,
+ "军": 31867,
+ "庄": 31868,
+ "红": 31869,
+ "Ħ": 31870,
+ "論": 31871,
+ "Ÿ": 31872,
+ "Έ": 31873,
+ "ự": 31874,
+ "孝": 31875,
+ "頭": 31876,
+ "飛": 31877,
+ "˚": 31878,
+ "▓": 31879,
+ "ً": 31880,
+ "": 31881,
+ "么": 31882,
+ "達": 31883,
+ "ѫ": 31884,
+ "巴": 31885,
+ "洞": 31886,
+ "貴": 31887,
+ "项": 31888,
+ "ദ": 31889,
+ "ɵ": 31890,
+ "̍": 31891,
+ "ҡ": 31892,
+ "种": 31893,
+ "运": 31894,
+ "식": 31895,
+ "ྱ": 31896,
+ "ḳ": 31897,
+ "彦": 31898,
+ "⥤": 31899,
+ "书": 31900,
+ "构": 31901,
+ "米": 31902,
+ "连": 31903,
+ "操": 31904,
+ "装": 31905,
+ "과": 31906,
+ "ぐ": 31907,
+ "反": 31908,
+ "̌": 31909,
+ "仮": 31910,
+ "员": 31911,
+ "昭": 31912,
+ "ശ": 31913,
+ "兴": 31914,
+ "客": 31915,
+ "删": 31916,
+ "ම": 31917,
+ "ව": 31918,
+ "პ": 31919,
+ "ċ": 31920,
+ "ഷ": 31921,
+ "သ": 31922,
+ "ᵉ": 31923,
+ "居": 31924,
+ "타": 31925,
+ "𝓝": 31926,
+ "थ": 31927,
+ "現": 31928,
+ "ˇ": 31929,
+ "종": 31930,
+ "助": 31931,
+ "唐": 31932,
+ "瀬": 31933,
+ "ន": 31934,
+ "微": 31935,
+ "1": 31936,
+ "Ġ": 31937,
+ "ほ": 31938,
+ "舞": 31939,
+ "내": 31940,
+ "중": 31941,
+ "Ē": 31942,
+ "导": 31943,
+ "效": 31944,
+ "방": 31945,
+ "ḏ": 31946,
+ "深": 31947,
+ "梅": 31948,
+ "料": 31949,
+ "월": 31950,
+ "每": 31951,
+ "洲": 31952,
+ "회": 31953,
+ "茶": 31954,
+ "败": 31955,
+ "ഞ": 31956,
+ "ể": 31957,
+ "ヨ": 31958,
+ "些": 31959,
+ "双": 31960,
+ "嘉": 31961,
+ "모": 31962,
+ "바": 31963,
+ "ษ": 31964,
+ "進": 31965,
+ "음": 31966,
+ "ญ": 31967,
+ "丁": 31968,
+ "故": 31969,
+ "計": 31970,
+ "遠": 31971,
+ "교": 31972,
+ "재": 31973,
+ "候": 31974,
+ "房": 31975,
+ "명": 31976,
+ "两": 31977,
+ "ფ": 31978,
+ "才": 31979,
+ "합": 31980,
+ "止": 31981,
+ "番": 31982,
+ "ɯ": 31983,
+ "奇": 31984,
+ "怪": 31985,
+ "联": 31986,
+ "역": 31987,
+ "泰": 31988,
+ "백": 31989,
+ "ὀ": 31990,
+ "げ": 31991,
+ "べ": 31992,
+ "边": 31993,
+ "还": 31994,
+ "黃": 31995,
+ "왕": 31996,
+ "收": 31997,
+ "弘": 31998,
+ "给": 31999
+ },
+ "merges": [
+ "▁ t",
+ "e r",
+ "i n",
+ "▁ a",
+ "e n",
+ "o n",
+ "▁t h",
+ "▁ th",
+ "e s",
+ "▁ s",
+ "▁ d",
+ "a t",
+ "o r",
+ "a n",
+ "▁ c",
+ "i s",
+ "r e",
+ "i t",
+ "▁t he",
+ "▁th e",
+ "▁ the",
+ "a r",
+ "l e",
+ "▁ w",
+ "▁ p",
+ "o u",
+ "a l",
+ "▁ f",
+ "▁ m",
+ "e d",
+ "▁ o",
+ "▁ b",
+ "o m",
+ "io n",
+ "i on",
+ "in g",
+ "i ng",
+ "i c",
+ "a s",
+ "e l",
+ "en t",
+ "e nt",
+ "▁i n",
+ "▁ in",
+ "▁ h",
+ "n d",
+ "e t",
+ "▁ l",
+ "▁ n",
+ "s t",
+ "▁t o",
+ "▁ to",
+ "c h",
+ "▁ I",
+ "r o",
+ "i l",
+ "▁o f",
+ "▁ of",
+ "d e",
+ "c t",
+ "▁ (",
+ "a m",
+ "▁ C",
+ "▁d e",
+ "▁ de",
+ "▁ S",
+ "▁ u",
+ "▁ A",
+ "▁ \\",
+ "▁ e",
+ "▁a nd",
+ "▁an d",
+ "▁ and",
+ "▁ T",
+ "o l",
+ "▁ v",
+ "i m",
+ "o t",
+ "a d",
+ "u t",
+ "▁ g",
+ "e m",
+ "u r",
+ "i d",
+ "▁ *",
+ "i g",
+ "r a",
+ "▁r e",
+ "▁ re",
+ "▁i s",
+ "▁ is",
+ "q u",
+ "o w",
+ "▁ M",
+ "es t",
+ "e st",
+ "▁ y",
+ "s e",
+ "v e",
+ "c e",
+ "i e",
+ "u n",
+ "▁ P",
+ "▁ B",
+ "a g",
+ "u l",
+ "▁ =",
+ "h e",
+ "en d",
+ "e nd",
+ "od e",
+ "o de",
+ "te r",
+ "t er",
+ "me nt",
+ "men t",
+ "m ent",
+ "o s",
+ "▁ D",
+ "i f",
+ "at ion",
+ "ati on",
+ "atio n",
+ "a tion",
+ "▁f or",
+ "▁fo r",
+ "▁ for",
+ "▁ r",
+ "▁ L",
+ "▁y ou",
+ "▁yo u",
+ "▁ you",
+ "▁b e",
+ "▁ be",
+ "l y",
+ "ve r",
+ "v er",
+ "a b",
+ "t e",
+ "▁i t",
+ "▁ it",
+ "▁o n",
+ "▁ on",
+ "r i",
+ "u s",
+ "▁ \"",
+ "▁w h",
+ "▁ wh",
+ "▁c on",
+ "▁co n",
+ "▁ con",
+ "▁ H",
+ "▁s t",
+ "▁ st",
+ "i r",
+ "▁ E",
+ "▁ F",
+ "c k",
+ "▁a n",
+ "▁ an",
+ "t h",
+ "e g",
+ "a y",
+ "it h",
+ "i th",
+ "▁ R",
+ "is t",
+ "i st",
+ "an d",
+ "a nd",
+ "▁t hat",
+ "▁th at",
+ "▁ that",
+ "▁a l",
+ "▁ al",
+ "▁ $",
+ "▁ #",
+ "o d",
+ "u m",
+ "▁ W",
+ "h t",
+ "co de",
+ "cod e",
+ "c ode",
+ "▁ G",
+ "at e",
+ "a te",
+ "es s",
+ "e ss",
+ "▁ N",
+ "er e",
+ "e re",
+ "p p",
+ "▁a s",
+ "▁ as",
+ "▁s e",
+ "▁ se",
+ "▁p ro",
+ "▁pr o",
+ "▁ pro",
+ "▁w ith",
+ "▁wit h",
+ "▁ with",
+ "p e",
+ "▁ k",
+ "er s",
+ "e rs",
+ "p t",
+ ") ;",
+ "l o",
+ "▁c om",
+ "▁co m",
+ "▁ com",
+ "am e",
+ "a me",
+ "▁ `",
+ "▁C om",
+ "▁Co m",
+ "▁ Com",
+ "i a",
+ "an t",
+ "a nt",
+ "▁l a",
+ "▁ la",
+ "▁ {",
+ "▁e n",
+ "▁ en",
+ "ct ion",
+ "c tion",
+ "▁e x",
+ "▁ ex",
+ "l d",
+ "u b",
+ "▁ j",
+ "l a",
+ "u e",
+ "▁ J",
+ "ic h",
+ "i ch",
+ "▁d o",
+ "▁ do",
+ "▁ O",
+ "▁q u",
+ "▁ qu",
+ "i v",
+ "or t",
+ "o rt",
+ "ar t",
+ "a rt",
+ "▁u n",
+ "▁ un",
+ "▁# #",
+ "▁ ##",
+ "▁t his",
+ "▁th is",
+ "▁ this",
+ "k e",
+ "▁h a",
+ "▁ ha",
+ "▁ -",
+ "ou t",
+ "o ut",
+ "▁T he",
+ "▁Th e",
+ "▁ The",
+ "▁n ot",
+ "▁no t",
+ "▁ not",
+ "▁n e",
+ "▁ ne",
+ "il l",
+ "i ll",
+ "▁l e",
+ "▁ le",
+ "c i",
+ "ro m",
+ "r om",
+ "in e",
+ "i ne",
+ "/ /",
+ "o p",
+ "eg in",
+ "e gin",
+ "▁Com ment",
+ "▁Comm ent",
+ "▁ Comment",
+ "be gin",
+ "beg in",
+ "b egin",
+ "с т",
+ "as s",
+ "a ss",
+ "i z",
+ ") .",
+ "o g",
+ "▁ п",
+ "▁o r",
+ "▁ or",
+ "▁w as",
+ "▁wa s",
+ "▁ was",
+ "▁a t",
+ "▁ at",
+ "ou r",
+ "o ur",
+ "▁ i",
+ "ai n",
+ "a in",
+ "▁ K",
+ "н а",
+ "▁ V",
+ "g e",
+ "▁s u",
+ "▁ su",
+ "a p",
+ "ag e",
+ "a ge",
+ "ou ld",
+ "oul d",
+ "o uld",
+ "n e",
+ "a v",
+ "x t",
+ "or e",
+ "o re",
+ "il e",
+ "i le",
+ "- -",
+ "▁ в",
+ "▁b y",
+ "▁ by",
+ "l i",
+ "at h",
+ "a th",
+ "р а",
+ "be r",
+ "b er",
+ "ac h",
+ "a ch",
+ "al l",
+ "a ll",
+ "▁T h",
+ "▁ Th",
+ "ul t",
+ "u lt",
+ "▁ }",
+ "▁ U",
+ "▁u s",
+ "▁ us",
+ "▁ z",
+ "us t",
+ "u st",
+ "▁h ave",
+ "▁ha ve",
+ "▁hav e",
+ "▁ have",
+ "li c",
+ "l ic",
+ "н и",
+ "▁c an",
+ "▁ca n",
+ "▁ can",
+ "t r",
+ "co m",
+ "c om",
+ ") ,",
+ "▁I n",
+ "▁ In",
+ "in d",
+ "i nd",
+ "el l",
+ "e ll",
+ "▁f rom",
+ "▁fr om",
+ "▁fro m",
+ "▁ from",
+ "о в",
+ "t o",
+ "▁ [",
+ "ab le",
+ "abl e",
+ "a ble",
+ "os t",
+ "o st",
+ "▁c h",
+ "▁ ch",
+ "ec t",
+ "e ct",
+ "ig ht",
+ "igh t",
+ "in t",
+ "i nt",
+ "▁ '",
+ "▁a re",
+ "▁ar e",
+ "▁ are",
+ "▁i m",
+ "▁ im",
+ "▁s h",
+ "▁ sh",
+ "▁ <",
+ "▁A n",
+ "▁ An",
+ "▁ с",
+ "at a",
+ "a ta",
+ "ir e",
+ "i re",
+ "▁t r",
+ "▁ tr",
+ "co n",
+ "c on",
+ "or d",
+ "o rd",
+ "it y",
+ "i ty",
+ "ar d",
+ "a rd",
+ "▁h e",
+ "▁ he",
+ "▁b ut",
+ "▁bu t",
+ "▁ but",
+ "o c",
+ "= \"",
+ "▁p r",
+ "▁ pr",
+ "ur e",
+ "u re",
+ "pe r",
+ "p er",
+ "ac k",
+ "a ck",
+ "or k",
+ "on g",
+ "o ng",
+ "an s",
+ "a ns",
+ "к о",
+ "pl e",
+ "p le",
+ "▁d es",
+ "▁de s",
+ "▁ des",
+ "o k",
+ "or m",
+ "o rm",
+ "we r",
+ "w er",
+ "a k",
+ "p r",
+ "as e",
+ "a se",
+ "▁e l",
+ "▁ el",
+ "p h",
+ "a c",
+ "▁u nd",
+ "▁un d",
+ "▁ und",
+ "▁a r",
+ "▁ ar",
+ "▁i f",
+ "▁ if",
+ "u d",
+ "p s",
+ "it e",
+ "i te",
+ "bl e",
+ "b le",
+ "н о",
+ "fe r",
+ "f er",
+ "p l",
+ "iv e",
+ "i ve",
+ "an g",
+ "a ng",
+ "en s",
+ "e ns",
+ "р о",
+ "▁s o",
+ "▁ so",
+ "s o",
+ "as t",
+ "a st",
+ "( )",
+ "sw er",
+ "s wer",
+ "r u",
+ "ie s",
+ "i es",
+ "▁ :",
+ "a u",
+ "o v",
+ "р е",
+ "г о",
+ "▁d er",
+ "▁de r",
+ "▁ der",
+ "▁m y",
+ "▁ my",
+ "▁w e",
+ "▁ we",
+ "▁m e",
+ "▁ me",
+ "n t",
+ "▁a d",
+ "▁ ad",
+ "ur n",
+ "u rn",
+ "▁y our",
+ "▁you r",
+ "▁yo ur",
+ "▁ your",
+ ":/ /",
+ ": //",
+ "ar e",
+ "a re",
+ "▁a ll",
+ "▁al l",
+ "▁ all",
+ "f f",
+ "i o",
+ "es tion",
+ "est ion",
+ "esti on",
+ "im e",
+ "i me",
+ "▁e r",
+ "▁ er",
+ "la ss",
+ "las s",
+ "l ass",
+ "▁ и",
+ "▁wh ich",
+ "▁ which",
+ "om e",
+ "o me",
+ "on t",
+ "o nt",
+ "▁p ar",
+ "▁pa r",
+ "▁ par",
+ "▁m a",
+ "▁ ma",
+ "▁ Y",
+ "\" ,",
+ "▁ о",
+ "f t",
+ "ia l",
+ "i al",
+ "c c",
+ "ou nd",
+ "oun d",
+ "o und",
+ "▁l i",
+ "▁ li",
+ "▁re s",
+ "▁r es",
+ "▁ res",
+ "et h",
+ "e th",
+ "je ct",
+ "j ect",
+ "▁a pp",
+ "▁ap p",
+ "▁ app",
+ "▁S t",
+ "▁ St",
+ "ic e",
+ "i ce",
+ "▁a m",
+ "▁ am",
+ "ac t",
+ "a ct",
+ "▁d el",
+ "▁de l",
+ "▁ del",
+ "g r",
+ "at ed",
+ "ate d",
+ "a ted",
+ "ie r",
+ "i er",
+ "▁a b",
+ "▁ ab",
+ "▁e t",
+ "▁ et",
+ "al ly",
+ "all y",
+ ". .",
+ "po rt",
+ "por t",
+ "p ort",
+ "i k",
+ "▁p er",
+ "▁pe r",
+ "▁ per",
+ "▁c ont",
+ "▁con t",
+ "▁co nt",
+ "▁ cont",
+ "р и",
+ "к а",
+ "se r",
+ "s er",
+ "л и",
+ "l l",
+ "ie w",
+ "i ew",
+ "ig n",
+ "i gn",
+ "_ {",
+ "pu t",
+ "p ut",
+ "on e",
+ "o ne",
+ "un ction",
+ "unc tion",
+ "unct ion",
+ "▁d i",
+ "▁ di",
+ "ar y",
+ "a ry",
+ "it ion",
+ "iti on",
+ "i tion",
+ "m a",
+ "е н",
+ "ge t",
+ "g et",
+ "▁l o",
+ "▁ lo",
+ "▁v al",
+ "▁va l",
+ "▁ val",
+ "▁ Q",
+ "ra n",
+ "r an",
+ "▁ д",
+ "en ce",
+ "enc e",
+ "▁w ork",
+ "▁wor k",
+ "▁ work",
+ "▁н а",
+ "▁ на",
+ "i p",
+ "it em",
+ "ite m",
+ "i tem",
+ "yp e",
+ "y pe",
+ "▁ &",
+ "▁h is",
+ "▁hi s",
+ "▁ his",
+ "▁u se",
+ "▁us e",
+ "▁ use",
+ "de r",
+ "d er",
+ "▁An swer",
+ "▁Ans wer",
+ "▁ Answer",
+ "▁w ill",
+ "▁wil l",
+ "▁ will",
+ "iz e",
+ "i ze",
+ "т а",
+ "lo w",
+ "l ow",
+ "▁C h",
+ "▁ Ch",
+ "▁g et",
+ "▁ge t",
+ "▁ get",
+ "id e",
+ "i de",
+ "ou s",
+ "o us",
+ "in k",
+ "pt ion",
+ "p tion",
+ "л а",
+ "tu rn",
+ "t urn",
+ "un g",
+ "u ng",
+ "e c",
+ "u g",
+ "fo rm",
+ "for m",
+ "f orm",
+ "re s",
+ "r es",
+ "ht t",
+ "h tt",
+ "ou g",
+ "o ug",
+ "л ь",
+ "▁n o",
+ "▁ no",
+ "c l",
+ "▁r o",
+ "▁ ro",
+ "▁o ne",
+ "▁on e",
+ "▁ one",
+ "t t",
+ "cr i",
+ "c ri",
+ "d u",
+ "▁u p",
+ "▁ up",
+ "т о",
+ "( \"",
+ "▁o b",
+ "▁ ob",
+ "w e",
+ "or y",
+ "o ry",
+ "▁e st",
+ "▁es t",
+ "▁ est",
+ "er y",
+ "e ry",
+ "ie l",
+ "i el",
+ "st r",
+ "s tr",
+ "o b",
+ "▁qu e",
+ "▁q ue",
+ "▁ que",
+ "ia n",
+ "i an",
+ "▁o ut",
+ "▁ou t",
+ "▁ out",
+ "▁p l",
+ "▁ pl",
+ "▁n ew",
+ "▁ne w",
+ "▁ new",
+ "к и",
+ "▁ +",
+ "r y",
+ "ot h",
+ "o th",
+ "th er",
+ "the r",
+ "t her",
+ "▁v ar",
+ "▁va r",
+ "▁ var",
+ "▁w ould",
+ "▁wo uld",
+ "▁s er",
+ "▁se r",
+ "▁ ser",
+ "ter n",
+ "te rn",
+ "t ern",
+ "te xt",
+ "tex t",
+ "t ext",
+ "▁t here",
+ "▁th ere",
+ "▁the re",
+ "▁ther e",
+ "▁ there",
+ "is h",
+ "i sh",
+ "ro r",
+ "r or",
+ "т е",
+ "▁s et",
+ "▁se t",
+ "▁ set",
+ "▁ @",
+ "▁п о",
+ "▁ по",
+ "▁t e",
+ "▁ te",
+ "e x",
+ "▁re turn",
+ "▁ret urn",
+ "▁ return",
+ "ai l",
+ "a il",
+ "▁a ny",
+ "▁an y",
+ "▁ any",
+ "▁I t",
+ "▁ It",
+ "▁f unction",
+ "▁fun ction",
+ "▁func tion",
+ "▁ function",
+ "{ \\",
+ "' ,",
+ "é s",
+ "al e",
+ "a le",
+ "а н",
+ "▁w hen",
+ "▁wh en",
+ "▁whe n",
+ "▁ when",
+ "i b",
+ "▁g o",
+ "▁ go",
+ "an ce",
+ "anc e",
+ "▁h ad",
+ "▁ha d",
+ "▁ had",
+ "▁Q u",
+ "▁ Qu",
+ "▁c omp",
+ "▁com p",
+ "▁co mp",
+ "▁ comp",
+ "л е",
+ "▁ з",
+ "ma th",
+ "mat h",
+ "m ath",
+ "▁h as",
+ "▁ha s",
+ "▁ has",
+ "▁ м",
+ "▁p re",
+ "▁pr e",
+ "▁ pre",
+ "en er",
+ "ene r",
+ "e ner",
+ "▁p art",
+ "▁par t",
+ "▁pa rt",
+ "▁ part",
+ "el f",
+ "▁d ie",
+ "▁di e",
+ "▁ die",
+ "▁l ike",
+ "▁li ke",
+ "▁lik e",
+ "▁ like",
+ "ra y",
+ "r ay",
+ "ir st",
+ "irs t",
+ "▁d is",
+ "▁di s",
+ "▁ dis",
+ "▁m an",
+ "▁ma n",
+ "▁ man",
+ "ri t",
+ "r it",
+ "▁t hen",
+ "▁th en",
+ "▁the n",
+ "▁ then",
+ "▁c lass",
+ "▁cl ass",
+ "▁cla ss",
+ "▁clas s",
+ "▁ class",
+ "pr o",
+ "p ro",
+ "▁p o",
+ "▁ po",
+ "▁u sing",
+ "▁us ing",
+ "▁ using",
+ "e b",
+ "▁c ode",
+ "▁co de",
+ "▁cod e",
+ "▁ code",
+ "ow n",
+ "o wn",
+ "▁s ome",
+ "▁so me",
+ "▁som e",
+ "▁ some",
+ "ce s",
+ "c es",
+ "▁$ \\",
+ "▁ $\\",
+ "е р",
+ "le ct",
+ "l ect",
+ "▁a u",
+ "▁ au",
+ "is ch",
+ "isc h",
+ "i sch",
+ "▁c ol",
+ "▁co l",
+ "▁ col",
+ "▁ –",
+ "u p",
+ "on s",
+ "o ns",
+ "▁a dd",
+ "▁ad d",
+ "▁ add",
+ "il d",
+ "i ld",
+ "is s",
+ "i ss",
+ "va l",
+ "v al",
+ "ou nt",
+ "oun t",
+ "o unt",
+ "le s",
+ "l es",
+ "ve nt",
+ "ven t",
+ "v ent",
+ "▁ Z",
+ "I n",
+ "ro w",
+ "r ow",
+ "ea r",
+ "e ar",
+ "at ions",
+ "ation s",
+ "ati ons",
+ "atio ns",
+ "a h",
+ "qu e",
+ "q ue",
+ "ub lic",
+ "u blic",
+ "an k",
+ "▁s p",
+ "▁ sp",
+ "▁W h",
+ "▁ Wh",
+ "-- --",
+ "--- -",
+ "- ---",
+ "s k",
+ "e w",
+ "ag s",
+ "a gs",
+ "т и",
+ "an n",
+ "a nn",
+ "▁ —",
+ "er t",
+ "e rt",
+ "ac e",
+ "a ce",
+ "sc h",
+ "s ch",
+ "▁n eed",
+ "▁ne ed",
+ "▁ need",
+ "▁ à",
+ "ie n",
+ "i en",
+ "ou gh",
+ "oug h",
+ "o ugh",
+ "н е",
+ "▁d ef",
+ "▁de f",
+ "▁ def",
+ "i j",
+ "er n",
+ "e rn",
+ "▁w hat",
+ "▁wh at",
+ "▁ what",
+ "▁A r",
+ "▁ Ar",
+ "w o",
+ "m l",
+ "< /",
+ "▁R e",
+ "▁ Re",
+ "▁e s",
+ "▁ es",
+ "▁in st",
+ "▁ins t",
+ "▁ inst",
+ "b o",
+ "a z",
+ "▁# ##",
+ "▁## #",
+ "▁ б",
+ "er m",
+ "e rm",
+ "▁A l",
+ "▁ Al",
+ "le d",
+ "l ed",
+ "д а",
+ "te n",
+ "t en",
+ "se t",
+ "s et",
+ "л о",
+ "▁c omm",
+ "▁com m",
+ "▁co mm",
+ "▁ comm",
+ "s h",
+ "в а",
+ "▁ /",
+ "▁d ata",
+ "▁da ta",
+ "▁dat a",
+ "▁ data",
+ "▁/ /",
+ "▁ //",
+ "] (",
+ "▁s tr",
+ "▁st r",
+ "▁ str",
+ "os e",
+ "o se",
+ "▁U n",
+ "▁ Un",
+ "ve n",
+ "v en",
+ "S t",
+ ".. .",
+ ". ..",
+ "▁ С",
+ "ys t",
+ "y st",
+ "▁ «",
+ "ic k",
+ "i ck",
+ "i x",
+ "pa r",
+ "p ar",
+ "▁ у",
+ "▁w ant",
+ "▁wa nt",
+ "n g",
+ "ot e",
+ "o te",
+ "▁g r",
+ "▁ gr",
+ "▁d u",
+ "▁ du",
+ "▁ .",
+ "un d",
+ "u nd",
+ "▁on ly",
+ "▁ only",
+ "▁s a",
+ "▁ sa",
+ "el y",
+ "e ly",
+ "ve rs",
+ "ver s",
+ "v ers",
+ "▁e nt",
+ "▁en t",
+ "▁ ent",
+ ") )",
+ "( '",
+ "▁m od",
+ "▁mo d",
+ "▁ mod",
+ "av a",
+ "a va",
+ "to n",
+ "t on",
+ "▁sh ould",
+ "▁sho uld",
+ "▁ should",
+ "em ent",
+ "eme nt",
+ "emen t",
+ "e ment",
+ "▁f orm",
+ "▁for m",
+ "▁fo rm",
+ "▁ form",
+ "▁al so",
+ "▁als o",
+ "▁ also",
+ "▁s c",
+ "▁ sc",
+ "in gs",
+ "ing s",
+ "▁Y ou",
+ "▁ You",
+ "ó n",
+ "▁k n",
+ "▁ kn",
+ "() ;",
+ "( );",
+ "▁ |",
+ "▁w ere",
+ "▁we re",
+ "▁wer e",
+ "s s",
+ "▁Qu estion",
+ "▁ Question",
+ "is e",
+ "i se",
+ "▁th ey",
+ "▁the y",
+ "▁ they",
+ "▁D e",
+ "▁ De",
+ "on d",
+ "o nd",
+ "▁s ol",
+ "▁so l",
+ "▁ sol",
+ "▁f ol",
+ "▁fo l",
+ "▁ fol",
+ "▁m ore",
+ "▁mo re",
+ "▁mor e",
+ "▁ more",
+ "▁h er",
+ "▁he r",
+ "▁ her",
+ "▁ _",
+ "▁ é",
+ "at ch",
+ "ft er",
+ "fte r",
+ "f ter",
+ "▁c re",
+ "▁cr e",
+ "▁ cre",
+ "lo ck",
+ "loc k",
+ "l ock",
+ "tr ing",
+ "tri ng",
+ "t ring",
+ "▁T his",
+ "▁Th is",
+ "▁ This",
+ "z e",
+ "ad o",
+ "a do",
+ "ul l",
+ "u ll",
+ "ge r",
+ "g er",
+ "b e",
+ "▁o ther",
+ "▁ot her",
+ "▁ other",
+ "▁T ags",
+ "▁Tag s",
+ "▁Ta gs",
+ "▁ Tags",
+ "ut ion",
+ "uti on",
+ "u tion",
+ "ic t",
+ "i ct",
+ "▁h ow",
+ "▁ho w",
+ "▁ how",
+ "▁ x",
+ "▁S e",
+ "▁ Se",
+ "▁c he",
+ "▁ch e",
+ "▁ che",
+ "cri pt",
+ "cr ipt",
+ "▁j ust",
+ "▁ju st",
+ "▁ just",
+ "▁p os",
+ "▁po s",
+ "▁ pos",
+ "an ge",
+ "ang e",
+ "if ic",
+ "ifi c",
+ "i fic",
+ "re e",
+ "r ee",
+ "} }",
+ "▁t ime",
+ "▁tim e",
+ "▁ti me",
+ "▁ time",
+ "ap p",
+ "a pp",
+ "н ы",
+ "▁f ile",
+ "▁fil e",
+ "▁fi le",
+ "▁ file",
+ "ar k",
+ "ic al",
+ "ica l",
+ "i cal",
+ "▁f irst",
+ "▁fir st",
+ "▁ first",
+ "▁in t",
+ "▁i nt",
+ "▁ int",
+ "▁ В",
+ "▁H e",
+ "▁ He",
+ "t a",
+ "um ent",
+ "ume nt",
+ "umen t",
+ "u ment",
+ "or s",
+ "o rs",
+ "le ment",
+ "lem ent",
+ "l ement",
+ "ra c",
+ "r ac",
+ "▁a g",
+ "▁ ag",
+ "▁do es",
+ "▁ does",
+ "y n",
+ "re ad",
+ "rea d",
+ "r ead",
+ "ua l",
+ "u al",
+ "▁L e",
+ "▁ Le",
+ "y s",
+ "▁e m",
+ "▁ em",
+ "▁n um",
+ "▁nu m",
+ "▁ num",
+ "ve l",
+ "v el",
+ "д и",
+ "ov er",
+ "ove r",
+ "o ver",
+ "▁d if",
+ "▁di f",
+ "et hod",
+ "eth od",
+ "▁I f",
+ "▁ If",
+ "▁s pe",
+ "▁sp e",
+ "▁ spe",
+ "y m",
+ "▁t hem",
+ "▁th em",
+ "▁the m",
+ "▁in to",
+ "▁int o",
+ "▁ into",
+ "▁l es",
+ "▁le s",
+ "▁ les",
+ "▁it s",
+ "▁i ts",
+ "▁ its",
+ "es e",
+ "e se",
+ "ie ld",
+ "iel d",
+ "i eld",
+ "▁p ublic",
+ "▁pub lic",
+ "▁pu blic",
+ "▁publi c",
+ "▁ public",
+ "▁ П",
+ "▁d en",
+ "▁de n",
+ "▁ den",
+ "yst em",
+ "ys tem",
+ "o f",
+ "▁o ver",
+ "▁ov er",
+ "▁ over",
+ "- >",
+ "▁f il",
+ "▁fi l",
+ "▁ fil",
+ "na me",
+ "nam e",
+ "n ame",
+ "in al",
+ "ina l",
+ "i nal",
+ "▁i l",
+ "▁ il",
+ "am ple",
+ "amp le",
+ "▁w ay",
+ "▁wa y",
+ "▁ way",
+ "ic a",
+ "i ca",
+ "в о",
+ "ce ss",
+ "ces s",
+ "c ess",
+ "it t",
+ "i tt",
+ "uc h",
+ "u ch",
+ "▁w here",
+ "▁wh ere",
+ "▁whe re",
+ "▁ where",
+ "м и",
+ "or g",
+ "o rg",
+ "htt ps",
+ "http s",
+ "▁v o",
+ "▁ vo",
+ "ie nt",
+ "ien t",
+ "i ent",
+ "ov e",
+ "o ve",
+ "▁val ue",
+ "▁valu e",
+ "▁ value",
+ "en g",
+ "e ng",
+ "▁L a",
+ "▁ La",
+ "^ {",
+ "re f",
+ "r ef",
+ "ie d",
+ "i ed",
+ "E R",
+ "▁s tat",
+ "▁st at",
+ "▁sta t",
+ "▁ stat",
+ "fi g",
+ "f ig",
+ "m e",
+ "▁v on",
+ "▁vo n",
+ "▁ von",
+ "▁in ter",
+ "▁int er",
+ "▁inte r",
+ "▁ inter",
+ "ro id",
+ "r oid",
+ "at er",
+ "ate r",
+ "a ter",
+ "▁the ir",
+ "▁b et",
+ "▁be t",
+ "▁ bet",
+ "▁e in",
+ "▁ ein",
+ "} \\",
+ "\" >",
+ "▁s ub",
+ "▁su b",
+ "▁ sub",
+ "▁o p",
+ "▁ op",
+ "▁d on",
+ "▁do n",
+ "▁ don",
+ "t y",
+ "▁t ry",
+ "▁tr y",
+ "▁ try",
+ "▁P ro",
+ "▁Pr o",
+ "▁ Pro",
+ "▁t ra",
+ "▁tr a",
+ "▁ tra",
+ "▁s ame",
+ "▁sa me",
+ "▁sam e",
+ "▁ same",
+ "e p",
+ "▁t wo",
+ "▁tw o",
+ "▁ two",
+ "▁n ame",
+ "▁na me",
+ "▁nam e",
+ "▁ name",
+ "ol d",
+ "o ld",
+ "le t",
+ "l et",
+ "▁s im",
+ "▁si m",
+ "▁ sim",
+ "s p",
+ "▁a v",
+ "▁ av",
+ "br e",
+ "b re",
+ "ble m",
+ "bl em",
+ "b lem",
+ "e y",
+ "▁c ould",
+ "▁co uld",
+ "▁cou ld",
+ "▁ could",
+ "▁c or",
+ "▁co r",
+ "▁ cor",
+ "▁a cc",
+ "▁ac c",
+ "▁ acc",
+ "ay s",
+ "a ys",
+ "cr e",
+ "c re",
+ "ur r",
+ "u rr",
+ "s i",
+ "▁con st",
+ "▁cons t",
+ "▁ const",
+ "ue s",
+ "u es",
+ "} $",
+ "V iew",
+ "▁a ct",
+ "▁ac t",
+ "▁ act",
+ "▁b o",
+ "▁ bo",
+ "▁к о",
+ "▁ ко",
+ "▁s om",
+ "▁so m",
+ "▁ som",
+ "▁ab out",
+ "▁ about",
+ "la nd",
+ "lan d",
+ "l and",
+ "me r",
+ "m er",
+ "▁l ist",
+ "▁li st",
+ "▁ list",
+ "ca l",
+ "c al",
+ "▁im port",
+ "▁imp ort",
+ "▁ import",
+ "co l",
+ "c ol",
+ "▁n a",
+ "▁ na",
+ "n a",
+ ": :",
+ "▁w ho",
+ "▁wh o",
+ "▁ who",
+ "▁e rror",
+ "▁er ror",
+ "▁err or",
+ "▁ error",
+ "▁ X",
+ "at or",
+ "ato r",
+ "a tor",
+ "ex t",
+ "e xt",
+ "▁b een",
+ "▁be en",
+ "é r",
+ "▁r un",
+ "▁ru n",
+ "▁ run",
+ "po s",
+ "p os",
+ "▁c l",
+ "▁ cl",
+ "* *",
+ "▁ К",
+ "ul ar",
+ "ula r",
+ "u lar",
+ "au se",
+ "aus e",
+ "a use",
+ "▁re g",
+ "▁r eg",
+ "▁ reg",
+ "▁k now",
+ "▁kn ow",
+ "▁ know",
+ "▁s ee",
+ "▁se e",
+ "▁ see",
+ "▁h im",
+ "▁hi m",
+ "▁ him",
+ "ni ng",
+ "n ing",
+ "▁з а",
+ "▁ за",
+ "at es",
+ "ate s",
+ "a tes",
+ "fo re",
+ "for e",
+ "f ore",
+ "ion s",
+ "io ns",
+ "i ons",
+ "▁h el",
+ "▁he l",
+ "▁ hel",
+ "ut e",
+ "u te",
+ "▁re m",
+ "▁r em",
+ "▁ rem",
+ "▁г о",
+ "▁ го",
+ "▁M ar",
+ "▁Ma r",
+ "▁ Mar",
+ "р у",
+ "vi ce",
+ "vic e",
+ "v ice",
+ "ir ect",
+ "ire ct",
+ "i rect",
+ "ne r",
+ "n er",
+ "▁u nder",
+ "▁un der",
+ "▁und er",
+ "▁ under",
+ "ri b",
+ "r ib",
+ "h r",
+ "ч е",
+ "▁A s",
+ "▁ As",
+ "▁e nd",
+ "▁en d",
+ "▁ end",
+ "em ber",
+ "emb er",
+ "▁ а",
+ "▁a tt",
+ "▁at t",
+ "▁ att",
+ "in a",
+ "i na",
+ "so n",
+ "s on",
+ "▁f ollow",
+ "▁fol low",
+ "▁ follow",
+ "▁S ch",
+ "▁Sc h",
+ "▁ Sch",
+ "pe ct",
+ "pec t",
+ "p ect",
+ "▁re l",
+ "▁r el",
+ "▁ rel",
+ "▁S o",
+ "▁ So",
+ "▁l ook",
+ "▁lo ok",
+ "▁ look",
+ "ab el",
+ "abe l",
+ "a bel",
+ "▁pro blem",
+ "▁prob lem",
+ "▁proble m",
+ "▁probl em",
+ "▁ problem",
+ "▁v an",
+ "▁va n",
+ "▁ van",
+ "st rong",
+ "str ong",
+ "c o",
+ "po n",
+ "p on",
+ "c a",
+ "ad a",
+ "a da",
+ "\" :",
+ "con d",
+ "co nd",
+ "c ond",
+ "am b",
+ "a mb",
+ "} ,",
+ "qu est",
+ "que st",
+ "ques t",
+ "q uest",
+ "▁a ut",
+ "▁au t",
+ "▁ aut",
+ "▁res ult",
+ "▁ result",
+ "▁m ay",
+ "▁ma y",
+ "▁ may",
+ "R e",
+ "ht tp",
+ "htt p",
+ "h ttp",
+ ") :",
+ "▁A nd",
+ "▁An d",
+ "▁ And",
+ "re d",
+ "r ed",
+ "▁H ow",
+ "▁Ho w",
+ "▁ How",
+ "p o",
+ "ск о",
+ "с ко",
+ "at t",
+ "a tt",
+ "ou p",
+ "o up",
+ "ce d",
+ "c ed",
+ "▁t ype",
+ "▁typ e",
+ "▁ty pe",
+ "▁ type",
+ "▁t han",
+ "▁th an",
+ "▁ than",
+ "▁c ons",
+ "▁con s",
+ "▁co ns",
+ "▁ cons",
+ "u f",
+ "ц и",
+ "▁qu estion",
+ "▁quest ion",
+ "▁questi on",
+ "▁ question",
+ "ra ph",
+ "rap h",
+ "r aph",
+ "ig h",
+ "i gh",
+ "▁ М",
+ "▁h tt",
+ "▁ htt",
+ "in s",
+ "i ns",
+ "de n",
+ "d en",
+ "▁d a",
+ "▁ da",
+ "▁v er",
+ "▁ve r",
+ "▁ ver",
+ "o h",
+ "▁= >",
+ "▁ =>",
+ "ri v",
+ "r iv",
+ "ud e",
+ "u de",
+ "▁F or",
+ "▁Fo r",
+ "▁ For",
+ "▁r a",
+ "▁ ra",
+ "fr ac",
+ "fra c",
+ "f rac",
+ "м а",
+ "▁a fter",
+ "▁af ter",
+ "▁ after",
+ "} {",
+ "▁m ethod",
+ "▁met hod",
+ "▁ method",
+ "\" )",
+ "am p",
+ "a mp",
+ "as h",
+ "a sh",
+ "▁re c",
+ "▁r ec",
+ "▁ rec",
+ "▁d iffer",
+ "▁dif fer",
+ "▁diff er",
+ "O N",
+ "a x",
+ "am ent",
+ "ame nt",
+ "amen t",
+ "a ment",
+ "our ce",
+ "Co n",
+ "C on",
+ "it s",
+ "i ts",
+ "Na me",
+ "N ame",
+ "ma n",
+ "m an",
+ "▁b ec",
+ "▁be c",
+ "▁ bec",
+ "ch e",
+ "c he",
+ "▁E n",
+ "▁ En",
+ "a j",
+ "▁g ener",
+ "▁ge ner",
+ "▁gen er",
+ "▁gene r",
+ "▁ gener",
+ "I N",
+ "▁i d",
+ "▁ id",
+ "ag es",
+ "age s",
+ "a ges",
+ "▁l oc",
+ "▁lo c",
+ "▁ loc",
+ "f o",
+ "b r",
+ "▁s he",
+ "▁sh e",
+ "▁ she",
+ "Pr o",
+ "P ro",
+ "▁u na",
+ "▁un a",
+ "▁ una",
+ "▁ к",
+ "et a",
+ "e ta",
+ "lo g",
+ "l og",
+ "ol og",
+ "olo g",
+ "o log",
+ "▁s ur",
+ "▁su r",
+ "▁ sur",
+ "ar g",
+ "a rg",
+ "▁- -",
+ "▁ --",
+ "k t",
+ "( \\",
+ "mi n",
+ "m in",
+ "▁l ine",
+ "▁li ne",
+ "▁lin e",
+ "▁ line",
+ "▁v ari",
+ "▁var i",
+ "▁va ri",
+ "▁ vari",
+ "с я",
+ "ic s",
+ "i cs",
+ "н я",
+ "ve ry",
+ "ver y",
+ "v ery",
+ "ad d",
+ "a dd",
+ "▁o bject",
+ "▁ob ject",
+ "▁obj ect",
+ "▁ object",
+ "I d",
+ "▁B ut",
+ "▁Bu t",
+ "▁ But",
+ "▁c ase",
+ "▁cas e",
+ "▁ca se",
+ "▁ case",
+ "▁m ake",
+ "▁ma ke",
+ "▁mak e",
+ "▁ make",
+ "▁c al",
+ "▁ca l",
+ "▁ cal",
+ "▁p ass",
+ "▁pas s",
+ "▁pa ss",
+ "▁ pass",
+ "с ь",
+ "ess ion",
+ "ne t",
+ "n et",
+ ". \"",
+ "▁ г",
+ "ä r",
+ "д е",
+ "n o",
+ "at ing",
+ "ati ng",
+ "atin g",
+ "a ting",
+ "at o",
+ "a to",
+ "li ne",
+ "lin e",
+ "l ine",
+ "в и",
+ "▁E x",
+ "▁ Ex",
+ "▁a ss",
+ "▁as s",
+ "▁ ass",
+ "▁v ers",
+ "▁ver s",
+ "▁ve rs",
+ "▁ vers",
+ "л я",
+ "▁e d",
+ "▁ ed",
+ "um n",
+ "u mn",
+ "ot her",
+ "oth er",
+ "othe r",
+ "o ther",
+ "ст а",
+ "с та",
+ "at ive",
+ "ativ e",
+ "ati ve",
+ "St ring",
+ "Str ing",
+ "S tring",
+ "▁l os",
+ "▁lo s",
+ "▁ los",
+ "w n",
+ "▁an swer",
+ "▁ans wer",
+ "▁ answer",
+ "▁l et",
+ "▁le t",
+ "▁ let",
+ "▁p e",
+ "▁ pe",
+ "en ts",
+ "ent s",
+ "▁f e",
+ "▁ fe",
+ "in ce",
+ "inc e",
+ "n i",
+ "id er",
+ "ide r",
+ "i der",
+ "ow s",
+ "o ws",
+ "▁t est",
+ "▁te st",
+ "▁ test",
+ "▁h ere",
+ "▁he re",
+ "▁her e",
+ "▁ here",
+ "ro ll",
+ "rol l",
+ "r oll",
+ "▁c all",
+ "▁cal l",
+ "▁ca ll",
+ "▁ call",
+ "ru ct",
+ "r uct",
+ "▁p ol",
+ "▁po l",
+ "▁ pol",
+ "ai t",
+ "a it",
+ "▁b ack",
+ "▁ba ck",
+ "▁ back",
+ "h o",
+ "E x",
+ "re ss",
+ "res s",
+ "r ess",
+ "S T",
+ "ri ed",
+ "rie d",
+ "r ied",
+ "da te",
+ "dat e",
+ "d ate",
+ "е т",
+ "▁d id",
+ "▁di d",
+ "▁ did",
+ "ti ng",
+ "t ing",
+ "▁E l",
+ "▁ El",
+ "▁d em",
+ "▁de m",
+ "▁ dem",
+ ") $",
+ "ов а",
+ "о ва",
+ "ur rent",
+ "urr ent",
+ "urre nt",
+ "la ce",
+ "lac e",
+ "l ace",
+ "rig ht",
+ "r ight",
+ "re n",
+ "r en",
+ "п о",
+ "▁e ach",
+ "▁ each",
+ "c y",
+ "bl ock",
+ "blo ck",
+ "b lock",
+ "da ta",
+ "dat a",
+ "d ata",
+ "▁ %",
+ "▁a c",
+ "▁ ac",
+ "▁= =",
+ "▁ ==",
+ "ü r",
+ "▁p or",
+ "▁po r",
+ "▁ por",
+ "as k",
+ "a sk",
+ "ar ch",
+ "arc h",
+ "am es",
+ "ame s",
+ "a mes",
+ "▁C on",
+ "▁Co n",
+ "▁ Con",
+ "ч а",
+ "▁o ff",
+ "▁of f",
+ "▁ off",
+ "▁f ind",
+ "▁fin d",
+ "▁fi nd",
+ "▁ find",
+ "con t",
+ "co nt",
+ "c ont",
+ "▁n ow",
+ "▁no w",
+ "▁ now",
+ "wor k",
+ "w ork",
+ "at ional",
+ "ation al",
+ "ati onal",
+ "atio nal",
+ "d d",
+ "ci ón",
+ "ció n",
+ "c ión",
+ "▁ А",
+ "au lt",
+ "a ult",
+ "Li st",
+ "L ist",
+ "▁e xt",
+ "▁ex t",
+ "▁ ext",
+ "ur s",
+ "u rs",
+ "ak e",
+ "a ke",
+ "ul e",
+ "u le",
+ "▁p oint",
+ "▁po int",
+ "▁poi nt",
+ "▁ point",
+ "A T",
+ "au t",
+ "a ut",
+ "▁tr ans",
+ "▁tra ns",
+ "▁tran s",
+ "▁ trans",
+ "▁c o",
+ "▁ co",
+ "▁re ad",
+ "▁r ead",
+ "▁ read",
+ "▁u sed",
+ "▁us ed",
+ "▁use d",
+ "▁ used",
+ "ск и",
+ "с ки",
+ "ar i",
+ "a ri",
+ "L E",
+ "et er",
+ "ete r",
+ "e ter",
+ "ou n",
+ "o un",
+ "ev er",
+ "e ver",
+ "sel f",
+ "s elf",
+ "in ed",
+ "ine d",
+ "i ned",
+ "id th",
+ "u x",
+ "j s",
+ "▁s uch",
+ "▁su ch",
+ "▁suc h",
+ "▁ such",
+ "▁I s",
+ "▁ Is",
+ "é e",
+ "fu l",
+ "f ul",
+ "▁d ist",
+ "▁di st",
+ "▁dis t",
+ "▁ dist",
+ "▁b u",
+ "▁ bu",
+ "item ize",
+ "Con t",
+ "Co nt",
+ "C ont",
+ "j e",
+ "с и",
+ "▁p rov",
+ "▁pro v",
+ "▁pr ov",
+ "▁ prov",
+ "b b",
+ "wa rd",
+ "war d",
+ "w ard",
+ "es ent",
+ "ese nt",
+ "esen t",
+ "e sent",
+ "er son",
+ "ers on",
+ "an ks",
+ "ank s",
+ "w h",
+ "no t",
+ "n ot",
+ "▁W e",
+ "▁ We",
+ "k a",
+ "ro p",
+ "r op",
+ "at ur",
+ "atu r",
+ "al s",
+ "a ls",
+ "▁b el",
+ "▁be l",
+ "▁ bel",
+ "ö r",
+ "f r",
+ "▁ex ample",
+ "▁exam ple",
+ "▁ example",
+ "▁in cl",
+ "▁inc l",
+ "am il",
+ "ami l",
+ "a mil",
+ "▁р а",
+ "▁ ра",
+ "▁ “",
+ "▁s tring",
+ "▁st ring",
+ "▁str ing",
+ "▁stri ng",
+ "▁ string",
+ "▁th ink",
+ "▁thin k",
+ "T h",
+ "▁t em",
+ "▁te m",
+ "▁ tem",
+ "av e",
+ "a ve",
+ "▁F ran",
+ "▁Fr an",
+ "▁Fra n",
+ "▁ Fran",
+ "▁n umber",
+ "▁num ber",
+ "▁ number",
+ "▁s i",
+ "▁ si",
+ "im es",
+ "ime s",
+ "i mes",
+ "te m",
+ "t em",
+ "m y",
+ "le r",
+ "l er",
+ "lo ad",
+ "= =",
+ "▁h and",
+ "▁ha nd",
+ "▁han d",
+ "▁ hand",
+ "z a",
+ "▁b ecause",
+ "▁bec ause",
+ "▁ because",
+ "▁s ch",
+ "▁sc h",
+ "▁ sch",
+ "v o",
+ "th is",
+ "t his",
+ "I D",
+ "ã o",
+ "▁st art",
+ "▁star t",
+ "▁sta rt",
+ "▁ start",
+ "▁w ar",
+ "▁wa r",
+ "▁ war",
+ "▁he lp",
+ "▁hel p",
+ "▁ help",
+ "t s",
+ "▁c har",
+ "▁ch ar",
+ "▁cha r",
+ "▁ char",
+ "▁p h",
+ "▁ ph",
+ "▁m in",
+ "▁mi n",
+ "▁ min",
+ "ti l",
+ "t il",
+ "ri te",
+ "rit e",
+ "r ite",
+ "-- ------",
+ "---- ----",
+ "--- -----",
+ "------ --",
+ "----- ---",
+ "------- -",
+ "- -------",
+ "el s",
+ "e ls",
+ "▁m it",
+ "▁mi t",
+ "▁ mit",
+ "ed ia",
+ "edi a",
+ "e dia",
+ "к у",
+ "▁S h",
+ "▁ Sh",
+ "an y",
+ "a ny",
+ "] ;",
+ "▁ Б",
+ "iqu e",
+ "i que",
+ "d a",
+ "e f",
+ "de x",
+ "d ex",
+ "▁p rodu",
+ "▁pro du",
+ "▁pr odu",
+ "▁prod u",
+ "▁ produ",
+ "▁ Н",
+ "gr am",
+ "gra m",
+ "g ram",
+ "▁O r",
+ "▁ Or",
+ "▁g re",
+ "▁gr e",
+ "▁ gre",
+ "qu ote",
+ "quot e",
+ "le g",
+ "l eg",
+ "or n",
+ "o rn",
+ "▁in d",
+ "▁i nd",
+ "▁ ind",
+ "▁p ost",
+ "▁po st",
+ "▁pos t",
+ "▁ post",
+ "▁d ep",
+ "▁de p",
+ "▁ dep",
+ "] ,",
+ "v i",
+ "▁u ser",
+ "▁us er",
+ "▁use r",
+ "▁ user",
+ "▁ >",
+ "li ck",
+ "lic k",
+ "l ick",
+ "▁v ery",
+ "▁ver y",
+ "▁ve ry",
+ "▁ very",
+ "et hing",
+ "eth ing",
+ "e thing",
+ "▁ar ray",
+ "▁arr ay",
+ "▁ array",
+ "▁g u",
+ "▁ gu",
+ "▁d ur",
+ "▁du r",
+ "` .",
+ "т ь",
+ "li cation",
+ "lic ation",
+ "lica tion",
+ "ст и",
+ "с ти",
+ "e k",
+ "ic o",
+ "i co",
+ "▁d at",
+ "▁da t",
+ "▁ dat",
+ "о р",
+ "ht ml",
+ "htm l",
+ "h tml",
+ "ion e",
+ "io ne",
+ "i one",
+ "▁d ifferent",
+ "▁differ ent",
+ "▁c heck",
+ "▁che ck",
+ "▁ check",
+ "▁f r",
+ "▁ fr",
+ "▁E r",
+ "▁ Er",
+ "▁t ext",
+ "▁te xt",
+ "▁tex t",
+ "▁ text",
+ "н і",
+ "ic ht",
+ "ich t",
+ "i cht",
+ "st ack",
+ "sta ck",
+ "E N",
+ "ra g",
+ "r ag",
+ "▁e very",
+ "▁ev ery",
+ "▁ever y",
+ "▁ every",
+ "A r",
+ "▁be fore",
+ "▁bef ore",
+ "▁ before",
+ "al se",
+ "als e",
+ "▁f in",
+ "▁fi n",
+ "▁ fin",
+ "▁d é",
+ "▁th ese",
+ "▁the se",
+ "▁d et",
+ "▁de t",
+ "▁ det",
+ "V al",
+ "ce ption",
+ "cept ion",
+ "cep tion",
+ "▁and roid",
+ "▁ android",
+ "block quote",
+ "▁j e",
+ "▁ je",
+ "fil e",
+ "fi le",
+ "f ile",
+ "at s",
+ "a ts",
+ "▁д о",
+ "▁ до",
+ "ess age",
+ "essa ge",
+ "▁ag ain",
+ "a w",
+ "C h",
+ "we en",
+ "w een",
+ "▁ Д",
+ "fo r",
+ "f or",
+ "ci al",
+ "cia l",
+ "c ial",
+ "pl ay",
+ "pla y",
+ "p lay",
+ "pr e",
+ "p re",
+ "id a",
+ "i da",
+ "▁P ar",
+ "▁Pa r",
+ "▁ Par",
+ "n y",
+ "ra ct",
+ "rac t",
+ "r act",
+ "▁s upp",
+ "▁su pp",
+ "▁sup p",
+ "▁ supp",
+ "as ed",
+ "ase d",
+ "a sed",
+ "le ction",
+ "lect ion",
+ "l ection",
+ "▁d ans",
+ "▁da ns",
+ "▁dan s",
+ "ai r",
+ "a ir",
+ "ro l",
+ "r ol",
+ "▁t hr",
+ "▁th r",
+ "Dat a",
+ "Da ta",
+ "D ata",
+ "li ch",
+ "lic h",
+ "l ich",
+ "▁п ро",
+ "▁пр о",
+ "▁ про",
+ "▁l ong",
+ "▁lo ng",
+ "▁lon g",
+ "▁ long",
+ "▁se cond",
+ "▁sec ond",
+ "▁ second",
+ "ual ly",
+ "u ally",
+ "in es",
+ "ine s",
+ "i nes",
+ "▁f ound",
+ "▁fo und",
+ "▁fou nd",
+ "▁ found",
+ "eng th",
+ "y p",
+ "ea d",
+ "e ad",
+ "▁l og",
+ "▁lo g",
+ "▁ log",
+ "u i",
+ "ne w",
+ "n ew",
+ "▁ Р",
+ "g o",
+ "au s",
+ "a us",
+ "od y",
+ "o dy",
+ "▁s on",
+ "▁so n",
+ "▁ son",
+ "м е",
+ "er o",
+ "e ro",
+ "ve d",
+ "v ed",
+ "su b",
+ "s ub",
+ "▁r ight",
+ "▁rig ht",
+ "▁ right",
+ "vi ew",
+ "vie w",
+ "v iew",
+ "▁follow ing",
+ "' )",
+ "\") ;",
+ "\" );",
+ "▁sa id",
+ "ж е",
+ "ч и",
+ "т у",
+ "ot t",
+ "o tt",
+ "с е",
+ "ar s",
+ "a rs",
+ "$ .",
+ "g g",
+ "▁b r",
+ "▁ br",
+ "oo l",
+ "o ol",
+ "yl e",
+ "y le",
+ "us e",
+ "u se",
+ "▁s how",
+ "▁sh ow",
+ "▁sho w",
+ "▁ show",
+ "le ase",
+ "lea se",
+ "ci a",
+ "c ia",
+ "▁d irect",
+ "▁di rect",
+ "▁dire ct",
+ "▁dir ect",
+ "▁ direct",
+ "do c",
+ "d oc",
+ "а р",
+ "m s",
+ "▁g iv",
+ "▁gi v",
+ "▁ giv",
+ "▁e xp",
+ "▁ex p",
+ "▁ exp",
+ "q l",
+ "д у",
+ "в е",
+ "▁B e",
+ "▁ Be",
+ "Co m",
+ "C om",
+ "it er",
+ "ite r",
+ "i ter",
+ "R E",
+ "m p",
+ "me n",
+ "m en",
+ "▁R o",
+ "▁ Ro",
+ "M A",
+ "▁C ol",
+ "▁Co l",
+ "▁ Col",
+ "is ter",
+ "ist er",
+ "iste r",
+ "i ster",
+ "▁w ell",
+ "▁we ll",
+ "▁wel l",
+ "▁ well",
+ "▁< /",
+ "▁ ",
+ "ay out",
+ "at ure",
+ "atur e",
+ "atu re",
+ "iv ers",
+ "ive rs",
+ "iver s",
+ "i vers",
+ "z y",
+ "▁н е",
+ "▁ не",
+ "▁m et",
+ "▁me t",
+ "▁ met",
+ "un e",
+ "u ne",
+ "yt h",
+ "y th",
+ "Ty pe",
+ "Typ e",
+ "T ype",
+ "▁e lement",
+ "▁el ement",
+ "▁ele ment",
+ "▁elem ent",
+ "▁ element",
+ "▁l ink",
+ "▁lin k",
+ "▁ link",
+ "mo d",
+ "m od",
+ "▁bet ween",
+ "▁ between",
+ "ce pt",
+ "cep t",
+ "qu ire",
+ "qui re",
+ "▁th rough",
+ "▁thr ough",
+ "▁thro ugh",
+ "▁ through",
+ "▁wh ile",
+ "▁ while",
+ "▁O n",
+ "▁ On",
+ "th e",
+ "t he",
+ "í a",
+ "▁s omething",
+ "▁some thing",
+ "▁som ething",
+ "▁somet hing",
+ "▁ something",
+ "vo l",
+ "v ol",
+ "▁m ost",
+ "▁mo st",
+ "▁mos t",
+ "▁ most",
+ "s c",
+ "us s",
+ "u ss",
+ "▁c ar",
+ "▁ca r",
+ "▁ car",
+ "▁s m",
+ "▁ sm",
+ "▁р о",
+ "▁ ро",
+ "an o",
+ "a no",
+ "le ft",
+ "lef t",
+ "l eft",
+ "v a",
+ "▁tr ue",
+ "▁ true",
+ "( $",
+ "em s",
+ "e ms",
+ "▁m uch",
+ "▁mu ch",
+ "á s",
+ "▁N ew",
+ "▁Ne w",
+ "▁ New",
+ "▁pro per",
+ "▁pr oper",
+ "▁prop er",
+ "er a",
+ "e ra",
+ "it ed",
+ "ite d",
+ "i ted",
+ "▁d oc",
+ "▁do c",
+ "▁ doc",
+ "ic es",
+ "ice s",
+ "i ces",
+ "Th e",
+ "T he",
+ "▁ ?",
+ "ст о",
+ "с то",
+ "f l",
+ "▁s pec",
+ "▁sp ec",
+ "▁spe c",
+ "▁ spec",
+ "en der",
+ "end er",
+ "ende r",
+ "e nder",
+ "wa y",
+ "w ay",
+ "▁s elf",
+ "▁sel f",
+ "▁ self",
+ "▁e ven",
+ "▁ev en",
+ "▁ even",
+ "і в",
+ "▁с е",
+ "▁ се",
+ "ни я",
+ "▁P r",
+ "▁ Pr",
+ "▁k e",
+ "▁ ke",
+ "em b",
+ "e mb",
+ "▁t able",
+ "▁tab le",
+ "▁ta ble",
+ "▁ table",
+ "▁e qu",
+ "▁eq u",
+ "▁ equ",
+ "li ent",
+ "lie nt",
+ "l ient",
+ "t d",
+ "par t",
+ "pa rt",
+ "p art",
+ "▁pr int",
+ "▁pri nt",
+ "▁prin t",
+ "▁ print",
+ "▁u ne",
+ "▁un e",
+ "▁ une",
+ "if y",
+ "▁- >",
+ "▁ ->",
+ "en e",
+ "e ne",
+ "▁m on",
+ "▁mo n",
+ "▁ mon",
+ "▁d ec",
+ "▁de c",
+ "▁ dec",
+ "▁st ill",
+ "▁о б",
+ "▁ об",
+ "▁T r",
+ "▁ Tr",
+ "▁ ф",
+ "if e",
+ "i fe",
+ "is m",
+ "i sm",
+ "b y",
+ "ra w",
+ "r aw",
+ "io r",
+ "i or",
+ "▁m ed",
+ "▁me d",
+ "▁ med",
+ "or ld",
+ "▁com ple",
+ "▁comp le",
+ "▁compl e",
+ "▁ comple",
+ "w w",
+ "▁a rt",
+ "▁ar t",
+ "▁ art",
+ "ro n",
+ "r on",
+ "▁ Г",
+ "▁M y",
+ "▁ My",
+ "▁a ls",
+ "▁al s",
+ "▁ als",
+ "re ct",
+ "rec t",
+ "r ect",
+ "▁a uf",
+ "▁au f",
+ "▁ auf",
+ "▁d own",
+ "▁do wn",
+ "▁dow n",
+ "▁ down",
+ "at her",
+ "ath er",
+ "a ther",
+ "Co l",
+ "C ol",
+ "Te xt",
+ "Tex t",
+ "T ext",
+ "ba ck",
+ "b ack",
+ "$ ,",
+ "▁y ear",
+ "▁ye ar",
+ "▁ year",
+ "м о",
+ "p i",
+ "▁G r",
+ "▁ Gr",
+ "re am",
+ "rea m",
+ "▁re p",
+ "▁r ep",
+ "▁ rep",
+ "b f",
+ "ww w",
+ "w ww",
+ "▁w ur",
+ "▁o rg",
+ "▁or g",
+ "▁ org",
+ "in ter",
+ "int er",
+ "inte r",
+ "▁D ie",
+ "▁Di e",
+ "▁ Die",
+ "▁b eing",
+ "▁be ing",
+ "▁bei ng",
+ "\" .",
+ "la bel",
+ "lab el",
+ "l abel",
+ "▁c ent",
+ "▁ce nt",
+ "▁ cent",
+ "ja va",
+ "jav a",
+ "j ava",
+ "ba r",
+ "b ar",
+ "an te",
+ "ant e",
+ "an a",
+ "a na",
+ "_ _",
+ "▁sol ution",
+ "▁ О",
+ "▁f l",
+ "▁ fl",
+ "▁c reate",
+ "▁cre ate",
+ "▁ create",
+ "ic i",
+ "i ci",
+ "st e",
+ "s te",
+ "yth on",
+ "yt hon",
+ "un t",
+ "u nt",
+ "as on",
+ "aso n",
+ "a son",
+ "fer ence",
+ "fe rence",
+ "S E",
+ "▁n on",
+ "▁no n",
+ "▁ non",
+ "an e",
+ "a ne",
+ "▁in s",
+ "▁i ns",
+ "▁ ins",
+ "ad er",
+ "ade r",
+ "a der",
+ "_{ \\",
+ "_ {\\",
+ "Re s",
+ "R es",
+ "▁m ain",
+ "▁ma in",
+ "▁mai n",
+ "▁ main",
+ "п и",
+ "▁T here",
+ "▁The re",
+ "▁Th ere",
+ "▁Ther e",
+ "▁ There",
+ "▁p our",
+ "▁po ur",
+ "▁pou r",
+ "R O",
+ "` ,",
+ "li sh",
+ "lis h",
+ "l ish",
+ "b ject",
+ "cc ess",
+ "c cess",
+ "▁o rig",
+ "▁or ig",
+ "▁ orig",
+ "is chen",
+ "isch en",
+ "ische n",
+ "isc hen",
+ "i schen",
+ "ow er",
+ "owe r",
+ "o wer",
+ "▁h et",
+ "▁he t",
+ "▁ het",
+ "u c",
+ "▁el se",
+ "▁els e",
+ "▁ else",
+ "» .",
+ "▁о т",
+ "▁ от",
+ "eq u",
+ "e qu",
+ "si ble",
+ "s ible",
+ "te st",
+ "tes t",
+ "t est",
+ "st and",
+ "sta nd",
+ "stan d",
+ "é n",
+ "et s",
+ "e ts",
+ "G E",
+ "id ent",
+ "ide nt",
+ "iden t",
+ "i dent",
+ "▁ е",
+ "▁п ри",
+ "▁пр и",
+ "▁ при",
+ ". ,",
+ "▁d as",
+ "▁da s",
+ "▁ das",
+ "oc k",
+ "o ck",
+ ", \"",
+ "▁v ol",
+ "▁vo l",
+ "▁ vol",
+ "▁f o",
+ "▁ fo",
+ "▁p ara",
+ "▁par a",
+ "▁pa ra",
+ "▁ para",
+ "▁ Т",
+ "▁C ar",
+ "▁Ca r",
+ "▁ Car",
+ "ra l",
+ "r al",
+ "▁S p",
+ "▁ Sp",
+ "va r",
+ "v ar",
+ "▁p lay",
+ "▁pl ay",
+ "▁pla y",
+ "▁ play",
+ "ou se",
+ "ous e",
+ "o use",
+ "▁т а",
+ "▁ та",
+ "ic ally",
+ "ical ly",
+ "▁con tain",
+ "▁cont ain",
+ "pon se",
+ "▁S tring",
+ "▁St ring",
+ "▁Str ing",
+ "▁ String",
+ "á n",
+ "▁b oth",
+ "▁bo th",
+ "▁bot h",
+ "▁ both",
+ "ke n",
+ "k en",
+ "A R",
+ "ер е",
+ "е ре",
+ "▁I l",
+ "▁ Il",
+ "▁is s",
+ "▁i ss",
+ "▁ iss",
+ "▁o pen",
+ "▁op en",
+ "▁ open",
+ "▁ )",
+ "▁W hat",
+ "▁Wh at",
+ "▁ What",
+ "f e",
+ "riv ate",
+ "re g",
+ "r eg",
+ "▁with out",
+ "▁ without",
+ "▁z u",
+ "▁ zu",
+ "vi s",
+ "v is",
+ "fl ow",
+ "f low",
+ "▁h ttp",
+ "▁htt p",
+ "▁ http",
+ "ab ase",
+ "aba se",
+ "a base",
+ "▁w ord",
+ "▁wor d",
+ "▁wo rd",
+ "▁ word",
+ "▁ch ange",
+ "▁chang e",
+ "▁ change",
+ "▁work s",
+ "▁wor ks",
+ "▁ works",
+ "▁g e",
+ "▁ ge",
+ "▁ !",
+ "▁e en",
+ "▁ een",
+ "it le",
+ "▁e vent",
+ "▁even t",
+ "▁ev ent",
+ "▁ event",
+ "wo rd",
+ "wor d",
+ "w ord",
+ "an do",
+ "and o",
+ "S B",
+ "re m",
+ "r em",
+ "▁f ield",
+ "▁fi eld",
+ "▁fiel d",
+ "▁ field",
+ "vi ng",
+ "vin g",
+ "v ing",
+ "Se r",
+ "S er",
+ "▁o ur",
+ "▁ou r",
+ "▁ our",
+ "▁qu i",
+ "▁q ui",
+ "▁ qui",
+ "▁o per",
+ "▁op er",
+ "▁ oper",
+ "▁is t",
+ "▁i st",
+ "▁ ist",
+ "de f",
+ "d ef",
+ "▁m ade",
+ "▁ma de",
+ "▁mad e",
+ "▁ made",
+ "ни е",
+ "p x",
+ "▁m en",
+ "▁me n",
+ "▁ men",
+ "r m",
+ "ai s",
+ "a is",
+ "ce nt",
+ "cen t",
+ "c ent",
+ "li st",
+ "lis t",
+ "l ist",
+ "T o",
+ "▁T o",
+ "▁ To",
+ "j a",
+ "ve rt",
+ "ver t",
+ "v ert",
+ "▁m ar",
+ "▁ma r",
+ "▁ mar",
+ "val ue",
+ "valu e",
+ "▁ „",
+ "\" ;",
+ "▁a us",
+ "▁au s",
+ "▁ aus",
+ "▁B r",
+ "▁ Br",
+ "ol e",
+ "o le",
+ "▁m ult",
+ "▁mu lt",
+ "▁mul t",
+ "▁ mult",
+ "oug ht",
+ "ough t",
+ "▁m at",
+ "▁ma t",
+ "▁ mat",
+ "▁v iew",
+ "▁vi ew",
+ "▁vie w",
+ "▁ view",
+ "fi l",
+ "f il",
+ "▁с о",
+ "▁ со",
+ "г а",
+ "▁v oid",
+ "▁vo id",
+ "▁ void",
+ "▁g ood",
+ "▁go od",
+ "▁ good",
+ "б о",
+ "C T",
+ "▁m any",
+ "▁ma ny",
+ "▁man y",
+ "▁ many",
+ "be n",
+ "b en",
+ "▁в о",
+ "▁ во",
+ "▁к а",
+ "▁ ка",
+ "▁s ystem",
+ "▁sys tem",
+ "▁syst em",
+ "▁ system",
+ "in o",
+ "i no",
+ "▁an other",
+ "▁ano ther",
+ "▁ another",
+ "▁re st",
+ "▁r est",
+ "▁res t",
+ "▁ rest",
+ "us er",
+ "use r",
+ "u ser",
+ "il ity",
+ "ili ty",
+ "a i",
+ "▁m ight",
+ "▁mig ht",
+ "us tom",
+ "ust om",
+ "usto m",
+ "▁or der",
+ "▁ord er",
+ "▁ order",
+ "▁V er",
+ "▁Ve r",
+ "▁ Ver",
+ "S S",
+ "} )",
+ "▁e ff",
+ "▁ eff",
+ "д о",
+ "et t",
+ "e tt",
+ "▁s ign",
+ "▁si gn",
+ "▁sig n",
+ "▁ sign",
+ "м у",
+ "I T",
+ "st ring",
+ "str ing",
+ "s tring",
+ "el le",
+ "ell e",
+ "e lle",
+ "▁s ing",
+ "▁si ng",
+ "▁sin g",
+ "▁ sing",
+ "cu l",
+ "c ul",
+ "▁tr ying",
+ "▁try ing",
+ "▁b eg",
+ "▁be g",
+ "▁ beg",
+ "▁p age",
+ "▁pa ge",
+ "▁pag e",
+ "▁ page",
+ "х о",
+ "▁C an",
+ "▁Ca n",
+ "▁ Can",
+ "▁S er",
+ "▁Se r",
+ "▁ Ser",
+ "+ +",
+ "▁m ust",
+ "▁mus t",
+ "▁mu st",
+ "▁ must",
+ "▁val ues",
+ "▁value s",
+ "▁valu es",
+ "▁ values",
+ "▁k ey",
+ "▁ke y",
+ "▁ key",
+ "ib le",
+ "i ble",
+ "] .",
+ "ir d",
+ "i rd",
+ "▁pro gram",
+ "▁pr ogram",
+ "▁ program",
+ "roll er",
+ "rol ler",
+ "rolle r",
+ "▁c onne",
+ "▁con ne",
+ "▁conn e",
+ "▁ conne",
+ "▁s ay",
+ "▁sa y",
+ "▁ say",
+ "▁p aram",
+ "▁par am",
+ "▁para m",
+ "▁pa ram",
+ "▁ param",
+ "ach e",
+ "ac he",
+ "a che",
+ "ve lop",
+ "vel op",
+ "▁s elect",
+ "▁se lect",
+ "▁sel ect",
+ "▁sele ct",
+ "▁ select",
+ "▁f amil",
+ "▁fa mil",
+ "▁fam il",
+ "▁ famil",
+ "▁l ast",
+ "▁la st",
+ "▁las t",
+ "▁ last",
+ "▁Th anks",
+ "▁Thank s",
+ "▁ Thanks",
+ "▁p op",
+ "▁po p",
+ "▁ pop",
+ "} .",
+ "e q",
+ "▁does n",
+ "[ '",
+ "▁t erm",
+ "▁te rm",
+ "▁ter m",
+ "▁ term",
+ "▁r é",
+ "▁ ré",
+ "▁d ocument",
+ "▁doc ument",
+ "▁ document",
+ "п а",
+ "л у",
+ "at eg",
+ "ate g",
+ ". )",
+ "li ng",
+ "lin g",
+ "l ing",
+ "ion al",
+ "io nal",
+ "iona l",
+ "i onal",
+ "ab les",
+ "able s",
+ "abl es",
+ "a bles",
+ "▁t ak",
+ "▁ta k",
+ "ut ton",
+ "utt on",
+ "utto n",
+ "▁a rg",
+ "▁ar g",
+ "▁ arg",
+ "ty pe",
+ "typ e",
+ "t ype",
+ "▁s ure",
+ "▁su re",
+ "▁sur e",
+ "▁re al",
+ "▁ real",
+ "▁w eb",
+ "▁we b",
+ "▁ web",
+ "▁c urrent",
+ "▁cur rent",
+ "▁curr ent",
+ "▁ current",
+ "▁P l",
+ "▁ Pl",
+ "ch o",
+ "c ho",
+ "ment s",
+ "men ts",
+ "m ents",
+ "▁J oh",
+ "▁Jo h",
+ "ot s",
+ "o ts",
+ "▁ex ist",
+ "▁ exist",
+ "н у",
+ "▁f ür",
+ "▁ für",
+ "▁и з",
+ "▁ из",
+ "d o",
+ "но го",
+ "ног о",
+ "н ого",
+ "▁l as",
+ "▁la s",
+ "▁ las",
+ "▁n ull",
+ "▁nu ll",
+ "▁ null",
+ "▁in form",
+ "▁inf orm",
+ "▁info rm",
+ "▁ Л",
+ "▁v ersion",
+ "▁vers ion",
+ "▁ version",
+ "▁c hang",
+ "▁ch ang",
+ "▁cha ng",
+ "ag er",
+ "age r",
+ "a ger",
+ "▁C omm",
+ "▁Com m",
+ "▁Co mm",
+ "▁ Comm",
+ "л і",
+ "us h",
+ "u sh",
+ "▁G e",
+ "▁ Ge",
+ "▁h igh",
+ "▁hi gh",
+ "▁ high",
+ "▁in put",
+ "▁ input",
+ "og le",
+ "o gle",
+ "ro s",
+ "r os",
+ "bo x",
+ "b ox",
+ "ge n",
+ "g en",
+ "▁s te",
+ "▁st e",
+ "▁ ste",
+ "▁l ocal",
+ "▁lo cal",
+ "▁loc al",
+ "▁ local",
+ "I m",
+ "▁pro cess",
+ "▁proc ess",
+ "▁proces s",
+ "▁ process",
+ "ter nal",
+ "tern al",
+ "t ernal",
+ "iz ed",
+ "ize d",
+ "i zed",
+ "г и",
+ "é t",
+ "▁I nd",
+ "▁In d",
+ "▁ Ind",
+ "▁o ch",
+ "▁oc h",
+ "▁ och",
+ "l t",
+ "▁col umn",
+ "▁ column",
+ "▁t ried",
+ "▁tr ied",
+ "▁tri ed",
+ "▁comm and",
+ "▁comma nd",
+ "▁ command",
+ "▁b est",
+ "▁be st",
+ "▁bes t",
+ "▁ best",
+ "as ter",
+ "ast er",
+ "aste r",
+ "a ster",
+ "з а",
+ "▁p rim",
+ "▁pr im",
+ "▁pri m",
+ "▁ prim",
+ "▁m odel",
+ "▁mod el",
+ "▁mo del",
+ "▁mode l",
+ "▁ model",
+ "▁ і",
+ "▁th ose",
+ "it ies",
+ "iti es",
+ "itie s",
+ "i ties",
+ "è re",
+ "▁р е",
+ "▁ ре",
+ "ј е",
+ "ш и",
+ "qu es",
+ "que s",
+ "q ues",
+ "▁A m",
+ "▁ Am",
+ "▁o wn",
+ "▁ow n",
+ "▁ own",
+ "li n",
+ "l in",
+ "з и",
+ "Val ue",
+ "th ing",
+ "t hing",
+ "▁ ,",
+ "▁T e",
+ "▁ Te",
+ "▁st ud",
+ "▁ stud",
+ "▁u m",
+ "▁ um",
+ "▁ser ver",
+ "▁serv er",
+ "▁serve r",
+ "▁ server",
+ "il le",
+ "ill e",
+ "i lle",
+ "▁p ut",
+ "▁pu t",
+ "▁ put",
+ "at iv",
+ "ati v",
+ "g y",
+ "ов и",
+ "о ви",
+ "ra f",
+ "r af",
+ "ов о",
+ "о во",
+ "▁wur de",
+ "▁W hen",
+ "▁Wh en",
+ "▁Whe n",
+ "▁ When",
+ "▁d iv",
+ "▁di v",
+ "▁ div",
+ "an ts",
+ "ant s",
+ "▁t er",
+ "▁te r",
+ "▁ ter",
+ "▁part ic",
+ "▁parti c",
+ "▁ т",
+ "▁D o",
+ "▁ Do",
+ "▁N o",
+ "▁ No",
+ "se rt",
+ "ser t",
+ "s ert",
+ "id o",
+ "i do",
+ "math cal",
+ "ad e",
+ "a de",
+ "▁I I",
+ "▁ II",
+ "le ar",
+ "lea r",
+ "l ear",
+ "og raph",
+ "o graph",
+ "en se",
+ "ens e",
+ "▁r ow",
+ "▁ro w",
+ "▁ row",
+ "nu m",
+ "n um",
+ "▁pos sible",
+ "▁poss ible",
+ "▁possib le",
+ "▁ possible",
+ "▁s ince",
+ "▁sin ce",
+ "▁ since",
+ "▁B o",
+ "▁ Bo",
+ "ct ions",
+ "ction s",
+ "▁I m",
+ "▁ Im",
+ "O R",
+ "ц і",
+ "▁i de",
+ "▁id e",
+ "▁ ide",
+ "ma p",
+ "m ap",
+ "▁cor rect",
+ "▁corre ct",
+ "▁corr ect",
+ "▁ correct",
+ "ve s",
+ "v es",
+ "ph p",
+ "p hp",
+ "▁out put",
+ "▁ output",
+ "▁P h",
+ "▁ Ph",
+ "A L",
+ "ar ed",
+ "are d",
+ "a red",
+ "\\ \\",
+ "▁im age",
+ "▁imag e",
+ "▁ image",
+ "es ch",
+ "esc h",
+ "e sch",
+ "ж и",
+ "▁con f",
+ "▁ conf",
+ "po r",
+ "p or",
+ "qu ery",
+ "que ry",
+ "quer y",
+ "ur es",
+ "ure s",
+ "u res",
+ "iu m",
+ "i um",
+ "en ds",
+ "end s",
+ "▁A b",
+ "▁ Ab",
+ "SB N",
+ "і д",
+ "et her",
+ "eth er",
+ "ethe r",
+ "e ther",
+ "pt ions",
+ "ption s",
+ "it u",
+ "i tu",
+ "li b",
+ "l ib",
+ "n s",
+ "k i",
+ "▁work ing",
+ "▁wor king",
+ "▁ working",
+ "▁c omo",
+ "▁com o",
+ "▁co mo",
+ "▁ como",
+ "▁T hen",
+ "▁The n",
+ "▁Th en",
+ "▁ Then",
+ "M L",
+ "ke y",
+ "k ey",
+ "cl ass",
+ "cla ss",
+ "c lass",
+ "op le",
+ "o ple",
+ "itt le",
+ "▁m atch",
+ "▁mat ch",
+ "▁ match",
+ "way s",
+ "wa ys",
+ "w ays",
+ "math bb",
+ "▁re quire",
+ "▁requ ire",
+ "▁ require",
+ "al t",
+ "a lt",
+ "▁v is",
+ "▁vi s",
+ "▁ vis",
+ "▁b l",
+ "▁ bl",
+ "▁c alled",
+ "▁cal led",
+ "▁call ed",
+ "▁ called",
+ "It em",
+ "I tem",
+ "ur a",
+ "u ra",
+ "ve c",
+ "v ec",
+ "em e",
+ "e me",
+ "▁d ella",
+ "▁de lla",
+ "▁del la",
+ "▁dell a",
+ "em bre",
+ "emb re",
+ "ur g",
+ "u rg",
+ "S e",
+ "▁re quest",
+ "▁requ est",
+ "▁req uest",
+ "▁ request",
+ "is che",
+ "isch e",
+ "isc he",
+ "i sche",
+ "▁p ort",
+ "▁po rt",
+ "▁por t",
+ "▁ port",
+ "▁inst ead",
+ "= \\",
+ "▁ У",
+ "ho r",
+ "h or",
+ "en te",
+ "ent e",
+ "um e",
+ "u me",
+ "er d",
+ "e rd",
+ "с а",
+ "▁w hy",
+ "▁wh y",
+ "▁ why",
+ "ri st",
+ "ris t",
+ "r ist",
+ "▁p erson",
+ "▁per son",
+ "▁pers on",
+ "▁ person",
+ "▁. ..",
+ "▁.. .",
+ "▁ ...",
+ "▁p rivate",
+ "▁priv ate",
+ "▁ private",
+ "▁t ot",
+ "▁to t",
+ "▁ tot",
+ "ph a",
+ "p ha",
+ "if t",
+ "i ft",
+ "it a",
+ "i ta",
+ "lo c",
+ "l oc",
+ "▁o ld",
+ "▁ol d",
+ "▁ old",
+ "о н",
+ "▁n el",
+ "▁ne l",
+ "▁ nel",
+ "' ]",
+ "t i",
+ "ie t",
+ "i et",
+ "ci te",
+ "cit e",
+ "c ite",
+ "ple ment",
+ "pl ement",
+ "p lement",
+ "▁a bove",
+ "▁ab ove",
+ "▁ above",
+ "k s",
+ "re ady",
+ "read y",
+ "rea dy",
+ "▁c ome",
+ "▁com e",
+ "▁co me",
+ "▁ come",
+ "se ction",
+ "sec tion",
+ "sect ion",
+ "s ection",
+ "▁P ol",
+ "▁Po l",
+ "▁ Pol",
+ "▁w rit",
+ "▁wr it",
+ "▁ writ",
+ "▁htt ps",
+ "▁http s",
+ "▁ https",
+ "▁$ $",
+ "▁ $$",
+ "▁ »",
+ "▁bu ild",
+ "▁ build",
+ "it o",
+ "i to",
+ "▁cons ider",
+ "▁consid er",
+ "af t",
+ "a ft",
+ "Ap p",
+ "A pp",
+ ", \\",
+ "ind ows",
+ "indow s",
+ "indo ws",
+ "com m",
+ "co mm",
+ "c omm",
+ "▁ ;",
+ "gr ound",
+ "gro und",
+ "g round",
+ "▁p lace",
+ "▁pl ace",
+ "▁pla ce",
+ "▁ place",
+ "B y",
+ "▁pro ject",
+ "▁ project",
+ "Ob ject",
+ "Obj ect",
+ "O bject",
+ "▁re pr",
+ "▁rep r",
+ "en ces",
+ "ence s",
+ "enc es",
+ "ind ow",
+ "indo w",
+ "z t",
+ "▁f iles",
+ "▁file s",
+ "▁fil es",
+ "▁fi les",
+ "▁ files",
+ "c z",
+ "iv ity",
+ "ivi ty",
+ "i vity",
+ "▁in it",
+ "▁i nit",
+ "▁ init",
+ "▁p rob",
+ "▁pro b",
+ "▁pr ob",
+ "▁ prob",
+ "▁s k",
+ "▁ sk",
+ "or th",
+ "ort h",
+ "im ent",
+ "ime nt",
+ "imen t",
+ "i ment",
+ "ou ble",
+ "at al",
+ "ata l",
+ "a tal",
+ "ir c",
+ "i rc",
+ "▁ è",
+ "▁b re",
+ "▁br e",
+ "▁ bre",
+ "is ta",
+ "ist a",
+ "i sta",
+ "in put",
+ "▁ И",
+ "но й",
+ "su m",
+ "s um",
+ "pa th",
+ "pat h",
+ "p ath",
+ "▁c our",
+ "▁co ur",
+ "▁cou r",
+ "▁t oo",
+ "▁to o",
+ "▁A d",
+ "▁ Ad",
+ "▁G u",
+ "▁ Gu",
+ "▁f alse",
+ "▁fal se",
+ "▁ false",
+ "▁f un",
+ "▁fu n",
+ "▁ fun",
+ "▁с т",
+ "▁ ст",
+ "oo d",
+ "o od",
+ "è s",
+ "▁e nc",
+ "▁en c",
+ "▁ enc",
+ "bo l",
+ "b ol",
+ "r l",
+ "ar get",
+ "arg et",
+ "or der",
+ "ord er",
+ "orde r",
+ "▁me an",
+ "▁ mean",
+ "п е",
+ "ig en",
+ "ige n",
+ "i gen",
+ "▁п ре",
+ "▁пр е",
+ "▁ пре",
+ "wid th",
+ "w idth",
+ "; \r",
+ "it or",
+ "ito r",
+ "i tor",
+ "▁st ate",
+ "▁stat e",
+ "▁sta te",
+ "▁ state",
+ "▁gre at",
+ "en n",
+ "e nn",
+ "bi n",
+ "b in",
+ "E r",
+ "Mo d",
+ "M od",
+ "o z",
+ "▁w on",
+ "▁wo n",
+ "▁ won",
+ "▁f act",
+ "▁fa ct",
+ "▁fac t",
+ "▁ fact",
+ "▁j ava",
+ "▁ja va",
+ "▁jav a",
+ "▁ java",
+ "▁Un ivers",
+ "▁ Univers",
+ "▁c ap",
+ "▁ca p",
+ "▁ cap",
+ "is tor",
+ "ist or",
+ "isto r",
+ "i stor",
+ "} (",
+ "k u",
+ "it her",
+ "ith er",
+ "i ther",
+ "al es",
+ "ale s",
+ "a les",
+ "▁o u",
+ "▁ ou",
+ "ro ss",
+ "ros s",
+ "r oss",
+ "▁t ake",
+ "▁tak e",
+ "▁ta ke",
+ "▁ take",
+ "ri x",
+ "r ix",
+ "lo b",
+ "l ob",
+ "▁e ine",
+ "▁ein e",
+ "as es",
+ "ase s",
+ "▁a ccess",
+ "▁acc ess",
+ "▁ac cess",
+ "▁ access",
+ "it é",
+ "i té",
+ "is tr",
+ "ist r",
+ "i str",
+ "iz ation",
+ "iza tion",
+ "▁app ro",
+ "▁ap pro",
+ "▁ appro",
+ "ba ll",
+ "bal l",
+ "b all",
+ "▁m ak",
+ "▁ma k",
+ "} ^",
+ "▁C ons",
+ "▁Con s",
+ "▁Co ns",
+ "▁ Cons",
+ "pr ess",
+ "pre ss",
+ "pres s",
+ "p ress",
+ "se rv",
+ "ser v",
+ "s erv",
+ "() .",
+ "( ).",
+ "a f",
+ "▁re f",
+ "▁r ef",
+ "▁ ref",
+ ") \\",
+ "▁cont in",
+ "s u",
+ "iv er",
+ "ive r",
+ "i ver",
+ "▁c ond",
+ "▁con d",
+ "▁co nd",
+ "▁ cond",
+ "▁ex pect",
+ "▁exp ect",
+ "▁ expect",
+ "▁char act",
+ "▁cha ract",
+ "ber t",
+ "be rt",
+ "b ert",
+ "el t",
+ "e lt",
+ "ter s",
+ "te rs",
+ "t ers",
+ "scri pt",
+ "scr ipt",
+ "s cript",
+ "▁E d",
+ "▁ Ed",
+ "ap t",
+ "a pt",
+ "') ;",
+ "' );",
+ "pr int",
+ "▁s ize",
+ "▁si ze",
+ "▁ size",
+ "▁s ich",
+ "▁si ch",
+ "▁sic h",
+ "fa ce",
+ "fac e",
+ "f ace",
+ "en den",
+ "end en",
+ "ende n",
+ "▁A mer",
+ "▁Am er",
+ "▁ Amer",
+ "if ied",
+ "ifi ed",
+ "ifie d",
+ "ó w",
+ "▁S u",
+ "▁ Su",
+ "te s",
+ "t es",
+ "me d",
+ "m ed",
+ "▁R eg",
+ "▁Re g",
+ "▁ Reg",
+ "so le",
+ "sol e",
+ "s ole",
+ "▁in clud",
+ "▁incl ud",
+ "▁inclu d",
+ "▁ includ",
+ "in i",
+ "i ni",
+ "in ci",
+ "inc i",
+ "▁p la",
+ "▁pl a",
+ "▁ pla",
+ "▁l eft",
+ "▁le ft",
+ "▁ left",
+ "d f",
+ "Pa r",
+ "P ar",
+ "▁A ll",
+ "▁Al l",
+ "▁ All",
+ "▁o cc",
+ "▁oc c",
+ "▁ occ",
+ "▁A t",
+ "▁ At",
+ "▁c r",
+ "▁ cr",
+ "Q u",
+ "▁g iven",
+ "▁giv en",
+ "▁give n",
+ "▁gi ven",
+ "▁S ystem",
+ "▁Syst em",
+ "▁ System",
+ "ic an",
+ "ica n",
+ "i can",
+ "▁f inal",
+ "▁fin al",
+ "▁fi nal",
+ "▁ final",
+ "it ions",
+ "ition s",
+ "iti ons",
+ "▁б ы",
+ "▁ бы",
+ "▁per form",
+ "▁perf orm",
+ "▁ perform",
+ "A N",
+ "▁M e",
+ "▁ Me",
+ "ur o",
+ "u ro",
+ "▁T hat",
+ "▁Th at",
+ "▁ That",
+ "г ра",
+ "▁П о",
+ "▁ По",
+ "▁в и",
+ "▁ ви",
+ "ab ly",
+ "abl y",
+ "▁pr esent",
+ "▁pre sent",
+ "▁pres ent",
+ "▁ present",
+ "du ct",
+ "d uct",
+ "ri c",
+ "r ic",
+ "▁E ng",
+ "▁En g",
+ "▁ Eng",
+ "tr y",
+ "t ry",
+ "▁l ar",
+ "▁la r",
+ "▁ lar",
+ "b l",
+ "id d",
+ "i dd",
+ "▁ä r",
+ "▁ är",
+ "or a",
+ "o ra",
+ "L L",
+ "os s",
+ "o ss",
+ "▁I SBN",
+ "▁ ISBN",
+ "▁th ree",
+ "▁thr ee",
+ "▁thre e",
+ "▁ three",
+ "j o",
+ "n í",
+ "r c",
+ "▁f ar",
+ "▁fa r",
+ "▁ far",
+ "▁N ot",
+ "▁No t",
+ "▁ Not",
+ "▁l ittle",
+ "▁litt le",
+ "di s",
+ "d is",
+ "at i",
+ "a ti",
+ "fun ction",
+ "func tion",
+ "f unction",
+ "▁a ble",
+ "▁ab le",
+ "▁ able",
+ "le ss",
+ "les s",
+ "l ess",
+ "с о",
+ "▁p ath",
+ "▁pat h",
+ "▁pa th",
+ "▁ path",
+ "▁p res",
+ "▁pr es",
+ "▁pre s",
+ "▁ pres",
+ "lo se",
+ "los e",
+ "l ose",
+ "P I",
+ "▁iss ue",
+ "▁issu e",
+ "▁ issue",
+ "ack age",
+ "ti me",
+ "tim e",
+ "t ime",
+ "ig e",
+ "i ge",
+ "am s",
+ "a ms",
+ "▁C l",
+ "▁ Cl",
+ "ail s",
+ "ai ls",
+ "a ils",
+ "al k",
+ "i i",
+ "ш е",
+ "pe n",
+ "p en",
+ "Q L",
+ "▁e as",
+ "R L",
+ "ce l",
+ "c el",
+ "▁s l",
+ "▁ sl",
+ "▁a sk",
+ "▁as k",
+ "▁ ask",
+ "▁n om",
+ "▁no m",
+ "▁ nom",
+ "▁t op",
+ "▁to p",
+ "▁ top",
+ "id es",
+ "ide s",
+ "i des",
+ "in dex",
+ "ind ex",
+ "inde x",
+ "é m",
+ "▁h app",
+ "▁ha pp",
+ "o x",
+ "c d",
+ "▁b etter",
+ "▁bet ter",
+ "▁lo ad",
+ "▁ load",
+ "ad os",
+ "ado s",
+ "ze n",
+ "z en",
+ "▁c e",
+ "▁ ce",
+ "▁f a",
+ "▁ fa",
+ "▁J ohn",
+ "▁Joh n",
+ "▁Jo hn",
+ "▁ John",
+ "IM A",
+ "I MA",
+ "▁B ar",
+ "▁Ba r",
+ "▁ Bar",
+ "over flow",
+ "▁д е",
+ "▁ де",
+ "ne ss",
+ "nes s",
+ "n ess",
+ "ce r",
+ "c er",
+ "▁H ere",
+ "▁He re",
+ "▁Her e",
+ "▁ Here",
+ "re t",
+ "r et",
+ "▁s z",
+ "▁ sz",
+ "amb da",
+ "op y",
+ "o py",
+ "ur l",
+ "u rl",
+ "p y",
+ "r t",
+ "▁under stand",
+ "a ł",
+ "he r",
+ "h er",
+ "# #",
+ "▁ch ild",
+ "▁chi ld",
+ "▁ child",
+ "▁ex ec",
+ "▁ exec",
+ "▁app lication",
+ "▁applic ation",
+ "▁ application",
+ "▁st ruct",
+ "▁str uct",
+ "▁stru ct",
+ "▁ struct",
+ "▁ я",
+ "Fil e",
+ "Fi le",
+ "F ile",
+ "▁c ert",
+ "▁ce rt",
+ "▁cer t",
+ "▁ cert",
+ "is on",
+ "iso n",
+ "i son",
+ "▁vari able",
+ "▁ variable",
+ "D E",
+ "r s",
+ "▁re ally",
+ "▁real ly",
+ "Po rt",
+ "P ort",
+ "b a",
+ "▁B er",
+ "▁Be r",
+ "▁ Ber",
+ "▁in te",
+ "▁int e",
+ "▁ inte",
+ "▁st atic",
+ "▁stat ic",
+ "▁stati c",
+ "▁ static",
+ "▁con fig",
+ "▁conf ig",
+ "▁ config",
+ "▁S he",
+ "▁Sh e",
+ "▁ She",
+ "est ions",
+ "estion s",
+ "esti ons",
+ "▁p lus",
+ "▁pl us",
+ "▁ plus",
+ "▁h ab",
+ "▁ha b",
+ "▁ hab",
+ "op e",
+ "o pe",
+ "▁m us",
+ "▁mu s",
+ "▁ mus",
+ "▁c ount",
+ "▁co unt",
+ "▁coun t",
+ "▁cou nt",
+ "▁ count",
+ "M E",
+ "▁su pport",
+ "▁supp ort",
+ "▁sup port",
+ "▁ support",
+ "▁pe ople",
+ "▁ people",
+ "▁b eh",
+ "▁be h",
+ "▁al ready",
+ "T r",
+ "▁d one",
+ "▁do ne",
+ "▁don e",
+ "▁ done",
+ "de m",
+ "d em",
+ "si ze",
+ "s ize",
+ "al pha",
+ "alph a",
+ "▁d isc",
+ "▁di sc",
+ "▁dis c",
+ "] )",
+ "▁M an",
+ "▁Ma n",
+ "▁ Man",
+ "▁m il",
+ "▁mi l",
+ "▁ mil",
+ "▁st and",
+ "▁sta nd",
+ "▁stan d",
+ "▁ stand",
+ "▁gr oup",
+ "▁gro up",
+ "▁ group",
+ "▁sm all",
+ "▁ small",
+ "▁m ag",
+ "▁ma g",
+ "▁ mag",
+ "ст ь",
+ "с ть",
+ "▁de fault",
+ "▁def ault",
+ "▁ default",
+ "▁sing le",
+ "▁sin gle",
+ "▁ single",
+ "lin k",
+ "l ink",
+ "cl ude",
+ "clud e",
+ "▁e ar",
+ "▁ ear",
+ "il ar",
+ "ila r",
+ "i lar",
+ "** **",
+ "*** *",
+ "* ***",
+ "▁f ix",
+ "▁fi x",
+ "▁ fix",
+ "le y",
+ "l ey",
+ "▁p as",
+ "▁pa s",
+ "▁ pas",
+ "ни й",
+ "iss ion",
+ "▁im plement",
+ "▁imp lement",
+ "▁impl ement",
+ "it ch",
+ "▁го да",
+ "▁год а",
+ "▁al ways",
+ "▁ always",
+ "▁J ah",
+ "▁Ja h",
+ "pr ing",
+ "p ring",
+ "ç ão",
+ "pl ate",
+ "pla te",
+ "p late",
+ "▁de scri",
+ "▁des cri",
+ "▁desc ri",
+ "▁h ead",
+ "▁he ad",
+ "▁ head",
+ "in it",
+ "ini t",
+ "i nit",
+ "og raf",
+ "▁qu ery",
+ "▁que ry",
+ "▁quer y",
+ "▁ query",
+ "iv ed",
+ "ive d",
+ "i ved",
+ "▁in g",
+ "▁i ng",
+ "▁ ing",
+ "pt y",
+ "p ty",
+ "h a",
+ "▁m ov",
+ "▁mo v",
+ "▁ mov",
+ "▁ э",
+ "et te",
+ "ett e",
+ "e tte",
+ "il y",
+ "i ly",
+ "▁g ot",
+ "▁go t",
+ "▁ got",
+ "il ed",
+ "ile d",
+ "i led",
+ "ic ro",
+ "i cro",
+ "▁w r",
+ "▁ wr",
+ "р я",
+ "▁n ever",
+ "▁ne ver",
+ "▁nev er",
+ "or es",
+ "ore s",
+ "o res",
+ "▁b as",
+ "▁ba s",
+ "▁ bas",
+ "io s",
+ "i os",
+ "la ck",
+ "lac k",
+ "l ack",
+ "ain t",
+ "ai nt",
+ "a int",
+ "vi ous",
+ "v ious",
+ "▁g ive",
+ "▁giv e",
+ "▁gi ve",
+ "id ad",
+ "ida d",
+ "E n",
+ "ны й",
+ "н ый",
+ "ta ble",
+ "tab le",
+ "t able",
+ "▁Н а",
+ "▁ На",
+ "▁p at",
+ "▁pa t",
+ "▁ pat",
+ "то р",
+ "т ор",
+ "an gu",
+ "ang u",
+ "lo y",
+ "l oy",
+ "▁s eg",
+ "▁se g",
+ "▁ seg",
+ "ar ray",
+ "arr ay",
+ "▁F l",
+ "▁ Fl",
+ "▁in dex",
+ "▁ind ex",
+ "▁inde x",
+ "▁ index",
+ "▁s w",
+ "▁ sw",
+ "IMA GE",
+ "IM AGE",
+ "▁k m",
+ "▁ km",
+ "б и",
+ "Cl ass",
+ "Cla ss",
+ "C lass",
+ "en a",
+ "e na",
+ "ме н",
+ "м ен",
+ "com p",
+ "co mp",
+ "c omp",
+ "at us",
+ "atu s",
+ "ra p",
+ "r ap",
+ "▁L ist",
+ "▁Li st",
+ "▁Lis t",
+ "▁ List",
+ "Er ror",
+ "Err or",
+ "E rror",
+ "▁t yp",
+ "▁ty p",
+ "▁ typ",
+ "▁м а",
+ "▁ ма",
+ "c s",
+ "' :",
+ "j i",
+ "▁How ever",
+ "▁ However",
+ "▁т е",
+ "▁ те",
+ "▁be low",
+ "▁bel ow",
+ "▁ below",
+ "▁A pp",
+ "▁Ap p",
+ "▁ App",
+ "щ е",
+ "} _",
+ "bu m",
+ "b um",
+ "vi r",
+ "v ir",
+ "ée s",
+ "é es",
+ "▁re cord",
+ "▁rec ord",
+ "▁ record",
+ "ta in",
+ "t ain",
+ "le m",
+ "l em",
+ "it al",
+ "ita l",
+ "i tal",
+ "▁i mp",
+ "▁im p",
+ "▁ imp",
+ "eg o",
+ "e go",
+ "▁o d",
+ "▁ od",
+ "▁re ce",
+ "▁rec e",
+ "▁ rece",
+ "mi t",
+ "m it",
+ "ff ic",
+ "f fic",
+ "stack overflow",
+ "ie ve",
+ "iev e",
+ "▁ З",
+ "▁n ov",
+ "▁no v",
+ "▁ nov",
+ "ц е",
+ "▁In tern",
+ "▁Int ern",
+ "▁Inter n",
+ "▁ Intern",
+ "b u",
+ "▁s ugg",
+ "▁su gg",
+ "▁sug g",
+ "▁l oop",
+ "▁lo op",
+ "▁ loop",
+ "ri de",
+ "rid e",
+ "r ide",
+ "▁$ (",
+ "▁ $(",
+ "▁s uper",
+ "▁su per",
+ "▁sup er",
+ "▁ super",
+ "ri d",
+ "r id",
+ "ны х",
+ "н ых",
+ "▁P er",
+ "▁Pe r",
+ "▁ Per",
+ "▁d om",
+ "▁do m",
+ "▁ dom",
+ "= '",
+ "ut sch",
+ "uts ch",
+ "le n",
+ "l en",
+ "▁w rite",
+ "▁writ e",
+ "▁wr ite",
+ "▁ write",
+ "▁in v",
+ "▁ inv",
+ "ou th",
+ "out h",
+ "o uth",
+ "▁H er",
+ "▁He r",
+ "▁ Her",
+ "▁y ears",
+ "▁year s",
+ "▁ye ars",
+ "▁or iginal",
+ "▁orig inal",
+ "▁origin al",
+ "▁ original",
+ "eg a",
+ "e ga",
+ "▁S te",
+ "▁St e",
+ "▁ Ste",
+ "▁se ems",
+ "▁see ms",
+ "▁seem s",
+ "é g",
+ "▁n ext",
+ "▁ne xt",
+ "▁ next",
+ "ed er",
+ "ede r",
+ "e der",
+ "▁N e",
+ "▁ Ne",
+ "av as",
+ "ava s",
+ "a vas",
+ "ific ation",
+ "ifi cation",
+ "ifica tion",
+ "Ex ception",
+ "▁D er",
+ "▁De r",
+ "▁ Der",
+ "▁v e",
+ "▁ ve",
+ "at ic",
+ "ati c",
+ "ha t",
+ "h at",
+ "br ary",
+ "bra ry",
+ "re turn",
+ "ret urn",
+ "ur ch",
+ "is ion",
+ "isi on",
+ "m i",
+ "oi nt",
+ "oin t",
+ "o int",
+ "▁d ay",
+ "▁da y",
+ "▁ day",
+ "ic tion",
+ "ict ion",
+ "i ction",
+ "á l",
+ "▁é s",
+ "▁ és",
+ "▁th ough",
+ "▁thou gh",
+ "▁ though",
+ "ac tion",
+ "act ion",
+ "a ction",
+ "í t",
+ "un gen",
+ "ung en",
+ "unge n",
+ "ou rs",
+ "our s",
+ "o urs",
+ "▁s cript",
+ "▁scr ipt",
+ "▁scri pt",
+ "▁ script",
+ "▁in formation",
+ "▁inform ation",
+ "▁ information",
+ "▁mult i",
+ "▁mul ti",
+ "▁ multi",
+ "▁\\ \\",
+ "▁ \\\\",
+ "st er",
+ "ste r",
+ "s ter",
+ "к е",
+ "A C",
+ "ci es",
+ "cie s",
+ "c ies",
+ "▁dis play",
+ "▁disp lay",
+ "▁ display",
+ "om an",
+ "oma n",
+ "o man",
+ "Tim e",
+ "T ime",
+ "iu s",
+ "i us",
+ ")) ;",
+ ") );",
+ "tr e",
+ "t re",
+ "▁l im",
+ "▁li m",
+ "▁ lim",
+ "at ely",
+ "ate ly",
+ "atel y",
+ "é d",
+ "is te",
+ "ist e",
+ "i ste",
+ "▁с а",
+ "▁ са",
+ "pos t",
+ "po st",
+ "p ost",
+ "ue l",
+ "u el",
+ "im g",
+ "▁ ч",
+ "ск а",
+ "с ка",
+ "el d",
+ "e ld",
+ "pp er",
+ "ppe r",
+ "p per",
+ "ul a",
+ "u la",
+ "▁gener al",
+ "▁gen eral",
+ "▁gene ral",
+ "▁ general",
+ "A l",
+ "For m",
+ "F orm",
+ "▁u pon",
+ "▁up on",
+ "z o",
+ "am ente",
+ "ament e",
+ "amen te",
+ "a mente",
+ "▁p rom",
+ "▁pro m",
+ "▁pr om",
+ "▁ prom",
+ "▁ ü",
+ "le x",
+ "l ex",
+ "▁t urn",
+ "▁tu rn",
+ "▁tur n",
+ "▁ turn",
+ "▁м е",
+ "▁ ме",
+ "en tion",
+ "ent ion",
+ "enti on",
+ "ле н",
+ "л ен",
+ "▁a f",
+ "▁ af",
+ "ic le",
+ "i cle",
+ "ст в",
+ "с тв",
+ "▁F il",
+ "▁ Fil",
+ "▁ Ф",
+ "ava script",
+ "avas cript",
+ "Ma n",
+ "M an",
+ "ar a",
+ "a ra",
+ "wa re",
+ "war e",
+ "w are",
+ "al ign",
+ "ali gn",
+ "an gle",
+ "ang le",
+ "▁S c",
+ "▁ Sc",
+ "un ic",
+ "uni c",
+ "u nic",
+ "▁f ran",
+ "▁fr an",
+ "▁fra n",
+ "▁ fran",
+ "U n",
+ "z i",
+ "me t",
+ "m et",
+ "Ad d",
+ "A dd",
+ "▁p ub",
+ "▁pu b",
+ "▁ pub",
+ "ко в",
+ "к ов",
+ "▁g en",
+ "▁ge n",
+ "▁ gen",
+ "▁p od",
+ "▁po d",
+ "▁ pod",
+ "▁s um",
+ "▁su m",
+ "▁ sum",
+ "▁h aving",
+ "▁ha ving",
+ "▁hav ing",
+ "▁a vec",
+ "▁av ec",
+ "▁ave c",
+ "s l",
+ "▁f ig",
+ "▁fi g",
+ "▁ fig",
+ "▁R es",
+ "▁Re s",
+ "▁ Res",
+ "Dat e",
+ "Da te",
+ "D ate",
+ "ul es",
+ "ule s",
+ "u les",
+ "wi th",
+ "w ith",
+ "ски й",
+ "с кий",
+ "g u",
+ "E T",
+ "▁b ro",
+ "▁br o",
+ "▁ bro",
+ "ri e",
+ "r ie",
+ "ap s",
+ "a ps",
+ "en ding",
+ "end ing",
+ "endi ng",
+ "ma il",
+ "mai l",
+ "m ail",
+ "oo k",
+ "o ok",
+ "▁su ccess",
+ "▁succ ess",
+ "▁suc cess",
+ "▁ success",
+ "ber g",
+ "be rg",
+ "b erg",
+ "▁d eb",
+ "▁de b",
+ "▁ deb",
+ "el ta",
+ "elt a",
+ "() `",
+ "( )`",
+ "ent ial",
+ "enti al",
+ "fr ame",
+ "fra me",
+ "fram e",
+ "f rame",
+ "Ke y",
+ "K ey",
+ "in n",
+ "i nn",
+ "▁sim ple",
+ "▁simp le",
+ "▁simpl e",
+ "▁ simple",
+ "iv al",
+ "iva l",
+ "i val",
+ "▁c are",
+ "▁car e",
+ "▁ca re",
+ "▁ care",
+ "▁W eb",
+ "▁We b",
+ "▁ Web",
+ "\") .",
+ "\" ).",
+ ">< /",
+ "> ",
+ "▁d atabase",
+ "▁data base",
+ "▁dat abase",
+ "▁datab ase",
+ "▁ database",
+ "▁N ow",
+ "▁No w",
+ "▁ Now",
+ "In d",
+ "I nd",
+ "▁м о",
+ "▁ мо",
+ "ch t",
+ "c ht",
+ "ba n",
+ "b an",
+ "ra m",
+ "r am",
+ "equ ation",
+ "sk i",
+ "s ki",
+ "ie f",
+ "i ef",
+ "li m",
+ "l im",
+ "Ge t",
+ "G et",
+ "▁t re",
+ "▁tr e",
+ "▁ tre",
+ "at en",
+ "ate n",
+ "a ten",
+ "be d",
+ "b ed",
+ "▁J e",
+ "▁ Je",
+ "▁result s",
+ "▁ results",
+ "л ю",
+ "те ль",
+ "тел ь",
+ "т ель",
+ "d b",
+ "▁b it",
+ "▁bi t",
+ "▁ bit",
+ "bo dy",
+ "b ody",
+ "Ar ray",
+ "Arr ay",
+ "m u",
+ "pr ession",
+ "press ion",
+ "p ression",
+ "▁с та",
+ "▁ст а",
+ "▁ ста",
+ "on y",
+ "o ny",
+ "if f",
+ "i ff",
+ "▁b ar",
+ "▁ba r",
+ "▁ bar",
+ "▁Ar ch",
+ "▁Arc h",
+ "▁ Arch",
+ "ber s",
+ "be rs",
+ "b ers",
+ ") {",
+ "▁M on",
+ "▁Mo n",
+ "▁ Mon",
+ "▁do ing",
+ "▁doi ng",
+ "▁pro f",
+ "▁pr of",
+ "▁ prof",
+ "▁inst all",
+ "▁instal l",
+ "▁ install",
+ "▁p osition",
+ "▁pos ition",
+ "▁posit ion",
+ "▁ position",
+ "em a",
+ "e ma",
+ "▁} );",
+ "▁}) ;",
+ "▁ });",
+ "Pat h",
+ "Pa th",
+ "P ath",
+ "al i",
+ "a li",
+ "▁& &",
+ "▁ &&",
+ "le v",
+ "l ev",
+ "▁c annot",
+ "▁can not",
+ "▁M ay",
+ "▁Ma y",
+ "▁ May",
+ "in st",
+ "ins t",
+ "- \\",
+ "▁c oun",
+ "▁co un",
+ "▁cou n",
+ "▁a ng",
+ "▁an g",
+ "▁ ang",
+ "▁app ear",
+ "▁appe ar",
+ "co r",
+ "c or",
+ "ci ó",
+ "c ió",
+ "id ed",
+ "ide d",
+ "i ded",
+ "qu estions",
+ "quest ions",
+ "question s",
+ "at ter",
+ "att er",
+ "atte r",
+ "▁P a",
+ "▁ Pa",
+ "se lect",
+ "sel ect",
+ "s elect",
+ "▁pr inci",
+ "▁prin ci",
+ "E vent",
+ "▁s ide",
+ "▁si de",
+ "▁sid e",
+ "▁ side",
+ "▁m em",
+ "▁me m",
+ "▁ mem",
+ "▁J an",
+ "▁Ja n",
+ "▁ Jan",
+ "ar io",
+ "ari o",
+ "a rio",
+ "▁with in",
+ "▁wit hin",
+ "▁V al",
+ "▁Va l",
+ "▁ Val",
+ "ode s",
+ "od es",
+ "o des",
+ "idd le",
+ "ur ation",
+ "ura tion",
+ "br a",
+ "b ra",
+ "▁d ate",
+ "▁da te",
+ "▁dat e",
+ "▁ date",
+ "[ ]",
+ "▁en tre",
+ "▁ent re",
+ "▁entr e",
+ "▁ entre",
+ "il i",
+ "i li",
+ "Port ail",
+ "doc s",
+ "do cs",
+ "d ocs",
+ "ско й",
+ "с кой",
+ "El ement",
+ "E lement",
+ "▁m essage",
+ "▁mess age",
+ "▁ message",
+ "▁n ach",
+ "▁na ch",
+ "▁nac h",
+ "▁ nach",
+ "▁d uring",
+ "▁du ring",
+ "▁dur ing",
+ "▁g ra",
+ "▁gr a",
+ "▁ gra",
+ "et work",
+ "▁B y",
+ "▁ By",
+ "▁t ell",
+ "▁te ll",
+ "▁tel l",
+ "et e",
+ "e te",
+ "~ \\",
+ "▁b is",
+ "▁bi s",
+ "▁ bis",
+ "▁p u",
+ "▁ pu",
+ "▁re d",
+ "▁r ed",
+ "▁ red",
+ "▁t hing",
+ "▁th ing",
+ "▁thin g",
+ "▁ thing",
+ "▁s ort",
+ "▁so rt",
+ "▁sor t",
+ "▁ sort",
+ "xi m",
+ "x im",
+ "ir es",
+ "ire s",
+ "i res",
+ "Use r",
+ "Us er",
+ "U ser",
+ "io d",
+ "i od",
+ "▁E st",
+ "▁Es t",
+ "▁ Est",
+ "os ed",
+ "ose d",
+ "o sed",
+ "ou te",
+ "out e",
+ "o ute",
+ "▁L es",
+ "▁Le s",
+ "▁ Les",
+ "▁s ent",
+ "▁se nt",
+ "▁sen t",
+ "▁ sent",
+ "rib ute",
+ "ribu te",
+ "ut es",
+ "ute s",
+ "u tes",
+ "ist ory",
+ "istor y",
+ "isto ry",
+ "i story",
+ "▁ser vice",
+ "▁serv ice",
+ "▁servi ce",
+ "▁ service",
+ "' ;",
+ "fi eld",
+ "f ield",
+ "▁I N",
+ "▁ IN",
+ "ens ion",
+ "re l",
+ "r el",
+ "▁go ing",
+ "▁ going",
+ "we b",
+ "w eb",
+ "Con text",
+ "Cont ext",
+ "▁l ater",
+ "▁la ter",
+ "▁lat er",
+ "▁late r",
+ "u k",
+ "lay out",
+ "l ayout",
+ "on a",
+ "o na",
+ "á t",
+ "---- ------------",
+ "-------- --------",
+ "------------ ----",
+ "------ ----------",
+ "---------- ------",
+ "▁ex act",
+ "an dom",
+ "and om",
+ "ando m",
+ "▁s ie",
+ "▁si e",
+ "I I",
+ "▁The y",
+ "▁Th ey",
+ "▁ They",
+ "ment e",
+ "men te",
+ "m ente",
+ "ib li",
+ "▁f ine",
+ "▁fin e",
+ "▁fi ne",
+ "U T",
+ "▁de velop",
+ "▁deve lop",
+ "▁ develop",
+ "▁E in",
+ "so ft",
+ "of f",
+ "o ff",
+ "Se t",
+ "S et",
+ "▁a z",
+ "▁ az",
+ "et ers",
+ "eter s",
+ "ete rs",
+ "e ters",
+ "il der",
+ "ild er",
+ "ilde r",
+ "i lder",
+ "ple s",
+ "pl es",
+ "p les",
+ "▁spec ific",
+ "▁ specific",
+ "▁o m",
+ "▁ om",
+ "er ror",
+ "err or",
+ "e rror",
+ "ent ly",
+ "▁fil m",
+ "▁fi lm",
+ "▁ film",
+ "uc k",
+ "u ck",
+ "ain s",
+ "ai ns",
+ "a ins",
+ "ac ión",
+ "ació n",
+ "aci ón",
+ "a ción",
+ "ge s",
+ "g es",
+ "ж а",
+ "▁th ings",
+ "▁thing s",
+ "▁thin gs",
+ "S h",
+ "▁th ought",
+ "▁though t",
+ "▁ad ded",
+ "▁add ed",
+ "▁ added",
+ "de p",
+ "d ep",
+ "ско го",
+ "ск ого",
+ "ског о",
+ "с кого",
+ "▁L i",
+ "▁ Li",
+ "il s",
+ "i ls",
+ "yn c",
+ "y nc",
+ "▁т о",
+ "▁ то",
+ "ri es",
+ "rie s",
+ "r ies",
+ "▁c u",
+ "▁ cu",
+ "ch en",
+ "che n",
+ "c hen",
+ "IO N",
+ "I ON",
+ "▁D es",
+ "▁De s",
+ "▁ Des",
+ "ult ado",
+ "ir t",
+ "i rt",
+ "▁b ased",
+ "▁bas ed",
+ "▁base d",
+ "▁ba sed",
+ "▁ based",
+ "▁m o",
+ "▁ mo",
+ "▁d est",
+ "▁de st",
+ "▁des t",
+ "▁ dest",
+ "pn g",
+ "p ng",
+ "re en",
+ "ree n",
+ "r een",
+ "▁r unning",
+ "▁run ning",
+ "▁ running",
+ "am ma",
+ "amm a",
+ "ou d",
+ "o ud",
+ "▁re fer",
+ "▁ref er",
+ "▁ refer",
+ "io us",
+ "i ous",
+ "▁J ul",
+ "▁Ju l",
+ "▁ Jul",
+ "▁s earch",
+ "▁se arch",
+ "▁ search",
+ "al d",
+ "a ld",
+ "ed e",
+ "e de",
+ "▁w rong",
+ "▁wr ong",
+ "A n",
+ "▁u ntil",
+ "▁un til",
+ "▁ until",
+ "si te",
+ "s ite",
+ "ay er",
+ "aye r",
+ "a yer",
+ "▁on ce",
+ "▁ once",
+ "ar r",
+ "a rr",
+ "▁again st",
+ "== ==",
+ "=== =",
+ "= ===",
+ "▁s ource",
+ "▁ source",
+ "ar n",
+ "a rn",
+ "ap i",
+ "a pi",
+ "▁re present",
+ "▁repr esent",
+ "▁repres ent",
+ "▁repre sent",
+ "▁a ff",
+ "▁af f",
+ "▁ aff",
+ "▁s ein",
+ "▁se in",
+ "▁sei n",
+ "▁ sein",
+ "▁al low",
+ "▁all ow",
+ "▁allo w",
+ "▁ allow",
+ "or mal",
+ "orm al",
+ "en ded",
+ "end ed",
+ "ende d",
+ "▁cont rol",
+ "▁contr ol",
+ "▁contro l",
+ "▁ control",
+ "math bf",
+ "com e",
+ "co me",
+ "c ome",
+ "cu r",
+ "c ur",
+ "en do",
+ "end o",
+ "w a",
+ "▁up date",
+ "▁upd ate",
+ "▁ update",
+ "▁in side",
+ "▁ins ide",
+ "▁ inside",
+ "▁re ason",
+ "▁ reason",
+ "om en",
+ "ome n",
+ "o men",
+ "▁в ы",
+ "▁ вы",
+ "D e",
+ "▁ј е",
+ "▁ је",
+ "s w",
+ "▁s ever",
+ "▁se ver",
+ "O f",
+ "▁inst ance",
+ "▁ instance",
+ "▁m er",
+ "▁me r",
+ "▁ mer",
+ "▁e ffect",
+ "▁eff ect",
+ "▁ effect",
+ "col or",
+ "co lor",
+ "colo r",
+ "ug ust",
+ "il t",
+ "i lt",
+ "de s",
+ "d es",
+ "it z",
+ "i tz",
+ "ul ation",
+ "ula tion",
+ "u lation",
+ "ni e",
+ "n ie",
+ "▁W orld",
+ "▁Wor ld",
+ "▁ World",
+ "▁sim ilar",
+ "▁ similar",
+ "ym bol",
+ "hi ng",
+ "hin g",
+ "h ing",
+ "▁m ark",
+ "▁mar k",
+ "▁ mark",
+ "St ate",
+ "Stat e",
+ "▁cont ent",
+ "▁conten t",
+ "▁conte nt",
+ "▁ content",
+ "▁me ans",
+ "▁mean s",
+ "am ed",
+ "ame d",
+ "a med",
+ "▁E nd",
+ "▁En d",
+ "▁ End",
+ "N D",
+ "co unt",
+ "cou nt",
+ "c ount",
+ "▁In st",
+ "▁Ins t",
+ "▁ Inst",
+ "per ty",
+ "pert y",
+ "ct or",
+ "c tor",
+ "▁{ \\",
+ "▁ {\\",
+ "▁L et",
+ "▁Le t",
+ "▁ Let",
+ "▁! =",
+ "▁ !=",
+ "▁get ting",
+ "▁ getting",
+ "ut h",
+ "u th",
+ "um ber",
+ "umb er",
+ "▁Cons ultado",
+ "sch aft",
+ "sc haft",
+ "le te",
+ "let e",
+ "l ete",
+ "▁W ill",
+ "▁Wil l",
+ "▁Wi ll",
+ "▁ Will",
+ "▁E m",
+ "▁ Em",
+ "he ad",
+ "h ead",
+ "▁l eg",
+ "▁le g",
+ "▁ leg",
+ "но м",
+ "н ом",
+ "O r",
+ "ar m",
+ "a rm",
+ "pon d",
+ "po nd",
+ "p ond",
+ "▁Ch rist",
+ "▁Chris t",
+ "▁Chr ist",
+ "▁ Christ",
+ "▁a round",
+ "▁ar ound",
+ "▁ around",
+ "▁c lear",
+ "▁cl ear",
+ "▁cle ar",
+ "▁ clear",
+ "▁h ref",
+ "▁hr ef",
+ "▁ href",
+ "▁S ee",
+ "▁Se e",
+ "▁ See",
+ "') .",
+ "' ).",
+ "▁cre ated",
+ "▁create d",
+ "▁ created",
+ "▁b utton",
+ "▁but ton",
+ "▁ button",
+ "in ing",
+ "ini ng",
+ "i ning",
+ "▁c lick",
+ "▁cl ick",
+ "▁cli ck",
+ "▁ click",
+ "ia m",
+ "i am",
+ "pl it",
+ "p lit",
+ "F or",
+ "▁p olit",
+ "▁po lit",
+ "▁pol it",
+ "▁ polit",
+ "▁se em",
+ "▁see m",
+ "▁l ife",
+ "▁li fe",
+ "▁lif e",
+ "▁ life",
+ "но в",
+ "н ов",
+ "▁in tern",
+ "▁int ern",
+ "▁inter n",
+ "▁inte rn",
+ "▁ intern",
+ "щ и",
+ "se l",
+ "s el",
+ "so ci",
+ "s oci",
+ "▁s tor",
+ "▁st or",
+ "▁sto r",
+ "▁ stor",
+ "cl e",
+ "c le",
+ "ear ch",
+ "e arch",
+ "and roid",
+ "andro id",
+ "andr oid",
+ "}^ {",
+ "} ^{",
+ "▁e ither",
+ "▁f ew",
+ "▁fe w",
+ "▁init ial",
+ "▁initi al",
+ "▁ initial",
+ "l ength",
+ "ri a",
+ "r ia",
+ "sq l",
+ "s ql",
+ "wi k",
+ "w ik",
+ "▁é t",
+ "▁ ét",
+ "ue r",
+ "u er",
+ "▁val id",
+ "▁ valid",
+ "An d",
+ "A nd",
+ "in clude",
+ "includ e",
+ "ur y",
+ "u ry",
+ "▁s us",
+ "▁su s",
+ "ir ed",
+ "ire d",
+ "i red",
+ "▁A fter",
+ "▁Af ter",
+ "▁ After",
+ "▁d ue",
+ "▁du e",
+ "▁ due",
+ "▁b ei",
+ "▁be i",
+ "▁ bei",
+ "our ces",
+ "ource s",
+ "▁N ov",
+ "▁No v",
+ "▁ Nov",
+ "Ac t",
+ "A ct",
+ "▁C ont",
+ "▁Con t",
+ "▁Co nt",
+ "▁ Cont",
+ "▁bre ak",
+ "▁ break",
+ "es ted",
+ "est ed",
+ "este d",
+ "e sted",
+ "▁act ually",
+ "▁actual ly",
+ "▁actu ally",
+ "el se",
+ "els e",
+ "tm l",
+ "t ml",
+ "re r",
+ "r er",
+ "on es",
+ "one s",
+ "o nes",
+ "▁de sign",
+ "▁des ign",
+ "▁ design",
+ "▁pro perty",
+ "▁proper ty",
+ "▁ property",
+ "ph i",
+ "p hi",
+ "al ity",
+ "ali ty",
+ "oc h",
+ "o ch",
+ "is ts",
+ "ist s",
+ "▁ ·",
+ "ud io",
+ "udi o",
+ "A B",
+ "al a",
+ "a la",
+ "ion es",
+ "io nes",
+ "ione s",
+ "i ones",
+ "ф и",
+ "fin d",
+ "fi nd",
+ "f ind",
+ "A s",
+ "▁c ustom",
+ "▁cust om",
+ "▁ custom",
+ "▁a nn",
+ "▁an n",
+ "▁ ann",
+ "E S",
+ "O T",
+ "l ambda",
+ "▁i dent",
+ "▁id ent",
+ "▁ide nt",
+ "▁ ident",
+ "▁or gan",
+ "▁org an",
+ "▁ organ",
+ "▁C ent",
+ "▁Ce nt",
+ "▁ Cent",
+ "▁C har",
+ "▁Ch ar",
+ "▁Cha r",
+ "▁ Char",
+ "▁o s",
+ "▁ os",
+ "▁h ard",
+ "▁ha rd",
+ "▁har d",
+ "▁ hard",
+ "ро в",
+ "р ов",
+ "▁/ >",
+ "▁ />",
+ "k o",
+ "▁ex per",
+ "▁exp er",
+ "▁se par",
+ "▁sep ar",
+ "▁ separ",
+ "y l",
+ "ou rn",
+ "our n",
+ "o urn",
+ "▁d ev",
+ "▁de v",
+ "▁ dev",
+ "▁a uch",
+ "▁au ch",
+ "▁auc h",
+ "▁ auch",
+ "▁b lock",
+ "▁bl ock",
+ "▁blo ck",
+ "▁ block",
+ "bo ok",
+ "b ook",
+ "▁m ap",
+ "▁ma p",
+ "▁ map",
+ "il la",
+ "ill a",
+ "i lla",
+ "▁com put",
+ "▁comp ut",
+ "▁ comput",
+ "▁s pace",
+ "▁sp ace",
+ "▁spac e",
+ "▁ space",
+ "res ult",
+ ") }",
+ "▁e cho",
+ "▁ec ho",
+ "▁ echo",
+ "con fig",
+ "conf ig",
+ "h i",
+ "▁lar ge",
+ "▁larg e",
+ "▁ large",
+ "▁w idth",
+ "▁wid th",
+ "▁ width",
+ "▁G o",
+ "▁ Go",
+ "ma t",
+ "m at",
+ "▁d iff",
+ "▁di ff",
+ "▁dif f",
+ "▁ diff",
+ "▁k ind",
+ "▁ki nd",
+ "▁kin d",
+ "▁ kind",
+ "an ces",
+ "ance s",
+ "anc es",
+ "yn am",
+ "yna m",
+ "y nam",
+ "▁col or",
+ "▁co lor",
+ "▁ color",
+ "In t",
+ "I nt",
+ "so l",
+ "s ol",
+ "▁p i",
+ "▁ pi",
+ "▁char acter",
+ "▁charact er",
+ "▁ character",
+ "om ent",
+ "ome nt",
+ "omen t",
+ "o ment",
+ "▁res ponse",
+ "▁respons e",
+ "▁ response",
+ "ig ma",
+ "ward s",
+ "war ds",
+ "w ards",
+ "ar row",
+ "arr ow",
+ "с у",
+ "ti es",
+ "t ies",
+ "▁ü ber",
+ "▁ über",
+ "Im age",
+ "y d",
+ "▁п ере",
+ "▁пер е",
+ "▁пе ре",
+ "▁ пере",
+ "▁n ode",
+ "▁no de",
+ "▁nod e",
+ "▁ node",
+ "▁it em",
+ "▁i tem",
+ "▁ item",
+ "ach ine",
+ "achi ne",
+ "im a",
+ "i ma",
+ "▁v a",
+ "▁ va",
+ "▁appro ach",
+ "▁w er",
+ "▁we r",
+ "▁ wer",
+ "▁ч е",
+ "▁ че",
+ "O n",
+ "ol low",
+ "oll ow",
+ "он а",
+ "о на",
+ "ct ed",
+ "c ted",
+ "ur ed",
+ "ure d",
+ "u red",
+ "Cont roller",
+ "Control ler",
+ "li ed",
+ "lie d",
+ "l ied",
+ "▁j o",
+ "▁ jo",
+ "▁d al",
+ "▁da l",
+ "▁ dal",
+ "un k",
+ "▁ î",
+ "st art",
+ "sta rt",
+ "star t",
+ "ol a",
+ "o la",
+ "▁com pon",
+ "▁comp on",
+ "I C",
+ "bi t",
+ "b it",
+ "▁b ase",
+ "▁bas e",
+ "▁ba se",
+ "▁ base",
+ "п у",
+ "▁id ea",
+ "▁ide a",
+ "▁ idea",
+ "▁d ire",
+ "▁di re",
+ "▁dir e",
+ "▁ dire",
+ "▁r ad",
+ "▁ra d",
+ "▁ rad",
+ "gr oup",
+ "gro up",
+ "▁W ith",
+ "▁Wi th",
+ "▁Wit h",
+ "▁ With",
+ "ser ver",
+ "serv er",
+ "serve r",
+ "si de",
+ "s ide",
+ "si ng",
+ "sin g",
+ "s ing",
+ "▁d ies",
+ "▁di es",
+ "▁die s",
+ "▁n ear",
+ "▁ne ar",
+ "▁ near",
+ "▁v oor",
+ "▁vo or",
+ "▁ voor",
+ "▁arg ument",
+ "▁ argument",
+ "▁} ,",
+ "▁ },",
+ "▁l and",
+ "▁la nd",
+ "▁lan d",
+ "▁ land",
+ "▁n ames",
+ "▁name s",
+ "▁na mes",
+ "▁nam es",
+ "▁ names",
+ "▁o ption",
+ "▁op tion",
+ "▁opt ion",
+ "▁ option",
+ "ith ub",
+ "pp ed",
+ "ppe d",
+ "p ped",
+ "au g",
+ "a ug",
+ "▁l inks",
+ "▁link s",
+ "▁lin ks",
+ "▁ links",
+ "▁f ull",
+ "▁fu ll",
+ "▁ful l",
+ "▁ full",
+ "▁s itu",
+ "▁si tu",
+ "▁sit u",
+ "▁con sole",
+ "▁cons ole",
+ "▁ console",
+ "▁e tc",
+ "▁et c",
+ "▁ etc",
+ "au x",
+ "a ux",
+ "▁C or",
+ "▁Co r",
+ "▁ Cor",
+ "icro soft",
+ "▁c ame",
+ "▁cam e",
+ "▁ca me",
+ "lo cal",
+ "loc al",
+ "l ocal",
+ "▁k nown",
+ "▁kn own",
+ "▁know n",
+ "▁ known",
+ "▁multi ple",
+ "▁multip le",
+ "▁ multiple",
+ "angu age",
+ "▁t otal",
+ "▁to tal",
+ "▁tot al",
+ "▁ total",
+ "ol ogy",
+ "olog y",
+ "olo gy",
+ "ä t",
+ "▁ Х",
+ "▁f re",
+ "▁fr e",
+ "▁ fre",
+ "▁t en",
+ "▁te n",
+ "▁ ten",
+ "ide o",
+ "▁b es",
+ "▁be s",
+ "▁ bes",
+ "tr ue",
+ "Qu ery",
+ "Que ry",
+ "om m",
+ "o mm",
+ "▁A rt",
+ "▁Ar t",
+ "▁ Art",
+ "▁ke ep",
+ "▁ keep",
+ "▁Un iversity",
+ "▁Univers ity",
+ "re ate",
+ "rea te",
+ "pp ort",
+ "ppo rt",
+ "p port",
+ "▁p ython",
+ "▁ python",
+ "tr a",
+ "t ra",
+ "ect or",
+ "ec tor",
+ "e ctor",
+ "р і",
+ "op h",
+ "o ph",
+ "▁c onc",
+ "▁con c",
+ "▁co nc",
+ "▁f our",
+ "▁fo ur",
+ "▁fou r",
+ "▁ four",
+ "vi ron",
+ "vir on",
+ "▁v ia",
+ "▁vi a",
+ "▁ via",
+ "? \"",
+ "im age",
+ "ima ge",
+ "ol l",
+ "o ll",
+ "ны е",
+ "н ые",
+ "▁con text",
+ "▁cont ext",
+ "▁conte xt",
+ "▁ context",
+ "▁s em",
+ "▁se m",
+ "▁ sem",
+ ". _",
+ "▁e ng",
+ "▁en g",
+ "▁ eng",
+ "ma r",
+ "m ar",
+ "A D",
+ "▁m or",
+ "▁mo r",
+ "▁ mor",
+ "▁C al",
+ "▁Ca l",
+ "▁ Cal",
+ "▁c ell",
+ "▁ce ll",
+ "▁cel l",
+ "▁ cell",
+ "im al",
+ "ima l",
+ "i mal",
+ "AT E",
+ "A TE",
+ "▁in f",
+ "▁ inf",
+ "ö n",
+ "uf fer",
+ "uff er",
+ "s q",
+ ".. ..",
+ "... .",
+ ". ...",
+ "▁z ur",
+ "▁zu r",
+ "W ith",
+ "ра н",
+ "р ан",
+ "ch n",
+ "c hn",
+ "▁d oor",
+ "▁do or",
+ "▁ door",
+ "cont ent",
+ "▁m iss",
+ "▁mi ss",
+ "▁mis s",
+ "▁ miss",
+ "▁s imp",
+ "▁sim p",
+ "▁si mp",
+ "▁ simp",
+ "á r",
+ "ir a",
+ "i ra",
+ "▁h at",
+ "▁ha t",
+ "▁ hat",
+ "Te st",
+ "T est",
+ "▁c ertain",
+ "▁cert ain",
+ "▁cer tain",
+ "▁ certain",
+ "N S",
+ "▁c ho",
+ "▁ch o",
+ "▁ cho",
+ "▁ad v",
+ "▁ adv",
+ "wh ere",
+ "w here",
+ "▁lo oking",
+ "▁look ing",
+ "▁ looking",
+ "▁t imes",
+ "▁time s",
+ "▁tim es",
+ "▁ti mes",
+ "▁ times",
+ "ни х",
+ "н их",
+ "ut o",
+ "u to",
+ "▁ É",
+ "ca n",
+ "c an",
+ "ho st",
+ "hos t",
+ "h ost",
+ "▁( *",
+ "▁ (*",
+ "lo at",
+ "▁n icht",
+ "▁ni cht",
+ "▁nic ht",
+ "▁nich t",
+ "Fi eld",
+ "F ield",
+ "bu rg",
+ "bur g",
+ "b urg",
+ "con st",
+ "cons t",
+ "ad es",
+ "ade s",
+ "a des",
+ "▁M us",
+ "▁Mu s",
+ "▁ Mus",
+ "▁n othing",
+ "▁not hing",
+ "▁no thing",
+ "▁ nothing",
+ "▁in cre",
+ "▁inc re",
+ "▁M in",
+ "▁Mi n",
+ "▁ Min",
+ "▁p ower",
+ "▁po wer",
+ "▁pow er",
+ "▁ power",
+ "▁Amer ican",
+ "▁America n",
+ "▁ American",
+ "l n",
+ "val id",
+ "un gs",
+ "ung s",
+ "▁N ational",
+ "▁Nat ional",
+ "▁Nation al",
+ "▁ National",
+ "▁S an",
+ "▁Sa n",
+ "▁ San",
+ "▁Y ork",
+ "Re quest",
+ "ch ar",
+ "cha r",
+ "c har",
+ "▁Z e",
+ "▁ Ze",
+ "but ton",
+ "b utton",
+ "▁a lg",
+ "▁al g",
+ "▁ alg",
+ "SO N",
+ "S ON",
+ "▁a p",
+ "▁ ap",
+ "uf f",
+ "u ff",
+ "ab ility",
+ "abil ity",
+ "е м",
+ "▁any thing",
+ "el a",
+ "e la",
+ "() )",
+ "( ))",
+ "б а",
+ "amp ion",
+ "ampio n",
+ "▁p ot",
+ "▁po t",
+ "▁ pot",
+ "▁f ut",
+ "▁fu t",
+ "ail able",
+ "▁p rop",
+ "▁pro p",
+ "▁pr op",
+ "▁ prop",
+ "\" ]",
+ "▁l ess",
+ "▁le ss",
+ "▁les s",
+ "▁ less",
+ "la g",
+ "l ag",
+ "▁A ugust",
+ "▁Aug ust",
+ "▁ August",
+ "I t",
+ "▁p lease",
+ "▁ple ase",
+ "▁st yle",
+ "▁sty le",
+ "▁ style",
+ "▁Al so",
+ "▁Als o",
+ "▁ Also",
+ "b t",
+ "▁pro bably",
+ "▁prob ably",
+ "▁O ne",
+ "▁On e",
+ "▁ One",
+ "▁p oss",
+ "▁po ss",
+ "▁pos s",
+ "▁ poss",
+ "U I",
+ "ui t",
+ "u it",
+ "▁W est",
+ "▁We st",
+ "▁Wes t",
+ "▁ West",
+ "h n",
+ "+ \\",
+ "But ton",
+ "Butt on",
+ "B utton",
+ "js on",
+ "j son",
+ "er r",
+ "e rr",
+ "ra me",
+ "ram e",
+ "r ame",
+ "do m",
+ "d om",
+ "il on",
+ "ilo n",
+ "i lon",
+ "al f",
+ "▁c lient",
+ "▁cl ient",
+ "▁cli ent",
+ "▁ client",
+ "▁cont inu",
+ "▁contin u",
+ "▁ continu",
+ "x ml",
+ "pe c",
+ "p ec",
+ "ad or",
+ "ado r",
+ "a dor",
+ "l s",
+ "▁how ever",
+ "▁A ny",
+ "▁An y",
+ "▁ Any",
+ "än d",
+ "ä nd",
+ "math rm",
+ "▁u rl",
+ "▁ur l",
+ "▁ url",
+ "▁b ook",
+ "▁bo ok",
+ "▁ book",
+ "▁g l",
+ "▁ gl",
+ "iv es",
+ "ive s",
+ "i ves",
+ "g i",
+ "▁t ro",
+ "▁tr o",
+ "▁U S",
+ "▁ US",
+ "po int",
+ "p oint",
+ "op en",
+ "ope n",
+ "o pen",
+ "▁c ur",
+ "▁cu r",
+ "▁ cur",
+ "▁e ra",
+ "▁er a",
+ "▁ era",
+ "▁part icular",
+ "▁partic ular",
+ "▁particul ar",
+ "▁parti cular",
+ "▁H T",
+ "▁ HT",
+ "oo t",
+ "o ot",
+ "el lo",
+ "ell o",
+ "lo bal",
+ "lob al",
+ "▁a ction",
+ "▁act ion",
+ "▁ac tion",
+ "▁ action",
+ "▁I nt",
+ "▁In t",
+ "▁ Int",
+ "▁in clude",
+ "▁incl ude",
+ "▁includ e",
+ "▁inclu de",
+ "▁ include",
+ "▁el ements",
+ "▁element s",
+ "▁ele ments",
+ "▁elem ents",
+ "▁ elements",
+ "на я",
+ "ar ds",
+ "ard s",
+ "▁B l",
+ "▁ Bl",
+ "▁h um",
+ "▁hu m",
+ "▁ hum",
+ "fr om",
+ "f rom",
+ "ch ange",
+ "chan ge",
+ "▁function s",
+ "▁fun ctions",
+ "▁ functions",
+ "he n",
+ "h en",
+ "Ser vice",
+ "Serv ice",
+ "▁he ight",
+ "▁ height",
+ "▁L and",
+ "▁La nd",
+ "▁Lan d",
+ "▁ Land",
+ "ia s",
+ "i as",
+ "g s",
+ "ió n",
+ "i ón",
+ "ло в",
+ "л ов",
+ "no de",
+ "n ode",
+ ". ”",
+ "ha nd",
+ "han d",
+ "h and",
+ "▁б у",
+ "▁ бу",
+ "▁a mb",
+ "▁am b",
+ "▁ amb",
+ "▁L u",
+ "▁ Lu",
+ "▁th row",
+ "▁thr ow",
+ "▁thro w",
+ "▁ throw",
+ "▁m ot",
+ "▁mo t",
+ "▁ mot",
+ "▁A ct",
+ "▁Ac t",
+ "▁ Act",
+ "▁w orld",
+ "▁wor ld",
+ "▁ world",
+ "_ \\",
+ "ba se",
+ "bas e",
+ "b ase",
+ "▁C o",
+ "▁ Co",
+ "▁ar ch",
+ "▁arc h",
+ "▁ arch",
+ "▁## ##",
+ "▁### #",
+ "▁ ####",
+ "ge d",
+ "g ed",
+ "pr il",
+ "p ril",
+ "ol der",
+ "old er",
+ "o lder",
+ "Mod el",
+ "Mode l",
+ "Mo del",
+ "M odel",
+ "▁sever al",
+ "li e",
+ "l ie",
+ "che ck",
+ "c heck",
+ "] {",
+ "con s",
+ "co ns",
+ "c ons",
+ "▁T ra",
+ "▁Tr a",
+ "▁ Tra",
+ "he ck",
+ "▁l east",
+ "▁le ast",
+ "do wn",
+ "d own",
+ "eb ru",
+ "e bru",
+ "De f",
+ "D ef",
+ "par am",
+ "pa ram",
+ "para m",
+ "p aram",
+ "is cher",
+ "isch er",
+ "ische r",
+ "isc her",
+ "i scher",
+ "▁c as",
+ "▁ca s",
+ "▁ cas",
+ "C H",
+ "▁add ress",
+ "▁addr ess",
+ "▁ address",
+ "▁ра з",
+ "▁ раз",
+ "uf en",
+ "ufe n",
+ "u fen",
+ "ur ope",
+ "uro pe",
+ "urop e",
+ "е й",
+ "▁b ound",
+ "▁bo und",
+ "▁bou nd",
+ "▁ bound",
+ "C O",
+ "▁A ng",
+ "▁An g",
+ "▁ Ang",
+ "▁M a",
+ "▁ Ma",
+ "In dex",
+ "Ind ex",
+ "co re",
+ "cor e",
+ "c ore",
+ "ou ch",
+ "ouc h",
+ "o uch",
+ "at abase",
+ "ata base",
+ "rib ution",
+ "ribu tion",
+ "doc ument",
+ "d ocument",
+ "L e",
+ "}_ {",
+ "} _{",
+ "ve rn",
+ "ver n",
+ "v ern",
+ "▁stat ement",
+ "▁state ment",
+ "▁ statement",
+ "▁B rit",
+ "▁Br it",
+ "on o",
+ "o no",
+ "ps ilon",
+ "psi lon",
+ "▁le vel",
+ "▁lev el",
+ "▁ level",
+ "▁pro duct",
+ "▁produ ct",
+ "▁prod uct",
+ "▁ product",
+ "I S",
+ "▁c ourse",
+ "▁cour se",
+ "▁cours e",
+ "▁ course",
+ "▁M r",
+ "▁ Mr",
+ "> \r",
+ "▁back ground",
+ "▁ background",
+ "▁re t",
+ "▁r et",
+ "▁ ret",
+ "er ing",
+ "eri ng",
+ "e ring",
+ "mo st",
+ "mos t",
+ "m ost",
+ "сь ко",
+ "ськ о",
+ "▁th read",
+ "▁thr ead",
+ "▁thre ad",
+ "▁ thread",
+ "it ional",
+ "ition al",
+ "iti onal",
+ "it es",
+ "ite s",
+ "i tes",
+ "P l",
+ "▁d os",
+ "▁do s",
+ "g a",
+ "da y",
+ "d ay",
+ "▁G ener",
+ "▁Ge ner",
+ "▁Gen er",
+ "▁Gene r",
+ "▁ Gener",
+ "▁t w",
+ "▁ tw",
+ "A d",
+ "\"> <",
+ "\" ><",
+ "▁( $",
+ "▁ ($",
+ "▁m oment",
+ "▁mo ment",
+ "▁mom ent",
+ "tit le",
+ "t itle",
+ "cre ate",
+ "c reate",
+ "vers ion",
+ "v ersion",
+ "Man ager",
+ "▁f ur",
+ "▁fu r",
+ "▁ fur",
+ "pp ing",
+ "ppi ng",
+ "p ping",
+ "ij n",
+ "о с",
+ "▁r ather",
+ "▁ra ther",
+ "▁rat her",
+ "pt ember",
+ "O S",
+ "▁s ite",
+ "▁si te",
+ "▁sit e",
+ "▁ site",
+ "▁c aus",
+ "▁ca us",
+ "an i",
+ "a ni",
+ "▁h ome",
+ "▁hom e",
+ "▁ho me",
+ "▁ home",
+ "м і",
+ "▁sh ort",
+ "▁sho rt",
+ "▁ short",
+ "p a",
+ "▁l ead",
+ "▁le ad",
+ "is hed",
+ "ish ed",
+ "ci ng",
+ "cin g",
+ "c ing",
+ "or ding",
+ "ord ing",
+ "ordin g",
+ "▁p rote",
+ "▁pro te",
+ "▁pr ote",
+ "▁prot e",
+ "▁ prote",
+ "с ле",
+ "LE CT",
+ "L ECT",
+ "▁di dn",
+ "▁did n",
+ "pos ition",
+ "p osition",
+ "\", \"",
+ "\" ,\"",
+ "() ,",
+ "( ),",
+ "tr ans",
+ "tra ns",
+ "▁l ot",
+ "▁lo t",
+ "▁ lot",
+ "▁о д",
+ "▁ од",
+ "A S",
+ "▁s at",
+ "▁sa t",
+ "▁po ints",
+ "▁point s",
+ "▁ points",
+ "g ithub",
+ "st yle",
+ "sty le",
+ "▁го ду",
+ "▁год у",
+ "▁D is",
+ "▁Di s",
+ "▁ Dis",
+ "pon ent",
+ "om et",
+ "ome t",
+ "o met",
+ "ze r",
+ "z er",
+ "UL L",
+ "U LL",
+ "▁p a",
+ "▁ pa",
+ "A P",
+ "ac es",
+ "ace s",
+ "a ces",
+ "▁Un ited",
+ "▁Unit ed",
+ "am a",
+ "a ma",
+ "et y",
+ "e ty",
+ "Col or",
+ "Co lor",
+ "▁en ough",
+ "U S",
+ "▁l ength",
+ "▁leng th",
+ "▁ length",
+ "() );",
+ "()) ;",
+ "( ));",
+ "^{ \\",
+ "^ {\\",
+ "ft y",
+ "f ty",
+ "Bo x",
+ "B ox",
+ "ap ter",
+ "apt er",
+ "▁comp let",
+ "▁comple t",
+ "▁compl et",
+ "ни к",
+ "ma x",
+ "m ax",
+ "ob ject",
+ "obj ect",
+ "o bject",
+ "( {",
+ "img ur",
+ "it ive",
+ "iti ve",
+ "un ch",
+ "unc h",
+ "▁S ub",
+ "▁Su b",
+ "▁ Sub",
+ "en de",
+ "end e",
+ "e nde",
+ "г у",
+ "ateg ory",
+ "ategor y",
+ "т ы",
+ "ia no",
+ "ian o",
+ "i ano",
+ "▁u pd",
+ "▁up d",
+ "▁A ust",
+ "▁Aus t",
+ "▁Au st",
+ "}{ \\",
+ "} {\\",
+ "to p",
+ "t op",
+ "la s",
+ "l as",
+ "pi s",
+ "p is",
+ "in ess",
+ "ine ss",
+ "ines s",
+ "i ness",
+ "▁{ \r",
+ "▁ {\r",
+ "▁ Е",
+ "G r",
+ "▁A S",
+ "▁ AS",
+ "▁в е",
+ "▁ ве",
+ "th ers",
+ "ther s",
+ "the rs",
+ "▁d efined",
+ "▁def ined",
+ "▁define d",
+ "▁defin ed",
+ "▁ defined",
+ "az ione",
+ "azi one",
+ "a zione",
+ "▁o ffic",
+ "▁of fic",
+ "▁off ic",
+ "▁au tom",
+ "▁aut om",
+ "▁auto m",
+ "▁ autom",
+ "ü n",
+ "▁b row",
+ "▁br ow",
+ "▁bro w",
+ "▁ brow",
+ "▁s erv",
+ "▁se rv",
+ "▁ser v",
+ "▁ serv",
+ "▁re move",
+ "▁rem ove",
+ "▁remov e",
+ "▁ remove",
+ "ir o",
+ "i ro",
+ "▁B ibli",
+ "▁Bib li",
+ "E D",
+ "▁w hole",
+ "▁wh ole",
+ "▁who le",
+ "▁ ш",
+ "▁J ava",
+ "▁Ja va",
+ "▁ Java",
+ "▁z um",
+ "▁zu m",
+ "u a",
+ "p m",
+ "de v",
+ "d ev",
+ "к ра",
+ "ol ds",
+ "old s",
+ "▁W ar",
+ "▁Wa r",
+ "ä n",
+ "pa ss",
+ "pas s",
+ "p ass",
+ "u z",
+ "[ \"",
+ "▁t ri",
+ "▁tr i",
+ "▁ tri",
+ "is ed",
+ "ise d",
+ "i sed",
+ "х а",
+ "▁mem ory",
+ "▁memor y",
+ "▁ memory",
+ "▁P ort",
+ "▁Po rt",
+ "▁Por t",
+ "▁ Port",
+ "op er",
+ "ope r",
+ "o per",
+ "U p",
+ "▁Th ank",
+ "▁ Thank",
+ "▁M ich",
+ "▁Mi ch",
+ "▁Mic h",
+ "▁ Mich",
+ "yc h",
+ "y ch",
+ "bo ard",
+ "boa rd",
+ "б у",
+ "In st",
+ "▁b egin",
+ "▁be gin",
+ "▁beg in",
+ "▁ begin",
+ "in ation",
+ "ina tion",
+ "▁M od",
+ "▁Mo d",
+ "▁ Mod",
+ "_ ,",
+ "▁D en",
+ "▁De n",
+ "▁ Den",
+ "op tion",
+ "opt ion",
+ "o ption",
+ "▁con struct",
+ "▁const ruct",
+ "▁constru ct",
+ "▁ construct",
+ "▁J ust",
+ "▁Ju st",
+ "▁ Just",
+ "Ma p",
+ "M ap",
+ "ru n",
+ "r un",
+ "▁re spect",
+ "▁res pect",
+ "▁resp ect",
+ "ha m",
+ "h am",
+ "ма н",
+ "м ан",
+ "im edia",
+ "ime dia",
+ "i media",
+ "▁a pply",
+ "▁app ly",
+ "▁ap ply",
+ "▁ apply",
+ "cri ption",
+ "cript ion",
+ "ma in",
+ "mai n",
+ "m ain",
+ "▁К а",
+ "▁ Ка",
+ "oi d",
+ "o id",
+ "Co de",
+ "C ode",
+ "} ;",
+ "In fo",
+ "Inf o",
+ "▁for mat",
+ "▁form at",
+ "▁forma t",
+ "▁ format",
+ "Lo g",
+ "L og",
+ "▁с у",
+ "▁ су",
+ "▁l at",
+ "▁la t",
+ "▁ lat",
+ "ut or",
+ "uto r",
+ "u tor",
+ "▁re ference",
+ "▁refer ence",
+ "▁ reference",
+ "▁cal cul",
+ "▁calc ul",
+ "▁ calcul",
+ "on n",
+ "o nn",
+ "L o",
+ "in fty",
+ "inf ty",
+ "▁a long",
+ "▁al ong",
+ "▁ č",
+ "▁t ask",
+ "▁ta sk",
+ "▁ task",
+ "▁e v",
+ "▁ ev",
+ "th eta",
+ "the ta",
+ "ra s",
+ "r as",
+ "jo r",
+ "j or",
+ "▁б о",
+ "▁ бо",
+ "▁princi p",
+ "▁prin cip",
+ "M y",
+ "▁e iner",
+ "▁ein er",
+ "▁eine r",
+ "▁E s",
+ "▁ Es",
+ "om b",
+ "o mb",
+ "qu ad",
+ "qua d",
+ "^{ -",
+ "^ {-",
+ "um p",
+ "u mp",
+ "▁t ill",
+ "▁til l",
+ "▁ti ll",
+ "д і",
+ "▁lo oks",
+ "▁look s",
+ "▁o k",
+ "▁ ok",
+ "ц а",
+ "n u",
+ "Fi l",
+ "F il",
+ "▁s ont",
+ "▁so nt",
+ "▁son t",
+ "▁M ed",
+ "▁Me d",
+ "▁ Med",
+ "ag ue",
+ "agu e",
+ "a gue",
+ "▁c ost",
+ "▁co st",
+ "▁cos t",
+ "▁ cost",
+ "▁S im",
+ "▁Si m",
+ "▁ Sim",
+ "▁com ment",
+ "▁comm ent",
+ "▁comme nt",
+ "▁ comment",
+ "▁( \\",
+ "▁ (\\",
+ "eg en",
+ "ege n",
+ "e gen",
+ "▁para meter",
+ "▁param eter",
+ "▁paramet er",
+ "▁ parameter",
+ "▁F rance",
+ "▁Fran ce",
+ "▁Fr ance",
+ "▁Franc e",
+ "▁ France",
+ "re p",
+ "r ep",
+ "▁T H",
+ "▁ TH",
+ "▁y et",
+ "▁ye t",
+ "▁a way",
+ "▁aw ay",
+ "▁ away",
+ "▁c irc",
+ "▁ci rc",
+ "▁cir c",
+ "▁ circ",
+ "▁A PI",
+ "▁AP I",
+ "▁ API",
+ "em p",
+ "e mp",
+ "в і",
+ "L ayout",
+ "▁l ines",
+ "▁li nes",
+ "▁line s",
+ "▁lin es",
+ "▁ lines",
+ "▁P art",
+ "▁Par t",
+ "▁Pa rt",
+ "▁ Part",
+ "em pt",
+ "emp t",
+ "▁B i",
+ "▁ Bi",
+ "▁m ind",
+ "▁min d",
+ "▁mi nd",
+ "▁ mind",
+ "k y",
+ "gi ng",
+ "gin g",
+ "g ing",
+ "▁re port",
+ "▁rep ort",
+ "▁repo rt",
+ "▁ report",
+ "▁A dd",
+ "▁Ad d",
+ "▁ Add",
+ "ро д",
+ "р од",
+ "▁r ange",
+ "▁ran ge",
+ "▁rang e",
+ "▁ range",
+ "ci as",
+ "cia s",
+ "c ias",
+ "li p",
+ "l ip",
+ "▁K ar",
+ "▁Ka r",
+ "▁ Kar",
+ "▁Comm ons",
+ "▁Common s",
+ "ger ufen",
+ "af f",
+ "a ff",
+ "se c",
+ "s ec",
+ "▁h tml",
+ "▁ html",
+ "li g",
+ "l ig",
+ "▁w indow",
+ "▁wind ow",
+ "▁ window",
+ "in ition",
+ "ini tion",
+ "init ion",
+ "ci s",
+ "c is",
+ "▁u t",
+ "▁ ut",
+ "el n",
+ "e ln",
+ "▁a ux",
+ "▁au x",
+ "▁ aux",
+ "▁n eg",
+ "▁ne g",
+ "▁ neg",
+ "Ha nd",
+ "H and",
+ "▁) ;",
+ "▁ );",
+ "▁a nal",
+ "▁an al",
+ "▁ anal",
+ "▁f ri",
+ "▁fr i",
+ "▁ fri",
+ "▁с и",
+ "▁ си",
+ "et ch",
+ "etc h",
+ "m d",
+ "pa ge",
+ "pag e",
+ "p age",
+ "▁l ibrary",
+ "▁li brary",
+ "▁ library",
+ "▁: =",
+ "▁ :=",
+ "RO M",
+ "R OM",
+ "Y ou",
+ "sp ace",
+ "s pace",
+ "▁d urch",
+ "▁dur ch",
+ "▁h ost",
+ "▁ho st",
+ "▁hos t",
+ "▁ host",
+ "av en",
+ "ave n",
+ "a ven",
+ "▁F ile",
+ "▁Fil e",
+ "▁ File",
+ "al le",
+ "all e",
+ "a lle",
+ "ти в",
+ "▁p ap",
+ "▁pa p",
+ "ст во",
+ "ств о",
+ "с тво",
+ "mar k",
+ "m ark",
+ "▁m ais",
+ "▁ma is",
+ "▁mai s",
+ "er man",
+ "erm an",
+ "Si ze",
+ "S ize",
+ "е к",
+ "▁М а",
+ "▁ Ма",
+ "▁is n",
+ "▁i sn",
+ "▁c opy",
+ "▁co py",
+ "▁cop y",
+ "▁ copy",
+ "st en",
+ "ste n",
+ "s ten",
+ "ri ver",
+ "riv er",
+ "rive r",
+ "r iver",
+ "▁w ent",
+ "▁we nt",
+ "▁wen t",
+ "▁j avascript",
+ "▁java script",
+ "▁ javascript",
+ "▁s am",
+ "▁sa m",
+ "▁ sam",
+ "▁f rame",
+ "▁fr ame",
+ "▁fra me",
+ "▁fram e",
+ "▁ frame",
+ "▁v i",
+ "▁ vi",
+ "▁pre vious",
+ "▁prev ious",
+ "▁ previous",
+ "ro du",
+ "rod u",
+ "r odu",
+ "▁method s",
+ "▁ methods",
+ "▁ne cess",
+ "▁neces s",
+ "▁ necess",
+ "N A",
+ "ck et",
+ "cke t",
+ "c ket",
+ "▁o pt",
+ "▁op t",
+ "▁ opt",
+ "Lo c",
+ "L oc",
+ "ho w",
+ "h ow",
+ "▁î n",
+ "▁ în",
+ "sh ip",
+ "s hip",
+ "▁it self",
+ "▁its elf",
+ "▁P lease",
+ "▁Ple ase",
+ "▁ Please",
+ "ie ne",
+ "ien e",
+ "i ene",
+ "ве р",
+ "в ер",
+ "▁< <",
+ "▁ <<",
+ "▁m ill",
+ "▁mil l",
+ "▁mi ll",
+ "▁ mill",
+ "▁t rad",
+ "▁tr ad",
+ "▁tra d",
+ "▁ trad",
+ "pa ce",
+ "p ace",
+ "▁H ar",
+ "▁Ha r",
+ "▁ Har",
+ "it en",
+ "ite n",
+ "i ten",
+ "wi se",
+ "w ise",
+ "writ e",
+ "wr ite",
+ "w rite",
+ "ци и",
+ "р ы",
+ "Lin e",
+ "Li ne",
+ "L ine",
+ "ol o",
+ "o lo",
+ "▁ac cept",
+ "▁ accept",
+ "he ight",
+ "▁e lect",
+ "▁el ect",
+ "▁ele ct",
+ "▁ elect",
+ "el la",
+ "ell a",
+ "e lla",
+ "▁p å",
+ "Se lect",
+ "S elect",
+ "▁ ли",
+ "▁\\ <",
+ "▁ \\<",
+ "( (",
+ "▁I D",
+ "▁ ID",
+ "op s",
+ "o ps",
+ "ва н",
+ "в ан",
+ "i ó",
+ "T P",
+ "» ,",
+ "ne ction",
+ "nect ion",
+ "n ection",
+ "par ent",
+ "pa rent",
+ "▁M ag",
+ "▁Ma g",
+ "▁ Mag",
+ "Tab le",
+ "T able",
+ "O ver",
+ "▁n etwork",
+ "▁net work",
+ "▁ network",
+ "с по",
+ "▁as sign",
+ "▁ass ign",
+ "▁ assign",
+ "ig ger",
+ "igg er",
+ "ir m",
+ "i rm",
+ ") `",
+ "ot tom",
+ "ott om",
+ "otto m",
+ "be ta",
+ "bet a",
+ "b eta",
+ "▁d ell",
+ "▁de ll",
+ "▁del l",
+ "▁b ody",
+ "▁bo dy",
+ "▁bod y",
+ "▁ body",
+ "▁д а",
+ "▁ да",
+ "▁Y our",
+ "▁You r",
+ "▁ Your",
+ "▁f ue",
+ "▁fu e",
+ "▁p ackage",
+ "▁pack age",
+ "▁ package",
+ "▁l ight",
+ "▁lig ht",
+ "▁ light",
+ "▁* *",
+ "▁ **",
+ "M P",
+ "▁c ou",
+ "▁co u",
+ "▁ cou",
+ "ye s",
+ "y es",
+ ": \\",
+ "▁ Ч",
+ "▁m ention",
+ "▁men tion",
+ "▁ment ion",
+ "en sch",
+ "ens ch",
+ "▁d eg",
+ "▁de g",
+ "▁ deg",
+ "▁con vert",
+ "▁conver t",
+ "▁conv ert",
+ "▁ convert",
+ "▁D av",
+ "▁Da v",
+ "ad t",
+ "a dt",
+ "Res ult",
+ "th ough",
+ "▁b us",
+ "▁bu s",
+ "▁ bus",
+ "x y",
+ "▁s een",
+ "▁se en",
+ "▁see n",
+ "▁ seen",
+ "Al l",
+ "A ll",
+ "pu blic",
+ "pub lic",
+ "p ublic",
+ "iv ely",
+ "ive ly",
+ "ivel y",
+ "▁R ec",
+ "▁Re c",
+ "▁ Rec",
+ "▁H is",
+ "▁Hi s",
+ "si m",
+ "s im",
+ "▁f ör",
+ "▁fö r",
+ "▁ för",
+ "▁h istor",
+ "▁his tor",
+ "▁hi stor",
+ "▁hist or",
+ "▁ histor",
+ "▁s ett",
+ "▁se tt",
+ "▁set t",
+ "▁ sett",
+ "ra t",
+ "r at",
+ "ab led",
+ "able d",
+ "abl ed",
+ "a bled",
+ "▁» ,",
+ "▁ »,",
+ "go ogle",
+ "We b",
+ "W eb",
+ "é l",
+ "▁t itle",
+ "▁tit le",
+ "▁ title",
+ "▁J anu",
+ "▁Jan u",
+ "▁Ja nu",
+ "ј а",
+ "▁t ook",
+ "▁to ok",
+ "▁too k",
+ "id en",
+ "ide n",
+ "i den",
+ "s z",
+ "▁G et",
+ "▁Ge t",
+ "▁ Get",
+ "▁object s",
+ "▁ objects",
+ "▁com mon",
+ "▁comm on",
+ "▁ common",
+ "▁ch anges",
+ "▁change s",
+ "▁chang es",
+ "▁ changes",
+ "▁L ond",
+ "▁Lo nd",
+ "▁ Lond",
+ "▁ex tern",
+ "▁ext ern",
+ "▁j u",
+ "▁ ju",
+ "I s",
+ "▁av ailable",
+ "▁avail able",
+ "▁ available",
+ "tr i",
+ "t ri",
+ "▁m ás",
+ "▁má s",
+ "os a",
+ "o sa",
+ "B e",
+ "▁D ata",
+ "▁Da ta",
+ "▁Dat a",
+ "▁ Data",
+ "ur al",
+ "ura l",
+ "u ral",
+ "▁h om",
+ "▁ho m",
+ "▁ hom",
+ "▁acc ount",
+ "▁ac count",
+ "▁ account",
+ "o o",
+ "▁p erm",
+ "▁per m",
+ "▁pe rm",
+ "▁ perm",
+ "res pond",
+ "resp ond",
+ "y t",
+ "▁s end",
+ "▁se nd",
+ "▁sen d",
+ "▁ send",
+ "▁return s",
+ "▁ returns",
+ "iv id",
+ "ivi d",
+ "i vid",
+ "▁ex pla",
+ "▁exp la",
+ "▁expl a",
+ "í n",
+ "▁n or",
+ "▁no r",
+ "▁ nor",
+ "I f",
+ "▁F rom",
+ "▁Fr om",
+ "▁Fro m",
+ "▁ From",
+ "▁t arget",
+ "▁tar get",
+ "▁ target",
+ "fe ct",
+ "f ect",
+ "ен т",
+ "▁u it",
+ "▁ui t",
+ "▁ uit",
+ "▁J o",
+ "▁ Jo",
+ "▁vari ables",
+ "▁variable s",
+ "▁ variables",
+ "▁s eries",
+ "▁se ries",
+ "▁ser ies",
+ "▁serie s",
+ "▁ series",
+ "▁f unc",
+ "▁fun c",
+ "▁fu nc",
+ "▁ func",
+ "▁him self",
+ "▁ч а",
+ "▁ ча",
+ "an ti",
+ "ant i",
+ "▁a ch",
+ "▁ac h",
+ "▁ ach",
+ "ia log",
+ "ial og",
+ "i alog",
+ "▁s td",
+ "▁st d",
+ "▁ std",
+ "a e",
+ "▁f oot",
+ "▁fo ot",
+ "▁foo t",
+ "▁ foot",
+ "▁un ter",
+ "▁ unter",
+ "gr ess",
+ "gres s",
+ "gre ss",
+ "g ress",
+ "No t",
+ "N ot",
+ "ra d",
+ "r ad",
+ "f ér",
+ "▁u til",
+ "▁ut il",
+ "▁ util",
+ "or em",
+ "ore m",
+ "o rem",
+ "▁s ou",
+ "▁so u",
+ "op t",
+ "o pt",
+ "▁o g",
+ "▁ og",
+ "▁u ma",
+ "▁um a",
+ "▁ uma",
+ "it ar",
+ "ita r",
+ "i tar",
+ "▁O k",
+ "▁ Ok",
+ "ü ck",
+ "sq rt",
+ "▁a nt",
+ "▁an t",
+ "▁ ant",
+ "▁wer den",
+ "▁werd en",
+ "å r",
+ "}) ;",
+ "} );",
+ "▁P aris",
+ "▁Par is",
+ "▁Pa ris",
+ "▁ex ception",
+ "▁except ion",
+ "▁ exception",
+ "▁de term",
+ "▁det erm",
+ "▁V ol",
+ "▁Vo l",
+ "▁ Vol",
+ "▁S am",
+ "▁Sa m",
+ "▁ Sam",
+ "▁e ss",
+ "▁es s",
+ "▁ ess",
+ "li es",
+ "lie s",
+ "l ies",
+ "ion i",
+ "io ni",
+ "i oni",
+ "od ing",
+ "odi ng",
+ "o ding",
+ "id get",
+ "idge t",
+ "▁p ri",
+ "▁pr i",
+ "▁wh ether",
+ "▁whe ther",
+ "▁п од",
+ "▁по д",
+ "▁num bers",
+ "▁number s",
+ "▁ numbers",
+ "▁ ~",
+ "ev ent",
+ "even t",
+ "e vent",
+ "▁sh ows",
+ "▁show s",
+ "▁sho ws",
+ "at ures",
+ "atur es",
+ "ature s",
+ "atu res",
+ "▁h ouse",
+ "▁ho use",
+ "▁hous e",
+ "▁ house",
+ "▁f ace",
+ "▁fa ce",
+ "▁fac e",
+ "▁ face",
+ "▁s ię",
+ "▁si ę",
+ "viron ment",
+ "va n",
+ "v an",
+ "▁in cluding",
+ "▁includ ing",
+ "▁inclu ding",
+ "▁ including",
+ "▁< -",
+ "▁ <-",
+ "ti mes",
+ "time s",
+ "tim es",
+ "t imes",
+ "no w",
+ "n ow",
+ "▁p ur",
+ "▁pu r",
+ "▁ pur",
+ "if ier",
+ "ifi er",
+ "ifie r",
+ "▁e mp",
+ "▁em p",
+ "▁ emp",
+ "▁c la",
+ "▁cl a",
+ "▁ cla",
+ "mo n",
+ "m on",
+ "▁D as",
+ "▁Da s",
+ "ad y",
+ "a dy",
+ "▁в ід",
+ "▁ві д",
+ "▁ від",
+ "▁ ц",
+ "ab or",
+ "a bor",
+ "OS T",
+ "O ST",
+ "▁b and",
+ "▁ban d",
+ "▁ba nd",
+ "▁ band",
+ "▁ ú",
+ "▁ex actly",
+ "▁exact ly",
+ "ie rt",
+ "ier t",
+ "i ert",
+ "av ig",
+ "avi g",
+ "▁re du",
+ "▁r edu",
+ "▁red u",
+ "▁ redu",
+ "▁S E",
+ "▁ SE",
+ "lish ed",
+ "lis hed",
+ "l ished",
+ "B u",
+ "Mess age",
+ "M essage",
+ "ce ll",
+ "cel l",
+ "c ell",
+ "ful ly",
+ "full y",
+ "▁s v",
+ "▁ sv",
+ "▁m akes",
+ "▁ma kes",
+ "▁make s",
+ "▁mak es",
+ "po l",
+ "p ol",
+ "▁re quired",
+ "▁require d",
+ "▁requ ired",
+ "▁ required",
+ "fer rer",
+ "▁p ers",
+ "▁per s",
+ "▁pe rs",
+ "▁ pers",
+ "▁m i",
+ "▁ mi",
+ "F I",
+ "▁Pa ul",
+ "▁ Paul",
+ "▁U I",
+ "▁ UI",
+ "▁B el",
+ "▁Be l",
+ "▁ Bel",
+ "in c",
+ "i nc",
+ "▁cont ains",
+ "▁contain s",
+ "▁ contains",
+ "O ut",
+ "as ure",
+ "p u",
+ "ot o",
+ "o to",
+ "▁g ame",
+ "▁ga me",
+ "▁gam e",
+ "▁ game",
+ "z n",
+ "▁W hy",
+ "▁Wh y",
+ "▁ Why",
+ "or ith",
+ "ori th",
+ "bi g",
+ "b ig",
+ "ки й",
+ "sig ma",
+ "s igma",
+ "▁qu ite",
+ "▁qui te",
+ "▁quit e",
+ "▁j ed",
+ "▁je d",
+ "▁ jed",
+ "re c",
+ "r ec",
+ "▁S QL",
+ "▁ SQL",
+ "б е",
+ "▁M art",
+ "▁Mar t",
+ "▁Ma rt",
+ "▁ Mart",
+ "y a",
+ "▁sch ool",
+ "▁ school",
+ "▁sim ply",
+ "▁simp ly",
+ "▁simpl y",
+ "▁v or",
+ "▁vo r",
+ "▁ vor",
+ "▁d ouble",
+ "▁dou ble",
+ "▁doub le",
+ "▁ double",
+ "ра в",
+ "▁S tr",
+ "▁St r",
+ "▁ Str",
+ "ie m",
+ "i em",
+ "▁al bum",
+ "▁alb um",
+ "▁ album",
+ "▁re sol",
+ "▁res ol",
+ "▁ resol",
+ "▁d ei",
+ "▁de i",
+ "▁W ik",
+ "▁Wi k",
+ "▁ Wik",
+ "▁a w",
+ "▁ aw",
+ "um b",
+ "u mb",
+ "ol s",
+ "o ls",
+ "▁* /",
+ "▁ */",
+ "▁z e",
+ "▁ ze",
+ "▁a nim",
+ "▁an im",
+ "▁ani m",
+ "▁ anim",
+ "/ >",
+ "ri s",
+ "r is",
+ "re sh",
+ "res h",
+ "r esh",
+ "N o",
+ "ique s",
+ "iqu es",
+ "i ques",
+ "cur rent",
+ "curr ent",
+ "c urrent",
+ "▁per iod",
+ "▁peri od",
+ "▁ period",
+ "▁A pril",
+ "▁Ap ril",
+ "▁st ore",
+ "▁stor e",
+ "▁sto re",
+ "▁ store",
+ "', '",
+ "' ,'",
+ "▁S et",
+ "▁Se t",
+ "▁ Set",
+ "= {",
+ "ach ed",
+ "ac hed",
+ "ache d",
+ "a ched",
+ "▁M al",
+ "▁Ma l",
+ "▁ Mal",
+ "▁P al",
+ "▁Pa l",
+ "▁ Pal",
+ "an tes",
+ "ant es",
+ "ante s",
+ "ate rial",
+ "ater ial",
+ "▁work ed",
+ "▁wor ked",
+ "le q",
+ "l eq",
+ "ore ferrer",
+ "▁h appen",
+ "▁ha ppen",
+ "▁happ en",
+ "▁b ox",
+ "▁bo x",
+ "▁ box",
+ "ne y",
+ "n ey",
+ "▁c lose",
+ "▁cl ose",
+ "▁clos e",
+ "▁clo se",
+ "▁ close",
+ "▁g ran",
+ "▁gr an",
+ "▁gra n",
+ "▁l ie",
+ "▁li e",
+ "▁ lie",
+ "▁i r",
+ "▁ ir",
+ "▁ex pected",
+ "▁exp ected",
+ "▁expect ed",
+ "▁ expected",
+ "▁д ля",
+ "cl ick",
+ "cli ck",
+ "clic k",
+ "c lick",
+ "ș i",
+ "▁p arte",
+ "▁par te",
+ "▁part e",
+ "og n",
+ "o gn",
+ "▁F orm",
+ "▁For m",
+ "▁Fo rm",
+ "▁ Form",
+ "▁m emb",
+ "▁me mb",
+ "▁mem b",
+ "▁p lan",
+ "▁pl an",
+ "▁pla n",
+ "▁ plan",
+ "▁te am",
+ "▁tea m",
+ "▁ team",
+ "] [",
+ "▁c ommun",
+ "▁com mun",
+ "▁comm un",
+ "or ry",
+ "orr y",
+ "en cy",
+ "enc y",
+ "g l",
+ "in ary",
+ "ina ry",
+ "inar y",
+ "cd ot",
+ "c dot",
+ "^ \\",
+ "▁F irst",
+ "▁Fir st",
+ "▁ First",
+ "an der",
+ "and er",
+ "ande r",
+ "a nder",
+ "▁D ec",
+ "▁De c",
+ "▁ Dec",
+ "re quest",
+ "req uest",
+ "ст ва",
+ "ств а",
+ "с тва",
+ "▁str ucture",
+ "▁struct ure",
+ "▁ structure",
+ "▁| |",
+ "▁ ||",
+ "▁C omp",
+ "▁Com p",
+ "▁Co mp",
+ "▁ Comp",
+ "act ory",
+ "actor y",
+ "▁M il",
+ "▁Mi l",
+ "▁ Mil",
+ "▁S ome",
+ "▁So me",
+ "▁Som e",
+ "▁ Some",
+ "St ream",
+ "▁as sum",
+ "▁ass um",
+ "ue n",
+ "u en",
+ "▁w ords",
+ "▁word s",
+ "▁wor ds",
+ "▁ words",
+ "▁Se ptember",
+ "▁Sept ember",
+ "▁К о",
+ "▁ Ко",
+ "▁d ays",
+ "▁da ys",
+ "▁day s",
+ "▁ days",
+ "or ies",
+ "ori es",
+ "orie s",
+ "o ries",
+ "ста в",
+ "s m",
+ "vi n",
+ "v in",
+ "part ial",
+ "▁par ent",
+ "▁pa rent",
+ "▁pare nt",
+ "▁ parent",
+ "o j",
+ "ни и",
+ "! \"",
+ "ug in",
+ "u gin",
+ "▁W indows",
+ "▁Wind ows",
+ "▁Window s",
+ "▁ Windows",
+ "E d",
+ ": }",
+ "▁ q",
+ "▁b en",
+ "▁be n",
+ "▁ ben",
+ "ia na",
+ "ian a",
+ "i ana",
+ "▁l abel",
+ "▁la bel",
+ "▁lab el",
+ "▁ label",
+ "st ate",
+ "sta te",
+ "stat e",
+ "ut ed",
+ "ute d",
+ "u ted",
+ "▁( )",
+ "▁ ()",
+ "▁с во",
+ "▁e dit",
+ "▁ed it",
+ "▁ edit",
+ "ur ing",
+ "uri ng",
+ "u ring",
+ "▁N S",
+ "▁ NS",
+ "▁J ahr",
+ "▁Jah r",
+ "▁Ja hr",
+ "▁prov ide",
+ "H e",
+ "▁Y es",
+ "▁Ye s",
+ "▁ Yes",
+ "an el",
+ "ane l",
+ "a nel",
+ "en ame",
+ "ena me",
+ "e name",
+ "▁D on",
+ "▁Do n",
+ "▁ Don",
+ "is k",
+ "i sk",
+ "gr a",
+ "g ra",
+ "el ij",
+ "eli j",
+ "e lij",
+ "▁r oot",
+ "▁ro ot",
+ "▁ root",
+ "* /",
+ "▁F re",
+ "▁Fr e",
+ "▁ Fre",
+ "▁M or",
+ "▁Mo r",
+ "▁ Mor",
+ "us ed",
+ "use d",
+ "u sed",
+ "ran ge",
+ "r ange",
+ "▁t amb",
+ "▁ta mb",
+ "▁tam b",
+ "▁mod ule",
+ "▁ module",
+ "▁d irectory",
+ "▁direct ory",
+ "▁director y",
+ "▁ directory",
+ "ound s",
+ "oun ds",
+ "Act ivity",
+ "Activ ity",
+ "▁m u",
+ "▁ mu",
+ "in fo",
+ "inf o",
+ "▁f ree",
+ "▁fr ee",
+ "▁fre e",
+ "▁ free",
+ "or ge",
+ "org e",
+ "ta b",
+ "t ab",
+ ") =",
+ "la ng",
+ "lan g",
+ "l ang",
+ "▁о с",
+ "▁ ос",
+ "▁F ROM",
+ "▁FR OM",
+ "▁ FROM",
+ "▁en ter",
+ "▁ent er",
+ "▁ enter",
+ "▁bec ame",
+ "id ae",
+ "ida e",
+ "х и",
+ "▁St ates",
+ "▁State s",
+ "▁Stat es",
+ "▁Sta tes",
+ "ver se",
+ "vers e",
+ "▁ex pl",
+ "▁exp l",
+ "▁ expl",
+ "yn t",
+ "y nt",
+ "U N",
+ "e e",
+ "en dent",
+ "end ent",
+ "enden t",
+ "ende nt",
+ "▁m aking",
+ "▁ma king",
+ "▁mak ing",
+ "▁ making",
+ "▁\" $",
+ "un i",
+ "u ni",
+ "qu ence",
+ "▁l ui",
+ "▁lu i",
+ "H T",
+ "▁us es",
+ "▁use s",
+ "▁ uses",
+ "zi e",
+ "z ie",
+ "ni a",
+ "n ia",
+ "Cont ent",
+ "▁C ount",
+ "▁Co unt",
+ "▁Coun t",
+ "▁Cou nt",
+ "▁ Count",
+ "▁stand ard",
+ "▁ standard",
+ "EN T",
+ "E NT",
+ "▁ко н",
+ "▁к он",
+ "▁ кон",
+ "fo rt",
+ "for t",
+ "f ort",
+ "ad as",
+ "ada s",
+ "a das",
+ "з у",
+ "S ystem",
+ "▁S w",
+ "▁ Sw",
+ "▁e ver",
+ "▁ev er",
+ "▁ ever",
+ "L O",
+ "▁cor respond",
+ "▁P o",
+ "▁ Po",
+ "ar gin",
+ "arg in",
+ "к т",
+ "і й",
+ "▁re main",
+ "▁rem ain",
+ "ci o",
+ "c io",
+ "▁act ual",
+ "▁actu al",
+ "▁ actual",
+ "ст у",
+ "с ту",
+ "▁s ind",
+ "▁si nd",
+ "▁sin d",
+ "▁P e",
+ "▁ Pe",
+ "▁ch anged",
+ "▁change d",
+ "▁chang ed",
+ "▁ changed",
+ "▁N ote",
+ "▁No te",
+ "▁Not e",
+ "▁ Note",
+ "sk ie",
+ "ski e",
+ "s kie",
+ "▁famil y",
+ "▁fam ily",
+ "▁ family",
+ "it à",
+ "co s",
+ "c os",
+ "tx t",
+ "t xt",
+ "ke r",
+ "k er",
+ "ce ed",
+ "c eed",
+ "▁a rr",
+ "▁ar r",
+ "▁ arr",
+ "▁c am",
+ "▁ca m",
+ "▁ cam",
+ "iz er",
+ "ize r",
+ "i zer",
+ "▁D an",
+ "▁Da n",
+ "▁ Dan",
+ "he l",
+ "h el",
+ "ic ult",
+ "icul t",
+ "H P",
+ "il er",
+ "ile r",
+ "i ler",
+ "▁S al",
+ "▁Sa l",
+ "▁ Sal",
+ "▁con nection",
+ "▁conne ction",
+ "▁connect ion",
+ "▁conn ection",
+ "▁ connection",
+ "us ion",
+ "k n",
+ "R I",
+ "▁v om",
+ "▁vo m",
+ "List ener",
+ "▁ ö",
+ "▁d im",
+ "▁di m",
+ "▁ dim",
+ "▁p ress",
+ "▁pr ess",
+ "▁pre ss",
+ "▁pres s",
+ "▁ press",
+ "▁e sc",
+ "▁es c",
+ "▁ esc",
+ "▁T ry",
+ "▁Tr y",
+ "▁ Try",
+ "at alog",
+ "ata log",
+ "atal og",
+ "▁th anks",
+ "▁than ks",
+ "▁thank s",
+ "D O",
+ "▁w ritten",
+ "▁writ ten",
+ "▁wr itten",
+ "▁ written",
+ "di r",
+ "d ir",
+ "re w",
+ "r ew",
+ "▁f ire",
+ "▁fi re",
+ "▁fir e",
+ "▁ fire",
+ "▁N ach",
+ "▁Na ch",
+ "▁ á",
+ "en c",
+ "e nc",
+ "▁or igin",
+ "▁orig in",
+ "▁ origin",
+ "▁Nov ember",
+ "▁} ;",
+ "▁ };",
+ "Co unt",
+ "C ount",
+ "▁З а",
+ "▁ За",
+ "▁g raph",
+ "▁gr aph",
+ "▁gra ph",
+ "▁ graph",
+ "▁m is",
+ "▁mi s",
+ "▁ mis",
+ "▁Ex ternal",
+ "▁Ext ernal",
+ "▁Extern al",
+ "▁Externa l",
+ "▁ External",
+ "▁o ptions",
+ "▁option s",
+ "▁opt ions",
+ "▁ options",
+ "▁U RL",
+ "▁ URL",
+ "▁p hp",
+ "▁ph p",
+ "▁ php",
+ "▁in tegr",
+ "▁int egr",
+ "▁inte gr",
+ "▁ integr",
+ "Con fig",
+ "Conf ig",
+ "▁T ext",
+ "▁Te xt",
+ "▁Tex t",
+ "▁ Text",
+ "in ner",
+ "inn er",
+ "▁c rit",
+ "▁cr it",
+ "▁cri t",
+ "▁ crit",
+ ", ”",
+ "▁t og",
+ "▁to g",
+ "$ $",
+ "no f",
+ "n of",
+ "▁s es",
+ "▁se s",
+ "üh r",
+ "ü hr",
+ "▁S ince",
+ "▁Sin ce",
+ "▁ Since",
+ "De s",
+ "D es",
+ "ub e",
+ "u be",
+ "▁s ection",
+ "▁se ction",
+ "▁sec tion",
+ "▁sect ion",
+ "▁ section",
+ "▁g i",
+ "▁ gi",
+ "fo rd",
+ "for d",
+ "f ord",
+ "▁A ss",
+ "▁As s",
+ "▁ Ass",
+ "ain er",
+ "ai ner",
+ "aine r",
+ "a iner",
+ "tt p",
+ "t tp",
+ "▁be hav",
+ "▁beh av",
+ "port s",
+ "por ts",
+ "dr aw",
+ "dra w",
+ "d raw",
+ "Th is",
+ "T his",
+ "ran ch",
+ "r anch",
+ "in ding",
+ "ind ing",
+ "indi ng",
+ "▁e stab",
+ "▁est ab",
+ "▁es tab",
+ "▁esta b",
+ "▁ob tain",
+ "▁obt ain",
+ "ri ch",
+ "ric h",
+ "r ich",
+ "li cit",
+ "lic it",
+ "е в",
+ "▁qu al",
+ "▁q ual",
+ "▁ qual",
+ "▁z a",
+ "▁ za",
+ "▁h ar",
+ "▁ha r",
+ "▁ har",
+ "▁f ac",
+ "▁fa c",
+ "▁ fac",
+ "aa r",
+ "a ar",
+ "je t",
+ "j et",
+ "ic les",
+ "icle s",
+ "i cles",
+ "▁A us",
+ "▁Au s",
+ "▁ Aus",
+ "▁h or",
+ "▁ho r",
+ "▁ hor",
+ "▁re mov",
+ "▁rem ov",
+ "▁w ie",
+ "▁ wie",
+ "Cl ient",
+ "C lient",
+ "▁n atur",
+ "▁nat ur",
+ "hi p",
+ "h ip",
+ "Su b",
+ "S ub",
+ "▁r andom",
+ "▁ran dom",
+ "▁rand om",
+ "▁ random",
+ "D F",
+ "▁a rea",
+ "▁are a",
+ "▁ar ea",
+ "▁ area",
+ "ta g",
+ "t ag",
+ "P r",
+ "▁I tal",
+ "▁It al",
+ "▁ Ital",
+ "▁r oku",
+ "▁ro ku",
+ "▁rok u",
+ "no follow",
+ "nof ollow",
+ "* }",
+ "▁o thers",
+ "▁other s",
+ "▁l imit",
+ "▁li mit",
+ "▁lim it",
+ "▁ limit",
+ "▁s il",
+ "▁si l",
+ "▁ sil",
+ "▁s av",
+ "▁sa v",
+ "▁o ften",
+ "▁of ten",
+ "▁oft en",
+ "▁re nder",
+ "▁r ender",
+ "▁ren der",
+ "▁rend er",
+ "▁rende r",
+ "▁ render",
+ "D B",
+ "▁M c",
+ "▁ Mc",
+ "▁z ijn",
+ "▁zij n",
+ "же н",
+ "ж ен",
+ "▁t ag",
+ "▁ta g",
+ "▁ tag",
+ "min g",
+ "mi ng",
+ "m ing",
+ "li chen",
+ "lic hen",
+ "lich en",
+ "liche n",
+ "l ichen",
+ "pa ck",
+ "p ack",
+ "▁A g",
+ "▁ Ag",
+ "▁s ense",
+ "▁sens e",
+ "▁sen se",
+ "p g",
+ "Met hod",
+ "M ethod",
+ "ag ed",
+ "age d",
+ "a ged",
+ "á g",
+ "ł a",
+ "▁inter est",
+ "▁inte rest",
+ "▁as soci",
+ "▁ass oci",
+ "▁ associ",
+ "vol ution",
+ "▁em pty",
+ "▁emp ty",
+ "▁ empty",
+ "ic he",
+ "ich e",
+ "i che",
+ "▁g ro",
+ "▁gr o",
+ "▁ gro",
+ "▁t ypes",
+ "▁type s",
+ "▁typ es",
+ "▁ty pes",
+ "▁ types",
+ "▁S ie",
+ "▁Si e",
+ "In ter",
+ "Int er",
+ "▁n oreferrer",
+ "▁ noreferrer",
+ "▁g ives",
+ "▁giv es",
+ "▁give s",
+ "▁gi ves",
+ "ha l",
+ "h al",
+ "▁s ave",
+ "▁sa ve",
+ "▁sav e",
+ "▁ save",
+ "▁f ont",
+ "▁fo nt",
+ "▁fon t",
+ "▁ font",
+ "ru ction",
+ "ruct ion",
+ "S cript",
+ "▁a lla",
+ "▁al la",
+ "▁all a",
+ "▁ alla",
+ "▁s ays",
+ "▁sa ys",
+ "▁say s",
+ "▁f u",
+ "▁ fu",
+ "ap e",
+ "a pe",
+ "▁l anguage",
+ "▁ language",
+ "ig er",
+ "ige r",
+ "i ger",
+ "▁K ing",
+ "▁Ki ng",
+ "▁Kin g",
+ "bo r",
+ "b or",
+ "u v",
+ "▁s hall",
+ "▁sh all",
+ "▁E urope",
+ "▁Europ e",
+ "▁Euro pe",
+ "▁Eur ope",
+ "▁ Europe",
+ "▁ein em",
+ "▁eine m",
+ "▁w ater",
+ "▁wa ter",
+ "▁wat er",
+ "▁ water",
+ "▁g overn",
+ "▁go vern",
+ "▁gover n",
+ "an z",
+ "at ors",
+ "ator s",
+ "ato rs",
+ "▁mon th",
+ "▁mo nth",
+ "▁mont h",
+ "▁ month",
+ "y e",
+ "▁import ant",
+ "▁ important",
+ "at z",
+ "a tz",
+ "fir st",
+ "f irst",
+ "▁Tr ans",
+ "▁Tra ns",
+ "▁ Trans",
+ "▁M ad",
+ "▁Ma d",
+ "▁ Mad",
+ "▁b ra",
+ "▁br a",
+ "▁ bra",
+ "ik a",
+ "i ka",
+ "▁S aint",
+ "▁Sa int",
+ "▁Sain t",
+ "▁ Saint",
+ "or ia",
+ "ori a",
+ "o ria",
+ "kr e",
+ "k re",
+ "em ents",
+ "ement s",
+ "emen ts",
+ "e ments",
+ "▁B en",
+ "▁Be n",
+ "▁ Ben",
+ "la v",
+ "l av",
+ "▁ad min",
+ "▁adm in",
+ "▁ admin",
+ "▁H en",
+ "▁He n",
+ "▁ Hen",
+ "ri l",
+ "r il",
+ "▁S m",
+ "▁ Sm",
+ "ca t",
+ "c at",
+ "▁Re fer",
+ "▁Ref er",
+ "▁ Ш",
+ "▁p ract",
+ "▁pr act",
+ "▁pra ct",
+ "▁prac t",
+ "▁P at",
+ "▁Pa t",
+ "▁ Pat",
+ "▁G re",
+ "▁Gr e",
+ "▁ Gre",
+ "▁you ng",
+ "▁yo ung",
+ "▁In ter",
+ "▁Int er",
+ "▁ Inter",
+ "om a",
+ "o ma",
+ "te ger",
+ "ib ility",
+ "ibil ity",
+ "▁param eters",
+ "▁parameter s",
+ "▁paramet ers",
+ "▁ parameters",
+ "▁every thing",
+ "da t",
+ "d at",
+ "ur op",
+ "uro p",
+ "u rop",
+ "ole an",
+ "o lean",
+ "▁return ed",
+ "▁C lass",
+ "▁Cl ass",
+ "▁Cla ss",
+ "▁ Class",
+ "ac y",
+ "a cy",
+ "## ##",
+ "▁p ř",
+ "▁f older",
+ "▁fol der",
+ "▁fo lder",
+ "▁ folder",
+ "▁k on",
+ "▁ko n",
+ "▁ kon",
+ "▁gu ess",
+ "g t",
+ "je n",
+ "j en",
+ "an nel",
+ "ann el",
+ "anne l",
+ "ic on",
+ "ico n",
+ "i con",
+ "▁c omb",
+ "▁com b",
+ "▁co mb",
+ "▁ comb",
+ "ri ct",
+ "ric t",
+ "r ict",
+ "▁h ij",
+ "▁hi j",
+ "▁aut hor",
+ "▁auth or",
+ "▁ author",
+ "se e",
+ "s ee",
+ "he re",
+ "her e",
+ "h ere",
+ "st ra",
+ "str a",
+ "s tra",
+ "▁ent ire",
+ "▁direct ly",
+ "ra ft",
+ "raf t",
+ "r aft",
+ "he et",
+ "es ter",
+ "est er",
+ "este r",
+ "e ster",
+ "▁м и",
+ "▁ ми",
+ "▁m ass",
+ "▁ma ss",
+ "▁mas s",
+ "▁ mass",
+ "un tu",
+ "unt u",
+ "▁u sers",
+ "▁us ers",
+ "▁use rs",
+ "▁user s",
+ "▁ users",
+ "ch i",
+ "c hi",
+ "P E",
+ "▁com ponent",
+ "▁compon ent",
+ "▁ component",
+ "Cl ick",
+ "C lick",
+ "At t",
+ "A tt",
+ "▁s obre",
+ "▁so bre",
+ "▁sob re",
+ "an ds",
+ "and s",
+ "▁H ol",
+ "▁Ho l",
+ "▁ Hol",
+ "▁S ant",
+ "▁San t",
+ "▁Sa nt",
+ "or i",
+ "o ri",
+ "▁s ua",
+ "▁su a",
+ "st d",
+ "s td",
+ "ent ic",
+ "enti c",
+ "C C",
+ "▁fil ter",
+ "▁ filter",
+ "S QL",
+ "▁G od",
+ "▁Go d",
+ "A t",
+ "▁м у",
+ "▁ му",
+ "▁per formance",
+ "▁perform ance",
+ "del ta",
+ "d elta",
+ "an de",
+ "and e",
+ "a nde",
+ "am er",
+ "ame r",
+ "a mer",
+ "д ы",
+ "▁c ult",
+ "▁cu lt",
+ "▁cul t",
+ "▁N or",
+ "▁No r",
+ "bu t",
+ "b ut",
+ "▁l ik",
+ "▁li k",
+ "▁ lik",
+ "**** ****",
+ "ст вен",
+ "ств ен",
+ "стве н",
+ "▁com me",
+ "▁comm e",
+ "▁d r",
+ "▁ dr",
+ "im er",
+ "ime r",
+ "i mer",
+ "or din",
+ "ord in",
+ "▁cond ition",
+ "▁ condition",
+ "es te",
+ "est e",
+ "e ste",
+ "( [",
+ "F F",
+ "ть ся",
+ "im o",
+ "i mo",
+ "ra b",
+ "r ab",
+ "і ль",
+ "▁h alf",
+ "▁hal f",
+ "▁ half",
+ "ea ch",
+ "e ach",
+ "Di s",
+ "D is",
+ "▁r ows",
+ "▁ro ws",
+ "▁row s",
+ "▁ rows",
+ "▁h on",
+ "▁ho n",
+ "▁ hon",
+ "▁t ogether",
+ "▁tog ether",
+ "▁ și",
+ "me di",
+ "med i",
+ "m edi",
+ "ag n",
+ "a gn",
+ "al led",
+ "all ed",
+ "alle d",
+ "▁v ill",
+ "▁vi ll",
+ "▁vil l",
+ "IN G",
+ "I NG",
+ "id den",
+ "idd en",
+ "▁d raw",
+ "▁dr aw",
+ "▁dra w",
+ "▁ draw",
+ "yn tax",
+ "ynt ax",
+ "▁att empt",
+ "UR L",
+ "U RL",
+ "pos e",
+ "po se",
+ "p ose",
+ "▁in dic",
+ "▁ind ic",
+ "ни ка",
+ "ник а",
+ "▁Eng lish",
+ "▁ English",
+ "▁d éc",
+ "▁dé c",
+ "▁ne eds",
+ "▁need s",
+ "▁n ormal",
+ "▁nor mal",
+ "▁norm al",
+ "▁ normal",
+ "ur t",
+ "u rt",
+ "▁н о",
+ "▁ но",
+ "}} \\",
+ "} }\\",
+ "la st",
+ "las t",
+ "l ast",
+ "▁F in",
+ "▁ Fin",
+ "▁F ebru",
+ "▁Fe bru",
+ "▁Feb ru",
+ "il a",
+ "i la",
+ "▁c ountry",
+ "▁count ry",
+ "▁coun try",
+ "▁ country",
+ "▁field s",
+ "▁fiel ds",
+ "▁ fields",
+ "▁m ax",
+ "▁ma x",
+ "▁ max",
+ "lé s",
+ "l és",
+ "ow ie",
+ "owi e",
+ "o wie",
+ "▁de ux",
+ "▁bu ilt",
+ "▁ built",
+ "▁M ain",
+ "▁Ma in",
+ "▁Mai n",
+ "▁ Main",
+ "▁c amp",
+ "▁cam p",
+ "▁ca mp",
+ "▁ camp",
+ "iv o",
+ "i vo",
+ "iv a",
+ "i va",
+ "ic y",
+ "i cy",
+ "zi one",
+ "z ione",
+ "No de",
+ "N ode",
+ "▁: )",
+ "▁ :)",
+ "▁am ong",
+ "▁O b",
+ "▁ Ob",
+ "▁c ases",
+ "▁case s",
+ "▁cas es",
+ "▁ cases",
+ "ha ps",
+ "h aps",
+ "se rs",
+ "ser s",
+ "s ers",
+ "ar ter",
+ "art er",
+ "arte r",
+ "śc i",
+ "ś ci",
+ "▁it er",
+ "▁i ter",
+ "▁ iter",
+ "▁n amed",
+ "▁name d",
+ "▁na med",
+ "▁nam ed",
+ "▁ named",
+ "ex ec",
+ "exe c",
+ "▁se ason",
+ "▁sea son",
+ "▁ season",
+ "to t",
+ "t ot",
+ "= >",
+ "gr aph",
+ "gra ph",
+ "g raph",
+ "▁n il",
+ "▁ni l",
+ "▁ nil",
+ "ac ional",
+ "acion al",
+ "aci onal",
+ "▁N ULL",
+ "▁ NULL",
+ "▁spe cial",
+ "▁spec ial",
+ "▁ special",
+ "ст е",
+ "с те",
+ "cs s",
+ "c ss",
+ "▁\\ (",
+ "v s",
+ "ae l",
+ "a el",
+ "▁c ity",
+ "▁ci ty",
+ "▁cit y",
+ "▁ city",
+ "ov a",
+ "o va",
+ "▁art icle",
+ "▁ article",
+ "▁S outh",
+ "▁So uth",
+ "▁Sou th",
+ "Act ion",
+ "Ac tion",
+ "A ction",
+ "ç a",
+ "sp ring",
+ "spr ing",
+ "s pring",
+ "it ude",
+ "itu de",
+ "itud e",
+ "▁com plex",
+ "▁comp lex",
+ "▁comple x",
+ "▁compl ex",
+ "▁ complex",
+ "▁ч то",
+ "bu ild",
+ "g amma",
+ "▁E nt",
+ "▁En t",
+ "▁ Ent",
+ "ie rs",
+ "ier s",
+ "i ers",
+ "' .",
+ "ca r",
+ "c ar",
+ "ap ache",
+ "apa che",
+ "in gen",
+ "ing en",
+ "inge n",
+ "In put",
+ ": ",
+ "▁d ynam",
+ "▁dy nam",
+ "al ls",
+ "all s",
+ "sh ow",
+ "s how",
+ "| \\",
+ "▁w ird",
+ "▁wir d",
+ "B ar",
+ "al th",
+ "alt h",
+ "mod el",
+ "mo del",
+ "mode l",
+ "m odel",
+ "Tr ans",
+ "Tra ns",
+ "Ro w",
+ "R ow",
+ "ab e",
+ "a be",
+ "▁l ib",
+ "▁li b",
+ "▁ lib",
+ "nu ll",
+ "n ull",
+ "ra gment",
+ "rag ment",
+ "▁St ate",
+ "▁Stat e",
+ "▁Sta te",
+ "▁ State",
+ "▁l aw",
+ "▁la w",
+ "▁ law",
+ "Fr ame",
+ "F rame",
+ "▁L o",
+ "▁ Lo",
+ "ge b",
+ "g eb",
+ "}$ .",
+ "} $.",
+ "▁ne eded",
+ "▁need ed",
+ "▁con tr",
+ "▁cont r",
+ "▁ contr",
+ "ar ies",
+ "ari es",
+ "arie s",
+ "a ries",
+ "▁s creen",
+ "▁sc reen",
+ "▁scr een",
+ "▁ screen",
+ "y r",
+ "m m",
+ "▁sh own",
+ "▁show n",
+ "▁sho wn",
+ "▁b ad",
+ "▁ba d",
+ "▁ bad",
+ "▁c ast",
+ "▁cas t",
+ "▁ca st",
+ "▁ cast",
+ "▁T est",
+ "▁Te st",
+ "▁ Test",
+ "▁A uf",
+ "▁Au f",
+ "▁qu ant",
+ "▁quan t",
+ "▁ quant",
+ "ig a",
+ "i ga",
+ "▁re n",
+ "▁r en",
+ "▁ ren",
+ "▁M ac",
+ "▁Ma c",
+ "▁ Mac",
+ "▁trans form",
+ "▁ transform",
+ "▁d ifference",
+ "▁dif ference",
+ "▁differ ence",
+ "▁t it",
+ "▁ti t",
+ "▁ tit",
+ "T E",
+ "▁st ep",
+ "▁ste p",
+ "▁ step",
+ "▁c apt",
+ "▁cap t",
+ "▁ca pt",
+ "▁ capt",
+ "▁col lection",
+ "▁coll ection",
+ "▁collect ion",
+ "▁colle ction",
+ "▁ collection",
+ "iction ary",
+ "▁T om",
+ "▁To m",
+ "▁ Tom",
+ "ri er",
+ "rie r",
+ "r ier",
+ "▁m ove",
+ "▁mov e",
+ "▁mo ve",
+ "▁ move",
+ "co pe",
+ "cop e",
+ "c ope",
+ "or ds",
+ "ord s",
+ "▁fur ther",
+ "▁column s",
+ "▁ columns",
+ "▁L in",
+ "▁Li n",
+ "▁ Lin",
+ "▁f ixed",
+ "▁fix ed",
+ "▁ fixed",
+ "▁child ren",
+ "▁ children",
+ "M S",
+ "m o",
+ "un a",
+ "u na",
+ "▁ind ivid",
+ "tt y",
+ "t ty",
+ "as te",
+ "ast e",
+ "a ste",
+ "sr c",
+ "s rc",
+ "mat ch",
+ "m atch",
+ "w i",
+ "▁ х",
+ "▁д и",
+ "▁ ди",
+ "▁o rd",
+ "▁or d",
+ "▁ ord",
+ "iv ing",
+ "ivi ng",
+ "i ving",
+ "▁B ro",
+ "▁Br o",
+ "▁ Bro",
+ "▁al most",
+ "▁P res",
+ "▁Pr es",
+ "▁Pre s",
+ "▁ Pres",
+ "re ci",
+ "rec i",
+ "ar ing",
+ "ari ng",
+ "arin g",
+ "a ring",
+ "▁/ //",
+ "▁// /",
+ "▁ ///",
+ "ет ся",
+ "е тся",
+ "▁s ig",
+ "▁si g",
+ "▁ sig",
+ "lig ht",
+ "l ight",
+ "▁R ed",
+ "▁Re d",
+ "▁ Red",
+ "▁sugg est",
+ "▁sug gest",
+ "ol f",
+ "▁é té",
+ "▁ét é",
+ "▁ été",
+ "is ation",
+ "isa tion",
+ "isat ion",
+ "з на",
+ "Ne w",
+ "N ew",
+ "ст ан",
+ "ста н",
+ "с тан",
+ "L A",
+ "un icip",
+ "unic ip",
+ "uni cip",
+ "▁fig ure",
+ "▁figur e",
+ "▁ figure",
+ "m t",
+ "ia le",
+ "ial e",
+ "i ale",
+ "▁c atch",
+ "▁cat ch",
+ "▁ catch",
+ "de fault",
+ "def ault",
+ "▁t ele",
+ "▁te le",
+ "▁tel e",
+ "▁ tele",
+ "▁m atter",
+ "▁mat ter",
+ "ca st",
+ "cas t",
+ "c ast",
+ "▁R ich",
+ "▁Ric h",
+ "▁Ri ch",
+ "▁ Rich",
+ "▁hand le",
+ "▁ handle",
+ "val u",
+ "va lu",
+ "v alu",
+ "$ -",
+ "о б",
+ "▁j son",
+ "▁js on",
+ "▁ json",
+ "Cre ate",
+ "C reate",
+ "▁ex am",
+ "ал ь",
+ "а ль",
+ "ю т",
+ "or ed",
+ "ore d",
+ "o red",
+ "id os",
+ "ido s",
+ "ap pend",
+ "app end",
+ "appen d",
+ "appe nd",
+ "▁Ar ray",
+ "▁Arr ay",
+ "▁ Array",
+ "к с",
+ "} [",
+ "ri ve",
+ "riv e",
+ "r ive",
+ "▁c lub",
+ "▁cl ub",
+ "▁ club",
+ "ma nn",
+ "man n",
+ "m ann",
+ "▁e ste",
+ "▁est e",
+ "▁es te",
+ "▁ este",
+ "es ta",
+ "est a",
+ "e sta",
+ "▁G i",
+ "▁ Gi",
+ "▁J ap",
+ "▁Ja p",
+ "▁N ame",
+ "▁Na me",
+ "▁Nam e",
+ "▁ Name",
+ "Col umn",
+ "ou ps",
+ "oup s",
+ "o ups",
+ "is mo",
+ "ism o",
+ "▁C ity",
+ "▁Ci ty",
+ "▁Cit y",
+ "▁ City",
+ "▁class es",
+ "▁classe s",
+ "▁ classes",
+ "▁in fl",
+ "▁inf l",
+ "▁ infl",
+ "h l",
+ "ро м",
+ "р ом",
+ "▁ad ding",
+ "▁add ing",
+ "▁ adding",
+ "▁f ail",
+ "▁fa il",
+ "▁ fail",
+ "x x",
+ "õ es",
+ "S c",
+ "ut il",
+ "uti l",
+ "u til",
+ "▁l ocation",
+ "▁lo cation",
+ "▁loc ation",
+ "▁ location",
+ "le ge",
+ "leg e",
+ "l ege",
+ "ag o",
+ "a go",
+ "▁pro perties",
+ "▁proper ties",
+ "▁ properties",
+ "ab il",
+ "abi l",
+ "a bil",
+ "va s",
+ "v as",
+ "}$ ,",
+ "} $,",
+ "it ted",
+ "itt ed",
+ "itte d",
+ "ó d",
+ "▁D em",
+ "▁De m",
+ "▁as ked",
+ "▁ask ed",
+ "▁t ab",
+ "▁ta b",
+ "▁ tab",
+ "S ource",
+ "▁error s",
+ "▁err ors",
+ "▁ errors",
+ "ograph ie",
+ "▁ж и",
+ "▁ жи",
+ "▁m al",
+ "▁ma l",
+ "▁ mal",
+ "st ract",
+ "str act",
+ "stra ct",
+ "▁d ro",
+ "▁dr o",
+ "▁ dro",
+ "ra k",
+ "r ak",
+ "▁n ote",
+ "▁not e",
+ "▁no te",
+ "▁ note",
+ "▁set ting",
+ "▁sett ing",
+ "▁ setting",
+ "▁f em",
+ "▁fe m",
+ "▁s aw",
+ "▁sa w",
+ "ia r",
+ "i ar",
+ "HE R",
+ "H ER",
+ "е с",
+ "▁p red",
+ "▁pr ed",
+ "▁pre d",
+ "▁ pred",
+ "▁O ut",
+ "▁ Out",
+ "▁it ems",
+ "▁item s",
+ "▁ items",
+ "ла н",
+ "л ан",
+ "▁w erd",
+ "▁we rd",
+ "▁wer d",
+ "ers ion",
+ "li a",
+ "l ia",
+ "▁s in",
+ "▁si n",
+ "▁ sin",
+ "ich te",
+ "icht e",
+ "i chte",
+ "▁fe el",
+ "▁fee l",
+ "▁п ра",
+ "▁пр а",
+ "▁ пра",
+ "▁o der",
+ "▁od er",
+ "▁ oder",
+ "U E",
+ "oc ument",
+ "▁m ode",
+ "▁mod e",
+ "▁mo de",
+ "▁ mode",
+ "▁N a",
+ "▁ Na",
+ "де н",
+ "д ен",
+ "me s",
+ "m es",
+ "frame work",
+ "▁a uto",
+ "▁au to",
+ "▁aut o",
+ "▁ auto",
+ "ны м",
+ "н ым",
+ "ub y",
+ "u by",
+ "▁tem plate",
+ "▁temp late",
+ "▁ template",
+ "▁m ess",
+ "▁me ss",
+ "▁mes s",
+ "▁ mess",
+ "ie der",
+ "ied er",
+ "i eder",
+ "▁rel ated",
+ "▁rela ted",
+ "▁relate d",
+ "▁ related",
+ "ok en",
+ "oke n",
+ "o ken",
+ "▁follow s",
+ "se arch",
+ "s earch",
+ "am i",
+ "a mi",
+ "▁w ait",
+ "▁wa it",
+ "▁ wait",
+ "ig r",
+ "i gr",
+ "▁l ow",
+ "▁lo w",
+ "▁ low",
+ "ски х",
+ "ск их",
+ "с ких",
+ "ска я",
+ "с кая",
+ "▁M ark",
+ "▁Mar k",
+ "▁ Mark",
+ "▁i ll",
+ "▁il l",
+ "▁ ill",
+ "am ento",
+ "ament o",
+ "amen to",
+ "\\ <",
+ "▁d f",
+ "▁ df",
+ "os ition",
+ "osi tion",
+ "▁В и",
+ "is f",
+ "i sf",
+ "▁De utsch",
+ "ah l",
+ "a hl",
+ "wa r",
+ "w ar",
+ "it ect",
+ "ite ct",
+ "▁s al",
+ "▁sa l",
+ "▁ sal",
+ "el en",
+ "ele n",
+ "e len",
+ "By Id",
+ "▁g ru",
+ "▁gr u",
+ "▁ gru",
+ "s v",
+ "▁pass ed",
+ "▁pas sed",
+ "▁passe d",
+ "▁a ñ",
+ "▁ añ",
+ "Sc h",
+ "S ch",
+ "▁sol ve",
+ "we ise",
+ "weis e",
+ "wei se",
+ "at os",
+ "ato s",
+ "▁m eg",
+ "▁me g",
+ "▁m ember",
+ "▁mem ber",
+ "▁memb er",
+ "▁ member",
+ "er name",
+ "ern ame",
+ "erna me",
+ "▁con nect",
+ "▁conne ct",
+ "▁conn ect",
+ "▁ connect",
+ "ip s",
+ "i ps",
+ "▁r ound",
+ "▁ro und",
+ "▁rou nd",
+ "▁ round",
+ "▁ ]",
+ "ne s",
+ "n es",
+ "▁d ir",
+ "▁di r",
+ "▁ dir",
+ "▁Lond on",
+ "d y",
+ "F A",
+ "▁rece ived",
+ "▁receive d",
+ "re et",
+ "ree t",
+ "▁L og",
+ "▁Lo g",
+ "▁ Log",
+ "▁Sch ool",
+ "an go",
+ "ang o",
+ "▁The se",
+ "▁Th ese",
+ "▁M ont",
+ "▁Mon t",
+ "▁Mo nt",
+ "▁ Mont",
+ "▁e ner",
+ "▁en er",
+ "▁ ener",
+ "la d",
+ "l ad",
+ "▁def ine",
+ "▁defin e",
+ "▁ define",
+ "si gn",
+ "sig n",
+ "s ign",
+ "▁c le",
+ "▁cl e",
+ "▁ cle",
+ "fig ure",
+ "▁V iew",
+ "▁Vi ew",
+ "▁Vie w",
+ "▁ View",
+ "text bf",
+ "$ \\",
+ "з ы",
+ "num ber",
+ "n umber",
+ "▁d in",
+ "▁di n",
+ "▁ din",
+ "el ler",
+ "ell er",
+ "elle r",
+ "orith m",
+ "ori thm",
+ "fal se",
+ "f alse",
+ "fo l",
+ "f ol",
+ "ffic ient",
+ "▁HT ML",
+ "▁ HTML",
+ "li che",
+ "lic he",
+ "lich e",
+ "l iche",
+ "▁M o",
+ "▁ Mo",
+ "▁int rodu",
+ "▁intr odu",
+ "▁intro du",
+ "ex p",
+ "e xp",
+ "▁st rong",
+ "▁str ong",
+ "▁stro ng",
+ "▁ strong",
+ "▁t hus",
+ "▁th us",
+ "/ )",
+ "▁e le",
+ "▁el e",
+ "▁ ele",
+ "▁та к",
+ "▁ так",
+ "▁п а",
+ "▁ па",
+ "▁d ont",
+ "▁do nt",
+ "▁don t",
+ "▁c ause",
+ "▁caus e",
+ "▁ca use",
+ "Num ber",
+ "N umber",
+ "▁im ages",
+ "▁image s",
+ "▁imag es",
+ "▁ images",
+ "▁s ample",
+ "▁sam ple",
+ "▁ sample",
+ "▁s ci",
+ "▁sc i",
+ "▁ sci",
+ "li ke",
+ "lik e",
+ "l ike",
+ "▁L ou",
+ "▁Lo u",
+ "▁ Lou",
+ "di v",
+ "d iv",
+ "an c",
+ "a nc",
+ "▁f ront",
+ "▁fr ont",
+ "▁fro nt",
+ "▁ front",
+ "ne n",
+ "n en",
+ "▁miss ing",
+ "▁mis sing",
+ "▁ missing",
+ "ar ia",
+ "ari a",
+ "a ria",
+ "pr es",
+ "pre s",
+ "p res",
+ "▁п ред",
+ "▁пре д",
+ "D I",
+ "fil ter",
+ "▁M it",
+ "▁Mi t",
+ "U R",
+ "▁o pp",
+ "▁op p",
+ "▁ opp",
+ "▁s ql",
+ "▁sq l",
+ "▁ sql",
+ "▁ро ку",
+ "er en",
+ "ere n",
+ "e ren",
+ "em at",
+ "ema t",
+ "e mat",
+ "í s",
+ "▁Je an",
+ "▁ Jean",
+ "é c",
+ "▁c i",
+ "▁ ci",
+ "en ne",
+ "enn e",
+ "at form",
+ "▁t aken",
+ "▁tak en",
+ "▁take n",
+ "▁ta ken",
+ "▁O f",
+ "▁ Of",
+ "▁на се",
+ "▁e rr",
+ "▁er r",
+ "▁ err",
+ "O P",
+ "Fr om",
+ "F rom",
+ "De fault",
+ "Def ault",
+ "▁Gener al",
+ "▁Gen eral",
+ "▁Gene ral",
+ "▁ General",
+ "wik i",
+ "wi ki",
+ "w iki",
+ "▁g rand",
+ "▁gr and",
+ "▁gra nd",
+ "▁gran d",
+ "▁ grand",
+ "▁e inen",
+ "▁ein en",
+ "▁eine n",
+ "Re g",
+ "R eg",
+ "Hand ler",
+ "Handle r",
+ "con om",
+ "co nom",
+ "cono m",
+ "c onom",
+ "an ger",
+ "ang er",
+ "ange r",
+ "▁бы л",
+ "▁L os",
+ "▁Lo s",
+ "▁ Los",
+ "▁ex pression",
+ "▁exp ression",
+ "▁express ion",
+ "▁expr ession",
+ "▁ expression",
+ "ш а",
+ "ya l",
+ "y al",
+ "▁$ ('",
+ "▁$( '",
+ "▁sw itch",
+ "▁ switch",
+ "▁v ector",
+ "▁ve ctor",
+ "▁vec tor",
+ "▁ vector",
+ "▁T hom",
+ "▁Th om",
+ "▁v irt",
+ "▁vi rt",
+ "▁vir t",
+ "▁ virt",
+ "le ased",
+ "lease d",
+ "lea sed",
+ "▁c over",
+ "▁co ver",
+ "▁cov er",
+ "▁ cover",
+ "▁re sp",
+ "▁r esp",
+ "▁res p",
+ "▁ resp",
+ "ak o",
+ "a ko",
+ "ren ch",
+ "ot a",
+ "o ta",
+ "C ell",
+ "an ged",
+ "ang ed",
+ "ange d",
+ "▁+ =",
+ "▁ +=",
+ "la c",
+ "l ac",
+ "sk a",
+ "s ka",
+ "ne xt",
+ "nex t",
+ "n ext",
+ "▁Intern ational",
+ "▁W il",
+ "▁Wi l",
+ "▁ Wil",
+ "▁o nt",
+ "▁on t",
+ "▁ ont",
+ "ib r",
+ "i br",
+ "us tr",
+ "ust r",
+ "u str",
+ "▁b lack",
+ "▁bl ack",
+ "▁bla ck",
+ "▁ black",
+ "▁select ed",
+ "▁sel ected",
+ "▁sele cted",
+ "▁ selected",
+ "ch er",
+ "che r",
+ "c her",
+ "▁l iter",
+ "▁li ter",
+ "▁lit er",
+ "▁ liter",
+ "ro ot",
+ "r oot",
+ "л ся",
+ "▁L ife",
+ "▁Li fe",
+ "▁ Life",
+ "▁in sert",
+ "▁ins ert",
+ "▁inser t",
+ "▁inse rt",
+ "▁ insert",
+ "▁mat rix",
+ "▁ matrix",
+ "is es",
+ "ise s",
+ ") ]",
+ "▁p el",
+ "▁pe l",
+ "▁ pel",
+ "Over ride",
+ "ry pt",
+ "▁for mer",
+ "▁form er",
+ "▁forme r",
+ "▁ former",
+ "▁Fil m",
+ "▁N orth",
+ "▁Nor th",
+ "cl ient",
+ "cli ent",
+ "c lient",
+ "▁n ight",
+ "▁ night",
+ "хо ди",
+ "ход и",
+ "▁A ustral",
+ "▁Aust ral",
+ "▁ Austral",
+ "▁R et",
+ "▁Re t",
+ "▁ Ret",
+ "rh o",
+ "r ho",
+ "▁п ер",
+ "▁пе р",
+ "▁ пер",
+ "ip edia",
+ "ipe dia",
+ "▁ex press",
+ "▁exp ress",
+ "▁expr ess",
+ "▁expres s",
+ "▁ express",
+ "▁th ird",
+ "▁ third",
+ "▁ma jor",
+ "▁maj or",
+ "▁ major",
+ "▁g rad",
+ "▁gr ad",
+ "▁gra d",
+ "▁ grad",
+ "ow e",
+ "o we",
+ "▁bel ieve",
+ "our nal",
+ "ourn al",
+ "▁st atus",
+ "▁stat us",
+ "▁ status",
+ "un c",
+ "u nc",
+ "▁d ou",
+ "▁do u",
+ "▁J SON",
+ "▁JS ON",
+ "▁ JSON",
+ "ui s",
+ "u is",
+ "▁pop ulation",
+ "▁popula tion",
+ "▁popul ation",
+ "en z",
+ "▁Will iam",
+ "s f",
+ "▁O bject",
+ "▁Ob ject",
+ "▁ Object",
+ "▁c in",
+ "▁ci n",
+ "▁ cin",
+ "▁D i",
+ "▁ Di",
+ "cur ity",
+ "c urity",
+ "▁O pen",
+ "▁Op en",
+ "▁ Open",
+ "▁ ле",
+ "la r",
+ "l ar",
+ "ad ding",
+ "add ing",
+ "▁k om",
+ "▁ko m",
+ "▁ kom",
+ "}( \\",
+ "} (\\",
+ "▁k il",
+ "▁ki l",
+ "▁ kil",
+ "um er",
+ "ume r",
+ "u mer",
+ "\"/ >",
+ "\" />",
+ "▁fe ature",
+ "▁ feature",
+ "▁A re",
+ "▁Ar e",
+ "▁ Are",
+ "ck s",
+ "c ks",
+ "▁Intern et",
+ "▁Inter net",
+ "▁ Internet",
+ "▁i h",
+ "▁ ih",
+ "▁start ed",
+ "▁star ted",
+ "▁ear ly",
+ "▁be gan",
+ "▁beg an",
+ "T H",
+ "p ython",
+ "as p",
+ "a sp",
+ "▁F r",
+ "▁ Fr",
+ "▁c los",
+ "▁cl os",
+ "▁clo s",
+ "▁ clos",
+ "ist ic",
+ "isti c",
+ "▁mus ic",
+ "▁ music",
+ "▁d ig",
+ "▁di g",
+ "▁ dig",
+ "▁it al",
+ "▁i tal",
+ "▁ ital",
+ "▁D avid",
+ "▁Dav id",
+ "▁Da vid",
+ "▁ David",
+ "▁web site",
+ "▁ website",
+ "▁cont roller",
+ "▁control ler",
+ "▁ controller",
+ "▁M er",
+ "▁Me r",
+ "▁ Mer",
+ "con text",
+ "cont ext",
+ "pro duct",
+ "produ ct",
+ "prod uct",
+ "os p",
+ "o sp",
+ "▁j un",
+ "▁ju n",
+ "ro wn",
+ "row n",
+ "r own",
+ "▁A z",
+ "▁ Az",
+ "\": \"",
+ "\" :\"",
+ "▁a an",
+ "▁aa n",
+ "▁D ate",
+ "▁Da te",
+ "▁Dat e",
+ "▁ Date",
+ "mu lt",
+ "mul t",
+ "m ult",
+ "▁b rowser",
+ "▁brow ser",
+ "▁ browser",
+ "ре д",
+ "wh ich",
+ "R A",
+ "qu are",
+ "qua re",
+ "▁R uss",
+ "▁Ru ss",
+ "▁Rus s",
+ "▁ Russ",
+ "▁s oon",
+ "▁so on",
+ "▁P re",
+ "▁Pr e",
+ "▁ Pre",
+ "ta u",
+ "t au",
+ "▁we ek",
+ "▁ week",
+ "▁б а",
+ "▁ ба",
+ "▁o ct",
+ "▁oc t",
+ "▁ oct",
+ "▁t own",
+ "▁to wn",
+ "▁ town",
+ "ro y",
+ "r oy",
+ "▁e ls",
+ "▁el s",
+ "▁ els",
+ "bl ic",
+ "b lic",
+ "und le",
+ "▁H istor",
+ "▁His tor",
+ "▁Hi stor",
+ "▁Hist or",
+ "▁f oi",
+ "▁fo i",
+ "▁mod els",
+ "▁model s",
+ "▁mode ls",
+ "▁ models",
+ "з о",
+ "on ym",
+ "ony m",
+ "o nym",
+ "Par am",
+ "Pa ram",
+ "P aram",
+ "▁M et",
+ "▁Me t",
+ "▁ Met",
+ "ge ner",
+ "gen er",
+ "g ener",
+ "j ą",
+ "▁e spe",
+ "▁es pe",
+ "▁esp e",
+ "C E",
+ "▁de vice",
+ "▁dev ice",
+ "▁devi ce",
+ "▁ device",
+ "el low",
+ "ell ow",
+ "ello w",
+ "▁de bug",
+ "▁deb ug",
+ "▁ debug",
+ "ér ie",
+ "éri e",
+ "é rie",
+ "us ing",
+ "u sing",
+ "ан г",
+ "а нг",
+ "▁* )",
+ "▁ *)",
+ "ud i",
+ "u di",
+ "▁M iss",
+ "▁Mi ss",
+ "▁Mis s",
+ "▁ Miss",
+ "ко м",
+ "к ом",
+ "pos ed",
+ "po sed",
+ "pose d",
+ "p osed",
+ "▁z we",
+ "▁zw e",
+ "і н",
+ "▁Ro bert",
+ "▁Rob ert",
+ "▁O ct",
+ "▁ Oct",
+ "lo p",
+ "l op",
+ "ja r",
+ "j ar",
+ "▁a ver",
+ "▁av er",
+ "▁ave r",
+ "▁ aver",
+ "▁ha bit",
+ "▁hab it",
+ "▁: :",
+ "▁ ::",
+ "än g",
+ "ä ng",
+ "St art",
+ "Star t",
+ "▁p ow",
+ "▁po w",
+ "▁ pow",
+ "▁s rc",
+ "▁sr c",
+ "▁ src",
+ "▁pat tern",
+ "▁ pattern",
+ "▁ Э",
+ "▁b i",
+ "▁ bi",
+ "ot es",
+ "ote s",
+ "o tes",
+ "▁_ _",
+ "▁ __",
+ "▁s ens",
+ "▁se ns",
+ "▁sen s",
+ "▁ sens",
+ "▁a void",
+ "▁av oid",
+ "▁avo id",
+ "ex ample",
+ "ut t",
+ "u tt",
+ "La bel",
+ "Lab el",
+ "L abel",
+ "te x",
+ "t ex",
+ "bo ot",
+ "b oot",
+ "es to",
+ "est o",
+ "e sto",
+ "▁M arch",
+ "▁Mar ch",
+ "▁Marc h",
+ "▁e asy",
+ "▁eas y",
+ "ict ure",
+ "Gr oup",
+ "▁f ather",
+ "▁fa ther",
+ "▁fat her",
+ "▁ father",
+ "▁up dated",
+ "▁update d",
+ "▁upd ated",
+ "▁ updated",
+ "▁V o",
+ "▁I II",
+ "▁II I",
+ "▁ III",
+ "om ega",
+ "ome ga",
+ "▁a lle",
+ "▁al le",
+ "▁all e",
+ "▁ alle",
+ "Re c",
+ "R ec",
+ "y g",
+ "з е",
+ "▁D im",
+ "▁Di m",
+ "▁ Dim",
+ "ne ct",
+ "n ect",
+ "▁T or",
+ "▁To r",
+ "▁de utsch",
+ "▁ deutsch",
+ "▁wh ite",
+ "▁ white",
+ "▁n ational",
+ "▁nation al",
+ "▁nat ional",
+ "pp e",
+ "p pe",
+ "▁a ir",
+ "▁ai r",
+ "▁ air",
+ "▁pass word",
+ "▁ password",
+ "de t",
+ "d et",
+ "▁b ig",
+ "▁bi g",
+ "▁ big",
+ "▁U se",
+ "▁Us e",
+ "▁ Use",
+ "cal l",
+ "ca ll",
+ "c all",
+ "▁ex tra",
+ "▁ext ra",
+ "▁extr a",
+ "▁ extra",
+ "W e",
+ "an ia",
+ "ani a",
+ "a nia",
+ "▁h old",
+ "▁ho ld",
+ "▁hol d",
+ "▁ hold",
+ "Cont rol",
+ "▁C O",
+ "▁ CO",
+ "▁м і",
+ "▁ мі",
+ "it i",
+ "i ti",
+ "▁K e",
+ "▁ Ke",
+ "en u",
+ "e nu",
+ "▁P ark",
+ "▁Par k",
+ "то м",
+ "т ом",
+ "▁a uth",
+ "▁au th",
+ "▁aut h",
+ "▁ auth",
+ "▁c enter",
+ "▁cent er",
+ "▁ center",
+ "P h",
+ "то в",
+ "т ов",
+ "id ing",
+ "idi ng",
+ "i ding",
+ "▁a cross",
+ "▁ac ross",
+ "▁s ong",
+ "▁so ng",
+ "▁son g",
+ "▁ song",
+ "▁ph ys",
+ "▁ phys",
+ "▁n umer",
+ "▁num er",
+ "▁nu mer",
+ "▁ numer",
+ "щ а",
+ "▁A lex",
+ "▁Al ex",
+ "▁Ale x",
+ "▁ Alex",
+ "▁problem s",
+ "▁proble ms",
+ "▁probl ems",
+ "▁E rror",
+ "▁Er ror",
+ "▁Err or",
+ "▁ Error",
+ "form at",
+ "for mat",
+ "▁A cc",
+ "▁Ac c",
+ "▁ Acc",
+ "▁s ix",
+ "▁si x",
+ "▁ six",
+ "▁d b",
+ "▁ db",
+ "▁C ast",
+ "▁Cas t",
+ "▁Ca st",
+ "▁ Cast",
+ "om s",
+ "o ms",
+ "pro ject",
+ "proj ect",
+ "▁v ert",
+ "▁ver t",
+ "▁ve rt",
+ "▁ vert",
+ "cre t",
+ "cr et",
+ "c ret",
+ "▁he ader",
+ "▁head er",
+ "▁ header",
+ "▁st ream",
+ "▁stre am",
+ "▁ stream",
+ "id s",
+ "i ds",
+ "▁t or",
+ "▁to r",
+ "▁ tor",
+ "▁se pt",
+ "▁sep t",
+ "▁est im",
+ "▁es tim",
+ "▁de cl",
+ "▁dec l",
+ "▁ decl",
+ "▁g ave",
+ "▁ga ve",
+ "▁p layer",
+ "▁pl ayer",
+ "▁play er",
+ "▁pla yer",
+ "▁ player",
+ "ys is",
+ "▁д ру",
+ "▁др у",
+ "am m",
+ "a mm",
+ "щ о",
+ "▁( \"",
+ "▁ (\"",
+ "▁a x",
+ "▁ ax",
+ "Pro perty",
+ "us r",
+ "u sr",
+ "▁some one",
+ "▁im pro",
+ "▁imp ro",
+ "▁impr o",
+ "ad en",
+ "ade n",
+ "a den",
+ "ro te",
+ "rot e",
+ "r ote",
+ "▁М и",
+ "i h",
+ "++ )",
+ "+ +)",
+ "▁v ideo",
+ "▁vide o",
+ "▁ video",
+ "▁ex ists",
+ "▁exist s",
+ "▁ exists",
+ "к ла",
+ "▁comp lete",
+ "▁comple te",
+ "▁complet e",
+ "▁compl ete",
+ "▁ complete",
+ "▁s ession",
+ "▁sess ion",
+ "▁ session",
+ "▁const ant",
+ "▁ constant",
+ "ic os",
+ "ico s",
+ "i cos",
+ "▁p ack",
+ "▁pa ck",
+ "▁pac k",
+ "▁ pack",
+ "ro me",
+ "rom e",
+ "r ome",
+ "eg r",
+ "e gr",
+ "App lication",
+ "▁y es",
+ "▁ye s",
+ "▁ yes",
+ "▁e lle",
+ "▁el le",
+ "▁ell e",
+ "▁ elle",
+ "▁e mail",
+ "▁em ail",
+ "▁ email",
+ "or f",
+ "o rf",
+ "ca se",
+ "cas e",
+ "c ase",
+ "▁po inter",
+ "▁point er",
+ "▁ pointer",
+ "▁reg ard",
+ "se n",
+ "s en",
+ "st atus",
+ "stat us",
+ "▁m es",
+ "▁me s",
+ "▁ mes",
+ "▁d elle",
+ "▁de lle",
+ "▁del le",
+ "▁dell e",
+ "ing ton",
+ "ingt on",
+ "▁B as",
+ "▁Ba s",
+ "▁ Bas",
+ ") ^",
+ "de velop",
+ "▁for ce",
+ "▁ force",
+ "▁char acters",
+ "▁charact ers",
+ "▁character s",
+ "▁c ross",
+ "▁cr oss",
+ "▁cro ss",
+ "▁ cross",
+ "▁de ath",
+ "▁t akes",
+ "▁tak es",
+ "▁take s",
+ "▁ta kes",
+ "ér i",
+ "é ri",
+ "ig ne",
+ "ign e",
+ "че н",
+ "ч ен",
+ "U P",
+ ". :",
+ "Th read",
+ "j u",
+ "in y",
+ "i ny",
+ "▁det ails",
+ "▁detail s",
+ "▁ details",
+ "▁x ml",
+ "▁ xml",
+ "ta it",
+ "t ait",
+ "out put",
+ "mess age",
+ "m essage",
+ "' '",
+ "▁Brit ish",
+ "vi lle",
+ "vil le",
+ "v ille",
+ "▁D iv",
+ "▁Di v",
+ "▁ Div",
+ "▁U ser",
+ "▁Use r",
+ "▁Us er",
+ "▁ User",
+ "c m",
+ "ч но",
+ "col umn",
+ "eq ref",
+ "ó r",
+ "on om",
+ "ono m",
+ "o nom",
+ "▁P ost",
+ "▁Po st",
+ "▁Pos t",
+ "▁ Post",
+ "el len",
+ "ell en",
+ "elle n",
+ "A b",
+ "ul té",
+ "ult é",
+ "▁per fect",
+ "▁perf ect",
+ "() {",
+ "( ){",
+ "vis ion",
+ "v ision",
+ "act ive",
+ "activ e",
+ "li er",
+ "lie r",
+ "l ier",
+ "ri j",
+ "r ij",
+ "s d",
+ "▁k ö",
+ "▁ kö",
+ "▁n ie",
+ "▁ni e",
+ "▁ nie",
+ "▁re lig",
+ "▁rel ig",
+ "▁reli g",
+ "▁o t",
+ "▁ ot",
+ "▁m achine",
+ "▁mach ine",
+ "▁ machine",
+ "▁h eld",
+ "▁he ld",
+ "▁hel d",
+ ")$ .",
+ ") $.",
+ "==== ====",
+ "ck er",
+ "cke r",
+ "c ker",
+ "в ы",
+ "bo rn",
+ "bor n",
+ "b orn",
+ "▁p ast",
+ "▁pas t",
+ "▁pa st",
+ "ри я",
+ "▁D r",
+ "▁ Dr",
+ "▁reg ular",
+ "▁regul ar",
+ "▁ regular",
+ "▁prov ided",
+ "▁provide d",
+ "TE R",
+ "T ER",
+ "▁un ivers",
+ "▁ univers",
+ "▁g ets",
+ "▁get s",
+ "▁ge ts",
+ "▁ gets",
+ "▁n u",
+ "▁ nu",
+ "▁/ *",
+ "▁ /*",
+ "ob er",
+ "obe r",
+ "o ber",
+ "fi n",
+ "f in",
+ "▁n ella",
+ "▁ne lla",
+ "▁nel la",
+ "▁nell a",
+ "▁be come",
+ "▁bec ome",
+ "▁becom e",
+ "▁` `",
+ "▁ ``",
+ "▁h istory",
+ "▁histor y",
+ "▁hi story",
+ "▁hist ory",
+ "▁ history",
+ "▁S ol",
+ "▁So l",
+ "▁ Sol",
+ "▁R ad",
+ "▁Ra d",
+ "▁ Rad",
+ "▁term s",
+ "▁ter ms",
+ "▁even ts",
+ "▁event s",
+ "▁ev ents",
+ "▁ events",
+ "ly mp",
+ ")) )",
+ ") ))",
+ "ро ва",
+ "ров а",
+ "р ова",
+ "▁ab sol",
+ "▁abs ol",
+ "▁so ft",
+ "▁ soft",
+ "lin ks",
+ "link s",
+ "l inks",
+ "▁h ope",
+ "▁ho pe",
+ "▁hop e",
+ "▁su bject",
+ "▁sub ject",
+ "▁ subject",
+ "\") ,",
+ "\" ),",
+ "▁cre ating",
+ "▁} \r",
+ "▁ }\r",
+ "▁S k",
+ "▁ Sk",
+ "▁f low",
+ "▁fl ow",
+ "▁flo w",
+ "▁ flow",
+ "▁Р а",
+ "▁as sert",
+ "▁ass ert",
+ "▁asse rt",
+ "▁ assert",
+ "ze t",
+ "z et",
+ "▁F rank",
+ "▁Fran k",
+ "▁Fr ank",
+ "s a",
+ "▁dist ribution",
+ "▁distribu tion",
+ "▁distrib ution",
+ "▁ distribution",
+ "c u",
+ "ba nd",
+ "ban d",
+ "b and",
+ "iz z",
+ "i zz",
+ "▁j ob",
+ "▁jo b",
+ "▁ job",
+ "in er",
+ "ine r",
+ "i ner",
+ "st ruct",
+ "str uct",
+ "stru ct",
+ "á k",
+ "T O",
+ "au f",
+ "a uf",
+ "▁ext ends",
+ "▁extend s",
+ "▁G ra",
+ "▁Gr a",
+ "dis play",
+ "▁sign ific",
+ "on ey",
+ "one y",
+ "o ney",
+ "s ource",
+ "m icrosoft",
+ "in der",
+ "ind er",
+ "inde r",
+ "i nder",
+ "▁qu ick",
+ "▁qui ck",
+ "▁ quick",
+ "▁w onder",
+ "▁won der",
+ "▁wo nder",
+ "Inst ance",
+ "el les",
+ "ell es",
+ "elle s",
+ "e lles",
+ "è me",
+ "▁comp any",
+ "▁compan y",
+ "▁ company",
+ "u ß",
+ ". }",
+ "▁separ ate",
+ "U M",
+ "HER E",
+ "HE RE",
+ "H ERE",
+ "▁writ ing",
+ "▁wr iting",
+ "▁ writing",
+ "it ution",
+ "itu tion",
+ "itut ion",
+ "▁G esch",
+ "▁Ge sch",
+ "▁Ges ch",
+ "м я",
+ "▁J ames",
+ "▁Ja mes",
+ "▁Jam es",
+ "▁ James",
+ "▁D E",
+ "▁ DE",
+ "▁S pe",
+ "▁Sp e",
+ "▁ Spe",
+ "pro cess",
+ "proc ess",
+ "St r",
+ "S tr",
+ "▁s ym",
+ "▁sy m",
+ "▁ sym",
+ "▁a o",
+ "▁ ao",
+ "▁w y",
+ "▁ wy",
+ "▁any one",
+ "▁U p",
+ "▁ Up",
+ "use um",
+ "ar on",
+ "aro n",
+ "a ron",
+ "▁def inition",
+ "▁defin ition",
+ "▁definit ion",
+ "▁ definition",
+ "▁` $",
+ "▁f av",
+ "▁fa v",
+ "rib utes",
+ "ribute s",
+ "ribu tes",
+ "▁R é",
+ "ograf ia",
+ "ografi a",
+ "el ement",
+ "ele ment",
+ "elem ent",
+ "e lement",
+ "ca p",
+ "c ap",
+ "pa t",
+ "p at",
+ "▁B ra",
+ "▁Br a",
+ "▁ Bra",
+ ") (",
+ "▁acc ording",
+ "▁accord ing",
+ "г е",
+ "▁p ie",
+ "▁pi e",
+ "▁ pie",
+ "el i",
+ "e li",
+ "} \"",
+ "▁act iv",
+ "▁ activ",
+ "▁s top",
+ "▁st op",
+ "▁sto p",
+ "▁ stop",
+ "pat ch",
+ "p atch",
+ "т і",
+ "▁J ose",
+ "▁Jo se",
+ "▁Jos e",
+ "▁ Jose",
+ "En d",
+ "E nd",
+ "▁p rze",
+ "▁pr ze",
+ "▁prz e",
+ "▁a ge",
+ "▁ag e",
+ "▁ age",
+ "it ory",
+ "ito ry",
+ "itor y",
+ "▁P HP",
+ "▁ PHP",
+ "ag ement",
+ "age ment",
+ "agem ent",
+ "▁` .",
+ "▁ `.",
+ "▁pre tty",
+ "▁pret ty",
+ "▁re comm",
+ "▁rec omm",
+ "▁recom m",
+ "▁s ud",
+ "▁su d",
+ "▁re qu",
+ "▁r equ",
+ "▁req u",
+ "▁об ла",
+ "at ives",
+ "ative s",
+ "ativ es",
+ "ati ves",
+ "▁H igh",
+ "▁Hi gh",
+ "▁ High",
+ "á z",
+ "ou l",
+ "o ul",
+ "re st",
+ "res t",
+ "r est",
+ "▁T er",
+ "▁Te r",
+ "un der",
+ "und er",
+ "unde r",
+ "u nder",
+ "th ern",
+ "ther n",
+ "the rn",
+ "cent er",
+ "cen ter",
+ "cente r",
+ "c enter",
+ "▁u r",
+ "▁ ur",
+ "la t",
+ "l at",
+ "▁inter face",
+ "▁ interface",
+ "▁и н",
+ "▁ ин",
+ "▁wh ose",
+ "▁who se",
+ "ic as",
+ "ica s",
+ "i cas",
+ "am en",
+ "ame n",
+ "a men",
+ "Fil ter",
+ "▁st ation",
+ "▁stat ion",
+ "▁sta tion",
+ "▁stati on",
+ "▁ station",
+ "Pa ge",
+ "P age",
+ "▁a rm",
+ "▁ar m",
+ "▁ arm",
+ "▁e yes",
+ "▁eye s",
+ "▁ра й",
+ "▁s eu",
+ "▁se u",
+ "ol i",
+ "o li",
+ "wi n",
+ "w in",
+ "li k",
+ "l ik",
+ "ge x",
+ "g ex",
+ "ch an",
+ "cha n",
+ "c han",
+ "id ence",
+ "iden ce",
+ "ar gs",
+ "arg s",
+ "ak ing",
+ "aki ng",
+ "a king",
+ "▁Go ogle",
+ "▁ Google",
+ "▁St ud",
+ "▁Stu d",
+ "▁h o",
+ "▁ ho",
+ "то ры",
+ "тор ы",
+ "S u",
+ "▁autom at",
+ "▁auto mat",
+ "êm e",
+ "ê me",
+ "▁c y",
+ "▁ cy",
+ "lo r",
+ "l or",
+ "▁st ack",
+ "▁sta ck",
+ "▁ stack",
+ "▁SE LECT",
+ "▁ SELECT",
+ "A F",
+ "▁> >",
+ "▁ >>",
+ "▁com pet",
+ "▁comp et",
+ "▁p air",
+ "▁pa ir",
+ "▁ pair",
+ "▁ing lés",
+ "Res ponse",
+ "▁F ig",
+ "▁ Fig",
+ "gr ad",
+ "gra d",
+ "g rad",
+ "▁document ation",
+ "▁ documentation",
+ "▁c ant",
+ "▁can t",
+ "▁ca nt",
+ "▁app reci",
+ "å n",
+ "▁le arn",
+ "▁lear n",
+ "▁ learn",
+ "▁in dep",
+ "▁ind ep",
+ "▁inde p",
+ "▁p al",
+ "▁pa l",
+ "▁ pal",
+ "pack age",
+ "p ackage",
+ "ar es",
+ "are s",
+ "a res",
+ "▁Ber lin",
+ "▁Berl in",
+ "б ли",
+ "re ich",
+ "rei ch",
+ "ё н",
+ "▁s atisf",
+ "▁sat isf",
+ "▁reg ion",
+ "▁ region",
+ "▁fri end",
+ "▁ friend",
+ "▁Ge orge",
+ "▁Georg e",
+ "▁В о",
+ "▁ Во",
+ "▁\" \"",
+ "▁ \"\"",
+ "▁des de",
+ "Fact ory",
+ "F actory",
+ "▁Count y",
+ "▁Coun ty",
+ "ou v",
+ "o uv",
+ "▁ ‘",
+ "▁inst alled",
+ "▁install ed",
+ "▁instal led",
+ "▁ installed",
+ "▁w anted",
+ "▁want ed",
+ "▁P ython",
+ "▁ Python",
+ "▁inter pre",
+ "▁in cluded",
+ "▁includ ed",
+ "▁include d",
+ "▁inclu ded",
+ "▁( (",
+ "▁ ((",
+ "▁al tern",
+ "▁alt ern",
+ "▁alter n",
+ "▁alte rn",
+ "▁ altern",
+ "is to",
+ "ist o",
+ "i sto",
+ "g n",
+ "▁b order",
+ "▁bor der",
+ "▁bord er",
+ "▁ border",
+ "pd f",
+ "p df",
+ "▁d up",
+ "▁du p",
+ "▁ dup",
+ "▁down load",
+ "▁ download",
+ "ju st",
+ "jus t",
+ "j ust",
+ "▁m embers",
+ "▁mem bers",
+ "▁memb ers",
+ "▁member s",
+ "▁ members",
+ "ch ild",
+ "chi ld",
+ "▁p ay",
+ "▁pa y",
+ "▁ pay",
+ "▁c er",
+ "▁ce r",
+ "▁ cer",
+ "▁lo oked",
+ "▁look ed",
+ "▁correct ly",
+ "au th",
+ "aut h",
+ "a uth",
+ "▁с тан",
+ "▁ст ан",
+ "▁ста н",
+ "▁ стан",
+ "▁e sp",
+ "▁es p",
+ "▁ esp",
+ "▁d esc",
+ "▁de sc",
+ "▁des c",
+ "▁ desc",
+ "eb en",
+ "e ben",
+ "▁qu estions",
+ "▁question s",
+ "▁quest ions",
+ "▁questi ons",
+ "▁ questions",
+ "ma l",
+ "m al",
+ "▁ab gerufen",
+ "▁ abgerufen",
+ "▁B and",
+ "▁Ba nd",
+ "▁Ban d",
+ "▁[ ]",
+ "▁ []",
+ "Bas e",
+ "B ase",
+ "▁r is",
+ "▁ri s",
+ "▁ ris",
+ "▁f ort",
+ "▁for t",
+ "▁fo rt",
+ "▁ fort",
+ "▁I d",
+ "▁ Id",
+ "▁var ious",
+ "▁vari ous",
+ "▁Le ague",
+ "▁H and",
+ "▁Ha nd",
+ "▁Han d",
+ "▁ Hand",
+ "▁T ype",
+ "▁Ty pe",
+ "▁Typ e",
+ "▁ Type",
+ "ir l",
+ "i rl",
+ "▁F e",
+ "▁ Fe",
+ "i én",
+ "it ter",
+ "itt er",
+ "itte r",
+ "▁f ast",
+ "▁fa st",
+ "▁fas t",
+ "▁ fast",
+ "st a",
+ "s ta",
+ "▁ex cept",
+ "▁ except",
+ "ic z",
+ "i cz",
+ "▁F rench",
+ "▁en vironment",
+ "▁environ ment",
+ "▁ environment",
+ "▁con se",
+ "▁cons e",
+ "у р",
+ "о го",
+ "▁necess ary",
+ "tar get",
+ "t arget",
+ "▁re ading",
+ "▁read ing",
+ "▁ reading",
+ "ho me",
+ "hom e",
+ "h ome",
+ "ze ich",
+ "▁e qual",
+ "▁equ al",
+ "▁eq ual",
+ "▁ equal",
+ "▁pi ù",
+ "▁p rem",
+ "▁pr em",
+ "▁pre m",
+ "▁diff icult",
+ "▁u nit",
+ "▁un it",
+ "▁ unit",
+ "▁re place",
+ "▁rep lace",
+ "▁repla ce",
+ "▁ replace",
+ "▁he art",
+ "▁hear t",
+ "▁ heart",
+ "▁t alk",
+ "▁tal k",
+ "A M",
+ "▁R E",
+ "▁ RE",
+ "▁P erson",
+ "▁Per son",
+ "▁Pers on",
+ "▁ Person",
+ "end ency",
+ "enden cy",
+ "▁i mm",
+ "▁im m",
+ "▁ imm",
+ "▁h uman",
+ "▁hum an",
+ "▁hu man",
+ "▁ human",
+ "d n",
+ "▁K ir",
+ "▁Ki r",
+ "▁A ut",
+ "▁Au t",
+ "▁ Aut",
+ "kn own",
+ "know n",
+ "k nown",
+ "▁fr equ",
+ "▁fre qu",
+ "sys tem",
+ "s ystem",
+ "ла в",
+ "▁S z",
+ "▁G al",
+ "▁Ga l",
+ "но е",
+ "sel ves",
+ "right arrow",
+ "r ightarrow",
+ "▁С а",
+ "▁ Са",
+ "=\" @",
+ "▁build ing",
+ "▁ building",
+ "im port",
+ "imp ort",
+ "▁f am",
+ "▁fa m",
+ "▁de lete",
+ "▁del ete",
+ "▁delet e",
+ "▁ delete",
+ "air e",
+ "ai re",
+ "a ire",
+ "ma ry",
+ "mar y",
+ "m ary",
+ "▁f und",
+ "▁fun d",
+ "▁fu nd",
+ "▁ fund",
+ "▁part icip",
+ "▁partic ip",
+ "▁parti cip",
+ "▁partici p",
+ "▁s yn",
+ "▁sy n",
+ "▁ syn",
+ "si n",
+ "s in",
+ "▁l ower",
+ "▁lo wer",
+ "▁low er",
+ "▁ lower",
+ "▁z ero",
+ "▁ze ro",
+ "▁ zero",
+ "▁s ec",
+ "▁se c",
+ "▁ sec",
+ "▁f ra",
+ "▁fr a",
+ "▁ fra",
+ "Po int",
+ "P oint",
+ "▁fa iled",
+ "▁fail ed",
+ "▁ failed",
+ "ien to",
+ "ient o",
+ "i ento",
+ "cu p",
+ "c up",
+ "▁s low",
+ "▁sl ow",
+ "▁slo w",
+ "▁ slow",
+ "▁n ation",
+ "▁na tion",
+ "▁nat ion",
+ "äh r",
+ "ä hr",
+ "▁in fo",
+ "▁inf o",
+ "▁ info",
+ "▁P ublic",
+ "▁Pub lic",
+ "▁Pu blic",
+ "▁ Public",
+ "▁de cla",
+ "▁dec la",
+ "▁decl a",
+ "▁Т а",
+ "▁s old",
+ "▁so ld",
+ "▁sol d",
+ "▁R em",
+ "▁Re m",
+ "▁ Rem",
+ "▁Ph il",
+ "ст ра",
+ "стр а",
+ "с тра",
+ "▁me hr",
+ "▁W ork",
+ "▁Wor k",
+ "▁ Work",
+ "▁N ord",
+ "▁No rd",
+ "▁Nor d",
+ "▁f ait",
+ "▁fa it",
+ "▁g ew",
+ "▁ge w",
+ "▁ gew",
+ "print ln",
+ "ob ile",
+ "obil e",
+ "obi le",
+ "▁K on",
+ "▁Ko n",
+ "▁ass ume",
+ "▁assum e",
+ "land s",
+ "lan ds",
+ "l ands",
+ "▁a mount",
+ "▁am ount",
+ "▁ amount",
+ "▁P ress",
+ "▁Pr ess",
+ "▁Pres s",
+ "▁Pre ss",
+ "▁ Press",
+ "ý ch",
+ "▁ma xim",
+ "▁max im",
+ "▁ maxim",
+ "▁Ch ampion",
+ "▁Champ ion",
+ "li brary",
+ "l ibrary",
+ "a ñ",
+ "▁W al",
+ "▁Wa l",
+ "Com m",
+ "Co mm",
+ "C omm",
+ "] ]",
+ "▁z w",
+ "▁ zw",
+ "▁so cial",
+ "▁soci al",
+ "▁soc ial",
+ "▁ social",
+ "L I",
+ "▁Un ter",
+ "vo r",
+ "v or",
+ "Del ta",
+ "D elta",
+ "em ail",
+ "ema il",
+ "e mail",
+ "ra int",
+ "rain t",
+ "rai nt",
+ "r aint",
+ "on i",
+ "o ni",
+ "▁a lt",
+ "▁al t",
+ "▁ alt",
+ "▁n é",
+ "▁ né",
+ "ци я",
+ "ograph y",
+ "▁mention ed",
+ "▁ment ioned",
+ "▁< =",
+ "▁ <=",
+ "▁c ette",
+ "▁ce tte",
+ "▁cet te",
+ "▁current ly",
+ "▁curr ently",
+ "va re",
+ "var e",
+ "v are",
+ "iz ing",
+ "izi ng",
+ "izin g",
+ "i zing",
+ "▁D ef",
+ "▁De f",
+ "▁ Def",
+ "ic ol",
+ "ico l",
+ "i col",
+ "ün d",
+ "ü nd",
+ "▁config uration",
+ "▁configur ation",
+ "▁ configuration",
+ "est ig",
+ "esti g",
+ "II I",
+ "I II",
+ "la m",
+ "l am",
+ "i ère",
+ "▁E ar",
+ "▁t u",
+ "▁ tu",
+ "En t",
+ "E nt",
+ "▁U sing",
+ "▁Us ing",
+ "▁ Using",
+ "▁ко м",
+ "▁к ом",
+ "▁ ком",
+ "ci e",
+ "c ie",
+ "▁pro of",
+ "▁ proof",
+ "▁in vol",
+ "▁inv ol",
+ "▁H istory",
+ "▁Histor y",
+ "▁Hi story",
+ "▁Hist ory",
+ "▁ History",
+ "> <",
+ "▁A ND",
+ "▁AN D",
+ "▁ AND",
+ "av y",
+ "a vy",
+ "▁rel ations",
+ "▁relation s",
+ "$ {",
+ "▁com es",
+ "▁co mes",
+ "▁come s",
+ "▁ comes",
+ "▁d irection",
+ "▁direct ion",
+ "▁dire ction",
+ "▁dir ection",
+ "▁ direction",
+ "▁J une",
+ "▁Ju ne",
+ "▁Jun e",
+ "▁W ay",
+ "▁Wa y",
+ "Com ponent",
+ "ec h",
+ "e ch",
+ "▁P eter",
+ "▁Pe ter",
+ "▁Pet er",
+ "▁ Peter",
+ "s g",
+ "▁s tra",
+ "▁st ra",
+ "▁str a",
+ "▁ stra",
+ "uc t",
+ "u ct",
+ "▁im plementation",
+ "▁implement ation",
+ "▁ implementation",
+ "att le",
+ "▁c z",
+ "▁ cz",
+ "pl ot",
+ "p lot",
+ "▁play ed",
+ "▁pla yed",
+ "\"> ",
+ "\">< /",
+ "\" >",
+ "▁f ive",
+ "▁fi ve",
+ "▁ five",
+ "▁c oll",
+ "▁col l",
+ "▁co ll",
+ "▁ coll",
+ "▁Char les",
+ "Tr a",
+ "T ra",
+ "▁s uo",
+ "▁su o",
+ "file s",
+ "fil es",
+ "fi les",
+ "f iles",
+ "en tes",
+ "ent es",
+ "ente s",
+ "res ponse",
+ "respons e",
+ "H ow",
+ "▁S oci",
+ "▁So ci",
+ "▁Soc i",
+ "▁i gn",
+ "▁ig n",
+ "▁ ign",
+ "▁l ed",
+ "▁le d",
+ "▁ led",
+ "▁G erman",
+ "▁Ger man",
+ "▁Germ an",
+ "ud o",
+ "u do",
+ "▁D u",
+ "▁t im",
+ "▁ti m",
+ "▁ tim",
+ "ount er",
+ "oun ter",
+ "o unter",
+ "▁att ack",
+ "ur i",
+ "u ri",
+ "▁а р",
+ "▁ ар",
+ "es se",
+ "ess e",
+ "iv il",
+ "ivi l",
+ "i vil",
+ "▁J u",
+ "▁v el",
+ "▁ve l",
+ "▁ vel",
+ "mat rix",
+ "▁M at",
+ "▁Ma t",
+ "▁ Mat",
+ "gi o",
+ "g io",
+ "▁Ze it",
+ "VE R",
+ "V ER",
+ "ha s",
+ "h as",
+ "Con nection",
+ "Connect ion",
+ "Conne ction",
+ "▁i hr",
+ "▁ih r",
+ "▁att ribute",
+ "▁ attribute",
+ "▁dis cuss",
+ "▁disc uss",
+ "▁do main",
+ "▁dom ain",
+ "▁ domain",
+ "bin d",
+ "bi nd",
+ "b ind",
+ "▁S ec",
+ "▁Se c",
+ "▁ Sec",
+ "ri k",
+ "r ik",
+ "cl ose",
+ "clos e",
+ "clo se",
+ "c lose",
+ "gi n",
+ "g in",
+ "▁l ove",
+ "▁lo ve",
+ "▁lov e",
+ "an to",
+ "ant o",
+ "ge nt",
+ "gen t",
+ "g ent",
+ "ab a",
+ "a ba",
+ "jan go",
+ "j ango",
+ "b i",
+ "▁ob ser",
+ "▁obs er",
+ "it ting",
+ "itt ing",
+ "▁р у",
+ "▁ ру",
+ "} =",
+ "ag en",
+ "age n",
+ "a gen",
+ "B C",
+ "so me",
+ "som e",
+ "s ome",
+ "▁B u",
+ "▁ Bu",
+ "▁s oci",
+ "▁so ci",
+ "▁soc i",
+ "▁ soci",
+ "▁ind ividual",
+ "▁individ ual",
+ "▁de al",
+ "▁out side",
+ "ri o",
+ "r io",
+ "Ex ec",
+ "an did",
+ "and id",
+ "▁bus iness",
+ "▁t empor",
+ "▁tem por",
+ "▁temp or",
+ "▁tempo r",
+ "▁T ur",
+ "▁Tu r",
+ "▁( !",
+ "▁ (!",
+ "ri ter",
+ "rit er",
+ "rite r",
+ "r iter",
+ "▁go ogle",
+ "▁goog le",
+ "▁ google",
+ "] :",
+ "it te",
+ "itt e",
+ "i tte",
+ "x i",
+ "▁П а",
+ "ho l",
+ "h ol",
+ "н ь",
+ "ri ng",
+ "rin g",
+ "r ing",
+ "▁s ul",
+ "▁su l",
+ "но сти",
+ "ност и",
+ "нос ти",
+ "_ .",
+ "ga r",
+ "g ar",
+ "T ask",
+ "▁C heck",
+ "▁Che ck",
+ "▁ Check",
+ "▁mod ern",
+ "▁mo dern",
+ "▁mode rn",
+ "▁moder n",
+ "▁w in",
+ "▁ win",
+ "us ter",
+ "ust er",
+ "u ster",
+ "ha n",
+ "h an",
+ "form ation",
+ "format ion",
+ "vo id",
+ "v oid",
+ "▁ф и",
+ "▁ фи",
+ "▁use ful",
+ "▁Eng land",
+ "lo s",
+ "l os",
+ "et ime",
+ "eti me",
+ "e time",
+ "eu r",
+ "e ur",
+ "▁un ique",
+ "▁uniqu e",
+ "▁ unique",
+ "▁ка к",
+ "yi ng",
+ "y ing",
+ "ob j",
+ "ui d",
+ "u id",
+ "▁w indows",
+ "▁window s",
+ "▁wind ows",
+ "▁ windows",
+ "▁d istance",
+ "▁dist ance",
+ "▁ distance",
+ "▁nom bre",
+ "▁nombr e",
+ "і я",
+ "oc us",
+ "o cus",
+ "ah n",
+ "a hn",
+ "ier te",
+ "iert e",
+ "i erte",
+ "▁d ar",
+ "▁da r",
+ "▁ dar",
+ "S I",
+ "lo ng",
+ "lon g",
+ "l ong",
+ "as ta",
+ "ast a",
+ "a sta",
+ "iv en",
+ "ive n",
+ "i ven",
+ "▁t old",
+ "▁to ld",
+ "▁G ru",
+ "▁Gr u",
+ "fo o",
+ "f oo",
+ "▁c alling",
+ "▁cal ling",
+ "▁call ing",
+ "iem bre",
+ "i embre",
+ "▁f uture",
+ "▁fut ure",
+ "pr ès",
+ "p rès",
+ "le ep",
+ "lee p",
+ "avig ation",
+ "PO ST",
+ "POS T",
+ "P OST",
+ "▁des cribed",
+ "▁descri bed",
+ "▁describe d",
+ "▁n och",
+ "▁no ch",
+ "un it",
+ "uni t",
+ "u nit",
+ "al len",
+ "all en",
+ "alle n",
+ "▁b ranch",
+ "▁br anch",
+ "▁bran ch",
+ "▁ branch",
+ "f a",
+ "▁f ill",
+ "▁fil l",
+ "▁fi ll",
+ "▁ fill",
+ "▁ob j",
+ "▁ obj",
+ "▁t ree",
+ "▁tr ee",
+ "▁tre e",
+ "▁ tree",
+ "▁wur den",
+ "▁wurde n",
+ "▁L iter",
+ "▁Li ter",
+ "▁Lit er",
+ "▁ Liter",
+ "ro t",
+ "r ot",
+ "sp lit",
+ "spl it",
+ "s plit",
+ "em ein",
+ "eme in",
+ "mod ule",
+ "C A",
+ "▁oper ator",
+ "▁opera tor",
+ "▁ operator",
+ "▁w rote",
+ "▁wr ote",
+ "▁J ack",
+ "▁Jac k",
+ "▁Ja ck",
+ "▁ Jack",
+ "olog ie",
+ "olo gie",
+ "▁A nt",
+ "▁An t",
+ "▁ Ant",
+ "те р",
+ "т ер",
+ "st ream",
+ "stre am",
+ "▁Q ue",
+ "▁Qu e",
+ "▁ Que",
+ "eps ilon",
+ "e psilon",
+ "no n",
+ "n on",
+ "st ein",
+ "ste in",
+ "▁s impl",
+ "▁sim pl",
+ "▁simp l",
+ "pu b",
+ "p ub",
+ "▁J uly",
+ "▁Jul y",
+ "▁Ju ly",
+ "▁n ature",
+ "▁natur e",
+ "▁nat ure",
+ "▁D atabase",
+ "▁Data base",
+ "▁Dat abase",
+ "▁ Database",
+ "ó l",
+ "ни м",
+ "н им",
+ "▁V I",
+ "▁ VI",
+ "êt re",
+ "ê tre",
+ "il es",
+ "ile s",
+ "i les",
+ "▁w el",
+ "▁we l",
+ "▁ wel",
+ "') ,",
+ "' ),",
+ "▁m ut",
+ "▁mu t",
+ "▁ mut",
+ "lo cation",
+ "loc ation",
+ "l ocation",
+ "▁there fore",
+ "el li",
+ "ell i",
+ "▁ І",
+ "n é",
+ "▁а в",
+ "led ge",
+ "l edge",
+ "▁con ver",
+ "▁conv er",
+ "í m",
+ "▁X V",
+ "▁ XV",
+ "vi der",
+ "vid er",
+ "v ider",
+ "▁Janu ary",
+ "▁Januar y",
+ "▁us ually",
+ "▁usual ly",
+ "▁re leased",
+ "▁release d",
+ "▁M i",
+ "He ad",
+ "H ead",
+ "il ler",
+ "ill er",
+ "ille r",
+ "▁j an",
+ "▁ja n",
+ "▁ jan",
+ "▁l etter",
+ "▁let ter",
+ "▁lett er",
+ "▁ letter",
+ "pr odu",
+ "pro du",
+ "prod u",
+ "p rodu",
+ "r d",
+ "▁C am",
+ "▁Ca m",
+ "▁ Cam",
+ ", '",
+ "▁ Ц",
+ "▁p ush",
+ "▁pu sh",
+ "▁ push",
+ "up date",
+ "▁may be",
+ "▁ maybe",
+ "H ttp",
+ "@ \"",
+ "ме р",
+ "м ер",
+ "ser vice",
+ "serv ice",
+ "par se",
+ "p arse",
+ "▁d ass",
+ "▁da ss",
+ "▁das s",
+ "ê n",
+ ") \"",
+ "mo re",
+ "mor e",
+ "m ore",
+ "/ *",
+ "▁m as",
+ "▁ma s",
+ "▁ mas",
+ "▁like ly",
+ "▁lik ely",
+ "▁ likely",
+ "▁m aterial",
+ "▁mate rial",
+ "▁mater ial",
+ "▁ material",
+ "▁[ [",
+ "▁ [[",
+ "▁long er",
+ "▁lon ger",
+ "ba l",
+ "b al",
+ "▁Arch iv",
+ "ig t",
+ "i gt",
+ "▁e gy",
+ "▁eg y",
+ "▁ egy",
+ "id ge",
+ "ig u",
+ "i gu",
+ "con f",
+ "▁in c",
+ "▁i nc",
+ "▁ inc",
+ "cons ulté",
+ "▁m ai",
+ "▁ma i",
+ "▁ mai",
+ "W ork",
+ "▁г ра",
+ "▁ гра",
+ "▁Oct ober",
+ "▁g lobal",
+ "▁glob al",
+ "▁glo bal",
+ "▁ global",
+ "▁s el",
+ "▁se l",
+ "▁ sel",
+ "▁m unicip",
+ "▁vi ol",
+ "▁vio l",
+ "▁Do es",
+ "▁ Does",
+ "▁\\ [",
+ "ско м",
+ "ск ом",
+ "с ком",
+ "▁com pos",
+ "▁comp os",
+ "▁ compos",
+ "б ря",
+ "в я",
+ "▁resp ons",
+ "▁ respons",
+ "▁consider ed",
+ "▁consid ered",
+ "▁J apan",
+ "▁Jap an",
+ "▁Ja pan",
+ "pe s",
+ "p es",
+ "os to",
+ "ost o",
+ "o sto",
+ "▁mil it",
+ "▁mi lit",
+ "S P",
+ "с ы",
+ "at tr",
+ "att r",
+ "ci l",
+ "c il",
+ "irect ory",
+ "av ing",
+ "avi ng",
+ "a ving",
+ "▁D el",
+ "▁De l",
+ "▁ Del",
+ "▁pr event",
+ "▁pre vent",
+ "▁prev ent",
+ "▁ prevent",
+ "id ade",
+ "ida de",
+ "idad e",
+ "i dade",
+ "gi t",
+ "g it",
+ "if orm",
+ "i form",
+ "ou ter",
+ "out er",
+ "oute r",
+ "o uter",
+ "in ct",
+ "inc t",
+ "le vel",
+ "lev el",
+ "at ever",
+ "ate ver",
+ "▁re pe",
+ "▁rep e",
+ "▁e xc",
+ "▁ex c",
+ "да р",
+ "д ар",
+ "St yle",
+ "▁Th omas",
+ "▁Thom as",
+ "el ine",
+ "eli ne",
+ "elin e",
+ "e line",
+ "▁ ж",
+ "un time",
+ "unt ime",
+ "▁l arg",
+ "▁la rg",
+ "▁lar g",
+ "▁ larg",
+ "Tr ue",
+ ". *",
+ "cre en",
+ "cr een",
+ "c reen",
+ "yle s",
+ "yl es",
+ "y les",
+ "▁trans l",
+ "▁tran sl",
+ "▁С о",
+ "ens ions",
+ "ension s",
+ "ä l",
+ "is se",
+ "iss e",
+ "▁v olt",
+ "▁vo lt",
+ "▁vol t",
+ "ci ally",
+ "cial ly",
+ "ni k",
+ "n ik",
+ ". ]",
+ "▁St adt",
+ "▁Sta dt",
+ "▁Stad t",
+ "м ы",
+ "fil l",
+ "fi ll",
+ "f ill",
+ "lo v",
+ "l ov",
+ "▁\" /",
+ "▁ \"/",
+ "S p",
+ "▁A ir",
+ "Cal l",
+ "Ca ll",
+ "C all",
+ "▁n ur",
+ "▁nu r",
+ "Che ck",
+ "C heck",
+ "ien ce",
+ "i ence",
+ "ef ined",
+ "▁в ре",
+ "ł o",
+ "d z",
+ "▁о р",
+ "▁ ор",
+ "ik er",
+ "ike r",
+ "i ker",
+ "ow a",
+ "o wa",
+ "ови ч",
+ "о вич",
+ "r é",
+ "O L",
+ "▁li near",
+ "▁line ar",
+ "▁lin ear",
+ "▁linea r",
+ "▁ linear",
+ "▁ex port",
+ "▁exp ort",
+ "▁ export",
+ "ah r",
+ "a hr",
+ "ic ial",
+ "ici al",
+ "icia l",
+ "i cial",
+ "Re p",
+ "R ep",
+ "▁n atural",
+ "▁natur al",
+ "▁nat ural",
+ "▁ natural",
+ "▁c op",
+ "▁co p",
+ "▁ cop",
+ "▁} )",
+ "▁ })",
+ "ç ões",
+ "z z",
+ "Wh at",
+ "W hat",
+ "▁H ouse",
+ "▁Ho use",
+ "▁Hou se",
+ "Re f",
+ "R ef",
+ "in ger",
+ "ing er",
+ "inge r",
+ "▁t aking",
+ "▁tak ing",
+ "▁ta king",
+ "n ě",
+ "▁Ein z",
+ "▁d am",
+ "▁da m",
+ "▁ dam",
+ "▁iss ues",
+ "▁issue s",
+ "▁issu es",
+ "▁ issues",
+ "Bu ilder",
+ "Build er",
+ "ed it",
+ "edi t",
+ "e dit",
+ "▁p rz",
+ "▁pr z",
+ "pass word",
+ "Ge ner",
+ "Gen er",
+ "G ener",
+ "ri m",
+ "r im",
+ "▁p arts",
+ "▁par ts",
+ "▁part s",
+ "▁ parts",
+ "-- -",
+ "- --",
+ "ig inal",
+ "igin al",
+ "igi nal",
+ "▁S ci",
+ "▁Sc i",
+ "▁m other",
+ "▁mo ther",
+ "▁mot her",
+ "▁moth er",
+ "re a",
+ "r ea",
+ "▁cont ainer",
+ "▁contain er",
+ "▁ container",
+ "д я",
+ "▁I P",
+ "▁ IP",
+ "▁n one",
+ "▁no ne",
+ "▁non e",
+ "▁ none",
+ "▁follow ed",
+ "▁p le",
+ "▁pl e",
+ "▁ ple",
+ "▁me asure",
+ "▁meas ure",
+ "▁ measure",
+ "▁t out",
+ "▁to ut",
+ "▁tou t",
+ "▁ tout",
+ "Ex t",
+ "E xt",
+ "▁T V",
+ "▁ TV",
+ "▁ex plain",
+ "▁exp lain",
+ "▁expla in",
+ "▁expl ain",
+ "▁p aper",
+ "▁pa per",
+ "▁pap er",
+ "▁ paper",
+ "ст і",
+ "с ті",
+ "w s",
+ "W ik",
+ "▁m m",
+ "▁ mm",
+ "▁N orm",
+ "▁No rm",
+ "▁Nor m",
+ "▁Ser ver",
+ "▁Serv er",
+ "▁ Server",
+ "fo nt",
+ "fon t",
+ "f ont",
+ "ec ause",
+ "eca use",
+ "T R",
+ "▁б и",
+ "▁ би",
+ "L a",
+ "▁e ns",
+ "▁en s",
+ "▁ ens",
+ "▁re tr",
+ "▁r etr",
+ "▁ret r",
+ "▁S il",
+ "▁Si l",
+ "▁ Sil",
+ "▁se quence",
+ "▁sequ ence",
+ "▁ sequence",
+ "ar c",
+ "a rc",
+ "I V",
+ "z á",
+ "▁And roid",
+ "▁ Android",
+ "▁S uper",
+ "▁Su per",
+ "▁Sup er",
+ "▁ Super",
+ "▁r oz",
+ "▁ro z",
+ "▁ roz",
+ "ov ie",
+ "ovi e",
+ "o vie",
+ "O m",
+ "▁W ell",
+ "▁We ll",
+ "▁Wel l",
+ "▁ Well",
+ "ma ke",
+ "m ake",
+ "or ph",
+ "orp h",
+ "▁J er",
+ "▁Je r",
+ "▁R os",
+ "▁Ro s",
+ "re ference",
+ "refer ence",
+ "▁fe atures",
+ "▁feature s",
+ "▁ features",
+ "▁G er",
+ "▁Ge r",
+ "▁L eg",
+ "▁Le g",
+ "▁ Leg",
+ "▁l ate",
+ "▁la te",
+ "▁lat e",
+ "▁ late",
+ "▁add itional",
+ "▁addition al",
+ "▁f lo",
+ "▁fl o",
+ "▁е го",
+ "▁ его",
+ "▁alg orithm",
+ "▁ algorithm",
+ "B A",
+ "ka r",
+ "k ar",
+ "I P",
+ "]) ;",
+ "] );",
+ "▁app ears",
+ "▁appear s",
+ "▁appe ars",
+ "y w",
+ "▁t emp",
+ "▁te mp",
+ "▁tem p",
+ "▁ temp",
+ "▁aus si",
+ "met hod",
+ "m ethod",
+ "▁p et",
+ "▁pe t",
+ "▁ pet",
+ "st rap",
+ "str ap",
+ "stra p",
+ "ar ning",
+ "arn ing",
+ "▁c ut",
+ "▁cu t",
+ "▁ cut",
+ "▁S a",
+ "▁ Sa",
+ "▁t rack",
+ "▁tr ack",
+ "▁tra ck",
+ "▁trac k",
+ "▁ track",
+ "▁emp loy",
+ "▁in de",
+ "▁i nde",
+ "▁ind e",
+ "▁ inde",
+ "ra v",
+ "r av",
+ "▁gener ate",
+ "▁gene rate",
+ "▁ generate",
+ "be s",
+ "b es",
+ "ar ts",
+ "art s",
+ "St atus",
+ "Stat us",
+ "ug e",
+ "u ge",
+ "al is",
+ "ali s",
+ "a lis",
+ "▁over ride",
+ "▁overrid e",
+ "▁ override",
+ "▁f i",
+ "▁ fi",
+ "▁l ost",
+ "▁lo st",
+ "▁los t",
+ "▁ lost",
+ "ot ed",
+ "ote d",
+ "o ted",
+ "▁r oom",
+ "▁ro om",
+ "▁ room",
+ "▁c alls",
+ "▁cal ls",
+ "▁call s",
+ "▁cons ist",
+ "ре н",
+ "р ен",
+ "▁vill age",
+ "▁vil lage",
+ "▁villa ge",
+ "dis t",
+ "di st",
+ "d ist",
+ "▁te chn",
+ "▁tec hn",
+ "▁ techn",
+ "en za",
+ "enz a",
+ "▁ро з",
+ "▁р оз",
+ "▁ роз",
+ "▁C atalog",
+ "▁Cat alog",
+ "▁Catal og",
+ "▁be com",
+ "▁bec om",
+ "ro ws",
+ "row s",
+ "r ows",
+ "▁N el",
+ "▁Ne l",
+ "com ple",
+ "comp le",
+ "▁pr emi",
+ "▁pre mi",
+ "▁prem i",
+ "▁r ot",
+ "▁ro t",
+ "▁ rot",
+ "▁Web links",
+ "▁foot ball",
+ "▁ football",
+ "▁com par",
+ "▁comp ar",
+ "▁l ive",
+ "▁li ve",
+ "▁liv e",
+ "▁ live",
+ "ки х",
+ "к их",
+ "▁equ ival",
+ "ca pe",
+ "cap e",
+ "c ape",
+ "▁G en",
+ "▁Ge n",
+ "▁ Gen",
+ "nd er",
+ "nde r",
+ "n der",
+ "▁V is",
+ "▁Vi s",
+ "▁ Vis",
+ "▁be hind",
+ "▁beh ind",
+ "ge rs",
+ "ger s",
+ "g ers",
+ "vo ke",
+ "v oke",
+ "▁m edia",
+ "▁me dia",
+ "▁med ia",
+ "▁medi a",
+ "▁ media",
+ "E X",
+ "th at",
+ "tha t",
+ "t hat",
+ "▁s ono",
+ "▁so no",
+ "▁son o",
+ "▁ sono",
+ "▁my sql",
+ "▁mysq l",
+ "▁ mysql",
+ "e v",
+ "▁r ule",
+ "▁ru le",
+ "▁ rule",
+ "до в",
+ "д ов",
+ "ac c",
+ "a cc",
+ "▁W HERE",
+ "▁WH ERE",
+ "▁ WHERE",
+ "ен е",
+ "е не",
+ "Gr id",
+ "G rid",
+ "▁j ul",
+ "▁ju l",
+ "▁m ort",
+ "▁mo rt",
+ "▁mor t",
+ "▁ mort",
+ "▁gener ated",
+ "▁generate d",
+ "▁ generated",
+ "en cia",
+ "enc ia",
+ "enci a",
+ "ac ter",
+ "act er",
+ "cl ud",
+ "▁s cen",
+ "▁sc en",
+ "▁cl osed",
+ "▁close d",
+ "▁clos ed",
+ "▁clo sed",
+ "▁ closed",
+ "▁Mich ael",
+ "▁ Michael",
+ "▁m ount",
+ "▁mo unt",
+ "▁mou nt",
+ "▁ mount",
+ ")$ ,",
+ ") $,",
+ "▁d rop",
+ "▁dr op",
+ "▁dro p",
+ "▁ drop",
+ "▁com bin",
+ "▁comb in",
+ "to col",
+ "▁go es",
+ "▁g eb",
+ "▁ge b",
+ "▁ geb",
+ "M D",
+ "▁An ton",
+ "▁Ant on",
+ "▁Anto n",
+ "▁$ (\"",
+ "▁$( \"",
+ "Te m",
+ "T em",
+ "▁c a",
+ "▁ ca",
+ "▁in stru",
+ "▁inst ru",
+ "ed s",
+ "e ds",
+ "▁t ool",
+ "▁to ol",
+ "▁too l",
+ "▁ tool",
+ "my s",
+ "m ys",
+ "▁r oute",
+ "▁ro ute",
+ "▁rout e",
+ "▁rou te",
+ "▁ route",
+ "\") )",
+ "\" ))",
+ "пр е",
+ "п ре",
+ "▁f loat",
+ "▁flo at",
+ "▁ float",
+ "▁service s",
+ "▁serv ices",
+ "▁servi ces",
+ "▁ services",
+ "▁ч и",
+ "▁ чи",
+ "к і",
+ "emb ly",
+ "embl y",
+ "ak er",
+ "ake r",
+ "a ker",
+ "▁S on",
+ "▁So n",
+ "▁M ath",
+ "▁Ma th",
+ "▁Mat h",
+ "▁ Math",
+ "as se",
+ "ass e",
+ "ous ly",
+ "lic ations",
+ "lication s",
+ "▁r u",
+ "▁ ru",
+ "▁щ о",
+ "▁ що",
+ "▁Con st",
+ "▁Cons t",
+ "▁ Const",
+ "▁im medi",
+ "▁imm edi",
+ "F O",
+ "or o",
+ "o ro",
+ "▁p roduction",
+ "▁produ ction",
+ "▁product ion",
+ "▁ production",
+ "re i",
+ "r ei",
+ "▁j query",
+ "▁ jquery",
+ "an nt",
+ "ann t",
+ "▁Wh ile",
+ "▁s n",
+ "▁ sn",
+ "▁го ди",
+ "▁год и",
+ "Form at",
+ "For mat",
+ "▁s tar",
+ "▁st ar",
+ "▁sta r",
+ "▁ star",
+ "▁S en",
+ "▁Se n",
+ "▁k o",
+ "▁ ko",
+ "NA ME",
+ "N AME",
+ "▁p rés",
+ "▁pr és",
+ "▁pré s",
+ "▁ prés",
+ "ch a",
+ "c ha",
+ "wh at",
+ "w hat",
+ "om in",
+ "omi n",
+ "o min",
+ "end ant",
+ "enda nt",
+ "h y",
+ "▁ob serv",
+ "▁obser v",
+ "▁obs erv",
+ "▁ observ",
+ "▁p refer",
+ "▁pre fer",
+ "у н",
+ "▁con structor",
+ "▁construct or",
+ "▁constru ctor",
+ "▁ constructor",
+ "b s",
+ "▁m ac",
+ "▁ma c",
+ "▁ mac",
+ "▁B re",
+ "▁Br e",
+ "▁ Bre",
+ "▁Inst it",
+ "▁Ins tit",
+ "▁st ory",
+ "▁stor y",
+ "▁sto ry",
+ "▁ story",
+ "▁s ymbol",
+ "▁sym bol",
+ "▁ symbol",
+ "el es",
+ "ele s",
+ "e les",
+ "ß e",
+ "as ing",
+ "asi ng",
+ "a sing",
+ "▁w est",
+ "▁we st",
+ "▁ west",
+ "ia ns",
+ "ian s",
+ "i ans",
+ "▁m aster",
+ "▁ma ster",
+ "▁mas ter",
+ "▁ master",
+ "е з",
+ "▁w ays",
+ "▁way s",
+ "▁wa ys",
+ "▁ ways",
+ "b m",
+ "▁p ick",
+ "▁pi ck",
+ "▁pic k",
+ "▁ pick",
+ "▁de part",
+ "▁dep art",
+ "B ack",
+ "en k",
+ "li pse",
+ "lip se",
+ "▁m ath",
+ "▁ma th",
+ "▁mat h",
+ "▁ math",
+ "▁Fran cis",
+ "▁Franc is",
+ "▁Dec ember",
+ "f s",
+ "ru m",
+ "r um",
+ "▁develop ment",
+ "▁ development",
+ "L T",
+ "er nel",
+ "ern el",
+ "erne l",
+ "▁Tr ue",
+ "▁Tru e",
+ "▁ True",
+ "▁M ore",
+ "▁Mor e",
+ "▁Mo re",
+ "▁ More",
+ "ran gle",
+ "r angle",
+ "▁cond itions",
+ "▁condition s",
+ "Option s",
+ "Opt ions",
+ "O ptions",
+ "▁g li",
+ "▁gl i",
+ "▁oper ation",
+ "▁opera tion",
+ "▁ operation",
+ "é k",
+ "ach t",
+ "ac ht",
+ "a cht",
+ "ight s",
+ "igh ts",
+ "▁m ist",
+ "▁mi st",
+ "▁mis t",
+ "an da",
+ "and a",
+ "▁ener gy",
+ "▁energ y",
+ "▁ energy",
+ "▁ж е",
+ "▁ же",
+ "▁w omen",
+ "▁wo men",
+ "ak t",
+ "a kt",
+ "▁C H",
+ "▁ CH",
+ "ge bra",
+ "geb ra",
+ "▁me et",
+ "i u",
+ "we ll",
+ "wel l",
+ "w ell",
+ "ö l",
+ "▁govern ment",
+ "▁J os",
+ "▁Jo s",
+ "ie g",
+ "i eg",
+ "▁s yntax",
+ "▁syn tax",
+ "▁ syntax",
+ "fi x",
+ "f ix",
+ "▁P et",
+ "▁Pe t",
+ "j query",
+ "▁c ard",
+ "▁car d",
+ "▁ca rd",
+ "▁ card",
+ "▁pr incipal",
+ "▁princi pal",
+ "▁princip al",
+ "▁d ru",
+ "▁dr u",
+ "▁ dru",
+ "▁ter rit",
+ "▁п ов",
+ "▁по в",
+ "▁ пов",
+ "▁S S",
+ "▁ SS",
+ "ри и",
+ "tr es",
+ "tre s",
+ "t res",
+ "ag ne",
+ "agn e",
+ "ly ing",
+ "l ying",
+ "til de",
+ "t ilde",
+ "ber n",
+ "be rn",
+ "b ern",
+ "en ter",
+ "ent er",
+ "ente r",
+ "Pe r",
+ "P er",
+ "▁s omet",
+ "▁so met",
+ "▁some t",
+ "▁som et",
+ "Lo ad",
+ "li ce",
+ "lic e",
+ "l ice",
+ "▁s ous",
+ "▁so us",
+ "▁sou s",
+ "▁Lo uis",
+ "▁Lou is",
+ "▁ Louis",
+ "▁log ic",
+ "▁ logic",
+ "▁O ther",
+ "▁Ot her",
+ "▁ Other",
+ "▁c ir",
+ "▁ci r",
+ "▁ cir",
+ "é v",
+ "ch ron",
+ "chr on",
+ "▁h an",
+ "▁ha n",
+ "▁ han",
+ "▁m argin",
+ "▁mar gin",
+ "▁marg in",
+ "▁ margin",
+ "W indow",
+ "ère s",
+ "è res",
+ "ny ch",
+ "n ych",
+ "pu sh",
+ "pus h",
+ "p ush",
+ "bol ds",
+ "bold s",
+ "b olds",
+ "▁l ayout",
+ "▁lay out",
+ "▁ layout",
+ "▁[ `",
+ "Ch ar",
+ "C har",
+ "▁C ap",
+ "▁Ca p",
+ "▁ Cap",
+ "bolds ymbol",
+ "bold symbol",
+ "▁R oman",
+ "▁Ro man",
+ "▁Rom an",
+ "▁Roma n",
+ "▁M ax",
+ "▁Ma x",
+ "▁ Max",
+ ": (",
+ "▁C ode",
+ "▁Co de",
+ "▁ Code",
+ "is ing",
+ "isi ng",
+ "i sing",
+ "▁st ates",
+ "▁stat es",
+ "▁state s",
+ "▁sta tes",
+ "▁ states",
+ "▁ex isting",
+ "▁exist ing",
+ "su pport",
+ "sup port",
+ "supp ort",
+ "▁re search",
+ "▁res earch",
+ "lic ate",
+ "lica te",
+ "l icate",
+ "va ri",
+ "var i",
+ "v ari",
+ "▁b ij",
+ "▁bi j",
+ "▁ bij",
+ "▁a ppe",
+ "▁app e",
+ "▁ap pe",
+ "▁ appe",
+ "▁happ ens",
+ "▁happen s",
+ "\\ \"",
+ "▁conc ern",
+ "▁conce rn",
+ "we st",
+ "w est",
+ "▁sa ying",
+ "▁say ing",
+ "pi d",
+ "p id",
+ "▁rec ogn",
+ "▁ recogn",
+ "▁H et",
+ "▁He t",
+ "Ch ild",
+ "▁c s",
+ "▁ cs",
+ "\\ ,",
+ "▁c lean",
+ "▁cle an",
+ "▁ clean",
+ "le ctions",
+ "lect ions",
+ "lection s",
+ "ac cess",
+ "acc ess",
+ "a ccess",
+ "в у",
+ "пр о",
+ "п ро",
+ "ac ity",
+ "aci ty",
+ "a city",
+ "▁O ff",
+ "▁Of f",
+ "▁ Off",
+ "▁eas ily",
+ "è que",
+ "▁j ako",
+ "▁ja ko",
+ "▁jak o",
+ "▁i z",
+ "▁ iz",
+ "▁H a",
+ "▁ Ha",
+ "▁D et",
+ "▁De t",
+ "▁ Det",
+ "▁for ma",
+ "▁form a",
+ "sch e",
+ "sc he",
+ "s che",
+ "swer s",
+ "sw ers",
+ "s wers",
+ "▁of fer",
+ "▁off er",
+ "qu ired",
+ "quire d",
+ "qui red",
+ "User s",
+ "Use rs",
+ "Us ers",
+ "U sers",
+ "▁su bst",
+ "▁sub st",
+ "▁subs t",
+ "▁ subst",
+ "> (",
+ "▁g round",
+ "▁gr ound",
+ "▁gro und",
+ "▁ ground",
+ "un n",
+ "u nn",
+ "ro d",
+ "r od",
+ "sp e",
+ "s pe",
+ "urs or",
+ "▁le ave",
+ "er k",
+ "▁t al",
+ "▁ta l",
+ "▁ tal",
+ "▁b ottom",
+ "▁bot tom",
+ "▁bott om",
+ "▁ bottom",
+ "I O",
+ "▁pop ular",
+ "▁popula r",
+ "▁popul ar",
+ "ig o",
+ "i go",
+ "▁T ime",
+ "▁Tim e",
+ "▁Ti me",
+ "▁ Time",
+ "val ues",
+ "value s",
+ "valu es",
+ "▁L oc",
+ "▁Lo c",
+ "▁ Loc",
+ "▁C lub",
+ "▁Cl ub",
+ "▁an che",
+ "▁anc he",
+ "▁anch e",
+ "▁ anche",
+ "ia ł",
+ "i ał",
+ "і ї",
+ "Om ega",
+ "▁loc ated",
+ "▁locate d",
+ "▁ located",
+ "U rl",
+ "▁E sp",
+ "▁Es p",
+ "▁ Esp",
+ "л ы",
+ "ц ь",
+ "ul ate",
+ "ula te",
+ "u late",
+ "▁j oin",
+ "▁jo in",
+ "▁ join",
+ "av es",
+ "ave s",
+ "a ves",
+ "ve t",
+ "v et",
+ "li o",
+ "l io",
+ "re move",
+ "rem ove",
+ "▁t oken",
+ "▁to ken",
+ "▁ token",
+ "▁op tim",
+ "▁opt im",
+ "▁ optim",
+ "▁c laim",
+ "▁cla im",
+ "olog ical",
+ "▁c ss",
+ "▁cs s",
+ "▁ css",
+ "▁al though",
+ "▁ although",
+ "▁p riv",
+ "▁pr iv",
+ "▁pri v",
+ "▁ priv",
+ "▁B a",
+ "ü l",
+ "entic ation",
+ "enti cation",
+ "▁v en",
+ "▁ve n",
+ "▁ ven",
+ "Ser ver",
+ "Serv er",
+ "▁C ong",
+ "▁Con g",
+ "▁Co ng",
+ "NE T",
+ "N ET",
+ "CO N",
+ "C ON",
+ "d t",
+ "per ties",
+ "pert ies",
+ "▁e pis",
+ "▁ep is",
+ "wik ipedia",
+ "▁eng ine",
+ "▁ engine",
+ "▁f er",
+ "▁fe r",
+ "▁ fer",
+ "get Element",
+ "▁C la",
+ "▁Cl a",
+ "▁ Cla",
+ "ř í",
+ "▁r om",
+ "▁ro m",
+ "▁ rom",
+ "var epsilon",
+ "vare psilon",
+ "▁pr ime",
+ "▁prim e",
+ "▁pri me",
+ "▁ prime",
+ "is try",
+ "ist ry",
+ "istr y",
+ "pe cted",
+ "pect ed",
+ "pec ted",
+ "p ected",
+ "or age",
+ "ora ge",
+ "o rage",
+ "▁t ouch",
+ "▁to uch",
+ "▁tou ch",
+ "▁ touch",
+ "▁[ '",
+ "▁ ['",
+ "▁d an",
+ "▁da n",
+ "▁ dan",
+ "E m",
+ "ac iones",
+ "acion es",
+ "aci ones",
+ "a ciones",
+ "Ca n",
+ "C an",
+ "▁w hom",
+ "▁wh om",
+ "▁who m",
+ "▁be havior",
+ "▁behav ior",
+ "▁str ings",
+ "▁string s",
+ "▁ strings",
+ "▁E urop",
+ "▁Euro p",
+ "▁Eu rop",
+ "▁Eur op",
+ "▁R om",
+ "▁Ro m",
+ "ci rc",
+ "cir c",
+ "c irc",
+ "▁p un",
+ "▁pu n",
+ "▁reg ister",
+ "▁ register",
+ "b untu",
+ "ra in",
+ "rai n",
+ "r ain",
+ "O b",
+ "T A",
+ "▁s ometimes",
+ "▁some times",
+ "▁somet imes",
+ "▁m ent",
+ "▁me nt",
+ "▁men t",
+ "▁ ment",
+ "▁in teger",
+ "▁inte ger",
+ "▁ integer",
+ "▁J ac",
+ "▁Ja c",
+ "▁ Jac",
+ "le gate",
+ "leg ate",
+ "ot hing",
+ "oth ing",
+ "o thing",
+ "▁s ound",
+ "▁so und",
+ "▁sou nd",
+ "▁ sound",
+ "la ces",
+ "lace s",
+ "lac es",
+ "l aces",
+ "▁Б а",
+ "r b",
+ "d i",
+ "ле ния",
+ "▁them selves",
+ "▁B lack",
+ "▁Bl ack",
+ "▁Bla ck",
+ "▁ Black",
+ "▁s ettings",
+ "▁sett ings",
+ "▁setting s",
+ "▁ settings",
+ "▁n orm",
+ "▁no rm",
+ "▁nor m",
+ "▁ norm",
+ "▁r uns",
+ "▁run s",
+ "▁ru ns",
+ "▁N OT",
+ "▁NO T",
+ "▁ NOT",
+ "K E",
+ "▁per haps",
+ "▁ Я",
+ "▁m ol",
+ "▁mo l",
+ "▁a ns",
+ "▁an s",
+ "▁ ans",
+ "at re",
+ "atr e",
+ "a tre",
+ "▁D ies",
+ "▁Die s",
+ "▁Di es",
+ "To ken",
+ "T oken",
+ "an ie",
+ "ani e",
+ "a nie",
+ "▁all owed",
+ "▁allow ed",
+ "▁allo wed",
+ "▁ allowed",
+ "R ange",
+ "▁G ro",
+ "▁Gr o",
+ "vi a",
+ "v ia",
+ "ut orial",
+ "uto rial",
+ "utor ial",
+ "ens or",
+ "enso r",
+ "est ival",
+ "esti val",
+ "); \r",
+ ") ;\r",
+ "кра ї",
+ "▁turn ed",
+ "▁tur ned",
+ "sc ope",
+ "scop e",
+ "s cope",
+ "▁b ien",
+ "▁bi en",
+ "= $",
+ "▁ext ension",
+ "▁extens ion",
+ "▁ extension",
+ "at ore",
+ "ator e",
+ "ato re",
+ "▁Р о",
+ "▁spec ify",
+ "ed u",
+ "e du",
+ "Dat os",
+ "D atos",
+ "▁st ored",
+ "▁stor ed",
+ "▁store d",
+ "▁sto red",
+ "▁p arse",
+ "▁par se",
+ "▁ parse",
+ "▁an swers",
+ "▁answer s",
+ "▁ans wers",
+ "il ls",
+ "ill s",
+ "▁he ard",
+ "▁hear d",
+ "l u",
+ "▁T HE",
+ "▁TH E",
+ "▁ THE",
+ "▁g én",
+ "▁gé n",
+ "▁f ul",
+ "▁fu l",
+ "▁ ful",
+ "e z",
+ "▁P rem",
+ "▁Pr em",
+ "▁Pre m",
+ "th en",
+ "the n",
+ "t hen",
+ "d p",
+ "сь кого",
+ "сько го",
+ "ськ ого",
+ "▁S i",
+ "▁ Si",
+ "ç o",
+ "Ed it",
+ "E dit",
+ "кі в",
+ "к ів",
+ "▁Л и",
+ "▁S ing",
+ "▁Si ng",
+ "▁Sin g",
+ "▁ Sing",
+ "▁c ateg",
+ "▁cat eg",
+ "Eq u",
+ "E qu",
+ "▁g uer",
+ "▁gu er",
+ "▁ guer",
+ "W idth",
+ "▁Christ ian",
+ "st at",
+ "sta t",
+ "s tat",
+ "W rite",
+ "▁w oman",
+ "▁wo man",
+ "wo od",
+ "w ood",
+ "V is",
+ "ра з",
+ "▁$ $\\",
+ "▁$$ \\",
+ "ode r",
+ "od er",
+ "o der",
+ "▁b ool",
+ "▁bo ol",
+ "▁ bool",
+ "▁intern ational",
+ "но сть",
+ "ност ь",
+ "нос ть",
+ "▁Rich ard",
+ "▁Ric hard",
+ "▁add ition",
+ "▁Mus ic",
+ "▁ Music",
+ "▁a ber",
+ "▁ab er",
+ "t ó",
+ "▁h ier",
+ "▁hi er",
+ "ug h",
+ "u gh",
+ "▁p ob",
+ "▁po b",
+ "▁t ables",
+ "▁table s",
+ "▁tab les",
+ "▁ta bles",
+ "▁ tables",
+ "D o",
+ "▁high er",
+ "ps i",
+ "p si",
+ "r á",
+ "▁act ive",
+ "▁activ e",
+ "▁ active",
+ "▁T able",
+ "▁Ta ble",
+ "▁Tab le",
+ "▁ Table",
+ "њ е",
+ "▁de scription",
+ "▁des cription",
+ "▁descri ption",
+ "▁descript ion",
+ "▁ description",
+ "▁se emed",
+ "▁see med",
+ "▁seem ed",
+ "ís t",
+ "í st",
+ "▁my self",
+ "▁m enu",
+ "▁me nu",
+ "▁men u",
+ "▁ menu",
+ "de l",
+ "d el",
+ "▁ ž",
+ "el e",
+ "e le",
+ "A ut",
+ "▁г ру",
+ "mu t",
+ "m ut",
+ "oo n",
+ "o on",
+ "as c",
+ "a sc",
+ "bu g",
+ "b ug",
+ "▁m oved",
+ "▁mov ed",
+ "▁mo ved",
+ "▁move d",
+ "C L",
+ "▁data s",
+ "▁dat as",
+ "▁ datas",
+ "S O",
+ "о ло",
+ "▁Ge org",
+ "▁re ach",
+ "▁r each",
+ ": \"",
+ "▁e valu",
+ "▁ev alu",
+ "▁eval u",
+ "▁ evalu",
+ "▁H el",
+ "▁He l",
+ "▁ Hel",
+ "▁R iver",
+ "▁Riv er",
+ "▁Ri ver",
+ "▁А р",
+ "▁ Ар",
+ "// //",
+ "/// /",
+ "/ ///",
+ "▁s ets",
+ "▁se ts",
+ "▁set s",
+ "▁ sets",
+ "▁O lymp",
+ "Ad apter",
+ ". '",
+ "ov ern",
+ "over n",
+ "ove rn",
+ "o vern",
+ "▁L ord",
+ "▁Lo rd",
+ "▁Lor d",
+ "! --",
+ "jp g",
+ "j pg",
+ "im ento",
+ "iment o",
+ "imen to",
+ "▁Pro f",
+ "▁Pr of",
+ "▁ach ieve",
+ "▁achiev e",
+ "} :",
+ "▁in cor",
+ "▁inc or",
+ "▁o nder",
+ "▁on der",
+ "▁onde r",
+ "▁ onder",
+ "en gl",
+ "eng l",
+ "AB LE",
+ "▁M ary",
+ "▁Mar y",
+ "▁Ma ry",
+ "▁w aren",
+ "▁war en",
+ "▁wa ren",
+ "la ge",
+ "lag e",
+ "l age",
+ "De c",
+ "D ec",
+ "анг л",
+ "en cias",
+ "enc ias",
+ "encia s",
+ "enci as",
+ "ле й",
+ "л ей",
+ "▁M achine",
+ "▁Mach ine",
+ "▁ Machine",
+ "▁А н",
+ "ud a",
+ "u da",
+ "▁ ś",
+ "▁X X",
+ "▁ XX",
+ "on ly",
+ "ле ние",
+ "▁tamb ién",
+ "ne j",
+ "n ej",
+ "▁rel ative",
+ "▁relativ e",
+ "▁ relative",
+ "▁h ours",
+ "▁ho urs",
+ "▁hour s",
+ "▁ind eed",
+ "▁inde ed",
+ "un do",
+ "und o",
+ "in gu",
+ "ing u",
+ "ar ea",
+ "are a",
+ "a rea",
+ "▁C reate",
+ "▁Cre ate",
+ "▁ Create",
+ "be it",
+ "bei t",
+ "▁rem oved",
+ "▁remove d",
+ "▁remov ed",
+ "ma ster",
+ "mas ter",
+ "maste r",
+ "m aster",
+ "ha us",
+ "h aus",
+ "▁B ern",
+ "▁Be rn",
+ "▁Ber n",
+ "▁sp eed",
+ "▁spe ed",
+ "▁ speed",
+ "▁B ay",
+ "▁Ba y",
+ "▁A tt",
+ "▁At t",
+ "▁ Att",
+ "▁N one",
+ "▁No ne",
+ "▁Non e",
+ "▁ None",
+ "app lication",
+ "ü d",
+ "▁f it",
+ "▁fi t",
+ "▁ fit",
+ "▁M aria",
+ "▁Mar ia",
+ "▁Ma ria",
+ "▁Mari a",
+ "▁n ord",
+ "▁no rd",
+ "▁nor d",
+ "▁s plit",
+ "▁sp lit",
+ "▁spl it",
+ "▁ split",
+ "▁st ru",
+ "▁str u",
+ "▁ stru",
+ "▁o fficial",
+ "▁off icial",
+ "▁offic ial",
+ "▁offici al",
+ "▁exec ute",
+ "▁execut e",
+ "▁ execute",
+ "ou ve",
+ "ouv e",
+ "o uve",
+ "{ {",
+ "▁A p",
+ "▁ Ap",
+ "▁к у",
+ "▁ ку",
+ "I L",
+ "▁ ^",
+ "di m",
+ "d im",
+ "▁set up",
+ "▁ setup",
+ "с к",
+ "▁sh are",
+ "▁ share",
+ "▁min utes",
+ "▁minute s",
+ "gl e",
+ "g le",
+ "oc o",
+ "o co",
+ "st ell",
+ "ste ll",
+ "▁C oun",
+ "▁Co un",
+ "▁Cou n",
+ "▁tem per",
+ "▁temp er",
+ "▁ temper",
+ "ke it",
+ "сь кий",
+ "a o",
+ "▁L ong",
+ "▁Lo ng",
+ "▁ Long",
+ "( &",
+ "ка н",
+ "к ан",
+ "▁d ens",
+ "▁de ns",
+ "▁den s",
+ "▁ dens",
+ "Bu t",
+ "B ut",
+ "X X",
+ "DA TE",
+ "DAT E",
+ "D ATE",
+ "ga n",
+ "g an",
+ ".) .",
+ ". ).",
+ "▁en try",
+ "▁ent ry",
+ "▁entr y",
+ "▁ entry",
+ "inst all",
+ "▁з на",
+ "▁ зна",
+ "▁S om",
+ "▁So m",
+ "Comm and",
+ "ße n",
+ "ß en",
+ "▁start ing",
+ "▁star ting",
+ "▁s to",
+ "▁st o",
+ "▁ sto",
+ "I G",
+ "▁min im",
+ "▁mi nim",
+ "▁mini m",
+ "▁exp licit",
+ "▁explic it",
+ "▁by tes",
+ "▁byte s",
+ "▁ bytes",
+ "▁par ty",
+ "▁part y",
+ "▁ party",
+ "to ber",
+ "t ober",
+ "▁G rand",
+ "▁Gr and",
+ "▁Gra nd",
+ "▁Gran d",
+ "▁V or",
+ "▁Vo r",
+ "▁ Vor",
+ "▁l eur",
+ "▁le ur",
+ "▁ leur",
+ "Doc ument",
+ "D ocument",
+ "er c",
+ "e rc",
+ "ens ive",
+ "C P",
+ "en v",
+ "▁arg uments",
+ "▁argument s",
+ "▁ arguments",
+ "▁G ran",
+ "▁Gr an",
+ "▁Gra n",
+ "ar ily",
+ "ari ly",
+ "▁l in",
+ "▁li n",
+ "▁ lin",
+ "t n",
+ "( -",
+ "ge q",
+ "g eq",
+ "▁F amil",
+ "▁Fa mil",
+ "▁Fam il",
+ "▁ Famil",
+ "▁Б о",
+ "▁t our",
+ "▁to ur",
+ "▁tou r",
+ "▁n av",
+ "▁na v",
+ "▁ nav",
+ "▁proper ly",
+ "▁M rs",
+ "▁Mr s",
+ "▁M el",
+ "▁Me l",
+ "▁sc ale",
+ "▁scal e",
+ "▁ scale",
+ "ast ic",
+ "d s",
+ "▁S ir",
+ "▁Si r",
+ "▁Ch urch",
+ "}^ {\\",
+ "}^{ \\",
+ "} ^{\\",
+ "yo u",
+ "y ou",
+ "/ .",
+ "S o",
+ "▁br ought",
+ "▁r ole",
+ "▁ro le",
+ "▁rol e",
+ "▁ role",
+ "▁S ur",
+ "▁Su r",
+ "▁ Sur",
+ "▁f ond",
+ "▁fo nd",
+ "▁fon d",
+ "▁g es",
+ "▁ge s",
+ "▁ ges",
+ "ż e",
+ "et en",
+ "ete n",
+ "e ten",
+ "▁é tait",
+ "▁ét ait",
+ "▁ était",
+ "SE R",
+ "S ER",
+ "▁ко торы",
+ "▁кото ры",
+ "▁equ ation",
+ "▁ equation",
+ "as px",
+ "asp x",
+ "▁A fr",
+ "▁Af r",
+ "▁d it",
+ "▁di t",
+ "▁ dit",
+ "em pty",
+ "emp ty",
+ "empt y",
+ "al ement",
+ "ale ment",
+ "alem ent",
+ "a lement",
+ "wr ap",
+ "w rap",
+ "▁B et",
+ "▁Be t",
+ "▁col lect",
+ "▁coll ect",
+ "▁colle ct",
+ "▁ collect",
+ "▁g it",
+ "▁gi t",
+ "▁ git",
+ "▁v ie",
+ "▁vi e",
+ "▁ vie",
+ "▁. .",
+ "▁ ..",
+ "ро й",
+ "▁< ?",
+ "▁ ",
+ "▁ed uc",
+ "k l",
+ "ens is",
+ "▁O R",
+ "▁ OR",
+ "▁H i",
+ "▁ Hi",
+ "▁C our",
+ "▁Co ur",
+ "▁Cou r",
+ "б ы",
+ "ce rt",
+ "cer t",
+ "c ert",
+ "▁G es",
+ "▁Ge s",
+ "ess or",
+ "esso r",
+ "Ma in",
+ "M ain",
+ "▁ лю",
+ "ca de",
+ "c ade",
+ "do t",
+ "d ot",
+ "au gh",
+ "aug h",
+ "a ugh",
+ "hi b",
+ "h ib",
+ "▁autom atically",
+ "▁auto matically",
+ "▁automat ically",
+ "▁automatic ally",
+ "▁sp ir",
+ "pr esent",
+ "pre sent",
+ "pres ent",
+ "▁Febru ary",
+ "▁Februar y",
+ "▁E lle",
+ "▁El le",
+ "▁Ell e",
+ "cus tom",
+ "c ustom",
+ "▁pro get",
+ "▁admin istr",
+ "▁administ r",
+ "A A",
+ "▁b orn",
+ "▁bo rn",
+ "▁bor n",
+ "▁ born",
+ "▁Col lege",
+ "▁Colleg e",
+ "▁Coll ege",
+ "at hol",
+ "ath ol",
+ "` )",
+ "ier re",
+ "▁r an",
+ "▁ra n",
+ "▁ ran",
+ "▁prof ession",
+ "▁profess ion",
+ "og en",
+ "oge n",
+ "o gen",
+ "}_ {\\",
+ "}_{ \\",
+ "} _{\\",
+ "▁act ivity",
+ "▁activ ity",
+ "▁ activity",
+ "▁sc roll",
+ "▁scr oll",
+ "▁ scroll",
+ "▁pro ve",
+ "▁pr ove",
+ "▁prov e",
+ "ibr ary",
+ "i brary",
+ "er ies",
+ "erie s",
+ "eri es",
+ "e ries",
+ "Re ad",
+ "R ead",
+ "ye ar",
+ "y ear",
+ "▁l ang",
+ "▁la ng",
+ "▁lan g",
+ "▁ lang",
+ "De t",
+ "D et",
+ "▁k new",
+ "▁kn ew",
+ "▁kne w",
+ "▁prote cted",
+ "▁protect ed",
+ "▁prot ected",
+ "▁ protected",
+ "▁w or",
+ "▁wo r",
+ "▁ wor",
+ "▁e ffic",
+ "▁eff ic",
+ "▁r ég",
+ "▁ré g",
+ "▁the ory",
+ "▁ theory",
+ "▁pub lished",
+ "▁publish ed",
+ "re al",
+ "rea l",
+ "▁T our",
+ "▁To ur",
+ "▁dur ante",
+ "▁durant e",
+ "ä s",
+ "▁pos itive",
+ "▁posit ive",
+ "▁for ward",
+ "▁ forward",
+ "▁R el",
+ "▁Re l",
+ "▁ Rel",
+ "{ \"",
+ "par k",
+ "p ark",
+ "▁U m",
+ "▁e er",
+ "en ta",
+ "ent a",
+ "▁i mag",
+ "▁im ag",
+ "но ї",
+ "pi el",
+ "pie l",
+ "p iel",
+ "▁j Query",
+ "▁ jQuery",
+ "is me",
+ "ism e",
+ "ch ni",
+ "chn i",
+ "or gan",
+ "org an",
+ "▁ar gs",
+ "▁arg s",
+ "▁ args",
+ "oi r",
+ "o ir",
+ "he im",
+ "ri an",
+ "ria n",
+ "r ian",
+ "el ess",
+ "eles s",
+ "ele ss",
+ "e less",
+ "us es",
+ "use s",
+ "ди н",
+ "д ин",
+ "ic ión",
+ "ici ón",
+ "ició n",
+ "i ción",
+ "▁ind ust",
+ "▁indu st",
+ "▁ indust",
+ "▁w ish",
+ "▁wis h",
+ "án y",
+ "á ny",
+ "oc a",
+ "o ca",
+ "▁ang ular",
+ "▁ angular",
+ "ie ved",
+ "ieve d",
+ "iev ed",
+ "▁occ ur",
+ "▁oc cur",
+ "SE LECT",
+ "on ia",
+ "oni a",
+ "o nia",
+ "ad min",
+ "▁B est",
+ "▁Be st",
+ "▁Bes t",
+ "▁ Best",
+ "▁э то",
+ "о гра",
+ "▁l oss",
+ "▁lo ss",
+ "▁los s",
+ "▁ loss",
+ "▁b al",
+ "▁ba l",
+ "▁ bal",
+ "▁Р ос",
+ "▁Ро с",
+ "▁care er",
+ "▁п е",
+ "▁ пе",
+ "I X",
+ "▁f all",
+ "▁fa ll",
+ "▁fal l",
+ "▁ fall",
+ "▁R ob",
+ "▁Ro b",
+ "▁ Rob",
+ "▁O P",
+ "▁ OP",
+ "en ed",
+ "ene d",
+ "e ned",
+ "graph ics",
+ "▁c oming",
+ "▁com ing",
+ "▁co ming",
+ "▁ coming",
+ "Up date",
+ "▁d ied",
+ "▁di ed",
+ "▁die d",
+ "ed en",
+ "ede n",
+ "e den",
+ "▁a bs",
+ "▁ab s",
+ "▁ abs",
+ "▁in ner",
+ "▁inn er",
+ "▁inne r",
+ "▁ inner",
+ "▁t rav",
+ "▁tr av",
+ "▁tra v",
+ "сто я",
+ "z ą",
+ "é p",
+ "▁Gr oup",
+ "▁Gro up",
+ "▁ Group",
+ "▁c el",
+ "▁ce l",
+ "▁ cel",
+ "▁st uff",
+ "▁situ ation",
+ "▁$ {",
+ "▁ ${",
+ "ac le",
+ "a cle",
+ "▁pur pose",
+ "▁F ire",
+ "▁Fir e",
+ "▁ Fire",
+ "▁O h",
+ "▁ Oh",
+ "▁Se cond",
+ "▁Sec ond",
+ "▁ Second",
+ "▁up load",
+ "▁ upload",
+ "os tał",
+ "ost ał",
+ "osta ł",
+ "ю щи",
+ "Aut h",
+ "A uth",
+ "▁show ing",
+ "▁sho wing",
+ "▁complet ely",
+ "▁complete ly",
+ "av el",
+ "ave l",
+ "a vel",
+ "b d",
+ "▁pro ced",
+ "▁proc ed",
+ "▁ Ö",
+ "cont rol",
+ "contr ol",
+ "▁th ank",
+ "▁than k",
+ "und red",
+ "▁t om",
+ "▁to m",
+ "▁ tom",
+ "▁ex amples",
+ "▁example s",
+ "▁exam ples",
+ "▁ examples",
+ "▁re member",
+ "▁rem ember",
+ "▁ра бо",
+ "▁ рабо",
+ "▁poss ib",
+ "▁det ect",
+ "▁p oor",
+ "▁po or",
+ "▁O p",
+ "▁ Op",
+ "▁cent ury",
+ "▁ century",
+ "ut ter",
+ "utt er",
+ "▁lo gin",
+ "▁log in",
+ "▁ login",
+ "un st",
+ "uns t",
+ "Out put",
+ "▁other wise",
+ "la n",
+ "l an",
+ "ту р",
+ "т ур",
+ "▁с ов",
+ "▁со в",
+ "▁ сов",
+ "▁gr oups",
+ "▁group s",
+ "▁gro ups",
+ "▁ groups",
+ "ri p",
+ "r ip",
+ "▁s hell",
+ "▁sh ell",
+ "▁she ll",
+ "▁ shell",
+ "▁d istrict",
+ "▁dist rict",
+ "▁rec ords",
+ "▁record s",
+ "▁si è",
+ "fort un",
+ "en ty",
+ "ent y",
+ "▁T re",
+ "▁Tr e",
+ "▁ch anging",
+ "▁chang ing",
+ "сле д",
+ "aug ht",
+ "augh t",
+ "▁de ep",
+ "▁ deep",
+ "sub set",
+ "ag y",
+ "a gy",
+ "en dar",
+ "end ar",
+ "enda r",
+ "ja x",
+ "j ax",
+ "O M",
+ "E l",
+ "im ate",
+ "ima te",
+ "imat e",
+ "i mate",
+ "ar do",
+ "ard o",
+ "▁p lot",
+ "▁pl ot",
+ "▁ plot",
+ "▁vis it",
+ "▁b ug",
+ "▁bu g",
+ "▁ bug",
+ "▁в се",
+ "▁вс е",
+ "▁op ened",
+ "▁open ed",
+ "▁re pla",
+ "▁rep la",
+ "▁Hen ry",
+ "▁p p",
+ "▁ pp",
+ "ba s",
+ "b as",
+ "▁d ark",
+ "▁dar k",
+ "▁ dark",
+ "▁Mart in",
+ "▁ Martin",
+ "▁re source",
+ "▁res ource",
+ "▁ resource",
+ "il ing",
+ "ili ng",
+ "i ling",
+ "▁w atch",
+ "▁wat ch",
+ "▁ watch",
+ "re place",
+ "rep lace",
+ "▁re lease",
+ "▁ release",
+ "Lo cation",
+ "Loc ation",
+ "L ocation",
+ "▁le arning",
+ "▁learn ing",
+ "▁lear ning",
+ "▁ learning",
+ "me nu",
+ "men u",
+ "m enu",
+ "▁all ows",
+ "▁allow s",
+ "▁allo ws",
+ "ъ р",
+ "L ength",
+ "▁wh atever",
+ "▁what ever",
+ "▁p ages",
+ "▁page s",
+ "▁pa ges",
+ "▁pag es",
+ "▁ pages",
+ "▁comp iler",
+ "▁compile r",
+ "▁ compiler",
+ "▁так же",
+ "▁P an",
+ "▁Pa n",
+ "▁ Pan",
+ "comm and",
+ "▁ro ad",
+ "▁ road",
+ "▁un less",
+ "▁ unless",
+ "` ?",
+ "▁dis cover",
+ "▁disc over",
+ "▁disco ver",
+ "▁о н",
+ "▁ он",
+ "} ]",
+ "bo ur",
+ "b our",
+ "▁C ould",
+ "▁Co uld",
+ "▁Cou ld",
+ "▁ Could",
+ "▁re gex",
+ "▁reg ex",
+ "▁ regex",
+ "▁p s",
+ "▁ ps",
+ "C D",
+ "и з",
+ "▁w ife",
+ "am enti",
+ "ament i",
+ "amen ti",
+ "▁f air",
+ "▁fa ir",
+ "▁D B",
+ "▁ DB",
+ "▁C up",
+ "▁Cu p",
+ "en en",
+ "ene n",
+ "e nen",
+ "aj ax",
+ "aja x",
+ "a jax",
+ "oth èque",
+ "▁se iner",
+ "▁sein er",
+ "▁seine r",
+ "▁sei ner",
+ "ic ker",
+ "ick er",
+ "i cker",
+ "á m",
+ "ex change",
+ "ol es",
+ "ole s",
+ "o les",
+ "I F",
+ "▁Д о",
+ "oh n",
+ "o hn",
+ "▁g row",
+ "▁gr ow",
+ "▁gro w",
+ "▁T hus",
+ "▁Th us",
+ "sp ec",
+ "spe c",
+ "s pec",
+ "▁h atte",
+ "▁ha tte",
+ "▁hat te",
+ "# ,",
+ "all el",
+ "alle l",
+ "▁r ate",
+ "▁ra te",
+ "▁rat e",
+ "▁ rate",
+ "▁cent ral",
+ "▁ central",
+ "▁V an",
+ "▁Va n",
+ "if orn",
+ "R un",
+ "▁stud y",
+ "▁X ML",
+ "▁ XML",
+ "▁C he",
+ "▁Ch e",
+ "▁ Che",
+ "▁be aut",
+ "mi d",
+ "m id",
+ "▁adv ance",
+ "V er",
+ "т я",
+ "▁h ands",
+ "▁hand s",
+ "▁han ds",
+ "▁l ay",
+ "▁la y",
+ "▁ lay",
+ "▁ š",
+ "▁O S",
+ "▁ OS",
+ "▁{ }",
+ "▁ {}",
+ "Pr e",
+ "P re",
+ "▁H all",
+ "▁Ha ll",
+ "▁Hal l",
+ "im p",
+ "i mp",
+ "▁s un",
+ "▁su n",
+ "▁ sun",
+ "▁st eps",
+ "▁ste ps",
+ "▁step s",
+ "▁ steps",
+ "▁j ud",
+ "▁ju d",
+ "▁ jud",
+ "qu i",
+ "q ui",
+ "▁b oot",
+ "▁bo ot",
+ "▁ boot",
+ "▁% >",
+ "▁В а",
+ "no st",
+ "nos t",
+ "n ost",
+ "▁n em",
+ "▁ne m",
+ "▁ nem",
+ "▁p en",
+ "▁pe n",
+ "▁ pen",
+ "Op en",
+ "O pen",
+ "▁ch urch",
+ "ко н",
+ "к он",
+ "▁a verage",
+ "▁aver age",
+ "▁ave rage",
+ "▁com ments",
+ "▁comm ents",
+ "▁comment s",
+ "▁ comments",
+ "▁correspond ing",
+ "lev ant",
+ "▁b ed",
+ "▁be d",
+ "▁ bed",
+ "▁mean ing",
+ "V ersion",
+ "Lin k",
+ "L ink",
+ "be l",
+ "b el",
+ "▁ext ract",
+ "▁extra ct",
+ "▁extr act",
+ "▁ extract",
+ "ś ć",
+ "▁I V",
+ "▁ IV",
+ "▁I r",
+ "▁comp uter",
+ "▁comput er",
+ "▁compute r",
+ "▁a ffect",
+ "▁af fect",
+ "▁aff ect",
+ "▁С та",
+ "▁Ст а",
+ "A X",
+ "so rt",
+ "s ort",
+ "▁s pecies",
+ "▁spe cies",
+ "▁spec ies",
+ "▁specie s",
+ "▁ species",
+ "▁O per",
+ "▁Op er",
+ "▁ Oper",
+ "▁h ash",
+ "▁ha sh",
+ "▁has h",
+ "▁ hash",
+ "ch es",
+ "che s",
+ "c hes",
+ "▁Einz eln",
+ "▁Einzel n",
+ "▁ke ys",
+ "▁key s",
+ "▁ keys",
+ "▁mar zo",
+ "▁inter pret",
+ "▁interpre t",
+ "ho od",
+ "h ood",
+ "▁co ordin",
+ "▁coord in",
+ "ö s",
+ "ra ge",
+ "rag e",
+ "r age",
+ "et z",
+ "e tz",
+ "iz a",
+ "i za",
+ "де р",
+ "д ер",
+ "ü t",
+ "^ *",
+ "▁mod ify",
+ "▁term in",
+ "▁ter min",
+ "▁ termin",
+ "▁c red",
+ "▁cre d",
+ "▁cr ed",
+ "▁ cred",
+ "zo n",
+ "z on",
+ "ну ю",
+ "н ую",
+ "▁m ie",
+ "▁mi e",
+ "▁' '",
+ "▁ ''",
+ "▁M os",
+ "▁Mo s",
+ "▁conne cted",
+ "▁connect ed",
+ "▁conn ected",
+ "▁ connected",
+ "N O",
+ "▁comp ile",
+ "▁ compile",
+ "▁\" \\",
+ "▁ \"\\",
+ "▁c at",
+ "▁ca t",
+ "▁ cat",
+ "f iddle",
+ "ut a",
+ "u ta",
+ "Acc ess",
+ "Ac cess",
+ "A ccess",
+ "▁S to",
+ "▁St o",
+ "▁ Sto",
+ "▁B ur",
+ "▁Bu r",
+ "▁n orth",
+ "▁nor th",
+ "G amma",
+ "▁al loc",
+ "▁all oc",
+ "▁allo c",
+ "▁ alloc",
+ "In it",
+ "I nit",
+ "▁L ink",
+ "▁Lin k",
+ "▁ Link",
+ "ial ize",
+ "iali ze",
+ "Im pl",
+ "Imp l",
+ "ou pe",
+ "oup e",
+ "rop ri",
+ "▁G old",
+ "▁Go ld",
+ "▁Gol d",
+ "▁s olo",
+ "▁so lo",
+ "▁sol o",
+ "▁D ist",
+ "▁Dis t",
+ "▁Di st",
+ "▁ Dist",
+ ", -",
+ "na v",
+ "n av",
+ "▁al ert",
+ "▁ale rt",
+ "▁ alert",
+ "es is",
+ "esi s",
+ "▁O s",
+ "▁ Os",
+ "// /",
+ "/ //",
+ "▁f eb",
+ "▁fe b",
+ "▁- ->",
+ "▁-- >",
+ "▁ -->",
+ "fo ot",
+ "foo t",
+ "f oot",
+ "▁F ried",
+ "▁Fr ied",
+ "▁Fri ed",
+ "▁Einzeln ach",
+ "▁Einzel nach",
+ "▁re v",
+ "▁r ev",
+ "▁ rev",
+ "ze it",
+ "▁S tat",
+ "▁St at",
+ "▁Sta t",
+ "▁ Stat",
+ "▁S eg",
+ "▁Se g",
+ "▁ Seg",
+ "▁b lo",
+ "▁bl o",
+ "▁ blo",
+ "wi ck",
+ "w ick",
+ "E L",
+ "ca ption",
+ "cap tion",
+ "capt ion",
+ "he ader",
+ "head er",
+ "▁pres ident",
+ "▁presiden t",
+ "▁mult ip",
+ "▁multi p",
+ "▁mul tip",
+ "▁ multip",
+ "▁Einzelnach weise",
+ "▁se ine",
+ "▁sein e",
+ "▁sei ne",
+ "? ”",
+ "Func tion",
+ "Fun ction",
+ "F unction",
+ "▁St and",
+ "▁Sta nd",
+ "▁Stan d",
+ "▁ Stand",
+ "▁F unction",
+ "▁Fun ction",
+ "▁ Function",
+ "▁? >",
+ "▁ ?>",
+ "▁B ill",
+ "▁Bi ll",
+ "▁Bil l",
+ "▁s pect",
+ "▁sp ect",
+ "▁spe ct",
+ "▁spec t",
+ "▁ spect",
+ "▁re direct",
+ "▁red irect",
+ "▁ redirect",
+ "ru pt",
+ "rup t",
+ "r upt",
+ "▁w alk",
+ "▁wal k",
+ "▁ walk",
+ "в ши",
+ "spring framework",
+ "pl ace",
+ "pla ce",
+ "p lace",
+ "é ho",
+ "Ent ity",
+ "▁Ser vice",
+ "▁Serv ice",
+ "▁ Service",
+ "in te",
+ "int e",
+ "▁tr aining",
+ "▁tra ining",
+ "▁train ing",
+ "▁ training",
+ "▁( `",
+ "▁ (`",
+ "фо р",
+ "ф ор",
+ "▁к ра",
+ "▁ кра",
+ "au r",
+ "a ur",
+ "▁f etch",
+ "▁fet ch",
+ "▁ fetch",
+ "▁ †",
+ "▁m ême",
+ "▁ même",
+ "▁( '",
+ "▁ ('",
+ "at ively",
+ "ative ly",
+ "ativ ely",
+ "▁exec ut",
+ "ä ch",
+ "▁Catalog ue",
+ "ba sed",
+ "base d",
+ "bas ed",
+ "b ased",
+ "Att ribute",
+ "▁s pring",
+ "▁sp ring",
+ "▁spr ing",
+ "▁ spring",
+ "ph one",
+ "phon e",
+ "т ра",
+ "▁п и",
+ "▁ пи",
+ "те ра",
+ "тер а",
+ "т ера",
+ "▁` \\",
+ "▁O d",
+ "On e",
+ "O ne",
+ "se nd",
+ "sen d",
+ "s end",
+ "bo n",
+ "b on",
+ "▁ °",
+ "M O",
+ "▁as king",
+ "▁ask ing",
+ "▁o ù",
+ "▁ing år",
+ "▁test ing",
+ "▁ testing",
+ "▁ф а",
+ "▁ фа",
+ "▁B ook",
+ "▁Bo ok",
+ "▁ Book",
+ "im m",
+ "i mm",
+ "▁pro gress",
+ "▁ progress",
+ "br o",
+ "b ro",
+ "F irst",
+ "▁p hot",
+ "▁ph ot",
+ "▁O N",
+ "▁ ON",
+ "Tem plate",
+ "Temp late",
+ "develop er",
+ "an not",
+ "ann ot",
+ "anno t",
+ "▁> =",
+ "▁ >=",
+ "miss ion",
+ "m ission",
+ "▁k tó",
+ "▁ któ",
+ "p c",
+ "ba ch",
+ "b ach",
+ "ze nt",
+ "zen t",
+ "z ent",
+ "ue d",
+ "u ed",
+ "▁o nes",
+ "▁on es",
+ "▁one s",
+ "▁ ones",
+ "ј и",
+ "▁r out",
+ "▁ro ut",
+ "▁rou t",
+ "▁ rout",
+ "▁К и",
+ "Pos t",
+ "Po st",
+ "P ost",
+ "ці ї",
+ "ц ії",
+ "▁V ir",
+ "▁Vi r",
+ "ne k",
+ "n ek",
+ "ag ing",
+ "agi ng",
+ "agin g",
+ "a ging",
+ "▁о к",
+ "▁ ок",
+ "iz ont",
+ "izo nt",
+ "izon t",
+ "▁ag osto",
+ "▁ago sto",
+ "▁cho ose",
+ "▁ choose",
+ "▁ \r",
+ "▁system s",
+ "▁syst ems",
+ "lo ss",
+ "los s",
+ "l oss",
+ "ien te",
+ "ient e",
+ "i ente",
+ "▁C re",
+ "▁Cr e",
+ "▁ Cre",
+ "▁con tra",
+ "▁cont ra",
+ "▁contr a",
+ "▁ contra",
+ "um s",
+ "u ms",
+ "▁begin ning",
+ "em y",
+ "e my",
+ "ist ics",
+ "istic s",
+ "isti cs",
+ "▁s erved",
+ "▁ser ved",
+ "▁serv ed",
+ "▁serve d",
+ "Do wn",
+ "D own",
+ "option s",
+ "opt ions",
+ "o ptions",
+ "▁G overn",
+ "▁Go vern",
+ "▁B Y",
+ "▁ BY",
+ "▁j est",
+ "▁je st",
+ "▁ jest",
+ "t é",
+ "▁cont inue",
+ "▁contin ue",
+ "▁continu e",
+ "▁ continue",
+ "pe rs",
+ "per s",
+ "p ers",
+ "▁eas ier",
+ "▁c os",
+ "▁co s",
+ "▁ cos",
+ "es so",
+ "ess o",
+ "> >",
+ "Ne t",
+ "N et",
+ "▁B or",
+ "▁Bo r",
+ "▁C r",
+ "▁ Cr",
+ "▁trans fer",
+ "▁C SS",
+ "▁CS S",
+ "▁ CSS",
+ "▁fin ns",
+ "▁х о",
+ "▁ хо",
+ "us ername",
+ "user name",
+ "▁con stru",
+ "▁const ru",
+ "▁p ain",
+ "▁pa in",
+ "▁T em",
+ "▁Te m",
+ "▁ Tem",
+ "▁spec ified",
+ "▁b rit",
+ "▁br it",
+ "▁ brit",
+ "ски е",
+ "с кие",
+ "ir k",
+ "ra pper",
+ "rap per",
+ "r apper",
+ "▁c ounter",
+ "▁co unter",
+ "▁count er",
+ "▁coun ter",
+ "▁ counter",
+ "▁[ \"",
+ "▁ [\"",
+ "ode d",
+ "od ed",
+ "o ded",
+ "да н",
+ "д ан",
+ "pro perty",
+ "ha rd",
+ "har d",
+ "h ard",
+ "ist rict",
+ "istr ict",
+ ") /",
+ "▁P our",
+ "▁Po ur",
+ "▁W here",
+ "▁Wh ere",
+ "▁Whe re",
+ "▁ Where",
+ "▁= ==",
+ "▁== =",
+ "▁ ===",
+ "▁s owie",
+ "▁so wie",
+ "▁sow ie",
+ "▁П ро",
+ "▁d ess",
+ "▁de ss",
+ "▁des s",
+ "▁ dess",
+ "▁t ras",
+ "▁tr as",
+ "▁tra s",
+ "▁ tras",
+ "▁у ча",
+ "▁O ver",
+ "▁ Over",
+ "no te",
+ "not e",
+ "n ote",
+ "▁Amer ica",
+ "▁ America",
+ "c p",
+ "▁gr ande",
+ "▁gra nde",
+ "▁gran de",
+ "▁grand e",
+ "M e",
+ ") -",
+ "Mod e",
+ "Mo de",
+ "M ode",
+ "▁pass ing",
+ "▁pas sing",
+ "▁g iving",
+ "▁giv ing",
+ "▁gi ving",
+ "C l",
+ "} /",
+ "Me nu",
+ "Men u",
+ "M enu",
+ "! !",
+ "ang ular",
+ "angu lar",
+ "▁la unch",
+ "▁ launch",
+ "var phi",
+ "▁Joh ann",
+ "▁Johan n",
+ "▁for each",
+ "▁fore ach",
+ "▁ foreach",
+ "r ó",
+ "se qu",
+ "seq u",
+ "s equ",
+ "if i",
+ "i fi",
+ "A m",
+ "ar p",
+ "a rp",
+ "▁b uffer",
+ "▁buf fer",
+ "▁buff er",
+ "▁ buffer",
+ "▁n i",
+ "▁ ni",
+ "▁m ix",
+ "▁mi x",
+ "▁ mix",
+ "▁M useum",
+ "▁Muse um",
+ "▁me ant",
+ "▁mean t",
+ "as i",
+ "a si",
+ "▁k an",
+ "▁ka n",
+ "▁ kan",
+ "пра в",
+ "п рав",
+ "Com p",
+ "Co mp",
+ "C omp",
+ "is toire",
+ "ist oire",
+ "isto ire",
+ "if ul",
+ "i ful",
+ "je r",
+ "j er",
+ "iss ions",
+ "ission s",
+ "Re source",
+ "Res ource",
+ "▁в оз",
+ "▁во з",
+ "▁S T",
+ "▁ ST",
+ "▁sol utions",
+ "▁solution s",
+ "▁be long",
+ "▁bel ong",
+ "▁As soci",
+ "▁Ass oci",
+ "▁ Associ",
+ "c f",
+ "▁M är",
+ "▁g rid",
+ "▁gr id",
+ "▁ grid",
+ "M ult",
+ "▁require s",
+ "▁requ ires",
+ "k k",
+ "▁t each",
+ "▁te ach",
+ "▁tea ch",
+ "eme inde",
+ "emein de",
+ "▁s quare",
+ "▁squ are",
+ "▁ square",
+ "▁ко ман",
+ "▁ком ан",
+ "▁E vent",
+ "▁Ev ent",
+ "▁Even t",
+ "▁ Event",
+ "▁r ules",
+ "▁rule s",
+ "▁ru les",
+ "▁ rules",
+ "▁b ur",
+ "▁bu r",
+ "▁ bur",
+ "▁e ing",
+ "▁ein g",
+ "▁ eing",
+ "▁M ai",
+ "▁Ma i",
+ "▁n am",
+ "▁na m",
+ "▁ nam",
+ "▁s lä",
+ "▁sl ä",
+ "hö r",
+ "h ör",
+ "▁t ip",
+ "▁ti p",
+ "▁ tip",
+ "▁Liter atur",
+ "▁s cope",
+ "▁sc ope",
+ "▁scop e",
+ "▁ scope",
+ "over line",
+ "▁ex it",
+ "▁ exit",
+ ") ?",
+ "be t",
+ "b et",
+ "▁v ict",
+ "▁vi ct",
+ "▁vic t",
+ "Of f",
+ "O ff",
+ "▁appro xim",
+ "▁G eb",
+ "▁Ge b",
+ "kt op",
+ "k top",
+ "he it",
+ "▁ Ю",
+ "tem plate",
+ "temp late",
+ "ро н",
+ "р он",
+ "▁u no",
+ "▁un o",
+ "▁ uno",
+ "Ser v",
+ "Se rv",
+ "S erv",
+ "▁frame work",
+ "▁ framework",
+ "oper ator",
+ "opera tor",
+ "▁gener ally",
+ "▁general ly",
+ "▁h undred",
+ "▁d ivers",
+ "▁di vers",
+ "▁div ers",
+ "▁diver s",
+ "ov i",
+ "o vi",
+ "▁r és",
+ "▁ré s",
+ "▁ rés",
+ "ab s",
+ "a bs",
+ "▁g al",
+ "▁ga l",
+ "▁ gal",
+ "ça is",
+ "ç ais",
+ "▁fe et",
+ "▁fee t",
+ "▁v irtual",
+ "▁virt ual",
+ "▁ virtual",
+ "cz y",
+ "c zy",
+ "ск у",
+ "с ку",
+ ". /",
+ "h u",
+ "an cy",
+ "anc y",
+ "▁recomm end",
+ "▁п ід",
+ "▁пі д",
+ "▁m oney",
+ "▁mon ey",
+ "▁mo ney",
+ "▁vers ions",
+ "▁version s",
+ "▁ versions",
+ "▁hel ps",
+ "▁help s",
+ "▁H or",
+ "▁Ho r",
+ "▁ Hor",
+ "Item s",
+ "It ems",
+ "lo ok",
+ "l ook",
+ "con nect",
+ "conne ct",
+ "conn ect",
+ "an ges",
+ "ang es",
+ "ange s",
+ "View Controller",
+ "el ijk",
+ "elij k",
+ "eli jk",
+ "e lijk",
+ "▁occ up",
+ "▁oc cup",
+ "▁ occup",
+ "▁ed itor",
+ "▁edit or",
+ "▁ editor",
+ "au to",
+ "aut o",
+ "a uto",
+ "ö g",
+ "▁second s",
+ "▁sec onds",
+ "▁ seconds",
+ "▁ob vious",
+ "v m",
+ "ak es",
+ "ake s",
+ "a kes",
+ "▁g egen",
+ "▁ge gen",
+ "▁geg en",
+ "▁t il",
+ "▁ti l",
+ "▁ til",
+ "ject ion",
+ "je ction",
+ "j ection",
+ "ле ння",
+ "лен ня",
+ "▁oper ations",
+ "▁operation s",
+ "▁E ast",
+ "og y",
+ "o gy",
+ "▁P olit",
+ "▁Pol it",
+ "▁Po lit",
+ "ut en",
+ "ute n",
+ "u ten",
+ "▁Jose ph",
+ "\" `",
+ "▁Comp any",
+ "▁ Company",
+ "▁call back",
+ "▁ callback",
+ "▁s en",
+ "▁se n",
+ "▁ sen",
+ "cc ión",
+ "cció n",
+ "c ción",
+ "▁associ ated",
+ "▁associate d",
+ "▁cont aining",
+ "▁contain ing",
+ "▁pract ice",
+ "elij ke",
+ "elijk e",
+ "e lijke",
+ "ok e",
+ "o ke",
+ "ér a",
+ "é ra",
+ "un s",
+ "u ns",
+ "an ta",
+ "ant a",
+ "ve y",
+ "v ey",
+ "z u",
+ "▁B es",
+ "▁Be s",
+ "▁F lor",
+ "▁Fl or",
+ "▁Flo r",
+ "me m",
+ "m em",
+ "yc z",
+ "y cz",
+ "▁arch itect",
+ "▁an ni",
+ "▁ann i",
+ "▁ anni",
+ "▁cont act",
+ "▁ contact",
+ "Y PE",
+ "▁C as",
+ "▁Ca s",
+ "▁по лу",
+ "▁пол у",
+ "ov o",
+ "o vo",
+ "▁b ring",
+ "▁br ing",
+ "▁con cept",
+ "▁conce pt",
+ "▁j s",
+ "▁ js",
+ "▁Refer encias",
+ "em ble",
+ "emb le",
+ "embl e",
+ "▁ н",
+ "▁supp orted",
+ "▁support ed",
+ "▁ supported",
+ "Bi g",
+ "B ig",
+ "▁H ans",
+ "▁Ha ns",
+ "▁Han s",
+ "er v",
+ "e rv",
+ "▁M aj",
+ "▁Ma j",
+ "▁ar riv",
+ "▁arr iv",
+ "▁H ave",
+ "▁Ha ve",
+ "▁Hav e",
+ "▁ Have",
+ "▁prob ability",
+ "▁probabil ity",
+ "▁P op",
+ "▁Po p",
+ "▁ Pop",
+ "▁P ass",
+ "▁Pa ss",
+ "▁Pas s",
+ "▁ Pass",
+ "to ken",
+ "tok en",
+ "t oken",
+ "Pro vider",
+ "▁R a",
+ "Re ader",
+ "Read er",
+ "oot h",
+ "oo th",
+ "o oth",
+ "la p",
+ "l ap",
+ "▁ass ist",
+ "ad ow",
+ "ado w",
+ "▁t ests",
+ "▁test s",
+ "▁ tests",
+ "сс и",
+ "с си",
+ "▁k ing",
+ "▁ki ng",
+ "▁kin g",
+ "▁ king",
+ "lang le",
+ "lan gle",
+ "l angle",
+ "▁S um",
+ "▁Su m",
+ "▁ Sum",
+ "O IN",
+ "▁se curity",
+ "▁sec urity",
+ "▁ security",
+ "ni s",
+ "n is",
+ ".. /",
+ ". ./",
+ "▁bas ic",
+ "▁ basic",
+ "un ity",
+ "uni ty",
+ "unit y",
+ "` :",
+ "▁ко то",
+ "ko w",
+ "k ow",
+ "▁Bibli othèque",
+ "as ion",
+ "asi on",
+ "al o",
+ "a lo",
+ "if est",
+ "ife st",
+ "i fest",
+ "▁nov embre",
+ "▁p eu",
+ "▁pe u",
+ "▁ Ж",
+ "en schaft",
+ "ensch aft",
+ "cl us",
+ "c lus",
+ "ј у",
+ "He ight",
+ "ú n",
+ "▁t ur",
+ "▁tu r",
+ "▁ide as",
+ "▁idea s",
+ "▁c es",
+ "▁ce s",
+ "▁ ces",
+ "fr ak",
+ "fra k",
+ "f rak",
+ "▁pre mier",
+ "▁prem ier",
+ "▁premi er",
+ "it ation",
+ "ita tion",
+ "itat ion",
+ "▁s é",
+ "HT ML",
+ "▁Ro yal",
+ "▁Roy al",
+ "сь кої",
+ "сько ї",
+ "▁by te",
+ "▁ byte",
+ "P S",
+ "▁s egu",
+ "▁se gu",
+ "▁seg u",
+ "▁ segu",
+ "in en",
+ "ine n",
+ "i nen",
+ "▁Gre at",
+ "▁К у",
+ "▁ex ternal",
+ "▁ext ernal",
+ "▁extern al",
+ "▁ external",
+ "T itle",
+ "To p",
+ "T op",
+ "Pro cess",
+ "Proc ess",
+ "it ät",
+ "itä t",
+ "▁` /",
+ "▁se cret",
+ "▁sec ret",
+ "▁secre t",
+ "▁ secret",
+ "pos itory",
+ "▁pot ential",
+ "▁B ud",
+ "▁Bu d",
+ "name s",
+ "na mes",
+ "nam es",
+ "n ames",
+ "as ons",
+ "ason s",
+ "aso ns",
+ "stack exchange",
+ "back ground",
+ "пе р",
+ "п ер",
+ "со в",
+ "с ов",
+ "aft er",
+ "af ter",
+ "a fter",
+ "▁p ero",
+ "▁per o",
+ "▁pe ro",
+ "▁so ftware",
+ "▁soft ware",
+ "▁ software",
+ "▁s ed",
+ "▁se d",
+ "▁ sed",
+ "▁array s",
+ "▁arr ays",
+ "tm p",
+ "t mp",
+ "▁a sp",
+ "▁as p",
+ "▁ asp",
+ "sc ale",
+ "scal e",
+ "▁L at",
+ "▁La t",
+ "▁ Lat",
+ "an al",
+ "ana l",
+ "a nal",
+ "▁g em",
+ "▁ge m",
+ "▁ gem",
+ "P U",
+ "▁Al tri",
+ "▁Alt ri",
+ "Th at",
+ "T hat",
+ "▁Н и",
+ "if act",
+ "ifa ct",
+ "i fact",
+ "Add ress",
+ "▁s outh",
+ "▁so uth",
+ "▁sou th",
+ "▁sout h",
+ "▁form ula",
+ "▁Col leg",
+ "▁Coll eg",
+ "▁і н",
+ "▁ ін",
+ "kt ion",
+ "k tion",
+ "▁s ac",
+ "▁sa c",
+ "S H",
+ "aj o",
+ "a jo",
+ "et c",
+ "e tc",
+ "v c",
+ "` ](",
+ "▁D ur",
+ "▁Du r",
+ "▁М е",
+ "▁Sm ith",
+ "▁ Smith",
+ "it ems",
+ "ite ms",
+ "item s",
+ "C K",
+ "el o",
+ "e lo",
+ "▁pl ugin",
+ "▁plug in",
+ "▁ plugin",
+ "▁s erie",
+ "▁se rie",
+ "▁ser ie",
+ "▁ serie",
+ "ien ne",
+ "ienn e",
+ "i enne",
+ "▁и ли",
+ "Ma r",
+ "M ar",
+ "▁Im age",
+ "▁ Image",
+ "go t",
+ "g ot",
+ "an das",
+ "and as",
+ "anda s",
+ "▁mat ches",
+ "▁match es",
+ "▁ matches",
+ "▁w orth",
+ "▁wor th",
+ "▁ worth",
+ "▁D eb",
+ "▁De b",
+ "▁ Deb",
+ "▁c ache",
+ "▁ca che",
+ "▁ cache",
+ "▁f elt",
+ "▁fe lt",
+ "▁fel t",
+ "er sch",
+ "ers ch",
+ "iz es",
+ "ize s",
+ "i zes",
+ "Op er",
+ "O per",
+ "▁Jah re",
+ "▁Jahr e",
+ "▁Ja hre",
+ "▁comm une",
+ "▁commun e",
+ "th read",
+ "▁n y",
+ "▁ ny",
+ "de c",
+ "d ec",
+ "ou w",
+ "o uw",
+ "▁sur face",
+ "▁P or",
+ "▁Po r",
+ "▁St reet",
+ "▁Stre et",
+ "пр и",
+ "п ри",
+ "▁c andid",
+ "▁can did",
+ "▁cand id",
+ "▁Re turn",
+ "▁Ret urn",
+ "▁ Return",
+ "▁K om",
+ "▁Ko m",
+ "gr u",
+ "g ru",
+ "▁т и",
+ "▁ ти",
+ "[ \\",
+ "▁dep ends",
+ "▁depend s",
+ "▁in flu",
+ "▁inf lu",
+ "▁infl u",
+ "▁to wards",
+ "▁toward s",
+ "ain ed",
+ "ai ned",
+ "aine d",
+ "a ined",
+ "▁r ank",
+ "▁ran k",
+ "▁ rank",
+ "▁Janu ar",
+ "▁com ponents",
+ "▁compon ents",
+ "▁component s",
+ "▁ components",
+ "ge st",
+ "ges t",
+ "g est",
+ "getElement ById",
+ "▁check ed",
+ "▁ checked",
+ "air s",
+ "ai rs",
+ "a irs",
+ "jo in",
+ "j oin",
+ "▁d ead",
+ "▁de ad",
+ "▁h it",
+ "▁hi t",
+ "▁ hit",
+ "én y",
+ "é ny",
+ "▁equ ivalent",
+ "▁equival ent",
+ "▁П ре",
+ "▁app ropri",
+ "Pa ss",
+ "P ass",
+ "▁pr imer",
+ "▁prim er",
+ "▁pri mer",
+ "▁prime r",
+ "engl isch",
+ "▁app ar",
+ "▁ap par",
+ "▁D uring",
+ "▁Du ring",
+ "▁Dur ing",
+ "▁know ledge",
+ "▁tr igger",
+ "▁trig ger",
+ "▁ trigger",
+ "▁c ore",
+ "▁cor e",
+ "▁co re",
+ "▁ core",
+ "▁O l",
+ "▁P rodu",
+ "▁Pro du",
+ "▁Pr odu",
+ "▁ Produ",
+ "▁F ern",
+ "▁Fe rn",
+ "▁Fer n",
+ "▁ Fern",
+ "▁на ча",
+ "▁ нача",
+ "T e",
+ "▁M ot",
+ "▁Mo t",
+ "er ve",
+ "erv e",
+ "тв о",
+ "т во",
+ "▁m id",
+ "▁mi d",
+ "▁ mid",
+ "▁fin ally",
+ "▁final ly",
+ "air es",
+ "ai res",
+ "aire s",
+ "a ires",
+ "▁es pecially",
+ "▁espe cially",
+ "▁especial ly",
+ "▁t ut",
+ "▁tu t",
+ "▁rece ive",
+ "ad re",
+ "adr e",
+ "▁ne igh",
+ "▁nei gh",
+ "kt et",
+ "kte t",
+ "il de",
+ "ild e",
+ "▁rad io",
+ "▁radi o",
+ "▁ radio",
+ "▁d river",
+ "▁dr iver",
+ "▁drive r",
+ "▁dri ver",
+ "▁driv er",
+ "▁ driver",
+ "ли сь",
+ "end encies",
+ "enden cies",
+ "▁I E",
+ "▁ IE",
+ "▁s aved",
+ "▁sa ved",
+ "▁sav ed",
+ "▁save d",
+ "▁ saved",
+ "ff ect",
+ "ffe ct",
+ "f fect",
+ "▁Way back",
+ "ia t",
+ "i at",
+ "▁p adding",
+ "▁pad ding",
+ "▁ padding",
+ "wind ow",
+ "w indow",
+ "ти че",
+ "▁m ur",
+ "▁mu r",
+ "ac tor",
+ "act or",
+ "a ctor",
+ "▁H an",
+ "▁Ha n",
+ "он аль",
+ "она ль",
+ "о наль",
+ "▁g ar",
+ "▁ga r",
+ "▁ gar",
+ "▁famil jen",
+ "ó s",
+ "▁n ationale",
+ "▁national e",
+ "▁nation ale",
+ "▁nat ionale",
+ "▁p ré",
+ "▁pr é",
+ "de d",
+ "d ed",
+ "on al",
+ "ona l",
+ "o nal",
+ "▁Pres ident",
+ "▁\\ ,",
+ "▁ \\,",
+ "▁place d",
+ "▁pla ced",
+ "er ni",
+ "ern i",
+ "▁sign al",
+ "▁sig nal",
+ "▁ signal",
+ "na b",
+ "n ab",
+ "h m",
+ "Mo n",
+ "M on",
+ "▁v s",
+ "▁ vs",
+ "S C",
+ "▁proget ti",
+ "▁ Ü",
+ "▁for ms",
+ "▁form s",
+ "▁ forms",
+ "▁message s",
+ "▁mess ages",
+ "▁ messages",
+ "in f",
+ "us ers",
+ "use rs",
+ "user s",
+ "u sers",
+ "GE T",
+ "G ET",
+ "▁d els",
+ "▁de ls",
+ "▁del s",
+ "Col lection",
+ "Coll ection",
+ "Collect ion",
+ "▁G ood",
+ "▁Go od",
+ "▁ Good",
+ "▁May be",
+ "▁ Maybe",
+ "▁com pr",
+ "▁comp r",
+ "▁lar ger",
+ "▁large r",
+ "▁larg er",
+ "gr es",
+ "gre s",
+ "g res",
+ "ap er",
+ "ape r",
+ "a per",
+ "▁П ри",
+ "un des",
+ "und es",
+ "unde s",
+ "▁s ea",
+ "▁se a",
+ "▁S pring",
+ "▁Sp ring",
+ "▁Spr ing",
+ "▁ Spring",
+ "ul o",
+ "u lo",
+ "▁me chan",
+ "▁s ans",
+ "▁sa ns",
+ "▁san s",
+ "G B",
+ "Val id",
+ "▁comm unic",
+ "▁commun ic",
+ "▁ communic",
+ "▁p ra",
+ "▁pr a",
+ "vi er",
+ "vie r",
+ "v ier",
+ "▁С е",
+ "▁a in",
+ "▁ai n",
+ "▁ ain",
+ "ту ра",
+ "тур а",
+ "ko m",
+ "k om",
+ "sk iego",
+ "ski ego",
+ "skie go",
+ "ко во",
+ "ков о",
+ "к ово",
+ "ad ata",
+ "ada ta",
+ "a data",
+ "▁Р е",
+ "▁bo olean",
+ "▁ boolean",
+ "se ts",
+ "set s",
+ "s ets",
+ "▁eff ort",
+ ". [",
+ "▁z ostał",
+ "P A",
+ "▁V ict",
+ "▁Vi ct",
+ "▁Vic t",
+ "S D",
+ "ow ał",
+ "owa ł",
+ "▁e mb",
+ "▁em b",
+ "▁ emb",
+ "▁pr ima",
+ "▁prim a",
+ "▁pri ma",
+ "▁h our",
+ "▁ho ur",
+ "▁ hour",
+ "sub section",
+ "▁F ort",
+ "▁For t",
+ "▁Fo rt",
+ "math frak",
+ "ig in",
+ "igi n",
+ "i gin",
+ "G L",
+ ") +",
+ "f i",
+ "▁an ci",
+ "▁anc i",
+ "▁ anci",
+ "▁p an",
+ "▁pa n",
+ "▁ pan",
+ "\\ )",
+ "▁l ug",
+ "▁lu g",
+ "▁dep loy",
+ "▁ deploy",
+ "do main",
+ "dom ain",
+ "▁s light",
+ "▁sl ight",
+ "JS ON",
+ "J SON",
+ "▁mor ning",
+ "▁h i",
+ "▁ hi",
+ "▁comp are",
+ "▁compar e",
+ "▁ compare",
+ "ij e",
+ "i je",
+ "▁bl ue",
+ "▁ blue",
+ "▁A c",
+ "▁ Ac",
+ "▁m iddle",
+ "▁ middle",
+ "an den",
+ "and en",
+ "ande n",
+ "▁sh ared",
+ "▁share d",
+ "▁ shared",
+ "▁C amp",
+ "▁Cam p",
+ "▁Ca mp",
+ "▁ Á",
+ "ound ed",
+ "oun ded",
+ "u w",
+ "ier ung",
+ "St ack",
+ "▁e ines",
+ "▁ein es",
+ "▁eine s",
+ "▁D a",
+ "▁ Da",
+ "li j",
+ "l ij",
+ "en ti",
+ "ent i",
+ "▁ й",
+ "U til",
+ "▁exper ience",
+ "▁experien ce",
+ "▁a wait",
+ "▁aw ait",
+ "▁ await",
+ "ul s",
+ "u ls",
+ "▁request s",
+ "▁requ ests",
+ "▁ requests",
+ "▁im pos",
+ "▁imp os",
+ "▁const raint",
+ "▁ constraint",
+ "Ch ange",
+ "em ph",
+ "emp h",
+ "бе р",
+ "б ер",
+ "▁An other",
+ "C ustom",
+ "▁signific ant",
+ "▁significa nt",
+ "c r",
+ "▁mill ion",
+ "re ek",
+ "ree k",
+ "▁d alla",
+ "▁da lla",
+ "▁dal la",
+ "▁dall a",
+ "▁G erm",
+ "▁Ge rm",
+ "▁Ger m",
+ "ot al",
+ "ota l",
+ "o tal",
+ "at eur",
+ "ate ur",
+ "bt n",
+ "b tn",
+ "▁th inking",
+ "▁think ing",
+ "▁thin king",
+ "▁inter val",
+ "▁ interval",
+ "on ne",
+ "onn e",
+ "▁l iv",
+ "▁li v",
+ "▁ liv",
+ "() :",
+ "( ):",
+ "▁В е",
+ "o e",
+ "▁E v",
+ "me ta",
+ "met a",
+ "m eta",
+ "▁b road",
+ "▁bro ad",
+ "Re m",
+ "R em",
+ "ap ply",
+ "app ly",
+ "a pply",
+ "▁cou ple",
+ "▁coup le",
+ "▁te chni",
+ "▁techn i",
+ "id ades",
+ "ida des",
+ "idad es",
+ "idade s",
+ "▁go al",
+ "▁ goal",
+ "▁C D",
+ "▁ CD",
+ "ha b",
+ "h ab",
+ "▁ex plan",
+ "▁exp lan",
+ "▁expla n",
+ "▁expl an",
+ "an ner",
+ "ann er",
+ "anne r",
+ "▁B ecause",
+ "bl og",
+ "blo g",
+ "b log",
+ "include graphics",
+ "▁vo ice",
+ "▁ voice",
+ "▁M ap",
+ "▁Ma p",
+ "▁ Map",
+ "vent ion",
+ "ven tion",
+ "v ention",
+ "S ession",
+ "▁L iens",
+ "▁Li ens",
+ "▁Lie ns",
+ "▁s or",
+ "▁so r",
+ "c ategory",
+ "ash ington",
+ "▁Mär z",
+ "po p",
+ "p op",
+ "il let",
+ "ill et",
+ "ille t",
+ "▁z wei",
+ "▁zwe i",
+ "▁zw ei",
+ "▁L ie",
+ "▁Li e",
+ "N ull",
+ "add ress",
+ "addr ess",
+ "▁f actor",
+ "▁fact or",
+ "▁fa ctor",
+ "▁fac tor",
+ "▁ factor",
+ "▁l igne",
+ "▁lig ne",
+ "▁HT TP",
+ "▁ HTTP",
+ "▁s uf",
+ "▁su f",
+ "▁person al",
+ "▁pers onal",
+ "▁persona l",
+ "ci p",
+ "c ip",
+ "▁D ar",
+ "▁Da r",
+ "▁a dm",
+ "▁ad m",
+ "ко й",
+ "▁E xt",
+ "▁Ex t",
+ "▁ Ext",
+ "▁g od",
+ "▁go d",
+ "▁ god",
+ "a a",
+ "R ight",
+ "ét é",
+ "é té",
+ "▁d ynamic",
+ "▁dynam ic",
+ "▁ dynamic",
+ "▁main tain",
+ "to r",
+ "t or",
+ "#### ####",
+ "▁F ra",
+ "▁Fr a",
+ "▁cho ice",
+ "▁ choice",
+ "▁с то",
+ "▁ст о",
+ "▁ сто",
+ "С Р",
+ "▁F eder",
+ "▁Fe der",
+ "▁Fed er",
+ "st on",
+ "sto n",
+ "s ton",
+ "▁f lag",
+ "▁fl ag",
+ "▁fla g",
+ "▁ flag",
+ "ki t",
+ "k it",
+ "Mod ule",
+ "▁с по",
+ "▁сп о",
+ "▁ спо",
+ "▁S tra",
+ "▁St ra",
+ "▁Str a",
+ "ic ks",
+ "ick s",
+ "i cks",
+ "▁h aven",
+ "▁ha ven",
+ "▁have n",
+ "▁hav en",
+ "▁M ass",
+ "▁Ma ss",
+ "▁Mas s",
+ "▁E mp",
+ "▁Em p",
+ "▁ Emp",
+ "▁P i",
+ "▁ Pi",
+ "▁P en",
+ "▁Pe n",
+ "Re ct",
+ "Rec t",
+ "R ect",
+ "▁K r",
+ "it at",
+ "ita t",
+ "i tat",
+ "el er",
+ "ele r",
+ "e ler",
+ "я бря",
+ "it et",
+ "ite t",
+ "▁St art",
+ "▁Sta rt",
+ "▁Star t",
+ "▁ Start",
+ "▁produ ced",
+ "▁produce d",
+ "▁по л",
+ "▁ пол",
+ "( _",
+ "▁de let",
+ "▁del et",
+ "▁h ot",
+ "▁ho t",
+ "▁ hot",
+ "▁Gesch ichte",
+ "~ ~",
+ "▁month s",
+ "▁mont hs",
+ "▁t od",
+ "▁to d",
+ "▁ tod",
+ "▁н и",
+ "▁ ни",
+ "ú s",
+ "te mp",
+ "tem p",
+ "t emp",
+ "▁D ez",
+ "▁De z",
+ "ype s",
+ "yp es",
+ "y pes",
+ "▁c ui",
+ "▁cu i",
+ "om mun",
+ "omm un",
+ "act ions",
+ "action s",
+ "a ctions",
+ "▁e igen",
+ "▁eig en",
+ "▁immedi ately",
+ "▁immediate ly",
+ "P L",
+ "▁Г о",
+ "▁B al",
+ "▁Ba l",
+ "▁ Bal",
+ "љ е",
+ "ul ui",
+ "ulu i",
+ "▁on line",
+ "▁ online",
+ "▁a ños",
+ "▁añ os",
+ "▁año s",
+ "▁name space",
+ "▁names pace",
+ "▁ namespace",
+ "▁m ond",
+ "▁mon d",
+ "▁mo nd",
+ "▁ mond",
+ "▁B ase",
+ "▁Bas e",
+ "▁Ba se",
+ "▁ Base",
+ "▁Can ada",
+ "▁Canad a",
+ "et zt",
+ "etz t",
+ "} -",
+ "▁de fin",
+ "▁def in",
+ "▁ defin",
+ "▁dou bt",
+ "▁doub t",
+ "▁inv estig",
+ "▁invest ig",
+ "view s",
+ "vie ws",
+ "▁L ine",
+ "▁Li ne",
+ "▁Lin e",
+ "▁ Line",
+ "▁st age",
+ "▁sta ge",
+ "▁stag e",
+ "▁ stage",
+ "ett ings",
+ "ub re",
+ "u bre",
+ "f loat",
+ "▁P lay",
+ "▁Pl ay",
+ "▁Pla y",
+ "▁ Play",
+ "▁L as",
+ "▁La s",
+ "pt r",
+ "p tr",
+ "▁be comes",
+ "▁become s",
+ "▁becom es",
+ "est amp",
+ "esta mp",
+ "▁in dependent",
+ "▁indep endent",
+ "▁independ ent",
+ "▁anal ysis",
+ "▁ analysis",
+ "▁L ook",
+ "▁Lo ok",
+ "▁ Look",
+ "la in",
+ "l ain",
+ "▁ра с",
+ "Re ference",
+ "▁s orry",
+ "▁sor ry",
+ "▁supp osed",
+ "▁suppose d",
+ "▁sup posed",
+ "û t",
+ "▁deg ree",
+ "ut z",
+ "u tz",
+ "M M",
+ "▁des ired",
+ "▁desire d",
+ "ł y",
+ "▁l en",
+ "▁le n",
+ "▁ len",
+ "▁al one",
+ "▁ alone",
+ "sign ed",
+ "sig ned",
+ "s igned",
+ "▁S ta",
+ "▁St a",
+ "Per son",
+ "Pers on",
+ "P erson",
+ "▁app lied",
+ "▁B ack",
+ "▁Ba ck",
+ "▁Bac k",
+ "▁ Back",
+ "▁m ars",
+ "▁ma rs",
+ "▁mar s",
+ "Par t",
+ "Pa rt",
+ "P art",
+ "▁D id",
+ "▁Di d",
+ "▁ Did",
+ "▁extern es",
+ "▁externe s",
+ "▁n p",
+ "▁ np",
+ "on go",
+ "ong o",
+ "▁e sta",
+ "▁est a",
+ "▁es ta",
+ "▁ esta",
+ "Bl ock",
+ "B lock",
+ "▁p ou",
+ "▁po u",
+ "ad ores",
+ "ado res",
+ "ador es",
+ "▁St udio",
+ "▁Stud io",
+ "▁ Studio",
+ ". $",
+ "▁re ached",
+ "▁reach ed",
+ "bo t",
+ "b ot",
+ "▁J uni",
+ "▁Ju ni",
+ "▁Jun i",
+ "to ns",
+ "ton s",
+ "t ons",
+ "it el",
+ "ite l",
+ "i tel",
+ "▁G ar",
+ "▁Ga r",
+ "▁art icles",
+ "▁article s",
+ "▁ articles",
+ "▁D istrict",
+ "▁Dist rict",
+ "▁tr ouble",
+ "▁trou ble",
+ "li de",
+ "l ide",
+ "▁F ound",
+ "▁Fou nd",
+ "▁Fo und",
+ "▁ Found",
+ "á d",
+ "▁e quip",
+ "▁equ ip",
+ "▁in ternal",
+ "▁int ernal",
+ "▁inter nal",
+ "▁intern al",
+ "▁ internal",
+ "'] ,",
+ "' ],",
+ "▁a sync",
+ "▁as ync",
+ "▁ async",
+ "U B",
+ "ge l",
+ "g el",
+ "▁a i",
+ "▁ ai",
+ "ens ure",
+ "▁app eared",
+ "▁appear ed",
+ "▁appe ared",
+ "▁$ _",
+ "▁ $_",
+ "▁max imum",
+ "▁maxim um",
+ "▁С и",
+ "р ь",
+ "▁ann oun",
+ "▁anno un",
+ "ла сь",
+ "▁c m",
+ "▁ cm",
+ "га н",
+ "г ан",
+ "au pt",
+ "a upt",
+ "▁l atter",
+ "▁lat ter",
+ "▁pl atform",
+ "▁plat form",
+ "▁ platform",
+ "▁d ra",
+ "▁dr a",
+ "▁ dra",
+ "▁cap ital",
+ "▁capit al",
+ "▁sol ved",
+ "▁solve d",
+ "ri z",
+ "r iz",
+ "ed ic",
+ "edi c",
+ "e dic",
+ "▁M ur",
+ "▁Mu r",
+ "▁T op",
+ "▁To p",
+ "▁ Top",
+ "т ся",
+ "Pa nel",
+ "Pane l",
+ "Pan el",
+ "P anel",
+ "ru le",
+ "r ule",
+ "et ic",
+ "eti c",
+ "▁R en",
+ "▁Re n",
+ "▁Wik imedia",
+ "▁ Wikimedia",
+ "▁T O",
+ "▁ TO",
+ "se cond",
+ "sec ond",
+ "is l",
+ "i sl",
+ "▁h y",
+ "▁ hy",
+ "▁n iet",
+ "▁nie t",
+ "▁ni et",
+ "▁lo aded",
+ "▁load ed",
+ "▁ loaded",
+ "di g",
+ "d ig",
+ "▁ma yo",
+ "▁may o",
+ "[ :",
+ "Ac c",
+ "A cc",
+ "▁b ek",
+ "▁be k",
+ "▁ bek",
+ "ни ю",
+ "lo gin",
+ "log in",
+ "t x",
+ "▁F ur",
+ "▁Fu r",
+ "▁S anta",
+ "▁San ta",
+ "▁Sant a",
+ "az z",
+ "a zz",
+ "▁con duct",
+ "▁cond uct",
+ "▁condu ct",
+ "▁In dia",
+ "▁Ind ia",
+ "Or der",
+ "Ord er",
+ "ir th",
+ "irt h",
+ "t w",
+ "} +",
+ "▁w ieder",
+ "▁wie der",
+ "▁E du",
+ "▁Ed u",
+ "A V",
+ "▁` ``",
+ "▁`` `",
+ "▁ ```",
+ "▁man ually",
+ "▁manual ly",
+ "▁R ead",
+ "▁Re ad",
+ "▁ Read",
+ "fortun ately",
+ "▁R un",
+ "▁Ru n",
+ "▁ Run",
+ "▁A ward",
+ "▁Aw ard",
+ "▁F oot",
+ "▁Foo t",
+ "▁Fo ot",
+ "▁ Foot",
+ "* )",
+ "par ams",
+ "param s",
+ "pa rams",
+ "para ms",
+ "п і",
+ "▁n ative",
+ "▁nat ive",
+ "▁ native",
+ "ri ft",
+ "rif t",
+ "r ift",
+ "▁ ä",
+ "AT H",
+ "A TH",
+ "▁your self",
+ "▁yours elf",
+ "▁p rior",
+ "▁pr ior",
+ "▁pri or",
+ "▁c it",
+ "▁ci t",
+ "▁ cit",
+ "ä h",
+ "▁tre at",
+ "▁me as",
+ "rib uted",
+ "ribute d",
+ "ribu ted",
+ "▁c lar",
+ "▁cl ar",
+ "▁cla r",
+ "▁ clar",
+ "ca rd",
+ "car d",
+ "c ard",
+ "RO R",
+ "R OR",
+ "il les",
+ "ill es",
+ "ille s",
+ "i lles",
+ "▁l ayer",
+ "▁la yer",
+ "▁lay er",
+ "▁ layer",
+ "au er",
+ "a uer",
+ "▁r at",
+ "▁ra t",
+ "▁ rat",
+ "bern ate",
+ "▁st ato",
+ "▁stat o",
+ "▁sta to",
+ "▁Ch ina",
+ "▁Chi na",
+ "▁$ ('#",
+ "▁$(' #",
+ "▁n aar",
+ "▁na ar",
+ "zi p",
+ "z ip",
+ "▁$ {\\",
+ "▁${ \\",
+ "▁appreci ated",
+ "▁appreciate d",
+ "▁и ме",
+ "▁им е",
+ "ż y",
+ "▁prze z",
+ "▁prz ez",
+ "▁Ind ian",
+ "▁India n",
+ "▁T od",
+ "▁To d",
+ "▁S ource",
+ "▁ Source",
+ "▁дру ги",
+ "in ternal",
+ "int ernal",
+ "inter nal",
+ "intern al",
+ "ion ale",
+ "ional e",
+ "iona le",
+ "Pro duct",
+ "Produ ct",
+ "▁M en",
+ "▁Me n",
+ "▁ Men",
+ "▁u pper",
+ "▁up per",
+ "▁upp er",
+ "▁ upper",
+ "▁E very",
+ "▁Ev ery",
+ "▁Ever y",
+ "▁ Every",
+ "}, \\",
+ "} ,\\",
+ "▁print f",
+ "▁prin tf",
+ "▁ printf",
+ "▁contin ued",
+ "▁continu ed",
+ "▁continue d",
+ "▁n odes",
+ "▁no des",
+ "▁node s",
+ "▁nod es",
+ "▁ nodes",
+ "л ки",
+ "▁n ice",
+ "▁ni ce",
+ "▁nic e",
+ "▁ nice",
+ "mod ules",
+ "module s",
+ "ei gn",
+ "e ign",
+ "▁M ex",
+ "▁Me x",
+ "▁Acc ording",
+ "▁un defined",
+ "▁und efined",
+ "▁ undefined",
+ "▁b inary",
+ "▁bin ary",
+ "▁ binary",
+ "cu t",
+ "c ut",
+ "Cur rent",
+ "C urrent",
+ "ed y",
+ "e dy",
+ "}} {",
+ "} }{",
+ "ble s",
+ "bl es",
+ "b les",
+ "▁во й",
+ "▁ вой",
+ "sc ri",
+ "scr i",
+ "s cri",
+ "eq n",
+ "Ch anged",
+ "Change d",
+ "▁kö z",
+ "▁rem ote",
+ "▁ remote",
+ "в ля",
+ "▁qu el",
+ "▁que l",
+ "▁q uel",
+ "▁ quel",
+ "▁al ign",
+ "▁ali gn",
+ "▁ align",
+ "▁п ар",
+ "▁па р",
+ "▁ пар",
+ "S V",
+ "ye r",
+ "y er",
+ "▁Cal iforn",
+ "▁p laces",
+ "▁pl aces",
+ "▁place s",
+ "▁pla ces",
+ "▁prim ary",
+ "▁pri mary",
+ "▁prima ry",
+ "▁ primary",
+ "▁con v",
+ "▁ conv",
+ "▁J uli",
+ "▁Jul i",
+ "▁Ju li",
+ "▁vis ual",
+ "▁ visual",
+ "▁S elect",
+ "▁Se lect",
+ "▁Sel ect",
+ "▁Sele ct",
+ "▁ Select",
+ "at ory",
+ "ator y",
+ "ato ry",
+ "= (",
+ "is er",
+ "ise r",
+ "i ser",
+ "▁int ent",
+ "▁inte nt",
+ "▁inten t",
+ "▁ intent",
+ "su r",
+ "s ur",
+ "cont ainer",
+ "ic ed",
+ "ice d",
+ "i ced",
+ "▁bo ard",
+ "▁ board",
+ "as tr",
+ "ast r",
+ "a str",
+ "om ial",
+ "omi al",
+ "ве т",
+ "в ет",
+ "з ва",
+ "▁c ru",
+ "▁cr u",
+ "▁Ok tober",
+ "sa ve",
+ "s ave",
+ "▁gre ater",
+ "▁great er",
+ "▁in n",
+ "▁i nn",
+ "▁ inn",
+ "▁p icture",
+ "▁ picture",
+ "▁Т о",
+ "▁obtain ed",
+ "▁obt ained",
+ "Wik imedia",
+ "ú blic",
+ "▁l ors",
+ "▁lo rs",
+ "▁m ont",
+ "▁mon t",
+ "▁mo nt",
+ "▁ mont",
+ "ob re",
+ "o bre",
+ "▁c ivil",
+ "▁ci vil",
+ "▁civ il",
+ "▁const ruction",
+ "▁construct ion",
+ "▁constru ction",
+ "▁W elt",
+ "▁We lt",
+ "▁Wel t",
+ "▁U nder",
+ "▁Un der",
+ "▁Und er",
+ "▁ Under",
+ "und ert",
+ "under t",
+ "unde rt",
+ "▁ed ge",
+ "▁ edge",
+ "▁L iste",
+ "▁List e",
+ "▁Li ste",
+ "▁Lis te",
+ "cs v",
+ "c sv",
+ "▁ex periment",
+ "▁exper iment",
+ "local host",
+ "▁E dit",
+ "▁Ed it",
+ "▁ Edit",
+ "gr eg",
+ "gre g",
+ "g reg",
+ "ov á",
+ "o vá",
+ "љ а",
+ "ms g",
+ "m sg",
+ "▁G reen",
+ "▁Gr een",
+ "▁Gre en",
+ "▁Gree n",
+ "▁ Green",
+ "Di alog",
+ "D ialog",
+ "Id ent",
+ "I dent",
+ "▁J S",
+ "▁ JS",
+ "^{ (",
+ "^ {(",
+ "▁slä ktet",
+ "__ __",
+ "___ _",
+ "_ ___",
+ "Pro ject",
+ "▁bes kre",
+ "▁b er",
+ "▁be r",
+ "▁ ber",
+ "▁would n",
+ "▁re act",
+ "▁ react",
+ "He l",
+ "H el",
+ "z w",
+ "▁W ashington",
+ "or ie",
+ "ori e",
+ "o rie",
+ "ta sk",
+ "t ask",
+ "▁c ategory",
+ "▁categ ory",
+ "▁categor y",
+ "▁ category",
+ "▁art ist",
+ "an no",
+ "ann o",
+ "▁o ok",
+ "▁ ook",
+ "am men",
+ "amm en",
+ "▁Min ister",
+ "▁de clar",
+ "▁dec lar",
+ "▁decl ar",
+ "▁decla r",
+ "▁K ey",
+ "▁Ke y",
+ "▁ Key",
+ ", .",
+ "▁m ach",
+ "▁ma ch",
+ "▁mac h",
+ "▁w w",
+ "▁ ww",
+ "is en",
+ "ise n",
+ "i sen",
+ "Fr an",
+ "F ran",
+ "▁Ро сси",
+ "▁Рос си",
+ "бо р",
+ "б ор",
+ "т ри",
+ "▁r ock",
+ "▁ro ck",
+ "▁ rock",
+ "qu is",
+ "qui s",
+ "q uis",
+ "mo s",
+ "m os",
+ "пе ра",
+ "пер а",
+ "п ера",
+ "▁est erni",
+ "▁g old",
+ "▁go ld",
+ "▁gol d",
+ "Window s",
+ "W indows",
+ "% %",
+ "▁part ial",
+ "▁parti al",
+ "▁ partial",
+ "▁we ight",
+ "▁ weight",
+ "▁s pr",
+ "▁sp r",
+ "▁ spr",
+ "}) .",
+ "} ).",
+ "▁fran çais",
+ "fu n",
+ "f un",
+ "▁th ous",
+ "▁thou s",
+ "ho lder",
+ "hol der",
+ "hold er",
+ "h older",
+ "▁g one",
+ "▁go ne",
+ "▁ Č",
+ "▁re nd",
+ "▁r end",
+ "▁ren d",
+ "▁ rend",
+ "D A",
+ "▁answer ed",
+ "▁F alse",
+ "▁Fal se",
+ "▁ False",
+ "B uffer",
+ "▁d augh",
+ "▁da ugh",
+ ".- -",
+ ". --",
+ "▁S how",
+ "▁Sh ow",
+ "▁Sho w",
+ "▁ Show",
+ "▁re ct",
+ "▁r ect",
+ "▁rec t",
+ "▁ rect",
+ "▁K re",
+ "▁Kr e",
+ "d r",
+ "os oph",
+ "oso ph",
+ "▁y ield",
+ "ur ity",
+ "uri ty",
+ "to String",
+ "av al",
+ "ava l",
+ "a val",
+ "Po l",
+ "P ol",
+ "▁l ock",
+ "▁lo ck",
+ "▁loc k",
+ "▁ lock",
+ "im ation",
+ "ima tion",
+ "imat ion",
+ "ant ic",
+ "anti c",
+ "Lo cal",
+ "Loc al",
+ "L ocal",
+ "▁beskre vs",
+ "it és",
+ "ité s",
+ "gr id",
+ "g rid",
+ "у т",
+ "▁_ {",
+ "▁ _{",
+ "с і",
+ "FI LE",
+ "▁к м",
+ "▁spe ak",
+ "sum mary",
+ "pr op",
+ "pro p",
+ "p rop",
+ "java script",
+ "j avascript",
+ "z k",
+ "izont al",
+ "izon tal",
+ "▁tr ois",
+ "▁tro is",
+ "▁R od",
+ "▁Ro d",
+ "pr ise",
+ "ро во",
+ "ров о",
+ "р ово",
+ "▁o dd",
+ "▁od d",
+ "▁ odd",
+ "▁g est",
+ "▁ge st",
+ "▁ges t",
+ "▁ gest",
+ "▁produ ce",
+ "▁prod uce",
+ "▁w aar",
+ "▁wa ar",
+ "▁A v",
+ "▁ Av",
+ "ri bu",
+ "rib u",
+ "ва ння",
+ "ван ня",
+ "▁fin ished",
+ "▁finish ed",
+ "▁ad apt",
+ "▁S ar",
+ "▁Sa r",
+ "text it",
+ "tex tit",
+ "▁C e",
+ "▁F a",
+ "▁ Fa",
+ "os en",
+ "ose n",
+ "o sen",
+ "▁de riv",
+ "▁der iv",
+ "▁s hip",
+ "▁sh ip",
+ "▁ ship",
+ "▁o pin",
+ "▁op in",
+ "▁E ven",
+ "▁Ev en",
+ "ge sch",
+ "ges ch",
+ "g esch",
+ "▁supp ose",
+ "▁sup pose",
+ "▁F er",
+ "▁Fe r",
+ "ско е",
+ "▁w orden",
+ "▁word en",
+ "▁wor den",
+ "se y",
+ "s ey",
+ "hl ine",
+ "h line",
+ "▁Un ion",
+ "▁ Union",
+ "▁/ **",
+ "▁/* *",
+ "▁ /**",
+ "▁v ez",
+ "▁ve z",
+ "▁ vez",
+ "▁Colleg amenti",
+ "▁Soci ety",
+ "▁Soc iety",
+ "▁e conom",
+ "▁econ om",
+ "▁ec onom",
+ "š í",
+ "o i",
+ "▁or ient",
+ "▁ orient",
+ "▁T eil",
+ "▁Te il",
+ "re nt",
+ "ren t",
+ "r ent",
+ "ле кс",
+ "лек с",
+ "▁s olid",
+ "▁sol id",
+ "▁c art",
+ "▁car t",
+ "▁ca rt",
+ "▁ cart",
+ "******** ********",
+ "▁c ab",
+ "▁ca b",
+ "▁M essage",
+ "▁Mess age",
+ "▁ Message",
+ "do ts",
+ "dot s",
+ "d ots",
+ "▁é g",
+ "▁ ég",
+ "▁t we",
+ "▁tw e",
+ "ag a",
+ "a ga",
+ "▁n az",
+ "▁na z",
+ "▁M icrosoft",
+ "▁Micro soft",
+ "▁ Microsoft",
+ "▁under arter",
+ "pp en",
+ "ppe n",
+ "p pen",
+ "▁re cent",
+ "▁rec ent",
+ "▁rece nt",
+ "▁n et",
+ "▁ne t",
+ "▁ net",
+ "▁res ources",
+ "▁resource s",
+ "▁ resources",
+ "St e",
+ "S te",
+ ". \\",
+ "▁S O",
+ "▁ SO",
+ "ло м",
+ "л ом",
+ "▁c ele",
+ "▁ce le",
+ "▁cel e",
+ "▁l ic",
+ "▁li c",
+ "▁ lic",
+ "▁ben ef",
+ "▁bene f",
+ "ld ots",
+ "l dots",
+ "▁se rial",
+ "▁ser ial",
+ "▁seria l",
+ "▁ serial",
+ "In teger",
+ "cl es",
+ "cle s",
+ "c les",
+ "▁m iles",
+ "▁mil es",
+ "▁mi les",
+ "▁mile s",
+ "▁A le",
+ "▁Al e",
+ "▁en tered",
+ "▁ent ered",
+ "▁enter ed",
+ "▁T wo",
+ "▁Tw o",
+ "▁ Two",
+ "wi e",
+ "w ie",
+ "▁in cludes",
+ "▁incl udes",
+ "▁includ es",
+ "▁include s",
+ "▁inclu des",
+ "▁ includes",
+ "▁E ach",
+ "▁ Each",
+ "el ling",
+ "ell ing",
+ "elli ng",
+ "qu er",
+ "que r",
+ "q uer",
+ "▁D om",
+ "▁Do m",
+ "▁ Dom",
+ "p f",
+ "W S",
+ "▁stra ight",
+ "▁S tan",
+ "▁St an",
+ "▁Sta n",
+ "▁n os",
+ "▁no s",
+ "▁ nos",
+ "í cul",
+ "at ro",
+ "atr o",
+ "▁C enter",
+ "▁Cent er",
+ "▁ Center",
+ "F T",
+ "▁In ga",
+ "▁Ing a",
+ "il o",
+ "i lo",
+ "▁w ww",
+ "▁ww w",
+ "▁ www",
+ "js fiddle",
+ "ni c",
+ "n ic",
+ "▁Europe an",
+ "▁com mer",
+ "▁comm er",
+ "▁comme r",
+ "▁g irl",
+ "▁gi rl",
+ "▁gir l",
+ "to tal",
+ "tot al",
+ "t otal",
+ "▁S tar",
+ "▁St ar",
+ "▁Sta r",
+ "▁ Star",
+ "▁sugg ested",
+ "▁suggest ed",
+ "pa l",
+ "p al",
+ "▁zw ischen",
+ "пи са",
+ "пис а",
+ "I M",
+ "▁hand ler",
+ "▁handle r",
+ "▁ handler",
+ "▁Pro gram",
+ "▁Pr ogram",
+ "▁ Program",
+ "xs l",
+ "x sl",
+ "ál y",
+ "á ly",
+ "B U",
+ ",- -",
+ ", --",
+ "▁v id",
+ "▁vi d",
+ "▁ vid",
+ "▁estab lished",
+ "▁establish ed",
+ "▁S piel",
+ "▁Sp iel",
+ "om etry",
+ "ome try",
+ "omet ry",
+ "un es",
+ "une s",
+ "u nes",
+ "▁s it",
+ "▁si t",
+ "▁in her",
+ "▁p uis",
+ "▁pu is",
+ "▁ puis",
+ "▁ être",
+ "▁M ost",
+ "▁Mo st",
+ "▁Mos t",
+ "He ader",
+ "Head er",
+ "in sert",
+ "ins ert",
+ "▁s ist",
+ "▁si st",
+ "▁f avor",
+ "▁fa vor",
+ "▁fav or",
+ "de st",
+ "des t",
+ "d est",
+ "▁ent ity",
+ "▁ entity",
+ "Ca l",
+ "C al",
+ "▁There fore",
+ "D D",
+ "; ;",
+ "▁Dez ember",
+ "▁R h",
+ "im ents",
+ "iment s",
+ "imen ts",
+ "i ments",
+ "▁return ing",
+ "st o",
+ "s to",
+ "▁Val ue",
+ "▁ Value",
+ "▁l iber",
+ "▁li ber",
+ "▁lib er",
+ "▁Res ult",
+ "▁ Result",
+ "▁b ind",
+ "▁bi nd",
+ "▁bin d",
+ "▁ bind",
+ "vo ir",
+ "v oir",
+ "▁T im",
+ "▁Ti m",
+ "▁ Tim",
+ "▁M ovie",
+ "▁Mo vie",
+ "▁Mov ie",
+ "▁ Movie",
+ "we g",
+ "w eg",
+ "ke t",
+ "k et",
+ "▁и сто",
+ "▁ис то",
+ "▁fri ends",
+ "▁friend s",
+ "▁f n",
+ "▁ fn",
+ "▁é l",
+ "▁ él",
+ "▁& =",
+ "▁ &=",
+ "ar den",
+ "ard en",
+ "arde n",
+ "ff icial",
+ "ffic ial",
+ "▁comm unity",
+ "▁commun ity",
+ "▁ community",
+ "▁a pi",
+ "▁ap i",
+ "▁ api",
+ "Ar gs",
+ "Arg s",
+ "ie ren",
+ "ier en",
+ "iere n",
+ "i eren",
+ "▁d ann",
+ "▁da nn",
+ "▁dan n",
+ "om orph",
+ "ad r",
+ "a dr",
+ "lo op",
+ "l oop",
+ "um an",
+ "uma n",
+ "u man",
+ "▁v ous",
+ "▁vo us",
+ "▁vou s",
+ "▁ vous",
+ "bs t",
+ "b st",
+ "sub mit",
+ "\\ |",
+ "ти н",
+ "т ин",
+ "Cont ainer",
+ "as ket",
+ "ask et",
+ "? )",
+ "Se c",
+ "S ec",
+ "▁d rive",
+ "▁dr ive",
+ "▁dri ve",
+ "▁driv e",
+ "▁ drive",
+ "As s",
+ "A ss",
+ "▁s we",
+ "▁sw e",
+ "▁a mer",
+ "▁am er",
+ "▁ amer",
+ "▁m ine",
+ "▁min e",
+ "▁mi ne",
+ "▁ mine",
+ "▁H am",
+ "▁Ha m",
+ "▁av ait",
+ "▁ avait",
+ "▁H on",
+ "▁Ho n",
+ "▁a près",
+ "▁ap rès",
+ "▁apr ès",
+ "▁ après",
+ "▁M ann",
+ "▁Man n",
+ "▁Ma nn",
+ "сь ка",
+ "ськ а",
+ "▁incre ase",
+ "▁t y",
+ "▁ ty",
+ "sk y",
+ "s ky",
+ "▁acc ur",
+ "▁ac cur",
+ "art icle",
+ "we ight",
+ "weig ht",
+ "▁s ex",
+ "▁se x",
+ "▁ sex",
+ "▁list ade",
+ "▁lista de",
+ "/* *",
+ "/ **",
+ "▁est á",
+ "}} $",
+ "} }$",
+ "ar go",
+ "arg o",
+ "def ine",
+ "defin e",
+ "▁со став",
+ "▁соста в",
+ "s ession",
+ "ad s",
+ "a ds",
+ "ст ви",
+ "ств и",
+ "▁L aw",
+ "▁La w",
+ "▁d ialog",
+ "▁di alog",
+ "▁dia log",
+ "▁ dialog",
+ "▁dup licate",
+ "▁é p",
+ "▁ ép",
+ "▁v oc",
+ "▁vo c",
+ "fr i",
+ "f ri",
+ "▁g reen",
+ "▁gr een",
+ "▁gre en",
+ "▁ green",
+ "▁h idden",
+ "▁hid den",
+ "▁ hidden",
+ "▁Is land",
+ "▁di ag",
+ "▁dia g",
+ "ow ej",
+ "owe j",
+ "my sql",
+ "mys ql",
+ "mysq l",
+ "te il",
+ "tei l",
+ "t eil",
+ "r ä",
+ "ik an",
+ "ika n",
+ "i kan",
+ "▁Jos é",
+ "al ed",
+ "ale d",
+ "a led",
+ "Run time",
+ "R untime",
+ "▁t rain",
+ "▁tr ain",
+ "▁tra in",
+ "▁ train",
+ "▁Di vision",
+ "▁Div ision",
+ "ни ц",
+ "▁S pan",
+ "▁Sp an",
+ "▁ Span",
+ "ни ма",
+ "ним а",
+ ")= \\",
+ ") =\\",
+ "та н",
+ "т ан",
+ "▁st ay",
+ "▁sta y",
+ "▁f oo",
+ "▁fo o",
+ "▁ foo",
+ "▁acc om",
+ "▁ac com",
+ "▁h ers",
+ "▁he rs",
+ "▁her s",
+ "▁на у",
+ "▁M ün",
+ "ide os",
+ "ideo s",
+ "st atic",
+ "stat ic",
+ "▁re ady",
+ "▁read y",
+ "▁ ready",
+ "] `",
+ "▁vis ible",
+ "▁vi sible",
+ "▁ visible",
+ "▁H ope",
+ "▁Ho pe",
+ "▁Hop e",
+ "ul ated",
+ "ula ted",
+ "ulate d",
+ "▁C ult",
+ "▁Cu lt",
+ "ст ро",
+ "стр о",
+ "с тро",
+ "C o",
+ "▁sm aller",
+ "▁small er",
+ "at ura",
+ "atur a",
+ "atu ra",
+ "▁perfect ly",
+ "re q",
+ "r eq",
+ "▁pro posed",
+ "▁prop osed",
+ "▁propos ed",
+ "▁propose d",
+ "▁deg li",
+ "Se arch",
+ "S earch",
+ "▁i ch",
+ "▁ic h",
+ "▁ ich",
+ "Ma x",
+ "M ax",
+ "▁vol ume",
+ "▁ volume",
+ "exec ute",
+ "gr e",
+ "g re",
+ "▁s port",
+ "▁sp ort",
+ "▁spo rt",
+ "ud ad",
+ "uda d",
+ "P T",
+ "▁Rec ords",
+ "▁Record s",
+ "▁c ook",
+ "▁co ok",
+ "▁ cook",
+ "▁exp and",
+ "▁ expand",
+ "б і",
+ "▁al tri",
+ "▁alt ri",
+ "pp et",
+ "ppe t",
+ "p pet",
+ "ar se",
+ "ars e",
+ "▁w et",
+ "▁we t",
+ "▁B ob",
+ "▁Bo b",
+ "▁ Bob",
+ "▁F C",
+ "▁ FC",
+ "▁Associ ation",
+ "uj e",
+ "u je",
+ "▁f el",
+ "▁fe l",
+ "▁ fel",
+ "▁с лу",
+ "▁ слу",
+ "▁B ig",
+ "▁Bi g",
+ "▁ Big",
+ "/ \\",
+ "G e",
+ "wh ile",
+ "{ (",
+ "▁su fficient",
+ "Pos ition",
+ "P osition",
+ "▁under standing",
+ "▁understand ing",
+ "▁n ue",
+ "▁nu e",
+ "▁r az",
+ "▁ra z",
+ "▁ raz",
+ "▁y e",
+ "▁ ye",
+ "he m",
+ "h em",
+ "N um",
+ "▁Pro ject",
+ "▁ Project",
+ "▁I ts",
+ "▁It s",
+ "▁h asta",
+ "▁ha sta",
+ "▁has ta",
+ "▁hast a",
+ "en so",
+ "ens o",
+ "▁w ire",
+ "▁wir e",
+ "▁ wire",
+ "Re t",
+ "R et",
+ "u j",
+ "pro of",
+ "▁re levant",
+ "▁relev ant",
+ "▁part ir",
+ "▁parti r",
+ "▁a go",
+ "▁ag o",
+ "▁ ago",
+ "if icate",
+ "ific ate",
+ "ifica te",
+ "▁d omin",
+ "▁do min",
+ "▁dom in",
+ "▁ domin",
+ "▁b oy",
+ "▁bo y",
+ "▁ boy",
+ "▁p lant",
+ "▁pl ant",
+ "▁pla nt",
+ "▁plan t",
+ "▁ plant",
+ "▁enc oding",
+ "▁ encoding",
+ "▁th rows",
+ "▁thr ows",
+ "▁throw s",
+ "▁thro ws",
+ "▁R ock",
+ "▁Ro ck",
+ "▁Roc k",
+ "zo ne",
+ "zon e",
+ "z one",
+ "ga ng",
+ "gan g",
+ "g ang",
+ "wid get",
+ "w idget",
+ "▁interest ing",
+ "DE R",
+ "D ER",
+ "▁d emon",
+ "▁de mon",
+ "▁dem on",
+ "▁demo n",
+ "▁off ice",
+ "▁offic e",
+ "▁ office",
+ "am t",
+ "a mt",
+ "ät er",
+ "ä ter",
+ "▁Wh ite",
+ "▁Whit e",
+ "▁ White",
+ "▁v ersch",
+ "▁ver sch",
+ "▁vers ch",
+ "▁die ser",
+ "▁dies er",
+ "▁diese r",
+ "▁M ount",
+ "▁Mo unt",
+ "▁Mou nt",
+ "▁ Mount",
+ "▁stud ents",
+ "▁student s",
+ "▁P ub",
+ "▁Pu b",
+ "▁ Pub",
+ "▁Д е",
+ "ij a",
+ "i ja",
+ "▁C y",
+ "▁ Cy",
+ "▁Californ ia",
+ "▁ab ril",
+ "äl l",
+ "ä ll",
+ "▁ч ем",
+ "▁че м",
+ "T V",
+ "▁m és",
+ "▁mé s",
+ "▁decl ared",
+ "▁decla red",
+ "▁declar ed",
+ "▁declare d",
+ "▁ ю",
+ "ő l",
+ "ap pa",
+ "app a",
+ "a ppa",
+ "▁Б е",
+ "ec ho",
+ "ech o",
+ "e cho",
+ "num er",
+ "nu mer",
+ "n umer",
+ "▁po sted",
+ "▁pos ted",
+ "▁post ed",
+ "▁poste d",
+ "▁в ер",
+ "▁ве р",
+ "▁ вер",
+ "▁годи не",
+ "▁we ak",
+ "▁ weak",
+ "▁Re public",
+ "▁Rep ublic",
+ "▁Repub lic",
+ "▁ch ampion",
+ "▁champ ion",
+ "ensure math",
+ "you r",
+ "yo ur",
+ "y our",
+ "▁O ber",
+ "▁Ob er",
+ "▁Cent ral",
+ "is a",
+ "i sa",
+ "ан д",
+ "а нд",
+ "y y",
+ "▁full y",
+ "▁ful ly",
+ "▁ fully",
+ "▁S D",
+ "▁ SD",
+ "▁Lin ux",
+ "▁ Linux",
+ "▁Sc ott",
+ "▁Scot t",
+ "part ment",
+ "ko n",
+ "k on",
+ "▁cont ract",
+ "▁contr act",
+ "▁contra ct",
+ "▁O F",
+ "▁ OF",
+ "▁a le",
+ "▁al e",
+ "▁ ale",
+ "▁A nn",
+ "▁An n",
+ "▁на д",
+ "▁ над",
+ "la h",
+ "l ah",
+ "▁N ext",
+ "▁Ne xt",
+ "▁ Next",
+ "or en",
+ "ore n",
+ "o ren",
+ "▁d isk",
+ "▁di sk",
+ "▁dis k",
+ "▁ disk",
+ "▁e g",
+ "▁ eg",
+ "at u",
+ "a tu",
+ "ло ги",
+ "лог и",
+ "▁g ames",
+ "▁game s",
+ "▁ga mes",
+ "▁gam es",
+ "Le ft",
+ "L eft",
+ "▁l u",
+ "▁ lu",
+ "▁fin ite",
+ "▁finit e",
+ "▁ finite",
+ "▁к и",
+ "▁ ки",
+ "▁cr ash",
+ "▁cra sh",
+ "ph er",
+ "phe r",
+ "p her",
+ "ex e",
+ "e xe",
+ "AT ION",
+ "▁br other",
+ "▁bro ther",
+ "En g",
+ "E ng",
+ "ta t",
+ "t at",
+ "▁In teger",
+ "▁ Integer",
+ "но му",
+ "ном у",
+ "н ому",
+ "▁col on",
+ "▁co lon",
+ "▁ colon",
+ "i qu",
+ ")) .",
+ ") ).",
+ "iv i",
+ "i vi",
+ "▁M ethod",
+ "▁Met hod",
+ "▁ Method",
+ "ar ten",
+ "art en",
+ "arte n",
+ "Un i",
+ "U ni",
+ "ve ctor",
+ "vec tor",
+ "v ector",
+ "▁w ood",
+ "▁wo od",
+ "▁ wood",
+ "р т",
+ "▁Л е",
+ "▁siè cle",
+ "▁g ent",
+ "▁ge nt",
+ "▁gen t",
+ "▁ gent",
+ "} \r",
+ "▁cont ents",
+ "▁content s",
+ "▁conten ts",
+ "▁ contents",
+ "▁com pan",
+ "▁comp an",
+ "G o",
+ "▁j ou",
+ "▁jo u",
+ "▁ jou",
+ "ue nt",
+ "uen t",
+ "u ent",
+ "As ync",
+ "A sync",
+ "print f",
+ "▁M odel",
+ "▁Mod el",
+ "▁Mo del",
+ "▁Mode l",
+ "▁ Model",
+ "▁ke pt",
+ "AS E",
+ "A SE",
+ "▁prov ides",
+ "▁provide s",
+ "▁Ab gerufen",
+ "▁G all",
+ "▁Gal l",
+ "▁Ga ll",
+ "▁Al f",
+ "S A",
+ "▁M em",
+ "▁Me m",
+ "▁ Mem",
+ "▁k ter",
+ "▁ kter",
+ "▁B ru",
+ "▁Br u",
+ "And roid",
+ "( :",
+ "▁У краї",
+ "▁Укра ї",
+ "N e",
+ "M in",
+ "at r",
+ "a tr",
+ "▁H al",
+ "▁Ha l",
+ "de lete",
+ "del ete",
+ "od o",
+ "o do",
+ "▁n ão",
+ "èn e",
+ "è ne",
+ "▁calcul ate",
+ "▁calc ulate",
+ "Js on",
+ "J son",
+ "ke ys",
+ "key s",
+ "не й",
+ "н ей",
+ "▁h ence",
+ "▁hen ce",
+ "▁o w",
+ "▁ ow",
+ "▁L ib",
+ "▁Li b",
+ "▁ Lib",
+ "en o",
+ "e no",
+ "▁L ove",
+ "▁Lo ve",
+ "▁Lov e",
+ "os i",
+ "o si",
+ "wi de",
+ "wid e",
+ "w ide",
+ "▁s core",
+ "▁sc ore",
+ "▁ score",
+ "ful l",
+ "fu ll",
+ "f ull",
+ "во д",
+ "в од",
+ "▁determ ine",
+ "▁determin e",
+ "▁s paces",
+ "▁sp aces",
+ "▁space s",
+ "▁spac es",
+ "▁ spaces",
+ "ло ва",
+ "лов а",
+ "л ова",
+ "▁pe ut",
+ "▁peu t",
+ "ér al",
+ "éra l",
+ "é ral",
+ "ó ł",
+ "▁app oint",
+ "▁ap point",
+ "▁T w",
+ "▁ Tw",
+ "< ?",
+ "▁Or der",
+ "▁Ord er",
+ "▁ Order",
+ "▁h op",
+ "▁ho p",
+ "ran dom",
+ "rand om",
+ "r andom",
+ "ca che",
+ "c ache",
+ "▁dest roy",
+ "▁ destroy",
+ "▁r ace",
+ "▁ra ce",
+ "▁rac e",
+ "▁ race",
+ "T ag",
+ "▁r id",
+ "▁ri d",
+ "▁ rid",
+ "▁neg ative",
+ "▁ negative",
+ "Ca r",
+ "C ar",
+ "ens ional",
+ "ension al",
+ "d k",
+ "▁c ro",
+ "▁cr o",
+ "▁ cro",
+ "▁TH EN",
+ "▁THE N",
+ "▁$ .",
+ "▁ $.",
+ "en sk",
+ "ens k",
+ "N E",
+ "H O",
+ "▁k le",
+ "▁kl e",
+ "osp ital",
+ "kt e",
+ "k te",
+ "fér ences",
+ "férence s",
+ "ud es",
+ "ude s",
+ "u des",
+ "I R",
+ "ot ion",
+ "oti on",
+ "o tion",
+ "▁Re al",
+ "▁ Real",
+ "▁Febru ar",
+ "и н",
+ "▁O ld",
+ "▁Ol d",
+ "▁ Old",
+ "ко го",
+ "к ого",
+ "le ich",
+ "lei ch",
+ "▁ р",
+ "ía n",
+ "í an",
+ "▁г а",
+ "▁ га",
+ "ci de",
+ "cid e",
+ "c ide",
+ "la b",
+ "l ab",
+ "▁p ull",
+ "▁pu ll",
+ "▁pul l",
+ "▁ pull",
+ "▁' /",
+ "Lo ng",
+ "L ong",
+ ", $",
+ "▁appropri ate",
+ "▁бы ла",
+ "▁был а",
+ "f ühr",
+ "▁M edia",
+ "▁Me dia",
+ "▁Med ia",
+ "▁Medi a",
+ "▁ Media",
+ "▁m anner",
+ "▁man ner",
+ "▁Г е",
+ "de scription",
+ "des cription",
+ "Be an",
+ "▁L ar",
+ "▁La r",
+ "▁ Lar",
+ "'] ;",
+ "' ];",
+ "▁re lation",
+ "▁rel ation",
+ "▁rela tion",
+ "▁ relation",
+ "▁S orry",
+ "▁Sor ry",
+ "ha r",
+ "h ar",
+ "cp p",
+ "c pp",
+ "▁K o",
+ "▁exec ution",
+ "▁execut ion",
+ "▁ execution",
+ "in os",
+ "ino s",
+ "i nos",
+ "▁b ul",
+ "▁bu l",
+ "▁ bul",
+ "gr ade",
+ "gra de",
+ "grad e",
+ "g rade",
+ "▁M u",
+ "▁p il",
+ "▁pi l",
+ "wr it",
+ "w rit",
+ "ific ations",
+ "ification s",
+ "in ese",
+ "ine se",
+ "ines e",
+ "▁Ph ili",
+ "▁Phil i",
+ "d x",
+ "▁le ading",
+ "▁lead ing",
+ "▁ leading",
+ "▁J ournal",
+ "ov ed",
+ "ove d",
+ "o ved",
+ "▁cont ro",
+ "▁contr o",
+ "но ва",
+ "нов а",
+ "н ова",
+ "Y es",
+ "▁ch annel",
+ "▁ channel",
+ ")) ,",
+ ") ),",
+ "is ten",
+ "ist en",
+ "iste n",
+ "i sten",
+ "ak a",
+ "a ka",
+ "To String",
+ "ma s",
+ "m as",
+ "▁e tt",
+ "▁et t",
+ "▁ ett",
+ "▁for ces",
+ "▁force s",
+ "ul ations",
+ "ulation s",
+ "▁C all",
+ "▁Cal l",
+ "▁Ca ll",
+ "▁ Call",
+ "▁explan ation",
+ "or ing",
+ "ori ng",
+ "o ring",
+ "AT A",
+ "A TA",
+ "ch ter",
+ "cht er",
+ "chte r",
+ "wh en",
+ "w hen",
+ "V C",
+ "▁Jah rh",
+ "▁Jahr h",
+ "Ca se",
+ "C ase",
+ "▁comm ands",
+ "▁command s",
+ "▁ commands",
+ "▁r ich",
+ "▁ric h",
+ "▁ri ch",
+ "▁ rich",
+ "bu s",
+ "b us",
+ "F e",
+ "mb ox",
+ "m box",
+ "▁re con",
+ "▁rec on",
+ "ñ o",
+ "▁s hape",
+ "▁sh ape",
+ "▁ shape",
+ "ow y",
+ "o wy",
+ "en try",
+ "ent ry",
+ "entr y",
+ "it able",
+ "ita ble",
+ "i table",
+ "▁e lection",
+ "▁el ection",
+ "▁elect ion",
+ "▁ele ction",
+ "є ться",
+ "▁p rep",
+ "▁pr ep",
+ "▁pre p",
+ "▁ prep",
+ "v á",
+ "▁in fin",
+ "▁inf in",
+ "lo t",
+ "l ot",
+ "▁bo oks",
+ "▁book s",
+ "▁ books",
+ "▁U SA",
+ "▁US A",
+ "▁ USA",
+ "ли н",
+ "л ин",
+ "▁p om",
+ "▁po m",
+ "▁ pom",
+ "▁n as",
+ "▁na s",
+ "▁ nas",
+ "▁t ags",
+ "▁tag s",
+ "▁ta gs",
+ "▁ tags",
+ "▁exec uted",
+ "▁execute d",
+ "▁execut ed",
+ "ail le",
+ "ai lle",
+ "a ille",
+ "lu ng",
+ "l ung",
+ "▁Java Script",
+ "▁ JavaScript",
+ "▁b all",
+ "▁bal l",
+ "▁ba ll",
+ "▁ ball",
+ "▁ain si",
+ "▁P ri",
+ "▁Pr i",
+ "{ $",
+ "▁U N",
+ "▁ UN",
+ "▁R am",
+ "▁Ra m",
+ "▁h ear",
+ "▁he ar",
+ "▁U buntu",
+ ">( );",
+ ">() ;",
+ "> ();",
+ "▁p ure",
+ "▁pu re",
+ "▁pur e",
+ "▁em bed",
+ "▁emb ed",
+ "▁ embed",
+ "a ção",
+ "cont roller",
+ "control ler",
+ "▁mar ried",
+ "▁F ol",
+ "▁Fo l",
+ "fa mil",
+ "f amil",
+ "▁p rec",
+ "▁pr ec",
+ "▁pre c",
+ "▁ prec",
+ "▁rec urs",
+ "pa d",
+ "p ad",
+ "istr ation",
+ "istra tion",
+ "▁respect ively",
+ "▁respective ly",
+ "[ $",
+ "au tor",
+ "aut or",
+ "auto r",
+ "a utor",
+ "▁g rav",
+ "▁gr av",
+ "▁gra v",
+ "ie ra",
+ "ier a",
+ "i era",
+ "az ioni",
+ "azi oni",
+ "a zioni",
+ "▁B ul",
+ "▁Bu l",
+ "▁Austral ia",
+ "mon d",
+ "mo nd",
+ "m ond",
+ "▁T ro",
+ "▁Tr o",
+ "▁E le",
+ "▁El e",
+ "pack ages",
+ "package s",
+ "ms dn",
+ "▁A ls",
+ "▁Al s",
+ "▁pr zy",
+ "▁prz y",
+ "AR T",
+ "A RT",
+ "▁char ge",
+ "▁charg e",
+ "▁ charge",
+ "▁app lications",
+ "▁application s",
+ "▁applic ations",
+ "Un it",
+ "Uni t",
+ "U nit",
+ "ar en",
+ "are n",
+ "a ren",
+ "▁sud den",
+ "om eter",
+ "ome ter",
+ "omet er",
+ "o meter",
+ "▁d ot",
+ "▁do t",
+ "▁ dot",
+ "ac ji",
+ "a cji",
+ "кт ор",
+ "кто р",
+ "к тор",
+ "im in",
+ "imi n",
+ "i min",
+ "en ing",
+ "eni ng",
+ "e ning",
+ "▁d onde",
+ "▁do nde",
+ "▁don de",
+ "▁H o",
+ "tr ee",
+ "tre e",
+ "t ree",
+ "m b",
+ "▁d rag",
+ "▁dr ag",
+ "▁dra g",
+ "▁ drag",
+ "aj e",
+ "a je",
+ "▁in valid",
+ "▁ invalid",
+ "▁fin ish",
+ "la im",
+ "▁f eed",
+ "▁fe ed",
+ "▁fee d",
+ "▁ feed",
+ "▁N ap",
+ "▁Na p",
+ "ro om",
+ "r oom",
+ "im ages",
+ "ima ges",
+ "image s",
+ "▁са й",
+ "▁su cc",
+ "▁suc c",
+ "if fer",
+ "iff er",
+ "iffe r",
+ "▁a ño",
+ "▁añ o",
+ "▁c ual",
+ "▁cu al",
+ "ме ри",
+ "мер и",
+ "D R",
+ "▁B ilder",
+ "▁Bi lder",
+ "▁Bild er",
+ "▁Bil der",
+ "б ра",
+ "ra it",
+ "rai t",
+ "r ait",
+ "pa n",
+ "p an",
+ "ен ь",
+ "е нь",
+ "▁dist inct",
+ "▁K n",
+ "ön ig",
+ "ö nig",
+ "an ced",
+ "ance d",
+ "anc ed",
+ "▁lo ading",
+ "▁load ing",
+ "▁ loading",
+ "▁Te chn",
+ "▁S el",
+ "▁Se l",
+ "mu s",
+ "m us",
+ "▁r ail",
+ "▁ra il",
+ "▁st udent",
+ "▁stud ent",
+ "▁ student",
+ "▁not ice",
+ "▁s la",
+ "▁sl a",
+ "▁Д а",
+ "▁gu ard",
+ "▁ guard",
+ "▁D ay",
+ "▁Da y",
+ "▁ Day",
+ "ва ли",
+ "вал и",
+ "в али",
+ "Op tion",
+ "Opt ion",
+ "O ption",
+ "ais on",
+ "ai son",
+ "a ison",
+ "ip p",
+ "i pp",
+ "▁J un",
+ "▁Ju n",
+ "▁f ell",
+ "▁fe ll",
+ "▁fel l",
+ "▁ab solute",
+ "▁absol ute",
+ "▁ absolute",
+ "ов е",
+ "о ве",
+ "de bug",
+ "deb ug",
+ "▁S ud",
+ "▁Su d",
+ "п ы",
+ "ug ins",
+ "ugin s",
+ "▁view s",
+ "▁vie ws",
+ "▁ views",
+ "la y",
+ "l ay",
+ "▁s urr",
+ "▁su rr",
+ "▁sur r",
+ "▁st ood",
+ "▁sto od",
+ "▁ stood",
+ "▁в і",
+ "▁ ві",
+ "select ed",
+ "sel ected",
+ "г і",
+ "▁att ributes",
+ "▁attribute s",
+ "▁ attributes",
+ "fin al",
+ "fi nal",
+ "f inal",
+ "en da",
+ "end a",
+ "▁B on",
+ "▁Bo n",
+ "ne rs",
+ "ner s",
+ "n ers",
+ "▁W er",
+ "▁We r",
+ "bu r",
+ "b ur",
+ "it tel",
+ "itt el",
+ "itte l",
+ "▁m oving",
+ "▁mov ing",
+ "▁mo ving",
+ "▁P lan",
+ "▁Pl an",
+ "▁Pla n",
+ "▁ Plan",
+ "is ches",
+ "isch es",
+ "ische s",
+ "isc hes",
+ "J ava",
+ "▁b asis",
+ "▁bas is",
+ "▁B us",
+ "▁Bu s",
+ "▁ Bus",
+ "▁A u",
+ "▁I ll",
+ "▁Il l",
+ "▁ Ill",
+ "▁вре мя",
+ "▁ц ент",
+ "▁ цент",
+ "hand le",
+ "сту п",
+ "▁F ar",
+ "▁Fa r",
+ "▁o raz",
+ "▁or az",
+ "▁ora z",
+ "oc r",
+ "o cr",
+ "▁se it",
+ "▁sei t",
+ "on der",
+ "ond er",
+ "onde r",
+ "o nder",
+ "до м",
+ "д ом",
+ ": /",
+ "ch or",
+ "cho r",
+ "c hor",
+ "▁T own",
+ "▁To wn",
+ "▁Tow n",
+ "▁def init",
+ "▁defin it",
+ "re act",
+ "rea ct",
+ "▁pie ce",
+ "▁Kar l",
+ "▁Ka rl",
+ "C I",
+ "▁App lication",
+ "▁ Application",
+ "un ter",
+ "unt er",
+ "unte r",
+ "▁for med",
+ "▁form ed",
+ "▁forme d",
+ "▁ formed",
+ "▁п у",
+ "▁ пу",
+ "B o",
+ "▁Dan iel",
+ "▁ Daniel",
+ "▁п ла",
+ "▁ пла",
+ "Bo dy",
+ "B ody",
+ "}) $",
+ "} )$",
+ "▁бы ли",
+ "▁был и",
+ "▁e arth",
+ "▁ear th",
+ "г ла",
+ "Th ere",
+ "The re",
+ "T here",
+ "▁с тра",
+ "▁ст ра",
+ "▁ стра",
+ "▁v ille",
+ "▁vi lle",
+ "▁vill e",
+ "▁vil le",
+ "▁ ville",
+ "▁c entre",
+ "▁cent re",
+ ") \r",
+ "▁help ful",
+ "▁+ +",
+ "▁ ++",
+ "▁C G",
+ "▁ CG",
+ "iz ione",
+ "izi one",
+ "izio ne",
+ "i zione",
+ "▁G ame",
+ "▁Ga me",
+ "▁Gam e",
+ "▁ Game",
+ "▁Wh ich",
+ "▁p ip",
+ "▁pi p",
+ "▁ pip",
+ "▁Port ug",
+ "D S",
+ "▁de scribe",
+ "▁des cribe",
+ "▁descri be",
+ "▁check ing",
+ "▁man ager",
+ "▁manage r",
+ "▁ manager",
+ "B O",
+ "▁B undes",
+ "▁Bund es",
+ "▁Bun des",
+ "bu ch",
+ "b uch",
+ "▁dec ided",
+ "▁decide d",
+ "▁decid ed",
+ "▁Jahrh undert",
+ "▁f if",
+ "▁fi f",
+ "▁ fif",
+ "e fficient",
+ "an ci",
+ "anc i",
+ "br aries",
+ "bra ries",
+ "▁f ails",
+ "▁fa ils",
+ "▁fail s",
+ "▁k ernel",
+ "▁ker nel",
+ "▁ kernel",
+ "▁G l",
+ "▁N acional",
+ "▁pro ceed",
+ "▁proc eed",
+ "▁f uer",
+ "▁fue r",
+ "▁fu er",
+ "▁l iving",
+ "▁li ving",
+ "▁liv ing",
+ "▁success fully",
+ "▁successful ly",
+ "▁f aster",
+ "▁fa ster",
+ "▁fast er",
+ "▁fas ter",
+ "▁con tre",
+ "▁cont re",
+ "▁contr e",
+ "▁ contre",
+ "▁pr ison",
+ "▁pri son",
+ "▁pris on",
+ "OR T",
+ "O RT",
+ "he lp",
+ "hel p",
+ "▁a utor",
+ "▁au tor",
+ "▁aut or",
+ "▁auto r",
+ "▁ autor",
+ "ła w",
+ "ł aw",
+ "aj ą",
+ "a ją",
+ "▁A rm",
+ "▁Ar m",
+ "▁ Arm",
+ "▁pro vin",
+ "▁prov in",
+ "▁na am",
+ "/ #",
+ "se d",
+ "s ed",
+ "▁g esch",
+ "▁ge sch",
+ "▁ges ch",
+ "▁ gesch",
+ "▁м ар",
+ "▁ма р",
+ "▁ мар",
+ "es k",
+ "e sk",
+ "ter m",
+ "te rm",
+ "t erm",
+ "▁T ex",
+ "▁Te x",
+ "▁ Tex",
+ "ir ing",
+ "iri ng",
+ "i ring",
+ "▁t ools",
+ "▁to ols",
+ "▁too ls",
+ "▁tool s",
+ "▁ tools",
+ "PD F",
+ "P DF",
+ "▁u lt",
+ "▁ul t",
+ "▁ ult",
+ "iss enschaft",
+ "issen schaft",
+ "▁could n",
+ "di ng",
+ "din g",
+ "d ing",
+ "De p",
+ "D ep",
+ "{ -",
+ "▁pre dict",
+ "▁pred ict",
+ "▁ predict",
+ "ant age",
+ "anta ge",
+ "▁L ike",
+ "▁Li ke",
+ "▁ Like",
+ "▁Б и",
+ "to ols",
+ "tool s",
+ "t ools",
+ "es tra",
+ "est ra",
+ "estr a",
+ "e stra",
+ "▁k i",
+ "▁ ki",
+ "▁J im",
+ "▁Ji m",
+ "st ar",
+ "sta r",
+ "s tar",
+ "▁re mark",
+ "▁r emark",
+ "▁rem ark",
+ "▁ remark",
+ "ó g",
+ "na bla",
+ "nab la",
+ "▁Al though",
+ "mod e",
+ "mo de",
+ "m ode",
+ "H ost",
+ "▁st range",
+ "▁str ange",
+ "▁stran ge",
+ "No ne",
+ "Non e",
+ "N one",
+ "bl ack",
+ "bla ck",
+ "b lack",
+ "▁F estival",
+ "▁Fest ival",
+ "▁I S",
+ "▁ IS",
+ "an za",
+ "anz a",
+ "▁( -",
+ "▁ (-",
+ "ic ket",
+ "ick et",
+ "i cket",
+ "ко ла",
+ "кол а",
+ "▁J es",
+ "▁Je s",
+ "▁f lex",
+ "▁fl ex",
+ "▁fle x",
+ "▁ flex",
+ "▁ À",
+ "▁N etwork",
+ "▁Net work",
+ "▁ Network",
+ "▁E X",
+ "▁ EX",
+ "▁e nero",
+ "▁en ero",
+ "▁ener o",
+ "! ”",
+ "▁O rt",
+ "▁Or t",
+ "▁al ors",
+ "▁Or iginal",
+ "▁Origin al",
+ "▁Orig inal",
+ "▁ Original",
+ "▁z o",
+ "▁ zo",
+ "ны ми",
+ "ным и",
+ "▁s pl",
+ "▁sp l",
+ "▁ spl",
+ "Dra w",
+ "Dr aw",
+ "D raw",
+ "yo nd",
+ "y ond",
+ "─ ─",
+ "▁O t",
+ "▁d ram",
+ "▁dr am",
+ "▁dra m",
+ "▁di vision",
+ "▁div ision",
+ "▁divis ion",
+ "▁e fficient",
+ "▁effic ient",
+ "▁ efficient",
+ "▁Г а",
+ "▁v ier",
+ "▁vi er",
+ "▁vie r",
+ "▁ vier",
+ "na k",
+ "n ak",
+ "L S",
+ "▁sp irit",
+ "▁spir it",
+ "zeich net",
+ "▁d ici",
+ "▁di ci",
+ "▁dic i",
+ "cl ear",
+ "cle ar",
+ "c lear",
+ "co py",
+ "cop y",
+ "c opy",
+ "ya r",
+ "y ar",
+ "▁ро ці",
+ "us qu",
+ "u squ",
+ "▁n ous",
+ "▁no us",
+ "▁nou s",
+ "▁b lev",
+ "▁bl ev",
+ "▁ble v",
+ "ж де",
+ "Ar g",
+ "A rg",
+ "▁per formed",
+ "▁perform ed",
+ "▁M ake",
+ "▁Ma ke",
+ "▁Mak e",
+ "▁ Make",
+ "▁Car ol",
+ "▁Ca rol",
+ "et to",
+ "ett o",
+ "e tto",
+ "▁S and",
+ "▁San d",
+ "▁Sa nd",
+ "▁D isc",
+ "▁Dis c",
+ "▁Di sc",
+ "En c",
+ "E nc",
+ "re ro",
+ "rer o",
+ "r ero",
+ "ha sh",
+ "has h",
+ "h ash",
+ "▁f ocus",
+ "▁fo cus",
+ "▁foc us",
+ "▁ focus",
+ "▁att ention",
+ "▁a gre",
+ "▁ag re",
+ "▁agr e",
+ "▁di vis",
+ "▁div is",
+ "▁бы ло",
+ "▁был о",
+ "▁e j",
+ "▁ ej",
+ "▁m arch",
+ "▁mar ch",
+ "▁marc h",
+ "▁ph ase",
+ "▁ phase",
+ "ía s",
+ "í as",
+ "▁ph il",
+ "▁P ap",
+ "▁Pa p",
+ "▁r iver",
+ "▁riv er",
+ "▁ri ver",
+ "▁ river",
+ "▁c aused",
+ "▁caus ed",
+ "▁cause d",
+ "▁ca used",
+ "pl ugin",
+ "▁Te am",
+ "▁ Team",
+ "ul er",
+ "ule r",
+ "u ler",
+ "▁$ (\"#",
+ "▁$(\" #",
+ "ie j",
+ "i ej",
+ "I SBN",
+ "na m",
+ "n am",
+ "▁f ight",
+ "▁fig ht",
+ "vi d",
+ "v id",
+ "▁L ud",
+ "▁Lu d",
+ "Select ed",
+ ":@ \"",
+ ": @\"",
+ "▁P od",
+ "▁Po d",
+ "▁ Pod",
+ "▁ann ées",
+ "▁année s",
+ "ar ios",
+ "ari os",
+ "ario s",
+ "a rios",
+ "▁deutsch er",
+ "▁deutsche r",
+ "▁N A",
+ "▁ NA",
+ "▁и ю",
+ "▁d ictionary",
+ "▁diction ary",
+ "▁ dictionary",
+ "▁Л а",
+ "▁T ri",
+ "▁Tr i",
+ "▁ Tri",
+ "è n",
+ "▁polit ical",
+ "rid ge",
+ "r idge",
+ "at ten",
+ "att en",
+ "atte n",
+ "▁circ le",
+ "▁cir cle",
+ "▁ circle",
+ "▁trans port",
+ "▁ transport",
+ "em as",
+ "ema s",
+ "e mas",
+ "F C",
+ "▁replace d",
+ "▁repla ced",
+ "▁A ud",
+ "▁Au d",
+ "is ka",
+ "isk a",
+ "i ska",
+ "Config uration",
+ "▁so ort",
+ "▁Н е",
+ "▁s equ",
+ "▁se qu",
+ "▁seq u",
+ "▁ sequ",
+ "PR O",
+ "P RO",
+ "▁b ud",
+ "▁bu d",
+ "▁ bud",
+ "▁{ {",
+ "▁ {{",
+ "lie ß",
+ "l ieß",
+ "▁M as",
+ "▁Ma s",
+ "de rs",
+ "der s",
+ "d ers",
+ "us ammen",
+ "es a",
+ "e sa",
+ "▁L y",
+ "в ро",
+ "ma c",
+ "m ac",
+ "▁и спо",
+ "▁ис по",
+ "▁s uc",
+ "▁su c",
+ "u y",
+ "▁ill ustr",
+ "▁prim era",
+ "▁prime ra",
+ "▁primer a",
+ "il ation",
+ "ila tion",
+ "i lation",
+ "▁st orage",
+ "▁stor age",
+ "▁sto rage",
+ "▁ storage",
+ "▁par ams",
+ "▁para ms",
+ "▁param s",
+ "▁pa rams",
+ "▁ params",
+ "ka z",
+ "k az",
+ "▁term inal",
+ "▁termin al",
+ "ра ль",
+ "рал ь",
+ "р аль",
+ "▁h olds",
+ "▁hold s",
+ "▁hol ds",
+ "▁ holds",
+ "ло сь",
+ "▁n ad",
+ "▁na d",
+ "▁ nad",
+ "” .",
+ "▁oct ubre",
+ "bu l",
+ "b ul",
+ "▁h us",
+ "▁hu s",
+ "▁ hus",
+ "UL T",
+ "U LT",
+ "▁ég alement",
+ "▁M ill",
+ "▁Mil l",
+ "▁Mi ll",
+ "▁ Mill",
+ "ła d",
+ "ł ad",
+ "▁cont iene",
+ "\" ?",
+ "▁> >>",
+ "▁>> >",
+ "Qu e",
+ "Q ue",
+ " ",
+ "▁p lain",
+ "▁pl ain",
+ "▁pla in",
+ "▁ plain",
+ "at iva",
+ "ativ a",
+ "ati va",
+ "oc ker",
+ "ock er",
+ "o cker",
+ "Name s",
+ "Na mes",
+ "N ames",
+ "▁J ud",
+ "▁Ju d",
+ "▁ag ree",
+ "▁agre e",
+ "▁agr ee",
+ "▁G emeinde",
+ "▁Geme inde",
+ "la re",
+ "lar e",
+ "l are",
+ "ка за",
+ "каз а",
+ "▁st arts",
+ "▁start s",
+ "▁star ts",
+ "▁ starts",
+ "▁p rice",
+ "▁pr ice",
+ "▁pri ce",
+ "▁ price",
+ "T arget",
+ "cu s",
+ "c us",
+ "▁Inst ead",
+ ". ;",
+ "▁altern ative",
+ "▁alter native",
+ "▁в ла",
+ "I E",
+ "▁organ iz",
+ "in u",
+ "i nu",
+ "▁comp leted",
+ "▁comple ted",
+ "▁complet ed",
+ "▁complete d",
+ "▁car ry",
+ "at om",
+ "ato m",
+ "a tom",
+ "▁dep ending",
+ "▁depend ing",
+ "▁O ur",
+ "▁in sp",
+ "▁ins p",
+ "▁& \\",
+ "▁ &\\",
+ "ail y",
+ "ai ly",
+ "a ily",
+ "ir ection",
+ "ire ction",
+ "irect ion",
+ "ф а",
+ "▁d efe",
+ "▁de fe",
+ "▁def e",
+ "TA C",
+ "T AC",
+ "▁de signed",
+ "▁des igned",
+ "▁design ed",
+ "▁v oir",
+ "▁vo ir",
+ "▁ voir",
+ "bre ak",
+ "▁part ie",
+ "▁parti e",
+ "▁J ahren",
+ "▁Jah ren",
+ "▁Jahr en",
+ "▁Jahre n",
+ "▁Ja hren",
+ "▁st udio",
+ "▁stud io",
+ "▁studi o",
+ "▁ studio",
+ "▁j our",
+ "▁jo ur",
+ "▁jou r",
+ "▁N otes",
+ "▁No tes",
+ "▁Not es",
+ "▁Note s",
+ "fi re",
+ "fir e",
+ "f ire",
+ "ho use",
+ "hou se",
+ "h ouse",
+ "su ccess",
+ "▁J uan",
+ "▁Ju an",
+ "J S",
+ "▁C ustom",
+ "▁ Custom",
+ "▁b esch",
+ "▁be sch",
+ "▁bes ch",
+ "▁st ated",
+ "▁stat ed",
+ "▁state d",
+ "▁sta ted",
+ "boot strap",
+ "öt t",
+ "ö tt",
+ "oz zá",
+ "▁C ON",
+ "▁CO N",
+ "▁ CON",
+ "ha v",
+ "h av",
+ "▁s leep",
+ "▁sle ep",
+ "▁ sleep",
+ "ed a",
+ "e da",
+ "ho t",
+ "h ot",
+ "án d",
+ "á nd",
+ "▁S y",
+ "▁tem ps",
+ "▁temp s",
+ "▁ temps",
+ "am ar",
+ "ama r",
+ "a mar",
+ "▁s cal",
+ "▁sc al",
+ "▁ scal",
+ "▁a st",
+ "▁as t",
+ "▁ ast",
+ "▁op ening",
+ "▁open ing",
+ "cli pse",
+ "clip se",
+ "c lipse",
+ "▁program ming",
+ "▁ programming",
+ "▁let ters",
+ "▁letter s",
+ "▁lett ers",
+ "▁pro file",
+ "▁prof ile",
+ "▁profil e",
+ "▁ profile",
+ "na h",
+ "n ah",
+ "▁be yond",
+ "▁Fur ther",
+ "face s",
+ "fa ces",
+ "fac es",
+ "f aces",
+ "▁c hart",
+ "▁ch art",
+ "▁char t",
+ "▁cha rt",
+ "▁ chart",
+ "зд а",
+ "з да",
+ "ai gn",
+ "a ign",
+ "ні й",
+ "н ій",
+ "▁R ol",
+ "▁Ro l",
+ "ова но",
+ "ован о",
+ "ter ior",
+ "te rior",
+ "we d",
+ "w ed",
+ "▁her self",
+ "▁hers elf",
+ "▁n g",
+ "▁ ng",
+ "angu ages",
+ "anguage s",
+ "}= \\",
+ "} =\\",
+ "ynam ic",
+ "yna mic",
+ "▁j ug",
+ "▁ju g",
+ "▁Ex ample",
+ "▁ Example",
+ "▁( †",
+ "▁play ing",
+ "▁pla ying",
+ "▁us age",
+ "▁ usage",
+ "▁man aged",
+ "▁manage d",
+ "▁ managed",
+ "▁N atur",
+ "▁Nat ur",
+ "те ри",
+ "тер и",
+ "▁E t",
+ "er ia",
+ "eri a",
+ "e ria",
+ "▁daugh ter",
+ "ни ем",
+ "ние м",
+ "F ragment",
+ "▁h ol",
+ "▁ho l",
+ "▁ hol",
+ "F l",
+ "огра фи",
+ "ограф и",
+ "о графи",
+ "▁i hn",
+ "▁ih n",
+ "ü h",
+ "inst ance",
+ "▁com un",
+ "▁co mun",
+ "▁tr uth",
+ "▁са мо",
+ "▁сам о",
+ "▁implement ed",
+ "▁any way",
+ "▁C ro",
+ "▁Cr o",
+ "ф е",
+ "G C",
+ "ub untu",
+ "u buntu",
+ "ty pes",
+ "type s",
+ "typ es",
+ "t ypes",
+ "ê s",
+ ".~ \\",
+ ". ~\\",
+ "fo ld",
+ "fol d",
+ "f old",
+ "▁jo ined",
+ "▁join ed",
+ "? ?",
+ "▁m é",
+ "▁ mé",
+ "▁w ild",
+ "▁wil d",
+ "к лю",
+ "row ser",
+ "rows er",
+ "▁H ome",
+ "▁Ho me",
+ "▁Hom e",
+ "▁ Home",
+ "sk iej",
+ "ski ej",
+ "skie j",
+ "s kiej",
+ "▁J OIN",
+ "▁ju in",
+ "ho f",
+ "h of",
+ "▁data set",
+ "▁dat aset",
+ "▁datas et",
+ "▁ dataset",
+ "ж ду",
+ "') )",
+ "' ))",
+ "▁mie js",
+ "AP I",
+ "A PI",
+ "▁ed ited",
+ "▁edit ed",
+ "ool s",
+ "oo ls",
+ "o ols",
+ "▁se eing",
+ "▁see ing",
+ "ij d",
+ "i jd",
+ "▁pro cedure",
+ "▁proced ure",
+ "▁B ras",
+ "▁Br as",
+ "▁Bra s",
+ "▁s igned",
+ "▁sign ed",
+ "▁sig ned",
+ "▁ signed",
+ "▁extern os",
+ "▁dis app",
+ "▁D irect",
+ "▁Di rect",
+ "▁Dire ct",
+ "▁Dir ect",
+ "▁ Direct",
+ "cy c",
+ "c yc",
+ "▁cons ult",
+ "ör d",
+ "ö rd",
+ "W idget",
+ "ci ous",
+ "cio us",
+ "c ious",
+ "se ct",
+ "sec t",
+ "s ect",
+ "▁Д и",
+ "▁w ind",
+ "▁win d",
+ "▁ wind",
+ "▁Archiv ado",
+ "am l",
+ "a ml",
+ "с с",
+ "W h",
+ "kb d",
+ "k bd",
+ "▁Ar my",
+ "▁Arm y",
+ "▁s uffer",
+ "▁suf fer",
+ "▁suff er",
+ "art ifact",
+ "▁resol ve",
+ "▁ resolve",
+ "▁S port",
+ "▁Sp ort",
+ "▁Spo rt",
+ "▁ц е",
+ "▁ це",
+ "id as",
+ "ida s",
+ "i das",
+ "▁t ax",
+ "▁ta x",
+ "▁ tax",
+ "id i",
+ "i di",
+ "▁a ctions",
+ "▁act ions",
+ "▁action s",
+ "▁ actions",
+ "пр а",
+ "п ра",
+ "pu és",
+ "p ués",
+ "▁n aj",
+ "▁na j",
+ "F alse",
+ "▁ch ance",
+ "▁та ко",
+ "▁так о",
+ "ä d",
+ "▁d ol",
+ "▁do l",
+ "▁en v",
+ "▁ env",
+ "▁bas ically",
+ "▁basic ally",
+ "▁Coun cil",
+ "zt e",
+ "z te",
+ "▁display ed",
+ "ni l",
+ "n il",
+ "comp lete",
+ "comple te",
+ "▁L em",
+ "▁Le m",
+ "ian ce",
+ "i ance",
+ "▁ос нов",
+ "▁de pend",
+ "▁dep end",
+ "pl om",
+ "ens us",
+ "ut s",
+ "u ts",
+ "▁H ot",
+ "▁Ho t",
+ "▁ Hot",
+ "bit r",
+ "bi tr",
+ "▁valid ation",
+ "▁ validation",
+ "ab b",
+ "a bb",
+ "▁т ре",
+ "▁ тре",
+ "k m",
+ "z d",
+ "ö ff",
+ "W E",
+ "▁inter ested",
+ "▁interest ed",
+ "▁{ \"",
+ "▁ {\"",
+ "ar o",
+ "a ro",
+ "▁cor rel",
+ "▁corre l",
+ "▁corr el",
+ "▁d edic",
+ "▁de dic",
+ "▁ded ic",
+ "▁l ists",
+ "▁list s",
+ "▁ lists",
+ "▁Bibli ografia",
+ "▁ear lier",
+ "pr ogram",
+ "pro gram",
+ "prog ram",
+ "▁prem ière",
+ "▁premi ère",
+ "fr ont",
+ "f ront",
+ "T ab",
+ "ст ву",
+ "ств у",
+ "dr op",
+ "dro p",
+ "d rop",
+ "▁f ear",
+ "▁fe ar",
+ "▁En laces",
+ "▁C apt",
+ "▁Cap t",
+ "▁Ca pt",
+ "▁ Capt",
+ "▁real iz",
+ "▁h al",
+ "▁ha l",
+ "▁ hal",
+ "▁inst ances",
+ "▁instance s",
+ "▁su sp",
+ "▁sus p",
+ "il ling",
+ "ill ing",
+ "illi ng",
+ "% ;",
+ "{ }",
+ "| |",
+ "▁part ition",
+ "▁parti tion",
+ "▁ partition",
+ "▁Bu ild",
+ "▁ Build",
+ "▁w o",
+ "▁ wo",
+ "▁П ер",
+ "▁Пе р",
+ "▁direct or",
+ "▁dire ctor",
+ "▁dir ector",
+ "▁S in",
+ "▁Si n",
+ "ти я",
+ "rs g",
+ "r sg",
+ "ou ver",
+ "ouv er",
+ "ouve r",
+ "▁near ly",
+ "od a",
+ "o da",
+ "кти в",
+ "к тив",
+ "▁s ir",
+ "▁si r",
+ "IM E",
+ "I ME",
+ "▁jan vier",
+ "▁W in",
+ "▁Wi n",
+ "▁ Win",
+ "Bu ild",
+ "ie urs",
+ "ieu rs",
+ "ieur s",
+ "i eurs",
+ "IN E",
+ "I NE",
+ "d ouble",
+ "La st",
+ "L ast",
+ "▁pol icy",
+ "▁polic y",
+ "▁ policy",
+ "st ore",
+ "sto re",
+ "stor e",
+ "▁obser ved",
+ "▁observ ed",
+ "▁observe d",
+ "▁obs erved",
+ "▁famil ie",
+ "ni ca",
+ "nic a",
+ "n ica",
+ "re y",
+ "r ey",
+ "з ь",
+ "▁Y ear",
+ "▁Ye ar",
+ "▁ Year",
+ "▁develop ed",
+ "▁deve loped",
+ "▁Inst itute",
+ "▁Instit ute",
+ "▁Institut e",
+ "▁re ply",
+ "▁rep ly",
+ "Com ple",
+ "Comp le",
+ "ic ian",
+ "ici an",
+ "icia n",
+ "i cian",
+ "▁G uer",
+ "▁Gu er",
+ "▁d all",
+ "▁da ll",
+ "▁dal l",
+ "▁d esp",
+ "▁de sp",
+ "▁des p",
+ "▁Foot ball",
+ "Em pty",
+ "Emp ty",
+ "ck en",
+ "cke n",
+ "c ken",
+ "un da",
+ "und a",
+ "▁U r",
+ "▁i g",
+ "▁ ig",
+ "▁A tl",
+ "▁At l",
+ "aut hor",
+ "auth or",
+ "▁B ol",
+ "▁Bo l",
+ "zi g",
+ "z ig",
+ "na t",
+ "n at",
+ "š t",
+ "se curity",
+ "sec urity",
+ "on ic",
+ "oni c",
+ "o nic",
+ "▁p es",
+ "▁pe s",
+ "▁ pes",
+ "it an",
+ "ita n",
+ "i tan",
+ "▁Ex tern",
+ "▁Ext ern",
+ "ja n",
+ "j an",
+ "VA L",
+ "V AL",
+ "▁и м",
+ "▁ им",
+ "bo ld",
+ "bol d",
+ "b old",
+ "▁в а",
+ "▁ ва",
+ "▁М о",
+ "▁dis put",
+ "▁disp ut",
+ "▁t rick",
+ "▁tr ick",
+ "▁tri ck",
+ "▁p ed",
+ "▁pe d",
+ "▁ ped",
+ ")^ {",
+ ") ^{",
+ "in to",
+ "int o",
+ "Si m",
+ "S im",
+ "▁par allel",
+ "▁ parallel",
+ "fo x",
+ "f ox",
+ "norm al",
+ "nor mal",
+ "n ormal",
+ "in ent",
+ "ine nt",
+ "inen t",
+ "пе ди",
+ "п еди",
+ "ho ld",
+ "hol d",
+ "h old",
+ "O K",
+ "▁c hem",
+ "▁ch em",
+ "▁che m",
+ "▁ chem",
+ "▁tw ice",
+ "▁us ername",
+ "▁user name",
+ "▁ username",
+ "i č",
+ "▁re presentation",
+ "▁represent ation",
+ "▁repres entation",
+ "▁j ournal",
+ "▁jour nal",
+ "▁journ al",
+ "▁: -",
+ "▁ :-",
+ "▁b att",
+ "▁ba tt",
+ "▁bat t",
+ "\\ %",
+ "▁certain ly",
+ "▁Ex ception",
+ "▁ Exception",
+ "ep s",
+ "e ps",
+ "sh ot",
+ "s hot",
+ "at egy",
+ "ate gy",
+ "ateg y",
+ "Sh ow",
+ "S how",
+ "▁Car l",
+ "▁Ca rl",
+ "ri g",
+ "r ig",
+ "▁rep orted",
+ "▁report ed",
+ "bot tom",
+ "b ottom",
+ "T F",
+ "▁Francis co",
+ "na p",
+ "n ap",
+ "▁Champion ship",
+ "▁Champions hip",
+ "▁c ourt",
+ "▁co urt",
+ "▁cour t",
+ "▁cou rt",
+ "▁ court",
+ "▁s ources",
+ "▁source s",
+ "io ur",
+ "i our",
+ "▁con serv",
+ "▁cons erv",
+ "▁conse rv",
+ "▁conser v",
+ "di ct",
+ "dic t",
+ "d ict",
+ "▁Р у",
+ "I B",
+ "▁V e",
+ "▁ №",
+ "▁E R",
+ "▁ ER",
+ "\") );",
+ "\")) ;",
+ "\" ));",
+ "▁P oint",
+ "▁Po int",
+ "▁ Point",
+ "az ine",
+ "azi ne",
+ "▁inter net",
+ "▁intern et",
+ "д на",
+ "▁car ried",
+ "▁carri ed",
+ "▁F ield",
+ "▁ Field",
+ "ax is",
+ "axi s",
+ "a xis",
+ "▁S un",
+ "▁Su n",
+ "▁a ve",
+ "▁av e",
+ "▁ ave",
+ "пи с",
+ "п ис",
+ "я н",
+ "as y",
+ "▁ju lio",
+ "▁jul io",
+ "▁juli o",
+ "▁de puis",
+ "▁dep uis",
+ "▁sugg estion",
+ "▁suggest ion",
+ "[ [",
+ "▁Arch ive",
+ "▁Archiv e",
+ "ę p",
+ "▁P ra",
+ "▁Pr a",
+ "re h",
+ "r eh",
+ "▁demon str",
+ "ф і",
+ "cm d",
+ "c md",
+ "▁was n",
+ "▁wa sn",
+ "▁ph one",
+ "▁ phone",
+ "up load",
+ "ay a",
+ "a ya",
+ "то ра",
+ "тор а",
+ "li nes",
+ "line s",
+ "lin es",
+ "l ines",
+ "▁in du",
+ "▁ind u",
+ "▁ indu",
+ "▁v ot",
+ "▁vo t",
+ "▁es pa",
+ "▁esp a",
+ "▁b in",
+ "▁bi n",
+ "▁ bin",
+ "▁по сле",
+ "▁пос ле",
+ "pl an",
+ "pla n",
+ "p lan",
+ "▁ju nio",
+ "▁jun io",
+ "▁juni o",
+ "or ial",
+ "oria l",
+ "ori al",
+ "o rial",
+ "fr ee",
+ "fre e",
+ "f ree",
+ "ster reich",
+ "▁д у",
+ "▁ ду",
+ "▁link ed",
+ "▁lin ked",
+ "▁en able",
+ "▁ enable",
+ "P C",
+ "▁dens ity",
+ "▁E gy",
+ "▁Eg y",
+ "y o",
+ "end re",
+ "▁с ъ",
+ "▁ital iano",
+ "▁A R",
+ "▁ AR",
+ "▁P ers",
+ "▁Per s",
+ "▁Pe rs",
+ "▁ Pers",
+ "fér és",
+ "▁с кла",
+ "V ar",
+ "▁On ce",
+ "▁ Once",
+ "Re d",
+ "R ed",
+ "buf fer",
+ "buff er",
+ "b uffer",
+ "▁En ter",
+ "▁Ent er",
+ "▁ Enter",
+ "▁ Š",
+ "im iento",
+ "imi ento",
+ "St ore",
+ "Sto re",
+ "▁he alth",
+ "va t",
+ "v at",
+ "IS T",
+ "I ST",
+ "O h",
+ "▁k w",
+ "▁ kw",
+ "▁r iv",
+ "▁ri v",
+ "▁ riv",
+ "▁some where",
+ "ograf ie",
+ "ografi e",
+ "priv ate",
+ "p rivate",
+ "кт и",
+ "к ти",
+ "▁de lay",
+ "▁del ay",
+ "▁ delay",
+ "▁H ttp",
+ "▁ Http",
+ "jo b",
+ "j ob",
+ "ra el",
+ "r ael",
+ "em por",
+ "emp or",
+ "▁dici embre",
+ "▁dic iembre",
+ "êt e",
+ "ê te",
+ "ц у",
+ "▁com mit",
+ "▁comm it",
+ "▁ commit",
+ "os o",
+ "o so",
+ "Val ues",
+ "Value s",
+ "▁he aders",
+ "▁head ers",
+ "▁header s",
+ "▁ headers",
+ "trans form",
+ "▁process ing",
+ "▁proces sing",
+ "▁ processing",
+ "r å",
+ "▁A h",
+ "▁ Ah",
+ "▁N ode",
+ "▁No de",
+ "▁ Node",
+ "-- ----------",
+ "---- --------",
+ "-------- ----",
+ "------ ------",
+ "----- -------",
+ "------- -----",
+ "---------- --",
+ "▁f aire",
+ "▁fa ire",
+ "▁fair e",
+ "▁h un",
+ "▁hu n",
+ "Pl ayer",
+ "Play er",
+ "P layer",
+ "▁re view",
+ "▁rev iew",
+ "▁ review",
+ "г да",
+ "▁lim ited",
+ "▁limit ed",
+ "▁ limited",
+ "▁Pro perty",
+ "▁ Property",
+ "▁s erve",
+ "▁ser ve",
+ "▁serv e",
+ "▁ serve",
+ "ri age",
+ "ria ge",
+ "▁M aster",
+ "▁Ma ster",
+ "▁Mas ter",
+ "▁ Master",
+ "▁k ann",
+ "▁kan n",
+ "▁ka nn",
+ "cre te",
+ "cret e",
+ "cr ete",
+ "ph ere",
+ "pher e",
+ "phe re",
+ "p here",
+ "ё р",
+ "▁ch ief",
+ "▁chi ef",
+ "▁sc ene",
+ "▁scen e",
+ "▁ scene",
+ "ki n",
+ "k in",
+ "▁un iform",
+ "▁ uniform",
+ "▁feb rero",
+ "\" }",
+ "il lo",
+ "ill o",
+ "IT E",
+ "I TE",
+ "ou vel",
+ "ouv el",
+ "ouve l",
+ "use package",
+ "en th",
+ "ent h",
+ "e nth",
+ "▁quick ly",
+ "L ambda",
+ "xe s",
+ "x es",
+ "▁c ells",
+ "▁cell s",
+ "▁cel ls",
+ "ro g",
+ "r og",
+ "am in",
+ "ami n",
+ "a min",
+ "▁М ар",
+ "▁Ма р",
+ "▁may or",
+ "▁mayo r",
+ "pl ayer",
+ "play er",
+ "pla yer",
+ "p layer",
+ "++ ;",
+ "▁На се",
+ "▁sa fe",
+ "▁saf e",
+ "▁ safe",
+ "▁ve loc",
+ "▁vel oc",
+ "▁о бра",
+ "▁об ра",
+ "▁ обра",
+ "Data base",
+ "Dat abase",
+ "D atabase",
+ "ne h",
+ "n eh",
+ "Ver t",
+ "V ert",
+ "▁f le",
+ "▁fl e",
+ "▁ф ор",
+ "▁фо р",
+ "▁ фор",
+ "▁f oreign",
+ "▁for eign",
+ "▁fore ign",
+ "Ab stract",
+ "▁m agn",
+ "▁ma gn",
+ "▁mag n",
+ "▁mod ified",
+ "▁milit ary",
+ "▁militar y",
+ "▁m onde",
+ "▁mon de",
+ "▁mo nde",
+ "▁mond e",
+ "▁A ction",
+ "▁Act ion",
+ "▁Ac tion",
+ "▁ Action",
+ "▁b ank",
+ "▁ban k",
+ "▁ bank",
+ "Ser ial",
+ "Se rial",
+ "▁contin uous",
+ "▁continu ous",
+ "▁g el",
+ "▁ge l",
+ "▁ gel",
+ "▁phys ical",
+ "▁introdu ced",
+ "▁introduce d",
+ "ut ure",
+ "ri ck",
+ "ric k",
+ "r ick",
+ "▁present ed",
+ "▁pres ented",
+ "▁presente d",
+ "▁P rov",
+ "▁Pro v",
+ "▁Pr ov",
+ "▁B oth",
+ "▁Bo th",
+ "▁Bot h",
+ "Po s",
+ "P os",
+ "su per",
+ "sup er",
+ "s uper",
+ "& #",
+ "▁f inding",
+ "▁find ing",
+ "▁fin ding",
+ "ne l",
+ "n el",
+ "un de",
+ "und e",
+ "u nde",
+ "▁fr ån",
+ "sk im",
+ "ski m",
+ "s kim",
+ "▁H ill",
+ "▁Hi ll",
+ "▁Hil l",
+ "f n",
+ "▁Can ad",
+ "▁Ca nad",
+ "▁int ended",
+ "▁inten ded",
+ "▁intend ed",
+ "ozzá férés",
+ "▁ju illet",
+ "▁W ars",
+ "▁War s",
+ "▁Wa rs",
+ "▁success ful",
+ "▁ch arg",
+ "▁char g",
+ "▁cha rg",
+ "▁ charg",
+ "ie le",
+ "iel e",
+ "i ele",
+ "om ething",
+ "ome thing",
+ "omet hing",
+ "ok u",
+ "o ku",
+ "f etch",
+ "▁} }",
+ "▁ }}",
+ "ban k",
+ "b ank",
+ "operator name",
+ "▁Col or",
+ "▁Co lor",
+ "▁ Color",
+ "▁C ard",
+ "▁Car d",
+ "▁Ca rd",
+ "▁ Card",
+ "t u",
+ "▁\" ,",
+ "▁ \",",
+ "wi d",
+ "w id",
+ "▁g ep",
+ "▁ge p",
+ "X ML",
+ "======== ========",
+ "▁Vir gin",
+ "ähr end",
+ "äh rend",
+ "lic ated",
+ "licate d",
+ "lica ted",
+ "Di r",
+ "D ir",
+ "ze ro",
+ "zer o",
+ "z ero",
+ "▁K al",
+ "▁Ka l",
+ "▁Par ty",
+ "▁Part y",
+ "▁ å",
+ "pr ice",
+ "p rice",
+ "do n",
+ "d on",
+ "▁w arning",
+ "▁war ning",
+ "▁warn ing",
+ "▁ warning",
+ "▁B ad",
+ "▁Ba d",
+ "▁ Bad",
+ "▁S upp",
+ "▁Su pp",
+ "▁Sup p",
+ "▁ Supp",
+ "▁L iga",
+ "▁Li ga",
+ "▁Lig a",
+ "▁P ierre",
+ "▁Pier re",
+ "▁ Pierre",
+ "Re cord",
+ "Rec ord",
+ "ul ator",
+ "ula tor",
+ "▁R ome",
+ "▁Ro me",
+ "▁Rom e",
+ "▁the orem",
+ "▁ theorem",
+ "▁entire ly",
+ "ски м",
+ "ск им",
+ "с ким",
+ "he t",
+ "h et",
+ "▁d opo",
+ "▁do po",
+ "▁dop o",
+ "Ne xt",
+ "N ext",
+ "ml ung",
+ "m lung",
+ "wi g",
+ "w ig",
+ "▁A th",
+ "▁At h",
+ "▁S ou",
+ "▁So u",
+ "li cher",
+ "lic her",
+ "lich er",
+ "liche r",
+ "l icher",
+ "▁s udo",
+ "▁su do",
+ "▁sud o",
+ "▁ sudo",
+ "es ts",
+ "est s",
+ "хі в",
+ "х ів",
+ "▁sept iembre",
+ "▁m icro",
+ "▁mi cro",
+ "▁mic ro",
+ "▁t rop",
+ "▁tr op",
+ "▁tro p",
+ "fi t",
+ "f it",
+ "Co re",
+ "Cor e",
+ "C ore",
+ "▁Rad io",
+ "▁ Radio",
+ "▁Or gan",
+ "▁ Organ",
+ "▁P ower",
+ "▁Po wer",
+ "▁Pow er",
+ "▁ Power",
+ "C F",
+ "▁L ast",
+ "▁La st",
+ "▁Las t",
+ "▁ Last",
+ "▁op pos",
+ "▁opp os",
+ "▁off set",
+ "▁ offset",
+ "▁re gia",
+ "▁reg ia",
+ "▁min imum",
+ "▁minim um",
+ "▁hel ped",
+ "▁help ed",
+ "an don",
+ "and on",
+ "ando n",
+ "if ying",
+ "ify ing",
+ "ru it",
+ "r uit",
+ "ensch app",
+ "▁b ere",
+ "▁be re",
+ "▁ber e",
+ "▁ bere",
+ "V M",
+ "▁A wards",
+ "▁Award s",
+ "▁Aw ards",
+ "▁a gr",
+ "▁ag r",
+ "▁ agr",
+ "yn omial",
+ "en ced",
+ "ence d",
+ "enc ed",
+ "▁dev ices",
+ "▁device s",
+ "▁devi ces",
+ "▁b ot",
+ "▁bo t",
+ "▁ bot",
+ "▁f irm",
+ "▁fi rm",
+ "▁fir m",
+ "▁w riter",
+ "▁writ er",
+ "▁wr iter",
+ "▁write r",
+ "▁ writer",
+ "▁r ing",
+ "▁ri ng",
+ "▁rin g",
+ "▁ ring",
+ ". -",
+ "is tes",
+ "ist es",
+ "iste s",
+ "l ä",
+ "▁m el",
+ "▁me l",
+ "▁ mel",
+ "ent ation",
+ "enta tion",
+ "▁Sch w",
+ "▁Sc hw",
+ "▁n ome",
+ "▁no me",
+ "▁nom e",
+ "▁ nome",
+ "▁po bla",
+ "▁pob la",
+ "▁w oj",
+ "▁wo j",
+ "▁u l",
+ "▁ ul",
+ "en to",
+ "ent o",
+ "ы х",
+ "▁res ist",
+ "▁rem ains",
+ "▁remain s",
+ "▁C a",
+ "▁ Ca",
+ "añ a",
+ "a ña",
+ "▁C ourt",
+ "▁Co urt",
+ "▁Cour t",
+ "▁Cou rt",
+ "ut able",
+ "uta ble",
+ "u table",
+ "ential ly",
+ "enti ally",
+ "▁t rat",
+ "▁tr at",
+ "▁tra t",
+ "▁ trat",
+ "▁Vis ual",
+ "▁ Visual",
+ "▁rest rict",
+ "▁pre viously",
+ "▁previous ly",
+ "▁prev iously",
+ "ca tion",
+ "cat ion",
+ "c ation",
+ "▁о со",
+ "▁ос о",
+ "▁My SQL",
+ "f ör",
+ "cal a",
+ "ca la",
+ "c ala",
+ "▁c ulture",
+ "▁cult ure",
+ "li ve",
+ "liv e",
+ "l ive",
+ "▁accept ed",
+ "Di d",
+ "D id",
+ "▁h ous",
+ "▁ho us",
+ "▁se lection",
+ "▁select ion",
+ "▁sel ection",
+ "▁sele ction",
+ "▁ selection",
+ "▁de cre",
+ "▁dec re",
+ "mar gin",
+ "m argin",
+ "ur b",
+ "u rb",
+ "▁I nc",
+ "▁In c",
+ "▁M any",
+ "▁Man y",
+ "▁Ma ny",
+ "▁ Many",
+ "ib t",
+ "i bt",
+ "▁succ eed",
+ "▁suc ceed",
+ "Bind ing",
+ "B inding",
+ "c í",
+ "▁R og",
+ "▁Ro g",
+ "▁should n",
+ "cl oud",
+ "clo ud",
+ "clou d",
+ "▁d z",
+ "▁ dz",
+ "ва в",
+ "▁p ix",
+ "▁pi x",
+ "sm all",
+ "▁project s",
+ "▁ projects",
+ "▁O K",
+ "▁ OK",
+ "▁la test",
+ "▁lat est",
+ "▁late st",
+ "▁ latest",
+ "▁re ferences",
+ "▁refer ences",
+ "▁reference s",
+ "Pro gram",
+ "Pr ogram",
+ "▁er st",
+ "▁ers t",
+ "▁ erst",
+ "▁я к",
+ "▁k am",
+ "▁ka m",
+ "▁C amb",
+ "▁Cam b",
+ "▁Ca mb",
+ "el lt",
+ "ell t",
+ "ö d",
+ "no ne",
+ "non e",
+ "n one",
+ "▁j usqu",
+ "▁ju squ",
+ "ki ng",
+ "kin g",
+ "k ing",
+ "▁P ed",
+ "▁Pe d",
+ "as sert",
+ "ass ert",
+ "asse rt",
+ "asser t",
+ "C S",
+ "ri to",
+ "rit o",
+ "r ito",
+ "es sa",
+ "ess a",
+ "ль ко",
+ "▁V on",
+ "▁Vo n",
+ "▁Ed ward",
+ "▁im possible",
+ "▁impos sible",
+ "n p",
+ "word s",
+ "wor ds",
+ "w ords",
+ "ie lt",
+ "iel t",
+ "i elt",
+ "▁P age",
+ "▁Pa ge",
+ "▁ Page",
+ "le rs",
+ "ler s",
+ "l ers",
+ "▁p ier",
+ "▁pi er",
+ "▁pie r",
+ "▁обла сти",
+ "itt ee",
+ "itte e",
+ "▁( [",
+ "▁ ([",
+ "▁t rust",
+ "▁tr ust",
+ "N G",
+ "re du",
+ "red u",
+ "r edu",
+ "< <",
+ "ri al",
+ "ria l",
+ "r ial",
+ "▁product s",
+ "▁ products",
+ "▁E rn",
+ "▁Er n",
+ "ri ère",
+ "r ière",
+ "го в",
+ "г ов",
+ "▁Re ich",
+ "▁Ro ad",
+ "▁n ested",
+ "▁ne sted",
+ "▁nest ed",
+ "▁ nested",
+ "Dis play",
+ "▁str ength",
+ "ograf ía",
+ "▁ann ounced",
+ "▁announ ced",
+ "▁S cience",
+ "▁Sc ience",
+ "▁Sci ence",
+ "▁рай о",
+ "Param eter",
+ "▁T ask",
+ "▁Ta sk",
+ "▁Tas k",
+ "▁ Task",
+ "um ents",
+ "ument s",
+ "umen ts",
+ "u ments",
+ "▁ad opt",
+ "▁On ly",
+ "▁ Only",
+ "ют ь",
+ "ю ть",
+ "▁c li",
+ "▁cl i",
+ "▁ cli",
+ "▁l em",
+ "▁le m",
+ "▁ lem",
+ "st ood",
+ "sto od",
+ "▁F I",
+ "▁ FI",
+ "ên cias",
+ "ência s",
+ "pon ents",
+ "ponent s",
+ "] $",
+ "com ment",
+ "comm ent",
+ "▁y a",
+ "▁ ya",
+ "sh ould",
+ "ik e",
+ "i ke",
+ "ti m",
+ "t im",
+ "el lig",
+ "ell ig",
+ "elli g",
+ "▁s ending",
+ "▁send ing",
+ "▁sen ding",
+ "▁a jax",
+ "▁aj ax",
+ "▁ ajax",
+ "▁nov iembre",
+ "um es",
+ "ume s",
+ "u mes",
+ "▁we iter",
+ "▁weit er",
+ "▁D ans",
+ "▁Dan s",
+ "▁Da ns",
+ "op p",
+ "o pp",
+ "▁sept embre",
+ "▁sep tembre",
+ "ot imes",
+ "oti mes",
+ "o times",
+ "z ő",
+ "▁e p",
+ "▁ ep",
+ "ve re",
+ "ver e",
+ "v ere",
+ "▁o h",
+ "▁ oh",
+ ": =",
+ "▁S ong",
+ "▁So ng",
+ "▁Son g",
+ "” ,",
+ "▁v iv",
+ "▁vi v",
+ "▁ viv",
+ "▁qu eries",
+ "▁que ries",
+ "▁quer ies",
+ "▁v á",
+ "▁ vá",
+ "▁déc embre",
+ "▁un able",
+ "▁una ble",
+ "▁e rh",
+ "▁er h",
+ "▁` -",
+ "▁ `-",
+ "▁L ee",
+ "▁Le e",
+ "▁er sten",
+ "▁erst en",
+ "▁erste n",
+ "▁ers ten",
+ "ô t",
+ "ст ве",
+ "ств е",
+ "T S",
+ "▁f ragment",
+ "▁fra gment",
+ "▁frag ment",
+ "▁ fragment",
+ "▁w ide",
+ "▁wid e",
+ "▁ wide",
+ "▁s uff",
+ "▁su ff",
+ "▁suf f",
+ "▁d ut",
+ "▁du t",
+ "▁V ere",
+ "▁Ver e",
+ "▁Ve re",
+ "і с",
+ "ad ing",
+ "adi ng",
+ "adin g",
+ "a ding",
+ "ie go",
+ "ieg o",
+ "i ego",
+ "ic ago",
+ "ica go",
+ "▁Ar gent",
+ "▁Arg ent",
+ "or er",
+ "ore r",
+ "o rer",
+ "en nes",
+ "enn es",
+ "enne s",
+ "▁L eb",
+ "▁Le b",
+ "lin ux",
+ "ac ing",
+ "aci ng",
+ "a cing",
+ "▁br oken",
+ "▁bro ken",
+ "▁broke n",
+ "t p",
+ "í o",
+ "ab eth",
+ "abe th",
+ "abet h",
+ "ist as",
+ "ista s",
+ "ge w",
+ "g ew",
+ "i ème",
+ "ca s",
+ "c as",
+ "▁pre ced",
+ "▁prec ed",
+ "▁D al",
+ "▁Da l",
+ "▁comp ared",
+ "▁compar ed",
+ "▁compare d",
+ "equ iv",
+ "il ly",
+ "ill y",
+ "te en",
+ "t een",
+ "▁Con sole",
+ "▁Cons ole",
+ "▁ Console",
+ "▁st rict",
+ "▁str ict",
+ "▁stri ct",
+ "it aire",
+ "ita ire",
+ "i taire",
+ "▁E D",
+ "▁ ED",
+ "ential s",
+ "enti als",
+ "▁p erman",
+ "▁per man",
+ "▁perm an",
+ "▁t ous",
+ "▁to us",
+ "▁tou s",
+ "▁g eme",
+ "▁ge me",
+ "▁gem e",
+ "▁ geme",
+ "▁ext rem",
+ "▁extr em",
+ "▁ок ру",
+ "k g",
+ "▁he avy",
+ "▁heav y",
+ "▁av ril",
+ "▁an ti",
+ "▁ant i",
+ "▁ anti",
+ "▁oct obre",
+ "ut f",
+ "u tf",
+ "he lm",
+ "hel m",
+ "h elm",
+ "am ples",
+ "ample s",
+ "amp les",
+ "▁( _",
+ "▁ (_",
+ "ak en",
+ "ake n",
+ "a ken",
+ "▁d ear",
+ "▁de ar",
+ "▁opin ion",
+ "▁f ish",
+ "▁fi sh",
+ "▁fis h",
+ "▁ fish",
+ "▁Alex ander",
+ "▁Alexand er",
+ "i w",
+ "и м",
+ "ca dem",
+ "cade m",
+ "c adem",
+ "▁ref lect",
+ "▁ reflect",
+ "▁д р",
+ "▁t rib",
+ "▁tr ib",
+ "▁tri b",
+ "com mon",
+ "comm on",
+ "▁clear ly",
+ "▁s af",
+ "▁sa f",
+ "=\"@ +",
+ "▁М ос",
+ "▁Мо с",
+ "си те",
+ "eqn array",
+ "nu ng",
+ "n ung",
+ "▁relations hip",
+ "▁relation ship",
+ "▁S em",
+ "▁Se m",
+ "▁ Sem",
+ "▁k illed",
+ "▁kil led",
+ "▁kill ed",
+ "te d",
+ "t ed",
+ "un o",
+ "u no",
+ "▁ лі",
+ "▁w id",
+ "▁ wid",
+ "an ning",
+ "ann ing",
+ "anni ng",
+ "▁p anel",
+ "▁pa nel",
+ "▁pan el",
+ "▁ panel",
+ "▁L eben",
+ "▁Le ben",
+ "▁Leb en",
+ "▁r uby",
+ "▁ru by",
+ "▁rub y",
+ "▁ ruby",
+ "ans ion",
+ "▁a ren",
+ "▁are n",
+ "▁ar en",
+ "▁ aren",
+ "tab ular",
+ "al et",
+ "ale t",
+ "a let",
+ "}$ $",
+ "} $$",
+ "▁L ake",
+ "▁La ke",
+ "▁Lak e",
+ "▁su ite",
+ "▁suit e",
+ "▁ suite",
+ "▁min or",
+ "▁mi nor",
+ "H ozzáférés",
+ "▁xml ns",
+ "▁ xmlns",
+ "DI R",
+ "D IR",
+ "dr iver",
+ "drive r",
+ "dri ver",
+ "d river",
+ "in ts",
+ "int s",
+ "▁v ic",
+ "▁vi c",
+ "▁ vic",
+ "AN D",
+ "A ND",
+ "pr im",
+ "p rim",
+ "сы лки",
+ "▁O x",
+ "T C",
+ "riv ial",
+ "at ie",
+ "ati e",
+ "▁e ight",
+ "▁eig ht",
+ "▁eigh t",
+ "▁conf lic",
+ "▁confl ic",
+ "an gel",
+ "ang el",
+ "ange l",
+ "▁B egr",
+ "▁Be gr",
+ "▁Beg r",
+ "▁explicit ly",
+ "ют ся",
+ "ю тся",
+ "▁D ev",
+ "▁De v",
+ "▁ Dev",
+ "re nder",
+ "ren der",
+ "rend er",
+ "r ender",
+ "▁re produ",
+ "▁rep rodu",
+ "▁repr odu",
+ "▁repro du",
+ "▁c ré",
+ "▁cr é",
+ "G u",
+ "M B",
+ "▁k ön",
+ "▁kö n",
+ "▁rem ained",
+ "▁remain ed",
+ "▁k l",
+ "▁ kl",
+ "хо в",
+ "х ов",
+ "▁b yl",
+ "▁by l",
+ "Ph i",
+ "P hi",
+ "▁de tail",
+ "▁det ail",
+ "▁ detail",
+ "ja v",
+ "j av",
+ "▁m ouse",
+ "▁mo use",
+ "▁mou se",
+ "▁ mouse",
+ "B as",
+ "i ę",
+ "as ser",
+ "ass er",
+ "asse r",
+ "h s",
+ "▁sh ift",
+ "▁ shift",
+ "▁ú lt",
+ "▁ últ",
+ "ra nd",
+ "ran d",
+ "r and",
+ "▁b tn",
+ "▁ btn",
+ "ra z",
+ "r az",
+ "▁p ul",
+ "▁pu l",
+ "▁stat ements",
+ "▁state ments",
+ "▁statement s",
+ "file name",
+ "fil ename",
+ "▁prom pt",
+ "él é",
+ "é lé",
+ "ik z",
+ "▁S us",
+ "▁Su s",
+ "▁de but",
+ "▁deb ut",
+ "St at",
+ "S tat",
+ "form s",
+ "for ms",
+ "▁H ein",
+ "▁He in",
+ "st adt",
+ "sta dt",
+ "stad t",
+ "en nis",
+ "enn is",
+ "по л",
+ "ar ante",
+ "aran te",
+ "ці й",
+ "ц ій",
+ "▁que ue",
+ "▁ queue",
+ "▁re ci",
+ "▁rec i",
+ "▁ reci",
+ "▁s ta",
+ "▁st a",
+ "▁ sta",
+ "yn chron",
+ "cent ering",
+ "center ing",
+ "cente ring",
+ "So me",
+ "S ome",
+ "Gr aph",
+ "G raph",
+ "▁t ested",
+ "▁te sted",
+ "▁test ed",
+ "▁K unst",
+ "▁Kun st",
+ "о м",
+ "▁N othing",
+ "▁No thing",
+ "▁Not hing",
+ "▁ Nothing",
+ "ie u",
+ "i eu",
+ "“ .",
+ "B undle",
+ "▁of icial",
+ "▁ofic ial",
+ "al low",
+ "all ow",
+ "allo w",
+ "▁Re act",
+ "▁L ibrary",
+ "▁Li brary",
+ "▁ Library",
+ "bl ue",
+ "▁ver w",
+ "▁ve rw",
+ "▁p are",
+ "▁par e",
+ "▁pa re",
+ "▁Fried rich",
+ "▁a ware",
+ "▁aw are",
+ "▁ aware",
+ "Ex p",
+ "E xp",
+ "▁effect s",
+ "▁го ро",
+ "▁гор о",
+ "lop edia",
+ "loped ia",
+ "▁V en",
+ "▁Ve n",
+ "ra le",
+ "ral e",
+ "r ale",
+ "▁F inal",
+ "▁Fin al",
+ "▁ Final",
+ "▁pro pos",
+ "▁prop os",
+ "la cement",
+ "lace ment",
+ "lac ement",
+ "kt en",
+ "kte n",
+ "k ten",
+ "▁no vel",
+ "▁nov el",
+ "or ter",
+ "ort er",
+ "orte r",
+ "▁German y",
+ "▁Ger many",
+ "▁Germ any",
+ "▁d jango",
+ "▁ django",
+ "▁trans ition",
+ "▁ transition",
+ "▁happ ened",
+ "▁happen ed",
+ "▁beaut iful",
+ "▁ne ither",
+ "▁nei ther",
+ "▁li braries",
+ "▁h ide",
+ "▁hi de",
+ "▁hid e",
+ "▁ hide",
+ "al g",
+ "a lg",
+ "▁a spect",
+ "▁as pect",
+ "▁asp ect",
+ "▁for get",
+ "▁forg et",
+ "cade my",
+ "cadem y",
+ "on te",
+ "ont e",
+ "re fix",
+ "ref ix",
+ "▁cl oud",
+ "▁clo ud",
+ "▁ cloud",
+ "ne d",
+ "n ed",
+ "cd ots",
+ "cdot s",
+ "c dots",
+ "reg ister",
+ "ny m",
+ "n ym",
+ ".) :",
+ ". ):",
+ "▁J ew",
+ "▁Je w",
+ "▁t rès",
+ "▁tr ès",
+ "ни че",
+ "▁D or",
+ "▁Do r",
+ "▁p roc",
+ "▁pro c",
+ "▁pr oc",
+ "▁ proc",
+ "▁g an",
+ "▁ga n",
+ "▁ gan",
+ "▁ є",
+ "▁S av",
+ "▁Sa v",
+ "v í",
+ "Setting s",
+ "S ettings",
+ "▁V ari",
+ "▁Var i",
+ "▁Va ri",
+ "▁ Vari",
+ "▁c ours",
+ "▁co urs",
+ "▁cour s",
+ "▁cou rs",
+ "R o",
+ "▁con j",
+ "▁re asons",
+ "▁reason s",
+ "▁re ader",
+ "▁read er",
+ "▁ reader",
+ "лекс анд",
+ "ic ate",
+ "ica te",
+ "}) ,",
+ "} ),",
+ "▁task s",
+ "▁ tasks",
+ "▁R ay",
+ "▁Ra y",
+ "▁r ic",
+ "▁ri c",
+ "▁ ric",
+ "K e",
+ "on ie",
+ "oni e",
+ "o nie",
+ "r f",
+ ") [",
+ "▁sub sequ",
+ "▁subs equ",
+ "▁T urn",
+ "▁Tur n",
+ "▁Tu rn",
+ "▁ Turn",
+ "▁VI AF",
+ "math sf",
+ "H E",
+ "▁dec lare",
+ "▁decl are",
+ "▁decla re",
+ "▁declar e",
+ "▁pro tocol",
+ "▁proto col",
+ "▁ protocol",
+ "▁P C",
+ "▁ PC",
+ "ци он",
+ "View ById",
+ "▁an imation",
+ "▁anim ation",
+ "▁ animation",
+ "▁conf used",
+ "ви ч",
+ "▁en abled",
+ "▁enable d",
+ "▁ enabled",
+ "ow o",
+ "o wo",
+ "ás t",
+ "á st",
+ "ö t",
+ "▁m and",
+ "▁ma nd",
+ "▁man d",
+ "▁R ail",
+ "▁Ra il",
+ "field s",
+ "▁K ap",
+ "▁Ka p",
+ "▁al gebra",
+ "▁ algebra",
+ "▁С у",
+ "fér ence",
+ "▁C urrent",
+ "▁Cur rent",
+ "▁ Current",
+ "с но",
+ "▁L im",
+ "▁Li m",
+ "Par ams",
+ "Param s",
+ "Pa rams",
+ "▁Ant onio",
+ "▁Anton io",
+ "▁Anto nio",
+ "▁t v",
+ "▁ tv",
+ "la te",
+ "lat e",
+ "l ate",
+ "if er",
+ "ife r",
+ "i fer",
+ "En try",
+ "Ent ry",
+ "▁S erv",
+ "▁Se rv",
+ "▁Ser v",
+ "▁ Serv",
+ "▁mus ical",
+ "▁music al",
+ "▁musica l",
+ "▁t race",
+ "▁tr ace",
+ "▁tra ce",
+ "▁trac e",
+ "▁ trace",
+ "▁s cient",
+ "▁sc ient",
+ "▁sci ent",
+ "fi c",
+ "f ic",
+ "▁for got",
+ "▁forg ot",
+ "v ideo",
+ "▁o lder",
+ "▁old er",
+ "▁ol der",
+ "▁ older",
+ "Tr ee",
+ "T ree",
+ "▁u ns",
+ "▁un s",
+ "▁ uns",
+ "ни ки",
+ "ник и",
+ "▁E uropa",
+ "▁Europ a",
+ "▁Euro pa",
+ "▁Z we",
+ "▁Zw e",
+ "▁б е",
+ "▁ бе",
+ "▁v ec",
+ "▁ve c",
+ "▁ vec",
+ "ж у",
+ "Mat ch",
+ "M atch",
+ "sp an",
+ "s pan",
+ "▁bl ank",
+ "▁blan k",
+ "▁ blank",
+ "▁sp äter",
+ "▁T y",
+ "▁ Ty",
+ "▁d ict",
+ "▁di ct",
+ "▁dic t",
+ "▁ dict",
+ "ñ a",
+ "▁conf irm",
+ "▁confir m",
+ "▁ confirm",
+ "▁v ý",
+ "за н",
+ "з ан",
+ "Re l",
+ "R el",
+ "fil m",
+ "fi lm",
+ "▁R ot",
+ "▁Ro t",
+ "▁ Rot",
+ "▁H y",
+ "▁ Hy",
+ "ка х",
+ "▁dem and",
+ "▁min ist",
+ "▁mini st",
+ "▁Mad rid",
+ "▁us ual",
+ "sp iel",
+ "s piel",
+ "er os",
+ "ero s",
+ "e ros",
+ "▁t utorial",
+ "▁tut orial",
+ "▁ tutorial",
+ "▁С сылки",
+ "s ys",
+ "ци аль",
+ "▁sp read",
+ "▁spr ead",
+ "▁spre ad",
+ "▁con vers",
+ "▁conver s",
+ "▁conv ers",
+ "▁r oll",
+ "▁ro ll",
+ "▁rol l",
+ "▁ roll",
+ "artifact Id",
+ "▁N umber",
+ "▁Num ber",
+ "▁ Number",
+ "▁sym met",
+ "▁M ult",
+ "▁Mu lt",
+ "▁Mul t",
+ "▁ Mult",
+ "ex pected",
+ "exp ected",
+ "expect ed",
+ "▁a xis",
+ "▁ax is",
+ "▁ axis",
+ "▁match ing",
+ "▁f ood",
+ "▁fo od",
+ "▁foo d",
+ "group Id",
+ "Map p",
+ "Ma pp",
+ "M app",
+ "▁с вя",
+ "▁v end",
+ "▁ve nd",
+ "▁ven d",
+ "F ound",
+ "ot to",
+ "ott o",
+ "o tto",
+ "Ca t",
+ "C at",
+ "cri t",
+ "cr it",
+ "c rit",
+ "ist ent",
+ "iste nt",
+ "isten t",
+ "▁d rei",
+ "▁dr ei",
+ "▁dre i",
+ "▁en ded",
+ "▁end ed",
+ "▁ende d",
+ "▁ ended",
+ "▁T ele",
+ "▁Te le",
+ "▁Tel e",
+ "com ponent",
+ "▁invol ved",
+ "▁involve d",
+ "▁Est ados",
+ "▁Estado s",
+ "▁Estad os",
+ "▁d anger",
+ "▁dan ger",
+ "▁ch ain",
+ "▁cha in",
+ "▁ chain",
+ "▁P rom",
+ "▁Pro m",
+ "▁Pr om",
+ "▁ Prom",
+ "ho m",
+ "h om",
+ "▁pol ít",
+ "co p",
+ "c op",
+ "▁n ap",
+ "▁na p",
+ "▁ nap",
+ "ri f",
+ "r if",
+ "ple ments",
+ "pl ements",
+ "plement s",
+ "▁v ent",
+ "▁ve nt",
+ "▁ven t",
+ "▁ vent",
+ "an na",
+ "ann a",
+ "an ted",
+ "ant ed",
+ "ante d",
+ "date d",
+ "da ted",
+ "dat ed",
+ "d ated",
+ "an th",
+ "ant h",
+ "a nth",
+ "▁thread s",
+ "▁thre ads",
+ "▁ threads",
+ "зо ва",
+ "зов а",
+ "з ова",
+ "▁ста нов",
+ "▁стан ов",
+ "▁ станов",
+ "▁e erst",
+ "▁eer st",
+ "bu f",
+ "b uf",
+ "he id",
+ "▁R u",
+ "▁P rim",
+ "▁Pr im",
+ "▁Pri m",
+ "▁ Prim",
+ "▁m igr",
+ "▁mi gr",
+ "▁mig r",
+ "▁ migr",
+ "▁Un idos",
+ "▁ar bitr",
+ "▁r oman",
+ "▁ro man",
+ "▁rom an",
+ "ount ry",
+ "oun try",
+ "ult ur",
+ "▁K önig",
+ "▁Kö nig",
+ "▁an not",
+ "▁ann ot",
+ "▁anno t",
+ "▁ annot",
+ "ach ing",
+ "ac hing",
+ "achi ng",
+ "▁H aupt",
+ "▁Ha upt",
+ "um in",
+ "umi n",
+ "u min",
+ "▁h em",
+ "▁he m",
+ "▁ hem",
+ "ck ets",
+ "cket s",
+ "cke ts",
+ "ba u",
+ "b au",
+ "ect ion",
+ "ec tion",
+ "e ction",
+ "ef t",
+ "e ft",
+ "▁package s",
+ "▁pack ages",
+ "▁ packages",
+ "▁K ur",
+ "▁Ku r",
+ "th ur",
+ "▁p ays",
+ "▁pa ys",
+ "▁pay s",
+ "li ament",
+ "lia ment",
+ "▁Б у",
+ "▁c ada",
+ "▁ca da",
+ "▁cad a",
+ "po ints",
+ "point s",
+ "oc ket",
+ "ock et",
+ "o cket",
+ "▁v erb",
+ "▁ver b",
+ "▁ve rb",
+ "▁ verb",
+ "ле е",
+ "▁sub mit",
+ "▁subm it",
+ "▁ submit",
+ "▁s an",
+ "▁sa n",
+ "▁ san",
+ "ru by",
+ "r uby",
+ "▁e ast",
+ "▁eas t",
+ "▁ east",
+ "ko v",
+ "k ov",
+ "▁Ver lag",
+ "▁Verl ag",
+ "▁ Verlag",
+ "▁s pot",
+ "▁sp ot",
+ "▁spo t",
+ "▁ spot",
+ "pp o",
+ "p po",
+ "E ach",
+ "je kt",
+ "▁Bi ographie",
+ "▁ne ws",
+ "▁new s",
+ "▁ news",
+ "▁pa ís",
+ "uf act",
+ "u fact",
+ "▁d ia",
+ "▁di a",
+ "▁ dia",
+ "ко ва",
+ "ков а",
+ "к ова",
+ "▁accom pl",
+ "▁accomp l",
+ "▁É t",
+ "▁ Ét",
+ "il ities",
+ "ili ties",
+ "▁i hm",
+ "▁ih m",
+ "in voke",
+ "inv oke",
+ "▁app end",
+ "▁ap pend",
+ "▁appe nd",
+ "▁ append",
+ ".) ,",
+ ". ),",
+ "▁l ab",
+ "▁la b",
+ "▁ lab",
+ "an ging",
+ "ang ing",
+ "is tan",
+ "ist an",
+ "ista n",
+ "i stan",
+ "re sol",
+ "res ol",
+ "reso l",
+ "▁S ection",
+ "▁Se ction",
+ "▁Sec tion",
+ "▁ Section",
+ "Par ent",
+ "Pa rent",
+ "mo z",
+ "m oz",
+ "Ma t",
+ "M at",
+ "st yles",
+ "style s",
+ "sty les",
+ "un den",
+ "und en",
+ "unde n",
+ "“ ,",
+ "irt schaft",
+ "ки м",
+ "к им",
+ "▁Fin ally",
+ "▁Final ly",
+ "ph en",
+ "phe n",
+ "p hen",
+ "▁P ac",
+ "▁Pa c",
+ "▁Array List",
+ "▁ ArrayList",
+ "▁re cover",
+ "▁rec over",
+ "▁e ducation",
+ "▁educ ation",
+ "mod els",
+ "model s",
+ "mode ls",
+ "pe d",
+ "p ed",
+ "▁h appy",
+ "▁ha ppy",
+ "▁happ y",
+ "ч у",
+ "▁guer ra",
+ "me dia",
+ "med ia",
+ "medi a",
+ "m edia",
+ "O F",
+ "▁ens ure",
+ "▁ ensure",
+ "Mar k",
+ "M ark",
+ "data base",
+ "dat abase",
+ "datab ase",
+ "d atabase",
+ "og gle",
+ "▁pub lish",
+ "▁publi sh",
+ "▁ publish",
+ "O W",
+ "▁B au",
+ "▁Ba u",
+ "? .",
+ "▁ча сти",
+ "▁час ти",
+ "▁част и",
+ "▁re pository",
+ "▁repos itory",
+ "▁ repository",
+ "▁M att",
+ "▁Ma tt",
+ "▁Mat t",
+ "hi gh",
+ "h igh",
+ "ov en",
+ "ove n",
+ "o ven",
+ "▁g er",
+ "▁ge r",
+ "▁ ger",
+ "▁un known",
+ "▁ unknown",
+ "Am er",
+ "A mer",
+ "▁B rown",
+ "▁Br own",
+ "▁Bro wn",
+ "▁Brow n",
+ "AL L",
+ "A LL",
+ "▁result ing",
+ "▁b or",
+ "▁bo r",
+ "▁ bor",
+ "▁po et",
+ "ни ми",
+ "ним и",
+ "Em ail",
+ "E mail",
+ "F ont",
+ "▁h ist",
+ "▁his t",
+ "▁hi st",
+ "▁to day",
+ "▁tod ay",
+ "▁toda y",
+ "▁ today",
+ "▁B erg",
+ "▁Be rg",
+ "▁Ber g",
+ "▁but tons",
+ "▁button s",
+ "та л",
+ "т ал",
+ "▁s ni",
+ "▁sn i",
+ "▁че лов",
+ "Cr e",
+ "C re",
+ "▁un ion",
+ "▁ union",
+ "▁z ich",
+ "ish op",
+ "i shop",
+ "▁qu ando",
+ "▁quand o",
+ "▁quan do",
+ "P o",
+ "CT ION",
+ "▁C ost",
+ "▁Co st",
+ "▁Cos t",
+ "▁ Cost",
+ "су дар",
+ "er ved",
+ "erv ed",
+ "erve d",
+ "Not e",
+ "No te",
+ "N ote",
+ "Equ al",
+ "Eq ual",
+ "E qual",
+ "ли я",
+ "бу р",
+ "б ур",
+ "▁ab stract",
+ "▁abstra ct",
+ "▁ abstract",
+ "st op",
+ "sto p",
+ "s top",
+ "▁ad vice",
+ "▁adv ice",
+ "▁i con",
+ "▁ic on",
+ "▁ icon",
+ "▁tr avel",
+ "▁tra vel",
+ "▁trav el",
+ "B S",
+ "ve ns",
+ "ven s",
+ "v ens",
+ "▁b atch",
+ "▁bat ch",
+ "▁ batch",
+ "li que",
+ "liqu e",
+ "l ique",
+ "she et",
+ "s heet",
+ "▁i hre",
+ "▁ih re",
+ "▁ihr e",
+ "em on",
+ "emo n",
+ "e mon",
+ "ber to",
+ "bert o",
+ "▁as signed",
+ "▁ass igned",
+ "▁assign ed",
+ "ь ю",
+ "Ph one",
+ "▁a ward",
+ "▁aw ard",
+ "▁function ality",
+ "▁functional ity",
+ "al la",
+ "all a",
+ "a lla",
+ "▁D am",
+ "▁Da m",
+ "▁ci udad",
+ "▁cl uster",
+ "▁clust er",
+ "▁ cluster",
+ "De scription",
+ "Des cription",
+ "▁s heet",
+ "▁she et",
+ "▁ sheet",
+ "▁Austral ian",
+ "▁Australia n",
+ "▁» .",
+ "▁ ».",
+ "▁\" <",
+ "▁wonder ing",
+ "ain e",
+ "ai ne",
+ "a ine",
+ "▁represent ed",
+ "▁repres ented",
+ "ka ppa",
+ "kap pa",
+ "k appa",
+ "n b",
+ "▁s y",
+ "▁K ö",
+ "=\" #",
+ "▁s even",
+ "▁se ven",
+ "Direct ory",
+ "D irectory",
+ "▁s ister",
+ "▁si ster",
+ "▁sist er",
+ "pl ates",
+ "plate s",
+ "pla tes",
+ "▁l uck",
+ "▁lu ck",
+ "▁luc k",
+ "▁rem aining",
+ "▁remain ing",
+ "▁V ill",
+ "▁Vi ll",
+ "▁Vil l",
+ "wer k",
+ "w erk",
+ "an ni",
+ "ann i",
+ "et ti",
+ "ett i",
+ "fun c",
+ "fu nc",
+ "f unc",
+ "▁b an",
+ "▁ba n",
+ "▁ ban",
+ "im s",
+ "i ms",
+ "mi ss",
+ "mis s",
+ "m iss",
+ "ag raph",
+ "agr aph",
+ "a graph",
+ "ек си",
+ "е кси",
+ "▁R ef",
+ "▁Re f",
+ "▁ Ref",
+ "ni tt",
+ "nit t",
+ "n itt",
+ "▁G ab",
+ "▁Ga b",
+ "▁and ere",
+ "▁jed och",
+ "result s",
+ "! \\",
+ "▁l isted",
+ "▁li sted",
+ "▁list ed",
+ "▁liste d",
+ "▁l oro",
+ "▁lo ro",
+ "▁kn ows",
+ "▁know s",
+ "ж но",
+ "R ad",
+ "▁s ocket",
+ "▁so cket",
+ "▁soc ket",
+ "▁ socket",
+ "mult i",
+ "mul ti",
+ "▁р і",
+ "▁ рі",
+ "ra ils",
+ "rai ls",
+ "r ails",
+ "▁t ar",
+ "▁ta r",
+ "▁ tar",
+ "▁gent le",
+ "se tt",
+ "set t",
+ "s ett",
+ "serv ices",
+ "service s",
+ "bo und",
+ "b ound",
+ "ig keit",
+ "aj a",
+ "a ja",
+ "▁c md",
+ "▁cm d",
+ "▁ cmd",
+ "ag ger",
+ "agg er",
+ "▁b a",
+ "▁ ba",
+ "▁Be lg",
+ "▁Bel g",
+ "▁K le",
+ "▁Kl e",
+ "▁word t",
+ "▁wor dt",
+ "▁f ost",
+ "▁fo st",
+ "▁fos t",
+ "▁dim ension",
+ "An g",
+ "A ng",
+ "um ing",
+ "umin g",
+ "umi ng",
+ "u ming",
+ "Ob j",
+ "не н",
+ "н ен",
+ "▁M arie",
+ "▁Mar ie",
+ "▁Ma rie",
+ "▁Mari e",
+ "▁ Marie",
+ "ex ists",
+ "exist s",
+ "т ро",
+ "▁бо ль",
+ "▁ боль",
+ "em ente",
+ "ement e",
+ "emen te",
+ "e mente",
+ "▁J on",
+ "▁Jo n",
+ "SE RT",
+ "SER T",
+ "S ERT",
+ "▁high est",
+ "ak i",
+ "a ki",
+ "▁t res",
+ "▁tr es",
+ "▁tre s",
+ "▁ tres",
+ "▁circ um",
+ "▁D own",
+ "▁Do wn",
+ "▁Dow n",
+ "▁ Down",
+ "om men",
+ "omm en",
+ "ur er",
+ "ure r",
+ "u rer",
+ "▁caus es",
+ "▁cause s",
+ "▁ca uses",
+ "ven ue",
+ "iss ance",
+ "▁influ ence",
+ "▁influen ce",
+ "▁f at",
+ "▁fa t",
+ "ре ди",
+ "ред и",
+ "р еди",
+ "}\\ \\",
+ "} \\\\",
+ "▁en tr",
+ "▁ent r",
+ "▁ entr",
+ "▁S ign",
+ "▁Si gn",
+ "▁Sig n",
+ "▁ Sign",
+ "▁к ла",
+ "▁ кла",
+ "▁b inding",
+ "▁bind ing",
+ "▁bin ding",
+ "▁ binding",
+ "es sen",
+ "ess en",
+ "esse n",
+ "▁Ф ран",
+ "▁L ocal",
+ "▁Lo cal",
+ "▁Loc al",
+ "▁ Local",
+ "▁я вля",
+ "ap pro",
+ "app ro",
+ "▁dep endencies",
+ "▁depend encies",
+ "▁ dependencies",
+ "▁talk ing",
+ "▁tal king",
+ "▁zur ück",
+ "con nection",
+ "connect ion",
+ "conne ction",
+ "conn ection",
+ "Act ive",
+ "Activ e",
+ "bb e",
+ "b be",
+ "ir ls",
+ "irl s",
+ "▁In f",
+ "▁ Inf",
+ "w d",
+ "▁и с",
+ "▁ ис",
+ "ro ad",
+ "▁con ven",
+ "▁conv en",
+ "ě t",
+ "ве з",
+ "в ез",
+ "▁ent ries",
+ "▁entr ies",
+ "▁ entries",
+ "es c",
+ "e sc",
+ "▁b its",
+ "▁bit s",
+ "▁bi ts",
+ "▁ bits",
+ "as so",
+ "ass o",
+ "W R",
+ "sh ips",
+ "ship s",
+ "s hips",
+ "▁d és",
+ "▁dé s",
+ "es p",
+ "e sp",
+ "Ma ke",
+ "M ake",
+ "▁famil iar",
+ "▁familia r",
+ "Ar t",
+ "A rt",
+ "▁ar my",
+ "▁arm y",
+ "ct r",
+ "c tr",
+ "ér ic",
+ "éri c",
+ "é ric",
+ "que ue",
+ "▁\\ {",
+ "▁ \\{",
+ "ue la",
+ "uel a",
+ "u ela",
+ "am iento",
+ "ami ento",
+ "ши х",
+ "ш их",
+ "▁\" \"\"",
+ "▁\"\" \"",
+ "con tr",
+ "cont r",
+ "лл е",
+ "л ле",
+ "F S",
+ "▁mar ket",
+ "▁mark et",
+ "▁ market",
+ "ån g",
+ "å ng",
+ "cite p",
+ "cit ep",
+ "Il l",
+ "I ll",
+ "ran k",
+ "r ank",
+ "▁s ender",
+ "▁se nder",
+ "▁send er",
+ "▁sen der",
+ "▁ sender",
+ "▁be im",
+ "▁bei m",
+ "ра к",
+ "▁com pat",
+ "▁comp at",
+ "▁ compat",
+ "▁occ urs",
+ "▁occur s",
+ "▁d iese",
+ "▁di ese",
+ "▁die se",
+ "▁dies e",
+ "сти ту",
+ "aw a",
+ "a wa",
+ "▁i OS",
+ "▁Ch inese",
+ "▁Chine se",
+ "▁T R",
+ "▁ TR",
+ "▁K en",
+ "▁Ke n",
+ "▁U ne",
+ "▁Un e",
+ "▁cre ates",
+ "▁create s",
+ "▁sh owed",
+ "▁show ed",
+ "▁sho wed",
+ "▁é v",
+ "▁ év",
+ "olog ia",
+ "olo gia",
+ "▁pro test",
+ "▁prote st",
+ "▁prot est",
+ "▁P f",
+ "▁s quad",
+ "▁squ ad",
+ "++ ,",
+ "á v",
+ "▁ess ere",
+ "з я",
+ "ko l",
+ "k ol",
+ "▁slight ly",
+ "ad dr",
+ "add r",
+ "â n",
+ "▁red uce",
+ "▁redu ce",
+ "▁ reduce",
+ "▁\\ (\\",
+ "▁\\( \\",
+ "▁D ep",
+ "▁De p",
+ "▁ Dep",
+ "▁gener ic",
+ "▁gene ric",
+ "▁ generic",
+ "Lo ader",
+ "Load er",
+ "ț i",
+ "▁п ос",
+ "▁по с",
+ "▁occ asion",
+ "▁occas ion",
+ "▁L ady",
+ "▁La dy",
+ "▁Lad y",
+ "ent ity",
+ "enti ty",
+ "▁av ant",
+ "▁ avant",
+ "▁P as",
+ "▁Pa s",
+ "ag gio",
+ "aggi o",
+ "agg io",
+ "\\ {",
+ "па д",
+ "athol ic",
+ "Pass word",
+ "▁res pond",
+ "▁resp ond",
+ "▁ respond",
+ "▁N on",
+ "▁No n",
+ "▁ Non",
+ "A G",
+ "ne g",
+ "n eg",
+ "▁у с",
+ "▁ ус",
+ "bl ob",
+ "blo b",
+ "b lob",
+ "ck e",
+ "c ke",
+ "▁Cons ider",
+ "▁C are",
+ "▁Car e",
+ "▁Ca re",
+ "ik i",
+ "i ki",
+ "▁Ch icago",
+ "in den",
+ "ind en",
+ "inde n",
+ "▁C op",
+ "▁Co p",
+ "] +",
+ "ö m",
+ "év rier",
+ "к ло",
+ "al en",
+ "ale n",
+ "a len",
+ "▁m aj",
+ "▁ma j",
+ "ra cy",
+ "rac y",
+ "r acy",
+ "or te",
+ "ort e",
+ "ien ts",
+ "ient s",
+ "i ents",
+ "el ls",
+ "ell s",
+ "act ivity",
+ "activ ity",
+ "▁r untime",
+ "▁run time",
+ "▁runt ime",
+ "▁ runtime",
+ "NU LL",
+ "N ULL",
+ "▁poss ibly",
+ "▁possib ly",
+ "▁s tri",
+ "▁st ri",
+ "▁str i",
+ "iz i",
+ "i zi",
+ "▁m ir",
+ "▁mi r",
+ "▁ mir",
+ "▁V ersion",
+ "▁Vers ion",
+ "▁ Version",
+ "pr ime",
+ "prim e",
+ "▁tw enty",
+ "▁M ah",
+ "▁Ma h",
+ "▁s ounds",
+ "▁sound s",
+ "ше н",
+ "ш ен",
+ "cl usion",
+ "clus ion",
+ "ac z",
+ "a cz",
+ "▁determ ined",
+ "▁determine d",
+ "▁determin ed",
+ "▁R ep",
+ "▁Re p",
+ "▁ Rep",
+ "▁Land es",
+ "▁Lan des",
+ "▁w all",
+ "▁wa ll",
+ "▁wal l",
+ "▁ wall",
+ "ig i",
+ "i gi",
+ "▁re set",
+ "▁res et",
+ "▁ reset",
+ "ш о",
+ "ya n",
+ "y an",
+ "Me t",
+ "M et",
+ "e i",
+ "▁app earance",
+ "▁appear ance",
+ "▁f ois",
+ "▁fo is",
+ "▁foi s",
+ "▁ fois",
+ "▁n ell",
+ "▁ne ll",
+ "▁nel l",
+ "▁ nell",
+ "es i",
+ "e si",
+ "ё т",
+ "lo or",
+ "l oor",
+ "▁U l",
+ "▁resol ution",
+ "▁f ot",
+ "▁fo t",
+ "▁through out",
+ "▁r i",
+ "▁ ri",
+ "Le vel",
+ "po ol",
+ "p ool",
+ "▁id entity",
+ "▁ident ity",
+ "▁ identity",
+ "▁j anu",
+ "▁jan u",
+ "▁ja nu",
+ "▁im per",
+ "▁imp er",
+ "▁ imper",
+ "▁ö ver",
+ "} `",
+ "▁in fer",
+ "▁inf er",
+ "▁d ates",
+ "▁da tes",
+ "▁dat es",
+ "▁date s",
+ "▁ dates",
+ "▁Stand ard",
+ "▁ Standard",
+ "for ce",
+ "oc key",
+ "ock ey",
+ "ter a",
+ "te ra",
+ "t era",
+ "▁dist ingu",
+ "▁pres ence",
+ "li ca",
+ "lic a",
+ "l ica",
+ "▁le aving",
+ "it ung",
+ "itu ng",
+ "é b",
+ "▁estab lish",
+ "▁m aar",
+ "▁ma ar",
+ "ad i",
+ "a di",
+ "▁New s",
+ "▁Ne ws",
+ "▁ News",
+ "az on",
+ "a zon",
+ "fo lg",
+ "fol g",
+ "f olg",
+ "▁H ence",
+ "▁Hen ce",
+ "▁Y e",
+ "▁f ab",
+ "▁fa b",
+ "▁ fab",
+ "▁f ühr",
+ "▁ führ",
+ "it map",
+ "▁V ers",
+ "▁Ver s",
+ "▁Ve rs",
+ "ro v",
+ "r ov",
+ "Si gn",
+ "S ign",
+ "de vice",
+ "dev ice",
+ "S igma",
+ "▁wet enschapp",
+ "▁P s",
+ "PA TH",
+ "P ATH",
+ "▁t orn",
+ "▁to rn",
+ "▁tor n",
+ "ve st",
+ "ves t",
+ "v est",
+ "ст ов",
+ "сто в",
+ "с тов",
+ "ac count",
+ "acc ount",
+ "acco unt",
+ "▁lar gest",
+ "▁large st",
+ "▁larg est",
+ "▁per cent",
+ "▁perce nt",
+ "▁ percent",
+ "▁W omen",
+ "▁Wo men",
+ "▁im g",
+ "▁ img",
+ "to ol",
+ "t ool",
+ "▁r oce",
+ "▁ro ce",
+ "▁a y",
+ "▁ ay",
+ "in et",
+ "ine t",
+ "i net",
+ "▁ao ût",
+ "▁pol ynomial",
+ "▁integr al",
+ "▁integra l",
+ "▁a reas",
+ "▁are as",
+ "▁area s",
+ "} '",
+ "▁h yp",
+ "▁hy p",
+ "loy ee",
+ "та ль",
+ "тал ь",
+ "т аль",
+ "▁pro xy",
+ "▁ proxy",
+ "▁W y",
+ "▁М екси",
+ "▁Ме кси",
+ "▁es cape",
+ "▁esc ape",
+ "▁ escape",
+ "ol ar",
+ "ola r",
+ "o lar",
+ "▁mis take",
+ "▁mist ake",
+ ")} {",
+ ") }{",
+ "▁P ot",
+ "▁Po t",
+ "▁process es",
+ "▁proc esses",
+ "\"> \r",
+ "\" >\r",
+ "hal ten",
+ "halt en",
+ "zz a",
+ "z za",
+ "am o",
+ "a mo",
+ "к ре",
+ "▁W ood",
+ "▁Wo od",
+ "ø r",
+ "▁с ер",
+ "▁се р",
+ "▁ сер",
+ "oc ia",
+ "oci a",
+ "o cia",
+ "tw o",
+ "t wo",
+ "pro file",
+ "prof ile",
+ "▁A st",
+ "▁As t",
+ "em bro",
+ "emb ro",
+ "▁ar ms",
+ "▁arm s",
+ "in as",
+ "ina s",
+ "i nas",
+ "in nen",
+ "inn en",
+ "▁m sg",
+ "▁ms g",
+ "▁ msg",
+ "IN T",
+ "I NT",
+ "▁b atter",
+ "▁batt er",
+ "▁bat ter",
+ "ign ment",
+ "▁v y",
+ "▁ vy",
+ "H rsg",
+ "▁G rund",
+ "▁Gr und",
+ "▁Gru nd",
+ "ro c",
+ "r oc",
+ "se g",
+ "s eg",
+ "▁de cor",
+ "▁dec or",
+ "▁ decor",
+ "▁event ually",
+ "> ,",
+ "▁p ag",
+ "▁pa g",
+ "▁ pag",
+ "an ten",
+ "ant en",
+ "ante n",
+ "a nten",
+ "▁str ugg",
+ "▁stru gg",
+ "}^ \\",
+ "} ^\\",
+ "date n",
+ "da ten",
+ "dat en",
+ "d aten",
+ "▁re la",
+ "▁r ela",
+ "▁rel a",
+ "по в",
+ "п ов",
+ "▁ко ро",
+ "▁кор о",
+ "▁B os",
+ "▁Bo s",
+ "▁l abor",
+ "▁la bor",
+ "▁lab or",
+ "▁Se cret",
+ "▁Sec ret",
+ "▁ Secret",
+ "ug en",
+ "uge n",
+ "u gen",
+ "▁j ap",
+ "▁ja p",
+ "▁hus band",
+ "▁Al bum",
+ "▁Alb um",
+ "▁et wa",
+ "▁про из",
+ "ri cht",
+ "ric ht",
+ "rich t",
+ "r icht",
+ "ra ch",
+ "rac h",
+ "r ach",
+ "ba t",
+ "b at",
+ "▁pre par",
+ "▁prep ar",
+ "▁St ock",
+ "▁Sto ck",
+ "▁l ack",
+ "▁la ck",
+ "▁lac k",
+ "▁ lack",
+ "хі д",
+ "х ід",
+ "▁h ogy",
+ "▁ho gy",
+ "▁Ch rome",
+ "▁Chr ome",
+ "▁Ad min",
+ "▁ Admin",
+ "▁com parison",
+ "▁compar ison",
+ "▁incre asing",
+ "н г",
+ "im i",
+ "i mi",
+ "D b",
+ "▁g ef",
+ "▁ge f",
+ "▁ gef",
+ "uch t",
+ "uc ht",
+ "u cht",
+ "és e",
+ "é se",
+ "gen ce",
+ "g ence",
+ "▁C ore",
+ "▁Cor e",
+ "▁Co re",
+ "▁ Core",
+ "▁in correct",
+ "▁incor rect",
+ "▁ass uming",
+ "▁assum ing",
+ "our se",
+ "ours e",
+ "ie ron",
+ "ier on",
+ "iero n",
+ "▁The orem",
+ "▁ Theorem",
+ "▁c asa",
+ "▁cas a",
+ "▁ca sa",
+ "je s",
+ "j es",
+ "▁д ере",
+ "▁де ре",
+ "▁` \"",
+ "L D",
+ "ä ß",
+ "De b",
+ "D eb",
+ "▁su iv",
+ "▁B ank",
+ "▁Ban k",
+ "li bs",
+ "lib s",
+ "▁Le on",
+ "▁Leo n",
+ "▁qu art",
+ "▁quar t",
+ "▁prof essional",
+ "▁profession al",
+ "▁profess ional",
+ "▁t iene",
+ "▁ti ene",
+ "▁tie ne",
+ "▁acc omp",
+ "▁ac comp",
+ "▁accom p",
+ "ст ер",
+ "сте р",
+ "с тер",
+ "▁U K",
+ "▁ UK",
+ "N N",
+ "▁l í",
+ "ц я",
+ "ke l",
+ "k el",
+ "▁ •",
+ "▁d ise",
+ "▁di se",
+ "▁dis e",
+ "on to",
+ "ont o",
+ "▁m á",
+ "if s",
+ "i fs",
+ "bi ld",
+ "bil d",
+ "b ild",
+ "▁comp ute",
+ "▁comput e",
+ "▁ compute",
+ "▁é d",
+ "▁ éd",
+ "j ę",
+ "▁M é",
+ "▁l anguages",
+ "▁language s",
+ "▁T imes",
+ "▁Time s",
+ "▁Tim es",
+ "▁Ti mes",
+ "▁ Times",
+ "ce n",
+ "c en",
+ "▁ав то",
+ "ý m",
+ "en ez",
+ "ene z",
+ "e nez",
+ "▁u pp",
+ "▁up p",
+ "▁ upp",
+ "▁m éd",
+ "▁mé d",
+ "▁cu ando",
+ "о д",
+ "Int ent",
+ "ee rd",
+ "e erd",
+ "▁T al",
+ "▁Ta l",
+ "off set",
+ "offs et",
+ "▁h aben",
+ "▁ha ben",
+ "▁hab en",
+ "▁habe n",
+ "re me",
+ "rem e",
+ "r eme",
+ "▁St ack",
+ "▁Sta ck",
+ "▁ Stack",
+ "▁d ri",
+ "▁dr i",
+ "▁ dri",
+ "▁sein em",
+ "▁seine m",
+ "▁sei nem",
+ "▁f évrier",
+ "▁comb ination",
+ "▁combin ation",
+ "▁s oll",
+ "▁so ll",
+ "▁sol l",
+ "▁mov ement",
+ "▁mo vement",
+ "▁move ment",
+ "Sp ec",
+ "Spe c",
+ "S pec",
+ "к ры",
+ "ret ch",
+ "r etch",
+ "Off set",
+ "Ro ot",
+ "R oot",
+ "А р",
+ "wa rt",
+ "war t",
+ "w art",
+ "▁F ollow",
+ "▁Fol low",
+ "▁So cial",
+ "▁Soci al",
+ "▁Soc ial",
+ "ни ков",
+ "ник ов",
+ "▁ →",
+ "Do n",
+ "D on",
+ "▁h arm",
+ "▁ha rm",
+ "▁har m",
+ "▁ harm",
+ "ag r",
+ "a gr",
+ "ne go",
+ "neg o",
+ "n ego",
+ "re source",
+ "res ource",
+ "▁L uc",
+ "▁Lu c",
+ "▁se inen",
+ "▁sein en",
+ "▁seine n",
+ "▁sei nen",
+ "▁De partment",
+ "▁Depart ment",
+ "▁Up date",
+ "▁ Update",
+ "▁Tex as",
+ "▁re ve",
+ "▁rev e",
+ "▁P os",
+ "▁Po s",
+ "▁ Pos",
+ "▁s hot",
+ "▁sh ot",
+ "▁sho t",
+ "▁ shot",
+ "ot he",
+ "oth e",
+ "o the",
+ "▁repe ated",
+ "▁repeat ed",
+ "▁rec ently",
+ "▁recent ly",
+ "áb an",
+ "á ban",
+ "ak s",
+ "a ks",
+ "па н",
+ "п ан",
+ "▁c ha",
+ "▁ch a",
+ "▁ cha",
+ "oh l",
+ "o hl",
+ "▁t end",
+ "▁te nd",
+ "▁ten d",
+ "▁д во",
+ "ch ts",
+ "cht s",
+ "ça ise",
+ "çais e",
+ "pl ing",
+ "p ling",
+ "al bum",
+ "e j",
+ "▁` [",
+ "ma ps",
+ "map s",
+ "m aps",
+ "▁un its",
+ "▁unit s",
+ "▁< !--",
+ "▁",
+ "St and",
+ "▁techn ique",
+ "▁techni que",
+ "▁E ss",
+ "▁Es s",
+ "▁Ox ford",
+ "▁ ла",
+ "t ikz",
+ "ли й",
+ "Log in",
+ "Lo gin",
+ "▁min ister",
+ "▁minist er",
+ "▁mini ster",
+ "▁ minister",
+ "▁c url",
+ "▁cu rl",
+ "▁cur l",
+ "▁ curl",
+ "ka n",
+ "k an",
+ "▁m aps",
+ "▁ma ps",
+ "▁map s",
+ "▁ maps",
+ "in da",
+ "ind a",
+ "ri eb",
+ "rie b",
+ "r ieb",
+ "▁E ND",
+ "▁EN D",
+ "▁ END",
+ "if ies",
+ "ifi es",
+ "ifie s",
+ "con sole",
+ "cons ole",
+ "bu ry",
+ "bur y",
+ "b ury",
+ "▁L E",
+ "▁ LE",
+ "▁indep end",
+ "▁inde pend",
+ "▁t a",
+ "▁ ta",
+ "▁ Ś",
+ "on el",
+ "one l",
+ "o nel",
+ "és z",
+ "é sz",
+ "▁I st",
+ "▁Is t",
+ "ut ive",
+ "uti ve",
+ "ё л",
+ "▁Reg ion",
+ "▁ Region",
+ "▁( =",
+ "▁comp act",
+ "ço is",
+ "ç ois",
+ "▁label s",
+ "▁lab els",
+ "▁ labels",
+ "autor ité",
+ "▁s tan",
+ "▁st an",
+ "▁sta n",
+ "▁ stan",
+ "▁fran çaise",
+ "▁français e",
+ "▁rem oving",
+ "▁remov ing",
+ "y c",
+ "} |",
+ "▁Ex ec",
+ "▁ Exec",
+ "($ _",
+ "( $_",
+ "ma g",
+ "m ag",
+ "be fore",
+ "▁stop ped",
+ "▁sto pped",
+ "ми и",
+ "▁ref resh",
+ "▁ refresh",
+ "un kt",
+ "unk t",
+ "ic io",
+ "ici o",
+ "i cio",
+ "X ml",
+ "▁T ab",
+ "▁Ta b",
+ "▁ Tab",
+ "▁f ounded",
+ "▁found ed",
+ "▁f al",
+ "▁fa l",
+ "▁ fal",
+ "f x",
+ "▁Histor ia",
+ "▁Hist oria",
+ "▁Ear ly",
+ "▁Earl y",
+ "Do m",
+ "D om",
+ "▁de cide",
+ "▁dec ide",
+ "▁decid e",
+ "▁under stood",
+ "▁j ur",
+ "▁ju r",
+ "▁N r",
+ "▁cap ac",
+ "wa s",
+ "w as",
+ "▁en emy",
+ "▁enem y",
+ "▁program s",
+ "▁m ask",
+ "▁ma sk",
+ "▁mas k",
+ "▁ mask",
+ "ск е",
+ "с ке",
+ "▁gr oupe",
+ "▁group e",
+ "ca m",
+ "c am",
+ "▁w idget",
+ "▁wid get",
+ "▁ widget",
+ "RE ATE",
+ "▁se va",
+ "▁Bar cel",
+ "▁p erd",
+ "▁per d",
+ "▁pe rd",
+ "▁М у",
+ "ran ce",
+ "r ance",
+ "TY PE",
+ "T YPE",
+ "▁{ '",
+ "▁ {'",
+ "▁b ill",
+ "▁bi ll",
+ "▁bil l",
+ "▁\" _",
+ "' `",
+ "ba hn",
+ "bah n",
+ "b ahn",
+ "▁cont ained",
+ "▁contain ed",
+ "Cl ose",
+ "C lose",
+ "ru g",
+ "r ug",
+ "eg y",
+ "e gy",
+ "▁s ight",
+ "▁sig ht",
+ "▁Pro vin",
+ "▁Prov in",
+ "н ю",
+ "ar z",
+ "a rz",
+ "ще н",
+ "щ ен",
+ "▁J oe",
+ "▁Jo e",
+ "▁de leted",
+ "▁delete d",
+ "▁delet ed",
+ "▁A uto",
+ "▁Aut o",
+ "▁Au to",
+ "▁ Auto",
+ "▁m eter",
+ "▁me ter",
+ "▁met er",
+ "▁ meter",
+ "C G",
+ "ъ л",
+ "▁p ent",
+ "▁pe nt",
+ "▁pen t",
+ "▁ pent",
+ "▁be zeichnet",
+ "Su m",
+ "S um",
+ "db c",
+ "d bc",
+ "▁Pl atz",
+ "▁Pla tz",
+ "▁Plat z",
+ "ect ors",
+ "ector s",
+ "e ctors",
+ "▁L ittle",
+ "QU E",
+ "Q UE",
+ "ці я",
+ "ц ія",
+ "те ля",
+ "тел я",
+ "nig ht",
+ "n ight",
+ "▁l l",
+ "▁ ll",
+ "▁most ly",
+ "UI D",
+ "U ID",
+ "▁b ez",
+ "▁be z",
+ "▁ bez",
+ "do b",
+ "d ob",
+ "кс и",
+ "к си",
+ "ter ne",
+ "tern e",
+ "t erne",
+ "▁cor ner",
+ "▁corn er",
+ "at y",
+ "a ty",
+ "▁impro ve",
+ "▁improv e",
+ "▁impr ove",
+ "▁in tr",
+ "▁int r",
+ "▁` @",
+ "ar od",
+ "aro d",
+ "a rod",
+ "▁install ation",
+ "▁instal lation",
+ "▁Refer ências",
+ "ig an",
+ "iga n",
+ "i gan",
+ "▁crit ic",
+ "ad el",
+ "ade l",
+ "a del",
+ "▁се ло",
+ ", \r",
+ "at ori",
+ "ator i",
+ "ato ri",
+ "▁F ri",
+ "▁Fr i",
+ "▁ Fri",
+ "▁ré férences",
+ "▁Int ent",
+ "▁ Intent",
+ "▁t ant",
+ "▁tan t",
+ "▁ta nt",
+ "un ci",
+ "unc i",
+ "▁level s",
+ "▁lev els",
+ "er es",
+ "ere s",
+ "e res",
+ "▁e mer",
+ "▁em er",
+ "▁ emer",
+ "sa fe",
+ "t k",
+ "▁c ham",
+ "▁ch am",
+ "▁cha m",
+ "▁great ly",
+ "▁we it",
+ "▁ weit",
+ "▁co ach",
+ "▁to ward",
+ "Hom e",
+ "H ome",
+ "▁Bo olean",
+ "▁ Boolean",
+ "те л",
+ "т ел",
+ "▁m ock",
+ "▁mo ck",
+ "▁ mock",
+ "▁appreci ate",
+ "▁C ross",
+ "▁Cr oss",
+ "▁Cro ss",
+ "▁T ake",
+ "▁Ta ke",
+ "▁Tak e",
+ "▁ Take",
+ "D P",
+ "▁s ides",
+ "▁si des",
+ "▁side s",
+ "▁sid es",
+ "▁Norm daten",
+ "де й",
+ "д ей",
+ "st al",
+ "sta l",
+ "s tal",
+ "▁c out",
+ "▁co ut",
+ "▁cou t",
+ "▁ cout",
+ "b n",
+ "▁V ert",
+ "▁Ver t",
+ "▁Ve rt",
+ "▁ Vert",
+ "▁b ird",
+ "▁bi rd",
+ "▁bir d",
+ "▁ bird",
+ "▁dynam ically",
+ "▁dynamic ally",
+ "▁D ol",
+ "▁Do l",
+ "▁B urg",
+ "▁Bu rg",
+ "▁Bur g",
+ "▁d og",
+ "▁do g",
+ "▁ dog",
+ "ät t",
+ "ä tt",
+ "▁n uc",
+ "▁nu c",
+ "E C",
+ "By tes",
+ "Byte s",
+ "▁a k",
+ "▁ ak",
+ "re land",
+ "rel and",
+ "r eland",
+ "▁gu itar",
+ "▁reg arding",
+ "▁regard ing",
+ "▁F uß",
+ "▁Fu ß",
+ "▁до л",
+ "▁ дол",
+ "au ss",
+ "aus s",
+ "a uss",
+ "▁j ej",
+ "▁je j",
+ "ac o",
+ "a co",
+ "▁up dates",
+ "▁update s",
+ "▁upd ates",
+ "ру к",
+ "р ук",
+ "(' /",
+ "▁c old",
+ "▁col d",
+ "▁co ld",
+ "▁G iven",
+ "▁Gi ven",
+ "▁Give n",
+ "hi n",
+ "h in",
+ "▁fe eling",
+ "▁feel ing",
+ "▁fee ling",
+ "ig li",
+ "fa h",
+ "f ah",
+ "ст ре",
+ "стр е",
+ "с тре",
+ "bo ol",
+ "b ool",
+ "init ial",
+ "▁станов ника",
+ "▁An na",
+ "▁Ann a",
+ "▁h ors",
+ "▁hor s",
+ "▁ho rs",
+ "▁d oll",
+ "▁do ll",
+ "▁dol l",
+ "▁con sum",
+ "▁cons um",
+ "▁ consum",
+ "ub er",
+ "ube r",
+ "u ber",
+ "stand ing",
+ "stan ding",
+ "act iv",
+ "з і",
+ "check ed",
+ "▁perm issions",
+ "▁permission s",
+ "▁M onte",
+ "▁Mon te",
+ "▁Mont e",
+ "Write Line",
+ "pl us",
+ "p lus",
+ "▁E qu",
+ "▁Eq u",
+ "▁ Equ",
+ "▁и х",
+ "▁ их",
+ "ч ки",
+ "un que",
+ "▁L O",
+ "▁ LO",
+ "e a",
+ "sam ple",
+ "s ample",
+ "ie sz",
+ "ies z",
+ "i esz",
+ "or al",
+ "ora l",
+ "o ral",
+ "▁И н",
+ "os ton",
+ "ost on",
+ "osto n",
+ "o ston",
+ "▁S imon",
+ "▁Sim on",
+ "▁Si mon",
+ "fa st",
+ "fas t",
+ "f ast",
+ "m k",
+ "as sen",
+ "ass en",
+ "asse n",
+ "▁arch itecture",
+ "▁architect ure",
+ "▁ architecture",
+ "ens es",
+ "ense s",
+ "▁ Å",
+ "▁to pic",
+ "▁top ic",
+ "▁ topic",
+ "▁dis able",
+ "▁ disable",
+ "▁C ru",
+ "▁Cr u",
+ "▁Cont rol",
+ "▁ Control",
+ "▁cre ation",
+ "▁hy per",
+ "▁hyp er",
+ "▁ hyper",
+ "it ud",
+ "itu d",
+ "же ния",
+ "ar am",
+ "ara m",
+ "a ram",
+ "▁г де",
+ "ien st",
+ "iens t",
+ "i enst",
+ "ed ule",
+ "edu le",
+ "▁B ot",
+ "▁Bo t",
+ "▁О с",
+ "▁The ir",
+ "an ne",
+ "ann e",
+ "M icrosoft",
+ "▁P M",
+ "▁ PM",
+ "yd ro",
+ "y dro",
+ "ent lich",
+ "▁E ine",
+ "▁Ein e",
+ "CH AR",
+ ": '",
+ "We ll",
+ "Wel l",
+ "W ell",
+ "le ton",
+ "let on",
+ "l eton",
+ "▁support s",
+ "▁sup ports",
+ "'] )",
+ "' ])",
+ "man ual",
+ "▁v ice",
+ "▁vi ce",
+ "▁vic e",
+ "▁ vice",
+ "as a",
+ "a sa",
+ "cl os",
+ "clo s",
+ "c los",
+ "vi sed",
+ "vis ed",
+ "v ised",
+ "▁p ok",
+ "▁po k",
+ "tr ack",
+ "tra ck",
+ "t rack",
+ "но ст",
+ "нос т",
+ "... .....",
+ ".... ....",
+ "..... ...",
+ "▁' \\",
+ "▁ '\\",
+ "² .",
+ "▁or ders",
+ "▁order s",
+ "▁ord ers",
+ "▁ orders",
+ "et ta",
+ "ett a",
+ "e tta",
+ "▁con version",
+ "▁conv ersion",
+ "▁convers ion",
+ "▁t rade",
+ "▁tr ade",
+ "▁tra de",
+ "▁trad e",
+ "cl i",
+ "c li",
+ "▁И сто",
+ "▁Ис то",
+ "▁a kt",
+ "▁ak t",
+ "▁ akt",
+ "▁sub set",
+ "▁subs et",
+ "▁ subset",
+ "▁a ug",
+ "▁au g",
+ "▁ aug",
+ "▁le aves",
+ "▁leave s",
+ "Mat h",
+ "Ma th",
+ "M ath",
+ "an ned",
+ "ann ed",
+ "anne d",
+ "ka l",
+ "k al",
+ "▁Ве ли",
+ "▁n og",
+ "▁no g",
+ "▁ nog",
+ "▁e th",
+ "▁et h",
+ "▁ eth",
+ "▁h air",
+ "▁ha ir",
+ "ar ound",
+ "aro und",
+ "a round",
+ "▁java x",
+ "▁jav ax",
+ "▁ javax",
+ "во й",
+ "▁C entre",
+ "▁Cent re",
+ "ö ß",
+ "ut i",
+ "u ti",
+ "▁n avigation",
+ "▁navig ation",
+ "▁ navigation",
+ "▁P S",
+ "▁ PS",
+ "▁w a",
+ "▁ wa",
+ "▁Ро ссии",
+ "▁Рос сии",
+ "▁Росси и",
+ "us a",
+ "u sa",
+ "ze ta",
+ "zet a",
+ "z eta",
+ "▁P DF",
+ "▁ PDF",
+ "▁m ismo",
+ "▁mis mo",
+ "▁mism o",
+ "pro perties",
+ "me ister",
+ "ль та",
+ "for ward",
+ "▁O st",
+ "▁Os t",
+ "ki ns",
+ "kin s",
+ "k ins",
+ "▁s ido",
+ "▁si do",
+ "▁sid o",
+ "зо в",
+ "з ов",
+ "ta gs",
+ "tag s",
+ "t ags",
+ "▁a ctor",
+ "▁act or",
+ "▁ac tor",
+ "▁ actor",
+ "▁f ly",
+ "▁fl y",
+ "▁ fly",
+ "C R",
+ "ag ini",
+ "agi ni",
+ "agin i",
+ "▁l ett",
+ "▁le tt",
+ "▁let t",
+ "▁ lett",
+ "en i",
+ "e ni",
+ "te ch",
+ "t ech",
+ "▁E nc",
+ "▁En c",
+ "▁ Enc",
+ "or acle",
+ "ora cle",
+ "o racle",
+ "amil ton",
+ "ze j",
+ "z ej",
+ "fe n",
+ "f en",
+ "ume rate",
+ "umer ate",
+ "▁qu esto",
+ "▁que sto",
+ "▁q uesto",
+ "▁quest o",
+ "da rt",
+ "dar t",
+ "d art",
+ "▁K ore",
+ "▁Ko re",
+ "▁Kor e",
+ "ap is",
+ "api s",
+ "a pis",
+ "ep er",
+ "e per",
+ "Sc reen",
+ "S creen",
+ "wa ll",
+ "wal l",
+ "w all",
+ "▁is land",
+ "sh e",
+ "s he",
+ "▁l igger",
+ "▁lig ger",
+ "в ся",
+ "fa ng",
+ "fan g",
+ "f ang",
+ "▁t ard",
+ "▁tar d",
+ "▁ta rd",
+ "▁pla ats",
+ "▁п ло",
+ "▁ пло",
+ "▁Off ice",
+ "▁Offic e",
+ "▁ Office",
+ "▁S ET",
+ "▁SE T",
+ "▁ SET",
+ "▁circ uit",
+ "je d",
+ "j ed",
+ "Sa ve",
+ "S ave",
+ "ль но",
+ "So cket",
+ "S ocket",
+ "▁In dex",
+ "▁Ind ex",
+ "▁ Index",
+ "AC K",
+ "A CK",
+ "id ers",
+ "ide rs",
+ "ider s",
+ "i ders",
+ "er er",
+ "ere r",
+ "e rer",
+ "▁С ША",
+ "▁l ady",
+ "▁la dy",
+ "▁lad y",
+ "▁sch eme",
+ "▁sche me",
+ "ie lle",
+ "iel le",
+ "i elle",
+ "▁ex erc",
+ "▁exer c",
+ ")} \\",
+ ") }\\",
+ "Date Time",
+ "at han",
+ "ath an",
+ "a than",
+ "▁Prof essor",
+ "▁mo ins",
+ "▁moi ns",
+ "▁Ex cel",
+ "▁ Excel",
+ "▁H ay",
+ "▁Ha y",
+ "▁Mus ik",
+ "▁ ї",
+ "ę d",
+ "▁\" .",
+ "▁ \".",
+ "▁бу в",
+ "▁inst rument",
+ "▁instru ment",
+ "па р",
+ "п ар",
+ "▁б ере",
+ "▁бе ре",
+ "▁ бере",
+ "▁polit ique",
+ "▁trad ition",
+ "▁V M",
+ "▁ VM",
+ "▁Ar ts",
+ "▁Art s",
+ "▁C i",
+ "Us e",
+ "U se",
+ "▁a ggreg",
+ "▁ag greg",
+ "▁ aggreg",
+ "▁we eks",
+ "▁week s",
+ "▁o pport",
+ "▁op port",
+ "▁opp ort",
+ "it ing",
+ "iti ng",
+ "i ting",
+ "▁vert ical",
+ "▁ vertical",
+ "▁N az",
+ "▁Na z",
+ ".. .)",
+ "... )",
+ "iz o",
+ "i zo",
+ "▁c ycle",
+ "▁cy cle",
+ "▁cycl e",
+ "▁ cycle",
+ "▁tem po",
+ "▁temp o",
+ "т ре",
+ "▁hand ling",
+ "ist ence",
+ "isten ce",
+ "▁p aste",
+ "▁pas te",
+ "▁pa ste",
+ "▁past e",
+ "▁ paste",
+ "▁en jo",
+ "RO UP",
+ "▁o uter",
+ "▁out er",
+ "▁ou ter",
+ "▁ outer",
+ "▁su pply",
+ "▁supp ly",
+ "▁sup ply",
+ "em an",
+ "ema n",
+ "e man",
+ "▁acc ident",
+ "▁\\ ]",
+ "▁ \\]",
+ "▁те х",
+ "▁ тех",
+ "Po ol",
+ "P ool",
+ "ot ing",
+ "oti ng",
+ "o ting",
+ "onym ous",
+ "▁Gi ov",
+ "▁u d",
+ "▁ ud",
+ "▁. /",
+ "▁ ./",
+ "ER ROR",
+ "ERR OR",
+ "con struct",
+ "const ruct",
+ "text width",
+ "qu ipe",
+ "qui pe",
+ "quip e",
+ "case s",
+ "cas es",
+ "c ases",
+ "▁а д",
+ "▁R ow",
+ "▁Ro w",
+ "▁ Row",
+ "Hol der",
+ "Hold er",
+ "H older",
+ "wa n",
+ "w an",
+ "ar na",
+ "arn a",
+ "Me m",
+ "M em",
+ "▁Canad ian",
+ "▁Com mission",
+ "▁Comm ission",
+ "su n",
+ "s un",
+ "▁app s",
+ "▁ap ps",
+ "▁ apps",
+ "▁B lo",
+ "▁Bl o",
+ "▁i hrer",
+ "▁ih rer",
+ "▁ihr er",
+ "▁ihre r",
+ "▁famil le",
+ "▁fam ille",
+ "▁m ě",
+ "▁p y",
+ "▁ py",
+ "и с",
+ "▁т ого",
+ "▁то го",
+ "▁ того",
+ "▁Ag ain",
+ "▁ign ore",
+ "▁ignor e",
+ "▁ ignore",
+ "▁tele vision",
+ "▁televis ion",
+ "Pa t",
+ "P at",
+ "hi de",
+ "h ide",
+ "▁R ev",
+ "▁Re v",
+ "▁b ear",
+ "▁be ar",
+ "ph y",
+ "p hy",
+ "▁no ise",
+ "▁w ra",
+ "▁wr a",
+ "at ionale",
+ "ation ale",
+ "ational e",
+ "▁coll abor",
+ "bor der",
+ "b order",
+ "▁el ected",
+ "▁elect ed",
+ "▁ele cted",
+ "▁sur pr",
+ "▁a voir",
+ "▁av oir",
+ "▁avo ir",
+ "▁ avoir",
+ "▁ass embly",
+ "▁assemb ly",
+ "▁ assembly",
+ "▁об ще",
+ "▁arbitr ary",
+ "▁br ief",
+ "▁- --",
+ "▁-- -",
+ "▁ ---",
+ "▁M aur",
+ "▁Ma ur",
+ "▁Mau r",
+ "gr ession",
+ "gress ion",
+ "g ression",
+ "ic ia",
+ "ici a",
+ "i cia",
+ "▁lie gt",
+ "▁Fig ure",
+ "▁on to",
+ "▁ont o",
+ "▁ onto",
+ "Re pository",
+ "Repos itory",
+ "▁dé f",
+ "▁f orth",
+ "▁for th",
+ "▁fort h",
+ "▁cl icked",
+ "▁click ed",
+ "se ite",
+ "▁n otes",
+ "▁not es",
+ "▁no tes",
+ "▁note s",
+ "▁ notes",
+ "nat ive",
+ "n ative",
+ "▁ED IT",
+ "▁ EDIT",
+ "ы е",
+ "M T",
+ "am ental",
+ "ament al",
+ "amen tal",
+ "▁r ose",
+ "▁ro se",
+ "▁ros e",
+ "▁ rose",
+ "▁pu ede",
+ "▁pue de",
+ "De legate",
+ "Deleg ate",
+ "ub a",
+ "u ba",
+ "ne o",
+ "xi s",
+ "x is",
+ "▁Ar thur",
+ "UR E",
+ "U RE",
+ "am ing",
+ "ami ng",
+ "amin g",
+ "a ming",
+ "De vice",
+ "Dev ice",
+ "▁d iam",
+ "▁di am",
+ "▁dia m",
+ "st änd",
+ "▁p ron",
+ "▁pro n",
+ "▁pr on",
+ "oi s",
+ "o is",
+ "com ing",
+ "co ming",
+ "c oming",
+ "Param eters",
+ "Parameter s",
+ "uv ud",
+ "▁ab ility",
+ "▁ ability",
+ "▁m ét",
+ "▁mé t",
+ "▁Un fortunately",
+ "f d",
+ "D ictionary",
+ "so cket",
+ "sock et",
+ "s ocket",
+ "▁con oc",
+ "▁co noc",
+ "cont ains",
+ "es sed",
+ "ess ed",
+ "esse d",
+ "▁gel dig",
+ "▁geld ig",
+ "ни ца",
+ "ниц а",
+ "▁point ed",
+ "es ti",
+ "est i",
+ "no m",
+ "n om",
+ "ографи я",
+ "▁represent s",
+ "▁repres ents",
+ "▁man ip",
+ "wor ld",
+ "w orld",
+ "▁resol ved",
+ "▁resolve d",
+ "te gr",
+ "t egr",
+ "▁d ort",
+ "▁do rt",
+ "▁dor t",
+ "as tern",
+ "ast ern",
+ "aster n",
+ "aste rn",
+ "▁camp aign",
+ "▁pr imo",
+ "▁prim o",
+ "▁pri mo",
+ "▁; ;",
+ "▁ ;;",
+ "▁sni ppet",
+ "▁N ik",
+ "▁Ni k",
+ "To tal",
+ "T otal",
+ "iss ement",
+ "isse ment",
+ "AC E",
+ "A CE",
+ "▁ver ify",
+ "▁ verify",
+ "if fe",
+ "iff e",
+ "i ffe",
+ "la gen",
+ "lag en",
+ "lage n",
+ "l agen",
+ "ie ur",
+ "ieu r",
+ "i eur",
+ "▁convert ed",
+ "▁conver ted",
+ "▁Mil it",
+ "▁Mi lit",
+ "▁A lg",
+ "▁Al g",
+ "▁ Alg",
+ "▁R on",
+ "▁Ro n",
+ "▁k onn",
+ "▁kon n",
+ "▁ko nn",
+ "ap ple",
+ "app le",
+ "▁dis pos",
+ "▁disp os",
+ "stell ung",
+ "▁re tain",
+ "▁ret ain",
+ "▁m entre",
+ "▁men tre",
+ "▁ment re",
+ "▁ne ut",
+ "▁neu t",
+ "▁ neut",
+ "▁N ight",
+ "ch é",
+ "c hé",
+ "at ti",
+ "att i",
+ "▁o bra",
+ "▁ob ra",
+ "▁super ior",
+ "▁Con gress",
+ "▁Cong ress",
+ "ё м",
+ "▁c odes",
+ "▁code s",
+ "▁co des",
+ "▁cod es",
+ "▁ codes",
+ "▁A ma",
+ "▁Am a",
+ "▁E arth",
+ "▁Ear th",
+ "▁oppos ite",
+ "▁p ool",
+ "▁po ol",
+ "▁ pool",
+ "▁D un",
+ "▁Du n",
+ "же ние",
+ "▁\" ${",
+ "▁\"$ {",
+ "in v",
+ "▁у ни",
+ "▁And rew",
+ "▁Andre w",
+ "те лей",
+ "тел ей",
+ "▁by ł",
+ "Un ivers",
+ "Uni vers",
+ "▁Ang ular",
+ "an im",
+ "ani m",
+ "a nim",
+ "до ва",
+ "дов а",
+ "д ова",
+ "BU G",
+ "B UG",
+ "ut ely",
+ "ute ly",
+ "▁draw ing",
+ "▁dra wing",
+ "▁g ain",
+ "▁ga in",
+ "▁four th",
+ "▁Pro blem",
+ "▁ Problem",
+ "▁sudden ly",
+ "▁ Ä",
+ "on na",
+ "onn a",
+ "▁K ont",
+ "▁Kon t",
+ "▁Ko nt",
+ "▁Bilder n",
+ "▁Bild ern",
+ "▁Bil dern",
+ "▁konn te",
+ "ž e",
+ "Tr ace",
+ "Tra ce",
+ "T race",
+ "▁sec ure",
+ "▁ secure",
+ "▁któ ry",
+ "▁e q",
+ "▁ eq",
+ "▁f ormal",
+ "▁for mal",
+ "▁form al",
+ "▁forma l",
+ "amer ikan",
+ "▁A nal",
+ "▁An al",
+ "▁Ana l",
+ "▁ Anal",
+ "▁R ewrite",
+ "▁Re write",
+ "▁D ouble",
+ "▁Dou ble",
+ "▁ Double",
+ "cre ated",
+ "create d",
+ "N U",
+ "MD b",
+ "M Db",
+ "ap es",
+ "ape s",
+ "a pes",
+ "Un is",
+ "Uni s",
+ "U nis",
+ "▁e special",
+ "▁espe cial",
+ "▁espec ial",
+ "}) \\",
+ "} )\\",
+ "ed om",
+ "edo m",
+ "e dom",
+ "▁c ategor",
+ "▁categ or",
+ "Re turn",
+ "Ret urn",
+ "▁H amb",
+ "▁Ha mb",
+ "▁Ham b",
+ "▁R io",
+ "▁Ri o",
+ "▁M ir",
+ "▁Mi r",
+ "▁G eme",
+ "▁Ge me",
+ "▁Gem e",
+ "ab ilities",
+ "abil ities",
+ "tr z",
+ "t rz",
+ "us et",
+ "use t",
+ "u set",
+ "ier ra",
+ "net work",
+ "n etwork",
+ "▁do ctor",
+ "▁doc tor",
+ "eur s",
+ "eu rs",
+ "e urs",
+ "▁l isten",
+ "▁li sten",
+ "▁list en",
+ "▁liste n",
+ "▁ listen",
+ "д ж",
+ "▁H ö",
+ "▁cons ists",
+ "▁consist s",
+ "as m",
+ "a sm",
+ "Ch r",
+ "C hr",
+ "al and",
+ "ala nd",
+ "a land",
+ "▁испо ль",
+ "▁ис поль",
+ "▁испол ь",
+ "▁lug ar",
+ "▁lu gar",
+ "▁def initely",
+ "▁definit ely",
+ "▁definite ly",
+ "mo ve",
+ "mov e",
+ "m ove",
+ "úblic a",
+ "ú blica",
+ "▁l än",
+ "▁lä n",
+ "is mus",
+ "ism us",
+ "▁др жа",
+ "▁d t",
+ "▁ dt",
+ "▁Per haps",
+ "▁Bra sil",
+ "▁Bras il",
+ "Jo hn",
+ "J ohn",
+ "▁prom ise",
+ "ł u",
+ "re ens",
+ "ree ns",
+ "reen s",
+ "▁ps ych",
+ "▁W ho",
+ "▁Wh o",
+ "▁ Who",
+ "ря д",
+ "▁IN TO",
+ "▁INT O",
+ "▁Pe ople",
+ "▁Will iams",
+ "▁William s",
+ "▁M arg",
+ "▁Mar g",
+ "▁Ma rg",
+ "▁д ан",
+ "▁да н",
+ "▁ дан",
+ "re cord",
+ "rec ord",
+ "▁E uro",
+ "▁Eu ro",
+ "▁Eur o",
+ "▁Virgin ia",
+ "▁R est",
+ "▁Re st",
+ "▁Res t",
+ "▁ Rest",
+ "▁C orn",
+ "▁Cor n",
+ "▁Co rn",
+ "}} ,",
+ "} },",
+ "▁G rid",
+ "▁Gr id",
+ "▁ Grid",
+ "▁in ject",
+ "▁inj ect",
+ "▁ inject",
+ "на н",
+ "н ан",
+ "▁c row",
+ "▁cr ow",
+ "▁cro w",
+ "▁Ph ys",
+ "▁ Phys",
+ "▁D O",
+ "▁ DO",
+ "▁\" -",
+ "▁incre ased",
+ "▁increase d",
+ "ach er",
+ "ac her",
+ "ache r",
+ "a cher",
+ "pe at",
+ "Li n",
+ "L in",
+ "▁D ub",
+ "▁Du b",
+ "ri ces",
+ "ric es",
+ "rice s",
+ "r ices",
+ "ag nost",
+ "agn ost",
+ "d l",
+ "▁cur ve",
+ "▁curv e",
+ "ü g",
+ "ri ce",
+ "ric e",
+ "r ice",
+ "l anguage",
+ "Click Listener",
+ "▁municip al",
+ "▁O ri",
+ "▁Or i",
+ "▁ Ori",
+ "▁B ild",
+ "▁Bi ld",
+ "▁Bil d",
+ "▁C ab",
+ "▁Ca b",
+ "▁V ar",
+ "▁Va r",
+ "▁ Var",
+ "▁n oted",
+ "▁not ed",
+ "▁no ted",
+ "▁note d",
+ "▁ Î",
+ "▁s ubs",
+ "▁su bs",
+ "▁sub s",
+ "ia tion",
+ "iat ion",
+ "i ation",
+ "W OR",
+ "in gly",
+ "ing ly",
+ "▁R us",
+ "▁Ru s",
+ "ie ns",
+ "ien s",
+ "i ens",
+ "IN FO",
+ "INF O",
+ "к ва",
+ "at ivo",
+ "ativ o",
+ "ati vo",
+ "ge nde",
+ "gen de",
+ "g ende",
+ "▁Fran z",
+ "▁Fr anz",
+ "▁is ol",
+ "▁i sol",
+ "ed es",
+ "ede s",
+ "e des",
+ "ni er",
+ "nie r",
+ "n ier",
+ "▁N O",
+ "▁ NO",
+ "▁H as",
+ "▁Ha s",
+ "▁ Has",
+ "be ans",
+ "bean s",
+ "▁p andas",
+ "▁pan das",
+ "▁ pandas",
+ "(\" %",
+ "ві т",
+ "ут бо",
+ "▁g ather",
+ "▁ga ther",
+ "▁gat her",
+ "▁le gal",
+ "▁leg al",
+ "▁ legal",
+ "in clud",
+ "▁circum st",
+ "cript or",
+ "ri ble",
+ "rib le",
+ "r ible",
+ "▁S üd",
+ "▁Sü d",
+ "▁a pro",
+ "▁ap ro",
+ "▁apr o",
+ "Ap i",
+ "A pi",
+ "▁на й",
+ "▁Afr ican",
+ "▁Africa n",
+ "ow ski",
+ "ows ki",
+ "▁John son",
+ "ie k",
+ "i ek",
+ "▁v ote",
+ "▁vo te",
+ "▁vot e",
+ "▁ vote",
+ "▁K an",
+ "▁Ka n",
+ "▁b ibli",
+ "▁bib li",
+ "▁ bibli",
+ "▁h aar",
+ "▁ha ar",
+ "▁v r",
+ "▁ vr",
+ "]) ,",
+ "] ),",
+ "subset eq",
+ "Par ser",
+ "Parse r",
+ "ia ni",
+ "ian i",
+ "i ani",
+ "is é",
+ "id ea",
+ "ide a",
+ "On ly",
+ "▁á l",
+ "▁ ál",
+ "▁C atal",
+ "▁Ca tal",
+ "▁Cat al",
+ "▁C ase",
+ "▁Cas e",
+ "▁Ca se",
+ "▁ Case",
+ "se h",
+ "s eh",
+ "▁en counter",
+ "▁enc ounter",
+ "▁re form",
+ "▁ref orm",
+ "ми ни",
+ "мин и",
+ "▁S tre",
+ "▁St re",
+ "▁Str e",
+ "ex ception",
+ "except ion",
+ "▁T ar",
+ "▁Ta r",
+ "та р",
+ "т ар",
+ "tr l",
+ "t rl",
+ "▁А лександ",
+ "ле кт",
+ "лек т",
+ "equ al",
+ "eq ual",
+ "e qual",
+ "O p",
+ "▁l if",
+ "▁li f",
+ "▁й ого",
+ "▁volt age",
+ "▁volta ge",
+ "sh ire",
+ "s hire",
+ "▁Gro ß",
+ "в ня",
+ "ning s",
+ "n ings",
+ "н ци",
+ "▁l ag",
+ "▁la g",
+ "▁ lag",
+ "▁and eren",
+ "▁andere n",
+ "▁v ac",
+ "▁va c",
+ "▁ma cro",
+ "▁mac ro",
+ "▁ macro",
+ "= [",
+ "Th en",
+ "The n",
+ "T hen",
+ "▁control s",
+ "▁contr ols",
+ "▁contro ls",
+ "▁ controls",
+ "se q",
+ "s eq",
+ "olog ies",
+ "ologie s",
+ "▁select or",
+ "▁sel ector",
+ "▁sele ctor",
+ "▁ selector",
+ "▁Украї ни",
+ "хів овано",
+ "ы й",
+ "allen ge",
+ "alleng e",
+ "▁I MDb",
+ "▁IM Db",
+ "um my",
+ "umm y",
+ "ye n",
+ "y en",
+ "▁b este",
+ "▁be ste",
+ "▁best e",
+ "▁bes te",
+ "▁B ox",
+ "▁Bo x",
+ "▁ Box",
+ "▁ch air",
+ "▁cha ir",
+ "▁S ab",
+ "▁Sa b",
+ "er de",
+ "erd e",
+ "▁n ast",
+ "▁na st",
+ "▁nas t",
+ "iv amente",
+ "iva mente",
+ "▁об ъ",
+ "▁require ments",
+ "▁requirement s",
+ "▁me eting",
+ "▁meet ing",
+ "▁fin an",
+ "▁fi nan",
+ "▁A dam",
+ "▁Ad am",
+ "▁Ada m",
+ "▁tele vis",
+ "▁b right",
+ "▁br ight",
+ "▁brig ht",
+ "▁G it",
+ "▁Gi t",
+ "▁ Git",
+ "E G",
+ "▁G il",
+ "▁Gi l",
+ "r ès",
+ "▁C ond",
+ "▁Con d",
+ "▁Co nd",
+ "▁ Cond",
+ "▁f t",
+ "▁ ft",
+ "▁бу ло",
+ "- +",
+ "EN D",
+ "E ND",
+ "er ne",
+ "ern e",
+ "▁Com put",
+ "▁Comp ut",
+ "▁ Comput",
+ "▁i ls",
+ "▁il s",
+ "▁ ils",
+ "▁g all",
+ "▁gal l",
+ "▁ga ll",
+ "▁c sv",
+ "▁cs v",
+ "▁ csv",
+ "łu g",
+ "ł ug",
+ "▁sum mer",
+ "▁summ er",
+ "ga me",
+ "g ame",
+ "▁pos ts",
+ "▁post s",
+ "▁ posts",
+ "Ар хівовано",
+ "▁z ij",
+ "▁de termin",
+ "▁determ in",
+ "▁ab andon",
+ "co unter",
+ "count er",
+ "c ounter",
+ "▁require ment",
+ "▁requ irement",
+ "▁T it",
+ "▁Ti t",
+ "irt ual",
+ "▁V ideos",
+ "▁Video s",
+ "▁qu iet",
+ "▁qui et",
+ "▁T erm",
+ "▁Te rm",
+ "▁Ter m",
+ "▁ Term",
+ "▁time out",
+ "▁ timeout",
+ "Pr int",
+ "▁in vent",
+ "▁inv ent",
+ "▁inve nt",
+ "la is",
+ "l ais",
+ "▁mon itor",
+ "ha lb",
+ "hal b",
+ "▁W ild",
+ "▁Wil d",
+ "▁Wi ld",
+ "▁le ader",
+ "▁lead er",
+ "▁с ель",
+ "▁се ль",
+ "▁util iz",
+ "▁par ents",
+ "▁parent s",
+ "▁for ced",
+ "▁force d",
+ "▁pro ved",
+ "▁pr oved",
+ "▁prov ed",
+ "▁prove d",
+ "▁effect ive",
+ "▁l lam",
+ "▁ll am",
+ "▁С по",
+ "or b",
+ "o rb",
+ "gg i",
+ "g gi",
+ "▁ass umption",
+ "▁assum ption",
+ "▁su bm",
+ "▁sub m",
+ "▁в ій",
+ "▁ві й",
+ "il ia",
+ "ili a",
+ "i lia",
+ "▁re verse",
+ "▁revers e",
+ "▁rever se",
+ "▁ reverse",
+ "' \"",
+ "▁qu otes",
+ "▁quot es",
+ "▁quote s",
+ "▁s ites",
+ "▁si tes",
+ "▁site s",
+ "▁sit es",
+ "▁ sites",
+ "ig ung",
+ "igu ng",
+ "▁A rg",
+ "▁Ar g",
+ "▁ Arg",
+ "D ouble",
+ "▁s creens",
+ "▁sc reens",
+ "▁screen s",
+ "▁cl ause",
+ "▁cla use",
+ "▁b undle",
+ "▁bund le",
+ "▁ bundle",
+ "▁phil osoph",
+ "▁N um",
+ "▁Nu m",
+ "▁ Num",
+ "▁g leich",
+ "▁gle ich",
+ "▁ gleich",
+ "ul y",
+ "u ly",
+ "dir ect",
+ "di rect",
+ "dire ct",
+ "d irect",
+ "asket ball",
+ "ow any",
+ "owa ny",
+ "owan y",
+ "\\} $",
+ "\\ }$",
+ "▁rad ius",
+ "▁radi us",
+ "▁ radius",
+ "▁S earch",
+ "▁Se arch",
+ "▁ Search",
+ "Pro perties",
+ "▁e lev",
+ "▁el ev",
+ "▁ele v",
+ "▁p rod",
+ "▁pro d",
+ "▁pr od",
+ "▁ prod",
+ "▁\" %",
+ "is ión",
+ "isi ón",
+ "De bug",
+ "Deb ug",
+ "Se cond",
+ "Sec ond",
+ "( !",
+ "▁C atholic",
+ "ро ван",
+ "ров ан",
+ "рова н",
+ "р ован",
+ "le z",
+ "l ez",
+ "P a",
+ "ps on",
+ "p son",
+ "▁er ste",
+ "▁erst e",
+ "▁ers te",
+ "▁F u",
+ "▁l it",
+ "▁li t",
+ "▁ lit",
+ "▁S aison",
+ "▁Sa ison",
+ "▁H ash",
+ "▁Ha sh",
+ "▁Has h",
+ "▁ Hash",
+ "▁ex em",
+ "▁пред став",
+ ") *",
+ "▁e u",
+ "▁ eu",
+ "▁ │",
+ "▁g ab",
+ "▁ga b",
+ "eta iled",
+ "Co py",
+ "C opy",
+ "▁д ва",
+ "ev en",
+ "e ven",
+ "K ind",
+ "▁Jack son",
+ "а л",
+ "▁con sec",
+ "▁cons ec",
+ "▁conse c",
+ "US ER",
+ "USE R",
+ "U SER",
+ "▁T ok",
+ "▁To k",
+ "( .",
+ "▁$ |",
+ "▁T amb",
+ "▁Ta mb",
+ "▁Tam b",
+ "▁Lem ma",
+ "ha ng",
+ "han g",
+ "h ang",
+ "▁cont ribution",
+ "▁contrib ution",
+ "▁contribu tion",
+ "roll ers",
+ "rol lers",
+ "roller s",
+ "rolle rs",
+ "▁stud ies",
+ "▁studi es",
+ "▁p oi",
+ "▁po i",
+ "ge ms",
+ "gem s",
+ "g ems",
+ "▁U P",
+ "▁ UP",
+ "▁W ol",
+ "▁Wo l",
+ "> \"",
+ "▁f loor",
+ "▁fl oor",
+ "▁flo or",
+ "▁ floor",
+ "▁init ialize",
+ "▁initial ize",
+ "▁ initialize",
+ "▁L ew",
+ "▁Le w",
+ "ze k",
+ "z ek",
+ "ar te",
+ "art e",
+ "▁pos itions",
+ "▁position s",
+ "▁posit ions",
+ "▁por tion",
+ "▁port ion",
+ "co ver",
+ "cov er",
+ "c over",
+ "w p",
+ "ов ого",
+ "ово го",
+ "о вого",
+ "▁p iano",
+ "▁pi ano",
+ "▁pian o",
+ "▁pia no",
+ "▁m etal",
+ "▁me tal",
+ "▁met al",
+ "▁meta l",
+ "▁s amples",
+ "▁sam ples",
+ "▁sample s",
+ "▁ samples",
+ "▁С ан",
+ "▁Са н",
+ "vari able",
+ "▁ста ть",
+ "▁inte gers",
+ "▁integer s",
+ "Wh ere",
+ "W here",
+ "famil y",
+ "▁n un",
+ "▁nu n",
+ "▁in crement",
+ "▁incre ment",
+ "▁ increment",
+ "ix ed",
+ "▁he eft",
+ "ft e",
+ "f te",
+ "▁v il",
+ "▁vi l",
+ "▁ vil",
+ "▁ot ros",
+ "▁otro s",
+ "Mult imedia",
+ "Multi media",
+ "▁Hen ri",
+ "ad ed",
+ "ade d",
+ "a ded",
+ "ге н",
+ "г ен",
+ "▁cap it",
+ "▁ca pit",
+ "▁други х",
+ "is p",
+ "i sp",
+ "IT Y",
+ "I TY",
+ "▁constraint s",
+ "▁K irche",
+ "▁Kir che",
+ "▁Kirch e",
+ "fo und",
+ "f ound",
+ "ши й",
+ "▁p ic",
+ "▁pi c",
+ "▁ pic",
+ "▁t ou",
+ "▁to u",
+ "cre d",
+ "cr ed",
+ "c red",
+ "ро б",
+ "р об",
+ "▁M ess",
+ "▁Me ss",
+ "▁Mes s",
+ "▁ Mess",
+ "Jo b",
+ "J ob",
+ "▁M ais",
+ "▁Ma is",
+ "▁Mai s",
+ "▁st yles",
+ "▁style s",
+ "▁sty les",
+ "▁ styles",
+ "fa ll",
+ "fal l",
+ "f all",
+ "▁U k",
+ "▁st reet",
+ "▁stre et",
+ "▁ street",
+ "oc cer",
+ "occ er",
+ "es en",
+ "ese n",
+ "e sen",
+ "▁col ors",
+ "▁color s",
+ "▁ colors",
+ "ce an",
+ "ю ще",
+ "con ne",
+ "conn e",
+ "c onne",
+ "▁r atio",
+ "▁rat io",
+ "an ton",
+ "ant on",
+ "anto n",
+ "▁F el",
+ "▁Fe l",
+ "▁custom er",
+ "▁cust omer",
+ "▁ customer",
+ "▁P rix",
+ "▁Pr ix",
+ "▁Pri x",
+ "rá s",
+ "r ás",
+ "pr ed",
+ "pre d",
+ "p red",
+ "▁elect ron",
+ "▁electro n",
+ "s ym",
+ "▁ве ли",
+ "▁ вели",
+ "▁over flow",
+ "▁ overflow",
+ "▁$ [",
+ "▁P OST",
+ "▁PO ST",
+ "▁ POST",
+ "▁C in",
+ "▁Ci n",
+ "sc heid",
+ "sche id",
+ "(\" /",
+ "( \"/",
+ "▁search ing",
+ "▁pur poses",
+ "▁purpose s",
+ "▁arr ived",
+ "▁arriv ed",
+ "▁arrive d",
+ "▁p unt",
+ "▁pu nt",
+ "▁pun t",
+ "▁l ad",
+ "▁la d",
+ "▁ lad",
+ "P ython",
+ "▁le ads",
+ "▁lead s",
+ "▁s and",
+ "▁sa nd",
+ "▁san d",
+ "па да",
+ "пад а",
+ "▁comm unes",
+ "▁commun es",
+ "▁commune s",
+ "▁CH AP",
+ "▁c aso",
+ "▁cas o",
+ "▁ca so",
+ "r z",
+ "▁d w",
+ "▁ dw",
+ "ac a",
+ "a ca",
+ "▁Col umb",
+ "child ren",
+ "ê t",
+ "sch emas",
+ "sche mas",
+ "schema s",
+ "▁instru ctions",
+ "▁instruction s",
+ "▁instruct ions",
+ "▁- \\",
+ "▁ -\\",
+ "▁Is rael",
+ "▁Isra el",
+ "no ści",
+ "▁об раз",
+ "▁обра з",
+ "▁ образ",
+ "▁со вет",
+ "▁сов ет",
+ "▁imm agini",
+ "▁F red",
+ "▁Fre d",
+ "▁Fr ed",
+ "▁G lobal",
+ "▁Glo bal",
+ "▁ Global",
+ "▁th ick",
+ "▁ thick",
+ "▁fue ron",
+ "▁fuer on",
+ "▁th rown",
+ "▁thr own",
+ "▁throw n",
+ "▁thro wn",
+ "▁c lock",
+ "▁cl ock",
+ "▁clo ck",
+ "▁ clock",
+ "en able",
+ "ena ble",
+ "'' '",
+ "' ''",
+ "▁S und",
+ "▁Su nd",
+ "▁Sun d",
+ "▁cont empor",
+ "an swer",
+ "ans wer",
+ "▁man ufact",
+ "▁i o",
+ "▁ io",
+ "q quad",
+ "OU T",
+ "O UT",
+ "▁L ab",
+ "▁La b",
+ "▁ Lab",
+ "▁Z w",
+ "le gal",
+ "leg al",
+ "▁V el",
+ "▁Ve l",
+ "▁ra ise",
+ "▁ raise",
+ "▁de liver",
+ "▁del iver",
+ "▁deli ver",
+ "▁V oir",
+ "▁Vo ir",
+ "▁ass umed",
+ "▁assum ed",
+ "▁assume d",
+ "Le t",
+ "L et",
+ "ier ten",
+ "iert en",
+ "ierte n",
+ "i erten",
+ "▁K ong",
+ "▁Kon g",
+ "▁Ko ng",
+ "▁E xp",
+ "▁Ex p",
+ "▁ Exp",
+ "▁J ug",
+ "▁Ju g",
+ "▁dec laration",
+ "▁declar ation",
+ "▁F ish",
+ "m é",
+ "▁spe ech",
+ "▁t ent",
+ "▁te nt",
+ "▁ten t",
+ "▁R oute",
+ "▁Ro ute",
+ "▁Rou te",
+ "▁Rout e",
+ "▁ Route",
+ "__ (",
+ "_ _(",
+ "▁ré alis",
+ "▁réal is",
+ "▁De sign",
+ "▁Des ign",
+ "set Text",
+ "▁St ation",
+ "▁Stat ion",
+ "▁Sta tion",
+ "▁Stati on",
+ "▁ Station",
+ "ar chy",
+ "arch y",
+ "arc hy",
+ "▁ка то",
+ "▁d ent",
+ "▁de nt",
+ "▁den t",
+ "▁ dent",
+ "▁K l",
+ "i ß",
+ "▁r isk",
+ "▁ris k",
+ "▁ri sk",
+ "▁B road",
+ "▁Bro ad",
+ "▁v ectors",
+ "▁ve ctors",
+ "▁vector s",
+ "▁S pec",
+ "▁Sp ec",
+ "▁Spe c",
+ "▁ Spec",
+ "▁ro utes",
+ "▁route s",
+ "▁rout es",
+ "▁rou tes",
+ "▁ routes",
+ "ym n",
+ "y mn",
+ "▁G reg",
+ "▁Gr eg",
+ "▁Gre g",
+ "▁полу чи",
+ "gi e",
+ "g ie",
+ "OR M",
+ "ве де",
+ "вед е",
+ "в еде",
+ "wa lt",
+ "wal t",
+ "w alt",
+ "▁e fter",
+ "P tr",
+ "▁su bt",
+ "▁sub t",
+ "▁b irth",
+ "▁bir th",
+ "▁dr awn",
+ "▁draw n",
+ "▁dra wn",
+ "me ss",
+ "mes s",
+ "m ess",
+ "мери кан",
+ "V E",
+ "▁P ut",
+ "▁Pu t",
+ "▁ Put",
+ "▁a sc",
+ "▁as c",
+ "▁ asc",
+ "▁f eder",
+ "▁fe der",
+ "▁fed er",
+ "с ли",
+ "▁P rin",
+ "▁Pr in",
+ "▁Pri n",
+ "▁s tick",
+ "▁st ick",
+ "re set",
+ "res et",
+ "y k",
+ "st udio",
+ "stud io",
+ "▁St ill",
+ "Con st",
+ "Cons t",
+ "ac ió",
+ "aci ó",
+ "a ció",
+ "▁Portug al",
+ "▁script s",
+ "▁scri pts",
+ "▁ scripts",
+ "und ial",
+ "▁l ives",
+ "▁li ves",
+ "▁live s",
+ "▁liv es",
+ "▁s zer",
+ "▁sz er",
+ "▁sze r",
+ "▁est ado",
+ "▁esta do",
+ "▁estad o",
+ "fo lder",
+ "fol der",
+ "fold er",
+ "f older",
+ "▁communic ation",
+ "Ro ute",
+ "Rout e",
+ "R oute",
+ "▁sw ift",
+ "▁ swift",
+ "те н",
+ "т ен",
+ "▁k ill",
+ "▁kil l",
+ "▁ki ll",
+ "▁ kill",
+ "▁P R",
+ "▁ PR",
+ "jo int",
+ "join t",
+ "j oint",
+ "▁ob jective",
+ "▁object ive",
+ "▁comp licated",
+ "▁Ü ber",
+ "es h",
+ "e sh",
+ "p icture",
+ "ra ine",
+ "rain e",
+ "rai ne",
+ "r aine",
+ "com put",
+ "comp ut",
+ "▁pro port",
+ "▁pr oport",
+ "▁prop ort",
+ "▁propor t",
+ "og s",
+ "o gs",
+ "ül t",
+ "ü lt",
+ "▁quant um",
+ "к ри",
+ "▁s op",
+ "▁so p",
+ "▁lo ops",
+ "▁loop s",
+ "▁Re ference",
+ "▁Refer ence",
+ "▁ Reference",
+ "▁n ei",
+ "▁ne i",
+ "IC E",
+ "I CE",
+ "▁v erm",
+ "▁ver m",
+ "▁ve rm",
+ "▁a dj",
+ "▁ad j",
+ "▁ adj",
+ "▁per ò",
+ "▁t rou",
+ "▁tr ou",
+ "▁tro u",
+ "is ions",
+ "ision s",
+ "isi ons",
+ "▁App le",
+ "▁Ap ple",
+ "serv able",
+ "▁B oston",
+ "▁Bo ston",
+ "▁Bos ton",
+ "or et",
+ "ore t",
+ "o ret",
+ "ok s",
+ "o ks",
+ "▁k g",
+ "▁ kg",
+ "def ined",
+ "define d",
+ "defin ed",
+ "d efined",
+ "pl atform",
+ "cl er",
+ "cle r",
+ "c ler",
+ "ograph ic",
+ "ri tt",
+ "rit t",
+ "r itt",
+ "▁d ic",
+ "▁di c",
+ "▁ dic",
+ "▁M ond",
+ "▁Mon d",
+ "▁Mo nd",
+ "▁I reland",
+ "▁Ir eland",
+ "▁U na",
+ "▁Un a",
+ "▁commer cial",
+ "▁P u",
+ "D i",
+ "▁е ё",
+ "▁pre cis",
+ "▁prec is",
+ "на род",
+ "нар од",
+ "▁qu atre",
+ "ust ral",
+ "ustr al",
+ "▁d ag",
+ "▁da g",
+ "▁ dag",
+ "ig ue",
+ "igu e",
+ "i gue",
+ "▁b urn",
+ "▁bu rn",
+ "▁bur n",
+ "▁ burn",
+ "▁offic er",
+ "▁office r",
+ "▁А в",
+ "▁high light",
+ "▁ highlight",
+ "▁Supp ose",
+ "▁Sup pose",
+ "od i",
+ "o di",
+ "serv let",
+ "▁En cyc",
+ "▁Enc yc",
+ "▁R ange",
+ "▁Ran ge",
+ "▁Rang e",
+ "▁ Range",
+ "ти й",
+ "P lease",
+ "▁ро ків",
+ "qu ant",
+ "qua nt",
+ "▁f lat",
+ "▁fl at",
+ "▁fla t",
+ "▁ flat",
+ "▁Ré férence",
+ "сле дова",
+ "след ова",
+ "ro le",
+ "rol e",
+ "r ole",
+ "▁d iesen",
+ "▁di esen",
+ "▁die sen",
+ "▁dies en",
+ "▁diese n",
+ "}} (",
+ "} }(",
+ "▁Ind ust",
+ "▁nú mer",
+ "▁\" ;",
+ "▁ \";",
+ "lu s",
+ "l us",
+ "ô le",
+ "▁z m",
+ "▁ zm",
+ "de g",
+ "d eg",
+ "▁r ough",
+ "▁ro ugh",
+ "▁rou gh",
+ "▁ rough",
+ "In v",
+ "▁h ur",
+ "▁hu r",
+ "▁R ess",
+ "▁Re ss",
+ "▁Res s",
+ "ch s",
+ "c hs",
+ "▁turn s",
+ "▁tur ns",
+ "ne ro",
+ "ner o",
+ "n ero",
+ "function s",
+ "fun ctions",
+ "ал и",
+ "а ли",
+ "▁hab itants",
+ "▁habit ants",
+ "а т",
+ "iss ues",
+ "issue s",
+ "▁h uge",
+ "▁hu ge",
+ "Util s",
+ "▁S at",
+ "▁Sa t",
+ "▁го судар",
+ "▁co ast",
+ "sh ape",
+ "sha pe",
+ "s hape",
+ "L C",
+ "▁log ging",
+ "▁ logging",
+ "en dor",
+ "end or",
+ "endo r",
+ "▁l ies",
+ "▁li es",
+ "▁lie s",
+ "▁ lies",
+ "▁d ifer",
+ "▁di fer",
+ "▁dif er",
+ "▁crit ical",
+ "▁critic al",
+ "X T",
+ "ми на",
+ "мин а",
+ "an sk",
+ "ans k",
+ "Result s",
+ "k c",
+ "ivers e",
+ "iver se",
+ "i verse",
+ "EX T",
+ "E XT",
+ "AL SE",
+ "▁v ál",
+ "▁vá l",
+ "P i",
+ "comp ile",
+ "hel lo",
+ "hell o",
+ "h ello",
+ "▁чем пи",
+ "▁It alia",
+ "▁Ital ia",
+ "▁ Italia",
+ "ко ло",
+ "кол о",
+ "к оло",
+ "▁ed ition",
+ "▁edit ion",
+ "gr und",
+ "gru nd",
+ "g rund",
+ "▁data frame",
+ "▁Follow ing",
+ "re ib",
+ "rei b",
+ "▁J eff",
+ "▁Je ff",
+ "▁citt à",
+ "IT able",
+ "I Table",
+ "▁$ (\\",
+ "▁$( \\",
+ "▁redu ced",
+ "▁reduce d",
+ "ob il",
+ "obi l",
+ "o bil",
+ "▁any where",
+ "' (",
+ "▁p hr",
+ "▁ph r",
+ "▁ phr",
+ "▁K h",
+ "▁F rame",
+ "▁Fr ame",
+ "▁Fra me",
+ "▁ Frame",
+ "▁man ual",
+ "▁ manual",
+ "▁c ra",
+ "▁cr a",
+ "▁ cra",
+ "▁V S",
+ "▁ VS",
+ "% =",
+ "Instance State",
+ "▁б ра",
+ "▁ бра",
+ "▁D rag",
+ "▁Dr ag",
+ "▁Dra g",
+ "▁ Drag",
+ "▁H err",
+ "▁He rr",
+ "▁Her r",
+ "▁г у",
+ "▁ гу",
+ "▁m ús",
+ "To ol",
+ "T ool",
+ "▁P rivate",
+ "▁Priv ate",
+ "▁ Private",
+ "▁s ynchron",
+ "▁syn chron",
+ "ir ation",
+ "ira tion",
+ "irat ion",
+ "▁о бо",
+ "▁об о",
+ "▁typ ically",
+ "▁typical ly",
+ "▁imp licit",
+ "or ient",
+ "ori ent",
+ "orie nt",
+ "▁t imer",
+ "▁time r",
+ "▁tim er",
+ "▁ti mer",
+ "▁ timer",
+ "▁kön nen",
+ "ie st",
+ "ies t",
+ "i est",
+ "ra id",
+ "rai d",
+ "▁expression s",
+ "▁express ions",
+ "▁expr essions",
+ "▁a im",
+ "▁ai m",
+ "▁s tre",
+ "▁st re",
+ "▁str e",
+ "▁ stre",
+ "▁w rap",
+ "▁wr ap",
+ "▁wra p",
+ "▁ wrap",
+ "▁B art",
+ "▁Bar t",
+ "▁Ba rt",
+ "▁b ron",
+ "▁br on",
+ "▁bro n",
+ "▁key board",
+ "po w",
+ "p ow",
+ "▁gru po",
+ "▁grup o",
+ "▁ре зу",
+ "▁prof essor",
+ "▁profess or",
+ "▁H ead",
+ "▁He ad",
+ "▁ Head",
+ "но ю",
+ "min us",
+ "m inus",
+ "▁Mich el",
+ "▁Mic hel",
+ "NO T",
+ "N OT",
+ "mo r",
+ "m or",
+ "] }",
+ "wide hat",
+ "ar is",
+ "ari s",
+ "a ris",
+ "тера тура",
+ "de fn",
+ "def n",
+ "is trz",
+ "ist rz",
+ "istr z",
+ "▁t anto",
+ "▁tan to",
+ "▁tant o",
+ "▁P ow",
+ "▁Po w",
+ "▁ind icate",
+ "▁indic ate",
+ "▁W inter",
+ "▁Win ter",
+ "res hold",
+ "resh old",
+ "рі в",
+ "р ів",
+ "▁` (",
+ "▁o wner",
+ "▁own er",
+ "▁ow ner",
+ "▁ owner",
+ "▁d isp",
+ "▁di sp",
+ "▁dis p",
+ "▁к ри",
+ "▁ кри",
+ "ме т",
+ "м ет",
+ "мен т",
+ "м ент",
+ "re port",
+ "rep ort",
+ "repo rt",
+ "re quire",
+ "▁v oy",
+ "▁vo y",
+ "▁ voy",
+ "▁A P",
+ "▁ AP",
+ "▁Esp aña",
+ "▁Españ a",
+ "▁S ão",
+ "j är",
+ "No n",
+ "N on",
+ "Li brary",
+ "L ibrary",
+ "ich ten",
+ "icht en",
+ "ichte n",
+ "i chten",
+ "▁struct ures",
+ "▁structure s",
+ "▁m uy",
+ "▁mu y",
+ "ár io",
+ "á rio",
+ "▁cert ificate",
+ "▁certific ate",
+ "чно го",
+ "ч ного",
+ "▁prov ince",
+ "▁provin ce",
+ "pa ges",
+ "page s",
+ "pag es",
+ "p ages",
+ "da l",
+ "d al",
+ "▁Fre der",
+ "▁Fr eder",
+ "▁Fred er",
+ "ь е",
+ "Exec ute",
+ "▁an cient",
+ "▁anci ent",
+ "▁anc ient",
+ "▁ancien t",
+ "▁fil ms",
+ "▁film s",
+ "▁Al fred",
+ "▁Alf red",
+ "Aut o",
+ "A uto",
+ "▁a tom",
+ "▁at om",
+ "▁ atom",
+ "▁e ll",
+ "▁el l",
+ "▁ ell",
+ "▁H arr",
+ "▁Har r",
+ "▁Ha rr",
+ "й н",
+ "▁\" #",
+ "▁n acional",
+ "▁nac ional",
+ "▁neigh bor",
+ "▁neighb or",
+ "сту па",
+ "ступ а",
+ "▁w it",
+ "Po p",
+ "P op",
+ "▁G reek",
+ "▁Gre ek",
+ "▁Gree k",
+ "▁re peat",
+ "▁repe at",
+ "▁ repeat",
+ "ba d",
+ "b ad",
+ "▁S C",
+ "▁ SC",
+ "▁Date Time",
+ "▁ DateTime",
+ "ш ти",
+ "▁W H",
+ "▁ WH",
+ "▁пра ви",
+ "▁прав и",
+ "▁ прави",
+ "▁Т и",
+ "▁s aison",
+ "▁sa ison",
+ "▁H art",
+ "▁Har t",
+ "▁Ha rt",
+ "direct ory",
+ "d irectory",
+ "ua n",
+ "u an",
+ "no rm",
+ "nor m",
+ "n orm",
+ "▁Phil ipp",
+ "▁Phili pp",
+ "▁Philip p",
+ "▁su spect",
+ "▁sus pect",
+ "▁susp ect",
+ "▁an no",
+ "▁ann o",
+ "▁ anno",
+ "b c",
+ "с ла",
+ "$ (",
+ "▁be find",
+ "▁bef ind",
+ "oc s",
+ "o cs",
+ "la test",
+ "lat est",
+ "late st",
+ ";\" >",
+ "; \">",
+ "▁after wards",
+ "PU T",
+ "P UT",
+ "▁j a",
+ "▁ ja",
+ "▁H il",
+ "▁Hi l",
+ "y z",
+ "▁B our",
+ "▁Bo ur",
+ "▁Bou r",
+ "▁la id",
+ "▁Д же",
+ "▁Дж е",
+ "pi e",
+ "p ie",
+ "w atch",
+ "▁E q",
+ "▁ Eq",
+ "cont act",
+ "ib er",
+ "ibe r",
+ "i ber",
+ "check box",
+ "▁esp añ",
+ "▁espa ñ",
+ "an se",
+ "ans e",
+ "▁ш ко",
+ "▁ шко",
+ "ef f",
+ "e ff",
+ "xx x",
+ "x xx",
+ "▁G ET",
+ "▁ GET",
+ "▁l ov",
+ "▁lo v",
+ "▁ lov",
+ "it ute",
+ "itu te",
+ "itut e",
+ "ze ch",
+ "zec h",
+ "z ech",
+ "ter e",
+ "te re",
+ "t ere",
+ "▁p urs",
+ "▁pu rs",
+ "▁pur s",
+ "ke ns",
+ "ken s",
+ "k ens",
+ "ian te",
+ "i ante",
+ "▁F ree",
+ "▁Fre e",
+ "▁Fr ee",
+ "▁ Free",
+ "▁ор гани",
+ "▁орган и",
+ "kre is",
+ "▁{ :",
+ "▁ {:",
+ "sh ared",
+ "share d",
+ "sha red",
+ "▁G raph",
+ "▁Gr aph",
+ "▁Gra ph",
+ "▁ Graph",
+ "▁conne ctions",
+ "▁connection s",
+ "▁connect ions",
+ "▁D OM",
+ "▁DO M",
+ "▁ DOM",
+ "▁C art",
+ "▁Car t",
+ "▁Ca rt",
+ "▁ Cart",
+ "ss on",
+ "s son",
+ "▁H amilton",
+ "те ли",
+ "тел и",
+ "▁r estaur",
+ "▁rest aur",
+ "▁resta ur",
+ "Re sol",
+ "Res ol",
+ "Dr iver",
+ "D river",
+ "▁en f",
+ "▁ enf",
+ "ED IT",
+ "▁p rev",
+ "▁pr ev",
+ "▁pre v",
+ "▁ prev",
+ "▁i k",
+ "▁ ik",
+ "▁s ă",
+ "j ö",
+ "▁С ССР",
+ "▁col our",
+ "ch ten",
+ "cht en",
+ "chte n",
+ "▁e stad",
+ "▁est ad",
+ "▁esta d",
+ "in ois",
+ "ino is",
+ "▁con fir",
+ "▁conf ir",
+ "▁v é",
+ "▁ vé",
+ "▁C es",
+ "▁Ce s",
+ "▁N ever",
+ "▁Ne ver",
+ "▁Nev er",
+ "om er",
+ "ome r",
+ "o mer",
+ "ж да",
+ "с лу",
+ "че ния",
+ "dl l",
+ "d ll",
+ "▁y outh",
+ "▁you th",
+ "▁yo uth",
+ "em en",
+ "eme n",
+ "e men",
+ "▁stud ied",
+ "▁studi ed",
+ "▁K il",
+ "▁Ki l",
+ "ci on",
+ "cio n",
+ "c ion",
+ "▁n avig",
+ "▁nav ig",
+ "re quired",
+ "require d",
+ "orith ms",
+ "orithm s",
+ "il or",
+ "ilo r",
+ "i lor",
+ "▁Deutsch en",
+ "▁Deutsche n",
+ "▁person s",
+ "▁pers ons",
+ "▁Barcel ona",
+ "▁form ation",
+ "▁format ion",
+ "▁forma tion",
+ "▁ formation",
+ "ab ei",
+ "abe i",
+ "a bei",
+ "▁про тив",
+ "▁проти в",
+ "Eng ine",
+ "ON E",
+ "O NE",
+ "og rá",
+ "Ca p",
+ "C ap",
+ "ri r",
+ "r ir",
+ "▁g ate",
+ "▁ga te",
+ "▁gat e",
+ "▁ gate",
+ "or ation",
+ "ora tion",
+ "ma ven",
+ "m aven",
+ "▁comb ined",
+ "▁combin ed",
+ "▁combine d",
+ "▁at tr",
+ "▁att r",
+ "▁ attr",
+ "▁h ook",
+ "▁ho ok",
+ "▁ hook",
+ "▁которы й",
+ "▁ser vers",
+ "▁server s",
+ "▁serv ers",
+ "▁serve rs",
+ "uct ure",
+ "же ння",
+ "жен ня",
+ "t v",
+ "▁re q",
+ "▁r eq",
+ "▁ req",
+ "ja l",
+ "j al",
+ "▁loc ally",
+ "▁local ly",
+ "}} {\\",
+ "}}{ \\",
+ "} }{\\",
+ "B r",
+ "▁H ier",
+ "▁Hi er",
+ "мо р",
+ "м ор",
+ "▁a part",
+ "▁ap art",
+ "▁apar t",
+ "\"] ,",
+ "\" ],",
+ "▁%> %",
+ "▁z usammen",
+ "▁zus ammen",
+ "▁ident ify",
+ "▁Al tern",
+ "▁Alt ern",
+ "▁Alter n",
+ "▁б ро",
+ "▁ бро",
+ "▁ц и",
+ "▁ ци",
+ "g h",
+ "▁T en",
+ "▁Te n",
+ "R S",
+ "фор ма",
+ "▁n elle",
+ "▁ne lle",
+ "▁nel le",
+ "▁nell e",
+ "▁ nelle",
+ "▁H in",
+ "▁Hi n",
+ "ound ing",
+ "oun ding",
+ "▁re prés",
+ "▁rep rés",
+ "▁repr és",
+ "ap h",
+ "a ph",
+ "▁[ \\",
+ "▁ [\\",
+ "▁S ports",
+ "▁Sport s",
+ "ра л",
+ "р ал",
+ "▁t hre",
+ "▁th re",
+ "▁thr e",
+ "▁p rin",
+ "▁pr in",
+ "▁pri n",
+ "▁El iz",
+ "▁Eli z",
+ "▁F our",
+ "▁Fou r",
+ "▁Fo ur",
+ "▁soci ety",
+ "▁soc iety",
+ "Trans action",
+ "▁v eg",
+ "▁ve g",
+ "▁ veg",
+ "▁sch ools",
+ "▁school s",
+ "▁over all",
+ "▁t ail",
+ "▁ta il",
+ "▁ tail",
+ "üb er",
+ "ü ber",
+ "▁S ov",
+ "▁So v",
+ "▁С ер",
+ "▁Се р",
+ "▁r app",
+ "▁ra pp",
+ "▁rap p",
+ "▁tra ffic",
+ "qu estion",
+ "quest ion",
+ "ques tion",
+ "▁en viron",
+ "▁envi ron",
+ "▁ environ",
+ "ate ien",
+ "ic us",
+ "i cus",
+ "▁n arrow",
+ "▁narr ow",
+ "▁nar row",
+ "▁p ray",
+ "▁pr ay",
+ "▁pra y",
+ "▁B ou",
+ "▁Bo u",
+ "▁C lient",
+ "▁Cl ient",
+ "▁ Client",
+ "ab l",
+ "a bl",
+ "▁Aud iod",
+ "▁Audio d",
+ "▁n pm",
+ "▁np m",
+ "▁ npm",
+ "▁Col umn",
+ "▁ Column",
+ "▁G ames",
+ "▁Game s",
+ "▁Ga mes",
+ "▁Gam es",
+ "av er",
+ "ave r",
+ "a ver",
+ "ony mes",
+ "onym es",
+ "onyme s",
+ "▁По сле",
+ "n ą",
+ "▁N u",
+ "▁D ick",
+ "▁Di ck",
+ "▁Dic k",
+ "▁t ensor",
+ "▁tens or",
+ "▁ tensor",
+ "▁@ \"",
+ "▁ @\"",
+ "v é",
+ "I con",
+ "▁по да",
+ "▁под а",
+ "▁ пода",
+ "▁G on",
+ "▁Go n",
+ "/) .",
+ "/ ).",
+ "is tra",
+ "ist ra",
+ "istr a",
+ "i stra",
+ "▁Audiod ateien",
+ "De lete",
+ "Del ete",
+ "}} }",
+ "} }}",
+ "▁j ump",
+ "▁ju mp",
+ "▁О б",
+ "▁princi ple",
+ "▁princip le",
+ "▁Ét ats",
+ "ok ed",
+ "oke d",
+ "o ked",
+ "▁В ла",
+ "Inter val",
+ "▁s au",
+ "▁sa u",
+ "en code",
+ "enc ode",
+ "▁p on",
+ "▁po n",
+ "▁ pon",
+ "cat ch",
+ "c atch",
+ "▁t iem",
+ "▁ti em",
+ "▁tie m",
+ "▁G ust",
+ "▁Gu st",
+ "M C",
+ "lim its",
+ "limit s",
+ "▁ke eping",
+ "▁keep ing",
+ "▁s ongs",
+ "▁son gs",
+ "▁song s",
+ "▁ав гу",
+ "▁рай он",
+ "▁райо н",
+ "▁not ification",
+ "▁ notification",
+ "▁off ered",
+ "▁offer ed",
+ "Co r",
+ "C or",
+ "▁sh ut",
+ "error s",
+ "err ors",
+ "▁E N",
+ "▁ EN",
+ "▁lat ach",
+ "▁sel bst",
+ "▁check box",
+ "▁ checkbox",
+ "▁c ool",
+ "▁co ol",
+ "▁f actory",
+ "▁fact ory",
+ "▁factor y",
+ "▁ factory",
+ "▁pa id",
+ "dim ensional",
+ "ni ej",
+ "nie j",
+ "n iej",
+ "pt on",
+ "pto n",
+ "p ton",
+ "▁p in",
+ "▁pi n",
+ "▁ pin",
+ "ak ed",
+ "ake d",
+ "a ked",
+ "▁re li",
+ "▁r eli",
+ "▁rel i",
+ "▁T aylor",
+ "▁S omething",
+ "▁Some thing",
+ "▁Som ething",
+ "▁ Something",
+ "im um",
+ "▁V in",
+ "▁Vi n",
+ "▁iter ation",
+ "Fin d",
+ "Fi nd",
+ "F ind",
+ "ко ви",
+ "ков и",
+ "к ови",
+ "▁bo ys",
+ "▁boy s",
+ "▁Sim ple",
+ "▁ Simple",
+ "▁C rist",
+ "▁Cr ist",
+ "▁Cris t",
+ "▁W as",
+ "▁Wa s",
+ "ân d",
+ "â nd",
+ "▁V a",
+ "▁т ра",
+ "▁ тра",
+ "▁dest ination",
+ "▁destin ation",
+ "▁ destination",
+ "li mp",
+ "lim p",
+ "l imp",
+ "▁K at",
+ "▁Ka t",
+ "wor th",
+ "wort h",
+ "w orth",
+ "▁K or",
+ "▁Ko r",
+ "i ção",
+ "= `",
+ "▁fair ly",
+ "fall s",
+ "fal ls",
+ "f alls",
+ "▁re ject",
+ "▁d ream",
+ "▁dre am",
+ "be ll",
+ "bel l",
+ "b ell",
+ "▁t oute",
+ "▁to ute",
+ "▁tout e",
+ "▁tou te",
+ "▁$ \\{",
+ "▁$\\ {",
+ "▁st one",
+ "▁sto ne",
+ "▁ stone",
+ "▁prote ct",
+ "▁prot ect",
+ "▁ex cell",
+ "▁exc ell",
+ "▁excel l",
+ "▁Me xico",
+ "▁Mex ico",
+ "▁d ash",
+ "▁da sh",
+ "▁das h",
+ "▁ dash",
+ "▁f ault",
+ "▁fa ult",
+ "▁ fault",
+ "p matrix",
+ "al ler",
+ "all er",
+ "alle r",
+ "▁guer re",
+ "or igin",
+ "ori gin",
+ "orig in",
+ "hi bernate",
+ "í lia",
+ "▁Reg ister",
+ "▁ Register",
+ "un to",
+ "unt o",
+ "▁B at",
+ "▁Ba t",
+ "▁b ow",
+ "▁bo w",
+ "▁ bow",
+ "сь ких",
+ "ськ их",
+ "et à",
+ "▁L uis",
+ "▁Lu is",
+ "▁f ou",
+ "▁fo u",
+ "▁Cam bridge",
+ "▁Camb ridge",
+ "▁o tt",
+ "▁ot t",
+ "▁ ott",
+ "su p",
+ "s up",
+ "re as",
+ "rea s",
+ "▁point ers",
+ "▁pointer s",
+ "▁Bo ard",
+ "▁ Board",
+ "▁р и",
+ "▁ ри",
+ "▁d riv",
+ "▁dr iv",
+ "▁dri v",
+ "ни н",
+ "н ин",
+ "▁C irc",
+ "▁Ci rc",
+ "▁Cir c",
+ "▁ Circ",
+ "▁t hou",
+ "▁th ou",
+ "Di v",
+ "D iv",
+ "sp ark",
+ "s park",
+ "la ment",
+ "lam ent",
+ "l ament",
+ "▁V AL",
+ "▁ VAL",
+ "Se nd",
+ "S end",
+ "▁Ir ish",
+ "o y",
+ "▁T u",
+ "▁ Tu",
+ "▁t rivial",
+ "Form s",
+ "For ms",
+ "▁as í",
+ "▁Im per",
+ "▁Imp er",
+ "▁sign ature",
+ "un os",
+ "uno s",
+ "u nos",
+ "▁N eg",
+ "▁Ne g",
+ "▁can cel",
+ "▁ cancel",
+ "▁Hein rich",
+ "ee d",
+ "e ed",
+ "Ill ustration",
+ "▁s ulla",
+ "▁su lla",
+ "▁sul la",
+ "▁sull a",
+ "▁qu arter",
+ "▁quart er",
+ "▁quar ter",
+ "as z",
+ "a sz",
+ "▁b log",
+ "▁bl og",
+ "▁blo g",
+ "▁ blog",
+ "fi ca",
+ "fic a",
+ "f ica",
+ "wo n",
+ "w on",
+ "qu et",
+ "que t",
+ "q uet",
+ "]) )",
+ "] ))",
+ "▁gener ation",
+ "▁c aught",
+ "▁ caught",
+ "▁l ands",
+ "▁land s",
+ "▁lan ds",
+ "▁ lands",
+ "▁King dom",
+ "schaft en",
+ "ro ns",
+ "ron s",
+ "r ons",
+ "ann els",
+ "annel s",
+ "anne ls",
+ "▁Spe cial",
+ "▁Spec ial",
+ "▁ Special",
+ "t utorial",
+ "ti p",
+ "t ip",
+ "▁\" \",",
+ "▁\"\" ,",
+ "▁Az ure",
+ "▁ Azure",
+ "▁b ounded",
+ "▁bound ed",
+ "▁ bounded",
+ "S m",
+ "ta r",
+ "t ar",
+ "ве н",
+ "в ен",
+ "▁з ем",
+ "▁зе м",
+ "▁ зем",
+ "▁not ation",
+ "▁ notation",
+ "▁ap ache",
+ "▁ apache",
+ "▁g az",
+ "▁ga z",
+ "ier no",
+ "i erno",
+ "an gen",
+ "ang en",
+ "ange n",
+ "pect ive",
+ "▁elect ric",
+ "▁s emi",
+ "▁se mi",
+ "▁sem i",
+ "MA X",
+ "M AX",
+ "ed erb",
+ "eder b",
+ "ede rb",
+ "object s",
+ "▁dif ferences",
+ "▁differ ences",
+ "▁difference s",
+ "is ted",
+ "ist ed",
+ "iste d",
+ "i sted",
+ "hr ef",
+ "hre f",
+ "h ref",
+ "ic ip",
+ "ici p",
+ "i cip",
+ "▁num py",
+ "▁ numpy",
+ "▁ф утбо",
+ "lo ader",
+ "load er",
+ "▁d ich",
+ "▁di ch",
+ "▁dic h",
+ "љ у",
+ "▁D é",
+ "H z",
+ "▁P aram",
+ "▁Par am",
+ "▁Pa ram",
+ "▁Para m",
+ "▁ Param",
+ "document ation",
+ "ir craft",
+ "irc raft",
+ "E M",
+ "▁inst itution",
+ "▁instit ution",
+ "com pat",
+ "comp at",
+ "▁а ль",
+ "▁ал ь",
+ "▁ аль",
+ "сла в",
+ "с лав",
+ "▁N et",
+ "▁Ne t",
+ "▁ Net",
+ "ци ональ",
+ "цион аль",
+ "циона ль",
+ "▁broad cast",
+ "date time",
+ "dat etime",
+ "as ync",
+ "asy nc",
+ "a sync",
+ "vr e",
+ "v re",
+ "me an",
+ "▁C hem",
+ "▁Ch em",
+ "▁Che m",
+ "▁est imate",
+ "▁estim ate",
+ "ic ana",
+ "ica na",
+ "ican a",
+ "▁g rep",
+ "▁gr ep",
+ "▁gre p",
+ "▁ grep",
+ "te k",
+ "t ek",
+ "ä m",
+ "or ig",
+ "ori g",
+ "o rig",
+ "▁Vict or",
+ "▁Vi ctor",
+ "▁Vic tor",
+ "ut enant",
+ "ute nant",
+ "uten ant",
+ "an ga",
+ "ang a",
+ "pi n",
+ "p in",
+ "▁ver tex",
+ "▁vert ex",
+ "▁verte x",
+ "▁CHAP TER",
+ "ci ty",
+ "cit y",
+ "c ity",
+ "ug by",
+ "gr een",
+ "gre en",
+ "g reen",
+ "▁K er",
+ "▁Ke r",
+ "▁dif fér",
+ "▁diff ér",
+ "▁necess arily",
+ "D C",
+ "Line ar",
+ "Lin ear",
+ "Li near",
+ "al em",
+ "ale m",
+ "a lem",
+ "▁L ater",
+ "▁La ter",
+ "▁Lat er",
+ "▁Late r",
+ "▁m eta",
+ "▁me ta",
+ "▁met a",
+ "▁ meta",
+ "je m",
+ "j em",
+ "ra gen",
+ "rag en",
+ "rage n",
+ "r agen",
+ "Ma y",
+ "M ay",
+ "▁Mitg lied",
+ "▁s orted",
+ "▁sort ed",
+ "▁sor ted",
+ "▁sorte d",
+ "▁ sorted",
+ "us sen",
+ "uss en",
+ "▁sp oke",
+ "▁spo ke",
+ "▁dis abled",
+ "▁disable d",
+ "▁ disabled",
+ "▁accompl ish",
+ "▁accomp lish",
+ "▁Russ ia",
+ "th ere",
+ "ther e",
+ "the re",
+ "t here",
+ "ee s",
+ "e es",
+ "▁h all",
+ "▁ha ll",
+ "▁hal l",
+ "▁ hall",
+ "▁met ric",
+ "▁ metric",
+ "att ribute",
+ "то го",
+ "т ого",
+ "ab out",
+ "▁L am",
+ "▁La m",
+ "ch annel",
+ "chan nel",
+ "▁e pisode",
+ "▁epis ode",
+ "▁$ ('.",
+ "▁$( '.",
+ "▁$(' .",
+ "▁ ought",
+ "▁E ste",
+ "▁Est e",
+ "▁Es te",
+ "Object s",
+ "▁valid ate",
+ "▁ validate",
+ "▁r im",
+ "▁ri m",
+ "▁ rim",
+ "▁numer ous",
+ "▁numero us",
+ "▁J avascript",
+ "▁Java script",
+ "▁G L",
+ "▁ GL",
+ "▁It aly",
+ "▁Ital y",
+ "ederb örd",
+ "on ato",
+ "ona to",
+ "bo oks",
+ "book s",
+ "st one",
+ "ston e",
+ "sto ne",
+ "х у",
+ "▁j el",
+ "▁je l",
+ "▁ jel",
+ "ir i",
+ "i ri",
+ "▁A SP",
+ "▁AS P",
+ "G A",
+ "▁st ata",
+ "▁stat a",
+ "▁sta ta",
+ "▁b az",
+ "▁ba z",
+ "▁ baz",
+ "Da y",
+ "D ay",
+ "th m",
+ "t hm",
+ "d h",
+ "▁F iles",
+ "▁Fil es",
+ "▁File s",
+ "▁ Files",
+ "Android Runtime",
+ "▁che cks",
+ "▁check s",
+ "k r",
+ "▁v enne",
+ "▁ven ne",
+ "S L",
+ "av ia",
+ "avi a",
+ "a via",
+ "ka zy",
+ "kaz y",
+ "k azy",
+ "▁Th ree",
+ "▁ Three",
+ "Ad min",
+ "▁col lege",
+ "▁coll ege",
+ "▁colleg e",
+ "▁colle ge",
+ "G lobal",
+ "ti on",
+ "t ion",
+ "▁cur ious",
+ "sh ort",
+ "▁b ass",
+ "▁bas s",
+ "▁ba ss",
+ "де ла",
+ "▁де я",
+ "Sch ema",
+ "' \\",
+ "di ff",
+ "d iff",
+ "▁C A",
+ "▁ CA",
+ "▁Cor por",
+ "▁oper ators",
+ "▁operator s",
+ "om rå",
+ "▁ed ges",
+ "▁edge s",
+ "); `",
+ ") ;`",
+ "in ds",
+ "ind s",
+ "▁g ing",
+ "▁gi ng",
+ "▁ ging",
+ "& &",
+ "}- \\",
+ "} -\\",
+ "ra no",
+ "ran o",
+ "r ano",
+ "▁s ão",
+ "▁ad ds",
+ "▁add s",
+ "el or",
+ "elo r",
+ "e lor",
+ "▁un signed",
+ "▁uns igned",
+ "▁ unsigned",
+ "▁п р",
+ "▁ пр",
+ "▁Con fig",
+ "▁Conf ig",
+ "▁ Config",
+ "▁E sc",
+ "▁Es c",
+ "▁ch ose",
+ "▁cho se",
+ "▁pie ces",
+ "▁piece s",
+ "▁reg ions",
+ "▁region s",
+ "Es t",
+ "E st",
+ "▁B attle",
+ "▁Batt le",
+ "▁f oc",
+ "▁fo c",
+ "▁L ight",
+ "▁Lig ht",
+ "▁ Light",
+ "pad ding",
+ "p adding",
+ "ab en",
+ "abe n",
+ "a ben",
+ "▁e urop",
+ "▁eu rop",
+ "▁euro p",
+ "il lon",
+ "ill on",
+ "illo n",
+ "▁е сть",
+ "▁b ord",
+ "▁bo rd",
+ "▁bor d",
+ "▁о тно",
+ "▁от но",
+ "▁H ong",
+ "▁Hon g",
+ "▁Ho ng",
+ "▁v ul",
+ "▁vu l",
+ "pl ugins",
+ "plugin s",
+ "▁' <",
+ "▁k ur",
+ "▁ kur",
+ "reg ion",
+ "▁Re pub",
+ "▁Rep ub",
+ "ic her",
+ "ich er",
+ "iche r",
+ "i cher",
+ "}_ \\",
+ "} _\\",
+ "▁me dal",
+ "▁med al",
+ "▁More over",
+ "B I",
+ "A v",
+ "ut er",
+ "ute r",
+ "u ter",
+ "▁s can",
+ "▁sc an",
+ "▁ scan",
+ "▁M unicip",
+ "▁Mun icip",
+ "▁contr ast",
+ "▁contra st",
+ "▁I g",
+ "▁ Ig",
+ "▁го род",
+ "▁горо д",
+ "▁гор од",
+ "▁ город",
+ "rel ated",
+ "al ing",
+ "ali ng",
+ "alin g",
+ "a ling",
+ "▁м ат",
+ "▁ма т",
+ "▁ мат",
+ "ün st",
+ "▁Ch ris",
+ "▁Chr is",
+ "w y",
+ "▁Act ually",
+ "▁Univers idad",
+ "Event Listener",
+ "▁tempor ada",
+ "▁ass ignment",
+ "▁assign ment",
+ "▁M ike",
+ "▁Mi ke",
+ "▁Mik e",
+ "▁w ährend",
+ "▁ś wi",
+ "▁św i",
+ "▁с ред",
+ "▁сре д",
+ "ка де",
+ "▁calcul ated",
+ "▁calculate d",
+ "▁calc ulated",
+ "▁el ler",
+ "▁elle r",
+ "▁ell er",
+ "▁ eller",
+ "▁A sh",
+ "▁As h",
+ "ri el",
+ "rie l",
+ "r iel",
+ "▁hard ware",
+ "▁int ens",
+ "▁inte ns",
+ "▁inten s",
+ "(' .",
+ "( '.",
+ "il li",
+ "ill i",
+ "ag on",
+ "ago n",
+ "a gon",
+ "▁G y",
+ "▁he ute",
+ "▁heut e",
+ "▁s le",
+ "▁sl e",
+ "▁liter ature",
+ "se m",
+ "s em",
+ "man ager",
+ "mana ger",
+ "▁Gr ande",
+ "▁Gra nde",
+ "▁Grand e",
+ "▁Gran de",
+ "▁m ixed",
+ "▁mix ed",
+ "▁В ер",
+ "▁Ве р",
+ "í cí",
+ "▁s oit",
+ "▁so it",
+ "▁wel come",
+ "че ние",
+ "▁Univers ität",
+ "▁bu ilder",
+ "▁build er",
+ "▁ builder",
+ "sim ple",
+ "simp le",
+ "ic ode",
+ "ico de",
+ "i code",
+ "ř e",
+ "in dent",
+ "ind ent",
+ "inden t",
+ "inde nt",
+ "op o",
+ "o po",
+ "▁ad vanced",
+ "▁adv anced",
+ "▁advance d",
+ "tem per",
+ "temp er",
+ "ed ge",
+ "▁dat etime",
+ "▁date time",
+ "▁ datetime",
+ "▁d onc",
+ "▁do nc",
+ "▁don c",
+ "ла ння",
+ "лан ня",
+ "▁v erd",
+ "▁ver d",
+ "▁ve rd",
+ "д но",
+ "it os",
+ "ito s",
+ "▁he at",
+ "vi sible",
+ "vis ible",
+ "me l",
+ "m el",
+ "▁Giov anni",
+ "▁var iety",
+ "▁vari ety",
+ "▁r outer",
+ "▁ro uter",
+ "▁route r",
+ "▁rout er",
+ "▁rou ter",
+ "▁ router",
+ "Vec tor",
+ "V ector",
+ "▁W alk",
+ "▁Wal k",
+ "▁ob viously",
+ "▁obvious ly",
+ "he in",
+ "h ein",
+ "Fi n",
+ "F in",
+ "ITable View",
+ "Y ear",
+ "▁E conom",
+ "▁vel ocity",
+ "▁veloc ity",
+ "▁C ivil",
+ "▁Ci vil",
+ "▁ ј",
+ "al ert",
+ "ale rt",
+ "aler t",
+ "Ident ifier",
+ "èn cia",
+ "▁normal ly",
+ "▁norm ally",
+ "▁E gypt",
+ "▁Egy pt",
+ "▁c tx",
+ "▁ ctx",
+ "▁Ver ein",
+ "▁Vere in",
+ "▁H u",
+ "ult ure",
+ "ultur e",
+ "ни те",
+ "l é",
+ "▁W ien",
+ "▁Wi en",
+ "▁Wie n",
+ "▁P rz",
+ "▁Pr z",
+ "By te",
+ "▁n ah",
+ "▁na h",
+ "▁ nah",
+ "is ms",
+ "ism s",
+ "▁Pub lish",
+ "▁He rz",
+ "▁Her z",
+ "ic ul",
+ "i cul",
+ "pis ode",
+ "ч і",
+ "▁die sem",
+ "▁dies em",
+ "▁diese m",
+ "k ö",
+ "Vis ible",
+ "▁r ig",
+ "▁ri g",
+ "▁ rig",
+ "`) .",
+ "` ).",
+ "Par se",
+ "P arse",
+ "▁Jac ques",
+ "N I",
+ "▁g lass",
+ "▁gl ass",
+ "▁gla ss",
+ "▁ glass",
+ "-- -+",
+ "--- +",
+ "- --+",
+ "▁initial ly",
+ "▁initi ally",
+ "▁k r",
+ "▁ kr",
+ "CC N",
+ "C CN",
+ "pl ays",
+ "play s",
+ "pla ys",
+ "▁s igu",
+ "▁si gu",
+ "▁sig u",
+ "F older",
+ "st orage",
+ "sto rage",
+ "stor age",
+ "▁\\ |",
+ "▁ \\|",
+ "iv os",
+ "ivo s",
+ "i vos",
+ "ск ую",
+ "ску ю",
+ "▁M oh",
+ "▁Mo h",
+ "▁Comm ittee",
+ "▁K im",
+ "▁Ki m",
+ "e u",
+ "те м",
+ "т ем",
+ "▁orig inale",
+ "▁original e",
+ "▁origin ale",
+ "ir s",
+ "i rs",
+ "▁R eb",
+ "▁Re b",
+ "it ut",
+ "itu t",
+ "n l",
+ "▁P ier",
+ "▁Pi er",
+ "▁Pie r",
+ "▁] ;",
+ "▁ ];",
+ "▁F al",
+ "▁Fa l",
+ "▁\" \";",
+ "▁\"\" ;",
+ "mv c",
+ "m vc",
+ "▁fe male",
+ "▁fem ale",
+ "▁b ridge",
+ "▁br idge",
+ "▁brid ge",
+ "▁ bridge",
+ "▁t ít",
+ "kt r",
+ "k tr",
+ "> )",
+ "▁se at",
+ "▁sea t",
+ "▁v ess",
+ "▁ve ss",
+ "▁ves s",
+ "▁U SB",
+ "▁US B",
+ "▁Art icles",
+ "▁Article s",
+ "▁De scription",
+ "▁Des cription",
+ "▁Descri ption",
+ "▁ Description",
+ "▁o c",
+ "▁ oc",
+ "▁h ouses",
+ "▁house s",
+ "▁ho uses",
+ "▁hous es",
+ "▁П ет",
+ "▁Пе т",
+ "lo n",
+ "l on",
+ "Not ification",
+ "▁press ure",
+ "▁ку ль",
+ "▁ куль",
+ "ig ned",
+ "ign ed",
+ "igne d",
+ "▁relig ious",
+ "fa n",
+ "f an",
+ "ig lia",
+ "igli a",
+ "▁class ification",
+ "▁classific ation",
+ "og ether",
+ "oge ther",
+ "▁S DK",
+ "▁SD K",
+ "▁ SDK",
+ "▁H uman",
+ "▁Hu man",
+ "▁Hum an",
+ "▁com mission",
+ "▁comm ission",
+ "▁О р",
+ "▁an tes",
+ "▁ant es",
+ "▁ante s",
+ "▁ antes",
+ "D T",
+ "èt e",
+ "è te",
+ "pr és",
+ "p rés",
+ "/ \"",
+ "▁( «",
+ "▁h ö",
+ "▁ hö",
+ "▁ча с",
+ "▁ час",
+ "▁j ak",
+ "▁ja k",
+ "▁ jak",
+ "ie nen",
+ "ien en",
+ "iene n",
+ "i enen",
+ "ug g",
+ "u gg",
+ "W A",
+ "▁place holder",
+ "▁ placeholder",
+ "Wil l",
+ "W ill",
+ ", ,",
+ "▁K am",
+ "▁Ka m",
+ "▁w en",
+ "▁we n",
+ "▁ wen",
+ "▁Sch ul",
+ "ți e",
+ "ț ie",
+ "▁a ud",
+ "▁au d",
+ "▁ aud",
+ "▁s ue",
+ "▁su e",
+ "▁re ferred",
+ "▁refer red",
+ "ва т",
+ "в ат",
+ "▁P ara",
+ "▁Par a",
+ "▁Pa ra",
+ "▁b la",
+ "▁bl a",
+ "▁ bla",
+ "UE S",
+ "U ES",
+ "▁stat ist",
+ "▁stati st",
+ "▁т у",
+ "▁ ту",
+ "▁Wars za",
+ "gu e",
+ "g ue",
+ "▁I de",
+ "▁Id e",
+ "math scr",
+ "▁l ieu",
+ "▁li eu",
+ "▁lie u",
+ "▁b od",
+ "▁bo d",
+ "▁r us",
+ "▁ru s",
+ "▁ rus",
+ "▁bo at",
+ "xs pace",
+ "x space",
+ "▁mod al",
+ "▁mo dal",
+ "▁ modal",
+ "ле к",
+ "л ек",
+ "to pic",
+ "top ic",
+ "ma ny",
+ "man y",
+ "m any",
+ "sk ý",
+ "▁organ ization",
+ "▁organiz ation",
+ "▁г ене",
+ "▁ге не",
+ "▁Wil son",
+ "▁com fort",
+ "ib il",
+ "i bil",
+ ": -",
+ "▁an imal",
+ "▁anim al",
+ "▁ani mal",
+ "Re port",
+ "Rep ort",
+ "ка ми",
+ "кам и",
+ "jo n",
+ "j on",
+ "▁k er",
+ "▁ke r",
+ "▁ ker",
+ "▁к ни",
+ "moz illa",
+ "Pr ice",
+ "P rice",
+ "ant in",
+ "anti n",
+ "em ento",
+ "ement o",
+ "emen to",
+ "ma y",
+ "m ay",
+ "▁l ung",
+ "▁lu ng",
+ "▁lun g",
+ "▁ lung",
+ "▁b low",
+ "▁bl ow",
+ "▁blo w",
+ "ede ut",
+ "▁type d",
+ "▁typ ed",
+ "▁ty ped",
+ "▁dec ember",
+ "▁. ...",
+ "▁... .",
+ "▁.. ..",
+ "▁ ....",
+ "li ance",
+ "l iance",
+ "▁v iel",
+ "▁vi el",
+ "▁vie l",
+ "▁Ф и",
+ "pr esa",
+ "pre sa",
+ "pres a",
+ "▁ос іб",
+ "▁N am",
+ "▁Na m",
+ "▁G ren",
+ "▁Gr en",
+ "▁Gre n",
+ "си лання",
+ "VI D",
+ "V ID",
+ "st re",
+ "str e",
+ "s tre",
+ "we is",
+ "wei s",
+ "▁prote ction",
+ "▁protect ion",
+ "▁prot ection",
+ "ta ient",
+ "t aient",
+ "▁offic ers",
+ "▁office rs",
+ "▁officer s",
+ "т но",
+ "▁B rig",
+ "▁Br ig",
+ "▁int ellig",
+ "▁intel lig",
+ "я х",
+ "IT H",
+ "I TH",
+ "▁separ ated",
+ "▁separate d",
+ "▁L CCN",
+ "ní m",
+ "n ím",
+ "cl ock",
+ "clo ck",
+ "c lock",
+ "▁ap are",
+ "▁apar e",
+ "яв и",
+ "я ви",
+ "▁Eliz abeth",
+ "▁W ater",
+ "▁Wat er",
+ "▁Wa ter",
+ "geb iet",
+ "▁con vent",
+ "▁conv ent",
+ "▁conven t",
+ "fu rt",
+ "fur t",
+ "f urt",
+ "▁be iden",
+ "▁bei den",
+ "▁beide n",
+ "ba sh",
+ "bas h",
+ "b ash",
+ "▁че рез",
+ "▁чер ез",
+ "▁u b",
+ "▁ ub",
+ "▁Stat ist",
+ "▁Stati st",
+ "▁lim its",
+ "▁limit s",
+ "▁ limits",
+ "V ol",
+ "ct x",
+ "c tx",
+ "▁но в",
+ "▁н ов",
+ "▁ нов",
+ "gu ide",
+ "gui de",
+ "mi c",
+ "m ic",
+ "ie sa",
+ "ies a",
+ "i esa",
+ "▁h uvud",
+ "R T",
+ "Fi g",
+ "F ig",
+ "▁l ect",
+ "▁le ct",
+ "▁ lect",
+ "con n",
+ "co nn",
+ "c onn",
+ "im it",
+ "imi t",
+ "i mit",
+ "га р",
+ "г ар",
+ "▁b ajo",
+ "▁ba jo",
+ "scri be",
+ "scr ibe",
+ "s cribe",
+ "re gex",
+ "reg ex",
+ "▁C ass",
+ "▁Cas s",
+ "▁Ca ss",
+ "▁pro pag",
+ "▁prop ag",
+ "' $",
+ "▁prof es",
+ "un ique",
+ "uni que",
+ "▁S ql",
+ "▁ Sql",
+ "un ion",
+ "uni on",
+ "ri os",
+ "rio s",
+ "r ios",
+ "pi p",
+ "p ip",
+ "-- +",
+ "- -+",
+ "ka dem",
+ "k adem",
+ "column s",
+ "▁v ary",
+ "▁var y",
+ "▁va ry",
+ "▁bere its",
+ "▁d oi",
+ "▁do i",
+ "▁Com mon",
+ "▁Comm on",
+ "▁ Common",
+ "▁Ro bin",
+ "▁Rob in",
+ "▁ ×",
+ "▁s ei",
+ "▁se i",
+ "▁s yst",
+ "▁sy st",
+ "▁sys t",
+ "▁v ä",
+ "▁ vä",
+ "▁De fault",
+ "▁Def ault",
+ "▁ Default",
+ "▁t ym",
+ "▁ty m",
+ "pe l",
+ "p el",
+ "▁bel ieved",
+ "▁believe d",
+ "▁pro vider",
+ "▁prov ider",
+ "▁provide r",
+ "▁ provider",
+ "▁min imal",
+ "▁minim al",
+ "▁mini mal",
+ "та ли",
+ "тал и",
+ "т али",
+ "ain es",
+ "ai nes",
+ "aine s",
+ "a ines",
+ "K it",
+ "iz io",
+ "izi o",
+ "is sen",
+ "iss en",
+ "isse n",
+ "pr essed",
+ "press ed",
+ "pres sed",
+ "▁s tag",
+ "▁st ag",
+ "▁sta g",
+ "▁ stag",
+ "▁u int",
+ "▁ui nt",
+ "▁ uint",
+ "ko r",
+ "k or",
+ "▁ра спо",
+ "▁рас по",
+ "▁in herit",
+ "▁inher it",
+ "▁comp iled",
+ "▁compile d",
+ "▁f ebru",
+ "▁fe bru",
+ "▁feb ru",
+ "▁t mp",
+ "▁tm p",
+ "▁ tmp",
+ "work s",
+ "wor ks",
+ "ч на",
+ "draw able",
+ "▁N av",
+ "▁Na v",
+ "▁ Nav",
+ "▁though ts",
+ "▁thought s",
+ "ro ute",
+ "rout e",
+ "rou te",
+ "r oute",
+ "▁con cert",
+ "▁conc ert",
+ "▁conce rt",
+ "▁option al",
+ "▁opt ional",
+ "▁ optional",
+ "▁b ras",
+ "▁br as",
+ "▁bra s",
+ "▁ bras",
+ "▁prov iding",
+ "со м",
+ "с ом",
+ "id x",
+ "i dx",
+ "emp lo",
+ "empl o",
+ "▁ко ли",
+ "▁ коли",
+ "▁B ere",
+ "▁Be re",
+ "▁Ber e",
+ "▁E ls",
+ "▁El s",
+ "ре мен",
+ "рем ен",
+ "▁де ка",
+ "co ut",
+ "cou t",
+ "c out",
+ "la yer",
+ "lay er",
+ "l ayer",
+ "▁g lob",
+ "▁gl ob",
+ "▁glo b",
+ "▁ glob",
+ "fore ach",
+ "for each",
+ "▁E ducation",
+ "▁Edu cation",
+ "P O",
+ "▁im prov",
+ "▁imp rov",
+ "▁impro v",
+ "▁impr ov",
+ "▁cl ients",
+ "▁client s",
+ "▁cli ents",
+ "gr oups",
+ "group s",
+ "gro ups",
+ "▁k ont",
+ "▁kon t",
+ "▁ko nt",
+ "De l",
+ "D el",
+ "re tt",
+ "ret t",
+ "r ett",
+ "▁s up",
+ "▁su p",
+ "▁ sup",
+ "▁m og",
+ "▁mo g",
+ "ta n",
+ "t an",
+ "▁com pl",
+ "▁comp l",
+ "ir ty",
+ "irt y",
+ "▁nouve au",
+ "os z",
+ "o sz",
+ "▁N avy",
+ "▁Na vy",
+ "▁Nav y",
+ "ber e",
+ "be re",
+ "b ere",
+ "ma sk",
+ "mas k",
+ "m ask",
+ "ov é",
+ "o vé",
+ "zi l",
+ "z il",
+ "PE R",
+ "P ER",
+ "▁pobla ción",
+ "▁població n",
+ "▁d etailed",
+ "▁detail ed",
+ "ле т",
+ "л ет",
+ "▁famil ies",
+ "▁familie s",
+ "ab et",
+ "abe t",
+ "a bet",
+ "е вич",
+ "änd er",
+ "än der",
+ "ände r",
+ "ä nder",
+ "▁å r",
+ "▁ år",
+ "▁p endant",
+ "▁b il",
+ "▁bi l",
+ "▁ bil",
+ "▁h int",
+ "▁hi nt",
+ "▁hin t",
+ "ode n",
+ "od en",
+ "o den",
+ "▁exp ansion",
+ "▁p ont",
+ "▁po nt",
+ "▁pon t",
+ "▁ pont",
+ "as ant",
+ "asa nt",
+ "▁K ind",
+ "▁Ki nd",
+ "▁Kin d",
+ "▁ Kind",
+ "ij i",
+ "i ji",
+ "▁A uth",
+ "▁Aut h",
+ "▁Au th",
+ "▁ Auth",
+ "laim ed",
+ "ref lect",
+ "] =",
+ "by tes",
+ "byte s",
+ "ho ver",
+ "hov er",
+ "h over",
+ "▁ц ер",
+ "▁це р",
+ "▁ цер",
+ "grad le",
+ "Ar ch",
+ "ap est",
+ "ape st",
+ "apes t",
+ "ás a",
+ "á sa",
+ "Car d",
+ "Ca rd",
+ "C ard",
+ "▁tempor ary",
+ "▁départ ement",
+ "class es",
+ "жи ва",
+ "▁х удо",
+ "▁m ole",
+ "▁mo le",
+ "▁mol e",
+ "R Y",
+ "L P",
+ "▁p ec",
+ "▁pe c",
+ "▁ pec",
+ "rodu ction",
+ "▁Gu ard",
+ "▁Par liament",
+ "▁inst anti",
+ "▁instant i",
+ "▁not amment",
+ "▁D oug",
+ "▁Do ug",
+ "▁Dou g",
+ "▁Mar sh",
+ "▁Mars h",
+ ". ~",
+ "▁\\ \"",
+ "▁ \\\"",
+ "▁t hé",
+ "▁th é",
+ "▁li bre",
+ "▁lib re",
+ "do es",
+ "▁dé but",
+ "▁U nit",
+ "▁Un it",
+ "▁ Unit",
+ "▁с ту",
+ "▁ст у",
+ "▁ сту",
+ "▁le ague",
+ "▁qu ale",
+ "▁q uale",
+ "▁qual e",
+ "▁состав ля",
+ "▁соста вля",
+ "Se curity",
+ "Sec urity",
+ "▁appar ently",
+ "▁apparent ly",
+ "▁tro ops",
+ "ic ano",
+ "ica no",
+ "ican o",
+ "i cano",
+ "▁M B",
+ "▁ MB",
+ "en ze",
+ "enz e",
+ "lo ading",
+ "load ing",
+ "▁dist ributed",
+ "▁distribu ted",
+ "▁distrib uted",
+ "write r",
+ "writ er",
+ "wr iter",
+ "w riter",
+ "res ources",
+ "resource s",
+ "h ö",
+ "ut ils",
+ "util s",
+ "uti ls",
+ "▁prep ared",
+ "▁prepar ed",
+ "▁prepare d",
+ "ci er",
+ "cie r",
+ "c ier",
+ "op ol",
+ "opo l",
+ "o pol",
+ "▁län kar",
+ "he s",
+ "h es",
+ "н ва",
+ "▁op ens",
+ "▁open s",
+ "▁ opens",
+ "ag og",
+ "ago g",
+ "inter face",
+ "▁F und",
+ "▁Fu nd",
+ "▁Fun d",
+ "▁pent ru",
+ "ní ch",
+ "n ích",
+ "▁config ured",
+ "▁configure d",
+ "▁configur ed",
+ "▁Web site",
+ "▁list ener",
+ "▁listen er",
+ "▁liste ner",
+ "▁ listener",
+ "iv el",
+ "ive l",
+ "i vel",
+ "n ę",
+ "min a",
+ "mi na",
+ "m ina",
+ "▁in vest",
+ "▁inv est",
+ "▁inve st",
+ "▁м іс",
+ "▁мі с",
+ "▁d av",
+ "▁da v",
+ "▁p atch",
+ "▁pat ch",
+ "▁ patch",
+ "pi eler",
+ "piel er",
+ "pie ler",
+ "▁Ext erna",
+ "▁Extern a",
+ "t f",
+ "▁e red",
+ "▁er ed",
+ "▁ere d",
+ "▁ ered",
+ "▁Ass embly",
+ "▁ Assembly",
+ "▁s out",
+ "▁so ut",
+ "▁sou t",
+ "▁v erk",
+ "▁ver k",
+ "▁ verk",
+ "me rs",
+ "mer s",
+ "m ers",
+ "t oggle",
+ "▁up dating",
+ "▁upd ating",
+ "▁K ent",
+ "▁Ke nt",
+ "▁Ken t",
+ "ec a",
+ "e ca",
+ "FA ULT",
+ "▁tit re",
+ "▁ti tre",
+ "▁K enn",
+ "▁Ke nn",
+ "▁Ken n",
+ "▁Ми ха",
+ "ст ор",
+ "сто р",
+ "с тор",
+ "▁p ode",
+ "▁po de",
+ "▁pod e",
+ "▁S eb",
+ "▁Se b",
+ "це в",
+ "ц ев",
+ "E Y",
+ "▁sil ver",
+ "▁cap acity",
+ "▁capac ity",
+ "▁comple tion",
+ "▁complet ion",
+ "▁Pe dro",
+ "▁Ped ro",
+ "fe l",
+ "f el",
+ "va no",
+ "van o",
+ "v ano",
+ "ze ug",
+ "▁in terior",
+ "▁inter ior",
+ "▁inte rior",
+ "▁Res ponse",
+ "▁ Response",
+ "éd ia",
+ "é dia",
+ "▁World Cat",
+ "▁c ă",
+ "qu el",
+ "que l",
+ "q uel",
+ "So l",
+ "S ol",
+ "іс ля",
+ "▁D omin",
+ "▁Do min",
+ "▁Dom in",
+ "▁c um",
+ "▁cu m",
+ "ce p",
+ "c ep",
+ "▁M use",
+ "▁Mus e",
+ "▁Mu se",
+ "▁M aría",
+ "▁Mar ía",
+ "▁Ma ría",
+ "▁function al",
+ "▁ad apter",
+ "▁adapt er",
+ "▁ adapter",
+ "config uration",
+ "▁t ipo",
+ "▁tip o",
+ "▁ti po",
+ "▁B ry",
+ "▁Br y",
+ "v y",
+ "U L",
+ "▁tra vers",
+ "▁trav ers",
+ "! (",
+ "▁absol utely",
+ "▁absolute ly",
+ "л та",
+ "тт я",
+ "т тя",
+ "▁I T",
+ "▁ IT",
+ "▁во ен",
+ "yc le",
+ "y cle",
+ "be st",
+ "bes t",
+ "b est",
+ "▁construct ed",
+ "▁constru cted",
+ "▁фи ль",
+ "▁ филь",
+ "ci do",
+ "cid o",
+ "c ido",
+ "ex it",
+ "ga rt",
+ "gar t",
+ "g art",
+ "▁provin cia",
+ "ve z",
+ "v ez",
+ "ci pl",
+ "cip l",
+ "▁Face book",
+ "▁Fac ebook",
+ "▁y ellow",
+ "▁ yellow",
+ "▁Sum mer",
+ "▁point ing",
+ "▁poss ibility",
+ "▁possib ility",
+ "▁possibil ity",
+ "▁leg isl",
+ "▁мо ж",
+ "▁ мож",
+ "de rn",
+ "der n",
+ "d ern",
+ "ко но",
+ "кон о",
+ "▁mechan ism",
+ "▁Bern ard",
+ "ex pr",
+ "exp r",
+ "ло ви",
+ "лов и",
+ "л ови",
+ "▁dig its",
+ "▁digit s",
+ "▁de legate",
+ "▁deleg ate",
+ "▁ delegate",
+ "og ram",
+ "o gram",
+ "▁D ictionary",
+ "▁ Dictionary",
+ "is y",
+ "▁s po",
+ "▁sp o",
+ "/ $",
+ "clude d",
+ "clud ed",
+ "▁M VC",
+ "▁t ém",
+ "▁té m",
+ "▁print ed",
+ "▁prin ted",
+ "▁G ott",
+ "▁Go tt",
+ "▁Got t",
+ "▁O m",
+ "▁ Om",
+ "ans as",
+ "▁D urch",
+ "▁Dur ch",
+ "▁I dent",
+ "▁Id ent",
+ "▁Ide nt",
+ "▁ Ident",
+ "Q U",
+ "ht m",
+ "h tm",
+ "▁S ul",
+ "▁Su l",
+ "'] .",
+ "' ].",
+ "▁du ty",
+ "▁dut y",
+ "▁Aut hor",
+ "▁Auth or",
+ "▁ Author",
+ "▁n ě",
+ "▁ ně",
+ "ow ego",
+ "owe go",
+ "pu s",
+ "p us",
+ "em bl",
+ "emb l",
+ "Exec utor",
+ "B L",
+ "▁M ens",
+ "▁Me ns",
+ "▁Men s",
+ "dis patch",
+ "▁M id",
+ "▁Mi d",
+ "ap ps",
+ "app s",
+ "Trans form",
+ "▁D at",
+ "▁Da t",
+ "▁ Dat",
+ "▁im pl",
+ "▁imp l",
+ "▁ impl",
+ "ou x",
+ "o ux",
+ "ho lm",
+ "hol m",
+ "▁I ns",
+ "▁In s",
+ "▁Emp ire",
+ "ру п",
+ "▁Ap ache",
+ "SI ON",
+ "S ION",
+ "▁pass age",
+ "######## ########",
+ "▁ex pressed",
+ "▁express ed",
+ "▁expr essed",
+ "▁expres sed",
+ "на д",
+ "▁o l",
+ "▁ ol",
+ "▁h avia",
+ "▁ha via",
+ "▁hav ia",
+ "▁бо лее",
+ "▁enjo y",
+ "form ance",
+ "▁dim ensions",
+ "▁dimension s",
+ "▁ч ер",
+ "▁че р",
+ "▁ чер",
+ "Se e",
+ "S ee",
+ "▁m outh",
+ "▁mo uth",
+ "▁mou th",
+ "▁ mouth",
+ "▁g au",
+ "▁ga u",
+ "ien cy",
+ "i ency",
+ "▁Carol ina",
+ "Dis t",
+ "Di st",
+ "D ist",
+ "rad io",
+ "li mit",
+ "lim it",
+ "l imit",
+ "/ ?",
+ "▁B all",
+ "▁Ba ll",
+ "▁Bal l",
+ "ні сть",
+ "Mem ber",
+ "M ember",
+ "wa ter",
+ "w ater",
+ "▁mur der",
+ "▁stand ing",
+ "▁stan ding",
+ "▁ standing",
+ "▁V II",
+ "▁VI I",
+ "Cent er",
+ "C enter",
+ "pp a",
+ "p pa",
+ "ur eau",
+ "ure au",
+ "▁Le ip",
+ "▁ob jet",
+ "▁obj et",
+ "▁Act ivity",
+ "▁Activ ity",
+ "▁ Activity",
+ "em bers",
+ "ember s",
+ "emb ers",
+ "v r",
+ "▁con du",
+ "▁cond u",
+ "Cell s",
+ "C ells",
+ "in us",
+ "inu s",
+ "▁' ,",
+ "▁ ',",
+ "▁af raid",
+ "▁х а",
+ "▁ ха",
+ "▁V ic",
+ "▁Vi c",
+ "test ing",
+ "tes ting",
+ "Tu be",
+ "T ube",
+ "▁v ast",
+ "▁va st",
+ "▁vas t",
+ "P M",
+ "ni h",
+ "n ih",
+ "SS N",
+ "S SN",
+ "▁Ch ile",
+ "▁Chi le",
+ "yl van",
+ "▁B ow",
+ "▁Bo w",
+ "▁relig ion",
+ "op her",
+ "oph er",
+ "ophe r",
+ "o pher",
+ "▁C oll",
+ "▁Col l",
+ "▁Co ll",
+ "▁ Coll",
+ "▁dig ital",
+ "▁digit al",
+ "zi oni",
+ "z ioni",
+ "Se ction",
+ "Sec tion",
+ "S ection",
+ "▁резу льта",
+ "Foo t",
+ "F oot",
+ "con vert",
+ "conv ert",
+ "▁rece iving",
+ "Cont act",
+ "▁h ero",
+ "▁he ro",
+ "▁her o",
+ "sa m",
+ "s am",
+ "▁pos terior",
+ "▁poster ior",
+ "▁poste rior",
+ "ow i",
+ "o wi",
+ "An t",
+ "A nt",
+ "▁fl ags",
+ "▁flag s",
+ "▁fla gs",
+ "▁ flags",
+ "▁Ze aland",
+ "▁b ounds",
+ "▁bound s",
+ "▁ bounds",
+ "▁where as",
+ "▁whe reas",
+ "in fl",
+ "inf l",
+ "Pl ay",
+ "P lay",
+ "▁d emo",
+ "▁de mo",
+ "▁dem o",
+ "▁ demo",
+ "▁g ibt",
+ "▁gi bt",
+ "▁h ospital",
+ "▁hosp ital",
+ "▁v olta",
+ "▁vol ta",
+ "▁volt a",
+ "л ё",
+ "▁f ashion",
+ "▁ex ceed",
+ "▁exc eed",
+ "el enium",
+ "elen ium",
+ "It er",
+ "I ter",
+ "kr ie",
+ "k rie",
+ "▁integr ation",
+ "▁integra tion",
+ "▁ integration",
+ "▁Other wise",
+ "ad u",
+ "a du",
+ "Sh e",
+ "S he",
+ "on de",
+ "ond e",
+ "o nde",
+ "ui nt",
+ "u int",
+ "rad ius",
+ "▁r am",
+ "▁ra m",
+ "▁ ram",
+ "▁ál bum",
+ "▁т ур",
+ "▁ту р",
+ "▁ тур",
+ "▁d y",
+ "▁ dy",
+ "▁O tt",
+ "▁Ot t",
+ "▁пер и",
+ "▁пе ри",
+ "re v",
+ "r ev",
+ "ri or",
+ "rio r",
+ "r ior",
+ "í d",
+ "ir at",
+ "ira t",
+ "i rat",
+ "▁в клю",
+ "▁import ante",
+ "▁important e",
+ "▁Du ke",
+ "▁caus a",
+ "▁ca usa",
+ "▁Math emat",
+ "▁di plom",
+ "▁N icol",
+ "▁Nic ol",
+ "▁Ni col",
+ "▁ex clus",
+ "▁exc lus",
+ "▁debug ging",
+ "▁G h",
+ "or iginal",
+ "origin al",
+ "orig inal",
+ "ly n",
+ "l yn",
+ "▁P la",
+ "▁Pl a",
+ "su ite",
+ "suit e",
+ "ch at",
+ "cha t",
+ "c hat",
+ "▁e stud",
+ "▁est ud",
+ "ue lle",
+ "uel le",
+ "u elle",
+ "▁p ert",
+ "▁per t",
+ "▁pe rt",
+ "▁ pert",
+ "▁import ance",
+ "▁appro aches",
+ "▁approach es",
+ "▁d la",
+ "▁про ф",
+ "Pr es",
+ "Pre s",
+ "P res",
+ "< \\",
+ "pre fix",
+ "p refix",
+ "SS ION",
+ "S SION",
+ "ро ди",
+ "род и",
+ "count ry",
+ "c ountry",
+ "it zer",
+ "itz er",
+ "▁ко р",
+ "▁к ор",
+ "▁ кор",
+ "▁sing ular",
+ "go v",
+ "g ov",
+ "ри н",
+ "р ин",
+ "▁F A",
+ "▁ FA",
+ "▁mat rices",
+ "ol are",
+ "ola re",
+ "olar e",
+ "o lare",
+ "ni ka",
+ "nik a",
+ "n ika",
+ "po wer",
+ "pow er",
+ "p ower",
+ "ll a",
+ "l la",
+ "▁des ire",
+ "▁famil ia",
+ "▁fam ilia",
+ "до р",
+ "д ор",
+ "▁f an",
+ "▁fa n",
+ "▁ fan",
+ "gener ated",
+ "generate d",
+ "▁C os",
+ "▁Co s",
+ "▁ż e",
+ "▁ że",
+ "▁D iese",
+ "▁Die se",
+ "▁Di ese",
+ "▁Dies e",
+ "mo v",
+ "m ov",
+ "▁de note",
+ "▁den ote",
+ "\") ]",
+ "\" )]",
+ "ou vern",
+ "ouv ern",
+ "ouve rn",
+ "ouver n",
+ "am an",
+ "ama n",
+ "a man",
+ "▁in ser",
+ "▁ins er",
+ "▁inse r",
+ "ij k",
+ "i jk",
+ "ot ta",
+ "ott a",
+ "o tta",
+ "er al",
+ "era l",
+ "e ral",
+ "де ль",
+ "д ель",
+ "() ->",
+ "( )->",
+ "▁p oder",
+ "▁po der",
+ "▁pod er",
+ "▁pode r",
+ "ig es",
+ "ige s",
+ "i ges",
+ "▁On line",
+ "▁we ird",
+ "ia c",
+ "i ac",
+ "▁quel ques",
+ "▁quelque s",
+ "ère nt",
+ "è rent",
+ "▁t el",
+ "▁te l",
+ "▁ tel",
+ "▁L atin",
+ "▁Lat in",
+ "ver ter",
+ "vert er",
+ "verte r",
+ "ля р",
+ "ро и",
+ "▁p df",
+ "▁pd f",
+ "▁ pdf",
+ "▁key word",
+ "▁ keyword",
+ "Hand le",
+ "A fter",
+ "re ce",
+ "rec e",
+ "▁ident ical",
+ "style sheet",
+ "styles heet",
+ "▁стан ови",
+ "▁станов и",
+ "▁k a",
+ "▁ ka",
+ "ce ment",
+ "cem ent",
+ "c ement",
+ "те т",
+ "т ет",
+ "▁c hat",
+ "▁ch at",
+ "▁cha t",
+ "▁ chat",
+ "▁M un",
+ "▁Mu n",
+ "ał a",
+ "a ła",
+ "AN T",
+ "A NT",
+ "ol óg",
+ "▁f ant",
+ "▁fa nt",
+ "▁fan t",
+ "▁for est",
+ "▁fo rest",
+ "▁fore st",
+ "▁ви ко",
+ "cu ss",
+ "cus s",
+ "c uss",
+ "▁se hr",
+ "pa g",
+ "p ag",
+ "ot ic",
+ "oti c",
+ "▁á ll",
+ "▁ál l",
+ "▁ áll",
+ "ма ти",
+ "мат и",
+ "▁\" '",
+ "+ \"",
+ "An imation",
+ "Anim ation",
+ "ходи т",
+ "ход ит",
+ "az u",
+ "a zu",
+ "▁pl ays",
+ "▁play s",
+ "▁pla ys",
+ "▁ plays",
+ "iz ioni",
+ "izi oni",
+ "izio ni",
+ "i zioni",
+ "ми че",
+ "▁b omb",
+ "▁bo mb",
+ "▁bom b",
+ "▁mer ely",
+ "▁mere ly",
+ "▁hold ing",
+ "▁hol ding",
+ "▁w enn",
+ "▁we nn",
+ "▁wen n",
+ "▁m edic",
+ "▁me dic",
+ "▁med ic",
+ "▁medi c",
+ "▁spe aking",
+ "▁speak ing",
+ "ong odb",
+ "ongo db",
+ "▁Cam pe",
+ "▁Camp e",
+ "in ity",
+ "ini ty",
+ "init y",
+ "▁я нва",
+ "() `.",
+ "()` .",
+ "( )`.",
+ "lu ss",
+ "lus s",
+ "l uss",
+ "▁H istoire",
+ "▁His toire",
+ "▁Hist oire",
+ "▁oper ating",
+ "▁opera ting",
+ "Ch annel",
+ "▁accur acy",
+ "▁b os",
+ "▁bo s",
+ "▁ bos",
+ "▁ev ident",
+ "ци ю",
+ "event s",
+ "ev ents",
+ "even ts",
+ "text rm",
+ "or eign",
+ "ore ign",
+ "▁i i",
+ "▁ ii",
+ "hr en",
+ "hre n",
+ "h ren",
+ "lo wer",
+ "low er",
+ "l ower",
+ "▁т ом",
+ "▁то м",
+ "▁ том",
+ "▁Ab out",
+ "▁ About",
+ "▁a j",
+ "▁ aj",
+ "er i",
+ "e ri",
+ "сту пи",
+ "ступ и",
+ "▁di git",
+ "▁dig it",
+ "▁ digit",
+ "▁Sp ain",
+ "▁D aten",
+ "▁Date n",
+ "▁Da ten",
+ "▁Dat en",
+ "▁for me",
+ "▁form e",
+ "▁ш та",
+ "▁ шта",
+ "▁B ach",
+ "▁Ba ch",
+ "▁Bac h",
+ "no number",
+ "non umber",
+ "▁recomm ended",
+ "▁recommend ed",
+ "▁re ads",
+ "▁read s",
+ "his toire",
+ "h istoire",
+ "▁s ang",
+ "▁sa ng",
+ "▁san g",
+ "▁? ?",
+ "▁ ??",
+ "▁с тал",
+ "▁ст ал",
+ "▁ста л",
+ "sc ore",
+ "s core",
+ "fa s",
+ "f as",
+ "▁c ub",
+ "▁cu b",
+ "▁g rew",
+ "▁gr ew",
+ "▁gre w",
+ "▁cent ro",
+ "▁bek annt",
+ "Event s",
+ "BE R",
+ "B ER",
+ "he w",
+ "h ew",
+ "сс а",
+ "с са",
+ "▁major ity",
+ "ît re",
+ "î tre",
+ "en ci",
+ "enc i",
+ "▁Qu ery",
+ "▁Que ry",
+ "▁ Query",
+ "▁któ re",
+ "i ć",
+ "▁complex ity",
+ "▁Fran çois",
+ "const raint",
+ "ур на",
+ "═ ═",
+ "▁iter ate",
+ "le tt",
+ "let t",
+ "l ett",
+ "pe ror",
+ "per or",
+ "▁Neder land",
+ "sh are",
+ "sha re",
+ "▁incl u",
+ "▁inc lu",
+ "än ger",
+ "äng er",
+ "änge r",
+ "▁N ic",
+ "▁Ni c",
+ "ч о",
+ "F ull",
+ "▁ra pport",
+ "▁rapp ort",
+ "▁rap port",
+ "ec lipse",
+ "e clipse",
+ "▁indust ry",
+ "he aders",
+ "head ers",
+ "header s",
+ "▁Р и",
+ "ch sel",
+ "chs el",
+ "▁po lic",
+ "▁pol ic",
+ "sch ied",
+ "% ,",
+ "O D",
+ "▁J ak",
+ "▁Ja k",
+ "({ \\",
+ "( {\\",
+ "al igned",
+ "align ed",
+ "▁frequ ently",
+ "▁frequent ly",
+ "▁su oi",
+ "▁suo i",
+ "▁ess entially",
+ "▁essential ly",
+ "▁R ic",
+ "▁Ri c",
+ "▁re ports",
+ "▁report s",
+ "▁dec imal",
+ "ra r",
+ "r ar",
+ "▁F oo",
+ "▁Fo o",
+ "▁ Foo",
+ "▁K a",
+ "▁D C",
+ "▁ DC",
+ "▁sim pler",
+ "▁simple r",
+ "▁simp ler",
+ "▁simpl er",
+ "Pa ne",
+ "Pan e",
+ "P ane",
+ "? }",
+ "So rt",
+ "S ort",
+ "▁pos it",
+ "cd n",
+ "c dn",
+ "kt ur",
+ "▁aw k",
+ "▁ awk",
+ "зе р",
+ "з ер",
+ "P F",
+ "u ur",
+ "▁R oss",
+ "▁Ro ss",
+ "▁Ros s",
+ "▁m ant",
+ "▁ma nt",
+ "▁man t",
+ "N a",
+ "Con s",
+ "Co ns",
+ "C ons",
+ ")) ))",
+ "))) )",
+ ") )))",
+ "▁techn iques",
+ "▁techni ques",
+ "▁technique s",
+ "im pl",
+ "imp l",
+ "▁dro pped",
+ "▁drop ped",
+ "▁L ista",
+ "▁List a",
+ "▁Li sta",
+ "▁Lis ta",
+ "▁Bas ically",
+ "▁Basic ally",
+ "en tal",
+ "ent al",
+ "enta l",
+ "▁cel ui",
+ "▁str ategy",
+ "▁strateg y",
+ "▁strat egy",
+ "▁W ales",
+ "▁Wal es",
+ "▁Wa les",
+ "na n",
+ "n an",
+ "▁g min",
+ "▁gr öß",
+ "▁eer ste",
+ "▁eerst e",
+ "T im",
+ "nt en",
+ "n ten",
+ "re sp",
+ "res p",
+ "r esp",
+ "▁s table",
+ "▁st able",
+ "▁sta ble",
+ "▁ stable",
+ "no v",
+ "n ov",
+ "ro b",
+ "r ob",
+ "но ј",
+ "▁mar riage",
+ "get String",
+ "Aut hor",
+ "Auth or",
+ "▁G raf",
+ "▁Gr af",
+ "▁Gra f",
+ "▁di agram",
+ "▁diag ram",
+ "▁dia gram",
+ "gi a",
+ "g ia",
+ "Net work",
+ "N etwork",
+ "▁com posed",
+ "▁comp osed",
+ "▁compos ed",
+ "▁compose d",
+ "▁miss ed",
+ "▁mis sed",
+ "▁M eg",
+ "▁Me g",
+ "▁пра во",
+ "▁прав о",
+ "▁hom onymes",
+ "▁Bo oks",
+ "▁Book s",
+ "▁en cou",
+ "▁enc ou",
+ "port e",
+ "por te",
+ "p orte",
+ "▁rot ation",
+ "▁f ir",
+ "▁fi r",
+ "▁ fir",
+ "те льно",
+ "тель но",
+ "▁g un",
+ "▁gu n",
+ "▁ gun",
+ "▁A ff",
+ "▁Af f",
+ "▁ Aff",
+ "но к",
+ "н ок",
+ "▁Fuß ball",
+ "▁St ory",
+ "▁Sto ry",
+ "▁ Story",
+ "▁Ch ap",
+ "▁Cha p",
+ "▁) .",
+ "▁ ).",
+ "▁Se it",
+ "мо н",
+ "м он",
+ "▁t élé",
+ "▁té lé",
+ "▁cop ied",
+ "▁cons istent",
+ "▁consist ent",
+ "▁dr ink",
+ "▁C ham",
+ "▁Ch am",
+ "▁Cha m",
+ "▁mat ters",
+ "▁matter s",
+ "▁render ed",
+ "▁rend ered",
+ "▁rende red",
+ "▁hyp oth",
+ "œ uv",
+ "▁me er",
+ "▁par sing",
+ "▁P RO",
+ "▁PR O",
+ "▁ PRO",
+ "se ries",
+ "ser ies",
+ "serie s",
+ "s eries",
+ "▁z á",
+ "▁ zá",
+ "stra ße",
+ "▁B oot",
+ "▁Bo ot",
+ "▁ Boot",
+ "▁re po",
+ "▁rep o",
+ "▁ repo",
+ "wo r",
+ "w or",
+ "▁St ream",
+ "▁Stre am",
+ "▁ Stream",
+ "▁A N",
+ "▁ AN",
+ "▁п ів",
+ "▁пі в",
+ "▁S M",
+ "▁ SM",
+ "▁A rn",
+ "▁Ar n",
+ "▁ Ž",
+ "▁[ ];",
+ "▁[] ;",
+ "Res ources",
+ "Resource s",
+ "▁el abor",
+ "▁ela bor",
+ "▁E th",
+ "▁Et h",
+ "▁l iste",
+ "▁li ste",
+ "▁list e",
+ "▁rel atively",
+ "▁relative ly",
+ "▁relativ ely",
+ "ch ant",
+ "chan t",
+ "cha nt",
+ "=\" \"",
+ "= \"\"",
+ "▁l ift",
+ "▁li ft",
+ "▁lif t",
+ "C N",
+ "Service s",
+ "Serv ices",
+ "ME NT",
+ "M ENT",
+ "▁и гра",
+ "▁иг ра",
+ "▁ игра",
+ "б ре",
+ "▁J ord",
+ "▁Jo rd",
+ "▁t ec",
+ "▁te c",
+ "ш ка",
+ "▁S up",
+ "▁Su p",
+ "▁infl uen",
+ "▁influ en",
+ "on ds",
+ "ond s",
+ "hand ler",
+ "handle r",
+ "▁b anda",
+ "▁band a",
+ "▁ban da",
+ "▁vert ices",
+ "▁z ap",
+ "▁za p",
+ "▁c ord",
+ "▁cor d",
+ "▁co rd",
+ "▁ cord",
+ "al ter",
+ "alt er",
+ "ze nia",
+ "zen ia",
+ "z enia",
+ "ât eau",
+ "âte au",
+ "▁know ing",
+ "▁Argent ina",
+ "Ar ea",
+ "Are a",
+ "A rea",
+ "ан е",
+ "а не",
+ "f c",
+ "=\" /",
+ "= \"/",
+ "▁M ik",
+ "▁Mi k",
+ "at ă",
+ "ie ux",
+ "ieu x",
+ "▁deutsch en",
+ "▁deutsche n",
+ "▁trad itional",
+ "▁tradition al",
+ "de code",
+ "dec ode",
+ "ve x",
+ "v ex",
+ "▁size of",
+ "▁ sizeof",
+ "▁F un",
+ "▁Fu n",
+ "▁ Fun",
+ "▁par ser",
+ "▁parse r",
+ "▁ parser",
+ "▁Flor ida",
+ "▁build ings",
+ "▁building s",
+ "▁Man uel",
+ "ri le",
+ "ril e",
+ "r ile",
+ "▁log ged",
+ "▁strong ly",
+ "▁re vol",
+ "▁rev ol",
+ "не е",
+ "xi co",
+ "xic o",
+ "x ico",
+ "▁F air",
+ "▁Fa ir",
+ "ca rt",
+ "car t",
+ "c art",
+ "▁W ort",
+ "▁Wo rt",
+ "▁Wor t",
+ "▁Jes us",
+ "em es",
+ "eme s",
+ "e mes",
+ "sch rift",
+ "Input Stream",
+ "wa d",
+ "w ad",
+ "▁gran des",
+ "▁grand es",
+ "▁grande s",
+ "▁númer o",
+ "▁O tto",
+ "▁Ot to",
+ "▁Ott o",
+ "ien tes",
+ "ient es",
+ "iente s",
+ "i entes",
+ "▁fam ous",
+ "ol ogne",
+ "olog ne",
+ "J e",
+ "ни ш",
+ "▁Guer ra",
+ "bar a",
+ "ba ra",
+ "b ara",
+ "▁c ad",
+ "▁ca d",
+ "el ve",
+ "br ace",
+ "bra ce",
+ "b race",
+ "▁J r",
+ "st able",
+ "sta ble",
+ "stab le",
+ "s table",
+ "EC T",
+ "E CT",
+ "lem ma",
+ "med iate",
+ "medi ate",
+ "media te",
+ "▁v in",
+ "▁vi n",
+ "▁ vin",
+ "▁mon ument",
+ "▁c v",
+ "▁ cv",
+ "▁w inter",
+ "▁win ter",
+ "▁trans formation",
+ "▁transform ation",
+ "▁N ick",
+ "▁Nic k",
+ "▁Ni ck",
+ "str onom",
+ "▁f rag",
+ "▁fr ag",
+ "▁fra g",
+ "▁in tel",
+ "▁int el",
+ "▁inte l",
+ "ra ction",
+ "rac tion",
+ "ract ion",
+ "r action",
+ "▁consider ing",
+ "▁consid ering",
+ "▁F le",
+ "▁Fl e",
+ "▁ ло",
+ "▁A près",
+ "▁Ap rès",
+ "▁A M",
+ "▁ AM",
+ "▁H um",
+ "▁Hu m",
+ "▁m undo",
+ "NE R",
+ "N ER",
+ "▁Be low",
+ "▁Bel ow",
+ "▁го рода",
+ "▁горо да",
+ "▁город а",
+ "ar ters",
+ "art ers",
+ "arter s",
+ "arte rs",
+ "-- \"",
+ "▁П е",
+ "▁ Пе",
+ "î t",
+ "▁t xt",
+ "▁tx t",
+ "▁ txt",
+ "an gers",
+ "ang ers",
+ "ange rs",
+ "anger s",
+ "▁t hy",
+ "▁th y",
+ "▁ thy",
+ "CL A",
+ "C LA",
+ "ib les",
+ "ible s",
+ "i bles",
+ "▁request ed",
+ "▁requ ested",
+ "▁Alex and",
+ "▁fact ors",
+ "▁fa ctors",
+ "▁factor s",
+ "▁produ ces",
+ "▁produce s",
+ "ning en",
+ "n ingen",
+ "▁со стоя",
+ "▁optim ization",
+ "ch od",
+ "cho d",
+ "c hod",
+ "> `",
+ "▁Wik ip",
+ "nost i",
+ "nos ti",
+ "n osti",
+ "▁compet ition",
+ "▁H ann",
+ "▁Ha nn",
+ "▁Han n",
+ "▁z ona",
+ "▁zo na",
+ "d c",
+ "de sign",
+ "des ign",
+ "▁Z u",
+ "▁e spec",
+ "▁es pec",
+ "▁espe c",
+ "▁esp ec",
+ "equ ality",
+ "equal ity",
+ "e quality",
+ "▁A bb",
+ "▁Ab b",
+ "▁develop er",
+ "▁ developer",
+ "▁\" ^",
+ "▁Sh ort",
+ "▁Sho rt",
+ "▁ Short",
+ "▁pl ans",
+ "▁pla ns",
+ "▁plan s",
+ "▁v it",
+ "▁vi t",
+ "iz able",
+ "iza ble",
+ "burg h",
+ "bur gh",
+ "ag em",
+ "age m",
+ "a gem",
+ "▁Pr int",
+ "▁Pri nt",
+ "▁Prin t",
+ "▁ Print",
+ "í v",
+ "▁su itable",
+ "▁suit able",
+ "pi cker",
+ "pic ker",
+ "pick er",
+ "p icker",
+ "Pro file",
+ "an dy",
+ "and y",
+ "▁qu ot",
+ "▁ quot",
+ "▁Dur ante",
+ "▁Durant e",
+ "▁Fran cia",
+ "▁Fr ancia",
+ "▁Franc ia",
+ "▁t art",
+ "▁tar t",
+ "▁ta rt",
+ "▁V enez",
+ "▁Ve nez",
+ "▁Ven ez",
+ "▁dis patch",
+ "▁disp atch",
+ "▁ dispatch",
+ "▁observ ations",
+ "▁observation s",
+ "▁ ż",
+ "In valid",
+ "▁occ urr",
+ "▁occur r",
+ "▁oc curr",
+ "т ки",
+ "Mem ento",
+ "M emento",
+ "▁S yd",
+ "▁Sy d",
+ "▁tiem po",
+ "▁st aff",
+ "▁sta ff",
+ "▁se ctions",
+ "▁section s",
+ "▁sect ions",
+ "▁ sections",
+ "▁s sh",
+ "▁ss h",
+ "▁ ssh",
+ "▁N GC",
+ "ë l",
+ "▁er re",
+ "▁err e",
+ "▁div ided",
+ "▁divide d",
+ "▁divid ed",
+ "▁With out",
+ "▁du rant",
+ "▁dur ant",
+ "▁j aar",
+ "▁ja ar",
+ "▁ −",
+ "▁sold iers",
+ "▁soldier s",
+ "ун к",
+ "la pse",
+ "lap se",
+ "laps e",
+ "▁Val ley",
+ "▁Vall ey",
+ "▁Valle y",
+ "▁( :",
+ "▁ (:",
+ "re ra",
+ "rer a",
+ "r era",
+ "▁d ével",
+ "▁dé vel",
+ "▁p éri",
+ "▁pé ri",
+ "▁calcul ation",
+ "▁calc ulation",
+ "▁ke ine",
+ "▁kein e",
+ "er tain",
+ "ert ain",
+ "erta in",
+ "▁те ле",
+ "ру д",
+ "▁c ul",
+ "▁cu l",
+ "▁ cul",
+ "▁cl oth",
+ "▁clo th",
+ "; }",
+ "▁pr zed",
+ "▁prze d",
+ "▁prz ed",
+ "Mon th",
+ "Mo nth",
+ "Mont h",
+ "Pi cker",
+ "P icker",
+ "▁S V",
+ "▁ SV",
+ "ar ian",
+ "ari an",
+ "aria n",
+ "a rian",
+ "▁Re view",
+ "▁Rev iew",
+ "▁h ang",
+ "▁ha ng",
+ "▁han g",
+ "▁ hang",
+ "▁о кт",
+ "▁ок т",
+ "▁F ront",
+ "▁Fr ont",
+ "▁Fro nt",
+ "▁ Front",
+ "ot lin",
+ "▁trans lation",
+ "▁transl ation",
+ "▁m odo",
+ "▁mod o",
+ "▁mo do",
+ "▁stat istics",
+ "▁statist ics",
+ "▁N ue",
+ "▁Nu e",
+ "▁Ни кола",
+ "NU M",
+ "N UM",
+ "▁s hips",
+ "▁sh ips",
+ "▁ship s",
+ "▁ ships",
+ "▁Re port",
+ "▁Rep ort",
+ "▁ Report",
+ "{ [",
+ "E ffect",
+ "ie ri",
+ "ier i",
+ "i eri",
+ "▁par ties",
+ "▁part ies",
+ "▁partie s",
+ "▁parti es",
+ "pl a",
+ "p la",
+ "r w",
+ "▁Work s",
+ "▁Wor ks",
+ "▁i ron",
+ "▁ir on",
+ "▁att ract",
+ "▁attr act",
+ "▁attra ct",
+ "▁c ort",
+ "▁cor t",
+ "▁co rt",
+ "n á",
+ "▁Ste ve",
+ "▁b ene",
+ "▁be ne",
+ "▁ben e",
+ "то н",
+ "т он",
+ "ícul a",
+ "Tw o",
+ "T wo",
+ "▁г лав",
+ "▁гла в",
+ "▁V ideo",
+ "▁ Video",
+ "▁power ful",
+ "au ch",
+ "auc h",
+ "a uch",
+ "ma nde",
+ "man de",
+ "m ande",
+ "äch st",
+ "ächs t",
+ "La t",
+ "L at",
+ "▁z na",
+ "▁zn a",
+ "▁ zna",
+ "▁fig ures",
+ "▁figure s",
+ "▁figur es",
+ "▁a lias",
+ "▁al ias",
+ "▁ali as",
+ "▁ alias",
+ "ne x",
+ "n ex",
+ "▁c ategories",
+ "▁categ ories",
+ "▁categor ies",
+ "▁categorie s",
+ "▁ categories",
+ "cal led",
+ "call ed",
+ "c alled",
+ "▁Sim ilar",
+ "▁g irls",
+ "▁girl s",
+ "▁gir ls",
+ "pe z",
+ "p ez",
+ "▁j oint",
+ "▁jo int",
+ "▁join t",
+ "▁ joint",
+ "ро го",
+ "р ого",
+ "ik en",
+ "ike n",
+ "i ken",
+ "чи на",
+ "чин а",
+ "an cia",
+ "anc ia",
+ "anci a",
+ "▁t ijd",
+ "▁ti jd",
+ "▁R ose",
+ "▁Ro se",
+ "▁Ros e",
+ "▁alg orithms",
+ "▁algorithm s",
+ "▁print ing",
+ "▁prin ting",
+ "ne a",
+ "n ea",
+ "▁exec uting",
+ "▁execut ing",
+ "▁l ambda",
+ "▁ lambda",
+ "▁reg ional",
+ "▁region al",
+ "▁Co pa",
+ "▁Cop a",
+ "F oo",
+ "ph ys",
+ "phy s",
+ "z m",
+ "▁L aur",
+ "▁La ur",
+ "▁Lau r",
+ "▁candid ate",
+ "▁J a",
+ "zy m",
+ "z ym",
+ "Ex ample",
+ "▁s piel",
+ "▁sp iel",
+ "▁ spiel",
+ "▁д ей",
+ "▁де й",
+ "▁ дей",
+ "ne hmen",
+ "neh men",
+ "nehm en",
+ "ke iten",
+ "keit en",
+ "▁с ент",
+ "int ent",
+ "inte nt",
+ ". (",
+ "▁пер вы",
+ "pr om",
+ "pro m",
+ "p rom",
+ "▁n at",
+ "▁na t",
+ "▁ nat",
+ "▁im agine",
+ "▁imag ine",
+ "call back",
+ "com ponents",
+ "component s",
+ "with out",
+ "▁a quest",
+ "▁aqu est",
+ "Su pport",
+ "Supp ort",
+ "▁respons ible",
+ "▁j ego",
+ "▁je go",
+ "l j",
+ "wi ll",
+ "w ill",
+ "le an",
+ "lea n",
+ "el and",
+ "ela nd",
+ "e land",
+ "olog ía",
+ "m c",
+ "Pro xy",
+ "▁o cup",
+ "▁oc up",
+ "▁на ходи",
+ "▁r ub",
+ "▁ru b",
+ "ні в",
+ "н ів",
+ "▁F all",
+ "▁Fa ll",
+ "▁Fal l",
+ "am os",
+ "amo s",
+ "a mos",
+ "▁E p",
+ "en tre",
+ "ent re",
+ "entr e",
+ "fa il",
+ "f ail",
+ "W orld",
+ "▁Ed itor",
+ "▁Edit or",
+ "▁ Editor",
+ "▁ex pos",
+ "▁exp os",
+ "▁f inds",
+ "▁find s",
+ "▁fin ds",
+ "▁C ulture",
+ "▁Cult ure",
+ "▁ Culture",
+ "LE ASE",
+ "▁m ovie",
+ "▁mov ie",
+ "▁mo vie",
+ "▁ movie",
+ "< =",
+ "omet ric",
+ "o metric",
+ "el ing",
+ "eli ng",
+ "elin g",
+ "e ling",
+ "numer able",
+ "ou rd",
+ "our d",
+ "o urd",
+ "▁S ea",
+ "▁Se a",
+ "▁b ild",
+ "▁bi ld",
+ "▁bil d",
+ "▁ bild",
+ "▁о ста",
+ "▁ос та",
+ "▁ост а",
+ "bl o",
+ "b lo",
+ "▁l ose",
+ "▁lo se",
+ "▁los e",
+ "▁ lose",
+ "at eurs",
+ "ate urs",
+ "ateur s",
+ "ou red",
+ "our ed",
+ "oure d",
+ "o ured",
+ "▁B att",
+ "▁Ba tt",
+ "▁Bat t",
+ "() ;\r",
+ "(); \r",
+ "( );\r",
+ "▁p oz",
+ "▁po z",
+ "pos ts",
+ "post s",
+ "pe nd",
+ "pen d",
+ "p end",
+ "cer tain",
+ "cert ain",
+ "c ertain",
+ "ни ком",
+ "ник ом",
+ "J ust",
+ "web kit",
+ "dem ás",
+ "~~ ~~",
+ "▁indic ates",
+ "▁indicate s",
+ "▁p ark",
+ "▁par k",
+ "▁ park",
+ "ri que",
+ "r ique",
+ "vo d",
+ "v od",
+ "▁Ch amp",
+ "▁Cham p",
+ "▁Cha mp",
+ "ft ware",
+ "OP T",
+ "O PT",
+ "dj ango",
+ "d jango",
+ "re lease",
+ "▁ È",
+ "S R",
+ "▁polit ician",
+ "▁r oi",
+ "▁ro i",
+ "at uren",
+ "atur en",
+ "ature n",
+ "atu ren",
+ "▁Deutsch e",
+ "ta gon",
+ "tag on",
+ "t agon",
+ "▁M ov",
+ "▁Mo v",
+ "ob ierno",
+ "obi erno",
+ "▁da ß",
+ "ut her",
+ "uth er",
+ "u ther",
+ "in di",
+ "ind i",
+ "▁Wik ipedia",
+ "▁Wikip edia",
+ "▁Wikiped ia",
+ "▁a nos",
+ "▁an os",
+ "▁ano s",
+ "▁ anos",
+ "▁ob serve",
+ "▁obser ve",
+ "▁observ e",
+ "▁obs erve",
+ "el ly",
+ "ell y",
+ "▁rail way",
+ "at on",
+ "ato n",
+ "a ton",
+ "▁e num",
+ "▁en um",
+ "▁ enum",
+ "hu s",
+ "h us",
+ "▁in hab",
+ "P si",
+ "oir e",
+ "oi re",
+ "o ire",
+ "▁Х о",
+ "▁S pace",
+ "▁Sp ace",
+ "▁ Space",
+ "▁Ар хи",
+ "▁an terior",
+ "▁ante rior",
+ "▁ Ł",
+ "is ons",
+ "ison s",
+ "iso ns",
+ "I l",
+ "▁am éric",
+ "la ps",
+ "lap s",
+ "l aps",
+ "▁B BC",
+ "▁BB C",
+ "QUE ST",
+ "Con stra",
+ "Const ra",
+ "Cons tra",
+ "mon t",
+ "mo nt",
+ "m ont",
+ "ä ft",
+ "▁ä ven",
+ "ub ern",
+ "ube rn",
+ "uber n",
+ "u bern",
+ "< !--",
+ "▁c oding",
+ "▁co ding",
+ "▁cod ing",
+ "the ory",
+ "at hed",
+ "ath ed",
+ "▁Ar be",
+ "▁ш и",
+ "▁ ши",
+ "for Each",
+ "om orphism",
+ "omorph ism",
+ "det ails",
+ "detail s",
+ "ach sen",
+ "in tegr",
+ "int egr",
+ "inte gr",
+ "V or",
+ "Un known",
+ "ace ae",
+ "a ceae",
+ "in ue",
+ "inu e",
+ "es ome",
+ "eso me",
+ "e some",
+ "▁F ir",
+ "ch ain",
+ "cha in",
+ "▁extrem ely",
+ "▁extreme ly",
+ "mult icol",
+ "multi col",
+ "▁Sw ift",
+ "▁address es",
+ "▁addr esses",
+ "hs pace",
+ "h space",
+ "▁Ro ger",
+ "▁Rog er",
+ "▁d essen",
+ "▁des sen",
+ "▁dess en",
+ "▁con sequ",
+ "▁cons equ",
+ "▁conse qu",
+ "ual mente",
+ "▁Pre mier",
+ "▁Prem ier",
+ "▁Re cord",
+ "▁Rec ord",
+ "▁ Record",
+ "▁B ron",
+ "▁Br on",
+ "▁Bro n",
+ "ki r",
+ "k ir",
+ "se x",
+ "s ex",
+ "in tern",
+ "int ern",
+ "inter n",
+ "inte rn",
+ "▁benef it",
+ "▁bene fit",
+ "um en",
+ "ume n",
+ "u men",
+ "▁be coming",
+ "▁bec oming",
+ "▁becom ing",
+ "▁l ig",
+ "▁li g",
+ "▁ lig",
+ "▁pop ula",
+ "▁popul a",
+ "os c",
+ "o sc",
+ "▁c iv",
+ "▁ci v",
+ "▁great est",
+ "▁pro ces",
+ "▁proc es",
+ "] *",
+ "▁ме сто",
+ "▁мест о",
+ "▁' $",
+ "▁ '$",
+ "he ll",
+ "hel l",
+ "h ell",
+ "(\" \\",
+ "( \"\\",
+ "▁n ine",
+ "▁ni ne",
+ "▁nin e",
+ "▁F ac",
+ "▁Fa c",
+ "ul pt",
+ "ulp t",
+ "jo urs",
+ "jou rs",
+ "j ours",
+ "▁C opy",
+ "▁Co py",
+ "▁Cop y",
+ "▁ Copy",
+ "▁activ ities",
+ "▁Dem ocr",
+ "▁Demo cr",
+ "E s",
+ "Su ccess",
+ "▁E sta",
+ "▁Est a",
+ "▁Es ta",
+ "it ul",
+ "itu l",
+ "is ti",
+ "ist i",
+ "▁B ed",
+ "▁Be d",
+ "ja s",
+ "j as",
+ "▁т ем",
+ "▁те м",
+ "▁ тем",
+ "▁H ung",
+ "▁Hu ng",
+ "▁Hun g",
+ "G ame",
+ "▁he av",
+ "onn ées",
+ "▁branch es",
+ "▁bran ches",
+ "bo rg",
+ "bor g",
+ "b org",
+ "▁v l",
+ "▁ vl",
+ "▁slow ly",
+ "F a",
+ "Go ogle",
+ "em i",
+ "e mi",
+ "▁circumst ances",
+ "▁' %",
+ "▁U nd",
+ "▁Un d",
+ "▁ Und",
+ "▁Vict oria",
+ "▁Victor ia",
+ "▁T yp",
+ "▁Ty p",
+ "▁ Typ",
+ "rupt ed",
+ "rup ted",
+ "▁rel ativ",
+ "▁s lo",
+ "▁sl o",
+ "▁p adre",
+ "▁pad re",
+ "▁d aily",
+ "▁da ily",
+ "▁dai ly",
+ "▁or th",
+ "▁ort h",
+ "▁ orth",
+ "чни й",
+ "ч ний",
+ "▁fran zös",
+ "▁t eil",
+ "▁te il",
+ "▁ teil",
+ "▁Se curity",
+ "▁Sec urity",
+ "▁ Security",
+ "or don",
+ "ord on",
+ "ordo n",
+ "▁s weet",
+ "▁swe et",
+ "SI ZE",
+ "▁C el",
+ "▁Ce l",
+ "èt res",
+ "è tres",
+ "om mes",
+ "omm es",
+ "▁с і",
+ "▁ сі",
+ "▁effort s",
+ "ą z",
+ "▁oh ne",
+ "▁South ern",
+ "▁Sou thern",
+ "▁approxim ately",
+ "▁approximate ly",
+ "це н",
+ "ц ен",
+ "(' #",
+ "▁s aving",
+ "▁sa ving",
+ "▁sav ing",
+ "nb sp",
+ "▁trans late",
+ "▁transl ate",
+ "▁ translate",
+ "▁Î n",
+ "mem ber",
+ "m ember",
+ "▁l aws",
+ "▁la ws",
+ "▁law s",
+ "▁ж ен",
+ "▁же н",
+ "▁ жен",
+ "▁си сте",
+ "t c",
+ "> \\",
+ "el te",
+ "elt e",
+ "▁e hem",
+ "▁con trad",
+ "▁cont rad",
+ "▁contr ad",
+ "▁contra d",
+ "▁ру с",
+ "▁р ус",
+ "▁ рус",
+ "ь я",
+ "▁M iddle",
+ "▁ Middle",
+ "qu ip",
+ "qui p",
+ "▁c hez",
+ "▁ch ez",
+ "▁che z",
+ "▁ chez",
+ "Field s",
+ "▁per mit",
+ "▁perm it",
+ "ik el",
+ "ike l",
+ "i kel",
+ "▁w ir",
+ "▁t rial",
+ "▁tr ial",
+ "▁tri al",
+ "▁ver schied",
+ "▁versch ied",
+ "▁ф ев",
+ "▁фе в",
+ "▁m ale",
+ "▁ma le",
+ "▁mal e",
+ "▁ male",
+ "▁я зы",
+ "▁ny el",
+ "ak ter",
+ "akt er",
+ "akte r",
+ "a kter",
+ "▁den omin",
+ "cept or",
+ "cep tor",
+ "▁W at",
+ "▁Wa t",
+ "▁f ino",
+ "▁fin o",
+ "▁fi no",
+ "▁XV III",
+ "▁XVI II",
+ "▁XVII I",
+ "ry ption",
+ "rypt ion",
+ "de sc",
+ "des c",
+ "d esc",
+ "ap a",
+ "a pa",
+ "ле на",
+ "лен а",
+ "л ена",
+ "▁k ol",
+ "▁ko l",
+ "▁ kol",
+ "▁ Є",
+ "▁dep endent",
+ "▁depend ent",
+ "▁ dependent",
+ "▁C ra",
+ "▁Cr a",
+ "▁st orm",
+ "▁stor m",
+ "▁sto rm",
+ "▁Г ер",
+ "▁Ге р",
+ "▁p ipe",
+ "▁pi pe",
+ "▁pip e",
+ "▁ pipe",
+ "▁att ended",
+ "▁attend ed",
+ "▁v ita",
+ "▁vi ta",
+ "▁vit a",
+ "uz ione",
+ "u zione",
+ "cz as",
+ "cza s",
+ "c zas",
+ "on da",
+ "ond a",
+ "▁b old",
+ "▁bo ld",
+ "▁bol d",
+ "▁ bold",
+ "Column s",
+ "ic ió",
+ "ici ó",
+ "i ció",
+ "▁c zę",
+ "▁cz ę",
+ "▁из вест",
+ "▁Cl oud",
+ "▁Clo ud",
+ "▁ Cloud",
+ "▁w arm",
+ "▁war m",
+ "▁wa rm",
+ "▁с ы",
+ "▁ сы",
+ "▁с те",
+ "▁ст е",
+ "▁ сте",
+ "▁produ cer",
+ "▁produce r",
+ "▁Lud wig",
+ "▁Nor thern",
+ "▁North ern",
+ "ł ą",
+ "NS String",
+ "▁H ad",
+ "▁Ha d",
+ "▁И ван",
+ "▁E g",
+ "▁I mp",
+ "▁Im p",
+ "▁ Imp",
+ "ш і",
+ "▁A uch",
+ "▁Au ch",
+ "то к",
+ "т ок",
+ "▁H it",
+ "▁Hi t",
+ "▁qu ien",
+ "▁qui en",
+ "▁de partment",
+ "▁depart ment",
+ "▁erh ielt",
+ "▁u i",
+ "▁ ui",
+ "▁S pr",
+ "▁Sp r",
+ "се р",
+ "с ер",
+ "ou rt",
+ "our t",
+ "o urt",
+ "▁Ste phen",
+ "▁Step hen",
+ "▁Steph en",
+ "te am",
+ "▁z ip",
+ "▁ zip",
+ "▁B ang",
+ "▁Ba ng",
+ "▁Ban g",
+ "▁grow th",
+ "▁j am",
+ "▁ja m",
+ "▁K ais",
+ "▁Ka is",
+ "b matrix",
+ "▁As ia",
+ "▁rég ion",
+ "= /",
+ "▁Pac ific",
+ "▁author ity",
+ "▁# [",
+ "та ми",
+ "там и",
+ "▁every one",
+ "▁att end",
+ "▁atte nd",
+ "▁ attend",
+ "▁tim estamp",
+ "▁ timestamp",
+ "▁t ries",
+ "▁tr ies",
+ "▁tri es",
+ "▁f f",
+ "▁ ff",
+ "ше й",
+ "ш ей",
+ "▁develop ing",
+ "ol t",
+ "o lt",
+ "up s",
+ "u ps",
+ "▁moment o",
+ "▁mom ento",
+ "▁S ain",
+ "▁Sa in",
+ "Te rm",
+ "T erm",
+ "▁c elle",
+ "▁ce lle",
+ "▁cell e",
+ "▁cel le",
+ "G R",
+ "Mo use",
+ "M ouse",
+ "▁челов ек",
+ "▁челове к",
+ "▁Col lection",
+ "▁Coll ection",
+ "▁Collect ion",
+ "▁ Collection",
+ "ât re",
+ "â tre",
+ "▁W rite",
+ "▁Writ e",
+ "▁ Write",
+ "▁P om",
+ "▁Po m",
+ "[ -",
+ "Ca m",
+ "C am",
+ "▁loc ations",
+ "▁location s",
+ "▁J son",
+ "▁ Json",
+ "el led",
+ "ell ed",
+ "elle d",
+ "select or",
+ "sel ector",
+ "re peat",
+ "ct ors",
+ "ctor s",
+ "ot te",
+ "ott e",
+ "o tte",
+ "ви зи",
+ "änd e",
+ "än de",
+ "ä nde",
+ "▁ach ieved",
+ "▁achieve d",
+ "▁achiev ed",
+ "▁main ly",
+ "____ ____",
+ "! )",
+ "▁явля ется",
+ "▁c ities",
+ "▁ci ties",
+ "▁cit ies",
+ "sing le",
+ "sin gle",
+ "г ре",
+ "▁P ak",
+ "▁Pa k",
+ "▁allow ing",
+ "▁allo wing",
+ "fer red",
+ "▁а пре",
+ "хо дя",
+ "ход я",
+ "▁brow sers",
+ "▁browser s",
+ "▁es crit",
+ "▁esc rit",
+ "▁escri t",
+ "▁mount ain",
+ "▁network s",
+ "▁net works",
+ "ki nd",
+ "kin d",
+ "k ind",
+ "li ver",
+ "live r",
+ "liv er",
+ "l iver",
+ "▁cl osing",
+ "▁clos ing",
+ "▁clo sing",
+ "▁sk ip",
+ "▁ski p",
+ "▁ skip",
+ "ú t",
+ "▁d uration",
+ "▁dur ation",
+ "▁ duration",
+ "ét ait",
+ "éta it",
+ "é tait",
+ "▁s cr",
+ "▁sc r",
+ "▁ scr",
+ "B B",
+ "ór ia",
+ "ó ria",
+ "▁K ultur",
+ "▁Kult ur",
+ "▁output s",
+ "multi column",
+ "multicol umn",
+ "▁bel ongs",
+ "▁belong s",
+ "fe ature",
+ "uc ky",
+ "uck y",
+ "▁j uli",
+ "▁ju li",
+ "▁jul i",
+ "▁рай она",
+ "▁райо на",
+ "▁район а",
+ "з во",
+ "fact ory",
+ "factor y",
+ "f actory",
+ "Fun c",
+ "F unc",
+ "▁ut ter",
+ "▁ utter",
+ "▁TO DO",
+ "▁o bt",
+ "▁ob t",
+ "ateg ories",
+ "ategor ies",
+ "▁com bine",
+ "▁comb ine",
+ "▁combin e",
+ "▁W all",
+ "▁Wal l",
+ "▁Wa ll",
+ "▁under lying",
+ "ar ono",
+ "aron o",
+ "aro no",
+ "▁P rote",
+ "▁Pro te",
+ "▁Pr ote",
+ "c ów",
+ "st an",
+ "sta n",
+ "s tan",
+ "▁G ew",
+ "▁Ge w",
+ "▁opt imal",
+ "▁optim al",
+ "▁Archiv link",
+ "▁S cript",
+ "▁ Script",
+ "▁destroy ed",
+ "х е",
+ "▁Fire fox",
+ "▁s ole",
+ "▁so le",
+ "▁sol e",
+ "▁ sole",
+ "La yer",
+ "L ayer",
+ "т ку",
+ "▁st ores",
+ "▁stor es",
+ "▁store s",
+ "▁sto res",
+ "▁dis plays",
+ "▁display s",
+ "is hing",
+ "ish ing",
+ "ishi ng",
+ "▁о ст",
+ "▁ос т",
+ "▁inst ant",
+ "▁el ő",
+ "▁habit antes",
+ "▁Ein wo",
+ "▁a li",
+ "▁al i",
+ "▁ ali",
+ "▁ER ROR",
+ "▁ERR OR",
+ "▁ ERROR",
+ "▁a head",
+ "▁ah ead",
+ "▁go als",
+ "▁goal s",
+ "▁m ár",
+ "▁má r",
+ "▁s ą",
+ "▁m art",
+ "▁ma rt",
+ "▁mar t",
+ "▁ mart",
+ "мини стра",
+ "F r",
+ "▁V illa",
+ "▁Vill a",
+ "▁Vi lla",
+ "▁Vil la",
+ "▁M arc",
+ "▁Mar c",
+ "▁Ma rc",
+ "ro py",
+ "rop y",
+ "r opy",
+ "ag ram",
+ "agr am",
+ "a gram",
+ "ha pe",
+ "h ape",
+ "ме й",
+ "м ей",
+ "▁A L",
+ "▁ AL",
+ "▁conne xes",
+ "▁En tre",
+ "▁Ent re",
+ "St ep",
+ "Ste p",
+ "лі в",
+ "л ів",
+ "▁De ath",
+ "▁r ise",
+ "▁ris e",
+ "▁ri se",
+ "▁f os",
+ "▁fo s",
+ "▁l ev",
+ "▁le v",
+ "▁ lev",
+ "ga be",
+ "g abe",
+ "▁b roke",
+ "▁br oke",
+ "▁bro ke",
+ "product s",
+ "▁m edi",
+ "▁me di",
+ "▁med i",
+ "▁ medi",
+ "▁dis pon",
+ "▁disp on",
+ "Pack age",
+ "P ackage",
+ "Image View",
+ "▁N ag",
+ "▁Na g",
+ "uj ą",
+ "u ją",
+ "W ord",
+ "▁k ole",
+ "▁ko le",
+ "▁kol e",
+ "ße r",
+ "ß er",
+ ")` .",
+ ") `.",
+ "▁r ol",
+ "▁ro l",
+ "▁ rol",
+ "▁ í",
+ "те й",
+ "т ей",
+ "Pro gress",
+ "be an",
+ "▁s empre",
+ "▁sem pre",
+ "State ment",
+ "Stat ement",
+ "UP DATE",
+ "▁mond iale",
+ "▁w rapper",
+ "▁wr apper",
+ "▁wra pper",
+ "▁wrap per",
+ "▁ wrapper",
+ "▁C hart",
+ "▁Ch art",
+ "▁Char t",
+ "▁Cha rt",
+ "▁ Chart",
+ "▁on Click",
+ "че ння",
+ "чен ня",
+ "LO G",
+ "some thing",
+ "som ething",
+ "s omething",
+ "▁IN SERT",
+ "▁ INSERT",
+ "ще ния",
+ "ue t",
+ "u et",
+ "wer p",
+ "we rp",
+ "ro und",
+ "rou nd",
+ "r ound",
+ "ic hen",
+ "ich en",
+ "iche n",
+ "i chen",
+ "▁X VI",
+ "▁XV I",
+ "з ни",
+ "▁ave va",
+ "▁St ore",
+ "▁Sto re",
+ "▁ Store",
+ "▁x s",
+ "▁ xs",
+ "ra cht",
+ "rac ht",
+ "rach t",
+ "r acht",
+ "sc ar",
+ "s car",
+ "▁op era",
+ "▁oper a",
+ "▁ opera",
+ "▁deg rees",
+ "▁degree s",
+ "▁cit iz",
+ "äs ident",
+ "▁class ical",
+ "▁classic al",
+ "▁Jer sey",
+ "▁er sch",
+ "▁ers ch",
+ "▁ ersch",
+ "▁treat ment",
+ "▁насе ље",
+ "н ня",
+ "▁bo ost",
+ "▁ boost",
+ "am ount",
+ "amo unt",
+ "a mount",
+ "▁со зда",
+ "ér ieur",
+ "érie ur",
+ "éri eur",
+ "▁t elling",
+ "▁tell ing",
+ "▁tel ling",
+ "Ha s",
+ "H as",
+ "▁in iti",
+ "▁init i",
+ "▁П и",
+ "ev al",
+ "e val",
+ "▁M atch",
+ "▁Mat ch",
+ "▁ Match",
+ "▁cor re",
+ "▁corr e",
+ "Point er",
+ "Po inter",
+ "▁pass es",
+ "▁passe s",
+ "comp any",
+ "▁а н",
+ "▁ ан",
+ "ach es",
+ "ac hes",
+ "ache s",
+ "a ches",
+ "▁sig lo",
+ "не м",
+ "н ем",
+ "▁ex change",
+ "▁ exchange",
+ "ci to",
+ "cit o",
+ "c ito",
+ "▁B ab",
+ "▁Ba b",
+ "Do c",
+ "D oc",
+ "ze ś",
+ "▁на род",
+ "▁ народ",
+ "▁conf lict",
+ "▁conflic t",
+ "▁confl ict",
+ "▁nov ember",
+ "ea u",
+ "e au",
+ "ö v",
+ "▁H ub",
+ "▁Hu b",
+ "▁ Hub",
+ "▁p oco",
+ "▁po co",
+ "▁poc o",
+ "en sa",
+ "ens a",
+ "sch ließ",
+ "lass e",
+ "las se",
+ "l asse",
+ "data s",
+ "dat as",
+ "▁с ти",
+ "▁ст и",
+ "▁ сти",
+ "un ivers",
+ "uni vers",
+ "ek s",
+ "e ks",
+ "▁C ho",
+ "▁Ch o",
+ "▁ Cho",
+ "▁c ô",
+ "▁( .",
+ "▁ (.",
+ "ew nę",
+ "▁Ch ief",
+ "▁Chi ef",
+ "▁ch ef",
+ "▁che f",
+ "▁у прав",
+ "ul i",
+ "u li",
+ "▁' ''",
+ "▁'' '",
+ "▁ '''",
+ "nap shot",
+ "▁re lac",
+ "▁rel ac",
+ "▁rela c",
+ "ég e",
+ "é ge",
+ "w t",
+ "we nd",
+ "wen d",
+ "w end",
+ "os ing",
+ "osi ng",
+ "o sing",
+ "▁ha cer",
+ "▁hace r",
+ "▁ф ран",
+ "au tres",
+ "aut res",
+ "autre s",
+ "▁f ils",
+ "▁fil s",
+ "▁fi ls",
+ "er ed",
+ "ere d",
+ "e red",
+ "▁По силання",
+ "▁th erm",
+ "▁the rm",
+ "▁ther m",
+ "ер жа",
+ "su ch",
+ "s uch",
+ "▁i hren",
+ "▁ih ren",
+ "▁ihr en",
+ "▁ihre n",
+ "▁en contr",
+ "▁l ots",
+ "▁lo ts",
+ "▁lot s",
+ "lo go",
+ "log o",
+ "l ogo",
+ "▁W i",
+ "/ (",
+ "ш ње",
+ "DA TA",
+ "DAT A",
+ "D ATA",
+ "▁P layer",
+ "▁Pl ayer",
+ "▁Play er",
+ "▁Pla yer",
+ "▁ Player",
+ "▁Leip zig",
+ "▁rel atives",
+ "▁relative s",
+ "▁relativ es",
+ "ре в",
+ "р ев",
+ "▁new sp",
+ "▁news p",
+ "? ,",
+ "▁St utt",
+ "▁Stu tt",
+ "▁d ual",
+ "▁du al",
+ "▁compan ies",
+ "▁z am",
+ "▁za m",
+ "put ation",
+ "▁in equality",
+ "▁t rem",
+ "▁tr em",
+ "▁tre m",
+ "hi ps",
+ "hip s",
+ "h ips",
+ "an ch",
+ "anc h",
+ "▁ Ż",
+ "бур г",
+ "▁cop ies",
+ "da sh",
+ "das h",
+ "d ash",
+ "во р",
+ "в ор",
+ "spiel er",
+ "s pieler",
+ "▁Re volution",
+ "▁Revol ution",
+ "es ty",
+ "est y",
+ "e sty",
+ "▁j unto",
+ "▁jun to",
+ "▁junt o",
+ "▁Ind eed",
+ "ok al",
+ "oka l",
+ "o kal",
+ "ctr ine",
+ "▁F ord",
+ "▁For d",
+ "▁Fo rd",
+ "▁C REATE",
+ "▁ CREATE",
+ "▁w alls",
+ "▁wall s",
+ "▁wal ls",
+ "▁a ute",
+ "▁au te",
+ "▁aut e",
+ "S U",
+ "wh y",
+ "w hy",
+ "plement ation",
+ "ro ut",
+ "rou t",
+ "r out",
+ "Mat rix",
+ "▁s ad",
+ "▁sa d",
+ "ан а",
+ "а на",
+ "▁P ic",
+ "▁Pi c",
+ ". “",
+ "▁A C",
+ "▁ AC",
+ "▁F est",
+ "▁Fe st",
+ "▁des ktop",
+ "▁ desktop",
+ "▁P ay",
+ "▁Pa y",
+ "▁ Pay",
+ "ome times",
+ "omet imes",
+ "▁T ak",
+ "▁Ta k",
+ "ра б",
+ "▁S ever",
+ "▁Se ver",
+ "▁nor thern",
+ "▁north ern",
+ "an ter",
+ "ant er",
+ "ante r",
+ "▁Mod ern",
+ "▁Mo dern",
+ "▁Mode rn",
+ "wa l",
+ "w al",
+ "{ \r",
+ "on line",
+ "ö k",
+ "▁brit ann",
+ "$ _",
+ "▁j ar",
+ "▁ja r",
+ "▁ jar",
+ "T L",
+ "xx xx",
+ "xxx x",
+ "x xxx",
+ "mer ge",
+ "▁N amen",
+ "▁Name n",
+ "▁Na men",
+ "▁Nam en",
+ "▁K EY",
+ "▁ KEY",
+ "▁re fers",
+ "▁ref ers",
+ "▁refer s",
+ "▁h in",
+ "▁hi n",
+ "▁ hin",
+ "▁Vol ks",
+ "▁Volk s",
+ "st eller",
+ "stell er",
+ "stelle r",
+ "vi ation",
+ "via tion",
+ "v iation",
+ "on io",
+ "oni o",
+ "o nio",
+ "ight er",
+ "igh ter",
+ "Com pat",
+ "Comp at",
+ "▁C E",
+ "▁ CE",
+ "▁p ró",
+ "▁pr ó",
+ "▁encuent ra",
+ "the orem",
+ "▁pub li",
+ "▁Develop ment",
+ "н д",
+ "▁r os",
+ "▁ro s",
+ "▁ ros",
+ "▁s hr",
+ "▁sh r",
+ "se au",
+ "s eau",
+ "▁gener ating",
+ "▁gene rating",
+ "▁difficult y",
+ "▁Ex press",
+ "▁Exp ress",
+ "▁ Express",
+ "Al ignment",
+ "de utsch",
+ "▁Вла ди",
+ "▁sugg ests",
+ "▁suggest s",
+ "▁Famil y",
+ "▁Fam ily",
+ "▁ Family",
+ "bb i",
+ "b bi",
+ "]) .",
+ "] ).",
+ "st aw",
+ "sta w",
+ "▁pres idente",
+ "▁president e",
+ "▁presiden te",
+ "▁st esso",
+ "in x",
+ "i nx",
+ "set up",
+ "▁con form",
+ "▁conf orm",
+ "▁f ro",
+ "▁fr o",
+ "=\\ \"",
+ "= \\\"",
+ "▁d å",
+ "ic iones",
+ "ici ones",
+ "icio nes",
+ "icion es",
+ "i ciones",
+ "▁e volution",
+ "▁evol ution",
+ "pr ote",
+ "pro te",
+ "p rote",
+ "▁pr ints",
+ "▁print s",
+ "▁prin ts",
+ "▁P ont",
+ "▁Po nt",
+ "▁Pon t",
+ "▁conf usion",
+ "▁ Й",
+ "▁d ello",
+ "▁del lo",
+ "▁dell o",
+ "▁man if",
+ "Def inition",
+ "ár a",
+ "á ra",
+ "ma ls",
+ "mal s",
+ "m als",
+ "▁s ale",
+ "▁sa le",
+ "▁sal e",
+ "▁drop down",
+ "▁ dropdown",
+ "Ch ain",
+ "Amer ican",
+ "America n",
+ "▁m k",
+ "▁ mk",
+ "▁B ez",
+ "▁Be z",
+ "▁F ue",
+ "▁Fu e",
+ "▁N E",
+ "▁ NE",
+ "гра фи",
+ "граф и",
+ "doc ker",
+ "do cker",
+ "d ocker",
+ "▁^ {",
+ "▁ ^{",
+ "As sert",
+ "Ass ert",
+ "▁hor izontal",
+ "▁horizon tal",
+ "▁ horizontal",
+ "(@ \"",
+ "( @\"",
+ "▁д ву",
+ "pro xy",
+ "U ri",
+ "gen cy",
+ "g ency",
+ "▁\" [",
+ "▁Q t",
+ "▁ Qt",
+ "▁N ames",
+ "▁Name s",
+ "▁Na mes",
+ "▁Nam es",
+ "▁ Names",
+ "▁evalu ate",
+ "▁eval uate",
+ "! /",
+ "▁ein ges",
+ "▁eing es",
+ "▁syn th",
+ "▁sy nth",
+ "▁You Tube",
+ "▁turn ing",
+ "▁tur ning",
+ "▁E ric",
+ "▁Er ic",
+ "▁б ли",
+ "▁ бли",
+ "▁k lub",
+ "▁kl ub",
+ "pl orer",
+ "▁s ports",
+ "▁sport s",
+ "▁s ia",
+ "▁si a",
+ "о ш",
+ "▁d ai",
+ "▁da i",
+ "▁e urope",
+ "▁europ e",
+ "▁euro pe",
+ "ic ians",
+ "ici ans",
+ "ician s",
+ "icia ns",
+ "ings områ",
+ "▁d re",
+ "▁dr e",
+ "▁work around",
+ "▁s uit",
+ "▁su it",
+ "▁ suit",
+ "amb igu",
+ "▁quant ity",
+ "▁ quantity",
+ "▁seg undo",
+ "Sym bol",
+ "S ymbol",
+ "▁m oral",
+ "▁mo ral",
+ "▁mor al",
+ "Ch art",
+ "Char t",
+ "C hart",
+ "▁da mit",
+ "▁dam it",
+ "▁attempt s",
+ "▁d onn",
+ "▁do nn",
+ "▁don n",
+ "jo s",
+ "j os",
+ "▁e re",
+ "▁er e",
+ "▁ ere",
+ "▁hom me",
+ "▁ homme",
+ "si mp",
+ "sim p",
+ "s imp",
+ "rypt ed",
+ "▁act s",
+ "▁ac ts",
+ "inner HTML",
+ "▁tourn ament",
+ "▁s ky",
+ "▁sk y",
+ "▁ sky",
+ "Time r",
+ "Tim er",
+ "T imer",
+ "▁mill ions",
+ "▁million s",
+ "^ +",
+ "ag ent",
+ "age nt",
+ "agen t",
+ "a gent",
+ "') );",
+ "')) ;",
+ "' ));",
+ "▁o st",
+ "▁os t",
+ "▁ ost",
+ "▁g la",
+ "▁gl a",
+ "▁по мо",
+ "▁f ün",
+ "ст вом",
+ "ств ом",
+ "ство м",
+ "ewnę trz",
+ "▁Mé xico",
+ "▁l ub",
+ "▁lu b",
+ "▁ lub",
+ "▁É d",
+ "if ik",
+ "ifi k",
+ "i fik",
+ "че ский",
+ "▁im mer",
+ "▁imm er",
+ "▁ immer",
+ "en sen",
+ "ens en",
+ "ense n",
+ "an ny",
+ "ann y",
+ "in line",
+ "▁g over",
+ "▁go ver",
+ "au c",
+ "a uc",
+ "▁re pre",
+ "▁rep re",
+ "▁repr e",
+ "▁histor ia",
+ "▁hist oria",
+ "A g",
+ "▁p lt",
+ "▁pl t",
+ "▁Pr inci",
+ "▁Prin ci",
+ "im eter",
+ "ime ter",
+ "imet er",
+ "i meter",
+ "ő s",
+ "š e",
+ "▁U E",
+ "▁ UE",
+ "Equ als",
+ "Equal s",
+ "Eq uals",
+ "Dis patch",
+ "le gen",
+ "leg en",
+ "lege n",
+ "l egen",
+ "ла зи",
+ "чно й",
+ "ч ной",
+ "▁st ell",
+ "▁ste ll",
+ "▁ stell",
+ "ń st",
+ "▁c ri",
+ "▁cr i",
+ "▁ cri",
+ "▁In dep",
+ "▁Ind ep",
+ "è de",
+ "}\\ )",
+ "} \\)",
+ "▁w yst",
+ "▁wy st",
+ "▁wys t",
+ "▁fig ured",
+ "▁figure d",
+ "▁figur ed",
+ "AT CH",
+ "éb en",
+ "é ben",
+ "la cht",
+ "lac ht",
+ "lach t",
+ "l acht",
+ "▁succeed ed",
+ "gr y",
+ "g ry",
+ "▁p ret",
+ "▁pr et",
+ "▁pre t",
+ "▁ pret",
+ "▁S af",
+ "▁Sa f",
+ "▁\" );",
+ "▁\") ;",
+ "▁ \");",
+ "e h",
+ "▁offic iel",
+ "▁offici el",
+ "краї н",
+ "wi nd",
+ "win d",
+ "w ind",
+ "▁sc atter",
+ "▁F ox",
+ "▁Fo x",
+ "ic ious",
+ "ici ous",
+ "icio us",
+ "i cious",
+ "Man y",
+ "Ma ny",
+ "M any",
+ "up er",
+ "u per",
+ "▁Con vert",
+ "▁ Convert",
+ "st erd",
+ "ste rd",
+ "ster d",
+ "▁St ein",
+ "▁Ste in",
+ "▁О т",
+ "}^ {(",
+ "}^{ (",
+ "} ^{(",
+ "bet ween",
+ "hi re",
+ "h ire",
+ "▁on Create",
+ "▁ onCreate",
+ "; ",
+ "b ably",
+ "S Y",
+ "mo t",
+ "m ot",
+ "▁D ire",
+ "▁Di re",
+ "▁Dir e",
+ "itect ure",
+ "то й",
+ "▁co ordinate",
+ "▁coordin ate",
+ "▁coord inate",
+ "▁ coordinate",
+ "(\" #",
+ "▁s üd",
+ "O B",
+ "▁m orte",
+ "▁mor te",
+ "▁mort e",
+ "▁we ather",
+ "▁h ely",
+ "▁he ly",
+ "▁hel y",
+ "▁ hely",
+ "▁priv ile",
+ "RE LEASE",
+ "at el",
+ "ate l",
+ "a tel",
+ "▁recogn ized",
+ "▁recognize d",
+ "▁Th ough",
+ "сси й",
+ "mem ory",
+ "▁comp ilation",
+ "bit s",
+ "bi ts",
+ "b its",
+ "▁w ed",
+ "▁we d",
+ "▁ wed",
+ "}} _{",
+ "}}_ {",
+ "} }_{",
+ "▁G UI",
+ "п ня",
+ "▁sou thern",
+ "▁south ern",
+ "▁h ay",
+ "▁ha y",
+ "ov ić",
+ "ovi ć",
+ "o vić",
+ "la uf",
+ "lau f",
+ "l auf",
+ "▁E L",
+ "▁ EL",
+ "▁F ull",
+ "▁Fu ll",
+ "▁Ful l",
+ "▁ Full",
+ "▁Ham burg",
+ "▁Hamb urg",
+ "▁M ittel",
+ "▁Mit tel",
+ "▁Mitte l",
+ "▁Mitt el",
+ "D U",
+ "appro x",
+ "H S",
+ "▁про це",
+ "▁mag azine",
+ "▁M ig",
+ "▁Mi g",
+ "▁click ing",
+ "en tr",
+ "ent r",
+ "▁au tre",
+ "▁aut re",
+ "▁ autre",
+ "▁t é",
+ "▁ té",
+ "▁h á",
+ "▁ há",
+ "ст ы",
+ "с ты",
+ "▁M A",
+ "▁ MA",
+ "ap py",
+ "app y",
+ "a ppy",
+ "st ví",
+ "▁se lon",
+ "▁sel on",
+ "▁g ek",
+ "▁ge k",
+ "▁S l",
+ "▁ Sl",
+ "fr astr",
+ "fra str",
+ "Li b",
+ "L ib",
+ "▁Д у",
+ "▁f acing",
+ "▁fa cing",
+ "▁fac ing",
+ "▁с тар",
+ "▁ст ар",
+ "▁ста р",
+ "▁D utch",
+ "at ar",
+ "ata r",
+ "a tar",
+ "▁ke eps",
+ "▁keep s",
+ "▁Pat rick",
+ "▁Patri ck",
+ "il io",
+ "ili o",
+ "i lio",
+ "▁v ig",
+ "▁vi g",
+ "тв а",
+ "т ва",
+ "▁Feder al",
+ "▁Fed eral",
+ "▁par agraph",
+ "▁para graph",
+ "▁ paragraph",
+ "▁inter action",
+ "▁inte raction",
+ "▁interact ion",
+ "▁occ as",
+ "▁oc cas",
+ "▁I ran",
+ "▁Ir an",
+ "▁Ira n",
+ "▁machine s",
+ "▁mach ines",
+ "(( )",
+ "( ()",
+ "ur ies",
+ "uri es",
+ "u ries",
+ "▁ро ди",
+ "▁род и",
+ "▁ роди",
+ "▁а мерикан",
+ "up p",
+ "u pp",
+ "▁i ce",
+ "▁ic e",
+ "▁ ice",
+ "▁S ay",
+ "▁Sa y",
+ "▁s ail",
+ "▁sa il",
+ "▁B egin",
+ "▁Be gin",
+ "▁Beg in",
+ "▁ Begin",
+ "fi co",
+ "fic o",
+ "f ico",
+ "og a",
+ "o ga",
+ "▁d esar",
+ "▁des ar",
+ "▁d v",
+ "▁ра ди",
+ "oh en",
+ "o hen",
+ "er ei",
+ "ere i",
+ "e rei",
+ "án ak",
+ "á nak",
+ "▁d aar",
+ "▁da ar",
+ "if iers",
+ "ifier s",
+ "ifi ers",
+ "ifie rs",
+ "▁th ee",
+ "▁the e",
+ "▁by la",
+ "▁byl a",
+ "ва ла",
+ "вал а",
+ "в ала",
+ "an dro",
+ "and ro",
+ "andr o",
+ "▁м оло",
+ "▁мо ло",
+ "▁tot ally",
+ "▁total ly",
+ "io m",
+ "i om",
+ "▁a er",
+ "ns ylvan",
+ "▁cor ps",
+ "▁tre ated",
+ "▁treat ed",
+ "▁com une",
+ "▁comun e",
+ "M ich",
+ "vo ice",
+ "pg f",
+ "▁a nx",
+ "▁an x",
+ "▁Phil ip",
+ "▁Phili p",
+ "▁e k",
+ "▁ ek",
+ "▁Men schen",
+ "▁Mens chen",
+ "▁d ere",
+ "▁de re",
+ "▁der e",
+ "▁per met",
+ "▁perm et",
+ "Ma il",
+ "M ail",
+ "▁V é",
+ "en ted",
+ "ent ed",
+ "ente d",
+ "▁b unch",
+ "▁P iet",
+ "▁Pi et",
+ "▁Pie t",
+ "att ach",
+ "atta ch",
+ "▁p orte",
+ "▁por te",
+ "▁port e",
+ "▁ porte",
+ "да т",
+ "д ат",
+ "▁Brit ain",
+ "Enc oding",
+ "▁` <",
+ "Sp ace",
+ "S pace",
+ "▁r ap",
+ "▁ra p",
+ "▁ rap",
+ "▁pop ul",
+ "fl oor",
+ "f loor",
+ "spec ific",
+ "cle an",
+ "c lean",
+ "▁con qu",
+ "f b",
+ "▁introdu ce",
+ "▁Ent ity",
+ "▁ Entity",
+ "▁er folg",
+ "▁erf olg",
+ "at ol",
+ "ato l",
+ "a tol",
+ "ient os",
+ "iento s",
+ "ки педи",
+ "▁U t",
+ "▁б ри",
+ "▁ бри",
+ "ed uler",
+ "edu ler",
+ "edule r",
+ "▁conc entr",
+ "▁concent r",
+ "▁c her",
+ "▁ch er",
+ "▁che r",
+ "▁ cher",
+ "▁up grade",
+ "▁upgrad e",
+ "▁p ictures",
+ "▁picture s",
+ "▁Famil ie",
+ "M us",
+ "Lo ok",
+ "L ook",
+ "▁e ran",
+ "▁er an",
+ "▁era n",
+ "▁g ram",
+ "▁gr am",
+ "▁gra m",
+ "▁ gram",
+ "▁W o",
+ "np m",
+ "n pm",
+ "▁Sal v",
+ "▁Sa lv",
+ "▁c d",
+ "▁ cd",
+ "▁В ы",
+ "wa hl",
+ "w ahl",
+ "tr ain",
+ "tra in",
+ "t rain",
+ "ch em",
+ "che m",
+ "c hem",
+ "▁P il",
+ "▁Pi l",
+ "▁Con nect",
+ "▁ Connect",
+ "č e",
+ "▁h ast",
+ "▁ha st",
+ "▁has t",
+ "▁Mult i",
+ "▁Mul ti",
+ "▁ Multi",
+ "at ta",
+ "att a",
+ "a tta",
+ "▁S ound",
+ "▁So und",
+ "▁Sou nd",
+ "▁ Sound",
+ "sol ute",
+ "▁qu ote",
+ "▁quot e",
+ "▁ quote",
+ "▁o bst",
+ "▁ob st",
+ "▁obs t",
+ "cc iones",
+ "ccion es",
+ "c ciones",
+ "ib ly",
+ "▁b rand",
+ "▁br and",
+ "▁bra nd",
+ "▁bran d",
+ "▁ brand",
+ "▁convers ation",
+ "▁to utes",
+ "▁tout es",
+ "▁tou tes",
+ "▁toute s",
+ "▁R ub",
+ "▁Ru b",
+ "ie nia",
+ "ien ia",
+ "i enia",
+ "ir it",
+ "iri t",
+ "i rit",
+ "▁А нд",
+ "▁Ан д",
+ "edu led",
+ "edule d",
+ "▁T otal",
+ "▁To tal",
+ "▁Tot al",
+ "▁ Total",
+ "Di g",
+ "D ig",
+ "er em",
+ "ere m",
+ "e rem",
+ "▁s ki",
+ "▁sk i",
+ "▁ ski",
+ "De st",
+ "Des t",
+ "D est",
+ "Y Y",
+ "е ди",
+ "al y",
+ "a ly",
+ "▁back end",
+ "▁ backend",
+ "ul us",
+ "ulu s",
+ "u lus",
+ "▁feature d",
+ "▁person n",
+ "▁pers onn",
+ "▁sc hon",
+ "▁sch on",
+ "tr ace",
+ "tra ce",
+ "t race",
+ "▁I DE",
+ "▁ID E",
+ "▁ IDE",
+ "á j",
+ "▁anim als",
+ "▁animal s",
+ "▁ani mals",
+ "▁s now",
+ "▁sn ow",
+ "uv e",
+ "u ve",
+ "uer to",
+ "▁d rew",
+ "▁dr ew",
+ "▁dre w",
+ "▁Ye ah",
+ "▁S v",
+ "\\, \\",
+ "\\ ,\\",
+ "▁S erie",
+ "▁Se rie",
+ "▁Ser ie",
+ "▁second o",
+ "▁sec ondo",
+ "▁Leb ens",
+ "▁Leben s",
+ "▁acc ord",
+ "▁ac cord",
+ "▁C et",
+ "▁Ce t",
+ "er ade",
+ "era de",
+ "e rade",
+ "▁desp ite",
+ "▁C arlo",
+ "▁Car lo",
+ "▁Carl o",
+ "▁z ewnętrz",
+ "▁l ista",
+ "▁li sta",
+ "▁list a",
+ "▁ lista",
+ "ni co",
+ "nic o",
+ "n ico",
+ "▁Corpor ation",
+ "vs pace",
+ "v space",
+ "▁вой ны",
+ "▁st ands",
+ "▁stand s",
+ "▁stan ds",
+ "▁wor se",
+ "▁sim ult",
+ "▁si mult",
+ "▁pract ical",
+ "CO L",
+ "C OL",
+ "ch anged",
+ "change d",
+ "chan ged",
+ "▁Исто рия",
+ "б ри",
+ "in do",
+ "ind o",
+ "▁Lew is",
+ "▁pattern s",
+ "if ica",
+ "ific a",
+ "ifi ca",
+ "i fica",
+ "▁s mart",
+ "▁sm art",
+ "▁concern ed",
+ "ți i",
+ "ț ii",
+ "▁H ello",
+ "▁Hel lo",
+ "▁Hell o",
+ "▁ Hello",
+ "re ll",
+ "rel l",
+ "r ell",
+ "▁L ex",
+ "▁Le x",
+ "▁в то",
+ "▁cond itional",
+ "▁condition al",
+ "ot ted",
+ "ott ed",
+ "otte d",
+ "▁sh oot",
+ "▁sho ot",
+ "▁W ed",
+ "▁We d",
+ "▁мар та",
+ "au d",
+ "a ud",
+ "▁an te",
+ "▁ant e",
+ "▁ ante",
+ "ien tras",
+ "ient ras",
+ "▁p apers",
+ "▁pa pers",
+ "▁pap ers",
+ "▁paper s",
+ "▁port ug",
+ "▁Man agement",
+ "▁ Management",
+ "▁exerc ise",
+ "▁Begr iff",
+ "com mit",
+ "comm it",
+ "▁render ing",
+ "▁rend ering",
+ "▁rende ring",
+ "▁c zas",
+ "▁cz as",
+ "▁ czas",
+ "Dr op",
+ "D rop",
+ "er g",
+ "e rg",
+ "▁m ul",
+ "▁mu l",
+ "▁ mul",
+ "▁T an",
+ "▁Ta n",
+ "ie ro",
+ "ier o",
+ "i ero",
+ "▁loc ale",
+ "▁local e",
+ "▁ locale",
+ "▁in aug",
+ "du mp",
+ "d ump",
+ "ци й",
+ "▁symbol s",
+ "in ta",
+ "int a",
+ "▁aw arded",
+ "▁award ed",
+ "▁s ust",
+ "▁su st",
+ "▁sus t",
+ "▁S end",
+ "▁Se nd",
+ "▁Sen d",
+ "▁ Send",
+ "ї в",
+ "Re st",
+ "Res t",
+ "R est",
+ "zt en",
+ "zte n",
+ "z ten",
+ "ли м",
+ "л им",
+ "ri val",
+ "riv al",
+ "r ival",
+ "PO RT",
+ "P ORT",
+ "öl ker",
+ "im ately",
+ "imate ly",
+ "imat ely",
+ "ig te",
+ "igt e",
+ "ч ных",
+ "▁ter ra",
+ "▁ terra",
+ "ög lich",
+ "▁H om",
+ "▁Ho m",
+ "▁ Hom",
+ "▁h ex",
+ "▁he x",
+ "▁ hex",
+ "do ne",
+ "don e",
+ "d one",
+ "am ps",
+ "amp s",
+ "▁c et",
+ "▁ce t",
+ "PR E",
+ "P RE",
+ "ös t",
+ "ö st",
+ "▁fem me",
+ "Se lection",
+ "Select ion",
+ "▁z aw",
+ "▁za w",
+ "sp r",
+ "s pr",
+ "▁horse s",
+ "▁hors es",
+ "▁s nap",
+ "▁sn ap",
+ "Text Box",
+ "▁E clipse",
+ "ul le",
+ "ull e",
+ "u lle",
+ "ow ym",
+ "owy m",
+ "▁c omer",
+ "▁com er",
+ "▁co mer",
+ "▁come r",
+ "ne cess",
+ "co ok",
+ "c ook",
+ "en ger",
+ "eng er",
+ "-- >",
+ "- ->",
+ "▁p ří",
+ "▁př í",
+ "pan das",
+ "p andas",
+ "▁P lus",
+ "▁Pl us",
+ "▁ Plus",
+ "yl l",
+ "y ll",
+ "▁t error",
+ "▁te rror",
+ "▁ter ror",
+ "▁c rim",
+ "▁cr im",
+ "▁cri m",
+ "▁z ak",
+ "▁za k",
+ "▁ zak",
+ "iss ue",
+ "pa nel",
+ "pan el",
+ "p anel",
+ "sv g",
+ "▁re b",
+ "▁r eb",
+ "▁ reb",
+ "Custom er",
+ "sw itch",
+ "об ра",
+ "о бра",
+ "▁Champion ships",
+ "▁Championship s",
+ "▁Champions hips",
+ "cl o",
+ "c lo",
+ "at te",
+ "att e",
+ "a tte",
+ "▁any more",
+ "▁excell ent",
+ "▁opport unity",
+ "▁opportun ity",
+ "▁B ahn",
+ "▁Ba hn",
+ "▁Bah n",
+ "чи н",
+ "ч ин",
+ "et ing",
+ "eti ng",
+ "e ting",
+ "▁inc ident",
+ "to m",
+ "t om",
+ "Per s",
+ "Pe rs",
+ "P ers",
+ "bb en",
+ "bbe n",
+ "b ben",
+ "ствен ной",
+ "ственно й",
+ "и х",
+ "ro uter",
+ "route r",
+ "rout er",
+ "rou ter",
+ "r outer",
+ "▁new ly",
+ "▁sil ence",
+ "▁G NU",
+ "▁R ails",
+ "▁Ra ils",
+ "▁Rail s",
+ "▁A mb",
+ "▁Am b",
+ "▁Q ual",
+ "▁Qu al",
+ "▁ Qual",
+ "▁Sch aus",
+ "▁Sc haus",
+ "▁S ohn",
+ "▁So hn",
+ "▁A LL",
+ "▁AL L",
+ "▁ ALL",
+ "▁ro yal",
+ "▁roy al",
+ "▁ £",
+ "wi ę",
+ "w ię",
+ "▁ent fer",
+ "▁Re move",
+ "▁Rem ove",
+ "▁ Remove",
+ "▁hard ly",
+ "Us ing",
+ "U sing",
+ "ло г",
+ "▁I ch",
+ "▁d erni",
+ "▁der ni",
+ "▁Con nection",
+ "▁Connect ion",
+ "▁ Connection",
+ "fi sh",
+ "f ish",
+ "▁In form",
+ "▁Inf orm",
+ "▁Info rm",
+ "▁E ner",
+ "▁En er",
+ "ro it",
+ "r oit",
+ "B bb",
+ "View Model",
+ "V ideo",
+ "il ey",
+ "ile y",
+ "i ley",
+ "▁м ного",
+ "▁мно го",
+ "▁G em",
+ "▁Ge m",
+ "▁comp reh",
+ "▁compr eh",
+ "en umerate",
+ "ul as",
+ "ula s",
+ "u las",
+ "▁B ah",
+ "▁Ba h",
+ "▁Y et",
+ "▁Ye t",
+ "B R",
+ "х ра",
+ "▁count y",
+ "▁coun ty",
+ "▁H ist",
+ "▁His t",
+ "▁Hi st",
+ "▁Г у",
+ "▁ Ј",
+ "▁m ari",
+ "▁ma ri",
+ "▁mar i",
+ "▁C lar",
+ "▁Cl ar",
+ "▁Cla r",
+ "Bit map",
+ "B itmap",
+ "▁C z",
+ "▁m ån",
+ "▁må n",
+ "▁m ere",
+ "▁me re",
+ "▁mer e",
+ "▁mus ique",
+ "al so",
+ "als o",
+ "date s",
+ "da tes",
+ "dat es",
+ "d ates",
+ "▁D VD",
+ "▁g ol",
+ "▁go l",
+ "fo ny",
+ "fon y",
+ "f ony",
+ "▁Cast le",
+ "▁фа ми",
+ "▁arr ang",
+ "▁Bus iness",
+ "▁K az",
+ "▁Ka z",
+ "▁o sc",
+ "▁os c",
+ "▁ osc",
+ "▁se colo",
+ "▁sec olo",
+ "▁aff ected",
+ "▁affect ed",
+ "▁He alth",
+ "re b",
+ "r eb",
+ "ed itor",
+ "edit or",
+ "edi tor",
+ "▁own ed",
+ "▁ow ned",
+ "▁ owned",
+ "t l",
+ "▁v í",
+ "▁ ví",
+ "чни х",
+ "ч них",
+ "к ви",
+ "▁dev ient",
+ "▁devi ent",
+ "M utable",
+ "▁t egen",
+ "▁te gen",
+ "Reg ister",
+ "є ю",
+ "▁car acter",
+ "лл и",
+ "л ли",
+ "▁n ouvelle",
+ "▁nouve lle",
+ "ok o",
+ "o ko",
+ "icht et",
+ "ichte t",
+ "▁e vol",
+ "▁ev ol",
+ "▁H ab",
+ "▁Ha b",
+ "▁mil itar",
+ "▁milit ar",
+ "▁p uts",
+ "▁put s",
+ "▁pu ts",
+ "end if",
+ "endi f",
+ "▁Dav is",
+ "▁Da vis",
+ "▁Scot land",
+ "reg ular",
+ "▁Con text",
+ "▁Cont ext",
+ "▁ Context",
+ "is piel",
+ "isp iel",
+ "i spiel",
+ "▁G allery",
+ "▁Gall ery",
+ "\", \r",
+ "\" ,\r",
+ "▁a rc",
+ "▁ar c",
+ "▁ arc",
+ "▁IN FO",
+ "▁ INFO",
+ "▁c od",
+ "▁co d",
+ "▁ cod",
+ "ді в",
+ "д ів",
+ "▁v archar",
+ "▁var char",
+ "▁ varchar",
+ "▁tou jours",
+ "at ial",
+ "ati al",
+ "atia l",
+ "▁h anno",
+ "▁han no",
+ "▁проф ес",
+ "▁launch ed",
+ "▁насе лення",
+ "▁t on",
+ "▁to n",
+ "▁ ton",
+ "au sed",
+ "ause d",
+ "aus ed",
+ "a used",
+ "▁і з",
+ "▁t ö",
+ "▁P ur",
+ "▁Pu r",
+ "▁o lymp",
+ "AR N",
+ "ó m",
+ "▁a ugust",
+ "▁aug ust",
+ "▁f urn",
+ "▁fur n",
+ "▁fu rn",
+ "▁Col omb",
+ "▁Sta ats",
+ "▁Staat s",
+ "ho ra",
+ "hor a",
+ "h ora",
+ "▁м ор",
+ "▁мо р",
+ "▁ мор",
+ "can vas",
+ "▁gr ave",
+ "▁gra ve",
+ "▁grav e",
+ "▁com position",
+ "▁comp osition",
+ "▁compos ition",
+ "ac ja",
+ "▁которы е",
+ "▁ч о",
+ "▁ чо",
+ "Gener al",
+ "Gen eral",
+ "ан і",
+ "а ні",
+ "▁Joh annes",
+ "▁Johann es",
+ "▁Johan nes",
+ "ка р",
+ "к ар",
+ "▁ча ст",
+ "▁час т",
+ "▁Ва си",
+ "ss h",
+ "s sh",
+ "▁repla cing",
+ "▁< >",
+ "▁ <>",
+ "ці в",
+ "ц ів",
+ "la us",
+ "lau s",
+ "l aus",
+ "en y",
+ "e ny",
+ "äh l",
+ "ä hl",
+ "▁m arg",
+ "▁ma rg",
+ "▁mar g",
+ "ci ence",
+ "c ience",
+ "▁inst ruction",
+ "▁instru ction",
+ "▁instruct ion",
+ "▁ко ји",
+ "Ed itor",
+ "Edit or",
+ "▁fund amental",
+ "mu nd",
+ "mun d",
+ "m und",
+ "▁exception s",
+ "▁except ions",
+ "▁p late",
+ "▁pl ate",
+ "▁pla te",
+ "▁plat e",
+ "▁ plate",
+ "▁L is",
+ "▁Li s",
+ "▁d eren",
+ "▁de ren",
+ "▁der en",
+ "▁dere n",
+ "pr ep",
+ "pre p",
+ "p rep",
+ "▁janu ari",
+ "Sc ope",
+ "S cope",
+ "yn ast",
+ "yna st",
+ "r v",
+ "or sz",
+ "ors z",
+ "▁T ony",
+ "▁To ny",
+ "▁Ton y",
+ "▁д і",
+ "▁ ді",
+ "▁о дна",
+ "▁од на",
+ "▁s ab",
+ "▁sa b",
+ "ot i",
+ "o ti",
+ "je l",
+ "j el",
+ "▁gener ator",
+ "▁ generator",
+ "▁' .",
+ "▁ '.",
+ "▁sh arp",
+ "▁ sharp",
+ "▁то лько",
+ "▁account s",
+ "▁ž e",
+ "▁ že",
+ "▁for am",
+ "▁fo ram",
+ "▁g ouvern",
+ "TI ME",
+ "T IME",
+ "▁Sov iet",
+ "▁G é",
+ "▁ex ped",
+ "▁exp ed",
+ "▁ord inary",
+ "▁ordin ary",
+ "▁ ordinary",
+ "▁Con serv",
+ "▁Cons erv",
+ "▁Conse rv",
+ "▁com pla",
+ "▁comp la",
+ "▁compl a",
+ "te i",
+ "t ei",
+ "▁cap tain",
+ "▁capt ain",
+ "▁Sam uel",
+ "▁D ark",
+ "▁Dar k",
+ "▁в ін",
+ "▁ві н",
+ "▁de light",
+ "▁del ight",
+ "re cht",
+ "rec ht",
+ "di a",
+ "d ia",
+ "ess es",
+ "esse s",
+ "ul p",
+ "u lp",
+ "ш ки",
+ "be z",
+ "b ez",
+ "▁det ection",
+ "▁detect ion",
+ "▁cook ie",
+ "▁ cookie",
+ "an try",
+ "ant ry",
+ "Mult i",
+ "ob a",
+ "o ba",
+ "▁j oy",
+ "▁jo y",
+ "▁safe ty",
+ "▁saf ety",
+ "| ^",
+ "po d",
+ "p od",
+ "ad ém",
+ "▁Ch ron",
+ "▁Chr on",
+ "▁D jango",
+ "▁Dj ango",
+ "▁ehem al",
+ "k h",
+ "è le",
+ "▁p oc",
+ "▁po c",
+ "B ottom",
+ "la unch",
+ "ne m",
+ "n em",
+ "▁G ROUP",
+ "▁ GROUP",
+ "ní ho",
+ "▁G ib",
+ "▁Gi b",
+ "sd k",
+ "s dk",
+ "B E",
+ "▁G ene",
+ "▁Ge ne",
+ "▁Gen e",
+ "▁St aff",
+ "▁Sta ff",
+ "▁subsequ ent",
+ "ic ion",
+ "ici on",
+ "icio n",
+ "i cion",
+ "▁vict ory",
+ "▁c anon",
+ "▁can on",
+ "▁ca non",
+ "iz ar",
+ "iza r",
+ "i zar",
+ "iz ia",
+ "izi a",
+ "i zia",
+ "▁m ate",
+ "▁ma te",
+ "▁mat e",
+ "▁ mate",
+ "▁lay ers",
+ "▁layer s",
+ "▁ layers",
+ "su do",
+ "s udo",
+ "sch ule",
+ "per iment",
+ "ül et",
+ "ü let",
+ "AR CHAR",
+ "▁тер рито",
+ "▁me asures",
+ "▁measure s",
+ "▁meas ures",
+ "▁z ou",
+ "▁zo u",
+ "ops is",
+ "на ми",
+ "tb ody",
+ "t body",
+ "▁e se",
+ "▁es e",
+ "▁ ese",
+ "ster dam",
+ "sterd am",
+ "▁ph oto",
+ "▁phot o",
+ "▁ photo",
+ "ynchron ous",
+ "set minus",
+ "▁lo ads",
+ "▁load s",
+ "▁ loads",
+ "▁ple asure",
+ "▁me ille",
+ "}\\ ,",
+ "} \\,",
+ "qu al",
+ "qua l",
+ "q ual",
+ "▁fav our",
+ "▁r od",
+ "▁ro d",
+ "▁ rod",
+ "De r",
+ "D er",
+ "ра бо",
+ "раб о",
+ "▁pr essed",
+ "▁pres sed",
+ "▁press ed",
+ "▁ pressed",
+ "r ę",
+ "ie ving",
+ "iev ing",
+ "mate rial",
+ "m aterial",
+ "vi rt",
+ "vir t",
+ "v irt",
+ "▁cap able",
+ "с ло",
+ "us hed",
+ "ush ed",
+ "▁по бе",
+ "uset ts",
+ "un signed",
+ "uns igned",
+ "k ów",
+ "▁o v",
+ "▁ ov",
+ "eg eben",
+ "ege ben",
+ "e geben",
+ "▁app lying",
+ "▁apply ing",
+ "▁gal ax",
+ "▁ga lax",
+ "▁O racle",
+ "▁Or acle",
+ "▁Stutt gart",
+ "In fl",
+ "Inf l",
+ "ach usetts",
+ "▁de el",
+ "li re",
+ "l ire",
+ "▁stat unit",
+ "▁Polit iker",
+ "▁Politik er",
+ "▁beaut y",
+ ") >",
+ "▁Columb ia",
+ "▁zewnętrz ne",
+ "▁про гра",
+ "▁пр огра",
+ "▁d x",
+ "▁ dx",
+ "ck now",
+ "c know",
+ "▁d ub",
+ "▁du b",
+ "un ächst",
+ "find ViewById",
+ "▁M and",
+ "▁Man d",
+ "▁Ma nd",
+ "ál l",
+ "á ll",
+ "na ire",
+ "n aire",
+ "▁dest in",
+ "is ting",
+ "ist ing",
+ "isti ng",
+ "ag gi",
+ "agg i",
+ "a ggi",
+ "ch art",
+ "char t",
+ "cha rt",
+ "c hart",
+ "▁just ice",
+ "Sim ple",
+ "▁un fortunately",
+ "і р",
+ "▁qu esta",
+ "▁que sta",
+ "▁quest a",
+ "▁ questa",
+ "▁Govern or",
+ "я в",
+ "▁mús ica",
+ "▁equ ipo",
+ "▁equip o",
+ "▁D est",
+ "▁De st",
+ "▁Des t",
+ "▁ Dest",
+ "el ect",
+ "ele ct",
+ "e lect",
+ "Stack Trace",
+ "зо м",
+ "з ом",
+ "pr oc",
+ "pro c",
+ "p roc",
+ "ent in",
+ "enti n",
+ "ad ora",
+ "ado ra",
+ "ador a",
+ "▁Л ю",
+ "▁register ed",
+ "H L",
+ "face book",
+ "fac ebook",
+ "▁st oring",
+ "▁stor ing",
+ "▁sto ring",
+ "▁Current ly",
+ "▁qu adr",
+ "▁quad r",
+ "Stand ard",
+ "tr im",
+ "tri m",
+ "t rim",
+ "ear s",
+ "ea rs",
+ "e ars",
+ "se nder",
+ "sen der",
+ "send er",
+ "s ender",
+ "▁V as",
+ "▁Va s",
+ "▁ed ific",
+ "▁B ür",
+ "▁Bü r",
+ "▁C ountry",
+ "▁Count ry",
+ "▁Coun try",
+ "▁ Country",
+ "th a",
+ "t ha",
+ "; \"",
+ "no r",
+ "n or",
+ "▁Do ctor",
+ "▁Doc tor",
+ "ru ment",
+ "rum ent",
+ "r ument",
+ "Ge n",
+ "G en",
+ "▁B uen",
+ "▁Bu en",
+ "ra de",
+ "rad e",
+ "r ade",
+ "▁k un",
+ "n avigation",
+ "Pa y",
+ "P ay",
+ "▁capt ured",
+ "▁capture d",
+ "▁st ruck",
+ "▁str uck",
+ "▁stru ck",
+ "ven ir",
+ "ém ent",
+ "é ment",
+ "▁T ree",
+ "▁Tr ee",
+ "▁Tre e",
+ "▁ Tree",
+ "▁x x",
+ "▁ xx",
+ "▁n arr",
+ "▁na rr",
+ "▁nar r",
+ "ль ного",
+ "льно го",
+ "▁inst alling",
+ "▁install ing",
+ "▁instal ling",
+ "▁associ ation",
+ "▁insert ed",
+ "▁inser ted",
+ "er ner",
+ "ern er",
+ "erne r",
+ "valid ate",
+ "▁l ut",
+ "▁lu t",
+ "▁g lo",
+ "▁gl o",
+ "▁techn ology",
+ "▁P lace",
+ "▁Pl ace",
+ "▁Pla ce",
+ "▁ Place",
+ "$ ?",
+ "▁z v",
+ "с лі",
+ "E P",
+ "▁at mos",
+ "ug o",
+ "u go",
+ "ér t",
+ "é rt",
+ "▁W erk",
+ "▁Wer k",
+ "▁% }",
+ "te le",
+ "tel e",
+ "t ele",
+ "Sp an",
+ "S pan",
+ "▁R aj",
+ "▁Ra j",
+ "▁Person en",
+ "▁Pers onen",
+ "▁C ant",
+ "▁Can t",
+ "▁Ca nt",
+ "▁com bat",
+ "▁comb at",
+ "▁observ ation",
+ "▁obs ervation",
+ "param eter",
+ "para meter",
+ "▁agre ed",
+ "▁agree d",
+ "▁agr eed",
+ "pu r",
+ "p ur",
+ "▁sh adow",
+ "▁ shadow",
+ "▁g ł",
+ "Key s",
+ "Ke ys",
+ "Cre d",
+ "Cr ed",
+ "C red",
+ "ou ri",
+ "our i",
+ "o uri",
+ "▁p ale",
+ "▁pa le",
+ "▁pal e",
+ "ic ké",
+ "ick é",
+ "▁We ek",
+ "▁ Week",
+ "▁Pr ime",
+ "▁Pri me",
+ "▁Prim e",
+ "> .",
+ "Init ial",
+ "▁о дин",
+ "▁од ин",
+ "▁' ',",
+ "▁'' ,",
+ "▁у чи",
+ "▁In v",
+ "▁ Inv",
+ "col a",
+ "co la",
+ "c ola",
+ "ci ble",
+ "c ible",
+ "▁The atre",
+ "▁b em",
+ "▁be m",
+ "▁satisf y",
+ "x l",
+ "▁ра зви",
+ "▁раз ви",
+ "▁p ixel",
+ "▁pix el",
+ "lá n",
+ "l án",
+ "▁tw ee",
+ "▁twe e",
+ "ço n",
+ "ç on",
+ "не ния",
+ "▁A T",
+ "▁ AT",
+ "èg e",
+ "è ge",
+ "▁M ort",
+ "▁Mor t",
+ "▁Mo rt",
+ "▁my sq",
+ "▁ mysq",
+ "ft en",
+ "fte n",
+ "f ten",
+ "▁п ес",
+ "▁пе с",
+ "ém a",
+ "é ma",
+ "▁Service s",
+ "▁Serv ices",
+ "▁ Services",
+ "custom er",
+ "▁A WS",
+ "ъ т",
+ "▁A ch",
+ "▁Ac h",
+ "% .",
+ "▁clar ify",
+ "▁уни версите",
+ "xt ure",
+ "um i",
+ "u mi",
+ "▁s å",
+ "▁P el",
+ "▁Pe l",
+ "se rial",
+ "ser ial",
+ "UR I",
+ "U RI",
+ "▁r g",
+ "▁ rg",
+ "▁со ста",
+ "ch estra",
+ "che stra",
+ "ches tra",
+ "]. [",
+ "] .[",
+ "we n",
+ "w en",
+ "▁Lond res",
+ "▁an ys",
+ "▁any s",
+ "Data Source",
+ "▁рай оне",
+ "▁райо не",
+ "▁район е",
+ "▁re in",
+ "▁r ein",
+ "▁rei n",
+ "▁met adata",
+ "▁meta data",
+ "▁ metadata",
+ "um ble",
+ "umb le",
+ "ar beit",
+ "arbe it",
+ "hn er",
+ "h ner",
+ "ci ent",
+ "cie nt",
+ "c ient",
+ "▁n orte",
+ "▁nor te",
+ "▁о на",
+ "▁он а",
+ "▁ она",
+ "▁sc ored",
+ "▁score d",
+ "▁r ay",
+ "▁ra y",
+ "▁ ray",
+ "▁фев ра",
+ "▁фе вра",
+ "▁pro tagon",
+ "▁prot agon",
+ "▁S ac",
+ "▁Sa c",
+ "▁comm only",
+ "▁common ly",
+ "Linear Layout",
+ "▁app lic",
+ "▁ма я",
+ "З а",
+ "▁access ible",
+ "ie wer",
+ "iew er",
+ "fl ag",
+ "f lag",
+ "▁R ück",
+ "ä u",
+ "▁e rano",
+ "▁er ano",
+ "▁era no",
+ "▁eran o",
+ "▁auth entic",
+ "▁ authentic",
+ "▁R y",
+ "▁не ско",
+ "▁emb argo",
+ "▁embar go",
+ "▁d ry",
+ "▁dr y",
+ "▁reason able",
+ "▁Mod ule",
+ "▁ Module",
+ "▁acc eler",
+ "▁inter view",
+ "▁C reek",
+ "▁Cre ek",
+ "▁al pha",
+ "▁ alpha",
+ "se rie",
+ "ser ie",
+ "s erie",
+ "Th ey",
+ "The y",
+ "ю чи",
+ "▁H of",
+ "▁Ho f",
+ "▁C R",
+ "▁ CR",
+ "mod al",
+ "mo dal",
+ "▁sequence s",
+ "▁sequ ences",
+ "cl osed",
+ "close d",
+ "clos ed",
+ "clo sed",
+ ")} $",
+ ") }$",
+ "▁Ч ер",
+ "▁Че р",
+ "▁OR DER",
+ "▁ ORDER",
+ "Right arrow",
+ "R ightarrow",
+ "haus en",
+ "}} _",
+ "} }_",
+ "▁tamb é",
+ "▁magn etic",
+ "▁magnet ic",
+ "▁Mc C",
+ "▁win ning",
+ "under line",
+ "▁Bill board",
+ "na io",
+ "▁l iqu",
+ "▁li qu",
+ "▁ liqu",
+ "display style",
+ "time out",
+ "▁consider able",
+ "▁e ben",
+ "▁eb en",
+ "▁ eben",
+ "iffer ent",
+ "iffe rent",
+ "an u",
+ "a nu",
+ "▁С ов",
+ "▁Со в",
+ "[ (",
+ "▁: -)",
+ "▁:- )",
+ "le itung",
+ "form ed",
+ "for med",
+ "▁Man ager",
+ "▁ Manager",
+ "▁on click",
+ "T Y",
+ "та х",
+ "C V",
+ "run time",
+ "r untime",
+ "po que",
+ "▁Л о",
+ "Tem p",
+ "Te mp",
+ "T emp",
+ "lo aded",
+ "load ed",
+ "▁! ==",
+ "▁!= =",
+ "▁s inger",
+ "▁sing er",
+ "▁sin ger",
+ "fa r",
+ "f ar",
+ "▁Com ple",
+ "▁Comp le",
+ "▁ Comple",
+ "▁Ö sterreich",
+ "Pol icy",
+ "▁work er",
+ "▁wor ker",
+ "▁ worker",
+ "W rapper",
+ "ob i",
+ "o bi",
+ "▁discuss ed",
+ "▁b uy",
+ "▁bu y",
+ "▁янва ря",
+ "▁D in",
+ "▁Di n",
+ "▁g ed",
+ "▁ge d",
+ "▁ ged",
+ "ско ј",
+ "E urope",
+ "▁t all",
+ "▁tal l",
+ "▁ta ll",
+ "ho s",
+ "h os",
+ "ла го",
+ "▁B lock",
+ "▁Bl ock",
+ "▁Blo ck",
+ "▁ Block",
+ "▁ident ified",
+ "List View",
+ "▁attempt ing",
+ "▁typ ical",
+ "ps um",
+ "p sum",
+ "os ter",
+ "ost er",
+ "o ster",
+ "▁ж урна",
+ "P e",
+ "mer ce",
+ "▁un expected",
+ "hu i",
+ "h ui",
+ "let ter",
+ "lett er",
+ "lette r",
+ "l etter",
+ "▁nue vo",
+ "▁а бо",
+ "▁VAL UES",
+ "▁I z",
+ "Fl ags",
+ "Flag s",
+ "▁TR UE",
+ "▁ TRUE",
+ "iz ación",
+ "iza ción",
+ "▁gro wing",
+ "▁grow ing",
+ "es tre",
+ "est re",
+ "estr e",
+ "e stre",
+ "▁p oly",
+ "▁po ly",
+ "▁pol y",
+ "▁ poly",
+ "▁St one",
+ "▁Sto ne",
+ "▁V III",
+ "▁VI II",
+ "▁VII I",
+ "▁local host",
+ "▁ localhost",
+ "äh lt",
+ "ähl t",
+ "▁embed ded",
+ "jd bc",
+ "j dbc",
+ "▁con vention",
+ "▁conv ention",
+ "▁conven tion",
+ "▁convent ion",
+ "▁s cala",
+ "▁sc ala",
+ "▁scal a",
+ "▁ scala",
+ "со к",
+ "с ок",
+ "▁an alog",
+ "▁anal og",
+ "▁\" +",
+ "▁ \"+",
+ "ц ю",
+ "oc c",
+ "o cc",
+ "▁l itt",
+ "▁li tt",
+ "▁lit t",
+ "P N",
+ "▁а ктив",
+ "▁ак тив",
+ "att ributes",
+ "attribute s",
+ "▁F erd",
+ "▁Fe rd",
+ "▁Fer d",
+ "▁az ure",
+ "▁ azure",
+ "ș ti",
+ "ño s",
+ "ñ os",
+ "pi ng",
+ "pin g",
+ "p ing",
+ "▁te acher",
+ "▁teach er",
+ "▁tea cher",
+ "} &",
+ "ip e",
+ "i pe",
+ "▁N ob",
+ "▁No b",
+ "▁и ма",
+ "▁им а",
+ "Bi nd",
+ "B ind",
+ "▁mag ic",
+ "▁Trans port",
+ "▁ Transport",
+ "ix el",
+ "▁comp uted",
+ "▁comput ed",
+ "▁compute d",
+ "ag na",
+ "agn a",
+ "er st",
+ "ers t",
+ "H A",
+ "W ait",
+ "▁author s",
+ "▁auth ors",
+ "▁; )",
+ "cl am",
+ "cla m",
+ "c lam",
+ "▁Pen nsylvan",
+ "▁d rug",
+ "▁dr ug",
+ "▁dru g",
+ "▁v ain",
+ "▁va in",
+ "▁employ ed",
+ "▁individ uals",
+ "▁individual s",
+ "▁an ge",
+ "▁ang e",
+ "▁ ange",
+ "ut at",
+ "uta t",
+ "u tat",
+ "▁$ -",
+ "▁ $-",
+ "cor rect",
+ "corr ect",
+ "▁exper iments",
+ "▁experiment s",
+ "Arg ument",
+ "▁I B",
+ "▁ IB",
+ "▁p ère",
+ "▁B rian",
+ "▁Br ian",
+ "ber ger",
+ "berg er",
+ "Ma c",
+ "M ac",
+ "ia st",
+ "ias t",
+ "i ast",
+ "Per m",
+ "Pe rm",
+ "P erm",
+ "Ca st",
+ "C ast",
+ "▁{ };",
+ "▁{} ;",
+ "▁St udent",
+ "▁Stud ent",
+ "▁Stu dent",
+ "▁ Student",
+ "▁st att",
+ "▁stat t",
+ "▁sta tt",
+ "al gebra",
+ "▁equ als",
+ "▁equal s",
+ "▁eq uals",
+ "▁ equals",
+ "▁pro jet",
+ "▁prés ident",
+ "Activity Thread",
+ "▁ein z",
+ "en ia",
+ "eni a",
+ "e nia",
+ "re z",
+ "r ez",
+ "ess ional",
+ "ession al",
+ "▁авгу ста",
+ "over ride",
+ "ne ws",
+ "new s",
+ "▁pla net",
+ "▁plan et",
+ "▁plane t",
+ "n n",
+ "▁W is",
+ "▁Wi s",
+ "тв ер",
+ "т вер",
+ "▁Val id",
+ "▁ Valid",
+ "▁G ef",
+ "▁Ge f",
+ "гра д",
+ "▁e ig",
+ "an tom",
+ "ant om",
+ "anto m",
+ "▁Me ister",
+ "fl ags",
+ "flag s",
+ "ffic iale",
+ "fficial e",
+ "ша я",
+ "- ,",
+ "at ionen",
+ "ation en",
+ "ati onen",
+ "atio nen",
+ "mo use",
+ "m ouse",
+ "stand ard",
+ "Sing le",
+ "▁b ol",
+ "▁bo l",
+ "▁ bol",
+ "is is",
+ "isi s",
+ "▁f ruit",
+ "▁fr uit",
+ "c ourse",
+ "it ants",
+ "itan ts",
+ "▁é taient",
+ "▁ét aient",
+ "Text Field",
+ "▁ф он",
+ "▁фо н",
+ "▁a ircraft",
+ "▁air craft",
+ "▁I SSN",
+ "▁IS SN",
+ "▁west ern",
+ "▁ western",
+ "▁represent ing",
+ "Es p",
+ "E sp",
+ "▁El se",
+ "▁Els e",
+ "▁ Else",
+ "▁s izes",
+ "▁si zes",
+ "▁size s",
+ "▁satisf ied",
+ "ot os",
+ "oto s",
+ "U D",
+ "Fin al",
+ "Fi nal",
+ "F inal",
+ "ó j",
+ "è ve",
+ "▁R oy",
+ "▁Ro y",
+ "ff en",
+ "ffe n",
+ "f fen",
+ "▁s alt",
+ "▁sa lt",
+ "▁sal t",
+ "▁L abel",
+ "▁La bel",
+ "▁Lab el",
+ "▁ Label",
+ "S k",
+ "▁к ре",
+ "▁ кре",
+ "▁Ли тература",
+ "▁с м",
+ "Att ributes",
+ "Attribute s",
+ "ay e",
+ "a ye",
+ "сь к",
+ "▁вы со",
+ "- )",
+ "os es",
+ "ose s",
+ "cal cul",
+ "calc ul",
+ "▁C annot",
+ "▁Can not",
+ "▁ Cannot",
+ "Gener ic",
+ "em o",
+ "e mo",
+ "▁A utor",
+ "▁Aut or",
+ "▁Au tor",
+ "▁Auto r",
+ "лё н",
+ "л ён",
+ "ла га",
+ "vo te",
+ "v ote",
+ "lic ates",
+ "licate s",
+ "lica tes",
+ "ru s",
+ "r us",
+ "él i",
+ "é li",
+ "op f",
+ "o pf",
+ "at ique",
+ "ati que",
+ "sc ala",
+ "scal a",
+ "s cala",
+ "▁Oh io",
+ "▁Brit ann",
+ "▁b ef",
+ "▁be f",
+ "▁Е вро",
+ "▁Ев ро",
+ "▁Care er",
+ "is ée",
+ "isé e",
+ "ó t",
+ "bo se",
+ "bos e",
+ "b ose",
+ "▁Б ер",
+ "▁Бе р",
+ "▁Cont roller",
+ "▁Control ler",
+ "▁ Controller",
+ "po le",
+ "pol e",
+ "p ole",
+ "▁al len",
+ "▁all en",
+ "▁alle n",
+ "▁ allen",
+ "▁h ack",
+ "▁ha ck",
+ "▁ext ent",
+ "▁cal ci",
+ "▁calc i",
+ "Me r",
+ "M er",
+ "▁sum mary",
+ "▁summar y",
+ "▁summ ary",
+ "▁ summary",
+ "Mar t",
+ "Ma rt",
+ "M art",
+ "▁histor ical",
+ "▁historic al",
+ "im at",
+ "ima t",
+ "i mat",
+ "bu d",
+ "b ud",
+ "▁F OR",
+ "▁FO R",
+ "▁ FOR",
+ "ex port",
+ "exp ort",
+ "ed i",
+ "e di",
+ "Map ping",
+ "Mapp ing",
+ "Ma pping",
+ "M apping",
+ "▁A y",
+ "▁R uby",
+ "▁Ru by",
+ "▁Rub y",
+ "▁definition s",
+ "▁defin itions",
+ "▁definit ions",
+ "▁{ $",
+ "▁ {$",
+ "▁y ours",
+ "▁you rs",
+ "▁your s",
+ "▁yo urs",
+ "ri as",
+ "ria s",
+ "r ias",
+ "To uch",
+ "T ouch",
+ "▁G az",
+ "▁Ga z",
+ "▁Aut om",
+ "▁Au tom",
+ "▁Auto m",
+ "▁ Autom",
+ "▁и стори",
+ "▁исто ри",
+ "▁ис тори",
+ "▁d elen",
+ "▁de len",
+ "▁del en",
+ "▁K inder",
+ "▁Kind er",
+ "▁Ki nder",
+ "▁Kin der",
+ "}} %",
+ "} }%",
+ "▁perform ing",
+ "F R",
+ "▁S ig",
+ "▁Si g",
+ "▁B rad",
+ "▁Br ad",
+ "▁Bra d",
+ "br as",
+ "bra s",
+ "b ras",
+ "▁J ar",
+ "▁Ja r",
+ "pk g",
+ "p kg",
+ "w r",
+ "▁P ays",
+ "▁Pa ys",
+ "▁Pay s",
+ "N C",
+ "▁op posed",
+ "▁opp osed",
+ "▁oppos ed",
+ "Tr y",
+ "T ry",
+ "▁ве зе",
+ "▁B og",
+ "▁Bo g",
+ "▁writ es",
+ "▁wr ites",
+ "▁write s",
+ "▁st ories",
+ "▁stor ies",
+ "▁sto ries",
+ "▁m ater",
+ "▁ma ter",
+ "▁mat er",
+ "▁mate r",
+ "▁stag ione",
+ "▁s ty",
+ "▁st y",
+ "▁ sty",
+ "▁compat ible",
+ "▁ compatible",
+ "he ast",
+ "h east",
+ "▁G uy",
+ "▁Gu y",
+ "egr ünd",
+ "▁ident ifier",
+ "▁ identifier",
+ "▁he ads",
+ "▁head s",
+ "по зи",
+ "▁st up",
+ "▁t f",
+ "▁ tf",
+ "▁ј ош",
+ "▁H ugh",
+ "▁Hu gh",
+ "▁c ards",
+ "▁car ds",
+ "▁card s",
+ "▁ cards",
+ "ov y",
+ "o vy",
+ "▁To ast",
+ "al las",
+ "all as",
+ "alla s",
+ "▁p úblic",
+ "▁ass umes",
+ "▁assum es",
+ "▁assume s",
+ "▁чемпи она",
+ "yc ler",
+ "ycle r",
+ "y cler",
+ "▁Juni or",
+ "▁Jun ior",
+ "▁F ich",
+ "▁estim ated",
+ "▁estimate d",
+ "ze rw",
+ "zer w",
+ "di alog",
+ "dia log",
+ "d ialog",
+ "ши н",
+ "ш ин",
+ "sh ell",
+ "she ll",
+ "s hell",
+ "▁н их",
+ "▁ни х",
+ "▁ них",
+ "▁p itch",
+ "▁pit ch",
+ "до л",
+ "out ube",
+ "▁S anti",
+ "▁San ti",
+ "▁Sant i",
+ "On ClickListener",
+ "▁M agyar",
+ "▁Mag yar",
+ "▁v ue",
+ "▁vu e",
+ "▁ vue",
+ "i ão",
+ "▁` #",
+ "col lect",
+ "coll ect",
+ "▁R ou",
+ "▁Ro u",
+ "anal ysis",
+ "istrz ost",
+ "▁Dig ital",
+ "▁ Digital",
+ "▁c rist",
+ "▁cr ist",
+ "▁cri st",
+ "ri ere",
+ "rie re",
+ "rier e",
+ "r iere",
+ "▁cam po",
+ "▁camp o",
+ "U s",
+ "▁circ a",
+ "▁cir ca",
+ "▁Com ponent",
+ "▁ Component",
+ "▁NS String",
+ "▁ NSString",
+ "p d",
+ "▁pr ince",
+ "▁prin ce",
+ "▁in voke",
+ "▁inv oke",
+ "▁ invoke",
+ "▁Mar ine",
+ "▁Mari ne",
+ "Al low",
+ "All ow",
+ "est ic",
+ "esti c",
+ "ри сти",
+ "рис ти",
+ "рист и",
+ "bo ne",
+ "bon e",
+ "b one",
+ "ту ры",
+ "тур ы",
+ "▁pass ion",
+ "ác ió",
+ "á ció",
+ "▁o rn",
+ "▁or n",
+ "▁ orn",
+ "ве д",
+ "▁in vari",
+ "▁inv ari",
+ "▁н і",
+ "▁ ні",
+ "Re move",
+ "Rem ove",
+ "en cies",
+ "enc ies",
+ "enci es",
+ "il ib",
+ "ili b",
+ "i lib",
+ "▁Direct or",
+ "▁Dire ctor",
+ "▁Dir ector",
+ "\" \"",
+ "▁Con se",
+ "▁Cons e",
+ "google apis",
+ "ó k",
+ "▁У кра",
+ "▁H aving",
+ "▁Ha ving",
+ "▁Hav ing",
+ "Do main",
+ "Dom ain",
+ "ie rz",
+ "ier z",
+ "но логи",
+ "н ологи",
+ "Ch o",
+ "C ho",
+ "un defined",
+ "und efined",
+ "al loc",
+ "all oc",
+ "allo c",
+ "▁p ied",
+ "▁pi ed",
+ "▁pie d",
+ "▁f raction",
+ "▁fr action",
+ "▁fra ction",
+ "bi a",
+ "b ia",
+ "▁п оло",
+ "▁по ло",
+ "▁пол о",
+ "▁ поло",
+ "ug no",
+ "min ister",
+ "▁princip ale",
+ "▁principal e",
+ "▁ref used",
+ "▁refuse d",
+ "brow ser",
+ "b rowser",
+ "* ,",
+ "▁H ospital",
+ "▁univers al",
+ "▁Ern st",
+ "wh o",
+ "w ho",
+ "▁G ard",
+ "▁Gar d",
+ "▁Ga rd",
+ "' _",
+ "con de",
+ "co nde",
+ "cond e",
+ "c onde",
+ "▁[ {",
+ "▁ [{",
+ "so b",
+ "s ob",
+ "▁C rit",
+ "▁Cr it",
+ "▁дека бря",
+ "▁p unto",
+ "▁pun to",
+ "▁punt o",
+ "▁einges etzt",
+ "▁t ör",
+ "▁tö r",
+ "▁N i",
+ "▁w orry",
+ "▁wor ry",
+ "▁leg end",
+ "▁ legend",
+ "▁бу ли",
+ "▁k omm",
+ "▁kom m",
+ "▁ko mm",
+ "ri jk",
+ "rij k",
+ "r ijk",
+ "ef fect",
+ "eff ect",
+ "e ffect",
+ "Or i",
+ "O ri",
+ "RE S",
+ "R ES",
+ "▁P eters",
+ "▁Pe ters",
+ "▁Peter s",
+ "▁Pet ers",
+ "▁B aron",
+ "▁Bar on",
+ "▁Ba ron",
+ "▁G ot",
+ "▁Go t",
+ "▁hon est",
+ "▁ho nest",
+ "är e",
+ "ä re",
+ "ás z",
+ "á sz",
+ "▁no ble",
+ "▁nob le",
+ "▁con clusion",
+ "▁conclus ion",
+ "▁concl usion",
+ "▁form atting",
+ "▁format ting",
+ "▁formatt ing",
+ "▁o tto",
+ "▁ot to",
+ "▁ott o",
+ "▁ otto",
+ "▁de leg",
+ "▁del eg",
+ "м б",
+ "pt op",
+ "pto p",
+ "p top",
+ "▁s ends",
+ "▁send s",
+ "▁sen ds",
+ "ur name",
+ "urn ame",
+ "▁f estival",
+ "▁fest ival",
+ "▁festiv al",
+ ", ",
+ "ру с",
+ "р ус",
+ "▁d och",
+ "▁do ch",
+ "▁doc h",
+ "sub ject",
+ "su bject",
+ "▁care ful",
+ "qu ent",
+ "que nt",
+ "q uent",
+ "▁Lo ad",
+ "▁ Load",
+ "temper aturen",
+ "▁r ue",
+ "▁ru e",
+ "Mem ory",
+ "ț a",
+ "ion a",
+ "io na",
+ "i ona",
+ "▁dent ro",
+ "▁beg ann",
+ "▁began n",
+ "▁A qu",
+ "▁scient ific",
+ "ka ń",
+ "ло к",
+ "л ок",
+ "el de",
+ "eld e",
+ "▁Th ose",
+ "qu ier",
+ "qui er",
+ "act ér",
+ "▁Auf lage",
+ ") '",
+ "▁grad ient",
+ "▁ gradient",
+ "in teger",
+ "inte ger",
+ "▁Im port",
+ "▁Imp ort",
+ "▁ Import",
+ "S K",
+ "▁St atus",
+ "▁Stat us",
+ "▁ Status",
+ "▁exp lo",
+ "▁expl o",
+ "A E",
+ "Sh ell",
+ "She ll",
+ "S hell",
+ "▁Pa ulo",
+ "▁Paul o",
+ ". »",
+ "} ",
+ "fl ex",
+ "f lex",
+ "▁ко мп",
+ "▁ком п",
+ "on den",
+ "ond en",
+ "onde n",
+ "ac cept",
+ "▁miejs ce",
+ "H ub",
+ "all eng",
+ "alle ng",
+ "allen g",
+ "W N",
+ "▁implement ing",
+ "▁ лу",
+ "▁conf using",
+ "▁Inst all",
+ "▁ Install",
+ "▁r ou",
+ "▁ro u",
+ "▁ rou",
+ "▁про ек",
+ "Access or",
+ "Acc essor",
+ "ља шње",
+ "od io",
+ "odi o",
+ "▁app lies",
+ "ющи й",
+ "ю щий",
+ "▁M undial",
+ "Ét at",
+ "É tat",
+ "iet nam",
+ "hu m",
+ "h um",
+ "▁с бор",
+ "ord inate",
+ "ordin ate",
+ "Fran ce",
+ "Fr ance",
+ "F rance",
+ "▁p rend",
+ "▁pr end",
+ "▁pre nd",
+ "el temperaturen",
+ "▁trab aj",
+ "A xis",
+ "▁м но",
+ "prim ary",
+ "▁Se ite",
+ "▁Seit e",
+ "per mission",
+ "perm ission",
+ "▁or den",
+ "▁ord en",
+ "▁ orden",
+ "sin ce",
+ "s ince",
+ "▁i c",
+ "▁ ic",
+ "▁Bra zil",
+ "▁b are",
+ "▁bar e",
+ "▁ba re",
+ "▁ bare",
+ "▁N ar",
+ "▁Na r",
+ "▁J ur",
+ "▁Ju r",
+ "▁fre edom",
+ "▁free dom",
+ "▁med ical",
+ "▁medic al",
+ "▁medi cal",
+ "isch of",
+ "isc hof",
+ "▁с п",
+ "ie ż",
+ "▁boot strap",
+ "▁ bootstrap",
+ "▁ …",
+ "▁fa cil",
+ "▁fac il",
+ "co rd",
+ "cor d",
+ "c ord",
+ "ва не",
+ "ван е",
+ "в ане",
+ "▁Al len",
+ "▁All en",
+ "▁Alle n",
+ "av id",
+ "avi d",
+ "a vid",
+ "ing ham",
+ "za s",
+ "z as",
+ "▁in spect",
+ "▁ins pect",
+ "▁insp ect",
+ "it ten",
+ "itt en",
+ "itte n",
+ "os ti",
+ "ost i",
+ "u h",
+ "c é",
+ "▁# ####",
+ "▁### ##",
+ "▁#### #",
+ "ci us",
+ "ciu s",
+ "c ius",
+ "om y",
+ "o my",
+ "▁Se ine",
+ "▁Sein e",
+ "bre s",
+ "br es",
+ "b res",
+ "▁gen us",
+ "▁genu s",
+ "O ther",
+ "▁Gold en",
+ "▁Gol den",
+ "mu l",
+ "m ul",
+ "▁Спо љашње",
+ "▁gen naio",
+ "▁care fully",
+ "▁careful ly",
+ "aa l",
+ "a al",
+ "▁anal yt",
+ "▁analy t",
+ "ne ur",
+ "n eur",
+ "▁st retch",
+ "▁str etch",
+ "▁O cc",
+ "▁ Occ",
+ "ol as",
+ "ola s",
+ "o las",
+ "▁fire base",
+ "▁ firebase",
+ "▁expect ing",
+ "bas ic",
+ "cond ition",
+ "pr ov",
+ "pro v",
+ "p rov",
+ "▁W asser",
+ "▁Was ser",
+ "▁Wass er",
+ "▁conc aten",
+ "▁e vil",
+ "▁ev il",
+ "▁coefficient s",
+ "We st",
+ "W est",
+ "ir y",
+ "i ry",
+ "ph as",
+ "pha s",
+ "p has",
+ "▁J am",
+ "▁Ja m",
+ "fo is",
+ "f ois",
+ "▁cons id",
+ "▁main ten",
+ "▁mai nten",
+ "ni m",
+ "n im",
+ "es ser",
+ "ess er",
+ "esse r",
+ "es z",
+ "e sz",
+ "un ta",
+ "unt a",
+ "ue st",
+ "ues t",
+ "u est",
+ "▁cred entials",
+ "_ ;",
+ "Di m",
+ "D im",
+ "пре де",
+ "пр еде",
+ "▁B ü",
+ "bu ilt",
+ "▁A cadem",
+ "▁Ac adem",
+ "▁a udi",
+ "▁au di",
+ "▁aud i",
+ "▁ audi",
+ "▁tv å",
+ "in and",
+ "ina nd",
+ "▁The ater",
+ "▁gen re",
+ "ço s",
+ "ç os",
+ "gres ql",
+ "gre sql",
+ "▁we ap",
+ "▁R ab",
+ "▁Ra b",
+ "▁ ’",
+ "▁ad ult",
+ "▁d ém",
+ "▁dé m",
+ "` `",
+ "▁st abil",
+ "▁sta bil",
+ "▁correspond s",
+ "▁E astern",
+ "▁East ern",
+ "un nel",
+ "unn el",
+ "Work er",
+ "▁c oh",
+ "▁co h",
+ "л ка",
+ "▁Mass achusetts",
+ "pi o",
+ "p io",
+ "▁por ts",
+ "▁port s",
+ "▁ ports",
+ "ag g",
+ "a gg",
+ "▁De bug",
+ "▁Deb ug",
+ "▁ Debug",
+ "▁bre ath",
+ "MI N",
+ "M IN",
+ "Vari able",
+ "bat ch",
+ "b atch",
+ "сс е",
+ "с се",
+ "▁p reg",
+ "▁pr eg",
+ "▁pre g",
+ "▁r oles",
+ "▁ro les",
+ "▁role s",
+ "▁rol es",
+ "pa ste",
+ "pas te",
+ "p aste",
+ "▁refer enced",
+ "▁reference d",
+ "ad rat",
+ "adr at",
+ "ч ё",
+ "bin om",
+ "bi nom",
+ "▁def ining",
+ "▁defin ing",
+ "▁Bud apest",
+ "▁д ви",
+ "▁ дви",
+ "▁t aught",
+ "▁h ole",
+ "▁ho le",
+ "▁hol e",
+ "▁ hole",
+ "▁qu ella",
+ "▁que lla",
+ "▁quel la",
+ "M sg",
+ "as ka",
+ "ask a",
+ "a ska",
+ "sc an",
+ "s can",
+ "▁pro pose",
+ "▁prop ose",
+ "▁propos e",
+ "▁Би ография",
+ "{{ \\",
+ "{ {\\",
+ "text t",
+ "tex tt",
+ "▁A lb",
+ "▁Al b",
+ "▁Syd ney",
+ "▁back up",
+ "▁cre dit",
+ "▁cr edit",
+ "▁cred it",
+ "▁фран цу",
+ "st ats",
+ "sta ts",
+ "stat s",
+ "\\\" :",
+ "\\ \":",
+ "▁П ере",
+ "▁Пер е",
+ "▁Пе ре",
+ "▁according ly",
+ "▁accord ingly",
+ "▁L en",
+ "▁Le n",
+ "▁ Len",
+ "zn a",
+ "z na",
+ "▁Reg ional",
+ "▁Region al",
+ "▁и зда",
+ "▁из да",
+ "▁j ú",
+ "hi stor",
+ "his tor",
+ "h istor",
+ "▁ent ities",
+ "St ar",
+ "S tar",
+ "он е",
+ "о не",
+ "'] ['",
+ "' ]['",
+ "▁N ova",
+ "▁No va",
+ "▁Nov a",
+ "di e",
+ "d ie",
+ "▁` '",
+ "▁ `'",
+ "▁ob ten",
+ "▁obt en",
+ "an st",
+ "ans t",
+ "▁Re lig",
+ "▁Rel ig",
+ "▁t rig",
+ "▁tr ig",
+ "▁tri g",
+ "▁ре жи",
+ "▁Person al",
+ "▁Pers onal",
+ "▁t one",
+ "▁to ne",
+ "▁ton e",
+ "▁a id",
+ "▁ai d",
+ "Vis ual",
+ "Sub mit",
+ "▁mov es",
+ "▁mo ves",
+ "▁move s",
+ "▁B ridge",
+ "▁Br idge",
+ "▁B oy",
+ "▁Bo y",
+ "▁accur ate",
+ "os ta",
+ "ost a",
+ "o sta",
+ "at to",
+ "att o",
+ "a tto",
+ "▁defe ated",
+ "▁defeat ed",
+ "▁data b",
+ "▁da tab",
+ "▁dat ab",
+ "▁ datab",
+ "gi nx",
+ "gin x",
+ "g inx",
+ "▁L iv",
+ "▁Li v",
+ "ly wood",
+ "T W",
+ "ri um",
+ "r ium",
+ "ip ped",
+ "ipp ed",
+ "i pped",
+ "Fa il",
+ "F ail",
+ "RE QUEST",
+ "▁ign or",
+ "▁ig nor",
+ "▁s itting",
+ "▁sit ting",
+ "▁sitt ing",
+ "▁mol to",
+ "▁molt o",
+ "▁end point",
+ "▁ endpoint",
+ "uc ión",
+ "u ción",
+ "▁col lections",
+ "▁collection s",
+ "▁collect ions",
+ "▁colle ctions",
+ "▁ collections",
+ "▁Т у",
+ "tem bre",
+ "t embre",
+ "▁né cess",
+ "▁inter act",
+ "▁inte ract",
+ "▁o tras",
+ "▁ot ras",
+ "▁otra s",
+ "▁c urr",
+ "▁cu rr",
+ "▁cur r",
+ "▁ curr",
+ "▁tr acks",
+ "▁tra cks",
+ "▁track s",
+ "▁trac ks",
+ "▁fam ília",
+ "▁numer ical",
+ "▁numeric al",
+ "le gt",
+ "leg t",
+ "] /",
+ "▁M ario",
+ "▁Mar io",
+ "▁Ma rio",
+ "▁Mari o",
+ "▁t ort",
+ "▁to rt",
+ "▁tor t",
+ "b g",
+ "ss l",
+ "s sl",
+ "text tt",
+ "textt t",
+ "▁s park",
+ "▁sp ark",
+ "▁ spark",
+ "ди и",
+ "▁prob able",
+ "%% %%",
+ "ph ia",
+ "phi a",
+ "], [",
+ "] ,[",
+ "▁bo xes",
+ "▁box es",
+ "▁a cadem",
+ "▁ac adem",
+ "▁S lo",
+ "▁Sl o",
+ "äu de",
+ "ä ude",
+ "▁wit ness",
+ "▁ed iting",
+ "▁edit ing",
+ "ли на",
+ "лин а",
+ "▁look up",
+ "▁ lookup",
+ "▁B uck",
+ "▁Bu ck",
+ "▁Buc k",
+ "д ня",
+ "▁j ours",
+ "▁jo urs",
+ "▁jou rs",
+ "▁jour s",
+ "▁ jours",
+ "++ ){",
+ "++) {",
+ "▁ind ices",
+ "▁indic es",
+ "▁f light",
+ "▁fl ight",
+ "▁com putation",
+ "▁comput ation",
+ "Pl ugin",
+ "▁real ize",
+ "▁realiz e",
+ "is set",
+ "iss et",
+ "isse t",
+ "▁deriv ative",
+ "line width",
+ "bu nd",
+ "b und",
+ "▁t hor",
+ "▁th or",
+ "▁. =",
+ "▁ .=",
+ "▁s í",
+ "▁C lick",
+ "▁Cl ick",
+ "▁ Click",
+ "▁Seb ast",
+ "> '",
+ "hav ior",
+ "le i",
+ "l ei",
+ "ul f",
+ "▁ge ometry",
+ "▁geom etry",
+ "▁geomet ry",
+ "▁ geometry",
+ "pr ev",
+ "pre v",
+ "p rev",
+ "em pl",
+ "emp l",
+ "▁L é",
+ "an son",
+ "ans on",
+ "▁A lice",
+ "▁Al ice",
+ "▁Ali ce",
+ "pro totype",
+ "proto type",
+ "RE AD",
+ "ic ular",
+ "icul ar",
+ "i cular",
+ "▁б і",
+ "▁ бі",
+ "▁deutsch e",
+ "▁Re present",
+ "si tes",
+ "site s",
+ "s ites",
+ "▁Me an",
+ "▁d iss",
+ "▁di ss",
+ "▁dis s",
+ "▁Z ur",
+ "▁Zu r",
+ "▁п рез",
+ "▁пре з",
+ "▁пр ез",
+ "PA R",
+ "P AR",
+ "▁' #",
+ "▁D ra",
+ "▁Dr a",
+ "▁ Dra",
+ "со н",
+ "с он",
+ "▁ste ht",
+ "mar kt",
+ "mark t",
+ "▁e ase",
+ "▁eas e",
+ "Draw ing",
+ "Dra wing",
+ "= %",
+ "St op",
+ "Sto p",
+ "S top",
+ "▁s erving",
+ "▁ser ving",
+ "▁serv ing",
+ "▁servi ng",
+ "▁tak że",
+ "▁D NS",
+ "▁liter al",
+ "▁lit eral",
+ "Di e",
+ "D ie",
+ "▁в ос",
+ "▁во с",
+ "▁sen ior",
+ "ac ion",
+ "aci on",
+ "a cion",
+ "▁u buntu",
+ "▁ub untu",
+ "▁ ubuntu",
+ "▁Frank furt",
+ "▁Sun day",
+ "▁Sund ay",
+ "á b",
+ "▁jour ney",
+ "▁journ ey",
+ "is sa",
+ "iss a",
+ "ber ry",
+ "▁s ep",
+ "▁se p",
+ "▁ sep",
+ "▁i on",
+ "▁io n",
+ "▁ ion",
+ "wer t",
+ "we rt",
+ "w ert",
+ "or szág",
+ "orsz ág",
+ "ser ve",
+ "serv e",
+ "s erve",
+ "▁Mil ano",
+ "▁Milan o",
+ "▁ве ка",
+ "ра х",
+ "▁ию ля",
+ "▁man era",
+ "▁st ations",
+ "▁stat ions",
+ "▁station s",
+ "▁stati ons",
+ "▁adopt ed",
+ "▁any body",
+ "VER SION",
+ "F E",
+ "do rf",
+ "dor f",
+ "d orf",
+ ".. .,",
+ "... ,",
+ "▁обра зова",
+ "▁образ ова",
+ "Log ger",
+ "фи циаль",
+ "фици аль",
+ "WR ITE",
+ "▁h am",
+ "▁ha m",
+ "▁ ham",
+ "▁F uture",
+ "▁Fut ure",
+ "▁ Future",
+ "ot en",
+ "ote n",
+ "o ten",
+ "▁A G",
+ "▁ AG",
+ "▁t rained",
+ "▁tr ained",
+ "▁tra ined",
+ "▁train ed",
+ "▁N ich",
+ "▁Nic h",
+ "▁Ni ch",
+ "▁un iversity",
+ "▁univers ity",
+ "▁Olymp ics",
+ "▁Olympic s",
+ "▁d oit",
+ "▁do it",
+ "▁doi t",
+ "▁cult ural",
+ "▁cultura l",
+ "Con f",
+ "▁Con ference",
+ "or no",
+ "orn o",
+ "▁M P",
+ "▁ MP",
+ "▁b ou",
+ "▁bo u",
+ "ci n",
+ "c in",
+ "Hi gh",
+ "H igh",
+ "ann te",
+ "annt e",
+ "▁display ing",
+ "▁ch apter",
+ "▁chap ter",
+ "▁ chapter",
+ "▁Fra uen",
+ "▁Frau en",
+ "▁real ized",
+ "▁realiz ed",
+ "▁realize d",
+ "▁attempt ed",
+ "▁pre ferred",
+ "▁prefer red",
+ "Da t",
+ "D at",
+ "▁tr ouve",
+ "▁tro uve",
+ "▁trou ve",
+ "▁trouv e",
+ "▁int ention",
+ "▁intent ion",
+ "▁inten tion",
+ "▁Not ice",
+ "tim estamp",
+ "* (",
+ "▁Ш а",
+ "an as",
+ "ana s",
+ "a nas",
+ "cl a",
+ "c la",
+ "is z",
+ "i sz",
+ "tb l",
+ "t bl",
+ "Ar r",
+ "A rr",
+ "▁in verse",
+ "▁ter rible",
+ "▁occup ied",
+ "J AX",
+ "< -",
+ "▁Phil osoph",
+ "▁Cor ps",
+ "bu ilder",
+ "build er",
+ "▁beg ins",
+ "▁begin s",
+ "▁c ensus",
+ "▁cens us",
+ ". ’",
+ "▁pro ven",
+ "▁pr oven",
+ "▁prov en",
+ "▁prove n",
+ "met ric",
+ "▁incre ases",
+ "▁increase s",
+ "wi ch",
+ "w ich",
+ "▁A BC",
+ "▁AB C",
+ "▁ ABC",
+ "project s",
+ "▁T hor",
+ "▁Th or",
+ "▁conf idence",
+ "▁u fficiale",
+ "el m",
+ "e lm",
+ "▁g arden",
+ "▁gar den",
+ "▁gard en",
+ "▁rob ust",
+ "▁cos ì",
+ "ie dz",
+ "ied z",
+ "▁Is lam",
+ "▁Add ress",
+ "▁ Address",
+ "▁div ide",
+ "▁divid e",
+ "▁E u",
+ "ca tal",
+ "cat al",
+ "c atal",
+ "de tail",
+ "det ail",
+ "ep endant",
+ "f g",
+ "▁b ew",
+ "▁be w",
+ "▁ bew",
+ "▁f is",
+ "▁fi s",
+ "▁B O",
+ "▁ BO",
+ "▁w sp",
+ "▁ws p",
+ "▁p ipeline",
+ "▁pip eline",
+ "▁pipe line",
+ "h d",
+ "▁S ession",
+ "▁ Session",
+ "lä nd",
+ "l änd",
+ "iv eau",
+ "ive au",
+ "es tr",
+ "est r",
+ "e str",
+ "▁p article",
+ "▁part icle",
+ "▁partic le",
+ "▁parti cle",
+ "▁lar avel",
+ "▁ laravel",
+ "pi c",
+ "p ic",
+ "▁n au",
+ "▁na u",
+ "▁f ins",
+ "▁fin s",
+ "▁fi ns",
+ "▁V il",
+ "▁Vi l",
+ "▁f us",
+ "▁fu s",
+ "▁qu asi",
+ "oper ation",
+ "opera tion",
+ "▁al ler",
+ "▁all er",
+ "▁alle r",
+ "▁ aller",
+ "▁an aly",
+ "▁anal y",
+ "▁ analy",
+ "▁О н",
+ "▁M es",
+ "▁Me s",
+ "▁о пера",
+ "▁оп ера",
+ "▁hand led",
+ "▁handle d",
+ "▁de prec",
+ "▁dep rec",
+ "tt o",
+ "t to",
+ "▁E k",
+ "▁st ran",
+ "▁str an",
+ "▁stra n",
+ "▁ang lais",
+ "ju re",
+ "j ure",
+ "▁Sil ver",
+ "▁close ly",
+ "▁clos ely",
+ "en kins",
+ "enk ins",
+ "an os",
+ "ano s",
+ "a nos",
+ "st ed",
+ "ste d",
+ "s ted",
+ "▁сент ября",
+ "br and",
+ "bra nd",
+ "b rand",
+ "нь о",
+ "▁prés ent",
+ "▁pré sent",
+ "ro k",
+ "r ok",
+ "mo unt",
+ "m ount",
+ "▁Anth ony",
+ "▁Further more",
+ "in ha",
+ "▁ар хи",
+ "▁раз ли",
+ "▁окт ября",
+ "▁p int",
+ "▁pi nt",
+ "▁pin t",
+ "n ý",
+ "pt s",
+ "p ts",
+ "▁ital ien",
+ "▁ре ги",
+ "ле з",
+ "л ез",
+ "ди на",
+ "дин а",
+ "ather ine",
+ "In ternal",
+ "Int ernal",
+ "Inter nal",
+ "Intern al",
+ "Qu estion",
+ "▁sett lement",
+ "▁В се",
+ "▁fol ders",
+ "▁folder s",
+ "д ри",
+ "▁val or",
+ "▁va lor",
+ "▁M iller",
+ "▁Mil ler",
+ "▁Mill er",
+ "▁As sert",
+ "▁Ass ert",
+ "▁ Assert",
+ "▁pat ient",
+ "▁N ieder",
+ "▁Ni eder",
+ "▁Nie der",
+ "▁Nied er",
+ "▁E P",
+ "▁ EP",
+ "▁A gr",
+ "▁Ag r",
+ "▁o nde",
+ "▁on de",
+ "▁ onde",
+ "▁s cop",
+ "▁sc op",
+ "▁ scop",
+ "se quence",
+ "sequ ence",
+ "▁P L",
+ "▁ PL",
+ "▁se ek",
+ "▁see k",
+ "java se",
+ "jav ase",
+ "▁V ector",
+ "▁Ve ctor",
+ "▁Vec tor",
+ "▁ Vector",
+ "▁n á",
+ "▁ ná",
+ "▁categor ía",
+ "cl one",
+ "clo ne",
+ "N R",
+ "av ailable",
+ "▁B esch",
+ "▁Be sch",
+ "▁Bes ch",
+ "▁e clipse",
+ "▁ec lipse",
+ "▁ eclipse",
+ "wick lung",
+ "dep loy",
+ "en ie",
+ "eni e",
+ "e nie",
+ "▁\" )",
+ "▁ \")",
+ "äs t",
+ "ä st",
+ "▁s ync",
+ "▁syn c",
+ "▁sy nc",
+ "▁ sync",
+ "CO DE",
+ "▁Ч е",
+ "▁flo ating",
+ "▁float ing",
+ "/ `",
+ "▁ret ired",
+ "▁retir ed",
+ "de b",
+ "d eb",
+ "▁part icul",
+ "▁partic ul",
+ "▁parti cul",
+ "▁coll ected",
+ "▁collect ed",
+ "▁colle cted",
+ "▁down loaded",
+ "▁download ed",
+ "ni ce",
+ "nic e",
+ "n ice",
+ "▁B uffer",
+ "▁Buff er",
+ "▁ Buffer",
+ "▁Acc ount",
+ "▁Ac count",
+ "▁ Account",
+ "▁m aggio",
+ "▁mag gio",
+ "▁ре да",
+ "▁ред а",
+ "▁s ales",
+ "▁sa les",
+ "▁sal es",
+ "▁sale s",
+ "▁statunit ense",
+ "▁K i",
+ "▁F err",
+ "▁Fe rr",
+ "▁Fer r",
+ "Lo ck",
+ "Loc k",
+ "L ock",
+ "▁Is abel",
+ "▁Isa bel",
+ "cl ar",
+ "cla r",
+ "c lar",
+ "▁p ov",
+ "▁po v",
+ "at ra",
+ "atr a",
+ "a tra",
+ "▁Fr au",
+ "▁Fra u",
+ "▁sort ing",
+ "▁sor ting",
+ "▁sorti ng",
+ "▁phr ase",
+ "▁апре ля",
+ "▁дея тель",
+ "▁And ré",
+ "def inition",
+ "defin ition",
+ "writ ing",
+ "wr iting",
+ "ér é",
+ "é ré",
+ "щ у",
+ "▁O rd",
+ "▁Or d",
+ "▁ Ord",
+ "▁r um",
+ "▁ru m",
+ "▁ rum",
+ "▁T urk",
+ "▁Tur k",
+ "▁I van",
+ "th eless",
+ "the less",
+ "▁г и",
+ "▁ ги",
+ "▁s ake",
+ "▁sa ke",
+ "▁B ased",
+ "▁Bas ed",
+ "▁Ba sed",
+ "▁Base d",
+ "de ck",
+ "dec k",
+ "or us",
+ "oru s",
+ "o rus",
+ "▁tut ti",
+ "▁b lan",
+ "▁bl an",
+ "▁bla n",
+ "▁П у",
+ "De tail",
+ "Det ail",
+ "▁Н о",
+ "▁S ky",
+ "▁Sk y",
+ "▁p rès",
+ "▁pr ès",
+ "▁ près",
+ "мо й",
+ "col n",
+ "co ln",
+ "че ской",
+ "et i",
+ "e ti",
+ "▁ar row",
+ "▁arr ow",
+ "▁ arrow",
+ "▁C ha",
+ "▁Ch a",
+ "ch mark",
+ "œ ur",
+ "fa b",
+ "f ab",
+ "ку ль",
+ "Grid View",
+ "▁Back ground",
+ "▁ Background",
+ "s n",
+ "▁segu ito",
+ "▁n ic",
+ "▁ni c",
+ "▁ nic",
+ "co u",
+ "c ou",
+ "ті в",
+ "т ів",
+ "▁b zw",
+ "add EventListener",
+ "syn c",
+ "s ync",
+ "az zo",
+ "azz o",
+ "ab stract",
+ "as sets",
+ "ass ets",
+ "asse ts",
+ "asset s",
+ "▁D ru",
+ "▁Dr u",
+ "з д",
+ "ord net",
+ "▁b igger",
+ "▁big ger",
+ "▁initial ized",
+ "▁initialize d",
+ "ка з",
+ "og ene",
+ "ogen e",
+ "oge ne",
+ "vi ously",
+ "vious ly",
+ "v iously",
+ "▁g uid",
+ "▁gu id",
+ "scheid ung",
+ "▁Z ent",
+ "▁Ze nt",
+ "▁fr ames",
+ "▁frame s",
+ "▁fra mes",
+ "▁fram es",
+ "▁ frames",
+ "ri eben",
+ "rie ben",
+ "rieb en",
+ "r ieben",
+ "▁iss ued",
+ "▁issue d",
+ "▁issu ed",
+ "▁d ow",
+ "▁do w",
+ "▁descri bes",
+ "▁describe s",
+ "il st",
+ "ils t",
+ "i lst",
+ "▁c riteria",
+ "▁crit eria",
+ "▁criter ia",
+ "▁gentle man",
+ "Bas ic",
+ "ne z",
+ "n ez",
+ "De v",
+ "D ev",
+ "Mo ve",
+ "M ove",
+ "▁est aba",
+ "▁estab a",
+ "▁esta ba",
+ "▁set tembre",
+ "▁sett embre",
+ "circ le",
+ "cir cle",
+ "▁f ais",
+ "▁fa is",
+ "▁m yst",
+ "▁my st",
+ "▁arch iv",
+ "▁ archiv",
+ "d ynamic",
+ "j à",
+ "it as",
+ "ita s",
+ "▁я кий",
+ "▁d or",
+ "▁do r",
+ "▁ dor",
+ "▁Am azon",
+ "▁Ama zon",
+ "▁ne ces",
+ "▁Mar cel",
+ "▁Marc el",
+ "▁e lla",
+ "▁el la",
+ "▁ell a",
+ "▁ ella",
+ "ро к",
+ "р ок",
+ "▁Pennsylvan ia",
+ "cul ar",
+ "cu lar",
+ "c ular",
+ "Pa ck",
+ "P ack",
+ "it age",
+ "ita ge",
+ "▁B urn",
+ "▁Bu rn",
+ "▁Bur n",
+ "▁R O",
+ "▁ RO",
+ "▁о ни",
+ "▁он и",
+ "▁ они",
+ "~ $",
+ "Te X",
+ "as sign",
+ "ass ign",
+ "▁be at",
+ "id ense",
+ "iden se",
+ "ac ent",
+ "ace nt",
+ "a cent",
+ "Al ert",
+ "▁str ateg",
+ "▁strat eg",
+ "▁mån aden",
+ "LO C",
+ "L OC",
+ "▁c atalog",
+ "▁cat alog",
+ "▁catal og",
+ "▁ catalog",
+ "print StackTrace",
+ "() ).",
+ "()) .",
+ "( )).",
+ "us ted",
+ "ust ed",
+ "u sted",
+ "▁Frame work",
+ "▁ Framework",
+ "EC K",
+ "E CK",
+ "▁a té",
+ "▁at é",
+ "Frame work",
+ "▁att acks",
+ "▁attack s",
+ "▁B ert",
+ "▁Be rt",
+ "▁Ber t",
+ "▁т ран",
+ "▁тра н",
+ ": %",
+ "ar si",
+ "ars i",
+ "not ation",
+ "▁log ical",
+ "▁logic al",
+ "we et",
+ "▁vis ited",
+ "▁visit ed",
+ "br u",
+ "b ru",
+ "▁sur prise",
+ "▁surpr ise",
+ "^ ^",
+ "in ale",
+ "inal e",
+ "ina le",
+ "rem ote",
+ "'} ,",
+ "' },",
+ "Syn tax",
+ "S yntax",
+ "ia ne",
+ "ian e",
+ "i ane",
+ "on nen",
+ "onn en",
+ "onne n",
+ "▁bre aking",
+ "▁break ing",
+ "par ser",
+ "parse r",
+ "ap k",
+ "a pk",
+ "▁Mig uel",
+ "▁ §",
+ "▁act ing",
+ "▁ac ting",
+ "▁g ebru",
+ "▁ge bru",
+ "▁geb ru",
+ "At Index",
+ "ють ся",
+ "ю ться",
+ "▁of fers",
+ "▁off ers",
+ "▁offer s",
+ "▁p rac",
+ "▁pr ac",
+ "▁pra c",
+ "▁g rant",
+ "▁gr ant",
+ "▁gra nt",
+ "▁gran t",
+ "tern oon",
+ "▁ac quired",
+ "▁acqu ired",
+ "▁N y",
+ "▁com ma",
+ "▁comm a",
+ "ní k",
+ "n ík",
+ "▁St ep",
+ "▁Ste p",
+ "▁ Step",
+ "in ners",
+ "inn ers",
+ "inner s",
+ "▁S A",
+ "▁ SA",
+ "▁w at",
+ "▁wa t",
+ "da ys",
+ "day s",
+ "d ays",
+ "▁rect angle",
+ "da r",
+ "d ar",
+ "▁t rac",
+ "▁tr ac",
+ "▁tra c",
+ "▁Ind ones",
+ "▁feed back",
+ "▁bre aks",
+ "▁break s",
+ "part ition",
+ "ic ans",
+ "ica ns",
+ "ican s",
+ "▁Not ices",
+ "▁Notice s",
+ "▁impro ved",
+ "▁improve d",
+ "▁improv ed",
+ "▁impr oved",
+ "ph an",
+ "pha n",
+ "p han",
+ "▁differ ential",
+ "▁different ial",
+ "▁differenti al",
+ "script s",
+ "scri pts",
+ "▁X III",
+ "▁XII I",
+ "▁XI II",
+ "▁L abor",
+ "▁La bor",
+ "▁Lab or",
+ "▁prec ision",
+ "▁precis ion",
+ "▁s eed",
+ "▁se ed",
+ "▁see d",
+ "▁ seed",
+ "bund le",
+ "b undle",
+ "id ents",
+ "ident s",
+ "iden ts",
+ "hr e",
+ "h re",
+ "▁Doug las",
+ "ul d",
+ "u ld",
+ "▁second ary",
+ "▁seconda ry",
+ "▁b rig",
+ "▁br ig",
+ "▁confirm ed",
+ "▁confir med",
+ "▁cla ims",
+ "▁claim s",
+ "Ro le",
+ "R ole",
+ "▁Jew ish",
+ "▁p řed",
+ "▁př ed",
+ "▁ho tel",
+ "▁hot el",
+ "▁comp te",
+ "▁compt e",
+ "▁rec ursive",
+ "▁recurs ive",
+ "](# )",
+ "▁rot ate",
+ "▁ rotate",
+ "▁ch rome",
+ "▁chr ome",
+ "▁chrom e",
+ "▁ chrome",
+ "in ea",
+ "ine a",
+ "i nea",
+ "%; \r",
+ "% ;\r",
+ "▁En vironment",
+ "▁ Environment",
+ "pl atz",
+ "pla tz",
+ "▁Sing le",
+ "▁Sin gle",
+ "▁ Single",
+ "▁s event",
+ "▁se vent",
+ "▁seven t",
+ "▁pos ting",
+ "▁post ing",
+ "▁de aling",
+ "▁deal ing",
+ "param eters",
+ "parameter s",
+ "гра ф",
+ "Auth entication",
+ "to uch",
+ "t ouch",
+ "A z",
+ "▁g ray",
+ "▁gr ay",
+ "▁gra y",
+ "▁ gray",
+ "en cing",
+ "enc ing",
+ "enci ng",
+ "bold math",
+ "▁сай те",
+ "▁сайт е",
+ "▁Z a",
+ "an je",
+ "▁p olar",
+ "▁po lar",
+ "▁pol ar",
+ "▁у ли",
+ "ki l",
+ "k il",
+ "▁h over",
+ "▁ho ver",
+ "▁ hover",
+ "▁RE ST",
+ "▁C ome",
+ "▁Com e",
+ "▁Co me",
+ "▁ Come",
+ "j b",
+ "▁Georg ia",
+ "▁Est ado",
+ "▁Esta do",
+ "▁Estad o",
+ "Output Stream",
+ "ћ и",
+ "▁d ump",
+ "▁du mp",
+ "▁ dump",
+ "▁A ge",
+ "▁Ag e",
+ "▁ Age",
+ "▁s wo",
+ "▁sw o",
+ "m obile",
+ "oc cup",
+ "occ up",
+ "ше го",
+ "ш его",
+ "▁const itution",
+ "▁constitu tion",
+ "▁constit ution",
+ "go od",
+ "g ood",
+ "ak u",
+ "a ku",
+ "▁а нг",
+ "▁ан г",
+ "▁ анг",
+ "ie ck",
+ "iec k",
+ "▁Ps ych",
+ "▁ro ots",
+ "▁root s",
+ "▁v est",
+ "▁ve st",
+ "▁ves t",
+ "▁ vest",
+ "▁го дах",
+ "▁года х",
+ "▁Rep ública",
+ "▁p ian",
+ "▁pi an",
+ "▁pia n",
+ "igr ation",
+ "▁pr éc",
+ "▁pré c",
+ "▁gener ates",
+ "▁generate s",
+ "L Y",
+ "( `",
+ "▁= ~",
+ "ше ния",
+ "▁R ah",
+ "▁Ra h",
+ "▁connect ing",
+ "ž í",
+ "▁f ő",
+ "▁a ppel",
+ "▁app el",
+ "▁ap pel",
+ "▁appe l",
+ "▁Rail way",
+ "г ли",
+ "▁dével opp",
+ "▁a po",
+ "▁ap o",
+ "fr an",
+ "fra n",
+ "f ran",
+ "▁im mediate",
+ "▁immedi ate",
+ "во го",
+ "в ого",
+ "Run ner",
+ "ä g",
+ "Some thing",
+ "S omething",
+ "▁gén éra",
+ "Event Args",
+ "in ction",
+ "inc tion",
+ "inct ion",
+ "gl y",
+ "g ly",
+ "▁D ue",
+ "▁Du e",
+ "▁p rost",
+ "▁pro st",
+ "▁pr ost",
+ "▁pros t",
+ "▁refer ring",
+ "▁j og",
+ "▁jo g",
+ "▁exec utable",
+ "▁execut able",
+ "▁D ream",
+ "▁Dre am",
+ "ac s",
+ "a cs",
+ "▁C ole",
+ "▁Col e",
+ "▁Co le",
+ "am pf",
+ "amp f",
+ "▁B is",
+ "▁Bi s",
+ "▁ию ня",
+ "li eder",
+ "lied er",
+ "lie der",
+ "l ieder",
+ "те к",
+ "т ек",
+ "▁v b",
+ "▁ vb",
+ "▁m om",
+ "▁mo m",
+ "▁: (",
+ "▁ :(",
+ "▁der nier",
+ "▁derni er",
+ "' =>",
+ "▁э того",
+ "▁это го",
+ "▁ne ue",
+ "▁neu e",
+ "▁Ч а",
+ "▁weiter e",
+ "▁weit ere",
+ "▁al leg",
+ "▁all eg",
+ "▁alle g",
+ "▁re ality",
+ "▁real ity",
+ "▁jud ge",
+ "▁B alt",
+ "▁Ba lt",
+ "▁Bal t",
+ "▁t hin",
+ "▁th in",
+ "▁G ed",
+ "▁Ge d",
+ "ie val",
+ "iev al",
+ "i eval",
+ "m x",
+ "ці ональ",
+ "▁вы пу",
+ "▁I X",
+ "▁ IX",
+ "▁bl ind",
+ "▁Mo tor",
+ "▁Mot or",
+ "▁ш а",
+ "▁ ша",
+ "▁approxim ation",
+ "da m",
+ "d am",
+ "▁f og",
+ "▁fo g",
+ "▁ fog",
+ "ко р",
+ "к ор",
+ "▁W rit",
+ "▁l ing",
+ "▁li ng",
+ "▁lin g",
+ "▁ ling",
+ "▁пи са",
+ "▁ писа",
+ "▁M ars",
+ "▁Mar s",
+ "▁Ma rs",
+ "ot ti",
+ "ott i",
+ "En um",
+ "E num",
+ "▁T rib",
+ "▁Tr ib",
+ "▁Tri b",
+ "▁m erc",
+ "▁me rc",
+ "▁mer c",
+ "zu ng",
+ "z ung",
+ "van ced",
+ "v anced",
+ "cf g",
+ "c fg",
+ "на х",
+ "sch en",
+ "sc hen",
+ "sche n",
+ "s chen",
+ "\"] .",
+ "\" ].",
+ "be k",
+ "b ek",
+ "▁s ter",
+ "▁st er",
+ "▁ste r",
+ "▁ ster",
+ "j p",
+ "▁R ap",
+ "▁Ra p",
+ "▁rec ording",
+ "▁record ing",
+ "▁pe int",
+ "▁l ets",
+ "▁le ts",
+ "▁let s",
+ "▁ lets",
+ "än ge",
+ "äng e",
+ ">\" ;",
+ "> \";",
+ "▁міс це",
+ "▁c aval",
+ "▁ca val",
+ "▁cav al",
+ "▁C SV",
+ "▁CS V",
+ "▁ent stand",
+ "▁hel per",
+ "▁help er",
+ "▁ helper",
+ "en det",
+ "end et",
+ "ende t",
+ "▁G ram",
+ "▁Gr am",
+ "▁Gra m",
+ "▁D iego",
+ "▁Die go",
+ "▁Di ego",
+ "▁B ishop",
+ "▁Bi shop",
+ "TA G",
+ "T AG",
+ "▁e cc",
+ "▁ec c",
+ "▁E en",
+ "▁A V",
+ "▁ AV",
+ "C ity",
+ "▁Gu ide",
+ "hi nd",
+ "hin d",
+ "h ind",
+ "ri cal",
+ "ric al",
+ "rica l",
+ "r ical",
+ "▁Ос нов",
+ "Bu s",
+ "B us",
+ "▁z unächst",
+ "▁t ick",
+ "▁ti ck",
+ "▁ tick",
+ "▁Col onel",
+ "Th anks",
+ "Thank s",
+ "▁f erm",
+ "▁fe rm",
+ "▁fer m",
+ "▁gr anted",
+ "▁gran ted",
+ "▁grant ed",
+ "▁th reshold",
+ "omorph ic",
+ "▁H un",
+ "▁Hu n",
+ "en is",
+ "eni s",
+ "e nis",
+ "▁п рав",
+ "▁пра в",
+ "▁ прав",
+ "▁я кі",
+ "▁як і",
+ "P G",
+ "▁w s",
+ "▁ ws",
+ "▁techn ical",
+ "▁techni cal",
+ "est ro",
+ "estr o",
+ "kl är",
+ "k lär",
+ "va rs",
+ "var s",
+ "v ars",
+ "oc rat",
+ "ocr at",
+ "▁оп шти",
+ "on so",
+ "ons o",
+ "ib a",
+ "i ba",
+ "▁S ave",
+ "▁Sa ve",
+ "▁Sav e",
+ "▁ Save",
+ "▁program a",
+ "▁в ъ",
+ "▁inv ån",
+ ">( )",
+ "> ()",
+ "▁me jor",
+ "▁с лова",
+ "▁сло ва",
+ "▁rep lacement",
+ "▁replace ment",
+ "▁repla cement",
+ "▁im pr",
+ "▁imp r",
+ "▁Frances co",
+ "▁Ho tel",
+ "▁Hot el",
+ "▁UP DATE",
+ "▁ UPDATE",
+ "▁му зы",
+ "ug s",
+ "u gs",
+ "va rd",
+ "var d",
+ "v ard",
+ "▁f az",
+ "▁fa z",
+ "in ton",
+ "int on",
+ "into n",
+ "▁ar ts",
+ "▁art s",
+ "▁ arts",
+ "▁K y",
+ "▁I ls",
+ "▁Il s",
+ "▁s era",
+ "▁se ra",
+ "▁ser a",
+ "▁Vol ume",
+ "▁ Volume",
+ "▁gi ugno",
+ "▁a sym",
+ "▁as ym",
+ "▁P ir",
+ "▁Pi r",
+ "▁N AS",
+ "▁NA S",
+ "▁T am",
+ "▁Ta m",
+ "ě l",
+ "Se qu",
+ "Seq u",
+ "S equ",
+ "km al",
+ "k mal",
+ "▁E ins",
+ "▁Ein s",
+ "▁ком па",
+ "▁комп а",
+ "ob e",
+ "o be",
+ "oo r",
+ "o or",
+ "▁he ap",
+ "ct l",
+ "c tl",
+ "▁separ ately",
+ "▁separate ly",
+ "re ader",
+ "read er",
+ "rea der",
+ "▁signific antly",
+ "▁significant ly",
+ "▁L ag",
+ "▁La g",
+ "no tes",
+ "not es",
+ "note s",
+ "n otes",
+ "▁s ele",
+ "▁se le",
+ "▁sel e",
+ "▁dedic ated",
+ "▁H ost",
+ "▁Ho st",
+ "▁ Host",
+ "cho ice",
+ "wi ng",
+ "win g",
+ "w ing",
+ "▁T itel",
+ "▁Tit el",
+ "▁Ti tel",
+ "▁befind et",
+ "lar ge",
+ "larg e",
+ "▁con ten",
+ "▁cont en",
+ "▁co nten",
+ "▁conte n",
+ "Java Script",
+ "▁de ser",
+ "▁des er",
+ "▁G ordon",
+ "▁Gor don",
+ "с пе",
+ "▁p atri",
+ "▁pat ri",
+ "▁pa tri",
+ "▁patr i",
+ "▁R andom",
+ "▁Rand om",
+ "▁Ran dom",
+ "▁ Random",
+ "▁Return s",
+ "ы м",
+ "ро ма",
+ "ром а",
+ "▁Stud ies",
+ "S l",
+ "▁fr ü",
+ "TE XT",
+ "T EXT",
+ "in ate",
+ "ina te",
+ "▁T ol",
+ "▁To l",
+ "▁every where",
+ "ar ta",
+ "art a",
+ "▁or bit",
+ "▁orb it",
+ "▁A ires",
+ "▁Air es",
+ "▁I ss",
+ "▁Is s",
+ "▁te ż",
+ "▁d iverse",
+ "▁di verse",
+ "▁divers e",
+ "▁diver se",
+ "▁n umeric",
+ "▁numer ic",
+ "▁ numeric",
+ "ma z",
+ "m az",
+ "▁m ise",
+ "▁mi se",
+ "▁mis e",
+ "▁batt ery",
+ "▁batter y",
+ "▁bat tery",
+ "▁A kadem",
+ "▁Ak adem",
+ "не ние",
+ "▁simult ane",
+ "▁D ead",
+ "▁De ad",
+ "▁cl ust",
+ "▁ot ro",
+ "▁c erca",
+ "▁cer ca",
+ "() `,",
+ "()` ,",
+ "( )`,",
+ "ro z",
+ "r oz",
+ "ă t",
+ "▁M O",
+ "▁ MO",
+ "ri ften",
+ "rift en",
+ "rif ten",
+ "import ant",
+ "▁je ho",
+ "▁find ViewById",
+ "▁ findViewById",
+ "▁con sequence",
+ "▁conse quence",
+ "▁consequ ence",
+ "▁measure d",
+ "▁meas ured",
+ "is hes",
+ "ish es",
+ "▁s ze",
+ "▁sz e",
+ "ien do",
+ "i endo",
+ "▁W ahl",
+ "▁Wa hl",
+ "st rip",
+ "str ip",
+ "AR D",
+ "▁op acity",
+ "▁ opacity",
+ "WOR D",
+ "W ORD",
+ "▁В і",
+ "▁L ocation",
+ "▁Lo cation",
+ "▁Loc ation",
+ "▁ Location",
+ "ra i",
+ "r ai",
+ "пе н",
+ "п ен",
+ "▁r if",
+ "▁ri f",
+ "▁ rif",
+ "auss ian",
+ "File Name",
+ "▁dis co",
+ "▁disc o",
+ "il en",
+ "ile n",
+ "i len",
+ "▁v agy",
+ "▁va gy",
+ "li city",
+ "lic ity",
+ "licit y",
+ "l icity",
+ "B order",
+ "▁T rack",
+ "▁Tr ack",
+ "▁Tra ck",
+ "▁ Track",
+ "бо м",
+ "б ом",
+ "fa ct",
+ "fac t",
+ "f act",
+ "ok a",
+ "o ka",
+ "▁g ior",
+ "▁gi or",
+ "▁ gior",
+ "▁XV II",
+ "▁XVI I",
+ "▁d är",
+ "Si te",
+ "S ite",
+ "ał o",
+ "a ło",
+ "sk á",
+ "s ká",
+ "▁pix els",
+ "▁pixel s",
+ "vi ty",
+ "v ity",
+ "j Query",
+ "▁sc ulpt",
+ "▁c argo",
+ "▁car go",
+ "▁direct ive",
+ "▁w al",
+ "▁wa l",
+ "▁ wal",
+ "▁c onna",
+ "▁con na",
+ "▁conn a",
+ "▁Th rough",
+ "▁э том",
+ "▁это м",
+ "St atic",
+ "Stat ic",
+ "oms nitt",
+ "▁r und",
+ "▁run d",
+ "▁ru nd",
+ "▁ rund",
+ "▁c laimed",
+ "▁claim ed",
+ "з ня",
+ "sh a",
+ "s ha",
+ "▁r ag",
+ "▁ra g",
+ "▁ rag",
+ "cre ment",
+ "cr ement",
+ "▁fün f",
+ "▁r ival",
+ "▁riv al",
+ "▁ri val",
+ "▁ rival",
+ "ri n",
+ "r in",
+ "sl ash",
+ "▁th irty",
+ "s leep",
+ "оло ги",
+ "о логи",
+ "S M",
+ "ga te",
+ "gat e",
+ "g ate",
+ "iz ations",
+ "ization s",
+ "vi k",
+ "v ik",
+ "▁b less",
+ "▁bl ess",
+ "▁ble ss",
+ "▁Ill inois",
+ "▁T E",
+ "▁ TE",
+ "ut ing",
+ "uti ng",
+ "u ting",
+ "▁sol ving",
+ "GE R",
+ "G ER",
+ "▁X IV",
+ "▁XI V",
+ "▁Ind ians",
+ "▁India ns",
+ "▁Indian s",
+ "ex press",
+ "exp ress",
+ "expr ess",
+ "▁H eil",
+ "▁He il",
+ "▁mu jer",
+ "▁invån are",
+ "'] );",
+ "']) ;",
+ "' ]);",
+ "▁a ur",
+ "▁au r",
+ "▁ aur",
+ "bo ost",
+ "G O",
+ "▁n in",
+ "▁ni n",
+ "to k",
+ "t ok",
+ "go d",
+ "g od",
+ "ot er",
+ "ote r",
+ "o ter",
+ ")$ $",
+ ") $$",
+ "▁desc end",
+ "р ю",
+ "▁L anguage",
+ "▁ Language",
+ "▁d iver",
+ "▁di ver",
+ "▁div er",
+ "▁Ass uming",
+ "▁fre quent",
+ "▁frequ ent",
+ "ч ні",
+ "▁Bi ography",
+ ", [",
+ "ur m",
+ "u rm",
+ "▁walk ed",
+ "▁wal ked",
+ "▁feder al",
+ "▁fed eral",
+ "▁Mich igan",
+ "▁fact s",
+ "▁fac ts",
+ "▁In tegr",
+ "▁Int egr",
+ "▁ Integr",
+ "LE S",
+ "L ES",
+ "▁A lan",
+ "▁Al an",
+ "▁c oup",
+ "▁co up",
+ "▁cou p",
+ "Be r",
+ "B er",
+ "▁p articles",
+ "▁part icles",
+ "▁partic les",
+ "▁particle s",
+ "▁parti cles",
+ "ћ е",
+ "Infl ater",
+ "+ (",
+ "Bo und",
+ "B ound",
+ "▁S ü",
+ "A udio",
+ "cite t",
+ "cit et",
+ "c itet",
+ "ye ct",
+ "y ect",
+ "▁n r",
+ "▁ nr",
+ "x e",
+ "▁B run",
+ "▁Br un",
+ "▁Bru n",
+ "▁_ ,",
+ "▁ _,",
+ "av or",
+ "avo r",
+ "a vor",
+ "▁dis cipl",
+ "al m",
+ "a lm",
+ "▁но ября",
+ "▁S SL",
+ "▁SS L",
+ "▁ SSL",
+ "▁Ka iser",
+ "▁Kais er",
+ "▁re cher",
+ "▁rec her",
+ "yg on",
+ "y gon",
+ "▁regard less",
+ "▁config ur",
+ "▁un necess",
+ "▁Cl ark",
+ "▁Clar k",
+ "PH P",
+ "P HP",
+ "▁F ALSE",
+ "▁ FALSE",
+ "▁p ad",
+ "▁pa d",
+ "▁ pad",
+ "$ }",
+ "▁v alu",
+ "▁val u",
+ "▁va lu",
+ "▁ valu",
+ "▁dise ase",
+ "▁ma ior",
+ "▁mai or",
+ "▁h ommes",
+ "▁hom mes",
+ "▁homme s",
+ "▁Ed ition",
+ "▁Edit ion",
+ "sl ant",
+ "s lant",
+ "▁en ding",
+ "▁end ing",
+ "▁ ending",
+ "▁sett led",
+ "ur us",
+ "uru s",
+ "u rus",
+ "he d",
+ "h ed",
+ "Pat tern",
+ "▁го дина",
+ "▁годи на",
+ "▁Phil adel",
+ "tikz picture",
+ "▁co al",
+ "▁s ede",
+ "▁se de",
+ "▁sed e",
+ "▁satisf ies",
+ "▁t rim",
+ "▁tr im",
+ "▁tri m",
+ "▁ trim",
+ "▁b at",
+ "▁ba t",
+ "▁ bat",
+ "▁améric ain",
+ "▁lug lio",
+ "▁по ча",
+ "▁поч а",
+ "ff ff",
+ "fff f",
+ "f fff",
+ "▁T arget",
+ "▁Tar get",
+ "▁ Target",
+ "gener ate",
+ "▁Z ie",
+ "ți a",
+ "ț ia",
+ "▁g ard",
+ "▁gar d",
+ "▁ga rd",
+ "▁work ers",
+ "▁worker s",
+ "▁J ob",
+ "▁Jo b",
+ "▁ Job",
+ "▁ur ban",
+ "▁urb an",
+ "▁ urban",
+ "ah len",
+ "ahl en",
+ "a hlen",
+ "▁Build ing",
+ "▁n eu",
+ "▁ne u",
+ "▁ch ron",
+ "▁chr on",
+ "▁ chron",
+ "▁Ear l",
+ "gr o",
+ "g ro",
+ "US E",
+ "U SE",
+ "▁X II",
+ "▁XI I",
+ "▁we alth",
+ "▁ wealth",
+ "in ae",
+ "ina e",
+ "▁Б ра",
+ "▁li bert",
+ "▁lib ert",
+ "▁liber t",
+ "ir os",
+ "iro s",
+ "i ros",
+ ": $",
+ "le e",
+ "l ee",
+ "ie ves",
+ "ieve s",
+ "iev es",
+ "▁Just ice",
+ "▁o il",
+ "▁Ath let",
+ "▁c lo",
+ "▁cl o",
+ "▁ clo",
+ "Sc ale",
+ "Scal e",
+ "▁l ips",
+ "▁li ps",
+ "▁lip s",
+ "▁a pril",
+ "▁ap ril",
+ "▁apr il",
+ "▁im pression",
+ "▁imp ression",
+ "▁impr ession",
+ "▁impress ion",
+ "▁per ce",
+ "▁уча сти",
+ "▁участ и",
+ "vi l",
+ "v il",
+ "éc h",
+ "é ch",
+ "▁e quality",
+ "▁equ ality",
+ "▁equal ity",
+ "▁ equality",
+ "▁м ет",
+ "▁ме т",
+ "▁ мет",
+ "▁an notation",
+ "▁annot ation",
+ "▁ annotation",
+ "er nal",
+ "ern al",
+ "erna l",
+ "▁M ach",
+ "▁Ma ch",
+ "▁Mac h",
+ "▁int itul",
+ "pro blem",
+ "prob lem",
+ "ющи х",
+ "ю щих",
+ "op lus",
+ "o plus",
+ "▁thous ands",
+ "▁thousand s",
+ "▁calcul ations",
+ "▁calculation s",
+ "▁calc ulations",
+ "um ps",
+ "ump s",
+ "▁tri angle",
+ "▁ triangle",
+ "ph al",
+ "pha l",
+ "p hal",
+ "▁D orf",
+ "▁Do rf",
+ "▁Dor f",
+ "▁doll ars",
+ "▁d enen",
+ "▁de nen",
+ "▁den en",
+ "l ès",
+ "ol id",
+ "oli d",
+ "▁Result s",
+ "▁ Results",
+ "▁Stad ium",
+ "▁D esp",
+ "▁De sp",
+ "▁Des p",
+ "▁E isen",
+ "im ir",
+ "imi r",
+ "i mir",
+ "▁s otto",
+ "▁so tto",
+ "▁sott o",
+ "▁č i",
+ "▁ či",
+ "at able",
+ "ata ble",
+ "a table",
+ "or um",
+ "oru m",
+ "o rum",
+ "▁conver gence",
+ "▁je une",
+ "▁jeu ne",
+ "ok ing",
+ "oki ng",
+ "o king",
+ "▁жи во",
+ "ain ing",
+ "ai ning",
+ "a ining",
+ "po inter",
+ "point er",
+ "cul o",
+ "cu lo",
+ "c ulo",
+ "▁js ou",
+ "▁g rab",
+ "▁gr ab",
+ "▁gra b",
+ "ak te",
+ "akt e",
+ "a kte",
+ "▁ho ping",
+ "▁hop ing",
+ "▁M ak",
+ "▁Ma k",
+ "▁s ag",
+ "▁sa g",
+ "origin e",
+ "orig ine",
+ "▁по след",
+ "▁после д",
+ "▁V eg",
+ "▁Ve g",
+ "▁the oret",
+ "▁T ru",
+ "▁Tr u",
+ "ne ment",
+ "nem ent",
+ "n ement",
+ "▁f aces",
+ "▁fa ces",
+ "▁face s",
+ "▁fac es",
+ "▁ faces",
+ "H or",
+ "Jo in",
+ "J oin",
+ "ar el",
+ "are l",
+ "a rel",
+ "▁о коло",
+ "▁ок оло",
+ "How ever",
+ "▁c atal",
+ "▁ca tal",
+ "▁cat al",
+ "▁ catal",
+ "bo urg",
+ "bour g",
+ "b ourg",
+ "▁mysql i",
+ "▁mysq li",
+ "▁ mysqli",
+ "ac ions",
+ "acion s",
+ "aci ons",
+ "▁Init ial",
+ "▁ Initial",
+ "▁r ain",
+ "▁ra in",
+ "▁ rain",
+ "it ure",
+ "itu re",
+ "▁Sci ences",
+ "▁Science s",
+ "▁Kre is",
+ "._ _",
+ ". __",
+ "▁cin q",
+ "▁A uß",
+ "▁Au ß",
+ "ith met",
+ "it ors",
+ "ito rs",
+ "itor s",
+ "am azon",
+ "ama zon",
+ "▁g ap",
+ "▁ga p",
+ "▁ign ored",
+ "▁ignore d",
+ "▁ignor ed",
+ "ad v",
+ "ко ї",
+ "▁ча сть",
+ "▁час ть",
+ "▁част ь",
+ "▁cor por",
+ "▁corpo r",
+ "це р",
+ "ц ер",
+ "▁cr ime",
+ "▁cri me",
+ "▁crim e",
+ "uo us",
+ "u ous",
+ "▁на лази",
+ "Data Frame",
+ "во ди",
+ "вод и",
+ "Ig n",
+ "I gn",
+ "▁Lin coln",
+ "▁me nos",
+ "▁men os",
+ "▁Lu ft",
+ "▁L ind",
+ "▁Li nd",
+ "▁Lin d",
+ "▁C ook",
+ "▁Co ok",
+ "▁ Cook",
+ "▁material s",
+ "ap ped",
+ "app ed",
+ "appe d",
+ "a pped",
+ "ign ore",
+ "▁от кры",
+ "fr ied",
+ "fri ed",
+ "f ried",
+ "▁gouvern ement",
+ "▁f ired",
+ "▁fire d",
+ "▁fi red",
+ "▁fir ed",
+ "▁screen shot",
+ "▁screens hot",
+ "се н",
+ "с ен",
+ "▁[ (",
+ "▁ [(",
+ "▁органи за",
+ "Graph ics",
+ "▁про ти",
+ "▁p hen",
+ "▁ph en",
+ "▁ phen",
+ "cr aft",
+ "cra ft",
+ "c raft",
+ "▁b rain",
+ "▁br ain",
+ "▁bra in",
+ "▁C omo",
+ "▁Com o",
+ "▁Co mo",
+ "▁Every thing",
+ "an es",
+ "ane s",
+ "a nes",
+ "IG N",
+ "I GN",
+ "▁n ederbörd",
+ "▁ nederbörd",
+ "▁For est",
+ "▁Fore st",
+ "▁Fo rest",
+ "za hl",
+ "z ahl",
+ "▁Am ong",
+ "Q t",
+ "▁to gg",
+ "▁tog g",
+ "▁vari ant",
+ "▁ variant",
+ "▁h ill",
+ "▁hi ll",
+ "▁ hill",
+ "пи си",
+ "пис и",
+ "col on",
+ "co lon",
+ "colo n",
+ "▁dic embre",
+ "го р",
+ "г ор",
+ "▁W ind",
+ "▁Win d",
+ "▁Wi nd",
+ "ünst ler",
+ "▁= \\",
+ "▁ =\\",
+ "sa ved",
+ "save d",
+ "s aved",
+ "▁n ej",
+ "▁ne j",
+ "▁ nej",
+ "un te",
+ "unt e",
+ "ut to",
+ "utt o",
+ "u tto",
+ "▁rec ens",
+ "▁rece ns",
+ "▁s ick",
+ "▁si ck",
+ "▁sic k",
+ "▁d esen",
+ "▁de sen",
+ "▁des en",
+ "US T",
+ "U ST",
+ "▁wor st",
+ "▁An gel",
+ "▁Ang el",
+ "od ox",
+ "odo x",
+ "▁Prov ince",
+ "▁Provin ce",
+ "▁M az",
+ "▁Ma z",
+ "▁agre ement",
+ "▁agree ment",
+ "▁B ass",
+ "▁Bas s",
+ "▁Ba ss",
+ "▁seg unda",
+ "on ces",
+ "once s",
+ "onc es",
+ "▁Lin ki",
+ "▁Link i",
+ "▁C L",
+ "▁ CL",
+ "▁j á",
+ "it ement",
+ "ite ment",
+ "item ent",
+ "▁á rea",
+ "▁ár ea",
+ "▁scal ar",
+ "▁scala r",
+ "▁Р ес",
+ "▁Ре с",
+ "aw t",
+ "a wt",
+ "si eme",
+ "▁j uni",
+ "▁ju ni",
+ "▁jun i",
+ "▁худо ж",
+ "ik us",
+ "iku s",
+ "▁l id",
+ "▁li d",
+ "pp el",
+ "ppe l",
+ "p pel",
+ "av i",
+ "a vi",
+ "▁bal ance",
+ "ip ping",
+ "ipp ing",
+ "ippi ng",
+ "i pping",
+ "cuss ion",
+ "че ских",
+ "(\" .",
+ "( \".",
+ "Al so",
+ "▁w his",
+ "▁wh is",
+ "HO ME",
+ "▁b rown",
+ "▁br own",
+ "▁bro wn",
+ "▁brow n",
+ "▁d ía",
+ "▁dí a",
+ "▁pu ò",
+ "plot lib",
+ "▁Jahrhundert s",
+ "D K",
+ "▁an chor",
+ "▁anc hor",
+ "▁anch or",
+ "▁ anchor",
+ ".. .]",
+ "... ]",
+ "▁Aust ria",
+ "▁m arca",
+ "▁mar ca",
+ "▁marc a",
+ "▁g ez",
+ "▁ge z",
+ "ious ly",
+ "i ously",
+ "▁l azy",
+ "▁la zy",
+ "x a",
+ "▁Ch annel",
+ "▁Chan nel",
+ "▁ Channel",
+ "▁ne uen",
+ "▁neue n",
+ "▁neu en",
+ "da s",
+ "d as",
+ "▁search ed",
+ "▁sta at",
+ "▁ staat",
+ "▁Та к",
+ "▁Jo sef",
+ "▁Jose f",
+ "▁Jos ef",
+ "▁S her",
+ "▁Sh er",
+ "▁She r",
+ "po is",
+ "p ois",
+ "▁e nem",
+ "▁en em",
+ "▁access ing",
+ "▁не ко",
+ "▁fur ono",
+ "▁pse udo",
+ "▁pseud o",
+ "? >",
+ "▁estado un",
+ "▁estad oun",
+ "▁Ви ди",
+ "▁mot iv",
+ "▁re call",
+ "▁rec all",
+ "is son",
+ "iss on",
+ "i sson",
+ "ó b",
+ ")- -",
+ ") --",
+ "▁E rz",
+ "▁Er z",
+ "▁са вез",
+ "Dir ect",
+ "Di rect",
+ "D irect",
+ "со б",
+ "с об",
+ "▁s ho",
+ "▁sh o",
+ "v ölker",
+ "A p",
+ "ge ns",
+ "gen s",
+ "g ens",
+ "ниш тво",
+ "▁Am sterdam",
+ "us k",
+ "u sk",
+ "п ло",
+ "▁sim ulation",
+ "▁B C",
+ "▁ BC",
+ "▁W oj",
+ "▁Wo j",
+ "au tom",
+ "aut om",
+ "auto m",
+ "Al ex",
+ "A lex",
+ "▁econom ic",
+ "▁econ omic",
+ "го м",
+ "г ом",
+ "ik ai",
+ "ika i",
+ "▁a ltre",
+ "▁al tre",
+ "▁alt re",
+ "▁' -",
+ "▁ '-",
+ "▁W eg",
+ "▁We g",
+ "Not Found",
+ "й ской",
+ "▁convert ing",
+ "▁conver ting",
+ "ph abet",
+ "pha bet",
+ "at rice",
+ "atr ice",
+ "atri ce",
+ "bour ne",
+ "al om",
+ "alo m",
+ "▁comp aring",
+ "▁compar ing",
+ "▁Z o",
+ "▁f la",
+ "▁fl a",
+ "ва я",
+ "▁en tra",
+ "▁ent ra",
+ "▁entr a",
+ "▁char set",
+ "▁chars et",
+ "develop ers",
+ "developer s",
+ "íst ica",
+ "} >",
+ "▁J azz",
+ "▁Ja zz",
+ "▁How ard",
+ "▁Ho ward",
+ "ш та",
+ "▁cl one",
+ "▁clo ne",
+ "▁ clone",
+ "do or",
+ "d oor",
+ "▁P in",
+ "▁Pi n",
+ "** *",
+ "* **",
+ "▁sil ent",
+ "ec ycle",
+ "e cycle",
+ "is ce",
+ "isc e",
+ "i sce",
+ "▁m ud",
+ "▁mu d",
+ "▁Dis play",
+ "▁ Display",
+ "▁l ip",
+ "▁li p",
+ "▁ lip",
+ "▁исполь зова",
+ "▁character istic",
+ "▁s b",
+ "▁ sb",
+ "fire base",
+ "▁B ew",
+ "▁Be w",
+ "Cal endar",
+ "▁u so",
+ "▁us o",
+ "▁ uso",
+ "ès e",
+ "è se",
+ "▁R at",
+ "▁Ra t",
+ "▁es per",
+ "▁espe r",
+ "▁esp er",
+ "▁ esper",
+ "▁throw ing",
+ "▁thro wing",
+ "▁ro dz",
+ "▁rod z",
+ "▁y ards",
+ "▁yard s",
+ "▁g rass",
+ "▁gr ass",
+ "▁gra ss",
+ "▁mar ker",
+ "▁mark er",
+ "▁ marker",
+ "▁K os",
+ "▁Ko s",
+ "Th eta",
+ "The ta",
+ "▁organ is",
+ "ker nel",
+ "kern el",
+ "k ernel",
+ "▁person as",
+ "▁pers onas",
+ "▁persona s",
+ "ke ep",
+ "kee p",
+ "▁exc laimed",
+ "os lav",
+ "▁Ent ertain",
+ "▁Enter tain",
+ "не р",
+ "н ер",
+ "▁in won",
+ "▁R and",
+ "▁Ra nd",
+ "▁Ran d",
+ "red uce",
+ "redu ce",
+ "fa c",
+ "f ac",
+ "ex pression",
+ "exp ression",
+ "expr ession",
+ "express ion",
+ "y j",
+ "▁differ enti",
+ "▁different i",
+ "ag lia",
+ "agli a",
+ "▁tem plates",
+ "▁template s",
+ "▁ templates",
+ "▁m ű",
+ "▁p rv",
+ "▁pr v",
+ "▁m ois",
+ "▁mo is",
+ "▁moi s",
+ "▁gew ann",
+ "▁бу ла",
+ "bib li",
+ "b ibli",
+ "de mo",
+ "dem o",
+ "d emo",
+ "▁And erson",
+ "▁Anders on",
+ "▁ре д",
+ "▁ ред",
+ "▁por que",
+ "▁P ologne",
+ "▁Pol ogne",
+ "▁t rip",
+ "▁tr ip",
+ "▁tri p",
+ "▁exem ple",
+ "▁exempl e",
+ "▁Intern acional",
+ "▁ка о",
+ "In sert",
+ "gen eral",
+ "gener al",
+ "SE SSION",
+ "ber ga",
+ "berg a",
+ "hä lt",
+ "h ält",
+ "un as",
+ "una s",
+ "u nas",
+ "ми ра",
+ "мир а",
+ "▁yield s",
+ "map sto",
+ "maps to",
+ "sp ot",
+ "s pot",
+ "▁+ \\",
+ "▁ +\\",
+ "лл а",
+ "л ла",
+ "▁precis ely",
+ "▁precise ly",
+ "▁ч лен",
+ "sh adow",
+ "Ar e",
+ "A re",
+ "un al",
+ "una l",
+ "u nal",
+ "▁dis par",
+ "▁disp ar",
+ "▁tít ulo",
+ "ne st",
+ "nes t",
+ "n est",
+ "▁L ow",
+ "▁Lo w",
+ "▁p rot",
+ "▁pro t",
+ "▁pr ot",
+ "▁C osta",
+ "▁Co sta",
+ "▁Cost a",
+ "▁Cos ta",
+ "name d",
+ "na med",
+ "nam ed",
+ "n amed",
+ "▁g ained",
+ "▁ga ined",
+ "▁gain ed",
+ "les ia",
+ "l esia",
+ "▁admin istration",
+ "▁administr ation",
+ "Im port",
+ "Imp ort",
+ "br anch",
+ "b ranch",
+ "▁sym path",
+ "vo j",
+ "v oj",
+ "▁E C",
+ "▁ EC",
+ "▁municip io",
+ "▁anim ated",
+ "▁animate d",
+ "▁direct ories",
+ "▁director ies",
+ "▁ro of",
+ "zą d",
+ "z ąd",
+ "im et",
+ "ime t",
+ "i met",
+ "pr oto",
+ "pro to",
+ "bl a",
+ "b la",
+ ": ]",
+ "ha ve",
+ "hav e",
+ "h ave",
+ "at em",
+ "ate m",
+ "a tem",
+ "▁n s",
+ "▁ ns",
+ "▁s ector",
+ "▁se ctor",
+ "▁sec tor",
+ "▁sect or",
+ "th ree",
+ "ow ane",
+ "owa ne",
+ "owan e",
+ "wer s",
+ "we rs",
+ "w ers",
+ "ов их",
+ "ови х",
+ "ren ce",
+ "r ence",
+ "▁ex tr",
+ "▁ext r",
+ "ig ten",
+ "igt en",
+ "igte n",
+ "▁occ ident",
+ "ț ă",
+ "▁e at",
+ "▁h ydro",
+ "▁hy dro",
+ "▁hyd ro",
+ "ubern etes",
+ "[ @",
+ "▁M oon",
+ "▁Mo on",
+ "▁S ho",
+ "▁Sh o",
+ "▁else where",
+ "ül ler",
+ "üll er",
+ "Up load",
+ "ла нд",
+ "лан д",
+ "л анд",
+ "▁F ör",
+ "w issenschaft",
+ "K S",
+ "▁phys ics",
+ "▁ physics",
+ "t z",
+ "▁се ред",
+ "▁Ar beit",
+ "▁Arbe it",
+ "▁ме ст",
+ "▁ мест",
+ "▁Geb iet",
+ "▁in sect",
+ "▁ins ect",
+ "▁inse ct",
+ "A h",
+ "iz ado",
+ "iza do",
+ "▁tem ple",
+ "▁temp le",
+ "▁ann ual",
+ "st ad",
+ "sta d",
+ "▁hab itat",
+ "▁habit at",
+ "▁A B",
+ "▁ AB",
+ "wo rt",
+ "wor t",
+ "w ort",
+ "▁re pos",
+ "▁rep os",
+ "▁repo s",
+ "▁N eu",
+ "▁Ne u",
+ "▁$ (\".",
+ "▁$( \".",
+ "▁$(\" .",
+ "Vor lage",
+ "▁repre zent",
+ "est anden",
+ "In tern",
+ "Int ern",
+ "Inter n",
+ ". `",
+ "▁fa iling",
+ "▁fail ing",
+ "▁M aterial",
+ "▁Mate rial",
+ "▁ Material",
+ "▁effect ively",
+ "▁effective ly",
+ "те лем",
+ "тел ем",
+ "▁г ла",
+ "▁ гла",
+ "▁na hm",
+ "▁nah m",
+ "▁ nahm",
+ "▁differ ently",
+ "▁different ly",
+ "ext ension",
+ "▁V erm",
+ "▁Ver m",
+ "▁Ve rm",
+ "en abled",
+ "ena bled",
+ "enable d",
+ "con figure",
+ "config ure",
+ "ni o",
+ "n io",
+ "ci ones",
+ "cio nes",
+ "cion es",
+ "c iones",
+ "▁B each",
+ "▁Be ach",
+ "со на",
+ "сон а",
+ "с она",
+ "▁copy ing",
+ "▁cop ying",
+ "▁у країн",
+ "▁при зна",
+ "▁приз на",
+ "z h",
+ "Des ktop",
+ "▁s ost",
+ "▁so st",
+ "▁sub sequently",
+ "▁subsequ ently",
+ "▁subsequent ly",
+ "▁Le hr",
+ "▁ ó",
+ "lä r",
+ "l är",
+ "od or",
+ "odo r",
+ "o dor",
+ "ph on",
+ "p hon",
+ "n c",
+ "iter ator",
+ "▁э ти",
+ "▁europ é",
+ "▁Tor onto",
+ "ód igo",
+ "▁p osto",
+ "▁po sto",
+ "▁pos to",
+ "▁post o",
+ "ff e",
+ "f fe",
+ "▁c rew",
+ "▁cre w",
+ "▁cr ew",
+ "▁Sch war",
+ "▁Schw ar",
+ "S a",
+ "squ are",
+ "s quare",
+ "▁be side",
+ "▁bes ide",
+ "▁М і",
+ "▁a th",
+ "▁at h",
+ "▁ ath",
+ "▁ad vent",
+ "▁adv ent",
+ "c ji",
+ "writ ten",
+ "wr itten",
+ "w ritten",
+ "▁r uss",
+ "▁ru ss",
+ "▁rus s",
+ "ro st",
+ "ros t",
+ "r ost",
+ "H I",
+ "▁d ice",
+ "▁di ce",
+ "▁dic e",
+ "cc a",
+ "c ca",
+ "▁d ép",
+ "▁dé p",
+ "pl y",
+ "p ly",
+ "big g",
+ "bi gg",
+ "b igg",
+ "zi ał",
+ "zia ł",
+ "z iał",
+ "üt t",
+ "ü tt",
+ "▁о дно",
+ "▁од но",
+ "J ECT",
+ "сь кому",
+ "сько му",
+ "ськ ому",
+ "no s",
+ "n os",
+ "mo ck",
+ "m ock",
+ "La unch",
+ "sa me",
+ "sam e",
+ "s ame",
+ "▁j obs",
+ "▁jo bs",
+ "▁job s",
+ "▁wide ly",
+ "▁wid ely",
+ "▁def ines",
+ "▁define s",
+ "▁defin es",
+ "▁P se",
+ "▁Ps e",
+ "▁neigh bour",
+ "▁neighb our",
+ "ющи е",
+ "▁cl oser",
+ "▁close r",
+ "▁clos er",
+ "▁clo ser",
+ "▁рас поло",
+ "▁распо ло",
+ "▁cl ubs",
+ "▁club s",
+ "fl y",
+ "f ly",
+ "ши м",
+ "ш им",
+ "▁suffer ed",
+ "▁suff ered",
+ "▁n ar",
+ "▁na r",
+ "▁ nar",
+ "▁l avor",
+ "▁la vor",
+ "▁lav or",
+ "Ext ension",
+ "ition ally",
+ "itional ly",
+ "▁g race",
+ "▁gr ace",
+ "▁gra ce",
+ "▁Campe onato",
+ "▁Christ mas",
+ "m iddle",
+ "oth ek",
+ "othe k",
+ "el ements",
+ "element s",
+ "ele ments",
+ "elem ents",
+ "▁son dern",
+ "▁t arde",
+ "▁tar de",
+ "▁tard e",
+ "▁perman ent",
+ "▁con clude",
+ "▁concl ude",
+ "Se g",
+ "S eg",
+ "▁а каде",
+ "}\" ,",
+ "} \",",
+ "▁февра ля",
+ "ře d",
+ "ř ed",
+ "▁I L",
+ "▁ IL",
+ "ju d",
+ "j ud",
+ "▁U SS",
+ "▁US S",
+ "▁N ature",
+ "▁Natur e",
+ "▁Nat ure",
+ "if ference",
+ "iffer ence",
+ "iffe rence",
+ "Serial izer",
+ "▁tw elve",
+ "ti d",
+ "t id",
+ "ми я",
+ "че ского",
+ "▁cal endar",
+ "▁ calendar",
+ "con cat",
+ "▁inter section",
+ "▁intersect ion",
+ "▁P A",
+ "▁ PA",
+ "az ure",
+ "azu re",
+ "▁situ ée",
+ "▁situé e",
+ "▁k inds",
+ "▁kind s",
+ "▁kin ds",
+ "▁aus ge",
+ "▁r ural",
+ "▁ru ral",
+ "Th eme",
+ "The me",
+ "▁t ale",
+ "▁tal e",
+ "▁ta le",
+ "no indent",
+ "go ing",
+ "r x",
+ "ag i",
+ "a gi",
+ "wrap per",
+ "wr apper",
+ "w rapper",
+ "▁Co ast",
+ "mb H",
+ "▁пере д",
+ "▁пе ред",
+ "sp re",
+ "spr e",
+ "s pre",
+ "▁} \\",
+ "▁ }\\",
+ "▁L I",
+ "▁ LI",
+ "zn am",
+ "zna m",
+ "z nam",
+ "it led",
+ "itle d",
+ "Sam ple",
+ "S ample",
+ "ul iar",
+ "uli ar",
+ "* \\",
+ "▁res istance",
+ "▁resist ance",
+ "st ock",
+ "sto ck",
+ "ke d",
+ "k ed",
+ "▁H E",
+ "▁ HE",
+ "▁pos session",
+ "▁poss ession",
+ "▁possess ion",
+ "▁R ing",
+ "▁Ri ng",
+ "▁m agyar",
+ "▁mag yar",
+ "ou ts",
+ "out s",
+ "o uts",
+ "▁Secret ary",
+ "nd e",
+ "n de",
+ "▁W ald",
+ "▁Wal d",
+ "▁Wa ld",
+ "- (",
+ "▁I SO",
+ "▁IS O",
+ "▁ ISO",
+ "▁af ternoon",
+ "ion en",
+ "io nen",
+ "ione n",
+ "i onen",
+ "▁st ops",
+ "▁stop s",
+ "▁sto ps",
+ "▁const ants",
+ "▁constant s",
+ "gu ard",
+ "bo w",
+ "b ow",
+ "▁e rs",
+ "▁er s",
+ "▁ ers",
+ "▁Fire base",
+ "▁C lear",
+ "▁Cl ear",
+ "▁Cle ar",
+ "▁ Clear",
+ "▁H oly",
+ "▁Hol y",
+ "▁Ho ly",
+ "W in",
+ "▁title s",
+ "▁tit les",
+ "▁т рав",
+ "▁тра в",
+ "▁cont rib",
+ "▁contr ib",
+ "▁ contrib",
+ "hä ng",
+ "h äng",
+ "▁phot ograph",
+ "▁photo graph",
+ "▁Dist ribution",
+ "if ts",
+ "ift s",
+ "▁a unque",
+ "com b",
+ "co mb",
+ "c omb",
+ "AD D",
+ "A DD",
+ "▁public ation",
+ "▁pub lication",
+ "▁publi cation",
+ "▁слу ж",
+ "▁к ня",
+ "▁ay ant",
+ "▁re store",
+ "▁r estore",
+ "▁rest ore",
+ "▁resto re",
+ "▁bel ief",
+ "▁v ég",
+ "▁vé g",
+ "▁ext ensions",
+ "▁extension s",
+ "▁extens ions",
+ "▁ extensions",
+ "▁de com",
+ "▁dec om",
+ "вши й",
+ "в ший",
+ "W T",
+ "▁par ti",
+ "▁part i",
+ "▁gi oc",
+ "▁ми ра",
+ "▁ мира",
+ "▁is su",
+ "▁iss u",
+ "pi pe",
+ "pip e",
+ "p ipe",
+ "▁pro ps",
+ "▁pr ops",
+ "▁prop s",
+ "▁ props",
+ "▁w illing",
+ "▁will ing",
+ "▁wil ling",
+ "▁n est",
+ "▁ne st",
+ "▁ nest",
+ "as o",
+ "a so",
+ "po t",
+ "p ot",
+ "▁hand les",
+ "▁handle s",
+ "▁ф о",
+ "▁ фо",
+ "▁m oder",
+ "▁mod er",
+ "▁mo der",
+ "▁mode r",
+ "▁eben falls",
+ "▁fight ing",
+ "um bn",
+ "umb n",
+ "▁trans parent",
+ "▁K rist",
+ "▁Kr ist",
+ "▁home s",
+ "▁hom es",
+ "▁ho mes",
+ "▁voy age",
+ "Fa iled",
+ "Fail ed",
+ "▁B ird",
+ "▁Bi rd",
+ "▁Bir d",
+ "▁He art",
+ "Count er",
+ "Co unter",
+ "C ounter",
+ "▁Scott ish",
+ "át ica",
+ "▁ar beit",
+ "▁ arbeit",
+ "^{ -\\",
+ "^{- \\",
+ "▁S or",
+ "▁So r",
+ "▁eng aged",
+ "▁engag ed",
+ "▁a side",
+ "▁as ide",
+ "▁asi de",
+ "▁F ou",
+ "▁Fo u",
+ "▁w iel",
+ "▁wie l",
+ "▁re const",
+ "▁recon st",
+ "ou sin",
+ "ous in",
+ "▁host ed",
+ "▁ho sted",
+ "▁hos ted",
+ "▁c lasse",
+ "▁class e",
+ "▁cl asse",
+ "▁clas se",
+ "▁con test",
+ "▁cont est",
+ "▁conte st",
+ ".. .\"",
+ "... \"",
+ "мо м",
+ "м ом",
+ "▁be an",
+ "▁ bean",
+ "ge m",
+ "g em",
+ "▁consult ato",
+ "▁b io",
+ "▁bi o",
+ "▁ bio",
+ "▁subject s",
+ "bo Box",
+ "▁Sch rift",
+ "▁d inner",
+ "▁din ner",
+ "ă r",
+ "▁r ówn",
+ "▁% %",
+ "▁ %%",
+ "ba ge",
+ "bag e",
+ "b age",
+ "▁ver öff",
+ "▁det ected",
+ "▁detect ed",
+ "ie nn",
+ "ien n",
+ "i enn",
+ "ro se",
+ "ros e",
+ "r ose",
+ "▁T on",
+ "▁To n",
+ "Comp lete",
+ "Comple te",
+ "▁pro to",
+ "▁pr oto",
+ "▁prot o",
+ "▁ proto",
+ "ich ts",
+ "icht s",
+ "i chts",
+ "ST AT",
+ "Check ed",
+ "▁in ten",
+ "▁i nten",
+ "▁int en",
+ "▁inte n",
+ "▁s mile",
+ "▁sm ile",
+ "▁st rip",
+ "▁str ip",
+ "▁stri p",
+ "▁ strip",
+ "ne ut",
+ "') ;\r",
+ "'); \r",
+ "' );\r",
+ "fo ur",
+ "f our",
+ "▁to das",
+ "▁tod as",
+ "▁toda s",
+ "Control s",
+ "▁thor ough",
+ "ru p",
+ "r up",
+ "▁држа ви",
+ "it ă",
+ "Pro tocol",
+ "К а",
+ "▁expand ed",
+ "ex tra",
+ "ext ra",
+ "op ort",
+ "opo rt",
+ "o port",
+ "▁Ста нов",
+ "le ases",
+ "lease s",
+ "▁n otion",
+ "▁not ion",
+ "▁no tion",
+ "▁g uest",
+ "▁gu est",
+ "▁Is lands",
+ "▁Island s",
+ "ic ked",
+ "ick ed",
+ "▁D ave",
+ "▁Dav e",
+ "▁Da ve",
+ "▁ref lection",
+ "▁reflect ion",
+ "li v",
+ "l iv",
+ "ál ní",
+ "▁reve aled",
+ "▁s og",
+ "▁so g",
+ "▁T ax",
+ "▁Ta x",
+ "▁period o",
+ "▁peri odo",
+ "▁Welt krie",
+ "catal ina",
+ "qu é",
+ "q ué",
+ "▁F ather",
+ "▁Fa ther",
+ "▁B ir",
+ "▁Bi r",
+ "ex pect",
+ "exp ect",
+ "▁re gression",
+ "▁reg ression",
+ "in é",
+ "i né",
+ "▁d abei",
+ "▁da bei",
+ "pe rm",
+ "per m",
+ "p erm",
+ "ме не",
+ "мен е",
+ "м ене",
+ "▁A bd",
+ "▁Ab d",
+ "▁C F",
+ "▁ CF",
+ "ar ks",
+ "ark s",
+ "resol ve",
+ "wed ge",
+ "w edge",
+ "▁initial ization",
+ "▁Vé ase",
+ "▁при ня",
+ "st mt",
+ "▁in come",
+ "▁inc ome",
+ "M Y",
+ "▁od kazy",
+ "▁Sie he",
+ "▁bod ies",
+ "▁s oc",
+ "▁so c",
+ "R andom",
+ "▁s enza",
+ "▁sen za",
+ "ab lo",
+ "abl o",
+ "a blo",
+ "▁reg arded",
+ "▁regard ed",
+ "on Create",
+ "▁Mag azine",
+ "▁R af",
+ "▁Ra f",
+ "▁Buen os",
+ "и л",
+ ")) );",
+ "))) ;",
+ ") ));",
+ "ca pt",
+ "cap t",
+ "c apt",
+ "re direct",
+ "red irect",
+ "▁pe tit",
+ "▁pet it",
+ "▁f arm",
+ "▁far m",
+ "▁fa rm",
+ "▁r ôle",
+ "▁стать и",
+ " ",
+ "sub figure",
+ "èce s",
+ "è ces",
+ "zi el",
+ "zie l",
+ "z iel",
+ "▁о кон",
+ "▁ок он",
+ "E E",
+ "me e",
+ "m ee",
+ "▁p erten",
+ "▁per ten",
+ "▁pert en",
+ "▁représ ent",
+ "▁L A",
+ "▁ LA",
+ "? '",
+ "▁т ру",
+ "▁r ational",
+ "▁rat ional",
+ "▁ratio nal",
+ "os of",
+ "oso f",
+ "▁k ne",
+ "▁kn e",
+ "▁art ists",
+ "▁artist s",
+ "Fl ow",
+ "F low",
+ "▁А ль",
+ "▁Ал ь",
+ "iz ard",
+ "iza rd",
+ "izar d",
+ "▁num ero",
+ "▁numer o",
+ "act ic",
+ "a ctic",
+ "▁de struct",
+ "▁dest ruct",
+ "▁destru ct",
+ "▁П ра",
+ "ons ieur",
+ "q t",
+ "ab estanden",
+ "no ść",
+ "Con nect",
+ "Conne ct",
+ "▁o racle",
+ "▁or acle",
+ "▁ora cle",
+ "▁ oracle",
+ "▁Stock holm",
+ "size of",
+ "▁gem äß",
+ "AC T",
+ "A CT",
+ "▁ex pert",
+ "▁exp ert",
+ "▁exper t",
+ "ut ions",
+ "ution s",
+ "uti ons",
+ "▁h acia",
+ "▁ha cia",
+ "▁log ger",
+ "▁ logger",
+ "▁f ool",
+ "▁fo ol",
+ "▁foo l",
+ "ry pto",
+ "rypt o",
+ "æ r",
+ "▁c idade",
+ "▁ci dade",
+ "▁состав е",
+ "▁соста ве",
+ "ok er",
+ "oke r",
+ "o ker",
+ "▁Trans fer",
+ "▁den ied",
+ "Tr ack",
+ "Tra ck",
+ "T rack",
+ "▁r adi",
+ "▁ra di",
+ "▁rad i",
+ "ze c",
+ "z ec",
+ "▁Histor ic",
+ "▁Einwo hner",
+ "ко ю",
+ "▁х ра",
+ "▁ хра",
+ "▁C ategory",
+ "▁ Category",
+ "▁Dis ney",
+ "▁sw ap",
+ "▁ swap",
+ "Be gin",
+ "B egin",
+ "▁m ientras",
+ "▁d ance",
+ "▁dan ce",
+ "▁t ête",
+ "▁d roit",
+ "▁dr oit",
+ "▁dro it",
+ "er ta",
+ "ert a",
+ "▁bird s",
+ "▁bir ds",
+ "▁con vin",
+ "▁conv in",
+ "par ator",
+ "para tor",
+ "д ра",
+ "▁E S",
+ "▁ ES",
+ "▁Ress ources",
+ "▁Ressource s",
+ "EG IN",
+ "ück e",
+ "ü cke",
+ "▁Cr uz",
+ "▁Cru z",
+ "ab ling",
+ "abl ing",
+ "a bling",
+ "▁\" @",
+ "▁me tres",
+ "▁met res",
+ "▁B eg",
+ "▁Be g",
+ "▁Gr ünd",
+ "▁B oh",
+ "▁Bo h",
+ "▁m ile",
+ "▁mil e",
+ "▁mi le",
+ "▁ mile",
+ "▁Techn ology",
+ "\" +",
+ "ac co",
+ "acc o",
+ "a cco",
+ "▁s s",
+ "▁ ss",
+ "▁F ed",
+ "▁Fe d",
+ "▁H end",
+ "▁He nd",
+ "▁Hen d",
+ "us ch",
+ "usc h",
+ "u sch",
+ "it ä",
+ "fol k",
+ "f olk",
+ "▁abs or",
+ "an tal",
+ "ant al",
+ "anta l",
+ "od ge",
+ "▁WH EN",
+ "▁Extern í",
+ "▁Reg iment",
+ "▁evalu ation",
+ "▁T ai",
+ "▁Ta i",
+ "▁voc als",
+ "▁vocal s",
+ "▁ex perimental",
+ "▁experiment al",
+ "em bed",
+ "emb ed",
+ "▁M inn",
+ "▁Min n",
+ "▁Mi nn",
+ "▁в ме",
+ "pr ec",
+ "pre c",
+ "p rec",
+ "ever y",
+ "ev ery",
+ "e very",
+ "▁ho of",
+ "▁Fern ando",
+ "▁Bibli ographie",
+ "▁n ag",
+ "▁na g",
+ "amerikan ischer",
+ "▁m arks",
+ "▁mar ks",
+ "▁mark s",
+ "▁ marks",
+ "▁U TC",
+ "▁ UTC",
+ "▁un certain",
+ "ди я",
+ "ol ia",
+ "oli a",
+ "o lia",
+ "▁c up",
+ "▁cu p",
+ "▁ cup",
+ "▁f ille",
+ "▁fil le",
+ "▁fill e",
+ "▁fi lle",
+ "▁d ok",
+ "▁do k",
+ "use ppe",
+ "est erd",
+ "ester d",
+ "este rd",
+ "e sterd",
+ "▁B rand",
+ "▁Br and",
+ "▁Bra nd",
+ "▁Bran d",
+ "▁Th ird",
+ "P P",
+ "no des",
+ "node s",
+ "n odes",
+ "▁P ad",
+ "▁Pa d",
+ "▁ Pad",
+ "▁l oved",
+ "▁lo ved",
+ "▁love d",
+ "▁lov ed",
+ "sw ing",
+ "s wing",
+ "▁surpr ised",
+ "▁surprise d",
+ "ar di",
+ "ard i",
+ "▁G R",
+ "▁ GR",
+ "] \"",
+ "▁equ ally",
+ "▁equal ly",
+ "▁eq ually",
+ "ih e",
+ "i he",
+ "ca re",
+ "car e",
+ "c are",
+ "пи сок",
+ "пис ок",
+ "li jk",
+ "lij k",
+ "l ijk",
+ "ri nn",
+ "rin n",
+ "r inn",
+ "▁\\ [\\",
+ "▁\\[ \\",
+ "▁s ons",
+ "▁so ns",
+ "▁son s",
+ "▁t ät",
+ "ic amente",
+ "ica mente",
+ "▁l isting",
+ "▁list ing",
+ "iel lement",
+ "ielle ment",
+ "▁nyel ven",
+ "▁d s",
+ "▁ ds",
+ "▁agr icult",
+ "▁H ermann",
+ "▁Her mann",
+ "▁Herm ann",
+ "▁bes ides",
+ "▁beside s",
+ "pro gress",
+ "prog ress",
+ "▁pec uliar",
+ "fo cus",
+ "f ocus",
+ "c n",
+ "- $",
+ "ствен ный",
+ "ou rg",
+ "our g",
+ "o urg",
+ "▁w yn",
+ "▁wy n",
+ "▁conduct ed",
+ "▁condu cted",
+ "▁Станов ништво",
+ "connect ed",
+ "conne cted",
+ "conn ected",
+ "▁b ott",
+ "▁bo tt",
+ "▁bot t",
+ "▁с мер",
+ "▁см ер",
+ "▁P oz",
+ "▁Po z",
+ "un ct",
+ "unc t",
+ "con da",
+ "cond a",
+ "c onda",
+ "▁савез ној",
+ "▁ha vet",
+ "▁have t",
+ "▁hav et",
+ "li gt",
+ "lig t",
+ "l igt",
+ "or ted",
+ "ort ed",
+ "orte d",
+ "▁ent ering",
+ "▁enter ing",
+ "mult ip",
+ "multi p",
+ "mul tip",
+ "▁Tem ple",
+ "▁Temp le",
+ "▁P lant",
+ "▁Pl ant",
+ "▁Plan t",
+ "▁Pla nt",
+ "type of",
+ "▁V lad",
+ "▁qu ed",
+ "▁que d",
+ "▁q ued",
+ "▁re ste",
+ "▁r este",
+ "▁res te",
+ "▁rest e",
+ "▁ма й",
+ "▁ май",
+ "▁V ery",
+ "▁Ver y",
+ "▁Ve ry",
+ "ambigu ation",
+ "▁ch alleng",
+ "▁res pective",
+ "▁respect ive",
+ "▁т ор",
+ "▁то р",
+ "▁ тор",
+ "C trl",
+ "▁abs ence",
+ "ar u",
+ "a ru",
+ "во е",
+ "▁för st",
+ "▁s q",
+ "▁ sq",
+ "▁Em peror",
+ "▁I gn",
+ "▁Ig n",
+ "▁ Ign",
+ "▁т ова",
+ "▁то ва",
+ "▁ това",
+ ": `",
+ "ad oop",
+ "ado op",
+ "▁Mad ame",
+ "▁gru ppo",
+ "▁grup po",
+ "st ud",
+ "▁extern as",
+ "▁Александ р",
+ "▁d ign",
+ "▁di gn",
+ "▁dig n",
+ "▁жи ве",
+ "Am ount",
+ "A mount",
+ "▁correl ate",
+ "▁corre late",
+ "▁F ant",
+ "▁Fa nt",
+ "▁r ails",
+ "▁ra ils",
+ "▁rail s",
+ "▁ rails",
+ "f p",
+ "министра тив",
+ "▁b ought",
+ "▁fil ters",
+ "▁filter s",
+ "▁ filters",
+ "▁anc ora",
+ "▁part ner",
+ "▁qu and",
+ "▁quan d",
+ "sym bol",
+ "s ymbol",
+ "ul ating",
+ "ula ting",
+ "▁z d",
+ "▁ zd",
+ "aw n",
+ "a wn",
+ "▁G rant",
+ "▁Gr ant",
+ "▁Gra nt",
+ "▁Gran t",
+ "bec ause",
+ "b ecause",
+ "ra ble",
+ "rab le",
+ "r able",
+ "\\ }",
+ "íst icas",
+ "ística s",
+ "▁у че",
+ "▁péri ode",
+ "▁s ke",
+ "▁sk e",
+ "▁ ske",
+ "▁Any way",
+ "▁index es",
+ "▁inde xes",
+ "▁direct ions",
+ "▁dire ctions",
+ "▁direction s",
+ "▁R AM",
+ "▁RA M",
+ "▁ RAM",
+ "ch rome",
+ "chr ome",
+ "chrom e",
+ "▁a post",
+ "▁ap ost",
+ "▁apo st",
+ "▁war nings",
+ "▁warning s",
+ "▁warn ings",
+ "▁Air port",
+ "V I",
+ "ab ile",
+ "abil e",
+ "abi le",
+ "▁l ord",
+ "▁lo rd",
+ "pro vider",
+ "prov ider",
+ "▁J i",
+ "ost ream",
+ "o stream",
+ "▁geme ente",
+ "table View",
+ "Ex tra",
+ "Ext ra",
+ "c ursor",
+ "eg round",
+ "egr ound",
+ "e ground",
+ "▁M oz",
+ "▁Mo z",
+ "▁r ib",
+ "▁ri b",
+ "▁ rib",
+ "▁m orph",
+ "▁mor ph",
+ "lo ads",
+ "load s",
+ "el sk",
+ "els k",
+ "▁M AX",
+ "▁MA X",
+ "▁ MAX",
+ "▁Santi ago",
+ "▁H im",
+ "▁Hi m",
+ "code s",
+ "co des",
+ "cod es",
+ "c odes",
+ "▁l anz",
+ "▁lan z",
+ "▁count s",
+ "▁coun ts",
+ "rinn ingsområ",
+ "щ ё",
+ "▁sp é",
+ "▁pier ws",
+ "▁pierw s",
+ "▁S ver",
+ "▁Sv er",
+ "▁a cknow",
+ "▁ac know",
+ "Bo olean",
+ "▁фами ли",
+ "▁Sen ate",
+ "шо в",
+ "ш ов",
+ "ag ers",
+ "age rs",
+ "ager s",
+ "a gers",
+ "▁Nue va",
+ "bi l",
+ "b il",
+ "ki em",
+ "kie m",
+ "k iem",
+ "▁M ey",
+ "▁Me y",
+ "wi j",
+ "w ij",
+ "▁G mbH",
+ "valid ation",
+ "▁en suite",
+ "in king",
+ "ink ing",
+ "▁c ampion",
+ "▁camp ion",
+ "▁finan cial",
+ "▁financi al",
+ "iz on",
+ "izo n",
+ "i zon",
+ "He aders",
+ "Head ers",
+ "Header s",
+ "▁deprec ated",
+ "▁fon ction",
+ "RE G",
+ "R EG",
+ "▁vol umes",
+ "▁volume s",
+ "▁C hi",
+ "▁Ch i",
+ "▁encounter ed",
+ "la k",
+ "l ak",
+ "ра я",
+ "▁contin ues",
+ "▁continu es",
+ "▁continue s",
+ "▁~ [",
+ "uer te",
+ "u erte",
+ "▁\\ ;",
+ "▁ \\;",
+ "▁D ok",
+ "▁Do k",
+ "▁we ights",
+ "▁weight s",
+ "▁r h",
+ "▁ rh",
+ "▁Na pole",
+ "▁Nap ole",
+ "▁natur ally",
+ "▁natural ly",
+ "sk u",
+ "s ku",
+ "pa s",
+ "p as",
+ "▁g egründ",
+ "et r",
+ "e tr",
+ "▁K u",
+ "ic ted",
+ "ict ed",
+ "i cted",
+ "▁fab ric",
+ "▁A SC",
+ "▁AS C",
+ "▁ ASC",
+ "▁Entertain ment",
+ "▁en erg",
+ "▁ener g",
+ "кла д",
+ "к лад",
+ "om on",
+ "omo n",
+ "o mon",
+ "th eme",
+ "the me",
+ "▁ха рак",
+ "▁d raft",
+ "▁dr aft",
+ "▁dra ft",
+ "▁ch annels",
+ "▁channel s",
+ "▁de sert",
+ "▁des ert",
+ "▁deser t",
+ "▁tra vés",
+ "▁trav és",
+ "▁L ock",
+ "▁Lo ck",
+ "▁Loc k",
+ "▁ Lock",
+ "▁s iendo",
+ "▁si endo",
+ "фе к",
+ "ф ек",
+ "m ême",
+ "▁pa cket",
+ "▁pack et",
+ "▁pac ket",
+ "▁Mount ain",
+ "▁F ahr",
+ "▁Fa hr",
+ "bra io",
+ "пе ре",
+ "пер е",
+ "п ере",
+ "▁gen annt",
+ "▁dep loyment",
+ "▁deploy ment",
+ "Pa l",
+ "P al",
+ "но г",
+ "ст ру",
+ "стр у",
+ "Pr im",
+ "P rim",
+ "f ür",
+ "▁danger ous",
+ "▁sz ám",
+ "re ck",
+ "rec k",
+ "▁pop up",
+ "ic ky",
+ "ick y",
+ "in ar",
+ "ina r",
+ "i nar",
+ "co wo",
+ "cow o",
+ "c owo",
+ "нци кло",
+ "ít ás",
+ "▁pl ugins",
+ "▁plugin s",
+ "▁plug ins",
+ "▁ plugins",
+ "▁dr iven",
+ "▁drive n",
+ "▁dri ven",
+ "▁driv en",
+ "ле в",
+ "л ев",
+ "▁\" (",
+ "tt a",
+ "t ta",
+ "▁ Ú",
+ "▁e b",
+ "▁ eb",
+ "▁' ';",
+ "▁'' ;",
+ "▁kn ock",
+ "▁ос нова",
+ "▁основ а",
+ "▁m aison",
+ "▁ma ison",
+ "▁mais on",
+ "▁mai son",
+ "г ля",
+ "▁Hon or",
+ "▁Ho nor",
+ "ta il",
+ "t ail",
+ "ri tz",
+ "rit z",
+ "r itz",
+ "▁gu ys",
+ "▁combin ations",
+ "▁combination s",
+ "ond ere",
+ "onder e",
+ "onde re",
+ "▁A ld",
+ "▁Al d",
+ "▁f iddle",
+ "▁ fiddle",
+ "да в",
+ "ur d",
+ "u rd",
+ "▁pro jection",
+ "▁project ion",
+ "▁Tamb ién",
+ "ve rb",
+ "ver b",
+ "v erb",
+ "▁ter re",
+ "▁ terre",
+ "ru gu",
+ "rug u",
+ "▁se ptember",
+ "▁sept ember",
+ "▁< !",
+ "co st",
+ "cos t",
+ "c ost",
+ "▁n ut",
+ "▁nu t",
+ "▁ nut",
+ "{ %",
+ "▁ub ic",
+ "am arin",
+ "ama rin",
+ "amar in",
+ "ти и",
+ "▁pat ron",
+ "▁patr on",
+ "▁am ely",
+ "▁e sto",
+ "▁est o",
+ "▁es to",
+ "▁ esto",
+ "▁li stop",
+ "▁list op",
+ "fa l",
+ "f al",
+ "▁P rop",
+ "▁Pro p",
+ "▁Pr op",
+ "▁ Prop",
+ "▁O nt",
+ "▁On t",
+ "▁M ade",
+ "▁Ma de",
+ "▁Mad e",
+ "TE ST",
+ "▁N em",
+ "▁Ne m",
+ "▁N ations",
+ "▁Nat ions",
+ "▁Nation s",
+ "▁в у",
+ "▁ ву",
+ "in cluding",
+ "includ ing",
+ "▁spect rum",
+ "▁L an",
+ "▁La n",
+ "▁E ver",
+ "▁Ev er",
+ "Pa ul",
+ "t m",
+ "App end",
+ "Ap pend",
+ "Rel ative",
+ "dis abled",
+ "disable d",
+ "return s",
+ "▁flow ers",
+ "▁flo wers",
+ "▁flower s",
+ "ik u",
+ "i ku",
+ "▁| \\",
+ "▁ |\\",
+ "▁Jord an",
+ "▁Sm all",
+ "▁c ic",
+ "▁ci c",
+ "▁sex ual",
+ "au tre",
+ "aut re",
+ "ва л",
+ "в ал",
+ "▁r ip",
+ "▁ri p",
+ "▁ rip",
+ "ou st",
+ "ous t",
+ "o ust",
+ "▁Philadel phia",
+ "▁u k",
+ "▁ uk",
+ "▁M ongo",
+ "▁Mon go",
+ "▁Mong o",
+ "xml ns",
+ "▁sh op",
+ "▁sho p",
+ "▁ shop",
+ "▁debug ger",
+ "▁z aj",
+ "▁za j",
+ "▁B illy",
+ "▁Bill y",
+ "▁Bil ly",
+ "▁n iem",
+ "▁nie m",
+ "▁ni em",
+ "ol is",
+ "oli s",
+ "o lis",
+ "▁ро ссий",
+ "ag ner",
+ "agn er",
+ "agne r",
+ "▁m aven",
+ "▁ma ven",
+ "▁ maven",
+ "▁Gu stav",
+ "▁Gust av",
+ "A us",
+ "comp are",
+ "▁j eu",
+ "▁je u",
+ "ud er",
+ "ude r",
+ "u der",
+ "ish ment",
+ "▁ди визи",
+ "▁Fin land",
+ "ну т",
+ "н ут",
+ "z és",
+ "▁Liga ções",
+ "▁Lig ações",
+ "▁qu ello",
+ "▁quel lo",
+ "an notation",
+ "annot ation",
+ "▁th rew",
+ "▁thr ew",
+ "▁thre w",
+ "▁Pro of",
+ "▁ Proof",
+ "▁A rea",
+ "▁Ar ea",
+ "▁Are a",
+ "▁ Area",
+ "as hi",
+ "ash i",
+ "▁F O",
+ "▁ FO",
+ "ja min",
+ "j amin",
+ "ден т",
+ "д ент",
+ "▁un us",
+ "fri end",
+ ".\" );",
+ ".\") ;",
+ ". \");",
+ "▁tra kten",
+ "document class",
+ "an ka",
+ "ank a",
+ "▁ar rive",
+ "▁arr ive",
+ "▁arriv e",
+ "▁d onne",
+ "▁don ne",
+ "▁donn e",
+ "ol y",
+ "o ly",
+ "▁R ein",
+ "▁Re in",
+ "▁face book",
+ "▁fac ebook",
+ "▁ facebook",
+ "ic ina",
+ "ici na",
+ "sl ice",
+ "s lice",
+ "▁n agy",
+ "▁na gy",
+ "▁nag y",
+ "▁he bben",
+ "▁I C",
+ "▁ IC",
+ "▁B ag",
+ "▁Ba g",
+ "▁ Bag",
+ "▁circ ul",
+ "▁cir cul",
+ "ác t",
+ "á ct",
+ "mit t",
+ "mi tt",
+ "m itt",
+ "▁g rey",
+ "▁gr ey",
+ "▁gre y",
+ "▁c av",
+ "▁ca v",
+ "▁осо би",
+ "▁sym metric",
+ "▁symmet ric",
+ "▁S ic",
+ "▁Si c",
+ "▁med ium",
+ "▁medi um",
+ "▁ medium",
+ "▁U TF",
+ "▁ UTF",
+ "▁D opo",
+ "▁Do po",
+ "í ch",
+ "bar e",
+ "ba re",
+ "b are",
+ "dz ie",
+ "d zie",
+ "▁he aven",
+ "▁heav en",
+ "▁cam pe",
+ "▁camp e",
+ "ester day",
+ "esterd ay",
+ "▁W issenschaft",
+ "по ль",
+ "пол ь",
+ "di d",
+ "d id",
+ "al er",
+ "ale r",
+ "a ler",
+ "▁citiz ens",
+ "▁Marg aret",
+ "▁s ought",
+ "ch arts",
+ "char ts",
+ "chart s",
+ "CL C",
+ "C LC",
+ "ol ly",
+ "oll y",
+ "ys z",
+ "y sz",
+ "wa ld",
+ "wal d",
+ "w ald",
+ "▁f en",
+ "▁fe n",
+ "▁ fen",
+ "▁S ix",
+ "▁Si x",
+ "▁U rs",
+ "▁Ur s",
+ "▁ор ган",
+ "▁T rad",
+ "▁Tr ad",
+ "▁Tra d",
+ "cu e",
+ "c ue",
+ "sch utz",
+ "▁prec ise",
+ "▁precis e",
+ "▁W indow",
+ "▁Wind ow",
+ "▁ Window",
+ "ти е",
+ "ло ві",
+ "лов і",
+ "it ori",
+ "ito ri",
+ "itor i",
+ "dis ambiguation",
+ "▁х и",
+ "▁ хи",
+ "▁N atural",
+ "▁Natur al",
+ "▁Nat ural",
+ "da n",
+ "d an",
+ "▁con crete",
+ "ци ја",
+ "▁s pel",
+ "▁sp el",
+ "▁spe l",
+ "▁Fa iled",
+ "▁Fail ed",
+ "▁ Failed",
+ "ści e",
+ "śc ie",
+ "ś cie",
+ "▁b uf",
+ "▁bu f",
+ "▁ buf",
+ "uc a",
+ "u ca",
+ "ic ional",
+ "ici onal",
+ "icio nal",
+ "icion al",
+ "▁ott obre",
+ "▁otto bre",
+ "▁ф і",
+ "▁ фі",
+ "▁submit ted",
+ "▁subm itted",
+ "la ve",
+ "lav e",
+ "l ave",
+ "▁P lot",
+ "▁Pl ot",
+ "▁ Plot",
+ "▁col leg",
+ "▁coll eg",
+ "▁colle g",
+ "ad em",
+ "ade m",
+ "a dem",
+ "▁ch aque",
+ "▁cha que",
+ "▁neighbor hood",
+ "▁calci atore",
+ "Lo op",
+ "L oop",
+ "▁G ast",
+ "▁Ga st",
+ "▁Gas t",
+ "▁ко гда",
+ "▁indust rial",
+ "▁industri al",
+ "▁f atal",
+ "▁fa tal",
+ "▁fat al",
+ "▁C ert",
+ "▁Ce rt",
+ "▁Cer t",
+ "▁ Cert",
+ "la tion",
+ "lat ion",
+ "l ation",
+ "▁О дна",
+ "▁Од на",
+ "▁jam ais",
+ "▁acc um",
+ "Id entity",
+ "Ident ity",
+ "▁Me dal",
+ "▁Med al",
+ "Met adata",
+ "Meta data",
+ "▁лю дя",
+ "br idge",
+ "brid ge",
+ "b ridge",
+ "Go od",
+ "G ood",
+ "▁что бы",
+ "▁comp oser",
+ "▁compos er",
+ "▁compose r",
+ "▁b read",
+ "▁br ead",
+ "▁bre ad",
+ "▁clos ure",
+ "▁ closure",
+ "▁large ly",
+ "▁larg ely",
+ "F B",
+ "▁обла сть",
+ "▁autom atic",
+ "▁automat ic",
+ "ar ía",
+ "a ría",
+ "▁sufficient ly",
+ "▁ital iana",
+ "▁ка че",
+ "▁J ó",
+ "hi story",
+ "histor y",
+ "h istory",
+ "▁H D",
+ "▁ HD",
+ "▁sigu iente",
+ "ne ll",
+ "nel l",
+ "n ell",
+ "▁G ree",
+ "▁Gr ee",
+ "▁Gre e",
+ "▁T i",
+ "▁trans ferred",
+ "▁transfer red",
+ "équ ipe",
+ "é quipe",
+ "▁Phili ppe",
+ "▁Philipp e",
+ "▁Philip pe",
+ "▁encou rag",
+ "▁V ietnam",
+ "▁graph s",
+ "▁symmet ry",
+ "fr ed",
+ "fre d",
+ "f red",
+ "we ek",
+ "▁bron ze",
+ "ry s",
+ "r ys",
+ "▁name ly",
+ "▁nam ely",
+ "on ders",
+ "ond ers",
+ "onder s",
+ "onde rs",
+ "lem agne",
+ "X Y",
+ "Con vert",
+ "}] (",
+ "} ](",
+ "Reg ion",
+ "pe cies",
+ "pec ies",
+ "▁te xture",
+ "▁text ure",
+ "▁c hr",
+ "▁ch r",
+ "▁ chr",
+ "не го",
+ "н его",
+ "▁some body",
+ "a qu",
+ "er as",
+ "era s",
+ "e ras",
+ "▁Н ово",
+ "▁Но во",
+ "▁Нов о",
+ "▁d ez",
+ "▁de z",
+ "an iu",
+ "ani u",
+ "a niu",
+ "ok rat",
+ "▁co vers",
+ "▁cover s",
+ "▁cov ers",
+ "▁sign als",
+ "▁signal s",
+ "ђ е",
+ "▁H eb",
+ "▁He b",
+ "▁An ti",
+ "▁Ant i",
+ "IV E",
+ "I VE",
+ "▁re ss",
+ "▁r ess",
+ "▁res s",
+ "▁ ress",
+ "LE TE",
+ "yn a",
+ "y na",
+ "п ла",
+ "жде ния",
+ "ж дения",
+ "▁ch amp",
+ "▁cha mp",
+ "▁cham p",
+ "▁vill ages",
+ "▁village s",
+ "▁villa ges",
+ "Z one",
+ "▁i Phone",
+ "▁sou vent",
+ "сь кі",
+ "ськ і",
+ "▁feb braio",
+ "ér cito",
+ "▁X I",
+ "ok at",
+ "oka t",
+ "▁mem bres",
+ "▁memb res",
+ "▁membre s",
+ "ju nit",
+ "j unit",
+ "▁D raw",
+ "▁Dr aw",
+ "▁Dra w",
+ "▁ Draw",
+ "▁п рово",
+ "▁про во",
+ "▁пров о",
+ "▁пр ово",
+ "aud io",
+ "audi o",
+ "a udio",
+ "en dl",
+ "end l",
+ "▁N ad",
+ "▁Na d",
+ "▁magn itude",
+ "Su r",
+ "S ur",
+ "ic ing",
+ "ici ng",
+ "i cing",
+ "▁un w",
+ "▁о три",
+ "▁от ри",
+ "▁B ey",
+ "▁Be y",
+ "▁V ik",
+ "▁Vi k",
+ "▁polít ica",
+ "port er",
+ "por ter",
+ "porte r",
+ "p orter",
+ "▁Bar bara",
+ "▁Barb ara",
+ "ál t",
+ "á lt",
+ "bi b",
+ "b ib",
+ "▁accom pan",
+ "▁accomp an",
+ "V P",
+ "▁en coded",
+ "▁enc oded",
+ "▁encode d",
+ "▁ encoded",
+ "▁S ometimes",
+ "▁Some times",
+ "bi rd",
+ "bir d",
+ "b ird",
+ "▁U lt",
+ "▁Ul t",
+ "▁t un",
+ "▁tu n",
+ "get Text",
+ "▁ar rival",
+ "▁arr ival",
+ "▁arriv al",
+ "script style",
+ "{ `",
+ "▁pers pective",
+ "LI NE",
+ "LIN E",
+ "L INE",
+ "Form atter",
+ "Format ter",
+ "▁b om",
+ "▁bo m",
+ "в ра",
+ "DE BUG",
+ "Bound s",
+ "B ounds",
+ "▁T itle",
+ "▁Tit le",
+ "▁ Title",
+ "l ó",
+ "Da n",
+ "D an",
+ "▁g ene",
+ "▁ge ne",
+ "▁gen e",
+ "▁B it",
+ "▁Bi t",
+ "▁ Bit",
+ "▁reprodu ce",
+ "▁graph ics",
+ "▁ graphics",
+ "▁с ем",
+ "▁се м",
+ "р ё",
+ "▁ре ки",
+ "us alem",
+ "usa lem",
+ "ро ж",
+ "▁D ES",
+ "▁DE S",
+ "▁So ftware",
+ "ur ance",
+ "u rance",
+ "ithmet ic",
+ "en ess",
+ "ene ss",
+ "enes s",
+ "e ness",
+ "ic hi",
+ "ich i",
+ "i chi",
+ "Con verter",
+ "Convert er",
+ "▁g ithub",
+ "▁ github",
+ "erd ings",
+ "gl ise",
+ "ác h",
+ "á ch",
+ "▁bu ried",
+ "▁bur ied",
+ "▁v ision",
+ "▁vis ion",
+ "▁ vision",
+ "M iss",
+ "▁s ees",
+ "▁se es",
+ "▁see s",
+ "▁person nes",
+ "▁pers onnes",
+ "▁personn es",
+ "▁personne s",
+ "▁In tel",
+ "▁Int el",
+ "el ia",
+ "eli a",
+ "e lia",
+ "▁č lán",
+ "▁c hi",
+ "▁ch i",
+ "▁ chi",
+ "▁k las",
+ "▁kl as",
+ "au té",
+ "aut é",
+ "▁st ark",
+ "▁star k",
+ "cz e",
+ "c ze",
+ "▁dr ivers",
+ "▁driver s",
+ "▁drive rs",
+ "▁dri vers",
+ "▁driv ers",
+ "v n",
+ "! ,",
+ "▁го ды",
+ "▁год ы",
+ "H i",
+ "▁expla ins",
+ "▁expl ains",
+ "▁explain s",
+ "art icles",
+ "article s",
+ "▁z ug",
+ "▁zu g",
+ "▁ zug",
+ "Pro m",
+ "Pr om",
+ "P rom",
+ "> =",
+ "▁Be at",
+ "▁S ax",
+ "▁Sa x",
+ "vert ical",
+ "кт о",
+ "к то",
+ "▁pl ants",
+ "▁plan ts",
+ "▁plant s",
+ "▁Ré férences",
+ "▁Référence s",
+ "▁og ni",
+ "▁c urs",
+ "▁cu rs",
+ "▁cur s",
+ "▁S K",
+ "▁ SK",
+ "он и",
+ "о ни",
+ "▁des tac",
+ "▁dest ac",
+ "\") ;\r",
+ "\"); \r",
+ "\" );\r",
+ "▁S ure",
+ "▁Su re",
+ "▁Sur e",
+ "▁part ido",
+ "▁parti do",
+ "▁Fol ge",
+ "▁Mo ore",
+ "▁w z",
+ "ск ус",
+ "ску с",
+ "lt re",
+ "l tre",
+ "on do",
+ "ond o",
+ "▁p ose",
+ "▁po se",
+ "▁pos e",
+ "▁ pose",
+ "im os",
+ "imo s",
+ "i mos",
+ "бо й",
+ "ци па",
+ "ju s",
+ "j us",
+ ".. ...",
+ "... ..",
+ ".... .",
+ ". ....",
+ "▁ép oca",
+ "▁qu anto",
+ "▁quant o",
+ "▁quan to",
+ "▁Su pport",
+ "▁Supp ort",
+ "▁Sup port",
+ "▁ Support",
+ "gesch ichte",
+ "SER VER",
+ "▁George s",
+ "▁Georg es",
+ "en um",
+ "enu m",
+ "e num",
+ "▁h erm",
+ "▁he rm",
+ "▁her m",
+ "▁ne bo",
+ "▁C hr",
+ "▁Ch r",
+ "▁ Chr",
+ "char acter",
+ "▁* **",
+ "▁** *",
+ "▁ ***",
+ "▁For sch",
+ "ia mi",
+ "iam i",
+ "i ami",
+ "▁ ¿",
+ "cy ch",
+ "cyc h",
+ "c ych",
+ "▁fif th",
+ "se nt",
+ "sen t",
+ "s ent",
+ "▁and erem",
+ "▁andere m",
+ "▁proport ion",
+ "▁propor tion",
+ "▁p rest",
+ "▁pr est",
+ "▁pre st",
+ "▁pres t",
+ "▁G irl",
+ "▁Gi rl",
+ "▁Gir l",
+ "▁d rama",
+ "▁dr ama",
+ "▁dra ma",
+ "▁dram a",
+ "wa nd",
+ "wan d",
+ "w and",
+ "▁M ail",
+ "▁Ma il",
+ "▁Mai l",
+ "▁ Mail",
+ "▁L ux",
+ "▁Lu x",
+ "▁kter ý",
+ "▁Ges ellschaft",
+ "▁Hin weis",
+ "nis se",
+ "n isse",
+ "▁m ondo",
+ "▁mon do",
+ "▁mond o",
+ "E q",
+ "▁per í",
+ "▁pe rí",
+ "▁e astern",
+ "▁eas tern",
+ "▁east ern",
+ "▁UE FA",
+ "ual e",
+ "ua le",
+ "u ale",
+ "▁con vex",
+ "▁conv ex",
+ "▁по ль",
+ "▁пол ь",
+ "▁ поль",
+ "▁H ey",
+ "▁He y",
+ "ze nie",
+ "zen ie",
+ "z enie",
+ "init ely",
+ "▁Z usammen",
+ "SS L",
+ "S SL",
+ "oc al",
+ "oca l",
+ "o cal",
+ "▁c anal",
+ "▁can al",
+ "▁ca nal",
+ "vo y",
+ "v oy",
+ "▁К ри",
+ "▁köz ött",
+ "▁c ars",
+ "▁car s",
+ "▁ca rs",
+ "▁vers ión",
+ "En vironment",
+ "He r",
+ "H er",
+ "▁se ñ",
+ "▁sp atial",
+ "ym i",
+ "y mi",
+ "Fi re",
+ "F ire",
+ "▁ve get",
+ "▁veg et",
+ "▁W ie",
+ "▁Wi e",
+ "▁zn aj",
+ "▁zna j",
+ "▁dam age",
+ "▁en dl",
+ "▁end l",
+ "▁ endl",
+ "gi f",
+ "g if",
+ "▁qu ali",
+ "▁qual i",
+ "▁которы х",
+ "el lan",
+ "ell an",
+ "ella n",
+ "▁m ens",
+ "▁me ns",
+ "▁men s",
+ "▁pl ug",
+ "▁a bund",
+ "▁ab und",
+ "FI G",
+ "F IG",
+ "▁s f",
+ "▁ sf",
+ "▁con fl",
+ "▁conf l",
+ "▁насе ления",
+ "▁princi ples",
+ "▁princip les",
+ "▁principle s",
+ "▁Gab riel",
+ "ib e",
+ "i be",
+ "▁{ %",
+ "▁ {%",
+ "▁pobla ció",
+ "ні ципа",
+ "▁ext reme",
+ "▁extrem e",
+ "▁extr eme",
+ "▁as se",
+ "▁ass e",
+ "▁ asse",
+ "▁v u",
+ "▁ vu",
+ "Mo ck",
+ "M ock",
+ "▁spiel te",
+ "▁A er",
+ "▁d atos",
+ "▁dat os",
+ "en des",
+ "end es",
+ "ende s",
+ "▁G el",
+ "▁Ge l",
+ "▁G or",
+ "▁Go r",
+ "Ch rist",
+ "Chr ist",
+ "ch os",
+ "cho s",
+ "c hos",
+ "Process or",
+ "Proc essor",
+ "▁in struct",
+ "▁inst ruct",
+ "▁instru ct",
+ "▁p icked",
+ "▁pick ed",
+ "▁pic ked",
+ "nah me",
+ "nahm e",
+ "fa hr",
+ "fah r",
+ "f ahr",
+ "▁indic ated",
+ "▁indicate d",
+ "▁% .",
+ "▁ %.",
+ "▁t s",
+ "▁ ts",
+ "▁not able",
+ "▁no table",
+ "▁qual ified",
+ "▁А л",
+ "Bl ack",
+ "B lack",
+ "▁coun cil",
+ "▁over head",
+ "ac i",
+ "a ci",
+ "an née",
+ "ann ée",
+ "▁init With",
+ "bi ó",
+ "b ió",
+ "▁int roduction",
+ "▁introdu ction",
+ "▁compan ion",
+ "▁ex pon",
+ "▁exp on",
+ "▁k ör",
+ "▁kö r",
+ "ob y",
+ "o by",
+ "bu rn",
+ "bur n",
+ "b urn",
+ "gn u",
+ "g nu",
+ "virt ual",
+ "v irtual",
+ "▁intel lect",
+ "▁д ержа",
+ "▁ держа",
+ "' +",
+ "б ле",
+ "▁strict ly",
+ "▁recogn ize",
+ "ho ur",
+ "hou r",
+ "h our",
+ "▁W rest",
+ "en nen",
+ "enn en",
+ "enne n",
+ "$) .",
+ "$ ).",
+ "ff f",
+ "f ff",
+ "▁Cent ro",
+ "▁P itt",
+ "▁Pi tt",
+ "▁Pit t",
+ "▁d ział",
+ "▁dz iał",
+ "▁ dział",
+ "▁c ela",
+ "▁ce la",
+ "▁cel a",
+ "▁frances e",
+ "▁franc ese",
+ "ра ми",
+ "spe cial",
+ "spec ial",
+ "▁D up",
+ "▁Du p",
+ "to ire",
+ "t oire",
+ "ка ль",
+ "кал ь",
+ "к аль",
+ "CO UNT",
+ "▁Br ook",
+ "▁Bro ok",
+ "▁ру ково",
+ "pub lique",
+ "▁se conda",
+ "▁second a",
+ "▁sec onda",
+ "▁com pt",
+ "▁comp t",
+ "▁b land",
+ "▁bl and",
+ "▁bla nd",
+ "▁blan d",
+ "Be fore",
+ "▁P ack",
+ "▁Pa ck",
+ "▁Pac k",
+ "▁ Pack",
+ "al ty",
+ "alt y",
+ "öd er",
+ "ö der",
+ "▁interval s",
+ "▁Daten bank",
+ "Mo vie",
+ "M ovie",
+ "▁trans m",
+ "▁tran sm",
+ "▁t ap",
+ "▁ta p",
+ "▁по ч",
+ "fo n",
+ "f on",
+ "ia i",
+ "i ai",
+ "▁f ib",
+ "▁fi b",
+ "▁w yd",
+ "▁wy d",
+ "▁h ung",
+ "▁hun g",
+ "▁hu ng",
+ "▁ hung",
+ "▁a live",
+ "▁al ive",
+ "▁ali ve",
+ "Cl ear",
+ "C lear",
+ "▁p ushed",
+ "▁push ed",
+ "▁tu ple",
+ "▁ tuple",
+ "ach en",
+ "ac hen",
+ "ache n",
+ "a chen",
+ "го во",
+ "гов о",
+ "г ово",
+ "▁re vers",
+ "▁rev ers",
+ "▁reve rs",
+ "▁rever s",
+ "▁au gment",
+ "▁aug ment",
+ "▁ch allenge",
+ "▁challeng e",
+ "lo st",
+ "los t",
+ "l ost",
+ "▁deux ième",
+ "struct or",
+ "stru ctor",
+ "▁mehr erer",
+ "▁mehrere r",
+ "at ural",
+ "atur al",
+ "atura l",
+ "atu ral",
+ "Sp lit",
+ "S plit",
+ "ст ем",
+ "сте м",
+ "с тем",
+ "ш ла",
+ ")\\ \\",
+ ") \\\\",
+ "▁D og",
+ "▁Do g",
+ "▁develop ers",
+ "▁developer s",
+ "▁ developers",
+ "▁n od",
+ "▁no d",
+ "▁сто ро",
+ "▁Na N",
+ "▁ NaN",
+ "▁pr iest",
+ "▁pri est",
+ "▁ex ha",
+ "UN D",
+ "U ND",
+ "pa ir",
+ "p air",
+ "al one",
+ "alo ne",
+ "▁m oon",
+ "▁mo on",
+ "▁# !/",
+ "▁g uns",
+ "▁gu ns",
+ "▁gun s",
+ "ro la",
+ "rol a",
+ "r ola",
+ "чи та",
+ "▁Encyc lopedia",
+ "▁Encyclop edia",
+ "at is",
+ "ati s",
+ "a tis",
+ "▁' \"",
+ "▁ '\"",
+ "zy ch",
+ "z ych",
+ "▁super fic",
+ "▁э к",
+ "еде ра",
+ "fe ed",
+ "f eed",
+ "LA Y",
+ "F i",
+ "un ks",
+ "unk s",
+ "ise cond",
+ "i second",
+ "▁' @",
+ "▁Ad ding",
+ "▁Add ing",
+ "ро е",
+ "▁t ang",
+ "▁tan g",
+ "▁ta ng",
+ "ц о",
+ "hu ng",
+ "h ung",
+ "bi s",
+ "b is",
+ "sk ého",
+ "ské ho",
+ "▁ad vert",
+ "▁adv ert",
+ "▁за нима",
+ "uz z",
+ "u zz",
+ "ág ina",
+ "▁T el",
+ "▁Te l",
+ "si g",
+ "s ig",
+ "▁E z",
+ "▁guarante e",
+ "▁te aching",
+ "▁teach ing",
+ "ot y",
+ "o ty",
+ "ter min",
+ "term in",
+ "▁distribution s",
+ "▁distrib utions",
+ "FL A",
+ "F LA",
+ "▁Gi useppe",
+ "query Selector",
+ "▁/ \\",
+ "▁ /\\",
+ "▁S quad",
+ "g z",
+ "de lay",
+ "del ay",
+ "▁surr ounding",
+ "▁m anus",
+ "▁man us",
+ "▁H ou",
+ "▁Ho u",
+ "² ,",
+ "▁cult iv",
+ "▁trouble s",
+ "▁trou bles",
+ "▁r aison",
+ "▁ra ison",
+ "exp and",
+ "▁c ov",
+ "▁co v",
+ "▁ cov",
+ "nung en",
+ "n ungen",
+ ")) {",
+ ") ){",
+ "▁g een",
+ "▁ge en",
+ "▁au ßer",
+ "▁Л і",
+ "ř i",
+ "▁situ ations",
+ "▁situation s",
+ "▁tele p",
+ "▁tel ep",
+ "▁J ed",
+ "▁Je d",
+ "▁trav ail",
+ "▁trava il",
+ "li as",
+ "lia s",
+ "l ias",
+ "bul let",
+ "▁select ing",
+ "av ier",
+ "avi er",
+ "a vier",
+ "▁ess ential",
+ "( /",
+ "yy yy",
+ "št ě",
+ "ul ty",
+ "ult y",
+ "▁k ra",
+ "▁kr a",
+ "▁t abs",
+ "▁tab s",
+ "▁ta bs",
+ "▁ tabs",
+ "▁experience d",
+ "▁experien ced",
+ "az i",
+ "a zi",
+ "▁D irectory",
+ "▁Direct ory",
+ "▁Director y",
+ "▁ Directory",
+ "▁c ron",
+ "▁cr on",
+ "▁cro n",
+ "▁s pend",
+ "▁sp end",
+ "▁spe nd",
+ "▁R A",
+ "▁ RA",
+ "▁s elenium",
+ "▁sel enium",
+ "▁ selenium",
+ "▁T hé",
+ "▁Th é",
+ "Element s",
+ "El ements",
+ "ci i",
+ "c ii",
+ "▁p lat",
+ "▁pl at",
+ "▁pla t",
+ "▁arch ive",
+ "▁archiv e",
+ "▁ archive",
+ "▁ass istance",
+ "▁assist ance",
+ "▁ne ck",
+ "▁A venue",
+ "▁Aven ue",
+ "▁w heel",
+ "▁whe el",
+ "▁h ade",
+ "▁ha de",
+ "▁had e",
+ "Com mon",
+ "Comm on",
+ "▁D ialog",
+ "▁Di alog",
+ "▁Dia log",
+ "▁ Dialog",
+ "▁f org",
+ "▁for g",
+ "▁fo rg",
+ "▁sur ely",
+ "▁sure ly",
+ "▁h ockey",
+ "kt ó",
+ "k tó",
+ "▁t k",
+ "▁ tk",
+ "▁Br uce",
+ "▁Bru ce",
+ "▁e norm",
+ "▁en orm",
+ ", ’",
+ "▁Christ opher",
+ "▁Christoph er",
+ "je v",
+ "j ev",
+ "▁qu ad",
+ "▁ quad",
+ "▁A JAX",
+ "▁rel ief",
+ "▁reli ef",
+ "▁m odes",
+ "▁mod es",
+ "▁mo des",
+ "▁mode s",
+ "sk lär",
+ "s klär",
+ "▁V id",
+ "▁Vi d",
+ "▁Se rial",
+ "▁Ser ial",
+ "▁ Serial",
+ "▁to kens",
+ "▁token s",
+ "▁Pol and",
+ "▁Po land",
+ "\\ ]",
+ "▁v ide",
+ "▁vi de",
+ "▁vid e",
+ "ro oms",
+ "room s",
+ "om as",
+ "oma s",
+ "o mas",
+ "▁B ureau",
+ "▁Bur eau",
+ "c x",
+ "ность ю",
+ "ност ью",
+ "▁sign s",
+ "▁sig ns",
+ "ше ние",
+ "los sen",
+ "loss en",
+ "l ossen",
+ "▁Que ens",
+ "▁Queen s",
+ "▁m embre",
+ "▁mem bre",
+ "▁memb re",
+ "▁m ez",
+ "▁me z",
+ "▁ mez",
+ "▁B ool",
+ "▁Bo ol",
+ "▁ Bool",
+ "▁N aj",
+ "▁Na j",
+ "▁Mem ory",
+ "▁ Memory",
+ "▁K han",
+ "▁Kh an",
+ "▁l à",
+ "▁ là",
+ "▁H ud",
+ "▁Hu d",
+ "▁d ismiss",
+ "▁dis miss",
+ "ight h",
+ "igh th",
+ "▁f s",
+ "▁ fs",
+ "pr event",
+ "pre vent",
+ "prev ent",
+ "▁ме да",
+ "▁Pol ice",
+ "▁Po lice",
+ "▁с ко",
+ "▁ ско",
+ "fin ite",
+ "▁a mi",
+ "▁am i",
+ "▁ ami",
+ "▁M uch",
+ "▁Mu ch",
+ "ow ania",
+ "owa nia",
+ "owan ia",
+ "OR Y",
+ "O RY",
+ "io rs",
+ "ior s",
+ "i ors",
+ "▁Prem io",
+ "▁text box",
+ "d m",
+ "▁a fin",
+ "▁af in",
+ "▁Don ald",
+ "▁ Donald",
+ "▁P riv",
+ "▁Pr iv",
+ "▁Pri v",
+ "▁de cid",
+ "▁dec id",
+ "▁Maur ice",
+ "▁Mau rice",
+ "ag an",
+ "aga n",
+ "a gan",
+ "▁Britann ica",
+ "▁o ft",
+ "▁of t",
+ "▁consec utive",
+ "\"? >",
+ "\" ?>",
+ "ови й",
+ "st udent",
+ "stud ent",
+ "▁pe que",
+ "▁di eses",
+ "▁dies es",
+ "▁diese s",
+ "▁ret our",
+ "ét r",
+ "é tr",
+ "▁с ез",
+ "▁се з",
+ "▁k re",
+ "▁kr e",
+ "▁ kre",
+ "▁v otes",
+ "▁vo tes",
+ "▁vot es",
+ "▁vote s",
+ "ru ption",
+ "rupt ion",
+ "rup tion",
+ "iz ada",
+ "iza da",
+ "▁W iel",
+ "▁Wi el",
+ "▁Wie l",
+ "▁G ray",
+ "▁Gr ay",
+ "▁Gra y",
+ "▁Le op",
+ "▁Leo p",
+ "teil ung",
+ "tei lung",
+ "([ '",
+ "( ['",
+ "▁wh ites",
+ "▁white s",
+ "fr ica",
+ "fri ca",
+ "f rica",
+ "an imation",
+ "anim ation",
+ "cur l",
+ "cu rl",
+ "c url",
+ "ling s",
+ "lin gs",
+ "l ings",
+ "=\" $",
+ "lo yd",
+ "loy d",
+ "text sc",
+ "ор у",
+ "о ру",
+ "▁се ла",
+ "es ian",
+ "esi an",
+ "esia n",
+ "▁M ission",
+ "▁Miss ion",
+ "▁не за",
+ "▁ult imately",
+ "бо в",
+ "б ов",
+ "ol en",
+ "ole n",
+ "o len",
+ "ско му",
+ "ском у",
+ "ск ому",
+ "с кому",
+ "ne te",
+ "net e",
+ "n ete",
+ "▁D it",
+ "▁Di t",
+ "▁co stru",
+ "▁cost ru",
+ "dep endent",
+ "▁Re source",
+ "▁Res ource",
+ "▁ Resource",
+ "▁host s",
+ "▁hos ts",
+ "▁ hosts",
+ "▁re ar",
+ "▁r ear",
+ "D uration",
+ "ни ків",
+ "ник ів",
+ "М а",
+ "▁pl anning",
+ "▁plan ning",
+ "▁pre diction",
+ "▁pred iction",
+ "▁predict ion",
+ "▁L yn",
+ "▁Ly n",
+ "▁k ir",
+ "▁ki r",
+ "▁ kir",
+ "▁Leg isl",
+ "ма т",
+ "м ат",
+ "▁S occer",
+ "▁Soc cer",
+ "▁sur vey",
+ "▁surv ey",
+ "▁surve y",
+ "▁estadoun idense",
+ "or gen",
+ "org en",
+ "orge n",
+ "jo urd",
+ "jou rd",
+ "j ourd",
+ "▁ap rile",
+ "▁april e",
+ "▁apr ile",
+ "▁i ds",
+ "▁id s",
+ "▁ ids",
+ "сь ке",
+ "ськ е",
+ "▁emp loyee",
+ "▁employ ee",
+ "▁ employee",
+ "▁Schaus pieler",
+ "р ъ",
+ "▁mult imedia",
+ "▁multi media",
+ "▁сво ю",
+ "▁w ine",
+ "▁win e",
+ "▁E U",
+ "ic ă",
+ "▁R hein",
+ "▁Rh ein",
+ "▁Pal mar",
+ "ot eca",
+ "ote ca",
+ "▁prep are",
+ "▁prepar e",
+ "▁ prepare",
+ "▁T ot",
+ "▁To t",
+ "▁N ull",
+ "▁Nu ll",
+ "▁ Null",
+ "▁k in",
+ "▁ki n",
+ "▁ kin",
+ "in als",
+ "inal s",
+ "ina ls",
+ "▁New ton",
+ "▁t bl",
+ "▁ tbl",
+ "▁S old",
+ "▁So ld",
+ "▁Sol d",
+ "▁ver f",
+ "▁ve rf",
+ "at uring",
+ "atur ing",
+ "atu ring",
+ "▁la ptop",
+ "▁lap top",
+ "▁Со вет",
+ "▁Сов ет",
+ "▁Сове т",
+ "se cret",
+ "sec ret",
+ "▁Olymp ic",
+ "▁football er",
+ "▁Rud olf",
+ "▁con he",
+ "zy sk",
+ "▁evalu ated",
+ "▁evaluate d",
+ "» )",
+ "sh op",
+ "re pository",
+ "▁z ach",
+ "▁za ch",
+ "▁l osing",
+ "▁lo sing",
+ "▁los ing",
+ "et ter",
+ "ett er",
+ "ette r",
+ "▁W irtschaft",
+ "та к",
+ "▁unnecess ary",
+ "▁P hot",
+ "▁Ph ot",
+ "▁Pho t",
+ "an ska",
+ "ans ka",
+ "ansk a",
+ "▁N ative",
+ "▁Nat ive",
+ "▁ Native",
+ "CC E",
+ "C CE",
+ "▁fi fty",
+ "▁fif ty",
+ "▁e rw",
+ "▁er w",
+ "r h",
+ "is sent",
+ "iss ent",
+ "isse nt",
+ "issen t",
+ "}{ (",
+ "} {(",
+ "▁lan ç",
+ "▁X code",
+ "го род",
+ "гор од",
+ "ci r",
+ "c ir",
+ "▁pel ícula",
+ "▁O scar",
+ "▁Os car",
+ "▁sh ore",
+ "▁sho re",
+ "▁supp lied",
+ "ex amples",
+ "example s",
+ "Me ss",
+ "M ess",
+ "VI CE",
+ "V ICE",
+ "▁ex clude",
+ "▁h en",
+ "▁he n",
+ "▁ hen",
+ "▁гу бер",
+ "▁F ragment",
+ "▁Fra gment",
+ "▁ Fragment",
+ "▁B itte",
+ "▁Bi tte",
+ "▁Bit te",
+ "▁Bes ides",
+ "▁h es",
+ "▁he s",
+ "▁ hes",
+ "▁ih rem",
+ "▁ihr em",
+ "▁ihre m",
+ "▁Ser ge",
+ "▁art ific",
+ "=\" ${",
+ "=\"$ {",
+ "ло во",
+ "лов о",
+ "л ово",
+ "ut eur",
+ "ute ur",
+ "ta ire",
+ "t aire",
+ "па с",
+ "▁eas iest",
+ "▁fam iglia",
+ "N ormal",
+ "▁d alle",
+ "▁da lle",
+ "▁dal le",
+ "▁dall e",
+ "▁n ations",
+ "▁nation s",
+ "▁nat ions",
+ "r p",
+ "th ead",
+ "the ad",
+ "t head",
+ "▁обла сті",
+ "▁Democr atic",
+ "▁челов е",
+ "мо ж",
+ "▁г ер",
+ "▁ге р",
+ "▁ гер",
+ "▁small est",
+ "▁Publish ing",
+ "▁T s",
+ "▁laugh ed",
+ "ll e",
+ "l le",
+ "▁A mt",
+ "▁Am t",
+ "▁I IS",
+ "▁II S",
+ "FOR M",
+ "F ORM",
+ "Ma g",
+ "M ag",
+ "до н",
+ "д он",
+ "▁st oria",
+ "▁stor ia",
+ "▁sto ria",
+ "▁organ ized",
+ "▁organiz ed",
+ "č ní",
+ "▁o x",
+ "▁ ox",
+ "ling en",
+ "lin gen",
+ "l ingen",
+ "▁lu ego",
+ "cc ió",
+ "c ció",
+ "▁re ly",
+ "▁r ely",
+ "▁rel y",
+ "▁t ussen",
+ "er ten",
+ "ert en",
+ "erte n",
+ "▁hon our",
+ "▁Cla ude",
+ "▁Claud e",
+ "▁Ko rea",
+ "▁Kore a",
+ "▁Kor ea",
+ "▁Met ropol",
+ "▁Metro pol",
+ "Su per",
+ "S uper",
+ "ri en",
+ "rie n",
+ "r ien",
+ "ér ature",
+ "att ro",
+ "attr o",
+ "▁б іль",
+ "▁бі ль",
+ "▁ біль",
+ "▁Her bert",
+ "▁aut eurs",
+ "▁aute urs",
+ "▁dar auf",
+ "▁m ental",
+ "▁men tal",
+ "▁ment al",
+ "▁r ang",
+ "▁ra ng",
+ "▁ran g",
+ "▁s ón",
+ "▁só n",
+ "▁S oph",
+ "▁So ph",
+ ")\" ,",
+ ") \",",
+ "Des criptor",
+ "prep are",
+ "▁Land kreis",
+ "H C",
+ "cr oss",
+ "cro ss",
+ "c ross",
+ "ли за",
+ "▁Lo gin",
+ "▁Log in",
+ "▁ Login",
+ "on en",
+ "one n",
+ "o nen",
+ "Fe ature",
+ "▁m useum",
+ "▁muse um",
+ "▁ museum",
+ "ve k",
+ "v ek",
+ "▁Nel son",
+ "▁re jo",
+ "▁коман ди",
+ "▁sum mar",
+ "▁summ ar",
+ "▁сле ду",
+ "▁след у",
+ "äm p",
+ "ä mp",
+ "▁G as",
+ "▁Ga s",
+ "во м",
+ "в ом",
+ "VAL UE",
+ "in ge",
+ "ing e",
+ "per iod",
+ "lass en",
+ "las sen",
+ "lasse n",
+ "l assen",
+ "áv al",
+ "á val",
+ "▁alt ogether",
+ "um ph",
+ "ump h",
+ "ist ro",
+ "istr o",
+ "ą ż",
+ "▁Ke ep",
+ "▁Mar co",
+ "▁Marc o",
+ "▁ét ant",
+ "▁D re",
+ "▁Dr e",
+ "ge ometry",
+ "▁K as",
+ "▁Ka s",
+ "message s",
+ "mess ages",
+ "Co ok",
+ "C ook",
+ "▁S ide",
+ "▁Si de",
+ "▁Sid e",
+ "▁ Side",
+ "▁ко ми",
+ "▁ком и",
+ "ст ри",
+ "стр и",
+ "с три",
+ "▁ex cess",
+ "▁exc ess",
+ "▁Bi ografia",
+ "XX XX",
+ "XXX X",
+ "X XXX",
+ "▁N ie",
+ "▁Ni e",
+ "ven dor",
+ "v endor",
+ "xs d",
+ "x sd",
+ "Mil l",
+ "M ill",
+ "process ing",
+ "▁Miss ouri",
+ "▁perm ett",
+ "▁permet t",
+ "▁a par",
+ "▁ap ar",
+ "▁cro wd",
+ "▁crow d",
+ "fer t",
+ "fe rt",
+ "f ert",
+ "▁D ou",
+ "▁Do u",
+ "r í",
+ "▁C C",
+ "▁ CC",
+ "▁pay ment",
+ "▁ payment",
+ "▁Hol lywood",
+ "▁V irtual",
+ "▁ Virtual",
+ "▁sp oken",
+ "▁spoke n",
+ "▁spo ken",
+ "▁t ram",
+ "▁tr am",
+ "▁tra m",
+ "▁Comm unity",
+ "▁Commun ity",
+ "▁administr ative",
+ "▁в оло",
+ "▁во ло",
+ "gi or",
+ "gio r",
+ "g ior",
+ "vis or",
+ "▁Укра и",
+ "st age",
+ "sta ge",
+ "stag e",
+ "▁For mat",
+ "▁Form at",
+ "▁ Format",
+ "▁conven ient",
+ "Н а",
+ "▁med ian",
+ "▁media n",
+ "▁medi an",
+ "▁в ра",
+ "▁ вра",
+ "▁Пре ма",
+ "en ig",
+ "eni g",
+ "e nig",
+ "▁Op era",
+ "▁Oper a",
+ "ré s",
+ "r és",
+ "▁f mt",
+ "▁ fmt",
+ "▁effic iency",
+ "ma le",
+ "mal e",
+ "m ale",
+ "Ma ster",
+ "M aster",
+ "Ser ies",
+ "Se ries",
+ "S eries",
+ "▁s yd",
+ "▁sy d",
+ "gener ic",
+ "inter val",
+ "▁e fect",
+ "▁inwon ers",
+ "лим пи",
+ "ir ement",
+ "ire ment",
+ "Er r",
+ "E rr",
+ "ö h",
+ "▁l ying",
+ "▁ly ing",
+ "▁ lying",
+ "▁S ettings",
+ "▁Setting s",
+ "▁ Settings",
+ "! =",
+ "em atic",
+ "emat ic",
+ "arg v",
+ "▁Bas ic",
+ "▁ Basic",
+ "▁consider ation",
+ "▁h abe",
+ "▁ha be",
+ "▁hab e",
+ "- %",
+ "▁mount ains",
+ "▁mountain s",
+ "▁pe ak",
+ "▁f allen",
+ "▁fall en",
+ "▁fal len",
+ "ed ed",
+ "ede d",
+ "e ded",
+ "log ic",
+ "▁mat ched",
+ "▁match ed",
+ "▁typ ing",
+ "▁ty ping",
+ ")} ,",
+ ") },",
+ "▁f ancy",
+ "▁fan cy",
+ "▁eleg ant",
+ "ا ل",
+ "▁уча ст",
+ "▁Sa rah",
+ "▁Sar ah",
+ "▁V erd",
+ "▁Ver d",
+ "▁Ve rd",
+ "▁t ego",
+ "▁te go",
+ "ru les",
+ "rule s",
+ "r ules",
+ "▁mo unted",
+ "▁mount ed",
+ "▁і м",
+ "ер у",
+ "е ру",
+ "st off",
+ "sto ff",
+ "fa hren",
+ "fah ren",
+ "fahr en",
+ "f ahren",
+ "dist ance",
+ "d istance",
+ "▁Lic ense",
+ "▁LE FT",
+ "▁ LEFT",
+ "▁w p",
+ "▁ wp",
+ "/ {",
+ "▁am azon",
+ "▁amaz on",
+ "▁ amazon",
+ "> &",
+ "▁els ő",
+ "qu arters",
+ "▁sh ock",
+ "▁sho ck",
+ "ni ck",
+ "nic k",
+ "n ick",
+ "▁Arch ite",
+ "▁S quare",
+ "▁r ates",
+ "▁ra tes",
+ "▁rate s",
+ "▁rat es",
+ "io re",
+ "ior e",
+ "i ore",
+ "▁N at",
+ "▁Na t",
+ "▁Char lot",
+ "re ichen",
+ "reich en",
+ "rei chen",
+ "reiche n",
+ "▁var iation",
+ "▁vari ation",
+ "os is",
+ "osi s",
+ "li fe",
+ "l ife",
+ "sl ide",
+ "s lide",
+ "ab i",
+ "a bi",
+ "uk i",
+ "u ki",
+ "my sq",
+ "mys q",
+ "▁prim itive",
+ "▁primit ive",
+ "▁univers itaire",
+ "LE NG",
+ "ale ż",
+ "eb ook",
+ "e book",
+ "s yn",
+ "▁G egen",
+ "▁Ge gen",
+ "▁Geg en",
+ "▁K ü",
+ "▁а ле",
+ "▁ал е",
+ "▁L ub",
+ "▁Lu b",
+ "con current",
+ "izz ato",
+ "izza to",
+ "▁st ub",
+ "▁i e",
+ "▁ ie",
+ "▁' ./",
+ "▁'. /",
+ "co d",
+ "c od",
+ "▁intern acional",
+ "▁G las",
+ "▁Gl as",
+ "▁Gla s",
+ "▁m are",
+ "▁ma re",
+ "▁mar e",
+ "▁N eb",
+ "▁Ne b",
+ "▁G B",
+ "▁ GB",
+ "kw args",
+ "▁a ument",
+ "▁au ment",
+ "WI D",
+ "W ID",
+ "▁ро д",
+ "▁р од",
+ "▁ род",
+ "p unkt",
+ "▁G rad",
+ "▁Gr ad",
+ "▁Gra d",
+ "▁ Grad",
+ "S N",
+ "AM P",
+ "A MP",
+ "▁B orn",
+ "▁Bo rn",
+ "▁Bor n",
+ "▁Guer re",
+ "го тов",
+ "▁med io",
+ "▁medi o",
+ "Me d",
+ "M ed",
+ "su pp",
+ "sup p",
+ "s upp",
+ "act ual",
+ "drop down",
+ "▁ok tober",
+ "▁ ř",
+ "▁circ ular",
+ "▁cir cular",
+ "▁circul ar",
+ "▁s kin",
+ "▁sk in",
+ "▁ski n",
+ "▁em phas",
+ "▁emp has",
+ "▁го лов",
+ "▁голо в",
+ "▁p ue",
+ "▁pu e",
+ "▁inform ations",
+ "▁information s",
+ "▁Wolf gang",
+ "▁us eless",
+ "▁use less",
+ "и т",
+ "▁Jo an",
+ "▁б ор",
+ "▁бо р",
+ "▁ бор",
+ "▁G lad",
+ "▁Gl ad",
+ "▁Gla d",
+ "▁K now",
+ "▁Kn ow",
+ "▁Kno w",
+ "ké nt",
+ "k ént",
+ "sp eed",
+ "spe ed",
+ "▁Ke vin",
+ "un ft",
+ "▁ar qu",
+ "▁ arqu",
+ "▁C asa",
+ "▁Cas a",
+ "▁Ca sa",
+ "(. ..",
+ "( ...",
+ "▁rapid ly",
+ "▁pro ble",
+ "▁prob le",
+ "▁probl e",
+ "▁Ви кипеди",
+ "že n",
+ "ž en",
+ "▁N eben",
+ "▁Ne ben",
+ "▁Neb en",
+ "▁M eter",
+ "▁Me ter",
+ "▁Met er",
+ "Child ren",
+ "ce m",
+ "c em",
+ "ig os",
+ "igo s",
+ "aj u",
+ "a ju",
+ "▁Ret rie",
+ "▁H ell",
+ "▁He ll",
+ "▁Hel l",
+ "▁g ig",
+ "▁gi g",
+ "▁contro vers",
+ "▁z oom",
+ "▁zo om",
+ "▁zoo m",
+ "▁c ens",
+ "▁ce ns",
+ "▁alc uni",
+ "▁He ader",
+ "▁Head er",
+ "▁ Header",
+ "Me ta",
+ "Met a",
+ "M eta",
+ "Re quired",
+ "▁ин ститу",
+ "▁s kup",
+ "▁sk up",
+ "▁ing les",
+ "ég l",
+ "é gl",
+ "bi j",
+ "b ij",
+ "▁t ér",
+ "▁té r",
+ "▁com pag",
+ "▁comp ag",
+ "▁comm itted",
+ "▁commit ted",
+ "▁process ed",
+ "▁proc essed",
+ "▁proces sed",
+ "Lo wer",
+ "L ower",
+ "▁F oreign",
+ "▁For eign",
+ "▁Fore ign",
+ "▁ Foreign",
+ "▁s eq",
+ "▁se q",
+ "▁ seq",
+ "sheet s",
+ "she ets",
+ "▁F em",
+ "▁Fe m",
+ "ho z",
+ "h oz",
+ "in ks",
+ "ink s",
+ "▁k all",
+ "▁ka ll",
+ "▁kal l",
+ "vari ant",
+ "▁li bro",
+ "▁lib ro",
+ "▁cl icks",
+ "▁click s",
+ "▁cli cks",
+ "▁g obierno",
+ "ie gel",
+ "ieg el",
+ "мо го",
+ "м ого",
+ "ge me",
+ "gem e",
+ "g eme",
+ "▁t ower",
+ "▁to wer",
+ "▁par ish",
+ "▁T CP",
+ "▁l s",
+ "▁ ls",
+ "▁n ginx",
+ "▁ng inx",
+ "▁ nginx",
+ "Na N",
+ "▁D ir",
+ "▁Di r",
+ "▁ Dir",
+ "▁Begr iffe",
+ "▁Begriff e",
+ "ar ie",
+ "ari e",
+ "a rie",
+ "ím p",
+ "í mp",
+ "ic ios",
+ "ici os",
+ "icio s",
+ "i cios",
+ "▁sh aring",
+ "▁cin éma",
+ "be c",
+ "b ec",
+ "RE D",
+ "R ED",
+ "▁K ra",
+ "▁Kr a",
+ "ab ol",
+ "a bol",
+ "▁fl ux",
+ "▁flu x",
+ "▁exp ensive",
+ "▁су ще",
+ "▁` _",
+ "oc z",
+ "o cz",
+ "ли ст",
+ "▁acqu aint",
+ "▁w ise",
+ "▁wis e",
+ "▁ wise",
+ "▁pou voir",
+ "▁pouv oir",
+ "▁dev ant",
+ "▁moment um",
+ "im mer",
+ "imm er",
+ "▁C oupe",
+ "▁Cou pe",
+ "index Of",
+ "▁does nt",
+ "▁doesn t",
+ "▁за в",
+ "▁lic ense",
+ "▁ â",
+ "CS S",
+ "C SS",
+ "▁r ice",
+ "▁ric e",
+ "▁ri ce",
+ "▁ rice",
+ "Te am",
+ "▁a no",
+ "▁an o",
+ "▁ ano",
+ "li t",
+ "l it",
+ "▁mer ged",
+ "▁merge d",
+ "▁C ell",
+ "▁Ce ll",
+ "▁Cel l",
+ "▁ Cell",
+ "л л",
+ "bo y",
+ "b oy",
+ "as ts",
+ "ast s",
+ "▁s ell",
+ "▁se ll",
+ "▁sel l",
+ "▁gro ße",
+ "▁groß e",
+ "▁virt uel",
+ "▁virtue l",
+ "Can cel",
+ "▁s j",
+ "g ment",
+ ". <",
+ "ча й",
+ "i ë",
+ "ak h",
+ "a kh",
+ "iz ers",
+ "ize rs",
+ "izer s",
+ "pr it",
+ "p rit",
+ "▁T ib",
+ "▁Ti b",
+ "▁elabor ate",
+ "▁f é",
+ "▁м еди",
+ "▁ме ди",
+ "LENG TH",
+ "▁prim arily",
+ "▁sc ores",
+ "▁score s",
+ "▁carry ing",
+ "▁l ake",
+ "▁la ke",
+ "▁lak e",
+ "com pose",
+ "comp ose",
+ "compos e",
+ "▁Town ship",
+ "un ge",
+ "ung e",
+ "▁al berga",
+ "an ych",
+ "any ch",
+ "a nych",
+ "qu elle",
+ "que lle",
+ "quel le",
+ "q uelle",
+ "▁Ar k",
+ "▁p ris",
+ "▁pr is",
+ "▁pri s",
+ "▁v oll",
+ "▁vo ll",
+ "▁vol l",
+ "ш ли",
+ "Valid ation",
+ "▁ce ux",
+ "▁pop ulate",
+ "▁popula te",
+ "▁popul ate",
+ "\" \r",
+ "▁fem mes",
+ "▁femme s",
+ "AN G",
+ "A NG",
+ "▁Desp ite",
+ "вы е",
+ "в ые",
+ "is ke",
+ "isk e",
+ "i ske",
+ "zu g",
+ "z ug",
+ "на ча",
+ "▁h atten",
+ "▁hat ten",
+ "▁hatte n",
+ "IN SERT",
+ "Emp loyee",
+ "▁mo ments",
+ "▁moment s",
+ "▁mom ents",
+ "▁últ ima",
+ "▁h older",
+ "▁hold er",
+ "▁ho lder",
+ "▁hol der",
+ "▁ holder",
+ "bl ank",
+ "Col lections",
+ "Collection s",
+ "Collect ions",
+ "ath ers",
+ "ather s",
+ "a thers",
+ "▁g rade",
+ "▁gr ade",
+ "▁gra de",
+ "▁grad e",
+ "▁ grade",
+ "▁aff airs",
+ "▁affair s",
+ ".$ $",
+ ". $$",
+ "▁d elta",
+ "▁del ta",
+ "▁ delta",
+ "▁Jug end",
+ "▁españ ol",
+ "▁O UT",
+ "▁ OUT",
+ "▁mathemat ical",
+ "▁m ongo",
+ "▁mon go",
+ "▁Ф е",
+ "ul ing",
+ "uli ng",
+ "u ling",
+ "▁re volution",
+ "▁revol ution",
+ "▁c oin",
+ "▁co in",
+ "▁sub class",
+ "\" =>",
+ "äch e",
+ "ä che",
+ "▁p yg",
+ "▁py g",
+ "ща я",
+ "ill ery",
+ "ille ry",
+ "iller y",
+ "▁com enz",
+ "dep th",
+ "▁c él",
+ "▁re size",
+ "▁res ize",
+ "▁ resize",
+ "▁S ame",
+ "▁Sam e",
+ "▁Sa me",
+ "▁st rik",
+ "▁str ik",
+ "▁stri k",
+ "▁t ir",
+ "▁ti r",
+ "▁sc arc",
+ "▁scar c",
+ "▁M ember",
+ "▁Mem ber",
+ "▁ Member",
+ "sub scribe",
+ "ó ż",
+ "út bol",
+ "ex cept",
+ "▁dr iving",
+ "▁dri ving",
+ "▁driv ing",
+ "ki e",
+ "k ie",
+ "zo ny",
+ "zon y",
+ "z ony",
+ "ème s",
+ "è mes",
+ "Da vid",
+ "D avid",
+ "iss ant",
+ "issa nt",
+ "▁т ы",
+ "▁ ты",
+ "▁é lect",
+ "▁él ect",
+ "▁re name",
+ "▁r ename",
+ "▁ren ame",
+ "▁R unning",
+ "▁Run ning",
+ "▁ Running",
+ "▁inter faces",
+ "▁interface s",
+ "//////// ////////",
+ "▁Wal ker",
+ "▁Walk er",
+ "▁soci été",
+ "▁as ks",
+ "▁ask s",
+ "br id",
+ "b rid",
+ "▁je we",
+ "▁se ines",
+ "▁sein es",
+ "▁seine s",
+ "▁sei nes",
+ "▁ag ents",
+ "▁agent s",
+ "▁M Y",
+ "▁ MY",
+ "▁Law rence",
+ "de ss",
+ "des s",
+ "d ess",
+ "ie sen",
+ "ies en",
+ "iese n",
+ "i esen",
+ "▁людя х",
+ "прав и",
+ "пра ви",
+ "▁anc est",
+ "▁wel che",
+ "ra um",
+ "r aum",
+ "▁o rb",
+ "▁or b",
+ "▁ orb",
+ "sc al",
+ "s cal",
+ "▁L ear",
+ "▁Le ar",
+ "▁w ear",
+ "▁we ar",
+ "▁s lave",
+ "▁sl ave",
+ "▁sla ve",
+ "▁re named",
+ "▁ren amed",
+ "▁rename d",
+ "če n",
+ "č en",
+ "ma ste",
+ "mas te",
+ "m aste",
+ "ang les",
+ "angle s",
+ "▁Am érica",
+ "▁t i",
+ "▁ ti",
+ "▁dem sel",
+ "▁bene ath",
+ "bin ary",
+ "b inary",
+ "▁ed ición",
+ "▁kil omet",
+ "▁kilom et",
+ "ui ts",
+ "uit s",
+ "u its",
+ "▁cu atro",
+ "▁ent rance",
+ "▁entr ance",
+ "ond issement",
+ "▁b ag",
+ "▁ba g",
+ "▁ bag",
+ "▁Ar men",
+ "▁Arm en",
+ "ij o",
+ "i jo",
+ "▁L ors",
+ "▁Lo rs",
+ "▁Lor s",
+ "▁demsel ben",
+ "ê m",
+ "▁dis crete",
+ "▁prom inent",
+ "▁J ay",
+ "▁Ja y",
+ "de cor",
+ "dec or",
+ "D L",
+ "▁d í",
+ "St ruct",
+ "Str uct",
+ "▁P roduction",
+ "▁Produ ction",
+ "▁Product ion",
+ "th ey",
+ "the y",
+ "ar ius",
+ "ari us",
+ "sch nitt",
+ "▁C ou",
+ "▁Co u",
+ "▁l ex",
+ "▁le x",
+ "▁ lex",
+ "y outube",
+ "▁рабо та",
+ "st ation",
+ "sta tion",
+ "stat ion",
+ "se p",
+ "s ep",
+ "▁mi rror",
+ "▁mir ror",
+ "▁h its",
+ "▁hit s",
+ "▁hi ts",
+ "▁Be ck",
+ "at ically",
+ "atic ally",
+ "▁L az",
+ "▁La z",
+ "▁w inner",
+ "▁win ner",
+ "DE X",
+ "D EX",
+ "▁I NT",
+ "▁IN T",
+ "▁ INT",
+ "}^ {-",
+ "}^{ -",
+ "} ^{-",
+ "▁w egen",
+ "▁we gen",
+ "▁weg en",
+ "ma d",
+ "m ad",
+ "An gle",
+ "Ang le",
+ "zi ng",
+ "zin g",
+ "z ing",
+ "▁Bay ern",
+ "▁Bayer n",
+ "sa l",
+ "s al",
+ "äg er",
+ "ä ger",
+ "▁bus y",
+ "▁st ör",
+ "▁f olk",
+ "▁fol k",
+ "▁ folk",
+ "▁p rix",
+ "▁pr ix",
+ "▁pri x",
+ "▁al located",
+ "▁alloc ated",
+ "▁allocate d",
+ "▁p t",
+ "▁ pt",
+ "af fen",
+ "aff en",
+ "a ffen",
+ "cl uster",
+ "clus ter",
+ "▁com plement",
+ "▁comp lement",
+ "▁comple ment",
+ "▁compl ement",
+ "ár s",
+ "á rs",
+ "▁Amer ika",
+ "рі й",
+ "р ій",
+ "▁val ley",
+ "▁vall ey",
+ "▁valle y",
+ "▁ro oms",
+ "▁room s",
+ "▁ rooms",
+ "▁m oi",
+ "▁mo i",
+ ".\" ,",
+ ". \",",
+ ";; ;;",
+ "▁lo west",
+ "▁low est",
+ "no g",
+ "n og",
+ "▁land et",
+ "▁lan det",
+ "▁program me",
+ "ch io",
+ "chi o",
+ "▁W ährend",
+ "ánd ez",
+ "▁дол ж",
+ "▁o uv",
+ "▁ou v",
+ "▁ ouv",
+ "om ány",
+ "▁Википеди и",
+ "▁s ó",
+ "▁ele ktr",
+ "De sc",
+ "Des c",
+ "D esc",
+ "▁Be aut",
+ "▁Beau t",
+ "на р",
+ "н ар",
+ "▁мо же",
+ "▁мож е",
+ "P ierre",
+ "es ota",
+ "eso ta",
+ "▁oper ated",
+ "▁opera ted",
+ "▁operate d",
+ "▁f orte",
+ "▁for te",
+ "▁fort e",
+ "ри с",
+ "р ис",
+ "▁op position",
+ "▁opp osition",
+ "▁oppos ition",
+ "al ia",
+ "ali a",
+ "a lia",
+ "▁S yl",
+ "▁Sy l",
+ "get Name",
+ "ве ли",
+ "fi k",
+ "f ik",
+ "▁com prom",
+ "▁comp rom",
+ "▁compr om",
+ "▁Text View",
+ "▁ TextView",
+ "Sp ring",
+ "S pring",
+ "met adata",
+ "meta data",
+ "en gu",
+ "eng u",
+ "/ ,",
+ "▁car ri",
+ "is tol",
+ "ist ol",
+ "isto l",
+ "▁diag onal",
+ "li sta",
+ "list a",
+ "lis ta",
+ "l ista",
+ "iz en",
+ "ize n",
+ "i zen",
+ "▁re nde",
+ "▁r ende",
+ "▁ren de",
+ "▁rend e",
+ "gc c",
+ "g cc",
+ "be ck",
+ "bec k",
+ "li us",
+ "l ius",
+ "ir al",
+ "ira l",
+ "i ral",
+ "Resol ver",
+ "▁percent age",
+ "▁at tra",
+ "▁att ra",
+ "▁attr a",
+ "str ings",
+ "string s",
+ "wi ąz",
+ "od s",
+ "o ds",
+ "во лю",
+ "ę ż",
+ "▁news paper",
+ "▁newsp aper",
+ "im iter",
+ "imi ter",
+ "imit er",
+ "AB C",
+ "A BC",
+ "▁Man chester",
+ "[ {",
+ "Ag ent",
+ "Age nt",
+ "A gent",
+ "▁W or",
+ "▁Wo r",
+ "▁K ath",
+ "▁Kat h",
+ "▁Ka th",
+ "▁по ві",
+ "▁пов і",
+ "▁ent onces",
+ "▁n iveau",
+ "at ted",
+ "att ed",
+ "atte d",
+ "le arn",
+ "lear n",
+ "lea rn",
+ "at iques",
+ "ati ques",
+ "atique s",
+ "▁у би",
+ "▁qu indi",
+ "bin ding",
+ "bind ing",
+ "b inding",
+ "▁import ed",
+ "▁imp orted",
+ "▁H orn",
+ "▁Hor n",
+ "▁Ho rn",
+ "em berg",
+ "ember g",
+ "emb erg",
+ "com plex",
+ "comp lex",
+ "comple x",
+ "▁ne ural",
+ "▁neu ral",
+ "▁neur al",
+ "in formation",
+ "▁recogn ition",
+ "in gt",
+ "ing t",
+ "▁inhab itants",
+ "vu e",
+ "v ue",
+ "▁Be völker",
+ "▁cur ves",
+ "▁curve s",
+ "▁curv es",
+ "▁l eb",
+ "▁le b",
+ "▁ leb",
+ "ді й",
+ "д ій",
+ "▁s ow",
+ "▁so w",
+ "▁sent iment",
+ "P H",
+ "ra che",
+ "rac he",
+ "rach e",
+ "r ache",
+ "▁- (",
+ "▁ -(",
+ "▁e stable",
+ "▁est able",
+ "▁es table",
+ "▁estab le",
+ "▁esta ble",
+ "▁Ferd inand",
+ "▁é crit",
+ "▁éc rit",
+ "▁prime iro",
+ "▁t ex",
+ "▁te x",
+ "▁ tex",
+ "▁inter mediate",
+ "ve rage",
+ "ver age",
+ "vera ge",
+ "ib us",
+ "i bus",
+ "▁s erves",
+ "▁ser ves",
+ "▁serv es",
+ "▁serve s",
+ "iv as",
+ "iva s",
+ "i vas",
+ "▁b ru",
+ "▁br u",
+ "▁ bru",
+ "▁l um",
+ "▁lu m",
+ "att ice",
+ "atti ce",
+ "ч ный",
+ "▁D res",
+ "▁Dr es",
+ "▁Dre s",
+ "▁v ideos",
+ "▁video s",
+ "▁vide os",
+ "d uration",
+ "▁a bit",
+ "▁ab it",
+ "▁e gg",
+ "▁eg g",
+ "ograph ical",
+ "ographic al",
+ "al ph",
+ "ST ATE",
+ "STAT E",
+ "▁па ра",
+ "▁пар а",
+ "▁ пара",
+ "re ading",
+ "read ing",
+ "rea ding",
+ "▁veh icle",
+ "▁fort une",
+ "ult ats",
+ "▁St oria",
+ "▁Sto ria",
+ "mi dt",
+ "mid t",
+ "łą cz",
+ "▁Mem orial",
+ "▁v as",
+ "▁va s",
+ "▁ vas",
+ "▁з ан",
+ "▁за н",
+ "▁ зан",
+ "▁ut ility",
+ "▁util ity",
+ "▁ob sc",
+ "▁obs c",
+ "▁rel acion",
+ "▁rela cion",
+ "▁relac ion",
+ "▁run at",
+ "▁ru nat",
+ "Re lease",
+ "ta ke",
+ "t ake",
+ "▁O liver",
+ "▁Ol iver",
+ "▁Oliv er",
+ "▁S id",
+ "▁Si d",
+ "ul os",
+ "ulo s",
+ "u los",
+ "▁G arc",
+ "▁Gar c",
+ "▁Ga rc",
+ "▁роз та",
+ "▁S ak",
+ "▁Sa k",
+ "P y",
+ "führ t",
+ "f ührt",
+ "▁tra bal",
+ "▁trab al",
+ "* {",
+ "▁z es",
+ "▁ze s",
+ "▁ zes",
+ "▁sz ere",
+ "▁szer e",
+ "▁sze re",
+ "▁v arios",
+ "▁var ios",
+ "▁vari os",
+ "▁va rios",
+ "▁o tra",
+ "▁ot ra",
+ "▁e val",
+ "▁ev al",
+ "▁ eval",
+ "▁situ é",
+ "▁sit ué",
+ "▁w ounded",
+ "▁Vin cent",
+ "▁вико ри",
+ "▁en code",
+ "▁enc ode",
+ "▁ encode",
+ "Mod al",
+ "Mo dal",
+ "▁f orb",
+ "▁for b",
+ "▁fo rb",
+ "▁dynam ics",
+ "▁dynamic s",
+ "▁de pos",
+ "▁dep os",
+ "ar de",
+ "ard e",
+ "▁street s",
+ "▁stre ets",
+ "▁K omm",
+ "▁Kom m",
+ "▁Ko mm",
+ "=$ (",
+ "= $(",
+ "▁по вер",
+ "▁пов ер",
+ "▁пове р",
+ "▁d ois",
+ "▁do is",
+ "▁doi s",
+ "▁v itt",
+ "▁vi tt",
+ "▁vit t",
+ "▁automat isch",
+ "▁re load",
+ "▁ reload",
+ "▁Ver walt",
+ "ber o",
+ "be ro",
+ "b ero",
+ "▁h ub",
+ "▁hu b",
+ "▁m os",
+ "▁mo s",
+ "▁ mos",
+ "▁t utto",
+ "▁tu tto",
+ "▁tut to",
+ "▁Freder ick",
+ "ło w",
+ "ł ow",
+ "ant ages",
+ "anta ges",
+ "antage s",
+ "aqu e",
+ "a que",
+ "pa per",
+ "p aper",
+ "▁ein ige",
+ "`) ,",
+ "` ),",
+ "d j",
+ "▁P le",
+ "▁Pl e",
+ "▁% ,",
+ "▁ %,",
+ "▁B itmap",
+ "▁Bit map",
+ "▁ Bitmap",
+ "▁friend ly",
+ "▁tr uly",
+ "▁st roke",
+ "▁str oke",
+ "▁stro ke",
+ "▁ stroke",
+ "ro ph",
+ "rop h",
+ "r oph",
+ "▁en gl",
+ "▁eng l",
+ "▁ engl",
+ "▁c off",
+ "▁co ff",
+ "▁d ust",
+ "▁du st",
+ "▁dus t",
+ "▁Jah res",
+ "▁Jahr es",
+ "▁Jahre s",
+ "pp i",
+ "p pi",
+ "▁w ys",
+ "▁wy s",
+ "fa ctor",
+ "fact or",
+ "fac tor",
+ "f actor",
+ "sch luss",
+ "▁дере вня",
+ "▁дерев ня",
+ "▁P ast",
+ "▁Pa st",
+ "▁Pas t",
+ "▁до ма",
+ "CO M",
+ "C OM",
+ "▁pu eden",
+ "▁puede n",
+ "▁pue den",
+ "▁g ift",
+ "▁gi ft",
+ "▁G la",
+ "▁Gl a",
+ "▁trigger ed",
+ "él y",
+ "é ly",
+ "ül és",
+ "ü lés",
+ "▁O liv",
+ "▁Ol iv",
+ "▁ver so",
+ "▁vers o",
+ "▁ verso",
+ "▁l le",
+ "▁ll e",
+ "▁ lle",
+ "▁G li",
+ "▁Gl i",
+ "▁L td",
+ "o a",
+ "▁territ orio",
+ "ord re",
+ "▁de ck",
+ "▁dec k",
+ "▁ deck",
+ "dr a",
+ "d ra",
+ "as zt",
+ "asz t",
+ "▁concern ing",
+ "▁Add itionally",
+ "▁kter é",
+ "▁g rund",
+ "▁gr und",
+ "▁gru nd",
+ "▁ grund",
+ "▁G est",
+ "▁Ge st",
+ "▁Ges t",
+ "▁ Gest",
+ "▁mis under",
+ "pr et",
+ "pre t",
+ "p ret",
+ "── ──",
+ "▁re putation",
+ "zi a",
+ "z ia",
+ "▁у спе",
+ "▁ус пе",
+ "▁esc aped",
+ "▁escape d",
+ "▁P rag",
+ "▁Pr ag",
+ "▁Pra g",
+ "per form",
+ "▁a ustral",
+ "▁aust ral",
+ "▁V ater",
+ "▁Va ter",
+ "ча с",
+ "▁r aces",
+ "▁ra ces",
+ "▁race s",
+ "▁rac es",
+ "▁By te",
+ "▁ Byte",
+ "Ma sk",
+ "M ask",
+ "▁Ter rit",
+ "▁Terr it",
+ "ст ю",
+ "▁V oci",
+ "▁Vo ci",
+ "▁Fich ier",
+ "▁Насе лення",
+ "▁Unter scheidung",
+ "te enth",
+ "teen th",
+ "▁pi lot",
+ "▁pil ot",
+ "▁j i",
+ "▁ ji",
+ "▁дву х",
+ "▁orient ation",
+ "▁ orientation",
+ "ind re",
+ "▁D ort",
+ "▁Do rt",
+ "▁Dor t",
+ "ça s",
+ "ç as",
+ "п ли",
+ "▁re action",
+ "▁react ion",
+ "▁cons isting",
+ "▁consist ing",
+ "▁fer ro",
+ "ти сти",
+ "ya rd",
+ "yar d",
+ "y ard",
+ "▁с ві",
+ "▁interpret ation",
+ "i ą",
+ "ra h",
+ "r ah",
+ "▁f and",
+ "▁fa nd",
+ "▁fan d",
+ "Pub lic",
+ "P ublic",
+ "▁un iverse",
+ "▁univers e",
+ "▁ret ir",
+ "▁cons cious",
+ "ar qu",
+ "▁w aste",
+ "▁was te",
+ "▁wa ste",
+ "▁B ib",
+ "▁Bi b",
+ "ycler View",
+ "▁list ening",
+ "▁listen ing",
+ "▁liste ning",
+ "gle ich",
+ "g leich",
+ "nie js",
+ "niej s",
+ "▁cor relation",
+ "▁correl ation",
+ "▁corre lation",
+ "▁rece iver",
+ "▁receive r",
+ "▁у да",
+ "▁cour age",
+ "▁cou rage",
+ "uch s",
+ "uc hs",
+ "u chs",
+ "fa ss",
+ "fas s",
+ "f ass",
+ "▁ch unk",
+ "▁ chunk",
+ "▁An fang",
+ "▁gro ßen",
+ "▁große n",
+ "▁groß en",
+ "cont inue",
+ "continu e",
+ "▁Warsza wa",
+ "h é",
+ "i y",
+ "iv ement",
+ "ive ment",
+ "i vement",
+ "▁ α",
+ "▁ex posed",
+ "▁exp osed",
+ "▁expos ed",
+ "▁expose d",
+ "▁z ahl",
+ "▁za hl",
+ "▁ zahl",
+ "▁sa cr",
+ "▁sac r",
+ "▁Lo oks",
+ "▁Look s",
+ "▁e ager",
+ "en ten",
+ "ent en",
+ "ente n",
+ "e nten",
+ "C ursor",
+ "/ _",
+ "ix a",
+ "i xa",
+ "ре ла",
+ "зна ча",
+ "з нача",
+ "▁фамили ей",
+ "▁ar gent",
+ "▁arg ent",
+ "▁ argent",
+ "▁An ders",
+ "▁And ers",
+ "œuv re",
+ "▁I sa",
+ "▁Is a",
+ "мен та",
+ "мент а",
+ "▁ad vers",
+ "▁adv ers",
+ "ri ction",
+ "ric tion",
+ "rict ion",
+ "r iction",
+ "G P",
+ "▁п ісля",
+ "▁pre serve",
+ "▁pres erve",
+ "▁G arden",
+ "▁Gar den",
+ "▁Gard en",
+ "R ate",
+ "ap rès",
+ "a près",
+ "▁read able",
+ "in du",
+ "ind u",
+ "▁s kill",
+ "▁sk ill",
+ "▁ski ll",
+ "▁hel ping",
+ "▁help ing",
+ "ograph ique",
+ "cl ing",
+ "cli ng",
+ "c ling",
+ "olog ist",
+ "▁Fil ter",
+ "▁ Filter",
+ "▁f inger",
+ "▁fin ger",
+ "▁V all",
+ "▁Val l",
+ "▁Va ll",
+ "▁Pol ish",
+ "▁Po lish",
+ "l g",
+ "▁Famil ien",
+ "▁Familie n",
+ "▁w aters",
+ "▁water s",
+ "▁wa ters",
+ "▁wat ers",
+ "▁pse ud",
+ "az a",
+ "a za",
+ "_ )",
+ "AR Y",
+ "A RY",
+ "▁с реди",
+ "▁сред и",
+ "▁сре ди",
+ "▁M ust",
+ "▁Mus t",
+ "▁Mu st",
+ "▁B od",
+ "▁Bo d",
+ "an on",
+ "ano n",
+ "a non",
+ "▁l ado",
+ "▁la do",
+ "▁lad o",
+ "▁t ight",
+ "im en",
+ "ime n",
+ "i men",
+ "ap pen",
+ "app en",
+ "appe n",
+ "a ppen",
+ "fr ames",
+ "frame s",
+ "fra mes",
+ "fram es",
+ "in gers",
+ "ing ers",
+ "inger s",
+ "inge rs",
+ "▁CO VID",
+ "▁з і",
+ "▁ зі",
+ "▁с ве",
+ "▁ц ь",
+ "▁ ць",
+ "▁L eft",
+ "▁Le ft",
+ "▁ Left",
+ "]] ;",
+ "] ];",
+ "ч ь",
+ "фи ка",
+ "▁с ло",
+ "▁ сло",
+ "▁п і",
+ "▁ пі",
+ "▁ex iste",
+ "▁exist e",
+ "▁Atl antic",
+ "▁maintain ed",
+ "▁ir re",
+ "▁an née",
+ "▁ann ée",
+ "▁ année",
+ "▁comm ented",
+ "▁comment ed",
+ "ве ро",
+ "вер о",
+ "ber ta",
+ "bert a",
+ "b erta",
+ "▁L ad",
+ "▁La d",
+ "▁U pon",
+ "▁Up on",
+ "▁p ause",
+ "▁pa use",
+ "▁pau se",
+ "mi ll",
+ "mil l",
+ "m ill",
+ "op ter",
+ "opt er",
+ "U K",
+ "ре с",
+ "р ес",
+ "нцикло педи",
+ "▁along side",
+ "▁ro bot",
+ "▁rob ot",
+ "▁f ert",
+ "▁fe rt",
+ "▁fer t",
+ "▁ fert",
+ "▁m oy",
+ "▁mo y",
+ "▁a de",
+ "▁ad e",
+ "▁ ade",
+ "Map per",
+ "Mapp er",
+ "Ma pper",
+ "M apper",
+ ")- >",
+ ") ->",
+ "ig ua",
+ "igu a",
+ "ét ique",
+ "т ка",
+ "al ias",
+ "ali as",
+ "alia s",
+ "a lias",
+ "▁о ри",
+ "▁ор и",
+ "▁M agn",
+ "▁Ma gn",
+ "▁Mag n",
+ "▁gehör te",
+ "▁gehört e",
+ "im b",
+ "i mb",
+ ")} {\\",
+ ")}{ \\",
+ ") }{\\",
+ "▁Wikip édia",
+ "▁u rs",
+ "▁ur s",
+ "▁ urs",
+ "▁e nde",
+ "▁en de",
+ "▁end e",
+ "▁ ende",
+ "le b",
+ "l eb",
+ "▁G C",
+ "▁ GC",
+ "H ol",
+ "an cing",
+ "anc ing",
+ "anci ng",
+ "Un ion",
+ "Uni on",
+ "▁ten ía",
+ "T T",
+ "▁e state",
+ "▁est ate",
+ "▁esta te",
+ "▁estat e",
+ "h á",
+ "▁по лі",
+ "▁пол і",
+ "ul tan",
+ "ult an",
+ "▁H ockey",
+ "ul se",
+ "uls e",
+ "▁cho ices",
+ "▁choice s",
+ "sch er",
+ "sc her",
+ "sche r",
+ "s cher",
+ "▁[ ],",
+ "▁[] ,",
+ "▁pot entially",
+ "▁potential ly",
+ "▁Ü bers",
+ "▁Über s",
+ "▁ad mit",
+ "▁adm it",
+ "Com ment",
+ "Comm ent",
+ "ст я",
+ "с тя",
+ "▁V ien",
+ "▁Vi en",
+ "▁Vie n",
+ "▁ц і",
+ "▁ ці",
+ "▁per mut",
+ "▁perm ut",
+ "c gi",
+ "▁cr ít",
+ "Con sole",
+ "Cons ole",
+ "ct ic",
+ "▁ok res",
+ "aw k",
+ "foot ball",
+ "ou est",
+ "o uest",
+ "CT YPE",
+ "C TYPE",
+ "olog ique",
+ "▁const it",
+ "▁cons tit",
+ "▁inter ests",
+ "▁interest s",
+ "▁Pro gress",
+ "▁ Progress",
+ "▁M enu",
+ "▁Me nu",
+ "▁Men u",
+ "▁ Menu",
+ "▁tak é",
+ "▁ta ké",
+ "▁As ian",
+ "▁Asia n",
+ "▁за щи",
+ "▁young er",
+ "▁w ished",
+ "▁wish ed",
+ "▁wis hed",
+ "▁S ort",
+ "▁So rt",
+ "▁Sor t",
+ "▁ Sort",
+ "▁aud ience",
+ "▁audi ence",
+ "am ba",
+ "amb a",
+ "▁gehör t",
+ "▁K ansas",
+ "ya ume",
+ "▁Prof essional",
+ "â ce",
+ "▁f atto",
+ "▁fa tto",
+ "▁fat to",
+ "to d",
+ "t od",
+ "▁data sets",
+ "▁datas ets",
+ "▁dataset s",
+ "▁f are",
+ "▁far e",
+ "▁fa re",
+ "▁ fare",
+ "▁w aves",
+ "▁wave s",
+ "▁wa ves",
+ "~ /",
+ "▁measure ment",
+ "▁w ol",
+ "▁wo l",
+ "▁ wol",
+ "ind ust",
+ "indu st",
+ "▁strugg ling",
+ "▁pull ed",
+ "▁pul led",
+ "▁car atter",
+ "▁Ex terne",
+ "▁Ext erne",
+ "▁Extern e",
+ "▁дей стви",
+ "cn t",
+ "c nt",
+ "li ches",
+ "lic hes",
+ "lich es",
+ "liche s",
+ "▁Pos sible",
+ "▁Poss ible",
+ "▁fa ced",
+ "▁face d",
+ "▁fac ed",
+ "▁hypoth esis",
+ "▁kil om",
+ "▁n är",
+ "▁nä r",
+ "bo olean",
+ "P Y",
+ "am pa",
+ "amp a",
+ "▁k iss",
+ "▁ki ss",
+ "▁kis s",
+ "▁as tero",
+ "▁ast ero",
+ "▁neg li",
+ "am ents",
+ "ament s",
+ "amen ts",
+ "a ments",
+ "▁S tu",
+ "▁St u",
+ "at ó",
+ "a tó",
+ "▁Const itution",
+ "▁inter pol",
+ "▁Un able",
+ "▁Una ble",
+ "▁p is",
+ "▁pi s",
+ "▁ pis",
+ "▁p arc",
+ "▁par c",
+ "▁pa rc",
+ "\"] )",
+ "\" ])",
+ "ple r",
+ "pl er",
+ "p ler",
+ "▁aut ory",
+ "▁auto ry",
+ "▁autor y",
+ "▁alg unos",
+ "yw na",
+ "}) )",
+ "} ))",
+ "▁f alls",
+ "▁fall s",
+ "▁fal ls",
+ "▁ falls",
+ "▁é quip",
+ "▁e mit",
+ "▁em it",
+ "▁ emit",
+ "▁pro fil",
+ "▁prof il",
+ "ge ts",
+ "get s",
+ "g ets",
+ "ф о",
+ "▁Milit ary",
+ "▁nombre ux",
+ "oc t",
+ "o ct",
+ "Re place",
+ "Rep lace",
+ "▁se asons",
+ "▁season s",
+ "▁ch âteau",
+ "▁type of",
+ "▁ typeof",
+ "po lit",
+ "pol it",
+ "p olit",
+ "▁r and",
+ "▁ra nd",
+ "▁ran d",
+ "▁ rand",
+ "▁qu ar",
+ "▁erst mals",
+ "си ни",
+ "▁pay load",
+ "▁ payload",
+ "П о",
+ "кі н",
+ "к ін",
+ "re po",
+ "rep o",
+ "▁P av",
+ "▁Pa v",
+ "Sc ore",
+ "S core",
+ "er ves",
+ "erv es",
+ "erve s",
+ "▁soll te",
+ "▁мі ж",
+ "éb ec",
+ "é bec",
+ "▁c lip",
+ "▁cl ip",
+ "▁cli p",
+ "▁ clip",
+ "▁N ice",
+ "▁Nic e",
+ "▁Ni ce",
+ "▁n eben",
+ "▁ne ben",
+ "▁ass ass",
+ "it ories",
+ "ito ries",
+ "itor ies",
+ "itori es",
+ "▁un ity",
+ "▁unit y",
+ "▁ unity",
+ "▁е н",
+ "▁ ен",
+ "▁Inst itut",
+ "▁Instit ut",
+ "▁ Institut",
+ "▁intern ationale",
+ "▁international e",
+ "▁на ук",
+ "▁нау к",
+ "▁com and",
+ "▁kle ine",
+ "▁klein e",
+ "▁adj acent",
+ "▁deliver ed",
+ "▁ш е",
+ "▁ ше",
+ "зе м",
+ "з ем",
+ "▁c ot",
+ "▁co t",
+ "▁ cot",
+ "vis ual",
+ "ва ет",
+ "▁C ensus",
+ "\\ _",
+ "▁territ ory",
+ "чи л",
+ "ч ил",
+ "ч ные",
+ "fl utter",
+ "Did Load",
+ "Document s",
+ "Doc uments",
+ "▁d ob",
+ "▁do b",
+ "▁ dob",
+ "Br e",
+ "B re",
+ "an imate",
+ "ani mate",
+ "anim ate",
+ "▁b iz",
+ "▁bi z",
+ "▁b ata",
+ "▁ba ta",
+ "▁bat a",
+ "▁S U",
+ "▁ SU",
+ "es o",
+ "e so",
+ "▁p riority",
+ "▁prior ity",
+ "vá n",
+ "v án",
+ "ir as",
+ "ira s",
+ "i ras",
+ "▁char ged",
+ "▁charge d",
+ "▁charg ed",
+ "▁M icro",
+ "▁Mi cro",
+ "▁Mic ro",
+ "at oire",
+ "ato ire",
+ "a toire",
+ "че р",
+ "ч ер",
+ "ab ad",
+ "aba d",
+ "a bad",
+ "ur u",
+ "u ru",
+ "▁v š",
+ "dir e",
+ "di re",
+ "d ire",
+ "▁Tw itter",
+ "▁м ето",
+ "▁ме то",
+ "▁мет о",
+ "). .",
+ ") ..",
+ "▁Ц ент",
+ "▁ent wick",
+ "▁M ind",
+ "▁Min d",
+ "▁Mi nd",
+ "▁ф унк",
+ "F uture",
+ "ls t",
+ "l st",
+ "ło ż",
+ "fl i",
+ "f li",
+ "t ensor",
+ "▁top ology",
+ "▁ar te",
+ "▁art e",
+ "▁ arte",
+ "ER T",
+ "E RT",
+ "▁var iance",
+ "▁vari ance",
+ "Im ages",
+ "Image s",
+ "▁( @",
+ "▁ (@",
+ "Array List",
+ "O C",
+ "▁Де мо",
+ "auc oup",
+ "▁de notes",
+ "▁den otes",
+ "▁denote s",
+ "im on",
+ "imo n",
+ "i mon",
+ "њ и",
+ "▁Prz yp",
+ "▁Z ag",
+ "▁Za g",
+ "▁ди ре",
+ "▁Similar ly",
+ "б ро",
+ "▁mil itaire",
+ "▁milit aire",
+ "▁т ому",
+ "▁то му",
+ "▁том у",
+ "▁ тому",
+ "▁John ny",
+ "▁Мекси ку",
+ "ћ а",
+ "Su pp",
+ "S upp",
+ "▁jun ior",
+ "▁junio r",
+ "▁juni or",
+ "ol tre",
+ "olt re",
+ "o ltre",
+ "▁Мо ск",
+ "▁Мос к",
+ "▁adm itted",
+ "▁admit ted",
+ "▁relig ios",
+ "зя й",
+ "е го",
+ "▁t ears",
+ "▁te ars",
+ "▁tea rs",
+ "in go",
+ "ing o",
+ "od u",
+ "o du",
+ "iv eness",
+ "ive ness",
+ "iven ess",
+ "▁l ogo",
+ "▁lo go",
+ "▁log o",
+ "▁ logo",
+ "▁últ imo",
+ "▁al iment",
+ "▁ali ment",
+ "▁U ITableView",
+ "▁ UITableView",
+ ") !",
+ "▁n j",
+ "le tte",
+ "let te",
+ "lett e",
+ "l ette",
+ "▁res ident",
+ "▁resid ent",
+ "▁term ine",
+ "▁ter mine",
+ "▁termin e",
+ "▁у же",
+ "▁С те",
+ "▁Ст е",
+ "off ice",
+ "▁c arte",
+ "▁car te",
+ "▁cart e",
+ "▁li vre",
+ "▁liv re",
+ "▁Мо сков",
+ "▁Мос ков",
+ "▁Моск ов",
+ "▁e lections",
+ "▁elect ions",
+ "▁ele ctions",
+ "▁election s",
+ "зи ден",
+ "Tr igger",
+ "▁Ben jamin",
+ "add Class",
+ "ско г",
+ "▁Ob servable",
+ "▁Observ able",
+ "▁ Observable",
+ "Cl a",
+ "C la",
+ "gem ein",
+ "geme in",
+ "g emein",
+ "▁con sent",
+ "▁cons ent",
+ "▁conse nt",
+ "в ри",
+ "▁un fold",
+ "▁unf old",
+ "▁govern or",
+ "▁gover nor",
+ "▁governo r",
+ "на л",
+ "н ал",
+ "▁t oda",
+ "▁to da",
+ "▁tod a",
+ "Rem ote",
+ "ar ias",
+ "ari as",
+ "aria s",
+ "a rias",
+ "▁in stal",
+ "▁inst al",
+ "▁ins tal",
+ "fix ed",
+ "f ixed",
+ "▁dec ay",
+ "▁де рев",
+ "▁дере в",
+ "xy z",
+ "x yz",
+ "▁D ATE",
+ "▁DA TE",
+ "▁DAT E",
+ "▁ DATE",
+ "im ar",
+ "ima r",
+ "i mar",
+ "nt il",
+ "n til",
+ "▁start up",
+ "al ion",
+ "ali on",
+ "▁ko lej",
+ "▁kol ej",
+ "▁kole j",
+ "ci os",
+ "cio s",
+ "c ios",
+ "▁r anges",
+ "▁range s",
+ "▁ran ges",
+ "▁rang es",
+ "▁stup id",
+ "▁implement ations",
+ "▁implementation s",
+ "▁r m",
+ "▁ rm",
+ "én ek",
+ "é nek",
+ "▁g cc",
+ "▁ gcc",
+ "▁sc ène",
+ "N avigation",
+ "▁ ",
+ "▁к ан",
+ "▁ка н",
+ "▁ кан",
+ "▁town s",
+ "User name",
+ "Us ername",
+ "▁ф е",
+ "▁ фе",
+ "▁le aders",
+ "▁lead ers",
+ "▁leader s",
+ "oi t",
+ "o it",
+ "w är",
+ "▁d ummy",
+ "▁ass istant",
+ "▁assist ant",
+ "{$ \\",
+ "{ $\\",
+ "бі р",
+ "б ір",
+ "▁r oy",
+ "▁ro y",
+ "▁ roy",
+ "▁L ayout",
+ "▁ Layout",
+ "▁J ung",
+ "▁Ju ng",
+ "▁Jun g",
+ "Line s",
+ "Lin es",
+ "Li nes",
+ "L ines",
+ "▁Hol land",
+ "по р",
+ "п ор",
+ "▁Г ри",
+ "▁B ened",
+ "▁Be ned",
+ "▁Ben ed",
+ "▁П од",
+ "▁По д",
+ "xl s",
+ "x ls",
+ "▁G ol",
+ "▁Go l",
+ "▁Al eks",
+ "▁Ale ks",
+ "▁ej emplo",
+ "▁se zon",
+ "ar ding",
+ "ard ing",
+ "ardi ng",
+ "ardin g",
+ "foot note",
+ "▁Cong rès",
+ "re fer",
+ "ref er",
+ "ска та",
+ "с ката",
+ "Iter ator",
+ "▁our selves",
+ "▁M ic",
+ "▁Mi c",
+ "▁c ódigo",
+ "▁пло ща",
+ "▁\\ $",
+ "▁Char lie",
+ "No des",
+ "Node s",
+ "N odes",
+ "▁p uzz",
+ "▁pu zz",
+ "▁Ident ifier",
+ "▁ Identifier",
+ "▁fl utter",
+ "▁ flutter",
+ "▁pr ü",
+ "▁ prü",
+ "▁o rt",
+ "▁or t",
+ "▁ ort",
+ "▁C ort",
+ "▁Cor t",
+ "▁Co rt",
+ "astic search",
+ "▁С вя",
+ "▁B ull",
+ "▁Bu ll",
+ "▁Bul l",
+ "ud em",
+ "ude m",
+ "u dem",
+ "▁ap parent",
+ "▁appar ent",
+ ":- -",
+ ": --",
+ "▁Х ар",
+ "▁Ха р",
+ "▁L ap",
+ "▁La p",
+ "▁com port",
+ "▁comp ort",
+ "mat ically",
+ "m atically",
+ "▁cu rios",
+ "▁cur ios",
+ "▁мо жет",
+ "▁мож ет",
+ "▁може т",
+ "▁B h",
+ "ap ping",
+ "app ing",
+ "a pping",
+ "▁b asketball",
+ "▁basket ball",
+ "ze tek",
+ "zet ek",
+ "▁r unt",
+ "▁run t",
+ "▁ru nt",
+ "▁Mil an",
+ "▁Mi lan",
+ "fe ction",
+ "fect ion",
+ "f ection",
+ "rí a",
+ "r ía",
+ "▁K in",
+ "▁Ki n",
+ "▁s lower",
+ "▁sl ower",
+ "▁slow er",
+ "▁slo wer",
+ "bo th",
+ "bot h",
+ "b oth",
+ "▁Inst ituto",
+ "▁Instit uto",
+ "▁Institut o",
+ "▁Histor ical",
+ "▁Historic al",
+ "▁równ ież",
+ "mat ches",
+ "match es",
+ "yc i",
+ "y ci",
+ "▁esp èce",
+ "▁Schwe izer",
+ "▁Schweiz er",
+ "N T",
+ "S F",
+ "ac ia",
+ "aci a",
+ "a cia",
+ "for ge",
+ "f orge",
+ "Point s",
+ "Po ints",
+ "num bers",
+ "number s",
+ "▁f alling",
+ "▁fall ing",
+ "▁fal ling",
+ "▁inherit ance",
+ "▁Er st",
+ "▁custom ers",
+ "▁customer s",
+ "▁a ctu",
+ "▁act u",
+ "▁ac tu",
+ "▁m igration",
+ "▁migr ation",
+ "\\ '",
+ "Pl an",
+ "P lan",
+ "M r",
+ "ot hy",
+ "oth y",
+ "o thy",
+ "▁up grad",
+ "би ра",
+ "▁O ffic",
+ "▁Of fic",
+ "▁Off ic",
+ "▁W ait",
+ "▁Wa it",
+ "▁ Wait",
+ "▁to ler",
+ "ar don",
+ "ard on",
+ "ardo n",
+ "▁s lide",
+ "▁sl ide",
+ "▁sli de",
+ "▁ slide",
+ ") _",
+ "▁ста в",
+ "▁ став",
+ "▁nu clear",
+ "▁nuc lear",
+ "▁nucle ar",
+ "▁B il",
+ "▁Bi l",
+ "ow ner",
+ "own er",
+ "o wner",
+ "▁Har ris",
+ "▁Harr is",
+ "In formation",
+ "▁p ó",
+ "▁вклю ча",
+ "▁nu ovo",
+ "▁C av",
+ "▁Ca v",
+ "▁De scri",
+ "▁Des cri",
+ "▁а к",
+ "ód zt",
+ "▁react js",
+ "▁Ad ams",
+ "▁Adam s",
+ "▁Ada ms",
+ "▁Altern atively",
+ "ст рук",
+ "стру к",
+ "стр ук",
+ ")` ,",
+ ") `,",
+ "sub string",
+ "subst ring",
+ "substr ing",
+ "▁mass ive",
+ "▁heav ily",
+ "▁се зо",
+ "▁сез о",
+ "▁A na",
+ "▁An a",
+ "▁v ale",
+ "▁val e",
+ "▁va le",
+ "Pa d",
+ "P ad",
+ "▁E ither",
+ "▁r s",
+ "▁ rs",
+ "an che",
+ "anc he",
+ "anch e",
+ "▁up loaded",
+ "▁upload ed",
+ "▁( /",
+ "▁ (/",
+ "▁с пор",
+ "▁спо р",
+ "▁сп ор",
+ "▁redu ction",
+ "▁Tok yo",
+ "gr en",
+ "gre n",
+ "g ren",
+ "▁m igli",
+ "▁mig li",
+ "▁iter ator",
+ "▁ iterator",
+ "st av",
+ "sta v",
+ "▁support ing",
+ "▁ö sterreich",
+ "▁NS Log",
+ "ist iques",
+ "isti ques",
+ "istique s",
+ "ri min",
+ "rim in",
+ "r imin",
+ "MO DE",
+ "}} }\\",
+ "}}} \\",
+ "} }}\\",
+ "▁exp los",
+ "▁expl os",
+ "▁explo s",
+ "от е",
+ "о те",
+ "▁( „",
+ "Sa l",
+ "S al",
+ "▁simple st",
+ "▁simpl est",
+ "▁gi à",
+ "▁та н",
+ "▁т ан",
+ "▁ тан",
+ "▁c yl",
+ "▁cy l",
+ "bi r",
+ "b ir",
+ "▁measure ments",
+ "▁measurement s",
+ "Create d",
+ "Cre ated",
+ "er ek",
+ "ere k",
+ "e rek",
+ "look up",
+ "w irtschaft",
+ "▁В оло",
+ "▁Во ло",
+ "▁Вол о",
+ "ti mer",
+ "time r",
+ "tim er",
+ "t imer",
+ "de rr",
+ "der r",
+ "d err",
+ "▁ст ала",
+ "▁ста ла",
+ "▁стал а",
+ "▁sc enes",
+ "▁scen es",
+ "▁scene s",
+ "▁per su",
+ "▁pers u",
+ "li est",
+ "lie st",
+ "lies t",
+ "l iest",
+ "▁sch edule",
+ "▁sched ule",
+ "ta l",
+ "t al",
+ "ле но",
+ "лен о",
+ "▁pain ting",
+ "▁paint ing",
+ "▁impro vement",
+ "▁improve ment",
+ "▁improv ement",
+ "so ftware",
+ "soft ware",
+ "▁govern o",
+ "▁gover no",
+ "▁H ir",
+ "▁Hi r",
+ "Exec ution",
+ "▁Ok ay",
+ "Pro p",
+ "Pr op",
+ "P rop",
+ "lo ster",
+ "los ter",
+ "lost er",
+ "l oster",
+ "ніципа лі",
+ "▁peu vent",
+ "ol u",
+ "o lu",
+ "▁Ф а",
+ "roll o",
+ "rol lo",
+ "▁ко ло",
+ "▁к оло",
+ "▁ коло",
+ "▁car rière",
+ "▁carri ère",
+ "▁t oggle",
+ "▁tog gle",
+ "▁togg le",
+ "▁ toggle",
+ "▁( $\\",
+ "▁($ \\",
+ "▁aggreg ate",
+ "▁Б і",
+ "text area",
+ "O k",
+ "it to",
+ "itt o",
+ "i tto",
+ "▁s tim",
+ "▁st im",
+ "▁recurs ion",
+ "▁Feder ation",
+ ")_ {",
+ ") _{",
+ "ate gor",
+ "ateg or",
+ "▁dist ribu",
+ "▁distrib u",
+ "Cl oud",
+ "▁m adre",
+ "▁mad re",
+ "▁i v",
+ "▁ iv",
+ "▁Lie utenant",
+ "▁subst ant",
+ "▁le af",
+ "▁ leaf",
+ "▁Kont rola",
+ "V A",
+ "▁t omb",
+ "▁to mb",
+ "▁tom b",
+ "э н",
+ "ato es",
+ "▁god ine",
+ "▁# >",
+ "C ert",
+ "▁em presa",
+ "▁empres a",
+ "Pro ps",
+ "Pr ops",
+ "Prop s",
+ "▁pl anned",
+ "▁plan ned",
+ "▁random ly",
+ "j ähr",
+ "el em",
+ "ele m",
+ "e lem",
+ "▁Oper ation",
+ "▁Opera tion",
+ "▁ Operation",
+ "* `",
+ "pro tocol",
+ "proto col",
+ "() ));",
+ "()) );",
+ "())) ;",
+ "( )));",
+ "we l",
+ "w el",
+ "▁p raw",
+ "▁pr aw",
+ "▁pra w",
+ "▁с им",
+ "▁си м",
+ "▁w ob",
+ "▁wo b",
+ "▁h ace",
+ "▁ha ce",
+ "▁near est",
+ "dis able",
+ "▁C ommun",
+ "▁Com mun",
+ "▁Comm un",
+ "▁re vel",
+ "▁rev el",
+ "▁reve l",
+ "Fr ee",
+ "Fre e",
+ "F ree",
+ "▁bra ckets",
+ "IO Exception",
+ "▁al to",
+ "▁alt o",
+ "▁mar ry",
+ "▁a uc",
+ "▁au c",
+ "▁ auc",
+ "), \\",
+ ") ,\\",
+ "▁typ o",
+ "▁ty po",
+ "ed ad",
+ "eda d",
+ "ar á",
+ "a rá",
+ "ic ator",
+ "ica tor",
+ "tat ywna",
+ "▁b uff",
+ "▁bu ff",
+ "▁buf f",
+ "▁ buff",
+ "or ders",
+ "ord ers",
+ "order s",
+ "orde rs",
+ "▁as ynchronous",
+ "▁e con",
+ "▁ec on",
+ "▁f eu",
+ "▁fe u",
+ "▁I ron",
+ "▁Ir on",
+ "▁r ising",
+ "▁ris ing",
+ "▁ri sing",
+ "Rad ius",
+ "cl k",
+ "▁zwe iten",
+ "▁zwei ten",
+ "▁zweite n",
+ "` '",
+ "▁un iqu",
+ "▁F M",
+ "▁ FM",
+ "▁B ran",
+ "▁Br an",
+ "▁Bra n",
+ "▁f lu",
+ "▁fl u",
+ "▁ flu",
+ "▁sens itive",
+ "ur re",
+ "urr e",
+ "▁I ter",
+ "▁It er",
+ "▁ Iter",
+ "▁S ein",
+ "▁Se in",
+ "▁difer entes",
+ "▁diferen tes",
+ "▁не го",
+ "▁н его",
+ "▁ него",
+ "ch ia",
+ "chi a",
+ "▁An leitung",
+ "atur day",
+ "▁sh orter",
+ "▁short er",
+ "▁transl ated",
+ "▁translate d",
+ "▁R és",
+ "▁Ré s",
+ "▁r ode",
+ "▁ro de",
+ "▁rod e",
+ "dr ag",
+ "dra g",
+ "d rag",
+ "▁l ange",
+ "▁lang e",
+ "▁lan ge",
+ "B i",
+ "ü b",
+ "le ur",
+ "l eur",
+ "▁order ing",
+ "▁ord ering",
+ "al ous",
+ "alo us",
+ "▁К ор",
+ "▁Ко р",
+ "ar char",
+ "arch ar",
+ "arc har",
+ "dest roy",
+ "erv ation",
+ "erva tion",
+ "]] ,",
+ "] ],",
+ "Accessor Impl",
+ "▁autory tatywna",
+ "Se quence",
+ "Sequ ence",
+ "▁pro yect",
+ "▁b ran",
+ "▁br an",
+ "▁bra n",
+ "▁( +",
+ "▁K ab",
+ "▁Ka b",
+ "▁z em",
+ "▁ze m",
+ "▁ zem",
+ "▁Cal cul",
+ "▁ Calcul",
+ "▁se ul",
+ "▁seu l",
+ "▁N iger",
+ "▁Ni ger",
+ "▁ch iam",
+ "▁chi am",
+ "th row",
+ "▁Plan et",
+ "▁Pla net",
+ "bild ung",
+ "▁z ones",
+ "▁zo nes",
+ "▁zone s",
+ "trans ition",
+ "ле ний",
+ "▁m apped",
+ "▁ma pped",
+ "▁map ped",
+ "on aut",
+ "ona ut",
+ "Pa ir",
+ "P air",
+ "il ian",
+ "ili an",
+ "ilia n",
+ "▁M organ",
+ "▁Mor gan",
+ "▁un to",
+ "▁ unto",
+ "jo u",
+ "j ou",
+ "▁h id",
+ "▁hi d",
+ "▁M eta",
+ "▁Me ta",
+ "▁Met a",
+ "▁ Meta",
+ "▁e lles",
+ "▁el les",
+ "▁elle s",
+ "▁ell es",
+ "▁ elles",
+ "Lo u",
+ "L ou",
+ "ra ma",
+ "ram a",
+ "r ama",
+ "ge ordnet",
+ "▁scarc ely",
+ "▁m int",
+ "▁min t",
+ "▁mi nt",
+ "F ocus",
+ "▁Al ter",
+ "▁Alt er",
+ "▁d io",
+ "▁di o",
+ "▁am pl",
+ "▁amp l",
+ "ière ment",
+ "▁ис следова",
+ "LE D",
+ "L ED",
+ "alg orithm",
+ "▁сай ті",
+ "▁сайт і",
+ "▁\" \")",
+ "▁\"\" )",
+ "Hi story",
+ "H istory",
+ "p k",
+ "▁W hit",
+ "▁Wh it",
+ "▁си стем",
+ "▁систе м",
+ "▁Kir chen",
+ "▁Kirche n",
+ "▁Kirch en",
+ "r à",
+ "AP P",
+ "A PP",
+ "▁< %",
+ "ant ine",
+ "anti ne",
+ "antin e",
+ "▁D isk",
+ "▁Dis k",
+ "▁Di sk",
+ "con v",
+ "we lt",
+ "wel t",
+ "w elt",
+ "▁F ut",
+ "▁Fu t",
+ "▁N om",
+ "▁No m",
+ "or do",
+ "ord o",
+ "el lij",
+ "ell ij",
+ "elli j",
+ "▁rece ives",
+ "▁receive s",
+ "co w",
+ "c ow",
+ "yt u",
+ "y tu",
+ "▁o bras",
+ "▁ob ras",
+ "▁obra s",
+ "▁p urchase",
+ "▁purch ase",
+ "▁ear ned",
+ "▁acc essed",
+ "▁access ed",
+ "ax i",
+ "a xi",
+ "▁M ans",
+ "▁Man s",
+ "▁Ma ns",
+ "iv an",
+ "iva n",
+ "i van",
+ "▁t uvo",
+ "▁tu vo",
+ "▁T race",
+ "▁Tr ace",
+ "▁Tra ce",
+ "▁ Trace",
+ "rim onio",
+ "▁desen vol",
+ "ér ique",
+ "éri que",
+ "é rique",
+ "▁result ed",
+ "▁comp uting",
+ "▁comput ing",
+ "▁insp ired",
+ "▁inspir ed",
+ "▁Pr ize",
+ "▁Pri ze",
+ "* \"",
+ "Com put",
+ "Comp ut",
+ "▁ext ensive",
+ "▁extens ive",
+ "è g",
+ "▁Port ály",
+ "▁cast le",
+ "▁ castle",
+ "▁* .",
+ "▁ *.",
+ "▁ph otos",
+ "▁phot os",
+ "▁photo s",
+ "▁vo et",
+ "ON G",
+ "O NG",
+ "▁A lle",
+ "▁Al le",
+ "▁All e",
+ "▁thre aten",
+ "▁threat en",
+ "st üt",
+ "▁album s",
+ "▁alb ums",
+ "▁d ense",
+ "▁den se",
+ "▁dens e",
+ "fl at",
+ "f lat",
+ "cont inu",
+ "Sub ject",
+ "Su bject",
+ "▁read only",
+ "Op t",
+ "O pt",
+ "пи ско",
+ "пис ко",
+ "▁A ber",
+ "▁Ab er",
+ "▁P osition",
+ "▁Pos ition",
+ "▁ Position",
+ "▁To day",
+ "▁Tod ay",
+ "▁m ini",
+ "▁min i",
+ "▁mi ni",
+ "▁B ef",
+ "▁Be f",
+ "li sten",
+ "list en",
+ "lis ten",
+ "l isten",
+ "ствен ного",
+ "ственно го",
+ "SU B",
+ "S UB",
+ "os sa",
+ "oss a",
+ "▁P ope",
+ "▁Po pe",
+ "▁Pop e",
+ "▁Jim my",
+ "▁Д ру",
+ "ungs seite",
+ "▁t ren",
+ "▁tr en",
+ "▁tre n",
+ "op tim",
+ "opt im",
+ "it sch",
+ "its ch",
+ "▁s amt",
+ "▁sa mt",
+ "▁sam t",
+ "▁испо л",
+ "▁ис пол",
+ "& =",
+ "▁Przyp isy",
+ "▁про дол",
+ "C r",
+ "er mann",
+ "erm ann",
+ "erman n",
+ "▁ма тери",
+ "▁мате ри",
+ "▁H ugo",
+ "▁Hu go",
+ "▁De ze",
+ "▁Dez e",
+ "TR UE",
+ "▁defe at",
+ "▁watch ed",
+ "▁wat ched",
+ "▁G ent",
+ "▁Ge nt",
+ "▁Gen t",
+ "AU T",
+ "A UT",
+ "or ous",
+ "oro us",
+ "▁о преде",
+ "ori entation",
+ "orient ation",
+ "▁distingu ished",
+ "▁distinguish ed",
+ "▁mes mo",
+ "▁s li",
+ "▁sl i",
+ "ме на",
+ "мен а",
+ "м ена",
+ "mit tel",
+ "mitt el",
+ "m ittel",
+ "ge richt",
+ "ger icht",
+ "et on",
+ "eto n",
+ "e ton",
+ "-> {",
+ "- >{",
+ "▁w ont",
+ "▁won t",
+ "▁wo nt",
+ "▁w eg",
+ "▁we g",
+ "▁ weg",
+ "▁class ific",
+ "il us",
+ "i lus",
+ "▁M D",
+ "▁ MD",
+ "task s",
+ "▁c him",
+ "▁ch im",
+ "▁chi m",
+ "aw ait",
+ "awa it",
+ "a wait",
+ "▁g ang",
+ "▁gan g",
+ "▁ga ng",
+ "▁ gang",
+ "▁w ię",
+ "▁ wię",
+ "th rough",
+ "▁Russ ell",
+ "▁guess ing",
+ "▁а кт",
+ "▁ак т",
+ "б лі",
+ "c ategories",
+ "су т",
+ "с ут",
+ "▁F en",
+ "▁Fe n",
+ "▁му ж",
+ "▁ne wer",
+ "▁new er",
+ "▁A sync",
+ "▁As ync",
+ "▁ Async",
+ "▁t erme",
+ "▁term e",
+ "▁ter me",
+ "> /",
+ "па ра",
+ "пар а",
+ "▁T rust",
+ "▁Tr ust",
+ "▁Tru st",
+ "▁O pt",
+ "▁Op t",
+ "▁ Opt",
+ "▁d ah",
+ "▁da h",
+ "▁wonder ful",
+ "adrat kil",
+ "▁Г ра",
+ "ma pping",
+ "map ping",
+ "m apping",
+ "▁disc overy",
+ "▁discover y",
+ "▁disco very",
+ "▁B E",
+ "▁ BE",
+ "En able",
+ "▁Fri end",
+ "с ня",
+ "▁cont rolled",
+ "▁control led",
+ "чно ї",
+ "ч ної",
+ "▁contribution s",
+ "▁contrib utions",
+ "j ší",
+ "▁L ev",
+ "▁Le v",
+ "▁franc és",
+ "▁m ic",
+ "▁mi c",
+ "▁ mic",
+ "zi k",
+ "z ik",
+ "▁a lem",
+ "▁al em",
+ "▁ale m",
+ "▁ alem",
+ "can cel",
+ "! '",
+ "▁g rat",
+ "▁gr at",
+ "▁gra t",
+ "▁Begriff sklär",
+ "Cam era",
+ "if icación",
+ "ific ación",
+ "ifica ción",
+ "ró d",
+ "r ód",
+ "▁Arn old",
+ "▁bezeichnet er",
+ "▁f ought",
+ "▁de put",
+ "▁dep ut",
+ "▁D rop",
+ "▁Dr op",
+ "▁Dro p",
+ "▁ Drop",
+ "ta x",
+ "t ax",
+ "d g",
+ "▁H op",
+ "▁Ho p",
+ "G N",
+ "▁Kir ch",
+ "▁Б ар",
+ "▁Ба р",
+ "In voke",
+ "Inv oke",
+ "▁er halten",
+ "▁ve el",
+ "▁word press",
+ "▁ wordpress",
+ "▁IN NER",
+ "trans action",
+ "▁dé jà",
+ "Fa ct",
+ "F act",
+ "▁над мор",
+ "▁angular js",
+ "▁á t",
+ "▁ át",
+ "▁a lap",
+ "▁al ap",
+ "▁P rice",
+ "▁Pr ice",
+ "▁Pri ce",
+ "▁ Price",
+ "▁eff et",
+ "▁s phere",
+ "▁sp here",
+ "▁spher e",
+ "Class Loader",
+ "▁r ugby",
+ "▁rug by",
+ "▁king dom",
+ "▁M ut",
+ "▁Mu t",
+ "▁ки но",
+ "▁re ward",
+ "ci t",
+ "c it",
+ "▁present e",
+ "▁pres ente",
+ "St o",
+ "S to",
+ "Char acter",
+ "lo gs",
+ "log s",
+ "l ogs",
+ "▁cent rale",
+ "▁central e",
+ "▁m ouv",
+ "▁mo uv",
+ "▁mou v",
+ "▁ok ay",
+ "▁ap lic",
+ "Mo re",
+ "Mor e",
+ "M ore",
+ "ény ek",
+ "▁Kö ln",
+ "ne tt",
+ "net t",
+ "n ett",
+ "▁исто рии",
+ "▁истори и",
+ "▁descri bing",
+ "▁sold ier",
+ "▁N eed",
+ "▁Ne ed",
+ "L ight",
+ "▁\" \\<",
+ "▁\"\\ <",
+ "▁h av",
+ "▁ha v",
+ "▁ hav",
+ "er mo",
+ "erm o",
+ "▁infer ior",
+ "le a",
+ "l ea",
+ "▁g g",
+ "▁ gg",
+ "▁кон це",
+ "fra gment",
+ "f ragment",
+ "s b",
+ "Count ry",
+ "C ountry",
+ "▁v ě",
+ "▁ vě",
+ "▁B eng",
+ "▁Be ng",
+ "▁Ben g",
+ "▁Э то",
+ "▁во до",
+ "ма р",
+ "м ар",
+ "STR ING",
+ "▁ú j",
+ "multi ple",
+ "multip le",
+ "state ment",
+ "stat ement",
+ "▁invol ves",
+ "▁involve s",
+ "▁te cn",
+ "▁tec n",
+ "St udent",
+ "gr é",
+ "g ré",
+ "▁le an",
+ "▁ lean",
+ "▁bring ing",
+ "▁Med ical",
+ "▁Medic al",
+ "▁Medi cal",
+ "▁програ м",
+ "▁V og",
+ "▁Vo g",
+ "▁ж ов",
+ "▁Sp irit",
+ "nt h",
+ "n th",
+ "▁stand ards",
+ "▁standard s",
+ "▁Pro file",
+ "▁Prof ile",
+ "▁Profil e",
+ "▁ Profile",
+ "▁e z",
+ "▁ ez",
+ "▁террито рии",
+ "▁s tem",
+ "▁st em",
+ "▁ste m",
+ "ui l",
+ "u il",
+ "▁O g",
+ "B tn",
+ "na l",
+ "n al",
+ "▁near by",
+ "▁produ cing",
+ "cri v",
+ "cr iv",
+ "c riv",
+ "▁assum ptions",
+ "▁assumption s",
+ "▁S park",
+ "▁Sp ark",
+ "▁L ot",
+ "▁Lo t",
+ "it udes",
+ "itu des",
+ "itude s",
+ "itud es",
+ "af ka",
+ "fi ve",
+ "f ive",
+ "at io",
+ "ati o",
+ "▁distingu ish",
+ "ro ck",
+ "roc k",
+ "r ock",
+ "égl ise",
+ "é glise",
+ "▁rapp res",
+ "▁rap pres",
+ ">\\ <",
+ "> \\<",
+ "лі й",
+ "л ій",
+ "▁ми ни",
+ "▁ мини",
+ "▁intitul é",
+ "}} (\\",
+ "}}( \\",
+ "} }(\\",
+ "▁R out",
+ "▁Ro ut",
+ "▁Rou t",
+ "▁ Rout",
+ "▁B order",
+ "▁Bor der",
+ "▁ Border",
+ "▁over rid",
+ "HO ST",
+ "H OST",
+ "rit ten",
+ "ritt en",
+ "r itten",
+ "sa y",
+ "s ay",
+ "▁Ч и",
+ "icht ung",
+ "▁straight forward",
+ "ob b",
+ "o bb",
+ "▁Ter ra",
+ "▁Terr a",
+ "▁[ :",
+ "▁ [:",
+ "Be n",
+ "B en",
+ "▁compos ite",
+ ")+ \\",
+ ") +\\",
+ "▁c rown",
+ "▁cr own",
+ "▁cro wn",
+ "▁crow n",
+ "dir ection",
+ "direct ion",
+ "dire ction",
+ "d irection",
+ "▁неско лько",
+ "▁av ail",
+ "▁purch ased",
+ "▁purchase d",
+ "ho ok",
+ "h ook",
+ "et ies",
+ "eti es",
+ "e ties",
+ "▁f ase",
+ "▁fa se",
+ "▁fas e",
+ "▁R um",
+ "▁Ru m",
+ "▁ge nom",
+ "▁gen om",
+ "▁d ét",
+ "▁dé t",
+ "ow ą",
+ "mp eg",
+ "▁І н",
+ "des ktop",
+ "▁in jection",
+ "▁inj ection",
+ "▁inject ion",
+ "ag le",
+ "a gle",
+ "▁E dd",
+ "▁Ed d",
+ "_{ (",
+ "_ {(",
+ "▁H em",
+ "▁He m",
+ "ut os",
+ "uto s",
+ "pr oj",
+ "pro j",
+ "▁superfic ie",
+ "Pl ot",
+ "P lot",
+ "▁D ocker",
+ "▁Do cker",
+ "▁Doc ker",
+ "ät z",
+ "ä tz",
+ "kre ich",
+ "k reich",
+ "▁un clear",
+ "▁uncle ar",
+ "▁Un ity",
+ "▁Unit y",
+ "▁stream s",
+ "▁stre ams",
+ "ви д",
+ "▁simpl ified",
+ "Fil l",
+ "Fi ll",
+ "F ill",
+ "▁s ant",
+ "▁sa nt",
+ "▁san t",
+ "▁K ommun",
+ "▁Kom mun",
+ "▁Komm un",
+ "▁d uc",
+ "▁du c",
+ "▁д ве",
+ "▁o bs",
+ "▁ob s",
+ "▁ obs",
+ "ž it",
+ "▁Jane iro",
+ "б я",
+ "▁pr esso",
+ "▁pres so",
+ "▁press o",
+ "▁Min istry",
+ "▁b urst",
+ "▁bur st",
+ "▁re aching",
+ "▁reach ing",
+ "li ter",
+ "lit er",
+ "l iter",
+ "▁response s",
+ "▁respons es",
+ "▁E ug",
+ "▁Eu g",
+ "▁s od",
+ "▁so d",
+ "▁C ord",
+ "▁Cor d",
+ "▁Co rd",
+ "▁P erm",
+ "▁Per m",
+ "▁Pe rm",
+ "▁ Perm",
+ "par ts",
+ "part s",
+ "p arts",
+ "ци ма",
+ "vari ables",
+ "variable s",
+ "▁forgot ten",
+ "Fe rn",
+ "F ern",
+ "ost ęp",
+ "v l",
+ "▁С м",
+ "ki m",
+ "k im",
+ "aj ąc",
+ "ają c",
+ "a jąc",
+ "на ль",
+ "нал ь",
+ "н аль",
+ "г ле",
+ "hel per",
+ "help er",
+ "du p",
+ "d up",
+ "eu w",
+ "e uw",
+ "fr a",
+ "f ra",
+ "ell ite",
+ "elli te",
+ "an ya",
+ "any a",
+ "▁re ign",
+ "▁r eign",
+ "▁rei gn",
+ "ges amt",
+ "се да",
+ "▁R yan",
+ "▁Ry an",
+ "▁form atted",
+ "▁format ted",
+ "▁formatt ed",
+ "▁B org",
+ "▁Bo rg",
+ "▁Bor g",
+ "wal k",
+ "w alk",
+ "▁а л",
+ "▁ ал",
+ "agnost ics",
+ "agnostic s",
+ "▁C ape",
+ "▁Cap e",
+ "▁Ca pe",
+ "▁Fran co",
+ "▁Franc o",
+ "▁f ug",
+ "▁fu g",
+ ": )",
+ "ю з",
+ "F etch",
+ "▁rough ly",
+ "▁M is",
+ "▁Mi s",
+ "uet ooth",
+ "▁Venez uela",
+ "▁a stronom",
+ "▁astr onom",
+ "\") `",
+ "\" )`",
+ "om bres",
+ "omb res",
+ "▁кото рой",
+ "ó p",
+ "ow ed",
+ "owe d",
+ "o wed",
+ "H R",
+ "▁C amer",
+ "▁Cam er",
+ "▁Ca mer",
+ "ки е",
+ "par ison",
+ "▁B ij",
+ "▁Bi j",
+ "tem plates",
+ "template s",
+ "en vironment",
+ "environ ment",
+ "iz ação",
+ "iza ção",
+ "▁é r",
+ "▁ ér",
+ "▁pl enty",
+ "▁Type Error",
+ "▁for ty",
+ "▁fort y",
+ "ко ном",
+ "кон ом",
+ "коно м",
+ "▁S ed",
+ "▁Se d",
+ "▁th ats",
+ "▁that s",
+ "▁gra vity",
+ "▁grav ity",
+ "▁gravit y",
+ "▁ gravity",
+ "▁spirit ual",
+ "▁dup licates",
+ "▁duplicate s",
+ "▁enc ryption",
+ "▁encrypt ion",
+ "▁re ven",
+ "▁r even",
+ "▁rev en",
+ "▁reve n",
+ "▁ reven",
+ "get Instance",
+ "äl lor",
+ "äll or",
+ "dis k",
+ "di sk",
+ "d isk",
+ "▁th ro",
+ "▁thr o",
+ "▁N ak",
+ "▁Na k",
+ "▁p oł",
+ "▁po ł",
+ "▁her aus",
+ "in valid",
+ "s By",
+ "Bo ot",
+ "B oot",
+ "▁bu cket",
+ "▁ bucket",
+ "▁P arse",
+ "▁Par se",
+ "▁ Parse",
+ "he x",
+ "h ex",
+ "Con ne",
+ "C onne",
+ "▁Comp uter",
+ "▁Comput er",
+ "zy k",
+ "z yk",
+ "▁indu ced",
+ "▁Br uno",
+ "▁Bru no",
+ "▁Brun o",
+ "▁address ed",
+ "▁addr essed",
+ "ma nia",
+ "man ia",
+ "m ania",
+ "▁in clus",
+ "▁incl us",
+ "▁inc lus",
+ "▁inclu s",
+ "oun ced",
+ "ounce d",
+ "script size",
+ "scripts ize",
+ "▁E pis",
+ "▁Ep is",
+ "▁v ocal",
+ "▁vo cal",
+ "▁voc al",
+ "▁Jon athan",
+ "у м",
+ "st aden",
+ "sta den",
+ "stad en",
+ "▁Child ren",
+ "▁ Children",
+ "пе й",
+ "п ей",
+ "It alia",
+ "Ital ia",
+ "reib ung",
+ "▁n ost",
+ "▁no st",
+ "▁nos t",
+ "▁ nost",
+ "▁е щё",
+ "▁Wer ke",
+ "▁Werk e",
+ "▁act ress",
+ "▁Minn esota",
+ "ri ke",
+ "rik e",
+ "r ike",
+ "▁t ek",
+ "▁te k",
+ "▁ tek",
+ "▁prime ira",
+ "▁f rat",
+ "▁fr at",
+ "▁fra t",
+ "▁Config uration",
+ "▁ Configuration",
+ "▁b id",
+ "▁bi d",
+ "▁ bid",
+ "tr igger",
+ "Cont ents",
+ "Content s",
+ "▁const antly",
+ "▁constant ly",
+ "!! !",
+ "! !!",
+ "▁d read",
+ "▁dr ead",
+ "▁dre ad",
+ "▁hundred s",
+ "ist ische",
+ "isti sche",
+ "▁card inal",
+ "T ABLE",
+ "▁est os",
+ "▁esto s",
+ "ass oc",
+ "asso c",
+ "gr ay",
+ "gra y",
+ "g ray",
+ "▁Sch loss",
+ "▁Schl oss",
+ "▁s che",
+ "▁sc he",
+ "▁sch e",
+ "▁ sche",
+ "con g",
+ "co ng",
+ "c ong",
+ "▁ko ji",
+ "ète s",
+ "èt es",
+ "è tes",
+ "▁E ra",
+ "▁Er a",
+ "om i",
+ "o mi",
+ "▁S R",
+ "▁ SR",
+ "▁wr apped",
+ "▁wra pped",
+ "▁wrap ped",
+ "▁tr unc",
+ "▁a h",
+ "▁ ah",
+ "eg os",
+ "ego s",
+ "ok i",
+ "o ki",
+ "mo uth",
+ "m outh",
+ "log ging",
+ "▁f asc",
+ "▁fa sc",
+ "▁fas c",
+ "▁S ample",
+ "▁Sam ple",
+ "▁ Sample",
+ "▁c onte",
+ "▁con te",
+ "▁cont e",
+ "▁v illa",
+ "▁vi lla",
+ "▁vill a",
+ "▁vil la",
+ "▁ villa",
+ "com ments",
+ "comm ents",
+ "comment s",
+ "▁b atal",
+ "▁ba tal",
+ "▁bat al",
+ "▁bata l",
+ "▁Garc ía",
+ "▁N orte",
+ "▁Nor te",
+ "▁we chsel",
+ "▁Muse o",
+ "▁enf ants",
+ "▁whis per",
+ "na ke",
+ "nak e",
+ "n ake",
+ "▁jed nak",
+ "l ês",
+ "en ders",
+ "end ers",
+ "ender s",
+ "ende rs",
+ "▁ä l",
+ "▁ äl",
+ "▁V B",
+ "▁ VB",
+ "▁cook ies",
+ "▁cookie s",
+ "ze ti",
+ "zet i",
+ "z eti",
+ "at um",
+ "atu m",
+ "▁d edu",
+ "▁de du",
+ "▁ded u",
+ "▁arr anged",
+ "▁arrang ed",
+ "la z",
+ "l az",
+ "▁cu enta",
+ "ym l",
+ "y ml",
+ "▁f lav",
+ "▁fl av",
+ "▁fla v",
+ "M R",
+ "em et",
+ "eme t",
+ "e met",
+ "бі ль",
+ "б іль",
+ "cm p",
+ "c mp",
+ "it uto",
+ "itu to",
+ "itut o",
+ "ze tt",
+ "zet t",
+ "z ett",
+ "▁en vi",
+ "▁env i",
+ "▁k ot",
+ "▁ko t",
+ "$ :",
+ "up per",
+ "upp er",
+ "u pper",
+ "▁Al berto",
+ "▁Albert o",
+ "k b",
+ "An al",
+ "A nal",
+ "ör t",
+ "ö rt",
+ "▁[ -",
+ "▁ [-",
+ "▁führ te",
+ "▁führt e",
+ "ia h",
+ "i ah",
+ "▁T un",
+ "▁Tu n",
+ "▁и скус",
+ "uw e",
+ "u we",
+ "is pecies",
+ "i species",
+ "P ub",
+ "Syn c",
+ "S ync",
+ "▁Colomb ia",
+ "ak ers",
+ "ake rs",
+ "aker s",
+ "▁Imper ial",
+ "ov ing",
+ "ovi ng",
+ "o ving",
+ "▁int elligence",
+ "▁intellig ence",
+ "▁equip ment",
+ "ei n",
+ "e in",
+ "dag ger",
+ "d agger",
+ "▁Ed ge",
+ "▁ Edge",
+ "▁Рес публи",
+ "adratkil ometer",
+ "▁An to",
+ "▁Ant o",
+ "▁char ges",
+ "▁charge s",
+ "▁charg es",
+ "▁O cean",
+ "▁simpl ify",
+ "▁m iesz",
+ "▁mi esz",
+ "▁mie sz",
+ "run ning",
+ "r unning",
+ "▁L ac",
+ "▁La c",
+ "gen ommen",
+ "▁represent ative",
+ "= .",
+ "▁P red",
+ "▁Pr ed",
+ "▁Pre d",
+ "▁ Pred",
+ "▁sp ite",
+ "ci ale",
+ "cial e",
+ "cia le",
+ "c iale",
+ "▁n ave",
+ "▁na ve",
+ "▁nav e",
+ "▁ext ens",
+ "▁neut ral",
+ "▁кото рая",
+ ".< /",
+ ". ",
+ "▁C S",
+ "▁ CS",
+ "uk y",
+ "u ky",
+ "▁wh ilst",
+ "▁l ingu",
+ "▁lin gu",
+ "▁ling u",
+ "ext ract",
+ "extra ct",
+ "zeich nung",
+ "▁F eld",
+ "▁Fe ld",
+ "▁Fel d",
+ "▁valu able",
+ "ur able",
+ "ura ble",
+ "u rable",
+ "▁J en",
+ "▁Je n",
+ "▁strugg le",
+ "▁comm ittee",
+ "▁W ohn",
+ "▁Wo hn",
+ "▁sql ite",
+ "▁ sqlite",
+ "▁T emp",
+ "▁Te mp",
+ "▁Tem p",
+ "▁ Temp",
+ "▁CO UNT",
+ "▁ COUNT",
+ "con sin",
+ "cons in",
+ "мі ні",
+ "мін і",
+ "us age",
+ "usa ge",
+ "▁qu est",
+ "▁que st",
+ "▁q uest",
+ "▁ quest",
+ "дя н",
+ "д ян",
+ "ear ed",
+ "ea red",
+ "e ared",
+ "▁Sch ne",
+ "▁d od",
+ "▁do d",
+ "▁re cht",
+ "▁rec ht",
+ "▁ recht",
+ "▁k ao",
+ "▁ka o",
+ "Cap t",
+ "Ca pt",
+ "C apt",
+ "label s",
+ "lab els",
+ "▁el los",
+ "▁ell os",
+ "▁indust ri",
+ "▁Color ado",
+ "▁contr ary",
+ "▁contra ry",
+ "▁D um",
+ "▁Du m",
+ "Be l",
+ "B el",
+ "▁V ent",
+ "▁Ve nt",
+ "▁Ven t",
+ "▁author ities",
+ "Y ES",
+ "en sed",
+ "ens ed",
+ "ense d",
+ "umbn ail",
+ "izz azione",
+ "izza zione",
+ "ko u",
+ "k ou",
+ "ri ca",
+ "ric a",
+ "r ica",
+ "▁s ect",
+ "▁se ct",
+ "▁sec t",
+ "▁ sect",
+ "test s",
+ "tes ts",
+ "t ests",
+ "▁K lein",
+ "▁Kle in",
+ "▁Kl ein",
+ "▁le gs",
+ "▁leg s",
+ "▁Pi etro",
+ "▁Piet ro",
+ "f u",
+ "th y",
+ "t hy",
+ "▁b ast",
+ "▁bas t",
+ "▁ba st",
+ "▁t edes",
+ "▁te des",
+ "▁ted es",
+ "et tes",
+ "ett es",
+ "ette s",
+ "▁re pet",
+ "▁rep et",
+ "▁repe t",
+ "ac re",
+ "a cre",
+ "re tto",
+ "ret to",
+ "rett o",
+ "r etto",
+ "▁remain der",
+ "▁G eg",
+ "▁Ge g",
+ "▁Г ор",
+ "▁Го р",
+ "▁Re chts",
+ "▁Recht s",
+ "▁filter ing",
+ "ou ss",
+ "ous s",
+ "o uss",
+ "▁deploy ed",
+ "▁prü fe",
+ "▁b itmap",
+ "▁bit map",
+ "▁s ovi",
+ "▁so vi",
+ "▁sov i",
+ "▁< %=",
+ "▁<% =",
+ "▁ <%=",
+ "▁entfer ne",
+ "ki ll",
+ "kil l",
+ "k ill",
+ "ta bs",
+ "tab s",
+ "t abs",
+ "Ex pr",
+ "Exp r",
+ "ко му",
+ "ком у",
+ "к ому",
+ "▁Republic an",
+ "▁S ize",
+ "▁Si ze",
+ "▁ Size",
+ "▁p oll",
+ "▁po ll",
+ "▁pol l",
+ "▁r ien",
+ "▁ri en",
+ "▁ rien",
+ "▁клу б",
+ "én d",
+ "é nd",
+ "▁B io",
+ "▁Bi o",
+ "▁per l",
+ "▁pe rl",
+ "▁ perl",
+ "▁And reas",
+ "▁Andrea s",
+ "▁Andre as",
+ "ви н",
+ "в ин",
+ "▁d istant",
+ "▁dist ant",
+ "▁F inn",
+ "▁Fin n",
+ "▁M itch",
+ "▁Mit ch",
+ "▁% {",
+ "▁c harm",
+ "▁ch arm",
+ "▁char m",
+ "▁cha rm",
+ "▁M ul",
+ "▁Mu l",
+ "pe rate",
+ "per ate",
+ "▁sci ences",
+ "▁science s",
+ "▁mon ot",
+ "▁mo not",
+ "▁deb ido",
+ "riz ona",
+ "ie c",
+ "i ec",
+ "▁al arm",
+ "▁prom oted",
+ "▁promote d",
+ "▁let zten",
+ "at in",
+ "ati n",
+ "▁con clus",
+ "▁conc lus",
+ "▁concl us",
+ "he rr",
+ "her r",
+ "h err",
+ "▁é ch",
+ "▁éc h",
+ "▁ éch",
+ "ed ish",
+ "edi sh",
+ "go r",
+ "g or",
+ "▁st ycz",
+ "▁sty cz",
+ "▁im press",
+ "▁imp ress",
+ "▁impr ess",
+ "ru its",
+ "ruit s",
+ "r uits",
+ "ier ungs",
+ "ierung s",
+ "▁par sed",
+ "▁parse d",
+ "▁r ío",
+ "▁Pak istan",
+ "ig ner",
+ "ign er",
+ "igne r",
+ "▁watch ing",
+ "▁database s",
+ "▁datab ases",
+ "ed ing",
+ "edi ng",
+ "e ding",
+ "▁Spec ific",
+ "▁gener ale",
+ "▁general e",
+ "▁gene rale",
+ "la x",
+ "l ax",
+ "▁Lo oking",
+ "▁Look ing",
+ "▁b ond",
+ "▁bo nd",
+ "▁bon d",
+ "▁v ista",
+ "▁vis ta",
+ "▁vi sta",
+ "▁e c",
+ "▁ ec",
+ "▁gr ud",
+ "▁gru d",
+ "▁del eting",
+ "▁delet ing",
+ "ta c",
+ "t ac",
+ "▁j azz",
+ "▁ja zz",
+ "j m",
+ "▁p ół",
+ "▁pó ł",
+ "L anguage",
+ "de legate",
+ "▁reg istry",
+ "▁registr y",
+ "▁Sh ared",
+ "▁Share d",
+ "▁ Shared",
+ "ст рой",
+ "стро й",
+ "Mus ic",
+ "▁v essel",
+ "▁vess el",
+ "▁ves sel",
+ ". @",
+ "▁W ür",
+ "▁f ed",
+ "▁fe d",
+ "▁ered et",
+ "▁ere det",
+ "▁G ö",
+ "up t",
+ "u pt",
+ "▁ple asant",
+ "▁table View",
+ "▁ tableView",
+ "▁count ing",
+ "▁coun ting",
+ "▁Krie gs",
+ "▁Krieg s",
+ "▁полу чил",
+ "▁получи л",
+ "▁] ,",
+ "▁ ],",
+ "ви а",
+ "▁a ž",
+ "To List",
+ "▁Ad vent",
+ "▁Adv ent",
+ "▁sk etch",
+ "p n",
+ "▁s ier",
+ "▁si er",
+ "▁sie r",
+ "▁находи тся",
+ "io p",
+ "i op",
+ "▁l y",
+ "▁ ly",
+ "▁Sch l",
+ "▁Sc hl",
+ "Cont ract",
+ "as soci",
+ "ass oci",
+ "asso ci",
+ "assoc i",
+ "▁P ear",
+ "▁Pe ar",
+ "▁w he",
+ "▁wh e",
+ "▁De lete",
+ "▁Del ete",
+ "▁ Delete",
+ "▁e lem",
+ "▁el em",
+ "▁ele m",
+ "▁ elem",
+ "ät te",
+ "ätt e",
+ "ä tte",
+ "▁č esk",
+ "▁M C",
+ "▁ MC",
+ "▁sh out",
+ "▁sho ut",
+ "ake spe",
+ "akes pe",
+ "▁default s",
+ "pe nas",
+ "pen as",
+ "p enas",
+ "ò ria",
+ "▁hier archy",
+ "ip t",
+ "i pt",
+ "▁E lis",
+ "▁El is",
+ "▁Eli s",
+ "like ly",
+ "lik ely",
+ "Ro t",
+ "R ot",
+ "▁c ow",
+ "▁co w",
+ "▁ cow",
+ "▁st rike",
+ "▁str ike",
+ "▁stri ke",
+ "▁strik e",
+ "▁бере зня",
+ "▁ens emble",
+ "▁ ensemble",
+ "▁Pse ud",
+ "V irtual",
+ "▁ї ї",
+ "RO OT",
+ "си я",
+ "▁с об",
+ "▁со б",
+ "▁ соб",
+ "▁in vert",
+ "▁inv ert",
+ "▁inve rt",
+ "▁switch ing",
+ "ht access",
+ "▁на гра",
+ "▁Nor man",
+ "▁Norm an",
+ "▁ing lês",
+ "! [",
+ "ou sel",
+ "ous el",
+ "ouse l",
+ "DO CTYPE",
+ "DOC TYPE",
+ "▁supp ress",
+ "▁sup press",
+ "▁accompan ied",
+ "▁B é",
+ "imp lies",
+ "impl ies",
+ "nu t",
+ "n ut",
+ "▁S yntax",
+ "▁Syn tax",
+ "▁ Syntax",
+ "in ho",
+ "▁t am",
+ "▁ta m",
+ "▁focus ed",
+ "▁foc used",
+ "av ano",
+ "ava no",
+ "avan o",
+ "a vano",
+ "▁B aden",
+ "▁Ba den",
+ "▁Bad en",
+ "ha d",
+ "h ad",
+ "▁( {",
+ "▁ ({",
+ "T y",
+ "▁ро с",
+ "▁р ос",
+ "▁ рос",
+ "▁чо лові",
+ "og e",
+ "o ge",
+ "js p",
+ "j sp",
+ "Bl ue",
+ "▁su as",
+ "▁sua s",
+ "ap ers",
+ "ape rs",
+ "aper s",
+ "a pers",
+ "Sh ort",
+ "Render er",
+ "▁s endo",
+ "▁send o",
+ "▁sen do",
+ "▁C ec",
+ "▁Ce c",
+ "▁` __",
+ "▁`_ _",
+ "▁Municip al",
+ "dot net",
+ "▁b ev",
+ "▁be v",
+ "▁D A",
+ "▁ DA",
+ "Menu Item",
+ "▁a mp",
+ "▁am p",
+ "▁ amp",
+ "▁u ri",
+ "▁ur i",
+ "▁ uri",
+ "▁f ier",
+ "▁fi er",
+ "сле н",
+ "с лен",
+ "), (",
+ ") ,(",
+ "cul es",
+ "cu les",
+ "c ules",
+ "il las",
+ "ill as",
+ "illa s",
+ "LO CK",
+ "LOC K",
+ "▁de rive",
+ "▁der ive",
+ "▁deriv e",
+ "ub en",
+ "ube n",
+ "u ben",
+ "▁G T",
+ "▁ GT",
+ "▁M ack",
+ "▁Ma ck",
+ "▁Mac k",
+ "▁sch olar",
+ ")} }",
+ ") }}",
+ "з м",
+ ">: :",
+ "> ::",
+ "ш ёл",
+ "▁princip ales",
+ "▁principal es",
+ "▁principale s",
+ "▁ц ар",
+ "▁t ied",
+ "▁ti ed",
+ "▁tie d",
+ "▁al ta",
+ "▁alt a",
+ "▁C it",
+ "▁Ci t",
+ "li ned",
+ "line d",
+ "lin ed",
+ "l ined",
+ "ma jor",
+ "▁p unk",
+ "▁pun k",
+ "▁cin co",
+ "ick ý",
+ "▁r aggi",
+ "▁ra ggi",
+ "▁rag gi",
+ "ty pen",
+ "type n",
+ "typ en",
+ "тель ство",
+ "▁con ference",
+ "▁confer ence",
+ "▁с іль",
+ "▁сі ль",
+ "▁he ut",
+ "i š",
+ "ет а",
+ "е та",
+ "vel ope",
+ "velop e",
+ "h box",
+ "no wn",
+ "now n",
+ "n own",
+ "▁z ar",
+ "▁za r",
+ "▁ zar",
+ "kt iv",
+ "ie ß",
+ "▁с тре",
+ "▁ст ре",
+ "▁ стре",
+ "▁Event Args",
+ "▁ EventArgs",
+ "▁I ra",
+ "▁Ir a",
+ "▁V BA",
+ "▁VB A",
+ "▁S anto",
+ "▁San to",
+ "▁Sant o",
+ "▁F ach",
+ "▁Fa ch",
+ "▁Fac h",
+ "▁F F",
+ "▁ FF",
+ "▁Ray mond",
+ "ме ц",
+ "im plementation",
+ "▁bro thers",
+ "▁brother s",
+ "▁cô té",
+ "▁cont rollers",
+ "▁control lers",
+ "▁controller s",
+ "▁C le",
+ "▁Cl e",
+ "▁c able",
+ "▁ca ble",
+ "▁cab le",
+ "▁con fer",
+ "▁conf er",
+ "▁{ -",
+ "▁ {-",
+ "▁cz ł",
+ "▁Fil ip",
+ "at orio",
+ "ator io",
+ "ato rio",
+ "atori o",
+ "▁w icht",
+ "▁be aucoup",
+ "▁L it",
+ "▁Li t",
+ "▁s essions",
+ "▁session s",
+ "▁sess ions",
+ "▁Su ccess",
+ "▁ Success",
+ "▁ro uting",
+ "▁rout ing",
+ "▁rou ting",
+ "ni u",
+ "n iu",
+ "▁V ice",
+ "▁Vi ce",
+ "▁Vic e",
+ "▁k rit",
+ "▁kr it",
+ "up dated",
+ "update d",
+ "▁In valid",
+ "▁ Invalid",
+ "▁Mann schaft",
+ "▁a os",
+ "▁ao s",
+ "▁t udi",
+ "▁tu di",
+ "▁tud i",
+ "▁des prés",
+ "▁desp rés",
+ "qu a",
+ "q ua",
+ "Cont ains",
+ "Comp any",
+ "▁person a",
+ "▁pers ona",
+ "ad apter",
+ "с ни",
+ "▁v oj",
+ "▁vo j",
+ "▁ voj",
+ "▁e scri",
+ "▁es cri",
+ "▁esc ri",
+ "ag t",
+ "a gt",
+ "▁с тво",
+ "▁ст во",
+ "▁ ство",
+ "▁dist rito",
+ "ap an",
+ "apa n",
+ "a pan",
+ "▁aspect s",
+ "▁z al",
+ "▁za l",
+ ")^ {\\",
+ ")^{ \\",
+ ") ^{\\",
+ "▁syst ème",
+ "▁а на",
+ "▁ан а",
+ "▁ ана",
+ "ium s",
+ "iu ms",
+ "i ums",
+ "▁prem iers",
+ "▁premi ers",
+ "▁premier s",
+ "▁по э",
+ "▁m ère",
+ "▁G un",
+ "▁Gu n",
+ "ap ing",
+ "api ng",
+ "a ping",
+ "▁R ain",
+ "▁Ra in",
+ "▁ig ual",
+ "▁process or",
+ "▁proc essor",
+ "▁ processor",
+ "') `",
+ "' )`",
+ "bl ing",
+ "b ling",
+ "▁m ism",
+ "▁mi sm",
+ "▁mis m",
+ "br áz",
+ "▁close st",
+ "▁clos est",
+ "▁Re ading",
+ "▁Read ing",
+ "▁по пу",
+ "con o",
+ "co no",
+ "c ono",
+ "▁k ult",
+ "▁! !",
+ "▁ !!",
+ "▁Ex pression",
+ "▁Exp ression",
+ "▁Express ion",
+ "▁ Expression",
+ "▁indu ction",
+ "▁induct ion",
+ "ah ren",
+ "ahr en",
+ "a hren",
+ "▁c p",
+ "▁ cp",
+ "▁viol ence",
+ "ient í",
+ "cent e",
+ "cen te",
+ "c ente",
+ "▁D ob",
+ "▁Do b",
+ "ja ck",
+ "j ack",
+ "so ng",
+ "son g",
+ "s ong",
+ "bu cket",
+ "▁de port",
+ "▁dep ort",
+ "ки ми",
+ "ким и",
+ "l m",
+ "▁in noc",
+ "▁inn oc",
+ "Ch anges",
+ "Change s",
+ "▁pro hib",
+ "ang ol",
+ "ango l",
+ "isecond s",
+ "i seconds",
+ "▁п ор",
+ "▁по р",
+ "▁ пор",
+ "▁h ip",
+ "▁hi p",
+ "▁ hip",
+ "▁p ů",
+ "en dorf",
+ "end orf",
+ "endo rf",
+ "endor f",
+ "▁sch eduled",
+ "▁schedule d",
+ "▁Fl ug",
+ "ac yj",
+ "acy j",
+ "▁Fil ms",
+ "▁Film s",
+ "athed ral",
+ "Po wer",
+ "P ower",
+ "ar din",
+ "ard in",
+ "ardi n",
+ "ka p",
+ "k ap",
+ "ic ken",
+ "ick en",
+ "i cken",
+ "re size",
+ "res ize",
+ "eu s",
+ "e us",
+ "r r",
+ "ля н",
+ "л ян",
+ "▁H av",
+ "▁Ha v",
+ "▁o ra",
+ "▁or a",
+ "▁ ora",
+ "FR OM",
+ "F ROM",
+ "ло ся",
+ "▁te rug",
+ "▁ter ug",
+ "▁W idth",
+ "▁ Width",
+ "▁accept s",
+ "бе н",
+ "б ен",
+ "▁m ich",
+ "▁mi ch",
+ "▁mic h",
+ "▁C zech",
+ "▁Cz ech",
+ "▁B edeut",
+ "▁ви д",
+ "▁ вид",
+ "ô me",
+ "▁L oop",
+ "▁Lo op",
+ "▁ Loop",
+ "sp ect",
+ "spe ct",
+ "spec t",
+ "s pect",
+ "ü k",
+ "es ton",
+ "est on",
+ "esto n",
+ "e ston",
+ "▁s lot",
+ "▁sl ot",
+ "▁slo t",
+ "▁został a",
+ "▁Charlot te",
+ "▁состав ляет",
+ "▁составля ет",
+ "▁Prom ise",
+ "▁e po",
+ "▁ep o",
+ "▁d iction",
+ "▁di ction",
+ "▁dict ion",
+ "▁dic tion",
+ "▁ diction",
+ "▁Frank lin",
+ "▁R iv",
+ "▁Ri v",
+ "ру г",
+ "ci da",
+ "cid a",
+ "c ida",
+ "▁Ex plorer",
+ "cook ie",
+ "▁former ly",
+ "▁municip ality",
+ "▁municipal ity",
+ "▁Ste fan",
+ "▁Stef an",
+ "list s",
+ "lis ts",
+ "l ists",
+ "CO MP",
+ "COM P",
+ "Le n",
+ "L en",
+ "▁Sta at",
+ "▁N BA",
+ "de ns",
+ "den s",
+ "d ens",
+ "▁osc ill",
+ "! .",
+ "▁P O",
+ "▁ PO",
+ "ô ne",
+ "es es",
+ "ese s",
+ "▁на циональ",
+ "vo or",
+ "v oor",
+ "▁ко пи",
+ "▁по зи",
+ "▁ пози",
+ "ul u",
+ "u lu",
+ "Const raint",
+ "Constra int",
+ "▁сво ей",
+ "▁algebra ic",
+ "ч ня",
+ "Di ct",
+ "D ict",
+ "▁appear ing",
+ "▁appe aring",
+ "▁p rav",
+ "▁pr av",
+ "▁pra v",
+ "▁Univers al",
+ "B rowser",
+ "▁Sing ap",
+ "ennes see",
+ "] _",
+ "▁S of",
+ "▁So f",
+ "▁C ad",
+ "▁Ca d",
+ "oun ce",
+ "▁cost s",
+ "▁cos ts",
+ "]{ \\",
+ "] {\\",
+ "../ ../",
+ "ськ ій",
+ "ські й",
+ "üh l",
+ "ü hl",
+ "ie ty",
+ "iet y",
+ "i ety",
+ "п р",
+ "▁interpre ted",
+ "▁interpret ed",
+ "aj n",
+ "col og",
+ "co log",
+ "colo g",
+ "c olog",
+ "Y S",
+ "ma ns",
+ "man s",
+ "m ans",
+ "▁met rics",
+ "▁metric s",
+ "▁reg istr",
+ "▁ registr",
+ "ist ance",
+ "istan ce",
+ "▁По ль",
+ "▁an onymous",
+ "▁ anonymous",
+ "▁institution s",
+ "▁instit utions",
+ "▁z dob",
+ "▁zd ob",
+ "pr üng",
+ "prü ng",
+ "▁ар ти",
+ "▁e stat",
+ "▁est at",
+ "▁es tat",
+ "▁esta t",
+ "ac ci",
+ "acc i",
+ "▁academ ic",
+ "▁ch iesa",
+ "▁chi esa",
+ "▁G ian",
+ "▁Gi an",
+ "▁Gia n",
+ "cont rib",
+ "contr ib",
+ "um ed",
+ "ume d",
+ "u med",
+ "▁G ir",
+ "▁Gi r",
+ "▁base ball",
+ "numer ic",
+ "n umeric",
+ "Gener ator",
+ "G M",
+ "▁t iny",
+ "▁ti ny",
+ "▁tin y",
+ "▁ tiny",
+ "▁dist inction",
+ "▁distinct ion",
+ "ге р",
+ "г ер",
+ "▁r ust",
+ "▁ru st",
+ "▁rus t",
+ "▁ rust",
+ "▁FI FA",
+ "▁Pro perties",
+ "▁ Properties",
+ "^ -",
+ "▁э кс",
+ "▁эк с",
+ "▁Sta nis",
+ "▁Stan is",
+ "▁A jax",
+ "es cape",
+ "esc ape",
+ "▁con sp",
+ "▁cons p",
+ "▁C hen",
+ "▁Ch en",
+ "▁Che n",
+ "▁N aval",
+ "▁Na val",
+ "▁Nav al",
+ "Bi t",
+ "B it",
+ "▁b ât",
+ "ски ми",
+ "ским и",
+ "с кими",
+ "dr ive",
+ "dri ve",
+ "d rive",
+ "▁R ound",
+ "▁Ro und",
+ "▁Rou nd",
+ "ph oto",
+ "▁Le vel",
+ "▁Lev el",
+ "▁ Level",
+ "▁g eg",
+ "▁ge g",
+ "▁ geg",
+ "To m",
+ "T om",
+ "▁M obile",
+ "▁ Mobile",
+ "▁T rop",
+ "▁Tr op",
+ "▁Tro p",
+ "Dir ection",
+ "Direct ion",
+ "D irection",
+ "is an",
+ "isa n",
+ "i san",
+ ")^ {-",
+ ")^{ -",
+ ") ^{-",
+ "▁Set ting",
+ "▁ Setting",
+ "▁Pro bably",
+ "ль я",
+ "л ья",
+ "▁as sets",
+ "▁ass ets",
+ "▁asse ts",
+ "▁asset s",
+ "▁ assets",
+ "▁a tte",
+ "▁at te",
+ "▁att e",
+ "▁ atte",
+ "▁b ulk",
+ "▁bul k",
+ "és t",
+ "é st",
+ "▁w ing",
+ "▁win g",
+ "▁ wing",
+ "ni us",
+ "niu s",
+ "n ius",
+ "▁w ins",
+ "▁win s",
+ "▁l ud",
+ "▁lu d",
+ "us hing",
+ "ush ing",
+ "▁d even",
+ "▁de ven",
+ "▁dev en",
+ "▁deve n",
+ "огра ф",
+ "о граф",
+ "burg er",
+ "bur ger",
+ "b urger",
+ "▁em bar",
+ "▁emb ar",
+ "Filter Chain",
+ "▁t um",
+ "▁tu m",
+ "▁ö ss",
+ "▁nom mé",
+ "▁p ir",
+ "▁pi r",
+ "▁l uc",
+ "▁lu c",
+ "db o",
+ "d bo",
+ "ag ues",
+ "ague s",
+ "agu es",
+ "▁al can",
+ "▁alc an",
+ "ou wen",
+ "ouw en",
+ "▁Stan ley",
+ "ци али",
+ "▁g rown",
+ "▁gr own",
+ "▁gro wn",
+ "▁grow n",
+ "▁pres erved",
+ "▁preserve d",
+ "▁s olar",
+ "▁so lar",
+ "▁sol ar",
+ "▁Насе ление",
+ "▁perform ances",
+ "▁performance s",
+ "▁C ow",
+ "▁Co w",
+ "▁engine ering",
+ "▁engineer ing",
+ "▁sc aling",
+ "▁scal ing",
+ "at omic",
+ "ato mic",
+ "atom ic",
+ "end ance",
+ "▁a ce",
+ "▁ac e",
+ "▁ ace",
+ "än gen",
+ "äng en",
+ "änge n",
+ "An im",
+ "A nim",
+ "ph ase",
+ "pha se",
+ "phas e",
+ "z burg",
+ "O ld",
+ "▁serv ant",
+ "▁geme ins",
+ "▁Ob serv",
+ "trans late",
+ "▁cover ing",
+ "▁cov ering",
+ "▁est án",
+ "▁está n",
+ "▁problem a",
+ "▁proble ma",
+ "▁probl ema",
+ "▁у станов",
+ "▁l lev",
+ "▁ll ev",
+ "▁lle v",
+ "▁c zerw",
+ "é al",
+ "me z",
+ "m ez",
+ "RE E",
+ "R EE",
+ "ER R",
+ "ту ри",
+ "тур и",
+ "se gu",
+ "seg u",
+ "s egu",
+ "▁pro fit",
+ "▁prof it",
+ "▁multip lication",
+ "kom men",
+ "k ommen",
+ "▁f aut",
+ "▁fa ut",
+ "▁candid ates",
+ "▁candidate s",
+ "▁U ri",
+ "▁Ur i",
+ "▁ Uri",
+ "▁La ura",
+ "▁Laur a",
+ "▁Lau ra",
+ "▁s ap",
+ "▁sa p",
+ "▁ви сини",
+ "▁Bet ween",
+ "fa de",
+ "f ade",
+ "▁res erved",
+ "▁reserve d",
+ "▁invol ving",
+ "▁M are",
+ "▁Mar e",
+ "▁Ma re",
+ "▁Cont ainer",
+ "▁ Container",
+ "▁на зна",
+ "▁DE BUG",
+ "▁ DEBUG",
+ "▁h urt",
+ "▁hur t",
+ "▁hu rt",
+ "▁Pol ski",
+ "▁l ux",
+ "▁lu x",
+ "C B",
+ "wa ch",
+ "w ach",
+ "▁пери од",
+ "▁перио д",
+ "▁C atherine",
+ "▁g anz",
+ "▁gan z",
+ "uch te",
+ "ucht e",
+ "u chte",
+ "▁cons umer",
+ "▁consum er",
+ "▁consume r",
+ "▁cross ed",
+ "ord ered",
+ "order ed",
+ "orde red",
+ "aw ay",
+ "awa y",
+ "a way",
+ "te chn",
+ "tech n",
+ "▁sub scri",
+ "▁subs cri",
+ "▁short cut",
+ "▁произ вод",
+ "▁simultane ously",
+ "▁r ating",
+ "▁ra ting",
+ "▁rat ing",
+ "▁ rating",
+ "▁K ings",
+ "▁King s",
+ "▁Kin gs",
+ "▁relations hips",
+ "▁relation ships",
+ "▁relationship s",
+ "▁S ex",
+ "▁Se x",
+ "▁T ool",
+ "▁To ol",
+ "▁ Tool",
+ "ag h",
+ "a gh",
+ "ac ters",
+ "act ers",
+ "acter s",
+ "log ger",
+ "hom me",
+ "en gers",
+ "eng ers",
+ "enger s",
+ "▁R i",
+ "ear ance",
+ "ea rance",
+ "▁appear ances",
+ "▁appearance s",
+ "Re al",
+ "▁p asse",
+ "▁pass e",
+ "▁pas se",
+ "ic lopedia",
+ "ч ко",
+ "ter re",
+ "▁Ont ario",
+ "▁пере да",
+ "▁перед а",
+ "fo oter",
+ "foo ter",
+ "foot er",
+ "arch ivi",
+ "archiv i",
+ "if iz",
+ "ifi z",
+ "▁Pro test",
+ "▁Prote st",
+ "▁L IN",
+ "▁LI N",
+ "▁ LIN",
+ "unn able",
+ "▁cent uries",
+ "▁B ayer",
+ "▁Ba yer",
+ "▁Bay er",
+ "ці ю",
+ "ов ин",
+ "ови н",
+ "о вин",
+ "▁And rea",
+ "▁Andre a",
+ "se lection",
+ "select ion",
+ "sel ection",
+ "▁c alm",
+ "▁cal m",
+ "▁ca lm",
+ "▁mod ification",
+ "▁modific ation",
+ "▁short ly",
+ "in aire",
+ "ina ire",
+ "i naire",
+ "▁f usion",
+ "▁fus ion",
+ "▁feel ings",
+ "▁feeling s",
+ "▁fee lings",
+ "P K",
+ "▁Ro berto",
+ "▁Robert o",
+ "г не",
+ "Sh ared",
+ "▁mehr ere",
+ "▁N iem",
+ "▁Ni em",
+ "▁Nie m",
+ "om p",
+ "o mp",
+ "En v",
+ "▁Art icle",
+ "▁P ok",
+ "▁Po k",
+ "▁V ARCHAR",
+ "▁d il",
+ "▁di l",
+ "▁af ford",
+ "▁aff ord",
+ "▁con front",
+ "▁conf ront",
+ "ow anie",
+ "owa nie",
+ "owan ie",
+ "▁min istre",
+ "▁minist re",
+ "▁mini stre",
+ "ad esh",
+ "ade sh",
+ "ades h",
+ "▁P oly",
+ "▁Pol y",
+ "▁Po ly",
+ "▁Ра спо",
+ "▁Рас по",
+ "▁Gru ppe",
+ "▁H elen",
+ "▁He len",
+ "▁Hel en",
+ "▁c c",
+ "▁ cc",
+ "▁port rait",
+ "be w",
+ "b ew",
+ "▁b eta",
+ "▁be ta",
+ "▁bet a",
+ "▁ beta",
+ "▁W ir",
+ "▁Wi r",
+ "▁A udio",
+ "▁Aud io",
+ "▁ Audio",
+ "▁( \\<",
+ "▁(\\ <",
+ "rior ity",
+ "▁n it",
+ "▁ni t",
+ "▁ nit",
+ "▁пред стави",
+ "▁представ и",
+ "▁V ie",
+ "▁Vi e",
+ "▁w ür",
+ "▁ wür",
+ "▁H old",
+ "▁Hol d",
+ "▁Ho ld",
+ "▁ Hold",
+ "▁S ad",
+ "▁Sa d",
+ "▁To chter",
+ "▁o ltre",
+ "▁ol tre",
+ "▁ oltre",
+ "▁Act iv",
+ "▁ Activ",
+ "▁J ason",
+ "▁Ja son",
+ "▁Jas on",
+ "▁wie ku",
+ "▁reg ards",
+ "▁regard s",
+ "▁t aste",
+ "▁ta ste",
+ "agnost ic",
+ "ла ся",
+ "▁S elf",
+ "▁Sel f",
+ "▁ Self",
+ "▁a pr",
+ "▁ap r",
+ "▁De ep",
+ "sc op",
+ "s cop",
+ "Act iv",
+ "▁type def",
+ "▁typed ef",
+ "Content View",
+ "comp iler",
+ "compile r",
+ "▁R oth",
+ "▁Ro th",
+ "▁Rot h",
+ "x c",
+ "зи к",
+ "▁l argo",
+ "▁lar go",
+ "▁larg o",
+ "▁R ena",
+ "▁Re na",
+ "▁Ren a",
+ "he iten",
+ "heit en",
+ "▁platform s",
+ "▁plat forms",
+ "ul la",
+ "ull a",
+ "u lla",
+ "▁gl ance",
+ "▁mas cul",
+ "▁m ex",
+ "▁me x",
+ "▁J orge",
+ "▁fun cion",
+ "▁func ion",
+ "cho ose",
+ "▁re views",
+ "▁review s",
+ "▁Al ban",
+ "▁Alb an",
+ "▁G lo",
+ "▁Gl o",
+ "▁S pecies",
+ "▁Spe cies",
+ "▁Spec ies",
+ "▁F ame",
+ "▁Fa me",
+ "▁Fam e",
+ "▁R oll",
+ "▁Ro ll",
+ "▁Rol l",
+ "▁P uerto",
+ "▁\\ )",
+ "▁ \\)",
+ "ym nas",
+ "ymn as",
+ "en viron",
+ "▁i phone",
+ "▁Wrest ling",
+ "ał y",
+ "a ły",
+ "▁Ind iana",
+ "▁India na",
+ "▁Indian a",
+ "Rad io",
+ "V S",
+ "▁independ ence",
+ "та й",
+ "▁de code",
+ "▁dec ode",
+ "▁ decode",
+ "Wh ite",
+ "▁j ourn",
+ "▁jo urn",
+ "▁jou rn",
+ "▁jour n",
+ "ícul o",
+ "í culo",
+ "▁Bar b",
+ "▁Ba rb",
+ "▁Ev angel",
+ "▁An dy",
+ "▁And y",
+ "▁Wel come",
+ "▁De vice",
+ "▁Dev ice",
+ "▁ Device",
+ "ge f",
+ "g ef",
+ "▁remember ed",
+ "▁vari ations",
+ "▁variation s",
+ "▁Ad olf",
+ "it aine",
+ "ita ine",
+ "▁надмор ској",
+ "▁s team",
+ "▁ste am",
+ "▁concern s",
+ "▁` |",
+ "▁би о",
+ "тель ства",
+ "▁qu attro",
+ "ext end",
+ "▁trab ajo",
+ "▁trabaj o",
+ "en berg",
+ "▁scen arios",
+ "▁scenario s",
+ "ân t",
+ "â nt",
+ "▁kom mt",
+ "▁komm t",
+ "▁dom estic",
+ "▁B asketball",
+ "▁Co oper",
+ "so ck",
+ "s ock",
+ "дер жа",
+ "д ержа",
+ "={ \\",
+ "= {\\",
+ "▁in ici",
+ "▁P hill",
+ "▁Ph ill",
+ "▁Phil l",
+ "▁гене рал",
+ "archivi ato",
+ "ъ н",
+ "Ro b",
+ "R ob",
+ "▁t ong",
+ "▁to ng",
+ "▁ton g",
+ "▁character istics",
+ "▁characteristic s",
+ "▁a maz",
+ "▁am az",
+ "▁M ode",
+ "▁Mod e",
+ "▁Mo de",
+ "▁ Mode",
+ "▁inaug ur",
+ "we hr",
+ "ra nt",
+ "ran t",
+ "r ant",
+ "ion ali",
+ "ional i",
+ "iona li",
+ "▁M other",
+ "▁Mo ther",
+ "▁Mot her",
+ "M a",
+ "é qu",
+ "▁K elly",
+ "▁Kel ly",
+ "ci le",
+ "cil e",
+ "c ile",
+ "▁beste ht",
+ "▁estim ates",
+ "▁estimate s",
+ "rugu ay",
+ "▁A ns",
+ "▁An s",
+ "Ma d",
+ "M ad",
+ "▁на в",
+ "▁d onnées",
+ "▁donn ées",
+ "▁donné es",
+ "▁ données",
+ "▁trop ical",
+ "▁Sever al",
+ "el ter",
+ "elt er",
+ "elte r",
+ "▁P ho",
+ "▁Ph o",
+ "ke m",
+ "k em",
+ "▁Custom er",
+ "▁ Customer",
+ "▁скла ді",
+ "▁c ourses",
+ "▁course s",
+ "▁cours es",
+ "Pl atform",
+ "nav bar",
+ "le arning",
+ "lear ning",
+ "learn ing",
+ "▁Sw edish",
+ "▁z ast",
+ "▁za st",
+ "▁zas t",
+ "▁L ig",
+ "▁Li g",
+ "man agement",
+ "▁l od",
+ "▁lo d",
+ "uff le",
+ "Text ure",
+ "Te xture",
+ "ar ga",
+ "arg a",
+ "át um",
+ "▁D DR",
+ "ні ї",
+ "н ії",
+ "▁Soci été",
+ "▁dom ains",
+ "▁domain s",
+ "▁perm itted",
+ "▁permit ted",
+ "▁ex terne",
+ "▁ext erne",
+ "▁extern e",
+ "▁quel que",
+ "v t",
+ "ym an",
+ "y man",
+ "▁W ard",
+ "▁War d",
+ "▁Wa rd",
+ "▁ag li",
+ "▁ agli",
+ "▁and ra",
+ "▁an dra",
+ "▁ andra",
+ "S napshot",
+ "▁m å",
+ "▁ye ah",
+ "де на",
+ "ден а",
+ "д ена",
+ "ęp u",
+ "ę pu",
+ "ask ell",
+ "▁Ré publique",
+ "in ject",
+ "▁' ;",
+ "▁ ';",
+ "än n",
+ "ä nn",
+ "▁z elf",
+ "▁Ent wicklung",
+ "ár ia",
+ "á ria",
+ "on omy",
+ "ono my",
+ "onom y",
+ "▁s vil",
+ "▁sv il",
+ "ie se",
+ "ies e",
+ "i ese",
+ "▁con ser",
+ "▁cons er",
+ "▁conse r",
+ "▁n im",
+ "▁ni m",
+ "▁ nim",
+ "▁r ész",
+ "▁ré sz",
+ "▁rés z",
+ "▁И тали",
+ "▁part ici",
+ "▁partic i",
+ "▁parti ci",
+ "▁L ion",
+ "▁Li on",
+ "s r",
+ "al ways",
+ "▁Влади мир",
+ "че ские",
+ "[ ,",
+ "▁Def inition",
+ "▁ Definition",
+ "na nt",
+ "nan t",
+ "n ant",
+ "oe m",
+ "o em",
+ "Id s",
+ "I ds",
+ "▁в не",
+ "▁[ ...]",
+ "▁на прав",
+ "▁нап рав",
+ "▁G O",
+ "▁ GO",
+ "▁å rs",
+ "▁år s",
+ "▁ut án",
+ "▁out ros",
+ "▁reg ión",
+ "▁M ong",
+ "▁Mon g",
+ "▁Mo ng",
+ "▁fil me",
+ "▁film e",
+ "▁tri ple",
+ "▁trip le",
+ "▁sp ons",
+ "▁spo ns",
+ "De velop",
+ "▁out come",
+ "▁B ible",
+ "▁Bi ble",
+ "▁Bib le",
+ "▁и мени",
+ "▁име ни",
+ "▁имен и",
+ "Can vas",
+ "пу та",
+ "cur r",
+ "cu rr",
+ "c urr",
+ "ás ok",
+ "){ \\",
+ ") {\\",
+ "ning ar",
+ "` ;",
+ "▁Fl ash",
+ ": #",
+ "mu st",
+ "mus t",
+ "m ust",
+ "cp u",
+ "c pu",
+ "▁form ats",
+ "▁format s",
+ "▁forma ts",
+ "Ha r",
+ "H ar",
+ "▁epis odio",
+ "▁R osa",
+ "▁Ro sa",
+ "▁Ros a",
+ "▁d ès",
+ "em it",
+ "emi t",
+ "e mit",
+ "rit eria",
+ "rite ria",
+ "riter ia",
+ "An notation",
+ "Fl ag",
+ "F lag",
+ "g mail",
+ "▁N ormal",
+ "▁Nor mal",
+ "▁Norm al",
+ "▁ Normal",
+ "oll ary",
+ "ollar y",
+ "▁f oss",
+ "▁fo ss",
+ "▁fos s",
+ "▁con current",
+ "▁conc urrent",
+ "▁ concurrent",
+ "▁crash es",
+ "▁ви де",
+ "▁вид е",
+ "▁Min or",
+ "▁Mi nor",
+ "▁S it",
+ "▁Si t",
+ "▁S N",
+ "▁ SN",
+ "▁s car",
+ "▁sc ar",
+ "▁ scar",
+ "▁fe min",
+ "▁fem in",
+ "▁spec ification",
+ "▁specific ation",
+ "so ap",
+ "▁o perate",
+ "▁oper ate",
+ "▁opera te",
+ "▁principal mente",
+ "▁a ust",
+ "▁au st",
+ "▁aus t",
+ "ib ile",
+ "ibil e",
+ "it ime",
+ "iti me",
+ "i time",
+ "ле жа",
+ "if rame",
+ "i frame",
+ "▁concept s",
+ "▁conce pts",
+ "▁t ack",
+ "▁ta ck",
+ "▁v iss",
+ "▁vis s",
+ "▁vi ss",
+ "▁car bon",
+ "ter y",
+ "te ry",
+ "t ery",
+ "▁n aming",
+ "▁na ming",
+ "▁nam ing",
+ "▁Or ts",
+ "▁Ort s",
+ "id ente",
+ "ident e",
+ "iden te",
+ "▁Cap it",
+ "▁Ca pit",
+ "▁ex pr",
+ "▁exp r",
+ "▁ expr",
+ "▁насе љу",
+ "▁Select ed",
+ "▁Sel ected",
+ "▁Sele cted",
+ "▁ Selected",
+ "▁h inter",
+ "▁hint er",
+ "▁hin ter",
+ "▁i frame",
+ "▁if rame",
+ "▁ iframe",
+ "▁z b",
+ "index Path",
+ "col l",
+ "co ll",
+ "c oll",
+ "▁wr ześ",
+ "▁a cht",
+ "▁ac ht",
+ "▁ach t",
+ "▁ acht",
+ "▁grad ually",
+ "▁gradu ally",
+ "▁ч у",
+ "▁ чу",
+ "зе й",
+ "з ей",
+ "ha ft",
+ "h aft",
+ "▁t ran",
+ "▁tr an",
+ "▁tra n",
+ "▁la quelle",
+ "yt ics",
+ "ID E",
+ "I DE",
+ "▁py game",
+ "▁pyg ame",
+ "▁P ackage",
+ "▁Pack age",
+ "▁ Package",
+ "▁class Name",
+ "▁ className",
+ "B al",
+ "pe rl",
+ "per l",
+ "ти на",
+ "тин а",
+ "O cc",
+ "▁in frastr",
+ "▁Champion s",
+ "▁Champ ions",
+ "▁class ic",
+ "▁R aw",
+ "▁Ra w",
+ "▁ Raw",
+ "▁partial ly",
+ "▁parti ally",
+ "▁T ed",
+ "▁Te d",
+ "▁sto let",
+ "ra ined",
+ "rain ed",
+ "raine d",
+ "rai ned",
+ "r ained",
+ "WH ERE",
+ "W HERE",
+ "▁v all",
+ "▁val l",
+ "▁va ll",
+ "▁Jul ia",
+ "▁Ju lia",
+ "▁Juli a",
+ "za t",
+ "z at",
+ "▁surr ounded",
+ "SE E",
+ "S EE",
+ "▁walk ing",
+ "▁wal king",
+ "B ad",
+ "FO R",
+ "F OR",
+ "con tre",
+ "cont re",
+ "contr e",
+ "▁Pal est",
+ "▁Pale st",
+ "át ico",
+ "▁engine er",
+ "▁part ners",
+ "▁partner s",
+ "▁Je ws",
+ "▁Jew s",
+ "il ers",
+ "ile rs",
+ "iler s",
+ "i lers",
+ "▁c erem",
+ "▁ce rem",
+ "▁cer em",
+ "▁inter actions",
+ "▁interaction s",
+ "▁interact ions",
+ "ac u",
+ "a cu",
+ "st y",
+ "s ty",
+ "▁Prince ss",
+ "▁Prin cess",
+ "sh arp",
+ "sha rp",
+ "▁Sing les",
+ "▁Single s",
+ "▁ї х",
+ "ch ez",
+ "che z",
+ "c hez",
+ "Rece iver",
+ "Receive r",
+ "▁pat ients",
+ "▁patient s",
+ "string ify",
+ "▁compet ed",
+ "be y",
+ "b ey",
+ "$ ;",
+ "▁B d",
+ "had oop",
+ "h adoop",
+ "▁Div isión",
+ "öl d",
+ "ö ld",
+ "▁restrict ed",
+ "▁comm ander",
+ "▁command er",
+ "▁comma nder",
+ "▁High way",
+ "▁Č esk",
+ "▁m yth",
+ "▁my th",
+ "ча н",
+ "ч ан",
+ "ra ham",
+ "rah am",
+ "▁en qu",
+ "▁p og",
+ "▁po g",
+ "▁com una",
+ "▁comun a",
+ "▁print ln",
+ "▁ println",
+ "▁к руп",
+ "▁de pois",
+ "▁dep ois",
+ "▁se ats",
+ "▁sea ts",
+ "▁seat s",
+ "▁neigh b",
+ "ци она",
+ "цион а",
+ "ag ine",
+ "agi ne",
+ "agin e",
+ "▁cloth es",
+ "▁clo thes",
+ "▁P rior",
+ "▁Pr ior",
+ "▁Pri or",
+ "Br ain",
+ "Bra in",
+ "B rain",
+ "FF FF",
+ "': '",
+ "' :'",
+ "fe atures",
+ "feature s",
+ "▁file system",
+ "▁files ystem",
+ "▁sing les",
+ "▁single s",
+ "▁Mel bourne",
+ "▁dest ruction",
+ "▁destruct ion",
+ "▁destru ction",
+ "▁Ly on",
+ "▁In sel",
+ "▁Ins el",
+ "Na v",
+ "N av",
+ "▁Re place",
+ "▁Rep lace",
+ "▁ Replace",
+ "▁l é",
+ "▁ lé",
+ "Wh o",
+ "W ho",
+ "▁E stad",
+ "▁Est ad",
+ "▁Esta d",
+ "▁dim ensional",
+ "▁dimension al",
+ "▁ dimensional",
+ "▁ö ff",
+ "▁ öff",
+ "▁gr ands",
+ "▁gran ds",
+ "▁grand s",
+ "дж а",
+ "д жа",
+ "pl ane",
+ "plan e",
+ "pla ne",
+ "p lane",
+ "но сті",
+ "ност і",
+ "нос ті",
+ "▁Or igin",
+ "▁Ori gin",
+ "▁Orig in",
+ "▁ Origin",
+ "W I",
+ "än ner",
+ "änn er",
+ "▁C ry",
+ "▁Cr y",
+ "IT ION",
+ "▁fö dd",
+ "▁cult ura",
+ "▁R ank",
+ "▁Ran k",
+ "▁v uel",
+ "▁vue l",
+ "▁vu el",
+ "▁z ag",
+ "▁za g",
+ "▁Ma xim",
+ "▁Max im",
+ "он у",
+ "о ну",
+ "() ))",
+ "()) )",
+ "( )))",
+ "R aw",
+ "kir che",
+ "k irche",
+ "▁a demás",
+ "▁t ie",
+ "▁ti e",
+ "▁St yle",
+ "▁ Style",
+ "ско в",
+ "ск ов",
+ "с ков",
+ "ist ant",
+ "ista nt",
+ "istan t",
+ "ol ph",
+ "▁Z ür",
+ "▁In fo",
+ "▁Inf o",
+ "▁ Info",
+ "DO M",
+ "D OM",
+ "us c",
+ "u sc",
+ "na hm",
+ "nah m",
+ "▁Ф едера",
+ "▁F ot",
+ "▁Fo t",
+ "▁spec ifying",
+ "▁specify ing",
+ "▁tit olo",
+ "▁Bo ys",
+ "▁Boy s",
+ "ie ch",
+ "iec h",
+ "i ech",
+ "Pl ace",
+ "P lace",
+ "▁H off",
+ "▁Ho ff",
+ "▁Hof f",
+ "▁c ached",
+ "▁ca ched",
+ "▁cache d",
+ "ва ль",
+ "вал ь",
+ "в аль",
+ "is her",
+ "ish er",
+ "roll ing",
+ "rol ling",
+ "op ens",
+ "ope ns",
+ "open s",
+ "▁h r",
+ "▁ hr",
+ "-- ----",
+ "---- --",
+ "--- ---",
+ "----- -",
+ "- -----",
+ "▁mag gior",
+ "▁maggio r",
+ "▁trans actions",
+ "▁transaction s",
+ "▁c riminal",
+ "▁crim inal",
+ "▁re tre",
+ "▁ret re",
+ "▁retr e",
+ "▁Camp bell",
+ ")) :",
+ ") ):",
+ "▁n ed",
+ "▁ne d",
+ "▁ ned",
+ "Page r",
+ "Pa ger",
+ "P ager",
+ "▁H ero",
+ "▁He ro",
+ "▁Her o",
+ "(_ _",
+ "( __",
+ "▁un cle",
+ "▁re aches",
+ "▁reach es",
+ "ar to",
+ "art o",
+ "▁h ello",
+ "▁hel lo",
+ "▁hell o",
+ "▁ hello",
+ "Pre ferences",
+ "▁за тем",
+ "Name d",
+ "Na med",
+ "N amed",
+ "▁re aders",
+ "▁read ers",
+ "▁reader s",
+ "х і",
+ "ke rn",
+ "ker n",
+ "k ern",
+ "▁у по",
+ "ки н",
+ "к ин",
+ "▁l av",
+ "▁la v",
+ "▁ lav",
+ "▁n ob",
+ "▁no b",
+ "▁se cre",
+ "▁sec re",
+ "▁List View",
+ "▁ ListView",
+ "ва ния",
+ "▁May or",
+ "bo rough",
+ "bor ough",
+ "▁fil osof",
+ "не ння",
+ "нен ня",
+ "фр и",
+ "ф ри",
+ "▁p atr",
+ "▁pat r",
+ "▁pa tr",
+ "F M",
+ "▁a cid",
+ "▁ac id",
+ "▁Salv ador",
+ "▁a bb",
+ "▁ab b",
+ "▁ abb",
+ "▁G raham",
+ "▁Gra ham",
+ "pol icy",
+ "neg ative",
+ "ński ego",
+ "ń skiego",
+ "▁He imat",
+ "▁d azu",
+ "▁da zu",
+ "▁m ely",
+ "▁me ly",
+ "▁mel y",
+ "▁r ide",
+ "▁rid e",
+ "▁ri de",
+ "▁ ride",
+ "▁du ties",
+ "▁dut ies",
+ "ov ery",
+ "over y",
+ "ove ry",
+ "o very",
+ "▁Pro position",
+ "▁Prop osition",
+ "▁Pa olo",
+ "/ '",
+ "▁M au",
+ "▁Ma u",
+ "im enti",
+ "iment i",
+ "imen ti",
+ "Sa int",
+ "S aint",
+ "fa ther",
+ "f ather",
+ "▁equ ilib",
+ "ph ony",
+ "phon y",
+ "▁c las",
+ "▁cl as",
+ "▁cla s",
+ "▁от ли",
+ "▁Buffer ed",
+ "▁Buff ered",
+ "re k",
+ "r ek",
+ "▁m itt",
+ "▁mit t",
+ "▁mi tt",
+ "▁ mitt",
+ "▁H ur",
+ "▁Hu r",
+ "▁Har vard",
+ "▁demonstr ate",
+ "ua rio",
+ "u ario",
+ "▁do lor",
+ "▁dol or",
+ "▁reject ed",
+ "▁M üller",
+ "▁n ac",
+ "▁na c",
+ "▁B elle",
+ "▁Be lle",
+ "▁Bel le",
+ "▁Bell e",
+ "▁gather ed",
+ "n r",
+ "fr ika",
+ "fri ka",
+ "öl l",
+ "ö ll",
+ "▁chem ical",
+ "ni g",
+ "n ig",
+ "▁cal c",
+ "▁ calc",
+ "▁DE FAULT",
+ "▁ DEFAULT",
+ "▁philosoph y",
+ "▁Lar avel",
+ "▁al ignment",
+ "▁align ment",
+ "E V",
+ "e or",
+ "▁d zie",
+ "▁dz ie",
+ "▁ dzie",
+ "▁m est",
+ "▁me st",
+ "▁mes t",
+ "▁I o",
+ "CR E",
+ "C RE",
+ "з ви",
+ "▁M edic",
+ "▁Me dic",
+ "▁Med ic",
+ "▁Medi c",
+ "▁n ä",
+ "▁z ab",
+ "▁za b",
+ "▁S lov",
+ "▁Sl ov",
+ "▁Slo v",
+ "ut lich",
+ "▁am plit",
+ "▁ampl it",
+ "▁amp lit",
+ "▁Fran kreich",
+ "▁Frank reich",
+ "▁к іль",
+ "▁кі ль",
+ "IN D",
+ "I ND",
+ "exec ution",
+ "▁Kar riere",
+ "d ostęp",
+ "▁r éal",
+ "▁ré al",
+ "en go",
+ "eng o",
+ "▁se vere",
+ "▁sever e",
+ "зм а",
+ "з ма",
+ "▁тур ни",
+ "▁C arter",
+ "▁Car ter",
+ "▁Cart er",
+ "▁Rob inson",
+ "▁Robin son",
+ "getElement sBy",
+ "▁pro totype",
+ "▁proto type",
+ "▁ prototype",
+ "▁jap on",
+ "▁ja pon",
+ "führ ung",
+ "f ührung",
+ "▁con segu",
+ "▁cons egu",
+ "▁conse gu",
+ "▁st udi",
+ "▁stud i",
+ "▁l ire",
+ "▁li re",
+ "▁ lire",
+ "▁sch ließ",
+ "▁ schließ",
+ "▁B uff",
+ "▁Bu ff",
+ "▁red und",
+ "▁redu nd",
+ "▁e rn",
+ "▁er n",
+ "▁ ern",
+ "▁my ster",
+ "▁myst er",
+ "▁prop rio",
+ "▁propri o",
+ "ate ful",
+ "▁Par ent",
+ "▁Pa rent",
+ "▁ Parent",
+ "▁lad ies",
+ "ra ck",
+ "rac k",
+ "r ack",
+ "ти ка",
+ "тик а",
+ "en burg",
+ "▁каче стве",
+ "▁E F",
+ "▁ EF",
+ "▁st am",
+ "▁sta m",
+ "▁nue va",
+ "▁fil tered",
+ "▁filter ed",
+ "re ten",
+ "ret en",
+ "r eten",
+ "▁I an",
+ "▁Matt hew",
+ "▁Matth ew",
+ "ki h",
+ "k ih",
+ "▁ ő",
+ "▁ком пози",
+ "▁for ever",
+ "▁fore ver",
+ "oir es",
+ "oi res",
+ "oire s",
+ "o ires",
+ ":\\ \\",
+ ": \\\\",
+ "▁ét udes",
+ "▁s oup",
+ "▁so up",
+ "▁sou p",
+ "▁p leased",
+ "▁please d",
+ "▁ple ased",
+ ")} (",
+ ") }(",
+ "▁S top",
+ "▁St op",
+ "▁Sto p",
+ "▁ Stop",
+ "Set ter",
+ "S etter",
+ "▁He lp",
+ "▁Hel p",
+ "▁ Help",
+ "▁b ars",
+ "▁bar s",
+ "▁ba rs",
+ "▁ bars",
+ "▁ER R",
+ "▁ ERR",
+ "▁( ?",
+ "▁ (?",
+ "▁po etry",
+ "▁poet ry",
+ "▁U til",
+ "▁Ut il",
+ "▁ Util",
+ "A K",
+ "▁f ick",
+ "▁fi ck",
+ "▁fic k",
+ "▁I M",
+ "▁ IM",
+ "▁pro ud",
+ "▁pr oud",
+ "но си",
+ "нос и",
+ "▁m uerte",
+ "▁mu erte",
+ "▁Palmar ès",
+ "▁N as",
+ "▁Na s",
+ "щи х",
+ "щ их",
+ "▁qu er",
+ "▁que r",
+ "▁q uer",
+ "▁ quer",
+ "▁a penas",
+ "▁ap enas",
+ "][ '",
+ "] ['",
+ "▁Kon st",
+ "по н",
+ "п он",
+ "▁Sch iff",
+ "▁m p",
+ "▁ mp",
+ "▁б лаго",
+ "fr am",
+ "fra m",
+ "f ram",
+ "▁house hold",
+ "▁t ract",
+ "▁tr act",
+ "▁tra ct",
+ "▁trac t",
+ "enc oding",
+ "▁und ert",
+ "▁under t",
+ "▁ undert",
+ "▁A ug",
+ "▁Au g",
+ "ов ан",
+ "ова н",
+ "о ван",
+ "▁Ar ten",
+ "▁Art en",
+ "▁Arte n",
+ "▁inv oked",
+ "▁invoke d",
+ "▁d ynast",
+ "▁fle et",
+ "че ство",
+ "▁Mur ray",
+ "▁g ut",
+ "▁gu t",
+ "eli hood",
+ "▁S SH",
+ "▁SS H",
+ "от вет",
+ "▁person ally",
+ "▁personal ly",
+ "при я",
+ "п рия",
+ "▁fin anci",
+ "▁finan ci",
+ "▁Thom pson",
+ "al u",
+ "a lu",
+ "id entity",
+ "ident ity",
+ "▁G rab",
+ "▁Gr ab",
+ "▁Gra b",
+ "add le",
+ "É t",
+ "▁T ob",
+ "▁To b",
+ "▁ver lor",
+ "▁verl or",
+ "▁Saint e",
+ "▁Sa inte",
+ "▁Sain te",
+ "▁d op",
+ "▁do p",
+ "▁в ере",
+ "▁ве ре",
+ "▁вер е",
+ "__ _",
+ "_ __",
+ "▁prom otion",
+ "▁- =",
+ "▁от де",
+ "▁amb igu",
+ "▁ ambigu",
+ "OR DER",
+ "ORD ER",
+ "▁Comm unic",
+ "▁Commun ic",
+ "▁im ply",
+ "▁imp ly",
+ "▁impl y",
+ "on ed",
+ "one d",
+ "o ned",
+ "clud ing",
+ "▁coll ision",
+ "▁fragment s",
+ "▁frag ments",
+ "script ion",
+ "scri ption",
+ "s cription",
+ "▁' {",
+ "ля х",
+ "л ях",
+ "▁h ans",
+ "▁ha ns",
+ "▁han s",
+ "у с",
+ "wi re",
+ "w ire",
+ "name space",
+ "names pace",
+ "▁s word",
+ "▁sw ord",
+ "▁swo rd",
+ "ref resh",
+ "▁kw am",
+ "z s",
+ "comm ons",
+ "common s",
+ "▁c osa",
+ "▁co sa",
+ "▁cos a",
+ "▁reg ime",
+ "gr ep",
+ "gre p",
+ "g rep",
+ "▁di oc",
+ "▁dio c",
+ "▁Cont act",
+ "▁ Contact",
+ "▁est as",
+ "▁esta s",
+ "▁Ste wart",
+ "▁v iele",
+ "▁vi ele",
+ "▁vie le",
+ "▁viel e",
+ "то ва",
+ "тов а",
+ "т ова",
+ "▁R an",
+ "▁Ra n",
+ "an nes",
+ "ann es",
+ "anne s",
+ "id ay",
+ "ida y",
+ "i day",
+ "▁s napshot",
+ "▁snap shot",
+ "or row",
+ "orr ow",
+ "▁za č",
+ "▁участи е",
+ "▁prom ised",
+ "▁promise d",
+ "Ass embly",
+ "▁champion ship",
+ "▁champions hip",
+ "▁Def ine",
+ "▁e ren",
+ "▁er en",
+ "▁ere n",
+ "▁ eren",
+ "▁но во",
+ "▁н ово",
+ "▁нов о",
+ "▁ ново",
+ "▁th inks",
+ "▁think s",
+ "▁thin ks",
+ "Ag e",
+ "A ge",
+ "▁g ev",
+ "▁ge v",
+ "var char",
+ "v archar",
+ "iv ità",
+ "com pos",
+ "comp os",
+ "▁M utter",
+ "▁Mut ter",
+ "CO NT",
+ "CON T",
+ "arm ée",
+ "ag net",
+ "agn et",
+ "agne t",
+ "▁B row",
+ "▁Br ow",
+ "▁Bro w",
+ ". —",
+ "▁Tele vision",
+ "▁Д ля",
+ "▁v m",
+ "▁ vm",
+ "▁or din",
+ "▁ord in",
+ "▁ ordin",
+ "▁Миха й",
+ "▁apro xim",
+ "') ->",
+ "' )->",
+ "▁z oo",
+ "▁zo o",
+ "ip pi",
+ "ipp i",
+ "i ppi",
+ "▁s ino",
+ "▁si no",
+ "▁sin o",
+ "▁Qu ébec",
+ "ra ges",
+ "rag es",
+ "rage s",
+ "r ages",
+ "ä ck",
+ "ei ng",
+ "ein g",
+ "e ing",
+ "ar lo",
+ "pi os",
+ "pio s",
+ "p ios",
+ "▁C han",
+ "▁Ch an",
+ "▁Cha n",
+ "▁el li",
+ "▁ell i",
+ "▁ elli",
+ "▁in cons",
+ "▁inc ons",
+ "▁incon s",
+ "gest ellt",
+ "g estellt",
+ "pp ers",
+ "pper s",
+ "ppe rs",
+ "p pers",
+ "Je an",
+ "anst alt",
+ "▁D ance",
+ "▁Dan ce",
+ "▁to en",
+ "▁toe n",
+ "▁de cis",
+ "▁dec is",
+ "▁Ре зу",
+ "▁official ly",
+ "▁offici ally",
+ "ät ze",
+ "ätz e",
+ "▁до ро",
+ "▁e numer",
+ "▁en umer",
+ "▁enum er",
+ "▁trois ième",
+ "ty p",
+ "t yp",
+ "of fs",
+ "off s",
+ "бо ль",
+ "od n",
+ "o dn",
+ "▁Z ar",
+ "▁Za r",
+ "▁дру го",
+ "qu ia",
+ "qui a",
+ "▁Nicol as",
+ "▁Nic olas",
+ "▁Nicola s",
+ "пи су",
+ "пис у",
+ "▁m ob",
+ "▁mo b",
+ "pa ces",
+ "pace s",
+ "p aces",
+ "нь ого",
+ "ньо го",
+ "Al g",
+ "A lg",
+ "éro ï",
+ "Error s",
+ "Err ors",
+ "▁г ре",
+ "▁ гре",
+ "▁жен щи",
+ "in ch",
+ "inc h",
+ "▁Kore an",
+ "▁Korea n",
+ "▁A post",
+ "▁Ap ost",
+ "▁L iver",
+ "▁Li ver",
+ "▁Live r",
+ "▁Liv er",
+ "▁element ary",
+ "▁D I",
+ "▁ DI",
+ "ви си",
+ "▁so il",
+ "▁D LL",
+ "▁r isp",
+ "▁ris p",
+ "▁ri sp",
+ "▁Sh akespe",
+ "▁G aussian",
+ "▁K urt",
+ "▁Kur t",
+ "▁Ku rt",
+ "Ver tex",
+ "Vert ex",
+ "eb ol",
+ "e bol",
+ "organ isation",
+ "är en",
+ "äre n",
+ "ä ren",
+ "▁Y ES",
+ "▁ YES",
+ "C UR",
+ "▁нача ль",
+ "▁по стро",
+ "▁пос тро",
+ "▁Lu igi",
+ "▁c aching",
+ "prevent Default",
+ "am d",
+ "a md",
+ "▁V it",
+ "▁Vi t",
+ "sub st",
+ "su bst",
+ "▁ст рои",
+ "▁C ampion",
+ "▁Camp ion",
+ "ch r",
+ "c hr",
+ "фе ре",
+ "фер е",
+ "ф ере",
+ "▁С писок",
+ "N F",
+ "▁c ím",
+ "▁cí m",
+ "▁h é",
+ "▁ hé",
+ "re bbe",
+ "reb be",
+ "oc y",
+ "o cy",
+ "be low",
+ "bel ow",
+ "▁by lo",
+ "▁byl o",
+ "▁У и",
+ "▁\\ ({\\",
+ "▁\\( {\\",
+ "▁` :",
+ "▁ `:",
+ "gi ore",
+ "gio re",
+ "gior e",
+ "g iore",
+ "Sa n",
+ "S an",
+ "▁G ate",
+ "▁Ga te",
+ "▁в с",
+ "▁o limp",
+ "▁ol imp",
+ "▁Mat rix",
+ "▁ Matrix",
+ "▁he aring",
+ "▁hear ing",
+ "ri i",
+ "r ii",
+ "tf rac",
+ "t frac",
+ "▁allem and",
+ "▁V ue",
+ "л н",
+ "▁comp iling",
+ "▁E ns",
+ "▁En s",
+ "▁investig ation",
+ "▁A x",
+ "▁ch ars",
+ "▁char s",
+ "▁cha rs",
+ "▁target s",
+ "▁tar gets",
+ "▁l oud",
+ "▁lo ud",
+ "us ement",
+ "use ment",
+ "▁N ether",
+ "▁Ne ther",
+ "▁Net her",
+ "com merce",
+ "IG HT",
+ "oc oa",
+ "oco a",
+ "if ecycle",
+ "ife cycle",
+ "▁Le o",
+ "pr iv",
+ "p riv",
+ "▁go ods",
+ "▁good s",
+ "ad amente",
+ "ada mente",
+ "A ustral",
+ "▁re boot",
+ "▁reb oot",
+ "Ge st",
+ "G est",
+ "▁represent ations",
+ "▁representation s",
+ "ce u",
+ "c eu",
+ "▁do ctrine",
+ "ce rs",
+ "cer s",
+ "c ers",
+ "▁K rak",
+ "▁Kr ak",
+ "▁Kra k",
+ "▁adv oc",
+ "▁squad ra",
+ "▁arbeit ete",
+ "üs t",
+ "ü st",
+ "▁p ill",
+ "▁pi ll",
+ "▁pil l",
+ "An swer",
+ "▁к віт",
+ "▁W a",
+ "um ann",
+ "uman n",
+ "uma nn",
+ "u mann",
+ "▁D ynam",
+ "▁Dy nam",
+ "Fa mil",
+ "F amil",
+ "▁t ennis",
+ "▁ten nis",
+ "▁Engine ering",
+ "▁circ les",
+ "▁cir cles",
+ "▁circle s",
+ "▁Mary land",
+ "▁b esta",
+ "▁be sta",
+ "▁best a",
+ "▁bes ta",
+ "▁b ases",
+ "▁bas es",
+ "▁base s",
+ "▁znaj du",
+ "ктор а",
+ "кто ра",
+ "к тора",
+ "▁ar rest",
+ "▁arr est",
+ "ле р",
+ "л ер",
+ "▁G ia",
+ "▁Gi a",
+ "▁remark able",
+ "▁мо гу",
+ "▁Sup reme",
+ "▁` %",
+ "do r",
+ "d or",
+ "▁au jourd",
+ "▁w is",
+ "WID TH",
+ "▁mis ma",
+ "▁mism a",
+ "▁fl uid",
+ "▁flu id",
+ "▁pet ite",
+ "▁petit e",
+ "▁T ow",
+ "▁To w",
+ "Reg istry",
+ "em ed",
+ "eme d",
+ "e med",
+ "▁Wis consin",
+ "▁R acing",
+ "▁Ra cing",
+ "▁reg istration",
+ "▁registr ation",
+ "/ %",
+ "th ird",
+ "▁mon uments",
+ "▁monument s",
+ "че й",
+ "ч ей",
+ "▁j et",
+ "▁je t",
+ "▁ jet",
+ "▁Ur ban",
+ "ál va",
+ "▁mil ieu",
+ "▁poss ess",
+ "▁g erm",
+ "▁ge rm",
+ "▁ger m",
+ "dep endencies",
+ "▁enem ies",
+ "▁s amen",
+ "▁sa men",
+ "▁same n",
+ "▁sam en",
+ "▁W erner",
+ "▁Wer ner",
+ "▁h izo",
+ "▁hi zo",
+ "▁t d",
+ "▁ td",
+ "▁y esterday",
+ "▁А д",
+ "▁ha sn",
+ "▁has n",
+ "cel lation",
+ "cell ation",
+ "ov ání",
+ "ová ní",
+ "li ka",
+ "lik a",
+ "l ika",
+ "We ek",
+ "▁I ng",
+ "▁In g",
+ "▁E mail",
+ "▁Em ail",
+ "▁ Email",
+ "▁m ètres",
+ "▁O CLC",
+ "▁among st",
+ "▁spl end",
+ "fu r",
+ "f ur",
+ "ant ics",
+ "anti cs",
+ "antic s",
+ "▁X XX",
+ "▁XX X",
+ "▁ XXX",
+ "▁груп пы",
+ "la ch",
+ "lac h",
+ "l ach",
+ "▁c ousin",
+ "▁cou sin",
+ "▁in variant",
+ "▁invari ant",
+ "ђ у",
+ "▁Be ispiel",
+ "▁Bei spiel",
+ "▁hard er",
+ "▁har der",
+ "▁b ell",
+ "▁be ll",
+ "▁bel l",
+ "▁ bell",
+ "▁or ch",
+ "▁ orch",
+ "t b",
+ "Foot note",
+ "re gon",
+ "reg on",
+ "Mart in",
+ "▁in con",
+ "▁inc on",
+ "▁attack ed",
+ "_{ -",
+ "_ {-",
+ "▁T ras",
+ "▁Tr as",
+ "▁Tra s",
+ "par ty",
+ "part y",
+ "ite it",
+ "▁s aint",
+ "▁sa int",
+ "▁sain t",
+ "rás ok",
+ "r ások",
+ "▁contain ers",
+ "▁container s",
+ "M o",
+ "▁S n",
+ "quant ity",
+ "▁r as",
+ "▁ra s",
+ "▁ ras",
+ "▁C anal",
+ "▁Can al",
+ "▁Ca nal",
+ "cc ion",
+ "c cion",
+ "uv o",
+ "u vo",
+ "▁i dx",
+ "▁id x",
+ "▁ idx",
+ "type name",
+ "typen ame",
+ "typ ename",
+ "▁R ugby",
+ "▁Se ems",
+ "▁See ms",
+ "▁trans mit",
+ "▁transm it",
+ "▁Pr äsident",
+ "з не",
+ "▁B aker",
+ "▁Ba ker",
+ "▁Bak er",
+ "in th",
+ "int h",
+ "i nth",
+ "▁tö bb",
+ "ver ein",
+ "vere in",
+ "▁espe cie",
+ "▁espec ie",
+ ", (",
+ "▁t éc",
+ "▁té c",
+ "▁W ITH",
+ "▁u nos",
+ "▁un os",
+ "▁uno s",
+ "▁ unos",
+ "▁polit ics",
+ "create Element",
+ "▁st ats",
+ "▁stat s",
+ "▁sta ts",
+ "▁ stats",
+ "▁T ennessee",
+ "▁Bedeut ung",
+ "▁S creen",
+ "▁Sc reen",
+ "▁ Screen",
+ "▁Stra ße",
+ "an ze",
+ "anz e",
+ "▁part ly",
+ "man uel",
+ "ol ation",
+ "ola tion",
+ "o lation",
+ "hor izontal",
+ "érie ure",
+ "érieur e",
+ "am pio",
+ "amp io",
+ "▁ст рук",
+ "▁ струк",
+ "We ight",
+ "La nd",
+ "L and",
+ "po ly",
+ "pol y",
+ "p oly",
+ "▁D ak",
+ "▁Da k",
+ "▁Ass ume",
+ "\". $",
+ "\" .$",
+ "▁c asi",
+ "▁cas i",
+ "▁ca si",
+ "▁g ross",
+ "▁gr oss",
+ "▁gro ss",
+ "▁gros s",
+ "▁ent ertain",
+ "▁enter tain",
+ "▁déc ada",
+ "'. $",
+ "' .$",
+ "en cer",
+ "ence r",
+ "enc er",
+ "▁guarante ed",
+ "▁guarantee d",
+ "]$ .",
+ "] $.",
+ "ли ся",
+ "▁accept able",
+ "ra ise",
+ "rai se",
+ "rais e",
+ "ir us",
+ "i rus",
+ "we it",
+ "wei t",
+ "▁А на",
+ "▁Ан а",
+ "▁h ills",
+ "▁hill s",
+ "ip age",
+ "i page",
+ "BI T",
+ "B IT",
+ "▁nu cle",
+ "▁nuc le",
+ "▁ut ilis",
+ "▁util is",
+ "CA A",
+ "C AA",
+ "ène s",
+ "èn es",
+ "è nes",
+ "▁Schwe iz",
+ "▁A A",
+ "▁ AA",
+ "ning er",
+ "n inger",
+ "▁b ands",
+ "▁band s",
+ "▁ban ds",
+ "▁t ender",
+ "▁te nder",
+ "▁ten der",
+ "▁tend er",
+ "so m",
+ "s om",
+ "W arning",
+ "▁B ischof",
+ "▁A rc",
+ "▁Ar c",
+ "▁W oman",
+ "▁Wo man",
+ "▁trans mission",
+ "▁transm ission",
+ "ч ни",
+ "is tre",
+ "ist re",
+ "istr e",
+ "i stre",
+ "B Y",
+ "▁S I",
+ "▁ SI",
+ "▁П ар",
+ "▁Па р",
+ "▁} ).",
+ "▁}) .",
+ "▁ }).",
+ "▁present a",
+ "▁pres enta",
+ "▁Re né",
+ "▁Ren é",
+ "▁happ iness",
+ "▁P unk",
+ "col s",
+ "co ls",
+ "c ols",
+ "▁Des de",
+ "рё х",
+ "▁м она",
+ "▁мо на",
+ "▁scr atch",
+ "▁t cp",
+ "▁ tcp",
+ "ête s",
+ "êt es",
+ "ê tes",
+ "it ated",
+ "ita ted",
+ "itat ed",
+ "itate d",
+ "▁dif eren",
+ "▁difer en",
+ "ge h",
+ "g eh",
+ "na hmen",
+ "nah men",
+ "nahme n",
+ "nahm en",
+ "П е",
+ "ck i",
+ "c ki",
+ "▁Te atro",
+ "▁Re member",
+ "▁Rem ember",
+ "▁f right",
+ "▁fr ight",
+ "▁Y am",
+ "▁Ya m",
+ "west ern",
+ "le ted",
+ "let ed",
+ "lete d",
+ "▁в стре",
+ "▁вс тре",
+ "▁telep ülés",
+ "зи н",
+ "з ин",
+ "▁Qu ant",
+ "▁ Quant",
+ "▁su pre",
+ "▁sup re",
+ "áj a",
+ "á ja",
+ "ді я",
+ "д ія",
+ "▁car rera",
+ "▁carre ra",
+ "kre t",
+ "kr et",
+ "k ret",
+ "par a",
+ "pa ra",
+ "p ara",
+ "▁S UM",
+ "▁SU M",
+ "▁ SUM",
+ "▁p it",
+ "▁pi t",
+ "▁ pit",
+ "ź dz",
+ "é o",
+ "ре ння",
+ "рен ня",
+ "▁C hor",
+ "▁Ch or",
+ "▁Cho r",
+ "▁vo ix",
+ "▁exec utive",
+ "▁execut ive",
+ "▁all erdings",
+ "May be",
+ "▁д ень",
+ "▁де нь",
+ "▁f lying",
+ "▁fl ying",
+ "▁fly ing",
+ "▁par liament",
+ "жда н",
+ "ж дан",
+ "▁f ram",
+ "▁fr am",
+ "▁fra m",
+ "▁ fram",
+ "▁жов т",
+ "▁u gly",
+ "▁бу ду",
+ "ig ny",
+ "ign y",
+ "\\| _{",
+ "\\ |_{",
+ "▁b itter",
+ "▁bit ter",
+ "sc e",
+ "s ce",
+ "▁p ole",
+ "▁po le",
+ "▁pol e",
+ "▁ pole",
+ "Ver lag",
+ "▁total ité",
+ "▁found ation",
+ "j t",
+ "▁s lice",
+ "▁sl ice",
+ "▁sli ce",
+ "▁ slice",
+ "if ique",
+ "ifi que",
+ "▁integr ate",
+ "▁integra te",
+ "st rij",
+ "str ij",
+ "▁asym pt",
+ "▁е му",
+ "▁pert urb",
+ "▁F low",
+ "▁Fl ow",
+ "▁Flo w",
+ "▁ Flow",
+ "jb oss",
+ "RI G",
+ "R IG",
+ "▁A less",
+ "▁Al ess",
+ "▁Ale ss",
+ "XX X",
+ "X XX",
+ "▁s umm",
+ "▁su mm",
+ "▁sum m",
+ "sql ite",
+ "▁che er",
+ "pr ob",
+ "pro b",
+ "p rob",
+ "▁G PU",
+ "▁GP U",
+ "zi ł",
+ "z ił",
+ "(* )",
+ "( *)",
+ "▁in duct",
+ "▁ind uct",
+ "▁indu ct",
+ "RA Y",
+ "bl att",
+ "bla tt",
+ "qu esta",
+ "que sta",
+ "quest a",
+ "ques ta",
+ "or u",
+ "o ru",
+ "▁In side",
+ "▁Ins ide",
+ "▁Mc G",
+ "▁N ep",
+ "▁Ne p",
+ "м п",
+ "▁in ve",
+ "▁inv e",
+ "▁An imal",
+ "▁Anim al",
+ "▁s ob",
+ "▁so b",
+ "▁ sob",
+ "ít ott",
+ "loy ment",
+ "▁b und",
+ "▁bu nd",
+ "▁ bund",
+ "St ation",
+ "Stat ion",
+ "▁B EGIN",
+ "▁part iellement",
+ "ig g",
+ "i gg",
+ "est ore",
+ "esto re",
+ "e store",
+ "▁co inc",
+ "▁coin c",
+ "▁Som mer",
+ "▁m d",
+ "▁ md",
+ "▁loc ked",
+ "▁lock ed",
+ "▁ locked",
+ "math char",
+ "ar ma",
+ "arm a",
+ "pe nt",
+ "pen t",
+ "p ent",
+ "ar ium",
+ "ari um",
+ "a rium",
+ "▁e ars",
+ "▁ear s",
+ "▁ ears",
+ "▁S ongs",
+ "▁Son gs",
+ "▁Song s",
+ "▁similar ly",
+ "▁liter ally",
+ "▁literal ly",
+ "▁in ches",
+ "▁inc hes",
+ "▁af fection",
+ "▁aff ection",
+ "▁affect ion",
+ "l p",
+ "▁con cluded",
+ "▁conclude d",
+ "▁му ніципалі",
+ "▁па мя",
+ "est aur",
+ "esta ur",
+ "▁J osh",
+ "▁Jo sh",
+ "▁Jos h",
+ "▁F ritz",
+ "▁Fr itz",
+ "▁Fri tz",
+ "DB C",
+ "D BC",
+ "д ён",
+ "pos a",
+ "po sa",
+ "p osa",
+ "▁gold en",
+ "▁gol den",
+ "▁p c",
+ "▁ pc",
+ "▁com te",
+ "▁Z iel",
+ "▁Zie l",
+ "▁prés ente",
+ "▁présent e",
+ "mar ks",
+ "mark s",
+ "m arks",
+ "ig neur",
+ "ign eur",
+ "igne ur",
+ "▁D rive",
+ "▁Dr ive",
+ "▁neg lect",
+ "▁roz p",
+ "▁F ive",
+ "sp aces",
+ "space s",
+ "s paces",
+ "▁M edi",
+ "▁Me di",
+ "▁Med i",
+ "▁ex isted",
+ "▁exist ed",
+ "▁existe d",
+ "▁by ła",
+ "▁był a",
+ "дж и",
+ "д жи",
+ "▁fr ente",
+ "т ник",
+ "od d",
+ "o dd",
+ "▁answer ing",
+ "bi an",
+ "bia n",
+ "b ian",
+ "▁E ugen",
+ "▁Eu gen",
+ "▁Eug en",
+ "▁Public ations",
+ "▁Pub lications",
+ "▁D ia",
+ "▁Di a",
+ "l á",
+ "▁' _",
+ "▁ '_",
+ "▁rec uper",
+ "ом у",
+ "о му",
+ "▁App end",
+ "▁Ap pend",
+ "▁ Append",
+ "ob ar",
+ "oba r",
+ "o bar",
+ "▁employ ees",
+ "▁employee s",
+ "▁comp ens",
+ "eme tery",
+ "emet ery",
+ "▁э лект",
+ "MO N",
+ "M ON",
+ "ol in",
+ "oli n",
+ "o lin",
+ "▁histor ic",
+ "hi s",
+ "h is",
+ "ą d",
+ "n m",
+ "▁G oth",
+ "▁Go th",
+ "▁Got h",
+ "▁st ress",
+ "▁str ess",
+ "▁stre ss",
+ "▁parte cip",
+ "▁A w",
+ "▁s ar",
+ "▁sa r",
+ "▁h u",
+ "▁ hu",
+ "▁mat plotlib",
+ "▁M yst",
+ "▁My st",
+ "▁Mys t",
+ "() ;`",
+ "(); `",
+ "( );`",
+ "sch ein",
+ "sc hein",
+ "sche in",
+ "Long rightarrow",
+ "▁р я",
+ "▁ ря",
+ "▁Is ra",
+ "[ ^",
+ "no u",
+ "n ou",
+ "▁syn d",
+ "▁sy nd",
+ "work ing",
+ "wor king",
+ "▁N ation",
+ "▁Na tion",
+ "▁Nat ion",
+ "▁P ent",
+ "▁Pe nt",
+ "▁Pen t",
+ "▁k lass",
+ "▁kl ass",
+ "▁klas s",
+ "▁applic able",
+ "▁D iam",
+ "▁Di am",
+ "▁Dia m",
+ "▁bras ile",
+ "▁p ac",
+ "▁pa c",
+ "▁He ight",
+ "▁ Height",
+ "P ut",
+ "▁int ro",
+ "▁intr o",
+ "▁ intro",
+ "▁unus ual",
+ "na s",
+ "n as",
+ "▁Geb äude",
+ "▁be am",
+ "▁R ect",
+ "▁Re ct",
+ "▁Rec t",
+ "▁ Rect",
+ "▁Prim era",
+ "▁Prime ra",
+ "▁h aut",
+ "▁ha ut",
+ "▁t rait",
+ "▁tr ait",
+ "▁tra it",
+ "prü ft",
+ "in ación",
+ "ina ción",
+ "▁configuration s",
+ "▁configur ations",
+ "▁g ilt",
+ "▁gi lt",
+ "▁territ oire",
+ "he z",
+ "h ez",
+ "▁al te",
+ "▁alt e",
+ "rel ative",
+ "Ex cel",
+ "▁W right",
+ "G V",
+ "по ли",
+ "пол и",
+ "Qu ant",
+ "▁ga uge",
+ "▁gau ge",
+ "▁multi ply",
+ "▁multip ly",
+ "AS S",
+ "A SS",
+ "ствен но",
+ "ан у",
+ "а ну",
+ "▁j eden",
+ "▁je den",
+ "▁jed en",
+ "▁liter ary",
+ "▁D ro",
+ "▁Dr o",
+ "▁adv ise",
+ "▁advis e",
+ "it zen",
+ "itz en",
+ "▁dis ag",
+ "web site",
+ "▁д ія",
+ "▁ді я",
+ "▁ дія",
+ "▁ob server",
+ "▁obser ver",
+ "▁observ er",
+ "▁observe r",
+ "▁janu ár",
+ "v ě",
+ "ku p",
+ "k up",
+ "▁S es",
+ "▁Se s",
+ "▁woj ew",
+ "▁st ages",
+ "▁stage s",
+ "▁sta ges",
+ "▁stag es",
+ "▁вре мени",
+ "▁време ни",
+ "łu ż",
+ "но с",
+ "н ос",
+ "Down load",
+ "ip o",
+ "i po",
+ "▁g raf",
+ "▁gr af",
+ "▁gra f",
+ "▁ро бо",
+ "▁Nik ol",
+ "▁Ni kol",
+ "▁f ic",
+ "▁fi c",
+ "▁ fic",
+ "▁jo ining",
+ "▁join ing",
+ "▁divers os",
+ "▁LI KE",
+ "▁F itz",
+ "▁d imin",
+ "▁di min",
+ "▁dim in",
+ "▁dist rib",
+ "Sa m",
+ "S am",
+ "ko z",
+ "k oz",
+ "▁al phabet",
+ "▁alpha bet",
+ "os er",
+ "ose r",
+ "o ser",
+ "OU R",
+ "O UR",
+ "uk a",
+ "u ka",
+ "ка я",
+ "▁ste el",
+ "▁` --",
+ "▁`- -",
+ "▁t ener",
+ "▁te ner",
+ "▁ten er",
+ "mar ker",
+ "mark er",
+ "▁He aven",
+ "new command",
+ "▁prison ers",
+ "▁prisoner s",
+ "▁K night",
+ "▁Kn ight",
+ "▁present s",
+ "▁pres ents",
+ "▁qu esti",
+ "▁quest i",
+ "▁tr ains",
+ "▁tra ins",
+ "▁train s",
+ "op era",
+ "ope ra",
+ "oper a",
+ "▁Li near",
+ "▁Lin ear",
+ "▁Line ar",
+ "▁ Linear",
+ "▁M E",
+ "▁ ME",
+ "▁B uc",
+ "▁Bu c",
+ "Le g",
+ "L eg",
+ "▁ag ua",
+ "▁ agua",
+ "▁Gr iff",
+ "ol g",
+ "o lg",
+ "ds t",
+ "d st",
+ ". \r",
+ "▁person es",
+ "▁pers ones",
+ "▁persone s",
+ "Ma l",
+ "M al",
+ "бе ре",
+ "бер е",
+ "б ере",
+ "fol ge",
+ "folg e",
+ "▁ac ab",
+ "ct u",
+ "c tu",
+ "pt ic",
+ "▁N avigation",
+ "▁ Navigation",
+ "R uss",
+ "га ль",
+ "г аль",
+ "▁F ul",
+ "▁Fu l",
+ "▁ма є",
+ "чна я",
+ "ч ная",
+ "wn er",
+ "w ner",
+ "con tra",
+ "cont ra",
+ "contr a",
+ "▁jou eur",
+ "▁joue ur",
+ "▁J ess",
+ "▁Je ss",
+ "▁Jes s",
+ "▁re new",
+ "▁ren ew",
+ "▁l ap",
+ "▁la p",
+ "▁ lap",
+ "▁cas ting",
+ "▁cast ing",
+ "ga l",
+ "g al",
+ "▁tém atu",
+ "▁на зыва",
+ "за х",
+ "ч не",
+ ")- \\",
+ ") -\\",
+ "▁ча сто",
+ "▁час то",
+ "▁част о",
+ "}$ -",
+ "} $-",
+ "▁l icz",
+ "▁li cz",
+ "▁lic z",
+ "▁e mot",
+ "▁em ot",
+ "ha rm",
+ "har m",
+ "h arm",
+ "▁occasion ally",
+ "▁hor ror",
+ "▁ho rror",
+ "ea st",
+ "e ast",
+ "▁pr inter",
+ "▁print er",
+ "▁prin ter",
+ "ar an",
+ "ara n",
+ "a ran",
+ "▁Miss iss",
+ "fol low",
+ "f ollow",
+ "▁Bar ry",
+ "▁investig ate",
+ "go w",
+ "g ow",
+ "▁Amer icans",
+ "▁American s",
+ "▁America ns",
+ "S ince",
+ "▁від о",
+ "▁ві до",
+ "▁re un",
+ "os ci",
+ "osc i",
+ "o sci",
+ "▁Ch apter",
+ "▁Chap ter",
+ "▁b ay",
+ "▁ba y",
+ "▁ bay",
+ "ро ме",
+ "ром е",
+ "et he",
+ "eth e",
+ "e the",
+ "éd ie",
+ "é die",
+ "com ot",
+ "co mot",
+ "como t",
+ "▁miejs cowo",
+ "▁stud ierte",
+ "▁studi erte",
+ "ou vert",
+ "ouv ert",
+ "ouve rt",
+ "ouver t",
+ "▁к ур",
+ "▁ку р",
+ "▁ кур",
+ "▁DE SC",
+ "▁DES C",
+ "▁touch ed",
+ "▁tou ched",
+ "▁Jer ry",
+ "ue se",
+ "ues e",
+ "u ese",
+ "ли ще",
+ "auth entication",
+ "authentic ation",
+ "▁col le",
+ "▁co lle",
+ "▁coll e",
+ "he art",
+ "▁reg iment",
+ "▁regime nt",
+ "cri bed",
+ "cribe d",
+ "▁Бо ль",
+ "▁про ис",
+ "ce ae",
+ "▁mass es",
+ "▁sc rolling",
+ "▁scroll ing",
+ "us to",
+ "ust o",
+ "u sto",
+ "S W",
+ "ov at",
+ "ova t",
+ "o vat",
+ "▁gr âce",
+ "▁Архи в",
+ "▁Се вер",
+ "av ait",
+ "ava it",
+ "▁Marsh all",
+ "▁Mars hall",
+ "▁Hash Map",
+ "▁ HashMap",
+ "ac on",
+ "aco n",
+ "a con",
+ "ück en",
+ "ücke n",
+ "ü cken",
+ "[] )",
+ "[ ])",
+ "▁ev angel",
+ "et zung",
+ "etz ung",
+ "tt emberg",
+ "st ers",
+ "ste rs",
+ "ster s",
+ "s ters",
+ "T M",
+ "▁ли тера",
+ "qu ot",
+ "Pr ed",
+ "Pre d",
+ "P red",
+ "▁w erk",
+ "▁wer k",
+ "▁ werk",
+ "▁ha ber",
+ "▁hab er",
+ "▁habe r",
+ "la va",
+ "lav a",
+ "l ava",
+ "vo us",
+ "v ous",
+ "▁L ate",
+ "▁La te",
+ "▁Lat e",
+ "cy cle",
+ "cyc le",
+ "c ycle",
+ "ти рова",
+ "▁про ду",
+ "▁прод у",
+ "▁pop ulations",
+ "▁population s",
+ "▁popul ations",
+ "▁Y an",
+ "▁Ya n",
+ "Pre fix",
+ "P refix",
+ "actér istiques",
+ "+ '",
+ "() `](",
+ "()` ](",
+ "▁Л ь",
+ "фи ль",
+ "▁жи зни",
+ "ft p",
+ "f tp",
+ "▁все х",
+ "▁g dzie",
+ "▁v idea",
+ "▁vid ea",
+ "▁vide a",
+ "oa uth",
+ "o auth",
+ "▁p id",
+ "▁pi d",
+ "▁ pid",
+ "ů m",
+ "▁p esso",
+ "▁pes so",
+ "▁track ing",
+ "▁trac king",
+ "iz in",
+ "izi n",
+ "i zin",
+ "▁Mor ris",
+ "щи й",
+ "▁Provin z",
+ "▁M itte",
+ "▁Mit te",
+ "▁Mi tte",
+ "▁Mitt e",
+ "▁artific ial",
+ "bráz ky",
+ "▁до сти",
+ "▁rest ored",
+ "▁restore d",
+ "▁resto red",
+ "▁commun icate",
+ "▁communic ate",
+ "ag it",
+ "agi t",
+ "a git",
+ "Rec ogn",
+ "▁l on",
+ "▁lo n",
+ "▁ lon",
+ "▁за ня",
+ "▁зан я",
+ "▁Arg ument",
+ "▁ Argument",
+ "fl ush",
+ "flu sh",
+ "ма на",
+ "ман а",
+ "м ана",
+ "sec onds",
+ "second s",
+ "U C",
+ "▁R uth",
+ "▁Ru th",
+ "▁t ub",
+ "▁tu b",
+ "▁B ret",
+ "▁Br et",
+ "▁Bre t",
+ "▁P ere",
+ "▁Per e",
+ "▁Pe re",
+ "▁respons ibility",
+ "ńcz y",
+ "ń czy",
+ "▁environment s",
+ "▁environ ments",
+ "ke e",
+ "k ee",
+ "▁g root",
+ "▁gr oot",
+ "▁gro ot",
+ "▁pain ted",
+ "▁paint ed",
+ "▁Éd itions",
+ "cp y",
+ "c py",
+ "ár t",
+ "á rt",
+ "lich keit",
+ "ar da",
+ "ard a",
+ "B atch",
+ "▁Leop old",
+ "re ason",
+ "rea son",
+ "reas on",
+ "n oreferrer",
+ "se ns",
+ "sen s",
+ "s ens",
+ "▁ro cks",
+ "▁rock s",
+ "▁Hit ler",
+ "ла т",
+ "л ат",
+ "▁qu oted",
+ "▁quot ed",
+ "▁quote d",
+ "▁ко лле",
+ "▁у ров",
+ "ba g",
+ "b ag",
+ ".\" )",
+ ". \")",
+ "▁M L",
+ "▁ ML",
+ "▁kom t",
+ "▁ko mt",
+ "▁[ _",
+ "▁ [_",
+ "▁spect ral",
+ "ed o",
+ "e do",
+ "▁in sieme",
+ "▁suffer ing",
+ "▁suff ering",
+ "sl ider",
+ "slide r",
+ "▁Kenn edy",
+ "ol ate",
+ "ola te",
+ "o late",
+ "▁P atri",
+ "▁Pa tri",
+ "▁Pat ri",
+ "зи и",
+ "O H",
+ "▁те а",
+ "▁пра ва",
+ "▁прав а",
+ "ма х",
+ "re write",
+ "rew rite",
+ "r ewrite",
+ "▁Eins atz",
+ "ex ternal",
+ "ext ernal",
+ "hol ds",
+ "hold s",
+ "h olds",
+ "▁P laces",
+ "▁Pl aces",
+ "▁Pla ces",
+ "▁Place s",
+ "at ype",
+ "aty pe",
+ "a type",
+ "▁vul ner",
+ "▁abandon ed",
+ "Or igin",
+ "Ori gin",
+ "▁max imal",
+ "▁maxim al",
+ "AA AA",
+ "▁Base ball",
+ "▁C lose",
+ "▁Cl ose",
+ "▁Clo se",
+ "▁ Close",
+ "▁pa inter",
+ "▁pain ter",
+ "▁paint er",
+ "▁assign ing",
+ "N B",
+ "bl ast",
+ "bla st",
+ "b last",
+ "▁K ünstler",
+ ")] (",
+ ") ](",
+ "fa ch",
+ "fac h",
+ "f ach",
+ "▁Const antin",
+ "▁Constant in",
+ "ok es",
+ "oke s",
+ "o kes",
+ "▁no body",
+ "▁nob ody",
+ "▁subt ract",
+ "▁fos se",
+ "▁foss e",
+ "▁cert ific",
+ "▁m use",
+ "▁mus e",
+ "▁mu se",
+ "/) ,",
+ "/ ),",
+ "▁Pro fil",
+ "▁Prof il",
+ "▁pro xim",
+ "▁Jer usalem",
+ "▁simp licity",
+ "▁simpl icity",
+ "▁w sz",
+ "▁ws z",
+ "NUM BER",
+ "utt avia",
+ "U ITableView",
+ "ich ter",
+ "icht er",
+ "ichte r",
+ "i chter",
+ "жа н",
+ "ж ан",
+ "▁L av",
+ "▁La v",
+ "it chen",
+ "itch en",
+ "▁Ч ем",
+ "▁Че м",
+ "T u",
+ "▁ge om",
+ "▁zv uky",
+ "▁Sur vey",
+ "AN CE",
+ "▁enc rypted",
+ "▁encrypt ed",
+ "pr of",
+ "pro f",
+ "▁d are",
+ "▁da re",
+ "▁dar e",
+ "▁L oren",
+ "▁Lo ren",
+ "▁Lor en",
+ "т в",
+ "▁А лек",
+ "▁Ал ек",
+ "▁comput ers",
+ "▁computer s",
+ "▁compute rs",
+ "▁expect ation",
+ "▁substant ial",
+ "▁Д ми",
+ "▁` {",
+ "▁д ра",
+ "▁др а",
+ "▁ дра",
+ "ub ble",
+ "▁per forms",
+ "▁perform s",
+ "▁Kr ieg",
+ "▁Krie g",
+ "▁in coming",
+ "▁inc oming",
+ "▁Class ification",
+ "Web View",
+ "▁epis odes",
+ "▁episode s",
+ "ap per",
+ "app er",
+ "appe r",
+ "a pper",
+ "äu fig",
+ "▁gi ov",
+ "▁De part",
+ "▁Dep art",
+ "бо ра",
+ "бор а",
+ "ed ly",
+ "os pod",
+ "osp od",
+ "▁p tr",
+ "▁pt r",
+ "▁ ptr",
+ "▁d átum",
+ "▁est imation",
+ "▁estim ation",
+ "ic ole",
+ "ico le",
+ "icol e",
+ "i cole",
+ "▁- ---",
+ "▁-- --",
+ "▁--- -",
+ "▁ ----",
+ "▁prin ces",
+ "▁prince s",
+ "HE AD",
+ "▁diff usion",
+ "▁diffus ion",
+ "▁d rie",
+ "▁dr ie",
+ "▁dri e",
+ "▁A da",
+ "▁Ad a",
+ "ни це",
+ "ниц е",
+ "ng inx",
+ "n ginx",
+ "sh al",
+ "sha l",
+ "s hal",
+ "▁febru ari",
+ "▁T at",
+ "▁Ta t",
+ "lo oking",
+ "look ing",
+ "ku nd",
+ "k und",
+ "▁De an",
+ "m ongodb",
+ "вши х",
+ "в ших",
+ "▁A ur",
+ "▁Au r",
+ "▁Fl ora",
+ "▁Flor a",
+ "▁Flo ra",
+ "▁Stud ios",
+ "▁Studio s",
+ "ци је",
+ "ei l",
+ "e il",
+ "Inst all",
+ "▁f ranch",
+ "▁fr anch",
+ "▁fran ch",
+ "▁franc h",
+ "▁H MS",
+ "▁pract ices",
+ "▁practice s",
+ "le j",
+ "l ej",
+ "da le",
+ "dal e",
+ "d ale",
+ "▁po ste",
+ "▁pos te",
+ "▁post e",
+ "▁H els",
+ "▁He ls",
+ "▁Hel s",
+ "▁reli able",
+ "źdz ier",
+ "▁ver se",
+ "▁vers e",
+ "▁ verse",
+ "er meister",
+ "erme ister",
+ "▁qu it",
+ "▁qui t",
+ "▁q uit",
+ "▁ quit",
+ "ét ico",
+ "il is",
+ "ili s",
+ "i lis",
+ "ed or",
+ "edo r",
+ "e dor",
+ "▁Cult ural",
+ "▁Cultura l",
+ "дж е",
+ "д же",
+ "▁li ked",
+ "▁like d",
+ "▁lik ed",
+ "▁m ongodb",
+ "▁mongo db",
+ "▁ mongodb",
+ "▁Broad way",
+ "▁I R",
+ "▁ IR",
+ "es zt",
+ "esz t",
+ "ho v",
+ "h ov",
+ "▁m íst",
+ "▁mí st",
+ "re iche",
+ "reich e",
+ "rei che",
+ "▁k B",
+ "ст ом",
+ "сто м",
+ "с том",
+ "▁SQL ite",
+ "▁tor neo",
+ "\\ .",
+ "Or d",
+ "O rd",
+ "▁Admin istration",
+ "▁Administr ation",
+ "▁з да",
+ "▁ зда",
+ "▁H inter",
+ "▁Hin ter",
+ "▁V ia",
+ "▁Vi a",
+ "Dec imal",
+ "or ious",
+ "ori ous",
+ "orio us",
+ "▁nécess aire",
+ "w x",
+ "▁t ej",
+ "▁te j",
+ "▁t ema",
+ "▁te ma",
+ "▁tem a",
+ "O brázky",
+ "ри те",
+ "рит е",
+ "▁build s",
+ "▁l aten",
+ "▁la ten",
+ "▁lat en",
+ "▁late n",
+ "▁г г",
+ "Vis ibility",
+ "lä u",
+ "l äu",
+ "▁se chs",
+ "▁sec hs",
+ "▁лу ч",
+ "ce ra",
+ "cer a",
+ "c era",
+ "Co uld",
+ "C ould",
+ "▁tra ject",
+ "}} ^{",
+ "}}^ {",
+ "} }^{",
+ "▁Jap on",
+ "▁Ja pon",
+ "an other",
+ "ano ther",
+ "I K",
+ "▁belong ing",
+ "▁fac ilities",
+ "▁facil ities",
+ "▁D aily",
+ "▁Da ily",
+ "▁de ce",
+ "▁dec e",
+ "int ro",
+ "▁слу ча",
+ "Name space",
+ "Names pace",
+ "▁B ak",
+ "▁Ba k",
+ "loc ale",
+ "local e",
+ "U G",
+ "=$ {",
+ "= ${",
+ "▁comp añ",
+ "ją c",
+ "j ąc",
+ "▁ar ithmetic",
+ "fo rum",
+ "for um",
+ "f orum",
+ "▁por ta",
+ "▁port a",
+ "on k",
+ "▁g ender",
+ "▁ge nder",
+ "▁gen der",
+ "▁ gender",
+ "▁expect s",
+ "б ка",
+ "▁n ak",
+ "▁na k",
+ "▁ nak",
+ "▁G race",
+ "▁Gr ace",
+ "▁Gra ce",
+ "▁st ro",
+ "▁str o",
+ "ivid ual",
+ "▁C OM",
+ "▁CO M",
+ "▁ COM",
+ "▁F arm",
+ "▁Fa rm",
+ "▁Far m",
+ "▁c anton",
+ "▁can ton",
+ "▁cant on",
+ "то му",
+ "том у",
+ "т ому",
+ "java x",
+ "jav ax",
+ "се й",
+ "с ей",
+ "▁brief ly",
+ "Fa ce",
+ "F ace",
+ "rot ate",
+ "const ant",
+ "▁g allery",
+ "▁gall ery",
+ "ast ro",
+ "astr o",
+ "all ery",
+ "alle ry",
+ "aller y",
+ "▁D J",
+ "char ge",
+ "charg e",
+ "ходи ть",
+ "ходит ь",
+ "C ent",
+ "\\\" ,",
+ "\\ \",",
+ "▁d onna",
+ "▁don na",
+ "▁donn a",
+ "ar ca",
+ "arc a",
+ "la de",
+ "lad e",
+ "l ade",
+ "zi n",
+ "z in",
+ "▁N ed",
+ "▁Ne d",
+ "▁host ing",
+ "▁hos ting",
+ "id or",
+ "ido r",
+ "i dor",
+ "it ative",
+ "itat ive",
+ "ig s",
+ "i gs",
+ "▁п ря",
+ "▁пр я",
+ "▁t icket",
+ "▁tick et",
+ "▁ti cket",
+ "▁stud ying",
+ "▁study ing",
+ "▁des igner",
+ "▁design er",
+ "lap sed",
+ "lapse d",
+ "laps ed",
+ "l apsed",
+ "▁la at",
+ "▁d ix",
+ "▁di x",
+ "▁integr ated",
+ "▁integrate d",
+ "▁integra ted",
+ "▁in formed",
+ "▁inform ed",
+ "▁be have",
+ "▁beh ave",
+ "▁behav e",
+ "▁la bour",
+ "▁lab our",
+ "est ellt",
+ "cal endar",
+ "▁k illing",
+ "▁kil ling",
+ "▁kill ing",
+ "▁tw itter",
+ "▁ twitter",
+ "ia e",
+ "i ae",
+ "▁histor ique",
+ "DE FAULT",
+ "ia ła",
+ "iał a",
+ "i ała",
+ "▁theoret ical",
+ "▁un ders",
+ "▁und ers",
+ "▁under s",
+ "ля ет",
+ "at an",
+ "ata n",
+ "a tan",
+ "▁s urname",
+ "▁sur name",
+ "▁inter cept",
+ "гла сно",
+ "▁општи ни",
+ "▁t ired",
+ "▁tir ed",
+ "▁ti red",
+ "▁B eth",
+ "▁Be th",
+ "▁Bet h",
+ "▁ад министратив",
+ "L i",
+ "▁Т ур",
+ "▁Ту р",
+ "▁Sc anner",
+ "▁S tern",
+ "▁St ern",
+ "▁Ste rn",
+ "▁Ster n",
+ "▁вме сте",
+ "▁report ing",
+ "▁s ull",
+ "▁su ll",
+ "▁sul l",
+ "ци ей",
+ "ber ts",
+ "bert s",
+ "og onal",
+ "ogo nal",
+ "ő k",
+ "▁i psum",
+ "▁ip sum",
+ "▁seu lement",
+ "▁seul ement",
+ "▁seule ment",
+ "▁Se iten",
+ "▁Seit en",
+ "▁Seite n",
+ "word press",
+ "▁fe aturing",
+ "ist ischen",
+ "isti schen",
+ "istische n",
+ "ju b",
+ "j ub",
+ "▁é tr",
+ "▁ét r",
+ "▁ étr",
+ "▁t ea",
+ "▁te a",
+ "▁adapt ed",
+ "▁sc ales",
+ "▁scale s",
+ "▁scal es",
+ "▁n an",
+ "▁na n",
+ "▁ nan",
+ "get Value",
+ "▁Bl ues",
+ "▁Blue s",
+ "ac les",
+ "acle s",
+ "a cles",
+ "▁st ati",
+ "▁stat i",
+ "▁sta ti",
+ "▁ent itled",
+ "▁R alph",
+ "gra vity",
+ "▁entre pr",
+ "któ ber",
+ "li mat",
+ "lim at",
+ "l imat",
+ "li s",
+ "l is",
+ "De mo",
+ "D emo",
+ "re lation",
+ "rel ation",
+ "▁n ep",
+ "▁ne p",
+ "pro wad",
+ "it is",
+ "iti s",
+ "i tis",
+ "▁p up",
+ "▁pu p",
+ "neh mer",
+ "nehm er",
+ "▁disapp oint",
+ "▁et was",
+ "▁etwa s",
+ "an non",
+ "ann on",
+ "anno n",
+ "▁appro ved",
+ "▁cl ever",
+ "▁cle ver",
+ "Lo ading",
+ "Load ing",
+ "▁ver z",
+ "▁ve rz",
+ "res se",
+ "ress e",
+ "r esse",
+ "▁insp ir",
+ "▁sam pling",
+ "▁B ek",
+ "▁Be k",
+ "}) $.",
+ "})$ .",
+ "} )$.",
+ "▁г рома",
+ "▁spe cie",
+ "▁spec ie",
+ "▁re pub",
+ "▁rep ub",
+ "▁lo ader",
+ "▁load er",
+ "▁ loader",
+ "▁e rf",
+ "▁er f",
+ "▁should er",
+ "ra is",
+ "rai s",
+ "r ais",
+ "▁ма те",
+ "▁мат е",
+ "▁Mon th",
+ "▁Mont h",
+ "▁Mo nth",
+ "▁ Month",
+ "Sc ene",
+ "▁block ing",
+ "▁o cean",
+ "ge ben",
+ "geb en",
+ "g eben",
+ "▁Kil ometer",
+ "▁b edeut",
+ "▁M ix",
+ "▁Mi x",
+ "fm t",
+ "f mt",
+ "▁Nor weg",
+ "▁ID s",
+ "par allel",
+ "▁ant icip",
+ "▁anti cip",
+ "▁re vis",
+ "▁rev is",
+ "ха н",
+ "х ан",
+ "▁с вет",
+ "▁све т",
+ "CA SE",
+ "C ASE",
+ "▁f ührt",
+ "▁führ t",
+ "▁ führt",
+ "▁at omic",
+ "▁atom ic",
+ "▁ atomic",
+ "▁dark ness",
+ "▁Fußball spieler",
+ "▁Ж и",
+ "quis ition",
+ "▁S ieg",
+ "▁Sie g",
+ "▁Si eg",
+ "C irc",
+ "▁c ientí",
+ "ne lle",
+ "nel le",
+ "nell e",
+ "n elle",
+ "SH A",
+ "S HA",
+ "▁u rb",
+ "▁ur b",
+ "▁ urb",
+ "▁k si",
+ "leq slant",
+ "▁ф рон",
+ "▁de fect",
+ "▁def ect",
+ "▁defe ct",
+ "▁r á",
+ "▁ rá",
+ "▁strong er",
+ "▁p ł",
+ "▁commun ities",
+ "ни на",
+ "нин а",
+ "en as",
+ "ena s",
+ "e nas",
+ "ienne nt",
+ "ienn ent",
+ "▁safe ly",
+ "▁saf ely",
+ "▁т я",
+ "▁ тя",
+ "▁ben chmark",
+ "▁Bra un",
+ "method s",
+ "arg ument",
+ "vo s",
+ "v os",
+ "ob ox",
+ "o box",
+ "ро ви",
+ "ров и",
+ "р ови",
+ "▁recher che",
+ "m n",
+ "▁br ings",
+ "▁bring s",
+ "m achine",
+ "CE SS",
+ "CES S",
+ "host s",
+ "hos ts",
+ "▁N Y",
+ "Aut ow",
+ "Auto w",
+ "▁сов ремен",
+ "▁G ary",
+ "▁Gar y",
+ "▁Ga ry",
+ "▁s ensor",
+ "▁sens or",
+ "▁document ed",
+ "▁pr endre",
+ "▁prend re",
+ "▁pe er",
+ "en ix",
+ "eni x",
+ "ha i",
+ "h ai",
+ "ar be",
+ "цен т",
+ "ц ент",
+ "_ (",
+ "▁U RI",
+ "▁ URI",
+ "ев а",
+ "е ва",
+ "▁Re gie",
+ "▁Reg ie",
+ "▁Mon ument",
+ "▁onder werp",
+ "B ag",
+ "ti t",
+ "t it",
+ "▁st ir",
+ "▁n erv",
+ "▁ne rv",
+ "▁ner v",
+ "стор ія",
+ "▁s ov",
+ "▁so v",
+ "▁writ ers",
+ "▁write rs",
+ "▁writer s",
+ "▁sort s",
+ "▁sor ts",
+ "ab solute",
+ "▁difficult ies",
+ "▁par lament",
+ "▁parl ament",
+ "▁IE numerable",
+ "▁dis sol",
+ "▁diss ol",
+ "▁CH ECK",
+ "ar ina",
+ "ari na",
+ "arin a",
+ "in burgh",
+ "D M",
+ "▁e ind",
+ "▁ein d",
+ "▁bud get",
+ "▁cert ains",
+ "▁certain s",
+ "▁för sta",
+ "▁först a",
+ "an ja",
+ "a nja",
+ "▁го дов",
+ "▁год ов",
+ "▁т ек",
+ "▁те к",
+ "▁ тек",
+ "▁D uch",
+ "▁Du ch",
+ "▁Duc h",
+ "gu i",
+ "g ui",
+ "▁Te ams",
+ "▁Team s",
+ "▁мно ги",
+ "Mar ie",
+ "Ma rie",
+ "M arie",
+ "In tegr",
+ "Int egr",
+ "Thread Pool",
+ "ru st",
+ "rus t",
+ "r ust",
+ "í k",
+ "% \"",
+ "en f",
+ "sp l",
+ "s pl",
+ "▁be gun",
+ "▁beg un",
+ "lo u",
+ "l ou",
+ "▁Rewrite Rule",
+ "tu ple",
+ "ane ous",
+ "▁mar ine",
+ "▁mari ne",
+ "▁ marine",
+ "at tan",
+ "att an",
+ "atta n",
+ "ik al",
+ "ika l",
+ "i kal",
+ "▁gradu ated",
+ "il lé",
+ "ill é",
+ "▁про ве",
+ "▁пров е",
+ "▁пр ове",
+ "▁Р оз",
+ "▁Ро з",
+ "', \r",
+ "' ,\r",
+ "▁Pf arr",
+ "▁n ivel",
+ "▁ni vel",
+ "▁пра цю",
+ "mus ic",
+ "▁set Timeout",
+ "ER S",
+ "E RS",
+ "▁E rik",
+ "▁Er ik",
+ "pi t",
+ "p it",
+ "▁Х ро",
+ "▁p ił",
+ "▁pi ł",
+ "▁p eri",
+ "▁per i",
+ "▁pe ri",
+ "до к",
+ "д ок",
+ "us zt",
+ "usz t",
+ "▁B ear",
+ "▁Be ar",
+ "Class Name",
+ "▁Par lament",
+ "▁a ix",
+ "▁ai x",
+ "▁inv ited",
+ "▁P ATH",
+ "▁PA TH",
+ "▁ PATH",
+ "xt er",
+ "x ter",
+ "▁R ace",
+ "▁Ra ce",
+ "▁h echo",
+ "▁he cho",
+ "▁T ower",
+ "▁To wer",
+ "▁Tow er",
+ "▁u tf",
+ "▁ut f",
+ "▁ utf",
+ "act ly",
+ "▁бу де",
+ "▁ang les",
+ "▁angle s",
+ "▁ angles",
+ "ня я",
+ "ouv elles",
+ "ouve lles",
+ "ouvel les",
+ "ouvelle s",
+ "▁cl imate",
+ "▁cli mate",
+ "▁clim ate",
+ "▁sing ing",
+ "▁sin ging",
+ "▁navig ate",
+ ">' ;",
+ "> ';",
+ "ad ows",
+ "ado ws",
+ "adow s",
+ "▁l eta",
+ "▁le ta",
+ "▁let a",
+ "▁S itz",
+ "▁Si tz",
+ "▁Sit z",
+ "▁part itions",
+ "▁partition s",
+ "▁d ock",
+ "▁do ck",
+ "▁doc k",
+ "▁ż y",
+ "▁ ży",
+ "▁alloc ate",
+ "▁benef its",
+ "▁benefit s",
+ "▁n ieder",
+ "▁nie der",
+ "▁ni eder",
+ "xp ath",
+ "x path",
+ "me ck",
+ "äl le",
+ "äll e",
+ "ä lle",
+ "▁cou pling",
+ "▁coup ling",
+ "жи л",
+ "ж ил",
+ "For Key",
+ "ar gent",
+ "arg ent",
+ "cl ou",
+ "clo u",
+ "c lou",
+ "▁instru ments",
+ "▁instrument s",
+ "▁ent hus",
+ "▁m ég",
+ "▁mé g",
+ "▁Па в",
+ "▁R ach",
+ "▁Ra ch",
+ "-- ---",
+ "---- -",
+ "--- --",
+ "- ----",
+ "▁API s",
+ "▁AP Is",
+ "▁V ier",
+ "▁Vi er",
+ "▁Vie r",
+ "C md",
+ "it ore",
+ "ito re",
+ "itor e",
+ "▁C uba",
+ "▁Cu ba",
+ "▁Cub a",
+ "▁dátum mal",
+ "▁embed ding",
+ "std io",
+ "▁Gil bert",
+ "▁ge prüft",
+ "▁st ating",
+ "▁stat ing",
+ "▁sta ting",
+ "▁stati ng",
+ "▁trigger s",
+ "▁trig gers",
+ "+ =",
+ "▁spé cial",
+ "▁del iber",
+ "▁deli ber",
+ "ми н",
+ "м ин",
+ "Pro du",
+ "Pr odu",
+ "P rodu",
+ "▁St ati",
+ "▁Stat i",
+ "▁Sta ti",
+ "▁z us",
+ "▁zu s",
+ "kt ionen",
+ "ktion en",
+ "Dispatch er",
+ "id al",
+ "ida l",
+ "i dal",
+ "▁L P",
+ "▁ LP",
+ "op tera",
+ "opt era",
+ "opter a",
+ "▁e star",
+ "▁est ar",
+ "▁es tar",
+ "▁esta r",
+ "▁зна чи",
+ "с мо",
+ "ous es",
+ "ouse s",
+ "o uses",
+ "eng ono",
+ "engo no",
+ "▁W PF",
+ "pub lish",
+ "▁t eor",
+ "▁te or",
+ "el if",
+ "eli f",
+ "▁e rg",
+ "▁er g",
+ "▁ erg",
+ "▁separ ation",
+ "Pa n",
+ "P an",
+ "▁Or chestra",
+ "Pe ter",
+ "P eter",
+ "bound s",
+ "b ounds",
+ "▁Shakespe are",
+ "▁cant ante",
+ "▁d emi",
+ "▁de mi",
+ "▁dem i",
+ "▁Pop ular",
+ "ф р",
+ "ar ring",
+ "arr ing",
+ "ци н",
+ "ц ин",
+ "▁И с",
+ "vo n",
+ "v on",
+ "▁subst itution",
+ "▁lí nea",
+ "\\}$ .",
+ "\\} $.",
+ "\\ }$.",
+ "com o",
+ "co mo",
+ "c omo",
+ "▁ва ж",
+ "wa gen",
+ "w agen",
+ "▁rare ly",
+ "▁period s",
+ "▁peri ods",
+ "gl ob",
+ "g lob",
+ "▁F rid",
+ "▁Fr id",
+ "▁Fri d",
+ "▁T err",
+ "▁Te rr",
+ "▁Ter r",
+ "▁Re lease",
+ "▁ Release",
+ "Brain z",
+ "▁гра ф",
+ "▁ граф",
+ "DI S",
+ "D IS",
+ "compat ible",
+ "▁po č",
+ "LI N",
+ "L IN",
+ "▁K ällor",
+ "▁A rizona",
+ "pp y",
+ "p py",
+ "Se q",
+ "S eq",
+ "▁A in",
+ "▁T ourn",
+ "▁To urn",
+ "▁Tour n",
+ "br ow",
+ "bro w",
+ "b row",
+ "▁K ör",
+ "▁Kö r",
+ "▁a sh",
+ "▁as h",
+ "▁ ash",
+ "ogene ous",
+ "▁dia lect",
+ "▁насе ља",
+ "mysql i",
+ "mysq li",
+ "цо в",
+ "ц ов",
+ "▁f lor",
+ "▁fl or",
+ "▁flo r",
+ "▁ф ло",
+ "IA B",
+ "I AB",
+ "▁With in",
+ "▁Wit hin",
+ "^ (",
+ "▁b ois",
+ "▁bo is",
+ "▁t ank",
+ "▁tan k",
+ "▁aff ili",
+ "▁h ijo",
+ "▁hij o",
+ "▁hi jo",
+ "▁K ate",
+ "▁Kat e",
+ "▁Ka te",
+ "▁Ver l",
+ "▁Ve rl",
+ "▁M iami",
+ "▁Mi ami",
+ "▁type script",
+ "▁types cript",
+ "њ у",
+ "▁V ern",
+ "▁Ver n",
+ "▁Ve rn",
+ "▁ви со",
+ "ie mann",
+ "iem ann",
+ "i emann",
+ "▁co verage",
+ "▁cover age",
+ "br ie",
+ "b rie",
+ "▁Start ing",
+ "▁Star ting",
+ "num py",
+ "▁J enkins",
+ "▁Jen kins",
+ "▁k ét",
+ "▁ké t",
+ "▁g rup",
+ "▁gr up",
+ "▁gru p",
+ "▁S cient",
+ "▁Sc ient",
+ "▁Sci ent",
+ "▁inter rupt",
+ "▁b lob",
+ "▁bl ob",
+ "▁blo b",
+ "▁ blob",
+ "ug el",
+ "uge l",
+ "u gel",
+ "▁Or th",
+ "▁Ort h",
+ "ab ama",
+ "aba ma",
+ "▁B apt",
+ "▁Ba pt",
+ "ow nik",
+ "own ik",
+ "▁бы ть",
+ "▁Jul ius",
+ "▁Ju lius",
+ "▁Juli us",
+ "▁П рез",
+ "▁Пре з",
+ "▁subst itute",
+ "support ed",
+ "supp orted",
+ "ch y",
+ "c hy",
+ "egy zetek",
+ "▁Per formance",
+ "▁Perform ance",
+ "less ly",
+ "Con structor",
+ "▁ext ending",
+ "▁extend ing",
+ "▁Mus lim",
+ "Over flow",
+ "▁J enn",
+ "▁Je nn",
+ "▁Jen n",
+ "▁produ z",
+ "▁prod uz",
+ "мі ї",
+ "м ії",
+ "▁país es",
+ "▁e ux",
+ "▁eu x",
+ "▁f ate",
+ "▁fa te",
+ "▁fat e",
+ "ol oge",
+ "olog e",
+ "olo ge",
+ "у к",
+ "▁wo bei",
+ "▁wob ei",
+ "▁S achsen",
+ "▁Sach sen",
+ "▁са йт",
+ "▁сай т",
+ "Mod els",
+ "Model s",
+ "Mode ls",
+ "▁F ast",
+ "▁Fa st",
+ "bes ondere",
+ "▁F R",
+ "▁ FR",
+ "▁a con",
+ "▁ac on",
+ "▁ acon",
+ "▁Den kmal",
+ "▁an ch",
+ "▁anc h",
+ "▁ anch",
+ "▁públic o",
+ "▁T as",
+ "▁Ta s",
+ "▁c and",
+ "▁can d",
+ "▁ca nd",
+ "▁pa ździer",
+ "▁М он",
+ "▁Мо н",
+ "▁vers us",
+ "ru t",
+ "r ut",
+ "G T",
+ "▁insert ing",
+ "▁inser ting",
+ "▁can ad",
+ "▁ca nad",
+ "є м",
+ "▁M etro",
+ "▁Met ro",
+ "▁Herz og",
+ "Ign ore",
+ "▁decre ase",
+ "▁п ун",
+ "▁пу н",
+ "▁F ischer",
+ "▁M all",
+ "▁Ma ll",
+ "▁Mal l",
+ "▁n örd",
+ "io stream",
+ "i ostream",
+ "▁Lux emb",
+ "pay load",
+ "▁Ze itung",
+ "▁Zeit ung",
+ "▁mod ifying",
+ "▁modify ing",
+ "▁C her",
+ "▁Ch er",
+ "▁Che r",
+ "▁Lu ci",
+ "▁Luc i",
+ "n x",
+ "▁lo ose",
+ "▁top ics",
+ "▁topic s",
+ "▁var ied",
+ "▁vari ed",
+ "▁va ried",
+ "▁p g",
+ "▁ pg",
+ "aj es",
+ "aje s",
+ "a jes",
+ "um m",
+ "u mm",
+ "View s",
+ "▁B eau",
+ "▁Be au",
+ "MA P",
+ "M AP",
+ "ip eline",
+ "ipe line",
+ "▁Inter est",
+ "ar ith",
+ "ari th",
+ "▁seg ún",
+ "▁Geme ins",
+ "▁Att ribute",
+ "▁ Attribute",
+ "comm unity",
+ "▁цент р",
+ "▁kil ometer",
+ "▁kilomet er",
+ "▁kilom eter",
+ "▁é conom",
+ "▁éc onom",
+ "lar ation",
+ "▁к ъ",
+ "▁car riage",
+ "▁carri age",
+ "▁L ane",
+ "▁La ne",
+ "▁Lan e",
+ "▁не об",
+ "ku r",
+ "k ur",
+ "▁A F",
+ "▁ AF",
+ "IN TER",
+ "INT ER",
+ ")) $",
+ ") )$",
+ "▁be ide",
+ "▁bei de",
+ "dest ination",
+ "▁font s",
+ "▁fon ts",
+ "▁ fonts",
+ "append Child",
+ "▁M AR",
+ "▁MA R",
+ "▁g ay",
+ "▁ga y",
+ "mi l",
+ "m il",
+ "le sh",
+ "les h",
+ "l esh",
+ "è t",
+ "▁W ang",
+ "▁Wa ng",
+ "▁Y ears",
+ "▁Year s",
+ "▁Ye ars",
+ "▁S ymbol",
+ "▁Sym bol",
+ "▁ Symbol",
+ "Li ve",
+ "L ive",
+ "qu ency",
+ "▁U sers",
+ "▁Use rs",
+ "▁User s",
+ "▁Us ers",
+ "▁ Users",
+ "▁Un icode",
+ "▁S au",
+ "▁Sa u",
+ "▁t ons",
+ "▁to ns",
+ "▁ton s",
+ "▁ tons",
+ "▁Н і",
+ "▁кра ї",
+ "▁ краї",
+ "AX I",
+ "▁P ick",
+ "▁Pi ck",
+ "▁Pic k",
+ "A I",
+ "▁h ath",
+ "▁ha th",
+ "▁hat h",
+ "▁a inda",
+ "▁ain da",
+ "▁p apa",
+ "▁pa pa",
+ "▁pap a",
+ "▁C enso",
+ "▁B ald",
+ "▁Ba ld",
+ "▁Bal d",
+ "▁Насе ље",
+ "▁sim ulations",
+ "▁simulation s",
+ "▁j aren",
+ "▁ja ren",
+ "▁jar en",
+ "▁inher ited",
+ "▁inherit ed",
+ "▁то й",
+ "▁ той",
+ "▁fe els",
+ "▁feel s",
+ "▁fee ls",
+ "ress ion",
+ "r ession",
+ "▁o któber",
+ "bi d",
+ "b id",
+ "ás i",
+ "á si",
+ "▁m uss",
+ "▁mus s",
+ "▁mu ss",
+ "vent ory",
+ "▁me ist",
+ "▁b ore",
+ "▁bo re",
+ "▁bor e",
+ "▁sl ider",
+ "▁slide r",
+ "▁sli der",
+ "▁ slider",
+ "де ли",
+ "\\ ;",
+ "▁extra cted",
+ "▁extract ed",
+ "ку р",
+ "к ур",
+ "Ed ge",
+ "▁per f",
+ "▁pe rf",
+ "▁Brig ade",
+ "▁гра д",
+ "▁ град",
+ "ie nie",
+ "ien ie",
+ "i enie",
+ "▁N orden",
+ "▁Nor den",
+ "▁Nord en",
+ "▁c ancer",
+ "▁can cer",
+ "\" /",
+ "C ur",
+ "▁С ере",
+ "▁Се ре",
+ "▁Сер е",
+ "▁liqu id",
+ "str ucture",
+ "struct ure",
+ "▁cho osing",
+ "▁Per l",
+ "▁Pe rl",
+ "Si de",
+ "S ide",
+ "ü s",
+ "ри тор",
+ "рито р",
+ "рит ор",
+ "▁k ost",
+ "▁ko st",
+ "▁pa ckets",
+ "▁pack ets",
+ "▁packet s",
+ "▁кото рого",
+ "▁Com un",
+ "▁Co mun",
+ "▁f ingers",
+ "▁fin gers",
+ "▁finger s",
+ "ográ fica",
+ "> :",
+ "▁champion nat",
+ "▁bl ieb",
+ "▁S itu",
+ "▁Si tu",
+ "▁Sit u",
+ "▁su ic",
+ "an dis",
+ "and is",
+ "Fr e",
+ "F re",
+ "▁C onc",
+ "▁Con c",
+ "▁Co nc",
+ "▁re public",
+ "▁rep ublic",
+ "▁repub lic",
+ "▁ar med",
+ "▁arm ed",
+ "▁h ell",
+ "▁he ll",
+ "▁hel l",
+ "▁ hell",
+ "▁h ög",
+ "▁hö g",
+ "rag ma",
+ "▁en se",
+ "▁ens e",
+ "▁ ense",
+ "▁ac res",
+ "▁В ід",
+ "▁Ві д",
+ "▁Re form",
+ "▁Ref orm",
+ "Main Activity",
+ "ke eper",
+ "keep er",
+ "kee per",
+ "er b",
+ "e rb",
+ "▁mon aster",
+ "sub subsection",
+ "▁Ди в",
+ "▁cre ature",
+ "▁indic ating",
+ "▁url s",
+ "▁ur ls",
+ "▁ urls",
+ "▁k ein",
+ "▁ke in",
+ "об раз",
+ "обра з",
+ "pi ck",
+ "pic k",
+ "p ick",
+ "▁Ad mir",
+ "▁old est",
+ "▁ol dest",
+ "▁m uz",
+ "▁mu z",
+ "▁contra diction",
+ "▁contrad iction",
+ "▁contradict ion",
+ "▁prob abil",
+ "illi ant",
+ "▁p av",
+ "▁pa v",
+ "▁pa pel",
+ "▁pap el",
+ "ub s",
+ "u bs",
+ "▁ж ена",
+ "▁же на",
+ "▁жен а",
+ "▁ жена",
+ "AM L",
+ "A ML",
+ "▁re cip",
+ "▁rec ip",
+ "▁reci p",
+ "▁C OL",
+ "▁CO L",
+ "▁ COL",
+ "ad ded",
+ "add ed",
+ "▁cl ue",
+ "▁Uk raine",
+ "▁Ukrain e",
+ "▁jel ent",
+ "че нь",
+ "чен ь",
+ "ч ень",
+ "▁mathemat ics",
+ "Ac cept",
+ "▁с от",
+ "▁со т",
+ "▁се вер",
+ "▁isol ated",
+ "▁по я",
+ "w ür",
+ "Ro uter",
+ "Route r",
+ "Rout er",
+ "R outer",
+ "CA T",
+ "C AT",
+ "rg b",
+ "r gb",
+ "▁L ov",
+ "▁Lo v",
+ "mu table",
+ "mut able",
+ "m utable",
+ "▁W es",
+ "▁We s",
+ "▁Ital ien",
+ "Dra g",
+ "Dr ag",
+ "D rag",
+ "en ium",
+ "eni um",
+ "at ting",
+ "att ing",
+ "atti ng",
+ "tc p",
+ "t cp",
+ "▁erfolg te",
+ "▁Be it",
+ "▁Bei t",
+ "га то",
+ "▁System s",
+ "▁Syst ems",
+ "▁re serve",
+ "▁res erve",
+ "er ee",
+ "ere e",
+ "e ree",
+ "▁Па ри",
+ "▁Пар и",
+ "▁з али",
+ "▁за ли",
+ "▁re nt",
+ "▁r ent",
+ "▁ren t",
+ "▁ rent",
+ "▁s unt",
+ "▁su nt",
+ "▁sun t",
+ "▁G irls",
+ "▁Girl s",
+ "▁Gir ls",
+ "▁Er nest",
+ "▁Ern est",
+ "▁f its",
+ "▁fi ts",
+ "▁fit s",
+ "▁op pon",
+ "▁opp on",
+ "▁живе ло",
+ "▁av aient",
+ "▁Flor ence",
+ "▁Flo rence",
+ "▁чи сле",
+ "▁eng ines",
+ "▁engine s",
+ "D ynamic",
+ "▁stycz nia",
+ "▁b ias",
+ "▁bi as",
+ "▁Ex change",
+ "ди й",
+ "▁histor iques",
+ "▁historique s",
+ "▁H ä",
+ "ho d",
+ "h od",
+ "▁w ł",
+ "sch ap",
+ "▁l ac",
+ "▁la c",
+ "▁ lac",
+ "▁F oi",
+ "▁Fo i",
+ "▁d well",
+ "▁dw ell",
+ "▁Unter nehmen",
+ "UR N",
+ "▁kilomet res",
+ "▁Одна ко",
+ "к ли",
+ "▁S ri",
+ "▁Sr i",
+ "Gr oups",
+ "Group s",
+ "min d",
+ "mi nd",
+ "m ind",
+ "os lov",
+ "fer n",
+ "fe rn",
+ "f ern",
+ "eg u",
+ "e gu",
+ "abel ed",
+ "abe led",
+ "F iddle",
+ "▁Cent ury",
+ "/ -",
+ "▁J egyzetek",
+ "He n",
+ "H en",
+ "ens emble",
+ "▁G ut",
+ "▁Gu t",
+ "_{ {\\",
+ "_ {{\\",
+ "▁ran king",
+ "▁rank ing",
+ "+ $",
+ "ал а",
+ "а ла",
+ "▁# {",
+ "▁ #{",
+ "im ientos",
+ "imiento s",
+ "ach im",
+ "ac him",
+ "achi m",
+ "ri des",
+ "ride s",
+ "rid es",
+ "r ides",
+ "▁K laus",
+ "▁Kl aus",
+ "▁int end",
+ "▁inte nd",
+ "▁inten d",
+ "▁Kent ucky",
+ "ci pe",
+ "cip e",
+ "c ipe",
+ "▁D ienst",
+ "▁Di enst",
+ "▁situ ated",
+ "▁pó ź",
+ "▁s crit",
+ "▁sc rit",
+ "▁scr it",
+ "▁scri t",
+ "cl ip",
+ "cli p",
+ "c lip",
+ "не т",
+ "н ет",
+ "ta bles",
+ "table s",
+ "tab les",
+ "t ables",
+ "▁N ied",
+ "▁Ni ed",
+ "▁Nie d",
+ "▁Mc K",
+ "▁pow st",
+ "▁kun nen",
+ "▁Ev ans",
+ "▁Eva ns",
+ "ж ды",
+ "ва ть",
+ "ват ь",
+ "uch ar",
+ "uc har",
+ "ucha r",
+ "u char",
+ "▁res idents",
+ "▁resid ents",
+ "▁resident s",
+ "ia k",
+ "i ak",
+ "▁Re sol",
+ "▁Res ol",
+ "▁ Resol",
+ "▁ve ces",
+ "▁vec es",
+ "▁satisf ying",
+ "▁satisfy ing",
+ "IN F",
+ "I NF",
+ "▁с ин",
+ "▁си н",
+ "▁cross ing",
+ "ib en",
+ "ibe n",
+ "i ben",
+ "▁ши ро",
+ "pt o",
+ "p to",
+ "IL L",
+ "I LL",
+ "▁ро ль",
+ "▁a ktiv",
+ "▁akt iv",
+ "▁обра щения",
+ "Wik ispecies",
+ "▁Hö he",
+ "cr o",
+ "c ro",
+ "══ ══",
+ "al tra",
+ "alt ra",
+ "▁FI LE",
+ "▁ FILE",
+ "▁u ps",
+ "▁up s",
+ "▁ ups",
+ "▁al location",
+ "▁all ocation",
+ "▁alloc ation",
+ "▁allo cation",
+ "Mich ael",
+ "▁acknow led",
+ "Lin ux",
+ "▁met ros",
+ "▁ metros",
+ "tt e",
+ "t te",
+ "af en",
+ "a fen",
+ "▁x code",
+ "▁тра ди",
+ "spe cies",
+ "spec ies",
+ "s pecies",
+ "▁inj ury",
+ "▁са мы",
+ "▁сам ы",
+ "▁l attice",
+ "M aterial",
+ "and enburg",
+ "anden burg",
+ "▁huvud staden",
+ "st ory",
+ "sto ry",
+ "stor y",
+ "▁var ying",
+ "▁vary ing",
+ "▁kö vet",
+ "▁Росси йской",
+ "ir se",
+ "irs e",
+ "▁d rum",
+ "▁dr um",
+ "▁dru m",
+ "Pr essed",
+ "Press ed",
+ "Pres sed",
+ "La r",
+ "L ar",
+ "▁A gu",
+ "▁Ag u",
+ "▁w eil",
+ "▁we il",
+ "▁comm ence",
+ "▁Seg ún",
+ "Gest ure",
+ "Sh ape",
+ "S hape",
+ "▁V ors",
+ "▁Vo rs",
+ "▁Vor s",
+ "▁succ ès",
+ "▁correct ed",
+ "▁corre cted",
+ "▁corr ected",
+ "K ar",
+ "▁cr uel",
+ "▁cru el",
+ "▁polit ico",
+ "▁Schrift steller",
+ "▁ris ult",
+ "et u",
+ "e tu",
+ "arch iv",
+ "▁gén ero",
+ "▁gé nero",
+ "▁L ü",
+ "▁tri umph",
+ "OR S",
+ "O RS",
+ "L u",
+ "▁person nel",
+ "▁personn el",
+ "▁personne l",
+ "▁H ills",
+ "▁Hill s",
+ "▁Hil ls",
+ "as set",
+ "ass et",
+ "asse t",
+ "do min",
+ "dom in",
+ "d omin",
+ "Rece ive",
+ "▁O ak",
+ "▁K no",
+ "▁Kn o",
+ "▁The ory",
+ "ir ie",
+ "iri e",
+ "i rie",
+ "ow an",
+ "owa n",
+ "o wan",
+ "▁est ava",
+ "▁esta va",
+ "▁exec utes",
+ "▁execute s",
+ "▁execut es",
+ "й т",
+ "óp ez",
+ "ó pez",
+ "по ло",
+ "пол о",
+ "п оло",
+ "ét ica",
+ "▁назва ние",
+ "▁conver ges",
+ "▁not re",
+ "▁no tre",
+ "▁pop ulated",
+ "▁popula ted",
+ "▁popul ated",
+ "▁populate d",
+ "▁mov ements",
+ "▁move ments",
+ "▁movement s",
+ "▁statist ical",
+ "▁Zwe iten",
+ "qu in",
+ "qui n",
+ "▁import antes",
+ "▁important es",
+ "▁importante s",
+ "▁k lein",
+ "▁kle in",
+ "▁kl ein",
+ "▁Seg unda",
+ "schließ end",
+ "Fail ure",
+ "na r",
+ "n ar",
+ "da g",
+ "d ag",
+ "▁ru olo",
+ "▁f iction",
+ "▁fi ction",
+ "▁fic tion",
+ "▁fict ion",
+ "▁исполь зу",
+ "▁cr isis",
+ "▁Get ting",
+ ", %",
+ "▁ар мии",
+ "▁cam pus",
+ "▁camp us",
+ "▁fo oter",
+ "▁foot er",
+ "▁foo ter",
+ "▁ footer",
+ "▁d ías",
+ "▁día s",
+ "▁dí as",
+ "ба н",
+ "б ан",
+ "▁liber ty",
+ "▁libert y",
+ "▁g h",
+ "▁ gh",
+ "▁cham ber",
+ "▁district s",
+ "▁exc ited",
+ "▁can ción",
+ "ter o",
+ "te ro",
+ "t ero",
+ "▁Work ing",
+ "▁Wor king",
+ "▁czę ści",
+ "ль ный",
+ "▁f orum",
+ "▁for um",
+ "▁fo rum",
+ "▁ forum",
+ "▁E he",
+ "▁ка та",
+ "▁ ката",
+ "it ations",
+ "itation s",
+ "itat ions",
+ "To ols",
+ "Tool s",
+ "T ools",
+ "ach iv",
+ "achi v",
+ "▁c res",
+ "▁cre s",
+ "▁cr es",
+ "as to",
+ "ast o",
+ "a sto",
+ "▁re ver",
+ "▁r ever",
+ "▁rev er",
+ "▁reve r",
+ "▁n azionale",
+ "▁naz ionale",
+ "▁do ors",
+ "▁door s",
+ "▁N ancy",
+ "▁Nan cy",
+ "▁is lands",
+ "▁island s",
+ "Im p",
+ "I mp",
+ "▁Ch air",
+ "▁Cha ir",
+ "▁v orm",
+ "▁vo rm",
+ "▁vor m",
+ "se in",
+ "s ein",
+ "▁до ку",
+ "er set",
+ "ers et",
+ "▁tät ig",
+ "▁K rit",
+ "▁Kr it",
+ "▁п я",
+ "▁cons ervation",
+ "▁conserv ation",
+ "▁Part ido",
+ "▁Parti do",
+ "min ipage",
+ "Valid ator",
+ "▁rec overy",
+ "▁recover y",
+ "▁NA SA",
+ "▁NAS A",
+ "▁br east",
+ "▁bre ast",
+ "il ty",
+ "ilt y",
+ "an aly",
+ "ana ly",
+ "anal y",
+ "el ines",
+ "eli nes",
+ "eline s",
+ "elin es",
+ "e lines",
+ "▁S aturday",
+ "em ark",
+ "e mark",
+ "ce j",
+ "c ej",
+ "Ze ro",
+ "Z ero",
+ "▁Tur ner",
+ "▁Turn er",
+ "sec ure",
+ "Ex ists",
+ "▁R ick",
+ "▁Ric k",
+ "▁Ri ck",
+ "ev alu",
+ "eval u",
+ "e valu",
+ "ct rl",
+ "ctr l",
+ "c trl",
+ "▁com pression",
+ "▁comp ression",
+ "▁compr ession",
+ "▁compress ion",
+ "▁C URL",
+ "text color",
+ ")\\ ,",
+ ") \\,",
+ "long rightarrow",
+ "▁Fern seh",
+ "▁ Fernseh",
+ "ic ha",
+ "ich a",
+ "i cha",
+ "▁l oi",
+ "▁lo i",
+ "▁О те",
+ "▁От е",
+ "▁c ave",
+ "▁ca ve",
+ "▁cav e",
+ "▁do zen",
+ "▁expla ining",
+ "▁expl aining",
+ "▁explain ing",
+ "▁in nov",
+ "▁inn ov",
+ "▁Nich olas",
+ "▁dia meter",
+ "▁diam eter",
+ "▁M arian",
+ "▁Mar ian",
+ "▁Ma rian",
+ "▁Maria n",
+ "▁Mari an",
+ "▁f ires",
+ "▁fire s",
+ "▁fi res",
+ "▁fir es",
+ "▁art ifact",
+ "▁ artifact",
+ "▁Par ker",
+ "▁Park er",
+ "▁B und",
+ "▁Bu nd",
+ "▁Bun d",
+ "▁v erte",
+ "▁ver te",
+ "▁vert e",
+ "▁ verte",
+ "▁tal ent",
+ "▁tale nt",
+ "▁Lu cas",
+ "▁Luc as",
+ "re verse",
+ "▁folg enden",
+ "▁S ah",
+ "▁Sa h",
+ "ject ions",
+ "je ctions",
+ "jection s",
+ "▁inve ce",
+ "▁cost itu",
+ "▁s sl",
+ "▁ss l",
+ "▁ ssl",
+ "}} ^",
+ "} }^",
+ "▁viol ent",
+ "▁s pos",
+ "▁sp os",
+ "▁spo s",
+ "Ro ut",
+ "R out",
+ "jd k",
+ "j dk",
+ "▁за ме",
+ "▁f urent",
+ "▁fur ent",
+ "▁fu rent",
+ "an dal",
+ "and al",
+ "anda l",
+ "H om",
+ "▁Sen ior",
+ "▁p ounds",
+ "▁Disc ogs",
+ "▁з е",
+ "▁ зе",
+ "'} [",
+ "' }[",
+ "▁Napole on",
+ "ordin ates",
+ "ordinate s",
+ "à n",
+ "▁k urz",
+ "▁kur z",
+ "▁v ere",
+ "▁ver e",
+ "▁ve re",
+ "▁ vere",
+ "▁re use",
+ "▁Г ен",
+ "▁Ге н",
+ "▁S yst",
+ "▁Sy st",
+ "▁disapp eared",
+ "▁disappear ed",
+ "▁W atch",
+ "▁Wat ch",
+ "▁ Watch",
+ "bibli othek",
+ "▁кор пу",
+ "▁C s",
+ "▁} `",
+ "▁ }`",
+ "▁r ör",
+ "▁де ла",
+ "▁ дела",
+ "V B",
+ "▁calcul us",
+ "▁calc ulus",
+ "ро да",
+ "род а",
+ "▁jud gment",
+ "at ile",
+ "ati le",
+ "▁long ue",
+ "▁lon gue",
+ "▁H us",
+ "▁Hu s",
+ "J ac",
+ "}} )",
+ "} })",
+ "RI PT",
+ "IAB ot",
+ "▁ap ós",
+ "▁a ston",
+ "▁as ton",
+ "▁ast on",
+ "Web achiv",
+ "▁URL s",
+ "▁co at",
+ "▁э коно",
+ "▁l ear",
+ "▁le ar",
+ "▁ lear",
+ "ext ensions",
+ "extension s",
+ "▁Class ic",
+ "T I",
+ "▁T age",
+ "▁Tag e",
+ "▁Ta ge",
+ "▁l á",
+ "▁ lá",
+ "▁s emb",
+ "▁se mb",
+ "▁sem b",
+ "▁développ ement",
+ "IS TS",
+ "IST S",
+ "▁sol ves",
+ "▁solve s",
+ ",\\ ,",
+ ", \\,",
+ "▁чем пі",
+ "ord inary",
+ "ordin ary",
+ "▁B av",
+ "▁Ba v",
+ "▁much os",
+ "▁mu chos",
+ "▁mucho s",
+ "S elf",
+ "▁Ма й",
+ "▁D iet",
+ "▁Die t",
+ "▁Di et",
+ "▁necess ity",
+ "ві д",
+ "в ід",
+ "▁m ano",
+ "▁ma no",
+ "▁man o",
+ "▁С р",
+ "▁car re",
+ "▁Cam era",
+ "▁Camer a",
+ "▁ Camera",
+ "▁N arod",
+ "▁Na rod",
+ "▁Nar od",
+ "▁Ph one",
+ "▁Pho ne",
+ "▁ Phone",
+ "▁pol ym",
+ "▁poly m",
+ "im ore",
+ "imo re",
+ "i more",
+ "is Empty",
+ "▁Hou ston",
+ "▁Re ce",
+ "▁Rec e",
+ "▁ Rece",
+ "▁present ation",
+ "▁pres entation",
+ "▁presenta tion",
+ "▁ presentation",
+ "ни ципа",
+ "ници па",
+ "▁D b",
+ "▁ Db",
+ "▁conf ident",
+ "▁} {",
+ "▁ }{",
+ "▁bul let",
+ "▁ bullet",
+ "▁{ },",
+ "▁{} ,",
+ "AN GE",
+ "ANG E",
+ "▁No tre",
+ "▁Not re",
+ "ch in",
+ "chi n",
+ "c hin",
+ "▁Dr agon",
+ "▁Drag on",
+ "▁Dra gon",
+ "er ca",
+ "erc a",
+ "ia li",
+ "ial i",
+ "i ali",
+ "▁as set",
+ "▁ass et",
+ "▁asse t",
+ "▁ asset",
+ "▁mu ito",
+ "▁muit o",
+ "▁deep ly",
+ "▁rest riction",
+ "▁restrict ion",
+ "▁com merce",
+ "▁commer ce",
+ "▁ commerce",
+ "▁B omb",
+ "▁Bo mb",
+ "▁Bom b",
+ "c aught",
+ "q q",
+ "▁A rag",
+ "▁Ar ag",
+ "▁Ara g",
+ "▁не мец",
+ "▁Anal ysis",
+ "▁člán ku",
+ "▁b aby",
+ "▁ba by",
+ "▁e chter",
+ "▁о дного",
+ "▁од ного",
+ "▁одно го",
+ "же на",
+ "жен а",
+ "ж ена",
+ "▁white space",
+ "▁whites pace",
+ "ç u",
+ "LI ST",
+ "L IST",
+ "fr ique",
+ "fri que",
+ "f rique",
+ "▁v arias",
+ "▁var ias",
+ "▁vari as",
+ "▁va rias",
+ "▁W it",
+ "▁Wi t",
+ "▁Lic encia",
+ "Ex it",
+ "▁sie rp",
+ "▁sier p",
+ "▁ass emb",
+ "▁asse mb",
+ "▁split ting",
+ "▁spl itting",
+ "▁pa lace",
+ "▁pal ace",
+ "▁b locked",
+ "▁block ed",
+ "▁bound aries",
+ "▁iter ations",
+ "▁iteration s",
+ "▁Rot ten",
+ "▁Ver kehr",
+ "▁we er",
+ "Test s",
+ "T ests",
+ "if ting",
+ "ift ing",
+ "▁reg ul",
+ "▁pers ist",
+ "▁Sol ution",
+ "p b",
+ "▁col lapse",
+ "▁ collapse",
+ "▁arr ested",
+ "▁arrest ed",
+ "▁pred icate",
+ "▁Z one",
+ "▁Zo ne",
+ "▁ Zone",
+ "▁in gen",
+ "▁ing en",
+ "▁ ingen",
+ "zá lez",
+ "▁b anks",
+ "▁bank s",
+ "▁ban ks",
+ "pl ant",
+ "plan t",
+ "pla nt",
+ "p lant",
+ "▁N ella",
+ "▁Ne lla",
+ "▁Nel la",
+ "▁Nell a",
+ "▁б ан",
+ "▁ба н",
+ "▁ бан",
+ "▁S now",
+ "▁Sn ow",
+ "▁Kre uz",
+ "í cio",
+ "▁en ters",
+ "▁ent ers",
+ "▁enter s",
+ "▁ex pose",
+ "▁exp ose",
+ "▁expos e",
+ "č i",
+ "ши е",
+ "Qu al",
+ "Q ual",
+ "▁lands cape",
+ "▁пода цима",
+ "ma i",
+ "m ai",
+ "st ag",
+ "sta g",
+ "s tag",
+ "ова ний",
+ "DE F",
+ "D EF",
+ "[] {",
+ "[ ]{",
+ "▁derni ère",
+ "ic ut",
+ "i cut",
+ "▁X ml",
+ "▁ Xml",
+ "▁sub group",
+ "▁Pol sce",
+ "▁W arning",
+ "▁War ning",
+ "▁ Warning",
+ "▁veh icles",
+ "▁vehicle s",
+ "io t",
+ "i ot",
+ "▁d ll",
+ "▁ dll",
+ "ro nt",
+ "ron t",
+ "r ont",
+ "▁Lou ise",
+ "▁Louis e",
+ "▁a ra",
+ "▁ar a",
+ "▁ ara",
+ "▁S cala",
+ "▁Sc ala",
+ "▁canon ical",
+ "▁pl acing",
+ "▁pla cing",
+ "ER Y",
+ "E RY",
+ "▁J ag",
+ "▁Ja g",
+ "▁v irus",
+ "▁vi rus",
+ "▁vir us",
+ "em u",
+ "e mu",
+ "▁} );\r",
+ "▁}); \r",
+ "▁}) ;\r",
+ "▁м м",
+ "▁Tr ying",
+ "▁Try ing",
+ "▁Lex ikon",
+ "ab ord",
+ "abor d",
+ "▁exped ition",
+ "▁demand ed",
+ "▁demande d",
+ "Z yg",
+ "le in",
+ "lei n",
+ "l ein",
+ "▁verw endet",
+ "ри на",
+ "рин а",
+ "wo l",
+ "w ol",
+ "▁p ivot",
+ "▁одна ко",
+ "▁propri et",
+ "▁a wards",
+ "▁aw ards",
+ "▁award s",
+ "to ut",
+ "t out",
+ "▁as sim",
+ "▁ass im",
+ "▁St orm",
+ "▁Sto rm",
+ "Li mit",
+ "L imit",
+ "el in",
+ "eli n",
+ "e lin",
+ "we alth",
+ "ue z",
+ "u ez",
+ "▁rap present",
+ "▁rappres ent",
+ "▁re sta",
+ "▁r esta",
+ "▁res ta",
+ "▁rest a",
+ "▁gegründ et",
+ "▁journal ist",
+ "is ie",
+ "isi e",
+ "▁fac ility",
+ "▁facil ity",
+ "il led",
+ "ill ed",
+ "ille d",
+ "ul k",
+ "▁P K",
+ "▁ PK",
+ "An chor",
+ "▁_ )",
+ "▁ _)",
+ "V F",
+ "LA B",
+ "L AB",
+ "▁n å",
+ "od os",
+ "odo s",
+ "▁bill ion",
+ "vir ti",
+ "virt i",
+ "▁Je ux",
+ "юз а",
+ "ю за",
+ "tom cat",
+ "▁ch arts",
+ "▁char ts",
+ "▁chart s",
+ "▁ charts",
+ "▁B undle",
+ "▁Bund le",
+ "▁ Bundle",
+ "▁l st",
+ "▁ls t",
+ "▁ lst",
+ "▁ex er",
+ "▁fem ales",
+ "▁female s",
+ "▁oblig ed",
+ "▁a by",
+ "▁ab y",
+ "▁ aby",
+ "roll ed",
+ "rol led",
+ "rolle d",
+ "dr i",
+ "d ri",
+ "▁S che",
+ "▁Sch e",
+ "▁Sc he",
+ "▁vess els",
+ "▁vessel s",
+ "IMA RY",
+ "IM ARY",
+ "▁reason ing",
+ "▁про те",
+ "▁пр оте",
+ "FI LES",
+ "FILE S",
+ "ver k",
+ "v erk",
+ "os os",
+ "oso s",
+ "▁ком му",
+ "ді ї",
+ "д ії",
+ "▁d d",
+ "▁ dd",
+ "▁со ответ",
+ "▁IO Exception",
+ "▁ IOException",
+ "sk ých",
+ "ský ch",
+ "▁C LI",
+ "▁CL I",
+ "▁ CLI",
+ "▁ ње",
+ "C M",
+ "T D",
+ "▁possib ilities",
+ "▁possibil ities",
+ "▁Com pos",
+ "▁Comp os",
+ "hal f",
+ "h alf",
+ "▁web page",
+ "▁s wing",
+ "▁sw ing",
+ "▁ swing",
+ "▁z as",
+ "▁za s",
+ "▁ zas",
+ "▁cy cl",
+ "le id",
+ "lei d",
+ "ist ica",
+ "istic a",
+ "isti ca",
+ "▁In sert",
+ "▁Ins ert",
+ "▁ Insert",
+ "▁Sw eden",
+ "▁want ing",
+ "▁ ال",
+ "▁e euw",
+ "▁Admin istr",
+ "▁War ren",
+ "▁b s",
+ "▁ bs",
+ "▁p am",
+ "▁pa m",
+ "an us",
+ "anu s",
+ "Dr a",
+ "D ra",
+ "ex pl",
+ "exp l",
+ "▁K ant",
+ "▁Kan t",
+ "▁Ka nt",
+ "▁Aust in",
+ "▁c sak",
+ "▁cs ak",
+ "▁the atre",
+ "▁compat ibility",
+ "ма тиче",
+ "мати че",
+ "set State",
+ "б ю",
+ "}{ |",
+ "} {|",
+ "▁D y",
+ "▁Zw ischen",
+ "Al t",
+ "A lt",
+ "CLA RE",
+ "st eps",
+ "ste ps",
+ "step s",
+ "▁L age",
+ "▁La ge",
+ "▁Lag e",
+ "▁M itt",
+ "▁Mit t",
+ "▁Mi tt",
+ "▁Dub lin",
+ "▁рабо ты",
+ "de ep",
+ "▁fl ows",
+ "▁flow s",
+ "▁flo ws",
+ "▁Pa lace",
+ "▁Pal ace",
+ "▁Pala ce",
+ "un ix",
+ "uni x",
+ "re fs",
+ "ref s",
+ "um ar",
+ "uma r",
+ "u mar",
+ "as et",
+ "ase t",
+ "a set",
+ "co v",
+ "c ov",
+ "▁p ing",
+ "▁pi ng",
+ "▁pin g",
+ "▁ ping",
+ "▁Saf ari",
+ "fl ug",
+ "flu g",
+ "cre ens",
+ "creen s",
+ "c reens",
+ "{ #",
+ "▁ре а",
+ "ad ors",
+ "ado rs",
+ "ador s",
+ "▁a mor",
+ "▁am or",
+ "uc e",
+ "u ce",
+ "de mic",
+ "dem ic",
+ "▁Nether lands",
+ "▁cluster s",
+ "▁clust ers",
+ "▁en for",
+ "▁enf or",
+ "mar ine",
+ "▁b ugs",
+ "▁bu gs",
+ "▁bug s",
+ "izz ata",
+ "izza ta",
+ "▁s cra",
+ "▁sc ra",
+ "▁scr a",
+ "Le s",
+ "L es",
+ "qu ick",
+ "qui ck",
+ "▁turn o",
+ "▁tur no",
+ "_ *",
+ "ер а",
+ "е ра",
+ "Gener ated",
+ "> [",
+ "▁e stre",
+ "▁est re",
+ "▁es tre",
+ "▁ estre",
+ "or de",
+ "ord e",
+ "▁v erg",
+ "▁ver g",
+ "▁ve rg",
+ "ро з",
+ "р оз",
+ "▁p au",
+ "▁pa u",
+ "in cludes",
+ "include s",
+ "includ es",
+ "as sa",
+ "ass a",
+ "ad ers",
+ "ader s",
+ "ade rs",
+ "a ders",
+ "▁Гер ма",
+ "▁est aven",
+ "▁esta ven",
+ "▁ear liest",
+ "▁res ultado",
+ "▁result ado",
+ "mu n",
+ "m un",
+ "▁pl ots",
+ "▁plot s",
+ "▁ plots",
+ "di n",
+ "d in",
+ "sort ed",
+ "s orted",
+ "▁p reference",
+ "▁pre ference",
+ "▁prefer ence",
+ "ri ó",
+ "r ió",
+ "ту ре",
+ "тур е",
+ "▁L igue",
+ "▁Li gue",
+ "▁Lig ue",
+ "▁за вер",
+ "▁зав ер",
+ "ph r",
+ "p hr",
+ "▁p ocket",
+ "▁po cket",
+ "▁poc ket",
+ "▁par l",
+ "▁pa rl",
+ "▁l ak",
+ "▁la k",
+ "▁ lak",
+ "▁p owie",
+ "▁po wie",
+ "▁pow ie",
+ "▁al tres",
+ "▁alt res",
+ "▁altre s",
+ "$} ;",
+ "$ };",
+ "pl ain",
+ "pla in",
+ "p lain",
+ "▁C red",
+ "▁Cre d",
+ "▁Cr ed",
+ "▁ Cred",
+ "it za",
+ "itz a",
+ "pe rp",
+ "per p",
+ "Gr een",
+ "Gre en",
+ "G reen",
+ "▁dev oted",
+ "product ion",
+ "produ ction",
+ "p roduction",
+ "work er",
+ "wor ker",
+ "el sen",
+ "els en",
+ "else n",
+ "▁v ern",
+ "▁ver n",
+ "▁ve rn",
+ "▁ vern",
+ "▁már cius",
+ "▁Conf eder",
+ "▁Liver pool",
+ "▁му зи",
+ "▁em ails",
+ "▁email s",
+ "▁dist ances",
+ "▁distance s",
+ "▁seg ments",
+ "▁segment s",
+ "▁a nth",
+ "▁an th",
+ "▁ant h",
+ "▁ anth",
+ "▁w rest",
+ "▁wr est",
+ "▁ho og",
+ "▁cin ema",
+ "rr or",
+ "r ror",
+ "▁geb oren",
+ "▁é c",
+ "▁ éc",
+ "Mar ker",
+ "Mark er",
+ "▁Com pet",
+ "▁Comp et",
+ "▁ли сто",
+ "all owed",
+ "allow ed",
+ "allo wed",
+ "vol ume",
+ "Esp agne",
+ "Z e",
+ "▁fix es",
+ "▁fi xes",
+ "▁r ond",
+ "▁ro nd",
+ "▁arrang ement",
+ "/ ~",
+ ".] (",
+ ". ](",
+ "▁For rások",
+ "▁weiter en",
+ "▁weit eren",
+ "▁weitere n",
+ "ex cel",
+ "▁з мі",
+ "▁mod erne",
+ "▁modern e",
+ "▁moder ne",
+ "Eng lish",
+ "▁Transfer markt",
+ "▁be aring",
+ "▁bear ing",
+ "▁cl eared",
+ "▁clear ed",
+ "▁cle ared",
+ "▁са м",
+ "▁di vs",
+ "▁div s",
+ "ć i",
+ "▁э той",
+ "▁это й",
+ "▁Ге ор",
+ "sc ene",
+ "sce ne",
+ "▁a ges",
+ "▁ag es",
+ "▁age s",
+ "▁ ages",
+ "GE N",
+ "G EN",
+ "rä n",
+ "r än",
+ "▁T oul",
+ "▁To ul",
+ "▁A bs",
+ "▁Ab s",
+ "j át",
+ "▁med iante",
+ "▁medi ante",
+ "▁median te",
+ "▁em pres",
+ "▁emp res",
+ "▁Emp loyee",
+ "▁ Employee",
+ "▁polynomial s",
+ "▁optim ize",
+ "▁вы ступа",
+ "fa re",
+ "far e",
+ "f are",
+ "ве й",
+ "в ей",
+ "x f",
+ "qu ez",
+ "que z",
+ "q uez",
+ "▁bo tan",
+ "▁bot an",
+ "▁def end",
+ "▁defe nd",
+ "▁Qu art",
+ "Mon t",
+ "Mo nt",
+ "M ont",
+ "v b",
+ "ti ck",
+ "t ick",
+ "W D",
+ "min e",
+ "mi ne",
+ "m ine",
+ "▁mod ific",
+ "not ification",
+ "▁d enn",
+ "▁de nn",
+ "▁den n",
+ "▁al go",
+ "▁alg o",
+ "▁S po",
+ "▁Sp o",
+ "▁m istrzost",
+ "/ :",
+ "▁a present",
+ "▁apr esent",
+ "▁п род",
+ "▁про д",
+ "▁пр од",
+ "Vol ume",
+ "sk ą",
+ "s ką",
+ "prote cted",
+ "▁Turk ish",
+ "az y",
+ "a zy",
+ "▁p ouv",
+ "▁po uv",
+ "▁pou v",
+ "▁perí odo",
+ "sk og",
+ "sko g",
+ "▁ent ropy",
+ "▁entr opy",
+ "ze d",
+ "z ed",
+ "то ри",
+ "тор и",
+ "▁l ij",
+ "▁li j",
+ "▁ lij",
+ "bo ards",
+ "board s",
+ "▁ста ту",
+ "Bo ol",
+ "B ool",
+ "▁pol ity",
+ "▁polit y",
+ "@\" ,",
+ "@ \",",
+ "▁рі к",
+ "né e",
+ "n ée",
+ "▁Z ug",
+ "▁Zu g",
+ "▁Un iti",
+ "▁Unit i",
+ "ém et",
+ "é met",
+ "at ience",
+ "ati ence",
+ "di men",
+ "dim en",
+ "d imen",
+ "▁St even",
+ "▁Ste ven",
+ "▁Steve n",
+ "H a",
+ "ACT ION",
+ "A CTION",
+ "▁w and",
+ "▁wa nd",
+ "▁ wand",
+ "▁Na var",
+ "▁Nav ar",
+ "▁сі чня",
+ "W atch",
+ "▁Stu art",
+ "▁z de",
+ "▁zd e",
+ "▁кон тро",
+ "data set",
+ "dat aset",
+ "datas et",
+ "y ó",
+ "▁B ush",
+ "▁Bu sh",
+ "▁Bus h",
+ "▁се бя",
+ "▁wor thy",
+ "▁worth y",
+ "▁B le",
+ "▁Bl e",
+ "▁pro por",
+ "▁prop or",
+ "▁Vill age",
+ "▁Villa ge",
+ "▁Vil lage",
+ "▁r y",
+ "▁ ry",
+ "▁v oit",
+ "▁vo it",
+ "▁копи я",
+ "▁z p",
+ "▁c ura",
+ "▁cu ra",
+ "▁cur a",
+ "▁H tml",
+ "▁ Html",
+ "▁Die ser",
+ "▁Dies er",
+ "▁Diese r",
+ "▁D ays",
+ "▁Da ys",
+ "▁Day s",
+ "▁ Days",
+ "on nes",
+ "onn es",
+ "onne s",
+ "▁ant igu",
+ "▁anti gu",
+ "▁Sta aten",
+ "▁Staat en",
+ "▁f aint",
+ "▁fa int",
+ "on gs",
+ "ong s",
+ "▁ö st",
+ "▁ öst",
+ "Re direct",
+ "Red irect",
+ "ел ь",
+ "е ль",
+ "at orial",
+ "ator ial",
+ "ato rial",
+ "atori al",
+ "▁b other",
+ "▁bo ther",
+ "▁both er",
+ "▁bot her",
+ "Edit Text",
+ "▁Gi ul",
+ "▁за во",
+ "▁зав о",
+ "▁pue blo",
+ "▁Mississ ippi",
+ "ja k",
+ "j ak",
+ "▁w ings",
+ "▁win gs",
+ "▁wing s",
+ "on c",
+ "o nc",
+ "ív el",
+ "í vel",
+ "ien cia",
+ "i encia",
+ "ent licht",
+ "entlich t",
+ "▁B TW",
+ "or nal",
+ "orn al",
+ "▁Ко ро",
+ "▁Кор о",
+ "▁од ним",
+ "▁sa lv",
+ "▁sal v",
+ "▁f inden",
+ "▁find en",
+ "▁fin den",
+ "ge o",
+ "▁а виа",
+ "att ung",
+ "vi v",
+ "v iv",
+ "▁L uther",
+ "▁Lu ther",
+ "▁об щи",
+ "▁Ro lle",
+ "▁Rol le",
+ "▁Roll e",
+ "▁Ab raham",
+ "▁cent ered",
+ "▁center ed",
+ "▁sl ash",
+ "▁sla sh",
+ "▁ slash",
+ "is at",
+ "isa t",
+ "em ann",
+ "ema nn",
+ "eman n",
+ "e mann",
+ "O s",
+ "пар та",
+ "▁P ablo",
+ "▁Pa blo",
+ "▁collabor ation",
+ "path s",
+ "pat hs",
+ "éd ition",
+ "▁view ed",
+ "▁vie wed",
+ "▁cons isted",
+ "▁consist ed",
+ "▁recover ed",
+ "▁Mex ican",
+ "▁F ix",
+ "▁sp ell",
+ "▁spe ll",
+ "▁spel l",
+ "Spec ial",
+ "Spe cial",
+ "▁С т",
+ "ess eur",
+ "esse ur",
+ "▁Украи ны",
+ "form er",
+ "for mer",
+ "▁ś w",
+ "▁z eros",
+ "▁ze ros",
+ "▁zero s",
+ "▁Stra ßen",
+ "▁Straße n",
+ "▁organ isation",
+ "▁organis ation",
+ "▁ organisation",
+ "üss en",
+ "üs sen",
+ "▁S ierra",
+ "▁Se ason",
+ "▁Sea son",
+ "▁vol ont",
+ "Bean Factory",
+ "▁помо щ",
+ "▁pres sing",
+ "▁press ing",
+ "▁equival ence",
+ "▁c att",
+ "▁ca tt",
+ "▁cat t",
+ "ic ity",
+ "ici ty",
+ "i city",
+ "▁accompl ished",
+ "▁accomp lished",
+ "▁accomplish ed",
+ "▁y o",
+ "▁ yo",
+ "▁s ic",
+ "▁si c",
+ "▁im ports",
+ "▁import s",
+ "▁accom mod",
+ "▁Port o",
+ "▁Por to",
+ "▁я ка",
+ "▁як а",
+ "▁lo an",
+ "ти ки",
+ "тик и",
+ "▁check out",
+ "▁ass ess",
+ "▁asse ss",
+ "▁Pop ulation",
+ "ur ent",
+ "ure nt",
+ "uren t",
+ "u rent",
+ "clo jure",
+ "▁Sant os",
+ "▁Santo s",
+ "▁inform áció",
+ "PO S",
+ "P OS",
+ "▁g are",
+ "▁gar e",
+ "▁ga re",
+ "▁k ick",
+ "▁ki ck",
+ "▁rad ical",
+ "▁radi cal",
+ "▁Pe ace",
+ "▁stream ing",
+ "▁stre aming",
+ "ca mp",
+ "cam p",
+ "c amp",
+ "zą t",
+ "го вор",
+ "гов ор",
+ "гово р",
+ "▁Reg ierung",
+ "▁proceed ed",
+ "f m",
+ "ле ны",
+ "лен ы",
+ "▁ear nest",
+ "▁Par ad",
+ "▁Pa rad",
+ "▁Para d",
+ "request s",
+ "▁R aum",
+ "▁Ra um",
+ "š č",
+ "▁polic ies",
+ "▁T ig",
+ "▁Ti g",
+ "▁s itt",
+ "▁si tt",
+ "▁sit t",
+ "▁Ener gy",
+ "▁pur ely",
+ "▁pure ly",
+ "▁H aut",
+ "▁Ha ut",
+ "▁Sp eed",
+ "▁Spe ed",
+ "▁ Speed",
+ "bi o",
+ "b io",
+ "▁o range",
+ "▁or ange",
+ "▁big gest",
+ "▁britann ique",
+ "▁No table",
+ "▁Not able",
+ "v u",
+ "ле нии",
+ "би н",
+ "б ин",
+ "▁N ash",
+ "▁Na sh",
+ "▁Nas h",
+ "ще ние",
+ "▁c iel",
+ "▁ci el",
+ "adém ie",
+ "▁гру дня",
+ "▁jo ue",
+ "▁jou e",
+ "▁v oted",
+ "▁vo ted",
+ "▁vot ed",
+ "▁vote d",
+ "ri co",
+ "ric o",
+ "r ico",
+ "▁го р",
+ "▁г ор",
+ "▁ гор",
+ "▁коман ду",
+ "it ivity",
+ "iti vity",
+ "▁щ е",
+ "▁ ще",
+ "▁de finite",
+ "▁defin ite",
+ "▁definit e",
+ "uro pa",
+ "urop a",
+ "!\" );",
+ "! \");",
+ "Default s",
+ "▁неко торы",
+ "éd ération",
+ "▁s illy",
+ "▁sil ly",
+ "▁talk ed",
+ "▁tal ked",
+ "re u",
+ "r eu",
+ "▁L omb",
+ "▁Lo mb",
+ "▁stat ue",
+ "кт а",
+ "к та",
+ "ю р",
+ "um ably",
+ "▁горо де",
+ "▁город е",
+ "▁R untime",
+ "▁Run time",
+ "▁ Runtime",
+ "▁di agn",
+ "▁diag n",
+ "▁dia gn",
+ "▁r etro",
+ "▁ret ro",
+ "▁retr o",
+ "▁Sver ige",
+ "▁in icial",
+ "▁inici al",
+ "ien za",
+ "i enza",
+ "▁fig lio",
+ "▁z og",
+ "▁zo g",
+ "▁re y",
+ "▁r ey",
+ "▁ rey",
+ "▁R und",
+ "▁Run d",
+ "▁Ru nd",
+ "т ный",
+ "▁ce ased",
+ "er no",
+ "ern o",
+ "▁e sa",
+ "▁es a",
+ "▁ esa",
+ "▁tr ouv",
+ "▁tro uv",
+ "▁trou v",
+ "▁Gemeinde n",
+ "▁Geme inden",
+ "▁comer cial",
+ "sk ap",
+ "ska p",
+ "s kap",
+ "en ario",
+ "ena rio",
+ "▁ju ris",
+ "▁jur is",
+ "T B",
+ "на ла",
+ "нал а",
+ "н ала",
+ "▁v ij",
+ "▁vi j",
+ "V O",
+ "▁c lin",
+ "▁cl in",
+ "▁cli n",
+ "jö r",
+ "j ör",
+ "са н",
+ "с ан",
+ "ow ała",
+ "owa ła",
+ "ował a",
+ "rib ución",
+ "ribu ción",
+ "▁urs prüng",
+ "▁con dem",
+ "▁cond em",
+ "▁St age",
+ "▁Sta ge",
+ "▁ Stage",
+ "▁mix ing",
+ "▁рі з",
+ "▁f ans",
+ "▁fa ns",
+ "▁fan s",
+ "há z",
+ "h áz",
+ "so cial",
+ "soci al",
+ "za n",
+ "z an",
+ "▁с вой",
+ "▁сво й",
+ "Cook ie",
+ "▁Ro land",
+ "▁Rol and",
+ "az ionale",
+ "▁Sl oven",
+ "▁Slo ven",
+ "▁Slov en",
+ "▁F iche",
+ "▁Fich e",
+ "▁S é",
+ "h ä",
+ "▁official s",
+ "▁offici als",
+ "▁î nt",
+ "▁în t",
+ "Inter ceptor",
+ "Table s",
+ "Tab les",
+ "T ables",
+ "▁da von",
+ "▁dav on",
+ "init ialize",
+ "initial ize",
+ "]= \"",
+ "] =\"",
+ "▁B ody",
+ "▁Bo dy",
+ "▁Bod y",
+ "▁ Body",
+ "▁U pper",
+ "▁Up per",
+ "▁ Upper",
+ "▁Col lect",
+ "▁Coll ect",
+ "▁ Collect",
+ "▁Zür ich",
+ "Hor izontal",
+ "Ty p",
+ "T yp",
+ "▁polít ico",
+ "▁Rewrite Cond",
+ "▁h oped",
+ "▁hope d",
+ "▁ho ped",
+ "▁hop ed",
+ "▁anx ious",
+ "Li ter",
+ "L iter",
+ "ja hr",
+ "j ahr",
+ "▁ass emble",
+ "▁assemb le",
+ "▁c rypt",
+ "▁cry pt",
+ "lah oma",
+ "AS H",
+ "A SH",
+ "▁Б ри",
+ "▁C ic",
+ "▁Ci c",
+ "tw itter",
+ "hy per",
+ "▁T ell",
+ "▁Te ll",
+ "▁Tel l",
+ "іль ки",
+ "во бо",
+ "▁ba zie",
+ "▁baz ie",
+ "▁contempor ary",
+ "▁Param eter",
+ "▁Para meter",
+ "▁ Parameter",
+ "st wa",
+ "▁bek end",
+ "co ck",
+ "c ock",
+ "pre vious",
+ "prev ious",
+ "en ska",
+ "ens ka",
+ "ensk a",
+ "▁c aller",
+ "▁cal ler",
+ "▁call er",
+ "]] )",
+ "] ])",
+ "▁R az",
+ "▁Ra z",
+ "▁Se lon",
+ "▁Sel on",
+ "▁propos al",
+ "▁b ý",
+ "▁S ied",
+ "▁Sie d",
+ "▁Si ed",
+ "▁Arbe its",
+ "▁Arbeit s",
+ "▁p ride",
+ "▁pr ide",
+ "▁pri de",
+ "▁sl ope",
+ "▁slo pe",
+ "id é",
+ "grad ient",
+ "▁Дже рела",
+ "▁S H",
+ "▁ SH",
+ "▁раз рабо",
+ "ivers ity",
+ "спо дар",
+ "\\{ \\",
+ "\\ {\\",
+ "▁с тали",
+ "▁ст али",
+ "▁ста ли",
+ "▁стал и",
+ "▁Ein zel",
+ "▁Einz el",
+ "▁rg ba",
+ "▁A nim",
+ "▁An im",
+ "▁ Anim",
+ "▁a lles",
+ "▁al les",
+ "▁all es",
+ "▁alle s",
+ "▁ alles",
+ "ба р",
+ "б ар",
+ "er te",
+ "ert e",
+ "▁réalis é",
+ "▁réal isé",
+ "Inst itut",
+ "▁mar kup",
+ "▁mark up",
+ "▁v ars",
+ "▁var s",
+ "▁va rs",
+ "▁ vars",
+ "▁g am",
+ "▁ga m",
+ "▁Васи ль",
+ "iz za",
+ "izz a",
+ "i zza",
+ "▁C ob",
+ "▁Co b",
+ "▁M etal",
+ "▁Me tal",
+ "▁Met al",
+ "▁Meta l",
+ "▁le ak",
+ "▁L anc",
+ "▁La nc",
+ "▁Lan c",
+ "Sw itch",
+ "De lay",
+ "Del ay",
+ "at uur",
+ "atu ur",
+ "▁че ты",
+ "▁анг лий",
+ "▁leg acy",
+ "▁desar roll",
+ "▁top ological",
+ "▁jewe ils",
+ "▁Nederland se",
+ "▁atmos phere",
+ "ur ban",
+ "urb an",
+ "▁s lov",
+ "▁sl ov",
+ "▁slo v",
+ "▁law yer",
+ "pe cially",
+ "▁altern ate",
+ "▁para met",
+ "▁param et",
+ "▁establish ment",
+ "▁wood s",
+ "▁wo ods",
+ "P D",
+ "▁на и",
+ "▁m ang",
+ "▁ma ng",
+ "▁man g",
+ "▁wechsel te",
+ "сь ку",
+ "ськ у",
+ ". =",
+ "▁fif teen",
+ "SU M",
+ "S UM",
+ "▁F ro",
+ "▁Fr o",
+ "▁L ED",
+ "▁LE D",
+ "▁ LED",
+ "ow ano",
+ "owa no",
+ "owan o",
+ "стви е",
+ "▁D onnées",
+ "to l",
+ "t ol",
+ "ży n",
+ "ż yn",
+ "cre f",
+ "cr ef",
+ "c ref",
+ "стви и",
+ "ho rn",
+ "hor n",
+ "h orn",
+ "▁со об",
+ "▁обо ро",
+ "▁Comp lete",
+ "▁Comple te",
+ "▁ Complete",
+ "“ )",
+ "▁kind ly",
+ "▁Cham ber",
+ "s ég",
+ "W H",
+ "▁amb ient",
+ "к ро",
+ "▁ch eval",
+ "▁che val",
+ "▁на писа",
+ "fl u",
+ "f lu",
+ "▁Off iz",
+ "ma te",
+ "mat e",
+ "m ate",
+ "nat ural",
+ "n atural",
+ "se par",
+ "sep ar",
+ "em pre",
+ "emp re",
+ "View Holder",
+ "f w",
+ "▁le tech",
+ "▁let ech",
+ "▁tra iling",
+ "▁trail ing",
+ "at ri",
+ "atr i",
+ "a tri",
+ "▁G ó",
+ "▁B onn",
+ "▁Bo nn",
+ "▁Bon n",
+ "▁un likely",
+ "▁unlike ly",
+ "RA M",
+ "R AM",
+ "en st",
+ "ens t",
+ "St ats",
+ "Stat s",
+ "▁поли тиче",
+ ")- -(",
+ ")-- (",
+ "▁t rom",
+ "▁tr om",
+ "▁tro m",
+ "!. ..",
+ "! ...",
+ "▁Mean while",
+ "ст ана",
+ "ста на",
+ "стан а",
+ "▁Re ino",
+ "▁Rein o",
+ "▁A rist",
+ "▁Ar ist",
+ "▁Ari st",
+ "$} }%",
+ "$ }}%",
+ "▁so lem",
+ "▁sol em",
+ "▁sole m",
+ "clos ure",
+ "ign ation",
+ "ło d",
+ "ł od",
+ "▁di vor",
+ "▁div or",
+ "▁между народ",
+ "=\" ",
+ "▁m olt",
+ "▁mo lt",
+ "▁mol t",
+ "▁sk ills",
+ "▁skill s",
+ "▁C ir",
+ "▁Ci r",
+ "▁Des pués",
+ "▁Desp ués",
+ "▁l un",
+ "▁lu n",
+ "▁cor on",
+ "▁co ron",
+ "▁Com ics",
+ "сто ри",
+ "стор и",
+ "с тори",
+ "▁It ems",
+ "▁Item s",
+ "▁ Items",
+ "▁Th ink",
+ "и гра",
+ "▁g rows",
+ "▁gr ows",
+ "▁gro ws",
+ "▁grow s",
+ "port al",
+ "por tal",
+ "▁n ich",
+ "▁ni ch",
+ "▁nic h",
+ "▁restrict ions",
+ "▁restriction s",
+ "▁L au",
+ "▁La u",
+ "ше ння",
+ "шен ня",
+ "▁So zial",
+ "▁к і",
+ "▁ кі",
+ "ma na",
+ "man a",
+ "m ana",
+ "▁lie utenant",
+ "Att r",
+ "At tr",
+ "ume ric",
+ "umer ic",
+ "▁dr ives",
+ "▁drive s",
+ "▁dri ves",
+ "▁driv es",
+ "as is",
+ "asi s",
+ "ба й",
+ "N L",
+ "Zyg ote",
+ "phys ics",
+ "▁intern ally",
+ "▁internal ly",
+ "ва ется",
+ "вает ся",
+ "H idden",
+ "▁Да та",
+ "▁un safe",
+ "▁R oc",
+ "▁Ro c",
+ "▁instanti ate",
+ "▁instant iate",
+ "ud ni",
+ "▁R oom",
+ "▁Ro om",
+ "▁П ред",
+ "▁Пре д",
+ "▁m aja",
+ "▁ma ja",
+ "▁maj a",
+ "ach ment",
+ "u uid",
+ "Project s",
+ "Gr e",
+ "G re",
+ "▁в зя",
+ "▁вз я",
+ "▁Bl ood",
+ "▁Blo od",
+ "ic ile",
+ "ici le",
+ "i cile",
+ "▁N ouvelle",
+ "Do es",
+ "▁nie uwe",
+ "ál e",
+ "á le",
+ "an gs",
+ "ang s",
+ "we ak",
+ "▁a antal",
+ "▁aan tal",
+ "▁Е в",
+ "▁Dres den",
+ "▁L ost",
+ "▁Lo st",
+ "▁Los t",
+ "ка та",
+ "▁invol ve",
+ "▁decl aring",
+ "▁decla ring",
+ "▁declar ing",
+ "▁Polit ical",
+ "ér ez",
+ "ére z",
+ "é rez",
+ "ko p",
+ "k op",
+ "not ify",
+ "▁C urt",
+ "▁Cu rt",
+ "▁Cur t",
+ "▁schließ lich",
+ "gh an",
+ "g han",
+ "це на",
+ "цен а",
+ "ц ена",
+ "▁kw iet",
+ "üg el",
+ "üge l",
+ "ü gel",
+ "▁S ob",
+ "▁So b",
+ "▁sub str",
+ "▁subst r",
+ "▁subs tr",
+ "▁ substr",
+ "▁el len",
+ "▁elle n",
+ "▁ell en",
+ "▁ ellen",
+ "ion ario",
+ "iona rio",
+ "en son",
+ "ens on",
+ "enso n",
+ "WI N",
+ "W IN",
+ "спо рт",
+ "em er",
+ "eme r",
+ "e mer",
+ "no me",
+ "nom e",
+ "n ome",
+ "▁sm iled",
+ "▁smile d",
+ "▁Sch midt",
+ "▁sm oke",
+ "▁T oken",
+ "▁To ken",
+ "▁Tok en",
+ "▁ Token",
+ "▁v ague",
+ "▁va gue",
+ "▁pro vision",
+ "▁prov ision",
+ "ya ml",
+ "y aml",
+ "ни тель",
+ "ните ль",
+ "on ial",
+ "oni al",
+ "onia l",
+ "é poque",
+ "▁N C",
+ "▁ NC",
+ "▁N FL",
+ "te ck",
+ "▁al lo",
+ "▁all o",
+ "▁ allo",
+ "▁préc éd",
+ "cent ral",
+ "▁ma jd",
+ "▁maj d",
+ "▁ch rom",
+ "▁chr om",
+ "▁ chrom",
+ "▁Z um",
+ "▁Zu m",
+ "ver so",
+ "vers o",
+ "▁verschied enen",
+ "▁ста ро",
+ "▁стар о",
+ "▁qu elle",
+ "▁que lle",
+ "▁q uelle",
+ "▁quel le",
+ "▁ quelle",
+ "▁r ép",
+ "▁ré p",
+ "RO W",
+ "R OW",
+ "▁i hnen",
+ "▁ih nen",
+ "▁ihn en",
+ "▁sens ible",
+ "▁sen sible",
+ "| $",
+ "▁sc hw",
+ "▁sch w",
+ "▁B R",
+ "▁ BR",
+ "▁O ptions",
+ "▁Option s",
+ "▁Opt ions",
+ "▁ Options",
+ "▁t ens",
+ "▁te ns",
+ "▁ten s",
+ "▁conqu ist",
+ "▁l ieß",
+ "▁lie ß",
+ "▁ ließ",
+ "ov is",
+ "ovi s",
+ "o vis",
+ "▁мі ста",
+ "▁міс та",
+ "▁e la",
+ "▁el a",
+ "▁ ela",
+ "rif ice",
+ "r ifice",
+ "▁l ok",
+ "▁lo k",
+ "▁Queens land",
+ "B inary",
+ "▁Ra hmen",
+ "▁Rah men",
+ "▁a bol",
+ "▁ab ol",
+ "▁ abol",
+ "▁č ást",
+ "▁Ed inburgh",
+ "in de",
+ "ind e",
+ "i nde",
+ "▁calcul ating",
+ "▁calc ulating",
+ "▁O regon",
+ "▁le git",
+ "▁leg it",
+ "▁Nach dem",
+ "at hon",
+ "ath on",
+ "P rivate",
+ "illa ume",
+ "▁ob servable",
+ "▁observ able",
+ "le ans",
+ "lean s",
+ "lea ns",
+ "▁remark ed",
+ "▁h alt",
+ "▁ha lt",
+ "▁hal t",
+ "▁ halt",
+ "ни цы",
+ "ниц ы",
+ "▁st amp",
+ "▁sta mp",
+ "▁stam p",
+ "▁Ad v",
+ "Lo uis",
+ "Lou is",
+ "im ming",
+ "imm ing",
+ "gru ppe",
+ "▁Pol icy",
+ "▁ Policy",
+ "▁v rij",
+ "▁vr ij",
+ "ft rag",
+ "▁off ices",
+ "▁offic es",
+ "▁office s",
+ "▁particip ated",
+ "▁es col",
+ "▁esc ol",
+ "▁\" ",
+ "▁\"< /",
+ "▁nombre uses",
+ "▁d ivid",
+ "▁di vid",
+ "▁div id",
+ "▁ad vis",
+ "▁adv is",
+ "лта ти",
+ "▁= =>",
+ "▁== >",
+ "Ori entation",
+ "ci d",
+ "c id",
+ "Car t",
+ "Ca rt",
+ "C art",
+ "▁m urm",
+ "▁mu rm",
+ "▁mur m",
+ "▁ass ez",
+ "▁asse z",
+ "▁l inking",
+ "▁link ing",
+ "▁lin king",
+ "build ing",
+ "▁rec onna",
+ "▁recon na",
+ "▁s hook",
+ "▁sh ook",
+ "▁sho ok",
+ "man aged",
+ "mana ged",
+ "land a",
+ "lan da",
+ "l anda",
+ "▁Le ón",
+ "▁cré ation",
+ "до й",
+ "oc ity",
+ "oci ty",
+ "o city",
+ "▁w ij",
+ "▁ wij",
+ "▁wie ś",
+ "xt art",
+ "▁M ove",
+ "▁Mo ve",
+ "▁Mov e",
+ "▁ Move",
+ "lung en",
+ "l ungen",
+ "ству ет",
+ "or ney",
+ "orn ey",
+ "option al",
+ "opt ional",
+ "ma cro",
+ "mac ro",
+ "Cond ition",
+ "▁square s",
+ "▁squ ares",
+ "▁mist aken",
+ "▁mistake n",
+ "án t",
+ "á nt",
+ "▁R is",
+ "▁Ri s",
+ "▁sent ences",
+ "▁sentence s",
+ "er ea",
+ "ere a",
+ "e rea",
+ "▁m ij",
+ "▁mi j",
+ "Un d",
+ "U nd",
+ "▁nom br",
+ "z A",
+ "▁In dependent",
+ "▁Indep endent",
+ "▁Independ ent",
+ "▁p review",
+ "▁pre view",
+ "▁prev iew",
+ "▁ preview",
+ "im as",
+ "ima s",
+ "i mas",
+ "▁m ales",
+ "▁ma les",
+ "▁mal es",
+ "▁male s",
+ "in ental",
+ "inen tal",
+ "inent al",
+ "Th ank",
+ "▁p opol",
+ "▁po pol",
+ "▁pop ol",
+ "▁p over",
+ "▁po ver",
+ "▁pov er",
+ "▁gr asp",
+ "▁gra sp",
+ "▁im ped",
+ "▁imp ed",
+ "▁campion ato",
+ "▁W ei",
+ "▁We i",
+ "▁t itled",
+ "▁title d",
+ "▁tit led",
+ "▁A demás",
+ "▁Pass word",
+ "▁ Password",
+ "▁P am",
+ "▁Pa m",
+ "UI LD",
+ "▁ли пня",
+ "wer b",
+ "we rb",
+ "w erb",
+ "........ ........",
+ "▁R ío",
+ "▁te eth",
+ "b p",
+ "▁S W",
+ "▁ SW",
+ "ul aire",
+ "ula ire",
+ "▁se ized",
+ "▁sei zed",
+ "▁St ef",
+ "▁Ste f",
+ "ú l",
+ "▁v iz",
+ "▁vi z",
+ "ion y",
+ "io ny",
+ "i ony",
+ "▁j unt",
+ "▁ju nt",
+ "▁jun t",
+ "▁kter á",
+ "▁wrześ nia",
+ "< >",
+ "▁s urg",
+ "▁su rg",
+ "▁sur g",
+ "▁tu tte",
+ "▁tut te",
+ "▁H ob",
+ "▁Ho b",
+ "по від",
+ "пов ід",
+ "▁w ohl",
+ "▁wo hl",
+ "▁ wohl",
+ "▁t rag",
+ "▁tr ag",
+ "▁tra g",
+ "▁C rown",
+ "▁Cr own",
+ "▁Cro wn",
+ "▁Crow n",
+ "▁tr ova",
+ "▁tro va",
+ "▁trov a",
+ "сто ву",
+ "стов у",
+ "▁Vien na",
+ "ese hen",
+ "▁met ropol",
+ "▁reflect ed",
+ "те та",
+ "тет а",
+ "т ета",
+ "▁trad uc",
+ "▁tradu c",
+ "▁B ast",
+ "▁Bas t",
+ "▁Ba st",
+ "▁ersch ien",
+ "wo ord",
+ "() \"",
+ "( )\"",
+ "ta let",
+ "tal et",
+ "t alet",
+ "▁ro ads",
+ "▁road s",
+ "ве дения",
+ "веде ния",
+ "ühr ung",
+ "▁c ogn",
+ "▁co gn",
+ "▁V alle",
+ "▁Val le",
+ "▁Va lle",
+ "▁Vall e",
+ "▁land ing",
+ "▁lan ding",
+ "▁Re gex",
+ "▁Reg ex",
+ "▁I owa",
+ "▁Io wa",
+ "dz iał",
+ "d ział",
+ "▁erre ichte",
+ "au m",
+ "a um",
+ "▁found er",
+ "▁fo under",
+ "▁fou nder",
+ "ap olis",
+ "Comp iler",
+ "▁k op",
+ "▁ko p",
+ "▁ kop",
+ "▁m arc",
+ "▁ma rc",
+ "▁mar c",
+ "▁те ритор",
+ ")) `",
+ ") )`",
+ "▁l ei",
+ "▁le i",
+ "▁ lei",
+ "ge on",
+ "geo n",
+ "▁weap ons",
+ "▁weapon s",
+ "▁h orn",
+ "▁hor n",
+ "▁ho rn",
+ "▁ horn",
+ "▁el if",
+ "▁ elif",
+ "▁Cap ital",
+ "▁Capit al",
+ "ć e",
+ "▁for all",
+ "▁ forall",
+ "▁э та",
+ "pre view",
+ "prev iew",
+ "p review",
+ "▁D NA",
+ "▁s id",
+ "▁si d",
+ "or ch",
+ "▁R as",
+ "▁Ra s",
+ "▁a rab",
+ "▁ar ab",
+ "▁ara b",
+ "▁ arab",
+ "Be st",
+ "B est",
+ "▁с чита",
+ "▁L ópez",
+ "an ça",
+ "▁fun kc",
+ "▁t ienen",
+ "▁tiene n",
+ "▁ti enen",
+ "▁tie nen",
+ "; &",
+ "m useum",
+ "▁E rr",
+ "▁Er r",
+ "▁ Err",
+ "▁re sort",
+ "▁res ort",
+ "No v",
+ "N ov",
+ "▁k al",
+ "▁ka l",
+ "▁ kal",
+ "M W",
+ "ш ь",
+ "an chor",
+ "anc hor",
+ "anch or",
+ "▁ро ман",
+ "le ading",
+ "lea ding",
+ "▁m anten",
+ "▁ma nten",
+ "▁man ten",
+ "▁mant en",
+ "▁Sil va",
+ "da de",
+ "d ade",
+ "▁design ated",
+ "▁rev ista",
+ "▁revis ta",
+ "O ct",
+ "per cent",
+ "▁у ні",
+ "ident ifier",
+ "ma ss",
+ "mas s",
+ "m ass",
+ "@ @",
+ "uls ion",
+ "ger meister",
+ "g ermeister",
+ "▁pred icted",
+ "▁predict ed",
+ "▁с ви",
+ "жно й",
+ "ж ной",
+ "▁Er geb",
+ "▁c ust",
+ "▁cu st",
+ "▁remove s",
+ "▁remov es",
+ "ch arg",
+ "char g",
+ "cha rg",
+ "при мер",
+ "▁for ming",
+ "▁form ing",
+ "as ma",
+ "asm a",
+ "std out",
+ "F un",
+ "ym e",
+ "y me",
+ "ter ed",
+ "te red",
+ "tere d",
+ "t ered",
+ "urs ive",
+ "ig hed",
+ "igh ed",
+ "▁сле д",
+ "▁ след",
+ "ver band",
+ "verb and",
+ "▁LO G",
+ "▁ LOG",
+ "ra ms",
+ "ram s",
+ "r ams",
+ "éo n",
+ "é on",
+ "en dra",
+ "end ra",
+ "▁Be reich",
+ "▁Bere ich",
+ "▁tempor al",
+ "▁temp oral",
+ "▁tempo ral",
+ "▁lang ue",
+ "▁lan gue",
+ "▁I nn",
+ "▁In n",
+ "▁more over",
+ "▁tutorial s",
+ "M iddle",
+ "▁совет ский",
+ "▁mainten ance",
+ "as ures",
+ "asure s",
+ "▁vál to",
+ "BA SE",
+ "B ASE",
+ "▁disapp ear",
+ "ски я",
+ "▁conoc ido",
+ "▁На у",
+ "▁Li bert",
+ "▁Lib ert",
+ "▁Liber t",
+ "▁Har old",
+ "▁life time",
+ "▁lif etime",
+ "▁T ür",
+ "▁za wod",
+ "▁zaw od",
+ "om ic",
+ "omi c",
+ "o mic",
+ "▁Retrie ved",
+ "arch itecture",
+ "č ka",
+ "iform es",
+ "develop ment",
+ "ord nung",
+ "In f",
+ "le ben",
+ "leb en",
+ "l eben",
+ "▁St ars",
+ "▁Sta rs",
+ "▁Star s",
+ "sign al",
+ "sig nal",
+ "▁gram mar",
+ "▁cor so",
+ "▁cors o",
+ "▁W agner",
+ "▁ge ht",
+ "▁royal e",
+ "▁roy ale",
+ "wa rn",
+ "war n",
+ "w arn",
+ "um bled",
+ "umb led",
+ "umble d",
+ "▁inst it",
+ "▁ins tit",
+ "▁Ш и",
+ "h h",
+ "▁ref uge",
+ "▁favor ite",
+ "ier to",
+ "iert o",
+ "▁cond ado",
+ "▁T her",
+ "▁The r",
+ "▁Th er",
+ "▁человек а",
+ "▁челове ка",
+ "▁F ood",
+ "▁Foo d",
+ "▁Fo od",
+ "▁se izo",
+ "▁sei zo",
+ "▁Init ialize",
+ "▁Initial ize",
+ "▁con nu",
+ "▁conn u",
+ "▁over lap",
+ "▁E mil",
+ "▁Em il",
+ "▁Mart í",
+ "▁жовт ня",
+ "er va",
+ "erv a",
+ "▁bo ats",
+ "▁boat s",
+ "a ções",
+ "▁der rot",
+ "▁m alloc",
+ "▁mal loc",
+ "▁ malloc",
+ "▁con ject",
+ "▁conj ect",
+ "j k",
+ "▁s are",
+ "▁sa re",
+ "▁sar e",
+ "ле мен",
+ "лем ен",
+ "▁s ums",
+ "▁su ms",
+ "▁sum s",
+ "Author ization",
+ "▁K un",
+ "▁Ku n",
+ "]$ ,",
+ "] $,",
+ "geme inde",
+ "gemein de",
+ "g emeinde",
+ "od ot",
+ "odo t",
+ "o dot",
+ "de fin",
+ "def in",
+ "▁e mission",
+ "▁em ission",
+ "▁Кра с",
+ "▁app art",
+ "▁ap part",
+ "▁appar t",
+ "▁stop ping",
+ "▁sto pping",
+ "▁С ред",
+ "▁conj ug",
+ "▁ins ight",
+ "▁Broad cast",
+ "▁PM ID",
+ "▁adv antages",
+ "▁advantage s",
+ "en es",
+ "ene s",
+ "e nes",
+ "▁res idence",
+ "▁resid ence",
+ "lj en",
+ "l jen",
+ "iss eur",
+ "isse ur",
+ "▁pubblic ato",
+ "▁Git Hub",
+ "▁Per u",
+ "▁Pe ru",
+ "▁galax ies",
+ "▁annot ations",
+ "▁annotation s",
+ "ga s",
+ "g as",
+ "▁ré pond",
+ "▁rép ond",
+ "J s",
+ "▁independent ly",
+ "▁independ ently",
+ "N P",
+ "▁in qu",
+ "▁gr ounds",
+ "▁ground s",
+ "Com ponents",
+ "Component s",
+ "▁a nten",
+ "▁an ten",
+ "▁ant en",
+ "▁ante n",
+ "▁ anten",
+ "▁в з",
+ "▁h os",
+ "▁ho s",
+ "▁ hos",
+ "▁s int",
+ "▁si nt",
+ "▁sin t",
+ "▁h iding",
+ "▁hi ding",
+ "▁hid ing",
+ "▁wojew ództ",
+ "Message s",
+ "Mess ages",
+ "▁по каза",
+ "▁пока за",
+ "== =",
+ "= ==",
+ "▁Ab stract",
+ "▁ Abstract",
+ "▁l äng",
+ "▁län g",
+ "▁lä ng",
+ "▁Form ula",
+ "da wn",
+ "d awn",
+ "▁design s",
+ "Im g",
+ "▁Portug uese",
+ "▁incl uy",
+ "▁inclu y",
+ "avig ator",
+ "▁Bro thers",
+ "▁cont inent",
+ "▁contin ent",
+ "▁evident ly",
+ "ra ce",
+ "rac e",
+ "r ace",
+ "ць кого",
+ "▁re ck",
+ "▁rec k",
+ "▁ reck",
+ "▁сер пня",
+ "▁G rey",
+ "▁Gr ey",
+ "▁Gre y",
+ "▁appe al",
+ "▁un like",
+ "▁power shell",
+ "▁pow ershell",
+ "▁powers hell",
+ "▁r acc",
+ "▁ra cc",
+ "▁rac c",
+ "fer s",
+ "fe rs",
+ "f ers",
+ "▁bur ning",
+ "▁burn ing",
+ "fas st",
+ "fass t",
+ "inst alled",
+ "install ed",
+ "▁G ive",
+ "▁Gi ve",
+ "▁col onial",
+ "▁colon ial",
+ "▁ €",
+ "▁R ö",
+ "▁ch rist",
+ "▁chr ist",
+ "ne hm",
+ "neh m",
+ "та м",
+ "▁cor po",
+ "▁con virti",
+ "yt er",
+ "y ter",
+ "S ym",
+ "▁Gree ce",
+ "▁m oth",
+ "▁mo th",
+ "▁mot h",
+ "▁Joh an",
+ "▁Jo han",
+ "▁mon arch",
+ "▁Down load",
+ "▁ Download",
+ "▁c raft",
+ "▁cr aft",
+ "▁cra ft",
+ "▁ craft",
+ "u ž",
+ "▁Lu ke",
+ "▁suf fix",
+ "▁suff ix",
+ "\\ /",
+ "Ha ve",
+ "H ave",
+ "▁ка рь",
+ "▁кар ь",
+ "▁comfort able",
+ "▁t ips",
+ "▁tip s",
+ "▁ti ps",
+ "▁П ісля",
+ "▁бро ја",
+ "▁ин форма",
+ "M Q",
+ "бра н",
+ "б ран",
+ "▁t x",
+ "▁ tx",
+ "▁sl aves",
+ "▁sla ves",
+ "▁slave s",
+ "▁fire wall",
+ "▁For ces",
+ "▁Force s",
+ "at if",
+ "ati f",
+ "▁Qu ellen",
+ "▁thé âtre",
+ "ль ных",
+ "▁располо жен",
+ "▁Det ails",
+ "▁ Details",
+ "k ą",
+ "▁long itud",
+ "IN ST",
+ "▁n aval",
+ "▁na val",
+ "▁nav al",
+ "Fern seh",
+ "es sel",
+ "ess el",
+ "esse l",
+ "Gr ad",
+ "G rad",
+ "▁be lang",
+ "▁bel ang",
+ "▁a ggi",
+ "▁ag gi",
+ "▁ aggi",
+ "Zygote Init",
+ "ł ów",
+ "▁S ug",
+ "▁Su g",
+ "si l",
+ "s il",
+ "▁ex terior",
+ "щ і",
+ "OR D",
+ "en ser",
+ "ens er",
+ "ense r",
+ "▁rapid e",
+ "▁rap ide",
+ "▁тем пера",
+ "in cie",
+ "inci e",
+ "inc ie",
+ "S i",
+ "av am",
+ "ava m",
+ "ar ded",
+ "ard ed",
+ "arde d",
+ "▁Ad ded",
+ "▁Add ed",
+ "End point",
+ "hard t",
+ "har dt",
+ "ст ран",
+ "стра н",
+ "стр ан",
+ "▁est ilo",
+ "▁H az",
+ "▁Ha z",
+ "▁mus ste",
+ "▁muss te",
+ "u o",
+ "ii i",
+ "i ii",
+ "▁ř í",
+ "▁ ří",
+ "an zen",
+ "anz en",
+ "anze n",
+ "же ний",
+ "ah a",
+ "a ha",
+ "ARN ING",
+ "▁re nov",
+ "▁ren ov",
+ "▁div ine",
+ "▁convin ced",
+ "▁hum ans",
+ "▁human s",
+ "▁hu mans",
+ "▁depart ure",
+ "▁Med iter",
+ "▁Medi ter",
+ "q a",
+ "▁poss essed",
+ "▁possess ed",
+ "▁цер кви",
+ "gi v",
+ "g iv",
+ "▁сво ї",
+ "▁Ort ste",
+ "▁Orts te",
+ "R ich",
+ "pu is",
+ "p uis",
+ "in crement",
+ "▁Hann over",
+ "▁u cz",
+ "Do ne",
+ "Don e",
+ "D one",
+ "▁alg uns",
+ "FI X",
+ "F IX",
+ "▁Her itage",
+ "remove Class",
+ "фе р",
+ "ф ер",
+ "▁a bc",
+ "▁ab c",
+ "▁ abc",
+ "D r",
+ "▁се мей",
+ "▁сем ей",
+ "{ :",
+ "▁se ule",
+ "▁seu le",
+ "▁seul e",
+ "zeich nungen",
+ "zeichnung en",
+ "ad dy",
+ "add y",
+ "▁Par ís",
+ "üss eld",
+ "▁re ception",
+ "▁rece ption",
+ "fo lio",
+ "fol io",
+ "ti ny",
+ "t iny",
+ "▁recens ement",
+ "▁N ur",
+ "▁Nu r",
+ "▁k ier",
+ "▁ki er",
+ "▁g mina",
+ "▁gmin a",
+ "sta at",
+ "ánd ose",
+ "че ская",
+ "▁spe aker",
+ "▁speak er",
+ "▁expon ential",
+ "▁exponent ial",
+ "▁D ieu",
+ "▁Die u",
+ "▁Di eu",
+ "▁при з",
+ "▁пр из",
+ "▁Raf ael",
+ "▁gg plot",
+ "▁Tem plate",
+ "▁Temp late",
+ "▁ Template",
+ "ou re",
+ "our e",
+ "o ure",
+ "▁In ner",
+ "▁Inn er",
+ "▁ Inner",
+ "og ne",
+ "ogn e",
+ "ig are",
+ "iga re",
+ "▁Ar te",
+ "▁Art e",
+ "▁C ov",
+ "▁Co v",
+ "▁auf grund",
+ "▁Б ы",
+ "▁cerem ony",
+ "▁S part",
+ "▁Sp art",
+ "ject ive",
+ "y i",
+ "▁in izi",
+ "▁l atin",
+ "▁lat in",
+ "▁Never theless",
+ "▁D one",
+ "▁Do ne",
+ "▁Don e",
+ "▁ Done",
+ "т ря",
+ "▁A rr",
+ "▁Ar r",
+ "▁ Arr",
+ "se ason",
+ "▁скла ду",
+ "▁pod czas",
+ "▁Beaut iful",
+ "▁Weltkrie g",
+ "▁з о",
+ "▁ зо",
+ "▁over come",
+ "▁Pr aha",
+ "▁Pra ha",
+ "▁рай ону",
+ "▁райо ну",
+ "▁район у",
+ "▁sub scription",
+ "▁subs cription",
+ "▁subscri ption",
+ "ig ent",
+ "igen t",
+ "ige nt",
+ "i gent",
+ "▁по ка",
+ "la tex",
+ "lat ex",
+ "late x",
+ "▁b each",
+ "▁be ach",
+ "▁ро ках",
+ "ge g",
+ "g eg",
+ "▁pro bl",
+ "▁prob l",
+ "arg uments",
+ "argument s",
+ "▁organ izations",
+ "▁organiz ations",
+ "▁organization s",
+ "▁N an",
+ "▁Na n",
+ "▁st ones",
+ "▁sto nes",
+ "▁stone s",
+ "▁H unter",
+ "▁Hun ter",
+ "▁regular ly",
+ "шо го",
+ "ш ого",
+ "▁flex ible",
+ "op ts",
+ "opt s",
+ "o pts",
+ "á ř",
+ "wi tz",
+ "w itz",
+ "▁' )",
+ "▁ ')",
+ "PA SS",
+ "P ASS",
+ "▁k raj",
+ "▁kr aj",
+ "▁kra j",
+ "▁f ake",
+ "▁fa ke",
+ "he its",
+ "heit s",
+ "os ph",
+ "osp h",
+ "parse Int",
+ "F ALSE",
+ "▁prof ess",
+ "▁profes s",
+ "pe ople",
+ "▁pre cip",
+ "▁prec ip",
+ "dir name",
+ "▁per pet",
+ "▁Up dated",
+ "▁Update d",
+ "▁ Updated",
+ "ra yed",
+ "ray ed",
+ "▁prov oc",
+ "▁тра вня",
+ "▁трав ня",
+ "▁categ orie",
+ "▁categor ie",
+ "▁те о",
+ "с ну",
+ "ot r",
+ "o tr",
+ "▁Вер хов",
+ "▁comp ét",
+ "Co st",
+ "C ost",
+ "▁w ider",
+ "▁wide r",
+ "▁wid er",
+ "▁Ob viously",
+ "пи сан",
+ "писа н",
+ "пис ан",
+ "▁на стоя",
+ "▁see king",
+ "▁seek ing",
+ "() ),",
+ "()) ,",
+ "( )),",
+ "▁é quipe",
+ "▁équip e",
+ "▁ équipe",
+ "▁comm its",
+ "▁commit s",
+ "▁S vens",
+ "▁Sv ens",
+ "я бре",
+ "at ern",
+ "ate rn",
+ "ater n",
+ "a tern",
+ "▁h eter",
+ "▁he ter",
+ "▁het er",
+ "▁Boot strap",
+ "én é",
+ "é né",
+ "▁deriv atives",
+ "▁derivative s",
+ "▁Det roit",
+ "▁provin cial",
+ "▁provincia l",
+ "onom ie",
+ "E B",
+ "▁c uer",
+ "▁cu er",
+ "▁от носи",
+ "▁отно си",
+ "▁не й",
+ "▁н ей",
+ "▁ ней",
+ ") ».",
+ "▁Ci udad",
+ "IA L",
+ "I AL",
+ "zy st",
+ "z yst",
+ ")\" )",
+ ") \")",
+ "▁Al c",
+ "bl ogs",
+ "blog s",
+ "blo gs",
+ "b logs",
+ "▁par mi",
+ "▁Album s",
+ "▁Alb ums",
+ "▁Bo liv",
+ "▁Bol iv",
+ "▁c lés",
+ "▁cl és",
+ "Product s",
+ "uer do",
+ "▁ge lang",
+ "▁gel ang",
+ "zn ik",
+ "z nik",
+ "ha gen",
+ "h agen",
+ "an onymous",
+ "▁sv g",
+ "▁ svg",
+ "▁Cons eil",
+ "▁Conse il",
+ "▁A ri",
+ "▁Ar i",
+ "col i",
+ "co li",
+ "c oli",
+ "▁c zy",
+ "▁cz y",
+ "▁ czy",
+ "▁C V",
+ "▁ CV",
+ "▁f ord",
+ "▁for d",
+ "▁fo rd",
+ "▁ ford",
+ "▁Au ßer",
+ "▁Auß er",
+ "▁C I",
+ "▁ CI",
+ "▁t empt",
+ "▁tem pt",
+ "▁temp t",
+ "▁Organ isation",
+ "á š",
+ "▁cy cles",
+ "▁cycle s",
+ "▁cycl es",
+ "▁ges lacht",
+ "▁лю дей",
+ "ým i",
+ "ý mi",
+ "▁S pieler",
+ "▁Spiel er",
+ "ef e",
+ "e fe",
+ "▁Mar vel",
+ "▁por tal",
+ "▁port al",
+ "▁porta l",
+ "▁ portal",
+ "▁Сер г",
+ "▁g rado",
+ "▁gr ado",
+ "▁gra do",
+ "▁grad o",
+ "▁hand lers",
+ "▁handle rs",
+ "▁handler s",
+ "▁Inter face",
+ "▁ Interface",
+ "AM E",
+ "A ME",
+ "▁ser iously",
+ "▁serious ly",
+ "▁B inding",
+ "▁Bin ding",
+ "▁Bind ing",
+ "▁ Binding",
+ "▁R ang",
+ "▁Ra ng",
+ "▁Ran g",
+ "▁n ada",
+ "▁na da",
+ "▁nad a",
+ "oc e",
+ "o ce",
+ "▁inte gra",
+ "▁integr a",
+ "oc racy",
+ "ocr acy",
+ "▁аль бо",
+ "▁st ability",
+ "▁stabil ity",
+ "Un s",
+ "U ns",
+ "▁v eter",
+ "▁ve ter",
+ "-- ----+",
+ "---- --+",
+ "--- ---+",
+ "------ +",
+ "----- -+",
+ "▁se rait",
+ "▁ser ait",
+ "▁sera it",
+ "▁om itted",
+ "▁uncertain ty",
+ "on ian",
+ "oni an",
+ "onia n",
+ "▁re sto",
+ "▁r esto",
+ "▁res to",
+ "▁rest o",
+ "▁же лез",
+ "▁од ной",
+ "▁одно й",
+ "▁Bevölker ung",
+ "▁K raft",
+ "▁Kr aft",
+ "▁Kra ft",
+ "ст р",
+ "▁Mos cow",
+ "la ne",
+ "lan e",
+ "l ane",
+ "ar ab",
+ "ara b",
+ "a rab",
+ "▁s pole",
+ "▁sp ole",
+ "▁spo le",
+ "▁сво его",
+ "? :",
+ "ST ART",
+ "▁ин тер",
+ "▁инте р",
+ "▁sym pt",
+ "▁Loren zo",
+ "▁ej ec",
+ "▁pros per",
+ "DA T",
+ "D AT",
+ "лимпи й",
+ "▁sh apes",
+ "▁shape s",
+ "value Of",
+ "▁associ ate",
+ "▁Med ien",
+ "▁Medi en",
+ "EN V",
+ "▁с ре",
+ "▁држа ве",
+ "▁the ories",
+ "he b",
+ "h eb",
+ "▁Way ne",
+ "▁String Builder",
+ "iw ers",
+ "i wers",
+ "▁M aps",
+ "▁Ma ps",
+ "▁Map s",
+ "Ph ys",
+ "\\} \\",
+ "\\ }\\",
+ "▁P arte",
+ "▁Par te",
+ "▁Part e",
+ "▁Hud son",
+ "ло н",
+ "л он",
+ "L ng",
+ "▁р ы",
+ "▁ ры",
+ "ст ей",
+ "сте й",
+ "с тей",
+ "la u",
+ "l au",
+ "an cer",
+ "ance r",
+ "anc er",
+ "▁Co ppa",
+ "▁Cop pa",
+ "▁вій сь",
+ "▁u cc",
+ "▁Pat tern",
+ "▁ Pattern",
+ "▁gar bage",
+ "▁Gon zález",
+ "▁Encyc lop",
+ "et ten",
+ "ett en",
+ "ette n",
+ "Ex ternal",
+ "Ext ernal",
+ "RE F",
+ "R EF",
+ "> ;",
+ "lij ke",
+ "lijk e",
+ "▁inter sect",
+ "▁Un less",
+ "▁de eper",
+ "▁deep er",
+ "▁ж і",
+ "▁ жі",
+ "de nt",
+ "den t",
+ "d ent",
+ "le f",
+ "l ef",
+ "▁ch anson",
+ "▁diff us",
+ "▁pr imi",
+ "▁prim i",
+ "▁pri mi",
+ "▁W ieder",
+ "▁Wi eder",
+ "▁Wie der",
+ "▁a ws",
+ "▁aw s",
+ "▁ aws",
+ "ow ana",
+ "owa na",
+ "owan a",
+ "▁so ciale",
+ "▁social e",
+ "▁soci ale",
+ "▁soc iale",
+ "ik k",
+ "i kk",
+ "ль ной",
+ "льно й",
+ "▁div isions",
+ "▁division s",
+ "▁divis ions",
+ "ло со",
+ "▁Cl aud",
+ "▁Cla ud",
+ "▁Y a",
+ "▁v oce",
+ "▁vo ce",
+ "▁voc e",
+ "▁B ranch",
+ "▁Br anch",
+ "▁Bran ch",
+ "▁f itted",
+ "▁fit ted",
+ "or r",
+ "o rr",
+ "ôt el",
+ "ô tel",
+ "st roke",
+ "str oke",
+ "list ener",
+ "listen er",
+ "im an",
+ "ima n",
+ "i man",
+ "во сто",
+ "▁Sh ah",
+ "Int roduction",
+ "▁new line",
+ "▁t ile",
+ "▁til e",
+ "▁ti le",
+ "'] ))",
+ "']) )",
+ "' ]))",
+ "▁trav aux",
+ "▁trava ux",
+ "CON FIG",
+ "▁quadr atic",
+ "on neur",
+ "onn eur",
+ "onne ur",
+ "▁Gi org",
+ "▁ident ific",
+ "éric aine",
+ "érica ine",
+ "▁UI View",
+ "▁ UIView",
+ "▁Lib eral",
+ "▁Liber al",
+ "▁K och",
+ "▁Ko ch",
+ "▁Berlin er",
+ "▁Berl iner",
+ "▁not ifications",
+ "▁notification s",
+ "▁Su san",
+ "▁Sus an",
+ "▁c adre",
+ "▁cad re",
+ "▁K loster",
+ "▁Kl oster",
+ "▁exam ine",
+ "▁е дин",
+ "▁еди н",
+ "▁UN ION",
+ "▁al ten",
+ "▁alt en",
+ "▁alte n",
+ "▁f init",
+ "▁fin it",
+ "▁fi nit",
+ "▁pe dig",
+ "▁ped ig",
+ "cy k",
+ "c yk",
+ "▁mouv ement",
+ "▁mou vement",
+ "IO S",
+ "I OS",
+ "▁бри тан",
+ "▁b out",
+ "▁bo ut",
+ "▁bou t",
+ "▁ав тор",
+ "▁авто р",
+ "ниц тво",
+ "ет о",
+ "е то",
+ "le ra",
+ "ler a",
+ "l era",
+ "cl s",
+ "c ls",
+ "▁L ey",
+ "▁Le y",
+ "am y",
+ "a my",
+ "ag ens",
+ "age ns",
+ "agen s",
+ "a gens",
+ "as hed",
+ "ash ed",
+ "▁ok rę",
+ "г ро",
+ "el lett",
+ "ell ett",
+ "elle tt",
+ "▁F ellow",
+ "▁Fel low",
+ "▁manif old",
+ "$) ,",
+ "$ ),",
+ "ld er",
+ "l der",
+ "▁v oz",
+ "▁vo z",
+ "▁be gg",
+ "▁beg g",
+ "▁b aron",
+ "▁bar on",
+ "▁ba ron",
+ "▁f id",
+ "▁fi d",
+ "▁f iring",
+ "▁fi ring",
+ "▁fir ing",
+ "il da",
+ "ild a",
+ "de k",
+ "d ek",
+ "A U",
+ "it are",
+ "ita re",
+ "itar e",
+ "▁A ra",
+ "▁Ar a",
+ "▁Ex it",
+ "▁ Exit",
+ "▁cin emat",
+ "▁cinema t",
+ "▁int ros",
+ "▁intr os",
+ "▁intro s",
+ "▁contact s",
+ "пе ни",
+ "пен и",
+ "▁m öglich",
+ "▁Singap ore",
+ "str öm",
+ "▁H ern",
+ "▁He rn",
+ "▁Her n",
+ "▁six th",
+ "▁public ations",
+ "▁pub lications",
+ "▁publication s",
+ "vi e",
+ "v ie",
+ "▁H at",
+ "▁Ha t",
+ "▁accept ing",
+ "á c",
+ "st wo",
+ "s two",
+ "▁quiet ly",
+ "Ph oto",
+ "▁b asket",
+ "▁bas ket",
+ "▁eigen values",
+ "▁mé dec",
+ "▁méd ec",
+ "▁O limp",
+ "▁Ol imp",
+ "▁цер ков",
+ "al in",
+ "ali n",
+ "a lin",
+ "con sum",
+ "cons um",
+ "▁l assen",
+ "▁las sen",
+ "▁ lassen",
+ "▁ан ти",
+ "▁S eq",
+ "▁Se q",
+ "▁ Seq",
+ "\"; \r",
+ "\" ;\r",
+ "ra re",
+ "rar e",
+ "r are",
+ "▁$ |\\",
+ "▁$| \\",
+ "▁n ick",
+ "▁ni ck",
+ "▁nic k",
+ "▁ nick",
+ "df lare",
+ "V ec",
+ "bind ung",
+ "▁b g",
+ "▁ bg",
+ "ch anges",
+ "change s",
+ "chan ges",
+ "Day s",
+ "Da ys",
+ "D ays",
+ "▁M ouse",
+ "▁Mo use",
+ "▁Mou se",
+ "▁ Mouse",
+ "▁wait ed",
+ "▁wa ited",
+ "▁Tom atoes",
+ "▁f as",
+ "▁fa s",
+ "▁ fas",
+ "ver te",
+ "vert e",
+ "v erte",
+ "▁success ion",
+ "▁succ ession",
+ "со р",
+ "с ор",
+ "▁s ols",
+ "▁so ls",
+ "▁sol s",
+ "▁R ender",
+ "▁Re nder",
+ "▁Ren der",
+ "▁ Render",
+ "▁lead ership",
+ "▁leader ship",
+ "▁leaders hip",
+ "▁signific ance",
+ "▁ga uche",
+ "▁gau che",
+ "ca no",
+ "can o",
+ "c ano",
+ "▁P ie",
+ "▁Pi e",
+ "enso ort",
+ "▁cam bio",
+ "▁camb io",
+ "▁у з",
+ "▁ende av",
+ "Comp leted",
+ "Comple ted",
+ "Complete d",
+ "▁Архив ная",
+ "j d",
+ "ór ico",
+ "ó rico",
+ "▁church es",
+ "▁an imate",
+ "▁anim ate",
+ "▁ani mate",
+ "▁ animate",
+ "S G",
+ "comp ute",
+ "comput e",
+ "▁uniform ly",
+ "IN IT",
+ "ll es",
+ "lle s",
+ "l les",
+ "Http Request",
+ "К о",
+ "Di ff",
+ "D iff",
+ "▁s ah",
+ "▁sa h",
+ "air o",
+ "ai ro",
+ "a iro",
+ "may be",
+ "UT E",
+ "U TE",
+ "▁D ow",
+ "▁Do w",
+ "hu man",
+ "hum an",
+ "h uman",
+ "▁au rait",
+ "▁aur ait",
+ "dar k",
+ "d ark",
+ "▁re pair",
+ "▁rep air",
+ "▁n er",
+ "▁ne r",
+ "▁ ner",
+ "▁D abei",
+ "▁Da bei",
+ "▁Bo tan",
+ "▁Bot an",
+ "Or iginal",
+ "Origin al",
+ "az ă",
+ "▁N AT",
+ "▁NA T",
+ "im per",
+ "imp er",
+ "▁Y outh",
+ "▁You th",
+ "th es",
+ "the s",
+ "t hes",
+ "▁окру га",
+ "▁F lo",
+ "▁Fl o",
+ "▁break fast",
+ "ur ls",
+ "url s",
+ "▁über nahm",
+ "ár ios",
+ "ário s",
+ "á rios",
+ "▁O range",
+ "▁Or ange",
+ "▁Aff airs",
+ "sk e",
+ "s ke",
+ "▁not ify",
+ "▁ notify",
+ "imo ine",
+ "▁Ar ena",
+ "▁Are na",
+ "▁lib eral",
+ "▁liber al",
+ "▁o bec",
+ "▁ob ec",
+ "if a",
+ "i fa",
+ "gu ez",
+ "gue z",
+ "g uez",
+ "ion o",
+ "io no",
+ "i ono",
+ "пера тор",
+ "▁ret ained",
+ "▁retain ed",
+ "fa iled",
+ "fail ed",
+ "bin e",
+ "bi ne",
+ "b ine",
+ "т ных",
+ "▁CG Rect",
+ "cam era",
+ "ide note",
+ "iden ote",
+ "K B",
+ "▁l ights",
+ "▁light s",
+ "▁P ictures",
+ "▁Picture s",
+ "▁Squad ron",
+ "▁V olk",
+ "▁Vol k",
+ "▁b urg",
+ "▁bu rg",
+ "▁bur g",
+ "▁ burg",
+ ", ]",
+ "G i",
+ "ê que",
+ "make Text",
+ "▁every body",
+ "▁Hy per",
+ "▁Hyp er",
+ "▁De ux",
+ "▁gl ory",
+ "▁glo ry",
+ "pres entation",
+ "present ation",
+ "on ica",
+ "oni ca",
+ "onic a",
+ "o nica",
+ "▁fr ère",
+ "ag et",
+ "age t",
+ "a get",
+ "▁h ints",
+ "▁hint s",
+ "▁hin ts",
+ "▁t unnel",
+ "▁tun nel",
+ "▁E j",
+ "ál is",
+ "á lis",
+ "▁V iv",
+ "▁Vi v",
+ "ствен ных",
+ "▁c aps",
+ "▁cap s",
+ "▁ca ps",
+ "PA RT",
+ "PAR T",
+ "P ART",
+ "oc i",
+ "o ci",
+ "▁p rices",
+ "▁pr ices",
+ "▁pri ces",
+ "▁price s",
+ "curr ency",
+ "c urrency",
+ "▁a chter",
+ "▁ach ter",
+ "▁acht er",
+ "rom agnet",
+ "ge nder",
+ "gen der",
+ "gende r",
+ "g ender",
+ "▁s uis",
+ "▁su is",
+ "vers ions",
+ "version s",
+ "▁Tr aining",
+ "▁Tra ining",
+ "▁Train ing",
+ "in side",
+ "ins ide",
+ "eg e",
+ "e ge",
+ "▁tot ale",
+ "▁total e",
+ "▁D aar",
+ "▁Da ar",
+ "▁grud nia",
+ "▁I er",
+ "▁occasion s",
+ "▁occas ions",
+ "▁k de",
+ "▁tensor flow",
+ "▁ tensorflow",
+ "▁ó r",
+ "▁ ór",
+ "Method s",
+ "▁loop ing",
+ "▁direct eur",
+ "k ę",
+ "▁is omorphism",
+ "▁Jo ão",
+ "▁al igned",
+ "▁align ed",
+ "▁ aligned",
+ "он ов",
+ "о нов",
+ "ur ger",
+ "urg er",
+ "▁n ova",
+ "▁no va",
+ "▁nov a",
+ "mor row",
+ "m orrow",
+ "al tern",
+ "alt ern",
+ "alter n",
+ "H D",
+ "▁m arqu",
+ "▁mar qu",
+ "at ivas",
+ "ativ as",
+ "ati vas",
+ "ativa s",
+ "gg reg",
+ "g greg",
+ "▁anci en",
+ "▁anc ien",
+ "ni t",
+ "n it",
+ "▁sec ured",
+ "▁secure d",
+ "mi er",
+ "m ier",
+ "▁O le",
+ "▁Ol e",
+ "▁ин те",
+ "▁m inus",
+ "▁min us",
+ "▁ minus",
+ "▁clear er",
+ "▁n ello",
+ "▁nel lo",
+ "▁nell o",
+ "▁információ k",
+ "▁pro pre",
+ "▁prop re",
+ "{ .",
+ "il og",
+ "ilo g",
+ "i log",
+ "▁Qu ick",
+ "▁acc us",
+ "▁ac cus",
+ "emp loyee",
+ "▁з у",
+ "▁ зу",
+ "ць кий",
+ "фі цій",
+ "▁пу бли",
+ "▁ публи",
+ "▁b ent",
+ "▁be nt",
+ "▁ben t",
+ "▁по зво",
+ "▁П ор",
+ "▁По р",
+ "áz í",
+ "án ico",
+ "á nico",
+ "empty set",
+ "▁sur tout",
+ "re no",
+ "ren o",
+ "r eno",
+ "un ya",
+ "▁у ез",
+ "▁Mill ionen",
+ "▁listop ada",
+ "▁M aine",
+ "▁Ma ine",
+ "▁Main e",
+ "▁Mai ne",
+ "▁gru pos",
+ "▁grupo s",
+ "▁grup os",
+ "▁St orage",
+ "▁Sto rage",
+ "▁ Storage",
+ "▁app le",
+ "▁ap ple",
+ "▁ apple",
+ "▁L ö",
+ "ou sed",
+ "ous ed",
+ "ouse d",
+ "o used",
+ "д ро",
+ "sc i",
+ "s ci",
+ "▁hi bernate",
+ "▁ hibernate",
+ "do g",
+ "d og",
+ "▁во сто",
+ "▁вос то",
+ "▁ восто",
+ "▁intens ity",
+ "leg end",
+ "lege nd",
+ "legen d",
+ "▁W ille",
+ "▁Will e",
+ "▁Wil le",
+ "▁Wi lle",
+ "▁szer int",
+ "ges ellschaft",
+ "▁L iving",
+ "▁Li ving",
+ "▁Liv ing",
+ "al lo",
+ "all o",
+ "▁S plit",
+ "▁Sp lit",
+ "▁ Split",
+ "dr u",
+ "d ru",
+ "ne ed",
+ "n eed",
+ "▁Дж он",
+ "▁Sw iss",
+ "▁sp raw",
+ "▁spr aw",
+ "▁be ho",
+ "▁beh o",
+ "▁fot ograf",
+ "▁ren contre",
+ "▁k is",
+ "▁ki s",
+ "▁sign ing",
+ "▁sig ning",
+ "ak ult",
+ "aku lt",
+ "▁index ing",
+ "ap or",
+ "a por",
+ "▁con ception",
+ "▁concept ion",
+ "▁conce ption",
+ "ag greg",
+ "agg reg",
+ "a ggreg",
+ "▁Са вез",
+ "▁aff air",
+ "ě ní",
+ "A ugust",
+ "▁се кре",
+ "▁miesz kań",
+ "UI Image",
+ "▁b ishop",
+ "▁bi shop",
+ "▁ bishop",
+ "▁serv ants",
+ "▁servant s",
+ "▁tr ail",
+ "▁tra il",
+ "di git",
+ "dig it",
+ "▁jo ins",
+ "▁join s",
+ "▁N ear",
+ "▁Ne ar",
+ "öff entlich",
+ "> {",
+ "▁sk ład",
+ "ge führt",
+ "gef ührt",
+ "▁Hol z",
+ "▁Milit är",
+ "ach i",
+ "ac hi",
+ "a chi",
+ "Up per",
+ "U pper",
+ "pi ne",
+ "pin e",
+ "p ine",
+ "ut zt",
+ "utz t",
+ "▁nu ova",
+ "ibr ation",
+ "▁B ien",
+ "▁Bi en",
+ "▁пер вый",
+ "▁первы й",
+ "▁Cre ating",
+ "On ce",
+ "▁ein mal",
+ "▁ge ometric",
+ "▁geomet ric",
+ "st vo",
+ "▁k W",
+ "▁decom position",
+ "▁com edy",
+ "▁come dy",
+ "▁activ ation",
+ "▁an gry",
+ "▁ang ry",
+ "ill eurs",
+ "ille urs",
+ "▁inst antly",
+ "▁instant ly",
+ "▁suggest ing",
+ "▁C lay",
+ "▁Cl ay",
+ "▁Cla y",
+ "co t",
+ "c ot",
+ "▁G én",
+ "▁Gé n",
+ "($ (",
+ "( $(",
+ "un wrap",
+ "▁lif ted",
+ "▁lift ed",
+ "▁K it",
+ "▁Ki t",
+ "▁ Kit",
+ "▁l inea",
+ "▁li nea",
+ "▁line a",
+ "▁lin ea",
+ "о к",
+ "ha rt",
+ "har t",
+ "h art",
+ "-> _",
+ "▁n uit",
+ "▁nu it",
+ "▁Iss ue",
+ "ли и",
+ "▁r öm",
+ "Task s",
+ "▁S r",
+ "▁se is",
+ "▁sei s",
+ "as ia",
+ "asi a",
+ "}} $.",
+ "}}$ .",
+ "} }$.",
+ ": {",
+ "control s",
+ "contr ols",
+ "▁S tim",
+ "▁St im",
+ "▁Re cht",
+ "▁Rec ht",
+ "ocia ción",
+ "oci ación",
+ "▁N atal",
+ "▁Na tal",
+ "▁Nat al",
+ "▁Philipp ines",
+ "ul en",
+ "ule n",
+ "u len",
+ "F ixed",
+ "▁switch ed",
+ "Z ip",
+ "os pel",
+ "osp el",
+ "▁нача ле",
+ "▁B lan",
+ "▁Bl an",
+ "▁Bla n",
+ "ur st",
+ "urs t",
+ "▁aut our",
+ "▁auto ur",
+ "C a",
+ "▁lat itude",
+ "▁F rei",
+ "▁Fre i",
+ "▁Fr ei",
+ "▁Mus ée",
+ "▁K urz",
+ "▁Kur z",
+ "▁Ku rz",
+ "▁reg ião",
+ "sw ap",
+ "▁h ate",
+ "▁ha te",
+ "▁hat e",
+ "▁mod ifications",
+ "▁modification s",
+ "▁modific ations",
+ "▁К ом",
+ "▁Ко м",
+ "▁Anto ine",
+ "ug a",
+ "u ga",
+ "RE CT",
+ "R ECT",
+ "ét er",
+ "é ter",
+ "G ROUP",
+ "▁sacr ific",
+ "▁W he",
+ "▁Wh e",
+ "▁Ste vens",
+ "▁Steve ns",
+ "▁Steven s",
+ "olog ische",
+ "Sum mary",
+ "ob s",
+ "o bs",
+ "hn en",
+ "h nen",
+ "< %=",
+ "di enst",
+ "d ienst",
+ "re mark",
+ "rem ark",
+ "r emark",
+ "▁veröff entlicht",
+ "е л",
+ "▁M ock",
+ "▁Mo ck",
+ "▁ Mock",
+ "▁Ль в",
+ "▁tr ês",
+ "g b",
+ "▁celebr ated",
+ "▁E b",
+ "▁c osta",
+ "▁co sta",
+ "▁cost a",
+ "▁cos ta",
+ "▁Ge ographic",
+ "▁att achment",
+ "▁attach ment",
+ "mann schaft",
+ "▁depend ence",
+ "� �",
+ "▁att itude",
+ "et al",
+ "eta l",
+ "e tal",
+ "vi c",
+ "v ic",
+ "ba ut",
+ "bau t",
+ "b aut",
+ "▁д ов",
+ "▁до в",
+ "▁ дов",
+ "▁inter ven",
+ "▁G ü",
+ "ón ica",
+ "ó nica",
+ "▁P on",
+ "▁Po n",
+ "▁dispon ible",
+ "▁F eb",
+ "▁Fe b",
+ "▁wor ship",
+ "▁Specific ally",
+ "H y",
+ "ij u",
+ "i ju",
+ "▁c b",
+ "▁ cb",
+ "▁sp ac",
+ "lev eland",
+ "level and",
+ "▁local idad",
+ "▁prec eding",
+ "▁preced ing",
+ "▁H essen",
+ "x p",
+ "▁W ein",
+ "▁We in",
+ "▁Wei n",
+ "▁Rom â",
+ "▁gi orno",
+ "▁gior no",
+ "▁квіт ня",
+ "lla ços",
+ "▁Academ ia",
+ "▁k ül",
+ "▁Å rs",
+ "▁на ј",
+ "uc lide",
+ "Inter net",
+ "Intern et",
+ "or ton",
+ "ort on",
+ "▁c orn",
+ "▁cor n",
+ "▁co rn",
+ "я ми",
+ "▁\" *",
+ "▁Fel ix",
+ "ap at",
+ "apa t",
+ "a pat",
+ "▁сво и",
+ "MI T",
+ "M IT",
+ "ma de",
+ "mad e",
+ "m ade",
+ "▁lo comot",
+ "хо да",
+ "ход а",
+ "F P",
+ "▁p m",
+ "▁ pm",
+ ".* ;",
+ "▁H amm",
+ "▁Ha mm",
+ "▁Ham m",
+ "` }",
+ "Layout Inflater",
+ "== \"",
+ "= =\"",
+ "▁E ur",
+ "▁Eu r",
+ "▁d ogs",
+ "▁do gs",
+ "▁dog s",
+ "же нии",
+ "▁a zon",
+ "▁az on",
+ "▁ azon",
+ "▁em ulator",
+ "▁r icon",
+ "▁ric on",
+ "▁ri con",
+ "be eld",
+ "▁н у",
+ "▁ ну",
+ "▁approxim ate",
+ "L M",
+ "▁B ond",
+ "▁Bo nd",
+ "▁Bon d",
+ "▁en h",
+ "ęd z",
+ "ę dz",
+ "▁s olit",
+ "▁so lit",
+ "▁sol it",
+ "Relative Layout",
+ "et eor",
+ "ete or",
+ "ament os",
+ "amento s",
+ "▁in direct",
+ "▁ind irect",
+ "ib ől",
+ "▁g ros",
+ "▁gr os",
+ "▁gro s",
+ "▁Original s",
+ "▁Origin als",
+ "▁Orig inals",
+ "comm ands",
+ "command s",
+ "Ex port",
+ "Exp ort",
+ "▁A vec",
+ "▁Av ec",
+ "▁sole mn",
+ "▁solem n",
+ "▁correct ion",
+ "▁corre ction",
+ "▁corr ection",
+ "▁про води",
+ "▁прово ди",
+ "▁Mo sk",
+ "▁Mos k",
+ "▁по до",
+ "▁под о",
+ "▁geb ied",
+ "▁nast ęp",
+ "▁D river",
+ "▁Dr iver",
+ "▁Drive r",
+ "▁ Driver",
+ "▁O ok",
+ "▁V ec",
+ "▁Ve c",
+ "▁ Vec",
+ "▁lung o",
+ "▁lun go",
+ "fi cos",
+ "fic os",
+ "fico s",
+ "f icos",
+ "▁s vol",
+ "▁sv ol",
+ "▁svo l",
+ "▁k id",
+ "▁ki d",
+ "n ja",
+ "▁H r",
+ "▁под дер",
+ "▁vis ibility",
+ "▁ visibility",
+ "▁M éd",
+ "▁Mé d",
+ "▁c pu",
+ "▁cp u",
+ "▁ cpu",
+ "dis cussion",
+ "As set",
+ "Ass et",
+ "▁def ense",
+ "▁Any one",
+ "▁Just in",
+ "is zt",
+ "isz t",
+ "▁Coll ins",
+ "▁Val ent",
+ "▁P ale",
+ "▁Pa le",
+ "▁Pal e",
+ "▁f uel",
+ "▁fue l",
+ "▁fu el",
+ "▁n ose",
+ "▁no se",
+ "▁nos e",
+ "rí guez",
+ "▁Sch les",
+ "▁Schl es",
+ "▁Mal ays",
+ "▁com mut",
+ "▁comm ut",
+ "dr o",
+ "d ro",
+ "ui ng",
+ "u ing",
+ "▁R ico",
+ "▁Ric o",
+ "▁Ri co",
+ "▁Em ma",
+ "or p",
+ "o rp",
+ "▁K irk",
+ "▁Kir k",
+ "▁Qu ando",
+ "▁Ne ue",
+ "▁Neu e",
+ "▁de mande",
+ "▁dem ande",
+ "▁demand e",
+ "▁C over",
+ "▁Co ver",
+ "▁Cov er",
+ "▁res cue",
+ "▁gew ählt",
+ "▁Cal endar",
+ "▁ Calendar",
+ "▁Mad onna",
+ "W P",
+ "os hi",
+ "osh i",
+ "▁M aven",
+ "▁Ma ven",
+ "▁b elle",
+ "▁be lle",
+ "▁bel le",
+ "▁bell e",
+ "▁w x",
+ "▁ wx",
+ "▁su gar",
+ "▁sug ar",
+ "▁Bet rieb",
+ "▁equilib rium",
+ "E AR",
+ "▁text s",
+ "▁tex ts",
+ "сло в",
+ "с лов",
+ "▁czerw ca",
+ "▁D üsseld",
+ "▁EL SE",
+ "▁am ery",
+ "▁amer y",
+ "▁a ni",
+ "▁an i",
+ "▁ ani",
+ "▁o bey",
+ "▁ob ey",
+ "▁N ell",
+ "▁Ne ll",
+ "▁Nel l",
+ "▁in ne",
+ "▁inn e",
+ "▁т ро",
+ "▁ тро",
+ "F D",
+ "cc o",
+ "c co",
+ "▁Z ob",
+ "▁Zo b",
+ "al ette",
+ "ale tte",
+ "alet te",
+ "a lette",
+ "▁má jus",
+ "ect ed",
+ "ec ted",
+ "e cted",
+ "▁Tur key",
+ "▁Turk ey",
+ "▁Wh ether",
+ "▁Whe ther",
+ "q i",
+ "▁ш то",
+ "▁head quarters",
+ "en di",
+ "end i",
+ "ar us",
+ "aru s",
+ "a rus",
+ "op us",
+ "o pus",
+ "▁з оло",
+ "▁зо ло",
+ "▁de stru",
+ "▁dest ru",
+ "▁L ok",
+ "▁Lo k",
+ "▁satisf action",
+ "() \r",
+ "( )\r",
+ "▁Т ер",
+ "▁Те р",
+ "Jo se",
+ "J ose",
+ "▁con quer",
+ "▁conqu er",
+ "▁E ffect",
+ "▁ Effect",
+ "Layout Params",
+ "ie z",
+ "i ez",
+ "▁extern s",
+ "▁gegen über",
+ "▁E SP",
+ "▁ES P",
+ "ol ta",
+ "olt a",
+ "process or",
+ "proc essor",
+ "▁K ult",
+ "▁Ku lt",
+ "▁Atl anta",
+ "▁t ier",
+ "▁ti er",
+ "▁tie r",
+ "Oper ator",
+ "▁ди а",
+ "▁пи сь",
+ "▁gro ß",
+ "▁he arts",
+ "▁heart s",
+ "▁hear ts",
+ "▁mill imeter",
+ "al though",
+ "alth ough",
+ "al les",
+ "all es",
+ "alle s",
+ "a lles",
+ "▁Mag ic",
+ "tr aining",
+ "tra ining",
+ "train ing",
+ "ol ine",
+ "oli ne",
+ "olin e",
+ "o line",
+ "▁орган і",
+ ">\\< ^",
+ "> \\<^",
+ "ці аль",
+ "ex ports",
+ "export s",
+ "Work book",
+ "▁вере сня",
+ "▁t eles",
+ "▁te les",
+ "▁tele s",
+ "▁tel es",
+ "▁econom y",
+ "▁econ omy",
+ "▁ec onomy",
+ "▁t rap",
+ "▁tr ap",
+ "▁tra p",
+ "▁ref use",
+ "▁str anger",
+ "▁strange r",
+ "▁stran ger",
+ "▁inst inct",
+ "по да",
+ "ol an",
+ "ola n",
+ "o lan",
+ "▁n ing",
+ "▁ni ng",
+ "▁nin g",
+ "▁ ning",
+ "inf late",
+ "infl ate",
+ "itat ea",
+ "itate a",
+ "ack s",
+ "ac ks",
+ "a cks",
+ "▁J oy",
+ "▁Jo y",
+ "FL AG",
+ "FLA G",
+ "ail and",
+ "ai land",
+ "▁sort i",
+ "▁sor ti",
+ "▁в пер",
+ "▁p én",
+ "▁pé n",
+ "Not hing",
+ "No thing",
+ "N othing",
+ "▁sz áz",
+ "▁Á ng",
+ "▁A UT",
+ "▁ AUT",
+ "Act ions",
+ "Action s",
+ "A ctions",
+ "E very",
+ "▁чер вня",
+ "▁авто мо",
+ "▁rout ine",
+ "▁e struct",
+ "▁est ruct",
+ "▁G ang",
+ "▁Ga ng",
+ "▁Gan g",
+ "▁h oles",
+ "▁ho les",
+ "▁hol es",
+ "▁hole s",
+ "th esis",
+ "thes is",
+ "▁con cl",
+ "▁conc l",
+ "▁p é",
+ "ri ers",
+ "rie rs",
+ "rier s",
+ "r iers",
+ "ро вой",
+ "рово й",
+ "р овой",
+ "ad ic",
+ "adi c",
+ "a dic",
+ "Sp eed",
+ "Spe ed",
+ "▁command ed",
+ "▁N azionale",
+ "▁Naz ionale",
+ "Man aged",
+ "▁DE CLARE",
+ "▁se dan",
+ "▁sed an",
+ "String s",
+ "Str ings",
+ "▁sa cred",
+ "▁sac red",
+ "▁sacr ed",
+ "ter such",
+ "ters uch",
+ "▁abit anti",
+ "br it",
+ "b rit",
+ "▁N CAA",
+ "▁NC AA",
+ "▁С П",
+ "▁a ged",
+ "▁ag ed",
+ "▁age d",
+ "▁ aged",
+ "▁Ch iesa",
+ "▁Chi esa",
+ "▁re vision",
+ "▁rev ision",
+ "▁revis ion",
+ "op ro",
+ "o pro",
+ "▁over write",
+ "emb ros",
+ "embro s",
+ "▁sort ie",
+ "▁sorti e",
+ "▁ot ten",
+ "▁ott en",
+ "xi v",
+ "x iv",
+ "▁d eli",
+ "▁de li",
+ "▁del i",
+ "▁A sp",
+ "▁As p",
+ "▁b alls",
+ "▁bal ls",
+ "▁ball s",
+ "ka f",
+ "k af",
+ "▁br ave",
+ "▁bra ve",
+ "▁все го",
+ "▁вс его",
+ "eg n",
+ "e gn",
+ "jp eg",
+ "▁O sten",
+ "▁Os ten",
+ "▁Ost en",
+ "Const ants",
+ "▁Inf antry",
+ "▁N ev",
+ "▁Ne v",
+ "▁я ких",
+ "▁як их",
+ "▁му ниципа",
+ "ci ja",
+ "c ija",
+ "▁p oem",
+ "▁po em",
+ "▁ne gro",
+ "▁neg ro",
+ "ха р",
+ "х ар",
+ "▁A sk",
+ "▁As k",
+ "▁a vo",
+ "▁av o",
+ "▁ avo",
+ "▁Me yer",
+ "▁Mey er",
+ "▁W esten",
+ "▁We sten",
+ "▁West en",
+ "▁Wes ten",
+ "▁o ko",
+ "▁ok o",
+ "▁ oko",
+ "ag in",
+ "agi n",
+ "a gin",
+ "▁Süd en",
+ "▁Sü den",
+ "ent ries",
+ "entr ies",
+ "▁Rep ublik",
+ "▁Repub lik",
+ "Collection View",
+ "-- -----",
+ "---- ---",
+ "--- ----",
+ "------ -",
+ "----- --",
+ "- ------",
+ "▁fire fox",
+ "▁alc une",
+ "▁фо то",
+ "▁отри ма",
+ "~~~~ ~~~~",
+ "▁Ра з",
+ "▁Com plex",
+ "▁Comp lex",
+ "▁Comple x",
+ "▁p ia",
+ "▁pi a",
+ "▁public ada",
+ "we i",
+ "w ei",
+ "ced ure",
+ "occup ation",
+ "▁medic ine",
+ "▁dr ove",
+ "▁dro ve",
+ "Pro blem",
+ "▁beg inner",
+ "▁begin ner",
+ "▁thorough ly",
+ "ur ia",
+ "uri a",
+ "u ria",
+ "av ant",
+ "ava nt",
+ "avan t",
+ "uch a",
+ "uc ha",
+ "u cha",
+ "▁l ever",
+ "▁le ver",
+ "▁lev er",
+ "▁te atro",
+ "▁teat ro",
+ "AV A",
+ "A VA",
+ "sq u",
+ "s qu",
+ "tr at",
+ "tra t",
+ "t rat",
+ "iv atal",
+ "iva tal",
+ "▁d irty",
+ "▁dir ty",
+ "▁se conde",
+ "▁second e",
+ "▁sec onde",
+ "▁grav it",
+ "▁pro position",
+ "▁prop osition",
+ "▁propos ition",
+ "h bar",
+ "om ini",
+ "omin i",
+ "omi ni",
+ "▁ ”",
+ "▁C amil",
+ "▁Cam il",
+ "▁Ca mil",
+ "▁qu een",
+ "▁que en",
+ "mod ifier",
+ "J an",
+ "▁l yr",
+ "▁ly r",
+ "Com boBox",
+ "ion ic",
+ "io nic",
+ "ioni c",
+ "i onic",
+ "▁h oly",
+ "▁ho ly",
+ "▁hol y",
+ "▁Sebast ian",
+ "| _{",
+ "▁{ @",
+ "▁мо жно",
+ "▁мож но",
+ "▁Cre ative",
+ "▁inter ess",
+ "▁inte ress",
+ "▁C T",
+ "▁ CT",
+ "i ções",
+ "▁ch ant",
+ "▁cha nt",
+ "▁ chant",
+ "▁wsp ół",
+ "▁Мекси ка",
+ "▁ran ked",
+ "▁rank ed",
+ "▁paździer nika",
+ "▁b rut",
+ "▁br ut",
+ "▁bru t",
+ "▁far ther",
+ "▁V erb",
+ "▁Ver b",
+ "▁Ve rb",
+ "▁S even",
+ "▁Se ven",
+ "lb l",
+ "l bl",
+ "▁mention s",
+ "▁ment ions",
+ "▁F ight",
+ "▁Fig ht",
+ "if en",
+ "ife n",
+ "i fen",
+ "▁b og",
+ "▁bo g",
+ "▁re gres",
+ "▁reg res",
+ "▁sc oring",
+ "ic ane",
+ "ica ne",
+ "ican e",
+ "▁El li",
+ "▁Ell i",
+ "▁pie rw",
+ "▁pier w",
+ "me asure",
+ "ński ej",
+ "ń skiej",
+ "# {",
+ "▁де ся",
+ "▁var maste",
+ "▁Un ix",
+ "I Z",
+ "iti é",
+ "Prim ary",
+ "▁Spring er",
+ "▁Spr inger",
+ "ün g",
+ "ü ng",
+ "▁an v",
+ "▁vers ione",
+ "▁version e",
+ "▁should ers",
+ "▁shoulder s",
+ "▁бри га",
+ "▁j av",
+ "▁ja v",
+ "▁ jav",
+ "lt al",
+ "l tal",
+ "▁kall aste",
+ "▁Mitch ell",
+ "▁wire less",
+ "▁wir eless",
+ "▁Á l",
+ "resp ons",
+ "co uld",
+ "cou ld",
+ "c ould",
+ "▁re lax",
+ "▁rel ax",
+ "▁rela x",
+ "▁ relax",
+ "Lo nd",
+ "L ond",
+ "ń cz",
+ "ство вал",
+ "ствова л",
+ "▁pol ski",
+ "en ç",
+ "za r",
+ "z ar",
+ "▁d type",
+ "▁dt ype",
+ "ow ned",
+ "own ed",
+ "un known",
+ "unk nown",
+ "▁m utable",
+ "▁mu table",
+ "▁mut able",
+ "▁ mutable",
+ "▁si empre",
+ "▁Mont real",
+ "▁loc ate",
+ "▁tr aces",
+ "▁tra ces",
+ "▁trace s",
+ "▁trac es",
+ "▁ins gesamt",
+ "▁N il",
+ "▁Ni l",
+ "▁ Nil",
+ "▁п рода",
+ "▁про да",
+ "▁прод а",
+ "▁War ner",
+ "▁N au",
+ "▁Na u",
+ "tri angle",
+ "▁concentr ation",
+ "▁gentle men",
+ "äch t",
+ "ä cht",
+ "fil ters",
+ "filter s",
+ "inci pal",
+ "VAL ID",
+ "▁де пута",
+ "ad ó",
+ "▁kon st",
+ "gs å",
+ "ag as",
+ "aga s",
+ "a gas",
+ "▁meille ur",
+ "▁дан ным",
+ "є дна",
+ "en coded",
+ "enc oded",
+ "encode d",
+ "< '",
+ "▁she ets",
+ "▁sheet s",
+ "▁ sheets",
+ "cu ador",
+ "▁викори стову",
+ "▁De put",
+ "▁Dep ut",
+ "▁man ière",
+ "ą g",
+ "cs ol",
+ "c sol",
+ ")$ -",
+ ") $-",
+ "UI View",
+ "▁mill ones",
+ "▁E hren",
+ "▁Ehr en",
+ "Si l",
+ "S il",
+ "▁a tac",
+ "▁at ac",
+ "▁C old",
+ "▁Col d",
+ "▁Co ld",
+ "\" \\",
+ "▁appro ached",
+ "▁approach ed",
+ "▁Års med",
+ "W M",
+ "▁De port",
+ "▁Dep ort",
+ "mi s",
+ "m is",
+ "and box",
+ "ob serv",
+ "obs erv",
+ "set ting",
+ "sett ing",
+ "ha tó",
+ "hat ó",
+ "h ató",
+ "▁s trat",
+ "▁st rat",
+ "▁str at",
+ "▁stra t",
+ "▁s pre",
+ "▁sp re",
+ "▁spr e",
+ "▁ spre",
+ "▁person ne",
+ "▁pers onne",
+ "▁personn e",
+ "▁dir ige",
+ "▁dirig e",
+ "pu ll",
+ "p ull",
+ "da ting",
+ "dat ing",
+ "d ating",
+ "▁F act",
+ "▁Fa ct",
+ "▁Fac t",
+ "▁ Fact",
+ "▁manip ulate",
+ "▁M AC",
+ "▁MA C",
+ "▁d ej",
+ "▁de j",
+ "ult imo",
+ "F X",
+ "Li fe",
+ "L ife",
+ "▁c rack",
+ "▁cr ack",
+ "▁cra ck",
+ "▁m í",
+ "▁п ове",
+ "▁по ве",
+ "▁пов е",
+ "▁w ore",
+ "▁wor e",
+ "▁wo re",
+ "univers ité",
+ "▁form ulas",
+ "▁formula s",
+ "▁Elis abeth",
+ "pl ots",
+ "plot s",
+ "mi le",
+ "mil e",
+ "m ile",
+ "▁me nor",
+ "▁men or",
+ "ти л",
+ "т ил",
+ "key word",
+ "▁Balt imore",
+ "hr er",
+ "hre r",
+ "h rer",
+ "▁C lement",
+ "▁Cl ement",
+ "▁Cle ment",
+ "vi m",
+ "v im",
+ "ra ss",
+ "ras s",
+ "r ass",
+ "T ake",
+ "▁cím ű",
+ "▁Con vention",
+ "at ge",
+ "se ed",
+ "see d",
+ "s eed",
+ "▁D í",
+ "▁Sp ider",
+ "ah oo",
+ "aho o",
+ "▁име ет",
+ "ühr t",
+ "üh rt",
+ "▁по писа",
+ "▁C ot",
+ "▁Co t",
+ "▁no bles",
+ "▁noble s",
+ "▁nob les",
+ "RE SS",
+ "RES S",
+ "▁che min",
+ "▁chem in",
+ "▁gł ówn",
+ "G G",
+ "▁German ia",
+ "▁Ger mania",
+ "▁Germ ania",
+ "▁Alexand re",
+ "he ns",
+ "hen s",
+ "h ens",
+ "sw ift",
+ "oo p",
+ "o op",
+ "Sub view",
+ "▁requ iring",
+ "ęd zy",
+ "ędz y",
+ "▁f ict",
+ "▁fi ct",
+ "▁fic t",
+ "▁Кон стан",
+ "▁dé put",
+ "▁dép ut",
+ "▁surpr ising",
+ "▁de ix",
+ "▁dei x",
+ "▁unter schied",
+ "in son",
+ "ins on",
+ "▁Char acter",
+ "▁ Character",
+ "▁g estion",
+ "▁ges tion",
+ "▁gest ion",
+ "ch us",
+ "c hus",
+ "com es",
+ "co mes",
+ "come s",
+ "▁n eur",
+ "▁ne ur",
+ "▁neu r",
+ "▁ neur",
+ "▁ye ux",
+ "ol lar",
+ "oll ar",
+ "▁par ad",
+ "▁para d",
+ "▁pa rad",
+ "▁mag giore",
+ "▁maggio re",
+ "▁maggior e",
+ "TR AN",
+ "▁vo tre",
+ "▁vot re",
+ "▁des cent",
+ "▁desc ent",
+ "▁I con",
+ "▁ Icon",
+ "▁Jud ge",
+ "▁occup ation",
+ "▁ occupation",
+ "ep ing",
+ "e ping",
+ "▁ton gue",
+ "▁tong ue",
+ "▁En llaços",
+ "ru f",
+ "r uf",
+ "▁prote in",
+ "▁prot ein",
+ "▁vis itors",
+ "▁visit ors",
+ "▁visitor s",
+ "ax y",
+ "a xy",
+ "es ten",
+ "est en",
+ "este n",
+ "e sten",
+ "bl ica",
+ "blic a",
+ "b lica",
+ "h w",
+ "▁spir its",
+ "▁spirit s",
+ "▁redu ces",
+ "▁reduce s",
+ "▁м ен",
+ "▁ме н",
+ "▁ мен",
+ "▁L amb",
+ "▁La mb",
+ "▁Lam b",
+ "▁M ine",
+ "▁Min e",
+ "▁Mi ne",
+ "▁ver ified",
+ "▁B aby",
+ "▁Ba by",
+ "▁Bab y",
+ "▁pr ize",
+ "▁pri ze",
+ "в ър",
+ "▁rat ings",
+ "▁rating s",
+ "▁f ore",
+ "▁for e",
+ "▁fo re",
+ "▁ fore",
+ "as ha",
+ "ash a",
+ "a sha",
+ "ur rence",
+ "urr ence",
+ "▁int ér",
+ "▁Ol ímp",
+ "cr a",
+ "c ra",
+ "▁comput ational",
+ "▁computation al",
+ "ir che",
+ "irc he",
+ ".: ",
+ "▁illustr ated",
+ "▁illustrate d",
+ "▁Sh are",
+ "▁house holds",
+ "▁household s",
+ "▁con volution",
+ "oe md",
+ "oem d",
+ "▁zd oby",
+ "▁zdob y",
+ "cc c",
+ "c cc",
+ "▁quant ities",
+ "Ch e",
+ "C he",
+ "Sh ould",
+ "▁ge nius",
+ "▁gen ius",
+ "ad j",
+ "a dj",
+ "х ва",
+ "Пе тер",
+ "EM A",
+ "E MA",
+ "▁R ights",
+ "▁Right s",
+ "▁E li",
+ "▁El i",
+ "VA R",
+ "V AR",
+ "ш ло",
+ "▁з бір",
+ "ift ung",
+ "▁cont ributed",
+ "▁contrib uted",
+ "▁contribu ted",
+ "▁contribute d",
+ "ze f",
+ "z ef",
+ "▁CH AR",
+ "▁ CHAR",
+ "▁S ib",
+ "▁Si b",
+ "▁M ant",
+ "▁Man t",
+ "▁Ma nt",
+ "▁свя зи",
+ "▁java fx",
+ "▁c ependant",
+ "▁in tu",
+ "▁int u",
+ "▁т вор",
+ "▁ Ó",
+ "gu er",
+ "gue r",
+ "g uer",
+ "ra do",
+ "rad o",
+ "r ado",
+ "▁Re vol",
+ "▁Rev ol",
+ "▁fé min",
+ "▁Or leans",
+ "▁p oj",
+ "▁po j",
+ "▁p rez",
+ "▁pr ez",
+ "▁pre z",
+ "Te x",
+ "T ex",
+ "ou wd",
+ "ouw d",
+ "? (",
+ "▁L IM",
+ "▁LI M",
+ "ist ique",
+ "isti que",
+ "es ar",
+ "esa r",
+ "▁he ures",
+ "ic ki",
+ "ick i",
+ "i cki",
+ "▁d bo",
+ "▁db o",
+ "▁ dbo",
+ "sk ih",
+ "ski h",
+ "s kih",
+ "conf irm",
+ "▁vil ág",
+ "▁ci utat",
+ "▁D R",
+ "▁ DR",
+ "▁Haw ai",
+ "ch ed",
+ "che d",
+ "c hed",
+ "▁s pher",
+ "▁sp her",
+ "▁Art ikel",
+ "▁Multi ple",
+ "ci u",
+ "c iu",
+ "▁м ы",
+ "▁ мы",
+ "▁lip ca",
+ "]( /",
+ "] (/",
+ "Str ategy",
+ "▁Al abama",
+ "SD K",
+ "S DK",
+ "UT C",
+ "U TC",
+ "__ .",
+ "_ _.",
+ "Arg uments",
+ "Argument s",
+ "▁set ContentView",
+ "î le",
+ "By Val",
+ "▁J VM",
+ "юще го",
+ "▁Leon ard",
+ "▁just ify",
+ "це м",
+ "ц ем",
+ "▁n ab",
+ "▁na b",
+ "▁ nab",
+ "CCE SS",
+ "C CESS",
+ "▁hope s",
+ "▁ho pes",
+ "▁hop es",
+ ") &",
+ "se ro",
+ "ser o",
+ "s ero",
+ "▁за й",
+ "слі д",
+ "▁R ég",
+ "▁Ré g",
+ "▁S ang",
+ "▁San g",
+ "▁Sa ng",
+ "▁f ung",
+ "▁fun g",
+ "▁fu ng",
+ "ba ar",
+ "b aar",
+ "▁coff ee",
+ "ass embly",
+ "▁В ін",
+ "▁Ві н",
+ "э й",
+ "▁comp rend",
+ "▁compr end",
+ "fil led",
+ "fill ed",
+ "f illed",
+ "р д",
+ "od ia",
+ "odi a",
+ "o dia",
+ "▁g ens",
+ "▁ge ns",
+ "▁gen s",
+ "▁ gens",
+ "fl uss",
+ "flu ss",
+ "f luss",
+ "Draw able",
+ "▁sur ve",
+ "▁surv e",
+ "Set up",
+ "▁n ależ",
+ "▁conj unto",
+ "▁Е го",
+ "▁old al",
+ "▁ol dal",
+ "▁ver bose",
+ "▁verb ose",
+ "▁Elect ric",
+ "▁H arrison",
+ "▁Harr ison",
+ "▁Harris on",
+ "en gen",
+ "eng en",
+ "par agraph",
+ "para graph",
+ "▁n ouvelles",
+ "▁nouve lles",
+ "▁nouvelle s",
+ "▁вре ме",
+ "▁m emor",
+ "▁me mor",
+ "▁mem or",
+ "▁mayo ría",
+ "▁mayor ía",
+ "са д",
+ "▁bat aille",
+ "▁bata ille",
+ "▁therm al",
+ "▁ther mal",
+ "▁Хро нологи",
+ "▁B etter",
+ "▁Bet ter",
+ "by e",
+ "b ye",
+ "▁теа тра",
+ "ro e",
+ "r oe",
+ "▁se gle",
+ "▁seg le",
+ "ro tt",
+ "rot t",
+ "r ott",
+ "▁opin ions",
+ "▁opinion s",
+ ")} )",
+ ") })",
+ "üh le",
+ "ühl e",
+ "▁G ün",
+ "▁Gü n",
+ "▁ Щ",
+ "b ól",
+ "▁Lar ry",
+ "▁so lic",
+ "▁sol ic",
+ "▁z war",
+ "▁zw ar",
+ "▁Car oline",
+ "▁Carol ine",
+ "▁Reich s",
+ "Ext ensions",
+ "Extension s",
+ "mi gr",
+ "m igr",
+ ": @",
+ "▁en umerate",
+ "▁enumer ate",
+ "▁ enumerate",
+ "▁eigen en",
+ "▁eig enen",
+ "▁expl ore",
+ "▁explo re",
+ "ém u",
+ "é mu",
+ "▁g at",
+ "▁ga t",
+ "▁ gat",
+ "▁imper ial",
+ "▁Us ually",
+ "▁t ud",
+ "▁tu d",
+ "▁у кра",
+ "hi m",
+ "h im",
+ "▁cor ners",
+ "▁corner s",
+ "▁corn ers",
+ "▁S ER",
+ "▁SE R",
+ "▁ SER",
+ "▁interpre ter",
+ "▁interpret er",
+ "▁I ce",
+ "▁amount s",
+ "▁P ala",
+ "▁Pa la",
+ "▁Pal a",
+ "▁t inha",
+ "▁tin ha",
+ "vo le",
+ "vol e",
+ "v ole",
+ "▁g le",
+ "▁gl e",
+ "▁ gle",
+ "uc ci",
+ "▁sie he",
+ "Jac k",
+ "J ack",
+ "▁w oll",
+ "▁wo ll",
+ "▁wol l",
+ "▁e lder",
+ "▁el der",
+ "▁ко раб",
+ "▁eng ag",
+ "▁La urent",
+ "▁Laur ent",
+ "▁Lau rent",
+ "▁ach iev",
+ "ist ik",
+ "isti k",
+ "ar ct",
+ "arc t",
+ "тно го",
+ "т ного",
+ "▁g ir",
+ "▁gi r",
+ "▁Sing h",
+ "▁Sin gh",
+ "math op",
+ "US A",
+ "U SA",
+ "▁Pro jekt",
+ "▁de be",
+ "▁deb e",
+ "richt ung",
+ "r ichtung",
+ "▁T sch",
+ "▁Ts ch",
+ "um inate",
+ "umin ate",
+ "▁s zó",
+ "▁sz ó",
+ "ly ph",
+ "зи дент",
+ "зиден т",
+ "▁lim itations",
+ "▁limit ations",
+ "▁limitation s",
+ "юще й",
+ "▁b ila",
+ "▁bi la",
+ "▁bil a",
+ "P ush",
+ "▁off ering",
+ "▁offer ing",
+ "ien nes",
+ "ienne s",
+ "ienn es",
+ "i ennes",
+ "Fr i",
+ "F ri",
+ "▁post gresql",
+ "▁ postgresql",
+ "▁Tom my",
+ "▁partic olare",
+ "▁stolet í",
+ "▁ar rib",
+ "▁arr ib",
+ "▁E va",
+ "▁Ev a",
+ "sch ool",
+ "▁v endor",
+ "▁ven dor",
+ "▁vend or",
+ "▁ vendor",
+ "▁D allas",
+ "▁Dal las",
+ "▁pro long",
+ "CRE ATE",
+ "C REATE",
+ "▁suiv ante",
+ "STAT US",
+ "l à",
+ "k v",
+ "▁h äufig",
+ "▁Agr icult",
+ "▁h uit",
+ "▁hu it",
+ "▁in oltre",
+ "▁L loyd",
+ "▁францу з",
+ "▁вы пол",
+ "▁faith ful",
+ "▁В ар",
+ "▁Ва р",
+ "▁ver l",
+ "▁ve rl",
+ "▁ju ego",
+ "▁Резу лтати",
+ ", ...,",
+ "▁implicit ly",
+ "ir ks",
+ "irk s",
+ "Cal cul",
+ "▁m eses",
+ "▁mes es",
+ "om ed",
+ "ome d",
+ "o med",
+ "▁p ak",
+ "▁pa k",
+ "he rit",
+ "her it",
+ "▁opt ical",
+ "▁І сторія",
+ "ve is",
+ "▁capital e",
+ "▁capit ale",
+ "place holder",
+ "int rag",
+ "▁At las",
+ "▁Atl as",
+ "▁ Atlas",
+ ")] ;",
+ ") ];",
+ "ic ons",
+ "ico ns",
+ "icon s",
+ "i cons",
+ "▁B ent",
+ "▁Be nt",
+ "▁Ben t",
+ "▁W idget",
+ "▁ Widget",
+ "▁vol unt",
+ "av o",
+ "a vo",
+ "ég r",
+ "é gr",
+ "li ge",
+ "lig e",
+ "l ige",
+ "▁N AME",
+ "▁NA ME",
+ "▁ NAME",
+ "▁ab stra",
+ "▁abs tra",
+ "▁f ís",
+ "▁B rowser",
+ "▁Brow ser",
+ "▁ Browser",
+ "▁b ush",
+ "▁bu sh",
+ "▁bus h",
+ "ha ll",
+ "hal l",
+ "h all",
+ "▁cloud s",
+ "▁S UB",
+ "▁SU B",
+ "▁ SUB",
+ "▁t andis",
+ "▁tan dis",
+ "▁Common wealth",
+ "та я",
+ "▁exha ust",
+ "________ ________",
+ "▁Stat istics",
+ "▁Statist ics",
+ "▁Relig ion",
+ "▁Mu ham",
+ "ual s",
+ "ua ls",
+ "u als",
+ "go to",
+ "got o",
+ "g oto",
+ "Dig ital",
+ "Famil y",
+ "▁B un",
+ "▁Bu n",
+ "let in",
+ "Man agement",
+ "▁cap abilities",
+ "an nten",
+ "ann ten",
+ "annt en",
+ "annte n",
+ "▁се бе",
+ "▁st ays",
+ "▁stay s",
+ "▁sta ys",
+ "kt er",
+ "kte r",
+ "k ter",
+ "▁d ost",
+ "▁do st",
+ "▁dos t",
+ "▁Т ре",
+ "ло вич",
+ "лови ч",
+ "л ович",
+ "▁d ying",
+ "▁dy ing",
+ "se ctions",
+ "section s",
+ "sect ions",
+ "án os",
+ "á nos",
+ "▁app arten",
+ "▁appar ten",
+ "▁appart en",
+ "▁zo als",
+ "▁dr essed",
+ "▁dress ed",
+ "▁com press",
+ "▁comp ress",
+ "▁compr ess",
+ "ń ska",
+ "▁sierp nia",
+ "▁ти ту",
+ "diction ary",
+ "d ictionary",
+ "▁r abb",
+ "▁ra bb",
+ "▁vé rit",
+ "В о",
+ "▁sing leton",
+ "▁single ton",
+ "▁v ital",
+ "▁vi tal",
+ "▁vit al",
+ "▁vita l",
+ "Ref resh",
+ "ме ль",
+ "м ель",
+ "▁Z h",
+ "▁Af ghan",
+ "in kel",
+ "ink el",
+ "aa aa",
+ "▁particip ants",
+ "ar in",
+ "ari n",
+ "a rin",
+ "▁M old",
+ "▁Mo ld",
+ "▁Mol d",
+ "▁prim eros",
+ "▁prime ros",
+ "▁primer os",
+ "▁ра н",
+ "▁р ан",
+ "▁ ран",
+ "▁А мери",
+ "▁restaur ant",
+ "év el",
+ "é vel",
+ "▁S L",
+ "▁ SL",
+ "▁R ey",
+ "▁Re y",
+ "ch as",
+ "cha s",
+ "c has",
+ "▁elect rons",
+ "▁electron s",
+ "▁electro ns",
+ "▁Pitt s",
+ "▁Pit ts",
+ "▁J ules",
+ "▁Jul es",
+ "▁Ju les",
+ "ма й",
+ "en ant",
+ "ena nt",
+ "e nant",
+ "- }",
+ "ла д",
+ "▁Мос ква",
+ "▁Моск ва",
+ "go m",
+ "g om",
+ "▁Fern ández",
+ "fun d",
+ "fu nd",
+ "f und",
+ "int erno",
+ "inter no",
+ "intern o",
+ "▁M ari",
+ "▁Mar i",
+ "▁Ma ri",
+ "▁r ius",
+ "▁ri us",
+ "▁Pro zent",
+ "ст рі",
+ "стр і",
+ "▁в нут",
+ "ant erie",
+ "ante rie",
+ "anter ie",
+ "▁п рис",
+ "▁при с",
+ "▁пр ис",
+ "▁о бы",
+ "▁об ы",
+ "▁M arina",
+ "▁Mar ina",
+ "▁Mari na",
+ "▁occ urrence",
+ "▁occur rence",
+ "▁occurr ence",
+ "ri kt",
+ "rik t",
+ "r ikt",
+ "▁фи зи",
+ "▁sch wer",
+ "▁schw er",
+ "▁Г ре",
+ "Re set",
+ "Res et",
+ "▁much o",
+ "▁mu cho",
+ "an dr",
+ "and r",
+ "▁W ies",
+ "▁Wi es",
+ "▁Wie s",
+ "▁Ke ith",
+ "▁Jul ian",
+ "▁Juli an",
+ "▁Julia n",
+ "▁c ole",
+ "▁col e",
+ "▁co le",
+ "▁ cole",
+ "ci endo",
+ "c iendo",
+ "▁Cont empor",
+ "et ry",
+ "etr y",
+ "e try",
+ "el ian",
+ "eli an",
+ "elia n",
+ "ги и",
+ "▁го ло",
+ "▁г оло",
+ "▁d él",
+ "▁dé l",
+ "▁de cent",
+ "▁dec ent",
+ "▁dece nt",
+ "Р СР",
+ "▁sze ptember",
+ "ме ст",
+ "cast le",
+ "▁держа в",
+ "}\" )",
+ "} \")",
+ "▁ASC II",
+ "▁G len",
+ "▁Gl en",
+ "itzer land",
+ "T oggle",
+ "▁trad icional",
+ "▁P lat",
+ "▁Pl at",
+ "▁Pla t",
+ "ve e",
+ "v ee",
+ "ab gerufen",
+ "( |",
+ "CL I",
+ "C LI",
+ "}} $,",
+ "}}$ ,",
+ "} }$,",
+ "▁Bow l",
+ "▁M ale",
+ "▁Ma le",
+ "▁Mal e",
+ "▁B res",
+ "▁Br es",
+ "▁Bre s",
+ "▁п си",
+ "▁Ch allenge",
+ "z ó",
+ "▁pro jekt",
+ "▁neg oti",
+ "ab ove",
+ "a bove",
+ "▁пери о",
+ "▁long est",
+ "▁lon gest",
+ "auth entic",
+ "▁tr adu",
+ "▁tra du",
+ "▁trad u",
+ "▁mujer es",
+ "▁And re",
+ "▁ha dn",
+ "▁had n",
+ "▁Sch ule",
+ "▁Schul e",
+ "ode l",
+ "od el",
+ "o del",
+ "ble d",
+ "bl ed",
+ "b led",
+ "▁T rade",
+ "▁Tr ade",
+ "▁Tra de",
+ "▁Trad e",
+ "▁m obil",
+ "▁mo bil",
+ "▁mob il",
+ "▁alg unas",
+ "▁L ak",
+ "▁La k",
+ "▁Connect icut",
+ "▁al co",
+ "▁alc o",
+ "▁Sel bst",
+ "i ł",
+ "▁a lb",
+ "▁al b",
+ "ouver neur",
+ "ouvern eur",
+ "▁s r",
+ "▁ sr",
+ "▁v ba",
+ "▁vb a",
+ "lo ped",
+ "lop ed",
+ "l oped",
+ "▁Par tei",
+ "▁Part ei",
+ "▁Parte i",
+ "ua te",
+ "u ate",
+ "▁Auth entication",
+ "▁ Authentication",
+ "be i",
+ "b ei",
+ "}} .",
+ "} }.",
+ "▁kon nten",
+ "▁konn ten",
+ "▁konnte n",
+ "▁до по",
+ "▁h yd",
+ "▁hy d",
+ "Off ice",
+ "d onnées",
+ "▁C leveland",
+ "ri ta",
+ "rit a",
+ "r ita",
+ "ío s",
+ "í os",
+ "▁вы ше",
+ "▁Ro berts",
+ "▁Robert s",
+ "▁é lections",
+ "▁élect ions",
+ "▁' ')",
+ "▁'' )",
+ "▁publish ing",
+ "▁b apt",
+ "▁ba pt",
+ "<> ();",
+ "< >();",
+ "miss ing",
+ "mis sing",
+ "рова но",
+ "рован о",
+ "р овано",
+ "▁ho using",
+ "▁hous ing",
+ "▁in ference",
+ "▁infer ence",
+ "▁Rena issance",
+ "▁r èg",
+ "▁Ste ph",
+ "▁Step h",
+ "CE S",
+ "C ES",
+ "ER E",
+ "E RE",
+ "ке т",
+ "к ет",
+ "O U",
+ "▁group ing",
+ "ver kehr",
+ "ji h",
+ "j ih",
+ "ag li",
+ "▁mil k",
+ "la it",
+ "l ait",
+ "St age",
+ "▁by ly",
+ "▁byl y",
+ "▁wood en",
+ "▁wo oden",
+ "ke ley",
+ "kel ey",
+ "kele y",
+ "et ra",
+ "etr a",
+ "e tra",
+ "▁P eg",
+ "▁Pe g",
+ "▁don né",
+ "▁donn é",
+ "ad al",
+ "ada l",
+ "a dal",
+ "sequ ently",
+ "▁ins besondere",
+ "EL D",
+ "E LD",
+ "▁M am",
+ "▁Ma m",
+ "▁vol te",
+ "▁volt e",
+ "▁pro spect",
+ "▁pros pect",
+ "но ве",
+ "нов е",
+ "н ове",
+ "▁den oted",
+ "▁denote d",
+ "▁over lay",
+ "Per mission",
+ "Perm ission",
+ "ee n",
+ "e en",
+ "▁E M",
+ "▁ EM",
+ "▁u z",
+ "▁ uz",
+ "M c",
+ "ol it",
+ "oli t",
+ "o lit",
+ "▁ser vi",
+ "▁serv i",
+ "▁He idel",
+ "▁Wien er",
+ "▁Wi ener",
+ "▁Wie ner",
+ "▁il legal",
+ "▁predict ions",
+ "▁prediction s",
+ "▁go og",
+ "ho n",
+ "h on",
+ "▁Cin ema",
+ "▁ре волю",
+ "▁R ule",
+ "▁Ru le",
+ "▁ Rule",
+ "wo d",
+ "w od",
+ "▁rad iation",
+ "▁radi ation",
+ "o ł",
+ "ово ї",
+ "▁Per form",
+ "▁prison er",
+ "▁a met",
+ "▁am et",
+ "▁fig ura",
+ "▁figur a",
+ "▁Comm ander",
+ "▁Command er",
+ "▁о фициаль",
+ "▁t rov",
+ "▁tr ov",
+ "▁tro v",
+ "▁a cted",
+ "▁act ed",
+ "▁ac ted",
+ "▁work flow",
+ "▁Республи ки",
+ "▁guid ance",
+ "▁м ене",
+ "▁ме не",
+ "▁мен е",
+ "▁ мене",
+ "N ational",
+ "▁K el",
+ "▁Ke l",
+ "web pack",
+ "про стра",
+ "▁llam ado",
+ "al og",
+ "alo g",
+ "a log",
+ "ter ra",
+ "ix en",
+ "le graph",
+ "leg raph",
+ "ä ischen",
+ "▁teach ers",
+ "▁teacher s",
+ "ud en",
+ "ude n",
+ "u den",
+ "▁o gså",
+ "pos sible",
+ "poss ible",
+ "▁S oul",
+ "▁So ul",
+ "▁Sou l",
+ "▁Ge ography",
+ "▁за да",
+ "hi t",
+ "h it",
+ "▁an ger",
+ "▁ang er",
+ "▁ange r",
+ "▁ anger",
+ "▁rem porte",
+ "▁remp orte",
+ "Po d",
+ "P od",
+ "ч ке",
+ "▁a ria",
+ "▁ar ia",
+ "▁ aria",
+ "▁A stronom",
+ "ch apter",
+ "▁f ork",
+ "▁for k",
+ "▁Cu ando",
+ "men se",
+ "m ense",
+ "▁Christ ians",
+ "▁Christian s",
+ "g c",
+ "▁# (",
+ "Or gan",
+ "▁ste ady",
+ "▁stead y",
+ "ps e",
+ "p se",
+ "жи ть",
+ "ig nes",
+ "ign es",
+ "igne s",
+ "ater ra",
+ "a terra",
+ "mo vie",
+ "mov ie",
+ "m ovie",
+ "pos ta",
+ "po sta",
+ "post a",
+ "p osta",
+ "ra ste",
+ "ras te",
+ "r aste",
+ "▁Res source",
+ "▁Ress ource",
+ "▁Pa ís",
+ "▁( );",
+ "▁() ;",
+ "▁ ();",
+ "▁pen alty",
+ "т т",
+ "▁tras fer",
+ "cent ury",
+ "▁clean er",
+ "sel enium",
+ "s elenium",
+ "ort heast",
+ "orth east",
+ "xi c",
+ "x ic",
+ "лі ї",
+ "л ії",
+ "▁ingles e",
+ "▁T ang",
+ "▁Ta ng",
+ "▁Tan g",
+ "▁g ods",
+ "▁go ds",
+ "▁god s",
+ "fr ent",
+ "fre nt",
+ "f rent",
+ "ci ente",
+ "cient e",
+ "c iente",
+ "st arts",
+ "start s",
+ "star ts",
+ "▁mus ica",
+ "▁music a",
+ "ymnas ium",
+ "-- --+",
+ "---- +",
+ "--- -+",
+ "- ---+",
+ "▁ter rest",
+ "▁terre st",
+ "▁retr ieved",
+ "▁retrieve d",
+ "ia re",
+ "iar e",
+ "i are",
+ "un ning",
+ "unn ing",
+ "▁Mar cus",
+ "▁Marc us",
+ "▁prom ote",
+ "war ning",
+ "warn ing",
+ "w arning",
+ "ты й",
+ "т ый",
+ "}) $,",
+ "})$ ,",
+ "} )$,",
+ "Trans port",
+ "▁re son",
+ "▁res on",
+ "▁C lo",
+ "▁Cl o",
+ "▁e rm",
+ "▁er m",
+ "▁ erm",
+ "▁elimin ate",
+ "▁elim inate",
+ "he imer",
+ "heim er",
+ "▁s aves",
+ "▁sa ves",
+ "▁sav es",
+ "▁save s",
+ "▁pr ayer",
+ "▁pra yer",
+ "▁pray er",
+ "Class es",
+ "Ex press",
+ "Exp ress",
+ "Expr ess",
+ "▁Akadem ie",
+ "El se",
+ "Tu rn",
+ "T urn",
+ "▁ik ke",
+ "▁re i",
+ "▁r ei",
+ "▁ rei",
+ "▁di rett",
+ "▁dire tt",
+ "▁dir ett",
+ "▁R ost",
+ "▁Ro st",
+ "▁Ros t",
+ "▁P apa",
+ "▁Pa pa",
+ "▁Pap a",
+ "▁j sf",
+ "▁js f",
+ "ле нием",
+ "ление м",
+ "▁T ul",
+ "▁Tu l",
+ "▁Z ak",
+ "▁Za k",
+ "▁niem ieck",
+ "T w",
+ "am our",
+ "amo ur",
+ "ne sted",
+ "nes ted",
+ "nest ed",
+ "n ested",
+ "pp ets",
+ "ppe ts",
+ "ppet s",
+ "ш п",
+ "di t",
+ "d it",
+ "зе н",
+ "з ен",
+ "zy ma",
+ "zym a",
+ "hr te",
+ "Constra ints",
+ "Constraint s",
+ "▁own ership",
+ "▁owner ship",
+ "Ar m",
+ "A rm",
+ "▁cons umption",
+ "▁consum ption",
+ "▁f et",
+ "▁fe t",
+ "iv ari",
+ "iva ri",
+ "i vari",
+ "ch rom",
+ "chr om",
+ "set Attribute",
+ "▁com pose",
+ "▁comp ose",
+ "▁compos e",
+ "▁ compose",
+ "▁back ing",
+ "▁P az",
+ "▁Pa z",
+ "▁s cri",
+ "▁sc ri",
+ "▁scr i",
+ "▁ scri",
+ "▁Me chan",
+ "▁Nor way",
+ "▁J up",
+ "▁Ju p",
+ "▁m ér",
+ "▁mé r",
+ "▁administr ator",
+ "▁c abe",
+ "▁ca be",
+ "▁cab e",
+ "ival ent",
+ "▁thr one",
+ "▁thro ne",
+ "▁d ues",
+ "▁du es",
+ "▁due s",
+ "▁hum or",
+ "▁hu mor",
+ "▁A dri",
+ "▁Ad ri",
+ "▁ab ort",
+ "ña s",
+ "ñ as",
+ "▁Ки їв",
+ "j ící",
+ "▁zwe ite",
+ "▁zwei te",
+ "▁do ub",
+ "▁dou b",
+ "er shell",
+ "ers hell",
+ "шо й",
+ "▁F am",
+ "▁Fa m",
+ "å k",
+ "▁twe ede",
+ "▁twee de",
+ "▁R ib",
+ "▁Ri b",
+ "▁f ør",
+ "pc ión",
+ "p ción",
+ "in ned",
+ "inn ed",
+ "rv m",
+ "r vm",
+ "▁App ar",
+ "▁Ap par",
+ "▁D j",
+ "▁S hang",
+ "▁Sh ang",
+ "Dist ance",
+ "D istance",
+ "▁d awn",
+ "▁da wn",
+ "▁ dawn",
+ "▁Mat th",
+ "▁Matt h",
+ "▁err ichtet",
+ "ph antom",
+ "phan tom",
+ "▁re leases",
+ "▁release s",
+ "Recogn izer",
+ "▁K op",
+ "▁Ko p",
+ "▁P ul",
+ "▁Pu l",
+ "u é",
+ "na ts",
+ "nat s",
+ "n ats",
+ "re lax",
+ "rel ax",
+ "▁f led",
+ "▁fl ed",
+ "▁fle d",
+ "▁experience s",
+ "▁experien ces",
+ "ще е",
+ "ме ня",
+ "мен я",
+ "▁пер сона",
+ "▁Id entity",
+ "▁Ident ity",
+ "▁ Identity",
+ "re ts",
+ "ret s",
+ "r ets",
+ "k unft",
+ "la rg",
+ "lar g",
+ "l arg",
+ "List Item",
+ "v d",
+ "run ner",
+ "la nt",
+ "lan t",
+ "l ant",
+ "ip art",
+ "i part",
+ "ba y",
+ "b ay",
+ "ie i",
+ "i ei",
+ "▁length s",
+ "▁c attle",
+ "▁catt le",
+ "je ts",
+ "jet s",
+ "j ets",
+ "▁se hen",
+ "J ul",
+ "fa tt",
+ "f att",
+ "▁sur render",
+ "▁surr ender",
+ "▁Tr ump",
+ "▁Tru mp",
+ "дно го",
+ "д ного",
+ "▁Four ier",
+ "▁Fou rier",
+ "ie ben",
+ "ieb en",
+ "i eben",
+ "_ \"",
+ "▁frü her",
+ "▁gar ant",
+ "▁ga rant",
+ "uclide an",
+ "äg t",
+ "ä gt",
+ "▁пів ден",
+ "Page s",
+ "Pa ges",
+ "P ages",
+ "▁r ivers",
+ "▁river s",
+ "▁riv ers",
+ "▁ri vers",
+ "▁don ner",
+ "▁donn er",
+ "▁donne r",
+ "sv n",
+ "s vn",
+ "▁ ł",
+ "ov ě",
+ "o vě",
+ "▁Le ist",
+ "ar ial",
+ "ari al",
+ "aria l",
+ "a rial",
+ "ov ých",
+ "ový ch",
+ "▁f illing",
+ "▁fil ling",
+ "▁fill ing",
+ "▁mus icale",
+ "▁music ale",
+ "▁musical e",
+ "▁musica le",
+ "ma xim",
+ "max im",
+ "▁d ashed",
+ "▁das hed",
+ "▁dash ed",
+ "▁Н ов",
+ "▁Но в",
+ "Draw er",
+ "Dra wer",
+ "▁Medic ine",
+ "▁dok ument",
+ "ow el",
+ "owe l",
+ "o wel",
+ "vi ć",
+ "v ić",
+ "he ly",
+ "hel y",
+ "h ely",
+ "▁e let",
+ "▁el et",
+ "▁ele t",
+ "Sec onds",
+ "Second s",
+ "▁Gon z",
+ "ro u",
+ "r ou",
+ "▁fin ales",
+ "▁final es",
+ "▁finale s",
+ "r n",
+ "f ø",
+ "▁index ed",
+ "class Name",
+ "▁o ber",
+ "▁ob er",
+ "▁ ober",
+ "▁du as",
+ "▁optim ized",
+ "▁optimize d",
+ "▁k dy",
+ "vers ary",
+ "ener gy",
+ "▁цент ра",
+ "▁центр а",
+ "▁c urrency",
+ "▁curr ency",
+ "▁ currency",
+ "zy ż",
+ "Li ke",
+ "L ike",
+ "▁Г и",
+ "so no",
+ "son o",
+ "s ono",
+ "▁pa lab",
+ "▁pal ab",
+ "▁p ushing",
+ "▁push ing",
+ "ub lik",
+ "▁H ass",
+ "▁Ha ss",
+ "▁Has s",
+ "}\\ ,\\",
+ "}\\, \\",
+ "} \\,\\",
+ "un ker",
+ "unk er",
+ "▁F actory",
+ "▁Fact ory",
+ "▁ Factory",
+ "▁Res ources",
+ "▁Resource s",
+ "▁ Resources",
+ "date i",
+ "da tei",
+ "dat ei",
+ "▁T ools",
+ "▁To ols",
+ "▁Tool s",
+ "▁ Tools",
+ "▁ste hen",
+ "si me",
+ "sim e",
+ "s ime",
+ "▁Х у",
+ "▁h och",
+ "▁ho ch",
+ "▁Rod ríguez",
+ "zeit ig",
+ "▁Ter ry",
+ "▁Terr y",
+ "▁о бу",
+ "▁об у",
+ "Us age",
+ "urch ase",
+ "l ö",
+ "▁Int roduction",
+ "▁ Introduction",
+ "▁particip ation",
+ "ο ς",
+ "og li",
+ "ap y",
+ "a py",
+ "▁hope fully",
+ "pon der",
+ "po nder",
+ "pond er",
+ "p onder",
+ "▁Y ang",
+ "▁Yan g",
+ "▁Ya ng",
+ "▁prom ises",
+ "▁promise s",
+ "▁вер ну",
+ "▁о стров",
+ "▁ост ров",
+ "^{ +",
+ "▁most ra",
+ "▁mo stra",
+ "▁mos tra",
+ "▁CURL OPT",
+ "H H",
+ "▁std out",
+ "▁ stdout",
+ "▁br illiant",
+ "▁manus cript",
+ "▁de cir",
+ "▁dec ir",
+ "▁B olog",
+ "▁Bo log",
+ "▁Bol og",
+ "▁ме ста",
+ "▁мест а",
+ "▁in visible",
+ "▁C hal",
+ "▁Ch al",
+ "▁Cha l",
+ "▁analy ze",
+ "▁analyz e",
+ "pr ilis",
+ "pril is",
+ "att end",
+ "atten d",
+ "atte nd",
+ "M vc",
+ "th an",
+ "tha n",
+ "t han",
+ "ck o",
+ "c ko",
+ "▁Que bec",
+ "▁pl anta",
+ "▁plan ta",
+ "▁plant a",
+ "▁télé vis",
+ "▁un install",
+ "èn cies",
+ "▁gmin ie",
+ "▁P ref",
+ "▁Pr ef",
+ "▁Pre f",
+ "▁le quel",
+ "Inv ocation",
+ "▁ Í",
+ "▁trans formed",
+ "▁transform ed",
+ "MA N",
+ "M AN",
+ "ge baut",
+ "geb aut",
+ "▁со хра",
+ "▁вто рой",
+ "▁L ith",
+ "▁Li th",
+ "▁Lit h",
+ "wend ung",
+ "▁Polit ik",
+ "▁Sen ator",
+ "▁L L",
+ "▁ LL",
+ "жде ние",
+ "ш те",
+ "▁C és",
+ "▁b ande",
+ "▁band e",
+ "▁ban de",
+ "▁ba nde",
+ "▁histor ian",
+ "▁historia n",
+ "▁pass words",
+ "▁password s",
+ "mal loc",
+ "m alloc",
+ "▁sem if",
+ "▁semi f",
+ "▁r å",
+ "▁ rå",
+ "unic í",
+ "uni cí",
+ "Av ailable",
+ "Option al",
+ "Opt ional",
+ "▁T we",
+ "▁Tw e",
+ "▁k ró",
+ "▁kr ó",
+ "▁sub sets",
+ "▁subset s",
+ "▁subs ets",
+ "▁D AT",
+ "▁DA T",
+ "▁ DAT",
+ "▁double s",
+ "▁dou bles",
+ "▁doub les",
+ "ни ками",
+ "ника ми",
+ "▁з в",
+ "ge geben",
+ "geg eben",
+ "g egeben",
+ "▁По пис",
+ "▁jú lius",
+ "▁m eteor",
+ "▁met eor",
+ "Mo unt",
+ "M ount",
+ "iv ent",
+ "ive nt",
+ "iven t",
+ "i vent",
+ "▁N athan",
+ "▁Na than",
+ "▁Nat han",
+ "▁Sch utz",
+ "eg ov",
+ "ego v",
+ "e gov",
+ "▁d öd",
+ "▁me at",
+ "▁пун кт",
+ "▁m inds",
+ "▁min ds",
+ "▁mind s",
+ "eli very",
+ "▁T LS",
+ "ре м",
+ "р ем",
+ "cks å",
+ "▁stay ed",
+ "▁sta yed",
+ "▁B in",
+ "▁Bi n",
+ "▁P ia",
+ "▁Pi a",
+ "▁и мен",
+ "▁име н",
+ "▁им ен",
+ "▁Bob by",
+ "▁produ it",
+ "▁prod uit",
+ "em pio",
+ "emp io",
+ "▁redu cing",
+ "▁Y u",
+ "▁Gesch äft",
+ "▁per ché",
+ "▁c ors",
+ "▁cor s",
+ "▁co rs",
+ "▁i cons",
+ "▁icon s",
+ "▁ic ons",
+ "▁ icons",
+ "App Data",
+ "▁H og",
+ "▁Ho g",
+ "▁р ів",
+ "▁рі в",
+ "▁ рів",
+ "▁S ans",
+ "▁San s",
+ "▁Sa ns",
+ "▁si ège",
+ "▁siè ge",
+ "st ellen",
+ "stell en",
+ "stelle n",
+ "Br ush",
+ "OF F",
+ "O FF",
+ "▁vis itor",
+ "▁visit or",
+ "▁b ath",
+ "▁ba th",
+ "▁bat h",
+ "▁f ee",
+ "▁fe e",
+ "at isf",
+ "ati sf",
+ "atis f",
+ "▁cu rv",
+ "▁cur v",
+ "▁fol gender",
+ "▁folg ender",
+ "▁cons cience",
+ "▁Se attle",
+ "▁med ieval",
+ "▁medi eval",
+ "dist ribution",
+ "▁D M",
+ "▁ DM",
+ "▁м я",
+ "▁ мя",
+ "▁R UN",
+ "ak ov",
+ "ako v",
+ "a kov",
+ "ce il",
+ "c eil",
+ "▁let ting",
+ "▁lett ing",
+ "▁d ov",
+ "▁do v",
+ "▁о би",
+ "▁об и",
+ "ki ej",
+ "kie j",
+ "k iej",
+ "▁dire kt",
+ "▁t m",
+ "▁ tm",
+ "col ors",
+ "color s",
+ "colo rs",
+ "▁alt ro",
+ "▁tijd ens",
+ "]{ '",
+ "] {'",
+ "▁B om",
+ "▁Bo m",
+ "▁k unst",
+ "▁kun st",
+ "▁sh elter",
+ "▁r av",
+ "▁ra v",
+ "▁ rav",
+ "pre dict",
+ "pred ict",
+ "▁comenz ó",
+ "▁świ at",
+ "▁św iat",
+ "▁Du rant",
+ "▁Dur ant",
+ "▁sch emes",
+ "▁scheme s",
+ "▁sche mes",
+ "▁m esh",
+ "▁me sh",
+ "▁mes h",
+ "▁ind icator",
+ "▁indic ator",
+ "▁E mer",
+ "▁Em er",
+ "▁gu ilty",
+ "не ц",
+ "▁consequ ences",
+ "▁consequence s",
+ "cl udes",
+ "clude s",
+ "clud es",
+ "▁L ower",
+ "▁Lo wer",
+ "▁Low er",
+ "▁ Lower",
+ "▁по ме",
+ "▁p ace",
+ "▁pa ce",
+ "▁pac e",
+ "▁ pace",
+ "да го",
+ "▁am bos",
+ "▁amb os",
+ "l b",
+ "▁educ ated",
+ "ur ale",
+ "ura le",
+ "ural e",
+ "u rale",
+ "an h",
+ "es ség",
+ "ess ég",
+ "▁associ ations",
+ "▁association s",
+ "to wn",
+ "t own",
+ "▁t rif",
+ "▁tr if",
+ "▁tri f",
+ "sample s",
+ "sam ples",
+ "s amples",
+ "bo s",
+ "b os",
+ "▁S pect",
+ "▁Sp ect",
+ "▁Spe ct",
+ "▁Spec t",
+ "▁Ц е",
+ "alt ung",
+ "▁L ob",
+ "▁Lo b",
+ "▁curios ity",
+ "▁We iter",
+ "▁Wei ter",
+ "▁Weit er",
+ "est one",
+ "esto ne",
+ "eston e",
+ "e stone",
+ "▁dem ol",
+ "▁demo l",
+ "▁ap olog",
+ "▁apo log",
+ "▁D ynamic",
+ "▁Dynam ic",
+ "▁ Dynamic",
+ "In ner",
+ "es per",
+ "esp er",
+ "ec z",
+ "e cz",
+ "uel lement",
+ "uelle ment",
+ "▁Hamilton ian",
+ "At las",
+ "▁ar gue",
+ "▁arg ue",
+ "For eign",
+ "F oreign",
+ "col lapse",
+ "▁tér min",
+ "▁electron ic",
+ "▁electro nic",
+ "▁N R",
+ "▁ NR",
+ "▁c orr",
+ "▁cor r",
+ "▁co rr",
+ "▁ corr",
+ "tem ps",
+ "temp s",
+ "Index Path",
+ "я з",
+ "▁tal ál",
+ "to day",
+ "tod ay",
+ "wa ve",
+ "w ave",
+ "▁s ib",
+ "▁si b",
+ "▁с пи",
+ "▁сп и",
+ "▁con vey",
+ "▁conv ey",
+ "▁Gé ographie",
+ "▁Н ью",
+ "▁Hi bernate",
+ "▁t in",
+ "▁ti n",
+ "di c",
+ "d ic",
+ "pp ings",
+ "pping s",
+ "s weise",
+ "▁roll ing",
+ "▁rol ling",
+ "▁ rolling",
+ "▁select s",
+ ")\\ )",
+ ") \\)",
+ "▁po eta",
+ "▁poet a",
+ "▁сте пени",
+ "▁A br",
+ "▁Ab r",
+ "▁hö ch",
+ "▁s tern",
+ "▁st ern",
+ "▁ste rn",
+ "▁ster n",
+ "▁f jär",
+ "▁inst aller",
+ "▁install er",
+ "▁instal ler",
+ "de cl",
+ "dec l",
+ "▁m iser",
+ "▁mi ser",
+ "▁mis er",
+ "▁mise r",
+ "group by",
+ "sub str",
+ "subst r",
+ "▁phen omen",
+ "▁W ing",
+ "▁Win g",
+ "▁Wi ng",
+ "▁f ills",
+ "▁fil ls",
+ "▁fill s",
+ "▁ú nico",
+ "Run ning",
+ "R unning",
+ "Com e",
+ "Co me",
+ "C ome",
+ "ir able",
+ "ira ble",
+ "i rable",
+ "sim eq",
+ "sime q",
+ "▁re mp",
+ "▁r emp",
+ "▁rem p",
+ "ke le",
+ "kel e",
+ "k ele",
+ "li ers",
+ "lie rs",
+ "lier s",
+ "l iers",
+ "▁kwiet nia",
+ "▁inter rupted",
+ "▁interrupt ed",
+ "▁J et",
+ "▁Je t",
+ "=\\ {",
+ "= \\{",
+ "íd o",
+ "í do",
+ "▁Tai wan",
+ "▁воз ра",
+ "▁altern atives",
+ "▁alternative s",
+ "▁T ir",
+ "▁Ti r",
+ "▁Re serve",
+ "▁Res erve",
+ "▁К ур",
+ "▁Ку р",
+ "▁No bel",
+ "▁Nob el",
+ "▁рабо тал",
+ "▁работа л",
+ "▁a xes",
+ "▁ax es",
+ "▁C ependant",
+ "k á",
+ "▁er neut",
+ "▁D emo",
+ "▁De mo",
+ "▁Dem o",
+ "▁ Demo",
+ "comm unic",
+ "con structor",
+ "construct or",
+ "▁Mon day",
+ "▁Mond ay",
+ "N il",
+ "Hash Map",
+ "pay ment",
+ "▁fix ing",
+ "▁A DD",
+ "▁AD D",
+ "▁ ADD",
+ "re view",
+ "rev iew",
+ "▁poss ibil",
+ "▁possib il",
+ "▁g rote",
+ "▁gr ote",
+ "▁gro te",
+ "▁group ed",
+ "▁groupe d",
+ "▁L ima",
+ "▁Li ma",
+ "▁Lim a",
+ "▁A ugen",
+ "▁Au gen",
+ "▁Aug en",
+ "▁o ckså",
+ "on as",
+ "ona s",
+ "o nas",
+ "▁deb ate",
+ "▁In gl",
+ "▁Ing l",
+ "D a",
+ "SO UR",
+ "S OUR",
+ "ett be",
+ "▁Batt alion",
+ "▁F loat",
+ "▁Flo at",
+ "▁ Float",
+ "▁c one",
+ "▁con e",
+ "▁co ne",
+ "read sheet",
+ "co urt",
+ "cou rt",
+ "c ourt",
+ "li gen",
+ "lig en",
+ "lige n",
+ "l igen",
+ "▁Begin n",
+ "▁Beg inn",
+ "▁LI MIT",
+ "▁LIM IT",
+ "▁enjo yed",
+ "▁enjoy ed",
+ "▁Jak ob",
+ "▁t elt",
+ "▁te lt",
+ "▁tel t",
+ "back end",
+ "▁Gemeins ame",
+ "li nt",
+ "lin t",
+ "l int",
+ "al ling",
+ "all ing",
+ "▁b ör",
+ "gr and",
+ "gra nd",
+ "g rand",
+ "▁divers es",
+ "▁diverse s",
+ "▁z wiąz",
+ "▁Kom pon",
+ "▁inner halb",
+ "▁desar rollo",
+ "▁desarroll o",
+ "▁Ma sters",
+ "▁Mas ters",
+ "▁Master s",
+ "io so",
+ "ios o",
+ "i oso",
+ "]` .",
+ "] `.",
+ "▁frances a",
+ "▁franc esa",
+ "A ff",
+ "in ek",
+ "ine k",
+ "i nek",
+ "▁des sin",
+ "▁dess in",
+ "`. `",
+ "` .`",
+ "▁r anks",
+ "▁ran ks",
+ "▁rank s",
+ "бер г",
+ "▁s kal",
+ "▁sk al",
+ "▁S ultan",
+ "▁Sul tan",
+ "А Н",
+ "▁спо соб",
+ "▁contra dict",
+ "▁contrad ict",
+ "▁re com",
+ "▁rec om",
+ "▁Ok lahoma",
+ "▁Vlad imir",
+ "▁m eters",
+ "▁me ters",
+ "▁met ers",
+ "▁meter s",
+ "trans port",
+ "▁cons ulté",
+ "▁consult é",
+ "▁ consulté",
+ "▁A TP",
+ "▁AT P",
+ "eb b",
+ "e bb",
+ "▁vol unte",
+ "▁volunt e",
+ "▁out line",
+ "LI C",
+ "L IC",
+ "▁e uro",
+ "▁eu ro",
+ "Char Field",
+ "med ium",
+ "medi um",
+ "▁Belg ique",
+ "Pro c",
+ "Pr oc",
+ "P roc",
+ "ro utes",
+ "route s",
+ "rout es",
+ "rou tes",
+ "▁cont ribu",
+ "▁contrib u",
+ "! }",
+ "ší m",
+ "š ím",
+ "▁L ess",
+ "▁Le ss",
+ "▁Les s",
+ "▁K ost",
+ "▁Ko st",
+ "▁Kos t",
+ "▁eredet iből",
+ "re ven",
+ "rev en",
+ "r even",
+ "ver ify",
+ "▁S alt",
+ "▁Sal t",
+ "▁Sa lt",
+ "▁shoot ing",
+ "▁sho oting",
+ "▁dis pose",
+ "▁dispos e",
+ "▁disp ose",
+ "uj í",
+ "▁t ierra",
+ "▁tier ra",
+ "▁po ison",
+ "▁poi son",
+ "sa k",
+ "s ak",
+ "periment al",
+ "▁N é",
+ "▁K id",
+ "▁Ki d",
+ "ag yar",
+ "agy ar",
+ "▁archiv álva",
+ "be reich",
+ "bere ich",
+ "í z",
+ "▁R itter",
+ "▁Хронологи ја",
+ "ze um",
+ "да х",
+ "▁gr ünd",
+ "▁program mer",
+ "▁programme r",
+ "▁cons eil",
+ "▁conse il",
+ "▁enc rypt",
+ "integr ation",
+ "C ulture",
+ "▁Circ le",
+ "▁Cir cle",
+ "Ob servable",
+ "▁gen omsnitt",
+ "▁Se lection",
+ "▁Select ion",
+ "▁Sel ection",
+ "▁Sele ction",
+ "▁ Selection",
+ "▁ir regular",
+ "Aut res",
+ "Per cent",
+ "fa ult",
+ "f ault",
+ "▁virt ue",
+ "ą pi",
+ "▁s ess",
+ "▁se ss",
+ "▁ses s",
+ "▁Так же",
+ "Tim estamp",
+ "▁litt érature",
+ "▁mo ż",
+ "▁b orrow",
+ "▁bor row",
+ "▁con ced",
+ "▁conc ed",
+ "▁conce d",
+ "чни к",
+ "ч ник",
+ "▁L und",
+ "▁Lu nd",
+ "ION S",
+ "IO NS",
+ "yn ie",
+ "y nie",
+ "▁S hin",
+ "▁Sh in",
+ "▁o sob",
+ "▁os ob",
+ "b ě",
+ "▁int uit",
+ "▁intu it",
+ "▁на п",
+ "▁p roph",
+ "▁pro ph",
+ "▁pr oph",
+ "▁prop h",
+ "▁p itt",
+ "▁pi tt",
+ "▁pit t",
+ "▁IB M",
+ "▁T ill",
+ "▁Ti ll",
+ "▁h ina",
+ "▁hi na",
+ "▁hin a",
+ "it test",
+ "itt est",
+ "itte st",
+ "gener ator",
+ "▁N in",
+ "▁Ni n",
+ "▁K ot",
+ "▁Ko t",
+ "▁p asser",
+ "▁pass er",
+ "▁pas ser",
+ "▁passe r",
+ "▁dis position",
+ "▁dispos ition",
+ "▁disp osition",
+ "un ing",
+ "uni ng",
+ "u ning",
+ "▁f ame",
+ "▁fa me",
+ "▁fam e",
+ "▁t enia",
+ "▁te nia",
+ "▁ten ia",
+ "an cement",
+ "ance ment",
+ "anc ement",
+ "▁Su isse",
+ "` -",
+ "▁h ombres",
+ "▁hom bres",
+ "▁hombre s",
+ "▁inf inity",
+ "▁infin ity",
+ "▁окон ча",
+ "▁co sm",
+ "▁cos m",
+ "▁D ennis",
+ "▁Den nis",
+ "ba z",
+ "b az",
+ "ha upt",
+ "h aupt",
+ "▁might y",
+ "▁pr ede",
+ "▁pre de",
+ "▁pred e",
+ "us able",
+ "usa ble",
+ "▁ws zyst",
+ "▁wsz yst",
+ "▁l b",
+ "▁ lb",
+ "AB ASE",
+ "A BASE",
+ "j na",
+ "не в",
+ "н ев",
+ "▁as es",
+ "▁ ases",
+ "▁final mente",
+ "й м",
+ "pe ction",
+ "pect ion",
+ "pec tion",
+ "p ection",
+ "▁Stud ien",
+ "▁Norweg ian",
+ "ce go",
+ "c ego",
+ "IN DEX",
+ "IND EX",
+ "or ten",
+ "ort en",
+ "orte n",
+ "▁friend ship",
+ "▁friends hip",
+ "met ro",
+ "m etro",
+ "th ick",
+ "▁Z el",
+ "▁Ze l",
+ "LO W",
+ "L OW",
+ "▁there by",
+ "un ted",
+ "unt ed",
+ "unte d",
+ "▁sur faces",
+ "▁surface s",
+ "ющи м",
+ "%) .",
+ "% ).",
+ "▁W onder",
+ "▁Wo nder",
+ "▁redund ant",
+ "▁G ros",
+ "▁Gr os",
+ "▁Gro s",
+ "▁web sites",
+ "▁website s",
+ "▁v io",
+ "▁vi o",
+ "▁o cas",
+ "▁oc as",
+ "vé s",
+ "v és",
+ "▁G am",
+ "▁Ga m",
+ "d w",
+ "Ind icator",
+ "▁K ob",
+ "▁Ko b",
+ "▁j ack",
+ "▁ja ck",
+ "▁ jack",
+ "Hi nt",
+ "H int",
+ "▁A pol",
+ "▁Ap ol",
+ "▁други е",
+ "▁N UM",
+ "▁ NUM",
+ "▁o fic",
+ "▁of ic",
+ "yst ycz",
+ "▁were ld",
+ "▁wer eld",
+ "мо сти",
+ "LE FT",
+ "▁T ypes",
+ "▁Type s",
+ "▁Ty pes",
+ "▁Typ es",
+ "▁ Types",
+ "se en",
+ "see n",
+ "s een",
+ "un cia",
+ "unc ia",
+ "unci a",
+ "▁n arod",
+ "▁na rod",
+ "▁nar od",
+ "▁это т",
+ "Side note",
+ "S idenote",
+ "ue il",
+ "u eil",
+ "▁от ме",
+ "▁cour ts",
+ "▁court s",
+ "fi r",
+ "f ir",
+ "ur z",
+ "u rz",
+ "чен ко",
+ "Cred entials",
+ "▁imag ination",
+ "it ats",
+ "ita ts",
+ "itat s",
+ "bu ff",
+ "buf f",
+ "b uff",
+ "fl ash",
+ "▁bad ly",
+ "▁w orn",
+ "▁wor n",
+ "▁wo rn",
+ "▁окру гу",
+ "cat alog",
+ "catal og",
+ "c atalog",
+ "li me",
+ "lim e",
+ "l ime",
+ "▁G ill",
+ "▁Gi ll",
+ "▁Gil l",
+ "▁S ent",
+ "▁Se nt",
+ "▁Sen t",
+ "ie lla",
+ "iel la",
+ "i ella",
+ "▁Cra ig",
+ "▁S ele",
+ "▁Se le",
+ "▁Sel e",
+ "▁Indep end",
+ "▁prov incie",
+ "▁provin cie",
+ "os sen",
+ "oss en",
+ "▁за пад",
+ "▁запа д",
+ "▁inf ant",
+ "▁pr events",
+ "▁prevent s",
+ "▁prev ents",
+ "▁provin ces",
+ "▁province s",
+ "af é",
+ "be g",
+ "b eg",
+ "▁col ours",
+ "▁colour s",
+ "B F",
+ "ë n",
+ "▁Ме жду",
+ "î n",
+ "Ob server",
+ "for sch",
+ "í gen",
+ "um ption",
+ "ump tion",
+ "▁Ill ustr",
+ "ри ст",
+ "рис т",
+ "▁по лови",
+ "▁пол ови",
+ "▁поло ви",
+ "▁` &",
+ "▁o re",
+ "▁or e",
+ "▁ ore",
+ "▁supp lies",
+ "▁parent hes",
+ "Found ation",
+ "▁v ou",
+ "▁vo u",
+ "▁T out",
+ "▁To ut",
+ "Don ald",
+ "▁R ET",
+ "▁RE T",
+ "we ig",
+ "wei g",
+ "▁produ cción",
+ "mi x",
+ "m ix",
+ "▁ut wor",
+ "▁f öl",
+ "▁fö l",
+ "▁ent ão",
+ "▁S ister",
+ "▁Si ster",
+ "Tag s",
+ "T ags",
+ "▁Савез не",
+ "▁privile ges",
+ "▁na zw",
+ "▁naz w",
+ "▁R av",
+ "▁Ra v",
+ "▁re pro",
+ "▁rep ro",
+ "▁repr o",
+ "▁M ason",
+ "▁Ma son",
+ "▁Mas on",
+ "▁Pl atform",
+ "▁Plat form",
+ "▁ Platform",
+ "▁про бле",
+ "▁P érez",
+ "▁bl anc",
+ "▁bla nc",
+ "▁blan c",
+ "Be havior",
+ "фи ци",
+ "ek en",
+ "e ken",
+ "▁me ets",
+ "▁meet s",
+ "(. *",
+ "( .*",
+ "▁f å",
+ "ep en",
+ "e pen",
+ "ma ker",
+ "make r",
+ "m aker",
+ "▁lo yal",
+ "mem bers",
+ "member s",
+ "m embers",
+ "meister schaft",
+ "go al",
+ "ш лен",
+ "▁се веро",
+ "▁север о",
+ "ie nde",
+ "ien de",
+ "i ende",
+ "д ні",
+ "Pro of",
+ "▁exp lic",
+ "▁expl ic",
+ "▁elect ro",
+ "ie ls",
+ "iel s",
+ "i els",
+ "re load",
+ "▁el even",
+ "▁ele ven",
+ "▁elev en",
+ "▁part idos",
+ "▁partido s",
+ "în e",
+ "î ne",
+ "▁R egin",
+ "▁Re gin",
+ "▁Reg in",
+ "▁é x",
+ "▁Bu lg",
+ "▁Bul g",
+ "▁network ing",
+ "▁net working",
+ "▁se parator",
+ "▁separ ator",
+ "User Name",
+ "▁edific io",
+ "▁M ie",
+ "▁Mi e",
+ "▁id le",
+ "ye d",
+ "y ed",
+ "▁pass engers",
+ "▁passenger s",
+ "+ )",
+ "me no",
+ "men o",
+ "m eno",
+ "eg gi",
+ "e ggi",
+ "▁nice ly",
+ "▁nic ely",
+ "end encia",
+ "enden cia",
+ "чи й",
+ "ét és",
+ "été s",
+ "ight arrow",
+ "▁orth ogonal",
+ "▁H alf",
+ "▁Hal f",
+ "▁fe wer",
+ "▁few er",
+ "▁pro pi",
+ "▁prop i",
+ "▁pr imit",
+ "▁prim it",
+ "▁pri mit",
+ "▁primi t",
+ "ic ale",
+ "ical e",
+ "ica le",
+ "▁f lower",
+ "▁fl ower",
+ "▁flow er",
+ "▁flo wer",
+ "mer k",
+ "m erk",
+ "▁Оте че",
+ "▁pers istent",
+ "▁persist ent",
+ "▁V ille",
+ "▁Vill e",
+ "▁Vi lle",
+ "▁Vil le",
+ "Me n",
+ "M en",
+ "ga ben",
+ "gabe n",
+ "g aben",
+ "▁Isa ac",
+ "at ivity",
+ "ativ ity",
+ "ati vity",
+ "▁pół noc",
+ "▁r ok",
+ "▁ro k",
+ "▁ rok",
+ "car ds",
+ "card s",
+ "c ards",
+ "де ния",
+ "▁ю го",
+ "▁extra ordinary",
+ "▁k yr",
+ "(\" ,",
+ "( \",",
+ ")) ]",
+ ") )]",
+ "▁un ix",
+ "▁ unix",
+ "ко л",
+ "▁s ink",
+ "▁sin k",
+ "ap sed",
+ "aps ed",
+ "▁k ommen",
+ "▁kom men",
+ "▁komm en",
+ "▁ kommen",
+ "▁for cing",
+ "Ab out",
+ "▁H alle",
+ "▁Ha lle",
+ "▁Hall e",
+ "▁Hal le",
+ "▁Maj esty",
+ "▁Sw itch",
+ "▁ Switch",
+ "▁ab road",
+ "▁acceler ation",
+ "ur bed",
+ "urb ed",
+ "▁о стан",
+ "▁ос тан",
+ "▁оста н",
+ "▁ост ан",
+ "Re ady",
+ "Read y",
+ "▁пів ні",
+ "Br a",
+ "B ra",
+ "▁ць ого",
+ "▁pl ut",
+ "▁T rain",
+ "▁Tr ain",
+ "▁Tra in",
+ "▁á prilis",
+ "▁p uesto",
+ "▁pu esto",
+ "▁pue sto",
+ "▁t oss",
+ "▁to ss",
+ "▁irre levant",
+ "▁d ip",
+ "▁di p",
+ "se gment",
+ "seg ment",
+ "op acity",
+ "▁lors que",
+ "▁versch ill",
+ "ен а",
+ "е на",
+ "▁D oc",
+ "▁Do c",
+ "▁ Doc",
+ "%%%% %%%%",
+ "▁b orders",
+ "▁border s",
+ "▁bor ders",
+ "▁bord ers",
+ "ge bras",
+ "geb ras",
+ "gebra s",
+ "▁r ies",
+ "▁ri es",
+ "▁ ries",
+ "▁Olymp edia",
+ "▁Gener ation",
+ "met ros",
+ "metro s",
+ "▁hor izon",
+ "▁adapt ation",
+ "▁Z ahl",
+ "▁Za hl",
+ "▁na he",
+ "▁nah e",
+ "▁B ug",
+ "▁Bu g",
+ "P icture",
+ "љ и",
+ "R GB",
+ "O wner",
+ "ad in",
+ "adi n",
+ "a din",
+ "▁Catal unya",
+ "ný ch",
+ "n ých",
+ "▁cual quier",
+ "▁Inst itution",
+ "▁Instit ution",
+ "▁Institut ion",
+ "in sen",
+ "ins en",
+ "▁Bras ile",
+ "▁Brasil e",
+ "▁f itting",
+ "▁fit ting",
+ "De leg",
+ "Del eg",
+ "ic two",
+ "ict wo",
+ "▁Ex per",
+ "▁Exp er",
+ "och astic",
+ "▁d us",
+ "▁du s",
+ "▁по ра",
+ "▁пор а",
+ "▁sub string",
+ "▁subst ring",
+ "▁subs tring",
+ "▁substr ing",
+ "▁ substring",
+ "сси и",
+ "с сии",
+ "oi n",
+ "o in",
+ "▁ш кола",
+ "▁шко ла",
+ "▁c x",
+ "▁ cx",
+ "▁% )",
+ "▁ %)",
+ "▁Bud dh",
+ "▁p ending",
+ "▁pen ding",
+ "▁En try",
+ "▁Ent ry",
+ "▁ Entry",
+ "▁Be rl",
+ "▁Ber l",
+ "▁c ler",
+ "▁cl er",
+ "▁cle r",
+ "▁ cler",
+ "▁S oc",
+ "▁So c",
+ "▁r ounded",
+ "▁round ed",
+ "▁m v",
+ "▁ mv",
+ "ít ett",
+ "▁Di plom",
+ "▁französ ischen",
+ "▁G an",
+ "▁Ga n",
+ "▁Inv estig",
+ "▁index Path",
+ "▁ indexPath",
+ "▁mol ti",
+ "▁molt i",
+ "pers istence",
+ "▁XIX e",
+ "▁Elect ron",
+ "b ü",
+ "ge le",
+ "gel e",
+ "g ele",
+ "▁M aler",
+ "▁Ma ler",
+ "▁Mal er",
+ "▁Male r",
+ "▁proyect o",
+ "▁B ath",
+ "▁Ba th",
+ "▁Bat h",
+ "el lers",
+ "ell ers",
+ "elle rs",
+ "eller s",
+ "▁G P",
+ "▁ GP",
+ "on ing",
+ "oni ng",
+ "o ning",
+ "clou dflare",
+ "▁p ři",
+ "▁př i",
+ "▁d ed",
+ "▁de d",
+ "▁ ded",
+ "▁Od kazy",
+ "▁M sg",
+ "▁ Msg",
+ "▁B eing",
+ "▁Be ing",
+ "▁Bei ng",
+ "▁De puis",
+ "▁Dep uis",
+ "▁Pri mary",
+ "▁Prim ary",
+ "▁Prima ry",
+ "▁ Primary",
+ "▁App ro",
+ "▁Ap pro",
+ "▁form ally",
+ "▁formal ly",
+ "ступ ил",
+ "ступи л",
+ "▁fue ra",
+ "▁fu era",
+ "▁fuer a",
+ "▁R oot",
+ "▁Ro ot",
+ "▁ Root",
+ "▁aut onom",
+ "▁auto nom",
+ "▁secret ary",
+ "▁os ób",
+ "▁cu ales",
+ "▁cual es",
+ "▁Dep ending",
+ "▁a si",
+ "▁as i",
+ "▁ asi",
+ "ve ra",
+ "ver a",
+ "v era",
+ "▁rus se",
+ "▁russ e",
+ "▁pro ves",
+ "▁prov es",
+ "▁prove s",
+ "▁pres iden",
+ "R U",
+ "▁Wat son",
+ "▁web pack",
+ "▁ webpack",
+ "elli gence",
+ "ellig ence",
+ "ка м",
+ "▁Office r",
+ "▁Offic er",
+ "▁d elivery",
+ "▁deliver y",
+ "▁deli very",
+ "ж дён",
+ "▁им пе",
+ "▁w il",
+ "▁v esc",
+ "▁ve sc",
+ "▁ves c",
+ "uszt us",
+ "▁Ge off",
+ "() }",
+ "( )}",
+ "▁F ore",
+ "▁For e",
+ "▁Fo re",
+ "▁w enig",
+ "▁we nig",
+ "▁wen ig",
+ "▁A irl",
+ "▁Air l",
+ "▁E fter",
+ "▁Bre ak",
+ "▁St äd",
+ "is miss",
+ "ism iss",
+ "í p",
+ "▁avoid ed",
+ "▁avo ided",
+ "▁assert ion",
+ "D N",
+ "▁te at",
+ "▁tea t",
+ "ín a",
+ "í na",
+ "▁mechan ical",
+ "is u",
+ "i su",
+ "@ {",
+ "▁n ou",
+ "▁no u",
+ "▁ nou",
+ "Ital ie",
+ "source forge",
+ "▁s vo",
+ "▁sv o",
+ "▁kir ály",
+ "▁Re ferences",
+ "▁Refer ences",
+ "▁Reference s",
+ "si x",
+ "s ix",
+ "▁Arch ives",
+ "▁Archiv es",
+ "▁Archive s",
+ "▁fin ishing",
+ "▁finish ing",
+ "ac je",
+ "ét at",
+ "éta t",
+ "é tat",
+ "if fs",
+ "iff s",
+ "▁st ead",
+ "▁ste ad",
+ "▁fe as",
+ "aw are",
+ "awa re",
+ "a ware",
+ "la nde",
+ "land e",
+ "lan de",
+ "l ande",
+ "In ject",
+ "▁A gent",
+ "▁Ag ent",
+ "▁Age nt",
+ "▁ Agent",
+ "▁Norm datei",
+ "▁a men",
+ "▁am en",
+ "▁ amen",
+ "▁Arch itecture",
+ "az e",
+ "a ze",
+ "ș te",
+ "▁us ar",
+ "▁c ores",
+ "▁cor es",
+ "▁co res",
+ "▁core s",
+ "лі н",
+ "л ін",
+ "▁C astro",
+ "▁Cast ro",
+ "▁v æ",
+ ">\" ,",
+ "> \",",
+ "om ena",
+ "ome na",
+ "omen a",
+ "▁ge sam",
+ "▁ges am",
+ "▁Mart ín",
+ "▁Martí n",
+ "eg ung",
+ "egu ng",
+ "▁spole č",
+ "▁ampl itude",
+ "▁amplit ude",
+ "▁import ing",
+ "▁list view",
+ "TH E",
+ "T HE",
+ "zi ale",
+ "zial e",
+ "zia le",
+ "z iale",
+ "ce des",
+ "ced es",
+ "c edes",
+ "▁particul ier",
+ "▁Распо дела",
+ "▁кра й",
+ "▁d ivent",
+ "▁di vent",
+ "▁div ent",
+ "▁k é",
+ "▁ ké",
+ "qu it",
+ "qui t",
+ "q uit",
+ "то ром",
+ "тор ом",
+ "Check Box",
+ "▁Zob acz",
+ "ph e",
+ "p he",
+ "pt a",
+ "p ta",
+ "▁s jö",
+ "▁sj ö",
+ "▁розта ш",
+ "▁tedes co",
+ "▁s tal",
+ "▁st al",
+ "▁sta l",
+ "▁ stal",
+ "▁Be ruf",
+ "▁Ber uf",
+ "ова я",
+ "о вая",
+ "▁s vě",
+ "▁sv ě",
+ "▁fl ush",
+ "▁flu sh",
+ "▁ flush",
+ "▁від бу",
+ "▁rad ial",
+ "▁radi al",
+ "▁différ entes",
+ "ан та",
+ "▁Per ry",
+ "Col l",
+ "Co ll",
+ "C oll",
+ "li qu",
+ "l iqu",
+ "▁Option al",
+ "▁Opt ional",
+ "▁ Optional",
+ "▁Сан кт",
+ "▁LIN Q",
+ "▁Fran c",
+ "▁Fr anc",
+ "▁Fra nc",
+ "ci je",
+ "c ije",
+ "▁Gu illaume",
+ "kn ow",
+ "k now",
+ "▁Un its",
+ "▁Unit s",
+ "ol k",
+ "▁Syst ème",
+ "▁S ales",
+ "▁Sal es",
+ "▁Sa les",
+ "▁ehemal igen",
+ "ми рова",
+ "мир ова",
+ "x html",
+ "set opt",
+ "▁m ellan",
+ "▁mel lan",
+ "▁z ie",
+ "▁ zie",
+ "▁gi ant",
+ "Bo ard",
+ "▁C aval",
+ "▁Ca val",
+ "▁Cav al",
+ "▁def ence",
+ "-- --------",
+ "---- ------",
+ "-------- --",
+ "--- -------",
+ "------ ----",
+ "----- -----",
+ "------- ---",
+ "ps hire",
+ "p shire",
+ "ma rt",
+ "mar t",
+ "m art",
+ "▁Di oc",
+ "is kt",
+ "isk t",
+ "▁in se",
+ "▁ins e",
+ "▁é pisode",
+ "чи к",
+ "bar s",
+ "ba rs",
+ "b ars",
+ "Si to",
+ "S ito",
+ "▁integr ity",
+ "au ff",
+ "auf f",
+ "a uff",
+ "▁v är",
+ "▁vä r",
+ "Az ure",
+ "▁star b",
+ "▁sta rb",
+ "▁кон тра",
+ "▁Мекси чка",
+ "▁за па",
+ "▁Mount ains",
+ "▁Mountain s",
+ "}} =",
+ "} }=",
+ "▁pull ing",
+ "▁pul ling",
+ "▁sat ellite",
+ "▁at oms",
+ "▁atom s",
+ "▁profes or",
+ "▁repeated ly",
+ "▁repeat edly",
+ "▁inv asion",
+ "▁invas ion",
+ "program ming",
+ "├ ──",
+ "▁L ip",
+ "▁Li p",
+ "вши е",
+ "в шие",
+ "▁k een",
+ "▁ke en",
+ "▁crit ics",
+ "▁critic s",
+ "▁N icola",
+ "▁Nicol a",
+ "▁Nic ola",
+ "▁Ni cola",
+ "▁C and",
+ "▁Can d",
+ "▁Ca nd",
+ "▁dist int",
+ "▁he ading",
+ "▁head ing",
+ "p ragma",
+ "{ |",
+ "ym en",
+ "yme n",
+ "y men",
+ "▁ter rain",
+ "▁terra in",
+ "ied enis",
+ "▁bes onders",
+ "▁nomin ated",
+ "BO OL",
+ "▁K ay",
+ "▁Ka y",
+ "ci an",
+ "cia n",
+ "c ian",
+ "st elle",
+ "ste lle",
+ "stell e",
+ "▁disput e",
+ "▁disp ute",
+ "▁ щ",
+ "Data Set",
+ "no thing",
+ "not hing",
+ "n othing",
+ "Aut om",
+ "Auto m",
+ "hör en",
+ "hö ren",
+ "▁s hed",
+ "▁sh ed",
+ "▁she d",
+ "▁p aused",
+ "▁pa used",
+ "▁pause d",
+ "▁pau sed",
+ "sa n",
+ "s an",
+ "▁nun ca",
+ "!( \"",
+ "! (\"",
+ "▁po łoż",
+ "Se cret",
+ "Sec ret",
+ "▁Do main",
+ "▁Dom ain",
+ "▁ Domain",
+ "▁воз мож",
+ "X V",
+ "l v",
+ "ik h",
+ "i kh",
+ "▁S ony",
+ "▁So ny",
+ "▁Son y",
+ "m q",
+ "ot rop",
+ "otr op",
+ "▁Log ger",
+ "▁ Logger",
+ "▁thre at",
+ "as ted",
+ "ast ed",
+ "aste d",
+ "a sted",
+ "зь ко",
+ "▁fre ely",
+ "▁free ly",
+ "▁improve ments",
+ "▁improv ements",
+ "▁improvement s",
+ "ist ema",
+ "iste ma",
+ "▁illustr ate",
+ "▁t act",
+ "▁ta ct",
+ "▁fig ur",
+ "ué s",
+ "u és",
+ "rim inal",
+ "rimin al",
+ "od on",
+ "odo n",
+ "o don",
+ "int endo",
+ "▁influ enced",
+ "▁influence d",
+ "▁influen ced",
+ "FF ER",
+ "▁G host",
+ "▁Gh ost",
+ "▁со вер",
+ "▁сов ер",
+ "na d",
+ "n ad",
+ "ion ed",
+ "io ned",
+ "ione d",
+ "i oned",
+ "▁Event s",
+ "▁Ev ents",
+ "▁Even ts",
+ "▁ Events",
+ "▁wr apping",
+ "▁wra pping",
+ "▁wrap ping",
+ "-------- -+",
+ "--- ------+",
+ "------ ---+",
+ "----- ----+",
+ "------- --+",
+ "fi f",
+ "f if",
+ "▁( **",
+ "▁(* *",
+ "={ {",
+ "= {{",
+ "ма ль",
+ "м аль",
+ "▁loss es",
+ "▁Gal erie",
+ "te l",
+ "t el",
+ "▁лю того",
+ "▁K ru",
+ "▁Kr u",
+ "▁P olen",
+ "▁Pol en",
+ "▁Po len",
+ "ні м",
+ "ne ar",
+ "nea r",
+ "n ear",
+ "▁sh ame",
+ "▁moy enne",
+ "▁C P",
+ "▁ CP",
+ "pre is",
+ "▁pass enger",
+ "le k",
+ "l ek",
+ "ion ales",
+ "ional es",
+ "ionale s",
+ "iona les",
+ "kaf ka",
+ "k afka",
+ "▁partic ipe",
+ "▁particip e",
+ "▁parti cipe",
+ "▁partici pe",
+ "▁memb ership",
+ "▁member ship",
+ "▁members hip",
+ "[ _",
+ "land o",
+ "lan do",
+ "l ando",
+ "st elling",
+ "stell ing",
+ "Se m",
+ "S em",
+ "go n",
+ "g on",
+ "▁Cor rect",
+ "▁v alle",
+ "▁val le",
+ "▁va lle",
+ "▁vall e",
+ "▁read ily",
+ "▁Dok ument",
+ "hon neur",
+ "h onneur",
+ "▁test im",
+ "ul ative",
+ "do Filter",
+ "▁domin ant",
+ "am mer",
+ "amm er",
+ "▁ко ја",
+ "▁M onsieur",
+ "ze g",
+ "z eg",
+ "▁вій ни",
+ "▁F o",
+ "▁A my",
+ "▁Am y",
+ "▁ ¡",
+ "▁febru ár",
+ "▁down loading",
+ "▁download ing",
+ "▁l eng",
+ "▁le ng",
+ "▁len g",
+ "\\}$ ,",
+ "\\} $,",
+ "\\ }$,",
+ "▁ne at",
+ "▁C ache",
+ "▁Ca che",
+ "▁ Cache",
+ "IC ATION",
+ "▁de ve",
+ "▁dev e",
+ "▁s orrow",
+ "▁sor row",
+ "sl ow",
+ "s low",
+ "▁hin aus",
+ "▁hina us",
+ "▁recon oc",
+ "▁Lin ked",
+ "▁Link ed",
+ "▁Sh aw",
+ "mar ket",
+ "mark et",
+ "▁D ic",
+ "▁Di c",
+ "▁S ki",
+ "▁Sk i",
+ "▁del imiter",
+ "▁Main Activity",
+ "▁ MainActivity",
+ "▁Mus ical",
+ "▁Music al",
+ "▁Re yn",
+ "▁Rey n",
+ "Scroll View",
+ "▁convent ional",
+ "▁convention al",
+ "en ça",
+ "enç a",
+ "▁re factor",
+ "▁ref actor",
+ "' -",
+ "▁H ed",
+ "▁He d",
+ "spr ech",
+ "spre ch",
+ "▁ath let",
+ "▁e species",
+ "▁es pecies",
+ "▁espe cies",
+ "▁espec ies",
+ "▁especie s",
+ "▁Sch ön",
+ "▁kle inen",
+ "▁kleine n",
+ "▁klein en",
+ "ш ко",
+ "▁Й о",
+ "▁H appy",
+ "▁Ha ppy",
+ "multi row",
+ "▁august i",
+ "▁G and",
+ "▁Ga nd",
+ "▁Gan d",
+ "▁appoint ment",
+ "▁Medi abestanden",
+ "Th ree",
+ "▁Kenn eth",
+ "NE W",
+ "▁Not ification",
+ "▁ Notification",
+ "▁Mar x",
+ "▁Ma rx",
+ "▁in sc",
+ "▁ins c",
+ "Mo r",
+ "M or",
+ "вы й",
+ "в ый",
+ "vä st",
+ "v äst",
+ "vi dia",
+ "vid ia",
+ "v idia",
+ "▁demonstr ated",
+ "▁demonstrate d",
+ "font s",
+ "fon ts",
+ "▁k amen",
+ "▁kam en",
+ "▁ka men",
+ "▁S ter",
+ "▁St er",
+ "▁Ste r",
+ "▁mieszkań ców",
+ "▁K oh",
+ "▁Ko h",
+ "~$ \\",
+ "~ $\\",
+ "») .",
+ "» ).",
+ "re ne",
+ "ren e",
+ "r ene",
+ "ins ic",
+ "ic ká",
+ "ick á",
+ "xy gen",
+ "▁m n",
+ "▁ mn",
+ "▁s ched",
+ "▁sc hed",
+ "▁sch ed",
+ "▁sche d",
+ "AS C",
+ "A SC",
+ "I g",
+ "▁Const ant",
+ "▁opport un",
+ "▁My Class",
+ "se f",
+ "s ef",
+ "op ed",
+ "ope d",
+ "o ped",
+ "▁inj ured",
+ "VI S",
+ "V IS",
+ "▁P ero",
+ "▁Per o",
+ "▁Pe ro",
+ "▁U ntil",
+ "▁Un til",
+ "▁f lesh",
+ "▁fl esh",
+ "▁fle sh",
+ "orph ism",
+ "▁Port al",
+ "▁Por tal",
+ "▁gmin y",
+ "▁вла сти",
+ "▁N ä",
+ "кти че",
+ "к тиче",
+ "▁h rab",
+ "▁hr ab",
+ "▁C ub",
+ "▁Cu b",
+ "av oir",
+ "avo ir",
+ "a voir",
+ "▁L ars",
+ "▁La rs",
+ "▁Lar s",
+ "▁Бе ло",
+ "▁seizo en",
+ "▁Gen omsnitt",
+ "▁L il",
+ "▁Li l",
+ "▁P ool",
+ "▁Po ol",
+ "▁ Pool",
+ "▁D ios",
+ "▁Di os",
+ "T X",
+ "ae s",
+ "a es",
+ "aut ore",
+ "auto re",
+ "autor e",
+ "Al pha",
+ "st ates",
+ "state s",
+ "sta tes",
+ "stat es",
+ "La b",
+ "L ab",
+ "n ederbörd",
+ "er ton",
+ "ert on",
+ "▁b rid",
+ "▁br id",
+ "▁ brid",
+ "▁r icht",
+ "▁rich t",
+ "▁ric ht",
+ "▁ri cht",
+ "▁ richt",
+ "▁E la",
+ "▁El a",
+ "▁с ла",
+ "▁ сла",
+ "▁weap on",
+ "▁comb att",
+ "▁combat t",
+ "ag ar",
+ "aga r",
+ "a gar",
+ "▁reg nig",
+ "▁util isé",
+ "▁utilis é",
+ "▁ser vir",
+ "▁serv ir",
+ "▁servi r",
+ "▁b rick",
+ "▁br ick",
+ "▁gate way",
+ "▁tor raste",
+ "▁proced ures",
+ "▁procedure s",
+ "▁års nederbörd",
+ "▁Genomsnitt lig",
+ "чё т",
+ "ч ёт",
+ "▁om rå",
+ "▁ områ",
+ "▁regnig aste",
+ "▁че сть",
+ "▁a mid",
+ "▁am id",
+ "▁ami d",
+ "▁gr ateful",
+ "▁D IS",
+ "▁DI S",
+ "▁ DIS",
+ "DA Y",
+ "▁о ру",
+ "▁ор у",
+ "▁ ору",
+ "▁riv ière",
+ "he ure",
+ "▁Rich mond",
+ "▁Com par",
+ "▁Comp ar",
+ "▁Н ор",
+ "▁Но р",
+ "DO C",
+ "D OC",
+ "es ia",
+ "esi a",
+ "cal c",
+ "▁I U",
+ "▁v org",
+ "▁vo rg",
+ "▁vor g",
+ "▁hab ían",
+ "▁había n",
+ "ço it",
+ "ç oit",
+ "▁a rist",
+ "▁ar ist",
+ "▁к ли",
+ "▁ кли",
+ "▁S ue",
+ "▁Su e",
+ "▁T ouch",
+ "▁To uch",
+ "▁ Touch",
+ "▁Writ ing",
+ "ifi able",
+ "▁w c",
+ "▁with draw",
+ "за р",
+ "з ар",
+ "▁present ly",
+ "▁pres ently",
+ "▁F K",
+ "▁pr akt",
+ "▁pra kt",
+ "▁col ored",
+ "▁color ed",
+ "us b",
+ "u sb",
+ "▁Per ú",
+ "▁pl ata",
+ "▁pla ta",
+ "▁plat a",
+ "▁w ishes",
+ "▁wish es",
+ "▁wis hes",
+ "▁ка м",
+ "▁ кам",
+ "az ar",
+ "aza r",
+ "a zar",
+ "áv el",
+ "á vel",
+ "▁l amp",
+ "▁la mp",
+ "bi shop",
+ "b ishop",
+ "▁in clusion",
+ "▁incl usion",
+ "▁inclus ion",
+ "j q",
+ "ar th",
+ "art h",
+ "▁F lag",
+ "▁Fl ag",
+ "▁ Flag",
+ "▁но р",
+ "▁н ор",
+ "æ dia",
+ "UN CTION",
+ "▁Bahn hof",
+ "▁appro aching",
+ "▁approach ing",
+ "▁G ött",
+ "▁Gö tt",
+ "▁c ube",
+ "▁cu be",
+ "▁cub e",
+ "▁arg ued",
+ "▁argue d",
+ "▁Th ings",
+ "Gu i",
+ "G ui",
+ "до ви",
+ "дов и",
+ "д ови",
+ "▁re cre",
+ "▁rec re",
+ "▁ré seau",
+ "▁rés eau",
+ "▁sign ifica",
+ "▁signific a",
+ "Gi t",
+ "G it",
+ "geb racht",
+ "gebra cht",
+ "▁l iga",
+ "▁li ga",
+ "▁lig a",
+ "▁ liga",
+ "▁ass ured",
+ "al us",
+ "alu s",
+ "a lus",
+ "ри т",
+ "р ит",
+ "▁э нциклопеди",
+ "▁% ).",
+ "▁%) .",
+ "▁ %).",
+ "▁Prem ière",
+ "▁declar ations",
+ "▁declaration s",
+ "▁tr icky",
+ "▁trick y",
+ "▁pro files",
+ "▁prof iles",
+ "▁profile s",
+ "▁profil es",
+ "▁F on",
+ "▁Fo n",
+ "▁J as",
+ "▁Ja s",
+ "â r",
+ "ba bel",
+ "b abel",
+ "▁Fr iday",
+ "▁Fri day",
+ "▁Frid ay",
+ "▁jú nius",
+ "▁c ols",
+ "▁col s",
+ "▁co ls",
+ "▁ cols",
+ "▁EX ISTS",
+ "▁Ital iana",
+ "▁Italian a",
+ "▁Italia na",
+ "▁author ization",
+ "▁s ulle",
+ "▁su lle",
+ "▁sul le",
+ "▁sull e",
+ "▁E mb",
+ "▁Em b",
+ "▁Vari able",
+ "▁ Variable",
+ "tr ees",
+ "tre es",
+ "tree s",
+ "t rees",
+ "▁F ly",
+ "▁Fl y",
+ "ri ors",
+ "rio rs",
+ "rior s",
+ "r iors",
+ "▁da mals",
+ "▁dam als",
+ "▁find et",
+ "▁fin det",
+ "▁Se pt",
+ "▁Sep t",
+ "▁m undial",
+ "▁rem oval",
+ "▁remov al",
+ "▁long itude",
+ "▁longitud e",
+ "cl ic",
+ "cli c",
+ "c lic",
+ "▁f ade",
+ "▁fa de",
+ "▁ fade",
+ "▁grad le",
+ "▁ gradle",
+ "▁z ák",
+ "▁zá k",
+ "▁tim ing",
+ "▁ti ming",
+ "tr ightarrow",
+ "t rightarrow",
+ "at ia",
+ "ati a",
+ "- .",
+ "uch e",
+ "uc he",
+ "u che",
+ "▁ser ialize",
+ "▁serial ize",
+ "▁H mm",
+ "▁Represent atives",
+ "ba h",
+ "b ah",
+ "re nd",
+ "ren d",
+ "r end",
+ "ass ador",
+ "assa dor",
+ "▁sh ield",
+ "uc ion",
+ "u cion",
+ "▁am éricaine",
+ "▁améric aine",
+ "▁américain e",
+ "z ę",
+ "vi lla",
+ "vil la",
+ "v illa",
+ "▁hom bre",
+ "ás s",
+ "á ss",
+ "▁S F",
+ "▁ SF",
+ "▁repe ating",
+ "▁repeat ing",
+ "▁c riter",
+ "▁cr iter",
+ "▁crit er",
+ "▁cri ter",
+ "▁St ruct",
+ "▁Str uct",
+ "▁ Struct",
+ "?? ?",
+ "? ??",
+ "▁che ap",
+ "▁r ings",
+ "▁ring s",
+ "▁rin gs",
+ "ab häng",
+ "▁c orte",
+ "▁cor te",
+ "▁cort e",
+ "▁admin ist",
+ "ix on",
+ "gy pt",
+ "▁punt os",
+ "▁punto s",
+ "▁me zi",
+ "▁mez i",
+ "▁po chod",
+ "▁poc hod",
+ "is ko",
+ "isk o",
+ "i sko",
+ "ni ę",
+ "n ię",
+ "▁о су",
+ "▁ос у",
+ "▁á r",
+ "▁ ár",
+ "те льной",
+ "тель ной",
+ "тельно й",
+ "▁Metropol itan",
+ "ji n",
+ "j in",
+ "ze ss",
+ "zes s",
+ "z ess",
+ "▁ві ці",
+ "▁conflic ts",
+ "▁conflict s",
+ "ij st",
+ "▁Mar ket",
+ "▁Mark et",
+ "ст ров",
+ "стро в",
+ "стр ов",
+ "▁\" ,\"",
+ "▁\", \"",
+ "▁ \",\"",
+ "▁Sc roll",
+ "▁ Scroll",
+ "gu n",
+ "g un",
+ "та ра",
+ "тар а",
+ "▁am ateur",
+ "▁r óż",
+ "pos s",
+ "po ss",
+ "p oss",
+ "▁general ized",
+ "▁H arm",
+ "▁Har m",
+ "▁Ha rm",
+ "ci ta",
+ "cit a",
+ "c ita",
+ "▁Sw itzerland",
+ "ic ola",
+ "ico la",
+ "icol a",
+ "i cola",
+ "▁m uit",
+ "▁mu it",
+ "loc ated",
+ "▁c ó",
+ "▁a rose",
+ "▁ar ose",
+ "▁commun auté",
+ "}) ^",
+ "} )^",
+ "vis ibility",
+ "íd a",
+ "í da",
+ "▁F B",
+ "▁ FB",
+ "▁Fre und",
+ "ga t",
+ "g at",
+ "\": {\"",
+ "int ellij",
+ "if ie",
+ "ifi e",
+ "hm en",
+ "h men",
+ "▁éd ition",
+ "▁ édition",
+ "▁ко је",
+ "▁ін ших",
+ "om ing",
+ "omin g",
+ "omi ng",
+ "o ming",
+ "▁arqu itect",
+ "▁Pres idente",
+ "▁President e",
+ "▁П ід",
+ "▁ca bin",
+ "▁cab in",
+ "The orem",
+ "▁G ay",
+ "▁Ga y",
+ "if ice",
+ "ific e",
+ "ifi ce",
+ "▁h ect",
+ "▁he ct",
+ "l ą",
+ "irm ingham",
+ "▁sem antic",
+ "▁Louis iana",
+ "▁sac rifice",
+ "▁sacr ifice",
+ "▁sacrific e",
+ "▁Christ oph",
+ "▁Exec utive",
+ "_ +",
+ "j ák",
+ "▁s eria",
+ "▁se ria",
+ "▁ser ia",
+ "▁Over flow",
+ "▁ Overflow",
+ "▁Lu cy",
+ "▁Luc y",
+ "▁mel hor",
+ "▁vo ices",
+ "▁voice s",
+ "cz a",
+ "c za",
+ "▁ка пи",
+ "▁университе та",
+ "IN CT",
+ "▁col oc",
+ "▁co loc",
+ "▁pr ue",
+ "▁ge omet",
+ "▁geom et",
+ "▁di retto",
+ "▁dire tto",
+ "▁dir etto",
+ "▁dirett o",
+ "re so",
+ "res o",
+ "r eso",
+ "▁A kt",
+ "▁Ak t",
+ "▁un h",
+ "▁се ри",
+ "▁сер и",
+ "▁Al ert",
+ "▁Ale rt",
+ "▁ Alert",
+ "We l",
+ "W el",
+ "au di",
+ "aud i",
+ "a udi",
+ "äl er",
+ "ä ler",
+ "▁gu ests",
+ "▁guest s",
+ "▁и де",
+ "St udio",
+ "▁ка те",
+ "▁ex ponent",
+ "▁expon ent",
+ "rz e",
+ "r ze",
+ "pm od",
+ "p mod",
+ "ro lle",
+ "roll e",
+ "rol le",
+ "▁Lim ited",
+ "Al lemagne",
+ "▁p ity",
+ "▁pi ty",
+ "▁pit y",
+ "▁l ä",
+ "▁ lä",
+ "▁run ner",
+ "▁ runner",
+ "ke nde",
+ "ken de",
+ "k ende",
+ "E Q",
+ "▁M M",
+ "▁ MM",
+ "sz ág",
+ "по ді",
+ "▁reg ret",
+ "▁publi é",
+ "▁depart amento",
+ "▁acc used",
+ "▁accus ed",
+ "h p",
+ "▁P fl",
+ "▁Pf l",
+ "▁S int",
+ "▁Si nt",
+ "▁Sin t",
+ "▁ek onom",
+ "ra ctor",
+ "rac tor",
+ "ract or",
+ "r actor",
+ "▁П ів",
+ "▁aw ful",
+ "owa ć",
+ "] ->",
+ "▁F ine",
+ "▁Fin e",
+ "С а",
+ "ti s",
+ "t is",
+ "ét a",
+ "é ta",
+ "▁Ро ди",
+ "▁Düsseld orf",
+ "LO B",
+ "L OB",
+ "os as",
+ "osa s",
+ "wer ke",
+ "werk e",
+ "▁l ance",
+ "▁lan ce",
+ "▁листо пада",
+ "▁in complete",
+ "▁P icture",
+ "▁ Picture",
+ "(' \\",
+ "( '\\",
+ "es ters",
+ "est ers",
+ "ester s",
+ "este rs",
+ "e sters",
+ "▁belong ed",
+ "▁S ank",
+ "▁San k",
+ "am med",
+ "amm ed",
+ "▁repos itories",
+ "▁ad dr",
+ "▁add r",
+ "▁ addr",
+ "Col lect",
+ "Coll ect",
+ "H ot",
+ "▁t yl",
+ "▁ty l",
+ "▁instance of",
+ "▁bon us",
+ "ov ý",
+ "▁мо ря",
+ "▁мор я",
+ "▁inter active",
+ "▁interact ive",
+ "▁M ys",
+ "▁My s",
+ "▁Ed mund",
+ "file Name",
+ "em or",
+ "emo r",
+ "e mor",
+ "▁Т ри",
+ "▁R osen",
+ "▁Ro sen",
+ "▁Ros en",
+ "▁Rose n",
+ "▁Pr ima",
+ "▁Pri ma",
+ "▁Prim a",
+ "▁v oting",
+ "▁vo ting",
+ "▁vot ing",
+ "▁X P",
+ "▁Z ero",
+ "▁Ze ro",
+ "▁ Zero",
+ "▁L ed",
+ "▁Le d",
+ "ams ung",
+ "▁en ables",
+ "▁enable s",
+ "▁redirect s",
+ "AS T",
+ "A ST",
+ "Pa int",
+ "P aint",
+ "ack er",
+ "ac ker",
+ "a cker",
+ "le cht",
+ "▁chair man",
+ "▁A ven",
+ "▁Av en",
+ "▁S ach",
+ "▁Sa ch",
+ "▁Sac h",
+ "(\" <",
+ "ке р",
+ "к ер",
+ "▁mist akes",
+ "▁mistake s",
+ "▁We it",
+ "▁Wei t",
+ "▁pro wad",
+ "▁ prowad",
+ "▁did nt",
+ "▁didn t",
+ "én ario",
+ "un less",
+ "▁back wards",
+ "bo a",
+ "b oa",
+ "du ino",
+ "`` `",
+ "` ``",
+ "st or",
+ "sto r",
+ "s tor",
+ "Comple tion",
+ "pu esta",
+ "▁din ast",
+ "úl t",
+ "ú lt",
+ "▁S Y",
+ "▁ SY",
+ "if olia",
+ "œuv res",
+ "œuvre s",
+ "▁r acing",
+ "▁ra cing",
+ "▁rac ing",
+ "▁cab inet",
+ "▁cabin et",
+ "▁cut ting",
+ "▁th umb",
+ "▁Ка ра",
+ "▁Кар а",
+ "high light",
+ "ку п",
+ "▁s d",
+ "▁ sd",
+ "▁на ціональ",
+ "▁camp agne",
+ "▁register s",
+ "▁educ ational",
+ "▁education al",
+ "▁p esar",
+ "▁pes ar",
+ "üg e",
+ "ü ge",
+ "▁o ro",
+ "▁or o",
+ "▁ oro",
+ "burg o",
+ "bur go",
+ "▁Athlet ics",
+ "▁M TV",
+ "get Message",
+ "▁H yp",
+ "▁Hy p",
+ "▁vict im",
+ "▁vic tim",
+ ")) \\",
+ ") )\\",
+ "▁dr ums",
+ "▁dru ms",
+ "▁drum s",
+ "host name",
+ "ta ł",
+ "t ał",
+ "ma king",
+ "m aking",
+ "▁pow iat",
+ "ő d",
+ "thread s",
+ "▁absol v",
+ "▁лю ди",
+ "▁ste pped",
+ "▁step ped",
+ "ex ist",
+ "▁N K",
+ "▁v es",
+ "▁ve s",
+ "▁ ves",
+ "ist iche",
+ "istic he",
+ "isti che",
+ "% '",
+ "at ivos",
+ "ativ os",
+ "ati vos",
+ "ativo s",
+ "▁та кой",
+ "▁тако й",
+ "▁Mongo DB",
+ "▁U ng",
+ "▁Un g",
+ "▁Р ус",
+ "▁Ру с",
+ "▁e lim",
+ "▁el im",
+ "▁F if",
+ "ic ación",
+ "ica ción",
+ "▁T ennis",
+ "▁Ten nis",
+ "▁Jeff erson",
+ "j án",
+ "fo g",
+ "f og",
+ "an ha",
+ "anh a",
+ "zo r",
+ "z or",
+ "▁уні версите",
+ "ah u",
+ "a hu",
+ "ia da",
+ "i ada",
+ "S dk",
+ "Set ting",
+ "▁K ill",
+ "▁Kil l",
+ "▁Ki ll",
+ "▁W end",
+ "▁We nd",
+ "▁b ald",
+ "▁bal d",
+ "▁ba ld",
+ "▁K ub",
+ "▁Ku b",
+ "▁v isto",
+ "▁vis to",
+ "▁vi sto",
+ "▁je unes",
+ "▁jeune s",
+ "▁jeu nes",
+ "col lections",
+ "collection s",
+ "collect ions",
+ "ac í",
+ "a cí",
+ "вро пей",
+ "▁ar ise",
+ "он і",
+ "о ні",
+ "MA IN",
+ "до ступ",
+ "▁b erg",
+ "▁be rg",
+ "▁ber g",
+ "▁ berg",
+ "▁critic ism",
+ "▁Tor re",
+ "▁de script",
+ "▁des cript",
+ "▁descri pt",
+ "ière s",
+ "i ères",
+ "▁e studio",
+ "▁est udio",
+ "▁estud io",
+ "▁i li",
+ "▁il i",
+ "▁ ili",
+ "▁mil itare",
+ "▁milit are",
+ "▁militar e",
+ "▁Cl ara",
+ "▁Cla ra",
+ "▁Clar a",
+ "▁El len",
+ "▁Elle n",
+ "▁Ell en",
+ "lim ited",
+ "limit ed",
+ "л м",
+ "▁Esp añ",
+ "▁inf initely",
+ "▁infinite ly",
+ "Amer ica",
+ "ou c",
+ "o uc",
+ "gl ass",
+ "g lass",
+ "▁r ud",
+ "▁ru d",
+ "▁z at",
+ "▁za t",
+ "▁ zat",
+ "▁r in",
+ "▁ri n",
+ "▁ rin",
+ "▁Bibli ografía",
+ "▁mer chant",
+ "tensor flow",
+ "▁d ér",
+ "▁dé r",
+ "▁Active Record",
+ "IE S",
+ "I ES",
+ "▁link er",
+ "▁lin ker",
+ "▁estud ios",
+ "▁estudio s",
+ "cdn js",
+ "▁Го судар",
+ "án chez",
+ "ap pe",
+ "app e",
+ "a ppe",
+ "cl ub",
+ "c lub",
+ "▁dal ší",
+ "▁Alg orithm",
+ "df s",
+ "d fs",
+ "▁B ac",
+ "▁Ba c",
+ "▁ка фе",
+ "▁& =\\",
+ "▁&= \\",
+ "▁а т",
+ "▁ ат",
+ "▁Г лав",
+ "▁M ou",
+ "▁Mo u",
+ "M achine",
+ "(... )",
+ "( ...)",
+ "▁com part",
+ "▁comp art",
+ "▁compar t",
+ "▁aug usztus",
+ "av an",
+ "ava n",
+ "a van",
+ "▁roll ed",
+ "▁rol led",
+ "▁ rolled",
+ "▁е ди",
+ "▁ еди",
+ "Sc an",
+ "S can",
+ "▁ре гі",
+ "▁świ ata",
+ "▁świat a",
+ "▁m ines",
+ "▁min es",
+ "▁mi nes",
+ "▁mine s",
+ "}, {",
+ "▁T ier",
+ "▁Ti er",
+ "Can not",
+ "C annot",
+ "мі н",
+ "м ін",
+ "▁NE W",
+ "▁ NEW",
+ "▁Во л",
+ "▁M anh",
+ "▁Man h",
+ "▁Greg ory",
+ "▁princi pe",
+ "▁princip e",
+ "▁prin cipe",
+ "IS O",
+ "I SO",
+ "pr og",
+ "pro g",
+ "p rog",
+ "▁F ail",
+ "▁Fa il",
+ "▁ Fail",
+ "▁a a",
+ "▁ aa",
+ "▁fe cha",
+ "▁W CF",
+ "▁mag istr",
+ "▁Z ach",
+ "▁Za ch",
+ "▁un icode",
+ "▁con verter",
+ "▁convert er",
+ "▁conver ter",
+ "▁dis pers",
+ "▁disp ers",
+ "ks am",
+ "k sam",
+ "▁Un cle",
+ "Property Changed",
+ "▁l ider",
+ "▁li der",
+ "▁lid er",
+ "▁o pts",
+ "▁op ts",
+ "▁opt s",
+ "▁ opts",
+ "▁та м",
+ "▁ там",
+ "lock ed",
+ "loc ked",
+ "za k",
+ "z ak",
+ "▁co unted",
+ "▁count ed",
+ "▁coun ted",
+ "▁person e",
+ "▁pers one",
+ "▁hur ried",
+ "ät ter",
+ "ätt er",
+ "ätte r",
+ "▁out ras",
+ "▁ou tras",
+ "▁g enu",
+ "▁ge nu",
+ "▁gen u",
+ "B D",
+ "ve g",
+ "v eg",
+ "du e",
+ "d ue",
+ "▁P ract",
+ "▁Pr act",
+ "▁Pra ct",
+ "▁po sible",
+ "▁pos ible",
+ "▁cont ribute",
+ "▁contrib ute",
+ "▁contribu te",
+ "UM N",
+ "▁Bür ger",
+ "▁w ars",
+ "▁war s",
+ "▁wa rs",
+ "▁exhib ition",
+ "hi ll",
+ "h ill",
+ "▁a str",
+ "▁as tr",
+ "▁ast r",
+ "▁ astr",
+ "▁му зе",
+ "▁C ASE",
+ "▁CA SE",
+ "▁ CASE",
+ "man ifest",
+ "y ellow",
+ "F n",
+ "▁R C",
+ "▁ RC",
+ "▁s ott",
+ "▁so tt",
+ "▁su jet",
+ "▁S ocket",
+ "▁So cket",
+ "▁Soc ket",
+ "▁ Socket",
+ "▁Ch ine",
+ "▁Chi ne",
+ "▁frame works",
+ "▁framework s",
+ "Hol d",
+ "H old",
+ "êt s",
+ "ê ts",
+ "▁ф іль",
+ "▁фі ль",
+ "Lo aded",
+ "Load ed",
+ "op he",
+ "oph e",
+ "o phe",
+ "text e",
+ "tex te",
+ "▁ex pres",
+ "▁exp res",
+ "▁expr es",
+ "▁cons ume",
+ "▁consum e",
+ "▁R ichtung",
+ "ograf i",
+ "▁magn ific",
+ "à t",
+ "▁ind ul",
+ "▁indu l",
+ "ry ty",
+ "▁off ici",
+ "▁offic i",
+ "▁ass ault",
+ "ru nd",
+ "run d",
+ "r und",
+ "▁vari ants",
+ "▁variant s",
+ "▁сель сов",
+ "▁exc itement",
+ "Time s",
+ "Tim es",
+ "T imes",
+ "k otlin",
+ "▁g ering",
+ "▁ge ring",
+ "▁ger ing",
+ "▁En gel",
+ "▁Eng el",
+ "▁T imer",
+ "▁Time r",
+ "▁Tim er",
+ "▁Ti mer",
+ "▁ Timer",
+ "² ).",
+ "▁N g",
+ "äs st",
+ "sch au",
+ "SE rror",
+ "S Error",
+ "▁Ed wards",
+ "▁Edward s",
+ "▁Term inal",
+ "li ct",
+ "lic t",
+ "l ict",
+ "Un der",
+ "Und er",
+ "U nder",
+ "▁sp awn",
+ "ür gen",
+ "▁Außer dem",
+ "▁k itchen",
+ "fah rt",
+ "fahr t",
+ "▁Col ors",
+ "▁Color s",
+ "▁систе ма",
+ "▁систем а",
+ "▁termin ated",
+ "▁terminate d",
+ "▁La TeX",
+ "ig keiten",
+ "igkeit en",
+ "▁mes ure",
+ "▁Am ts",
+ "▁Amt s",
+ "▁emp ir",
+ "▁stri king",
+ "▁strik ing",
+ "▁exclus ive",
+ "те х",
+ "▁re z",
+ "▁r ez",
+ "▁ rez",
+ "▁qu an",
+ "▁q uan",
+ "▁Glas gow",
+ "▁lect ure",
+ "▁Test ament",
+ "▁fun ds",
+ "▁fund s",
+ "▁st essa",
+ "▁tri bes",
+ "▁trib es",
+ "▁tribe s",
+ "▁par fois",
+ "▁tre ball",
+ "ni tz",
+ "nit z",
+ "n itz",
+ "bo ve",
+ "b ove",
+ "▁за слу",
+ "▁ab sent",
+ "▁abs ent",
+ "▁L auf",
+ "▁La uf",
+ "▁Lau f",
+ "Sm ith",
+ "▁Никола й",
+ "▁europé enne",
+ "l r",
+ "▁program ma",
+ "▁mi dst",
+ "▁mid st",
+ "▁daugh ters",
+ "▁daughter s",
+ "S yn",
+ "ob en",
+ "obe n",
+ "o ben",
+ "ân ă",
+ "id an",
+ "ida n",
+ "i dan",
+ "▁t her",
+ "▁th er",
+ "▁the r",
+ "▁ ther",
+ "od ore",
+ "odo re",
+ "odor e",
+ "sd l",
+ "s dl",
+ "▁Q uint",
+ "▁Qu int",
+ "▁cas os",
+ "▁caso s",
+ "▁Z am",
+ "▁Za m",
+ "▁стра ны",
+ "▁sp rite",
+ "▁spr ite",
+ "ка л",
+ "к ал",
+ "▁n asc",
+ "▁na sc",
+ "▁nas c",
+ "▁сот руд",
+ "▁tr ava",
+ "▁tra va",
+ "▁trav a",
+ "▁хо зяй",
+ "▁U ruguay",
+ "▁s parse",
+ "▁sp arse",
+ "▁по ле",
+ "▁пол е",
+ "▁myst ery",
+ "▁myster y",
+ "▁M ang",
+ "▁Man g",
+ "▁Ma ng",
+ "reg istr",
+ "▁CG Float",
+ "▁sub mission",
+ "▁subm ission",
+ "ва на",
+ "ван а",
+ "в ана",
+ "▁\" :",
+ "▁ \":",
+ "▁Trace back",
+ "▁P it",
+ "▁Pi t",
+ "▁E hr",
+ "▁с ра",
+ "▁Graph ics",
+ "▁ Graphics",
+ "Up dated",
+ "Update d",
+ "▁sv ensk",
+ "▁sp acing",
+ "▁spac ing",
+ "tr itt",
+ "tri tt",
+ "t ritt",
+ "▁Gu inea",
+ "▁Fran ça",
+ "▁Fr ança",
+ "As soci",
+ "Ass oci",
+ "▁T ová",
+ "▁To vá",
+ "st ab",
+ "sta b",
+ "s tab",
+ "▁Le arning",
+ "▁Lear ning",
+ "▁B right",
+ "▁Br ight",
+ "▁Brig ht",
+ "ś c",
+ "▁id ő",
+ "}} _{\\",
+ "}}_{ \\",
+ "}}_ {\\",
+ "} }_{\\",
+ "▁dro ite",
+ "▁droit e",
+ "▁ra ising",
+ "get ting",
+ "yth m",
+ "yt hm",
+ "y thm",
+ "on yme",
+ "ony me",
+ "onym e",
+ "ż s",
+ "▁b lah",
+ "▁bl ah",
+ "▁bla h",
+ "▁ blah",
+ "Tag Name",
+ "Vert ical",
+ "▁a per",
+ "▁ap er",
+ "▁ aper",
+ "post gresql",
+ "▁Hand le",
+ "▁ Handle",
+ "ze w",
+ "z ew",
+ "▁sk ulle",
+ "▁op ere",
+ "▁oper e",
+ "lay ers",
+ "layer s",
+ "▁pos sono",
+ "▁poss ono",
+ "▁re late",
+ "▁rel ate",
+ "▁rela te",
+ "ą c",
+ "▁M ih",
+ "▁Mi h",
+ "â ge",
+ "▁Ś wi",
+ "iss es",
+ "isse s",
+ "▁serv let",
+ "▁ servlet",
+ "Lo s",
+ "L os",
+ "▁Ad vanced",
+ "▁Adv anced",
+ "at ica",
+ "ati ca",
+ "atic a",
+ "▁c ed",
+ "▁ce d",
+ "▁ ced",
+ "▁element os",
+ "ро на",
+ "рон а",
+ "р она",
+ "ik s",
+ "i ks",
+ "ar f",
+ "a rf",
+ "ar iat",
+ "ari at",
+ "aria t",
+ "M obile",
+ "ag ua",
+ "agu a",
+ "▁t imp",
+ "▁tim p",
+ "▁ti mp",
+ "▁Com ité",
+ "▁comb ining",
+ "▁combin ing",
+ "wo hl",
+ "w ohl",
+ "▁Stud y",
+ "▁Stu dy",
+ "co ordinate",
+ "▁recommend ation",
+ "▁transform ations",
+ "▁transformation s",
+ "un til",
+ "unt il",
+ "u ntil",
+ "bound ed",
+ "b ounded",
+ "▁и зу",
+ "▁из у",
+ "han ced",
+ "h anced",
+ "▁во про",
+ "▁P rés",
+ "▁Pr és",
+ "▁co ord",
+ "xt y",
+ "x ty",
+ "▁$ ,",
+ "▁ $,",
+ "▁champion s",
+ "▁champ ions",
+ "De n",
+ "D en",
+ "M il",
+ "(' ,",
+ "( ',",
+ "▁Pre is",
+ "▁e igh",
+ "▁eig h",
+ "▁mark ers",
+ "▁marker s",
+ "▁gew esen",
+ "ät ten",
+ "ätt en",
+ "ätte n",
+ "▁p ione",
+ "▁pi one",
+ "m v",
+ "▁ј у",
+ "▁ ју",
+ "zeich nis",
+ "ho ff",
+ "hof f",
+ "h off",
+ "New s",
+ "Ne ws",
+ "▁Stanis ław",
+ "▁Br andenburg",
+ "▁Brand enburg",
+ "▁Fe uer",
+ "= &",
+ "же т",
+ "ж ет",
+ "▁N eil",
+ "▁Ne il",
+ "▁w irk",
+ "▁wir k",
+ "▁soci età",
+ "▁sp are",
+ "▁civil e",
+ "▁civ ile",
+ "sp rach",
+ "spr ach",
+ "▁d isse",
+ "▁dis se",
+ "▁diss e",
+ "▁g ates",
+ "▁ga tes",
+ "▁gate s",
+ "▁gat es",
+ "▁a nom",
+ "▁an om",
+ "▁ano m",
+ "▁Федера ции",
+ "▁t ib",
+ "▁ti b",
+ "▁f útbol",
+ "▁Wikip ed",
+ "ia te",
+ "iat e",
+ "i ate",
+ "Fr ont",
+ "F ront",
+ "▁c raw",
+ "▁cr aw",
+ "▁cra w",
+ "▁R ak",
+ "▁Ra k",
+ "▁з ву",
+ "▁зв у",
+ "st reet",
+ "stre et",
+ "▁A gency",
+ "▁Ag ency",
+ "ва ло",
+ "вал о",
+ "▁Ра с",
+ "▁mk dir",
+ "ac ję",
+ "▁sh ares",
+ "▁share s",
+ "St ory",
+ "Sto ry",
+ "▁re marks",
+ "▁rem arks",
+ "▁remark s",
+ "▁key words",
+ "▁keyword s",
+ "Bo b",
+ "B ob",
+ "▁t oe",
+ "▁to e",
+ "▁V itt",
+ "▁Vi tt",
+ "▁Vit t",
+ "▁r hs",
+ "▁rh s",
+ "RO P",
+ "R OP",
+ "or is",
+ "ori s",
+ "o ris",
+ "/ @",
+ "си и",
+ "▁tra verse",
+ "▁travers e",
+ "▁refer encing",
+ "pr äsident",
+ "ro ng",
+ "ron g",
+ "r ong",
+ "') :",
+ "' ):",
+ "at ies",
+ "ati es",
+ "atie s",
+ "a ties",
+ "A W",
+ "Out let",
+ "▁é vol",
+ "▁év ol",
+ "ik es",
+ "ike s",
+ "i kes",
+ "▁environment al",
+ "ic um",
+ "▁L ied",
+ "▁Li ed",
+ "▁Lie d",
+ "▁w arn",
+ "▁war n",
+ "▁wa rn",
+ "▁ warn",
+ "▁But ler",
+ "▁% ),",
+ "▁%) ,",
+ "▁Zeit schrift",
+ "▁Mon tr",
+ "▁Mont r",
+ "ва жа",
+ "▁Mer cur",
+ "je kte",
+ "jekt e",
+ "me ter",
+ "met er",
+ "m eter",
+ "du cation",
+ "▁att ributed",
+ "▁attribute d",
+ "* $",
+ "▁un f",
+ "▁Vert rag",
+ "zi en",
+ "zie n",
+ "z ien",
+ "▁Р об",
+ "▁Ро б",
+ "li ces",
+ "lic es",
+ "lice s",
+ "l ices",
+ "pp ly",
+ "p ply",
+ "an sen",
+ "ans en",
+ "anse n",
+ "▁ze it",
+ "▁ zeit",
+ "▁im mense",
+ "▁imm ense",
+ "▁lut ego",
+ "▁Bul gar",
+ "▁Bulg ar",
+ "▁mi embros",
+ "▁На циональ",
+ "▁Al low",
+ "▁All ow",
+ "▁ Allow",
+ "▁ang lès",
+ "д ви",
+ "▁T oy",
+ "▁To y",
+ "ту а",
+ "▁y ard",
+ "▁ya rd",
+ "▁ yard",
+ "( %",
+ "is ser",
+ "iss er",
+ "isse r",
+ "▁g olf",
+ "▁gol f",
+ "▁Uk rain",
+ "▁h osp",
+ "▁ho sp",
+ "▁hos p",
+ "In clude",
+ "▁L isa",
+ "▁Li sa",
+ "▁Lis a",
+ "▁c sal",
+ "▁cs al",
+ "▁M ira",
+ "▁Mi ra",
+ "▁Mir a",
+ "rec ogn",
+ "▁К е",
+ "▁h itting",
+ "▁hit ting",
+ "коно мі",
+ "коном і",
+ "▁Tourn ament",
+ "LO AD",
+ "▁Guard ian",
+ "▁da her",
+ "▁dah er",
+ "▁time zone",
+ "▁tom cat",
+ "▁ tomcat",
+ "▁success or",
+ "▁succ essor",
+ "▁successo r",
+ "▁V oid",
+ "▁Vo id",
+ "▁come ç",
+ "▁convert s",
+ "▁conver ts",
+ "äch s",
+ "ä chs",
+ "os ex",
+ "ose x",
+ "o sex",
+ "xe lles",
+ "x elles",
+ "as er",
+ "ase r",
+ "a ser",
+ "▁É s",
+ "▁m ou",
+ "▁mo u",
+ "▁u ng",
+ "▁un g",
+ "▁ ung",
+ "▁or igen",
+ "▁orig en",
+ "▁C row",
+ "▁Cr ow",
+ "▁Cro w",
+ "▁E rd",
+ "▁Er d",
+ "▁s ieben",
+ "▁si eben",
+ "▁sie ben",
+ "lu a",
+ "l ua",
+ "▁B B",
+ "▁ BB",
+ "RE NT",
+ "R ENT",
+ "▁pił kar",
+ "▁mar que",
+ "▁marqu e",
+ "▁La bour",
+ "▁Lab our",
+ "vi ders",
+ "vider s",
+ "vid ers",
+ "v iders",
+ "▁ex empl",
+ "▁exem pl",
+ "So und",
+ "S ound",
+ "▁W ass",
+ "▁Was s",
+ "▁Wa ss",
+ "arr ison",
+ "▁те чение",
+ "▁Of icina",
+ "▁D aw",
+ "▁Da w",
+ "▁K auf",
+ "▁Ka uf",
+ "én t",
+ "é nt",
+ "és ő",
+ "▁= \"",
+ "▁ =\"",
+ "▁k at",
+ "▁ka t",
+ "di ction",
+ "dict ion",
+ "dic tion",
+ "d iction",
+ "▁V oll",
+ "▁Vol l",
+ "▁Vo ll",
+ "▁high way",
+ "J ames",
+ "ze uge",
+ "zeug e",
+ "▁mod elo",
+ "▁model o",
+ "▁mode lo",
+ "Th row",
+ "▁F orum",
+ "▁For um",
+ "▁Fo rum",
+ "(\" @",
+ "▁en fer",
+ "▁enf er",
+ "▁спе циаль",
+ "Number s",
+ "Num bers",
+ "▁B inary",
+ "▁Bin ary",
+ "▁ Binary",
+ "▁Martí nez",
+ "▁Martín ez",
+ "▁St ato",
+ "▁Stat o",
+ "▁Sta to",
+ "▁fest iv",
+ "▁k atol",
+ "▁ka tol",
+ "▁kat ol",
+ "▁А б",
+ "▁lim itation",
+ "▁limit ation",
+ "▁S TR",
+ "▁ST R",
+ "▁ STR",
+ "▁О фициаль",
+ "ip es",
+ "ipe s",
+ "i pes",
+ "▁I sn",
+ "▁Is n",
+ "▁rule d",
+ "▁ru led",
+ "▁c í",
+ "▁ cí",
+ "ge ber",
+ "geb er",
+ "▁lavor o",
+ "▁lav oro",
+ "▁parenthes es",
+ "о з",
+ "▁équip es",
+ "▁équipe s",
+ "▁efficient ly",
+ "▁Per iod",
+ "▁ Period",
+ "▁Reg arding",
+ "le af",
+ "lea f",
+ "▁similar ity",
+ "▁gest ure",
+ "data b",
+ "da tab",
+ "dat ab",
+ "▁term inate",
+ "▁termin ate",
+ "▁sem antics",
+ "▁semantic s",
+ "▁A lo",
+ "▁Al o",
+ "▁c ig",
+ "▁ci g",
+ "▁Open GL",
+ "▁heut igen",
+ "xa ml",
+ "x aml",
+ "▁frequ encies",
+ ")} .",
+ ") }.",
+ "▁threaten ed",
+ "▁threat ened",
+ "ти к",
+ "▁cal cio",
+ "▁calci o",
+ "▁calc io",
+ "▁R iemann",
+ "▁Ri emann",
+ "sl ug",
+ "▁F inale",
+ "▁Fin ale",
+ "▁Final e",
+ "L R",
+ "▁Der by",
+ "▁о ще",
+ "▁de viation",
+ "▁dev iation",
+ "▁devi ation",
+ "äch en",
+ "äche n",
+ "ä chen",
+ "▁C ris",
+ "▁Cr is",
+ "но во",
+ "нов о",
+ "н ово",
+ "▁сто лі",
+ "▁re lev",
+ "▁rel ev",
+ "▁splend id",
+ "▁у чё",
+ "er ving",
+ "erv ing",
+ "ga ble",
+ "g able",
+ "▁général e",
+ "▁généra le",
+ "po m",
+ "p om",
+ "▁Che ers",
+ "▁impr ison",
+ "▁in dent",
+ "▁ind ent",
+ "▁inde nt",
+ "▁ indent",
+ "▁anal yz",
+ "▁analy z",
+ "▁re vert",
+ "▁rev ert",
+ "▁reve rt",
+ "▁rever t",
+ "ér er",
+ "ére r",
+ "é rer",
+ "▁ph ases",
+ "▁phase s",
+ "First Name",
+ "▁m ig",
+ "▁mi g",
+ "▁dist urb",
+ "▁mi xture",
+ "▁) {",
+ "▁ ){",
+ "int ure",
+ "▁T ried",
+ "▁Tr ied",
+ "▁Tri ed",
+ "▁soon er",
+ "▁p els",
+ "▁pe ls",
+ "▁pel s",
+ "▁ét abl",
+ "et ro",
+ "etr o",
+ "it ie",
+ "iti e",
+ "▁quart ier",
+ "▁го во",
+ "▁г ово",
+ "▁ гово",
+ "▁vá ros",
+ "uf e",
+ "u fe",
+ "he ten",
+ "het en",
+ "h eten",
+ "хо м",
+ "х ом",
+ "▁so ap",
+ "▁ soap",
+ "ut ors",
+ "uto rs",
+ "utor s",
+ "▁d uch",
+ "▁du ch",
+ "▁duc h",
+ "syn tax",
+ "s yntax",
+ "▁tr ibe",
+ "▁tri be",
+ "▁trib e",
+ "▁ch ante",
+ "▁chant e",
+ "Tr i",
+ "T ri",
+ "▁M ate",
+ "▁Ma te",
+ "▁Mat e",
+ "qu ality",
+ "qual ity",
+ "uo la",
+ "u ola",
+ "=\" .",
+ "= \".",
+ "ch k",
+ "▁в сі",
+ "▁вс і",
+ "▁prze ci",
+ "▁M eteor",
+ "▁Met eor",
+ "▁scatter ed",
+ "Pl us",
+ "P lus",
+ "tr ad",
+ "tra d",
+ "t rad",
+ "▁stack overflow",
+ "▁ stackoverflow",
+ "▁re tra",
+ "▁r etra",
+ "▁ret ra",
+ "▁retr a",
+ "▁éd itions",
+ "▁édition s",
+ "▁s ain",
+ "▁sa in",
+ "cri be",
+ "cr ibe",
+ "ig non",
+ "ign on",
+ "uc ker",
+ "uck er",
+ "u cker",
+ "▁ма ло",
+ "▁ten ir",
+ "▁ex ports",
+ "▁export s",
+ "▁ exports",
+ "▁aux ili",
+ "▁] ]",
+ "▁ ]]",
+ "▁C BS",
+ "un iform",
+ "uni form",
+ "▁period ic",
+ "ag rant",
+ "agr ant",
+ "▁em ple",
+ "▁emp le",
+ "W il",
+ "▁f res",
+ "▁fr es",
+ "▁fre s",
+ "▁str utt",
+ "▁stru tt",
+ "▁с віт",
+ "▁сві т",
+ "▁be tre",
+ "▁bet re",
+ "▁объ ек",
+ "ти ся",
+ "▁b isher",
+ "▁bis her",
+ "ba um",
+ "bau m",
+ "b aum",
+ "is hi",
+ "ish i",
+ "▁Gaz ette",
+ "background Color",
+ "j l",
+ "▁f iel",
+ "▁fi el",
+ "▁пре ма",
+ "▁protagon ista",
+ "▁Muham mad",
+ "▁sim ulate",
+ "▁H ook",
+ "▁Ho ok",
+ "fe st",
+ "f est",
+ "▁сво их",
+ "▁свои х",
+ "Se nder",
+ "Send er",
+ "S ender",
+ "▁list ened",
+ "▁listen ed",
+ "▁liste ned",
+ "ж і",
+ "je st",
+ "jes t",
+ "j est",
+ "ko rd",
+ "kor d",
+ "k ord",
+ "Cho ice",
+ "▁hoof d",
+ "redu cible",
+ "hp p",
+ "h pp",
+ "▁W u",
+ "š i",
+ "▁M arse",
+ "▁Mar se",
+ "▁Mars e",
+ "▁s oir",
+ "▁so ir",
+ "we sten",
+ "west en",
+ "w esten",
+ "em os",
+ "emo s",
+ "e mos",
+ "▁D uc",
+ "▁Du c",
+ "▁amer ik",
+ "| }{",
+ "▁G ul",
+ "▁Gu l",
+ "▁Sp rache",
+ "▁Spr ache",
+ "▁mis match",
+ "▁mism atch",
+ "Sc al",
+ "S cal",
+ "P ixel",
+ "E F",
+ "▁S ep",
+ "▁Se p",
+ "▁powie cie",
+ "ur k",
+ "▁Nap oli",
+ "▁neighbour hood",
+ "сто ян",
+ "стоя н",
+ "▁search es",
+ "yr us",
+ "y rus",
+ "пе т",
+ "п ет",
+ "He lp",
+ "Hel p",
+ "pon t",
+ "po nt",
+ "p ont",
+ "▁Or ient",
+ "▁Ori ent",
+ "▁Alf onso",
+ "▁monitor ing",
+ "ia o",
+ "i ao",
+ "éd é",
+ "▁Cés ar",
+ "ше е",
+ "Sh ift",
+ "su it",
+ "s uit",
+ "code d",
+ "co ded",
+ "cod ed",
+ "c oded",
+ "но то",
+ "▁Par ti",
+ "▁Part i",
+ "▁la sci",
+ "▁las ci",
+ "▁aw esome",
+ "us ta",
+ "ust a",
+ "u sta",
+ "▁С ове",
+ "▁Со ве",
+ "▁Сов е",
+ "▁F land",
+ "▁Fl and",
+ "oo m",
+ "o om",
+ "▁de vi",
+ "▁dev i",
+ "eng elsk",
+ "end um",
+ "▁Pa scal",
+ "▁Pas cal",
+ "▁B ind",
+ "▁Bi nd",
+ "▁Bin d",
+ "▁ Bind",
+ "▁sigu ientes",
+ "▁siguiente s",
+ "J B",
+ "▁Peters burg",
+ "▁incorrect ly",
+ "▁B ash",
+ "▁Bas h",
+ "▁Ba sh",
+ "▁pe los",
+ "▁pel os",
+ "▁pelo s",
+ "▁zes po",
+ "NS URL",
+ "▁př ek",
+ "▁Cr ime",
+ "na ch",
+ "n ach",
+ "▁th rust",
+ "▁thr ust",
+ "▁Cult ura",
+ "W F",
+ "▁S olo",
+ "▁So lo",
+ "▁Sol o",
+ "▁in vas",
+ "▁inv as",
+ "▁individ ually",
+ "▁individual ly",
+ "ib m",
+ "i bm",
+ "▁et apa",
+ "▁hand ed",
+ "▁han ded",
+ "▁where ver",
+ "▁interpol ation",
+ "▁mus ée",
+ "▁C NN",
+ "id ia",
+ "idi a",
+ "i dia",
+ "ńst w",
+ "▁pr zew",
+ "▁prze w",
+ "▁prz ew",
+ "ug hing",
+ "ugh ing",
+ "▁a ctors",
+ "▁act ors",
+ "▁actor s",
+ "▁Ori ental",
+ "▁Orient al",
+ "▁conven ience",
+ "▁mi asta",
+ "br ains",
+ "bra ins",
+ "▁ме ся",
+ "▁inf atti",
+ "▁All Movie",
+ "▁crit ique",
+ "▁success o",
+ "▁succ esso",
+ "anc ouver",
+ "▁f á",
+ "ъл гар",
+ "▁wis dom",
+ "▁Pho enix",
+ "ho le",
+ "hol e",
+ "h ole",
+ "▁inform ación",
+ "▁Air lines",
+ "▁Airl ines",
+ ". «",
+ "mo rt",
+ "mor t",
+ "m ort",
+ "user Id",
+ "▁*/ \r",
+ "▁C ongo",
+ "▁Con go",
+ "▁Cong o",
+ "▁\" `",
+ "▁ \"`",
+ "co rr",
+ "cor r",
+ "c orr",
+ "▁problem as",
+ "▁proble mas",
+ "▁problema s",
+ "▁probl emas",
+ "▁b ib",
+ "▁bi b",
+ "▁ bib",
+ "▁póź niej",
+ "▁file Name",
+ "▁ fileName",
+ "zo tt",
+ "z ott",
+ "ma cht",
+ "mac ht",
+ "m acht",
+ "▁Ul rich",
+ "C y",
+ "end point",
+ "▁she ep",
+ "▁i bn",
+ "Fe ed",
+ "F eed",
+ "▁sympath y",
+ "▁I b",
+ "▁territ orial",
+ "ra ting",
+ "rat ing",
+ "r ating",
+ "да ми",
+ "▁d st",
+ "▁ds t",
+ "▁ dst",
+ "у ю",
+ "ah o",
+ "a ho",
+ "▁s ug",
+ "▁su g",
+ "em ia",
+ "emi a",
+ "▁t ed",
+ "▁te d",
+ "▁ ted",
+ "▁A pi",
+ "▁Ap i",
+ "▁ Api",
+ "▁R ica",
+ "▁Ric a",
+ "▁Ri ca",
+ "▁M R",
+ "▁ MR",
+ "ński m",
+ "ń skim",
+ "▁V oor",
+ "▁Vo or",
+ "▁de vil",
+ "▁dev il",
+ "▁devi l",
+ "▁Ф о",
+ "▁N är",
+ "▁Nä r",
+ "▁... )",
+ "▁.. .)",
+ "▁ ...)",
+ "▁v ois",
+ "▁vo is",
+ "▁ab bre",
+ "▁abb re",
+ "▁M änner",
+ "xim o",
+ "xi mo",
+ "x imo",
+ "▁intellect ual",
+ "▁t ales",
+ "▁tal es",
+ "▁ta les",
+ "▁tale s",
+ "sim ilar",
+ "ne um",
+ "▁O rig",
+ "▁Or ig",
+ "▁Ori g",
+ "▁po stal",
+ "▁pos tal",
+ "▁post al",
+ "▁h vor",
+ "▁ident ification",
+ "▁identific ation",
+ "▁О д",
+ "ue sto",
+ "ues to",
+ "uest o",
+ "u esto",
+ "▁. ./",
+ "▁.. /",
+ "▁ ../",
+ "▁b ir",
+ "▁bi r",
+ "▁ bir",
+ "▁Л он",
+ "▁Ло н",
+ "▁es empio",
+ "▁E ing",
+ "▁Ein g",
+ "Exp and",
+ "▁PR IMARY",
+ "▁J in",
+ "▁Ji n",
+ "▁vš ak",
+ "ours es",
+ "ourse s",
+ "▁Be tty",
+ "▁Bet ty",
+ "▁W M",
+ "▁ WM",
+ "▁fl ask",
+ "▁fla sk",
+ "hl en",
+ "h len",
+ "▁A del",
+ "▁Ad el",
+ "lar avel",
+ "▁д ет",
+ "▁де т",
+ "сь кою",
+ "сько ю",
+ "▁M undo",
+ "▁Mun do",
+ "ic zn",
+ "icz n",
+ "ifi é",
+ "▁М ор",
+ "▁Мо р",
+ "▁д рев",
+ "▁др ев",
+ "Date Format",
+ "сь ким",
+ "ськ им",
+ "▁d ated",
+ "▁da ted",
+ "▁dat ed",
+ "▁date d",
+ "▁ dated",
+ "ко ли",
+ "кол и",
+ "▁результа те",
+ "\\) .",
+ "\\ ).",
+ "▁delay ed",
+ "so und",
+ "s ound",
+ "▁Ма к",
+ "▁\" ...",
+ "▁\". ..",
+ "▁b innen",
+ "▁bin nen",
+ "▁фа куль",
+ "▁pol ygon",
+ "▁poly gon",
+ "▁eg gs",
+ "▁egg s",
+ "At IndexPath",
+ "AtIndex Path",
+ "мен таль",
+ "мент аль",
+ "мента ль",
+ "▁in cred",
+ "▁incre d",
+ "▁inc red",
+ "ch unk",
+ "web driver",
+ "▁с вобо",
+ "▁сво бо",
+ "▁mi ędzy",
+ "Rece ived",
+ "Receive d",
+ "▁M onde",
+ "▁Mon de",
+ "▁Mo nde",
+ "▁Mond e",
+ "▁J Query",
+ "Bu tt",
+ "But t",
+ "B utt",
+ "▁P DO",
+ "▁for ec",
+ "▁fo rec",
+ "▁fore c",
+ "▁discipl ine",
+ "ch ev",
+ "che v",
+ "на т",
+ "н ат",
+ "▁re dis",
+ "▁red is",
+ "▁hun ting",
+ "▁al k",
+ "▁ alk",
+ "▁proof s",
+ "PR I",
+ "P RI",
+ "▁c hip",
+ "▁ch ip",
+ "▁chi p",
+ "és ie",
+ "▁H O",
+ "▁ HO",
+ "▁r ug",
+ "▁ru g",
+ "▁ rug",
+ "zo s",
+ "z os",
+ "▁s orte",
+ "▁sort e",
+ "▁sor te",
+ "▁ze igt",
+ "▁Phys ics",
+ "leg te",
+ "legt e",
+ "▁proport ional",
+ "▁proportion al",
+ "▁tool bar",
+ "ve ment",
+ "v ement",
+ "not in",
+ "▁prv ní",
+ "bl ah",
+ "bla h",
+ "b lah",
+ "▁prés ence",
+ "▁l loc",
+ "▁ll oc",
+ "▁lí der",
+ "▁Ac cept",
+ "▁ Accept",
+ "▁Al ways",
+ "▁\" {",
+ "▁divers i",
+ "▁diver si",
+ "ik or",
+ "iko r",
+ "i kor",
+ "Per iod",
+ "ж ён",
+ "▁Al liance",
+ "▁All iance",
+ "▁re lay",
+ "▁rel ay",
+ "▁rela y",
+ "Br o",
+ "B ro",
+ "jö n",
+ "j ön",
+ "▁B aud",
+ "▁Ba ud",
+ "▁Bau d",
+ "▁B ian",
+ "▁Bi an",
+ "') [",
+ "' )[",
+ "чи в",
+ "▁P oss",
+ "▁Po ss",
+ "▁Pos s",
+ "▁Mitg lieder",
+ "▁Mitglied er",
+ "▁n ev",
+ "▁ne v",
+ "Dan iel",
+ "▁t ends",
+ "▁ten ds",
+ "▁tend s",
+ "▁compag nie",
+ "▁liv res",
+ "▁livre s",
+ "lu b",
+ "l ub",
+ "▁ ▁",
+ "▁▁ ▁▁",
+ "▁▁▁ ▁",
+ "▁ ▁▁▁",
+ "▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁",
+ "▁▁▁▁ ▁",
+ "▁▁▁ ▁▁",
+ "▁ ▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁",
+ "▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁",
+ "▁ ▁▁",
+ "▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/out/finetune/tinyllama_full_arc/2506/final/tokenizer_config.json b/out/finetune/tinyllama_full_arc/2506/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ef41cbc275000b29afe157ba487f0530b8c26dc
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/final/tokenizer_config.json
@@ -0,0 +1,35 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "bos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "clean_up_tokenization_spaces": false,
+ "eos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "legacy": false,
+ "model_max_length": 1000000000000000019884624838656,
+ "pad_token": null,
+ "padding_side": "right",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizer",
+ "unk_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/out/finetune/tinyllama_full_arc/2506/logs/csv/version_0/metrics.csv b/out/finetune/tinyllama_full_arc/2506/logs/csv/version_0/metrics.csv
new file mode 100644
index 0000000000000000000000000000000000000000..af33a854112ed23f0902f744a888b0c32ca05bc4
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/2506/logs/csv/version_0/metrics.csv
@@ -0,0 +1,556 @@
+epoch,iter,iter_time,learning_rate,loss,step,tokens,total_tokens,val_loss,val_ppl
+0,1,0.21850697696208954,0.0,3.8800623416900635,1,109,109,,
+0,2,0.067072544246912,0.0,3.9544601440429688,2,273,273,,
+0,3,0.0602225586771965,0.0,3.690190553665161,3,455,455,,
+0,4,0.06037683039903641,0.0,3.76273250579834,4,568,568,,
+0,5,0.057571095414459705,0.0,3.6394920349121094,5,702,702,,
+0,6,0.05779135040938854,0.0,3.5761890411376953,6,812,812,,
+0,7,0.05744974873960018,0.0,3.6012613773345947,7,950,950,,
+0,8,0.1652861349284649,2.0000000000000002e-07,3.638432025909424,8,1057,1057,,
+0,9,0.05892783682793379,2.0000000000000002e-07,3.532593250274658,9,1215,1215,,
+0,10,0.05952825490385294,2.0000000000000002e-07,3.4538397789001465,10,1390,1390,,
+0,11,0.05819789692759514,2.0000000000000002e-07,3.4644012451171875,11,1553,1553,,
+0,12,0.05899775866419077,2.0000000000000002e-07,3.4371838569641113,12,1685,1685,,
+0,13,0.05898988153785467,2.0000000000000002e-07,3.489631175994873,13,1825,1825,,
+0,14,0.05950077623128891,2.0000000000000002e-07,3.4836816787719727,14,2005,2005,,
+0,15,0.059155493043363094,2.0000000000000002e-07,3.3938355445861816,15,2175,2175,,
+0,16,0.0876869847998023,4.0000000000000003e-07,3.2841639518737793,16,2341,2341,,
+0,17,0.05763946194201708,4.0000000000000003e-07,3.3414793014526367,17,2487,2487,,
+0,18,0.05830454360693693,4.0000000000000003e-07,3.342172384262085,18,2642,2642,,
+0,19,0.05862003657966852,4.0000000000000003e-07,3.3530173301696777,19,2783,2783,,
+0,20,0.06193600781261921,4.0000000000000003e-07,3.39329195022583,20,2901,2901,,
+0,21,0.05874619074165821,4.0000000000000003e-07,3.426456928253174,21,3019,3019,,
+0,22,0.05883552599698305,4.0000000000000003e-07,3.4619131088256836,22,3132,3132,,
+0,23,0.05832370277494192,4.0000000000000003e-07,3.449103832244873,23,3418,3418,,
+0,24,0.08765317592769861,6.000000000000001e-07,3.454115867614746,24,3712,3712,,
+0,25,0.05893618334084749,6.000000000000001e-07,3.54280161857605,25,3820,3820,,
+0,26,0.05987084563821554,6.000000000000001e-07,3.544820547103882,26,4037,4037,,
+0,27,0.0595429390668869,6.000000000000001e-07,3.564175605773926,27,4177,4177,,
+0,28,0.05960541870445013,6.000000000000001e-07,3.509674549102783,28,4324,4324,,
+0,29,0.05886981729418039,6.000000000000001e-07,3.4934165477752686,29,4468,4468,,
+0,30,0.05970416031777859,6.000000000000001e-07,3.555722713470459,30,4607,4607,,
+0,31,0.05909488257020712,6.000000000000001e-07,3.5889039039611816,31,4790,4790,,
+0,32,0.08797509968280792,8.000000000000001e-07,3.646397352218628,32,4995,4995,,
+0,33,0.05729000084102154,8.000000000000001e-07,3.6069626808166504,33,5116,5116,,
+0,34,0.0593146625906229,8.000000000000001e-07,3.6024184226989746,34,5253,5253,,
+0,35,0.05886662099510431,8.000000000000001e-07,3.584141254425049,35,5443,5443,,
+0,36,0.058257256634533405,8.000000000000001e-07,3.5735650062561035,36,5616,5616,,
+0,37,0.05811462830752134,8.000000000000001e-07,3.533932685852051,37,5759,5759,,
+0,38,0.05859107431024313,8.000000000000001e-07,3.5127949714660645,38,5891,5891,,
+0,39,0.05869637429714203,8.000000000000001e-07,3.579296827316284,39,6042,6042,,
+0,40,0.08774400502443314,1.0000000000000002e-06,3.5306830406188965,40,6240,6240,,
+0,41,0.05742228962481022,1.0000000000000002e-06,3.5143609046936035,41,6396,6396,,
+0,42,0.058475494384765625,1.0000000000000002e-06,3.4894466400146484,42,6555,6555,,
+0,43,0.05818082857877016,1.0000000000000002e-06,3.5206618309020996,43,6703,6703,,
+0,44,0.05808050371706486,1.0000000000000002e-06,3.5174403190612793,44,6835,6835,,
+0,45,0.058849189430475235,1.0000000000000002e-06,3.5167107582092285,45,6966,6966,,
+0,46,0.05827932246029377,1.0000000000000002e-06,3.526224136352539,46,7070,7070,,
+0,47,0.05808175355195999,1.0000000000000002e-06,3.563189744949341,47,7189,7189,,
+0,48,0.08954501058906317,1.2000000000000002e-06,3.568070888519287,48,7342,7342,,
+0,49,0.057600999251008034,1.2000000000000002e-06,3.552013874053955,49,7476,7476,,
+0,50,0.05866218078881502,1.2000000000000002e-06,3.5501599311828613,50,7632,7632,,
+0,51,0.05794540140777826,1.2000000000000002e-06,3.569584846496582,51,7763,7763,,
+0,52,0.058348532766103745,1.2000000000000002e-06,3.5512537956237793,52,7911,7911,,
+0,53,0.058281526900827885,1.2000000000000002e-06,3.5051960945129395,53,8102,8102,,
+0,54,0.05877079349011183,1.2000000000000002e-06,3.3848652839660645,54,8300,8300,,
+0,55,0.058420210145413876,1.2000000000000002e-06,3.3086369037628174,55,8469,8469,,
+0,56,0.08716987632215023,1.4000000000000001e-06,3.310657024383545,56,8642,8642,,
+0,57,0.057586769573390484,1.4000000000000001e-06,3.329538345336914,57,8770,8770,,
+0,58,0.05834212340414524,1.4000000000000001e-06,3.2837607860565186,58,8980,8980,,
+0,59,0.05870256572961807,1.4000000000000001e-06,3.2519094944000244,59,9113,9113,,
+0,60,0.06020685099065304,1.4000000000000001e-06,3.247335910797119,60,9234,9234,,
+0,61,0.058909106999635696,1.4000000000000001e-06,3.313418388366699,61,9397,9397,,
+0,62,0.05853416305035353,1.4000000000000001e-06,3.3882572650909424,62,9539,9539,,
+0,63,0.05889196414500475,1.4000000000000001e-06,3.367661237716675,63,9744,9744,,
+0,64,0.08712863828986883,1.6000000000000001e-06,3.415900707244873,64,9888,9888,,
+0,65,0.057436724193394184,1.6000000000000001e-06,3.4126505851745605,65,10022,10022,,
+0,66,0.05863502621650696,1.6000000000000001e-06,3.4952030181884766,66,10125,10125,,
+0,67,0.0586898997426033,1.6000000000000001e-06,3.4612274169921875,67,10235,10235,,
+0,68,0.05826147273182869,1.6000000000000001e-06,3.489025115966797,68,10354,10354,,
+0,69,0.05833710078150034,1.6000000000000001e-06,3.443941116333008,69,10545,10545,,
+0,70,0.05882374104112387,1.6000000000000001e-06,3.411191940307617,70,10713,10713,,
+0,71,0.058707945980131626,1.6000000000000001e-06,3.458733081817627,71,10839,10839,,
+0,72,0.08696116600185633,1.8e-06,3.4347267150878906,72,10953,10953,,
+0,73,0.05752511974424124,1.8e-06,3.4341917037963867,73,11123,11123,,
+0,74,0.05806587357074022,1.8e-06,3.3946585655212402,74,11295,11295,,
+0,75,0.057776628993451595,1.8e-06,3.424926280975342,75,11422,11422,,
+0,76,0.05812560301274061,1.8e-06,3.4344496726989746,76,11527,11527,,
+0,77,0.05786038003861904,1.8e-06,3.492615222930908,77,11649,11649,,
+0,78,0.058412398211658,1.8e-06,3.502509593963623,78,11801,11801,,
+0,79,0.057899813167750835,1.8e-06,3.4779443740844727,79,11941,11941,,
+0,80,0.08692645281553268,2.0000000000000003e-06,3.472886085510254,80,12113,12113,,
+0,81,0.05687103047966957,2.0000000000000003e-06,3.407820463180542,81,12270,12270,,
+0,82,0.05891631171107292,2.0000000000000003e-06,3.420445203781128,82,12463,12463,,
+0,83,0.058172812685370445,2.0000000000000003e-06,3.436721086502075,83,12576,12576,,
+0,84,0.05816160701215267,2.0000000000000003e-06,3.4679951667785645,84,12712,12712,,
+0,85,0.05817967187613249,2.0000000000000003e-06,3.4156672954559326,85,12905,12905,,
+0,86,0.058588155545294285,2.0000000000000003e-06,3.4436538219451904,86,13030,13030,,
+0,87,0.0577684361487627,2.0000000000000003e-06,3.4485490322113037,87,13212,13212,,
+0,88,0.08736078161746264,2.2e-06,3.3742103576660156,88,13517,13517,,
+0,89,0.05731725413352251,2.2e-06,3.4112253189086914,89,13650,13650,,
+0,90,0.05800129286944866,2.2e-06,3.4040937423706055,90,13802,13802,,
+0,91,0.05822519212961197,2.2e-06,3.348464012145996,91,14007,14007,,
+0,92,0.057919410057365894,2.2e-06,3.3004465103149414,92,14117,14117,,
+0,93,0.0585117032751441,2.2e-06,3.3540029525756836,93,14329,14329,,
+0,94,0.05818790942430496,2.2e-06,3.3846826553344727,94,14480,14480,,
+0,95,0.05827590823173523,2.2e-06,3.3891100883483887,95,14605,14605,,
+0,96,0.08778056129813194,2.4000000000000003e-06,3.5446438789367676,96,14709,14709,,
+0,97,0.057475912384688854,2.4000000000000003e-06,3.462878704071045,97,14917,14917,,
+0,98,0.05836062226444483,2.4000000000000003e-06,3.467682361602783,98,15091,15091,,
+0,99,0.05911750253289938,2.4000000000000003e-06,3.479238986968994,99,15352,15352,,
+0,100,0.057982287369668484,2.4000000000000003e-06,3.478586196899414,100,15454,15454,,
+0,101,0.058015371672809124,2.4000000000000003e-06,3.43636417388916,101,15607,15607,,
+0,102,0.05909577663987875,2.4000000000000003e-06,3.4028544425964355,102,15730,15730,,
+0,103,0.058468909934163094,2.4000000000000003e-06,3.379035234451294,103,15893,15893,,
+0,104,0.08843433577567339,2.6e-06,3.288167953491211,104,16101,16101,,
+0,105,0.05769121088087559,2.6e-06,3.3895859718322754,105,16248,16248,,
+0,106,0.057979424484074116,2.6e-06,3.3668293952941895,106,16365,16365,,
+0,107,0.058783965185284615,2.6e-06,3.3312697410583496,107,16549,16549,,
+0,108,0.05837968643754721,2.6e-06,3.368185043334961,108,16722,16722,,
+0,109,0.05788940470665693,2.6e-06,3.4433774948120117,109,16828,16828,,
+0,110,0.057994197122752666,2.6e-06,3.397791862487793,110,17021,17021,,
+0,111,0.057704818435013294,2.6e-06,3.3650858402252197,111,17228,17228,,
+0,112,0.08785705082118511,2.8000000000000003e-06,3.3526477813720703,112,17416,17416,,
+0,113,0.056891259737312794,2.8000000000000003e-06,3.3247666358947754,113,17584,17584,,
+0,114,0.05808836966753006,2.8000000000000003e-06,3.4069137573242188,114,17714,17714,,
+0,115,0.05849434528499842,2.8000000000000003e-06,3.4084577560424805,115,17892,17892,,
+0,116,0.05836514849215746,2.8000000000000003e-06,3.373810291290283,116,18065,18065,,
+0,117,0.057992927730083466,2.8000000000000003e-06,3.3188931941986084,117,18175,18175,,
+0,118,0.061063194647431374,2.8000000000000003e-06,3.2963669300079346,118,18331,18331,,
+0,119,0.0588813703507185,2.8000000000000003e-06,3.2985756397247314,119,18549,18549,,
+0,120,0.08713967353105545,3e-06,3.2848010063171387,120,18750,18750,,
+0,121,0.057295121252536774,3e-06,3.262397289276123,121,18881,18881,,
+0,122,0.05861806217581034,3e-06,3.2243194580078125,122,18988,18988,,
+0,123,0.0582837238907814,3e-06,3.3113842010498047,123,19120,19120,,
+0,124,0.058098467998206615,3e-06,3.302884101867676,124,19246,19246,,
+0,125,0.05864084791392088,3e-06,3.2156124114990234,125,19396,19396,,
+0,126,0.057962010614573956,3e-06,3.3048152923583984,126,19522,19522,,
+0,127,0.0588358249515295,3e-06,3.3683109283447266,127,19624,19624,,
+0,128,0.08722837828099728,3.2000000000000003e-06,3.356590747833252,128,19807,19807,,
+0,129,0.05783934984356165,3.2000000000000003e-06,3.3562283515930176,129,19978,19978,,
+0,130,0.05894221365451813,3.2000000000000003e-06,3.3087387084960938,130,20110,20110,,
+0,131,0.05899903550744057,3.2000000000000003e-06,3.284821033477783,131,20226,20226,,
+0,132,0.059420518577098846,3.2000000000000003e-06,3.3496594429016113,132,20327,20327,,
+0,133,0.058524416759610176,3.2000000000000003e-06,3.373107433319092,133,20536,20536,,
+0,134,0.05805195774883032,3.2000000000000003e-06,3.325756311416626,134,20666,20666,,
+0,135,0.05804626923054457,3.2000000000000003e-06,3.313269853591919,135,20777,20777,,
+0,136,0.08698860742151737,3.4000000000000005e-06,3.2890138626098633,136,20968,20968,,
+0,137,0.057291099801659584,3.4000000000000005e-06,3.346275806427002,137,21062,21062,,
+0,138,0.05810605641454458,3.4000000000000005e-06,3.387749671936035,138,21185,21185,,
+0,139,0.05830768775194883,3.4000000000000005e-06,3.3435473442077637,139,21340,21340,,
+0,140,0.058089207857847214,3.4000000000000005e-06,3.3094987869262695,140,21452,21452,,
+0,141,0.05790860019624233,3.4000000000000005e-06,3.365345001220703,141,21610,21610,,
+0,142,0.05874844640493393,3.4000000000000005e-06,3.309457302093506,142,21815,21815,,
+0,143,0.05813814327120781,3.4000000000000005e-06,3.330447196960449,143,21941,21941,,
+0,144,0.08660121820867062,3.6e-06,3.380659341812134,144,22037,22037,,
+0,145,0.05700175929814577,3.6e-06,3.3143465518951416,145,22212,22212,,
+0,146,0.05874289572238922,3.6e-06,3.323728561401367,146,22300,22300,,
+0,147,0.05866371374577284,3.6e-06,3.3978235721588135,147,22424,22424,,
+0,148,0.05815783888101578,3.6e-06,3.363847017288208,148,22528,22528,,
+0,149,0.05807890184223652,3.6e-06,3.292464017868042,149,22694,22694,,
+0,150,0.05818348657339811,3.6e-06,3.33642840385437,150,22824,22824,,
+0,151,0.05810508597642183,3.6e-06,3.3726775646209717,151,22952,22952,,
+0,152,0.08670543693006039,3.8e-06,3.3563907146453857,152,23111,23111,,
+0,153,0.0570081640034914,3.8e-06,3.397050619125366,153,23217,23217,,
+0,154,0.05750910472124815,3.8e-06,3.43410325050354,154,23340,23340,,
+0,155,0.05763721279799938,3.8e-06,3.384040594100952,155,23532,23532,,
+0,156,0.05730295833200216,3.8e-06,3.3539793491363525,156,23696,23696,,
+0,157,0.0603528069332242,3.8e-06,3.3722145557403564,157,23897,23897,,
+0,158,0.05817568302154541,3.8e-06,3.4316446781158447,158,24049,24049,,
+0,159,0.0579477259889245,3.8e-06,3.384911298751831,159,24172,24172,,
+0,160,0.08631547819823027,4.000000000000001e-06,3.4230802059173584,160,24344,24344,,
+0,161,0.057171717286109924,4.000000000000001e-06,3.3504106998443604,161,24535,24535,,
+0,162,0.05791729036718607,4.000000000000001e-06,3.310445785522461,162,24717,24717,,
+0,163,0.05796115845441818,4.000000000000001e-06,3.301776647567749,163,24838,24838,,
+0,164,0.05774658266454935,4.000000000000001e-06,3.2842483520507812,164,25016,25016,,
+0,165,0.05768199730664492,4.000000000000001e-06,3.3560352325439453,165,25124,25124,,
+0,166,0.05796854477375746,4.000000000000001e-06,3.338407516479492,166,25270,25270,,
+0,167,0.05805021058768034,4.000000000000001e-06,3.2829513549804688,167,25406,25406,,
+0,168,0.08679038193076849,4.2000000000000004e-06,3.262023448944092,168,25569,25569,,
+0,169,0.05764692462980747,4.2000000000000004e-06,3.2571187019348145,169,25732,25732,,
+0,170,0.05760104116052389,4.2000000000000004e-06,3.2052369117736816,170,25903,25903,,
+0,171,0.05811187159270048,4.2000000000000004e-06,3.211089611053467,171,26051,26051,,
+0,172,0.0577718410640955,4.2000000000000004e-06,3.1983304023742676,172,26220,26220,,
+0,173,0.05780385807156563,4.2000000000000004e-06,3.166487216949463,173,26348,26348,,
+0,174,0.057995532639324665,4.2000000000000004e-06,3.1388702392578125,174,26503,26503,,
+0,175,0.05799023527652025,4.2000000000000004e-06,3.122298240661621,175,26647,26647,,
+0,176,0.08651326037943363,4.4e-06,3.147547483444214,176,26780,26780,,
+0,177,0.05755734909325838,4.4e-06,3.2451491355895996,177,26883,26883,,
+0,178,0.05822183936834335,4.4e-06,3.309804677963257,178,26980,26980,,
+0,179,0.0577798830345273,4.4e-06,3.2732393741607666,179,27169,27169,,
+0,180,0.05825591832399368,4.4e-06,3.3237361907958984,180,27322,27322,,
+0,181,0.05769714154303074,4.4e-06,3.2811574935913086,181,27510,27510,,
+0,182,0.05764146987348795,4.4e-06,3.2505905628204346,182,27612,27612,,
+0,183,0.05777472350746393,4.4e-06,3.2853078842163086,183,27778,27778,,
+0,184,0.08613516297191381,4.6e-06,3.2065236568450928,184,27973,27973,,
+0,185,0.05736046936362982,4.6e-06,3.1268603801727295,185,28105,28105,,
+0,186,0.057551261968910694,4.6e-06,3.095808744430542,186,28253,28253,,
+0,187,0.058421578258275986,4.6e-06,3.094355821609497,187,28408,28408,,
+0,188,0.05767870042473078,4.6e-06,3.065018892288208,188,28573,28573,,
+0,189,0.057712480425834656,4.6e-06,3.146207809448242,189,28674,28674,,
+0,190,0.057821109890937805,4.6e-06,3.1969377994537354,190,28831,28831,,
+0,191,0.05782335717231035,4.6e-06,3.1755943298339844,191,28962,28962,,
+0,192,0.08667612262070179,4.800000000000001e-06,3.2122130393981934,192,29103,29103,,
+0,193,0.057238862849771976,4.800000000000001e-06,3.215543270111084,193,29338,29338,,
+0,194,0.05756220035254955,4.800000000000001e-06,3.1600594520568848,194,29513,29513,,
+0,195,0.05857805348932743,4.800000000000001e-06,3.1949267387390137,195,29667,29667,,
+0,196,0.05936652421951294,4.800000000000001e-06,3.2504024505615234,196,29815,29815,,
+0,197,0.05823389254510403,4.800000000000001e-06,3.180286407470703,197,29924,29924,,
+0,198,0.05789478402584791,4.800000000000001e-06,3.0859975814819336,198,30063,30063,,
+0,199,0.057593162171542645,4.800000000000001e-06,3.0831871032714844,199,30242,30242,,
+0,200,0.08667593542486429,5e-06,3.078003406524658,200,30528,30528,,
+,,,,,200,,,3.026664972305298,20.6283217192017
+0,201,0.06200975738465786,5e-06,3.0713090896606445,201,30671,30671,,
+0,202,0.0587803116068244,5e-06,3.092552661895752,202,30862,30862,,
+0,203,0.058532094582915306,5e-06,3.0411782264709473,203,31074,31074,,
+0,204,0.05824998673051596,5e-06,3.005058765411377,204,31246,31246,,
+0,205,0.057416378520429134,5e-06,3.0030436515808105,205,31411,31411,,
+0,206,0.05840652622282505,5e-06,3.001328468322754,206,31579,31579,,
+0,207,0.057859184220433235,5e-06,2.9964659214019775,207,31704,31704,,
+0,208,0.08729076478630304,5.2e-06,3.0541205406188965,208,31840,31840,,
+0,209,0.05698568560183048,5.2e-06,3.1303088665008545,209,31964,31964,,
+0,210,0.058337642811238766,5.2e-06,3.145217180252075,210,32115,32115,,
+0,211,0.05911301355808973,5.2e-06,3.2072582244873047,211,32222,32222,,
+0,212,0.0586060443893075,5.2e-06,3.1305909156799316,212,32410,32410,,
+0,213,0.058097134344279766,5.2e-06,3.1253199577331543,213,32546,32546,,
+0,214,0.05833942722529173,5.2e-06,3.134100914001465,214,32722,32722,,
+0,215,0.058383225463330746,5.2e-06,3.086254596710205,215,32910,32910,,
+0,216,0.08721805363893509,5.4e-06,2.9866294860839844,216,33079,33079,,
+0,217,0.057025548070669174,5.4e-06,2.8660411834716797,217,33197,33197,,
+0,218,0.0583882974460721,5.4e-06,2.870323657989502,218,33358,33358,,
+0,219,0.05800318717956543,5.4e-06,2.8315317630767822,219,33506,33506,,
+0,220,0.05794539302587509,5.4e-06,2.8706016540527344,220,33674,33674,,
+0,221,0.05816266592592001,5.4e-06,2.890299081802368,221,33816,33816,,
+0,222,0.058105068281292915,5.4e-06,2.9030680656433105,222,33943,33943,,
+0,223,0.05854636989533901,5.4e-06,2.9891951084136963,223,34108,34108,,
+0,224,0.08759673405438662,5.600000000000001e-06,3.0878467559814453,224,34210,34210,,
+0,225,0.05725093558430672,5.600000000000001e-06,3.117283344268799,225,34352,34352,,
+0,226,0.058615160174667835,5.600000000000001e-06,3.1153244972229004,226,34593,34593,,
+0,227,0.0587678411975503,5.600000000000001e-06,3.078508138656616,227,34766,34766,,
+0,228,0.058307064697146416,5.600000000000001e-06,3.088667392730713,228,34918,34918,,
+0,229,0.05817871354520321,5.600000000000001e-06,3.017127752304077,229,35091,35091,,
+0,230,0.05814748257398605,5.600000000000001e-06,2.9893386363983154,230,35233,35233,,
+0,231,0.05808386765420437,5.600000000000001e-06,2.943455457687378,231,35358,35358,,
+0,232,0.0871896157041192,5.8e-06,2.853712797164917,232,35531,35531,,
+0,233,0.057489827275276184,5.8e-06,2.9122111797332764,233,35668,35668,,
+0,234,0.05800191219896078,5.8e-06,2.851961612701416,234,35891,35891,,
+0,235,0.05786329694092274,5.8e-06,2.89432430267334,235,36033,36033,,
+0,236,0.05865906737744808,5.8e-06,2.8930697441101074,236,36191,36191,,
+0,237,0.05830592010170221,5.8e-06,2.9407382011413574,237,36400,36400,,
+0,238,0.057877263985574245,5.8e-06,2.959850311279297,238,36560,36560,,
+0,239,0.05840024072676897,5.8e-06,2.912022829055786,239,36737,36737,,
+0,240,0.08729932270944118,6e-06,2.9481849670410156,240,36922,36922,,
+0,241,0.06055110413581133,6e-06,2.910062551498413,241,37049,37049,,
+0,242,0.05837780889123678,6e-06,2.9552791118621826,242,37241,37241,,
+0,243,0.05851154215633869,6e-06,2.9708642959594727,243,37389,37389,,
+0,244,0.05931658297777176,6e-06,2.982192039489746,244,37559,37559,,
+0,245,0.05897687282413244,6e-06,3.0043933391571045,245,37695,37695,,
+0,246,0.058574605733156204,6e-06,2.9898087978363037,246,37897,37897,,
+0,247,0.0586194870993495,6e-06,3.026700735092163,247,38065,38065,,
+0,248,0.08804470952600241,6.2e-06,2.971809148788452,248,38244,38244,,
+0,249,0.05737094674259424,6.2e-06,2.92792010307312,249,38444,38444,,
+0,250,0.058496223762631416,6.2e-06,2.8625175952911377,250,38600,38600,,
+0,251,0.058593099005520344,6.2e-06,2.8104193210601807,251,38757,38757,,
+0,252,0.05868362449109554,6.2e-06,2.7431252002716064,252,38884,38884,,
+0,253,0.05864533502608538,6.2e-06,2.7541134357452393,253,38984,38984,,
+0,254,0.05819429364055395,6.2e-06,2.7753469944000244,254,39133,39133,,
+0,255,0.057996680960059166,6.2e-06,2.7627546787261963,255,39315,39315,,
+0,256,0.08713171444833279,6.4000000000000006e-06,2.76607084274292,256,39477,39477,,
+0,257,0.057270889170467854,6.4000000000000006e-06,2.792801856994629,257,39668,39668,,
+0,258,0.05872517358511686,6.4000000000000006e-06,2.827763080596924,258,39818,39818,,
+0,259,0.057975864969193935,6.4000000000000006e-06,2.7870922088623047,259,39981,39981,,
+0,260,0.058466448448598385,6.4000000000000006e-06,2.8010339736938477,260,40117,40117,,
+0,261,0.05820974614471197,6.4000000000000006e-06,2.751768112182617,261,40228,40228,,
+0,262,0.05839112587273121,6.4000000000000006e-06,2.7746644020080566,262,40355,40355,,
+0,263,0.0580439530313015,6.4000000000000006e-06,2.7673821449279785,263,40547,40547,,
+0,264,0.08747592102736235,6.6e-06,2.770603656768799,264,40689,40689,,
+0,265,0.057418148033320904,6.6e-06,2.7331578731536865,265,40832,40832,,
+0,266,0.05848267115652561,6.6e-06,2.755959987640381,266,40982,40982,,
+0,267,0.05934825725853443,6.6e-06,2.805527687072754,267,41086,41086,,
+0,268,0.0591578334569931,6.6e-06,2.8075449466705322,268,41188,41188,,
+0,269,0.05821633618324995,6.6e-06,2.854933500289917,269,41315,41315,,
+0,270,0.05832803715020418,6.6e-06,2.8331503868103027,270,41434,41434,,
+0,271,0.0582575798034668,6.6e-06,2.856250286102295,271,41574,41574,,
+0,272,0.08789727557450533,6.800000000000001e-06,2.9036643505096436,272,41744,41744,,
+0,273,0.05726251658052206,6.800000000000001e-06,2.9297211170196533,273,41878,41878,,
+0,274,0.05835481081157923,6.800000000000001e-06,2.857954502105713,274,41995,41995,,
+0,275,0.05835441593080759,6.800000000000001e-06,2.7908387184143066,275,42169,42169,,
+0,276,0.05917728412896395,6.800000000000001e-06,2.7827646732330322,276,42468,42468,,
+0,277,0.05823909770697355,6.800000000000001e-06,2.719447374343872,277,42591,42591,,
+0,278,0.058521523140370846,6.800000000000001e-06,2.703888177871704,278,42751,42751,,
+0,279,0.05845196172595024,6.800000000000001e-06,2.70605206489563,279,42928,42928,,
+0,280,0.0873650386929512,7.000000000000001e-06,2.721078872680664,280,43036,43036,,
+0,281,0.05751821864396334,7.000000000000001e-06,2.7427258491516113,281,43206,43206,,
+0,282,0.05885710846632719,7.000000000000001e-06,2.803816318511963,282,43381,43381,,
+0,283,0.05845259316265583,7.000000000000001e-06,2.798823356628418,283,43505,43505,,
+0,284,0.05894620716571808,7.000000000000001e-06,2.7548155784606934,284,43608,43608,,
+0,285,0.05867220368236303,7.000000000000001e-06,2.8274927139282227,285,43719,43719,,
+0,286,0.05817802809178829,7.000000000000001e-06,2.8243799209594727,286,43876,43876,,
+0,287,0.05842470284551382,7.000000000000001e-06,2.8140501976013184,287,44005,44005,,
+0,288,0.08776282612234354,7.2e-06,2.6716089248657227,288,44207,44207,,
+0,289,0.05730977188795805,7.2e-06,2.6367311477661133,289,44340,44340,,
+0,290,0.057780724950134754,7.2e-06,2.5790047645568848,290,44540,44540,,
+0,291,0.05837543215602636,7.2e-06,2.6204259395599365,291,44706,44706,,
+0,292,0.0583855826407671,7.2e-06,2.7051644325256348,292,44852,44852,,
+0,293,0.05805014353245497,7.2e-06,2.636274576187134,293,45000,45000,,
+0,294,0.058100792579352856,7.2e-06,2.6037416458129883,294,45166,45166,,
+0,295,0.05814927350729704,7.2e-06,2.619159698486328,295,45305,45305,,
+0,296,0.08726204000413418,7.4e-06,2.7608582973480225,296,45435,45435,,
+0,297,0.05703094322234392,7.4e-06,2.7331807613372803,297,45641,45641,,
+0,298,0.057987280189991,7.4e-06,2.7797904014587402,298,45788,45788,,
+0,299,0.058054533787071705,7.4e-06,2.779336452484131,299,45920,45920,,
+0,300,0.05803791992366314,7.4e-06,2.7072525024414062,300,46057,46057,,
+0,301,0.057957474142313004,7.4e-06,2.691441059112549,301,46171,46171,,
+0,302,0.05774426739662886,7.4e-06,2.682300329208374,302,46330,46330,,
+0,303,0.05792016629129648,7.4e-06,2.5952653884887695,303,46446,46446,,
+0,304,0.0872822878882289,7.6e-06,2.530404567718506,304,46610,46610,,
+0,305,0.057299898006021976,7.6e-06,2.5073513984680176,305,46793,46793,,
+0,306,0.05794966686517,7.6e-06,2.4485580921173096,306,47063,47063,,
+0,307,0.057968275621533394,7.6e-06,2.419111967086792,307,47148,47148,,
+0,308,0.057897599413990974,7.6e-06,2.399235725402832,308,47271,47271,,
+0,309,0.05802779458463192,7.6e-06,2.412841796875,309,47445,47445,,
+0,310,0.05815687123686075,7.6e-06,2.4389779567718506,310,47620,47620,,
+0,311,0.05806774366647005,7.6e-06,2.433253288269043,311,47749,47749,,
+0,312,0.08669247664511204,7.8e-06,2.457693099975586,312,47910,47910,,
+0,313,0.05740579031407833,7.8e-06,2.4802722930908203,313,48080,48080,,
+0,314,0.05817060638219118,7.8e-06,2.4676971435546875,314,48181,48181,,
+0,315,0.05787433311343193,7.8e-06,2.5445656776428223,315,48319,48319,,
+0,316,0.05828617513179779,7.8e-06,2.6091623306274414,316,48474,48474,,
+0,317,0.057612561620771885,7.8e-06,2.565831184387207,317,48603,48603,,
+0,318,0.057876259088516235,7.8e-06,2.523834705352783,318,48724,48724,,
+0,319,0.05788422003388405,7.8e-06,2.590294361114502,319,48914,48914,,
+0,320,0.08707729913294315,8.000000000000001e-06,2.5704121589660645,320,49027,49027,,
+0,321,0.05739667825400829,8.000000000000001e-06,2.56177020072937,321,49166,49166,,
+0,322,0.0599508797749877,8.000000000000001e-06,2.5652475357055664,322,49365,49365,,
+0,323,0.05774179846048355,8.000000000000001e-06,2.4961564540863037,323,49557,49557,,
+0,324,0.058349563740193844,8.000000000000001e-06,2.476749897003174,324,49686,49686,,
+0,325,0.05810525547713041,8.000000000000001e-06,2.4387502670288086,325,49856,49856,,
+0,326,0.0582480113953352,8.000000000000001e-06,2.435326099395752,326,49959,49959,,
+0,327,0.05788603890687227,8.000000000000001e-06,2.3705973625183105,327,50096,50096,,
+0,328,0.08698790986090899,8.200000000000001e-06,2.367023229598999,328,50207,50207,,
+0,329,0.0569004537537694,8.200000000000001e-06,2.348874568939209,329,50396,50396,,
+0,330,0.058021942153573036,8.200000000000001e-06,2.4078783988952637,330,50560,50560,,
+0,331,0.05784439109265804,8.200000000000001e-06,2.4270172119140625,331,50671,50671,,
+0,332,0.05843893997371197,8.200000000000001e-06,2.4187939167022705,332,50859,50859,,
+0,333,0.05789876077324152,8.200000000000001e-06,2.5159995555877686,333,51014,51014,,
+0,334,0.058028328232467175,8.200000000000001e-06,2.5587942600250244,334,51167,51167,,
+0,335,0.057933283038437366,8.200000000000001e-06,2.6252129077911377,335,51272,51272,,
+0,336,0.08678362611681223,8.400000000000001e-06,2.5915253162384033,336,51433,51433,,
+0,337,0.05717627052217722,8.400000000000001e-06,2.5891973972320557,337,51592,51592,,
+0,338,0.05804801918566227,8.400000000000001e-06,2.576589345932007,338,51718,51718,,
+0,339,0.058111648075282574,8.400000000000001e-06,2.5498616695404053,339,51832,51832,,
+0,340,0.05852667801082134,8.400000000000001e-06,2.552971124649048,340,51952,51952,,
+0,341,0.05819177255034447,8.400000000000001e-06,2.5857174396514893,341,52076,52076,,
+0,342,0.058104630559682846,8.400000000000001e-06,2.581965684890747,342,52192,52192,,
+0,343,0.05818447470664978,8.400000000000001e-06,2.5597126483917236,343,52347,52347,,
+0,344,0.08733737468719482,8.599999999999999e-06,2.575098752975464,344,52458,52458,,
+0,345,0.05729255545884371,8.599999999999999e-06,2.5500056743621826,345,52610,52610,,
+0,346,0.058050915598869324,8.599999999999999e-06,2.5367114543914795,346,52746,52746,,
+0,347,0.05804409459233284,8.599999999999999e-06,2.574073553085327,347,52888,52888,,
+0,348,0.05836861673742533,8.599999999999999e-06,2.5859365463256836,348,53063,53063,,
+0,349,0.057861899957060814,8.599999999999999e-06,2.481571912765503,349,53267,53267,,
+0,350,0.058067225851118565,8.599999999999999e-06,2.473423719406128,350,53370,53370,,
+0,351,0.057765597477555275,8.599999999999999e-06,2.496685266494751,351,53490,53490,,
+0,352,0.08662765193730593,8.8e-06,2.4777748584747314,352,53626,53626,,
+0,353,0.05668645724654198,8.8e-06,2.5692474842071533,353,53793,53793,,
+0,354,0.05747622065246105,8.8e-06,2.6419639587402344,354,53997,53997,,
+0,355,0.05761595815420151,8.8e-06,2.5821173191070557,355,54199,54199,,
+0,356,0.05819157510995865,8.8e-06,2.524076223373413,356,54325,54325,,
+0,357,0.057706328108906746,8.8e-06,2.5427935123443604,357,54487,54487,,
+0,358,0.0584760969504714,8.8e-06,2.501228094100952,358,54720,54720,,
+0,359,0.05831829085946083,8.8e-06,2.4539663791656494,359,54864,54864,,
+0,360,0.08774852380156517,9e-06,2.4520392417907715,360,54957,54957,,
+0,361,0.05708171986043453,9e-06,2.407346487045288,361,55080,55080,,
+0,362,0.05889974161982536,9e-06,2.308790445327759,362,55196,55196,,
+0,363,0.05964696779847145,9e-06,2.3738396167755127,363,55316,55316,,
+0,364,0.0587422763928771,9e-06,2.3621203899383545,364,55467,55467,,
+0,365,0.058925412595272064,9e-06,2.394563913345337,365,55588,55588,,
+0,366,0.05834630224853754,9e-06,2.4521923065185547,366,55753,55753,,
+0,367,0.05921394098550081,9e-06,2.454193115234375,367,55912,55912,,
+0,368,0.08737816382199526,9.2e-06,2.4722044467926025,368,56040,56040,,
+0,369,0.05744602344930172,9.2e-06,2.4693448543548584,369,56145,56145,,
+0,370,0.058548676781356335,9.2e-06,2.479524612426758,370,56288,56288,,
+0,371,0.05861298926174641,9.2e-06,2.4129183292388916,371,56437,56437,,
+0,372,0.05863261315971613,9.2e-06,2.5021138191223145,372,56649,56649,,
+0,373,0.05866311211138964,9.2e-06,2.530156135559082,373,56787,56787,,
+0,374,0.058529939502477646,9.2e-06,2.4958529472351074,374,56921,56921,,
+0,375,0.05904032662510872,9.2e-06,2.535102605819702,375,57055,57055,,
+0,376,0.08736029732972383,9.4e-06,2.4798078536987305,376,57213,57213,,
+0,377,0.06177213042974472,9.4e-06,2.422809600830078,377,57432,57432,,
+0,378,0.05862800497561693,9.4e-06,2.4209625720977783,378,57566,57566,,
+0,379,0.05941590666770935,9.4e-06,2.4957759380340576,379,57710,57710,,
+0,380,0.05895744822919369,9.4e-06,2.440843105316162,380,57852,57852,,
+0,381,0.058735587634146214,9.4e-06,2.393740653991699,381,58031,58031,,
+0,382,0.058408171869814396,9.4e-06,2.3881616592407227,382,58146,58146,,
+0,383,0.0591633589938283,9.4e-06,2.391465902328491,383,58384,58384,,
+0,384,0.08792370185256004,9.600000000000001e-06,2.4411630630493164,384,58556,58556,,
+0,385,0.05850571021437645,9.600000000000001e-06,2.503988742828369,385,58758,58758,,
+0,386,0.05877453088760376,9.600000000000001e-06,2.4868011474609375,386,58907,58907,,
+0,387,0.05903149954974651,9.600000000000001e-06,2.4664926528930664,387,59069,59069,,
+0,388,0.058799613267183304,9.600000000000001e-06,2.4627938270568848,388,59221,59221,,
+0,389,0.058455972000956535,9.600000000000001e-06,2.4538493156433105,389,59332,59332,,
+0,390,0.05860345810651779,9.600000000000001e-06,2.4447598457336426,390,59455,59455,,
+0,391,0.05932834278792143,9.600000000000001e-06,2.4274139404296875,391,59585,59585,,
+0,392,0.08734160009771585,9.800000000000001e-06,2.449615001678467,392,59756,59756,,
+0,393,0.05775581020861864,9.800000000000001e-06,2.4319777488708496,393,59889,59889,,
+0,394,0.058575705625116825,9.800000000000001e-06,2.4629719257354736,394,60039,60039,,
+0,395,0.059132286347448826,9.800000000000001e-06,2.427757978439331,395,60183,60183,,
+0,396,0.058483545668423176,9.800000000000001e-06,2.435070276260376,396,60382,60382,,
+0,397,0.058858771808445454,9.800000000000001e-06,2.4363832473754883,397,60587,60587,,
+0,398,0.058559163473546505,9.800000000000001e-06,2.430002450942993,398,60729,60729,,
+0,399,0.0592252304777503,9.800000000000001e-06,2.3595051765441895,399,60875,60875,,
+0,400,0.08750720974057913,1e-05,2.361300468444824,400,61004,61004,,
+,,,,,400,,,2.2684645652770996,9.66455013001164
+0,401,0.061598542146384716,1e-05,2.3141684532165527,401,61208,61208,,
+0,402,0.05932145286351442,1e-05,2.268739700317383,402,61354,61354,,
+0,403,0.05939859990030527,1e-05,2.269592046737671,403,61506,61506,,
+0,404,0.05859878659248352,1e-05,2.2318520545959473,404,61672,61672,,
+0,405,0.05852342303842306,1e-05,2.1683082580566406,405,61819,61819,,
+0,406,0.05880514997988939,1e-05,2.2279574871063232,406,61946,61946,,
+0,407,0.05903021618723869,1e-05,2.253890037536621,407,62125,62125,,
+0,408,0.08858609292656183,1.02e-05,2.2492778301239014,408,62314,62314,,
+0,409,0.05778887774795294,1.02e-05,2.338627576828003,409,62464,62464,,
+0,410,0.05879444628953934,1.02e-05,2.4200820922851562,410,62583,62583,,
+0,411,0.059068591333925724,1.02e-05,2.445235013961792,411,62791,62791,,
+0,412,0.05913908313959837,1.02e-05,2.489753246307373,412,62962,62962,,
+0,413,0.059584547765553,1.02e-05,2.496354579925537,413,63137,63137,,
+0,414,0.05907770711928606,1.02e-05,2.4310522079467773,414,63295,63295,,
+0,415,0.059458356350660324,1.02e-05,2.426534652709961,415,63433,63433,,
+0,416,0.0878955852240324,1.04e-05,2.3974547386169434,416,63532,63532,,
+0,417,0.05767360981553793,1.04e-05,2.3860349655151367,417,63680,63680,,
+0,418,0.058463115245103836,1.04e-05,2.3416178226470947,418,63795,63795,,
+0,419,0.05929802358150482,1.04e-05,2.2913427352905273,419,63929,63929,,
+0,420,0.05890958663076162,1.04e-05,2.24330997467041,420,64059,64059,,
+0,421,0.05864476226270199,1.04e-05,2.259695291519165,421,64203,64203,,
+0,422,0.05875971261411905,1.04e-05,2.237008571624756,422,64370,64370,,
+0,423,0.05948088504374027,1.04e-05,2.2312209606170654,423,64546,64546,,
+0,424,0.08793607726693153,1.06e-05,2.2357828617095947,424,64720,64720,,
+0,425,0.058020880445837975,1.06e-05,2.2364206314086914,425,64886,64886,,
+0,426,0.05807593744248152,1.06e-05,2.2522976398468018,426,65080,65080,,
+0,427,0.05864682048559189,1.06e-05,2.293825626373291,427,65238,65238,,
+0,428,0.0583824310451746,1.06e-05,2.3053741455078125,428,65364,65364,,
+0,429,0.05832345597445965,1.06e-05,2.3439338207244873,429,65498,65498,,
+0,430,0.05880972184240818,1.06e-05,2.3424768447875977,430,65673,65673,,
+0,431,0.05844131112098694,1.06e-05,2.390686273574829,431,65885,65885,,
+0,432,0.08730547409504652,1.08e-05,2.378797769546509,432,66044,66044,,
+0,433,0.057741460390388966,1.08e-05,2.384500503540039,433,66215,66215,,
+0,434,0.05829061195254326,1.08e-05,2.3945798873901367,434,66334,66334,,
+0,435,0.058577073737978935,1.08e-05,2.3686718940734863,435,66517,66517,,
+0,436,0.05958044156432152,1.08e-05,2.41863751411438,436,66686,66686,,
+0,437,0.059822605922818184,1.08e-05,2.411553382873535,437,66795,66795,,
+0,438,0.06284800544381142,1.08e-05,2.484516143798828,438,66955,66955,,
+0,439,0.05900419410318136,1.08e-05,2.4644203186035156,439,67050,67050,,
+0,440,0.09548866469413042,1.1000000000000001e-05,2.4492573738098145,440,67209,67209,,
+0,441,0.05825784709304571,1.1000000000000001e-05,2.4461896419525146,441,67350,67350,,
+0,442,0.058875651098787785,1.1000000000000001e-05,2.421865224838257,442,67507,67507,,
+0,443,0.05934662278741598,1.1000000000000001e-05,2.474595069885254,443,67686,67686,,
+0,444,0.05915581714361906,1.1000000000000001e-05,2.461562395095825,444,67792,67792,,
+0,445,0.05907813645899296,1.1000000000000001e-05,2.4806504249572754,445,67964,67964,,
+0,446,0.05870678648352623,1.1000000000000001e-05,2.424772024154663,446,68102,68102,,
+0,447,0.059198071248829365,1.1000000000000001e-05,2.3711178302764893,447,68240,68240,,
+0,448,0.08747107721865177,1.1200000000000001e-05,2.3958144187927246,448,68374,68374,,
+0,449,0.05792044196277857,1.1200000000000001e-05,2.344639539718628,449,68542,68542,,
+0,450,0.05846287216991186,1.1200000000000001e-05,2.346700429916382,450,68678,68678,,
+0,451,0.0581820672377944,1.1200000000000001e-05,2.3303282260894775,451,68866,68866,,
+0,452,0.05863204691559076,1.1200000000000001e-05,2.3128244876861572,452,69021,69021,,
+0,453,0.05895293317735195,1.1200000000000001e-05,2.256114959716797,453,69163,69163,,
+0,454,0.059047977440059185,1.1200000000000001e-05,2.303004264831543,454,69336,69336,,
+0,455,0.05853384640067816,1.1200000000000001e-05,2.3395133018493652,455,69554,69554,,
+0,456,0.08746516797691584,1.1400000000000001e-05,2.294799327850342,456,69698,69698,,
+0,457,0.05755595024675131,1.1400000000000001e-05,2.301753044128418,457,69819,69819,,
+0,458,0.05848860181868076,1.1400000000000001e-05,2.2956008911132812,458,69980,69980,,
+0,459,0.05807459354400635,1.1400000000000001e-05,2.2482476234436035,459,70125,70125,,
+0,460,0.058728890493512154,1.1400000000000001e-05,2.236086845397949,460,70248,70248,,
+0,461,0.05863738898187876,1.1400000000000001e-05,2.290168523788452,461,70427,70427,,
+0,462,0.05881315376609564,1.1400000000000001e-05,2.2203369140625,462,70530,70530,,
+0,463,0.05881155841052532,1.1400000000000001e-05,2.211552143096924,463,70671,70671,,
+0,464,0.08743308391422033,1.16e-05,2.2290432453155518,464,70863,70863,,
+0,465,0.05767414905130863,1.16e-05,2.2349326610565186,465,71007,71007,,
+0,466,0.05835355818271637,1.16e-05,2.195931911468506,466,71153,71153,,
+0,467,0.058584755286574364,1.16e-05,2.1888928413391113,467,71297,71297,,
+0,468,0.05954230297356844,1.16e-05,2.1967613697052,468,71407,71407,,
+0,469,0.05874467454850674,1.16e-05,2.1969494819641113,469,71577,71577,,
+0,470,0.058556913398206234,1.16e-05,2.233135461807251,470,71765,71765,,
+0,471,0.05844690836966038,1.16e-05,2.24177885055542,471,71987,71987,,
+0,472,0.08806460350751877,1.18e-05,2.2976818084716797,472,72145,72145,,
+0,473,0.0588553361594677,1.18e-05,2.302128314971924,473,72307,72307,,
+0,474,0.058626092970371246,1.18e-05,2.346175193786621,474,72423,72423,,
+0,475,0.0584518127143383,1.18e-05,2.366002082824707,475,72564,72564,,
+0,476,0.05883755348622799,1.18e-05,2.3823342323303223,476,72677,72677,,
+0,477,0.058933221735060215,1.18e-05,2.4049220085144043,477,72817,72817,,
+0,478,0.058658783324062824,1.18e-05,2.425273895263672,478,72947,72947,,
+0,479,0.058498503640294075,1.18e-05,2.4593939781188965,479,73183,73183,,
+0,480,0.08786708116531372,1.2e-05,2.4673845767974854,480,73346,73346,,
+0,481,0.05766418017446995,1.2e-05,2.4314916133880615,481,73488,73488,,
+0,482,0.05836913641542196,1.2e-05,2.425245523452759,482,73602,73602,,
+0,483,0.058141548186540604,1.2e-05,2.4195291996002197,483,73802,73802,,
+0,484,0.05880824476480484,1.2e-05,2.4016611576080322,484,73943,73943,,
+0,485,0.05887726880609989,1.2e-05,2.31705904006958,485,74081,74081,,
+0,486,0.058299023658037186,1.2e-05,2.2836360931396484,486,74239,74239,,
+0,487,0.05834589246660471,1.2e-05,2.2344424724578857,487,74353,74353,,
+0,488,0.08765094354748726,1.22e-05,2.1874918937683105,488,74524,74524,,
+0,489,0.057661838829517365,1.22e-05,2.206515073776245,489,74681,74681,,
+0,490,0.05845453590154648,1.22e-05,2.163275718688965,490,74864,74864,,
+0,491,0.0583955617621541,1.22e-05,2.1859445571899414,491,75030,75030,,
+0,492,0.05871650017797947,1.22e-05,2.216754198074341,492,75155,75155,,
+0,493,0.05857478175312281,1.22e-05,2.212965965270996,493,75276,75276,,
+0,494,0.058220247738063335,1.22e-05,2.252493381500244,494,75458,75458,,
+0,495,0.05840445775538683,1.22e-05,2.2414371967315674,495,75575,75575,,
+0,496,0.08720532897859812,1.24e-05,2.2853195667266846,496,75738,75738,,
+0,497,0.05768406204879284,1.24e-05,2.3330740928649902,497,75875,75875,,
+0,498,0.0585250873118639,1.24e-05,2.3884763717651367,498,76069,76069,,
+0,499,0.05840485170483589,1.24e-05,2.338348865509033,499,76214,76214,,
+0,500,0.05867671314626932,1.24e-05,2.256272077560425,500,76345,76345,,
+0,501,0.059032928198575974,1.24e-05,2.2800228595733643,501,76465,76465,,
+0,502,0.05860017519444227,1.24e-05,2.2381584644317627,502,76680,76680,,
+0,503,0.0596368545666337,1.24e-05,2.2270450592041016,503,76764,76764,,
+0,504,0.08784365467727184,1.2600000000000001e-05,2.1747829914093018,504,76897,76897,,
+0,505,0.057683696039021015,1.2600000000000001e-05,2.127647638320923,505,77032,77032,,
+0,506,0.05878255143761635,1.2600000000000001e-05,2.1245429515838623,506,77163,77163,,
+0,507,0.058520276099443436,1.2600000000000001e-05,2.1421573162078857,507,77315,77315,,
+0,508,0.05850764084607363,1.2600000000000001e-05,2.1691415309906006,508,77413,77413,,
+0,509,0.058129679411649704,1.2600000000000001e-05,2.1405906677246094,509,77602,77602,,
+0,510,0.058212545700371265,1.2600000000000001e-05,2.1291370391845703,510,77777,77777,,
+0,511,0.058326348662376404,1.2600000000000001e-05,2.1671247482299805,511,77888,77888,,
+0,512,0.08765183761715889,1.2800000000000001e-05,2.1339328289031982,512,78068,78068,,
+0,513,0.05739363841712475,1.2800000000000001e-05,2.147892713546753,513,78244,78244,,
+0,514,0.058408455923199654,1.2800000000000001e-05,2.1226820945739746,514,78383,78383,,
+0,515,0.05843492317944765,1.2800000000000001e-05,2.109900951385498,515,78496,78496,,
+0,516,0.05855424236506224,1.2800000000000001e-05,2.111910104751587,516,78723,78723,,
+0,517,0.05853664688766003,1.2800000000000001e-05,2.170100450515747,517,78887,78887,,
+0,518,0.05865259747952223,1.2800000000000001e-05,2.224236249923706,518,79042,79042,,
+0,519,0.05860595218837261,1.2800000000000001e-05,2.1983635425567627,519,79171,79171,,
+0,520,0.08759186882525682,1.3000000000000001e-05,2.248076915740967,520,79309,79309,,
+0,521,0.057413749396800995,1.3000000000000001e-05,2.2459146976470947,521,79438,79438,,
+0,522,0.058413597755134106,1.3000000000000001e-05,2.2669711112976074,522,79579,79579,,
+0,523,0.05850033741444349,1.3000000000000001e-05,2.3019564151763916,523,79758,79758,,
+0,524,0.05989161692559719,1.3000000000000001e-05,2.3206207752227783,524,79942,79942,,
+0,525,0.05842099245637655,1.3000000000000001e-05,2.2329061031341553,525,80065,80065,,
+0,526,0.05870583653450012,1.3000000000000001e-05,2.183073043823242,526,80207,80207,,
+0,527,0.058775690384209156,1.3000000000000001e-05,2.1916627883911133,527,80365,80365,,
+0,528,0.0883818008005619,1.32e-05,2.2152037620544434,528,80576,80576,,
+0,529,0.05853360611945391,1.32e-05,2.229307174682617,529,80732,80732,,
+0,530,0.05857624299824238,1.32e-05,2.2361152172088623,530,80896,80896,,
+0,531,0.0587475411593914,1.32e-05,2.1958420276641846,531,81010,81010,,
+0,532,0.0592074915766716,1.32e-05,2.203174114227295,532,81150,81150,,
+0,533,0.05877754557877779,1.32e-05,2.213188409805298,533,81271,81271,,
+0,534,0.05860882718116045,1.32e-05,2.279475212097168,534,81403,81403,,
+0,535,0.059263880364596844,1.32e-05,2.2793524265289307,535,81540,81540,,
+0,536,0.08797240536659956,1.3400000000000002e-05,2.1972289085388184,536,81693,81693,,
+0,537,0.05791275668889284,1.3400000000000002e-05,2.183501958847046,537,81845,81845,,
+0,538,0.05843893438577652,1.3400000000000002e-05,2.123777389526367,538,82049,82049,,
+0,539,0.059231799095869064,1.3400000000000002e-05,2.1320290565490723,539,82244,82244,,
+0,540,0.05930205434560776,1.3400000000000002e-05,2.119649648666382,540,82420,82420,,
+0,541,0.05859034042805433,1.3400000000000002e-05,2.1921770572662354,541,82578,82578,,
+0,542,0.05858831014484167,1.3400000000000002e-05,2.1759490966796875,542,82706,82706,,
+0,543,0.05837958957999945,1.3400000000000002e-05,2.254324436187744,543,82849,82849,,
+0,544,0.08807045593857765,1.3600000000000002e-05,2.2930376529693604,544,83005,83005,,
+0,545,0.05784544628113508,1.3600000000000002e-05,2.2940404415130615,545,83177,83177,,
+0,546,0.0586369214579463,1.3600000000000002e-05,2.2902896404266357,546,83335,83335,,
+0,547,0.058754198253154755,1.3600000000000002e-05,2.3153324127197266,547,83529,83529,,
+0,548,0.058623019605875015,1.3600000000000002e-05,2.3247201442718506,548,83756,83756,,
+0,549,0.05838166456669569,1.3600000000000002e-05,2.306741952896118,549,83978,83978,,
+0,550,0.058588248677551746,1.3600000000000002e-05,2.239487648010254,550,84130,84130,,
+0,551,0.05884562153369188,1.3600000000000002e-05,2.165853261947632,551,84284,84284,,
+0,552,0.08909638691693544,1.3800000000000002e-05,2.202101945877075,552,84388,84388,,
+,,,,,553,,,2.1202940940856934,8.333587986270826
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2407_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2407_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..98f42ef2ea451df18374d2ca14eb2cf237947d47
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2407_full.txt
@@ -0,0 +1,630 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2407_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2407'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 3.964, val: n/a | iter time: 223.40 ms
+Epoch 1 | iter 2 step 0 | loss train: 3.885, val: n/a | iter time: 68.03 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.639, val: n/a | iter time: 60.18 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.711, val: n/a | iter time: 62.06 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.602, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.549, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.568, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.619, val: n/a | iter time: 165.76 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.488, val: n/a | iter time: 60.88 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.406, val: n/a | iter time: 59.89 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.407, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.384, val: n/a | iter time: 59.16 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.428, val: n/a | iter time: 59.35 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.402, val: n/a | iter time: 59.65 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.330, val: n/a | iter time: 59.35 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.194, val: n/a | iter time: 87.98 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.268, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.289, val: n/a | iter time: 59.07 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.318, val: n/a | iter time: 62.72 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.349, val: n/a | iter time: 59.94 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.396, val: n/a | iter time: 59.47 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.445, val: n/a | iter time: 59.03 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.396, val: n/a | iter time: 59.24 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.375, val: n/a | iter time: 88.39 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.463, val: n/a | iter time: 59.48 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.448, val: n/a | iter time: 59.27 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.459, val: n/a | iter time: 58.90 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.394, val: n/a | iter time: 59.09 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.378, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.422, val: n/a | iter time: 60.77 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.464, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.538, val: n/a | iter time: 87.76 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.489, val: n/a | iter time: 57.37 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.521, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.490, val: n/a | iter time: 59.03 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.485, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.441, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.430, val: n/a | iter time: 58.85 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.484, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.446, val: n/a | iter time: 87.87 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.430, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.402, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.431, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.438, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.435, val: n/a | iter time: 58.85 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.465, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.522, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.558, val: n/a | iter time: 87.93 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.537, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.549, val: n/a | iter time: 59.34 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.582, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.578, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.510, val: n/a | iter time: 60.83 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.372, val: n/a | iter time: 59.05 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.277, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.262, val: n/a | iter time: 87.44 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.280, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.225, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.167, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.163, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.225, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.297, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.287, val: n/a | iter time: 59.03 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.329, val: n/a | iter time: 87.49 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.354, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.456, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.465, val: n/a | iter time: 60.42 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.489, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.449, val: n/a | iter time: 58.83 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.440, val: n/a | iter time: 59.33 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.506, val: n/a | iter time: 59.13 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.517, val: n/a | iter time: 87.38 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.473, val: n/a | iter time: 60.24 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.393, val: n/a | iter time: 59.04 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.425, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.432, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.521, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.501, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.463, val: n/a | iter time: 58.35 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.423, val: n/a | iter time: 87.70 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.380, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.388, val: n/a | iter time: 59.09 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.395, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.427, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.358, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.417, val: n/a | iter time: 59.08 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.421, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.347, val: n/a | iter time: 87.86 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.388, val: n/a | iter time: 57.57 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.395, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.299, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.242, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.284, val: n/a | iter time: 59.07 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.265, val: n/a | iter time: 58.55 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.272, val: n/a | iter time: 61.08 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.439, val: n/a | iter time: 87.27 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.355, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.336, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.355, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.380, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.364, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.374, val: n/a | iter time: 59.09 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.333, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.202, val: n/a | iter time: 87.45 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.269, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.278, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.273, val: n/a | iter time: 59.07 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.262, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.363, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.288, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.263, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.260, val: n/a | iter time: 88.19 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.248, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.315, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.285, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.267, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.182, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.148, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.147, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.146, val: n/a | iter time: 87.41 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.160, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.130, val: n/a | iter time: 59.06 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.229, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.214, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.110, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.205, val: n/a | iter time: 58.55 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.291, val: n/a | iter time: 58.98 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.272, val: n/a | iter time: 87.44 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.232, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.171, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.143, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.214, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.216, val: n/a | iter time: 59.83 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.180, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.155, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.148, val: n/a | iter time: 87.49 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.212, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.244, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.199, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.160, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.204, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.160, val: n/a | iter time: 59.02 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.150, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.223, val: n/a | iter time: 87.03 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.171, val: n/a | iter time: 57.31 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.184, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.264, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.233, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.183, val: n/a | iter time: 59.09 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.223, val: n/a | iter time: 58.92 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.293, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.252, val: n/a | iter time: 87.37 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.277, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.320, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.253, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.219, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.240, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.274, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.214, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.234, val: n/a | iter time: 87.09 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.152, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.087, val: n/a | iter time: 60.00 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.094, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.073, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.149, val: n/a | iter time: 58.62 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.146, val: n/a | iter time: 58.97 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.098, val: n/a | iter time: 59.56 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.080, val: n/a | iter time: 88.15 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.078, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.032, val: n/a | iter time: 60.47 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.015, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.020, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 173 step 21 | loss train: 2.975, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 174 step 21 | loss train: 2.945, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 175 step 21 | loss train: 2.922, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 176 step 22 | loss train: 2.940, val: n/a | iter time: 87.25 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.036, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.081, val: n/a | iter time: 59.10 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.053, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.087, val: n/a | iter time: 58.62 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.024, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.001, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.040, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 184 step 23 | loss train: 2.966, val: n/a | iter time: 87.04 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 2.890, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 186 step 23 | loss train: 2.888, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 187 step 23 | loss train: 2.894, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 188 step 23 | loss train: 2.846, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 189 step 23 | loss train: 2.957, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 190 step 23 | loss train: 2.984, val: n/a | iter time: 63.35 ms
+Epoch 1 | iter 191 step 23 | loss train: 2.963, val: n/a | iter time: 58.99 ms
+Epoch 1 | iter 192 step 24 | loss train: 2.985, val: n/a | iter time: 87.34 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 2.980, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 194 step 24 | loss train: 2.912, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 195 step 24 | loss train: 2.936, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 196 step 24 | loss train: 2.989, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 197 step 24 | loss train: 2.902, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 198 step 24 | loss train: 2.808, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 199 step 24 | loss train: 2.788, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 200 step 25 | loss train: 2.769, val: n/a | iter time: 87.41 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: Blood.
+\end{quotation}
+
+It is important to note that the main goal of this task is not to evaluate the ability of LLMs to answer questions based solely on a fixed set of medical facts. Rather, it is designed to evaluate and compare the performance of LLMs in handling multiple diverse medical scenarios, such as those that are encountered in real-world applications. This task is particularly pertinent in the medical field, where the correct answer to a given
+
+iter 200: val loss 2.6911, val time: 2332.61 ms
+Epoch 1 | iter 201 step 25 | loss train: 2.759, val: 2.691 | iter time: 61.30 ms
+Epoch 1 | iter 202 step 25 | loss train: 2.767, val: 2.691 | iter time: 59.50 ms
+Epoch 1 | iter 203 step 25 | loss train: 2.712, val: 2.691 | iter time: 58.91 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.647, val: 2.691 | iter time: 58.91 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.653, val: 2.691 | iter time: 58.31 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.670, val: 2.691 | iter time: 59.24 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.667, val: 2.691 | iter time: 58.51 ms
+Epoch 1 | iter 208 step 26 | loss train: 2.741, val: 2.691 | iter time: 87.93 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 2.823, val: 2.691 | iter time: 57.82 ms
+Epoch 1 | iter 210 step 26 | loss train: 2.844, val: 2.691 | iter time: 59.15 ms
+Epoch 1 | iter 211 step 26 | loss train: 2.902, val: 2.691 | iter time: 58.49 ms
+Epoch 1 | iter 212 step 26 | loss train: 2.865, val: 2.691 | iter time: 58.95 ms
+Epoch 1 | iter 213 step 26 | loss train: 2.848, val: 2.691 | iter time: 58.70 ms
+Epoch 1 | iter 214 step 26 | loss train: 2.828, val: 2.691 | iter time: 59.11 ms
+Epoch 1 | iter 215 step 26 | loss train: 2.782, val: 2.691 | iter time: 58.75 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.689, val: 2.691 | iter time: 87.73 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.568, val: 2.691 | iter time: 57.89 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.571, val: 2.691 | iter time: 58.85 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.544, val: 2.691 | iter time: 58.75 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.561, val: 2.691 | iter time: 59.06 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.610, val: 2.691 | iter time: 59.16 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.637, val: 2.691 | iter time: 59.26 ms
+Epoch 1 | iter 223 step 27 | loss train: 2.693, val: 2.691 | iter time: 59.19 ms
+Epoch 1 | iter 224 step 28 | loss train: 2.764, val: 2.691 | iter time: 88.14 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 2.779, val: 2.691 | iter time: 58.26 ms
+Epoch 1 | iter 226 step 28 | loss train: 2.768, val: 2.691 | iter time: 59.52 ms
+Epoch 1 | iter 227 step 28 | loss train: 2.716, val: 2.691 | iter time: 59.49 ms
+Epoch 1 | iter 228 step 28 | loss train: 2.751, val: 2.691 | iter time: 59.13 ms
+Epoch 1 | iter 229 step 28 | loss train: 2.659, val: 2.691 | iter time: 59.07 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.628, val: 2.691 | iter time: 59.03 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.602, val: 2.691 | iter time: 59.02 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.534, val: 2.691 | iter time: 87.84 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.592, val: 2.691 | iter time: 58.37 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.550, val: 2.691 | iter time: 59.03 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.617, val: 2.691 | iter time: 58.67 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.610, val: 2.691 | iter time: 59.15 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.631, val: 2.691 | iter time: 59.18 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.625, val: 2.691 | iter time: 58.80 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.578, val: 2.691 | iter time: 59.24 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.604, val: 2.691 | iter time: 88.08 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.569, val: 2.691 | iter time: 58.57 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.585, val: 2.691 | iter time: 58.76 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.595, val: 2.691 | iter time: 58.92 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.605, val: 2.691 | iter time: 59.21 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.640, val: 2.691 | iter time: 59.11 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.636, val: 2.691 | iter time: 60.31 ms
+Epoch 1 | iter 247 step 30 | loss train: 2.671, val: 2.691 | iter time: 59.09 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.610, val: 2.691 | iter time: 88.04 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.578, val: 2.691 | iter time: 58.01 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.516, val: 2.691 | iter time: 59.31 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.457, val: 2.691 | iter time: 59.11 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.398, val: 2.691 | iter time: 59.30 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.412, val: 2.691 | iter time: 59.28 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.443, val: 2.691 | iter time: 59.23 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.429, val: 2.691 | iter time: 59.30 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.439, val: 2.691 | iter time: 87.65 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.445, val: 2.691 | iter time: 58.16 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.498, val: 2.691 | iter time: 59.25 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.438, val: 2.691 | iter time: 58.89 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.428, val: 2.691 | iter time: 59.56 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.360, val: 2.691 | iter time: 59.28 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.360, val: 2.691 | iter time: 59.27 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.354, val: 2.691 | iter time: 58.76 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.343, val: 2.691 | iter time: 87.88 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.314, val: 2.691 | iter time: 58.05 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.313, val: 2.691 | iter time: 58.89 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.350, val: 2.691 | iter time: 58.77 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.376, val: 2.691 | iter time: 59.22 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.431, val: 2.691 | iter time: 58.93 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.444, val: 2.691 | iter time: 58.93 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.440, val: 2.691 | iter time: 58.64 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.470, val: 2.691 | iter time: 88.50 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.485, val: 2.691 | iter time: 58.07 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.422, val: 2.691 | iter time: 59.00 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.381, val: 2.691 | iter time: 59.11 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.351, val: 2.691 | iter time: 60.00 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.303, val: 2.691 | iter time: 59.13 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.273, val: 2.691 | iter time: 59.44 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.300, val: 2.691 | iter time: 59.23 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.304, val: 2.691 | iter time: 87.78 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.333, val: 2.691 | iter time: 58.13 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.389, val: 2.691 | iter time: 58.94 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.377, val: 2.691 | iter time: 59.22 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.333, val: 2.691 | iter time: 59.33 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.357, val: 2.691 | iter time: 59.29 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.355, val: 2.691 | iter time: 59.08 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.311, val: 2.691 | iter time: 59.15 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.221, val: 2.691 | iter time: 88.61 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.155, val: 2.691 | iter time: 58.31 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.104, val: 2.691 | iter time: 58.88 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.135, val: 2.691 | iter time: 58.98 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.209, val: 2.691 | iter time: 59.03 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.189, val: 2.691 | iter time: 59.03 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.150, val: 2.691 | iter time: 59.39 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.181, val: 2.691 | iter time: 58.70 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.280, val: 2.691 | iter time: 87.66 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.290, val: 2.691 | iter time: 57.52 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.318, val: 2.691 | iter time: 59.29 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.341, val: 2.691 | iter time: 58.41 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.278, val: 2.691 | iter time: 58.39 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.242, val: 2.691 | iter time: 58.35 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.223, val: 2.691 | iter time: 59.12 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.144, val: 2.691 | iter time: 58.40 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.098, val: 2.691 | iter time: 87.55 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.076, val: 2.691 | iter time: 57.79 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.044, val: 2.691 | iter time: 59.31 ms
+Epoch 1 | iter 307 step 38 | loss train: 1.994, val: 2.691 | iter time: 58.72 ms
+Epoch 1 | iter 308 step 38 | loss train: 1.978, val: 2.691 | iter time: 58.27 ms
+Epoch 1 | iter 309 step 38 | loss train: 1.997, val: 2.691 | iter time: 58.58 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.025, val: 2.691 | iter time: 59.30 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.032, val: 2.691 | iter time: 58.52 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.036, val: 2.691 | iter time: 87.51 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.040, val: 2.691 | iter time: 57.98 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.000, val: 2.691 | iter time: 59.51 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.059, val: 2.691 | iter time: 58.46 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.106, val: 2.691 | iter time: 58.55 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.066, val: 2.691 | iter time: 58.20 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.031, val: 2.691 | iter time: 59.10 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.066, val: 2.691 | iter time: 58.16 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.060, val: 2.691 | iter time: 87.32 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.058, val: 2.691 | iter time: 57.65 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.088, val: 2.691 | iter time: 58.82 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.038, val: 2.691 | iter time: 58.23 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.017, val: 2.691 | iter time: 58.44 ms
+Epoch 1 | iter 325 step 40 | loss train: 1.989, val: 2.691 | iter time: 58.56 ms
+Epoch 1 | iter 326 step 40 | loss train: 1.944, val: 2.691 | iter time: 59.69 ms
+Epoch 1 | iter 327 step 40 | loss train: 1.901, val: 2.691 | iter time: 59.42 ms
+Epoch 1 | iter 328 step 41 | loss train: 1.912, val: 2.691 | iter time: 87.94 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 1.892, val: 2.691 | iter time: 58.53 ms
+Epoch 1 | iter 330 step 41 | loss train: 1.953, val: 2.691 | iter time: 59.22 ms
+Epoch 1 | iter 331 step 41 | loss train: 1.964, val: 2.691 | iter time: 59.50 ms
+Epoch 1 | iter 332 step 41 | loss train: 1.961, val: 2.691 | iter time: 59.13 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.055, val: 2.691 | iter time: 58.96 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.128, val: 2.691 | iter time: 59.07 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.141, val: 2.691 | iter time: 59.46 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.088, val: 2.691 | iter time: 87.80 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.109, val: 2.691 | iter time: 58.11 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.057, val: 2.691 | iter time: 58.84 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.016, val: 2.691 | iter time: 59.40 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.011, val: 2.691 | iter time: 58.87 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.025, val: 2.691 | iter time: 59.14 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.026, val: 2.691 | iter time: 58.57 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.054, val: 2.691 | iter time: 58.51 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.095, val: 2.691 | iter time: 89.57 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.064, val: 2.691 | iter time: 58.11 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.072, val: 2.691 | iter time: 58.64 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.134, val: 2.691 | iter time: 58.78 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.155, val: 2.691 | iter time: 58.92 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.057, val: 2.691 | iter time: 58.17 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.055, val: 2.691 | iter time: 58.40 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.064, val: 2.691 | iter time: 58.09 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.018, val: 2.691 | iter time: 87.28 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.076, val: 2.691 | iter time: 57.44 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.127, val: 2.691 | iter time: 58.05 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.055, val: 2.691 | iter time: 58.12 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.015, val: 2.691 | iter time: 58.78 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.026, val: 2.691 | iter time: 58.17 ms
+Epoch 1 | iter 358 step 44 | loss train: 1.998, val: 2.691 | iter time: 58.82 ms
+Epoch 1 | iter 359 step 44 | loss train: 1.956, val: 2.691 | iter time: 58.20 ms
+Epoch 1 | iter 360 step 45 | loss train: 1.954, val: 2.691 | iter time: 88.06 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 1.950, val: 2.691 | iter time: 57.36 ms
+Epoch 1 | iter 362 step 45 | loss train: 1.890, val: 2.691 | iter time: 58.34 ms
+Epoch 1 | iter 363 step 45 | loss train: 1.962, val: 2.691 | iter time: 58.34 ms
+Epoch 1 | iter 364 step 45 | loss train: 1.919, val: 2.691 | iter time: 58.69 ms
+Epoch 1 | iter 365 step 45 | loss train: 1.942, val: 2.691 | iter time: 58.18 ms
+Epoch 1 | iter 366 step 45 | loss train: 1.972, val: 2.691 | iter time: 57.94 ms
+Epoch 1 | iter 367 step 45 | loss train: 1.993, val: 2.691 | iter time: 58.23 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.011, val: 2.691 | iter time: 87.27 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 1.950, val: 2.691 | iter time: 57.52 ms
+Epoch 1 | iter 370 step 46 | loss train: 1.947, val: 2.691 | iter time: 58.20 ms
+Epoch 1 | iter 371 step 46 | loss train: 1.889, val: 2.691 | iter time: 57.78 ms
+Epoch 1 | iter 372 step 46 | loss train: 1.994, val: 2.691 | iter time: 58.40 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.018, val: 2.691 | iter time: 58.25 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.004, val: 2.691 | iter time: 58.13 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.014, val: 2.691 | iter time: 57.82 ms
+Epoch 1 | iter 376 step 47 | loss train: 1.989, val: 2.691 | iter time: 87.40 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 1.972, val: 2.691 | iter time: 58.16 ms
+Epoch 1 | iter 378 step 47 | loss train: 1.971, val: 2.691 | iter time: 58.68 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.020, val: 2.691 | iter time: 58.90 ms
+Epoch 1 | iter 380 step 47 | loss train: 1.974, val: 2.691 | iter time: 58.90 ms
+Epoch 1 | iter 381 step 47 | loss train: 1.956, val: 2.691 | iter time: 58.01 ms
+Epoch 1 | iter 382 step 47 | loss train: 1.933, val: 2.691 | iter time: 57.98 ms
+Epoch 1 | iter 383 step 47 | loss train: 1.955, val: 2.691 | iter time: 58.28 ms
+Epoch 1 | iter 384 step 48 | loss train: 1.983, val: 2.691 | iter time: 91.21 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.049, val: 2.691 | iter time: 57.58 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.058, val: 2.691 | iter time: 58.20 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.056, val: 2.691 | iter time: 57.98 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.068, val: 2.691 | iter time: 58.53 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.025, val: 2.691 | iter time: 58.00 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.031, val: 2.691 | iter time: 58.09 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.006, val: 2.691 | iter time: 58.09 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.020, val: 2.691 | iter time: 87.07 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.005, val: 2.691 | iter time: 57.24 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.018, val: 2.691 | iter time: 58.22 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.006, val: 2.691 | iter time: 58.30 ms
+Epoch 1 | iter 396 step 49 | loss train: 1.996, val: 2.691 | iter time: 58.60 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.021, val: 2.691 | iter time: 58.59 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.005, val: 2.691 | iter time: 58.28 ms
+Epoch 1 | iter 399 step 49 | loss train: 1.949, val: 2.691 | iter time: 58.29 ms
+Epoch 1 | iter 400 step 50 | loss train: 1.943, val: 2.691 | iter time: 87.37 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: blood
+
+iter 400: val loss 1.8608, val time: 399.33 ms
+Epoch 1 | iter 401 step 50 | loss train: 1.913, val: 1.861 | iter time: 61.48 ms
+Epoch 1 | iter 402 step 50 | loss train: 1.873, val: 1.861 | iter time: 59.16 ms
+Epoch 1 | iter 403 step 50 | loss train: 1.869, val: 1.861 | iter time: 58.47 ms
+Epoch 1 | iter 404 step 50 | loss train: 1.833, val: 1.861 | iter time: 58.73 ms
+Epoch 1 | iter 405 step 50 | loss train: 1.778, val: 1.861 | iter time: 58.17 ms
+Epoch 1 | iter 406 step 50 | loss train: 1.830, val: 1.861 | iter time: 58.46 ms
+Epoch 1 | iter 407 step 50 | loss train: 1.869, val: 1.861 | iter time: 57.90 ms
+Epoch 1 | iter 408 step 51 | loss train: 1.884, val: 1.861 | iter time: 88.19 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 1.947, val: 1.861 | iter time: 57.14 ms
+Epoch 1 | iter 410 step 51 | loss train: 1.973, val: 1.861 | iter time: 58.26 ms
+Epoch 1 | iter 411 step 51 | loss train: 1.971, val: 1.861 | iter time: 57.90 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.024, val: 1.861 | iter time: 58.87 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.054, val: 1.861 | iter time: 58.76 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.024, val: 1.861 | iter time: 58.31 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.036, val: 1.861 | iter time: 58.32 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.001, val: 1.861 | iter time: 87.62 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 1.992, val: 1.861 | iter time: 57.26 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.017, val: 1.861 | iter time: 58.11 ms
+Epoch 1 | iter 419 step 52 | loss train: 1.982, val: 1.861 | iter time: 58.35 ms
+Epoch 1 | iter 420 step 52 | loss train: 1.917, val: 1.861 | iter time: 58.83 ms
+Epoch 1 | iter 421 step 52 | loss train: 1.924, val: 1.861 | iter time: 58.30 ms
+Epoch 1 | iter 422 step 52 | loss train: 1.880, val: 1.861 | iter time: 58.62 ms
+Epoch 1 | iter 423 step 52 | loss train: 1.866, val: 1.861 | iter time: 58.31 ms
+Epoch 1 | iter 424 step 53 | loss train: 1.882, val: 1.861 | iter time: 87.58 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 1.884, val: 1.861 | iter time: 57.34 ms
+Epoch 1 | iter 426 step 53 | loss train: 1.878, val: 1.861 | iter time: 58.80 ms
+Epoch 1 | iter 427 step 53 | loss train: 1.928, val: 1.861 | iter time: 58.36 ms
+Epoch 1 | iter 428 step 53 | loss train: 1.950, val: 1.861 | iter time: 58.50 ms
+Epoch 1 | iter 429 step 53 | loss train: 1.988, val: 1.861 | iter time: 58.09 ms
+Epoch 1 | iter 430 step 53 | loss train: 1.998, val: 1.861 | iter time: 58.53 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.010, val: 1.861 | iter time: 58.40 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.003, val: 1.861 | iter time: 87.73 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.002, val: 1.861 | iter time: 57.84 ms
+Epoch 1 | iter 434 step 54 | loss train: 1.990, val: 1.861 | iter time: 58.33 ms
+Epoch 1 | iter 435 step 54 | loss train: 1.960, val: 1.861 | iter time: 58.07 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.003, val: 1.861 | iter time: 58.80 ms
+Epoch 1 | iter 437 step 54 | loss train: 1.973, val: 1.861 | iter time: 58.27 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.046, val: 1.861 | iter time: 58.27 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.043, val: 1.861 | iter time: 58.26 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.032, val: 1.861 | iter time: 87.85 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.026, val: 1.861 | iter time: 57.42 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.033, val: 1.861 | iter time: 58.00 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.063, val: 1.861 | iter time: 58.40 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.051, val: 1.861 | iter time: 58.72 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.096, val: 1.861 | iter time: 58.24 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.038, val: 1.861 | iter time: 58.06 ms
+Epoch 1 | iter 447 step 55 | loss train: 1.996, val: 1.861 | iter time: 58.30 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.003, val: 1.861 | iter time: 87.23 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 1.986, val: 1.861 | iter time: 57.54 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.000, val: 1.861 | iter time: 58.16 ms
+Epoch 1 | iter 451 step 56 | loss train: 1.992, val: 1.861 | iter time: 57.71 ms
+Epoch 1 | iter 452 step 56 | loss train: 1.968, val: 1.861 | iter time: 58.69 ms
+Epoch 1 | iter 453 step 56 | loss train: 1.906, val: 1.861 | iter time: 58.15 ms
+Epoch 1 | iter 454 step 56 | loss train: 1.947, val: 1.861 | iter time: 58.79 ms
+Epoch 1 | iter 455 step 56 | loss train: 1.958, val: 1.861 | iter time: 58.45 ms
+Epoch 1 | iter 456 step 57 | loss train: 1.926, val: 1.861 | iter time: 87.64 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 1.919, val: 1.861 | iter time: 57.48 ms
+Epoch 1 | iter 458 step 57 | loss train: 1.901, val: 1.861 | iter time: 58.26 ms
+Epoch 1 | iter 459 step 57 | loss train: 1.872, val: 1.861 | iter time: 57.91 ms
+Epoch 1 | iter 460 step 57 | loss train: 1.876, val: 1.861 | iter time: 58.63 ms
+Epoch 1 | iter 461 step 57 | loss train: 1.910, val: 1.861 | iter time: 58.34 ms
+Epoch 1 | iter 462 step 57 | loss train: 1.845, val: 1.861 | iter time: 58.40 ms
+Epoch 1 | iter 463 step 57 | loss train: 1.857, val: 1.861 | iter time: 58.22 ms
+Epoch 1 | iter 464 step 58 | loss train: 1.882, val: 1.861 | iter time: 87.36 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 1.874, val: 1.861 | iter time: 57.51 ms
+Epoch 1 | iter 466 step 58 | loss train: 1.839, val: 1.861 | iter time: 57.99 ms
+Epoch 1 | iter 467 step 58 | loss train: 1.854, val: 1.861 | iter time: 58.14 ms
+Epoch 1 | iter 468 step 58 | loss train: 1.853, val: 1.861 | iter time: 58.62 ms
+Epoch 1 | iter 469 step 58 | loss train: 1.870, val: 1.861 | iter time: 58.33 ms
+Epoch 1 | iter 470 step 58 | loss train: 1.920, val: 1.861 | iter time: 58.03 ms
+Epoch 1 | iter 471 step 58 | loss train: 1.923, val: 1.861 | iter time: 58.12 ms
+Epoch 1 | iter 472 step 59 | loss train: 1.973, val: 1.861 | iter time: 87.56 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 1.985, val: 1.861 | iter time: 57.05 ms
+Epoch 1 | iter 474 step 59 | loss train: 1.997, val: 1.861 | iter time: 60.34 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.000, val: 1.861 | iter time: 61.48 ms
+Epoch 1 | iter 476 step 59 | loss train: 1.991, val: 1.861 | iter time: 63.93 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.030, val: 1.861 | iter time: 60.22 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.044, val: 1.861 | iter time: 59.87 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.068, val: 1.861 | iter time: 60.23 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.065, val: 1.861 | iter time: 89.27 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.047, val: 1.861 | iter time: 61.85 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.076, val: 1.861 | iter time: 60.28 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.067, val: 1.861 | iter time: 58.99 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.077, val: 1.861 | iter time: 59.78 ms
+Epoch 1 | iter 485 step 60 | loss train: 1.985, val: 1.861 | iter time: 59.02 ms
+Epoch 1 | iter 486 step 60 | loss train: 1.935, val: 1.861 | iter time: 58.94 ms
+Epoch 1 | iter 487 step 60 | loss train: 1.917, val: 1.861 | iter time: 58.58 ms
+Epoch 1 | iter 488 step 61 | loss train: 1.877, val: 1.861 | iter time: 88.05 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 1.888, val: 1.861 | iter time: 57.51 ms
+Epoch 1 | iter 490 step 61 | loss train: 1.835, val: 1.861 | iter time: 58.28 ms
+Epoch 1 | iter 491 step 61 | loss train: 1.845, val: 1.861 | iter time: 58.33 ms
+Epoch 1 | iter 492 step 61 | loss train: 1.879, val: 1.861 | iter time: 58.86 ms
+Epoch 1 | iter 493 step 61 | loss train: 1.902, val: 1.861 | iter time: 59.09 ms
+Epoch 1 | iter 494 step 61 | loss train: 1.952, val: 1.861 | iter time: 58.98 ms
+Epoch 1 | iter 495 step 61 | loss train: 1.936, val: 1.861 | iter time: 58.78 ms
+Epoch 1 | iter 496 step 62 | loss train: 1.961, val: 1.861 | iter time: 87.60 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.004, val: 1.861 | iter time: 57.70 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.038, val: 1.861 | iter time: 58.46 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.012, val: 1.861 | iter time: 58.48 ms
+Epoch 1 | iter 500 step 62 | loss train: 1.940, val: 1.861 | iter time: 58.99 ms
+Epoch 1 | iter 501 step 62 | loss train: 1.936, val: 1.861 | iter time: 58.27 ms
+Epoch 1 | iter 502 step 62 | loss train: 1.899, val: 1.861 | iter time: 58.41 ms
+Epoch 1 | iter 503 step 62 | loss train: 1.899, val: 1.861 | iter time: 59.17 ms
+Epoch 1 | iter 504 step 63 | loss train: 1.889, val: 1.861 | iter time: 87.58 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 1.832, val: 1.861 | iter time: 57.57 ms
+Epoch 1 | iter 506 step 63 | loss train: 1.840, val: 1.861 | iter time: 58.31 ms
+Epoch 1 | iter 507 step 63 | loss train: 1.842, val: 1.861 | iter time: 58.65 ms
+Epoch 1 | iter 508 step 63 | loss train: 1.870, val: 1.861 | iter time: 58.67 ms
+Epoch 1 | iter 509 step 63 | loss train: 1.842, val: 1.861 | iter time: 58.09 ms
+Epoch 1 | iter 510 step 63 | loss train: 1.835, val: 1.861 | iter time: 57.99 ms
+Epoch 1 | iter 511 step 63 | loss train: 1.832, val: 1.861 | iter time: 58.38 ms
+Epoch 1 | iter 512 step 64 | loss train: 1.793, val: 1.861 | iter time: 87.64 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 1.809, val: 1.861 | iter time: 57.33 ms
+Epoch 1 | iter 514 step 64 | loss train: 1.799, val: 1.861 | iter time: 58.40 ms
+Epoch 1 | iter 515 step 64 | loss train: 1.794, val: 1.861 | iter time: 58.25 ms
+Epoch 1 | iter 516 step 64 | loss train: 1.784, val: 1.861 | iter time: 58.75 ms
+Epoch 1 | iter 517 step 64 | loss train: 1.823, val: 1.861 | iter time: 58.35 ms
+Epoch 1 | iter 518 step 64 | loss train: 1.855, val: 1.861 | iter time: 58.50 ms
+Epoch 1 | iter 519 step 64 | loss train: 1.858, val: 1.861 | iter time: 58.80 ms
+Epoch 1 | iter 520 step 65 | loss train: 1.892, val: 1.861 | iter time: 87.94 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 1.882, val: 1.861 | iter time: 57.39 ms
+Epoch 1 | iter 522 step 65 | loss train: 1.862, val: 1.861 | iter time: 58.35 ms
+Epoch 1 | iter 523 step 65 | loss train: 1.890, val: 1.861 | iter time: 58.53 ms
+Epoch 1 | iter 524 step 65 | loss train: 1.915, val: 1.861 | iter time: 58.88 ms
+Epoch 1 | iter 525 step 65 | loss train: 1.843, val: 1.861 | iter time: 58.13 ms
+Epoch 1 | iter 526 step 65 | loss train: 1.794, val: 1.861 | iter time: 58.40 ms
+Epoch 1 | iter 527 step 65 | loss train: 1.799, val: 1.861 | iter time: 58.51 ms
+Epoch 1 | iter 528 step 66 | loss train: 1.825, val: 1.861 | iter time: 87.45 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 1.864, val: 1.861 | iter time: 57.19 ms
+Epoch 1 | iter 530 step 66 | loss train: 1.876, val: 1.861 | iter time: 57.81 ms
+Epoch 1 | iter 531 step 66 | loss train: 1.836, val: 1.861 | iter time: 57.87 ms
+Epoch 1 | iter 532 step 66 | loss train: 1.843, val: 1.861 | iter time: 58.66 ms
+Epoch 1 | iter 533 step 66 | loss train: 1.875, val: 1.861 | iter time: 57.92 ms
+Epoch 1 | iter 534 step 66 | loss train: 1.951, val: 1.861 | iter time: 57.78 ms
+Epoch 1 | iter 535 step 66 | loss train: 1.942, val: 1.861 | iter time: 58.14 ms
+Epoch 1 | iter 536 step 67 | loss train: 1.898, val: 1.861 | iter time: 87.33 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 1.858, val: 1.861 | iter time: 57.23 ms
+Epoch 1 | iter 538 step 67 | loss train: 1.831, val: 1.861 | iter time: 57.73 ms
+Epoch 1 | iter 539 step 67 | loss train: 1.863, val: 1.861 | iter time: 57.85 ms
+Epoch 1 | iter 540 step 67 | loss train: 1.838, val: 1.861 | iter time: 58.49 ms
+Epoch 1 | iter 541 step 67 | loss train: 1.869, val: 1.861 | iter time: 58.02 ms
+Epoch 1 | iter 542 step 67 | loss train: 1.840, val: 1.861 | iter time: 57.97 ms
+Epoch 1 | iter 543 step 67 | loss train: 1.899, val: 1.861 | iter time: 57.81 ms
+Epoch 1 | iter 544 step 68 | loss train: 1.910, val: 1.861 | iter time: 87.50 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 1.923, val: 1.861 | iter time: 57.05 ms
+Epoch 1 | iter 546 step 68 | loss train: 1.920, val: 1.861 | iter time: 58.02 ms
+Epoch 1 | iter 547 step 68 | loss train: 1.915, val: 1.861 | iter time: 58.26 ms
+Epoch 1 | iter 548 step 68 | loss train: 1.952, val: 1.861 | iter time: 57.67 ms
+Epoch 1 | iter 549 step 68 | loss train: 1.941, val: 1.861 | iter time: 57.65 ms
+Epoch 1 | iter 550 step 68 | loss train: 1.907, val: 1.861 | iter time: 57.79 ms
+Epoch 1 | iter 551 step 68 | loss train: 1.866, val: 1.861 | iter time: 58.15 ms
+Epoch 1 | iter 552 step 69 | loss train: 1.917, val: 1.861 | iter time: 87.38 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.83 s
+| - Tok/sec : 3206.29 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 1.790 | val ppl: 5.992
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2408_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2408_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..231c4cc2e364a35002c9c0f73e3d32ae64ebfa73
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2408_full.txt
@@ -0,0 +1,633 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2408_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2408'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 3.980, val: n/a | iter time: 219.38 ms
+Epoch 1 | iter 2 step 0 | loss train: 3.925, val: n/a | iter time: 66.20 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.671, val: n/a | iter time: 59.21 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.728, val: n/a | iter time: 61.14 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.618, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.587, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.593, val: n/a | iter time: 57.33 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.642, val: n/a | iter time: 162.89 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.521, val: n/a | iter time: 59.69 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.439, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.437, val: n/a | iter time: 57.76 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.440, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.486, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.452, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.396, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.264, val: n/a | iter time: 87.09 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.334, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.371, val: n/a | iter time: 58.04 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.411, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.429, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.473, val: n/a | iter time: 58.55 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.524, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.468, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.454, val: n/a | iter time: 87.06 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.531, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.491, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.509, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.456, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.431, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.479, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.528, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.602, val: n/a | iter time: 87.41 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.562, val: n/a | iter time: 57.00 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.596, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.546, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.533, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.511, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.489, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.538, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.498, val: n/a | iter time: 87.39 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.487, val: n/a | iter time: 57.23 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.463, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.508, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.522, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.516, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.549, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.619, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.646, val: n/a | iter time: 87.38 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.626, val: n/a | iter time: 57.25 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.636, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.659, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.639, val: n/a | iter time: 60.29 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.571, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.423, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.324, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.330, val: n/a | iter time: 86.92 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.339, val: n/a | iter time: 57.06 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.282, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.223, val: n/a | iter time: 60.33 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.233, val: n/a | iter time: 59.09 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.308, val: n/a | iter time: 59.32 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.379, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.364, val: n/a | iter time: 59.67 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.396, val: n/a | iter time: 87.44 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.417, val: n/a | iter time: 57.87 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.526, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.545, val: n/a | iter time: 58.80 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.568, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.524, val: n/a | iter time: 59.63 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.517, val: n/a | iter time: 59.21 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.578, val: n/a | iter time: 59.08 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.567, val: n/a | iter time: 87.32 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.537, val: n/a | iter time: 59.18 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.461, val: n/a | iter time: 58.90 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.479, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.485, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.564, val: n/a | iter time: 59.31 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.560, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.528, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.509, val: n/a | iter time: 87.68 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.457, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.454, val: n/a | iter time: 59.29 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.465, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.473, val: n/a | iter time: 59.23 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.400, val: n/a | iter time: 59.06 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.433, val: n/a | iter time: 59.44 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.436, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.356, val: n/a | iter time: 88.85 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.402, val: n/a | iter time: 57.81 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.404, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.325, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.300, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.342, val: n/a | iter time: 59.90 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.338, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.344, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.517, val: n/a | iter time: 87.19 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.431, val: n/a | iter time: 60.38 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.429, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.434, val: n/a | iter time: 58.86 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.438, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.405, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.416, val: n/a | iter time: 59.83 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.369, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.251, val: n/a | iter time: 87.57 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.321, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.336, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.323, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.320, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.433, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.367, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.351, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.335, val: n/a | iter time: 87.74 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.318, val: n/a | iter time: 57.17 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.395, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.376, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.371, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.303, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.270, val: n/a | iter time: 59.43 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.262, val: n/a | iter time: 58.62 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.266, val: n/a | iter time: 87.32 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.273, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.230, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.338, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.320, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.206, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.292, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.373, val: n/a | iter time: 59.02 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.345, val: n/a | iter time: 87.06 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.318, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.250, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.215, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.285, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.288, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.255, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.247, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.238, val: n/a | iter time: 87.17 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.311, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.351, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.304, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.255, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.312, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.263, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.256, val: n/a | iter time: 60.46 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.340, val: n/a | iter time: 86.95 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.272, val: n/a | iter time: 56.93 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.292, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.356, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.336, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.274, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.328, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.378, val: n/a | iter time: 57.93 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.327, val: n/a | iter time: 86.40 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.353, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.385, val: n/a | iter time: 57.72 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.332, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.277, val: n/a | iter time: 62.24 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.298, val: n/a | iter time: 58.55 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.332, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.274, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.304, val: n/a | iter time: 86.53 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.219, val: n/a | iter time: 57.64 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.161, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.178, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.178, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.270, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.253, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.207, val: n/a | iter time: 58.01 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.175, val: n/a | iter time: 87.24 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.180, val: n/a | iter time: 57.21 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.124, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.099, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.093, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.042, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.030, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.011, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.045, val: n/a | iter time: 87.10 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.155, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.224, val: n/a | iter time: 59.06 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.188, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.244, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.179, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.157, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.207, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.131, val: n/a | iter time: 86.71 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.044, val: n/a | iter time: 57.52 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.013, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.030, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 188 step 23 | loss train: 2.963, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.076, val: n/a | iter time: 59.98 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.094, val: n/a | iter time: 59.23 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.068, val: n/a | iter time: 58.88 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.080, val: n/a | iter time: 88.09 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.077, val: n/a | iter time: 59.08 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.028, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.047, val: n/a | iter time: 59.28 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.096, val: n/a | iter time: 59.29 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.007, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 198 step 24 | loss train: 2.936, val: n/a | iter time: 59.50 ms
+Epoch 1 | iter 199 step 24 | loss train: 2.912, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 200 step 25 | loss train: 2.900, val: n/a | iter time: 88.09 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: The lungs.
+Question: Why does marijuana cause paranoia?
+Answer: Marijuana smoke can cause serious eye blinking and eye twitching.
+Question: How much oxygen is in your body?
+Answer: Your body naturally processes and distributes oxygen to your organs and tissues.
+Question: How can you tell if someone has a brain tumor?
+Answer: Tumor cells produce blurry or distorted images, which
+
+iter 200: val loss 2.8063, val time: 2318.71 ms
+Epoch 1 | iter 201 step 25 | loss train: 2.898, val: 2.806 | iter time: 62.96 ms
+Epoch 1 | iter 202 step 25 | loss train: 2.912, val: 2.806 | iter time: 59.39 ms
+Epoch 1 | iter 203 step 25 | loss train: 2.845, val: 2.806 | iter time: 58.52 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.797, val: 2.806 | iter time: 58.57 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.787, val: 2.806 | iter time: 57.77 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.779, val: 2.806 | iter time: 58.58 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.790, val: 2.806 | iter time: 57.99 ms
+Epoch 1 | iter 208 step 26 | loss train: 2.873, val: 2.806 | iter time: 87.44 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 2.936, val: 2.806 | iter time: 57.30 ms
+Epoch 1 | iter 210 step 26 | loss train: 2.943, val: 2.806 | iter time: 58.51 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.003, val: 2.806 | iter time: 58.05 ms
+Epoch 1 | iter 212 step 26 | loss train: 2.959, val: 2.806 | iter time: 58.60 ms
+Epoch 1 | iter 213 step 26 | loss train: 2.949, val: 2.806 | iter time: 58.08 ms
+Epoch 1 | iter 214 step 26 | loss train: 2.932, val: 2.806 | iter time: 58.57 ms
+Epoch 1 | iter 215 step 26 | loss train: 2.865, val: 2.806 | iter time: 58.28 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.765, val: 2.806 | iter time: 87.28 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.670, val: 2.806 | iter time: 57.29 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.681, val: 2.806 | iter time: 58.43 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.671, val: 2.806 | iter time: 58.32 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.690, val: 2.806 | iter time: 58.17 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.739, val: 2.806 | iter time: 61.05 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.764, val: 2.806 | iter time: 59.59 ms
+Epoch 1 | iter 223 step 27 | loss train: 2.837, val: 2.806 | iter time: 58.59 ms
+Epoch 1 | iter 224 step 28 | loss train: 2.930, val: 2.806 | iter time: 87.70 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 2.928, val: 2.806 | iter time: 57.59 ms
+Epoch 1 | iter 226 step 28 | loss train: 2.911, val: 2.806 | iter time: 58.72 ms
+Epoch 1 | iter 227 step 28 | loss train: 2.864, val: 2.806 | iter time: 58.85 ms
+Epoch 1 | iter 228 step 28 | loss train: 2.902, val: 2.806 | iter time: 58.52 ms
+Epoch 1 | iter 229 step 28 | loss train: 2.826, val: 2.806 | iter time: 58.38 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.804, val: 2.806 | iter time: 58.43 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.799, val: 2.806 | iter time: 58.24 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.708, val: 2.806 | iter time: 87.27 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.770, val: 2.806 | iter time: 57.67 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.725, val: 2.806 | iter time: 58.24 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.775, val: 2.806 | iter time: 57.92 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.753, val: 2.806 | iter time: 58.61 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.767, val: 2.806 | iter time: 58.33 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.773, val: 2.806 | iter time: 58.10 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.703, val: 2.806 | iter time: 58.27 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.733, val: 2.806 | iter time: 87.48 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.700, val: 2.806 | iter time: 57.66 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.720, val: 2.806 | iter time: 58.11 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.740, val: 2.806 | iter time: 58.79 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.763, val: 2.806 | iter time: 59.25 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.782, val: 2.806 | iter time: 58.58 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.754, val: 2.806 | iter time: 58.21 ms
+Epoch 1 | iter 247 step 30 | loss train: 2.810, val: 2.806 | iter time: 58.29 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.757, val: 2.806 | iter time: 87.44 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.719, val: 2.806 | iter time: 57.27 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.672, val: 2.806 | iter time: 58.40 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.613, val: 2.806 | iter time: 58.53 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.574, val: 2.806 | iter time: 58.53 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.623, val: 2.806 | iter time: 58.41 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.669, val: 2.806 | iter time: 58.48 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.632, val: 2.806 | iter time: 58.07 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.650, val: 2.806 | iter time: 87.14 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.666, val: 2.806 | iter time: 57.74 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.717, val: 2.806 | iter time: 58.45 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.650, val: 2.806 | iter time: 58.03 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.647, val: 2.806 | iter time: 58.44 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.577, val: 2.806 | iter time: 58.39 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.588, val: 2.806 | iter time: 58.46 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.588, val: 2.806 | iter time: 58.06 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.579, val: 2.806 | iter time: 87.48 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.557, val: 2.806 | iter time: 57.41 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.573, val: 2.806 | iter time: 58.48 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.640, val: 2.806 | iter time: 58.29 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.662, val: 2.806 | iter time: 58.68 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.724, val: 2.806 | iter time: 58.31 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.734, val: 2.806 | iter time: 58.37 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.753, val: 2.806 | iter time: 58.19 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.792, val: 2.806 | iter time: 87.88 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.821, val: 2.806 | iter time: 57.61 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.759, val: 2.806 | iter time: 58.33 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.706, val: 2.806 | iter time: 58.54 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.653, val: 2.806 | iter time: 59.33 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.595, val: 2.806 | iter time: 58.96 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.569, val: 2.806 | iter time: 59.34 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.575, val: 2.806 | iter time: 59.35 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.576, val: 2.806 | iter time: 87.75 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.589, val: 2.806 | iter time: 57.70 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.633, val: 2.806 | iter time: 58.22 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.629, val: 2.806 | iter time: 58.50 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.618, val: 2.806 | iter time: 58.41 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.659, val: 2.806 | iter time: 58.34 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.646, val: 2.806 | iter time: 58.19 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.639, val: 2.806 | iter time: 58.37 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.533, val: 2.806 | iter time: 87.84 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.470, val: 2.806 | iter time: 57.50 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.428, val: 2.806 | iter time: 58.27 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.453, val: 2.806 | iter time: 58.42 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.523, val: 2.806 | iter time: 58.42 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.494, val: 2.806 | iter time: 58.40 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.458, val: 2.806 | iter time: 58.52 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.475, val: 2.806 | iter time: 59.04 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.599, val: 2.806 | iter time: 88.18 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.617, val: 2.806 | iter time: 57.83 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.641, val: 2.806 | iter time: 58.65 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.670, val: 2.806 | iter time: 58.58 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.606, val: 2.806 | iter time: 58.33 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.572, val: 2.806 | iter time: 58.38 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.565, val: 2.806 | iter time: 58.26 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.491, val: 2.806 | iter time: 58.21 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.441, val: 2.806 | iter time: 87.66 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.410, val: 2.806 | iter time: 57.88 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.358, val: 2.806 | iter time: 58.41 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.336, val: 2.806 | iter time: 58.57 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.324, val: 2.806 | iter time: 58.35 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.324, val: 2.806 | iter time: 58.39 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.337, val: 2.806 | iter time: 58.56 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.340, val: 2.806 | iter time: 61.41 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.346, val: 2.806 | iter time: 87.27 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.350, val: 2.806 | iter time: 57.83 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.356, val: 2.806 | iter time: 58.46 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.396, val: 2.806 | iter time: 58.43 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.434, val: 2.806 | iter time: 58.51 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.416, val: 2.806 | iter time: 58.10 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.386, val: 2.806 | iter time: 58.27 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.412, val: 2.806 | iter time: 58.12 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.408, val: 2.806 | iter time: 87.25 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.422, val: 2.806 | iter time: 57.54 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.421, val: 2.806 | iter time: 58.05 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.357, val: 2.806 | iter time: 58.15 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.343, val: 2.806 | iter time: 58.50 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.311, val: 2.806 | iter time: 59.15 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.302, val: 2.806 | iter time: 58.87 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.268, val: 2.806 | iter time: 58.29 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.287, val: 2.806 | iter time: 87.38 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.258, val: 2.806 | iter time: 57.46 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.331, val: 2.806 | iter time: 58.37 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.363, val: 2.806 | iter time: 58.21 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.337, val: 2.806 | iter time: 58.61 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.417, val: 2.806 | iter time: 58.03 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.461, val: 2.806 | iter time: 58.16 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.494, val: 2.806 | iter time: 57.84 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.419, val: 2.806 | iter time: 86.61 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.424, val: 2.806 | iter time: 57.12 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.386, val: 2.806 | iter time: 57.66 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.346, val: 2.806 | iter time: 57.48 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.354, val: 2.806 | iter time: 57.75 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.382, val: 2.806 | iter time: 57.73 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.377, val: 2.806 | iter time: 57.42 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.385, val: 2.806 | iter time: 57.57 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.439, val: 2.806 | iter time: 86.37 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.424, val: 2.806 | iter time: 57.11 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.407, val: 2.806 | iter time: 57.75 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.460, val: 2.806 | iter time: 57.70 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.489, val: 2.806 | iter time: 57.91 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.379, val: 2.806 | iter time: 57.56 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.383, val: 2.806 | iter time: 57.81 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.409, val: 2.806 | iter time: 57.58 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.370, val: 2.806 | iter time: 86.34 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.438, val: 2.806 | iter time: 56.53 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.496, val: 2.806 | iter time: 57.34 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.411, val: 2.806 | iter time: 57.42 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.365, val: 2.806 | iter time: 57.85 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.382, val: 2.806 | iter time: 57.53 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.345, val: 2.806 | iter time: 58.47 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.288, val: 2.806 | iter time: 57.86 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.291, val: 2.806 | iter time: 87.31 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.292, val: 2.806 | iter time: 56.77 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.226, val: 2.806 | iter time: 57.64 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.315, val: 2.806 | iter time: 57.65 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.283, val: 2.806 | iter time: 57.65 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.320, val: 2.806 | iter time: 57.62 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.348, val: 2.806 | iter time: 58.35 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.355, val: 2.806 | iter time: 57.82 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.361, val: 2.806 | iter time: 86.38 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.310, val: 2.806 | iter time: 56.68 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.309, val: 2.806 | iter time: 57.95 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.249, val: 2.806 | iter time: 57.28 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.330, val: 2.806 | iter time: 57.51 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.350, val: 2.806 | iter time: 57.88 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.329, val: 2.806 | iter time: 57.60 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.352, val: 2.806 | iter time: 57.34 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.308, val: 2.806 | iter time: 86.17 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.249, val: 2.806 | iter time: 57.12 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.267, val: 2.806 | iter time: 57.68 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.302, val: 2.806 | iter time: 57.83 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.261, val: 2.806 | iter time: 57.96 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.222, val: 2.806 | iter time: 57.46 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.228, val: 2.806 | iter time: 57.53 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.226, val: 2.806 | iter time: 57.82 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.267, val: 2.806 | iter time: 86.74 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.340, val: 2.806 | iter time: 56.99 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.326, val: 2.806 | iter time: 57.86 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.324, val: 2.806 | iter time: 57.57 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.334, val: 2.806 | iter time: 57.85 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.316, val: 2.806 | iter time: 57.48 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.294, val: 2.806 | iter time: 57.71 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.292, val: 2.806 | iter time: 57.75 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.320, val: 2.806 | iter time: 86.31 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.309, val: 2.806 | iter time: 56.79 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.333, val: 2.806 | iter time: 57.89 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.324, val: 2.806 | iter time: 57.58 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.310, val: 2.806 | iter time: 57.53 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.314, val: 2.806 | iter time: 58.05 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.312, val: 2.806 | iter time: 57.84 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.250, val: 2.806 | iter time: 57.81 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.223, val: 2.806 | iter time: 86.58 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: blood
+
+iter 400: val loss 2.1233, val time: 398.21 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.188, val: 2.123 | iter time: 61.02 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.145, val: 2.123 | iter time: 58.65 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.138, val: 2.123 | iter time: 58.32 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.117, val: 2.123 | iter time: 57.92 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.066, val: 2.123 | iter time: 57.75 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.118, val: 2.123 | iter time: 58.02 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.152, val: 2.123 | iter time: 57.49 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.173, val: 2.123 | iter time: 87.56 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.237, val: 2.123 | iter time: 57.54 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.263, val: 2.123 | iter time: 57.72 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.256, val: 2.123 | iter time: 57.48 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.293, val: 2.123 | iter time: 57.93 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.307, val: 2.123 | iter time: 58.21 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.266, val: 2.123 | iter time: 57.97 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.279, val: 2.123 | iter time: 57.88 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.250, val: 2.123 | iter time: 86.89 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.241, val: 2.123 | iter time: 56.93 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.247, val: 2.123 | iter time: 57.73 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.213, val: 2.123 | iter time: 57.88 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.155, val: 2.123 | iter time: 57.95 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.180, val: 2.123 | iter time: 57.74 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.131, val: 2.123 | iter time: 57.88 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.111, val: 2.123 | iter time: 57.98 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.105, val: 2.123 | iter time: 86.89 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.113, val: 2.123 | iter time: 56.97 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.122, val: 2.123 | iter time: 57.53 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.181, val: 2.123 | iter time: 57.94 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.196, val: 2.123 | iter time: 57.59 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.219, val: 2.123 | iter time: 57.83 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.230, val: 2.123 | iter time: 58.23 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.232, val: 2.123 | iter time: 59.55 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.232, val: 2.123 | iter time: 87.01 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.232, val: 2.123 | iter time: 57.41 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.219, val: 2.123 | iter time: 57.87 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.197, val: 2.123 | iter time: 57.71 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.238, val: 2.123 | iter time: 58.16 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.214, val: 2.123 | iter time: 57.91 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.285, val: 2.123 | iter time: 57.96 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.307, val: 2.123 | iter time: 58.04 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.296, val: 2.123 | iter time: 86.70 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.288, val: 2.123 | iter time: 56.99 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.295, val: 2.123 | iter time: 57.69 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.304, val: 2.123 | iter time: 58.02 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.312, val: 2.123 | iter time: 57.89 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.366, val: 2.123 | iter time: 57.99 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.303, val: 2.123 | iter time: 57.94 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.249, val: 2.123 | iter time: 58.00 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.255, val: 2.123 | iter time: 86.56 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.224, val: 2.123 | iter time: 57.10 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.235, val: 2.123 | iter time: 57.78 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.222, val: 2.123 | iter time: 57.53 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.179, val: 2.123 | iter time: 58.12 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.114, val: 2.123 | iter time: 58.48 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.154, val: 2.123 | iter time: 59.37 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.156, val: 2.123 | iter time: 58.11 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.123, val: 2.123 | iter time: 86.70 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.118, val: 2.123 | iter time: 57.29 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.087, val: 2.123 | iter time: 58.81 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.069, val: 2.123 | iter time: 57.88 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.081, val: 2.123 | iter time: 58.25 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.102, val: 2.123 | iter time: 58.20 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.033, val: 2.123 | iter time: 58.81 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.044, val: 2.123 | iter time: 58.12 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.046, val: 2.123 | iter time: 86.84 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.040, val: 2.123 | iter time: 58.49 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.006, val: 2.123 | iter time: 58.48 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.014, val: 2.123 | iter time: 58.09 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.018, val: 2.123 | iter time: 58.17 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.026, val: 2.123 | iter time: 58.09 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.088, val: 2.123 | iter time: 58.41 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.083, val: 2.123 | iter time: 57.97 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.160, val: 2.123 | iter time: 87.16 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.172, val: 2.123 | iter time: 57.05 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.199, val: 2.123 | iter time: 58.65 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.186, val: 2.123 | iter time: 58.11 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.171, val: 2.123 | iter time: 58.18 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.205, val: 2.123 | iter time: 58.06 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.221, val: 2.123 | iter time: 58.87 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.247, val: 2.123 | iter time: 58.27 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.235, val: 2.123 | iter time: 87.10 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.201, val: 2.123 | iter time: 57.50 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.211, val: 2.123 | iter time: 58.98 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.210, val: 2.123 | iter time: 57.93 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.200, val: 2.123 | iter time: 58.22 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.113, val: 2.123 | iter time: 58.19 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.056, val: 2.123 | iter time: 58.40 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.058, val: 2.123 | iter time: 58.02 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.015, val: 2.123 | iter time: 87.17 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.039, val: 2.123 | iter time: 57.36 ms
+Epoch 1 | iter 490 step 61 | loss train: 1.993, val: 2.123 | iter time: 58.74 ms
+Epoch 1 | iter 491 step 61 | loss train: 1.994, val: 2.123 | iter time: 58.15 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.049, val: 2.123 | iter time: 58.18 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.067, val: 2.123 | iter time: 58.33 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.113, val: 2.123 | iter time: 58.38 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.076, val: 2.123 | iter time: 58.06 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.112, val: 2.123 | iter time: 86.73 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.148, val: 2.123 | iter time: 57.54 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.185, val: 2.123 | iter time: 58.86 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.152, val: 2.123 | iter time: 58.05 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.060, val: 2.123 | iter time: 58.23 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.069, val: 2.123 | iter time: 58.04 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.030, val: 2.123 | iter time: 58.70 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.025, val: 2.123 | iter time: 58.77 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.006, val: 2.123 | iter time: 87.01 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 1.945, val: 2.123 | iter time: 57.29 ms
+Epoch 1 | iter 506 step 63 | loss train: 1.935, val: 2.123 | iter time: 58.63 ms
+Epoch 1 | iter 507 step 63 | loss train: 1.952, val: 2.123 | iter time: 57.94 ms
+Epoch 1 | iter 508 step 63 | loss train: 1.995, val: 2.123 | iter time: 57.95 ms
+Epoch 1 | iter 509 step 63 | loss train: 1.955, val: 2.123 | iter time: 57.91 ms
+Epoch 1 | iter 510 step 63 | loss train: 1.940, val: 2.123 | iter time: 58.42 ms
+Epoch 1 | iter 511 step 63 | loss train: 1.930, val: 2.123 | iter time: 57.99 ms
+Epoch 1 | iter 512 step 64 | loss train: 1.885, val: 2.123 | iter time: 86.91 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 1.908, val: 2.123 | iter time: 57.12 ms
+Epoch 1 | iter 514 step 64 | loss train: 1.901, val: 2.123 | iter time: 58.66 ms
+Epoch 1 | iter 515 step 64 | loss train: 1.894, val: 2.123 | iter time: 58.07 ms
+Epoch 1 | iter 516 step 64 | loss train: 1.879, val: 2.123 | iter time: 58.00 ms
+Epoch 1 | iter 517 step 64 | loss train: 1.925, val: 2.123 | iter time: 58.15 ms
+Epoch 1 | iter 518 step 64 | loss train: 1.957, val: 2.123 | iter time: 58.98 ms
+Epoch 1 | iter 519 step 64 | loss train: 1.965, val: 2.123 | iter time: 58.32 ms
+Epoch 1 | iter 520 step 65 | loss train: 1.993, val: 2.123 | iter time: 90.57 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 1.983, val: 2.123 | iter time: 57.65 ms
+Epoch 1 | iter 522 step 65 | loss train: 1.967, val: 2.123 | iter time: 59.11 ms
+Epoch 1 | iter 523 step 65 | loss train: 1.983, val: 2.123 | iter time: 58.64 ms
+Epoch 1 | iter 524 step 65 | loss train: 1.997, val: 2.123 | iter time: 58.71 ms
+Epoch 1 | iter 525 step 65 | loss train: 1.919, val: 2.123 | iter time: 58.04 ms
+Epoch 1 | iter 526 step 65 | loss train: 1.874, val: 2.123 | iter time: 58.88 ms
+Epoch 1 | iter 527 step 65 | loss train: 1.875, val: 2.123 | iter time: 58.21 ms
+Epoch 1 | iter 528 step 66 | loss train: 1.908, val: 2.123 | iter time: 86.72 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 1.935, val: 2.123 | iter time: 57.09 ms
+Epoch 1 | iter 530 step 66 | loss train: 1.955, val: 2.123 | iter time: 58.44 ms
+Epoch 1 | iter 531 step 66 | loss train: 1.919, val: 2.123 | iter time: 58.03 ms
+Epoch 1 | iter 532 step 66 | loss train: 1.933, val: 2.123 | iter time: 58.27 ms
+Epoch 1 | iter 533 step 66 | loss train: 1.958, val: 2.123 | iter time: 58.10 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.025, val: 2.123 | iter time: 58.65 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.027, val: 2.123 | iter time: 58.21 ms
+Epoch 1 | iter 536 step 67 | loss train: 1.963, val: 2.123 | iter time: 87.10 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 1.930, val: 2.123 | iter time: 57.29 ms
+Epoch 1 | iter 538 step 67 | loss train: 1.893, val: 2.123 | iter time: 58.50 ms
+Epoch 1 | iter 539 step 67 | loss train: 1.920, val: 2.123 | iter time: 57.95 ms
+Epoch 1 | iter 540 step 67 | loss train: 1.886, val: 2.123 | iter time: 58.27 ms
+Epoch 1 | iter 541 step 67 | loss train: 1.920, val: 2.123 | iter time: 58.36 ms
+Epoch 1 | iter 542 step 67 | loss train: 1.900, val: 2.123 | iter time: 58.77 ms
+Epoch 1 | iter 543 step 67 | loss train: 1.960, val: 2.123 | iter time: 57.88 ms
+Epoch 1 | iter 544 step 68 | loss train: 1.992, val: 2.123 | iter time: 87.21 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 1.999, val: 2.123 | iter time: 57.24 ms
+Epoch 1 | iter 546 step 68 | loss train: 1.994, val: 2.123 | iter time: 58.82 ms
+Epoch 1 | iter 547 step 68 | loss train: 1.996, val: 2.123 | iter time: 58.37 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.027, val: 2.123 | iter time: 57.92 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.016, val: 2.123 | iter time: 57.94 ms
+Epoch 1 | iter 550 step 68 | loss train: 1.978, val: 2.123 | iter time: 58.58 ms
+Epoch 1 | iter 551 step 68 | loss train: 1.934, val: 2.123 | iter time: 58.17 ms
+Epoch 1 | iter 552 step 69 | loss train: 1.971, val: 2.123 | iter time: 87.60 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.49 s
+| - Tok/sec : 3234.86 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 1.835 | val ppl: 6.266
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2409_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2409_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7d1563e09eff97fdba6db57d5696007f9b1562df
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2409_full.txt
@@ -0,0 +1,636 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2409_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2409'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 4.084, val: n/a | iter time: 214.79 ms
+Epoch 1 | iter 2 step 0 | loss train: 4.032, val: n/a | iter time: 68.44 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.794, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.858, val: n/a | iter time: 61.14 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.735, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.677, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.696, val: n/a | iter time: 57.42 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.746, val: n/a | iter time: 162.90 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.614, val: n/a | iter time: 59.64 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.530, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.534, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.524, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.567, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.552, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.470, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.333, val: n/a | iter time: 87.34 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.418, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.441, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.465, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.485, val: n/a | iter time: 59.82 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.519, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.568, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.522, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.504, val: n/a | iter time: 87.25 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.574, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.552, val: n/a | iter time: 58.80 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.550, val: n/a | iter time: 59.04 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.491, val: n/a | iter time: 58.99 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.486, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.557, val: n/a | iter time: 61.00 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.589, val: n/a | iter time: 60.12 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.664, val: n/a | iter time: 98.75 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.627, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.653, val: n/a | iter time: 59.34 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.624, val: n/a | iter time: 60.00 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.620, val: n/a | iter time: 59.85 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.573, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.538, val: n/a | iter time: 71.33 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.612, val: n/a | iter time: 60.21 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.560, val: n/a | iter time: 88.55 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.550, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.531, val: n/a | iter time: 58.97 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.563, val: n/a | iter time: 58.90 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.562, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.578, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.602, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.668, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.718, val: n/a | iter time: 87.47 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.694, val: n/a | iter time: 57.11 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.686, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.720, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.710, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.636, val: n/a | iter time: 59.23 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.492, val: n/a | iter time: 60.03 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.386, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.379, val: n/a | iter time: 87.65 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.396, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.362, val: n/a | iter time: 58.97 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.306, val: n/a | iter time: 58.82 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.316, val: n/a | iter time: 59.12 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.398, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.487, val: n/a | iter time: 59.02 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.474, val: n/a | iter time: 59.11 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.519, val: n/a | iter time: 87.28 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.516, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.610, val: n/a | iter time: 59.27 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.610, val: n/a | iter time: 58.72 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.625, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.586, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.542, val: n/a | iter time: 59.62 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.615, val: n/a | iter time: 59.06 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.600, val: n/a | iter time: 87.19 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.582, val: n/a | iter time: 57.81 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.510, val: n/a | iter time: 59.18 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.539, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.557, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.625, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.638, val: n/a | iter time: 59.38 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.604, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.583, val: n/a | iter time: 87.35 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.527, val: n/a | iter time: 57.33 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.541, val: n/a | iter time: 59.55 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.562, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.562, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.478, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.495, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.487, val: n/a | iter time: 57.72 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.396, val: n/a | iter time: 87.45 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.444, val: n/a | iter time: 57.38 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.433, val: n/a | iter time: 59.84 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.349, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.329, val: n/a | iter time: 57.49 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.384, val: n/a | iter time: 57.83 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.407, val: n/a | iter time: 57.27 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.416, val: n/a | iter time: 57.18 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.586, val: n/a | iter time: 85.89 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.491, val: n/a | iter time: 56.35 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.490, val: n/a | iter time: 57.44 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.491, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.489, val: n/a | iter time: 57.16 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.452, val: n/a | iter time: 57.23 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.447, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.395, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.271, val: n/a | iter time: 86.31 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.364, val: n/a | iter time: 56.48 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.359, val: n/a | iter time: 57.23 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.342, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.348, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.443, val: n/a | iter time: 57.26 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.373, val: n/a | iter time: 57.26 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.363, val: n/a | iter time: 57.05 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.358, val: n/a | iter time: 86.93 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.320, val: n/a | iter time: 56.14 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.425, val: n/a | iter time: 57.24 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.420, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.421, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.368, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.338, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.337, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.345, val: n/a | iter time: 86.34 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.359, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.300, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.407, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.365, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.253, val: n/a | iter time: 59.41 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.338, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.409, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.379, val: n/a | iter time: 86.57 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.361, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.295, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.245, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.316, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.322, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.298, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.293, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.288, val: n/a | iter time: 86.55 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.354, val: n/a | iter time: 56.93 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.400, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.355, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.311, val: n/a | iter time: 57.15 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.368, val: n/a | iter time: 57.44 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.313, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.312, val: n/a | iter time: 57.33 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.377, val: n/a | iter time: 86.04 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.316, val: n/a | iter time: 56.44 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.329, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.414, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.396, val: n/a | iter time: 57.24 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.323, val: n/a | iter time: 57.49 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.376, val: n/a | iter time: 57.39 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.420, val: n/a | iter time: 57.36 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.376, val: n/a | iter time: 86.23 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.407, val: n/a | iter time: 56.85 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.444, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.373, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.322, val: n/a | iter time: 57.11 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.360, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.381, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.320, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.364, val: n/a | iter time: 87.01 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.272, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.201, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.219, val: n/a | iter time: 57.54 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.209, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.283, val: n/a | iter time: 57.21 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.273, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.228, val: n/a | iter time: 57.40 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.185, val: n/a | iter time: 86.09 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.185, val: n/a | iter time: 56.79 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.135, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.124, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.112, val: n/a | iter time: 57.52 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.074, val: n/a | iter time: 57.38 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.061, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.041, val: n/a | iter time: 57.63 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.079, val: n/a | iter time: 86.29 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.172, val: n/a | iter time: 57.25 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.220, val: n/a | iter time: 57.83 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.168, val: n/a | iter time: 57.63 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.234, val: n/a | iter time: 57.41 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.167, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.139, val: n/a | iter time: 57.93 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.181, val: n/a | iter time: 57.48 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.095, val: n/a | iter time: 86.43 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.022, val: n/a | iter time: 57.41 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.009, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.034, val: n/a | iter time: 57.26 ms
+Epoch 1 | iter 188 step 23 | loss train: 2.966, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.077, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.102, val: n/a | iter time: 57.42 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.069, val: n/a | iter time: 57.36 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.102, val: n/a | iter time: 86.35 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.099, val: n/a | iter time: 57.06 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.045, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.066, val: n/a | iter time: 57.24 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.129, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.045, val: n/a | iter time: 57.39 ms
+Epoch 1 | iter 198 step 24 | loss train: 2.978, val: n/a | iter time: 57.46 ms
+Epoch 1 | iter 199 step 24 | loss train: 2.964, val: n/a | iter time: 57.38 ms
+Epoch 1 | iter 200 step 25 | loss train: 2.945, val: n/a | iter time: 86.27 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: Blood\\
+\texttt{aaa}\\
+\begin{table}[htbp]
+ \centering
+ \begin{tabular}{lcc}
+ \toprule
+ Prompt & Correct & Incorrect \\
+ \midrule
+ What is the name of the player who scored a goal in the 5th minute of the Upsall Hills football game? & 2 & 1 \\
+ What is the name of the player who scored a goal
+
+iter 200: val loss 2.8378, val time: 2259.65 ms
+Epoch 1 | iter 201 step 25 | loss train: 2.949, val: 2.838 | iter time: 60.16 ms
+Epoch 1 | iter 202 step 25 | loss train: 2.985, val: 2.838 | iter time: 58.42 ms
+Epoch 1 | iter 203 step 25 | loss train: 2.916, val: 2.838 | iter time: 57.82 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.860, val: 2.838 | iter time: 57.74 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.852, val: 2.838 | iter time: 57.25 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.827, val: 2.838 | iter time: 58.04 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.843, val: 2.838 | iter time: 57.42 ms
+Epoch 1 | iter 208 step 26 | loss train: 2.916, val: 2.838 | iter time: 86.81 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 2.982, val: 2.838 | iter time: 56.92 ms
+Epoch 1 | iter 210 step 26 | loss train: 2.974, val: 2.838 | iter time: 58.10 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.031, val: 2.838 | iter time: 57.57 ms
+Epoch 1 | iter 212 step 26 | loss train: 2.980, val: 2.838 | iter time: 57.92 ms
+Epoch 1 | iter 213 step 26 | loss train: 2.974, val: 2.838 | iter time: 57.60 ms
+Epoch 1 | iter 214 step 26 | loss train: 2.971, val: 2.838 | iter time: 58.07 ms
+Epoch 1 | iter 215 step 26 | loss train: 2.914, val: 2.838 | iter time: 57.69 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.815, val: 2.838 | iter time: 89.32 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.695, val: 2.838 | iter time: 56.88 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.701, val: 2.838 | iter time: 57.96 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.686, val: 2.838 | iter time: 57.68 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.712, val: 2.838 | iter time: 57.51 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.748, val: 2.838 | iter time: 57.77 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.775, val: 2.838 | iter time: 57.70 ms
+Epoch 1 | iter 223 step 27 | loss train: 2.844, val: 2.838 | iter time: 57.77 ms
+Epoch 1 | iter 224 step 28 | loss train: 2.920, val: 2.838 | iter time: 86.67 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 2.942, val: 2.838 | iter time: 56.96 ms
+Epoch 1 | iter 226 step 28 | loss train: 2.931, val: 2.838 | iter time: 58.22 ms
+Epoch 1 | iter 227 step 28 | loss train: 2.893, val: 2.838 | iter time: 58.26 ms
+Epoch 1 | iter 228 step 28 | loss train: 2.910, val: 2.838 | iter time: 57.89 ms
+Epoch 1 | iter 229 step 28 | loss train: 2.832, val: 2.838 | iter time: 57.71 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.815, val: 2.838 | iter time: 57.66 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.798, val: 2.838 | iter time: 57.64 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.745, val: 2.838 | iter time: 86.51 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.803, val: 2.838 | iter time: 56.86 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.771, val: 2.838 | iter time: 57.58 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.821, val: 2.838 | iter time: 57.31 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.828, val: 2.838 | iter time: 57.79 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.858, val: 2.838 | iter time: 57.64 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.858, val: 2.838 | iter time: 57.46 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.798, val: 2.838 | iter time: 57.72 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.812, val: 2.838 | iter time: 86.59 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.765, val: 2.838 | iter time: 56.97 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.778, val: 2.838 | iter time: 57.33 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.801, val: 2.838 | iter time: 57.52 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.813, val: 2.838 | iter time: 57.72 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.828, val: 2.838 | iter time: 57.63 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.801, val: 2.838 | iter time: 57.42 ms
+Epoch 1 | iter 247 step 30 | loss train: 2.839, val: 2.838 | iter time: 57.70 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.793, val: 2.838 | iter time: 86.71 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.777, val: 2.838 | iter time: 56.63 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.724, val: 2.838 | iter time: 58.05 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.648, val: 2.838 | iter time: 57.78 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.600, val: 2.838 | iter time: 57.84 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.639, val: 2.838 | iter time: 57.69 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.681, val: 2.838 | iter time: 57.74 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.663, val: 2.838 | iter time: 57.28 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.662, val: 2.838 | iter time: 87.13 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.670, val: 2.838 | iter time: 56.94 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.716, val: 2.838 | iter time: 58.26 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.665, val: 2.838 | iter time: 57.70 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.671, val: 2.838 | iter time: 58.02 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.606, val: 2.838 | iter time: 57.98 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.614, val: 2.838 | iter time: 57.93 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.610, val: 2.838 | iter time: 57.74 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.604, val: 2.838 | iter time: 86.93 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.580, val: 2.838 | iter time: 57.00 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.605, val: 2.838 | iter time: 57.94 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.659, val: 2.838 | iter time: 57.97 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.660, val: 2.838 | iter time: 58.20 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.724, val: 2.838 | iter time: 57.80 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.729, val: 2.838 | iter time: 57.93 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.756, val: 2.838 | iter time: 57.73 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.794, val: 2.838 | iter time: 87.33 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.817, val: 2.838 | iter time: 56.96 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.744, val: 2.838 | iter time: 58.06 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.703, val: 2.838 | iter time: 58.11 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.678, val: 2.838 | iter time: 58.40 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.613, val: 2.838 | iter time: 57.63 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.584, val: 2.838 | iter time: 57.79 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.586, val: 2.838 | iter time: 57.87 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.594, val: 2.838 | iter time: 86.25 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.615, val: 2.838 | iter time: 56.92 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.676, val: 2.838 | iter time: 57.41 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.662, val: 2.838 | iter time: 57.85 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.635, val: 2.838 | iter time: 57.88 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.676, val: 2.838 | iter time: 57.67 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.683, val: 2.838 | iter time: 57.49 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.671, val: 2.838 | iter time: 57.74 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.565, val: 2.838 | iter time: 87.24 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.514, val: 2.838 | iter time: 56.81 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.455, val: 2.838 | iter time: 57.57 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.501, val: 2.838 | iter time: 57.67 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.582, val: 2.838 | iter time: 57.68 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.547, val: 2.838 | iter time: 60.16 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.505, val: 2.838 | iter time: 58.19 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.530, val: 2.838 | iter time: 58.03 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.668, val: 2.838 | iter time: 86.80 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.667, val: 2.838 | iter time: 56.75 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.704, val: 2.838 | iter time: 57.86 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.716, val: 2.838 | iter time: 57.83 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.656, val: 2.838 | iter time: 57.84 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.638, val: 2.838 | iter time: 57.64 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.631, val: 2.838 | iter time: 57.80 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.547, val: 2.838 | iter time: 57.96 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.497, val: 2.838 | iter time: 87.26 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.471, val: 2.838 | iter time: 57.22 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.415, val: 2.838 | iter time: 57.87 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.391, val: 2.838 | iter time: 57.89 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.370, val: 2.838 | iter time: 57.65 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.371, val: 2.838 | iter time: 57.95 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.387, val: 2.838 | iter time: 58.08 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.388, val: 2.838 | iter time: 57.90 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.386, val: 2.838 | iter time: 86.71 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.390, val: 2.838 | iter time: 57.36 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.403, val: 2.838 | iter time: 58.19 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.450, val: 2.838 | iter time: 58.05 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.488, val: 2.838 | iter time: 58.01 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.461, val: 2.838 | iter time: 57.68 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.441, val: 2.838 | iter time: 57.97 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.479, val: 2.838 | iter time: 57.71 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.488, val: 2.838 | iter time: 87.06 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.497, val: 2.838 | iter time: 57.24 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.484, val: 2.838 | iter time: 57.64 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.422, val: 2.838 | iter time: 57.56 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.418, val: 2.838 | iter time: 57.96 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.384, val: 2.838 | iter time: 58.05 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.349, val: 2.838 | iter time: 57.99 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.298, val: 2.838 | iter time: 57.64 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.288, val: 2.838 | iter time: 90.41 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.261, val: 2.838 | iter time: 57.04 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.345, val: 2.838 | iter time: 57.87 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.366, val: 2.838 | iter time: 57.84 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.337, val: 2.838 | iter time: 58.01 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.427, val: 2.838 | iter time: 57.93 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.497, val: 2.838 | iter time: 57.60 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.556, val: 2.838 | iter time: 57.47 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.495, val: 2.838 | iter time: 86.24 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.504, val: 2.838 | iter time: 57.18 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.457, val: 2.838 | iter time: 57.57 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.424, val: 2.838 | iter time: 57.47 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.443, val: 2.838 | iter time: 57.66 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.464, val: 2.838 | iter time: 57.70 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.451, val: 2.838 | iter time: 57.73 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.441, val: 2.838 | iter time: 57.82 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.481, val: 2.838 | iter time: 86.70 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.467, val: 2.838 | iter time: 56.87 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.463, val: 2.838 | iter time: 57.88 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.523, val: 2.838 | iter time: 57.76 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.543, val: 2.838 | iter time: 57.91 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.442, val: 2.838 | iter time: 57.62 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.445, val: 2.838 | iter time: 57.81 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.470, val: 2.838 | iter time: 57.63 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.451, val: 2.838 | iter time: 86.19 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.514, val: 2.838 | iter time: 56.56 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.569, val: 2.838 | iter time: 57.66 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.475, val: 2.838 | iter time: 57.50 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.416, val: 2.838 | iter time: 57.89 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.430, val: 2.838 | iter time: 57.55 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.384, val: 2.838 | iter time: 58.17 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.330, val: 2.838 | iter time: 57.39 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.318, val: 2.838 | iter time: 86.93 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.328, val: 2.838 | iter time: 56.56 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.257, val: 2.838 | iter time: 57.41 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.332, val: 2.838 | iter time: 57.53 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.303, val: 2.838 | iter time: 57.35 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.335, val: 2.838 | iter time: 57.33 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.364, val: 2.838 | iter time: 60.57 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.371, val: 2.838 | iter time: 58.87 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.386, val: 2.838 | iter time: 86.71 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.322, val: 2.838 | iter time: 57.00 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.316, val: 2.838 | iter time: 57.98 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.258, val: 2.838 | iter time: 57.88 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.337, val: 2.838 | iter time: 57.84 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.342, val: 2.838 | iter time: 58.13 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.325, val: 2.838 | iter time: 58.19 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.342, val: 2.838 | iter time: 57.89 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.304, val: 2.838 | iter time: 86.76 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.263, val: 2.838 | iter time: 57.36 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.258, val: 2.838 | iter time: 57.89 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.321, val: 2.838 | iter time: 58.06 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.292, val: 2.838 | iter time: 57.99 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.259, val: 2.838 | iter time: 57.55 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.255, val: 2.838 | iter time: 57.65 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.259, val: 2.838 | iter time: 57.84 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.303, val: 2.838 | iter time: 86.86 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.358, val: 2.838 | iter time: 56.85 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.365, val: 2.838 | iter time: 57.48 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.343, val: 2.838 | iter time: 57.67 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.347, val: 2.838 | iter time: 57.70 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.337, val: 2.838 | iter time: 57.51 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.330, val: 2.838 | iter time: 57.34 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.312, val: 2.838 | iter time: 57.48 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.331, val: 2.838 | iter time: 86.25 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.321, val: 2.838 | iter time: 56.66 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.347, val: 2.838 | iter time: 57.58 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.340, val: 2.838 | iter time: 57.46 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.322, val: 2.838 | iter time: 57.23 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.323, val: 2.838 | iter time: 57.79 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.295, val: 2.838 | iter time: 57.61 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.239, val: 2.838 | iter time: 57.59 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.219, val: 2.838 | iter time: 86.31 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: the skin
+
+iter 400: val loss 2.1437, val time: 412.77 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.179, val: 2.144 | iter time: 61.34 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.119, val: 2.144 | iter time: 58.87 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.113, val: 2.144 | iter time: 59.05 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.082, val: 2.144 | iter time: 57.98 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.033, val: 2.144 | iter time: 57.70 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.112, val: 2.144 | iter time: 57.67 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.138, val: 2.144 | iter time: 57.44 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.154, val: 2.144 | iter time: 87.46 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.238, val: 2.144 | iter time: 56.63 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.283, val: 2.144 | iter time: 57.58 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.286, val: 2.144 | iter time: 57.45 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.329, val: 2.144 | iter time: 57.90 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.341, val: 2.144 | iter time: 58.29 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.291, val: 2.144 | iter time: 57.91 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.296, val: 2.144 | iter time: 58.14 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.286, val: 2.144 | iter time: 86.90 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.261, val: 2.144 | iter time: 56.84 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.260, val: 2.144 | iter time: 57.60 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.217, val: 2.144 | iter time: 57.72 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.163, val: 2.144 | iter time: 57.73 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.183, val: 2.144 | iter time: 57.75 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.137, val: 2.144 | iter time: 57.82 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.125, val: 2.144 | iter time: 58.03 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.102, val: 2.144 | iter time: 86.65 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.113, val: 2.144 | iter time: 56.81 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.108, val: 2.144 | iter time: 57.38 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.160, val: 2.144 | iter time: 57.81 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.171, val: 2.144 | iter time: 57.47 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.196, val: 2.144 | iter time: 57.85 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.203, val: 2.144 | iter time: 58.14 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.219, val: 2.144 | iter time: 57.95 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.209, val: 2.144 | iter time: 87.08 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.187, val: 2.144 | iter time: 57.19 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.185, val: 2.144 | iter time: 57.91 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.163, val: 2.144 | iter time: 57.68 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.202, val: 2.144 | iter time: 57.98 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.179, val: 2.144 | iter time: 57.64 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.241, val: 2.144 | iter time: 57.70 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.248, val: 2.144 | iter time: 57.88 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.242, val: 2.144 | iter time: 86.78 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.256, val: 2.144 | iter time: 57.02 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.254, val: 2.144 | iter time: 57.46 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.281, val: 2.144 | iter time: 57.88 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.279, val: 2.144 | iter time: 57.99 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.326, val: 2.144 | iter time: 57.81 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.282, val: 2.144 | iter time: 57.49 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.241, val: 2.144 | iter time: 57.69 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.239, val: 2.144 | iter time: 86.47 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.205, val: 2.144 | iter time: 57.62 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.223, val: 2.144 | iter time: 57.86 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.203, val: 2.144 | iter time: 57.68 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.169, val: 2.144 | iter time: 58.53 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.108, val: 2.144 | iter time: 58.81 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.138, val: 2.144 | iter time: 59.02 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.132, val: 2.144 | iter time: 58.15 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.106, val: 2.144 | iter time: 86.72 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.096, val: 2.144 | iter time: 57.02 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.088, val: 2.144 | iter time: 57.86 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.057, val: 2.144 | iter time: 57.43 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.077, val: 2.144 | iter time: 57.72 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.104, val: 2.144 | iter time: 57.90 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.051, val: 2.144 | iter time: 57.83 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.067, val: 2.144 | iter time: 58.57 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.078, val: 2.144 | iter time: 87.04 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.076, val: 2.144 | iter time: 58.06 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.021, val: 2.144 | iter time: 58.32 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.032, val: 2.144 | iter time: 58.53 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.023, val: 2.144 | iter time: 58.47 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.023, val: 2.144 | iter time: 58.40 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.064, val: 2.144 | iter time: 58.02 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.062, val: 2.144 | iter time: 58.22 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.124, val: 2.144 | iter time: 87.43 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.133, val: 2.144 | iter time: 57.23 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.151, val: 2.144 | iter time: 58.60 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.148, val: 2.144 | iter time: 58.57 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.135, val: 2.144 | iter time: 58.51 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.163, val: 2.144 | iter time: 58.47 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.183, val: 2.144 | iter time: 58.58 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.210, val: 2.144 | iter time: 58.56 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.211, val: 2.144 | iter time: 87.57 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.178, val: 2.144 | iter time: 61.08 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.203, val: 2.144 | iter time: 59.25 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.204, val: 2.144 | iter time: 58.67 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.196, val: 2.144 | iter time: 58.81 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.134, val: 2.144 | iter time: 59.07 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.069, val: 2.144 | iter time: 58.56 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.037, val: 2.144 | iter time: 58.51 ms
+Epoch 1 | iter 488 step 61 | loss train: 1.993, val: 2.144 | iter time: 87.60 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.006, val: 2.144 | iter time: 57.69 ms
+Epoch 1 | iter 490 step 61 | loss train: 1.953, val: 2.144 | iter time: 58.48 ms
+Epoch 1 | iter 491 step 61 | loss train: 1.963, val: 2.144 | iter time: 58.54 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.006, val: 2.144 | iter time: 58.39 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.012, val: 2.144 | iter time: 58.50 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.072, val: 2.144 | iter time: 58.07 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.062, val: 2.144 | iter time: 57.82 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.093, val: 2.144 | iter time: 86.43 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.146, val: 2.144 | iter time: 57.13 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.195, val: 2.144 | iter time: 58.21 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.151, val: 2.144 | iter time: 58.46 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.087, val: 2.144 | iter time: 58.29 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.098, val: 2.144 | iter time: 57.80 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.067, val: 2.144 | iter time: 57.96 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.053, val: 2.144 | iter time: 58.47 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.031, val: 2.144 | iter time: 86.76 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 1.978, val: 2.144 | iter time: 57.39 ms
+Epoch 1 | iter 506 step 63 | loss train: 1.968, val: 2.144 | iter time: 57.99 ms
+Epoch 1 | iter 507 step 63 | loss train: 1.980, val: 2.144 | iter time: 57.87 ms
+Epoch 1 | iter 508 step 63 | loss train: 1.998, val: 2.144 | iter time: 57.67 ms
+Epoch 1 | iter 509 step 63 | loss train: 1.969, val: 2.144 | iter time: 57.62 ms
+Epoch 1 | iter 510 step 63 | loss train: 1.943, val: 2.144 | iter time: 57.46 ms
+Epoch 1 | iter 511 step 63 | loss train: 1.954, val: 2.144 | iter time: 57.69 ms
+Epoch 1 | iter 512 step 64 | loss train: 1.920, val: 2.144 | iter time: 86.78 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 1.939, val: 2.144 | iter time: 56.75 ms
+Epoch 1 | iter 514 step 64 | loss train: 1.932, val: 2.144 | iter time: 57.97 ms
+Epoch 1 | iter 515 step 64 | loss train: 1.941, val: 2.144 | iter time: 57.87 ms
+Epoch 1 | iter 516 step 64 | loss train: 1.949, val: 2.144 | iter time: 58.07 ms
+Epoch 1 | iter 517 step 64 | loss train: 1.985, val: 2.144 | iter time: 57.94 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.028, val: 2.144 | iter time: 58.05 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.026, val: 2.144 | iter time: 58.14 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.047, val: 2.144 | iter time: 86.80 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.035, val: 2.144 | iter time: 56.77 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.019, val: 2.144 | iter time: 57.90 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.027, val: 2.144 | iter time: 57.90 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.029, val: 2.144 | iter time: 58.01 ms
+Epoch 1 | iter 525 step 65 | loss train: 1.950, val: 2.144 | iter time: 57.55 ms
+Epoch 1 | iter 526 step 65 | loss train: 1.901, val: 2.144 | iter time: 57.94 ms
+Epoch 1 | iter 527 step 65 | loss train: 1.908, val: 2.144 | iter time: 57.80 ms
+Epoch 1 | iter 528 step 66 | loss train: 1.952, val: 2.144 | iter time: 86.37 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 1.988, val: 2.144 | iter time: 56.80 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.009, val: 2.144 | iter time: 57.54 ms
+Epoch 1 | iter 531 step 66 | loss train: 1.982, val: 2.144 | iter time: 57.88 ms
+Epoch 1 | iter 532 step 66 | loss train: 1.991, val: 2.144 | iter time: 58.16 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.027, val: 2.144 | iter time: 57.95 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.093, val: 2.144 | iter time: 58.79 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.089, val: 2.144 | iter time: 58.42 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.023, val: 2.144 | iter time: 87.22 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 1.984, val: 2.144 | iter time: 57.18 ms
+Epoch 1 | iter 538 step 67 | loss train: 1.948, val: 2.144 | iter time: 57.71 ms
+Epoch 1 | iter 539 step 67 | loss train: 1.970, val: 2.144 | iter time: 57.82 ms
+Epoch 1 | iter 540 step 67 | loss train: 1.950, val: 2.144 | iter time: 58.17 ms
+Epoch 1 | iter 541 step 67 | loss train: 1.981, val: 2.144 | iter time: 58.21 ms
+Epoch 1 | iter 542 step 67 | loss train: 1.966, val: 2.144 | iter time: 58.10 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.032, val: 2.144 | iter time: 57.84 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.058, val: 2.144 | iter time: 86.98 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.068, val: 2.144 | iter time: 57.11 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.060, val: 2.144 | iter time: 58.09 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.053, val: 2.144 | iter time: 58.28 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.075, val: 2.144 | iter time: 57.65 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.061, val: 2.144 | iter time: 57.70 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.013, val: 2.144 | iter time: 57.90 ms
+Epoch 1 | iter 551 step 68 | loss train: 1.960, val: 2.144 | iter time: 57.91 ms
+Epoch 1 | iter 552 step 69 | loss train: 1.997, val: 2.144 | iter time: 87.20 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.26 s
+| - Tok/sec : 3253.83 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 1.918 | val ppl: 6.810
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2410_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2410_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..37c9dd6fc0805f60dc95f647b9555c93feef8e92
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2410_full.txt
@@ -0,0 +1,640 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2410_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2410'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 3.795, val: n/a | iter time: 227.70 ms
+Epoch 1 | iter 2 step 0 | loss train: 3.897, val: n/a | iter time: 69.07 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.673, val: n/a | iter time: 60.15 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.729, val: n/a | iter time: 61.97 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.616, val: n/a | iter time: 58.04 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.528, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.539, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.572, val: n/a | iter time: 164.20 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.466, val: n/a | iter time: 60.29 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.373, val: n/a | iter time: 59.46 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.377, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.353, val: n/a | iter time: 59.20 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.394, val: n/a | iter time: 59.11 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.401, val: n/a | iter time: 59.22 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.334, val: n/a | iter time: 59.29 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.220, val: n/a | iter time: 88.25 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.286, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.307, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.305, val: n/a | iter time: 59.24 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.329, val: n/a | iter time: 59.76 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.357, val: n/a | iter time: 59.42 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.396, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.356, val: n/a | iter time: 59.12 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.358, val: n/a | iter time: 91.11 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.435, val: n/a | iter time: 61.96 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.416, val: n/a | iter time: 62.33 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.437, val: n/a | iter time: 60.32 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.384, val: n/a | iter time: 59.86 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.370, val: n/a | iter time: 59.24 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.412, val: n/a | iter time: 60.60 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.455, val: n/a | iter time: 59.78 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.511, val: n/a | iter time: 88.44 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.487, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.516, val: n/a | iter time: 59.35 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.489, val: n/a | iter time: 59.34 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.489, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.468, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.478, val: n/a | iter time: 59.21 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.534, val: n/a | iter time: 58.80 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.496, val: n/a | iter time: 88.30 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.479, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.439, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.471, val: n/a | iter time: 58.72 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.469, val: n/a | iter time: 58.72 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.464, val: n/a | iter time: 59.51 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.452, val: n/a | iter time: 58.80 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.494, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.512, val: n/a | iter time: 88.36 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.482, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.482, val: n/a | iter time: 59.38 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.508, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.506, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.442, val: n/a | iter time: 59.01 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.334, val: n/a | iter time: 59.42 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.249, val: n/a | iter time: 58.89 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.251, val: n/a | iter time: 87.59 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.270, val: n/a | iter time: 57.99 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.232, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.181, val: n/a | iter time: 59.17 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.164, val: n/a | iter time: 59.57 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.233, val: n/a | iter time: 59.53 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.309, val: n/a | iter time: 59.03 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.303, val: n/a | iter time: 59.49 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.338, val: n/a | iter time: 87.66 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.351, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.426, val: n/a | iter time: 59.25 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.409, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.422, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.391, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.358, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.418, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.398, val: n/a | iter time: 87.00 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.391, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.347, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.389, val: n/a | iter time: 57.84 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.415, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.481, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.483, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.453, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.448, val: n/a | iter time: 87.16 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.369, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.386, val: n/a | iter time: 59.06 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.413, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.430, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.361, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.403, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.411, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.346, val: n/a | iter time: 87.54 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.387, val: n/a | iter time: 57.49 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.343, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.252, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.218, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.271, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.287, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.277, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.432, val: n/a | iter time: 86.76 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.357, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.376, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.390, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.382, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.351, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.337, val: n/a | iter time: 61.75 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.304, val: n/a | iter time: 59.12 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.189, val: n/a | iter time: 87.61 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.280, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.273, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.253, val: n/a | iter time: 59.22 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.273, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.351, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.287, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.268, val: n/a | iter time: 57.86 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.258, val: n/a | iter time: 87.58 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.221, val: n/a | iter time: 56.87 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.301, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.295, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.281, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.226, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.176, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.171, val: n/a | iter time: 58.25 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.187, val: n/a | iter time: 86.81 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.179, val: n/a | iter time: 57.13 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.128, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.228, val: n/a | iter time: 57.99 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.178, val: n/a | iter time: 57.81 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.073, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.161, val: n/a | iter time: 57.84 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.216, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.179, val: n/a | iter time: 86.77 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.171, val: n/a | iter time: 57.09 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.125, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.071, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.184, val: n/a | iter time: 57.85 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.199, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.161, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.151, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.119, val: n/a | iter time: 86.77 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.175, val: n/a | iter time: 57.09 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.215, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.187, val: n/a | iter time: 59.46 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.121, val: n/a | iter time: 57.99 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.167, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.144, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.151, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.216, val: n/a | iter time: 86.87 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.169, val: n/a | iter time: 57.12 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.158, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.234, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.213, val: n/a | iter time: 58.04 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.154, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.180, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.228, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.194, val: n/a | iter time: 86.81 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.206, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.271, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.214, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.179, val: n/a | iter time: 57.85 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.200, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.237, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.177, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.238, val: n/a | iter time: 86.54 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.167, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.110, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.084, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.065, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.129, val: n/a | iter time: 57.99 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.122, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.084, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.045, val: n/a | iter time: 86.69 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.046, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 170 step 21 | loss train: 2.986, val: n/a | iter time: 59.88 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.003, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.000, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 173 step 21 | loss train: 2.975, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 174 step 21 | loss train: 2.970, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 175 step 21 | loss train: 2.946, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 176 step 22 | loss train: 2.976, val: n/a | iter time: 87.08 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.060, val: n/a | iter time: 58.04 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.087, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.057, val: n/a | iter time: 58.01 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.106, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.046, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 182 step 22 | loss train: 2.997, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.043, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 184 step 23 | loss train: 2.949, val: n/a | iter time: 86.56 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 2.859, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 186 step 23 | loss train: 2.879, val: n/a | iter time: 57.83 ms
+Epoch 1 | iter 187 step 23 | loss train: 2.885, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 188 step 23 | loss train: 2.829, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 189 step 23 | loss train: 2.931, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 190 step 23 | loss train: 2.975, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 191 step 23 | loss train: 2.942, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 192 step 24 | loss train: 2.970, val: n/a | iter time: 86.56 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 2.991, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 194 step 24 | loss train: 2.924, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 195 step 24 | loss train: 2.939, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.001, val: n/a | iter time: 57.87 ms
+Epoch 1 | iter 197 step 24 | loss train: 2.911, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 198 step 24 | loss train: 2.835, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 199 step 24 | loss train: 2.815, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 200 step 25 | loss train: 2.823, val: n/a | iter time: 86.57 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: Breath.
+
+Question: Why does breathing often accompany sleep?
+Answer: To cool your body.
+
+Question: What is part of the respiratory system that helps us breathe?
+Answer: The lungs.
+
+Question: What is the function of the heart in respiratory movements?
+Answer: Breathing.
+\end{tcolorbox}
+
+\textbf{Prompt recommended by our framework:}
+\begin{t
+
+iter 200: val loss 2.6903, val time: 2284.30 ms
+Epoch 1 | iter 201 step 25 | loss train: 2.819, val: 2.690 | iter time: 61.75 ms
+Epoch 1 | iter 202 step 25 | loss train: 2.861, val: 2.690 | iter time: 59.08 ms
+Epoch 1 | iter 203 step 25 | loss train: 2.817, val: 2.690 | iter time: 58.58 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.769, val: 2.690 | iter time: 58.59 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.763, val: 2.690 | iter time: 57.87 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.737, val: 2.690 | iter time: 58.59 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.739, val: 2.690 | iter time: 58.10 ms
+Epoch 1 | iter 208 step 26 | loss train: 2.800, val: 2.690 | iter time: 87.41 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 2.865, val: 2.690 | iter time: 57.34 ms
+Epoch 1 | iter 210 step 26 | loss train: 2.858, val: 2.690 | iter time: 58.59 ms
+Epoch 1 | iter 211 step 26 | loss train: 2.900, val: 2.690 | iter time: 58.10 ms
+Epoch 1 | iter 212 step 26 | loss train: 2.837, val: 2.690 | iter time: 58.45 ms
+Epoch 1 | iter 213 step 26 | loss train: 2.828, val: 2.690 | iter time: 58.35 ms
+Epoch 1 | iter 214 step 26 | loss train: 2.822, val: 2.690 | iter time: 58.66 ms
+Epoch 1 | iter 215 step 26 | loss train: 2.781, val: 2.690 | iter time: 58.43 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.681, val: 2.690 | iter time: 87.30 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.557, val: 2.690 | iter time: 57.47 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.552, val: 2.690 | iter time: 58.55 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.537, val: 2.690 | iter time: 58.28 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.568, val: 2.690 | iter time: 58.02 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.601, val: 2.690 | iter time: 58.39 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.632, val: 2.690 | iter time: 58.36 ms
+Epoch 1 | iter 223 step 27 | loss train: 2.715, val: 2.690 | iter time: 58.50 ms
+Epoch 1 | iter 224 step 28 | loss train: 2.784, val: 2.690 | iter time: 87.35 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 2.825, val: 2.690 | iter time: 57.55 ms
+Epoch 1 | iter 226 step 28 | loss train: 2.844, val: 2.690 | iter time: 58.90 ms
+Epoch 1 | iter 227 step 28 | loss train: 2.796, val: 2.690 | iter time: 59.15 ms
+Epoch 1 | iter 228 step 28 | loss train: 2.833, val: 2.690 | iter time: 58.46 ms
+Epoch 1 | iter 229 step 28 | loss train: 2.777, val: 2.690 | iter time: 58.32 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.756, val: 2.690 | iter time: 58.37 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.716, val: 2.690 | iter time: 58.54 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.662, val: 2.690 | iter time: 87.17 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.713, val: 2.690 | iter time: 57.47 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.659, val: 2.690 | iter time: 58.20 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.710, val: 2.690 | iter time: 58.25 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.697, val: 2.690 | iter time: 58.44 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.724, val: 2.690 | iter time: 58.34 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.735, val: 2.690 | iter time: 58.05 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.689, val: 2.690 | iter time: 58.57 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.711, val: 2.690 | iter time: 87.26 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.669, val: 2.690 | iter time: 58.01 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.687, val: 2.690 | iter time: 57.88 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.704, val: 2.690 | iter time: 58.66 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.705, val: 2.690 | iter time: 58.78 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.714, val: 2.690 | iter time: 58.29 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.698, val: 2.690 | iter time: 58.12 ms
+Epoch 1 | iter 247 step 30 | loss train: 2.727, val: 2.690 | iter time: 58.96 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.669, val: 2.690 | iter time: 88.91 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.646, val: 2.690 | iter time: 58.33 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.598, val: 2.690 | iter time: 58.69 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.539, val: 2.690 | iter time: 58.60 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.499, val: 2.690 | iter time: 58.68 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.526, val: 2.690 | iter time: 58.89 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.556, val: 2.690 | iter time: 58.63 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.540, val: 2.690 | iter time: 58.21 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.542, val: 2.690 | iter time: 86.97 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.557, val: 2.690 | iter time: 57.36 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.592, val: 2.690 | iter time: 58.44 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.535, val: 2.690 | iter time: 58.12 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.527, val: 2.690 | iter time: 58.36 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.454, val: 2.690 | iter time: 58.26 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.459, val: 2.690 | iter time: 58.36 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.463, val: 2.690 | iter time: 58.15 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.463, val: 2.690 | iter time: 87.23 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.427, val: 2.690 | iter time: 57.48 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.432, val: 2.690 | iter time: 58.37 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.478, val: 2.690 | iter time: 58.46 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.478, val: 2.690 | iter time: 58.48 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.552, val: 2.690 | iter time: 58.31 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.552, val: 2.690 | iter time: 58.43 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.556, val: 2.690 | iter time: 58.31 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.595, val: 2.690 | iter time: 87.71 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.609, val: 2.690 | iter time: 57.43 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.539, val: 2.690 | iter time: 58.33 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.510, val: 2.690 | iter time: 58.65 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.510, val: 2.690 | iter time: 59.12 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.448, val: 2.690 | iter time: 58.32 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.427, val: 2.690 | iter time: 58.48 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.460, val: 2.690 | iter time: 58.66 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.460, val: 2.690 | iter time: 87.35 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.480, val: 2.690 | iter time: 57.47 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.541, val: 2.690 | iter time: 58.04 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.506, val: 2.690 | iter time: 58.75 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.458, val: 2.690 | iter time: 61.08 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.472, val: 2.690 | iter time: 58.82 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.463, val: 2.690 | iter time: 58.60 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.425, val: 2.690 | iter time: 58.58 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.319, val: 2.690 | iter time: 87.96 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.269, val: 2.690 | iter time: 57.57 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.229, val: 2.690 | iter time: 58.08 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.290, val: 2.690 | iter time: 58.67 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.380, val: 2.690 | iter time: 58.32 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.374, val: 2.690 | iter time: 58.34 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.341, val: 2.690 | iter time: 58.37 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.356, val: 2.690 | iter time: 58.56 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.501, val: 2.690 | iter time: 87.21 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.508, val: 2.690 | iter time: 57.29 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.537, val: 2.690 | iter time: 58.25 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.531, val: 2.690 | iter time: 58.54 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.455, val: 2.690 | iter time: 58.28 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.409, val: 2.690 | iter time: 59.24 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.395, val: 2.690 | iter time: 58.74 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.319, val: 2.690 | iter time: 59.46 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.248, val: 2.690 | iter time: 88.33 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.208, val: 2.690 | iter time: 58.17 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.167, val: 2.690 | iter time: 58.43 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.127, val: 2.690 | iter time: 58.62 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.093, val: 2.690 | iter time: 58.25 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.116, val: 2.690 | iter time: 58.22 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.143, val: 2.690 | iter time: 58.00 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.148, val: 2.690 | iter time: 58.26 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.153, val: 2.690 | iter time: 86.75 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.173, val: 2.690 | iter time: 57.38 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.147, val: 2.690 | iter time: 58.17 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.208, val: 2.690 | iter time: 59.32 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.271, val: 2.690 | iter time: 58.17 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.218, val: 2.690 | iter time: 57.91 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.159, val: 2.690 | iter time: 57.94 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.199, val: 2.690 | iter time: 57.96 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.188, val: 2.690 | iter time: 87.03 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.184, val: 2.690 | iter time: 57.36 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.198, val: 2.690 | iter time: 57.65 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.143, val: 2.690 | iter time: 57.89 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.124, val: 2.690 | iter time: 58.11 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.118, val: 2.690 | iter time: 58.10 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.095, val: 2.690 | iter time: 58.40 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.035, val: 2.690 | iter time: 58.34 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.031, val: 2.690 | iter time: 86.96 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.009, val: 2.690 | iter time: 57.37 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.081, val: 2.690 | iter time: 58.58 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.084, val: 2.690 | iter time: 58.37 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.073, val: 2.690 | iter time: 58.31 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.161, val: 2.690 | iter time: 58.12 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.244, val: 2.690 | iter time: 58.43 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.295, val: 2.690 | iter time: 58.42 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.264, val: 2.690 | iter time: 87.05 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.267, val: 2.690 | iter time: 57.48 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.221, val: 2.690 | iter time: 58.41 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.218, val: 2.690 | iter time: 58.10 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.217, val: 2.690 | iter time: 58.07 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.226, val: 2.690 | iter time: 58.25 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.200, val: 2.690 | iter time: 58.15 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.198, val: 2.690 | iter time: 58.52 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.212, val: 2.690 | iter time: 87.08 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.204, val: 2.690 | iter time: 57.35 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.209, val: 2.690 | iter time: 58.12 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.245, val: 2.690 | iter time: 58.14 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.285, val: 2.690 | iter time: 58.31 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.203, val: 2.690 | iter time: 57.95 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.187, val: 2.690 | iter time: 58.22 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.207, val: 2.690 | iter time: 58.10 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.189, val: 2.690 | iter time: 86.76 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.263, val: 2.690 | iter time: 57.57 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.325, val: 2.690 | iter time: 57.84 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.255, val: 2.690 | iter time: 57.94 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.191, val: 2.690 | iter time: 58.10 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.194, val: 2.690 | iter time: 57.96 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.196, val: 2.690 | iter time: 58.75 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.149, val: 2.690 | iter time: 58.21 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.136, val: 2.690 | iter time: 87.90 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.112, val: 2.690 | iter time: 57.18 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.016, val: 2.690 | iter time: 58.03 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.080, val: 2.690 | iter time: 58.40 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.054, val: 2.690 | iter time: 57.96 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.094, val: 2.690 | iter time: 58.05 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.106, val: 2.690 | iter time: 58.04 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.130, val: 2.690 | iter time: 58.63 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.148, val: 2.690 | iter time: 87.15 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.102, val: 2.690 | iter time: 57.33 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.117, val: 2.690 | iter time: 58.33 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.059, val: 2.690 | iter time: 61.15 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.160, val: 2.690 | iter time: 58.53 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.162, val: 2.690 | iter time: 58.72 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.160, val: 2.690 | iter time: 58.41 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.189, val: 2.690 | iter time: 58.32 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.170, val: 2.690 | iter time: 87.20 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.141, val: 2.690 | iter time: 57.79 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.147, val: 2.690 | iter time: 58.01 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.215, val: 2.690 | iter time: 58.38 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.161, val: 2.690 | iter time: 58.17 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.135, val: 2.690 | iter time: 57.89 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.135, val: 2.690 | iter time: 57.84 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.140, val: 2.690 | iter time: 58.28 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.172, val: 2.690 | iter time: 87.15 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.251, val: 2.690 | iter time: 57.67 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.248, val: 2.690 | iter time: 58.17 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.227, val: 2.690 | iter time: 58.08 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.249, val: 2.690 | iter time: 58.20 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.248, val: 2.690 | iter time: 58.03 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.239, val: 2.690 | iter time: 58.17 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.200, val: 2.690 | iter time: 58.22 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.239, val: 2.690 | iter time: 86.77 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.216, val: 2.690 | iter time: 57.34 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.235, val: 2.690 | iter time: 58.29 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.223, val: 2.690 | iter time: 58.25 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.205, val: 2.690 | iter time: 57.90 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.218, val: 2.690 | iter time: 58.43 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.199, val: 2.690 | iter time: 58.06 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.153, val: 2.690 | iter time: 58.51 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.113, val: 2.690 | iter time: 87.24 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: blood
+
+iter 400: val loss 2.0266, val time: 396.21 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.070, val: 2.027 | iter time: 61.43 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.022, val: 2.027 | iter time: 59.04 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.028, val: 2.027 | iter time: 58.57 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.006, val: 2.027 | iter time: 58.04 ms
+Epoch 1 | iter 405 step 50 | loss train: 1.935, val: 2.027 | iter time: 58.39 ms
+Epoch 1 | iter 406 step 50 | loss train: 1.998, val: 2.027 | iter time: 59.28 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.023, val: 2.027 | iter time: 58.42 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.040, val: 2.027 | iter time: 88.37 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.127, val: 2.027 | iter time: 57.28 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.164, val: 2.027 | iter time: 58.11 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.176, val: 2.027 | iter time: 58.12 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.218, val: 2.027 | iter time: 58.42 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.249, val: 2.027 | iter time: 58.81 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.203, val: 2.027 | iter time: 59.40 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.210, val: 2.027 | iter time: 58.44 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.194, val: 2.027 | iter time: 87.09 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.169, val: 2.027 | iter time: 57.36 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.165, val: 2.027 | iter time: 58.02 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.114, val: 2.027 | iter time: 58.35 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.066, val: 2.027 | iter time: 58.21 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.069, val: 2.027 | iter time: 58.26 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.032, val: 2.027 | iter time: 58.31 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.017, val: 2.027 | iter time: 58.21 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.007, val: 2.027 | iter time: 87.02 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.025, val: 2.027 | iter time: 57.53 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.039, val: 2.027 | iter time: 57.98 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.101, val: 2.027 | iter time: 58.53 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.105, val: 2.027 | iter time: 58.08 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.139, val: 2.027 | iter time: 58.18 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.151, val: 2.027 | iter time: 58.50 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.190, val: 2.027 | iter time: 58.33 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.189, val: 2.027 | iter time: 86.97 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.165, val: 2.027 | iter time: 57.78 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.157, val: 2.027 | iter time: 58.31 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.129, val: 2.027 | iter time: 58.07 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.178, val: 2.027 | iter time: 58.45 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.163, val: 2.027 | iter time: 58.32 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.223, val: 2.027 | iter time: 58.27 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.204, val: 2.027 | iter time: 58.51 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.197, val: 2.027 | iter time: 87.76 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.220, val: 2.027 | iter time: 58.30 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.232, val: 2.027 | iter time: 58.24 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.257, val: 2.027 | iter time: 58.54 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.244, val: 2.027 | iter time: 58.23 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.284, val: 2.027 | iter time: 58.44 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.240, val: 2.027 | iter time: 57.99 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.205, val: 2.027 | iter time: 58.41 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.209, val: 2.027 | iter time: 86.70 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.166, val: 2.027 | iter time: 57.47 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.166, val: 2.027 | iter time: 58.16 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.158, val: 2.027 | iter time: 57.98 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.139, val: 2.027 | iter time: 58.13 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.085, val: 2.027 | iter time: 58.33 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.127, val: 2.027 | iter time: 58.63 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.137, val: 2.027 | iter time: 58.28 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.111, val: 2.027 | iter time: 86.76 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.107, val: 2.027 | iter time: 57.40 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.095, val: 2.027 | iter time: 58.33 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.057, val: 2.027 | iter time: 58.09 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.068, val: 2.027 | iter time: 58.09 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.099, val: 2.027 | iter time: 58.42 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.021, val: 2.027 | iter time: 58.28 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.026, val: 2.027 | iter time: 58.35 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.038, val: 2.027 | iter time: 86.70 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.044, val: 2.027 | iter time: 57.56 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.004, val: 2.027 | iter time: 57.90 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.013, val: 2.027 | iter time: 58.59 ms
+Epoch 1 | iter 468 step 58 | loss train: 1.996, val: 2.027 | iter time: 58.94 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.006, val: 2.027 | iter time: 58.80 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.059, val: 2.027 | iter time: 58.40 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.062, val: 2.027 | iter time: 58.73 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.119, val: 2.027 | iter time: 87.76 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.119, val: 2.027 | iter time: 57.56 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.152, val: 2.027 | iter time: 58.69 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.152, val: 2.027 | iter time: 58.67 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.151, val: 2.027 | iter time: 58.55 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.170, val: 2.027 | iter time: 58.75 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.202, val: 2.027 | iter time: 58.71 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.239, val: 2.027 | iter time: 58.79 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.240, val: 2.027 | iter time: 87.48 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.206, val: 2.027 | iter time: 57.63 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.213, val: 2.027 | iter time: 58.09 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.211, val: 2.027 | iter time: 57.86 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.216, val: 2.027 | iter time: 58.27 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.134, val: 2.027 | iter time: 58.50 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.078, val: 2.027 | iter time: 57.93 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.042, val: 2.027 | iter time: 58.29 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.016, val: 2.027 | iter time: 87.11 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.038, val: 2.027 | iter time: 57.67 ms
+Epoch 1 | iter 490 step 61 | loss train: 1.998, val: 2.027 | iter time: 58.32 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.010, val: 2.027 | iter time: 58.31 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.046, val: 2.027 | iter time: 58.43 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.074, val: 2.027 | iter time: 58.46 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.112, val: 2.027 | iter time: 58.00 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.094, val: 2.027 | iter time: 58.24 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.121, val: 2.027 | iter time: 87.09 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.158, val: 2.027 | iter time: 57.55 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.214, val: 2.027 | iter time: 58.26 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.165, val: 2.027 | iter time: 58.27 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.079, val: 2.027 | iter time: 58.56 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.078, val: 2.027 | iter time: 60.09 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.048, val: 2.027 | iter time: 58.73 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.036, val: 2.027 | iter time: 59.34 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.006, val: 2.027 | iter time: 89.35 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 1.955, val: 2.027 | iter time: 58.40 ms
+Epoch 1 | iter 506 step 63 | loss train: 1.941, val: 2.027 | iter time: 58.37 ms
+Epoch 1 | iter 507 step 63 | loss train: 1.964, val: 2.027 | iter time: 58.24 ms
+Epoch 1 | iter 508 step 63 | loss train: 1.999, val: 2.027 | iter time: 58.57 ms
+Epoch 1 | iter 509 step 63 | loss train: 1.985, val: 2.027 | iter time: 58.34 ms
+Epoch 1 | iter 510 step 63 | loss train: 1.962, val: 2.027 | iter time: 58.05 ms
+Epoch 1 | iter 511 step 63 | loss train: 1.990, val: 2.027 | iter time: 58.34 ms
+Epoch 1 | iter 512 step 64 | loss train: 1.957, val: 2.027 | iter time: 87.39 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 1.973, val: 2.027 | iter time: 57.27 ms
+Epoch 1 | iter 514 step 64 | loss train: 1.954, val: 2.027 | iter time: 58.29 ms
+Epoch 1 | iter 515 step 64 | loss train: 1.965, val: 2.027 | iter time: 58.28 ms
+Epoch 1 | iter 516 step 64 | loss train: 1.972, val: 2.027 | iter time: 58.27 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.008, val: 2.027 | iter time: 58.37 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.056, val: 2.027 | iter time: 58.37 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.047, val: 2.027 | iter time: 58.55 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.066, val: 2.027 | iter time: 87.13 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.074, val: 2.027 | iter time: 57.54 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.067, val: 2.027 | iter time: 58.41 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.085, val: 2.027 | iter time: 58.43 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.100, val: 2.027 | iter time: 58.47 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.008, val: 2.027 | iter time: 58.45 ms
+Epoch 1 | iter 526 step 65 | loss train: 1.962, val: 2.027 | iter time: 58.30 ms
+Epoch 1 | iter 527 step 65 | loss train: 1.964, val: 2.027 | iter time: 58.34 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.004, val: 2.027 | iter time: 87.00 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.023, val: 2.027 | iter time: 57.23 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.054, val: 2.027 | iter time: 57.82 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.018, val: 2.027 | iter time: 58.35 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.024, val: 2.027 | iter time: 58.43 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.066, val: 2.027 | iter time: 58.27 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.137, val: 2.027 | iter time: 57.99 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.140, val: 2.027 | iter time: 58.58 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.086, val: 2.027 | iter time: 87.71 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.064, val: 2.027 | iter time: 57.43 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.017, val: 2.027 | iter time: 57.93 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.032, val: 2.027 | iter time: 58.24 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.014, val: 2.027 | iter time: 58.53 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.049, val: 2.027 | iter time: 58.54 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.030, val: 2.027 | iter time: 58.22 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.107, val: 2.027 | iter time: 58.19 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.128, val: 2.027 | iter time: 87.30 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.138, val: 2.027 | iter time: 57.54 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.134, val: 2.027 | iter time: 58.33 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.144, val: 2.027 | iter time: 58.47 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.167, val: 2.027 | iter time: 57.98 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.157, val: 2.027 | iter time: 57.97 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.101, val: 2.027 | iter time: 58.11 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.036, val: 2.027 | iter time: 58.35 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.082, val: 2.027 | iter time: 87.78 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.55 s
+| - Tok/sec : 3229.81 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 1.946 | val ppl: 7.001
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2411_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2411_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c038daf2cbc279f83b16d502c46cbbb13cc7fb13
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2411_full.txt
@@ -0,0 +1,638 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2411_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2411'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 4.033, val: n/a | iter time: 223.57 ms
+Epoch 1 | iter 2 step 0 | loss train: 4.050, val: n/a | iter time: 64.82 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.828, val: n/a | iter time: 59.32 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.866, val: n/a | iter time: 61.36 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.730, val: n/a | iter time: 57.31 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.673, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.706, val: n/a | iter time: 57.35 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.743, val: n/a | iter time: 162.08 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.626, val: n/a | iter time: 59.52 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.523, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.511, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.496, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.561, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.542, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.454, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.328, val: n/a | iter time: 87.34 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.404, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.442, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.460, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.489, val: n/a | iter time: 58.98 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.498, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.530, val: n/a | iter time: 59.23 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.485, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.476, val: n/a | iter time: 87.25 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.541, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.519, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.537, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.475, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.461, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.524, val: n/a | iter time: 60.25 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.560, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.627, val: n/a | iter time: 87.42 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.596, val: n/a | iter time: 57.28 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.612, val: n/a | iter time: 58.83 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.580, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.585, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.559, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.553, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.627, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.605, val: n/a | iter time: 87.66 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.573, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.548, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.589, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.587, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.596, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.609, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.658, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.669, val: n/a | iter time: 87.67 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.667, val: n/a | iter time: 57.83 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.674, val: n/a | iter time: 61.00 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.700, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.683, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.619, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.493, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.381, val: n/a | iter time: 57.76 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.379, val: n/a | iter time: 86.55 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.395, val: n/a | iter time: 56.72 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.347, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.290, val: n/a | iter time: 58.01 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.282, val: n/a | iter time: 57.87 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.348, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.409, val: n/a | iter time: 57.76 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.411, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.442, val: n/a | iter time: 86.48 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.434, val: n/a | iter time: 57.08 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.516, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.502, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.525, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.487, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.467, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.530, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.521, val: n/a | iter time: 86.49 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.513, val: n/a | iter time: 57.01 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.459, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.490, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.511, val: n/a | iter time: 57.72 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.577, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.583, val: n/a | iter time: 59.26 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.552, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.544, val: n/a | iter time: 86.59 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.479, val: n/a | iter time: 56.64 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.498, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.517, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.522, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.458, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.499, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.499, val: n/a | iter time: 57.35 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.414, val: n/a | iter time: 86.89 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.446, val: n/a | iter time: 56.86 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.420, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.347, val: n/a | iter time: 60.65 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.312, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.350, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.360, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.366, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.543, val: n/a | iter time: 86.78 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.480, val: n/a | iter time: 57.01 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.485, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.480, val: n/a | iter time: 58.25 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.471, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.450, val: n/a | iter time: 57.61 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.434, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.395, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.277, val: n/a | iter time: 86.53 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.357, val: n/a | iter time: 56.84 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.358, val: n/a | iter time: 57.49 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.343, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.379, val: n/a | iter time: 57.86 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.469, val: n/a | iter time: 57.48 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.405, val: n/a | iter time: 57.52 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.389, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.373, val: n/a | iter time: 87.21 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.336, val: n/a | iter time: 56.68 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.410, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.402, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.378, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.307, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.277, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.266, val: n/a | iter time: 58.01 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.269, val: n/a | iter time: 87.76 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.260, val: n/a | iter time: 57.06 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.226, val: n/a | iter time: 58.25 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.328, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.283, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.186, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.275, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.341, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.320, val: n/a | iter time: 86.84 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.304, val: n/a | iter time: 57.04 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.237, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.194, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.284, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.290, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.241, val: n/a | iter time: 57.64 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.228, val: n/a | iter time: 57.49 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.199, val: n/a | iter time: 86.52 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.250, val: n/a | iter time: 57.08 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.316, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.271, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.216, val: n/a | iter time: 57.57 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.276, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.230, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.221, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.274, val: n/a | iter time: 86.23 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.242, val: n/a | iter time: 56.64 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.237, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.333, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.324, val: n/a | iter time: 60.37 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.263, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.293, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.367, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.350, val: n/a | iter time: 86.24 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.367, val: n/a | iter time: 57.12 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.412, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.356, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.314, val: n/a | iter time: 57.46 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.337, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.379, val: n/a | iter time: 57.57 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.317, val: n/a | iter time: 57.58 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.354, val: n/a | iter time: 86.31 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.281, val: n/a | iter time: 57.08 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.211, val: n/a | iter time: 57.87 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.176, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.157, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.215, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.215, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.160, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.128, val: n/a | iter time: 86.78 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.137, val: n/a | iter time: 57.26 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.088, val: n/a | iter time: 57.63 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.093, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.099, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.083, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.063, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.045, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.073, val: n/a | iter time: 86.59 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.150, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.194, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.171, val: n/a | iter time: 58.01 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.221, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.159, val: n/a | iter time: 57.83 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.131, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.180, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.106, val: n/a | iter time: 86.82 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.019, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.011, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.015, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 188 step 23 | loss train: 2.952, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.045, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.074, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.030, val: n/a | iter time: 57.72 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.047, val: n/a | iter time: 86.56 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.063, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.013, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.039, val: n/a | iter time: 57.44 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.113, val: n/a | iter time: 57.85 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.036, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 198 step 24 | loss train: 2.959, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 199 step 24 | loss train: 2.950, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 200 step 25 | loss train: 2.961, val: n/a | iter time: 86.74 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: Breath.
+
+Question: Why does a person often be outdoors?
+Answer: For exercise.
+
+Questions: What is part of a house that has a lot of windows?
+Answer: Rooftop garden.
+
+Questions: What is the typical way to dish washing?
+Answer: Laying down on the dirty clothes.
+
+Question: What is a common activity between a person with a good eye and one with a bad eye
+
+iter 200: val loss 2.8032, val time: 2296.24 ms
+Epoch 1 | iter 201 step 25 | loss train: 2.965, val: 2.803 | iter time: 61.59 ms
+Epoch 1 | iter 202 step 25 | loss train: 2.988, val: 2.803 | iter time: 58.92 ms
+Epoch 1 | iter 203 step 25 | loss train: 2.933, val: 2.803 | iter time: 58.29 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.871, val: 2.803 | iter time: 58.00 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.865, val: 2.803 | iter time: 57.55 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.849, val: 2.803 | iter time: 58.38 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.849, val: 2.803 | iter time: 57.83 ms
+Epoch 1 | iter 208 step 26 | loss train: 2.892, val: 2.803 | iter time: 87.41 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 2.942, val: 2.803 | iter time: 57.89 ms
+Epoch 1 | iter 210 step 26 | loss train: 2.940, val: 2.803 | iter time: 58.31 ms
+Epoch 1 | iter 211 step 26 | loss train: 2.986, val: 2.803 | iter time: 57.77 ms
+Epoch 1 | iter 212 step 26 | loss train: 2.928, val: 2.803 | iter time: 58.42 ms
+Epoch 1 | iter 213 step 26 | loss train: 2.913, val: 2.803 | iter time: 57.99 ms
+Epoch 1 | iter 214 step 26 | loss train: 2.916, val: 2.803 | iter time: 58.28 ms
+Epoch 1 | iter 215 step 26 | loss train: 2.871, val: 2.803 | iter time: 58.04 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.769, val: 2.803 | iter time: 87.11 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.645, val: 2.803 | iter time: 56.98 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.644, val: 2.803 | iter time: 58.08 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.624, val: 2.803 | iter time: 57.95 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.656, val: 2.803 | iter time: 58.00 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.687, val: 2.803 | iter time: 58.06 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.711, val: 2.803 | iter time: 58.07 ms
+Epoch 1 | iter 223 step 27 | loss train: 2.789, val: 2.803 | iter time: 58.03 ms
+Epoch 1 | iter 224 step 28 | loss train: 2.870, val: 2.803 | iter time: 87.58 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 2.908, val: 2.803 | iter time: 57.31 ms
+Epoch 1 | iter 226 step 28 | loss train: 2.923, val: 2.803 | iter time: 58.47 ms
+Epoch 1 | iter 227 step 28 | loss train: 2.899, val: 2.803 | iter time: 58.49 ms
+Epoch 1 | iter 228 step 28 | loss train: 2.932, val: 2.803 | iter time: 58.28 ms
+Epoch 1 | iter 229 step 28 | loss train: 2.866, val: 2.803 | iter time: 58.05 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.848, val: 2.803 | iter time: 58.04 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.819, val: 2.803 | iter time: 57.95 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.769, val: 2.803 | iter time: 86.98 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.823, val: 2.803 | iter time: 57.37 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.761, val: 2.803 | iter time: 57.77 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.787, val: 2.803 | iter time: 57.70 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.765, val: 2.803 | iter time: 58.38 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.787, val: 2.803 | iter time: 58.03 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.794, val: 2.803 | iter time: 57.80 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.741, val: 2.803 | iter time: 57.97 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.762, val: 2.803 | iter time: 87.26 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.736, val: 2.803 | iter time: 57.30 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.759, val: 2.803 | iter time: 57.65 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.773, val: 2.803 | iter time: 57.99 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.790, val: 2.803 | iter time: 58.16 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.828, val: 2.803 | iter time: 60.92 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.795, val: 2.803 | iter time: 58.08 ms
+Epoch 1 | iter 247 step 30 | loss train: 2.838, val: 2.803 | iter time: 58.33 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.776, val: 2.803 | iter time: 87.46 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.744, val: 2.803 | iter time: 57.27 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.695, val: 2.803 | iter time: 58.56 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.646, val: 2.803 | iter time: 58.35 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.585, val: 2.803 | iter time: 58.65 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.571, val: 2.803 | iter time: 58.46 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.616, val: 2.803 | iter time: 58.40 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.590, val: 2.803 | iter time: 58.07 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.589, val: 2.803 | iter time: 87.04 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.593, val: 2.803 | iter time: 57.26 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.650, val: 2.803 | iter time: 58.48 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.593, val: 2.803 | iter time: 58.02 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.599, val: 2.803 | iter time: 58.53 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.556, val: 2.803 | iter time: 58.16 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.547, val: 2.803 | iter time: 58.44 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.548, val: 2.803 | iter time: 58.00 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.544, val: 2.803 | iter time: 87.37 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.516, val: 2.803 | iter time: 57.39 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.504, val: 2.803 | iter time: 58.24 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.548, val: 2.803 | iter time: 58.05 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.553, val: 2.803 | iter time: 58.63 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.619, val: 2.803 | iter time: 58.18 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.617, val: 2.803 | iter time: 58.23 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.619, val: 2.803 | iter time: 57.96 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.671, val: 2.803 | iter time: 87.52 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.688, val: 2.803 | iter time: 57.22 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.615, val: 2.803 | iter time: 58.01 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.565, val: 2.803 | iter time: 58.23 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.548, val: 2.803 | iter time: 58.99 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.479, val: 2.803 | iter time: 58.10 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.475, val: 2.803 | iter time: 58.31 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.484, val: 2.803 | iter time: 58.23 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.482, val: 2.803 | iter time: 87.05 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.495, val: 2.803 | iter time: 57.26 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.559, val: 2.803 | iter time: 57.85 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.540, val: 2.803 | iter time: 58.13 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.512, val: 2.803 | iter time: 58.47 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.548, val: 2.803 | iter time: 58.32 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.535, val: 2.803 | iter time: 58.34 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.514, val: 2.803 | iter time: 58.34 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.396, val: 2.803 | iter time: 89.55 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.353, val: 2.803 | iter time: 58.19 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.306, val: 2.803 | iter time: 58.22 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.363, val: 2.803 | iter time: 58.52 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.434, val: 2.803 | iter time: 58.56 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.394, val: 2.803 | iter time: 58.38 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.350, val: 2.803 | iter time: 58.37 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.364, val: 2.803 | iter time: 58.20 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.500, val: 2.803 | iter time: 87.14 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.499, val: 2.803 | iter time: 56.85 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.541, val: 2.803 | iter time: 57.85 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.539, val: 2.803 | iter time: 57.93 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.468, val: 2.803 | iter time: 58.04 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.435, val: 2.803 | iter time: 57.86 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.434, val: 2.803 | iter time: 58.13 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.360, val: 2.803 | iter time: 57.77 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.303, val: 2.803 | iter time: 87.30 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.268, val: 2.803 | iter time: 57.29 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.212, val: 2.803 | iter time: 57.93 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.188, val: 2.803 | iter time: 58.01 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.160, val: 2.803 | iter time: 57.95 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.187, val: 2.803 | iter time: 58.04 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.210, val: 2.803 | iter time: 58.09 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.221, val: 2.803 | iter time: 58.03 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.228, val: 2.803 | iter time: 86.90 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.252, val: 2.803 | iter time: 57.43 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.233, val: 2.803 | iter time: 58.31 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.290, val: 2.803 | iter time: 58.18 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.354, val: 2.803 | iter time: 58.35 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.300, val: 2.803 | iter time: 57.88 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.248, val: 2.803 | iter time: 58.03 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.296, val: 2.803 | iter time: 57.63 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.289, val: 2.803 | iter time: 87.06 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.277, val: 2.803 | iter time: 58.01 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.290, val: 2.803 | iter time: 57.51 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.237, val: 2.803 | iter time: 57.59 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.230, val: 2.803 | iter time: 58.15 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.217, val: 2.803 | iter time: 57.98 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.195, val: 2.803 | iter time: 58.15 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.129, val: 2.803 | iter time: 57.77 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.129, val: 2.803 | iter time: 86.92 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.112, val: 2.803 | iter time: 57.44 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.192, val: 2.803 | iter time: 58.38 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.198, val: 2.803 | iter time: 58.16 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.163, val: 2.803 | iter time: 58.54 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.258, val: 2.803 | iter time: 58.33 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.335, val: 2.803 | iter time: 58.56 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.393, val: 2.803 | iter time: 58.35 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.353, val: 2.803 | iter time: 87.56 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.348, val: 2.803 | iter time: 57.60 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.297, val: 2.803 | iter time: 58.23 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.293, val: 2.803 | iter time: 58.29 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.302, val: 2.803 | iter time: 58.53 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.303, val: 2.803 | iter time: 58.42 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.282, val: 2.803 | iter time: 58.52 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.271, val: 2.803 | iter time: 58.33 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.298, val: 2.803 | iter time: 87.35 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.284, val: 2.803 | iter time: 57.28 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.267, val: 2.803 | iter time: 58.19 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.300, val: 2.803 | iter time: 58.16 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.329, val: 2.803 | iter time: 58.37 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.255, val: 2.803 | iter time: 58.02 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.255, val: 2.803 | iter time: 58.24 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.265, val: 2.803 | iter time: 58.02 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.252, val: 2.803 | iter time: 87.02 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.341, val: 2.803 | iter time: 56.81 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.422, val: 2.803 | iter time: 57.54 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.345, val: 2.803 | iter time: 57.62 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.290, val: 2.803 | iter time: 58.11 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.300, val: 2.803 | iter time: 57.69 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.280, val: 2.803 | iter time: 58.53 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.244, val: 2.803 | iter time: 58.07 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.219, val: 2.803 | iter time: 87.76 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.188, val: 2.803 | iter time: 57.06 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.104, val: 2.803 | iter time: 57.85 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.181, val: 2.803 | iter time: 57.89 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.144, val: 2.803 | iter time: 58.07 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.185, val: 2.803 | iter time: 57.82 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.205, val: 2.803 | iter time: 57.86 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.233, val: 2.803 | iter time: 58.01 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.259, val: 2.803 | iter time: 86.70 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.214, val: 2.803 | iter time: 56.97 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.224, val: 2.803 | iter time: 58.01 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.168, val: 2.803 | iter time: 57.60 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.260, val: 2.803 | iter time: 57.81 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.254, val: 2.803 | iter time: 57.88 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.246, val: 2.803 | iter time: 57.88 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.256, val: 2.803 | iter time: 57.60 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.226, val: 2.803 | iter time: 90.09 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.197, val: 2.803 | iter time: 57.80 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.195, val: 2.803 | iter time: 58.00 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.245, val: 2.803 | iter time: 58.04 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.212, val: 2.803 | iter time: 58.26 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.181, val: 2.803 | iter time: 57.63 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.174, val: 2.803 | iter time: 57.84 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.185, val: 2.803 | iter time: 58.04 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.224, val: 2.803 | iter time: 87.12 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.299, val: 2.803 | iter time: 57.30 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.290, val: 2.803 | iter time: 57.94 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.268, val: 2.803 | iter time: 57.87 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.271, val: 2.803 | iter time: 58.11 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.279, val: 2.803 | iter time: 57.68 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.271, val: 2.803 | iter time: 57.73 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.236, val: 2.803 | iter time: 57.98 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.255, val: 2.803 | iter time: 86.69 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.231, val: 2.803 | iter time: 57.05 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.265, val: 2.803 | iter time: 57.88 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.251, val: 2.803 | iter time: 57.96 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.255, val: 2.803 | iter time: 57.89 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.262, val: 2.803 | iter time: 58.11 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.248, val: 2.803 | iter time: 57.98 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.201, val: 2.803 | iter time: 58.09 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.175, val: 2.803 | iter time: 87.02 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: air
+
+iter 400: val loss 2.0572, val time: 397.58 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.140, val: 2.057 | iter time: 61.33 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.080, val: 2.057 | iter time: 58.92 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.072, val: 2.057 | iter time: 58.25 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.029, val: 2.057 | iter time: 58.16 ms
+Epoch 1 | iter 405 step 50 | loss train: 1.960, val: 2.057 | iter time: 57.96 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.026, val: 2.057 | iter time: 57.99 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.042, val: 2.057 | iter time: 57.79 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.066, val: 2.057 | iter time: 87.82 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.144, val: 2.057 | iter time: 56.86 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.188, val: 2.057 | iter time: 57.97 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.214, val: 2.057 | iter time: 57.59 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.269, val: 2.057 | iter time: 58.33 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.292, val: 2.057 | iter time: 58.39 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.233, val: 2.057 | iter time: 57.98 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.249, val: 2.057 | iter time: 58.02 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.222, val: 2.057 | iter time: 87.45 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.201, val: 2.057 | iter time: 57.22 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.189, val: 2.057 | iter time: 60.62 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.140, val: 2.057 | iter time: 58.43 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.072, val: 2.057 | iter time: 58.21 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.085, val: 2.057 | iter time: 57.95 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.051, val: 2.057 | iter time: 58.21 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.034, val: 2.057 | iter time: 58.22 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.040, val: 2.057 | iter time: 87.28 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.065, val: 2.057 | iter time: 57.24 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.090, val: 2.057 | iter time: 58.61 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.136, val: 2.057 | iter time: 58.81 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.157, val: 2.057 | iter time: 58.57 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.183, val: 2.057 | iter time: 58.56 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.205, val: 2.057 | iter time: 59.06 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.235, val: 2.057 | iter time: 58.72 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.221, val: 2.057 | iter time: 87.65 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.196, val: 2.057 | iter time: 58.00 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.186, val: 2.057 | iter time: 58.63 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.170, val: 2.057 | iter time: 58.45 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.209, val: 2.057 | iter time: 59.10 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.199, val: 2.057 | iter time: 58.72 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.251, val: 2.057 | iter time: 58.77 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.250, val: 2.057 | iter time: 58.79 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.233, val: 2.057 | iter time: 87.68 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.238, val: 2.057 | iter time: 57.77 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.242, val: 2.057 | iter time: 58.36 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.270, val: 2.057 | iter time: 58.77 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.253, val: 2.057 | iter time: 58.86 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.291, val: 2.057 | iter time: 58.99 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.245, val: 2.057 | iter time: 58.76 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.200, val: 2.057 | iter time: 58.72 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.212, val: 2.057 | iter time: 87.38 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.189, val: 2.057 | iter time: 57.93 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.192, val: 2.057 | iter time: 58.55 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.179, val: 2.057 | iter time: 58.23 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.166, val: 2.057 | iter time: 58.67 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.106, val: 2.057 | iter time: 58.60 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.156, val: 2.057 | iter time: 59.19 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.164, val: 2.057 | iter time: 58.72 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.129, val: 2.057 | iter time: 87.42 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.126, val: 2.057 | iter time: 57.83 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.122, val: 2.057 | iter time: 58.59 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.085, val: 2.057 | iter time: 58.34 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.096, val: 2.057 | iter time: 58.84 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.136, val: 2.057 | iter time: 58.70 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.059, val: 2.057 | iter time: 58.69 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.071, val: 2.057 | iter time: 59.56 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.094, val: 2.057 | iter time: 87.29 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.100, val: 2.057 | iter time: 57.34 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.054, val: 2.057 | iter time: 57.73 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.064, val: 2.057 | iter time: 58.14 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.067, val: 2.057 | iter time: 58.20 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.066, val: 2.057 | iter time: 57.94 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.122, val: 2.057 | iter time: 57.80 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.129, val: 2.057 | iter time: 57.85 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.186, val: 2.057 | iter time: 87.32 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.188, val: 2.057 | iter time: 56.87 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.218, val: 2.057 | iter time: 57.99 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.230, val: 2.057 | iter time: 58.05 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.216, val: 2.057 | iter time: 58.20 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.248, val: 2.057 | iter time: 58.01 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.252, val: 2.057 | iter time: 58.01 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.290, val: 2.057 | iter time: 58.10 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.290, val: 2.057 | iter time: 87.11 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.249, val: 2.057 | iter time: 57.20 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.248, val: 2.057 | iter time: 57.79 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.244, val: 2.057 | iter time: 57.55 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.259, val: 2.057 | iter time: 58.13 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.169, val: 2.057 | iter time: 57.99 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.138, val: 2.057 | iter time: 57.76 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.096, val: 2.057 | iter time: 57.90 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.073, val: 2.057 | iter time: 87.10 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.100, val: 2.057 | iter time: 57.27 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.067, val: 2.057 | iter time: 57.96 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.081, val: 2.057 | iter time: 57.93 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.111, val: 2.057 | iter time: 58.30 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.131, val: 2.057 | iter time: 58.25 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.160, val: 2.057 | iter time: 58.43 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.141, val: 2.057 | iter time: 58.54 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.163, val: 2.057 | iter time: 87.33 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.201, val: 2.057 | iter time: 57.84 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.257, val: 2.057 | iter time: 58.54 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.211, val: 2.057 | iter time: 58.59 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.122, val: 2.057 | iter time: 58.96 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.125, val: 2.057 | iter time: 58.68 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.098, val: 2.057 | iter time: 58.59 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.100, val: 2.057 | iter time: 59.24 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.079, val: 2.057 | iter time: 87.61 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.020, val: 2.057 | iter time: 58.12 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.027, val: 2.057 | iter time: 58.71 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.035, val: 2.057 | iter time: 58.52 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.071, val: 2.057 | iter time: 59.00 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.059, val: 2.057 | iter time: 58.52 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.038, val: 2.057 | iter time: 58.43 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.054, val: 2.057 | iter time: 58.63 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.011, val: 2.057 | iter time: 87.76 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.027, val: 2.057 | iter time: 57.79 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.000, val: 2.057 | iter time: 58.74 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.011, val: 2.057 | iter time: 58.63 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.011, val: 2.057 | iter time: 61.63 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.051, val: 2.057 | iter time: 59.32 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.096, val: 2.057 | iter time: 59.26 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.075, val: 2.057 | iter time: 59.15 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.098, val: 2.057 | iter time: 88.65 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.099, val: 2.057 | iter time: 58.18 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.114, val: 2.057 | iter time: 59.08 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.123, val: 2.057 | iter time: 59.09 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.141, val: 2.057 | iter time: 59.38 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.052, val: 2.057 | iter time: 58.55 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.011, val: 2.057 | iter time: 58.95 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.021, val: 2.057 | iter time: 59.01 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.056, val: 2.057 | iter time: 87.72 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.088, val: 2.057 | iter time: 57.98 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.083, val: 2.057 | iter time: 58.58 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.061, val: 2.057 | iter time: 58.85 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.069, val: 2.057 | iter time: 59.46 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.092, val: 2.057 | iter time: 59.03 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.160, val: 2.057 | iter time: 58.84 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.177, val: 2.057 | iter time: 59.00 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.121, val: 2.057 | iter time: 88.06 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.093, val: 2.057 | iter time: 58.02 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.049, val: 2.057 | iter time: 58.52 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.064, val: 2.057 | iter time: 58.81 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.037, val: 2.057 | iter time: 59.24 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.091, val: 2.057 | iter time: 58.92 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.064, val: 2.057 | iter time: 58.94 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.129, val: 2.057 | iter time: 58.64 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.152, val: 2.057 | iter time: 88.07 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.154, val: 2.057 | iter time: 58.07 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.146, val: 2.057 | iter time: 58.85 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.157, val: 2.057 | iter time: 59.17 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.181, val: 2.057 | iter time: 58.55 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.166, val: 2.057 | iter time: 58.61 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.116, val: 2.057 | iter time: 58.75 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.052, val: 2.057 | iter time: 58.78 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.082, val: 2.057 | iter time: 88.27 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.55 s
+| - Tok/sec : 3229.48 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 1.972 | val ppl: 7.182
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2412_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2412_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2cb567ea8f7af1d4ab918ff7ef5e52d6691456fa
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2412_full.txt
@@ -0,0 +1,635 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2412_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2412'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 4.196, val: n/a | iter time: 224.30 ms
+Epoch 1 | iter 2 step 0 | loss train: 4.155, val: n/a | iter time: 66.90 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.898, val: n/a | iter time: 61.52 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.926, val: n/a | iter time: 59.85 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.809, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.750, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.764, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.825, val: n/a | iter time: 166.45 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.697, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.593, val: n/a | iter time: 58.97 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.597, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.598, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.644, val: n/a | iter time: 58.55 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.614, val: n/a | iter time: 58.88 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.535, val: n/a | iter time: 59.01 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.390, val: n/a | iter time: 87.45 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.464, val: n/a | iter time: 57.53 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.514, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.527, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.541, val: n/a | iter time: 59.01 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.559, val: n/a | iter time: 58.85 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.612, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.572, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.562, val: n/a | iter time: 87.64 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.635, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.593, val: n/a | iter time: 59.63 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.604, val: n/a | iter time: 59.78 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.548, val: n/a | iter time: 59.31 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.550, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.598, val: n/a | iter time: 61.06 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.628, val: n/a | iter time: 59.50 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.689, val: n/a | iter time: 87.90 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.660, val: n/a | iter time: 57.40 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.689, val: n/a | iter time: 59.22 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.658, val: n/a | iter time: 59.01 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.665, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.624, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.615, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.678, val: n/a | iter time: 57.76 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.643, val: n/a | iter time: 87.40 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.612, val: n/a | iter time: 57.31 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.585, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.627, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.616, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.619, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.641, val: n/a | iter time: 58.35 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.704, val: n/a | iter time: 57.85 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.721, val: n/a | iter time: 87.46 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.710, val: n/a | iter time: 56.94 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.710, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.727, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.720, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.660, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.538, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.431, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.433, val: n/a | iter time: 86.69 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.452, val: n/a | iter time: 56.84 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.410, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.368, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.357, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.429, val: n/a | iter time: 59.51 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.496, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.489, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.538, val: n/a | iter time: 87.01 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.536, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.621, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.605, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.627, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.585, val: n/a | iter time: 58.25 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.550, val: n/a | iter time: 58.82 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.614, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.582, val: n/a | iter time: 86.65 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.568, val: n/a | iter time: 57.16 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.509, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.551, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.567, val: n/a | iter time: 57.81 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.632, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.653, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.632, val: n/a | iter time: 57.61 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.631, val: n/a | iter time: 86.85 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.569, val: n/a | iter time: 56.63 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.592, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.609, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.630, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.568, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.589, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.588, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.499, val: n/a | iter time: 87.24 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.548, val: n/a | iter time: 57.09 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.521, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.442, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.401, val: n/a | iter time: 60.06 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.444, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.474, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.482, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.663, val: n/a | iter time: 86.66 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.578, val: n/a | iter time: 56.92 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.590, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.586, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.606, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.590, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.571, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.527, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.409, val: n/a | iter time: 86.93 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.507, val: n/a | iter time: 57.13 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.512, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.493, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.495, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.579, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.510, val: n/a | iter time: 57.78 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.504, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.499, val: n/a | iter time: 87.48 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.449, val: n/a | iter time: 57.07 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.517, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.505, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.478, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.408, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.373, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.363, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.360, val: n/a | iter time: 89.00 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.350, val: n/a | iter time: 57.14 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.322, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.433, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.419, val: n/a | iter time: 57.87 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.318, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.406, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.479, val: n/a | iter time: 59.35 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.451, val: n/a | iter time: 87.24 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.447, val: n/a | iter time: 56.93 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.375, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.350, val: n/a | iter time: 57.76 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.437, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.446, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.407, val: n/a | iter time: 57.85 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.374, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.345, val: n/a | iter time: 86.76 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.405, val: n/a | iter time: 56.95 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.451, val: n/a | iter time: 57.72 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.406, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.351, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.409, val: n/a | iter time: 57.44 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.378, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.398, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.473, val: n/a | iter time: 86.24 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.433, val: n/a | iter time: 56.65 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.451, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.535, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.517, val: n/a | iter time: 57.57 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.452, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.488, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.545, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.511, val: n/a | iter time: 86.30 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.531, val: n/a | iter time: 57.07 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.570, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.508, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.460, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.488, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.517, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.467, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.512, val: n/a | iter time: 87.27 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.430, val: n/a | iter time: 57.15 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.367, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.361, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.346, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.415, val: n/a | iter time: 57.46 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.406, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.346, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.314, val: n/a | iter time: 86.98 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.321, val: n/a | iter time: 56.91 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.269, val: n/a | iter time: 57.27 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.260, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.251, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.219, val: n/a | iter time: 57.53 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.210, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.195, val: n/a | iter time: 59.10 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.219, val: n/a | iter time: 87.50 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.306, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.386, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.351, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.405, val: n/a | iter time: 58.35 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.342, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.308, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.333, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.258, val: n/a | iter time: 86.87 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.171, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.131, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.138, val: n/a | iter time: 57.40 ms
+Epoch 1 | iter 188 step 23 | loss train: 3.093, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.204, val: n/a | iter time: 57.83 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.241, val: n/a | iter time: 57.61 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.232, val: n/a | iter time: 57.72 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.282, val: n/a | iter time: 86.99 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.300, val: n/a | iter time: 57.27 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.250, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.268, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.340, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.273, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 198 step 24 | loss train: 3.204, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 199 step 24 | loss train: 3.180, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 200 step 25 | loss train: 3.144, val: n/a | iter time: 87.09 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: The sun.\\
+Question: Why does the sun trace a sphere?
+Answer: The sun follows a simple, stable, and circular path.\\
+Question: What is the greatest thing ever made?
+Answer: The greatest thing ever made is the sun.\\
+Question: How many fences does a city have?
+Answer: A city has a lot of fences.\\
+Question: What is the largest known organism on Earth?
+Answer: The largest known organ
+
+iter 200: val loss 3.0341, val time: 2310.18 ms
+Epoch 1 | iter 201 step 25 | loss train: 3.137, val: 3.034 | iter time: 60.42 ms
+Epoch 1 | iter 202 step 25 | loss train: 3.149, val: 3.034 | iter time: 58.66 ms
+Epoch 1 | iter 203 step 25 | loss train: 3.104, val: 3.034 | iter time: 58.12 ms
+Epoch 1 | iter 204 step 25 | loss train: 3.048, val: 3.034 | iter time: 58.70 ms
+Epoch 1 | iter 205 step 25 | loss train: 3.036, val: 3.034 | iter time: 57.42 ms
+Epoch 1 | iter 206 step 25 | loss train: 3.004, val: 3.034 | iter time: 58.39 ms
+Epoch 1 | iter 207 step 25 | loss train: 3.031, val: 3.034 | iter time: 57.79 ms
+Epoch 1 | iter 208 step 26 | loss train: 3.102, val: 3.034 | iter time: 88.58 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 3.189, val: 3.034 | iter time: 57.10 ms
+Epoch 1 | iter 210 step 26 | loss train: 3.206, val: 3.034 | iter time: 58.79 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.275, val: 3.034 | iter time: 57.89 ms
+Epoch 1 | iter 212 step 26 | loss train: 3.207, val: 3.034 | iter time: 58.85 ms
+Epoch 1 | iter 213 step 26 | loss train: 3.210, val: 3.034 | iter time: 58.04 ms
+Epoch 1 | iter 214 step 26 | loss train: 3.220, val: 3.034 | iter time: 58.36 ms
+Epoch 1 | iter 215 step 26 | loss train: 3.148, val: 3.034 | iter time: 58.79 ms
+Epoch 1 | iter 216 step 27 | loss train: 3.049, val: 3.034 | iter time: 87.11 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.917, val: 3.034 | iter time: 57.12 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.902, val: 3.034 | iter time: 58.11 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.862, val: 3.034 | iter time: 58.64 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.895, val: 3.034 | iter time: 58.41 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.913, val: 3.034 | iter time: 59.40 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.954, val: 3.034 | iter time: 58.62 ms
+Epoch 1 | iter 223 step 27 | loss train: 3.030, val: 3.034 | iter time: 59.01 ms
+Epoch 1 | iter 224 step 28 | loss train: 3.137, val: 3.034 | iter time: 87.34 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 3.161, val: 3.034 | iter time: 57.31 ms
+Epoch 1 | iter 226 step 28 | loss train: 3.182, val: 3.034 | iter time: 58.70 ms
+Epoch 1 | iter 227 step 28 | loss train: 3.144, val: 3.034 | iter time: 59.34 ms
+Epoch 1 | iter 228 step 28 | loss train: 3.167, val: 3.034 | iter time: 58.33 ms
+Epoch 1 | iter 229 step 28 | loss train: 3.091, val: 3.034 | iter time: 58.26 ms
+Epoch 1 | iter 230 step 28 | loss train: 3.045, val: 3.034 | iter time: 58.17 ms
+Epoch 1 | iter 231 step 28 | loss train: 3.016, val: 3.034 | iter time: 58.81 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.938, val: 3.034 | iter time: 87.07 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.996, val: 3.034 | iter time: 57.41 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.939, val: 3.034 | iter time: 58.18 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.983, val: 3.034 | iter time: 58.33 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.968, val: 3.034 | iter time: 58.29 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.996, val: 3.034 | iter time: 58.24 ms
+Epoch 1 | iter 238 step 29 | loss train: 3.016, val: 3.034 | iter time: 58.07 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.965, val: 3.034 | iter time: 59.02 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.992, val: 3.034 | iter time: 87.76 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.963, val: 3.034 | iter time: 57.61 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.993, val: 3.034 | iter time: 57.92 ms
+Epoch 1 | iter 243 step 30 | loss train: 3.005, val: 3.034 | iter time: 58.76 ms
+Epoch 1 | iter 244 step 30 | loss train: 3.022, val: 3.034 | iter time: 58.37 ms
+Epoch 1 | iter 245 step 30 | loss train: 3.045, val: 3.034 | iter time: 58.24 ms
+Epoch 1 | iter 246 step 30 | loss train: 3.008, val: 3.034 | iter time: 57.89 ms
+Epoch 1 | iter 247 step 30 | loss train: 3.046, val: 3.034 | iter time: 58.73 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.980, val: 3.034 | iter time: 87.04 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.934, val: 3.034 | iter time: 57.13 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.873, val: 3.034 | iter time: 58.47 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.833, val: 3.034 | iter time: 58.78 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.782, val: 3.034 | iter time: 58.38 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.812, val: 3.034 | iter time: 58.32 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.855, val: 3.034 | iter time: 58.37 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.840, val: 3.034 | iter time: 58.58 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.836, val: 3.034 | iter time: 86.66 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.849, val: 3.034 | iter time: 57.82 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.909, val: 3.034 | iter time: 60.59 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.847, val: 3.034 | iter time: 58.62 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.861, val: 3.034 | iter time: 58.28 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.813, val: 3.034 | iter time: 58.18 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.830, val: 3.034 | iter time: 58.29 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.817, val: 3.034 | iter time: 58.72 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.835, val: 3.034 | iter time: 87.14 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.812, val: 3.034 | iter time: 57.63 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.818, val: 3.034 | iter time: 58.21 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.889, val: 3.034 | iter time: 58.83 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.917, val: 3.034 | iter time: 58.37 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.968, val: 3.034 | iter time: 58.20 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.964, val: 3.034 | iter time: 58.33 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.988, val: 3.034 | iter time: 58.69 ms
+Epoch 1 | iter 272 step 34 | loss train: 3.030, val: 3.034 | iter time: 87.63 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 3.061, val: 3.034 | iter time: 57.24 ms
+Epoch 1 | iter 274 step 34 | loss train: 3.000, val: 3.034 | iter time: 58.47 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.938, val: 3.034 | iter time: 58.88 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.886, val: 3.034 | iter time: 58.95 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.813, val: 3.034 | iter time: 58.24 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.799, val: 3.034 | iter time: 58.34 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.817, val: 3.034 | iter time: 58.62 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.842, val: 3.034 | iter time: 86.80 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.845, val: 3.034 | iter time: 57.34 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.892, val: 3.034 | iter time: 57.82 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.879, val: 3.034 | iter time: 58.75 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.864, val: 3.034 | iter time: 58.40 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.946, val: 3.034 | iter time: 58.02 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.928, val: 3.034 | iter time: 57.86 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.920, val: 3.034 | iter time: 58.61 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.773, val: 3.034 | iter time: 87.23 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.731, val: 3.034 | iter time: 56.92 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.679, val: 3.034 | iter time: 58.45 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.711, val: 3.034 | iter time: 58.42 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.790, val: 3.034 | iter time: 57.79 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.717, val: 3.034 | iter time: 57.83 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.694, val: 3.034 | iter time: 61.91 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.702, val: 3.034 | iter time: 58.78 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.832, val: 3.034 | iter time: 86.64 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.830, val: 3.034 | iter time: 56.66 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.866, val: 3.034 | iter time: 57.79 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.887, val: 3.034 | iter time: 58.44 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.807, val: 3.034 | iter time: 57.63 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.792, val: 3.034 | iter time: 57.57 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.779, val: 3.034 | iter time: 57.46 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.703, val: 3.034 | iter time: 58.31 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.654, val: 3.034 | iter time: 86.97 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.623, val: 3.034 | iter time: 57.12 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.568, val: 3.034 | iter time: 57.66 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.554, val: 3.034 | iter time: 58.49 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.540, val: 3.034 | iter time: 57.62 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.532, val: 3.034 | iter time: 57.99 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.553, val: 3.034 | iter time: 58.04 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.547, val: 3.034 | iter time: 58.20 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.566, val: 3.034 | iter time: 87.27 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.581, val: 3.034 | iter time: 57.32 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.583, val: 3.034 | iter time: 58.15 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.621, val: 3.034 | iter time: 57.92 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.673, val: 3.034 | iter time: 58.65 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.624, val: 3.034 | iter time: 57.75 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.581, val: 3.034 | iter time: 57.96 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.629, val: 3.034 | iter time: 57.63 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.612, val: 3.034 | iter time: 87.28 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.593, val: 3.034 | iter time: 57.36 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.588, val: 3.034 | iter time: 57.64 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.518, val: 3.034 | iter time: 58.42 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.499, val: 3.034 | iter time: 58.51 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.483, val: 3.034 | iter time: 58.07 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.482, val: 3.034 | iter time: 58.23 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.422, val: 3.034 | iter time: 57.77 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.416, val: 3.034 | iter time: 87.44 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.400, val: 3.034 | iter time: 56.93 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.467, val: 3.034 | iter time: 57.94 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.491, val: 3.034 | iter time: 60.43 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.467, val: 3.034 | iter time: 59.65 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.561, val: 3.034 | iter time: 58.22 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.592, val: 3.034 | iter time: 58.37 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.684, val: 3.034 | iter time: 58.22 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.646, val: 3.034 | iter time: 87.59 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.650, val: 3.034 | iter time: 57.49 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.619, val: 3.034 | iter time: 58.07 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.606, val: 3.034 | iter time: 58.01 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.627, val: 3.034 | iter time: 58.82 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.645, val: 3.034 | iter time: 58.24 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.643, val: 3.034 | iter time: 58.32 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.601, val: 3.034 | iter time: 58.46 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.629, val: 3.034 | iter time: 88.13 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.612, val: 3.034 | iter time: 57.43 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.602, val: 3.034 | iter time: 58.21 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.635, val: 3.034 | iter time: 58.38 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.635, val: 3.034 | iter time: 58.83 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.536, val: 3.034 | iter time: 58.03 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.538, val: 3.034 | iter time: 58.34 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.545, val: 3.034 | iter time: 58.03 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.511, val: 3.034 | iter time: 87.55 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.602, val: 3.034 | iter time: 57.30 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.651, val: 3.034 | iter time: 57.96 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.566, val: 3.034 | iter time: 57.91 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.518, val: 3.034 | iter time: 59.72 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.530, val: 3.034 | iter time: 57.97 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.489, val: 3.034 | iter time: 58.85 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.439, val: 3.034 | iter time: 58.24 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.447, val: 3.034 | iter time: 87.93 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.407, val: 3.034 | iter time: 56.82 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.326, val: 3.034 | iter time: 57.67 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.379, val: 3.034 | iter time: 57.69 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.341, val: 3.034 | iter time: 58.19 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.385, val: 3.034 | iter time: 57.71 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.417, val: 3.034 | iter time: 57.52 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.444, val: 3.034 | iter time: 57.86 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.449, val: 3.034 | iter time: 87.99 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.415, val: 3.034 | iter time: 57.15 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.421, val: 3.034 | iter time: 57.67 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.384, val: 3.034 | iter time: 57.29 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.475, val: 3.034 | iter time: 58.58 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.475, val: 3.034 | iter time: 58.04 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.452, val: 3.034 | iter time: 57.96 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.463, val: 3.034 | iter time: 57.75 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.422, val: 3.034 | iter time: 87.36 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.381, val: 3.034 | iter time: 57.35 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.382, val: 3.034 | iter time: 57.68 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.444, val: 3.034 | iter time: 57.80 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.407, val: 3.034 | iter time: 58.42 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.366, val: 3.034 | iter time: 57.33 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.371, val: 3.034 | iter time: 57.63 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.378, val: 3.034 | iter time: 57.87 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.406, val: 3.034 | iter time: 87.35 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.478, val: 3.034 | iter time: 57.08 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.477, val: 3.034 | iter time: 57.86 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.449, val: 3.034 | iter time: 57.45 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.440, val: 3.034 | iter time: 58.37 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.434, val: 3.034 | iter time: 58.26 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.412, val: 3.034 | iter time: 57.73 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.384, val: 3.034 | iter time: 57.61 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.408, val: 3.034 | iter time: 86.91 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.377, val: 3.034 | iter time: 56.90 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.395, val: 3.034 | iter time: 57.83 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.367, val: 3.034 | iter time: 57.63 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.359, val: 3.034 | iter time: 57.96 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.365, val: 3.034 | iter time: 57.83 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.342, val: 3.034 | iter time: 57.66 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.288, val: 3.034 | iter time: 57.74 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.268, val: 3.034 | iter time: 87.37 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: air
+
+iter 400: val loss 2.1888, val time: 398.38 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.233, val: 2.189 | iter time: 60.99 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.182, val: 2.189 | iter time: 58.68 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.192, val: 2.189 | iter time: 58.10 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.161, val: 2.189 | iter time: 58.29 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.101, val: 2.189 | iter time: 57.76 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.168, val: 2.189 | iter time: 58.07 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.180, val: 2.189 | iter time: 57.70 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.207, val: 2.189 | iter time: 87.96 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.293, val: 2.189 | iter time: 56.79 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.329, val: 2.189 | iter time: 57.81 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.341, val: 2.189 | iter time: 57.91 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.397, val: 2.189 | iter time: 58.71 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.406, val: 2.189 | iter time: 58.44 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.340, val: 2.189 | iter time: 58.11 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.351, val: 2.189 | iter time: 58.05 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.315, val: 2.189 | iter time: 88.41 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.285, val: 2.189 | iter time: 57.08 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.270, val: 2.189 | iter time: 58.02 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.226, val: 2.189 | iter time: 58.07 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.159, val: 2.189 | iter time: 58.61 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.176, val: 2.189 | iter time: 58.06 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.161, val: 2.189 | iter time: 58.21 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.152, val: 2.189 | iter time: 58.01 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.149, val: 2.189 | iter time: 87.51 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.165, val: 2.189 | iter time: 57.19 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.201, val: 2.189 | iter time: 57.69 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.237, val: 2.189 | iter time: 58.03 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.256, val: 2.189 | iter time: 58.44 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.285, val: 2.189 | iter time: 58.05 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.294, val: 2.189 | iter time: 58.29 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.314, val: 2.189 | iter time: 57.96 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.310, val: 2.189 | iter time: 88.06 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.293, val: 2.189 | iter time: 57.35 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.275, val: 2.189 | iter time: 58.12 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.264, val: 2.189 | iter time: 57.77 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.301, val: 2.189 | iter time: 58.91 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.293, val: 2.189 | iter time: 58.03 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.356, val: 2.189 | iter time: 58.18 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.367, val: 2.189 | iter time: 58.05 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.347, val: 2.189 | iter time: 87.46 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.343, val: 2.189 | iter time: 57.11 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.348, val: 2.189 | iter time: 57.65 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.371, val: 2.189 | iter time: 58.08 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.351, val: 2.189 | iter time: 58.65 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.382, val: 2.189 | iter time: 58.02 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.317, val: 2.189 | iter time: 60.73 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.257, val: 2.189 | iter time: 58.16 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.269, val: 2.189 | iter time: 87.32 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.260, val: 2.189 | iter time: 57.32 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.253, val: 2.189 | iter time: 58.24 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.234, val: 2.189 | iter time: 58.12 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.221, val: 2.189 | iter time: 58.86 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.157, val: 2.189 | iter time: 58.07 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.210, val: 2.189 | iter time: 58.56 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.226, val: 2.189 | iter time: 58.13 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.183, val: 2.189 | iter time: 87.33 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.167, val: 2.189 | iter time: 57.23 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.169, val: 2.189 | iter time: 58.07 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.130, val: 2.189 | iter time: 57.56 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.141, val: 2.189 | iter time: 58.55 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.183, val: 2.189 | iter time: 58.03 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.100, val: 2.189 | iter time: 58.11 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.104, val: 2.189 | iter time: 58.01 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.120, val: 2.189 | iter time: 87.12 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.121, val: 2.189 | iter time: 58.08 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.056, val: 2.189 | iter time: 57.97 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.067, val: 2.189 | iter time: 58.01 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.051, val: 2.189 | iter time: 58.79 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.050, val: 2.189 | iter time: 58.04 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.109, val: 2.189 | iter time: 57.81 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.115, val: 2.189 | iter time: 57.73 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.168, val: 2.189 | iter time: 88.03 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.170, val: 2.189 | iter time: 58.39 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.215, val: 2.189 | iter time: 59.07 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.230, val: 2.189 | iter time: 58.55 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.230, val: 2.189 | iter time: 59.06 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.265, val: 2.189 | iter time: 59.43 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.276, val: 2.189 | iter time: 59.07 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.317, val: 2.189 | iter time: 58.67 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.334, val: 2.189 | iter time: 89.59 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.305, val: 2.189 | iter time: 59.99 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.300, val: 2.189 | iter time: 59.27 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.286, val: 2.189 | iter time: 58.32 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.298, val: 2.189 | iter time: 59.15 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.204, val: 2.189 | iter time: 58.70 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.172, val: 2.189 | iter time: 57.99 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.136, val: 2.189 | iter time: 57.99 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.094, val: 2.189 | iter time: 87.79 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.115, val: 2.189 | iter time: 57.20 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.087, val: 2.189 | iter time: 58.13 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.105, val: 2.189 | iter time: 57.98 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.125, val: 2.189 | iter time: 58.66 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.137, val: 2.189 | iter time: 58.52 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.167, val: 2.189 | iter time: 57.73 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.147, val: 2.189 | iter time: 57.94 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.176, val: 2.189 | iter time: 87.30 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.227, val: 2.189 | iter time: 57.33 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.277, val: 2.189 | iter time: 58.30 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.243, val: 2.189 | iter time: 58.00 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.163, val: 2.189 | iter time: 58.80 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.182, val: 2.189 | iter time: 58.08 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.152, val: 2.189 | iter time: 58.01 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.144, val: 2.189 | iter time: 58.71 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.112, val: 2.189 | iter time: 87.57 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.053, val: 2.189 | iter time: 57.32 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.036, val: 2.189 | iter time: 58.00 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.035, val: 2.189 | iter time: 57.97 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.074, val: 2.189 | iter time: 58.55 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.053, val: 2.189 | iter time: 57.80 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.036, val: 2.189 | iter time: 57.76 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.053, val: 2.189 | iter time: 58.01 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.027, val: 2.189 | iter time: 87.43 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.041, val: 2.189 | iter time: 56.97 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.033, val: 2.189 | iter time: 59.17 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.039, val: 2.189 | iter time: 58.25 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.050, val: 2.189 | iter time: 58.92 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.105, val: 2.189 | iter time: 58.32 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.141, val: 2.189 | iter time: 58.31 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.124, val: 2.189 | iter time: 58.21 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.146, val: 2.189 | iter time: 87.73 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.153, val: 2.189 | iter time: 57.19 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.170, val: 2.189 | iter time: 58.14 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.185, val: 2.189 | iter time: 58.16 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.182, val: 2.189 | iter time: 58.87 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.084, val: 2.189 | iter time: 57.96 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.038, val: 2.189 | iter time: 58.09 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.044, val: 2.189 | iter time: 58.38 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.079, val: 2.189 | iter time: 87.94 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.099, val: 2.189 | iter time: 57.34 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.102, val: 2.189 | iter time: 59.20 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.066, val: 2.189 | iter time: 58.46 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.078, val: 2.189 | iter time: 59.28 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.108, val: 2.189 | iter time: 58.47 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.181, val: 2.189 | iter time: 58.40 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.196, val: 2.189 | iter time: 58.48 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.131, val: 2.189 | iter time: 88.07 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.099, val: 2.189 | iter time: 57.52 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.054, val: 2.189 | iter time: 58.07 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.086, val: 2.189 | iter time: 58.22 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.070, val: 2.189 | iter time: 59.26 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.106, val: 2.189 | iter time: 58.45 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.099, val: 2.189 | iter time: 58.43 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.179, val: 2.189 | iter time: 57.79 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.207, val: 2.189 | iter time: 87.68 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.208, val: 2.189 | iter time: 57.18 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.201, val: 2.189 | iter time: 58.20 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.213, val: 2.189 | iter time: 58.82 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.230, val: 2.189 | iter time: 57.64 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.221, val: 2.189 | iter time: 57.67 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.156, val: 2.189 | iter time: 57.99 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.079, val: 2.189 | iter time: 57.89 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.112, val: 2.189 | iter time: 87.19 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.59 s
+| - Tok/sec : 3226.54 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 2.005 | val ppl: 7.423
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2501_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2501_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..50fbb4397e879bc9fc824dab208ea4149f4e5d83
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2501_full.txt
@@ -0,0 +1,640 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2501_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2501'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 4.190, val: n/a | iter time: 221.79 ms
+Epoch 1 | iter 2 step 0 | loss train: 4.186, val: n/a | iter time: 67.78 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.918, val: n/a | iter time: 58.87 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.985, val: n/a | iter time: 61.28 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.871, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.816, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.815, val: n/a | iter time: 57.41 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.864, val: n/a | iter time: 163.61 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.743, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.651, val: n/a | iter time: 58.62 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.655, val: n/a | iter time: 57.49 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.631, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.671, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.646, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.577, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.433, val: n/a | iter time: 87.14 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.490, val: n/a | iter time: 56.65 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.527, val: n/a | iter time: 57.40 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.538, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.565, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.576, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.612, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.576, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.578, val: n/a | iter time: 86.70 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.656, val: n/a | iter time: 56.72 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.620, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.633, val: n/a | iter time: 57.93 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.581, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.570, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.623, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.653, val: n/a | iter time: 57.63 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.717, val: n/a | iter time: 86.67 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.699, val: n/a | iter time: 56.20 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.714, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.693, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.679, val: n/a | iter time: 57.18 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.653, val: n/a | iter time: 57.18 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.648, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.735, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.693, val: n/a | iter time: 87.05 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.662, val: n/a | iter time: 56.48 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.640, val: n/a | iter time: 57.53 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.674, val: n/a | iter time: 57.09 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.677, val: n/a | iter time: 57.15 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.671, val: n/a | iter time: 57.81 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.683, val: n/a | iter time: 57.11 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.715, val: n/a | iter time: 56.95 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.728, val: n/a | iter time: 86.67 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.729, val: n/a | iter time: 56.68 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.727, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.754, val: n/a | iter time: 56.91 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.738, val: n/a | iter time: 57.54 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.705, val: n/a | iter time: 57.27 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.569, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.479, val: n/a | iter time: 57.38 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.484, val: n/a | iter time: 86.58 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.496, val: n/a | iter time: 56.69 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.460, val: n/a | iter time: 57.19 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.411, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.411, val: n/a | iter time: 57.18 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.477, val: n/a | iter time: 59.64 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.574, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.558, val: n/a | iter time: 57.93 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.594, val: n/a | iter time: 86.21 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.582, val: n/a | iter time: 56.76 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.651, val: n/a | iter time: 57.43 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.638, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.672, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.617, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.579, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.646, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.643, val: n/a | iter time: 86.15 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.633, val: n/a | iter time: 56.90 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.590, val: n/a | iter time: 57.25 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.622, val: n/a | iter time: 57.03 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.627, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.687, val: n/a | iter time: 57.48 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.705, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.666, val: n/a | iter time: 57.04 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.639, val: n/a | iter time: 86.99 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.583, val: n/a | iter time: 56.58 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.600, val: n/a | iter time: 57.93 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.620, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.639, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.584, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.601, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.617, val: n/a | iter time: 57.09 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.541, val: n/a | iter time: 87.32 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.574, val: n/a | iter time: 56.72 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.551, val: n/a | iter time: 57.61 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.469, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.435, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.483, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.514, val: n/a | iter time: 57.61 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.510, val: n/a | iter time: 57.86 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.679, val: n/a | iter time: 86.40 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.599, val: n/a | iter time: 56.56 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.615, val: n/a | iter time: 57.35 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.616, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.618, val: n/a | iter time: 57.23 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.594, val: n/a | iter time: 57.19 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.576, val: n/a | iter time: 57.81 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.553, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.443, val: n/a | iter time: 86.11 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.533, val: n/a | iter time: 56.35 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.520, val: n/a | iter time: 57.17 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.499, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.507, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.596, val: n/a | iter time: 57.27 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.519, val: n/a | iter time: 56.98 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.493, val: n/a | iter time: 56.89 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.487, val: n/a | iter time: 86.78 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.455, val: n/a | iter time: 56.05 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.534, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.538, val: n/a | iter time: 57.41 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.516, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.453, val: n/a | iter time: 57.18 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.438, val: n/a | iter time: 60.08 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.433, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.439, val: n/a | iter time: 86.35 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.421, val: n/a | iter time: 56.54 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.394, val: n/a | iter time: 57.87 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.497, val: n/a | iter time: 57.37 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.497, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.379, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.459, val: n/a | iter time: 57.03 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.544, val: n/a | iter time: 57.84 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.507, val: n/a | iter time: 86.19 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.521, val: n/a | iter time: 56.30 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.453, val: n/a | iter time: 57.22 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.433, val: n/a | iter time: 57.03 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.513, val: n/a | iter time: 57.39 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.533, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.493, val: n/a | iter time: 57.04 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.455, val: n/a | iter time: 57.03 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.446, val: n/a | iter time: 86.93 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.503, val: n/a | iter time: 56.60 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.546, val: n/a | iter time: 57.12 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.483, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.424, val: n/a | iter time: 57.19 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.488, val: n/a | iter time: 57.48 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.438, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.461, val: n/a | iter time: 57.21 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.519, val: n/a | iter time: 85.83 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.452, val: n/a | iter time: 56.23 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.484, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.581, val: n/a | iter time: 57.22 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.554, val: n/a | iter time: 57.11 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.489, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.531, val: n/a | iter time: 57.13 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.579, val: n/a | iter time: 57.10 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.543, val: n/a | iter time: 86.13 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.575, val: n/a | iter time: 56.63 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.618, val: n/a | iter time: 57.15 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.546, val: n/a | iter time: 57.27 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.521, val: n/a | iter time: 57.03 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.541, val: n/a | iter time: 57.33 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.586, val: n/a | iter time: 57.08 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.540, val: n/a | iter time: 57.11 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.592, val: n/a | iter time: 88.47 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.511, val: n/a | iter time: 57.22 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.426, val: n/a | iter time: 57.63 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.415, val: n/a | iter time: 57.58 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.371, val: n/a | iter time: 57.22 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.449, val: n/a | iter time: 57.16 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.444, val: n/a | iter time: 57.15 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.377, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.341, val: n/a | iter time: 85.96 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.358, val: n/a | iter time: 56.66 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.314, val: n/a | iter time: 56.96 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.330, val: n/a | iter time: 57.35 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.334, val: n/a | iter time: 57.43 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.299, val: n/a | iter time: 57.22 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.284, val: n/a | iter time: 57.38 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.270, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.291, val: n/a | iter time: 86.08 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.387, val: n/a | iter time: 57.02 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.450, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.403, val: n/a | iter time: 57.39 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.456, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.401, val: n/a | iter time: 57.41 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.360, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.390, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.324, val: n/a | iter time: 86.04 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.238, val: n/a | iter time: 56.86 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.222, val: n/a | iter time: 57.24 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.231, val: n/a | iter time: 56.91 ms
+Epoch 1 | iter 188 step 23 | loss train: 3.174, val: n/a | iter time: 57.11 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.271, val: n/a | iter time: 57.39 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.310, val: n/a | iter time: 57.50 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.303, val: n/a | iter time: 57.33 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.336, val: n/a | iter time: 86.04 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.330, val: n/a | iter time: 56.96 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.275, val: n/a | iter time: 57.26 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.291, val: n/a | iter time: 57.00 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.389, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.340, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 198 step 24 | loss train: 3.263, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 199 step 24 | loss train: 3.232, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 200 step 25 | loss train: 3.212, val: n/a | iter time: 86.30 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: Blood\\
+\midrule
+
+
+\end{tabular}
+}
+\end{table*}
+
+\begin{table*}[!ht]
+\caption{Counterfactual examples generated using \model and \modelfact for \textit{Class} and \textit{Knowledge} tasks.}
+\label{tab:cf_kd_results}
+\centering
+\resizebox{\textwidth}{!}{
+\begin{tabular}{l|cccc
+
+iter 200: val loss 3.1003, val time: 2278.95 ms
+Epoch 1 | iter 201 step 25 | loss train: 3.218, val: 3.100 | iter time: 61.19 ms
+Epoch 1 | iter 202 step 25 | loss train: 3.231, val: 3.100 | iter time: 58.36 ms
+Epoch 1 | iter 203 step 25 | loss train: 3.181, val: 3.100 | iter time: 57.94 ms
+Epoch 1 | iter 204 step 25 | loss train: 3.108, val: 3.100 | iter time: 57.75 ms
+Epoch 1 | iter 205 step 25 | loss train: 3.080, val: 3.100 | iter time: 57.12 ms
+Epoch 1 | iter 206 step 25 | loss train: 3.070, val: 3.100 | iter time: 57.74 ms
+Epoch 1 | iter 207 step 25 | loss train: 3.103, val: 3.100 | iter time: 57.24 ms
+Epoch 1 | iter 208 step 26 | loss train: 3.186, val: 3.100 | iter time: 86.84 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 3.278, val: 3.100 | iter time: 56.59 ms
+Epoch 1 | iter 210 step 26 | loss train: 3.294, val: 3.100 | iter time: 57.78 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.353, val: 3.100 | iter time: 57.34 ms
+Epoch 1 | iter 212 step 26 | loss train: 3.290, val: 3.100 | iter time: 57.77 ms
+Epoch 1 | iter 213 step 26 | loss train: 3.292, val: 3.100 | iter time: 57.47 ms
+Epoch 1 | iter 214 step 26 | loss train: 3.295, val: 3.100 | iter time: 57.72 ms
+Epoch 1 | iter 215 step 26 | loss train: 3.207, val: 3.100 | iter time: 57.57 ms
+Epoch 1 | iter 216 step 27 | loss train: 3.093, val: 3.100 | iter time: 86.49 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.958, val: 3.100 | iter time: 56.73 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.944, val: 3.100 | iter time: 57.64 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.919, val: 3.100 | iter time: 57.52 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.952, val: 3.100 | iter time: 57.94 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.972, val: 3.100 | iter time: 58.21 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.999, val: 3.100 | iter time: 57.95 ms
+Epoch 1 | iter 223 step 27 | loss train: 3.111, val: 3.100 | iter time: 57.81 ms
+Epoch 1 | iter 224 step 28 | loss train: 3.211, val: 3.100 | iter time: 86.82 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 3.226, val: 3.100 | iter time: 56.72 ms
+Epoch 1 | iter 226 step 28 | loss train: 3.232, val: 3.100 | iter time: 57.97 ms
+Epoch 1 | iter 227 step 28 | loss train: 3.197, val: 3.100 | iter time: 58.07 ms
+Epoch 1 | iter 228 step 28 | loss train: 3.228, val: 3.100 | iter time: 57.60 ms
+Epoch 1 | iter 229 step 28 | loss train: 3.160, val: 3.100 | iter time: 57.87 ms
+Epoch 1 | iter 230 step 28 | loss train: 3.116, val: 3.100 | iter time: 57.50 ms
+Epoch 1 | iter 231 step 28 | loss train: 3.065, val: 3.100 | iter time: 57.49 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.979, val: 3.100 | iter time: 86.71 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 3.041, val: 3.100 | iter time: 57.73 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.986, val: 3.100 | iter time: 57.68 ms
+Epoch 1 | iter 235 step 29 | loss train: 3.021, val: 3.100 | iter time: 57.15 ms
+Epoch 1 | iter 236 step 29 | loss train: 3.013, val: 3.100 | iter time: 57.65 ms
+Epoch 1 | iter 237 step 29 | loss train: 3.042, val: 3.100 | iter time: 57.42 ms
+Epoch 1 | iter 238 step 29 | loss train: 3.060, val: 3.100 | iter time: 57.26 ms
+Epoch 1 | iter 239 step 29 | loss train: 3.015, val: 3.100 | iter time: 57.55 ms
+Epoch 1 | iter 240 step 30 | loss train: 3.051, val: 3.100 | iter time: 86.75 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 3.023, val: 3.100 | iter time: 56.87 ms
+Epoch 1 | iter 242 step 30 | loss train: 3.063, val: 3.100 | iter time: 57.32 ms
+Epoch 1 | iter 243 step 30 | loss train: 3.079, val: 3.100 | iter time: 57.57 ms
+Epoch 1 | iter 244 step 30 | loss train: 3.079, val: 3.100 | iter time: 57.88 ms
+Epoch 1 | iter 245 step 30 | loss train: 3.099, val: 3.100 | iter time: 57.58 ms
+Epoch 1 | iter 246 step 30 | loss train: 3.073, val: 3.100 | iter time: 57.29 ms
+Epoch 1 | iter 247 step 30 | loss train: 3.116, val: 3.100 | iter time: 57.48 ms
+Epoch 1 | iter 248 step 31 | loss train: 3.060, val: 3.100 | iter time: 86.58 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 3.017, val: 3.100 | iter time: 56.47 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.958, val: 3.100 | iter time: 57.93 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.918, val: 3.100 | iter time: 57.67 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.874, val: 3.100 | iter time: 58.15 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.896, val: 3.100 | iter time: 57.64 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.940, val: 3.100 | iter time: 57.48 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.915, val: 3.100 | iter time: 57.29 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.907, val: 3.100 | iter time: 86.07 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.927, val: 3.100 | iter time: 56.23 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.976, val: 3.100 | iter time: 57.34 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.916, val: 3.100 | iter time: 57.07 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.914, val: 3.100 | iter time: 57.64 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.873, val: 3.100 | iter time: 57.34 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.893, val: 3.100 | iter time: 57.38 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.884, val: 3.100 | iter time: 57.20 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.896, val: 3.100 | iter time: 86.30 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.851, val: 3.100 | iter time: 56.44 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.859, val: 3.100 | iter time: 57.14 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.913, val: 3.100 | iter time: 58.16 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.942, val: 3.100 | iter time: 57.52 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.999, val: 3.100 | iter time: 57.13 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.998, val: 3.100 | iter time: 57.56 ms
+Epoch 1 | iter 271 step 33 | loss train: 3.027, val: 3.100 | iter time: 56.99 ms
+Epoch 1 | iter 272 step 34 | loss train: 3.069, val: 3.100 | iter time: 86.71 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 3.101, val: 3.100 | iter time: 56.47 ms
+Epoch 1 | iter 274 step 34 | loss train: 3.040, val: 3.100 | iter time: 57.14 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.989, val: 3.100 | iter time: 57.21 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.942, val: 3.100 | iter time: 57.97 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.865, val: 3.100 | iter time: 57.16 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.833, val: 3.100 | iter time: 57.45 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.834, val: 3.100 | iter time: 57.39 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.848, val: 3.100 | iter time: 86.03 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.870, val: 3.100 | iter time: 56.31 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.913, val: 3.100 | iter time: 57.01 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.897, val: 3.100 | iter time: 57.48 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.882, val: 3.100 | iter time: 57.52 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.939, val: 3.100 | iter time: 57.43 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.932, val: 3.100 | iter time: 57.07 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.911, val: 3.100 | iter time: 57.29 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.775, val: 3.100 | iter time: 86.72 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.723, val: 3.100 | iter time: 56.50 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.690, val: 3.100 | iter time: 57.03 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.715, val: 3.100 | iter time: 57.26 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.789, val: 3.100 | iter time: 57.32 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.733, val: 3.100 | iter time: 57.35 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.709, val: 3.100 | iter time: 57.46 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.726, val: 3.100 | iter time: 57.12 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.872, val: 3.100 | iter time: 86.08 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.849, val: 3.100 | iter time: 56.35 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.879, val: 3.100 | iter time: 56.98 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.912, val: 3.100 | iter time: 57.33 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.842, val: 3.100 | iter time: 57.26 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.807, val: 3.100 | iter time: 57.07 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.782, val: 3.100 | iter time: 57.12 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.710, val: 3.100 | iter time: 57.18 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.654, val: 3.100 | iter time: 86.41 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.642, val: 3.100 | iter time: 57.14 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.574, val: 3.100 | iter time: 57.62 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.544, val: 3.100 | iter time: 57.26 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.535, val: 3.100 | iter time: 57.22 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.547, val: 3.100 | iter time: 57.29 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.581, val: 3.100 | iter time: 57.34 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.582, val: 3.100 | iter time: 57.22 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.584, val: 3.100 | iter time: 85.98 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.597, val: 3.100 | iter time: 56.64 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.595, val: 3.100 | iter time: 57.42 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.643, val: 3.100 | iter time: 59.65 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.681, val: 3.100 | iter time: 57.95 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.629, val: 3.100 | iter time: 57.15 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.578, val: 3.100 | iter time: 57.33 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.617, val: 3.100 | iter time: 56.98 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.620, val: 3.100 | iter time: 86.37 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.603, val: 3.100 | iter time: 56.54 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.607, val: 3.100 | iter time: 57.01 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.539, val: 3.100 | iter time: 57.10 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.513, val: 3.100 | iter time: 57.58 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.496, val: 3.100 | iter time: 57.46 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.500, val: 3.100 | iter time: 59.53 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.433, val: 3.100 | iter time: 59.31 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.417, val: 3.100 | iter time: 87.78 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.397, val: 3.100 | iter time: 57.85 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.456, val: 3.100 | iter time: 58.71 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.467, val: 3.100 | iter time: 58.17 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.448, val: 3.100 | iter time: 58.19 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.542, val: 3.100 | iter time: 58.70 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.575, val: 3.100 | iter time: 58.92 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.644, val: 3.100 | iter time: 58.31 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.600, val: 3.100 | iter time: 87.12 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.595, val: 3.100 | iter time: 58.64 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.552, val: 3.100 | iter time: 58.20 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.537, val: 3.100 | iter time: 58.22 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.548, val: 3.100 | iter time: 57.91 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.559, val: 3.100 | iter time: 57.90 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.537, val: 3.100 | iter time: 57.78 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.520, val: 3.100 | iter time: 57.95 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.542, val: 3.100 | iter time: 86.82 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.523, val: 3.100 | iter time: 56.87 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.523, val: 3.100 | iter time: 57.68 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.564, val: 3.100 | iter time: 58.02 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.579, val: 3.100 | iter time: 57.85 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.482, val: 3.100 | iter time: 57.60 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.467, val: 3.100 | iter time: 57.71 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.455, val: 3.100 | iter time: 57.57 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.406, val: 3.100 | iter time: 86.33 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.490, val: 3.100 | iter time: 56.55 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.548, val: 3.100 | iter time: 57.36 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.462, val: 3.100 | iter time: 57.53 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.400, val: 3.100 | iter time: 57.74 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.412, val: 3.100 | iter time: 57.51 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.392, val: 3.100 | iter time: 58.29 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.362, val: 3.100 | iter time: 57.91 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.367, val: 3.100 | iter time: 87.41 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.330, val: 3.100 | iter time: 56.83 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.228, val: 3.100 | iter time: 57.52 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.278, val: 3.100 | iter time: 57.80 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.248, val: 3.100 | iter time: 57.90 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.277, val: 3.100 | iter time: 58.01 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.309, val: 3.100 | iter time: 57.77 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.310, val: 3.100 | iter time: 57.94 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.325, val: 3.100 | iter time: 86.27 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.283, val: 3.100 | iter time: 56.55 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.303, val: 3.100 | iter time: 57.55 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.256, val: 3.100 | iter time: 57.29 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.358, val: 3.100 | iter time: 57.30 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.359, val: 3.100 | iter time: 57.69 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.346, val: 3.100 | iter time: 57.41 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.388, val: 3.100 | iter time: 57.37 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.355, val: 3.100 | iter time: 86.06 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.340, val: 3.100 | iter time: 56.90 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.336, val: 3.100 | iter time: 57.40 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.408, val: 3.100 | iter time: 57.71 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.381, val: 3.100 | iter time: 57.64 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.346, val: 3.100 | iter time: 57.19 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.343, val: 3.100 | iter time: 57.26 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.338, val: 3.100 | iter time: 57.72 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.363, val: 3.100 | iter time: 86.50 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.421, val: 3.100 | iter time: 56.89 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.430, val: 3.100 | iter time: 57.72 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.404, val: 3.100 | iter time: 57.73 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.381, val: 3.100 | iter time: 57.79 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.382, val: 3.100 | iter time: 57.30 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.352, val: 3.100 | iter time: 57.57 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.337, val: 3.100 | iter time: 57.68 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.362, val: 3.100 | iter time: 86.16 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.348, val: 3.100 | iter time: 56.60 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.372, val: 3.100 | iter time: 57.43 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.339, val: 3.100 | iter time: 57.52 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.340, val: 3.100 | iter time: 59.42 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.345, val: 3.100 | iter time: 58.22 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.333, val: 3.100 | iter time: 57.73 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.262, val: 3.100 | iter time: 57.91 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.261, val: 3.100 | iter time: 86.46 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: air
+
+iter 400: val loss 2.1610, val time: 395.67 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.219, val: 2.161 | iter time: 60.98 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.149, val: 2.161 | iter time: 58.89 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.150, val: 2.161 | iter time: 58.13 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.115, val: 2.161 | iter time: 57.77 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.056, val: 2.161 | iter time: 57.41 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.118, val: 2.161 | iter time: 57.70 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.146, val: 2.161 | iter time: 57.47 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.157, val: 2.161 | iter time: 87.19 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.240, val: 2.161 | iter time: 56.55 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.301, val: 2.161 | iter time: 57.68 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.328, val: 2.161 | iter time: 57.46 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.383, val: 2.161 | iter time: 58.04 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.395, val: 2.161 | iter time: 58.21 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.347, val: 2.161 | iter time: 57.87 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.354, val: 2.161 | iter time: 58.13 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.336, val: 2.161 | iter time: 86.80 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.329, val: 2.161 | iter time: 56.71 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.301, val: 2.161 | iter time: 57.45 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.239, val: 2.161 | iter time: 57.71 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.177, val: 2.161 | iter time: 57.63 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.191, val: 2.161 | iter time: 57.58 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.164, val: 2.161 | iter time: 57.73 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.152, val: 2.161 | iter time: 57.73 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.137, val: 2.161 | iter time: 86.55 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.123, val: 2.161 | iter time: 56.74 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.156, val: 2.161 | iter time: 57.19 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.211, val: 2.161 | iter time: 57.68 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.221, val: 2.161 | iter time: 57.43 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.255, val: 2.161 | iter time: 57.46 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.266, val: 2.161 | iter time: 57.85 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.304, val: 2.161 | iter time: 57.63 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.293, val: 2.161 | iter time: 86.45 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.288, val: 2.161 | iter time: 56.99 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.290, val: 2.161 | iter time: 57.41 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.276, val: 2.161 | iter time: 57.57 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.317, val: 2.161 | iter time: 57.88 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.324, val: 2.161 | iter time: 57.44 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.382, val: 2.161 | iter time: 57.61 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.364, val: 2.161 | iter time: 57.84 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.350, val: 2.161 | iter time: 86.86 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.359, val: 2.161 | iter time: 56.84 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.351, val: 2.161 | iter time: 57.11 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.379, val: 2.161 | iter time: 57.72 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.355, val: 2.161 | iter time: 57.87 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.378, val: 2.161 | iter time: 57.59 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.331, val: 2.161 | iter time: 57.46 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.283, val: 2.161 | iter time: 58.95 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.308, val: 2.161 | iter time: 87.13 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.275, val: 2.161 | iter time: 57.12 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.266, val: 2.161 | iter time: 58.41 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.258, val: 2.161 | iter time: 57.76 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.262, val: 2.161 | iter time: 57.93 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.199, val: 2.161 | iter time: 57.70 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.242, val: 2.161 | iter time: 58.23 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.266, val: 2.161 | iter time: 58.25 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.223, val: 2.161 | iter time: 86.69 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.213, val: 2.161 | iter time: 56.77 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.207, val: 2.161 | iter time: 57.64 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.166, val: 2.161 | iter time: 57.38 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.149, val: 2.161 | iter time: 57.67 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.188, val: 2.161 | iter time: 57.65 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.113, val: 2.161 | iter time: 57.67 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.107, val: 2.161 | iter time: 57.72 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.115, val: 2.161 | iter time: 86.36 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.122, val: 2.161 | iter time: 56.77 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.082, val: 2.161 | iter time: 57.22 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.081, val: 2.161 | iter time: 57.68 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.088, val: 2.161 | iter time: 57.74 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.104, val: 2.161 | iter time: 57.69 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.157, val: 2.161 | iter time: 57.34 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.176, val: 2.161 | iter time: 57.63 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.238, val: 2.161 | iter time: 87.26 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.249, val: 2.161 | iter time: 56.79 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.281, val: 2.161 | iter time: 57.61 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.293, val: 2.161 | iter time: 57.77 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.303, val: 2.161 | iter time: 57.72 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.330, val: 2.161 | iter time: 61.14 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.355, val: 2.161 | iter time: 58.67 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.390, val: 2.161 | iter time: 58.66 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.392, val: 2.161 | iter time: 87.13 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.358, val: 2.161 | iter time: 56.87 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.350, val: 2.161 | iter time: 57.49 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.350, val: 2.161 | iter time: 57.49 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.344, val: 2.161 | iter time: 57.74 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.236, val: 2.161 | iter time: 57.60 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.182, val: 2.161 | iter time: 57.40 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.153, val: 2.161 | iter time: 57.65 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.128, val: 2.161 | iter time: 86.90 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.145, val: 2.161 | iter time: 57.36 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.118, val: 2.161 | iter time: 57.76 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.127, val: 2.161 | iter time: 57.71 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.149, val: 2.161 | iter time: 57.96 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.173, val: 2.161 | iter time: 57.87 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.220, val: 2.161 | iter time: 57.34 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.181, val: 2.161 | iter time: 57.81 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.204, val: 2.161 | iter time: 86.20 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.257, val: 2.161 | iter time: 57.03 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.307, val: 2.161 | iter time: 57.61 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.260, val: 2.161 | iter time: 57.84 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.191, val: 2.161 | iter time: 57.89 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.200, val: 2.161 | iter time: 57.69 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.156, val: 2.161 | iter time: 57.60 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.161, val: 2.161 | iter time: 58.30 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.128, val: 2.161 | iter time: 86.54 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.069, val: 2.161 | iter time: 57.36 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.059, val: 2.161 | iter time: 57.76 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.080, val: 2.161 | iter time: 57.77 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.110, val: 2.161 | iter time: 57.96 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.094, val: 2.161 | iter time: 57.37 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.083, val: 2.161 | iter time: 57.17 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.105, val: 2.161 | iter time: 57.65 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.062, val: 2.161 | iter time: 86.58 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.063, val: 2.161 | iter time: 56.55 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.043, val: 2.161 | iter time: 57.50 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.031, val: 2.161 | iter time: 57.61 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.049, val: 2.161 | iter time: 57.67 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.107, val: 2.161 | iter time: 57.81 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.149, val: 2.161 | iter time: 60.56 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.134, val: 2.161 | iter time: 58.95 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.169, val: 2.161 | iter time: 87.11 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.166, val: 2.161 | iter time: 56.86 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.193, val: 2.161 | iter time: 58.05 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.215, val: 2.161 | iter time: 57.98 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.205, val: 2.161 | iter time: 57.75 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.103, val: 2.161 | iter time: 57.32 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.057, val: 2.161 | iter time: 57.62 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.068, val: 2.161 | iter time: 57.64 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.112, val: 2.161 | iter time: 86.46 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.149, val: 2.161 | iter time: 56.56 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.158, val: 2.161 | iter time: 57.13 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.126, val: 2.161 | iter time: 57.25 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.153, val: 2.161 | iter time: 57.56 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.175, val: 2.161 | iter time: 57.08 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.269, val: 2.161 | iter time: 56.94 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.264, val: 2.161 | iter time: 57.51 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.186, val: 2.161 | iter time: 86.45 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.150, val: 2.161 | iter time: 56.46 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.092, val: 2.161 | iter time: 56.95 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.123, val: 2.161 | iter time: 57.45 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.088, val: 2.161 | iter time: 57.74 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.135, val: 2.161 | iter time: 57.58 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.087, val: 2.161 | iter time: 57.14 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.161, val: 2.161 | iter time: 57.14 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.192, val: 2.161 | iter time: 86.39 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.212, val: 2.161 | iter time: 56.33 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.211, val: 2.161 | iter time: 57.20 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.213, val: 2.161 | iter time: 57.80 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.234, val: 2.161 | iter time: 57.41 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.233, val: 2.161 | iter time: 57.03 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.174, val: 2.161 | iter time: 57.19 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.118, val: 2.161 | iter time: 57.36 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.146, val: 2.161 | iter time: 87.01 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.11 s
+| - Tok/sec : 3267.04 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 2.036 | val ppl: 7.662
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2502_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2502_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3b0e9daa4109c672d80447d382edbb8be160c988
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2502_full.txt
@@ -0,0 +1,635 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2502_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2502'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 4.106, val: n/a | iter time: 220.65 ms
+Epoch 1 | iter 2 step 0 | loss train: 4.170, val: n/a | iter time: 68.65 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.907, val: n/a | iter time: 60.30 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.932, val: n/a | iter time: 61.54 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.800, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.749, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.767, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.814, val: n/a | iter time: 165.73 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.712, val: n/a | iter time: 60.50 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.619, val: n/a | iter time: 59.60 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.612, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.597, val: n/a | iter time: 58.92 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.645, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.629, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.548, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.419, val: n/a | iter time: 87.43 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.464, val: n/a | iter time: 57.42 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.495, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.519, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.564, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.592, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.632, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.611, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.606, val: n/a | iter time: 87.35 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.698, val: n/a | iter time: 58.99 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.659, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.680, val: n/a | iter time: 58.88 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.613, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.605, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.659, val: n/a | iter time: 60.76 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.687, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.753, val: n/a | iter time: 87.69 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.725, val: n/a | iter time: 57.40 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.747, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.719, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.721, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.691, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.676, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.759, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.721, val: n/a | iter time: 88.12 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.691, val: n/a | iter time: 57.57 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.664, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.692, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.687, val: n/a | iter time: 58.35 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.696, val: n/a | iter time: 59.10 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.709, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.735, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.739, val: n/a | iter time: 88.10 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.742, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.742, val: n/a | iter time: 59.01 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.775, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.755, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.691, val: n/a | iter time: 60.68 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.568, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.478, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.491, val: n/a | iter time: 87.39 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.510, val: n/a | iter time: 57.52 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.465, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.415, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.412, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.487, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.558, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.542, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.568, val: n/a | iter time: 87.47 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.551, val: n/a | iter time: 57.54 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.629, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.616, val: n/a | iter time: 59.94 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.652, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.603, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.580, val: n/a | iter time: 58.96 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.650, val: n/a | iter time: 58.89 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.641, val: n/a | iter time: 87.38 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.624, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.590, val: n/a | iter time: 61.12 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.629, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.630, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.707, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.722, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.694, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.686, val: n/a | iter time: 87.48 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.632, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.638, val: n/a | iter time: 58.99 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.651, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.671, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.589, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.589, val: n/a | iter time: 59.28 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.588, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.509, val: n/a | iter time: 88.01 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.552, val: n/a | iter time: 60.72 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.525, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.445, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.411, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.479, val: n/a | iter time: 59.09 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.521, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.518, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.686, val: n/a | iter time: 87.31 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.603, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.622, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.617, val: n/a | iter time: 59.03 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.630, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.589, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.566, val: n/a | iter time: 59.11 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.544, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.424, val: n/a | iter time: 87.37 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.519, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.504, val: n/a | iter time: 60.56 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.500, val: n/a | iter time: 59.24 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.512, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.600, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.534, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.514, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.516, val: n/a | iter time: 87.95 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.480, val: n/a | iter time: 57.26 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.581, val: n/a | iter time: 62.35 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.570, val: n/a | iter time: 58.98 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.551, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.508, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.510, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.503, val: n/a | iter time: 58.87 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.512, val: n/a | iter time: 87.82 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.499, val: n/a | iter time: 59.15 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.448, val: n/a | iter time: 60.51 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.547, val: n/a | iter time: 60.35 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.540, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.434, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.509, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.568, val: n/a | iter time: 59.07 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.535, val: n/a | iter time: 87.34 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.554, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.501, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.497, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.572, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.572, val: n/a | iter time: 61.51 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.515, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.520, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.504, val: n/a | iter time: 87.36 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.541, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.571, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.499, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.462, val: n/a | iter time: 59.11 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.530, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.490, val: n/a | iter time: 59.25 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.501, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.553, val: n/a | iter time: 87.25 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.513, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.545, val: n/a | iter time: 59.12 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.644, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.612, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.539, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.591, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.651, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.633, val: n/a | iter time: 87.10 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.651, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.694, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.620, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.582, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.605, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.638, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.560, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.602, val: n/a | iter time: 86.95 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.522, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.456, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.460, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.427, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.497, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.495, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.443, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.410, val: n/a | iter time: 87.06 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.415, val: n/a | iter time: 57.73 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.354, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.362, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.346, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.325, val: n/a | iter time: 60.55 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.292, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.275, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.301, val: n/a | iter time: 87.19 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.396, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.476, val: n/a | iter time: 58.83 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.442, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.506, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.444, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.416, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.455, val: n/a | iter time: 62.98 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.386, val: n/a | iter time: 87.33 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.305, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.264, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.260, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 188 step 23 | loss train: 3.216, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.306, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.360, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.340, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.365, val: n/a | iter time: 87.50 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.369, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.327, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.340, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.411, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.353, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 198 step 24 | loss train: 3.268, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 199 step 24 | loss train: 3.247, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 200 step 25 | loss train: 3.238, val: n/a | iter time: 87.49 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: The carries oxygen throughout the body
+
+2. **Also know:**
+Question: What is the nature of air?
+Answer: Air is a gas that has both electronegativity and valency.
+
+3. **Currently, the following statement is true:**
+Question: What is the current in a teenager's body?
+Answer: The current is 200mg/L (200,000 mg per
+
+iter 200: val loss 3.1724, val time: 2307.21 ms
+Epoch 1 | iter 201 step 25 | loss train: 3.240, val: 3.172 | iter time: 61.35 ms
+Epoch 1 | iter 202 step 25 | loss train: 3.257, val: 3.172 | iter time: 59.55 ms
+Epoch 1 | iter 203 step 25 | loss train: 3.205, val: 3.172 | iter time: 58.97 ms
+Epoch 1 | iter 204 step 25 | loss train: 3.154, val: 3.172 | iter time: 58.75 ms
+Epoch 1 | iter 205 step 25 | loss train: 3.141, val: 3.172 | iter time: 58.52 ms
+Epoch 1 | iter 206 step 25 | loss train: 3.128, val: 3.172 | iter time: 59.21 ms
+Epoch 1 | iter 207 step 25 | loss train: 3.147, val: 3.172 | iter time: 58.93 ms
+Epoch 1 | iter 208 step 26 | loss train: 3.236, val: 3.172 | iter time: 88.30 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 3.334, val: 3.172 | iter time: 58.92 ms
+Epoch 1 | iter 210 step 26 | loss train: 3.348, val: 3.172 | iter time: 59.32 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.426, val: 3.172 | iter time: 58.66 ms
+Epoch 1 | iter 212 step 26 | loss train: 3.358, val: 3.172 | iter time: 58.98 ms
+Epoch 1 | iter 213 step 26 | loss train: 3.372, val: 3.172 | iter time: 58.76 ms
+Epoch 1 | iter 214 step 26 | loss train: 3.390, val: 3.172 | iter time: 59.10 ms
+Epoch 1 | iter 215 step 26 | loss train: 3.323, val: 3.172 | iter time: 58.92 ms
+Epoch 1 | iter 216 step 27 | loss train: 3.200, val: 3.172 | iter time: 87.73 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 3.060, val: 3.172 | iter time: 57.78 ms
+Epoch 1 | iter 218 step 27 | loss train: 3.040, val: 3.172 | iter time: 59.03 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.997, val: 3.172 | iter time: 58.72 ms
+Epoch 1 | iter 220 step 27 | loss train: 3.032, val: 3.172 | iter time: 58.42 ms
+Epoch 1 | iter 221 step 27 | loss train: 3.044, val: 3.172 | iter time: 58.74 ms
+Epoch 1 | iter 222 step 27 | loss train: 3.058, val: 3.172 | iter time: 61.11 ms
+Epoch 1 | iter 223 step 27 | loss train: 3.148, val: 3.172 | iter time: 58.89 ms
+Epoch 1 | iter 224 step 28 | loss train: 3.263, val: 3.172 | iter time: 87.84 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 3.281, val: 3.172 | iter time: 57.77 ms
+Epoch 1 | iter 226 step 28 | loss train: 3.297, val: 3.172 | iter time: 59.29 ms
+Epoch 1 | iter 227 step 28 | loss train: 3.265, val: 3.172 | iter time: 59.33 ms
+Epoch 1 | iter 228 step 28 | loss train: 3.289, val: 3.172 | iter time: 58.99 ms
+Epoch 1 | iter 229 step 28 | loss train: 3.222, val: 3.172 | iter time: 58.80 ms
+Epoch 1 | iter 230 step 28 | loss train: 3.192, val: 3.172 | iter time: 58.92 ms
+Epoch 1 | iter 231 step 28 | loss train: 3.173, val: 3.172 | iter time: 58.71 ms
+Epoch 1 | iter 232 step 29 | loss train: 3.068, val: 3.172 | iter time: 87.61 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 3.132, val: 3.172 | iter time: 61.46 ms
+Epoch 1 | iter 234 step 29 | loss train: 3.075, val: 3.172 | iter time: 58.96 ms
+Epoch 1 | iter 235 step 29 | loss train: 3.115, val: 3.172 | iter time: 58.43 ms
+Epoch 1 | iter 236 step 29 | loss train: 3.095, val: 3.172 | iter time: 58.78 ms
+Epoch 1 | iter 237 step 29 | loss train: 3.127, val: 3.172 | iter time: 58.85 ms
+Epoch 1 | iter 238 step 29 | loss train: 3.133, val: 3.172 | iter time: 58.56 ms
+Epoch 1 | iter 239 step 29 | loss train: 3.073, val: 3.172 | iter time: 58.70 ms
+Epoch 1 | iter 240 step 30 | loss train: 3.106, val: 3.172 | iter time: 87.94 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 3.054, val: 3.172 | iter time: 60.90 ms
+Epoch 1 | iter 242 step 30 | loss train: 3.095, val: 3.172 | iter time: 59.11 ms
+Epoch 1 | iter 243 step 30 | loss train: 3.109, val: 3.172 | iter time: 58.76 ms
+Epoch 1 | iter 244 step 30 | loss train: 3.137, val: 3.172 | iter time: 59.28 ms
+Epoch 1 | iter 245 step 30 | loss train: 3.161, val: 3.172 | iter time: 58.88 ms
+Epoch 1 | iter 246 step 30 | loss train: 3.142, val: 3.172 | iter time: 58.67 ms
+Epoch 1 | iter 247 step 30 | loss train: 3.199, val: 3.172 | iter time: 58.81 ms
+Epoch 1 | iter 248 step 31 | loss train: 3.145, val: 3.172 | iter time: 88.49 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 3.125, val: 3.172 | iter time: 58.06 ms
+Epoch 1 | iter 250 step 31 | loss train: 3.063, val: 3.172 | iter time: 59.18 ms
+Epoch 1 | iter 251 step 31 | loss train: 3.013, val: 3.172 | iter time: 58.95 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.946, val: 3.172 | iter time: 58.97 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.945, val: 3.172 | iter time: 59.14 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.971, val: 3.172 | iter time: 58.91 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.928, val: 3.172 | iter time: 58.49 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.932, val: 3.172 | iter time: 87.40 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.933, val: 3.172 | iter time: 57.88 ms
+Epoch 1 | iter 258 step 32 | loss train: 3.002, val: 3.172 | iter time: 59.16 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.948, val: 3.172 | iter time: 58.74 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.966, val: 3.172 | iter time: 58.93 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.943, val: 3.172 | iter time: 58.88 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.978, val: 3.172 | iter time: 58.95 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.965, val: 3.172 | iter time: 58.53 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.975, val: 3.172 | iter time: 87.98 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.935, val: 3.172 | iter time: 58.34 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.929, val: 3.172 | iter time: 60.10 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.996, val: 3.172 | iter time: 59.29 ms
+Epoch 1 | iter 268 step 33 | loss train: 3.009, val: 3.172 | iter time: 59.33 ms
+Epoch 1 | iter 269 step 33 | loss train: 3.070, val: 3.172 | iter time: 59.00 ms
+Epoch 1 | iter 270 step 33 | loss train: 3.071, val: 3.172 | iter time: 59.02 ms
+Epoch 1 | iter 271 step 33 | loss train: 3.104, val: 3.172 | iter time: 58.93 ms
+Epoch 1 | iter 272 step 34 | loss train: 3.140, val: 3.172 | iter time: 88.93 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 3.196, val: 3.172 | iter time: 58.88 ms
+Epoch 1 | iter 274 step 34 | loss train: 3.137, val: 3.172 | iter time: 59.36 ms
+Epoch 1 | iter 275 step 34 | loss train: 3.082, val: 3.172 | iter time: 59.39 ms
+Epoch 1 | iter 276 step 34 | loss train: 3.047, val: 3.172 | iter time: 59.93 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.969, val: 3.172 | iter time: 58.85 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.936, val: 3.172 | iter time: 59.24 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.929, val: 3.172 | iter time: 59.27 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.960, val: 3.172 | iter time: 88.23 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.967, val: 3.172 | iter time: 58.72 ms
+Epoch 1 | iter 282 step 35 | loss train: 3.013, val: 3.172 | iter time: 58.90 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.999, val: 3.172 | iter time: 59.19 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.988, val: 3.172 | iter time: 59.01 ms
+Epoch 1 | iter 285 step 35 | loss train: 3.076, val: 3.172 | iter time: 58.96 ms
+Epoch 1 | iter 286 step 35 | loss train: 3.071, val: 3.172 | iter time: 58.88 ms
+Epoch 1 | iter 287 step 35 | loss train: 3.070, val: 3.172 | iter time: 59.05 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.933, val: 3.172 | iter time: 88.80 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.897, val: 3.172 | iter time: 58.18 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.853, val: 3.172 | iter time: 58.70 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.883, val: 3.172 | iter time: 59.28 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.964, val: 3.172 | iter time: 58.99 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.876, val: 3.172 | iter time: 59.15 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.839, val: 3.172 | iter time: 59.08 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.857, val: 3.172 | iter time: 58.99 ms
+Epoch 1 | iter 296 step 37 | loss train: 3.004, val: 3.172 | iter time: 87.96 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.964, val: 3.172 | iter time: 58.72 ms
+Epoch 1 | iter 298 step 37 | loss train: 3.008, val: 3.172 | iter time: 60.13 ms
+Epoch 1 | iter 299 step 37 | loss train: 3.033, val: 3.172 | iter time: 59.99 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.943, val: 3.172 | iter time: 59.84 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.926, val: 3.172 | iter time: 59.59 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.915, val: 3.172 | iter time: 59.37 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.853, val: 3.172 | iter time: 58.96 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.781, val: 3.172 | iter time: 88.42 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.771, val: 3.172 | iter time: 58.86 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.690, val: 3.172 | iter time: 59.20 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.668, val: 3.172 | iter time: 59.22 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.674, val: 3.172 | iter time: 58.92 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.672, val: 3.172 | iter time: 59.10 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.689, val: 3.172 | iter time: 59.24 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.677, val: 3.172 | iter time: 59.03 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.693, val: 3.172 | iter time: 87.84 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.707, val: 3.172 | iter time: 58.37 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.708, val: 3.172 | iter time: 59.13 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.753, val: 3.172 | iter time: 58.93 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.797, val: 3.172 | iter time: 59.00 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.748, val: 3.172 | iter time: 58.62 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.720, val: 3.172 | iter time: 59.05 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.763, val: 3.172 | iter time: 58.57 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.756, val: 3.172 | iter time: 87.95 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.752, val: 3.172 | iter time: 58.25 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.759, val: 3.172 | iter time: 58.69 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.686, val: 3.172 | iter time: 58.66 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.665, val: 3.172 | iter time: 58.94 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.646, val: 3.172 | iter time: 59.15 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.647, val: 3.172 | iter time: 59.19 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.588, val: 3.172 | iter time: 58.88 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.575, val: 3.172 | iter time: 88.90 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.560, val: 3.172 | iter time: 58.13 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.637, val: 3.172 | iter time: 59.71 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.669, val: 3.172 | iter time: 59.44 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.644, val: 3.172 | iter time: 59.41 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.735, val: 3.172 | iter time: 59.19 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.772, val: 3.172 | iter time: 59.13 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.873, val: 3.172 | iter time: 59.04 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.829, val: 3.172 | iter time: 87.96 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.813, val: 3.172 | iter time: 58.33 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.777, val: 3.172 | iter time: 58.82 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.752, val: 3.172 | iter time: 58.84 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.779, val: 3.172 | iter time: 58.99 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.806, val: 3.172 | iter time: 58.91 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.789, val: 3.172 | iter time: 59.10 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.748, val: 3.172 | iter time: 59.14 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.796, val: 3.172 | iter time: 87.92 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.771, val: 3.172 | iter time: 58.21 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.758, val: 3.172 | iter time: 59.13 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.811, val: 3.172 | iter time: 59.17 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.813, val: 3.172 | iter time: 59.16 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.714, val: 3.172 | iter time: 58.89 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.713, val: 3.172 | iter time: 59.07 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.715, val: 3.172 | iter time: 59.02 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.673, val: 3.172 | iter time: 89.83 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.772, val: 3.172 | iter time: 57.87 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.829, val: 3.172 | iter time: 58.72 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.723, val: 3.172 | iter time: 58.60 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.663, val: 3.172 | iter time: 59.02 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.674, val: 3.172 | iter time: 58.81 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.626, val: 3.172 | iter time: 59.73 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.590, val: 3.172 | iter time: 59.05 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.573, val: 3.172 | iter time: 88.52 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.533, val: 3.172 | iter time: 58.17 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.440, val: 3.172 | iter time: 59.06 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.495, val: 3.172 | iter time: 59.10 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.465, val: 3.172 | iter time: 58.88 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.493, val: 3.172 | iter time: 59.00 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.530, val: 3.172 | iter time: 58.78 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.514, val: 3.172 | iter time: 59.20 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.542, val: 3.172 | iter time: 88.05 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.523, val: 3.172 | iter time: 57.92 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.537, val: 3.172 | iter time: 58.73 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.493, val: 3.172 | iter time: 58.38 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.575, val: 3.172 | iter time: 58.40 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.590, val: 3.172 | iter time: 58.97 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.565, val: 3.172 | iter time: 58.81 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.603, val: 3.172 | iter time: 61.10 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.540, val: 3.172 | iter time: 87.91 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.492, val: 3.172 | iter time: 58.27 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.473, val: 3.172 | iter time: 58.73 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.544, val: 3.172 | iter time: 58.85 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.511, val: 3.172 | iter time: 58.76 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.464, val: 3.172 | iter time: 58.44 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.470, val: 3.172 | iter time: 58.65 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.462, val: 3.172 | iter time: 58.88 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.496, val: 3.172 | iter time: 87.85 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.556, val: 3.172 | iter time: 58.11 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.555, val: 3.172 | iter time: 58.80 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.514, val: 3.172 | iter time: 61.52 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.512, val: 3.172 | iter time: 59.70 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.494, val: 3.172 | iter time: 58.85 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.452, val: 3.172 | iter time: 58.92 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.441, val: 3.172 | iter time: 58.97 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.477, val: 3.172 | iter time: 87.67 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.455, val: 3.172 | iter time: 57.92 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.484, val: 3.172 | iter time: 59.02 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.461, val: 3.172 | iter time: 58.87 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.438, val: 3.172 | iter time: 58.59 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.454, val: 3.172 | iter time: 59.10 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.452, val: 3.172 | iter time: 58.91 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.368, val: 3.172 | iter time: 59.12 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.358, val: 3.172 | iter time: 87.65 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: air.
+
+iter 400: val loss 2.2695, val time: 421.19 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.305, val: 2.270 | iter time: 62.04 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.242, val: 2.270 | iter time: 59.73 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.249, val: 2.270 | iter time: 59.38 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.225, val: 2.270 | iter time: 58.88 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.164, val: 2.270 | iter time: 58.80 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.211, val: 2.270 | iter time: 58.85 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.244, val: 2.270 | iter time: 58.40 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.255, val: 2.270 | iter time: 88.52 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.366, val: 2.270 | iter time: 57.50 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.430, val: 2.270 | iter time: 58.69 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.453, val: 2.270 | iter time: 58.42 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.496, val: 2.270 | iter time: 58.90 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.493, val: 2.270 | iter time: 59.05 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.463, val: 2.270 | iter time: 58.96 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.470, val: 2.270 | iter time: 58.99 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.437, val: 2.270 | iter time: 87.87 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.409, val: 2.270 | iter time: 57.88 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.381, val: 2.270 | iter time: 58.77 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.328, val: 2.270 | iter time: 58.86 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.265, val: 2.270 | iter time: 58.79 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.287, val: 2.270 | iter time: 58.84 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.245, val: 2.270 | iter time: 58.96 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.230, val: 2.270 | iter time: 58.81 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.229, val: 2.270 | iter time: 87.91 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.225, val: 2.270 | iter time: 58.15 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.249, val: 2.270 | iter time: 58.52 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.286, val: 2.270 | iter time: 58.79 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.314, val: 2.270 | iter time: 58.63 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.343, val: 2.270 | iter time: 58.72 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.354, val: 2.270 | iter time: 59.18 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.390, val: 2.270 | iter time: 58.76 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.385, val: 2.270 | iter time: 87.74 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.383, val: 2.270 | iter time: 58.50 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.382, val: 2.270 | iter time: 58.69 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.376, val: 2.270 | iter time: 58.64 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.415, val: 2.270 | iter time: 59.30 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.410, val: 2.270 | iter time: 58.90 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.472, val: 2.270 | iter time: 58.88 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.463, val: 2.270 | iter time: 58.82 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.441, val: 2.270 | iter time: 87.62 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.440, val: 2.270 | iter time: 57.90 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.429, val: 2.270 | iter time: 58.44 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.449, val: 2.270 | iter time: 58.74 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.424, val: 2.270 | iter time: 58.78 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.458, val: 2.270 | iter time: 58.77 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.418, val: 2.270 | iter time: 58.54 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.355, val: 2.270 | iter time: 58.80 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.377, val: 2.270 | iter time: 87.42 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.345, val: 2.270 | iter time: 58.12 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.344, val: 2.270 | iter time: 58.90 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.346, val: 2.270 | iter time: 58.51 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.352, val: 2.270 | iter time: 58.80 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.298, val: 2.270 | iter time: 58.79 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.341, val: 2.270 | iter time: 59.40 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.378, val: 2.270 | iter time: 58.83 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.336, val: 2.270 | iter time: 87.50 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.318, val: 2.270 | iter time: 57.86 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.306, val: 2.270 | iter time: 58.89 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.253, val: 2.270 | iter time: 58.43 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.233, val: 2.270 | iter time: 58.76 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.266, val: 2.270 | iter time: 61.61 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.193, val: 2.270 | iter time: 59.45 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.185, val: 2.270 | iter time: 59.03 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.190, val: 2.270 | iter time: 87.65 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.204, val: 2.270 | iter time: 58.26 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.174, val: 2.270 | iter time: 59.09 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.195, val: 2.270 | iter time: 58.95 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.202, val: 2.270 | iter time: 59.12 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.207, val: 2.270 | iter time: 58.92 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.261, val: 2.270 | iter time: 58.67 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.268, val: 2.270 | iter time: 58.78 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.328, val: 2.270 | iter time: 87.99 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.331, val: 2.270 | iter time: 57.96 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.358, val: 2.270 | iter time: 59.02 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.359, val: 2.270 | iter time: 59.14 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.368, val: 2.270 | iter time: 58.92 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.387, val: 2.270 | iter time: 58.86 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.392, val: 2.270 | iter time: 59.12 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.431, val: 2.270 | iter time: 59.11 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.440, val: 2.270 | iter time: 88.10 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.399, val: 2.270 | iter time: 57.99 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.396, val: 2.270 | iter time: 59.01 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.405, val: 2.270 | iter time: 58.62 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.403, val: 2.270 | iter time: 59.11 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.317, val: 2.270 | iter time: 59.01 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.284, val: 2.270 | iter time: 58.75 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.250, val: 2.270 | iter time: 58.95 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.218, val: 2.270 | iter time: 87.85 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.250, val: 2.270 | iter time: 58.09 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.219, val: 2.270 | iter time: 59.06 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.219, val: 2.270 | iter time: 58.96 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.235, val: 2.270 | iter time: 58.91 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.259, val: 2.270 | iter time: 59.09 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.304, val: 2.270 | iter time: 58.72 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.276, val: 2.270 | iter time: 58.77 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.299, val: 2.270 | iter time: 87.50 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.354, val: 2.270 | iter time: 58.23 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.406, val: 2.270 | iter time: 58.99 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.349, val: 2.270 | iter time: 58.93 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.285, val: 2.270 | iter time: 59.13 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.292, val: 2.270 | iter time: 59.05 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.240, val: 2.270 | iter time: 59.15 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.241, val: 2.270 | iter time: 59.78 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.220, val: 2.270 | iter time: 88.18 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.159, val: 2.270 | iter time: 58.46 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.144, val: 2.270 | iter time: 59.05 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.180, val: 2.270 | iter time: 59.00 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.214, val: 2.270 | iter time: 59.02 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.197, val: 2.270 | iter time: 58.95 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.175, val: 2.270 | iter time: 58.87 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.205, val: 2.270 | iter time: 58.96 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.146, val: 2.270 | iter time: 87.99 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.152, val: 2.270 | iter time: 57.92 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.143, val: 2.270 | iter time: 58.69 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.131, val: 2.270 | iter time: 58.47 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.131, val: 2.270 | iter time: 58.54 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.178, val: 2.270 | iter time: 58.73 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.237, val: 2.270 | iter time: 59.02 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.203, val: 2.270 | iter time: 58.68 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.240, val: 2.270 | iter time: 87.72 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.244, val: 2.270 | iter time: 57.67 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.251, val: 2.270 | iter time: 58.87 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.270, val: 2.270 | iter time: 58.77 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.269, val: 2.270 | iter time: 58.74 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.173, val: 2.270 | iter time: 58.49 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.128, val: 2.270 | iter time: 58.77 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.148, val: 2.270 | iter time: 59.81 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.182, val: 2.270 | iter time: 87.28 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.204, val: 2.270 | iter time: 57.43 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.220, val: 2.270 | iter time: 58.35 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.186, val: 2.270 | iter time: 58.68 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.212, val: 2.270 | iter time: 58.82 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.230, val: 2.270 | iter time: 58.83 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.302, val: 2.270 | iter time: 58.41 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.317, val: 2.270 | iter time: 58.81 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.252, val: 2.270 | iter time: 87.90 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.216, val: 2.270 | iter time: 57.73 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.162, val: 2.270 | iter time: 58.30 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.190, val: 2.270 | iter time: 58.81 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.161, val: 2.270 | iter time: 59.06 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.231, val: 2.270 | iter time: 58.81 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.214, val: 2.270 | iter time: 58.98 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.273, val: 2.270 | iter time: 58.90 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.303, val: 2.270 | iter time: 87.94 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.325, val: 2.270 | iter time: 58.20 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.330, val: 2.270 | iter time: 59.11 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.329, val: 2.270 | iter time: 58.71 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.340, val: 2.270 | iter time: 58.24 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.321, val: 2.270 | iter time: 58.28 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.246, val: 2.270 | iter time: 58.36 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.185, val: 2.270 | iter time: 58.40 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.215, val: 2.270 | iter time: 88.07 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.90 s
+| - Tok/sec : 3200.40 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 2.093 | val ppl: 8.109
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2503_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2503_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2d419ce72d84a9465b9560acf55aefa56c85e2c2
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2503_full.txt
@@ -0,0 +1,639 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2503_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2503'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 4.000, val: n/a | iter time: 217.98 ms
+Epoch 1 | iter 2 step 0 | loss train: 4.078, val: n/a | iter time: 65.83 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.811, val: n/a | iter time: 59.95 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.827, val: n/a | iter time: 60.23 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.724, val: n/a | iter time: 57.09 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.664, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.694, val: n/a | iter time: 57.13 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.719, val: n/a | iter time: 170.66 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.614, val: n/a | iter time: 59.29 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.516, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.524, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.519, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.548, val: n/a | iter time: 59.40 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.535, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.454, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.345, val: n/a | iter time: 87.78 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.395, val: n/a | iter time: 57.12 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.415, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.426, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.462, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.493, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.528, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.500, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.494, val: n/a | iter time: 87.09 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.577, val: n/a | iter time: 57.53 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.553, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.560, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.500, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.494, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.543, val: n/a | iter time: 59.07 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.566, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.641, val: n/a | iter time: 87.77 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.604, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.622, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.609, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.614, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.575, val: n/a | iter time: 59.97 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.561, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.644, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.590, val: n/a | iter time: 87.53 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.576, val: n/a | iter time: 57.25 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.545, val: n/a | iter time: 58.35 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.579, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.564, val: n/a | iter time: 59.94 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.575, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.607, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.633, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.643, val: n/a | iter time: 87.69 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.642, val: n/a | iter time: 57.64 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.652, val: n/a | iter time: 59.37 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.667, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.648, val: n/a | iter time: 59.31 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.592, val: n/a | iter time: 59.25 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.462, val: n/a | iter time: 59.36 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.384, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.394, val: n/a | iter time: 87.94 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.421, val: n/a | iter time: 58.83 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.375, val: n/a | iter time: 60.12 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.336, val: n/a | iter time: 59.15 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.332, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.388, val: n/a | iter time: 59.18 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.452, val: n/a | iter time: 59.55 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.421, val: n/a | iter time: 59.16 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.450, val: n/a | iter time: 88.42 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.430, val: n/a | iter time: 61.63 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.507, val: n/a | iter time: 58.87 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.491, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.520, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.488, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.470, val: n/a | iter time: 59.30 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.528, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.504, val: n/a | iter time: 87.14 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.491, val: n/a | iter time: 57.84 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.448, val: n/a | iter time: 58.86 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.467, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.478, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.540, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.545, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.533, val: n/a | iter time: 57.85 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.539, val: n/a | iter time: 87.10 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.485, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.502, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.519, val: n/a | iter time: 58.04 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.556, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.490, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.508, val: n/a | iter time: 58.55 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.507, val: n/a | iter time: 60.61 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.441, val: n/a | iter time: 87.89 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.466, val: n/a | iter time: 57.44 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.443, val: n/a | iter time: 59.22 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.388, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.330, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.384, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.426, val: n/a | iter time: 59.20 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.410, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.546, val: n/a | iter time: 86.92 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.465, val: n/a | iter time: 57.19 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.481, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.477, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.485, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.451, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.416, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.407, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.319, val: n/a | iter time: 87.01 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.419, val: n/a | iter time: 57.17 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.396, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.371, val: n/a | iter time: 59.05 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.397, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.472, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.407, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.377, val: n/a | iter time: 57.58 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.367, val: n/a | iter time: 87.62 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.337, val: n/a | iter time: 56.92 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.432, val: n/a | iter time: 60.84 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.429, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.405, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.359, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.346, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.340, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.346, val: n/a | iter time: 86.80 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.315, val: n/a | iter time: 57.10 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.270, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.364, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.352, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.243, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.322, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.374, val: n/a | iter time: 63.02 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.339, val: n/a | iter time: 88.24 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.357, val: n/a | iter time: 57.38 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.296, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.266, val: n/a | iter time: 58.57 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.334, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.351, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.309, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.307, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.281, val: n/a | iter time: 87.01 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.309, val: n/a | iter time: 57.17 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.354, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.319, val: n/a | iter time: 58.25 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.264, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.330, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.291, val: n/a | iter time: 58.82 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.306, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.372, val: n/a | iter time: 87.69 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.330, val: n/a | iter time: 57.19 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.332, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.413, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.399, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.316, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.358, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.417, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.385, val: n/a | iter time: 88.16 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.422, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.465, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.405, val: n/a | iter time: 59.47 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.369, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.397, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.437, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.377, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.425, val: n/a | iter time: 86.48 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.335, val: n/a | iter time: 57.33 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.275, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.262, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.236, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.302, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.291, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.236, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.210, val: n/a | iter time: 86.80 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.218, val: n/a | iter time: 57.19 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.167, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.169, val: n/a | iter time: 61.03 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.166, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.140, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.114, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.093, val: n/a | iter time: 59.26 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.109, val: n/a | iter time: 87.56 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.203, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.280, val: n/a | iter time: 59.98 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.255, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.308, val: n/a | iter time: 58.96 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.270, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.239, val: n/a | iter time: 58.25 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.273, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.211, val: n/a | iter time: 86.70 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.131, val: n/a | iter time: 57.49 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.111, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.109, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 188 step 23 | loss train: 3.065, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.134, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.179, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.163, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.201, val: n/a | iter time: 86.86 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.213, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.162, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.173, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.241, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.179, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 198 step 24 | loss train: 3.090, val: n/a | iter time: 58.12 ms
+Epoch 1 | iter 199 step 24 | loss train: 3.079, val: n/a | iter time: 57.88 ms
+Epoch 1 | iter 200 step 25 | loss train: 3.067, val: n/a | iter time: 86.87 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: the lungs.
+\end{lstlisting}
+Also, in Figure~\ref{fig:qualitative_gpt4o}, we provide examples of different types of reasoning questions, along with the corresponding answers and correct answers for each case.
+
+\input{fig/qualitative_gpt4o_new}
+
+
+
+\section{Dataset}
+\label{sec:dataset}
+
+\input{fig/data_pipeline}
+
+
+iter 200: val loss 2.9414, val time: 2296.20 ms
+Epoch 1 | iter 201 step 25 | loss train: 3.065, val: 2.941 | iter time: 61.80 ms
+Epoch 1 | iter 202 step 25 | loss train: 3.081, val: 2.941 | iter time: 58.98 ms
+Epoch 1 | iter 203 step 25 | loss train: 3.044, val: 2.941 | iter time: 58.32 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.990, val: 2.941 | iter time: 58.11 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.988, val: 2.941 | iter time: 57.55 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.991, val: 2.941 | iter time: 59.40 ms
+Epoch 1 | iter 207 step 25 | loss train: 3.005, val: 2.941 | iter time: 57.88 ms
+Epoch 1 | iter 208 step 26 | loss train: 3.058, val: 2.941 | iter time: 87.06 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 3.128, val: 2.941 | iter time: 57.26 ms
+Epoch 1 | iter 210 step 26 | loss train: 3.134, val: 2.941 | iter time: 58.48 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.182, val: 2.941 | iter time: 57.90 ms
+Epoch 1 | iter 212 step 26 | loss train: 3.118, val: 2.941 | iter time: 58.25 ms
+Epoch 1 | iter 213 step 26 | loss train: 3.123, val: 2.941 | iter time: 58.01 ms
+Epoch 1 | iter 214 step 26 | loss train: 3.129, val: 2.941 | iter time: 61.07 ms
+Epoch 1 | iter 215 step 26 | loss train: 3.065, val: 2.941 | iter time: 59.02 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.956, val: 2.941 | iter time: 87.20 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.837, val: 2.941 | iter time: 57.15 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.832, val: 2.941 | iter time: 58.10 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.807, val: 2.941 | iter time: 57.67 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.837, val: 2.941 | iter time: 57.28 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.851, val: 2.941 | iter time: 57.64 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.868, val: 2.941 | iter time: 58.75 ms
+Epoch 1 | iter 223 step 27 | loss train: 2.957, val: 2.941 | iter time: 57.75 ms
+Epoch 1 | iter 224 step 28 | loss train: 3.050, val: 2.941 | iter time: 86.73 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 3.074, val: 2.941 | iter time: 57.71 ms
+Epoch 1 | iter 226 step 28 | loss train: 3.094, val: 2.941 | iter time: 58.44 ms
+Epoch 1 | iter 227 step 28 | loss train: 3.065, val: 2.941 | iter time: 58.17 ms
+Epoch 1 | iter 228 step 28 | loss train: 3.089, val: 2.941 | iter time: 57.67 ms
+Epoch 1 | iter 229 step 28 | loss train: 3.028, val: 2.941 | iter time: 57.58 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.998, val: 2.941 | iter time: 57.81 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.962, val: 2.941 | iter time: 57.77 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.898, val: 2.941 | iter time: 86.51 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.937, val: 2.941 | iter time: 56.78 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.872, val: 2.941 | iter time: 57.68 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.919, val: 2.941 | iter time: 57.35 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.916, val: 2.941 | iter time: 57.76 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.950, val: 2.941 | iter time: 57.66 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.951, val: 2.941 | iter time: 57.56 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.900, val: 2.941 | iter time: 58.59 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.919, val: 2.941 | iter time: 86.63 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.894, val: 2.941 | iter time: 56.89 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.928, val: 2.941 | iter time: 57.66 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.924, val: 2.941 | iter time: 57.75 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.930, val: 2.941 | iter time: 58.21 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.931, val: 2.941 | iter time: 57.73 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.925, val: 2.941 | iter time: 57.50 ms
+Epoch 1 | iter 247 step 30 | loss train: 2.958, val: 2.941 | iter time: 58.36 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.906, val: 2.941 | iter time: 87.13 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.875, val: 2.941 | iter time: 57.13 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.810, val: 2.941 | iter time: 58.30 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.764, val: 2.941 | iter time: 58.23 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.705, val: 2.941 | iter time: 58.23 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.723, val: 2.941 | iter time: 58.22 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.744, val: 2.941 | iter time: 58.28 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.725, val: 2.941 | iter time: 57.81 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.724, val: 2.941 | iter time: 86.66 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.741, val: 2.941 | iter time: 57.51 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.804, val: 2.941 | iter time: 59.49 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.771, val: 2.941 | iter time: 57.92 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.789, val: 2.941 | iter time: 58.26 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.751, val: 2.941 | iter time: 58.09 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.772, val: 2.941 | iter time: 58.20 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.770, val: 2.941 | iter time: 57.91 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.779, val: 2.941 | iter time: 87.13 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.735, val: 2.941 | iter time: 57.48 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.725, val: 2.941 | iter time: 58.11 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.755, val: 2.941 | iter time: 58.02 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.752, val: 2.941 | iter time: 58.33 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.805, val: 2.941 | iter time: 58.12 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.787, val: 2.941 | iter time: 58.26 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.808, val: 2.941 | iter time: 58.01 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.854, val: 2.941 | iter time: 88.31 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.882, val: 2.941 | iter time: 57.32 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.830, val: 2.941 | iter time: 58.71 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.791, val: 2.941 | iter time: 58.51 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.780, val: 2.941 | iter time: 59.16 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.719, val: 2.941 | iter time: 58.26 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.705, val: 2.941 | iter time: 58.52 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.702, val: 2.941 | iter time: 58.82 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.716, val: 2.941 | iter time: 87.36 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.736, val: 2.941 | iter time: 57.49 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.792, val: 2.941 | iter time: 58.07 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.780, val: 2.941 | iter time: 58.56 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.752, val: 2.941 | iter time: 59.34 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.834, val: 2.941 | iter time: 58.95 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.830, val: 2.941 | iter time: 58.39 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.818, val: 2.941 | iter time: 58.50 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.699, val: 2.941 | iter time: 88.59 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.653, val: 2.941 | iter time: 57.48 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.595, val: 2.941 | iter time: 58.38 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.619, val: 2.941 | iter time: 59.62 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.694, val: 2.941 | iter time: 58.35 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.620, val: 2.941 | iter time: 58.36 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.586, val: 2.941 | iter time: 58.41 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.613, val: 2.941 | iter time: 58.25 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.737, val: 2.941 | iter time: 87.19 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.729, val: 2.941 | iter time: 57.13 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.772, val: 2.941 | iter time: 61.12 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.794, val: 2.941 | iter time: 58.57 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.725, val: 2.941 | iter time: 58.18 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.691, val: 2.941 | iter time: 58.14 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.699, val: 2.941 | iter time: 58.18 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.614, val: 2.941 | iter time: 58.11 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.552, val: 2.941 | iter time: 87.47 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.534, val: 2.941 | iter time: 57.54 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.474, val: 2.941 | iter time: 58.25 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.435, val: 2.941 | iter time: 58.61 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.420, val: 2.941 | iter time: 58.38 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.440, val: 2.941 | iter time: 58.44 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.434, val: 2.941 | iter time: 58.44 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.439, val: 2.941 | iter time: 58.33 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.463, val: 2.941 | iter time: 86.99 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.476, val: 2.941 | iter time: 57.73 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.474, val: 2.941 | iter time: 58.52 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.548, val: 2.941 | iter time: 58.29 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.589, val: 2.941 | iter time: 58.35 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.545, val: 2.941 | iter time: 57.86 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.518, val: 2.941 | iter time: 58.22 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.572, val: 2.941 | iter time: 58.04 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.549, val: 2.941 | iter time: 87.42 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.532, val: 2.941 | iter time: 57.78 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.539, val: 2.941 | iter time: 58.01 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.472, val: 2.941 | iter time: 58.20 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.453, val: 2.941 | iter time: 59.38 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.424, val: 2.941 | iter time: 58.52 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.416, val: 2.941 | iter time: 58.63 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.348, val: 2.941 | iter time: 58.24 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.336, val: 2.941 | iter time: 87.20 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.326, val: 2.941 | iter time: 57.40 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.384, val: 2.941 | iter time: 58.38 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.395, val: 2.941 | iter time: 58.14 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.386, val: 2.941 | iter time: 58.39 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.479, val: 2.941 | iter time: 58.21 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.521, val: 2.941 | iter time: 58.35 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.595, val: 2.941 | iter time: 58.23 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.562, val: 2.941 | iter time: 86.92 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.557, val: 2.941 | iter time: 58.25 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.537, val: 2.941 | iter time: 58.21 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.510, val: 2.941 | iter time: 58.11 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.527, val: 2.941 | iter time: 58.31 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.559, val: 2.941 | iter time: 58.68 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.566, val: 2.941 | iter time: 58.48 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.545, val: 2.941 | iter time: 58.55 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.571, val: 2.941 | iter time: 87.34 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.553, val: 2.941 | iter time: 57.51 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.542, val: 2.941 | iter time: 58.42 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.604, val: 2.941 | iter time: 58.34 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.610, val: 2.941 | iter time: 58.34 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.508, val: 2.941 | iter time: 58.02 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.496, val: 2.941 | iter time: 58.46 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.503, val: 2.941 | iter time: 58.17 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.486, val: 2.941 | iter time: 87.37 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.580, val: 2.941 | iter time: 57.12 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.642, val: 2.941 | iter time: 57.97 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.563, val: 2.941 | iter time: 58.05 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.513, val: 2.941 | iter time: 58.35 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.523, val: 2.941 | iter time: 58.95 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.493, val: 2.941 | iter time: 59.23 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.460, val: 2.941 | iter time: 58.50 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.461, val: 2.941 | iter time: 88.06 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.429, val: 2.941 | iter time: 57.44 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.336, val: 2.941 | iter time: 58.21 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.391, val: 2.941 | iter time: 58.16 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.365, val: 2.941 | iter time: 58.15 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.406, val: 2.941 | iter time: 58.11 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.437, val: 2.941 | iter time: 58.08 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.432, val: 2.941 | iter time: 58.41 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.449, val: 2.941 | iter time: 87.29 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.417, val: 2.941 | iter time: 57.41 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.431, val: 2.941 | iter time: 59.06 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.381, val: 2.941 | iter time: 57.83 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.464, val: 2.941 | iter time: 58.20 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.475, val: 2.941 | iter time: 58.31 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.471, val: 2.941 | iter time: 58.43 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.502, val: 2.941 | iter time: 58.27 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.445, val: 2.941 | iter time: 87.00 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.406, val: 2.941 | iter time: 57.77 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.399, val: 2.941 | iter time: 58.20 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.466, val: 2.941 | iter time: 58.37 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.444, val: 2.941 | iter time: 58.42 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.397, val: 2.941 | iter time: 57.77 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.379, val: 2.941 | iter time: 57.86 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.380, val: 2.941 | iter time: 58.07 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.426, val: 2.941 | iter time: 87.08 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.486, val: 2.941 | iter time: 57.42 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.477, val: 2.941 | iter time: 58.13 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.456, val: 2.941 | iter time: 58.05 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.447, val: 2.941 | iter time: 58.33 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.442, val: 2.941 | iter time: 58.90 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.411, val: 2.941 | iter time: 59.07 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.408, val: 2.941 | iter time: 58.97 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.439, val: 2.941 | iter time: 87.36 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.423, val: 2.941 | iter time: 57.40 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.453, val: 2.941 | iter time: 58.24 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.415, val: 2.941 | iter time: 58.04 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.412, val: 2.941 | iter time: 57.89 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.424, val: 2.941 | iter time: 58.45 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.426, val: 2.941 | iter time: 58.22 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.347, val: 2.941 | iter time: 58.19 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.334, val: 2.941 | iter time: 87.16 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: air.
+
+iter 400: val loss 2.2257, val time: 424.73 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.287, val: 2.226 | iter time: 61.82 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.230, val: 2.226 | iter time: 59.26 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.243, val: 2.226 | iter time: 58.58 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.206, val: 2.226 | iter time: 58.23 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.140, val: 2.226 | iter time: 58.09 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.190, val: 2.226 | iter time: 58.41 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.219, val: 2.226 | iter time: 57.96 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.222, val: 2.226 | iter time: 87.86 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.302, val: 2.226 | iter time: 57.14 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.369, val: 2.226 | iter time: 58.23 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.380, val: 2.226 | iter time: 57.99 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.426, val: 2.226 | iter time: 58.49 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.433, val: 2.226 | iter time: 58.74 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.382, val: 2.226 | iter time: 58.30 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.387, val: 2.226 | iter time: 58.42 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.374, val: 2.226 | iter time: 88.16 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.360, val: 2.226 | iter time: 57.69 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.331, val: 2.226 | iter time: 59.12 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.277, val: 2.226 | iter time: 59.15 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.222, val: 2.226 | iter time: 58.77 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.240, val: 2.226 | iter time: 58.74 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.228, val: 2.226 | iter time: 58.76 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.211, val: 2.226 | iter time: 58.57 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.201, val: 2.226 | iter time: 87.42 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.206, val: 2.226 | iter time: 57.54 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.234, val: 2.226 | iter time: 58.01 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.291, val: 2.226 | iter time: 58.56 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.316, val: 2.226 | iter time: 58.23 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.359, val: 2.226 | iter time: 59.16 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.353, val: 2.226 | iter time: 58.77 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.399, val: 2.226 | iter time: 58.49 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.392, val: 2.226 | iter time: 88.03 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.370, val: 2.226 | iter time: 57.75 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.360, val: 2.226 | iter time: 58.83 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.333, val: 2.226 | iter time: 58.25 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.361, val: 2.226 | iter time: 58.64 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.339, val: 2.226 | iter time: 58.32 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.419, val: 2.226 | iter time: 58.51 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.395, val: 2.226 | iter time: 58.35 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.374, val: 2.226 | iter time: 87.34 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.387, val: 2.226 | iter time: 57.63 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.379, val: 2.226 | iter time: 58.25 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.419, val: 2.226 | iter time: 58.52 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.401, val: 2.226 | iter time: 58.74 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.442, val: 2.226 | iter time: 58.57 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.378, val: 2.226 | iter time: 58.34 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.337, val: 2.226 | iter time: 58.48 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.355, val: 2.226 | iter time: 87.87 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.322, val: 2.226 | iter time: 58.90 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.322, val: 2.226 | iter time: 58.56 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.311, val: 2.226 | iter time: 58.38 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.318, val: 2.226 | iter time: 58.39 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.258, val: 2.226 | iter time: 58.32 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.288, val: 2.226 | iter time: 58.90 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.308, val: 2.226 | iter time: 58.40 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.287, val: 2.226 | iter time: 87.10 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.287, val: 2.226 | iter time: 57.53 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.278, val: 2.226 | iter time: 58.34 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.234, val: 2.226 | iter time: 58.03 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.212, val: 2.226 | iter time: 58.34 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.243, val: 2.226 | iter time: 58.50 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.181, val: 2.226 | iter time: 59.56 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.188, val: 2.226 | iter time: 58.49 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.191, val: 2.226 | iter time: 87.39 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.203, val: 2.226 | iter time: 57.54 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.149, val: 2.226 | iter time: 58.01 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.171, val: 2.226 | iter time: 58.38 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.171, val: 2.226 | iter time: 58.70 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.185, val: 2.226 | iter time: 58.22 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.247, val: 2.226 | iter time: 58.12 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.247, val: 2.226 | iter time: 58.13 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.288, val: 2.226 | iter time: 87.30 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.281, val: 2.226 | iter time: 56.97 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.333, val: 2.226 | iter time: 58.19 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.329, val: 2.226 | iter time: 58.42 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.346, val: 2.226 | iter time: 58.29 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.382, val: 2.226 | iter time: 58.23 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.397, val: 2.226 | iter time: 58.25 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.428, val: 2.226 | iter time: 58.99 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.448, val: 2.226 | iter time: 87.85 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.426, val: 2.226 | iter time: 58.59 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.420, val: 2.226 | iter time: 58.71 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.407, val: 2.226 | iter time: 58.28 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.395, val: 2.226 | iter time: 58.72 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.294, val: 2.226 | iter time: 58.88 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.255, val: 2.226 | iter time: 58.37 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.216, val: 2.226 | iter time: 58.53 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.179, val: 2.226 | iter time: 87.53 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.191, val: 2.226 | iter time: 57.46 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.166, val: 2.226 | iter time: 58.30 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.189, val: 2.226 | iter time: 58.23 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.224, val: 2.226 | iter time: 58.45 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.235, val: 2.226 | iter time: 58.60 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.266, val: 2.226 | iter time: 58.06 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.236, val: 2.226 | iter time: 59.06 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.266, val: 2.226 | iter time: 88.29 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.322, val: 2.226 | iter time: 58.60 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.365, val: 2.226 | iter time: 58.97 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.312, val: 2.226 | iter time: 58.90 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.233, val: 2.226 | iter time: 58.97 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.252, val: 2.226 | iter time: 58.77 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.210, val: 2.226 | iter time: 61.39 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.208, val: 2.226 | iter time: 59.93 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.174, val: 2.226 | iter time: 87.68 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.110, val: 2.226 | iter time: 57.69 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.101, val: 2.226 | iter time: 58.52 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.118, val: 2.226 | iter time: 58.47 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.147, val: 2.226 | iter time: 58.24 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.120, val: 2.226 | iter time: 58.19 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.107, val: 2.226 | iter time: 58.14 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.150, val: 2.226 | iter time: 59.16 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.103, val: 2.226 | iter time: 87.48 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.119, val: 2.226 | iter time: 57.53 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.102, val: 2.226 | iter time: 59.54 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.107, val: 2.226 | iter time: 58.50 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.119, val: 2.226 | iter time: 58.43 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.174, val: 2.226 | iter time: 58.53 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.219, val: 2.226 | iter time: 59.05 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.190, val: 2.226 | iter time: 58.87 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.216, val: 2.226 | iter time: 87.54 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.213, val: 2.226 | iter time: 57.38 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.215, val: 2.226 | iter time: 58.57 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.241, val: 2.226 | iter time: 58.72 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.233, val: 2.226 | iter time: 58.46 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.133, val: 2.226 | iter time: 58.20 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.083, val: 2.226 | iter time: 58.53 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.092, val: 2.226 | iter time: 58.39 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.127, val: 2.226 | iter time: 87.15 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.159, val: 2.226 | iter time: 57.53 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.182, val: 2.226 | iter time: 59.04 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.143, val: 2.226 | iter time: 58.43 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.171, val: 2.226 | iter time: 58.65 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.192, val: 2.226 | iter time: 58.44 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.266, val: 2.226 | iter time: 58.44 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.270, val: 2.226 | iter time: 58.88 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.206, val: 2.226 | iter time: 87.79 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.179, val: 2.226 | iter time: 57.69 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.127, val: 2.226 | iter time: 58.14 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.138, val: 2.226 | iter time: 58.25 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.100, val: 2.226 | iter time: 58.63 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.171, val: 2.226 | iter time: 58.54 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.147, val: 2.226 | iter time: 58.64 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.217, val: 2.226 | iter time: 58.31 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.262, val: 2.226 | iter time: 88.55 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.259, val: 2.226 | iter time: 57.69 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.247, val: 2.226 | iter time: 58.64 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.261, val: 2.226 | iter time: 58.75 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.285, val: 2.226 | iter time: 58.18 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.253, val: 2.226 | iter time: 58.42 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.195, val: 2.226 | iter time: 58.46 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.140, val: 2.226 | iter time: 59.50 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.174, val: 2.226 | iter time: 88.41 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.58 s
+| - Tok/sec : 3226.71 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 2.070 | val ppl: 7.924
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2504_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2504_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..986b0e15e2f8be563030a1f6168ab22728defb4e
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2504_full.txt
@@ -0,0 +1,650 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2504_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2504'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 3.868, val: n/a | iter time: 224.75 ms
+Epoch 1 | iter 2 step 0 | loss train: 3.984, val: n/a | iter time: 64.83 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.701, val: n/a | iter time: 60.18 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.760, val: n/a | iter time: 60.12 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.657, val: n/a | iter time: 57.20 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.579, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.594, val: n/a | iter time: 57.11 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.630, val: n/a | iter time: 161.28 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.537, val: n/a | iter time: 59.75 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.443, val: n/a | iter time: 58.88 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.471, val: n/a | iter time: 57.67 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.445, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.482, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.484, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.414, val: n/a | iter time: 58.76 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.291, val: n/a | iter time: 87.54 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.339, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.347, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.352, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.390, val: n/a | iter time: 58.89 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.411, val: n/a | iter time: 58.98 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.445, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.420, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.433, val: n/a | iter time: 87.34 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.511, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.500, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.499, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.448, val: n/a | iter time: 59.29 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.437, val: n/a | iter time: 59.45 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.498, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.529, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.583, val: n/a | iter time: 87.36 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.562, val: n/a | iter time: 57.28 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.582, val: n/a | iter time: 58.86 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.573, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.566, val: n/a | iter time: 60.40 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.528, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.510, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.579, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.547, val: n/a | iter time: 87.47 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.524, val: n/a | iter time: 57.41 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.498, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.538, val: n/a | iter time: 60.01 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.522, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.533, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.540, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.587, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.592, val: n/a | iter time: 87.50 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.589, val: n/a | iter time: 57.62 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.584, val: n/a | iter time: 58.55 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.596, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.588, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.531, val: n/a | iter time: 58.83 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.422, val: n/a | iter time: 58.90 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.332, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.333, val: n/a | iter time: 86.97 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.344, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.311, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.257, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.246, val: n/a | iter time: 60.18 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.318, val: n/a | iter time: 59.25 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.386, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.372, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.415, val: n/a | iter time: 87.07 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.413, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.484, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.481, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.525, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.489, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.450, val: n/a | iter time: 58.72 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.487, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.468, val: n/a | iter time: 86.83 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.452, val: n/a | iter time: 57.28 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.412, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.435, val: n/a | iter time: 57.84 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.439, val: n/a | iter time: 57.93 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.504, val: n/a | iter time: 58.72 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.520, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.506, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.501, val: n/a | iter time: 86.88 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.446, val: n/a | iter time: 56.84 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.465, val: n/a | iter time: 58.44 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.486, val: n/a | iter time: 58.01 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.520, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.446, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.469, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.467, val: n/a | iter time: 57.66 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.397, val: n/a | iter time: 87.17 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.433, val: n/a | iter time: 57.06 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.400, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.324, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.273, val: n/a | iter time: 61.05 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.331, val: n/a | iter time: 59.78 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.358, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.359, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.507, val: n/a | iter time: 87.14 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.429, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.447, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.468, val: n/a | iter time: 58.96 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.466, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.432, val: n/a | iter time: 59.03 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.400, val: n/a | iter time: 59.07 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.380, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.277, val: n/a | iter time: 87.50 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.368, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.343, val: n/a | iter time: 59.41 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.326, val: n/a | iter time: 59.29 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.361, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.436, val: n/a | iter time: 58.90 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.392, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.366, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.353, val: n/a | iter time: 88.10 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.322, val: n/a | iter time: 58.03 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.408, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.382, val: n/a | iter time: 58.72 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.361, val: n/a | iter time: 58.88 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.319, val: n/a | iter time: 59.06 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.300, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.299, val: n/a | iter time: 58.97 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.316, val: n/a | iter time: 89.53 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.291, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.253, val: n/a | iter time: 59.37 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.353, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.331, val: n/a | iter time: 58.82 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.209, val: n/a | iter time: 58.96 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.281, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.346, val: n/a | iter time: 59.30 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.305, val: n/a | iter time: 87.31 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.326, val: n/a | iter time: 57.47 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.271, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.253, val: n/a | iter time: 58.15 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.315, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.346, val: n/a | iter time: 62.85 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.306, val: n/a | iter time: 59.34 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.278, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.255, val: n/a | iter time: 87.84 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.280, val: n/a | iter time: 57.81 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.319, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.268, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.236, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.308, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.274, val: n/a | iter time: 58.83 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.284, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.349, val: n/a | iter time: 86.98 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.323, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.321, val: n/a | iter time: 58.83 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.403, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.367, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.280, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.315, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.388, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.359, val: n/a | iter time: 86.81 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.369, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.418, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.360, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.336, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.364, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.409, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.349, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.400, val: n/a | iter time: 87.20 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.322, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.278, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.279, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.242, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.302, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.301, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.252, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.229, val: n/a | iter time: 86.93 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.233, val: n/a | iter time: 57.74 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.178, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.181, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.194, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.173, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.148, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.114, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.138, val: n/a | iter time: 87.06 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.239, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.300, val: n/a | iter time: 58.92 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.266, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.318, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.271, val: n/a | iter time: 61.13 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.229, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.276, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.193, val: n/a | iter time: 86.99 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.118, val: n/a | iter time: 57.86 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.104, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.109, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 188 step 23 | loss train: 3.066, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.138, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.194, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.170, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.211, val: n/a | iter time: 86.88 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.214, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.161, val: n/a | iter time: 57.83 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.169, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.219, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.166, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 198 step 24 | loss train: 3.077, val: n/a | iter time: 57.94 ms
+Epoch 1 | iter 199 step 24 | loss train: 3.070, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 200 step 25 | loss train: 3.053, val: n/a | iter time: 86.85 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: Breath.
+
+Question: Why does a truck carry oxygen in its engine?
+Answer: The truck is engineered to carry oxygen through its fuel.
+
+Question: Does the truck carry oxygen in its engine?
+Answer: Yes.
+
+Question: Why does the truck carry oxygen in its engine?
+Answer: The truck is engineered to carry oxygen through its fuel.
+
+Question: Why do the trucks in
+
+iter 200: val loss 2.9952, val time: 2284.57 ms
+Epoch 1 | iter 201 step 25 | loss train: 3.048, val: 2.995 | iter time: 61.64 ms
+Epoch 1 | iter 202 step 25 | loss train: 3.063, val: 2.995 | iter time: 58.93 ms
+Epoch 1 | iter 203 step 25 | loss train: 3.018, val: 2.995 | iter time: 59.04 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.975, val: 2.995 | iter time: 57.94 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.965, val: 2.995 | iter time: 57.21 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.961, val: 2.995 | iter time: 58.20 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.971, val: 2.995 | iter time: 58.10 ms
+Epoch 1 | iter 208 step 26 | loss train: 3.031, val: 2.995 | iter time: 86.92 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 3.117, val: 2.995 | iter time: 56.72 ms
+Epoch 1 | iter 210 step 26 | loss train: 3.126, val: 2.995 | iter time: 57.88 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.186, val: 2.995 | iter time: 58.17 ms
+Epoch 1 | iter 212 step 26 | loss train: 3.123, val: 2.995 | iter time: 57.90 ms
+Epoch 1 | iter 213 step 26 | loss train: 3.126, val: 2.995 | iter time: 57.82 ms
+Epoch 1 | iter 214 step 26 | loss train: 3.135, val: 2.995 | iter time: 58.03 ms
+Epoch 1 | iter 215 step 26 | loss train: 3.076, val: 2.995 | iter time: 58.54 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.983, val: 2.995 | iter time: 86.73 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.858, val: 2.995 | iter time: 56.89 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.865, val: 2.995 | iter time: 58.22 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.843, val: 2.995 | iter time: 58.36 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.874, val: 2.995 | iter time: 57.68 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.897, val: 2.995 | iter time: 57.83 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.912, val: 2.995 | iter time: 60.82 ms
+Epoch 1 | iter 223 step 27 | loss train: 3.004, val: 2.995 | iter time: 58.92 ms
+Epoch 1 | iter 224 step 28 | loss train: 3.087, val: 2.995 | iter time: 87.10 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 3.111, val: 2.995 | iter time: 57.19 ms
+Epoch 1 | iter 226 step 28 | loss train: 3.111, val: 2.995 | iter time: 58.28 ms
+Epoch 1 | iter 227 step 28 | loss train: 3.061, val: 2.995 | iter time: 58.87 ms
+Epoch 1 | iter 228 step 28 | loss train: 3.090, val: 2.995 | iter time: 57.85 ms
+Epoch 1 | iter 229 step 28 | loss train: 3.010, val: 2.995 | iter time: 58.11 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.987, val: 2.995 | iter time: 57.99 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.939, val: 2.995 | iter time: 58.55 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.872, val: 2.995 | iter time: 86.79 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.917, val: 2.995 | iter time: 57.13 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.858, val: 2.995 | iter time: 57.86 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.915, val: 2.995 | iter time: 58.10 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.912, val: 2.995 | iter time: 58.12 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.951, val: 2.995 | iter time: 58.12 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.949, val: 2.995 | iter time: 58.21 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.905, val: 2.995 | iter time: 58.89 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.930, val: 2.995 | iter time: 87.05 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.897, val: 2.995 | iter time: 57.28 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.940, val: 2.995 | iter time: 57.56 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.947, val: 2.995 | iter time: 58.51 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.959, val: 2.995 | iter time: 58.02 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.989, val: 2.995 | iter time: 58.02 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.988, val: 2.995 | iter time: 57.63 ms
+Epoch 1 | iter 247 step 30 | loss train: 3.037, val: 2.995 | iter time: 58.43 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.983, val: 2.995 | iter time: 86.86 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.951, val: 2.995 | iter time: 57.80 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.888, val: 2.995 | iter time: 58.42 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.837, val: 2.995 | iter time: 58.68 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.774, val: 2.995 | iter time: 58.21 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.785, val: 2.995 | iter time: 58.08 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.809, val: 2.995 | iter time: 58.10 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.773, val: 2.995 | iter time: 58.18 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.782, val: 2.995 | iter time: 86.46 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.799, val: 2.995 | iter time: 56.85 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.847, val: 2.995 | iter time: 58.05 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.805, val: 2.995 | iter time: 58.25 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.823, val: 2.995 | iter time: 57.98 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.769, val: 2.995 | iter time: 57.79 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.782, val: 2.995 | iter time: 58.09 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.772, val: 2.995 | iter time: 58.22 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.772, val: 2.995 | iter time: 86.86 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.735, val: 2.995 | iter time: 57.16 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.738, val: 2.995 | iter time: 58.22 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.782, val: 2.995 | iter time: 58.97 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.777, val: 2.995 | iter time: 58.64 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.831, val: 2.995 | iter time: 58.07 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.837, val: 2.995 | iter time: 58.28 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.865, val: 2.995 | iter time: 58.45 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.906, val: 2.995 | iter time: 87.42 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.942, val: 2.995 | iter time: 57.11 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.875, val: 2.995 | iter time: 58.00 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.838, val: 2.995 | iter time: 58.61 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.827, val: 2.995 | iter time: 58.63 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.759, val: 2.995 | iter time: 57.82 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.732, val: 2.995 | iter time: 58.05 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.738, val: 2.995 | iter time: 58.51 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.757, val: 2.995 | iter time: 89.28 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.773, val: 2.995 | iter time: 57.37 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.830, val: 2.995 | iter time: 57.81 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.803, val: 2.995 | iter time: 58.77 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.793, val: 2.995 | iter time: 58.19 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.884, val: 2.995 | iter time: 58.06 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.880, val: 2.995 | iter time: 57.87 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.867, val: 2.995 | iter time: 59.30 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.733, val: 2.995 | iter time: 87.60 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.694, val: 2.995 | iter time: 57.27 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.644, val: 2.995 | iter time: 57.79 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.683, val: 2.995 | iter time: 58.60 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.743, val: 2.995 | iter time: 57.98 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.665, val: 2.995 | iter time: 58.06 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.627, val: 2.995 | iter time: 58.02 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.647, val: 2.995 | iter time: 58.56 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.788, val: 2.995 | iter time: 86.93 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.754, val: 2.995 | iter time: 56.91 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.796, val: 2.995 | iter time: 58.00 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.797, val: 2.995 | iter time: 58.56 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.710, val: 2.995 | iter time: 57.92 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.691, val: 2.995 | iter time: 57.85 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.697, val: 2.995 | iter time: 57.87 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.628, val: 2.995 | iter time: 58.61 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.570, val: 2.995 | iter time: 86.99 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.555, val: 2.995 | iter time: 57.50 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.498, val: 2.995 | iter time: 58.27 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.466, val: 2.995 | iter time: 58.75 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.468, val: 2.995 | iter time: 57.93 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.479, val: 2.995 | iter time: 58.32 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.483, val: 2.995 | iter time: 58.26 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.457, val: 2.995 | iter time: 58.55 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.479, val: 2.995 | iter time: 86.83 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.501, val: 2.995 | iter time: 57.36 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.484, val: 2.995 | iter time: 58.41 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.562, val: 2.995 | iter time: 58.61 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.601, val: 2.995 | iter time: 58.15 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.545, val: 2.995 | iter time: 60.08 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.512, val: 2.995 | iter time: 58.10 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.584, val: 2.995 | iter time: 58.23 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.568, val: 2.995 | iter time: 86.73 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.554, val: 2.995 | iter time: 57.37 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.570, val: 2.995 | iter time: 57.69 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.504, val: 2.995 | iter time: 58.42 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.499, val: 2.995 | iter time: 58.17 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.481, val: 2.995 | iter time: 58.20 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.464, val: 2.995 | iter time: 58.38 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.394, val: 2.995 | iter time: 58.48 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.363, val: 2.995 | iter time: 86.88 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.352, val: 2.995 | iter time: 56.96 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.413, val: 2.995 | iter time: 58.06 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.426, val: 2.995 | iter time: 58.55 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.394, val: 2.995 | iter time: 58.12 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.492, val: 2.995 | iter time: 59.06 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.541, val: 2.995 | iter time: 58.25 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.611, val: 2.995 | iter time: 58.89 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.591, val: 2.995 | iter time: 86.87 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.584, val: 2.995 | iter time: 57.47 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.561, val: 2.995 | iter time: 58.06 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.539, val: 2.995 | iter time: 58.39 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.563, val: 2.995 | iter time: 58.12 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.590, val: 2.995 | iter time: 58.20 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.596, val: 2.995 | iter time: 58.25 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.581, val: 2.995 | iter time: 58.91 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.611, val: 2.995 | iter time: 87.12 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.593, val: 2.995 | iter time: 57.43 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.580, val: 2.995 | iter time: 58.42 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.632, val: 2.995 | iter time: 60.09 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.634, val: 2.995 | iter time: 59.48 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.516, val: 2.995 | iter time: 58.98 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.509, val: 2.995 | iter time: 59.00 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.515, val: 2.995 | iter time: 59.30 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.485, val: 2.995 | iter time: 87.56 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.571, val: 2.995 | iter time: 57.50 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.632, val: 2.995 | iter time: 58.02 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.567, val: 2.995 | iter time: 58.50 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.510, val: 2.995 | iter time: 58.31 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.531, val: 2.995 | iter time: 58.24 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.472, val: 2.995 | iter time: 58.95 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.429, val: 2.995 | iter time: 58.74 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.419, val: 2.995 | iter time: 87.71 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.378, val: 2.995 | iter time: 57.35 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.293, val: 2.995 | iter time: 58.14 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.343, val: 2.995 | iter time: 58.79 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.328, val: 2.995 | iter time: 58.09 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.372, val: 2.995 | iter time: 58.12 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.432, val: 2.995 | iter time: 58.08 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.449, val: 2.995 | iter time: 58.82 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.479, val: 2.995 | iter time: 87.09 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.476, val: 2.995 | iter time: 57.71 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.481, val: 2.995 | iter time: 58.37 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.416, val: 2.995 | iter time: 58.36 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.492, val: 2.995 | iter time: 57.92 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.505, val: 2.995 | iter time: 58.30 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.483, val: 2.995 | iter time: 58.20 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.507, val: 2.995 | iter time: 58.35 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.452, val: 2.995 | iter time: 86.58 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.399, val: 2.995 | iter time: 57.52 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.398, val: 2.995 | iter time: 57.85 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.470, val: 2.995 | iter time: 58.54 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.439, val: 2.995 | iter time: 57.87 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.385, val: 2.995 | iter time: 57.70 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.368, val: 2.995 | iter time: 57.51 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.364, val: 2.995 | iter time: 58.51 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.401, val: 2.995 | iter time: 86.82 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.466, val: 2.995 | iter time: 59.63 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.448, val: 2.995 | iter time: 58.29 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.431, val: 2.995 | iter time: 58.33 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.433, val: 2.995 | iter time: 57.93 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.441, val: 2.995 | iter time: 57.77 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.427, val: 2.995 | iter time: 57.90 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.415, val: 2.995 | iter time: 58.39 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.437, val: 2.995 | iter time: 86.49 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.412, val: 2.995 | iter time: 57.02 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.449, val: 2.995 | iter time: 57.99 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.408, val: 2.995 | iter time: 58.40 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.413, val: 2.995 | iter time: 57.58 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.413, val: 2.995 | iter time: 58.09 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.400, val: 2.995 | iter time: 57.83 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.327, val: 2.995 | iter time: 58.41 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.325, val: 2.995 | iter time: 86.54 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: oxygenic plant
+\end{lstlisting}
+\end{tcolorbox}
+
+\begin{tcolorbox}
+\begin{lstlisting}
+Your task is to generate a QA pair from the provided text. The output format should be in the following format:
+
+Question: What is the primary function of the oxygen source in plants?
+
+Answer: Plant oxygenins
+\end{lstlisting}
+\end{t
+
+iter 400: val loss 2.2214, val time: 2197.72 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.282, val: 2.221 | iter time: 59.89 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.230, val: 2.221 | iter time: 58.61 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.240, val: 2.221 | iter time: 58.76 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.200, val: 2.221 | iter time: 57.80 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.126, val: 2.221 | iter time: 57.81 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.184, val: 2.221 | iter time: 57.88 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.213, val: 2.221 | iter time: 58.20 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.209, val: 2.221 | iter time: 87.52 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.291, val: 2.221 | iter time: 56.86 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.345, val: 2.221 | iter time: 57.75 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.364, val: 2.221 | iter time: 58.14 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.401, val: 2.221 | iter time: 58.03 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.416, val: 2.221 | iter time: 58.31 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.365, val: 2.221 | iter time: 57.93 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.370, val: 2.221 | iter time: 58.54 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.344, val: 2.221 | iter time: 86.87 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.342, val: 2.221 | iter time: 56.90 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.317, val: 2.221 | iter time: 57.74 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.260, val: 2.221 | iter time: 58.46 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.209, val: 2.221 | iter time: 57.88 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.218, val: 2.221 | iter time: 58.05 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.202, val: 2.221 | iter time: 58.18 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.182, val: 2.221 | iter time: 58.71 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.188, val: 2.221 | iter time: 87.22 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.188, val: 2.221 | iter time: 58.17 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.216, val: 2.221 | iter time: 58.05 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.274, val: 2.221 | iter time: 58.71 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.291, val: 2.221 | iter time: 57.82 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.333, val: 2.221 | iter time: 57.99 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.329, val: 2.221 | iter time: 58.32 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.379, val: 2.221 | iter time: 58.48 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.371, val: 2.221 | iter time: 86.86 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.363, val: 2.221 | iter time: 57.51 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.359, val: 2.221 | iter time: 58.13 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.342, val: 2.221 | iter time: 59.16 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.383, val: 2.221 | iter time: 58.41 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.365, val: 2.221 | iter time: 60.55 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.430, val: 2.221 | iter time: 58.74 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.424, val: 2.221 | iter time: 58.66 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.395, val: 2.221 | iter time: 87.13 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.401, val: 2.221 | iter time: 57.15 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.394, val: 2.221 | iter time: 57.71 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.433, val: 2.221 | iter time: 58.44 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.406, val: 2.221 | iter time: 57.74 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.455, val: 2.221 | iter time: 57.73 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.420, val: 2.221 | iter time: 57.51 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.369, val: 2.221 | iter time: 58.31 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.394, val: 2.221 | iter time: 86.25 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.347, val: 2.221 | iter time: 56.97 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.338, val: 2.221 | iter time: 57.66 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.308, val: 2.221 | iter time: 57.93 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.306, val: 2.221 | iter time: 57.78 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.242, val: 2.221 | iter time: 58.44 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.259, val: 2.221 | iter time: 58.36 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.281, val: 2.221 | iter time: 58.31 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.264, val: 2.221 | iter time: 86.31 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.272, val: 2.221 | iter time: 57.05 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.274, val: 2.221 | iter time: 57.85 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.249, val: 2.221 | iter time: 58.01 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.241, val: 2.221 | iter time: 58.04 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.283, val: 2.221 | iter time: 58.11 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.231, val: 2.221 | iter time: 58.11 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.234, val: 2.221 | iter time: 58.78 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.240, val: 2.221 | iter time: 86.64 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.243, val: 2.221 | iter time: 57.02 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.192, val: 2.221 | iter time: 57.61 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.190, val: 2.221 | iter time: 58.26 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.196, val: 2.221 | iter time: 57.88 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.194, val: 2.221 | iter time: 57.71 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.231, val: 2.221 | iter time: 57.72 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.229, val: 2.221 | iter time: 58.21 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.279, val: 2.221 | iter time: 86.81 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.276, val: 2.221 | iter time: 56.81 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.327, val: 2.221 | iter time: 57.88 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.337, val: 2.221 | iter time: 58.39 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.346, val: 2.221 | iter time: 57.85 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.369, val: 2.221 | iter time: 57.73 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.401, val: 2.221 | iter time: 57.92 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.442, val: 2.221 | iter time: 58.37 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.454, val: 2.221 | iter time: 86.72 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.416, val: 2.221 | iter time: 56.87 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.414, val: 2.221 | iter time: 57.68 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.402, val: 2.221 | iter time: 58.09 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.386, val: 2.221 | iter time: 57.80 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.303, val: 2.221 | iter time: 57.92 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.258, val: 2.221 | iter time: 57.67 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.218, val: 2.221 | iter time: 58.37 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.177, val: 2.221 | iter time: 86.90 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.203, val: 2.221 | iter time: 57.06 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.165, val: 2.221 | iter time: 58.77 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.187, val: 2.221 | iter time: 58.62 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.223, val: 2.221 | iter time: 57.90 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.229, val: 2.221 | iter time: 57.94 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.262, val: 2.221 | iter time: 57.61 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.240, val: 2.221 | iter time: 58.52 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.267, val: 2.221 | iter time: 86.53 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.319, val: 2.221 | iter time: 57.06 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.355, val: 2.221 | iter time: 57.90 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.305, val: 2.221 | iter time: 58.39 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.234, val: 2.221 | iter time: 58.00 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.244, val: 2.221 | iter time: 58.34 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.206, val: 2.221 | iter time: 57.83 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.182, val: 2.221 | iter time: 59.00 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.155, val: 2.221 | iter time: 86.65 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.102, val: 2.221 | iter time: 57.15 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.099, val: 2.221 | iter time: 58.07 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.113, val: 2.221 | iter time: 58.28 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.155, val: 2.221 | iter time: 57.62 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.145, val: 2.221 | iter time: 57.62 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.125, val: 2.221 | iter time: 57.45 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.170, val: 2.221 | iter time: 58.22 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.123, val: 2.221 | iter time: 86.89 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.126, val: 2.221 | iter time: 56.80 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.121, val: 2.221 | iter time: 57.84 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.124, val: 2.221 | iter time: 58.45 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.126, val: 2.221 | iter time: 57.80 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.173, val: 2.221 | iter time: 57.84 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.233, val: 2.221 | iter time: 58.14 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.200, val: 2.221 | iter time: 58.68 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.243, val: 2.221 | iter time: 86.73 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.237, val: 2.221 | iter time: 57.32 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.244, val: 2.221 | iter time: 58.05 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.269, val: 2.221 | iter time: 58.60 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.258, val: 2.221 | iter time: 58.09 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.174, val: 2.221 | iter time: 57.69 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.121, val: 2.221 | iter time: 57.97 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.128, val: 2.221 | iter time: 58.39 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.150, val: 2.221 | iter time: 86.30 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.191, val: 2.221 | iter time: 56.80 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.204, val: 2.221 | iter time: 57.53 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.174, val: 2.221 | iter time: 58.21 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.204, val: 2.221 | iter time: 57.99 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.220, val: 2.221 | iter time: 57.83 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.282, val: 2.221 | iter time: 57.85 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.293, val: 2.221 | iter time: 58.57 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.224, val: 2.221 | iter time: 86.82 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.200, val: 2.221 | iter time: 56.96 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.146, val: 2.221 | iter time: 57.63 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.155, val: 2.221 | iter time: 58.26 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.122, val: 2.221 | iter time: 58.31 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.185, val: 2.221 | iter time: 58.23 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.160, val: 2.221 | iter time: 58.03 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.239, val: 2.221 | iter time: 58.28 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.277, val: 2.221 | iter time: 87.18 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.275, val: 2.221 | iter time: 57.12 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.274, val: 2.221 | iter time: 58.00 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.293, val: 2.221 | iter time: 58.82 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.322, val: 2.221 | iter time: 57.65 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.298, val: 2.221 | iter time: 57.73 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.250, val: 2.221 | iter time: 57.86 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.183, val: 2.221 | iter time: 58.40 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.213, val: 2.221 | iter time: 87.10 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 40.28 s
+| - Tok/sec : 3090.95 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 2.093 | val ppl: 8.109
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2505_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2505_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ac26a796364430b871935a7122aceaa55a2a19b0
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2505_full.txt
@@ -0,0 +1,644 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2505_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2505'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 3.978, val: n/a | iter time: 220.37 ms
+Epoch 1 | iter 2 step 0 | loss train: 4.022, val: n/a | iter time: 66.03 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.784, val: n/a | iter time: 60.66 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.853, val: n/a | iter time: 59.50 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.751, val: n/a | iter time: 57.17 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.686, val: n/a | iter time: 57.33 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.708, val: n/a | iter time: 56.99 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.740, val: n/a | iter time: 162.30 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.636, val: n/a | iter time: 59.62 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.563, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.568, val: n/a | iter time: 57.43 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.546, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.582, val: n/a | iter time: 58.39 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.581, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.503, val: n/a | iter time: 58.61 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.389, val: n/a | iter time: 87.31 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.449, val: n/a | iter time: 57.23 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.444, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.462, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.483, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.521, val: n/a | iter time: 59.31 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.549, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.519, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.509, val: n/a | iter time: 87.66 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.590, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.586, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.583, val: n/a | iter time: 59.02 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.539, val: n/a | iter time: 59.04 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.514, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.565, val: n/a | iter time: 61.09 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.589, val: n/a | iter time: 59.19 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.669, val: n/a | iter time: 87.91 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.637, val: n/a | iter time: 57.40 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.655, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.637, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.626, val: n/a | iter time: 58.29 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.601, val: n/a | iter time: 58.35 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.589, val: n/a | iter time: 58.95 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.685, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.634, val: n/a | iter time: 88.20 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.612, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.583, val: n/a | iter time: 58.96 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.623, val: n/a | iter time: 58.63 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.622, val: n/a | iter time: 58.85 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.618, val: n/a | iter time: 59.21 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.633, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.663, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.666, val: n/a | iter time: 87.95 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.666, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.667, val: n/a | iter time: 59.02 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.694, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.686, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.632, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.513, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.426, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.432, val: n/a | iter time: 87.45 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.437, val: n/a | iter time: 57.52 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.398, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.357, val: n/a | iter time: 58.96 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.353, val: n/a | iter time: 59.34 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.426, val: n/a | iter time: 58.98 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.489, val: n/a | iter time: 58.60 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.469, val: n/a | iter time: 59.20 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.513, val: n/a | iter time: 87.52 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.521, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.603, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.592, val: n/a | iter time: 58.92 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.617, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.570, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.549, val: n/a | iter time: 59.22 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.600, val: n/a | iter time: 58.86 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.579, val: n/a | iter time: 87.25 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.565, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.519, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.533, val: n/a | iter time: 58.06 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.552, val: n/a | iter time: 58.73 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.612, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.625, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.598, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.590, val: n/a | iter time: 87.36 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.524, val: n/a | iter time: 57.40 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.528, val: n/a | iter time: 58.98 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.548, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.558, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.489, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.508, val: n/a | iter time: 59.07 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.510, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.441, val: n/a | iter time: 87.87 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.484, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.469, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.396, val: n/a | iter time: 60.81 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.350, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.414, val: n/a | iter time: 58.81 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.437, val: n/a | iter time: 58.27 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.442, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.596, val: n/a | iter time: 86.99 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.509, val: n/a | iter time: 57.34 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.533, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.544, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.551, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.513, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.494, val: n/a | iter time: 58.90 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.464, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.358, val: n/a | iter time: 87.24 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.448, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.426, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.408, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.436, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.514, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.457, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.432, val: n/a | iter time: 58.01 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.425, val: n/a | iter time: 87.86 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.409, val: n/a | iter time: 57.19 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.489, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.485, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.460, val: n/a | iter time: 58.68 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.418, val: n/a | iter time: 58.21 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.407, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.412, val: n/a | iter time: 58.62 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.400, val: n/a | iter time: 87.22 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.372, val: n/a | iter time: 59.50 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.349, val: n/a | iter time: 58.90 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.429, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.408, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.295, val: n/a | iter time: 59.34 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.376, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.433, val: n/a | iter time: 59.18 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.423, val: n/a | iter time: 87.39 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.432, val: n/a | iter time: 57.52 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.349, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.333, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.398, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.422, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.371, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.349, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.330, val: n/a | iter time: 87.21 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.371, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.421, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.369, val: n/a | iter time: 58.67 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.335, val: n/a | iter time: 58.04 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.395, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.347, val: n/a | iter time: 58.86 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.370, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.431, val: n/a | iter time: 87.12 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.391, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.399, val: n/a | iter time: 58.79 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.486, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.458, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.377, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.417, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.477, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.446, val: n/a | iter time: 86.88 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.479, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.519, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.462, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.424, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.448, val: n/a | iter time: 58.72 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.505, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.442, val: n/a | iter time: 58.43 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.483, val: n/a | iter time: 86.93 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.389, val: n/a | iter time: 57.85 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.338, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.331, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.311, val: n/a | iter time: 58.25 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.389, val: n/a | iter time: 58.24 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.369, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.325, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.294, val: n/a | iter time: 87.06 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.298, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.241, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.233, val: n/a | iter time: 58.54 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.232, val: n/a | iter time: 58.50 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.202, val: n/a | iter time: 58.33 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.190, val: n/a | iter time: 58.56 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.162, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.195, val: n/a | iter time: 87.46 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.285, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.375, val: n/a | iter time: 60.36 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.350, val: n/a | iter time: 58.89 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.384, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.340, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.297, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.332, val: n/a | iter time: 58.40 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.258, val: n/a | iter time: 87.07 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.196, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.158, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.166, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 188 step 23 | loss train: 3.135, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.209, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.256, val: n/a | iter time: 58.46 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.236, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.266, val: n/a | iter time: 87.13 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.251, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.180, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.197, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.252, val: n/a | iter time: 58.45 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.170, val: n/a | iter time: 58.65 ms
+Epoch 1 | iter 198 step 24 | loss train: 3.092, val: n/a | iter time: 59.02 ms
+Epoch 1 | iter 199 step 24 | loss train: 3.081, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 200 step 25 | loss train: 3.060, val: n/a | iter time: 87.83 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: The human body is composed of 15 different organ systems, each carrying oxygen.
+
+Question: Spoken English transcript: What is part of the body that contains oxygen?
+Answer: The human body is made up of 15 different organ systems and the blood.
+
+Question: Spoken English transcript: What is the numbness or pain of the body?
+Answer: The human body is made of cells that are cold, and they are called mus
+
+iter 200: val loss 3.0221, val time: 2294.83 ms
+Epoch 1 | iter 201 step 25 | loss train: 3.063, val: 3.022 | iter time: 61.13 ms
+Epoch 1 | iter 202 step 25 | loss train: 3.088, val: 3.022 | iter time: 59.20 ms
+Epoch 1 | iter 203 step 25 | loss train: 3.031, val: 3.022 | iter time: 58.64 ms
+Epoch 1 | iter 204 step 25 | loss train: 2.990, val: 3.022 | iter time: 58.49 ms
+Epoch 1 | iter 205 step 25 | loss train: 2.996, val: 3.022 | iter time: 58.00 ms
+Epoch 1 | iter 206 step 25 | loss train: 2.981, val: 3.022 | iter time: 58.95 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.984, val: 3.022 | iter time: 58.25 ms
+Epoch 1 | iter 208 step 26 | loss train: 3.056, val: 3.022 | iter time: 87.63 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 3.143, val: 3.022 | iter time: 57.53 ms
+Epoch 1 | iter 210 step 26 | loss train: 3.156, val: 3.022 | iter time: 58.88 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.214, val: 3.022 | iter time: 61.08 ms
+Epoch 1 | iter 212 step 26 | loss train: 3.151, val: 3.022 | iter time: 58.79 ms
+Epoch 1 | iter 213 step 26 | loss train: 3.148, val: 3.022 | iter time: 58.48 ms
+Epoch 1 | iter 214 step 26 | loss train: 3.150, val: 3.022 | iter time: 58.89 ms
+Epoch 1 | iter 215 step 26 | loss train: 3.093, val: 3.022 | iter time: 58.59 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.998, val: 3.022 | iter time: 87.47 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.857, val: 3.022 | iter time: 57.75 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.859, val: 3.022 | iter time: 58.71 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.835, val: 3.022 | iter time: 58.53 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.867, val: 3.022 | iter time: 58.28 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.890, val: 3.022 | iter time: 58.50 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.915, val: 3.022 | iter time: 58.56 ms
+Epoch 1 | iter 223 step 27 | loss train: 3.004, val: 3.022 | iter time: 58.70 ms
+Epoch 1 | iter 224 step 28 | loss train: 3.083, val: 3.022 | iter time: 87.79 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 3.115, val: 3.022 | iter time: 57.67 ms
+Epoch 1 | iter 226 step 28 | loss train: 3.116, val: 3.022 | iter time: 58.99 ms
+Epoch 1 | iter 227 step 28 | loss train: 3.066, val: 3.022 | iter time: 58.99 ms
+Epoch 1 | iter 228 step 28 | loss train: 3.086, val: 3.022 | iter time: 58.52 ms
+Epoch 1 | iter 229 step 28 | loss train: 3.011, val: 3.022 | iter time: 58.46 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.964, val: 3.022 | iter time: 58.54 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.915, val: 3.022 | iter time: 58.39 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.831, val: 3.022 | iter time: 87.41 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.884, val: 3.022 | iter time: 57.62 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.833, val: 3.022 | iter time: 58.44 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.888, val: 3.022 | iter time: 58.07 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.878, val: 3.022 | iter time: 58.62 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.922, val: 3.022 | iter time: 58.42 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.949, val: 3.022 | iter time: 58.26 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.905, val: 3.022 | iter time: 58.70 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.951, val: 3.022 | iter time: 87.64 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.913, val: 3.022 | iter time: 57.75 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.941, val: 3.022 | iter time: 58.12 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.955, val: 3.022 | iter time: 58.46 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.972, val: 3.022 | iter time: 58.48 ms
+Epoch 1 | iter 245 step 30 | loss train: 2.987, val: 3.022 | iter time: 58.48 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.968, val: 3.022 | iter time: 58.04 ms
+Epoch 1 | iter 247 step 30 | loss train: 3.016, val: 3.022 | iter time: 58.44 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.946, val: 3.022 | iter time: 87.39 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.920, val: 3.022 | iter time: 57.47 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.862, val: 3.022 | iter time: 58.66 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.812, val: 3.022 | iter time: 58.67 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.743, val: 3.022 | iter time: 58.62 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.762, val: 3.022 | iter time: 58.49 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.788, val: 3.022 | iter time: 59.61 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.776, val: 3.022 | iter time: 58.28 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.787, val: 3.022 | iter time: 86.99 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.798, val: 3.022 | iter time: 57.39 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.834, val: 3.022 | iter time: 58.73 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.782, val: 3.022 | iter time: 58.22 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.793, val: 3.022 | iter time: 58.64 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.738, val: 3.022 | iter time: 58.49 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.750, val: 3.022 | iter time: 58.63 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.720, val: 3.022 | iter time: 58.25 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.726, val: 3.022 | iter time: 87.39 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.680, val: 3.022 | iter time: 57.68 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.706, val: 3.022 | iter time: 58.62 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.757, val: 3.022 | iter time: 58.49 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.756, val: 3.022 | iter time: 58.70 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.818, val: 3.022 | iter time: 58.35 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.808, val: 3.022 | iter time: 58.60 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.842, val: 3.022 | iter time: 58.34 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.885, val: 3.022 | iter time: 87.96 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.922, val: 3.022 | iter time: 57.45 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.852, val: 3.022 | iter time: 58.42 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.802, val: 3.022 | iter time: 58.54 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.799, val: 3.022 | iter time: 59.15 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.726, val: 3.022 | iter time: 58.47 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.712, val: 3.022 | iter time: 58.81 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.728, val: 3.022 | iter time: 58.81 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.738, val: 3.022 | iter time: 87.36 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.765, val: 3.022 | iter time: 58.76 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.821, val: 3.022 | iter time: 58.66 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.812, val: 3.022 | iter time: 58.73 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.784, val: 3.022 | iter time: 58.65 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.872, val: 3.022 | iter time: 58.42 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.862, val: 3.022 | iter time: 58.44 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.836, val: 3.022 | iter time: 58.53 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.710, val: 3.022 | iter time: 88.05 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.665, val: 3.022 | iter time: 57.82 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.602, val: 3.022 | iter time: 60.26 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.629, val: 3.022 | iter time: 58.94 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.712, val: 3.022 | iter time: 58.54 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.632, val: 3.022 | iter time: 58.67 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.610, val: 3.022 | iter time: 58.79 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.625, val: 3.022 | iter time: 58.64 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.759, val: 3.022 | iter time: 87.57 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.733, val: 3.022 | iter time: 57.38 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.779, val: 3.022 | iter time: 58.51 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.797, val: 3.022 | iter time: 58.43 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.721, val: 3.022 | iter time: 58.42 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.707, val: 3.022 | iter time: 58.50 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.699, val: 3.022 | iter time: 58.48 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.621, val: 3.022 | iter time: 58.47 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.562, val: 3.022 | iter time: 87.76 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.542, val: 3.022 | iter time: 57.90 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.491, val: 3.022 | iter time: 58.50 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.460, val: 3.022 | iter time: 58.51 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.443, val: 3.022 | iter time: 58.28 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.464, val: 3.022 | iter time: 58.50 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.474, val: 3.022 | iter time: 58.68 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.474, val: 3.022 | iter time: 58.41 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.506, val: 3.022 | iter time: 87.09 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.535, val: 3.022 | iter time: 57.86 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.528, val: 3.022 | iter time: 58.76 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.588, val: 3.022 | iter time: 58.56 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.640, val: 3.022 | iter time: 58.61 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.586, val: 3.022 | iter time: 58.17 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.557, val: 3.022 | iter time: 58.58 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.612, val: 3.022 | iter time: 58.14 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.587, val: 3.022 | iter time: 87.40 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.575, val: 3.022 | iter time: 61.46 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.570, val: 3.022 | iter time: 58.12 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.517, val: 3.022 | iter time: 58.08 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.498, val: 3.022 | iter time: 58.46 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.468, val: 3.022 | iter time: 58.48 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.461, val: 3.022 | iter time: 58.91 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.384, val: 3.022 | iter time: 58.63 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.375, val: 3.022 | iter time: 87.73 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.359, val: 3.022 | iter time: 57.93 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.427, val: 3.022 | iter time: 58.72 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.425, val: 3.022 | iter time: 58.47 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.409, val: 3.022 | iter time: 58.70 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.512, val: 3.022 | iter time: 58.50 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.550, val: 3.022 | iter time: 58.52 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.619, val: 3.022 | iter time: 58.49 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.591, val: 3.022 | iter time: 87.20 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.589, val: 3.022 | iter time: 57.85 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.577, val: 3.022 | iter time: 58.62 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.569, val: 3.022 | iter time: 58.32 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.580, val: 3.022 | iter time: 58.65 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.605, val: 3.022 | iter time: 58.56 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.623, val: 3.022 | iter time: 58.58 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.621, val: 3.022 | iter time: 58.86 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.643, val: 3.022 | iter time: 87.54 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.615, val: 3.022 | iter time: 57.86 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.600, val: 3.022 | iter time: 58.72 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.638, val: 3.022 | iter time: 58.68 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.654, val: 3.022 | iter time: 58.61 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.547, val: 3.022 | iter time: 58.28 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.529, val: 3.022 | iter time: 58.59 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.532, val: 3.022 | iter time: 58.35 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.505, val: 3.022 | iter time: 87.23 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.602, val: 3.022 | iter time: 57.36 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.656, val: 3.022 | iter time: 58.16 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.595, val: 3.022 | iter time: 58.16 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.547, val: 3.022 | iter time: 58.55 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.566, val: 3.022 | iter time: 58.34 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.511, val: 3.022 | iter time: 59.08 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.474, val: 3.022 | iter time: 58.44 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.465, val: 3.022 | iter time: 88.08 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.418, val: 3.022 | iter time: 57.75 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.334, val: 3.022 | iter time: 58.49 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.389, val: 3.022 | iter time: 61.61 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.357, val: 3.022 | iter time: 59.53 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.397, val: 3.022 | iter time: 58.54 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.451, val: 3.022 | iter time: 58.35 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.450, val: 3.022 | iter time: 58.56 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.468, val: 3.022 | iter time: 87.38 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.465, val: 3.022 | iter time: 57.67 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.472, val: 3.022 | iter time: 58.60 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.415, val: 3.022 | iter time: 58.31 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.504, val: 3.022 | iter time: 58.24 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.523, val: 3.022 | iter time: 58.69 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.502, val: 3.022 | iter time: 58.53 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.525, val: 3.022 | iter time: 58.30 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.484, val: 3.022 | iter time: 86.96 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.428, val: 3.022 | iter time: 58.00 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.442, val: 3.022 | iter time: 58.42 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.497, val: 3.022 | iter time: 58.64 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.461, val: 3.022 | iter time: 58.75 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.401, val: 3.022 | iter time: 58.09 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.391, val: 3.022 | iter time: 58.29 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.415, val: 3.022 | iter time: 58.44 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.456, val: 3.022 | iter time: 87.60 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.521, val: 3.022 | iter time: 57.91 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.485, val: 3.022 | iter time: 58.68 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.479, val: 3.022 | iter time: 58.43 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.471, val: 3.022 | iter time: 58.63 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.479, val: 3.022 | iter time: 58.52 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.469, val: 3.022 | iter time: 58.65 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.444, val: 3.022 | iter time: 58.46 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.449, val: 3.022 | iter time: 87.21 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.434, val: 3.022 | iter time: 57.75 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.481, val: 3.022 | iter time: 58.73 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.442, val: 3.022 | iter time: 58.64 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.449, val: 3.022 | iter time: 58.21 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.451, val: 3.022 | iter time: 58.71 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.427, val: 3.022 | iter time: 58.50 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.354, val: 3.022 | iter time: 59.52 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.360, val: 3.022 | iter time: 87.98 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: oxygen.
+
+\end{lstlisting}
+
+\subsection{Medical-MMLU-Pro-12}
+
+
+\begin{lstlisting}[style=revision]
+
+The MMLU-Pro-12 dataset is a refined version of the original MMLU benchmark designed to enhance its medical knowledge and reasoning capabilities. The process involved:
+
+1. Initial Dataset Collection: The original MMLU dataset contains about
+
+iter 400: val loss 2.2597, val time: 2229.56 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.308, val: 2.260 | iter time: 60.91 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.250, val: 2.260 | iter time: 59.47 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.260, val: 2.260 | iter time: 58.90 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.221, val: 2.260 | iter time: 58.66 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.154, val: 2.260 | iter time: 58.15 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.228, val: 2.260 | iter time: 58.14 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.270, val: 2.260 | iter time: 57.91 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.271, val: 2.260 | iter time: 87.81 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.360, val: 2.260 | iter time: 56.86 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.433, val: 2.260 | iter time: 58.31 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.452, val: 2.260 | iter time: 57.96 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.490, val: 2.260 | iter time: 58.47 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.492, val: 2.260 | iter time: 59.24 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.432, val: 2.260 | iter time: 58.76 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.429, val: 2.260 | iter time: 58.52 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.411, val: 2.260 | iter time: 87.42 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.406, val: 2.260 | iter time: 57.46 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.378, val: 2.260 | iter time: 58.43 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.319, val: 2.260 | iter time: 58.29 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.267, val: 2.260 | iter time: 58.27 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.291, val: 2.260 | iter time: 58.41 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.265, val: 2.260 | iter time: 58.58 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.256, val: 2.260 | iter time: 58.47 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.250, val: 2.260 | iter time: 87.26 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.241, val: 2.260 | iter time: 57.30 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.246, val: 2.260 | iter time: 57.97 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.301, val: 2.260 | iter time: 58.27 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.318, val: 2.260 | iter time: 58.27 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.340, val: 2.260 | iter time: 58.22 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.339, val: 2.260 | iter time: 58.78 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.368, val: 2.260 | iter time: 58.36 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.343, val: 2.260 | iter time: 87.12 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.349, val: 2.260 | iter time: 57.60 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.346, val: 2.260 | iter time: 58.30 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.318, val: 2.260 | iter time: 58.02 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.361, val: 2.260 | iter time: 58.60 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.365, val: 2.260 | iter time: 58.26 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.426, val: 2.260 | iter time: 58.40 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.419, val: 2.260 | iter time: 58.36 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.417, val: 2.260 | iter time: 87.32 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.413, val: 2.260 | iter time: 57.52 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.409, val: 2.260 | iter time: 58.01 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.446, val: 2.260 | iter time: 61.13 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.417, val: 2.260 | iter time: 58.95 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.450, val: 2.260 | iter time: 58.62 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.412, val: 2.260 | iter time: 58.12 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.361, val: 2.260 | iter time: 58.34 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.381, val: 2.260 | iter time: 87.17 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.328, val: 2.260 | iter time: 57.86 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.329, val: 2.260 | iter time: 58.60 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.319, val: 2.260 | iter time: 58.05 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.314, val: 2.260 | iter time: 58.40 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.246, val: 2.260 | iter time: 58.63 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.271, val: 2.260 | iter time: 59.20 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.298, val: 2.260 | iter time: 58.46 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.272, val: 2.260 | iter time: 87.14 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.282, val: 2.260 | iter time: 57.53 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.283, val: 2.260 | iter time: 58.52 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.232, val: 2.260 | iter time: 57.97 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.225, val: 2.260 | iter time: 58.52 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.269, val: 2.260 | iter time: 58.59 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.212, val: 2.260 | iter time: 58.74 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.205, val: 2.260 | iter time: 58.53 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.214, val: 2.260 | iter time: 87.05 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.215, val: 2.260 | iter time: 57.74 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.162, val: 2.260 | iter time: 58.45 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.168, val: 2.260 | iter time: 58.41 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.178, val: 2.260 | iter time: 58.74 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.181, val: 2.260 | iter time: 58.59 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.218, val: 2.260 | iter time: 58.32 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.228, val: 2.260 | iter time: 58.22 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.280, val: 2.260 | iter time: 87.55 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.281, val: 2.260 | iter time: 57.72 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.329, val: 2.260 | iter time: 58.88 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.348, val: 2.260 | iter time: 58.45 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.356, val: 2.260 | iter time: 58.61 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.381, val: 2.260 | iter time: 58.42 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.408, val: 2.260 | iter time: 58.56 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.449, val: 2.260 | iter time: 58.63 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.454, val: 2.260 | iter time: 87.59 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.418, val: 2.260 | iter time: 57.61 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.409, val: 2.260 | iter time: 58.43 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.409, val: 2.260 | iter time: 57.93 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.385, val: 2.260 | iter time: 58.55 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.310, val: 2.260 | iter time: 58.49 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.286, val: 2.260 | iter time: 58.21 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.239, val: 2.260 | iter time: 59.42 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.198, val: 2.260 | iter time: 87.79 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.219, val: 2.260 | iter time: 57.76 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.185, val: 2.260 | iter time: 58.60 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.194, val: 2.260 | iter time: 58.37 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.235, val: 2.260 | iter time: 58.85 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.236, val: 2.260 | iter time: 58.88 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.252, val: 2.260 | iter time: 58.21 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.230, val: 2.260 | iter time: 58.60 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.260, val: 2.260 | iter time: 86.97 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.311, val: 2.260 | iter time: 57.62 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.367, val: 2.260 | iter time: 58.35 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.322, val: 2.260 | iter time: 58.30 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.238, val: 2.260 | iter time: 58.38 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.245, val: 2.260 | iter time: 58.22 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.216, val: 2.260 | iter time: 58.44 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.202, val: 2.260 | iter time: 58.76 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.172, val: 2.260 | iter time: 87.07 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.121, val: 2.260 | iter time: 57.35 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.114, val: 2.260 | iter time: 58.09 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.132, val: 2.260 | iter time: 58.00 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.181, val: 2.260 | iter time: 58.08 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.155, val: 2.260 | iter time: 57.95 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.135, val: 2.260 | iter time: 57.70 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.175, val: 2.260 | iter time: 58.49 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.134, val: 2.260 | iter time: 86.90 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.150, val: 2.260 | iter time: 57.12 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.134, val: 2.260 | iter time: 58.72 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.133, val: 2.260 | iter time: 57.97 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.125, val: 2.260 | iter time: 58.00 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.178, val: 2.260 | iter time: 58.32 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.229, val: 2.260 | iter time: 58.11 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.211, val: 2.260 | iter time: 58.24 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.257, val: 2.260 | iter time: 87.49 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.253, val: 2.260 | iter time: 59.23 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.266, val: 2.260 | iter time: 58.02 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.274, val: 2.260 | iter time: 58.28 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.278, val: 2.260 | iter time: 58.25 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.198, val: 2.260 | iter time: 58.12 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.155, val: 2.260 | iter time: 58.23 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.156, val: 2.260 | iter time: 58.75 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.178, val: 2.260 | iter time: 86.98 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.203, val: 2.260 | iter time: 57.07 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.203, val: 2.260 | iter time: 58.75 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.178, val: 2.260 | iter time: 58.33 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.200, val: 2.260 | iter time: 58.63 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.214, val: 2.260 | iter time: 58.46 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.273, val: 2.260 | iter time: 58.22 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.282, val: 2.260 | iter time: 58.52 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.208, val: 2.260 | iter time: 87.40 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.182, val: 2.260 | iter time: 57.46 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.133, val: 2.260 | iter time: 57.85 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.149, val: 2.260 | iter time: 57.98 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.122, val: 2.260 | iter time: 58.26 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.190, val: 2.260 | iter time: 58.51 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.170, val: 2.260 | iter time: 58.45 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.235, val: 2.260 | iter time: 58.18 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.268, val: 2.260 | iter time: 87.57 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.280, val: 2.260 | iter time: 57.65 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.273, val: 2.260 | iter time: 58.59 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.301, val: 2.260 | iter time: 58.68 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.326, val: 2.260 | iter time: 58.27 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.307, val: 2.260 | iter time: 58.20 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.244, val: 2.260 | iter time: 58.31 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.190, val: 2.260 | iter time: 58.53 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.236, val: 2.260 | iter time: 87.88 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 40.44 s
+| - Tok/sec : 3078.66 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 2.093 | val ppl: 8.108
diff --git a/out/finetune/tinyllama_full_arc/teelogs/2506_full.txt b/out/finetune/tinyllama_full_arc/teelogs/2506_full.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ab9e556fbd879f19cc344ee47c389b15b9fb90c3
--- /dev/null
+++ b/out/finetune/tinyllama_full_arc/teelogs/2506_full.txt
@@ -0,0 +1,635 @@
+Seed set to 1337
+{'access_token': None,
+ 'checkpoint_dir': PosixPath('out/pretrain/tinyllama/2506_full/final'),
+ 'data': JSON(json_path=PosixPath('litgpt/data/arc_finetune/train.json'),
+ mask_prompt=False,
+ val_split_fraction=0.02,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=25,
+ max_new_tokens=100,
+ max_iters=100,
+ initial_validation=False,
+ final_validation=True,
+ evaluate_example='first'),
+ 'log': LogArgs(project=None, run=None, group=None),
+ 'logger_name': 'csv',
+ 'num_nodes': 1,
+ 'optimizer': {'class_path': 'torch.optim.AdamW',
+ 'init_args': {'betas': [0.9, 0.95],
+ 'lr': 0.0002,
+ 'weight_decay': 0.0}},
+ 'out_dir': PosixPath('out/finetune/tinyllama_full_arc/2506'),
+ 'precision': 'bf16-true',
+ 'resume': False,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=32,
+ micro_batch_size=4,
+ lr_warmup_steps=1000,
+ lr_warmup_fraction=None,
+ epochs=1,
+ max_tokens=None,
+ max_steps=None,
+ max_seq_length=512,
+ tie_embeddings=None,
+ max_norm=None,
+ min_lr=6e-05)}
+Number of trainable parameters: 1,100,048,384
+The longest sequence length in the train data is 145, the model's maximum sequence length is 145 and context length is 2048
+Verifying settings ...
+Epoch 1 | iter 1 step 0 | loss train: 3.880, val: n/a | iter time: 218.51 ms
+Epoch 1 | iter 2 step 0 | loss train: 3.954, val: n/a | iter time: 67.07 ms
+Epoch 1 | iter 3 step 0 | loss train: 3.690, val: n/a | iter time: 60.22 ms
+Epoch 1 | iter 4 step 0 | loss train: 3.763, val: n/a | iter time: 60.38 ms
+Epoch 1 | iter 5 step 0 | loss train: 3.639, val: n/a | iter time: 57.57 ms
+Epoch 1 | iter 6 step 0 | loss train: 3.576, val: n/a | iter time: 57.79 ms
+Epoch 1 | iter 7 step 0 | loss train: 3.601, val: n/a | iter time: 57.45 ms
+Epoch 1 | iter 8 step 1 | loss train: 3.638, val: n/a | iter time: 165.29 ms (step)
+Epoch 1 | iter 9 step 1 | loss train: 3.533, val: n/a | iter time: 58.93 ms
+Epoch 1 | iter 10 step 1 | loss train: 3.454, val: n/a | iter time: 59.53 ms
+Epoch 1 | iter 11 step 1 | loss train: 3.464, val: n/a | iter time: 58.20 ms
+Epoch 1 | iter 12 step 1 | loss train: 3.437, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 13 step 1 | loss train: 3.490, val: n/a | iter time: 58.99 ms
+Epoch 1 | iter 14 step 1 | loss train: 3.484, val: n/a | iter time: 59.50 ms
+Epoch 1 | iter 15 step 1 | loss train: 3.394, val: n/a | iter time: 59.16 ms
+Epoch 1 | iter 16 step 2 | loss train: 3.284, val: n/a | iter time: 87.69 ms (step)
+Epoch 1 | iter 17 step 2 | loss train: 3.341, val: n/a | iter time: 57.64 ms
+Epoch 1 | iter 18 step 2 | loss train: 3.342, val: n/a | iter time: 58.30 ms
+Epoch 1 | iter 19 step 2 | loss train: 3.353, val: n/a | iter time: 58.62 ms
+Epoch 1 | iter 20 step 2 | loss train: 3.393, val: n/a | iter time: 61.94 ms
+Epoch 1 | iter 21 step 2 | loss train: 3.426, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 22 step 2 | loss train: 3.462, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 23 step 2 | loss train: 3.449, val: n/a | iter time: 58.32 ms
+Epoch 1 | iter 24 step 3 | loss train: 3.454, val: n/a | iter time: 87.65 ms (step)
+Epoch 1 | iter 25 step 3 | loss train: 3.543, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 26 step 3 | loss train: 3.545, val: n/a | iter time: 59.87 ms
+Epoch 1 | iter 27 step 3 | loss train: 3.564, val: n/a | iter time: 59.54 ms
+Epoch 1 | iter 28 step 3 | loss train: 3.510, val: n/a | iter time: 59.61 ms
+Epoch 1 | iter 29 step 3 | loss train: 3.493, val: n/a | iter time: 58.87 ms
+Epoch 1 | iter 30 step 3 | loss train: 3.556, val: n/a | iter time: 59.70 ms
+Epoch 1 | iter 31 step 3 | loss train: 3.589, val: n/a | iter time: 59.09 ms
+Epoch 1 | iter 32 step 4 | loss train: 3.646, val: n/a | iter time: 87.98 ms (step)
+Epoch 1 | iter 33 step 4 | loss train: 3.607, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 34 step 4 | loss train: 3.602, val: n/a | iter time: 59.31 ms
+Epoch 1 | iter 35 step 4 | loss train: 3.584, val: n/a | iter time: 58.87 ms
+Epoch 1 | iter 36 step 4 | loss train: 3.574, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 37 step 4 | loss train: 3.534, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 38 step 4 | loss train: 3.513, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 39 step 4 | loss train: 3.579, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 40 step 5 | loss train: 3.531, val: n/a | iter time: 87.74 ms (step)
+Epoch 1 | iter 41 step 5 | loss train: 3.514, val: n/a | iter time: 57.42 ms
+Epoch 1 | iter 42 step 5 | loss train: 3.489, val: n/a | iter time: 58.48 ms
+Epoch 1 | iter 43 step 5 | loss train: 3.521, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 44 step 5 | loss train: 3.517, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 45 step 5 | loss train: 3.517, val: n/a | iter time: 58.85 ms
+Epoch 1 | iter 46 step 5 | loss train: 3.526, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 47 step 5 | loss train: 3.563, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 48 step 6 | loss train: 3.568, val: n/a | iter time: 89.55 ms (step)
+Epoch 1 | iter 49 step 6 | loss train: 3.552, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 50 step 6 | loss train: 3.550, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 51 step 6 | loss train: 3.570, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 52 step 6 | loss train: 3.551, val: n/a | iter time: 58.35 ms
+Epoch 1 | iter 53 step 6 | loss train: 3.505, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 54 step 6 | loss train: 3.385, val: n/a | iter time: 58.77 ms
+Epoch 1 | iter 55 step 6 | loss train: 3.309, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 56 step 7 | loss train: 3.311, val: n/a | iter time: 87.17 ms (step)
+Epoch 1 | iter 57 step 7 | loss train: 3.330, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 58 step 7 | loss train: 3.284, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 59 step 7 | loss train: 3.252, val: n/a | iter time: 58.70 ms
+Epoch 1 | iter 60 step 7 | loss train: 3.247, val: n/a | iter time: 60.21 ms
+Epoch 1 | iter 61 step 7 | loss train: 3.313, val: n/a | iter time: 58.91 ms
+Epoch 1 | iter 62 step 7 | loss train: 3.388, val: n/a | iter time: 58.53 ms
+Epoch 1 | iter 63 step 7 | loss train: 3.368, val: n/a | iter time: 58.89 ms
+Epoch 1 | iter 64 step 8 | loss train: 3.416, val: n/a | iter time: 87.13 ms (step)
+Epoch 1 | iter 65 step 8 | loss train: 3.413, val: n/a | iter time: 57.44 ms
+Epoch 1 | iter 66 step 8 | loss train: 3.495, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 67 step 8 | loss train: 3.461, val: n/a | iter time: 58.69 ms
+Epoch 1 | iter 68 step 8 | loss train: 3.489, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 69 step 8 | loss train: 3.444, val: n/a | iter time: 58.34 ms
+Epoch 1 | iter 70 step 8 | loss train: 3.411, val: n/a | iter time: 58.82 ms
+Epoch 1 | iter 71 step 8 | loss train: 3.459, val: n/a | iter time: 58.71 ms
+Epoch 1 | iter 72 step 9 | loss train: 3.435, val: n/a | iter time: 86.96 ms (step)
+Epoch 1 | iter 73 step 9 | loss train: 3.434, val: n/a | iter time: 57.53 ms
+Epoch 1 | iter 74 step 9 | loss train: 3.395, val: n/a | iter time: 58.07 ms
+Epoch 1 | iter 75 step 9 | loss train: 3.425, val: n/a | iter time: 57.78 ms
+Epoch 1 | iter 76 step 9 | loss train: 3.434, val: n/a | iter time: 58.13 ms
+Epoch 1 | iter 77 step 9 | loss train: 3.493, val: n/a | iter time: 57.86 ms
+Epoch 1 | iter 78 step 9 | loss train: 3.503, val: n/a | iter time: 58.41 ms
+Epoch 1 | iter 79 step 9 | loss train: 3.478, val: n/a | iter time: 57.90 ms
+Epoch 1 | iter 80 step 10 | loss train: 3.473, val: n/a | iter time: 86.93 ms (step)
+Epoch 1 | iter 81 step 10 | loss train: 3.408, val: n/a | iter time: 56.87 ms
+Epoch 1 | iter 82 step 10 | loss train: 3.420, val: n/a | iter time: 58.92 ms
+Epoch 1 | iter 83 step 10 | loss train: 3.437, val: n/a | iter time: 58.17 ms
+Epoch 1 | iter 84 step 10 | loss train: 3.468, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 85 step 10 | loss train: 3.416, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 86 step 10 | loss train: 3.444, val: n/a | iter time: 58.59 ms
+Epoch 1 | iter 87 step 10 | loss train: 3.449, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 88 step 11 | loss train: 3.374, val: n/a | iter time: 87.36 ms (step)
+Epoch 1 | iter 89 step 11 | loss train: 3.411, val: n/a | iter time: 57.32 ms
+Epoch 1 | iter 90 step 11 | loss train: 3.404, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 91 step 11 | loss train: 3.348, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 92 step 11 | loss train: 3.300, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 93 step 11 | loss train: 3.354, val: n/a | iter time: 58.51 ms
+Epoch 1 | iter 94 step 11 | loss train: 3.385, val: n/a | iter time: 58.19 ms
+Epoch 1 | iter 95 step 11 | loss train: 3.389, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 96 step 12 | loss train: 3.545, val: n/a | iter time: 87.78 ms (step)
+Epoch 1 | iter 97 step 12 | loss train: 3.463, val: n/a | iter time: 57.48 ms
+Epoch 1 | iter 98 step 12 | loss train: 3.468, val: n/a | iter time: 58.36 ms
+Epoch 1 | iter 99 step 12 | loss train: 3.479, val: n/a | iter time: 59.12 ms
+Epoch 1 | iter 100 step 12 | loss train: 3.479, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 101 step 12 | loss train: 3.436, val: n/a | iter time: 58.02 ms
+Epoch 1 | iter 102 step 12 | loss train: 3.403, val: n/a | iter time: 59.10 ms
+Epoch 1 | iter 103 step 12 | loss train: 3.379, val: n/a | iter time: 58.47 ms
+Epoch 1 | iter 104 step 13 | loss train: 3.288, val: n/a | iter time: 88.43 ms (step)
+Epoch 1 | iter 105 step 13 | loss train: 3.390, val: n/a | iter time: 57.69 ms
+Epoch 1 | iter 106 step 13 | loss train: 3.367, val: n/a | iter time: 57.98 ms
+Epoch 1 | iter 107 step 13 | loss train: 3.331, val: n/a | iter time: 58.78 ms
+Epoch 1 | iter 108 step 13 | loss train: 3.368, val: n/a | iter time: 58.38 ms
+Epoch 1 | iter 109 step 13 | loss train: 3.443, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 110 step 13 | loss train: 3.398, val: n/a | iter time: 57.99 ms
+Epoch 1 | iter 111 step 13 | loss train: 3.365, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 112 step 14 | loss train: 3.353, val: n/a | iter time: 87.86 ms (step)
+Epoch 1 | iter 113 step 14 | loss train: 3.325, val: n/a | iter time: 56.89 ms
+Epoch 1 | iter 114 step 14 | loss train: 3.407, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 115 step 14 | loss train: 3.408, val: n/a | iter time: 58.49 ms
+Epoch 1 | iter 116 step 14 | loss train: 3.374, val: n/a | iter time: 58.37 ms
+Epoch 1 | iter 117 step 14 | loss train: 3.319, val: n/a | iter time: 57.99 ms
+Epoch 1 | iter 118 step 14 | loss train: 3.296, val: n/a | iter time: 61.06 ms
+Epoch 1 | iter 119 step 14 | loss train: 3.299, val: n/a | iter time: 58.88 ms
+Epoch 1 | iter 120 step 15 | loss train: 3.285, val: n/a | iter time: 87.14 ms (step)
+Epoch 1 | iter 121 step 15 | loss train: 3.262, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 122 step 15 | loss train: 3.224, val: n/a | iter time: 58.62 ms
+Epoch 1 | iter 123 step 15 | loss train: 3.311, val: n/a | iter time: 58.28 ms
+Epoch 1 | iter 124 step 15 | loss train: 3.303, val: n/a | iter time: 58.10 ms
+Epoch 1 | iter 125 step 15 | loss train: 3.216, val: n/a | iter time: 58.64 ms
+Epoch 1 | iter 126 step 15 | loss train: 3.305, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 127 step 15 | loss train: 3.368, val: n/a | iter time: 58.84 ms
+Epoch 1 | iter 128 step 16 | loss train: 3.357, val: n/a | iter time: 87.23 ms (step)
+Epoch 1 | iter 129 step 16 | loss train: 3.356, val: n/a | iter time: 57.84 ms
+Epoch 1 | iter 130 step 16 | loss train: 3.309, val: n/a | iter time: 58.94 ms
+Epoch 1 | iter 131 step 16 | loss train: 3.285, val: n/a | iter time: 59.00 ms
+Epoch 1 | iter 132 step 16 | loss train: 3.350, val: n/a | iter time: 59.42 ms
+Epoch 1 | iter 133 step 16 | loss train: 3.373, val: n/a | iter time: 58.52 ms
+Epoch 1 | iter 134 step 16 | loss train: 3.326, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 135 step 16 | loss train: 3.313, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 136 step 17 | loss train: 3.289, val: n/a | iter time: 86.99 ms (step)
+Epoch 1 | iter 137 step 17 | loss train: 3.346, val: n/a | iter time: 57.29 ms
+Epoch 1 | iter 138 step 17 | loss train: 3.388, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 139 step 17 | loss train: 3.344, val: n/a | iter time: 58.31 ms
+Epoch 1 | iter 140 step 17 | loss train: 3.309, val: n/a | iter time: 58.09 ms
+Epoch 1 | iter 141 step 17 | loss train: 3.365, val: n/a | iter time: 57.91 ms
+Epoch 1 | iter 142 step 17 | loss train: 3.309, val: n/a | iter time: 58.75 ms
+Epoch 1 | iter 143 step 17 | loss train: 3.330, val: n/a | iter time: 58.14 ms
+Epoch 1 | iter 144 step 18 | loss train: 3.381, val: n/a | iter time: 86.60 ms (step)
+Epoch 1 | iter 145 step 18 | loss train: 3.314, val: n/a | iter time: 57.00 ms
+Epoch 1 | iter 146 step 18 | loss train: 3.324, val: n/a | iter time: 58.74 ms
+Epoch 1 | iter 147 step 18 | loss train: 3.398, val: n/a | iter time: 58.66 ms
+Epoch 1 | iter 148 step 18 | loss train: 3.364, val: n/a | iter time: 58.16 ms
+Epoch 1 | iter 149 step 18 | loss train: 3.292, val: n/a | iter time: 58.08 ms
+Epoch 1 | iter 150 step 18 | loss train: 3.336, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 151 step 18 | loss train: 3.373, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 152 step 19 | loss train: 3.356, val: n/a | iter time: 86.71 ms (step)
+Epoch 1 | iter 153 step 19 | loss train: 3.397, val: n/a | iter time: 57.01 ms
+Epoch 1 | iter 154 step 19 | loss train: 3.434, val: n/a | iter time: 57.51 ms
+Epoch 1 | iter 155 step 19 | loss train: 3.384, val: n/a | iter time: 57.64 ms
+Epoch 1 | iter 156 step 19 | loss train: 3.354, val: n/a | iter time: 57.30 ms
+Epoch 1 | iter 157 step 19 | loss train: 3.372, val: n/a | iter time: 60.35 ms
+Epoch 1 | iter 158 step 19 | loss train: 3.432, val: n/a | iter time: 58.18 ms
+Epoch 1 | iter 159 step 19 | loss train: 3.385, val: n/a | iter time: 57.95 ms
+Epoch 1 | iter 160 step 20 | loss train: 3.423, val: n/a | iter time: 86.32 ms (step)
+Epoch 1 | iter 161 step 20 | loss train: 3.350, val: n/a | iter time: 57.17 ms
+Epoch 1 | iter 162 step 20 | loss train: 3.310, val: n/a | iter time: 57.92 ms
+Epoch 1 | iter 163 step 20 | loss train: 3.302, val: n/a | iter time: 57.96 ms
+Epoch 1 | iter 164 step 20 | loss train: 3.284, val: n/a | iter time: 57.75 ms
+Epoch 1 | iter 165 step 20 | loss train: 3.356, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 166 step 20 | loss train: 3.338, val: n/a | iter time: 57.97 ms
+Epoch 1 | iter 167 step 20 | loss train: 3.283, val: n/a | iter time: 58.05 ms
+Epoch 1 | iter 168 step 21 | loss train: 3.262, val: n/a | iter time: 86.79 ms (step)
+Epoch 1 | iter 169 step 21 | loss train: 3.257, val: n/a | iter time: 57.65 ms
+Epoch 1 | iter 170 step 21 | loss train: 3.205, val: n/a | iter time: 57.60 ms
+Epoch 1 | iter 171 step 21 | loss train: 3.211, val: n/a | iter time: 58.11 ms
+Epoch 1 | iter 172 step 21 | loss train: 3.198, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 173 step 21 | loss train: 3.166, val: n/a | iter time: 57.80 ms
+Epoch 1 | iter 174 step 21 | loss train: 3.139, val: n/a | iter time: 58.00 ms
+Epoch 1 | iter 175 step 21 | loss train: 3.122, val: n/a | iter time: 57.99 ms
+Epoch 1 | iter 176 step 22 | loss train: 3.148, val: n/a | iter time: 86.51 ms (step)
+Epoch 1 | iter 177 step 22 | loss train: 3.245, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 178 step 22 | loss train: 3.310, val: n/a | iter time: 58.22 ms
+Epoch 1 | iter 179 step 22 | loss train: 3.273, val: n/a | iter time: 57.78 ms
+Epoch 1 | iter 180 step 22 | loss train: 3.324, val: n/a | iter time: 58.26 ms
+Epoch 1 | iter 181 step 22 | loss train: 3.281, val: n/a | iter time: 57.70 ms
+Epoch 1 | iter 182 step 22 | loss train: 3.251, val: n/a | iter time: 57.64 ms
+Epoch 1 | iter 183 step 22 | loss train: 3.285, val: n/a | iter time: 57.77 ms
+Epoch 1 | iter 184 step 23 | loss train: 3.207, val: n/a | iter time: 86.14 ms (step)
+Epoch 1 | iter 185 step 23 | loss train: 3.127, val: n/a | iter time: 57.36 ms
+Epoch 1 | iter 186 step 23 | loss train: 3.096, val: n/a | iter time: 57.55 ms
+Epoch 1 | iter 187 step 23 | loss train: 3.094, val: n/a | iter time: 58.42 ms
+Epoch 1 | iter 188 step 23 | loss train: 3.065, val: n/a | iter time: 57.68 ms
+Epoch 1 | iter 189 step 23 | loss train: 3.146, val: n/a | iter time: 57.71 ms
+Epoch 1 | iter 190 step 23 | loss train: 3.197, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 191 step 23 | loss train: 3.176, val: n/a | iter time: 57.82 ms
+Epoch 1 | iter 192 step 24 | loss train: 3.212, val: n/a | iter time: 86.68 ms (step)
+Epoch 1 | iter 193 step 24 | loss train: 3.216, val: n/a | iter time: 57.24 ms
+Epoch 1 | iter 194 step 24 | loss train: 3.160, val: n/a | iter time: 57.56 ms
+Epoch 1 | iter 195 step 24 | loss train: 3.195, val: n/a | iter time: 58.58 ms
+Epoch 1 | iter 196 step 24 | loss train: 3.250, val: n/a | iter time: 59.37 ms
+Epoch 1 | iter 197 step 24 | loss train: 3.180, val: n/a | iter time: 58.23 ms
+Epoch 1 | iter 198 step 24 | loss train: 3.086, val: n/a | iter time: 57.89 ms
+Epoch 1 | iter 199 step 24 | loss train: 3.083, val: n/a | iter time: 57.59 ms
+Epoch 1 | iter 200 step 25 | loss train: 3.078, val: n/a | iter time: 86.68 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: Lipids.
+
+Question: Why does the human ear have hair?
+
+Answer: The hearing nerves in the auditory bulla extract and release sound waves that penetrate the skull and pass through the nerve cells to reach the brain, naturally converting and amplifying these sound waves into electrical signals that enable the hearing nerve to transmit the sound waves to the brain.
+
+Question: Why don't cats have eyes?
+
+Answer: The eyes function
+
+iter 200: val loss 3.0267, val time: 2567.70 ms
+Epoch 1 | iter 201 step 25 | loss train: 3.071, val: 3.027 | iter time: 62.01 ms
+Epoch 1 | iter 202 step 25 | loss train: 3.093, val: 3.027 | iter time: 58.78 ms
+Epoch 1 | iter 203 step 25 | loss train: 3.041, val: 3.027 | iter time: 58.53 ms
+Epoch 1 | iter 204 step 25 | loss train: 3.005, val: 3.027 | iter time: 58.25 ms
+Epoch 1 | iter 205 step 25 | loss train: 3.003, val: 3.027 | iter time: 57.42 ms
+Epoch 1 | iter 206 step 25 | loss train: 3.001, val: 3.027 | iter time: 58.41 ms
+Epoch 1 | iter 207 step 25 | loss train: 2.996, val: 3.027 | iter time: 57.86 ms
+Epoch 1 | iter 208 step 26 | loss train: 3.054, val: 3.027 | iter time: 87.29 ms (step)
+Epoch 1 | iter 209 step 26 | loss train: 3.130, val: 3.027 | iter time: 56.99 ms
+Epoch 1 | iter 210 step 26 | loss train: 3.145, val: 3.027 | iter time: 58.34 ms
+Epoch 1 | iter 211 step 26 | loss train: 3.207, val: 3.027 | iter time: 59.11 ms
+Epoch 1 | iter 212 step 26 | loss train: 3.131, val: 3.027 | iter time: 58.61 ms
+Epoch 1 | iter 213 step 26 | loss train: 3.125, val: 3.027 | iter time: 58.10 ms
+Epoch 1 | iter 214 step 26 | loss train: 3.134, val: 3.027 | iter time: 58.34 ms
+Epoch 1 | iter 215 step 26 | loss train: 3.086, val: 3.027 | iter time: 58.38 ms
+Epoch 1 | iter 216 step 27 | loss train: 2.987, val: 3.027 | iter time: 87.22 ms (step)
+Epoch 1 | iter 217 step 27 | loss train: 2.866, val: 3.027 | iter time: 57.03 ms
+Epoch 1 | iter 218 step 27 | loss train: 2.870, val: 3.027 | iter time: 58.39 ms
+Epoch 1 | iter 219 step 27 | loss train: 2.832, val: 3.027 | iter time: 58.00 ms
+Epoch 1 | iter 220 step 27 | loss train: 2.871, val: 3.027 | iter time: 57.95 ms
+Epoch 1 | iter 221 step 27 | loss train: 2.890, val: 3.027 | iter time: 58.16 ms
+Epoch 1 | iter 222 step 27 | loss train: 2.903, val: 3.027 | iter time: 58.11 ms
+Epoch 1 | iter 223 step 27 | loss train: 2.989, val: 3.027 | iter time: 58.55 ms
+Epoch 1 | iter 224 step 28 | loss train: 3.088, val: 3.027 | iter time: 87.60 ms (step)
+Epoch 1 | iter 225 step 28 | loss train: 3.117, val: 3.027 | iter time: 57.25 ms
+Epoch 1 | iter 226 step 28 | loss train: 3.115, val: 3.027 | iter time: 58.62 ms
+Epoch 1 | iter 227 step 28 | loss train: 3.079, val: 3.027 | iter time: 58.77 ms
+Epoch 1 | iter 228 step 28 | loss train: 3.089, val: 3.027 | iter time: 58.31 ms
+Epoch 1 | iter 229 step 28 | loss train: 3.017, val: 3.027 | iter time: 58.18 ms
+Epoch 1 | iter 230 step 28 | loss train: 2.989, val: 3.027 | iter time: 58.15 ms
+Epoch 1 | iter 231 step 28 | loss train: 2.943, val: 3.027 | iter time: 58.08 ms
+Epoch 1 | iter 232 step 29 | loss train: 2.854, val: 3.027 | iter time: 87.19 ms (step)
+Epoch 1 | iter 233 step 29 | loss train: 2.912, val: 3.027 | iter time: 57.49 ms
+Epoch 1 | iter 234 step 29 | loss train: 2.852, val: 3.027 | iter time: 58.00 ms
+Epoch 1 | iter 235 step 29 | loss train: 2.894, val: 3.027 | iter time: 57.86 ms
+Epoch 1 | iter 236 step 29 | loss train: 2.893, val: 3.027 | iter time: 58.66 ms
+Epoch 1 | iter 237 step 29 | loss train: 2.941, val: 3.027 | iter time: 58.31 ms
+Epoch 1 | iter 238 step 29 | loss train: 2.960, val: 3.027 | iter time: 57.88 ms
+Epoch 1 | iter 239 step 29 | loss train: 2.912, val: 3.027 | iter time: 58.40 ms
+Epoch 1 | iter 240 step 30 | loss train: 2.948, val: 3.027 | iter time: 87.30 ms (step)
+Epoch 1 | iter 241 step 30 | loss train: 2.910, val: 3.027 | iter time: 60.55 ms
+Epoch 1 | iter 242 step 30 | loss train: 2.955, val: 3.027 | iter time: 58.38 ms
+Epoch 1 | iter 243 step 30 | loss train: 2.971, val: 3.027 | iter time: 58.51 ms
+Epoch 1 | iter 244 step 30 | loss train: 2.982, val: 3.027 | iter time: 59.32 ms
+Epoch 1 | iter 245 step 30 | loss train: 3.004, val: 3.027 | iter time: 58.98 ms
+Epoch 1 | iter 246 step 30 | loss train: 2.990, val: 3.027 | iter time: 58.57 ms
+Epoch 1 | iter 247 step 30 | loss train: 3.027, val: 3.027 | iter time: 58.62 ms
+Epoch 1 | iter 248 step 31 | loss train: 2.972, val: 3.027 | iter time: 88.04 ms (step)
+Epoch 1 | iter 249 step 31 | loss train: 2.928, val: 3.027 | iter time: 57.37 ms
+Epoch 1 | iter 250 step 31 | loss train: 2.863, val: 3.027 | iter time: 58.50 ms
+Epoch 1 | iter 251 step 31 | loss train: 2.810, val: 3.027 | iter time: 58.59 ms
+Epoch 1 | iter 252 step 31 | loss train: 2.743, val: 3.027 | iter time: 58.68 ms
+Epoch 1 | iter 253 step 31 | loss train: 2.754, val: 3.027 | iter time: 58.65 ms
+Epoch 1 | iter 254 step 31 | loss train: 2.775, val: 3.027 | iter time: 58.19 ms
+Epoch 1 | iter 255 step 31 | loss train: 2.763, val: 3.027 | iter time: 58.00 ms
+Epoch 1 | iter 256 step 32 | loss train: 2.766, val: 3.027 | iter time: 87.13 ms (step)
+Epoch 1 | iter 257 step 32 | loss train: 2.793, val: 3.027 | iter time: 57.27 ms
+Epoch 1 | iter 258 step 32 | loss train: 2.828, val: 3.027 | iter time: 58.73 ms
+Epoch 1 | iter 259 step 32 | loss train: 2.787, val: 3.027 | iter time: 57.98 ms
+Epoch 1 | iter 260 step 32 | loss train: 2.801, val: 3.027 | iter time: 58.47 ms
+Epoch 1 | iter 261 step 32 | loss train: 2.752, val: 3.027 | iter time: 58.21 ms
+Epoch 1 | iter 262 step 32 | loss train: 2.775, val: 3.027 | iter time: 58.39 ms
+Epoch 1 | iter 263 step 32 | loss train: 2.767, val: 3.027 | iter time: 58.04 ms
+Epoch 1 | iter 264 step 33 | loss train: 2.771, val: 3.027 | iter time: 87.48 ms (step)
+Epoch 1 | iter 265 step 33 | loss train: 2.733, val: 3.027 | iter time: 57.42 ms
+Epoch 1 | iter 266 step 33 | loss train: 2.756, val: 3.027 | iter time: 58.48 ms
+Epoch 1 | iter 267 step 33 | loss train: 2.806, val: 3.027 | iter time: 59.35 ms
+Epoch 1 | iter 268 step 33 | loss train: 2.808, val: 3.027 | iter time: 59.16 ms
+Epoch 1 | iter 269 step 33 | loss train: 2.855, val: 3.027 | iter time: 58.22 ms
+Epoch 1 | iter 270 step 33 | loss train: 2.833, val: 3.027 | iter time: 58.33 ms
+Epoch 1 | iter 271 step 33 | loss train: 2.856, val: 3.027 | iter time: 58.26 ms
+Epoch 1 | iter 272 step 34 | loss train: 2.904, val: 3.027 | iter time: 87.90 ms (step)
+Epoch 1 | iter 273 step 34 | loss train: 2.930, val: 3.027 | iter time: 57.26 ms
+Epoch 1 | iter 274 step 34 | loss train: 2.858, val: 3.027 | iter time: 58.35 ms
+Epoch 1 | iter 275 step 34 | loss train: 2.791, val: 3.027 | iter time: 58.35 ms
+Epoch 1 | iter 276 step 34 | loss train: 2.783, val: 3.027 | iter time: 59.18 ms
+Epoch 1 | iter 277 step 34 | loss train: 2.719, val: 3.027 | iter time: 58.24 ms
+Epoch 1 | iter 278 step 34 | loss train: 2.704, val: 3.027 | iter time: 58.52 ms
+Epoch 1 | iter 279 step 34 | loss train: 2.706, val: 3.027 | iter time: 58.45 ms
+Epoch 1 | iter 280 step 35 | loss train: 2.721, val: 3.027 | iter time: 87.37 ms (step)
+Epoch 1 | iter 281 step 35 | loss train: 2.743, val: 3.027 | iter time: 57.52 ms
+Epoch 1 | iter 282 step 35 | loss train: 2.804, val: 3.027 | iter time: 58.86 ms
+Epoch 1 | iter 283 step 35 | loss train: 2.799, val: 3.027 | iter time: 58.45 ms
+Epoch 1 | iter 284 step 35 | loss train: 2.755, val: 3.027 | iter time: 58.95 ms
+Epoch 1 | iter 285 step 35 | loss train: 2.827, val: 3.027 | iter time: 58.67 ms
+Epoch 1 | iter 286 step 35 | loss train: 2.824, val: 3.027 | iter time: 58.18 ms
+Epoch 1 | iter 287 step 35 | loss train: 2.814, val: 3.027 | iter time: 58.42 ms
+Epoch 1 | iter 288 step 36 | loss train: 2.672, val: 3.027 | iter time: 87.76 ms (step)
+Epoch 1 | iter 289 step 36 | loss train: 2.637, val: 3.027 | iter time: 57.31 ms
+Epoch 1 | iter 290 step 36 | loss train: 2.579, val: 3.027 | iter time: 57.78 ms
+Epoch 1 | iter 291 step 36 | loss train: 2.620, val: 3.027 | iter time: 58.38 ms
+Epoch 1 | iter 292 step 36 | loss train: 2.705, val: 3.027 | iter time: 58.39 ms
+Epoch 1 | iter 293 step 36 | loss train: 2.636, val: 3.027 | iter time: 58.05 ms
+Epoch 1 | iter 294 step 36 | loss train: 2.604, val: 3.027 | iter time: 58.10 ms
+Epoch 1 | iter 295 step 36 | loss train: 2.619, val: 3.027 | iter time: 58.15 ms
+Epoch 1 | iter 296 step 37 | loss train: 2.761, val: 3.027 | iter time: 87.26 ms (step)
+Epoch 1 | iter 297 step 37 | loss train: 2.733, val: 3.027 | iter time: 57.03 ms
+Epoch 1 | iter 298 step 37 | loss train: 2.780, val: 3.027 | iter time: 57.99 ms
+Epoch 1 | iter 299 step 37 | loss train: 2.779, val: 3.027 | iter time: 58.05 ms
+Epoch 1 | iter 300 step 37 | loss train: 2.707, val: 3.027 | iter time: 58.04 ms
+Epoch 1 | iter 301 step 37 | loss train: 2.691, val: 3.027 | iter time: 57.96 ms
+Epoch 1 | iter 302 step 37 | loss train: 2.682, val: 3.027 | iter time: 57.74 ms
+Epoch 1 | iter 303 step 37 | loss train: 2.595, val: 3.027 | iter time: 57.92 ms
+Epoch 1 | iter 304 step 38 | loss train: 2.530, val: 3.027 | iter time: 87.28 ms (step)
+Epoch 1 | iter 305 step 38 | loss train: 2.507, val: 3.027 | iter time: 57.30 ms
+Epoch 1 | iter 306 step 38 | loss train: 2.449, val: 3.027 | iter time: 57.95 ms
+Epoch 1 | iter 307 step 38 | loss train: 2.419, val: 3.027 | iter time: 57.97 ms
+Epoch 1 | iter 308 step 38 | loss train: 2.399, val: 3.027 | iter time: 57.90 ms
+Epoch 1 | iter 309 step 38 | loss train: 2.413, val: 3.027 | iter time: 58.03 ms
+Epoch 1 | iter 310 step 38 | loss train: 2.439, val: 3.027 | iter time: 58.16 ms
+Epoch 1 | iter 311 step 38 | loss train: 2.433, val: 3.027 | iter time: 58.07 ms
+Epoch 1 | iter 312 step 39 | loss train: 2.458, val: 3.027 | iter time: 86.69 ms (step)
+Epoch 1 | iter 313 step 39 | loss train: 2.480, val: 3.027 | iter time: 57.41 ms
+Epoch 1 | iter 314 step 39 | loss train: 2.468, val: 3.027 | iter time: 58.17 ms
+Epoch 1 | iter 315 step 39 | loss train: 2.545, val: 3.027 | iter time: 57.87 ms
+Epoch 1 | iter 316 step 39 | loss train: 2.609, val: 3.027 | iter time: 58.29 ms
+Epoch 1 | iter 317 step 39 | loss train: 2.566, val: 3.027 | iter time: 57.61 ms
+Epoch 1 | iter 318 step 39 | loss train: 2.524, val: 3.027 | iter time: 57.88 ms
+Epoch 1 | iter 319 step 39 | loss train: 2.590, val: 3.027 | iter time: 57.88 ms
+Epoch 1 | iter 320 step 40 | loss train: 2.570, val: 3.027 | iter time: 87.08 ms (step)
+Epoch 1 | iter 321 step 40 | loss train: 2.562, val: 3.027 | iter time: 57.40 ms
+Epoch 1 | iter 322 step 40 | loss train: 2.565, val: 3.027 | iter time: 59.95 ms
+Epoch 1 | iter 323 step 40 | loss train: 2.496, val: 3.027 | iter time: 57.74 ms
+Epoch 1 | iter 324 step 40 | loss train: 2.477, val: 3.027 | iter time: 58.35 ms
+Epoch 1 | iter 325 step 40 | loss train: 2.439, val: 3.027 | iter time: 58.11 ms
+Epoch 1 | iter 326 step 40 | loss train: 2.435, val: 3.027 | iter time: 58.25 ms
+Epoch 1 | iter 327 step 40 | loss train: 2.371, val: 3.027 | iter time: 57.89 ms
+Epoch 1 | iter 328 step 41 | loss train: 2.367, val: 3.027 | iter time: 86.99 ms (step)
+Epoch 1 | iter 329 step 41 | loss train: 2.349, val: 3.027 | iter time: 56.90 ms
+Epoch 1 | iter 330 step 41 | loss train: 2.408, val: 3.027 | iter time: 58.02 ms
+Epoch 1 | iter 331 step 41 | loss train: 2.427, val: 3.027 | iter time: 57.84 ms
+Epoch 1 | iter 332 step 41 | loss train: 2.419, val: 3.027 | iter time: 58.44 ms
+Epoch 1 | iter 333 step 41 | loss train: 2.516, val: 3.027 | iter time: 57.90 ms
+Epoch 1 | iter 334 step 41 | loss train: 2.559, val: 3.027 | iter time: 58.03 ms
+Epoch 1 | iter 335 step 41 | loss train: 2.625, val: 3.027 | iter time: 57.93 ms
+Epoch 1 | iter 336 step 42 | loss train: 2.592, val: 3.027 | iter time: 86.78 ms (step)
+Epoch 1 | iter 337 step 42 | loss train: 2.589, val: 3.027 | iter time: 57.18 ms
+Epoch 1 | iter 338 step 42 | loss train: 2.577, val: 3.027 | iter time: 58.05 ms
+Epoch 1 | iter 339 step 42 | loss train: 2.550, val: 3.027 | iter time: 58.11 ms
+Epoch 1 | iter 340 step 42 | loss train: 2.553, val: 3.027 | iter time: 58.53 ms
+Epoch 1 | iter 341 step 42 | loss train: 2.586, val: 3.027 | iter time: 58.19 ms
+Epoch 1 | iter 342 step 42 | loss train: 2.582, val: 3.027 | iter time: 58.10 ms
+Epoch 1 | iter 343 step 42 | loss train: 2.560, val: 3.027 | iter time: 58.18 ms
+Epoch 1 | iter 344 step 43 | loss train: 2.575, val: 3.027 | iter time: 87.34 ms (step)
+Epoch 1 | iter 345 step 43 | loss train: 2.550, val: 3.027 | iter time: 57.29 ms
+Epoch 1 | iter 346 step 43 | loss train: 2.537, val: 3.027 | iter time: 58.05 ms
+Epoch 1 | iter 347 step 43 | loss train: 2.574, val: 3.027 | iter time: 58.04 ms
+Epoch 1 | iter 348 step 43 | loss train: 2.586, val: 3.027 | iter time: 58.37 ms
+Epoch 1 | iter 349 step 43 | loss train: 2.482, val: 3.027 | iter time: 57.86 ms
+Epoch 1 | iter 350 step 43 | loss train: 2.473, val: 3.027 | iter time: 58.07 ms
+Epoch 1 | iter 351 step 43 | loss train: 2.497, val: 3.027 | iter time: 57.77 ms
+Epoch 1 | iter 352 step 44 | loss train: 2.478, val: 3.027 | iter time: 86.63 ms (step)
+Epoch 1 | iter 353 step 44 | loss train: 2.569, val: 3.027 | iter time: 56.69 ms
+Epoch 1 | iter 354 step 44 | loss train: 2.642, val: 3.027 | iter time: 57.48 ms
+Epoch 1 | iter 355 step 44 | loss train: 2.582, val: 3.027 | iter time: 57.62 ms
+Epoch 1 | iter 356 step 44 | loss train: 2.524, val: 3.027 | iter time: 58.19 ms
+Epoch 1 | iter 357 step 44 | loss train: 2.543, val: 3.027 | iter time: 57.71 ms
+Epoch 1 | iter 358 step 44 | loss train: 2.501, val: 3.027 | iter time: 58.48 ms
+Epoch 1 | iter 359 step 44 | loss train: 2.454, val: 3.027 | iter time: 58.32 ms
+Epoch 1 | iter 360 step 45 | loss train: 2.452, val: 3.027 | iter time: 87.75 ms (step)
+Epoch 1 | iter 361 step 45 | loss train: 2.407, val: 3.027 | iter time: 57.08 ms
+Epoch 1 | iter 362 step 45 | loss train: 2.309, val: 3.027 | iter time: 58.90 ms
+Epoch 1 | iter 363 step 45 | loss train: 2.374, val: 3.027 | iter time: 59.65 ms
+Epoch 1 | iter 364 step 45 | loss train: 2.362, val: 3.027 | iter time: 58.74 ms
+Epoch 1 | iter 365 step 45 | loss train: 2.395, val: 3.027 | iter time: 58.93 ms
+Epoch 1 | iter 366 step 45 | loss train: 2.452, val: 3.027 | iter time: 58.35 ms
+Epoch 1 | iter 367 step 45 | loss train: 2.454, val: 3.027 | iter time: 59.21 ms
+Epoch 1 | iter 368 step 46 | loss train: 2.472, val: 3.027 | iter time: 87.38 ms (step)
+Epoch 1 | iter 369 step 46 | loss train: 2.469, val: 3.027 | iter time: 57.45 ms
+Epoch 1 | iter 370 step 46 | loss train: 2.480, val: 3.027 | iter time: 58.55 ms
+Epoch 1 | iter 371 step 46 | loss train: 2.413, val: 3.027 | iter time: 58.61 ms
+Epoch 1 | iter 372 step 46 | loss train: 2.502, val: 3.027 | iter time: 58.63 ms
+Epoch 1 | iter 373 step 46 | loss train: 2.530, val: 3.027 | iter time: 58.66 ms
+Epoch 1 | iter 374 step 46 | loss train: 2.496, val: 3.027 | iter time: 58.53 ms
+Epoch 1 | iter 375 step 46 | loss train: 2.535, val: 3.027 | iter time: 59.04 ms
+Epoch 1 | iter 376 step 47 | loss train: 2.480, val: 3.027 | iter time: 87.36 ms (step)
+Epoch 1 | iter 377 step 47 | loss train: 2.423, val: 3.027 | iter time: 61.77 ms
+Epoch 1 | iter 378 step 47 | loss train: 2.421, val: 3.027 | iter time: 58.63 ms
+Epoch 1 | iter 379 step 47 | loss train: 2.496, val: 3.027 | iter time: 59.42 ms
+Epoch 1 | iter 380 step 47 | loss train: 2.441, val: 3.027 | iter time: 58.96 ms
+Epoch 1 | iter 381 step 47 | loss train: 2.394, val: 3.027 | iter time: 58.74 ms
+Epoch 1 | iter 382 step 47 | loss train: 2.388, val: 3.027 | iter time: 58.41 ms
+Epoch 1 | iter 383 step 47 | loss train: 2.391, val: 3.027 | iter time: 59.16 ms
+Epoch 1 | iter 384 step 48 | loss train: 2.441, val: 3.027 | iter time: 87.92 ms (step)
+Epoch 1 | iter 385 step 48 | loss train: 2.504, val: 3.027 | iter time: 58.51 ms
+Epoch 1 | iter 386 step 48 | loss train: 2.487, val: 3.027 | iter time: 58.77 ms
+Epoch 1 | iter 387 step 48 | loss train: 2.466, val: 3.027 | iter time: 59.03 ms
+Epoch 1 | iter 388 step 48 | loss train: 2.463, val: 3.027 | iter time: 58.80 ms
+Epoch 1 | iter 389 step 48 | loss train: 2.454, val: 3.027 | iter time: 58.46 ms
+Epoch 1 | iter 390 step 48 | loss train: 2.445, val: 3.027 | iter time: 58.60 ms
+Epoch 1 | iter 391 step 48 | loss train: 2.427, val: 3.027 | iter time: 59.33 ms
+Epoch 1 | iter 392 step 49 | loss train: 2.450, val: 3.027 | iter time: 87.34 ms (step)
+Epoch 1 | iter 393 step 49 | loss train: 2.432, val: 3.027 | iter time: 57.76 ms
+Epoch 1 | iter 394 step 49 | loss train: 2.463, val: 3.027 | iter time: 58.58 ms
+Epoch 1 | iter 395 step 49 | loss train: 2.428, val: 3.027 | iter time: 59.13 ms
+Epoch 1 | iter 396 step 49 | loss train: 2.435, val: 3.027 | iter time: 58.48 ms
+Epoch 1 | iter 397 step 49 | loss train: 2.436, val: 3.027 | iter time: 58.86 ms
+Epoch 1 | iter 398 step 49 | loss train: 2.430, val: 3.027 | iter time: 58.56 ms
+Epoch 1 | iter 399 step 49 | loss train: 2.360, val: 3.027 | iter time: 59.23 ms
+Epoch 1 | iter 400 step 50 | loss train: 2.361, val: 3.027 | iter time: 87.51 ms (step)
+Validating ...
+Questions: What carries oxygen throughout the body?
+Answer:
+Questions: What carries oxygen throughout the body?
+Answer: oxygen
+
+iter 400: val loss 2.2685, val time: 422.92 ms
+Epoch 1 | iter 401 step 50 | loss train: 2.314, val: 2.268 | iter time: 61.60 ms
+Epoch 1 | iter 402 step 50 | loss train: 2.269, val: 2.268 | iter time: 59.32 ms
+Epoch 1 | iter 403 step 50 | loss train: 2.270, val: 2.268 | iter time: 59.40 ms
+Epoch 1 | iter 404 step 50 | loss train: 2.232, val: 2.268 | iter time: 58.60 ms
+Epoch 1 | iter 405 step 50 | loss train: 2.168, val: 2.268 | iter time: 58.52 ms
+Epoch 1 | iter 406 step 50 | loss train: 2.228, val: 2.268 | iter time: 58.81 ms
+Epoch 1 | iter 407 step 50 | loss train: 2.254, val: 2.268 | iter time: 59.03 ms
+Epoch 1 | iter 408 step 51 | loss train: 2.249, val: 2.268 | iter time: 88.59 ms (step)
+Epoch 1 | iter 409 step 51 | loss train: 2.339, val: 2.268 | iter time: 57.79 ms
+Epoch 1 | iter 410 step 51 | loss train: 2.420, val: 2.268 | iter time: 58.79 ms
+Epoch 1 | iter 411 step 51 | loss train: 2.445, val: 2.268 | iter time: 59.07 ms
+Epoch 1 | iter 412 step 51 | loss train: 2.490, val: 2.268 | iter time: 59.14 ms
+Epoch 1 | iter 413 step 51 | loss train: 2.496, val: 2.268 | iter time: 59.58 ms
+Epoch 1 | iter 414 step 51 | loss train: 2.431, val: 2.268 | iter time: 59.08 ms
+Epoch 1 | iter 415 step 51 | loss train: 2.427, val: 2.268 | iter time: 59.46 ms
+Epoch 1 | iter 416 step 52 | loss train: 2.397, val: 2.268 | iter time: 87.90 ms (step)
+Epoch 1 | iter 417 step 52 | loss train: 2.386, val: 2.268 | iter time: 57.67 ms
+Epoch 1 | iter 418 step 52 | loss train: 2.342, val: 2.268 | iter time: 58.46 ms
+Epoch 1 | iter 419 step 52 | loss train: 2.291, val: 2.268 | iter time: 59.30 ms
+Epoch 1 | iter 420 step 52 | loss train: 2.243, val: 2.268 | iter time: 58.91 ms
+Epoch 1 | iter 421 step 52 | loss train: 2.260, val: 2.268 | iter time: 58.64 ms
+Epoch 1 | iter 422 step 52 | loss train: 2.237, val: 2.268 | iter time: 58.76 ms
+Epoch 1 | iter 423 step 52 | loss train: 2.231, val: 2.268 | iter time: 59.48 ms
+Epoch 1 | iter 424 step 53 | loss train: 2.236, val: 2.268 | iter time: 87.94 ms (step)
+Epoch 1 | iter 425 step 53 | loss train: 2.236, val: 2.268 | iter time: 58.02 ms
+Epoch 1 | iter 426 step 53 | loss train: 2.252, val: 2.268 | iter time: 58.08 ms
+Epoch 1 | iter 427 step 53 | loss train: 2.294, val: 2.268 | iter time: 58.65 ms
+Epoch 1 | iter 428 step 53 | loss train: 2.305, val: 2.268 | iter time: 58.38 ms
+Epoch 1 | iter 429 step 53 | loss train: 2.344, val: 2.268 | iter time: 58.32 ms
+Epoch 1 | iter 430 step 53 | loss train: 2.342, val: 2.268 | iter time: 58.81 ms
+Epoch 1 | iter 431 step 53 | loss train: 2.391, val: 2.268 | iter time: 58.44 ms
+Epoch 1 | iter 432 step 54 | loss train: 2.379, val: 2.268 | iter time: 87.31 ms (step)
+Epoch 1 | iter 433 step 54 | loss train: 2.385, val: 2.268 | iter time: 57.74 ms
+Epoch 1 | iter 434 step 54 | loss train: 2.395, val: 2.268 | iter time: 58.29 ms
+Epoch 1 | iter 435 step 54 | loss train: 2.369, val: 2.268 | iter time: 58.58 ms
+Epoch 1 | iter 436 step 54 | loss train: 2.419, val: 2.268 | iter time: 59.58 ms
+Epoch 1 | iter 437 step 54 | loss train: 2.412, val: 2.268 | iter time: 59.82 ms
+Epoch 1 | iter 438 step 54 | loss train: 2.485, val: 2.268 | iter time: 62.85 ms
+Epoch 1 | iter 439 step 54 | loss train: 2.464, val: 2.268 | iter time: 59.00 ms
+Epoch 1 | iter 440 step 55 | loss train: 2.449, val: 2.268 | iter time: 95.49 ms (step)
+Epoch 1 | iter 441 step 55 | loss train: 2.446, val: 2.268 | iter time: 58.26 ms
+Epoch 1 | iter 442 step 55 | loss train: 2.422, val: 2.268 | iter time: 58.88 ms
+Epoch 1 | iter 443 step 55 | loss train: 2.475, val: 2.268 | iter time: 59.35 ms
+Epoch 1 | iter 444 step 55 | loss train: 2.462, val: 2.268 | iter time: 59.16 ms
+Epoch 1 | iter 445 step 55 | loss train: 2.481, val: 2.268 | iter time: 59.08 ms
+Epoch 1 | iter 446 step 55 | loss train: 2.425, val: 2.268 | iter time: 58.71 ms
+Epoch 1 | iter 447 step 55 | loss train: 2.371, val: 2.268 | iter time: 59.20 ms
+Epoch 1 | iter 448 step 56 | loss train: 2.396, val: 2.268 | iter time: 87.47 ms (step)
+Epoch 1 | iter 449 step 56 | loss train: 2.345, val: 2.268 | iter time: 57.92 ms
+Epoch 1 | iter 450 step 56 | loss train: 2.347, val: 2.268 | iter time: 58.46 ms
+Epoch 1 | iter 451 step 56 | loss train: 2.330, val: 2.268 | iter time: 58.18 ms
+Epoch 1 | iter 452 step 56 | loss train: 2.313, val: 2.268 | iter time: 58.63 ms
+Epoch 1 | iter 453 step 56 | loss train: 2.256, val: 2.268 | iter time: 58.95 ms
+Epoch 1 | iter 454 step 56 | loss train: 2.303, val: 2.268 | iter time: 59.05 ms
+Epoch 1 | iter 455 step 56 | loss train: 2.340, val: 2.268 | iter time: 58.53 ms
+Epoch 1 | iter 456 step 57 | loss train: 2.295, val: 2.268 | iter time: 87.47 ms (step)
+Epoch 1 | iter 457 step 57 | loss train: 2.302, val: 2.268 | iter time: 57.56 ms
+Epoch 1 | iter 458 step 57 | loss train: 2.296, val: 2.268 | iter time: 58.49 ms
+Epoch 1 | iter 459 step 57 | loss train: 2.248, val: 2.268 | iter time: 58.07 ms
+Epoch 1 | iter 460 step 57 | loss train: 2.236, val: 2.268 | iter time: 58.73 ms
+Epoch 1 | iter 461 step 57 | loss train: 2.290, val: 2.268 | iter time: 58.64 ms
+Epoch 1 | iter 462 step 57 | loss train: 2.220, val: 2.268 | iter time: 58.81 ms
+Epoch 1 | iter 463 step 57 | loss train: 2.212, val: 2.268 | iter time: 58.81 ms
+Epoch 1 | iter 464 step 58 | loss train: 2.229, val: 2.268 | iter time: 87.43 ms (step)
+Epoch 1 | iter 465 step 58 | loss train: 2.235, val: 2.268 | iter time: 57.67 ms
+Epoch 1 | iter 466 step 58 | loss train: 2.196, val: 2.268 | iter time: 58.35 ms
+Epoch 1 | iter 467 step 58 | loss train: 2.189, val: 2.268 | iter time: 58.58 ms
+Epoch 1 | iter 468 step 58 | loss train: 2.197, val: 2.268 | iter time: 59.54 ms
+Epoch 1 | iter 469 step 58 | loss train: 2.197, val: 2.268 | iter time: 58.74 ms
+Epoch 1 | iter 470 step 58 | loss train: 2.233, val: 2.268 | iter time: 58.56 ms
+Epoch 1 | iter 471 step 58 | loss train: 2.242, val: 2.268 | iter time: 58.45 ms
+Epoch 1 | iter 472 step 59 | loss train: 2.298, val: 2.268 | iter time: 88.06 ms (step)
+Epoch 1 | iter 473 step 59 | loss train: 2.302, val: 2.268 | iter time: 58.86 ms
+Epoch 1 | iter 474 step 59 | loss train: 2.346, val: 2.268 | iter time: 58.63 ms
+Epoch 1 | iter 475 step 59 | loss train: 2.366, val: 2.268 | iter time: 58.45 ms
+Epoch 1 | iter 476 step 59 | loss train: 2.382, val: 2.268 | iter time: 58.84 ms
+Epoch 1 | iter 477 step 59 | loss train: 2.405, val: 2.268 | iter time: 58.93 ms
+Epoch 1 | iter 478 step 59 | loss train: 2.425, val: 2.268 | iter time: 58.66 ms
+Epoch 1 | iter 479 step 59 | loss train: 2.459, val: 2.268 | iter time: 58.50 ms
+Epoch 1 | iter 480 step 60 | loss train: 2.467, val: 2.268 | iter time: 87.87 ms (step)
+Epoch 1 | iter 481 step 60 | loss train: 2.431, val: 2.268 | iter time: 57.66 ms
+Epoch 1 | iter 482 step 60 | loss train: 2.425, val: 2.268 | iter time: 58.37 ms
+Epoch 1 | iter 483 step 60 | loss train: 2.420, val: 2.268 | iter time: 58.14 ms
+Epoch 1 | iter 484 step 60 | loss train: 2.402, val: 2.268 | iter time: 58.81 ms
+Epoch 1 | iter 485 step 60 | loss train: 2.317, val: 2.268 | iter time: 58.88 ms
+Epoch 1 | iter 486 step 60 | loss train: 2.284, val: 2.268 | iter time: 58.30 ms
+Epoch 1 | iter 487 step 60 | loss train: 2.234, val: 2.268 | iter time: 58.35 ms
+Epoch 1 | iter 488 step 61 | loss train: 2.187, val: 2.268 | iter time: 87.65 ms (step)
+Epoch 1 | iter 489 step 61 | loss train: 2.207, val: 2.268 | iter time: 57.66 ms
+Epoch 1 | iter 490 step 61 | loss train: 2.163, val: 2.268 | iter time: 58.45 ms
+Epoch 1 | iter 491 step 61 | loss train: 2.186, val: 2.268 | iter time: 58.40 ms
+Epoch 1 | iter 492 step 61 | loss train: 2.217, val: 2.268 | iter time: 58.72 ms
+Epoch 1 | iter 493 step 61 | loss train: 2.213, val: 2.268 | iter time: 58.57 ms
+Epoch 1 | iter 494 step 61 | loss train: 2.252, val: 2.268 | iter time: 58.22 ms
+Epoch 1 | iter 495 step 61 | loss train: 2.241, val: 2.268 | iter time: 58.40 ms
+Epoch 1 | iter 496 step 62 | loss train: 2.285, val: 2.268 | iter time: 87.21 ms (step)
+Epoch 1 | iter 497 step 62 | loss train: 2.333, val: 2.268 | iter time: 57.68 ms
+Epoch 1 | iter 498 step 62 | loss train: 2.388, val: 2.268 | iter time: 58.53 ms
+Epoch 1 | iter 499 step 62 | loss train: 2.338, val: 2.268 | iter time: 58.40 ms
+Epoch 1 | iter 500 step 62 | loss train: 2.256, val: 2.268 | iter time: 58.68 ms
+Epoch 1 | iter 501 step 62 | loss train: 2.280, val: 2.268 | iter time: 59.03 ms
+Epoch 1 | iter 502 step 62 | loss train: 2.238, val: 2.268 | iter time: 58.60 ms
+Epoch 1 | iter 503 step 62 | loss train: 2.227, val: 2.268 | iter time: 59.64 ms
+Epoch 1 | iter 504 step 63 | loss train: 2.175, val: 2.268 | iter time: 87.84 ms (step)
+Epoch 1 | iter 505 step 63 | loss train: 2.128, val: 2.268 | iter time: 57.68 ms
+Epoch 1 | iter 506 step 63 | loss train: 2.125, val: 2.268 | iter time: 58.78 ms
+Epoch 1 | iter 507 step 63 | loss train: 2.142, val: 2.268 | iter time: 58.52 ms
+Epoch 1 | iter 508 step 63 | loss train: 2.169, val: 2.268 | iter time: 58.51 ms
+Epoch 1 | iter 509 step 63 | loss train: 2.141, val: 2.268 | iter time: 58.13 ms
+Epoch 1 | iter 510 step 63 | loss train: 2.129, val: 2.268 | iter time: 58.21 ms
+Epoch 1 | iter 511 step 63 | loss train: 2.167, val: 2.268 | iter time: 58.33 ms
+Epoch 1 | iter 512 step 64 | loss train: 2.134, val: 2.268 | iter time: 87.65 ms (step)
+Epoch 1 | iter 513 step 64 | loss train: 2.148, val: 2.268 | iter time: 57.39 ms
+Epoch 1 | iter 514 step 64 | loss train: 2.123, val: 2.268 | iter time: 58.41 ms
+Epoch 1 | iter 515 step 64 | loss train: 2.110, val: 2.268 | iter time: 58.43 ms
+Epoch 1 | iter 516 step 64 | loss train: 2.112, val: 2.268 | iter time: 58.55 ms
+Epoch 1 | iter 517 step 64 | loss train: 2.170, val: 2.268 | iter time: 58.54 ms
+Epoch 1 | iter 518 step 64 | loss train: 2.224, val: 2.268 | iter time: 58.65 ms
+Epoch 1 | iter 519 step 64 | loss train: 2.198, val: 2.268 | iter time: 58.61 ms
+Epoch 1 | iter 520 step 65 | loss train: 2.248, val: 2.268 | iter time: 87.59 ms (step)
+Epoch 1 | iter 521 step 65 | loss train: 2.246, val: 2.268 | iter time: 57.41 ms
+Epoch 1 | iter 522 step 65 | loss train: 2.267, val: 2.268 | iter time: 58.41 ms
+Epoch 1 | iter 523 step 65 | loss train: 2.302, val: 2.268 | iter time: 58.50 ms
+Epoch 1 | iter 524 step 65 | loss train: 2.321, val: 2.268 | iter time: 59.89 ms
+Epoch 1 | iter 525 step 65 | loss train: 2.233, val: 2.268 | iter time: 58.42 ms
+Epoch 1 | iter 526 step 65 | loss train: 2.183, val: 2.268 | iter time: 58.71 ms
+Epoch 1 | iter 527 step 65 | loss train: 2.192, val: 2.268 | iter time: 58.78 ms
+Epoch 1 | iter 528 step 66 | loss train: 2.215, val: 2.268 | iter time: 88.38 ms (step)
+Epoch 1 | iter 529 step 66 | loss train: 2.229, val: 2.268 | iter time: 58.53 ms
+Epoch 1 | iter 530 step 66 | loss train: 2.236, val: 2.268 | iter time: 58.58 ms
+Epoch 1 | iter 531 step 66 | loss train: 2.196, val: 2.268 | iter time: 58.75 ms
+Epoch 1 | iter 532 step 66 | loss train: 2.203, val: 2.268 | iter time: 59.21 ms
+Epoch 1 | iter 533 step 66 | loss train: 2.213, val: 2.268 | iter time: 58.78 ms
+Epoch 1 | iter 534 step 66 | loss train: 2.279, val: 2.268 | iter time: 58.61 ms
+Epoch 1 | iter 535 step 66 | loss train: 2.279, val: 2.268 | iter time: 59.26 ms
+Epoch 1 | iter 536 step 67 | loss train: 2.197, val: 2.268 | iter time: 87.97 ms (step)
+Epoch 1 | iter 537 step 67 | loss train: 2.184, val: 2.268 | iter time: 57.91 ms
+Epoch 1 | iter 538 step 67 | loss train: 2.124, val: 2.268 | iter time: 58.44 ms
+Epoch 1 | iter 539 step 67 | loss train: 2.132, val: 2.268 | iter time: 59.23 ms
+Epoch 1 | iter 540 step 67 | loss train: 2.120, val: 2.268 | iter time: 59.30 ms
+Epoch 1 | iter 541 step 67 | loss train: 2.192, val: 2.268 | iter time: 58.59 ms
+Epoch 1 | iter 542 step 67 | loss train: 2.176, val: 2.268 | iter time: 58.59 ms
+Epoch 1 | iter 543 step 67 | loss train: 2.254, val: 2.268 | iter time: 58.38 ms
+Epoch 1 | iter 544 step 68 | loss train: 2.293, val: 2.268 | iter time: 88.07 ms (step)
+Epoch 1 | iter 545 step 68 | loss train: 2.294, val: 2.268 | iter time: 57.85 ms
+Epoch 1 | iter 546 step 68 | loss train: 2.290, val: 2.268 | iter time: 58.64 ms
+Epoch 1 | iter 547 step 68 | loss train: 2.315, val: 2.268 | iter time: 58.75 ms
+Epoch 1 | iter 548 step 68 | loss train: 2.325, val: 2.268 | iter time: 58.62 ms
+Epoch 1 | iter 549 step 68 | loss train: 2.307, val: 2.268 | iter time: 58.38 ms
+Epoch 1 | iter 550 step 68 | loss train: 2.239, val: 2.268 | iter time: 58.59 ms
+Epoch 1 | iter 551 step 68 | loss train: 2.166, val: 2.268 | iter time: 58.85 ms
+Epoch 1 | iter 552 step 69 | loss train: 2.202, val: 2.268 | iter time: 89.10 ms (step)
+
+| ------------------------------------------------------
+| Token Counts
+| - Input Tokens : 84388
+| - Tokens w/ Prompt : 84388
+| - Total Tokens (w/ Padding) : 124498
+| -----------------------------------------------------
+| Performance
+| - Training Time : 38.87 s
+| - Tok/sec : 3203.00 tok/s
+| -----------------------------------------------------
+| Memory Usage
+| - Memory Used : 11.10 GB
+-------------------------------------------------------
+
+Validating ...
+Final evaluation | val loss: 2.120 | val ppl: 8.334
diff --git a/out/pretrain/openllama/2407/final/config.json b/out/pretrain/openllama/2407/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..573ed2e85bc147201714680570c20d7d5506c1f4
--- /dev/null
+++ b/out/pretrain/openllama/2407/final/config.json
@@ -0,0 +1,22 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 3200,
+ "initializer_range": 0.02,
+ "intermediate_size": 8640,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 26,
+ "pad_token_id": 0,
+ "rms_norm_eps": 1e-06,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float16",
+ "transformers_version": "4.30.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/openllama/2407/final/generation_config.json b/out/pretrain/openllama/2407/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..737a363761e41a11a1575fe06b90729fdb7ed2b5
--- /dev/null
+++ b/out/pretrain/openllama/2407/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "_from_model_config": true,
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "transformers_version": "4.30.0.dev0"
+}
diff --git a/out/pretrain/openllama/2407/final/hyperparameters.yaml b/out/pretrain/openllama/2407/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..9e09404b3de765992e53bca8014720488f5b3c20
--- /dev/null
+++ b/out/pretrain/openllama/2407/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2407
+precision: bf16-mixed
+initial_checkpoint_dir: checkpoints/openlm-research/open_llama_3b
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2407
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 208666624
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2407/final/model_config.yaml b/out/pretrain/openllama/2407/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2407/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2407/final/tokenizer_config.json b/out/pretrain/openllama/2407/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2407/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/openllama/2408/final/config.json b/out/pretrain/openllama/2408/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..573ed2e85bc147201714680570c20d7d5506c1f4
--- /dev/null
+++ b/out/pretrain/openllama/2408/final/config.json
@@ -0,0 +1,22 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 3200,
+ "initializer_range": 0.02,
+ "intermediate_size": 8640,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 26,
+ "pad_token_id": 0,
+ "rms_norm_eps": 1e-06,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float16",
+ "transformers_version": "4.30.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/openllama/2408/final/generation_config.json b/out/pretrain/openllama/2408/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..737a363761e41a11a1575fe06b90729fdb7ed2b5
--- /dev/null
+++ b/out/pretrain/openllama/2408/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "_from_model_config": true,
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "transformers_version": "4.30.0.dev0"
+}
diff --git a/out/pretrain/openllama/2408/final/hyperparameters.yaml b/out/pretrain/openllama/2408/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c4f146d791ad9dcbb27d53655d603ae02774f672
--- /dev/null
+++ b/out/pretrain/openllama/2408/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2408
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/openllama/2407/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2408
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 175112192
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2408/final/model_config.yaml b/out/pretrain/openllama/2408/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2408/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2408/final/tokenizer_config.json b/out/pretrain/openllama/2408/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2408/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/openllama/2409/final/config.json b/out/pretrain/openllama/2409/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..573ed2e85bc147201714680570c20d7d5506c1f4
--- /dev/null
+++ b/out/pretrain/openllama/2409/final/config.json
@@ -0,0 +1,22 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 3200,
+ "initializer_range": 0.02,
+ "intermediate_size": 8640,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 26,
+ "pad_token_id": 0,
+ "rms_norm_eps": 1e-06,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float16",
+ "transformers_version": "4.30.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/openllama/2409/final/generation_config.json b/out/pretrain/openllama/2409/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..737a363761e41a11a1575fe06b90729fdb7ed2b5
--- /dev/null
+++ b/out/pretrain/openllama/2409/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "_from_model_config": true,
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "transformers_version": "4.30.0.dev0"
+}
diff --git a/out/pretrain/openllama/2409/final/hyperparameters.yaml b/out/pretrain/openllama/2409/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..dde7b6b85ebccce30dba8ea5565829e7e94eeeed
--- /dev/null
+++ b/out/pretrain/openllama/2409/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2409
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/openllama/2408/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2409
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 236978176
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2409/final/model_config.yaml b/out/pretrain/openllama/2409/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2409/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2409/final/tokenizer_config.json b/out/pretrain/openllama/2409/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2409/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/openllama/2410/final/config.json b/out/pretrain/openllama/2410/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..573ed2e85bc147201714680570c20d7d5506c1f4
--- /dev/null
+++ b/out/pretrain/openllama/2410/final/config.json
@@ -0,0 +1,22 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 3200,
+ "initializer_range": 0.02,
+ "intermediate_size": 8640,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 26,
+ "pad_token_id": 0,
+ "rms_norm_eps": 1e-06,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float16",
+ "transformers_version": "4.30.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/openllama/2410/final/generation_config.json b/out/pretrain/openllama/2410/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..737a363761e41a11a1575fe06b90729fdb7ed2b5
--- /dev/null
+++ b/out/pretrain/openllama/2410/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "_from_model_config": true,
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "transformers_version": "4.30.0.dev0"
+}
diff --git a/out/pretrain/openllama/2410/final/hyperparameters.yaml b/out/pretrain/openllama/2410/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c4033c210b32efb148c5042a89b90541764941ba
--- /dev/null
+++ b/out/pretrain/openllama/2410/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2410
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/openllama/2409/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2410
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 255852544
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2410/final/model_config.yaml b/out/pretrain/openllama/2410/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2410/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2410/final/tokenizer_config.json b/out/pretrain/openllama/2410/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2410/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/openllama/2411/final/config.json b/out/pretrain/openllama/2411/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..573ed2e85bc147201714680570c20d7d5506c1f4
--- /dev/null
+++ b/out/pretrain/openllama/2411/final/config.json
@@ -0,0 +1,22 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 3200,
+ "initializer_range": 0.02,
+ "intermediate_size": 8640,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 26,
+ "pad_token_id": 0,
+ "rms_norm_eps": 1e-06,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float16",
+ "transformers_version": "4.30.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/openllama/2411/final/generation_config.json b/out/pretrain/openllama/2411/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..737a363761e41a11a1575fe06b90729fdb7ed2b5
--- /dev/null
+++ b/out/pretrain/openllama/2411/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "_from_model_config": true,
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "transformers_version": "4.30.0.dev0"
+}
diff --git a/out/pretrain/openllama/2411/final/hyperparameters.yaml b/out/pretrain/openllama/2411/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..85b3a3def44f4b9d74797c67097cee1e6d7fdc1d
--- /dev/null
+++ b/out/pretrain/openllama/2411/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2411
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/openllama/2410/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2411
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 247463936
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2411/final/model_config.yaml b/out/pretrain/openllama/2411/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2411/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2411/final/tokenizer_config.json b/out/pretrain/openllama/2411/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2411/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/openllama/2412/final/config.json b/out/pretrain/openllama/2412/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..573ed2e85bc147201714680570c20d7d5506c1f4
--- /dev/null
+++ b/out/pretrain/openllama/2412/final/config.json
@@ -0,0 +1,22 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 3200,
+ "initializer_range": 0.02,
+ "intermediate_size": 8640,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 26,
+ "pad_token_id": 0,
+ "rms_norm_eps": 1e-06,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float16",
+ "transformers_version": "4.30.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/openllama/2412/final/generation_config.json b/out/pretrain/openllama/2412/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..737a363761e41a11a1575fe06b90729fdb7ed2b5
--- /dev/null
+++ b/out/pretrain/openllama/2412/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "_from_model_config": true,
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "transformers_version": "4.30.0.dev0"
+}
diff --git a/out/pretrain/openllama/2412/final/hyperparameters.yaml b/out/pretrain/openllama/2412/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..9a3ccd32d2da77f193b1d8740a876f009f4b5ab2
--- /dev/null
+++ b/out/pretrain/openllama/2412/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2412
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/openllama/2411/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2412
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 298844160
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2412/final/model_config.yaml b/out/pretrain/openllama/2412/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2412/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2412/final/tokenizer_config.json b/out/pretrain/openllama/2412/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2412/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/openllama/2501/final/config.json b/out/pretrain/openllama/2501/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..573ed2e85bc147201714680570c20d7d5506c1f4
--- /dev/null
+++ b/out/pretrain/openllama/2501/final/config.json
@@ -0,0 +1,22 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 3200,
+ "initializer_range": 0.02,
+ "intermediate_size": 8640,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 26,
+ "pad_token_id": 0,
+ "rms_norm_eps": 1e-06,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float16",
+ "transformers_version": "4.30.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/openllama/2501/final/generation_config.json b/out/pretrain/openllama/2501/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..737a363761e41a11a1575fe06b90729fdb7ed2b5
--- /dev/null
+++ b/out/pretrain/openllama/2501/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "_from_model_config": true,
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "transformers_version": "4.30.0.dev0"
+}
diff --git a/out/pretrain/openllama/2501/final/hyperparameters.yaml b/out/pretrain/openllama/2501/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..6261eb7008f1d3841ff417cd35541156fc5ee6cc
--- /dev/null
+++ b/out/pretrain/openllama/2501/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2501
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/openllama/2412/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2501
+train:
+ save_interval: 9999
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 262144000
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2501/final/model_config.yaml b/out/pretrain/openllama/2501/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2501/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2501/final/tokenizer_config.json b/out/pretrain/openllama/2501/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2501/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/openllama/2502/final/hyperparameters.yaml b/out/pretrain/openllama/2502/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..67d1a9fc57325e38d12f18c6fd11da61159003ec
--- /dev/null
+++ b/out/pretrain/openllama/2502/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: open_llama_3b
+out_dir: out/pretrain/openllama/2502
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/openllama/2501/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv_openllama_tokenized/2502
+train:
+ save_interval: 9999
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 325058560
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/openlm-research/open_llama_3b
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/openllama/2502/final/model_config.yaml b/out/pretrain/openllama/2502/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..efd4b6c2d17909320079a314a883d87fdf53524d
--- /dev/null
+++ b/out/pretrain/openllama/2502/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 100
+hf_config:
+ name: open_llama_3b
+ org: openlm-research
+intermediate_size: 8640
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 3200
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 26
+n_query_groups: 32
+name: open_llama_3b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-06
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/openllama/2502/final/tokenizer_config.json b/out/pretrain/openllama/2502/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..75ff0f5b6d38cd1300f7277c250615aa6ae6d241
--- /dev/null
+++ b/out/pretrain/openllama/2502/final/tokenizer_config.json
@@ -0,0 +1 @@
+{"add_bos_token": true, "add_eos_token": false, "model_max_length": 2048, "pad_token": null, "sp_model_kwargs": {}, "tokenizer_class": "LlamaTokenizer", "clean_up_tokenization_spaces": false, "bos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "eos_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}, "unk_token": {"__type": "AddedToken", "content": "", "lstrip": false, "normalized": true, "rstrip": false, "single_word": false}}
\ No newline at end of file
diff --git a/out/pretrain/tinyllama/2407_lr4e-5/final/config.json b/out/pretrain/tinyllama/2407_lr4e-5/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/pretrain/tinyllama/2407_lr4e-5/final/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/tinyllama/2407_lr4e-5/final/generation_config.json b/out/pretrain/tinyllama/2407_lr4e-5/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/pretrain/tinyllama/2407_lr4e-5/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/pretrain/tinyllama/2407_lr4e-5/final/hyperparameters.yaml b/out/pretrain/tinyllama/2407_lr4e-5/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..72b030b5ce7d5bfdeffed33b1db8e45d84c351fc
--- /dev/null
+++ b/out/pretrain/tinyllama/2407_lr4e-5/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: tiny-llama-1.1b
+out_dir: out/pretrain/tinyllama/2407_lr4e-5
+precision: bf16-mixed
+initial_checkpoint_dir: checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv/2407
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 211812352
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/tinyllama/2408_full/final/config.json b/out/pretrain/tinyllama/2408_full/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_full/final/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/tinyllama/2408_full/final/generation_config.json b/out/pretrain/tinyllama/2408_full/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_full/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/pretrain/tinyllama/2408_full/final/hyperparameters.yaml b/out/pretrain/tinyllama/2408_full/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..6cb687d005cd54feb76b33f18c2de44a78f7e6eb
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_full/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: tiny-llama-1.1b
+out_dir: out/pretrain/2408_full
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/2407_full/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 8
+ use_starcoder: true
+data_dir: litgpt/data/arxiv/2408
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 177209344
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 0.0004
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/tinyllama/2408_full/final/model_config.yaml b/out/pretrain/tinyllama/2408_full/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d31881309289cb59520314f7da89a8ef38f3c77e
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_full/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 64
+hf_config:
+ name: TinyLlama-1.1B-intermediate-step-1431k-3T
+ org: TinyLlama
+intermediate_size: 5632
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 2048
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 22
+n_query_groups: 4
+name: tiny-llama-1.1b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-05
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/tinyllama/2408_full/final/tokenizer.json b/out/pretrain/tinyllama/2408_full/final/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6e931b92caff4c79c5c56282f1e89569a0ae558
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_full/final/tokenizer.json
@@ -0,0 +1,93391 @@
+{
+ "version": "1.0",
+ "truncation": null,
+ "padding": null,
+ "added_tokens": [
+ {
+ "id": 0,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 1,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 2,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ }
+ ],
+ "normalizer": {
+ "type": "Sequence",
+ "normalizers": [
+ {
+ "type": "Prepend",
+ "prepend": "▁"
+ },
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": " "
+ },
+ "content": "▁"
+ }
+ ]
+ },
+ "pre_tokenizer": null,
+ "post_processor": {
+ "type": "TemplateProcessing",
+ "single": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ }
+ ],
+ "pair": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ },
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 1
+ }
+ },
+ {
+ "Sequence": {
+ "id": "B",
+ "type_id": 1
+ }
+ }
+ ],
+ "special_tokens": {
+ "": {
+ "id": "",
+ "ids": [
+ 1
+ ],
+ "tokens": [
+ ""
+ ]
+ }
+ }
+ },
+ "decoder": {
+ "type": "Sequence",
+ "decoders": [
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": "▁"
+ },
+ "content": " "
+ },
+ {
+ "type": "ByteFallback"
+ },
+ {
+ "type": "Fuse"
+ },
+ {
+ "type": "Strip",
+ "content": " ",
+ "start": 1,
+ "stop": 0
+ }
+ ]
+ },
+ "model": {
+ "type": "BPE",
+ "dropout": null,
+ "unk_token": "",
+ "continuing_subword_prefix": null,
+ "end_of_word_suffix": null,
+ "fuse_unk": true,
+ "byte_fallback": true,
+ "vocab": {
+ "": 0,
+ "": 1,
+ "": 2,
+ "<0x00>": 3,
+ "<0x01>": 4,
+ "<0x02>": 5,
+ "<0x03>": 6,
+ "<0x04>": 7,
+ "<0x05>": 8,
+ "<0x06>": 9,
+ "<0x07>": 10,
+ "<0x08>": 11,
+ "<0x09>": 12,
+ "<0x0A>": 13,
+ "<0x0B>": 14,
+ "<0x0C>": 15,
+ "<0x0D>": 16,
+ "<0x0E>": 17,
+ "<0x0F>": 18,
+ "<0x10>": 19,
+ "<0x11>": 20,
+ "<0x12>": 21,
+ "<0x13>": 22,
+ "<0x14>": 23,
+ "<0x15>": 24,
+ "<0x16>": 25,
+ "<0x17>": 26,
+ "<0x18>": 27,
+ "<0x19>": 28,
+ "<0x1A>": 29,
+ "<0x1B>": 30,
+ "<0x1C>": 31,
+ "<0x1D>": 32,
+ "<0x1E>": 33,
+ "<0x1F>": 34,
+ "<0x20>": 35,
+ "<0x21>": 36,
+ "<0x22>": 37,
+ "<0x23>": 38,
+ "<0x24>": 39,
+ "<0x25>": 40,
+ "<0x26>": 41,
+ "<0x27>": 42,
+ "<0x28>": 43,
+ "<0x29>": 44,
+ "<0x2A>": 45,
+ "<0x2B>": 46,
+ "<0x2C>": 47,
+ "<0x2D>": 48,
+ "<0x2E>": 49,
+ "<0x2F>": 50,
+ "<0x30>": 51,
+ "<0x31>": 52,
+ "<0x32>": 53,
+ "<0x33>": 54,
+ "<0x34>": 55,
+ "<0x35>": 56,
+ "<0x36>": 57,
+ "<0x37>": 58,
+ "<0x38>": 59,
+ "<0x39>": 60,
+ "<0x3A>": 61,
+ "<0x3B>": 62,
+ "<0x3C>": 63,
+ "<0x3D>": 64,
+ "<0x3E>": 65,
+ "<0x3F>": 66,
+ "<0x40>": 67,
+ "<0x41>": 68,
+ "<0x42>": 69,
+ "<0x43>": 70,
+ "<0x44>": 71,
+ "<0x45>": 72,
+ "<0x46>": 73,
+ "<0x47>": 74,
+ "<0x48>": 75,
+ "<0x49>": 76,
+ "<0x4A>": 77,
+ "<0x4B>": 78,
+ "<0x4C>": 79,
+ "<0x4D>": 80,
+ "<0x4E>": 81,
+ "<0x4F>": 82,
+ "<0x50>": 83,
+ "<0x51>": 84,
+ "<0x52>": 85,
+ "<0x53>": 86,
+ "<0x54>": 87,
+ "<0x55>": 88,
+ "<0x56>": 89,
+ "<0x57>": 90,
+ "<0x58>": 91,
+ "<0x59>": 92,
+ "<0x5A>": 93,
+ "<0x5B>": 94,
+ "<0x5C>": 95,
+ "<0x5D>": 96,
+ "<0x5E>": 97,
+ "<0x5F>": 98,
+ "<0x60>": 99,
+ "<0x61>": 100,
+ "<0x62>": 101,
+ "<0x63>": 102,
+ "<0x64>": 103,
+ "<0x65>": 104,
+ "<0x66>": 105,
+ "<0x67>": 106,
+ "<0x68>": 107,
+ "<0x69>": 108,
+ "<0x6A>": 109,
+ "<0x6B>": 110,
+ "<0x6C>": 111,
+ "<0x6D>": 112,
+ "<0x6E>": 113,
+ "<0x6F>": 114,
+ "<0x70>": 115,
+ "<0x71>": 116,
+ "<0x72>": 117,
+ "<0x73>": 118,
+ "<0x74>": 119,
+ "<0x75>": 120,
+ "<0x76>": 121,
+ "<0x77>": 122,
+ "<0x78>": 123,
+ "<0x79>": 124,
+ "<0x7A>": 125,
+ "<0x7B>": 126,
+ "<0x7C>": 127,
+ "<0x7D>": 128,
+ "<0x7E>": 129,
+ "<0x7F>": 130,
+ "<0x80>": 131,
+ "<0x81>": 132,
+ "<0x82>": 133,
+ "<0x83>": 134,
+ "<0x84>": 135,
+ "<0x85>": 136,
+ "<0x86>": 137,
+ "<0x87>": 138,
+ "<0x88>": 139,
+ "<0x89>": 140,
+ "<0x8A>": 141,
+ "<0x8B>": 142,
+ "<0x8C>": 143,
+ "<0x8D>": 144,
+ "<0x8E>": 145,
+ "<0x8F>": 146,
+ "<0x90>": 147,
+ "<0x91>": 148,
+ "<0x92>": 149,
+ "<0x93>": 150,
+ "<0x94>": 151,
+ "<0x95>": 152,
+ "<0x96>": 153,
+ "<0x97>": 154,
+ "<0x98>": 155,
+ "<0x99>": 156,
+ "<0x9A>": 157,
+ "<0x9B>": 158,
+ "<0x9C>": 159,
+ "<0x9D>": 160,
+ "<0x9E>": 161,
+ "<0x9F>": 162,
+ "<0xA0>": 163,
+ "<0xA1>": 164,
+ "<0xA2>": 165,
+ "<0xA3>": 166,
+ "<0xA4>": 167,
+ "<0xA5>": 168,
+ "<0xA6>": 169,
+ "<0xA7>": 170,
+ "<0xA8>": 171,
+ "<0xA9>": 172,
+ "<0xAA>": 173,
+ "<0xAB>": 174,
+ "<0xAC>": 175,
+ "<0xAD>": 176,
+ "<0xAE>": 177,
+ "<0xAF>": 178,
+ "<0xB0>": 179,
+ "<0xB1>": 180,
+ "<0xB2>": 181,
+ "<0xB3>": 182,
+ "<0xB4>": 183,
+ "<0xB5>": 184,
+ "<0xB6>": 185,
+ "<0xB7>": 186,
+ "<0xB8>": 187,
+ "<0xB9>": 188,
+ "<0xBA>": 189,
+ "<0xBB>": 190,
+ "<0xBC>": 191,
+ "<0xBD>": 192,
+ "<0xBE>": 193,
+ "<0xBF>": 194,
+ "<0xC0>": 195,
+ "<0xC1>": 196,
+ "<0xC2>": 197,
+ "<0xC3>": 198,
+ "<0xC4>": 199,
+ "<0xC5>": 200,
+ "<0xC6>": 201,
+ "<0xC7>": 202,
+ "<0xC8>": 203,
+ "<0xC9>": 204,
+ "<0xCA>": 205,
+ "<0xCB>": 206,
+ "<0xCC>": 207,
+ "<0xCD>": 208,
+ "<0xCE>": 209,
+ "<0xCF>": 210,
+ "<0xD0>": 211,
+ "<0xD1>": 212,
+ "<0xD2>": 213,
+ "<0xD3>": 214,
+ "<0xD4>": 215,
+ "<0xD5>": 216,
+ "<0xD6>": 217,
+ "<0xD7>": 218,
+ "<0xD8>": 219,
+ "<0xD9>": 220,
+ "<0xDA>": 221,
+ "<0xDB>": 222,
+ "<0xDC>": 223,
+ "<0xDD>": 224,
+ "<0xDE>": 225,
+ "<0xDF>": 226,
+ "<0xE0>": 227,
+ "<0xE1>": 228,
+ "<0xE2>": 229,
+ "<0xE3>": 230,
+ "<0xE4>": 231,
+ "<0xE5>": 232,
+ "<0xE6>": 233,
+ "<0xE7>": 234,
+ "<0xE8>": 235,
+ "<0xE9>": 236,
+ "<0xEA>": 237,
+ "<0xEB>": 238,
+ "<0xEC>": 239,
+ "<0xED>": 240,
+ "<0xEE>": 241,
+ "<0xEF>": 242,
+ "<0xF0>": 243,
+ "<0xF1>": 244,
+ "<0xF2>": 245,
+ "<0xF3>": 246,
+ "<0xF4>": 247,
+ "<0xF5>": 248,
+ "<0xF6>": 249,
+ "<0xF7>": 250,
+ "<0xF8>": 251,
+ "<0xF9>": 252,
+ "<0xFA>": 253,
+ "<0xFB>": 254,
+ "<0xFC>": 255,
+ "<0xFD>": 256,
+ "<0xFE>": 257,
+ "<0xFF>": 258,
+ "▁▁": 259,
+ "▁t": 260,
+ "er": 261,
+ "in": 262,
+ "▁a": 263,
+ "en": 264,
+ "on": 265,
+ "▁th": 266,
+ "es": 267,
+ "▁▁▁▁": 268,
+ "▁s": 269,
+ "▁d": 270,
+ "at": 271,
+ "or": 272,
+ "an": 273,
+ "▁c": 274,
+ "is": 275,
+ "re": 276,
+ "it": 277,
+ "▁the": 278,
+ "ar": 279,
+ "le": 280,
+ "▁w": 281,
+ "▁p": 282,
+ "ou": 283,
+ "al": 284,
+ "▁f": 285,
+ "▁m": 286,
+ "ed": 287,
+ "▁o": 288,
+ "▁b": 289,
+ "om": 290,
+ "ion": 291,
+ "ing": 292,
+ "ic": 293,
+ "as": 294,
+ "el": 295,
+ "ent": 296,
+ "▁in": 297,
+ "▁h": 298,
+ "nd": 299,
+ "et": 300,
+ "▁l": 301,
+ "▁n": 302,
+ "st": 303,
+ "▁to": 304,
+ "ch": 305,
+ "▁I": 306,
+ "ro": 307,
+ "▁▁▁▁▁▁▁▁": 308,
+ "il": 309,
+ "▁of": 310,
+ "de": 311,
+ "ct": 312,
+ "▁(": 313,
+ "am": 314,
+ "▁C": 315,
+ "▁de": 316,
+ "▁S": 317,
+ "▁u": 318,
+ "▁A": 319,
+ "▁\\": 320,
+ "▁e": 321,
+ "▁and": 322,
+ "▁T": 323,
+ "ol": 324,
+ "▁v": 325,
+ "im": 326,
+ "ot": 327,
+ "ad": 328,
+ "ut": 329,
+ "▁g": 330,
+ "em": 331,
+ "ur": 332,
+ "id": 333,
+ "▁*": 334,
+ "ig": 335,
+ "ra": 336,
+ "▁re": 337,
+ "▁is": 338,
+ "qu": 339,
+ "ow": 340,
+ "▁M": 341,
+ "est": 342,
+ "▁y": 343,
+ "se": 344,
+ "ve": 345,
+ "ce": 346,
+ "ie": 347,
+ "un": 348,
+ "▁P": 349,
+ "▁B": 350,
+ "ag": 351,
+ "ul": 352,
+ "▁=": 353,
+ "he": 354,
+ "end": 355,
+ "ode": 356,
+ "ter": 357,
+ "ment": 358,
+ "os": 359,
+ "▁D": 360,
+ "if": 361,
+ "ation": 362,
+ "▁for": 363,
+ "▁r": 364,
+ "▁L": 365,
+ "▁you": 366,
+ "▁be": 367,
+ "ly": 368,
+ "ver": 369,
+ "ab": 370,
+ "te": 371,
+ "▁it": 372,
+ "▁on": 373,
+ "ri": 374,
+ "us": 375,
+ "▁\"": 376,
+ "▁wh": 377,
+ "▁con": 378,
+ "▁H": 379,
+ "▁st": 380,
+ "ir": 381,
+ "▁E": 382,
+ "▁F": 383,
+ "ck": 384,
+ "▁an": 385,
+ "th": 386,
+ "eg": 387,
+ "ay": 388,
+ "ith": 389,
+ "▁R": 390,
+ "ist": 391,
+ "and": 392,
+ "▁that": 393,
+ "▁al": 394,
+ "▁$": 395,
+ "▁#": 396,
+ "od": 397,
+ "um": 398,
+ "▁W": 399,
+ "ht": 400,
+ "code": 401,
+ "▁G": 402,
+ "ate": 403,
+ "ess": 404,
+ "▁N": 405,
+ "ere": 406,
+ "pp": 407,
+ "▁as": 408,
+ "▁se": 409,
+ "▁pro": 410,
+ "▁with": 411,
+ "pe": 412,
+ "▁k": 413,
+ "ers": 414,
+ "pt": 415,
+ ");": 416,
+ "lo": 417,
+ "▁▁▁▁▁": 418,
+ "▁com": 419,
+ "ame": 420,
+ "▁`": 421,
+ "▁Com": 422,
+ "ia": 423,
+ "ant": 424,
+ "▁la": 425,
+ "▁{": 426,
+ "▁en": 427,
+ "ction": 428,
+ "▁ex": 429,
+ "ld": 430,
+ "ub": 431,
+ "▁j": 432,
+ "la": 433,
+ "ue": 434,
+ "▁J": 435,
+ "ich": 436,
+ "▁do": 437,
+ "▁O": 438,
+ "▁qu": 439,
+ "iv": 440,
+ "ort": 441,
+ "art": 442,
+ "▁un": 443,
+ "▁##": 444,
+ "▁this": 445,
+ "ke": 446,
+ "▁ha": 447,
+ "▁-": 448,
+ "out": 449,
+ "▁The": 450,
+ "▁not": 451,
+ "▁ne": 452,
+ "ill": 453,
+ "▁le": 454,
+ "ci": 455,
+ "rom": 456,
+ "ine": 457,
+ "//": 458,
+ "op": 459,
+ "egin": 460,
+ "▁Comment": 461,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 462,
+ "begin": 463,
+ "ст": 464,
+ "ass": 465,
+ "iz": 466,
+ ").": 467,
+ "og": 468,
+ "▁п": 469,
+ "▁or": 470,
+ "▁was": 471,
+ "▁at": 472,
+ "our": 473,
+ "▁i": 474,
+ "ain": 475,
+ "▁K": 476,
+ "на": 477,
+ "▁V": 478,
+ "ge": 479,
+ "▁su": 480,
+ "ap": 481,
+ "age": 482,
+ "ould": 483,
+ "ne": 484,
+ "av": 485,
+ "xt": 486,
+ "ore": 487,
+ "ile": 488,
+ "--": 489,
+ "▁в": 490,
+ "▁by": 491,
+ "li": 492,
+ "ath": 493,
+ "ра": 494,
+ "ber": 495,
+ "ach": 496,
+ "all": 497,
+ "▁Th": 498,
+ "ult": 499,
+ "▁}": 500,
+ "▁U": 501,
+ "▁us": 502,
+ "▁z": 503,
+ "ust": 504,
+ "▁have": 505,
+ "lic": 506,
+ "ни": 507,
+ "▁can": 508,
+ "tr": 509,
+ "com": 510,
+ "),": 511,
+ "▁In": 512,
+ "ind": 513,
+ "ell": 514,
+ "▁from": 515,
+ "ов": 516,
+ "to": 517,
+ "▁[": 518,
+ "able": 519,
+ "ost": 520,
+ "▁ch": 521,
+ "ect": 522,
+ "ight": 523,
+ "int": 524,
+ "▁'": 525,
+ "▁are": 526,
+ "▁im": 527,
+ "▁sh": 528,
+ "▁<": 529,
+ "▁An": 530,
+ "▁с": 531,
+ "ata": 532,
+ "ire": 533,
+ "▁tr": 534,
+ "con": 535,
+ "ord": 536,
+ "ity": 537,
+ "ard": 538,
+ "▁▁▁▁▁▁": 539,
+ "▁he": 540,
+ "▁but": 541,
+ "oc": 542,
+ "=\"": 543,
+ "▁pr": 544,
+ "ure": 545,
+ "per": 546,
+ "ack": 547,
+ "ork": 548,
+ "ong": 549,
+ "ans": 550,
+ "ко": 551,
+ "ple": 552,
+ "▁des": 553,
+ "ok": 554,
+ "orm": 555,
+ "wer": 556,
+ "ak": 557,
+ "pr": 558,
+ "ase": 559,
+ "▁el": 560,
+ "ph": 561,
+ "ac": 562,
+ "▁und": 563,
+ "▁ar": 564,
+ "▁if": 565,
+ "ud": 566,
+ "ps": 567,
+ "ite": 568,
+ "ble": 569,
+ "но": 570,
+ "fer": 571,
+ "pl": 572,
+ "ive": 573,
+ "ang": 574,
+ "ens": 575,
+ "ро": 576,
+ "▁so": 577,
+ "so": 578,
+ "ast": 579,
+ "()": 580,
+ "swer": 581,
+ "ru": 582,
+ "ies": 583,
+ "▁:": 584,
+ "au": 585,
+ "ov": 586,
+ "ре": 587,
+ "го": 588,
+ "▁der": 589,
+ "▁my": 590,
+ "▁we": 591,
+ "▁me": 592,
+ "nt": 593,
+ "▁ad": 594,
+ "urn": 595,
+ "▁your": 596,
+ "://": 597,
+ "are": 598,
+ "▁all": 599,
+ "ff": 600,
+ "io": 601,
+ "estion": 602,
+ "ime": 603,
+ "▁er": 604,
+ "lass": 605,
+ "▁и": 606,
+ "▁which": 607,
+ "ome": 608,
+ "ont": 609,
+ "▁par": 610,
+ "▁ma": 611,
+ "▁Y": 612,
+ "\",": 613,
+ "▁о": 614,
+ "ft": 615,
+ "ial": 616,
+ "cc": 617,
+ "ound": 618,
+ "▁li": 619,
+ "▁res": 620,
+ "eth": 621,
+ "ject": 622,
+ "▁app": 623,
+ "▁St": 624,
+ "ice": 625,
+ "▁am": 626,
+ "act": 627,
+ "▁del": 628,
+ "gr": 629,
+ "ated": 630,
+ "ier": 631,
+ "▁▁▁▁▁▁▁▁▁▁▁▁": 632,
+ "▁ab": 633,
+ "▁et": 634,
+ "ally": 635,
+ "..": 636,
+ "port": 637,
+ "ik": 638,
+ "▁per": 639,
+ "▁cont": 640,
+ "ри": 641,
+ "ка": 642,
+ "ser": 643,
+ "ли": 644,
+ "ll": 645,
+ "iew": 646,
+ "ign": 647,
+ "_{": 648,
+ "put": 649,
+ "one": 650,
+ "unction": 651,
+ "▁di": 652,
+ "ary": 653,
+ "ition": 654,
+ "ma": 655,
+ "ен": 656,
+ "get": 657,
+ "▁lo": 658,
+ "▁val": 659,
+ "▁Q": 660,
+ "ran": 661,
+ "▁д": 662,
+ "ence": 663,
+ "▁work": 664,
+ "▁на": 665,
+ "ip": 666,
+ "item": 667,
+ "ype": 668,
+ "▁&": 669,
+ "▁his": 670,
+ "▁use": 671,
+ "der": 672,
+ "▁Answer": 673,
+ "▁will": 674,
+ "ize": 675,
+ "та": 676,
+ "low": 677,
+ "▁Ch": 678,
+ "▁get": 679,
+ "ide": 680,
+ "ous": 681,
+ "ink": 682,
+ "ption": 683,
+ "ла": 684,
+ "turn": 685,
+ "ung": 686,
+ "ec": 687,
+ "ug": 688,
+ "form": 689,
+ "res": 690,
+ "htt": 691,
+ "oug": 692,
+ "ль": 693,
+ "▁no": 694,
+ "cl": 695,
+ "▁ro": 696,
+ "▁one": 697,
+ "tt": 698,
+ "cri": 699,
+ "du": 700,
+ "▁up": 701,
+ "то": 702,
+ "(\"": 703,
+ "▁ob": 704,
+ "we": 705,
+ "ory": 706,
+ "▁est": 707,
+ "ery": 708,
+ "iel": 709,
+ "str": 710,
+ "ob": 711,
+ "▁que": 712,
+ "ian": 713,
+ "▁out": 714,
+ "▁pl": 715,
+ "▁new": 716,
+ "ки": 717,
+ "▁+": 718,
+ "ry": 719,
+ "oth": 720,
+ "ther": 721,
+ "▁var": 722,
+ "▁would": 723,
+ "▁ser": 724,
+ "tern": 725,
+ "text": 726,
+ "▁there": 727,
+ "ish": 728,
+ "ror": 729,
+ "те": 730,
+ "▁set": 731,
+ "▁@": 732,
+ "▁по": 733,
+ "▁te": 734,
+ "ex": 735,
+ "▁return": 736,
+ "ail": 737,
+ "▁any": 738,
+ "▁It": 739,
+ "▁function": 740,
+ "{\\": 741,
+ "',": 742,
+ "és": 743,
+ "ale": 744,
+ "ан": 745,
+ "▁when": 746,
+ "ib": 747,
+ "▁go": 748,
+ "ance": 749,
+ "▁had": 750,
+ "▁Qu": 751,
+ "▁comp": 752,
+ "ле": 753,
+ "▁з": 754,
+ "math": 755,
+ "▁has": 756,
+ "▁м": 757,
+ "▁pre": 758,
+ "ener": 759,
+ "▁part": 760,
+ "elf": 761,
+ "▁die": 762,
+ "▁like": 763,
+ "ray": 764,
+ "irst": 765,
+ "▁dis": 766,
+ "▁man": 767,
+ "rit": 768,
+ "▁then": 769,
+ "▁class": 770,
+ "pro": 771,
+ "▁po": 772,
+ "▁using": 773,
+ "eb": 774,
+ "▁code": 775,
+ "own": 776,
+ "▁some": 777,
+ "ces": 778,
+ "▁$\\": 779,
+ "ер": 780,
+ "lect": 781,
+ "▁au": 782,
+ "isch": 783,
+ "▁col": 784,
+ "▁–": 785,
+ "up": 786,
+ "ons": 787,
+ "▁add": 788,
+ "ild": 789,
+ "iss": 790,
+ "val": 791,
+ "ount": 792,
+ "les": 793,
+ "vent": 794,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁": 795,
+ "▁Z": 796,
+ "In": 797,
+ "row": 798,
+ "ear": 799,
+ "ations": 800,
+ "ah": 801,
+ "que": 802,
+ "ublic": 803,
+ "ank": 804,
+ "▁sp": 805,
+ "▁Wh": 806,
+ "----": 807,
+ "sk": 808,
+ "ew": 809,
+ "ags": 810,
+ "ти": 811,
+ "ann": 812,
+ "▁—": 813,
+ "ert": 814,
+ "ace": 815,
+ "sch": 816,
+ "▁need": 817,
+ "▁à": 818,
+ "ien": 819,
+ "ough": 820,
+ "не": 821,
+ "▁def": 822,
+ "ij": 823,
+ "ern": 824,
+ "▁what": 825,
+ "▁Ar": 826,
+ "wo": 827,
+ "ml": 828,
+ "": 829,
+ "▁Re": 830,
+ "▁es": 831,
+ "▁inst": 832,
+ "bo": 833,
+ "az": 834,
+ "▁###": 835,
+ "▁б": 836,
+ "erm": 837,
+ "▁Al": 838,
+ "led": 839,
+ "да": 840,
+ "ten": 841,
+ "set": 842,
+ "ло": 843,
+ "▁comm": 844,
+ "sh": 845,
+ "ва": 846,
+ "▁/": 847,
+ "▁data": 848,
+ "▁//": 849,
+ "](": 850,
+ "▁str": 851,
+ "ose": 852,
+ "▁Un": 853,
+ "ven": 854,
+ "St": 855,
+ "...": 856,
+ "▁С": 857,
+ "yst": 858,
+ "▁«": 859,
+ "ick": 860,
+ "ix": 861,
+ "par": 862,
+ "▁у": 863,
+ "▁want": 864,
+ "ng": 865,
+ "ote": 866,
+ "▁gr": 867,
+ "▁du": 868,
+ "▁.": 869,
+ "und": 870,
+ "▁only": 871,
+ "▁sa": 872,
+ "ely": 873,
+ "vers": 874,
+ "▁ent": 875,
+ "))": 876,
+ "('": 877,
+ "▁mod": 878,
+ "ava": 879,
+ "ton": 880,
+ "▁should": 881,
+ "ement": 882,
+ "▁form": 883,
+ "▁also": 884,
+ "▁sc": 885,
+ "ings": 886,
+ "▁You": 887,
+ "ón": 888,
+ "▁kn": 889,
+ "();": 890,
+ "▁|": 891,
+ "▁were": 892,
+ "ss": 893,
+ "▁Question": 894,
+ "ise": 895,
+ "▁they": 896,
+ "▁De": 897,
+ "ond": 898,
+ "▁sol": 899,
+ "▁fol": 900,
+ "▁more": 901,
+ "▁her": 902,
+ "▁_": 903,
+ "▁é": 904,
+ "atch": 905,
+ "fter": 906,
+ "▁cre": 907,
+ "lock": 908,
+ "tring": 909,
+ "▁This": 910,
+ "ze": 911,
+ "ado": 912,
+ "ull": 913,
+ "ger": 914,
+ "be": 915,
+ "▁other": 916,
+ "▁Tags": 917,
+ "ution": 918,
+ "ict": 919,
+ "▁how": 920,
+ "▁x": 921,
+ "▁Se": 922,
+ "▁che": 923,
+ "cript": 924,
+ "▁just": 925,
+ "▁pos": 926,
+ "ange": 927,
+ "ific": 928,
+ "ree": 929,
+ "}}": 930,
+ "▁time": 931,
+ "app": 932,
+ "ны": 933,
+ "▁file": 934,
+ "ark": 935,
+ "ical": 936,
+ "▁first": 937,
+ "▁int": 938,
+ "▁В": 939,
+ "▁He": 940,
+ "ta": 941,
+ "ument": 942,
+ "ors": 943,
+ "lement": 944,
+ "rac": 945,
+ "▁ag": 946,
+ "▁does": 947,
+ "yn": 948,
+ "read": 949,
+ "ual": 950,
+ "▁Le": 951,
+ "ys": 952,
+ "▁em": 953,
+ "▁num": 954,
+ "vel": 955,
+ "ди": 956,
+ "over": 957,
+ "▁dif": 958,
+ "ethod": 959,
+ "▁If": 960,
+ "▁spe": 961,
+ "ym": 962,
+ "▁them": 963,
+ "▁into": 964,
+ "▁▁▁▁▁▁▁▁▁▁": 965,
+ "▁les": 966,
+ "▁its": 967,
+ "ese": 968,
+ "ield": 969,
+ "▁public": 970,
+ "▁П": 971,
+ "▁den": 972,
+ "ystem": 973,
+ "of": 974,
+ "▁over": 975,
+ "->": 976,
+ "▁fil": 977,
+ "name": 978,
+ "inal": 979,
+ "▁il": 980,
+ "ample": 981,
+ "▁way": 982,
+ "ica": 983,
+ "во": 984,
+ "cess": 985,
+ "itt": 986,
+ "uch": 987,
+ "▁where": 988,
+ "ми": 989,
+ "org": 990,
+ "https": 991,
+ "▁vo": 992,
+ "ient": 993,
+ "ove": 994,
+ "▁value": 995,
+ "eng": 996,
+ "▁La": 997,
+ "^{": 998,
+ "ref": 999,
+ "ied": 1000,
+ "ER": 1001,
+ "▁stat": 1002,
+ "fig": 1003,
+ "me": 1004,
+ "▁von": 1005,
+ "▁inter": 1006,
+ "roid": 1007,
+ "ater": 1008,
+ "▁their": 1009,
+ "▁bet": 1010,
+ "▁ein": 1011,
+ "}\\": 1012,
+ "\">": 1013,
+ "▁sub": 1014,
+ "▁op": 1015,
+ "▁don": 1016,
+ "ty": 1017,
+ "▁try": 1018,
+ "▁Pro": 1019,
+ "▁tra": 1020,
+ "▁same": 1021,
+ "ep": 1022,
+ "▁two": 1023,
+ "▁name": 1024,
+ "old": 1025,
+ "let": 1026,
+ "▁sim": 1027,
+ "sp": 1028,
+ "▁av": 1029,
+ "bre": 1030,
+ "blem": 1031,
+ "ey": 1032,
+ "▁could": 1033,
+ "▁cor": 1034,
+ "▁acc": 1035,
+ "ays": 1036,
+ "cre": 1037,
+ "urr": 1038,
+ "si": 1039,
+ "▁const": 1040,
+ "ues": 1041,
+ "}$": 1042,
+ "View": 1043,
+ "▁act": 1044,
+ "▁bo": 1045,
+ "▁ко": 1046,
+ "▁som": 1047,
+ "▁about": 1048,
+ "land": 1049,
+ "mer": 1050,
+ "▁list": 1051,
+ "cal": 1052,
+ "▁import": 1053,
+ "col": 1054,
+ "▁na": 1055,
+ "na": 1056,
+ "::": 1057,
+ "▁who": 1058,
+ "▁error": 1059,
+ "▁X": 1060,
+ "ator": 1061,
+ "ext": 1062,
+ "▁been": 1063,
+ "ér": 1064,
+ "▁run": 1065,
+ "pos": 1066,
+ "▁cl": 1067,
+ "**": 1068,
+ "▁К": 1069,
+ "ular": 1070,
+ "ause": 1071,
+ "▁reg": 1072,
+ "▁know": 1073,
+ "▁see": 1074,
+ "▁him": 1075,
+ "ning": 1076,
+ "▁за": 1077,
+ "ates": 1078,
+ "fore": 1079,
+ "ions": 1080,
+ "▁hel": 1081,
+ "ute": 1082,
+ "▁rem": 1083,
+ "▁го": 1084,
+ "▁Mar": 1085,
+ "ру": 1086,
+ "vice": 1087,
+ "irect": 1088,
+ "ner": 1089,
+ "▁under": 1090,
+ "rib": 1091,
+ "hr": 1092,
+ "че": 1093,
+ "▁As": 1094,
+ "▁end": 1095,
+ "ember": 1096,
+ "▁а": 1097,
+ "▁att": 1098,
+ "ina": 1099,
+ "son": 1100,
+ "▁follow": 1101,
+ "▁Sch": 1102,
+ "pect": 1103,
+ "▁rel": 1104,
+ "▁So": 1105,
+ "▁look": 1106,
+ "abel": 1107,
+ "▁problem": 1108,
+ "▁van": 1109,
+ "strong": 1110,
+ "co": 1111,
+ "pon": 1112,
+ "ca": 1113,
+ "ada": 1114,
+ "\":": 1115,
+ "cond": 1116,
+ "amb": 1117,
+ "},": 1118,
+ "quest": 1119,
+ "▁aut": 1120,
+ "▁result": 1121,
+ "▁may": 1122,
+ "Re": 1123,
+ "http": 1124,
+ "):": 1125,
+ "▁And": 1126,
+ "red": 1127,
+ "▁How": 1128,
+ "po": 1129,
+ "ско": 1130,
+ "att": 1131,
+ "oup": 1132,
+ "ced": 1133,
+ "▁type": 1134,
+ "▁than": 1135,
+ "▁cons": 1136,
+ "uf": 1137,
+ "ци": 1138,
+ "▁question": 1139,
+ "raph": 1140,
+ "igh": 1141,
+ "▁М": 1142,
+ "▁htt": 1143,
+ "ins": 1144,
+ "den": 1145,
+ "▁da": 1146,
+ "▁ver": 1147,
+ "oh": 1148,
+ "▁=>": 1149,
+ "riv": 1150,
+ "ude": 1151,
+ "▁For": 1152,
+ "▁ra": 1153,
+ "frac": 1154,
+ "ма": 1155,
+ "▁after": 1156,
+ "}{": 1157,
+ "▁method": 1158,
+ "\")": 1159,
+ "amp": 1160,
+ "ash": 1161,
+ "▁rec": 1162,
+ "▁differ": 1163,
+ "ON": 1164,
+ "ax": 1165,
+ "ament": 1166,
+ "ource": 1167,
+ "Con": 1168,
+ "its": 1169,
+ "Name": 1170,
+ "man": 1171,
+ "▁bec": 1172,
+ "che": 1173,
+ "▁En": 1174,
+ "aj": 1175,
+ "▁gener": 1176,
+ "IN": 1177,
+ "▁id": 1178,
+ "ages": 1179,
+ "▁loc": 1180,
+ "fo": 1181,
+ "br": 1182,
+ "▁she": 1183,
+ "Pro": 1184,
+ "▁una": 1185,
+ "▁к": 1186,
+ "eta": 1187,
+ "log": 1188,
+ "olog": 1189,
+ "▁sur": 1190,
+ "arg": 1191,
+ "▁--": 1192,
+ "kt": 1193,
+ "(\\": 1194,
+ "min": 1195,
+ "▁line": 1196,
+ "▁vari": 1197,
+ "ся": 1198,
+ "ics": 1199,
+ "ня": 1200,
+ "very": 1201,
+ "add": 1202,
+ "▁object": 1203,
+ "Id": 1204,
+ "▁But": 1205,
+ "▁case": 1206,
+ "▁make": 1207,
+ "▁cal": 1208,
+ "▁pass": 1209,
+ "сь": 1210,
+ "ession": 1211,
+ "net": 1212,
+ ".\"": 1213,
+ "▁г": 1214,
+ "är": 1215,
+ "де": 1216,
+ "no": 1217,
+ "ating": 1218,
+ "ato": 1219,
+ "line": 1220,
+ "ви": 1221,
+ "▁Ex": 1222,
+ "▁ass": 1223,
+ "▁vers": 1224,
+ "ля": 1225,
+ "▁ed": 1226,
+ "umn": 1227,
+ "other": 1228,
+ "ста": 1229,
+ "ative": 1230,
+ "String": 1231,
+ "▁los": 1232,
+ "wn": 1233,
+ "▁answer": 1234,
+ "▁let": 1235,
+ "▁pe": 1236,
+ "ents": 1237,
+ "▁fe": 1238,
+ "ince": 1239,
+ "ni": 1240,
+ "ider": 1241,
+ "ows": 1242,
+ "▁test": 1243,
+ "▁here": 1244,
+ "roll": 1245,
+ "▁call": 1246,
+ "ruct": 1247,
+ "▁pol": 1248,
+ "ait": 1249,
+ "▁back": 1250,
+ "ho": 1251,
+ "Ex": 1252,
+ "ress": 1253,
+ "ST": 1254,
+ "ried": 1255,
+ "date": 1256,
+ "ет": 1257,
+ "▁did": 1258,
+ "ting": 1259,
+ "▁El": 1260,
+ "▁dem": 1261,
+ ")$": 1262,
+ "ова": 1263,
+ "urrent": 1264,
+ "lace": 1265,
+ "right": 1266,
+ "ren": 1267,
+ "по": 1268,
+ "▁each": 1269,
+ "cy": 1270,
+ "block": 1271,
+ "data": 1272,
+ "▁%": 1273,
+ "▁ac": 1274,
+ "▁==": 1275,
+ "ür": 1276,
+ "▁por": 1277,
+ "ask": 1278,
+ "arch": 1279,
+ "ames": 1280,
+ "▁Con": 1281,
+ "ча": 1282,
+ "▁off": 1283,
+ "▁find": 1284,
+ "cont": 1285,
+ "▁now": 1286,
+ "work": 1287,
+ "ational": 1288,
+ "dd": 1289,
+ "ción": 1290,
+ "▁А": 1291,
+ "ault": 1292,
+ "List": 1293,
+ "▁ext": 1294,
+ "urs": 1295,
+ "ake": 1296,
+ "ule": 1297,
+ "▁point": 1298,
+ "AT": 1299,
+ "aut": 1300,
+ "▁trans": 1301,
+ "▁co": 1302,
+ "▁read": 1303,
+ "▁used": 1304,
+ "ски": 1305,
+ "ari": 1306,
+ "LE": 1307,
+ "eter": 1308,
+ "oun": 1309,
+ "ever": 1310,
+ "self": 1311,
+ "ined": 1312,
+ "idth": 1313,
+ "ux": 1314,
+ "js": 1315,
+ "▁such": 1316,
+ "▁Is": 1317,
+ "ée": 1318,
+ "ful": 1319,
+ "▁dist": 1320,
+ "▁bu": 1321,
+ "itemize": 1322,
+ "Cont": 1323,
+ "je": 1324,
+ "си": 1325,
+ "▁prov": 1326,
+ "bb": 1327,
+ "ward": 1328,
+ "esent": 1329,
+ "erson": 1330,
+ "anks": 1331,
+ "wh": 1332,
+ "not": 1333,
+ "▁We": 1334,
+ "ka": 1335,
+ "rop": 1336,
+ "atur": 1337,
+ "als": 1338,
+ "▁bel": 1339,
+ "ör": 1340,
+ "fr": 1341,
+ "▁example": 1342,
+ "▁incl": 1343,
+ "amil": 1344,
+ "▁ра": 1345,
+ "▁“": 1346,
+ "▁string": 1347,
+ "▁think": 1348,
+ "Th": 1349,
+ "▁tem": 1350,
+ "ave": 1351,
+ "▁Fran": 1352,
+ "▁number": 1353,
+ "▁si": 1354,
+ "imes": 1355,
+ "tem": 1356,
+ "my": 1357,
+ "ler": 1358,
+ "load": 1359,
+ "==": 1360,
+ "▁hand": 1361,
+ "za": 1362,
+ "▁because": 1363,
+ "▁sch": 1364,
+ "vo": 1365,
+ "this": 1366,
+ "ID": 1367,
+ "ão": 1368,
+ "▁start": 1369,
+ "▁war": 1370,
+ "▁help": 1371,
+ "ts": 1372,
+ "▁char": 1373,
+ "▁ph": 1374,
+ "▁min": 1375,
+ "til": 1376,
+ "rite": 1377,
+ "--------": 1378,
+ "els": 1379,
+ "▁mit": 1380,
+ "edia": 1381,
+ "ку": 1382,
+ "▁Sh": 1383,
+ "any": 1384,
+ "];": 1385,
+ "▁Б": 1386,
+ "ique": 1387,
+ "da": 1388,
+ "ef": 1389,
+ "dex": 1390,
+ "▁produ": 1391,
+ "▁Н": 1392,
+ "gram": 1393,
+ "▁Or": 1394,
+ "▁gre": 1395,
+ "quote": 1396,
+ "leg": 1397,
+ "orn": 1398,
+ "▁ind": 1399,
+ "▁post": 1400,
+ "▁dep": 1401,
+ "],": 1402,
+ "vi": 1403,
+ "▁user": 1404,
+ "▁>": 1405,
+ "lick": 1406,
+ "▁very": 1407,
+ "ething": 1408,
+ "▁array": 1409,
+ "▁gu": 1410,
+ "▁dur": 1411,
+ "`.": 1412,
+ "ть": 1413,
+ "lication": 1414,
+ "сти": 1415,
+ "ek": 1416,
+ "ico": 1417,
+ "▁dat": 1418,
+ "ор": 1419,
+ "html": 1420,
+ "ione": 1421,
+ "▁different": 1422,
+ "▁check": 1423,
+ "▁fr": 1424,
+ "▁Er": 1425,
+ "▁text": 1426,
+ "ні": 1427,
+ "icht": 1428,
+ "stack": 1429,
+ "EN": 1430,
+ "rag": 1431,
+ "▁every": 1432,
+ "Ar": 1433,
+ "▁before": 1434,
+ "alse": 1435,
+ "▁fin": 1436,
+ "▁dé": 1437,
+ "▁these": 1438,
+ "▁det": 1439,
+ "Val": 1440,
+ "ception": 1441,
+ "▁android": 1442,
+ "blockquote": 1443,
+ "▁je": 1444,
+ "file": 1445,
+ "ats": 1446,
+ "▁до": 1447,
+ "essage": 1448,
+ "▁again": 1449,
+ "aw": 1450,
+ "Ch": 1451,
+ "ween": 1452,
+ "▁Д": 1453,
+ "for": 1454,
+ "cial": 1455,
+ "play": 1456,
+ "pre": 1457,
+ "ida": 1458,
+ "▁Par": 1459,
+ "ny": 1460,
+ "ract": 1461,
+ "▁supp": 1462,
+ "ased": 1463,
+ "lection": 1464,
+ "▁dans": 1465,
+ "air": 1466,
+ "rol": 1467,
+ "▁thr": 1468,
+ "Data": 1469,
+ "lich": 1470,
+ "▁про": 1471,
+ "▁long": 1472,
+ "▁second": 1473,
+ "ually": 1474,
+ "ines": 1475,
+ "▁found": 1476,
+ "ength": 1477,
+ "yp": 1478,
+ "ead": 1479,
+ "▁log": 1480,
+ "ui": 1481,
+ "new": 1482,
+ "▁Р": 1483,
+ "go": 1484,
+ "aus": 1485,
+ "ody": 1486,
+ "▁son": 1487,
+ "ме": 1488,
+ "ero": 1489,
+ "ved": 1490,
+ "sub": 1491,
+ "▁right": 1492,
+ "view": 1493,
+ "▁following": 1494,
+ "')": 1495,
+ "\");": 1496,
+ "▁said": 1497,
+ "же": 1498,
+ "чи": 1499,
+ "ту": 1500,
+ "ott": 1501,
+ "се": 1502,
+ "ars": 1503,
+ "$.": 1504,
+ "gg": 1505,
+ "▁br": 1506,
+ "ool": 1507,
+ "yle": 1508,
+ "use": 1509,
+ "▁show": 1510,
+ "lease": 1511,
+ "cia": 1512,
+ "▁direct": 1513,
+ "doc": 1514,
+ "ар": 1515,
+ "ms": 1516,
+ "▁giv": 1517,
+ "▁exp": 1518,
+ "ql": 1519,
+ "ду": 1520,
+ "ве": 1521,
+ "▁Be": 1522,
+ "Com": 1523,
+ "iter": 1524,
+ "RE": 1525,
+ "mp": 1526,
+ "men": 1527,
+ "▁Ro": 1528,
+ "MA": 1529,
+ "▁Col": 1530,
+ "ister": 1531,
+ "▁well": 1532,
+ "▁": 1533,
+ "ayout": 1534,
+ "ature": 1535,
+ "ivers": 1536,
+ "zy": 1537,
+ "▁не": 1538,
+ "▁met": 1539,
+ "une": 1540,
+ "yth": 1541,
+ "Type": 1542,
+ "▁element": 1543,
+ "▁link": 1544,
+ "mod": 1545,
+ "▁between": 1546,
+ "cept": 1547,
+ "quire": 1548,
+ "▁through": 1549,
+ "▁while": 1550,
+ "▁On": 1551,
+ "the": 1552,
+ "ía": 1553,
+ "▁something": 1554,
+ "vol": 1555,
+ "▁most": 1556,
+ "sc": 1557,
+ "uss": 1558,
+ "▁car": 1559,
+ "▁sm": 1560,
+ "▁ро": 1561,
+ "ano": 1562,
+ "left": 1563,
+ "va": 1564,
+ "▁true": 1565,
+ "($": 1566,
+ "ems": 1567,
+ "▁much": 1568,
+ "ás": 1569,
+ "▁New": 1570,
+ "▁proper": 1571,
+ "era": 1572,
+ "ited": 1573,
+ "▁doc": 1574,
+ "ices": 1575,
+ "The": 1576,
+ "▁?": 1577,
+ "сто": 1578,
+ "fl": 1579,
+ "▁spec": 1580,
+ "ender": 1581,
+ "way": 1582,
+ "▁self": 1583,
+ "▁even": 1584,
+ "ів": 1585,
+ "▁се": 1586,
+ "ния": 1587,
+ "▁Pr": 1588,
+ "▁ke": 1589,
+ "emb": 1590,
+ "▁table": 1591,
+ "▁equ": 1592,
+ "lient": 1593,
+ "td": 1594,
+ "part": 1595,
+ "▁print": 1596,
+ "▁une": 1597,
+ "ify": 1598,
+ "▁->": 1599,
+ "ene": 1600,
+ "▁mon": 1601,
+ "▁dec": 1602,
+ "▁still": 1603,
+ "▁об": 1604,
+ "▁Tr": 1605,
+ "▁ф": 1606,
+ "ife": 1607,
+ "ism": 1608,
+ "by": 1609,
+ "raw": 1610,
+ "ior": 1611,
+ "▁med": 1612,
+ "orld": 1613,
+ "▁comple": 1614,
+ "ww": 1615,
+ "▁art": 1616,
+ "ron": 1617,
+ "▁Г": 1618,
+ "▁My": 1619,
+ "▁als": 1620,
+ "rect": 1621,
+ "▁auf": 1622,
+ "▁down": 1623,
+ "ather": 1624,
+ "Col": 1625,
+ "Text": 1626,
+ "back": 1627,
+ "$,": 1628,
+ "▁year": 1629,
+ "мо": 1630,
+ "pi": 1631,
+ "▁Gr": 1632,
+ "ream": 1633,
+ "▁rep": 1634,
+ "bf": 1635,
+ "www": 1636,
+ "▁wur": 1637,
+ "▁org": 1638,
+ "inter": 1639,
+ "▁Die": 1640,
+ "▁being": 1641,
+ "\".": 1642,
+ "label": 1643,
+ "▁cent": 1644,
+ "java": 1645,
+ "bar": 1646,
+ "ante": 1647,
+ "ana": 1648,
+ "__": 1649,
+ "▁solution": 1650,
+ "▁О": 1651,
+ "▁fl": 1652,
+ "▁create": 1653,
+ "ici": 1654,
+ "ste": 1655,
+ "ython": 1656,
+ "unt": 1657,
+ "ason": 1658,
+ "ference": 1659,
+ "SE": 1660,
+ "▁non": 1661,
+ "ane": 1662,
+ "▁ins": 1663,
+ "ader": 1664,
+ "_{\\": 1665,
+ "Res": 1666,
+ "▁main": 1667,
+ "пи": 1668,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 1669,
+ "▁There": 1670,
+ "▁pour": 1671,
+ "RO": 1672,
+ "`,": 1673,
+ "lish": 1674,
+ "bject": 1675,
+ "ccess": 1676,
+ "▁orig": 1677,
+ "▁▁▁": 1678,
+ "ischen": 1679,
+ "ower": 1680,
+ "▁het": 1681,
+ "uc": 1682,
+ "▁else": 1683,
+ "».": 1684,
+ "▁от": 1685,
+ "equ": 1686,
+ "sible": 1687,
+ "test": 1688,
+ "stand": 1689,
+ "én": 1690,
+ "ets": 1691,
+ "GE": 1692,
+ "ident": 1693,
+ "▁е": 1694,
+ "▁при": 1695,
+ ".,": 1696,
+ "▁das": 1697,
+ "ock": 1698,
+ ",\"": 1699,
+ "▁vol": 1700,
+ "▁fo": 1701,
+ "▁para": 1702,
+ "▁Т": 1703,
+ "▁Car": 1704,
+ "ral": 1705,
+ "▁Sp": 1706,
+ "var": 1707,
+ "▁play": 1708,
+ "ouse": 1709,
+ "▁та": 1710,
+ "ically": 1711,
+ "▁contain": 1712,
+ "ponse": 1713,
+ "▁String": 1714,
+ "án": 1715,
+ "▁both": 1716,
+ "ken": 1717,
+ "AR": 1718,
+ "ере": 1719,
+ "▁Il": 1720,
+ "▁iss": 1721,
+ "▁open": 1722,
+ "▁)": 1723,
+ "▁What": 1724,
+ "fe": 1725,
+ "rivate": 1726,
+ "reg": 1727,
+ "▁without": 1728,
+ "▁zu": 1729,
+ "vis": 1730,
+ "flow": 1731,
+ "▁http": 1732,
+ "abase": 1733,
+ "▁word": 1734,
+ "▁change": 1735,
+ "▁works": 1736,
+ "▁ge": 1737,
+ "▁!": 1738,
+ "▁een": 1739,
+ "itle": 1740,
+ "▁event": 1741,
+ "word": 1742,
+ "ando": 1743,
+ "SB": 1744,
+ "rem": 1745,
+ "▁field": 1746,
+ "ving": 1747,
+ "Ser": 1748,
+ "▁our": 1749,
+ "▁qui": 1750,
+ "▁oper": 1751,
+ "▁ist": 1752,
+ "def": 1753,
+ "▁made": 1754,
+ "ние": 1755,
+ "px": 1756,
+ "▁men": 1757,
+ "rm": 1758,
+ "ais": 1759,
+ "cent": 1760,
+ "list": 1761,
+ "To": 1762,
+ "▁To": 1763,
+ "ja": 1764,
+ "vert": 1765,
+ "▁mar": 1766,
+ "value": 1767,
+ "▁„": 1768,
+ "\";": 1769,
+ "▁aus": 1770,
+ "▁Br": 1771,
+ "ole": 1772,
+ "▁mult": 1773,
+ "ought": 1774,
+ "▁mat": 1775,
+ "▁view": 1776,
+ "fil": 1777,
+ "▁со": 1778,
+ "га": 1779,
+ "▁void": 1780,
+ "▁good": 1781,
+ "бо": 1782,
+ "CT": 1783,
+ "▁many": 1784,
+ "ben": 1785,
+ "▁во": 1786,
+ "▁ка": 1787,
+ "▁system": 1788,
+ "ino": 1789,
+ "▁another": 1790,
+ "▁rest": 1791,
+ "user": 1792,
+ "ility": 1793,
+ "ai": 1794,
+ "▁might": 1795,
+ "ustom": 1796,
+ "▁order": 1797,
+ "▁Ver": 1798,
+ "SS": 1799,
+ "})": 1800,
+ "▁eff": 1801,
+ "до": 1802,
+ "ett": 1803,
+ "▁sign": 1804,
+ "му": 1805,
+ "IT": 1806,
+ "string": 1807,
+ "elle": 1808,
+ "▁sing": 1809,
+ "cul": 1810,
+ "▁trying": 1811,
+ "▁beg": 1812,
+ "▁page": 1813,
+ "хо": 1814,
+ "▁Can": 1815,
+ "▁Ser": 1816,
+ "++": 1817,
+ "▁must": 1818,
+ "▁values": 1819,
+ "▁key": 1820,
+ "ible": 1821,
+ "].": 1822,
+ "ird": 1823,
+ "▁program": 1824,
+ "roller": 1825,
+ "▁conne": 1826,
+ "▁say": 1827,
+ "▁param": 1828,
+ "ache": 1829,
+ "velop": 1830,
+ "▁select": 1831,
+ "▁famil": 1832,
+ "▁last": 1833,
+ "▁Thanks": 1834,
+ "▁pop": 1835,
+ "}.": 1836,
+ "eq": 1837,
+ "▁doesn": 1838,
+ "['": 1839,
+ "▁term": 1840,
+ "▁ré": 1841,
+ "▁document": 1842,
+ "па": 1843,
+ "лу": 1844,
+ "ateg": 1845,
+ ".)": 1846,
+ "ling": 1847,
+ "ional": 1848,
+ "ables": 1849,
+ "▁tak": 1850,
+ "utton": 1851,
+ "▁arg": 1852,
+ "type": 1853,
+ "▁sure": 1854,
+ "▁real": 1855,
+ "▁web": 1856,
+ "▁current": 1857,
+ "▁Pl": 1858,
+ "cho": 1859,
+ "ments": 1860,
+ "▁Joh": 1861,
+ "ots": 1862,
+ "▁exist": 1863,
+ "ну": 1864,
+ "▁für": 1865,
+ "▁из": 1866,
+ "do": 1867,
+ "ного": 1868,
+ "▁las": 1869,
+ "▁null": 1870,
+ "▁inform": 1871,
+ "▁Л": 1872,
+ "▁version": 1873,
+ "▁chang": 1874,
+ "ager": 1875,
+ "▁Comm": 1876,
+ "лі": 1877,
+ "ush": 1878,
+ "▁Ge": 1879,
+ "▁high": 1880,
+ "▁input": 1881,
+ "ogle": 1882,
+ "ros": 1883,
+ "box": 1884,
+ "gen": 1885,
+ "▁ste": 1886,
+ "▁local": 1887,
+ "Im": 1888,
+ "▁process": 1889,
+ "ternal": 1890,
+ "ized": 1891,
+ "ги": 1892,
+ "ét": 1893,
+ "▁Ind": 1894,
+ "▁och": 1895,
+ "lt": 1896,
+ "▁column": 1897,
+ "▁tried": 1898,
+ "▁command": 1899,
+ "▁best": 1900,
+ "aster": 1901,
+ "за": 1902,
+ "▁prim": 1903,
+ "▁model": 1904,
+ "▁і": 1905,
+ "▁those": 1906,
+ "ities": 1907,
+ "ère": 1908,
+ "▁ре": 1909,
+ "је": 1910,
+ "ши": 1911,
+ "ques": 1912,
+ "▁Am": 1913,
+ "▁own": 1914,
+ "lin": 1915,
+ "зи": 1916,
+ "Value": 1917,
+ "thing": 1918,
+ "▁,": 1919,
+ "▁Te": 1920,
+ "▁stud": 1921,
+ "▁um": 1922,
+ "▁server": 1923,
+ "ille": 1924,
+ "▁put": 1925,
+ "ativ": 1926,
+ "gy": 1927,
+ "ови": 1928,
+ "raf": 1929,
+ "ово": 1930,
+ "▁wurde": 1931,
+ "▁When": 1932,
+ "▁div": 1933,
+ "ants": 1934,
+ "▁ter": 1935,
+ "▁partic": 1936,
+ "▁т": 1937,
+ "▁Do": 1938,
+ "▁No": 1939,
+ "sert": 1940,
+ "ido": 1941,
+ "mathcal": 1942,
+ "ade": 1943,
+ "▁II": 1944,
+ "lear": 1945,
+ "ograph": 1946,
+ "ense": 1947,
+ "▁row": 1948,
+ "num": 1949,
+ "▁possible": 1950,
+ "▁since": 1951,
+ "▁Bo": 1952,
+ "ctions": 1953,
+ "▁Im": 1954,
+ "OR": 1955,
+ "ці": 1956,
+ "▁ide": 1957,
+ "map": 1958,
+ "▁correct": 1959,
+ "ves": 1960,
+ "php": 1961,
+ "▁output": 1962,
+ "▁Ph": 1963,
+ "AL": 1964,
+ "ared": 1965,
+ "\\\\": 1966,
+ "▁image": 1967,
+ "esch": 1968,
+ "жи": 1969,
+ "▁conf": 1970,
+ "por": 1971,
+ "query": 1972,
+ "ures": 1973,
+ "ium": 1974,
+ "ends": 1975,
+ "▁Ab": 1976,
+ "SBN": 1977,
+ "ід": 1978,
+ "ether": 1979,
+ "ptions": 1980,
+ "itu": 1981,
+ "lib": 1982,
+ "ns": 1983,
+ "ki": 1984,
+ "▁working": 1985,
+ "▁como": 1986,
+ "▁Then": 1987,
+ "ML": 1988,
+ "key": 1989,
+ "class": 1990,
+ "ople": 1991,
+ "ittle": 1992,
+ "▁match": 1993,
+ "ways": 1994,
+ "mathbb": 1995,
+ "▁require": 1996,
+ "alt": 1997,
+ "▁vis": 1998,
+ "▁bl": 1999,
+ "▁called": 2000,
+ "Item": 2001,
+ "ura": 2002,
+ "vec": 2003,
+ "eme": 2004,
+ "▁della": 2005,
+ "embre": 2006,
+ "urg": 2007,
+ "Se": 2008,
+ "▁request": 2009,
+ "ische": 2010,
+ "▁port": 2011,
+ "▁instead": 2012,
+ "=\\": 2013,
+ "▁У": 2014,
+ "hor": 2015,
+ "ente": 2016,
+ "ume": 2017,
+ "erd": 2018,
+ "са": 2019,
+ "▁why": 2020,
+ "rist": 2021,
+ "▁person": 2022,
+ "▁...": 2023,
+ "▁private": 2024,
+ "▁tot": 2025,
+ "pha": 2026,
+ "ift": 2027,
+ "ita": 2028,
+ "loc": 2029,
+ "▁old": 2030,
+ "он": 2031,
+ "▁nel": 2032,
+ "']": 2033,
+ "ti": 2034,
+ "iet": 2035,
+ "cite": 2036,
+ "plement": 2037,
+ "▁above": 2038,
+ "ks": 2039,
+ "ready": 2040,
+ "▁come": 2041,
+ "section": 2042,
+ "▁Pol": 2043,
+ "▁writ": 2044,
+ "▁https": 2045,
+ "▁$$": 2046,
+ "▁»": 2047,
+ "▁build": 2048,
+ "ito": 2049,
+ "▁consider": 2050,
+ "aft": 2051,
+ "App": 2052,
+ ",\\": 2053,
+ "indows": 2054,
+ "comm": 2055,
+ "▁;": 2056,
+ "ground": 2057,
+ "▁place": 2058,
+ "By": 2059,
+ "▁project": 2060,
+ "Object": 2061,
+ "▁repr": 2062,
+ "ences": 2063,
+ "indow": 2064,
+ "zt": 2065,
+ "▁files": 2066,
+ "cz": 2067,
+ "ivity": 2068,
+ "▁init": 2069,
+ "▁prob": 2070,
+ "▁sk": 2071,
+ "orth": 2072,
+ "iment": 2073,
+ "ouble": 2074,
+ "atal": 2075,
+ "irc": 2076,
+ "▁è": 2077,
+ "▁bre": 2078,
+ "ista": 2079,
+ "input": 2080,
+ "▁И": 2081,
+ "ной": 2082,
+ "sum": 2083,
+ "path": 2084,
+ "▁cour": 2085,
+ "▁too": 2086,
+ "▁Ad": 2087,
+ "▁Gu": 2088,
+ "▁false": 2089,
+ "▁fun": 2090,
+ "▁ст": 2091,
+ "ood": 2092,
+ "ès": 2093,
+ "▁enc": 2094,
+ "bol": 2095,
+ "rl": 2096,
+ "arget": 2097,
+ "order": 2098,
+ "▁mean": 2099,
+ "пе": 2100,
+ "igen": 2101,
+ "▁пре": 2102,
+ "width": 2103,
+ ";\r": 2104,
+ "itor": 2105,
+ "▁state": 2106,
+ "▁great": 2107,
+ "enn": 2108,
+ "bin": 2109,
+ "Er": 2110,
+ "Mod": 2111,
+ "oz": 2112,
+ "▁won": 2113,
+ "▁fact": 2114,
+ "▁java": 2115,
+ "▁Univers": 2116,
+ "▁cap": 2117,
+ "istor": 2118,
+ "}(": 2119,
+ "ku": 2120,
+ "ither": 2121,
+ "ales": 2122,
+ "▁ou": 2123,
+ "ross": 2124,
+ "▁take": 2125,
+ "rix": 2126,
+ "lob": 2127,
+ "▁eine": 2128,
+ "ases": 2129,
+ "▁access": 2130,
+ "ité": 2131,
+ "istr": 2132,
+ "ization": 2133,
+ "▁appro": 2134,
+ "ball": 2135,
+ "▁mak": 2136,
+ "}^": 2137,
+ "▁Cons": 2138,
+ "press": 2139,
+ "serv": 2140,
+ "().": 2141,
+ "af": 2142,
+ "▁ref": 2143,
+ ")\\": 2144,
+ "▁contin": 2145,
+ "su": 2146,
+ "iver": 2147,
+ "▁cond": 2148,
+ "▁expect": 2149,
+ "▁charact": 2150,
+ "bert": 2151,
+ "elt": 2152,
+ "ters": 2153,
+ "script": 2154,
+ "▁Ed": 2155,
+ "apt": 2156,
+ "');": 2157,
+ "print": 2158,
+ "▁size": 2159,
+ "▁sich": 2160,
+ "face": 2161,
+ "enden": 2162,
+ "▁Amer": 2163,
+ "ified": 2164,
+ "ów": 2165,
+ "▁Su": 2166,
+ "tes": 2167,
+ "med": 2168,
+ "▁Reg": 2169,
+ "sole": 2170,
+ "▁includ": 2171,
+ "ini": 2172,
+ "inci": 2173,
+ "▁pla": 2174,
+ "▁left": 2175,
+ "df": 2176,
+ "Par": 2177,
+ "▁All": 2178,
+ "▁occ": 2179,
+ "▁At": 2180,
+ "▁cr": 2181,
+ "Qu": 2182,
+ "▁given": 2183,
+ "▁System": 2184,
+ "ican": 2185,
+ "▁final": 2186,
+ "itions": 2187,
+ "▁бы": 2188,
+ "▁perform": 2189,
+ "AN": 2190,
+ "▁Me": 2191,
+ "uro": 2192,
+ "▁That": 2193,
+ "гра": 2194,
+ "▁По": 2195,
+ "▁ви": 2196,
+ "ably": 2197,
+ "▁present": 2198,
+ "duct": 2199,
+ "ric": 2200,
+ "▁Eng": 2201,
+ "try": 2202,
+ "▁lar": 2203,
+ "bl": 2204,
+ "idd": 2205,
+ "▁är": 2206,
+ "ora": 2207,
+ "LL": 2208,
+ "oss": 2209,
+ "▁ISBN": 2210,
+ "▁three": 2211,
+ "jo": 2212,
+ "ní": 2213,
+ "rc": 2214,
+ "▁far": 2215,
+ "▁Not": 2216,
+ "▁little": 2217,
+ "dis": 2218,
+ "ati": 2219,
+ "function": 2220,
+ "▁able": 2221,
+ "less": 2222,
+ "со": 2223,
+ "▁path": 2224,
+ "▁pres": 2225,
+ "lose": 2226,
+ "PI": 2227,
+ "▁issue": 2228,
+ "ackage": 2229,
+ "time": 2230,
+ "ige": 2231,
+ "ams": 2232,
+ "▁Cl": 2233,
+ "ails": 2234,
+ "alk": 2235,
+ "ii": 2236,
+ "ше": 2237,
+ "pen": 2238,
+ "QL": 2239,
+ "▁eas": 2240,
+ "RL": 2241,
+ "cel": 2242,
+ "▁sl": 2243,
+ "▁ask": 2244,
+ "▁nom": 2245,
+ "▁top": 2246,
+ "ides": 2247,
+ "index": 2248,
+ "ém": 2249,
+ "▁happ": 2250,
+ "ox": 2251,
+ "cd": 2252,
+ "▁better": 2253,
+ "▁load": 2254,
+ "ados": 2255,
+ "zen": 2256,
+ "▁ce": 2257,
+ "▁fa": 2258,
+ "▁John": 2259,
+ "IMA": 2260,
+ "▁Bar": 2261,
+ "overflow": 2262,
+ "▁де": 2263,
+ "ness": 2264,
+ "cer": 2265,
+ "▁Here": 2266,
+ "ret": 2267,
+ "▁sz": 2268,
+ "ambda": 2269,
+ "opy": 2270,
+ "url": 2271,
+ "py": 2272,
+ "rt": 2273,
+ "▁understand": 2274,
+ "ał": 2275,
+ "her": 2276,
+ "##": 2277,
+ "▁child": 2278,
+ "▁exec": 2279,
+ "▁application": 2280,
+ "▁struct": 2281,
+ "▁я": 2282,
+ "File": 2283,
+ "▁cert": 2284,
+ "ison": 2285,
+ "▁variable": 2286,
+ "DE": 2287,
+ "rs": 2288,
+ "▁really": 2289,
+ "Port": 2290,
+ "ba": 2291,
+ "▁Ber": 2292,
+ "▁inte": 2293,
+ "▁static": 2294,
+ "▁config": 2295,
+ "▁She": 2296,
+ "estions": 2297,
+ "▁plus": 2298,
+ "▁hab": 2299,
+ "ope": 2300,
+ "▁mus": 2301,
+ "▁count": 2302,
+ "ME": 2303,
+ "▁support": 2304,
+ "▁people": 2305,
+ "▁beh": 2306,
+ "▁already": 2307,
+ "Tr": 2308,
+ "▁done": 2309,
+ "dem": 2310,
+ "size": 2311,
+ "alpha": 2312,
+ "▁disc": 2313,
+ "])": 2314,
+ "▁Man": 2315,
+ "▁mil": 2316,
+ "▁stand": 2317,
+ "▁group": 2318,
+ "▁small": 2319,
+ "▁mag": 2320,
+ "сть": 2321,
+ "▁default": 2322,
+ "▁single": 2323,
+ "link": 2324,
+ "clude": 2325,
+ "▁ear": 2326,
+ "ilar": 2327,
+ "****": 2328,
+ "▁fix": 2329,
+ "ley": 2330,
+ "▁pas": 2331,
+ "ний": 2332,
+ "ission": 2333,
+ "▁implement": 2334,
+ "itch": 2335,
+ "▁года": 2336,
+ "▁always": 2337,
+ "▁Jah": 2338,
+ "pring": 2339,
+ "ção": 2340,
+ "plate": 2341,
+ "▁descri": 2342,
+ "▁head": 2343,
+ "init": 2344,
+ "ograf": 2345,
+ "▁query": 2346,
+ "ived": 2347,
+ "▁ing": 2348,
+ "pty": 2349,
+ "ha": 2350,
+ "▁mov": 2351,
+ "▁э": 2352,
+ "ette": 2353,
+ "ily": 2354,
+ "▁got": 2355,
+ "iled": 2356,
+ "icro": 2357,
+ "▁wr": 2358,
+ "ря": 2359,
+ "▁never": 2360,
+ "ores": 2361,
+ "▁bas": 2362,
+ "ios": 2363,
+ "lack": 2364,
+ "aint": 2365,
+ "vious": 2366,
+ "▁give": 2367,
+ "idad": 2368,
+ "En": 2369,
+ "ный": 2370,
+ "table": 2371,
+ "▁На": 2372,
+ "▁pat": 2373,
+ "тор": 2374,
+ "angu": 2375,
+ "loy": 2376,
+ "▁seg": 2377,
+ "array": 2378,
+ "▁Fl": 2379,
+ "▁index": 2380,
+ "▁sw": 2381,
+ "IMAGE": 2382,
+ "▁km": 2383,
+ "би": 2384,
+ "Class": 2385,
+ "ena": 2386,
+ "мен": 2387,
+ "comp": 2388,
+ "atus": 2389,
+ "rap": 2390,
+ "▁List": 2391,
+ "Error": 2392,
+ "▁typ": 2393,
+ "▁ма": 2394,
+ "cs": 2395,
+ "':": 2396,
+ "ji": 2397,
+ "▁However": 2398,
+ "▁те": 2399,
+ "▁below": 2400,
+ "▁App": 2401,
+ "ще": 2402,
+ "}_": 2403,
+ "bum": 2404,
+ "vir": 2405,
+ "ées": 2406,
+ "▁record": 2407,
+ "tain": 2408,
+ "lem": 2409,
+ "ital": 2410,
+ "▁imp": 2411,
+ "ego": 2412,
+ "▁od": 2413,
+ "▁rece": 2414,
+ "mit": 2415,
+ "ffic": 2416,
+ "stackoverflow": 2417,
+ "ieve": 2418,
+ "▁З": 2419,
+ "▁nov": 2420,
+ "це": 2421,
+ "▁Intern": 2422,
+ "bu": 2423,
+ "▁sugg": 2424,
+ "▁loop": 2425,
+ "ride": 2426,
+ "▁$(": 2427,
+ "▁super": 2428,
+ "rid": 2429,
+ "ных": 2430,
+ "▁Per": 2431,
+ "▁dom": 2432,
+ "='": 2433,
+ "utsch": 2434,
+ "len": 2435,
+ "▁write": 2436,
+ "▁inv": 2437,
+ "outh": 2438,
+ "▁Her": 2439,
+ "▁years": 2440,
+ "▁original": 2441,
+ "ega": 2442,
+ "▁Ste": 2443,
+ "▁seems": 2444,
+ "ég": 2445,
+ "▁next": 2446,
+ "eder": 2447,
+ "▁Ne": 2448,
+ "avas": 2449,
+ "ification": 2450,
+ "Exception": 2451,
+ "▁Der": 2452,
+ "▁ve": 2453,
+ "atic": 2454,
+ "hat": 2455,
+ "brary": 2456,
+ "return": 2457,
+ "urch": 2458,
+ "ision": 2459,
+ "mi": 2460,
+ "oint": 2461,
+ "▁day": 2462,
+ "iction": 2463,
+ "ál": 2464,
+ "▁és": 2465,
+ "▁though": 2466,
+ "action": 2467,
+ "ít": 2468,
+ "ungen": 2469,
+ "ours": 2470,
+ "▁script": 2471,
+ "▁information": 2472,
+ "▁multi": 2473,
+ "▁\\\\": 2474,
+ "ster": 2475,
+ "ке": 2476,
+ "AC": 2477,
+ "cies": 2478,
+ "▁display": 2479,
+ "oman": 2480,
+ "Time": 2481,
+ "ius": 2482,
+ "));": 2483,
+ "tre": 2484,
+ "▁lim": 2485,
+ "ately": 2486,
+ "éd": 2487,
+ "iste": 2488,
+ "▁са": 2489,
+ "post": 2490,
+ "uel": 2491,
+ "img": 2492,
+ "▁ч": 2493,
+ "ска": 2494,
+ "eld": 2495,
+ "pper": 2496,
+ "ula": 2497,
+ "▁general": 2498,
+ "Al": 2499,
+ "Form": 2500,
+ "▁upon": 2501,
+ "zo": 2502,
+ "amente": 2503,
+ "▁prom": 2504,
+ "▁ü": 2505,
+ "lex": 2506,
+ "▁turn": 2507,
+ "▁ме": 2508,
+ "ention": 2509,
+ "лен": 2510,
+ "▁af": 2511,
+ "icle": 2512,
+ "ств": 2513,
+ "▁Fil": 2514,
+ "▁Ф": 2515,
+ "avascript": 2516,
+ "Man": 2517,
+ "ara": 2518,
+ "ware": 2519,
+ "align": 2520,
+ "angle": 2521,
+ "▁Sc": 2522,
+ "unic": 2523,
+ "▁fran": 2524,
+ "Un": 2525,
+ "zi": 2526,
+ "met": 2527,
+ "Add": 2528,
+ "▁pub": 2529,
+ "ков": 2530,
+ "▁gen": 2531,
+ "▁pod": 2532,
+ "▁sum": 2533,
+ "▁having": 2534,
+ "▁avec": 2535,
+ "sl": 2536,
+ "▁fig": 2537,
+ "▁Res": 2538,
+ "Date": 2539,
+ "ules": 2540,
+ "with": 2541,
+ "ский": 2542,
+ "gu": 2543,
+ "ET": 2544,
+ "▁bro": 2545,
+ "rie": 2546,
+ "aps": 2547,
+ "ending": 2548,
+ "mail": 2549,
+ "ook": 2550,
+ "▁success": 2551,
+ "berg": 2552,
+ "▁deb": 2553,
+ "elta": 2554,
+ "()`": 2555,
+ "ential": 2556,
+ "frame": 2557,
+ "Key": 2558,
+ "inn": 2559,
+ "▁simple": 2560,
+ "ival": 2561,
+ "▁care": 2562,
+ "▁Web": 2563,
+ "\").": 2564,
+ ">": 2565,
+ "▁database": 2566,
+ "▁Now": 2567,
+ "Ind": 2568,
+ "▁мо": 2569,
+ "cht": 2570,
+ "ban": 2571,
+ "ram": 2572,
+ "equation": 2573,
+ "ski": 2574,
+ "ief": 2575,
+ "lim": 2576,
+ "Get": 2577,
+ "▁tre": 2578,
+ "aten": 2579,
+ "bed": 2580,
+ "▁Je": 2581,
+ "▁results": 2582,
+ "лю": 2583,
+ "тель": 2584,
+ "db": 2585,
+ "▁bit": 2586,
+ "body": 2587,
+ "Array": 2588,
+ "mu": 2589,
+ "pression": 2590,
+ "▁ста": 2591,
+ "ony": 2592,
+ "iff": 2593,
+ "▁bar": 2594,
+ "▁Arch": 2595,
+ "bers": 2596,
+ "){": 2597,
+ "▁Mon": 2598,
+ "▁doing": 2599,
+ "▁prof": 2600,
+ "▁install": 2601,
+ "▁position": 2602,
+ "ema": 2603,
+ "▁});": 2604,
+ "Path": 2605,
+ "ali": 2606,
+ "▁&&": 2607,
+ "lev": 2608,
+ "▁cannot": 2609,
+ "▁May": 2610,
+ "inst": 2611,
+ "-\\": 2612,
+ "▁coun": 2613,
+ "▁ang": 2614,
+ "▁appear": 2615,
+ "cor": 2616,
+ "ció": 2617,
+ "ided": 2618,
+ "questions": 2619,
+ "atter": 2620,
+ "▁Pa": 2621,
+ "select": 2622,
+ "▁princi": 2623,
+ "Event": 2624,
+ "▁side": 2625,
+ "▁mem": 2626,
+ "▁Jan": 2627,
+ "ario": 2628,
+ "▁within": 2629,
+ "▁Val": 2630,
+ "odes": 2631,
+ "iddle": 2632,
+ "uration": 2633,
+ "bra": 2634,
+ "▁date": 2635,
+ "[]": 2636,
+ "▁entre": 2637,
+ "ili": 2638,
+ "Portail": 2639,
+ "docs": 2640,
+ "ской": 2641,
+ "Element": 2642,
+ "▁message": 2643,
+ "▁nach": 2644,
+ "▁during": 2645,
+ "▁gra": 2646,
+ "etwork": 2647,
+ "▁By": 2648,
+ "▁tell": 2649,
+ "ete": 2650,
+ "~\\": 2651,
+ "▁bis": 2652,
+ "▁pu": 2653,
+ "▁red": 2654,
+ "▁thing": 2655,
+ "▁sort": 2656,
+ "xim": 2657,
+ "ires": 2658,
+ "User": 2659,
+ "iod": 2660,
+ "▁Est": 2661,
+ "osed": 2662,
+ "oute": 2663,
+ "▁Les": 2664,
+ "▁sent": 2665,
+ "ribute": 2666,
+ "utes": 2667,
+ "istory": 2668,
+ "▁service": 2669,
+ "';": 2670,
+ "field": 2671,
+ "▁IN": 2672,
+ "ension": 2673,
+ "rel": 2674,
+ "▁going": 2675,
+ "web": 2676,
+ "Context": 2677,
+ "▁later": 2678,
+ "uk": 2679,
+ "layout": 2680,
+ "ona": 2681,
+ "át": 2682,
+ "----------------": 2683,
+ "▁exact": 2684,
+ "andom": 2685,
+ "▁sie": 2686,
+ "II": 2687,
+ "▁They": 2688,
+ "mente": 2689,
+ "ibli": 2690,
+ "▁fine": 2691,
+ "UT": 2692,
+ "▁develop": 2693,
+ "▁Ein": 2694,
+ "soft": 2695,
+ "off": 2696,
+ "Set": 2697,
+ "▁az": 2698,
+ "eters": 2699,
+ "ilder": 2700,
+ "ples": 2701,
+ "▁specific": 2702,
+ "▁om": 2703,
+ "error": 2704,
+ "ently": 2705,
+ "▁film": 2706,
+ "uck": 2707,
+ "ains": 2708,
+ "ación": 2709,
+ "ges": 2710,
+ "жа": 2711,
+ "▁things": 2712,
+ "Sh": 2713,
+ "▁thought": 2714,
+ "▁added": 2715,
+ "dep": 2716,
+ "ского": 2717,
+ "▁Li": 2718,
+ "ils": 2719,
+ "ync": 2720,
+ "▁то": 2721,
+ "ries": 2722,
+ "▁cu": 2723,
+ "chen": 2724,
+ "ION": 2725,
+ "▁Des": 2726,
+ "ultado": 2727,
+ "irt": 2728,
+ "▁based": 2729,
+ "▁mo": 2730,
+ "▁dest": 2731,
+ "png": 2732,
+ "reen": 2733,
+ "▁running": 2734,
+ "amma": 2735,
+ "oud": 2736,
+ "▁refer": 2737,
+ "ious": 2738,
+ "▁Jul": 2739,
+ "▁search": 2740,
+ "ald": 2741,
+ "ede": 2742,
+ "▁wrong": 2743,
+ "An": 2744,
+ "▁until": 2745,
+ "site": 2746,
+ "ayer": 2747,
+ "▁once": 2748,
+ "arr": 2749,
+ "▁against": 2750,
+ "====": 2751,
+ "▁source": 2752,
+ "arn": 2753,
+ "api": 2754,
+ "▁represent": 2755,
+ "▁aff": 2756,
+ "▁sein": 2757,
+ "▁allow": 2758,
+ "ormal": 2759,
+ "ended": 2760,
+ "▁control": 2761,
+ "mathbf": 2762,
+ "come": 2763,
+ "cur": 2764,
+ "endo": 2765,
+ "wa": 2766,
+ "▁update": 2767,
+ "▁inside": 2768,
+ "▁reason": 2769,
+ "omen": 2770,
+ "▁вы": 2771,
+ "De": 2772,
+ "▁је": 2773,
+ "sw": 2774,
+ "▁sever": 2775,
+ "Of": 2776,
+ "▁instance": 2777,
+ "▁mer": 2778,
+ "▁effect": 2779,
+ "color": 2780,
+ "ugust": 2781,
+ "ilt": 2782,
+ "des": 2783,
+ "itz": 2784,
+ "ulation": 2785,
+ "nie": 2786,
+ "▁World": 2787,
+ "▁similar": 2788,
+ "ymbol": 2789,
+ "hing": 2790,
+ "▁mark": 2791,
+ "State": 2792,
+ "▁content": 2793,
+ "▁means": 2794,
+ "amed": 2795,
+ "▁End": 2796,
+ "ND": 2797,
+ "count": 2798,
+ "▁Inst": 2799,
+ "perty": 2800,
+ "ctor": 2801,
+ "▁{\\": 2802,
+ "▁Let": 2803,
+ "▁!=": 2804,
+ "▁getting": 2805,
+ "uth": 2806,
+ "umber": 2807,
+ "▁Consultado": 2808,
+ "schaft": 2809,
+ "lete": 2810,
+ "▁Will": 2811,
+ "▁Em": 2812,
+ "head": 2813,
+ "▁leg": 2814,
+ "ном": 2815,
+ "Or": 2816,
+ "arm": 2817,
+ "pond": 2818,
+ "▁Christ": 2819,
+ "▁around": 2820,
+ "▁clear": 2821,
+ "▁href": 2822,
+ "▁See": 2823,
+ "').": 2824,
+ "▁created": 2825,
+ "▁button": 2826,
+ "ining": 2827,
+ "▁click": 2828,
+ "iam": 2829,
+ "plit": 2830,
+ "For": 2831,
+ "▁polit": 2832,
+ "▁seem": 2833,
+ "▁life": 2834,
+ "нов": 2835,
+ "▁intern": 2836,
+ "щи": 2837,
+ "sel": 2838,
+ "soci": 2839,
+ "▁stor": 2840,
+ "cle": 2841,
+ "earch": 2842,
+ "android": 2843,
+ "}^{": 2844,
+ "▁either": 2845,
+ "▁few": 2846,
+ "▁initial": 2847,
+ "length": 2848,
+ "ria": 2849,
+ "sql": 2850,
+ "wik": 2851,
+ "▁ét": 2852,
+ "uer": 2853,
+ "▁valid": 2854,
+ "And": 2855,
+ "include": 2856,
+ "ury": 2857,
+ "▁sus": 2858,
+ "ired": 2859,
+ "▁After": 2860,
+ "▁due": 2861,
+ "▁bei": 2862,
+ "ources": 2863,
+ "▁Nov": 2864,
+ "Act": 2865,
+ "▁Cont": 2866,
+ "▁break": 2867,
+ "ested": 2868,
+ "▁actually": 2869,
+ "else": 2870,
+ "tml": 2871,
+ "rer": 2872,
+ "ones": 2873,
+ "▁design": 2874,
+ "▁property": 2875,
+ "phi": 2876,
+ "ality": 2877,
+ "och": 2878,
+ "ists": 2879,
+ "▁·": 2880,
+ "udio": 2881,
+ "AB": 2882,
+ "ala": 2883,
+ "iones": 2884,
+ "фи": 2885,
+ "find": 2886,
+ "As": 2887,
+ "▁custom": 2888,
+ "▁ann": 2889,
+ "ES": 2890,
+ "OT": 2891,
+ "lambda": 2892,
+ "▁ident": 2893,
+ "▁organ": 2894,
+ "▁Cent": 2895,
+ "▁Char": 2896,
+ "▁os": 2897,
+ "▁hard": 2898,
+ "ров": 2899,
+ "▁/>": 2900,
+ "ko": 2901,
+ "▁exper": 2902,
+ "▁separ": 2903,
+ "yl": 2904,
+ "ourn": 2905,
+ "▁dev": 2906,
+ "▁auch": 2907,
+ "▁block": 2908,
+ "book": 2909,
+ "▁map": 2910,
+ "illa": 2911,
+ "▁comput": 2912,
+ "▁space": 2913,
+ "result": 2914,
+ ")}": 2915,
+ "▁echo": 2916,
+ "config": 2917,
+ "hi": 2918,
+ "▁large": 2919,
+ "▁width": 2920,
+ "▁Go": 2921,
+ "mat": 2922,
+ "▁diff": 2923,
+ "▁kind": 2924,
+ "ances": 2925,
+ "ynam": 2926,
+ "▁color": 2927,
+ "Int": 2928,
+ "sol": 2929,
+ "▁pi": 2930,
+ "▁character": 2931,
+ "oment": 2932,
+ "▁response": 2933,
+ "igma": 2934,
+ "wards": 2935,
+ "arrow": 2936,
+ "су": 2937,
+ "ties": 2938,
+ "▁über": 2939,
+ "Image": 2940,
+ "yd": 2941,
+ "▁пере": 2942,
+ "▁node": 2943,
+ "▁item": 2944,
+ "achine": 2945,
+ "ima": 2946,
+ "▁va": 2947,
+ "▁approach": 2948,
+ "▁wer": 2949,
+ "▁че": 2950,
+ "On": 2951,
+ "ollow": 2952,
+ "она": 2953,
+ "cted": 2954,
+ "ured": 2955,
+ "Controller": 2956,
+ "lied": 2957,
+ "▁jo": 2958,
+ "▁dal": 2959,
+ "unk": 2960,
+ "▁î": 2961,
+ "start": 2962,
+ "ola": 2963,
+ "▁compon": 2964,
+ "IC": 2965,
+ "bit": 2966,
+ "▁base": 2967,
+ "пу": 2968,
+ "▁idea": 2969,
+ "▁dire": 2970,
+ "▁rad": 2971,
+ "group": 2972,
+ "▁With": 2973,
+ "server": 2974,
+ "side": 2975,
+ "sing": 2976,
+ "▁dies": 2977,
+ "▁near": 2978,
+ "▁voor": 2979,
+ "▁argument": 2980,
+ "▁},": 2981,
+ "▁land": 2982,
+ "▁names": 2983,
+ "▁option": 2984,
+ "ithub": 2985,
+ "pped": 2986,
+ "aug": 2987,
+ "▁links": 2988,
+ "▁full": 2989,
+ "▁situ": 2990,
+ "▁console": 2991,
+ "▁etc": 2992,
+ "aux": 2993,
+ "▁Cor": 2994,
+ "icrosoft": 2995,
+ "▁came": 2996,
+ "local": 2997,
+ "▁known": 2998,
+ "▁multiple": 2999,
+ "anguage": 3000,
+ "▁total": 3001,
+ "ology": 3002,
+ "ät": 3003,
+ "▁Х": 3004,
+ "▁fre": 3005,
+ "▁ten": 3006,
+ "ideo": 3007,
+ "▁bes": 3008,
+ "true": 3009,
+ "Query": 3010,
+ "omm": 3011,
+ "▁Art": 3012,
+ "▁keep": 3013,
+ "▁University": 3014,
+ "reate": 3015,
+ "pport": 3016,
+ "▁python": 3017,
+ "tra": 3018,
+ "ector": 3019,
+ "рі": 3020,
+ "oph": 3021,
+ "▁conc": 3022,
+ "▁four": 3023,
+ "viron": 3024,
+ "▁via": 3025,
+ "?\"": 3026,
+ "image": 3027,
+ "oll": 3028,
+ "ные": 3029,
+ "▁context": 3030,
+ "▁sem": 3031,
+ "._": 3032,
+ "▁eng": 3033,
+ "mar": 3034,
+ "AD": 3035,
+ "▁mor": 3036,
+ "▁Cal": 3037,
+ "▁cell": 3038,
+ "imal": 3039,
+ "ATE": 3040,
+ "▁inf": 3041,
+ "ön": 3042,
+ "uffer": 3043,
+ "sq": 3044,
+ "....": 3045,
+ "▁zur": 3046,
+ "With": 3047,
+ "ран": 3048,
+ "chn": 3049,
+ "▁door": 3050,
+ "content": 3051,
+ "▁miss": 3052,
+ "▁simp": 3053,
+ "ár": 3054,
+ "ira": 3055,
+ "▁hat": 3056,
+ "Test": 3057,
+ "▁certain": 3058,
+ "NS": 3059,
+ "▁cho": 3060,
+ "▁adv": 3061,
+ "where": 3062,
+ "▁looking": 3063,
+ "▁times": 3064,
+ "них": 3065,
+ "uto": 3066,
+ "▁É": 3067,
+ "can": 3068,
+ "host": 3069,
+ "▁(*": 3070,
+ "loat": 3071,
+ "▁nicht": 3072,
+ "Field": 3073,
+ "burg": 3074,
+ "const": 3075,
+ "ades": 3076,
+ "▁Mus": 3077,
+ "▁nothing": 3078,
+ "▁incre": 3079,
+ "▁Min": 3080,
+ "▁power": 3081,
+ "▁American": 3082,
+ "ln": 3083,
+ "valid": 3084,
+ "ungs": 3085,
+ "▁National": 3086,
+ "▁San": 3087,
+ "▁York": 3088,
+ "Request": 3089,
+ "char": 3090,
+ "▁Ze": 3091,
+ "button": 3092,
+ "▁alg": 3093,
+ "SON": 3094,
+ "▁ap": 3095,
+ "uff": 3096,
+ "ability": 3097,
+ "ем": 3098,
+ "▁anything": 3099,
+ "ela": 3100,
+ "())": 3101,
+ "ба": 3102,
+ "ampion": 3103,
+ "▁pot": 3104,
+ "▁fut": 3105,
+ "ailable": 3106,
+ "▁prop": 3107,
+ "\"]": 3108,
+ "▁less": 3109,
+ "lag": 3110,
+ "▁August": 3111,
+ "It": 3112,
+ "▁please": 3113,
+ "▁style": 3114,
+ "▁Also": 3115,
+ "bt": 3116,
+ "▁probably": 3117,
+ "▁One": 3118,
+ "▁poss": 3119,
+ "UI": 3120,
+ "uit": 3121,
+ "▁West": 3122,
+ "hn": 3123,
+ "+\\": 3124,
+ "Button": 3125,
+ "json": 3126,
+ "err": 3127,
+ "rame": 3128,
+ "dom": 3129,
+ "ilon": 3130,
+ "alf": 3131,
+ "▁client": 3132,
+ "▁continu": 3133,
+ "xml": 3134,
+ "pec": 3135,
+ "ador": 3136,
+ "ls": 3137,
+ "▁however": 3138,
+ "▁Any": 3139,
+ "änd": 3140,
+ "mathrm": 3141,
+ "▁url": 3142,
+ "▁book": 3143,
+ "▁gl": 3144,
+ "ives": 3145,
+ "gi": 3146,
+ "▁tro": 3147,
+ "▁US": 3148,
+ "point": 3149,
+ "open": 3150,
+ "▁cur": 3151,
+ "▁era": 3152,
+ "▁particular": 3153,
+ "▁HT": 3154,
+ "oot": 3155,
+ "ello": 3156,
+ "lobal": 3157,
+ "▁action": 3158,
+ "▁Int": 3159,
+ "▁include": 3160,
+ "▁elements": 3161,
+ "ная": 3162,
+ "ards": 3163,
+ "▁Bl": 3164,
+ "▁hum": 3165,
+ "from": 3166,
+ "change": 3167,
+ "▁functions": 3168,
+ "hen": 3169,
+ "Service": 3170,
+ "▁height": 3171,
+ "▁Land": 3172,
+ "ias": 3173,
+ "gs": 3174,
+ "ión": 3175,
+ "лов": 3176,
+ "node": 3177,
+ ".”": 3178,
+ "hand": 3179,
+ "▁бу": 3180,
+ "▁amb": 3181,
+ "▁Lu": 3182,
+ "▁throw": 3183,
+ "▁mot": 3184,
+ "▁Act": 3185,
+ "▁world": 3186,
+ "_\\": 3187,
+ "base": 3188,
+ "▁Co": 3189,
+ "▁arch": 3190,
+ "▁####": 3191,
+ "ged": 3192,
+ "pril": 3193,
+ "older": 3194,
+ "Model": 3195,
+ "▁several": 3196,
+ "lie": 3197,
+ "check": 3198,
+ "]{": 3199,
+ "cons": 3200,
+ "▁Tra": 3201,
+ "heck": 3202,
+ "▁least": 3203,
+ "down": 3204,
+ "ebru": 3205,
+ "Def": 3206,
+ "param": 3207,
+ "ischer": 3208,
+ "▁cas": 3209,
+ "CH": 3210,
+ "▁address": 3211,
+ "▁раз": 3212,
+ "ufen": 3213,
+ "urope": 3214,
+ "ей": 3215,
+ "▁bound": 3216,
+ "CO": 3217,
+ "▁Ang": 3218,
+ "▁Ma": 3219,
+ "Index": 3220,
+ "core": 3221,
+ "ouch": 3222,
+ "atabase": 3223,
+ "ribution": 3224,
+ "document": 3225,
+ "Le": 3226,
+ "}_{": 3227,
+ "vern": 3228,
+ "▁statement": 3229,
+ "▁Brit": 3230,
+ "ono": 3231,
+ "psilon": 3232,
+ "▁level": 3233,
+ "▁product": 3234,
+ "IS": 3235,
+ "▁course": 3236,
+ "▁Mr": 3237,
+ ">\r": 3238,
+ "▁background": 3239,
+ "▁ret": 3240,
+ "ering": 3241,
+ "most": 3242,
+ "сько": 3243,
+ "▁thread": 3244,
+ "itional": 3245,
+ "ites": 3246,
+ "Pl": 3247,
+ "▁dos": 3248,
+ "ga": 3249,
+ "day": 3250,
+ "▁Gener": 3251,
+ "▁tw": 3252,
+ "Ad": 3253,
+ "\"><": 3254,
+ "▁($": 3255,
+ "▁moment": 3256,
+ "title": 3257,
+ "create": 3258,
+ "version": 3259,
+ "Manager": 3260,
+ "▁fur": 3261,
+ "pping": 3262,
+ "ijn": 3263,
+ "ос": 3264,
+ "▁rather": 3265,
+ "ptember": 3266,
+ "OS": 3267,
+ "▁site": 3268,
+ "▁caus": 3269,
+ "ani": 3270,
+ "▁home": 3271,
+ "мі": 3272,
+ "▁short": 3273,
+ "pa": 3274,
+ "▁lead": 3275,
+ "ished": 3276,
+ "cing": 3277,
+ "ording": 3278,
+ "▁prote": 3279,
+ "сле": 3280,
+ "LECT": 3281,
+ "▁didn": 3282,
+ "position": 3283,
+ "\",\"": 3284,
+ "(),": 3285,
+ "trans": 3286,
+ "▁lot": 3287,
+ "▁од": 3288,
+ "AS": 3289,
+ "▁sat": 3290,
+ "▁points": 3291,
+ "github": 3292,
+ "style": 3293,
+ "▁году": 3294,
+ "▁Dis": 3295,
+ "ponent": 3296,
+ "omet": 3297,
+ "zer": 3298,
+ "ULL": 3299,
+ "▁pa": 3300,
+ "AP": 3301,
+ "aces": 3302,
+ "▁United": 3303,
+ "ama": 3304,
+ "ety": 3305,
+ "Color": 3306,
+ "▁enough": 3307,
+ "US": 3308,
+ "▁length": 3309,
+ "());": 3310,
+ "^{\\": 3311,
+ "fty": 3312,
+ "Box": 3313,
+ "apter": 3314,
+ "▁complet": 3315,
+ "ник": 3316,
+ "max": 3317,
+ "object": 3318,
+ "({": 3319,
+ "imgur": 3320,
+ "itive": 3321,
+ "unch": 3322,
+ "▁Sub": 3323,
+ "ende": 3324,
+ "гу": 3325,
+ "ategory": 3326,
+ "ты": 3327,
+ "iano": 3328,
+ "▁upd": 3329,
+ "▁Aust": 3330,
+ "}{\\": 3331,
+ "top": 3332,
+ "las": 3333,
+ "pis": 3334,
+ "iness": 3335,
+ "▁{\r": 3336,
+ "▁Е": 3337,
+ "Gr": 3338,
+ "▁AS": 3339,
+ "▁ве": 3340,
+ "thers": 3341,
+ "▁defined": 3342,
+ "azione": 3343,
+ "▁offic": 3344,
+ "▁autom": 3345,
+ "ün": 3346,
+ "▁brow": 3347,
+ "▁serv": 3348,
+ "▁remove": 3349,
+ "iro": 3350,
+ "▁Bibli": 3351,
+ "ED": 3352,
+ "▁whole": 3353,
+ "▁ш": 3354,
+ "▁Java": 3355,
+ "▁zum": 3356,
+ "ua": 3357,
+ "pm": 3358,
+ "dev": 3359,
+ "кра": 3360,
+ "olds": 3361,
+ "▁War": 3362,
+ "än": 3363,
+ "pass": 3364,
+ "uz": 3365,
+ "[\"": 3366,
+ "▁tri": 3367,
+ "ised": 3368,
+ "ха": 3369,
+ "▁memory": 3370,
+ "▁Port": 3371,
+ "oper": 3372,
+ "Up": 3373,
+ "▁Thank": 3374,
+ "▁Mich": 3375,
+ "ych": 3376,
+ "board": 3377,
+ "бу": 3378,
+ "Inst": 3379,
+ "▁begin": 3380,
+ "ination": 3381,
+ "▁Mod": 3382,
+ "_,": 3383,
+ "▁Den": 3384,
+ "option": 3385,
+ "▁construct": 3386,
+ "▁Just": 3387,
+ "Map": 3388,
+ "run": 3389,
+ "▁respect": 3390,
+ "ham": 3391,
+ "ман": 3392,
+ "imedia": 3393,
+ "▁apply": 3394,
+ "cription": 3395,
+ "main": 3396,
+ "▁Ка": 3397,
+ "oid": 3398,
+ "Code": 3399,
+ "};": 3400,
+ "Info": 3401,
+ "▁format": 3402,
+ "Log": 3403,
+ "▁су": 3404,
+ "▁lat": 3405,
+ "utor": 3406,
+ "▁reference": 3407,
+ "▁calcul": 3408,
+ "onn": 3409,
+ "Lo": 3410,
+ "infty": 3411,
+ "▁along": 3412,
+ "▁č": 3413,
+ "▁task": 3414,
+ "▁ev": 3415,
+ "theta": 3416,
+ "ras": 3417,
+ "jor": 3418,
+ "▁бо": 3419,
+ "▁princip": 3420,
+ "My": 3421,
+ "▁einer": 3422,
+ "▁Es": 3423,
+ "omb": 3424,
+ "quad": 3425,
+ "^{-": 3426,
+ "ump": 3427,
+ "▁till": 3428,
+ "ді": 3429,
+ "▁looks": 3430,
+ "▁ok": 3431,
+ "ца": 3432,
+ "nu": 3433,
+ "Fil": 3434,
+ "▁sont": 3435,
+ "▁Med": 3436,
+ "ague": 3437,
+ "▁cost": 3438,
+ "▁Sim": 3439,
+ "▁comment": 3440,
+ "▁(\\": 3441,
+ "egen": 3442,
+ "▁parameter": 3443,
+ "▁France": 3444,
+ "rep": 3445,
+ "▁TH": 3446,
+ "▁yet": 3447,
+ "▁away": 3448,
+ "▁circ": 3449,
+ "▁API": 3450,
+ "emp": 3451,
+ "ві": 3452,
+ "Layout": 3453,
+ "▁lines": 3454,
+ "▁Part": 3455,
+ "empt": 3456,
+ "▁Bi": 3457,
+ "▁mind": 3458,
+ "ky": 3459,
+ "ging": 3460,
+ "▁report": 3461,
+ "▁Add": 3462,
+ "род": 3463,
+ "▁range": 3464,
+ "cias": 3465,
+ "lip": 3466,
+ "▁Kar": 3467,
+ "▁Commons": 3468,
+ "gerufen": 3469,
+ "aff": 3470,
+ "sec": 3471,
+ "▁html": 3472,
+ "lig": 3473,
+ "▁window": 3474,
+ "inition": 3475,
+ "cis": 3476,
+ "▁ut": 3477,
+ "eln": 3478,
+ "▁aux": 3479,
+ "▁neg": 3480,
+ "Hand": 3481,
+ "▁);": 3482,
+ "▁anal": 3483,
+ "▁fri": 3484,
+ "▁си": 3485,
+ "etch": 3486,
+ "md": 3487,
+ "page": 3488,
+ "▁library": 3489,
+ "▁:=": 3490,
+ "ROM": 3491,
+ "You": 3492,
+ "space": 3493,
+ "▁durch": 3494,
+ "▁host": 3495,
+ "aven": 3496,
+ "▁File": 3497,
+ "alle": 3498,
+ "тив": 3499,
+ "▁pap": 3500,
+ "ство": 3501,
+ "mark": 3502,
+ "▁mais": 3503,
+ "erman": 3504,
+ "Size": 3505,
+ "ек": 3506,
+ "▁Ма": 3507,
+ "▁isn": 3508,
+ "▁copy": 3509,
+ "sten": 3510,
+ "river": 3511,
+ "▁went": 3512,
+ "▁javascript": 3513,
+ "▁sam": 3514,
+ "▁frame": 3515,
+ "▁vi": 3516,
+ "▁previous": 3517,
+ "rodu": 3518,
+ "▁methods": 3519,
+ "▁necess": 3520,
+ "NA": 3521,
+ "cket": 3522,
+ "▁opt": 3523,
+ "Loc": 3524,
+ "how": 3525,
+ "▁în": 3526,
+ "ship": 3527,
+ "▁itself": 3528,
+ "▁Please": 3529,
+ "iene": 3530,
+ "вер": 3531,
+ "▁<<": 3532,
+ "▁mill": 3533,
+ "▁trad": 3534,
+ "pace": 3535,
+ "▁Har": 3536,
+ "iten": 3537,
+ "wise": 3538,
+ "write": 3539,
+ "ции": 3540,
+ "ры": 3541,
+ "Line": 3542,
+ "olo": 3543,
+ "▁accept": 3544,
+ "height": 3545,
+ "▁elect": 3546,
+ "ella": 3547,
+ "▁på": 3548,
+ "Select": 3549,
+ "▁ли": 3550,
+ "▁\\<": 3551,
+ "((": 3552,
+ "▁ID": 3553,
+ "ops": 3554,
+ "ван": 3555,
+ "ió": 3556,
+ "TP": 3557,
+ "»,": 3558,
+ "nection": 3559,
+ "parent": 3560,
+ "▁Mag": 3561,
+ "Table": 3562,
+ "Over": 3563,
+ "▁network": 3564,
+ "спо": 3565,
+ "▁assign": 3566,
+ "igger": 3567,
+ "irm": 3568,
+ ")`": 3569,
+ "ottom": 3570,
+ "beta": 3571,
+ "▁dell": 3572,
+ "▁body": 3573,
+ "▁да": 3574,
+ "▁Your": 3575,
+ "▁fue": 3576,
+ "▁package": 3577,
+ "▁light": 3578,
+ "▁**": 3579,
+ "MP": 3580,
+ "▁cou": 3581,
+ "yes": 3582,
+ ":\\": 3583,
+ "▁Ч": 3584,
+ "▁mention": 3585,
+ "ensch": 3586,
+ "▁deg": 3587,
+ "▁convert": 3588,
+ "▁Dav": 3589,
+ "adt": 3590,
+ "Result": 3591,
+ "though": 3592,
+ "▁bus": 3593,
+ "xy": 3594,
+ "▁seen": 3595,
+ "All": 3596,
+ "public": 3597,
+ "ively": 3598,
+ "▁Rec": 3599,
+ "▁His": 3600,
+ "sim": 3601,
+ "▁för": 3602,
+ "▁histor": 3603,
+ "▁sett": 3604,
+ "rat": 3605,
+ "abled": 3606,
+ "▁»,": 3607,
+ "google": 3608,
+ "Web": 3609,
+ "él": 3610,
+ "▁title": 3611,
+ "▁Janu": 3612,
+ "ја": 3613,
+ "▁took": 3614,
+ "iden": 3615,
+ "sz": 3616,
+ "▁Get": 3617,
+ "▁objects": 3618,
+ "▁common": 3619,
+ "▁changes": 3620,
+ "▁Lond": 3621,
+ "▁extern": 3622,
+ "▁ju": 3623,
+ "Is": 3624,
+ "▁available": 3625,
+ "tri": 3626,
+ "▁más": 3627,
+ "osa": 3628,
+ "Be": 3629,
+ "▁Data": 3630,
+ "ural": 3631,
+ "▁hom": 3632,
+ "▁account": 3633,
+ "oo": 3634,
+ "▁perm": 3635,
+ "respond": 3636,
+ "yt": 3637,
+ "▁send": 3638,
+ "▁returns": 3639,
+ "ivid": 3640,
+ "▁expla": 3641,
+ "ín": 3642,
+ "▁nor": 3643,
+ "If": 3644,
+ "▁From": 3645,
+ "▁target": 3646,
+ "fect": 3647,
+ "ент": 3648,
+ "▁uit": 3649,
+ "▁Jo": 3650,
+ "▁variables": 3651,
+ "▁series": 3652,
+ "▁func": 3653,
+ "▁himself": 3654,
+ "▁ча": 3655,
+ "anti": 3656,
+ "▁ach": 3657,
+ "ialog": 3658,
+ "▁std": 3659,
+ "ae": 3660,
+ "▁foot": 3661,
+ "▁unter": 3662,
+ "gress": 3663,
+ "Not": 3664,
+ "rad": 3665,
+ "fér": 3666,
+ "▁util": 3667,
+ "orem": 3668,
+ "▁sou": 3669,
+ "opt": 3670,
+ "▁og": 3671,
+ "▁uma": 3672,
+ "itar": 3673,
+ "▁Ok": 3674,
+ "ück": 3675,
+ "sqrt": 3676,
+ "▁ant": 3677,
+ "▁werden": 3678,
+ "år": 3679,
+ "});": 3680,
+ "▁Paris": 3681,
+ "▁exception": 3682,
+ "▁determ": 3683,
+ "▁Vol": 3684,
+ "▁Sam": 3685,
+ "▁ess": 3686,
+ "lies": 3687,
+ "ioni": 3688,
+ "oding": 3689,
+ "idget": 3690,
+ "▁pri": 3691,
+ "▁whether": 3692,
+ "▁под": 3693,
+ "▁numbers": 3694,
+ "▁~": 3695,
+ "event": 3696,
+ "▁shows": 3697,
+ "atures": 3698,
+ "▁house": 3699,
+ "▁face": 3700,
+ "▁się": 3701,
+ "vironment": 3702,
+ "van": 3703,
+ "▁including": 3704,
+ "▁<-": 3705,
+ "times": 3706,
+ "now": 3707,
+ "▁pur": 3708,
+ "ifier": 3709,
+ "▁emp": 3710,
+ "▁cla": 3711,
+ "mon": 3712,
+ "▁Das": 3713,
+ "ady": 3714,
+ "▁від": 3715,
+ "▁ц": 3716,
+ "abor": 3717,
+ "OST": 3718,
+ "▁band": 3719,
+ "▁ú": 3720,
+ "▁exactly": 3721,
+ "iert": 3722,
+ "avig": 3723,
+ "▁redu": 3724,
+ "▁SE": 3725,
+ "lished": 3726,
+ "Bu": 3727,
+ "Message": 3728,
+ "cell": 3729,
+ "fully": 3730,
+ "▁sv": 3731,
+ "▁makes": 3732,
+ "pol": 3733,
+ "▁required": 3734,
+ "ferrer": 3735,
+ "▁pers": 3736,
+ "▁mi": 3737,
+ "FI": 3738,
+ "▁Paul": 3739,
+ "▁UI": 3740,
+ "▁Bel": 3741,
+ "inc": 3742,
+ "▁contains": 3743,
+ "Out": 3744,
+ "asure": 3745,
+ "pu": 3746,
+ "oto": 3747,
+ "▁game": 3748,
+ "zn": 3749,
+ "▁Why": 3750,
+ "orith": 3751,
+ "big": 3752,
+ "кий": 3753,
+ "sigma": 3754,
+ "▁quite": 3755,
+ "▁jed": 3756,
+ "rec": 3757,
+ "▁SQL": 3758,
+ "бе": 3759,
+ "▁Mart": 3760,
+ "ya": 3761,
+ "▁school": 3762,
+ "▁simply": 3763,
+ "▁vor": 3764,
+ "▁double": 3765,
+ "рав": 3766,
+ "▁Str": 3767,
+ "iem": 3768,
+ "▁album": 3769,
+ "▁resol": 3770,
+ "▁dei": 3771,
+ "▁Wik": 3772,
+ "▁aw": 3773,
+ "umb": 3774,
+ "ols": 3775,
+ "▁*/": 3776,
+ "▁ze": 3777,
+ "▁anim": 3778,
+ "/>": 3779,
+ "ris": 3780,
+ "resh": 3781,
+ "No": 3782,
+ "iques": 3783,
+ "current": 3784,
+ "▁period": 3785,
+ "▁April": 3786,
+ "▁store": 3787,
+ "','": 3788,
+ "▁Set": 3789,
+ "={": 3790,
+ "ached": 3791,
+ "▁Mal": 3792,
+ "▁Pal": 3793,
+ "antes": 3794,
+ "aterial": 3795,
+ "▁worked": 3796,
+ "leq": 3797,
+ "oreferrer": 3798,
+ "▁happen": 3799,
+ "▁box": 3800,
+ "ney": 3801,
+ "▁close": 3802,
+ "▁gran": 3803,
+ "▁lie": 3804,
+ "▁ir": 3805,
+ "▁expected": 3806,
+ "▁для": 3807,
+ "click": 3808,
+ "și": 3809,
+ "▁parte": 3810,
+ "ogn": 3811,
+ "▁Form": 3812,
+ "▁memb": 3813,
+ "▁plan": 3814,
+ "▁team": 3815,
+ "][": 3816,
+ "▁commun": 3817,
+ "orry": 3818,
+ "ency": 3819,
+ "gl": 3820,
+ "inary": 3821,
+ "cdot": 3822,
+ "^\\": 3823,
+ "▁First": 3824,
+ "ander": 3825,
+ "▁Dec": 3826,
+ "request": 3827,
+ "ства": 3828,
+ "▁structure": 3829,
+ "▁||": 3830,
+ "▁Comp": 3831,
+ "actory": 3832,
+ "▁Mil": 3833,
+ "▁Some": 3834,
+ "Stream": 3835,
+ "▁assum": 3836,
+ "uen": 3837,
+ "▁words": 3838,
+ "▁September": 3839,
+ "▁Ко": 3840,
+ "▁days": 3841,
+ "ories": 3842,
+ "став": 3843,
+ "sm": 3844,
+ "vin": 3845,
+ "partial": 3846,
+ "▁parent": 3847,
+ "oj": 3848,
+ "нии": 3849,
+ "!\"": 3850,
+ "ugin": 3851,
+ "▁Windows": 3852,
+ "Ed": 3853,
+ ":}": 3854,
+ "▁q": 3855,
+ "▁ben": 3856,
+ "iana": 3857,
+ "▁label": 3858,
+ "state": 3859,
+ "uted": 3860,
+ "▁()": 3861,
+ "▁сво": 3862,
+ "▁edit": 3863,
+ "uring": 3864,
+ "▁NS": 3865,
+ "▁Jahr": 3866,
+ "▁provide": 3867,
+ "He": 3868,
+ "▁Yes": 3869,
+ "anel": 3870,
+ "ename": 3871,
+ "▁Don": 3872,
+ "isk": 3873,
+ "gra": 3874,
+ "elij": 3875,
+ "▁root": 3876,
+ "*/": 3877,
+ "▁Fre": 3878,
+ "▁Mor": 3879,
+ "used": 3880,
+ "range": 3881,
+ "▁tamb": 3882,
+ "▁module": 3883,
+ "▁directory": 3884,
+ "ounds": 3885,
+ "Activity": 3886,
+ "▁mu": 3887,
+ "info": 3888,
+ "▁free": 3889,
+ "orge": 3890,
+ "tab": 3891,
+ ")=": 3892,
+ "lang": 3893,
+ "▁ос": 3894,
+ "▁FROM": 3895,
+ "▁enter": 3896,
+ "▁became": 3897,
+ "idae": 3898,
+ "хи": 3899,
+ "▁States": 3900,
+ "verse": 3901,
+ "▁expl": 3902,
+ "ynt": 3903,
+ "UN": 3904,
+ "ee": 3905,
+ "endent": 3906,
+ "▁making": 3907,
+ "▁\"$": 3908,
+ "uni": 3909,
+ "quence": 3910,
+ "▁lui": 3911,
+ "HT": 3912,
+ "▁uses": 3913,
+ "zie": 3914,
+ "nia": 3915,
+ "Content": 3916,
+ "▁Count": 3917,
+ "▁standard": 3918,
+ "ENT": 3919,
+ "▁кон": 3920,
+ "fort": 3921,
+ "adas": 3922,
+ "зу": 3923,
+ "System": 3924,
+ "▁Sw": 3925,
+ "▁ever": 3926,
+ "LO": 3927,
+ "▁correspond": 3928,
+ "▁Po": 3929,
+ "argin": 3930,
+ "кт": 3931,
+ "ій": 3932,
+ "▁remain": 3933,
+ "cio": 3934,
+ "▁actual": 3935,
+ "сту": 3936,
+ "▁sind": 3937,
+ "▁Pe": 3938,
+ "▁changed": 3939,
+ "▁Note": 3940,
+ "skie": 3941,
+ "▁family": 3942,
+ "ità": 3943,
+ "cos": 3944,
+ "txt": 3945,
+ "ker": 3946,
+ "ceed": 3947,
+ "▁arr": 3948,
+ "▁cam": 3949,
+ "izer": 3950,
+ "▁Dan": 3951,
+ "hel": 3952,
+ "icult": 3953,
+ "HP": 3954,
+ "iler": 3955,
+ "▁Sal": 3956,
+ "▁connection": 3957,
+ "usion": 3958,
+ "kn": 3959,
+ "RI": 3960,
+ "▁vom": 3961,
+ "Listener": 3962,
+ "▁ö": 3963,
+ "▁dim": 3964,
+ "▁press": 3965,
+ "▁esc": 3966,
+ "▁Try": 3967,
+ "atalog": 3968,
+ "▁thanks": 3969,
+ "DO": 3970,
+ "▁written": 3971,
+ "dir": 3972,
+ "rew": 3973,
+ "▁fire": 3974,
+ "▁Nach": 3975,
+ "▁á": 3976,
+ "enc": 3977,
+ "▁origin": 3978,
+ "▁November": 3979,
+ "▁};": 3980,
+ "Count": 3981,
+ "▁За": 3982,
+ "▁graph": 3983,
+ "▁mis": 3984,
+ "▁External": 3985,
+ "▁▁▁▁▁▁▁▁▁": 3986,
+ "▁options": 3987,
+ "▁URL": 3988,
+ "▁php": 3989,
+ "▁integr": 3990,
+ "Config": 3991,
+ "▁Text": 3992,
+ "inner": 3993,
+ "▁crit": 3994,
+ ",”": 3995,
+ "▁tog": 3996,
+ "$$": 3997,
+ "nof": 3998,
+ "▁ses": 3999,
+ "ühr": 4000,
+ "▁Since": 4001,
+ "Des": 4002,
+ "ube": 4003,
+ "▁section": 4004,
+ "▁gi": 4005,
+ "ford": 4006,
+ "▁Ass": 4007,
+ "ainer": 4008,
+ "ttp": 4009,
+ "▁behav": 4010,
+ "ports": 4011,
+ "draw": 4012,
+ "This": 4013,
+ "ranch": 4014,
+ "inding": 4015,
+ "▁estab": 4016,
+ "▁obtain": 4017,
+ "rich": 4018,
+ "licit": 4019,
+ "ев": 4020,
+ "▁qual": 4021,
+ "▁za": 4022,
+ "▁har": 4023,
+ "▁fac": 4024,
+ "aar": 4025,
+ "jet": 4026,
+ "icles": 4027,
+ "▁Aus": 4028,
+ "▁hor": 4029,
+ "▁remov": 4030,
+ "▁wie": 4031,
+ "Client": 4032,
+ "▁natur": 4033,
+ "hip": 4034,
+ "Sub": 4035,
+ "▁random": 4036,
+ "DF": 4037,
+ "▁area": 4038,
+ "tag": 4039,
+ "Pr": 4040,
+ "▁Ital": 4041,
+ "▁roku": 4042,
+ "nofollow": 4043,
+ "*}": 4044,
+ "▁others": 4045,
+ "▁limit": 4046,
+ "▁sil": 4047,
+ "▁sav": 4048,
+ "▁often": 4049,
+ "▁render": 4050,
+ "DB": 4051,
+ "▁Mc": 4052,
+ "▁zijn": 4053,
+ "жен": 4054,
+ "▁tag": 4055,
+ "ming": 4056,
+ "lichen": 4057,
+ "pack": 4058,
+ "▁Ag": 4059,
+ "▁sense": 4060,
+ "pg": 4061,
+ "Method": 4062,
+ "aged": 4063,
+ "ág": 4064,
+ "ła": 4065,
+ "▁interest": 4066,
+ "▁associ": 4067,
+ "volution": 4068,
+ "▁empty": 4069,
+ "iche": 4070,
+ "▁gro": 4071,
+ "▁types": 4072,
+ "▁Sie": 4073,
+ "Inter": 4074,
+ "▁noreferrer": 4075,
+ "▁gives": 4076,
+ "hal": 4077,
+ "▁save": 4078,
+ "▁font": 4079,
+ "ruction": 4080,
+ "Script": 4081,
+ "▁alla": 4082,
+ "▁says": 4083,
+ "▁fu": 4084,
+ "ape": 4085,
+ "▁language": 4086,
+ "iger": 4087,
+ "▁King": 4088,
+ "bor": 4089,
+ "uv": 4090,
+ "▁shall": 4091,
+ "▁Europe": 4092,
+ "▁einem": 4093,
+ "▁water": 4094,
+ "▁govern": 4095,
+ "anz": 4096,
+ "ators": 4097,
+ "▁month": 4098,
+ "ye": 4099,
+ "▁important": 4100,
+ "atz": 4101,
+ "first": 4102,
+ "▁Trans": 4103,
+ "▁Mad": 4104,
+ "▁bra": 4105,
+ "ika": 4106,
+ "▁Saint": 4107,
+ "oria": 4108,
+ "kre": 4109,
+ "ements": 4110,
+ "▁Ben": 4111,
+ "lav": 4112,
+ "▁admin": 4113,
+ "▁Hen": 4114,
+ "ril": 4115,
+ "▁Sm": 4116,
+ "cat": 4117,
+ "▁Refer": 4118,
+ "▁Ш": 4119,
+ "▁pract": 4120,
+ "▁Pat": 4121,
+ "▁Gre": 4122,
+ "▁young": 4123,
+ "▁Inter": 4124,
+ "oma": 4125,
+ "teger": 4126,
+ "ibility": 4127,
+ "▁parameters": 4128,
+ "▁everything": 4129,
+ "dat": 4130,
+ "urop": 4131,
+ "olean": 4132,
+ "▁returned": 4133,
+ "▁Class": 4134,
+ "acy": 4135,
+ "####": 4136,
+ "▁př": 4137,
+ "▁folder": 4138,
+ "▁kon": 4139,
+ "▁guess": 4140,
+ "gt": 4141,
+ "jen": 4142,
+ "annel": 4143,
+ "icon": 4144,
+ "▁comb": 4145,
+ "rict": 4146,
+ "▁hij": 4147,
+ "▁author": 4148,
+ "see": 4149,
+ "here": 4150,
+ "stra": 4151,
+ "▁entire": 4152,
+ "▁directly": 4153,
+ "raft": 4154,
+ "heet": 4155,
+ "ester": 4156,
+ "▁ми": 4157,
+ "▁mass": 4158,
+ "untu": 4159,
+ "▁users": 4160,
+ "chi": 4161,
+ "PE": 4162,
+ "▁component": 4163,
+ "Click": 4164,
+ "Att": 4165,
+ "▁sobre": 4166,
+ "ands": 4167,
+ "▁Hol": 4168,
+ "▁Sant": 4169,
+ "ori": 4170,
+ "▁sua": 4171,
+ "std": 4172,
+ "entic": 4173,
+ "CC": 4174,
+ "▁filter": 4175,
+ "SQL": 4176,
+ "▁God": 4177,
+ "At": 4178,
+ "▁му": 4179,
+ "▁performance": 4180,
+ "delta": 4181,
+ "ande": 4182,
+ "amer": 4183,
+ "ды": 4184,
+ "▁cult": 4185,
+ "▁Nor": 4186,
+ "but": 4187,
+ "▁lik": 4188,
+ "********": 4189,
+ "ствен": 4190,
+ "▁comme": 4191,
+ "▁dr": 4192,
+ "imer": 4193,
+ "ordin": 4194,
+ "▁condition": 4195,
+ "este": 4196,
+ "([": 4197,
+ "FF": 4198,
+ "ться": 4199,
+ "imo": 4200,
+ "rab": 4201,
+ "іль": 4202,
+ "▁half": 4203,
+ "each": 4204,
+ "Dis": 4205,
+ "▁rows": 4206,
+ "▁hon": 4207,
+ "▁together": 4208,
+ "▁și": 4209,
+ "medi": 4210,
+ "agn": 4211,
+ "alled": 4212,
+ "▁vill": 4213,
+ "ING": 4214,
+ "idden": 4215,
+ "▁draw": 4216,
+ "yntax": 4217,
+ "▁attempt": 4218,
+ "URL": 4219,
+ "pose": 4220,
+ "▁indic": 4221,
+ "ника": 4222,
+ "▁English": 4223,
+ "▁déc": 4224,
+ "▁needs": 4225,
+ "▁normal": 4226,
+ "urt": 4227,
+ "▁но": 4228,
+ "}}\\": 4229,
+ "last": 4230,
+ "▁Fin": 4231,
+ "▁Febru": 4232,
+ "ila": 4233,
+ "▁country": 4234,
+ "▁fields": 4235,
+ "▁max": 4236,
+ "lés": 4237,
+ "owie": 4238,
+ "▁deux": 4239,
+ "▁built": 4240,
+ "▁Main": 4241,
+ "▁camp": 4242,
+ "ivo": 4243,
+ "iva": 4244,
+ "icy": 4245,
+ "zione": 4246,
+ "Node": 4247,
+ "▁:)": 4248,
+ "▁among": 4249,
+ "▁Ob": 4250,
+ "▁cases": 4251,
+ "haps": 4252,
+ "sers": 4253,
+ "arter": 4254,
+ "ści": 4255,
+ "▁iter": 4256,
+ "▁named": 4257,
+ "exec": 4258,
+ "▁season": 4259,
+ "tot": 4260,
+ "=>": 4261,
+ "graph": 4262,
+ "▁nil": 4263,
+ "acional": 4264,
+ "▁NULL": 4265,
+ "▁special": 4266,
+ "сте": 4267,
+ "css": 4268,
+ "▁\\(": 4269,
+ "vs": 4270,
+ "ael": 4271,
+ "▁city": 4272,
+ "ova": 4273,
+ "▁article": 4274,
+ "▁South": 4275,
+ "Action": 4276,
+ "ça": 4277,
+ "spring": 4278,
+ "itude": 4279,
+ "▁complex": 4280,
+ "▁что": 4281,
+ "build": 4282,
+ "gamma": 4283,
+ "▁Ent": 4284,
+ "iers": 4285,
+ "'.": 4286,
+ "car": 4287,
+ "apache": 4288,
+ "ingen": 4289,
+ "Input": 4290,
+ ": ": 4291,
+ "▁dynam": 4292,
+ "alls": 4293,
+ "show": 4294,
+ "|\\": 4295,
+ "▁wird": 4296,
+ "Bar": 4297,
+ "alth": 4298,
+ "model": 4299,
+ "Trans": 4300,
+ "Row": 4301,
+ "abe": 4302,
+ "▁lib": 4303,
+ "null": 4304,
+ "ragment": 4305,
+ "▁State": 4306,
+ "▁law": 4307,
+ "Frame": 4308,
+ "▁Lo": 4309,
+ "geb": 4310,
+ "}$.": 4311,
+ "▁needed": 4312,
+ "▁contr": 4313,
+ "aries": 4314,
+ "▁screen": 4315,
+ "yr": 4316,
+ "mm": 4317,
+ "▁shown": 4318,
+ "▁bad": 4319,
+ "▁cast": 4320,
+ "▁Test": 4321,
+ "▁Auf": 4322,
+ "▁quant": 4323,
+ "iga": 4324,
+ "▁ren": 4325,
+ "▁Mac": 4326,
+ "▁transform": 4327,
+ "▁difference": 4328,
+ "▁tit": 4329,
+ "TE": 4330,
+ "▁step": 4331,
+ "▁capt": 4332,
+ "▁collection": 4333,
+ "ictionary": 4334,
+ "▁Tom": 4335,
+ "rier": 4336,
+ "▁move": 4337,
+ "cope": 4338,
+ "ords": 4339,
+ "▁further": 4340,
+ "▁columns": 4341,
+ "▁Lin": 4342,
+ "▁fixed": 4343,
+ "▁children": 4344,
+ "MS": 4345,
+ "mo": 4346,
+ "una": 4347,
+ "▁individ": 4348,
+ "tty": 4349,
+ "aste": 4350,
+ "src": 4351,
+ "match": 4352,
+ "wi": 4353,
+ "▁х": 4354,
+ "▁ди": 4355,
+ "▁ord": 4356,
+ "iving": 4357,
+ "▁Bro": 4358,
+ "▁almost": 4359,
+ "▁Pres": 4360,
+ "reci": 4361,
+ "aring": 4362,
+ "▁///": 4363,
+ "ется": 4364,
+ "▁sig": 4365,
+ "light": 4366,
+ "▁Red": 4367,
+ "▁suggest": 4368,
+ "olf": 4369,
+ "▁été": 4370,
+ "isation": 4371,
+ "зна": 4372,
+ "New": 4373,
+ "стан": 4374,
+ "LA": 4375,
+ "unicip": 4376,
+ "▁figure": 4377,
+ "mt": 4378,
+ "iale": 4379,
+ "▁catch": 4380,
+ "default": 4381,
+ "▁tele": 4382,
+ "▁matter": 4383,
+ "cast": 4384,
+ "▁Rich": 4385,
+ "▁handle": 4386,
+ "valu": 4387,
+ "$-": 4388,
+ "об": 4389,
+ "▁json": 4390,
+ "Create": 4391,
+ "▁exam": 4392,
+ "аль": 4393,
+ "ют": 4394,
+ "ored": 4395,
+ "idos": 4396,
+ "append": 4397,
+ "▁Array": 4398,
+ "кс": 4399,
+ "}[": 4400,
+ "rive": 4401,
+ "▁club": 4402,
+ "mann": 4403,
+ "▁este": 4404,
+ "esta": 4405,
+ "▁Gi": 4406,
+ "▁Jap": 4407,
+ "▁Name": 4408,
+ "Column": 4409,
+ "oups": 4410,
+ "ismo": 4411,
+ "▁City": 4412,
+ "▁classes": 4413,
+ "▁infl": 4414,
+ "hl": 4415,
+ "ром": 4416,
+ "▁adding": 4417,
+ "▁fail": 4418,
+ "xx": 4419,
+ "ões": 4420,
+ "Sc": 4421,
+ "util": 4422,
+ "▁location": 4423,
+ "lege": 4424,
+ "ago": 4425,
+ "▁properties": 4426,
+ "abil": 4427,
+ "vas": 4428,
+ "}$,": 4429,
+ "itted": 4430,
+ "ód": 4431,
+ "▁Dem": 4432,
+ "▁asked": 4433,
+ "▁tab": 4434,
+ "Source": 4435,
+ "▁errors": 4436,
+ "ographie": 4437,
+ "▁жи": 4438,
+ "▁mal": 4439,
+ "stract": 4440,
+ "▁dro": 4441,
+ "rak": 4442,
+ "▁note": 4443,
+ "▁setting": 4444,
+ "▁fem": 4445,
+ "▁saw": 4446,
+ "iar": 4447,
+ "HER": 4448,
+ "ес": 4449,
+ "▁pred": 4450,
+ "▁Out": 4451,
+ "▁items": 4452,
+ "лан": 4453,
+ "▁werd": 4454,
+ "ersion": 4455,
+ "lia": 4456,
+ "▁sin": 4457,
+ "ichte": 4458,
+ "▁feel": 4459,
+ "▁пра": 4460,
+ "▁oder": 4461,
+ "UE": 4462,
+ "ocument": 4463,
+ "▁mode": 4464,
+ "▁Na": 4465,
+ "ден": 4466,
+ "mes": 4467,
+ "framework": 4468,
+ "▁auto": 4469,
+ "ным": 4470,
+ "uby": 4471,
+ "▁template": 4472,
+ "▁mess": 4473,
+ "ieder": 4474,
+ "▁related": 4475,
+ "oken": 4476,
+ "▁follows": 4477,
+ "search": 4478,
+ "ami": 4479,
+ "▁wait": 4480,
+ "igr": 4481,
+ "▁low": 4482,
+ "ских": 4483,
+ "ская": 4484,
+ "▁Mark": 4485,
+ "▁ill": 4486,
+ "amento": 4487,
+ "\\<": 4488,
+ "▁df": 4489,
+ "osition": 4490,
+ "▁Ви": 4491,
+ "isf": 4492,
+ "▁Deutsch": 4493,
+ "ahl": 4494,
+ "war": 4495,
+ "itect": 4496,
+ "▁sal": 4497,
+ "elen": 4498,
+ "ById": 4499,
+ "▁gru": 4500,
+ "sv": 4501,
+ "▁passed": 4502,
+ "▁añ": 4503,
+ "Sch": 4504,
+ "▁solve": 4505,
+ "weise": 4506,
+ "atos": 4507,
+ "▁meg": 4508,
+ "▁member": 4509,
+ "ername": 4510,
+ "▁connect": 4511,
+ "ips": 4512,
+ "▁round": 4513,
+ "▁]": 4514,
+ "nes": 4515,
+ "▁dir": 4516,
+ "▁London": 4517,
+ "dy": 4518,
+ "FA": 4519,
+ "▁received": 4520,
+ "reet": 4521,
+ "▁Log": 4522,
+ "▁School": 4523,
+ "ango": 4524,
+ "▁These": 4525,
+ "▁Mont": 4526,
+ "▁ener": 4527,
+ "lad": 4528,
+ "▁define": 4529,
+ "sign": 4530,
+ "▁cle": 4531,
+ "figure": 4532,
+ "▁View": 4533,
+ "textbf": 4534,
+ "$\\": 4535,
+ "зы": 4536,
+ "number": 4537,
+ "▁din": 4538,
+ "eller": 4539,
+ "orithm": 4540,
+ "false": 4541,
+ "fol": 4542,
+ "fficient": 4543,
+ "▁HTML": 4544,
+ "liche": 4545,
+ "▁Mo": 4546,
+ "▁introdu": 4547,
+ "exp": 4548,
+ "▁strong": 4549,
+ "▁thus": 4550,
+ "/)": 4551,
+ "▁ele": 4552,
+ "▁так": 4553,
+ "▁па": 4554,
+ "▁dont": 4555,
+ "▁cause": 4556,
+ "Number": 4557,
+ "▁images": 4558,
+ "▁sample": 4559,
+ "▁sci": 4560,
+ "like": 4561,
+ "▁Lou": 4562,
+ "div": 4563,
+ "anc": 4564,
+ "▁front": 4565,
+ "nen": 4566,
+ "▁missing": 4567,
+ "aria": 4568,
+ "pres": 4569,
+ "▁пред": 4570,
+ "DI": 4571,
+ "filter": 4572,
+ "▁Mit": 4573,
+ "UR": 4574,
+ "▁opp": 4575,
+ "▁sql": 4576,
+ "▁року": 4577,
+ "eren": 4578,
+ "emat": 4579,
+ "ís": 4580,
+ "▁Jean": 4581,
+ "éc": 4582,
+ "▁ci": 4583,
+ "enne": 4584,
+ "atform": 4585,
+ "▁taken": 4586,
+ "▁Of": 4587,
+ "▁насе": 4588,
+ "▁err": 4589,
+ "OP": 4590,
+ "From": 4591,
+ "Default": 4592,
+ "▁General": 4593,
+ "wiki": 4594,
+ "▁grand": 4595,
+ "▁einen": 4596,
+ "Reg": 4597,
+ "Handler": 4598,
+ "conom": 4599,
+ "anger": 4600,
+ "▁был": 4601,
+ "▁Los": 4602,
+ "▁expression": 4603,
+ "ша": 4604,
+ "yal": 4605,
+ "▁$('": 4606,
+ "▁switch": 4607,
+ "▁vector": 4608,
+ "▁Thom": 4609,
+ "▁virt": 4610,
+ "leased": 4611,
+ "▁cover": 4612,
+ "▁resp": 4613,
+ "ako": 4614,
+ "rench": 4615,
+ "ota": 4616,
+ "Cell": 4617,
+ "anged": 4618,
+ "▁+=": 4619,
+ "lac": 4620,
+ "ska": 4621,
+ "next": 4622,
+ "▁International": 4623,
+ "▁Wil": 4624,
+ "▁ont": 4625,
+ "ibr": 4626,
+ "ustr": 4627,
+ "▁black": 4628,
+ "▁selected": 4629,
+ "cher": 4630,
+ "▁liter": 4631,
+ "root": 4632,
+ "лся": 4633,
+ "▁Life": 4634,
+ "▁insert": 4635,
+ "▁matrix": 4636,
+ "ises": 4637,
+ ")]": 4638,
+ "▁pel": 4639,
+ "Override": 4640,
+ "rypt": 4641,
+ "▁former": 4642,
+ "▁Film": 4643,
+ "▁North": 4644,
+ "client": 4645,
+ "▁night": 4646,
+ "ходи": 4647,
+ "▁Austral": 4648,
+ "▁Ret": 4649,
+ "rho": 4650,
+ "▁пер": 4651,
+ "ipedia": 4652,
+ "▁express": 4653,
+ "▁third": 4654,
+ "▁major": 4655,
+ "▁grad": 4656,
+ "owe": 4657,
+ "▁believe": 4658,
+ "ournal": 4659,
+ "▁status": 4660,
+ "unc": 4661,
+ "▁dou": 4662,
+ "▁JSON": 4663,
+ "uis": 4664,
+ "▁population": 4665,
+ "enz": 4666,
+ "▁William": 4667,
+ "sf": 4668,
+ "▁Object": 4669,
+ "▁cin": 4670,
+ "▁Di": 4671,
+ "curity": 4672,
+ "▁Open": 4673,
+ "▁ле": 4674,
+ "lar": 4675,
+ "adding": 4676,
+ "▁kom": 4677,
+ "}(\\": 4678,
+ "▁kil": 4679,
+ "umer": 4680,
+ "\"/>": 4681,
+ "▁feature": 4682,
+ "▁Are": 4683,
+ "cks": 4684,
+ "▁Internet": 4685,
+ "▁ih": 4686,
+ "▁started": 4687,
+ "▁early": 4688,
+ "▁began": 4689,
+ "TH": 4690,
+ "python": 4691,
+ "asp": 4692,
+ "▁Fr": 4693,
+ "▁clos": 4694,
+ "istic": 4695,
+ "▁music": 4696,
+ "▁dig": 4697,
+ "▁ital": 4698,
+ "▁David": 4699,
+ "▁website": 4700,
+ "▁controller": 4701,
+ "▁Mer": 4702,
+ "context": 4703,
+ "product": 4704,
+ "osp": 4705,
+ "▁▁▁▁▁▁▁": 4706,
+ "▁jun": 4707,
+ "rown": 4708,
+ "▁Az": 4709,
+ "\":\"": 4710,
+ "▁aan": 4711,
+ "▁Date": 4712,
+ "mult": 4713,
+ "▁browser": 4714,
+ "ред": 4715,
+ "which": 4716,
+ "RA": 4717,
+ "quare": 4718,
+ "▁Russ": 4719,
+ "▁soon": 4720,
+ "▁Pre": 4721,
+ "tau": 4722,
+ "▁week": 4723,
+ "▁ба": 4724,
+ "▁oct": 4725,
+ "▁town": 4726,
+ "roy": 4727,
+ "▁els": 4728,
+ "blic": 4729,
+ "undle": 4730,
+ "▁Histor": 4731,
+ "▁foi": 4732,
+ "▁models": 4733,
+ "зо": 4734,
+ "onym": 4735,
+ "Param": 4736,
+ "▁Met": 4737,
+ "gener": 4738,
+ "ją": 4739,
+ "▁espe": 4740,
+ "CE": 4741,
+ "▁device": 4742,
+ "ellow": 4743,
+ "▁debug": 4744,
+ "érie": 4745,
+ "using": 4746,
+ "анг": 4747,
+ "▁*)": 4748,
+ "udi": 4749,
+ "▁Miss": 4750,
+ "ком": 4751,
+ "posed": 4752,
+ "▁zwe": 4753,
+ "ін": 4754,
+ "▁Robert": 4755,
+ "▁Oct": 4756,
+ "lop": 4757,
+ "jar": 4758,
+ "▁aver": 4759,
+ "▁habit": 4760,
+ "▁::": 4761,
+ "äng": 4762,
+ "Start": 4763,
+ "▁pow": 4764,
+ "▁src": 4765,
+ "▁pattern": 4766,
+ "▁Э": 4767,
+ "▁bi": 4768,
+ "otes": 4769,
+ "▁__": 4770,
+ "▁sens": 4771,
+ "▁avoid": 4772,
+ "example": 4773,
+ "utt": 4774,
+ "Label": 4775,
+ "tex": 4776,
+ "boot": 4777,
+ "esto": 4778,
+ "▁March": 4779,
+ "▁easy": 4780,
+ "icture": 4781,
+ "Group": 4782,
+ "▁father": 4783,
+ "▁updated": 4784,
+ "▁Vo": 4785,
+ "▁III": 4786,
+ "omega": 4787,
+ "▁alle": 4788,
+ "Rec": 4789,
+ "yg": 4790,
+ "зе": 4791,
+ "▁Dim": 4792,
+ "nect": 4793,
+ "▁Tor": 4794,
+ "▁deutsch": 4795,
+ "▁white": 4796,
+ "▁national": 4797,
+ "ppe": 4798,
+ "▁air": 4799,
+ "▁password": 4800,
+ "det": 4801,
+ "▁big": 4802,
+ "▁Use": 4803,
+ "call": 4804,
+ "▁extra": 4805,
+ "We": 4806,
+ "ania": 4807,
+ "▁hold": 4808,
+ "Control": 4809,
+ "▁CO": 4810,
+ "▁мі": 4811,
+ "iti": 4812,
+ "▁Ke": 4813,
+ "enu": 4814,
+ "▁Park": 4815,
+ "том": 4816,
+ "▁auth": 4817,
+ "▁center": 4818,
+ "Ph": 4819,
+ "тов": 4820,
+ "iding": 4821,
+ "▁across": 4822,
+ "▁song": 4823,
+ "▁phys": 4824,
+ "▁numer": 4825,
+ "ща": 4826,
+ "▁Alex": 4827,
+ "▁problems": 4828,
+ "▁Error": 4829,
+ "format": 4830,
+ "▁Acc": 4831,
+ "▁six": 4832,
+ "▁db": 4833,
+ "▁Cast": 4834,
+ "oms": 4835,
+ "project": 4836,
+ "▁vert": 4837,
+ "cret": 4838,
+ "▁header": 4839,
+ "▁stream": 4840,
+ "ids": 4841,
+ "▁tor": 4842,
+ "▁sept": 4843,
+ "▁estim": 4844,
+ "▁decl": 4845,
+ "▁gave": 4846,
+ "▁player": 4847,
+ "ysis": 4848,
+ "▁дру": 4849,
+ "amm": 4850,
+ "що": 4851,
+ "▁(\"": 4852,
+ "▁ax": 4853,
+ "Property": 4854,
+ "usr": 4855,
+ "▁someone": 4856,
+ "▁impro": 4857,
+ "aden": 4858,
+ "rote": 4859,
+ "▁Ми": 4860,
+ "ih": 4861,
+ "++)": 4862,
+ "▁video": 4863,
+ "▁exists": 4864,
+ "кла": 4865,
+ "▁complete": 4866,
+ "▁session": 4867,
+ "▁constant": 4868,
+ "icos": 4869,
+ "▁pack": 4870,
+ "rome": 4871,
+ "egr": 4872,
+ "Application": 4873,
+ "▁yes": 4874,
+ "▁elle": 4875,
+ "▁email": 4876,
+ "orf": 4877,
+ "case": 4878,
+ "▁pointer": 4879,
+ "▁regard": 4880,
+ "sen": 4881,
+ "status": 4882,
+ "▁mes": 4883,
+ "▁delle": 4884,
+ "ington": 4885,
+ "▁Bas": 4886,
+ ")^": 4887,
+ "develop": 4888,
+ "▁force": 4889,
+ "▁characters": 4890,
+ "▁cross": 4891,
+ "▁death": 4892,
+ "▁takes": 4893,
+ "éri": 4894,
+ "igne": 4895,
+ "чен": 4896,
+ "UP": 4897,
+ ".:": 4898,
+ "Thread": 4899,
+ "ju": 4900,
+ "iny": 4901,
+ "▁details": 4902,
+ "▁xml": 4903,
+ "tait": 4904,
+ "output": 4905,
+ "message": 4906,
+ "''": 4907,
+ "▁British": 4908,
+ "ville": 4909,
+ "▁Div": 4910,
+ "▁User": 4911,
+ "cm": 4912,
+ "чно": 4913,
+ "column": 4914,
+ "eqref": 4915,
+ "ór": 4916,
+ "onom": 4917,
+ "▁Post": 4918,
+ "ellen": 4919,
+ "Ab": 4920,
+ "ulté": 4921,
+ "▁perfect": 4922,
+ "(){": 4923,
+ "vision": 4924,
+ "active": 4925,
+ "lier": 4926,
+ "rij": 4927,
+ "sd": 4928,
+ "▁kö": 4929,
+ "▁nie": 4930,
+ "▁relig": 4931,
+ "▁ot": 4932,
+ "▁machine": 4933,
+ "▁held": 4934,
+ ")$.": 4935,
+ "========": 4936,
+ "cker": 4937,
+ "вы": 4938,
+ "born": 4939,
+ "▁past": 4940,
+ "рия": 4941,
+ "▁Dr": 4942,
+ "▁regular": 4943,
+ "▁provided": 4944,
+ "TER": 4945,
+ "▁univers": 4946,
+ "▁gets": 4947,
+ "▁nu": 4948,
+ "▁/*": 4949,
+ "ober": 4950,
+ "fin": 4951,
+ "▁nella": 4952,
+ "▁become": 4953,
+ "▁``": 4954,
+ "▁history": 4955,
+ "▁Sol": 4956,
+ "▁Rad": 4957,
+ "▁terms": 4958,
+ "▁events": 4959,
+ "lymp": 4960,
+ ")))": 4961,
+ "рова": 4962,
+ "▁absol": 4963,
+ "▁soft": 4964,
+ "links": 4965,
+ "▁hope": 4966,
+ "▁subject": 4967,
+ "\"),": 4968,
+ "▁creating": 4969,
+ "▁}\r": 4970,
+ "▁Sk": 4971,
+ "▁flow": 4972,
+ "▁Ра": 4973,
+ "▁assert": 4974,
+ "zet": 4975,
+ "▁Frank": 4976,
+ "sa": 4977,
+ "▁distribution": 4978,
+ "cu": 4979,
+ "band": 4980,
+ "izz": 4981,
+ "▁job": 4982,
+ "iner": 4983,
+ "struct": 4984,
+ "ák": 4985,
+ "TO": 4986,
+ "auf": 4987,
+ "▁extends": 4988,
+ "▁Gra": 4989,
+ "display": 4990,
+ "▁signific": 4991,
+ "oney": 4992,
+ "source": 4993,
+ "microsoft": 4994,
+ "inder": 4995,
+ "▁quick": 4996,
+ "▁wonder": 4997,
+ "Instance": 4998,
+ "elles": 4999,
+ "ème": 5000,
+ "▁company": 5001,
+ "uß": 5002,
+ ".}": 5003,
+ "▁separate": 5004,
+ "UM": 5005,
+ "HERE": 5006,
+ "▁writing": 5007,
+ "itution": 5008,
+ "▁Gesch": 5009,
+ "мя": 5010,
+ "▁James": 5011,
+ "▁DE": 5012,
+ "▁Spe": 5013,
+ "process": 5014,
+ "Str": 5015,
+ "▁sym": 5016,
+ "▁ao": 5017,
+ "▁wy": 5018,
+ "▁anyone": 5019,
+ "▁Up": 5020,
+ "useum": 5021,
+ "aron": 5022,
+ "▁definition": 5023,
+ "▁`$": 5024,
+ "▁fav": 5025,
+ "ributes": 5026,
+ "▁Ré": 5027,
+ "ografia": 5028,
+ "element": 5029,
+ "cap": 5030,
+ "pat": 5031,
+ "▁Bra": 5032,
+ ")(": 5033,
+ "▁according": 5034,
+ "ге": 5035,
+ "▁pie": 5036,
+ "eli": 5037,
+ "}\"": 5038,
+ "▁activ": 5039,
+ "▁stop": 5040,
+ "patch": 5041,
+ "ті": 5042,
+ "▁Jose": 5043,
+ "End": 5044,
+ "▁prze": 5045,
+ "▁age": 5046,
+ "itory": 5047,
+ "▁PHP": 5048,
+ "agement": 5049,
+ "▁`.": 5050,
+ "▁pretty": 5051,
+ "▁recomm": 5052,
+ "▁sud": 5053,
+ "▁requ": 5054,
+ "▁обла": 5055,
+ "atives": 5056,
+ "▁High": 5057,
+ "áz": 5058,
+ "oul": 5059,
+ "rest": 5060,
+ "▁Ter": 5061,
+ "under": 5062,
+ "thern": 5063,
+ "center": 5064,
+ "▁ur": 5065,
+ "lat": 5066,
+ "▁interface": 5067,
+ "▁ин": 5068,
+ "▁whose": 5069,
+ "icas": 5070,
+ "amen": 5071,
+ "Filter": 5072,
+ "▁station": 5073,
+ "Page": 5074,
+ "▁arm": 5075,
+ "▁eyes": 5076,
+ "▁рай": 5077,
+ "▁seu": 5078,
+ "oli": 5079,
+ "win": 5080,
+ "lik": 5081,
+ "gex": 5082,
+ "chan": 5083,
+ "idence": 5084,
+ "args": 5085,
+ "aking": 5086,
+ "▁Google": 5087,
+ "▁Stud": 5088,
+ "▁ho": 5089,
+ "торы": 5090,
+ "Su": 5091,
+ "▁automat": 5092,
+ "ême": 5093,
+ "▁cy": 5094,
+ "lor": 5095,
+ "▁stack": 5096,
+ "▁SELECT": 5097,
+ "AF": 5098,
+ "▁>>": 5099,
+ "▁compet": 5100,
+ "▁pair": 5101,
+ "▁inglés": 5102,
+ "Response": 5103,
+ "▁Fig": 5104,
+ "grad": 5105,
+ "▁documentation": 5106,
+ "▁cant": 5107,
+ "▁appreci": 5108,
+ "ån": 5109,
+ "▁learn": 5110,
+ "▁indep": 5111,
+ "▁pal": 5112,
+ "package": 5113,
+ "ares": 5114,
+ "▁Berlin": 5115,
+ "бли": 5116,
+ "reich": 5117,
+ "ён": 5118,
+ "▁satisf": 5119,
+ "▁region": 5120,
+ "▁friend": 5121,
+ "▁George": 5122,
+ "▁Во": 5123,
+ "▁\"\"": 5124,
+ "▁desde": 5125,
+ "Factory": 5126,
+ "▁County": 5127,
+ "ouv": 5128,
+ "▁‘": 5129,
+ "▁installed": 5130,
+ "▁wanted": 5131,
+ "▁Python": 5132,
+ "▁interpre": 5133,
+ "▁included": 5134,
+ "▁((": 5135,
+ "▁altern": 5136,
+ "isto": 5137,
+ "gn": 5138,
+ "▁border": 5139,
+ "pdf": 5140,
+ "▁dup": 5141,
+ "▁download": 5142,
+ "just": 5143,
+ "▁members": 5144,
+ "child": 5145,
+ "▁pay": 5146,
+ "▁cer": 5147,
+ "▁looked": 5148,
+ "▁correctly": 5149,
+ "auth": 5150,
+ "▁стан": 5151,
+ "▁esp": 5152,
+ "▁desc": 5153,
+ "eben": 5154,
+ "▁questions": 5155,
+ "mal": 5156,
+ "▁abgerufen": 5157,
+ "▁Band": 5158,
+ "▁[]": 5159,
+ "Base": 5160,
+ "▁ris": 5161,
+ "▁fort": 5162,
+ "▁Id": 5163,
+ "▁various": 5164,
+ "▁League": 5165,
+ "▁Hand": 5166,
+ "▁Type": 5167,
+ "irl": 5168,
+ "▁Fe": 5169,
+ "ién": 5170,
+ "itter": 5171,
+ "▁fast": 5172,
+ "sta": 5173,
+ "▁except": 5174,
+ "icz": 5175,
+ "▁French": 5176,
+ "▁environment": 5177,
+ "▁conse": 5178,
+ "ур": 5179,
+ "ого": 5180,
+ "▁necessary": 5181,
+ "target": 5182,
+ "▁reading": 5183,
+ "home": 5184,
+ "zeich": 5185,
+ "▁equal": 5186,
+ "▁più": 5187,
+ "▁prem": 5188,
+ "▁difficult": 5189,
+ "▁unit": 5190,
+ "▁replace": 5191,
+ "▁heart": 5192,
+ "▁talk": 5193,
+ "AM": 5194,
+ "▁RE": 5195,
+ "▁Person": 5196,
+ "endency": 5197,
+ "▁imm": 5198,
+ "▁human": 5199,
+ "dn": 5200,
+ "▁Kir": 5201,
+ "▁Aut": 5202,
+ "known": 5203,
+ "▁frequ": 5204,
+ "system": 5205,
+ "лав": 5206,
+ "▁Sz": 5207,
+ "▁Gal": 5208,
+ "ное": 5209,
+ "selves": 5210,
+ "rightarrow": 5211,
+ "▁Са": 5212,
+ "=\"@": 5213,
+ "▁building": 5214,
+ "import": 5215,
+ "▁fam": 5216,
+ "▁delete": 5217,
+ "aire": 5218,
+ "mary": 5219,
+ "▁fund": 5220,
+ "▁particip": 5221,
+ "▁syn": 5222,
+ "sin": 5223,
+ "▁lower": 5224,
+ "▁zero": 5225,
+ "▁sec": 5226,
+ "▁fra": 5227,
+ "Point": 5228,
+ "▁failed": 5229,
+ "iento": 5230,
+ "cup": 5231,
+ "▁slow": 5232,
+ "▁nation": 5233,
+ "ähr": 5234,
+ "▁info": 5235,
+ "▁Public": 5236,
+ "▁decla": 5237,
+ "▁Та": 5238,
+ "▁sold": 5239,
+ "▁Rem": 5240,
+ "▁Phil": 5241,
+ "стра": 5242,
+ "▁mehr": 5243,
+ "▁Work": 5244,
+ "▁Nord": 5245,
+ "▁fait": 5246,
+ "▁gew": 5247,
+ "println": 5248,
+ "obile": 5249,
+ "▁Kon": 5250,
+ "▁assume": 5251,
+ "lands": 5252,
+ "▁amount": 5253,
+ "▁Press": 5254,
+ "ých": 5255,
+ "▁maxim": 5256,
+ "▁Champion": 5257,
+ "library": 5258,
+ "añ": 5259,
+ "▁Wal": 5260,
+ "Comm": 5261,
+ "]]": 5262,
+ "▁zw": 5263,
+ "▁social": 5264,
+ "LI": 5265,
+ "▁Unter": 5266,
+ "vor": 5267,
+ "Delta": 5268,
+ "email": 5269,
+ "raint": 5270,
+ "oni": 5271,
+ "▁alt": 5272,
+ "▁né": 5273,
+ "ция": 5274,
+ "ography": 5275,
+ "▁mentioned": 5276,
+ "▁<=": 5277,
+ "▁cette": 5278,
+ "▁currently": 5279,
+ "vare": 5280,
+ "izing": 5281,
+ "▁Def": 5282,
+ "icol": 5283,
+ "ünd": 5284,
+ "▁configuration": 5285,
+ "estig": 5286,
+ "III": 5287,
+ "lam": 5288,
+ "ière": 5289,
+ "▁Ear": 5290,
+ "▁tu": 5291,
+ "Ent": 5292,
+ "▁Using": 5293,
+ "▁ком": 5294,
+ "cie": 5295,
+ "▁proof": 5296,
+ "▁invol": 5297,
+ "▁History": 5298,
+ "><": 5299,
+ "▁AND": 5300,
+ "avy": 5301,
+ "▁relations": 5302,
+ "${": 5303,
+ "▁comes": 5304,
+ "▁direction": 5305,
+ "▁June": 5306,
+ "▁Way": 5307,
+ "Component": 5308,
+ "ech": 5309,
+ "▁Peter": 5310,
+ "sg": 5311,
+ "▁stra": 5312,
+ "uct": 5313,
+ "▁implementation": 5314,
+ "attle": 5315,
+ "▁cz": 5316,
+ "plot": 5317,
+ "▁played": 5318,
+ "\">": 5319,
+ "▁five": 5320,
+ "▁coll": 5321,
+ "▁Charles": 5322,
+ "Tra": 5323,
+ "▁suo": 5324,
+ "files": 5325,
+ "entes": 5326,
+ "response": 5327,
+ "How": 5328,
+ "▁Soci": 5329,
+ "▁ign": 5330,
+ "▁led": 5331,
+ "▁German": 5332,
+ "udo": 5333,
+ "▁Du": 5334,
+ "▁tim": 5335,
+ "ounter": 5336,
+ "▁attack": 5337,
+ "uri": 5338,
+ "▁ар": 5339,
+ "esse": 5340,
+ "ivil": 5341,
+ "▁Ju": 5342,
+ "▁vel": 5343,
+ "matrix": 5344,
+ "▁Mat": 5345,
+ "gio": 5346,
+ "▁Zeit": 5347,
+ "VER": 5348,
+ "has": 5349,
+ "Connection": 5350,
+ "▁ihr": 5351,
+ "▁attribute": 5352,
+ "▁discuss": 5353,
+ "▁domain": 5354,
+ "bind": 5355,
+ "▁Sec": 5356,
+ "rik": 5357,
+ "close": 5358,
+ "gin": 5359,
+ "▁love": 5360,
+ "anto": 5361,
+ "gent": 5362,
+ "aba": 5363,
+ "jango": 5364,
+ "bi": 5365,
+ "▁obser": 5366,
+ "itting": 5367,
+ "▁ру": 5368,
+ "}=": 5369,
+ "agen": 5370,
+ "BC": 5371,
+ "some": 5372,
+ "▁Bu": 5373,
+ "▁soci": 5374,
+ "▁individual": 5375,
+ "▁deal": 5376,
+ "▁outside": 5377,
+ "rio": 5378,
+ "Exec": 5379,
+ "andid": 5380,
+ "▁business": 5381,
+ "▁tempor": 5382,
+ "▁Tur": 5383,
+ "▁(!": 5384,
+ "riter": 5385,
+ "▁google": 5386,
+ "]:": 5387,
+ "itte": 5388,
+ "xi": 5389,
+ "▁Па": 5390,
+ "hol": 5391,
+ "нь": 5392,
+ "ring": 5393,
+ "▁sul": 5394,
+ "ности": 5395,
+ "_.": 5396,
+ "gar": 5397,
+ "Task": 5398,
+ "▁Check": 5399,
+ "▁modern": 5400,
+ "▁win": 5401,
+ "uster": 5402,
+ "han": 5403,
+ "formation": 5404,
+ "void": 5405,
+ "▁фи": 5406,
+ "▁useful": 5407,
+ "▁England": 5408,
+ "los": 5409,
+ "etime": 5410,
+ "eur": 5411,
+ "▁unique": 5412,
+ "▁как": 5413,
+ "ying": 5414,
+ "obj": 5415,
+ "uid": 5416,
+ "▁windows": 5417,
+ "▁distance": 5418,
+ "▁nombre": 5419,
+ "ія": 5420,
+ "ocus": 5421,
+ "ahn": 5422,
+ "ierte": 5423,
+ "▁dar": 5424,
+ "SI": 5425,
+ "long": 5426,
+ "asta": 5427,
+ "iven": 5428,
+ "▁told": 5429,
+ "▁Gru": 5430,
+ "foo": 5431,
+ "▁calling": 5432,
+ "iembre": 5433,
+ "▁future": 5434,
+ "près": 5435,
+ "leep": 5436,
+ "avigation": 5437,
+ "POST": 5438,
+ "▁described": 5439,
+ "▁noch": 5440,
+ "unit": 5441,
+ "allen": 5442,
+ "▁branch": 5443,
+ "fa": 5444,
+ "▁fill": 5445,
+ "▁obj": 5446,
+ "▁tree": 5447,
+ "▁wurden": 5448,
+ "▁Liter": 5449,
+ "rot": 5450,
+ "split": 5451,
+ "emein": 5452,
+ "module": 5453,
+ "CA": 5454,
+ "▁operator": 5455,
+ "▁wrote": 5456,
+ "▁Jack": 5457,
+ "ologie": 5458,
+ "▁Ant": 5459,
+ "тер": 5460,
+ "stream": 5461,
+ "▁Que": 5462,
+ "epsilon": 5463,
+ "non": 5464,
+ "stein": 5465,
+ "▁simpl": 5466,
+ "pub": 5467,
+ "▁July": 5468,
+ "▁nature": 5469,
+ "▁Database": 5470,
+ "ól": 5471,
+ "ним": 5472,
+ "▁VI": 5473,
+ "être": 5474,
+ "iles": 5475,
+ "▁wel": 5476,
+ "'),": 5477,
+ "▁mut": 5478,
+ "location": 5479,
+ "▁therefore": 5480,
+ "elli": 5481,
+ "▁І": 5482,
+ "né": 5483,
+ "▁ав": 5484,
+ "ledge": 5485,
+ "▁conver": 5486,
+ "ím": 5487,
+ "▁XV": 5488,
+ "vider": 5489,
+ "▁January": 5490,
+ "▁usually": 5491,
+ "▁released": 5492,
+ "▁Mi": 5493,
+ "Head": 5494,
+ "iller": 5495,
+ "▁jan": 5496,
+ "▁letter": 5497,
+ "produ": 5498,
+ "rd": 5499,
+ "▁Cam": 5500,
+ ",'": 5501,
+ "▁Ц": 5502,
+ "▁push": 5503,
+ "update": 5504,
+ "▁maybe": 5505,
+ "Http": 5506,
+ "@\"": 5507,
+ "мер": 5508,
+ "service": 5509,
+ "parse": 5510,
+ "▁dass": 5511,
+ "ên": 5512,
+ ")\"": 5513,
+ "more": 5514,
+ "/*": 5515,
+ "▁mas": 5516,
+ "▁likely": 5517,
+ "▁material": 5518,
+ "▁[[": 5519,
+ "▁longer": 5520,
+ "bal": 5521,
+ "▁Archiv": 5522,
+ "igt": 5523,
+ "▁egy": 5524,
+ "idge": 5525,
+ "igu": 5526,
+ "conf": 5527,
+ "▁inc": 5528,
+ "consulté": 5529,
+ "▁mai": 5530,
+ "Work": 5531,
+ "▁гра": 5532,
+ "▁October": 5533,
+ "▁global": 5534,
+ "▁sel": 5535,
+ "▁municip": 5536,
+ "▁viol": 5537,
+ "▁Does": 5538,
+ "▁\\[": 5539,
+ "ском": 5540,
+ "▁compos": 5541,
+ "бря": 5542,
+ "вя": 5543,
+ "▁respons": 5544,
+ "▁considered": 5545,
+ "▁Japan": 5546,
+ "pes": 5547,
+ "osto": 5548,
+ "▁milit": 5549,
+ "SP": 5550,
+ "сы": 5551,
+ "attr": 5552,
+ "cil": 5553,
+ "irectory": 5554,
+ "aving": 5555,
+ "▁Del": 5556,
+ "▁prevent": 5557,
+ "idade": 5558,
+ "git": 5559,
+ "iform": 5560,
+ "outer": 5561,
+ "inct": 5562,
+ "level": 5563,
+ "atever": 5564,
+ "▁repe": 5565,
+ "▁exc": 5566,
+ "дар": 5567,
+ "Style": 5568,
+ "▁Thomas": 5569,
+ "eline": 5570,
+ "▁ж": 5571,
+ "untime": 5572,
+ "▁larg": 5573,
+ "True": 5574,
+ ".*": 5575,
+ "creen": 5576,
+ "yles": 5577,
+ "▁transl": 5578,
+ "▁Со": 5579,
+ "ensions": 5580,
+ "äl": 5581,
+ "isse": 5582,
+ "▁volt": 5583,
+ "cially": 5584,
+ "nik": 5585,
+ ".]": 5586,
+ "▁Stadt": 5587,
+ "мы": 5588,
+ "fill": 5589,
+ "lov": 5590,
+ "▁\"/": 5591,
+ "Sp": 5592,
+ "▁Air": 5593,
+ "Call": 5594,
+ "▁nur": 5595,
+ "Check": 5596,
+ "ience": 5597,
+ "efined": 5598,
+ "▁вре": 5599,
+ "ło": 5600,
+ "dz": 5601,
+ "▁ор": 5602,
+ "iker": 5603,
+ "owa": 5604,
+ "ович": 5605,
+ "ré": 5606,
+ "OL": 5607,
+ "▁linear": 5608,
+ "▁export": 5609,
+ "ahr": 5610,
+ "icial": 5611,
+ "Rep": 5612,
+ "▁natural": 5613,
+ "▁cop": 5614,
+ "▁})": 5615,
+ "ções": 5616,
+ "zz": 5617,
+ "What": 5618,
+ "▁House": 5619,
+ "Ref": 5620,
+ "inger": 5621,
+ "▁taking": 5622,
+ "ně": 5623,
+ "▁Einz": 5624,
+ "▁dam": 5625,
+ "▁issues": 5626,
+ "Builder": 5627,
+ "edit": 5628,
+ "▁prz": 5629,
+ "password": 5630,
+ "Gener": 5631,
+ "rim": 5632,
+ "▁parts": 5633,
+ "---": 5634,
+ "iginal": 5635,
+ "▁Sci": 5636,
+ "▁mother": 5637,
+ "rea": 5638,
+ "▁container": 5639,
+ "дя": 5640,
+ "▁IP": 5641,
+ "▁none": 5642,
+ "▁followed": 5643,
+ "▁ple": 5644,
+ "▁measure": 5645,
+ "▁tout": 5646,
+ "Ext": 5647,
+ "▁TV": 5648,
+ "▁explain": 5649,
+ "▁paper": 5650,
+ "сті": 5651,
+ "ws": 5652,
+ "Wik": 5653,
+ "▁mm": 5654,
+ "▁Norm": 5655,
+ "▁Server": 5656,
+ "font": 5657,
+ "ecause": 5658,
+ "TR": 5659,
+ "▁би": 5660,
+ "La": 5661,
+ "▁ens": 5662,
+ "▁retr": 5663,
+ "▁Sil": 5664,
+ "▁sequence": 5665,
+ "arc": 5666,
+ "IV": 5667,
+ "zá": 5668,
+ "▁Android": 5669,
+ "▁Super": 5670,
+ "▁roz": 5671,
+ "ovie": 5672,
+ "Om": 5673,
+ "▁Well": 5674,
+ "make": 5675,
+ "orph": 5676,
+ "▁Jer": 5677,
+ "▁Ros": 5678,
+ "reference": 5679,
+ "▁features": 5680,
+ "▁Ger": 5681,
+ "▁Leg": 5682,
+ "▁late": 5683,
+ "▁additional": 5684,
+ "▁flo": 5685,
+ "▁его": 5686,
+ "▁algorithm": 5687,
+ "BA": 5688,
+ "kar": 5689,
+ "IP": 5690,
+ "]);": 5691,
+ "▁appears": 5692,
+ "yw": 5693,
+ "▁temp": 5694,
+ "▁aussi": 5695,
+ "method": 5696,
+ "▁pet": 5697,
+ "strap": 5698,
+ "arning": 5699,
+ "▁cut": 5700,
+ "▁Sa": 5701,
+ "▁track": 5702,
+ "▁employ": 5703,
+ "▁inde": 5704,
+ "rav": 5705,
+ "▁generate": 5706,
+ "bes": 5707,
+ "arts": 5708,
+ "Status": 5709,
+ "uge": 5710,
+ "alis": 5711,
+ "▁override": 5712,
+ "▁fi": 5713,
+ "▁lost": 5714,
+ "oted": 5715,
+ "▁room": 5716,
+ "▁calls": 5717,
+ "▁consist": 5718,
+ "рен": 5719,
+ "▁village": 5720,
+ "dist": 5721,
+ "▁techn": 5722,
+ "enza": 5723,
+ "▁роз": 5724,
+ "▁Catalog": 5725,
+ "▁becom": 5726,
+ "rows": 5727,
+ "▁Nel": 5728,
+ "comple": 5729,
+ "▁premi": 5730,
+ "▁rot": 5731,
+ "▁Weblinks": 5732,
+ "▁football": 5733,
+ "▁compar": 5734,
+ "▁live": 5735,
+ "ких": 5736,
+ "▁equival": 5737,
+ "cape": 5738,
+ "▁Gen": 5739,
+ "nder": 5740,
+ "▁Vis": 5741,
+ "▁behind": 5742,
+ "gers": 5743,
+ "voke": 5744,
+ "▁media": 5745,
+ "EX": 5746,
+ "that": 5747,
+ "▁sono": 5748,
+ "▁mysql": 5749,
+ "ev": 5750,
+ "▁rule": 5751,
+ "дов": 5752,
+ "acc": 5753,
+ "▁WHERE": 5754,
+ "ене": 5755,
+ "Grid": 5756,
+ "▁jul": 5757,
+ "▁mort": 5758,
+ "▁generated": 5759,
+ "encia": 5760,
+ "acter": 5761,
+ "clud": 5762,
+ "▁scen": 5763,
+ "▁closed": 5764,
+ "▁Michael": 5765,
+ "▁mount": 5766,
+ ")$,": 5767,
+ "▁drop": 5768,
+ "▁combin": 5769,
+ "tocol": 5770,
+ "▁goes": 5771,
+ "▁geb": 5772,
+ "MD": 5773,
+ "▁Anton": 5774,
+ "▁$(\"": 5775,
+ "Tem": 5776,
+ "▁ca": 5777,
+ "▁instru": 5778,
+ "eds": 5779,
+ "▁tool": 5780,
+ "mys": 5781,
+ "▁route": 5782,
+ "\"))": 5783,
+ "пре": 5784,
+ "▁float": 5785,
+ "▁services": 5786,
+ "▁чи": 5787,
+ "кі": 5788,
+ "embly": 5789,
+ "aker": 5790,
+ "▁Son": 5791,
+ "▁Math": 5792,
+ "asse": 5793,
+ "ously": 5794,
+ "lications": 5795,
+ "▁ru": 5796,
+ "▁що": 5797,
+ "▁Const": 5798,
+ "▁immedi": 5799,
+ "FO": 5800,
+ "oro": 5801,
+ "▁production": 5802,
+ "rei": 5803,
+ "▁jquery": 5804,
+ "annt": 5805,
+ "▁While": 5806,
+ "▁sn": 5807,
+ "▁годи": 5808,
+ "Format": 5809,
+ "▁star": 5810,
+ "▁Sen": 5811,
+ "▁ko": 5812,
+ "NAME": 5813,
+ "▁prés": 5814,
+ "cha": 5815,
+ "what": 5816,
+ "omin": 5817,
+ "endant": 5818,
+ "hy": 5819,
+ "▁observ": 5820,
+ "▁prefer": 5821,
+ "ун": 5822,
+ "▁constructor": 5823,
+ "bs": 5824,
+ "▁mac": 5825,
+ "▁Bre": 5826,
+ "▁Instit": 5827,
+ "▁story": 5828,
+ "▁symbol": 5829,
+ "eles": 5830,
+ "ße": 5831,
+ "asing": 5832,
+ "▁west": 5833,
+ "ians": 5834,
+ "▁master": 5835,
+ "ез": 5836,
+ "▁ways": 5837,
+ "bm": 5838,
+ "▁pick": 5839,
+ "▁depart": 5840,
+ "Back": 5841,
+ "enk": 5842,
+ "lipse": 5843,
+ "▁math": 5844,
+ "▁Francis": 5845,
+ "▁December": 5846,
+ "fs": 5847,
+ "rum": 5848,
+ "▁development": 5849,
+ "LT": 5850,
+ "ernel": 5851,
+ "▁True": 5852,
+ "▁More": 5853,
+ "rangle": 5854,
+ "▁conditions": 5855,
+ "Options": 5856,
+ "▁gli": 5857,
+ "▁operation": 5858,
+ "ék": 5859,
+ "acht": 5860,
+ "ights": 5861,
+ "▁mist": 5862,
+ "anda": 5863,
+ "▁energy": 5864,
+ "▁же": 5865,
+ "▁women": 5866,
+ "akt": 5867,
+ "▁CH": 5868,
+ "gebra": 5869,
+ "▁meet": 5870,
+ "iu": 5871,
+ "well": 5872,
+ "öl": 5873,
+ "▁government": 5874,
+ "▁Jos": 5875,
+ "ieg": 5876,
+ "▁syntax": 5877,
+ "fix": 5878,
+ "▁Pet": 5879,
+ "jquery": 5880,
+ "▁card": 5881,
+ "▁principal": 5882,
+ "▁dru": 5883,
+ "▁territ": 5884,
+ "▁пов": 5885,
+ "▁SS": 5886,
+ "рии": 5887,
+ "tres": 5888,
+ "agne": 5889,
+ "lying": 5890,
+ "tilde": 5891,
+ "bern": 5892,
+ "enter": 5893,
+ "Per": 5894,
+ "▁somet": 5895,
+ "Load": 5896,
+ "lice": 5897,
+ "▁sous": 5898,
+ "▁Louis": 5899,
+ "▁logic": 5900,
+ "▁Other": 5901,
+ "▁cir": 5902,
+ "év": 5903,
+ "chron": 5904,
+ "▁han": 5905,
+ "▁margin": 5906,
+ "Window": 5907,
+ "ères": 5908,
+ "nych": 5909,
+ "push": 5910,
+ "bolds": 5911,
+ "▁layout": 5912,
+ "▁[`": 5913,
+ "Char": 5914,
+ "▁Cap": 5915,
+ "boldsymbol": 5916,
+ "▁Roman": 5917,
+ "▁Max": 5918,
+ ":(": 5919,
+ "▁Code": 5920,
+ "ising": 5921,
+ "▁states": 5922,
+ "▁existing": 5923,
+ "support": 5924,
+ "▁research": 5925,
+ "licate": 5926,
+ "vari": 5927,
+ "▁bij": 5928,
+ "▁appe": 5929,
+ "▁happens": 5930,
+ "\\\"": 5931,
+ "▁concern": 5932,
+ "west": 5933,
+ "▁saying": 5934,
+ "pid": 5935,
+ "▁recogn": 5936,
+ "▁Het": 5937,
+ "Child": 5938,
+ "▁cs": 5939,
+ "\\,": 5940,
+ "▁clean": 5941,
+ "lections": 5942,
+ "access": 5943,
+ "ву": 5944,
+ "про": 5945,
+ "acity": 5946,
+ "▁Off": 5947,
+ "▁easily": 5948,
+ "èque": 5949,
+ "▁jako": 5950,
+ "▁iz": 5951,
+ "▁Ha": 5952,
+ "▁Det": 5953,
+ "▁forma": 5954,
+ "sche": 5955,
+ "swers": 5956,
+ "▁offer": 5957,
+ "quired": 5958,
+ "Users": 5959,
+ "▁subst": 5960,
+ ">(": 5961,
+ "▁ground": 5962,
+ "unn": 5963,
+ "rod": 5964,
+ "spe": 5965,
+ "ursor": 5966,
+ "▁leave": 5967,
+ "erk": 5968,
+ "▁tal": 5969,
+ "▁bottom": 5970,
+ "IO": 5971,
+ "▁popular": 5972,
+ "igo": 5973,
+ "▁Time": 5974,
+ "values": 5975,
+ "▁Loc": 5976,
+ "▁Club": 5977,
+ "▁anche": 5978,
+ "iał": 5979,
+ "ії": 5980,
+ "Omega": 5981,
+ "▁located": 5982,
+ "Url": 5983,
+ "▁Esp": 5984,
+ "лы": 5985,
+ "ць": 5986,
+ "ulate": 5987,
+ "▁join": 5988,
+ "aves": 5989,
+ "vet": 5990,
+ "lio": 5991,
+ "remove": 5992,
+ "▁token": 5993,
+ "▁optim": 5994,
+ "▁claim": 5995,
+ "ological": 5996,
+ "▁css": 5997,
+ "▁although": 5998,
+ "▁priv": 5999,
+ "▁Ba": 6000,
+ "ül": 6001,
+ "entication": 6002,
+ "▁ven": 6003,
+ "Server": 6004,
+ "▁Cong": 6005,
+ "NET": 6006,
+ "CON": 6007,
+ "dt": 6008,
+ "perties": 6009,
+ "▁epis": 6010,
+ "wikipedia": 6011,
+ "▁engine": 6012,
+ "▁fer": 6013,
+ "getElement": 6014,
+ "▁Cla": 6015,
+ "ří": 6016,
+ "▁rom": 6017,
+ "varepsilon": 6018,
+ "▁prime": 6019,
+ "istry": 6020,
+ "pected": 6021,
+ "orage": 6022,
+ "▁touch": 6023,
+ "▁['": 6024,
+ "▁dan": 6025,
+ "Em": 6026,
+ "aciones": 6027,
+ "Can": 6028,
+ "▁whom": 6029,
+ "▁behavior": 6030,
+ "▁strings": 6031,
+ "▁Europ": 6032,
+ "▁Rom": 6033,
+ "circ": 6034,
+ "▁pun": 6035,
+ "▁register": 6036,
+ "buntu": 6037,
+ "rain": 6038,
+ "Ob": 6039,
+ "TA": 6040,
+ "▁sometimes": 6041,
+ "▁ment": 6042,
+ "▁integer": 6043,
+ "▁Jac": 6044,
+ "legate": 6045,
+ "othing": 6046,
+ "▁sound": 6047,
+ "laces": 6048,
+ "▁Ба": 6049,
+ "rb": 6050,
+ "di": 6051,
+ "ления": 6052,
+ "▁themselves": 6053,
+ "▁Black": 6054,
+ "▁settings": 6055,
+ "▁norm": 6056,
+ "▁runs": 6057,
+ "▁NOT": 6058,
+ "KE": 6059,
+ "▁perhaps": 6060,
+ "▁Я": 6061,
+ "▁mol": 6062,
+ "▁ans": 6063,
+ "atre": 6064,
+ "▁Dies": 6065,
+ "Token": 6066,
+ "anie": 6067,
+ "▁allowed": 6068,
+ "Range": 6069,
+ "▁Gro": 6070,
+ "via": 6071,
+ "utorial": 6072,
+ "ensor": 6073,
+ "estival": 6074,
+ ");\r": 6075,
+ "краї": 6076,
+ "▁turned": 6077,
+ "scope": 6078,
+ "▁bien": 6079,
+ "=$": 6080,
+ "▁extension": 6081,
+ "atore": 6082,
+ "▁Ро": 6083,
+ "▁specify": 6084,
+ "edu": 6085,
+ "Datos": 6086,
+ "▁stored": 6087,
+ "▁parse": 6088,
+ "▁answers": 6089,
+ "ills": 6090,
+ "▁heard": 6091,
+ "lu": 6092,
+ "▁THE": 6093,
+ "▁gén": 6094,
+ "▁ful": 6095,
+ "ez": 6096,
+ "▁Prem": 6097,
+ "then": 6098,
+ "dp": 6099,
+ "ського": 6100,
+ "▁Si": 6101,
+ "ço": 6102,
+ "Edit": 6103,
+ "ків": 6104,
+ "▁Ли": 6105,
+ "▁Sing": 6106,
+ "▁categ": 6107,
+ "Equ": 6108,
+ "▁guer": 6109,
+ "Width": 6110,
+ "▁Christian": 6111,
+ "stat": 6112,
+ "Write": 6113,
+ "▁woman": 6114,
+ "wood": 6115,
+ "Vis": 6116,
+ "раз": 6117,
+ "▁$$\\": 6118,
+ "oder": 6119,
+ "▁bool": 6120,
+ "▁international": 6121,
+ "ность": 6122,
+ "▁Richard": 6123,
+ "▁addition": 6124,
+ "▁Music": 6125,
+ "▁aber": 6126,
+ "tó": 6127,
+ "▁hier": 6128,
+ "ugh": 6129,
+ "▁pob": 6130,
+ "▁tables": 6131,
+ "Do": 6132,
+ "▁higher": 6133,
+ "psi": 6134,
+ "rá": 6135,
+ "▁active": 6136,
+ "▁Table": 6137,
+ "ње": 6138,
+ "▁description": 6139,
+ "▁seemed": 6140,
+ "íst": 6141,
+ "▁myself": 6142,
+ "▁menu": 6143,
+ "del": 6144,
+ "▁ž": 6145,
+ "ele": 6146,
+ "Aut": 6147,
+ "▁гру": 6148,
+ "mut": 6149,
+ "oon": 6150,
+ "asc": 6151,
+ "bug": 6152,
+ "▁moved": 6153,
+ "CL": 6154,
+ "▁datas": 6155,
+ "SO": 6156,
+ "оло": 6157,
+ "▁Georg": 6158,
+ "▁reach": 6159,
+ ":\"": 6160,
+ "▁evalu": 6161,
+ "▁Hel": 6162,
+ "▁River": 6163,
+ "▁Ар": 6164,
+ "////": 6165,
+ "▁sets": 6166,
+ "▁Olymp": 6167,
+ "Adapter": 6168,
+ ".'": 6169,
+ "overn": 6170,
+ "▁Lord": 6171,
+ "!--": 6172,
+ "jpg": 6173,
+ "imento": 6174,
+ "▁Prof": 6175,
+ "▁achieve": 6176,
+ "}:": 6177,
+ "▁incor": 6178,
+ "▁onder": 6179,
+ "engl": 6180,
+ "ABLE": 6181,
+ "▁Mary": 6182,
+ "▁waren": 6183,
+ "lage": 6184,
+ "Dec": 6185,
+ "англ": 6186,
+ "encias": 6187,
+ "лей": 6188,
+ "▁Machine": 6189,
+ "▁Ан": 6190,
+ "uda": 6191,
+ "▁ś": 6192,
+ "▁XX": 6193,
+ "only": 6194,
+ "ление": 6195,
+ "▁también": 6196,
+ "nej": 6197,
+ "▁relative": 6198,
+ "▁hours": 6199,
+ "▁indeed": 6200,
+ "undo": 6201,
+ "ingu": 6202,
+ "area": 6203,
+ "▁Create": 6204,
+ "beit": 6205,
+ "▁removed": 6206,
+ "master": 6207,
+ "haus": 6208,
+ "▁Bern": 6209,
+ "▁speed": 6210,
+ "▁Bay": 6211,
+ "▁Att": 6212,
+ "▁None": 6213,
+ "application": 6214,
+ "üd": 6215,
+ "▁fit": 6216,
+ "▁Maria": 6217,
+ "▁nord": 6218,
+ "▁split": 6219,
+ "▁stru": 6220,
+ "▁official": 6221,
+ "▁execute": 6222,
+ "ouve": 6223,
+ "{{": 6224,
+ "▁Ap": 6225,
+ "▁ку": 6226,
+ "IL": 6227,
+ "▁^": 6228,
+ "dim": 6229,
+ "▁setup": 6230,
+ "ск": 6231,
+ "▁share": 6232,
+ "▁minutes": 6233,
+ "gle": 6234,
+ "oco": 6235,
+ "stell": 6236,
+ "▁Coun": 6237,
+ "▁temper": 6238,
+ "keit": 6239,
+ "ський": 6240,
+ "ao": 6241,
+ "▁Long": 6242,
+ "(&": 6243,
+ "кан": 6244,
+ "▁dens": 6245,
+ "But": 6246,
+ "XX": 6247,
+ "DATE": 6248,
+ "gan": 6249,
+ ".).": 6250,
+ "▁entry": 6251,
+ "install": 6252,
+ "▁зна": 6253,
+ "▁Som": 6254,
+ "Command": 6255,
+ "ßen": 6256,
+ "▁starting": 6257,
+ "▁sto": 6258,
+ "IG": 6259,
+ "▁minim": 6260,
+ "▁explicit": 6261,
+ "▁bytes": 6262,
+ "▁party": 6263,
+ "tober": 6264,
+ "▁Grand": 6265,
+ "▁Vor": 6266,
+ "▁leur": 6267,
+ "Document": 6268,
+ "erc": 6269,
+ "ensive": 6270,
+ "CP": 6271,
+ "env": 6272,
+ "▁arguments": 6273,
+ "▁Gran": 6274,
+ "arily": 6275,
+ "▁lin": 6276,
+ "tn": 6277,
+ "(-": 6278,
+ "geq": 6279,
+ "▁Famil": 6280,
+ "▁Бо": 6281,
+ "▁tour": 6282,
+ "▁nav": 6283,
+ "▁properly": 6284,
+ "▁Mrs": 6285,
+ "▁Mel": 6286,
+ "▁scale": 6287,
+ "astic": 6288,
+ "ds": 6289,
+ "▁Sir": 6290,
+ "▁Church": 6291,
+ "}^{\\": 6292,
+ "you": 6293,
+ "/.": 6294,
+ "So": 6295,
+ "▁brought": 6296,
+ "▁role": 6297,
+ "▁Sur": 6298,
+ "▁fond": 6299,
+ "▁ges": 6300,
+ "że": 6301,
+ "eten": 6302,
+ "▁était": 6303,
+ "SER": 6304,
+ "▁которы": 6305,
+ "▁equation": 6306,
+ "aspx": 6307,
+ "▁Afr": 6308,
+ "▁dit": 6309,
+ "empty": 6310,
+ "alement": 6311,
+ "wrap": 6312,
+ "▁Bet": 6313,
+ "▁collect": 6314,
+ "▁git": 6315,
+ "▁vie": 6316,
+ "▁..": 6317,
+ "рой": 6318,
+ "▁": 6319,
+ "▁educ": 6320,
+ "kl": 6321,
+ "ensis": 6322,
+ "▁OR": 6323,
+ "▁Hi": 6324,
+ "▁Cour": 6325,
+ "бы": 6326,
+ "cert": 6327,
+ "▁Ges": 6328,
+ "essor": 6329,
+ "Main": 6330,
+ "▁лю": 6331,
+ "cade": 6332,
+ "dot": 6333,
+ "augh": 6334,
+ "hib": 6335,
+ "▁automatically": 6336,
+ "▁spir": 6337,
+ "present": 6338,
+ "▁February": 6339,
+ "▁Elle": 6340,
+ "custom": 6341,
+ "▁proget": 6342,
+ "▁administr": 6343,
+ "AA": 6344,
+ "▁born": 6345,
+ "▁College": 6346,
+ "athol": 6347,
+ "`)": 6348,
+ "ierre": 6349,
+ "▁ran": 6350,
+ "▁profession": 6351,
+ "ogen": 6352,
+ "}_{\\": 6353,
+ "▁activity": 6354,
+ "▁scroll": 6355,
+ "▁prove": 6356,
+ "ibrary": 6357,
+ "eries": 6358,
+ "Read": 6359,
+ "year": 6360,
+ "▁lang": 6361,
+ "Det": 6362,
+ "▁knew": 6363,
+ "▁protected": 6364,
+ "▁wor": 6365,
+ "▁effic": 6366,
+ "▁rég": 6367,
+ "▁theory": 6368,
+ "▁published": 6369,
+ "real": 6370,
+ "▁Tour": 6371,
+ "▁durante": 6372,
+ "äs": 6373,
+ "▁positive": 6374,
+ "▁forward": 6375,
+ "▁Rel": 6376,
+ "{\"": 6377,
+ "park": 6378,
+ "▁Um": 6379,
+ "▁eer": 6380,
+ "enta": 6381,
+ "▁imag": 6382,
+ "ної": 6383,
+ "piel": 6384,
+ "▁jQuery": 6385,
+ "isme": 6386,
+ "chni": 6387,
+ "organ": 6388,
+ "▁args": 6389,
+ "oir": 6390,
+ "heim": 6391,
+ "rian": 6392,
+ "eless": 6393,
+ "uses": 6394,
+ "дин": 6395,
+ "ición": 6396,
+ "▁indust": 6397,
+ "▁wish": 6398,
+ "ány": 6399,
+ "oca": 6400,
+ "▁angular": 6401,
+ "ieved": 6402,
+ "▁occur": 6403,
+ "SELECT": 6404,
+ "onia": 6405,
+ "admin": 6406,
+ "▁Best": 6407,
+ "▁это": 6408,
+ "огра": 6409,
+ "▁loss": 6410,
+ "▁bal": 6411,
+ "▁Рос": 6412,
+ "▁career": 6413,
+ "▁пе": 6414,
+ "IX": 6415,
+ "▁fall": 6416,
+ "▁Rob": 6417,
+ "▁OP": 6418,
+ "ened": 6419,
+ "graphics": 6420,
+ "▁coming": 6421,
+ "Update": 6422,
+ "▁died": 6423,
+ "eden": 6424,
+ "▁abs": 6425,
+ "▁inner": 6426,
+ "▁trav": 6427,
+ "стоя": 6428,
+ "zą": 6429,
+ "ép": 6430,
+ "▁Group": 6431,
+ "▁cel": 6432,
+ "▁stuff": 6433,
+ "▁situation": 6434,
+ "▁${": 6435,
+ "acle": 6436,
+ "▁purpose": 6437,
+ "▁Fire": 6438,
+ "▁Oh": 6439,
+ "▁Second": 6440,
+ "▁upload": 6441,
+ "ostał": 6442,
+ "ющи": 6443,
+ "Auth": 6444,
+ "▁showing": 6445,
+ "▁completely": 6446,
+ "avel": 6447,
+ "bd": 6448,
+ "▁proced": 6449,
+ "▁Ö": 6450,
+ "control": 6451,
+ "▁thank": 6452,
+ "undred": 6453,
+ "▁tom": 6454,
+ "▁examples": 6455,
+ "▁remember": 6456,
+ "▁рабо": 6457,
+ "▁possib": 6458,
+ "▁detect": 6459,
+ "▁poor": 6460,
+ "▁Op": 6461,
+ "▁century": 6462,
+ "utter": 6463,
+ "▁login": 6464,
+ "unst": 6465,
+ "Output": 6466,
+ "▁otherwise": 6467,
+ "lan": 6468,
+ "тур": 6469,
+ "▁сов": 6470,
+ "▁groups": 6471,
+ "rip": 6472,
+ "▁shell": 6473,
+ "▁district": 6474,
+ "▁records": 6475,
+ "▁siè": 6476,
+ "fortun": 6477,
+ "enty": 6478,
+ "▁Tre": 6479,
+ "▁changing": 6480,
+ "след": 6481,
+ "aught": 6482,
+ "▁deep": 6483,
+ "subset": 6484,
+ "agy": 6485,
+ "endar": 6486,
+ "jax": 6487,
+ "OM": 6488,
+ "El": 6489,
+ "imate": 6490,
+ "ardo": 6491,
+ "▁plot": 6492,
+ "▁visit": 6493,
+ "▁bug": 6494,
+ "▁все": 6495,
+ "▁opened": 6496,
+ "▁repla": 6497,
+ "▁Henry": 6498,
+ "▁pp": 6499,
+ "bas": 6500,
+ "▁dark": 6501,
+ "▁Martin": 6502,
+ "▁resource": 6503,
+ "iling": 6504,
+ "▁watch": 6505,
+ "replace": 6506,
+ "▁release": 6507,
+ "Location": 6508,
+ "▁learning": 6509,
+ "menu": 6510,
+ "▁allows": 6511,
+ "ър": 6512,
+ "Length": 6513,
+ "▁whatever": 6514,
+ "▁pages": 6515,
+ "▁compiler": 6516,
+ "▁также": 6517,
+ "▁Pan": 6518,
+ "command": 6519,
+ "▁road": 6520,
+ "▁unless": 6521,
+ "`?": 6522,
+ "▁discover": 6523,
+ "▁он": 6524,
+ "}]": 6525,
+ "bour": 6526,
+ "▁Could": 6527,
+ "▁regex": 6528,
+ "▁ps": 6529,
+ "CD": 6530,
+ "из": 6531,
+ "▁wife": 6532,
+ "amenti": 6533,
+ "▁fair": 6534,
+ "▁DB": 6535,
+ "▁Cup": 6536,
+ "enen": 6537,
+ "ajax": 6538,
+ "othèque": 6539,
+ "▁seiner": 6540,
+ "icker": 6541,
+ "ám": 6542,
+ "exchange": 6543,
+ "oles": 6544,
+ "IF": 6545,
+ "▁До": 6546,
+ "ohn": 6547,
+ "▁grow": 6548,
+ "▁Thus": 6549,
+ "spec": 6550,
+ "▁hatte": 6551,
+ "#,": 6552,
+ "allel": 6553,
+ "▁rate": 6554,
+ "▁central": 6555,
+ "▁Van": 6556,
+ "iforn": 6557,
+ "Run": 6558,
+ "▁study": 6559,
+ "▁XML": 6560,
+ "▁Che": 6561,
+ "▁beaut": 6562,
+ "mid": 6563,
+ "▁advance": 6564,
+ "Ver": 6565,
+ "тя": 6566,
+ "▁hands": 6567,
+ "▁lay": 6568,
+ "▁š": 6569,
+ "▁OS": 6570,
+ "▁{}": 6571,
+ "Pre": 6572,
+ "▁Hall": 6573,
+ "imp": 6574,
+ "▁sun": 6575,
+ "▁steps": 6576,
+ "▁jud": 6577,
+ "qui": 6578,
+ "▁boot": 6579,
+ "▁%>": 6580,
+ "▁Ва": 6581,
+ "nost": 6582,
+ "▁nem": 6583,
+ "▁pen": 6584,
+ "Open": 6585,
+ "▁church": 6586,
+ "кон": 6587,
+ "▁average": 6588,
+ "▁comments": 6589,
+ "▁corresponding": 6590,
+ "levant": 6591,
+ "▁bed": 6592,
+ "▁meaning": 6593,
+ "Version": 6594,
+ "Link": 6595,
+ "bel": 6596,
+ "▁extract": 6597,
+ "ść": 6598,
+ "▁IV": 6599,
+ "▁Ir": 6600,
+ "▁computer": 6601,
+ "▁affect": 6602,
+ "▁Ста": 6603,
+ "AX": 6604,
+ "sort": 6605,
+ "▁species": 6606,
+ "▁Oper": 6607,
+ "▁hash": 6608,
+ "ches": 6609,
+ "▁Einzeln": 6610,
+ "▁keys": 6611,
+ "▁marzo": 6612,
+ "▁interpret": 6613,
+ "hood": 6614,
+ "▁coordin": 6615,
+ "ös": 6616,
+ "rage": 6617,
+ "etz": 6618,
+ "iza": 6619,
+ "дер": 6620,
+ "üt": 6621,
+ "^*": 6622,
+ "▁modify": 6623,
+ "▁termin": 6624,
+ "▁cred": 6625,
+ "zon": 6626,
+ "ную": 6627,
+ "▁mie": 6628,
+ "▁''": 6629,
+ "▁Mos": 6630,
+ "▁connected": 6631,
+ "NO": 6632,
+ "▁compile": 6633,
+ "▁\"\\": 6634,
+ "▁cat": 6635,
+ "fiddle": 6636,
+ "uta": 6637,
+ "Access": 6638,
+ "▁Sto": 6639,
+ "▁Bur": 6640,
+ "▁north": 6641,
+ "Gamma": 6642,
+ "▁alloc": 6643,
+ "Init": 6644,
+ "▁Link": 6645,
+ "ialize": 6646,
+ "Impl": 6647,
+ "oupe": 6648,
+ "ropri": 6649,
+ "▁Gold": 6650,
+ "▁solo": 6651,
+ "▁Dist": 6652,
+ ",-": 6653,
+ "nav": 6654,
+ "▁alert": 6655,
+ "esis": 6656,
+ "▁Os": 6657,
+ "///": 6658,
+ "▁feb": 6659,
+ "▁-->": 6660,
+ "foot": 6661,
+ "▁Fried": 6662,
+ "▁Einzelnach": 6663,
+ "▁rev": 6664,
+ "zeit": 6665,
+ "▁Stat": 6666,
+ "▁Seg": 6667,
+ "▁blo": 6668,
+ "wick": 6669,
+ "EL": 6670,
+ "caption": 6671,
+ "header": 6672,
+ "▁president": 6673,
+ "▁multip": 6674,
+ "▁Einzelnachweise": 6675,
+ "▁seine": 6676,
+ "?”": 6677,
+ "Function": 6678,
+ "▁Stand": 6679,
+ "▁Function": 6680,
+ "▁?>": 6681,
+ "▁Bill": 6682,
+ "▁spect": 6683,
+ "▁redirect": 6684,
+ "rupt": 6685,
+ "▁walk": 6686,
+ "вши": 6687,
+ "springframework": 6688,
+ "place": 6689,
+ "ého": 6690,
+ "Entity": 6691,
+ "▁Service": 6692,
+ "inte": 6693,
+ "▁training": 6694,
+ "▁(`": 6695,
+ "фор": 6696,
+ "▁кра": 6697,
+ "aur": 6698,
+ "▁fetch": 6699,
+ "▁†": 6700,
+ "▁même": 6701,
+ "▁('": 6702,
+ "atively": 6703,
+ "▁execut": 6704,
+ "äch": 6705,
+ "▁Catalogue": 6706,
+ "based": 6707,
+ "Attribute": 6708,
+ "▁spring": 6709,
+ "phone": 6710,
+ "тра": 6711,
+ "▁пи": 6712,
+ "тера": 6713,
+ "▁`\\": 6714,
+ "▁Od": 6715,
+ "One": 6716,
+ "send": 6717,
+ "bon": 6718,
+ "▁°": 6719,
+ "MO": 6720,
+ "▁asking": 6721,
+ "▁où": 6722,
+ "▁ingår": 6723,
+ "▁testing": 6724,
+ "▁фа": 6725,
+ "▁Book": 6726,
+ "imm": 6727,
+ "▁progress": 6728,
+ "bro": 6729,
+ "First": 6730,
+ "▁phot": 6731,
+ "▁ON": 6732,
+ "Template": 6733,
+ "developer": 6734,
+ "annot": 6735,
+ "▁>=": 6736,
+ "mission": 6737,
+ "▁któ": 6738,
+ "pc": 6739,
+ "bach": 6740,
+ "zent": 6741,
+ "ued": 6742,
+ "▁ones": 6743,
+ "ји": 6744,
+ "▁rout": 6745,
+ "▁Ки": 6746,
+ "Post": 6747,
+ "ції": 6748,
+ "▁Vir": 6749,
+ "nek": 6750,
+ "aging": 6751,
+ "▁ок": 6752,
+ "izont": 6753,
+ "▁agosto": 6754,
+ "▁choose": 6755,
+ "▁\r": 6756,
+ "▁systems": 6757,
+ "loss": 6758,
+ "iente": 6759,
+ "▁Cre": 6760,
+ "▁contra": 6761,
+ "ums": 6762,
+ "▁beginning": 6763,
+ "emy": 6764,
+ "istics": 6765,
+ "▁served": 6766,
+ "Down": 6767,
+ "options": 6768,
+ "▁Govern": 6769,
+ "▁BY": 6770,
+ "▁jest": 6771,
+ "té": 6772,
+ "▁continue": 6773,
+ "pers": 6774,
+ "▁easier": 6775,
+ "▁cos": 6776,
+ "esso": 6777,
+ ">>": 6778,
+ "Net": 6779,
+ "▁Bor": 6780,
+ "▁Cr": 6781,
+ "▁transfer": 6782,
+ "▁CSS": 6783,
+ "▁finns": 6784,
+ "▁хо": 6785,
+ "username": 6786,
+ "▁constru": 6787,
+ "▁pain": 6788,
+ "▁Tem": 6789,
+ "▁specified": 6790,
+ "▁brit": 6791,
+ "ские": 6792,
+ "irk": 6793,
+ "rapper": 6794,
+ "▁counter": 6795,
+ "▁[\"": 6796,
+ "oded": 6797,
+ "дан": 6798,
+ "property": 6799,
+ "hard": 6800,
+ "istrict": 6801,
+ ")/": 6802,
+ "▁Pour": 6803,
+ "▁Where": 6804,
+ "▁===": 6805,
+ "▁sowie": 6806,
+ "▁Про": 6807,
+ "▁dess": 6808,
+ "▁tras": 6809,
+ "▁уча": 6810,
+ "▁Over": 6811,
+ "note": 6812,
+ "▁America": 6813,
+ "cp": 6814,
+ "▁grande": 6815,
+ "Me": 6816,
+ ")-": 6817,
+ "Mode": 6818,
+ "▁passing": 6819,
+ "▁giving": 6820,
+ "Cl": 6821,
+ "}/": 6822,
+ "Menu": 6823,
+ "!!": 6824,
+ "angular": 6825,
+ "▁launch": 6826,
+ "varphi": 6827,
+ "▁Johann": 6828,
+ "▁foreach": 6829,
+ "ró": 6830,
+ "sequ": 6831,
+ "ifi": 6832,
+ "Am": 6833,
+ "arp": 6834,
+ "▁buffer": 6835,
+ "▁ni": 6836,
+ "▁mix": 6837,
+ "▁Museum": 6838,
+ "▁meant": 6839,
+ "asi": 6840,
+ "▁kan": 6841,
+ "прав": 6842,
+ "Comp": 6843,
+ "istoire": 6844,
+ "iful": 6845,
+ "jer": 6846,
+ "issions": 6847,
+ "Resource": 6848,
+ "▁воз": 6849,
+ "▁ST": 6850,
+ "▁solutions": 6851,
+ "▁belong": 6852,
+ "▁Associ": 6853,
+ "cf": 6854,
+ "▁Mär": 6855,
+ "▁grid": 6856,
+ "Mult": 6857,
+ "▁requires": 6858,
+ "kk": 6859,
+ "▁teach": 6860,
+ "emeinde": 6861,
+ "▁square": 6862,
+ "▁коман": 6863,
+ "▁Event": 6864,
+ "▁rules": 6865,
+ "▁bur": 6866,
+ "▁eing": 6867,
+ "▁Mai": 6868,
+ "▁nam": 6869,
+ "▁slä": 6870,
+ "hör": 6871,
+ "▁tip": 6872,
+ "▁Literatur": 6873,
+ "▁scope": 6874,
+ "overline": 6875,
+ "▁exit": 6876,
+ ")?": 6877,
+ "bet": 6878,
+ "▁vict": 6879,
+ "Off": 6880,
+ "▁approxim": 6881,
+ "▁Geb": 6882,
+ "ktop": 6883,
+ "heit": 6884,
+ "▁Ю": 6885,
+ "template": 6886,
+ "рон": 6887,
+ "▁uno": 6888,
+ "Serv": 6889,
+ "▁framework": 6890,
+ "operator": 6891,
+ "▁generally": 6892,
+ "▁hundred": 6893,
+ "▁divers": 6894,
+ "ovi": 6895,
+ "▁rés": 6896,
+ "abs": 6897,
+ "▁gal": 6898,
+ "çais": 6899,
+ "▁feet": 6900,
+ "▁virtual": 6901,
+ "czy": 6902,
+ "ску": 6903,
+ "./": 6904,
+ "hu": 6905,
+ "ancy": 6906,
+ "▁recommend": 6907,
+ "▁під": 6908,
+ "▁money": 6909,
+ "▁versions": 6910,
+ "▁helps": 6911,
+ "▁Hor": 6912,
+ "Items": 6913,
+ "look": 6914,
+ "connect": 6915,
+ "anges": 6916,
+ "ViewController": 6917,
+ "elijk": 6918,
+ "▁occup": 6919,
+ "▁editor": 6920,
+ "auto": 6921,
+ "ög": 6922,
+ "▁seconds": 6923,
+ "▁obvious": 6924,
+ "vm": 6925,
+ "akes": 6926,
+ "▁gegen": 6927,
+ "▁til": 6928,
+ "jection": 6929,
+ "лення": 6930,
+ "▁operations": 6931,
+ "▁East": 6932,
+ "ogy": 6933,
+ "▁Polit": 6934,
+ "uten": 6935,
+ "▁Joseph": 6936,
+ "\"`": 6937,
+ "▁Company": 6938,
+ "▁callback": 6939,
+ "▁sen": 6940,
+ "cción": 6941,
+ "▁associated": 6942,
+ "▁containing": 6943,
+ "▁practice": 6944,
+ "elijke": 6945,
+ "oke": 6946,
+ "éra": 6947,
+ "uns": 6948,
+ "anta": 6949,
+ "vey": 6950,
+ "zu": 6951,
+ "▁Bes": 6952,
+ "▁Flor": 6953,
+ "mem": 6954,
+ "ycz": 6955,
+ "▁architect": 6956,
+ "▁anni": 6957,
+ "▁contact": 6958,
+ "YPE": 6959,
+ "▁Cas": 6960,
+ "▁полу": 6961,
+ "ovo": 6962,
+ "▁bring": 6963,
+ "▁concept": 6964,
+ "▁js": 6965,
+ "▁Referencias": 6966,
+ "emble": 6967,
+ "▁н": 6968,
+ "▁supported": 6969,
+ "Big": 6970,
+ "▁Hans": 6971,
+ "erv": 6972,
+ "▁Maj": 6973,
+ "▁arriv": 6974,
+ "▁Have": 6975,
+ "▁probability": 6976,
+ "▁Pop": 6977,
+ "▁Pass": 6978,
+ "token": 6979,
+ "Provider": 6980,
+ "▁Ra": 6981,
+ "Reader": 6982,
+ "ooth": 6983,
+ "lap": 6984,
+ "▁assist": 6985,
+ "adow": 6986,
+ "▁tests": 6987,
+ "сси": 6988,
+ "▁king": 6989,
+ "langle": 6990,
+ "▁Sum": 6991,
+ "OIN": 6992,
+ "▁security": 6993,
+ "nis": 6994,
+ "../": 6995,
+ "▁basic": 6996,
+ "unity": 6997,
+ "`:": 6998,
+ "▁кото": 6999,
+ "kow": 7000,
+ "▁Bibliothèque": 7001,
+ "asion": 7002,
+ "alo": 7003,
+ "ifest": 7004,
+ "▁novembre": 7005,
+ "▁peu": 7006,
+ "▁Ж": 7007,
+ "enschaft": 7008,
+ "clus": 7009,
+ "ју": 7010,
+ "Height": 7011,
+ "ún": 7012,
+ "▁tur": 7013,
+ "▁ideas": 7014,
+ "▁ces": 7015,
+ "frak": 7016,
+ "▁premier": 7017,
+ "itation": 7018,
+ "▁sé": 7019,
+ "HTML": 7020,
+ "▁Royal": 7021,
+ "ської": 7022,
+ "▁byte": 7023,
+ "PS": 7024,
+ "▁segu": 7025,
+ "inen": 7026,
+ "▁Great": 7027,
+ "▁Ку": 7028,
+ "▁external": 7029,
+ "Title": 7030,
+ "Top": 7031,
+ "Process": 7032,
+ "ität": 7033,
+ "▁`/": 7034,
+ "▁secret": 7035,
+ "pository": 7036,
+ "▁potential": 7037,
+ "▁Bud": 7038,
+ "names": 7039,
+ "asons": 7040,
+ "stackexchange": 7041,
+ "background": 7042,
+ "пер": 7043,
+ "сов": 7044,
+ "after": 7045,
+ "▁pero": 7046,
+ "▁software": 7047,
+ "▁sed": 7048,
+ "▁arrays": 7049,
+ "tmp": 7050,
+ "▁asp": 7051,
+ "scale": 7052,
+ "▁Lat": 7053,
+ "anal": 7054,
+ "▁gem": 7055,
+ "PU": 7056,
+ "▁Altri": 7057,
+ "That": 7058,
+ "▁Ни": 7059,
+ "ifact": 7060,
+ "Address": 7061,
+ "▁south": 7062,
+ "▁formula": 7063,
+ "▁Colleg": 7064,
+ "▁ін": 7065,
+ "ktion": 7066,
+ "▁sac": 7067,
+ "SH": 7068,
+ "ajo": 7069,
+ "etc": 7070,
+ "vc": 7071,
+ "`](": 7072,
+ "▁Dur": 7073,
+ "▁Ме": 7074,
+ "▁Smith": 7075,
+ "items": 7076,
+ "CK": 7077,
+ "elo": 7078,
+ "▁plugin": 7079,
+ "▁serie": 7080,
+ "ienne": 7081,
+ "▁или": 7082,
+ "Mar": 7083,
+ "▁Image": 7084,
+ "got": 7085,
+ "andas": 7086,
+ "▁matches": 7087,
+ "▁worth": 7088,
+ "▁Deb": 7089,
+ "▁cache": 7090,
+ "▁felt": 7091,
+ "ersch": 7092,
+ "izes": 7093,
+ "Oper": 7094,
+ "▁Jahre": 7095,
+ "▁commune": 7096,
+ "thread": 7097,
+ "▁ny": 7098,
+ "dec": 7099,
+ "ouw": 7100,
+ "▁surface": 7101,
+ "▁Por": 7102,
+ "▁Street": 7103,
+ "при": 7104,
+ "▁candid": 7105,
+ "▁Return": 7106,
+ "▁Kom": 7107,
+ "gru": 7108,
+ "▁ти": 7109,
+ "[\\": 7110,
+ "▁depends": 7111,
+ "▁influ": 7112,
+ "▁towards": 7113,
+ "ained": 7114,
+ "▁rank": 7115,
+ "▁Januar": 7116,
+ "▁components": 7117,
+ "gest": 7118,
+ "getElementById": 7119,
+ "▁checked": 7120,
+ "airs": 7121,
+ "join": 7122,
+ "▁dead": 7123,
+ "▁hit": 7124,
+ "ény": 7125,
+ "▁equivalent": 7126,
+ "▁Пре": 7127,
+ "▁appropri": 7128,
+ "Pass": 7129,
+ "▁primer": 7130,
+ "englisch": 7131,
+ "▁appar": 7132,
+ "▁During": 7133,
+ "▁knowledge": 7134,
+ "▁trigger": 7135,
+ "▁core": 7136,
+ "▁Ol": 7137,
+ "▁Produ": 7138,
+ "▁Fern": 7139,
+ "▁нача": 7140,
+ "Te": 7141,
+ "▁Mot": 7142,
+ "erve": 7143,
+ "тво": 7144,
+ "▁mid": 7145,
+ "▁finally": 7146,
+ "aires": 7147,
+ "▁especially": 7148,
+ "▁tut": 7149,
+ "▁receive": 7150,
+ "adre": 7151,
+ "▁neigh": 7152,
+ "ktet": 7153,
+ "ilde": 7154,
+ "▁radio": 7155,
+ "▁driver": 7156,
+ "лись": 7157,
+ "endencies": 7158,
+ "▁IE": 7159,
+ "▁saved": 7160,
+ "ffect": 7161,
+ "▁Wayback": 7162,
+ "iat": 7163,
+ "▁padding": 7164,
+ "window": 7165,
+ "тиче": 7166,
+ "▁mur": 7167,
+ "actor": 7168,
+ "▁Han": 7169,
+ "ональ": 7170,
+ "▁gar": 7171,
+ "▁familjen": 7172,
+ "ós": 7173,
+ "▁nationale": 7174,
+ "▁pré": 7175,
+ "ded": 7176,
+ "onal": 7177,
+ "▁President": 7178,
+ "▁\\,": 7179,
+ "▁placed": 7180,
+ "erni": 7181,
+ "▁signal": 7182,
+ "nab": 7183,
+ "hm": 7184,
+ "Mon": 7185,
+ "▁vs": 7186,
+ "SC": 7187,
+ "▁progetti": 7188,
+ "▁Ü": 7189,
+ "▁forms": 7190,
+ "▁messages": 7191,
+ "inf": 7192,
+ "users": 7193,
+ "GET": 7194,
+ "▁dels": 7195,
+ "Collection": 7196,
+ "▁Good": 7197,
+ "▁Maybe": 7198,
+ "▁compr": 7199,
+ "▁larger": 7200,
+ "gres": 7201,
+ "aper": 7202,
+ "▁При": 7203,
+ "undes": 7204,
+ "▁sea": 7205,
+ "▁Spring": 7206,
+ "ulo": 7207,
+ "▁mechan": 7208,
+ "▁sans": 7209,
+ "GB": 7210,
+ "Valid": 7211,
+ "▁communic": 7212,
+ "▁pra": 7213,
+ "vier": 7214,
+ "▁Се": 7215,
+ "▁ain": 7216,
+ "тура": 7217,
+ "kom": 7218,
+ "skiego": 7219,
+ "ково": 7220,
+ "adata": 7221,
+ "▁Ре": 7222,
+ "▁boolean": 7223,
+ "sets": 7224,
+ "▁effort": 7225,
+ ".[": 7226,
+ "▁został": 7227,
+ "PA": 7228,
+ "▁Vict": 7229,
+ "SD": 7230,
+ "ował": 7231,
+ "▁emb": 7232,
+ "▁prima": 7233,
+ "▁hour": 7234,
+ "subsection": 7235,
+ "▁Fort": 7236,
+ "mathfrak": 7237,
+ "igin": 7238,
+ "GL": 7239,
+ ")+": 7240,
+ "fi": 7241,
+ "▁anci": 7242,
+ "▁pan": 7243,
+ "\\)": 7244,
+ "▁lug": 7245,
+ "▁deploy": 7246,
+ "domain": 7247,
+ "▁slight": 7248,
+ "JSON": 7249,
+ "▁morning": 7250,
+ "▁hi": 7251,
+ "▁compare": 7252,
+ "ije": 7253,
+ "▁blue": 7254,
+ "▁Ac": 7255,
+ "▁middle": 7256,
+ "anden": 7257,
+ "▁shared": 7258,
+ "▁Camp": 7259,
+ "▁Á": 7260,
+ "ounded": 7261,
+ "uw": 7262,
+ "ierung": 7263,
+ "Stack": 7264,
+ "▁eines": 7265,
+ "▁Da": 7266,
+ "lij": 7267,
+ "enti": 7268,
+ "▁й": 7269,
+ "Util": 7270,
+ "▁experience": 7271,
+ "▁await": 7272,
+ "uls": 7273,
+ "▁requests": 7274,
+ "▁impos": 7275,
+ "▁constraint": 7276,
+ "Change": 7277,
+ "emph": 7278,
+ "бер": 7279,
+ "▁Another": 7280,
+ "Custom": 7281,
+ "▁significant": 7282,
+ "cr": 7283,
+ "▁million": 7284,
+ "reek": 7285,
+ "▁dalla": 7286,
+ "▁Germ": 7287,
+ "otal": 7288,
+ "ateur": 7289,
+ "btn": 7290,
+ "▁thinking": 7291,
+ "▁interval": 7292,
+ "onne": 7293,
+ "▁liv": 7294,
+ "():": 7295,
+ "▁Ве": 7296,
+ "oe": 7297,
+ "▁Ev": 7298,
+ "meta": 7299,
+ "▁broad": 7300,
+ "Rem": 7301,
+ "apply": 7302,
+ "▁couple": 7303,
+ "▁techni": 7304,
+ "idades": 7305,
+ "▁goal": 7306,
+ "▁CD": 7307,
+ "hab": 7308,
+ "▁explan": 7309,
+ "anner": 7310,
+ "▁Because": 7311,
+ "blog": 7312,
+ "includegraphics": 7313,
+ "▁voice": 7314,
+ "▁Map": 7315,
+ "vention": 7316,
+ "Session": 7317,
+ "▁Liens": 7318,
+ "▁sor": 7319,
+ "category": 7320,
+ "ashington": 7321,
+ "▁März": 7322,
+ "pop": 7323,
+ "illet": 7324,
+ "▁zwei": 7325,
+ "▁Lie": 7326,
+ "Null": 7327,
+ "address": 7328,
+ "▁factor": 7329,
+ "▁ligne": 7330,
+ "▁HTTP": 7331,
+ "▁suf": 7332,
+ "▁personal": 7333,
+ "cip": 7334,
+ "▁Dar": 7335,
+ "▁adm": 7336,
+ "кой": 7337,
+ "▁Ext": 7338,
+ "▁god": 7339,
+ "aa": 7340,
+ "Right": 7341,
+ "été": 7342,
+ "▁dynamic": 7343,
+ "▁maintain": 7344,
+ "tor": 7345,
+ "########": 7346,
+ "▁Fra": 7347,
+ "▁choice": 7348,
+ "▁сто": 7349,
+ "СР": 7350,
+ "▁Feder": 7351,
+ "ston": 7352,
+ "▁flag": 7353,
+ "kit": 7354,
+ "Module": 7355,
+ "▁спо": 7356,
+ "▁Stra": 7357,
+ "icks": 7358,
+ "▁haven": 7359,
+ "▁Mass": 7360,
+ "▁Emp": 7361,
+ "▁Pi": 7362,
+ "▁Pen": 7363,
+ "Rect": 7364,
+ "▁Kr": 7365,
+ "itat": 7366,
+ "eler": 7367,
+ "ября": 7368,
+ "itet": 7369,
+ "▁Start": 7370,
+ "▁produced": 7371,
+ "▁пол": 7372,
+ "(_": 7373,
+ "▁delet": 7374,
+ "▁hot": 7375,
+ "▁Geschichte": 7376,
+ "~~": 7377,
+ "▁months": 7378,
+ "▁tod": 7379,
+ "▁ни": 7380,
+ "ús": 7381,
+ "temp": 7382,
+ "▁Dez": 7383,
+ "ypes": 7384,
+ "▁cui": 7385,
+ "ommun": 7386,
+ "actions": 7387,
+ "▁eigen": 7388,
+ "▁immediately": 7389,
+ "PL": 7390,
+ "▁Го": 7391,
+ "▁Bal": 7392,
+ "ље": 7393,
+ "ului": 7394,
+ "▁online": 7395,
+ "▁años": 7396,
+ "▁namespace": 7397,
+ "▁mond": 7398,
+ "▁Base": 7399,
+ "▁Canada": 7400,
+ "etzt": 7401,
+ "}-": 7402,
+ "▁defin": 7403,
+ "▁doubt": 7404,
+ "▁investig": 7405,
+ "views": 7406,
+ "▁Line": 7407,
+ "▁stage": 7408,
+ "ettings": 7409,
+ "ubre": 7410,
+ "float": 7411,
+ "▁Play": 7412,
+ "▁Las": 7413,
+ "ptr": 7414,
+ "▁becomes": 7415,
+ "estamp": 7416,
+ "▁independent": 7417,
+ "▁analysis": 7418,
+ "▁Look": 7419,
+ "lain": 7420,
+ "▁рас": 7421,
+ "Reference": 7422,
+ "▁sorry": 7423,
+ "▁supposed": 7424,
+ "ût": 7425,
+ "▁degree": 7426,
+ "utz": 7427,
+ "MM": 7428,
+ "▁desired": 7429,
+ "ły": 7430,
+ "▁len": 7431,
+ "▁alone": 7432,
+ "signed": 7433,
+ "▁Sta": 7434,
+ "Person": 7435,
+ "▁applied": 7436,
+ "▁Back": 7437,
+ "▁mars": 7438,
+ "Part": 7439,
+ "▁Did": 7440,
+ "▁externes": 7441,
+ "▁np": 7442,
+ "ongo": 7443,
+ "▁esta": 7444,
+ "Block": 7445,
+ "▁pou": 7446,
+ "adores": 7447,
+ "▁Studio": 7448,
+ ".$": 7449,
+ "▁reached": 7450,
+ "bot": 7451,
+ "▁Juni": 7452,
+ "tons": 7453,
+ "itel": 7454,
+ "▁Gar": 7455,
+ "▁articles": 7456,
+ "▁District": 7457,
+ "▁trouble": 7458,
+ "lide": 7459,
+ "▁Found": 7460,
+ "ád": 7461,
+ "▁equip": 7462,
+ "▁internal": 7463,
+ "'],": 7464,
+ "▁async": 7465,
+ "UB": 7466,
+ "gel": 7467,
+ "▁ai": 7468,
+ "ensure": 7469,
+ "▁appeared": 7470,
+ "▁$_": 7471,
+ "▁maximum": 7472,
+ "▁Си": 7473,
+ "рь": 7474,
+ "▁announ": 7475,
+ "лась": 7476,
+ "▁cm": 7477,
+ "ган": 7478,
+ "aupt": 7479,
+ "▁latter": 7480,
+ "▁platform": 7481,
+ "▁dra": 7482,
+ "▁capital": 7483,
+ "▁solved": 7484,
+ "riz": 7485,
+ "edic": 7486,
+ "▁Mur": 7487,
+ "▁Top": 7488,
+ "тся": 7489,
+ "Panel": 7490,
+ "rule": 7491,
+ "etic": 7492,
+ "▁Ren": 7493,
+ "▁Wikimedia": 7494,
+ "▁TO": 7495,
+ "second": 7496,
+ "isl": 7497,
+ "▁hy": 7498,
+ "▁niet": 7499,
+ "▁loaded": 7500,
+ "dig": 7501,
+ "▁mayo": 7502,
+ "[:": 7503,
+ "Acc": 7504,
+ "▁bek": 7505,
+ "нию": 7506,
+ "login": 7507,
+ "tx": 7508,
+ "▁Fur": 7509,
+ "▁Santa": 7510,
+ "azz": 7511,
+ "▁conduct": 7512,
+ "▁India": 7513,
+ "Order": 7514,
+ "irth": 7515,
+ "tw": 7516,
+ "}+": 7517,
+ "▁wieder": 7518,
+ "▁Edu": 7519,
+ "AV": 7520,
+ "▁```": 7521,
+ "▁manually": 7522,
+ "▁Read": 7523,
+ "fortunately": 7524,
+ "▁Run": 7525,
+ "▁Award": 7526,
+ "▁Foot": 7527,
+ "*)": 7528,
+ "params": 7529,
+ "пі": 7530,
+ "▁native": 7531,
+ "rift": 7532,
+ "▁ä": 7533,
+ "ATH": 7534,
+ "▁yourself": 7535,
+ "▁prior": 7536,
+ "▁cit": 7537,
+ "äh": 7538,
+ "▁treat": 7539,
+ "▁meas": 7540,
+ "ributed": 7541,
+ "▁clar": 7542,
+ "card": 7543,
+ "ROR": 7544,
+ "illes": 7545,
+ "▁layer": 7546,
+ "auer": 7547,
+ "▁rat": 7548,
+ "bernate": 7549,
+ "▁stato": 7550,
+ "▁China": 7551,
+ "▁$('#": 7552,
+ "▁naar": 7553,
+ "zip": 7554,
+ "▁${\\": 7555,
+ "▁appreciated": 7556,
+ "▁име": 7557,
+ "ży": 7558,
+ "▁przez": 7559,
+ "▁Indian": 7560,
+ "▁Tod": 7561,
+ "▁Source": 7562,
+ "▁други": 7563,
+ "internal": 7564,
+ "ionale": 7565,
+ "Product": 7566,
+ "▁Men": 7567,
+ "▁upper": 7568,
+ "▁Every": 7569,
+ "},\\": 7570,
+ "▁printf": 7571,
+ "▁continued": 7572,
+ "▁nodes": 7573,
+ "лки": 7574,
+ "▁nice": 7575,
+ "modules": 7576,
+ "eign": 7577,
+ "▁Mex": 7578,
+ "▁According": 7579,
+ "▁undefined": 7580,
+ "▁binary": 7581,
+ "cut": 7582,
+ "Current": 7583,
+ "edy": 7584,
+ "}}{": 7585,
+ "bles": 7586,
+ "▁вой": 7587,
+ "scri": 7588,
+ "eqn": 7589,
+ "Changed": 7590,
+ "▁köz": 7591,
+ "▁remote": 7592,
+ "вля": 7593,
+ "▁quel": 7594,
+ "▁align": 7595,
+ "▁пар": 7596,
+ "SV": 7597,
+ "yer": 7598,
+ "▁Californ": 7599,
+ "▁places": 7600,
+ "▁primary": 7601,
+ "▁conv": 7602,
+ "▁Juli": 7603,
+ "▁visual": 7604,
+ "▁Select": 7605,
+ "atory": 7606,
+ "=(": 7607,
+ "iser": 7608,
+ "▁intent": 7609,
+ "sur": 7610,
+ "container": 7611,
+ "iced": 7612,
+ "▁board": 7613,
+ "astr": 7614,
+ "omial": 7615,
+ "вет": 7616,
+ "зва": 7617,
+ "▁cru": 7618,
+ "▁Oktober": 7619,
+ "save": 7620,
+ "▁greater": 7621,
+ "▁inn": 7622,
+ "▁picture": 7623,
+ "▁То": 7624,
+ "▁obtained": 7625,
+ "Wikimedia": 7626,
+ "úblic": 7627,
+ "▁lors": 7628,
+ "▁mont": 7629,
+ "obre": 7630,
+ "▁civil": 7631,
+ "▁construction": 7632,
+ "▁Welt": 7633,
+ "▁Under": 7634,
+ "undert": 7635,
+ "▁edge": 7636,
+ "▁Liste": 7637,
+ "csv": 7638,
+ "▁experiment": 7639,
+ "localhost": 7640,
+ "▁Edit": 7641,
+ "greg": 7642,
+ "ová": 7643,
+ "ља": 7644,
+ "msg": 7645,
+ "▁Green": 7646,
+ "Dialog": 7647,
+ "Ident": 7648,
+ "▁JS": 7649,
+ "^{(": 7650,
+ "▁släktet": 7651,
+ "____": 7652,
+ "Project": 7653,
+ "▁beskre": 7654,
+ "▁ber": 7655,
+ "▁wouldn": 7656,
+ "▁react": 7657,
+ "Hel": 7658,
+ "zw": 7659,
+ "▁Washington": 7660,
+ "orie": 7661,
+ "task": 7662,
+ "▁category": 7663,
+ "▁artist": 7664,
+ "anno": 7665,
+ "▁ook": 7666,
+ "ammen": 7667,
+ "▁Minister": 7668,
+ "▁declar": 7669,
+ "▁Key": 7670,
+ ",.": 7671,
+ "▁mach": 7672,
+ "▁ww": 7673,
+ "isen": 7674,
+ "Fran": 7675,
+ "▁Росси": 7676,
+ "бор": 7677,
+ "три": 7678,
+ "▁rock": 7679,
+ "quis": 7680,
+ "mos": 7681,
+ "пера": 7682,
+ "▁esterni": 7683,
+ "▁gold": 7684,
+ "Windows": 7685,
+ "%%": 7686,
+ "▁partial": 7687,
+ "▁weight": 7688,
+ "▁spr": 7689,
+ "}).": 7690,
+ "▁français": 7691,
+ "fun": 7692,
+ "▁thous": 7693,
+ "holder": 7694,
+ "▁gone": 7695,
+ "▁Č": 7696,
+ "▁rend": 7697,
+ "DA": 7698,
+ "▁answered": 7699,
+ "▁False": 7700,
+ "Buffer": 7701,
+ "▁daugh": 7702,
+ ".--": 7703,
+ "▁Show": 7704,
+ "▁rect": 7705,
+ "▁Kre": 7706,
+ "dr": 7707,
+ "osoph": 7708,
+ "▁yield": 7709,
+ "urity": 7710,
+ "toString": 7711,
+ "aval": 7712,
+ "Pol": 7713,
+ "▁lock": 7714,
+ "imation": 7715,
+ "antic": 7716,
+ "Local": 7717,
+ "▁beskrevs": 7718,
+ "ités": 7719,
+ "grid": 7720,
+ "ут": 7721,
+ "▁_{": 7722,
+ "сі": 7723,
+ "FILE": 7724,
+ "▁км": 7725,
+ "▁speak": 7726,
+ "summary": 7727,
+ "prop": 7728,
+ "javascript": 7729,
+ "zk": 7730,
+ "izontal": 7731,
+ "▁trois": 7732,
+ "▁Rod": 7733,
+ "prise": 7734,
+ "рово": 7735,
+ "▁odd": 7736,
+ "▁gest": 7737,
+ "▁produce": 7738,
+ "▁waar": 7739,
+ "▁Av": 7740,
+ "ribu": 7741,
+ "вання": 7742,
+ "▁finished": 7743,
+ "▁adapt": 7744,
+ "▁Sar": 7745,
+ "textit": 7746,
+ "▁Ce": 7747,
+ "▁Fa": 7748,
+ "osen": 7749,
+ "▁deriv": 7750,
+ "▁ship": 7751,
+ "▁opin": 7752,
+ "▁Even": 7753,
+ "gesch": 7754,
+ "▁suppose": 7755,
+ "▁Fer": 7756,
+ "ское": 7757,
+ "▁worden": 7758,
+ "sey": 7759,
+ "hline": 7760,
+ "▁Union": 7761,
+ "▁/**": 7762,
+ "▁vez": 7763,
+ "▁Collegamenti": 7764,
+ "▁Society": 7765,
+ "▁econom": 7766,
+ "ší": 7767,
+ "oi": 7768,
+ "▁orient": 7769,
+ "▁Teil": 7770,
+ "rent": 7771,
+ "лекс": 7772,
+ "▁solid": 7773,
+ "▁cart": 7774,
+ "****************": 7775,
+ "▁cab": 7776,
+ "▁Message": 7777,
+ "dots": 7778,
+ "▁ég": 7779,
+ "▁twe": 7780,
+ "aga": 7781,
+ "▁naz": 7782,
+ "▁Microsoft": 7783,
+ "▁underarter": 7784,
+ "ppen": 7785,
+ "▁recent": 7786,
+ "▁net": 7787,
+ "▁resources": 7788,
+ "Ste": 7789,
+ ".\\": 7790,
+ "▁SO": 7791,
+ "лом": 7792,
+ "▁cele": 7793,
+ "▁lic": 7794,
+ "▁benef": 7795,
+ "ldots": 7796,
+ "▁serial": 7797,
+ "Integer": 7798,
+ "cles": 7799,
+ "▁miles": 7800,
+ "▁Ale": 7801,
+ "▁entered": 7802,
+ "▁Two": 7803,
+ "wie": 7804,
+ "▁includes": 7805,
+ "▁Each": 7806,
+ "elling": 7807,
+ "quer": 7808,
+ "▁Dom": 7809,
+ "pf": 7810,
+ "WS": 7811,
+ "▁straight": 7812,
+ "▁Stan": 7813,
+ "▁nos": 7814,
+ "ícul": 7815,
+ "atro": 7816,
+ "▁Center": 7817,
+ "FT": 7818,
+ "▁Inga": 7819,
+ "ilo": 7820,
+ "▁www": 7821,
+ "jsfiddle": 7822,
+ "nic": 7823,
+ "▁European": 7824,
+ "▁commer": 7825,
+ "▁girl": 7826,
+ "total": 7827,
+ "▁Star": 7828,
+ "▁suggested": 7829,
+ "pal": 7830,
+ "▁zwischen": 7831,
+ "писа": 7832,
+ "IM": 7833,
+ "▁handler": 7834,
+ "▁Program": 7835,
+ "xsl": 7836,
+ "ály": 7837,
+ "BU": 7838,
+ ",--": 7839,
+ "▁vid": 7840,
+ "▁established": 7841,
+ "▁Spiel": 7842,
+ "ometry": 7843,
+ "unes": 7844,
+ "▁sit": 7845,
+ "▁inher": 7846,
+ "▁puis": 7847,
+ "▁être": 7848,
+ "▁Most": 7849,
+ "Header": 7850,
+ "insert": 7851,
+ "▁sist": 7852,
+ "▁favor": 7853,
+ "dest": 7854,
+ "▁entity": 7855,
+ "Cal": 7856,
+ "▁Therefore": 7857,
+ "DD": 7858,
+ ";;": 7859,
+ "▁Dezember": 7860,
+ "▁Rh": 7861,
+ "iments": 7862,
+ "▁returning": 7863,
+ "sto": 7864,
+ "▁Value": 7865,
+ "▁liber": 7866,
+ "▁Result": 7867,
+ "▁bind": 7868,
+ "voir": 7869,
+ "▁Tim": 7870,
+ "▁Movie": 7871,
+ "weg": 7872,
+ "ket": 7873,
+ "▁исто": 7874,
+ "▁friends": 7875,
+ "▁fn": 7876,
+ "▁él": 7877,
+ "▁&=": 7878,
+ "arden": 7879,
+ "fficial": 7880,
+ "▁community": 7881,
+ "▁api": 7882,
+ "Args": 7883,
+ "ieren": 7884,
+ "▁dann": 7885,
+ "omorph": 7886,
+ "adr": 7887,
+ "loop": 7888,
+ "uman": 7889,
+ "▁vous": 7890,
+ "bst": 7891,
+ "submit": 7892,
+ "\\|": 7893,
+ "тин": 7894,
+ "Container": 7895,
+ "asket": 7896,
+ "?)": 7897,
+ "Sec": 7898,
+ "▁drive": 7899,
+ "Ass": 7900,
+ "▁swe": 7901,
+ "▁amer": 7902,
+ "▁mine": 7903,
+ "▁Ham": 7904,
+ "▁avait": 7905,
+ "▁Hon": 7906,
+ "▁après": 7907,
+ "▁Mann": 7908,
+ "ська": 7909,
+ "▁increase": 7910,
+ "▁ty": 7911,
+ "sky": 7912,
+ "▁accur": 7913,
+ "article": 7914,
+ "weight": 7915,
+ "▁sex": 7916,
+ "▁listade": 7917,
+ "/**": 7918,
+ "▁está": 7919,
+ "}}$": 7920,
+ "argo": 7921,
+ "define": 7922,
+ "▁состав": 7923,
+ "session": 7924,
+ "ads": 7925,
+ "стви": 7926,
+ "▁Law": 7927,
+ "▁dialog": 7928,
+ "▁duplicate": 7929,
+ "▁ép": 7930,
+ "▁voc": 7931,
+ "fri": 7932,
+ "▁green": 7933,
+ "▁hidden": 7934,
+ "▁Island": 7935,
+ "▁diag": 7936,
+ "owej": 7937,
+ "mysql": 7938,
+ "teil": 7939,
+ "rä": 7940,
+ "ikan": 7941,
+ "▁José": 7942,
+ "aled": 7943,
+ "Runtime": 7944,
+ "▁train": 7945,
+ "▁Division": 7946,
+ "ниц": 7947,
+ "▁Span": 7948,
+ "нима": 7949,
+ ")=\\": 7950,
+ "тан": 7951,
+ "▁stay": 7952,
+ "▁foo": 7953,
+ "▁accom": 7954,
+ "▁hers": 7955,
+ "▁нау": 7956,
+ "▁Mün": 7957,
+ "ideos": 7958,
+ "static": 7959,
+ "▁ready": 7960,
+ "]`": 7961,
+ "▁visible": 7962,
+ "▁Hope": 7963,
+ "ulated": 7964,
+ "▁Cult": 7965,
+ "стро": 7966,
+ "Co": 7967,
+ "▁smaller": 7968,
+ "atura": 7969,
+ "▁perfectly": 7970,
+ "req": 7971,
+ "▁proposed": 7972,
+ "▁degli": 7973,
+ "Search": 7974,
+ "▁ich": 7975,
+ "Max": 7976,
+ "▁volume": 7977,
+ "execute": 7978,
+ "gre": 7979,
+ "▁sport": 7980,
+ "udad": 7981,
+ "PT": 7982,
+ "▁Records": 7983,
+ "▁cook": 7984,
+ "▁expand": 7985,
+ "бі": 7986,
+ "▁altri": 7987,
+ "ppet": 7988,
+ "arse": 7989,
+ "▁wet": 7990,
+ "▁Bob": 7991,
+ "▁FC": 7992,
+ "▁Association": 7993,
+ "uje": 7994,
+ "▁fel": 7995,
+ "▁слу": 7996,
+ "▁Big": 7997,
+ "/\\": 7998,
+ "Ge": 7999,
+ "while": 8000,
+ "{(": 8001,
+ "▁sufficient": 8002,
+ "Position": 8003,
+ "▁understanding": 8004,
+ "▁nue": 8005,
+ "▁raz": 8006,
+ "▁ye": 8007,
+ "hem": 8008,
+ "Num": 8009,
+ "▁Project": 8010,
+ "▁Its": 8011,
+ "▁hasta": 8012,
+ "enso": 8013,
+ "▁wire": 8014,
+ "Ret": 8015,
+ "uj": 8016,
+ "proof": 8017,
+ "▁relevant": 8018,
+ "▁partir": 8019,
+ "▁ago": 8020,
+ "ificate": 8021,
+ "▁domin": 8022,
+ "▁boy": 8023,
+ "▁plant": 8024,
+ "▁encoding": 8025,
+ "▁throws": 8026,
+ "▁Rock": 8027,
+ "zone": 8028,
+ "gang": 8029,
+ "widget": 8030,
+ "▁interesting": 8031,
+ "DER": 8032,
+ "▁demon": 8033,
+ "▁office": 8034,
+ "amt": 8035,
+ "äter": 8036,
+ "▁White": 8037,
+ "▁versch": 8038,
+ "▁dieser": 8039,
+ "▁Mount": 8040,
+ "▁students": 8041,
+ "▁Pub": 8042,
+ "▁Де": 8043,
+ "ija": 8044,
+ "▁Cy": 8045,
+ "▁California": 8046,
+ "▁abril": 8047,
+ "äll": 8048,
+ "▁чем": 8049,
+ "TV": 8050,
+ "▁més": 8051,
+ "▁declared": 8052,
+ "▁ю": 8053,
+ "ől": 8054,
+ "appa": 8055,
+ "▁Бе": 8056,
+ "echo": 8057,
+ "numer": 8058,
+ "▁posted": 8059,
+ "▁вер": 8060,
+ "▁године": 8061,
+ "▁weak": 8062,
+ "▁Republic": 8063,
+ "▁champion": 8064,
+ "ensuremath": 8065,
+ "your": 8066,
+ "▁Ober": 8067,
+ "▁Central": 8068,
+ "isa": 8069,
+ "анд": 8070,
+ "yy": 8071,
+ "▁fully": 8072,
+ "▁SD": 8073,
+ "▁Linux": 8074,
+ "▁Scott": 8075,
+ "partment": 8076,
+ "kon": 8077,
+ "▁contract": 8078,
+ "▁OF": 8079,
+ "▁ale": 8080,
+ "▁Ann": 8081,
+ "▁над": 8082,
+ "lah": 8083,
+ "▁Next": 8084,
+ "oren": 8085,
+ "▁disk": 8086,
+ "▁eg": 8087,
+ "atu": 8088,
+ "логи": 8089,
+ "▁games": 8090,
+ "Left": 8091,
+ "▁lu": 8092,
+ "▁finite": 8093,
+ "▁ки": 8094,
+ "▁crash": 8095,
+ "pher": 8096,
+ "exe": 8097,
+ "ATION": 8098,
+ "▁brother": 8099,
+ "Eng": 8100,
+ "tat": 8101,
+ "▁Integer": 8102,
+ "ному": 8103,
+ "▁colon": 8104,
+ "iqu": 8105,
+ ")).": 8106,
+ "ivi": 8107,
+ "▁Method": 8108,
+ "arten": 8109,
+ "Uni": 8110,
+ "vector": 8111,
+ "▁wood": 8112,
+ "рт": 8113,
+ "▁Ле": 8114,
+ "▁siècle": 8115,
+ "▁gent": 8116,
+ "}\r": 8117,
+ "▁contents": 8118,
+ "▁compan": 8119,
+ "Go": 8120,
+ "▁jou": 8121,
+ "uent": 8122,
+ "Async": 8123,
+ "printf": 8124,
+ "▁Model": 8125,
+ "▁kept": 8126,
+ "ASE": 8127,
+ "▁provides": 8128,
+ "▁Abgerufen": 8129,
+ "▁Gall": 8130,
+ "▁Alf": 8131,
+ "SA": 8132,
+ "▁Mem": 8133,
+ "▁kter": 8134,
+ "▁Bru": 8135,
+ "Android": 8136,
+ "(:": 8137,
+ "▁Украї": 8138,
+ "Ne": 8139,
+ "Min": 8140,
+ "atr": 8141,
+ "▁Hal": 8142,
+ "delete": 8143,
+ "odo": 8144,
+ "▁não": 8145,
+ "ène": 8146,
+ "▁calculate": 8147,
+ "Json": 8148,
+ "keys": 8149,
+ "ней": 8150,
+ "▁hence": 8151,
+ "▁ow": 8152,
+ "▁Lib": 8153,
+ "eno": 8154,
+ "▁Love": 8155,
+ "osi": 8156,
+ "wide": 8157,
+ "▁score": 8158,
+ "full": 8159,
+ "вод": 8160,
+ "▁determine": 8161,
+ "▁spaces": 8162,
+ "лова": 8163,
+ "▁peut": 8164,
+ "éral": 8165,
+ "ół": 8166,
+ "▁appoint": 8167,
+ "▁Tw": 8168,
+ "": 8169,
+ "▁Order": 8170,
+ "▁hop": 8171,
+ "random": 8172,
+ "cache": 8173,
+ "▁destroy": 8174,
+ "▁race": 8175,
+ "Tag": 8176,
+ "▁rid": 8177,
+ "▁negative": 8178,
+ "Car": 8179,
+ "ensional": 8180,
+ "dk": 8181,
+ "▁cro": 8182,
+ "▁THEN": 8183,
+ "▁$.": 8184,
+ "ensk": 8185,
+ "NE": 8186,
+ "HO": 8187,
+ "▁kle": 8188,
+ "ospital": 8189,
+ "kte": 8190,
+ "férences": 8191,
+ "udes": 8192,
+ "IR": 8193,
+ "otion": 8194,
+ "▁Real": 8195,
+ "▁Februar": 8196,
+ "ин": 8197,
+ "▁Old": 8198,
+ "кого": 8199,
+ "leich": 8200,
+ "▁р": 8201,
+ "ían": 8202,
+ "▁га": 8203,
+ "cide": 8204,
+ "lab": 8205,
+ "▁pull": 8206,
+ "▁'/": 8207,
+ "Long": 8208,
+ ",$": 8209,
+ "▁appropriate": 8210,
+ "▁была": 8211,
+ "führ": 8212,
+ "▁Media": 8213,
+ "▁manner": 8214,
+ "▁Ге": 8215,
+ "description": 8216,
+ "Bean": 8217,
+ "▁Lar": 8218,
+ "'];": 8219,
+ "▁relation": 8220,
+ "▁Sorry": 8221,
+ "har": 8222,
+ "cpp": 8223,
+ "▁Ko": 8224,
+ "▁execution": 8225,
+ "inos": 8226,
+ "▁bul": 8227,
+ "grade": 8228,
+ "▁Mu": 8229,
+ "▁pil": 8230,
+ "writ": 8231,
+ "ifications": 8232,
+ "inese": 8233,
+ "▁Phili": 8234,
+ "dx": 8235,
+ "▁leading": 8236,
+ "▁Journal": 8237,
+ "oved": 8238,
+ "▁contro": 8239,
+ "нова": 8240,
+ "Yes": 8241,
+ "▁channel": 8242,
+ ")),": 8243,
+ "isten": 8244,
+ "aka": 8245,
+ "ToString": 8246,
+ "mas": 8247,
+ "▁ett": 8248,
+ "▁forces": 8249,
+ "ulations": 8250,
+ "▁Call": 8251,
+ "▁explanation": 8252,
+ "oring": 8253,
+ "ATA": 8254,
+ "chter": 8255,
+ "when": 8256,
+ "VC": 8257,
+ "▁Jahrh": 8258,
+ "Case": 8259,
+ "▁commands": 8260,
+ "▁rich": 8261,
+ "bus": 8262,
+ "Fe": 8263,
+ "mbox": 8264,
+ "▁recon": 8265,
+ "ño": 8266,
+ "▁shape": 8267,
+ "owy": 8268,
+ "entry": 8269,
+ "itable": 8270,
+ "▁election": 8271,
+ "ється": 8272,
+ "▁prep": 8273,
+ "vá": 8274,
+ "▁infin": 8275,
+ "lot": 8276,
+ "▁books": 8277,
+ "▁USA": 8278,
+ "лин": 8279,
+ "▁pom": 8280,
+ "▁nas": 8281,
+ "▁tags": 8282,
+ "▁executed": 8283,
+ "aille": 8284,
+ "lung": 8285,
+ "▁JavaScript": 8286,
+ "▁ball": 8287,
+ "▁ainsi": 8288,
+ "▁Pri": 8289,
+ "{$": 8290,
+ "▁UN": 8291,
+ "▁Ram": 8292,
+ "▁hear": 8293,
+ "▁Ubuntu": 8294,
+ ">();": 8295,
+ "▁pure": 8296,
+ "▁embed": 8297,
+ "ação": 8298,
+ "controller": 8299,
+ "▁married": 8300,
+ "▁Fol": 8301,
+ "famil": 8302,
+ "▁prec": 8303,
+ "▁recurs": 8304,
+ "pad": 8305,
+ "istration": 8306,
+ "▁respectively": 8307,
+ "[$": 8308,
+ "autor": 8309,
+ "▁grav": 8310,
+ "iera": 8311,
+ "azioni": 8312,
+ "▁Bul": 8313,
+ "▁Australia": 8314,
+ "mond": 8315,
+ "▁Tro": 8316,
+ "▁Ele": 8317,
+ "packages": 8318,
+ "msdn": 8319,
+ "▁Als": 8320,
+ "▁przy": 8321,
+ "ART": 8322,
+ "▁charge": 8323,
+ "▁applications": 8324,
+ "Unit": 8325,
+ "aren": 8326,
+ "▁sudden": 8327,
+ "ometer": 8328,
+ "▁dot": 8329,
+ "acji": 8330,
+ "ктор": 8331,
+ "imin": 8332,
+ "ening": 8333,
+ "▁donde": 8334,
+ "▁Ho": 8335,
+ "tree": 8336,
+ "mb": 8337,
+ "▁drag": 8338,
+ "aje": 8339,
+ "▁invalid": 8340,
+ "▁finish": 8341,
+ "laim": 8342,
+ "▁feed": 8343,
+ "▁Nap": 8344,
+ "room": 8345,
+ "images": 8346,
+ "▁сай": 8347,
+ "▁succ": 8348,
+ "iffer": 8349,
+ "▁año": 8350,
+ "▁cual": 8351,
+ "мери": 8352,
+ "DR": 8353,
+ "▁Bilder": 8354,
+ "бра": 8355,
+ "rait": 8356,
+ "pan": 8357,
+ "ень": 8358,
+ "▁distinct": 8359,
+ "▁Kn": 8360,
+ "önig": 8361,
+ "anced": 8362,
+ "▁loading": 8363,
+ "▁Techn": 8364,
+ "▁Sel": 8365,
+ "mus": 8366,
+ "▁rail": 8367,
+ "▁student": 8368,
+ "▁notice": 8369,
+ "▁sla": 8370,
+ "▁Да": 8371,
+ "▁guard": 8372,
+ "▁Day": 8373,
+ "вали": 8374,
+ "Option": 8375,
+ "aison": 8376,
+ "ipp": 8377,
+ "▁Jun": 8378,
+ "▁fell": 8379,
+ "▁absolute": 8380,
+ "ове": 8381,
+ "debug": 8382,
+ "▁Sud": 8383,
+ "пы": 8384,
+ "ugins": 8385,
+ "▁views": 8386,
+ "lay": 8387,
+ "▁surr": 8388,
+ "▁stood": 8389,
+ "▁ві": 8390,
+ "selected": 8391,
+ "гі": 8392,
+ "▁attributes": 8393,
+ "final": 8394,
+ "enda": 8395,
+ "▁Bon": 8396,
+ "ners": 8397,
+ "▁Wer": 8398,
+ "bur": 8399,
+ "ittel": 8400,
+ "▁moving": 8401,
+ "▁Plan": 8402,
+ "isches": 8403,
+ "Java": 8404,
+ "▁basis": 8405,
+ "▁Bus": 8406,
+ "▁Au": 8407,
+ "▁Ill": 8408,
+ "▁время": 8409,
+ "▁цент": 8410,
+ "handle": 8411,
+ "ступ": 8412,
+ "▁Far": 8413,
+ "▁oraz": 8414,
+ "ocr": 8415,
+ "▁seit": 8416,
+ "onder": 8417,
+ "дом": 8418,
+ ":/": 8419,
+ "chor": 8420,
+ "▁Town": 8421,
+ "▁definit": 8422,
+ "react": 8423,
+ "▁piece": 8424,
+ "▁Karl": 8425,
+ "CI": 8426,
+ "▁Application": 8427,
+ "unter": 8428,
+ "▁formed": 8429,
+ "▁пу": 8430,
+ "Bo": 8431,
+ "▁Daniel": 8432,
+ "▁пла": 8433,
+ "Body": 8434,
+ "})$": 8435,
+ "▁были": 8436,
+ "▁earth": 8437,
+ "гла": 8438,
+ "There": 8439,
+ "▁стра": 8440,
+ "▁ville": 8441,
+ "▁centre": 8442,
+ ")\r": 8443,
+ "▁helpful": 8444,
+ "▁++": 8445,
+ "▁CG": 8446,
+ "izione": 8447,
+ "▁Game": 8448,
+ "▁Which": 8449,
+ "▁pip": 8450,
+ "▁Portug": 8451,
+ "DS": 8452,
+ "▁describe": 8453,
+ "▁checking": 8454,
+ "▁manager": 8455,
+ "BO": 8456,
+ "▁Bundes": 8457,
+ "buch": 8458,
+ "▁decided": 8459,
+ "▁Jahrhundert": 8460,
+ "▁fif": 8461,
+ "efficient": 8462,
+ "anci": 8463,
+ "braries": 8464,
+ "▁fails": 8465,
+ "▁kernel": 8466,
+ "▁Gl": 8467,
+ "▁Nacional": 8468,
+ "▁proceed": 8469,
+ "▁fuer": 8470,
+ "▁living": 8471,
+ "▁successfully": 8472,
+ "▁faster": 8473,
+ "▁contre": 8474,
+ "▁prison": 8475,
+ "ORT": 8476,
+ "help": 8477,
+ "▁autor": 8478,
+ "ław": 8479,
+ "ają": 8480,
+ "▁Arm": 8481,
+ "▁provin": 8482,
+ "▁naam": 8483,
+ "/#": 8484,
+ "sed": 8485,
+ "▁gesch": 8486,
+ "▁мар": 8487,
+ "esk": 8488,
+ "term": 8489,
+ "▁Tex": 8490,
+ "iring": 8491,
+ "▁tools": 8492,
+ "PDF": 8493,
+ "▁ult": 8494,
+ "issenschaft": 8495,
+ "▁couldn": 8496,
+ "ding": 8497,
+ "Dep": 8498,
+ "{-": 8499,
+ "▁predict": 8500,
+ "antage": 8501,
+ "▁Like": 8502,
+ "▁Би": 8503,
+ "tools": 8504,
+ "estra": 8505,
+ "▁ki": 8506,
+ "▁Jim": 8507,
+ "star": 8508,
+ "▁remark": 8509,
+ "óg": 8510,
+ "nabla": 8511,
+ "▁Although": 8512,
+ "mode": 8513,
+ "Host": 8514,
+ "▁strange": 8515,
+ "None": 8516,
+ "black": 8517,
+ "▁Festival": 8518,
+ "▁IS": 8519,
+ "anza": 8520,
+ "▁(-": 8521,
+ "icket": 8522,
+ "кола": 8523,
+ "▁Jes": 8524,
+ "▁flex": 8525,
+ "▁À": 8526,
+ "▁Network": 8527,
+ "▁EX": 8528,
+ "▁enero": 8529,
+ "!”": 8530,
+ "▁Ort": 8531,
+ "▁alors": 8532,
+ "▁Original": 8533,
+ "▁zo": 8534,
+ "ными": 8535,
+ "▁spl": 8536,
+ "Draw": 8537,
+ "yond": 8538,
+ "──": 8539,
+ "▁Ot": 8540,
+ "▁dram": 8541,
+ "▁division": 8542,
+ "▁efficient": 8543,
+ "▁Га": 8544,
+ "▁vier": 8545,
+ "nak": 8546,
+ "LS": 8547,
+ "▁spirit": 8548,
+ "zeichnet": 8549,
+ "▁dici": 8550,
+ "clear": 8551,
+ "copy": 8552,
+ "yar": 8553,
+ "▁році": 8554,
+ "usqu": 8555,
+ "▁nous": 8556,
+ "▁blev": 8557,
+ "жде": 8558,
+ "Arg": 8559,
+ "▁performed": 8560,
+ "▁Make": 8561,
+ "▁Carol": 8562,
+ "etto": 8563,
+ "▁Sand": 8564,
+ "▁Disc": 8565,
+ "Enc": 8566,
+ "rero": 8567,
+ "hash": 8568,
+ "▁focus": 8569,
+ "▁attention": 8570,
+ "▁agre": 8571,
+ "▁divis": 8572,
+ "▁было": 8573,
+ "▁ej": 8574,
+ "▁march": 8575,
+ "▁phase": 8576,
+ "ías": 8577,
+ "▁phil": 8578,
+ "▁Pap": 8579,
+ "▁river": 8580,
+ "▁caused": 8581,
+ "plugin": 8582,
+ "▁Team": 8583,
+ "uler": 8584,
+ "▁$(\"#": 8585,
+ "iej": 8586,
+ "ISBN": 8587,
+ "nam": 8588,
+ "▁fight": 8589,
+ "vid": 8590,
+ "▁Lud": 8591,
+ "Selected": 8592,
+ ":@\"": 8593,
+ "▁Pod": 8594,
+ "▁années": 8595,
+ "arios": 8596,
+ "▁deutscher": 8597,
+ "▁NA": 8598,
+ "▁ию": 8599,
+ "▁dictionary": 8600,
+ "▁Ла": 8601,
+ "▁Tri": 8602,
+ "èn": 8603,
+ "▁political": 8604,
+ "ridge": 8605,
+ "atten": 8606,
+ "▁circle": 8607,
+ "▁transport": 8608,
+ "emas": 8609,
+ "FC": 8610,
+ "▁replaced": 8611,
+ "▁Aud": 8612,
+ "iska": 8613,
+ "Configuration": 8614,
+ "▁soort": 8615,
+ "▁Не": 8616,
+ "▁sequ": 8617,
+ "PRO": 8618,
+ "▁bud": 8619,
+ "▁{{": 8620,
+ "ließ": 8621,
+ "▁Mas": 8622,
+ "ders": 8623,
+ "usammen": 8624,
+ "esa": 8625,
+ "▁Ly": 8626,
+ "вро": 8627,
+ "mac": 8628,
+ "▁испо": 8629,
+ "▁suc": 8630,
+ "uy": 8631,
+ "▁illustr": 8632,
+ "▁primera": 8633,
+ "ilation": 8634,
+ "▁storage": 8635,
+ "▁params": 8636,
+ "kaz": 8637,
+ "▁terminal": 8638,
+ "раль": 8639,
+ "▁holds": 8640,
+ "лось": 8641,
+ "▁nad": 8642,
+ "”.": 8643,
+ "▁octubre": 8644,
+ "bul": 8645,
+ "▁hus": 8646,
+ "ULT": 8647,
+ "▁également": 8648,
+ "▁Mill": 8649,
+ "ład": 8650,
+ "▁contiene": 8651,
+ "\"?": 8652,
+ "▁>>>": 8653,
+ "Que": 8654,
+ " ": 8655,
+ "▁plain": 8656,
+ "ativa": 8657,
+ "ocker": 8658,
+ "Names": 8659,
+ "▁Jud": 8660,
+ "▁agree": 8661,
+ "▁Gemeinde": 8662,
+ "lare": 8663,
+ "каза": 8664,
+ "▁starts": 8665,
+ "▁price": 8666,
+ "Target": 8667,
+ "cus": 8668,
+ "▁Instead": 8669,
+ ".;": 8670,
+ "▁alternative": 8671,
+ "▁вла": 8672,
+ "IE": 8673,
+ "▁organiz": 8674,
+ "inu": 8675,
+ "▁completed": 8676,
+ "▁carry": 8677,
+ "atom": 8678,
+ "▁depending": 8679,
+ "▁Our": 8680,
+ "▁insp": 8681,
+ "▁&\\": 8682,
+ "aily": 8683,
+ "irection": 8684,
+ "фа": 8685,
+ "▁defe": 8686,
+ "TAC": 8687,
+ "▁designed": 8688,
+ "▁voir": 8689,
+ "break": 8690,
+ "▁partie": 8691,
+ "▁Jahren": 8692,
+ "▁studio": 8693,
+ "▁jour": 8694,
+ "▁Notes": 8695,
+ "fire": 8696,
+ "house": 8697,
+ "success": 8698,
+ "▁Juan": 8699,
+ "JS": 8700,
+ "▁Custom": 8701,
+ "▁besch": 8702,
+ "▁stated": 8703,
+ "bootstrap": 8704,
+ "ött": 8705,
+ "ozzá": 8706,
+ "▁CON": 8707,
+ "hav": 8708,
+ "▁sleep": 8709,
+ "eda": 8710,
+ "hot": 8711,
+ "ánd": 8712,
+ "▁Sy": 8713,
+ "▁temps": 8714,
+ "amar": 8715,
+ "▁scal": 8716,
+ "▁ast": 8717,
+ "▁opening": 8718,
+ "clipse": 8719,
+ "▁programming": 8720,
+ "▁letters": 8721,
+ "▁profile": 8722,
+ "nah": 8723,
+ "▁beyond": 8724,
+ "▁Further": 8725,
+ "faces": 8726,
+ "▁chart": 8727,
+ "зда": 8728,
+ "aign": 8729,
+ "ній": 8730,
+ "▁Rol": 8731,
+ "овано": 8732,
+ "terior": 8733,
+ "wed": 8734,
+ "▁herself": 8735,
+ "▁ng": 8736,
+ "anguages": 8737,
+ "}=\\": 8738,
+ "ynamic": 8739,
+ "▁jug": 8740,
+ "▁Example": 8741,
+ "▁(†": 8742,
+ "▁playing": 8743,
+ "▁usage": 8744,
+ "▁managed": 8745,
+ "▁Natur": 8746,
+ "тери": 8747,
+ "▁Et": 8748,
+ "eria": 8749,
+ "▁daughter": 8750,
+ "нием": 8751,
+ "Fragment": 8752,
+ "▁hol": 8753,
+ "Fl": 8754,
+ "ографи": 8755,
+ "▁ihn": 8756,
+ "üh": 8757,
+ "instance": 8758,
+ "▁comun": 8759,
+ "▁truth": 8760,
+ "▁само": 8761,
+ "▁implemented": 8762,
+ "▁anyway": 8763,
+ "▁Cro": 8764,
+ "фе": 8765,
+ "GC": 8766,
+ "ubuntu": 8767,
+ "types": 8768,
+ "ês": 8769,
+ ".~\\": 8770,
+ "fold": 8771,
+ "▁joined": 8772,
+ "??": 8773,
+ "▁mé": 8774,
+ "▁wild": 8775,
+ "клю": 8776,
+ "rowser": 8777,
+ "▁Home": 8778,
+ "skiej": 8779,
+ "▁JOIN": 8780,
+ "▁juin": 8781,
+ "hof": 8782,
+ "▁dataset": 8783,
+ "жду": 8784,
+ "'))": 8785,
+ "▁miejs": 8786,
+ "API": 8787,
+ "▁edited": 8788,
+ "ools": 8789,
+ "▁seeing": 8790,
+ "ijd": 8791,
+ "▁procedure": 8792,
+ "▁Bras": 8793,
+ "▁signed": 8794,
+ "▁externos": 8795,
+ "▁disapp": 8796,
+ "▁Direct": 8797,
+ "cyc": 8798,
+ "▁consult": 8799,
+ "örd": 8800,
+ "Widget": 8801,
+ "cious": 8802,
+ "sect": 8803,
+ "▁Ди": 8804,
+ "▁wind": 8805,
+ "▁Archivado": 8806,
+ "aml": 8807,
+ "сс": 8808,
+ "Wh": 8809,
+ "kbd": 8810,
+ "▁Army": 8811,
+ "▁suffer": 8812,
+ "artifact": 8813,
+ "▁resolve": 8814,
+ "▁Sport": 8815,
+ "▁це": 8816,
+ "idas": 8817,
+ "▁tax": 8818,
+ "idi": 8819,
+ "▁actions": 8820,
+ "пра": 8821,
+ "pués": 8822,
+ "▁naj": 8823,
+ "False": 8824,
+ "▁chance": 8825,
+ "▁тако": 8826,
+ "äd": 8827,
+ "▁dol": 8828,
+ "▁env": 8829,
+ "▁basically": 8830,
+ "▁Council": 8831,
+ "zte": 8832,
+ "▁displayed": 8833,
+ "nil": 8834,
+ "complete": 8835,
+ "▁Lem": 8836,
+ "iance": 8837,
+ "▁основ": 8838,
+ "▁depend": 8839,
+ "plom": 8840,
+ "ensus": 8841,
+ "uts": 8842,
+ "▁Hot": 8843,
+ "bitr": 8844,
+ "▁validation": 8845,
+ "abb": 8846,
+ "▁тре": 8847,
+ "km": 8848,
+ "zd": 8849,
+ "öff": 8850,
+ "WE": 8851,
+ "▁interested": 8852,
+ "▁{\"": 8853,
+ "aro": 8854,
+ "▁correl": 8855,
+ "▁dedic": 8856,
+ "▁lists": 8857,
+ "▁Bibliografia": 8858,
+ "▁earlier": 8859,
+ "program": 8860,
+ "▁première": 8861,
+ "front": 8862,
+ "Tab": 8863,
+ "ству": 8864,
+ "drop": 8865,
+ "▁fear": 8866,
+ "▁Enlaces": 8867,
+ "▁Capt": 8868,
+ "▁realiz": 8869,
+ "▁hal": 8870,
+ "▁instances": 8871,
+ "▁susp": 8872,
+ "illing": 8873,
+ "%;": 8874,
+ "{}": 8875,
+ "||": 8876,
+ "▁partition": 8877,
+ "▁Build": 8878,
+ "▁wo": 8879,
+ "▁Пер": 8880,
+ "▁director": 8881,
+ "▁Sin": 8882,
+ "тия": 8883,
+ "rsg": 8884,
+ "ouver": 8885,
+ "▁nearly": 8886,
+ "oda": 8887,
+ "ктив": 8888,
+ "▁sir": 8889,
+ "IME": 8890,
+ "▁janvier": 8891,
+ "▁Win": 8892,
+ "Build": 8893,
+ "ieurs": 8894,
+ "INE": 8895,
+ "double": 8896,
+ "Last": 8897,
+ "▁policy": 8898,
+ "store": 8899,
+ "▁observed": 8900,
+ "▁familie": 8901,
+ "nica": 8902,
+ "rey": 8903,
+ "зь": 8904,
+ "▁Year": 8905,
+ "▁developed": 8906,
+ "▁Institute": 8907,
+ "▁reply": 8908,
+ "Comple": 8909,
+ "ician": 8910,
+ "▁Guer": 8911,
+ "▁dall": 8912,
+ "▁desp": 8913,
+ "▁Football": 8914,
+ "Empty": 8915,
+ "cken": 8916,
+ "unda": 8917,
+ "▁Ur": 8918,
+ "▁ig": 8919,
+ "▁Atl": 8920,
+ "author": 8921,
+ "▁Bol": 8922,
+ "zig": 8923,
+ "nat": 8924,
+ "št": 8925,
+ "security": 8926,
+ "onic": 8927,
+ "▁pes": 8928,
+ "itan": 8929,
+ "▁Extern": 8930,
+ "jan": 8931,
+ "VAL": 8932,
+ "▁им": 8933,
+ "bold": 8934,
+ "▁ва": 8935,
+ "▁Мо": 8936,
+ "▁disput": 8937,
+ "▁trick": 8938,
+ "▁ped": 8939,
+ ")^{": 8940,
+ "into": 8941,
+ "Sim": 8942,
+ "▁parallel": 8943,
+ "fox": 8944,
+ "normal": 8945,
+ "inent": 8946,
+ "педи": 8947,
+ "hold": 8948,
+ "OK": 8949,
+ "▁chem": 8950,
+ "▁twice": 8951,
+ "▁username": 8952,
+ "ič": 8953,
+ "▁representation": 8954,
+ "▁journal": 8955,
+ "▁:-": 8956,
+ "▁batt": 8957,
+ "\\%": 8958,
+ "▁certainly": 8959,
+ "▁Exception": 8960,
+ "eps": 8961,
+ "shot": 8962,
+ "ategy": 8963,
+ "Show": 8964,
+ "▁Carl": 8965,
+ "rig": 8966,
+ "▁reported": 8967,
+ "bottom": 8968,
+ "TF": 8969,
+ "▁Francisco": 8970,
+ "nap": 8971,
+ "▁Championship": 8972,
+ "▁court": 8973,
+ "▁sources": 8974,
+ "iour": 8975,
+ "▁conserv": 8976,
+ "dict": 8977,
+ "▁Ру": 8978,
+ "IB": 8979,
+ "▁Ve": 8980,
+ "▁№": 8981,
+ "▁ER": 8982,
+ "\"));": 8983,
+ "▁Point": 8984,
+ "azine": 8985,
+ "▁internet": 8986,
+ "дна": 8987,
+ "▁carried": 8988,
+ "▁Field": 8989,
+ "axis": 8990,
+ "▁Sun": 8991,
+ "▁ave": 8992,
+ "пис": 8993,
+ "ян": 8994,
+ "asy": 8995,
+ "▁julio": 8996,
+ "▁depuis": 8997,
+ "▁suggestion": 8998,
+ "[[": 8999,
+ "▁Archive": 9000,
+ "ęp": 9001,
+ "▁Pra": 9002,
+ "reh": 9003,
+ "▁demonstr": 9004,
+ "фі": 9005,
+ "cmd": 9006,
+ "▁wasn": 9007,
+ "▁phone": 9008,
+ "upload": 9009,
+ "aya": 9010,
+ "тора": 9011,
+ "lines": 9012,
+ "▁indu": 9013,
+ "▁vot": 9014,
+ "▁espa": 9015,
+ "▁bin": 9016,
+ "▁после": 9017,
+ "plan": 9018,
+ "▁junio": 9019,
+ "orial": 9020,
+ "free": 9021,
+ "sterreich": 9022,
+ "▁ду": 9023,
+ "▁linked": 9024,
+ "▁enable": 9025,
+ "PC": 9026,
+ "▁density": 9027,
+ "▁Egy": 9028,
+ "yo": 9029,
+ "endre": 9030,
+ "▁съ": 9031,
+ "▁italiano": 9032,
+ "▁AR": 9033,
+ "▁Pers": 9034,
+ "férés": 9035,
+ "▁скла": 9036,
+ "Var": 9037,
+ "▁Once": 9038,
+ "Red": 9039,
+ "buffer": 9040,
+ "▁Enter": 9041,
+ "▁Š": 9042,
+ "imiento": 9043,
+ "Store": 9044,
+ "▁health": 9045,
+ "vat": 9046,
+ "IST": 9047,
+ "Oh": 9048,
+ "▁kw": 9049,
+ "▁riv": 9050,
+ "▁somewhere": 9051,
+ "ografie": 9052,
+ "private": 9053,
+ "кти": 9054,
+ "▁delay": 9055,
+ "▁Http": 9056,
+ "job": 9057,
+ "rael": 9058,
+ "empor": 9059,
+ "▁diciembre": 9060,
+ "ête": 9061,
+ "цу": 9062,
+ "▁commit": 9063,
+ "oso": 9064,
+ "Values": 9065,
+ "▁headers": 9066,
+ "transform": 9067,
+ "▁processing": 9068,
+ "rå": 9069,
+ "▁Ah": 9070,
+ "▁Node": 9071,
+ "------------": 9072,
+ "▁faire": 9073,
+ "▁hun": 9074,
+ "Player": 9075,
+ "▁review": 9076,
+ "гда": 9077,
+ "▁limited": 9078,
+ "▁Property": 9079,
+ "▁serve": 9080,
+ "riage": 9081,
+ "▁Master": 9082,
+ "▁kann": 9083,
+ "crete": 9084,
+ "phere": 9085,
+ "ёр": 9086,
+ "▁chief": 9087,
+ "▁scene": 9088,
+ "kin": 9089,
+ "▁uniform": 9090,
+ "▁febrero": 9091,
+ "\"}": 9092,
+ "illo": 9093,
+ "ITE": 9094,
+ "ouvel": 9095,
+ "usepackage": 9096,
+ "enth": 9097,
+ "▁quickly": 9098,
+ "Lambda": 9099,
+ "xes": 9100,
+ "▁cells": 9101,
+ "rog": 9102,
+ "amin": 9103,
+ "▁Мар": 9104,
+ "▁mayor": 9105,
+ "player": 9106,
+ "++;": 9107,
+ "▁Насе": 9108,
+ "▁safe": 9109,
+ "▁veloc": 9110,
+ "▁обра": 9111,
+ "Database": 9112,
+ "neh": 9113,
+ "Vert": 9114,
+ "▁fle": 9115,
+ "▁фор": 9116,
+ "▁foreign": 9117,
+ "Abstract": 9118,
+ "▁magn": 9119,
+ "▁modified": 9120,
+ "▁military": 9121,
+ "▁monde": 9122,
+ "▁Action": 9123,
+ "▁bank": 9124,
+ "Serial": 9125,
+ "▁continuous": 9126,
+ "▁gel": 9127,
+ "▁physical": 9128,
+ "▁introduced": 9129,
+ "uture": 9130,
+ "rick": 9131,
+ "▁presented": 9132,
+ "▁Prov": 9133,
+ "▁Both": 9134,
+ "Pos": 9135,
+ "super": 9136,
+ "": 9137,
+ "▁finding": 9138,
+ "nel": 9139,
+ "unde": 9140,
+ "▁från": 9141,
+ "skim": 9142,
+ "▁Hill": 9143,
+ "fn": 9144,
+ "▁Canad": 9145,
+ "▁intended": 9146,
+ "ozzáférés": 9147,
+ "▁juillet": 9148,
+ "▁Wars": 9149,
+ "▁successful": 9150,
+ "▁charg": 9151,
+ "iele": 9152,
+ "omething": 9153,
+ "oku": 9154,
+ "fetch": 9155,
+ "▁}}": 9156,
+ "bank": 9157,
+ "operatorname": 9158,
+ "▁Color": 9159,
+ "▁Card": 9160,
+ "tu": 9161,
+ "▁\",": 9162,
+ "wid": 9163,
+ "▁gep": 9164,
+ "XML": 9165,
+ "================": 9166,
+ "▁Virgin": 9167,
+ "ährend": 9168,
+ "licated": 9169,
+ "Dir": 9170,
+ "zero": 9171,
+ "▁Kal": 9172,
+ "▁Party": 9173,
+ "▁å": 9174,
+ "price": 9175,
+ "don": 9176,
+ "▁warning": 9177,
+ "▁Bad": 9178,
+ "▁Supp": 9179,
+ "▁Liga": 9180,
+ "▁Pierre": 9181,
+ "Record": 9182,
+ "ulator": 9183,
+ "▁Rome": 9184,
+ "▁theorem": 9185,
+ "▁entirely": 9186,
+ "ским": 9187,
+ "het": 9188,
+ "▁dopo": 9189,
+ "Next": 9190,
+ "mlung": 9191,
+ "wig": 9192,
+ "▁Ath": 9193,
+ "▁Sou": 9194,
+ "licher": 9195,
+ "▁sudo": 9196,
+ "ests": 9197,
+ "хів": 9198,
+ "▁septiembre": 9199,
+ "▁micro": 9200,
+ "▁trop": 9201,
+ "fit": 9202,
+ "Core": 9203,
+ "▁Radio": 9204,
+ "▁Organ": 9205,
+ "▁Power": 9206,
+ "CF": 9207,
+ "▁Last": 9208,
+ "▁oppos": 9209,
+ "▁offset": 9210,
+ "▁regia": 9211,
+ "▁minimum": 9212,
+ "▁helped": 9213,
+ "andon": 9214,
+ "ifying": 9215,
+ "ruit": 9216,
+ "enschapp": 9217,
+ "▁bere": 9218,
+ "VM": 9219,
+ "▁Awards": 9220,
+ "▁agr": 9221,
+ "ynomial": 9222,
+ "enced": 9223,
+ "▁devices": 9224,
+ "▁bot": 9225,
+ "▁firm": 9226,
+ "▁writer": 9227,
+ "▁ring": 9228,
+ ".-": 9229,
+ "istes": 9230,
+ "lä": 9231,
+ "▁mel": 9232,
+ "entation": 9233,
+ "▁Schw": 9234,
+ "▁nome": 9235,
+ "▁pobla": 9236,
+ "▁woj": 9237,
+ "▁ul": 9238,
+ "ento": 9239,
+ "ых": 9240,
+ "▁resist": 9241,
+ "▁remains": 9242,
+ "▁Ca": 9243,
+ "aña": 9244,
+ "▁Court": 9245,
+ "utable": 9246,
+ "entially": 9247,
+ "▁trat": 9248,
+ "▁Visual": 9249,
+ "▁restrict": 9250,
+ "▁previously": 9251,
+ "cation": 9252,
+ "▁осо": 9253,
+ "▁MySQL": 9254,
+ "för": 9255,
+ "cala": 9256,
+ "▁culture": 9257,
+ "live": 9258,
+ "▁accepted": 9259,
+ "Did": 9260,
+ "▁hous": 9261,
+ "▁selection": 9262,
+ "▁decre": 9263,
+ "margin": 9264,
+ "urb": 9265,
+ "▁Inc": 9266,
+ "▁Many": 9267,
+ "ibt": 9268,
+ "▁succeed": 9269,
+ "Binding": 9270,
+ "cí": 9271,
+ "▁Rog": 9272,
+ "▁shouldn": 9273,
+ "cloud": 9274,
+ "▁dz": 9275,
+ "вав": 9276,
+ "▁pix": 9277,
+ "small": 9278,
+ "▁projects": 9279,
+ "▁OK": 9280,
+ "▁latest": 9281,
+ "▁references": 9282,
+ "Program": 9283,
+ "▁erst": 9284,
+ "▁як": 9285,
+ "▁kam": 9286,
+ "▁Camb": 9287,
+ "ellt": 9288,
+ "öd": 9289,
+ "none": 9290,
+ "▁jusqu": 9291,
+ "king": 9292,
+ "▁Ped": 9293,
+ "assert": 9294,
+ "CS": 9295,
+ "rito": 9296,
+ "essa": 9297,
+ "лько": 9298,
+ "▁Von": 9299,
+ "▁Edward": 9300,
+ "▁impossible": 9301,
+ "np": 9302,
+ "words": 9303,
+ "ielt": 9304,
+ "▁Page": 9305,
+ "lers": 9306,
+ "▁pier": 9307,
+ "▁области": 9308,
+ "ittee": 9309,
+ "▁([": 9310,
+ "▁trust": 9311,
+ "NG": 9312,
+ "redu": 9313,
+ "<<": 9314,
+ "rial": 9315,
+ "▁products": 9316,
+ "▁Ern": 9317,
+ "rière": 9318,
+ "гов": 9319,
+ "▁Reich": 9320,
+ "▁Road": 9321,
+ "▁nested": 9322,
+ "Display": 9323,
+ "▁strength": 9324,
+ "ografía": 9325,
+ "▁announced": 9326,
+ "▁Science": 9327,
+ "▁райо": 9328,
+ "Parameter": 9329,
+ "▁Task": 9330,
+ "uments": 9331,
+ "▁adopt": 9332,
+ "▁Only": 9333,
+ "ють": 9334,
+ "▁cli": 9335,
+ "▁lem": 9336,
+ "stood": 9337,
+ "▁FI": 9338,
+ "ências": 9339,
+ "ponents": 9340,
+ "]$": 9341,
+ "comment": 9342,
+ "▁ya": 9343,
+ "should": 9344,
+ "ike": 9345,
+ "tim": 9346,
+ "ellig": 9347,
+ "▁sending": 9348,
+ "▁ajax": 9349,
+ "▁noviembre": 9350,
+ "umes": 9351,
+ "▁weiter": 9352,
+ "▁Dans": 9353,
+ "opp": 9354,
+ "▁septembre": 9355,
+ "otimes": 9356,
+ "ző": 9357,
+ "▁ep": 9358,
+ "vere": 9359,
+ "▁oh": 9360,
+ ":=": 9361,
+ "▁Song": 9362,
+ "”,": 9363,
+ "▁viv": 9364,
+ "▁queries": 9365,
+ "▁vá": 9366,
+ "▁décembre": 9367,
+ "▁unable": 9368,
+ "▁erh": 9369,
+ "▁`-": 9370,
+ "▁Lee": 9371,
+ "▁ersten": 9372,
+ "ôt": 9373,
+ "стве": 9374,
+ "TS": 9375,
+ "▁fragment": 9376,
+ "▁wide": 9377,
+ "▁suff": 9378,
+ "▁dut": 9379,
+ "▁Vere": 9380,
+ "іс": 9381,
+ "ading": 9382,
+ "iego": 9383,
+ "icago": 9384,
+ "▁Argent": 9385,
+ "orer": 9386,
+ "ennes": 9387,
+ "▁Leb": 9388,
+ "linux": 9389,
+ "acing": 9390,
+ "▁broken": 9391,
+ "tp": 9392,
+ "ío": 9393,
+ "abeth": 9394,
+ "istas": 9395,
+ "gew": 9396,
+ "ième": 9397,
+ "cas": 9398,
+ "▁preced": 9399,
+ "▁Dal": 9400,
+ "▁compared": 9401,
+ "equiv": 9402,
+ "illy": 9403,
+ "teen": 9404,
+ "▁Console": 9405,
+ "▁strict": 9406,
+ "itaire": 9407,
+ "▁ED": 9408,
+ "entials": 9409,
+ "▁perman": 9410,
+ "▁tous": 9411,
+ "▁geme": 9412,
+ "▁extrem": 9413,
+ "▁окру": 9414,
+ "kg": 9415,
+ "▁heavy": 9416,
+ "▁avril": 9417,
+ "▁anti": 9418,
+ "▁octobre": 9419,
+ "utf": 9420,
+ "helm": 9421,
+ "amples": 9422,
+ "▁(_": 9423,
+ "aken": 9424,
+ "▁dear": 9425,
+ "▁opinion": 9426,
+ "▁fish": 9427,
+ "▁Alexander": 9428,
+ "iw": 9429,
+ "им": 9430,
+ "cadem": 9431,
+ "▁reflect": 9432,
+ "▁др": 9433,
+ "▁trib": 9434,
+ "common": 9435,
+ "▁clearly": 9436,
+ "▁saf": 9437,
+ "=\"@+": 9438,
+ "▁Мос": 9439,
+ "сите": 9440,
+ "eqnarray": 9441,
+ "nung": 9442,
+ "▁relationship": 9443,
+ "▁Sem": 9444,
+ "▁killed": 9445,
+ "ted": 9446,
+ "uno": 9447,
+ "▁лі": 9448,
+ "▁wid": 9449,
+ "anning": 9450,
+ "▁panel": 9451,
+ "▁Leben": 9452,
+ "▁ruby": 9453,
+ "ansion": 9454,
+ "▁aren": 9455,
+ "tabular": 9456,
+ "alet": 9457,
+ "}$$": 9458,
+ "▁Lake": 9459,
+ "▁suite": 9460,
+ "▁minor": 9461,
+ "Hozzáférés": 9462,
+ "▁xmlns": 9463,
+ "DIR": 9464,
+ "driver": 9465,
+ "ints": 9466,
+ "▁vic": 9467,
+ "AND": 9468,
+ "prim": 9469,
+ "сылки": 9470,
+ "▁Ox": 9471,
+ "TC": 9472,
+ "rivial": 9473,
+ "atie": 9474,
+ "▁eight": 9475,
+ "▁conflic": 9476,
+ "angel": 9477,
+ "▁Begr": 9478,
+ "▁explicitly": 9479,
+ "ются": 9480,
+ "▁Dev": 9481,
+ "render": 9482,
+ "▁reprodu": 9483,
+ "▁cré": 9484,
+ "Gu": 9485,
+ "MB": 9486,
+ "▁kön": 9487,
+ "▁remained": 9488,
+ "▁kl": 9489,
+ "хов": 9490,
+ "▁byl": 9491,
+ "Phi": 9492,
+ "▁detail": 9493,
+ "jav": 9494,
+ "▁mouse": 9495,
+ "Bas": 9496,
+ "ię": 9497,
+ "asser": 9498,
+ "hs": 9499,
+ "▁shift": 9500,
+ "▁últ": 9501,
+ "rand": 9502,
+ "▁btn": 9503,
+ "raz": 9504,
+ "▁pul": 9505,
+ "▁statements": 9506,
+ "filename": 9507,
+ "▁prompt": 9508,
+ "élé": 9509,
+ "ikz": 9510,
+ "▁Sus": 9511,
+ "▁debut": 9512,
+ "Stat": 9513,
+ "forms": 9514,
+ "▁Hein": 9515,
+ "stadt": 9516,
+ "ennis": 9517,
+ "пол": 9518,
+ "arante": 9519,
+ "цій": 9520,
+ "▁queue": 9521,
+ "▁reci": 9522,
+ "▁sta": 9523,
+ "ynchron": 9524,
+ "centering": 9525,
+ "Some": 9526,
+ "Graph": 9527,
+ "▁tested": 9528,
+ "▁Kunst": 9529,
+ "ом": 9530,
+ "▁Nothing": 9531,
+ "ieu": 9532,
+ "“.": 9533,
+ "Bundle": 9534,
+ "▁oficial": 9535,
+ "allow": 9536,
+ "▁React": 9537,
+ "▁Library": 9538,
+ "blue": 9539,
+ "▁verw": 9540,
+ "▁pare": 9541,
+ "▁Friedrich": 9542,
+ "▁aware": 9543,
+ "Exp": 9544,
+ "▁effects": 9545,
+ "▁горо": 9546,
+ "lopedia": 9547,
+ "▁Ven": 9548,
+ "rale": 9549,
+ "▁Final": 9550,
+ "▁propos": 9551,
+ "lacement": 9552,
+ "kten": 9553,
+ "▁novel": 9554,
+ "orter": 9555,
+ "▁Germany": 9556,
+ "▁django": 9557,
+ "▁transition": 9558,
+ "▁happened": 9559,
+ "▁beautiful": 9560,
+ "▁neither": 9561,
+ "▁libraries": 9562,
+ "▁hide": 9563,
+ "alg": 9564,
+ "▁aspect": 9565,
+ "▁forget": 9566,
+ "cademy": 9567,
+ "onte": 9568,
+ "refix": 9569,
+ "▁cloud": 9570,
+ "ned": 9571,
+ "cdots": 9572,
+ "register": 9573,
+ "nym": 9574,
+ ".):": 9575,
+ "▁Jew": 9576,
+ "▁très": 9577,
+ "ниче": 9578,
+ "▁Dor": 9579,
+ "▁proc": 9580,
+ "▁gan": 9581,
+ "▁є": 9582,
+ "▁Sav": 9583,
+ "ví": 9584,
+ "Settings": 9585,
+ "▁Vari": 9586,
+ "▁cours": 9587,
+ "Ro": 9588,
+ "▁conj": 9589,
+ "▁reasons": 9590,
+ "▁reader": 9591,
+ "лександ": 9592,
+ "icate": 9593,
+ "}),": 9594,
+ "▁tasks": 9595,
+ "▁Ray": 9596,
+ "▁ric": 9597,
+ "Ke": 9598,
+ "onie": 9599,
+ "rf": 9600,
+ ")[": 9601,
+ "▁subsequ": 9602,
+ "▁Turn": 9603,
+ "▁VIAF": 9604,
+ "mathsf": 9605,
+ "HE": 9606,
+ "▁declare": 9607,
+ "▁protocol": 9608,
+ "▁PC": 9609,
+ "цион": 9610,
+ "ViewById": 9611,
+ "▁animation": 9612,
+ "▁confused": 9613,
+ "вич": 9614,
+ "▁enabled": 9615,
+ "owo": 9616,
+ "ást": 9617,
+ "öt": 9618,
+ "▁mand": 9619,
+ "▁Rail": 9620,
+ "fields": 9621,
+ "▁Kap": 9622,
+ "▁algebra": 9623,
+ "▁Су": 9624,
+ "férence": 9625,
+ "▁Current": 9626,
+ "сно": 9627,
+ "▁Lim": 9628,
+ "Params": 9629,
+ "▁Antonio": 9630,
+ "▁tv": 9631,
+ "late": 9632,
+ "ifer": 9633,
+ "Entry": 9634,
+ "▁Serv": 9635,
+ "▁musical": 9636,
+ "▁trace": 9637,
+ "▁scient": 9638,
+ "fic": 9639,
+ "▁forgot": 9640,
+ "video": 9641,
+ "▁older": 9642,
+ "Tree": 9643,
+ "▁uns": 9644,
+ "ники": 9645,
+ "▁Europa": 9646,
+ "▁Zwe": 9647,
+ "▁бе": 9648,
+ "▁vec": 9649,
+ "жу": 9650,
+ "▁▁▁▁▁▁▁▁▁▁▁": 9651,
+ "Match": 9652,
+ "span": 9653,
+ "▁blank": 9654,
+ "▁später": 9655,
+ "▁Ty": 9656,
+ "▁dict": 9657,
+ "ña": 9658,
+ "▁confirm": 9659,
+ "▁vý": 9660,
+ "зан": 9661,
+ "Rel": 9662,
+ "film": 9663,
+ "▁Rot": 9664,
+ "▁Hy": 9665,
+ "ках": 9666,
+ "▁demand": 9667,
+ "▁minist": 9668,
+ "▁Madrid": 9669,
+ "▁usual": 9670,
+ "spiel": 9671,
+ "eros": 9672,
+ "▁tutorial": 9673,
+ "▁Ссылки": 9674,
+ "sys": 9675,
+ "циаль": 9676,
+ "▁spread": 9677,
+ "▁convers": 9678,
+ "▁roll": 9679,
+ "artifactId": 9680,
+ "▁Number": 9681,
+ "▁symmet": 9682,
+ "▁Mult": 9683,
+ "expected": 9684,
+ "▁axis": 9685,
+ "▁matching": 9686,
+ "▁food": 9687,
+ "groupId": 9688,
+ "Mapp": 9689,
+ "▁свя": 9690,
+ "▁vend": 9691,
+ "Found": 9692,
+ "otto": 9693,
+ "Cat": 9694,
+ "crit": 9695,
+ "istent": 9696,
+ "▁drei": 9697,
+ "▁ended": 9698,
+ "▁Tele": 9699,
+ "component": 9700,
+ "▁involved": 9701,
+ "▁Estados": 9702,
+ "▁danger": 9703,
+ "▁chain": 9704,
+ "▁Prom": 9705,
+ "hom": 9706,
+ "▁polít": 9707,
+ "cop": 9708,
+ "▁nap": 9709,
+ "rif": 9710,
+ "plements": 9711,
+ "▁vent": 9712,
+ "anna": 9713,
+ "anted": 9714,
+ "dated": 9715,
+ "anth": 9716,
+ "▁threads": 9717,
+ "зова": 9718,
+ "▁станов": 9719,
+ "▁eerst": 9720,
+ "buf": 9721,
+ "heid": 9722,
+ "▁Ru": 9723,
+ "▁Prim": 9724,
+ "▁migr": 9725,
+ "▁Unidos": 9726,
+ "▁arbitr": 9727,
+ "▁roman": 9728,
+ "ountry": 9729,
+ "ultur": 9730,
+ "▁König": 9731,
+ "▁annot": 9732,
+ "aching": 9733,
+ "▁Haupt": 9734,
+ "umin": 9735,
+ "▁hem": 9736,
+ "ckets": 9737,
+ "bau": 9738,
+ "ection": 9739,
+ "eft": 9740,
+ "▁packages": 9741,
+ "▁Kur": 9742,
+ "thur": 9743,
+ "▁pays": 9744,
+ "liament": 9745,
+ "▁Бу": 9746,
+ "▁cada": 9747,
+ "points": 9748,
+ "ocket": 9749,
+ "▁verb": 9750,
+ "лее": 9751,
+ "▁submit": 9752,
+ "▁san": 9753,
+ "ruby": 9754,
+ "▁east": 9755,
+ "kov": 9756,
+ "▁Verlag": 9757,
+ "▁spot": 9758,
+ "ppo": 9759,
+ "Each": 9760,
+ "jekt": 9761,
+ "▁Biographie": 9762,
+ "▁news": 9763,
+ "▁país": 9764,
+ "ufact": 9765,
+ "▁dia": 9766,
+ "кова": 9767,
+ "▁accompl": 9768,
+ "▁Ét": 9769,
+ "ilities": 9770,
+ "▁ihm": 9771,
+ "invoke": 9772,
+ "▁append": 9773,
+ ".),": 9774,
+ "▁lab": 9775,
+ "anging": 9776,
+ "istan": 9777,
+ "resol": 9778,
+ "▁Section": 9779,
+ "Parent": 9780,
+ "moz": 9781,
+ "Mat": 9782,
+ "styles": 9783,
+ "unden": 9784,
+ "“,": 9785,
+ "irtschaft": 9786,
+ "ким": 9787,
+ "▁Finally": 9788,
+ "phen": 9789,
+ "▁Pac": 9790,
+ "▁ArrayList": 9791,
+ "▁recover": 9792,
+ "▁education": 9793,
+ "models": 9794,
+ "ped": 9795,
+ "▁happy": 9796,
+ "чу": 9797,
+ "▁guerra": 9798,
+ "media": 9799,
+ "OF": 9800,
+ "▁ensure": 9801,
+ "Mark": 9802,
+ "database": 9803,
+ "oggle": 9804,
+ "▁publish": 9805,
+ "OW": 9806,
+ "▁Bau": 9807,
+ "?.": 9808,
+ "▁части": 9809,
+ "▁repository": 9810,
+ "▁Matt": 9811,
+ "high": 9812,
+ "oven": 9813,
+ "▁ger": 9814,
+ "▁unknown": 9815,
+ "Amer": 9816,
+ "▁Brown": 9817,
+ "ALL": 9818,
+ "▁resulting": 9819,
+ "▁bor": 9820,
+ "▁poet": 9821,
+ "ними": 9822,
+ "Email": 9823,
+ "Font": 9824,
+ "▁hist": 9825,
+ "▁today": 9826,
+ "▁Berg": 9827,
+ "▁buttons": 9828,
+ "тал": 9829,
+ "▁sni": 9830,
+ "▁челов": 9831,
+ "Cre": 9832,
+ "▁union": 9833,
+ "▁zich": 9834,
+ "ishop": 9835,
+ "▁quando": 9836,
+ "Po": 9837,
+ "CTION": 9838,
+ "▁Cost": 9839,
+ "судар": 9840,
+ "erved": 9841,
+ "Note": 9842,
+ "Equal": 9843,
+ "лия": 9844,
+ "бур": 9845,
+ "▁abstract": 9846,
+ "stop": 9847,
+ "▁advice": 9848,
+ "▁icon": 9849,
+ "▁travel": 9850,
+ "BS": 9851,
+ "vens": 9852,
+ "▁batch": 9853,
+ "lique": 9854,
+ "sheet": 9855,
+ "▁ihre": 9856,
+ "emon": 9857,
+ "berto": 9858,
+ "▁assigned": 9859,
+ "ью": 9860,
+ "Phone": 9861,
+ "▁award": 9862,
+ "▁functionality": 9863,
+ "alla": 9864,
+ "▁Dam": 9865,
+ "▁ciudad": 9866,
+ "▁cluster": 9867,
+ "Description": 9868,
+ "▁sheet": 9869,
+ "▁Australian": 9870,
+ "▁».": 9871,
+ "▁\"<": 9872,
+ "▁wondering": 9873,
+ "aine": 9874,
+ "▁represented": 9875,
+ "kappa": 9876,
+ "nb": 9877,
+ "▁sy": 9878,
+ "▁Kö": 9879,
+ "=\"#": 9880,
+ "▁seven": 9881,
+ "Directory": 9882,
+ "▁sister": 9883,
+ "plates": 9884,
+ "▁luck": 9885,
+ "▁remaining": 9886,
+ "▁Vill": 9887,
+ "werk": 9888,
+ "anni": 9889,
+ "etti": 9890,
+ "func": 9891,
+ "▁ban": 9892,
+ "ims": 9893,
+ "miss": 9894,
+ "agraph": 9895,
+ "екси": 9896,
+ "▁Ref": 9897,
+ "nitt": 9898,
+ "▁Gab": 9899,
+ "▁andere": 9900,
+ "▁jedoch": 9901,
+ "results": 9902,
+ "!\\": 9903,
+ "▁listed": 9904,
+ "▁loro": 9905,
+ "▁knows": 9906,
+ "жно": 9907,
+ "Rad": 9908,
+ "▁socket": 9909,
+ "multi": 9910,
+ "▁рі": 9911,
+ "rails": 9912,
+ "▁tar": 9913,
+ "▁gentle": 9914,
+ "sett": 9915,
+ "services": 9916,
+ "bound": 9917,
+ "igkeit": 9918,
+ "aja": 9919,
+ "▁cmd": 9920,
+ "agger": 9921,
+ "▁ba": 9922,
+ "▁Belg": 9923,
+ "▁Kle": 9924,
+ "▁wordt": 9925,
+ "▁fost": 9926,
+ "▁dimension": 9927,
+ "Ang": 9928,
+ "uming": 9929,
+ "Obj": 9930,
+ "нен": 9931,
+ "▁Marie": 9932,
+ "exists": 9933,
+ "тро": 9934,
+ "▁боль": 9935,
+ "emente": 9936,
+ "▁Jon": 9937,
+ "SERT": 9938,
+ "▁highest": 9939,
+ "aki": 9940,
+ "▁tres": 9941,
+ "▁circum": 9942,
+ "▁Down": 9943,
+ "ommen": 9944,
+ "urer": 9945,
+ "▁causes": 9946,
+ "venue": 9947,
+ "issance": 9948,
+ "▁influence": 9949,
+ "▁fat": 9950,
+ "реди": 9951,
+ "}\\\\": 9952,
+ "▁entr": 9953,
+ "▁Sign": 9954,
+ "▁кла": 9955,
+ "▁binding": 9956,
+ "essen": 9957,
+ "▁Фран": 9958,
+ "▁Local": 9959,
+ "▁явля": 9960,
+ "appro": 9961,
+ "▁dependencies": 9962,
+ "▁talking": 9963,
+ "▁zurück": 9964,
+ "connection": 9965,
+ "Active": 9966,
+ "bbe": 9967,
+ "irls": 9968,
+ "▁Inf": 9969,
+ "wd": 9970,
+ "▁ис": 9971,
+ "road": 9972,
+ "▁conven": 9973,
+ "ět": 9974,
+ "вез": 9975,
+ "▁entries": 9976,
+ "esc": 9977,
+ "▁bits": 9978,
+ "asso": 9979,
+ "WR": 9980,
+ "ships": 9981,
+ "▁dés": 9982,
+ "esp": 9983,
+ "Make": 9984,
+ "▁familiar": 9985,
+ "Art": 9986,
+ "▁army": 9987,
+ "ctr": 9988,
+ "éric": 9989,
+ "queue": 9990,
+ "▁\\{": 9991,
+ "uela": 9992,
+ "amiento": 9993,
+ "ших": 9994,
+ "▁\"\"\"": 9995,
+ "contr": 9996,
+ "лле": 9997,
+ "FS": 9998,
+ "▁market": 9999,
+ "ång": 10000,
+ "citep": 10001,
+ "Ill": 10002,
+ "rank": 10003,
+ "▁sender": 10004,
+ "▁beim": 10005,
+ "рак": 10006,
+ "▁compat": 10007,
+ "▁occurs": 10008,
+ "▁diese": 10009,
+ "ститу": 10010,
+ "awa": 10011,
+ "▁iOS": 10012,
+ "▁Chinese": 10013,
+ "▁TR": 10014,
+ "▁Ken": 10015,
+ "▁Une": 10016,
+ "▁creates": 10017,
+ "▁showed": 10018,
+ "▁év": 10019,
+ "ologia": 10020,
+ "▁protest": 10021,
+ "▁Pf": 10022,
+ "▁squad": 10023,
+ "++,": 10024,
+ "áv": 10025,
+ "▁essere": 10026,
+ "зя": 10027,
+ "kol": 10028,
+ "▁slightly": 10029,
+ "addr": 10030,
+ "ân": 10031,
+ "▁reduce": 10032,
+ "▁\\(\\": 10033,
+ "▁Dep": 10034,
+ "▁generic": 10035,
+ "Loader": 10036,
+ "ți": 10037,
+ "▁пос": 10038,
+ "▁occasion": 10039,
+ "▁Lady": 10040,
+ "entity": 10041,
+ "▁avant": 10042,
+ "▁Pas": 10043,
+ "aggio": 10044,
+ "\\{": 10045,
+ "пад": 10046,
+ "atholic": 10047,
+ "Password": 10048,
+ "▁respond": 10049,
+ "▁Non": 10050,
+ "AG": 10051,
+ "neg": 10052,
+ "▁ус": 10053,
+ "blob": 10054,
+ "cke": 10055,
+ "▁Consider": 10056,
+ "▁Care": 10057,
+ "iki": 10058,
+ "▁Chicago": 10059,
+ "inden": 10060,
+ "▁Cop": 10061,
+ "]+": 10062,
+ "öm": 10063,
+ "évrier": 10064,
+ "кло": 10065,
+ "alen": 10066,
+ "▁maj": 10067,
+ "racy": 10068,
+ "orte": 10069,
+ "ients": 10070,
+ "ells": 10071,
+ "activity": 10072,
+ "▁runtime": 10073,
+ "NULL": 10074,
+ "▁possibly": 10075,
+ "▁stri": 10076,
+ "izi": 10077,
+ "▁mir": 10078,
+ "▁Version": 10079,
+ "prime": 10080,
+ "▁twenty": 10081,
+ "▁Mah": 10082,
+ "▁sounds": 10083,
+ "шен": 10084,
+ "clusion": 10085,
+ "acz": 10086,
+ "▁determined": 10087,
+ "▁Rep": 10088,
+ "▁Landes": 10089,
+ "▁wall": 10090,
+ "igi": 10091,
+ "▁reset": 10092,
+ "шо": 10093,
+ "yan": 10094,
+ "Met": 10095,
+ "ei": 10096,
+ "▁appearance": 10097,
+ "▁fois": 10098,
+ "▁nell": 10099,
+ "esi": 10100,
+ "ёт": 10101,
+ "loor": 10102,
+ "▁Ul": 10103,
+ "▁resolution": 10104,
+ "▁fot": 10105,
+ "▁throughout": 10106,
+ "▁ri": 10107,
+ "Level": 10108,
+ "pool": 10109,
+ "▁identity": 10110,
+ "▁janu": 10111,
+ "▁imper": 10112,
+ "▁över": 10113,
+ "}`": 10114,
+ "▁infer": 10115,
+ "▁dates": 10116,
+ "▁Standard": 10117,
+ "force": 10118,
+ "ockey": 10119,
+ "tera": 10120,
+ "▁distingu": 10121,
+ "▁presence": 10122,
+ "lica": 10123,
+ "▁leaving": 10124,
+ "itung": 10125,
+ "éb": 10126,
+ "▁establish": 10127,
+ "▁maar": 10128,
+ "adi": 10129,
+ "▁News": 10130,
+ "azon": 10131,
+ "folg": 10132,
+ "▁Hence": 10133,
+ "▁Ye": 10134,
+ "▁fab": 10135,
+ "▁führ": 10136,
+ "itmap": 10137,
+ "▁Vers": 10138,
+ "rov": 10139,
+ "Sign": 10140,
+ "device": 10141,
+ "Sigma": 10142,
+ "▁wetenschapp": 10143,
+ "▁Ps": 10144,
+ "PATH": 10145,
+ "▁torn": 10146,
+ "vest": 10147,
+ "стов": 10148,
+ "account": 10149,
+ "▁largest": 10150,
+ "▁percent": 10151,
+ "▁Women": 10152,
+ "▁img": 10153,
+ "tool": 10154,
+ "▁roce": 10155,
+ "▁ay": 10156,
+ "inet": 10157,
+ "▁août": 10158,
+ "▁polynomial": 10159,
+ "▁integral": 10160,
+ "▁areas": 10161,
+ "}'": 10162,
+ "▁hyp": 10163,
+ "loyee": 10164,
+ "таль": 10165,
+ "▁proxy": 10166,
+ "▁Wy": 10167,
+ "▁Мекси": 10168,
+ "▁escape": 10169,
+ "olar": 10170,
+ "▁mistake": 10171,
+ ")}{": 10172,
+ "▁Pot": 10173,
+ "▁processes": 10174,
+ "\">\r": 10175,
+ "halten": 10176,
+ "zza": 10177,
+ "amo": 10178,
+ "кре": 10179,
+ "▁Wood": 10180,
+ "ør": 10181,
+ "▁сер": 10182,
+ "ocia": 10183,
+ "two": 10184,
+ "profile": 10185,
+ "▁Ast": 10186,
+ "embro": 10187,
+ "▁arms": 10188,
+ "inas": 10189,
+ "innen": 10190,
+ "▁msg": 10191,
+ "INT": 10192,
+ "▁batter": 10193,
+ "ignment": 10194,
+ "▁vy": 10195,
+ "Hrsg": 10196,
+ "▁Grund": 10197,
+ "roc": 10198,
+ "seg": 10199,
+ "▁decor": 10200,
+ "▁eventually": 10201,
+ ">,": 10202,
+ "▁pag": 10203,
+ "anten": 10204,
+ "▁strugg": 10205,
+ "}^\\": 10206,
+ "daten": 10207,
+ "▁rela": 10208,
+ "пов": 10209,
+ "▁коро": 10210,
+ "▁Bos": 10211,
+ "▁labor": 10212,
+ "▁Secret": 10213,
+ "ugen": 10214,
+ "▁jap": 10215,
+ "▁husband": 10216,
+ "▁Album": 10217,
+ "▁etwa": 10218,
+ "▁произ": 10219,
+ "richt": 10220,
+ "rach": 10221,
+ "bat": 10222,
+ "▁prepar": 10223,
+ "▁Stock": 10224,
+ "▁lack": 10225,
+ "хід": 10226,
+ "▁hogy": 10227,
+ "▁Chrome": 10228,
+ "▁Admin": 10229,
+ "▁comparison": 10230,
+ "▁increasing": 10231,
+ "нг": 10232,
+ "imi": 10233,
+ "Db": 10234,
+ "▁gef": 10235,
+ "ucht": 10236,
+ "ése": 10237,
+ "gence": 10238,
+ "▁Core": 10239,
+ "▁incorrect": 10240,
+ "▁assuming": 10241,
+ "ourse": 10242,
+ "ieron": 10243,
+ "▁Theorem": 10244,
+ "▁casa": 10245,
+ "jes": 10246,
+ "▁дере": 10247,
+ "▁`\"": 10248,
+ "LD": 10249,
+ "äß": 10250,
+ "Deb": 10251,
+ "▁suiv": 10252,
+ "▁Bank": 10253,
+ "libs": 10254,
+ "▁Leon": 10255,
+ "▁quart": 10256,
+ "▁professional": 10257,
+ "▁tiene": 10258,
+ "▁accomp": 10259,
+ "стер": 10260,
+ "▁UK": 10261,
+ "NN": 10262,
+ "▁lí": 10263,
+ "ця": 10264,
+ "kel": 10265,
+ "▁•": 10266,
+ "▁dise": 10267,
+ "onto": 10268,
+ "▁má": 10269,
+ "ifs": 10270,
+ "bild": 10271,
+ "▁compute": 10272,
+ "▁éd": 10273,
+ "ję": 10274,
+ "▁Mé": 10275,
+ "▁languages": 10276,
+ "▁Times": 10277,
+ "cen": 10278,
+ "▁авто": 10279,
+ "ým": 10280,
+ "enez": 10281,
+ "▁upp": 10282,
+ "▁méd": 10283,
+ "▁cuando": 10284,
+ "од": 10285,
+ "Intent": 10286,
+ "eerd": 10287,
+ "▁Tal": 10288,
+ "offset": 10289,
+ "▁haben": 10290,
+ "reme": 10291,
+ "▁Stack": 10292,
+ "▁dri": 10293,
+ "▁seinem": 10294,
+ "▁février": 10295,
+ "▁combination": 10296,
+ "▁soll": 10297,
+ "▁movement": 10298,
+ "Spec": 10299,
+ "кры": 10300,
+ "retch": 10301,
+ "Offset": 10302,
+ "Root": 10303,
+ "Ар": 10304,
+ "wart": 10305,
+ "▁Follow": 10306,
+ "▁Social": 10307,
+ "ников": 10308,
+ "▁→": 10309,
+ "Don": 10310,
+ "▁harm": 10311,
+ "agr": 10312,
+ "nego": 10313,
+ "resource": 10314,
+ "▁Luc": 10315,
+ "▁seinen": 10316,
+ "▁Department": 10317,
+ "▁Update": 10318,
+ "▁Texas": 10319,
+ "▁reve": 10320,
+ "▁Pos": 10321,
+ "▁shot": 10322,
+ "othe": 10323,
+ "▁repeated": 10324,
+ "▁recently": 10325,
+ "ában": 10326,
+ "aks": 10327,
+ "пан": 10328,
+ "▁cha": 10329,
+ "ohl": 10330,
+ "▁tend": 10331,
+ "▁дво": 10332,
+ "chts": 10333,
+ "çaise": 10334,
+ "pling": 10335,
+ "album": 10336,
+ "ej": 10337,
+ "▁`[": 10338,
+ "maps": 10339,
+ "▁units": 10340,
+ "▁": 15110,
+ "▁pří": 15111,
+ "pandas": 15112,
+ "▁Plus": 15113,
+ "yll": 15114,
+ "▁terror": 15115,
+ "▁crim": 15116,
+ "▁zak": 15117,
+ "issue": 15118,
+ "panel": 15119,
+ "svg": 15120,
+ "▁reb": 15121,
+ "Customer": 15122,
+ "switch": 15123,
+ "обра": 15124,
+ "▁Championships": 15125,
+ "clo": 15126,
+ "atte": 15127,
+ "▁anymore": 15128,
+ "▁excellent": 15129,
+ "▁opportunity": 15130,
+ "▁Bahn": 15131,
+ "чин": 15132,
+ "eting": 15133,
+ "▁incident": 15134,
+ "tom": 15135,
+ "Pers": 15136,
+ "bben": 15137,
+ "ственной": 15138,
+ "их": 15139,
+ "router": 15140,
+ "▁newly": 15141,
+ "▁silence": 15142,
+ "▁GNU": 15143,
+ "▁Rails": 15144,
+ "▁Amb": 15145,
+ "▁Qual": 15146,
+ "▁Schaus": 15147,
+ "▁Sohn": 15148,
+ "▁ALL": 15149,
+ "▁royal": 15150,
+ "▁£": 15151,
+ "wię": 15152,
+ "▁entfer": 15153,
+ "▁Remove": 15154,
+ "▁hardly": 15155,
+ "Using": 15156,
+ "лог": 15157,
+ "▁Ich": 15158,
+ "▁derni": 15159,
+ "▁Connection": 15160,
+ "fish": 15161,
+ "▁Inform": 15162,
+ "▁Ener": 15163,
+ "roit": 15164,
+ "Bbb": 15165,
+ "ViewModel": 15166,
+ "Video": 15167,
+ "iley": 15168,
+ "▁много": 15169,
+ "▁Gem": 15170,
+ "▁compreh": 15171,
+ "enumerate": 15172,
+ "ulas": 15173,
+ "▁Bah": 15174,
+ "▁Yet": 15175,
+ "BR": 15176,
+ "хра": 15177,
+ "▁county": 15178,
+ "▁Hist": 15179,
+ "▁Гу": 15180,
+ "▁Ј": 15181,
+ "▁mari": 15182,
+ "▁Clar": 15183,
+ "Bitmap": 15184,
+ "▁Cz": 15185,
+ "▁mån": 15186,
+ "▁mere": 15187,
+ "▁musique": 15188,
+ "also": 15189,
+ "dates": 15190,
+ "▁DVD": 15191,
+ "▁gol": 15192,
+ "fony": 15193,
+ "▁Castle": 15194,
+ "▁фами": 15195,
+ "▁arrang": 15196,
+ "▁Business": 15197,
+ "▁Kaz": 15198,
+ "▁osc": 15199,
+ "▁secolo": 15200,
+ "▁affected": 15201,
+ "▁Health": 15202,
+ "reb": 15203,
+ "editor": 15204,
+ "▁owned": 15205,
+ "tl": 15206,
+ "▁ví": 15207,
+ "чних": 15208,
+ "кви": 15209,
+ "▁devient": 15210,
+ "Mutable": 15211,
+ "▁tegen": 15212,
+ "Register": 15213,
+ "єю": 15214,
+ "▁caracter": 15215,
+ "лли": 15216,
+ "▁nouvelle": 15217,
+ "oko": 15218,
+ "ichtet": 15219,
+ "▁evol": 15220,
+ "▁Hab": 15221,
+ "▁militar": 15222,
+ "▁puts": 15223,
+ "endif": 15224,
+ "▁Davis": 15225,
+ "▁Scotland": 15226,
+ "regular": 15227,
+ "▁Context": 15228,
+ "ispiel": 15229,
+ "▁Gallery": 15230,
+ "\",\r": 15231,
+ "▁arc": 15232,
+ "▁INFO": 15233,
+ "▁cod": 15234,
+ "дів": 15235,
+ "▁varchar": 15236,
+ "▁toujours": 15237,
+ "atial": 15238,
+ "▁hanno": 15239,
+ "▁профес": 15240,
+ "▁launched": 15241,
+ "▁населення": 15242,
+ "▁ton": 15243,
+ "aused": 15244,
+ "▁із": 15245,
+ "▁tö": 15246,
+ "▁Pur": 15247,
+ "▁olymp": 15248,
+ "ARN": 15249,
+ "óm": 15250,
+ "▁august": 15251,
+ "▁furn": 15252,
+ "▁Colomb": 15253,
+ "▁Staats": 15254,
+ "hora": 15255,
+ "▁мор": 15256,
+ "canvas": 15257,
+ "▁grave": 15258,
+ "▁composition": 15259,
+ "acja": 15260,
+ "▁которые": 15261,
+ "▁чо": 15262,
+ "General": 15263,
+ "ані": 15264,
+ "▁Johannes": 15265,
+ "кар": 15266,
+ "▁част": 15267,
+ "▁Васи": 15268,
+ "ssh": 15269,
+ "▁replacing": 15270,
+ "▁<>": 15271,
+ "ців": 15272,
+ "laus": 15273,
+ "eny": 15274,
+ "ähl": 15275,
+ "▁marg": 15276,
+ "cience": 15277,
+ "▁instruction": 15278,
+ "▁који": 15279,
+ "Editor": 15280,
+ "▁fundamental": 15281,
+ "mund": 15282,
+ "▁exceptions": 15283,
+ "▁plate": 15284,
+ "▁Lis": 15285,
+ "▁deren": 15286,
+ "prep": 15287,
+ "▁januari": 15288,
+ "Scope": 15289,
+ "ynast": 15290,
+ "rv": 15291,
+ "orsz": 15292,
+ "▁Tony": 15293,
+ "▁ді": 15294,
+ "▁одна": 15295,
+ "▁sab": 15296,
+ "oti": 15297,
+ "jel": 15298,
+ "▁generator": 15299,
+ "▁'.": 15300,
+ "▁sharp": 15301,
+ "▁только": 15302,
+ "▁accounts": 15303,
+ "▁že": 15304,
+ "▁foram": 15305,
+ "▁gouvern": 15306,
+ "TIME": 15307,
+ "▁Soviet": 15308,
+ "▁Gé": 15309,
+ "▁exped": 15310,
+ "▁ordinary": 15311,
+ "▁Conserv": 15312,
+ "▁compla": 15313,
+ "tei": 15314,
+ "▁captain": 15315,
+ "▁Samuel": 15316,
+ "▁Dark": 15317,
+ "▁він": 15318,
+ "▁delight": 15319,
+ "recht": 15320,
+ "dia": 15321,
+ "esses": 15322,
+ "ulp": 15323,
+ "шки": 15324,
+ "bez": 15325,
+ "▁detection": 15326,
+ "▁cookie": 15327,
+ "antry": 15328,
+ "Multi": 15329,
+ "oba": 15330,
+ "▁joy": 15331,
+ "▁safety": 15332,
+ "|^": 15333,
+ "pod": 15334,
+ "adém": 15335,
+ "▁Chron": 15336,
+ "▁Django": 15337,
+ "▁ehemal": 15338,
+ "kh": 15339,
+ "èle": 15340,
+ "▁poc": 15341,
+ "Bottom": 15342,
+ "launch": 15343,
+ "nem": 15344,
+ "▁GROUP": 15345,
+ "ního": 15346,
+ "▁Gib": 15347,
+ "sdk": 15348,
+ "BE": 15349,
+ "▁Gene": 15350,
+ "▁Staff": 15351,
+ "▁subsequent": 15352,
+ "icion": 15353,
+ "▁victory": 15354,
+ "▁canon": 15355,
+ "izar": 15356,
+ "izia": 15357,
+ "▁mate": 15358,
+ "▁layers": 15359,
+ "sudo": 15360,
+ "schule": 15361,
+ "periment": 15362,
+ "ület": 15363,
+ "ARCHAR": 15364,
+ "▁террито": 15365,
+ "▁measures": 15366,
+ "▁zou": 15367,
+ "opsis": 15368,
+ "нами": 15369,
+ "tbody": 15370,
+ "▁ese": 15371,
+ "sterdam": 15372,
+ "▁photo": 15373,
+ "ynchronous": 15374,
+ "setminus": 15375,
+ "▁loads": 15376,
+ "▁pleasure": 15377,
+ "▁meille": 15378,
+ "}\\,": 15379,
+ "qual": 15380,
+ "▁favour": 15381,
+ "▁rod": 15382,
+ "Der": 15383,
+ "рабо": 15384,
+ "▁pressed": 15385,
+ "rę": 15386,
+ "ieving": 15387,
+ "material": 15388,
+ "virt": 15389,
+ "▁capable": 15390,
+ "сло": 15391,
+ "ushed": 15392,
+ "▁побе": 15393,
+ "usetts": 15394,
+ "unsigned": 15395,
+ "ków": 15396,
+ "▁ov": 15397,
+ "egeben": 15398,
+ "▁applying": 15399,
+ "▁galax": 15400,
+ "▁Oracle": 15401,
+ "▁Stuttgart": 15402,
+ "Infl": 15403,
+ "achusetts": 15404,
+ "▁deel": 15405,
+ "lire": 15406,
+ "▁statunit": 15407,
+ "▁Politiker": 15408,
+ "▁beauty": 15409,
+ ")>": 15410,
+ "▁Columbia": 15411,
+ "▁zewnętrzne": 15412,
+ "▁програ": 15413,
+ "▁dx": 15414,
+ "cknow": 15415,
+ "▁dub": 15416,
+ "unächst": 15417,
+ "findViewById": 15418,
+ "▁Mand": 15419,
+ "áll": 15420,
+ "naire": 15421,
+ "▁destin": 15422,
+ "isting": 15423,
+ "aggi": 15424,
+ "chart": 15425,
+ "▁justice": 15426,
+ "Simple": 15427,
+ "▁unfortunately": 15428,
+ "ір": 15429,
+ "▁questa": 15430,
+ "▁Governor": 15431,
+ "яв": 15432,
+ "▁música": 15433,
+ "▁equipo": 15434,
+ "▁Dest": 15435,
+ "elect": 15436,
+ "StackTrace": 15437,
+ "зом": 15438,
+ "proc": 15439,
+ "entin": 15440,
+ "adora": 15441,
+ "▁Лю": 15442,
+ "▁registered": 15443,
+ "HL": 15444,
+ "facebook": 15445,
+ "▁storing": 15446,
+ "▁Currently": 15447,
+ "▁quadr": 15448,
+ "Standard": 15449,
+ "trim": 15450,
+ "ears": 15451,
+ "sender": 15452,
+ "▁Vas": 15453,
+ "▁edific": 15454,
+ "▁Bür": 15455,
+ "▁Country": 15456,
+ "tha": 15457,
+ ";\"": 15458,
+ "nor": 15459,
+ "▁Doctor": 15460,
+ "rument": 15461,
+ "Gen": 15462,
+ "▁Buen": 15463,
+ "rade": 15464,
+ "▁kun": 15465,
+ "navigation": 15466,
+ "Pay": 15467,
+ "▁captured": 15468,
+ "▁struck": 15469,
+ "venir": 15470,
+ "ément": 15471,
+ "▁Tree": 15472,
+ "▁xx": 15473,
+ "▁narr": 15474,
+ "льного": 15475,
+ "▁installing": 15476,
+ "▁association": 15477,
+ "▁inserted": 15478,
+ "erner": 15479,
+ "validate": 15480,
+ "▁lut": 15481,
+ "▁glo": 15482,
+ "▁technology": 15483,
+ "▁Place": 15484,
+ "$?": 15485,
+ "▁zv": 15486,
+ "слі": 15487,
+ "EP": 15488,
+ "▁atmos": 15489,
+ "ugo": 15490,
+ "ért": 15491,
+ "▁Werk": 15492,
+ "▁%}": 15493,
+ "tele": 15494,
+ "Span": 15495,
+ "▁Raj": 15496,
+ "▁Personen": 15497,
+ "▁Cant": 15498,
+ "▁combat": 15499,
+ "▁observation": 15500,
+ "parameter": 15501,
+ "▁agreed": 15502,
+ "pur": 15503,
+ "▁shadow": 15504,
+ "▁gł": 15505,
+ "Keys": 15506,
+ "Cred": 15507,
+ "ouri": 15508,
+ "▁pale": 15509,
+ "ické": 15510,
+ "▁Week": 15511,
+ "▁Prime": 15512,
+ ">.": 15513,
+ "Initial": 15514,
+ "▁один": 15515,
+ "▁'',": 15516,
+ "▁учи": 15517,
+ "▁Inv": 15518,
+ "cola": 15519,
+ "cible": 15520,
+ "▁Theatre": 15521,
+ "▁bem": 15522,
+ "▁satisfy": 15523,
+ "xl": 15524,
+ "▁разви": 15525,
+ "▁pixel": 15526,
+ "lán": 15527,
+ "▁twee": 15528,
+ "çon": 15529,
+ "нения": 15530,
+ "▁AT": 15531,
+ "ège": 15532,
+ "▁Mort": 15533,
+ "▁mysq": 15534,
+ "ften": 15535,
+ "▁пес": 15536,
+ "éma": 15537,
+ "▁Services": 15538,
+ "customer": 15539,
+ "▁AWS": 15540,
+ "ът": 15541,
+ "▁Ach": 15542,
+ "%.": 15543,
+ "▁clarify": 15544,
+ "▁университе": 15545,
+ "xture": 15546,
+ "umi": 15547,
+ "▁så": 15548,
+ "▁Pel": 15549,
+ "serial": 15550,
+ "URI": 15551,
+ "▁rg": 15552,
+ "▁соста": 15553,
+ "chestra": 15554,
+ "].[": 15555,
+ "wen": 15556,
+ "▁Londres": 15557,
+ "▁anys": 15558,
+ "DataSource": 15559,
+ "▁районе": 15560,
+ "▁rein": 15561,
+ "▁metadata": 15562,
+ "umble": 15563,
+ "arbeit": 15564,
+ "hner": 15565,
+ "cient": 15566,
+ "▁norte": 15567,
+ "▁она": 15568,
+ "▁scored": 15569,
+ "▁ray": 15570,
+ "▁февра": 15571,
+ "▁protagon": 15572,
+ "▁Sac": 15573,
+ "▁commonly": 15574,
+ "LinearLayout": 15575,
+ "▁applic": 15576,
+ "▁мая": 15577,
+ "За": 15578,
+ "▁accessible": 15579,
+ "iewer": 15580,
+ "flag": 15581,
+ "▁Rück": 15582,
+ "äu": 15583,
+ "▁erano": 15584,
+ "▁authentic": 15585,
+ "▁Ry": 15586,
+ "▁неско": 15587,
+ "▁embargo": 15588,
+ "▁dry": 15589,
+ "▁reasonable": 15590,
+ "▁Module": 15591,
+ "▁acceler": 15592,
+ "▁interview": 15593,
+ "▁Creek": 15594,
+ "▁alpha": 15595,
+ "serie": 15596,
+ "They": 15597,
+ "ючи": 15598,
+ "▁Hof": 15599,
+ "▁CR": 15600,
+ "modal": 15601,
+ "▁sequences": 15602,
+ "closed": 15603,
+ ")}$": 15604,
+ "▁Чер": 15605,
+ "▁ORDER": 15606,
+ "Rightarrow": 15607,
+ "hausen": 15608,
+ "}}_": 15609,
+ "▁també": 15610,
+ "▁magnetic": 15611,
+ "▁McC": 15612,
+ "▁winning": 15613,
+ "underline": 15614,
+ "▁Billboard": 15615,
+ "naio": 15616,
+ "▁liqu": 15617,
+ "displaystyle": 15618,
+ "timeout": 15619,
+ "▁considerable": 15620,
+ "▁eben": 15621,
+ "ifferent": 15622,
+ "anu": 15623,
+ "▁Сов": 15624,
+ "[(": 15625,
+ "▁:-)": 15626,
+ "leitung": 15627,
+ "formed": 15628,
+ "▁Manager": 15629,
+ "▁onclick": 15630,
+ "TY": 15631,
+ "тах": 15632,
+ "CV": 15633,
+ "runtime": 15634,
+ "poque": 15635,
+ "▁Ло": 15636,
+ "Temp": 15637,
+ "loaded": 15638,
+ "▁!==": 15639,
+ "▁singer": 15640,
+ "far": 15641,
+ "▁Comple": 15642,
+ "▁Österreich": 15643,
+ "Policy": 15644,
+ "▁worker": 15645,
+ "Wrapper": 15646,
+ "obi": 15647,
+ "▁discussed": 15648,
+ "▁buy": 15649,
+ "▁января": 15650,
+ "▁Din": 15651,
+ "▁ged": 15652,
+ "ској": 15653,
+ "Europe": 15654,
+ "▁tall": 15655,
+ "hos": 15656,
+ "лаго": 15657,
+ "▁Block": 15658,
+ "▁identified": 15659,
+ "ListView": 15660,
+ "▁attempting": 15661,
+ "▁typical": 15662,
+ "psum": 15663,
+ "oster": 15664,
+ "▁журна": 15665,
+ "Pe": 15666,
+ "merce": 15667,
+ "▁unexpected": 15668,
+ "hui": 15669,
+ "letter": 15670,
+ "▁nuevo": 15671,
+ "▁або": 15672,
+ "▁VALUES": 15673,
+ "▁Iz": 15674,
+ "Flags": 15675,
+ "▁TRUE": 15676,
+ "ización": 15677,
+ "▁growing": 15678,
+ "estre": 15679,
+ "▁poly": 15680,
+ "▁Stone": 15681,
+ "▁VIII": 15682,
+ "▁localhost": 15683,
+ "ählt": 15684,
+ "▁embedded": 15685,
+ "jdbc": 15686,
+ "▁convention": 15687,
+ "▁scala": 15688,
+ "сок": 15689,
+ "▁analog": 15690,
+ "▁\"+": 15691,
+ "цю": 15692,
+ "occ": 15693,
+ "▁litt": 15694,
+ "PN": 15695,
+ "▁актив": 15696,
+ "attributes": 15697,
+ "▁Ferd": 15698,
+ "▁azure": 15699,
+ "ști": 15700,
+ "ños": 15701,
+ "ping": 15702,
+ "▁teacher": 15703,
+ "}&": 15704,
+ "ipe": 15705,
+ "▁Nob": 15706,
+ "▁има": 15707,
+ "Bind": 15708,
+ "▁magic": 15709,
+ "▁Transport": 15710,
+ "ixel": 15711,
+ "▁computed": 15712,
+ "agna": 15713,
+ "erst": 15714,
+ "HA": 15715,
+ "Wait": 15716,
+ "▁authors": 15717,
+ "▁;)": 15718,
+ "clam": 15719,
+ "▁Pennsylvan": 15720,
+ "▁drug": 15721,
+ "▁vain": 15722,
+ "▁employed": 15723,
+ "▁individuals": 15724,
+ "▁ange": 15725,
+ "utat": 15726,
+ "▁$-": 15727,
+ "correct": 15728,
+ "▁experiments": 15729,
+ "Argument": 15730,
+ "▁IB": 15731,
+ "▁père": 15732,
+ "▁Brian": 15733,
+ "berger": 15734,
+ "Mac": 15735,
+ "iast": 15736,
+ "Perm": 15737,
+ "Cast": 15738,
+ "▁{};": 15739,
+ "▁Student": 15740,
+ "▁statt": 15741,
+ "algebra": 15742,
+ "▁equals": 15743,
+ "▁projet": 15744,
+ "▁président": 15745,
+ "ActivityThread": 15746,
+ "▁einz": 15747,
+ "enia": 15748,
+ "rez": 15749,
+ "essional": 15750,
+ "▁августа": 15751,
+ "override": 15752,
+ "news": 15753,
+ "▁planet": 15754,
+ "nn": 15755,
+ "▁Wis": 15756,
+ "твер": 15757,
+ "▁Valid": 15758,
+ "▁Gef": 15759,
+ "град": 15760,
+ "▁eig": 15761,
+ "antom": 15762,
+ "▁Meister": 15763,
+ "flags": 15764,
+ "fficiale": 15765,
+ "шая": 15766,
+ "-,": 15767,
+ "ationen": 15768,
+ "mouse": 15769,
+ "standard": 15770,
+ "Single": 15771,
+ "▁bol": 15772,
+ "isis": 15773,
+ "▁fruit": 15774,
+ "course": 15775,
+ "itants": 15776,
+ "▁étaient": 15777,
+ "TextField": 15778,
+ "▁фон": 15779,
+ "▁aircraft": 15780,
+ "▁ISSN": 15781,
+ "▁western": 15782,
+ "▁representing": 15783,
+ "Esp": 15784,
+ "▁Else": 15785,
+ "▁sizes": 15786,
+ "▁satisfied": 15787,
+ "otos": 15788,
+ "UD": 15789,
+ "Final": 15790,
+ "ój": 15791,
+ "ève": 15792,
+ "▁Roy": 15793,
+ "ffen": 15794,
+ "▁salt": 15795,
+ "▁Label": 15796,
+ "Sk": 15797,
+ "▁кре": 15798,
+ "▁Литература": 15799,
+ "▁см": 15800,
+ "Attributes": 15801,
+ "aye": 15802,
+ "ськ": 15803,
+ "▁высо": 15804,
+ "-)": 15805,
+ "oses": 15806,
+ "calcul": 15807,
+ "▁Cannot": 15808,
+ "Generic": 15809,
+ "emo": 15810,
+ "▁Autor": 15811,
+ "лён": 15812,
+ "лага": 15813,
+ "vote": 15814,
+ "licates": 15815,
+ "rus": 15816,
+ "éli": 15817,
+ "opf": 15818,
+ "atique": 15819,
+ "scala": 15820,
+ "▁Ohio": 15821,
+ "▁Britann": 15822,
+ "▁bef": 15823,
+ "▁Евро": 15824,
+ "▁Career": 15825,
+ "isée": 15826,
+ "ót": 15827,
+ "bose": 15828,
+ "▁Бер": 15829,
+ "▁Controller": 15830,
+ "pole": 15831,
+ "▁allen": 15832,
+ "▁hack": 15833,
+ "▁extent": 15834,
+ "▁calci": 15835,
+ "Mer": 15836,
+ "▁summary": 15837,
+ "Mart": 15838,
+ "▁historical": 15839,
+ "imat": 15840,
+ "bud": 15841,
+ "▁FOR": 15842,
+ "export": 15843,
+ "edi": 15844,
+ "Mapping": 15845,
+ "▁Ay": 15846,
+ "▁Ruby": 15847,
+ "▁definitions": 15848,
+ "▁{$": 15849,
+ "▁yours": 15850,
+ "rias": 15851,
+ "Touch": 15852,
+ "▁Gaz": 15853,
+ "▁Autom": 15854,
+ "▁истори": 15855,
+ "▁delen": 15856,
+ "▁Kinder": 15857,
+ "}}%": 15858,
+ "▁performing": 15859,
+ "FR": 15860,
+ "▁Sig": 15861,
+ "▁Brad": 15862,
+ "bras": 15863,
+ "▁Jar": 15864,
+ "pkg": 15865,
+ "wr": 15866,
+ "▁Pays": 15867,
+ "NC": 15868,
+ "▁opposed": 15869,
+ "Try": 15870,
+ "▁везе": 15871,
+ "▁Bog": 15872,
+ "▁writes": 15873,
+ "▁stories": 15874,
+ "▁mater": 15875,
+ "▁stagione": 15876,
+ "▁sty": 15877,
+ "▁compatible": 15878,
+ "heast": 15879,
+ "▁Guy": 15880,
+ "egründ": 15881,
+ "▁identifier": 15882,
+ "▁heads": 15883,
+ "пози": 15884,
+ "▁stup": 15885,
+ "▁tf": 15886,
+ "▁још": 15887,
+ "▁Hugh": 15888,
+ "▁cards": 15889,
+ "ovy": 15890,
+ "▁Toast": 15891,
+ "allas": 15892,
+ "▁públic": 15893,
+ "▁assumes": 15894,
+ "▁чемпиона": 15895,
+ "ycler": 15896,
+ "▁Junior": 15897,
+ "▁Fich": 15898,
+ "▁estimated": 15899,
+ "zerw": 15900,
+ "dialog": 15901,
+ "шин": 15902,
+ "shell": 15903,
+ "▁них": 15904,
+ "▁pitch": 15905,
+ "дол": 15906,
+ "outube": 15907,
+ "▁Santi": 15908,
+ "OnClickListener": 15909,
+ "▁Magyar": 15910,
+ "▁vue": 15911,
+ "ião": 15912,
+ "▁`#": 15913,
+ "collect": 15914,
+ "▁Rou": 15915,
+ "analysis": 15916,
+ "istrzost": 15917,
+ "▁Digital": 15918,
+ "▁crist": 15919,
+ "riere": 15920,
+ "▁campo": 15921,
+ "Us": 15922,
+ "▁circa": 15923,
+ "▁Component": 15924,
+ "▁NSString": 15925,
+ "pd": 15926,
+ "▁prince": 15927,
+ "▁invoke": 15928,
+ "▁Marine": 15929,
+ "Allow": 15930,
+ "estic": 15931,
+ "ристи": 15932,
+ "bone": 15933,
+ "туры": 15934,
+ "▁passion": 15935,
+ "áció": 15936,
+ "▁orn": 15937,
+ "вед": 15938,
+ "▁invari": 15939,
+ "▁ні": 15940,
+ "Remove": 15941,
+ "encies": 15942,
+ "ilib": 15943,
+ "▁Director": 15944,
+ "\"\"": 15945,
+ "▁Conse": 15946,
+ "googleapis": 15947,
+ "ók": 15948,
+ "▁Укра": 15949,
+ "▁Having": 15950,
+ "Domain": 15951,
+ "ierz": 15952,
+ "нологи": 15953,
+ "Cho": 15954,
+ "undefined": 15955,
+ "alloc": 15956,
+ "▁pied": 15957,
+ "▁fraction": 15958,
+ "bia": 15959,
+ "▁поло": 15960,
+ "ugno": 15961,
+ "minister": 15962,
+ "▁principale": 15963,
+ "▁refused": 15964,
+ "browser": 15965,
+ "*,": 15966,
+ "▁Hospital": 15967,
+ "▁universal": 15968,
+ "▁Ernst": 15969,
+ "who": 15970,
+ "▁Gard": 15971,
+ "'_": 15972,
+ "conde": 15973,
+ "▁[{": 15974,
+ "sob": 15975,
+ "▁Crit": 15976,
+ "▁декабря": 15977,
+ "▁punto": 15978,
+ "▁eingesetzt": 15979,
+ "▁tör": 15980,
+ "▁Ni": 15981,
+ "▁worry": 15982,
+ "▁legend": 15983,
+ "▁були": 15984,
+ "▁komm": 15985,
+ "rijk": 15986,
+ "effect": 15987,
+ "Ori": 15988,
+ "RES": 15989,
+ "▁Peters": 15990,
+ "▁Baron": 15991,
+ "▁Got": 15992,
+ "▁honest": 15993,
+ "äre": 15994,
+ "ász": 15995,
+ "▁noble": 15996,
+ "▁conclusion": 15997,
+ "▁formatting": 15998,
+ "▁otto": 15999,
+ "▁deleg": 16000,
+ "мб": 16001,
+ "ptop": 16002,
+ "▁sends": 16003,
+ "urname": 16004,
+ "▁festival": 16005,
+ ",": 16006,
+ "рус": 16007,
+ "▁doch": 16008,
+ "subject": 16009,
+ "▁careful": 16010,
+ "quent": 16011,
+ "▁Load": 16012,
+ "temperaturen": 16013,
+ "▁rue": 16014,
+ "Memory": 16015,
+ "ța": 16016,
+ "iona": 16017,
+ "▁dentro": 16018,
+ "▁begann": 16019,
+ "▁Aqu": 16020,
+ "▁scientific": 16021,
+ "kań": 16022,
+ "лок": 16023,
+ "elde": 16024,
+ "▁Those": 16025,
+ "quier": 16026,
+ "actér": 16027,
+ "▁Auflage": 16028,
+ ")'": 16029,
+ "▁gradient": 16030,
+ "integer": 16031,
+ "▁Import": 16032,
+ "SK": 16033,
+ "▁Status": 16034,
+ "▁explo": 16035,
+ "AE": 16036,
+ "Shell": 16037,
+ "▁Paulo": 16038,
+ ".»": 16039,
+ "}": 16040,
+ "flex": 16041,
+ "▁комп": 16042,
+ "onden": 16043,
+ "accept": 16044,
+ "▁miejsce": 16045,
+ "Hub": 16046,
+ "alleng": 16047,
+ "WN": 16048,
+ "▁implementing": 16049,
+ "▁лу": 16050,
+ "▁confusing": 16051,
+ "▁Install": 16052,
+ "▁rou": 16053,
+ "▁проек": 16054,
+ "Accessor": 16055,
+ "љашње": 16056,
+ "odio": 16057,
+ "▁applies": 16058,
+ "ющий": 16059,
+ "▁Mundial": 16060,
+ "État": 16061,
+ "ietnam": 16062,
+ "hum": 16063,
+ "▁сбор": 16064,
+ "ordinate": 16065,
+ "France": 16066,
+ "▁prend": 16067,
+ "eltemperaturen": 16068,
+ "▁trabaj": 16069,
+ "Axis": 16070,
+ "▁мно": 16071,
+ "primary": 16072,
+ "▁Seite": 16073,
+ "permission": 16074,
+ "▁orden": 16075,
+ "since": 16076,
+ "▁ic": 16077,
+ "▁Brazil": 16078,
+ "▁bare": 16079,
+ "▁Nar": 16080,
+ "▁Jur": 16081,
+ "▁freedom": 16082,
+ "▁medical": 16083,
+ "ischof": 16084,
+ "▁сп": 16085,
+ "ież": 16086,
+ "▁bootstrap": 16087,
+ "▁…": 16088,
+ "▁facil": 16089,
+ "cord": 16090,
+ "ване": 16091,
+ "▁Allen": 16092,
+ "avid": 16093,
+ "ingham": 16094,
+ "zas": 16095,
+ "▁inspect": 16096,
+ "itten": 16097,
+ "osti": 16098,
+ "uh": 16099,
+ "cé": 16100,
+ "▁#####": 16101,
+ "cius": 16102,
+ "omy": 16103,
+ "▁Seine": 16104,
+ "bres": 16105,
+ "▁genus": 16106,
+ "Other": 16107,
+ "▁Golden": 16108,
+ "mul": 16109,
+ "▁Спољашње": 16110,
+ "▁gennaio": 16111,
+ "▁carefully": 16112,
+ "aal": 16113,
+ "▁analyt": 16114,
+ "neur": 16115,
+ "▁stretch": 16116,
+ "▁Occ": 16117,
+ "olas": 16118,
+ "▁firebase": 16119,
+ "▁expecting": 16120,
+ "basic": 16121,
+ "condition": 16122,
+ "prov": 16123,
+ "▁Wasser": 16124,
+ "▁concaten": 16125,
+ "▁evil": 16126,
+ "▁coefficients": 16127,
+ "West": 16128,
+ "iry": 16129,
+ "phas": 16130,
+ "▁Jam": 16131,
+ "fois": 16132,
+ "▁consid": 16133,
+ "▁mainten": 16134,
+ "nim": 16135,
+ "esser": 16136,
+ "esz": 16137,
+ "unta": 16138,
+ "uest": 16139,
+ "▁credentials": 16140,
+ "_;": 16141,
+ "Dim": 16142,
+ "преде": 16143,
+ "▁Bü": 16144,
+ "built": 16145,
+ "▁Academ": 16146,
+ "▁audi": 16147,
+ "▁två": 16148,
+ "inand": 16149,
+ "▁Theater": 16150,
+ "▁genre": 16151,
+ "ços": 16152,
+ "gresql": 16153,
+ "▁weap": 16154,
+ "▁Rab": 16155,
+ "▁’": 16156,
+ "▁adult": 16157,
+ "▁dém": 16158,
+ "``": 16159,
+ "▁stabil": 16160,
+ "▁corresponds": 16161,
+ "▁Eastern": 16162,
+ "unnel": 16163,
+ "Worker": 16164,
+ "▁coh": 16165,
+ "лка": 16166,
+ "▁Massachusetts": 16167,
+ "pio": 16168,
+ "▁ports": 16169,
+ "agg": 16170,
+ "▁Debug": 16171,
+ "▁breath": 16172,
+ "MIN": 16173,
+ "Variable": 16174,
+ "batch": 16175,
+ "ссе": 16176,
+ "▁preg": 16177,
+ "▁roles": 16178,
+ "paste": 16179,
+ "▁referenced": 16180,
+ "adrat": 16181,
+ "чё": 16182,
+ "binom": 16183,
+ "▁defining": 16184,
+ "▁Budapest": 16185,
+ "▁дви": 16186,
+ "▁taught": 16187,
+ "▁hole": 16188,
+ "▁quella": 16189,
+ "Msg": 16190,
+ "aska": 16191,
+ "scan": 16192,
+ "▁propose": 16193,
+ "▁Биография": 16194,
+ "{{\\": 16195,
+ "textt": 16196,
+ "▁Alb": 16197,
+ "▁Sydney": 16198,
+ "▁backup": 16199,
+ "▁credit": 16200,
+ "▁францу": 16201,
+ "stats": 16202,
+ "\\\":": 16203,
+ "▁Пере": 16204,
+ "▁accordingly": 16205,
+ "▁Len": 16206,
+ "zna": 16207,
+ "▁Regional": 16208,
+ "▁изда": 16209,
+ "▁jú": 16210,
+ "histor": 16211,
+ "▁entities": 16212,
+ "Star": 16213,
+ "оне": 16214,
+ "']['": 16215,
+ "▁Nova": 16216,
+ "die": 16217,
+ "▁`'": 16218,
+ "▁obten": 16219,
+ "anst": 16220,
+ "▁Relig": 16221,
+ "▁trig": 16222,
+ "▁режи": 16223,
+ "▁Personal": 16224,
+ "▁tone": 16225,
+ "▁aid": 16226,
+ "Visual": 16227,
+ "Submit": 16228,
+ "▁moves": 16229,
+ "▁Bridge": 16230,
+ "▁Boy": 16231,
+ "▁accurate": 16232,
+ "osta": 16233,
+ "atto": 16234,
+ "▁defeated": 16235,
+ "▁datab": 16236,
+ "ginx": 16237,
+ "▁Liv": 16238,
+ "lywood": 16239,
+ "TW": 16240,
+ "rium": 16241,
+ "ipped": 16242,
+ "Fail": 16243,
+ "REQUEST": 16244,
+ "▁ignor": 16245,
+ "▁sitting": 16246,
+ "▁molto": 16247,
+ "▁endpoint": 16248,
+ "ución": 16249,
+ "▁collections": 16250,
+ "▁Ту": 16251,
+ "tembre": 16252,
+ "▁nécess": 16253,
+ "▁interact": 16254,
+ "▁otras": 16255,
+ "▁curr": 16256,
+ "▁tracks": 16257,
+ "▁família": 16258,
+ "▁numerical": 16259,
+ "legt": 16260,
+ "]/": 16261,
+ "▁Mario": 16262,
+ "▁tort": 16263,
+ "bg": 16264,
+ "ssl": 16265,
+ "texttt": 16266,
+ "▁spark": 16267,
+ "дии": 16268,
+ "▁probable": 16269,
+ "%%%%": 16270,
+ "phia": 16271,
+ "],[": 16272,
+ "▁boxes": 16273,
+ "▁academ": 16274,
+ "▁Slo": 16275,
+ "äude": 16276,
+ "▁witness": 16277,
+ "▁editing": 16278,
+ "лина": 16279,
+ "▁lookup": 16280,
+ "▁Buck": 16281,
+ "дня": 16282,
+ "▁jours": 16283,
+ "++){": 16284,
+ "▁indices": 16285,
+ "▁flight": 16286,
+ "▁computation": 16287,
+ "Plugin": 16288,
+ "▁realize": 16289,
+ "isset": 16290,
+ "▁derivative": 16291,
+ "linewidth": 16292,
+ "bund": 16293,
+ "▁thor": 16294,
+ "▁.=": 16295,
+ "▁sí": 16296,
+ "▁Click": 16297,
+ "▁Sebast": 16298,
+ ">'": 16299,
+ "havior": 16300,
+ "lei": 16301,
+ "ulf": 16302,
+ "▁geometry": 16303,
+ "prev": 16304,
+ "empl": 16305,
+ "▁Lé": 16306,
+ "anson": 16307,
+ "▁Alice": 16308,
+ "prototype": 16309,
+ "READ": 16310,
+ "icular": 16311,
+ "▁бі": 16312,
+ "▁deutsche": 16313,
+ "▁Represent": 16314,
+ "sites": 16315,
+ "▁Mean": 16316,
+ "▁diss": 16317,
+ "▁Zur": 16318,
+ "▁през": 16319,
+ "PAR": 16320,
+ "▁'#": 16321,
+ "▁Dra": 16322,
+ "сон": 16323,
+ "▁steht": 16324,
+ "markt": 16325,
+ "▁ease": 16326,
+ "Drawing": 16327,
+ "=%": 16328,
+ "Stop": 16329,
+ "▁serving": 16330,
+ "▁także": 16331,
+ "▁DNS": 16332,
+ "▁literal": 16333,
+ "Die": 16334,
+ "▁вос": 16335,
+ "▁senior": 16336,
+ "acion": 16337,
+ "▁ubuntu": 16338,
+ "▁Frankfurt": 16339,
+ "▁Sunday": 16340,
+ "áb": 16341,
+ "▁journey": 16342,
+ "issa": 16343,
+ "berry": 16344,
+ "▁sep": 16345,
+ "▁ion": 16346,
+ "wert": 16347,
+ "ország": 16348,
+ "serve": 16349,
+ "▁Milano": 16350,
+ "▁века": 16351,
+ "рах": 16352,
+ "▁июля": 16353,
+ "▁manera": 16354,
+ "▁stations": 16355,
+ "▁adopted": 16356,
+ "▁anybody": 16357,
+ "VERSION": 16358,
+ "FE": 16359,
+ "dorf": 16360,
+ "...,": 16361,
+ "▁образова": 16362,
+ "Logger": 16363,
+ "фициаль": 16364,
+ "WRITE": 16365,
+ "▁ham": 16366,
+ "▁Future": 16367,
+ "oten": 16368,
+ "▁AG": 16369,
+ "▁trained": 16370,
+ "▁Nich": 16371,
+ "▁university": 16372,
+ "▁Olympics": 16373,
+ "▁doit": 16374,
+ "▁cultural": 16375,
+ "Conf": 16376,
+ "▁Conference": 16377,
+ "orno": 16378,
+ "▁MP": 16379,
+ "▁bou": 16380,
+ "cin": 16381,
+ "High": 16382,
+ "annte": 16383,
+ "▁displaying": 16384,
+ "▁chapter": 16385,
+ "▁Frauen": 16386,
+ "▁realized": 16387,
+ "▁attempted": 16388,
+ "▁preferred": 16389,
+ "Dat": 16390,
+ "▁trouve": 16391,
+ "▁intention": 16392,
+ "▁Notice": 16393,
+ "timestamp": 16394,
+ "*(": 16395,
+ "▁Ша": 16396,
+ "anas": 16397,
+ "cla": 16398,
+ "isz": 16399,
+ "tbl": 16400,
+ "Arr": 16401,
+ "▁inverse": 16402,
+ "▁terrible": 16403,
+ "▁occupied": 16404,
+ "JAX": 16405,
+ "<-": 16406,
+ "▁Philosoph": 16407,
+ "▁Corps": 16408,
+ "builder": 16409,
+ "▁begins": 16410,
+ "▁census": 16411,
+ ".’": 16412,
+ "▁proven": 16413,
+ "metric": 16414,
+ "▁increases": 16415,
+ "wich": 16416,
+ "▁ABC": 16417,
+ "projects": 16418,
+ "▁Thor": 16419,
+ "▁confidence": 16420,
+ "▁ufficiale": 16421,
+ "elm": 16422,
+ "▁garden": 16423,
+ "▁robust": 16424,
+ "▁così": 16425,
+ "iedz": 16426,
+ "▁Islam": 16427,
+ "▁Address": 16428,
+ "▁divide": 16429,
+ "▁Eu": 16430,
+ "catal": 16431,
+ "detail": 16432,
+ "ependant": 16433,
+ "fg": 16434,
+ "▁bew": 16435,
+ "▁fis": 16436,
+ "▁BO": 16437,
+ "▁wsp": 16438,
+ "▁pipeline": 16439,
+ "hd": 16440,
+ "▁Session": 16441,
+ "länd": 16442,
+ "iveau": 16443,
+ "estr": 16444,
+ "▁particle": 16445,
+ "▁laravel": 16446,
+ "pic": 16447,
+ "▁nau": 16448,
+ "▁fins": 16449,
+ "▁Vil": 16450,
+ "▁fus": 16451,
+ "▁quasi": 16452,
+ "operation": 16453,
+ "▁aller": 16454,
+ "▁analy": 16455,
+ "▁Он": 16456,
+ "▁Mes": 16457,
+ "▁опера": 16458,
+ "▁handled": 16459,
+ "▁deprec": 16460,
+ "tto": 16461,
+ "▁Ek": 16462,
+ "▁stran": 16463,
+ "▁anglais": 16464,
+ "jure": 16465,
+ "▁Silver": 16466,
+ "▁closely": 16467,
+ "enkins": 16468,
+ "anos": 16469,
+ "sted": 16470,
+ "▁сентября": 16471,
+ "brand": 16472,
+ "ньо": 16473,
+ "▁présent": 16474,
+ "rok": 16475,
+ "mount": 16476,
+ "▁Anthony": 16477,
+ "▁Furthermore": 16478,
+ "inha": 16479,
+ "▁архи": 16480,
+ "▁разли": 16481,
+ "▁октября": 16482,
+ "▁pint": 16483,
+ "ný": 16484,
+ "pts": 16485,
+ "▁italien": 16486,
+ "▁реги": 16487,
+ "лез": 16488,
+ "дина": 16489,
+ "atherine": 16490,
+ "Internal": 16491,
+ "Question": 16492,
+ "▁settlement": 16493,
+ "▁Все": 16494,
+ "▁folders": 16495,
+ "дри": 16496,
+ "▁valor": 16497,
+ "▁Miller": 16498,
+ "▁Assert": 16499,
+ "▁patient": 16500,
+ "▁Nieder": 16501,
+ "▁EP": 16502,
+ "▁Agr": 16503,
+ "▁onde": 16504,
+ "▁scop": 16505,
+ "sequence": 16506,
+ "▁PL": 16507,
+ "▁seek": 16508,
+ "javase": 16509,
+ "▁Vector": 16510,
+ "▁ná": 16511,
+ "▁categoría": 16512,
+ "clone": 16513,
+ "NR": 16514,
+ "available": 16515,
+ "▁Besch": 16516,
+ "▁eclipse": 16517,
+ "wicklung": 16518,
+ "deploy": 16519,
+ "enie": 16520,
+ "▁\")": 16521,
+ "äst": 16522,
+ "▁sync": 16523,
+ "CODE": 16524,
+ "▁Че": 16525,
+ "▁floating": 16526,
+ "/`": 16527,
+ "▁retired": 16528,
+ "deb": 16529,
+ "▁particul": 16530,
+ "▁collected": 16531,
+ "▁downloaded": 16532,
+ "nice": 16533,
+ "▁Buffer": 16534,
+ "▁Account": 16535,
+ "▁maggio": 16536,
+ "▁реда": 16537,
+ "▁sales": 16538,
+ "▁statunitense": 16539,
+ "▁Ki": 16540,
+ "▁Ferr": 16541,
+ "Lock": 16542,
+ "▁Isabel": 16543,
+ "clar": 16544,
+ "▁pov": 16545,
+ "atra": 16546,
+ "▁Frau": 16547,
+ "▁sorting": 16548,
+ "▁phrase": 16549,
+ "▁апреля": 16550,
+ "▁деятель": 16551,
+ "▁André": 16552,
+ "definition": 16553,
+ "writing": 16554,
+ "éré": 16555,
+ "щу": 16556,
+ "▁Ord": 16557,
+ "▁rum": 16558,
+ "▁Turk": 16559,
+ "▁Ivan": 16560,
+ "theless": 16561,
+ "▁ги": 16562,
+ "▁sake": 16563,
+ "▁Based": 16564,
+ "deck": 16565,
+ "orus": 16566,
+ "▁tutti": 16567,
+ "▁blan": 16568,
+ "▁Пу": 16569,
+ "Detail": 16570,
+ "▁Но": 16571,
+ "▁Sky": 16572,
+ "▁près": 16573,
+ "мой": 16574,
+ "coln": 16575,
+ "ческой": 16576,
+ "eti": 16577,
+ "▁arrow": 16578,
+ "▁Cha": 16579,
+ "chmark": 16580,
+ "œur": 16581,
+ "fab": 16582,
+ "куль": 16583,
+ "GridView": 16584,
+ "▁Background": 16585,
+ "sn": 16586,
+ "▁seguito": 16587,
+ "▁nic": 16588,
+ "cou": 16589,
+ "тів": 16590,
+ "▁bzw": 16591,
+ "addEventListener": 16592,
+ "sync": 16593,
+ "azzo": 16594,
+ "abstract": 16595,
+ "assets": 16596,
+ "▁Dru": 16597,
+ "зд": 16598,
+ "ordnet": 16599,
+ "▁bigger": 16600,
+ "▁initialized": 16601,
+ "каз": 16602,
+ "ogene": 16603,
+ "viously": 16604,
+ "▁guid": 16605,
+ "scheidung": 16606,
+ "▁Zent": 16607,
+ "▁frames": 16608,
+ "rieben": 16609,
+ "▁issued": 16610,
+ "▁dow": 16611,
+ "▁describes": 16612,
+ "ilst": 16613,
+ "▁criteria": 16614,
+ "▁gentleman": 16615,
+ "Basic": 16616,
+ "nez": 16617,
+ "Dev": 16618,
+ "Move": 16619,
+ "▁estaba": 16620,
+ "▁settembre": 16621,
+ "circle": 16622,
+ "▁fais": 16623,
+ "▁myst": 16624,
+ "▁archiv": 16625,
+ "dynamic": 16626,
+ "jà": 16627,
+ "itas": 16628,
+ "▁який": 16629,
+ "▁dor": 16630,
+ "▁Amazon": 16631,
+ "▁neces": 16632,
+ "▁Marcel": 16633,
+ "▁ella": 16634,
+ "рок": 16635,
+ "▁Pennsylvania": 16636,
+ "cular": 16637,
+ "Pack": 16638,
+ "itage": 16639,
+ "▁Burn": 16640,
+ "▁RO": 16641,
+ "▁они": 16642,
+ "~$": 16643,
+ "TeX": 16644,
+ "assign": 16645,
+ "▁beat": 16646,
+ "idense": 16647,
+ "acent": 16648,
+ "Alert": 16649,
+ "▁strateg": 16650,
+ "▁månaden": 16651,
+ "LOC": 16652,
+ "▁catalog": 16653,
+ "printStackTrace": 16654,
+ "()).": 16655,
+ "usted": 16656,
+ "▁Framework": 16657,
+ "ECK": 16658,
+ "▁até": 16659,
+ "Framework": 16660,
+ "▁attacks": 16661,
+ "▁Bert": 16662,
+ "▁тран": 16663,
+ ":%": 16664,
+ "arsi": 16665,
+ "notation": 16666,
+ "▁logical": 16667,
+ "weet": 16668,
+ "▁visited": 16669,
+ "bru": 16670,
+ "▁surprise": 16671,
+ "^^": 16672,
+ "inale": 16673,
+ "remote": 16674,
+ "'},": 16675,
+ "Syntax": 16676,
+ "iane": 16677,
+ "onnen": 16678,
+ "▁breaking": 16679,
+ "parser": 16680,
+ "apk": 16681,
+ "▁Miguel": 16682,
+ "▁§": 16683,
+ "▁acting": 16684,
+ "▁gebru": 16685,
+ "AtIndex": 16686,
+ "ються": 16687,
+ "▁offers": 16688,
+ "▁prac": 16689,
+ "▁grant": 16690,
+ "ternoon": 16691,
+ "▁acquired": 16692,
+ "▁Ny": 16693,
+ "▁comma": 16694,
+ "ník": 16695,
+ "▁Step": 16696,
+ "inners": 16697,
+ "▁SA": 16698,
+ "▁wat": 16699,
+ "days": 16700,
+ "▁rectangle": 16701,
+ "dar": 16702,
+ "▁trac": 16703,
+ "▁Indones": 16704,
+ "▁feedback": 16705,
+ "▁breaks": 16706,
+ "partition": 16707,
+ "icans": 16708,
+ "▁Notices": 16709,
+ "▁improved": 16710,
+ "phan": 16711,
+ "▁differential": 16712,
+ "scripts": 16713,
+ "▁XIII": 16714,
+ "▁Labor": 16715,
+ "▁precision": 16716,
+ "▁seed": 16717,
+ "bundle": 16718,
+ "idents": 16719,
+ "hre": 16720,
+ "▁Douglas": 16721,
+ "uld": 16722,
+ "▁secondary": 16723,
+ "▁brig": 16724,
+ "▁confirmed": 16725,
+ "▁claims": 16726,
+ "Role": 16727,
+ "▁Jewish": 16728,
+ "▁před": 16729,
+ "▁hotel": 16730,
+ "▁compte": 16731,
+ "▁recursive": 16732,
+ "](#)": 16733,
+ "▁rotate": 16734,
+ "▁chrome": 16735,
+ "inea": 16736,
+ "%;\r": 16737,
+ "▁Environment": 16738,
+ "platz": 16739,
+ "▁Single": 16740,
+ "▁sevent": 16741,
+ "▁posting": 16742,
+ "▁dealing": 16743,
+ "parameters": 16744,
+ "граф": 16745,
+ "Authentication": 16746,
+ "touch": 16747,
+ "Az": 16748,
+ "▁gray": 16749,
+ "encing": 16750,
+ "boldmath": 16751,
+ "▁сайте": 16752,
+ "▁Za": 16753,
+ "anje": 16754,
+ "▁polar": 16755,
+ "▁ули": 16756,
+ "kil": 16757,
+ "▁hover": 16758,
+ "▁REST": 16759,
+ "▁Come": 16760,
+ "jb": 16761,
+ "▁Georgia": 16762,
+ "▁Estado": 16763,
+ "OutputStream": 16764,
+ "ћи": 16765,
+ "▁dump": 16766,
+ "▁Age": 16767,
+ "▁swo": 16768,
+ "mobile": 16769,
+ "occup": 16770,
+ "шего": 16771,
+ "▁constitution": 16772,
+ "good": 16773,
+ "aku": 16774,
+ "▁анг": 16775,
+ "ieck": 16776,
+ "▁Psych": 16777,
+ "▁roots": 16778,
+ "▁vest": 16779,
+ "▁годах": 16780,
+ "▁República": 16781,
+ "▁pian": 16782,
+ "igration": 16783,
+ "▁préc": 16784,
+ "▁generates": 16785,
+ "LY": 16786,
+ "(`": 16787,
+ "▁=~": 16788,
+ "шения": 16789,
+ "▁Rah": 16790,
+ "▁connecting": 16791,
+ "ží": 16792,
+ "▁fő": 16793,
+ "▁appel": 16794,
+ "▁Railway": 16795,
+ "гли": 16796,
+ "▁développ": 16797,
+ "▁apo": 16798,
+ "fran": 16799,
+ "▁immediate": 16800,
+ "вого": 16801,
+ "Runner": 16802,
+ "äg": 16803,
+ "Something": 16804,
+ "▁généra": 16805,
+ "EventArgs": 16806,
+ "inction": 16807,
+ "gly": 16808,
+ "▁Due": 16809,
+ "▁prost": 16810,
+ "▁referring": 16811,
+ "▁jog": 16812,
+ "▁executable": 16813,
+ "▁Dream": 16814,
+ "acs": 16815,
+ "▁Cole": 16816,
+ "ampf": 16817,
+ "▁Bis": 16818,
+ "▁июня": 16819,
+ "lieder": 16820,
+ "тек": 16821,
+ "▁vb": 16822,
+ "▁mom": 16823,
+ "▁:(": 16824,
+ "▁dernier": 16825,
+ "'=>": 16826,
+ "▁этого": 16827,
+ "▁neue": 16828,
+ "▁Ча": 16829,
+ "▁weitere": 16830,
+ "▁alleg": 16831,
+ "▁reality": 16832,
+ "▁judge": 16833,
+ "▁Balt": 16834,
+ "▁thin": 16835,
+ "▁Ged": 16836,
+ "ieval": 16837,
+ "mx": 16838,
+ "ціональ": 16839,
+ "▁выпу": 16840,
+ "▁IX": 16841,
+ "▁blind": 16842,
+ "▁Motor": 16843,
+ "▁ша": 16844,
+ "▁approximation": 16845,
+ "dam": 16846,
+ "▁fog": 16847,
+ "кор": 16848,
+ "▁Writ": 16849,
+ "▁ling": 16850,
+ "▁писа": 16851,
+ "▁Mars": 16852,
+ "otti": 16853,
+ "Enum": 16854,
+ "▁Trib": 16855,
+ "▁merc": 16856,
+ "zung": 16857,
+ "vanced": 16858,
+ "cfg": 16859,
+ "нах": 16860,
+ "schen": 16861,
+ "\"].": 16862,
+ "bek": 16863,
+ "▁ster": 16864,
+ "jp": 16865,
+ "▁Rap": 16866,
+ "▁recording": 16867,
+ "▁peint": 16868,
+ "▁lets": 16869,
+ "änge": 16870,
+ ">\";": 16871,
+ "▁місце": 16872,
+ "▁caval": 16873,
+ "▁CSV": 16874,
+ "▁entstand": 16875,
+ "▁helper": 16876,
+ "endet": 16877,
+ "▁Gram": 16878,
+ "▁Diego": 16879,
+ "▁Bishop": 16880,
+ "TAG": 16881,
+ "▁ecc": 16882,
+ "▁Een": 16883,
+ "▁AV": 16884,
+ "City": 16885,
+ "▁Guide": 16886,
+ "hind": 16887,
+ "rical": 16888,
+ "▁Основ": 16889,
+ "Bus": 16890,
+ "▁zunächst": 16891,
+ "▁tick": 16892,
+ "▁Colonel": 16893,
+ "Thanks": 16894,
+ "▁ferm": 16895,
+ "▁granted": 16896,
+ "▁threshold": 16897,
+ "omorphic": 16898,
+ "▁Hun": 16899,
+ "enis": 16900,
+ "▁прав": 16901,
+ "▁які": 16902,
+ "PG": 16903,
+ "▁ws": 16904,
+ "▁technical": 16905,
+ "estro": 16906,
+ "klär": 16907,
+ "vars": 16908,
+ "ocrat": 16909,
+ "▁општи": 16910,
+ "onso": 16911,
+ "iba": 16912,
+ "▁Save": 16913,
+ "▁programa": 16914,
+ "▁въ": 16915,
+ "▁invån": 16916,
+ ">()": 16917,
+ "▁mejor": 16918,
+ "▁слова": 16919,
+ "▁replacement": 16920,
+ "▁impr": 16921,
+ "▁Francesco": 16922,
+ "▁Hotel": 16923,
+ "▁UPDATE": 16924,
+ "▁музы": 16925,
+ "ugs": 16926,
+ "vard": 16927,
+ "▁faz": 16928,
+ "inton": 16929,
+ "▁arts": 16930,
+ "▁Ky": 16931,
+ "▁Ils": 16932,
+ "▁sera": 16933,
+ "▁Volume": 16934,
+ "▁giugno": 16935,
+ "▁asym": 16936,
+ "▁Pir": 16937,
+ "▁NAS": 16938,
+ "▁Tam": 16939,
+ "ěl": 16940,
+ "Sequ": 16941,
+ "kmal": 16942,
+ "▁Eins": 16943,
+ "▁компа": 16944,
+ "obe": 16945,
+ "oor": 16946,
+ "▁heap": 16947,
+ "ctl": 16948,
+ "▁separately": 16949,
+ "reader": 16950,
+ "▁significantly": 16951,
+ "▁Lag": 16952,
+ "notes": 16953,
+ "▁sele": 16954,
+ "▁dedicated": 16955,
+ "▁Host": 16956,
+ "choice": 16957,
+ "wing": 16958,
+ "▁Titel": 16959,
+ "▁befindet": 16960,
+ "large": 16961,
+ "▁conten": 16962,
+ "JavaScript": 16963,
+ "▁deser": 16964,
+ "▁Gordon": 16965,
+ "спе": 16966,
+ "▁patri": 16967,
+ "▁Random": 16968,
+ "▁Returns": 16969,
+ "ым": 16970,
+ "рома": 16971,
+ "▁Studies": 16972,
+ "Sl": 16973,
+ "▁frü": 16974,
+ "TEXT": 16975,
+ "inate": 16976,
+ "▁Tol": 16977,
+ "▁everywhere": 16978,
+ "arta": 16979,
+ "▁orbit": 16980,
+ "▁Aires": 16981,
+ "▁Iss": 16982,
+ "▁też": 16983,
+ "▁diverse": 16984,
+ "▁numeric": 16985,
+ "maz": 16986,
+ "▁mise": 16987,
+ "▁battery": 16988,
+ "▁Akadem": 16989,
+ "нение": 16990,
+ "▁simultane": 16991,
+ "▁Dead": 16992,
+ "▁clust": 16993,
+ "▁otro": 16994,
+ "▁cerca": 16995,
+ "()`,": 16996,
+ "roz": 16997,
+ "ăt": 16998,
+ "▁MO": 16999,
+ "riften": 17000,
+ "important": 17001,
+ "▁jeho": 17002,
+ "▁findViewById": 17003,
+ "▁consequence": 17004,
+ "▁measured": 17005,
+ "ishes": 17006,
+ "▁sze": 17007,
+ "iendo": 17008,
+ "▁Wahl": 17009,
+ "strip": 17010,
+ "ARD": 17011,
+ "▁opacity": 17012,
+ "WORD": 17013,
+ "▁Ві": 17014,
+ "▁Location": 17015,
+ "rai": 17016,
+ "пен": 17017,
+ "▁rif": 17018,
+ "aussian": 17019,
+ "FileName": 17020,
+ "▁disco": 17021,
+ "ilen": 17022,
+ "▁vagy": 17023,
+ "licity": 17024,
+ "Border": 17025,
+ "▁Track": 17026,
+ "бом": 17027,
+ "fact": 17028,
+ "oka": 17029,
+ "▁gior": 17030,
+ "▁XVII": 17031,
+ "▁där": 17032,
+ "Site": 17033,
+ "ało": 17034,
+ "ská": 17035,
+ "▁pixels": 17036,
+ "vity": 17037,
+ "jQuery": 17038,
+ "▁sculpt": 17039,
+ "▁cargo": 17040,
+ "▁directive": 17041,
+ "▁wal": 17042,
+ "▁conna": 17043,
+ "▁Through": 17044,
+ "▁этом": 17045,
+ "Static": 17046,
+ "omsnitt": 17047,
+ "▁rund": 17048,
+ "▁claimed": 17049,
+ "зня": 17050,
+ "sha": 17051,
+ "▁rag": 17052,
+ "crement": 17053,
+ "▁fünf": 17054,
+ "▁rival": 17055,
+ "rin": 17056,
+ "slash": 17057,
+ "▁thirty": 17058,
+ "sleep": 17059,
+ "ологи": 17060,
+ "SM": 17061,
+ "gate": 17062,
+ "izations": 17063,
+ "vik": 17064,
+ "▁bless": 17065,
+ "▁Illinois": 17066,
+ "▁TE": 17067,
+ "uting": 17068,
+ "▁solving": 17069,
+ "GER": 17070,
+ "▁XIV": 17071,
+ "▁Indians": 17072,
+ "express": 17073,
+ "▁Heil": 17074,
+ "▁mujer": 17075,
+ "▁invånare": 17076,
+ "']);": 17077,
+ "▁aur": 17078,
+ "boost": 17079,
+ "GO": 17080,
+ "▁nin": 17081,
+ "tok": 17082,
+ "god": 17083,
+ "oter": 17084,
+ ")$$": 17085,
+ "▁descend": 17086,
+ "рю": 17087,
+ "▁Language": 17088,
+ "▁diver": 17089,
+ "▁Assuming": 17090,
+ "▁frequent": 17091,
+ "чні": 17092,
+ "▁Biography": 17093,
+ ",[": 17094,
+ "urm": 17095,
+ "▁walked": 17096,
+ "▁federal": 17097,
+ "▁Michigan": 17098,
+ "▁facts": 17099,
+ "▁Integr": 17100,
+ "LES": 17101,
+ "▁Alan": 17102,
+ "▁coup": 17103,
+ "Ber": 17104,
+ "▁particles": 17105,
+ "ће": 17106,
+ "Inflater": 17107,
+ "+(": 17108,
+ "Bound": 17109,
+ "▁Sü": 17110,
+ "Audio": 17111,
+ "citet": 17112,
+ "yect": 17113,
+ "▁nr": 17114,
+ "xe": 17115,
+ "▁Brun": 17116,
+ "▁_,": 17117,
+ "avor": 17118,
+ "▁discipl": 17119,
+ "alm": 17120,
+ "▁ноября": 17121,
+ "▁SSL": 17122,
+ "▁Kaiser": 17123,
+ "▁recher": 17124,
+ "ygon": 17125,
+ "▁regardless": 17126,
+ "▁configur": 17127,
+ "▁unnecess": 17128,
+ "▁Clark": 17129,
+ "PHP": 17130,
+ "▁FALSE": 17131,
+ "▁pad": 17132,
+ "$}": 17133,
+ "▁valu": 17134,
+ "▁disease": 17135,
+ "▁maior": 17136,
+ "▁hommes": 17137,
+ "▁Edition": 17138,
+ "slant": 17139,
+ "▁ending": 17140,
+ "▁settled": 17141,
+ "urus": 17142,
+ "hed": 17143,
+ "Pattern": 17144,
+ "▁година": 17145,
+ "▁Philadel": 17146,
+ "tikzpicture": 17147,
+ "▁coal": 17148,
+ "▁sede": 17149,
+ "▁satisfies": 17150,
+ "▁trim": 17151,
+ "▁bat": 17152,
+ "▁américain": 17153,
+ "▁luglio": 17154,
+ "▁поча": 17155,
+ "ffff": 17156,
+ "▁Target": 17157,
+ "generate": 17158,
+ "▁Zie": 17159,
+ "ția": 17160,
+ "▁gard": 17161,
+ "▁workers": 17162,
+ "▁Job": 17163,
+ "▁urban": 17164,
+ "ahlen": 17165,
+ "▁Building": 17166,
+ "▁neu": 17167,
+ "▁chron": 17168,
+ "▁Earl": 17169,
+ "gro": 17170,
+ "USE": 17171,
+ "▁XII": 17172,
+ "▁wealth": 17173,
+ "inae": 17174,
+ "▁Бра": 17175,
+ "▁libert": 17176,
+ "iros": 17177,
+ ":$": 17178,
+ "lee": 17179,
+ "ieves": 17180,
+ "▁Justice": 17181,
+ "▁oil": 17182,
+ "▁Athlet": 17183,
+ "▁clo": 17184,
+ "Scale": 17185,
+ "▁lips": 17186,
+ "▁april": 17187,
+ "▁impression": 17188,
+ "▁perce": 17189,
+ "▁участи": 17190,
+ "vil": 17191,
+ "éch": 17192,
+ "▁equality": 17193,
+ "▁мет": 17194,
+ "▁annotation": 17195,
+ "ernal": 17196,
+ "▁Mach": 17197,
+ "▁intitul": 17198,
+ "problem": 17199,
+ "ющих": 17200,
+ "oplus": 17201,
+ "▁thousands": 17202,
+ "▁calculations": 17203,
+ "umps": 17204,
+ "▁triangle": 17205,
+ "phal": 17206,
+ "▁Dorf": 17207,
+ "▁dollars": 17208,
+ "▁denen": 17209,
+ "lès": 17210,
+ "olid": 17211,
+ "▁Results": 17212,
+ "▁Stadium": 17213,
+ "▁Desp": 17214,
+ "▁Eisen": 17215,
+ "imir": 17216,
+ "▁sotto": 17217,
+ "▁či": 17218,
+ "atable": 17219,
+ "orum": 17220,
+ "▁convergence": 17221,
+ "▁jeune": 17222,
+ "oking": 17223,
+ "▁живо": 17224,
+ "aining": 17225,
+ "pointer": 17226,
+ "culo": 17227,
+ "▁jsou": 17228,
+ "▁grab": 17229,
+ "akte": 17230,
+ "▁hoping": 17231,
+ "▁Mak": 17232,
+ "▁sag": 17233,
+ "origine": 17234,
+ "▁послед": 17235,
+ "▁Veg": 17236,
+ "▁theoret": 17237,
+ "▁Tru": 17238,
+ "nement": 17239,
+ "▁faces": 17240,
+ "Hor": 17241,
+ "Join": 17242,
+ "arel": 17243,
+ "▁около": 17244,
+ "However": 17245,
+ "▁catal": 17246,
+ "bourg": 17247,
+ "▁mysqli": 17248,
+ "acions": 17249,
+ "▁Initial": 17250,
+ "▁rain": 17251,
+ "iture": 17252,
+ "▁Sciences": 17253,
+ "▁Kreis": 17254,
+ ".__": 17255,
+ "▁cinq": 17256,
+ "▁Auß": 17257,
+ "ithmet": 17258,
+ "itors": 17259,
+ "amazon": 17260,
+ "▁gap": 17261,
+ "▁ignored": 17262,
+ "adv": 17263,
+ "кої": 17264,
+ "▁часть": 17265,
+ "▁corpor": 17266,
+ "цер": 17267,
+ "▁crime": 17268,
+ "uous": 17269,
+ "▁налази": 17270,
+ "DataFrame": 17271,
+ "води": 17272,
+ "Ign": 17273,
+ "▁Lincoln": 17274,
+ "▁menos": 17275,
+ "▁Luft": 17276,
+ "▁Lind": 17277,
+ "▁Cook": 17278,
+ "▁materials": 17279,
+ "apped": 17280,
+ "ignore": 17281,
+ "▁откры": 17282,
+ "fried": 17283,
+ "▁gouvernement": 17284,
+ "▁fired": 17285,
+ "▁screenshot": 17286,
+ "сен": 17287,
+ "▁[(": 17288,
+ "▁организа": 17289,
+ "Graphics": 17290,
+ "▁проти": 17291,
+ "▁phen": 17292,
+ "craft": 17293,
+ "▁brain": 17294,
+ "▁Como": 17295,
+ "▁Everything": 17296,
+ "anes": 17297,
+ "IGN": 17298,
+ "▁nederbörd": 17299,
+ "▁Forest": 17300,
+ "zahl": 17301,
+ "▁Among": 17302,
+ "Qt": 17303,
+ "▁togg": 17304,
+ "▁variant": 17305,
+ "▁hill": 17306,
+ "писи": 17307,
+ "colon": 17308,
+ "▁dicembre": 17309,
+ "гор": 17310,
+ "▁Wind": 17311,
+ "ünstler": 17312,
+ "▁=\\": 17313,
+ "saved": 17314,
+ "▁nej": 17315,
+ "unte": 17316,
+ "utto": 17317,
+ "▁recens": 17318,
+ "▁sick": 17319,
+ "▁desen": 17320,
+ "UST": 17321,
+ "▁worst": 17322,
+ "▁Angel": 17323,
+ "odox": 17324,
+ "▁Province": 17325,
+ "▁Maz": 17326,
+ "▁agreement": 17327,
+ "▁Bass": 17328,
+ "▁segunda": 17329,
+ "onces": 17330,
+ "▁Linki": 17331,
+ "▁CL": 17332,
+ "▁já": 17333,
+ "itement": 17334,
+ "▁área": 17335,
+ "▁scalar": 17336,
+ "▁Рес": 17337,
+ "awt": 17338,
+ "sieme": 17339,
+ "▁juni": 17340,
+ "▁худож": 17341,
+ "ikus": 17342,
+ "▁lid": 17343,
+ "ppel": 17344,
+ "avi": 17345,
+ "▁balance": 17346,
+ "ipping": 17347,
+ "cussion": 17348,
+ "ческих": 17349,
+ "(\".": 17350,
+ "Also": 17351,
+ "▁whis": 17352,
+ "HOME": 17353,
+ "▁brown": 17354,
+ "▁día": 17355,
+ "▁può": 17356,
+ "plotlib": 17357,
+ "▁Jahrhunderts": 17358,
+ "DK": 17359,
+ "▁anchor": 17360,
+ "...]": 17361,
+ "▁Austria": 17362,
+ "▁marca": 17363,
+ "▁gez": 17364,
+ "iously": 17365,
+ "▁lazy": 17366,
+ "xa": 17367,
+ "▁Channel": 17368,
+ "▁neuen": 17369,
+ "das": 17370,
+ "▁searched": 17371,
+ "▁staat": 17372,
+ "▁Так": 17373,
+ "▁Josef": 17374,
+ "▁Sher": 17375,
+ "pois": 17376,
+ "▁enem": 17377,
+ "▁accessing": 17378,
+ "▁неко": 17379,
+ "▁furono": 17380,
+ "▁pseudo": 17381,
+ "?>": 17382,
+ "▁estadoun": 17383,
+ "▁Види": 17384,
+ "▁motiv": 17385,
+ "▁recall": 17386,
+ "isson": 17387,
+ "ób": 17388,
+ ")--": 17389,
+ "▁Erz": 17390,
+ "▁савез": 17391,
+ "Direct": 17392,
+ "соб": 17393,
+ "▁sho": 17394,
+ "völker": 17395,
+ "Ap": 17396,
+ "gens": 17397,
+ "ништво": 17398,
+ "▁Amsterdam": 17399,
+ "usk": 17400,
+ "пло": 17401,
+ "▁simulation": 17402,
+ "▁BC": 17403,
+ "▁Woj": 17404,
+ "autom": 17405,
+ "Alex": 17406,
+ "▁economic": 17407,
+ "гом": 17408,
+ "ikai": 17409,
+ "▁altre": 17410,
+ "▁'-": 17411,
+ "▁Weg": 17412,
+ "NotFound": 17413,
+ "йской": 17414,
+ "▁converting": 17415,
+ "phabet": 17416,
+ "atrice": 17417,
+ "bourne": 17418,
+ "alom": 17419,
+ "▁comparing": 17420,
+ "▁Zo": 17421,
+ "▁fla": 17422,
+ "вая": 17423,
+ "▁entra": 17424,
+ "▁charset": 17425,
+ "developers": 17426,
+ "ística": 17427,
+ "}>": 17428,
+ "▁Jazz": 17429,
+ "▁Howard": 17430,
+ "шта": 17431,
+ "▁clone": 17432,
+ "door": 17433,
+ "▁Pin": 17434,
+ "***": 17435,
+ "▁silent": 17436,
+ "ecycle": 17437,
+ "isce": 17438,
+ "▁mud": 17439,
+ "▁Display": 17440,
+ "▁lip": 17441,
+ "▁использова": 17442,
+ "▁characteristic": 17443,
+ "▁sb": 17444,
+ "firebase": 17445,
+ "▁Bew": 17446,
+ "Calendar": 17447,
+ "▁uso": 17448,
+ "èse": 17449,
+ "▁Rat": 17450,
+ "▁esper": 17451,
+ "▁throwing": 17452,
+ "▁rodz": 17453,
+ "▁yards": 17454,
+ "▁grass": 17455,
+ "▁marker": 17456,
+ "▁Kos": 17457,
+ "Theta": 17458,
+ "▁organis": 17459,
+ "kernel": 17460,
+ "▁personas": 17461,
+ "keep": 17462,
+ "▁exclaimed": 17463,
+ "oslav": 17464,
+ "▁Entertain": 17465,
+ "нер": 17466,
+ "▁inwon": 17467,
+ "▁Rand": 17468,
+ "reduce": 17469,
+ "fac": 17470,
+ "expression": 17471,
+ "yj": 17472,
+ "▁differenti": 17473,
+ "aglia": 17474,
+ "▁templates": 17475,
+ "▁mű": 17476,
+ "▁prv": 17477,
+ "▁mois": 17478,
+ "▁gewann": 17479,
+ "▁була": 17480,
+ "bibli": 17481,
+ "demo": 17482,
+ "▁Anderson": 17483,
+ "▁ред": 17484,
+ "▁porque": 17485,
+ "▁Pologne": 17486,
+ "▁trip": 17487,
+ "▁exemple": 17488,
+ "▁Internacional": 17489,
+ "▁као": 17490,
+ "Insert": 17491,
+ "general": 17492,
+ "SESSION": 17493,
+ "berga": 17494,
+ "hält": 17495,
+ "unas": 17496,
+ "мира": 17497,
+ "▁yields": 17498,
+ "mapsto": 17499,
+ "spot": 17500,
+ "▁+\\": 17501,
+ "лла": 17502,
+ "▁precisely": 17503,
+ "▁член": 17504,
+ "shadow": 17505,
+ "Are": 17506,
+ "unal": 17507,
+ "▁dispar": 17508,
+ "▁título": 17509,
+ "nest": 17510,
+ "▁Low": 17511,
+ "▁prot": 17512,
+ "▁Costa": 17513,
+ "named": 17514,
+ "▁gained": 17515,
+ "lesia": 17516,
+ "▁administration": 17517,
+ "Import": 17518,
+ "branch": 17519,
+ "▁sympath": 17520,
+ "voj": 17521,
+ "▁EC": 17522,
+ "▁municipio": 17523,
+ "▁animated": 17524,
+ "▁directories": 17525,
+ "▁roof": 17526,
+ "ząd": 17527,
+ "imet": 17528,
+ "proto": 17529,
+ "bla": 17530,
+ ":]": 17531,
+ "have": 17532,
+ "atem": 17533,
+ "▁ns": 17534,
+ "▁sector": 17535,
+ "three": 17536,
+ "owane": 17537,
+ "wers": 17538,
+ "ових": 17539,
+ "rence": 17540,
+ "▁extr": 17541,
+ "igten": 17542,
+ "▁occident": 17543,
+ "ță": 17544,
+ "▁eat": 17545,
+ "▁hydro": 17546,
+ "ubernetes": 17547,
+ "[@": 17548,
+ "▁Moon": 17549,
+ "▁Sho": 17550,
+ "▁elsewhere": 17551,
+ "üller": 17552,
+ "Upload": 17553,
+ "ланд": 17554,
+ "▁För": 17555,
+ "wissenschaft": 17556,
+ "KS": 17557,
+ "▁physics": 17558,
+ "tz": 17559,
+ "▁серед": 17560,
+ "▁Arbeit": 17561,
+ "▁мест": 17562,
+ "▁Gebiet": 17563,
+ "▁insect": 17564,
+ "Ah": 17565,
+ "izado": 17566,
+ "▁temple": 17567,
+ "▁annual": 17568,
+ "stad": 17569,
+ "▁habitat": 17570,
+ "▁AB": 17571,
+ "wort": 17572,
+ "▁repos": 17573,
+ "▁Neu": 17574,
+ "▁$(\".": 17575,
+ "Vorlage": 17576,
+ "▁reprezent": 17577,
+ "estanden": 17578,
+ "Intern": 17579,
+ ".`": 17580,
+ "▁failing": 17581,
+ "▁Material": 17582,
+ "▁effectively": 17583,
+ "телем": 17584,
+ "▁гла": 17585,
+ "▁nahm": 17586,
+ "▁differently": 17587,
+ "extension": 17588,
+ "▁Verm": 17589,
+ "enabled": 17590,
+ "configure": 17591,
+ "nio": 17592,
+ "ciones": 17593,
+ "▁Beach": 17594,
+ "сона": 17595,
+ "▁copying": 17596,
+ "▁україн": 17597,
+ "▁призна": 17598,
+ "zh": 17599,
+ "Desktop": 17600,
+ "▁sost": 17601,
+ "▁subsequently": 17602,
+ "▁Lehr": 17603,
+ "▁ó": 17604,
+ "lär": 17605,
+ "odor": 17606,
+ "phon": 17607,
+ "nc": 17608,
+ "iterator": 17609,
+ "▁эти": 17610,
+ "▁europé": 17611,
+ "▁Toronto": 17612,
+ "ódigo": 17613,
+ "▁posto": 17614,
+ "ffe": 17615,
+ "▁crew": 17616,
+ "▁Schwar": 17617,
+ "Sa": 17618,
+ "square": 17619,
+ "▁beside": 17620,
+ "▁Мі": 17621,
+ "▁ath": 17622,
+ "▁advent": 17623,
+ "cji": 17624,
+ "written": 17625,
+ "▁russ": 17626,
+ "rost": 17627,
+ "HI": 17628,
+ "▁dice": 17629,
+ "cca": 17630,
+ "▁dép": 17631,
+ "ply": 17632,
+ "bigg": 17633,
+ "ział": 17634,
+ "ütt": 17635,
+ "▁одно": 17636,
+ "JECT": 17637,
+ "ському": 17638,
+ "nos": 17639,
+ "mock": 17640,
+ "Launch": 17641,
+ "same": 17642,
+ "▁jobs": 17643,
+ "▁widely": 17644,
+ "▁defines": 17645,
+ "▁Pse": 17646,
+ "▁neighbour": 17647,
+ "ющие": 17648,
+ "▁closer": 17649,
+ "▁располо": 17650,
+ "▁clubs": 17651,
+ "fly": 17652,
+ "шим": 17653,
+ "▁suffered": 17654,
+ "▁nar": 17655,
+ "▁lavor": 17656,
+ "Extension": 17657,
+ "itionally": 17658,
+ "▁grace": 17659,
+ "▁Campeonato": 17660,
+ "▁Christmas": 17661,
+ "middle": 17662,
+ "othek": 17663,
+ "elements": 17664,
+ "▁sondern": 17665,
+ "▁tarde": 17666,
+ "▁permanent": 17667,
+ "▁conclude": 17668,
+ "Seg": 17669,
+ "▁акаде": 17670,
+ "}\",": 17671,
+ "▁февраля": 17672,
+ "řed": 17673,
+ "▁IL": 17674,
+ "jud": 17675,
+ "▁USS": 17676,
+ "▁Nature": 17677,
+ "ifference": 17678,
+ "Serializer": 17679,
+ "▁twelve": 17680,
+ "tid": 17681,
+ "мия": 17682,
+ "ческого": 17683,
+ "▁calendar": 17684,
+ "concat": 17685,
+ "▁intersection": 17686,
+ "▁PA": 17687,
+ "azure": 17688,
+ "▁située": 17689,
+ "▁kinds": 17690,
+ "▁ausge": 17691,
+ "▁rural": 17692,
+ "Theme": 17693,
+ "▁tale": 17694,
+ "noindent": 17695,
+ "going": 17696,
+ "rx": 17697,
+ "agi": 17698,
+ "wrapper": 17699,
+ "▁Coast": 17700,
+ "mbH": 17701,
+ "▁перед": 17702,
+ "spre": 17703,
+ "▁}\\": 17704,
+ "▁LI": 17705,
+ "znam": 17706,
+ "itled": 17707,
+ "Sample": 17708,
+ "uliar": 17709,
+ "*\\": 17710,
+ "▁resistance": 17711,
+ "stock": 17712,
+ "ked": 17713,
+ "▁HE": 17714,
+ "▁possession": 17715,
+ "▁Ring": 17716,
+ "▁magyar": 17717,
+ "outs": 17718,
+ "▁Secretary": 17719,
+ "nde": 17720,
+ "▁Wald": 17721,
+ "-(": 17722,
+ "▁ISO": 17723,
+ "▁afternoon": 17724,
+ "ionen": 17725,
+ "▁stops": 17726,
+ "▁constants": 17727,
+ "guard": 17728,
+ "bow": 17729,
+ "▁ers": 17730,
+ "▁Firebase": 17731,
+ "▁Clear": 17732,
+ "▁Holy": 17733,
+ "Win": 17734,
+ "▁titles": 17735,
+ "▁трав": 17736,
+ "▁contrib": 17737,
+ "häng": 17738,
+ "▁photograph": 17739,
+ "▁Distribution": 17740,
+ "ifts": 17741,
+ "▁aunque": 17742,
+ "comb": 17743,
+ "ADD": 17744,
+ "▁publication": 17745,
+ "▁служ": 17746,
+ "▁кня": 17747,
+ "▁ayant": 17748,
+ "▁restore": 17749,
+ "▁belief": 17750,
+ "▁vég": 17751,
+ "▁extensions": 17752,
+ "▁decom": 17753,
+ "вший": 17754,
+ "WT": 17755,
+ "▁parti": 17756,
+ "▁gioc": 17757,
+ "▁мира": 17758,
+ "▁issu": 17759,
+ "pipe": 17760,
+ "▁props": 17761,
+ "▁willing": 17762,
+ "▁nest": 17763,
+ "aso": 17764,
+ "pot": 17765,
+ "▁handles": 17766,
+ "▁фо": 17767,
+ "▁moder": 17768,
+ "▁ebenfalls": 17769,
+ "▁fighting": 17770,
+ "umbn": 17771,
+ "▁transparent": 17772,
+ "▁Krist": 17773,
+ "▁homes": 17774,
+ "▁voyage": 17775,
+ "Failed": 17776,
+ "▁Bird": 17777,
+ "▁Heart": 17778,
+ "Counter": 17779,
+ "▁Scottish": 17780,
+ "ática": 17781,
+ "▁arbeit": 17782,
+ "^{-\\": 17783,
+ "▁Sor": 17784,
+ "▁engaged": 17785,
+ "▁aside": 17786,
+ "▁Fou": 17787,
+ "▁wiel": 17788,
+ "▁reconst": 17789,
+ "ousin": 17790,
+ "▁hosted": 17791,
+ "▁classe": 17792,
+ "▁contest": 17793,
+ "...\"": 17794,
+ "мом": 17795,
+ "▁bean": 17796,
+ "gem": 17797,
+ "▁consultato": 17798,
+ "▁bio": 17799,
+ "▁subjects": 17800,
+ "boBox": 17801,
+ "▁Schrift": 17802,
+ "▁dinner": 17803,
+ "ăr": 17804,
+ "▁równ": 17805,
+ "▁%%": 17806,
+ "bage": 17807,
+ "▁veröff": 17808,
+ "▁detected": 17809,
+ "ienn": 17810,
+ "rose": 17811,
+ "▁Ton": 17812,
+ "Complete": 17813,
+ "▁proto": 17814,
+ "ichts": 17815,
+ "STAT": 17816,
+ "Checked": 17817,
+ "▁inten": 17818,
+ "▁smile": 17819,
+ "▁strip": 17820,
+ "neut": 17821,
+ "');\r": 17822,
+ "four": 17823,
+ "▁todas": 17824,
+ "Controls": 17825,
+ "▁thorough": 17826,
+ "rup": 17827,
+ "▁држави": 17828,
+ "ită": 17829,
+ "Protocol": 17830,
+ "Ка": 17831,
+ "▁expanded": 17832,
+ "extra": 17833,
+ "oport": 17834,
+ "▁Станов": 17835,
+ "leases": 17836,
+ "▁notion": 17837,
+ "▁guest": 17838,
+ "▁Islands": 17839,
+ "icked": 17840,
+ "▁Dave": 17841,
+ "▁reflection": 17842,
+ "liv": 17843,
+ "ální": 17844,
+ "▁revealed": 17845,
+ "▁sog": 17846,
+ "▁Tax": 17847,
+ "▁periodo": 17848,
+ "▁Weltkrie": 17849,
+ "catalina": 17850,
+ "qué": 17851,
+ "▁Father": 17852,
+ "▁Bir": 17853,
+ "expect": 17854,
+ "▁regression": 17855,
+ "iné": 17856,
+ "▁dabei": 17857,
+ "perm": 17858,
+ "мене": 17859,
+ "▁Abd": 17860,
+ "▁CF": 17861,
+ "arks": 17862,
+ "resolve": 17863,
+ "wedge": 17864,
+ "▁initialization": 17865,
+ "▁Véase": 17866,
+ "▁приня": 17867,
+ "stmt": 17868,
+ "▁income": 17869,
+ "MY": 17870,
+ "▁odkazy": 17871,
+ "▁Siehe": 17872,
+ "▁bodies": 17873,
+ "▁soc": 17874,
+ "Random": 17875,
+ "▁senza": 17876,
+ "ablo": 17877,
+ "▁regarded": 17878,
+ "onCreate": 17879,
+ "▁Magazine": 17880,
+ "▁Raf": 17881,
+ "▁Buenos": 17882,
+ "ил": 17883,
+ ")));": 17884,
+ "capt": 17885,
+ "redirect": 17886,
+ "▁petit": 17887,
+ "▁farm": 17888,
+ "▁rôle": 17889,
+ "▁статьи": 17890,
+ " ": 17891,
+ "subfigure": 17892,
+ "èces": 17893,
+ "ziel": 17894,
+ "▁окон": 17895,
+ "EE": 17896,
+ "mee": 17897,
+ "▁perten": 17898,
+ "▁représent": 17899,
+ "▁LA": 17900,
+ "?'": 17901,
+ "▁тру": 17902,
+ "▁rational": 17903,
+ "osof": 17904,
+ "▁kne": 17905,
+ "▁artists": 17906,
+ "Flow": 17907,
+ "▁Аль": 17908,
+ "izard": 17909,
+ "▁numero": 17910,
+ "actic": 17911,
+ "▁destruct": 17912,
+ "▁Пра": 17913,
+ "onsieur": 17914,
+ "qt": 17915,
+ "abestanden": 17916,
+ "ność": 17917,
+ "Connect": 17918,
+ "▁oracle": 17919,
+ "▁Stockholm": 17920,
+ "sizeof": 17921,
+ "▁gemäß": 17922,
+ "ACT": 17923,
+ "▁expert": 17924,
+ "utions": 17925,
+ "▁hacia": 17926,
+ "▁logger": 17927,
+ "▁fool": 17928,
+ "rypto": 17929,
+ "ær": 17930,
+ "▁cidade": 17931,
+ "▁составе": 17932,
+ "oker": 17933,
+ "▁Transfer": 17934,
+ "▁denied": 17935,
+ "Track": 17936,
+ "▁radi": 17937,
+ "zec": 17938,
+ "▁Historic": 17939,
+ "▁Einwohner": 17940,
+ "кою": 17941,
+ "▁хра": 17942,
+ "▁Category": 17943,
+ "▁Disney": 17944,
+ "▁swap": 17945,
+ "Begin": 17946,
+ "▁mientras": 17947,
+ "▁dance": 17948,
+ "▁tête": 17949,
+ "▁droit": 17950,
+ "erta": 17951,
+ "▁birds": 17952,
+ "▁convin": 17953,
+ "parator": 17954,
+ "дра": 17955,
+ "▁ES": 17956,
+ "▁Ressources": 17957,
+ "EGIN": 17958,
+ "ücke": 17959,
+ "▁Cruz": 17960,
+ "abling": 17961,
+ "▁\"@": 17962,
+ "▁metres": 17963,
+ "▁Beg": 17964,
+ "▁Gründ": 17965,
+ "▁Boh": 17966,
+ "▁mile": 17967,
+ "▁Technology": 17968,
+ "\"+": 17969,
+ "acco": 17970,
+ "▁ss": 17971,
+ "▁Fed": 17972,
+ "▁Hend": 17973,
+ "usch": 17974,
+ "itä": 17975,
+ "folk": 17976,
+ "▁absor": 17977,
+ "antal": 17978,
+ "odge": 17979,
+ "▁WHEN": 17980,
+ "▁Externí": 17981,
+ "▁Regiment": 17982,
+ "▁evaluation": 17983,
+ "▁Tai": 17984,
+ "▁vocals": 17985,
+ "▁experimental": 17986,
+ "embed": 17987,
+ "▁Minn": 17988,
+ "▁вме": 17989,
+ "prec": 17990,
+ "every": 17991,
+ "▁hoof": 17992,
+ "▁Fernando": 17993,
+ "▁Bibliographie": 17994,
+ "▁nag": 17995,
+ "amerikanischer": 17996,
+ "▁marks": 17997,
+ "▁UTC": 17998,
+ "▁uncertain": 17999,
+ "дия": 18000,
+ "olia": 18001,
+ "▁cup": 18002,
+ "▁fille": 18003,
+ "▁dok": 18004,
+ "useppe": 18005,
+ "esterd": 18006,
+ "▁Brand": 18007,
+ "▁Third": 18008,
+ "PP": 18009,
+ "nodes": 18010,
+ "▁Pad": 18011,
+ "▁loved": 18012,
+ "swing": 18013,
+ "▁surprised": 18014,
+ "ardi": 18015,
+ "▁GR": 18016,
+ "]\"": 18017,
+ "▁equally": 18018,
+ "ihe": 18019,
+ "care": 18020,
+ "писок": 18021,
+ "lijk": 18022,
+ "rinn": 18023,
+ "▁\\[\\": 18024,
+ "▁sons": 18025,
+ "▁tät": 18026,
+ "icamente": 18027,
+ "▁listing": 18028,
+ "iellement": 18029,
+ "▁nyelven": 18030,
+ "▁ds": 18031,
+ "▁agricult": 18032,
+ "▁Hermann": 18033,
+ "▁besides": 18034,
+ "progress": 18035,
+ "▁peculiar": 18036,
+ "focus": 18037,
+ "cn": 18038,
+ "-$": 18039,
+ "ственный": 18040,
+ "ourg": 18041,
+ "▁wyn": 18042,
+ "▁conducted": 18043,
+ "▁Становништво": 18044,
+ "connected": 18045,
+ "▁bott": 18046,
+ "▁смер": 18047,
+ "▁Poz": 18048,
+ "unct": 18049,
+ "conda": 18050,
+ "▁савезној": 18051,
+ "▁havet": 18052,
+ "ligt": 18053,
+ "orted": 18054,
+ "▁entering": 18055,
+ "multip": 18056,
+ "▁Temple": 18057,
+ "▁Plant": 18058,
+ "typeof": 18059,
+ "▁Vlad": 18060,
+ "▁qued": 18061,
+ "▁reste": 18062,
+ "▁май": 18063,
+ "▁Very": 18064,
+ "ambiguation": 18065,
+ "▁challeng": 18066,
+ "▁respective": 18067,
+ "▁тор": 18068,
+ "Ctrl": 18069,
+ "▁absence": 18070,
+ "aru": 18071,
+ "вое": 18072,
+ "▁först": 18073,
+ "▁sq": 18074,
+ "▁Emperor": 18075,
+ "▁Ign": 18076,
+ "▁това": 18077,
+ ":`": 18078,
+ "adoop": 18079,
+ "▁Madame": 18080,
+ "▁gruppo": 18081,
+ "stud": 18082,
+ "▁externas": 18083,
+ "▁Александр": 18084,
+ "▁dign": 18085,
+ "▁живе": 18086,
+ "Amount": 18087,
+ "▁correlate": 18088,
+ "▁Fant": 18089,
+ "▁rails": 18090,
+ "fp": 18091,
+ "министратив": 18092,
+ "▁bought": 18093,
+ "▁filters": 18094,
+ "▁ancora": 18095,
+ "▁partner": 18096,
+ "▁quand": 18097,
+ "symbol": 18098,
+ "ulating": 18099,
+ "▁zd": 18100,
+ "awn": 18101,
+ "▁Grant": 18102,
+ "because": 18103,
+ "rable": 18104,
+ "\\}": 18105,
+ "ísticas": 18106,
+ "▁уче": 18107,
+ "▁période": 18108,
+ "▁ske": 18109,
+ "▁Anyway": 18110,
+ "▁indexes": 18111,
+ "▁directions": 18112,
+ "▁RAM": 18113,
+ "chrome": 18114,
+ "▁apost": 18115,
+ "▁warnings": 18116,
+ "▁Airport": 18117,
+ "VI": 18118,
+ "abile": 18119,
+ "▁lord": 18120,
+ "provider": 18121,
+ "▁Ji": 18122,
+ "ostream": 18123,
+ "▁gemeente": 18124,
+ "tableView": 18125,
+ "Extra": 18126,
+ "cursor": 18127,
+ "eground": 18128,
+ "▁Moz": 18129,
+ "▁rib": 18130,
+ "▁morph": 18131,
+ "loads": 18132,
+ "elsk": 18133,
+ "▁MAX": 18134,
+ "▁Santiago": 18135,
+ "▁Him": 18136,
+ "codes": 18137,
+ "▁lanz": 18138,
+ "▁counts": 18139,
+ "rinningsområ": 18140,
+ "щё": 18141,
+ "▁spé": 18142,
+ "▁pierws": 18143,
+ "▁Sver": 18144,
+ "▁acknow": 18145,
+ "Boolean": 18146,
+ "▁фамили": 18147,
+ "▁Senate": 18148,
+ "шов": 18149,
+ "agers": 18150,
+ "▁Nueva": 18151,
+ "bil": 18152,
+ "kiem": 18153,
+ "▁Mey": 18154,
+ "wij": 18155,
+ "▁GmbH": 18156,
+ "validation": 18157,
+ "▁ensuite": 18158,
+ "inking": 18159,
+ "▁campion": 18160,
+ "▁financial": 18161,
+ "izon": 18162,
+ "Headers": 18163,
+ "▁deprecated": 18164,
+ "▁fonction": 18165,
+ "REG": 18166,
+ "▁volumes": 18167,
+ "▁Chi": 18168,
+ "▁encountered": 18169,
+ "lak": 18170,
+ "рая": 18171,
+ "▁continues": 18172,
+ "▁~[": 18173,
+ "uerte": 18174,
+ "▁\\;": 18175,
+ "▁Dok": 18176,
+ "▁weights": 18177,
+ "▁rh": 18178,
+ "▁Napole": 18179,
+ "▁naturally": 18180,
+ "sku": 18181,
+ "pas": 18182,
+ "▁gegründ": 18183,
+ "etr": 18184,
+ "▁Ku": 18185,
+ "icted": 18186,
+ "▁fabric": 18187,
+ "▁ASC": 18188,
+ "▁Entertainment": 18189,
+ "▁energ": 18190,
+ "клад": 18191,
+ "omon": 18192,
+ "theme": 18193,
+ "▁харак": 18194,
+ "▁draft": 18195,
+ "▁channels": 18196,
+ "▁desert": 18197,
+ "▁través": 18198,
+ "▁Lock": 18199,
+ "▁siendo": 18200,
+ "фек": 18201,
+ "même": 18202,
+ "▁packet": 18203,
+ "▁Mountain": 18204,
+ "▁Fahr": 18205,
+ "braio": 18206,
+ "пере": 18207,
+ "▁genannt": 18208,
+ "▁deployment": 18209,
+ "Pal": 18210,
+ "ног": 18211,
+ "стру": 18212,
+ "Prim": 18213,
+ "für": 18214,
+ "▁dangerous": 18215,
+ "▁szám": 18216,
+ "reck": 18217,
+ "▁popup": 18218,
+ "icky": 18219,
+ "inar": 18220,
+ "cowo": 18221,
+ "нцикло": 18222,
+ "ítás": 18223,
+ "▁plugins": 18224,
+ "▁driven": 18225,
+ "лев": 18226,
+ "▁\"(": 18227,
+ "tta": 18228,
+ "▁Ú": 18229,
+ "▁eb": 18230,
+ "▁'';": 18231,
+ "▁knock": 18232,
+ "▁основа": 18233,
+ "▁maison": 18234,
+ "гля": 18235,
+ "▁Honor": 18236,
+ "tail": 18237,
+ "ritz": 18238,
+ "▁guys": 18239,
+ "▁combinations": 18240,
+ "ondere": 18241,
+ "▁Ald": 18242,
+ "▁fiddle": 18243,
+ "дав": 18244,
+ "urd": 18245,
+ "▁projection": 18246,
+ "▁También": 18247,
+ "verb": 18248,
+ "▁terre": 18249,
+ "rugu": 18250,
+ "▁september": 18251,
+ "▁=": 18572,
+ "▁Beat": 18573,
+ "▁Sax": 18574,
+ "vertical": 18575,
+ "кто": 18576,
+ "▁plants": 18577,
+ "▁Références": 18578,
+ "▁ogni": 18579,
+ "▁curs": 18580,
+ "▁SK": 18581,
+ "они": 18582,
+ "▁destac": 18583,
+ "\");\r": 18584,
+ "▁Sure": 18585,
+ "▁partido": 18586,
+ "▁Folge": 18587,
+ "▁Moore": 18588,
+ "▁wz": 18589,
+ "скус": 18590,
+ "ltre": 18591,
+ "ondo": 18592,
+ "▁pose": 18593,
+ "imos": 18594,
+ "бой": 18595,
+ "ципа": 18596,
+ "jus": 18597,
+ ".....": 18598,
+ "▁época": 18599,
+ "▁quanto": 18600,
+ "▁Support": 18601,
+ "geschichte": 18602,
+ "SERVER": 18603,
+ "▁Georges": 18604,
+ "enum": 18605,
+ "▁herm": 18606,
+ "▁nebo": 18607,
+ "▁Chr": 18608,
+ "character": 18609,
+ "▁***": 18610,
+ "▁Forsch": 18611,
+ "iami": 18612,
+ "▁¿": 18613,
+ "cych": 18614,
+ "▁fifth": 18615,
+ "sent": 18616,
+ "▁anderem": 18617,
+ "▁proportion": 18618,
+ "▁prest": 18619,
+ "▁Girl": 18620,
+ "▁drama": 18621,
+ "wand": 18622,
+ "▁Mail": 18623,
+ "▁Lux": 18624,
+ "▁který": 18625,
+ "▁Gesellschaft": 18626,
+ "▁Hinweis": 18627,
+ "nisse": 18628,
+ "▁mondo": 18629,
+ "Eq": 18630,
+ "▁perí": 18631,
+ "▁eastern": 18632,
+ "▁UEFA": 18633,
+ "uale": 18634,
+ "▁convex": 18635,
+ "▁поль": 18636,
+ "▁Hey": 18637,
+ "zenie": 18638,
+ "initely": 18639,
+ "▁Zusammen": 18640,
+ "SSL": 18641,
+ "ocal": 18642,
+ "▁canal": 18643,
+ "voy": 18644,
+ "▁Кри": 18645,
+ "▁között": 18646,
+ "▁cars": 18647,
+ "▁versión": 18648,
+ "Environment": 18649,
+ "Her": 18650,
+ "▁señ": 18651,
+ "▁spatial": 18652,
+ "ymi": 18653,
+ "Fire": 18654,
+ "▁veget": 18655,
+ "▁Wie": 18656,
+ "▁znaj": 18657,
+ "▁damage": 18658,
+ "▁endl": 18659,
+ "gif": 18660,
+ "▁quali": 18661,
+ "▁которых": 18662,
+ "ellan": 18663,
+ "▁mens": 18664,
+ "▁plug": 18665,
+ "▁abund": 18666,
+ "FIG": 18667,
+ "▁sf": 18668,
+ "▁confl": 18669,
+ "▁населения": 18670,
+ "▁principles": 18671,
+ "▁Gabriel": 18672,
+ "ibe": 18673,
+ "▁{%": 18674,
+ "▁població": 18675,
+ "ніципа": 18676,
+ "▁extreme": 18677,
+ "▁asse": 18678,
+ "▁vu": 18679,
+ "Mock": 18680,
+ "▁spielte": 18681,
+ "▁Aer": 18682,
+ "▁datos": 18683,
+ "endes": 18684,
+ "▁Gel": 18685,
+ "▁Gor": 18686,
+ "Christ": 18687,
+ "chos": 18688,
+ "Processor": 18689,
+ "▁instruct": 18690,
+ "▁picked": 18691,
+ "nahme": 18692,
+ "fahr": 18693,
+ "▁indicated": 18694,
+ "▁%.": 18695,
+ "▁ts": 18696,
+ "▁notable": 18697,
+ "▁qualified": 18698,
+ "▁Ал": 18699,
+ "Black": 18700,
+ "▁council": 18701,
+ "▁overhead": 18702,
+ "aci": 18703,
+ "année": 18704,
+ "▁initWith": 18705,
+ "bió": 18706,
+ "▁introduction": 18707,
+ "▁companion": 18708,
+ "▁expon": 18709,
+ "▁kör": 18710,
+ "oby": 18711,
+ "burn": 18712,
+ "gnu": 18713,
+ "virtual": 18714,
+ "▁intellect": 18715,
+ "▁держа": 18716,
+ "'+": 18717,
+ "бле": 18718,
+ "▁strictly": 18719,
+ "▁recognize": 18720,
+ "hour": 18721,
+ "▁Wrest": 18722,
+ "ennen": 18723,
+ "$).": 18724,
+ "fff": 18725,
+ "▁Centro": 18726,
+ "▁Pitt": 18727,
+ "▁dział": 18728,
+ "▁cela": 18729,
+ "▁francese": 18730,
+ "рами": 18731,
+ "special": 18732,
+ "▁Dup": 18733,
+ "toire": 18734,
+ "каль": 18735,
+ "COUNT": 18736,
+ "▁Brook": 18737,
+ "▁руково": 18738,
+ "publique": 18739,
+ "▁seconda": 18740,
+ "▁compt": 18741,
+ "▁bland": 18742,
+ "Before": 18743,
+ "▁Pack": 18744,
+ "alty": 18745,
+ "öder": 18746,
+ "▁intervals": 18747,
+ "▁Datenbank": 18748,
+ "Movie": 18749,
+ "▁transm": 18750,
+ "▁tap": 18751,
+ "▁поч": 18752,
+ "fon": 18753,
+ "iai": 18754,
+ "▁fib": 18755,
+ "▁wyd": 18756,
+ "▁hung": 18757,
+ "▁alive": 18758,
+ "Clear": 18759,
+ "▁pushed": 18760,
+ "▁tuple": 18761,
+ "achen": 18762,
+ "гово": 18763,
+ "▁revers": 18764,
+ "▁augment": 18765,
+ "▁challenge": 18766,
+ "lost": 18767,
+ "▁deuxième": 18768,
+ "structor": 18769,
+ "▁mehrerer": 18770,
+ "atural": 18771,
+ "Split": 18772,
+ "стем": 18773,
+ "шла": 18774,
+ ")\\\\": 18775,
+ "▁Dog": 18776,
+ "▁developers": 18777,
+ "▁nod": 18778,
+ "▁сторо": 18779,
+ "▁NaN": 18780,
+ "▁priest": 18781,
+ "▁exha": 18782,
+ "UND": 18783,
+ "pair": 18784,
+ "alone": 18785,
+ "▁moon": 18786,
+ "▁#!/": 18787,
+ "▁guns": 18788,
+ "rola": 18789,
+ "чита": 18790,
+ "▁Encyclopedia": 18791,
+ "atis": 18792,
+ "▁'\"": 18793,
+ "zych": 18794,
+ "▁superfic": 18795,
+ "▁эк": 18796,
+ "едера": 18797,
+ "feed": 18798,
+ "LAY": 18799,
+ "Fi": 18800,
+ "unks": 18801,
+ "isecond": 18802,
+ "▁'@": 18803,
+ "▁Adding": 18804,
+ "рое": 18805,
+ "▁tang": 18806,
+ "цо": 18807,
+ "hung": 18808,
+ "bis": 18809,
+ "ského": 18810,
+ "▁advert": 18811,
+ "▁занима": 18812,
+ "uzz": 18813,
+ "ágina": 18814,
+ "▁Tel": 18815,
+ "sig": 18816,
+ "▁Ez": 18817,
+ "▁guarantee": 18818,
+ "▁teaching": 18819,
+ "oty": 18820,
+ "termin": 18821,
+ "▁distributions": 18822,
+ "FLA": 18823,
+ "▁Giuseppe": 18824,
+ "querySelector": 18825,
+ "▁/\\": 18826,
+ "▁Squad": 18827,
+ "gz": 18828,
+ "delay": 18829,
+ "▁surrounding": 18830,
+ "▁manus": 18831,
+ "▁Hou": 18832,
+ "²,": 18833,
+ "▁cultiv": 18834,
+ "▁troubles": 18835,
+ "▁raison": 18836,
+ "expand": 18837,
+ "▁cov": 18838,
+ "nungen": 18839,
+ ")){": 18840,
+ "▁geen": 18841,
+ "▁außer": 18842,
+ "▁Лі": 18843,
+ "ři": 18844,
+ "▁situations": 18845,
+ "▁telep": 18846,
+ "▁Jed": 18847,
+ "▁travail": 18848,
+ "lias": 18849,
+ "bullet": 18850,
+ "▁selecting": 18851,
+ "avier": 18852,
+ "▁essential": 18853,
+ "(/": 18854,
+ "yyyy": 18855,
+ "ště": 18856,
+ "ulty": 18857,
+ "▁kra": 18858,
+ "▁tabs": 18859,
+ "▁experienced": 18860,
+ "azi": 18861,
+ "▁Directory": 18862,
+ "▁cron": 18863,
+ "▁spend": 18864,
+ "▁RA": 18865,
+ "▁selenium": 18866,
+ "▁Thé": 18867,
+ "Elements": 18868,
+ "cii": 18869,
+ "▁plat": 18870,
+ "▁archive": 18871,
+ "▁assistance": 18872,
+ "▁neck": 18873,
+ "▁Avenue": 18874,
+ "▁wheel": 18875,
+ "▁hade": 18876,
+ "Common": 18877,
+ "▁Dialog": 18878,
+ "▁forg": 18879,
+ "▁surely": 18880,
+ "▁hockey": 18881,
+ "któ": 18882,
+ "▁tk": 18883,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 18884,
+ "▁Bruce": 18885,
+ "▁enorm": 18886,
+ ",’": 18887,
+ "▁Christopher": 18888,
+ "jev": 18889,
+ "▁quad": 18890,
+ "▁AJAX": 18891,
+ "▁relief": 18892,
+ "▁modes": 18893,
+ "sklär": 18894,
+ "▁Vid": 18895,
+ "▁Serial": 18896,
+ "▁tokens": 18897,
+ "▁Poland": 18898,
+ "\\]": 18899,
+ "▁vide": 18900,
+ "rooms": 18901,
+ "omas": 18902,
+ "▁Bureau": 18903,
+ "cx": 18904,
+ "ностью": 18905,
+ "▁signs": 18906,
+ "шение": 18907,
+ "lossen": 18908,
+ "▁Queens": 18909,
+ "▁membre": 18910,
+ "▁mez": 18911,
+ "▁Bool": 18912,
+ "▁Naj": 18913,
+ "▁Memory": 18914,
+ "▁Khan": 18915,
+ "▁là": 18916,
+ "▁Hud": 18917,
+ "▁dismiss": 18918,
+ "ighth": 18919,
+ "▁fs": 18920,
+ "prevent": 18921,
+ "▁меда": 18922,
+ "▁Police": 18923,
+ "▁ско": 18924,
+ "finite": 18925,
+ "▁ami": 18926,
+ "▁Much": 18927,
+ "owania": 18928,
+ "ORY": 18929,
+ "iors": 18930,
+ "▁Premio": 18931,
+ "▁textbox": 18932,
+ "dm": 18933,
+ "▁afin": 18934,
+ "▁Donald": 18935,
+ "▁Priv": 18936,
+ "▁decid": 18937,
+ "▁Maurice": 18938,
+ "agan": 18939,
+ "▁Britannica": 18940,
+ "▁oft": 18941,
+ "▁consecutive": 18942,
+ "\"?>": 18943,
+ "овий": 18944,
+ "student": 18945,
+ "▁peque": 18946,
+ "▁dieses": 18947,
+ "▁retour": 18948,
+ "étr": 18949,
+ "▁сез": 18950,
+ "▁kre": 18951,
+ "▁votes": 18952,
+ "ruption": 18953,
+ "izada": 18954,
+ "▁Wiel": 18955,
+ "▁Gray": 18956,
+ "▁Leop": 18957,
+ "teilung": 18958,
+ "(['": 18959,
+ "▁whites": 18960,
+ "frica": 18961,
+ "animation": 18962,
+ "curl": 18963,
+ "lings": 18964,
+ "=\"$": 18965,
+ "loyd": 18966,
+ "textsc": 18967,
+ "ору": 18968,
+ "▁села": 18969,
+ "esian": 18970,
+ "▁Mission": 18971,
+ "▁неза": 18972,
+ "▁ultimately": 18973,
+ "бов": 18974,
+ "olen": 18975,
+ "скому": 18976,
+ "nete": 18977,
+ "▁Dit": 18978,
+ "▁costru": 18979,
+ "dependent": 18980,
+ "▁Resource": 18981,
+ "▁hosts": 18982,
+ "▁rear": 18983,
+ "Duration": 18984,
+ "ників": 18985,
+ "Ма": 18986,
+ "▁planning": 18987,
+ "▁prediction": 18988,
+ "▁Lyn": 18989,
+ "▁kir": 18990,
+ "▁Legisl": 18991,
+ "мат": 18992,
+ "▁Soccer": 18993,
+ "▁survey": 18994,
+ "▁estadounidense": 18995,
+ "orgen": 18996,
+ "jourd": 18997,
+ "▁aprile": 18998,
+ "▁ids": 18999,
+ "ське": 19000,
+ "▁employee": 19001,
+ "▁Schauspieler": 19002,
+ "ръ": 19003,
+ "▁multimedia": 19004,
+ "▁свою": 19005,
+ "▁wine": 19006,
+ "▁EU": 19007,
+ "ică": 19008,
+ "▁Rhein": 19009,
+ "▁Palmar": 19010,
+ "oteca": 19011,
+ "▁prepare": 19012,
+ "▁Tot": 19013,
+ "▁Null": 19014,
+ "▁kin": 19015,
+ "inals": 19016,
+ "▁Newton": 19017,
+ "▁tbl": 19018,
+ "▁Sold": 19019,
+ "▁verf": 19020,
+ "aturing": 19021,
+ "▁laptop": 19022,
+ "▁Совет": 19023,
+ "secret": 19024,
+ "▁Olympic": 19025,
+ "▁footballer": 19026,
+ "▁Rudolf": 19027,
+ "▁conhe": 19028,
+ "zysk": 19029,
+ "▁evaluated": 19030,
+ "»)": 19031,
+ "shop": 19032,
+ "repository": 19033,
+ "▁zach": 19034,
+ "▁losing": 19035,
+ "etter": 19036,
+ "▁Wirtschaft": 19037,
+ "так": 19038,
+ "▁unnecessary": 19039,
+ "▁Phot": 19040,
+ "anska": 19041,
+ "▁Native": 19042,
+ "CCE": 19043,
+ "▁fifty": 19044,
+ "▁erw": 19045,
+ "rh": 19046,
+ "issent": 19047,
+ "}{(": 19048,
+ "▁lanç": 19049,
+ "▁Xcode": 19050,
+ "город": 19051,
+ "cir": 19052,
+ "▁película": 19053,
+ "▁Oscar": 19054,
+ "▁shore": 19055,
+ "▁supplied": 19056,
+ "examples": 19057,
+ "Mess": 19058,
+ "VICE": 19059,
+ "▁exclude": 19060,
+ "▁hen": 19061,
+ "▁губер": 19062,
+ "▁Fragment": 19063,
+ "▁Bitte": 19064,
+ "▁Besides": 19065,
+ "▁hes": 19066,
+ "▁ihrem": 19067,
+ "▁Serge": 19068,
+ "▁artific": 19069,
+ "=\"${": 19070,
+ "лово": 19071,
+ "uteur": 19072,
+ "taire": 19073,
+ "пас": 19074,
+ "▁easiest": 19075,
+ "▁famiglia": 19076,
+ "Normal": 19077,
+ "▁dalle": 19078,
+ "▁nations": 19079,
+ "rp": 19080,
+ "thead": 19081,
+ "▁області": 19082,
+ "▁Democratic": 19083,
+ "▁челове": 19084,
+ "мож": 19085,
+ "▁гер": 19086,
+ "▁smallest": 19087,
+ "▁Publishing": 19088,
+ "▁Ts": 19089,
+ "▁laughed": 19090,
+ "lle": 19091,
+ "▁Amt": 19092,
+ "▁IIS": 19093,
+ "FORM": 19094,
+ "Mag": 19095,
+ "дон": 19096,
+ "▁storia": 19097,
+ "▁organized": 19098,
+ "ční": 19099,
+ "▁ox": 19100,
+ "lingen": 19101,
+ "▁luego": 19102,
+ "cció": 19103,
+ "▁rely": 19104,
+ "▁tussen": 19105,
+ "erten": 19106,
+ "▁honour": 19107,
+ "▁Claude": 19108,
+ "▁Korea": 19109,
+ "▁Metropol": 19110,
+ "Super": 19111,
+ "rien": 19112,
+ "érature": 19113,
+ "attro": 19114,
+ "▁біль": 19115,
+ "▁Herbert": 19116,
+ "▁auteurs": 19117,
+ "▁darauf": 19118,
+ "▁mental": 19119,
+ "▁rang": 19120,
+ "▁són": 19121,
+ "▁Soph": 19122,
+ ")\",": 19123,
+ "Descriptor": 19124,
+ "prepare": 19125,
+ "▁Landkreis": 19126,
+ "HC": 19127,
+ "cross": 19128,
+ "лиза": 19129,
+ "▁Login": 19130,
+ "onen": 19131,
+ "Feature": 19132,
+ "▁museum": 19133,
+ "vek": 19134,
+ "▁Nelson": 19135,
+ "▁rejo": 19136,
+ "▁команди": 19137,
+ "▁summar": 19138,
+ "▁следу": 19139,
+ "ämp": 19140,
+ "▁Gas": 19141,
+ "вом": 19142,
+ "VALUE": 19143,
+ "inge": 19144,
+ "period": 19145,
+ "lassen": 19146,
+ "ával": 19147,
+ "▁altogether": 19148,
+ "umph": 19149,
+ "istro": 19150,
+ "ąż": 19151,
+ "▁Keep": 19152,
+ "▁Marco": 19153,
+ "▁étant": 19154,
+ "▁Dre": 19155,
+ "geometry": 19156,
+ "▁Kas": 19157,
+ "messages": 19158,
+ "Cook": 19159,
+ "▁Side": 19160,
+ "▁коми": 19161,
+ "стри": 19162,
+ "▁excess": 19163,
+ "▁Biografia": 19164,
+ "XXXX": 19165,
+ "▁Nie": 19166,
+ "vendor": 19167,
+ "xsd": 19168,
+ "Mill": 19169,
+ "processing": 19170,
+ "▁Missouri": 19171,
+ "▁permett": 19172,
+ "▁apar": 19173,
+ "▁crowd": 19174,
+ "fert": 19175,
+ "▁Dou": 19176,
+ "rí": 19177,
+ "▁CC": 19178,
+ "▁payment": 19179,
+ "▁Hollywood": 19180,
+ "▁Virtual": 19181,
+ "▁spoken": 19182,
+ "▁tram": 19183,
+ "▁Community": 19184,
+ "▁administrative": 19185,
+ "▁воло": 19186,
+ "gior": 19187,
+ "visor": 19188,
+ "▁Украи": 19189,
+ "stage": 19190,
+ "▁Format": 19191,
+ "▁convenient": 19192,
+ "На": 19193,
+ "▁median": 19194,
+ "▁вра": 19195,
+ "▁Према": 19196,
+ "enig": 19197,
+ "▁Opera": 19198,
+ "rés": 19199,
+ "▁fmt": 19200,
+ "▁efficiency": 19201,
+ "male": 19202,
+ "Master": 19203,
+ "Series": 19204,
+ "▁syd": 19205,
+ "generic": 19206,
+ "interval": 19207,
+ "▁efect": 19208,
+ "▁inwoners": 19209,
+ "лимпи": 19210,
+ "irement": 19211,
+ "Err": 19212,
+ "öh": 19213,
+ "▁lying": 19214,
+ "▁Settings": 19215,
+ "!=": 19216,
+ "ematic": 19217,
+ "argv": 19218,
+ "▁Basic": 19219,
+ "▁consideration": 19220,
+ "▁habe": 19221,
+ "-%": 19222,
+ "▁mountains": 19223,
+ "▁peak": 19224,
+ "▁fallen": 19225,
+ "eded": 19226,
+ "logic": 19227,
+ "▁matched": 19228,
+ "▁typing": 19229,
+ ")},": 19230,
+ "▁fancy": 19231,
+ "▁elegant": 19232,
+ "ال": 19233,
+ "▁участ": 19234,
+ "▁Sarah": 19235,
+ "▁Verd": 19236,
+ "▁tego": 19237,
+ "rules": 19238,
+ "▁mounted": 19239,
+ "▁ім": 19240,
+ "еру": 19241,
+ "stoff": 19242,
+ "fahren": 19243,
+ "distance": 19244,
+ "▁License": 19245,
+ "▁LEFT": 19246,
+ "▁wp": 19247,
+ "/{": 19248,
+ "▁amazon": 19249,
+ ">&": 19250,
+ "▁első": 19251,
+ "quarters": 19252,
+ "▁shock": 19253,
+ "nick": 19254,
+ "▁Archite": 19255,
+ "▁Square": 19256,
+ "▁rates": 19257,
+ "iore": 19258,
+ "▁Nat": 19259,
+ "▁Charlot": 19260,
+ "reichen": 19261,
+ "▁variation": 19262,
+ "osis": 19263,
+ "life": 19264,
+ "slide": 19265,
+ "abi": 19266,
+ "uki": 19267,
+ "mysq": 19268,
+ "▁primitive": 19269,
+ "▁universitaire": 19270,
+ "LENG": 19271,
+ "ależ": 19272,
+ "ebook": 19273,
+ "syn": 19274,
+ "▁Gegen": 19275,
+ "▁Kü": 19276,
+ "▁але": 19277,
+ "▁Lub": 19278,
+ "concurrent": 19279,
+ "izzato": 19280,
+ "▁stub": 19281,
+ "▁ie": 19282,
+ "▁'./": 19283,
+ "cod": 19284,
+ "▁internacional": 19285,
+ "▁Glas": 19286,
+ "▁mare": 19287,
+ "▁Neb": 19288,
+ "▁GB": 19289,
+ "kwargs": 19290,
+ "▁aument": 19291,
+ "WID": 19292,
+ "▁род": 19293,
+ "punkt": 19294,
+ "▁Grad": 19295,
+ "SN": 19296,
+ "AMP": 19297,
+ "▁Born": 19298,
+ "▁Guerre": 19299,
+ "готов": 19300,
+ "▁medio": 19301,
+ "Med": 19302,
+ "supp": 19303,
+ "actual": 19304,
+ "dropdown": 19305,
+ "▁oktober": 19306,
+ "▁ř": 19307,
+ "▁circular": 19308,
+ "▁skin": 19309,
+ "▁emphas": 19310,
+ "▁голов": 19311,
+ "▁pue": 19312,
+ "▁informations": 19313,
+ "▁Wolfgang": 19314,
+ "▁useless": 19315,
+ "ит": 19316,
+ "▁Joan": 19317,
+ "▁бор": 19318,
+ "▁Glad": 19319,
+ "▁Know": 19320,
+ "ként": 19321,
+ "speed": 19322,
+ "▁Kevin": 19323,
+ "unft": 19324,
+ "▁arqu": 19325,
+ "▁Casa": 19326,
+ "(...": 19327,
+ "▁rapidly": 19328,
+ "▁proble": 19329,
+ "▁Википеди": 19330,
+ "žen": 19331,
+ "▁Neben": 19332,
+ "▁Meter": 19333,
+ "Children": 19334,
+ "cem": 19335,
+ "igos": 19336,
+ "aju": 19337,
+ "▁Retrie": 19338,
+ "▁Hell": 19339,
+ "▁gig": 19340,
+ "▁controvers": 19341,
+ "▁zoom": 19342,
+ "▁cens": 19343,
+ "▁alcuni": 19344,
+ "▁Header": 19345,
+ "Meta": 19346,
+ "Required": 19347,
+ "▁институ": 19348,
+ "▁skup": 19349,
+ "▁ingles": 19350,
+ "égl": 19351,
+ "bij": 19352,
+ "▁tér": 19353,
+ "▁compag": 19354,
+ "▁committed": 19355,
+ "▁processed": 19356,
+ "Lower": 19357,
+ "▁Foreign": 19358,
+ "▁seq": 19359,
+ "sheets": 19360,
+ "▁Fem": 19361,
+ "hoz": 19362,
+ "inks": 19363,
+ "▁kall": 19364,
+ "variant": 19365,
+ "▁libro": 19366,
+ "▁clicks": 19367,
+ "▁gobierno": 19368,
+ "iegel": 19369,
+ "мого": 19370,
+ "geme": 19371,
+ "▁tower": 19372,
+ "▁parish": 19373,
+ "▁TCP": 19374,
+ "▁ls": 19375,
+ "▁nginx": 19376,
+ "NaN": 19377,
+ "▁Dir": 19378,
+ "▁Begriffe": 19379,
+ "arie": 19380,
+ "ímp": 19381,
+ "icios": 19382,
+ "▁sharing": 19383,
+ "▁cinéma": 19384,
+ "bec": 19385,
+ "RED": 19386,
+ "▁Kra": 19387,
+ "abol": 19388,
+ "▁flux": 19389,
+ "▁expensive": 19390,
+ "▁суще": 19391,
+ "▁`_": 19392,
+ "ocz": 19393,
+ "лист": 19394,
+ "▁acquaint": 19395,
+ "▁wise": 19396,
+ "▁pouvoir": 19397,
+ "▁devant": 19398,
+ "▁momentum": 19399,
+ "immer": 19400,
+ "▁Coupe": 19401,
+ "indexOf": 19402,
+ "▁doesnt": 19403,
+ "▁зав": 19404,
+ "▁license": 19405,
+ "▁â": 19406,
+ "CSS": 19407,
+ "▁rice": 19408,
+ "Team": 19409,
+ "▁ano": 19410,
+ "lit": 19411,
+ "▁merged": 19412,
+ "▁Cell": 19413,
+ "лл": 19414,
+ "boy": 19415,
+ "asts": 19416,
+ "▁sell": 19417,
+ "▁große": 19418,
+ "▁virtuel": 19419,
+ "Cancel": 19420,
+ "▁sj": 19421,
+ "gment": 19422,
+ ".<": 19423,
+ "чай": 19424,
+ "ië": 19425,
+ "akh": 19426,
+ "izers": 19427,
+ "prit": 19428,
+ "▁Tib": 19429,
+ "▁elaborate": 19430,
+ "▁fé": 19431,
+ "▁меди": 19432,
+ "LENGTH": 19433,
+ "▁primarily": 19434,
+ "▁scores": 19435,
+ "▁carrying": 19436,
+ "▁lake": 19437,
+ "compose": 19438,
+ "▁Township": 19439,
+ "unge": 19440,
+ "▁alberga": 19441,
+ "anych": 19442,
+ "quelle": 19443,
+ "▁Ark": 19444,
+ "▁pris": 19445,
+ "▁voll": 19446,
+ "шли": 19447,
+ "Validation": 19448,
+ "▁ceux": 19449,
+ "▁populate": 19450,
+ "\"\r": 19451,
+ "▁femmes": 19452,
+ "ANG": 19453,
+ "▁Despite": 19454,
+ "вые": 19455,
+ "iske": 19456,
+ "zug": 19457,
+ "нача": 19458,
+ "▁hatten": 19459,
+ "INSERT": 19460,
+ "Employee": 19461,
+ "▁moments": 19462,
+ "▁última": 19463,
+ "▁holder": 19464,
+ "blank": 19465,
+ "Collections": 19466,
+ "athers": 19467,
+ "▁grade": 19468,
+ "▁affairs": 19469,
+ ".$$": 19470,
+ "▁delta": 19471,
+ "▁Jugend": 19472,
+ "▁español": 19473,
+ "▁OUT": 19474,
+ "▁mathematical": 19475,
+ "▁mongo": 19476,
+ "▁Фе": 19477,
+ "uling": 19478,
+ "▁revolution": 19479,
+ "▁coin": 19480,
+ "▁subclass": 19481,
+ "\"=>": 19482,
+ "äche": 19483,
+ "▁pyg": 19484,
+ "щая": 19485,
+ "illery": 19486,
+ "▁comenz": 19487,
+ "depth": 19488,
+ "▁cél": 19489,
+ "▁resize": 19490,
+ "▁Same": 19491,
+ "▁strik": 19492,
+ "▁tir": 19493,
+ "▁scarc": 19494,
+ "▁Member": 19495,
+ "subscribe": 19496,
+ "óż": 19497,
+ "útbol": 19498,
+ "except": 19499,
+ "▁driving": 19500,
+ "kie": 19501,
+ "zony": 19502,
+ "èmes": 19503,
+ "David": 19504,
+ "issant": 19505,
+ "▁ты": 19506,
+ "▁élect": 19507,
+ "▁rename": 19508,
+ "▁Running": 19509,
+ "▁interfaces": 19510,
+ "////////////////": 19511,
+ "▁Walker": 19512,
+ "▁société": 19513,
+ "▁asks": 19514,
+ "brid": 19515,
+ "▁jewe": 19516,
+ "▁seines": 19517,
+ "▁agents": 19518,
+ "▁MY": 19519,
+ "▁Lawrence": 19520,
+ "dess": 19521,
+ "iesen": 19522,
+ "▁людях": 19523,
+ "прави": 19524,
+ "▁ancest": 19525,
+ "▁welche": 19526,
+ "raum": 19527,
+ "▁orb": 19528,
+ "scal": 19529,
+ "▁Lear": 19530,
+ "▁wear": 19531,
+ "▁slave": 19532,
+ "▁renamed": 19533,
+ "čen": 19534,
+ "maste": 19535,
+ "angles": 19536,
+ "▁América": 19537,
+ "▁ti": 19538,
+ "▁demsel": 19539,
+ "▁beneath": 19540,
+ "binary": 19541,
+ "▁edición": 19542,
+ "▁kilomet": 19543,
+ "uits": 19544,
+ "▁cuatro": 19545,
+ "▁entrance": 19546,
+ "ondissement": 19547,
+ "▁bag": 19548,
+ "▁Armen": 19549,
+ "ijo": 19550,
+ "▁Lors": 19551,
+ "▁demselben": 19552,
+ "êm": 19553,
+ "▁discrete": 19554,
+ "▁prominent": 19555,
+ "▁Jay": 19556,
+ "decor": 19557,
+ "DL": 19558,
+ "▁dí": 19559,
+ "Struct": 19560,
+ "▁Production": 19561,
+ "they": 19562,
+ "arius": 19563,
+ "schnitt": 19564,
+ "▁Cou": 19565,
+ "▁lex": 19566,
+ "youtube": 19567,
+ "▁работа": 19568,
+ "station": 19569,
+ "sep": 19570,
+ "▁mirror": 19571,
+ "▁hits": 19572,
+ "▁Beck": 19573,
+ "atically": 19574,
+ "▁Laz": 19575,
+ "▁winner": 19576,
+ "DEX": 19577,
+ "▁INT": 19578,
+ "}^{-": 19579,
+ "▁wegen": 19580,
+ "mad": 19581,
+ "Angle": 19582,
+ "zing": 19583,
+ "▁Bayern": 19584,
+ "sal": 19585,
+ "äger": 19586,
+ "▁busy": 19587,
+ "▁stör": 19588,
+ "▁folk": 19589,
+ "▁prix": 19590,
+ "▁allocated": 19591,
+ "▁pt": 19592,
+ "affen": 19593,
+ "cluster": 19594,
+ "▁complement": 19595,
+ "árs": 19596,
+ "▁Amerika": 19597,
+ "рій": 19598,
+ "▁valley": 19599,
+ "▁rooms": 19600,
+ "▁moi": 19601,
+ ".\",": 19602,
+ ";;;;": 19603,
+ "▁lowest": 19604,
+ "nog": 19605,
+ "▁landet": 19606,
+ "▁programme": 19607,
+ "chio": 19608,
+ "▁Während": 19609,
+ "ández": 19610,
+ "▁долж": 19611,
+ "▁ouv": 19612,
+ "omány": 19613,
+ "▁Википедии": 19614,
+ "▁só": 19615,
+ "▁elektr": 19616,
+ "Desc": 19617,
+ "▁Beaut": 19618,
+ "нар": 19619,
+ "▁може": 19620,
+ "Pierre": 19621,
+ "esota": 19622,
+ "▁operated": 19623,
+ "▁forte": 19624,
+ "рис": 19625,
+ "▁opposition": 19626,
+ "alia": 19627,
+ "▁Syl": 19628,
+ "getName": 19629,
+ "вели": 19630,
+ "fik": 19631,
+ "▁comprom": 19632,
+ "▁TextView": 19633,
+ "Spring": 19634,
+ "metadata": 19635,
+ "engu": 19636,
+ "/,": 19637,
+ "▁carri": 19638,
+ "istol": 19639,
+ "▁diagonal": 19640,
+ "lista": 19641,
+ "izen": 19642,
+ "▁rende": 19643,
+ "gcc": 19644,
+ "beck": 19645,
+ "lius": 19646,
+ "iral": 19647,
+ "Resolver": 19648,
+ "▁percentage": 19649,
+ "▁attra": 19650,
+ "strings": 19651,
+ "wiąz": 19652,
+ "ods": 19653,
+ "волю": 19654,
+ "ęż": 19655,
+ "▁newspaper": 19656,
+ "imiter": 19657,
+ "ABC": 19658,
+ "▁Manchester": 19659,
+ "[{": 19660,
+ "Agent": 19661,
+ "▁Wor": 19662,
+ "▁Kath": 19663,
+ "▁пові": 19664,
+ "▁entonces": 19665,
+ "▁niveau": 19666,
+ "atted": 19667,
+ "learn": 19668,
+ "atiques": 19669,
+ "▁уби": 19670,
+ "▁quindi": 19671,
+ "binding": 19672,
+ "▁imported": 19673,
+ "▁Horn": 19674,
+ "emberg": 19675,
+ "complex": 19676,
+ "▁neural": 19677,
+ "information": 19678,
+ "▁recognition": 19679,
+ "ingt": 19680,
+ "▁inhabitants": 19681,
+ "vue": 19682,
+ "▁Bevölker": 19683,
+ "▁curves": 19684,
+ "▁leb": 19685,
+ "дій": 19686,
+ "▁sow": 19687,
+ "▁sentiment": 19688,
+ "PH": 19689,
+ "rache": 19690,
+ "▁-(": 19691,
+ "▁estable": 19692,
+ "▁Ferdinand": 19693,
+ "▁écrit": 19694,
+ "▁primeiro": 19695,
+ "▁tex": 19696,
+ "▁intermediate": 19697,
+ "verage": 19698,
+ "ibus": 19699,
+ "▁serves": 19700,
+ "ivas": 19701,
+ "▁bru": 19702,
+ "▁lum": 19703,
+ "attice": 19704,
+ "чный": 19705,
+ "▁Dres": 19706,
+ "▁videos": 19707,
+ "duration": 19708,
+ "▁abit": 19709,
+ "▁egg": 19710,
+ "ographical": 19711,
+ "alph": 19712,
+ "STATE": 19713,
+ "▁пара": 19714,
+ "reading": 19715,
+ "▁vehicle": 19716,
+ "▁fortune": 19717,
+ "ultats": 19718,
+ "▁Storia": 19719,
+ "midt": 19720,
+ "łącz": 19721,
+ "▁Memorial": 19722,
+ "▁vas": 19723,
+ "▁зан": 19724,
+ "▁utility": 19725,
+ "▁obsc": 19726,
+ "▁relacion": 19727,
+ "▁runat": 19728,
+ "Release": 19729,
+ "take": 19730,
+ "▁Oliver": 19731,
+ "▁Sid": 19732,
+ "ulos": 19733,
+ "▁Garc": 19734,
+ "▁розта": 19735,
+ "▁Sak": 19736,
+ "Py": 19737,
+ "führt": 19738,
+ "▁trabal": 19739,
+ "*{": 19740,
+ "▁zes": 19741,
+ "▁szere": 19742,
+ "▁varios": 19743,
+ "▁otra": 19744,
+ "▁eval": 19745,
+ "▁situé": 19746,
+ "▁wounded": 19747,
+ "▁Vincent": 19748,
+ "▁викори": 19749,
+ "▁encode": 19750,
+ "Modal": 19751,
+ "▁forb": 19752,
+ "▁dynamics": 19753,
+ "▁depos": 19754,
+ "arde": 19755,
+ "▁streets": 19756,
+ "▁Komm": 19757,
+ "=$(": 19758,
+ "▁повер": 19759,
+ "▁dois": 19760,
+ "▁vitt": 19761,
+ "▁automatisch": 19762,
+ "▁reload": 19763,
+ "▁Verwalt": 19764,
+ "bero": 19765,
+ "▁hub": 19766,
+ "▁mos": 19767,
+ "▁tutto": 19768,
+ "▁Frederick": 19769,
+ "łow": 19770,
+ "antages": 19771,
+ "aque": 19772,
+ "paper": 19773,
+ "▁einige": 19774,
+ "`),": 19775,
+ "dj": 19776,
+ "▁Ple": 19777,
+ "▁%,": 19778,
+ "▁Bitmap": 19779,
+ "▁friendly": 19780,
+ "▁truly": 19781,
+ "▁stroke": 19782,
+ "roph": 19783,
+ "▁engl": 19784,
+ "▁coff": 19785,
+ "▁dust": 19786,
+ "▁Jahres": 19787,
+ "ppi": 19788,
+ "▁wys": 19789,
+ "factor": 19790,
+ "schluss": 19791,
+ "▁деревня": 19792,
+ "▁Past": 19793,
+ "▁дома": 19794,
+ "COM": 19795,
+ "▁pueden": 19796,
+ "▁gift": 19797,
+ "▁Gla": 19798,
+ "▁triggered": 19799,
+ "ély": 19800,
+ "ülés": 19801,
+ "▁Oliv": 19802,
+ "▁verso": 19803,
+ "▁lle": 19804,
+ "▁Gli": 19805,
+ "▁Ltd": 19806,
+ "oa": 19807,
+ "▁territorio": 19808,
+ "ordre": 19809,
+ "▁deck": 19810,
+ "dra": 19811,
+ "aszt": 19812,
+ "▁concerning": 19813,
+ "▁Additionally": 19814,
+ "▁které": 19815,
+ "▁grund": 19816,
+ "▁Gest": 19817,
+ "▁misunder": 19818,
+ "pret": 19819,
+ "────": 19820,
+ "▁reputation": 19821,
+ "zia": 19822,
+ "▁успе": 19823,
+ "▁escaped": 19824,
+ "▁Prag": 19825,
+ "perform": 19826,
+ "▁austral": 19827,
+ "▁Vater": 19828,
+ "час": 19829,
+ "▁races": 19830,
+ "▁Byte": 19831,
+ "Mask": 19832,
+ "▁Territ": 19833,
+ "стю": 19834,
+ "▁Voci": 19835,
+ "▁Fichier": 19836,
+ "▁Населення": 19837,
+ "▁Unterscheidung": 19838,
+ "teenth": 19839,
+ "▁pilot": 19840,
+ "▁ji": 19841,
+ "▁двух": 19842,
+ "▁orientation": 19843,
+ "indre": 19844,
+ "▁Dort": 19845,
+ "ças": 19846,
+ "пли": 19847,
+ "▁reaction": 19848,
+ "▁consisting": 19849,
+ "▁ferro": 19850,
+ "тисти": 19851,
+ "yard": 19852,
+ "▁сві": 19853,
+ "▁interpretation": 19854,
+ "ią": 19855,
+ "rah": 19856,
+ "▁fand": 19857,
+ "Public": 19858,
+ "▁universe": 19859,
+ "▁retir": 19860,
+ "▁conscious": 19861,
+ "arqu": 19862,
+ "▁waste": 19863,
+ "▁Bib": 19864,
+ "yclerView": 19865,
+ "▁listening": 19866,
+ "gleich": 19867,
+ "niejs": 19868,
+ "▁correlation": 19869,
+ "▁receiver": 19870,
+ "▁уда": 19871,
+ "▁courage": 19872,
+ "uchs": 19873,
+ "fass": 19874,
+ "▁chunk": 19875,
+ "▁Anfang": 19876,
+ "▁großen": 19877,
+ "continue": 19878,
+ "▁Warszawa": 19879,
+ "hé": 19880,
+ "iy": 19881,
+ "ivement": 19882,
+ "▁α": 19883,
+ "▁exposed": 19884,
+ "▁zahl": 19885,
+ "▁sacr": 19886,
+ "▁Looks": 19887,
+ "▁eager": 19888,
+ "enten": 19889,
+ "Cursor": 19890,
+ "/_": 19891,
+ "ixa": 19892,
+ "рела": 19893,
+ "знача": 19894,
+ "▁фамилией": 19895,
+ "▁argent": 19896,
+ "▁Anders": 19897,
+ "œuvre": 19898,
+ "▁Isa": 19899,
+ "мента": 19900,
+ "▁advers": 19901,
+ "riction": 19902,
+ "GP": 19903,
+ "▁після": 19904,
+ "▁preserve": 19905,
+ "▁Garden": 19906,
+ "Rate": 19907,
+ "après": 19908,
+ "▁readable": 19909,
+ "indu": 19910,
+ "▁skill": 19911,
+ "▁helping": 19912,
+ "ographique": 19913,
+ "cling": 19914,
+ "ologist": 19915,
+ "▁Filter": 19916,
+ "▁finger": 19917,
+ "▁Vall": 19918,
+ "▁Polish": 19919,
+ "lg": 19920,
+ "▁Familien": 19921,
+ "▁waters": 19922,
+ "▁pseud": 19923,
+ "aza": 19924,
+ "_)": 19925,
+ "ARY": 19926,
+ "▁среди": 19927,
+ "▁Must": 19928,
+ "▁Bod": 19929,
+ "anon": 19930,
+ "▁lado": 19931,
+ "▁tight": 19932,
+ "imen": 19933,
+ "appen": 19934,
+ "frames": 19935,
+ "ingers": 19936,
+ "▁COVID": 19937,
+ "▁зі": 19938,
+ "▁све": 19939,
+ "▁ць": 19940,
+ "▁Left": 19941,
+ "]];": 19942,
+ "чь": 19943,
+ "фика": 19944,
+ "▁сло": 19945,
+ "▁пі": 19946,
+ "▁existe": 19947,
+ "▁Atlantic": 19948,
+ "▁maintained": 19949,
+ "▁irre": 19950,
+ "▁année": 19951,
+ "▁commented": 19952,
+ "веро": 19953,
+ "berta": 19954,
+ "▁Lad": 19955,
+ "▁Upon": 19956,
+ "▁pause": 19957,
+ "mill": 19958,
+ "opter": 19959,
+ "UK": 19960,
+ "рес": 19961,
+ "нциклопеди": 19962,
+ "▁alongside": 19963,
+ "▁robot": 19964,
+ "▁fert": 19965,
+ "▁moy": 19966,
+ "▁ade": 19967,
+ "Mapper": 19968,
+ ")->": 19969,
+ "igua": 19970,
+ "étique": 19971,
+ "тка": 19972,
+ "alias": 19973,
+ "▁ори": 19974,
+ "▁Magn": 19975,
+ "▁gehörte": 19976,
+ "imb": 19977,
+ ")}{\\": 19978,
+ "▁Wikipédia": 19979,
+ "▁urs": 19980,
+ "▁ende": 19981,
+ "leb": 19982,
+ "▁GC": 19983,
+ "Hol": 19984,
+ "ancing": 19985,
+ "Union": 19986,
+ "▁tenía": 19987,
+ "TT": 19988,
+ "▁estate": 19989,
+ "há": 19990,
+ "▁полі": 19991,
+ "ultan": 19992,
+ "▁Hockey": 19993,
+ "ulse": 19994,
+ "▁choices": 19995,
+ "scher": 19996,
+ "▁[],": 19997,
+ "▁potentially": 19998,
+ "▁Übers": 19999,
+ "▁admit": 20000,
+ "Comment": 20001,
+ "стя": 20002,
+ "▁Vien": 20003,
+ "▁ці": 20004,
+ "▁permut": 20005,
+ "cgi": 20006,
+ "▁crít": 20007,
+ "Console": 20008,
+ "ctic": 20009,
+ "▁okres": 20010,
+ "awk": 20011,
+ "football": 20012,
+ "ouest": 20013,
+ "CTYPE": 20014,
+ "ologique": 20015,
+ "▁constit": 20016,
+ "▁interests": 20017,
+ "▁Progress": 20018,
+ "▁Menu": 20019,
+ "▁také": 20020,
+ "▁Asian": 20021,
+ "▁защи": 20022,
+ "▁younger": 20023,
+ "▁wished": 20024,
+ "▁Sort": 20025,
+ "▁audience": 20026,
+ "amba": 20027,
+ "▁gehört": 20028,
+ "▁Kansas": 20029,
+ "yaume": 20030,
+ "▁Professional": 20031,
+ "âce": 20032,
+ "▁fatto": 20033,
+ "tod": 20034,
+ "▁datasets": 20035,
+ "▁fare": 20036,
+ "▁waves": 20037,
+ "~/": 20038,
+ "▁measurement": 20039,
+ "▁wol": 20040,
+ "indust": 20041,
+ "▁struggling": 20042,
+ "▁pulled": 20043,
+ "▁caratter": 20044,
+ "▁Externe": 20045,
+ "▁действи": 20046,
+ "cnt": 20047,
+ "liches": 20048,
+ "▁Possible": 20049,
+ "▁faced": 20050,
+ "▁hypothesis": 20051,
+ "▁kilom": 20052,
+ "▁när": 20053,
+ "boolean": 20054,
+ "PY": 20055,
+ "ampa": 20056,
+ "▁kiss": 20057,
+ "▁astero": 20058,
+ "▁negli": 20059,
+ "aments": 20060,
+ "▁Stu": 20061,
+ "ató": 20062,
+ "▁Constitution": 20063,
+ "▁interpol": 20064,
+ "▁Unable": 20065,
+ "▁pis": 20066,
+ "▁parc": 20067,
+ "\"])": 20068,
+ "pler": 20069,
+ "▁autory": 20070,
+ "▁algunos": 20071,
+ "ywna": 20072,
+ "}))": 20073,
+ "▁falls": 20074,
+ "▁équip": 20075,
+ "▁emit": 20076,
+ "▁profil": 20077,
+ "gets": 20078,
+ "фо": 20079,
+ "▁Military": 20080,
+ "▁nombreux": 20081,
+ "oct": 20082,
+ "Replace": 20083,
+ "▁seasons": 20084,
+ "▁château": 20085,
+ "▁typeof": 20086,
+ "polit": 20087,
+ "▁rand": 20088,
+ "▁quar": 20089,
+ "▁erstmals": 20090,
+ "сини": 20091,
+ "▁payload": 20092,
+ "По": 20093,
+ "кін": 20094,
+ "repo": 20095,
+ "▁Pav": 20096,
+ "Score": 20097,
+ "erves": 20098,
+ "▁sollte": 20099,
+ "▁між": 20100,
+ "ébec": 20101,
+ "▁clip": 20102,
+ "▁Nice": 20103,
+ "▁neben": 20104,
+ "▁assass": 20105,
+ "itories": 20106,
+ "▁unity": 20107,
+ "▁ен": 20108,
+ "▁Institut": 20109,
+ "▁internationale": 20110,
+ "▁наук": 20111,
+ "▁comand": 20112,
+ "▁kleine": 20113,
+ "▁adjacent": 20114,
+ "▁delivered": 20115,
+ "▁ше": 20116,
+ "зем": 20117,
+ "▁cot": 20118,
+ "visual": 20119,
+ "вает": 20120,
+ "▁Census": 20121,
+ "\\_": 20122,
+ "▁territory": 20123,
+ "чил": 20124,
+ "чные": 20125,
+ "flutter": 20126,
+ "DidLoad": 20127,
+ "Documents": 20128,
+ "▁dob": 20129,
+ "Bre": 20130,
+ "animate": 20131,
+ "▁biz": 20132,
+ "▁bata": 20133,
+ "▁SU": 20134,
+ "eso": 20135,
+ "▁priority": 20136,
+ "ván": 20137,
+ "iras": 20138,
+ "▁charged": 20139,
+ "▁Micro": 20140,
+ "atoire": 20141,
+ "чер": 20142,
+ "abad": 20143,
+ "uru": 20144,
+ "▁vš": 20145,
+ "dire": 20146,
+ "▁Twitter": 20147,
+ "▁мето": 20148,
+ ")..": 20149,
+ "▁Цент": 20150,
+ "▁entwick": 20151,
+ "▁Mind": 20152,
+ "▁функ": 20153,
+ "Future": 20154,
+ "lst": 20155,
+ "łoż": 20156,
+ "fli": 20157,
+ "tensor": 20158,
+ "▁topology": 20159,
+ "▁arte": 20160,
+ "ERT": 20161,
+ "▁variance": 20162,
+ "Images": 20163,
+ "▁(@": 20164,
+ "ArrayList": 20165,
+ "OC": 20166,
+ "▁Демо": 20167,
+ "aucoup": 20168,
+ "▁denotes": 20169,
+ "imon": 20170,
+ "њи": 20171,
+ "▁Przyp": 20172,
+ "▁Zag": 20173,
+ "▁дире": 20174,
+ "▁Similarly": 20175,
+ "бро": 20176,
+ "▁militaire": 20177,
+ "▁тому": 20178,
+ "▁Johnny": 20179,
+ "▁Мексику": 20180,
+ "ћа": 20181,
+ "Supp": 20182,
+ "▁junior": 20183,
+ "oltre": 20184,
+ "▁Моск": 20185,
+ "▁admitted": 20186,
+ "▁religios": 20187,
+ "зяй": 20188,
+ "его": 20189,
+ "▁tears": 20190,
+ "ingo": 20191,
+ "odu": 20192,
+ "iveness": 20193,
+ "▁logo": 20194,
+ "▁último": 20195,
+ "▁aliment": 20196,
+ "▁UITableView": 20197,
+ ")!": 20198,
+ "▁nj": 20199,
+ "lette": 20200,
+ "▁resident": 20201,
+ "▁termine": 20202,
+ "▁уже": 20203,
+ "▁Сте": 20204,
+ "office": 20205,
+ "▁carte": 20206,
+ "▁livre": 20207,
+ "▁Москов": 20208,
+ "▁elections": 20209,
+ "зиден": 20210,
+ "Trigger": 20211,
+ "▁Benjamin": 20212,
+ "addClass": 20213,
+ "ског": 20214,
+ "▁Observable": 20215,
+ "Cla": 20216,
+ "gemein": 20217,
+ "▁consent": 20218,
+ "ври": 20219,
+ "▁unfold": 20220,
+ "▁governor": 20221,
+ "нал": 20222,
+ "▁toda": 20223,
+ "Remote": 20224,
+ "arias": 20225,
+ "▁instal": 20226,
+ "fixed": 20227,
+ "▁decay": 20228,
+ "▁дерев": 20229,
+ "xyz": 20230,
+ "▁DATE": 20231,
+ "imar": 20232,
+ "ntil": 20233,
+ "▁startup": 20234,
+ "alion": 20235,
+ "▁kolej": 20236,
+ "cios": 20237,
+ "▁ranges": 20238,
+ "▁stupid": 20239,
+ "▁implementations": 20240,
+ "▁rm": 20241,
+ "ének": 20242,
+ "▁gcc": 20243,
+ "▁scène": 20244,
+ "Navigation": 20245,
+ "▁ ": 20246,
+ "▁кан": 20247,
+ "▁towns": 20248,
+ "Username": 20249,
+ "▁фе": 20250,
+ "▁leaders": 20251,
+ "oit": 20252,
+ "wär": 20253,
+ "▁dummy": 20254,
+ "▁assistant": 20255,
+ "{$\\": 20256,
+ "бір": 20257,
+ "▁roy": 20258,
+ "▁Layout": 20259,
+ "▁Jung": 20260,
+ "Lines": 20261,
+ "▁Holland": 20262,
+ "пор": 20263,
+ "▁Гри": 20264,
+ "▁Bened": 20265,
+ "▁Под": 20266,
+ "xls": 20267,
+ "▁Gol": 20268,
+ "▁Aleks": 20269,
+ "▁ejemplo": 20270,
+ "▁sezon": 20271,
+ "arding": 20272,
+ "footnote": 20273,
+ "▁Congrès": 20274,
+ "refer": 20275,
+ "ската": 20276,
+ "Iterator": 20277,
+ "▁ourselves": 20278,
+ "▁Mic": 20279,
+ "▁código": 20280,
+ "▁площа": 20281,
+ "▁\\$": 20282,
+ "▁Charlie": 20283,
+ "Nodes": 20284,
+ "▁puzz": 20285,
+ "▁Identifier": 20286,
+ "▁flutter": 20287,
+ "▁prü": 20288,
+ "▁ort": 20289,
+ "▁Cort": 20290,
+ "asticsearch": 20291,
+ "▁Свя": 20292,
+ "▁Bull": 20293,
+ "udem": 20294,
+ "▁apparent": 20295,
+ ":--": 20296,
+ "▁Хар": 20297,
+ "▁Lap": 20298,
+ "▁comport": 20299,
+ "matically": 20300,
+ "▁curios": 20301,
+ "▁может": 20302,
+ "▁Bh": 20303,
+ "apping": 20304,
+ "▁basketball": 20305,
+ "zetek": 20306,
+ "▁runt": 20307,
+ "▁Milan": 20308,
+ "fection": 20309,
+ "ría": 20310,
+ "▁Kin": 20311,
+ "▁slower": 20312,
+ "both": 20313,
+ "▁Instituto": 20314,
+ "▁Historical": 20315,
+ "▁również": 20316,
+ "matches": 20317,
+ "yci": 20318,
+ "▁espèce": 20319,
+ "▁Schweizer": 20320,
+ "NT": 20321,
+ "SF": 20322,
+ "acia": 20323,
+ "forge": 20324,
+ "Points": 20325,
+ "numbers": 20326,
+ "▁falling": 20327,
+ "▁inheritance": 20328,
+ "▁Erst": 20329,
+ "▁customers": 20330,
+ "▁actu": 20331,
+ "▁migration": 20332,
+ "\\'": 20333,
+ "Plan": 20334,
+ "Mr": 20335,
+ "othy": 20336,
+ "▁upgrad": 20337,
+ "бира": 20338,
+ "▁Offic": 20339,
+ "▁Wait": 20340,
+ "▁toler": 20341,
+ "ardon": 20342,
+ "▁slide": 20343,
+ ")_": 20344,
+ "▁став": 20345,
+ "▁nuclear": 20346,
+ "▁Bil": 20347,
+ "owner": 20348,
+ "▁Harris": 20349,
+ "Information": 20350,
+ "▁pó": 20351,
+ "▁включа": 20352,
+ "▁nuovo": 20353,
+ "▁Cav": 20354,
+ "▁Descri": 20355,
+ "▁ак": 20356,
+ "ództ": 20357,
+ "▁reactjs": 20358,
+ "▁Adams": 20359,
+ "▁Alternatively": 20360,
+ "струк": 20361,
+ ")`,": 20362,
+ "substring": 20363,
+ "▁massive": 20364,
+ "▁heavily": 20365,
+ "▁сезо": 20366,
+ "▁Ana": 20367,
+ "▁vale": 20368,
+ "Pad": 20369,
+ "▁Either": 20370,
+ "▁rs": 20371,
+ "anche": 20372,
+ "▁uploaded": 20373,
+ "▁(/": 20374,
+ "▁спор": 20375,
+ "▁reduction": 20376,
+ "▁Tokyo": 20377,
+ "gren": 20378,
+ "▁migli": 20379,
+ "▁iterator": 20380,
+ "stav": 20381,
+ "▁supporting": 20382,
+ "▁österreich": 20383,
+ "▁NSLog": 20384,
+ "istiques": 20385,
+ "rimin": 20386,
+ "MODE": 20387,
+ "}}}\\": 20388,
+ "▁explos": 20389,
+ "оте": 20390,
+ "▁(„": 20391,
+ "Sal": 20392,
+ "▁simplest": 20393,
+ "▁già": 20394,
+ "▁тан": 20395,
+ "▁cyl": 20396,
+ "bir": 20397,
+ "▁measurements": 20398,
+ "Created": 20399,
+ "erek": 20400,
+ "lookup": 20401,
+ "wirtschaft": 20402,
+ "▁Воло": 20403,
+ "timer": 20404,
+ "derr": 20405,
+ "▁стала": 20406,
+ "▁scenes": 20407,
+ "▁persu": 20408,
+ "liest": 20409,
+ "▁schedule": 20410,
+ "tal": 20411,
+ "лено": 20412,
+ "▁painting": 20413,
+ "▁improvement": 20414,
+ "software": 20415,
+ "▁governo": 20416,
+ "▁Hir": 20417,
+ "Execution": 20418,
+ "▁Okay": 20419,
+ "Prop": 20420,
+ "loster": 20421,
+ "ніципалі": 20422,
+ "▁peuvent": 20423,
+ "olu": 20424,
+ "▁Фа": 20425,
+ "rollo": 20426,
+ "▁коло": 20427,
+ "▁carrière": 20428,
+ "▁toggle": 20429,
+ "▁($\\": 20430,
+ "▁aggregate": 20431,
+ "▁Бі": 20432,
+ "textarea": 20433,
+ "Ok": 20434,
+ "itto": 20435,
+ "▁stim": 20436,
+ "▁recursion": 20437,
+ "▁Federation": 20438,
+ ")_{": 20439,
+ "ategor": 20440,
+ "▁distribu": 20441,
+ "Cloud": 20442,
+ "▁madre": 20443,
+ "▁iv": 20444,
+ "▁Lieutenant": 20445,
+ "▁substant": 20446,
+ "▁leaf": 20447,
+ "▁Kontrola": 20448,
+ "VA": 20449,
+ "▁tomb": 20450,
+ "эн": 20451,
+ "atoes": 20452,
+ "▁godine": 20453,
+ "▁#>": 20454,
+ "Cert": 20455,
+ "▁empresa": 20456,
+ "Props": 20457,
+ "▁planned": 20458,
+ "▁randomly": 20459,
+ "jähr": 20460,
+ "elem": 20461,
+ "▁Operation": 20462,
+ "*`": 20463,
+ "protocol": 20464,
+ "()));": 20465,
+ "wel": 20466,
+ "▁praw": 20467,
+ "▁сим": 20468,
+ "▁wob": 20469,
+ "▁hace": 20470,
+ "▁nearest": 20471,
+ "disable": 20472,
+ "▁Commun": 20473,
+ "▁revel": 20474,
+ "Free": 20475,
+ "▁brackets": 20476,
+ "IOException": 20477,
+ "▁alto": 20478,
+ "▁marry": 20479,
+ "▁auc": 20480,
+ "),\\": 20481,
+ "▁typo": 20482,
+ "edad": 20483,
+ "ará": 20484,
+ "icator": 20485,
+ "tatywna": 20486,
+ "▁buff": 20487,
+ "orders": 20488,
+ "▁asynchronous": 20489,
+ "▁econ": 20490,
+ "▁feu": 20491,
+ "▁Iron": 20492,
+ "▁rising": 20493,
+ "Radius": 20494,
+ "clk": 20495,
+ "▁zweiten": 20496,
+ "`'": 20497,
+ "▁uniqu": 20498,
+ "▁FM": 20499,
+ "▁Bran": 20500,
+ "▁flu": 20501,
+ "▁sensitive": 20502,
+ "urre": 20503,
+ "▁Iter": 20504,
+ "▁Sein": 20505,
+ "▁diferentes": 20506,
+ "▁него": 20507,
+ "chia": 20508,
+ "▁Anleitung": 20509,
+ "aturday": 20510,
+ "▁shorter": 20511,
+ "▁translated": 20512,
+ "▁Rés": 20513,
+ "▁rode": 20514,
+ "drag": 20515,
+ "▁lange": 20516,
+ "Bi": 20517,
+ "üb": 20518,
+ "leur": 20519,
+ "▁ordering": 20520,
+ "alous": 20521,
+ "▁Кор": 20522,
+ "archar": 20523,
+ "destroy": 20524,
+ "ervation": 20525,
+ "]],": 20526,
+ "AccessorImpl": 20527,
+ "▁autorytatywna": 20528,
+ "Sequence": 20529,
+ "▁proyect": 20530,
+ "▁bran": 20531,
+ "▁(+": 20532,
+ "▁Kab": 20533,
+ "▁zem": 20534,
+ "▁Calcul": 20535,
+ "▁seul": 20536,
+ "▁Niger": 20537,
+ "▁chiam": 20538,
+ "throw": 20539,
+ "▁Planet": 20540,
+ "bildung": 20541,
+ "▁zones": 20542,
+ "transition": 20543,
+ "лений": 20544,
+ "▁mapped": 20545,
+ "onaut": 20546,
+ "Pair": 20547,
+ "ilian": 20548,
+ "▁Morgan": 20549,
+ "▁unto": 20550,
+ "jou": 20551,
+ "▁hid": 20552,
+ "▁Meta": 20553,
+ "▁elles": 20554,
+ "Lou": 20555,
+ "rama": 20556,
+ "geordnet": 20557,
+ "▁scarcely": 20558,
+ "▁mint": 20559,
+ "Focus": 20560,
+ "▁Alter": 20561,
+ "▁dio": 20562,
+ "▁ampl": 20563,
+ "ièrement": 20564,
+ "▁исследова": 20565,
+ "LED": 20566,
+ "algorithm": 20567,
+ "▁сайті": 20568,
+ "▁\"\")": 20569,
+ "History": 20570,
+ "pk": 20571,
+ "▁Whit": 20572,
+ "▁систем": 20573,
+ "▁Kirchen": 20574,
+ "rà": 20575,
+ "APP": 20576,
+ "▁<%": 20577,
+ "antine": 20578,
+ "▁Disk": 20579,
+ "conv": 20580,
+ "welt": 20581,
+ "▁Fut": 20582,
+ "▁Nom": 20583,
+ "ordo": 20584,
+ "ellij": 20585,
+ "▁receives": 20586,
+ "cow": 20587,
+ "ytu": 20588,
+ "▁obras": 20589,
+ "▁purchase": 20590,
+ "▁earned": 20591,
+ "▁accessed": 20592,
+ "axi": 20593,
+ "▁Mans": 20594,
+ "ivan": 20595,
+ "▁tuvo": 20596,
+ "▁Trace": 20597,
+ "rimonio": 20598,
+ "▁desenvol": 20599,
+ "érique": 20600,
+ "▁resulted": 20601,
+ "▁computing": 20602,
+ "▁inspired": 20603,
+ "▁Prize": 20604,
+ "*\"": 20605,
+ "Comput": 20606,
+ "▁extensive": 20607,
+ "èg": 20608,
+ "▁Portály": 20609,
+ "▁castle": 20610,
+ "▁*.": 20611,
+ "▁photos": 20612,
+ "▁voet": 20613,
+ "ONG": 20614,
+ "▁Alle": 20615,
+ "▁threaten": 20616,
+ "stüt": 20617,
+ "▁albums": 20618,
+ "▁dense": 20619,
+ "flat": 20620,
+ "continu": 20621,
+ "Subject": 20622,
+ "▁readonly": 20623,
+ "Opt": 20624,
+ "писко": 20625,
+ "▁Aber": 20626,
+ "▁Position": 20627,
+ "▁Today": 20628,
+ "▁mini": 20629,
+ "▁Bef": 20630,
+ "listen": 20631,
+ "ственного": 20632,
+ "SUB": 20633,
+ "ossa": 20634,
+ "▁Pope": 20635,
+ "▁Jimmy": 20636,
+ "▁Дру": 20637,
+ "ungsseite": 20638,
+ "▁tren": 20639,
+ "optim": 20640,
+ "itsch": 20641,
+ "▁samt": 20642,
+ "▁испол": 20643,
+ "&=": 20644,
+ "▁Przypisy": 20645,
+ "▁продол": 20646,
+ "Cr": 20647,
+ "ermann": 20648,
+ "▁матери": 20649,
+ "▁Hugo": 20650,
+ "▁Deze": 20651,
+ "TRUE": 20652,
+ "▁defeat": 20653,
+ "▁watched": 20654,
+ "▁Gent": 20655,
+ "AUT": 20656,
+ "orous": 20657,
+ "▁опреде": 20658,
+ "orientation": 20659,
+ "▁distinguished": 20660,
+ "▁mesmo": 20661,
+ "▁sli": 20662,
+ "мена": 20663,
+ "mittel": 20664,
+ "gericht": 20665,
+ "eton": 20666,
+ "->{": 20667,
+ "▁wont": 20668,
+ "▁weg": 20669,
+ "▁classific": 20670,
+ "ilus": 20671,
+ "▁MD": 20672,
+ "tasks": 20673,
+ "▁chim": 20674,
+ "await": 20675,
+ "▁gang": 20676,
+ "▁wię": 20677,
+ "through": 20678,
+ "▁Russell": 20679,
+ "▁guessing": 20680,
+ "▁акт": 20681,
+ "блі": 20682,
+ "categories": 20683,
+ "сут": 20684,
+ "▁Fen": 20685,
+ "▁муж": 20686,
+ "▁newer": 20687,
+ "▁Async": 20688,
+ "▁terme": 20689,
+ ">/": 20690,
+ "пара": 20691,
+ "▁Trust": 20692,
+ "▁Opt": 20693,
+ "▁dah": 20694,
+ "▁wonderful": 20695,
+ "adratkil": 20696,
+ "▁Гра": 20697,
+ "mapping": 20698,
+ "▁discovery": 20699,
+ "▁BE": 20700,
+ "Enable": 20701,
+ "▁Friend": 20702,
+ "сня": 20703,
+ "▁controlled": 20704,
+ "чної": 20705,
+ "▁contributions": 20706,
+ "jší": 20707,
+ "▁Lev": 20708,
+ "▁francés": 20709,
+ "▁mic": 20710,
+ "zik": 20711,
+ "▁alem": 20712,
+ "cancel": 20713,
+ "!'": 20714,
+ "▁grat": 20715,
+ "▁Begriffsklär": 20716,
+ "Camera": 20717,
+ "ificación": 20718,
+ "ród": 20719,
+ "▁Arnold": 20720,
+ "▁bezeichneter": 20721,
+ "▁fought": 20722,
+ "▁deput": 20723,
+ "▁Drop": 20724,
+ "tax": 20725,
+ "dg": 20726,
+ "▁Hop": 20727,
+ "GN": 20728,
+ "▁Kirch": 20729,
+ "▁Бар": 20730,
+ "Invoke": 20731,
+ "▁erhalten": 20732,
+ "▁veel": 20733,
+ "▁wordpress": 20734,
+ "▁INNER": 20735,
+ "transaction": 20736,
+ "▁déjà": 20737,
+ "Fact": 20738,
+ "▁надмор": 20739,
+ "▁angularjs": 20740,
+ "▁át": 20741,
+ "▁alap": 20742,
+ "▁Price": 20743,
+ "▁effet": 20744,
+ "▁sphere": 20745,
+ "ClassLoader": 20746,
+ "▁rugby": 20747,
+ "▁kingdom": 20748,
+ "▁Mut": 20749,
+ "▁кино": 20750,
+ "▁reward": 20751,
+ "cit": 20752,
+ "▁presente": 20753,
+ "Sto": 20754,
+ "Character": 20755,
+ "logs": 20756,
+ "▁centrale": 20757,
+ "▁mouv": 20758,
+ "▁okay": 20759,
+ "▁aplic": 20760,
+ "More": 20761,
+ "ények": 20762,
+ "▁Köln": 20763,
+ "nett": 20764,
+ "▁истории": 20765,
+ "▁describing": 20766,
+ "▁soldier": 20767,
+ "▁Need": 20768,
+ "Light": 20769,
+ "▁\"\\<": 20770,
+ "▁hav": 20771,
+ "ermo": 20772,
+ "▁inferior": 20773,
+ "lea": 20774,
+ "▁gg": 20775,
+ "▁конце": 20776,
+ "fragment": 20777,
+ "sb": 20778,
+ "Country": 20779,
+ "▁vě": 20780,
+ "▁Beng": 20781,
+ "▁Это": 20782,
+ "▁водо": 20783,
+ "мар": 20784,
+ "STRING": 20785,
+ "▁új": 20786,
+ "multiple": 20787,
+ "statement": 20788,
+ "▁involves": 20789,
+ "▁tecn": 20790,
+ "Student": 20791,
+ "gré": 20792,
+ "▁lean": 20793,
+ "▁bringing": 20794,
+ "▁Medical": 20795,
+ "▁програм": 20796,
+ "▁Vog": 20797,
+ "▁жов": 20798,
+ "▁Spirit": 20799,
+ "nth": 20800,
+ "▁standards": 20801,
+ "▁Profile": 20802,
+ "▁ez": 20803,
+ "▁территории": 20804,
+ "▁stem": 20805,
+ "uil": 20806,
+ "▁Og": 20807,
+ "Btn": 20808,
+ "nal": 20809,
+ "▁nearby": 20810,
+ "▁producing": 20811,
+ "criv": 20812,
+ "▁assumptions": 20813,
+ "▁Spark": 20814,
+ "▁Lot": 20815,
+ "itudes": 20816,
+ "afka": 20817,
+ "five": 20818,
+ "atio": 20819,
+ "▁distinguish": 20820,
+ "rock": 20821,
+ "église": 20822,
+ "▁rappres": 20823,
+ ">\\<": 20824,
+ "лій": 20825,
+ "▁мини": 20826,
+ "▁intitulé": 20827,
+ "}}(\\": 20828,
+ "▁Rout": 20829,
+ "▁Border": 20830,
+ "▁overrid": 20831,
+ "HOST": 20832,
+ "ritten": 20833,
+ "say": 20834,
+ "▁Чи": 20835,
+ "ichtung": 20836,
+ "▁straightforward": 20837,
+ "obb": 20838,
+ "▁Terra": 20839,
+ "▁[:": 20840,
+ "Ben": 20841,
+ "▁composite": 20842,
+ ")+\\": 20843,
+ "▁crown": 20844,
+ "direction": 20845,
+ "▁несколько": 20846,
+ "▁avail": 20847,
+ "▁purchased": 20848,
+ "hook": 20849,
+ "eties": 20850,
+ "▁fase": 20851,
+ "▁Rum": 20852,
+ "▁genom": 20853,
+ "▁dét": 20854,
+ "ową": 20855,
+ "mpeg": 20856,
+ "▁Ін": 20857,
+ "desktop": 20858,
+ "▁injection": 20859,
+ "agle": 20860,
+ "▁Edd": 20861,
+ "_{(": 20862,
+ "▁Hem": 20863,
+ "utos": 20864,
+ "proj": 20865,
+ "▁superficie": 20866,
+ "Plot": 20867,
+ "▁Docker": 20868,
+ "ätz": 20869,
+ "kreich": 20870,
+ "▁unclear": 20871,
+ "▁Unity": 20872,
+ "▁streams": 20873,
+ "вид": 20874,
+ "▁simplified": 20875,
+ "Fill": 20876,
+ "▁sant": 20877,
+ "▁Kommun": 20878,
+ "▁duc": 20879,
+ "▁две": 20880,
+ "▁obs": 20881,
+ "žit": 20882,
+ "▁Janeiro": 20883,
+ "бя": 20884,
+ "▁presso": 20885,
+ "▁Ministry": 20886,
+ "▁burst": 20887,
+ "▁reaching": 20888,
+ "liter": 20889,
+ "▁responses": 20890,
+ "▁Eug": 20891,
+ "▁sod": 20892,
+ "▁Cord": 20893,
+ "▁Perm": 20894,
+ "parts": 20895,
+ "цима": 20896,
+ "variables": 20897,
+ "▁forgotten": 20898,
+ "Fern": 20899,
+ "ostęp": 20900,
+ "vl": 20901,
+ "▁См": 20902,
+ "kim": 20903,
+ "ając": 20904,
+ "наль": 20905,
+ "гле": 20906,
+ "helper": 20907,
+ "dup": 20908,
+ "euw": 20909,
+ "fra": 20910,
+ "ellite": 20911,
+ "anya": 20912,
+ "▁reign": 20913,
+ "gesamt": 20914,
+ "седа": 20915,
+ "▁Ryan": 20916,
+ "▁formatted": 20917,
+ "▁Borg": 20918,
+ "walk": 20919,
+ "▁ал": 20920,
+ "agnostics": 20921,
+ "▁Cape": 20922,
+ "▁Franco": 20923,
+ "▁fug": 20924,
+ ":)": 20925,
+ "юз": 20926,
+ "Fetch": 20927,
+ "▁roughly": 20928,
+ "▁Mis": 20929,
+ "uetooth": 20930,
+ "▁Venezuela": 20931,
+ "▁astronom": 20932,
+ "\")`": 20933,
+ "ombres": 20934,
+ "▁которой": 20935,
+ "óp": 20936,
+ "owed": 20937,
+ "HR": 20938,
+ "▁Camer": 20939,
+ "кие": 20940,
+ "parison": 20941,
+ "▁Bij": 20942,
+ "templates": 20943,
+ "environment": 20944,
+ "ização": 20945,
+ "▁ér": 20946,
+ "▁plenty": 20947,
+ "▁TypeError": 20948,
+ "▁forty": 20949,
+ "коном": 20950,
+ "▁Sed": 20951,
+ "▁thats": 20952,
+ "▁gravity": 20953,
+ "▁spiritual": 20954,
+ "▁duplicates": 20955,
+ "▁encryption": 20956,
+ "▁reven": 20957,
+ "getInstance": 20958,
+ "ällor": 20959,
+ "disk": 20960,
+ "▁thro": 20961,
+ "▁Nak": 20962,
+ "▁poł": 20963,
+ "▁heraus": 20964,
+ "invalid": 20965,
+ "sBy": 20966,
+ "Boot": 20967,
+ "▁bucket": 20968,
+ "▁Parse": 20969,
+ "hex": 20970,
+ "Conne": 20971,
+ "▁Computer": 20972,
+ "zyk": 20973,
+ "▁induced": 20974,
+ "▁Bruno": 20975,
+ "▁addressed": 20976,
+ "mania": 20977,
+ "▁inclus": 20978,
+ "ounced": 20979,
+ "scriptsize": 20980,
+ "▁Epis": 20981,
+ "▁vocal": 20982,
+ "▁Jonathan": 20983,
+ "ум": 20984,
+ "staden": 20985,
+ "▁Children": 20986,
+ "пей": 20987,
+ "Italia": 20988,
+ "reibung": 20989,
+ "▁nost": 20990,
+ "▁ещё": 20991,
+ "▁Werke": 20992,
+ "▁actress": 20993,
+ "▁Minnesota": 20994,
+ "rike": 20995,
+ "▁tek": 20996,
+ "▁primeira": 20997,
+ "▁frat": 20998,
+ "▁Configuration": 20999,
+ "▁bid": 21000,
+ "trigger": 21001,
+ "Contents": 21002,
+ "▁constantly": 21003,
+ "!!!": 21004,
+ "▁dread": 21005,
+ "▁hundreds": 21006,
+ "istische": 21007,
+ "▁cardinal": 21008,
+ "TABLE": 21009,
+ "▁estos": 21010,
+ "assoc": 21011,
+ "gray": 21012,
+ "▁Schloss": 21013,
+ "▁sche": 21014,
+ "cong": 21015,
+ "▁koji": 21016,
+ "ètes": 21017,
+ "▁Era": 21018,
+ "omi": 21019,
+ "▁SR": 21020,
+ "▁wrapped": 21021,
+ "▁trunc": 21022,
+ "▁ah": 21023,
+ "egos": 21024,
+ "oki": 21025,
+ "mouth": 21026,
+ "logging": 21027,
+ "▁fasc": 21028,
+ "▁Sample": 21029,
+ "▁conte": 21030,
+ "▁villa": 21031,
+ "comments": 21032,
+ "▁batal": 21033,
+ "▁García": 21034,
+ "▁Norte": 21035,
+ "▁wechsel": 21036,
+ "▁Museo": 21037,
+ "▁enfants": 21038,
+ "▁whisper": 21039,
+ "nake": 21040,
+ "▁jednak": 21041,
+ "lês": 21042,
+ "enders": 21043,
+ "▁äl": 21044,
+ "▁VB": 21045,
+ "▁cookies": 21046,
+ "zeti": 21047,
+ "atum": 21048,
+ "▁dedu": 21049,
+ "▁arranged": 21050,
+ "laz": 21051,
+ "▁cuenta": 21052,
+ "yml": 21053,
+ "▁flav": 21054,
+ "MR": 21055,
+ "emet": 21056,
+ "біль": 21057,
+ "cmp": 21058,
+ "ituto": 21059,
+ "zett": 21060,
+ "▁envi": 21061,
+ "▁kot": 21062,
+ "$:": 21063,
+ "upper": 21064,
+ "▁Alberto": 21065,
+ "kb": 21066,
+ "Anal": 21067,
+ "ört": 21068,
+ "▁[-": 21069,
+ "▁führte": 21070,
+ "iah": 21071,
+ "▁Tun": 21072,
+ "▁искус": 21073,
+ "uwe": 21074,
+ "ispecies": 21075,
+ "Pub": 21076,
+ "Sync": 21077,
+ "▁Colombia": 21078,
+ "akers": 21079,
+ "▁Imperial": 21080,
+ "oving": 21081,
+ "▁intelligence": 21082,
+ "▁equipment": 21083,
+ "ein": 21084,
+ "dagger": 21085,
+ "▁Edge": 21086,
+ "▁Республи": 21087,
+ "adratkilometer": 21088,
+ "▁Anto": 21089,
+ "▁charges": 21090,
+ "▁Ocean": 21091,
+ "▁simplify": 21092,
+ "▁miesz": 21093,
+ "running": 21094,
+ "▁Lac": 21095,
+ "genommen": 21096,
+ "▁representative": 21097,
+ "=.": 21098,
+ "▁Pred": 21099,
+ "▁spite": 21100,
+ "ciale": 21101,
+ "▁nave": 21102,
+ "▁extens": 21103,
+ "▁neutral": 21104,
+ "▁которая": 21105,
+ ".": 21106,
+ "▁CS": 21107,
+ "uky": 21108,
+ "▁whilst": 21109,
+ "▁lingu": 21110,
+ "extract": 21111,
+ "zeichnung": 21112,
+ "▁Feld": 21113,
+ "▁valuable": 21114,
+ "urable": 21115,
+ "▁Jen": 21116,
+ "▁struggle": 21117,
+ "▁committee": 21118,
+ "▁Wohn": 21119,
+ "▁sqlite": 21120,
+ "▁Temp": 21121,
+ "▁COUNT": 21122,
+ "consin": 21123,
+ "міні": 21124,
+ "usage": 21125,
+ "▁quest": 21126,
+ "дян": 21127,
+ "eared": 21128,
+ "▁Schne": 21129,
+ "▁dod": 21130,
+ "▁recht": 21131,
+ "▁kao": 21132,
+ "Capt": 21133,
+ "labels": 21134,
+ "▁ellos": 21135,
+ "▁industri": 21136,
+ "▁Colorado": 21137,
+ "▁contrary": 21138,
+ "▁Dum": 21139,
+ "Bel": 21140,
+ "▁Vent": 21141,
+ "▁authorities": 21142,
+ "YES": 21143,
+ "ensed": 21144,
+ "umbnail": 21145,
+ "izzazione": 21146,
+ "kou": 21147,
+ "rica": 21148,
+ "▁sect": 21149,
+ "tests": 21150,
+ "▁Klein": 21151,
+ "▁legs": 21152,
+ "▁Pietro": 21153,
+ "fu": 21154,
+ "thy": 21155,
+ "▁bast": 21156,
+ "▁tedes": 21157,
+ "ettes": 21158,
+ "▁repet": 21159,
+ "acre": 21160,
+ "retto": 21161,
+ "▁remainder": 21162,
+ "▁Geg": 21163,
+ "▁Гор": 21164,
+ "▁Rechts": 21165,
+ "▁filtering": 21166,
+ "ouss": 21167,
+ "▁deployed": 21168,
+ "▁prüfe": 21169,
+ "▁bitmap": 21170,
+ "▁sovi": 21171,
+ "▁<%=": 21172,
+ "▁entferne": 21173,
+ "kill": 21174,
+ "tabs": 21175,
+ "Expr": 21176,
+ "кому": 21177,
+ "▁Republican": 21178,
+ "▁Size": 21179,
+ "▁poll": 21180,
+ "▁rien": 21181,
+ "▁клуб": 21182,
+ "énd": 21183,
+ "▁Bio": 21184,
+ "▁perl": 21185,
+ "▁Andreas": 21186,
+ "вин": 21187,
+ "▁distant": 21188,
+ "▁Finn": 21189,
+ "▁Mitch": 21190,
+ "▁%{": 21191,
+ "▁charm": 21192,
+ "▁Mul": 21193,
+ "perate": 21194,
+ "▁sciences": 21195,
+ "▁monot": 21196,
+ "▁debido": 21197,
+ "rizona": 21198,
+ "iec": 21199,
+ "▁alarm": 21200,
+ "▁promoted": 21201,
+ "▁letzten": 21202,
+ "atin": 21203,
+ "▁conclus": 21204,
+ "herr": 21205,
+ "▁éch": 21206,
+ "edish": 21207,
+ "gor": 21208,
+ "▁stycz": 21209,
+ "▁impress": 21210,
+ "ruits": 21211,
+ "ierungs": 21212,
+ "▁parsed": 21213,
+ "▁río": 21214,
+ "▁Pakistan": 21215,
+ "igner": 21216,
+ "▁watching": 21217,
+ "▁databases": 21218,
+ "eding": 21219,
+ "▁Specific": 21220,
+ "▁generale": 21221,
+ "lax": 21222,
+ "▁Looking": 21223,
+ "▁bond": 21224,
+ "▁vista": 21225,
+ "▁ec": 21226,
+ "▁grud": 21227,
+ "▁deleting": 21228,
+ "tac": 21229,
+ "▁jazz": 21230,
+ "jm": 21231,
+ "▁pół": 21232,
+ "Language": 21233,
+ "delegate": 21234,
+ "▁registry": 21235,
+ "▁Shared": 21236,
+ "строй": 21237,
+ "Music": 21238,
+ "▁vessel": 21239,
+ ".@": 21240,
+ "▁Wür": 21241,
+ "▁fed": 21242,
+ "▁eredet": 21243,
+ "▁Gö": 21244,
+ "upt": 21245,
+ "▁pleasant": 21246,
+ "▁tableView": 21247,
+ "▁counting": 21248,
+ "▁Kriegs": 21249,
+ "▁получил": 21250,
+ "▁],": 21251,
+ "виа": 21252,
+ "▁až": 21253,
+ "ToList": 21254,
+ "▁Advent": 21255,
+ "▁sketch": 21256,
+ "pn": 21257,
+ "▁sier": 21258,
+ "▁находится": 21259,
+ "iop": 21260,
+ "▁ly": 21261,
+ "▁Schl": 21262,
+ "Contract": 21263,
+ "associ": 21264,
+ "▁Pear": 21265,
+ "▁whe": 21266,
+ "▁Delete": 21267,
+ "▁elem": 21268,
+ "ätte": 21269,
+ "▁česk": 21270,
+ "▁MC": 21271,
+ "▁shout": 21272,
+ "akespe": 21273,
+ "▁defaults": 21274,
+ "penas": 21275,
+ "òria": 21276,
+ "▁hierarchy": 21277,
+ "ipt": 21278,
+ "▁Elis": 21279,
+ "likely": 21280,
+ "Rot": 21281,
+ "▁cow": 21282,
+ "▁strike": 21283,
+ "▁березня": 21284,
+ "▁ensemble": 21285,
+ "▁Pseud": 21286,
+ "Virtual": 21287,
+ "▁її": 21288,
+ "ROOT": 21289,
+ "сия": 21290,
+ "▁соб": 21291,
+ "▁invert": 21292,
+ "▁switching": 21293,
+ "htaccess": 21294,
+ "▁награ": 21295,
+ "▁Norman": 21296,
+ "▁inglês": 21297,
+ "![": 21298,
+ "ousel": 21299,
+ "DOCTYPE": 21300,
+ "▁suppress": 21301,
+ "▁accompanied": 21302,
+ "▁Bé": 21303,
+ "implies": 21304,
+ "nut": 21305,
+ "▁Syntax": 21306,
+ "inho": 21307,
+ "▁tam": 21308,
+ "▁focused": 21309,
+ "avano": 21310,
+ "▁Baden": 21311,
+ "had": 21312,
+ "▁({": 21313,
+ "Ty": 21314,
+ "▁рос": 21315,
+ "▁чолові": 21316,
+ "oge": 21317,
+ "jsp": 21318,
+ "Blue": 21319,
+ "▁suas": 21320,
+ "apers": 21321,
+ "Short": 21322,
+ "Renderer": 21323,
+ "▁sendo": 21324,
+ "▁Cec": 21325,
+ "▁`__": 21326,
+ "▁Municipal": 21327,
+ "dotnet": 21328,
+ "▁bev": 21329,
+ "▁DA": 21330,
+ "MenuItem": 21331,
+ "▁amp": 21332,
+ "▁uri": 21333,
+ "▁fier": 21334,
+ "слен": 21335,
+ "),(": 21336,
+ "cules": 21337,
+ "illas": 21338,
+ "LOCK": 21339,
+ "▁derive": 21340,
+ "uben": 21341,
+ "▁GT": 21342,
+ "▁Mack": 21343,
+ "▁scholar": 21344,
+ ")}}": 21345,
+ "зм": 21346,
+ ">::": 21347,
+ "шёл": 21348,
+ "▁principales": 21349,
+ "▁цар": 21350,
+ "▁tied": 21351,
+ "▁alta": 21352,
+ "▁Cit": 21353,
+ "lined": 21354,
+ "major": 21355,
+ "▁punk": 21356,
+ "▁cinco": 21357,
+ "ický": 21358,
+ "▁raggi": 21359,
+ "typen": 21360,
+ "тельство": 21361,
+ "▁conference": 21362,
+ "▁сіль": 21363,
+ "▁heut": 21364,
+ "iš": 21365,
+ "ета": 21366,
+ "velope": 21367,
+ "hbox": 21368,
+ "nown": 21369,
+ "▁zar": 21370,
+ "ktiv": 21371,
+ "ieß": 21372,
+ "▁стре": 21373,
+ "▁EventArgs": 21374,
+ "▁Ira": 21375,
+ "▁VBA": 21376,
+ "▁Santo": 21377,
+ "▁Fach": 21378,
+ "▁FF": 21379,
+ "▁Raymond": 21380,
+ "мец": 21381,
+ "implementation": 21382,
+ "▁brothers": 21383,
+ "▁côté": 21384,
+ "▁controllers": 21385,
+ "▁Cle": 21386,
+ "▁cable": 21387,
+ "▁confer": 21388,
+ "▁{-": 21389,
+ "▁czł": 21390,
+ "▁Filip": 21391,
+ "atorio": 21392,
+ "▁wicht": 21393,
+ "▁beaucoup": 21394,
+ "▁Lit": 21395,
+ "▁sessions": 21396,
+ "▁Success": 21397,
+ "▁routing": 21398,
+ "niu": 21399,
+ "▁Vice": 21400,
+ "▁krit": 21401,
+ "updated": 21402,
+ "▁Invalid": 21403,
+ "▁Mannschaft": 21404,
+ "▁aos": 21405,
+ "▁tudi": 21406,
+ "▁després": 21407,
+ "qua": 21408,
+ "Contains": 21409,
+ "Company": 21410,
+ "▁persona": 21411,
+ "adapter": 21412,
+ "сни": 21413,
+ "▁voj": 21414,
+ "▁escri": 21415,
+ "agt": 21416,
+ "▁ство": 21417,
+ "▁distrito": 21418,
+ "apan": 21419,
+ "▁aspects": 21420,
+ "▁zal": 21421,
+ ")^{\\": 21422,
+ "▁système": 21423,
+ "▁ана": 21424,
+ "iums": 21425,
+ "▁premiers": 21426,
+ "▁поэ": 21427,
+ "▁mère": 21428,
+ "▁Gun": 21429,
+ "aping": 21430,
+ "▁Rain": 21431,
+ "▁igual": 21432,
+ "▁processor": 21433,
+ "')`": 21434,
+ "bling": 21435,
+ "▁mism": 21436,
+ "bráz": 21437,
+ "▁closest": 21438,
+ "▁Reading": 21439,
+ "▁попу": 21440,
+ "cono": 21441,
+ "▁kult": 21442,
+ "▁!!": 21443,
+ "▁Expression": 21444,
+ "▁induction": 21445,
+ "ahren": 21446,
+ "▁cp": 21447,
+ "▁violence": 21448,
+ "ientí": 21449,
+ "cente": 21450,
+ "▁Dob": 21451,
+ "jack": 21452,
+ "song": 21453,
+ "bucket": 21454,
+ "▁deport": 21455,
+ "кими": 21456,
+ "lm": 21457,
+ "▁innoc": 21458,
+ "Changes": 21459,
+ "▁prohib": 21460,
+ "angol": 21461,
+ "iseconds": 21462,
+ "▁пор": 21463,
+ "▁hip": 21464,
+ "▁pů": 21465,
+ "endorf": 21466,
+ "▁scheduled": 21467,
+ "▁Flug": 21468,
+ "acyj": 21469,
+ "▁Films": 21470,
+ "athedral": 21471,
+ "Power": 21472,
+ "ardin": 21473,
+ "kap": 21474,
+ "icken": 21475,
+ "resize": 21476,
+ "eus": 21477,
+ "rr": 21478,
+ "лян": 21479,
+ "▁Hav": 21480,
+ "▁ora": 21481,
+ "FROM": 21482,
+ "лося": 21483,
+ "▁terug": 21484,
+ "▁Width": 21485,
+ "▁accepts": 21486,
+ "бен": 21487,
+ "▁mich": 21488,
+ "▁Czech": 21489,
+ "▁Bedeut": 21490,
+ "▁вид": 21491,
+ "ôme": 21492,
+ "▁Loop": 21493,
+ "spect": 21494,
+ "ük": 21495,
+ "eston": 21496,
+ "▁slot": 21497,
+ "▁została": 21498,
+ "▁Charlotte": 21499,
+ "▁составляет": 21500,
+ "▁Promise": 21501,
+ "▁epo": 21502,
+ "▁diction": 21503,
+ "▁Franklin": 21504,
+ "▁Riv": 21505,
+ "руг": 21506,
+ "cida": 21507,
+ "▁Explorer": 21508,
+ "cookie": 21509,
+ "▁formerly": 21510,
+ "▁municipality": 21511,
+ "▁Stefan": 21512,
+ "lists": 21513,
+ "COMP": 21514,
+ "Len": 21515,
+ "▁Staat": 21516,
+ "▁NBA": 21517,
+ "dens": 21518,
+ "▁oscill": 21519,
+ "!.": 21520,
+ "▁PO": 21521,
+ "ône": 21522,
+ "eses": 21523,
+ "▁националь": 21524,
+ "voor": 21525,
+ "▁копи": 21526,
+ "▁пози": 21527,
+ "ulu": 21528,
+ "Constraint": 21529,
+ "▁своей": 21530,
+ "▁algebraic": 21531,
+ "чня": 21532,
+ "Dict": 21533,
+ "▁appearing": 21534,
+ "▁prav": 21535,
+ "▁Universal": 21536,
+ "Browser": 21537,
+ "▁Singap": 21538,
+ "ennessee": 21539,
+ "]_": 21540,
+ "▁Sof": 21541,
+ "▁Cad": 21542,
+ "ounce": 21543,
+ "▁costs": 21544,
+ "]{\\": 21545,
+ "../../": 21546,
+ "ській": 21547,
+ "ühl": 21548,
+ "iety": 21549,
+ "пр": 21550,
+ "▁interpreted": 21551,
+ "ajn": 21552,
+ "colog": 21553,
+ "YS": 21554,
+ "mans": 21555,
+ "▁metrics": 21556,
+ "▁registr": 21557,
+ "istance": 21558,
+ "▁Поль": 21559,
+ "▁anonymous": 21560,
+ "▁institutions": 21561,
+ "▁zdob": 21562,
+ "prüng": 21563,
+ "▁арти": 21564,
+ "▁estat": 21565,
+ "acci": 21566,
+ "▁academic": 21567,
+ "▁chiesa": 21568,
+ "▁Gian": 21569,
+ "contrib": 21570,
+ "umed": 21571,
+ "▁Gir": 21572,
+ "▁baseball": 21573,
+ "numeric": 21574,
+ "Generator": 21575,
+ "GM": 21576,
+ "▁tiny": 21577,
+ "▁distinction": 21578,
+ "гер": 21579,
+ "▁rust": 21580,
+ "▁FIFA": 21581,
+ "▁Properties": 21582,
+ "^-": 21583,
+ "▁экс": 21584,
+ "▁Stanis": 21585,
+ "▁Ajax": 21586,
+ "escape": 21587,
+ "▁consp": 21588,
+ "▁Chen": 21589,
+ "▁Naval": 21590,
+ "Bit": 21591,
+ "▁bât": 21592,
+ "скими": 21593,
+ "drive": 21594,
+ "▁Round": 21595,
+ "photo": 21596,
+ "▁Level": 21597,
+ "▁geg": 21598,
+ "Tom": 21599,
+ "▁Mobile": 21600,
+ "▁Trop": 21601,
+ "Direction": 21602,
+ "isan": 21603,
+ ")^{-": 21604,
+ "▁Setting": 21605,
+ "▁Probably": 21606,
+ "лья": 21607,
+ "▁assets": 21608,
+ "▁atte": 21609,
+ "▁bulk": 21610,
+ "ést": 21611,
+ "▁wing": 21612,
+ "nius": 21613,
+ "▁wins": 21614,
+ "▁lud": 21615,
+ "ushing": 21616,
+ "▁deven": 21617,
+ "ограф": 21618,
+ "burger": 21619,
+ "▁embar": 21620,
+ "FilterChain": 21621,
+ "▁tum": 21622,
+ "▁öss": 21623,
+ "▁nommé": 21624,
+ "▁pir": 21625,
+ "▁luc": 21626,
+ "dbo": 21627,
+ "agues": 21628,
+ "▁alcan": 21629,
+ "ouwen": 21630,
+ "▁Stanley": 21631,
+ "циали": 21632,
+ "▁grown": 21633,
+ "▁preserved": 21634,
+ "▁solar": 21635,
+ "▁Население": 21636,
+ "▁performances": 21637,
+ "▁Cow": 21638,
+ "▁engineering": 21639,
+ "▁scaling": 21640,
+ "atomic": 21641,
+ "endance": 21642,
+ "▁ace": 21643,
+ "ängen": 21644,
+ "Anim": 21645,
+ "phase": 21646,
+ "zburg": 21647,
+ "Old": 21648,
+ "▁servant": 21649,
+ "▁gemeins": 21650,
+ "▁Observ": 21651,
+ "translate": 21652,
+ "▁covering": 21653,
+ "▁están": 21654,
+ "▁problema": 21655,
+ "▁установ": 21656,
+ "▁llev": 21657,
+ "▁czerw": 21658,
+ "éal": 21659,
+ "mez": 21660,
+ "REE": 21661,
+ "ERR": 21662,
+ "тури": 21663,
+ "segu": 21664,
+ "▁profit": 21665,
+ "▁multiplication": 21666,
+ "kommen": 21667,
+ "▁faut": 21668,
+ "▁candidates": 21669,
+ "▁Uri": 21670,
+ "▁Laura": 21671,
+ "▁sap": 21672,
+ "▁висини": 21673,
+ "▁Between": 21674,
+ "fade": 21675,
+ "▁reserved": 21676,
+ "▁involving": 21677,
+ "▁Mare": 21678,
+ "▁Container": 21679,
+ "▁назна": 21680,
+ "▁DEBUG": 21681,
+ "▁hurt": 21682,
+ "▁Polski": 21683,
+ "▁lux": 21684,
+ "CB": 21685,
+ "wach": 21686,
+ "▁период": 21687,
+ "▁Catherine": 21688,
+ "▁ganz": 21689,
+ "uchte": 21690,
+ "▁consumer": 21691,
+ "▁crossed": 21692,
+ "ordered": 21693,
+ "away": 21694,
+ "techn": 21695,
+ "▁subscri": 21696,
+ "▁shortcut": 21697,
+ "▁производ": 21698,
+ "▁simultaneously": 21699,
+ "▁rating": 21700,
+ "▁Kings": 21701,
+ "▁relationships": 21702,
+ "▁Sex": 21703,
+ "▁Tool": 21704,
+ "agh": 21705,
+ "acters": 21706,
+ "logger": 21707,
+ "homme": 21708,
+ "engers": 21709,
+ "▁Ri": 21710,
+ "earance": 21711,
+ "▁appearances": 21712,
+ "Real": 21713,
+ "▁passe": 21714,
+ "iclopedia": 21715,
+ "чко": 21716,
+ "terre": 21717,
+ "▁Ontario": 21718,
+ "▁переда": 21719,
+ "footer": 21720,
+ "archivi": 21721,
+ "ifiz": 21722,
+ "▁Protest": 21723,
+ "▁LIN": 21724,
+ "unnable": 21725,
+ "▁centuries": 21726,
+ "▁Bayer": 21727,
+ "цію": 21728,
+ "овин": 21729,
+ "▁Andrea": 21730,
+ "selection": 21731,
+ "▁calm": 21732,
+ "▁modification": 21733,
+ "▁shortly": 21734,
+ "inaire": 21735,
+ "▁fusion": 21736,
+ "▁feelings": 21737,
+ "PK": 21738,
+ "▁Roberto": 21739,
+ "гне": 21740,
+ "Shared": 21741,
+ "▁mehrere": 21742,
+ "▁Niem": 21743,
+ "omp": 21744,
+ "Env": 21745,
+ "▁Article": 21746,
+ "▁Pok": 21747,
+ "▁VARCHAR": 21748,
+ "▁dil": 21749,
+ "▁afford": 21750,
+ "▁confront": 21751,
+ "owanie": 21752,
+ "▁ministre": 21753,
+ "adesh": 21754,
+ "▁Poly": 21755,
+ "▁Распо": 21756,
+ "▁Gruppe": 21757,
+ "▁Helen": 21758,
+ "▁cc": 21759,
+ "▁portrait": 21760,
+ "bew": 21761,
+ "▁beta": 21762,
+ "▁Wir": 21763,
+ "▁Audio": 21764,
+ "▁(\\<": 21765,
+ "riority": 21766,
+ "▁nit": 21767,
+ "▁представи": 21768,
+ "▁Vie": 21769,
+ "▁wür": 21770,
+ "▁Hold": 21771,
+ "▁Sad": 21772,
+ "▁Tochter": 21773,
+ "▁oltre": 21774,
+ "▁Activ": 21775,
+ "▁Jason": 21776,
+ "▁wieku": 21777,
+ "▁regards": 21778,
+ "▁taste": 21779,
+ "agnostic": 21780,
+ "лася": 21781,
+ "▁Self": 21782,
+ "▁apr": 21783,
+ "▁Deep": 21784,
+ "scop": 21785,
+ "Activ": 21786,
+ "▁typedef": 21787,
+ "ContentView": 21788,
+ "compiler": 21789,
+ "▁Roth": 21790,
+ "xc": 21791,
+ "зик": 21792,
+ "▁largo": 21793,
+ "▁Rena": 21794,
+ "heiten": 21795,
+ "▁platforms": 21796,
+ "ulla": 21797,
+ "▁glance": 21798,
+ "▁mascul": 21799,
+ "▁mex": 21800,
+ "▁Jorge": 21801,
+ "▁funcion": 21802,
+ "choose": 21803,
+ "▁reviews": 21804,
+ "▁Alban": 21805,
+ "▁Glo": 21806,
+ "▁Species": 21807,
+ "▁Fame": 21808,
+ "▁Roll": 21809,
+ "▁Puerto": 21810,
+ "▁\\)": 21811,
+ "ymnas": 21812,
+ "environ": 21813,
+ "▁iphone": 21814,
+ "▁Wrestling": 21815,
+ "ały": 21816,
+ "▁Indiana": 21817,
+ "Radio": 21818,
+ "VS": 21819,
+ "▁independence": 21820,
+ "тай": 21821,
+ "▁decode": 21822,
+ "White": 21823,
+ "▁journ": 21824,
+ "ículo": 21825,
+ "▁Barb": 21826,
+ "▁Evangel": 21827,
+ "▁Andy": 21828,
+ "▁Welcome": 21829,
+ "▁Device": 21830,
+ "gef": 21831,
+ "▁remembered": 21832,
+ "▁variations": 21833,
+ "▁Adolf": 21834,
+ "itaine": 21835,
+ "▁надморској": 21836,
+ "▁steam": 21837,
+ "▁concerns": 21838,
+ "▁`|": 21839,
+ "▁био": 21840,
+ "тельства": 21841,
+ "▁quattro": 21842,
+ "extend": 21843,
+ "▁trabajo": 21844,
+ "enberg": 21845,
+ "▁scenarios": 21846,
+ "ânt": 21847,
+ "▁kommt": 21848,
+ "▁domestic": 21849,
+ "▁Basketball": 21850,
+ "▁Cooper": 21851,
+ "sock": 21852,
+ "держа": 21853,
+ "={\\": 21854,
+ "▁inici": 21855,
+ "▁Phill": 21856,
+ "▁генерал": 21857,
+ "archiviato": 21858,
+ "ън": 21859,
+ "Rob": 21860,
+ "▁tong": 21861,
+ "▁characteristics": 21862,
+ "▁amaz": 21863,
+ "▁Mode": 21864,
+ "▁inaugur": 21865,
+ "wehr": 21866,
+ "rant": 21867,
+ "ionali": 21868,
+ "▁Mother": 21869,
+ "Ma": 21870,
+ "équ": 21871,
+ "▁Kelly": 21872,
+ "cile": 21873,
+ "▁besteht": 21874,
+ "▁estimates": 21875,
+ "ruguay": 21876,
+ "▁Ans": 21877,
+ "Mad": 21878,
+ "▁нав": 21879,
+ "▁données": 21880,
+ "▁tropical": 21881,
+ "▁Several": 21882,
+ "elter": 21883,
+ "▁Pho": 21884,
+ "kem": 21885,
+ "▁Customer": 21886,
+ "▁складі": 21887,
+ "▁courses": 21888,
+ "Platform": 21889,
+ "navbar": 21890,
+ "learning": 21891,
+ "▁Swedish": 21892,
+ "▁zast": 21893,
+ "▁Lig": 21894,
+ "management": 21895,
+ "▁lod": 21896,
+ "uffle": 21897,
+ "Texture": 21898,
+ "arga": 21899,
+ "átum": 21900,
+ "▁DDR": 21901,
+ "нії": 21902,
+ "▁Société": 21903,
+ "▁domains": 21904,
+ "▁permitted": 21905,
+ "▁externe": 21906,
+ "▁quelque": 21907,
+ "vt": 21908,
+ "yman": 21909,
+ "▁Ward": 21910,
+ "▁agli": 21911,
+ "▁andra": 21912,
+ "Snapshot": 21913,
+ "▁må": 21914,
+ "▁yeah": 21915,
+ "дена": 21916,
+ "ępu": 21917,
+ "askell": 21918,
+ "▁République": 21919,
+ "inject": 21920,
+ "▁';": 21921,
+ "änn": 21922,
+ "▁zelf": 21923,
+ "▁Entwicklung": 21924,
+ "ária": 21925,
+ "onomy": 21926,
+ "▁svil": 21927,
+ "iese": 21928,
+ "▁conser": 21929,
+ "▁nim": 21930,
+ "▁rész": 21931,
+ "▁Итали": 21932,
+ "▁partici": 21933,
+ "▁Lion": 21934,
+ "sr": 21935,
+ "always": 21936,
+ "▁Владимир": 21937,
+ "ческие": 21938,
+ "[,": 21939,
+ "▁Definition": 21940,
+ "nant": 21941,
+ "oem": 21942,
+ "Ids": 21943,
+ "▁вне": 21944,
+ "▁[...]": 21945,
+ "▁направ": 21946,
+ "▁GO": 21947,
+ "▁års": 21948,
+ "▁után": 21949,
+ "▁outros": 21950,
+ "▁región": 21951,
+ "▁Mong": 21952,
+ "▁filme": 21953,
+ "▁triple": 21954,
+ "▁spons": 21955,
+ "Develop": 21956,
+ "▁outcome": 21957,
+ "▁Bible": 21958,
+ "▁имени": 21959,
+ "Canvas": 21960,
+ "пута": 21961,
+ "curr": 21962,
+ "ások": 21963,
+ "){\\": 21964,
+ "ningar": 21965,
+ "`;": 21966,
+ "▁Flash": 21967,
+ ":#": 21968,
+ "must": 21969,
+ "cpu": 21970,
+ "▁formats": 21971,
+ "Har": 21972,
+ "▁episodio": 21973,
+ "▁Rosa": 21974,
+ "▁dès": 21975,
+ "emit": 21976,
+ "riteria": 21977,
+ "Annotation": 21978,
+ "Flag": 21979,
+ "gmail": 21980,
+ "▁Normal": 21981,
+ "ollary": 21982,
+ "▁foss": 21983,
+ "▁concurrent": 21984,
+ "▁crashes": 21985,
+ "▁виде": 21986,
+ "▁Minor": 21987,
+ "▁Sit": 21988,
+ "▁SN": 21989,
+ "▁scar": 21990,
+ "▁femin": 21991,
+ "▁specification": 21992,
+ "soap": 21993,
+ "▁operate": 21994,
+ "▁principalmente": 21995,
+ "▁aust": 21996,
+ "ibile": 21997,
+ "itime": 21998,
+ "лежа": 21999,
+ "iframe": 22000,
+ "▁concepts": 22001,
+ "▁tack": 22002,
+ "▁viss": 22003,
+ "▁carbon": 22004,
+ "tery": 22005,
+ "▁naming": 22006,
+ "▁Orts": 22007,
+ "idente": 22008,
+ "▁Capit": 22009,
+ "▁expr": 22010,
+ "▁насељу": 22011,
+ "▁Selected": 22012,
+ "▁hinter": 22013,
+ "▁iframe": 22014,
+ "▁zb": 22015,
+ "indexPath": 22016,
+ "coll": 22017,
+ "▁wrześ": 22018,
+ "▁acht": 22019,
+ "▁gradually": 22020,
+ "▁чу": 22021,
+ "зей": 22022,
+ "haft": 22023,
+ "▁tran": 22024,
+ "▁laquelle": 22025,
+ "ytics": 22026,
+ "IDE": 22027,
+ "▁pygame": 22028,
+ "▁Package": 22029,
+ "▁className": 22030,
+ "Bal": 22031,
+ "perl": 22032,
+ "тина": 22033,
+ "Occ": 22034,
+ "▁infrastr": 22035,
+ "▁Champions": 22036,
+ "▁classic": 22037,
+ "▁Raw": 22038,
+ "▁partially": 22039,
+ "▁Ted": 22040,
+ "▁stolet": 22041,
+ "rained": 22042,
+ "WHERE": 22043,
+ "▁vall": 22044,
+ "▁Julia": 22045,
+ "zat": 22046,
+ "▁surrounded": 22047,
+ "SEE": 22048,
+ "▁walking": 22049,
+ "Bad": 22050,
+ "FOR": 22051,
+ "contre": 22052,
+ "▁Palest": 22053,
+ "ático": 22054,
+ "▁engineer": 22055,
+ "▁partners": 22056,
+ "▁Jews": 22057,
+ "ilers": 22058,
+ "▁cerem": 22059,
+ "▁interactions": 22060,
+ "acu": 22061,
+ "sty": 22062,
+ "▁Princess": 22063,
+ "sharp": 22064,
+ "▁Singles": 22065,
+ "▁їх": 22066,
+ "chez": 22067,
+ "Receiver": 22068,
+ "▁patients": 22069,
+ "stringify": 22070,
+ "▁competed": 22071,
+ "bey": 22072,
+ "$;": 22073,
+ "▁Bd": 22074,
+ "hadoop": 22075,
+ "▁División": 22076,
+ "öld": 22077,
+ "▁restricted": 22078,
+ "▁commander": 22079,
+ "▁Highway": 22080,
+ "▁Česk": 22081,
+ "▁myth": 22082,
+ "чан": 22083,
+ "raham": 22084,
+ "▁enqu": 22085,
+ "▁pog": 22086,
+ "▁comuna": 22087,
+ "▁println": 22088,
+ "▁круп": 22089,
+ "▁depois": 22090,
+ "▁seats": 22091,
+ "▁neighb": 22092,
+ "циона": 22093,
+ "agine": 22094,
+ "▁clothes": 22095,
+ "▁Prior": 22096,
+ "Brain": 22097,
+ "FFFF": 22098,
+ "':'": 22099,
+ "features": 22100,
+ "▁filesystem": 22101,
+ "▁singles": 22102,
+ "▁Melbourne": 22103,
+ "▁destruction": 22104,
+ "▁Lyon": 22105,
+ "▁Insel": 22106,
+ "Nav": 22107,
+ "▁Replace": 22108,
+ "▁lé": 22109,
+ "Who": 22110,
+ "▁Estad": 22111,
+ "▁dimensional": 22112,
+ "▁öff": 22113,
+ "▁grands": 22114,
+ "джа": 22115,
+ "plane": 22116,
+ "ності": 22117,
+ "▁Origin": 22118,
+ "WI": 22119,
+ "änner": 22120,
+ "▁Cry": 22121,
+ "ITION": 22122,
+ "▁född": 22123,
+ "▁cultura": 22124,
+ "▁Rank": 22125,
+ "▁vuel": 22126,
+ "▁zag": 22127,
+ "▁Maxim": 22128,
+ "ону": 22129,
+ "()))": 22130,
+ "Raw": 22131,
+ "kirche": 22132,
+ "▁además": 22133,
+ "▁tie": 22134,
+ "▁Style": 22135,
+ "сков": 22136,
+ "istant": 22137,
+ "olph": 22138,
+ "▁Zür": 22139,
+ "▁Info": 22140,
+ "DOM": 22141,
+ "usc": 22142,
+ "nahm": 22143,
+ "▁Федера": 22144,
+ "▁Fot": 22145,
+ "▁specifying": 22146,
+ "▁titolo": 22147,
+ "▁Boys": 22148,
+ "iech": 22149,
+ "Place": 22150,
+ "▁Hoff": 22151,
+ "▁cached": 22152,
+ "валь": 22153,
+ "isher": 22154,
+ "rolling": 22155,
+ "opens": 22156,
+ "▁hr": 22157,
+ "------": 22158,
+ "▁maggior": 22159,
+ "▁transactions": 22160,
+ "▁criminal": 22161,
+ "▁retre": 22162,
+ "▁Campbell": 22163,
+ ")):": 22164,
+ "▁ned": 22165,
+ "Pager": 22166,
+ "▁Hero": 22167,
+ "(__": 22168,
+ "▁uncle": 22169,
+ "▁reaches": 22170,
+ "arto": 22171,
+ "▁hello": 22172,
+ "Preferences": 22173,
+ "▁затем": 22174,
+ "Named": 22175,
+ "▁readers": 22176,
+ "хі": 22177,
+ "kern": 22178,
+ "▁упо": 22179,
+ "кин": 22180,
+ "▁lav": 22181,
+ "▁nob": 22182,
+ "▁secre": 22183,
+ "▁ListView": 22184,
+ "вания": 22185,
+ "▁Mayor": 22186,
+ "borough": 22187,
+ "▁filosof": 22188,
+ "нення": 22189,
+ "фри": 22190,
+ "▁patr": 22191,
+ "FM": 22192,
+ "▁acid": 22193,
+ "▁Salvador": 22194,
+ "▁abb": 22195,
+ "▁Graham": 22196,
+ "policy": 22197,
+ "negative": 22198,
+ "ńskiego": 22199,
+ "▁Heimat": 22200,
+ "▁dazu": 22201,
+ "▁mely": 22202,
+ "▁ride": 22203,
+ "▁duties": 22204,
+ "overy": 22205,
+ "▁Proposition": 22206,
+ "▁Paolo": 22207,
+ "/'": 22208,
+ "▁Mau": 22209,
+ "imenti": 22210,
+ "Saint": 22211,
+ "father": 22212,
+ "▁equilib": 22213,
+ "phony": 22214,
+ "▁clas": 22215,
+ "▁отли": 22216,
+ "▁Buffered": 22217,
+ "rek": 22218,
+ "▁mitt": 22219,
+ "▁Hur": 22220,
+ "▁Harvard": 22221,
+ "▁demonstrate": 22222,
+ "uario": 22223,
+ "▁dolor": 22224,
+ "▁rejected": 22225,
+ "▁Müller": 22226,
+ "▁nac": 22227,
+ "▁Belle": 22228,
+ "▁gathered": 22229,
+ "nr": 22230,
+ "frika": 22231,
+ "öll": 22232,
+ "▁chemical": 22233,
+ "nig": 22234,
+ "▁calc": 22235,
+ "▁DEFAULT": 22236,
+ "▁philosophy": 22237,
+ "▁Laravel": 22238,
+ "▁alignment": 22239,
+ "EV": 22240,
+ "eor": 22241,
+ "▁dzie": 22242,
+ "▁mest": 22243,
+ "▁Io": 22244,
+ "CRE": 22245,
+ "зви": 22246,
+ "▁Medic": 22247,
+ "▁nä": 22248,
+ "▁zab": 22249,
+ "▁Slov": 22250,
+ "utlich": 22251,
+ "▁amplit": 22252,
+ "▁Frankreich": 22253,
+ "▁кіль": 22254,
+ "IND": 22255,
+ "execution": 22256,
+ "▁Karriere": 22257,
+ "dostęp": 22258,
+ "▁réal": 22259,
+ "engo": 22260,
+ "▁severe": 22261,
+ "зма": 22262,
+ "▁турни": 22263,
+ "▁Carter": 22264,
+ "▁Robinson": 22265,
+ "getElementsBy": 22266,
+ "▁prototype": 22267,
+ "▁japon": 22268,
+ "führung": 22269,
+ "▁consegu": 22270,
+ "▁studi": 22271,
+ "▁lire": 22272,
+ "▁schließ": 22273,
+ "▁Buff": 22274,
+ "▁redund": 22275,
+ "▁ern": 22276,
+ "▁myster": 22277,
+ "▁proprio": 22278,
+ "ateful": 22279,
+ "▁Parent": 22280,
+ "▁ladies": 22281,
+ "rack": 22282,
+ "тика": 22283,
+ "enburg": 22284,
+ "▁качестве": 22285,
+ "▁EF": 22286,
+ "▁stam": 22287,
+ "▁nueva": 22288,
+ "▁filtered": 22289,
+ "reten": 22290,
+ "▁Ian": 22291,
+ "▁Matthew": 22292,
+ "kih": 22293,
+ "▁ő": 22294,
+ "▁компози": 22295,
+ "▁forever": 22296,
+ "oires": 22297,
+ ":\\\\": 22298,
+ "▁études": 22299,
+ "▁soup": 22300,
+ "▁pleased": 22301,
+ ")}(": 22302,
+ "▁Stop": 22303,
+ "Setter": 22304,
+ "▁Help": 22305,
+ "▁bars": 22306,
+ "▁ERR": 22307,
+ "▁(?": 22308,
+ "▁poetry": 22309,
+ "▁Util": 22310,
+ "AK": 22311,
+ "▁fick": 22312,
+ "▁IM": 22313,
+ "▁proud": 22314,
+ "носи": 22315,
+ "▁muerte": 22316,
+ "▁Palmarès": 22317,
+ "▁Nas": 22318,
+ "щих": 22319,
+ "▁quer": 22320,
+ "▁apenas": 22321,
+ "]['": 22322,
+ "▁Konst": 22323,
+ "пон": 22324,
+ "▁Schiff": 22325,
+ "▁mp": 22326,
+ "▁благо": 22327,
+ "fram": 22328,
+ "▁household": 22329,
+ "▁tract": 22330,
+ "encoding": 22331,
+ "▁undert": 22332,
+ "▁Aug": 22333,
+ "ован": 22334,
+ "▁Arten": 22335,
+ "▁invoked": 22336,
+ "▁dynast": 22337,
+ "▁fleet": 22338,
+ "чество": 22339,
+ "▁Murray": 22340,
+ "▁gut": 22341,
+ "elihood": 22342,
+ "▁SSH": 22343,
+ "ответ": 22344,
+ "▁personally": 22345,
+ "прия": 22346,
+ "▁financi": 22347,
+ "▁Thompson": 22348,
+ "alu": 22349,
+ "identity": 22350,
+ "▁Grab": 22351,
+ "addle": 22352,
+ "Ét": 22353,
+ "▁Tob": 22354,
+ "▁verlor": 22355,
+ "▁Sainte": 22356,
+ "▁dop": 22357,
+ "▁вере": 22358,
+ "___": 22359,
+ "▁promotion": 22360,
+ "▁-=": 22361,
+ "▁отде": 22362,
+ "▁ambigu": 22363,
+ "ORDER": 22364,
+ "▁Communic": 22365,
+ "▁imply": 22366,
+ "oned": 22367,
+ "cluding": 22368,
+ "▁collision": 22369,
+ "▁fragments": 22370,
+ "scription": 22371,
+ "▁'{": 22372,
+ "лях": 22373,
+ "▁hans": 22374,
+ "ус": 22375,
+ "wire": 22376,
+ "namespace": 22377,
+ "▁sword": 22378,
+ "refresh": 22379,
+ "▁kwam": 22380,
+ "zs": 22381,
+ "commons": 22382,
+ "▁cosa": 22383,
+ "▁regime": 22384,
+ "grep": 22385,
+ "▁dioc": 22386,
+ "▁Contact": 22387,
+ "▁estas": 22388,
+ "▁Stewart": 22389,
+ "▁viele": 22390,
+ "това": 22391,
+ "▁Ran": 22392,
+ "annes": 22393,
+ "iday": 22394,
+ "▁snapshot": 22395,
+ "orrow": 22396,
+ "▁zač": 22397,
+ "▁участие": 22398,
+ "▁promised": 22399,
+ "Assembly": 22400,
+ "▁championship": 22401,
+ "▁Define": 22402,
+ "▁eren": 22403,
+ "▁ново": 22404,
+ "▁thinks": 22405,
+ "Age": 22406,
+ "▁gev": 22407,
+ "varchar": 22408,
+ "ività": 22409,
+ "compos": 22410,
+ "▁Mutter": 22411,
+ "CONT": 22412,
+ "armée": 22413,
+ "agnet": 22414,
+ "▁Brow": 22415,
+ ".—": 22416,
+ "▁Television": 22417,
+ "▁Для": 22418,
+ "▁vm": 22419,
+ "▁ordin": 22420,
+ "▁Михай": 22421,
+ "▁aproxim": 22422,
+ "')->": 22423,
+ "▁zoo": 22424,
+ "ippi": 22425,
+ "▁sino": 22426,
+ "▁Québec": 22427,
+ "rages": 22428,
+ "äck": 22429,
+ "eing": 22430,
+ "arlo": 22431,
+ "pios": 22432,
+ "▁Chan": 22433,
+ "▁elli": 22434,
+ "▁incons": 22435,
+ "gestellt": 22436,
+ "ppers": 22437,
+ "Jean": 22438,
+ "anstalt": 22439,
+ "▁Dance": 22440,
+ "▁toen": 22441,
+ "▁decis": 22442,
+ "▁Резу": 22443,
+ "▁officially": 22444,
+ "ätze": 22445,
+ "▁доро": 22446,
+ "▁enumer": 22447,
+ "▁troisième": 22448,
+ "typ": 22449,
+ "offs": 22450,
+ "боль": 22451,
+ "odn": 22452,
+ "▁Zar": 22453,
+ "▁друго": 22454,
+ "quia": 22455,
+ "▁Nicolas": 22456,
+ "пису": 22457,
+ "▁mob": 22458,
+ "paces": 22459,
+ "нього": 22460,
+ "Alg": 22461,
+ "éroï": 22462,
+ "Errors": 22463,
+ "▁гре": 22464,
+ "▁женщи": 22465,
+ "inch": 22466,
+ "▁Korean": 22467,
+ "▁Apost": 22468,
+ "▁Liver": 22469,
+ "▁elementary": 22470,
+ "▁DI": 22471,
+ "виси": 22472,
+ "▁soil": 22473,
+ "▁DLL": 22474,
+ "▁risp": 22475,
+ "▁Shakespe": 22476,
+ "▁Gaussian": 22477,
+ "▁Kurt": 22478,
+ "Vertex": 22479,
+ "ebol": 22480,
+ "organisation": 22481,
+ "ären": 22482,
+ "▁YES": 22483,
+ "CUR": 22484,
+ "▁началь": 22485,
+ "▁постро": 22486,
+ "▁Luigi": 22487,
+ "▁caching": 22488,
+ "preventDefault": 22489,
+ "amd": 22490,
+ "▁Vit": 22491,
+ "subst": 22492,
+ "▁строи": 22493,
+ "▁Campion": 22494,
+ "chr": 22495,
+ "фере": 22496,
+ "▁Список": 22497,
+ "NF": 22498,
+ "▁cím": 22499,
+ "▁hé": 22500,
+ "rebbe": 22501,
+ "ocy": 22502,
+ "below": 22503,
+ "▁bylo": 22504,
+ "▁Уи": 22505,
+ "▁\\({\\": 22506,
+ "▁`:": 22507,
+ "giore": 22508,
+ "San": 22509,
+ "▁Gate": 22510,
+ "▁вс": 22511,
+ "▁olimp": 22512,
+ "▁Matrix": 22513,
+ "▁hearing": 22514,
+ "rii": 22515,
+ "tfrac": 22516,
+ "▁allemand": 22517,
+ "▁Vue": 22518,
+ "лн": 22519,
+ "▁compiling": 22520,
+ "▁Ens": 22521,
+ "▁investigation": 22522,
+ "▁Ax": 22523,
+ "▁chars": 22524,
+ "▁targets": 22525,
+ "▁loud": 22526,
+ "usement": 22527,
+ "▁Nether": 22528,
+ "commerce": 22529,
+ "IGHT": 22530,
+ "ocoa": 22531,
+ "ifecycle": 22532,
+ "▁Leo": 22533,
+ "priv": 22534,
+ "▁goods": 22535,
+ "adamente": 22536,
+ "Austral": 22537,
+ "▁reboot": 22538,
+ "Gest": 22539,
+ "▁representations": 22540,
+ "ceu": 22541,
+ "▁doctrine": 22542,
+ "cers": 22543,
+ "▁Krak": 22544,
+ "▁advoc": 22545,
+ "▁squadra": 22546,
+ "▁arbeitete": 22547,
+ "üst": 22548,
+ "▁pill": 22549,
+ "Answer": 22550,
+ "▁квіт": 22551,
+ "▁Wa": 22552,
+ "umann": 22553,
+ "▁Dynam": 22554,
+ "Famil": 22555,
+ "▁tennis": 22556,
+ "▁Engineering": 22557,
+ "▁circles": 22558,
+ "▁Maryland": 22559,
+ "▁besta": 22560,
+ "▁bases": 22561,
+ "▁znajdu": 22562,
+ "ктора": 22563,
+ "▁arrest": 22564,
+ "лер": 22565,
+ "▁Gia": 22566,
+ "▁remarkable": 22567,
+ "▁могу": 22568,
+ "▁Supreme": 22569,
+ "▁`%": 22570,
+ "dor": 22571,
+ "▁aujourd": 22572,
+ "▁wis": 22573,
+ "WIDTH": 22574,
+ "▁misma": 22575,
+ "▁fluid": 22576,
+ "▁petite": 22577,
+ "▁Tow": 22578,
+ "Registry": 22579,
+ "emed": 22580,
+ "▁Wisconsin": 22581,
+ "▁Racing": 22582,
+ "▁registration": 22583,
+ "/%": 22584,
+ "third": 22585,
+ "▁monuments": 22586,
+ "чей": 22587,
+ "▁jet": 22588,
+ "▁Urban": 22589,
+ "álva": 22590,
+ "▁milieu": 22591,
+ "▁possess": 22592,
+ "▁germ": 22593,
+ "dependencies": 22594,
+ "▁enemies": 22595,
+ "▁samen": 22596,
+ "▁Werner": 22597,
+ "▁hizo": 22598,
+ "▁td": 22599,
+ "▁yesterday": 22600,
+ "▁Ад": 22601,
+ "▁hasn": 22602,
+ "cellation": 22603,
+ "ování": 22604,
+ "lika": 22605,
+ "Week": 22606,
+ "▁Ing": 22607,
+ "▁Email": 22608,
+ "▁mètres": 22609,
+ "▁OCLC": 22610,
+ "▁amongst": 22611,
+ "▁splend": 22612,
+ "fur": 22613,
+ "antics": 22614,
+ "▁XXX": 22615,
+ "▁группы": 22616,
+ "lach": 22617,
+ "▁cousin": 22618,
+ "▁invariant": 22619,
+ "ђу": 22620,
+ "▁Beispiel": 22621,
+ "▁harder": 22622,
+ "▁bell": 22623,
+ "▁orch": 22624,
+ "tb": 22625,
+ "Footnote": 22626,
+ "regon": 22627,
+ "Martin": 22628,
+ "▁incon": 22629,
+ "▁attacked": 22630,
+ "_{-": 22631,
+ "▁Tras": 22632,
+ "party": 22633,
+ "iteit": 22634,
+ "▁saint": 22635,
+ "rások": 22636,
+ "▁containers": 22637,
+ "Mo": 22638,
+ "▁Sn": 22639,
+ "quantity": 22640,
+ "▁ras": 22641,
+ "▁Canal": 22642,
+ "ccion": 22643,
+ "uvo": 22644,
+ "▁idx": 22645,
+ "typename": 22646,
+ "▁Rugby": 22647,
+ "▁Seems": 22648,
+ "▁transmit": 22649,
+ "▁Präsident": 22650,
+ "зне": 22651,
+ "▁Baker": 22652,
+ "inth": 22653,
+ "▁több": 22654,
+ "verein": 22655,
+ "▁especie": 22656,
+ ",(": 22657,
+ "▁téc": 22658,
+ "▁WITH": 22659,
+ "▁unos": 22660,
+ "▁politics": 22661,
+ "createElement": 22662,
+ "▁stats": 22663,
+ "▁Tennessee": 22664,
+ "▁Bedeutung": 22665,
+ "▁Screen": 22666,
+ "▁Straße": 22667,
+ "anze": 22668,
+ "▁partly": 22669,
+ "manuel": 22670,
+ "olation": 22671,
+ "horizontal": 22672,
+ "érieure": 22673,
+ "ampio": 22674,
+ "▁струк": 22675,
+ "Weight": 22676,
+ "Land": 22677,
+ "poly": 22678,
+ "▁Dak": 22679,
+ "▁Assume": 22680,
+ "\".$": 22681,
+ "▁casi": 22682,
+ "▁gross": 22683,
+ "▁entertain": 22684,
+ "▁década": 22685,
+ "'.$": 22686,
+ "encer": 22687,
+ "▁guaranteed": 22688,
+ "]$.": 22689,
+ "лися": 22690,
+ "▁acceptable": 22691,
+ "raise": 22692,
+ "irus": 22693,
+ "weit": 22694,
+ "▁Ана": 22695,
+ "▁hills": 22696,
+ "ipage": 22697,
+ "BIT": 22698,
+ "▁nucle": 22699,
+ "▁utilis": 22700,
+ "CAA": 22701,
+ "ènes": 22702,
+ "▁Schweiz": 22703,
+ "▁AA": 22704,
+ "ninger": 22705,
+ "▁bands": 22706,
+ "▁tender": 22707,
+ "som": 22708,
+ "Warning": 22709,
+ "▁Bischof": 22710,
+ "▁Arc": 22711,
+ "▁Woman": 22712,
+ "▁transmission": 22713,
+ "чни": 22714,
+ "istre": 22715,
+ "BY": 22716,
+ "▁SI": 22717,
+ "▁Пар": 22718,
+ "▁}).": 22719,
+ "▁presenta": 22720,
+ "▁René": 22721,
+ "▁happiness": 22722,
+ "▁Punk": 22723,
+ "cols": 22724,
+ "▁Desde": 22725,
+ "рёх": 22726,
+ "▁мона": 22727,
+ "▁scratch": 22728,
+ "▁tcp": 22729,
+ "êtes": 22730,
+ "itated": 22731,
+ "▁diferen": 22732,
+ "geh": 22733,
+ "nahmen": 22734,
+ "Пе": 22735,
+ "cki": 22736,
+ "▁Teatro": 22737,
+ "▁Remember": 22738,
+ "▁fright": 22739,
+ "▁Yam": 22740,
+ "western": 22741,
+ "leted": 22742,
+ "▁встре": 22743,
+ "▁település": 22744,
+ "зин": 22745,
+ "▁Quant": 22746,
+ "▁supre": 22747,
+ "ája": 22748,
+ "дія": 22749,
+ "▁carrera": 22750,
+ "kret": 22751,
+ "para": 22752,
+ "▁SUM": 22753,
+ "▁pit": 22754,
+ "źdz": 22755,
+ "éo": 22756,
+ "рення": 22757,
+ "▁Chor": 22758,
+ "▁voix": 22759,
+ "▁executive": 22760,
+ "▁allerdings": 22761,
+ "Maybe": 22762,
+ "▁день": 22763,
+ "▁flying": 22764,
+ "▁parliament": 22765,
+ "ждан": 22766,
+ "▁fram": 22767,
+ "▁жовт": 22768,
+ "▁ugly": 22769,
+ "▁буду": 22770,
+ "igny": 22771,
+ "\\|_{": 22772,
+ "▁bitter": 22773,
+ "sce": 22774,
+ "▁pole": 22775,
+ "Verlag": 22776,
+ "▁totalité": 22777,
+ "▁foundation": 22778,
+ "jt": 22779,
+ "▁slice": 22780,
+ "ifique": 22781,
+ "▁integrate": 22782,
+ "strij": 22783,
+ "▁asympt": 22784,
+ "▁ему": 22785,
+ "▁perturb": 22786,
+ "▁Flow": 22787,
+ "jboss": 22788,
+ "RIG": 22789,
+ "▁Aless": 22790,
+ "XXX": 22791,
+ "▁summ": 22792,
+ "sqlite": 22793,
+ "▁cheer": 22794,
+ "prob": 22795,
+ "▁GPU": 22796,
+ "ził": 22797,
+ "(*)": 22798,
+ "▁induct": 22799,
+ "RAY": 22800,
+ "blatt": 22801,
+ "questa": 22802,
+ "oru": 22803,
+ "▁Inside": 22804,
+ "▁McG": 22805,
+ "▁Nep": 22806,
+ "мп": 22807,
+ "▁inve": 22808,
+ "▁Animal": 22809,
+ "▁sob": 22810,
+ "ított": 22811,
+ "loyment": 22812,
+ "▁bund": 22813,
+ "Station": 22814,
+ "▁BEGIN": 22815,
+ "▁partiellement": 22816,
+ "igg": 22817,
+ "estore": 22818,
+ "▁coinc": 22819,
+ "▁Sommer": 22820,
+ "▁md": 22821,
+ "▁locked": 22822,
+ "mathchar": 22823,
+ "arma": 22824,
+ "pent": 22825,
+ "arium": 22826,
+ "▁ears": 22827,
+ "▁Songs": 22828,
+ "▁similarly": 22829,
+ "▁literally": 22830,
+ "▁inches": 22831,
+ "▁affection": 22832,
+ "lp": 22833,
+ "▁concluded": 22834,
+ "▁муніципалі": 22835,
+ "▁памя": 22836,
+ "estaur": 22837,
+ "▁Josh": 22838,
+ "▁Fritz": 22839,
+ "DBC": 22840,
+ "дён": 22841,
+ "posa": 22842,
+ "▁golden": 22843,
+ "▁pc": 22844,
+ "▁comte": 22845,
+ "▁Ziel": 22846,
+ "▁présente": 22847,
+ "marks": 22848,
+ "igneur": 22849,
+ "▁Drive": 22850,
+ "▁neglect": 22851,
+ "▁rozp": 22852,
+ "▁Five": 22853,
+ "spaces": 22854,
+ "▁Medi": 22855,
+ "▁existed": 22856,
+ "▁była": 22857,
+ "джи": 22858,
+ "▁frente": 22859,
+ "тник": 22860,
+ "odd": 22861,
+ "▁answering": 22862,
+ "bian": 22863,
+ "▁Eugen": 22864,
+ "▁Publications": 22865,
+ "▁Dia": 22866,
+ "lá": 22867,
+ "▁'_": 22868,
+ "▁recuper": 22869,
+ "ому": 22870,
+ "▁Append": 22871,
+ "obar": 22872,
+ "▁employees": 22873,
+ "▁compens": 22874,
+ "emetery": 22875,
+ "▁элект": 22876,
+ "MON": 22877,
+ "olin": 22878,
+ "▁historic": 22879,
+ "his": 22880,
+ "ąd": 22881,
+ "nm": 22882,
+ "▁Goth": 22883,
+ "▁stress": 22884,
+ "▁partecip": 22885,
+ "▁Aw": 22886,
+ "▁sar": 22887,
+ "▁hu": 22888,
+ "▁matplotlib": 22889,
+ "▁Myst": 22890,
+ "();`": 22891,
+ "schein": 22892,
+ "Longrightarrow": 22893,
+ "▁ря": 22894,
+ "▁Isra": 22895,
+ "[^": 22896,
+ "nou": 22897,
+ "▁synd": 22898,
+ "working": 22899,
+ "▁Nation": 22900,
+ "▁Pent": 22901,
+ "▁klass": 22902,
+ "▁applicable": 22903,
+ "▁Diam": 22904,
+ "▁brasile": 22905,
+ "▁pac": 22906,
+ "▁Height": 22907,
+ "Put": 22908,
+ "▁intro": 22909,
+ "▁unusual": 22910,
+ "nas": 22911,
+ "▁Gebäude": 22912,
+ "▁beam": 22913,
+ "▁Rect": 22914,
+ "▁Primera": 22915,
+ "▁haut": 22916,
+ "▁trait": 22917,
+ "prüft": 22918,
+ "inación": 22919,
+ "▁configurations": 22920,
+ "▁gilt": 22921,
+ "▁territoire": 22922,
+ "hez": 22923,
+ "▁alte": 22924,
+ "relative": 22925,
+ "Excel": 22926,
+ "▁Wright": 22927,
+ "GV": 22928,
+ "поли": 22929,
+ "Quant": 22930,
+ "▁gauge": 22931,
+ "▁multiply": 22932,
+ "ASS": 22933,
+ "ственно": 22934,
+ "ану": 22935,
+ "▁jeden": 22936,
+ "▁literary": 22937,
+ "▁Dro": 22938,
+ "▁advise": 22939,
+ "itzen": 22940,
+ "▁disag": 22941,
+ "website": 22942,
+ "▁дія": 22943,
+ "▁observer": 22944,
+ "▁január": 22945,
+ "vě": 22946,
+ "kup": 22947,
+ "▁Ses": 22948,
+ "▁wojew": 22949,
+ "▁stages": 22950,
+ "▁времени": 22951,
+ "łuż": 22952,
+ "нос": 22953,
+ "Download": 22954,
+ "ipo": 22955,
+ "▁graf": 22956,
+ "▁робо": 22957,
+ "▁Nikol": 22958,
+ "▁fic": 22959,
+ "▁joining": 22960,
+ "▁diversos": 22961,
+ "▁LIKE": 22962,
+ "▁Fitz": 22963,
+ "▁dimin": 22964,
+ "▁distrib": 22965,
+ "Sam": 22966,
+ "koz": 22967,
+ "▁alphabet": 22968,
+ "oser": 22969,
+ "OUR": 22970,
+ "uka": 22971,
+ "кая": 22972,
+ "▁steel": 22973,
+ "▁`--": 22974,
+ "▁tener": 22975,
+ "marker": 22976,
+ "▁Heaven": 22977,
+ "newcommand": 22978,
+ "▁prisoners": 22979,
+ "▁Knight": 22980,
+ "▁presents": 22981,
+ "▁questi": 22982,
+ "▁trains": 22983,
+ "opera": 22984,
+ "▁Linear": 22985,
+ "▁ME": 22986,
+ "▁Buc": 22987,
+ "Leg": 22988,
+ "▁agua": 22989,
+ "▁Griff": 22990,
+ "olg": 22991,
+ "dst": 22992,
+ ".\r": 22993,
+ "▁persones": 22994,
+ "Mal": 22995,
+ "бере": 22996,
+ "folge": 22997,
+ "▁acab": 22998,
+ "ctu": 22999,
+ "ptic": 23000,
+ "▁Navigation": 23001,
+ "Russ": 23002,
+ "галь": 23003,
+ "▁Ful": 23004,
+ "▁має": 23005,
+ "чная": 23006,
+ "wner": 23007,
+ "contra": 23008,
+ "▁joueur": 23009,
+ "▁Jess": 23010,
+ "▁renew": 23011,
+ "▁lap": 23012,
+ "▁casting": 23013,
+ "gal": 23014,
+ "▁tématu": 23015,
+ "▁называ": 23016,
+ "зах": 23017,
+ "чне": 23018,
+ ")-\\": 23019,
+ "▁часто": 23020,
+ "}$-": 23021,
+ "▁licz": 23022,
+ "▁emot": 23023,
+ "harm": 23024,
+ "▁occasionally": 23025,
+ "▁horror": 23026,
+ "east": 23027,
+ "▁printer": 23028,
+ "aran": 23029,
+ "▁Mississ": 23030,
+ "follow": 23031,
+ "▁Barry": 23032,
+ "▁investigate": 23033,
+ "gow": 23034,
+ "▁Americans": 23035,
+ "Since": 23036,
+ "▁відо": 23037,
+ "▁reun": 23038,
+ "osci": 23039,
+ "▁Chapter": 23040,
+ "▁bay": 23041,
+ "роме": 23042,
+ "ethe": 23043,
+ "édie": 23044,
+ "comot": 23045,
+ "▁miejscowo": 23046,
+ "▁studierte": 23047,
+ "ouvert": 23048,
+ "▁кур": 23049,
+ "▁DESC": 23050,
+ "▁touched": 23051,
+ "▁Jerry": 23052,
+ "uese": 23053,
+ "лище": 23054,
+ "authentication": 23055,
+ "▁colle": 23056,
+ "heart": 23057,
+ "▁regiment": 23058,
+ "cribed": 23059,
+ "▁Боль": 23060,
+ "▁проис": 23061,
+ "ceae": 23062,
+ "▁masses": 23063,
+ "▁scrolling": 23064,
+ "usto": 23065,
+ "SW": 23066,
+ "ovat": 23067,
+ "▁grâce": 23068,
+ "▁Архив": 23069,
+ "▁Север": 23070,
+ "avait": 23071,
+ "▁Marshall": 23072,
+ "▁HashMap": 23073,
+ "acon": 23074,
+ "ücken": 23075,
+ "[])": 23076,
+ "▁evangel": 23077,
+ "etzung": 23078,
+ "ttemberg": 23079,
+ "sters": 23080,
+ "TM": 23081,
+ "▁литера": 23082,
+ "quot": 23083,
+ "Pred": 23084,
+ "▁werk": 23085,
+ "▁haber": 23086,
+ "lava": 23087,
+ "vous": 23088,
+ "▁Late": 23089,
+ "cycle": 23090,
+ "тирова": 23091,
+ "▁проду": 23092,
+ "▁populations": 23093,
+ "▁Yan": 23094,
+ "Prefix": 23095,
+ "actéristiques": 23096,
+ "+'": 23097,
+ "()`](": 23098,
+ "▁Ль": 23099,
+ "филь": 23100,
+ "▁жизни": 23101,
+ "ftp": 23102,
+ "▁всех": 23103,
+ "▁gdzie": 23104,
+ "▁videa": 23105,
+ "oauth": 23106,
+ "▁pid": 23107,
+ "ům": 23108,
+ "▁pesso": 23109,
+ "▁tracking": 23110,
+ "izin": 23111,
+ "▁Morris": 23112,
+ "щий": 23113,
+ "▁Provinz": 23114,
+ "▁Mitte": 23115,
+ "▁artificial": 23116,
+ "brázky": 23117,
+ "▁дости": 23118,
+ "▁restored": 23119,
+ "▁communicate": 23120,
+ "agit": 23121,
+ "Recogn": 23122,
+ "▁lon": 23123,
+ "▁заня": 23124,
+ "▁Argument": 23125,
+ "flush": 23126,
+ "мана": 23127,
+ "seconds": 23128,
+ "UC": 23129,
+ "▁Ruth": 23130,
+ "▁tub": 23131,
+ "▁Bret": 23132,
+ "▁Pere": 23133,
+ "▁responsibility": 23134,
+ "ńczy": 23135,
+ "▁environments": 23136,
+ "kee": 23137,
+ "▁groot": 23138,
+ "▁painted": 23139,
+ "▁Éditions": 23140,
+ "cpy": 23141,
+ "árt": 23142,
+ "lichkeit": 23143,
+ "arda": 23144,
+ "Batch": 23145,
+ "▁Leopold": 23146,
+ "reason": 23147,
+ "noreferrer": 23148,
+ "sens": 23149,
+ "▁rocks": 23150,
+ "▁Hitler": 23151,
+ "лат": 23152,
+ "▁quoted": 23153,
+ "▁колле": 23154,
+ "▁уров": 23155,
+ "bag": 23156,
+ ".\")": 23157,
+ "▁ML": 23158,
+ "▁komt": 23159,
+ "▁[_": 23160,
+ "▁spectral": 23161,
+ "edo": 23162,
+ "▁insieme": 23163,
+ "▁suffering": 23164,
+ "slider": 23165,
+ "▁Kennedy": 23166,
+ "olate": 23167,
+ "▁Patri": 23168,
+ "зии": 23169,
+ "OH": 23170,
+ "▁теа": 23171,
+ "▁права": 23172,
+ "мах": 23173,
+ "rewrite": 23174,
+ "▁Einsatz": 23175,
+ "external": 23176,
+ "holds": 23177,
+ "▁Places": 23178,
+ "atype": 23179,
+ "▁vulner": 23180,
+ "▁abandoned": 23181,
+ "Origin": 23182,
+ "▁maximal": 23183,
+ "AAAA": 23184,
+ "▁Baseball": 23185,
+ "▁Close": 23186,
+ "▁painter": 23187,
+ "▁assigning": 23188,
+ "NB": 23189,
+ "blast": 23190,
+ "▁Künstler": 23191,
+ ")](": 23192,
+ "fach": 23193,
+ "▁Constantin": 23194,
+ "okes": 23195,
+ "▁nobody": 23196,
+ "▁subtract": 23197,
+ "▁fosse": 23198,
+ "▁certific": 23199,
+ "▁muse": 23200,
+ "/),": 23201,
+ "▁Profil": 23202,
+ "▁proxim": 23203,
+ "▁Jerusalem": 23204,
+ "▁simplicity": 23205,
+ "▁wsz": 23206,
+ "NUMBER": 23207,
+ "uttavia": 23208,
+ "UITableView": 23209,
+ "ichter": 23210,
+ "жан": 23211,
+ "▁Lav": 23212,
+ "itchen": 23213,
+ "▁Чем": 23214,
+ "Tu": 23215,
+ "▁geom": 23216,
+ "▁zvuky": 23217,
+ "▁Survey": 23218,
+ "ANCE": 23219,
+ "▁encrypted": 23220,
+ "prof": 23221,
+ "▁dare": 23222,
+ "▁Loren": 23223,
+ "тв": 23224,
+ "▁Алек": 23225,
+ "▁computers": 23226,
+ "▁expectation": 23227,
+ "▁substantial": 23228,
+ "▁Дми": 23229,
+ "▁`{": 23230,
+ "▁дра": 23231,
+ "ubble": 23232,
+ "▁performs": 23233,
+ "▁Krieg": 23234,
+ "▁incoming": 23235,
+ "▁Classification": 23236,
+ "WebView": 23237,
+ "▁episodes": 23238,
+ "apper": 23239,
+ "äufig": 23240,
+ "▁giov": 23241,
+ "▁Depart": 23242,
+ "бора": 23243,
+ "edly": 23244,
+ "ospod": 23245,
+ "▁ptr": 23246,
+ "▁dátum": 23247,
+ "▁estimation": 23248,
+ "icole": 23249,
+ "▁----": 23250,
+ "▁princes": 23251,
+ "HEAD": 23252,
+ "▁diffusion": 23253,
+ "▁drie": 23254,
+ "▁Ada": 23255,
+ "нице": 23256,
+ "nginx": 23257,
+ "shal": 23258,
+ "▁februari": 23259,
+ "▁Tat": 23260,
+ "looking": 23261,
+ "kund": 23262,
+ "▁Dean": 23263,
+ "mongodb": 23264,
+ "вших": 23265,
+ "▁Aur": 23266,
+ "▁Flora": 23267,
+ "▁Studios": 23268,
+ "ције": 23269,
+ "eil": 23270,
+ "Install": 23271,
+ "▁franch": 23272,
+ "▁HMS": 23273,
+ "▁practices": 23274,
+ "lej": 23275,
+ "dale": 23276,
+ "▁poste": 23277,
+ "▁Hels": 23278,
+ "▁reliable": 23279,
+ "ździer": 23280,
+ "▁verse": 23281,
+ "ermeister": 23282,
+ "▁quit": 23283,
+ "ético": 23284,
+ "ilis": 23285,
+ "edor": 23286,
+ "▁Cultural": 23287,
+ "дже": 23288,
+ "▁liked": 23289,
+ "▁mongodb": 23290,
+ "▁Broadway": 23291,
+ "▁IR": 23292,
+ "eszt": 23293,
+ "hov": 23294,
+ "▁míst": 23295,
+ "reiche": 23296,
+ "▁kB": 23297,
+ "стом": 23298,
+ "▁SQLite": 23299,
+ "▁torneo": 23300,
+ "\\.": 23301,
+ "Ord": 23302,
+ "▁Administration": 23303,
+ "▁зда": 23304,
+ "▁Hinter": 23305,
+ "▁Via": 23306,
+ "Decimal": 23307,
+ "orious": 23308,
+ "▁nécessaire": 23309,
+ "wx": 23310,
+ "▁tej": 23311,
+ "▁tema": 23312,
+ "Obrázky": 23313,
+ "рите": 23314,
+ "▁builds": 23315,
+ "▁laten": 23316,
+ "▁гг": 23317,
+ "Visibility": 23318,
+ "läu": 23319,
+ "▁sechs": 23320,
+ "▁луч": 23321,
+ "cera": 23322,
+ "Could": 23323,
+ "▁traject": 23324,
+ "}}^{": 23325,
+ "▁Japon": 23326,
+ "another": 23327,
+ "IK": 23328,
+ "▁belonging": 23329,
+ "▁facilities": 23330,
+ "▁Daily": 23331,
+ "▁dece": 23332,
+ "intro": 23333,
+ "▁случа": 23334,
+ "Namespace": 23335,
+ "▁Bak": 23336,
+ "locale": 23337,
+ "UG": 23338,
+ "=${": 23339,
+ "▁compañ": 23340,
+ "jąc": 23341,
+ "▁arithmetic": 23342,
+ "forum": 23343,
+ "▁porta": 23344,
+ "onk": 23345,
+ "▁gender": 23346,
+ "▁expects": 23347,
+ "бка": 23348,
+ "▁nak": 23349,
+ "▁Grace": 23350,
+ "▁stro": 23351,
+ "ividual": 23352,
+ "▁COM": 23353,
+ "▁Farm": 23354,
+ "▁canton": 23355,
+ "тому": 23356,
+ "javax": 23357,
+ "сей": 23358,
+ "▁briefly": 23359,
+ "Face": 23360,
+ "rotate": 23361,
+ "constant": 23362,
+ "▁gallery": 23363,
+ "astro": 23364,
+ "allery": 23365,
+ "▁DJ": 23366,
+ "charge": 23367,
+ "ходить": 23368,
+ "Cent": 23369,
+ "\\\",": 23370,
+ "▁donna": 23371,
+ "arca": 23372,
+ "lade": 23373,
+ "zin": 23374,
+ "▁Ned": 23375,
+ "▁hosting": 23376,
+ "idor": 23377,
+ "itative": 23378,
+ "igs": 23379,
+ "▁пря": 23380,
+ "▁ticket": 23381,
+ "▁studying": 23382,
+ "▁designer": 23383,
+ "lapsed": 23384,
+ "▁laat": 23385,
+ "▁dix": 23386,
+ "▁integrated": 23387,
+ "▁informed": 23388,
+ "▁behave": 23389,
+ "▁labour": 23390,
+ "estellt": 23391,
+ "calendar": 23392,
+ "▁killing": 23393,
+ "▁twitter": 23394,
+ "iae": 23395,
+ "▁historique": 23396,
+ "DEFAULT": 23397,
+ "iała": 23398,
+ "▁theoretical": 23399,
+ "▁unders": 23400,
+ "ляет": 23401,
+ "atan": 23402,
+ "▁surname": 23403,
+ "▁intercept": 23404,
+ "гласно": 23405,
+ "▁општини": 23406,
+ "▁tired": 23407,
+ "▁Beth": 23408,
+ "▁административ": 23409,
+ "Li": 23410,
+ "▁Тур": 23411,
+ "▁Scanner": 23412,
+ "▁Stern": 23413,
+ "▁вместе": 23414,
+ "▁reporting": 23415,
+ "▁sull": 23416,
+ "цией": 23417,
+ "berts": 23418,
+ "ogonal": 23419,
+ "ők": 23420,
+ "▁ipsum": 23421,
+ "▁seulement": 23422,
+ "▁Seiten": 23423,
+ "wordpress": 23424,
+ "▁featuring": 23425,
+ "istischen": 23426,
+ "jub": 23427,
+ "▁étr": 23428,
+ "▁tea": 23429,
+ "▁adapted": 23430,
+ "▁scales": 23431,
+ "▁nan": 23432,
+ "getValue": 23433,
+ "▁Blues": 23434,
+ "acles": 23435,
+ "▁stati": 23436,
+ "▁entitled": 23437,
+ "▁Ralph": 23438,
+ "gravity": 23439,
+ "▁entrepr": 23440,
+ "któber": 23441,
+ "limat": 23442,
+ "lis": 23443,
+ "Demo": 23444,
+ "relation": 23445,
+ "▁nep": 23446,
+ "prowad": 23447,
+ "itis": 23448,
+ "▁pup": 23449,
+ "nehmer": 23450,
+ "▁disappoint": 23451,
+ "▁etwas": 23452,
+ "annon": 23453,
+ "▁approved": 23454,
+ "▁clever": 23455,
+ "Loading": 23456,
+ "▁verz": 23457,
+ "resse": 23458,
+ "▁inspir": 23459,
+ "▁sampling": 23460,
+ "▁Bek": 23461,
+ "})$.": 23462,
+ "▁грома": 23463,
+ "▁specie": 23464,
+ "▁repub": 23465,
+ "▁loader": 23466,
+ "▁erf": 23467,
+ "▁shoulder": 23468,
+ "rais": 23469,
+ "▁мате": 23470,
+ "▁Month": 23471,
+ "Scene": 23472,
+ "▁blocking": 23473,
+ "▁ocean": 23474,
+ "geben": 23475,
+ "▁Kilometer": 23476,
+ "▁bedeut": 23477,
+ "▁Mix": 23478,
+ "fmt": 23479,
+ "▁Norweg": 23480,
+ "▁IDs": 23481,
+ "parallel": 23482,
+ "▁anticip": 23483,
+ "▁revis": 23484,
+ "хан": 23485,
+ "▁свет": 23486,
+ "CASE": 23487,
+ "▁führt": 23488,
+ "▁atomic": 23489,
+ "▁darkness": 23490,
+ "▁Fußballspieler": 23491,
+ "▁Жи": 23492,
+ "quisition": 23493,
+ "▁Sieg": 23494,
+ "Circ": 23495,
+ "▁cientí": 23496,
+ "nelle": 23497,
+ "SHA": 23498,
+ "▁urb": 23499,
+ "▁ksi": 23500,
+ "leqslant": 23501,
+ "▁фрон": 23502,
+ "▁defect": 23503,
+ "▁rá": 23504,
+ "▁stronger": 23505,
+ "▁pł": 23506,
+ "▁communities": 23507,
+ "нина": 23508,
+ "enas": 23509,
+ "iennent": 23510,
+ "▁safely": 23511,
+ "▁тя": 23512,
+ "▁benchmark": 23513,
+ "▁Braun": 23514,
+ "methods": 23515,
+ "argument": 23516,
+ "vos": 23517,
+ "obox": 23518,
+ "рови": 23519,
+ "▁recherche": 23520,
+ "mn": 23521,
+ "▁brings": 23522,
+ "machine": 23523,
+ "CESS": 23524,
+ "hosts": 23525,
+ "▁NY": 23526,
+ "Autow": 23527,
+ "▁современ": 23528,
+ "▁Gary": 23529,
+ "▁sensor": 23530,
+ "▁documented": 23531,
+ "▁prendre": 23532,
+ "▁peer": 23533,
+ "enix": 23534,
+ "hai": 23535,
+ "arbe": 23536,
+ "цент": 23537,
+ "_(": 23538,
+ "▁URI": 23539,
+ "ева": 23540,
+ "▁Regie": 23541,
+ "▁Monument": 23542,
+ "▁onderwerp": 23543,
+ "Bag": 23544,
+ "tit": 23545,
+ "▁stir": 23546,
+ "▁nerv": 23547,
+ "сторія": 23548,
+ "▁sov": 23549,
+ "▁writers": 23550,
+ "▁sorts": 23551,
+ "absolute": 23552,
+ "▁difficulties": 23553,
+ "▁parlament": 23554,
+ "▁IEnumerable": 23555,
+ "▁dissol": 23556,
+ "▁CHECK": 23557,
+ "arina": 23558,
+ "inburgh": 23559,
+ "DM": 23560,
+ "▁eind": 23561,
+ "▁budget": 23562,
+ "▁certains": 23563,
+ "▁första": 23564,
+ "anja": 23565,
+ "▁годов": 23566,
+ "▁тек": 23567,
+ "▁Duch": 23568,
+ "gui": 23569,
+ "▁Teams": 23570,
+ "▁многи": 23571,
+ "Marie": 23572,
+ "Integr": 23573,
+ "ThreadPool": 23574,
+ "rust": 23575,
+ "ík": 23576,
+ "%\"": 23577,
+ "enf": 23578,
+ "spl": 23579,
+ "▁begun": 23580,
+ "lou": 23581,
+ "▁RewriteRule": 23582,
+ "tuple": 23583,
+ "aneous": 23584,
+ "▁marine": 23585,
+ "attan": 23586,
+ "ikal": 23587,
+ "▁graduated": 23588,
+ "illé": 23589,
+ "▁прове": 23590,
+ "▁Роз": 23591,
+ "',\r": 23592,
+ "▁Pfarr": 23593,
+ "▁nivel": 23594,
+ "▁працю": 23595,
+ "music": 23596,
+ "▁setTimeout": 23597,
+ "ERS": 23598,
+ "▁Erik": 23599,
+ "pit": 23600,
+ "▁Хро": 23601,
+ "▁pił": 23602,
+ "▁peri": 23603,
+ "док": 23604,
+ "uszt": 23605,
+ "▁Bear": 23606,
+ "ClassName": 23607,
+ "▁Parlament": 23608,
+ "▁aix": 23609,
+ "▁invited": 23610,
+ "▁PATH": 23611,
+ "xter": 23612,
+ "▁Race": 23613,
+ "▁hecho": 23614,
+ "▁Tower": 23615,
+ "▁utf": 23616,
+ "actly": 23617,
+ "▁буде": 23618,
+ "▁angles": 23619,
+ "няя": 23620,
+ "ouvelles": 23621,
+ "▁climate": 23622,
+ "▁singing": 23623,
+ "▁navigate": 23624,
+ ">';": 23625,
+ "adows": 23626,
+ "▁leta": 23627,
+ "▁Sitz": 23628,
+ "▁partitions": 23629,
+ "▁dock": 23630,
+ "▁ży": 23631,
+ "▁allocate": 23632,
+ "▁benefits": 23633,
+ "▁nieder": 23634,
+ "xpath": 23635,
+ "meck": 23636,
+ "älle": 23637,
+ "▁coupling": 23638,
+ "жил": 23639,
+ "ForKey": 23640,
+ "argent": 23641,
+ "clou": 23642,
+ "▁instruments": 23643,
+ "▁enthus": 23644,
+ "▁még": 23645,
+ "▁Пав": 23646,
+ "▁Rach": 23647,
+ "-----": 23648,
+ "▁APIs": 23649,
+ "▁Vier": 23650,
+ "Cmd": 23651,
+ "itore": 23652,
+ "▁Cuba": 23653,
+ "▁dátummal": 23654,
+ "▁embedding": 23655,
+ "stdio": 23656,
+ "▁Gilbert": 23657,
+ "▁geprüft": 23658,
+ "▁stating": 23659,
+ "▁triggers": 23660,
+ "+=": 23661,
+ "▁spécial": 23662,
+ "▁deliber": 23663,
+ "мин": 23664,
+ "Produ": 23665,
+ "▁Stati": 23666,
+ "▁zus": 23667,
+ "ktionen": 23668,
+ "Dispatcher": 23669,
+ "idal": 23670,
+ "▁LP": 23671,
+ "optera": 23672,
+ "▁estar": 23673,
+ "▁значи": 23674,
+ "смо": 23675,
+ "ouses": 23676,
+ "engono": 23677,
+ "▁WPF": 23678,
+ "publish": 23679,
+ "▁teor": 23680,
+ "elif": 23681,
+ "▁erg": 23682,
+ "▁separation": 23683,
+ "Pan": 23684,
+ "▁Orchestra": 23685,
+ "Peter": 23686,
+ "bounds": 23687,
+ "▁Shakespeare": 23688,
+ "▁cantante": 23689,
+ "▁demi": 23690,
+ "▁Popular": 23691,
+ "фр": 23692,
+ "arring": 23693,
+ "цин": 23694,
+ "▁Ис": 23695,
+ "von": 23696,
+ "▁substitution": 23697,
+ "▁línea": 23698,
+ "\\}$.": 23699,
+ "como": 23700,
+ "▁важ": 23701,
+ "wagen": 23702,
+ "▁rarely": 23703,
+ "▁periods": 23704,
+ "glob": 23705,
+ "▁Frid": 23706,
+ "▁Terr": 23707,
+ "▁Release": 23708,
+ "Brainz": 23709,
+ "▁граф": 23710,
+ "DIS": 23711,
+ "compatible": 23712,
+ "▁poč": 23713,
+ "LIN": 23714,
+ "▁Källor": 23715,
+ "▁Arizona": 23716,
+ "ppy": 23717,
+ "Seq": 23718,
+ "▁Ain": 23719,
+ "▁Tourn": 23720,
+ "brow": 23721,
+ "▁Kör": 23722,
+ "▁ash": 23723,
+ "ogeneous": 23724,
+ "▁dialect": 23725,
+ "▁насеља": 23726,
+ "mysqli": 23727,
+ "цов": 23728,
+ "▁flor": 23729,
+ "▁фло": 23730,
+ "IAB": 23731,
+ "▁Within": 23732,
+ "^(": 23733,
+ "▁bois": 23734,
+ "▁tank": 23735,
+ "▁affili": 23736,
+ "▁hijo": 23737,
+ "▁Kate": 23738,
+ "▁Verl": 23739,
+ "▁Miami": 23740,
+ "▁typescript": 23741,
+ "њу": 23742,
+ "▁Vern": 23743,
+ "▁висо": 23744,
+ "iemann": 23745,
+ "▁coverage": 23746,
+ "brie": 23747,
+ "▁Starting": 23748,
+ "numpy": 23749,
+ "▁Jenkins": 23750,
+ "▁két": 23751,
+ "▁grup": 23752,
+ "▁Scient": 23753,
+ "▁interrupt": 23754,
+ "▁blob": 23755,
+ "ugel": 23756,
+ "▁Orth": 23757,
+ "abama": 23758,
+ "▁Bapt": 23759,
+ "ownik": 23760,
+ "▁быть": 23761,
+ "▁Julius": 23762,
+ "▁През": 23763,
+ "▁substitute": 23764,
+ "supported": 23765,
+ "chy": 23766,
+ "egyzetek": 23767,
+ "▁Performance": 23768,
+ "lessly": 23769,
+ "Constructor": 23770,
+ "▁extending": 23771,
+ "▁Muslim": 23772,
+ "Overflow": 23773,
+ "▁Jenn": 23774,
+ "▁produz": 23775,
+ "мії": 23776,
+ "▁países": 23777,
+ "▁eux": 23778,
+ "▁fate": 23779,
+ "ologe": 23780,
+ "ук": 23781,
+ "▁wobei": 23782,
+ "▁Sachsen": 23783,
+ "▁сайт": 23784,
+ "Models": 23785,
+ "▁Fast": 23786,
+ "besondere": 23787,
+ "▁FR": 23788,
+ "▁acon": 23789,
+ "▁Denkmal": 23790,
+ "▁anch": 23791,
+ "▁público": 23792,
+ "▁Tas": 23793,
+ "▁cand": 23794,
+ "▁paździer": 23795,
+ "▁Мон": 23796,
+ "▁versus": 23797,
+ "rut": 23798,
+ "GT": 23799,
+ "▁inserting": 23800,
+ "▁canad": 23801,
+ "єм": 23802,
+ "▁Metro": 23803,
+ "▁Herzog": 23804,
+ "Ignore": 23805,
+ "▁decrease": 23806,
+ "▁пун": 23807,
+ "▁Fischer": 23808,
+ "▁Mall": 23809,
+ "▁nörd": 23810,
+ "iostream": 23811,
+ "▁Luxemb": 23812,
+ "payload": 23813,
+ "▁Zeitung": 23814,
+ "▁modifying": 23815,
+ "▁Cher": 23816,
+ "▁Luci": 23817,
+ "nx": 23818,
+ "▁loose": 23819,
+ "▁topics": 23820,
+ "▁varied": 23821,
+ "▁pg": 23822,
+ "ajes": 23823,
+ "umm": 23824,
+ "Views": 23825,
+ "▁Beau": 23826,
+ "MAP": 23827,
+ "ipeline": 23828,
+ "▁Interest": 23829,
+ "arith": 23830,
+ "▁según": 23831,
+ "▁Gemeins": 23832,
+ "▁Attribute": 23833,
+ "community": 23834,
+ "▁центр": 23835,
+ "▁kilometer": 23836,
+ "▁économ": 23837,
+ "laration": 23838,
+ "▁къ": 23839,
+ "▁carriage": 23840,
+ "▁Lane": 23841,
+ "▁необ": 23842,
+ "kur": 23843,
+ "▁AF": 23844,
+ "INTER": 23845,
+ "))$": 23846,
+ "▁beide": 23847,
+ "destination": 23848,
+ "▁fonts": 23849,
+ "appendChild": 23850,
+ "▁MAR": 23851,
+ "▁gay": 23852,
+ "mil": 23853,
+ "lesh": 23854,
+ "èt": 23855,
+ "▁Wang": 23856,
+ "▁Years": 23857,
+ "▁Symbol": 23858,
+ "Live": 23859,
+ "quency": 23860,
+ "▁Users": 23861,
+ "▁Unicode": 23862,
+ "▁Sau": 23863,
+ "▁tons": 23864,
+ "▁Ні": 23865,
+ "▁краї": 23866,
+ "AXI": 23867,
+ "▁Pick": 23868,
+ "AI": 23869,
+ "▁hath": 23870,
+ "▁ainda": 23871,
+ "▁papa": 23872,
+ "▁Censo": 23873,
+ "▁Bald": 23874,
+ "▁Насеље": 23875,
+ "▁simulations": 23876,
+ "▁jaren": 23877,
+ "▁inherited": 23878,
+ "▁той": 23879,
+ "▁feels": 23880,
+ "ression": 23881,
+ "▁október": 23882,
+ "bid": 23883,
+ "ási": 23884,
+ "▁muss": 23885,
+ "ventory": 23886,
+ "▁meist": 23887,
+ "▁bore": 23888,
+ "▁slider": 23889,
+ "дели": 23890,
+ "\\;": 23891,
+ "▁extracted": 23892,
+ "кур": 23893,
+ "Edge": 23894,
+ "▁perf": 23895,
+ "▁Brigade": 23896,
+ "▁град": 23897,
+ "ienie": 23898,
+ "▁Norden": 23899,
+ "▁cancer": 23900,
+ "\"/": 23901,
+ "Cur": 23902,
+ "▁Сере": 23903,
+ "▁liquid": 23904,
+ "structure": 23905,
+ "▁choosing": 23906,
+ "▁Perl": 23907,
+ "Side": 23908,
+ "üs": 23909,
+ "ритор": 23910,
+ "▁kost": 23911,
+ "▁packets": 23912,
+ "▁которого": 23913,
+ "▁Comun": 23914,
+ "▁fingers": 23915,
+ "ográfica": 23916,
+ ">:": 23917,
+ "▁championnat": 23918,
+ "▁blieb": 23919,
+ "▁Situ": 23920,
+ "▁suic": 23921,
+ "andis": 23922,
+ "Fre": 23923,
+ "▁Conc": 23924,
+ "▁republic": 23925,
+ "▁armed": 23926,
+ "▁hell": 23927,
+ "▁hög": 23928,
+ "ragma": 23929,
+ "▁ense": 23930,
+ "▁acres": 23931,
+ "▁Від": 23932,
+ "▁Reform": 23933,
+ "MainActivity": 23934,
+ "keeper": 23935,
+ "erb": 23936,
+ "▁monaster": 23937,
+ "subsubsection": 23938,
+ "▁Див": 23939,
+ "▁creature": 23940,
+ "▁indicating": 23941,
+ "▁urls": 23942,
+ "▁kein": 23943,
+ "образ": 23944,
+ "pick": 23945,
+ "▁Admir": 23946,
+ "▁oldest": 23947,
+ "▁muz": 23948,
+ "▁contradiction": 23949,
+ "▁probabil": 23950,
+ "illiant": 23951,
+ "▁pav": 23952,
+ "▁papel": 23953,
+ "ubs": 23954,
+ "▁жена": 23955,
+ "AML": 23956,
+ "▁recip": 23957,
+ "▁COL": 23958,
+ "added": 23959,
+ "▁clue": 23960,
+ "▁Ukraine": 23961,
+ "▁jelent": 23962,
+ "чень": 23963,
+ "▁mathematics": 23964,
+ "Accept": 23965,
+ "▁сот": 23966,
+ "▁север": 23967,
+ "▁isolated": 23968,
+ "▁поя": 23969,
+ "wür": 23970,
+ "Router": 23971,
+ "CAT": 23972,
+ "rgb": 23973,
+ "▁Lov": 23974,
+ "mutable": 23975,
+ "▁Wes": 23976,
+ "▁Italien": 23977,
+ "Drag": 23978,
+ "enium": 23979,
+ "atting": 23980,
+ "tcp": 23981,
+ "▁erfolgte": 23982,
+ "▁Beit": 23983,
+ "гато": 23984,
+ "▁Systems": 23985,
+ "▁reserve": 23986,
+ "eree": 23987,
+ "▁Пари": 23988,
+ "▁зали": 23989,
+ "▁rent": 23990,
+ "▁sunt": 23991,
+ "▁Girls": 23992,
+ "▁Ernest": 23993,
+ "▁fits": 23994,
+ "▁oppon": 23995,
+ "▁живело": 23996,
+ "▁avaient": 23997,
+ "▁Florence": 23998,
+ "▁числе": 23999,
+ "▁engines": 24000,
+ "Dynamic": 24001,
+ "▁stycznia": 24002,
+ "▁bias": 24003,
+ "▁Exchange": 24004,
+ "дий": 24005,
+ "▁historiques": 24006,
+ "▁Hä": 24007,
+ "hod": 24008,
+ "▁wł": 24009,
+ "schap": 24010,
+ "▁lac": 24011,
+ "▁Foi": 24012,
+ "▁dwell": 24013,
+ "▁Unternehmen": 24014,
+ "URN": 24015,
+ "▁kilometres": 24016,
+ "▁Однако": 24017,
+ "кли": 24018,
+ "▁Sri": 24019,
+ "Groups": 24020,
+ "mind": 24021,
+ "oslov": 24022,
+ "fern": 24023,
+ "egu": 24024,
+ "abeled": 24025,
+ "Fiddle": 24026,
+ "▁Century": 24027,
+ "/-": 24028,
+ "▁Jegyzetek": 24029,
+ "Hen": 24030,
+ "ensemble": 24031,
+ "▁Gut": 24032,
+ "_{{\\": 24033,
+ "▁ranking": 24034,
+ "+$": 24035,
+ "ала": 24036,
+ "▁#{": 24037,
+ "imientos": 24038,
+ "achim": 24039,
+ "rides": 24040,
+ "▁Klaus": 24041,
+ "▁intend": 24042,
+ "▁Kentucky": 24043,
+ "cipe": 24044,
+ "▁Dienst": 24045,
+ "▁situated": 24046,
+ "▁póź": 24047,
+ "▁scrit": 24048,
+ "clip": 24049,
+ "нет": 24050,
+ "tables": 24051,
+ "▁Nied": 24052,
+ "▁McK": 24053,
+ "▁powst": 24054,
+ "▁kunnen": 24055,
+ "▁Evans": 24056,
+ "жды": 24057,
+ "вать": 24058,
+ "uchar": 24059,
+ "▁residents": 24060,
+ "iak": 24061,
+ "▁Resol": 24062,
+ "▁veces": 24063,
+ "▁satisfying": 24064,
+ "INF": 24065,
+ "▁син": 24066,
+ "▁crossing": 24067,
+ "iben": 24068,
+ "▁широ": 24069,
+ "pto": 24070,
+ "ILL": 24071,
+ "▁роль": 24072,
+ "▁aktiv": 24073,
+ "▁обращения": 24074,
+ "Wikispecies": 24075,
+ "▁Höhe": 24076,
+ "cro": 24077,
+ "════": 24078,
+ "altra": 24079,
+ "▁FILE": 24080,
+ "▁ups": 24081,
+ "▁allocation": 24082,
+ "Michael": 24083,
+ "▁acknowled": 24084,
+ "Linux": 24085,
+ "▁metros": 24086,
+ "tte": 24087,
+ "afen": 24088,
+ "▁xcode": 24089,
+ "▁тради": 24090,
+ "species": 24091,
+ "▁injury": 24092,
+ "▁самы": 24093,
+ "▁lattice": 24094,
+ "Material": 24095,
+ "andenburg": 24096,
+ "▁huvudstaden": 24097,
+ "story": 24098,
+ "▁varying": 24099,
+ "▁követ": 24100,
+ "▁Российской": 24101,
+ "irse": 24102,
+ "▁drum": 24103,
+ "Pressed": 24104,
+ "Lar": 24105,
+ "▁Agu": 24106,
+ "▁weil": 24107,
+ "▁commence": 24108,
+ "▁Según": 24109,
+ "Gesture": 24110,
+ "Shape": 24111,
+ "▁Vors": 24112,
+ "▁succès": 24113,
+ "▁corrected": 24114,
+ "Kar": 24115,
+ "▁cruel": 24116,
+ "▁politico": 24117,
+ "▁Schriftsteller": 24118,
+ "▁risult": 24119,
+ "etu": 24120,
+ "archiv": 24121,
+ "▁género": 24122,
+ "▁Lü": 24123,
+ "▁triumph": 24124,
+ "ORS": 24125,
+ "Lu": 24126,
+ "▁personnel": 24127,
+ "▁Hills": 24128,
+ "asset": 24129,
+ "domin": 24130,
+ "Receive": 24131,
+ "▁Oak": 24132,
+ "▁Kno": 24133,
+ "▁Theory": 24134,
+ "irie": 24135,
+ "owan": 24136,
+ "▁estava": 24137,
+ "▁executes": 24138,
+ "йт": 24139,
+ "ópez": 24140,
+ "поло": 24141,
+ "ética": 24142,
+ "▁название": 24143,
+ "▁converges": 24144,
+ "▁notre": 24145,
+ "▁populated": 24146,
+ "▁movements": 24147,
+ "▁statistical": 24148,
+ "▁Zweiten": 24149,
+ "quin": 24150,
+ "▁importantes": 24151,
+ "▁klein": 24152,
+ "▁Segunda": 24153,
+ "schließend": 24154,
+ "Failure": 24155,
+ "nar": 24156,
+ "dag": 24157,
+ "▁ruolo": 24158,
+ "▁fiction": 24159,
+ "▁использу": 24160,
+ "▁crisis": 24161,
+ "▁Getting": 24162,
+ ",%": 24163,
+ "▁армии": 24164,
+ "▁campus": 24165,
+ "▁footer": 24166,
+ "▁días": 24167,
+ "бан": 24168,
+ "▁liberty": 24169,
+ "▁gh": 24170,
+ "▁chamber": 24171,
+ "▁districts": 24172,
+ "▁excited": 24173,
+ "▁canción": 24174,
+ "tero": 24175,
+ "▁Working": 24176,
+ "▁części": 24177,
+ "льный": 24178,
+ "▁forum": 24179,
+ "▁Ehe": 24180,
+ "▁ката": 24181,
+ "itations": 24182,
+ "Tools": 24183,
+ "achiv": 24184,
+ "▁cres": 24185,
+ "asto": 24186,
+ "▁rever": 24187,
+ "▁nazionale": 24188,
+ "▁doors": 24189,
+ "▁Nancy": 24190,
+ "▁islands": 24191,
+ "Imp": 24192,
+ "▁Chair": 24193,
+ "▁vorm": 24194,
+ "sein": 24195,
+ "▁доку": 24196,
+ "erset": 24197,
+ "▁tätig": 24198,
+ "▁Krit": 24199,
+ "▁пя": 24200,
+ "▁conservation": 24201,
+ "▁Partido": 24202,
+ "minipage": 24203,
+ "Validator": 24204,
+ "▁recovery": 24205,
+ "▁NASA": 24206,
+ "▁breast": 24207,
+ "ilty": 24208,
+ "analy": 24209,
+ "elines": 24210,
+ "▁Saturday": 24211,
+ "emark": 24212,
+ "cej": 24213,
+ "Zero": 24214,
+ "▁Turner": 24215,
+ "secure": 24216,
+ "Exists": 24217,
+ "▁Rick": 24218,
+ "evalu": 24219,
+ "ctrl": 24220,
+ "▁compression": 24221,
+ "▁CURL": 24222,
+ "textcolor": 24223,
+ ")\\,": 24224,
+ "longrightarrow": 24225,
+ "▁Fernseh": 24226,
+ "icha": 24227,
+ "▁loi": 24228,
+ "▁Оте": 24229,
+ "▁cave": 24230,
+ "▁dozen": 24231,
+ "▁explaining": 24232,
+ "▁innov": 24233,
+ "▁Nicholas": 24234,
+ "▁diameter": 24235,
+ "▁Marian": 24236,
+ "▁fires": 24237,
+ "▁artifact": 24238,
+ "▁Parker": 24239,
+ "▁Bund": 24240,
+ "▁verte": 24241,
+ "▁talent": 24242,
+ "▁Lucas": 24243,
+ "reverse": 24244,
+ "▁folgenden": 24245,
+ "▁Sah": 24246,
+ "jections": 24247,
+ "▁invece": 24248,
+ "▁costitu": 24249,
+ "▁ssl": 24250,
+ "}}^": 24251,
+ "▁violent": 24252,
+ "▁spos": 24253,
+ "Rout": 24254,
+ "jdk": 24255,
+ "▁заме": 24256,
+ "▁furent": 24257,
+ "andal": 24258,
+ "Hom": 24259,
+ "▁Senior": 24260,
+ "▁pounds": 24261,
+ "▁Discogs": 24262,
+ "▁зе": 24263,
+ "'}[": 24264,
+ "▁Napoleon": 24265,
+ "ordinates": 24266,
+ "àn": 24267,
+ "▁kurz": 24268,
+ "▁vere": 24269,
+ "▁reuse": 24270,
+ "▁Ген": 24271,
+ "▁Syst": 24272,
+ "▁disappeared": 24273,
+ "▁Watch": 24274,
+ "bibliothek": 24275,
+ "▁корпу": 24276,
+ "▁Cs": 24277,
+ "▁}`": 24278,
+ "▁rör": 24279,
+ "▁дела": 24280,
+ "VB": 24281,
+ "▁calculus": 24282,
+ "рода": 24283,
+ "▁judgment": 24284,
+ "atile": 24285,
+ "▁longue": 24286,
+ "▁Hus": 24287,
+ "Jac": 24288,
+ "}})": 24289,
+ "RIPT": 24290,
+ "IABot": 24291,
+ "▁após": 24292,
+ "▁aston": 24293,
+ "Webachiv": 24294,
+ "▁URLs": 24295,
+ "▁coat": 24296,
+ "▁эконо": 24297,
+ "▁lear": 24298,
+ "extensions": 24299,
+ "▁Classic": 24300,
+ "TI": 24301,
+ "▁Tage": 24302,
+ "▁lá": 24303,
+ "▁semb": 24304,
+ "▁développement": 24305,
+ "ISTS": 24306,
+ "▁solves": 24307,
+ ",\\,": 24308,
+ "▁чемпі": 24309,
+ "ordinary": 24310,
+ "▁Bav": 24311,
+ "▁muchos": 24312,
+ "Self": 24313,
+ "▁Май": 24314,
+ "▁Diet": 24315,
+ "▁necessity": 24316,
+ "від": 24317,
+ "▁mano": 24318,
+ "▁Ср": 24319,
+ "▁carre": 24320,
+ "▁Camera": 24321,
+ "▁Narod": 24322,
+ "▁Phone": 24323,
+ "▁polym": 24324,
+ "imore": 24325,
+ "isEmpty": 24326,
+ "▁Houston": 24327,
+ "▁Rece": 24328,
+ "▁presentation": 24329,
+ "ниципа": 24330,
+ "▁Db": 24331,
+ "▁confident": 24332,
+ "▁}{": 24333,
+ "▁bullet": 24334,
+ "▁{},": 24335,
+ "ANGE": 24336,
+ "▁Notre": 24337,
+ "chin": 24338,
+ "▁Dragon": 24339,
+ "erca": 24340,
+ "iali": 24341,
+ "▁asset": 24342,
+ "▁muito": 24343,
+ "▁deeply": 24344,
+ "▁restriction": 24345,
+ "▁commerce": 24346,
+ "▁Bomb": 24347,
+ "caught": 24348,
+ "qq": 24349,
+ "▁Arag": 24350,
+ "▁немец": 24351,
+ "▁Analysis": 24352,
+ "▁článku": 24353,
+ "▁baby": 24354,
+ "▁echter": 24355,
+ "▁одного": 24356,
+ "жена": 24357,
+ "▁whitespace": 24358,
+ "çu": 24359,
+ "LIST": 24360,
+ "frique": 24361,
+ "▁varias": 24362,
+ "▁Wit": 24363,
+ "▁Licencia": 24364,
+ "Exit": 24365,
+ "▁sierp": 24366,
+ "▁assemb": 24367,
+ "▁splitting": 24368,
+ "▁palace": 24369,
+ "▁blocked": 24370,
+ "▁boundaries": 24371,
+ "▁iterations": 24372,
+ "▁Rotten": 24373,
+ "▁Verkehr": 24374,
+ "▁weer": 24375,
+ "Tests": 24376,
+ "ifting": 24377,
+ "▁regul": 24378,
+ "▁persist": 24379,
+ "▁Solution": 24380,
+ "pb": 24381,
+ "▁collapse": 24382,
+ "▁arrested": 24383,
+ "▁predicate": 24384,
+ "▁Zone": 24385,
+ "▁ingen": 24386,
+ "zález": 24387,
+ "▁banks": 24388,
+ "plant": 24389,
+ "▁Nella": 24390,
+ "▁бан": 24391,
+ "▁Snow": 24392,
+ "▁Kreuz": 24393,
+ "ício": 24394,
+ "▁enters": 24395,
+ "▁expose": 24396,
+ "či": 24397,
+ "шие": 24398,
+ "Qual": 24399,
+ "▁landscape": 24400,
+ "▁подацима": 24401,
+ "mai": 24402,
+ "stag": 24403,
+ "ований": 24404,
+ "DEF": 24405,
+ "[]{": 24406,
+ "▁dernière": 24407,
+ "icut": 24408,
+ "▁Xml": 24409,
+ "▁subgroup": 24410,
+ "▁Polsce": 24411,
+ "▁Warning": 24412,
+ "▁vehicles": 24413,
+ "iot": 24414,
+ "▁dll": 24415,
+ "ront": 24416,
+ "▁Louise": 24417,
+ "▁ara": 24418,
+ "▁Scala": 24419,
+ "▁canonical": 24420,
+ "▁placing": 24421,
+ "ERY": 24422,
+ "▁Jag": 24423,
+ "▁virus": 24424,
+ "emu": 24425,
+ "▁});\r": 24426,
+ "▁мм": 24427,
+ "▁Trying": 24428,
+ "▁Lexikon": 24429,
+ "abord": 24430,
+ "▁expedition": 24431,
+ "▁demanded": 24432,
+ "Zyg": 24433,
+ "lein": 24434,
+ "▁verwendet": 24435,
+ "рина": 24436,
+ "wol": 24437,
+ "▁pivot": 24438,
+ "▁однако": 24439,
+ "▁propriet": 24440,
+ "▁awards": 24441,
+ "tout": 24442,
+ "▁assim": 24443,
+ "▁Storm": 24444,
+ "Limit": 24445,
+ "elin": 24446,
+ "wealth": 24447,
+ "uez": 24448,
+ "▁rappresent": 24449,
+ "▁resta": 24450,
+ "▁gegründet": 24451,
+ "▁journalist": 24452,
+ "isie": 24453,
+ "▁facility": 24454,
+ "illed": 24455,
+ "ulk": 24456,
+ "▁PK": 24457,
+ "Anchor": 24458,
+ "▁_)": 24459,
+ "VF": 24460,
+ "LAB": 24461,
+ "▁nå": 24462,
+ "odos": 24463,
+ "▁billion": 24464,
+ "virti": 24465,
+ "▁Jeux": 24466,
+ "юза": 24467,
+ "tomcat": 24468,
+ "▁charts": 24469,
+ "▁Bundle": 24470,
+ "▁lst": 24471,
+ "▁exer": 24472,
+ "▁females": 24473,
+ "▁obliged": 24474,
+ "▁aby": 24475,
+ "rolled": 24476,
+ "dri": 24477,
+ "▁Sche": 24478,
+ "▁vessels": 24479,
+ "IMARY": 24480,
+ "▁reasoning": 24481,
+ "▁проте": 24482,
+ "FILES": 24483,
+ "verk": 24484,
+ "osos": 24485,
+ "▁комму": 24486,
+ "дії": 24487,
+ "▁dd": 24488,
+ "▁соответ": 24489,
+ "▁IOException": 24490,
+ "ských": 24491,
+ "▁CLI": 24492,
+ "▁ње": 24493,
+ "CM": 24494,
+ "TD": 24495,
+ "▁possibilities": 24496,
+ "▁Compos": 24497,
+ "half": 24498,
+ "▁webpage": 24499,
+ "▁swing": 24500,
+ "▁zas": 24501,
+ "▁cycl": 24502,
+ "leid": 24503,
+ "istica": 24504,
+ "▁Insert": 24505,
+ "▁Sweden": 24506,
+ "▁wanting": 24507,
+ "▁ال": 24508,
+ "▁eeuw": 24509,
+ "▁Administr": 24510,
+ "▁Warren": 24511,
+ "▁bs": 24512,
+ "▁pam": 24513,
+ "anus": 24514,
+ "Dra": 24515,
+ "expl": 24516,
+ "▁Kant": 24517,
+ "▁Austin": 24518,
+ "▁csak": 24519,
+ "▁theatre": 24520,
+ "▁compatibility": 24521,
+ "матиче": 24522,
+ "setState": 24523,
+ "бю": 24524,
+ "}{|": 24525,
+ "▁Dy": 24526,
+ "▁Zwischen": 24527,
+ "Alt": 24528,
+ "CLARE": 24529,
+ "steps": 24530,
+ "▁Lage": 24531,
+ "▁Mitt": 24532,
+ "▁Dublin": 24533,
+ "▁работы": 24534,
+ "deep": 24535,
+ "▁flows": 24536,
+ "▁Palace": 24537,
+ "unix": 24538,
+ "refs": 24539,
+ "umar": 24540,
+ "aset": 24541,
+ "cov": 24542,
+ "▁ping": 24543,
+ "▁Safari": 24544,
+ "flug": 24545,
+ "creens": 24546,
+ "{#": 24547,
+ "▁реа": 24548,
+ "adors": 24549,
+ "▁amor": 24550,
+ "uce": 24551,
+ "demic": 24552,
+ "▁Netherlands": 24553,
+ "▁clusters": 24554,
+ "▁enfor": 24555,
+ "marine": 24556,
+ "▁bugs": 24557,
+ "izzata": 24558,
+ "▁scra": 24559,
+ "Les": 24560,
+ "quick": 24561,
+ "▁turno": 24562,
+ "_*": 24563,
+ "ера": 24564,
+ "Generated": 24565,
+ ">[": 24566,
+ "▁estre": 24567,
+ "orde": 24568,
+ "▁verg": 24569,
+ "роз": 24570,
+ "▁pau": 24571,
+ "includes": 24572,
+ "assa": 24573,
+ "aders": 24574,
+ "▁Герма": 24575,
+ "▁estaven": 24576,
+ "▁earliest": 24577,
+ "▁resultado": 24578,
+ "mun": 24579,
+ "▁plots": 24580,
+ "din": 24581,
+ "sorted": 24582,
+ "▁preference": 24583,
+ "rió": 24584,
+ "туре": 24585,
+ "▁Ligue": 24586,
+ "▁завер": 24587,
+ "phr": 24588,
+ "▁pocket": 24589,
+ "▁parl": 24590,
+ "▁lak": 24591,
+ "▁powie": 24592,
+ "▁altres": 24593,
+ "$};": 24594,
+ "plain": 24595,
+ "▁Cred": 24596,
+ "itza": 24597,
+ "perp": 24598,
+ "Green": 24599,
+ "▁devoted": 24600,
+ "production": 24601,
+ "worker": 24602,
+ "elsen": 24603,
+ "▁vern": 24604,
+ "▁március": 24605,
+ "▁Confeder": 24606,
+ "▁Liverpool": 24607,
+ "▁музи": 24608,
+ "▁emails": 24609,
+ "▁distances": 24610,
+ "▁segments": 24611,
+ "▁anth": 24612,
+ "▁wrest": 24613,
+ "▁hoog": 24614,
+ "▁cinema": 24615,
+ "rror": 24616,
+ "▁geboren": 24617,
+ "▁éc": 24618,
+ "Marker": 24619,
+ "▁Compet": 24620,
+ "▁листо": 24621,
+ "allowed": 24622,
+ "volume": 24623,
+ "Espagne": 24624,
+ "Ze": 24625,
+ "▁fixes": 24626,
+ "▁rond": 24627,
+ "▁arrangement": 24628,
+ "/~": 24629,
+ ".](": 24630,
+ "▁Források": 24631,
+ "▁weiteren": 24632,
+ "excel": 24633,
+ "▁змі": 24634,
+ "▁moderne": 24635,
+ "English": 24636,
+ "▁Transfermarkt": 24637,
+ "▁bearing": 24638,
+ "▁cleared": 24639,
+ "▁сам": 24640,
+ "▁divs": 24641,
+ "ći": 24642,
+ "▁этой": 24643,
+ "▁Геор": 24644,
+ "scene": 24645,
+ "▁ages": 24646,
+ "GEN": 24647,
+ "rän": 24648,
+ "▁Toul": 24649,
+ "▁Abs": 24650,
+ "ját": 24651,
+ "▁mediante": 24652,
+ "▁empres": 24653,
+ "▁Employee": 24654,
+ "▁polynomials": 24655,
+ "▁optimize": 24656,
+ "▁выступа": 24657,
+ "fare": 24658,
+ "вей": 24659,
+ "xf": 24660,
+ "quez": 24661,
+ "▁botan": 24662,
+ "▁defend": 24663,
+ "▁Quart": 24664,
+ "Mont": 24665,
+ "vb": 24666,
+ "tick": 24667,
+ "WD": 24668,
+ "mine": 24669,
+ "▁modific": 24670,
+ "notification": 24671,
+ "▁denn": 24672,
+ "▁algo": 24673,
+ "▁Spo": 24674,
+ "▁mistrzost": 24675,
+ "/:": 24676,
+ "▁apresent": 24677,
+ "▁прод": 24678,
+ "Volume": 24679,
+ "ską": 24680,
+ "protected": 24681,
+ "▁Turkish": 24682,
+ "azy": 24683,
+ "▁pouv": 24684,
+ "▁período": 24685,
+ "skog": 24686,
+ "▁entropy": 24687,
+ "zed": 24688,
+ "тори": 24689,
+ "▁lij": 24690,
+ "boards": 24691,
+ "▁стату": 24692,
+ "Bool": 24693,
+ "▁polity": 24694,
+ "@\",": 24695,
+ "▁рік": 24696,
+ "née": 24697,
+ "▁Zug": 24698,
+ "▁Uniti": 24699,
+ "émet": 24700,
+ "atience": 24701,
+ "dimen": 24702,
+ "▁Steven": 24703,
+ "Ha": 24704,
+ "ACTION": 24705,
+ "▁wand": 24706,
+ "▁Navar": 24707,
+ "▁січня": 24708,
+ "Watch": 24709,
+ "▁Stuart": 24710,
+ "▁zde": 24711,
+ "▁контро": 24712,
+ "dataset": 24713,
+ "yó": 24714,
+ "▁Bush": 24715,
+ "▁себя": 24716,
+ "▁worthy": 24717,
+ "▁Ble": 24718,
+ "▁propor": 24719,
+ "▁Village": 24720,
+ "▁ry": 24721,
+ "▁voit": 24722,
+ "▁копия": 24723,
+ "▁zp": 24724,
+ "▁cura": 24725,
+ "▁Html": 24726,
+ "▁Dieser": 24727,
+ "▁Days": 24728,
+ "onnes": 24729,
+ "▁antigu": 24730,
+ "▁Staaten": 24731,
+ "▁faint": 24732,
+ "ongs": 24733,
+ "▁öst": 24734,
+ "Redirect": 24735,
+ "ель": 24736,
+ "atorial": 24737,
+ "▁bother": 24738,
+ "EditText": 24739,
+ "▁Giul": 24740,
+ "▁заво": 24741,
+ "▁pueblo": 24742,
+ "▁Mississippi": 24743,
+ "jak": 24744,
+ "▁wings": 24745,
+ "onc": 24746,
+ "ível": 24747,
+ "iencia": 24748,
+ "entlicht": 24749,
+ "▁BTW": 24750,
+ "ornal": 24751,
+ "▁Коро": 24752,
+ "▁одним": 24753,
+ "▁salv": 24754,
+ "▁finden": 24755,
+ "geo": 24756,
+ "▁авиа": 24757,
+ "attung": 24758,
+ "viv": 24759,
+ "▁Luther": 24760,
+ "▁общи": 24761,
+ "▁Rolle": 24762,
+ "▁Abraham": 24763,
+ "▁centered": 24764,
+ "▁slash": 24765,
+ "isat": 24766,
+ "emann": 24767,
+ "Os": 24768,
+ "парта": 24769,
+ "▁Pablo": 24770,
+ "▁collaboration": 24771,
+ "paths": 24772,
+ "édition": 24773,
+ "▁viewed": 24774,
+ "▁consisted": 24775,
+ "▁recovered": 24776,
+ "▁Mexican": 24777,
+ "▁Fix": 24778,
+ "▁spell": 24779,
+ "Special": 24780,
+ "▁Ст": 24781,
+ "esseur": 24782,
+ "▁Украины": 24783,
+ "former": 24784,
+ "▁św": 24785,
+ "▁zeros": 24786,
+ "▁Straßen": 24787,
+ "▁organisation": 24788,
+ "üssen": 24789,
+ "▁Sierra": 24790,
+ "▁Season": 24791,
+ "▁volont": 24792,
+ "BeanFactory": 24793,
+ "▁помощ": 24794,
+ "▁pressing": 24795,
+ "▁equivalence": 24796,
+ "▁catt": 24797,
+ "icity": 24798,
+ "▁accomplished": 24799,
+ "▁yo": 24800,
+ "▁sic": 24801,
+ "▁imports": 24802,
+ "▁accommod": 24803,
+ "▁Porto": 24804,
+ "▁яка": 24805,
+ "▁loan": 24806,
+ "тики": 24807,
+ "▁checkout": 24808,
+ "▁assess": 24809,
+ "▁Population": 24810,
+ "urent": 24811,
+ "clojure": 24812,
+ "▁Santos": 24813,
+ "▁információ": 24814,
+ "POS": 24815,
+ "▁gare": 24816,
+ "▁kick": 24817,
+ "▁radical": 24818,
+ "▁Peace": 24819,
+ "▁streaming": 24820,
+ "camp": 24821,
+ "ząt": 24822,
+ "говор": 24823,
+ "▁Regierung": 24824,
+ "▁proceeded": 24825,
+ "fm": 24826,
+ "лены": 24827,
+ "▁earnest": 24828,
+ "▁Parad": 24829,
+ "requests": 24830,
+ "▁Raum": 24831,
+ "šč": 24832,
+ "▁policies": 24833,
+ "▁Tig": 24834,
+ "▁sitt": 24835,
+ "▁Energy": 24836,
+ "▁purely": 24837,
+ "▁Haut": 24838,
+ "▁Speed": 24839,
+ "bio": 24840,
+ "▁orange": 24841,
+ "▁biggest": 24842,
+ "▁britannique": 24843,
+ "▁Notable": 24844,
+ "vu": 24845,
+ "лении": 24846,
+ "бин": 24847,
+ "▁Nash": 24848,
+ "щение": 24849,
+ "▁ciel": 24850,
+ "adémie": 24851,
+ "▁грудня": 24852,
+ "▁joue": 24853,
+ "▁voted": 24854,
+ "rico": 24855,
+ "▁гор": 24856,
+ "▁команду": 24857,
+ "itivity": 24858,
+ "▁ще": 24859,
+ "▁definite": 24860,
+ "uropa": 24861,
+ "!\");": 24862,
+ "Defaults": 24863,
+ "▁некоторы": 24864,
+ "édération": 24865,
+ "▁silly": 24866,
+ "▁talked": 24867,
+ "reu": 24868,
+ "▁Lomb": 24869,
+ "▁statue": 24870,
+ "кта": 24871,
+ "юр": 24872,
+ "umably": 24873,
+ "▁городе": 24874,
+ "▁Runtime": 24875,
+ "▁diagn": 24876,
+ "▁retro": 24877,
+ "▁Sverige": 24878,
+ "▁inicial": 24879,
+ "ienza": 24880,
+ "▁figlio": 24881,
+ "▁zog": 24882,
+ "▁rey": 24883,
+ "▁Rund": 24884,
+ "тный": 24885,
+ "▁ceased": 24886,
+ "erno": 24887,
+ "▁esa": 24888,
+ "▁trouv": 24889,
+ "▁Gemeinden": 24890,
+ "▁comercial": 24891,
+ "skap": 24892,
+ "enario": 24893,
+ "▁juris": 24894,
+ "TB": 24895,
+ "нала": 24896,
+ "▁vij": 24897,
+ "VO": 24898,
+ "▁clin": 24899,
+ "jör": 24900,
+ "сан": 24901,
+ "owała": 24902,
+ "ribución": 24903,
+ "▁ursprüng": 24904,
+ "▁condem": 24905,
+ "▁Stage": 24906,
+ "▁mixing": 24907,
+ "▁різ": 24908,
+ "▁fans": 24909,
+ "ház": 24910,
+ "social": 24911,
+ "zan": 24912,
+ "▁свой": 24913,
+ "Cookie": 24914,
+ "▁Roland": 24915,
+ "azionale": 24916,
+ "▁Sloven": 24917,
+ "▁Fiche": 24918,
+ "▁Sé": 24919,
+ "hä": 24920,
+ "▁officials": 24921,
+ "▁înt": 24922,
+ "Interceptor": 24923,
+ "Tables": 24924,
+ "▁davon": 24925,
+ "initialize": 24926,
+ "]=\"": 24927,
+ "▁Body": 24928,
+ "▁Upper": 24929,
+ "▁Collect": 24930,
+ "▁Zürich": 24931,
+ "Horizontal": 24932,
+ "Typ": 24933,
+ "▁político": 24934,
+ "▁RewriteCond": 24935,
+ "▁hoped": 24936,
+ "▁anxious": 24937,
+ "Liter": 24938,
+ "jahr": 24939,
+ "▁assemble": 24940,
+ "▁crypt": 24941,
+ "lahoma": 24942,
+ "ASH": 24943,
+ "▁Бри": 24944,
+ "▁Cic": 24945,
+ "twitter": 24946,
+ "hyper": 24947,
+ "▁Tell": 24948,
+ "ільки": 24949,
+ "вобо": 24950,
+ "▁bazie": 24951,
+ "▁contemporary": 24952,
+ "▁Parameter": 24953,
+ "stwa": 24954,
+ "▁bekend": 24955,
+ "cock": 24956,
+ "previous": 24957,
+ "enska": 24958,
+ "▁caller": 24959,
+ "]])": 24960,
+ "▁Raz": 24961,
+ "▁Selon": 24962,
+ "▁proposal": 24963,
+ "▁bý": 24964,
+ "▁Sied": 24965,
+ "▁Arbeits": 24966,
+ "▁pride": 24967,
+ "▁slope": 24968,
+ "idé": 24969,
+ "gradient": 24970,
+ "▁Джерела": 24971,
+ "▁SH": 24972,
+ "▁разрабо": 24973,
+ "iversity": 24974,
+ "сподар": 24975,
+ "\\{\\": 24976,
+ "▁стали": 24977,
+ "▁Einzel": 24978,
+ "▁rgba": 24979,
+ "▁Anim": 24980,
+ "▁alles": 24981,
+ "бар": 24982,
+ "erte": 24983,
+ "▁réalisé": 24984,
+ "Institut": 24985,
+ "▁markup": 24986,
+ "▁vars": 24987,
+ "▁gam": 24988,
+ "▁Василь": 24989,
+ "izza": 24990,
+ "▁Cob": 24991,
+ "▁Metal": 24992,
+ "▁leak": 24993,
+ "▁Lanc": 24994,
+ "Switch": 24995,
+ "Delay": 24996,
+ "atuur": 24997,
+ "▁четы": 24998,
+ "▁англий": 24999,
+ "▁legacy": 25000,
+ "▁desarroll": 25001,
+ "▁topological": 25002,
+ "▁jeweils": 25003,
+ "▁Nederlandse": 25004,
+ "▁atmosphere": 25005,
+ "urban": 25006,
+ "▁slov": 25007,
+ "▁lawyer": 25008,
+ "pecially": 25009,
+ "▁alternate": 25010,
+ "▁paramet": 25011,
+ "▁establishment": 25012,
+ "▁woods": 25013,
+ "PD": 25014,
+ "▁наи": 25015,
+ "▁mang": 25016,
+ "▁wechselte": 25017,
+ "ську": 25018,
+ ".=": 25019,
+ "▁fifteen": 25020,
+ "SUM": 25021,
+ "▁Fro": 25022,
+ "▁LED": 25023,
+ "owano": 25024,
+ "ствие": 25025,
+ "▁Données": 25026,
+ "tol": 25027,
+ "żyn": 25028,
+ "cref": 25029,
+ "ствии": 25030,
+ "horn": 25031,
+ "▁сооб": 25032,
+ "▁оборо": 25033,
+ "▁Complete": 25034,
+ "“)": 25035,
+ "▁kindly": 25036,
+ "▁Chamber": 25037,
+ "ség": 25038,
+ "WH": 25039,
+ "▁ambient": 25040,
+ "кро": 25041,
+ "▁cheval": 25042,
+ "▁написа": 25043,
+ "flu": 25044,
+ "▁Offiz": 25045,
+ "mate": 25046,
+ "natural": 25047,
+ "separ": 25048,
+ "empre": 25049,
+ "ViewHolder": 25050,
+ "fw": 25051,
+ "▁letech": 25052,
+ "▁trailing": 25053,
+ "atri": 25054,
+ "▁Gó": 25055,
+ "▁Bonn": 25056,
+ "▁unlikely": 25057,
+ "RAM": 25058,
+ "enst": 25059,
+ "Stats": 25060,
+ "▁политиче": 25061,
+ ")--(": 25062,
+ "▁trom": 25063,
+ "!...": 25064,
+ "▁Meanwhile": 25065,
+ "стана": 25066,
+ "▁Reino": 25067,
+ "▁Arist": 25068,
+ "$}}%": 25069,
+ "▁solem": 25070,
+ "closure": 25071,
+ "ignation": 25072,
+ "łod": 25073,
+ "▁divor": 25074,
+ "▁международ": 25075,
+ "=\"": 25076,
+ "▁molt": 25077,
+ "▁skills": 25078,
+ "▁Cir": 25079,
+ "▁Después": 25080,
+ "▁lun": 25081,
+ "▁coron": 25082,
+ "▁Comics": 25083,
+ "стори": 25084,
+ "▁Items": 25085,
+ "▁Think": 25086,
+ "игра": 25087,
+ "▁grows": 25088,
+ "portal": 25089,
+ "▁nich": 25090,
+ "▁restrictions": 25091,
+ "▁Lau": 25092,
+ "шення": 25093,
+ "▁Sozial": 25094,
+ "▁кі": 25095,
+ "mana": 25096,
+ "▁lieutenant": 25097,
+ "Attr": 25098,
+ "umeric": 25099,
+ "▁drives": 25100,
+ "asis": 25101,
+ "бай": 25102,
+ "NL": 25103,
+ "Zygote": 25104,
+ "physics": 25105,
+ "▁internally": 25106,
+ "вается": 25107,
+ "Hidden": 25108,
+ "▁Дата": 25109,
+ "▁unsafe": 25110,
+ "▁Roc": 25111,
+ "▁instantiate": 25112,
+ "udni": 25113,
+ "▁Room": 25114,
+ "▁Пред": 25115,
+ "▁maja": 25116,
+ "achment": 25117,
+ "uuid": 25118,
+ "Projects": 25119,
+ "Gre": 25120,
+ "▁взя": 25121,
+ "▁Blood": 25122,
+ "icile": 25123,
+ "▁Nouvelle": 25124,
+ "Does": 25125,
+ "▁nieuwe": 25126,
+ "ále": 25127,
+ "angs": 25128,
+ "weak": 25129,
+ "▁aantal": 25130,
+ "▁Ев": 25131,
+ "▁Dresden": 25132,
+ "▁Lost": 25133,
+ "ката": 25134,
+ "▁involve": 25135,
+ "▁declaring": 25136,
+ "▁Political": 25137,
+ "érez": 25138,
+ "kop": 25139,
+ "notify": 25140,
+ "▁Curt": 25141,
+ "▁schließlich": 25142,
+ "ghan": 25143,
+ "цена": 25144,
+ "▁kwiet": 25145,
+ "ügel": 25146,
+ "▁Sob": 25147,
+ "▁substr": 25148,
+ "▁ellen": 25149,
+ "ionario": 25150,
+ "enson": 25151,
+ "WIN": 25152,
+ "спорт": 25153,
+ "emer": 25154,
+ "nome": 25155,
+ "▁smiled": 25156,
+ "▁Schmidt": 25157,
+ "▁smoke": 25158,
+ "▁Token": 25159,
+ "▁vague": 25160,
+ "▁provision": 25161,
+ "yaml": 25162,
+ "нитель": 25163,
+ "onial": 25164,
+ "époque": 25165,
+ "▁NC": 25166,
+ "▁NFL": 25167,
+ "teck": 25168,
+ "▁allo": 25169,
+ "▁précéd": 25170,
+ "central": 25171,
+ "▁majd": 25172,
+ "▁chrom": 25173,
+ "▁Zum": 25174,
+ "verso": 25175,
+ "▁verschiedenen": 25176,
+ "▁старо": 25177,
+ "▁quelle": 25178,
+ "▁rép": 25179,
+ "ROW": 25180,
+ "▁ihnen": 25181,
+ "▁sensible": 25182,
+ "|$": 25183,
+ "▁schw": 25184,
+ "▁BR": 25185,
+ "▁Options": 25186,
+ "▁tens": 25187,
+ "▁conquist": 25188,
+ "▁ließ": 25189,
+ "ovis": 25190,
+ "▁міста": 25191,
+ "▁ela": 25192,
+ "rifice": 25193,
+ "▁lok": 25194,
+ "▁Queensland": 25195,
+ "Binary": 25196,
+ "▁Rahmen": 25197,
+ "▁abol": 25198,
+ "▁část": 25199,
+ "▁Edinburgh": 25200,
+ "inde": 25201,
+ "▁calculating": 25202,
+ "▁Oregon": 25203,
+ "▁legit": 25204,
+ "▁Nachdem": 25205,
+ "athon": 25206,
+ "Private": 25207,
+ "illaume": 25208,
+ "▁observable": 25209,
+ "leans": 25210,
+ "▁remarked": 25211,
+ "▁halt": 25212,
+ "ницы": 25213,
+ "▁stamp": 25214,
+ "▁Adv": 25215,
+ "Louis": 25216,
+ "imming": 25217,
+ "gruppe": 25218,
+ "▁Policy": 25219,
+ "▁vrij": 25220,
+ "ftrag": 25221,
+ "▁offices": 25222,
+ "▁participated": 25223,
+ "▁escol": 25224,
+ "▁\"": 25225,
+ "▁nombreuses": 25226,
+ "▁divid": 25227,
+ "▁advis": 25228,
+ "лтати": 25229,
+ "▁==>": 25230,
+ "Orientation": 25231,
+ "cid": 25232,
+ "Cart": 25233,
+ "▁murm": 25234,
+ "▁assez": 25235,
+ "▁linking": 25236,
+ "building": 25237,
+ "▁reconna": 25238,
+ "▁shook": 25239,
+ "managed": 25240,
+ "landa": 25241,
+ "▁León": 25242,
+ "▁création": 25243,
+ "дой": 25244,
+ "ocity": 25245,
+ "▁wij": 25246,
+ "▁wieś": 25247,
+ "xtart": 25248,
+ "▁Move": 25249,
+ "lungen": 25250,
+ "ствует": 25251,
+ "orney": 25252,
+ "optional": 25253,
+ "macro": 25254,
+ "Condition": 25255,
+ "▁squares": 25256,
+ "▁mistaken": 25257,
+ "ánt": 25258,
+ "▁Ris": 25259,
+ "▁sentences": 25260,
+ "erea": 25261,
+ "▁mij": 25262,
+ "Und": 25263,
+ "▁nombr": 25264,
+ "zA": 25265,
+ "▁Independent": 25266,
+ "▁preview": 25267,
+ "imas": 25268,
+ "▁males": 25269,
+ "inental": 25270,
+ "Thank": 25271,
+ "▁popol": 25272,
+ "▁pover": 25273,
+ "▁grasp": 25274,
+ "▁imped": 25275,
+ "▁campionato": 25276,
+ "▁Wei": 25277,
+ "▁titled": 25278,
+ "▁Además": 25279,
+ "▁Password": 25280,
+ "▁Pam": 25281,
+ "UILD": 25282,
+ "▁липня": 25283,
+ "werb": 25284,
+ "................": 25285,
+ "▁Río": 25286,
+ "▁teeth": 25287,
+ "bp": 25288,
+ "▁SW": 25289,
+ "ulaire": 25290,
+ "▁seized": 25291,
+ "▁Stef": 25292,
+ "úl": 25293,
+ "▁viz": 25294,
+ "iony": 25295,
+ "▁junt": 25296,
+ "▁která": 25297,
+ "▁września": 25298,
+ "<>": 25299,
+ "▁surg": 25300,
+ "▁tutte": 25301,
+ "▁Hob": 25302,
+ "повід": 25303,
+ "▁wohl": 25304,
+ "▁trag": 25305,
+ "▁Crown": 25306,
+ "▁trova": 25307,
+ "стову": 25308,
+ "▁Vienna": 25309,
+ "esehen": 25310,
+ "▁metropol": 25311,
+ "▁reflected": 25312,
+ "тета": 25313,
+ "▁traduc": 25314,
+ "▁Bast": 25315,
+ "▁erschien": 25316,
+ "woord": 25317,
+ "()\"": 25318,
+ "talet": 25319,
+ "▁roads": 25320,
+ "ведения": 25321,
+ "ührung": 25322,
+ "▁cogn": 25323,
+ "▁Valle": 25324,
+ "▁landing": 25325,
+ "▁Regex": 25326,
+ "▁Iowa": 25327,
+ "dział": 25328,
+ "▁erreichte": 25329,
+ "aum": 25330,
+ "▁founder": 25331,
+ "apolis": 25332,
+ "Compiler": 25333,
+ "▁kop": 25334,
+ "▁marc": 25335,
+ "▁територ": 25336,
+ "))`": 25337,
+ "▁lei": 25338,
+ "geon": 25339,
+ "▁weapons": 25340,
+ "▁horn": 25341,
+ "▁elif": 25342,
+ "▁Capital": 25343,
+ "će": 25344,
+ "▁forall": 25345,
+ "▁эта": 25346,
+ "preview": 25347,
+ "▁DNA": 25348,
+ "▁sid": 25349,
+ "orch": 25350,
+ "▁Ras": 25351,
+ "▁arab": 25352,
+ "Best": 25353,
+ "▁счита": 25354,
+ "▁López": 25355,
+ "ança": 25356,
+ "▁funkc": 25357,
+ "▁tienen": 25358,
+ ";&": 25359,
+ "museum": 25360,
+ "▁Err": 25361,
+ "▁resort": 25362,
+ "Nov": 25363,
+ "▁kal": 25364,
+ "MW": 25365,
+ "шь": 25366,
+ "anchor": 25367,
+ "▁роман": 25368,
+ "leading": 25369,
+ "▁manten": 25370,
+ "▁Silva": 25371,
+ "dade": 25372,
+ "▁designated": 25373,
+ "▁revista": 25374,
+ "Oct": 25375,
+ "percent": 25376,
+ "▁уні": 25377,
+ "identifier": 25378,
+ "mass": 25379,
+ "@@": 25380,
+ "ulsion": 25381,
+ "germeister": 25382,
+ "▁predicted": 25383,
+ "▁сви": 25384,
+ "жной": 25385,
+ "▁Ergeb": 25386,
+ "▁cust": 25387,
+ "▁removes": 25388,
+ "charg": 25389,
+ "пример": 25390,
+ "▁forming": 25391,
+ "asma": 25392,
+ "stdout": 25393,
+ "Fun": 25394,
+ "yme": 25395,
+ "tered": 25396,
+ "ursive": 25397,
+ "ighed": 25398,
+ "▁след": 25399,
+ "verband": 25400,
+ "▁LOG": 25401,
+ "rams": 25402,
+ "éon": 25403,
+ "endra": 25404,
+ "▁Bereich": 25405,
+ "▁temporal": 25406,
+ "▁langue": 25407,
+ "▁Inn": 25408,
+ "▁moreover": 25409,
+ "▁tutorials": 25410,
+ "Middle": 25411,
+ "▁советский": 25412,
+ "▁maintenance": 25413,
+ "asures": 25414,
+ "▁válto": 25415,
+ "BASE": 25416,
+ "▁disappear": 25417,
+ "ския": 25418,
+ "▁conocido": 25419,
+ "▁Нау": 25420,
+ "▁Libert": 25421,
+ "▁Harold": 25422,
+ "▁lifetime": 25423,
+ "▁Tür": 25424,
+ "▁zawod": 25425,
+ "omic": 25426,
+ "▁Retrieved": 25427,
+ "architecture": 25428,
+ "čka": 25429,
+ "iformes": 25430,
+ "development": 25431,
+ "ordnung": 25432,
+ "Inf": 25433,
+ "leben": 25434,
+ "▁Stars": 25435,
+ "signal": 25436,
+ "▁grammar": 25437,
+ "▁corso": 25438,
+ "▁Wagner": 25439,
+ "▁geht": 25440,
+ "▁royale": 25441,
+ "warn": 25442,
+ "umbled": 25443,
+ "▁instit": 25444,
+ "▁Ши": 25445,
+ "hh": 25446,
+ "▁refuge": 25447,
+ "▁favorite": 25448,
+ "ierto": 25449,
+ "▁condado": 25450,
+ "▁Ther": 25451,
+ "▁человека": 25452,
+ "▁Food": 25453,
+ "▁seizo": 25454,
+ "▁Initialize": 25455,
+ "▁connu": 25456,
+ "▁overlap": 25457,
+ "▁Emil": 25458,
+ "▁Martí": 25459,
+ "▁жовтня": 25460,
+ "erva": 25461,
+ "▁boats": 25462,
+ "ações": 25463,
+ "▁derrot": 25464,
+ "▁malloc": 25465,
+ "▁conject": 25466,
+ "jk": 25467,
+ "▁sare": 25468,
+ "лемен": 25469,
+ "▁sums": 25470,
+ "Authorization": 25471,
+ "▁Kun": 25472,
+ "]$,": 25473,
+ "gemeinde": 25474,
+ "odot": 25475,
+ "defin": 25476,
+ "▁emission": 25477,
+ "▁Крас": 25478,
+ "▁appart": 25479,
+ "▁stopping": 25480,
+ "▁Сред": 25481,
+ "▁conjug": 25482,
+ "▁insight": 25483,
+ "▁Broadcast": 25484,
+ "▁PMID": 25485,
+ "▁advantages": 25486,
+ "enes": 25487,
+ "▁residence": 25488,
+ "ljen": 25489,
+ "isseur": 25490,
+ "▁pubblicato": 25491,
+ "▁GitHub": 25492,
+ "▁Peru": 25493,
+ "▁galaxies": 25494,
+ "▁annotations": 25495,
+ "gas": 25496,
+ "▁répond": 25497,
+ "Js": 25498,
+ "▁independently": 25499,
+ "NP": 25500,
+ "▁inqu": 25501,
+ "▁grounds": 25502,
+ "Components": 25503,
+ "▁anten": 25504,
+ "▁вз": 25505,
+ "▁hos": 25506,
+ "▁sint": 25507,
+ "▁hiding": 25508,
+ "▁województ": 25509,
+ "Messages": 25510,
+ "▁показа": 25511,
+ "===": 25512,
+ "▁Abstract": 25513,
+ "▁läng": 25514,
+ "▁Formula": 25515,
+ "dawn": 25516,
+ "▁designs": 25517,
+ "Img": 25518,
+ "▁Portuguese": 25519,
+ "▁incluy": 25520,
+ "avigator": 25521,
+ "▁Brothers": 25522,
+ "▁continent": 25523,
+ "▁evidently": 25524,
+ "race": 25525,
+ "цького": 25526,
+ "▁reck": 25527,
+ "▁серпня": 25528,
+ "▁Grey": 25529,
+ "▁appeal": 25530,
+ "▁unlike": 25531,
+ "▁powershell": 25532,
+ "▁racc": 25533,
+ "fers": 25534,
+ "▁burning": 25535,
+ "fasst": 25536,
+ "installed": 25537,
+ "▁Give": 25538,
+ "▁colonial": 25539,
+ "▁€": 25540,
+ "▁Rö": 25541,
+ "▁christ": 25542,
+ "nehm": 25543,
+ "там": 25544,
+ "▁corpo": 25545,
+ "▁convirti": 25546,
+ "yter": 25547,
+ "Sym": 25548,
+ "▁Greece": 25549,
+ "▁moth": 25550,
+ "▁Johan": 25551,
+ "▁monarch": 25552,
+ "▁Download": 25553,
+ "▁craft": 25554,
+ "už": 25555,
+ "▁Luke": 25556,
+ "▁suffix": 25557,
+ "\\/": 25558,
+ "Have": 25559,
+ "▁карь": 25560,
+ "▁comfortable": 25561,
+ "▁tips": 25562,
+ "▁Після": 25563,
+ "▁броја": 25564,
+ "▁информа": 25565,
+ "MQ": 25566,
+ "бран": 25567,
+ "▁tx": 25568,
+ "▁slaves": 25569,
+ "▁firewall": 25570,
+ "▁Forces": 25571,
+ "atif": 25572,
+ "▁Quellen": 25573,
+ "▁théâtre": 25574,
+ "льных": 25575,
+ "▁расположен": 25576,
+ "▁Details": 25577,
+ "ką": 25578,
+ "▁longitud": 25579,
+ "INST": 25580,
+ "▁naval": 25581,
+ "Fernseh": 25582,
+ "essel": 25583,
+ "Grad": 25584,
+ "▁belang": 25585,
+ "▁aggi": 25586,
+ "ZygoteInit": 25587,
+ "łów": 25588,
+ "▁Sug": 25589,
+ "sil": 25590,
+ "▁exterior": 25591,
+ "щі": 25592,
+ "ORD": 25593,
+ "enser": 25594,
+ "▁rapide": 25595,
+ "▁темпера": 25596,
+ "incie": 25597,
+ "Si": 25598,
+ "avam": 25599,
+ "arded": 25600,
+ "▁Added": 25601,
+ "Endpoint": 25602,
+ "hardt": 25603,
+ "стран": 25604,
+ "▁estilo": 25605,
+ "▁Haz": 25606,
+ "▁musste": 25607,
+ "uo": 25608,
+ "iii": 25609,
+ "▁ří": 25610,
+ "anzen": 25611,
+ "жений": 25612,
+ "aha": 25613,
+ "ARNING": 25614,
+ "▁renov": 25615,
+ "▁divine": 25616,
+ "▁convinced": 25617,
+ "▁humans": 25618,
+ "▁departure": 25619,
+ "▁Mediter": 25620,
+ "qa": 25621,
+ "▁possessed": 25622,
+ "▁церкви": 25623,
+ "giv": 25624,
+ "▁свої": 25625,
+ "▁Ortste": 25626,
+ "Rich": 25627,
+ "puis": 25628,
+ "increment": 25629,
+ "▁Hannover": 25630,
+ "▁ucz": 25631,
+ "Done": 25632,
+ "▁alguns": 25633,
+ "FIX": 25634,
+ "▁Heritage": 25635,
+ "removeClass": 25636,
+ "фер": 25637,
+ "▁abc": 25638,
+ "Dr": 25639,
+ "▁семей": 25640,
+ "{:": 25641,
+ "▁seule": 25642,
+ "zeichnungen": 25643,
+ "addy": 25644,
+ "▁París": 25645,
+ "üsseld": 25646,
+ "▁reception": 25647,
+ "folio": 25648,
+ "tiny": 25649,
+ "▁recensement": 25650,
+ "▁Nur": 25651,
+ "▁kier": 25652,
+ "▁gmina": 25653,
+ "staat": 25654,
+ "ándose": 25655,
+ "ческая": 25656,
+ "▁speaker": 25657,
+ "▁exponential": 25658,
+ "▁Dieu": 25659,
+ "▁приз": 25660,
+ "▁Rafael": 25661,
+ "▁ggplot": 25662,
+ "▁Template": 25663,
+ "oure": 25664,
+ "▁Inner": 25665,
+ "ogne": 25666,
+ "igare": 25667,
+ "▁Arte": 25668,
+ "▁Cov": 25669,
+ "▁aufgrund": 25670,
+ "▁Бы": 25671,
+ "▁ceremony": 25672,
+ "▁Spart": 25673,
+ "jective": 25674,
+ "yi": 25675,
+ "▁inizi": 25676,
+ "▁latin": 25677,
+ "▁Nevertheless": 25678,
+ "▁Done": 25679,
+ "тря": 25680,
+ "▁Arr": 25681,
+ "season": 25682,
+ "▁складу": 25683,
+ "▁podczas": 25684,
+ "▁Beautiful": 25685,
+ "▁Weltkrieg": 25686,
+ "▁зо": 25687,
+ "▁overcome": 25688,
+ "▁Praha": 25689,
+ "▁району": 25690,
+ "▁subscription": 25691,
+ "igent": 25692,
+ "▁пока": 25693,
+ "latex": 25694,
+ "▁beach": 25695,
+ "▁роках": 25696,
+ "geg": 25697,
+ "▁probl": 25698,
+ "arguments": 25699,
+ "▁organizations": 25700,
+ "▁Nan": 25701,
+ "▁stones": 25702,
+ "▁Hunter": 25703,
+ "▁regularly": 25704,
+ "шого": 25705,
+ "▁flexible": 25706,
+ "opts": 25707,
+ "ář": 25708,
+ "witz": 25709,
+ "▁')": 25710,
+ "PASS": 25711,
+ "▁kraj": 25712,
+ "▁fake": 25713,
+ "heits": 25714,
+ "osph": 25715,
+ "parseInt": 25716,
+ "FALSE": 25717,
+ "▁profess": 25718,
+ "people": 25719,
+ "▁precip": 25720,
+ "dirname": 25721,
+ "▁perpet": 25722,
+ "▁Updated": 25723,
+ "rayed": 25724,
+ "▁provoc": 25725,
+ "▁травня": 25726,
+ "▁categorie": 25727,
+ "▁тео": 25728,
+ "сну": 25729,
+ "otr": 25730,
+ "▁Верхов": 25731,
+ "▁compét": 25732,
+ "Cost": 25733,
+ "▁wider": 25734,
+ "▁Obviously": 25735,
+ "писан": 25736,
+ "▁настоя": 25737,
+ "▁seeking": 25738,
+ "()),": 25739,
+ "▁équipe": 25740,
+ "▁commits": 25741,
+ "▁Svens": 25742,
+ "ябре": 25743,
+ "atern": 25744,
+ "▁heter": 25745,
+ "▁Bootstrap": 25746,
+ "éné": 25747,
+ "▁derivatives": 25748,
+ "▁Detroit": 25749,
+ "▁provincial": 25750,
+ "onomie": 25751,
+ "EB": 25752,
+ "▁cuer": 25753,
+ "▁относи": 25754,
+ "▁ней": 25755,
+ ")».": 25756,
+ "▁Ciudad": 25757,
+ "IAL": 25758,
+ "zyst": 25759,
+ ")\")": 25760,
+ "▁Alc": 25761,
+ "blogs": 25762,
+ "▁parmi": 25763,
+ "▁Albums": 25764,
+ "▁Boliv": 25765,
+ "▁clés": 25766,
+ "Products": 25767,
+ "uerdo": 25768,
+ "▁gelang": 25769,
+ "znik": 25770,
+ "hagen": 25771,
+ "anonymous": 25772,
+ "▁svg": 25773,
+ "▁Conseil": 25774,
+ "▁Ari": 25775,
+ "coli": 25776,
+ "▁czy": 25777,
+ "▁CV": 25778,
+ "▁ford": 25779,
+ "▁Außer": 25780,
+ "▁CI": 25781,
+ "▁tempt": 25782,
+ "▁Organisation": 25783,
+ "áš": 25784,
+ "▁cycles": 25785,
+ "▁geslacht": 25786,
+ "▁людей": 25787,
+ "ými": 25788,
+ "▁Spieler": 25789,
+ "efe": 25790,
+ "▁Marvel": 25791,
+ "▁portal": 25792,
+ "▁Серг": 25793,
+ "▁grado": 25794,
+ "▁handlers": 25795,
+ "▁Interface": 25796,
+ "AME": 25797,
+ "▁seriously": 25798,
+ "▁Binding": 25799,
+ "▁Rang": 25800,
+ "▁nada": 25801,
+ "oce": 25802,
+ "▁integra": 25803,
+ "ocracy": 25804,
+ "▁альбо": 25805,
+ "▁stability": 25806,
+ "Uns": 25807,
+ "▁veter": 25808,
+ "------+": 25809,
+ "▁serait": 25810,
+ "▁omitted": 25811,
+ "▁uncertainty": 25812,
+ "onian": 25813,
+ "▁resto": 25814,
+ "▁желез": 25815,
+ "▁одной": 25816,
+ "▁Bevölkerung": 25817,
+ "▁Kraft": 25818,
+ "стр": 25819,
+ "▁Moscow": 25820,
+ "lane": 25821,
+ "arab": 25822,
+ "▁spole": 25823,
+ "▁своего": 25824,
+ "?:": 25825,
+ "START": 25826,
+ "▁интер": 25827,
+ "▁sympt": 25828,
+ "▁Lorenzo": 25829,
+ "▁ejec": 25830,
+ "▁prosper": 25831,
+ "DAT": 25832,
+ "лимпий": 25833,
+ "▁shapes": 25834,
+ "valueOf": 25835,
+ "▁associate": 25836,
+ "▁Medien": 25837,
+ "ENV": 25838,
+ "▁сре": 25839,
+ "▁државе": 25840,
+ "▁theories": 25841,
+ "heb": 25842,
+ "▁Wayne": 25843,
+ "▁StringBuilder": 25844,
+ "iwers": 25845,
+ "▁Maps": 25846,
+ "Phys": 25847,
+ "\\}\\": 25848,
+ "▁Parte": 25849,
+ "▁Hudson": 25850,
+ "лон": 25851,
+ "Lng": 25852,
+ "▁ры": 25853,
+ "стей": 25854,
+ "lau": 25855,
+ "ancer": 25856,
+ "▁Coppa": 25857,
+ "▁війсь": 25858,
+ "▁ucc": 25859,
+ "▁Pattern": 25860,
+ "▁garbage": 25861,
+ "▁González": 25862,
+ "▁Encyclop": 25863,
+ "etten": 25864,
+ "External": 25865,
+ "REF": 25866,
+ ">;": 25867,
+ "lijke": 25868,
+ "▁intersect": 25869,
+ "▁Unless": 25870,
+ "▁deeper": 25871,
+ "▁жі": 25872,
+ "dent": 25873,
+ "lef": 25874,
+ "▁chanson": 25875,
+ "▁diffus": 25876,
+ "▁primi": 25877,
+ "▁Wieder": 25878,
+ "▁aws": 25879,
+ "owana": 25880,
+ "▁sociale": 25881,
+ "ikk": 25882,
+ "льной": 25883,
+ "▁divisions": 25884,
+ "лосо": 25885,
+ "▁Claud": 25886,
+ "▁Ya": 25887,
+ "▁voce": 25888,
+ "▁Branch": 25889,
+ "▁fitted": 25890,
+ "orr": 25891,
+ "ôtel": 25892,
+ "stroke": 25893,
+ "listener": 25894,
+ "iman": 25895,
+ "восто": 25896,
+ "▁Shah": 25897,
+ "Introduction": 25898,
+ "▁newline": 25899,
+ "▁tile": 25900,
+ "']))": 25901,
+ "▁travaux": 25902,
+ "CONFIG": 25903,
+ "▁quadratic": 25904,
+ "onneur": 25905,
+ "▁Giorg": 25906,
+ "▁identific": 25907,
+ "éricaine": 25908,
+ "▁UIView": 25909,
+ "▁Liberal": 25910,
+ "▁Koch": 25911,
+ "▁Berliner": 25912,
+ "▁notifications": 25913,
+ "▁Susan": 25914,
+ "▁cadre": 25915,
+ "▁Kloster": 25916,
+ "▁examine": 25917,
+ "▁един": 25918,
+ "▁UNION": 25919,
+ "▁alten": 25920,
+ "▁finit": 25921,
+ "▁pedig": 25922,
+ "cyk": 25923,
+ "▁mouvement": 25924,
+ "IOS": 25925,
+ "▁британ": 25926,
+ "▁bout": 25927,
+ "▁автор": 25928,
+ "ництво": 25929,
+ "ето": 25930,
+ "lera": 25931,
+ "cls": 25932,
+ "▁Ley": 25933,
+ "amy": 25934,
+ "agens": 25935,
+ "ashed": 25936,
+ "▁okrę": 25937,
+ "гро": 25938,
+ "ellett": 25939,
+ "▁Fellow": 25940,
+ "▁manifold": 25941,
+ "$),": 25942,
+ "lder": 25943,
+ "▁voz": 25944,
+ "▁begg": 25945,
+ "▁baron": 25946,
+ "▁fid": 25947,
+ "▁firing": 25948,
+ "ilda": 25949,
+ "dek": 25950,
+ "AU": 25951,
+ "itare": 25952,
+ "▁Ara": 25953,
+ "▁Exit": 25954,
+ "▁cinemat": 25955,
+ "▁intros": 25956,
+ "▁contacts": 25957,
+ "пени": 25958,
+ "▁möglich": 25959,
+ "▁Singapore": 25960,
+ "ström": 25961,
+ "▁Hern": 25962,
+ "▁sixth": 25963,
+ "▁publications": 25964,
+ "vie": 25965,
+ "▁Hat": 25966,
+ "▁accepting": 25967,
+ "ác": 25968,
+ "stwo": 25969,
+ "▁quietly": 25970,
+ "Photo": 25971,
+ "▁basket": 25972,
+ "▁eigenvalues": 25973,
+ "▁médec": 25974,
+ "▁Olimp": 25975,
+ "▁церков": 25976,
+ "alin": 25977,
+ "consum": 25978,
+ "▁lassen": 25979,
+ "▁анти": 25980,
+ "▁Seq": 25981,
+ "\";\r": 25982,
+ "rare": 25983,
+ "▁$|\\": 25984,
+ "▁nick": 25985,
+ "dflare": 25986,
+ "Vec": 25987,
+ "bindung": 25988,
+ "▁bg": 25989,
+ "changes": 25990,
+ "Days": 25991,
+ "▁Mouse": 25992,
+ "▁waited": 25993,
+ "▁Tomatoes": 25994,
+ "▁fas": 25995,
+ "verte": 25996,
+ "▁succession": 25997,
+ "сор": 25998,
+ "▁sols": 25999,
+ "▁Render": 26000,
+ "▁leadership": 26001,
+ "▁significance": 26002,
+ "▁gauche": 26003,
+ "cano": 26004,
+ "▁Pie": 26005,
+ "ensoort": 26006,
+ "▁cambio": 26007,
+ "▁уз": 26008,
+ "▁endeav": 26009,
+ "Completed": 26010,
+ "▁Архивная": 26011,
+ "jd": 26012,
+ "órico": 26013,
+ "▁churches": 26014,
+ "▁animate": 26015,
+ "SG": 26016,
+ "compute": 26017,
+ "▁uniformly": 26018,
+ "INIT": 26019,
+ "lles": 26020,
+ "HttpRequest": 26021,
+ "Ко": 26022,
+ "Diff": 26023,
+ "▁sah": 26024,
+ "airo": 26025,
+ "maybe": 26026,
+ "UTE": 26027,
+ "▁Dow": 26028,
+ "human": 26029,
+ "▁aurait": 26030,
+ "dark": 26031,
+ "▁repair": 26032,
+ "▁ner": 26033,
+ "▁Dabei": 26034,
+ "▁Botan": 26035,
+ "Original": 26036,
+ "ază": 26037,
+ "▁NAT": 26038,
+ "imper": 26039,
+ "▁Youth": 26040,
+ "thes": 26041,
+ "▁округа": 26042,
+ "▁Flo": 26043,
+ "▁breakfast": 26044,
+ "urls": 26045,
+ "▁übernahm": 26046,
+ "ários": 26047,
+ "▁Orange": 26048,
+ "▁Affairs": 26049,
+ "ske": 26050,
+ "▁notify": 26051,
+ "imoine": 26052,
+ "▁Arena": 26053,
+ "▁liberal": 26054,
+ "▁obec": 26055,
+ "ifa": 26056,
+ "guez": 26057,
+ "iono": 26058,
+ "ператор": 26059,
+ "▁retained": 26060,
+ "failed": 26061,
+ "bine": 26062,
+ "тных": 26063,
+ "▁CGRect": 26064,
+ "camera": 26065,
+ "idenote": 26066,
+ "KB": 26067,
+ "▁lights": 26068,
+ "▁Pictures": 26069,
+ "▁Squadron": 26070,
+ "▁Volk": 26071,
+ "▁burg": 26072,
+ ",]": 26073,
+ "Gi": 26074,
+ "êque": 26075,
+ "makeText": 26076,
+ "▁everybody": 26077,
+ "▁Hyper": 26078,
+ "▁Deux": 26079,
+ "▁glory": 26080,
+ "presentation": 26081,
+ "onica": 26082,
+ "▁frère": 26083,
+ "aget": 26084,
+ "▁hints": 26085,
+ "▁tunnel": 26086,
+ "▁Ej": 26087,
+ "ális": 26088,
+ "▁Viv": 26089,
+ "ственных": 26090,
+ "▁caps": 26091,
+ "PART": 26092,
+ "oci": 26093,
+ "▁prices": 26094,
+ "currency": 26095,
+ "▁achter": 26096,
+ "romagnet": 26097,
+ "gender": 26098,
+ "▁suis": 26099,
+ "versions": 26100,
+ "▁Training": 26101,
+ "inside": 26102,
+ "ege": 26103,
+ "▁totale": 26104,
+ "▁Daar": 26105,
+ "▁grudnia": 26106,
+ "▁Ier": 26107,
+ "▁occasions": 26108,
+ "▁kde": 26109,
+ "▁tensorflow": 26110,
+ "▁ór": 26111,
+ "Methods": 26112,
+ "▁looping": 26113,
+ "▁directeur": 26114,
+ "kę": 26115,
+ "▁isomorphism": 26116,
+ "▁João": 26117,
+ "▁aligned": 26118,
+ "онов": 26119,
+ "urger": 26120,
+ "▁nova": 26121,
+ "morrow": 26122,
+ "altern": 26123,
+ "HD": 26124,
+ "▁marqu": 26125,
+ "ativas": 26126,
+ "ggreg": 26127,
+ "▁ancien": 26128,
+ "nit": 26129,
+ "▁secured": 26130,
+ "mier": 26131,
+ "▁Ole": 26132,
+ "▁инте": 26133,
+ "▁minus": 26134,
+ "▁clearer": 26135,
+ "▁nello": 26136,
+ "▁információk": 26137,
+ "▁propre": 26138,
+ "{.": 26139,
+ "ilog": 26140,
+ "▁Quick": 26141,
+ "▁accus": 26142,
+ "employee": 26143,
+ "▁зу": 26144,
+ "цький": 26145,
+ "фіцій": 26146,
+ "▁публи": 26147,
+ "▁bent": 26148,
+ "▁позво": 26149,
+ "▁Пор": 26150,
+ "ází": 26151,
+ "ánico": 26152,
+ "emptyset": 26153,
+ "▁surtout": 26154,
+ "reno": 26155,
+ "unya": 26156,
+ "▁уез": 26157,
+ "▁Millionen": 26158,
+ "▁listopada": 26159,
+ "▁Maine": 26160,
+ "▁grupos": 26161,
+ "▁Storage": 26162,
+ "▁apple": 26163,
+ "▁Lö": 26164,
+ "oused": 26165,
+ "дро": 26166,
+ "sci": 26167,
+ "▁hibernate": 26168,
+ "dog": 26169,
+ "▁восто": 26170,
+ "▁intensity": 26171,
+ "legend": 26172,
+ "▁Wille": 26173,
+ "▁szerint": 26174,
+ "gesellschaft": 26175,
+ "▁Living": 26176,
+ "allo": 26177,
+ "▁Split": 26178,
+ "dru": 26179,
+ "need": 26180,
+ "▁Джон": 26181,
+ "▁Swiss": 26182,
+ "▁spraw": 26183,
+ "▁beho": 26184,
+ "▁fotograf": 26185,
+ "▁rencontre": 26186,
+ "▁kis": 26187,
+ "▁signing": 26188,
+ "akult": 26189,
+ "▁indexing": 26190,
+ "apor": 26191,
+ "▁conception": 26192,
+ "aggreg": 26193,
+ "▁Савез": 26194,
+ "▁affair": 26195,
+ "ění": 26196,
+ "August": 26197,
+ "▁секре": 26198,
+ "▁mieszkań": 26199,
+ "UIImage": 26200,
+ "▁bishop": 26201,
+ "▁servants": 26202,
+ "▁trail": 26203,
+ "digit": 26204,
+ "▁joins": 26205,
+ "▁Near": 26206,
+ "öffentlich": 26207,
+ ">{": 26208,
+ "▁skład": 26209,
+ "geführt": 26210,
+ "▁Holz": 26211,
+ "▁Militär": 26212,
+ "achi": 26213,
+ "Upper": 26214,
+ "pine": 26215,
+ "utzt": 26216,
+ "▁nuova": 26217,
+ "ibration": 26218,
+ "▁Bien": 26219,
+ "▁первый": 26220,
+ "▁Creating": 26221,
+ "Once": 26222,
+ "▁einmal": 26223,
+ "▁geometric": 26224,
+ "stvo": 26225,
+ "▁kW": 26226,
+ "▁decomposition": 26227,
+ "▁comedy": 26228,
+ "▁activation": 26229,
+ "▁angry": 26230,
+ "illeurs": 26231,
+ "▁instantly": 26232,
+ "▁suggesting": 26233,
+ "▁Clay": 26234,
+ "cot": 26235,
+ "▁Gén": 26236,
+ "($(": 26237,
+ "unwrap": 26238,
+ "▁lifted": 26239,
+ "▁Kit": 26240,
+ "▁linea": 26241,
+ "ок": 26242,
+ "hart": 26243,
+ "->_": 26244,
+ "▁nuit": 26245,
+ "▁Issue": 26246,
+ "лии": 26247,
+ "▁röm": 26248,
+ "Tasks": 26249,
+ "▁Sr": 26250,
+ "▁seis": 26251,
+ "asia": 26252,
+ "}}$.": 26253,
+ ":{": 26254,
+ "controls": 26255,
+ "▁Stim": 26256,
+ "▁Recht": 26257,
+ "ociación": 26258,
+ "▁Natal": 26259,
+ "▁Philippines": 26260,
+ "ulen": 26261,
+ "Fixed": 26262,
+ "▁switched": 26263,
+ "Zip": 26264,
+ "ospel": 26265,
+ "▁начале": 26266,
+ "▁Blan": 26267,
+ "urst": 26268,
+ "▁autour": 26269,
+ "Ca": 26270,
+ "▁latitude": 26271,
+ "▁Frei": 26272,
+ "▁Musée": 26273,
+ "▁Kurz": 26274,
+ "▁região": 26275,
+ "swap": 26276,
+ "▁hate": 26277,
+ "▁modifications": 26278,
+ "▁Ком": 26279,
+ "▁Antoine": 26280,
+ "uga": 26281,
+ "RECT": 26282,
+ "éter": 26283,
+ "GROUP": 26284,
+ "▁sacrific": 26285,
+ "▁Whe": 26286,
+ "▁Stevens": 26287,
+ "ologische": 26288,
+ "Summary": 26289,
+ "obs": 26290,
+ "hnen": 26291,
+ "<%=": 26292,
+ "dienst": 26293,
+ "remark": 26294,
+ "▁veröffentlicht": 26295,
+ "ел": 26296,
+ "▁Mock": 26297,
+ "▁Льв": 26298,
+ "▁três": 26299,
+ "gb": 26300,
+ "▁celebrated": 26301,
+ "▁Eb": 26302,
+ "▁costa": 26303,
+ "▁Geographic": 26304,
+ "▁attachment": 26305,
+ "mannschaft": 26306,
+ "▁dependence": 26307,
+ "��": 26308,
+ "▁attitude": 26309,
+ "etal": 26310,
+ "vic": 26311,
+ "baut": 26312,
+ "▁дов": 26313,
+ "▁interven": 26314,
+ "▁Gü": 26315,
+ "ónica": 26316,
+ "▁Pon": 26317,
+ "▁disponible": 26318,
+ "▁Feb": 26319,
+ "▁worship": 26320,
+ "▁Specifically": 26321,
+ "Hy": 26322,
+ "iju": 26323,
+ "▁cb": 26324,
+ "▁spac": 26325,
+ "leveland": 26326,
+ "▁localidad": 26327,
+ "▁preceding": 26328,
+ "▁Hessen": 26329,
+ "xp": 26330,
+ "▁Wein": 26331,
+ "▁Româ": 26332,
+ "▁giorno": 26333,
+ "▁квітня": 26334,
+ "llaços": 26335,
+ "▁Academia": 26336,
+ "▁kül": 26337,
+ "▁Års": 26338,
+ "▁нај": 26339,
+ "uclide": 26340,
+ "Internet": 26341,
+ "orton": 26342,
+ "▁corn": 26343,
+ "ями": 26344,
+ "▁\"*": 26345,
+ "▁Felix": 26346,
+ "apat": 26347,
+ "▁свои": 26348,
+ "MIT": 26349,
+ "made": 26350,
+ "▁locomot": 26351,
+ "хода": 26352,
+ "FP": 26353,
+ "▁pm": 26354,
+ ".*;": 26355,
+ "▁Hamm": 26356,
+ "`}": 26357,
+ "LayoutInflater": 26358,
+ "==\"": 26359,
+ "▁Eur": 26360,
+ "▁dogs": 26361,
+ "жении": 26362,
+ "▁azon": 26363,
+ "▁emulator": 26364,
+ "▁ricon": 26365,
+ "beeld": 26366,
+ "▁ну": 26367,
+ "▁approximate": 26368,
+ "LM": 26369,
+ "▁Bond": 26370,
+ "▁enh": 26371,
+ "ędz": 26372,
+ "▁solit": 26373,
+ "RelativeLayout": 26374,
+ "eteor": 26375,
+ "amentos": 26376,
+ "▁indirect": 26377,
+ "iből": 26378,
+ "▁gros": 26379,
+ "▁Originals": 26380,
+ "commands": 26381,
+ "Export": 26382,
+ "▁Avec": 26383,
+ "▁solemn": 26384,
+ "▁correction": 26385,
+ "▁проводи": 26386,
+ "▁Mosk": 26387,
+ "▁подо": 26388,
+ "▁gebied": 26389,
+ "▁następ": 26390,
+ "▁Driver": 26391,
+ "▁Ook": 26392,
+ "▁Vec": 26393,
+ "▁lungo": 26394,
+ "ficos": 26395,
+ "▁svol": 26396,
+ "▁kid": 26397,
+ "nja": 26398,
+ "▁Hr": 26399,
+ "▁поддер": 26400,
+ "▁visibility": 26401,
+ "▁Méd": 26402,
+ "▁cpu": 26403,
+ "discussion": 26404,
+ "Asset": 26405,
+ "▁defense": 26406,
+ "▁Anyone": 26407,
+ "▁Justin": 26408,
+ "iszt": 26409,
+ "▁Collins": 26410,
+ "▁Valent": 26411,
+ "▁Pale": 26412,
+ "▁fuel": 26413,
+ "▁nose": 26414,
+ "ríguez": 26415,
+ "▁Schles": 26416,
+ "▁Malays": 26417,
+ "▁commut": 26418,
+ "dro": 26419,
+ "uing": 26420,
+ "▁Rico": 26421,
+ "▁Emma": 26422,
+ "orp": 26423,
+ "▁Kirk": 26424,
+ "▁Quando": 26425,
+ "▁Neue": 26426,
+ "▁demande": 26427,
+ "▁Cover": 26428,
+ "▁rescue": 26429,
+ "▁gewählt": 26430,
+ "▁Calendar": 26431,
+ "▁Madonna": 26432,
+ "WP": 26433,
+ "oshi": 26434,
+ "▁Maven": 26435,
+ "▁belle": 26436,
+ "▁wx": 26437,
+ "▁sugar": 26438,
+ "▁Betrieb": 26439,
+ "▁equilibrium": 26440,
+ "EAR": 26441,
+ "▁texts": 26442,
+ "слов": 26443,
+ "▁czerwca": 26444,
+ "▁Düsseld": 26445,
+ "▁ELSE": 26446,
+ "▁amery": 26447,
+ "▁ani": 26448,
+ "▁obey": 26449,
+ "▁Nell": 26450,
+ "▁inne": 26451,
+ "▁тро": 26452,
+ "FD": 26453,
+ "cco": 26454,
+ "▁Zob": 26455,
+ "alette": 26456,
+ "▁május": 26457,
+ "ected": 26458,
+ "▁Turkey": 26459,
+ "▁Whether": 26460,
+ "qi": 26461,
+ "▁што": 26462,
+ "▁headquarters": 26463,
+ "endi": 26464,
+ "arus": 26465,
+ "opus": 26466,
+ "▁золо": 26467,
+ "▁destru": 26468,
+ "▁Lok": 26469,
+ "▁satisfaction": 26470,
+ "()\r": 26471,
+ "▁Тер": 26472,
+ "Jose": 26473,
+ "▁conquer": 26474,
+ "▁Effect": 26475,
+ "LayoutParams": 26476,
+ "iez": 26477,
+ "▁externs": 26478,
+ "▁gegenüber": 26479,
+ "▁ESP": 26480,
+ "olta": 26481,
+ "processor": 26482,
+ "▁Kult": 26483,
+ "▁Atlanta": 26484,
+ "▁tier": 26485,
+ "Operator": 26486,
+ "▁диа": 26487,
+ "▁пись": 26488,
+ "▁groß": 26489,
+ "▁hearts": 26490,
+ "▁millimeter": 26491,
+ "although": 26492,
+ "alles": 26493,
+ "▁Magic": 26494,
+ "training": 26495,
+ "oline": 26496,
+ "▁органі": 26497,
+ ">\\<^": 26498,
+ "ціаль": 26499,
+ "exports": 26500,
+ "Workbook": 26501,
+ "▁вересня": 26502,
+ "▁teles": 26503,
+ "▁economy": 26504,
+ "▁trap": 26505,
+ "▁refuse": 26506,
+ "▁stranger": 26507,
+ "▁instinct": 26508,
+ "пода": 26509,
+ "olan": 26510,
+ "▁ning": 26511,
+ "inflate": 26512,
+ "itatea": 26513,
+ "acks": 26514,
+ "▁Joy": 26515,
+ "FLAG": 26516,
+ "ailand": 26517,
+ "▁sorti": 26518,
+ "▁впер": 26519,
+ "▁pén": 26520,
+ "Nothing": 26521,
+ "▁száz": 26522,
+ "▁Áng": 26523,
+ "▁AUT": 26524,
+ "Actions": 26525,
+ "Every": 26526,
+ "▁червня": 26527,
+ "▁автомо": 26528,
+ "▁routine": 26529,
+ "▁estruct": 26530,
+ "▁Gang": 26531,
+ "▁holes": 26532,
+ "thesis": 26533,
+ "▁concl": 26534,
+ "▁pé": 26535,
+ "riers": 26536,
+ "ровой": 26537,
+ "adic": 26538,
+ "Speed": 26539,
+ "▁commanded": 26540,
+ "▁Nazionale": 26541,
+ "Managed": 26542,
+ "▁DECLARE": 26543,
+ "▁sedan": 26544,
+ "Strings": 26545,
+ "▁sacred": 26546,
+ "tersuch": 26547,
+ "▁abitanti": 26548,
+ "brit": 26549,
+ "▁NCAA": 26550,
+ "▁СП": 26551,
+ "▁aged": 26552,
+ "▁Chiesa": 26553,
+ "▁revision": 26554,
+ "opro": 26555,
+ "▁overwrite": 26556,
+ "embros": 26557,
+ "▁sortie": 26558,
+ "▁otten": 26559,
+ "xiv": 26560,
+ "▁deli": 26561,
+ "▁Asp": 26562,
+ "▁balls": 26563,
+ "kaf": 26564,
+ "▁brave": 26565,
+ "▁всего": 26566,
+ "egn": 26567,
+ "jpeg": 26568,
+ "▁Osten": 26569,
+ "Constants": 26570,
+ "▁Infantry": 26571,
+ "▁Nev": 26572,
+ "▁яких": 26573,
+ "▁муниципа": 26574,
+ "cija": 26575,
+ "▁poem": 26576,
+ "▁negro": 26577,
+ "хар": 26578,
+ "▁Ask": 26579,
+ "▁avo": 26580,
+ "▁Meyer": 26581,
+ "▁Westen": 26582,
+ "▁oko": 26583,
+ "agin": 26584,
+ "▁Süden": 26585,
+ "entries": 26586,
+ "▁Republik": 26587,
+ "CollectionView": 26588,
+ "-------": 26589,
+ "▁firefox": 26590,
+ "▁alcune": 26591,
+ "▁фото": 26592,
+ "▁отрима": 26593,
+ "~~~~~~~~": 26594,
+ "▁Раз": 26595,
+ "▁Complex": 26596,
+ "▁pia": 26597,
+ "▁publicada": 26598,
+ "wei": 26599,
+ "cedure": 26600,
+ "occupation": 26601,
+ "▁medicine": 26602,
+ "▁drove": 26603,
+ "Problem": 26604,
+ "▁beginner": 26605,
+ "▁thoroughly": 26606,
+ "uria": 26607,
+ "avant": 26608,
+ "ucha": 26609,
+ "▁lever": 26610,
+ "▁teatro": 26611,
+ "AVA": 26612,
+ "squ": 26613,
+ "trat": 26614,
+ "ivatal": 26615,
+ "▁dirty": 26616,
+ "▁seconde": 26617,
+ "▁gravit": 26618,
+ "▁proposition": 26619,
+ "hbar": 26620,
+ "omini": 26621,
+ "▁”": 26622,
+ "▁Camil": 26623,
+ "▁queen": 26624,
+ "modifier": 26625,
+ "Jan": 26626,
+ "▁lyr": 26627,
+ "ComboBox": 26628,
+ "ionic": 26629,
+ "▁holy": 26630,
+ "▁Sebastian": 26631,
+ "|_{": 26632,
+ "▁{@": 26633,
+ "▁можно": 26634,
+ "▁Creative": 26635,
+ "▁interess": 26636,
+ "▁CT": 26637,
+ "ições": 26638,
+ "▁chant": 26639,
+ "▁współ": 26640,
+ "▁Мексика": 26641,
+ "▁ranked": 26642,
+ "▁października": 26643,
+ "▁brut": 26644,
+ "▁farther": 26645,
+ "▁Verb": 26646,
+ "▁Seven": 26647,
+ "lbl": 26648,
+ "▁mentions": 26649,
+ "▁Fight": 26650,
+ "ifen": 26651,
+ "▁bog": 26652,
+ "▁regres": 26653,
+ "▁scoring": 26654,
+ "icane": 26655,
+ "▁Elli": 26656,
+ "▁pierw": 26657,
+ "measure": 26658,
+ "ńskiej": 26659,
+ "#{": 26660,
+ "▁деся": 26661,
+ "▁varmaste": 26662,
+ "▁Unix": 26663,
+ "IZ": 26664,
+ "itié": 26665,
+ "Primary": 26666,
+ "▁Springer": 26667,
+ "üng": 26668,
+ "▁anv": 26669,
+ "▁versione": 26670,
+ "▁shoulders": 26671,
+ "▁брига": 26672,
+ "▁jav": 26673,
+ "ltal": 26674,
+ "▁kallaste": 26675,
+ "▁Mitchell": 26676,
+ "▁wireless": 26677,
+ "▁Ál": 26678,
+ "respons": 26679,
+ "could": 26680,
+ "▁relax": 26681,
+ "Lond": 26682,
+ "ńcz": 26683,
+ "ствовал": 26684,
+ "▁polski": 26685,
+ "enç": 26686,
+ "zar": 26687,
+ "▁dtype": 26688,
+ "owned": 26689,
+ "unknown": 26690,
+ "▁mutable": 26691,
+ "▁siempre": 26692,
+ "▁Montreal": 26693,
+ "▁locate": 26694,
+ "▁traces": 26695,
+ "▁insgesamt": 26696,
+ "▁Nil": 26697,
+ "▁прода": 26698,
+ "▁Warner": 26699,
+ "▁Nau": 26700,
+ "triangle": 26701,
+ "▁concentration": 26702,
+ "▁gentlemen": 26703,
+ "ächt": 26704,
+ "filters": 26705,
+ "incipal": 26706,
+ "VALID": 26707,
+ "▁депута": 26708,
+ "adó": 26709,
+ "▁konst": 26710,
+ "gså": 26711,
+ "agas": 26712,
+ "▁meilleur": 26713,
+ "▁данным": 26714,
+ "єдна": 26715,
+ "encoded": 26716,
+ "<'": 26717,
+ "▁sheets": 26718,
+ "cuador": 26719,
+ "▁використову": 26720,
+ "▁Deput": 26721,
+ "▁manière": 26722,
+ "ąg": 26723,
+ "csol": 26724,
+ ")$-": 26725,
+ "UIView": 26726,
+ "▁millones": 26727,
+ "▁Ehren": 26728,
+ "Sil": 26729,
+ "▁atac": 26730,
+ "▁Cold": 26731,
+ "\"\\": 26732,
+ "▁approached": 26733,
+ "▁Årsmed": 26734,
+ "WM": 26735,
+ "▁Deport": 26736,
+ "mis": 26737,
+ "andbox": 26738,
+ "observ": 26739,
+ "setting": 26740,
+ "ható": 26741,
+ "▁strat": 26742,
+ "▁spre": 26743,
+ "▁personne": 26744,
+ "▁dirige": 26745,
+ "pull": 26746,
+ "dating": 26747,
+ "▁Fact": 26748,
+ "▁manipulate": 26749,
+ "▁MAC": 26750,
+ "▁dej": 26751,
+ "ultimo": 26752,
+ "FX": 26753,
+ "Life": 26754,
+ "▁crack": 26755,
+ "▁mí": 26756,
+ "▁пове": 26757,
+ "▁wore": 26758,
+ "université": 26759,
+ "▁formulas": 26760,
+ "▁Elisabeth": 26761,
+ "plots": 26762,
+ "mile": 26763,
+ "▁menor": 26764,
+ "тил": 26765,
+ "keyword": 26766,
+ "▁Baltimore": 26767,
+ "hrer": 26768,
+ "▁Clement": 26769,
+ "vim": 26770,
+ "rass": 26771,
+ "Take": 26772,
+ "▁című": 26773,
+ "▁Convention": 26774,
+ "atge": 26775,
+ "seed": 26776,
+ "▁Dí": 26777,
+ "▁Spider": 26778,
+ "ahoo": 26779,
+ "▁имеет": 26780,
+ "ührt": 26781,
+ "▁пописа": 26782,
+ "▁Cot": 26783,
+ "▁nobles": 26784,
+ "RESS": 26785,
+ "▁chemin": 26786,
+ "▁główn": 26787,
+ "GG": 26788,
+ "▁Germania": 26789,
+ "▁Alexandre": 26790,
+ "hens": 26791,
+ "swift": 26792,
+ "oop": 26793,
+ "Subview": 26794,
+ "▁requiring": 26795,
+ "ędzy": 26796,
+ "▁fict": 26797,
+ "▁Констан": 26798,
+ "▁déput": 26799,
+ "▁surprising": 26800,
+ "▁deix": 26801,
+ "▁unterschied": 26802,
+ "inson": 26803,
+ "▁Character": 26804,
+ "▁gestion": 26805,
+ "chus": 26806,
+ "comes": 26807,
+ "▁neur": 26808,
+ "▁yeux": 26809,
+ "ollar": 26810,
+ "▁parad": 26811,
+ "▁maggiore": 26812,
+ "TRAN": 26813,
+ "▁votre": 26814,
+ "▁descent": 26815,
+ "▁Icon": 26816,
+ "▁Judge": 26817,
+ "▁occupation": 26818,
+ "eping": 26819,
+ "▁tongue": 26820,
+ "▁Enllaços": 26821,
+ "ruf": 26822,
+ "▁protein": 26823,
+ "▁visitors": 26824,
+ "axy": 26825,
+ "esten": 26826,
+ "blica": 26827,
+ "hw": 26828,
+ "▁spirits": 26829,
+ "▁reduces": 26830,
+ "▁мен": 26831,
+ "▁Lamb": 26832,
+ "▁Mine": 26833,
+ "▁verified": 26834,
+ "▁Baby": 26835,
+ "▁prize": 26836,
+ "вър": 26837,
+ "▁ratings": 26838,
+ "▁fore": 26839,
+ "asha": 26840,
+ "urrence": 26841,
+ "▁intér": 26842,
+ "▁Olímp": 26843,
+ "cra": 26844,
+ "▁computational": 26845,
+ "irche": 26846,
+ ".: ": 26847,
+ "▁illustrated": 26848,
+ "▁Share": 26849,
+ "▁households": 26850,
+ "▁convolution": 26851,
+ "oemd": 26852,
+ "▁zdoby": 26853,
+ "ccc": 26854,
+ "▁quantities": 26855,
+ "Che": 26856,
+ "Should": 26857,
+ "▁genius": 26858,
+ "adj": 26859,
+ "хва": 26860,
+ "Петер": 26861,
+ "EMA": 26862,
+ "▁Rights": 26863,
+ "▁Eli": 26864,
+ "VAR": 26865,
+ "шло": 26866,
+ "▁збір": 26867,
+ "iftung": 26868,
+ "▁contributed": 26869,
+ "zef": 26870,
+ "▁CHAR": 26871,
+ "▁Sib": 26872,
+ "▁Mant": 26873,
+ "▁связи": 26874,
+ "▁javafx": 26875,
+ "▁cependant": 26876,
+ "▁intu": 26877,
+ "▁твор": 26878,
+ "▁Ó": 26879,
+ "guer": 26880,
+ "rado": 26881,
+ "▁Revol": 26882,
+ "▁fémin": 26883,
+ "▁Orleans": 26884,
+ "▁poj": 26885,
+ "▁prez": 26886,
+ "Tex": 26887,
+ "ouwd": 26888,
+ "?(": 26889,
+ "▁LIM": 26890,
+ "istique": 26891,
+ "esar": 26892,
+ "▁heures": 26893,
+ "icki": 26894,
+ "▁dbo": 26895,
+ "skih": 26896,
+ "confirm": 26897,
+ "▁világ": 26898,
+ "▁ciutat": 26899,
+ "▁DR": 26900,
+ "▁Hawai": 26901,
+ "ched": 26902,
+ "▁spher": 26903,
+ "▁Artikel": 26904,
+ "▁Multiple": 26905,
+ "ciu": 26906,
+ "▁мы": 26907,
+ "▁lipca": 26908,
+ "](/": 26909,
+ "Strategy": 26910,
+ "▁Alabama": 26911,
+ "SDK": 26912,
+ "UTC": 26913,
+ "__.": 26914,
+ "Arguments": 26915,
+ "▁setContentView": 26916,
+ "île": 26917,
+ "ByVal": 26918,
+ "▁JVM": 26919,
+ "ющего": 26920,
+ "▁Leonard": 26921,
+ "▁justify": 26922,
+ "цем": 26923,
+ "▁nab": 26924,
+ "CCESS": 26925,
+ "▁hopes": 26926,
+ ")&": 26927,
+ "sero": 26928,
+ "▁зай": 26929,
+ "слід": 26930,
+ "▁Rég": 26931,
+ "▁Sang": 26932,
+ "▁fung": 26933,
+ "baar": 26934,
+ "▁coffee": 26935,
+ "assembly": 26936,
+ "▁Він": 26937,
+ "эй": 26938,
+ "▁comprend": 26939,
+ "filled": 26940,
+ "рд": 26941,
+ "odia": 26942,
+ "▁gens": 26943,
+ "fluss": 26944,
+ "Drawable": 26945,
+ "▁surve": 26946,
+ "Setup": 26947,
+ "▁należ": 26948,
+ "▁conjunto": 26949,
+ "▁Его": 26950,
+ "▁oldal": 26951,
+ "▁verbose": 26952,
+ "▁Electric": 26953,
+ "▁Harrison": 26954,
+ "engen": 26955,
+ "paragraph": 26956,
+ "▁nouvelles": 26957,
+ "▁време": 26958,
+ "▁memor": 26959,
+ "▁mayoría": 26960,
+ "сад": 26961,
+ "▁bataille": 26962,
+ "▁thermal": 26963,
+ "▁Хронологи": 26964,
+ "▁Better": 26965,
+ "bye": 26966,
+ "▁театра": 26967,
+ "roe": 26968,
+ "▁segle": 26969,
+ "rott": 26970,
+ "▁opinions": 26971,
+ ")})": 26972,
+ "ühle": 26973,
+ "▁Gün": 26974,
+ "▁Щ": 26975,
+ "ból": 26976,
+ "▁Larry": 26977,
+ "▁solic": 26978,
+ "▁zwar": 26979,
+ "▁Caroline": 26980,
+ "▁Reichs": 26981,
+ "Extensions": 26982,
+ "migr": 26983,
+ ":@": 26984,
+ "▁enumerate": 26985,
+ "▁eigenen": 26986,
+ "▁explore": 26987,
+ "ému": 26988,
+ "▁gat": 26989,
+ "▁imperial": 26990,
+ "▁Usually": 26991,
+ "▁tud": 26992,
+ "▁укра": 26993,
+ "him": 26994,
+ "▁corners": 26995,
+ "▁SER": 26996,
+ "▁interpreter": 26997,
+ "▁Ice": 26998,
+ "▁amounts": 26999,
+ "▁Pala": 27000,
+ "▁tinha": 27001,
+ "vole": 27002,
+ "▁gle": 27003,
+ "ucci": 27004,
+ "▁siehe": 27005,
+ "Jack": 27006,
+ "▁woll": 27007,
+ "▁elder": 27008,
+ "▁кораб": 27009,
+ "▁engag": 27010,
+ "▁Laurent": 27011,
+ "▁achiev": 27012,
+ "istik": 27013,
+ "arct": 27014,
+ "тного": 27015,
+ "▁gir": 27016,
+ "▁Singh": 27017,
+ "mathop": 27018,
+ "USA": 27019,
+ "▁Projekt": 27020,
+ "▁debe": 27021,
+ "richtung": 27022,
+ "▁Tsch": 27023,
+ "uminate": 27024,
+ "▁szó": 27025,
+ "lyph": 27026,
+ "зидент": 27027,
+ "▁limitations": 27028,
+ "ющей": 27029,
+ "▁bila": 27030,
+ "Push": 27031,
+ "▁offering": 27032,
+ "iennes": 27033,
+ "Fri": 27034,
+ "▁postgresql": 27035,
+ "▁Tommy": 27036,
+ "▁particolare": 27037,
+ "▁století": 27038,
+ "▁arrib": 27039,
+ "▁Eva": 27040,
+ "school": 27041,
+ "▁vendor": 27042,
+ "▁Dallas": 27043,
+ "▁prolong": 27044,
+ "CREATE": 27045,
+ "▁suivante": 27046,
+ "STATUS": 27047,
+ "là": 27048,
+ "kv": 27049,
+ "▁häufig": 27050,
+ "▁Agricult": 27051,
+ "▁huit": 27052,
+ "▁inoltre": 27053,
+ "▁Lloyd": 27054,
+ "▁француз": 27055,
+ "▁выпол": 27056,
+ "▁faithful": 27057,
+ "▁Вар": 27058,
+ "▁verl": 27059,
+ "▁juego": 27060,
+ "▁Резултати": 27061,
+ ",...,": 27062,
+ "▁implicitly": 27063,
+ "irks": 27064,
+ "Calcul": 27065,
+ "▁meses": 27066,
+ "omed": 27067,
+ "▁pak": 27068,
+ "herit": 27069,
+ "▁optical": 27070,
+ "▁Історія": 27071,
+ "veis": 27072,
+ "▁capitale": 27073,
+ "placeholder": 27074,
+ "intrag": 27075,
+ "▁Atlas": 27076,
+ ")];": 27077,
+ "icons": 27078,
+ "▁Bent": 27079,
+ "▁Widget": 27080,
+ "▁volunt": 27081,
+ "avo": 27082,
+ "égr": 27083,
+ "lige": 27084,
+ "▁NAME": 27085,
+ "▁abstra": 27086,
+ "▁fís": 27087,
+ "▁Browser": 27088,
+ "▁bush": 27089,
+ "hall": 27090,
+ "▁clouds": 27091,
+ "▁SUB": 27092,
+ "▁tandis": 27093,
+ "▁Commonwealth": 27094,
+ "тая": 27095,
+ "▁exhaust": 27096,
+ "________________": 27097,
+ "▁Statistics": 27098,
+ "▁Religion": 27099,
+ "▁Muham": 27100,
+ "uals": 27101,
+ "goto": 27102,
+ "Digital": 27103,
+ "Family": 27104,
+ "▁Bun": 27105,
+ "letin": 27106,
+ "Management": 27107,
+ "▁capabilities": 27108,
+ "annten": 27109,
+ "▁себе": 27110,
+ "▁stays": 27111,
+ "kter": 27112,
+ "▁dost": 27113,
+ "▁Тре": 27114,
+ "лович": 27115,
+ "▁dying": 27116,
+ "sections": 27117,
+ "ános": 27118,
+ "▁apparten": 27119,
+ "▁zoals": 27120,
+ "▁dressed": 27121,
+ "▁compress": 27122,
+ "ńska": 27123,
+ "▁sierpnia": 27124,
+ "▁титу": 27125,
+ "dictionary": 27126,
+ "▁rabb": 27127,
+ "▁vérit": 27128,
+ "Во": 27129,
+ "▁singleton": 27130,
+ "▁vital": 27131,
+ "Refresh": 27132,
+ "мель": 27133,
+ "▁Zh": 27134,
+ "▁Afghan": 27135,
+ "inkel": 27136,
+ "aaaa": 27137,
+ "▁participants": 27138,
+ "arin": 27139,
+ "▁Mold": 27140,
+ "▁primeros": 27141,
+ "▁ран": 27142,
+ "▁Амери": 27143,
+ "▁restaurant": 27144,
+ "ével": 27145,
+ "▁SL": 27146,
+ "▁Rey": 27147,
+ "chas": 27148,
+ "▁electrons": 27149,
+ "▁Pitts": 27150,
+ "▁Jules": 27151,
+ "май": 27152,
+ "enant": 27153,
+ "-}": 27154,
+ "лад": 27155,
+ "▁Москва": 27156,
+ "gom": 27157,
+ "▁Fernández": 27158,
+ "fund": 27159,
+ "interno": 27160,
+ "▁Mari": 27161,
+ "▁rius": 27162,
+ "▁Prozent": 27163,
+ "стрі": 27164,
+ "▁внут": 27165,
+ "anterie": 27166,
+ "▁прис": 27167,
+ "▁обы": 27168,
+ "▁Marina": 27169,
+ "▁occurrence": 27170,
+ "rikt": 27171,
+ "▁физи": 27172,
+ "▁schwer": 27173,
+ "▁Гре": 27174,
+ "Reset": 27175,
+ "▁mucho": 27176,
+ "andr": 27177,
+ "▁Wies": 27178,
+ "▁Keith": 27179,
+ "▁Julian": 27180,
+ "▁cole": 27181,
+ "ciendo": 27182,
+ "▁Contempor": 27183,
+ "etry": 27184,
+ "elian": 27185,
+ "гии": 27186,
+ "▁голо": 27187,
+ "▁dél": 27188,
+ "▁decent": 27189,
+ "РСР": 27190,
+ "▁szeptember": 27191,
+ "мест": 27192,
+ "castle": 27193,
+ "▁держав": 27194,
+ "}\")": 27195,
+ "▁ASCII": 27196,
+ "▁Glen": 27197,
+ "itzerland": 27198,
+ "Toggle": 27199,
+ "▁tradicional": 27200,
+ "▁Plat": 27201,
+ "vee": 27202,
+ "abgerufen": 27203,
+ "(|": 27204,
+ "CLI": 27205,
+ "}}$,": 27206,
+ "▁Bowl": 27207,
+ "▁Male": 27208,
+ "▁Bres": 27209,
+ "▁пси": 27210,
+ "▁Challenge": 27211,
+ "zó": 27212,
+ "▁projekt": 27213,
+ "▁negoti": 27214,
+ "above": 27215,
+ "▁перио": 27216,
+ "▁longest": 27217,
+ "authentic": 27218,
+ "▁tradu": 27219,
+ "▁mujeres": 27220,
+ "▁Andre": 27221,
+ "▁hadn": 27222,
+ "▁Schule": 27223,
+ "odel": 27224,
+ "bled": 27225,
+ "▁Trade": 27226,
+ "▁mobil": 27227,
+ "▁algunas": 27228,
+ "▁Lak": 27229,
+ "▁Connecticut": 27230,
+ "▁alco": 27231,
+ "▁Selbst": 27232,
+ "ił": 27233,
+ "▁alb": 27234,
+ "ouverneur": 27235,
+ "▁sr": 27236,
+ "▁vba": 27237,
+ "loped": 27238,
+ "▁Partei": 27239,
+ "uate": 27240,
+ "▁Authentication": 27241,
+ "bei": 27242,
+ "}}.": 27243,
+ "▁konnten": 27244,
+ "▁допо": 27245,
+ "▁hyd": 27246,
+ "Office": 27247,
+ "données": 27248,
+ "▁Cleveland": 27249,
+ "rita": 27250,
+ "íos": 27251,
+ "▁выше": 27252,
+ "▁Roberts": 27253,
+ "▁élections": 27254,
+ "▁'')": 27255,
+ "▁publishing": 27256,
+ "▁bapt": 27257,
+ "<>();": 27258,
+ "missing": 27259,
+ "ровано": 27260,
+ "▁housing": 27261,
+ "▁inference": 27262,
+ "▁Renaissance": 27263,
+ "▁règ": 27264,
+ "▁Steph": 27265,
+ "CES": 27266,
+ "ERE": 27267,
+ "кет": 27268,
+ "OU": 27269,
+ "▁grouping": 27270,
+ "verkehr": 27271,
+ "jih": 27272,
+ "agli": 27273,
+ "▁milk": 27274,
+ "lait": 27275,
+ "Stage": 27276,
+ "▁byly": 27277,
+ "▁wooden": 27278,
+ "keley": 27279,
+ "etra": 27280,
+ "▁Peg": 27281,
+ "▁donné": 27282,
+ "adal": 27283,
+ "sequently": 27284,
+ "▁insbesondere": 27285,
+ "ELD": 27286,
+ "▁Mam": 27287,
+ "▁volte": 27288,
+ "▁prospect": 27289,
+ "нове": 27290,
+ "▁denoted": 27291,
+ "▁overlay": 27292,
+ "Permission": 27293,
+ "een": 27294,
+ "▁EM": 27295,
+ "▁uz": 27296,
+ "Mc": 27297,
+ "olit": 27298,
+ "▁servi": 27299,
+ "▁Heidel": 27300,
+ "▁Wiener": 27301,
+ "▁illegal": 27302,
+ "▁predictions": 27303,
+ "▁goog": 27304,
+ "hon": 27305,
+ "▁Cinema": 27306,
+ "▁револю": 27307,
+ "▁Rule": 27308,
+ "wod": 27309,
+ "▁radiation": 27310,
+ "oł": 27311,
+ "ової": 27312,
+ "▁Perform": 27313,
+ "▁prisoner": 27314,
+ "▁amet": 27315,
+ "▁figura": 27316,
+ "▁Commander": 27317,
+ "▁официаль": 27318,
+ "▁trov": 27319,
+ "▁acted": 27320,
+ "▁workflow": 27321,
+ "▁Республики": 27322,
+ "▁guidance": 27323,
+ "▁мене": 27324,
+ "National": 27325,
+ "▁Kel": 27326,
+ "webpack": 27327,
+ "простра": 27328,
+ "▁llamado": 27329,
+ "alog": 27330,
+ "terra": 27331,
+ "ixen": 27332,
+ "legraph": 27333,
+ "äischen": 27334,
+ "▁teachers": 27335,
+ "uden": 27336,
+ "▁også": 27337,
+ "possible": 27338,
+ "▁Soul": 27339,
+ "▁Geography": 27340,
+ "▁зада": 27341,
+ "hit": 27342,
+ "▁anger": 27343,
+ "▁remporte": 27344,
+ "Pod": 27345,
+ "чке": 27346,
+ "▁aria": 27347,
+ "▁Astronom": 27348,
+ "chapter": 27349,
+ "▁fork": 27350,
+ "▁Cuando": 27351,
+ "mense": 27352,
+ "▁Christians": 27353,
+ "gc": 27354,
+ "▁#(": 27355,
+ "Organ": 27356,
+ "▁steady": 27357,
+ "pse": 27358,
+ "жить": 27359,
+ "ignes": 27360,
+ "aterra": 27361,
+ "movie": 27362,
+ "posta": 27363,
+ "raste": 27364,
+ "▁Ressource": 27365,
+ "▁País": 27366,
+ "▁();": 27367,
+ "▁penalty": 27368,
+ "тт": 27369,
+ "▁trasfer": 27370,
+ "century": 27371,
+ "▁cleaner": 27372,
+ "selenium": 27373,
+ "ortheast": 27374,
+ "xic": 27375,
+ "лії": 27376,
+ "▁inglese": 27377,
+ "▁Tang": 27378,
+ "▁gods": 27379,
+ "frent": 27380,
+ "ciente": 27381,
+ "starts": 27382,
+ "▁musica": 27383,
+ "ymnasium": 27384,
+ "----+": 27385,
+ "▁terrest": 27386,
+ "▁retrieved": 27387,
+ "iare": 27388,
+ "unning": 27389,
+ "▁Marcus": 27390,
+ "▁promote": 27391,
+ "warning": 27392,
+ "тый": 27393,
+ "})$,": 27394,
+ "Transport": 27395,
+ "▁reson": 27396,
+ "▁Clo": 27397,
+ "▁erm": 27398,
+ "▁eliminate": 27399,
+ "heimer": 27400,
+ "▁saves": 27401,
+ "▁prayer": 27402,
+ "Classes": 27403,
+ "Express": 27404,
+ "▁Akademie": 27405,
+ "Else": 27406,
+ "Turn": 27407,
+ "▁ikke": 27408,
+ "▁rei": 27409,
+ "▁dirett": 27410,
+ "▁Rost": 27411,
+ "▁Papa": 27412,
+ "▁jsf": 27413,
+ "лением": 27414,
+ "▁Tul": 27415,
+ "▁Zak": 27416,
+ "▁niemieck": 27417,
+ "Tw": 27418,
+ "amour": 27419,
+ "nested": 27420,
+ "ppets": 27421,
+ "шп": 27422,
+ "dit": 27423,
+ "зен": 27424,
+ "zyma": 27425,
+ "hrte": 27426,
+ "Constraints": 27427,
+ "▁ownership": 27428,
+ "Arm": 27429,
+ "▁consumption": 27430,
+ "▁fet": 27431,
+ "ivari": 27432,
+ "chrom": 27433,
+ "setAttribute": 27434,
+ "▁compose": 27435,
+ "▁backing": 27436,
+ "▁Paz": 27437,
+ "▁scri": 27438,
+ "▁Mechan": 27439,
+ "▁Norway": 27440,
+ "▁Jup": 27441,
+ "▁mér": 27442,
+ "▁administrator": 27443,
+ "▁cabe": 27444,
+ "ivalent": 27445,
+ "▁throne": 27446,
+ "▁dues": 27447,
+ "▁humor": 27448,
+ "▁Adri": 27449,
+ "▁abort": 27450,
+ "ñas": 27451,
+ "▁Київ": 27452,
+ "jící": 27453,
+ "▁zweite": 27454,
+ "▁doub": 27455,
+ "ershell": 27456,
+ "шой": 27457,
+ "▁Fam": 27458,
+ "åk": 27459,
+ "▁tweede": 27460,
+ "▁Rib": 27461,
+ "▁før": 27462,
+ "pción": 27463,
+ "inned": 27464,
+ "rvm": 27465,
+ "▁Appar": 27466,
+ "▁Dj": 27467,
+ "▁Shang": 27468,
+ "Distance": 27469,
+ "▁dawn": 27470,
+ "▁Matth": 27471,
+ "▁errichtet": 27472,
+ "phantom": 27473,
+ "▁releases": 27474,
+ "Recognizer": 27475,
+ "▁Kop": 27476,
+ "▁Pul": 27477,
+ "ué": 27478,
+ "nats": 27479,
+ "relax": 27480,
+ "▁fled": 27481,
+ "▁experiences": 27482,
+ "щее": 27483,
+ "меня": 27484,
+ "▁персона": 27485,
+ "▁Identity": 27486,
+ "rets": 27487,
+ "kunft": 27488,
+ "larg": 27489,
+ "ListItem": 27490,
+ "vd": 27491,
+ "runner": 27492,
+ "lant": 27493,
+ "ipart": 27494,
+ "bay": 27495,
+ "iei": 27496,
+ "▁lengths": 27497,
+ "▁cattle": 27498,
+ "jets": 27499,
+ "▁sehen": 27500,
+ "Jul": 27501,
+ "fatt": 27502,
+ "▁surrender": 27503,
+ "▁Trump": 27504,
+ "дного": 27505,
+ "▁Fourier": 27506,
+ "ieben": 27507,
+ "_\"": 27508,
+ "▁früher": 27509,
+ "▁garant": 27510,
+ "uclidean": 27511,
+ "ägt": 27512,
+ "▁півден": 27513,
+ "Pages": 27514,
+ "▁rivers": 27515,
+ "▁donner": 27516,
+ "svn": 27517,
+ "▁ł": 27518,
+ "ově": 27519,
+ "▁Leist": 27520,
+ "arial": 27521,
+ "ových": 27522,
+ "▁filling": 27523,
+ "▁musicale": 27524,
+ "maxim": 27525,
+ "▁dashed": 27526,
+ "▁Нов": 27527,
+ "Drawer": 27528,
+ "▁Medicine": 27529,
+ "▁dokument": 27530,
+ "owel": 27531,
+ "vić": 27532,
+ "hely": 27533,
+ "▁elet": 27534,
+ "Seconds": 27535,
+ "▁Gonz": 27536,
+ "rou": 27537,
+ "▁finales": 27538,
+ "rn": 27539,
+ "fø": 27540,
+ "▁indexed": 27541,
+ "className": 27542,
+ "▁ober": 27543,
+ "▁duas": 27544,
+ "▁optimized": 27545,
+ "▁kdy": 27546,
+ "versary": 27547,
+ "energy": 27548,
+ "▁центра": 27549,
+ "▁currency": 27550,
+ "zyż": 27551,
+ "Like": 27552,
+ "▁Ги": 27553,
+ "sono": 27554,
+ "▁palab": 27555,
+ "▁pushing": 27556,
+ "ublik": 27557,
+ "▁Hass": 27558,
+ "}\\,\\": 27559,
+ "unker": 27560,
+ "▁Factory": 27561,
+ "▁Resources": 27562,
+ "datei": 27563,
+ "▁Tools": 27564,
+ "▁stehen": 27565,
+ "sime": 27566,
+ "▁Ху": 27567,
+ "▁hoch": 27568,
+ "▁Rodríguez": 27569,
+ "zeitig": 27570,
+ "▁Terry": 27571,
+ "▁обу": 27572,
+ "Usage": 27573,
+ "urchase": 27574,
+ "lö": 27575,
+ "▁Introduction": 27576,
+ "▁participation": 27577,
+ "ος": 27578,
+ "ogli": 27579,
+ "apy": 27580,
+ "▁hopefully": 27581,
+ "ponder": 27582,
+ "▁Yang": 27583,
+ "▁promises": 27584,
+ "▁верну": 27585,
+ "▁остров": 27586,
+ "^{+": 27587,
+ "▁mostra": 27588,
+ "▁CURLOPT": 27589,
+ "HH": 27590,
+ "▁stdout": 27591,
+ "▁brilliant": 27592,
+ "▁manuscript": 27593,
+ "▁decir": 27594,
+ "▁Bolog": 27595,
+ "▁места": 27596,
+ "▁invisible": 27597,
+ "▁Chal": 27598,
+ "▁analyze": 27599,
+ "prilis": 27600,
+ "attend": 27601,
+ "Mvc": 27602,
+ "than": 27603,
+ "cko": 27604,
+ "▁Quebec": 27605,
+ "▁planta": 27606,
+ "▁télévis": 27607,
+ "▁uninstall": 27608,
+ "ències": 27609,
+ "▁gminie": 27610,
+ "▁Pref": 27611,
+ "▁lequel": 27612,
+ "Invocation": 27613,
+ "▁Í": 27614,
+ "▁transformed": 27615,
+ "MAN": 27616,
+ "gebaut": 27617,
+ "▁сохра": 27618,
+ "▁второй": 27619,
+ "▁Lith": 27620,
+ "wendung": 27621,
+ "▁Politik": 27622,
+ "▁Senator": 27623,
+ "▁LL": 27624,
+ "ждение": 27625,
+ "ште": 27626,
+ "▁Cés": 27627,
+ "▁bande": 27628,
+ "▁historian": 27629,
+ "▁passwords": 27630,
+ "malloc": 27631,
+ "▁semif": 27632,
+ "▁rå": 27633,
+ "unicí": 27634,
+ "Available": 27635,
+ "Optional": 27636,
+ "▁Twe": 27637,
+ "▁kró": 27638,
+ "▁subsets": 27639,
+ "▁DAT": 27640,
+ "▁doubles": 27641,
+ "никами": 27642,
+ "▁зв": 27643,
+ "gegeben": 27644,
+ "▁Попис": 27645,
+ "▁július": 27646,
+ "▁meteor": 27647,
+ "Mount": 27648,
+ "ivent": 27649,
+ "▁Nathan": 27650,
+ "▁Schutz": 27651,
+ "egov": 27652,
+ "▁död": 27653,
+ "▁meat": 27654,
+ "▁пункт": 27655,
+ "▁minds": 27656,
+ "elivery": 27657,
+ "▁TLS": 27658,
+ "рем": 27659,
+ "ckså": 27660,
+ "▁stayed": 27661,
+ "▁Bin": 27662,
+ "▁Pia": 27663,
+ "▁имен": 27664,
+ "▁Bobby": 27665,
+ "▁produit": 27666,
+ "empio": 27667,
+ "▁reducing": 27668,
+ "▁Yu": 27669,
+ "▁Geschäft": 27670,
+ "▁perché": 27671,
+ "▁cors": 27672,
+ "▁icons": 27673,
+ "AppData": 27674,
+ "▁Hog": 27675,
+ "▁рів": 27676,
+ "▁Sans": 27677,
+ "▁siège": 27678,
+ "stellen": 27679,
+ "Brush": 27680,
+ "OFF": 27681,
+ "▁visitor": 27682,
+ "▁bath": 27683,
+ "▁fee": 27684,
+ "atisf": 27685,
+ "▁curv": 27686,
+ "▁folgender": 27687,
+ "▁conscience": 27688,
+ "▁Seattle": 27689,
+ "▁medieval": 27690,
+ "distribution": 27691,
+ "▁DM": 27692,
+ "▁мя": 27693,
+ "▁RUN": 27694,
+ "akov": 27695,
+ "ceil": 27696,
+ "▁letting": 27697,
+ "▁dov": 27698,
+ "▁оби": 27699,
+ "kiej": 27700,
+ "▁direkt": 27701,
+ "▁tm": 27702,
+ "colors": 27703,
+ "▁altro": 27704,
+ "▁tijdens": 27705,
+ "]{'": 27706,
+ "▁Bom": 27707,
+ "▁kunst": 27708,
+ "▁shelter": 27709,
+ "▁rav": 27710,
+ "predict": 27711,
+ "▁comenzó": 27712,
+ "▁świat": 27713,
+ "▁Durant": 27714,
+ "▁schemes": 27715,
+ "▁mesh": 27716,
+ "▁indicator": 27717,
+ "▁Emer": 27718,
+ "▁guilty": 27719,
+ "нец": 27720,
+ "▁consequences": 27721,
+ "cludes": 27722,
+ "▁Lower": 27723,
+ "▁поме": 27724,
+ "▁pace": 27725,
+ "даго": 27726,
+ "▁ambos": 27727,
+ "lb": 27728,
+ "▁educated": 27729,
+ "urale": 27730,
+ "anh": 27731,
+ "esség": 27732,
+ "▁associations": 27733,
+ "town": 27734,
+ "▁trif": 27735,
+ "samples": 27736,
+ "bos": 27737,
+ "▁Spect": 27738,
+ "▁Це": 27739,
+ "altung": 27740,
+ "▁Lob": 27741,
+ "▁curiosity": 27742,
+ "▁Weiter": 27743,
+ "estone": 27744,
+ "▁demol": 27745,
+ "▁apolog": 27746,
+ "▁Dynamic": 27747,
+ "Inner": 27748,
+ "esper": 27749,
+ "ecz": 27750,
+ "uellement": 27751,
+ "▁Hamiltonian": 27752,
+ "Atlas": 27753,
+ "▁argue": 27754,
+ "Foreign": 27755,
+ "collapse": 27756,
+ "▁términ": 27757,
+ "▁electronic": 27758,
+ "▁NR": 27759,
+ "▁corr": 27760,
+ "temps": 27761,
+ "IndexPath": 27762,
+ "яз": 27763,
+ "▁talál": 27764,
+ "today": 27765,
+ "wave": 27766,
+ "▁sib": 27767,
+ "▁спи": 27768,
+ "▁convey": 27769,
+ "▁Géographie": 27770,
+ "▁Нью": 27771,
+ "▁Hibernate": 27772,
+ "▁tin": 27773,
+ "dic": 27774,
+ "ppings": 27775,
+ "sweise": 27776,
+ "▁rolling": 27777,
+ "▁selects": 27778,
+ ")\\)": 27779,
+ "▁poeta": 27780,
+ "▁степени": 27781,
+ "▁Abr": 27782,
+ "▁höch": 27783,
+ "▁stern": 27784,
+ "▁fjär": 27785,
+ "▁installer": 27786,
+ "decl": 27787,
+ "▁miser": 27788,
+ "groupby": 27789,
+ "substr": 27790,
+ "▁phenomen": 27791,
+ "▁Wing": 27792,
+ "▁fills": 27793,
+ "▁único": 27794,
+ "Running": 27795,
+ "Come": 27796,
+ "irable": 27797,
+ "simeq": 27798,
+ "▁remp": 27799,
+ "kele": 27800,
+ "liers": 27801,
+ "▁kwietnia": 27802,
+ "▁interrupted": 27803,
+ "▁Jet": 27804,
+ "=\\{": 27805,
+ "ído": 27806,
+ "▁Taiwan": 27807,
+ "▁возра": 27808,
+ "▁alternatives": 27809,
+ "▁Tir": 27810,
+ "▁Reserve": 27811,
+ "▁Кур": 27812,
+ "▁Nobel": 27813,
+ "▁работал": 27814,
+ "▁axes": 27815,
+ "▁Cependant": 27816,
+ "ká": 27817,
+ "▁erneut": 27818,
+ "▁Demo": 27819,
+ "communic": 27820,
+ "constructor": 27821,
+ "▁Monday": 27822,
+ "Nil": 27823,
+ "HashMap": 27824,
+ "payment": 27825,
+ "▁fixing": 27826,
+ "▁ADD": 27827,
+ "review": 27828,
+ "▁possibil": 27829,
+ "▁grote": 27830,
+ "▁grouped": 27831,
+ "▁Lima": 27832,
+ "▁Augen": 27833,
+ "▁också": 27834,
+ "onas": 27835,
+ "▁debate": 27836,
+ "▁Ingl": 27837,
+ "Da": 27838,
+ "SOUR": 27839,
+ "ettbe": 27840,
+ "▁Battalion": 27841,
+ "▁Float": 27842,
+ "▁cone": 27843,
+ "readsheet": 27844,
+ "court": 27845,
+ "ligen": 27846,
+ "▁Beginn": 27847,
+ "▁LIMIT": 27848,
+ "▁enjoyed": 27849,
+ "▁Jakob": 27850,
+ "▁telt": 27851,
+ "backend": 27852,
+ "▁Gemeinsame": 27853,
+ "lint": 27854,
+ "alling": 27855,
+ "▁bör": 27856,
+ "grand": 27857,
+ "▁diverses": 27858,
+ "▁związ": 27859,
+ "▁Kompon": 27860,
+ "▁innerhalb": 27861,
+ "▁desarrollo": 27862,
+ "▁Masters": 27863,
+ "ioso": 27864,
+ "]`.": 27865,
+ "▁francesa": 27866,
+ "Aff": 27867,
+ "inek": 27868,
+ "▁dessin": 27869,
+ "`.`": 27870,
+ "▁ranks": 27871,
+ "берг": 27872,
+ "▁skal": 27873,
+ "▁Sultan": 27874,
+ "АН": 27875,
+ "▁способ": 27876,
+ "▁contradict": 27877,
+ "▁recom": 27878,
+ "▁Oklahoma": 27879,
+ "▁Vladimir": 27880,
+ "▁meters": 27881,
+ "transport": 27882,
+ "▁consulté": 27883,
+ "▁ATP": 27884,
+ "ebb": 27885,
+ "▁volunte": 27886,
+ "▁outline": 27887,
+ "LIC": 27888,
+ "▁euro": 27889,
+ "CharField": 27890,
+ "medium": 27891,
+ "▁Belgique": 27892,
+ "Proc": 27893,
+ "routes": 27894,
+ "▁contribu": 27895,
+ "!}": 27896,
+ "ším": 27897,
+ "▁Less": 27898,
+ "▁Kost": 27899,
+ "▁eredetiből": 27900,
+ "reven": 27901,
+ "verify": 27902,
+ "▁Salt": 27903,
+ "▁shooting": 27904,
+ "▁dispose": 27905,
+ "ují": 27906,
+ "▁tierra": 27907,
+ "▁poison": 27908,
+ "sak": 27909,
+ "perimental": 27910,
+ "▁Né": 27911,
+ "▁Kid": 27912,
+ "agyar": 27913,
+ "▁archiválva": 27914,
+ "bereich": 27915,
+ "íz": 27916,
+ "▁Ritter": 27917,
+ "▁Хронологија": 27918,
+ "zeum": 27919,
+ "дах": 27920,
+ "▁gründ": 27921,
+ "▁programmer": 27922,
+ "▁conseil": 27923,
+ "▁encrypt": 27924,
+ "integration": 27925,
+ "Culture": 27926,
+ "▁Circle": 27927,
+ "Observable": 27928,
+ "▁genomsnitt": 27929,
+ "▁Selection": 27930,
+ "▁irregular": 27931,
+ "Autres": 27932,
+ "Percent": 27933,
+ "fault": 27934,
+ "▁virtue": 27935,
+ "ąpi": 27936,
+ "▁sess": 27937,
+ "▁Также": 27938,
+ "Timestamp": 27939,
+ "▁littérature": 27940,
+ "▁moż": 27941,
+ "▁borrow": 27942,
+ "▁conced": 27943,
+ "чник": 27944,
+ "▁Lund": 27945,
+ "IONS": 27946,
+ "ynie": 27947,
+ "▁Shin": 27948,
+ "▁osob": 27949,
+ "bě": 27950,
+ "▁intuit": 27951,
+ "▁нап": 27952,
+ "▁proph": 27953,
+ "▁pitt": 27954,
+ "▁IBM": 27955,
+ "▁Till": 27956,
+ "▁hina": 27957,
+ "ittest": 27958,
+ "generator": 27959,
+ "▁Nin": 27960,
+ "▁Kot": 27961,
+ "▁passer": 27962,
+ "▁disposition": 27963,
+ "uning": 27964,
+ "▁fame": 27965,
+ "▁tenia": 27966,
+ "ancement": 27967,
+ "▁Suisse": 27968,
+ "`-": 27969,
+ "▁hombres": 27970,
+ "▁infinity": 27971,
+ "▁оконча": 27972,
+ "▁cosm": 27973,
+ "▁Dennis": 27974,
+ "baz": 27975,
+ "haupt": 27976,
+ "▁mighty": 27977,
+ "▁prede": 27978,
+ "usable": 27979,
+ "▁wszyst": 27980,
+ "▁lb": 27981,
+ "ABASE": 27982,
+ "jna": 27983,
+ "нев": 27984,
+ "▁ases": 27985,
+ "▁finalmente": 27986,
+ "йм": 27987,
+ "pection": 27988,
+ "▁Studien": 27989,
+ "▁Norwegian": 27990,
+ "cego": 27991,
+ "INDEX": 27992,
+ "orten": 27993,
+ "▁friendship": 27994,
+ "metro": 27995,
+ "thick": 27996,
+ "▁Zel": 27997,
+ "LOW": 27998,
+ "▁thereby": 27999,
+ "unted": 28000,
+ "▁surfaces": 28001,
+ "ющим": 28002,
+ "%).": 28003,
+ "▁Wonder": 28004,
+ "▁redundant": 28005,
+ "▁Gros": 28006,
+ "▁websites": 28007,
+ "▁vio": 28008,
+ "▁ocas": 28009,
+ "vés": 28010,
+ "▁Gam": 28011,
+ "dw": 28012,
+ "Indicator": 28013,
+ "▁Kob": 28014,
+ "▁jack": 28015,
+ "Hint": 28016,
+ "▁Apol": 28017,
+ "▁другие": 28018,
+ "▁NUM": 28019,
+ "▁ofic": 28020,
+ "ystycz": 28021,
+ "▁wereld": 28022,
+ "мости": 28023,
+ "LEFT": 28024,
+ "▁Types": 28025,
+ "seen": 28026,
+ "uncia": 28027,
+ "▁narod": 28028,
+ "▁этот": 28029,
+ "Sidenote": 28030,
+ "ueil": 28031,
+ "▁отме": 28032,
+ "▁courts": 28033,
+ "fir": 28034,
+ "urz": 28035,
+ "ченко": 28036,
+ "Credentials": 28037,
+ "▁imagination": 28038,
+ "itats": 28039,
+ "buff": 28040,
+ "flash": 28041,
+ "▁badly": 28042,
+ "▁worn": 28043,
+ "▁округу": 28044,
+ "catalog": 28045,
+ "lime": 28046,
+ "▁Gill": 28047,
+ "▁Sent": 28048,
+ "iella": 28049,
+ "▁Craig": 28050,
+ "▁Sele": 28051,
+ "▁Independ": 28052,
+ "▁provincie": 28053,
+ "ossen": 28054,
+ "▁запад": 28055,
+ "▁infant": 28056,
+ "▁prevents": 28057,
+ "▁provinces": 28058,
+ "afé": 28059,
+ "beg": 28060,
+ "▁colours": 28061,
+ "BF": 28062,
+ "ën": 28063,
+ "▁Между": 28064,
+ "în": 28065,
+ "Observer": 28066,
+ "forsch": 28067,
+ "ígen": 28068,
+ "umption": 28069,
+ "▁Illustr": 28070,
+ "рист": 28071,
+ "▁полови": 28072,
+ "▁`&": 28073,
+ "▁ore": 28074,
+ "▁supplies": 28075,
+ "▁parenthes": 28076,
+ "Foundation": 28077,
+ "▁vou": 28078,
+ "▁Tout": 28079,
+ "Donald": 28080,
+ "▁RET": 28081,
+ "weig": 28082,
+ "▁producción": 28083,
+ "mix": 28084,
+ "▁utwor": 28085,
+ "▁föl": 28086,
+ "▁então": 28087,
+ "▁Sister": 28088,
+ "Tags": 28089,
+ "▁Савезне": 28090,
+ "▁privileges": 28091,
+ "▁nazw": 28092,
+ "▁Rav": 28093,
+ "▁repro": 28094,
+ "▁Mason": 28095,
+ "▁Platform": 28096,
+ "▁пробле": 28097,
+ "▁Pérez": 28098,
+ "▁blanc": 28099,
+ "Behavior": 28100,
+ "фици": 28101,
+ "eken": 28102,
+ "▁meets": 28103,
+ "(.*": 28104,
+ "▁få": 28105,
+ "epen": 28106,
+ "maker": 28107,
+ "▁loyal": 28108,
+ "members": 28109,
+ "meisterschaft": 28110,
+ "goal": 28111,
+ "шлен": 28112,
+ "▁северо": 28113,
+ "iende": 28114,
+ "дні": 28115,
+ "Proof": 28116,
+ "▁explic": 28117,
+ "▁electro": 28118,
+ "iels": 28119,
+ "reload": 28120,
+ "▁eleven": 28121,
+ "▁partidos": 28122,
+ "îne": 28123,
+ "▁Regin": 28124,
+ "▁éx": 28125,
+ "▁Bulg": 28126,
+ "▁networking": 28127,
+ "▁separator": 28128,
+ "UserName": 28129,
+ "▁edificio": 28130,
+ "▁Mie": 28131,
+ "▁idle": 28132,
+ "yed": 28133,
+ "▁passengers": 28134,
+ "+)": 28135,
+ "meno": 28136,
+ "eggi": 28137,
+ "▁nicely": 28138,
+ "endencia": 28139,
+ "чий": 28140,
+ "étés": 28141,
+ "ightarrow": 28142,
+ "▁orthogonal": 28143,
+ "▁Half": 28144,
+ "▁fewer": 28145,
+ "▁propi": 28146,
+ "▁primit": 28147,
+ "icale": 28148,
+ "▁flower": 28149,
+ "merk": 28150,
+ "▁Отече": 28151,
+ "▁persistent": 28152,
+ "▁Ville": 28153,
+ "Men": 28154,
+ "gaben": 28155,
+ "▁Isaac": 28156,
+ "ativity": 28157,
+ "▁północ": 28158,
+ "▁rok": 28159,
+ "cards": 28160,
+ "дения": 28161,
+ "▁юго": 28162,
+ "▁extraordinary": 28163,
+ "▁kyr": 28164,
+ "(\",": 28165,
+ "))]": 28166,
+ "▁unix": 28167,
+ "кол": 28168,
+ "▁sink": 28169,
+ "apsed": 28170,
+ "▁kommen": 28171,
+ "▁forcing": 28172,
+ "About": 28173,
+ "▁Halle": 28174,
+ "▁Majesty": 28175,
+ "▁Switch": 28176,
+ "▁abroad": 28177,
+ "▁acceleration": 28178,
+ "urbed": 28179,
+ "▁остан": 28180,
+ "Ready": 28181,
+ "▁півні": 28182,
+ "Bra": 28183,
+ "▁цього": 28184,
+ "▁plut": 28185,
+ "▁Train": 28186,
+ "▁április": 28187,
+ "▁puesto": 28188,
+ "▁toss": 28189,
+ "▁irrelevant": 28190,
+ "▁dip": 28191,
+ "segment": 28192,
+ "opacity": 28193,
+ "▁lorsque": 28194,
+ "▁verschill": 28195,
+ "ена": 28196,
+ "▁Doc": 28197,
+ "%%%%%%%%": 28198,
+ "▁borders": 28199,
+ "gebras": 28200,
+ "▁ries": 28201,
+ "▁Olympedia": 28202,
+ "▁Generation": 28203,
+ "metros": 28204,
+ "▁horizon": 28205,
+ "▁adaptation": 28206,
+ "▁Zahl": 28207,
+ "▁nahe": 28208,
+ "▁Bug": 28209,
+ "Picture": 28210,
+ "љи": 28211,
+ "RGB": 28212,
+ "Owner": 28213,
+ "adin": 28214,
+ "▁Catalunya": 28215,
+ "ných": 28216,
+ "▁cualquier": 28217,
+ "▁Institution": 28218,
+ "insen": 28219,
+ "▁Brasile": 28220,
+ "▁fitting": 28221,
+ "Deleg": 28222,
+ "ictwo": 28223,
+ "▁Exper": 28224,
+ "ochastic": 28225,
+ "▁dus": 28226,
+ "▁пора": 28227,
+ "▁substring": 28228,
+ "ссии": 28229,
+ "oin": 28230,
+ "▁школа": 28231,
+ "▁cx": 28232,
+ "▁%)": 28233,
+ "▁Buddh": 28234,
+ "▁pending": 28235,
+ "▁Entry": 28236,
+ "▁Berl": 28237,
+ "▁cler": 28238,
+ "▁Soc": 28239,
+ "▁rounded": 28240,
+ "▁mv": 28241,
+ "ített": 28242,
+ "▁Diplom": 28243,
+ "▁französischen": 28244,
+ "▁Gan": 28245,
+ "▁Investig": 28246,
+ "▁indexPath": 28247,
+ "▁molti": 28248,
+ "persistence": 28249,
+ "▁XIXe": 28250,
+ "▁Electron": 28251,
+ "bü": 28252,
+ "gele": 28253,
+ "▁Maler": 28254,
+ "▁proyecto": 28255,
+ "▁Bath": 28256,
+ "ellers": 28257,
+ "▁GP": 28258,
+ "oning": 28259,
+ "cloudflare": 28260,
+ "▁při": 28261,
+ "▁ded": 28262,
+ "▁Odkazy": 28263,
+ "▁Msg": 28264,
+ "▁Being": 28265,
+ "▁Depuis": 28266,
+ "▁Primary": 28267,
+ "▁Appro": 28268,
+ "▁formally": 28269,
+ "ступил": 28270,
+ "▁fuera": 28271,
+ "▁Root": 28272,
+ "▁autonom": 28273,
+ "▁secretary": 28274,
+ "▁osób": 28275,
+ "▁cuales": 28276,
+ "▁Depending": 28277,
+ "▁asi": 28278,
+ "vera": 28279,
+ "▁russe": 28280,
+ "▁proves": 28281,
+ "▁presiden": 28282,
+ "RU": 28283,
+ "▁Watson": 28284,
+ "▁webpack": 28285,
+ "elligence": 28286,
+ "кам": 28287,
+ "▁Officer": 28288,
+ "▁delivery": 28289,
+ "ждён": 28290,
+ "▁импе": 28291,
+ "▁wil": 28292,
+ "▁vesc": 28293,
+ "usztus": 28294,
+ "▁Geoff": 28295,
+ "()}": 28296,
+ "▁Fore": 28297,
+ "▁wenig": 28298,
+ "▁Airl": 28299,
+ "▁Efter": 28300,
+ "▁Break": 28301,
+ "▁Städ": 28302,
+ "ismiss": 28303,
+ "íp": 28304,
+ "▁avoided": 28305,
+ "▁assertion": 28306,
+ "DN": 28307,
+ "▁teat": 28308,
+ "ína": 28309,
+ "▁mechanical": 28310,
+ "isu": 28311,
+ "@{": 28312,
+ "▁nou": 28313,
+ "Italie": 28314,
+ "sourceforge": 28315,
+ "▁svo": 28316,
+ "▁király": 28317,
+ "▁References": 28318,
+ "six": 28319,
+ "▁Archives": 28320,
+ "▁finishing": 28321,
+ "acje": 28322,
+ "état": 28323,
+ "iffs": 28324,
+ "▁stead": 28325,
+ "▁feas": 28326,
+ "aware": 28327,
+ "lande": 28328,
+ "Inject": 28329,
+ "▁Agent": 28330,
+ "▁Normdatei": 28331,
+ "▁amen": 28332,
+ "▁Architecture": 28333,
+ "aze": 28334,
+ "ște": 28335,
+ "▁usar": 28336,
+ "▁cores": 28337,
+ "лін": 28338,
+ "▁Castro": 28339,
+ "▁væ": 28340,
+ ">\",": 28341,
+ "omena": 28342,
+ "▁gesam": 28343,
+ "▁Martín": 28344,
+ "egung": 28345,
+ "▁společ": 28346,
+ "▁amplitude": 28347,
+ "▁importing": 28348,
+ "▁listview": 28349,
+ "THE": 28350,
+ "ziale": 28351,
+ "cedes": 28352,
+ "▁particulier": 28353,
+ "▁Расподела": 28354,
+ "▁край": 28355,
+ "▁divent": 28356,
+ "▁ké": 28357,
+ "quit": 28358,
+ "тором": 28359,
+ "CheckBox": 28360,
+ "▁Zobacz": 28361,
+ "phe": 28362,
+ "pta": 28363,
+ "▁sjö": 28364,
+ "▁розташ": 28365,
+ "▁tedesco": 28366,
+ "▁stal": 28367,
+ "▁Beruf": 28368,
+ "овая": 28369,
+ "▁svě": 28370,
+ "▁flush": 28371,
+ "▁відбу": 28372,
+ "▁radial": 28373,
+ "▁différentes": 28374,
+ "анта": 28375,
+ "▁Perry": 28376,
+ "Coll": 28377,
+ "liqu": 28378,
+ "▁Optional": 28379,
+ "▁Санкт": 28380,
+ "▁LINQ": 28381,
+ "▁Franc": 28382,
+ "cije": 28383,
+ "▁Guillaume": 28384,
+ "know": 28385,
+ "▁Units": 28386,
+ "olk": 28387,
+ "▁Système": 28388,
+ "▁Sales": 28389,
+ "▁ehemaligen": 28390,
+ "мирова": 28391,
+ "xhtml": 28392,
+ "setopt": 28393,
+ "▁mellan": 28394,
+ "▁zie": 28395,
+ "▁giant": 28396,
+ "Board": 28397,
+ "▁Caval": 28398,
+ "▁defence": 28399,
+ "----------": 28400,
+ "pshire": 28401,
+ "mart": 28402,
+ "▁Dioc": 28403,
+ "iskt": 28404,
+ "▁inse": 28405,
+ "▁épisode": 28406,
+ "чик": 28407,
+ "bars": 28408,
+ "Sito": 28409,
+ "▁integrity": 28410,
+ "auff": 28411,
+ "▁vär": 28412,
+ "Azure": 28413,
+ "▁starb": 28414,
+ "▁контра": 28415,
+ "▁Мексичка": 28416,
+ "▁запа": 28417,
+ "▁Mountains": 28418,
+ "}}=": 28419,
+ "▁pulling": 28420,
+ "▁satellite": 28421,
+ "▁atoms": 28422,
+ "▁profesor": 28423,
+ "▁repeatedly": 28424,
+ "▁invasion": 28425,
+ "programming": 28426,
+ "├──": 28427,
+ "▁Lip": 28428,
+ "вшие": 28429,
+ "▁keen": 28430,
+ "▁critics": 28431,
+ "▁Nicola": 28432,
+ "▁Cand": 28433,
+ "▁distint": 28434,
+ "▁heading": 28435,
+ "pragma": 28436,
+ "{|": 28437,
+ "ymen": 28438,
+ "▁terrain": 28439,
+ "iedenis": 28440,
+ "▁besonders": 28441,
+ "▁nominated": 28442,
+ "BOOL": 28443,
+ "▁Kay": 28444,
+ "cian": 28445,
+ "stelle": 28446,
+ "▁dispute": 28447,
+ "▁щ": 28448,
+ "DataSet": 28449,
+ "nothing": 28450,
+ "Autom": 28451,
+ "hören": 28452,
+ "▁shed": 28453,
+ "▁paused": 28454,
+ "san": 28455,
+ "▁nunca": 28456,
+ "!(\"": 28457,
+ "▁położ": 28458,
+ "Secret": 28459,
+ "▁Domain": 28460,
+ "▁возмож": 28461,
+ "XV": 28462,
+ "lv": 28463,
+ "ikh": 28464,
+ "▁Sony": 28465,
+ "mq": 28466,
+ "otrop": 28467,
+ "▁Logger": 28468,
+ "▁threat": 28469,
+ "asted": 28470,
+ "зько": 28471,
+ "▁freely": 28472,
+ "▁improvements": 28473,
+ "istema": 28474,
+ "▁illustrate": 28475,
+ "▁tact": 28476,
+ "▁figur": 28477,
+ "ués": 28478,
+ "riminal": 28479,
+ "odon": 28480,
+ "intendo": 28481,
+ "▁influenced": 28482,
+ "FFER": 28483,
+ "▁Ghost": 28484,
+ "▁совер": 28485,
+ "nad": 28486,
+ "ioned": 28487,
+ "▁Events": 28488,
+ "▁wrapping": 28489,
+ "---------+": 28490,
+ "fif": 28491,
+ "▁(**": 28492,
+ "={{": 28493,
+ "маль": 28494,
+ "▁losses": 28495,
+ "▁Galerie": 28496,
+ "tel": 28497,
+ "▁лютого": 28498,
+ "▁Kru": 28499,
+ "▁Polen": 28500,
+ "нім": 28501,
+ "near": 28502,
+ "▁shame": 28503,
+ "▁moyenne": 28504,
+ "▁CP": 28505,
+ "preis": 28506,
+ "▁passenger": 28507,
+ "lek": 28508,
+ "ionales": 28509,
+ "kafka": 28510,
+ "▁participe": 28511,
+ "▁membership": 28512,
+ "[_": 28513,
+ "lando": 28514,
+ "stelling": 28515,
+ "Sem": 28516,
+ "gon": 28517,
+ "▁Correct": 28518,
+ "▁valle": 28519,
+ "▁readily": 28520,
+ "▁Dokument": 28521,
+ "honneur": 28522,
+ "▁testim": 28523,
+ "ulative": 28524,
+ "doFilter": 28525,
+ "▁dominant": 28526,
+ "ammer": 28527,
+ "▁која": 28528,
+ "▁Monsieur": 28529,
+ "zeg": 28530,
+ "▁війни": 28531,
+ "▁Fo": 28532,
+ "▁Amy": 28533,
+ "▁¡": 28534,
+ "▁február": 28535,
+ "▁downloading": 28536,
+ "▁leng": 28537,
+ "\\}$,": 28538,
+ "▁neat": 28539,
+ "▁Cache": 28540,
+ "ICATION": 28541,
+ "▁deve": 28542,
+ "▁sorrow": 28543,
+ "slow": 28544,
+ "▁hinaus": 28545,
+ "▁reconoc": 28546,
+ "▁Linked": 28547,
+ "▁Shaw": 28548,
+ "market": 28549,
+ "▁Dic": 28550,
+ "▁Ski": 28551,
+ "▁delimiter": 28552,
+ "▁MainActivity": 28553,
+ "▁Musical": 28554,
+ "▁Reyn": 28555,
+ "ScrollView": 28556,
+ "▁conventional": 28557,
+ "ença": 28558,
+ "▁refactor": 28559,
+ "'-": 28560,
+ "▁Hed": 28561,
+ "sprech": 28562,
+ "▁athlet": 28563,
+ "▁especies": 28564,
+ "▁Schön": 28565,
+ "▁kleinen": 28566,
+ "шко": 28567,
+ "▁Йо": 28568,
+ "▁Happy": 28569,
+ "multirow": 28570,
+ "▁augusti": 28571,
+ "▁Gand": 28572,
+ "▁appointment": 28573,
+ "▁Mediabestanden": 28574,
+ "Three": 28575,
+ "▁Kenneth": 28576,
+ "NEW": 28577,
+ "▁Notification": 28578,
+ "▁Marx": 28579,
+ "▁insc": 28580,
+ "Mor": 28581,
+ "вый": 28582,
+ "väst": 28583,
+ "vidia": 28584,
+ "▁demonstrated": 28585,
+ "fonts": 28586,
+ "▁kamen": 28587,
+ "▁Ster": 28588,
+ "▁mieszkańców": 28589,
+ "▁Koh": 28590,
+ "~$\\": 28591,
+ "»).": 28592,
+ "rene": 28593,
+ "insic": 28594,
+ "ická": 28595,
+ "xygen": 28596,
+ "▁mn": 28597,
+ "▁sched": 28598,
+ "ASC": 28599,
+ "Ig": 28600,
+ "▁Constant": 28601,
+ "▁opportun": 28602,
+ "▁MyClass": 28603,
+ "sef": 28604,
+ "oped": 28605,
+ "▁injured": 28606,
+ "VIS": 28607,
+ "▁Pero": 28608,
+ "▁Until": 28609,
+ "▁flesh": 28610,
+ "orphism": 28611,
+ "▁Portal": 28612,
+ "▁gminy": 28613,
+ "▁власти": 28614,
+ "▁Nä": 28615,
+ "ктиче": 28616,
+ "▁hrab": 28617,
+ "▁Cub": 28618,
+ "avoir": 28619,
+ "▁Lars": 28620,
+ "▁Бело": 28621,
+ "▁seizoen": 28622,
+ "▁Genomsnitt": 28623,
+ "▁Lil": 28624,
+ "▁Pool": 28625,
+ "▁Dios": 28626,
+ "TX": 28627,
+ "aes": 28628,
+ "autore": 28629,
+ "Alpha": 28630,
+ "states": 28631,
+ "Lab": 28632,
+ "nederbörd": 28633,
+ "erton": 28634,
+ "▁brid": 28635,
+ "▁richt": 28636,
+ "▁Ela": 28637,
+ "▁сла": 28638,
+ "▁weapon": 28639,
+ "▁combatt": 28640,
+ "agar": 28641,
+ "▁regnig": 28642,
+ "▁utilisé": 28643,
+ "▁servir": 28644,
+ "▁brick": 28645,
+ "▁gateway": 28646,
+ "▁torraste": 28647,
+ "▁procedures": 28648,
+ "▁årsnederbörd": 28649,
+ "▁Genomsnittlig": 28650,
+ "чёт": 28651,
+ "▁områ": 28652,
+ "▁regnigaste": 28653,
+ "▁честь": 28654,
+ "▁amid": 28655,
+ "▁grateful": 28656,
+ "▁DIS": 28657,
+ "DAY": 28658,
+ "▁ору": 28659,
+ "▁rivière": 28660,
+ "heure": 28661,
+ "▁Richmond": 28662,
+ "▁Compar": 28663,
+ "▁Нор": 28664,
+ "DOC": 28665,
+ "esia": 28666,
+ "calc": 28667,
+ "▁IU": 28668,
+ "▁vorg": 28669,
+ "▁habían": 28670,
+ "çoit": 28671,
+ "▁arist": 28672,
+ "▁кли": 28673,
+ "▁Sue": 28674,
+ "▁Touch": 28675,
+ "▁Writing": 28676,
+ "ifiable": 28677,
+ "▁wc": 28678,
+ "▁withdraw": 28679,
+ "зар": 28680,
+ "▁presently": 28681,
+ "▁FK": 28682,
+ "▁prakt": 28683,
+ "▁colored": 28684,
+ "usb": 28685,
+ "▁Perú": 28686,
+ "▁plata": 28687,
+ "▁wishes": 28688,
+ "▁кам": 28689,
+ "azar": 28690,
+ "ável": 28691,
+ "▁lamp": 28692,
+ "bishop": 28693,
+ "▁inclusion": 28694,
+ "jq": 28695,
+ "arth": 28696,
+ "▁Flag": 28697,
+ "▁нор": 28698,
+ "ædia": 28699,
+ "UNCTION": 28700,
+ "▁Bahnhof": 28701,
+ "▁approaching": 28702,
+ "▁Gött": 28703,
+ "▁cube": 28704,
+ "▁argued": 28705,
+ "▁Things": 28706,
+ "Gui": 28707,
+ "дови": 28708,
+ "▁recre": 28709,
+ "▁réseau": 28710,
+ "▁significa": 28711,
+ "Git": 28712,
+ "gebracht": 28713,
+ "▁liga": 28714,
+ "▁assured": 28715,
+ "alus": 28716,
+ "рит": 28717,
+ "▁энциклопеди": 28718,
+ "▁%).": 28719,
+ "▁Première": 28720,
+ "▁declarations": 28721,
+ "▁tricky": 28722,
+ "▁profiles": 28723,
+ "▁Fon": 28724,
+ "▁Jas": 28725,
+ "âr": 28726,
+ "babel": 28727,
+ "▁Friday": 28728,
+ "▁június": 28729,
+ "▁cols": 28730,
+ "▁EXISTS": 28731,
+ "▁Italiana": 28732,
+ "▁authorization": 28733,
+ "▁sulle": 28734,
+ "▁Emb": 28735,
+ "▁Variable": 28736,
+ "trees": 28737,
+ "▁Fly": 28738,
+ "riors": 28739,
+ "▁damals": 28740,
+ "▁findet": 28741,
+ "▁Sept": 28742,
+ "▁mundial": 28743,
+ "▁removal": 28744,
+ "▁longitude": 28745,
+ "clic": 28746,
+ "▁fade": 28747,
+ "▁gradle": 28748,
+ "▁zák": 28749,
+ "▁timing": 28750,
+ "trightarrow": 28751,
+ "atia": 28752,
+ "-.": 28753,
+ "uche": 28754,
+ "▁serialize": 28755,
+ "▁Hmm": 28756,
+ "▁Representatives": 28757,
+ "bah": 28758,
+ "rend": 28759,
+ "assador": 28760,
+ "▁shield": 28761,
+ "ucion": 28762,
+ "▁américaine": 28763,
+ "zę": 28764,
+ "villa": 28765,
+ "▁hombre": 28766,
+ "áss": 28767,
+ "▁SF": 28768,
+ "▁repeating": 28769,
+ "▁criter": 28770,
+ "▁Struct": 28771,
+ "???": 28772,
+ "▁cheap": 28773,
+ "▁rings": 28774,
+ "abhäng": 28775,
+ "▁corte": 28776,
+ "▁administ": 28777,
+ "ixon": 28778,
+ "gypt": 28779,
+ "▁puntos": 28780,
+ "▁mezi": 28781,
+ "▁pochod": 28782,
+ "isko": 28783,
+ "nię": 28784,
+ "▁осу": 28785,
+ "▁ár": 28786,
+ "тельной": 28787,
+ "▁Metropolitan": 28788,
+ "jin": 28789,
+ "zess": 28790,
+ "▁віці": 28791,
+ "▁conflicts": 28792,
+ "ijst": 28793,
+ "▁Market": 28794,
+ "стров": 28795,
+ "▁\",\"": 28796,
+ "▁Scroll": 28797,
+ "gun": 28798,
+ "тара": 28799,
+ "▁amateur": 28800,
+ "▁róż": 28801,
+ "poss": 28802,
+ "▁generalized": 28803,
+ "▁Harm": 28804,
+ "cita": 28805,
+ "▁Switzerland": 28806,
+ "icola": 28807,
+ "▁muit": 28808,
+ "located": 28809,
+ "▁có": 28810,
+ "▁arose": 28811,
+ "▁communauté": 28812,
+ "})^": 28813,
+ "visibility": 28814,
+ "ída": 28815,
+ "▁FB": 28816,
+ "▁Freund": 28817,
+ "gat": 28818,
+ "\":{\"": 28819,
+ "intellij": 28820,
+ "ifie": 28821,
+ "hmen": 28822,
+ "▁édition": 28823,
+ "▁које": 28824,
+ "▁інших": 28825,
+ "oming": 28826,
+ "▁arquitect": 28827,
+ "▁Presidente": 28828,
+ "▁Під": 28829,
+ "▁cabin": 28830,
+ "Theorem": 28831,
+ "▁Gay": 28832,
+ "ifice": 28833,
+ "▁hect": 28834,
+ "lą": 28835,
+ "irmingham": 28836,
+ "▁semantic": 28837,
+ "▁Louisiana": 28838,
+ "▁sacrifice": 28839,
+ "▁Christoph": 28840,
+ "▁Executive": 28841,
+ "_+": 28842,
+ "ják": 28843,
+ "▁seria": 28844,
+ "▁Overflow": 28845,
+ "▁Lucy": 28846,
+ "▁melhor": 28847,
+ "▁voices": 28848,
+ "cza": 28849,
+ "▁капи": 28850,
+ "▁университета": 28851,
+ "INCT": 28852,
+ "▁coloc": 28853,
+ "▁prue": 28854,
+ "▁geomet": 28855,
+ "▁diretto": 28856,
+ "reso": 28857,
+ "▁Akt": 28858,
+ "▁unh": 28859,
+ "▁сери": 28860,
+ "▁Alert": 28861,
+ "Wel": 28862,
+ "audi": 28863,
+ "äler": 28864,
+ "▁guests": 28865,
+ "▁иде": 28866,
+ "Studio": 28867,
+ "▁кате": 28868,
+ "▁exponent": 28869,
+ "rze": 28870,
+ "pmod": 28871,
+ "rolle": 28872,
+ "▁Limited": 28873,
+ "Allemagne": 28874,
+ "▁pity": 28875,
+ "▁lä": 28876,
+ "▁runner": 28877,
+ "kende": 28878,
+ "EQ": 28879,
+ "▁MM": 28880,
+ "szág": 28881,
+ "поді": 28882,
+ "▁regret": 28883,
+ "▁publié": 28884,
+ "▁departamento": 28885,
+ "▁accused": 28886,
+ "hp": 28887,
+ "▁Pfl": 28888,
+ "▁Sint": 28889,
+ "▁ekonom": 28890,
+ "ractor": 28891,
+ "▁Пів": 28892,
+ "▁awful": 28893,
+ "ować": 28894,
+ "]->": 28895,
+ "▁Fine": 28896,
+ "Са": 28897,
+ "tis": 28898,
+ "éta": 28899,
+ "▁Роди": 28900,
+ "▁Düsseldorf": 28901,
+ "LOB": 28902,
+ "osas": 28903,
+ "werke": 28904,
+ "▁lance": 28905,
+ "▁листопада": 28906,
+ "▁incomplete": 28907,
+ "▁Picture": 28908,
+ "('\\": 28909,
+ "esters": 28910,
+ "▁belonged": 28911,
+ "▁Sank": 28912,
+ "ammed": 28913,
+ "▁repositories": 28914,
+ "▁addr": 28915,
+ "Collect": 28916,
+ "Hot": 28917,
+ "▁tyl": 28918,
+ "▁instanceof": 28919,
+ "▁bonus": 28920,
+ "ový": 28921,
+ "▁моря": 28922,
+ "▁interactive": 28923,
+ "▁Mys": 28924,
+ "▁Edmund": 28925,
+ "fileName": 28926,
+ "emor": 28927,
+ "▁Три": 28928,
+ "▁Rosen": 28929,
+ "▁Prima": 28930,
+ "▁voting": 28931,
+ "▁XP": 28932,
+ "▁Zero": 28933,
+ "▁Led": 28934,
+ "amsung": 28935,
+ "▁enables": 28936,
+ "▁redirects": 28937,
+ "AST": 28938,
+ "Paint": 28939,
+ "acker": 28940,
+ "lecht": 28941,
+ "▁chairman": 28942,
+ "▁Aven": 28943,
+ "▁Sach": 28944,
+ "(\"<": 28945,
+ "кер": 28946,
+ "▁mistakes": 28947,
+ "▁Weit": 28948,
+ "▁prowad": 28949,
+ "▁didnt": 28950,
+ "énario": 28951,
+ "unless": 28952,
+ "▁backwards": 28953,
+ "boa": 28954,
+ "duino": 28955,
+ "```": 28956,
+ "stor": 28957,
+ "Completion": 28958,
+ "puesta": 28959,
+ "▁dinast": 28960,
+ "últ": 28961,
+ "▁SY": 28962,
+ "ifolia": 28963,
+ "œuvres": 28964,
+ "▁racing": 28965,
+ "▁cabinet": 28966,
+ "▁cutting": 28967,
+ "▁thumb": 28968,
+ "▁Кара": 28969,
+ "highlight": 28970,
+ "куп": 28971,
+ "▁sd": 28972,
+ "▁національ": 28973,
+ "▁campagne": 28974,
+ "▁registers": 28975,
+ "▁educational": 28976,
+ "▁pesar": 28977,
+ "üge": 28978,
+ "▁oro": 28979,
+ "burgo": 28980,
+ "▁Athletics": 28981,
+ "▁MTV": 28982,
+ "getMessage": 28983,
+ "▁Hyp": 28984,
+ "▁victim": 28985,
+ "))\\": 28986,
+ "▁drums": 28987,
+ "hostname": 28988,
+ "tał": 28989,
+ "making": 28990,
+ "▁powiat": 28991,
+ "őd": 28992,
+ "threads": 28993,
+ "▁absolv": 28994,
+ "▁люди": 28995,
+ "▁stepped": 28996,
+ "exist": 28997,
+ "▁NK": 28998,
+ "▁ves": 28999,
+ "istiche": 29000,
+ "%'": 29001,
+ "ativos": 29002,
+ "▁такой": 29003,
+ "▁MongoDB": 29004,
+ "▁Ung": 29005,
+ "▁Рус": 29006,
+ "▁elim": 29007,
+ "▁Fif": 29008,
+ "icación": 29009,
+ "▁Tennis": 29010,
+ "▁Jefferson": 29011,
+ "ján": 29012,
+ "fog": 29013,
+ "anha": 29014,
+ "zor": 29015,
+ "▁університе": 29016,
+ "ahu": 29017,
+ "iada": 29018,
+ "Sdk": 29019,
+ "Setting": 29020,
+ "▁Kill": 29021,
+ "▁Wend": 29022,
+ "▁bald": 29023,
+ "▁Kub": 29024,
+ "▁visto": 29025,
+ "▁jeunes": 29026,
+ "collections": 29027,
+ "ací": 29028,
+ "вропей": 29029,
+ "▁arise": 29030,
+ "оні": 29031,
+ "MAIN": 29032,
+ "доступ": 29033,
+ "▁berg": 29034,
+ "▁criticism": 29035,
+ "▁Torre": 29036,
+ "▁descript": 29037,
+ "ières": 29038,
+ "▁estudio": 29039,
+ "▁ili": 29040,
+ "▁militare": 29041,
+ "▁Clara": 29042,
+ "▁Ellen": 29043,
+ "limited": 29044,
+ "лм": 29045,
+ "▁Españ": 29046,
+ "▁infinitely": 29047,
+ "America": 29048,
+ "ouc": 29049,
+ "glass": 29050,
+ "▁rud": 29051,
+ "▁zat": 29052,
+ "▁rin": 29053,
+ "▁Bibliografía": 29054,
+ "▁merchant": 29055,
+ "tensorflow": 29056,
+ "▁dér": 29057,
+ "▁ActiveRecord": 29058,
+ "IES": 29059,
+ "▁linker": 29060,
+ "▁estudios": 29061,
+ "cdnjs": 29062,
+ "▁Государ": 29063,
+ "ánchez": 29064,
+ "appe": 29065,
+ "club": 29066,
+ "▁další": 29067,
+ "▁Algorithm": 29068,
+ "dfs": 29069,
+ "▁Bac": 29070,
+ "▁кафе": 29071,
+ "▁&=\\": 29072,
+ "▁ат": 29073,
+ "▁Глав": 29074,
+ "▁Mou": 29075,
+ "Machine": 29076,
+ "(...)": 29077,
+ "▁compart": 29078,
+ "▁augusztus": 29079,
+ "avan": 29080,
+ "▁rolled": 29081,
+ "▁еди": 29082,
+ "Scan": 29083,
+ "▁регі": 29084,
+ "▁świata": 29085,
+ "▁mines": 29086,
+ "},{": 29087,
+ "▁Tier": 29088,
+ "Cannot": 29089,
+ "мін": 29090,
+ "▁NEW": 29091,
+ "▁Вол": 29092,
+ "▁Manh": 29093,
+ "▁Gregory": 29094,
+ "▁principe": 29095,
+ "ISO": 29096,
+ "prog": 29097,
+ "▁Fail": 29098,
+ "▁aa": 29099,
+ "▁fecha": 29100,
+ "▁WCF": 29101,
+ "▁magistr": 29102,
+ "▁Zach": 29103,
+ "▁unicode": 29104,
+ "▁converter": 29105,
+ "▁dispers": 29106,
+ "ksam": 29107,
+ "▁Uncle": 29108,
+ "PropertyChanged": 29109,
+ "▁lider": 29110,
+ "▁opts": 29111,
+ "▁там": 29112,
+ "locked": 29113,
+ "zak": 29114,
+ "▁counted": 29115,
+ "▁persone": 29116,
+ "▁hurried": 29117,
+ "ätter": 29118,
+ "▁outras": 29119,
+ "▁genu": 29120,
+ "BD": 29121,
+ "veg": 29122,
+ "due": 29123,
+ "▁Pract": 29124,
+ "▁posible": 29125,
+ "▁contribute": 29126,
+ "UMN": 29127,
+ "▁Bürger": 29128,
+ "▁wars": 29129,
+ "▁exhibition": 29130,
+ "hill": 29131,
+ "▁astr": 29132,
+ "▁музе": 29133,
+ "▁CASE": 29134,
+ "manifest": 29135,
+ "yellow": 29136,
+ "Fn": 29137,
+ "▁RC": 29138,
+ "▁sott": 29139,
+ "▁sujet": 29140,
+ "▁Socket": 29141,
+ "▁Chine": 29142,
+ "▁frameworks": 29143,
+ "Hold": 29144,
+ "êts": 29145,
+ "▁філь": 29146,
+ "Loaded": 29147,
+ "ophe": 29148,
+ "texte": 29149,
+ "▁expres": 29150,
+ "▁consume": 29151,
+ "▁Richtung": 29152,
+ "ografi": 29153,
+ "▁magnific": 29154,
+ "àt": 29155,
+ "▁indul": 29156,
+ "ryty": 29157,
+ "▁offici": 29158,
+ "▁assault": 29159,
+ "rund": 29160,
+ "▁variants": 29161,
+ "▁сельсов": 29162,
+ "▁excitement": 29163,
+ "Times": 29164,
+ "kotlin": 29165,
+ "▁gering": 29166,
+ "▁Engel": 29167,
+ "▁Timer": 29168,
+ "²).": 29169,
+ "▁Ng": 29170,
+ "ässt": 29171,
+ "schau": 29172,
+ "SError": 29173,
+ "▁Edwards": 29174,
+ "▁Terminal": 29175,
+ "lict": 29176,
+ "Under": 29177,
+ "▁spawn": 29178,
+ "ürgen": 29179,
+ "▁Außerdem": 29180,
+ "▁kitchen": 29181,
+ "fahrt": 29182,
+ "▁Colors": 29183,
+ "▁система": 29184,
+ "▁terminated": 29185,
+ "▁LaTeX": 29186,
+ "igkeiten": 29187,
+ "▁mesure": 29188,
+ "▁Amts": 29189,
+ "▁empir": 29190,
+ "▁striking": 29191,
+ "▁exclusive": 29192,
+ "тех": 29193,
+ "▁rez": 29194,
+ "▁quan": 29195,
+ "▁Glasgow": 29196,
+ "▁lecture": 29197,
+ "▁Testament": 29198,
+ "▁funds": 29199,
+ "▁stessa": 29200,
+ "▁tribes": 29201,
+ "▁parfois": 29202,
+ "▁treball": 29203,
+ "nitz": 29204,
+ "bove": 29205,
+ "▁заслу": 29206,
+ "▁absent": 29207,
+ "▁Lauf": 29208,
+ "Smith": 29209,
+ "▁Николай": 29210,
+ "▁européenne": 29211,
+ "lr": 29212,
+ "▁programma": 29213,
+ "▁midst": 29214,
+ "▁daughters": 29215,
+ "Syn": 29216,
+ "oben": 29217,
+ "ână": 29218,
+ "idan": 29219,
+ "▁ther": 29220,
+ "odore": 29221,
+ "sdl": 29222,
+ "▁Quint": 29223,
+ "▁casos": 29224,
+ "▁Zam": 29225,
+ "▁страны": 29226,
+ "▁sprite": 29227,
+ "кал": 29228,
+ "▁nasc": 29229,
+ "▁сотруд": 29230,
+ "▁trava": 29231,
+ "▁хозяй": 29232,
+ "▁Uruguay": 29233,
+ "▁sparse": 29234,
+ "▁поле": 29235,
+ "▁mystery": 29236,
+ "▁Mang": 29237,
+ "registr": 29238,
+ "▁CGFloat": 29239,
+ "▁submission": 29240,
+ "вана": 29241,
+ "▁\":": 29242,
+ "▁Traceback": 29243,
+ "▁Pit": 29244,
+ "▁Ehr": 29245,
+ "▁сра": 29246,
+ "▁Graphics": 29247,
+ "Updated": 29248,
+ "▁svensk": 29249,
+ "▁spacing": 29250,
+ "tritt": 29251,
+ "▁Guinea": 29252,
+ "▁França": 29253,
+ "Associ": 29254,
+ "▁Tová": 29255,
+ "stab": 29256,
+ "▁Learning": 29257,
+ "▁Bright": 29258,
+ "śc": 29259,
+ "▁idő": 29260,
+ "}}_{\\": 29261,
+ "▁droite": 29262,
+ "▁raising": 29263,
+ "getting": 29264,
+ "ythm": 29265,
+ "onyme": 29266,
+ "żs": 29267,
+ "▁blah": 29268,
+ "TagName": 29269,
+ "Vertical": 29270,
+ "▁aper": 29271,
+ "postgresql": 29272,
+ "▁Handle": 29273,
+ "zew": 29274,
+ "▁skulle": 29275,
+ "▁opere": 29276,
+ "layers": 29277,
+ "▁possono": 29278,
+ "▁relate": 29279,
+ "ąc": 29280,
+ "▁Mih": 29281,
+ "âge": 29282,
+ "▁Świ": 29283,
+ "isses": 29284,
+ "▁servlet": 29285,
+ "Los": 29286,
+ "▁Advanced": 29287,
+ "atica": 29288,
+ "▁ced": 29289,
+ "▁elementos": 29290,
+ "рона": 29291,
+ "iks": 29292,
+ "arf": 29293,
+ "ariat": 29294,
+ "Mobile": 29295,
+ "agua": 29296,
+ "▁timp": 29297,
+ "▁Comité": 29298,
+ "▁combining": 29299,
+ "wohl": 29300,
+ "▁Study": 29301,
+ "coordinate": 29302,
+ "▁recommendation": 29303,
+ "▁transformations": 29304,
+ "until": 29305,
+ "bounded": 29306,
+ "▁изу": 29307,
+ "hanced": 29308,
+ "▁вопро": 29309,
+ "▁Prés": 29310,
+ "▁coord": 29311,
+ "xty": 29312,
+ "▁$,": 29313,
+ "▁champions": 29314,
+ "Den": 29315,
+ "Mil": 29316,
+ "(',": 29317,
+ "▁Preis": 29318,
+ "▁eigh": 29319,
+ "▁markers": 29320,
+ "▁gewesen": 29321,
+ "ätten": 29322,
+ "▁pione": 29323,
+ "mv": 29324,
+ "▁ју": 29325,
+ "zeichnis": 29326,
+ "hoff": 29327,
+ "News": 29328,
+ "▁Stanisław": 29329,
+ "▁Brandenburg": 29330,
+ "▁Feuer": 29331,
+ "=&": 29332,
+ "жет": 29333,
+ "▁Neil": 29334,
+ "▁wirk": 29335,
+ "▁società": 29336,
+ "▁spare": 29337,
+ "▁civile": 29338,
+ "sprach": 29339,
+ "▁disse": 29340,
+ "▁gates": 29341,
+ "▁anom": 29342,
+ "▁Федерации": 29343,
+ "▁tib": 29344,
+ "▁fútbol": 29345,
+ "▁Wikiped": 29346,
+ "iate": 29347,
+ "Front": 29348,
+ "▁craw": 29349,
+ "▁Rak": 29350,
+ "▁зву": 29351,
+ "street": 29352,
+ "▁Agency": 29353,
+ "вало": 29354,
+ "▁Рас": 29355,
+ "▁mkdir": 29356,
+ "ację": 29357,
+ "▁shares": 29358,
+ "Story": 29359,
+ "▁remarks": 29360,
+ "▁keywords": 29361,
+ "Bob": 29362,
+ "▁toe": 29363,
+ "▁Vitt": 29364,
+ "▁rhs": 29365,
+ "ROP": 29366,
+ "oris": 29367,
+ "/@": 29368,
+ "сии": 29369,
+ "▁traverse": 29370,
+ "▁referencing": 29371,
+ "präsident": 29372,
+ "rong": 29373,
+ "'):": 29374,
+ "aties": 29375,
+ "AW": 29376,
+ "Outlet": 29377,
+ "▁évol": 29378,
+ "ikes": 29379,
+ "▁environmental": 29380,
+ "icum": 29381,
+ "▁Lied": 29382,
+ "▁warn": 29383,
+ "▁Butler": 29384,
+ "▁%),": 29385,
+ "▁Zeitschrift": 29386,
+ "▁Montr": 29387,
+ "важа": 29388,
+ "▁Mercur": 29389,
+ "jekte": 29390,
+ "meter": 29391,
+ "ducation": 29392,
+ "▁attributed": 29393,
+ "*$": 29394,
+ "▁unf": 29395,
+ "▁Vertrag": 29396,
+ "zien": 29397,
+ "▁Роб": 29398,
+ "lices": 29399,
+ "pply": 29400,
+ "ansen": 29401,
+ "▁zeit": 29402,
+ "▁immense": 29403,
+ "▁lutego": 29404,
+ "▁Bulgar": 29405,
+ "▁miembros": 29406,
+ "▁Националь": 29407,
+ "▁Allow": 29408,
+ "▁anglès": 29409,
+ "дви": 29410,
+ "▁Toy": 29411,
+ "туа": 29412,
+ "▁yard": 29413,
+ "(%": 29414,
+ "isser": 29415,
+ "▁golf": 29416,
+ "▁Ukrain": 29417,
+ "▁hosp": 29418,
+ "Include": 29419,
+ "▁Lisa": 29420,
+ "▁csal": 29421,
+ "▁Mira": 29422,
+ "recogn": 29423,
+ "▁Ке": 29424,
+ "▁hitting": 29425,
+ "кономі": 29426,
+ "▁Tournament": 29427,
+ "LOAD": 29428,
+ "▁Guardian": 29429,
+ "▁daher": 29430,
+ "▁timezone": 29431,
+ "▁tomcat": 29432,
+ "▁successor": 29433,
+ "▁Void": 29434,
+ "▁começ": 29435,
+ "▁converts": 29436,
+ "ächs": 29437,
+ "osex": 29438,
+ "xelles": 29439,
+ "aser": 29440,
+ "▁És": 29441,
+ "▁mou": 29442,
+ "▁ung": 29443,
+ "▁origen": 29444,
+ "▁Crow": 29445,
+ "▁Erd": 29446,
+ "▁sieben": 29447,
+ "lua": 29448,
+ "▁BB": 29449,
+ "RENT": 29450,
+ "▁piłkar": 29451,
+ "▁marque": 29452,
+ "▁Labour": 29453,
+ "viders": 29454,
+ "▁exempl": 29455,
+ "Sound": 29456,
+ "▁Wass": 29457,
+ "arrison": 29458,
+ "▁течение": 29459,
+ "▁Oficina": 29460,
+ "▁Daw": 29461,
+ "▁Kauf": 29462,
+ "ént": 29463,
+ "éső": 29464,
+ "▁=\"": 29465,
+ "▁kat": 29466,
+ "diction": 29467,
+ "▁Voll": 29468,
+ "▁highway": 29469,
+ "James": 29470,
+ "zeuge": 29471,
+ "▁modelo": 29472,
+ "Throw": 29473,
+ "▁Forum": 29474,
+ "(\"@": 29475,
+ "▁enfer": 29476,
+ "▁специаль": 29477,
+ "Numbers": 29478,
+ "▁Binary": 29479,
+ "▁Martínez": 29480,
+ "▁Stato": 29481,
+ "▁festiv": 29482,
+ "▁katol": 29483,
+ "▁Аб": 29484,
+ "▁limitation": 29485,
+ "▁STR": 29486,
+ "▁Официаль": 29487,
+ "ipes": 29488,
+ "▁Isn": 29489,
+ "▁ruled": 29490,
+ "▁cí": 29491,
+ "geber": 29492,
+ "▁lavoro": 29493,
+ "▁parentheses": 29494,
+ "оз": 29495,
+ "▁équipes": 29496,
+ "▁efficiently": 29497,
+ "▁Period": 29498,
+ "▁Regarding": 29499,
+ "leaf": 29500,
+ "▁similarity": 29501,
+ "▁gesture": 29502,
+ "datab": 29503,
+ "▁terminate": 29504,
+ "▁semantics": 29505,
+ "▁Alo": 29506,
+ "▁cig": 29507,
+ "▁OpenGL": 29508,
+ "▁heutigen": 29509,
+ "xaml": 29510,
+ "▁frequencies": 29511,
+ ")}.": 29512,
+ "▁threatened": 29513,
+ "тик": 29514,
+ "▁calcio": 29515,
+ "▁Riemann": 29516,
+ "slug": 29517,
+ "▁Finale": 29518,
+ "LR": 29519,
+ "▁Derby": 29520,
+ "▁още": 29521,
+ "▁deviation": 29522,
+ "ächen": 29523,
+ "▁Cris": 29524,
+ "ново": 29525,
+ "▁столі": 29526,
+ "▁relev": 29527,
+ "▁splendid": 29528,
+ "▁учё": 29529,
+ "erving": 29530,
+ "gable": 29531,
+ "▁générale": 29532,
+ "pom": 29533,
+ "▁Cheers": 29534,
+ "▁imprison": 29535,
+ "▁indent": 29536,
+ "▁analyz": 29537,
+ "▁revert": 29538,
+ "érer": 29539,
+ "▁phases": 29540,
+ "FirstName": 29541,
+ "▁mig": 29542,
+ "▁disturb": 29543,
+ "▁mixture": 29544,
+ "▁){": 29545,
+ "inture": 29546,
+ "▁Tried": 29547,
+ "▁sooner": 29548,
+ "▁pels": 29549,
+ "▁établ": 29550,
+ "etro": 29551,
+ "itie": 29552,
+ "▁quartier": 29553,
+ "▁гово": 29554,
+ "▁város": 29555,
+ "ufe": 29556,
+ "heten": 29557,
+ "хом": 29558,
+ "▁soap": 29559,
+ "utors": 29560,
+ "▁duch": 29561,
+ "syntax": 29562,
+ "▁tribe": 29563,
+ "▁chante": 29564,
+ "Tri": 29565,
+ "▁Mate": 29566,
+ "quality": 29567,
+ "uola": 29568,
+ "=\".": 29569,
+ "chk": 29570,
+ "▁всі": 29571,
+ "▁przeci": 29572,
+ "▁Meteor": 29573,
+ "▁scattered": 29574,
+ "Plus": 29575,
+ "trad": 29576,
+ "▁stackoverflow": 29577,
+ "▁retra": 29578,
+ "▁éditions": 29579,
+ "▁sain": 29580,
+ "cribe": 29581,
+ "ignon": 29582,
+ "ucker": 29583,
+ "▁мало": 29584,
+ "▁tenir": 29585,
+ "▁exports": 29586,
+ "▁auxili": 29587,
+ "▁]]": 29588,
+ "▁CBS": 29589,
+ "uniform": 29590,
+ "▁periodic": 29591,
+ "agrant": 29592,
+ "▁emple": 29593,
+ "Wil": 29594,
+ "▁fres": 29595,
+ "▁strutt": 29596,
+ "▁світ": 29597,
+ "▁betre": 29598,
+ "▁объек": 29599,
+ "тися": 29600,
+ "▁bisher": 29601,
+ "baum": 29602,
+ "ishi": 29603,
+ "▁Gazette": 29604,
+ "backgroundColor": 29605,
+ "jl": 29606,
+ "▁fiel": 29607,
+ "▁према": 29608,
+ "▁protagonista": 29609,
+ "▁Muhammad": 29610,
+ "▁simulate": 29611,
+ "▁Hook": 29612,
+ "fest": 29613,
+ "▁своих": 29614,
+ "Sender": 29615,
+ "▁listened": 29616,
+ "жі": 29617,
+ "jest": 29618,
+ "kord": 29619,
+ "Choice": 29620,
+ "▁hoofd": 29621,
+ "reducible": 29622,
+ "hpp": 29623,
+ "▁Wu": 29624,
+ "ši": 29625,
+ "▁Marse": 29626,
+ "▁soir": 29627,
+ "westen": 29628,
+ "emos": 29629,
+ "▁Duc": 29630,
+ "▁amerik": 29631,
+ "|}{": 29632,
+ "▁Gul": 29633,
+ "▁Sprache": 29634,
+ "▁mismatch": 29635,
+ "Scal": 29636,
+ "Pixel": 29637,
+ "EF": 29638,
+ "▁Sep": 29639,
+ "▁powiecie": 29640,
+ "urk": 29641,
+ "▁Napoli": 29642,
+ "▁neighbourhood": 29643,
+ "стоян": 29644,
+ "▁searches": 29645,
+ "yrus": 29646,
+ "пет": 29647,
+ "Help": 29648,
+ "pont": 29649,
+ "▁Orient": 29650,
+ "▁Alfonso": 29651,
+ "▁monitoring": 29652,
+ "iao": 29653,
+ "édé": 29654,
+ "▁César": 29655,
+ "шее": 29656,
+ "Shift": 29657,
+ "suit": 29658,
+ "coded": 29659,
+ "ното": 29660,
+ "▁Parti": 29661,
+ "▁lasci": 29662,
+ "▁awesome": 29663,
+ "usta": 29664,
+ "▁Сове": 29665,
+ "▁Fland": 29666,
+ "oom": 29667,
+ "▁devi": 29668,
+ "engelsk": 29669,
+ "endum": 29670,
+ "▁Pascal": 29671,
+ "▁Bind": 29672,
+ "▁siguientes": 29673,
+ "JB": 29674,
+ "▁Petersburg": 29675,
+ "▁incorrectly": 29676,
+ "▁Bash": 29677,
+ "▁pelos": 29678,
+ "▁zespo": 29679,
+ "NSURL": 29680,
+ "▁přek": 29681,
+ "▁Crime": 29682,
+ "nach": 29683,
+ "▁thrust": 29684,
+ "▁Cultura": 29685,
+ "WF": 29686,
+ "▁Solo": 29687,
+ "▁invas": 29688,
+ "▁individually": 29689,
+ "ibm": 29690,
+ "▁etapa": 29691,
+ "▁handed": 29692,
+ "▁wherever": 29693,
+ "▁interpolation": 29694,
+ "▁musée": 29695,
+ "▁CNN": 29696,
+ "idia": 29697,
+ "ństw": 29698,
+ "▁przew": 29699,
+ "ughing": 29700,
+ "▁actors": 29701,
+ "▁Oriental": 29702,
+ "▁convenience": 29703,
+ "▁miasta": 29704,
+ "brains": 29705,
+ "▁меся": 29706,
+ "▁infatti": 29707,
+ "▁AllMovie": 29708,
+ "▁critique": 29709,
+ "▁successo": 29710,
+ "ancouver": 29711,
+ "▁fá": 29712,
+ "ългар": 29713,
+ "▁wisdom": 29714,
+ "▁Phoenix": 29715,
+ "hole": 29716,
+ "▁información": 29717,
+ "▁Airlines": 29718,
+ ".«": 29719,
+ "mort": 29720,
+ "userId": 29721,
+ "▁*/\r": 29722,
+ "▁Congo": 29723,
+ "▁\"`": 29724,
+ "corr": 29725,
+ "▁problemas": 29726,
+ "▁bib": 29727,
+ "▁później": 29728,
+ "▁fileName": 29729,
+ "zott": 29730,
+ "macht": 29731,
+ "▁Ulrich": 29732,
+ "Cy": 29733,
+ "endpoint": 29734,
+ "▁sheep": 29735,
+ "▁ibn": 29736,
+ "Feed": 29737,
+ "▁sympathy": 29738,
+ "▁Ib": 29739,
+ "▁territorial": 29740,
+ "rating": 29741,
+ "дами": 29742,
+ "▁dst": 29743,
+ "ую": 29744,
+ "aho": 29745,
+ "▁sug": 29746,
+ "emia": 29747,
+ "▁ted": 29748,
+ "▁Api": 29749,
+ "▁Rica": 29750,
+ "▁MR": 29751,
+ "ńskim": 29752,
+ "▁Voor": 29753,
+ "▁devil": 29754,
+ "▁Фо": 29755,
+ "▁När": 29756,
+ "▁...)": 29757,
+ "▁vois": 29758,
+ "▁abbre": 29759,
+ "▁Männer": 29760,
+ "ximo": 29761,
+ "▁intellectual": 29762,
+ "▁tales": 29763,
+ "similar": 29764,
+ "neum": 29765,
+ "▁Orig": 29766,
+ "▁postal": 29767,
+ "▁hvor": 29768,
+ "▁identification": 29769,
+ "▁Од": 29770,
+ "uesto": 29771,
+ "▁../": 29772,
+ "▁bir": 29773,
+ "▁Лон": 29774,
+ "▁esempio": 29775,
+ "▁Eing": 29776,
+ "Expand": 29777,
+ "▁PRIMARY": 29778,
+ "▁Jin": 29779,
+ "▁však": 29780,
+ "ourses": 29781,
+ "▁Betty": 29782,
+ "▁WM": 29783,
+ "▁flask": 29784,
+ "hlen": 29785,
+ "▁Adel": 29786,
+ "laravel": 29787,
+ "▁дет": 29788,
+ "ською": 29789,
+ "▁Mundo": 29790,
+ "iczn": 29791,
+ "ifié": 29792,
+ "▁Мор": 29793,
+ "▁древ": 29794,
+ "DateFormat": 29795,
+ "ським": 29796,
+ "▁dated": 29797,
+ "коли": 29798,
+ "▁результате": 29799,
+ "\\).": 29800,
+ "▁delayed": 29801,
+ "sound": 29802,
+ "▁Мак": 29803,
+ "▁\"...": 29804,
+ "▁binnen": 29805,
+ "▁факуль": 29806,
+ "▁polygon": 29807,
+ "▁eggs": 29808,
+ "AtIndexPath": 29809,
+ "менталь": 29810,
+ "▁incred": 29811,
+ "chunk": 29812,
+ "webdriver": 29813,
+ "▁свобо": 29814,
+ "▁między": 29815,
+ "Received": 29816,
+ "▁Monde": 29817,
+ "▁JQuery": 29818,
+ "Butt": 29819,
+ "▁PDO": 29820,
+ "▁forec": 29821,
+ "▁discipline": 29822,
+ "chev": 29823,
+ "нат": 29824,
+ "▁redis": 29825,
+ "▁hunting": 29826,
+ "▁alk": 29827,
+ "▁proofs": 29828,
+ "PRI": 29829,
+ "▁chip": 29830,
+ "ésie": 29831,
+ "▁HO": 29832,
+ "▁rug": 29833,
+ "zos": 29834,
+ "▁sorte": 29835,
+ "▁zeigt": 29836,
+ "▁Physics": 29837,
+ "legte": 29838,
+ "▁proportional": 29839,
+ "▁toolbar": 29840,
+ "vement": 29841,
+ "notin": 29842,
+ "▁první": 29843,
+ "blah": 29844,
+ "▁présence": 29845,
+ "▁lloc": 29846,
+ "▁líder": 29847,
+ "▁Accept": 29848,
+ "▁Always": 29849,
+ "▁\"{": 29850,
+ "▁diversi": 29851,
+ "ikor": 29852,
+ "Period": 29853,
+ "жён": 29854,
+ "▁Alliance": 29855,
+ "▁relay": 29856,
+ "Bro": 29857,
+ "jön": 29858,
+ "▁Baud": 29859,
+ "▁Bian": 29860,
+ "')[": 29861,
+ "чив": 29862,
+ "▁Poss": 29863,
+ "▁Mitglieder": 29864,
+ "▁nev": 29865,
+ "Daniel": 29866,
+ "▁tends": 29867,
+ "▁compagnie": 29868,
+ "▁livres": 29869,
+ "lub": 29870,
+ "▁": 29871,
+ "e": 29872,
+ "t": 29873,
+ "a": 29874,
+ "i": 29875,
+ "n": 29876,
+ "o": 29877,
+ "r": 29878,
+ "s": 29879,
+ "l": 29880,
+ "d": 29881,
+ "h": 29882,
+ "c": 29883,
+ "u": 29884,
+ "m": 29885,
+ "p": 29886,
+ "g": 29887,
+ "f": 29888,
+ ".": 29889,
+ "b": 29890,
+ "y": 29891,
+ ",": 29892,
+ "w": 29893,
+ "v": 29894,
+ "k": 29895,
+ "1": 29896,
+ ")": 29897,
+ "(": 29898,
+ "-": 29899,
+ "0": 29900,
+ ":": 29901,
+ "I": 29902,
+ "S": 29903,
+ "о": 29904,
+ "\\": 29905,
+ "2": 29906,
+ "C": 29907,
+ "\"": 29908,
+ "A": 29909,
+ "а": 29910,
+ "T": 29911,
+ "{": 29912,
+ "}": 29913,
+ "/": 29914,
+ "'": 29915,
+ "x": 29916,
+ "и": 29917,
+ "_": 29918,
+ "е": 29919,
+ "z": 29920,
+ "н": 29921,
+ "=": 29922,
+ "E": 29923,
+ "M": 29924,
+ "P": 29925,
+ "j": 29926,
+ "р": 29927,
+ "D": 29928,
+ "9": 29929,
+ "*": 29930,
+ "L": 29931,
+ "т": 29932,
+ "B": 29933,
+ "R": 29934,
+ "с": 29935,
+ ";": 29936,
+ "#": 29937,
+ "$": 29938,
+ "q": 29939,
+ "N": 29940,
+ "3": 29941,
+ "в": 29942,
+ "F": 29943,
+ "л": 29944,
+ "5": 29945,
+ "4": 29946,
+ "8": 29947,
+ "é": 29948,
+ "O": 29949,
+ "H": 29950,
+ "к": 29951,
+ "`": 29952,
+ "6": 29953,
+ "G": 29954,
+ "7": 29955,
+ "W": 29956,
+ "д": 29957,
+ ">": 29958,
+ "м": 29959,
+ "у": 29960,
+ "[": 29961,
+ "]": 29962,
+ "V": 29963,
+ "п": 29964,
+ "U": 29965,
+ "<": 29966,
+ "J": 29967,
+ "K": 29968,
+ "г": 29969,
+ "я": 29970,
+ "і": 29971,
+ "з": 29972,
+ "?": 29973,
+ "+": 29974,
+ "б": 29975,
+ "á": 29976,
+ "й": 29977,
+ "ь": 29978,
+ "Y": 29979,
+ "ó": 29980,
+ "ч": 29981,
+ "ы": 29982,
+ "í": 29983,
+ "Q": 29984,
+ "^": 29985,
+ "ä": 29986,
+ "&": 29987,
+ "х": 29988,
+ "|": 29989,
+ "X": 29990,
+ "!": 29991,
+ "@": 29992,
+ "ü": 29993,
+ "–": 29994,
+ "%": 29995,
+ "ц": 29996,
+ "ö": 29997,
+ "ж": 29998,
+ "Z": 29999,
+ "è": 30000,
+ "à": 30001,
+ "ш": 30002,
+ "—": 30003,
+ "\r": 30004,
+ "ю": 30005,
+ "ł": 30006,
+ "»": 30007,
+ "С": 30008,
+ "«": 30009,
+ "’": 30010,
+ "ф": 30011,
+ "В": 30012,
+ "П": 30013,
+ "К": 30014,
+ "“": 30015,
+ "ј": 30016,
+ "М": 30017,
+ "А": 30018,
+ "ç": 30019,
+ "å": 30020,
+ "щ": 30021,
+ "~": 30022,
+ "ę": 30023,
+ "”": 30024,
+ "ą": 30025,
+ "č": 30026,
+ "Р": 30027,
+ "ї": 30028,
+ "Н": 30029,
+ "ú": 30030,
+ "Б": 30031,
+ "Д": 30032,
+ "ã": 30033,
+ "ß": 30034,
+ "ă": 30035,
+ "ě": 30036,
+ "ê": 30037,
+ "О": 30038,
+ "š": 30039,
+ "Г": 30040,
+ "Т": 30041,
+ "ż": 30042,
+ "ё": 30043,
+ "ž": 30044,
+ "ś": 30045,
+ "ñ": 30046,
+ "ř": 30047,
+ "ő": 30048,
+ "„": 30049,
+ "Л": 30050,
+ "э": 30051,
+ "ý": 30052,
+ "У": 30053,
+ "И": 30054,
+ "ъ": 30055,
+ "є": 30056,
+ "â": 30057,
+ "î": 30058,
+ "ò": 30059,
+ "З": 30060,
+ "Ф": 30061,
+ "É": 30062,
+ "ć": 30063,
+ "·": 30064,
+ "ș": 30065,
+ "ń": 30066,
+ "ț": 30067,
+ "Х": 30068,
+ "ô": 30069,
+ "Е": 30070,
+ "ù": 30071,
+ "ů": 30072,
+ "°": 30073,
+ "Ш": 30074,
+ "љ": 30075,
+ "Ч": 30076,
+ "ø": 30077,
+ "æ": 30078,
+ "њ": 30079,
+ " ": 30080,
+ " ": 30081,
+ "Э": 30082,
+ "ë": 30083,
+ "õ": 30084,
+ "ï": 30085,
+ "‘": 30086,
+ "†": 30087,
+ "²": 30088,
+ "ű": 30089,
+ "І": 30090,
+ "─": 30091,
+ "Ц": 30092,
+ "ћ": 30093,
+ "Ö": 30094,
+ "û": 30095,
+ "Я": 30096,
+ "ì": 30097,
+ "…": 30098,
+ "ō": 30099,
+ "Ж": 30100,
+ "Ю": 30101,
+ "Á": 30102,
+ "́": 30103,
+ "Ü": 30104,
+ "º": 30105,
+ "œ": 30106,
+ "ā": 30107,
+ "Č": 30108,
+ "ź": 30109,
+ "α": 30110,
+ "│": 30111,
+ "ا": 30112,
+ "À": 30113,
+ "═": 30114,
+ "Š": 30115,
+ "ђ": 30116,
+ "№": 30117,
+ " ": 30118,
+ "•": 30119,
+ "−": 30120,
+ "→": 30121,
+ "×": 30122,
+ "ο": 30123,
+ "₂": 30124,
+ "Ä": 30125,
+ "Î": 30126,
+ "Ś": 30127,
+ "đ": 30128,
+ "Å": 30129,
+ "ı": 30130,
+ "": 30131,
+ "ū": 30132,
+ "ν": 30133,
+ "Й": 30134,
+ "ª": 30135,
+ "ι": 30136,
+ "τ": 30137,
+ "ل": 30138,
+ "′": 30139,
+ "�": 30140,
+ "È": 30141,
+ "λ": 30142,
+ "": 30143,
+ "Ž": 30144,
+ "ς": 30145,
+ "ň": 30146,
+ "ρ": 30147,
+ "₁": 30148,
+ "Є": 30149,
+ "ī": 30150,
+ "ε": 30151,
+ "§": 30152,
+ "Ł": 30153,
+ "Ј": 30154,
+ "£": 30155,
+ "ر": 30156,
+ "Ż": 30157,
+ "¿": 30158,
+ "م": 30159,
+ "″": 30160,
+ "Ú": 30161,
+ "ن": 30162,
+ "ي": 30163,
+ "σ": 30164,
+ "´": 30165,
+ "": 30166,
+ "μ": 30167,
+ "³": 30168,
+ "ş": 30169,
+ "π": 30170,
+ "و": 30171,
+ "د": 30172,
+ "κ": 30173,
+ "₃": 30174,
+ "Í": 30175,
+ "ˈ": 30176,
+ "ب": 30177,
+ "Ó": 30178,
+ "Ã": 30179,
+ "¡": 30180,
+ "€": 30181,
+ "ť": 30182,
+ "η": 30183,
+ "ə": 30184,
+ "ー": 30185,
+ "Щ": 30186,
+ "β": 30187,
+ "├": 30188,
+ "ð": 30189,
+ "ґ": 30190,
+ "": 30191,
+ "υ": 30192,
+ "¹": 30193,
+ "₄": 30194,
+ "ت": 30195,
+ "י": 30196,
+ "γ": 30197,
+ "س": 30198,
+ "の": 30199,
+ "ğ": 30200,
+ "δ": 30201,
+ "ی": 30202,
+ "ン": 30203,
+ "ه": 30204,
+ "ו": 30205,
+ "ω": 30206,
+ "ί": 30207,
+ "█": 30208,
+ "θ": 30209,
+ "的": 30210,
+ "©": 30211,
+ "Â": 30212,
+ "↑": 30213,
+ ",": 30214,
+ "ː": 30215,
+ "ά": 30216,
+ "―": 30217,
+ "ع": 30218,
+ "Ç": 30219,
+ "₀": 30220,
+ "±": 30221,
+ "Ø": 30222,
+ "ď": 30223,
+ "Ř": 30224,
+ "Œ": 30225,
+ "½": 30226,
+ "└": 30227,
+ "ό": 30228,
+ "‚": 30229,
+ "ē": 30230,
+ "₅": 30231,
+ "Æ": 30232,
+ "Ș": 30233,
+ "ɛ": 30234,
+ "ה": 30235,
+ "ר": 30236,
+ "φ": 30237,
+ "₆": 30238,
+ "ė": 30239,
+ "ح": 30240,
+ "ف": 30241,
+ "ة": 30242,
+ "İ": 30243,
+ " ": 30244,
+ "←": 30245,
+ "║": 30246,
+ "ɔ": 30247,
+ "≤": 30248,
+ "ל": 30249,
+ "Đ": 30250,
+ "ա": 30251,
+ "Ō": 30252,
+ "א": 30253,
+ "്": 30254,
+ "ス": 30255,
+ "ش": 30256,
+ "大": 30257,
+ "ル": 30258,
+ "џ": 30259,
+ "イ": 30260,
+ "⟩": 30261,
+ " ": 30262,
+ "µ": 30263,
+ "∈": 30264,
+ "ق": 30265,
+ "⟨": 30266,
+ "。": 30267,
+ "Ґ": 30268,
+ "ा": 30269,
+ "ج": 30270,
+ "ʿ": 30271,
+ "ა": 30272,
+ "έ": 30273,
+ "χ": 30274,
+ "中": 30275,
+ "ב": 30276,
+ "ი": 30277,
+ "₈": 30278,
+ "ト": 30279,
+ "ή": 30280,
+ "ラ": 30281,
+ "Џ": 30282,
+ "ك": 30283,
+ "₇": 30284,
+ "מ": 30285,
+ "ת": 30286,
+ "一": 30287,
+ "Π": 30288,
+ "า": 30289,
+ "・": 30290,
+ "Σ": 30291,
+ "Α": 30292,
+ "Δ": 30293,
+ "ש": 30294,
+ "ز": 30295,
+ "्": 30296,
+ "ร": 30297,
+ "い": 30298,
+ "ʻ": 30299,
+ "Њ": 30300,
+ "₉": 30301,
+ "ʼ": 30302,
+ "リ": 30303,
+ "‐": 30304,
+ "ク": 30305,
+ "∞": 30306,
+ "⁄": 30307,
+ "ύ": 30308,
+ "Ş": 30309,
+ "ア": 30310,
+ "Ε": 30311,
+ "ɪ": 30312,
+ "人": 30313,
+ "Κ": 30314,
+ "∀": 30315,
+ "र": 30316,
+ "ッ": 30317,
+ "►": 30318,
+ "子": 30319,
+ "¬": 30320,
+ "خ": 30321,
+ "◄": 30322,
+ "َ": 30323,
+ "ע": 30324,
+ "日": 30325,
+ "し": 30326,
+ "ḥ": 30327,
+ "נ": 30328,
+ "山": 30329,
+ "、": 30330,
+ "Ї": 30331,
+ "る": 30332,
+ "文": 30333,
+ "Ñ": 30334,
+ "ド": 30335,
+ "ד": 30336,
+ "ն": 30337,
+ "Ђ": 30338,
+ "Γ": 30339,
+ "þ": 30340,
+ "": 30341,
+ "®": 30342,
+ "ک": 30343,
+ "": 30344,
+ "⚭": 30345,
+ "本": 30346,
+ "ℕ": 30347,
+ "น": 30348,
+ "ѝ": 30349,
+ "̶": 30350,
+ "อ": 30351,
+ "ў": 30352,
+ "に": 30353,
+ "数": 30354,
+ "ე": 30355,
+ "国": 30356,
+ "Ω": 30357,
+ " ": 30358,
+ "ǎ": 30359,
+ "ص": 30360,
+ "": 30361,
+ "Μ": 30362,
+ " ": 30363,
+ "と": 30364,
+ "": 30365,
+ "た": 30366,
+ "ط": 30367,
+ "ր": 30368,
+ "タ": 30369,
+ "ÿ": 30370,
+ "な": 30371,
+ "أ": 30372,
+ "シ": 30373,
+ "新": 30374,
+ "﹕": 30375,
+ "ʃ": 30376,
+ "ľ": 30377,
+ "ロ": 30378,
+ "⁴": 30379,
+ "்": 30380,
+ "⇒": 30381,
+ "ţ": 30382,
+ ":": 30383,
+ "Ț": 30384,
+ "ക": 30385,
+ "≥": 30386,
+ "ി": 30387,
+ "マ": 30388,
+ "ん": 30389,
+ "ṣ": 30390,
+ "ジ": 30391,
+ "是": 30392,
+ "이": 30393,
+ "⋅": 30394,
+ "田": 30395,
+ "を": 30396,
+ "道": 30397,
+ "ง": 30398,
+ "¨": 30399,
+ "ـ": 30400,
+ "เ": 30401,
+ "村": 30402,
+ "Ê": 30403,
+ "ם": 30404,
+ "›": 30405,
+ "用": 30406,
+ "ώ": 30407,
+ "天": 30408,
+ ")": 30409,
+ "་": 30410,
+ "镇": 30411,
+ "か": 30412,
+ "不": 30413,
+ "Τ": 30414,
+ "学": 30415,
+ "ư": 30416,
+ "有": 30417,
+ "ո": 30418,
+ "(": 30419,
+ "レ": 30420,
+ "گ": 30421,
+ "": 30422,
+ "フ": 30423,
+ "न": 30424,
+ "ก": 30425,
+ "ɑ": 30426,
+ "す": 30427,
+ "ח": 30428,
+ "上": 30429,
+ "": 30430,
+ "∧": 30431,
+ "ṭ": 30432,
+ "ק": 30433,
+ "ξ": 30434,
+ "¤": 30435,
+ "ि": 30436,
+ "会": 30437,
+ "ന": 30438,
+ "カ": 30439,
+ "ų": 30440,
+ "ま": 30441,
+ "ു": 30442,
+ "͡": 30443,
+ "क": 30444,
+ "া": 30445,
+ "小": 30446,
+ "ן": 30447,
+ "行": 30448,
+ "は": 30449,
+ "ʁ": 30450,
+ "Ő": 30451,
+ "Þ": 30452,
+ "り": 30453,
+ "キ": 30454,
+ "Λ": 30455,
+ "რ": 30456,
+ "三": 30457,
+ "が": 30458,
+ "コ": 30459,
+ "ζ": 30460,
+ "市": 30461,
+ "王": 30462,
+ "ℝ": 30463,
+ "Ź": 30464,
+ "う": 30465,
+ "て": 30466,
+ "区": 30467,
+ "ാ": 30468,
+ "": 30469,
+ "年": 30470,
+ "פ": 30471,
+ "ի": 30472,
+ "ſ": 30473,
+ "‹": 30474,
+ "त": 30475,
+ "ŏ": 30476,
+ "‑": 30477,
+ "̃": 30478,
+ "Ć": 30479,
+ "ى": 30480,
+ "「": 30481,
+ "」": 30482,
+ "ს": 30483,
+ "Ā": 30484,
+ "म": 30485,
+ "生": 30486,
+ "≠": 30487,
+ "Љ": 30488,
+ "स": 30489,
+ "↔": 30490,
+ "Ο": 30491,
+ "ว": 30492,
+ "ლ": 30493,
+ "成": 30494,
+ "定": 30495,
+ "ล": 30496,
+ "¶": 30497,
+ "כ": 30498,
+ "で": 30499,
+ "ּ": 30500,
+ "ม": 30501,
+ "个": 30502,
+ "和": 30503,
+ "ס": 30504,
+ "在": 30505,
+ "Β": 30506,
+ "ิ": 30507,
+ "Ι": 30508,
+ "⁵": 30509,
+ "ั": 30510,
+ "ɡ": 30511,
+ "━": 30512,
+ "ら": 30513,
+ "オ": 30514,
+ "¼": 30515,
+ "ե": 30516,
+ "バ": 30517,
+ "ָ": 30518,
+ "ŋ": 30519,
+ "ŭ": 30520,
+ "グ": 30521,
+ "⁶": 30522,
+ "Ь": 30523,
+ "⁰": 30524,
+ "方": 30525,
+ "บ": 30526,
+ "": 30527,
+ "高": 30528,
+ "ệ": 30529,
+ "Ν": 30530,
+ "ѣ": 30531,
+ "ィ": 30532,
+ "地": 30533,
+ "月": 30534,
+ "Ô": 30535,
+ "™": 30536,
+ "ウ": 30537,
+ "き": 30538,
+ "公": 30539,
+ "ạ": 30540,
+ "ო": 30541,
+ "ɾ": 30542,
+ "่": 30543,
+ "出": 30544,
+ "法": 30545,
+ "Θ": 30546,
+ "ส": 30547,
+ "名": 30548,
+ "ย": 30549,
+ "ത": 30550,
+ "Φ": 30551,
+ "↓": 30552,
+ "れ": 30553,
+ "ג": 30554,
+ "Ё": 30555,
+ "ơ": 30556,
+ "下": 30557,
+ "ә": 30558,
+ "ψ": 30559,
+ "┼": 30560,
+ "ャ": 30561,
+ "√": 30562,
+ "¥": 30563,
+ "社": 30564,
+ "ṇ": 30565,
+ "さ": 30566,
+ "ِ": 30567,
+ "く": 30568,
+ "े": 30569,
+ "Ы": 30570,
+ "ἐ": 30571,
+ "テ": 30572,
+ "为": 30573,
+ "乡": 30574,
+ "川": 30575,
+ "ナ": 30576,
+ "之": 30577,
+ "字": 30578,
+ "ム": 30579,
+ "ी": 30580,
+ "海": 30581,
+ "ブ": 30582,
+ "≈": 30583,
+ "!": 30584,
+ "پ": 30585,
+ "¯": 30586,
+ "ἀ": 30587,
+ "": 30588,
+ "こ": 30589,
+ "ְ": 30590,
+ "東": 30591,
+ "明": 30592,
+ "ὶ": 30593,
+ "时": 30594,
+ "ท": 30595,
+ "ɨ": 30596,
+ "デ": 30597,
+ "️": 30598,
+ "ʊ": 30599,
+ "エ": 30600,
+ "南": 30601,
+ "西": 30602,
+ "ल": 30603,
+ "メ": 30604,
+ "プ": 30605,
+ "平": 30606,
+ "式": 30607,
+ "ῖ": 30608,
+ "қ": 30609,
+ "व": 30610,
+ "غ": 30611,
+ "Ò": 30612,
+ "家": 30613,
+ "ʒ": 30614,
+ "サ": 30615,
+ "≡": 30616,
+ "ダ": 30617,
+ "ต": 30618,
+ "∃": 30619,
+ "₹": 30620,
+ "प": 30621,
+ "第": 30622,
+ "ര": 30623,
+ "ض": 30624,
+ "▄": 30625,
+ "城": 30626,
+ "ミ": 30627,
+ "ɐ": 30628,
+ "¦": 30629,
+ "美": 30630,
+ "件": 30631,
+ "ნ": 30632,
+ "Ð": 30633,
+ "ַ": 30634,
+ "ニ": 30635,
+ "部": 30636,
+ "ņ": 30637,
+ "ǐ": 30638,
+ "ט": 30639,
+ "य": 30640,
+ "あ": 30641,
+ "¾": 30642,
+ "ả": 30643,
+ "ち": 30644,
+ "ュ": 30645,
+ "÷": 30646,
+ "女": 30647,
+ "神": 30648,
+ "♦": 30649,
+ "¢": 30650,
+ "以": 30651,
+ "้": 30652,
+ "র": 30653,
+ "太": 30654,
+ "্": 30655,
+ "チ": 30656,
+ "յ": 30657,
+ "前": 30658,
+ "金": 30659,
+ "ւ": 30660,
+ "野": 30661,
+ "北": 30662,
+ "ห": 30663,
+ "‰": 30664,
+ "っ": 30665,
+ "加": 30666,
+ "原": 30667,
+ "ʲ": 30668,
+ "置": 30669,
+ "安": 30670,
+ "ガ": 30671,
+ "我": 30672,
+ "Ḥ": 30673,
+ "യ": 30674,
+ "京": 30675,
+ "▀": 30676,
+ "მ": 30677,
+ "ვ": 30678,
+ "ʾ": 30679,
+ "∨": 30680,
+ "ִ": 30681,
+ "可": 30682,
+ "取": 30683,
+ "县": 30684,
+ "二": 30685,
+ "▒": 30686,
+ "理": 30687,
+ "自": 30688,
+ "信": 30689,
+ "代": 30690,
+ "ี": 30691,
+ "צ": 30692,
+ "်": 30693,
+ "द": 30694,
+ "⁸": 30695,
+ "̯": 30696,
+ "お": 30697,
+ "要": 30698,
+ "ῦ": 30699,
+ "க": 30700,
+ "ễ": 30701,
+ "ु": 30702,
+ "ƒ": 30703,
+ "ʰ": 30704,
+ "化": 30705,
+ "✓": 30706,
+ "പ": 30707,
+ "의": 30708,
+ "다": 30709,
+ "木": 30710,
+ "ُ": 30711,
+ "̀": 30712,
+ "ˌ": 30713,
+ "ह": 30714,
+ "パ": 30715,
+ "水": 30716,
+ "ế": 30717,
+ "ด": 30718,
+ "ズ": 30719,
+ "⁹": 30720,
+ "島": 30721,
+ "": 30722,
+ "も": 30723,
+ "正": 30724,
+ "■": 30725,
+ "آ": 30726,
+ "พ": 30727,
+ "内": 30728,
+ "Ì": 30729,
+ "ǔ": 30730,
+ "┬": 30731,
+ "作": 30732,
+ "合": 30733,
+ "ὸ": 30734,
+ "み": 30735,
+ "▼": 30736,
+ "ῶ": 30737,
+ "⊙": 30738,
+ "~": 30739,
+ "ị": 30740,
+ "ْ": 30741,
+ "回": 30742,
+ "了": 30743,
+ "所": 30744,
+ "事": 30745,
+ "表": 30746,
+ "ำ": 30747,
+ "分": 30748,
+ "⁷": 30749,
+ "ү": 30750,
+ "": 30751,
+ "入": 30752,
+ "全": 30753,
+ "إ": 30754,
+ "里": 30755,
+ "Χ": 30756,
+ "ं": 30757,
+ "ハ": 30758,
+ "ค": 30759,
+ "⁻": 30760,
+ "モ": 30761,
+ "郎": 30762,
+ "据": 30763,
+ "●": 30764,
+ "州": 30765,
+ "∩": 30766,
+ "者": 30767,
+ "通": 30768,
+ "都": 30769,
+ "ℤ": 30770,
+ "♭": 30771,
+ "╌": 30772,
+ "つ": 30773,
+ "ḍ": 30774,
+ "江": 30775,
+ "ז": 30776,
+ "Ý": 30777,
+ "ө": 30778,
+ "์": 30779,
+ "到": 30780,
+ "ி": 30781,
+ "ʂ": 30782,
+ "对": 30783,
+ "스": 30784,
+ "使": 30785,
+ "ি": 30786,
+ "よ": 30787,
+ "Ἀ": 30788,
+ "Ï": 30789,
+ "∘": 30790,
+ "사": 30791,
+ "ন": 30792,
+ "世": 30793,
+ "ɕ": 30794,
+ "կ": 30795,
+ "უ": 30796,
+ "ട": 30797,
+ "ბ": 30798,
+ "ो": 30799,
+ "വ": 30800,
+ "果": 30801,
+ "十": 30802,
+ "ุ": 30803,
+ "藤": 30804,
+ "来": 30805,
+ "面": 30806,
+ "け": 30807,
+ "ĕ": 30808,
+ "ビ": 30809,
+ "这": 30810,
+ "지": 30811,
+ "ം": 30812,
+ "街": 30813,
+ "石": 30814,
+ "能": 30815,
+ "空": 30816,
+ "տ": 30817,
+ "ئ": 30818,
+ "武": 30819,
+ "ʹ": 30820,
+ "ϕ": 30821,
+ "后": 30822,
+ "ะ": 30823,
+ "元": 30824,
+ "ʔ": 30825,
+ "리": 30826,
+ "기": 30827,
+ "河": 30828,
+ "町": 30829,
+ "花": 30830,
+ "ὐ": 30831,
+ "类": 30832,
+ "░": 30833,
+ "物": 30834,
+ "Η": 30835,
+ "¸": 30836,
+ "ு": 30837,
+ "თ": 30838,
+ "ث": 30839,
+ "െ": 30840,
+ "╠": 30841,
+ "⊆": 30842,
+ "》": 30843,
+ "ツ": 30844,
+ "版": 30845,
+ "动": 30846,
+ "如": 30847,
+ "真": 30848,
+ "ɲ": 30849,
+ "号": 30850,
+ "ذ": 30851,
+ "정": 30852,
+ "林": 30853,
+ "書": 30854,
+ "民": 30855,
+ "口": 30856,
+ "ّ": 30857,
+ "示": 30858,
+ "മ": 30859,
+ "아": 30860,
+ "图": 30861,
+ "∪": 30862,
+ "戦": 30863,
+ "李": 30864,
+ "ല": 30865,
+ "《": 30866,
+ "光": 30867,
+ "白": 30868,
+ "心": 30869,
+ "த": 30870,
+ "ज": 30871,
+ "设": 30872,
+ "ί": 30873,
+ "路": 30874,
+ "ग": 30875,
+ "∥": 30876,
+ "한": 30877,
+ "最": 30878,
+ "Ћ": 30879,
+ "手": 30880,
+ "ս": 30881,
+ "?": 30882,
+ "型": 30883,
+ "ầ": 30884,
+ "セ": 30885,
+ "建": 30886,
+ "ェ": 30887,
+ "主": 30888,
+ "시": 30889,
+ "대": 30890,
+ "ῆ": 30891,
+ "‡": 30892,
+ "集": 30893,
+ "დ": 30894,
+ "目": 30895,
+ "Ρ": 30896,
+ "ァ": 30897,
+ "度": 30898,
+ "長": 30899,
+ "星": 30900,
+ "ノ": 30901,
+ "ộ": 30902,
+ "가": 30903,
+ "五": 30904,
+ "چ": 30905,
+ "로": 30906,
+ "ョ": 30907,
+ "重": 30908,
+ "于": 30909,
+ "发": 30910,
+ "史": 30911,
+ "ظ": 30912,
+ "ช": 30913,
+ "え": 30914,
+ "國": 30915,
+ "ĭ": 30916,
+ "ப": 30917,
+ "인": 30918,
+ "你": 30919,
+ "駅": 30920,
+ "‒": 30921,
+ "♥": 30922,
+ "多": 30923,
+ "ħ": 30924,
+ "Қ": 30925,
+ "ồ": 30926,
+ "士": 30927,
+ "四": 30928,
+ "┴": 30929,
+ "ம": 30930,
+ "司": 30931,
+ "ে": 30932,
+ "ὰ": 30933,
+ "∂": 30934,
+ "╬": 30935,
+ "次": 30936,
+ "Ľ": 30937,
+ "⟶": 30938,
+ "立": 30939,
+ "点": 30940,
+ "音": 30941,
+ "⠀": 30942,
+ "器": 30943,
+ "하": 30944,
+ "井": 30945,
+ "存": 30946,
+ "ֹ": 30947,
+ "当": 30948,
+ "Ë": 30949,
+ "★": 30950,
+ "寺": 30951,
+ "性": 30952,
+ "也": 30953,
+ "め": 30954,
+ "だ": 30955,
+ "位": 30956,
+ "ങ": 30957,
+ "ہ": 30958,
+ "值": 30959,
+ "古": 30960,
+ "გ": 30961,
+ "ব": 30962,
+ "院": 30963,
+ "േ": 30964,
+ "▶": 30965,
+ "ர": 30966,
+ "界": 30967,
+ "語": 30968,
+ "സ": 30969,
+ "수": 30970,
+ "ǒ": 30971,
+ "愛": 30972,
+ "✔": 30973,
+ "時": 30974,
+ "ọ": 30975,
+ "റ": 30976,
+ "մ": 30977,
+ "ケ": 30978,
+ "东": 30979,
+ "同": 30980,
+ "주": 30981,
+ "保": 30982,
+ "Õ": 30983,
+ "ố": 30984,
+ "ἰ": 30985,
+ "青": 30986,
+ "ゴ": 30987,
+ "体": 30988,
+ "清": 30989,
+ "相": 30990,
+ "จ": 30991,
+ "ء": 30992,
+ "情": 30993,
+ "𝕜": 30994,
+ "ক": 30995,
+ "ḫ": 30996,
+ "ờ": 30997,
+ "将": 30998,
+ "族": 30999,
+ "동": 31000,
+ "Υ": 31001,
+ "┌": 31002,
+ "ボ": 31003,
+ "宮": 31004,
+ "』": 31005,
+ "ম": 31006,
+ "『": 31007,
+ "ļ": 31008,
+ "श": 31009,
+ "ป": 31010,
+ "Ա": 31011,
+ "ब": 31012,
+ "자": 31013,
+ "政": 31014,
+ "ா": 31015,
+ "间": 31016,
+ "fi": 31017,
+ "松": 31018,
+ "ṃ": 31019,
+ "始": 31020,
+ "息": 31021,
+ "少": 31022,
+ "教": 31023,
+ "获": 31024,
+ "列": 31025,
+ "开": 31026,
+ "ტ": 31027,
+ "ワ": 31028,
+ "კ": 31029,
+ "科": 31030,
+ "春": 31031,
+ "治": 31032,
+ "吉": 31033,
+ "ས": 31034,
+ "ศ": 31035,
+ "ɒ": 31036,
+ "台": 31037,
+ "ネ": 31038,
+ "း": 31039,
+ "ĩ": 31040,
+ "工": 31041,
+ "ά": 31042,
+ "知": 31043,
+ "八": 31044,
+ "場": 31045,
+ "画": 31046,
+ "百": 31047,
+ "☆": 31048,
+ "記": 31049,
+ "得": 31050,
+ "ソ": 31051,
+ "氏": 31052,
+ "ာ": 31053,
+ "에": 31054,
+ "ল": 31055,
+ "ṛ": 31056,
+ "关": 31057,
+ "ġ": 31058,
+ "έ": 31059,
+ "∑": 31060,
+ "ベ": 31061,
+ "标": 31062,
+ "니": 31063,
+ "ὴ": 31064,
+ "ֵ": 31065,
+ "外": 31066,
+ "♠": 31067,
+ "わ": 31068,
+ "間": 31069,
+ "ภ": 31070,
+ "校": 31071,
+ "制": 31072,
+ "แ": 31073,
+ "力": 31074,
+ "門": 31075,
+ "好": 31076,
+ "ғ": 31077,
+ "Ù": 31078,
+ "ℓ": 31079,
+ "ֶ": 31080,
+ "는": 31081,
+ "┐": 31082,
+ "∗": 31083,
+ "指": 31084,
+ "色": 31085,
+ "返": 31086,
+ "馬": 31087,
+ "请": 31088,
+ "≫": 31089,
+ "風": 31090,
+ "ό": 31091,
+ "接": 31092,
+ "서": 31093,
+ "↳": 31094,
+ "せ": 31095,
+ "志": 31096,
+ "̲": 31097,
+ "魔": 31098,
+ "ң": 31099,
+ "更": 31100,
+ "程": 31101,
+ "김": 31102,
+ "郡": 31103,
+ "ོ": 31104,
+ "ũ": 31105,
+ "ച": 31106,
+ "利": 31107,
+ "県": 31108,
+ "周": 31109,
+ "そ": 31110,
+ "や": 31111,
+ "谷": 31112,
+ "香": 31113,
+ "♯": 31114,
+ "じ": 31115,
+ "،": 31116,
+ "期": 31117,
+ "∅": 31118,
+ "┘": 31119,
+ "初": 31120,
+ "福": 31121,
+ "片": 31122,
+ "ザ": 31123,
+ "動": 31124,
+ "参": 31125,
+ "성": 31126,
+ "Ə": 31127,
+ "╦": 31128,
+ "어": 31129,
+ "ხ": 31130,
+ "義": 31131,
+ "च": 31132,
+ "象": 31133,
+ "功": 31134,
+ "♂": 31135,
+ "도": 31136,
+ "고": 31137,
+ "过": 31138,
+ "վ": 31139,
+ "皇": 31140,
+ "特": 31141,
+ "ậ": 31142,
+ "长": 31143,
+ "英": 31144,
+ "ấ": 31145,
+ "ണ": 31146,
+ "Ъ": 31147,
+ "স": 31148,
+ "其": 31149,
+ "ত": 31150,
+ "流": 31151,
+ "除": 31152,
+ "일": 31153,
+ "ু": 31154,
+ "្": 31155,
+ "永": 31156,
+ "直": 31157,
+ "상": 31158,
+ "千": 31159,
+ "ắ": 31160,
+ "館": 31161,
+ "Ť": 31162,
+ "朝": 31163,
+ "ட": 31164,
+ "ɣ": 31165,
+ "单": 31166,
+ "ʀ": 31167,
+ "格": 31168,
+ "德": 31169,
+ "전": 31170,
+ "☺": 31171,
+ "ピ": 31172,
+ "歌": 31173,
+ "进": 31174,
+ "限": 31175,
+ "夫": 31176,
+ "트": 31177,
+ "⊢": 31178,
+ "園": 31179,
+ "量": 31180,
+ "土": 31181,
+ "放": 31182,
+ "码": 31183,
+ "等": 31184,
+ "系": 31185,
+ "∼": 31186,
+ "華": 31187,
+ "↵": 31188,
+ "소": 31189,
+ "常": 31190,
+ "否": 31191,
+ "見": 31192,
+ "源": 31193,
+ "ׁ": 31194,
+ "实": 31195,
+ "博": 31196,
+ "라": 31197,
+ "원": 31198,
+ "보": 31199,
+ "⊕": 31200,
+ "解": 31201,
+ "〜": 31202,
+ "男": 31203,
+ "দ": 31204,
+ "ポ": 31205,
+ "ろ": 31206,
+ "나": 31207,
+ "ག": 31208,
+ "無": 31209,
+ "Û": 31210,
+ "̥": 31211,
+ "ұ": 31212,
+ "查": 31213,
+ "̣": 31214,
+ "╗": 31215,
+ "╩": 31216,
+ "条": 31217,
+ "য": 31218,
+ "ὁ": 31219,
+ "後": 31220,
+ "他": 31221,
+ "网": 31222,
+ "ல": 31223,
+ "≃": 31224,
+ "화": 31225,
+ "ە": 31226,
+ "阿": 31227,
+ "ေ": 31228,
+ "户": 31229,
+ "∫": 31230,
+ "구": 31231,
+ "ར": 31232,
+ "မ": 31233,
+ "▸": 31234,
+ "լ": 31235,
+ "○": 31236,
+ "命": 31237,
+ "就": 31238,
+ "龍": 31239,
+ "君": 31240,
+ "夏": 31241,
+ "": 31242,
+ "言": 31243,
+ "先": 31244,
+ "➜": 31245,
+ "შ": 31246,
+ "ძ": 31247,
+ "ਾ": 31248,
+ "வ": 31249,
+ "ど": 31250,
+ "ヒ": 31251,
+ "ไ": 31252,
+ "ன": 31253,
+ "ば": 31254,
+ "ギ": 31255,
+ "գ": 31256,
+ "ἄ": 31257,
+ "ヤ": 31258,
+ "典": 31259,
+ "府": 31260,
+ "̄": 31261,
+ "신": 31262,
+ "组": 31263,
+ "改": 31264,
+ "ὲ": 31265,
+ "华": 31266,
+ "与": 31267,
+ "调": 31268,
+ "╝": 31269,
+ "ヴ": 31270,
+ "ქ": 31271,
+ "由": 31272,
+ "修": 31273,
+ "學": 31274,
+ "♣": 31275,
+ "消": 31276,
+ "符": 31277,
+ "ʌ": 31278,
+ "부": 31279,
+ "ớ": 31280,
+ "‾": 31281,
+ "▲": 31282,
+ "录": 31283,
+ "ള": 31284,
+ "연": 31285,
+ "을": 31286,
+ "ひ": 31287,
+ "영": 31288,
+ "┤": 31289,
+ "已": 31290,
+ "陽": 31291,
+ "င": 31292,
+ "국": 31293,
+ "容": 31294,
+ "未": 31295,
+ "宗": 31296,
+ "ᴇ": 31297,
+ "び": 31298,
+ "장": 31299,
+ "龙": 31300,
+ "්": 31301,
+ "提": 31302,
+ "ĝ": 31303,
+ "六": 31304,
+ "形": 31305,
+ "제": 31306,
+ "Հ": 31307,
+ "伊": 31308,
+ "ϵ": 31309,
+ "ข": 31310,
+ "Ű": 31311,
+ "ゃ": 31312,
+ "火": 31313,
+ "Ṣ": 31314,
+ "佐": 31315,
+ "⊥": 31316,
+ "̪": 31317,
+ "ứ": 31318,
+ "□": 31319,
+ "结": 31320,
+ "九": 31321,
+ "雄": 31322,
+ "թ": 31323,
+ "ា": 31324,
+ "而": 31325,
+ "བ": 31326,
+ "우": 31327,
+ "张": 31328,
+ "ट": 31329,
+ "ष": 31330,
+ "向": 31331,
+ "ῥ": 31332,
+ "选": 31333,
+ "공": 31334,
+ "ゲ": 31335,
+ "ʐ": 31336,
+ "仁": 31337,
+ "堂": 31338,
+ "ך": 31339,
+ "ု": 31340,
+ "ἔ": 31341,
+ "അ": 31342,
+ "ề": 31343,
+ "ད": 31344,
+ "선": 31345,
+ "오": 31346,
+ "久": 31347,
+ "": 31348,
+ "义": 31349,
+ "अ": 31350,
+ "╔": 31351,
+ "无": 31352,
+ "
": 31353,
+ "은": 31354,
+ "ʷ": 31355,
+ "那": 31356,
+ "線": 31357,
+ "务": 31358,
+ "基": 31359,
+ "属": 31360,
+ "配": 31361,
+ "미": 31362,
+ "軍": 31363,
+ "โ": 31364,
+ "津": 31365,
+ "完": 31366,
+ "研": 31367,
+ "注": 31368,
+ "失": 31369,
+ "应": 31370,
+ "က": 31371,
+ "╚": 31372,
+ "友": 31373,
+ "章": 31374,
+ "Ψ": 31375,
+ "求": 31376,
+ "ण": 31377,
+ "경": 31378,
+ "": 31379,
+ "भ": 31380,
+ "们": 31381,
+ "模": 31382,
+ "需": 31383,
+ "ச": 31384,
+ "電": 31385,
+ "প": 31386,
+ "դ": 31387,
+ "へ": 31388,
+ "此": 31389,
+ "夜": 31390,
+ "或": 31391,
+ "橋": 31392,
+ "根": 31393,
+ "Ī": 31394,
+ "玉": 31395,
+ "ู": 31396,
+ "ṅ": 31397,
+ "交": 31398,
+ "品": 31399,
+ "良": 31400,
+ "ང": 31401,
+ "ォ": 31402,
+ "则": 31403,
+ "開": 31404,
+ "Ζ": 31405,
+ "문": 31406,
+ "被": 31407,
+ "조": 31408,
+ "株": 31409,
+ "记": 31410,
+ "會": 31411,
+ "经": 31412,
+ "ू": 31413,
+ "ょ": 31414,
+ "转": 31415,
+ "崎": 31416,
+ "마": 31417,
+ "⌘": 31418,
+ "比": 31419,
+ "造": 31420,
+ "ܐ": 31421,
+ "ื": 31422,
+ "没": 31423,
+ "现": 31424,
+ "七": 31425,
+ "Ά": 31426,
+ "商": 31427,
+ "ை": 31428,
+ "机": 31429,
+ "阳": 31430,
+ "ĉ": 31431,
+ "角": 31432,
+ "站": 31433,
+ "բ": 31434,
+ "해": 31435,
+ "及": 31436,
+ "ध": 31437,
+ "術": 31438,
+ "认": 31439,
+ "": 31440,
+ "创": 31441,
+ "編": 31442,
+ "ղ": 31443,
+ "ḩ": 31444,
+ "伝": 31445,
+ "岡": 31446,
+ "ड": 31447,
+ "ホ": 31448,
+ "港": 31449,
+ "任": 31450,
+ "登": 31451,
+ "ི": 31452,
+ "็": 31453,
+ "布": 31454,
+ "究": 31455,
+ "帝": 31456,
+ "여": 31457,
+ "산": 31458,
+ "န": 31459,
+ "◦": 31460,
+ "密": 31461,
+ "变": 31462,
+ "序": 31463,
+ "♀": 31464,
+ "∣": 31465,
+ "计": 31466,
+ "曲": 31467,
+ "Ă": 31468,
+ "ύ": 31469,
+ "ʋ": 31470,
+ "传": 31471,
+ "】": 31472,
+ "包": 31473,
+ "意": 31474,
+ "去": 31475,
+ "沙": 31476,
+ "⸮": 31477,
+ "【": 31478,
+ "写": 31479,
+ "超": 31480,
+ "ய": 31481,
+ "今": 31482,
+ "┈": 31483,
+ "森": 31484,
+ "ි": 31485,
+ "⊗": 31486,
+ "비": 31487,
+ "հ": 31488,
+ "Ḩ": 31489,
+ "ǫ": 31490,
+ "黄": 31491,
+ "∙": 31492,
+ "드": 31493,
+ "🌍": 31494,
+ "景": 31495,
+ "湖": 31496,
+ "ք": 31497,
+ "ိ": 31498,
+ "ⁿ": 31499,
+ "̂": 31500,
+ "ペ": 31501,
+ "何": 31502,
+ "宇": 31503,
+ "張": 31504,
+ "语": 31505,
+ "老": 31506,
+ "例": 31507,
+ "Ṭ": 31508,
+ "鉄": 31509,
+ "克": 31510,
+ "☉": 31511,
+ "": 31512,
+ "ɹ": 31513,
+ "ἱ": 31514,
+ "ⴰ": 31515,
+ "然": 31516,
+ "를": 31517,
+ "ǧ": 31518,
+ "報": 31519,
+ "服": 31520,
+ "Ď": 31521,
+ "想": 31522,
+ "‖": 31523,
+ "ユ": 31524,
+ "実": 31525,
+ "载": 31526,
+ "요": 31527,
+ "ℚ": 31528,
+ "波": 31529,
+ "马": 31530,
+ "状": 31531,
+ "线": 31532,
+ "유": 31533,
+ "洋": 31534,
+ "万": 31535,
+ "진": 31536,
+ "জ": 31537,
+ "添": 31538,
+ "球": 31539,
+ "機": 31540,
+ "支": 31541,
+ "显": 31542,
+ "拉": 31543,
+ "ὑ": 31544,
+ "送": 31545,
+ "隊": 31546,
+ "ธ": 31547,
+ "处": 31548,
+ "師": 31549,
+ "⊂": 31550,
+ "像": 31551,
+ "়": 31552,
+ "黒": 31553,
+ "ց": 31554,
+ "": 31555,
+ "ủ": 31556,
+ "只": 31557,
+ "起": 31558,
+ "段": 31559,
+ "တ": 31560,
+ "區": 31561,
+ "選": 31562,
+ "천": 31563,
+ "業": 31564,
+ "算": 31565,
+ "广": 31566,
+ "រ": 31567,
+ "视": 31568,
+ "秋": 31569,
+ "因": 31570,
+ "년": 31571,
+ "ے": 31572,
+ "输": 31573,
+ "̱": 31574,
+ "Մ": 31575,
+ "∆": 31576,
+ "康": 31577,
+ "세": 31578,
+ "思": 31579,
+ "死": 31580,
+ "聖": 31581,
+ "민": 31582,
+ "-": 31583,
+ "头": 31584,
+ "ർ": 31585,
+ "∉": 31586,
+ "車": 31587,
+ "┃": 31588,
+ "▇": 31589,
+ "按": 31590,
+ "⍵": 31591,
+ "夢": 31592,
+ "汉": 31593,
+ "从": 31594,
+ "ী": 31595,
+ "题": 31596,
+ "ˆ": 31597,
+ "ἡ": 31598,
+ "展": 31599,
+ "省": 31600,
+ "ུ": 31601,
+ "葉": 31602,
+ "호": 31603,
+ "ਰ": 31604,
+ "素": 31605,
+ "関": 31606,
+ "그": 31607,
+ ";": 31608,
+ "න": 31609,
+ "页": 31610,
+ "共": 31611,
+ "宿": 31612,
+ "态": 31613,
+ "ན": 31614,
+ "技": 31615,
+ "乐": 31616,
+ "控": 31617,
+ "移": 31618,
+ "影": 31619,
+ "ụ": 31620,
+ "ゆ": 31621,
+ "ご": 31622,
+ "್": 31623,
+ "管": 31624,
+ "ൾ": 31625,
+ "╣": 31626,
+ "戸": 31627,
+ "⇔": 31628,
+ "函": 31629,
+ "ẓ": 31630,
+ "尾": 31631,
+ "场": 31632,
+ "介": 31633,
+ "": 31634,
+ "育": 31635,
+ "ර": 31636,
+ "泉": 31637,
+ "ൽ": 31638,
+ "说": 31639,
+ "换": 31640,
+ "必": 31641,
+ "紀": 31642,
+ "མ": 31643,
+ "ེ": 31644,
+ "ợ": 31645,
+ "ൻ": 31646,
+ "宝": 31647,
+ "気": 31648,
+ "门": 31649,
+ "令": 31650,
+ "左": 31651,
+ "漢": 31652,
+ "若": 31653,
+ "屋": 31654,
+ "局": 31655,
+ "打": 31656,
+ "発": 31657,
+ "问": 31658,
+ "恋": 31659,
+ "兵": 31660,
+ "別": 31661,
+ "ા": 31662,
+ "Ս": 31663,
+ "߬": 31664,
+ "গ": 31665,
+ "并": 31666,
+ "ख": 31667,
+ "ή": 31668,
+ "节": 31669,
+ "ʑ": 31670,
+ "ץ": 31671,
+ "Ḫ": 31672,
+ "ℂ": 31673,
+ "引": 31674,
+ "统": 31675,
+ "智": 31676,
+ "̩": 31677,
+ "ै": 31678,
+ "电": 31679,
+ "현": 31680,
+ "✅": 31681,
+ "赤": 31682,
+ "断": 31683,
+ "ね": 31684,
+ "称": 31685,
+ "শ": 31686,
+ "身": 31687,
+ "首": 31688,
+ "付": 31689,
+ "⅓": 31690,
+ "ਸ": 31691,
+ "連": 31692,
+ "ზ": 31693,
+ "官": 31694,
+ "持": 31695,
+ "奈": 31696,
+ "御": 31697,
+ "親": 31698,
+ "군": 31699,
+ "库": 31700,
+ "秀": 31701,
+ "址": 31702,
+ "守": 31703,
+ "活": 31704,
+ "ལ": 31705,
+ "ふ": 31706,
+ "藏": 31707,
+ "ស": 31708,
+ "竹": 31709,
+ "草": 31710,
+ "結": 31711,
+ "ා": 31712,
+ "昌": 31713,
+ "樹": 31714,
+ "ள": 31715,
+ "무": 31716,
+ "হ": 31717,
+ "ゼ": 31718,
+ "̈": 31719,
+ "շ": 31720,
+ "勝": 31721,
+ "足": 31722,
+ "ရ": 31723,
+ "위": 31724,
+ "į": 31725,
+ "Ἰ": 31726,
+ "航": 31727,
+ "陳": 31728,
+ "业": 31729,
+ "富": 31730,
+ "雪": 31731,
+ "आ": 31732,
+ "再": 31733,
+ "안": 31734,
+ "默": 31735,
+ "박": 31736,
+ "용": 31737,
+ "✿": 31738,
+ "楽": 31739,
+ "沢": 31740,
+ "羅": 31741,
+ "Ė": 31742,
+ "ʎ": 31743,
+ "忠": 31744,
+ "错": 31745,
+ "단": 31746,
+ "면": 31747,
+ "ķ": 31748,
+ "桥": 31749,
+ "雲": 31750,
+ "该": 31751,
+ "ṯ": 31752,
+ "岩": 31753,
+ "남": 31754,
+ "ỹ": 31755,
+ "专": 31756,
+ "切": 31757,
+ "店": 31758,
+ "朱": 31759,
+ "ף": 31760,
+ "ず": 31761,
+ "幸": 31762,
+ "母": 31763,
+ "ɫ": 31764,
+ "々": 31765,
+ "∷": 31766,
+ "串": 31767,
+ "击": 31768,
+ "Ἐ": 31769,
+ "設": 31770,
+ "⊤": 31771,
+ "ₗ": 31772,
+ "經": 31773,
+ "강": 31774,
+ "ပ": 31775,
+ "।": 31776,
+ "ѐ": 31777,
+ "ᾶ": 31778,
+ "➖": 31779,
+ "座": 31780,
+ "씨": 31781,
+ "ぶ": 31782,
+ "Ţ": 31783,
+ "云": 31784,
+ "告": 31785,
+ "変": 31786,
+ "试": 31787,
+ "隆": 31788,
+ "개": 31789,
+ "պ": 31790,
+ "判": 31791,
+ "劉": 31792,
+ "˜": 31793,
+ "ˠ": 31794,
+ "编": 31795,
+ "ณ": 31796,
+ "ữ": 31797,
+ "达": 31798,
+ "Ě": 31799,
+ "ܝ": 31800,
+ "ြ": 31801,
+ "ḷ": 31802,
+ "右": 31803,
+ "들": 31804,
+ "ŝ": 31805,
+ "ӏ": 31806,
+ "్": 31807,
+ "എ": 31808,
+ "ற": 31809,
+ "复": 31810,
+ "看": 31811,
+ "話": 31812,
+ "坂": 31813,
+ "尔": 31814,
+ "衛": 31815,
+ "զ": 31816,
+ "차": 31817,
+ "丸": 31818,
+ "样": 31819,
+ "鬼": 31820,
+ "़": 31821,
+ "학": 31822,
+ "喜": 31823,
+ "斯": 31824,
+ "銀": 31825,
+ "만": 31826,
+ "Ξ": 31827,
+ "ც": 31828,
+ "群": 31829,
+ "近": 31830,
+ "塔": 31831,
+ "ϊ": 31832,
+ "ந": 31833,
+ "む": 31834,
+ "确": 31835,
+ "索": 31836,
+ "∇": 31837,
+ "非": 31838,
+ "望": 31839,
+ "❯": 31840,
+ "希": 31841,
+ "ỳ": 31842,
+ "甲": 31843,
+ "越": 31844,
+ "鳥": 31845,
+ "麻": 31846,
+ "雅": 31847,
+ "拳": 31848,
+ "ក": 31849,
+ "溪": 31850,
+ "测": 31851,
+ "话": 31852,
+ "池": 31853,
+ "菜": 31854,
+ "食": 31855,
+ "터": 31856,
+ "ਿ": 31857,
+ "渡": 31858,
+ "速": 31859,
+ "ھ": 31860,
+ "ರ": 31861,
+ "陈": 31862,
+ "健": 31863,
+ "ো": 31864,
+ "ක": 31865,
+ "ὺ": 31866,
+ "军": 31867,
+ "庄": 31868,
+ "红": 31869,
+ "Ħ": 31870,
+ "論": 31871,
+ "Ÿ": 31872,
+ "Έ": 31873,
+ "ự": 31874,
+ "孝": 31875,
+ "頭": 31876,
+ "飛": 31877,
+ "˚": 31878,
+ "▓": 31879,
+ "ً": 31880,
+ "": 31881,
+ "么": 31882,
+ "達": 31883,
+ "ѫ": 31884,
+ "巴": 31885,
+ "洞": 31886,
+ "貴": 31887,
+ "项": 31888,
+ "ദ": 31889,
+ "ɵ": 31890,
+ "̍": 31891,
+ "ҡ": 31892,
+ "种": 31893,
+ "运": 31894,
+ "식": 31895,
+ "ྱ": 31896,
+ "ḳ": 31897,
+ "彦": 31898,
+ "⥤": 31899,
+ "书": 31900,
+ "构": 31901,
+ "米": 31902,
+ "连": 31903,
+ "操": 31904,
+ "装": 31905,
+ "과": 31906,
+ "ぐ": 31907,
+ "反": 31908,
+ "̌": 31909,
+ "仮": 31910,
+ "员": 31911,
+ "昭": 31912,
+ "ശ": 31913,
+ "兴": 31914,
+ "客": 31915,
+ "删": 31916,
+ "ම": 31917,
+ "ව": 31918,
+ "პ": 31919,
+ "ċ": 31920,
+ "ഷ": 31921,
+ "သ": 31922,
+ "ᵉ": 31923,
+ "居": 31924,
+ "타": 31925,
+ "𝓝": 31926,
+ "थ": 31927,
+ "現": 31928,
+ "ˇ": 31929,
+ "종": 31930,
+ "助": 31931,
+ "唐": 31932,
+ "瀬": 31933,
+ "ន": 31934,
+ "微": 31935,
+ "1": 31936,
+ "Ġ": 31937,
+ "ほ": 31938,
+ "舞": 31939,
+ "내": 31940,
+ "중": 31941,
+ "Ē": 31942,
+ "导": 31943,
+ "效": 31944,
+ "방": 31945,
+ "ḏ": 31946,
+ "深": 31947,
+ "梅": 31948,
+ "料": 31949,
+ "월": 31950,
+ "每": 31951,
+ "洲": 31952,
+ "회": 31953,
+ "茶": 31954,
+ "败": 31955,
+ "ഞ": 31956,
+ "ể": 31957,
+ "ヨ": 31958,
+ "些": 31959,
+ "双": 31960,
+ "嘉": 31961,
+ "모": 31962,
+ "바": 31963,
+ "ษ": 31964,
+ "進": 31965,
+ "음": 31966,
+ "ญ": 31967,
+ "丁": 31968,
+ "故": 31969,
+ "計": 31970,
+ "遠": 31971,
+ "교": 31972,
+ "재": 31973,
+ "候": 31974,
+ "房": 31975,
+ "명": 31976,
+ "两": 31977,
+ "ფ": 31978,
+ "才": 31979,
+ "합": 31980,
+ "止": 31981,
+ "番": 31982,
+ "ɯ": 31983,
+ "奇": 31984,
+ "怪": 31985,
+ "联": 31986,
+ "역": 31987,
+ "泰": 31988,
+ "백": 31989,
+ "ὀ": 31990,
+ "げ": 31991,
+ "べ": 31992,
+ "边": 31993,
+ "还": 31994,
+ "黃": 31995,
+ "왕": 31996,
+ "收": 31997,
+ "弘": 31998,
+ "给": 31999
+ },
+ "merges": [
+ "▁ t",
+ "e r",
+ "i n",
+ "▁ a",
+ "e n",
+ "o n",
+ "▁t h",
+ "▁ th",
+ "e s",
+ "▁ s",
+ "▁ d",
+ "a t",
+ "o r",
+ "a n",
+ "▁ c",
+ "i s",
+ "r e",
+ "i t",
+ "▁t he",
+ "▁th e",
+ "▁ the",
+ "a r",
+ "l e",
+ "▁ w",
+ "▁ p",
+ "o u",
+ "a l",
+ "▁ f",
+ "▁ m",
+ "e d",
+ "▁ o",
+ "▁ b",
+ "o m",
+ "io n",
+ "i on",
+ "in g",
+ "i ng",
+ "i c",
+ "a s",
+ "e l",
+ "en t",
+ "e nt",
+ "▁i n",
+ "▁ in",
+ "▁ h",
+ "n d",
+ "e t",
+ "▁ l",
+ "▁ n",
+ "s t",
+ "▁t o",
+ "▁ to",
+ "c h",
+ "▁ I",
+ "r o",
+ "i l",
+ "▁o f",
+ "▁ of",
+ "d e",
+ "c t",
+ "▁ (",
+ "a m",
+ "▁ C",
+ "▁d e",
+ "▁ de",
+ "▁ S",
+ "▁ u",
+ "▁ A",
+ "▁ \\",
+ "▁ e",
+ "▁a nd",
+ "▁an d",
+ "▁ and",
+ "▁ T",
+ "o l",
+ "▁ v",
+ "i m",
+ "o t",
+ "a d",
+ "u t",
+ "▁ g",
+ "e m",
+ "u r",
+ "i d",
+ "▁ *",
+ "i g",
+ "r a",
+ "▁r e",
+ "▁ re",
+ "▁i s",
+ "▁ is",
+ "q u",
+ "o w",
+ "▁ M",
+ "es t",
+ "e st",
+ "▁ y",
+ "s e",
+ "v e",
+ "c e",
+ "i e",
+ "u n",
+ "▁ P",
+ "▁ B",
+ "a g",
+ "u l",
+ "▁ =",
+ "h e",
+ "en d",
+ "e nd",
+ "od e",
+ "o de",
+ "te r",
+ "t er",
+ "me nt",
+ "men t",
+ "m ent",
+ "o s",
+ "▁ D",
+ "i f",
+ "at ion",
+ "ati on",
+ "atio n",
+ "a tion",
+ "▁f or",
+ "▁fo r",
+ "▁ for",
+ "▁ r",
+ "▁ L",
+ "▁y ou",
+ "▁yo u",
+ "▁ you",
+ "▁b e",
+ "▁ be",
+ "l y",
+ "ve r",
+ "v er",
+ "a b",
+ "t e",
+ "▁i t",
+ "▁ it",
+ "▁o n",
+ "▁ on",
+ "r i",
+ "u s",
+ "▁ \"",
+ "▁w h",
+ "▁ wh",
+ "▁c on",
+ "▁co n",
+ "▁ con",
+ "▁ H",
+ "▁s t",
+ "▁ st",
+ "i r",
+ "▁ E",
+ "▁ F",
+ "c k",
+ "▁a n",
+ "▁ an",
+ "t h",
+ "e g",
+ "a y",
+ "it h",
+ "i th",
+ "▁ R",
+ "is t",
+ "i st",
+ "an d",
+ "a nd",
+ "▁t hat",
+ "▁th at",
+ "▁ that",
+ "▁a l",
+ "▁ al",
+ "▁ $",
+ "▁ #",
+ "o d",
+ "u m",
+ "▁ W",
+ "h t",
+ "co de",
+ "cod e",
+ "c ode",
+ "▁ G",
+ "at e",
+ "a te",
+ "es s",
+ "e ss",
+ "▁ N",
+ "er e",
+ "e re",
+ "p p",
+ "▁a s",
+ "▁ as",
+ "▁s e",
+ "▁ se",
+ "▁p ro",
+ "▁pr o",
+ "▁ pro",
+ "▁w ith",
+ "▁wit h",
+ "▁ with",
+ "p e",
+ "▁ k",
+ "er s",
+ "e rs",
+ "p t",
+ ") ;",
+ "l o",
+ "▁c om",
+ "▁co m",
+ "▁ com",
+ "am e",
+ "a me",
+ "▁ `",
+ "▁C om",
+ "▁Co m",
+ "▁ Com",
+ "i a",
+ "an t",
+ "a nt",
+ "▁l a",
+ "▁ la",
+ "▁ {",
+ "▁e n",
+ "▁ en",
+ "ct ion",
+ "c tion",
+ "▁e x",
+ "▁ ex",
+ "l d",
+ "u b",
+ "▁ j",
+ "l a",
+ "u e",
+ "▁ J",
+ "ic h",
+ "i ch",
+ "▁d o",
+ "▁ do",
+ "▁ O",
+ "▁q u",
+ "▁ qu",
+ "i v",
+ "or t",
+ "o rt",
+ "ar t",
+ "a rt",
+ "▁u n",
+ "▁ un",
+ "▁# #",
+ "▁ ##",
+ "▁t his",
+ "▁th is",
+ "▁ this",
+ "k e",
+ "▁h a",
+ "▁ ha",
+ "▁ -",
+ "ou t",
+ "o ut",
+ "▁T he",
+ "▁Th e",
+ "▁ The",
+ "▁n ot",
+ "▁no t",
+ "▁ not",
+ "▁n e",
+ "▁ ne",
+ "il l",
+ "i ll",
+ "▁l e",
+ "▁ le",
+ "c i",
+ "ro m",
+ "r om",
+ "in e",
+ "i ne",
+ "/ /",
+ "o p",
+ "eg in",
+ "e gin",
+ "▁Com ment",
+ "▁Comm ent",
+ "▁ Comment",
+ "be gin",
+ "beg in",
+ "b egin",
+ "с т",
+ "as s",
+ "a ss",
+ "i z",
+ ") .",
+ "o g",
+ "▁ п",
+ "▁o r",
+ "▁ or",
+ "▁w as",
+ "▁wa s",
+ "▁ was",
+ "▁a t",
+ "▁ at",
+ "ou r",
+ "o ur",
+ "▁ i",
+ "ai n",
+ "a in",
+ "▁ K",
+ "н а",
+ "▁ V",
+ "g e",
+ "▁s u",
+ "▁ su",
+ "a p",
+ "ag e",
+ "a ge",
+ "ou ld",
+ "oul d",
+ "o uld",
+ "n e",
+ "a v",
+ "x t",
+ "or e",
+ "o re",
+ "il e",
+ "i le",
+ "- -",
+ "▁ в",
+ "▁b y",
+ "▁ by",
+ "l i",
+ "at h",
+ "a th",
+ "р а",
+ "be r",
+ "b er",
+ "ac h",
+ "a ch",
+ "al l",
+ "a ll",
+ "▁T h",
+ "▁ Th",
+ "ul t",
+ "u lt",
+ "▁ }",
+ "▁ U",
+ "▁u s",
+ "▁ us",
+ "▁ z",
+ "us t",
+ "u st",
+ "▁h ave",
+ "▁ha ve",
+ "▁hav e",
+ "▁ have",
+ "li c",
+ "l ic",
+ "н и",
+ "▁c an",
+ "▁ca n",
+ "▁ can",
+ "t r",
+ "co m",
+ "c om",
+ ") ,",
+ "▁I n",
+ "▁ In",
+ "in d",
+ "i nd",
+ "el l",
+ "e ll",
+ "▁f rom",
+ "▁fr om",
+ "▁fro m",
+ "▁ from",
+ "о в",
+ "t o",
+ "▁ [",
+ "ab le",
+ "abl e",
+ "a ble",
+ "os t",
+ "o st",
+ "▁c h",
+ "▁ ch",
+ "ec t",
+ "e ct",
+ "ig ht",
+ "igh t",
+ "in t",
+ "i nt",
+ "▁ '",
+ "▁a re",
+ "▁ar e",
+ "▁ are",
+ "▁i m",
+ "▁ im",
+ "▁s h",
+ "▁ sh",
+ "▁ <",
+ "▁A n",
+ "▁ An",
+ "▁ с",
+ "at a",
+ "a ta",
+ "ir e",
+ "i re",
+ "▁t r",
+ "▁ tr",
+ "co n",
+ "c on",
+ "or d",
+ "o rd",
+ "it y",
+ "i ty",
+ "ar d",
+ "a rd",
+ "▁h e",
+ "▁ he",
+ "▁b ut",
+ "▁bu t",
+ "▁ but",
+ "o c",
+ "= \"",
+ "▁p r",
+ "▁ pr",
+ "ur e",
+ "u re",
+ "pe r",
+ "p er",
+ "ac k",
+ "a ck",
+ "or k",
+ "on g",
+ "o ng",
+ "an s",
+ "a ns",
+ "к о",
+ "pl e",
+ "p le",
+ "▁d es",
+ "▁de s",
+ "▁ des",
+ "o k",
+ "or m",
+ "o rm",
+ "we r",
+ "w er",
+ "a k",
+ "p r",
+ "as e",
+ "a se",
+ "▁e l",
+ "▁ el",
+ "p h",
+ "a c",
+ "▁u nd",
+ "▁un d",
+ "▁ und",
+ "▁a r",
+ "▁ ar",
+ "▁i f",
+ "▁ if",
+ "u d",
+ "p s",
+ "it e",
+ "i te",
+ "bl e",
+ "b le",
+ "н о",
+ "fe r",
+ "f er",
+ "p l",
+ "iv e",
+ "i ve",
+ "an g",
+ "a ng",
+ "en s",
+ "e ns",
+ "р о",
+ "▁s o",
+ "▁ so",
+ "s o",
+ "as t",
+ "a st",
+ "( )",
+ "sw er",
+ "s wer",
+ "r u",
+ "ie s",
+ "i es",
+ "▁ :",
+ "a u",
+ "o v",
+ "р е",
+ "г о",
+ "▁d er",
+ "▁de r",
+ "▁ der",
+ "▁m y",
+ "▁ my",
+ "▁w e",
+ "▁ we",
+ "▁m e",
+ "▁ me",
+ "n t",
+ "▁a d",
+ "▁ ad",
+ "ur n",
+ "u rn",
+ "▁y our",
+ "▁you r",
+ "▁yo ur",
+ "▁ your",
+ ":/ /",
+ ": //",
+ "ar e",
+ "a re",
+ "▁a ll",
+ "▁al l",
+ "▁ all",
+ "f f",
+ "i o",
+ "es tion",
+ "est ion",
+ "esti on",
+ "im e",
+ "i me",
+ "▁e r",
+ "▁ er",
+ "la ss",
+ "las s",
+ "l ass",
+ "▁ и",
+ "▁wh ich",
+ "▁ which",
+ "om e",
+ "o me",
+ "on t",
+ "o nt",
+ "▁p ar",
+ "▁pa r",
+ "▁ par",
+ "▁m a",
+ "▁ ma",
+ "▁ Y",
+ "\" ,",
+ "▁ о",
+ "f t",
+ "ia l",
+ "i al",
+ "c c",
+ "ou nd",
+ "oun d",
+ "o und",
+ "▁l i",
+ "▁ li",
+ "▁re s",
+ "▁r es",
+ "▁ res",
+ "et h",
+ "e th",
+ "je ct",
+ "j ect",
+ "▁a pp",
+ "▁ap p",
+ "▁ app",
+ "▁S t",
+ "▁ St",
+ "ic e",
+ "i ce",
+ "▁a m",
+ "▁ am",
+ "ac t",
+ "a ct",
+ "▁d el",
+ "▁de l",
+ "▁ del",
+ "g r",
+ "at ed",
+ "ate d",
+ "a ted",
+ "ie r",
+ "i er",
+ "▁a b",
+ "▁ ab",
+ "▁e t",
+ "▁ et",
+ "al ly",
+ "all y",
+ ". .",
+ "po rt",
+ "por t",
+ "p ort",
+ "i k",
+ "▁p er",
+ "▁pe r",
+ "▁ per",
+ "▁c ont",
+ "▁con t",
+ "▁co nt",
+ "▁ cont",
+ "р и",
+ "к а",
+ "se r",
+ "s er",
+ "л и",
+ "l l",
+ "ie w",
+ "i ew",
+ "ig n",
+ "i gn",
+ "_ {",
+ "pu t",
+ "p ut",
+ "on e",
+ "o ne",
+ "un ction",
+ "unc tion",
+ "unct ion",
+ "▁d i",
+ "▁ di",
+ "ar y",
+ "a ry",
+ "it ion",
+ "iti on",
+ "i tion",
+ "m a",
+ "е н",
+ "ge t",
+ "g et",
+ "▁l o",
+ "▁ lo",
+ "▁v al",
+ "▁va l",
+ "▁ val",
+ "▁ Q",
+ "ra n",
+ "r an",
+ "▁ д",
+ "en ce",
+ "enc e",
+ "▁w ork",
+ "▁wor k",
+ "▁ work",
+ "▁н а",
+ "▁ на",
+ "i p",
+ "it em",
+ "ite m",
+ "i tem",
+ "yp e",
+ "y pe",
+ "▁ &",
+ "▁h is",
+ "▁hi s",
+ "▁ his",
+ "▁u se",
+ "▁us e",
+ "▁ use",
+ "de r",
+ "d er",
+ "▁An swer",
+ "▁Ans wer",
+ "▁ Answer",
+ "▁w ill",
+ "▁wil l",
+ "▁ will",
+ "iz e",
+ "i ze",
+ "т а",
+ "lo w",
+ "l ow",
+ "▁C h",
+ "▁ Ch",
+ "▁g et",
+ "▁ge t",
+ "▁ get",
+ "id e",
+ "i de",
+ "ou s",
+ "o us",
+ "in k",
+ "pt ion",
+ "p tion",
+ "л а",
+ "tu rn",
+ "t urn",
+ "un g",
+ "u ng",
+ "e c",
+ "u g",
+ "fo rm",
+ "for m",
+ "f orm",
+ "re s",
+ "r es",
+ "ht t",
+ "h tt",
+ "ou g",
+ "o ug",
+ "л ь",
+ "▁n o",
+ "▁ no",
+ "c l",
+ "▁r o",
+ "▁ ro",
+ "▁o ne",
+ "▁on e",
+ "▁ one",
+ "t t",
+ "cr i",
+ "c ri",
+ "d u",
+ "▁u p",
+ "▁ up",
+ "т о",
+ "( \"",
+ "▁o b",
+ "▁ ob",
+ "w e",
+ "or y",
+ "o ry",
+ "▁e st",
+ "▁es t",
+ "▁ est",
+ "er y",
+ "e ry",
+ "ie l",
+ "i el",
+ "st r",
+ "s tr",
+ "o b",
+ "▁qu e",
+ "▁q ue",
+ "▁ que",
+ "ia n",
+ "i an",
+ "▁o ut",
+ "▁ou t",
+ "▁ out",
+ "▁p l",
+ "▁ pl",
+ "▁n ew",
+ "▁ne w",
+ "▁ new",
+ "к и",
+ "▁ +",
+ "r y",
+ "ot h",
+ "o th",
+ "th er",
+ "the r",
+ "t her",
+ "▁v ar",
+ "▁va r",
+ "▁ var",
+ "▁w ould",
+ "▁wo uld",
+ "▁s er",
+ "▁se r",
+ "▁ ser",
+ "ter n",
+ "te rn",
+ "t ern",
+ "te xt",
+ "tex t",
+ "t ext",
+ "▁t here",
+ "▁th ere",
+ "▁the re",
+ "▁ther e",
+ "▁ there",
+ "is h",
+ "i sh",
+ "ro r",
+ "r or",
+ "т е",
+ "▁s et",
+ "▁se t",
+ "▁ set",
+ "▁ @",
+ "▁п о",
+ "▁ по",
+ "▁t e",
+ "▁ te",
+ "e x",
+ "▁re turn",
+ "▁ret urn",
+ "▁ return",
+ "ai l",
+ "a il",
+ "▁a ny",
+ "▁an y",
+ "▁ any",
+ "▁I t",
+ "▁ It",
+ "▁f unction",
+ "▁fun ction",
+ "▁func tion",
+ "▁ function",
+ "{ \\",
+ "' ,",
+ "é s",
+ "al e",
+ "a le",
+ "а н",
+ "▁w hen",
+ "▁wh en",
+ "▁whe n",
+ "▁ when",
+ "i b",
+ "▁g o",
+ "▁ go",
+ "an ce",
+ "anc e",
+ "▁h ad",
+ "▁ha d",
+ "▁ had",
+ "▁Q u",
+ "▁ Qu",
+ "▁c omp",
+ "▁com p",
+ "▁co mp",
+ "▁ comp",
+ "л е",
+ "▁ з",
+ "ma th",
+ "mat h",
+ "m ath",
+ "▁h as",
+ "▁ha s",
+ "▁ has",
+ "▁ м",
+ "▁p re",
+ "▁pr e",
+ "▁ pre",
+ "en er",
+ "ene r",
+ "e ner",
+ "▁p art",
+ "▁par t",
+ "▁pa rt",
+ "▁ part",
+ "el f",
+ "▁d ie",
+ "▁di e",
+ "▁ die",
+ "▁l ike",
+ "▁li ke",
+ "▁lik e",
+ "▁ like",
+ "ra y",
+ "r ay",
+ "ir st",
+ "irs t",
+ "▁d is",
+ "▁di s",
+ "▁ dis",
+ "▁m an",
+ "▁ma n",
+ "▁ man",
+ "ri t",
+ "r it",
+ "▁t hen",
+ "▁th en",
+ "▁the n",
+ "▁ then",
+ "▁c lass",
+ "▁cl ass",
+ "▁cla ss",
+ "▁clas s",
+ "▁ class",
+ "pr o",
+ "p ro",
+ "▁p o",
+ "▁ po",
+ "▁u sing",
+ "▁us ing",
+ "▁ using",
+ "e b",
+ "▁c ode",
+ "▁co de",
+ "▁cod e",
+ "▁ code",
+ "ow n",
+ "o wn",
+ "▁s ome",
+ "▁so me",
+ "▁som e",
+ "▁ some",
+ "ce s",
+ "c es",
+ "▁$ \\",
+ "▁ $\\",
+ "е р",
+ "le ct",
+ "l ect",
+ "▁a u",
+ "▁ au",
+ "is ch",
+ "isc h",
+ "i sch",
+ "▁c ol",
+ "▁co l",
+ "▁ col",
+ "▁ –",
+ "u p",
+ "on s",
+ "o ns",
+ "▁a dd",
+ "▁ad d",
+ "▁ add",
+ "il d",
+ "i ld",
+ "is s",
+ "i ss",
+ "va l",
+ "v al",
+ "ou nt",
+ "oun t",
+ "o unt",
+ "le s",
+ "l es",
+ "ve nt",
+ "ven t",
+ "v ent",
+ "▁ Z",
+ "I n",
+ "ro w",
+ "r ow",
+ "ea r",
+ "e ar",
+ "at ions",
+ "ation s",
+ "ati ons",
+ "atio ns",
+ "a h",
+ "qu e",
+ "q ue",
+ "ub lic",
+ "u blic",
+ "an k",
+ "▁s p",
+ "▁ sp",
+ "▁W h",
+ "▁ Wh",
+ "-- --",
+ "--- -",
+ "- ---",
+ "s k",
+ "e w",
+ "ag s",
+ "a gs",
+ "т и",
+ "an n",
+ "a nn",
+ "▁ —",
+ "er t",
+ "e rt",
+ "ac e",
+ "a ce",
+ "sc h",
+ "s ch",
+ "▁n eed",
+ "▁ne ed",
+ "▁ need",
+ "▁ à",
+ "ie n",
+ "i en",
+ "ou gh",
+ "oug h",
+ "o ugh",
+ "н е",
+ "▁d ef",
+ "▁de f",
+ "▁ def",
+ "i j",
+ "er n",
+ "e rn",
+ "▁w hat",
+ "▁wh at",
+ "▁ what",
+ "▁A r",
+ "▁ Ar",
+ "w o",
+ "m l",
+ "< /",
+ "▁R e",
+ "▁ Re",
+ "▁e s",
+ "▁ es",
+ "▁in st",
+ "▁ins t",
+ "▁ inst",
+ "b o",
+ "a z",
+ "▁# ##",
+ "▁## #",
+ "▁ б",
+ "er m",
+ "e rm",
+ "▁A l",
+ "▁ Al",
+ "le d",
+ "l ed",
+ "д а",
+ "te n",
+ "t en",
+ "se t",
+ "s et",
+ "л о",
+ "▁c omm",
+ "▁com m",
+ "▁co mm",
+ "▁ comm",
+ "s h",
+ "в а",
+ "▁ /",
+ "▁d ata",
+ "▁da ta",
+ "▁dat a",
+ "▁ data",
+ "▁/ /",
+ "▁ //",
+ "] (",
+ "▁s tr",
+ "▁st r",
+ "▁ str",
+ "os e",
+ "o se",
+ "▁U n",
+ "▁ Un",
+ "ve n",
+ "v en",
+ "S t",
+ ".. .",
+ ". ..",
+ "▁ С",
+ "ys t",
+ "y st",
+ "▁ «",
+ "ic k",
+ "i ck",
+ "i x",
+ "pa r",
+ "p ar",
+ "▁ у",
+ "▁w ant",
+ "▁wa nt",
+ "n g",
+ "ot e",
+ "o te",
+ "▁g r",
+ "▁ gr",
+ "▁d u",
+ "▁ du",
+ "▁ .",
+ "un d",
+ "u nd",
+ "▁on ly",
+ "▁ only",
+ "▁s a",
+ "▁ sa",
+ "el y",
+ "e ly",
+ "ve rs",
+ "ver s",
+ "v ers",
+ "▁e nt",
+ "▁en t",
+ "▁ ent",
+ ") )",
+ "( '",
+ "▁m od",
+ "▁mo d",
+ "▁ mod",
+ "av a",
+ "a va",
+ "to n",
+ "t on",
+ "▁sh ould",
+ "▁sho uld",
+ "▁ should",
+ "em ent",
+ "eme nt",
+ "emen t",
+ "e ment",
+ "▁f orm",
+ "▁for m",
+ "▁fo rm",
+ "▁ form",
+ "▁al so",
+ "▁als o",
+ "▁ also",
+ "▁s c",
+ "▁ sc",
+ "in gs",
+ "ing s",
+ "▁Y ou",
+ "▁ You",
+ "ó n",
+ "▁k n",
+ "▁ kn",
+ "() ;",
+ "( );",
+ "▁ |",
+ "▁w ere",
+ "▁we re",
+ "▁wer e",
+ "s s",
+ "▁Qu estion",
+ "▁ Question",
+ "is e",
+ "i se",
+ "▁th ey",
+ "▁the y",
+ "▁ they",
+ "▁D e",
+ "▁ De",
+ "on d",
+ "o nd",
+ "▁s ol",
+ "▁so l",
+ "▁ sol",
+ "▁f ol",
+ "▁fo l",
+ "▁ fol",
+ "▁m ore",
+ "▁mo re",
+ "▁mor e",
+ "▁ more",
+ "▁h er",
+ "▁he r",
+ "▁ her",
+ "▁ _",
+ "▁ é",
+ "at ch",
+ "ft er",
+ "fte r",
+ "f ter",
+ "▁c re",
+ "▁cr e",
+ "▁ cre",
+ "lo ck",
+ "loc k",
+ "l ock",
+ "tr ing",
+ "tri ng",
+ "t ring",
+ "▁T his",
+ "▁Th is",
+ "▁ This",
+ "z e",
+ "ad o",
+ "a do",
+ "ul l",
+ "u ll",
+ "ge r",
+ "g er",
+ "b e",
+ "▁o ther",
+ "▁ot her",
+ "▁ other",
+ "▁T ags",
+ "▁Tag s",
+ "▁Ta gs",
+ "▁ Tags",
+ "ut ion",
+ "uti on",
+ "u tion",
+ "ic t",
+ "i ct",
+ "▁h ow",
+ "▁ho w",
+ "▁ how",
+ "▁ x",
+ "▁S e",
+ "▁ Se",
+ "▁c he",
+ "▁ch e",
+ "▁ che",
+ "cri pt",
+ "cr ipt",
+ "▁j ust",
+ "▁ju st",
+ "▁ just",
+ "▁p os",
+ "▁po s",
+ "▁ pos",
+ "an ge",
+ "ang e",
+ "if ic",
+ "ifi c",
+ "i fic",
+ "re e",
+ "r ee",
+ "} }",
+ "▁t ime",
+ "▁tim e",
+ "▁ti me",
+ "▁ time",
+ "ap p",
+ "a pp",
+ "н ы",
+ "▁f ile",
+ "▁fil e",
+ "▁fi le",
+ "▁ file",
+ "ar k",
+ "ic al",
+ "ica l",
+ "i cal",
+ "▁f irst",
+ "▁fir st",
+ "▁ first",
+ "▁in t",
+ "▁i nt",
+ "▁ int",
+ "▁ В",
+ "▁H e",
+ "▁ He",
+ "t a",
+ "um ent",
+ "ume nt",
+ "umen t",
+ "u ment",
+ "or s",
+ "o rs",
+ "le ment",
+ "lem ent",
+ "l ement",
+ "ra c",
+ "r ac",
+ "▁a g",
+ "▁ ag",
+ "▁do es",
+ "▁ does",
+ "y n",
+ "re ad",
+ "rea d",
+ "r ead",
+ "ua l",
+ "u al",
+ "▁L e",
+ "▁ Le",
+ "y s",
+ "▁e m",
+ "▁ em",
+ "▁n um",
+ "▁nu m",
+ "▁ num",
+ "ve l",
+ "v el",
+ "д и",
+ "ov er",
+ "ove r",
+ "o ver",
+ "▁d if",
+ "▁di f",
+ "et hod",
+ "eth od",
+ "▁I f",
+ "▁ If",
+ "▁s pe",
+ "▁sp e",
+ "▁ spe",
+ "y m",
+ "▁t hem",
+ "▁th em",
+ "▁the m",
+ "▁in to",
+ "▁int o",
+ "▁ into",
+ "▁l es",
+ "▁le s",
+ "▁ les",
+ "▁it s",
+ "▁i ts",
+ "▁ its",
+ "es e",
+ "e se",
+ "ie ld",
+ "iel d",
+ "i eld",
+ "▁p ublic",
+ "▁pub lic",
+ "▁pu blic",
+ "▁publi c",
+ "▁ public",
+ "▁ П",
+ "▁d en",
+ "▁de n",
+ "▁ den",
+ "yst em",
+ "ys tem",
+ "o f",
+ "▁o ver",
+ "▁ov er",
+ "▁ over",
+ "- >",
+ "▁f il",
+ "▁fi l",
+ "▁ fil",
+ "na me",
+ "nam e",
+ "n ame",
+ "in al",
+ "ina l",
+ "i nal",
+ "▁i l",
+ "▁ il",
+ "am ple",
+ "amp le",
+ "▁w ay",
+ "▁wa y",
+ "▁ way",
+ "ic a",
+ "i ca",
+ "в о",
+ "ce ss",
+ "ces s",
+ "c ess",
+ "it t",
+ "i tt",
+ "uc h",
+ "u ch",
+ "▁w here",
+ "▁wh ere",
+ "▁whe re",
+ "▁ where",
+ "м и",
+ "or g",
+ "o rg",
+ "htt ps",
+ "http s",
+ "▁v o",
+ "▁ vo",
+ "ie nt",
+ "ien t",
+ "i ent",
+ "ov e",
+ "o ve",
+ "▁val ue",
+ "▁valu e",
+ "▁ value",
+ "en g",
+ "e ng",
+ "▁L a",
+ "▁ La",
+ "^ {",
+ "re f",
+ "r ef",
+ "ie d",
+ "i ed",
+ "E R",
+ "▁s tat",
+ "▁st at",
+ "▁sta t",
+ "▁ stat",
+ "fi g",
+ "f ig",
+ "m e",
+ "▁v on",
+ "▁vo n",
+ "▁ von",
+ "▁in ter",
+ "▁int er",
+ "▁inte r",
+ "▁ inter",
+ "ro id",
+ "r oid",
+ "at er",
+ "ate r",
+ "a ter",
+ "▁the ir",
+ "▁b et",
+ "▁be t",
+ "▁ bet",
+ "▁e in",
+ "▁ ein",
+ "} \\",
+ "\" >",
+ "▁s ub",
+ "▁su b",
+ "▁ sub",
+ "▁o p",
+ "▁ op",
+ "▁d on",
+ "▁do n",
+ "▁ don",
+ "t y",
+ "▁t ry",
+ "▁tr y",
+ "▁ try",
+ "▁P ro",
+ "▁Pr o",
+ "▁ Pro",
+ "▁t ra",
+ "▁tr a",
+ "▁ tra",
+ "▁s ame",
+ "▁sa me",
+ "▁sam e",
+ "▁ same",
+ "e p",
+ "▁t wo",
+ "▁tw o",
+ "▁ two",
+ "▁n ame",
+ "▁na me",
+ "▁nam e",
+ "▁ name",
+ "ol d",
+ "o ld",
+ "le t",
+ "l et",
+ "▁s im",
+ "▁si m",
+ "▁ sim",
+ "s p",
+ "▁a v",
+ "▁ av",
+ "br e",
+ "b re",
+ "ble m",
+ "bl em",
+ "b lem",
+ "e y",
+ "▁c ould",
+ "▁co uld",
+ "▁cou ld",
+ "▁ could",
+ "▁c or",
+ "▁co r",
+ "▁ cor",
+ "▁a cc",
+ "▁ac c",
+ "▁ acc",
+ "ay s",
+ "a ys",
+ "cr e",
+ "c re",
+ "ur r",
+ "u rr",
+ "s i",
+ "▁con st",
+ "▁cons t",
+ "▁ const",
+ "ue s",
+ "u es",
+ "} $",
+ "V iew",
+ "▁a ct",
+ "▁ac t",
+ "▁ act",
+ "▁b o",
+ "▁ bo",
+ "▁к о",
+ "▁ ко",
+ "▁s om",
+ "▁so m",
+ "▁ som",
+ "▁ab out",
+ "▁ about",
+ "la nd",
+ "lan d",
+ "l and",
+ "me r",
+ "m er",
+ "▁l ist",
+ "▁li st",
+ "▁ list",
+ "ca l",
+ "c al",
+ "▁im port",
+ "▁imp ort",
+ "▁ import",
+ "co l",
+ "c ol",
+ "▁n a",
+ "▁ na",
+ "n a",
+ ": :",
+ "▁w ho",
+ "▁wh o",
+ "▁ who",
+ "▁e rror",
+ "▁er ror",
+ "▁err or",
+ "▁ error",
+ "▁ X",
+ "at or",
+ "ato r",
+ "a tor",
+ "ex t",
+ "e xt",
+ "▁b een",
+ "▁be en",
+ "é r",
+ "▁r un",
+ "▁ru n",
+ "▁ run",
+ "po s",
+ "p os",
+ "▁c l",
+ "▁ cl",
+ "* *",
+ "▁ К",
+ "ul ar",
+ "ula r",
+ "u lar",
+ "au se",
+ "aus e",
+ "a use",
+ "▁re g",
+ "▁r eg",
+ "▁ reg",
+ "▁k now",
+ "▁kn ow",
+ "▁ know",
+ "▁s ee",
+ "▁se e",
+ "▁ see",
+ "▁h im",
+ "▁hi m",
+ "▁ him",
+ "ni ng",
+ "n ing",
+ "▁з а",
+ "▁ за",
+ "at es",
+ "ate s",
+ "a tes",
+ "fo re",
+ "for e",
+ "f ore",
+ "ion s",
+ "io ns",
+ "i ons",
+ "▁h el",
+ "▁he l",
+ "▁ hel",
+ "ut e",
+ "u te",
+ "▁re m",
+ "▁r em",
+ "▁ rem",
+ "▁г о",
+ "▁ го",
+ "▁M ar",
+ "▁Ma r",
+ "▁ Mar",
+ "р у",
+ "vi ce",
+ "vic e",
+ "v ice",
+ "ir ect",
+ "ire ct",
+ "i rect",
+ "ne r",
+ "n er",
+ "▁u nder",
+ "▁un der",
+ "▁und er",
+ "▁ under",
+ "ri b",
+ "r ib",
+ "h r",
+ "ч е",
+ "▁A s",
+ "▁ As",
+ "▁e nd",
+ "▁en d",
+ "▁ end",
+ "em ber",
+ "emb er",
+ "▁ а",
+ "▁a tt",
+ "▁at t",
+ "▁ att",
+ "in a",
+ "i na",
+ "so n",
+ "s on",
+ "▁f ollow",
+ "▁fol low",
+ "▁ follow",
+ "▁S ch",
+ "▁Sc h",
+ "▁ Sch",
+ "pe ct",
+ "pec t",
+ "p ect",
+ "▁re l",
+ "▁r el",
+ "▁ rel",
+ "▁S o",
+ "▁ So",
+ "▁l ook",
+ "▁lo ok",
+ "▁ look",
+ "ab el",
+ "abe l",
+ "a bel",
+ "▁pro blem",
+ "▁prob lem",
+ "▁proble m",
+ "▁probl em",
+ "▁ problem",
+ "▁v an",
+ "▁va n",
+ "▁ van",
+ "st rong",
+ "str ong",
+ "c o",
+ "po n",
+ "p on",
+ "c a",
+ "ad a",
+ "a da",
+ "\" :",
+ "con d",
+ "co nd",
+ "c ond",
+ "am b",
+ "a mb",
+ "} ,",
+ "qu est",
+ "que st",
+ "ques t",
+ "q uest",
+ "▁a ut",
+ "▁au t",
+ "▁ aut",
+ "▁res ult",
+ "▁ result",
+ "▁m ay",
+ "▁ma y",
+ "▁ may",
+ "R e",
+ "ht tp",
+ "htt p",
+ "h ttp",
+ ") :",
+ "▁A nd",
+ "▁An d",
+ "▁ And",
+ "re d",
+ "r ed",
+ "▁H ow",
+ "▁Ho w",
+ "▁ How",
+ "p o",
+ "ск о",
+ "с ко",
+ "at t",
+ "a tt",
+ "ou p",
+ "o up",
+ "ce d",
+ "c ed",
+ "▁t ype",
+ "▁typ e",
+ "▁ty pe",
+ "▁ type",
+ "▁t han",
+ "▁th an",
+ "▁ than",
+ "▁c ons",
+ "▁con s",
+ "▁co ns",
+ "▁ cons",
+ "u f",
+ "ц и",
+ "▁qu estion",
+ "▁quest ion",
+ "▁questi on",
+ "▁ question",
+ "ra ph",
+ "rap h",
+ "r aph",
+ "ig h",
+ "i gh",
+ "▁ М",
+ "▁h tt",
+ "▁ htt",
+ "in s",
+ "i ns",
+ "de n",
+ "d en",
+ "▁d a",
+ "▁ da",
+ "▁v er",
+ "▁ve r",
+ "▁ ver",
+ "o h",
+ "▁= >",
+ "▁ =>",
+ "ri v",
+ "r iv",
+ "ud e",
+ "u de",
+ "▁F or",
+ "▁Fo r",
+ "▁ For",
+ "▁r a",
+ "▁ ra",
+ "fr ac",
+ "fra c",
+ "f rac",
+ "м а",
+ "▁a fter",
+ "▁af ter",
+ "▁ after",
+ "} {",
+ "▁m ethod",
+ "▁met hod",
+ "▁ method",
+ "\" )",
+ "am p",
+ "a mp",
+ "as h",
+ "a sh",
+ "▁re c",
+ "▁r ec",
+ "▁ rec",
+ "▁d iffer",
+ "▁dif fer",
+ "▁diff er",
+ "O N",
+ "a x",
+ "am ent",
+ "ame nt",
+ "amen t",
+ "a ment",
+ "our ce",
+ "Co n",
+ "C on",
+ "it s",
+ "i ts",
+ "Na me",
+ "N ame",
+ "ma n",
+ "m an",
+ "▁b ec",
+ "▁be c",
+ "▁ bec",
+ "ch e",
+ "c he",
+ "▁E n",
+ "▁ En",
+ "a j",
+ "▁g ener",
+ "▁ge ner",
+ "▁gen er",
+ "▁gene r",
+ "▁ gener",
+ "I N",
+ "▁i d",
+ "▁ id",
+ "ag es",
+ "age s",
+ "a ges",
+ "▁l oc",
+ "▁lo c",
+ "▁ loc",
+ "f o",
+ "b r",
+ "▁s he",
+ "▁sh e",
+ "▁ she",
+ "Pr o",
+ "P ro",
+ "▁u na",
+ "▁un a",
+ "▁ una",
+ "▁ к",
+ "et a",
+ "e ta",
+ "lo g",
+ "l og",
+ "ol og",
+ "olo g",
+ "o log",
+ "▁s ur",
+ "▁su r",
+ "▁ sur",
+ "ar g",
+ "a rg",
+ "▁- -",
+ "▁ --",
+ "k t",
+ "( \\",
+ "mi n",
+ "m in",
+ "▁l ine",
+ "▁li ne",
+ "▁lin e",
+ "▁ line",
+ "▁v ari",
+ "▁var i",
+ "▁va ri",
+ "▁ vari",
+ "с я",
+ "ic s",
+ "i cs",
+ "н я",
+ "ve ry",
+ "ver y",
+ "v ery",
+ "ad d",
+ "a dd",
+ "▁o bject",
+ "▁ob ject",
+ "▁obj ect",
+ "▁ object",
+ "I d",
+ "▁B ut",
+ "▁Bu t",
+ "▁ But",
+ "▁c ase",
+ "▁cas e",
+ "▁ca se",
+ "▁ case",
+ "▁m ake",
+ "▁ma ke",
+ "▁mak e",
+ "▁ make",
+ "▁c al",
+ "▁ca l",
+ "▁ cal",
+ "▁p ass",
+ "▁pas s",
+ "▁pa ss",
+ "▁ pass",
+ "с ь",
+ "ess ion",
+ "ne t",
+ "n et",
+ ". \"",
+ "▁ г",
+ "ä r",
+ "д е",
+ "n o",
+ "at ing",
+ "ati ng",
+ "atin g",
+ "a ting",
+ "at o",
+ "a to",
+ "li ne",
+ "lin e",
+ "l ine",
+ "в и",
+ "▁E x",
+ "▁ Ex",
+ "▁a ss",
+ "▁as s",
+ "▁ ass",
+ "▁v ers",
+ "▁ver s",
+ "▁ve rs",
+ "▁ vers",
+ "л я",
+ "▁e d",
+ "▁ ed",
+ "um n",
+ "u mn",
+ "ot her",
+ "oth er",
+ "othe r",
+ "o ther",
+ "ст а",
+ "с та",
+ "at ive",
+ "ativ e",
+ "ati ve",
+ "St ring",
+ "Str ing",
+ "S tring",
+ "▁l os",
+ "▁lo s",
+ "▁ los",
+ "w n",
+ "▁an swer",
+ "▁ans wer",
+ "▁ answer",
+ "▁l et",
+ "▁le t",
+ "▁ let",
+ "▁p e",
+ "▁ pe",
+ "en ts",
+ "ent s",
+ "▁f e",
+ "▁ fe",
+ "in ce",
+ "inc e",
+ "n i",
+ "id er",
+ "ide r",
+ "i der",
+ "ow s",
+ "o ws",
+ "▁t est",
+ "▁te st",
+ "▁ test",
+ "▁h ere",
+ "▁he re",
+ "▁her e",
+ "▁ here",
+ "ro ll",
+ "rol l",
+ "r oll",
+ "▁c all",
+ "▁cal l",
+ "▁ca ll",
+ "▁ call",
+ "ru ct",
+ "r uct",
+ "▁p ol",
+ "▁po l",
+ "▁ pol",
+ "ai t",
+ "a it",
+ "▁b ack",
+ "▁ba ck",
+ "▁ back",
+ "h o",
+ "E x",
+ "re ss",
+ "res s",
+ "r ess",
+ "S T",
+ "ri ed",
+ "rie d",
+ "r ied",
+ "da te",
+ "dat e",
+ "d ate",
+ "е т",
+ "▁d id",
+ "▁di d",
+ "▁ did",
+ "ti ng",
+ "t ing",
+ "▁E l",
+ "▁ El",
+ "▁d em",
+ "▁de m",
+ "▁ dem",
+ ") $",
+ "ов а",
+ "о ва",
+ "ur rent",
+ "urr ent",
+ "urre nt",
+ "la ce",
+ "lac e",
+ "l ace",
+ "rig ht",
+ "r ight",
+ "re n",
+ "r en",
+ "п о",
+ "▁e ach",
+ "▁ each",
+ "c y",
+ "bl ock",
+ "blo ck",
+ "b lock",
+ "da ta",
+ "dat a",
+ "d ata",
+ "▁ %",
+ "▁a c",
+ "▁ ac",
+ "▁= =",
+ "▁ ==",
+ "ü r",
+ "▁p or",
+ "▁po r",
+ "▁ por",
+ "as k",
+ "a sk",
+ "ar ch",
+ "arc h",
+ "am es",
+ "ame s",
+ "a mes",
+ "▁C on",
+ "▁Co n",
+ "▁ Con",
+ "ч а",
+ "▁o ff",
+ "▁of f",
+ "▁ off",
+ "▁f ind",
+ "▁fin d",
+ "▁fi nd",
+ "▁ find",
+ "con t",
+ "co nt",
+ "c ont",
+ "▁n ow",
+ "▁no w",
+ "▁ now",
+ "wor k",
+ "w ork",
+ "at ional",
+ "ation al",
+ "ati onal",
+ "atio nal",
+ "d d",
+ "ci ón",
+ "ció n",
+ "c ión",
+ "▁ А",
+ "au lt",
+ "a ult",
+ "Li st",
+ "L ist",
+ "▁e xt",
+ "▁ex t",
+ "▁ ext",
+ "ur s",
+ "u rs",
+ "ak e",
+ "a ke",
+ "ul e",
+ "u le",
+ "▁p oint",
+ "▁po int",
+ "▁poi nt",
+ "▁ point",
+ "A T",
+ "au t",
+ "a ut",
+ "▁tr ans",
+ "▁tra ns",
+ "▁tran s",
+ "▁ trans",
+ "▁c o",
+ "▁ co",
+ "▁re ad",
+ "▁r ead",
+ "▁ read",
+ "▁u sed",
+ "▁us ed",
+ "▁use d",
+ "▁ used",
+ "ск и",
+ "с ки",
+ "ar i",
+ "a ri",
+ "L E",
+ "et er",
+ "ete r",
+ "e ter",
+ "ou n",
+ "o un",
+ "ev er",
+ "e ver",
+ "sel f",
+ "s elf",
+ "in ed",
+ "ine d",
+ "i ned",
+ "id th",
+ "u x",
+ "j s",
+ "▁s uch",
+ "▁su ch",
+ "▁suc h",
+ "▁ such",
+ "▁I s",
+ "▁ Is",
+ "é e",
+ "fu l",
+ "f ul",
+ "▁d ist",
+ "▁di st",
+ "▁dis t",
+ "▁ dist",
+ "▁b u",
+ "▁ bu",
+ "item ize",
+ "Con t",
+ "Co nt",
+ "C ont",
+ "j e",
+ "с и",
+ "▁p rov",
+ "▁pro v",
+ "▁pr ov",
+ "▁ prov",
+ "b b",
+ "wa rd",
+ "war d",
+ "w ard",
+ "es ent",
+ "ese nt",
+ "esen t",
+ "e sent",
+ "er son",
+ "ers on",
+ "an ks",
+ "ank s",
+ "w h",
+ "no t",
+ "n ot",
+ "▁W e",
+ "▁ We",
+ "k a",
+ "ro p",
+ "r op",
+ "at ur",
+ "atu r",
+ "al s",
+ "a ls",
+ "▁b el",
+ "▁be l",
+ "▁ bel",
+ "ö r",
+ "f r",
+ "▁ex ample",
+ "▁exam ple",
+ "▁ example",
+ "▁in cl",
+ "▁inc l",
+ "am il",
+ "ami l",
+ "a mil",
+ "▁р а",
+ "▁ ра",
+ "▁ “",
+ "▁s tring",
+ "▁st ring",
+ "▁str ing",
+ "▁stri ng",
+ "▁ string",
+ "▁th ink",
+ "▁thin k",
+ "T h",
+ "▁t em",
+ "▁te m",
+ "▁ tem",
+ "av e",
+ "a ve",
+ "▁F ran",
+ "▁Fr an",
+ "▁Fra n",
+ "▁ Fran",
+ "▁n umber",
+ "▁num ber",
+ "▁ number",
+ "▁s i",
+ "▁ si",
+ "im es",
+ "ime s",
+ "i mes",
+ "te m",
+ "t em",
+ "m y",
+ "le r",
+ "l er",
+ "lo ad",
+ "= =",
+ "▁h and",
+ "▁ha nd",
+ "▁han d",
+ "▁ hand",
+ "z a",
+ "▁b ecause",
+ "▁bec ause",
+ "▁ because",
+ "▁s ch",
+ "▁sc h",
+ "▁ sch",
+ "v o",
+ "th is",
+ "t his",
+ "I D",
+ "ã o",
+ "▁st art",
+ "▁star t",
+ "▁sta rt",
+ "▁ start",
+ "▁w ar",
+ "▁wa r",
+ "▁ war",
+ "▁he lp",
+ "▁hel p",
+ "▁ help",
+ "t s",
+ "▁c har",
+ "▁ch ar",
+ "▁cha r",
+ "▁ char",
+ "▁p h",
+ "▁ ph",
+ "▁m in",
+ "▁mi n",
+ "▁ min",
+ "ti l",
+ "t il",
+ "ri te",
+ "rit e",
+ "r ite",
+ "-- ------",
+ "---- ----",
+ "--- -----",
+ "------ --",
+ "----- ---",
+ "------- -",
+ "- -------",
+ "el s",
+ "e ls",
+ "▁m it",
+ "▁mi t",
+ "▁ mit",
+ "ed ia",
+ "edi a",
+ "e dia",
+ "к у",
+ "▁S h",
+ "▁ Sh",
+ "an y",
+ "a ny",
+ "] ;",
+ "▁ Б",
+ "iqu e",
+ "i que",
+ "d a",
+ "e f",
+ "de x",
+ "d ex",
+ "▁p rodu",
+ "▁pro du",
+ "▁pr odu",
+ "▁prod u",
+ "▁ produ",
+ "▁ Н",
+ "gr am",
+ "gra m",
+ "g ram",
+ "▁O r",
+ "▁ Or",
+ "▁g re",
+ "▁gr e",
+ "▁ gre",
+ "qu ote",
+ "quot e",
+ "le g",
+ "l eg",
+ "or n",
+ "o rn",
+ "▁in d",
+ "▁i nd",
+ "▁ ind",
+ "▁p ost",
+ "▁po st",
+ "▁pos t",
+ "▁ post",
+ "▁d ep",
+ "▁de p",
+ "▁ dep",
+ "] ,",
+ "v i",
+ "▁u ser",
+ "▁us er",
+ "▁use r",
+ "▁ user",
+ "▁ >",
+ "li ck",
+ "lic k",
+ "l ick",
+ "▁v ery",
+ "▁ver y",
+ "▁ve ry",
+ "▁ very",
+ "et hing",
+ "eth ing",
+ "e thing",
+ "▁ar ray",
+ "▁arr ay",
+ "▁ array",
+ "▁g u",
+ "▁ gu",
+ "▁d ur",
+ "▁du r",
+ "` .",
+ "т ь",
+ "li cation",
+ "lic ation",
+ "lica tion",
+ "ст и",
+ "с ти",
+ "e k",
+ "ic o",
+ "i co",
+ "▁d at",
+ "▁da t",
+ "▁ dat",
+ "о р",
+ "ht ml",
+ "htm l",
+ "h tml",
+ "ion e",
+ "io ne",
+ "i one",
+ "▁d ifferent",
+ "▁differ ent",
+ "▁c heck",
+ "▁che ck",
+ "▁ check",
+ "▁f r",
+ "▁ fr",
+ "▁E r",
+ "▁ Er",
+ "▁t ext",
+ "▁te xt",
+ "▁tex t",
+ "▁ text",
+ "н і",
+ "ic ht",
+ "ich t",
+ "i cht",
+ "st ack",
+ "sta ck",
+ "E N",
+ "ra g",
+ "r ag",
+ "▁e very",
+ "▁ev ery",
+ "▁ever y",
+ "▁ every",
+ "A r",
+ "▁be fore",
+ "▁bef ore",
+ "▁ before",
+ "al se",
+ "als e",
+ "▁f in",
+ "▁fi n",
+ "▁ fin",
+ "▁d é",
+ "▁th ese",
+ "▁the se",
+ "▁d et",
+ "▁de t",
+ "▁ det",
+ "V al",
+ "ce ption",
+ "cept ion",
+ "cep tion",
+ "▁and roid",
+ "▁ android",
+ "block quote",
+ "▁j e",
+ "▁ je",
+ "fil e",
+ "fi le",
+ "f ile",
+ "at s",
+ "a ts",
+ "▁д о",
+ "▁ до",
+ "ess age",
+ "essa ge",
+ "▁ag ain",
+ "a w",
+ "C h",
+ "we en",
+ "w een",
+ "▁ Д",
+ "fo r",
+ "f or",
+ "ci al",
+ "cia l",
+ "c ial",
+ "pl ay",
+ "pla y",
+ "p lay",
+ "pr e",
+ "p re",
+ "id a",
+ "i da",
+ "▁P ar",
+ "▁Pa r",
+ "▁ Par",
+ "n y",
+ "ra ct",
+ "rac t",
+ "r act",
+ "▁s upp",
+ "▁su pp",
+ "▁sup p",
+ "▁ supp",
+ "as ed",
+ "ase d",
+ "a sed",
+ "le ction",
+ "lect ion",
+ "l ection",
+ "▁d ans",
+ "▁da ns",
+ "▁dan s",
+ "ai r",
+ "a ir",
+ "ro l",
+ "r ol",
+ "▁t hr",
+ "▁th r",
+ "Dat a",
+ "Da ta",
+ "D ata",
+ "li ch",
+ "lic h",
+ "l ich",
+ "▁п ро",
+ "▁пр о",
+ "▁ про",
+ "▁l ong",
+ "▁lo ng",
+ "▁lon g",
+ "▁ long",
+ "▁se cond",
+ "▁sec ond",
+ "▁ second",
+ "ual ly",
+ "u ally",
+ "in es",
+ "ine s",
+ "i nes",
+ "▁f ound",
+ "▁fo und",
+ "▁fou nd",
+ "▁ found",
+ "eng th",
+ "y p",
+ "ea d",
+ "e ad",
+ "▁l og",
+ "▁lo g",
+ "▁ log",
+ "u i",
+ "ne w",
+ "n ew",
+ "▁ Р",
+ "g o",
+ "au s",
+ "a us",
+ "od y",
+ "o dy",
+ "▁s on",
+ "▁so n",
+ "▁ son",
+ "м е",
+ "er o",
+ "e ro",
+ "ve d",
+ "v ed",
+ "su b",
+ "s ub",
+ "▁r ight",
+ "▁rig ht",
+ "▁ right",
+ "vi ew",
+ "vie w",
+ "v iew",
+ "▁follow ing",
+ "' )",
+ "\") ;",
+ "\" );",
+ "▁sa id",
+ "ж е",
+ "ч и",
+ "т у",
+ "ot t",
+ "o tt",
+ "с е",
+ "ar s",
+ "a rs",
+ "$ .",
+ "g g",
+ "▁b r",
+ "▁ br",
+ "oo l",
+ "o ol",
+ "yl e",
+ "y le",
+ "us e",
+ "u se",
+ "▁s how",
+ "▁sh ow",
+ "▁sho w",
+ "▁ show",
+ "le ase",
+ "lea se",
+ "ci a",
+ "c ia",
+ "▁d irect",
+ "▁di rect",
+ "▁dire ct",
+ "▁dir ect",
+ "▁ direct",
+ "do c",
+ "d oc",
+ "а р",
+ "m s",
+ "▁g iv",
+ "▁gi v",
+ "▁ giv",
+ "▁e xp",
+ "▁ex p",
+ "▁ exp",
+ "q l",
+ "д у",
+ "в е",
+ "▁B e",
+ "▁ Be",
+ "Co m",
+ "C om",
+ "it er",
+ "ite r",
+ "i ter",
+ "R E",
+ "m p",
+ "me n",
+ "m en",
+ "▁R o",
+ "▁ Ro",
+ "M A",
+ "▁C ol",
+ "▁Co l",
+ "▁ Col",
+ "is ter",
+ "ist er",
+ "iste r",
+ "i ster",
+ "▁w ell",
+ "▁we ll",
+ "▁wel l",
+ "▁ well",
+ "▁< /",
+ "▁ ",
+ "ay out",
+ "at ure",
+ "atur e",
+ "atu re",
+ "iv ers",
+ "ive rs",
+ "iver s",
+ "i vers",
+ "z y",
+ "▁н е",
+ "▁ не",
+ "▁m et",
+ "▁me t",
+ "▁ met",
+ "un e",
+ "u ne",
+ "yt h",
+ "y th",
+ "Ty pe",
+ "Typ e",
+ "T ype",
+ "▁e lement",
+ "▁el ement",
+ "▁ele ment",
+ "▁elem ent",
+ "▁ element",
+ "▁l ink",
+ "▁lin k",
+ "▁ link",
+ "mo d",
+ "m od",
+ "▁bet ween",
+ "▁ between",
+ "ce pt",
+ "cep t",
+ "qu ire",
+ "qui re",
+ "▁th rough",
+ "▁thr ough",
+ "▁thro ugh",
+ "▁ through",
+ "▁wh ile",
+ "▁ while",
+ "▁O n",
+ "▁ On",
+ "th e",
+ "t he",
+ "í a",
+ "▁s omething",
+ "▁some thing",
+ "▁som ething",
+ "▁somet hing",
+ "▁ something",
+ "vo l",
+ "v ol",
+ "▁m ost",
+ "▁mo st",
+ "▁mos t",
+ "▁ most",
+ "s c",
+ "us s",
+ "u ss",
+ "▁c ar",
+ "▁ca r",
+ "▁ car",
+ "▁s m",
+ "▁ sm",
+ "▁р о",
+ "▁ ро",
+ "an o",
+ "a no",
+ "le ft",
+ "lef t",
+ "l eft",
+ "v a",
+ "▁tr ue",
+ "▁ true",
+ "( $",
+ "em s",
+ "e ms",
+ "▁m uch",
+ "▁mu ch",
+ "á s",
+ "▁N ew",
+ "▁Ne w",
+ "▁ New",
+ "▁pro per",
+ "▁pr oper",
+ "▁prop er",
+ "er a",
+ "e ra",
+ "it ed",
+ "ite d",
+ "i ted",
+ "▁d oc",
+ "▁do c",
+ "▁ doc",
+ "ic es",
+ "ice s",
+ "i ces",
+ "Th e",
+ "T he",
+ "▁ ?",
+ "ст о",
+ "с то",
+ "f l",
+ "▁s pec",
+ "▁sp ec",
+ "▁spe c",
+ "▁ spec",
+ "en der",
+ "end er",
+ "ende r",
+ "e nder",
+ "wa y",
+ "w ay",
+ "▁s elf",
+ "▁sel f",
+ "▁ self",
+ "▁e ven",
+ "▁ev en",
+ "▁ even",
+ "і в",
+ "▁с е",
+ "▁ се",
+ "ни я",
+ "▁P r",
+ "▁ Pr",
+ "▁k e",
+ "▁ ke",
+ "em b",
+ "e mb",
+ "▁t able",
+ "▁tab le",
+ "▁ta ble",
+ "▁ table",
+ "▁e qu",
+ "▁eq u",
+ "▁ equ",
+ "li ent",
+ "lie nt",
+ "l ient",
+ "t d",
+ "par t",
+ "pa rt",
+ "p art",
+ "▁pr int",
+ "▁pri nt",
+ "▁prin t",
+ "▁ print",
+ "▁u ne",
+ "▁un e",
+ "▁ une",
+ "if y",
+ "▁- >",
+ "▁ ->",
+ "en e",
+ "e ne",
+ "▁m on",
+ "▁mo n",
+ "▁ mon",
+ "▁d ec",
+ "▁de c",
+ "▁ dec",
+ "▁st ill",
+ "▁о б",
+ "▁ об",
+ "▁T r",
+ "▁ Tr",
+ "▁ ф",
+ "if e",
+ "i fe",
+ "is m",
+ "i sm",
+ "b y",
+ "ra w",
+ "r aw",
+ "io r",
+ "i or",
+ "▁m ed",
+ "▁me d",
+ "▁ med",
+ "or ld",
+ "▁com ple",
+ "▁comp le",
+ "▁compl e",
+ "▁ comple",
+ "w w",
+ "▁a rt",
+ "▁ar t",
+ "▁ art",
+ "ro n",
+ "r on",
+ "▁ Г",
+ "▁M y",
+ "▁ My",
+ "▁a ls",
+ "▁al s",
+ "▁ als",
+ "re ct",
+ "rec t",
+ "r ect",
+ "▁a uf",
+ "▁au f",
+ "▁ auf",
+ "▁d own",
+ "▁do wn",
+ "▁dow n",
+ "▁ down",
+ "at her",
+ "ath er",
+ "a ther",
+ "Co l",
+ "C ol",
+ "Te xt",
+ "Tex t",
+ "T ext",
+ "ba ck",
+ "b ack",
+ "$ ,",
+ "▁y ear",
+ "▁ye ar",
+ "▁ year",
+ "м о",
+ "p i",
+ "▁G r",
+ "▁ Gr",
+ "re am",
+ "rea m",
+ "▁re p",
+ "▁r ep",
+ "▁ rep",
+ "b f",
+ "ww w",
+ "w ww",
+ "▁w ur",
+ "▁o rg",
+ "▁or g",
+ "▁ org",
+ "in ter",
+ "int er",
+ "inte r",
+ "▁D ie",
+ "▁Di e",
+ "▁ Die",
+ "▁b eing",
+ "▁be ing",
+ "▁bei ng",
+ "\" .",
+ "la bel",
+ "lab el",
+ "l abel",
+ "▁c ent",
+ "▁ce nt",
+ "▁ cent",
+ "ja va",
+ "jav a",
+ "j ava",
+ "ba r",
+ "b ar",
+ "an te",
+ "ant e",
+ "an a",
+ "a na",
+ "_ _",
+ "▁sol ution",
+ "▁ О",
+ "▁f l",
+ "▁ fl",
+ "▁c reate",
+ "▁cre ate",
+ "▁ create",
+ "ic i",
+ "i ci",
+ "st e",
+ "s te",
+ "yth on",
+ "yt hon",
+ "un t",
+ "u nt",
+ "as on",
+ "aso n",
+ "a son",
+ "fer ence",
+ "fe rence",
+ "S E",
+ "▁n on",
+ "▁no n",
+ "▁ non",
+ "an e",
+ "a ne",
+ "▁in s",
+ "▁i ns",
+ "▁ ins",
+ "ad er",
+ "ade r",
+ "a der",
+ "_{ \\",
+ "_ {\\",
+ "Re s",
+ "R es",
+ "▁m ain",
+ "▁ma in",
+ "▁mai n",
+ "▁ main",
+ "п и",
+ "▁T here",
+ "▁The re",
+ "▁Th ere",
+ "▁Ther e",
+ "▁ There",
+ "▁p our",
+ "▁po ur",
+ "▁pou r",
+ "R O",
+ "` ,",
+ "li sh",
+ "lis h",
+ "l ish",
+ "b ject",
+ "cc ess",
+ "c cess",
+ "▁o rig",
+ "▁or ig",
+ "▁ orig",
+ "is chen",
+ "isch en",
+ "ische n",
+ "isc hen",
+ "i schen",
+ "ow er",
+ "owe r",
+ "o wer",
+ "▁h et",
+ "▁he t",
+ "▁ het",
+ "u c",
+ "▁el se",
+ "▁els e",
+ "▁ else",
+ "» .",
+ "▁о т",
+ "▁ от",
+ "eq u",
+ "e qu",
+ "si ble",
+ "s ible",
+ "te st",
+ "tes t",
+ "t est",
+ "st and",
+ "sta nd",
+ "stan d",
+ "é n",
+ "et s",
+ "e ts",
+ "G E",
+ "id ent",
+ "ide nt",
+ "iden t",
+ "i dent",
+ "▁ е",
+ "▁п ри",
+ "▁пр и",
+ "▁ при",
+ ". ,",
+ "▁d as",
+ "▁da s",
+ "▁ das",
+ "oc k",
+ "o ck",
+ ", \"",
+ "▁v ol",
+ "▁vo l",
+ "▁ vol",
+ "▁f o",
+ "▁ fo",
+ "▁p ara",
+ "▁par a",
+ "▁pa ra",
+ "▁ para",
+ "▁ Т",
+ "▁C ar",
+ "▁Ca r",
+ "▁ Car",
+ "ra l",
+ "r al",
+ "▁S p",
+ "▁ Sp",
+ "va r",
+ "v ar",
+ "▁p lay",
+ "▁pl ay",
+ "▁pla y",
+ "▁ play",
+ "ou se",
+ "ous e",
+ "o use",
+ "▁т а",
+ "▁ та",
+ "ic ally",
+ "ical ly",
+ "▁con tain",
+ "▁cont ain",
+ "pon se",
+ "▁S tring",
+ "▁St ring",
+ "▁Str ing",
+ "▁ String",
+ "á n",
+ "▁b oth",
+ "▁bo th",
+ "▁bot h",
+ "▁ both",
+ "ke n",
+ "k en",
+ "A R",
+ "ер е",
+ "е ре",
+ "▁I l",
+ "▁ Il",
+ "▁is s",
+ "▁i ss",
+ "▁ iss",
+ "▁o pen",
+ "▁op en",
+ "▁ open",
+ "▁ )",
+ "▁W hat",
+ "▁Wh at",
+ "▁ What",
+ "f e",
+ "riv ate",
+ "re g",
+ "r eg",
+ "▁with out",
+ "▁ without",
+ "▁z u",
+ "▁ zu",
+ "vi s",
+ "v is",
+ "fl ow",
+ "f low",
+ "▁h ttp",
+ "▁htt p",
+ "▁ http",
+ "ab ase",
+ "aba se",
+ "a base",
+ "▁w ord",
+ "▁wor d",
+ "▁wo rd",
+ "▁ word",
+ "▁ch ange",
+ "▁chang e",
+ "▁ change",
+ "▁work s",
+ "▁wor ks",
+ "▁ works",
+ "▁g e",
+ "▁ ge",
+ "▁ !",
+ "▁e en",
+ "▁ een",
+ "it le",
+ "▁e vent",
+ "▁even t",
+ "▁ev ent",
+ "▁ event",
+ "wo rd",
+ "wor d",
+ "w ord",
+ "an do",
+ "and o",
+ "S B",
+ "re m",
+ "r em",
+ "▁f ield",
+ "▁fi eld",
+ "▁fiel d",
+ "▁ field",
+ "vi ng",
+ "vin g",
+ "v ing",
+ "Se r",
+ "S er",
+ "▁o ur",
+ "▁ou r",
+ "▁ our",
+ "▁qu i",
+ "▁q ui",
+ "▁ qui",
+ "▁o per",
+ "▁op er",
+ "▁ oper",
+ "▁is t",
+ "▁i st",
+ "▁ ist",
+ "de f",
+ "d ef",
+ "▁m ade",
+ "▁ma de",
+ "▁mad e",
+ "▁ made",
+ "ни е",
+ "p x",
+ "▁m en",
+ "▁me n",
+ "▁ men",
+ "r m",
+ "ai s",
+ "a is",
+ "ce nt",
+ "cen t",
+ "c ent",
+ "li st",
+ "lis t",
+ "l ist",
+ "T o",
+ "▁T o",
+ "▁ To",
+ "j a",
+ "ve rt",
+ "ver t",
+ "v ert",
+ "▁m ar",
+ "▁ma r",
+ "▁ mar",
+ "val ue",
+ "valu e",
+ "▁ „",
+ "\" ;",
+ "▁a us",
+ "▁au s",
+ "▁ aus",
+ "▁B r",
+ "▁ Br",
+ "ol e",
+ "o le",
+ "▁m ult",
+ "▁mu lt",
+ "▁mul t",
+ "▁ mult",
+ "oug ht",
+ "ough t",
+ "▁m at",
+ "▁ma t",
+ "▁ mat",
+ "▁v iew",
+ "▁vi ew",
+ "▁vie w",
+ "▁ view",
+ "fi l",
+ "f il",
+ "▁с о",
+ "▁ со",
+ "г а",
+ "▁v oid",
+ "▁vo id",
+ "▁ void",
+ "▁g ood",
+ "▁go od",
+ "▁ good",
+ "б о",
+ "C T",
+ "▁m any",
+ "▁ma ny",
+ "▁man y",
+ "▁ many",
+ "be n",
+ "b en",
+ "▁в о",
+ "▁ во",
+ "▁к а",
+ "▁ ка",
+ "▁s ystem",
+ "▁sys tem",
+ "▁syst em",
+ "▁ system",
+ "in o",
+ "i no",
+ "▁an other",
+ "▁ano ther",
+ "▁ another",
+ "▁re st",
+ "▁r est",
+ "▁res t",
+ "▁ rest",
+ "us er",
+ "use r",
+ "u ser",
+ "il ity",
+ "ili ty",
+ "a i",
+ "▁m ight",
+ "▁mig ht",
+ "us tom",
+ "ust om",
+ "usto m",
+ "▁or der",
+ "▁ord er",
+ "▁ order",
+ "▁V er",
+ "▁Ve r",
+ "▁ Ver",
+ "S S",
+ "} )",
+ "▁e ff",
+ "▁ eff",
+ "д о",
+ "et t",
+ "e tt",
+ "▁s ign",
+ "▁si gn",
+ "▁sig n",
+ "▁ sign",
+ "м у",
+ "I T",
+ "st ring",
+ "str ing",
+ "s tring",
+ "el le",
+ "ell e",
+ "e lle",
+ "▁s ing",
+ "▁si ng",
+ "▁sin g",
+ "▁ sing",
+ "cu l",
+ "c ul",
+ "▁tr ying",
+ "▁try ing",
+ "▁b eg",
+ "▁be g",
+ "▁ beg",
+ "▁p age",
+ "▁pa ge",
+ "▁pag e",
+ "▁ page",
+ "х о",
+ "▁C an",
+ "▁Ca n",
+ "▁ Can",
+ "▁S er",
+ "▁Se r",
+ "▁ Ser",
+ "+ +",
+ "▁m ust",
+ "▁mus t",
+ "▁mu st",
+ "▁ must",
+ "▁val ues",
+ "▁value s",
+ "▁valu es",
+ "▁ values",
+ "▁k ey",
+ "▁ke y",
+ "▁ key",
+ "ib le",
+ "i ble",
+ "] .",
+ "ir d",
+ "i rd",
+ "▁pro gram",
+ "▁pr ogram",
+ "▁ program",
+ "roll er",
+ "rol ler",
+ "rolle r",
+ "▁c onne",
+ "▁con ne",
+ "▁conn e",
+ "▁ conne",
+ "▁s ay",
+ "▁sa y",
+ "▁ say",
+ "▁p aram",
+ "▁par am",
+ "▁para m",
+ "▁pa ram",
+ "▁ param",
+ "ach e",
+ "ac he",
+ "a che",
+ "ve lop",
+ "vel op",
+ "▁s elect",
+ "▁se lect",
+ "▁sel ect",
+ "▁sele ct",
+ "▁ select",
+ "▁f amil",
+ "▁fa mil",
+ "▁fam il",
+ "▁ famil",
+ "▁l ast",
+ "▁la st",
+ "▁las t",
+ "▁ last",
+ "▁Th anks",
+ "▁Thank s",
+ "▁ Thanks",
+ "▁p op",
+ "▁po p",
+ "▁ pop",
+ "} .",
+ "e q",
+ "▁does n",
+ "[ '",
+ "▁t erm",
+ "▁te rm",
+ "▁ter m",
+ "▁ term",
+ "▁r é",
+ "▁ ré",
+ "▁d ocument",
+ "▁doc ument",
+ "▁ document",
+ "п а",
+ "л у",
+ "at eg",
+ "ate g",
+ ". )",
+ "li ng",
+ "lin g",
+ "l ing",
+ "ion al",
+ "io nal",
+ "iona l",
+ "i onal",
+ "ab les",
+ "able s",
+ "abl es",
+ "a bles",
+ "▁t ak",
+ "▁ta k",
+ "ut ton",
+ "utt on",
+ "utto n",
+ "▁a rg",
+ "▁ar g",
+ "▁ arg",
+ "ty pe",
+ "typ e",
+ "t ype",
+ "▁s ure",
+ "▁su re",
+ "▁sur e",
+ "▁re al",
+ "▁ real",
+ "▁w eb",
+ "▁we b",
+ "▁ web",
+ "▁c urrent",
+ "▁cur rent",
+ "▁curr ent",
+ "▁ current",
+ "▁P l",
+ "▁ Pl",
+ "ch o",
+ "c ho",
+ "ment s",
+ "men ts",
+ "m ents",
+ "▁J oh",
+ "▁Jo h",
+ "ot s",
+ "o ts",
+ "▁ex ist",
+ "▁ exist",
+ "н у",
+ "▁f ür",
+ "▁ für",
+ "▁и з",
+ "▁ из",
+ "d o",
+ "но го",
+ "ног о",
+ "н ого",
+ "▁l as",
+ "▁la s",
+ "▁ las",
+ "▁n ull",
+ "▁nu ll",
+ "▁ null",
+ "▁in form",
+ "▁inf orm",
+ "▁info rm",
+ "▁ Л",
+ "▁v ersion",
+ "▁vers ion",
+ "▁ version",
+ "▁c hang",
+ "▁ch ang",
+ "▁cha ng",
+ "ag er",
+ "age r",
+ "a ger",
+ "▁C omm",
+ "▁Com m",
+ "▁Co mm",
+ "▁ Comm",
+ "л і",
+ "us h",
+ "u sh",
+ "▁G e",
+ "▁ Ge",
+ "▁h igh",
+ "▁hi gh",
+ "▁ high",
+ "▁in put",
+ "▁ input",
+ "og le",
+ "o gle",
+ "ro s",
+ "r os",
+ "bo x",
+ "b ox",
+ "ge n",
+ "g en",
+ "▁s te",
+ "▁st e",
+ "▁ ste",
+ "▁l ocal",
+ "▁lo cal",
+ "▁loc al",
+ "▁ local",
+ "I m",
+ "▁pro cess",
+ "▁proc ess",
+ "▁proces s",
+ "▁ process",
+ "ter nal",
+ "tern al",
+ "t ernal",
+ "iz ed",
+ "ize d",
+ "i zed",
+ "г и",
+ "é t",
+ "▁I nd",
+ "▁In d",
+ "▁ Ind",
+ "▁o ch",
+ "▁oc h",
+ "▁ och",
+ "l t",
+ "▁col umn",
+ "▁ column",
+ "▁t ried",
+ "▁tr ied",
+ "▁tri ed",
+ "▁comm and",
+ "▁comma nd",
+ "▁ command",
+ "▁b est",
+ "▁be st",
+ "▁bes t",
+ "▁ best",
+ "as ter",
+ "ast er",
+ "aste r",
+ "a ster",
+ "з а",
+ "▁p rim",
+ "▁pr im",
+ "▁pri m",
+ "▁ prim",
+ "▁m odel",
+ "▁mod el",
+ "▁mo del",
+ "▁mode l",
+ "▁ model",
+ "▁ і",
+ "▁th ose",
+ "it ies",
+ "iti es",
+ "itie s",
+ "i ties",
+ "è re",
+ "▁р е",
+ "▁ ре",
+ "ј е",
+ "ш и",
+ "qu es",
+ "que s",
+ "q ues",
+ "▁A m",
+ "▁ Am",
+ "▁o wn",
+ "▁ow n",
+ "▁ own",
+ "li n",
+ "l in",
+ "з и",
+ "Val ue",
+ "th ing",
+ "t hing",
+ "▁ ,",
+ "▁T e",
+ "▁ Te",
+ "▁st ud",
+ "▁ stud",
+ "▁u m",
+ "▁ um",
+ "▁ser ver",
+ "▁serv er",
+ "▁serve r",
+ "▁ server",
+ "il le",
+ "ill e",
+ "i lle",
+ "▁p ut",
+ "▁pu t",
+ "▁ put",
+ "at iv",
+ "ati v",
+ "g y",
+ "ов и",
+ "о ви",
+ "ra f",
+ "r af",
+ "ов о",
+ "о во",
+ "▁wur de",
+ "▁W hen",
+ "▁Wh en",
+ "▁Whe n",
+ "▁ When",
+ "▁d iv",
+ "▁di v",
+ "▁ div",
+ "an ts",
+ "ant s",
+ "▁t er",
+ "▁te r",
+ "▁ ter",
+ "▁part ic",
+ "▁parti c",
+ "▁ т",
+ "▁D o",
+ "▁ Do",
+ "▁N o",
+ "▁ No",
+ "se rt",
+ "ser t",
+ "s ert",
+ "id o",
+ "i do",
+ "math cal",
+ "ad e",
+ "a de",
+ "▁I I",
+ "▁ II",
+ "le ar",
+ "lea r",
+ "l ear",
+ "og raph",
+ "o graph",
+ "en se",
+ "ens e",
+ "▁r ow",
+ "▁ro w",
+ "▁ row",
+ "nu m",
+ "n um",
+ "▁pos sible",
+ "▁poss ible",
+ "▁possib le",
+ "▁ possible",
+ "▁s ince",
+ "▁sin ce",
+ "▁ since",
+ "▁B o",
+ "▁ Bo",
+ "ct ions",
+ "ction s",
+ "▁I m",
+ "▁ Im",
+ "O R",
+ "ц і",
+ "▁i de",
+ "▁id e",
+ "▁ ide",
+ "ma p",
+ "m ap",
+ "▁cor rect",
+ "▁corre ct",
+ "▁corr ect",
+ "▁ correct",
+ "ve s",
+ "v es",
+ "ph p",
+ "p hp",
+ "▁out put",
+ "▁ output",
+ "▁P h",
+ "▁ Ph",
+ "A L",
+ "ar ed",
+ "are d",
+ "a red",
+ "\\ \\",
+ "▁im age",
+ "▁imag e",
+ "▁ image",
+ "es ch",
+ "esc h",
+ "e sch",
+ "ж и",
+ "▁con f",
+ "▁ conf",
+ "po r",
+ "p or",
+ "qu ery",
+ "que ry",
+ "quer y",
+ "ur es",
+ "ure s",
+ "u res",
+ "iu m",
+ "i um",
+ "en ds",
+ "end s",
+ "▁A b",
+ "▁ Ab",
+ "SB N",
+ "і д",
+ "et her",
+ "eth er",
+ "ethe r",
+ "e ther",
+ "pt ions",
+ "ption s",
+ "it u",
+ "i tu",
+ "li b",
+ "l ib",
+ "n s",
+ "k i",
+ "▁work ing",
+ "▁wor king",
+ "▁ working",
+ "▁c omo",
+ "▁com o",
+ "▁co mo",
+ "▁ como",
+ "▁T hen",
+ "▁The n",
+ "▁Th en",
+ "▁ Then",
+ "M L",
+ "ke y",
+ "k ey",
+ "cl ass",
+ "cla ss",
+ "c lass",
+ "op le",
+ "o ple",
+ "itt le",
+ "▁m atch",
+ "▁mat ch",
+ "▁ match",
+ "way s",
+ "wa ys",
+ "w ays",
+ "math bb",
+ "▁re quire",
+ "▁requ ire",
+ "▁ require",
+ "al t",
+ "a lt",
+ "▁v is",
+ "▁vi s",
+ "▁ vis",
+ "▁b l",
+ "▁ bl",
+ "▁c alled",
+ "▁cal led",
+ "▁call ed",
+ "▁ called",
+ "It em",
+ "I tem",
+ "ur a",
+ "u ra",
+ "ve c",
+ "v ec",
+ "em e",
+ "e me",
+ "▁d ella",
+ "▁de lla",
+ "▁del la",
+ "▁dell a",
+ "em bre",
+ "emb re",
+ "ur g",
+ "u rg",
+ "S e",
+ "▁re quest",
+ "▁requ est",
+ "▁req uest",
+ "▁ request",
+ "is che",
+ "isch e",
+ "isc he",
+ "i sche",
+ "▁p ort",
+ "▁po rt",
+ "▁por t",
+ "▁ port",
+ "▁inst ead",
+ "= \\",
+ "▁ У",
+ "ho r",
+ "h or",
+ "en te",
+ "ent e",
+ "um e",
+ "u me",
+ "er d",
+ "e rd",
+ "с а",
+ "▁w hy",
+ "▁wh y",
+ "▁ why",
+ "ri st",
+ "ris t",
+ "r ist",
+ "▁p erson",
+ "▁per son",
+ "▁pers on",
+ "▁ person",
+ "▁. ..",
+ "▁.. .",
+ "▁ ...",
+ "▁p rivate",
+ "▁priv ate",
+ "▁ private",
+ "▁t ot",
+ "▁to t",
+ "▁ tot",
+ "ph a",
+ "p ha",
+ "if t",
+ "i ft",
+ "it a",
+ "i ta",
+ "lo c",
+ "l oc",
+ "▁o ld",
+ "▁ol d",
+ "▁ old",
+ "о н",
+ "▁n el",
+ "▁ne l",
+ "▁ nel",
+ "' ]",
+ "t i",
+ "ie t",
+ "i et",
+ "ci te",
+ "cit e",
+ "c ite",
+ "ple ment",
+ "pl ement",
+ "p lement",
+ "▁a bove",
+ "▁ab ove",
+ "▁ above",
+ "k s",
+ "re ady",
+ "read y",
+ "rea dy",
+ "▁c ome",
+ "▁com e",
+ "▁co me",
+ "▁ come",
+ "se ction",
+ "sec tion",
+ "sect ion",
+ "s ection",
+ "▁P ol",
+ "▁Po l",
+ "▁ Pol",
+ "▁w rit",
+ "▁wr it",
+ "▁ writ",
+ "▁htt ps",
+ "▁http s",
+ "▁ https",
+ "▁$ $",
+ "▁ $$",
+ "▁ »",
+ "▁bu ild",
+ "▁ build",
+ "it o",
+ "i to",
+ "▁cons ider",
+ "▁consid er",
+ "af t",
+ "a ft",
+ "Ap p",
+ "A pp",
+ ", \\",
+ "ind ows",
+ "indow s",
+ "indo ws",
+ "com m",
+ "co mm",
+ "c omm",
+ "▁ ;",
+ "gr ound",
+ "gro und",
+ "g round",
+ "▁p lace",
+ "▁pl ace",
+ "▁pla ce",
+ "▁ place",
+ "B y",
+ "▁pro ject",
+ "▁ project",
+ "Ob ject",
+ "Obj ect",
+ "O bject",
+ "▁re pr",
+ "▁rep r",
+ "en ces",
+ "ence s",
+ "enc es",
+ "ind ow",
+ "indo w",
+ "z t",
+ "▁f iles",
+ "▁file s",
+ "▁fil es",
+ "▁fi les",
+ "▁ files",
+ "c z",
+ "iv ity",
+ "ivi ty",
+ "i vity",
+ "▁in it",
+ "▁i nit",
+ "▁ init",
+ "▁p rob",
+ "▁pro b",
+ "▁pr ob",
+ "▁ prob",
+ "▁s k",
+ "▁ sk",
+ "or th",
+ "ort h",
+ "im ent",
+ "ime nt",
+ "imen t",
+ "i ment",
+ "ou ble",
+ "at al",
+ "ata l",
+ "a tal",
+ "ir c",
+ "i rc",
+ "▁ è",
+ "▁b re",
+ "▁br e",
+ "▁ bre",
+ "is ta",
+ "ist a",
+ "i sta",
+ "in put",
+ "▁ И",
+ "но й",
+ "su m",
+ "s um",
+ "pa th",
+ "pat h",
+ "p ath",
+ "▁c our",
+ "▁co ur",
+ "▁cou r",
+ "▁t oo",
+ "▁to o",
+ "▁A d",
+ "▁ Ad",
+ "▁G u",
+ "▁ Gu",
+ "▁f alse",
+ "▁fal se",
+ "▁ false",
+ "▁f un",
+ "▁fu n",
+ "▁ fun",
+ "▁с т",
+ "▁ ст",
+ "oo d",
+ "o od",
+ "è s",
+ "▁e nc",
+ "▁en c",
+ "▁ enc",
+ "bo l",
+ "b ol",
+ "r l",
+ "ar get",
+ "arg et",
+ "or der",
+ "ord er",
+ "orde r",
+ "▁me an",
+ "▁ mean",
+ "п е",
+ "ig en",
+ "ige n",
+ "i gen",
+ "▁п ре",
+ "▁пр е",
+ "▁ пре",
+ "wid th",
+ "w idth",
+ "; \r",
+ "it or",
+ "ito r",
+ "i tor",
+ "▁st ate",
+ "▁stat e",
+ "▁sta te",
+ "▁ state",
+ "▁gre at",
+ "en n",
+ "e nn",
+ "bi n",
+ "b in",
+ "E r",
+ "Mo d",
+ "M od",
+ "o z",
+ "▁w on",
+ "▁wo n",
+ "▁ won",
+ "▁f act",
+ "▁fa ct",
+ "▁fac t",
+ "▁ fact",
+ "▁j ava",
+ "▁ja va",
+ "▁jav a",
+ "▁ java",
+ "▁Un ivers",
+ "▁ Univers",
+ "▁c ap",
+ "▁ca p",
+ "▁ cap",
+ "is tor",
+ "ist or",
+ "isto r",
+ "i stor",
+ "} (",
+ "k u",
+ "it her",
+ "ith er",
+ "i ther",
+ "al es",
+ "ale s",
+ "a les",
+ "▁o u",
+ "▁ ou",
+ "ro ss",
+ "ros s",
+ "r oss",
+ "▁t ake",
+ "▁tak e",
+ "▁ta ke",
+ "▁ take",
+ "ri x",
+ "r ix",
+ "lo b",
+ "l ob",
+ "▁e ine",
+ "▁ein e",
+ "as es",
+ "ase s",
+ "▁a ccess",
+ "▁acc ess",
+ "▁ac cess",
+ "▁ access",
+ "it é",
+ "i té",
+ "is tr",
+ "ist r",
+ "i str",
+ "iz ation",
+ "iza tion",
+ "▁app ro",
+ "▁ap pro",
+ "▁ appro",
+ "ba ll",
+ "bal l",
+ "b all",
+ "▁m ak",
+ "▁ma k",
+ "} ^",
+ "▁C ons",
+ "▁Con s",
+ "▁Co ns",
+ "▁ Cons",
+ "pr ess",
+ "pre ss",
+ "pres s",
+ "p ress",
+ "se rv",
+ "ser v",
+ "s erv",
+ "() .",
+ "( ).",
+ "a f",
+ "▁re f",
+ "▁r ef",
+ "▁ ref",
+ ") \\",
+ "▁cont in",
+ "s u",
+ "iv er",
+ "ive r",
+ "i ver",
+ "▁c ond",
+ "▁con d",
+ "▁co nd",
+ "▁ cond",
+ "▁ex pect",
+ "▁exp ect",
+ "▁ expect",
+ "▁char act",
+ "▁cha ract",
+ "ber t",
+ "be rt",
+ "b ert",
+ "el t",
+ "e lt",
+ "ter s",
+ "te rs",
+ "t ers",
+ "scri pt",
+ "scr ipt",
+ "s cript",
+ "▁E d",
+ "▁ Ed",
+ "ap t",
+ "a pt",
+ "') ;",
+ "' );",
+ "pr int",
+ "▁s ize",
+ "▁si ze",
+ "▁ size",
+ "▁s ich",
+ "▁si ch",
+ "▁sic h",
+ "fa ce",
+ "fac e",
+ "f ace",
+ "en den",
+ "end en",
+ "ende n",
+ "▁A mer",
+ "▁Am er",
+ "▁ Amer",
+ "if ied",
+ "ifi ed",
+ "ifie d",
+ "ó w",
+ "▁S u",
+ "▁ Su",
+ "te s",
+ "t es",
+ "me d",
+ "m ed",
+ "▁R eg",
+ "▁Re g",
+ "▁ Reg",
+ "so le",
+ "sol e",
+ "s ole",
+ "▁in clud",
+ "▁incl ud",
+ "▁inclu d",
+ "▁ includ",
+ "in i",
+ "i ni",
+ "in ci",
+ "inc i",
+ "▁p la",
+ "▁pl a",
+ "▁ pla",
+ "▁l eft",
+ "▁le ft",
+ "▁ left",
+ "d f",
+ "Pa r",
+ "P ar",
+ "▁A ll",
+ "▁Al l",
+ "▁ All",
+ "▁o cc",
+ "▁oc c",
+ "▁ occ",
+ "▁A t",
+ "▁ At",
+ "▁c r",
+ "▁ cr",
+ "Q u",
+ "▁g iven",
+ "▁giv en",
+ "▁give n",
+ "▁gi ven",
+ "▁S ystem",
+ "▁Syst em",
+ "▁ System",
+ "ic an",
+ "ica n",
+ "i can",
+ "▁f inal",
+ "▁fin al",
+ "▁fi nal",
+ "▁ final",
+ "it ions",
+ "ition s",
+ "iti ons",
+ "▁б ы",
+ "▁ бы",
+ "▁per form",
+ "▁perf orm",
+ "▁ perform",
+ "A N",
+ "▁M e",
+ "▁ Me",
+ "ur o",
+ "u ro",
+ "▁T hat",
+ "▁Th at",
+ "▁ That",
+ "г ра",
+ "▁П о",
+ "▁ По",
+ "▁в и",
+ "▁ ви",
+ "ab ly",
+ "abl y",
+ "▁pr esent",
+ "▁pre sent",
+ "▁pres ent",
+ "▁ present",
+ "du ct",
+ "d uct",
+ "ri c",
+ "r ic",
+ "▁E ng",
+ "▁En g",
+ "▁ Eng",
+ "tr y",
+ "t ry",
+ "▁l ar",
+ "▁la r",
+ "▁ lar",
+ "b l",
+ "id d",
+ "i dd",
+ "▁ä r",
+ "▁ är",
+ "or a",
+ "o ra",
+ "L L",
+ "os s",
+ "o ss",
+ "▁I SBN",
+ "▁ ISBN",
+ "▁th ree",
+ "▁thr ee",
+ "▁thre e",
+ "▁ three",
+ "j o",
+ "n í",
+ "r c",
+ "▁f ar",
+ "▁fa r",
+ "▁ far",
+ "▁N ot",
+ "▁No t",
+ "▁ Not",
+ "▁l ittle",
+ "▁litt le",
+ "di s",
+ "d is",
+ "at i",
+ "a ti",
+ "fun ction",
+ "func tion",
+ "f unction",
+ "▁a ble",
+ "▁ab le",
+ "▁ able",
+ "le ss",
+ "les s",
+ "l ess",
+ "с о",
+ "▁p ath",
+ "▁pat h",
+ "▁pa th",
+ "▁ path",
+ "▁p res",
+ "▁pr es",
+ "▁pre s",
+ "▁ pres",
+ "lo se",
+ "los e",
+ "l ose",
+ "P I",
+ "▁iss ue",
+ "▁issu e",
+ "▁ issue",
+ "ack age",
+ "ti me",
+ "tim e",
+ "t ime",
+ "ig e",
+ "i ge",
+ "am s",
+ "a ms",
+ "▁C l",
+ "▁ Cl",
+ "ail s",
+ "ai ls",
+ "a ils",
+ "al k",
+ "i i",
+ "ш е",
+ "pe n",
+ "p en",
+ "Q L",
+ "▁e as",
+ "R L",
+ "ce l",
+ "c el",
+ "▁s l",
+ "▁ sl",
+ "▁a sk",
+ "▁as k",
+ "▁ ask",
+ "▁n om",
+ "▁no m",
+ "▁ nom",
+ "▁t op",
+ "▁to p",
+ "▁ top",
+ "id es",
+ "ide s",
+ "i des",
+ "in dex",
+ "ind ex",
+ "inde x",
+ "é m",
+ "▁h app",
+ "▁ha pp",
+ "o x",
+ "c d",
+ "▁b etter",
+ "▁bet ter",
+ "▁lo ad",
+ "▁ load",
+ "ad os",
+ "ado s",
+ "ze n",
+ "z en",
+ "▁c e",
+ "▁ ce",
+ "▁f a",
+ "▁ fa",
+ "▁J ohn",
+ "▁Joh n",
+ "▁Jo hn",
+ "▁ John",
+ "IM A",
+ "I MA",
+ "▁B ar",
+ "▁Ba r",
+ "▁ Bar",
+ "over flow",
+ "▁д е",
+ "▁ де",
+ "ne ss",
+ "nes s",
+ "n ess",
+ "ce r",
+ "c er",
+ "▁H ere",
+ "▁He re",
+ "▁Her e",
+ "▁ Here",
+ "re t",
+ "r et",
+ "▁s z",
+ "▁ sz",
+ "amb da",
+ "op y",
+ "o py",
+ "ur l",
+ "u rl",
+ "p y",
+ "r t",
+ "▁under stand",
+ "a ł",
+ "he r",
+ "h er",
+ "# #",
+ "▁ch ild",
+ "▁chi ld",
+ "▁ child",
+ "▁ex ec",
+ "▁ exec",
+ "▁app lication",
+ "▁applic ation",
+ "▁ application",
+ "▁st ruct",
+ "▁str uct",
+ "▁stru ct",
+ "▁ struct",
+ "▁ я",
+ "Fil e",
+ "Fi le",
+ "F ile",
+ "▁c ert",
+ "▁ce rt",
+ "▁cer t",
+ "▁ cert",
+ "is on",
+ "iso n",
+ "i son",
+ "▁vari able",
+ "▁ variable",
+ "D E",
+ "r s",
+ "▁re ally",
+ "▁real ly",
+ "Po rt",
+ "P ort",
+ "b a",
+ "▁B er",
+ "▁Be r",
+ "▁ Ber",
+ "▁in te",
+ "▁int e",
+ "▁ inte",
+ "▁st atic",
+ "▁stat ic",
+ "▁stati c",
+ "▁ static",
+ "▁con fig",
+ "▁conf ig",
+ "▁ config",
+ "▁S he",
+ "▁Sh e",
+ "▁ She",
+ "est ions",
+ "estion s",
+ "esti ons",
+ "▁p lus",
+ "▁pl us",
+ "▁ plus",
+ "▁h ab",
+ "▁ha b",
+ "▁ hab",
+ "op e",
+ "o pe",
+ "▁m us",
+ "▁mu s",
+ "▁ mus",
+ "▁c ount",
+ "▁co unt",
+ "▁coun t",
+ "▁cou nt",
+ "▁ count",
+ "M E",
+ "▁su pport",
+ "▁supp ort",
+ "▁sup port",
+ "▁ support",
+ "▁pe ople",
+ "▁ people",
+ "▁b eh",
+ "▁be h",
+ "▁al ready",
+ "T r",
+ "▁d one",
+ "▁do ne",
+ "▁don e",
+ "▁ done",
+ "de m",
+ "d em",
+ "si ze",
+ "s ize",
+ "al pha",
+ "alph a",
+ "▁d isc",
+ "▁di sc",
+ "▁dis c",
+ "] )",
+ "▁M an",
+ "▁Ma n",
+ "▁ Man",
+ "▁m il",
+ "▁mi l",
+ "▁ mil",
+ "▁st and",
+ "▁sta nd",
+ "▁stan d",
+ "▁ stand",
+ "▁gr oup",
+ "▁gro up",
+ "▁ group",
+ "▁sm all",
+ "▁ small",
+ "▁m ag",
+ "▁ma g",
+ "▁ mag",
+ "ст ь",
+ "с ть",
+ "▁de fault",
+ "▁def ault",
+ "▁ default",
+ "▁sing le",
+ "▁sin gle",
+ "▁ single",
+ "lin k",
+ "l ink",
+ "cl ude",
+ "clud e",
+ "▁e ar",
+ "▁ ear",
+ "il ar",
+ "ila r",
+ "i lar",
+ "** **",
+ "*** *",
+ "* ***",
+ "▁f ix",
+ "▁fi x",
+ "▁ fix",
+ "le y",
+ "l ey",
+ "▁p as",
+ "▁pa s",
+ "▁ pas",
+ "ни й",
+ "iss ion",
+ "▁im plement",
+ "▁imp lement",
+ "▁impl ement",
+ "it ch",
+ "▁го да",
+ "▁год а",
+ "▁al ways",
+ "▁ always",
+ "▁J ah",
+ "▁Ja h",
+ "pr ing",
+ "p ring",
+ "ç ão",
+ "pl ate",
+ "pla te",
+ "p late",
+ "▁de scri",
+ "▁des cri",
+ "▁desc ri",
+ "▁h ead",
+ "▁he ad",
+ "▁ head",
+ "in it",
+ "ini t",
+ "i nit",
+ "og raf",
+ "▁qu ery",
+ "▁que ry",
+ "▁quer y",
+ "▁ query",
+ "iv ed",
+ "ive d",
+ "i ved",
+ "▁in g",
+ "▁i ng",
+ "▁ ing",
+ "pt y",
+ "p ty",
+ "h a",
+ "▁m ov",
+ "▁mo v",
+ "▁ mov",
+ "▁ э",
+ "et te",
+ "ett e",
+ "e tte",
+ "il y",
+ "i ly",
+ "▁g ot",
+ "▁go t",
+ "▁ got",
+ "il ed",
+ "ile d",
+ "i led",
+ "ic ro",
+ "i cro",
+ "▁w r",
+ "▁ wr",
+ "р я",
+ "▁n ever",
+ "▁ne ver",
+ "▁nev er",
+ "or es",
+ "ore s",
+ "o res",
+ "▁b as",
+ "▁ba s",
+ "▁ bas",
+ "io s",
+ "i os",
+ "la ck",
+ "lac k",
+ "l ack",
+ "ain t",
+ "ai nt",
+ "a int",
+ "vi ous",
+ "v ious",
+ "▁g ive",
+ "▁giv e",
+ "▁gi ve",
+ "id ad",
+ "ida d",
+ "E n",
+ "ны й",
+ "н ый",
+ "ta ble",
+ "tab le",
+ "t able",
+ "▁Н а",
+ "▁ На",
+ "▁p at",
+ "▁pa t",
+ "▁ pat",
+ "то р",
+ "т ор",
+ "an gu",
+ "ang u",
+ "lo y",
+ "l oy",
+ "▁s eg",
+ "▁se g",
+ "▁ seg",
+ "ar ray",
+ "arr ay",
+ "▁F l",
+ "▁ Fl",
+ "▁in dex",
+ "▁ind ex",
+ "▁inde x",
+ "▁ index",
+ "▁s w",
+ "▁ sw",
+ "IMA GE",
+ "IM AGE",
+ "▁k m",
+ "▁ km",
+ "б и",
+ "Cl ass",
+ "Cla ss",
+ "C lass",
+ "en a",
+ "e na",
+ "ме н",
+ "м ен",
+ "com p",
+ "co mp",
+ "c omp",
+ "at us",
+ "atu s",
+ "ra p",
+ "r ap",
+ "▁L ist",
+ "▁Li st",
+ "▁Lis t",
+ "▁ List",
+ "Er ror",
+ "Err or",
+ "E rror",
+ "▁t yp",
+ "▁ty p",
+ "▁ typ",
+ "▁м а",
+ "▁ ма",
+ "c s",
+ "' :",
+ "j i",
+ "▁How ever",
+ "▁ However",
+ "▁т е",
+ "▁ те",
+ "▁be low",
+ "▁bel ow",
+ "▁ below",
+ "▁A pp",
+ "▁Ap p",
+ "▁ App",
+ "щ е",
+ "} _",
+ "bu m",
+ "b um",
+ "vi r",
+ "v ir",
+ "ée s",
+ "é es",
+ "▁re cord",
+ "▁rec ord",
+ "▁ record",
+ "ta in",
+ "t ain",
+ "le m",
+ "l em",
+ "it al",
+ "ita l",
+ "i tal",
+ "▁i mp",
+ "▁im p",
+ "▁ imp",
+ "eg o",
+ "e go",
+ "▁o d",
+ "▁ od",
+ "▁re ce",
+ "▁rec e",
+ "▁ rece",
+ "mi t",
+ "m it",
+ "ff ic",
+ "f fic",
+ "stack overflow",
+ "ie ve",
+ "iev e",
+ "▁ З",
+ "▁n ov",
+ "▁no v",
+ "▁ nov",
+ "ц е",
+ "▁In tern",
+ "▁Int ern",
+ "▁Inter n",
+ "▁ Intern",
+ "b u",
+ "▁s ugg",
+ "▁su gg",
+ "▁sug g",
+ "▁l oop",
+ "▁lo op",
+ "▁ loop",
+ "ri de",
+ "rid e",
+ "r ide",
+ "▁$ (",
+ "▁ $(",
+ "▁s uper",
+ "▁su per",
+ "▁sup er",
+ "▁ super",
+ "ri d",
+ "r id",
+ "ны х",
+ "н ых",
+ "▁P er",
+ "▁Pe r",
+ "▁ Per",
+ "▁d om",
+ "▁do m",
+ "▁ dom",
+ "= '",
+ "ut sch",
+ "uts ch",
+ "le n",
+ "l en",
+ "▁w rite",
+ "▁writ e",
+ "▁wr ite",
+ "▁ write",
+ "▁in v",
+ "▁ inv",
+ "ou th",
+ "out h",
+ "o uth",
+ "▁H er",
+ "▁He r",
+ "▁ Her",
+ "▁y ears",
+ "▁year s",
+ "▁ye ars",
+ "▁or iginal",
+ "▁orig inal",
+ "▁origin al",
+ "▁ original",
+ "eg a",
+ "e ga",
+ "▁S te",
+ "▁St e",
+ "▁ Ste",
+ "▁se ems",
+ "▁see ms",
+ "▁seem s",
+ "é g",
+ "▁n ext",
+ "▁ne xt",
+ "▁ next",
+ "ed er",
+ "ede r",
+ "e der",
+ "▁N e",
+ "▁ Ne",
+ "av as",
+ "ava s",
+ "a vas",
+ "ific ation",
+ "ifi cation",
+ "ifica tion",
+ "Ex ception",
+ "▁D er",
+ "▁De r",
+ "▁ Der",
+ "▁v e",
+ "▁ ve",
+ "at ic",
+ "ati c",
+ "ha t",
+ "h at",
+ "br ary",
+ "bra ry",
+ "re turn",
+ "ret urn",
+ "ur ch",
+ "is ion",
+ "isi on",
+ "m i",
+ "oi nt",
+ "oin t",
+ "o int",
+ "▁d ay",
+ "▁da y",
+ "▁ day",
+ "ic tion",
+ "ict ion",
+ "i ction",
+ "á l",
+ "▁é s",
+ "▁ és",
+ "▁th ough",
+ "▁thou gh",
+ "▁ though",
+ "ac tion",
+ "act ion",
+ "a ction",
+ "í t",
+ "un gen",
+ "ung en",
+ "unge n",
+ "ou rs",
+ "our s",
+ "o urs",
+ "▁s cript",
+ "▁scr ipt",
+ "▁scri pt",
+ "▁ script",
+ "▁in formation",
+ "▁inform ation",
+ "▁ information",
+ "▁mult i",
+ "▁mul ti",
+ "▁ multi",
+ "▁\\ \\",
+ "▁ \\\\",
+ "st er",
+ "ste r",
+ "s ter",
+ "к е",
+ "A C",
+ "ci es",
+ "cie s",
+ "c ies",
+ "▁dis play",
+ "▁disp lay",
+ "▁ display",
+ "om an",
+ "oma n",
+ "o man",
+ "Tim e",
+ "T ime",
+ "iu s",
+ "i us",
+ ")) ;",
+ ") );",
+ "tr e",
+ "t re",
+ "▁l im",
+ "▁li m",
+ "▁ lim",
+ "at ely",
+ "ate ly",
+ "atel y",
+ "é d",
+ "is te",
+ "ist e",
+ "i ste",
+ "▁с а",
+ "▁ са",
+ "pos t",
+ "po st",
+ "p ost",
+ "ue l",
+ "u el",
+ "im g",
+ "▁ ч",
+ "ск а",
+ "с ка",
+ "el d",
+ "e ld",
+ "pp er",
+ "ppe r",
+ "p per",
+ "ul a",
+ "u la",
+ "▁gener al",
+ "▁gen eral",
+ "▁gene ral",
+ "▁ general",
+ "A l",
+ "For m",
+ "F orm",
+ "▁u pon",
+ "▁up on",
+ "z o",
+ "am ente",
+ "ament e",
+ "amen te",
+ "a mente",
+ "▁p rom",
+ "▁pro m",
+ "▁pr om",
+ "▁ prom",
+ "▁ ü",
+ "le x",
+ "l ex",
+ "▁t urn",
+ "▁tu rn",
+ "▁tur n",
+ "▁ turn",
+ "▁м е",
+ "▁ ме",
+ "en tion",
+ "ent ion",
+ "enti on",
+ "ле н",
+ "л ен",
+ "▁a f",
+ "▁ af",
+ "ic le",
+ "i cle",
+ "ст в",
+ "с тв",
+ "▁F il",
+ "▁ Fil",
+ "▁ Ф",
+ "ava script",
+ "avas cript",
+ "Ma n",
+ "M an",
+ "ar a",
+ "a ra",
+ "wa re",
+ "war e",
+ "w are",
+ "al ign",
+ "ali gn",
+ "an gle",
+ "ang le",
+ "▁S c",
+ "▁ Sc",
+ "un ic",
+ "uni c",
+ "u nic",
+ "▁f ran",
+ "▁fr an",
+ "▁fra n",
+ "▁ fran",
+ "U n",
+ "z i",
+ "me t",
+ "m et",
+ "Ad d",
+ "A dd",
+ "▁p ub",
+ "▁pu b",
+ "▁ pub",
+ "ко в",
+ "к ов",
+ "▁g en",
+ "▁ge n",
+ "▁ gen",
+ "▁p od",
+ "▁po d",
+ "▁ pod",
+ "▁s um",
+ "▁su m",
+ "▁ sum",
+ "▁h aving",
+ "▁ha ving",
+ "▁hav ing",
+ "▁a vec",
+ "▁av ec",
+ "▁ave c",
+ "s l",
+ "▁f ig",
+ "▁fi g",
+ "▁ fig",
+ "▁R es",
+ "▁Re s",
+ "▁ Res",
+ "Dat e",
+ "Da te",
+ "D ate",
+ "ul es",
+ "ule s",
+ "u les",
+ "wi th",
+ "w ith",
+ "ски й",
+ "с кий",
+ "g u",
+ "E T",
+ "▁b ro",
+ "▁br o",
+ "▁ bro",
+ "ri e",
+ "r ie",
+ "ap s",
+ "a ps",
+ "en ding",
+ "end ing",
+ "endi ng",
+ "ma il",
+ "mai l",
+ "m ail",
+ "oo k",
+ "o ok",
+ "▁su ccess",
+ "▁succ ess",
+ "▁suc cess",
+ "▁ success",
+ "ber g",
+ "be rg",
+ "b erg",
+ "▁d eb",
+ "▁de b",
+ "▁ deb",
+ "el ta",
+ "elt a",
+ "() `",
+ "( )`",
+ "ent ial",
+ "enti al",
+ "fr ame",
+ "fra me",
+ "fram e",
+ "f rame",
+ "Ke y",
+ "K ey",
+ "in n",
+ "i nn",
+ "▁sim ple",
+ "▁simp le",
+ "▁simpl e",
+ "▁ simple",
+ "iv al",
+ "iva l",
+ "i val",
+ "▁c are",
+ "▁car e",
+ "▁ca re",
+ "▁ care",
+ "▁W eb",
+ "▁We b",
+ "▁ Web",
+ "\") .",
+ "\" ).",
+ ">< /",
+ "> ",
+ "▁d atabase",
+ "▁data base",
+ "▁dat abase",
+ "▁datab ase",
+ "▁ database",
+ "▁N ow",
+ "▁No w",
+ "▁ Now",
+ "In d",
+ "I nd",
+ "▁м о",
+ "▁ мо",
+ "ch t",
+ "c ht",
+ "ba n",
+ "b an",
+ "ra m",
+ "r am",
+ "equ ation",
+ "sk i",
+ "s ki",
+ "ie f",
+ "i ef",
+ "li m",
+ "l im",
+ "Ge t",
+ "G et",
+ "▁t re",
+ "▁tr e",
+ "▁ tre",
+ "at en",
+ "ate n",
+ "a ten",
+ "be d",
+ "b ed",
+ "▁J e",
+ "▁ Je",
+ "▁result s",
+ "▁ results",
+ "л ю",
+ "те ль",
+ "тел ь",
+ "т ель",
+ "d b",
+ "▁b it",
+ "▁bi t",
+ "▁ bit",
+ "bo dy",
+ "b ody",
+ "Ar ray",
+ "Arr ay",
+ "m u",
+ "pr ession",
+ "press ion",
+ "p ression",
+ "▁с та",
+ "▁ст а",
+ "▁ ста",
+ "on y",
+ "o ny",
+ "if f",
+ "i ff",
+ "▁b ar",
+ "▁ba r",
+ "▁ bar",
+ "▁Ar ch",
+ "▁Arc h",
+ "▁ Arch",
+ "ber s",
+ "be rs",
+ "b ers",
+ ") {",
+ "▁M on",
+ "▁Mo n",
+ "▁ Mon",
+ "▁do ing",
+ "▁doi ng",
+ "▁pro f",
+ "▁pr of",
+ "▁ prof",
+ "▁inst all",
+ "▁instal l",
+ "▁ install",
+ "▁p osition",
+ "▁pos ition",
+ "▁posit ion",
+ "▁ position",
+ "em a",
+ "e ma",
+ "▁} );",
+ "▁}) ;",
+ "▁ });",
+ "Pat h",
+ "Pa th",
+ "P ath",
+ "al i",
+ "a li",
+ "▁& &",
+ "▁ &&",
+ "le v",
+ "l ev",
+ "▁c annot",
+ "▁can not",
+ "▁M ay",
+ "▁Ma y",
+ "▁ May",
+ "in st",
+ "ins t",
+ "- \\",
+ "▁c oun",
+ "▁co un",
+ "▁cou n",
+ "▁a ng",
+ "▁an g",
+ "▁ ang",
+ "▁app ear",
+ "▁appe ar",
+ "co r",
+ "c or",
+ "ci ó",
+ "c ió",
+ "id ed",
+ "ide d",
+ "i ded",
+ "qu estions",
+ "quest ions",
+ "question s",
+ "at ter",
+ "att er",
+ "atte r",
+ "▁P a",
+ "▁ Pa",
+ "se lect",
+ "sel ect",
+ "s elect",
+ "▁pr inci",
+ "▁prin ci",
+ "E vent",
+ "▁s ide",
+ "▁si de",
+ "▁sid e",
+ "▁ side",
+ "▁m em",
+ "▁me m",
+ "▁ mem",
+ "▁J an",
+ "▁Ja n",
+ "▁ Jan",
+ "ar io",
+ "ari o",
+ "a rio",
+ "▁with in",
+ "▁wit hin",
+ "▁V al",
+ "▁Va l",
+ "▁ Val",
+ "ode s",
+ "od es",
+ "o des",
+ "idd le",
+ "ur ation",
+ "ura tion",
+ "br a",
+ "b ra",
+ "▁d ate",
+ "▁da te",
+ "▁dat e",
+ "▁ date",
+ "[ ]",
+ "▁en tre",
+ "▁ent re",
+ "▁entr e",
+ "▁ entre",
+ "il i",
+ "i li",
+ "Port ail",
+ "doc s",
+ "do cs",
+ "d ocs",
+ "ско й",
+ "с кой",
+ "El ement",
+ "E lement",
+ "▁m essage",
+ "▁mess age",
+ "▁ message",
+ "▁n ach",
+ "▁na ch",
+ "▁nac h",
+ "▁ nach",
+ "▁d uring",
+ "▁du ring",
+ "▁dur ing",
+ "▁g ra",
+ "▁gr a",
+ "▁ gra",
+ "et work",
+ "▁B y",
+ "▁ By",
+ "▁t ell",
+ "▁te ll",
+ "▁tel l",
+ "et e",
+ "e te",
+ "~ \\",
+ "▁b is",
+ "▁bi s",
+ "▁ bis",
+ "▁p u",
+ "▁ pu",
+ "▁re d",
+ "▁r ed",
+ "▁ red",
+ "▁t hing",
+ "▁th ing",
+ "▁thin g",
+ "▁ thing",
+ "▁s ort",
+ "▁so rt",
+ "▁sor t",
+ "▁ sort",
+ "xi m",
+ "x im",
+ "ir es",
+ "ire s",
+ "i res",
+ "Use r",
+ "Us er",
+ "U ser",
+ "io d",
+ "i od",
+ "▁E st",
+ "▁Es t",
+ "▁ Est",
+ "os ed",
+ "ose d",
+ "o sed",
+ "ou te",
+ "out e",
+ "o ute",
+ "▁L es",
+ "▁Le s",
+ "▁ Les",
+ "▁s ent",
+ "▁se nt",
+ "▁sen t",
+ "▁ sent",
+ "rib ute",
+ "ribu te",
+ "ut es",
+ "ute s",
+ "u tes",
+ "ist ory",
+ "istor y",
+ "isto ry",
+ "i story",
+ "▁ser vice",
+ "▁serv ice",
+ "▁servi ce",
+ "▁ service",
+ "' ;",
+ "fi eld",
+ "f ield",
+ "▁I N",
+ "▁ IN",
+ "ens ion",
+ "re l",
+ "r el",
+ "▁go ing",
+ "▁ going",
+ "we b",
+ "w eb",
+ "Con text",
+ "Cont ext",
+ "▁l ater",
+ "▁la ter",
+ "▁lat er",
+ "▁late r",
+ "u k",
+ "lay out",
+ "l ayout",
+ "on a",
+ "o na",
+ "á t",
+ "---- ------------",
+ "-------- --------",
+ "------------ ----",
+ "------ ----------",
+ "---------- ------",
+ "▁ex act",
+ "an dom",
+ "and om",
+ "ando m",
+ "▁s ie",
+ "▁si e",
+ "I I",
+ "▁The y",
+ "▁Th ey",
+ "▁ They",
+ "ment e",
+ "men te",
+ "m ente",
+ "ib li",
+ "▁f ine",
+ "▁fin e",
+ "▁fi ne",
+ "U T",
+ "▁de velop",
+ "▁deve lop",
+ "▁ develop",
+ "▁E in",
+ "so ft",
+ "of f",
+ "o ff",
+ "Se t",
+ "S et",
+ "▁a z",
+ "▁ az",
+ "et ers",
+ "eter s",
+ "ete rs",
+ "e ters",
+ "il der",
+ "ild er",
+ "ilde r",
+ "i lder",
+ "ple s",
+ "pl es",
+ "p les",
+ "▁spec ific",
+ "▁ specific",
+ "▁o m",
+ "▁ om",
+ "er ror",
+ "err or",
+ "e rror",
+ "ent ly",
+ "▁fil m",
+ "▁fi lm",
+ "▁ film",
+ "uc k",
+ "u ck",
+ "ain s",
+ "ai ns",
+ "a ins",
+ "ac ión",
+ "ació n",
+ "aci ón",
+ "a ción",
+ "ge s",
+ "g es",
+ "ж а",
+ "▁th ings",
+ "▁thing s",
+ "▁thin gs",
+ "S h",
+ "▁th ought",
+ "▁though t",
+ "▁ad ded",
+ "▁add ed",
+ "▁ added",
+ "de p",
+ "d ep",
+ "ско го",
+ "ск ого",
+ "ског о",
+ "с кого",
+ "▁L i",
+ "▁ Li",
+ "il s",
+ "i ls",
+ "yn c",
+ "y nc",
+ "▁т о",
+ "▁ то",
+ "ri es",
+ "rie s",
+ "r ies",
+ "▁c u",
+ "▁ cu",
+ "ch en",
+ "che n",
+ "c hen",
+ "IO N",
+ "I ON",
+ "▁D es",
+ "▁De s",
+ "▁ Des",
+ "ult ado",
+ "ir t",
+ "i rt",
+ "▁b ased",
+ "▁bas ed",
+ "▁base d",
+ "▁ba sed",
+ "▁ based",
+ "▁m o",
+ "▁ mo",
+ "▁d est",
+ "▁de st",
+ "▁des t",
+ "▁ dest",
+ "pn g",
+ "p ng",
+ "re en",
+ "ree n",
+ "r een",
+ "▁r unning",
+ "▁run ning",
+ "▁ running",
+ "am ma",
+ "amm a",
+ "ou d",
+ "o ud",
+ "▁re fer",
+ "▁ref er",
+ "▁ refer",
+ "io us",
+ "i ous",
+ "▁J ul",
+ "▁Ju l",
+ "▁ Jul",
+ "▁s earch",
+ "▁se arch",
+ "▁ search",
+ "al d",
+ "a ld",
+ "ed e",
+ "e de",
+ "▁w rong",
+ "▁wr ong",
+ "A n",
+ "▁u ntil",
+ "▁un til",
+ "▁ until",
+ "si te",
+ "s ite",
+ "ay er",
+ "aye r",
+ "a yer",
+ "▁on ce",
+ "▁ once",
+ "ar r",
+ "a rr",
+ "▁again st",
+ "== ==",
+ "=== =",
+ "= ===",
+ "▁s ource",
+ "▁ source",
+ "ar n",
+ "a rn",
+ "ap i",
+ "a pi",
+ "▁re present",
+ "▁repr esent",
+ "▁repres ent",
+ "▁repre sent",
+ "▁a ff",
+ "▁af f",
+ "▁ aff",
+ "▁s ein",
+ "▁se in",
+ "▁sei n",
+ "▁ sein",
+ "▁al low",
+ "▁all ow",
+ "▁allo w",
+ "▁ allow",
+ "or mal",
+ "orm al",
+ "en ded",
+ "end ed",
+ "ende d",
+ "▁cont rol",
+ "▁contr ol",
+ "▁contro l",
+ "▁ control",
+ "math bf",
+ "com e",
+ "co me",
+ "c ome",
+ "cu r",
+ "c ur",
+ "en do",
+ "end o",
+ "w a",
+ "▁up date",
+ "▁upd ate",
+ "▁ update",
+ "▁in side",
+ "▁ins ide",
+ "▁ inside",
+ "▁re ason",
+ "▁ reason",
+ "om en",
+ "ome n",
+ "o men",
+ "▁в ы",
+ "▁ вы",
+ "D e",
+ "▁ј е",
+ "▁ је",
+ "s w",
+ "▁s ever",
+ "▁se ver",
+ "O f",
+ "▁inst ance",
+ "▁ instance",
+ "▁m er",
+ "▁me r",
+ "▁ mer",
+ "▁e ffect",
+ "▁eff ect",
+ "▁ effect",
+ "col or",
+ "co lor",
+ "colo r",
+ "ug ust",
+ "il t",
+ "i lt",
+ "de s",
+ "d es",
+ "it z",
+ "i tz",
+ "ul ation",
+ "ula tion",
+ "u lation",
+ "ni e",
+ "n ie",
+ "▁W orld",
+ "▁Wor ld",
+ "▁ World",
+ "▁sim ilar",
+ "▁ similar",
+ "ym bol",
+ "hi ng",
+ "hin g",
+ "h ing",
+ "▁m ark",
+ "▁mar k",
+ "▁ mark",
+ "St ate",
+ "Stat e",
+ "▁cont ent",
+ "▁conten t",
+ "▁conte nt",
+ "▁ content",
+ "▁me ans",
+ "▁mean s",
+ "am ed",
+ "ame d",
+ "a med",
+ "▁E nd",
+ "▁En d",
+ "▁ End",
+ "N D",
+ "co unt",
+ "cou nt",
+ "c ount",
+ "▁In st",
+ "▁Ins t",
+ "▁ Inst",
+ "per ty",
+ "pert y",
+ "ct or",
+ "c tor",
+ "▁{ \\",
+ "▁ {\\",
+ "▁L et",
+ "▁Le t",
+ "▁ Let",
+ "▁! =",
+ "▁ !=",
+ "▁get ting",
+ "▁ getting",
+ "ut h",
+ "u th",
+ "um ber",
+ "umb er",
+ "▁Cons ultado",
+ "sch aft",
+ "sc haft",
+ "le te",
+ "let e",
+ "l ete",
+ "▁W ill",
+ "▁Wil l",
+ "▁Wi ll",
+ "▁ Will",
+ "▁E m",
+ "▁ Em",
+ "he ad",
+ "h ead",
+ "▁l eg",
+ "▁le g",
+ "▁ leg",
+ "но м",
+ "н ом",
+ "O r",
+ "ar m",
+ "a rm",
+ "pon d",
+ "po nd",
+ "p ond",
+ "▁Ch rist",
+ "▁Chris t",
+ "▁Chr ist",
+ "▁ Christ",
+ "▁a round",
+ "▁ar ound",
+ "▁ around",
+ "▁c lear",
+ "▁cl ear",
+ "▁cle ar",
+ "▁ clear",
+ "▁h ref",
+ "▁hr ef",
+ "▁ href",
+ "▁S ee",
+ "▁Se e",
+ "▁ See",
+ "') .",
+ "' ).",
+ "▁cre ated",
+ "▁create d",
+ "▁ created",
+ "▁b utton",
+ "▁but ton",
+ "▁ button",
+ "in ing",
+ "ini ng",
+ "i ning",
+ "▁c lick",
+ "▁cl ick",
+ "▁cli ck",
+ "▁ click",
+ "ia m",
+ "i am",
+ "pl it",
+ "p lit",
+ "F or",
+ "▁p olit",
+ "▁po lit",
+ "▁pol it",
+ "▁ polit",
+ "▁se em",
+ "▁see m",
+ "▁l ife",
+ "▁li fe",
+ "▁lif e",
+ "▁ life",
+ "но в",
+ "н ов",
+ "▁in tern",
+ "▁int ern",
+ "▁inter n",
+ "▁inte rn",
+ "▁ intern",
+ "щ и",
+ "se l",
+ "s el",
+ "so ci",
+ "s oci",
+ "▁s tor",
+ "▁st or",
+ "▁sto r",
+ "▁ stor",
+ "cl e",
+ "c le",
+ "ear ch",
+ "e arch",
+ "and roid",
+ "andro id",
+ "andr oid",
+ "}^ {",
+ "} ^{",
+ "▁e ither",
+ "▁f ew",
+ "▁fe w",
+ "▁init ial",
+ "▁initi al",
+ "▁ initial",
+ "l ength",
+ "ri a",
+ "r ia",
+ "sq l",
+ "s ql",
+ "wi k",
+ "w ik",
+ "▁é t",
+ "▁ ét",
+ "ue r",
+ "u er",
+ "▁val id",
+ "▁ valid",
+ "An d",
+ "A nd",
+ "in clude",
+ "includ e",
+ "ur y",
+ "u ry",
+ "▁s us",
+ "▁su s",
+ "ir ed",
+ "ire d",
+ "i red",
+ "▁A fter",
+ "▁Af ter",
+ "▁ After",
+ "▁d ue",
+ "▁du e",
+ "▁ due",
+ "▁b ei",
+ "▁be i",
+ "▁ bei",
+ "our ces",
+ "ource s",
+ "▁N ov",
+ "▁No v",
+ "▁ Nov",
+ "Ac t",
+ "A ct",
+ "▁C ont",
+ "▁Con t",
+ "▁Co nt",
+ "▁ Cont",
+ "▁bre ak",
+ "▁ break",
+ "es ted",
+ "est ed",
+ "este d",
+ "e sted",
+ "▁act ually",
+ "▁actual ly",
+ "▁actu ally",
+ "el se",
+ "els e",
+ "tm l",
+ "t ml",
+ "re r",
+ "r er",
+ "on es",
+ "one s",
+ "o nes",
+ "▁de sign",
+ "▁des ign",
+ "▁ design",
+ "▁pro perty",
+ "▁proper ty",
+ "▁ property",
+ "ph i",
+ "p hi",
+ "al ity",
+ "ali ty",
+ "oc h",
+ "o ch",
+ "is ts",
+ "ist s",
+ "▁ ·",
+ "ud io",
+ "udi o",
+ "A B",
+ "al a",
+ "a la",
+ "ion es",
+ "io nes",
+ "ione s",
+ "i ones",
+ "ф и",
+ "fin d",
+ "fi nd",
+ "f ind",
+ "A s",
+ "▁c ustom",
+ "▁cust om",
+ "▁ custom",
+ "▁a nn",
+ "▁an n",
+ "▁ ann",
+ "E S",
+ "O T",
+ "l ambda",
+ "▁i dent",
+ "▁id ent",
+ "▁ide nt",
+ "▁ ident",
+ "▁or gan",
+ "▁org an",
+ "▁ organ",
+ "▁C ent",
+ "▁Ce nt",
+ "▁ Cent",
+ "▁C har",
+ "▁Ch ar",
+ "▁Cha r",
+ "▁ Char",
+ "▁o s",
+ "▁ os",
+ "▁h ard",
+ "▁ha rd",
+ "▁har d",
+ "▁ hard",
+ "ро в",
+ "р ов",
+ "▁/ >",
+ "▁ />",
+ "k o",
+ "▁ex per",
+ "▁exp er",
+ "▁se par",
+ "▁sep ar",
+ "▁ separ",
+ "y l",
+ "ou rn",
+ "our n",
+ "o urn",
+ "▁d ev",
+ "▁de v",
+ "▁ dev",
+ "▁a uch",
+ "▁au ch",
+ "▁auc h",
+ "▁ auch",
+ "▁b lock",
+ "▁bl ock",
+ "▁blo ck",
+ "▁ block",
+ "bo ok",
+ "b ook",
+ "▁m ap",
+ "▁ma p",
+ "▁ map",
+ "il la",
+ "ill a",
+ "i lla",
+ "▁com put",
+ "▁comp ut",
+ "▁ comput",
+ "▁s pace",
+ "▁sp ace",
+ "▁spac e",
+ "▁ space",
+ "res ult",
+ ") }",
+ "▁e cho",
+ "▁ec ho",
+ "▁ echo",
+ "con fig",
+ "conf ig",
+ "h i",
+ "▁lar ge",
+ "▁larg e",
+ "▁ large",
+ "▁w idth",
+ "▁wid th",
+ "▁ width",
+ "▁G o",
+ "▁ Go",
+ "ma t",
+ "m at",
+ "▁d iff",
+ "▁di ff",
+ "▁dif f",
+ "▁ diff",
+ "▁k ind",
+ "▁ki nd",
+ "▁kin d",
+ "▁ kind",
+ "an ces",
+ "ance s",
+ "anc es",
+ "yn am",
+ "yna m",
+ "y nam",
+ "▁col or",
+ "▁co lor",
+ "▁ color",
+ "In t",
+ "I nt",
+ "so l",
+ "s ol",
+ "▁p i",
+ "▁ pi",
+ "▁char acter",
+ "▁charact er",
+ "▁ character",
+ "om ent",
+ "ome nt",
+ "omen t",
+ "o ment",
+ "▁res ponse",
+ "▁respons e",
+ "▁ response",
+ "ig ma",
+ "ward s",
+ "war ds",
+ "w ards",
+ "ar row",
+ "arr ow",
+ "с у",
+ "ti es",
+ "t ies",
+ "▁ü ber",
+ "▁ über",
+ "Im age",
+ "y d",
+ "▁п ере",
+ "▁пер е",
+ "▁пе ре",
+ "▁ пере",
+ "▁n ode",
+ "▁no de",
+ "▁nod e",
+ "▁ node",
+ "▁it em",
+ "▁i tem",
+ "▁ item",
+ "ach ine",
+ "achi ne",
+ "im a",
+ "i ma",
+ "▁v a",
+ "▁ va",
+ "▁appro ach",
+ "▁w er",
+ "▁we r",
+ "▁ wer",
+ "▁ч е",
+ "▁ че",
+ "O n",
+ "ol low",
+ "oll ow",
+ "он а",
+ "о на",
+ "ct ed",
+ "c ted",
+ "ur ed",
+ "ure d",
+ "u red",
+ "Cont roller",
+ "Control ler",
+ "li ed",
+ "lie d",
+ "l ied",
+ "▁j o",
+ "▁ jo",
+ "▁d al",
+ "▁da l",
+ "▁ dal",
+ "un k",
+ "▁ î",
+ "st art",
+ "sta rt",
+ "star t",
+ "ol a",
+ "o la",
+ "▁com pon",
+ "▁comp on",
+ "I C",
+ "bi t",
+ "b it",
+ "▁b ase",
+ "▁bas e",
+ "▁ba se",
+ "▁ base",
+ "п у",
+ "▁id ea",
+ "▁ide a",
+ "▁ idea",
+ "▁d ire",
+ "▁di re",
+ "▁dir e",
+ "▁ dire",
+ "▁r ad",
+ "▁ra d",
+ "▁ rad",
+ "gr oup",
+ "gro up",
+ "▁W ith",
+ "▁Wi th",
+ "▁Wit h",
+ "▁ With",
+ "ser ver",
+ "serv er",
+ "serve r",
+ "si de",
+ "s ide",
+ "si ng",
+ "sin g",
+ "s ing",
+ "▁d ies",
+ "▁di es",
+ "▁die s",
+ "▁n ear",
+ "▁ne ar",
+ "▁ near",
+ "▁v oor",
+ "▁vo or",
+ "▁ voor",
+ "▁arg ument",
+ "▁ argument",
+ "▁} ,",
+ "▁ },",
+ "▁l and",
+ "▁la nd",
+ "▁lan d",
+ "▁ land",
+ "▁n ames",
+ "▁name s",
+ "▁na mes",
+ "▁nam es",
+ "▁ names",
+ "▁o ption",
+ "▁op tion",
+ "▁opt ion",
+ "▁ option",
+ "ith ub",
+ "pp ed",
+ "ppe d",
+ "p ped",
+ "au g",
+ "a ug",
+ "▁l inks",
+ "▁link s",
+ "▁lin ks",
+ "▁ links",
+ "▁f ull",
+ "▁fu ll",
+ "▁ful l",
+ "▁ full",
+ "▁s itu",
+ "▁si tu",
+ "▁sit u",
+ "▁con sole",
+ "▁cons ole",
+ "▁ console",
+ "▁e tc",
+ "▁et c",
+ "▁ etc",
+ "au x",
+ "a ux",
+ "▁C or",
+ "▁Co r",
+ "▁ Cor",
+ "icro soft",
+ "▁c ame",
+ "▁cam e",
+ "▁ca me",
+ "lo cal",
+ "loc al",
+ "l ocal",
+ "▁k nown",
+ "▁kn own",
+ "▁know n",
+ "▁ known",
+ "▁multi ple",
+ "▁multip le",
+ "▁ multiple",
+ "angu age",
+ "▁t otal",
+ "▁to tal",
+ "▁tot al",
+ "▁ total",
+ "ol ogy",
+ "olog y",
+ "olo gy",
+ "ä t",
+ "▁ Х",
+ "▁f re",
+ "▁fr e",
+ "▁ fre",
+ "▁t en",
+ "▁te n",
+ "▁ ten",
+ "ide o",
+ "▁b es",
+ "▁be s",
+ "▁ bes",
+ "tr ue",
+ "Qu ery",
+ "Que ry",
+ "om m",
+ "o mm",
+ "▁A rt",
+ "▁Ar t",
+ "▁ Art",
+ "▁ke ep",
+ "▁ keep",
+ "▁Un iversity",
+ "▁Univers ity",
+ "re ate",
+ "rea te",
+ "pp ort",
+ "ppo rt",
+ "p port",
+ "▁p ython",
+ "▁ python",
+ "tr a",
+ "t ra",
+ "ect or",
+ "ec tor",
+ "e ctor",
+ "р і",
+ "op h",
+ "o ph",
+ "▁c onc",
+ "▁con c",
+ "▁co nc",
+ "▁f our",
+ "▁fo ur",
+ "▁fou r",
+ "▁ four",
+ "vi ron",
+ "vir on",
+ "▁v ia",
+ "▁vi a",
+ "▁ via",
+ "? \"",
+ "im age",
+ "ima ge",
+ "ol l",
+ "o ll",
+ "ны е",
+ "н ые",
+ "▁con text",
+ "▁cont ext",
+ "▁conte xt",
+ "▁ context",
+ "▁s em",
+ "▁se m",
+ "▁ sem",
+ ". _",
+ "▁e ng",
+ "▁en g",
+ "▁ eng",
+ "ma r",
+ "m ar",
+ "A D",
+ "▁m or",
+ "▁mo r",
+ "▁ mor",
+ "▁C al",
+ "▁Ca l",
+ "▁ Cal",
+ "▁c ell",
+ "▁ce ll",
+ "▁cel l",
+ "▁ cell",
+ "im al",
+ "ima l",
+ "i mal",
+ "AT E",
+ "A TE",
+ "▁in f",
+ "▁ inf",
+ "ö n",
+ "uf fer",
+ "uff er",
+ "s q",
+ ".. ..",
+ "... .",
+ ". ...",
+ "▁z ur",
+ "▁zu r",
+ "W ith",
+ "ра н",
+ "р ан",
+ "ch n",
+ "c hn",
+ "▁d oor",
+ "▁do or",
+ "▁ door",
+ "cont ent",
+ "▁m iss",
+ "▁mi ss",
+ "▁mis s",
+ "▁ miss",
+ "▁s imp",
+ "▁sim p",
+ "▁si mp",
+ "▁ simp",
+ "á r",
+ "ir a",
+ "i ra",
+ "▁h at",
+ "▁ha t",
+ "▁ hat",
+ "Te st",
+ "T est",
+ "▁c ertain",
+ "▁cert ain",
+ "▁cer tain",
+ "▁ certain",
+ "N S",
+ "▁c ho",
+ "▁ch o",
+ "▁ cho",
+ "▁ad v",
+ "▁ adv",
+ "wh ere",
+ "w here",
+ "▁lo oking",
+ "▁look ing",
+ "▁ looking",
+ "▁t imes",
+ "▁time s",
+ "▁tim es",
+ "▁ti mes",
+ "▁ times",
+ "ни х",
+ "н их",
+ "ut o",
+ "u to",
+ "▁ É",
+ "ca n",
+ "c an",
+ "ho st",
+ "hos t",
+ "h ost",
+ "▁( *",
+ "▁ (*",
+ "lo at",
+ "▁n icht",
+ "▁ni cht",
+ "▁nic ht",
+ "▁nich t",
+ "Fi eld",
+ "F ield",
+ "bu rg",
+ "bur g",
+ "b urg",
+ "con st",
+ "cons t",
+ "ad es",
+ "ade s",
+ "a des",
+ "▁M us",
+ "▁Mu s",
+ "▁ Mus",
+ "▁n othing",
+ "▁not hing",
+ "▁no thing",
+ "▁ nothing",
+ "▁in cre",
+ "▁inc re",
+ "▁M in",
+ "▁Mi n",
+ "▁ Min",
+ "▁p ower",
+ "▁po wer",
+ "▁pow er",
+ "▁ power",
+ "▁Amer ican",
+ "▁America n",
+ "▁ American",
+ "l n",
+ "val id",
+ "un gs",
+ "ung s",
+ "▁N ational",
+ "▁Nat ional",
+ "▁Nation al",
+ "▁ National",
+ "▁S an",
+ "▁Sa n",
+ "▁ San",
+ "▁Y ork",
+ "Re quest",
+ "ch ar",
+ "cha r",
+ "c har",
+ "▁Z e",
+ "▁ Ze",
+ "but ton",
+ "b utton",
+ "▁a lg",
+ "▁al g",
+ "▁ alg",
+ "SO N",
+ "S ON",
+ "▁a p",
+ "▁ ap",
+ "uf f",
+ "u ff",
+ "ab ility",
+ "abil ity",
+ "е м",
+ "▁any thing",
+ "el a",
+ "e la",
+ "() )",
+ "( ))",
+ "б а",
+ "amp ion",
+ "ampio n",
+ "▁p ot",
+ "▁po t",
+ "▁ pot",
+ "▁f ut",
+ "▁fu t",
+ "ail able",
+ "▁p rop",
+ "▁pro p",
+ "▁pr op",
+ "▁ prop",
+ "\" ]",
+ "▁l ess",
+ "▁le ss",
+ "▁les s",
+ "▁ less",
+ "la g",
+ "l ag",
+ "▁A ugust",
+ "▁Aug ust",
+ "▁ August",
+ "I t",
+ "▁p lease",
+ "▁ple ase",
+ "▁st yle",
+ "▁sty le",
+ "▁ style",
+ "▁Al so",
+ "▁Als o",
+ "▁ Also",
+ "b t",
+ "▁pro bably",
+ "▁prob ably",
+ "▁O ne",
+ "▁On e",
+ "▁ One",
+ "▁p oss",
+ "▁po ss",
+ "▁pos s",
+ "▁ poss",
+ "U I",
+ "ui t",
+ "u it",
+ "▁W est",
+ "▁We st",
+ "▁Wes t",
+ "▁ West",
+ "h n",
+ "+ \\",
+ "But ton",
+ "Butt on",
+ "B utton",
+ "js on",
+ "j son",
+ "er r",
+ "e rr",
+ "ra me",
+ "ram e",
+ "r ame",
+ "do m",
+ "d om",
+ "il on",
+ "ilo n",
+ "i lon",
+ "al f",
+ "▁c lient",
+ "▁cl ient",
+ "▁cli ent",
+ "▁ client",
+ "▁cont inu",
+ "▁contin u",
+ "▁ continu",
+ "x ml",
+ "pe c",
+ "p ec",
+ "ad or",
+ "ado r",
+ "a dor",
+ "l s",
+ "▁how ever",
+ "▁A ny",
+ "▁An y",
+ "▁ Any",
+ "än d",
+ "ä nd",
+ "math rm",
+ "▁u rl",
+ "▁ur l",
+ "▁ url",
+ "▁b ook",
+ "▁bo ok",
+ "▁ book",
+ "▁g l",
+ "▁ gl",
+ "iv es",
+ "ive s",
+ "i ves",
+ "g i",
+ "▁t ro",
+ "▁tr o",
+ "▁U S",
+ "▁ US",
+ "po int",
+ "p oint",
+ "op en",
+ "ope n",
+ "o pen",
+ "▁c ur",
+ "▁cu r",
+ "▁ cur",
+ "▁e ra",
+ "▁er a",
+ "▁ era",
+ "▁part icular",
+ "▁partic ular",
+ "▁particul ar",
+ "▁parti cular",
+ "▁H T",
+ "▁ HT",
+ "oo t",
+ "o ot",
+ "el lo",
+ "ell o",
+ "lo bal",
+ "lob al",
+ "▁a ction",
+ "▁act ion",
+ "▁ac tion",
+ "▁ action",
+ "▁I nt",
+ "▁In t",
+ "▁ Int",
+ "▁in clude",
+ "▁incl ude",
+ "▁includ e",
+ "▁inclu de",
+ "▁ include",
+ "▁el ements",
+ "▁element s",
+ "▁ele ments",
+ "▁elem ents",
+ "▁ elements",
+ "на я",
+ "ar ds",
+ "ard s",
+ "▁B l",
+ "▁ Bl",
+ "▁h um",
+ "▁hu m",
+ "▁ hum",
+ "fr om",
+ "f rom",
+ "ch ange",
+ "chan ge",
+ "▁function s",
+ "▁fun ctions",
+ "▁ functions",
+ "he n",
+ "h en",
+ "Ser vice",
+ "Serv ice",
+ "▁he ight",
+ "▁ height",
+ "▁L and",
+ "▁La nd",
+ "▁Lan d",
+ "▁ Land",
+ "ia s",
+ "i as",
+ "g s",
+ "ió n",
+ "i ón",
+ "ло в",
+ "л ов",
+ "no de",
+ "n ode",
+ ". ”",
+ "ha nd",
+ "han d",
+ "h and",
+ "▁б у",
+ "▁ бу",
+ "▁a mb",
+ "▁am b",
+ "▁ amb",
+ "▁L u",
+ "▁ Lu",
+ "▁th row",
+ "▁thr ow",
+ "▁thro w",
+ "▁ throw",
+ "▁m ot",
+ "▁mo t",
+ "▁ mot",
+ "▁A ct",
+ "▁Ac t",
+ "▁ Act",
+ "▁w orld",
+ "▁wor ld",
+ "▁ world",
+ "_ \\",
+ "ba se",
+ "bas e",
+ "b ase",
+ "▁C o",
+ "▁ Co",
+ "▁ar ch",
+ "▁arc h",
+ "▁ arch",
+ "▁## ##",
+ "▁### #",
+ "▁ ####",
+ "ge d",
+ "g ed",
+ "pr il",
+ "p ril",
+ "ol der",
+ "old er",
+ "o lder",
+ "Mod el",
+ "Mode l",
+ "Mo del",
+ "M odel",
+ "▁sever al",
+ "li e",
+ "l ie",
+ "che ck",
+ "c heck",
+ "] {",
+ "con s",
+ "co ns",
+ "c ons",
+ "▁T ra",
+ "▁Tr a",
+ "▁ Tra",
+ "he ck",
+ "▁l east",
+ "▁le ast",
+ "do wn",
+ "d own",
+ "eb ru",
+ "e bru",
+ "De f",
+ "D ef",
+ "par am",
+ "pa ram",
+ "para m",
+ "p aram",
+ "is cher",
+ "isch er",
+ "ische r",
+ "isc her",
+ "i scher",
+ "▁c as",
+ "▁ca s",
+ "▁ cas",
+ "C H",
+ "▁add ress",
+ "▁addr ess",
+ "▁ address",
+ "▁ра з",
+ "▁ раз",
+ "uf en",
+ "ufe n",
+ "u fen",
+ "ur ope",
+ "uro pe",
+ "urop e",
+ "е й",
+ "▁b ound",
+ "▁bo und",
+ "▁bou nd",
+ "▁ bound",
+ "C O",
+ "▁A ng",
+ "▁An g",
+ "▁ Ang",
+ "▁M a",
+ "▁ Ma",
+ "In dex",
+ "Ind ex",
+ "co re",
+ "cor e",
+ "c ore",
+ "ou ch",
+ "ouc h",
+ "o uch",
+ "at abase",
+ "ata base",
+ "rib ution",
+ "ribu tion",
+ "doc ument",
+ "d ocument",
+ "L e",
+ "}_ {",
+ "} _{",
+ "ve rn",
+ "ver n",
+ "v ern",
+ "▁stat ement",
+ "▁state ment",
+ "▁ statement",
+ "▁B rit",
+ "▁Br it",
+ "on o",
+ "o no",
+ "ps ilon",
+ "psi lon",
+ "▁le vel",
+ "▁lev el",
+ "▁ level",
+ "▁pro duct",
+ "▁produ ct",
+ "▁prod uct",
+ "▁ product",
+ "I S",
+ "▁c ourse",
+ "▁cour se",
+ "▁cours e",
+ "▁ course",
+ "▁M r",
+ "▁ Mr",
+ "> \r",
+ "▁back ground",
+ "▁ background",
+ "▁re t",
+ "▁r et",
+ "▁ ret",
+ "er ing",
+ "eri ng",
+ "e ring",
+ "mo st",
+ "mos t",
+ "m ost",
+ "сь ко",
+ "ськ о",
+ "▁th read",
+ "▁thr ead",
+ "▁thre ad",
+ "▁ thread",
+ "it ional",
+ "ition al",
+ "iti onal",
+ "it es",
+ "ite s",
+ "i tes",
+ "P l",
+ "▁d os",
+ "▁do s",
+ "g a",
+ "da y",
+ "d ay",
+ "▁G ener",
+ "▁Ge ner",
+ "▁Gen er",
+ "▁Gene r",
+ "▁ Gener",
+ "▁t w",
+ "▁ tw",
+ "A d",
+ "\"> <",
+ "\" ><",
+ "▁( $",
+ "▁ ($",
+ "▁m oment",
+ "▁mo ment",
+ "▁mom ent",
+ "tit le",
+ "t itle",
+ "cre ate",
+ "c reate",
+ "vers ion",
+ "v ersion",
+ "Man ager",
+ "▁f ur",
+ "▁fu r",
+ "▁ fur",
+ "pp ing",
+ "ppi ng",
+ "p ping",
+ "ij n",
+ "о с",
+ "▁r ather",
+ "▁ra ther",
+ "▁rat her",
+ "pt ember",
+ "O S",
+ "▁s ite",
+ "▁si te",
+ "▁sit e",
+ "▁ site",
+ "▁c aus",
+ "▁ca us",
+ "an i",
+ "a ni",
+ "▁h ome",
+ "▁hom e",
+ "▁ho me",
+ "▁ home",
+ "м і",
+ "▁sh ort",
+ "▁sho rt",
+ "▁ short",
+ "p a",
+ "▁l ead",
+ "▁le ad",
+ "is hed",
+ "ish ed",
+ "ci ng",
+ "cin g",
+ "c ing",
+ "or ding",
+ "ord ing",
+ "ordin g",
+ "▁p rote",
+ "▁pro te",
+ "▁pr ote",
+ "▁prot e",
+ "▁ prote",
+ "с ле",
+ "LE CT",
+ "L ECT",
+ "▁di dn",
+ "▁did n",
+ "pos ition",
+ "p osition",
+ "\", \"",
+ "\" ,\"",
+ "() ,",
+ "( ),",
+ "tr ans",
+ "tra ns",
+ "▁l ot",
+ "▁lo t",
+ "▁ lot",
+ "▁о д",
+ "▁ од",
+ "A S",
+ "▁s at",
+ "▁sa t",
+ "▁po ints",
+ "▁point s",
+ "▁ points",
+ "g ithub",
+ "st yle",
+ "sty le",
+ "▁го ду",
+ "▁год у",
+ "▁D is",
+ "▁Di s",
+ "▁ Dis",
+ "pon ent",
+ "om et",
+ "ome t",
+ "o met",
+ "ze r",
+ "z er",
+ "UL L",
+ "U LL",
+ "▁p a",
+ "▁ pa",
+ "A P",
+ "ac es",
+ "ace s",
+ "a ces",
+ "▁Un ited",
+ "▁Unit ed",
+ "am a",
+ "a ma",
+ "et y",
+ "e ty",
+ "Col or",
+ "Co lor",
+ "▁en ough",
+ "U S",
+ "▁l ength",
+ "▁leng th",
+ "▁ length",
+ "() );",
+ "()) ;",
+ "( ));",
+ "^{ \\",
+ "^ {\\",
+ "ft y",
+ "f ty",
+ "Bo x",
+ "B ox",
+ "ap ter",
+ "apt er",
+ "▁comp let",
+ "▁comple t",
+ "▁compl et",
+ "ни к",
+ "ma x",
+ "m ax",
+ "ob ject",
+ "obj ect",
+ "o bject",
+ "( {",
+ "img ur",
+ "it ive",
+ "iti ve",
+ "un ch",
+ "unc h",
+ "▁S ub",
+ "▁Su b",
+ "▁ Sub",
+ "en de",
+ "end e",
+ "e nde",
+ "г у",
+ "ateg ory",
+ "ategor y",
+ "т ы",
+ "ia no",
+ "ian o",
+ "i ano",
+ "▁u pd",
+ "▁up d",
+ "▁A ust",
+ "▁Aus t",
+ "▁Au st",
+ "}{ \\",
+ "} {\\",
+ "to p",
+ "t op",
+ "la s",
+ "l as",
+ "pi s",
+ "p is",
+ "in ess",
+ "ine ss",
+ "ines s",
+ "i ness",
+ "▁{ \r",
+ "▁ {\r",
+ "▁ Е",
+ "G r",
+ "▁A S",
+ "▁ AS",
+ "▁в е",
+ "▁ ве",
+ "th ers",
+ "ther s",
+ "the rs",
+ "▁d efined",
+ "▁def ined",
+ "▁define d",
+ "▁defin ed",
+ "▁ defined",
+ "az ione",
+ "azi one",
+ "a zione",
+ "▁o ffic",
+ "▁of fic",
+ "▁off ic",
+ "▁au tom",
+ "▁aut om",
+ "▁auto m",
+ "▁ autom",
+ "ü n",
+ "▁b row",
+ "▁br ow",
+ "▁bro w",
+ "▁ brow",
+ "▁s erv",
+ "▁se rv",
+ "▁ser v",
+ "▁ serv",
+ "▁re move",
+ "▁rem ove",
+ "▁remov e",
+ "▁ remove",
+ "ir o",
+ "i ro",
+ "▁B ibli",
+ "▁Bib li",
+ "E D",
+ "▁w hole",
+ "▁wh ole",
+ "▁who le",
+ "▁ ш",
+ "▁J ava",
+ "▁Ja va",
+ "▁ Java",
+ "▁z um",
+ "▁zu m",
+ "u a",
+ "p m",
+ "de v",
+ "d ev",
+ "к ра",
+ "ol ds",
+ "old s",
+ "▁W ar",
+ "▁Wa r",
+ "ä n",
+ "pa ss",
+ "pas s",
+ "p ass",
+ "u z",
+ "[ \"",
+ "▁t ri",
+ "▁tr i",
+ "▁ tri",
+ "is ed",
+ "ise d",
+ "i sed",
+ "х а",
+ "▁mem ory",
+ "▁memor y",
+ "▁ memory",
+ "▁P ort",
+ "▁Po rt",
+ "▁Por t",
+ "▁ Port",
+ "op er",
+ "ope r",
+ "o per",
+ "U p",
+ "▁Th ank",
+ "▁ Thank",
+ "▁M ich",
+ "▁Mi ch",
+ "▁Mic h",
+ "▁ Mich",
+ "yc h",
+ "y ch",
+ "bo ard",
+ "boa rd",
+ "б у",
+ "In st",
+ "▁b egin",
+ "▁be gin",
+ "▁beg in",
+ "▁ begin",
+ "in ation",
+ "ina tion",
+ "▁M od",
+ "▁Mo d",
+ "▁ Mod",
+ "_ ,",
+ "▁D en",
+ "▁De n",
+ "▁ Den",
+ "op tion",
+ "opt ion",
+ "o ption",
+ "▁con struct",
+ "▁const ruct",
+ "▁constru ct",
+ "▁ construct",
+ "▁J ust",
+ "▁Ju st",
+ "▁ Just",
+ "Ma p",
+ "M ap",
+ "ru n",
+ "r un",
+ "▁re spect",
+ "▁res pect",
+ "▁resp ect",
+ "ha m",
+ "h am",
+ "ма н",
+ "м ан",
+ "im edia",
+ "ime dia",
+ "i media",
+ "▁a pply",
+ "▁app ly",
+ "▁ap ply",
+ "▁ apply",
+ "cri ption",
+ "cript ion",
+ "ma in",
+ "mai n",
+ "m ain",
+ "▁К а",
+ "▁ Ка",
+ "oi d",
+ "o id",
+ "Co de",
+ "C ode",
+ "} ;",
+ "In fo",
+ "Inf o",
+ "▁for mat",
+ "▁form at",
+ "▁forma t",
+ "▁ format",
+ "Lo g",
+ "L og",
+ "▁с у",
+ "▁ су",
+ "▁l at",
+ "▁la t",
+ "▁ lat",
+ "ut or",
+ "uto r",
+ "u tor",
+ "▁re ference",
+ "▁refer ence",
+ "▁ reference",
+ "▁cal cul",
+ "▁calc ul",
+ "▁ calcul",
+ "on n",
+ "o nn",
+ "L o",
+ "in fty",
+ "inf ty",
+ "▁a long",
+ "▁al ong",
+ "▁ č",
+ "▁t ask",
+ "▁ta sk",
+ "▁ task",
+ "▁e v",
+ "▁ ev",
+ "th eta",
+ "the ta",
+ "ra s",
+ "r as",
+ "jo r",
+ "j or",
+ "▁б о",
+ "▁ бо",
+ "▁princi p",
+ "▁prin cip",
+ "M y",
+ "▁e iner",
+ "▁ein er",
+ "▁eine r",
+ "▁E s",
+ "▁ Es",
+ "om b",
+ "o mb",
+ "qu ad",
+ "qua d",
+ "^{ -",
+ "^ {-",
+ "um p",
+ "u mp",
+ "▁t ill",
+ "▁til l",
+ "▁ti ll",
+ "д і",
+ "▁lo oks",
+ "▁look s",
+ "▁o k",
+ "▁ ok",
+ "ц а",
+ "n u",
+ "Fi l",
+ "F il",
+ "▁s ont",
+ "▁so nt",
+ "▁son t",
+ "▁M ed",
+ "▁Me d",
+ "▁ Med",
+ "ag ue",
+ "agu e",
+ "a gue",
+ "▁c ost",
+ "▁co st",
+ "▁cos t",
+ "▁ cost",
+ "▁S im",
+ "▁Si m",
+ "▁ Sim",
+ "▁com ment",
+ "▁comm ent",
+ "▁comme nt",
+ "▁ comment",
+ "▁( \\",
+ "▁ (\\",
+ "eg en",
+ "ege n",
+ "e gen",
+ "▁para meter",
+ "▁param eter",
+ "▁paramet er",
+ "▁ parameter",
+ "▁F rance",
+ "▁Fran ce",
+ "▁Fr ance",
+ "▁Franc e",
+ "▁ France",
+ "re p",
+ "r ep",
+ "▁T H",
+ "▁ TH",
+ "▁y et",
+ "▁ye t",
+ "▁a way",
+ "▁aw ay",
+ "▁ away",
+ "▁c irc",
+ "▁ci rc",
+ "▁cir c",
+ "▁ circ",
+ "▁A PI",
+ "▁AP I",
+ "▁ API",
+ "em p",
+ "e mp",
+ "в і",
+ "L ayout",
+ "▁l ines",
+ "▁li nes",
+ "▁line s",
+ "▁lin es",
+ "▁ lines",
+ "▁P art",
+ "▁Par t",
+ "▁Pa rt",
+ "▁ Part",
+ "em pt",
+ "emp t",
+ "▁B i",
+ "▁ Bi",
+ "▁m ind",
+ "▁min d",
+ "▁mi nd",
+ "▁ mind",
+ "k y",
+ "gi ng",
+ "gin g",
+ "g ing",
+ "▁re port",
+ "▁rep ort",
+ "▁repo rt",
+ "▁ report",
+ "▁A dd",
+ "▁Ad d",
+ "▁ Add",
+ "ро д",
+ "р од",
+ "▁r ange",
+ "▁ran ge",
+ "▁rang e",
+ "▁ range",
+ "ci as",
+ "cia s",
+ "c ias",
+ "li p",
+ "l ip",
+ "▁K ar",
+ "▁Ka r",
+ "▁ Kar",
+ "▁Comm ons",
+ "▁Common s",
+ "ger ufen",
+ "af f",
+ "a ff",
+ "se c",
+ "s ec",
+ "▁h tml",
+ "▁ html",
+ "li g",
+ "l ig",
+ "▁w indow",
+ "▁wind ow",
+ "▁ window",
+ "in ition",
+ "ini tion",
+ "init ion",
+ "ci s",
+ "c is",
+ "▁u t",
+ "▁ ut",
+ "el n",
+ "e ln",
+ "▁a ux",
+ "▁au x",
+ "▁ aux",
+ "▁n eg",
+ "▁ne g",
+ "▁ neg",
+ "Ha nd",
+ "H and",
+ "▁) ;",
+ "▁ );",
+ "▁a nal",
+ "▁an al",
+ "▁ anal",
+ "▁f ri",
+ "▁fr i",
+ "▁ fri",
+ "▁с и",
+ "▁ си",
+ "et ch",
+ "etc h",
+ "m d",
+ "pa ge",
+ "pag e",
+ "p age",
+ "▁l ibrary",
+ "▁li brary",
+ "▁ library",
+ "▁: =",
+ "▁ :=",
+ "RO M",
+ "R OM",
+ "Y ou",
+ "sp ace",
+ "s pace",
+ "▁d urch",
+ "▁dur ch",
+ "▁h ost",
+ "▁ho st",
+ "▁hos t",
+ "▁ host",
+ "av en",
+ "ave n",
+ "a ven",
+ "▁F ile",
+ "▁Fil e",
+ "▁ File",
+ "al le",
+ "all e",
+ "a lle",
+ "ти в",
+ "▁p ap",
+ "▁pa p",
+ "ст во",
+ "ств о",
+ "с тво",
+ "mar k",
+ "m ark",
+ "▁m ais",
+ "▁ma is",
+ "▁mai s",
+ "er man",
+ "erm an",
+ "Si ze",
+ "S ize",
+ "е к",
+ "▁М а",
+ "▁ Ма",
+ "▁is n",
+ "▁i sn",
+ "▁c opy",
+ "▁co py",
+ "▁cop y",
+ "▁ copy",
+ "st en",
+ "ste n",
+ "s ten",
+ "ri ver",
+ "riv er",
+ "rive r",
+ "r iver",
+ "▁w ent",
+ "▁we nt",
+ "▁wen t",
+ "▁j avascript",
+ "▁java script",
+ "▁ javascript",
+ "▁s am",
+ "▁sa m",
+ "▁ sam",
+ "▁f rame",
+ "▁fr ame",
+ "▁fra me",
+ "▁fram e",
+ "▁ frame",
+ "▁v i",
+ "▁ vi",
+ "▁pre vious",
+ "▁prev ious",
+ "▁ previous",
+ "ro du",
+ "rod u",
+ "r odu",
+ "▁method s",
+ "▁ methods",
+ "▁ne cess",
+ "▁neces s",
+ "▁ necess",
+ "N A",
+ "ck et",
+ "cke t",
+ "c ket",
+ "▁o pt",
+ "▁op t",
+ "▁ opt",
+ "Lo c",
+ "L oc",
+ "ho w",
+ "h ow",
+ "▁î n",
+ "▁ în",
+ "sh ip",
+ "s hip",
+ "▁it self",
+ "▁its elf",
+ "▁P lease",
+ "▁Ple ase",
+ "▁ Please",
+ "ie ne",
+ "ien e",
+ "i ene",
+ "ве р",
+ "в ер",
+ "▁< <",
+ "▁ <<",
+ "▁m ill",
+ "▁mil l",
+ "▁mi ll",
+ "▁ mill",
+ "▁t rad",
+ "▁tr ad",
+ "▁tra d",
+ "▁ trad",
+ "pa ce",
+ "p ace",
+ "▁H ar",
+ "▁Ha r",
+ "▁ Har",
+ "it en",
+ "ite n",
+ "i ten",
+ "wi se",
+ "w ise",
+ "writ e",
+ "wr ite",
+ "w rite",
+ "ци и",
+ "р ы",
+ "Lin e",
+ "Li ne",
+ "L ine",
+ "ol o",
+ "o lo",
+ "▁ac cept",
+ "▁ accept",
+ "he ight",
+ "▁e lect",
+ "▁el ect",
+ "▁ele ct",
+ "▁ elect",
+ "el la",
+ "ell a",
+ "e lla",
+ "▁p å",
+ "Se lect",
+ "S elect",
+ "▁ ли",
+ "▁\\ <",
+ "▁ \\<",
+ "( (",
+ "▁I D",
+ "▁ ID",
+ "op s",
+ "o ps",
+ "ва н",
+ "в ан",
+ "i ó",
+ "T P",
+ "» ,",
+ "ne ction",
+ "nect ion",
+ "n ection",
+ "par ent",
+ "pa rent",
+ "▁M ag",
+ "▁Ma g",
+ "▁ Mag",
+ "Tab le",
+ "T able",
+ "O ver",
+ "▁n etwork",
+ "▁net work",
+ "▁ network",
+ "с по",
+ "▁as sign",
+ "▁ass ign",
+ "▁ assign",
+ "ig ger",
+ "igg er",
+ "ir m",
+ "i rm",
+ ") `",
+ "ot tom",
+ "ott om",
+ "otto m",
+ "be ta",
+ "bet a",
+ "b eta",
+ "▁d ell",
+ "▁de ll",
+ "▁del l",
+ "▁b ody",
+ "▁bo dy",
+ "▁bod y",
+ "▁ body",
+ "▁д а",
+ "▁ да",
+ "▁Y our",
+ "▁You r",
+ "▁ Your",
+ "▁f ue",
+ "▁fu e",
+ "▁p ackage",
+ "▁pack age",
+ "▁ package",
+ "▁l ight",
+ "▁lig ht",
+ "▁ light",
+ "▁* *",
+ "▁ **",
+ "M P",
+ "▁c ou",
+ "▁co u",
+ "▁ cou",
+ "ye s",
+ "y es",
+ ": \\",
+ "▁ Ч",
+ "▁m ention",
+ "▁men tion",
+ "▁ment ion",
+ "en sch",
+ "ens ch",
+ "▁d eg",
+ "▁de g",
+ "▁ deg",
+ "▁con vert",
+ "▁conver t",
+ "▁conv ert",
+ "▁ convert",
+ "▁D av",
+ "▁Da v",
+ "ad t",
+ "a dt",
+ "Res ult",
+ "th ough",
+ "▁b us",
+ "▁bu s",
+ "▁ bus",
+ "x y",
+ "▁s een",
+ "▁se en",
+ "▁see n",
+ "▁ seen",
+ "Al l",
+ "A ll",
+ "pu blic",
+ "pub lic",
+ "p ublic",
+ "iv ely",
+ "ive ly",
+ "ivel y",
+ "▁R ec",
+ "▁Re c",
+ "▁ Rec",
+ "▁H is",
+ "▁Hi s",
+ "si m",
+ "s im",
+ "▁f ör",
+ "▁fö r",
+ "▁ för",
+ "▁h istor",
+ "▁his tor",
+ "▁hi stor",
+ "▁hist or",
+ "▁ histor",
+ "▁s ett",
+ "▁se tt",
+ "▁set t",
+ "▁ sett",
+ "ra t",
+ "r at",
+ "ab led",
+ "able d",
+ "abl ed",
+ "a bled",
+ "▁» ,",
+ "▁ »,",
+ "go ogle",
+ "We b",
+ "W eb",
+ "é l",
+ "▁t itle",
+ "▁tit le",
+ "▁ title",
+ "▁J anu",
+ "▁Jan u",
+ "▁Ja nu",
+ "ј а",
+ "▁t ook",
+ "▁to ok",
+ "▁too k",
+ "id en",
+ "ide n",
+ "i den",
+ "s z",
+ "▁G et",
+ "▁Ge t",
+ "▁ Get",
+ "▁object s",
+ "▁ objects",
+ "▁com mon",
+ "▁comm on",
+ "▁ common",
+ "▁ch anges",
+ "▁change s",
+ "▁chang es",
+ "▁ changes",
+ "▁L ond",
+ "▁Lo nd",
+ "▁ Lond",
+ "▁ex tern",
+ "▁ext ern",
+ "▁j u",
+ "▁ ju",
+ "I s",
+ "▁av ailable",
+ "▁avail able",
+ "▁ available",
+ "tr i",
+ "t ri",
+ "▁m ás",
+ "▁má s",
+ "os a",
+ "o sa",
+ "B e",
+ "▁D ata",
+ "▁Da ta",
+ "▁Dat a",
+ "▁ Data",
+ "ur al",
+ "ura l",
+ "u ral",
+ "▁h om",
+ "▁ho m",
+ "▁ hom",
+ "▁acc ount",
+ "▁ac count",
+ "▁ account",
+ "o o",
+ "▁p erm",
+ "▁per m",
+ "▁pe rm",
+ "▁ perm",
+ "res pond",
+ "resp ond",
+ "y t",
+ "▁s end",
+ "▁se nd",
+ "▁sen d",
+ "▁ send",
+ "▁return s",
+ "▁ returns",
+ "iv id",
+ "ivi d",
+ "i vid",
+ "▁ex pla",
+ "▁exp la",
+ "▁expl a",
+ "í n",
+ "▁n or",
+ "▁no r",
+ "▁ nor",
+ "I f",
+ "▁F rom",
+ "▁Fr om",
+ "▁Fro m",
+ "▁ From",
+ "▁t arget",
+ "▁tar get",
+ "▁ target",
+ "fe ct",
+ "f ect",
+ "ен т",
+ "▁u it",
+ "▁ui t",
+ "▁ uit",
+ "▁J o",
+ "▁ Jo",
+ "▁vari ables",
+ "▁variable s",
+ "▁ variables",
+ "▁s eries",
+ "▁se ries",
+ "▁ser ies",
+ "▁serie s",
+ "▁ series",
+ "▁f unc",
+ "▁fun c",
+ "▁fu nc",
+ "▁ func",
+ "▁him self",
+ "▁ч а",
+ "▁ ча",
+ "an ti",
+ "ant i",
+ "▁a ch",
+ "▁ac h",
+ "▁ ach",
+ "ia log",
+ "ial og",
+ "i alog",
+ "▁s td",
+ "▁st d",
+ "▁ std",
+ "a e",
+ "▁f oot",
+ "▁fo ot",
+ "▁foo t",
+ "▁ foot",
+ "▁un ter",
+ "▁ unter",
+ "gr ess",
+ "gres s",
+ "gre ss",
+ "g ress",
+ "No t",
+ "N ot",
+ "ra d",
+ "r ad",
+ "f ér",
+ "▁u til",
+ "▁ut il",
+ "▁ util",
+ "or em",
+ "ore m",
+ "o rem",
+ "▁s ou",
+ "▁so u",
+ "op t",
+ "o pt",
+ "▁o g",
+ "▁ og",
+ "▁u ma",
+ "▁um a",
+ "▁ uma",
+ "it ar",
+ "ita r",
+ "i tar",
+ "▁O k",
+ "▁ Ok",
+ "ü ck",
+ "sq rt",
+ "▁a nt",
+ "▁an t",
+ "▁ ant",
+ "▁wer den",
+ "▁werd en",
+ "å r",
+ "}) ;",
+ "} );",
+ "▁P aris",
+ "▁Par is",
+ "▁Pa ris",
+ "▁ex ception",
+ "▁except ion",
+ "▁ exception",
+ "▁de term",
+ "▁det erm",
+ "▁V ol",
+ "▁Vo l",
+ "▁ Vol",
+ "▁S am",
+ "▁Sa m",
+ "▁ Sam",
+ "▁e ss",
+ "▁es s",
+ "▁ ess",
+ "li es",
+ "lie s",
+ "l ies",
+ "ion i",
+ "io ni",
+ "i oni",
+ "od ing",
+ "odi ng",
+ "o ding",
+ "id get",
+ "idge t",
+ "▁p ri",
+ "▁pr i",
+ "▁wh ether",
+ "▁whe ther",
+ "▁п од",
+ "▁по д",
+ "▁num bers",
+ "▁number s",
+ "▁ numbers",
+ "▁ ~",
+ "ev ent",
+ "even t",
+ "e vent",
+ "▁sh ows",
+ "▁show s",
+ "▁sho ws",
+ "at ures",
+ "atur es",
+ "ature s",
+ "atu res",
+ "▁h ouse",
+ "▁ho use",
+ "▁hous e",
+ "▁ house",
+ "▁f ace",
+ "▁fa ce",
+ "▁fac e",
+ "▁ face",
+ "▁s ię",
+ "▁si ę",
+ "viron ment",
+ "va n",
+ "v an",
+ "▁in cluding",
+ "▁includ ing",
+ "▁inclu ding",
+ "▁ including",
+ "▁< -",
+ "▁ <-",
+ "ti mes",
+ "time s",
+ "tim es",
+ "t imes",
+ "no w",
+ "n ow",
+ "▁p ur",
+ "▁pu r",
+ "▁ pur",
+ "if ier",
+ "ifi er",
+ "ifie r",
+ "▁e mp",
+ "▁em p",
+ "▁ emp",
+ "▁c la",
+ "▁cl a",
+ "▁ cla",
+ "mo n",
+ "m on",
+ "▁D as",
+ "▁Da s",
+ "ad y",
+ "a dy",
+ "▁в ід",
+ "▁ві д",
+ "▁ від",
+ "▁ ц",
+ "ab or",
+ "a bor",
+ "OS T",
+ "O ST",
+ "▁b and",
+ "▁ban d",
+ "▁ba nd",
+ "▁ band",
+ "▁ ú",
+ "▁ex actly",
+ "▁exact ly",
+ "ie rt",
+ "ier t",
+ "i ert",
+ "av ig",
+ "avi g",
+ "▁re du",
+ "▁r edu",
+ "▁red u",
+ "▁ redu",
+ "▁S E",
+ "▁ SE",
+ "lish ed",
+ "lis hed",
+ "l ished",
+ "B u",
+ "Mess age",
+ "M essage",
+ "ce ll",
+ "cel l",
+ "c ell",
+ "ful ly",
+ "full y",
+ "▁s v",
+ "▁ sv",
+ "▁m akes",
+ "▁ma kes",
+ "▁make s",
+ "▁mak es",
+ "po l",
+ "p ol",
+ "▁re quired",
+ "▁require d",
+ "▁requ ired",
+ "▁ required",
+ "fer rer",
+ "▁p ers",
+ "▁per s",
+ "▁pe rs",
+ "▁ pers",
+ "▁m i",
+ "▁ mi",
+ "F I",
+ "▁Pa ul",
+ "▁ Paul",
+ "▁U I",
+ "▁ UI",
+ "▁B el",
+ "▁Be l",
+ "▁ Bel",
+ "in c",
+ "i nc",
+ "▁cont ains",
+ "▁contain s",
+ "▁ contains",
+ "O ut",
+ "as ure",
+ "p u",
+ "ot o",
+ "o to",
+ "▁g ame",
+ "▁ga me",
+ "▁gam e",
+ "▁ game",
+ "z n",
+ "▁W hy",
+ "▁Wh y",
+ "▁ Why",
+ "or ith",
+ "ori th",
+ "bi g",
+ "b ig",
+ "ки й",
+ "sig ma",
+ "s igma",
+ "▁qu ite",
+ "▁qui te",
+ "▁quit e",
+ "▁j ed",
+ "▁je d",
+ "▁ jed",
+ "re c",
+ "r ec",
+ "▁S QL",
+ "▁ SQL",
+ "б е",
+ "▁M art",
+ "▁Mar t",
+ "▁Ma rt",
+ "▁ Mart",
+ "y a",
+ "▁sch ool",
+ "▁ school",
+ "▁sim ply",
+ "▁simp ly",
+ "▁simpl y",
+ "▁v or",
+ "▁vo r",
+ "▁ vor",
+ "▁d ouble",
+ "▁dou ble",
+ "▁doub le",
+ "▁ double",
+ "ра в",
+ "▁S tr",
+ "▁St r",
+ "▁ Str",
+ "ie m",
+ "i em",
+ "▁al bum",
+ "▁alb um",
+ "▁ album",
+ "▁re sol",
+ "▁res ol",
+ "▁ resol",
+ "▁d ei",
+ "▁de i",
+ "▁W ik",
+ "▁Wi k",
+ "▁ Wik",
+ "▁a w",
+ "▁ aw",
+ "um b",
+ "u mb",
+ "ol s",
+ "o ls",
+ "▁* /",
+ "▁ */",
+ "▁z e",
+ "▁ ze",
+ "▁a nim",
+ "▁an im",
+ "▁ani m",
+ "▁ anim",
+ "/ >",
+ "ri s",
+ "r is",
+ "re sh",
+ "res h",
+ "r esh",
+ "N o",
+ "ique s",
+ "iqu es",
+ "i ques",
+ "cur rent",
+ "curr ent",
+ "c urrent",
+ "▁per iod",
+ "▁peri od",
+ "▁ period",
+ "▁A pril",
+ "▁Ap ril",
+ "▁st ore",
+ "▁stor e",
+ "▁sto re",
+ "▁ store",
+ "', '",
+ "' ,'",
+ "▁S et",
+ "▁Se t",
+ "▁ Set",
+ "= {",
+ "ach ed",
+ "ac hed",
+ "ache d",
+ "a ched",
+ "▁M al",
+ "▁Ma l",
+ "▁ Mal",
+ "▁P al",
+ "▁Pa l",
+ "▁ Pal",
+ "an tes",
+ "ant es",
+ "ante s",
+ "ate rial",
+ "ater ial",
+ "▁work ed",
+ "▁wor ked",
+ "le q",
+ "l eq",
+ "ore ferrer",
+ "▁h appen",
+ "▁ha ppen",
+ "▁happ en",
+ "▁b ox",
+ "▁bo x",
+ "▁ box",
+ "ne y",
+ "n ey",
+ "▁c lose",
+ "▁cl ose",
+ "▁clos e",
+ "▁clo se",
+ "▁ close",
+ "▁g ran",
+ "▁gr an",
+ "▁gra n",
+ "▁l ie",
+ "▁li e",
+ "▁ lie",
+ "▁i r",
+ "▁ ir",
+ "▁ex pected",
+ "▁exp ected",
+ "▁expect ed",
+ "▁ expected",
+ "▁д ля",
+ "cl ick",
+ "cli ck",
+ "clic k",
+ "c lick",
+ "ș i",
+ "▁p arte",
+ "▁par te",
+ "▁part e",
+ "og n",
+ "o gn",
+ "▁F orm",
+ "▁For m",
+ "▁Fo rm",
+ "▁ Form",
+ "▁m emb",
+ "▁me mb",
+ "▁mem b",
+ "▁p lan",
+ "▁pl an",
+ "▁pla n",
+ "▁ plan",
+ "▁te am",
+ "▁tea m",
+ "▁ team",
+ "] [",
+ "▁c ommun",
+ "▁com mun",
+ "▁comm un",
+ "or ry",
+ "orr y",
+ "en cy",
+ "enc y",
+ "g l",
+ "in ary",
+ "ina ry",
+ "inar y",
+ "cd ot",
+ "c dot",
+ "^ \\",
+ "▁F irst",
+ "▁Fir st",
+ "▁ First",
+ "an der",
+ "and er",
+ "ande r",
+ "a nder",
+ "▁D ec",
+ "▁De c",
+ "▁ Dec",
+ "re quest",
+ "req uest",
+ "ст ва",
+ "ств а",
+ "с тва",
+ "▁str ucture",
+ "▁struct ure",
+ "▁ structure",
+ "▁| |",
+ "▁ ||",
+ "▁C omp",
+ "▁Com p",
+ "▁Co mp",
+ "▁ Comp",
+ "act ory",
+ "actor y",
+ "▁M il",
+ "▁Mi l",
+ "▁ Mil",
+ "▁S ome",
+ "▁So me",
+ "▁Som e",
+ "▁ Some",
+ "St ream",
+ "▁as sum",
+ "▁ass um",
+ "ue n",
+ "u en",
+ "▁w ords",
+ "▁word s",
+ "▁wor ds",
+ "▁ words",
+ "▁Se ptember",
+ "▁Sept ember",
+ "▁К о",
+ "▁ Ко",
+ "▁d ays",
+ "▁da ys",
+ "▁day s",
+ "▁ days",
+ "or ies",
+ "ori es",
+ "orie s",
+ "o ries",
+ "ста в",
+ "s m",
+ "vi n",
+ "v in",
+ "part ial",
+ "▁par ent",
+ "▁pa rent",
+ "▁pare nt",
+ "▁ parent",
+ "o j",
+ "ни и",
+ "! \"",
+ "ug in",
+ "u gin",
+ "▁W indows",
+ "▁Wind ows",
+ "▁Window s",
+ "▁ Windows",
+ "E d",
+ ": }",
+ "▁ q",
+ "▁b en",
+ "▁be n",
+ "▁ ben",
+ "ia na",
+ "ian a",
+ "i ana",
+ "▁l abel",
+ "▁la bel",
+ "▁lab el",
+ "▁ label",
+ "st ate",
+ "sta te",
+ "stat e",
+ "ut ed",
+ "ute d",
+ "u ted",
+ "▁( )",
+ "▁ ()",
+ "▁с во",
+ "▁e dit",
+ "▁ed it",
+ "▁ edit",
+ "ur ing",
+ "uri ng",
+ "u ring",
+ "▁N S",
+ "▁ NS",
+ "▁J ahr",
+ "▁Jah r",
+ "▁Ja hr",
+ "▁prov ide",
+ "H e",
+ "▁Y es",
+ "▁Ye s",
+ "▁ Yes",
+ "an el",
+ "ane l",
+ "a nel",
+ "en ame",
+ "ena me",
+ "e name",
+ "▁D on",
+ "▁Do n",
+ "▁ Don",
+ "is k",
+ "i sk",
+ "gr a",
+ "g ra",
+ "el ij",
+ "eli j",
+ "e lij",
+ "▁r oot",
+ "▁ro ot",
+ "▁ root",
+ "* /",
+ "▁F re",
+ "▁Fr e",
+ "▁ Fre",
+ "▁M or",
+ "▁Mo r",
+ "▁ Mor",
+ "us ed",
+ "use d",
+ "u sed",
+ "ran ge",
+ "r ange",
+ "▁t amb",
+ "▁ta mb",
+ "▁tam b",
+ "▁mod ule",
+ "▁ module",
+ "▁d irectory",
+ "▁direct ory",
+ "▁director y",
+ "▁ directory",
+ "ound s",
+ "oun ds",
+ "Act ivity",
+ "Activ ity",
+ "▁m u",
+ "▁ mu",
+ "in fo",
+ "inf o",
+ "▁f ree",
+ "▁fr ee",
+ "▁fre e",
+ "▁ free",
+ "or ge",
+ "org e",
+ "ta b",
+ "t ab",
+ ") =",
+ "la ng",
+ "lan g",
+ "l ang",
+ "▁о с",
+ "▁ ос",
+ "▁F ROM",
+ "▁FR OM",
+ "▁ FROM",
+ "▁en ter",
+ "▁ent er",
+ "▁ enter",
+ "▁bec ame",
+ "id ae",
+ "ida e",
+ "х и",
+ "▁St ates",
+ "▁State s",
+ "▁Stat es",
+ "▁Sta tes",
+ "ver se",
+ "vers e",
+ "▁ex pl",
+ "▁exp l",
+ "▁ expl",
+ "yn t",
+ "y nt",
+ "U N",
+ "e e",
+ "en dent",
+ "end ent",
+ "enden t",
+ "ende nt",
+ "▁m aking",
+ "▁ma king",
+ "▁mak ing",
+ "▁ making",
+ "▁\" $",
+ "un i",
+ "u ni",
+ "qu ence",
+ "▁l ui",
+ "▁lu i",
+ "H T",
+ "▁us es",
+ "▁use s",
+ "▁ uses",
+ "zi e",
+ "z ie",
+ "ni a",
+ "n ia",
+ "Cont ent",
+ "▁C ount",
+ "▁Co unt",
+ "▁Coun t",
+ "▁Cou nt",
+ "▁ Count",
+ "▁stand ard",
+ "▁ standard",
+ "EN T",
+ "E NT",
+ "▁ко н",
+ "▁к он",
+ "▁ кон",
+ "fo rt",
+ "for t",
+ "f ort",
+ "ad as",
+ "ada s",
+ "a das",
+ "з у",
+ "S ystem",
+ "▁S w",
+ "▁ Sw",
+ "▁e ver",
+ "▁ev er",
+ "▁ ever",
+ "L O",
+ "▁cor respond",
+ "▁P o",
+ "▁ Po",
+ "ar gin",
+ "arg in",
+ "к т",
+ "і й",
+ "▁re main",
+ "▁rem ain",
+ "ci o",
+ "c io",
+ "▁act ual",
+ "▁actu al",
+ "▁ actual",
+ "ст у",
+ "с ту",
+ "▁s ind",
+ "▁si nd",
+ "▁sin d",
+ "▁P e",
+ "▁ Pe",
+ "▁ch anged",
+ "▁change d",
+ "▁chang ed",
+ "▁ changed",
+ "▁N ote",
+ "▁No te",
+ "▁Not e",
+ "▁ Note",
+ "sk ie",
+ "ski e",
+ "s kie",
+ "▁famil y",
+ "▁fam ily",
+ "▁ family",
+ "it à",
+ "co s",
+ "c os",
+ "tx t",
+ "t xt",
+ "ke r",
+ "k er",
+ "ce ed",
+ "c eed",
+ "▁a rr",
+ "▁ar r",
+ "▁ arr",
+ "▁c am",
+ "▁ca m",
+ "▁ cam",
+ "iz er",
+ "ize r",
+ "i zer",
+ "▁D an",
+ "▁Da n",
+ "▁ Dan",
+ "he l",
+ "h el",
+ "ic ult",
+ "icul t",
+ "H P",
+ "il er",
+ "ile r",
+ "i ler",
+ "▁S al",
+ "▁Sa l",
+ "▁ Sal",
+ "▁con nection",
+ "▁conne ction",
+ "▁connect ion",
+ "▁conn ection",
+ "▁ connection",
+ "us ion",
+ "k n",
+ "R I",
+ "▁v om",
+ "▁vo m",
+ "List ener",
+ "▁ ö",
+ "▁d im",
+ "▁di m",
+ "▁ dim",
+ "▁p ress",
+ "▁pr ess",
+ "▁pre ss",
+ "▁pres s",
+ "▁ press",
+ "▁e sc",
+ "▁es c",
+ "▁ esc",
+ "▁T ry",
+ "▁Tr y",
+ "▁ Try",
+ "at alog",
+ "ata log",
+ "atal og",
+ "▁th anks",
+ "▁than ks",
+ "▁thank s",
+ "D O",
+ "▁w ritten",
+ "▁writ ten",
+ "▁wr itten",
+ "▁ written",
+ "di r",
+ "d ir",
+ "re w",
+ "r ew",
+ "▁f ire",
+ "▁fi re",
+ "▁fir e",
+ "▁ fire",
+ "▁N ach",
+ "▁Na ch",
+ "▁ á",
+ "en c",
+ "e nc",
+ "▁or igin",
+ "▁orig in",
+ "▁ origin",
+ "▁Nov ember",
+ "▁} ;",
+ "▁ };",
+ "Co unt",
+ "C ount",
+ "▁З а",
+ "▁ За",
+ "▁g raph",
+ "▁gr aph",
+ "▁gra ph",
+ "▁ graph",
+ "▁m is",
+ "▁mi s",
+ "▁ mis",
+ "▁Ex ternal",
+ "▁Ext ernal",
+ "▁Extern al",
+ "▁Externa l",
+ "▁ External",
+ "▁o ptions",
+ "▁option s",
+ "▁opt ions",
+ "▁ options",
+ "▁U RL",
+ "▁ URL",
+ "▁p hp",
+ "▁ph p",
+ "▁ php",
+ "▁in tegr",
+ "▁int egr",
+ "▁inte gr",
+ "▁ integr",
+ "Con fig",
+ "Conf ig",
+ "▁T ext",
+ "▁Te xt",
+ "▁Tex t",
+ "▁ Text",
+ "in ner",
+ "inn er",
+ "▁c rit",
+ "▁cr it",
+ "▁cri t",
+ "▁ crit",
+ ", ”",
+ "▁t og",
+ "▁to g",
+ "$ $",
+ "no f",
+ "n of",
+ "▁s es",
+ "▁se s",
+ "üh r",
+ "ü hr",
+ "▁S ince",
+ "▁Sin ce",
+ "▁ Since",
+ "De s",
+ "D es",
+ "ub e",
+ "u be",
+ "▁s ection",
+ "▁se ction",
+ "▁sec tion",
+ "▁sect ion",
+ "▁ section",
+ "▁g i",
+ "▁ gi",
+ "fo rd",
+ "for d",
+ "f ord",
+ "▁A ss",
+ "▁As s",
+ "▁ Ass",
+ "ain er",
+ "ai ner",
+ "aine r",
+ "a iner",
+ "tt p",
+ "t tp",
+ "▁be hav",
+ "▁beh av",
+ "port s",
+ "por ts",
+ "dr aw",
+ "dra w",
+ "d raw",
+ "Th is",
+ "T his",
+ "ran ch",
+ "r anch",
+ "in ding",
+ "ind ing",
+ "indi ng",
+ "▁e stab",
+ "▁est ab",
+ "▁es tab",
+ "▁esta b",
+ "▁ob tain",
+ "▁obt ain",
+ "ri ch",
+ "ric h",
+ "r ich",
+ "li cit",
+ "lic it",
+ "е в",
+ "▁qu al",
+ "▁q ual",
+ "▁ qual",
+ "▁z a",
+ "▁ za",
+ "▁h ar",
+ "▁ha r",
+ "▁ har",
+ "▁f ac",
+ "▁fa c",
+ "▁ fac",
+ "aa r",
+ "a ar",
+ "je t",
+ "j et",
+ "ic les",
+ "icle s",
+ "i cles",
+ "▁A us",
+ "▁Au s",
+ "▁ Aus",
+ "▁h or",
+ "▁ho r",
+ "▁ hor",
+ "▁re mov",
+ "▁rem ov",
+ "▁w ie",
+ "▁ wie",
+ "Cl ient",
+ "C lient",
+ "▁n atur",
+ "▁nat ur",
+ "hi p",
+ "h ip",
+ "Su b",
+ "S ub",
+ "▁r andom",
+ "▁ran dom",
+ "▁rand om",
+ "▁ random",
+ "D F",
+ "▁a rea",
+ "▁are a",
+ "▁ar ea",
+ "▁ area",
+ "ta g",
+ "t ag",
+ "P r",
+ "▁I tal",
+ "▁It al",
+ "▁ Ital",
+ "▁r oku",
+ "▁ro ku",
+ "▁rok u",
+ "no follow",
+ "nof ollow",
+ "* }",
+ "▁o thers",
+ "▁other s",
+ "▁l imit",
+ "▁li mit",
+ "▁lim it",
+ "▁ limit",
+ "▁s il",
+ "▁si l",
+ "▁ sil",
+ "▁s av",
+ "▁sa v",
+ "▁o ften",
+ "▁of ten",
+ "▁oft en",
+ "▁re nder",
+ "▁r ender",
+ "▁ren der",
+ "▁rend er",
+ "▁rende r",
+ "▁ render",
+ "D B",
+ "▁M c",
+ "▁ Mc",
+ "▁z ijn",
+ "▁zij n",
+ "же н",
+ "ж ен",
+ "▁t ag",
+ "▁ta g",
+ "▁ tag",
+ "min g",
+ "mi ng",
+ "m ing",
+ "li chen",
+ "lic hen",
+ "lich en",
+ "liche n",
+ "l ichen",
+ "pa ck",
+ "p ack",
+ "▁A g",
+ "▁ Ag",
+ "▁s ense",
+ "▁sens e",
+ "▁sen se",
+ "p g",
+ "Met hod",
+ "M ethod",
+ "ag ed",
+ "age d",
+ "a ged",
+ "á g",
+ "ł a",
+ "▁inter est",
+ "▁inte rest",
+ "▁as soci",
+ "▁ass oci",
+ "▁ associ",
+ "vol ution",
+ "▁em pty",
+ "▁emp ty",
+ "▁ empty",
+ "ic he",
+ "ich e",
+ "i che",
+ "▁g ro",
+ "▁gr o",
+ "▁ gro",
+ "▁t ypes",
+ "▁type s",
+ "▁typ es",
+ "▁ty pes",
+ "▁ types",
+ "▁S ie",
+ "▁Si e",
+ "In ter",
+ "Int er",
+ "▁n oreferrer",
+ "▁ noreferrer",
+ "▁g ives",
+ "▁giv es",
+ "▁give s",
+ "▁gi ves",
+ "ha l",
+ "h al",
+ "▁s ave",
+ "▁sa ve",
+ "▁sav e",
+ "▁ save",
+ "▁f ont",
+ "▁fo nt",
+ "▁fon t",
+ "▁ font",
+ "ru ction",
+ "ruct ion",
+ "S cript",
+ "▁a lla",
+ "▁al la",
+ "▁all a",
+ "▁ alla",
+ "▁s ays",
+ "▁sa ys",
+ "▁say s",
+ "▁f u",
+ "▁ fu",
+ "ap e",
+ "a pe",
+ "▁l anguage",
+ "▁ language",
+ "ig er",
+ "ige r",
+ "i ger",
+ "▁K ing",
+ "▁Ki ng",
+ "▁Kin g",
+ "bo r",
+ "b or",
+ "u v",
+ "▁s hall",
+ "▁sh all",
+ "▁E urope",
+ "▁Europ e",
+ "▁Euro pe",
+ "▁Eur ope",
+ "▁ Europe",
+ "▁ein em",
+ "▁eine m",
+ "▁w ater",
+ "▁wa ter",
+ "▁wat er",
+ "▁ water",
+ "▁g overn",
+ "▁go vern",
+ "▁gover n",
+ "an z",
+ "at ors",
+ "ator s",
+ "ato rs",
+ "▁mon th",
+ "▁mo nth",
+ "▁mont h",
+ "▁ month",
+ "y e",
+ "▁import ant",
+ "▁ important",
+ "at z",
+ "a tz",
+ "fir st",
+ "f irst",
+ "▁Tr ans",
+ "▁Tra ns",
+ "▁ Trans",
+ "▁M ad",
+ "▁Ma d",
+ "▁ Mad",
+ "▁b ra",
+ "▁br a",
+ "▁ bra",
+ "ik a",
+ "i ka",
+ "▁S aint",
+ "▁Sa int",
+ "▁Sain t",
+ "▁ Saint",
+ "or ia",
+ "ori a",
+ "o ria",
+ "kr e",
+ "k re",
+ "em ents",
+ "ement s",
+ "emen ts",
+ "e ments",
+ "▁B en",
+ "▁Be n",
+ "▁ Ben",
+ "la v",
+ "l av",
+ "▁ad min",
+ "▁adm in",
+ "▁ admin",
+ "▁H en",
+ "▁He n",
+ "▁ Hen",
+ "ri l",
+ "r il",
+ "▁S m",
+ "▁ Sm",
+ "ca t",
+ "c at",
+ "▁Re fer",
+ "▁Ref er",
+ "▁ Ш",
+ "▁p ract",
+ "▁pr act",
+ "▁pra ct",
+ "▁prac t",
+ "▁P at",
+ "▁Pa t",
+ "▁ Pat",
+ "▁G re",
+ "▁Gr e",
+ "▁ Gre",
+ "▁you ng",
+ "▁yo ung",
+ "▁In ter",
+ "▁Int er",
+ "▁ Inter",
+ "om a",
+ "o ma",
+ "te ger",
+ "ib ility",
+ "ibil ity",
+ "▁param eters",
+ "▁parameter s",
+ "▁paramet ers",
+ "▁ parameters",
+ "▁every thing",
+ "da t",
+ "d at",
+ "ur op",
+ "uro p",
+ "u rop",
+ "ole an",
+ "o lean",
+ "▁return ed",
+ "▁C lass",
+ "▁Cl ass",
+ "▁Cla ss",
+ "▁ Class",
+ "ac y",
+ "a cy",
+ "## ##",
+ "▁p ř",
+ "▁f older",
+ "▁fol der",
+ "▁fo lder",
+ "▁ folder",
+ "▁k on",
+ "▁ko n",
+ "▁ kon",
+ "▁gu ess",
+ "g t",
+ "je n",
+ "j en",
+ "an nel",
+ "ann el",
+ "anne l",
+ "ic on",
+ "ico n",
+ "i con",
+ "▁c omb",
+ "▁com b",
+ "▁co mb",
+ "▁ comb",
+ "ri ct",
+ "ric t",
+ "r ict",
+ "▁h ij",
+ "▁hi j",
+ "▁aut hor",
+ "▁auth or",
+ "▁ author",
+ "se e",
+ "s ee",
+ "he re",
+ "her e",
+ "h ere",
+ "st ra",
+ "str a",
+ "s tra",
+ "▁ent ire",
+ "▁direct ly",
+ "ra ft",
+ "raf t",
+ "r aft",
+ "he et",
+ "es ter",
+ "est er",
+ "este r",
+ "e ster",
+ "▁м и",
+ "▁ ми",
+ "▁m ass",
+ "▁ma ss",
+ "▁mas s",
+ "▁ mass",
+ "un tu",
+ "unt u",
+ "▁u sers",
+ "▁us ers",
+ "▁use rs",
+ "▁user s",
+ "▁ users",
+ "ch i",
+ "c hi",
+ "P E",
+ "▁com ponent",
+ "▁compon ent",
+ "▁ component",
+ "Cl ick",
+ "C lick",
+ "At t",
+ "A tt",
+ "▁s obre",
+ "▁so bre",
+ "▁sob re",
+ "an ds",
+ "and s",
+ "▁H ol",
+ "▁Ho l",
+ "▁ Hol",
+ "▁S ant",
+ "▁San t",
+ "▁Sa nt",
+ "or i",
+ "o ri",
+ "▁s ua",
+ "▁su a",
+ "st d",
+ "s td",
+ "ent ic",
+ "enti c",
+ "C C",
+ "▁fil ter",
+ "▁ filter",
+ "S QL",
+ "▁G od",
+ "▁Go d",
+ "A t",
+ "▁м у",
+ "▁ му",
+ "▁per formance",
+ "▁perform ance",
+ "del ta",
+ "d elta",
+ "an de",
+ "and e",
+ "a nde",
+ "am er",
+ "ame r",
+ "a mer",
+ "д ы",
+ "▁c ult",
+ "▁cu lt",
+ "▁cul t",
+ "▁N or",
+ "▁No r",
+ "bu t",
+ "b ut",
+ "▁l ik",
+ "▁li k",
+ "▁ lik",
+ "**** ****",
+ "ст вен",
+ "ств ен",
+ "стве н",
+ "▁com me",
+ "▁comm e",
+ "▁d r",
+ "▁ dr",
+ "im er",
+ "ime r",
+ "i mer",
+ "or din",
+ "ord in",
+ "▁cond ition",
+ "▁ condition",
+ "es te",
+ "est e",
+ "e ste",
+ "( [",
+ "F F",
+ "ть ся",
+ "im o",
+ "i mo",
+ "ra b",
+ "r ab",
+ "і ль",
+ "▁h alf",
+ "▁hal f",
+ "▁ half",
+ "ea ch",
+ "e ach",
+ "Di s",
+ "D is",
+ "▁r ows",
+ "▁ro ws",
+ "▁row s",
+ "▁ rows",
+ "▁h on",
+ "▁ho n",
+ "▁ hon",
+ "▁t ogether",
+ "▁tog ether",
+ "▁ și",
+ "me di",
+ "med i",
+ "m edi",
+ "ag n",
+ "a gn",
+ "al led",
+ "all ed",
+ "alle d",
+ "▁v ill",
+ "▁vi ll",
+ "▁vil l",
+ "IN G",
+ "I NG",
+ "id den",
+ "idd en",
+ "▁d raw",
+ "▁dr aw",
+ "▁dra w",
+ "▁ draw",
+ "yn tax",
+ "ynt ax",
+ "▁att empt",
+ "UR L",
+ "U RL",
+ "pos e",
+ "po se",
+ "p ose",
+ "▁in dic",
+ "▁ind ic",
+ "ни ка",
+ "ник а",
+ "▁Eng lish",
+ "▁ English",
+ "▁d éc",
+ "▁dé c",
+ "▁ne eds",
+ "▁need s",
+ "▁n ormal",
+ "▁nor mal",
+ "▁norm al",
+ "▁ normal",
+ "ur t",
+ "u rt",
+ "▁н о",
+ "▁ но",
+ "}} \\",
+ "} }\\",
+ "la st",
+ "las t",
+ "l ast",
+ "▁F in",
+ "▁ Fin",
+ "▁F ebru",
+ "▁Fe bru",
+ "▁Feb ru",
+ "il a",
+ "i la",
+ "▁c ountry",
+ "▁count ry",
+ "▁coun try",
+ "▁ country",
+ "▁field s",
+ "▁fiel ds",
+ "▁ fields",
+ "▁m ax",
+ "▁ma x",
+ "▁ max",
+ "lé s",
+ "l és",
+ "ow ie",
+ "owi e",
+ "o wie",
+ "▁de ux",
+ "▁bu ilt",
+ "▁ built",
+ "▁M ain",
+ "▁Ma in",
+ "▁Mai n",
+ "▁ Main",
+ "▁c amp",
+ "▁cam p",
+ "▁ca mp",
+ "▁ camp",
+ "iv o",
+ "i vo",
+ "iv a",
+ "i va",
+ "ic y",
+ "i cy",
+ "zi one",
+ "z ione",
+ "No de",
+ "N ode",
+ "▁: )",
+ "▁ :)",
+ "▁am ong",
+ "▁O b",
+ "▁ Ob",
+ "▁c ases",
+ "▁case s",
+ "▁cas es",
+ "▁ cases",
+ "ha ps",
+ "h aps",
+ "se rs",
+ "ser s",
+ "s ers",
+ "ar ter",
+ "art er",
+ "arte r",
+ "śc i",
+ "ś ci",
+ "▁it er",
+ "▁i ter",
+ "▁ iter",
+ "▁n amed",
+ "▁name d",
+ "▁na med",
+ "▁nam ed",
+ "▁ named",
+ "ex ec",
+ "exe c",
+ "▁se ason",
+ "▁sea son",
+ "▁ season",
+ "to t",
+ "t ot",
+ "= >",
+ "gr aph",
+ "gra ph",
+ "g raph",
+ "▁n il",
+ "▁ni l",
+ "▁ nil",
+ "ac ional",
+ "acion al",
+ "aci onal",
+ "▁N ULL",
+ "▁ NULL",
+ "▁spe cial",
+ "▁spec ial",
+ "▁ special",
+ "ст е",
+ "с те",
+ "cs s",
+ "c ss",
+ "▁\\ (",
+ "v s",
+ "ae l",
+ "a el",
+ "▁c ity",
+ "▁ci ty",
+ "▁cit y",
+ "▁ city",
+ "ov a",
+ "o va",
+ "▁art icle",
+ "▁ article",
+ "▁S outh",
+ "▁So uth",
+ "▁Sou th",
+ "Act ion",
+ "Ac tion",
+ "A ction",
+ "ç a",
+ "sp ring",
+ "spr ing",
+ "s pring",
+ "it ude",
+ "itu de",
+ "itud e",
+ "▁com plex",
+ "▁comp lex",
+ "▁comple x",
+ "▁compl ex",
+ "▁ complex",
+ "▁ч то",
+ "bu ild",
+ "g amma",
+ "▁E nt",
+ "▁En t",
+ "▁ Ent",
+ "ie rs",
+ "ier s",
+ "i ers",
+ "' .",
+ "ca r",
+ "c ar",
+ "ap ache",
+ "apa che",
+ "in gen",
+ "ing en",
+ "inge n",
+ "In put",
+ ": ",
+ "▁d ynam",
+ "▁dy nam",
+ "al ls",
+ "all s",
+ "sh ow",
+ "s how",
+ "| \\",
+ "▁w ird",
+ "▁wir d",
+ "B ar",
+ "al th",
+ "alt h",
+ "mod el",
+ "mo del",
+ "mode l",
+ "m odel",
+ "Tr ans",
+ "Tra ns",
+ "Ro w",
+ "R ow",
+ "ab e",
+ "a be",
+ "▁l ib",
+ "▁li b",
+ "▁ lib",
+ "nu ll",
+ "n ull",
+ "ra gment",
+ "rag ment",
+ "▁St ate",
+ "▁Stat e",
+ "▁Sta te",
+ "▁ State",
+ "▁l aw",
+ "▁la w",
+ "▁ law",
+ "Fr ame",
+ "F rame",
+ "▁L o",
+ "▁ Lo",
+ "ge b",
+ "g eb",
+ "}$ .",
+ "} $.",
+ "▁ne eded",
+ "▁need ed",
+ "▁con tr",
+ "▁cont r",
+ "▁ contr",
+ "ar ies",
+ "ari es",
+ "arie s",
+ "a ries",
+ "▁s creen",
+ "▁sc reen",
+ "▁scr een",
+ "▁ screen",
+ "y r",
+ "m m",
+ "▁sh own",
+ "▁show n",
+ "▁sho wn",
+ "▁b ad",
+ "▁ba d",
+ "▁ bad",
+ "▁c ast",
+ "▁cas t",
+ "▁ca st",
+ "▁ cast",
+ "▁T est",
+ "▁Te st",
+ "▁ Test",
+ "▁A uf",
+ "▁Au f",
+ "▁qu ant",
+ "▁quan t",
+ "▁ quant",
+ "ig a",
+ "i ga",
+ "▁re n",
+ "▁r en",
+ "▁ ren",
+ "▁M ac",
+ "▁Ma c",
+ "▁ Mac",
+ "▁trans form",
+ "▁ transform",
+ "▁d ifference",
+ "▁dif ference",
+ "▁differ ence",
+ "▁t it",
+ "▁ti t",
+ "▁ tit",
+ "T E",
+ "▁st ep",
+ "▁ste p",
+ "▁ step",
+ "▁c apt",
+ "▁cap t",
+ "▁ca pt",
+ "▁ capt",
+ "▁col lection",
+ "▁coll ection",
+ "▁collect ion",
+ "▁colle ction",
+ "▁ collection",
+ "iction ary",
+ "▁T om",
+ "▁To m",
+ "▁ Tom",
+ "ri er",
+ "rie r",
+ "r ier",
+ "▁m ove",
+ "▁mov e",
+ "▁mo ve",
+ "▁ move",
+ "co pe",
+ "cop e",
+ "c ope",
+ "or ds",
+ "ord s",
+ "▁fur ther",
+ "▁column s",
+ "▁ columns",
+ "▁L in",
+ "▁Li n",
+ "▁ Lin",
+ "▁f ixed",
+ "▁fix ed",
+ "▁ fixed",
+ "▁child ren",
+ "▁ children",
+ "M S",
+ "m o",
+ "un a",
+ "u na",
+ "▁ind ivid",
+ "tt y",
+ "t ty",
+ "as te",
+ "ast e",
+ "a ste",
+ "sr c",
+ "s rc",
+ "mat ch",
+ "m atch",
+ "w i",
+ "▁ х",
+ "▁д и",
+ "▁ ди",
+ "▁o rd",
+ "▁or d",
+ "▁ ord",
+ "iv ing",
+ "ivi ng",
+ "i ving",
+ "▁B ro",
+ "▁Br o",
+ "▁ Bro",
+ "▁al most",
+ "▁P res",
+ "▁Pr es",
+ "▁Pre s",
+ "▁ Pres",
+ "re ci",
+ "rec i",
+ "ar ing",
+ "ari ng",
+ "arin g",
+ "a ring",
+ "▁/ //",
+ "▁// /",
+ "▁ ///",
+ "ет ся",
+ "е тся",
+ "▁s ig",
+ "▁si g",
+ "▁ sig",
+ "lig ht",
+ "l ight",
+ "▁R ed",
+ "▁Re d",
+ "▁ Red",
+ "▁sugg est",
+ "▁sug gest",
+ "ol f",
+ "▁é té",
+ "▁ét é",
+ "▁ été",
+ "is ation",
+ "isa tion",
+ "isat ion",
+ "з на",
+ "Ne w",
+ "N ew",
+ "ст ан",
+ "ста н",
+ "с тан",
+ "L A",
+ "un icip",
+ "unic ip",
+ "uni cip",
+ "▁fig ure",
+ "▁figur e",
+ "▁ figure",
+ "m t",
+ "ia le",
+ "ial e",
+ "i ale",
+ "▁c atch",
+ "▁cat ch",
+ "▁ catch",
+ "de fault",
+ "def ault",
+ "▁t ele",
+ "▁te le",
+ "▁tel e",
+ "▁ tele",
+ "▁m atter",
+ "▁mat ter",
+ "ca st",
+ "cas t",
+ "c ast",
+ "▁R ich",
+ "▁Ric h",
+ "▁Ri ch",
+ "▁ Rich",
+ "▁hand le",
+ "▁ handle",
+ "val u",
+ "va lu",
+ "v alu",
+ "$ -",
+ "о б",
+ "▁j son",
+ "▁js on",
+ "▁ json",
+ "Cre ate",
+ "C reate",
+ "▁ex am",
+ "ал ь",
+ "а ль",
+ "ю т",
+ "or ed",
+ "ore d",
+ "o red",
+ "id os",
+ "ido s",
+ "ap pend",
+ "app end",
+ "appen d",
+ "appe nd",
+ "▁Ar ray",
+ "▁Arr ay",
+ "▁ Array",
+ "к с",
+ "} [",
+ "ri ve",
+ "riv e",
+ "r ive",
+ "▁c lub",
+ "▁cl ub",
+ "▁ club",
+ "ma nn",
+ "man n",
+ "m ann",
+ "▁e ste",
+ "▁est e",
+ "▁es te",
+ "▁ este",
+ "es ta",
+ "est a",
+ "e sta",
+ "▁G i",
+ "▁ Gi",
+ "▁J ap",
+ "▁Ja p",
+ "▁N ame",
+ "▁Na me",
+ "▁Nam e",
+ "▁ Name",
+ "Col umn",
+ "ou ps",
+ "oup s",
+ "o ups",
+ "is mo",
+ "ism o",
+ "▁C ity",
+ "▁Ci ty",
+ "▁Cit y",
+ "▁ City",
+ "▁class es",
+ "▁classe s",
+ "▁ classes",
+ "▁in fl",
+ "▁inf l",
+ "▁ infl",
+ "h l",
+ "ро м",
+ "р ом",
+ "▁ad ding",
+ "▁add ing",
+ "▁ adding",
+ "▁f ail",
+ "▁fa il",
+ "▁ fail",
+ "x x",
+ "õ es",
+ "S c",
+ "ut il",
+ "uti l",
+ "u til",
+ "▁l ocation",
+ "▁lo cation",
+ "▁loc ation",
+ "▁ location",
+ "le ge",
+ "leg e",
+ "l ege",
+ "ag o",
+ "a go",
+ "▁pro perties",
+ "▁proper ties",
+ "▁ properties",
+ "ab il",
+ "abi l",
+ "a bil",
+ "va s",
+ "v as",
+ "}$ ,",
+ "} $,",
+ "it ted",
+ "itt ed",
+ "itte d",
+ "ó d",
+ "▁D em",
+ "▁De m",
+ "▁as ked",
+ "▁ask ed",
+ "▁t ab",
+ "▁ta b",
+ "▁ tab",
+ "S ource",
+ "▁error s",
+ "▁err ors",
+ "▁ errors",
+ "ograph ie",
+ "▁ж и",
+ "▁ жи",
+ "▁m al",
+ "▁ma l",
+ "▁ mal",
+ "st ract",
+ "str act",
+ "stra ct",
+ "▁d ro",
+ "▁dr o",
+ "▁ dro",
+ "ra k",
+ "r ak",
+ "▁n ote",
+ "▁not e",
+ "▁no te",
+ "▁ note",
+ "▁set ting",
+ "▁sett ing",
+ "▁ setting",
+ "▁f em",
+ "▁fe m",
+ "▁s aw",
+ "▁sa w",
+ "ia r",
+ "i ar",
+ "HE R",
+ "H ER",
+ "е с",
+ "▁p red",
+ "▁pr ed",
+ "▁pre d",
+ "▁ pred",
+ "▁O ut",
+ "▁ Out",
+ "▁it ems",
+ "▁item s",
+ "▁ items",
+ "ла н",
+ "л ан",
+ "▁w erd",
+ "▁we rd",
+ "▁wer d",
+ "ers ion",
+ "li a",
+ "l ia",
+ "▁s in",
+ "▁si n",
+ "▁ sin",
+ "ich te",
+ "icht e",
+ "i chte",
+ "▁fe el",
+ "▁fee l",
+ "▁п ра",
+ "▁пр а",
+ "▁ пра",
+ "▁o der",
+ "▁od er",
+ "▁ oder",
+ "U E",
+ "oc ument",
+ "▁m ode",
+ "▁mod e",
+ "▁mo de",
+ "▁ mode",
+ "▁N a",
+ "▁ Na",
+ "де н",
+ "д ен",
+ "me s",
+ "m es",
+ "frame work",
+ "▁a uto",
+ "▁au to",
+ "▁aut o",
+ "▁ auto",
+ "ны м",
+ "н ым",
+ "ub y",
+ "u by",
+ "▁tem plate",
+ "▁temp late",
+ "▁ template",
+ "▁m ess",
+ "▁me ss",
+ "▁mes s",
+ "▁ mess",
+ "ie der",
+ "ied er",
+ "i eder",
+ "▁rel ated",
+ "▁rela ted",
+ "▁relate d",
+ "▁ related",
+ "ok en",
+ "oke n",
+ "o ken",
+ "▁follow s",
+ "se arch",
+ "s earch",
+ "am i",
+ "a mi",
+ "▁w ait",
+ "▁wa it",
+ "▁ wait",
+ "ig r",
+ "i gr",
+ "▁l ow",
+ "▁lo w",
+ "▁ low",
+ "ски х",
+ "ск их",
+ "с ких",
+ "ска я",
+ "с кая",
+ "▁M ark",
+ "▁Mar k",
+ "▁ Mark",
+ "▁i ll",
+ "▁il l",
+ "▁ ill",
+ "am ento",
+ "ament o",
+ "amen to",
+ "\\ <",
+ "▁d f",
+ "▁ df",
+ "os ition",
+ "osi tion",
+ "▁В и",
+ "is f",
+ "i sf",
+ "▁De utsch",
+ "ah l",
+ "a hl",
+ "wa r",
+ "w ar",
+ "it ect",
+ "ite ct",
+ "▁s al",
+ "▁sa l",
+ "▁ sal",
+ "el en",
+ "ele n",
+ "e len",
+ "By Id",
+ "▁g ru",
+ "▁gr u",
+ "▁ gru",
+ "s v",
+ "▁pass ed",
+ "▁pas sed",
+ "▁passe d",
+ "▁a ñ",
+ "▁ añ",
+ "Sc h",
+ "S ch",
+ "▁sol ve",
+ "we ise",
+ "weis e",
+ "wei se",
+ "at os",
+ "ato s",
+ "▁m eg",
+ "▁me g",
+ "▁m ember",
+ "▁mem ber",
+ "▁memb er",
+ "▁ member",
+ "er name",
+ "ern ame",
+ "erna me",
+ "▁con nect",
+ "▁conne ct",
+ "▁conn ect",
+ "▁ connect",
+ "ip s",
+ "i ps",
+ "▁r ound",
+ "▁ro und",
+ "▁rou nd",
+ "▁ round",
+ "▁ ]",
+ "ne s",
+ "n es",
+ "▁d ir",
+ "▁di r",
+ "▁ dir",
+ "▁Lond on",
+ "d y",
+ "F A",
+ "▁rece ived",
+ "▁receive d",
+ "re et",
+ "ree t",
+ "▁L og",
+ "▁Lo g",
+ "▁ Log",
+ "▁Sch ool",
+ "an go",
+ "ang o",
+ "▁The se",
+ "▁Th ese",
+ "▁M ont",
+ "▁Mon t",
+ "▁Mo nt",
+ "▁ Mont",
+ "▁e ner",
+ "▁en er",
+ "▁ ener",
+ "la d",
+ "l ad",
+ "▁def ine",
+ "▁defin e",
+ "▁ define",
+ "si gn",
+ "sig n",
+ "s ign",
+ "▁c le",
+ "▁cl e",
+ "▁ cle",
+ "fig ure",
+ "▁V iew",
+ "▁Vi ew",
+ "▁Vie w",
+ "▁ View",
+ "text bf",
+ "$ \\",
+ "з ы",
+ "num ber",
+ "n umber",
+ "▁d in",
+ "▁di n",
+ "▁ din",
+ "el ler",
+ "ell er",
+ "elle r",
+ "orith m",
+ "ori thm",
+ "fal se",
+ "f alse",
+ "fo l",
+ "f ol",
+ "ffic ient",
+ "▁HT ML",
+ "▁ HTML",
+ "li che",
+ "lic he",
+ "lich e",
+ "l iche",
+ "▁M o",
+ "▁ Mo",
+ "▁int rodu",
+ "▁intr odu",
+ "▁intro du",
+ "ex p",
+ "e xp",
+ "▁st rong",
+ "▁str ong",
+ "▁stro ng",
+ "▁ strong",
+ "▁t hus",
+ "▁th us",
+ "/ )",
+ "▁e le",
+ "▁el e",
+ "▁ ele",
+ "▁та к",
+ "▁ так",
+ "▁п а",
+ "▁ па",
+ "▁d ont",
+ "▁do nt",
+ "▁don t",
+ "▁c ause",
+ "▁caus e",
+ "▁ca use",
+ "Num ber",
+ "N umber",
+ "▁im ages",
+ "▁image s",
+ "▁imag es",
+ "▁ images",
+ "▁s ample",
+ "▁sam ple",
+ "▁ sample",
+ "▁s ci",
+ "▁sc i",
+ "▁ sci",
+ "li ke",
+ "lik e",
+ "l ike",
+ "▁L ou",
+ "▁Lo u",
+ "▁ Lou",
+ "di v",
+ "d iv",
+ "an c",
+ "a nc",
+ "▁f ront",
+ "▁fr ont",
+ "▁fro nt",
+ "▁ front",
+ "ne n",
+ "n en",
+ "▁miss ing",
+ "▁mis sing",
+ "▁ missing",
+ "ar ia",
+ "ari a",
+ "a ria",
+ "pr es",
+ "pre s",
+ "p res",
+ "▁п ред",
+ "▁пре д",
+ "D I",
+ "fil ter",
+ "▁M it",
+ "▁Mi t",
+ "U R",
+ "▁o pp",
+ "▁op p",
+ "▁ opp",
+ "▁s ql",
+ "▁sq l",
+ "▁ sql",
+ "▁ро ку",
+ "er en",
+ "ere n",
+ "e ren",
+ "em at",
+ "ema t",
+ "e mat",
+ "í s",
+ "▁Je an",
+ "▁ Jean",
+ "é c",
+ "▁c i",
+ "▁ ci",
+ "en ne",
+ "enn e",
+ "at form",
+ "▁t aken",
+ "▁tak en",
+ "▁take n",
+ "▁ta ken",
+ "▁O f",
+ "▁ Of",
+ "▁на се",
+ "▁e rr",
+ "▁er r",
+ "▁ err",
+ "O P",
+ "Fr om",
+ "F rom",
+ "De fault",
+ "Def ault",
+ "▁Gener al",
+ "▁Gen eral",
+ "▁Gene ral",
+ "▁ General",
+ "wik i",
+ "wi ki",
+ "w iki",
+ "▁g rand",
+ "▁gr and",
+ "▁gra nd",
+ "▁gran d",
+ "▁ grand",
+ "▁e inen",
+ "▁ein en",
+ "▁eine n",
+ "Re g",
+ "R eg",
+ "Hand ler",
+ "Handle r",
+ "con om",
+ "co nom",
+ "cono m",
+ "c onom",
+ "an ger",
+ "ang er",
+ "ange r",
+ "▁бы л",
+ "▁L os",
+ "▁Lo s",
+ "▁ Los",
+ "▁ex pression",
+ "▁exp ression",
+ "▁express ion",
+ "▁expr ession",
+ "▁ expression",
+ "ш а",
+ "ya l",
+ "y al",
+ "▁$ ('",
+ "▁$( '",
+ "▁sw itch",
+ "▁ switch",
+ "▁v ector",
+ "▁ve ctor",
+ "▁vec tor",
+ "▁ vector",
+ "▁T hom",
+ "▁Th om",
+ "▁v irt",
+ "▁vi rt",
+ "▁vir t",
+ "▁ virt",
+ "le ased",
+ "lease d",
+ "lea sed",
+ "▁c over",
+ "▁co ver",
+ "▁cov er",
+ "▁ cover",
+ "▁re sp",
+ "▁r esp",
+ "▁res p",
+ "▁ resp",
+ "ak o",
+ "a ko",
+ "ren ch",
+ "ot a",
+ "o ta",
+ "C ell",
+ "an ged",
+ "ang ed",
+ "ange d",
+ "▁+ =",
+ "▁ +=",
+ "la c",
+ "l ac",
+ "sk a",
+ "s ka",
+ "ne xt",
+ "nex t",
+ "n ext",
+ "▁Intern ational",
+ "▁W il",
+ "▁Wi l",
+ "▁ Wil",
+ "▁o nt",
+ "▁on t",
+ "▁ ont",
+ "ib r",
+ "i br",
+ "us tr",
+ "ust r",
+ "u str",
+ "▁b lack",
+ "▁bl ack",
+ "▁bla ck",
+ "▁ black",
+ "▁select ed",
+ "▁sel ected",
+ "▁sele cted",
+ "▁ selected",
+ "ch er",
+ "che r",
+ "c her",
+ "▁l iter",
+ "▁li ter",
+ "▁lit er",
+ "▁ liter",
+ "ro ot",
+ "r oot",
+ "л ся",
+ "▁L ife",
+ "▁Li fe",
+ "▁ Life",
+ "▁in sert",
+ "▁ins ert",
+ "▁inser t",
+ "▁inse rt",
+ "▁ insert",
+ "▁mat rix",
+ "▁ matrix",
+ "is es",
+ "ise s",
+ ") ]",
+ "▁p el",
+ "▁pe l",
+ "▁ pel",
+ "Over ride",
+ "ry pt",
+ "▁for mer",
+ "▁form er",
+ "▁forme r",
+ "▁ former",
+ "▁Fil m",
+ "▁N orth",
+ "▁Nor th",
+ "cl ient",
+ "cli ent",
+ "c lient",
+ "▁n ight",
+ "▁ night",
+ "хо ди",
+ "ход и",
+ "▁A ustral",
+ "▁Aust ral",
+ "▁ Austral",
+ "▁R et",
+ "▁Re t",
+ "▁ Ret",
+ "rh o",
+ "r ho",
+ "▁п ер",
+ "▁пе р",
+ "▁ пер",
+ "ip edia",
+ "ipe dia",
+ "▁ex press",
+ "▁exp ress",
+ "▁expr ess",
+ "▁expres s",
+ "▁ express",
+ "▁th ird",
+ "▁ third",
+ "▁ma jor",
+ "▁maj or",
+ "▁ major",
+ "▁g rad",
+ "▁gr ad",
+ "▁gra d",
+ "▁ grad",
+ "ow e",
+ "o we",
+ "▁bel ieve",
+ "our nal",
+ "ourn al",
+ "▁st atus",
+ "▁stat us",
+ "▁ status",
+ "un c",
+ "u nc",
+ "▁d ou",
+ "▁do u",
+ "▁J SON",
+ "▁JS ON",
+ "▁ JSON",
+ "ui s",
+ "u is",
+ "▁pop ulation",
+ "▁popula tion",
+ "▁popul ation",
+ "en z",
+ "▁Will iam",
+ "s f",
+ "▁O bject",
+ "▁Ob ject",
+ "▁ Object",
+ "▁c in",
+ "▁ci n",
+ "▁ cin",
+ "▁D i",
+ "▁ Di",
+ "cur ity",
+ "c urity",
+ "▁O pen",
+ "▁Op en",
+ "▁ Open",
+ "▁ ле",
+ "la r",
+ "l ar",
+ "ad ding",
+ "add ing",
+ "▁k om",
+ "▁ko m",
+ "▁ kom",
+ "}( \\",
+ "} (\\",
+ "▁k il",
+ "▁ki l",
+ "▁ kil",
+ "um er",
+ "ume r",
+ "u mer",
+ "\"/ >",
+ "\" />",
+ "▁fe ature",
+ "▁ feature",
+ "▁A re",
+ "▁Ar e",
+ "▁ Are",
+ "ck s",
+ "c ks",
+ "▁Intern et",
+ "▁Inter net",
+ "▁ Internet",
+ "▁i h",
+ "▁ ih",
+ "▁start ed",
+ "▁star ted",
+ "▁ear ly",
+ "▁be gan",
+ "▁beg an",
+ "T H",
+ "p ython",
+ "as p",
+ "a sp",
+ "▁F r",
+ "▁ Fr",
+ "▁c los",
+ "▁cl os",
+ "▁clo s",
+ "▁ clos",
+ "ist ic",
+ "isti c",
+ "▁mus ic",
+ "▁ music",
+ "▁d ig",
+ "▁di g",
+ "▁ dig",
+ "▁it al",
+ "▁i tal",
+ "▁ ital",
+ "▁D avid",
+ "▁Dav id",
+ "▁Da vid",
+ "▁ David",
+ "▁web site",
+ "▁ website",
+ "▁cont roller",
+ "▁control ler",
+ "▁ controller",
+ "▁M er",
+ "▁Me r",
+ "▁ Mer",
+ "con text",
+ "cont ext",
+ "pro duct",
+ "produ ct",
+ "prod uct",
+ "os p",
+ "o sp",
+ "▁j un",
+ "▁ju n",
+ "ro wn",
+ "row n",
+ "r own",
+ "▁A z",
+ "▁ Az",
+ "\": \"",
+ "\" :\"",
+ "▁a an",
+ "▁aa n",
+ "▁D ate",
+ "▁Da te",
+ "▁Dat e",
+ "▁ Date",
+ "mu lt",
+ "mul t",
+ "m ult",
+ "▁b rowser",
+ "▁brow ser",
+ "▁ browser",
+ "ре д",
+ "wh ich",
+ "R A",
+ "qu are",
+ "qua re",
+ "▁R uss",
+ "▁Ru ss",
+ "▁Rus s",
+ "▁ Russ",
+ "▁s oon",
+ "▁so on",
+ "▁P re",
+ "▁Pr e",
+ "▁ Pre",
+ "ta u",
+ "t au",
+ "▁we ek",
+ "▁ week",
+ "▁б а",
+ "▁ ба",
+ "▁o ct",
+ "▁oc t",
+ "▁ oct",
+ "▁t own",
+ "▁to wn",
+ "▁ town",
+ "ro y",
+ "r oy",
+ "▁e ls",
+ "▁el s",
+ "▁ els",
+ "bl ic",
+ "b lic",
+ "und le",
+ "▁H istor",
+ "▁His tor",
+ "▁Hi stor",
+ "▁Hist or",
+ "▁f oi",
+ "▁fo i",
+ "▁mod els",
+ "▁model s",
+ "▁mode ls",
+ "▁ models",
+ "з о",
+ "on ym",
+ "ony m",
+ "o nym",
+ "Par am",
+ "Pa ram",
+ "P aram",
+ "▁M et",
+ "▁Me t",
+ "▁ Met",
+ "ge ner",
+ "gen er",
+ "g ener",
+ "j ą",
+ "▁e spe",
+ "▁es pe",
+ "▁esp e",
+ "C E",
+ "▁de vice",
+ "▁dev ice",
+ "▁devi ce",
+ "▁ device",
+ "el low",
+ "ell ow",
+ "ello w",
+ "▁de bug",
+ "▁deb ug",
+ "▁ debug",
+ "ér ie",
+ "éri e",
+ "é rie",
+ "us ing",
+ "u sing",
+ "ан г",
+ "а нг",
+ "▁* )",
+ "▁ *)",
+ "ud i",
+ "u di",
+ "▁M iss",
+ "▁Mi ss",
+ "▁Mis s",
+ "▁ Miss",
+ "ко м",
+ "к ом",
+ "pos ed",
+ "po sed",
+ "pose d",
+ "p osed",
+ "▁z we",
+ "▁zw e",
+ "і н",
+ "▁Ro bert",
+ "▁Rob ert",
+ "▁O ct",
+ "▁ Oct",
+ "lo p",
+ "l op",
+ "ja r",
+ "j ar",
+ "▁a ver",
+ "▁av er",
+ "▁ave r",
+ "▁ aver",
+ "▁ha bit",
+ "▁hab it",
+ "▁: :",
+ "▁ ::",
+ "än g",
+ "ä ng",
+ "St art",
+ "Star t",
+ "▁p ow",
+ "▁po w",
+ "▁ pow",
+ "▁s rc",
+ "▁sr c",
+ "▁ src",
+ "▁pat tern",
+ "▁ pattern",
+ "▁ Э",
+ "▁b i",
+ "▁ bi",
+ "ot es",
+ "ote s",
+ "o tes",
+ "▁_ _",
+ "▁ __",
+ "▁s ens",
+ "▁se ns",
+ "▁sen s",
+ "▁ sens",
+ "▁a void",
+ "▁av oid",
+ "▁avo id",
+ "ex ample",
+ "ut t",
+ "u tt",
+ "La bel",
+ "Lab el",
+ "L abel",
+ "te x",
+ "t ex",
+ "bo ot",
+ "b oot",
+ "es to",
+ "est o",
+ "e sto",
+ "▁M arch",
+ "▁Mar ch",
+ "▁Marc h",
+ "▁e asy",
+ "▁eas y",
+ "ict ure",
+ "Gr oup",
+ "▁f ather",
+ "▁fa ther",
+ "▁fat her",
+ "▁ father",
+ "▁up dated",
+ "▁update d",
+ "▁upd ated",
+ "▁ updated",
+ "▁V o",
+ "▁I II",
+ "▁II I",
+ "▁ III",
+ "om ega",
+ "ome ga",
+ "▁a lle",
+ "▁al le",
+ "▁all e",
+ "▁ alle",
+ "Re c",
+ "R ec",
+ "y g",
+ "з е",
+ "▁D im",
+ "▁Di m",
+ "▁ Dim",
+ "ne ct",
+ "n ect",
+ "▁T or",
+ "▁To r",
+ "▁de utsch",
+ "▁ deutsch",
+ "▁wh ite",
+ "▁ white",
+ "▁n ational",
+ "▁nation al",
+ "▁nat ional",
+ "pp e",
+ "p pe",
+ "▁a ir",
+ "▁ai r",
+ "▁ air",
+ "▁pass word",
+ "▁ password",
+ "de t",
+ "d et",
+ "▁b ig",
+ "▁bi g",
+ "▁ big",
+ "▁U se",
+ "▁Us e",
+ "▁ Use",
+ "cal l",
+ "ca ll",
+ "c all",
+ "▁ex tra",
+ "▁ext ra",
+ "▁extr a",
+ "▁ extra",
+ "W e",
+ "an ia",
+ "ani a",
+ "a nia",
+ "▁h old",
+ "▁ho ld",
+ "▁hol d",
+ "▁ hold",
+ "Cont rol",
+ "▁C O",
+ "▁ CO",
+ "▁м і",
+ "▁ мі",
+ "it i",
+ "i ti",
+ "▁K e",
+ "▁ Ke",
+ "en u",
+ "e nu",
+ "▁P ark",
+ "▁Par k",
+ "то м",
+ "т ом",
+ "▁a uth",
+ "▁au th",
+ "▁aut h",
+ "▁ auth",
+ "▁c enter",
+ "▁cent er",
+ "▁ center",
+ "P h",
+ "то в",
+ "т ов",
+ "id ing",
+ "idi ng",
+ "i ding",
+ "▁a cross",
+ "▁ac ross",
+ "▁s ong",
+ "▁so ng",
+ "▁son g",
+ "▁ song",
+ "▁ph ys",
+ "▁ phys",
+ "▁n umer",
+ "▁num er",
+ "▁nu mer",
+ "▁ numer",
+ "щ а",
+ "▁A lex",
+ "▁Al ex",
+ "▁Ale x",
+ "▁ Alex",
+ "▁problem s",
+ "▁proble ms",
+ "▁probl ems",
+ "▁E rror",
+ "▁Er ror",
+ "▁Err or",
+ "▁ Error",
+ "form at",
+ "for mat",
+ "▁A cc",
+ "▁Ac c",
+ "▁ Acc",
+ "▁s ix",
+ "▁si x",
+ "▁ six",
+ "▁d b",
+ "▁ db",
+ "▁C ast",
+ "▁Cas t",
+ "▁Ca st",
+ "▁ Cast",
+ "om s",
+ "o ms",
+ "pro ject",
+ "proj ect",
+ "▁v ert",
+ "▁ver t",
+ "▁ve rt",
+ "▁ vert",
+ "cre t",
+ "cr et",
+ "c ret",
+ "▁he ader",
+ "▁head er",
+ "▁ header",
+ "▁st ream",
+ "▁stre am",
+ "▁ stream",
+ "id s",
+ "i ds",
+ "▁t or",
+ "▁to r",
+ "▁ tor",
+ "▁se pt",
+ "▁sep t",
+ "▁est im",
+ "▁es tim",
+ "▁de cl",
+ "▁dec l",
+ "▁ decl",
+ "▁g ave",
+ "▁ga ve",
+ "▁p layer",
+ "▁pl ayer",
+ "▁play er",
+ "▁pla yer",
+ "▁ player",
+ "ys is",
+ "▁д ру",
+ "▁др у",
+ "am m",
+ "a mm",
+ "щ о",
+ "▁( \"",
+ "▁ (\"",
+ "▁a x",
+ "▁ ax",
+ "Pro perty",
+ "us r",
+ "u sr",
+ "▁some one",
+ "▁im pro",
+ "▁imp ro",
+ "▁impr o",
+ "ad en",
+ "ade n",
+ "a den",
+ "ro te",
+ "rot e",
+ "r ote",
+ "▁М и",
+ "i h",
+ "++ )",
+ "+ +)",
+ "▁v ideo",
+ "▁vide o",
+ "▁ video",
+ "▁ex ists",
+ "▁exist s",
+ "▁ exists",
+ "к ла",
+ "▁comp lete",
+ "▁comple te",
+ "▁complet e",
+ "▁compl ete",
+ "▁ complete",
+ "▁s ession",
+ "▁sess ion",
+ "▁ session",
+ "▁const ant",
+ "▁ constant",
+ "ic os",
+ "ico s",
+ "i cos",
+ "▁p ack",
+ "▁pa ck",
+ "▁pac k",
+ "▁ pack",
+ "ro me",
+ "rom e",
+ "r ome",
+ "eg r",
+ "e gr",
+ "App lication",
+ "▁y es",
+ "▁ye s",
+ "▁ yes",
+ "▁e lle",
+ "▁el le",
+ "▁ell e",
+ "▁ elle",
+ "▁e mail",
+ "▁em ail",
+ "▁ email",
+ "or f",
+ "o rf",
+ "ca se",
+ "cas e",
+ "c ase",
+ "▁po inter",
+ "▁point er",
+ "▁ pointer",
+ "▁reg ard",
+ "se n",
+ "s en",
+ "st atus",
+ "stat us",
+ "▁m es",
+ "▁me s",
+ "▁ mes",
+ "▁d elle",
+ "▁de lle",
+ "▁del le",
+ "▁dell e",
+ "ing ton",
+ "ingt on",
+ "▁B as",
+ "▁Ba s",
+ "▁ Bas",
+ ") ^",
+ "de velop",
+ "▁for ce",
+ "▁ force",
+ "▁char acters",
+ "▁charact ers",
+ "▁character s",
+ "▁c ross",
+ "▁cr oss",
+ "▁cro ss",
+ "▁ cross",
+ "▁de ath",
+ "▁t akes",
+ "▁tak es",
+ "▁take s",
+ "▁ta kes",
+ "ér i",
+ "é ri",
+ "ig ne",
+ "ign e",
+ "че н",
+ "ч ен",
+ "U P",
+ ". :",
+ "Th read",
+ "j u",
+ "in y",
+ "i ny",
+ "▁det ails",
+ "▁detail s",
+ "▁ details",
+ "▁x ml",
+ "▁ xml",
+ "ta it",
+ "t ait",
+ "out put",
+ "mess age",
+ "m essage",
+ "' '",
+ "▁Brit ish",
+ "vi lle",
+ "vil le",
+ "v ille",
+ "▁D iv",
+ "▁Di v",
+ "▁ Div",
+ "▁U ser",
+ "▁Use r",
+ "▁Us er",
+ "▁ User",
+ "c m",
+ "ч но",
+ "col umn",
+ "eq ref",
+ "ó r",
+ "on om",
+ "ono m",
+ "o nom",
+ "▁P ost",
+ "▁Po st",
+ "▁Pos t",
+ "▁ Post",
+ "el len",
+ "ell en",
+ "elle n",
+ "A b",
+ "ul té",
+ "ult é",
+ "▁per fect",
+ "▁perf ect",
+ "() {",
+ "( ){",
+ "vis ion",
+ "v ision",
+ "act ive",
+ "activ e",
+ "li er",
+ "lie r",
+ "l ier",
+ "ri j",
+ "r ij",
+ "s d",
+ "▁k ö",
+ "▁ kö",
+ "▁n ie",
+ "▁ni e",
+ "▁ nie",
+ "▁re lig",
+ "▁rel ig",
+ "▁reli g",
+ "▁o t",
+ "▁ ot",
+ "▁m achine",
+ "▁mach ine",
+ "▁ machine",
+ "▁h eld",
+ "▁he ld",
+ "▁hel d",
+ ")$ .",
+ ") $.",
+ "==== ====",
+ "ck er",
+ "cke r",
+ "c ker",
+ "в ы",
+ "bo rn",
+ "bor n",
+ "b orn",
+ "▁p ast",
+ "▁pas t",
+ "▁pa st",
+ "ри я",
+ "▁D r",
+ "▁ Dr",
+ "▁reg ular",
+ "▁regul ar",
+ "▁ regular",
+ "▁prov ided",
+ "▁provide d",
+ "TE R",
+ "T ER",
+ "▁un ivers",
+ "▁ univers",
+ "▁g ets",
+ "▁get s",
+ "▁ge ts",
+ "▁ gets",
+ "▁n u",
+ "▁ nu",
+ "▁/ *",
+ "▁ /*",
+ "ob er",
+ "obe r",
+ "o ber",
+ "fi n",
+ "f in",
+ "▁n ella",
+ "▁ne lla",
+ "▁nel la",
+ "▁nell a",
+ "▁be come",
+ "▁bec ome",
+ "▁becom e",
+ "▁` `",
+ "▁ ``",
+ "▁h istory",
+ "▁histor y",
+ "▁hi story",
+ "▁hist ory",
+ "▁ history",
+ "▁S ol",
+ "▁So l",
+ "▁ Sol",
+ "▁R ad",
+ "▁Ra d",
+ "▁ Rad",
+ "▁term s",
+ "▁ter ms",
+ "▁even ts",
+ "▁event s",
+ "▁ev ents",
+ "▁ events",
+ "ly mp",
+ ")) )",
+ ") ))",
+ "ро ва",
+ "ров а",
+ "р ова",
+ "▁ab sol",
+ "▁abs ol",
+ "▁so ft",
+ "▁ soft",
+ "lin ks",
+ "link s",
+ "l inks",
+ "▁h ope",
+ "▁ho pe",
+ "▁hop e",
+ "▁su bject",
+ "▁sub ject",
+ "▁ subject",
+ "\") ,",
+ "\" ),",
+ "▁cre ating",
+ "▁} \r",
+ "▁ }\r",
+ "▁S k",
+ "▁ Sk",
+ "▁f low",
+ "▁fl ow",
+ "▁flo w",
+ "▁ flow",
+ "▁Р а",
+ "▁as sert",
+ "▁ass ert",
+ "▁asse rt",
+ "▁ assert",
+ "ze t",
+ "z et",
+ "▁F rank",
+ "▁Fran k",
+ "▁Fr ank",
+ "s a",
+ "▁dist ribution",
+ "▁distribu tion",
+ "▁distrib ution",
+ "▁ distribution",
+ "c u",
+ "ba nd",
+ "ban d",
+ "b and",
+ "iz z",
+ "i zz",
+ "▁j ob",
+ "▁jo b",
+ "▁ job",
+ "in er",
+ "ine r",
+ "i ner",
+ "st ruct",
+ "str uct",
+ "stru ct",
+ "á k",
+ "T O",
+ "au f",
+ "a uf",
+ "▁ext ends",
+ "▁extend s",
+ "▁G ra",
+ "▁Gr a",
+ "dis play",
+ "▁sign ific",
+ "on ey",
+ "one y",
+ "o ney",
+ "s ource",
+ "m icrosoft",
+ "in der",
+ "ind er",
+ "inde r",
+ "i nder",
+ "▁qu ick",
+ "▁qui ck",
+ "▁ quick",
+ "▁w onder",
+ "▁won der",
+ "▁wo nder",
+ "Inst ance",
+ "el les",
+ "ell es",
+ "elle s",
+ "e lles",
+ "è me",
+ "▁comp any",
+ "▁compan y",
+ "▁ company",
+ "u ß",
+ ". }",
+ "▁separ ate",
+ "U M",
+ "HER E",
+ "HE RE",
+ "H ERE",
+ "▁writ ing",
+ "▁wr iting",
+ "▁ writing",
+ "it ution",
+ "itu tion",
+ "itut ion",
+ "▁G esch",
+ "▁Ge sch",
+ "▁Ges ch",
+ "м я",
+ "▁J ames",
+ "▁Ja mes",
+ "▁Jam es",
+ "▁ James",
+ "▁D E",
+ "▁ DE",
+ "▁S pe",
+ "▁Sp e",
+ "▁ Spe",
+ "pro cess",
+ "proc ess",
+ "St r",
+ "S tr",
+ "▁s ym",
+ "▁sy m",
+ "▁ sym",
+ "▁a o",
+ "▁ ao",
+ "▁w y",
+ "▁ wy",
+ "▁any one",
+ "▁U p",
+ "▁ Up",
+ "use um",
+ "ar on",
+ "aro n",
+ "a ron",
+ "▁def inition",
+ "▁defin ition",
+ "▁definit ion",
+ "▁ definition",
+ "▁` $",
+ "▁f av",
+ "▁fa v",
+ "rib utes",
+ "ribute s",
+ "ribu tes",
+ "▁R é",
+ "ograf ia",
+ "ografi a",
+ "el ement",
+ "ele ment",
+ "elem ent",
+ "e lement",
+ "ca p",
+ "c ap",
+ "pa t",
+ "p at",
+ "▁B ra",
+ "▁Br a",
+ "▁ Bra",
+ ") (",
+ "▁acc ording",
+ "▁accord ing",
+ "г е",
+ "▁p ie",
+ "▁pi e",
+ "▁ pie",
+ "el i",
+ "e li",
+ "} \"",
+ "▁act iv",
+ "▁ activ",
+ "▁s top",
+ "▁st op",
+ "▁sto p",
+ "▁ stop",
+ "pat ch",
+ "p atch",
+ "т і",
+ "▁J ose",
+ "▁Jo se",
+ "▁Jos e",
+ "▁ Jose",
+ "En d",
+ "E nd",
+ "▁p rze",
+ "▁pr ze",
+ "▁prz e",
+ "▁a ge",
+ "▁ag e",
+ "▁ age",
+ "it ory",
+ "ito ry",
+ "itor y",
+ "▁P HP",
+ "▁ PHP",
+ "ag ement",
+ "age ment",
+ "agem ent",
+ "▁` .",
+ "▁ `.",
+ "▁pre tty",
+ "▁pret ty",
+ "▁re comm",
+ "▁rec omm",
+ "▁recom m",
+ "▁s ud",
+ "▁su d",
+ "▁re qu",
+ "▁r equ",
+ "▁req u",
+ "▁об ла",
+ "at ives",
+ "ative s",
+ "ativ es",
+ "ati ves",
+ "▁H igh",
+ "▁Hi gh",
+ "▁ High",
+ "á z",
+ "ou l",
+ "o ul",
+ "re st",
+ "res t",
+ "r est",
+ "▁T er",
+ "▁Te r",
+ "un der",
+ "und er",
+ "unde r",
+ "u nder",
+ "th ern",
+ "ther n",
+ "the rn",
+ "cent er",
+ "cen ter",
+ "cente r",
+ "c enter",
+ "▁u r",
+ "▁ ur",
+ "la t",
+ "l at",
+ "▁inter face",
+ "▁ interface",
+ "▁и н",
+ "▁ ин",
+ "▁wh ose",
+ "▁who se",
+ "ic as",
+ "ica s",
+ "i cas",
+ "am en",
+ "ame n",
+ "a men",
+ "Fil ter",
+ "▁st ation",
+ "▁stat ion",
+ "▁sta tion",
+ "▁stati on",
+ "▁ station",
+ "Pa ge",
+ "P age",
+ "▁a rm",
+ "▁ar m",
+ "▁ arm",
+ "▁e yes",
+ "▁eye s",
+ "▁ра й",
+ "▁s eu",
+ "▁se u",
+ "ol i",
+ "o li",
+ "wi n",
+ "w in",
+ "li k",
+ "l ik",
+ "ge x",
+ "g ex",
+ "ch an",
+ "cha n",
+ "c han",
+ "id ence",
+ "iden ce",
+ "ar gs",
+ "arg s",
+ "ak ing",
+ "aki ng",
+ "a king",
+ "▁Go ogle",
+ "▁ Google",
+ "▁St ud",
+ "▁Stu d",
+ "▁h o",
+ "▁ ho",
+ "то ры",
+ "тор ы",
+ "S u",
+ "▁autom at",
+ "▁auto mat",
+ "êm e",
+ "ê me",
+ "▁c y",
+ "▁ cy",
+ "lo r",
+ "l or",
+ "▁st ack",
+ "▁sta ck",
+ "▁ stack",
+ "▁SE LECT",
+ "▁ SELECT",
+ "A F",
+ "▁> >",
+ "▁ >>",
+ "▁com pet",
+ "▁comp et",
+ "▁p air",
+ "▁pa ir",
+ "▁ pair",
+ "▁ing lés",
+ "Res ponse",
+ "▁F ig",
+ "▁ Fig",
+ "gr ad",
+ "gra d",
+ "g rad",
+ "▁document ation",
+ "▁ documentation",
+ "▁c ant",
+ "▁can t",
+ "▁ca nt",
+ "▁app reci",
+ "å n",
+ "▁le arn",
+ "▁lear n",
+ "▁ learn",
+ "▁in dep",
+ "▁ind ep",
+ "▁inde p",
+ "▁p al",
+ "▁pa l",
+ "▁ pal",
+ "pack age",
+ "p ackage",
+ "ar es",
+ "are s",
+ "a res",
+ "▁Ber lin",
+ "▁Berl in",
+ "б ли",
+ "re ich",
+ "rei ch",
+ "ё н",
+ "▁s atisf",
+ "▁sat isf",
+ "▁reg ion",
+ "▁ region",
+ "▁fri end",
+ "▁ friend",
+ "▁Ge orge",
+ "▁Georg e",
+ "▁В о",
+ "▁ Во",
+ "▁\" \"",
+ "▁ \"\"",
+ "▁des de",
+ "Fact ory",
+ "F actory",
+ "▁Count y",
+ "▁Coun ty",
+ "ou v",
+ "o uv",
+ "▁ ‘",
+ "▁inst alled",
+ "▁install ed",
+ "▁instal led",
+ "▁ installed",
+ "▁w anted",
+ "▁want ed",
+ "▁P ython",
+ "▁ Python",
+ "▁inter pre",
+ "▁in cluded",
+ "▁includ ed",
+ "▁include d",
+ "▁inclu ded",
+ "▁( (",
+ "▁ ((",
+ "▁al tern",
+ "▁alt ern",
+ "▁alter n",
+ "▁alte rn",
+ "▁ altern",
+ "is to",
+ "ist o",
+ "i sto",
+ "g n",
+ "▁b order",
+ "▁bor der",
+ "▁bord er",
+ "▁ border",
+ "pd f",
+ "p df",
+ "▁d up",
+ "▁du p",
+ "▁ dup",
+ "▁down load",
+ "▁ download",
+ "ju st",
+ "jus t",
+ "j ust",
+ "▁m embers",
+ "▁mem bers",
+ "▁memb ers",
+ "▁member s",
+ "▁ members",
+ "ch ild",
+ "chi ld",
+ "▁p ay",
+ "▁pa y",
+ "▁ pay",
+ "▁c er",
+ "▁ce r",
+ "▁ cer",
+ "▁lo oked",
+ "▁look ed",
+ "▁correct ly",
+ "au th",
+ "aut h",
+ "a uth",
+ "▁с тан",
+ "▁ст ан",
+ "▁ста н",
+ "▁ стан",
+ "▁e sp",
+ "▁es p",
+ "▁ esp",
+ "▁d esc",
+ "▁de sc",
+ "▁des c",
+ "▁ desc",
+ "eb en",
+ "e ben",
+ "▁qu estions",
+ "▁question s",
+ "▁quest ions",
+ "▁questi ons",
+ "▁ questions",
+ "ma l",
+ "m al",
+ "▁ab gerufen",
+ "▁ abgerufen",
+ "▁B and",
+ "▁Ba nd",
+ "▁Ban d",
+ "▁[ ]",
+ "▁ []",
+ "Bas e",
+ "B ase",
+ "▁r is",
+ "▁ri s",
+ "▁ ris",
+ "▁f ort",
+ "▁for t",
+ "▁fo rt",
+ "▁ fort",
+ "▁I d",
+ "▁ Id",
+ "▁var ious",
+ "▁vari ous",
+ "▁Le ague",
+ "▁H and",
+ "▁Ha nd",
+ "▁Han d",
+ "▁ Hand",
+ "▁T ype",
+ "▁Ty pe",
+ "▁Typ e",
+ "▁ Type",
+ "ir l",
+ "i rl",
+ "▁F e",
+ "▁ Fe",
+ "i én",
+ "it ter",
+ "itt er",
+ "itte r",
+ "▁f ast",
+ "▁fa st",
+ "▁fas t",
+ "▁ fast",
+ "st a",
+ "s ta",
+ "▁ex cept",
+ "▁ except",
+ "ic z",
+ "i cz",
+ "▁F rench",
+ "▁en vironment",
+ "▁environ ment",
+ "▁ environment",
+ "▁con se",
+ "▁cons e",
+ "у р",
+ "о го",
+ "▁necess ary",
+ "tar get",
+ "t arget",
+ "▁re ading",
+ "▁read ing",
+ "▁ reading",
+ "ho me",
+ "hom e",
+ "h ome",
+ "ze ich",
+ "▁e qual",
+ "▁equ al",
+ "▁eq ual",
+ "▁ equal",
+ "▁pi ù",
+ "▁p rem",
+ "▁pr em",
+ "▁pre m",
+ "▁diff icult",
+ "▁u nit",
+ "▁un it",
+ "▁ unit",
+ "▁re place",
+ "▁rep lace",
+ "▁repla ce",
+ "▁ replace",
+ "▁he art",
+ "▁hear t",
+ "▁ heart",
+ "▁t alk",
+ "▁tal k",
+ "A M",
+ "▁R E",
+ "▁ RE",
+ "▁P erson",
+ "▁Per son",
+ "▁Pers on",
+ "▁ Person",
+ "end ency",
+ "enden cy",
+ "▁i mm",
+ "▁im m",
+ "▁ imm",
+ "▁h uman",
+ "▁hum an",
+ "▁hu man",
+ "▁ human",
+ "d n",
+ "▁K ir",
+ "▁Ki r",
+ "▁A ut",
+ "▁Au t",
+ "▁ Aut",
+ "kn own",
+ "know n",
+ "k nown",
+ "▁fr equ",
+ "▁fre qu",
+ "sys tem",
+ "s ystem",
+ "ла в",
+ "▁S z",
+ "▁G al",
+ "▁Ga l",
+ "но е",
+ "sel ves",
+ "right arrow",
+ "r ightarrow",
+ "▁С а",
+ "▁ Са",
+ "=\" @",
+ "▁build ing",
+ "▁ building",
+ "im port",
+ "imp ort",
+ "▁f am",
+ "▁fa m",
+ "▁de lete",
+ "▁del ete",
+ "▁delet e",
+ "▁ delete",
+ "air e",
+ "ai re",
+ "a ire",
+ "ma ry",
+ "mar y",
+ "m ary",
+ "▁f und",
+ "▁fun d",
+ "▁fu nd",
+ "▁ fund",
+ "▁part icip",
+ "▁partic ip",
+ "▁parti cip",
+ "▁partici p",
+ "▁s yn",
+ "▁sy n",
+ "▁ syn",
+ "si n",
+ "s in",
+ "▁l ower",
+ "▁lo wer",
+ "▁low er",
+ "▁ lower",
+ "▁z ero",
+ "▁ze ro",
+ "▁ zero",
+ "▁s ec",
+ "▁se c",
+ "▁ sec",
+ "▁f ra",
+ "▁fr a",
+ "▁ fra",
+ "Po int",
+ "P oint",
+ "▁fa iled",
+ "▁fail ed",
+ "▁ failed",
+ "ien to",
+ "ient o",
+ "i ento",
+ "cu p",
+ "c up",
+ "▁s low",
+ "▁sl ow",
+ "▁slo w",
+ "▁ slow",
+ "▁n ation",
+ "▁na tion",
+ "▁nat ion",
+ "äh r",
+ "ä hr",
+ "▁in fo",
+ "▁inf o",
+ "▁ info",
+ "▁P ublic",
+ "▁Pub lic",
+ "▁Pu blic",
+ "▁ Public",
+ "▁de cla",
+ "▁dec la",
+ "▁decl a",
+ "▁Т а",
+ "▁s old",
+ "▁so ld",
+ "▁sol d",
+ "▁R em",
+ "▁Re m",
+ "▁ Rem",
+ "▁Ph il",
+ "ст ра",
+ "стр а",
+ "с тра",
+ "▁me hr",
+ "▁W ork",
+ "▁Wor k",
+ "▁ Work",
+ "▁N ord",
+ "▁No rd",
+ "▁Nor d",
+ "▁f ait",
+ "▁fa it",
+ "▁g ew",
+ "▁ge w",
+ "▁ gew",
+ "print ln",
+ "ob ile",
+ "obil e",
+ "obi le",
+ "▁K on",
+ "▁Ko n",
+ "▁ass ume",
+ "▁assum e",
+ "land s",
+ "lan ds",
+ "l ands",
+ "▁a mount",
+ "▁am ount",
+ "▁ amount",
+ "▁P ress",
+ "▁Pr ess",
+ "▁Pres s",
+ "▁Pre ss",
+ "▁ Press",
+ "ý ch",
+ "▁ma xim",
+ "▁max im",
+ "▁ maxim",
+ "▁Ch ampion",
+ "▁Champ ion",
+ "li brary",
+ "l ibrary",
+ "a ñ",
+ "▁W al",
+ "▁Wa l",
+ "Com m",
+ "Co mm",
+ "C omm",
+ "] ]",
+ "▁z w",
+ "▁ zw",
+ "▁so cial",
+ "▁soci al",
+ "▁soc ial",
+ "▁ social",
+ "L I",
+ "▁Un ter",
+ "vo r",
+ "v or",
+ "Del ta",
+ "D elta",
+ "em ail",
+ "ema il",
+ "e mail",
+ "ra int",
+ "rain t",
+ "rai nt",
+ "r aint",
+ "on i",
+ "o ni",
+ "▁a lt",
+ "▁al t",
+ "▁ alt",
+ "▁n é",
+ "▁ né",
+ "ци я",
+ "ograph y",
+ "▁mention ed",
+ "▁ment ioned",
+ "▁< =",
+ "▁ <=",
+ "▁c ette",
+ "▁ce tte",
+ "▁cet te",
+ "▁current ly",
+ "▁curr ently",
+ "va re",
+ "var e",
+ "v are",
+ "iz ing",
+ "izi ng",
+ "izin g",
+ "i zing",
+ "▁D ef",
+ "▁De f",
+ "▁ Def",
+ "ic ol",
+ "ico l",
+ "i col",
+ "ün d",
+ "ü nd",
+ "▁config uration",
+ "▁configur ation",
+ "▁ configuration",
+ "est ig",
+ "esti g",
+ "II I",
+ "I II",
+ "la m",
+ "l am",
+ "i ère",
+ "▁E ar",
+ "▁t u",
+ "▁ tu",
+ "En t",
+ "E nt",
+ "▁U sing",
+ "▁Us ing",
+ "▁ Using",
+ "▁ко м",
+ "▁к ом",
+ "▁ ком",
+ "ci e",
+ "c ie",
+ "▁pro of",
+ "▁ proof",
+ "▁in vol",
+ "▁inv ol",
+ "▁H istory",
+ "▁Histor y",
+ "▁Hi story",
+ "▁Hist ory",
+ "▁ History",
+ "> <",
+ "▁A ND",
+ "▁AN D",
+ "▁ AND",
+ "av y",
+ "a vy",
+ "▁rel ations",
+ "▁relation s",
+ "$ {",
+ "▁com es",
+ "▁co mes",
+ "▁come s",
+ "▁ comes",
+ "▁d irection",
+ "▁direct ion",
+ "▁dire ction",
+ "▁dir ection",
+ "▁ direction",
+ "▁J une",
+ "▁Ju ne",
+ "▁Jun e",
+ "▁W ay",
+ "▁Wa y",
+ "Com ponent",
+ "ec h",
+ "e ch",
+ "▁P eter",
+ "▁Pe ter",
+ "▁Pet er",
+ "▁ Peter",
+ "s g",
+ "▁s tra",
+ "▁st ra",
+ "▁str a",
+ "▁ stra",
+ "uc t",
+ "u ct",
+ "▁im plementation",
+ "▁implement ation",
+ "▁ implementation",
+ "att le",
+ "▁c z",
+ "▁ cz",
+ "pl ot",
+ "p lot",
+ "▁play ed",
+ "▁pla yed",
+ "\"> ",
+ "\">< /",
+ "\" >",
+ "▁f ive",
+ "▁fi ve",
+ "▁ five",
+ "▁c oll",
+ "▁col l",
+ "▁co ll",
+ "▁ coll",
+ "▁Char les",
+ "Tr a",
+ "T ra",
+ "▁s uo",
+ "▁su o",
+ "file s",
+ "fil es",
+ "fi les",
+ "f iles",
+ "en tes",
+ "ent es",
+ "ente s",
+ "res ponse",
+ "respons e",
+ "H ow",
+ "▁S oci",
+ "▁So ci",
+ "▁Soc i",
+ "▁i gn",
+ "▁ig n",
+ "▁ ign",
+ "▁l ed",
+ "▁le d",
+ "▁ led",
+ "▁G erman",
+ "▁Ger man",
+ "▁Germ an",
+ "ud o",
+ "u do",
+ "▁D u",
+ "▁t im",
+ "▁ti m",
+ "▁ tim",
+ "ount er",
+ "oun ter",
+ "o unter",
+ "▁att ack",
+ "ur i",
+ "u ri",
+ "▁а р",
+ "▁ ар",
+ "es se",
+ "ess e",
+ "iv il",
+ "ivi l",
+ "i vil",
+ "▁J u",
+ "▁v el",
+ "▁ve l",
+ "▁ vel",
+ "mat rix",
+ "▁M at",
+ "▁Ma t",
+ "▁ Mat",
+ "gi o",
+ "g io",
+ "▁Ze it",
+ "VE R",
+ "V ER",
+ "ha s",
+ "h as",
+ "Con nection",
+ "Connect ion",
+ "Conne ction",
+ "▁i hr",
+ "▁ih r",
+ "▁att ribute",
+ "▁ attribute",
+ "▁dis cuss",
+ "▁disc uss",
+ "▁do main",
+ "▁dom ain",
+ "▁ domain",
+ "bin d",
+ "bi nd",
+ "b ind",
+ "▁S ec",
+ "▁Se c",
+ "▁ Sec",
+ "ri k",
+ "r ik",
+ "cl ose",
+ "clos e",
+ "clo se",
+ "c lose",
+ "gi n",
+ "g in",
+ "▁l ove",
+ "▁lo ve",
+ "▁lov e",
+ "an to",
+ "ant o",
+ "ge nt",
+ "gen t",
+ "g ent",
+ "ab a",
+ "a ba",
+ "jan go",
+ "j ango",
+ "b i",
+ "▁ob ser",
+ "▁obs er",
+ "it ting",
+ "itt ing",
+ "▁р у",
+ "▁ ру",
+ "} =",
+ "ag en",
+ "age n",
+ "a gen",
+ "B C",
+ "so me",
+ "som e",
+ "s ome",
+ "▁B u",
+ "▁ Bu",
+ "▁s oci",
+ "▁so ci",
+ "▁soc i",
+ "▁ soci",
+ "▁ind ividual",
+ "▁individ ual",
+ "▁de al",
+ "▁out side",
+ "ri o",
+ "r io",
+ "Ex ec",
+ "an did",
+ "and id",
+ "▁bus iness",
+ "▁t empor",
+ "▁tem por",
+ "▁temp or",
+ "▁tempo r",
+ "▁T ur",
+ "▁Tu r",
+ "▁( !",
+ "▁ (!",
+ "ri ter",
+ "rit er",
+ "rite r",
+ "r iter",
+ "▁go ogle",
+ "▁goog le",
+ "▁ google",
+ "] :",
+ "it te",
+ "itt e",
+ "i tte",
+ "x i",
+ "▁П а",
+ "ho l",
+ "h ol",
+ "н ь",
+ "ri ng",
+ "rin g",
+ "r ing",
+ "▁s ul",
+ "▁su l",
+ "но сти",
+ "ност и",
+ "нос ти",
+ "_ .",
+ "ga r",
+ "g ar",
+ "T ask",
+ "▁C heck",
+ "▁Che ck",
+ "▁ Check",
+ "▁mod ern",
+ "▁mo dern",
+ "▁mode rn",
+ "▁moder n",
+ "▁w in",
+ "▁ win",
+ "us ter",
+ "ust er",
+ "u ster",
+ "ha n",
+ "h an",
+ "form ation",
+ "format ion",
+ "vo id",
+ "v oid",
+ "▁ф и",
+ "▁ фи",
+ "▁use ful",
+ "▁Eng land",
+ "lo s",
+ "l os",
+ "et ime",
+ "eti me",
+ "e time",
+ "eu r",
+ "e ur",
+ "▁un ique",
+ "▁uniqu e",
+ "▁ unique",
+ "▁ка к",
+ "yi ng",
+ "y ing",
+ "ob j",
+ "ui d",
+ "u id",
+ "▁w indows",
+ "▁window s",
+ "▁wind ows",
+ "▁ windows",
+ "▁d istance",
+ "▁dist ance",
+ "▁ distance",
+ "▁nom bre",
+ "▁nombr e",
+ "і я",
+ "oc us",
+ "o cus",
+ "ah n",
+ "a hn",
+ "ier te",
+ "iert e",
+ "i erte",
+ "▁d ar",
+ "▁da r",
+ "▁ dar",
+ "S I",
+ "lo ng",
+ "lon g",
+ "l ong",
+ "as ta",
+ "ast a",
+ "a sta",
+ "iv en",
+ "ive n",
+ "i ven",
+ "▁t old",
+ "▁to ld",
+ "▁G ru",
+ "▁Gr u",
+ "fo o",
+ "f oo",
+ "▁c alling",
+ "▁cal ling",
+ "▁call ing",
+ "iem bre",
+ "i embre",
+ "▁f uture",
+ "▁fut ure",
+ "pr ès",
+ "p rès",
+ "le ep",
+ "lee p",
+ "avig ation",
+ "PO ST",
+ "POS T",
+ "P OST",
+ "▁des cribed",
+ "▁descri bed",
+ "▁describe d",
+ "▁n och",
+ "▁no ch",
+ "un it",
+ "uni t",
+ "u nit",
+ "al len",
+ "all en",
+ "alle n",
+ "▁b ranch",
+ "▁br anch",
+ "▁bran ch",
+ "▁ branch",
+ "f a",
+ "▁f ill",
+ "▁fil l",
+ "▁fi ll",
+ "▁ fill",
+ "▁ob j",
+ "▁ obj",
+ "▁t ree",
+ "▁tr ee",
+ "▁tre e",
+ "▁ tree",
+ "▁wur den",
+ "▁wurde n",
+ "▁L iter",
+ "▁Li ter",
+ "▁Lit er",
+ "▁ Liter",
+ "ro t",
+ "r ot",
+ "sp lit",
+ "spl it",
+ "s plit",
+ "em ein",
+ "eme in",
+ "mod ule",
+ "C A",
+ "▁oper ator",
+ "▁opera tor",
+ "▁ operator",
+ "▁w rote",
+ "▁wr ote",
+ "▁J ack",
+ "▁Jac k",
+ "▁Ja ck",
+ "▁ Jack",
+ "olog ie",
+ "olo gie",
+ "▁A nt",
+ "▁An t",
+ "▁ Ant",
+ "те р",
+ "т ер",
+ "st ream",
+ "stre am",
+ "▁Q ue",
+ "▁Qu e",
+ "▁ Que",
+ "eps ilon",
+ "e psilon",
+ "no n",
+ "n on",
+ "st ein",
+ "ste in",
+ "▁s impl",
+ "▁sim pl",
+ "▁simp l",
+ "pu b",
+ "p ub",
+ "▁J uly",
+ "▁Jul y",
+ "▁Ju ly",
+ "▁n ature",
+ "▁natur e",
+ "▁nat ure",
+ "▁D atabase",
+ "▁Data base",
+ "▁Dat abase",
+ "▁ Database",
+ "ó l",
+ "ни м",
+ "н им",
+ "▁V I",
+ "▁ VI",
+ "êt re",
+ "ê tre",
+ "il es",
+ "ile s",
+ "i les",
+ "▁w el",
+ "▁we l",
+ "▁ wel",
+ "') ,",
+ "' ),",
+ "▁m ut",
+ "▁mu t",
+ "▁ mut",
+ "lo cation",
+ "loc ation",
+ "l ocation",
+ "▁there fore",
+ "el li",
+ "ell i",
+ "▁ І",
+ "n é",
+ "▁а в",
+ "led ge",
+ "l edge",
+ "▁con ver",
+ "▁conv er",
+ "í m",
+ "▁X V",
+ "▁ XV",
+ "vi der",
+ "vid er",
+ "v ider",
+ "▁Janu ary",
+ "▁Januar y",
+ "▁us ually",
+ "▁usual ly",
+ "▁re leased",
+ "▁release d",
+ "▁M i",
+ "He ad",
+ "H ead",
+ "il ler",
+ "ill er",
+ "ille r",
+ "▁j an",
+ "▁ja n",
+ "▁ jan",
+ "▁l etter",
+ "▁let ter",
+ "▁lett er",
+ "▁ letter",
+ "pr odu",
+ "pro du",
+ "prod u",
+ "p rodu",
+ "r d",
+ "▁C am",
+ "▁Ca m",
+ "▁ Cam",
+ ", '",
+ "▁ Ц",
+ "▁p ush",
+ "▁pu sh",
+ "▁ push",
+ "up date",
+ "▁may be",
+ "▁ maybe",
+ "H ttp",
+ "@ \"",
+ "ме р",
+ "м ер",
+ "ser vice",
+ "serv ice",
+ "par se",
+ "p arse",
+ "▁d ass",
+ "▁da ss",
+ "▁das s",
+ "ê n",
+ ") \"",
+ "mo re",
+ "mor e",
+ "m ore",
+ "/ *",
+ "▁m as",
+ "▁ma s",
+ "▁ mas",
+ "▁like ly",
+ "▁lik ely",
+ "▁ likely",
+ "▁m aterial",
+ "▁mate rial",
+ "▁mater ial",
+ "▁ material",
+ "▁[ [",
+ "▁ [[",
+ "▁long er",
+ "▁lon ger",
+ "ba l",
+ "b al",
+ "▁Arch iv",
+ "ig t",
+ "i gt",
+ "▁e gy",
+ "▁eg y",
+ "▁ egy",
+ "id ge",
+ "ig u",
+ "i gu",
+ "con f",
+ "▁in c",
+ "▁i nc",
+ "▁ inc",
+ "cons ulté",
+ "▁m ai",
+ "▁ma i",
+ "▁ mai",
+ "W ork",
+ "▁г ра",
+ "▁ гра",
+ "▁Oct ober",
+ "▁g lobal",
+ "▁glob al",
+ "▁glo bal",
+ "▁ global",
+ "▁s el",
+ "▁se l",
+ "▁ sel",
+ "▁m unicip",
+ "▁vi ol",
+ "▁vio l",
+ "▁Do es",
+ "▁ Does",
+ "▁\\ [",
+ "ско м",
+ "ск ом",
+ "с ком",
+ "▁com pos",
+ "▁comp os",
+ "▁ compos",
+ "б ря",
+ "в я",
+ "▁resp ons",
+ "▁ respons",
+ "▁consider ed",
+ "▁consid ered",
+ "▁J apan",
+ "▁Jap an",
+ "▁Ja pan",
+ "pe s",
+ "p es",
+ "os to",
+ "ost o",
+ "o sto",
+ "▁mil it",
+ "▁mi lit",
+ "S P",
+ "с ы",
+ "at tr",
+ "att r",
+ "ci l",
+ "c il",
+ "irect ory",
+ "av ing",
+ "avi ng",
+ "a ving",
+ "▁D el",
+ "▁De l",
+ "▁ Del",
+ "▁pr event",
+ "▁pre vent",
+ "▁prev ent",
+ "▁ prevent",
+ "id ade",
+ "ida de",
+ "idad e",
+ "i dade",
+ "gi t",
+ "g it",
+ "if orm",
+ "i form",
+ "ou ter",
+ "out er",
+ "oute r",
+ "o uter",
+ "in ct",
+ "inc t",
+ "le vel",
+ "lev el",
+ "at ever",
+ "ate ver",
+ "▁re pe",
+ "▁rep e",
+ "▁e xc",
+ "▁ex c",
+ "да р",
+ "д ар",
+ "St yle",
+ "▁Th omas",
+ "▁Thom as",
+ "el ine",
+ "eli ne",
+ "elin e",
+ "e line",
+ "▁ ж",
+ "un time",
+ "unt ime",
+ "▁l arg",
+ "▁la rg",
+ "▁lar g",
+ "▁ larg",
+ "Tr ue",
+ ". *",
+ "cre en",
+ "cr een",
+ "c reen",
+ "yle s",
+ "yl es",
+ "y les",
+ "▁trans l",
+ "▁tran sl",
+ "▁С о",
+ "ens ions",
+ "ension s",
+ "ä l",
+ "is se",
+ "iss e",
+ "▁v olt",
+ "▁vo lt",
+ "▁vol t",
+ "ci ally",
+ "cial ly",
+ "ni k",
+ "n ik",
+ ". ]",
+ "▁St adt",
+ "▁Sta dt",
+ "▁Stad t",
+ "м ы",
+ "fil l",
+ "fi ll",
+ "f ill",
+ "lo v",
+ "l ov",
+ "▁\" /",
+ "▁ \"/",
+ "S p",
+ "▁A ir",
+ "Cal l",
+ "Ca ll",
+ "C all",
+ "▁n ur",
+ "▁nu r",
+ "Che ck",
+ "C heck",
+ "ien ce",
+ "i ence",
+ "ef ined",
+ "▁в ре",
+ "ł o",
+ "d z",
+ "▁о р",
+ "▁ ор",
+ "ik er",
+ "ike r",
+ "i ker",
+ "ow a",
+ "o wa",
+ "ови ч",
+ "о вич",
+ "r é",
+ "O L",
+ "▁li near",
+ "▁line ar",
+ "▁lin ear",
+ "▁linea r",
+ "▁ linear",
+ "▁ex port",
+ "▁exp ort",
+ "▁ export",
+ "ah r",
+ "a hr",
+ "ic ial",
+ "ici al",
+ "icia l",
+ "i cial",
+ "Re p",
+ "R ep",
+ "▁n atural",
+ "▁natur al",
+ "▁nat ural",
+ "▁ natural",
+ "▁c op",
+ "▁co p",
+ "▁ cop",
+ "▁} )",
+ "▁ })",
+ "ç ões",
+ "z z",
+ "Wh at",
+ "W hat",
+ "▁H ouse",
+ "▁Ho use",
+ "▁Hou se",
+ "Re f",
+ "R ef",
+ "in ger",
+ "ing er",
+ "inge r",
+ "▁t aking",
+ "▁tak ing",
+ "▁ta king",
+ "n ě",
+ "▁Ein z",
+ "▁d am",
+ "▁da m",
+ "▁ dam",
+ "▁iss ues",
+ "▁issue s",
+ "▁issu es",
+ "▁ issues",
+ "Bu ilder",
+ "Build er",
+ "ed it",
+ "edi t",
+ "e dit",
+ "▁p rz",
+ "▁pr z",
+ "pass word",
+ "Ge ner",
+ "Gen er",
+ "G ener",
+ "ri m",
+ "r im",
+ "▁p arts",
+ "▁par ts",
+ "▁part s",
+ "▁ parts",
+ "-- -",
+ "- --",
+ "ig inal",
+ "igin al",
+ "igi nal",
+ "▁S ci",
+ "▁Sc i",
+ "▁m other",
+ "▁mo ther",
+ "▁mot her",
+ "▁moth er",
+ "re a",
+ "r ea",
+ "▁cont ainer",
+ "▁contain er",
+ "▁ container",
+ "д я",
+ "▁I P",
+ "▁ IP",
+ "▁n one",
+ "▁no ne",
+ "▁non e",
+ "▁ none",
+ "▁follow ed",
+ "▁p le",
+ "▁pl e",
+ "▁ ple",
+ "▁me asure",
+ "▁meas ure",
+ "▁ measure",
+ "▁t out",
+ "▁to ut",
+ "▁tou t",
+ "▁ tout",
+ "Ex t",
+ "E xt",
+ "▁T V",
+ "▁ TV",
+ "▁ex plain",
+ "▁exp lain",
+ "▁expla in",
+ "▁expl ain",
+ "▁p aper",
+ "▁pa per",
+ "▁pap er",
+ "▁ paper",
+ "ст і",
+ "с ті",
+ "w s",
+ "W ik",
+ "▁m m",
+ "▁ mm",
+ "▁N orm",
+ "▁No rm",
+ "▁Nor m",
+ "▁Ser ver",
+ "▁Serv er",
+ "▁ Server",
+ "fo nt",
+ "fon t",
+ "f ont",
+ "ec ause",
+ "eca use",
+ "T R",
+ "▁б и",
+ "▁ би",
+ "L a",
+ "▁e ns",
+ "▁en s",
+ "▁ ens",
+ "▁re tr",
+ "▁r etr",
+ "▁ret r",
+ "▁S il",
+ "▁Si l",
+ "▁ Sil",
+ "▁se quence",
+ "▁sequ ence",
+ "▁ sequence",
+ "ar c",
+ "a rc",
+ "I V",
+ "z á",
+ "▁And roid",
+ "▁ Android",
+ "▁S uper",
+ "▁Su per",
+ "▁Sup er",
+ "▁ Super",
+ "▁r oz",
+ "▁ro z",
+ "▁ roz",
+ "ov ie",
+ "ovi e",
+ "o vie",
+ "O m",
+ "▁W ell",
+ "▁We ll",
+ "▁Wel l",
+ "▁ Well",
+ "ma ke",
+ "m ake",
+ "or ph",
+ "orp h",
+ "▁J er",
+ "▁Je r",
+ "▁R os",
+ "▁Ro s",
+ "re ference",
+ "refer ence",
+ "▁fe atures",
+ "▁feature s",
+ "▁ features",
+ "▁G er",
+ "▁Ge r",
+ "▁L eg",
+ "▁Le g",
+ "▁ Leg",
+ "▁l ate",
+ "▁la te",
+ "▁lat e",
+ "▁ late",
+ "▁add itional",
+ "▁addition al",
+ "▁f lo",
+ "▁fl o",
+ "▁е го",
+ "▁ его",
+ "▁alg orithm",
+ "▁ algorithm",
+ "B A",
+ "ka r",
+ "k ar",
+ "I P",
+ "]) ;",
+ "] );",
+ "▁app ears",
+ "▁appear s",
+ "▁appe ars",
+ "y w",
+ "▁t emp",
+ "▁te mp",
+ "▁tem p",
+ "▁ temp",
+ "▁aus si",
+ "met hod",
+ "m ethod",
+ "▁p et",
+ "▁pe t",
+ "▁ pet",
+ "st rap",
+ "str ap",
+ "stra p",
+ "ar ning",
+ "arn ing",
+ "▁c ut",
+ "▁cu t",
+ "▁ cut",
+ "▁S a",
+ "▁ Sa",
+ "▁t rack",
+ "▁tr ack",
+ "▁tra ck",
+ "▁trac k",
+ "▁ track",
+ "▁emp loy",
+ "▁in de",
+ "▁i nde",
+ "▁ind e",
+ "▁ inde",
+ "ra v",
+ "r av",
+ "▁gener ate",
+ "▁gene rate",
+ "▁ generate",
+ "be s",
+ "b es",
+ "ar ts",
+ "art s",
+ "St atus",
+ "Stat us",
+ "ug e",
+ "u ge",
+ "al is",
+ "ali s",
+ "a lis",
+ "▁over ride",
+ "▁overrid e",
+ "▁ override",
+ "▁f i",
+ "▁ fi",
+ "▁l ost",
+ "▁lo st",
+ "▁los t",
+ "▁ lost",
+ "ot ed",
+ "ote d",
+ "o ted",
+ "▁r oom",
+ "▁ro om",
+ "▁ room",
+ "▁c alls",
+ "▁cal ls",
+ "▁call s",
+ "▁cons ist",
+ "ре н",
+ "р ен",
+ "▁vill age",
+ "▁vil lage",
+ "▁villa ge",
+ "dis t",
+ "di st",
+ "d ist",
+ "▁te chn",
+ "▁tec hn",
+ "▁ techn",
+ "en za",
+ "enz a",
+ "▁ро з",
+ "▁р оз",
+ "▁ роз",
+ "▁C atalog",
+ "▁Cat alog",
+ "▁Catal og",
+ "▁be com",
+ "▁bec om",
+ "ro ws",
+ "row s",
+ "r ows",
+ "▁N el",
+ "▁Ne l",
+ "com ple",
+ "comp le",
+ "▁pr emi",
+ "▁pre mi",
+ "▁prem i",
+ "▁r ot",
+ "▁ro t",
+ "▁ rot",
+ "▁Web links",
+ "▁foot ball",
+ "▁ football",
+ "▁com par",
+ "▁comp ar",
+ "▁l ive",
+ "▁li ve",
+ "▁liv e",
+ "▁ live",
+ "ки х",
+ "к их",
+ "▁equ ival",
+ "ca pe",
+ "cap e",
+ "c ape",
+ "▁G en",
+ "▁Ge n",
+ "▁ Gen",
+ "nd er",
+ "nde r",
+ "n der",
+ "▁V is",
+ "▁Vi s",
+ "▁ Vis",
+ "▁be hind",
+ "▁beh ind",
+ "ge rs",
+ "ger s",
+ "g ers",
+ "vo ke",
+ "v oke",
+ "▁m edia",
+ "▁me dia",
+ "▁med ia",
+ "▁medi a",
+ "▁ media",
+ "E X",
+ "th at",
+ "tha t",
+ "t hat",
+ "▁s ono",
+ "▁so no",
+ "▁son o",
+ "▁ sono",
+ "▁my sql",
+ "▁mysq l",
+ "▁ mysql",
+ "e v",
+ "▁r ule",
+ "▁ru le",
+ "▁ rule",
+ "до в",
+ "д ов",
+ "ac c",
+ "a cc",
+ "▁W HERE",
+ "▁WH ERE",
+ "▁ WHERE",
+ "ен е",
+ "е не",
+ "Gr id",
+ "G rid",
+ "▁j ul",
+ "▁ju l",
+ "▁m ort",
+ "▁mo rt",
+ "▁mor t",
+ "▁ mort",
+ "▁gener ated",
+ "▁generate d",
+ "▁ generated",
+ "en cia",
+ "enc ia",
+ "enci a",
+ "ac ter",
+ "act er",
+ "cl ud",
+ "▁s cen",
+ "▁sc en",
+ "▁cl osed",
+ "▁close d",
+ "▁clos ed",
+ "▁clo sed",
+ "▁ closed",
+ "▁Mich ael",
+ "▁ Michael",
+ "▁m ount",
+ "▁mo unt",
+ "▁mou nt",
+ "▁ mount",
+ ")$ ,",
+ ") $,",
+ "▁d rop",
+ "▁dr op",
+ "▁dro p",
+ "▁ drop",
+ "▁com bin",
+ "▁comb in",
+ "to col",
+ "▁go es",
+ "▁g eb",
+ "▁ge b",
+ "▁ geb",
+ "M D",
+ "▁An ton",
+ "▁Ant on",
+ "▁Anto n",
+ "▁$ (\"",
+ "▁$( \"",
+ "Te m",
+ "T em",
+ "▁c a",
+ "▁ ca",
+ "▁in stru",
+ "▁inst ru",
+ "ed s",
+ "e ds",
+ "▁t ool",
+ "▁to ol",
+ "▁too l",
+ "▁ tool",
+ "my s",
+ "m ys",
+ "▁r oute",
+ "▁ro ute",
+ "▁rout e",
+ "▁rou te",
+ "▁ route",
+ "\") )",
+ "\" ))",
+ "пр е",
+ "п ре",
+ "▁f loat",
+ "▁flo at",
+ "▁ float",
+ "▁service s",
+ "▁serv ices",
+ "▁servi ces",
+ "▁ services",
+ "▁ч и",
+ "▁ чи",
+ "к і",
+ "emb ly",
+ "embl y",
+ "ak er",
+ "ake r",
+ "a ker",
+ "▁S on",
+ "▁So n",
+ "▁M ath",
+ "▁Ma th",
+ "▁Mat h",
+ "▁ Math",
+ "as se",
+ "ass e",
+ "ous ly",
+ "lic ations",
+ "lication s",
+ "▁r u",
+ "▁ ru",
+ "▁щ о",
+ "▁ що",
+ "▁Con st",
+ "▁Cons t",
+ "▁ Const",
+ "▁im medi",
+ "▁imm edi",
+ "F O",
+ "or o",
+ "o ro",
+ "▁p roduction",
+ "▁produ ction",
+ "▁product ion",
+ "▁ production",
+ "re i",
+ "r ei",
+ "▁j query",
+ "▁ jquery",
+ "an nt",
+ "ann t",
+ "▁Wh ile",
+ "▁s n",
+ "▁ sn",
+ "▁го ди",
+ "▁год и",
+ "Form at",
+ "For mat",
+ "▁s tar",
+ "▁st ar",
+ "▁sta r",
+ "▁ star",
+ "▁S en",
+ "▁Se n",
+ "▁k o",
+ "▁ ko",
+ "NA ME",
+ "N AME",
+ "▁p rés",
+ "▁pr és",
+ "▁pré s",
+ "▁ prés",
+ "ch a",
+ "c ha",
+ "wh at",
+ "w hat",
+ "om in",
+ "omi n",
+ "o min",
+ "end ant",
+ "enda nt",
+ "h y",
+ "▁ob serv",
+ "▁obser v",
+ "▁obs erv",
+ "▁ observ",
+ "▁p refer",
+ "▁pre fer",
+ "у н",
+ "▁con structor",
+ "▁construct or",
+ "▁constru ctor",
+ "▁ constructor",
+ "b s",
+ "▁m ac",
+ "▁ma c",
+ "▁ mac",
+ "▁B re",
+ "▁Br e",
+ "▁ Bre",
+ "▁Inst it",
+ "▁Ins tit",
+ "▁st ory",
+ "▁stor y",
+ "▁sto ry",
+ "▁ story",
+ "▁s ymbol",
+ "▁sym bol",
+ "▁ symbol",
+ "el es",
+ "ele s",
+ "e les",
+ "ß e",
+ "as ing",
+ "asi ng",
+ "a sing",
+ "▁w est",
+ "▁we st",
+ "▁ west",
+ "ia ns",
+ "ian s",
+ "i ans",
+ "▁m aster",
+ "▁ma ster",
+ "▁mas ter",
+ "▁ master",
+ "е з",
+ "▁w ays",
+ "▁way s",
+ "▁wa ys",
+ "▁ ways",
+ "b m",
+ "▁p ick",
+ "▁pi ck",
+ "▁pic k",
+ "▁ pick",
+ "▁de part",
+ "▁dep art",
+ "B ack",
+ "en k",
+ "li pse",
+ "lip se",
+ "▁m ath",
+ "▁ma th",
+ "▁mat h",
+ "▁ math",
+ "▁Fran cis",
+ "▁Franc is",
+ "▁Dec ember",
+ "f s",
+ "ru m",
+ "r um",
+ "▁develop ment",
+ "▁ development",
+ "L T",
+ "er nel",
+ "ern el",
+ "erne l",
+ "▁Tr ue",
+ "▁Tru e",
+ "▁ True",
+ "▁M ore",
+ "▁Mor e",
+ "▁Mo re",
+ "▁ More",
+ "ran gle",
+ "r angle",
+ "▁cond itions",
+ "▁condition s",
+ "Option s",
+ "Opt ions",
+ "O ptions",
+ "▁g li",
+ "▁gl i",
+ "▁oper ation",
+ "▁opera tion",
+ "▁ operation",
+ "é k",
+ "ach t",
+ "ac ht",
+ "a cht",
+ "ight s",
+ "igh ts",
+ "▁m ist",
+ "▁mi st",
+ "▁mis t",
+ "an da",
+ "and a",
+ "▁ener gy",
+ "▁energ y",
+ "▁ energy",
+ "▁ж е",
+ "▁ же",
+ "▁w omen",
+ "▁wo men",
+ "ak t",
+ "a kt",
+ "▁C H",
+ "▁ CH",
+ "ge bra",
+ "geb ra",
+ "▁me et",
+ "i u",
+ "we ll",
+ "wel l",
+ "w ell",
+ "ö l",
+ "▁govern ment",
+ "▁J os",
+ "▁Jo s",
+ "ie g",
+ "i eg",
+ "▁s yntax",
+ "▁syn tax",
+ "▁ syntax",
+ "fi x",
+ "f ix",
+ "▁P et",
+ "▁Pe t",
+ "j query",
+ "▁c ard",
+ "▁car d",
+ "▁ca rd",
+ "▁ card",
+ "▁pr incipal",
+ "▁princi pal",
+ "▁princip al",
+ "▁d ru",
+ "▁dr u",
+ "▁ dru",
+ "▁ter rit",
+ "▁п ов",
+ "▁по в",
+ "▁ пов",
+ "▁S S",
+ "▁ SS",
+ "ри и",
+ "tr es",
+ "tre s",
+ "t res",
+ "ag ne",
+ "agn e",
+ "ly ing",
+ "l ying",
+ "til de",
+ "t ilde",
+ "ber n",
+ "be rn",
+ "b ern",
+ "en ter",
+ "ent er",
+ "ente r",
+ "Pe r",
+ "P er",
+ "▁s omet",
+ "▁so met",
+ "▁some t",
+ "▁som et",
+ "Lo ad",
+ "li ce",
+ "lic e",
+ "l ice",
+ "▁s ous",
+ "▁so us",
+ "▁sou s",
+ "▁Lo uis",
+ "▁Lou is",
+ "▁ Louis",
+ "▁log ic",
+ "▁ logic",
+ "▁O ther",
+ "▁Ot her",
+ "▁ Other",
+ "▁c ir",
+ "▁ci r",
+ "▁ cir",
+ "é v",
+ "ch ron",
+ "chr on",
+ "▁h an",
+ "▁ha n",
+ "▁ han",
+ "▁m argin",
+ "▁mar gin",
+ "▁marg in",
+ "▁ margin",
+ "W indow",
+ "ère s",
+ "è res",
+ "ny ch",
+ "n ych",
+ "pu sh",
+ "pus h",
+ "p ush",
+ "bol ds",
+ "bold s",
+ "b olds",
+ "▁l ayout",
+ "▁lay out",
+ "▁ layout",
+ "▁[ `",
+ "Ch ar",
+ "C har",
+ "▁C ap",
+ "▁Ca p",
+ "▁ Cap",
+ "bolds ymbol",
+ "bold symbol",
+ "▁R oman",
+ "▁Ro man",
+ "▁Rom an",
+ "▁Roma n",
+ "▁M ax",
+ "▁Ma x",
+ "▁ Max",
+ ": (",
+ "▁C ode",
+ "▁Co de",
+ "▁ Code",
+ "is ing",
+ "isi ng",
+ "i sing",
+ "▁st ates",
+ "▁stat es",
+ "▁state s",
+ "▁sta tes",
+ "▁ states",
+ "▁ex isting",
+ "▁exist ing",
+ "su pport",
+ "sup port",
+ "supp ort",
+ "▁re search",
+ "▁res earch",
+ "lic ate",
+ "lica te",
+ "l icate",
+ "va ri",
+ "var i",
+ "v ari",
+ "▁b ij",
+ "▁bi j",
+ "▁ bij",
+ "▁a ppe",
+ "▁app e",
+ "▁ap pe",
+ "▁ appe",
+ "▁happ ens",
+ "▁happen s",
+ "\\ \"",
+ "▁conc ern",
+ "▁conce rn",
+ "we st",
+ "w est",
+ "▁sa ying",
+ "▁say ing",
+ "pi d",
+ "p id",
+ "▁rec ogn",
+ "▁ recogn",
+ "▁H et",
+ "▁He t",
+ "Ch ild",
+ "▁c s",
+ "▁ cs",
+ "\\ ,",
+ "▁c lean",
+ "▁cle an",
+ "▁ clean",
+ "le ctions",
+ "lect ions",
+ "lection s",
+ "ac cess",
+ "acc ess",
+ "a ccess",
+ "в у",
+ "пр о",
+ "п ро",
+ "ac ity",
+ "aci ty",
+ "a city",
+ "▁O ff",
+ "▁Of f",
+ "▁ Off",
+ "▁eas ily",
+ "è que",
+ "▁j ako",
+ "▁ja ko",
+ "▁jak o",
+ "▁i z",
+ "▁ iz",
+ "▁H a",
+ "▁ Ha",
+ "▁D et",
+ "▁De t",
+ "▁ Det",
+ "▁for ma",
+ "▁form a",
+ "sch e",
+ "sc he",
+ "s che",
+ "swer s",
+ "sw ers",
+ "s wers",
+ "▁of fer",
+ "▁off er",
+ "qu ired",
+ "quire d",
+ "qui red",
+ "User s",
+ "Use rs",
+ "Us ers",
+ "U sers",
+ "▁su bst",
+ "▁sub st",
+ "▁subs t",
+ "▁ subst",
+ "> (",
+ "▁g round",
+ "▁gr ound",
+ "▁gro und",
+ "▁ ground",
+ "un n",
+ "u nn",
+ "ro d",
+ "r od",
+ "sp e",
+ "s pe",
+ "urs or",
+ "▁le ave",
+ "er k",
+ "▁t al",
+ "▁ta l",
+ "▁ tal",
+ "▁b ottom",
+ "▁bot tom",
+ "▁bott om",
+ "▁ bottom",
+ "I O",
+ "▁pop ular",
+ "▁popula r",
+ "▁popul ar",
+ "ig o",
+ "i go",
+ "▁T ime",
+ "▁Tim e",
+ "▁Ti me",
+ "▁ Time",
+ "val ues",
+ "value s",
+ "valu es",
+ "▁L oc",
+ "▁Lo c",
+ "▁ Loc",
+ "▁C lub",
+ "▁Cl ub",
+ "▁an che",
+ "▁anc he",
+ "▁anch e",
+ "▁ anche",
+ "ia ł",
+ "i ał",
+ "і ї",
+ "Om ega",
+ "▁loc ated",
+ "▁locate d",
+ "▁ located",
+ "U rl",
+ "▁E sp",
+ "▁Es p",
+ "▁ Esp",
+ "л ы",
+ "ц ь",
+ "ul ate",
+ "ula te",
+ "u late",
+ "▁j oin",
+ "▁jo in",
+ "▁ join",
+ "av es",
+ "ave s",
+ "a ves",
+ "ve t",
+ "v et",
+ "li o",
+ "l io",
+ "re move",
+ "rem ove",
+ "▁t oken",
+ "▁to ken",
+ "▁ token",
+ "▁op tim",
+ "▁opt im",
+ "▁ optim",
+ "▁c laim",
+ "▁cla im",
+ "olog ical",
+ "▁c ss",
+ "▁cs s",
+ "▁ css",
+ "▁al though",
+ "▁ although",
+ "▁p riv",
+ "▁pr iv",
+ "▁pri v",
+ "▁ priv",
+ "▁B a",
+ "ü l",
+ "entic ation",
+ "enti cation",
+ "▁v en",
+ "▁ve n",
+ "▁ ven",
+ "Ser ver",
+ "Serv er",
+ "▁C ong",
+ "▁Con g",
+ "▁Co ng",
+ "NE T",
+ "N ET",
+ "CO N",
+ "C ON",
+ "d t",
+ "per ties",
+ "pert ies",
+ "▁e pis",
+ "▁ep is",
+ "wik ipedia",
+ "▁eng ine",
+ "▁ engine",
+ "▁f er",
+ "▁fe r",
+ "▁ fer",
+ "get Element",
+ "▁C la",
+ "▁Cl a",
+ "▁ Cla",
+ "ř í",
+ "▁r om",
+ "▁ro m",
+ "▁ rom",
+ "var epsilon",
+ "vare psilon",
+ "▁pr ime",
+ "▁prim e",
+ "▁pri me",
+ "▁ prime",
+ "is try",
+ "ist ry",
+ "istr y",
+ "pe cted",
+ "pect ed",
+ "pec ted",
+ "p ected",
+ "or age",
+ "ora ge",
+ "o rage",
+ "▁t ouch",
+ "▁to uch",
+ "▁tou ch",
+ "▁ touch",
+ "▁[ '",
+ "▁ ['",
+ "▁d an",
+ "▁da n",
+ "▁ dan",
+ "E m",
+ "ac iones",
+ "acion es",
+ "aci ones",
+ "a ciones",
+ "Ca n",
+ "C an",
+ "▁w hom",
+ "▁wh om",
+ "▁who m",
+ "▁be havior",
+ "▁behav ior",
+ "▁str ings",
+ "▁string s",
+ "▁ strings",
+ "▁E urop",
+ "▁Euro p",
+ "▁Eu rop",
+ "▁Eur op",
+ "▁R om",
+ "▁Ro m",
+ "ci rc",
+ "cir c",
+ "c irc",
+ "▁p un",
+ "▁pu n",
+ "▁reg ister",
+ "▁ register",
+ "b untu",
+ "ra in",
+ "rai n",
+ "r ain",
+ "O b",
+ "T A",
+ "▁s ometimes",
+ "▁some times",
+ "▁somet imes",
+ "▁m ent",
+ "▁me nt",
+ "▁men t",
+ "▁ ment",
+ "▁in teger",
+ "▁inte ger",
+ "▁ integer",
+ "▁J ac",
+ "▁Ja c",
+ "▁ Jac",
+ "le gate",
+ "leg ate",
+ "ot hing",
+ "oth ing",
+ "o thing",
+ "▁s ound",
+ "▁so und",
+ "▁sou nd",
+ "▁ sound",
+ "la ces",
+ "lace s",
+ "lac es",
+ "l aces",
+ "▁Б а",
+ "r b",
+ "d i",
+ "ле ния",
+ "▁them selves",
+ "▁B lack",
+ "▁Bl ack",
+ "▁Bla ck",
+ "▁ Black",
+ "▁s ettings",
+ "▁sett ings",
+ "▁setting s",
+ "▁ settings",
+ "▁n orm",
+ "▁no rm",
+ "▁nor m",
+ "▁ norm",
+ "▁r uns",
+ "▁run s",
+ "▁ru ns",
+ "▁N OT",
+ "▁NO T",
+ "▁ NOT",
+ "K E",
+ "▁per haps",
+ "▁ Я",
+ "▁m ol",
+ "▁mo l",
+ "▁a ns",
+ "▁an s",
+ "▁ ans",
+ "at re",
+ "atr e",
+ "a tre",
+ "▁D ies",
+ "▁Die s",
+ "▁Di es",
+ "To ken",
+ "T oken",
+ "an ie",
+ "ani e",
+ "a nie",
+ "▁all owed",
+ "▁allow ed",
+ "▁allo wed",
+ "▁ allowed",
+ "R ange",
+ "▁G ro",
+ "▁Gr o",
+ "vi a",
+ "v ia",
+ "ut orial",
+ "uto rial",
+ "utor ial",
+ "ens or",
+ "enso r",
+ "est ival",
+ "esti val",
+ "); \r",
+ ") ;\r",
+ "кра ї",
+ "▁turn ed",
+ "▁tur ned",
+ "sc ope",
+ "scop e",
+ "s cope",
+ "▁b ien",
+ "▁bi en",
+ "= $",
+ "▁ext ension",
+ "▁extens ion",
+ "▁ extension",
+ "at ore",
+ "ator e",
+ "ato re",
+ "▁Р о",
+ "▁spec ify",
+ "ed u",
+ "e du",
+ "Dat os",
+ "D atos",
+ "▁st ored",
+ "▁stor ed",
+ "▁store d",
+ "▁sto red",
+ "▁p arse",
+ "▁par se",
+ "▁ parse",
+ "▁an swers",
+ "▁answer s",
+ "▁ans wers",
+ "il ls",
+ "ill s",
+ "▁he ard",
+ "▁hear d",
+ "l u",
+ "▁T HE",
+ "▁TH E",
+ "▁ THE",
+ "▁g én",
+ "▁gé n",
+ "▁f ul",
+ "▁fu l",
+ "▁ ful",
+ "e z",
+ "▁P rem",
+ "▁Pr em",
+ "▁Pre m",
+ "th en",
+ "the n",
+ "t hen",
+ "d p",
+ "сь кого",
+ "сько го",
+ "ськ ого",
+ "▁S i",
+ "▁ Si",
+ "ç o",
+ "Ed it",
+ "E dit",
+ "кі в",
+ "к ів",
+ "▁Л и",
+ "▁S ing",
+ "▁Si ng",
+ "▁Sin g",
+ "▁ Sing",
+ "▁c ateg",
+ "▁cat eg",
+ "Eq u",
+ "E qu",
+ "▁g uer",
+ "▁gu er",
+ "▁ guer",
+ "W idth",
+ "▁Christ ian",
+ "st at",
+ "sta t",
+ "s tat",
+ "W rite",
+ "▁w oman",
+ "▁wo man",
+ "wo od",
+ "w ood",
+ "V is",
+ "ра з",
+ "▁$ $\\",
+ "▁$$ \\",
+ "ode r",
+ "od er",
+ "o der",
+ "▁b ool",
+ "▁bo ol",
+ "▁ bool",
+ "▁intern ational",
+ "но сть",
+ "ност ь",
+ "нос ть",
+ "▁Rich ard",
+ "▁Ric hard",
+ "▁add ition",
+ "▁Mus ic",
+ "▁ Music",
+ "▁a ber",
+ "▁ab er",
+ "t ó",
+ "▁h ier",
+ "▁hi er",
+ "ug h",
+ "u gh",
+ "▁p ob",
+ "▁po b",
+ "▁t ables",
+ "▁table s",
+ "▁tab les",
+ "▁ta bles",
+ "▁ tables",
+ "D o",
+ "▁high er",
+ "ps i",
+ "p si",
+ "r á",
+ "▁act ive",
+ "▁activ e",
+ "▁ active",
+ "▁T able",
+ "▁Ta ble",
+ "▁Tab le",
+ "▁ Table",
+ "њ е",
+ "▁de scription",
+ "▁des cription",
+ "▁descri ption",
+ "▁descript ion",
+ "▁ description",
+ "▁se emed",
+ "▁see med",
+ "▁seem ed",
+ "ís t",
+ "í st",
+ "▁my self",
+ "▁m enu",
+ "▁me nu",
+ "▁men u",
+ "▁ menu",
+ "de l",
+ "d el",
+ "▁ ž",
+ "el e",
+ "e le",
+ "A ut",
+ "▁г ру",
+ "mu t",
+ "m ut",
+ "oo n",
+ "o on",
+ "as c",
+ "a sc",
+ "bu g",
+ "b ug",
+ "▁m oved",
+ "▁mov ed",
+ "▁mo ved",
+ "▁move d",
+ "C L",
+ "▁data s",
+ "▁dat as",
+ "▁ datas",
+ "S O",
+ "о ло",
+ "▁Ge org",
+ "▁re ach",
+ "▁r each",
+ ": \"",
+ "▁e valu",
+ "▁ev alu",
+ "▁eval u",
+ "▁ evalu",
+ "▁H el",
+ "▁He l",
+ "▁ Hel",
+ "▁R iver",
+ "▁Riv er",
+ "▁Ri ver",
+ "▁А р",
+ "▁ Ар",
+ "// //",
+ "/// /",
+ "/ ///",
+ "▁s ets",
+ "▁se ts",
+ "▁set s",
+ "▁ sets",
+ "▁O lymp",
+ "Ad apter",
+ ". '",
+ "ov ern",
+ "over n",
+ "ove rn",
+ "o vern",
+ "▁L ord",
+ "▁Lo rd",
+ "▁Lor d",
+ "! --",
+ "jp g",
+ "j pg",
+ "im ento",
+ "iment o",
+ "imen to",
+ "▁Pro f",
+ "▁Pr of",
+ "▁ach ieve",
+ "▁achiev e",
+ "} :",
+ "▁in cor",
+ "▁inc or",
+ "▁o nder",
+ "▁on der",
+ "▁onde r",
+ "▁ onder",
+ "en gl",
+ "eng l",
+ "AB LE",
+ "▁M ary",
+ "▁Mar y",
+ "▁Ma ry",
+ "▁w aren",
+ "▁war en",
+ "▁wa ren",
+ "la ge",
+ "lag e",
+ "l age",
+ "De c",
+ "D ec",
+ "анг л",
+ "en cias",
+ "enc ias",
+ "encia s",
+ "enci as",
+ "ле й",
+ "л ей",
+ "▁M achine",
+ "▁Mach ine",
+ "▁ Machine",
+ "▁А н",
+ "ud a",
+ "u da",
+ "▁ ś",
+ "▁X X",
+ "▁ XX",
+ "on ly",
+ "ле ние",
+ "▁tamb ién",
+ "ne j",
+ "n ej",
+ "▁rel ative",
+ "▁relativ e",
+ "▁ relative",
+ "▁h ours",
+ "▁ho urs",
+ "▁hour s",
+ "▁ind eed",
+ "▁inde ed",
+ "un do",
+ "und o",
+ "in gu",
+ "ing u",
+ "ar ea",
+ "are a",
+ "a rea",
+ "▁C reate",
+ "▁Cre ate",
+ "▁ Create",
+ "be it",
+ "bei t",
+ "▁rem oved",
+ "▁remove d",
+ "▁remov ed",
+ "ma ster",
+ "mas ter",
+ "maste r",
+ "m aster",
+ "ha us",
+ "h aus",
+ "▁B ern",
+ "▁Be rn",
+ "▁Ber n",
+ "▁sp eed",
+ "▁spe ed",
+ "▁ speed",
+ "▁B ay",
+ "▁Ba y",
+ "▁A tt",
+ "▁At t",
+ "▁ Att",
+ "▁N one",
+ "▁No ne",
+ "▁Non e",
+ "▁ None",
+ "app lication",
+ "ü d",
+ "▁f it",
+ "▁fi t",
+ "▁ fit",
+ "▁M aria",
+ "▁Mar ia",
+ "▁Ma ria",
+ "▁Mari a",
+ "▁n ord",
+ "▁no rd",
+ "▁nor d",
+ "▁s plit",
+ "▁sp lit",
+ "▁spl it",
+ "▁ split",
+ "▁st ru",
+ "▁str u",
+ "▁ stru",
+ "▁o fficial",
+ "▁off icial",
+ "▁offic ial",
+ "▁offici al",
+ "▁exec ute",
+ "▁execut e",
+ "▁ execute",
+ "ou ve",
+ "ouv e",
+ "o uve",
+ "{ {",
+ "▁A p",
+ "▁ Ap",
+ "▁к у",
+ "▁ ку",
+ "I L",
+ "▁ ^",
+ "di m",
+ "d im",
+ "▁set up",
+ "▁ setup",
+ "с к",
+ "▁sh are",
+ "▁ share",
+ "▁min utes",
+ "▁minute s",
+ "gl e",
+ "g le",
+ "oc o",
+ "o co",
+ "st ell",
+ "ste ll",
+ "▁C oun",
+ "▁Co un",
+ "▁Cou n",
+ "▁tem per",
+ "▁temp er",
+ "▁ temper",
+ "ke it",
+ "сь кий",
+ "a o",
+ "▁L ong",
+ "▁Lo ng",
+ "▁ Long",
+ "( &",
+ "ка н",
+ "к ан",
+ "▁d ens",
+ "▁de ns",
+ "▁den s",
+ "▁ dens",
+ "Bu t",
+ "B ut",
+ "X X",
+ "DA TE",
+ "DAT E",
+ "D ATE",
+ "ga n",
+ "g an",
+ ".) .",
+ ". ).",
+ "▁en try",
+ "▁ent ry",
+ "▁entr y",
+ "▁ entry",
+ "inst all",
+ "▁з на",
+ "▁ зна",
+ "▁S om",
+ "▁So m",
+ "Comm and",
+ "ße n",
+ "ß en",
+ "▁start ing",
+ "▁star ting",
+ "▁s to",
+ "▁st o",
+ "▁ sto",
+ "I G",
+ "▁min im",
+ "▁mi nim",
+ "▁mini m",
+ "▁exp licit",
+ "▁explic it",
+ "▁by tes",
+ "▁byte s",
+ "▁ bytes",
+ "▁par ty",
+ "▁part y",
+ "▁ party",
+ "to ber",
+ "t ober",
+ "▁G rand",
+ "▁Gr and",
+ "▁Gra nd",
+ "▁Gran d",
+ "▁V or",
+ "▁Vo r",
+ "▁ Vor",
+ "▁l eur",
+ "▁le ur",
+ "▁ leur",
+ "Doc ument",
+ "D ocument",
+ "er c",
+ "e rc",
+ "ens ive",
+ "C P",
+ "en v",
+ "▁arg uments",
+ "▁argument s",
+ "▁ arguments",
+ "▁G ran",
+ "▁Gr an",
+ "▁Gra n",
+ "ar ily",
+ "ari ly",
+ "▁l in",
+ "▁li n",
+ "▁ lin",
+ "t n",
+ "( -",
+ "ge q",
+ "g eq",
+ "▁F amil",
+ "▁Fa mil",
+ "▁Fam il",
+ "▁ Famil",
+ "▁Б о",
+ "▁t our",
+ "▁to ur",
+ "▁tou r",
+ "▁n av",
+ "▁na v",
+ "▁ nav",
+ "▁proper ly",
+ "▁M rs",
+ "▁Mr s",
+ "▁M el",
+ "▁Me l",
+ "▁sc ale",
+ "▁scal e",
+ "▁ scale",
+ "ast ic",
+ "d s",
+ "▁S ir",
+ "▁Si r",
+ "▁Ch urch",
+ "}^ {\\",
+ "}^{ \\",
+ "} ^{\\",
+ "yo u",
+ "y ou",
+ "/ .",
+ "S o",
+ "▁br ought",
+ "▁r ole",
+ "▁ro le",
+ "▁rol e",
+ "▁ role",
+ "▁S ur",
+ "▁Su r",
+ "▁ Sur",
+ "▁f ond",
+ "▁fo nd",
+ "▁fon d",
+ "▁g es",
+ "▁ge s",
+ "▁ ges",
+ "ż e",
+ "et en",
+ "ete n",
+ "e ten",
+ "▁é tait",
+ "▁ét ait",
+ "▁ était",
+ "SE R",
+ "S ER",
+ "▁ко торы",
+ "▁кото ры",
+ "▁equ ation",
+ "▁ equation",
+ "as px",
+ "asp x",
+ "▁A fr",
+ "▁Af r",
+ "▁d it",
+ "▁di t",
+ "▁ dit",
+ "em pty",
+ "emp ty",
+ "empt y",
+ "al ement",
+ "ale ment",
+ "alem ent",
+ "a lement",
+ "wr ap",
+ "w rap",
+ "▁B et",
+ "▁Be t",
+ "▁col lect",
+ "▁coll ect",
+ "▁colle ct",
+ "▁ collect",
+ "▁g it",
+ "▁gi t",
+ "▁ git",
+ "▁v ie",
+ "▁vi e",
+ "▁ vie",
+ "▁. .",
+ "▁ ..",
+ "ро й",
+ "▁< ?",
+ "▁ ",
+ "▁ed uc",
+ "k l",
+ "ens is",
+ "▁O R",
+ "▁ OR",
+ "▁H i",
+ "▁ Hi",
+ "▁C our",
+ "▁Co ur",
+ "▁Cou r",
+ "б ы",
+ "ce rt",
+ "cer t",
+ "c ert",
+ "▁G es",
+ "▁Ge s",
+ "ess or",
+ "esso r",
+ "Ma in",
+ "M ain",
+ "▁ лю",
+ "ca de",
+ "c ade",
+ "do t",
+ "d ot",
+ "au gh",
+ "aug h",
+ "a ugh",
+ "hi b",
+ "h ib",
+ "▁autom atically",
+ "▁auto matically",
+ "▁automat ically",
+ "▁automatic ally",
+ "▁sp ir",
+ "pr esent",
+ "pre sent",
+ "pres ent",
+ "▁Febru ary",
+ "▁Februar y",
+ "▁E lle",
+ "▁El le",
+ "▁Ell e",
+ "cus tom",
+ "c ustom",
+ "▁pro get",
+ "▁admin istr",
+ "▁administ r",
+ "A A",
+ "▁b orn",
+ "▁bo rn",
+ "▁bor n",
+ "▁ born",
+ "▁Col lege",
+ "▁Colleg e",
+ "▁Coll ege",
+ "at hol",
+ "ath ol",
+ "` )",
+ "ier re",
+ "▁r an",
+ "▁ra n",
+ "▁ ran",
+ "▁prof ession",
+ "▁profess ion",
+ "og en",
+ "oge n",
+ "o gen",
+ "}_ {\\",
+ "}_{ \\",
+ "} _{\\",
+ "▁act ivity",
+ "▁activ ity",
+ "▁ activity",
+ "▁sc roll",
+ "▁scr oll",
+ "▁ scroll",
+ "▁pro ve",
+ "▁pr ove",
+ "▁prov e",
+ "ibr ary",
+ "i brary",
+ "er ies",
+ "erie s",
+ "eri es",
+ "e ries",
+ "Re ad",
+ "R ead",
+ "ye ar",
+ "y ear",
+ "▁l ang",
+ "▁la ng",
+ "▁lan g",
+ "▁ lang",
+ "De t",
+ "D et",
+ "▁k new",
+ "▁kn ew",
+ "▁kne w",
+ "▁prote cted",
+ "▁protect ed",
+ "▁prot ected",
+ "▁ protected",
+ "▁w or",
+ "▁wo r",
+ "▁ wor",
+ "▁e ffic",
+ "▁eff ic",
+ "▁r ég",
+ "▁ré g",
+ "▁the ory",
+ "▁ theory",
+ "▁pub lished",
+ "▁publish ed",
+ "re al",
+ "rea l",
+ "▁T our",
+ "▁To ur",
+ "▁dur ante",
+ "▁durant e",
+ "ä s",
+ "▁pos itive",
+ "▁posit ive",
+ "▁for ward",
+ "▁ forward",
+ "▁R el",
+ "▁Re l",
+ "▁ Rel",
+ "{ \"",
+ "par k",
+ "p ark",
+ "▁U m",
+ "▁e er",
+ "en ta",
+ "ent a",
+ "▁i mag",
+ "▁im ag",
+ "но ї",
+ "pi el",
+ "pie l",
+ "p iel",
+ "▁j Query",
+ "▁ jQuery",
+ "is me",
+ "ism e",
+ "ch ni",
+ "chn i",
+ "or gan",
+ "org an",
+ "▁ar gs",
+ "▁arg s",
+ "▁ args",
+ "oi r",
+ "o ir",
+ "he im",
+ "ri an",
+ "ria n",
+ "r ian",
+ "el ess",
+ "eles s",
+ "ele ss",
+ "e less",
+ "us es",
+ "use s",
+ "ди н",
+ "д ин",
+ "ic ión",
+ "ici ón",
+ "ició n",
+ "i ción",
+ "▁ind ust",
+ "▁indu st",
+ "▁ indust",
+ "▁w ish",
+ "▁wis h",
+ "án y",
+ "á ny",
+ "oc a",
+ "o ca",
+ "▁ang ular",
+ "▁ angular",
+ "ie ved",
+ "ieve d",
+ "iev ed",
+ "▁occ ur",
+ "▁oc cur",
+ "SE LECT",
+ "on ia",
+ "oni a",
+ "o nia",
+ "ad min",
+ "▁B est",
+ "▁Be st",
+ "▁Bes t",
+ "▁ Best",
+ "▁э то",
+ "о гра",
+ "▁l oss",
+ "▁lo ss",
+ "▁los s",
+ "▁ loss",
+ "▁b al",
+ "▁ba l",
+ "▁ bal",
+ "▁Р ос",
+ "▁Ро с",
+ "▁care er",
+ "▁п е",
+ "▁ пе",
+ "I X",
+ "▁f all",
+ "▁fa ll",
+ "▁fal l",
+ "▁ fall",
+ "▁R ob",
+ "▁Ro b",
+ "▁ Rob",
+ "▁O P",
+ "▁ OP",
+ "en ed",
+ "ene d",
+ "e ned",
+ "graph ics",
+ "▁c oming",
+ "▁com ing",
+ "▁co ming",
+ "▁ coming",
+ "Up date",
+ "▁d ied",
+ "▁di ed",
+ "▁die d",
+ "ed en",
+ "ede n",
+ "e den",
+ "▁a bs",
+ "▁ab s",
+ "▁ abs",
+ "▁in ner",
+ "▁inn er",
+ "▁inne r",
+ "▁ inner",
+ "▁t rav",
+ "▁tr av",
+ "▁tra v",
+ "сто я",
+ "z ą",
+ "é p",
+ "▁Gr oup",
+ "▁Gro up",
+ "▁ Group",
+ "▁c el",
+ "▁ce l",
+ "▁ cel",
+ "▁st uff",
+ "▁situ ation",
+ "▁$ {",
+ "▁ ${",
+ "ac le",
+ "a cle",
+ "▁pur pose",
+ "▁F ire",
+ "▁Fir e",
+ "▁ Fire",
+ "▁O h",
+ "▁ Oh",
+ "▁Se cond",
+ "▁Sec ond",
+ "▁ Second",
+ "▁up load",
+ "▁ upload",
+ "os tał",
+ "ost ał",
+ "osta ł",
+ "ю щи",
+ "Aut h",
+ "A uth",
+ "▁show ing",
+ "▁sho wing",
+ "▁complet ely",
+ "▁complete ly",
+ "av el",
+ "ave l",
+ "a vel",
+ "b d",
+ "▁pro ced",
+ "▁proc ed",
+ "▁ Ö",
+ "cont rol",
+ "contr ol",
+ "▁th ank",
+ "▁than k",
+ "und red",
+ "▁t om",
+ "▁to m",
+ "▁ tom",
+ "▁ex amples",
+ "▁example s",
+ "▁exam ples",
+ "▁ examples",
+ "▁re member",
+ "▁rem ember",
+ "▁ра бо",
+ "▁ рабо",
+ "▁poss ib",
+ "▁det ect",
+ "▁p oor",
+ "▁po or",
+ "▁O p",
+ "▁ Op",
+ "▁cent ury",
+ "▁ century",
+ "ut ter",
+ "utt er",
+ "▁lo gin",
+ "▁log in",
+ "▁ login",
+ "un st",
+ "uns t",
+ "Out put",
+ "▁other wise",
+ "la n",
+ "l an",
+ "ту р",
+ "т ур",
+ "▁с ов",
+ "▁со в",
+ "▁ сов",
+ "▁gr oups",
+ "▁group s",
+ "▁gro ups",
+ "▁ groups",
+ "ri p",
+ "r ip",
+ "▁s hell",
+ "▁sh ell",
+ "▁she ll",
+ "▁ shell",
+ "▁d istrict",
+ "▁dist rict",
+ "▁rec ords",
+ "▁record s",
+ "▁si è",
+ "fort un",
+ "en ty",
+ "ent y",
+ "▁T re",
+ "▁Tr e",
+ "▁ch anging",
+ "▁chang ing",
+ "сле д",
+ "aug ht",
+ "augh t",
+ "▁de ep",
+ "▁ deep",
+ "sub set",
+ "ag y",
+ "a gy",
+ "en dar",
+ "end ar",
+ "enda r",
+ "ja x",
+ "j ax",
+ "O M",
+ "E l",
+ "im ate",
+ "ima te",
+ "imat e",
+ "i mate",
+ "ar do",
+ "ard o",
+ "▁p lot",
+ "▁pl ot",
+ "▁ plot",
+ "▁vis it",
+ "▁b ug",
+ "▁bu g",
+ "▁ bug",
+ "▁в се",
+ "▁вс е",
+ "▁op ened",
+ "▁open ed",
+ "▁re pla",
+ "▁rep la",
+ "▁Hen ry",
+ "▁p p",
+ "▁ pp",
+ "ba s",
+ "b as",
+ "▁d ark",
+ "▁dar k",
+ "▁ dark",
+ "▁Mart in",
+ "▁ Martin",
+ "▁re source",
+ "▁res ource",
+ "▁ resource",
+ "il ing",
+ "ili ng",
+ "i ling",
+ "▁w atch",
+ "▁wat ch",
+ "▁ watch",
+ "re place",
+ "rep lace",
+ "▁re lease",
+ "▁ release",
+ "Lo cation",
+ "Loc ation",
+ "L ocation",
+ "▁le arning",
+ "▁learn ing",
+ "▁lear ning",
+ "▁ learning",
+ "me nu",
+ "men u",
+ "m enu",
+ "▁all ows",
+ "▁allow s",
+ "▁allo ws",
+ "ъ р",
+ "L ength",
+ "▁wh atever",
+ "▁what ever",
+ "▁p ages",
+ "▁page s",
+ "▁pa ges",
+ "▁pag es",
+ "▁ pages",
+ "▁comp iler",
+ "▁compile r",
+ "▁ compiler",
+ "▁так же",
+ "▁P an",
+ "▁Pa n",
+ "▁ Pan",
+ "comm and",
+ "▁ro ad",
+ "▁ road",
+ "▁un less",
+ "▁ unless",
+ "` ?",
+ "▁dis cover",
+ "▁disc over",
+ "▁disco ver",
+ "▁о н",
+ "▁ он",
+ "} ]",
+ "bo ur",
+ "b our",
+ "▁C ould",
+ "▁Co uld",
+ "▁Cou ld",
+ "▁ Could",
+ "▁re gex",
+ "▁reg ex",
+ "▁ regex",
+ "▁p s",
+ "▁ ps",
+ "C D",
+ "и з",
+ "▁w ife",
+ "am enti",
+ "ament i",
+ "amen ti",
+ "▁f air",
+ "▁fa ir",
+ "▁D B",
+ "▁ DB",
+ "▁C up",
+ "▁Cu p",
+ "en en",
+ "ene n",
+ "e nen",
+ "aj ax",
+ "aja x",
+ "a jax",
+ "oth èque",
+ "▁se iner",
+ "▁sein er",
+ "▁seine r",
+ "▁sei ner",
+ "ic ker",
+ "ick er",
+ "i cker",
+ "á m",
+ "ex change",
+ "ol es",
+ "ole s",
+ "o les",
+ "I F",
+ "▁Д о",
+ "oh n",
+ "o hn",
+ "▁g row",
+ "▁gr ow",
+ "▁gro w",
+ "▁T hus",
+ "▁Th us",
+ "sp ec",
+ "spe c",
+ "s pec",
+ "▁h atte",
+ "▁ha tte",
+ "▁hat te",
+ "# ,",
+ "all el",
+ "alle l",
+ "▁r ate",
+ "▁ra te",
+ "▁rat e",
+ "▁ rate",
+ "▁cent ral",
+ "▁ central",
+ "▁V an",
+ "▁Va n",
+ "if orn",
+ "R un",
+ "▁stud y",
+ "▁X ML",
+ "▁ XML",
+ "▁C he",
+ "▁Ch e",
+ "▁ Che",
+ "▁be aut",
+ "mi d",
+ "m id",
+ "▁adv ance",
+ "V er",
+ "т я",
+ "▁h ands",
+ "▁hand s",
+ "▁han ds",
+ "▁l ay",
+ "▁la y",
+ "▁ lay",
+ "▁ š",
+ "▁O S",
+ "▁ OS",
+ "▁{ }",
+ "▁ {}",
+ "Pr e",
+ "P re",
+ "▁H all",
+ "▁Ha ll",
+ "▁Hal l",
+ "im p",
+ "i mp",
+ "▁s un",
+ "▁su n",
+ "▁ sun",
+ "▁st eps",
+ "▁ste ps",
+ "▁step s",
+ "▁ steps",
+ "▁j ud",
+ "▁ju d",
+ "▁ jud",
+ "qu i",
+ "q ui",
+ "▁b oot",
+ "▁bo ot",
+ "▁ boot",
+ "▁% >",
+ "▁В а",
+ "no st",
+ "nos t",
+ "n ost",
+ "▁n em",
+ "▁ne m",
+ "▁ nem",
+ "▁p en",
+ "▁pe n",
+ "▁ pen",
+ "Op en",
+ "O pen",
+ "▁ch urch",
+ "ко н",
+ "к он",
+ "▁a verage",
+ "▁aver age",
+ "▁ave rage",
+ "▁com ments",
+ "▁comm ents",
+ "▁comment s",
+ "▁ comments",
+ "▁correspond ing",
+ "lev ant",
+ "▁b ed",
+ "▁be d",
+ "▁ bed",
+ "▁mean ing",
+ "V ersion",
+ "Lin k",
+ "L ink",
+ "be l",
+ "b el",
+ "▁ext ract",
+ "▁extra ct",
+ "▁extr act",
+ "▁ extract",
+ "ś ć",
+ "▁I V",
+ "▁ IV",
+ "▁I r",
+ "▁comp uter",
+ "▁comput er",
+ "▁compute r",
+ "▁a ffect",
+ "▁af fect",
+ "▁aff ect",
+ "▁С та",
+ "▁Ст а",
+ "A X",
+ "so rt",
+ "s ort",
+ "▁s pecies",
+ "▁spe cies",
+ "▁spec ies",
+ "▁specie s",
+ "▁ species",
+ "▁O per",
+ "▁Op er",
+ "▁ Oper",
+ "▁h ash",
+ "▁ha sh",
+ "▁has h",
+ "▁ hash",
+ "ch es",
+ "che s",
+ "c hes",
+ "▁Einz eln",
+ "▁Einzel n",
+ "▁ke ys",
+ "▁key s",
+ "▁ keys",
+ "▁mar zo",
+ "▁inter pret",
+ "▁interpre t",
+ "ho od",
+ "h ood",
+ "▁co ordin",
+ "▁coord in",
+ "ö s",
+ "ra ge",
+ "rag e",
+ "r age",
+ "et z",
+ "e tz",
+ "iz a",
+ "i za",
+ "де р",
+ "д ер",
+ "ü t",
+ "^ *",
+ "▁mod ify",
+ "▁term in",
+ "▁ter min",
+ "▁ termin",
+ "▁c red",
+ "▁cre d",
+ "▁cr ed",
+ "▁ cred",
+ "zo n",
+ "z on",
+ "ну ю",
+ "н ую",
+ "▁m ie",
+ "▁mi e",
+ "▁' '",
+ "▁ ''",
+ "▁M os",
+ "▁Mo s",
+ "▁conne cted",
+ "▁connect ed",
+ "▁conn ected",
+ "▁ connected",
+ "N O",
+ "▁comp ile",
+ "▁ compile",
+ "▁\" \\",
+ "▁ \"\\",
+ "▁c at",
+ "▁ca t",
+ "▁ cat",
+ "f iddle",
+ "ut a",
+ "u ta",
+ "Acc ess",
+ "Ac cess",
+ "A ccess",
+ "▁S to",
+ "▁St o",
+ "▁ Sto",
+ "▁B ur",
+ "▁Bu r",
+ "▁n orth",
+ "▁nor th",
+ "G amma",
+ "▁al loc",
+ "▁all oc",
+ "▁allo c",
+ "▁ alloc",
+ "In it",
+ "I nit",
+ "▁L ink",
+ "▁Lin k",
+ "▁ Link",
+ "ial ize",
+ "iali ze",
+ "Im pl",
+ "Imp l",
+ "ou pe",
+ "oup e",
+ "rop ri",
+ "▁G old",
+ "▁Go ld",
+ "▁Gol d",
+ "▁s olo",
+ "▁so lo",
+ "▁sol o",
+ "▁D ist",
+ "▁Dis t",
+ "▁Di st",
+ "▁ Dist",
+ ", -",
+ "na v",
+ "n av",
+ "▁al ert",
+ "▁ale rt",
+ "▁ alert",
+ "es is",
+ "esi s",
+ "▁O s",
+ "▁ Os",
+ "// /",
+ "/ //",
+ "▁f eb",
+ "▁fe b",
+ "▁- ->",
+ "▁-- >",
+ "▁ -->",
+ "fo ot",
+ "foo t",
+ "f oot",
+ "▁F ried",
+ "▁Fr ied",
+ "▁Fri ed",
+ "▁Einzeln ach",
+ "▁Einzel nach",
+ "▁re v",
+ "▁r ev",
+ "▁ rev",
+ "ze it",
+ "▁S tat",
+ "▁St at",
+ "▁Sta t",
+ "▁ Stat",
+ "▁S eg",
+ "▁Se g",
+ "▁ Seg",
+ "▁b lo",
+ "▁bl o",
+ "▁ blo",
+ "wi ck",
+ "w ick",
+ "E L",
+ "ca ption",
+ "cap tion",
+ "capt ion",
+ "he ader",
+ "head er",
+ "▁pres ident",
+ "▁presiden t",
+ "▁mult ip",
+ "▁multi p",
+ "▁mul tip",
+ "▁ multip",
+ "▁Einzelnach weise",
+ "▁se ine",
+ "▁sein e",
+ "▁sei ne",
+ "? ”",
+ "Func tion",
+ "Fun ction",
+ "F unction",
+ "▁St and",
+ "▁Sta nd",
+ "▁Stan d",
+ "▁ Stand",
+ "▁F unction",
+ "▁Fun ction",
+ "▁ Function",
+ "▁? >",
+ "▁ ?>",
+ "▁B ill",
+ "▁Bi ll",
+ "▁Bil l",
+ "▁s pect",
+ "▁sp ect",
+ "▁spe ct",
+ "▁spec t",
+ "▁ spect",
+ "▁re direct",
+ "▁red irect",
+ "▁ redirect",
+ "ru pt",
+ "rup t",
+ "r upt",
+ "▁w alk",
+ "▁wal k",
+ "▁ walk",
+ "в ши",
+ "spring framework",
+ "pl ace",
+ "pla ce",
+ "p lace",
+ "é ho",
+ "Ent ity",
+ "▁Ser vice",
+ "▁Serv ice",
+ "▁ Service",
+ "in te",
+ "int e",
+ "▁tr aining",
+ "▁tra ining",
+ "▁train ing",
+ "▁ training",
+ "▁( `",
+ "▁ (`",
+ "фо р",
+ "ф ор",
+ "▁к ра",
+ "▁ кра",
+ "au r",
+ "a ur",
+ "▁f etch",
+ "▁fet ch",
+ "▁ fetch",
+ "▁ †",
+ "▁m ême",
+ "▁ même",
+ "▁( '",
+ "▁ ('",
+ "at ively",
+ "ative ly",
+ "ativ ely",
+ "▁exec ut",
+ "ä ch",
+ "▁Catalog ue",
+ "ba sed",
+ "base d",
+ "bas ed",
+ "b ased",
+ "Att ribute",
+ "▁s pring",
+ "▁sp ring",
+ "▁spr ing",
+ "▁ spring",
+ "ph one",
+ "phon e",
+ "т ра",
+ "▁п и",
+ "▁ пи",
+ "те ра",
+ "тер а",
+ "т ера",
+ "▁` \\",
+ "▁O d",
+ "On e",
+ "O ne",
+ "se nd",
+ "sen d",
+ "s end",
+ "bo n",
+ "b on",
+ "▁ °",
+ "M O",
+ "▁as king",
+ "▁ask ing",
+ "▁o ù",
+ "▁ing år",
+ "▁test ing",
+ "▁ testing",
+ "▁ф а",
+ "▁ фа",
+ "▁B ook",
+ "▁Bo ok",
+ "▁ Book",
+ "im m",
+ "i mm",
+ "▁pro gress",
+ "▁ progress",
+ "br o",
+ "b ro",
+ "F irst",
+ "▁p hot",
+ "▁ph ot",
+ "▁O N",
+ "▁ ON",
+ "Tem plate",
+ "Temp late",
+ "develop er",
+ "an not",
+ "ann ot",
+ "anno t",
+ "▁> =",
+ "▁ >=",
+ "miss ion",
+ "m ission",
+ "▁k tó",
+ "▁ któ",
+ "p c",
+ "ba ch",
+ "b ach",
+ "ze nt",
+ "zen t",
+ "z ent",
+ "ue d",
+ "u ed",
+ "▁o nes",
+ "▁on es",
+ "▁one s",
+ "▁ ones",
+ "ј и",
+ "▁r out",
+ "▁ro ut",
+ "▁rou t",
+ "▁ rout",
+ "▁К и",
+ "Pos t",
+ "Po st",
+ "P ost",
+ "ці ї",
+ "ц ії",
+ "▁V ir",
+ "▁Vi r",
+ "ne k",
+ "n ek",
+ "ag ing",
+ "agi ng",
+ "agin g",
+ "a ging",
+ "▁о к",
+ "▁ ок",
+ "iz ont",
+ "izo nt",
+ "izon t",
+ "▁ag osto",
+ "▁ago sto",
+ "▁cho ose",
+ "▁ choose",
+ "▁ \r",
+ "▁system s",
+ "▁syst ems",
+ "lo ss",
+ "los s",
+ "l oss",
+ "ien te",
+ "ient e",
+ "i ente",
+ "▁C re",
+ "▁Cr e",
+ "▁ Cre",
+ "▁con tra",
+ "▁cont ra",
+ "▁contr a",
+ "▁ contra",
+ "um s",
+ "u ms",
+ "▁begin ning",
+ "em y",
+ "e my",
+ "ist ics",
+ "istic s",
+ "isti cs",
+ "▁s erved",
+ "▁ser ved",
+ "▁serv ed",
+ "▁serve d",
+ "Do wn",
+ "D own",
+ "option s",
+ "opt ions",
+ "o ptions",
+ "▁G overn",
+ "▁Go vern",
+ "▁B Y",
+ "▁ BY",
+ "▁j est",
+ "▁je st",
+ "▁ jest",
+ "t é",
+ "▁cont inue",
+ "▁contin ue",
+ "▁continu e",
+ "▁ continue",
+ "pe rs",
+ "per s",
+ "p ers",
+ "▁eas ier",
+ "▁c os",
+ "▁co s",
+ "▁ cos",
+ "es so",
+ "ess o",
+ "> >",
+ "Ne t",
+ "N et",
+ "▁B or",
+ "▁Bo r",
+ "▁C r",
+ "▁ Cr",
+ "▁trans fer",
+ "▁C SS",
+ "▁CS S",
+ "▁ CSS",
+ "▁fin ns",
+ "▁х о",
+ "▁ хо",
+ "us ername",
+ "user name",
+ "▁con stru",
+ "▁const ru",
+ "▁p ain",
+ "▁pa in",
+ "▁T em",
+ "▁Te m",
+ "▁ Tem",
+ "▁spec ified",
+ "▁b rit",
+ "▁br it",
+ "▁ brit",
+ "ски е",
+ "с кие",
+ "ir k",
+ "ra pper",
+ "rap per",
+ "r apper",
+ "▁c ounter",
+ "▁co unter",
+ "▁count er",
+ "▁coun ter",
+ "▁ counter",
+ "▁[ \"",
+ "▁ [\"",
+ "ode d",
+ "od ed",
+ "o ded",
+ "да н",
+ "д ан",
+ "pro perty",
+ "ha rd",
+ "har d",
+ "h ard",
+ "ist rict",
+ "istr ict",
+ ") /",
+ "▁P our",
+ "▁Po ur",
+ "▁W here",
+ "▁Wh ere",
+ "▁Whe re",
+ "▁ Where",
+ "▁= ==",
+ "▁== =",
+ "▁ ===",
+ "▁s owie",
+ "▁so wie",
+ "▁sow ie",
+ "▁П ро",
+ "▁d ess",
+ "▁de ss",
+ "▁des s",
+ "▁ dess",
+ "▁t ras",
+ "▁tr as",
+ "▁tra s",
+ "▁ tras",
+ "▁у ча",
+ "▁O ver",
+ "▁ Over",
+ "no te",
+ "not e",
+ "n ote",
+ "▁Amer ica",
+ "▁ America",
+ "c p",
+ "▁gr ande",
+ "▁gra nde",
+ "▁gran de",
+ "▁grand e",
+ "M e",
+ ") -",
+ "Mod e",
+ "Mo de",
+ "M ode",
+ "▁pass ing",
+ "▁pas sing",
+ "▁g iving",
+ "▁giv ing",
+ "▁gi ving",
+ "C l",
+ "} /",
+ "Me nu",
+ "Men u",
+ "M enu",
+ "! !",
+ "ang ular",
+ "angu lar",
+ "▁la unch",
+ "▁ launch",
+ "var phi",
+ "▁Joh ann",
+ "▁Johan n",
+ "▁for each",
+ "▁fore ach",
+ "▁ foreach",
+ "r ó",
+ "se qu",
+ "seq u",
+ "s equ",
+ "if i",
+ "i fi",
+ "A m",
+ "ar p",
+ "a rp",
+ "▁b uffer",
+ "▁buf fer",
+ "▁buff er",
+ "▁ buffer",
+ "▁n i",
+ "▁ ni",
+ "▁m ix",
+ "▁mi x",
+ "▁ mix",
+ "▁M useum",
+ "▁Muse um",
+ "▁me ant",
+ "▁mean t",
+ "as i",
+ "a si",
+ "▁k an",
+ "▁ka n",
+ "▁ kan",
+ "пра в",
+ "п рав",
+ "Com p",
+ "Co mp",
+ "C omp",
+ "is toire",
+ "ist oire",
+ "isto ire",
+ "if ul",
+ "i ful",
+ "je r",
+ "j er",
+ "iss ions",
+ "ission s",
+ "Re source",
+ "Res ource",
+ "▁в оз",
+ "▁во з",
+ "▁S T",
+ "▁ ST",
+ "▁sol utions",
+ "▁solution s",
+ "▁be long",
+ "▁bel ong",
+ "▁As soci",
+ "▁Ass oci",
+ "▁ Associ",
+ "c f",
+ "▁M är",
+ "▁g rid",
+ "▁gr id",
+ "▁ grid",
+ "M ult",
+ "▁require s",
+ "▁requ ires",
+ "k k",
+ "▁t each",
+ "▁te ach",
+ "▁tea ch",
+ "eme inde",
+ "emein de",
+ "▁s quare",
+ "▁squ are",
+ "▁ square",
+ "▁ко ман",
+ "▁ком ан",
+ "▁E vent",
+ "▁Ev ent",
+ "▁Even t",
+ "▁ Event",
+ "▁r ules",
+ "▁rule s",
+ "▁ru les",
+ "▁ rules",
+ "▁b ur",
+ "▁bu r",
+ "▁ bur",
+ "▁e ing",
+ "▁ein g",
+ "▁ eing",
+ "▁M ai",
+ "▁Ma i",
+ "▁n am",
+ "▁na m",
+ "▁ nam",
+ "▁s lä",
+ "▁sl ä",
+ "hö r",
+ "h ör",
+ "▁t ip",
+ "▁ti p",
+ "▁ tip",
+ "▁Liter atur",
+ "▁s cope",
+ "▁sc ope",
+ "▁scop e",
+ "▁ scope",
+ "over line",
+ "▁ex it",
+ "▁ exit",
+ ") ?",
+ "be t",
+ "b et",
+ "▁v ict",
+ "▁vi ct",
+ "▁vic t",
+ "Of f",
+ "O ff",
+ "▁appro xim",
+ "▁G eb",
+ "▁Ge b",
+ "kt op",
+ "k top",
+ "he it",
+ "▁ Ю",
+ "tem plate",
+ "temp late",
+ "ро н",
+ "р он",
+ "▁u no",
+ "▁un o",
+ "▁ uno",
+ "Ser v",
+ "Se rv",
+ "S erv",
+ "▁frame work",
+ "▁ framework",
+ "oper ator",
+ "opera tor",
+ "▁gener ally",
+ "▁general ly",
+ "▁h undred",
+ "▁d ivers",
+ "▁di vers",
+ "▁div ers",
+ "▁diver s",
+ "ov i",
+ "o vi",
+ "▁r és",
+ "▁ré s",
+ "▁ rés",
+ "ab s",
+ "a bs",
+ "▁g al",
+ "▁ga l",
+ "▁ gal",
+ "ça is",
+ "ç ais",
+ "▁fe et",
+ "▁fee t",
+ "▁v irtual",
+ "▁virt ual",
+ "▁ virtual",
+ "cz y",
+ "c zy",
+ "ск у",
+ "с ку",
+ ". /",
+ "h u",
+ "an cy",
+ "anc y",
+ "▁recomm end",
+ "▁п ід",
+ "▁пі д",
+ "▁m oney",
+ "▁mon ey",
+ "▁mo ney",
+ "▁vers ions",
+ "▁version s",
+ "▁ versions",
+ "▁hel ps",
+ "▁help s",
+ "▁H or",
+ "▁Ho r",
+ "▁ Hor",
+ "Item s",
+ "It ems",
+ "lo ok",
+ "l ook",
+ "con nect",
+ "conne ct",
+ "conn ect",
+ "an ges",
+ "ang es",
+ "ange s",
+ "View Controller",
+ "el ijk",
+ "elij k",
+ "eli jk",
+ "e lijk",
+ "▁occ up",
+ "▁oc cup",
+ "▁ occup",
+ "▁ed itor",
+ "▁edit or",
+ "▁ editor",
+ "au to",
+ "aut o",
+ "a uto",
+ "ö g",
+ "▁second s",
+ "▁sec onds",
+ "▁ seconds",
+ "▁ob vious",
+ "v m",
+ "ak es",
+ "ake s",
+ "a kes",
+ "▁g egen",
+ "▁ge gen",
+ "▁geg en",
+ "▁t il",
+ "▁ti l",
+ "▁ til",
+ "ject ion",
+ "je ction",
+ "j ection",
+ "ле ння",
+ "лен ня",
+ "▁oper ations",
+ "▁operation s",
+ "▁E ast",
+ "og y",
+ "o gy",
+ "▁P olit",
+ "▁Pol it",
+ "▁Po lit",
+ "ut en",
+ "ute n",
+ "u ten",
+ "▁Jose ph",
+ "\" `",
+ "▁Comp any",
+ "▁ Company",
+ "▁call back",
+ "▁ callback",
+ "▁s en",
+ "▁se n",
+ "▁ sen",
+ "cc ión",
+ "cció n",
+ "c ción",
+ "▁associ ated",
+ "▁associate d",
+ "▁cont aining",
+ "▁contain ing",
+ "▁pract ice",
+ "elij ke",
+ "elijk e",
+ "e lijke",
+ "ok e",
+ "o ke",
+ "ér a",
+ "é ra",
+ "un s",
+ "u ns",
+ "an ta",
+ "ant a",
+ "ve y",
+ "v ey",
+ "z u",
+ "▁B es",
+ "▁Be s",
+ "▁F lor",
+ "▁Fl or",
+ "▁Flo r",
+ "me m",
+ "m em",
+ "yc z",
+ "y cz",
+ "▁arch itect",
+ "▁an ni",
+ "▁ann i",
+ "▁ anni",
+ "▁cont act",
+ "▁ contact",
+ "Y PE",
+ "▁C as",
+ "▁Ca s",
+ "▁по лу",
+ "▁пол у",
+ "ov o",
+ "o vo",
+ "▁b ring",
+ "▁br ing",
+ "▁con cept",
+ "▁conce pt",
+ "▁j s",
+ "▁ js",
+ "▁Refer encias",
+ "em ble",
+ "emb le",
+ "embl e",
+ "▁ н",
+ "▁supp orted",
+ "▁support ed",
+ "▁ supported",
+ "Bi g",
+ "B ig",
+ "▁H ans",
+ "▁Ha ns",
+ "▁Han s",
+ "er v",
+ "e rv",
+ "▁M aj",
+ "▁Ma j",
+ "▁ar riv",
+ "▁arr iv",
+ "▁H ave",
+ "▁Ha ve",
+ "▁Hav e",
+ "▁ Have",
+ "▁prob ability",
+ "▁probabil ity",
+ "▁P op",
+ "▁Po p",
+ "▁ Pop",
+ "▁P ass",
+ "▁Pa ss",
+ "▁Pas s",
+ "▁ Pass",
+ "to ken",
+ "tok en",
+ "t oken",
+ "Pro vider",
+ "▁R a",
+ "Re ader",
+ "Read er",
+ "oot h",
+ "oo th",
+ "o oth",
+ "la p",
+ "l ap",
+ "▁ass ist",
+ "ad ow",
+ "ado w",
+ "▁t ests",
+ "▁test s",
+ "▁ tests",
+ "сс и",
+ "с си",
+ "▁k ing",
+ "▁ki ng",
+ "▁kin g",
+ "▁ king",
+ "lang le",
+ "lan gle",
+ "l angle",
+ "▁S um",
+ "▁Su m",
+ "▁ Sum",
+ "O IN",
+ "▁se curity",
+ "▁sec urity",
+ "▁ security",
+ "ni s",
+ "n is",
+ ".. /",
+ ". ./",
+ "▁bas ic",
+ "▁ basic",
+ "un ity",
+ "uni ty",
+ "unit y",
+ "` :",
+ "▁ко то",
+ "ko w",
+ "k ow",
+ "▁Bibli othèque",
+ "as ion",
+ "asi on",
+ "al o",
+ "a lo",
+ "if est",
+ "ife st",
+ "i fest",
+ "▁nov embre",
+ "▁p eu",
+ "▁pe u",
+ "▁ Ж",
+ "en schaft",
+ "ensch aft",
+ "cl us",
+ "c lus",
+ "ј у",
+ "He ight",
+ "ú n",
+ "▁t ur",
+ "▁tu r",
+ "▁ide as",
+ "▁idea s",
+ "▁c es",
+ "▁ce s",
+ "▁ ces",
+ "fr ak",
+ "fra k",
+ "f rak",
+ "▁pre mier",
+ "▁prem ier",
+ "▁premi er",
+ "it ation",
+ "ita tion",
+ "itat ion",
+ "▁s é",
+ "HT ML",
+ "▁Ro yal",
+ "▁Roy al",
+ "сь кої",
+ "сько ї",
+ "▁by te",
+ "▁ byte",
+ "P S",
+ "▁s egu",
+ "▁se gu",
+ "▁seg u",
+ "▁ segu",
+ "in en",
+ "ine n",
+ "i nen",
+ "▁Gre at",
+ "▁К у",
+ "▁ex ternal",
+ "▁ext ernal",
+ "▁extern al",
+ "▁ external",
+ "T itle",
+ "To p",
+ "T op",
+ "Pro cess",
+ "Proc ess",
+ "it ät",
+ "itä t",
+ "▁` /",
+ "▁se cret",
+ "▁sec ret",
+ "▁secre t",
+ "▁ secret",
+ "pos itory",
+ "▁pot ential",
+ "▁B ud",
+ "▁Bu d",
+ "name s",
+ "na mes",
+ "nam es",
+ "n ames",
+ "as ons",
+ "ason s",
+ "aso ns",
+ "stack exchange",
+ "back ground",
+ "пе р",
+ "п ер",
+ "со в",
+ "с ов",
+ "aft er",
+ "af ter",
+ "a fter",
+ "▁p ero",
+ "▁per o",
+ "▁pe ro",
+ "▁so ftware",
+ "▁soft ware",
+ "▁ software",
+ "▁s ed",
+ "▁se d",
+ "▁ sed",
+ "▁array s",
+ "▁arr ays",
+ "tm p",
+ "t mp",
+ "▁a sp",
+ "▁as p",
+ "▁ asp",
+ "sc ale",
+ "scal e",
+ "▁L at",
+ "▁La t",
+ "▁ Lat",
+ "an al",
+ "ana l",
+ "a nal",
+ "▁g em",
+ "▁ge m",
+ "▁ gem",
+ "P U",
+ "▁Al tri",
+ "▁Alt ri",
+ "Th at",
+ "T hat",
+ "▁Н и",
+ "if act",
+ "ifa ct",
+ "i fact",
+ "Add ress",
+ "▁s outh",
+ "▁so uth",
+ "▁sou th",
+ "▁sout h",
+ "▁form ula",
+ "▁Col leg",
+ "▁Coll eg",
+ "▁і н",
+ "▁ ін",
+ "kt ion",
+ "k tion",
+ "▁s ac",
+ "▁sa c",
+ "S H",
+ "aj o",
+ "a jo",
+ "et c",
+ "e tc",
+ "v c",
+ "` ](",
+ "▁D ur",
+ "▁Du r",
+ "▁М е",
+ "▁Sm ith",
+ "▁ Smith",
+ "it ems",
+ "ite ms",
+ "item s",
+ "C K",
+ "el o",
+ "e lo",
+ "▁pl ugin",
+ "▁plug in",
+ "▁ plugin",
+ "▁s erie",
+ "▁se rie",
+ "▁ser ie",
+ "▁ serie",
+ "ien ne",
+ "ienn e",
+ "i enne",
+ "▁и ли",
+ "Ma r",
+ "M ar",
+ "▁Im age",
+ "▁ Image",
+ "go t",
+ "g ot",
+ "an das",
+ "and as",
+ "anda s",
+ "▁mat ches",
+ "▁match es",
+ "▁ matches",
+ "▁w orth",
+ "▁wor th",
+ "▁ worth",
+ "▁D eb",
+ "▁De b",
+ "▁ Deb",
+ "▁c ache",
+ "▁ca che",
+ "▁ cache",
+ "▁f elt",
+ "▁fe lt",
+ "▁fel t",
+ "er sch",
+ "ers ch",
+ "iz es",
+ "ize s",
+ "i zes",
+ "Op er",
+ "O per",
+ "▁Jah re",
+ "▁Jahr e",
+ "▁Ja hre",
+ "▁comm une",
+ "▁commun e",
+ "th read",
+ "▁n y",
+ "▁ ny",
+ "de c",
+ "d ec",
+ "ou w",
+ "o uw",
+ "▁sur face",
+ "▁P or",
+ "▁Po r",
+ "▁St reet",
+ "▁Stre et",
+ "пр и",
+ "п ри",
+ "▁c andid",
+ "▁can did",
+ "▁cand id",
+ "▁Re turn",
+ "▁Ret urn",
+ "▁ Return",
+ "▁K om",
+ "▁Ko m",
+ "gr u",
+ "g ru",
+ "▁т и",
+ "▁ ти",
+ "[ \\",
+ "▁dep ends",
+ "▁depend s",
+ "▁in flu",
+ "▁inf lu",
+ "▁infl u",
+ "▁to wards",
+ "▁toward s",
+ "ain ed",
+ "ai ned",
+ "aine d",
+ "a ined",
+ "▁r ank",
+ "▁ran k",
+ "▁ rank",
+ "▁Janu ar",
+ "▁com ponents",
+ "▁compon ents",
+ "▁component s",
+ "▁ components",
+ "ge st",
+ "ges t",
+ "g est",
+ "getElement ById",
+ "▁check ed",
+ "▁ checked",
+ "air s",
+ "ai rs",
+ "a irs",
+ "jo in",
+ "j oin",
+ "▁d ead",
+ "▁de ad",
+ "▁h it",
+ "▁hi t",
+ "▁ hit",
+ "én y",
+ "é ny",
+ "▁equ ivalent",
+ "▁equival ent",
+ "▁П ре",
+ "▁app ropri",
+ "Pa ss",
+ "P ass",
+ "▁pr imer",
+ "▁prim er",
+ "▁pri mer",
+ "▁prime r",
+ "engl isch",
+ "▁app ar",
+ "▁ap par",
+ "▁D uring",
+ "▁Du ring",
+ "▁Dur ing",
+ "▁know ledge",
+ "▁tr igger",
+ "▁trig ger",
+ "▁ trigger",
+ "▁c ore",
+ "▁cor e",
+ "▁co re",
+ "▁ core",
+ "▁O l",
+ "▁P rodu",
+ "▁Pro du",
+ "▁Pr odu",
+ "▁ Produ",
+ "▁F ern",
+ "▁Fe rn",
+ "▁Fer n",
+ "▁ Fern",
+ "▁на ча",
+ "▁ нача",
+ "T e",
+ "▁M ot",
+ "▁Mo t",
+ "er ve",
+ "erv e",
+ "тв о",
+ "т во",
+ "▁m id",
+ "▁mi d",
+ "▁ mid",
+ "▁fin ally",
+ "▁final ly",
+ "air es",
+ "ai res",
+ "aire s",
+ "a ires",
+ "▁es pecially",
+ "▁espe cially",
+ "▁especial ly",
+ "▁t ut",
+ "▁tu t",
+ "▁rece ive",
+ "ad re",
+ "adr e",
+ "▁ne igh",
+ "▁nei gh",
+ "kt et",
+ "kte t",
+ "il de",
+ "ild e",
+ "▁rad io",
+ "▁radi o",
+ "▁ radio",
+ "▁d river",
+ "▁dr iver",
+ "▁drive r",
+ "▁dri ver",
+ "▁driv er",
+ "▁ driver",
+ "ли сь",
+ "end encies",
+ "enden cies",
+ "▁I E",
+ "▁ IE",
+ "▁s aved",
+ "▁sa ved",
+ "▁sav ed",
+ "▁save d",
+ "▁ saved",
+ "ff ect",
+ "ffe ct",
+ "f fect",
+ "▁Way back",
+ "ia t",
+ "i at",
+ "▁p adding",
+ "▁pad ding",
+ "▁ padding",
+ "wind ow",
+ "w indow",
+ "ти че",
+ "▁m ur",
+ "▁mu r",
+ "ac tor",
+ "act or",
+ "a ctor",
+ "▁H an",
+ "▁Ha n",
+ "он аль",
+ "она ль",
+ "о наль",
+ "▁g ar",
+ "▁ga r",
+ "▁ gar",
+ "▁famil jen",
+ "ó s",
+ "▁n ationale",
+ "▁national e",
+ "▁nation ale",
+ "▁nat ionale",
+ "▁p ré",
+ "▁pr é",
+ "de d",
+ "d ed",
+ "on al",
+ "ona l",
+ "o nal",
+ "▁Pres ident",
+ "▁\\ ,",
+ "▁ \\,",
+ "▁place d",
+ "▁pla ced",
+ "er ni",
+ "ern i",
+ "▁sign al",
+ "▁sig nal",
+ "▁ signal",
+ "na b",
+ "n ab",
+ "h m",
+ "Mo n",
+ "M on",
+ "▁v s",
+ "▁ vs",
+ "S C",
+ "▁proget ti",
+ "▁ Ü",
+ "▁for ms",
+ "▁form s",
+ "▁ forms",
+ "▁message s",
+ "▁mess ages",
+ "▁ messages",
+ "in f",
+ "us ers",
+ "use rs",
+ "user s",
+ "u sers",
+ "GE T",
+ "G ET",
+ "▁d els",
+ "▁de ls",
+ "▁del s",
+ "Col lection",
+ "Coll ection",
+ "Collect ion",
+ "▁G ood",
+ "▁Go od",
+ "▁ Good",
+ "▁May be",
+ "▁ Maybe",
+ "▁com pr",
+ "▁comp r",
+ "▁lar ger",
+ "▁large r",
+ "▁larg er",
+ "gr es",
+ "gre s",
+ "g res",
+ "ap er",
+ "ape r",
+ "a per",
+ "▁П ри",
+ "un des",
+ "und es",
+ "unde s",
+ "▁s ea",
+ "▁se a",
+ "▁S pring",
+ "▁Sp ring",
+ "▁Spr ing",
+ "▁ Spring",
+ "ul o",
+ "u lo",
+ "▁me chan",
+ "▁s ans",
+ "▁sa ns",
+ "▁san s",
+ "G B",
+ "Val id",
+ "▁comm unic",
+ "▁commun ic",
+ "▁ communic",
+ "▁p ra",
+ "▁pr a",
+ "vi er",
+ "vie r",
+ "v ier",
+ "▁С е",
+ "▁a in",
+ "▁ai n",
+ "▁ ain",
+ "ту ра",
+ "тур а",
+ "ko m",
+ "k om",
+ "sk iego",
+ "ski ego",
+ "skie go",
+ "ко во",
+ "ков о",
+ "к ово",
+ "ad ata",
+ "ada ta",
+ "a data",
+ "▁Р е",
+ "▁bo olean",
+ "▁ boolean",
+ "se ts",
+ "set s",
+ "s ets",
+ "▁eff ort",
+ ". [",
+ "▁z ostał",
+ "P A",
+ "▁V ict",
+ "▁Vi ct",
+ "▁Vic t",
+ "S D",
+ "ow ał",
+ "owa ł",
+ "▁e mb",
+ "▁em b",
+ "▁ emb",
+ "▁pr ima",
+ "▁prim a",
+ "▁pri ma",
+ "▁h our",
+ "▁ho ur",
+ "▁ hour",
+ "sub section",
+ "▁F ort",
+ "▁For t",
+ "▁Fo rt",
+ "math frak",
+ "ig in",
+ "igi n",
+ "i gin",
+ "G L",
+ ") +",
+ "f i",
+ "▁an ci",
+ "▁anc i",
+ "▁ anci",
+ "▁p an",
+ "▁pa n",
+ "▁ pan",
+ "\\ )",
+ "▁l ug",
+ "▁lu g",
+ "▁dep loy",
+ "▁ deploy",
+ "do main",
+ "dom ain",
+ "▁s light",
+ "▁sl ight",
+ "JS ON",
+ "J SON",
+ "▁mor ning",
+ "▁h i",
+ "▁ hi",
+ "▁comp are",
+ "▁compar e",
+ "▁ compare",
+ "ij e",
+ "i je",
+ "▁bl ue",
+ "▁ blue",
+ "▁A c",
+ "▁ Ac",
+ "▁m iddle",
+ "▁ middle",
+ "an den",
+ "and en",
+ "ande n",
+ "▁sh ared",
+ "▁share d",
+ "▁ shared",
+ "▁C amp",
+ "▁Cam p",
+ "▁Ca mp",
+ "▁ Á",
+ "ound ed",
+ "oun ded",
+ "u w",
+ "ier ung",
+ "St ack",
+ "▁e ines",
+ "▁ein es",
+ "▁eine s",
+ "▁D a",
+ "▁ Da",
+ "li j",
+ "l ij",
+ "en ti",
+ "ent i",
+ "▁ й",
+ "U til",
+ "▁exper ience",
+ "▁experien ce",
+ "▁a wait",
+ "▁aw ait",
+ "▁ await",
+ "ul s",
+ "u ls",
+ "▁request s",
+ "▁requ ests",
+ "▁ requests",
+ "▁im pos",
+ "▁imp os",
+ "▁const raint",
+ "▁ constraint",
+ "Ch ange",
+ "em ph",
+ "emp h",
+ "бе р",
+ "б ер",
+ "▁An other",
+ "C ustom",
+ "▁signific ant",
+ "▁significa nt",
+ "c r",
+ "▁mill ion",
+ "re ek",
+ "ree k",
+ "▁d alla",
+ "▁da lla",
+ "▁dal la",
+ "▁dall a",
+ "▁G erm",
+ "▁Ge rm",
+ "▁Ger m",
+ "ot al",
+ "ota l",
+ "o tal",
+ "at eur",
+ "ate ur",
+ "bt n",
+ "b tn",
+ "▁th inking",
+ "▁think ing",
+ "▁thin king",
+ "▁inter val",
+ "▁ interval",
+ "on ne",
+ "onn e",
+ "▁l iv",
+ "▁li v",
+ "▁ liv",
+ "() :",
+ "( ):",
+ "▁В е",
+ "o e",
+ "▁E v",
+ "me ta",
+ "met a",
+ "m eta",
+ "▁b road",
+ "▁bro ad",
+ "Re m",
+ "R em",
+ "ap ply",
+ "app ly",
+ "a pply",
+ "▁cou ple",
+ "▁coup le",
+ "▁te chni",
+ "▁techn i",
+ "id ades",
+ "ida des",
+ "idad es",
+ "idade s",
+ "▁go al",
+ "▁ goal",
+ "▁C D",
+ "▁ CD",
+ "ha b",
+ "h ab",
+ "▁ex plan",
+ "▁exp lan",
+ "▁expla n",
+ "▁expl an",
+ "an ner",
+ "ann er",
+ "anne r",
+ "▁B ecause",
+ "bl og",
+ "blo g",
+ "b log",
+ "include graphics",
+ "▁vo ice",
+ "▁ voice",
+ "▁M ap",
+ "▁Ma p",
+ "▁ Map",
+ "vent ion",
+ "ven tion",
+ "v ention",
+ "S ession",
+ "▁L iens",
+ "▁Li ens",
+ "▁Lie ns",
+ "▁s or",
+ "▁so r",
+ "c ategory",
+ "ash ington",
+ "▁Mär z",
+ "po p",
+ "p op",
+ "il let",
+ "ill et",
+ "ille t",
+ "▁z wei",
+ "▁zwe i",
+ "▁zw ei",
+ "▁L ie",
+ "▁Li e",
+ "N ull",
+ "add ress",
+ "addr ess",
+ "▁f actor",
+ "▁fact or",
+ "▁fa ctor",
+ "▁fac tor",
+ "▁ factor",
+ "▁l igne",
+ "▁lig ne",
+ "▁HT TP",
+ "▁ HTTP",
+ "▁s uf",
+ "▁su f",
+ "▁person al",
+ "▁pers onal",
+ "▁persona l",
+ "ci p",
+ "c ip",
+ "▁D ar",
+ "▁Da r",
+ "▁a dm",
+ "▁ad m",
+ "ко й",
+ "▁E xt",
+ "▁Ex t",
+ "▁ Ext",
+ "▁g od",
+ "▁go d",
+ "▁ god",
+ "a a",
+ "R ight",
+ "ét é",
+ "é té",
+ "▁d ynamic",
+ "▁dynam ic",
+ "▁ dynamic",
+ "▁main tain",
+ "to r",
+ "t or",
+ "#### ####",
+ "▁F ra",
+ "▁Fr a",
+ "▁cho ice",
+ "▁ choice",
+ "▁с то",
+ "▁ст о",
+ "▁ сто",
+ "С Р",
+ "▁F eder",
+ "▁Fe der",
+ "▁Fed er",
+ "st on",
+ "sto n",
+ "s ton",
+ "▁f lag",
+ "▁fl ag",
+ "▁fla g",
+ "▁ flag",
+ "ki t",
+ "k it",
+ "Mod ule",
+ "▁с по",
+ "▁сп о",
+ "▁ спо",
+ "▁S tra",
+ "▁St ra",
+ "▁Str a",
+ "ic ks",
+ "ick s",
+ "i cks",
+ "▁h aven",
+ "▁ha ven",
+ "▁have n",
+ "▁hav en",
+ "▁M ass",
+ "▁Ma ss",
+ "▁Mas s",
+ "▁E mp",
+ "▁Em p",
+ "▁ Emp",
+ "▁P i",
+ "▁ Pi",
+ "▁P en",
+ "▁Pe n",
+ "Re ct",
+ "Rec t",
+ "R ect",
+ "▁K r",
+ "it at",
+ "ita t",
+ "i tat",
+ "el er",
+ "ele r",
+ "e ler",
+ "я бря",
+ "it et",
+ "ite t",
+ "▁St art",
+ "▁Sta rt",
+ "▁Star t",
+ "▁ Start",
+ "▁produ ced",
+ "▁produce d",
+ "▁по л",
+ "▁ пол",
+ "( _",
+ "▁de let",
+ "▁del et",
+ "▁h ot",
+ "▁ho t",
+ "▁ hot",
+ "▁Gesch ichte",
+ "~ ~",
+ "▁month s",
+ "▁mont hs",
+ "▁t od",
+ "▁to d",
+ "▁ tod",
+ "▁н и",
+ "▁ ни",
+ "ú s",
+ "te mp",
+ "tem p",
+ "t emp",
+ "▁D ez",
+ "▁De z",
+ "ype s",
+ "yp es",
+ "y pes",
+ "▁c ui",
+ "▁cu i",
+ "om mun",
+ "omm un",
+ "act ions",
+ "action s",
+ "a ctions",
+ "▁e igen",
+ "▁eig en",
+ "▁immedi ately",
+ "▁immediate ly",
+ "P L",
+ "▁Г о",
+ "▁B al",
+ "▁Ba l",
+ "▁ Bal",
+ "љ е",
+ "ul ui",
+ "ulu i",
+ "▁on line",
+ "▁ online",
+ "▁a ños",
+ "▁añ os",
+ "▁año s",
+ "▁name space",
+ "▁names pace",
+ "▁ namespace",
+ "▁m ond",
+ "▁mon d",
+ "▁mo nd",
+ "▁ mond",
+ "▁B ase",
+ "▁Bas e",
+ "▁Ba se",
+ "▁ Base",
+ "▁Can ada",
+ "▁Canad a",
+ "et zt",
+ "etz t",
+ "} -",
+ "▁de fin",
+ "▁def in",
+ "▁ defin",
+ "▁dou bt",
+ "▁doub t",
+ "▁inv estig",
+ "▁invest ig",
+ "view s",
+ "vie ws",
+ "▁L ine",
+ "▁Li ne",
+ "▁Lin e",
+ "▁ Line",
+ "▁st age",
+ "▁sta ge",
+ "▁stag e",
+ "▁ stage",
+ "ett ings",
+ "ub re",
+ "u bre",
+ "f loat",
+ "▁P lay",
+ "▁Pl ay",
+ "▁Pla y",
+ "▁ Play",
+ "▁L as",
+ "▁La s",
+ "pt r",
+ "p tr",
+ "▁be comes",
+ "▁become s",
+ "▁becom es",
+ "est amp",
+ "esta mp",
+ "▁in dependent",
+ "▁indep endent",
+ "▁independ ent",
+ "▁anal ysis",
+ "▁ analysis",
+ "▁L ook",
+ "▁Lo ok",
+ "▁ Look",
+ "la in",
+ "l ain",
+ "▁ра с",
+ "Re ference",
+ "▁s orry",
+ "▁sor ry",
+ "▁supp osed",
+ "▁suppose d",
+ "▁sup posed",
+ "û t",
+ "▁deg ree",
+ "ut z",
+ "u tz",
+ "M M",
+ "▁des ired",
+ "▁desire d",
+ "ł y",
+ "▁l en",
+ "▁le n",
+ "▁ len",
+ "▁al one",
+ "▁ alone",
+ "sign ed",
+ "sig ned",
+ "s igned",
+ "▁S ta",
+ "▁St a",
+ "Per son",
+ "Pers on",
+ "P erson",
+ "▁app lied",
+ "▁B ack",
+ "▁Ba ck",
+ "▁Bac k",
+ "▁ Back",
+ "▁m ars",
+ "▁ma rs",
+ "▁mar s",
+ "Par t",
+ "Pa rt",
+ "P art",
+ "▁D id",
+ "▁Di d",
+ "▁ Did",
+ "▁extern es",
+ "▁externe s",
+ "▁n p",
+ "▁ np",
+ "on go",
+ "ong o",
+ "▁e sta",
+ "▁est a",
+ "▁es ta",
+ "▁ esta",
+ "Bl ock",
+ "B lock",
+ "▁p ou",
+ "▁po u",
+ "ad ores",
+ "ado res",
+ "ador es",
+ "▁St udio",
+ "▁Stud io",
+ "▁ Studio",
+ ". $",
+ "▁re ached",
+ "▁reach ed",
+ "bo t",
+ "b ot",
+ "▁J uni",
+ "▁Ju ni",
+ "▁Jun i",
+ "to ns",
+ "ton s",
+ "t ons",
+ "it el",
+ "ite l",
+ "i tel",
+ "▁G ar",
+ "▁Ga r",
+ "▁art icles",
+ "▁article s",
+ "▁ articles",
+ "▁D istrict",
+ "▁Dist rict",
+ "▁tr ouble",
+ "▁trou ble",
+ "li de",
+ "l ide",
+ "▁F ound",
+ "▁Fou nd",
+ "▁Fo und",
+ "▁ Found",
+ "á d",
+ "▁e quip",
+ "▁equ ip",
+ "▁in ternal",
+ "▁int ernal",
+ "▁inter nal",
+ "▁intern al",
+ "▁ internal",
+ "'] ,",
+ "' ],",
+ "▁a sync",
+ "▁as ync",
+ "▁ async",
+ "U B",
+ "ge l",
+ "g el",
+ "▁a i",
+ "▁ ai",
+ "ens ure",
+ "▁app eared",
+ "▁appear ed",
+ "▁appe ared",
+ "▁$ _",
+ "▁ $_",
+ "▁max imum",
+ "▁maxim um",
+ "▁С и",
+ "р ь",
+ "▁ann oun",
+ "▁anno un",
+ "ла сь",
+ "▁c m",
+ "▁ cm",
+ "га н",
+ "г ан",
+ "au pt",
+ "a upt",
+ "▁l atter",
+ "▁lat ter",
+ "▁pl atform",
+ "▁plat form",
+ "▁ platform",
+ "▁d ra",
+ "▁dr a",
+ "▁ dra",
+ "▁cap ital",
+ "▁capit al",
+ "▁sol ved",
+ "▁solve d",
+ "ri z",
+ "r iz",
+ "ed ic",
+ "edi c",
+ "e dic",
+ "▁M ur",
+ "▁Mu r",
+ "▁T op",
+ "▁To p",
+ "▁ Top",
+ "т ся",
+ "Pa nel",
+ "Pane l",
+ "Pan el",
+ "P anel",
+ "ru le",
+ "r ule",
+ "et ic",
+ "eti c",
+ "▁R en",
+ "▁Re n",
+ "▁Wik imedia",
+ "▁ Wikimedia",
+ "▁T O",
+ "▁ TO",
+ "se cond",
+ "sec ond",
+ "is l",
+ "i sl",
+ "▁h y",
+ "▁ hy",
+ "▁n iet",
+ "▁nie t",
+ "▁ni et",
+ "▁lo aded",
+ "▁load ed",
+ "▁ loaded",
+ "di g",
+ "d ig",
+ "▁ma yo",
+ "▁may o",
+ "[ :",
+ "Ac c",
+ "A cc",
+ "▁b ek",
+ "▁be k",
+ "▁ bek",
+ "ни ю",
+ "lo gin",
+ "log in",
+ "t x",
+ "▁F ur",
+ "▁Fu r",
+ "▁S anta",
+ "▁San ta",
+ "▁Sant a",
+ "az z",
+ "a zz",
+ "▁con duct",
+ "▁cond uct",
+ "▁condu ct",
+ "▁In dia",
+ "▁Ind ia",
+ "Or der",
+ "Ord er",
+ "ir th",
+ "irt h",
+ "t w",
+ "} +",
+ "▁w ieder",
+ "▁wie der",
+ "▁E du",
+ "▁Ed u",
+ "A V",
+ "▁` ``",
+ "▁`` `",
+ "▁ ```",
+ "▁man ually",
+ "▁manual ly",
+ "▁R ead",
+ "▁Re ad",
+ "▁ Read",
+ "fortun ately",
+ "▁R un",
+ "▁Ru n",
+ "▁ Run",
+ "▁A ward",
+ "▁Aw ard",
+ "▁F oot",
+ "▁Foo t",
+ "▁Fo ot",
+ "▁ Foot",
+ "* )",
+ "par ams",
+ "param s",
+ "pa rams",
+ "para ms",
+ "п і",
+ "▁n ative",
+ "▁nat ive",
+ "▁ native",
+ "ri ft",
+ "rif t",
+ "r ift",
+ "▁ ä",
+ "AT H",
+ "A TH",
+ "▁your self",
+ "▁yours elf",
+ "▁p rior",
+ "▁pr ior",
+ "▁pri or",
+ "▁c it",
+ "▁ci t",
+ "▁ cit",
+ "ä h",
+ "▁tre at",
+ "▁me as",
+ "rib uted",
+ "ribute d",
+ "ribu ted",
+ "▁c lar",
+ "▁cl ar",
+ "▁cla r",
+ "▁ clar",
+ "ca rd",
+ "car d",
+ "c ard",
+ "RO R",
+ "R OR",
+ "il les",
+ "ill es",
+ "ille s",
+ "i lles",
+ "▁l ayer",
+ "▁la yer",
+ "▁lay er",
+ "▁ layer",
+ "au er",
+ "a uer",
+ "▁r at",
+ "▁ra t",
+ "▁ rat",
+ "bern ate",
+ "▁st ato",
+ "▁stat o",
+ "▁sta to",
+ "▁Ch ina",
+ "▁Chi na",
+ "▁$ ('#",
+ "▁$(' #",
+ "▁n aar",
+ "▁na ar",
+ "zi p",
+ "z ip",
+ "▁$ {\\",
+ "▁${ \\",
+ "▁appreci ated",
+ "▁appreciate d",
+ "▁и ме",
+ "▁им е",
+ "ż y",
+ "▁prze z",
+ "▁prz ez",
+ "▁Ind ian",
+ "▁India n",
+ "▁T od",
+ "▁To d",
+ "▁S ource",
+ "▁ Source",
+ "▁дру ги",
+ "in ternal",
+ "int ernal",
+ "inter nal",
+ "intern al",
+ "ion ale",
+ "ional e",
+ "iona le",
+ "Pro duct",
+ "Produ ct",
+ "▁M en",
+ "▁Me n",
+ "▁ Men",
+ "▁u pper",
+ "▁up per",
+ "▁upp er",
+ "▁ upper",
+ "▁E very",
+ "▁Ev ery",
+ "▁Ever y",
+ "▁ Every",
+ "}, \\",
+ "} ,\\",
+ "▁print f",
+ "▁prin tf",
+ "▁ printf",
+ "▁contin ued",
+ "▁continu ed",
+ "▁continue d",
+ "▁n odes",
+ "▁no des",
+ "▁node s",
+ "▁nod es",
+ "▁ nodes",
+ "л ки",
+ "▁n ice",
+ "▁ni ce",
+ "▁nic e",
+ "▁ nice",
+ "mod ules",
+ "module s",
+ "ei gn",
+ "e ign",
+ "▁M ex",
+ "▁Me x",
+ "▁Acc ording",
+ "▁un defined",
+ "▁und efined",
+ "▁ undefined",
+ "▁b inary",
+ "▁bin ary",
+ "▁ binary",
+ "cu t",
+ "c ut",
+ "Cur rent",
+ "C urrent",
+ "ed y",
+ "e dy",
+ "}} {",
+ "} }{",
+ "ble s",
+ "bl es",
+ "b les",
+ "▁во й",
+ "▁ вой",
+ "sc ri",
+ "scr i",
+ "s cri",
+ "eq n",
+ "Ch anged",
+ "Change d",
+ "▁kö z",
+ "▁rem ote",
+ "▁ remote",
+ "в ля",
+ "▁qu el",
+ "▁que l",
+ "▁q uel",
+ "▁ quel",
+ "▁al ign",
+ "▁ali gn",
+ "▁ align",
+ "▁п ар",
+ "▁па р",
+ "▁ пар",
+ "S V",
+ "ye r",
+ "y er",
+ "▁Cal iforn",
+ "▁p laces",
+ "▁pl aces",
+ "▁place s",
+ "▁pla ces",
+ "▁prim ary",
+ "▁pri mary",
+ "▁prima ry",
+ "▁ primary",
+ "▁con v",
+ "▁ conv",
+ "▁J uli",
+ "▁Jul i",
+ "▁Ju li",
+ "▁vis ual",
+ "▁ visual",
+ "▁S elect",
+ "▁Se lect",
+ "▁Sel ect",
+ "▁Sele ct",
+ "▁ Select",
+ "at ory",
+ "ator y",
+ "ato ry",
+ "= (",
+ "is er",
+ "ise r",
+ "i ser",
+ "▁int ent",
+ "▁inte nt",
+ "▁inten t",
+ "▁ intent",
+ "su r",
+ "s ur",
+ "cont ainer",
+ "ic ed",
+ "ice d",
+ "i ced",
+ "▁bo ard",
+ "▁ board",
+ "as tr",
+ "ast r",
+ "a str",
+ "om ial",
+ "omi al",
+ "ве т",
+ "в ет",
+ "з ва",
+ "▁c ru",
+ "▁cr u",
+ "▁Ok tober",
+ "sa ve",
+ "s ave",
+ "▁gre ater",
+ "▁great er",
+ "▁in n",
+ "▁i nn",
+ "▁ inn",
+ "▁p icture",
+ "▁ picture",
+ "▁Т о",
+ "▁obtain ed",
+ "▁obt ained",
+ "Wik imedia",
+ "ú blic",
+ "▁l ors",
+ "▁lo rs",
+ "▁m ont",
+ "▁mon t",
+ "▁mo nt",
+ "▁ mont",
+ "ob re",
+ "o bre",
+ "▁c ivil",
+ "▁ci vil",
+ "▁civ il",
+ "▁const ruction",
+ "▁construct ion",
+ "▁constru ction",
+ "▁W elt",
+ "▁We lt",
+ "▁Wel t",
+ "▁U nder",
+ "▁Un der",
+ "▁Und er",
+ "▁ Under",
+ "und ert",
+ "under t",
+ "unde rt",
+ "▁ed ge",
+ "▁ edge",
+ "▁L iste",
+ "▁List e",
+ "▁Li ste",
+ "▁Lis te",
+ "cs v",
+ "c sv",
+ "▁ex periment",
+ "▁exper iment",
+ "local host",
+ "▁E dit",
+ "▁Ed it",
+ "▁ Edit",
+ "gr eg",
+ "gre g",
+ "g reg",
+ "ov á",
+ "o vá",
+ "љ а",
+ "ms g",
+ "m sg",
+ "▁G reen",
+ "▁Gr een",
+ "▁Gre en",
+ "▁Gree n",
+ "▁ Green",
+ "Di alog",
+ "D ialog",
+ "Id ent",
+ "I dent",
+ "▁J S",
+ "▁ JS",
+ "^{ (",
+ "^ {(",
+ "▁slä ktet",
+ "__ __",
+ "___ _",
+ "_ ___",
+ "Pro ject",
+ "▁bes kre",
+ "▁b er",
+ "▁be r",
+ "▁ ber",
+ "▁would n",
+ "▁re act",
+ "▁ react",
+ "He l",
+ "H el",
+ "z w",
+ "▁W ashington",
+ "or ie",
+ "ori e",
+ "o rie",
+ "ta sk",
+ "t ask",
+ "▁c ategory",
+ "▁categ ory",
+ "▁categor y",
+ "▁ category",
+ "▁art ist",
+ "an no",
+ "ann o",
+ "▁o ok",
+ "▁ ook",
+ "am men",
+ "amm en",
+ "▁Min ister",
+ "▁de clar",
+ "▁dec lar",
+ "▁decl ar",
+ "▁decla r",
+ "▁K ey",
+ "▁Ke y",
+ "▁ Key",
+ ", .",
+ "▁m ach",
+ "▁ma ch",
+ "▁mac h",
+ "▁w w",
+ "▁ ww",
+ "is en",
+ "ise n",
+ "i sen",
+ "Fr an",
+ "F ran",
+ "▁Ро сси",
+ "▁Рос си",
+ "бо р",
+ "б ор",
+ "т ри",
+ "▁r ock",
+ "▁ro ck",
+ "▁ rock",
+ "qu is",
+ "qui s",
+ "q uis",
+ "mo s",
+ "m os",
+ "пе ра",
+ "пер а",
+ "п ера",
+ "▁est erni",
+ "▁g old",
+ "▁go ld",
+ "▁gol d",
+ "Window s",
+ "W indows",
+ "% %",
+ "▁part ial",
+ "▁parti al",
+ "▁ partial",
+ "▁we ight",
+ "▁ weight",
+ "▁s pr",
+ "▁sp r",
+ "▁ spr",
+ "}) .",
+ "} ).",
+ "▁fran çais",
+ "fu n",
+ "f un",
+ "▁th ous",
+ "▁thou s",
+ "ho lder",
+ "hol der",
+ "hold er",
+ "h older",
+ "▁g one",
+ "▁go ne",
+ "▁ Č",
+ "▁re nd",
+ "▁r end",
+ "▁ren d",
+ "▁ rend",
+ "D A",
+ "▁answer ed",
+ "▁F alse",
+ "▁Fal se",
+ "▁ False",
+ "B uffer",
+ "▁d augh",
+ "▁da ugh",
+ ".- -",
+ ". --",
+ "▁S how",
+ "▁Sh ow",
+ "▁Sho w",
+ "▁ Show",
+ "▁re ct",
+ "▁r ect",
+ "▁rec t",
+ "▁ rect",
+ "▁K re",
+ "▁Kr e",
+ "d r",
+ "os oph",
+ "oso ph",
+ "▁y ield",
+ "ur ity",
+ "uri ty",
+ "to String",
+ "av al",
+ "ava l",
+ "a val",
+ "Po l",
+ "P ol",
+ "▁l ock",
+ "▁lo ck",
+ "▁loc k",
+ "▁ lock",
+ "im ation",
+ "ima tion",
+ "imat ion",
+ "ant ic",
+ "anti c",
+ "Lo cal",
+ "Loc al",
+ "L ocal",
+ "▁beskre vs",
+ "it és",
+ "ité s",
+ "gr id",
+ "g rid",
+ "у т",
+ "▁_ {",
+ "▁ _{",
+ "с і",
+ "FI LE",
+ "▁к м",
+ "▁spe ak",
+ "sum mary",
+ "pr op",
+ "pro p",
+ "p rop",
+ "java script",
+ "j avascript",
+ "z k",
+ "izont al",
+ "izon tal",
+ "▁tr ois",
+ "▁tro is",
+ "▁R od",
+ "▁Ro d",
+ "pr ise",
+ "ро во",
+ "ров о",
+ "р ово",
+ "▁o dd",
+ "▁od d",
+ "▁ odd",
+ "▁g est",
+ "▁ge st",
+ "▁ges t",
+ "▁ gest",
+ "▁produ ce",
+ "▁prod uce",
+ "▁w aar",
+ "▁wa ar",
+ "▁A v",
+ "▁ Av",
+ "ri bu",
+ "rib u",
+ "ва ння",
+ "ван ня",
+ "▁fin ished",
+ "▁finish ed",
+ "▁ad apt",
+ "▁S ar",
+ "▁Sa r",
+ "text it",
+ "tex tit",
+ "▁C e",
+ "▁F a",
+ "▁ Fa",
+ "os en",
+ "ose n",
+ "o sen",
+ "▁de riv",
+ "▁der iv",
+ "▁s hip",
+ "▁sh ip",
+ "▁ ship",
+ "▁o pin",
+ "▁op in",
+ "▁E ven",
+ "▁Ev en",
+ "ge sch",
+ "ges ch",
+ "g esch",
+ "▁supp ose",
+ "▁sup pose",
+ "▁F er",
+ "▁Fe r",
+ "ско е",
+ "▁w orden",
+ "▁word en",
+ "▁wor den",
+ "se y",
+ "s ey",
+ "hl ine",
+ "h line",
+ "▁Un ion",
+ "▁ Union",
+ "▁/ **",
+ "▁/* *",
+ "▁ /**",
+ "▁v ez",
+ "▁ve z",
+ "▁ vez",
+ "▁Colleg amenti",
+ "▁Soci ety",
+ "▁Soc iety",
+ "▁e conom",
+ "▁econ om",
+ "▁ec onom",
+ "š í",
+ "o i",
+ "▁or ient",
+ "▁ orient",
+ "▁T eil",
+ "▁Te il",
+ "re nt",
+ "ren t",
+ "r ent",
+ "ле кс",
+ "лек с",
+ "▁s olid",
+ "▁sol id",
+ "▁c art",
+ "▁car t",
+ "▁ca rt",
+ "▁ cart",
+ "******** ********",
+ "▁c ab",
+ "▁ca b",
+ "▁M essage",
+ "▁Mess age",
+ "▁ Message",
+ "do ts",
+ "dot s",
+ "d ots",
+ "▁é g",
+ "▁ ég",
+ "▁t we",
+ "▁tw e",
+ "ag a",
+ "a ga",
+ "▁n az",
+ "▁na z",
+ "▁M icrosoft",
+ "▁Micro soft",
+ "▁ Microsoft",
+ "▁under arter",
+ "pp en",
+ "ppe n",
+ "p pen",
+ "▁re cent",
+ "▁rec ent",
+ "▁rece nt",
+ "▁n et",
+ "▁ne t",
+ "▁ net",
+ "▁res ources",
+ "▁resource s",
+ "▁ resources",
+ "St e",
+ "S te",
+ ". \\",
+ "▁S O",
+ "▁ SO",
+ "ло м",
+ "л ом",
+ "▁c ele",
+ "▁ce le",
+ "▁cel e",
+ "▁l ic",
+ "▁li c",
+ "▁ lic",
+ "▁ben ef",
+ "▁bene f",
+ "ld ots",
+ "l dots",
+ "▁se rial",
+ "▁ser ial",
+ "▁seria l",
+ "▁ serial",
+ "In teger",
+ "cl es",
+ "cle s",
+ "c les",
+ "▁m iles",
+ "▁mil es",
+ "▁mi les",
+ "▁mile s",
+ "▁A le",
+ "▁Al e",
+ "▁en tered",
+ "▁ent ered",
+ "▁enter ed",
+ "▁T wo",
+ "▁Tw o",
+ "▁ Two",
+ "wi e",
+ "w ie",
+ "▁in cludes",
+ "▁incl udes",
+ "▁includ es",
+ "▁include s",
+ "▁inclu des",
+ "▁ includes",
+ "▁E ach",
+ "▁ Each",
+ "el ling",
+ "ell ing",
+ "elli ng",
+ "qu er",
+ "que r",
+ "q uer",
+ "▁D om",
+ "▁Do m",
+ "▁ Dom",
+ "p f",
+ "W S",
+ "▁stra ight",
+ "▁S tan",
+ "▁St an",
+ "▁Sta n",
+ "▁n os",
+ "▁no s",
+ "▁ nos",
+ "í cul",
+ "at ro",
+ "atr o",
+ "▁C enter",
+ "▁Cent er",
+ "▁ Center",
+ "F T",
+ "▁In ga",
+ "▁Ing a",
+ "il o",
+ "i lo",
+ "▁w ww",
+ "▁ww w",
+ "▁ www",
+ "js fiddle",
+ "ni c",
+ "n ic",
+ "▁Europe an",
+ "▁com mer",
+ "▁comm er",
+ "▁comme r",
+ "▁g irl",
+ "▁gi rl",
+ "▁gir l",
+ "to tal",
+ "tot al",
+ "t otal",
+ "▁S tar",
+ "▁St ar",
+ "▁Sta r",
+ "▁ Star",
+ "▁sugg ested",
+ "▁suggest ed",
+ "pa l",
+ "p al",
+ "▁zw ischen",
+ "пи са",
+ "пис а",
+ "I M",
+ "▁hand ler",
+ "▁handle r",
+ "▁ handler",
+ "▁Pro gram",
+ "▁Pr ogram",
+ "▁ Program",
+ "xs l",
+ "x sl",
+ "ál y",
+ "á ly",
+ "B U",
+ ",- -",
+ ", --",
+ "▁v id",
+ "▁vi d",
+ "▁ vid",
+ "▁estab lished",
+ "▁establish ed",
+ "▁S piel",
+ "▁Sp iel",
+ "om etry",
+ "ome try",
+ "omet ry",
+ "un es",
+ "une s",
+ "u nes",
+ "▁s it",
+ "▁si t",
+ "▁in her",
+ "▁p uis",
+ "▁pu is",
+ "▁ puis",
+ "▁ être",
+ "▁M ost",
+ "▁Mo st",
+ "▁Mos t",
+ "He ader",
+ "Head er",
+ "in sert",
+ "ins ert",
+ "▁s ist",
+ "▁si st",
+ "▁f avor",
+ "▁fa vor",
+ "▁fav or",
+ "de st",
+ "des t",
+ "d est",
+ "▁ent ity",
+ "▁ entity",
+ "Ca l",
+ "C al",
+ "▁There fore",
+ "D D",
+ "; ;",
+ "▁Dez ember",
+ "▁R h",
+ "im ents",
+ "iment s",
+ "imen ts",
+ "i ments",
+ "▁return ing",
+ "st o",
+ "s to",
+ "▁Val ue",
+ "▁ Value",
+ "▁l iber",
+ "▁li ber",
+ "▁lib er",
+ "▁Res ult",
+ "▁ Result",
+ "▁b ind",
+ "▁bi nd",
+ "▁bin d",
+ "▁ bind",
+ "vo ir",
+ "v oir",
+ "▁T im",
+ "▁Ti m",
+ "▁ Tim",
+ "▁M ovie",
+ "▁Mo vie",
+ "▁Mov ie",
+ "▁ Movie",
+ "we g",
+ "w eg",
+ "ke t",
+ "k et",
+ "▁и сто",
+ "▁ис то",
+ "▁fri ends",
+ "▁friend s",
+ "▁f n",
+ "▁ fn",
+ "▁é l",
+ "▁ él",
+ "▁& =",
+ "▁ &=",
+ "ar den",
+ "ard en",
+ "arde n",
+ "ff icial",
+ "ffic ial",
+ "▁comm unity",
+ "▁commun ity",
+ "▁ community",
+ "▁a pi",
+ "▁ap i",
+ "▁ api",
+ "Ar gs",
+ "Arg s",
+ "ie ren",
+ "ier en",
+ "iere n",
+ "i eren",
+ "▁d ann",
+ "▁da nn",
+ "▁dan n",
+ "om orph",
+ "ad r",
+ "a dr",
+ "lo op",
+ "l oop",
+ "um an",
+ "uma n",
+ "u man",
+ "▁v ous",
+ "▁vo us",
+ "▁vou s",
+ "▁ vous",
+ "bs t",
+ "b st",
+ "sub mit",
+ "\\ |",
+ "ти н",
+ "т ин",
+ "Cont ainer",
+ "as ket",
+ "ask et",
+ "? )",
+ "Se c",
+ "S ec",
+ "▁d rive",
+ "▁dr ive",
+ "▁dri ve",
+ "▁driv e",
+ "▁ drive",
+ "As s",
+ "A ss",
+ "▁s we",
+ "▁sw e",
+ "▁a mer",
+ "▁am er",
+ "▁ amer",
+ "▁m ine",
+ "▁min e",
+ "▁mi ne",
+ "▁ mine",
+ "▁H am",
+ "▁Ha m",
+ "▁av ait",
+ "▁ avait",
+ "▁H on",
+ "▁Ho n",
+ "▁a près",
+ "▁ap rès",
+ "▁apr ès",
+ "▁ après",
+ "▁M ann",
+ "▁Man n",
+ "▁Ma nn",
+ "сь ка",
+ "ськ а",
+ "▁incre ase",
+ "▁t y",
+ "▁ ty",
+ "sk y",
+ "s ky",
+ "▁acc ur",
+ "▁ac cur",
+ "art icle",
+ "we ight",
+ "weig ht",
+ "▁s ex",
+ "▁se x",
+ "▁ sex",
+ "▁list ade",
+ "▁lista de",
+ "/* *",
+ "/ **",
+ "▁est á",
+ "}} $",
+ "} }$",
+ "ar go",
+ "arg o",
+ "def ine",
+ "defin e",
+ "▁со став",
+ "▁соста в",
+ "s ession",
+ "ad s",
+ "a ds",
+ "ст ви",
+ "ств и",
+ "▁L aw",
+ "▁La w",
+ "▁d ialog",
+ "▁di alog",
+ "▁dia log",
+ "▁ dialog",
+ "▁dup licate",
+ "▁é p",
+ "▁ ép",
+ "▁v oc",
+ "▁vo c",
+ "fr i",
+ "f ri",
+ "▁g reen",
+ "▁gr een",
+ "▁gre en",
+ "▁ green",
+ "▁h idden",
+ "▁hid den",
+ "▁ hidden",
+ "▁Is land",
+ "▁di ag",
+ "▁dia g",
+ "ow ej",
+ "owe j",
+ "my sql",
+ "mys ql",
+ "mysq l",
+ "te il",
+ "tei l",
+ "t eil",
+ "r ä",
+ "ik an",
+ "ika n",
+ "i kan",
+ "▁Jos é",
+ "al ed",
+ "ale d",
+ "a led",
+ "Run time",
+ "R untime",
+ "▁t rain",
+ "▁tr ain",
+ "▁tra in",
+ "▁ train",
+ "▁Di vision",
+ "▁Div ision",
+ "ни ц",
+ "▁S pan",
+ "▁Sp an",
+ "▁ Span",
+ "ни ма",
+ "ним а",
+ ")= \\",
+ ") =\\",
+ "та н",
+ "т ан",
+ "▁st ay",
+ "▁sta y",
+ "▁f oo",
+ "▁fo o",
+ "▁ foo",
+ "▁acc om",
+ "▁ac com",
+ "▁h ers",
+ "▁he rs",
+ "▁her s",
+ "▁на у",
+ "▁M ün",
+ "ide os",
+ "ideo s",
+ "st atic",
+ "stat ic",
+ "▁re ady",
+ "▁read y",
+ "▁ ready",
+ "] `",
+ "▁vis ible",
+ "▁vi sible",
+ "▁ visible",
+ "▁H ope",
+ "▁Ho pe",
+ "▁Hop e",
+ "ul ated",
+ "ula ted",
+ "ulate d",
+ "▁C ult",
+ "▁Cu lt",
+ "ст ро",
+ "стр о",
+ "с тро",
+ "C o",
+ "▁sm aller",
+ "▁small er",
+ "at ura",
+ "atur a",
+ "atu ra",
+ "▁perfect ly",
+ "re q",
+ "r eq",
+ "▁pro posed",
+ "▁prop osed",
+ "▁propos ed",
+ "▁propose d",
+ "▁deg li",
+ "Se arch",
+ "S earch",
+ "▁i ch",
+ "▁ic h",
+ "▁ ich",
+ "Ma x",
+ "M ax",
+ "▁vol ume",
+ "▁ volume",
+ "exec ute",
+ "gr e",
+ "g re",
+ "▁s port",
+ "▁sp ort",
+ "▁spo rt",
+ "ud ad",
+ "uda d",
+ "P T",
+ "▁Rec ords",
+ "▁Record s",
+ "▁c ook",
+ "▁co ok",
+ "▁ cook",
+ "▁exp and",
+ "▁ expand",
+ "б і",
+ "▁al tri",
+ "▁alt ri",
+ "pp et",
+ "ppe t",
+ "p pet",
+ "ar se",
+ "ars e",
+ "▁w et",
+ "▁we t",
+ "▁B ob",
+ "▁Bo b",
+ "▁ Bob",
+ "▁F C",
+ "▁ FC",
+ "▁Associ ation",
+ "uj e",
+ "u je",
+ "▁f el",
+ "▁fe l",
+ "▁ fel",
+ "▁с лу",
+ "▁ слу",
+ "▁B ig",
+ "▁Bi g",
+ "▁ Big",
+ "/ \\",
+ "G e",
+ "wh ile",
+ "{ (",
+ "▁su fficient",
+ "Pos ition",
+ "P osition",
+ "▁under standing",
+ "▁understand ing",
+ "▁n ue",
+ "▁nu e",
+ "▁r az",
+ "▁ra z",
+ "▁ raz",
+ "▁y e",
+ "▁ ye",
+ "he m",
+ "h em",
+ "N um",
+ "▁Pro ject",
+ "▁ Project",
+ "▁I ts",
+ "▁It s",
+ "▁h asta",
+ "▁ha sta",
+ "▁has ta",
+ "▁hast a",
+ "en so",
+ "ens o",
+ "▁w ire",
+ "▁wir e",
+ "▁ wire",
+ "Re t",
+ "R et",
+ "u j",
+ "pro of",
+ "▁re levant",
+ "▁relev ant",
+ "▁part ir",
+ "▁parti r",
+ "▁a go",
+ "▁ag o",
+ "▁ ago",
+ "if icate",
+ "ific ate",
+ "ifica te",
+ "▁d omin",
+ "▁do min",
+ "▁dom in",
+ "▁ domin",
+ "▁b oy",
+ "▁bo y",
+ "▁ boy",
+ "▁p lant",
+ "▁pl ant",
+ "▁pla nt",
+ "▁plan t",
+ "▁ plant",
+ "▁enc oding",
+ "▁ encoding",
+ "▁th rows",
+ "▁thr ows",
+ "▁throw s",
+ "▁thro ws",
+ "▁R ock",
+ "▁Ro ck",
+ "▁Roc k",
+ "zo ne",
+ "zon e",
+ "z one",
+ "ga ng",
+ "gan g",
+ "g ang",
+ "wid get",
+ "w idget",
+ "▁interest ing",
+ "DE R",
+ "D ER",
+ "▁d emon",
+ "▁de mon",
+ "▁dem on",
+ "▁demo n",
+ "▁off ice",
+ "▁offic e",
+ "▁ office",
+ "am t",
+ "a mt",
+ "ät er",
+ "ä ter",
+ "▁Wh ite",
+ "▁Whit e",
+ "▁ White",
+ "▁v ersch",
+ "▁ver sch",
+ "▁vers ch",
+ "▁die ser",
+ "▁dies er",
+ "▁diese r",
+ "▁M ount",
+ "▁Mo unt",
+ "▁Mou nt",
+ "▁ Mount",
+ "▁stud ents",
+ "▁student s",
+ "▁P ub",
+ "▁Pu b",
+ "▁ Pub",
+ "▁Д е",
+ "ij a",
+ "i ja",
+ "▁C y",
+ "▁ Cy",
+ "▁Californ ia",
+ "▁ab ril",
+ "äl l",
+ "ä ll",
+ "▁ч ем",
+ "▁че м",
+ "T V",
+ "▁m és",
+ "▁mé s",
+ "▁decl ared",
+ "▁decla red",
+ "▁declar ed",
+ "▁declare d",
+ "▁ ю",
+ "ő l",
+ "ap pa",
+ "app a",
+ "a ppa",
+ "▁Б е",
+ "ec ho",
+ "ech o",
+ "e cho",
+ "num er",
+ "nu mer",
+ "n umer",
+ "▁po sted",
+ "▁pos ted",
+ "▁post ed",
+ "▁poste d",
+ "▁в ер",
+ "▁ве р",
+ "▁ вер",
+ "▁годи не",
+ "▁we ak",
+ "▁ weak",
+ "▁Re public",
+ "▁Rep ublic",
+ "▁Repub lic",
+ "▁ch ampion",
+ "▁champ ion",
+ "ensure math",
+ "you r",
+ "yo ur",
+ "y our",
+ "▁O ber",
+ "▁Ob er",
+ "▁Cent ral",
+ "is a",
+ "i sa",
+ "ан д",
+ "а нд",
+ "y y",
+ "▁full y",
+ "▁ful ly",
+ "▁ fully",
+ "▁S D",
+ "▁ SD",
+ "▁Lin ux",
+ "▁ Linux",
+ "▁Sc ott",
+ "▁Scot t",
+ "part ment",
+ "ko n",
+ "k on",
+ "▁cont ract",
+ "▁contr act",
+ "▁contra ct",
+ "▁O F",
+ "▁ OF",
+ "▁a le",
+ "▁al e",
+ "▁ ale",
+ "▁A nn",
+ "▁An n",
+ "▁на д",
+ "▁ над",
+ "la h",
+ "l ah",
+ "▁N ext",
+ "▁Ne xt",
+ "▁ Next",
+ "or en",
+ "ore n",
+ "o ren",
+ "▁d isk",
+ "▁di sk",
+ "▁dis k",
+ "▁ disk",
+ "▁e g",
+ "▁ eg",
+ "at u",
+ "a tu",
+ "ло ги",
+ "лог и",
+ "▁g ames",
+ "▁game s",
+ "▁ga mes",
+ "▁gam es",
+ "Le ft",
+ "L eft",
+ "▁l u",
+ "▁ lu",
+ "▁fin ite",
+ "▁finit e",
+ "▁ finite",
+ "▁к и",
+ "▁ ки",
+ "▁cr ash",
+ "▁cra sh",
+ "ph er",
+ "phe r",
+ "p her",
+ "ex e",
+ "e xe",
+ "AT ION",
+ "▁br other",
+ "▁bro ther",
+ "En g",
+ "E ng",
+ "ta t",
+ "t at",
+ "▁In teger",
+ "▁ Integer",
+ "но му",
+ "ном у",
+ "н ому",
+ "▁col on",
+ "▁co lon",
+ "▁ colon",
+ "i qu",
+ ")) .",
+ ") ).",
+ "iv i",
+ "i vi",
+ "▁M ethod",
+ "▁Met hod",
+ "▁ Method",
+ "ar ten",
+ "art en",
+ "arte n",
+ "Un i",
+ "U ni",
+ "ve ctor",
+ "vec tor",
+ "v ector",
+ "▁w ood",
+ "▁wo od",
+ "▁ wood",
+ "р т",
+ "▁Л е",
+ "▁siè cle",
+ "▁g ent",
+ "▁ge nt",
+ "▁gen t",
+ "▁ gent",
+ "} \r",
+ "▁cont ents",
+ "▁content s",
+ "▁conten ts",
+ "▁ contents",
+ "▁com pan",
+ "▁comp an",
+ "G o",
+ "▁j ou",
+ "▁jo u",
+ "▁ jou",
+ "ue nt",
+ "uen t",
+ "u ent",
+ "As ync",
+ "A sync",
+ "print f",
+ "▁M odel",
+ "▁Mod el",
+ "▁Mo del",
+ "▁Mode l",
+ "▁ Model",
+ "▁ke pt",
+ "AS E",
+ "A SE",
+ "▁prov ides",
+ "▁provide s",
+ "▁Ab gerufen",
+ "▁G all",
+ "▁Gal l",
+ "▁Ga ll",
+ "▁Al f",
+ "S A",
+ "▁M em",
+ "▁Me m",
+ "▁ Mem",
+ "▁k ter",
+ "▁ kter",
+ "▁B ru",
+ "▁Br u",
+ "And roid",
+ "( :",
+ "▁У краї",
+ "▁Укра ї",
+ "N e",
+ "M in",
+ "at r",
+ "a tr",
+ "▁H al",
+ "▁Ha l",
+ "de lete",
+ "del ete",
+ "od o",
+ "o do",
+ "▁n ão",
+ "èn e",
+ "è ne",
+ "▁calcul ate",
+ "▁calc ulate",
+ "Js on",
+ "J son",
+ "ke ys",
+ "key s",
+ "не й",
+ "н ей",
+ "▁h ence",
+ "▁hen ce",
+ "▁o w",
+ "▁ ow",
+ "▁L ib",
+ "▁Li b",
+ "▁ Lib",
+ "en o",
+ "e no",
+ "▁L ove",
+ "▁Lo ve",
+ "▁Lov e",
+ "os i",
+ "o si",
+ "wi de",
+ "wid e",
+ "w ide",
+ "▁s core",
+ "▁sc ore",
+ "▁ score",
+ "ful l",
+ "fu ll",
+ "f ull",
+ "во д",
+ "в од",
+ "▁determ ine",
+ "▁determin e",
+ "▁s paces",
+ "▁sp aces",
+ "▁space s",
+ "▁spac es",
+ "▁ spaces",
+ "ло ва",
+ "лов а",
+ "л ова",
+ "▁pe ut",
+ "▁peu t",
+ "ér al",
+ "éra l",
+ "é ral",
+ "ó ł",
+ "▁app oint",
+ "▁ap point",
+ "▁T w",
+ "▁ Tw",
+ "< ?",
+ "▁Or der",
+ "▁Ord er",
+ "▁ Order",
+ "▁h op",
+ "▁ho p",
+ "ran dom",
+ "rand om",
+ "r andom",
+ "ca che",
+ "c ache",
+ "▁dest roy",
+ "▁ destroy",
+ "▁r ace",
+ "▁ra ce",
+ "▁rac e",
+ "▁ race",
+ "T ag",
+ "▁r id",
+ "▁ri d",
+ "▁ rid",
+ "▁neg ative",
+ "▁ negative",
+ "Ca r",
+ "C ar",
+ "ens ional",
+ "ension al",
+ "d k",
+ "▁c ro",
+ "▁cr o",
+ "▁ cro",
+ "▁TH EN",
+ "▁THE N",
+ "▁$ .",
+ "▁ $.",
+ "en sk",
+ "ens k",
+ "N E",
+ "H O",
+ "▁k le",
+ "▁kl e",
+ "osp ital",
+ "kt e",
+ "k te",
+ "fér ences",
+ "férence s",
+ "ud es",
+ "ude s",
+ "u des",
+ "I R",
+ "ot ion",
+ "oti on",
+ "o tion",
+ "▁Re al",
+ "▁ Real",
+ "▁Febru ar",
+ "и н",
+ "▁O ld",
+ "▁Ol d",
+ "▁ Old",
+ "ко го",
+ "к ого",
+ "le ich",
+ "lei ch",
+ "▁ р",
+ "ía n",
+ "í an",
+ "▁г а",
+ "▁ га",
+ "ci de",
+ "cid e",
+ "c ide",
+ "la b",
+ "l ab",
+ "▁p ull",
+ "▁pu ll",
+ "▁pul l",
+ "▁ pull",
+ "▁' /",
+ "Lo ng",
+ "L ong",
+ ", $",
+ "▁appropri ate",
+ "▁бы ла",
+ "▁был а",
+ "f ühr",
+ "▁M edia",
+ "▁Me dia",
+ "▁Med ia",
+ "▁Medi a",
+ "▁ Media",
+ "▁m anner",
+ "▁man ner",
+ "▁Г е",
+ "de scription",
+ "des cription",
+ "Be an",
+ "▁L ar",
+ "▁La r",
+ "▁ Lar",
+ "'] ;",
+ "' ];",
+ "▁re lation",
+ "▁rel ation",
+ "▁rela tion",
+ "▁ relation",
+ "▁S orry",
+ "▁Sor ry",
+ "ha r",
+ "h ar",
+ "cp p",
+ "c pp",
+ "▁K o",
+ "▁exec ution",
+ "▁execut ion",
+ "▁ execution",
+ "in os",
+ "ino s",
+ "i nos",
+ "▁b ul",
+ "▁bu l",
+ "▁ bul",
+ "gr ade",
+ "gra de",
+ "grad e",
+ "g rade",
+ "▁M u",
+ "▁p il",
+ "▁pi l",
+ "wr it",
+ "w rit",
+ "ific ations",
+ "ification s",
+ "in ese",
+ "ine se",
+ "ines e",
+ "▁Ph ili",
+ "▁Phil i",
+ "d x",
+ "▁le ading",
+ "▁lead ing",
+ "▁ leading",
+ "▁J ournal",
+ "ov ed",
+ "ove d",
+ "o ved",
+ "▁cont ro",
+ "▁contr o",
+ "но ва",
+ "нов а",
+ "н ова",
+ "Y es",
+ "▁ch annel",
+ "▁ channel",
+ ")) ,",
+ ") ),",
+ "is ten",
+ "ist en",
+ "iste n",
+ "i sten",
+ "ak a",
+ "a ka",
+ "To String",
+ "ma s",
+ "m as",
+ "▁e tt",
+ "▁et t",
+ "▁ ett",
+ "▁for ces",
+ "▁force s",
+ "ul ations",
+ "ulation s",
+ "▁C all",
+ "▁Cal l",
+ "▁Ca ll",
+ "▁ Call",
+ "▁explan ation",
+ "or ing",
+ "ori ng",
+ "o ring",
+ "AT A",
+ "A TA",
+ "ch ter",
+ "cht er",
+ "chte r",
+ "wh en",
+ "w hen",
+ "V C",
+ "▁Jah rh",
+ "▁Jahr h",
+ "Ca se",
+ "C ase",
+ "▁comm ands",
+ "▁command s",
+ "▁ commands",
+ "▁r ich",
+ "▁ric h",
+ "▁ri ch",
+ "▁ rich",
+ "bu s",
+ "b us",
+ "F e",
+ "mb ox",
+ "m box",
+ "▁re con",
+ "▁rec on",
+ "ñ o",
+ "▁s hape",
+ "▁sh ape",
+ "▁ shape",
+ "ow y",
+ "o wy",
+ "en try",
+ "ent ry",
+ "entr y",
+ "it able",
+ "ita ble",
+ "i table",
+ "▁e lection",
+ "▁el ection",
+ "▁elect ion",
+ "▁ele ction",
+ "є ться",
+ "▁p rep",
+ "▁pr ep",
+ "▁pre p",
+ "▁ prep",
+ "v á",
+ "▁in fin",
+ "▁inf in",
+ "lo t",
+ "l ot",
+ "▁bo oks",
+ "▁book s",
+ "▁ books",
+ "▁U SA",
+ "▁US A",
+ "▁ USA",
+ "ли н",
+ "л ин",
+ "▁p om",
+ "▁po m",
+ "▁ pom",
+ "▁n as",
+ "▁na s",
+ "▁ nas",
+ "▁t ags",
+ "▁tag s",
+ "▁ta gs",
+ "▁ tags",
+ "▁exec uted",
+ "▁execute d",
+ "▁execut ed",
+ "ail le",
+ "ai lle",
+ "a ille",
+ "lu ng",
+ "l ung",
+ "▁Java Script",
+ "▁ JavaScript",
+ "▁b all",
+ "▁bal l",
+ "▁ba ll",
+ "▁ ball",
+ "▁ain si",
+ "▁P ri",
+ "▁Pr i",
+ "{ $",
+ "▁U N",
+ "▁ UN",
+ "▁R am",
+ "▁Ra m",
+ "▁h ear",
+ "▁he ar",
+ "▁U buntu",
+ ">( );",
+ ">() ;",
+ "> ();",
+ "▁p ure",
+ "▁pu re",
+ "▁pur e",
+ "▁em bed",
+ "▁emb ed",
+ "▁ embed",
+ "a ção",
+ "cont roller",
+ "control ler",
+ "▁mar ried",
+ "▁F ol",
+ "▁Fo l",
+ "fa mil",
+ "f amil",
+ "▁p rec",
+ "▁pr ec",
+ "▁pre c",
+ "▁ prec",
+ "▁rec urs",
+ "pa d",
+ "p ad",
+ "istr ation",
+ "istra tion",
+ "▁respect ively",
+ "▁respective ly",
+ "[ $",
+ "au tor",
+ "aut or",
+ "auto r",
+ "a utor",
+ "▁g rav",
+ "▁gr av",
+ "▁gra v",
+ "ie ra",
+ "ier a",
+ "i era",
+ "az ioni",
+ "azi oni",
+ "a zioni",
+ "▁B ul",
+ "▁Bu l",
+ "▁Austral ia",
+ "mon d",
+ "mo nd",
+ "m ond",
+ "▁T ro",
+ "▁Tr o",
+ "▁E le",
+ "▁El e",
+ "pack ages",
+ "package s",
+ "ms dn",
+ "▁A ls",
+ "▁Al s",
+ "▁pr zy",
+ "▁prz y",
+ "AR T",
+ "A RT",
+ "▁char ge",
+ "▁charg e",
+ "▁ charge",
+ "▁app lications",
+ "▁application s",
+ "▁applic ations",
+ "Un it",
+ "Uni t",
+ "U nit",
+ "ar en",
+ "are n",
+ "a ren",
+ "▁sud den",
+ "om eter",
+ "ome ter",
+ "omet er",
+ "o meter",
+ "▁d ot",
+ "▁do t",
+ "▁ dot",
+ "ac ji",
+ "a cji",
+ "кт ор",
+ "кто р",
+ "к тор",
+ "im in",
+ "imi n",
+ "i min",
+ "en ing",
+ "eni ng",
+ "e ning",
+ "▁d onde",
+ "▁do nde",
+ "▁don de",
+ "▁H o",
+ "tr ee",
+ "tre e",
+ "t ree",
+ "m b",
+ "▁d rag",
+ "▁dr ag",
+ "▁dra g",
+ "▁ drag",
+ "aj e",
+ "a je",
+ "▁in valid",
+ "▁ invalid",
+ "▁fin ish",
+ "la im",
+ "▁f eed",
+ "▁fe ed",
+ "▁fee d",
+ "▁ feed",
+ "▁N ap",
+ "▁Na p",
+ "ro om",
+ "r oom",
+ "im ages",
+ "ima ges",
+ "image s",
+ "▁са й",
+ "▁su cc",
+ "▁suc c",
+ "if fer",
+ "iff er",
+ "iffe r",
+ "▁a ño",
+ "▁añ o",
+ "▁c ual",
+ "▁cu al",
+ "ме ри",
+ "мер и",
+ "D R",
+ "▁B ilder",
+ "▁Bi lder",
+ "▁Bild er",
+ "▁Bil der",
+ "б ра",
+ "ra it",
+ "rai t",
+ "r ait",
+ "pa n",
+ "p an",
+ "ен ь",
+ "е нь",
+ "▁dist inct",
+ "▁K n",
+ "ön ig",
+ "ö nig",
+ "an ced",
+ "ance d",
+ "anc ed",
+ "▁lo ading",
+ "▁load ing",
+ "▁ loading",
+ "▁Te chn",
+ "▁S el",
+ "▁Se l",
+ "mu s",
+ "m us",
+ "▁r ail",
+ "▁ra il",
+ "▁st udent",
+ "▁stud ent",
+ "▁ student",
+ "▁not ice",
+ "▁s la",
+ "▁sl a",
+ "▁Д а",
+ "▁gu ard",
+ "▁ guard",
+ "▁D ay",
+ "▁Da y",
+ "▁ Day",
+ "ва ли",
+ "вал и",
+ "в али",
+ "Op tion",
+ "Opt ion",
+ "O ption",
+ "ais on",
+ "ai son",
+ "a ison",
+ "ip p",
+ "i pp",
+ "▁J un",
+ "▁Ju n",
+ "▁f ell",
+ "▁fe ll",
+ "▁fel l",
+ "▁ab solute",
+ "▁absol ute",
+ "▁ absolute",
+ "ов е",
+ "о ве",
+ "de bug",
+ "deb ug",
+ "▁S ud",
+ "▁Su d",
+ "п ы",
+ "ug ins",
+ "ugin s",
+ "▁view s",
+ "▁vie ws",
+ "▁ views",
+ "la y",
+ "l ay",
+ "▁s urr",
+ "▁su rr",
+ "▁sur r",
+ "▁st ood",
+ "▁sto od",
+ "▁ stood",
+ "▁в і",
+ "▁ ві",
+ "select ed",
+ "sel ected",
+ "г і",
+ "▁att ributes",
+ "▁attribute s",
+ "▁ attributes",
+ "fin al",
+ "fi nal",
+ "f inal",
+ "en da",
+ "end a",
+ "▁B on",
+ "▁Bo n",
+ "ne rs",
+ "ner s",
+ "n ers",
+ "▁W er",
+ "▁We r",
+ "bu r",
+ "b ur",
+ "it tel",
+ "itt el",
+ "itte l",
+ "▁m oving",
+ "▁mov ing",
+ "▁mo ving",
+ "▁P lan",
+ "▁Pl an",
+ "▁Pla n",
+ "▁ Plan",
+ "is ches",
+ "isch es",
+ "ische s",
+ "isc hes",
+ "J ava",
+ "▁b asis",
+ "▁bas is",
+ "▁B us",
+ "▁Bu s",
+ "▁ Bus",
+ "▁A u",
+ "▁I ll",
+ "▁Il l",
+ "▁ Ill",
+ "▁вре мя",
+ "▁ц ент",
+ "▁ цент",
+ "hand le",
+ "сту п",
+ "▁F ar",
+ "▁Fa r",
+ "▁o raz",
+ "▁or az",
+ "▁ora z",
+ "oc r",
+ "o cr",
+ "▁se it",
+ "▁sei t",
+ "on der",
+ "ond er",
+ "onde r",
+ "o nder",
+ "до м",
+ "д ом",
+ ": /",
+ "ch or",
+ "cho r",
+ "c hor",
+ "▁T own",
+ "▁To wn",
+ "▁Tow n",
+ "▁def init",
+ "▁defin it",
+ "re act",
+ "rea ct",
+ "▁pie ce",
+ "▁Kar l",
+ "▁Ka rl",
+ "C I",
+ "▁App lication",
+ "▁ Application",
+ "un ter",
+ "unt er",
+ "unte r",
+ "▁for med",
+ "▁form ed",
+ "▁forme d",
+ "▁ formed",
+ "▁п у",
+ "▁ пу",
+ "B o",
+ "▁Dan iel",
+ "▁ Daniel",
+ "▁п ла",
+ "▁ пла",
+ "Bo dy",
+ "B ody",
+ "}) $",
+ "} )$",
+ "▁бы ли",
+ "▁был и",
+ "▁e arth",
+ "▁ear th",
+ "г ла",
+ "Th ere",
+ "The re",
+ "T here",
+ "▁с тра",
+ "▁ст ра",
+ "▁ стра",
+ "▁v ille",
+ "▁vi lle",
+ "▁vill e",
+ "▁vil le",
+ "▁ ville",
+ "▁c entre",
+ "▁cent re",
+ ") \r",
+ "▁help ful",
+ "▁+ +",
+ "▁ ++",
+ "▁C G",
+ "▁ CG",
+ "iz ione",
+ "izi one",
+ "izio ne",
+ "i zione",
+ "▁G ame",
+ "▁Ga me",
+ "▁Gam e",
+ "▁ Game",
+ "▁Wh ich",
+ "▁p ip",
+ "▁pi p",
+ "▁ pip",
+ "▁Port ug",
+ "D S",
+ "▁de scribe",
+ "▁des cribe",
+ "▁descri be",
+ "▁check ing",
+ "▁man ager",
+ "▁manage r",
+ "▁ manager",
+ "B O",
+ "▁B undes",
+ "▁Bund es",
+ "▁Bun des",
+ "bu ch",
+ "b uch",
+ "▁dec ided",
+ "▁decide d",
+ "▁decid ed",
+ "▁Jahrh undert",
+ "▁f if",
+ "▁fi f",
+ "▁ fif",
+ "e fficient",
+ "an ci",
+ "anc i",
+ "br aries",
+ "bra ries",
+ "▁f ails",
+ "▁fa ils",
+ "▁fail s",
+ "▁k ernel",
+ "▁ker nel",
+ "▁ kernel",
+ "▁G l",
+ "▁N acional",
+ "▁pro ceed",
+ "▁proc eed",
+ "▁f uer",
+ "▁fue r",
+ "▁fu er",
+ "▁l iving",
+ "▁li ving",
+ "▁liv ing",
+ "▁success fully",
+ "▁successful ly",
+ "▁f aster",
+ "▁fa ster",
+ "▁fast er",
+ "▁fas ter",
+ "▁con tre",
+ "▁cont re",
+ "▁contr e",
+ "▁ contre",
+ "▁pr ison",
+ "▁pri son",
+ "▁pris on",
+ "OR T",
+ "O RT",
+ "he lp",
+ "hel p",
+ "▁a utor",
+ "▁au tor",
+ "▁aut or",
+ "▁auto r",
+ "▁ autor",
+ "ła w",
+ "ł aw",
+ "aj ą",
+ "a ją",
+ "▁A rm",
+ "▁Ar m",
+ "▁ Arm",
+ "▁pro vin",
+ "▁prov in",
+ "▁na am",
+ "/ #",
+ "se d",
+ "s ed",
+ "▁g esch",
+ "▁ge sch",
+ "▁ges ch",
+ "▁ gesch",
+ "▁м ар",
+ "▁ма р",
+ "▁ мар",
+ "es k",
+ "e sk",
+ "ter m",
+ "te rm",
+ "t erm",
+ "▁T ex",
+ "▁Te x",
+ "▁ Tex",
+ "ir ing",
+ "iri ng",
+ "i ring",
+ "▁t ools",
+ "▁to ols",
+ "▁too ls",
+ "▁tool s",
+ "▁ tools",
+ "PD F",
+ "P DF",
+ "▁u lt",
+ "▁ul t",
+ "▁ ult",
+ "iss enschaft",
+ "issen schaft",
+ "▁could n",
+ "di ng",
+ "din g",
+ "d ing",
+ "De p",
+ "D ep",
+ "{ -",
+ "▁pre dict",
+ "▁pred ict",
+ "▁ predict",
+ "ant age",
+ "anta ge",
+ "▁L ike",
+ "▁Li ke",
+ "▁ Like",
+ "▁Б и",
+ "to ols",
+ "tool s",
+ "t ools",
+ "es tra",
+ "est ra",
+ "estr a",
+ "e stra",
+ "▁k i",
+ "▁ ki",
+ "▁J im",
+ "▁Ji m",
+ "st ar",
+ "sta r",
+ "s tar",
+ "▁re mark",
+ "▁r emark",
+ "▁rem ark",
+ "▁ remark",
+ "ó g",
+ "na bla",
+ "nab la",
+ "▁Al though",
+ "mod e",
+ "mo de",
+ "m ode",
+ "H ost",
+ "▁st range",
+ "▁str ange",
+ "▁stran ge",
+ "No ne",
+ "Non e",
+ "N one",
+ "bl ack",
+ "bla ck",
+ "b lack",
+ "▁F estival",
+ "▁Fest ival",
+ "▁I S",
+ "▁ IS",
+ "an za",
+ "anz a",
+ "▁( -",
+ "▁ (-",
+ "ic ket",
+ "ick et",
+ "i cket",
+ "ко ла",
+ "кол а",
+ "▁J es",
+ "▁Je s",
+ "▁f lex",
+ "▁fl ex",
+ "▁fle x",
+ "▁ flex",
+ "▁ À",
+ "▁N etwork",
+ "▁Net work",
+ "▁ Network",
+ "▁E X",
+ "▁ EX",
+ "▁e nero",
+ "▁en ero",
+ "▁ener o",
+ "! ”",
+ "▁O rt",
+ "▁Or t",
+ "▁al ors",
+ "▁Or iginal",
+ "▁Origin al",
+ "▁Orig inal",
+ "▁ Original",
+ "▁z o",
+ "▁ zo",
+ "ны ми",
+ "ным и",
+ "▁s pl",
+ "▁sp l",
+ "▁ spl",
+ "Dra w",
+ "Dr aw",
+ "D raw",
+ "yo nd",
+ "y ond",
+ "─ ─",
+ "▁O t",
+ "▁d ram",
+ "▁dr am",
+ "▁dra m",
+ "▁di vision",
+ "▁div ision",
+ "▁divis ion",
+ "▁e fficient",
+ "▁effic ient",
+ "▁ efficient",
+ "▁Г а",
+ "▁v ier",
+ "▁vi er",
+ "▁vie r",
+ "▁ vier",
+ "na k",
+ "n ak",
+ "L S",
+ "▁sp irit",
+ "▁spir it",
+ "zeich net",
+ "▁d ici",
+ "▁di ci",
+ "▁dic i",
+ "cl ear",
+ "cle ar",
+ "c lear",
+ "co py",
+ "cop y",
+ "c opy",
+ "ya r",
+ "y ar",
+ "▁ро ці",
+ "us qu",
+ "u squ",
+ "▁n ous",
+ "▁no us",
+ "▁nou s",
+ "▁b lev",
+ "▁bl ev",
+ "▁ble v",
+ "ж де",
+ "Ar g",
+ "A rg",
+ "▁per formed",
+ "▁perform ed",
+ "▁M ake",
+ "▁Ma ke",
+ "▁Mak e",
+ "▁ Make",
+ "▁Car ol",
+ "▁Ca rol",
+ "et to",
+ "ett o",
+ "e tto",
+ "▁S and",
+ "▁San d",
+ "▁Sa nd",
+ "▁D isc",
+ "▁Dis c",
+ "▁Di sc",
+ "En c",
+ "E nc",
+ "re ro",
+ "rer o",
+ "r ero",
+ "ha sh",
+ "has h",
+ "h ash",
+ "▁f ocus",
+ "▁fo cus",
+ "▁foc us",
+ "▁ focus",
+ "▁att ention",
+ "▁a gre",
+ "▁ag re",
+ "▁agr e",
+ "▁di vis",
+ "▁div is",
+ "▁бы ло",
+ "▁был о",
+ "▁e j",
+ "▁ ej",
+ "▁m arch",
+ "▁mar ch",
+ "▁marc h",
+ "▁ph ase",
+ "▁ phase",
+ "ía s",
+ "í as",
+ "▁ph il",
+ "▁P ap",
+ "▁Pa p",
+ "▁r iver",
+ "▁riv er",
+ "▁ri ver",
+ "▁ river",
+ "▁c aused",
+ "▁caus ed",
+ "▁cause d",
+ "▁ca used",
+ "pl ugin",
+ "▁Te am",
+ "▁ Team",
+ "ul er",
+ "ule r",
+ "u ler",
+ "▁$ (\"#",
+ "▁$(\" #",
+ "ie j",
+ "i ej",
+ "I SBN",
+ "na m",
+ "n am",
+ "▁f ight",
+ "▁fig ht",
+ "vi d",
+ "v id",
+ "▁L ud",
+ "▁Lu d",
+ "Select ed",
+ ":@ \"",
+ ": @\"",
+ "▁P od",
+ "▁Po d",
+ "▁ Pod",
+ "▁ann ées",
+ "▁année s",
+ "ar ios",
+ "ari os",
+ "ario s",
+ "a rios",
+ "▁deutsch er",
+ "▁deutsche r",
+ "▁N A",
+ "▁ NA",
+ "▁и ю",
+ "▁d ictionary",
+ "▁diction ary",
+ "▁ dictionary",
+ "▁Л а",
+ "▁T ri",
+ "▁Tr i",
+ "▁ Tri",
+ "è n",
+ "▁polit ical",
+ "rid ge",
+ "r idge",
+ "at ten",
+ "att en",
+ "atte n",
+ "▁circ le",
+ "▁cir cle",
+ "▁ circle",
+ "▁trans port",
+ "▁ transport",
+ "em as",
+ "ema s",
+ "e mas",
+ "F C",
+ "▁replace d",
+ "▁repla ced",
+ "▁A ud",
+ "▁Au d",
+ "is ka",
+ "isk a",
+ "i ska",
+ "Config uration",
+ "▁so ort",
+ "▁Н е",
+ "▁s equ",
+ "▁se qu",
+ "▁seq u",
+ "▁ sequ",
+ "PR O",
+ "P RO",
+ "▁b ud",
+ "▁bu d",
+ "▁ bud",
+ "▁{ {",
+ "▁ {{",
+ "lie ß",
+ "l ieß",
+ "▁M as",
+ "▁Ma s",
+ "de rs",
+ "der s",
+ "d ers",
+ "us ammen",
+ "es a",
+ "e sa",
+ "▁L y",
+ "в ро",
+ "ma c",
+ "m ac",
+ "▁и спо",
+ "▁ис по",
+ "▁s uc",
+ "▁su c",
+ "u y",
+ "▁ill ustr",
+ "▁prim era",
+ "▁prime ra",
+ "▁primer a",
+ "il ation",
+ "ila tion",
+ "i lation",
+ "▁st orage",
+ "▁stor age",
+ "▁sto rage",
+ "▁ storage",
+ "▁par ams",
+ "▁para ms",
+ "▁param s",
+ "▁pa rams",
+ "▁ params",
+ "ka z",
+ "k az",
+ "▁term inal",
+ "▁termin al",
+ "ра ль",
+ "рал ь",
+ "р аль",
+ "▁h olds",
+ "▁hold s",
+ "▁hol ds",
+ "▁ holds",
+ "ло сь",
+ "▁n ad",
+ "▁na d",
+ "▁ nad",
+ "” .",
+ "▁oct ubre",
+ "bu l",
+ "b ul",
+ "▁h us",
+ "▁hu s",
+ "▁ hus",
+ "UL T",
+ "U LT",
+ "▁ég alement",
+ "▁M ill",
+ "▁Mil l",
+ "▁Mi ll",
+ "▁ Mill",
+ "ła d",
+ "ł ad",
+ "▁cont iene",
+ "\" ?",
+ "▁> >>",
+ "▁>> >",
+ "Qu e",
+ "Q ue",
+ " ",
+ "▁p lain",
+ "▁pl ain",
+ "▁pla in",
+ "▁ plain",
+ "at iva",
+ "ativ a",
+ "ati va",
+ "oc ker",
+ "ock er",
+ "o cker",
+ "Name s",
+ "Na mes",
+ "N ames",
+ "▁J ud",
+ "▁Ju d",
+ "▁ag ree",
+ "▁agre e",
+ "▁agr ee",
+ "▁G emeinde",
+ "▁Geme inde",
+ "la re",
+ "lar e",
+ "l are",
+ "ка за",
+ "каз а",
+ "▁st arts",
+ "▁start s",
+ "▁star ts",
+ "▁ starts",
+ "▁p rice",
+ "▁pr ice",
+ "▁pri ce",
+ "▁ price",
+ "T arget",
+ "cu s",
+ "c us",
+ "▁Inst ead",
+ ". ;",
+ "▁altern ative",
+ "▁alter native",
+ "▁в ла",
+ "I E",
+ "▁organ iz",
+ "in u",
+ "i nu",
+ "▁comp leted",
+ "▁comple ted",
+ "▁complet ed",
+ "▁complete d",
+ "▁car ry",
+ "at om",
+ "ato m",
+ "a tom",
+ "▁dep ending",
+ "▁depend ing",
+ "▁O ur",
+ "▁in sp",
+ "▁ins p",
+ "▁& \\",
+ "▁ &\\",
+ "ail y",
+ "ai ly",
+ "a ily",
+ "ir ection",
+ "ire ction",
+ "irect ion",
+ "ф а",
+ "▁d efe",
+ "▁de fe",
+ "▁def e",
+ "TA C",
+ "T AC",
+ "▁de signed",
+ "▁des igned",
+ "▁design ed",
+ "▁v oir",
+ "▁vo ir",
+ "▁ voir",
+ "bre ak",
+ "▁part ie",
+ "▁parti e",
+ "▁J ahren",
+ "▁Jah ren",
+ "▁Jahr en",
+ "▁Jahre n",
+ "▁Ja hren",
+ "▁st udio",
+ "▁stud io",
+ "▁studi o",
+ "▁ studio",
+ "▁j our",
+ "▁jo ur",
+ "▁jou r",
+ "▁N otes",
+ "▁No tes",
+ "▁Not es",
+ "▁Note s",
+ "fi re",
+ "fir e",
+ "f ire",
+ "ho use",
+ "hou se",
+ "h ouse",
+ "su ccess",
+ "▁J uan",
+ "▁Ju an",
+ "J S",
+ "▁C ustom",
+ "▁ Custom",
+ "▁b esch",
+ "▁be sch",
+ "▁bes ch",
+ "▁st ated",
+ "▁stat ed",
+ "▁state d",
+ "▁sta ted",
+ "boot strap",
+ "öt t",
+ "ö tt",
+ "oz zá",
+ "▁C ON",
+ "▁CO N",
+ "▁ CON",
+ "ha v",
+ "h av",
+ "▁s leep",
+ "▁sle ep",
+ "▁ sleep",
+ "ed a",
+ "e da",
+ "ho t",
+ "h ot",
+ "án d",
+ "á nd",
+ "▁S y",
+ "▁tem ps",
+ "▁temp s",
+ "▁ temps",
+ "am ar",
+ "ama r",
+ "a mar",
+ "▁s cal",
+ "▁sc al",
+ "▁ scal",
+ "▁a st",
+ "▁as t",
+ "▁ ast",
+ "▁op ening",
+ "▁open ing",
+ "cli pse",
+ "clip se",
+ "c lipse",
+ "▁program ming",
+ "▁ programming",
+ "▁let ters",
+ "▁letter s",
+ "▁lett ers",
+ "▁pro file",
+ "▁prof ile",
+ "▁profil e",
+ "▁ profile",
+ "na h",
+ "n ah",
+ "▁be yond",
+ "▁Fur ther",
+ "face s",
+ "fa ces",
+ "fac es",
+ "f aces",
+ "▁c hart",
+ "▁ch art",
+ "▁char t",
+ "▁cha rt",
+ "▁ chart",
+ "зд а",
+ "з да",
+ "ai gn",
+ "a ign",
+ "ні й",
+ "н ій",
+ "▁R ol",
+ "▁Ro l",
+ "ова но",
+ "ован о",
+ "ter ior",
+ "te rior",
+ "we d",
+ "w ed",
+ "▁her self",
+ "▁hers elf",
+ "▁n g",
+ "▁ ng",
+ "angu ages",
+ "anguage s",
+ "}= \\",
+ "} =\\",
+ "ynam ic",
+ "yna mic",
+ "▁j ug",
+ "▁ju g",
+ "▁Ex ample",
+ "▁ Example",
+ "▁( †",
+ "▁play ing",
+ "▁pla ying",
+ "▁us age",
+ "▁ usage",
+ "▁man aged",
+ "▁manage d",
+ "▁ managed",
+ "▁N atur",
+ "▁Nat ur",
+ "те ри",
+ "тер и",
+ "▁E t",
+ "er ia",
+ "eri a",
+ "e ria",
+ "▁daugh ter",
+ "ни ем",
+ "ние м",
+ "F ragment",
+ "▁h ol",
+ "▁ho l",
+ "▁ hol",
+ "F l",
+ "огра фи",
+ "ограф и",
+ "о графи",
+ "▁i hn",
+ "▁ih n",
+ "ü h",
+ "inst ance",
+ "▁com un",
+ "▁co mun",
+ "▁tr uth",
+ "▁са мо",
+ "▁сам о",
+ "▁implement ed",
+ "▁any way",
+ "▁C ro",
+ "▁Cr o",
+ "ф е",
+ "G C",
+ "ub untu",
+ "u buntu",
+ "ty pes",
+ "type s",
+ "typ es",
+ "t ypes",
+ "ê s",
+ ".~ \\",
+ ". ~\\",
+ "fo ld",
+ "fol d",
+ "f old",
+ "▁jo ined",
+ "▁join ed",
+ "? ?",
+ "▁m é",
+ "▁ mé",
+ "▁w ild",
+ "▁wil d",
+ "к лю",
+ "row ser",
+ "rows er",
+ "▁H ome",
+ "▁Ho me",
+ "▁Hom e",
+ "▁ Home",
+ "sk iej",
+ "ski ej",
+ "skie j",
+ "s kiej",
+ "▁J OIN",
+ "▁ju in",
+ "ho f",
+ "h of",
+ "▁data set",
+ "▁dat aset",
+ "▁datas et",
+ "▁ dataset",
+ "ж ду",
+ "') )",
+ "' ))",
+ "▁mie js",
+ "AP I",
+ "A PI",
+ "▁ed ited",
+ "▁edit ed",
+ "ool s",
+ "oo ls",
+ "o ols",
+ "▁se eing",
+ "▁see ing",
+ "ij d",
+ "i jd",
+ "▁pro cedure",
+ "▁proced ure",
+ "▁B ras",
+ "▁Br as",
+ "▁Bra s",
+ "▁s igned",
+ "▁sign ed",
+ "▁sig ned",
+ "▁ signed",
+ "▁extern os",
+ "▁dis app",
+ "▁D irect",
+ "▁Di rect",
+ "▁Dire ct",
+ "▁Dir ect",
+ "▁ Direct",
+ "cy c",
+ "c yc",
+ "▁cons ult",
+ "ör d",
+ "ö rd",
+ "W idget",
+ "ci ous",
+ "cio us",
+ "c ious",
+ "se ct",
+ "sec t",
+ "s ect",
+ "▁Д и",
+ "▁w ind",
+ "▁win d",
+ "▁ wind",
+ "▁Archiv ado",
+ "am l",
+ "a ml",
+ "с с",
+ "W h",
+ "kb d",
+ "k bd",
+ "▁Ar my",
+ "▁Arm y",
+ "▁s uffer",
+ "▁suf fer",
+ "▁suff er",
+ "art ifact",
+ "▁resol ve",
+ "▁ resolve",
+ "▁S port",
+ "▁Sp ort",
+ "▁Spo rt",
+ "▁ц е",
+ "▁ це",
+ "id as",
+ "ida s",
+ "i das",
+ "▁t ax",
+ "▁ta x",
+ "▁ tax",
+ "id i",
+ "i di",
+ "▁a ctions",
+ "▁act ions",
+ "▁action s",
+ "▁ actions",
+ "пр а",
+ "п ра",
+ "pu és",
+ "p ués",
+ "▁n aj",
+ "▁na j",
+ "F alse",
+ "▁ch ance",
+ "▁та ко",
+ "▁так о",
+ "ä d",
+ "▁d ol",
+ "▁do l",
+ "▁en v",
+ "▁ env",
+ "▁bas ically",
+ "▁basic ally",
+ "▁Coun cil",
+ "zt e",
+ "z te",
+ "▁display ed",
+ "ni l",
+ "n il",
+ "comp lete",
+ "comple te",
+ "▁L em",
+ "▁Le m",
+ "ian ce",
+ "i ance",
+ "▁ос нов",
+ "▁de pend",
+ "▁dep end",
+ "pl om",
+ "ens us",
+ "ut s",
+ "u ts",
+ "▁H ot",
+ "▁Ho t",
+ "▁ Hot",
+ "bit r",
+ "bi tr",
+ "▁valid ation",
+ "▁ validation",
+ "ab b",
+ "a bb",
+ "▁т ре",
+ "▁ тре",
+ "k m",
+ "z d",
+ "ö ff",
+ "W E",
+ "▁inter ested",
+ "▁interest ed",
+ "▁{ \"",
+ "▁ {\"",
+ "ar o",
+ "a ro",
+ "▁cor rel",
+ "▁corre l",
+ "▁corr el",
+ "▁d edic",
+ "▁de dic",
+ "▁ded ic",
+ "▁l ists",
+ "▁list s",
+ "▁ lists",
+ "▁Bibli ografia",
+ "▁ear lier",
+ "pr ogram",
+ "pro gram",
+ "prog ram",
+ "▁prem ière",
+ "▁premi ère",
+ "fr ont",
+ "f ront",
+ "T ab",
+ "ст ву",
+ "ств у",
+ "dr op",
+ "dro p",
+ "d rop",
+ "▁f ear",
+ "▁fe ar",
+ "▁En laces",
+ "▁C apt",
+ "▁Cap t",
+ "▁Ca pt",
+ "▁ Capt",
+ "▁real iz",
+ "▁h al",
+ "▁ha l",
+ "▁ hal",
+ "▁inst ances",
+ "▁instance s",
+ "▁su sp",
+ "▁sus p",
+ "il ling",
+ "ill ing",
+ "illi ng",
+ "% ;",
+ "{ }",
+ "| |",
+ "▁part ition",
+ "▁parti tion",
+ "▁ partition",
+ "▁Bu ild",
+ "▁ Build",
+ "▁w o",
+ "▁ wo",
+ "▁П ер",
+ "▁Пе р",
+ "▁direct or",
+ "▁dire ctor",
+ "▁dir ector",
+ "▁S in",
+ "▁Si n",
+ "ти я",
+ "rs g",
+ "r sg",
+ "ou ver",
+ "ouv er",
+ "ouve r",
+ "▁near ly",
+ "od a",
+ "o da",
+ "кти в",
+ "к тив",
+ "▁s ir",
+ "▁si r",
+ "IM E",
+ "I ME",
+ "▁jan vier",
+ "▁W in",
+ "▁Wi n",
+ "▁ Win",
+ "Bu ild",
+ "ie urs",
+ "ieu rs",
+ "ieur s",
+ "i eurs",
+ "IN E",
+ "I NE",
+ "d ouble",
+ "La st",
+ "L ast",
+ "▁pol icy",
+ "▁polic y",
+ "▁ policy",
+ "st ore",
+ "sto re",
+ "stor e",
+ "▁obser ved",
+ "▁observ ed",
+ "▁observe d",
+ "▁obs erved",
+ "▁famil ie",
+ "ni ca",
+ "nic a",
+ "n ica",
+ "re y",
+ "r ey",
+ "з ь",
+ "▁Y ear",
+ "▁Ye ar",
+ "▁ Year",
+ "▁develop ed",
+ "▁deve loped",
+ "▁Inst itute",
+ "▁Instit ute",
+ "▁Institut e",
+ "▁re ply",
+ "▁rep ly",
+ "Com ple",
+ "Comp le",
+ "ic ian",
+ "ici an",
+ "icia n",
+ "i cian",
+ "▁G uer",
+ "▁Gu er",
+ "▁d all",
+ "▁da ll",
+ "▁dal l",
+ "▁d esp",
+ "▁de sp",
+ "▁des p",
+ "▁Foot ball",
+ "Em pty",
+ "Emp ty",
+ "ck en",
+ "cke n",
+ "c ken",
+ "un da",
+ "und a",
+ "▁U r",
+ "▁i g",
+ "▁ ig",
+ "▁A tl",
+ "▁At l",
+ "aut hor",
+ "auth or",
+ "▁B ol",
+ "▁Bo l",
+ "zi g",
+ "z ig",
+ "na t",
+ "n at",
+ "š t",
+ "se curity",
+ "sec urity",
+ "on ic",
+ "oni c",
+ "o nic",
+ "▁p es",
+ "▁pe s",
+ "▁ pes",
+ "it an",
+ "ita n",
+ "i tan",
+ "▁Ex tern",
+ "▁Ext ern",
+ "ja n",
+ "j an",
+ "VA L",
+ "V AL",
+ "▁и м",
+ "▁ им",
+ "bo ld",
+ "bol d",
+ "b old",
+ "▁в а",
+ "▁ ва",
+ "▁М о",
+ "▁dis put",
+ "▁disp ut",
+ "▁t rick",
+ "▁tr ick",
+ "▁tri ck",
+ "▁p ed",
+ "▁pe d",
+ "▁ ped",
+ ")^ {",
+ ") ^{",
+ "in to",
+ "int o",
+ "Si m",
+ "S im",
+ "▁par allel",
+ "▁ parallel",
+ "fo x",
+ "f ox",
+ "norm al",
+ "nor mal",
+ "n ormal",
+ "in ent",
+ "ine nt",
+ "inen t",
+ "пе ди",
+ "п еди",
+ "ho ld",
+ "hol d",
+ "h old",
+ "O K",
+ "▁c hem",
+ "▁ch em",
+ "▁che m",
+ "▁ chem",
+ "▁tw ice",
+ "▁us ername",
+ "▁user name",
+ "▁ username",
+ "i č",
+ "▁re presentation",
+ "▁represent ation",
+ "▁repres entation",
+ "▁j ournal",
+ "▁jour nal",
+ "▁journ al",
+ "▁: -",
+ "▁ :-",
+ "▁b att",
+ "▁ba tt",
+ "▁bat t",
+ "\\ %",
+ "▁certain ly",
+ "▁Ex ception",
+ "▁ Exception",
+ "ep s",
+ "e ps",
+ "sh ot",
+ "s hot",
+ "at egy",
+ "ate gy",
+ "ateg y",
+ "Sh ow",
+ "S how",
+ "▁Car l",
+ "▁Ca rl",
+ "ri g",
+ "r ig",
+ "▁rep orted",
+ "▁report ed",
+ "bot tom",
+ "b ottom",
+ "T F",
+ "▁Francis co",
+ "na p",
+ "n ap",
+ "▁Champion ship",
+ "▁Champions hip",
+ "▁c ourt",
+ "▁co urt",
+ "▁cour t",
+ "▁cou rt",
+ "▁ court",
+ "▁s ources",
+ "▁source s",
+ "io ur",
+ "i our",
+ "▁con serv",
+ "▁cons erv",
+ "▁conse rv",
+ "▁conser v",
+ "di ct",
+ "dic t",
+ "d ict",
+ "▁Р у",
+ "I B",
+ "▁V e",
+ "▁ №",
+ "▁E R",
+ "▁ ER",
+ "\") );",
+ "\")) ;",
+ "\" ));",
+ "▁P oint",
+ "▁Po int",
+ "▁ Point",
+ "az ine",
+ "azi ne",
+ "▁inter net",
+ "▁intern et",
+ "д на",
+ "▁car ried",
+ "▁carri ed",
+ "▁F ield",
+ "▁ Field",
+ "ax is",
+ "axi s",
+ "a xis",
+ "▁S un",
+ "▁Su n",
+ "▁a ve",
+ "▁av e",
+ "▁ ave",
+ "пи с",
+ "п ис",
+ "я н",
+ "as y",
+ "▁ju lio",
+ "▁jul io",
+ "▁juli o",
+ "▁de puis",
+ "▁dep uis",
+ "▁sugg estion",
+ "▁suggest ion",
+ "[ [",
+ "▁Arch ive",
+ "▁Archiv e",
+ "ę p",
+ "▁P ra",
+ "▁Pr a",
+ "re h",
+ "r eh",
+ "▁demon str",
+ "ф і",
+ "cm d",
+ "c md",
+ "▁was n",
+ "▁wa sn",
+ "▁ph one",
+ "▁ phone",
+ "up load",
+ "ay a",
+ "a ya",
+ "то ра",
+ "тор а",
+ "li nes",
+ "line s",
+ "lin es",
+ "l ines",
+ "▁in du",
+ "▁ind u",
+ "▁ indu",
+ "▁v ot",
+ "▁vo t",
+ "▁es pa",
+ "▁esp a",
+ "▁b in",
+ "▁bi n",
+ "▁ bin",
+ "▁по сле",
+ "▁пос ле",
+ "pl an",
+ "pla n",
+ "p lan",
+ "▁ju nio",
+ "▁jun io",
+ "▁juni o",
+ "or ial",
+ "oria l",
+ "ori al",
+ "o rial",
+ "fr ee",
+ "fre e",
+ "f ree",
+ "ster reich",
+ "▁д у",
+ "▁ ду",
+ "▁link ed",
+ "▁lin ked",
+ "▁en able",
+ "▁ enable",
+ "P C",
+ "▁dens ity",
+ "▁E gy",
+ "▁Eg y",
+ "y o",
+ "end re",
+ "▁с ъ",
+ "▁ital iano",
+ "▁A R",
+ "▁ AR",
+ "▁P ers",
+ "▁Per s",
+ "▁Pe rs",
+ "▁ Pers",
+ "fér és",
+ "▁с кла",
+ "V ar",
+ "▁On ce",
+ "▁ Once",
+ "Re d",
+ "R ed",
+ "buf fer",
+ "buff er",
+ "b uffer",
+ "▁En ter",
+ "▁Ent er",
+ "▁ Enter",
+ "▁ Š",
+ "im iento",
+ "imi ento",
+ "St ore",
+ "Sto re",
+ "▁he alth",
+ "va t",
+ "v at",
+ "IS T",
+ "I ST",
+ "O h",
+ "▁k w",
+ "▁ kw",
+ "▁r iv",
+ "▁ri v",
+ "▁ riv",
+ "▁some where",
+ "ograf ie",
+ "ografi e",
+ "priv ate",
+ "p rivate",
+ "кт и",
+ "к ти",
+ "▁de lay",
+ "▁del ay",
+ "▁ delay",
+ "▁H ttp",
+ "▁ Http",
+ "jo b",
+ "j ob",
+ "ra el",
+ "r ael",
+ "em por",
+ "emp or",
+ "▁dici embre",
+ "▁dic iembre",
+ "êt e",
+ "ê te",
+ "ц у",
+ "▁com mit",
+ "▁comm it",
+ "▁ commit",
+ "os o",
+ "o so",
+ "Val ues",
+ "Value s",
+ "▁he aders",
+ "▁head ers",
+ "▁header s",
+ "▁ headers",
+ "trans form",
+ "▁process ing",
+ "▁proces sing",
+ "▁ processing",
+ "r å",
+ "▁A h",
+ "▁ Ah",
+ "▁N ode",
+ "▁No de",
+ "▁ Node",
+ "-- ----------",
+ "---- --------",
+ "-------- ----",
+ "------ ------",
+ "----- -------",
+ "------- -----",
+ "---------- --",
+ "▁f aire",
+ "▁fa ire",
+ "▁fair e",
+ "▁h un",
+ "▁hu n",
+ "Pl ayer",
+ "Play er",
+ "P layer",
+ "▁re view",
+ "▁rev iew",
+ "▁ review",
+ "г да",
+ "▁lim ited",
+ "▁limit ed",
+ "▁ limited",
+ "▁Pro perty",
+ "▁ Property",
+ "▁s erve",
+ "▁ser ve",
+ "▁serv e",
+ "▁ serve",
+ "ri age",
+ "ria ge",
+ "▁M aster",
+ "▁Ma ster",
+ "▁Mas ter",
+ "▁ Master",
+ "▁k ann",
+ "▁kan n",
+ "▁ka nn",
+ "cre te",
+ "cret e",
+ "cr ete",
+ "ph ere",
+ "pher e",
+ "phe re",
+ "p here",
+ "ё р",
+ "▁ch ief",
+ "▁chi ef",
+ "▁sc ene",
+ "▁scen e",
+ "▁ scene",
+ "ki n",
+ "k in",
+ "▁un iform",
+ "▁ uniform",
+ "▁feb rero",
+ "\" }",
+ "il lo",
+ "ill o",
+ "IT E",
+ "I TE",
+ "ou vel",
+ "ouv el",
+ "ouve l",
+ "use package",
+ "en th",
+ "ent h",
+ "e nth",
+ "▁quick ly",
+ "L ambda",
+ "xe s",
+ "x es",
+ "▁c ells",
+ "▁cell s",
+ "▁cel ls",
+ "ro g",
+ "r og",
+ "am in",
+ "ami n",
+ "a min",
+ "▁М ар",
+ "▁Ма р",
+ "▁may or",
+ "▁mayo r",
+ "pl ayer",
+ "play er",
+ "pla yer",
+ "p layer",
+ "++ ;",
+ "▁На се",
+ "▁sa fe",
+ "▁saf e",
+ "▁ safe",
+ "▁ve loc",
+ "▁vel oc",
+ "▁о бра",
+ "▁об ра",
+ "▁ обра",
+ "Data base",
+ "Dat abase",
+ "D atabase",
+ "ne h",
+ "n eh",
+ "Ver t",
+ "V ert",
+ "▁f le",
+ "▁fl e",
+ "▁ф ор",
+ "▁фо р",
+ "▁ фор",
+ "▁f oreign",
+ "▁for eign",
+ "▁fore ign",
+ "Ab stract",
+ "▁m agn",
+ "▁ma gn",
+ "▁mag n",
+ "▁mod ified",
+ "▁milit ary",
+ "▁militar y",
+ "▁m onde",
+ "▁mon de",
+ "▁mo nde",
+ "▁mond e",
+ "▁A ction",
+ "▁Act ion",
+ "▁Ac tion",
+ "▁ Action",
+ "▁b ank",
+ "▁ban k",
+ "▁ bank",
+ "Ser ial",
+ "Se rial",
+ "▁contin uous",
+ "▁continu ous",
+ "▁g el",
+ "▁ge l",
+ "▁ gel",
+ "▁phys ical",
+ "▁introdu ced",
+ "▁introduce d",
+ "ut ure",
+ "ri ck",
+ "ric k",
+ "r ick",
+ "▁present ed",
+ "▁pres ented",
+ "▁presente d",
+ "▁P rov",
+ "▁Pro v",
+ "▁Pr ov",
+ "▁B oth",
+ "▁Bo th",
+ "▁Bot h",
+ "Po s",
+ "P os",
+ "su per",
+ "sup er",
+ "s uper",
+ "& #",
+ "▁f inding",
+ "▁find ing",
+ "▁fin ding",
+ "ne l",
+ "n el",
+ "un de",
+ "und e",
+ "u nde",
+ "▁fr ån",
+ "sk im",
+ "ski m",
+ "s kim",
+ "▁H ill",
+ "▁Hi ll",
+ "▁Hil l",
+ "f n",
+ "▁Can ad",
+ "▁Ca nad",
+ "▁int ended",
+ "▁inten ded",
+ "▁intend ed",
+ "ozzá férés",
+ "▁ju illet",
+ "▁W ars",
+ "▁War s",
+ "▁Wa rs",
+ "▁success ful",
+ "▁ch arg",
+ "▁char g",
+ "▁cha rg",
+ "▁ charg",
+ "ie le",
+ "iel e",
+ "i ele",
+ "om ething",
+ "ome thing",
+ "omet hing",
+ "ok u",
+ "o ku",
+ "f etch",
+ "▁} }",
+ "▁ }}",
+ "ban k",
+ "b ank",
+ "operator name",
+ "▁Col or",
+ "▁Co lor",
+ "▁ Color",
+ "▁C ard",
+ "▁Car d",
+ "▁Ca rd",
+ "▁ Card",
+ "t u",
+ "▁\" ,",
+ "▁ \",",
+ "wi d",
+ "w id",
+ "▁g ep",
+ "▁ge p",
+ "X ML",
+ "======== ========",
+ "▁Vir gin",
+ "ähr end",
+ "äh rend",
+ "lic ated",
+ "licate d",
+ "lica ted",
+ "Di r",
+ "D ir",
+ "ze ro",
+ "zer o",
+ "z ero",
+ "▁K al",
+ "▁Ka l",
+ "▁Par ty",
+ "▁Part y",
+ "▁ å",
+ "pr ice",
+ "p rice",
+ "do n",
+ "d on",
+ "▁w arning",
+ "▁war ning",
+ "▁warn ing",
+ "▁ warning",
+ "▁B ad",
+ "▁Ba d",
+ "▁ Bad",
+ "▁S upp",
+ "▁Su pp",
+ "▁Sup p",
+ "▁ Supp",
+ "▁L iga",
+ "▁Li ga",
+ "▁Lig a",
+ "▁P ierre",
+ "▁Pier re",
+ "▁ Pierre",
+ "Re cord",
+ "Rec ord",
+ "ul ator",
+ "ula tor",
+ "▁R ome",
+ "▁Ro me",
+ "▁Rom e",
+ "▁the orem",
+ "▁ theorem",
+ "▁entire ly",
+ "ски м",
+ "ск им",
+ "с ким",
+ "he t",
+ "h et",
+ "▁d opo",
+ "▁do po",
+ "▁dop o",
+ "Ne xt",
+ "N ext",
+ "ml ung",
+ "m lung",
+ "wi g",
+ "w ig",
+ "▁A th",
+ "▁At h",
+ "▁S ou",
+ "▁So u",
+ "li cher",
+ "lic her",
+ "lich er",
+ "liche r",
+ "l icher",
+ "▁s udo",
+ "▁su do",
+ "▁sud o",
+ "▁ sudo",
+ "es ts",
+ "est s",
+ "хі в",
+ "х ів",
+ "▁sept iembre",
+ "▁m icro",
+ "▁mi cro",
+ "▁mic ro",
+ "▁t rop",
+ "▁tr op",
+ "▁tro p",
+ "fi t",
+ "f it",
+ "Co re",
+ "Cor e",
+ "C ore",
+ "▁Rad io",
+ "▁ Radio",
+ "▁Or gan",
+ "▁ Organ",
+ "▁P ower",
+ "▁Po wer",
+ "▁Pow er",
+ "▁ Power",
+ "C F",
+ "▁L ast",
+ "▁La st",
+ "▁Las t",
+ "▁ Last",
+ "▁op pos",
+ "▁opp os",
+ "▁off set",
+ "▁ offset",
+ "▁re gia",
+ "▁reg ia",
+ "▁min imum",
+ "▁minim um",
+ "▁hel ped",
+ "▁help ed",
+ "an don",
+ "and on",
+ "ando n",
+ "if ying",
+ "ify ing",
+ "ru it",
+ "r uit",
+ "ensch app",
+ "▁b ere",
+ "▁be re",
+ "▁ber e",
+ "▁ bere",
+ "V M",
+ "▁A wards",
+ "▁Award s",
+ "▁Aw ards",
+ "▁a gr",
+ "▁ag r",
+ "▁ agr",
+ "yn omial",
+ "en ced",
+ "ence d",
+ "enc ed",
+ "▁dev ices",
+ "▁device s",
+ "▁devi ces",
+ "▁b ot",
+ "▁bo t",
+ "▁ bot",
+ "▁f irm",
+ "▁fi rm",
+ "▁fir m",
+ "▁w riter",
+ "▁writ er",
+ "▁wr iter",
+ "▁write r",
+ "▁ writer",
+ "▁r ing",
+ "▁ri ng",
+ "▁rin g",
+ "▁ ring",
+ ". -",
+ "is tes",
+ "ist es",
+ "iste s",
+ "l ä",
+ "▁m el",
+ "▁me l",
+ "▁ mel",
+ "ent ation",
+ "enta tion",
+ "▁Sch w",
+ "▁Sc hw",
+ "▁n ome",
+ "▁no me",
+ "▁nom e",
+ "▁ nome",
+ "▁po bla",
+ "▁pob la",
+ "▁w oj",
+ "▁wo j",
+ "▁u l",
+ "▁ ul",
+ "en to",
+ "ent o",
+ "ы х",
+ "▁res ist",
+ "▁rem ains",
+ "▁remain s",
+ "▁C a",
+ "▁ Ca",
+ "añ a",
+ "a ña",
+ "▁C ourt",
+ "▁Co urt",
+ "▁Cour t",
+ "▁Cou rt",
+ "ut able",
+ "uta ble",
+ "u table",
+ "ential ly",
+ "enti ally",
+ "▁t rat",
+ "▁tr at",
+ "▁tra t",
+ "▁ trat",
+ "▁Vis ual",
+ "▁ Visual",
+ "▁rest rict",
+ "▁pre viously",
+ "▁previous ly",
+ "▁prev iously",
+ "ca tion",
+ "cat ion",
+ "c ation",
+ "▁о со",
+ "▁ос о",
+ "▁My SQL",
+ "f ör",
+ "cal a",
+ "ca la",
+ "c ala",
+ "▁c ulture",
+ "▁cult ure",
+ "li ve",
+ "liv e",
+ "l ive",
+ "▁accept ed",
+ "Di d",
+ "D id",
+ "▁h ous",
+ "▁ho us",
+ "▁se lection",
+ "▁select ion",
+ "▁sel ection",
+ "▁sele ction",
+ "▁ selection",
+ "▁de cre",
+ "▁dec re",
+ "mar gin",
+ "m argin",
+ "ur b",
+ "u rb",
+ "▁I nc",
+ "▁In c",
+ "▁M any",
+ "▁Man y",
+ "▁Ma ny",
+ "▁ Many",
+ "ib t",
+ "i bt",
+ "▁succ eed",
+ "▁suc ceed",
+ "Bind ing",
+ "B inding",
+ "c í",
+ "▁R og",
+ "▁Ro g",
+ "▁should n",
+ "cl oud",
+ "clo ud",
+ "clou d",
+ "▁d z",
+ "▁ dz",
+ "ва в",
+ "▁p ix",
+ "▁pi x",
+ "sm all",
+ "▁project s",
+ "▁ projects",
+ "▁O K",
+ "▁ OK",
+ "▁la test",
+ "▁lat est",
+ "▁late st",
+ "▁ latest",
+ "▁re ferences",
+ "▁refer ences",
+ "▁reference s",
+ "Pro gram",
+ "Pr ogram",
+ "▁er st",
+ "▁ers t",
+ "▁ erst",
+ "▁я к",
+ "▁k am",
+ "▁ka m",
+ "▁C amb",
+ "▁Cam b",
+ "▁Ca mb",
+ "el lt",
+ "ell t",
+ "ö d",
+ "no ne",
+ "non e",
+ "n one",
+ "▁j usqu",
+ "▁ju squ",
+ "ki ng",
+ "kin g",
+ "k ing",
+ "▁P ed",
+ "▁Pe d",
+ "as sert",
+ "ass ert",
+ "asse rt",
+ "asser t",
+ "C S",
+ "ri to",
+ "rit o",
+ "r ito",
+ "es sa",
+ "ess a",
+ "ль ко",
+ "▁V on",
+ "▁Vo n",
+ "▁Ed ward",
+ "▁im possible",
+ "▁impos sible",
+ "n p",
+ "word s",
+ "wor ds",
+ "w ords",
+ "ie lt",
+ "iel t",
+ "i elt",
+ "▁P age",
+ "▁Pa ge",
+ "▁ Page",
+ "le rs",
+ "ler s",
+ "l ers",
+ "▁p ier",
+ "▁pi er",
+ "▁pie r",
+ "▁обла сти",
+ "itt ee",
+ "itte e",
+ "▁( [",
+ "▁ ([",
+ "▁t rust",
+ "▁tr ust",
+ "N G",
+ "re du",
+ "red u",
+ "r edu",
+ "< <",
+ "ri al",
+ "ria l",
+ "r ial",
+ "▁product s",
+ "▁ products",
+ "▁E rn",
+ "▁Er n",
+ "ri ère",
+ "r ière",
+ "го в",
+ "г ов",
+ "▁Re ich",
+ "▁Ro ad",
+ "▁n ested",
+ "▁ne sted",
+ "▁nest ed",
+ "▁ nested",
+ "Dis play",
+ "▁str ength",
+ "ograf ía",
+ "▁ann ounced",
+ "▁announ ced",
+ "▁S cience",
+ "▁Sc ience",
+ "▁Sci ence",
+ "▁рай о",
+ "Param eter",
+ "▁T ask",
+ "▁Ta sk",
+ "▁Tas k",
+ "▁ Task",
+ "um ents",
+ "ument s",
+ "umen ts",
+ "u ments",
+ "▁ad opt",
+ "▁On ly",
+ "▁ Only",
+ "ют ь",
+ "ю ть",
+ "▁c li",
+ "▁cl i",
+ "▁ cli",
+ "▁l em",
+ "▁le m",
+ "▁ lem",
+ "st ood",
+ "sto od",
+ "▁F I",
+ "▁ FI",
+ "ên cias",
+ "ência s",
+ "pon ents",
+ "ponent s",
+ "] $",
+ "com ment",
+ "comm ent",
+ "▁y a",
+ "▁ ya",
+ "sh ould",
+ "ik e",
+ "i ke",
+ "ti m",
+ "t im",
+ "el lig",
+ "ell ig",
+ "elli g",
+ "▁s ending",
+ "▁send ing",
+ "▁sen ding",
+ "▁a jax",
+ "▁aj ax",
+ "▁ ajax",
+ "▁nov iembre",
+ "um es",
+ "ume s",
+ "u mes",
+ "▁we iter",
+ "▁weit er",
+ "▁D ans",
+ "▁Dan s",
+ "▁Da ns",
+ "op p",
+ "o pp",
+ "▁sept embre",
+ "▁sep tembre",
+ "ot imes",
+ "oti mes",
+ "o times",
+ "z ő",
+ "▁e p",
+ "▁ ep",
+ "ve re",
+ "ver e",
+ "v ere",
+ "▁o h",
+ "▁ oh",
+ ": =",
+ "▁S ong",
+ "▁So ng",
+ "▁Son g",
+ "” ,",
+ "▁v iv",
+ "▁vi v",
+ "▁ viv",
+ "▁qu eries",
+ "▁que ries",
+ "▁quer ies",
+ "▁v á",
+ "▁ vá",
+ "▁déc embre",
+ "▁un able",
+ "▁una ble",
+ "▁e rh",
+ "▁er h",
+ "▁` -",
+ "▁ `-",
+ "▁L ee",
+ "▁Le e",
+ "▁er sten",
+ "▁erst en",
+ "▁erste n",
+ "▁ers ten",
+ "ô t",
+ "ст ве",
+ "ств е",
+ "T S",
+ "▁f ragment",
+ "▁fra gment",
+ "▁frag ment",
+ "▁ fragment",
+ "▁w ide",
+ "▁wid e",
+ "▁ wide",
+ "▁s uff",
+ "▁su ff",
+ "▁suf f",
+ "▁d ut",
+ "▁du t",
+ "▁V ere",
+ "▁Ver e",
+ "▁Ve re",
+ "і с",
+ "ad ing",
+ "adi ng",
+ "adin g",
+ "a ding",
+ "ie go",
+ "ieg o",
+ "i ego",
+ "ic ago",
+ "ica go",
+ "▁Ar gent",
+ "▁Arg ent",
+ "or er",
+ "ore r",
+ "o rer",
+ "en nes",
+ "enn es",
+ "enne s",
+ "▁L eb",
+ "▁Le b",
+ "lin ux",
+ "ac ing",
+ "aci ng",
+ "a cing",
+ "▁br oken",
+ "▁bro ken",
+ "▁broke n",
+ "t p",
+ "í o",
+ "ab eth",
+ "abe th",
+ "abet h",
+ "ist as",
+ "ista s",
+ "ge w",
+ "g ew",
+ "i ème",
+ "ca s",
+ "c as",
+ "▁pre ced",
+ "▁prec ed",
+ "▁D al",
+ "▁Da l",
+ "▁comp ared",
+ "▁compar ed",
+ "▁compare d",
+ "equ iv",
+ "il ly",
+ "ill y",
+ "te en",
+ "t een",
+ "▁Con sole",
+ "▁Cons ole",
+ "▁ Console",
+ "▁st rict",
+ "▁str ict",
+ "▁stri ct",
+ "it aire",
+ "ita ire",
+ "i taire",
+ "▁E D",
+ "▁ ED",
+ "ential s",
+ "enti als",
+ "▁p erman",
+ "▁per man",
+ "▁perm an",
+ "▁t ous",
+ "▁to us",
+ "▁tou s",
+ "▁g eme",
+ "▁ge me",
+ "▁gem e",
+ "▁ geme",
+ "▁ext rem",
+ "▁extr em",
+ "▁ок ру",
+ "k g",
+ "▁he avy",
+ "▁heav y",
+ "▁av ril",
+ "▁an ti",
+ "▁ant i",
+ "▁ anti",
+ "▁oct obre",
+ "ut f",
+ "u tf",
+ "he lm",
+ "hel m",
+ "h elm",
+ "am ples",
+ "ample s",
+ "amp les",
+ "▁( _",
+ "▁ (_",
+ "ak en",
+ "ake n",
+ "a ken",
+ "▁d ear",
+ "▁de ar",
+ "▁opin ion",
+ "▁f ish",
+ "▁fi sh",
+ "▁fis h",
+ "▁ fish",
+ "▁Alex ander",
+ "▁Alexand er",
+ "i w",
+ "и м",
+ "ca dem",
+ "cade m",
+ "c adem",
+ "▁ref lect",
+ "▁ reflect",
+ "▁д р",
+ "▁t rib",
+ "▁tr ib",
+ "▁tri b",
+ "com mon",
+ "comm on",
+ "▁clear ly",
+ "▁s af",
+ "▁sa f",
+ "=\"@ +",
+ "▁М ос",
+ "▁Мо с",
+ "си те",
+ "eqn array",
+ "nu ng",
+ "n ung",
+ "▁relations hip",
+ "▁relation ship",
+ "▁S em",
+ "▁Se m",
+ "▁ Sem",
+ "▁k illed",
+ "▁kil led",
+ "▁kill ed",
+ "te d",
+ "t ed",
+ "un o",
+ "u no",
+ "▁ лі",
+ "▁w id",
+ "▁ wid",
+ "an ning",
+ "ann ing",
+ "anni ng",
+ "▁p anel",
+ "▁pa nel",
+ "▁pan el",
+ "▁ panel",
+ "▁L eben",
+ "▁Le ben",
+ "▁Leb en",
+ "▁r uby",
+ "▁ru by",
+ "▁rub y",
+ "▁ ruby",
+ "ans ion",
+ "▁a ren",
+ "▁are n",
+ "▁ar en",
+ "▁ aren",
+ "tab ular",
+ "al et",
+ "ale t",
+ "a let",
+ "}$ $",
+ "} $$",
+ "▁L ake",
+ "▁La ke",
+ "▁Lak e",
+ "▁su ite",
+ "▁suit e",
+ "▁ suite",
+ "▁min or",
+ "▁mi nor",
+ "H ozzáférés",
+ "▁xml ns",
+ "▁ xmlns",
+ "DI R",
+ "D IR",
+ "dr iver",
+ "drive r",
+ "dri ver",
+ "d river",
+ "in ts",
+ "int s",
+ "▁v ic",
+ "▁vi c",
+ "▁ vic",
+ "AN D",
+ "A ND",
+ "pr im",
+ "p rim",
+ "сы лки",
+ "▁O x",
+ "T C",
+ "riv ial",
+ "at ie",
+ "ati e",
+ "▁e ight",
+ "▁eig ht",
+ "▁eigh t",
+ "▁conf lic",
+ "▁confl ic",
+ "an gel",
+ "ang el",
+ "ange l",
+ "▁B egr",
+ "▁Be gr",
+ "▁Beg r",
+ "▁explicit ly",
+ "ют ся",
+ "ю тся",
+ "▁D ev",
+ "▁De v",
+ "▁ Dev",
+ "re nder",
+ "ren der",
+ "rend er",
+ "r ender",
+ "▁re produ",
+ "▁rep rodu",
+ "▁repr odu",
+ "▁repro du",
+ "▁c ré",
+ "▁cr é",
+ "G u",
+ "M B",
+ "▁k ön",
+ "▁kö n",
+ "▁rem ained",
+ "▁remain ed",
+ "▁k l",
+ "▁ kl",
+ "хо в",
+ "х ов",
+ "▁b yl",
+ "▁by l",
+ "Ph i",
+ "P hi",
+ "▁de tail",
+ "▁det ail",
+ "▁ detail",
+ "ja v",
+ "j av",
+ "▁m ouse",
+ "▁mo use",
+ "▁mou se",
+ "▁ mouse",
+ "B as",
+ "i ę",
+ "as ser",
+ "ass er",
+ "asse r",
+ "h s",
+ "▁sh ift",
+ "▁ shift",
+ "▁ú lt",
+ "▁ últ",
+ "ra nd",
+ "ran d",
+ "r and",
+ "▁b tn",
+ "▁ btn",
+ "ra z",
+ "r az",
+ "▁p ul",
+ "▁pu l",
+ "▁stat ements",
+ "▁state ments",
+ "▁statement s",
+ "file name",
+ "fil ename",
+ "▁prom pt",
+ "él é",
+ "é lé",
+ "ik z",
+ "▁S us",
+ "▁Su s",
+ "▁de but",
+ "▁deb ut",
+ "St at",
+ "S tat",
+ "form s",
+ "for ms",
+ "▁H ein",
+ "▁He in",
+ "st adt",
+ "sta dt",
+ "stad t",
+ "en nis",
+ "enn is",
+ "по л",
+ "ar ante",
+ "aran te",
+ "ці й",
+ "ц ій",
+ "▁que ue",
+ "▁ queue",
+ "▁re ci",
+ "▁rec i",
+ "▁ reci",
+ "▁s ta",
+ "▁st a",
+ "▁ sta",
+ "yn chron",
+ "cent ering",
+ "center ing",
+ "cente ring",
+ "So me",
+ "S ome",
+ "Gr aph",
+ "G raph",
+ "▁t ested",
+ "▁te sted",
+ "▁test ed",
+ "▁K unst",
+ "▁Kun st",
+ "о м",
+ "▁N othing",
+ "▁No thing",
+ "▁Not hing",
+ "▁ Nothing",
+ "ie u",
+ "i eu",
+ "“ .",
+ "B undle",
+ "▁of icial",
+ "▁ofic ial",
+ "al low",
+ "all ow",
+ "allo w",
+ "▁Re act",
+ "▁L ibrary",
+ "▁Li brary",
+ "▁ Library",
+ "bl ue",
+ "▁ver w",
+ "▁ve rw",
+ "▁p are",
+ "▁par e",
+ "▁pa re",
+ "▁Fried rich",
+ "▁a ware",
+ "▁aw are",
+ "▁ aware",
+ "Ex p",
+ "E xp",
+ "▁effect s",
+ "▁го ро",
+ "▁гор о",
+ "lop edia",
+ "loped ia",
+ "▁V en",
+ "▁Ve n",
+ "ra le",
+ "ral e",
+ "r ale",
+ "▁F inal",
+ "▁Fin al",
+ "▁ Final",
+ "▁pro pos",
+ "▁prop os",
+ "la cement",
+ "lace ment",
+ "lac ement",
+ "kt en",
+ "kte n",
+ "k ten",
+ "▁no vel",
+ "▁nov el",
+ "or ter",
+ "ort er",
+ "orte r",
+ "▁German y",
+ "▁Ger many",
+ "▁Germ any",
+ "▁d jango",
+ "▁ django",
+ "▁trans ition",
+ "▁ transition",
+ "▁happ ened",
+ "▁happen ed",
+ "▁beaut iful",
+ "▁ne ither",
+ "▁nei ther",
+ "▁li braries",
+ "▁h ide",
+ "▁hi de",
+ "▁hid e",
+ "▁ hide",
+ "al g",
+ "a lg",
+ "▁a spect",
+ "▁as pect",
+ "▁asp ect",
+ "▁for get",
+ "▁forg et",
+ "cade my",
+ "cadem y",
+ "on te",
+ "ont e",
+ "re fix",
+ "ref ix",
+ "▁cl oud",
+ "▁clo ud",
+ "▁ cloud",
+ "ne d",
+ "n ed",
+ "cd ots",
+ "cdot s",
+ "c dots",
+ "reg ister",
+ "ny m",
+ "n ym",
+ ".) :",
+ ". ):",
+ "▁J ew",
+ "▁Je w",
+ "▁t rès",
+ "▁tr ès",
+ "ни че",
+ "▁D or",
+ "▁Do r",
+ "▁p roc",
+ "▁pro c",
+ "▁pr oc",
+ "▁ proc",
+ "▁g an",
+ "▁ga n",
+ "▁ gan",
+ "▁ є",
+ "▁S av",
+ "▁Sa v",
+ "v í",
+ "Setting s",
+ "S ettings",
+ "▁V ari",
+ "▁Var i",
+ "▁Va ri",
+ "▁ Vari",
+ "▁c ours",
+ "▁co urs",
+ "▁cour s",
+ "▁cou rs",
+ "R o",
+ "▁con j",
+ "▁re asons",
+ "▁reason s",
+ "▁re ader",
+ "▁read er",
+ "▁ reader",
+ "лекс анд",
+ "ic ate",
+ "ica te",
+ "}) ,",
+ "} ),",
+ "▁task s",
+ "▁ tasks",
+ "▁R ay",
+ "▁Ra y",
+ "▁r ic",
+ "▁ri c",
+ "▁ ric",
+ "K e",
+ "on ie",
+ "oni e",
+ "o nie",
+ "r f",
+ ") [",
+ "▁sub sequ",
+ "▁subs equ",
+ "▁T urn",
+ "▁Tur n",
+ "▁Tu rn",
+ "▁ Turn",
+ "▁VI AF",
+ "math sf",
+ "H E",
+ "▁dec lare",
+ "▁decl are",
+ "▁decla re",
+ "▁declar e",
+ "▁pro tocol",
+ "▁proto col",
+ "▁ protocol",
+ "▁P C",
+ "▁ PC",
+ "ци он",
+ "View ById",
+ "▁an imation",
+ "▁anim ation",
+ "▁ animation",
+ "▁conf used",
+ "ви ч",
+ "▁en abled",
+ "▁enable d",
+ "▁ enabled",
+ "ow o",
+ "o wo",
+ "ás t",
+ "á st",
+ "ö t",
+ "▁m and",
+ "▁ma nd",
+ "▁man d",
+ "▁R ail",
+ "▁Ra il",
+ "field s",
+ "▁K ap",
+ "▁Ka p",
+ "▁al gebra",
+ "▁ algebra",
+ "▁С у",
+ "fér ence",
+ "▁C urrent",
+ "▁Cur rent",
+ "▁ Current",
+ "с но",
+ "▁L im",
+ "▁Li m",
+ "Par ams",
+ "Param s",
+ "Pa rams",
+ "▁Ant onio",
+ "▁Anton io",
+ "▁Anto nio",
+ "▁t v",
+ "▁ tv",
+ "la te",
+ "lat e",
+ "l ate",
+ "if er",
+ "ife r",
+ "i fer",
+ "En try",
+ "Ent ry",
+ "▁S erv",
+ "▁Se rv",
+ "▁Ser v",
+ "▁ Serv",
+ "▁mus ical",
+ "▁music al",
+ "▁musica l",
+ "▁t race",
+ "▁tr ace",
+ "▁tra ce",
+ "▁trac e",
+ "▁ trace",
+ "▁s cient",
+ "▁sc ient",
+ "▁sci ent",
+ "fi c",
+ "f ic",
+ "▁for got",
+ "▁forg ot",
+ "v ideo",
+ "▁o lder",
+ "▁old er",
+ "▁ol der",
+ "▁ older",
+ "Tr ee",
+ "T ree",
+ "▁u ns",
+ "▁un s",
+ "▁ uns",
+ "ни ки",
+ "ник и",
+ "▁E uropa",
+ "▁Europ a",
+ "▁Euro pa",
+ "▁Z we",
+ "▁Zw e",
+ "▁б е",
+ "▁ бе",
+ "▁v ec",
+ "▁ve c",
+ "▁ vec",
+ "ж у",
+ "Mat ch",
+ "M atch",
+ "sp an",
+ "s pan",
+ "▁bl ank",
+ "▁blan k",
+ "▁ blank",
+ "▁sp äter",
+ "▁T y",
+ "▁ Ty",
+ "▁d ict",
+ "▁di ct",
+ "▁dic t",
+ "▁ dict",
+ "ñ a",
+ "▁conf irm",
+ "▁confir m",
+ "▁ confirm",
+ "▁v ý",
+ "за н",
+ "з ан",
+ "Re l",
+ "R el",
+ "fil m",
+ "fi lm",
+ "▁R ot",
+ "▁Ro t",
+ "▁ Rot",
+ "▁H y",
+ "▁ Hy",
+ "ка х",
+ "▁dem and",
+ "▁min ist",
+ "▁mini st",
+ "▁Mad rid",
+ "▁us ual",
+ "sp iel",
+ "s piel",
+ "er os",
+ "ero s",
+ "e ros",
+ "▁t utorial",
+ "▁tut orial",
+ "▁ tutorial",
+ "▁С сылки",
+ "s ys",
+ "ци аль",
+ "▁sp read",
+ "▁spr ead",
+ "▁spre ad",
+ "▁con vers",
+ "▁conver s",
+ "▁conv ers",
+ "▁r oll",
+ "▁ro ll",
+ "▁rol l",
+ "▁ roll",
+ "artifact Id",
+ "▁N umber",
+ "▁Num ber",
+ "▁ Number",
+ "▁sym met",
+ "▁M ult",
+ "▁Mu lt",
+ "▁Mul t",
+ "▁ Mult",
+ "ex pected",
+ "exp ected",
+ "expect ed",
+ "▁a xis",
+ "▁ax is",
+ "▁ axis",
+ "▁match ing",
+ "▁f ood",
+ "▁fo od",
+ "▁foo d",
+ "group Id",
+ "Map p",
+ "Ma pp",
+ "M app",
+ "▁с вя",
+ "▁v end",
+ "▁ve nd",
+ "▁ven d",
+ "F ound",
+ "ot to",
+ "ott o",
+ "o tto",
+ "Ca t",
+ "C at",
+ "cri t",
+ "cr it",
+ "c rit",
+ "ist ent",
+ "iste nt",
+ "isten t",
+ "▁d rei",
+ "▁dr ei",
+ "▁dre i",
+ "▁en ded",
+ "▁end ed",
+ "▁ende d",
+ "▁ ended",
+ "▁T ele",
+ "▁Te le",
+ "▁Tel e",
+ "com ponent",
+ "▁invol ved",
+ "▁involve d",
+ "▁Est ados",
+ "▁Estado s",
+ "▁Estad os",
+ "▁d anger",
+ "▁dan ger",
+ "▁ch ain",
+ "▁cha in",
+ "▁ chain",
+ "▁P rom",
+ "▁Pro m",
+ "▁Pr om",
+ "▁ Prom",
+ "ho m",
+ "h om",
+ "▁pol ít",
+ "co p",
+ "c op",
+ "▁n ap",
+ "▁na p",
+ "▁ nap",
+ "ri f",
+ "r if",
+ "ple ments",
+ "pl ements",
+ "plement s",
+ "▁v ent",
+ "▁ve nt",
+ "▁ven t",
+ "▁ vent",
+ "an na",
+ "ann a",
+ "an ted",
+ "ant ed",
+ "ante d",
+ "date d",
+ "da ted",
+ "dat ed",
+ "d ated",
+ "an th",
+ "ant h",
+ "a nth",
+ "▁thread s",
+ "▁thre ads",
+ "▁ threads",
+ "зо ва",
+ "зов а",
+ "з ова",
+ "▁ста нов",
+ "▁стан ов",
+ "▁ станов",
+ "▁e erst",
+ "▁eer st",
+ "bu f",
+ "b uf",
+ "he id",
+ "▁R u",
+ "▁P rim",
+ "▁Pr im",
+ "▁Pri m",
+ "▁ Prim",
+ "▁m igr",
+ "▁mi gr",
+ "▁mig r",
+ "▁ migr",
+ "▁Un idos",
+ "▁ar bitr",
+ "▁r oman",
+ "▁ro man",
+ "▁rom an",
+ "ount ry",
+ "oun try",
+ "ult ur",
+ "▁K önig",
+ "▁Kö nig",
+ "▁an not",
+ "▁ann ot",
+ "▁anno t",
+ "▁ annot",
+ "ach ing",
+ "ac hing",
+ "achi ng",
+ "▁H aupt",
+ "▁Ha upt",
+ "um in",
+ "umi n",
+ "u min",
+ "▁h em",
+ "▁he m",
+ "▁ hem",
+ "ck ets",
+ "cket s",
+ "cke ts",
+ "ba u",
+ "b au",
+ "ect ion",
+ "ec tion",
+ "e ction",
+ "ef t",
+ "e ft",
+ "▁package s",
+ "▁pack ages",
+ "▁ packages",
+ "▁K ur",
+ "▁Ku r",
+ "th ur",
+ "▁p ays",
+ "▁pa ys",
+ "▁pay s",
+ "li ament",
+ "lia ment",
+ "▁Б у",
+ "▁c ada",
+ "▁ca da",
+ "▁cad a",
+ "po ints",
+ "point s",
+ "oc ket",
+ "ock et",
+ "o cket",
+ "▁v erb",
+ "▁ver b",
+ "▁ve rb",
+ "▁ verb",
+ "ле е",
+ "▁sub mit",
+ "▁subm it",
+ "▁ submit",
+ "▁s an",
+ "▁sa n",
+ "▁ san",
+ "ru by",
+ "r uby",
+ "▁e ast",
+ "▁eas t",
+ "▁ east",
+ "ko v",
+ "k ov",
+ "▁Ver lag",
+ "▁Verl ag",
+ "▁ Verlag",
+ "▁s pot",
+ "▁sp ot",
+ "▁spo t",
+ "▁ spot",
+ "pp o",
+ "p po",
+ "E ach",
+ "je kt",
+ "▁Bi ographie",
+ "▁ne ws",
+ "▁new s",
+ "▁ news",
+ "▁pa ís",
+ "uf act",
+ "u fact",
+ "▁d ia",
+ "▁di a",
+ "▁ dia",
+ "ко ва",
+ "ков а",
+ "к ова",
+ "▁accom pl",
+ "▁accomp l",
+ "▁É t",
+ "▁ Ét",
+ "il ities",
+ "ili ties",
+ "▁i hm",
+ "▁ih m",
+ "in voke",
+ "inv oke",
+ "▁app end",
+ "▁ap pend",
+ "▁appe nd",
+ "▁ append",
+ ".) ,",
+ ". ),",
+ "▁l ab",
+ "▁la b",
+ "▁ lab",
+ "an ging",
+ "ang ing",
+ "is tan",
+ "ist an",
+ "ista n",
+ "i stan",
+ "re sol",
+ "res ol",
+ "reso l",
+ "▁S ection",
+ "▁Se ction",
+ "▁Sec tion",
+ "▁ Section",
+ "Par ent",
+ "Pa rent",
+ "mo z",
+ "m oz",
+ "Ma t",
+ "M at",
+ "st yles",
+ "style s",
+ "sty les",
+ "un den",
+ "und en",
+ "unde n",
+ "“ ,",
+ "irt schaft",
+ "ки м",
+ "к им",
+ "▁Fin ally",
+ "▁Final ly",
+ "ph en",
+ "phe n",
+ "p hen",
+ "▁P ac",
+ "▁Pa c",
+ "▁Array List",
+ "▁ ArrayList",
+ "▁re cover",
+ "▁rec over",
+ "▁e ducation",
+ "▁educ ation",
+ "mod els",
+ "model s",
+ "mode ls",
+ "pe d",
+ "p ed",
+ "▁h appy",
+ "▁ha ppy",
+ "▁happ y",
+ "ч у",
+ "▁guer ra",
+ "me dia",
+ "med ia",
+ "medi a",
+ "m edia",
+ "O F",
+ "▁ens ure",
+ "▁ ensure",
+ "Mar k",
+ "M ark",
+ "data base",
+ "dat abase",
+ "datab ase",
+ "d atabase",
+ "og gle",
+ "▁pub lish",
+ "▁publi sh",
+ "▁ publish",
+ "O W",
+ "▁B au",
+ "▁Ba u",
+ "? .",
+ "▁ча сти",
+ "▁час ти",
+ "▁част и",
+ "▁re pository",
+ "▁repos itory",
+ "▁ repository",
+ "▁M att",
+ "▁Ma tt",
+ "▁Mat t",
+ "hi gh",
+ "h igh",
+ "ov en",
+ "ove n",
+ "o ven",
+ "▁g er",
+ "▁ge r",
+ "▁ ger",
+ "▁un known",
+ "▁ unknown",
+ "Am er",
+ "A mer",
+ "▁B rown",
+ "▁Br own",
+ "▁Bro wn",
+ "▁Brow n",
+ "AL L",
+ "A LL",
+ "▁result ing",
+ "▁b or",
+ "▁bo r",
+ "▁ bor",
+ "▁po et",
+ "ни ми",
+ "ним и",
+ "Em ail",
+ "E mail",
+ "F ont",
+ "▁h ist",
+ "▁his t",
+ "▁hi st",
+ "▁to day",
+ "▁tod ay",
+ "▁toda y",
+ "▁ today",
+ "▁B erg",
+ "▁Be rg",
+ "▁Ber g",
+ "▁but tons",
+ "▁button s",
+ "та л",
+ "т ал",
+ "▁s ni",
+ "▁sn i",
+ "▁че лов",
+ "Cr e",
+ "C re",
+ "▁un ion",
+ "▁ union",
+ "▁z ich",
+ "ish op",
+ "i shop",
+ "▁qu ando",
+ "▁quand o",
+ "▁quan do",
+ "P o",
+ "CT ION",
+ "▁C ost",
+ "▁Co st",
+ "▁Cos t",
+ "▁ Cost",
+ "су дар",
+ "er ved",
+ "erv ed",
+ "erve d",
+ "Not e",
+ "No te",
+ "N ote",
+ "Equ al",
+ "Eq ual",
+ "E qual",
+ "ли я",
+ "бу р",
+ "б ур",
+ "▁ab stract",
+ "▁abstra ct",
+ "▁ abstract",
+ "st op",
+ "sto p",
+ "s top",
+ "▁ad vice",
+ "▁adv ice",
+ "▁i con",
+ "▁ic on",
+ "▁ icon",
+ "▁tr avel",
+ "▁tra vel",
+ "▁trav el",
+ "B S",
+ "ve ns",
+ "ven s",
+ "v ens",
+ "▁b atch",
+ "▁bat ch",
+ "▁ batch",
+ "li que",
+ "liqu e",
+ "l ique",
+ "she et",
+ "s heet",
+ "▁i hre",
+ "▁ih re",
+ "▁ihr e",
+ "em on",
+ "emo n",
+ "e mon",
+ "ber to",
+ "bert o",
+ "▁as signed",
+ "▁ass igned",
+ "▁assign ed",
+ "ь ю",
+ "Ph one",
+ "▁a ward",
+ "▁aw ard",
+ "▁function ality",
+ "▁functional ity",
+ "al la",
+ "all a",
+ "a lla",
+ "▁D am",
+ "▁Da m",
+ "▁ci udad",
+ "▁cl uster",
+ "▁clust er",
+ "▁ cluster",
+ "De scription",
+ "Des cription",
+ "▁s heet",
+ "▁she et",
+ "▁ sheet",
+ "▁Austral ian",
+ "▁Australia n",
+ "▁» .",
+ "▁ ».",
+ "▁\" <",
+ "▁wonder ing",
+ "ain e",
+ "ai ne",
+ "a ine",
+ "▁represent ed",
+ "▁repres ented",
+ "ka ppa",
+ "kap pa",
+ "k appa",
+ "n b",
+ "▁s y",
+ "▁K ö",
+ "=\" #",
+ "▁s even",
+ "▁se ven",
+ "Direct ory",
+ "D irectory",
+ "▁s ister",
+ "▁si ster",
+ "▁sist er",
+ "pl ates",
+ "plate s",
+ "pla tes",
+ "▁l uck",
+ "▁lu ck",
+ "▁luc k",
+ "▁rem aining",
+ "▁remain ing",
+ "▁V ill",
+ "▁Vi ll",
+ "▁Vil l",
+ "wer k",
+ "w erk",
+ "an ni",
+ "ann i",
+ "et ti",
+ "ett i",
+ "fun c",
+ "fu nc",
+ "f unc",
+ "▁b an",
+ "▁ba n",
+ "▁ ban",
+ "im s",
+ "i ms",
+ "mi ss",
+ "mis s",
+ "m iss",
+ "ag raph",
+ "agr aph",
+ "a graph",
+ "ек си",
+ "е кси",
+ "▁R ef",
+ "▁Re f",
+ "▁ Ref",
+ "ni tt",
+ "nit t",
+ "n itt",
+ "▁G ab",
+ "▁Ga b",
+ "▁and ere",
+ "▁jed och",
+ "result s",
+ "! \\",
+ "▁l isted",
+ "▁li sted",
+ "▁list ed",
+ "▁liste d",
+ "▁l oro",
+ "▁lo ro",
+ "▁kn ows",
+ "▁know s",
+ "ж но",
+ "R ad",
+ "▁s ocket",
+ "▁so cket",
+ "▁soc ket",
+ "▁ socket",
+ "mult i",
+ "mul ti",
+ "▁р і",
+ "▁ рі",
+ "ra ils",
+ "rai ls",
+ "r ails",
+ "▁t ar",
+ "▁ta r",
+ "▁ tar",
+ "▁gent le",
+ "se tt",
+ "set t",
+ "s ett",
+ "serv ices",
+ "service s",
+ "bo und",
+ "b ound",
+ "ig keit",
+ "aj a",
+ "a ja",
+ "▁c md",
+ "▁cm d",
+ "▁ cmd",
+ "ag ger",
+ "agg er",
+ "▁b a",
+ "▁ ba",
+ "▁Be lg",
+ "▁Bel g",
+ "▁K le",
+ "▁Kl e",
+ "▁word t",
+ "▁wor dt",
+ "▁f ost",
+ "▁fo st",
+ "▁fos t",
+ "▁dim ension",
+ "An g",
+ "A ng",
+ "um ing",
+ "umin g",
+ "umi ng",
+ "u ming",
+ "Ob j",
+ "не н",
+ "н ен",
+ "▁M arie",
+ "▁Mar ie",
+ "▁Ma rie",
+ "▁Mari e",
+ "▁ Marie",
+ "ex ists",
+ "exist s",
+ "т ро",
+ "▁бо ль",
+ "▁ боль",
+ "em ente",
+ "ement e",
+ "emen te",
+ "e mente",
+ "▁J on",
+ "▁Jo n",
+ "SE RT",
+ "SER T",
+ "S ERT",
+ "▁high est",
+ "ak i",
+ "a ki",
+ "▁t res",
+ "▁tr es",
+ "▁tre s",
+ "▁ tres",
+ "▁circ um",
+ "▁D own",
+ "▁Do wn",
+ "▁Dow n",
+ "▁ Down",
+ "om men",
+ "omm en",
+ "ur er",
+ "ure r",
+ "u rer",
+ "▁caus es",
+ "▁cause s",
+ "▁ca uses",
+ "ven ue",
+ "iss ance",
+ "▁influ ence",
+ "▁influen ce",
+ "▁f at",
+ "▁fa t",
+ "ре ди",
+ "ред и",
+ "р еди",
+ "}\\ \\",
+ "} \\\\",
+ "▁en tr",
+ "▁ent r",
+ "▁ entr",
+ "▁S ign",
+ "▁Si gn",
+ "▁Sig n",
+ "▁ Sign",
+ "▁к ла",
+ "▁ кла",
+ "▁b inding",
+ "▁bind ing",
+ "▁bin ding",
+ "▁ binding",
+ "es sen",
+ "ess en",
+ "esse n",
+ "▁Ф ран",
+ "▁L ocal",
+ "▁Lo cal",
+ "▁Loc al",
+ "▁ Local",
+ "▁я вля",
+ "ap pro",
+ "app ro",
+ "▁dep endencies",
+ "▁depend encies",
+ "▁ dependencies",
+ "▁talk ing",
+ "▁tal king",
+ "▁zur ück",
+ "con nection",
+ "connect ion",
+ "conne ction",
+ "conn ection",
+ "Act ive",
+ "Activ e",
+ "bb e",
+ "b be",
+ "ir ls",
+ "irl s",
+ "▁In f",
+ "▁ Inf",
+ "w d",
+ "▁и с",
+ "▁ ис",
+ "ro ad",
+ "▁con ven",
+ "▁conv en",
+ "ě t",
+ "ве з",
+ "в ез",
+ "▁ent ries",
+ "▁entr ies",
+ "▁ entries",
+ "es c",
+ "e sc",
+ "▁b its",
+ "▁bit s",
+ "▁bi ts",
+ "▁ bits",
+ "as so",
+ "ass o",
+ "W R",
+ "sh ips",
+ "ship s",
+ "s hips",
+ "▁d és",
+ "▁dé s",
+ "es p",
+ "e sp",
+ "Ma ke",
+ "M ake",
+ "▁famil iar",
+ "▁familia r",
+ "Ar t",
+ "A rt",
+ "▁ar my",
+ "▁arm y",
+ "ct r",
+ "c tr",
+ "ér ic",
+ "éri c",
+ "é ric",
+ "que ue",
+ "▁\\ {",
+ "▁ \\{",
+ "ue la",
+ "uel a",
+ "u ela",
+ "am iento",
+ "ami ento",
+ "ши х",
+ "ш их",
+ "▁\" \"\"",
+ "▁\"\" \"",
+ "con tr",
+ "cont r",
+ "лл е",
+ "л ле",
+ "F S",
+ "▁mar ket",
+ "▁mark et",
+ "▁ market",
+ "ån g",
+ "å ng",
+ "cite p",
+ "cit ep",
+ "Il l",
+ "I ll",
+ "ran k",
+ "r ank",
+ "▁s ender",
+ "▁se nder",
+ "▁send er",
+ "▁sen der",
+ "▁ sender",
+ "▁be im",
+ "▁bei m",
+ "ра к",
+ "▁com pat",
+ "▁comp at",
+ "▁ compat",
+ "▁occ urs",
+ "▁occur s",
+ "▁d iese",
+ "▁di ese",
+ "▁die se",
+ "▁dies e",
+ "сти ту",
+ "aw a",
+ "a wa",
+ "▁i OS",
+ "▁Ch inese",
+ "▁Chine se",
+ "▁T R",
+ "▁ TR",
+ "▁K en",
+ "▁Ke n",
+ "▁U ne",
+ "▁Un e",
+ "▁cre ates",
+ "▁create s",
+ "▁sh owed",
+ "▁show ed",
+ "▁sho wed",
+ "▁é v",
+ "▁ év",
+ "olog ia",
+ "olo gia",
+ "▁pro test",
+ "▁prote st",
+ "▁prot est",
+ "▁P f",
+ "▁s quad",
+ "▁squ ad",
+ "++ ,",
+ "á v",
+ "▁ess ere",
+ "з я",
+ "ko l",
+ "k ol",
+ "▁slight ly",
+ "ad dr",
+ "add r",
+ "â n",
+ "▁red uce",
+ "▁redu ce",
+ "▁ reduce",
+ "▁\\ (\\",
+ "▁\\( \\",
+ "▁D ep",
+ "▁De p",
+ "▁ Dep",
+ "▁gener ic",
+ "▁gene ric",
+ "▁ generic",
+ "Lo ader",
+ "Load er",
+ "ț i",
+ "▁п ос",
+ "▁по с",
+ "▁occ asion",
+ "▁occas ion",
+ "▁L ady",
+ "▁La dy",
+ "▁Lad y",
+ "ent ity",
+ "enti ty",
+ "▁av ant",
+ "▁ avant",
+ "▁P as",
+ "▁Pa s",
+ "ag gio",
+ "aggi o",
+ "agg io",
+ "\\ {",
+ "па д",
+ "athol ic",
+ "Pass word",
+ "▁res pond",
+ "▁resp ond",
+ "▁ respond",
+ "▁N on",
+ "▁No n",
+ "▁ Non",
+ "A G",
+ "ne g",
+ "n eg",
+ "▁у с",
+ "▁ ус",
+ "bl ob",
+ "blo b",
+ "b lob",
+ "ck e",
+ "c ke",
+ "▁Cons ider",
+ "▁C are",
+ "▁Car e",
+ "▁Ca re",
+ "ik i",
+ "i ki",
+ "▁Ch icago",
+ "in den",
+ "ind en",
+ "inde n",
+ "▁C op",
+ "▁Co p",
+ "] +",
+ "ö m",
+ "év rier",
+ "к ло",
+ "al en",
+ "ale n",
+ "a len",
+ "▁m aj",
+ "▁ma j",
+ "ra cy",
+ "rac y",
+ "r acy",
+ "or te",
+ "ort e",
+ "ien ts",
+ "ient s",
+ "i ents",
+ "el ls",
+ "ell s",
+ "act ivity",
+ "activ ity",
+ "▁r untime",
+ "▁run time",
+ "▁runt ime",
+ "▁ runtime",
+ "NU LL",
+ "N ULL",
+ "▁poss ibly",
+ "▁possib ly",
+ "▁s tri",
+ "▁st ri",
+ "▁str i",
+ "iz i",
+ "i zi",
+ "▁m ir",
+ "▁mi r",
+ "▁ mir",
+ "▁V ersion",
+ "▁Vers ion",
+ "▁ Version",
+ "pr ime",
+ "prim e",
+ "▁tw enty",
+ "▁M ah",
+ "▁Ma h",
+ "▁s ounds",
+ "▁sound s",
+ "ше н",
+ "ш ен",
+ "cl usion",
+ "clus ion",
+ "ac z",
+ "a cz",
+ "▁determ ined",
+ "▁determine d",
+ "▁determin ed",
+ "▁R ep",
+ "▁Re p",
+ "▁ Rep",
+ "▁Land es",
+ "▁Lan des",
+ "▁w all",
+ "▁wa ll",
+ "▁wal l",
+ "▁ wall",
+ "ig i",
+ "i gi",
+ "▁re set",
+ "▁res et",
+ "▁ reset",
+ "ш о",
+ "ya n",
+ "y an",
+ "Me t",
+ "M et",
+ "e i",
+ "▁app earance",
+ "▁appear ance",
+ "▁f ois",
+ "▁fo is",
+ "▁foi s",
+ "▁ fois",
+ "▁n ell",
+ "▁ne ll",
+ "▁nel l",
+ "▁ nell",
+ "es i",
+ "e si",
+ "ё т",
+ "lo or",
+ "l oor",
+ "▁U l",
+ "▁resol ution",
+ "▁f ot",
+ "▁fo t",
+ "▁through out",
+ "▁r i",
+ "▁ ri",
+ "Le vel",
+ "po ol",
+ "p ool",
+ "▁id entity",
+ "▁ident ity",
+ "▁ identity",
+ "▁j anu",
+ "▁jan u",
+ "▁ja nu",
+ "▁im per",
+ "▁imp er",
+ "▁ imper",
+ "▁ö ver",
+ "} `",
+ "▁in fer",
+ "▁inf er",
+ "▁d ates",
+ "▁da tes",
+ "▁dat es",
+ "▁date s",
+ "▁ dates",
+ "▁Stand ard",
+ "▁ Standard",
+ "for ce",
+ "oc key",
+ "ock ey",
+ "ter a",
+ "te ra",
+ "t era",
+ "▁dist ingu",
+ "▁pres ence",
+ "li ca",
+ "lic a",
+ "l ica",
+ "▁le aving",
+ "it ung",
+ "itu ng",
+ "é b",
+ "▁estab lish",
+ "▁m aar",
+ "▁ma ar",
+ "ad i",
+ "a di",
+ "▁New s",
+ "▁Ne ws",
+ "▁ News",
+ "az on",
+ "a zon",
+ "fo lg",
+ "fol g",
+ "f olg",
+ "▁H ence",
+ "▁Hen ce",
+ "▁Y e",
+ "▁f ab",
+ "▁fa b",
+ "▁ fab",
+ "▁f ühr",
+ "▁ führ",
+ "it map",
+ "▁V ers",
+ "▁Ver s",
+ "▁Ve rs",
+ "ro v",
+ "r ov",
+ "Si gn",
+ "S ign",
+ "de vice",
+ "dev ice",
+ "S igma",
+ "▁wet enschapp",
+ "▁P s",
+ "PA TH",
+ "P ATH",
+ "▁t orn",
+ "▁to rn",
+ "▁tor n",
+ "ve st",
+ "ves t",
+ "v est",
+ "ст ов",
+ "сто в",
+ "с тов",
+ "ac count",
+ "acc ount",
+ "acco unt",
+ "▁lar gest",
+ "▁large st",
+ "▁larg est",
+ "▁per cent",
+ "▁perce nt",
+ "▁ percent",
+ "▁W omen",
+ "▁Wo men",
+ "▁im g",
+ "▁ img",
+ "to ol",
+ "t ool",
+ "▁r oce",
+ "▁ro ce",
+ "▁a y",
+ "▁ ay",
+ "in et",
+ "ine t",
+ "i net",
+ "▁ao ût",
+ "▁pol ynomial",
+ "▁integr al",
+ "▁integra l",
+ "▁a reas",
+ "▁are as",
+ "▁area s",
+ "} '",
+ "▁h yp",
+ "▁hy p",
+ "loy ee",
+ "та ль",
+ "тал ь",
+ "т аль",
+ "▁pro xy",
+ "▁ proxy",
+ "▁W y",
+ "▁М екси",
+ "▁Ме кси",
+ "▁es cape",
+ "▁esc ape",
+ "▁ escape",
+ "ol ar",
+ "ola r",
+ "o lar",
+ "▁mis take",
+ "▁mist ake",
+ ")} {",
+ ") }{",
+ "▁P ot",
+ "▁Po t",
+ "▁process es",
+ "▁proc esses",
+ "\"> \r",
+ "\" >\r",
+ "hal ten",
+ "halt en",
+ "zz a",
+ "z za",
+ "am o",
+ "a mo",
+ "к ре",
+ "▁W ood",
+ "▁Wo od",
+ "ø r",
+ "▁с ер",
+ "▁се р",
+ "▁ сер",
+ "oc ia",
+ "oci a",
+ "o cia",
+ "tw o",
+ "t wo",
+ "pro file",
+ "prof ile",
+ "▁A st",
+ "▁As t",
+ "em bro",
+ "emb ro",
+ "▁ar ms",
+ "▁arm s",
+ "in as",
+ "ina s",
+ "i nas",
+ "in nen",
+ "inn en",
+ "▁m sg",
+ "▁ms g",
+ "▁ msg",
+ "IN T",
+ "I NT",
+ "▁b atter",
+ "▁batt er",
+ "▁bat ter",
+ "ign ment",
+ "▁v y",
+ "▁ vy",
+ "H rsg",
+ "▁G rund",
+ "▁Gr und",
+ "▁Gru nd",
+ "ro c",
+ "r oc",
+ "se g",
+ "s eg",
+ "▁de cor",
+ "▁dec or",
+ "▁ decor",
+ "▁event ually",
+ "> ,",
+ "▁p ag",
+ "▁pa g",
+ "▁ pag",
+ "an ten",
+ "ant en",
+ "ante n",
+ "a nten",
+ "▁str ugg",
+ "▁stru gg",
+ "}^ \\",
+ "} ^\\",
+ "date n",
+ "da ten",
+ "dat en",
+ "d aten",
+ "▁re la",
+ "▁r ela",
+ "▁rel a",
+ "по в",
+ "п ов",
+ "▁ко ро",
+ "▁кор о",
+ "▁B os",
+ "▁Bo s",
+ "▁l abor",
+ "▁la bor",
+ "▁lab or",
+ "▁Se cret",
+ "▁Sec ret",
+ "▁ Secret",
+ "ug en",
+ "uge n",
+ "u gen",
+ "▁j ap",
+ "▁ja p",
+ "▁hus band",
+ "▁Al bum",
+ "▁Alb um",
+ "▁et wa",
+ "▁про из",
+ "ri cht",
+ "ric ht",
+ "rich t",
+ "r icht",
+ "ra ch",
+ "rac h",
+ "r ach",
+ "ba t",
+ "b at",
+ "▁pre par",
+ "▁prep ar",
+ "▁St ock",
+ "▁Sto ck",
+ "▁l ack",
+ "▁la ck",
+ "▁lac k",
+ "▁ lack",
+ "хі д",
+ "х ід",
+ "▁h ogy",
+ "▁ho gy",
+ "▁Ch rome",
+ "▁Chr ome",
+ "▁Ad min",
+ "▁ Admin",
+ "▁com parison",
+ "▁compar ison",
+ "▁incre asing",
+ "н г",
+ "im i",
+ "i mi",
+ "D b",
+ "▁g ef",
+ "▁ge f",
+ "▁ gef",
+ "uch t",
+ "uc ht",
+ "u cht",
+ "és e",
+ "é se",
+ "gen ce",
+ "g ence",
+ "▁C ore",
+ "▁Cor e",
+ "▁Co re",
+ "▁ Core",
+ "▁in correct",
+ "▁incor rect",
+ "▁ass uming",
+ "▁assum ing",
+ "our se",
+ "ours e",
+ "ie ron",
+ "ier on",
+ "iero n",
+ "▁The orem",
+ "▁ Theorem",
+ "▁c asa",
+ "▁cas a",
+ "▁ca sa",
+ "je s",
+ "j es",
+ "▁д ере",
+ "▁де ре",
+ "▁` \"",
+ "L D",
+ "ä ß",
+ "De b",
+ "D eb",
+ "▁su iv",
+ "▁B ank",
+ "▁Ban k",
+ "li bs",
+ "lib s",
+ "▁Le on",
+ "▁Leo n",
+ "▁qu art",
+ "▁quar t",
+ "▁prof essional",
+ "▁profession al",
+ "▁profess ional",
+ "▁t iene",
+ "▁ti ene",
+ "▁tie ne",
+ "▁acc omp",
+ "▁ac comp",
+ "▁accom p",
+ "ст ер",
+ "сте р",
+ "с тер",
+ "▁U K",
+ "▁ UK",
+ "N N",
+ "▁l í",
+ "ц я",
+ "ke l",
+ "k el",
+ "▁ •",
+ "▁d ise",
+ "▁di se",
+ "▁dis e",
+ "on to",
+ "ont o",
+ "▁m á",
+ "if s",
+ "i fs",
+ "bi ld",
+ "bil d",
+ "b ild",
+ "▁comp ute",
+ "▁comput e",
+ "▁ compute",
+ "▁é d",
+ "▁ éd",
+ "j ę",
+ "▁M é",
+ "▁l anguages",
+ "▁language s",
+ "▁T imes",
+ "▁Time s",
+ "▁Tim es",
+ "▁Ti mes",
+ "▁ Times",
+ "ce n",
+ "c en",
+ "▁ав то",
+ "ý m",
+ "en ez",
+ "ene z",
+ "e nez",
+ "▁u pp",
+ "▁up p",
+ "▁ upp",
+ "▁m éd",
+ "▁mé d",
+ "▁cu ando",
+ "о д",
+ "Int ent",
+ "ee rd",
+ "e erd",
+ "▁T al",
+ "▁Ta l",
+ "off set",
+ "offs et",
+ "▁h aben",
+ "▁ha ben",
+ "▁hab en",
+ "▁habe n",
+ "re me",
+ "rem e",
+ "r eme",
+ "▁St ack",
+ "▁Sta ck",
+ "▁ Stack",
+ "▁d ri",
+ "▁dr i",
+ "▁ dri",
+ "▁sein em",
+ "▁seine m",
+ "▁sei nem",
+ "▁f évrier",
+ "▁comb ination",
+ "▁combin ation",
+ "▁s oll",
+ "▁so ll",
+ "▁sol l",
+ "▁mov ement",
+ "▁mo vement",
+ "▁move ment",
+ "Sp ec",
+ "Spe c",
+ "S pec",
+ "к ры",
+ "ret ch",
+ "r etch",
+ "Off set",
+ "Ro ot",
+ "R oot",
+ "А р",
+ "wa rt",
+ "war t",
+ "w art",
+ "▁F ollow",
+ "▁Fol low",
+ "▁So cial",
+ "▁Soci al",
+ "▁Soc ial",
+ "ни ков",
+ "ник ов",
+ "▁ →",
+ "Do n",
+ "D on",
+ "▁h arm",
+ "▁ha rm",
+ "▁har m",
+ "▁ harm",
+ "ag r",
+ "a gr",
+ "ne go",
+ "neg o",
+ "n ego",
+ "re source",
+ "res ource",
+ "▁L uc",
+ "▁Lu c",
+ "▁se inen",
+ "▁sein en",
+ "▁seine n",
+ "▁sei nen",
+ "▁De partment",
+ "▁Depart ment",
+ "▁Up date",
+ "▁ Update",
+ "▁Tex as",
+ "▁re ve",
+ "▁rev e",
+ "▁P os",
+ "▁Po s",
+ "▁ Pos",
+ "▁s hot",
+ "▁sh ot",
+ "▁sho t",
+ "▁ shot",
+ "ot he",
+ "oth e",
+ "o the",
+ "▁repe ated",
+ "▁repeat ed",
+ "▁rec ently",
+ "▁recent ly",
+ "áb an",
+ "á ban",
+ "ak s",
+ "a ks",
+ "па н",
+ "п ан",
+ "▁c ha",
+ "▁ch a",
+ "▁ cha",
+ "oh l",
+ "o hl",
+ "▁t end",
+ "▁te nd",
+ "▁ten d",
+ "▁д во",
+ "ch ts",
+ "cht s",
+ "ça ise",
+ "çais e",
+ "pl ing",
+ "p ling",
+ "al bum",
+ "e j",
+ "▁` [",
+ "ma ps",
+ "map s",
+ "m aps",
+ "▁un its",
+ "▁unit s",
+ "▁< !--",
+ "▁",
+ "St and",
+ "▁techn ique",
+ "▁techni que",
+ "▁E ss",
+ "▁Es s",
+ "▁Ox ford",
+ "▁ ла",
+ "t ikz",
+ "ли й",
+ "Log in",
+ "Lo gin",
+ "▁min ister",
+ "▁minist er",
+ "▁mini ster",
+ "▁ minister",
+ "▁c url",
+ "▁cu rl",
+ "▁cur l",
+ "▁ curl",
+ "ka n",
+ "k an",
+ "▁m aps",
+ "▁ma ps",
+ "▁map s",
+ "▁ maps",
+ "in da",
+ "ind a",
+ "ri eb",
+ "rie b",
+ "r ieb",
+ "▁E ND",
+ "▁EN D",
+ "▁ END",
+ "if ies",
+ "ifi es",
+ "ifie s",
+ "con sole",
+ "cons ole",
+ "bu ry",
+ "bur y",
+ "b ury",
+ "▁L E",
+ "▁ LE",
+ "▁indep end",
+ "▁inde pend",
+ "▁t a",
+ "▁ ta",
+ "▁ Ś",
+ "on el",
+ "one l",
+ "o nel",
+ "és z",
+ "é sz",
+ "▁I st",
+ "▁Is t",
+ "ut ive",
+ "uti ve",
+ "ё л",
+ "▁Reg ion",
+ "▁ Region",
+ "▁( =",
+ "▁comp act",
+ "ço is",
+ "ç ois",
+ "▁label s",
+ "▁lab els",
+ "▁ labels",
+ "autor ité",
+ "▁s tan",
+ "▁st an",
+ "▁sta n",
+ "▁ stan",
+ "▁fran çaise",
+ "▁français e",
+ "▁rem oving",
+ "▁remov ing",
+ "y c",
+ "} |",
+ "▁Ex ec",
+ "▁ Exec",
+ "($ _",
+ "( $_",
+ "ma g",
+ "m ag",
+ "be fore",
+ "▁stop ped",
+ "▁sto pped",
+ "ми и",
+ "▁ref resh",
+ "▁ refresh",
+ "un kt",
+ "unk t",
+ "ic io",
+ "ici o",
+ "i cio",
+ "X ml",
+ "▁T ab",
+ "▁Ta b",
+ "▁ Tab",
+ "▁f ounded",
+ "▁found ed",
+ "▁f al",
+ "▁fa l",
+ "▁ fal",
+ "f x",
+ "▁Histor ia",
+ "▁Hist oria",
+ "▁Ear ly",
+ "▁Earl y",
+ "Do m",
+ "D om",
+ "▁de cide",
+ "▁dec ide",
+ "▁decid e",
+ "▁under stood",
+ "▁j ur",
+ "▁ju r",
+ "▁N r",
+ "▁cap ac",
+ "wa s",
+ "w as",
+ "▁en emy",
+ "▁enem y",
+ "▁program s",
+ "▁m ask",
+ "▁ma sk",
+ "▁mas k",
+ "▁ mask",
+ "ск е",
+ "с ке",
+ "▁gr oupe",
+ "▁group e",
+ "ca m",
+ "c am",
+ "▁w idget",
+ "▁wid get",
+ "▁ widget",
+ "RE ATE",
+ "▁se va",
+ "▁Bar cel",
+ "▁p erd",
+ "▁per d",
+ "▁pe rd",
+ "▁М у",
+ "ran ce",
+ "r ance",
+ "TY PE",
+ "T YPE",
+ "▁{ '",
+ "▁ {'",
+ "▁b ill",
+ "▁bi ll",
+ "▁bil l",
+ "▁\" _",
+ "' `",
+ "ba hn",
+ "bah n",
+ "b ahn",
+ "▁cont ained",
+ "▁contain ed",
+ "Cl ose",
+ "C lose",
+ "ru g",
+ "r ug",
+ "eg y",
+ "e gy",
+ "▁s ight",
+ "▁sig ht",
+ "▁Pro vin",
+ "▁Prov in",
+ "н ю",
+ "ar z",
+ "a rz",
+ "ще н",
+ "щ ен",
+ "▁J oe",
+ "▁Jo e",
+ "▁de leted",
+ "▁delete d",
+ "▁delet ed",
+ "▁A uto",
+ "▁Aut o",
+ "▁Au to",
+ "▁ Auto",
+ "▁m eter",
+ "▁me ter",
+ "▁met er",
+ "▁ meter",
+ "C G",
+ "ъ л",
+ "▁p ent",
+ "▁pe nt",
+ "▁pen t",
+ "▁ pent",
+ "▁be zeichnet",
+ "Su m",
+ "S um",
+ "db c",
+ "d bc",
+ "▁Pl atz",
+ "▁Pla tz",
+ "▁Plat z",
+ "ect ors",
+ "ector s",
+ "e ctors",
+ "▁L ittle",
+ "QU E",
+ "Q UE",
+ "ці я",
+ "ц ія",
+ "те ля",
+ "тел я",
+ "nig ht",
+ "n ight",
+ "▁l l",
+ "▁ ll",
+ "▁most ly",
+ "UI D",
+ "U ID",
+ "▁b ez",
+ "▁be z",
+ "▁ bez",
+ "do b",
+ "d ob",
+ "кс и",
+ "к си",
+ "ter ne",
+ "tern e",
+ "t erne",
+ "▁cor ner",
+ "▁corn er",
+ "at y",
+ "a ty",
+ "▁impro ve",
+ "▁improv e",
+ "▁impr ove",
+ "▁in tr",
+ "▁int r",
+ "▁` @",
+ "ar od",
+ "aro d",
+ "a rod",
+ "▁install ation",
+ "▁instal lation",
+ "▁Refer ências",
+ "ig an",
+ "iga n",
+ "i gan",
+ "▁crit ic",
+ "ad el",
+ "ade l",
+ "a del",
+ "▁се ло",
+ ", \r",
+ "at ori",
+ "ator i",
+ "ato ri",
+ "▁F ri",
+ "▁Fr i",
+ "▁ Fri",
+ "▁ré férences",
+ "▁Int ent",
+ "▁ Intent",
+ "▁t ant",
+ "▁tan t",
+ "▁ta nt",
+ "un ci",
+ "unc i",
+ "▁level s",
+ "▁lev els",
+ "er es",
+ "ere s",
+ "e res",
+ "▁e mer",
+ "▁em er",
+ "▁ emer",
+ "sa fe",
+ "t k",
+ "▁c ham",
+ "▁ch am",
+ "▁cha m",
+ "▁great ly",
+ "▁we it",
+ "▁ weit",
+ "▁co ach",
+ "▁to ward",
+ "Hom e",
+ "H ome",
+ "▁Bo olean",
+ "▁ Boolean",
+ "те л",
+ "т ел",
+ "▁m ock",
+ "▁mo ck",
+ "▁ mock",
+ "▁appreci ate",
+ "▁C ross",
+ "▁Cr oss",
+ "▁Cro ss",
+ "▁T ake",
+ "▁Ta ke",
+ "▁Tak e",
+ "▁ Take",
+ "D P",
+ "▁s ides",
+ "▁si des",
+ "▁side s",
+ "▁sid es",
+ "▁Norm daten",
+ "де й",
+ "д ей",
+ "st al",
+ "sta l",
+ "s tal",
+ "▁c out",
+ "▁co ut",
+ "▁cou t",
+ "▁ cout",
+ "b n",
+ "▁V ert",
+ "▁Ver t",
+ "▁Ve rt",
+ "▁ Vert",
+ "▁b ird",
+ "▁bi rd",
+ "▁bir d",
+ "▁ bird",
+ "▁dynam ically",
+ "▁dynamic ally",
+ "▁D ol",
+ "▁Do l",
+ "▁B urg",
+ "▁Bu rg",
+ "▁Bur g",
+ "▁d og",
+ "▁do g",
+ "▁ dog",
+ "ät t",
+ "ä tt",
+ "▁n uc",
+ "▁nu c",
+ "E C",
+ "By tes",
+ "Byte s",
+ "▁a k",
+ "▁ ak",
+ "re land",
+ "rel and",
+ "r eland",
+ "▁gu itar",
+ "▁reg arding",
+ "▁regard ing",
+ "▁F uß",
+ "▁Fu ß",
+ "▁до л",
+ "▁ дол",
+ "au ss",
+ "aus s",
+ "a uss",
+ "▁j ej",
+ "▁je j",
+ "ac o",
+ "a co",
+ "▁up dates",
+ "▁update s",
+ "▁upd ates",
+ "ру к",
+ "р ук",
+ "(' /",
+ "▁c old",
+ "▁col d",
+ "▁co ld",
+ "▁G iven",
+ "▁Gi ven",
+ "▁Give n",
+ "hi n",
+ "h in",
+ "▁fe eling",
+ "▁feel ing",
+ "▁fee ling",
+ "ig li",
+ "fa h",
+ "f ah",
+ "ст ре",
+ "стр е",
+ "с тре",
+ "bo ol",
+ "b ool",
+ "init ial",
+ "▁станов ника",
+ "▁An na",
+ "▁Ann a",
+ "▁h ors",
+ "▁hor s",
+ "▁ho rs",
+ "▁d oll",
+ "▁do ll",
+ "▁dol l",
+ "▁con sum",
+ "▁cons um",
+ "▁ consum",
+ "ub er",
+ "ube r",
+ "u ber",
+ "stand ing",
+ "stan ding",
+ "act iv",
+ "з і",
+ "check ed",
+ "▁perm issions",
+ "▁permission s",
+ "▁M onte",
+ "▁Mon te",
+ "▁Mont e",
+ "Write Line",
+ "pl us",
+ "p lus",
+ "▁E qu",
+ "▁Eq u",
+ "▁ Equ",
+ "▁и х",
+ "▁ их",
+ "ч ки",
+ "un que",
+ "▁L O",
+ "▁ LO",
+ "e a",
+ "sam ple",
+ "s ample",
+ "ie sz",
+ "ies z",
+ "i esz",
+ "or al",
+ "ora l",
+ "o ral",
+ "▁И н",
+ "os ton",
+ "ost on",
+ "osto n",
+ "o ston",
+ "▁S imon",
+ "▁Sim on",
+ "▁Si mon",
+ "fa st",
+ "fas t",
+ "f ast",
+ "m k",
+ "as sen",
+ "ass en",
+ "asse n",
+ "▁arch itecture",
+ "▁architect ure",
+ "▁ architecture",
+ "ens es",
+ "ense s",
+ "▁ Å",
+ "▁to pic",
+ "▁top ic",
+ "▁ topic",
+ "▁dis able",
+ "▁ disable",
+ "▁C ru",
+ "▁Cr u",
+ "▁Cont rol",
+ "▁ Control",
+ "▁cre ation",
+ "▁hy per",
+ "▁hyp er",
+ "▁ hyper",
+ "it ud",
+ "itu d",
+ "же ния",
+ "ar am",
+ "ara m",
+ "a ram",
+ "▁г де",
+ "ien st",
+ "iens t",
+ "i enst",
+ "ed ule",
+ "edu le",
+ "▁B ot",
+ "▁Bo t",
+ "▁О с",
+ "▁The ir",
+ "an ne",
+ "ann e",
+ "M icrosoft",
+ "▁P M",
+ "▁ PM",
+ "yd ro",
+ "y dro",
+ "ent lich",
+ "▁E ine",
+ "▁Ein e",
+ "CH AR",
+ ": '",
+ "We ll",
+ "Wel l",
+ "W ell",
+ "le ton",
+ "let on",
+ "l eton",
+ "▁support s",
+ "▁sup ports",
+ "'] )",
+ "' ])",
+ "man ual",
+ "▁v ice",
+ "▁vi ce",
+ "▁vic e",
+ "▁ vice",
+ "as a",
+ "a sa",
+ "cl os",
+ "clo s",
+ "c los",
+ "vi sed",
+ "vis ed",
+ "v ised",
+ "▁p ok",
+ "▁po k",
+ "tr ack",
+ "tra ck",
+ "t rack",
+ "но ст",
+ "нос т",
+ "... .....",
+ ".... ....",
+ "..... ...",
+ "▁' \\",
+ "▁ '\\",
+ "² .",
+ "▁or ders",
+ "▁order s",
+ "▁ord ers",
+ "▁ orders",
+ "et ta",
+ "ett a",
+ "e tta",
+ "▁con version",
+ "▁conv ersion",
+ "▁convers ion",
+ "▁t rade",
+ "▁tr ade",
+ "▁tra de",
+ "▁trad e",
+ "cl i",
+ "c li",
+ "▁И сто",
+ "▁Ис то",
+ "▁a kt",
+ "▁ak t",
+ "▁ akt",
+ "▁sub set",
+ "▁subs et",
+ "▁ subset",
+ "▁a ug",
+ "▁au g",
+ "▁ aug",
+ "▁le aves",
+ "▁leave s",
+ "Mat h",
+ "Ma th",
+ "M ath",
+ "an ned",
+ "ann ed",
+ "anne d",
+ "ka l",
+ "k al",
+ "▁Ве ли",
+ "▁n og",
+ "▁no g",
+ "▁ nog",
+ "▁e th",
+ "▁et h",
+ "▁ eth",
+ "▁h air",
+ "▁ha ir",
+ "ar ound",
+ "aro und",
+ "a round",
+ "▁java x",
+ "▁jav ax",
+ "▁ javax",
+ "во й",
+ "▁C entre",
+ "▁Cent re",
+ "ö ß",
+ "ut i",
+ "u ti",
+ "▁n avigation",
+ "▁navig ation",
+ "▁ navigation",
+ "▁P S",
+ "▁ PS",
+ "▁w a",
+ "▁ wa",
+ "▁Ро ссии",
+ "▁Рос сии",
+ "▁Росси и",
+ "us a",
+ "u sa",
+ "ze ta",
+ "zet a",
+ "z eta",
+ "▁P DF",
+ "▁ PDF",
+ "▁m ismo",
+ "▁mis mo",
+ "▁mism o",
+ "pro perties",
+ "me ister",
+ "ль та",
+ "for ward",
+ "▁O st",
+ "▁Os t",
+ "ki ns",
+ "kin s",
+ "k ins",
+ "▁s ido",
+ "▁si do",
+ "▁sid o",
+ "зо в",
+ "з ов",
+ "ta gs",
+ "tag s",
+ "t ags",
+ "▁a ctor",
+ "▁act or",
+ "▁ac tor",
+ "▁ actor",
+ "▁f ly",
+ "▁fl y",
+ "▁ fly",
+ "C R",
+ "ag ini",
+ "agi ni",
+ "agin i",
+ "▁l ett",
+ "▁le tt",
+ "▁let t",
+ "▁ lett",
+ "en i",
+ "e ni",
+ "te ch",
+ "t ech",
+ "▁E nc",
+ "▁En c",
+ "▁ Enc",
+ "or acle",
+ "ora cle",
+ "o racle",
+ "amil ton",
+ "ze j",
+ "z ej",
+ "fe n",
+ "f en",
+ "ume rate",
+ "umer ate",
+ "▁qu esto",
+ "▁que sto",
+ "▁q uesto",
+ "▁quest o",
+ "da rt",
+ "dar t",
+ "d art",
+ "▁K ore",
+ "▁Ko re",
+ "▁Kor e",
+ "ap is",
+ "api s",
+ "a pis",
+ "ep er",
+ "e per",
+ "Sc reen",
+ "S creen",
+ "wa ll",
+ "wal l",
+ "w all",
+ "▁is land",
+ "sh e",
+ "s he",
+ "▁l igger",
+ "▁lig ger",
+ "в ся",
+ "fa ng",
+ "fan g",
+ "f ang",
+ "▁t ard",
+ "▁tar d",
+ "▁ta rd",
+ "▁pla ats",
+ "▁п ло",
+ "▁ пло",
+ "▁Off ice",
+ "▁Offic e",
+ "▁ Office",
+ "▁S ET",
+ "▁SE T",
+ "▁ SET",
+ "▁circ uit",
+ "je d",
+ "j ed",
+ "Sa ve",
+ "S ave",
+ "ль но",
+ "So cket",
+ "S ocket",
+ "▁In dex",
+ "▁Ind ex",
+ "▁ Index",
+ "AC K",
+ "A CK",
+ "id ers",
+ "ide rs",
+ "ider s",
+ "i ders",
+ "er er",
+ "ere r",
+ "e rer",
+ "▁С ША",
+ "▁l ady",
+ "▁la dy",
+ "▁lad y",
+ "▁sch eme",
+ "▁sche me",
+ "ie lle",
+ "iel le",
+ "i elle",
+ "▁ex erc",
+ "▁exer c",
+ ")} \\",
+ ") }\\",
+ "Date Time",
+ "at han",
+ "ath an",
+ "a than",
+ "▁Prof essor",
+ "▁mo ins",
+ "▁moi ns",
+ "▁Ex cel",
+ "▁ Excel",
+ "▁H ay",
+ "▁Ha y",
+ "▁Mus ik",
+ "▁ ї",
+ "ę d",
+ "▁\" .",
+ "▁ \".",
+ "▁бу в",
+ "▁inst rument",
+ "▁instru ment",
+ "па р",
+ "п ар",
+ "▁б ере",
+ "▁бе ре",
+ "▁ бере",
+ "▁polit ique",
+ "▁trad ition",
+ "▁V M",
+ "▁ VM",
+ "▁Ar ts",
+ "▁Art s",
+ "▁C i",
+ "Us e",
+ "U se",
+ "▁a ggreg",
+ "▁ag greg",
+ "▁ aggreg",
+ "▁we eks",
+ "▁week s",
+ "▁o pport",
+ "▁op port",
+ "▁opp ort",
+ "it ing",
+ "iti ng",
+ "i ting",
+ "▁vert ical",
+ "▁ vertical",
+ "▁N az",
+ "▁Na z",
+ ".. .)",
+ "... )",
+ "iz o",
+ "i zo",
+ "▁c ycle",
+ "▁cy cle",
+ "▁cycl e",
+ "▁ cycle",
+ "▁tem po",
+ "▁temp o",
+ "т ре",
+ "▁hand ling",
+ "ist ence",
+ "isten ce",
+ "▁p aste",
+ "▁pas te",
+ "▁pa ste",
+ "▁past e",
+ "▁ paste",
+ "▁en jo",
+ "RO UP",
+ "▁o uter",
+ "▁out er",
+ "▁ou ter",
+ "▁ outer",
+ "▁su pply",
+ "▁supp ly",
+ "▁sup ply",
+ "em an",
+ "ema n",
+ "e man",
+ "▁acc ident",
+ "▁\\ ]",
+ "▁ \\]",
+ "▁те х",
+ "▁ тех",
+ "Po ol",
+ "P ool",
+ "ot ing",
+ "oti ng",
+ "o ting",
+ "onym ous",
+ "▁Gi ov",
+ "▁u d",
+ "▁ ud",
+ "▁. /",
+ "▁ ./",
+ "ER ROR",
+ "ERR OR",
+ "con struct",
+ "const ruct",
+ "text width",
+ "qu ipe",
+ "qui pe",
+ "quip e",
+ "case s",
+ "cas es",
+ "c ases",
+ "▁а д",
+ "▁R ow",
+ "▁Ro w",
+ "▁ Row",
+ "Hol der",
+ "Hold er",
+ "H older",
+ "wa n",
+ "w an",
+ "ar na",
+ "arn a",
+ "Me m",
+ "M em",
+ "▁Canad ian",
+ "▁Com mission",
+ "▁Comm ission",
+ "su n",
+ "s un",
+ "▁app s",
+ "▁ap ps",
+ "▁ apps",
+ "▁B lo",
+ "▁Bl o",
+ "▁i hrer",
+ "▁ih rer",
+ "▁ihr er",
+ "▁ihre r",
+ "▁famil le",
+ "▁fam ille",
+ "▁m ě",
+ "▁p y",
+ "▁ py",
+ "и с",
+ "▁т ого",
+ "▁то го",
+ "▁ того",
+ "▁Ag ain",
+ "▁ign ore",
+ "▁ignor e",
+ "▁ ignore",
+ "▁tele vision",
+ "▁televis ion",
+ "Pa t",
+ "P at",
+ "hi de",
+ "h ide",
+ "▁R ev",
+ "▁Re v",
+ "▁b ear",
+ "▁be ar",
+ "ph y",
+ "p hy",
+ "▁no ise",
+ "▁w ra",
+ "▁wr a",
+ "at ionale",
+ "ation ale",
+ "ational e",
+ "▁coll abor",
+ "bor der",
+ "b order",
+ "▁el ected",
+ "▁elect ed",
+ "▁ele cted",
+ "▁sur pr",
+ "▁a voir",
+ "▁av oir",
+ "▁avo ir",
+ "▁ avoir",
+ "▁ass embly",
+ "▁assemb ly",
+ "▁ assembly",
+ "▁об ще",
+ "▁arbitr ary",
+ "▁br ief",
+ "▁- --",
+ "▁-- -",
+ "▁ ---",
+ "▁M aur",
+ "▁Ma ur",
+ "▁Mau r",
+ "gr ession",
+ "gress ion",
+ "g ression",
+ "ic ia",
+ "ici a",
+ "i cia",
+ "▁lie gt",
+ "▁Fig ure",
+ "▁on to",
+ "▁ont o",
+ "▁ onto",
+ "Re pository",
+ "Repos itory",
+ "▁dé f",
+ "▁f orth",
+ "▁for th",
+ "▁fort h",
+ "▁cl icked",
+ "▁click ed",
+ "se ite",
+ "▁n otes",
+ "▁not es",
+ "▁no tes",
+ "▁note s",
+ "▁ notes",
+ "nat ive",
+ "n ative",
+ "▁ED IT",
+ "▁ EDIT",
+ "ы е",
+ "M T",
+ "am ental",
+ "ament al",
+ "amen tal",
+ "▁r ose",
+ "▁ro se",
+ "▁ros e",
+ "▁ rose",
+ "▁pu ede",
+ "▁pue de",
+ "De legate",
+ "Deleg ate",
+ "ub a",
+ "u ba",
+ "ne o",
+ "xi s",
+ "x is",
+ "▁Ar thur",
+ "UR E",
+ "U RE",
+ "am ing",
+ "ami ng",
+ "amin g",
+ "a ming",
+ "De vice",
+ "Dev ice",
+ "▁d iam",
+ "▁di am",
+ "▁dia m",
+ "st änd",
+ "▁p ron",
+ "▁pro n",
+ "▁pr on",
+ "oi s",
+ "o is",
+ "com ing",
+ "co ming",
+ "c oming",
+ "Param eters",
+ "Parameter s",
+ "uv ud",
+ "▁ab ility",
+ "▁ ability",
+ "▁m ét",
+ "▁mé t",
+ "▁Un fortunately",
+ "f d",
+ "D ictionary",
+ "so cket",
+ "sock et",
+ "s ocket",
+ "▁con oc",
+ "▁co noc",
+ "cont ains",
+ "es sed",
+ "ess ed",
+ "esse d",
+ "▁gel dig",
+ "▁geld ig",
+ "ни ца",
+ "ниц а",
+ "▁point ed",
+ "es ti",
+ "est i",
+ "no m",
+ "n om",
+ "ографи я",
+ "▁represent s",
+ "▁repres ents",
+ "▁man ip",
+ "wor ld",
+ "w orld",
+ "▁resol ved",
+ "▁resolve d",
+ "te gr",
+ "t egr",
+ "▁d ort",
+ "▁do rt",
+ "▁dor t",
+ "as tern",
+ "ast ern",
+ "aster n",
+ "aste rn",
+ "▁camp aign",
+ "▁pr imo",
+ "▁prim o",
+ "▁pri mo",
+ "▁; ;",
+ "▁ ;;",
+ "▁sni ppet",
+ "▁N ik",
+ "▁Ni k",
+ "To tal",
+ "T otal",
+ "iss ement",
+ "isse ment",
+ "AC E",
+ "A CE",
+ "▁ver ify",
+ "▁ verify",
+ "if fe",
+ "iff e",
+ "i ffe",
+ "la gen",
+ "lag en",
+ "lage n",
+ "l agen",
+ "ie ur",
+ "ieu r",
+ "i eur",
+ "▁convert ed",
+ "▁conver ted",
+ "▁Mil it",
+ "▁Mi lit",
+ "▁A lg",
+ "▁Al g",
+ "▁ Alg",
+ "▁R on",
+ "▁Ro n",
+ "▁k onn",
+ "▁kon n",
+ "▁ko nn",
+ "ap ple",
+ "app le",
+ "▁dis pos",
+ "▁disp os",
+ "stell ung",
+ "▁re tain",
+ "▁ret ain",
+ "▁m entre",
+ "▁men tre",
+ "▁ment re",
+ "▁ne ut",
+ "▁neu t",
+ "▁ neut",
+ "▁N ight",
+ "ch é",
+ "c hé",
+ "at ti",
+ "att i",
+ "▁o bra",
+ "▁ob ra",
+ "▁super ior",
+ "▁Con gress",
+ "▁Cong ress",
+ "ё м",
+ "▁c odes",
+ "▁code s",
+ "▁co des",
+ "▁cod es",
+ "▁ codes",
+ "▁A ma",
+ "▁Am a",
+ "▁E arth",
+ "▁Ear th",
+ "▁oppos ite",
+ "▁p ool",
+ "▁po ol",
+ "▁ pool",
+ "▁D un",
+ "▁Du n",
+ "же ние",
+ "▁\" ${",
+ "▁\"$ {",
+ "in v",
+ "▁у ни",
+ "▁And rew",
+ "▁Andre w",
+ "те лей",
+ "тел ей",
+ "▁by ł",
+ "Un ivers",
+ "Uni vers",
+ "▁Ang ular",
+ "an im",
+ "ani m",
+ "a nim",
+ "до ва",
+ "дов а",
+ "д ова",
+ "BU G",
+ "B UG",
+ "ut ely",
+ "ute ly",
+ "▁draw ing",
+ "▁dra wing",
+ "▁g ain",
+ "▁ga in",
+ "▁four th",
+ "▁Pro blem",
+ "▁ Problem",
+ "▁sudden ly",
+ "▁ Ä",
+ "on na",
+ "onn a",
+ "▁K ont",
+ "▁Kon t",
+ "▁Ko nt",
+ "▁Bilder n",
+ "▁Bild ern",
+ "▁Bil dern",
+ "▁konn te",
+ "ž e",
+ "Tr ace",
+ "Tra ce",
+ "T race",
+ "▁sec ure",
+ "▁ secure",
+ "▁któ ry",
+ "▁e q",
+ "▁ eq",
+ "▁f ormal",
+ "▁for mal",
+ "▁form al",
+ "▁forma l",
+ "amer ikan",
+ "▁A nal",
+ "▁An al",
+ "▁Ana l",
+ "▁ Anal",
+ "▁R ewrite",
+ "▁Re write",
+ "▁D ouble",
+ "▁Dou ble",
+ "▁ Double",
+ "cre ated",
+ "create d",
+ "N U",
+ "MD b",
+ "M Db",
+ "ap es",
+ "ape s",
+ "a pes",
+ "Un is",
+ "Uni s",
+ "U nis",
+ "▁e special",
+ "▁espe cial",
+ "▁espec ial",
+ "}) \\",
+ "} )\\",
+ "ed om",
+ "edo m",
+ "e dom",
+ "▁c ategor",
+ "▁categ or",
+ "Re turn",
+ "Ret urn",
+ "▁H amb",
+ "▁Ha mb",
+ "▁Ham b",
+ "▁R io",
+ "▁Ri o",
+ "▁M ir",
+ "▁Mi r",
+ "▁G eme",
+ "▁Ge me",
+ "▁Gem e",
+ "ab ilities",
+ "abil ities",
+ "tr z",
+ "t rz",
+ "us et",
+ "use t",
+ "u set",
+ "ier ra",
+ "net work",
+ "n etwork",
+ "▁do ctor",
+ "▁doc tor",
+ "eur s",
+ "eu rs",
+ "e urs",
+ "▁l isten",
+ "▁li sten",
+ "▁list en",
+ "▁liste n",
+ "▁ listen",
+ "д ж",
+ "▁H ö",
+ "▁cons ists",
+ "▁consist s",
+ "as m",
+ "a sm",
+ "Ch r",
+ "C hr",
+ "al and",
+ "ala nd",
+ "a land",
+ "▁испо ль",
+ "▁ис поль",
+ "▁испол ь",
+ "▁lug ar",
+ "▁lu gar",
+ "▁def initely",
+ "▁definit ely",
+ "▁definite ly",
+ "mo ve",
+ "mov e",
+ "m ove",
+ "úblic a",
+ "ú blica",
+ "▁l än",
+ "▁lä n",
+ "is mus",
+ "ism us",
+ "▁др жа",
+ "▁d t",
+ "▁ dt",
+ "▁Per haps",
+ "▁Bra sil",
+ "▁Bras il",
+ "Jo hn",
+ "J ohn",
+ "▁prom ise",
+ "ł u",
+ "re ens",
+ "ree ns",
+ "reen s",
+ "▁ps ych",
+ "▁W ho",
+ "▁Wh o",
+ "▁ Who",
+ "ря д",
+ "▁IN TO",
+ "▁INT O",
+ "▁Pe ople",
+ "▁Will iams",
+ "▁William s",
+ "▁M arg",
+ "▁Mar g",
+ "▁Ma rg",
+ "▁д ан",
+ "▁да н",
+ "▁ дан",
+ "re cord",
+ "rec ord",
+ "▁E uro",
+ "▁Eu ro",
+ "▁Eur o",
+ "▁Virgin ia",
+ "▁R est",
+ "▁Re st",
+ "▁Res t",
+ "▁ Rest",
+ "▁C orn",
+ "▁Cor n",
+ "▁Co rn",
+ "}} ,",
+ "} },",
+ "▁G rid",
+ "▁Gr id",
+ "▁ Grid",
+ "▁in ject",
+ "▁inj ect",
+ "▁ inject",
+ "на н",
+ "н ан",
+ "▁c row",
+ "▁cr ow",
+ "▁cro w",
+ "▁Ph ys",
+ "▁ Phys",
+ "▁D O",
+ "▁ DO",
+ "▁\" -",
+ "▁incre ased",
+ "▁increase d",
+ "ach er",
+ "ac her",
+ "ache r",
+ "a cher",
+ "pe at",
+ "Li n",
+ "L in",
+ "▁D ub",
+ "▁Du b",
+ "ri ces",
+ "ric es",
+ "rice s",
+ "r ices",
+ "ag nost",
+ "agn ost",
+ "d l",
+ "▁cur ve",
+ "▁curv e",
+ "ü g",
+ "ri ce",
+ "ric e",
+ "r ice",
+ "l anguage",
+ "Click Listener",
+ "▁municip al",
+ "▁O ri",
+ "▁Or i",
+ "▁ Ori",
+ "▁B ild",
+ "▁Bi ld",
+ "▁Bil d",
+ "▁C ab",
+ "▁Ca b",
+ "▁V ar",
+ "▁Va r",
+ "▁ Var",
+ "▁n oted",
+ "▁not ed",
+ "▁no ted",
+ "▁note d",
+ "▁ Î",
+ "▁s ubs",
+ "▁su bs",
+ "▁sub s",
+ "ia tion",
+ "iat ion",
+ "i ation",
+ "W OR",
+ "in gly",
+ "ing ly",
+ "▁R us",
+ "▁Ru s",
+ "ie ns",
+ "ien s",
+ "i ens",
+ "IN FO",
+ "INF O",
+ "к ва",
+ "at ivo",
+ "ativ o",
+ "ati vo",
+ "ge nde",
+ "gen de",
+ "g ende",
+ "▁Fran z",
+ "▁Fr anz",
+ "▁is ol",
+ "▁i sol",
+ "ed es",
+ "ede s",
+ "e des",
+ "ni er",
+ "nie r",
+ "n ier",
+ "▁N O",
+ "▁ NO",
+ "▁H as",
+ "▁Ha s",
+ "▁ Has",
+ "be ans",
+ "bean s",
+ "▁p andas",
+ "▁pan das",
+ "▁ pandas",
+ "(\" %",
+ "ві т",
+ "ут бо",
+ "▁g ather",
+ "▁ga ther",
+ "▁gat her",
+ "▁le gal",
+ "▁leg al",
+ "▁ legal",
+ "in clud",
+ "▁circum st",
+ "cript or",
+ "ri ble",
+ "rib le",
+ "r ible",
+ "▁S üd",
+ "▁Sü d",
+ "▁a pro",
+ "▁ap ro",
+ "▁apr o",
+ "Ap i",
+ "A pi",
+ "▁на й",
+ "▁Afr ican",
+ "▁Africa n",
+ "ow ski",
+ "ows ki",
+ "▁John son",
+ "ie k",
+ "i ek",
+ "▁v ote",
+ "▁vo te",
+ "▁vot e",
+ "▁ vote",
+ "▁K an",
+ "▁Ka n",
+ "▁b ibli",
+ "▁bib li",
+ "▁ bibli",
+ "▁h aar",
+ "▁ha ar",
+ "▁v r",
+ "▁ vr",
+ "]) ,",
+ "] ),",
+ "subset eq",
+ "Par ser",
+ "Parse r",
+ "ia ni",
+ "ian i",
+ "i ani",
+ "is é",
+ "id ea",
+ "ide a",
+ "On ly",
+ "▁á l",
+ "▁ ál",
+ "▁C atal",
+ "▁Ca tal",
+ "▁Cat al",
+ "▁C ase",
+ "▁Cas e",
+ "▁Ca se",
+ "▁ Case",
+ "se h",
+ "s eh",
+ "▁en counter",
+ "▁enc ounter",
+ "▁re form",
+ "▁ref orm",
+ "ми ни",
+ "мин и",
+ "▁S tre",
+ "▁St re",
+ "▁Str e",
+ "ex ception",
+ "except ion",
+ "▁T ar",
+ "▁Ta r",
+ "та р",
+ "т ар",
+ "tr l",
+ "t rl",
+ "▁А лександ",
+ "ле кт",
+ "лек т",
+ "equ al",
+ "eq ual",
+ "e qual",
+ "O p",
+ "▁l if",
+ "▁li f",
+ "▁й ого",
+ "▁volt age",
+ "▁volta ge",
+ "sh ire",
+ "s hire",
+ "▁Gro ß",
+ "в ня",
+ "ning s",
+ "n ings",
+ "н ци",
+ "▁l ag",
+ "▁la g",
+ "▁ lag",
+ "▁and eren",
+ "▁andere n",
+ "▁v ac",
+ "▁va c",
+ "▁ma cro",
+ "▁mac ro",
+ "▁ macro",
+ "= [",
+ "Th en",
+ "The n",
+ "T hen",
+ "▁control s",
+ "▁contr ols",
+ "▁contro ls",
+ "▁ controls",
+ "se q",
+ "s eq",
+ "olog ies",
+ "ologie s",
+ "▁select or",
+ "▁sel ector",
+ "▁sele ctor",
+ "▁ selector",
+ "▁Украї ни",
+ "хів овано",
+ "ы й",
+ "allen ge",
+ "alleng e",
+ "▁I MDb",
+ "▁IM Db",
+ "um my",
+ "umm y",
+ "ye n",
+ "y en",
+ "▁b este",
+ "▁be ste",
+ "▁best e",
+ "▁bes te",
+ "▁B ox",
+ "▁Bo x",
+ "▁ Box",
+ "▁ch air",
+ "▁cha ir",
+ "▁S ab",
+ "▁Sa b",
+ "er de",
+ "erd e",
+ "▁n ast",
+ "▁na st",
+ "▁nas t",
+ "iv amente",
+ "iva mente",
+ "▁об ъ",
+ "▁require ments",
+ "▁requirement s",
+ "▁me eting",
+ "▁meet ing",
+ "▁fin an",
+ "▁fi nan",
+ "▁A dam",
+ "▁Ad am",
+ "▁Ada m",
+ "▁tele vis",
+ "▁b right",
+ "▁br ight",
+ "▁brig ht",
+ "▁G it",
+ "▁Gi t",
+ "▁ Git",
+ "E G",
+ "▁G il",
+ "▁Gi l",
+ "r ès",
+ "▁C ond",
+ "▁Con d",
+ "▁Co nd",
+ "▁ Cond",
+ "▁f t",
+ "▁ ft",
+ "▁бу ло",
+ "- +",
+ "EN D",
+ "E ND",
+ "er ne",
+ "ern e",
+ "▁Com put",
+ "▁Comp ut",
+ "▁ Comput",
+ "▁i ls",
+ "▁il s",
+ "▁ ils",
+ "▁g all",
+ "▁gal l",
+ "▁ga ll",
+ "▁c sv",
+ "▁cs v",
+ "▁ csv",
+ "łu g",
+ "ł ug",
+ "▁sum mer",
+ "▁summ er",
+ "ga me",
+ "g ame",
+ "▁pos ts",
+ "▁post s",
+ "▁ posts",
+ "Ар хівовано",
+ "▁z ij",
+ "▁de termin",
+ "▁determ in",
+ "▁ab andon",
+ "co unter",
+ "count er",
+ "c ounter",
+ "▁require ment",
+ "▁requ irement",
+ "▁T it",
+ "▁Ti t",
+ "irt ual",
+ "▁V ideos",
+ "▁Video s",
+ "▁qu iet",
+ "▁qui et",
+ "▁T erm",
+ "▁Te rm",
+ "▁Ter m",
+ "▁ Term",
+ "▁time out",
+ "▁ timeout",
+ "Pr int",
+ "▁in vent",
+ "▁inv ent",
+ "▁inve nt",
+ "la is",
+ "l ais",
+ "▁mon itor",
+ "ha lb",
+ "hal b",
+ "▁W ild",
+ "▁Wil d",
+ "▁Wi ld",
+ "▁le ader",
+ "▁lead er",
+ "▁с ель",
+ "▁се ль",
+ "▁util iz",
+ "▁par ents",
+ "▁parent s",
+ "▁for ced",
+ "▁force d",
+ "▁pro ved",
+ "▁pr oved",
+ "▁prov ed",
+ "▁prove d",
+ "▁effect ive",
+ "▁l lam",
+ "▁ll am",
+ "▁С по",
+ "or b",
+ "o rb",
+ "gg i",
+ "g gi",
+ "▁ass umption",
+ "▁assum ption",
+ "▁su bm",
+ "▁sub m",
+ "▁в ій",
+ "▁ві й",
+ "il ia",
+ "ili a",
+ "i lia",
+ "▁re verse",
+ "▁revers e",
+ "▁rever se",
+ "▁ reverse",
+ "' \"",
+ "▁qu otes",
+ "▁quot es",
+ "▁quote s",
+ "▁s ites",
+ "▁si tes",
+ "▁site s",
+ "▁sit es",
+ "▁ sites",
+ "ig ung",
+ "igu ng",
+ "▁A rg",
+ "▁Ar g",
+ "▁ Arg",
+ "D ouble",
+ "▁s creens",
+ "▁sc reens",
+ "▁screen s",
+ "▁cl ause",
+ "▁cla use",
+ "▁b undle",
+ "▁bund le",
+ "▁ bundle",
+ "▁phil osoph",
+ "▁N um",
+ "▁Nu m",
+ "▁ Num",
+ "▁g leich",
+ "▁gle ich",
+ "▁ gleich",
+ "ul y",
+ "u ly",
+ "dir ect",
+ "di rect",
+ "dire ct",
+ "d irect",
+ "asket ball",
+ "ow any",
+ "owa ny",
+ "owan y",
+ "\\} $",
+ "\\ }$",
+ "▁rad ius",
+ "▁radi us",
+ "▁ radius",
+ "▁S earch",
+ "▁Se arch",
+ "▁ Search",
+ "Pro perties",
+ "▁e lev",
+ "▁el ev",
+ "▁ele v",
+ "▁p rod",
+ "▁pro d",
+ "▁pr od",
+ "▁ prod",
+ "▁\" %",
+ "is ión",
+ "isi ón",
+ "De bug",
+ "Deb ug",
+ "Se cond",
+ "Sec ond",
+ "( !",
+ "▁C atholic",
+ "ро ван",
+ "ров ан",
+ "рова н",
+ "р ован",
+ "le z",
+ "l ez",
+ "P a",
+ "ps on",
+ "p son",
+ "▁er ste",
+ "▁erst e",
+ "▁ers te",
+ "▁F u",
+ "▁l it",
+ "▁li t",
+ "▁ lit",
+ "▁S aison",
+ "▁Sa ison",
+ "▁H ash",
+ "▁Ha sh",
+ "▁Has h",
+ "▁ Hash",
+ "▁ex em",
+ "▁пред став",
+ ") *",
+ "▁e u",
+ "▁ eu",
+ "▁ │",
+ "▁g ab",
+ "▁ga b",
+ "eta iled",
+ "Co py",
+ "C opy",
+ "▁д ва",
+ "ev en",
+ "e ven",
+ "K ind",
+ "▁Jack son",
+ "а л",
+ "▁con sec",
+ "▁cons ec",
+ "▁conse c",
+ "US ER",
+ "USE R",
+ "U SER",
+ "▁T ok",
+ "▁To k",
+ "( .",
+ "▁$ |",
+ "▁T amb",
+ "▁Ta mb",
+ "▁Tam b",
+ "▁Lem ma",
+ "ha ng",
+ "han g",
+ "h ang",
+ "▁cont ribution",
+ "▁contrib ution",
+ "▁contribu tion",
+ "roll ers",
+ "rol lers",
+ "roller s",
+ "rolle rs",
+ "▁stud ies",
+ "▁studi es",
+ "▁p oi",
+ "▁po i",
+ "ge ms",
+ "gem s",
+ "g ems",
+ "▁U P",
+ "▁ UP",
+ "▁W ol",
+ "▁Wo l",
+ "> \"",
+ "▁f loor",
+ "▁fl oor",
+ "▁flo or",
+ "▁ floor",
+ "▁init ialize",
+ "▁initial ize",
+ "▁ initialize",
+ "▁L ew",
+ "▁Le w",
+ "ze k",
+ "z ek",
+ "ar te",
+ "art e",
+ "▁pos itions",
+ "▁position s",
+ "▁posit ions",
+ "▁por tion",
+ "▁port ion",
+ "co ver",
+ "cov er",
+ "c over",
+ "w p",
+ "ов ого",
+ "ово го",
+ "о вого",
+ "▁p iano",
+ "▁pi ano",
+ "▁pian o",
+ "▁pia no",
+ "▁m etal",
+ "▁me tal",
+ "▁met al",
+ "▁meta l",
+ "▁s amples",
+ "▁sam ples",
+ "▁sample s",
+ "▁ samples",
+ "▁С ан",
+ "▁Са н",
+ "vari able",
+ "▁ста ть",
+ "▁inte gers",
+ "▁integer s",
+ "Wh ere",
+ "W here",
+ "famil y",
+ "▁n un",
+ "▁nu n",
+ "▁in crement",
+ "▁incre ment",
+ "▁ increment",
+ "ix ed",
+ "▁he eft",
+ "ft e",
+ "f te",
+ "▁v il",
+ "▁vi l",
+ "▁ vil",
+ "▁ot ros",
+ "▁otro s",
+ "Mult imedia",
+ "Multi media",
+ "▁Hen ri",
+ "ad ed",
+ "ade d",
+ "a ded",
+ "ге н",
+ "г ен",
+ "▁cap it",
+ "▁ca pit",
+ "▁други х",
+ "is p",
+ "i sp",
+ "IT Y",
+ "I TY",
+ "▁constraint s",
+ "▁K irche",
+ "▁Kir che",
+ "▁Kirch e",
+ "fo und",
+ "f ound",
+ "ши й",
+ "▁p ic",
+ "▁pi c",
+ "▁ pic",
+ "▁t ou",
+ "▁to u",
+ "cre d",
+ "cr ed",
+ "c red",
+ "ро б",
+ "р об",
+ "▁M ess",
+ "▁Me ss",
+ "▁Mes s",
+ "▁ Mess",
+ "Jo b",
+ "J ob",
+ "▁M ais",
+ "▁Ma is",
+ "▁Mai s",
+ "▁st yles",
+ "▁style s",
+ "▁sty les",
+ "▁ styles",
+ "fa ll",
+ "fal l",
+ "f all",
+ "▁U k",
+ "▁st reet",
+ "▁stre et",
+ "▁ street",
+ "oc cer",
+ "occ er",
+ "es en",
+ "ese n",
+ "e sen",
+ "▁col ors",
+ "▁color s",
+ "▁ colors",
+ "ce an",
+ "ю ще",
+ "con ne",
+ "conn e",
+ "c onne",
+ "▁r atio",
+ "▁rat io",
+ "an ton",
+ "ant on",
+ "anto n",
+ "▁F el",
+ "▁Fe l",
+ "▁custom er",
+ "▁cust omer",
+ "▁ customer",
+ "▁P rix",
+ "▁Pr ix",
+ "▁Pri x",
+ "rá s",
+ "r ás",
+ "pr ed",
+ "pre d",
+ "p red",
+ "▁elect ron",
+ "▁electro n",
+ "s ym",
+ "▁ве ли",
+ "▁ вели",
+ "▁over flow",
+ "▁ overflow",
+ "▁$ [",
+ "▁P OST",
+ "▁PO ST",
+ "▁ POST",
+ "▁C in",
+ "▁Ci n",
+ "sc heid",
+ "sche id",
+ "(\" /",
+ "( \"/",
+ "▁search ing",
+ "▁pur poses",
+ "▁purpose s",
+ "▁arr ived",
+ "▁arriv ed",
+ "▁arrive d",
+ "▁p unt",
+ "▁pu nt",
+ "▁pun t",
+ "▁l ad",
+ "▁la d",
+ "▁ lad",
+ "P ython",
+ "▁le ads",
+ "▁lead s",
+ "▁s and",
+ "▁sa nd",
+ "▁san d",
+ "па да",
+ "пад а",
+ "▁comm unes",
+ "▁commun es",
+ "▁commune s",
+ "▁CH AP",
+ "▁c aso",
+ "▁cas o",
+ "▁ca so",
+ "r z",
+ "▁d w",
+ "▁ dw",
+ "ac a",
+ "a ca",
+ "▁Col umb",
+ "child ren",
+ "ê t",
+ "sch emas",
+ "sche mas",
+ "schema s",
+ "▁instru ctions",
+ "▁instruction s",
+ "▁instruct ions",
+ "▁- \\",
+ "▁ -\\",
+ "▁Is rael",
+ "▁Isra el",
+ "no ści",
+ "▁об раз",
+ "▁обра з",
+ "▁ образ",
+ "▁со вет",
+ "▁сов ет",
+ "▁imm agini",
+ "▁F red",
+ "▁Fre d",
+ "▁Fr ed",
+ "▁G lobal",
+ "▁Glo bal",
+ "▁ Global",
+ "▁th ick",
+ "▁ thick",
+ "▁fue ron",
+ "▁fuer on",
+ "▁th rown",
+ "▁thr own",
+ "▁throw n",
+ "▁thro wn",
+ "▁c lock",
+ "▁cl ock",
+ "▁clo ck",
+ "▁ clock",
+ "en able",
+ "ena ble",
+ "'' '",
+ "' ''",
+ "▁S und",
+ "▁Su nd",
+ "▁Sun d",
+ "▁cont empor",
+ "an swer",
+ "ans wer",
+ "▁man ufact",
+ "▁i o",
+ "▁ io",
+ "q quad",
+ "OU T",
+ "O UT",
+ "▁L ab",
+ "▁La b",
+ "▁ Lab",
+ "▁Z w",
+ "le gal",
+ "leg al",
+ "▁V el",
+ "▁Ve l",
+ "▁ra ise",
+ "▁ raise",
+ "▁de liver",
+ "▁del iver",
+ "▁deli ver",
+ "▁V oir",
+ "▁Vo ir",
+ "▁ass umed",
+ "▁assum ed",
+ "▁assume d",
+ "Le t",
+ "L et",
+ "ier ten",
+ "iert en",
+ "ierte n",
+ "i erten",
+ "▁K ong",
+ "▁Kon g",
+ "▁Ko ng",
+ "▁E xp",
+ "▁Ex p",
+ "▁ Exp",
+ "▁J ug",
+ "▁Ju g",
+ "▁dec laration",
+ "▁declar ation",
+ "▁F ish",
+ "m é",
+ "▁spe ech",
+ "▁t ent",
+ "▁te nt",
+ "▁ten t",
+ "▁R oute",
+ "▁Ro ute",
+ "▁Rou te",
+ "▁Rout e",
+ "▁ Route",
+ "__ (",
+ "_ _(",
+ "▁ré alis",
+ "▁réal is",
+ "▁De sign",
+ "▁Des ign",
+ "set Text",
+ "▁St ation",
+ "▁Stat ion",
+ "▁Sta tion",
+ "▁Stati on",
+ "▁ Station",
+ "ar chy",
+ "arch y",
+ "arc hy",
+ "▁ка то",
+ "▁d ent",
+ "▁de nt",
+ "▁den t",
+ "▁ dent",
+ "▁K l",
+ "i ß",
+ "▁r isk",
+ "▁ris k",
+ "▁ri sk",
+ "▁B road",
+ "▁Bro ad",
+ "▁v ectors",
+ "▁ve ctors",
+ "▁vector s",
+ "▁S pec",
+ "▁Sp ec",
+ "▁Spe c",
+ "▁ Spec",
+ "▁ro utes",
+ "▁route s",
+ "▁rout es",
+ "▁rou tes",
+ "▁ routes",
+ "ym n",
+ "y mn",
+ "▁G reg",
+ "▁Gr eg",
+ "▁Gre g",
+ "▁полу чи",
+ "gi e",
+ "g ie",
+ "OR M",
+ "ве де",
+ "вед е",
+ "в еде",
+ "wa lt",
+ "wal t",
+ "w alt",
+ "▁e fter",
+ "P tr",
+ "▁su bt",
+ "▁sub t",
+ "▁b irth",
+ "▁bir th",
+ "▁dr awn",
+ "▁draw n",
+ "▁dra wn",
+ "me ss",
+ "mes s",
+ "m ess",
+ "мери кан",
+ "V E",
+ "▁P ut",
+ "▁Pu t",
+ "▁ Put",
+ "▁a sc",
+ "▁as c",
+ "▁ asc",
+ "▁f eder",
+ "▁fe der",
+ "▁fed er",
+ "с ли",
+ "▁P rin",
+ "▁Pr in",
+ "▁Pri n",
+ "▁s tick",
+ "▁st ick",
+ "re set",
+ "res et",
+ "y k",
+ "st udio",
+ "stud io",
+ "▁St ill",
+ "Con st",
+ "Cons t",
+ "ac ió",
+ "aci ó",
+ "a ció",
+ "▁Portug al",
+ "▁script s",
+ "▁scri pts",
+ "▁ scripts",
+ "und ial",
+ "▁l ives",
+ "▁li ves",
+ "▁live s",
+ "▁liv es",
+ "▁s zer",
+ "▁sz er",
+ "▁sze r",
+ "▁est ado",
+ "▁esta do",
+ "▁estad o",
+ "fo lder",
+ "fol der",
+ "fold er",
+ "f older",
+ "▁communic ation",
+ "Ro ute",
+ "Rout e",
+ "R oute",
+ "▁sw ift",
+ "▁ swift",
+ "те н",
+ "т ен",
+ "▁k ill",
+ "▁kil l",
+ "▁ki ll",
+ "▁ kill",
+ "▁P R",
+ "▁ PR",
+ "jo int",
+ "join t",
+ "j oint",
+ "▁ob jective",
+ "▁object ive",
+ "▁comp licated",
+ "▁Ü ber",
+ "es h",
+ "e sh",
+ "p icture",
+ "ra ine",
+ "rain e",
+ "rai ne",
+ "r aine",
+ "com put",
+ "comp ut",
+ "▁pro port",
+ "▁pr oport",
+ "▁prop ort",
+ "▁propor t",
+ "og s",
+ "o gs",
+ "ül t",
+ "ü lt",
+ "▁quant um",
+ "к ри",
+ "▁s op",
+ "▁so p",
+ "▁lo ops",
+ "▁loop s",
+ "▁Re ference",
+ "▁Refer ence",
+ "▁ Reference",
+ "▁n ei",
+ "▁ne i",
+ "IC E",
+ "I CE",
+ "▁v erm",
+ "▁ver m",
+ "▁ve rm",
+ "▁a dj",
+ "▁ad j",
+ "▁ adj",
+ "▁per ò",
+ "▁t rou",
+ "▁tr ou",
+ "▁tro u",
+ "is ions",
+ "ision s",
+ "isi ons",
+ "▁App le",
+ "▁Ap ple",
+ "serv able",
+ "▁B oston",
+ "▁Bo ston",
+ "▁Bos ton",
+ "or et",
+ "ore t",
+ "o ret",
+ "ok s",
+ "o ks",
+ "▁k g",
+ "▁ kg",
+ "def ined",
+ "define d",
+ "defin ed",
+ "d efined",
+ "pl atform",
+ "cl er",
+ "cle r",
+ "c ler",
+ "ograph ic",
+ "ri tt",
+ "rit t",
+ "r itt",
+ "▁d ic",
+ "▁di c",
+ "▁ dic",
+ "▁M ond",
+ "▁Mon d",
+ "▁Mo nd",
+ "▁I reland",
+ "▁Ir eland",
+ "▁U na",
+ "▁Un a",
+ "▁commer cial",
+ "▁P u",
+ "D i",
+ "▁е ё",
+ "▁pre cis",
+ "▁prec is",
+ "на род",
+ "нар од",
+ "▁qu atre",
+ "ust ral",
+ "ustr al",
+ "▁d ag",
+ "▁da g",
+ "▁ dag",
+ "ig ue",
+ "igu e",
+ "i gue",
+ "▁b urn",
+ "▁bu rn",
+ "▁bur n",
+ "▁ burn",
+ "▁offic er",
+ "▁office r",
+ "▁А в",
+ "▁high light",
+ "▁ highlight",
+ "▁Supp ose",
+ "▁Sup pose",
+ "od i",
+ "o di",
+ "serv let",
+ "▁En cyc",
+ "▁Enc yc",
+ "▁R ange",
+ "▁Ran ge",
+ "▁Rang e",
+ "▁ Range",
+ "ти й",
+ "P lease",
+ "▁ро ків",
+ "qu ant",
+ "qua nt",
+ "▁f lat",
+ "▁fl at",
+ "▁fla t",
+ "▁ flat",
+ "▁Ré férence",
+ "сле дова",
+ "след ова",
+ "ro le",
+ "rol e",
+ "r ole",
+ "▁d iesen",
+ "▁di esen",
+ "▁die sen",
+ "▁dies en",
+ "▁diese n",
+ "}} (",
+ "} }(",
+ "▁Ind ust",
+ "▁nú mer",
+ "▁\" ;",
+ "▁ \";",
+ "lu s",
+ "l us",
+ "ô le",
+ "▁z m",
+ "▁ zm",
+ "de g",
+ "d eg",
+ "▁r ough",
+ "▁ro ugh",
+ "▁rou gh",
+ "▁ rough",
+ "In v",
+ "▁h ur",
+ "▁hu r",
+ "▁R ess",
+ "▁Re ss",
+ "▁Res s",
+ "ch s",
+ "c hs",
+ "▁turn s",
+ "▁tur ns",
+ "ne ro",
+ "ner o",
+ "n ero",
+ "function s",
+ "fun ctions",
+ "ал и",
+ "а ли",
+ "▁hab itants",
+ "▁habit ants",
+ "а т",
+ "iss ues",
+ "issue s",
+ "▁h uge",
+ "▁hu ge",
+ "Util s",
+ "▁S at",
+ "▁Sa t",
+ "▁го судар",
+ "▁co ast",
+ "sh ape",
+ "sha pe",
+ "s hape",
+ "L C",
+ "▁log ging",
+ "▁ logging",
+ "en dor",
+ "end or",
+ "endo r",
+ "▁l ies",
+ "▁li es",
+ "▁lie s",
+ "▁ lies",
+ "▁d ifer",
+ "▁di fer",
+ "▁dif er",
+ "▁crit ical",
+ "▁critic al",
+ "X T",
+ "ми на",
+ "мин а",
+ "an sk",
+ "ans k",
+ "Result s",
+ "k c",
+ "ivers e",
+ "iver se",
+ "i verse",
+ "EX T",
+ "E XT",
+ "AL SE",
+ "▁v ál",
+ "▁vá l",
+ "P i",
+ "comp ile",
+ "hel lo",
+ "hell o",
+ "h ello",
+ "▁чем пи",
+ "▁It alia",
+ "▁Ital ia",
+ "▁ Italia",
+ "ко ло",
+ "кол о",
+ "к оло",
+ "▁ed ition",
+ "▁edit ion",
+ "gr und",
+ "gru nd",
+ "g rund",
+ "▁data frame",
+ "▁Follow ing",
+ "re ib",
+ "rei b",
+ "▁J eff",
+ "▁Je ff",
+ "▁citt à",
+ "IT able",
+ "I Table",
+ "▁$ (\\",
+ "▁$( \\",
+ "▁redu ced",
+ "▁reduce d",
+ "ob il",
+ "obi l",
+ "o bil",
+ "▁any where",
+ "' (",
+ "▁p hr",
+ "▁ph r",
+ "▁ phr",
+ "▁K h",
+ "▁F rame",
+ "▁Fr ame",
+ "▁Fra me",
+ "▁ Frame",
+ "▁man ual",
+ "▁ manual",
+ "▁c ra",
+ "▁cr a",
+ "▁ cra",
+ "▁V S",
+ "▁ VS",
+ "% =",
+ "Instance State",
+ "▁б ра",
+ "▁ бра",
+ "▁D rag",
+ "▁Dr ag",
+ "▁Dra g",
+ "▁ Drag",
+ "▁H err",
+ "▁He rr",
+ "▁Her r",
+ "▁г у",
+ "▁ гу",
+ "▁m ús",
+ "To ol",
+ "T ool",
+ "▁P rivate",
+ "▁Priv ate",
+ "▁ Private",
+ "▁s ynchron",
+ "▁syn chron",
+ "ir ation",
+ "ira tion",
+ "irat ion",
+ "▁о бо",
+ "▁об о",
+ "▁typ ically",
+ "▁typical ly",
+ "▁imp licit",
+ "or ient",
+ "ori ent",
+ "orie nt",
+ "▁t imer",
+ "▁time r",
+ "▁tim er",
+ "▁ti mer",
+ "▁ timer",
+ "▁kön nen",
+ "ie st",
+ "ies t",
+ "i est",
+ "ra id",
+ "rai d",
+ "▁expression s",
+ "▁express ions",
+ "▁expr essions",
+ "▁a im",
+ "▁ai m",
+ "▁s tre",
+ "▁st re",
+ "▁str e",
+ "▁ stre",
+ "▁w rap",
+ "▁wr ap",
+ "▁wra p",
+ "▁ wrap",
+ "▁B art",
+ "▁Bar t",
+ "▁Ba rt",
+ "▁b ron",
+ "▁br on",
+ "▁bro n",
+ "▁key board",
+ "po w",
+ "p ow",
+ "▁gru po",
+ "▁grup o",
+ "▁ре зу",
+ "▁prof essor",
+ "▁profess or",
+ "▁H ead",
+ "▁He ad",
+ "▁ Head",
+ "но ю",
+ "min us",
+ "m inus",
+ "▁Mich el",
+ "▁Mic hel",
+ "NO T",
+ "N OT",
+ "mo r",
+ "m or",
+ "] }",
+ "wide hat",
+ "ar is",
+ "ari s",
+ "a ris",
+ "тера тура",
+ "de fn",
+ "def n",
+ "is trz",
+ "ist rz",
+ "istr z",
+ "▁t anto",
+ "▁tan to",
+ "▁tant o",
+ "▁P ow",
+ "▁Po w",
+ "▁ind icate",
+ "▁indic ate",
+ "▁W inter",
+ "▁Win ter",
+ "res hold",
+ "resh old",
+ "рі в",
+ "р ів",
+ "▁` (",
+ "▁o wner",
+ "▁own er",
+ "▁ow ner",
+ "▁ owner",
+ "▁d isp",
+ "▁di sp",
+ "▁dis p",
+ "▁к ри",
+ "▁ кри",
+ "ме т",
+ "м ет",
+ "мен т",
+ "м ент",
+ "re port",
+ "rep ort",
+ "repo rt",
+ "re quire",
+ "▁v oy",
+ "▁vo y",
+ "▁ voy",
+ "▁A P",
+ "▁ AP",
+ "▁Esp aña",
+ "▁Españ a",
+ "▁S ão",
+ "j är",
+ "No n",
+ "N on",
+ "Li brary",
+ "L ibrary",
+ "ich ten",
+ "icht en",
+ "ichte n",
+ "i chten",
+ "▁struct ures",
+ "▁structure s",
+ "▁m uy",
+ "▁mu y",
+ "ár io",
+ "á rio",
+ "▁cert ificate",
+ "▁certific ate",
+ "чно го",
+ "ч ного",
+ "▁prov ince",
+ "▁provin ce",
+ "pa ges",
+ "page s",
+ "pag es",
+ "p ages",
+ "da l",
+ "d al",
+ "▁Fre der",
+ "▁Fr eder",
+ "▁Fred er",
+ "ь е",
+ "Exec ute",
+ "▁an cient",
+ "▁anci ent",
+ "▁anc ient",
+ "▁ancien t",
+ "▁fil ms",
+ "▁film s",
+ "▁Al fred",
+ "▁Alf red",
+ "Aut o",
+ "A uto",
+ "▁a tom",
+ "▁at om",
+ "▁ atom",
+ "▁e ll",
+ "▁el l",
+ "▁ ell",
+ "▁H arr",
+ "▁Har r",
+ "▁Ha rr",
+ "й н",
+ "▁\" #",
+ "▁n acional",
+ "▁nac ional",
+ "▁neigh bor",
+ "▁neighb or",
+ "сту па",
+ "ступ а",
+ "▁w it",
+ "Po p",
+ "P op",
+ "▁G reek",
+ "▁Gre ek",
+ "▁Gree k",
+ "▁re peat",
+ "▁repe at",
+ "▁ repeat",
+ "ba d",
+ "b ad",
+ "▁S C",
+ "▁ SC",
+ "▁Date Time",
+ "▁ DateTime",
+ "ш ти",
+ "▁W H",
+ "▁ WH",
+ "▁пра ви",
+ "▁прав и",
+ "▁ прави",
+ "▁Т и",
+ "▁s aison",
+ "▁sa ison",
+ "▁H art",
+ "▁Har t",
+ "▁Ha rt",
+ "direct ory",
+ "d irectory",
+ "ua n",
+ "u an",
+ "no rm",
+ "nor m",
+ "n orm",
+ "▁Phil ipp",
+ "▁Phili pp",
+ "▁Philip p",
+ "▁su spect",
+ "▁sus pect",
+ "▁susp ect",
+ "▁an no",
+ "▁ann o",
+ "▁ anno",
+ "b c",
+ "с ла",
+ "$ (",
+ "▁be find",
+ "▁bef ind",
+ "oc s",
+ "o cs",
+ "la test",
+ "lat est",
+ "late st",
+ ";\" >",
+ "; \">",
+ "▁after wards",
+ "PU T",
+ "P UT",
+ "▁j a",
+ "▁ ja",
+ "▁H il",
+ "▁Hi l",
+ "y z",
+ "▁B our",
+ "▁Bo ur",
+ "▁Bou r",
+ "▁la id",
+ "▁Д же",
+ "▁Дж е",
+ "pi e",
+ "p ie",
+ "w atch",
+ "▁E q",
+ "▁ Eq",
+ "cont act",
+ "ib er",
+ "ibe r",
+ "i ber",
+ "check box",
+ "▁esp añ",
+ "▁espa ñ",
+ "an se",
+ "ans e",
+ "▁ш ко",
+ "▁ шко",
+ "ef f",
+ "e ff",
+ "xx x",
+ "x xx",
+ "▁G ET",
+ "▁ GET",
+ "▁l ov",
+ "▁lo v",
+ "▁ lov",
+ "it ute",
+ "itu te",
+ "itut e",
+ "ze ch",
+ "zec h",
+ "z ech",
+ "ter e",
+ "te re",
+ "t ere",
+ "▁p urs",
+ "▁pu rs",
+ "▁pur s",
+ "ke ns",
+ "ken s",
+ "k ens",
+ "ian te",
+ "i ante",
+ "▁F ree",
+ "▁Fre e",
+ "▁Fr ee",
+ "▁ Free",
+ "▁ор гани",
+ "▁орган и",
+ "kre is",
+ "▁{ :",
+ "▁ {:",
+ "sh ared",
+ "share d",
+ "sha red",
+ "▁G raph",
+ "▁Gr aph",
+ "▁Gra ph",
+ "▁ Graph",
+ "▁conne ctions",
+ "▁connection s",
+ "▁connect ions",
+ "▁D OM",
+ "▁DO M",
+ "▁ DOM",
+ "▁C art",
+ "▁Car t",
+ "▁Ca rt",
+ "▁ Cart",
+ "ss on",
+ "s son",
+ "▁H amilton",
+ "те ли",
+ "тел и",
+ "▁r estaur",
+ "▁rest aur",
+ "▁resta ur",
+ "Re sol",
+ "Res ol",
+ "Dr iver",
+ "D river",
+ "▁en f",
+ "▁ enf",
+ "ED IT",
+ "▁p rev",
+ "▁pr ev",
+ "▁pre v",
+ "▁ prev",
+ "▁i k",
+ "▁ ik",
+ "▁s ă",
+ "j ö",
+ "▁С ССР",
+ "▁col our",
+ "ch ten",
+ "cht en",
+ "chte n",
+ "▁e stad",
+ "▁est ad",
+ "▁esta d",
+ "in ois",
+ "ino is",
+ "▁con fir",
+ "▁conf ir",
+ "▁v é",
+ "▁ vé",
+ "▁C es",
+ "▁Ce s",
+ "▁N ever",
+ "▁Ne ver",
+ "▁Nev er",
+ "om er",
+ "ome r",
+ "o mer",
+ "ж да",
+ "с лу",
+ "че ния",
+ "dl l",
+ "d ll",
+ "▁y outh",
+ "▁you th",
+ "▁yo uth",
+ "em en",
+ "eme n",
+ "e men",
+ "▁stud ied",
+ "▁studi ed",
+ "▁K il",
+ "▁Ki l",
+ "ci on",
+ "cio n",
+ "c ion",
+ "▁n avig",
+ "▁nav ig",
+ "re quired",
+ "require d",
+ "orith ms",
+ "orithm s",
+ "il or",
+ "ilo r",
+ "i lor",
+ "▁Deutsch en",
+ "▁Deutsche n",
+ "▁person s",
+ "▁pers ons",
+ "▁Barcel ona",
+ "▁form ation",
+ "▁format ion",
+ "▁forma tion",
+ "▁ formation",
+ "ab ei",
+ "abe i",
+ "a bei",
+ "▁про тив",
+ "▁проти в",
+ "Eng ine",
+ "ON E",
+ "O NE",
+ "og rá",
+ "Ca p",
+ "C ap",
+ "ri r",
+ "r ir",
+ "▁g ate",
+ "▁ga te",
+ "▁gat e",
+ "▁ gate",
+ "or ation",
+ "ora tion",
+ "ma ven",
+ "m aven",
+ "▁comb ined",
+ "▁combin ed",
+ "▁combine d",
+ "▁at tr",
+ "▁att r",
+ "▁ attr",
+ "▁h ook",
+ "▁ho ok",
+ "▁ hook",
+ "▁которы й",
+ "▁ser vers",
+ "▁server s",
+ "▁serv ers",
+ "▁serve rs",
+ "uct ure",
+ "же ння",
+ "жен ня",
+ "t v",
+ "▁re q",
+ "▁r eq",
+ "▁ req",
+ "ja l",
+ "j al",
+ "▁loc ally",
+ "▁local ly",
+ "}} {\\",
+ "}}{ \\",
+ "} }{\\",
+ "B r",
+ "▁H ier",
+ "▁Hi er",
+ "мо р",
+ "м ор",
+ "▁a part",
+ "▁ap art",
+ "▁apar t",
+ "\"] ,",
+ "\" ],",
+ "▁%> %",
+ "▁z usammen",
+ "▁zus ammen",
+ "▁ident ify",
+ "▁Al tern",
+ "▁Alt ern",
+ "▁Alter n",
+ "▁б ро",
+ "▁ бро",
+ "▁ц и",
+ "▁ ци",
+ "g h",
+ "▁T en",
+ "▁Te n",
+ "R S",
+ "фор ма",
+ "▁n elle",
+ "▁ne lle",
+ "▁nel le",
+ "▁nell e",
+ "▁ nelle",
+ "▁H in",
+ "▁Hi n",
+ "ound ing",
+ "oun ding",
+ "▁re prés",
+ "▁rep rés",
+ "▁repr és",
+ "ap h",
+ "a ph",
+ "▁[ \\",
+ "▁ [\\",
+ "▁S ports",
+ "▁Sport s",
+ "ра л",
+ "р ал",
+ "▁t hre",
+ "▁th re",
+ "▁thr e",
+ "▁p rin",
+ "▁pr in",
+ "▁pri n",
+ "▁El iz",
+ "▁Eli z",
+ "▁F our",
+ "▁Fou r",
+ "▁Fo ur",
+ "▁soci ety",
+ "▁soc iety",
+ "Trans action",
+ "▁v eg",
+ "▁ve g",
+ "▁ veg",
+ "▁sch ools",
+ "▁school s",
+ "▁over all",
+ "▁t ail",
+ "▁ta il",
+ "▁ tail",
+ "üb er",
+ "ü ber",
+ "▁S ov",
+ "▁So v",
+ "▁С ер",
+ "▁Се р",
+ "▁r app",
+ "▁ra pp",
+ "▁rap p",
+ "▁tra ffic",
+ "qu estion",
+ "quest ion",
+ "ques tion",
+ "▁en viron",
+ "▁envi ron",
+ "▁ environ",
+ "ate ien",
+ "ic us",
+ "i cus",
+ "▁n arrow",
+ "▁narr ow",
+ "▁nar row",
+ "▁p ray",
+ "▁pr ay",
+ "▁pra y",
+ "▁B ou",
+ "▁Bo u",
+ "▁C lient",
+ "▁Cl ient",
+ "▁ Client",
+ "ab l",
+ "a bl",
+ "▁Aud iod",
+ "▁Audio d",
+ "▁n pm",
+ "▁np m",
+ "▁ npm",
+ "▁Col umn",
+ "▁ Column",
+ "▁G ames",
+ "▁Game s",
+ "▁Ga mes",
+ "▁Gam es",
+ "av er",
+ "ave r",
+ "a ver",
+ "ony mes",
+ "onym es",
+ "onyme s",
+ "▁По сле",
+ "n ą",
+ "▁N u",
+ "▁D ick",
+ "▁Di ck",
+ "▁Dic k",
+ "▁t ensor",
+ "▁tens or",
+ "▁ tensor",
+ "▁@ \"",
+ "▁ @\"",
+ "v é",
+ "I con",
+ "▁по да",
+ "▁под а",
+ "▁ пода",
+ "▁G on",
+ "▁Go n",
+ "/) .",
+ "/ ).",
+ "is tra",
+ "ist ra",
+ "istr a",
+ "i stra",
+ "▁Audiod ateien",
+ "De lete",
+ "Del ete",
+ "}} }",
+ "} }}",
+ "▁j ump",
+ "▁ju mp",
+ "▁О б",
+ "▁princi ple",
+ "▁princip le",
+ "▁Ét ats",
+ "ok ed",
+ "oke d",
+ "o ked",
+ "▁В ла",
+ "Inter val",
+ "▁s au",
+ "▁sa u",
+ "en code",
+ "enc ode",
+ "▁p on",
+ "▁po n",
+ "▁ pon",
+ "cat ch",
+ "c atch",
+ "▁t iem",
+ "▁ti em",
+ "▁tie m",
+ "▁G ust",
+ "▁Gu st",
+ "M C",
+ "lim its",
+ "limit s",
+ "▁ke eping",
+ "▁keep ing",
+ "▁s ongs",
+ "▁son gs",
+ "▁song s",
+ "▁ав гу",
+ "▁рай он",
+ "▁райо н",
+ "▁not ification",
+ "▁ notification",
+ "▁off ered",
+ "▁offer ed",
+ "Co r",
+ "C or",
+ "▁sh ut",
+ "error s",
+ "err ors",
+ "▁E N",
+ "▁ EN",
+ "▁lat ach",
+ "▁sel bst",
+ "▁check box",
+ "▁ checkbox",
+ "▁c ool",
+ "▁co ol",
+ "▁f actory",
+ "▁fact ory",
+ "▁factor y",
+ "▁ factory",
+ "▁pa id",
+ "dim ensional",
+ "ni ej",
+ "nie j",
+ "n iej",
+ "pt on",
+ "pto n",
+ "p ton",
+ "▁p in",
+ "▁pi n",
+ "▁ pin",
+ "ak ed",
+ "ake d",
+ "a ked",
+ "▁re li",
+ "▁r eli",
+ "▁rel i",
+ "▁T aylor",
+ "▁S omething",
+ "▁Some thing",
+ "▁Som ething",
+ "▁ Something",
+ "im um",
+ "▁V in",
+ "▁Vi n",
+ "▁iter ation",
+ "Fin d",
+ "Fi nd",
+ "F ind",
+ "ко ви",
+ "ков и",
+ "к ови",
+ "▁bo ys",
+ "▁boy s",
+ "▁Sim ple",
+ "▁ Simple",
+ "▁C rist",
+ "▁Cr ist",
+ "▁Cris t",
+ "▁W as",
+ "▁Wa s",
+ "ân d",
+ "â nd",
+ "▁V a",
+ "▁т ра",
+ "▁ тра",
+ "▁dest ination",
+ "▁destin ation",
+ "▁ destination",
+ "li mp",
+ "lim p",
+ "l imp",
+ "▁K at",
+ "▁Ka t",
+ "wor th",
+ "wort h",
+ "w orth",
+ "▁K or",
+ "▁Ko r",
+ "i ção",
+ "= `",
+ "▁fair ly",
+ "fall s",
+ "fal ls",
+ "f alls",
+ "▁re ject",
+ "▁d ream",
+ "▁dre am",
+ "be ll",
+ "bel l",
+ "b ell",
+ "▁t oute",
+ "▁to ute",
+ "▁tout e",
+ "▁tou te",
+ "▁$ \\{",
+ "▁$\\ {",
+ "▁st one",
+ "▁sto ne",
+ "▁ stone",
+ "▁prote ct",
+ "▁prot ect",
+ "▁ex cell",
+ "▁exc ell",
+ "▁excel l",
+ "▁Me xico",
+ "▁Mex ico",
+ "▁d ash",
+ "▁da sh",
+ "▁das h",
+ "▁ dash",
+ "▁f ault",
+ "▁fa ult",
+ "▁ fault",
+ "p matrix",
+ "al ler",
+ "all er",
+ "alle r",
+ "▁guer re",
+ "or igin",
+ "ori gin",
+ "orig in",
+ "hi bernate",
+ "í lia",
+ "▁Reg ister",
+ "▁ Register",
+ "un to",
+ "unt o",
+ "▁B at",
+ "▁Ba t",
+ "▁b ow",
+ "▁bo w",
+ "▁ bow",
+ "сь ких",
+ "ськ их",
+ "et à",
+ "▁L uis",
+ "▁Lu is",
+ "▁f ou",
+ "▁fo u",
+ "▁Cam bridge",
+ "▁Camb ridge",
+ "▁o tt",
+ "▁ot t",
+ "▁ ott",
+ "su p",
+ "s up",
+ "re as",
+ "rea s",
+ "▁point ers",
+ "▁pointer s",
+ "▁Bo ard",
+ "▁ Board",
+ "▁р и",
+ "▁ ри",
+ "▁d riv",
+ "▁dr iv",
+ "▁dri v",
+ "ни н",
+ "н ин",
+ "▁C irc",
+ "▁Ci rc",
+ "▁Cir c",
+ "▁ Circ",
+ "▁t hou",
+ "▁th ou",
+ "Di v",
+ "D iv",
+ "sp ark",
+ "s park",
+ "la ment",
+ "lam ent",
+ "l ament",
+ "▁V AL",
+ "▁ VAL",
+ "Se nd",
+ "S end",
+ "▁Ir ish",
+ "o y",
+ "▁T u",
+ "▁ Tu",
+ "▁t rivial",
+ "Form s",
+ "For ms",
+ "▁as í",
+ "▁Im per",
+ "▁Imp er",
+ "▁sign ature",
+ "un os",
+ "uno s",
+ "u nos",
+ "▁N eg",
+ "▁Ne g",
+ "▁can cel",
+ "▁ cancel",
+ "▁Hein rich",
+ "ee d",
+ "e ed",
+ "Ill ustration",
+ "▁s ulla",
+ "▁su lla",
+ "▁sul la",
+ "▁sull a",
+ "▁qu arter",
+ "▁quart er",
+ "▁quar ter",
+ "as z",
+ "a sz",
+ "▁b log",
+ "▁bl og",
+ "▁blo g",
+ "▁ blog",
+ "fi ca",
+ "fic a",
+ "f ica",
+ "wo n",
+ "w on",
+ "qu et",
+ "que t",
+ "q uet",
+ "]) )",
+ "] ))",
+ "▁gener ation",
+ "▁c aught",
+ "▁ caught",
+ "▁l ands",
+ "▁land s",
+ "▁lan ds",
+ "▁ lands",
+ "▁King dom",
+ "schaft en",
+ "ro ns",
+ "ron s",
+ "r ons",
+ "ann els",
+ "annel s",
+ "anne ls",
+ "▁Spe cial",
+ "▁Spec ial",
+ "▁ Special",
+ "t utorial",
+ "ti p",
+ "t ip",
+ "▁\" \",",
+ "▁\"\" ,",
+ "▁Az ure",
+ "▁ Azure",
+ "▁b ounded",
+ "▁bound ed",
+ "▁ bounded",
+ "S m",
+ "ta r",
+ "t ar",
+ "ве н",
+ "в ен",
+ "▁з ем",
+ "▁зе м",
+ "▁ зем",
+ "▁not ation",
+ "▁ notation",
+ "▁ap ache",
+ "▁ apache",
+ "▁g az",
+ "▁ga z",
+ "ier no",
+ "i erno",
+ "an gen",
+ "ang en",
+ "ange n",
+ "pect ive",
+ "▁elect ric",
+ "▁s emi",
+ "▁se mi",
+ "▁sem i",
+ "MA X",
+ "M AX",
+ "ed erb",
+ "eder b",
+ "ede rb",
+ "object s",
+ "▁dif ferences",
+ "▁differ ences",
+ "▁difference s",
+ "is ted",
+ "ist ed",
+ "iste d",
+ "i sted",
+ "hr ef",
+ "hre f",
+ "h ref",
+ "ic ip",
+ "ici p",
+ "i cip",
+ "▁num py",
+ "▁ numpy",
+ "▁ф утбо",
+ "lo ader",
+ "load er",
+ "▁d ich",
+ "▁di ch",
+ "▁dic h",
+ "љ у",
+ "▁D é",
+ "H z",
+ "▁P aram",
+ "▁Par am",
+ "▁Pa ram",
+ "▁Para m",
+ "▁ Param",
+ "document ation",
+ "ir craft",
+ "irc raft",
+ "E M",
+ "▁inst itution",
+ "▁instit ution",
+ "com pat",
+ "comp at",
+ "▁а ль",
+ "▁ал ь",
+ "▁ аль",
+ "сла в",
+ "с лав",
+ "▁N et",
+ "▁Ne t",
+ "▁ Net",
+ "ци ональ",
+ "цион аль",
+ "циона ль",
+ "▁broad cast",
+ "date time",
+ "dat etime",
+ "as ync",
+ "asy nc",
+ "a sync",
+ "vr e",
+ "v re",
+ "me an",
+ "▁C hem",
+ "▁Ch em",
+ "▁Che m",
+ "▁est imate",
+ "▁estim ate",
+ "ic ana",
+ "ica na",
+ "ican a",
+ "▁g rep",
+ "▁gr ep",
+ "▁gre p",
+ "▁ grep",
+ "te k",
+ "t ek",
+ "ä m",
+ "or ig",
+ "ori g",
+ "o rig",
+ "▁Vict or",
+ "▁Vi ctor",
+ "▁Vic tor",
+ "ut enant",
+ "ute nant",
+ "uten ant",
+ "an ga",
+ "ang a",
+ "pi n",
+ "p in",
+ "▁ver tex",
+ "▁vert ex",
+ "▁verte x",
+ "▁CHAP TER",
+ "ci ty",
+ "cit y",
+ "c ity",
+ "ug by",
+ "gr een",
+ "gre en",
+ "g reen",
+ "▁K er",
+ "▁Ke r",
+ "▁dif fér",
+ "▁diff ér",
+ "▁necess arily",
+ "D C",
+ "Line ar",
+ "Lin ear",
+ "Li near",
+ "al em",
+ "ale m",
+ "a lem",
+ "▁L ater",
+ "▁La ter",
+ "▁Lat er",
+ "▁Late r",
+ "▁m eta",
+ "▁me ta",
+ "▁met a",
+ "▁ meta",
+ "je m",
+ "j em",
+ "ra gen",
+ "rag en",
+ "rage n",
+ "r agen",
+ "Ma y",
+ "M ay",
+ "▁Mitg lied",
+ "▁s orted",
+ "▁sort ed",
+ "▁sor ted",
+ "▁sorte d",
+ "▁ sorted",
+ "us sen",
+ "uss en",
+ "▁sp oke",
+ "▁spo ke",
+ "▁dis abled",
+ "▁disable d",
+ "▁ disabled",
+ "▁accompl ish",
+ "▁accomp lish",
+ "▁Russ ia",
+ "th ere",
+ "ther e",
+ "the re",
+ "t here",
+ "ee s",
+ "e es",
+ "▁h all",
+ "▁ha ll",
+ "▁hal l",
+ "▁ hall",
+ "▁met ric",
+ "▁ metric",
+ "att ribute",
+ "то го",
+ "т ого",
+ "ab out",
+ "▁L am",
+ "▁La m",
+ "ch annel",
+ "chan nel",
+ "▁e pisode",
+ "▁epis ode",
+ "▁$ ('.",
+ "▁$( '.",
+ "▁$(' .",
+ "▁ ought",
+ "▁E ste",
+ "▁Est e",
+ "▁Es te",
+ "Object s",
+ "▁valid ate",
+ "▁ validate",
+ "▁r im",
+ "▁ri m",
+ "▁ rim",
+ "▁numer ous",
+ "▁numero us",
+ "▁J avascript",
+ "▁Java script",
+ "▁G L",
+ "▁ GL",
+ "▁It aly",
+ "▁Ital y",
+ "ederb örd",
+ "on ato",
+ "ona to",
+ "bo oks",
+ "book s",
+ "st one",
+ "ston e",
+ "sto ne",
+ "х у",
+ "▁j el",
+ "▁je l",
+ "▁ jel",
+ "ir i",
+ "i ri",
+ "▁A SP",
+ "▁AS P",
+ "G A",
+ "▁st ata",
+ "▁stat a",
+ "▁sta ta",
+ "▁b az",
+ "▁ba z",
+ "▁ baz",
+ "Da y",
+ "D ay",
+ "th m",
+ "t hm",
+ "d h",
+ "▁F iles",
+ "▁Fil es",
+ "▁File s",
+ "▁ Files",
+ "Android Runtime",
+ "▁che cks",
+ "▁check s",
+ "k r",
+ "▁v enne",
+ "▁ven ne",
+ "S L",
+ "av ia",
+ "avi a",
+ "a via",
+ "ka zy",
+ "kaz y",
+ "k azy",
+ "▁Th ree",
+ "▁ Three",
+ "Ad min",
+ "▁col lege",
+ "▁coll ege",
+ "▁colleg e",
+ "▁colle ge",
+ "G lobal",
+ "ti on",
+ "t ion",
+ "▁cur ious",
+ "sh ort",
+ "▁b ass",
+ "▁bas s",
+ "▁ba ss",
+ "де ла",
+ "▁де я",
+ "Sch ema",
+ "' \\",
+ "di ff",
+ "d iff",
+ "▁C A",
+ "▁ CA",
+ "▁Cor por",
+ "▁oper ators",
+ "▁operator s",
+ "om rå",
+ "▁ed ges",
+ "▁edge s",
+ "); `",
+ ") ;`",
+ "in ds",
+ "ind s",
+ "▁g ing",
+ "▁gi ng",
+ "▁ ging",
+ "& &",
+ "}- \\",
+ "} -\\",
+ "ra no",
+ "ran o",
+ "r ano",
+ "▁s ão",
+ "▁ad ds",
+ "▁add s",
+ "el or",
+ "elo r",
+ "e lor",
+ "▁un signed",
+ "▁uns igned",
+ "▁ unsigned",
+ "▁п р",
+ "▁ пр",
+ "▁Con fig",
+ "▁Conf ig",
+ "▁ Config",
+ "▁E sc",
+ "▁Es c",
+ "▁ch ose",
+ "▁cho se",
+ "▁pie ces",
+ "▁piece s",
+ "▁reg ions",
+ "▁region s",
+ "Es t",
+ "E st",
+ "▁B attle",
+ "▁Batt le",
+ "▁f oc",
+ "▁fo c",
+ "▁L ight",
+ "▁Lig ht",
+ "▁ Light",
+ "pad ding",
+ "p adding",
+ "ab en",
+ "abe n",
+ "a ben",
+ "▁e urop",
+ "▁eu rop",
+ "▁euro p",
+ "il lon",
+ "ill on",
+ "illo n",
+ "▁е сть",
+ "▁b ord",
+ "▁bo rd",
+ "▁bor d",
+ "▁о тно",
+ "▁от но",
+ "▁H ong",
+ "▁Hon g",
+ "▁Ho ng",
+ "▁v ul",
+ "▁vu l",
+ "pl ugins",
+ "plugin s",
+ "▁' <",
+ "▁k ur",
+ "▁ kur",
+ "reg ion",
+ "▁Re pub",
+ "▁Rep ub",
+ "ic her",
+ "ich er",
+ "iche r",
+ "i cher",
+ "}_ \\",
+ "} _\\",
+ "▁me dal",
+ "▁med al",
+ "▁More over",
+ "B I",
+ "A v",
+ "ut er",
+ "ute r",
+ "u ter",
+ "▁s can",
+ "▁sc an",
+ "▁ scan",
+ "▁M unicip",
+ "▁Mun icip",
+ "▁contr ast",
+ "▁contra st",
+ "▁I g",
+ "▁ Ig",
+ "▁го род",
+ "▁горо д",
+ "▁гор од",
+ "▁ город",
+ "rel ated",
+ "al ing",
+ "ali ng",
+ "alin g",
+ "a ling",
+ "▁м ат",
+ "▁ма т",
+ "▁ мат",
+ "ün st",
+ "▁Ch ris",
+ "▁Chr is",
+ "w y",
+ "▁Act ually",
+ "▁Univers idad",
+ "Event Listener",
+ "▁tempor ada",
+ "▁ass ignment",
+ "▁assign ment",
+ "▁M ike",
+ "▁Mi ke",
+ "▁Mik e",
+ "▁w ährend",
+ "▁ś wi",
+ "▁św i",
+ "▁с ред",
+ "▁сре д",
+ "ка де",
+ "▁calcul ated",
+ "▁calculate d",
+ "▁calc ulated",
+ "▁el ler",
+ "▁elle r",
+ "▁ell er",
+ "▁ eller",
+ "▁A sh",
+ "▁As h",
+ "ri el",
+ "rie l",
+ "r iel",
+ "▁hard ware",
+ "▁int ens",
+ "▁inte ns",
+ "▁inten s",
+ "(' .",
+ "( '.",
+ "il li",
+ "ill i",
+ "ag on",
+ "ago n",
+ "a gon",
+ "▁G y",
+ "▁he ute",
+ "▁heut e",
+ "▁s le",
+ "▁sl e",
+ "▁liter ature",
+ "se m",
+ "s em",
+ "man ager",
+ "mana ger",
+ "▁Gr ande",
+ "▁Gra nde",
+ "▁Grand e",
+ "▁Gran de",
+ "▁m ixed",
+ "▁mix ed",
+ "▁В ер",
+ "▁Ве р",
+ "í cí",
+ "▁s oit",
+ "▁so it",
+ "▁wel come",
+ "че ние",
+ "▁Univers ität",
+ "▁bu ilder",
+ "▁build er",
+ "▁ builder",
+ "sim ple",
+ "simp le",
+ "ic ode",
+ "ico de",
+ "i code",
+ "ř e",
+ "in dent",
+ "ind ent",
+ "inden t",
+ "inde nt",
+ "op o",
+ "o po",
+ "▁ad vanced",
+ "▁adv anced",
+ "▁advance d",
+ "tem per",
+ "temp er",
+ "ed ge",
+ "▁dat etime",
+ "▁date time",
+ "▁ datetime",
+ "▁d onc",
+ "▁do nc",
+ "▁don c",
+ "ла ння",
+ "лан ня",
+ "▁v erd",
+ "▁ver d",
+ "▁ve rd",
+ "д но",
+ "it os",
+ "ito s",
+ "▁he at",
+ "vi sible",
+ "vis ible",
+ "me l",
+ "m el",
+ "▁Giov anni",
+ "▁var iety",
+ "▁vari ety",
+ "▁r outer",
+ "▁ro uter",
+ "▁route r",
+ "▁rout er",
+ "▁rou ter",
+ "▁ router",
+ "Vec tor",
+ "V ector",
+ "▁W alk",
+ "▁Wal k",
+ "▁ob viously",
+ "▁obvious ly",
+ "he in",
+ "h ein",
+ "Fi n",
+ "F in",
+ "ITable View",
+ "Y ear",
+ "▁E conom",
+ "▁vel ocity",
+ "▁veloc ity",
+ "▁C ivil",
+ "▁Ci vil",
+ "▁ ј",
+ "al ert",
+ "ale rt",
+ "aler t",
+ "Ident ifier",
+ "èn cia",
+ "▁normal ly",
+ "▁norm ally",
+ "▁E gypt",
+ "▁Egy pt",
+ "▁c tx",
+ "▁ ctx",
+ "▁Ver ein",
+ "▁Vere in",
+ "▁H u",
+ "ult ure",
+ "ultur e",
+ "ни те",
+ "l é",
+ "▁W ien",
+ "▁Wi en",
+ "▁Wie n",
+ "▁P rz",
+ "▁Pr z",
+ "By te",
+ "▁n ah",
+ "▁na h",
+ "▁ nah",
+ "is ms",
+ "ism s",
+ "▁Pub lish",
+ "▁He rz",
+ "▁Her z",
+ "ic ul",
+ "i cul",
+ "pis ode",
+ "ч і",
+ "▁die sem",
+ "▁dies em",
+ "▁diese m",
+ "k ö",
+ "Vis ible",
+ "▁r ig",
+ "▁ri g",
+ "▁ rig",
+ "`) .",
+ "` ).",
+ "Par se",
+ "P arse",
+ "▁Jac ques",
+ "N I",
+ "▁g lass",
+ "▁gl ass",
+ "▁gla ss",
+ "▁ glass",
+ "-- -+",
+ "--- +",
+ "- --+",
+ "▁initial ly",
+ "▁initi ally",
+ "▁k r",
+ "▁ kr",
+ "CC N",
+ "C CN",
+ "pl ays",
+ "play s",
+ "pla ys",
+ "▁s igu",
+ "▁si gu",
+ "▁sig u",
+ "F older",
+ "st orage",
+ "sto rage",
+ "stor age",
+ "▁\\ |",
+ "▁ \\|",
+ "iv os",
+ "ivo s",
+ "i vos",
+ "ск ую",
+ "ску ю",
+ "▁M oh",
+ "▁Mo h",
+ "▁Comm ittee",
+ "▁K im",
+ "▁Ki m",
+ "e u",
+ "те м",
+ "т ем",
+ "▁orig inale",
+ "▁original e",
+ "▁origin ale",
+ "ir s",
+ "i rs",
+ "▁R eb",
+ "▁Re b",
+ "it ut",
+ "itu t",
+ "n l",
+ "▁P ier",
+ "▁Pi er",
+ "▁Pie r",
+ "▁] ;",
+ "▁ ];",
+ "▁F al",
+ "▁Fa l",
+ "▁\" \";",
+ "▁\"\" ;",
+ "mv c",
+ "m vc",
+ "▁fe male",
+ "▁fem ale",
+ "▁b ridge",
+ "▁br idge",
+ "▁brid ge",
+ "▁ bridge",
+ "▁t ít",
+ "kt r",
+ "k tr",
+ "> )",
+ "▁se at",
+ "▁sea t",
+ "▁v ess",
+ "▁ve ss",
+ "▁ves s",
+ "▁U SB",
+ "▁US B",
+ "▁Art icles",
+ "▁Article s",
+ "▁De scription",
+ "▁Des cription",
+ "▁Descri ption",
+ "▁ Description",
+ "▁o c",
+ "▁ oc",
+ "▁h ouses",
+ "▁house s",
+ "▁ho uses",
+ "▁hous es",
+ "▁П ет",
+ "▁Пе т",
+ "lo n",
+ "l on",
+ "Not ification",
+ "▁press ure",
+ "▁ку ль",
+ "▁ куль",
+ "ig ned",
+ "ign ed",
+ "igne d",
+ "▁relig ious",
+ "fa n",
+ "f an",
+ "ig lia",
+ "igli a",
+ "▁class ification",
+ "▁classific ation",
+ "og ether",
+ "oge ther",
+ "▁S DK",
+ "▁SD K",
+ "▁ SDK",
+ "▁H uman",
+ "▁Hu man",
+ "▁Hum an",
+ "▁com mission",
+ "▁comm ission",
+ "▁О р",
+ "▁an tes",
+ "▁ant es",
+ "▁ante s",
+ "▁ antes",
+ "D T",
+ "èt e",
+ "è te",
+ "pr és",
+ "p rés",
+ "/ \"",
+ "▁( «",
+ "▁h ö",
+ "▁ hö",
+ "▁ча с",
+ "▁ час",
+ "▁j ak",
+ "▁ja k",
+ "▁ jak",
+ "ie nen",
+ "ien en",
+ "iene n",
+ "i enen",
+ "ug g",
+ "u gg",
+ "W A",
+ "▁place holder",
+ "▁ placeholder",
+ "Wil l",
+ "W ill",
+ ", ,",
+ "▁K am",
+ "▁Ka m",
+ "▁w en",
+ "▁we n",
+ "▁ wen",
+ "▁Sch ul",
+ "ți e",
+ "ț ie",
+ "▁a ud",
+ "▁au d",
+ "▁ aud",
+ "▁s ue",
+ "▁su e",
+ "▁re ferred",
+ "▁refer red",
+ "ва т",
+ "в ат",
+ "▁P ara",
+ "▁Par a",
+ "▁Pa ra",
+ "▁b la",
+ "▁bl a",
+ "▁ bla",
+ "UE S",
+ "U ES",
+ "▁stat ist",
+ "▁stati st",
+ "▁т у",
+ "▁ ту",
+ "▁Wars za",
+ "gu e",
+ "g ue",
+ "▁I de",
+ "▁Id e",
+ "math scr",
+ "▁l ieu",
+ "▁li eu",
+ "▁lie u",
+ "▁b od",
+ "▁bo d",
+ "▁r us",
+ "▁ru s",
+ "▁ rus",
+ "▁bo at",
+ "xs pace",
+ "x space",
+ "▁mod al",
+ "▁mo dal",
+ "▁ modal",
+ "ле к",
+ "л ек",
+ "to pic",
+ "top ic",
+ "ma ny",
+ "man y",
+ "m any",
+ "sk ý",
+ "▁organ ization",
+ "▁organiz ation",
+ "▁г ене",
+ "▁ге не",
+ "▁Wil son",
+ "▁com fort",
+ "ib il",
+ "i bil",
+ ": -",
+ "▁an imal",
+ "▁anim al",
+ "▁ani mal",
+ "Re port",
+ "Rep ort",
+ "ка ми",
+ "кам и",
+ "jo n",
+ "j on",
+ "▁k er",
+ "▁ke r",
+ "▁ ker",
+ "▁к ни",
+ "moz illa",
+ "Pr ice",
+ "P rice",
+ "ant in",
+ "anti n",
+ "em ento",
+ "ement o",
+ "emen to",
+ "ma y",
+ "m ay",
+ "▁l ung",
+ "▁lu ng",
+ "▁lun g",
+ "▁ lung",
+ "▁b low",
+ "▁bl ow",
+ "▁blo w",
+ "ede ut",
+ "▁type d",
+ "▁typ ed",
+ "▁ty ped",
+ "▁dec ember",
+ "▁. ...",
+ "▁... .",
+ "▁.. ..",
+ "▁ ....",
+ "li ance",
+ "l iance",
+ "▁v iel",
+ "▁vi el",
+ "▁vie l",
+ "▁Ф и",
+ "pr esa",
+ "pre sa",
+ "pres a",
+ "▁ос іб",
+ "▁N am",
+ "▁Na m",
+ "▁G ren",
+ "▁Gr en",
+ "▁Gre n",
+ "си лання",
+ "VI D",
+ "V ID",
+ "st re",
+ "str e",
+ "s tre",
+ "we is",
+ "wei s",
+ "▁prote ction",
+ "▁protect ion",
+ "▁prot ection",
+ "ta ient",
+ "t aient",
+ "▁offic ers",
+ "▁office rs",
+ "▁officer s",
+ "т но",
+ "▁B rig",
+ "▁Br ig",
+ "▁int ellig",
+ "▁intel lig",
+ "я х",
+ "IT H",
+ "I TH",
+ "▁separ ated",
+ "▁separate d",
+ "▁L CCN",
+ "ní m",
+ "n ím",
+ "cl ock",
+ "clo ck",
+ "c lock",
+ "▁ap are",
+ "▁apar e",
+ "яв и",
+ "я ви",
+ "▁Eliz abeth",
+ "▁W ater",
+ "▁Wat er",
+ "▁Wa ter",
+ "geb iet",
+ "▁con vent",
+ "▁conv ent",
+ "▁conven t",
+ "fu rt",
+ "fur t",
+ "f urt",
+ "▁be iden",
+ "▁bei den",
+ "▁beide n",
+ "ba sh",
+ "bas h",
+ "b ash",
+ "▁че рез",
+ "▁чер ез",
+ "▁u b",
+ "▁ ub",
+ "▁Stat ist",
+ "▁Stati st",
+ "▁lim its",
+ "▁limit s",
+ "▁ limits",
+ "V ol",
+ "ct x",
+ "c tx",
+ "▁но в",
+ "▁н ов",
+ "▁ нов",
+ "gu ide",
+ "gui de",
+ "mi c",
+ "m ic",
+ "ie sa",
+ "ies a",
+ "i esa",
+ "▁h uvud",
+ "R T",
+ "Fi g",
+ "F ig",
+ "▁l ect",
+ "▁le ct",
+ "▁ lect",
+ "con n",
+ "co nn",
+ "c onn",
+ "im it",
+ "imi t",
+ "i mit",
+ "га р",
+ "г ар",
+ "▁b ajo",
+ "▁ba jo",
+ "scri be",
+ "scr ibe",
+ "s cribe",
+ "re gex",
+ "reg ex",
+ "▁C ass",
+ "▁Cas s",
+ "▁Ca ss",
+ "▁pro pag",
+ "▁prop ag",
+ "' $",
+ "▁prof es",
+ "un ique",
+ "uni que",
+ "▁S ql",
+ "▁ Sql",
+ "un ion",
+ "uni on",
+ "ri os",
+ "rio s",
+ "r ios",
+ "pi p",
+ "p ip",
+ "-- +",
+ "- -+",
+ "ka dem",
+ "k adem",
+ "column s",
+ "▁v ary",
+ "▁var y",
+ "▁va ry",
+ "▁bere its",
+ "▁d oi",
+ "▁do i",
+ "▁Com mon",
+ "▁Comm on",
+ "▁ Common",
+ "▁Ro bin",
+ "▁Rob in",
+ "▁ ×",
+ "▁s ei",
+ "▁se i",
+ "▁s yst",
+ "▁sy st",
+ "▁sys t",
+ "▁v ä",
+ "▁ vä",
+ "▁De fault",
+ "▁Def ault",
+ "▁ Default",
+ "▁t ym",
+ "▁ty m",
+ "pe l",
+ "p el",
+ "▁bel ieved",
+ "▁believe d",
+ "▁pro vider",
+ "▁prov ider",
+ "▁provide r",
+ "▁ provider",
+ "▁min imal",
+ "▁minim al",
+ "▁mini mal",
+ "та ли",
+ "тал и",
+ "т али",
+ "ain es",
+ "ai nes",
+ "aine s",
+ "a ines",
+ "K it",
+ "iz io",
+ "izi o",
+ "is sen",
+ "iss en",
+ "isse n",
+ "pr essed",
+ "press ed",
+ "pres sed",
+ "▁s tag",
+ "▁st ag",
+ "▁sta g",
+ "▁ stag",
+ "▁u int",
+ "▁ui nt",
+ "▁ uint",
+ "ko r",
+ "k or",
+ "▁ра спо",
+ "▁рас по",
+ "▁in herit",
+ "▁inher it",
+ "▁comp iled",
+ "▁compile d",
+ "▁f ebru",
+ "▁fe bru",
+ "▁feb ru",
+ "▁t mp",
+ "▁tm p",
+ "▁ tmp",
+ "work s",
+ "wor ks",
+ "ч на",
+ "draw able",
+ "▁N av",
+ "▁Na v",
+ "▁ Nav",
+ "▁though ts",
+ "▁thought s",
+ "ro ute",
+ "rout e",
+ "rou te",
+ "r oute",
+ "▁con cert",
+ "▁conc ert",
+ "▁conce rt",
+ "▁option al",
+ "▁opt ional",
+ "▁ optional",
+ "▁b ras",
+ "▁br as",
+ "▁bra s",
+ "▁ bras",
+ "▁prov iding",
+ "со м",
+ "с ом",
+ "id x",
+ "i dx",
+ "emp lo",
+ "empl o",
+ "▁ко ли",
+ "▁ коли",
+ "▁B ere",
+ "▁Be re",
+ "▁Ber e",
+ "▁E ls",
+ "▁El s",
+ "ре мен",
+ "рем ен",
+ "▁де ка",
+ "co ut",
+ "cou t",
+ "c out",
+ "la yer",
+ "lay er",
+ "l ayer",
+ "▁g lob",
+ "▁gl ob",
+ "▁glo b",
+ "▁ glob",
+ "fore ach",
+ "for each",
+ "▁E ducation",
+ "▁Edu cation",
+ "P O",
+ "▁im prov",
+ "▁imp rov",
+ "▁impro v",
+ "▁impr ov",
+ "▁cl ients",
+ "▁client s",
+ "▁cli ents",
+ "gr oups",
+ "group s",
+ "gro ups",
+ "▁k ont",
+ "▁kon t",
+ "▁ko nt",
+ "De l",
+ "D el",
+ "re tt",
+ "ret t",
+ "r ett",
+ "▁s up",
+ "▁su p",
+ "▁ sup",
+ "▁m og",
+ "▁mo g",
+ "ta n",
+ "t an",
+ "▁com pl",
+ "▁comp l",
+ "ir ty",
+ "irt y",
+ "▁nouve au",
+ "os z",
+ "o sz",
+ "▁N avy",
+ "▁Na vy",
+ "▁Nav y",
+ "ber e",
+ "be re",
+ "b ere",
+ "ma sk",
+ "mas k",
+ "m ask",
+ "ov é",
+ "o vé",
+ "zi l",
+ "z il",
+ "PE R",
+ "P ER",
+ "▁pobla ción",
+ "▁població n",
+ "▁d etailed",
+ "▁detail ed",
+ "ле т",
+ "л ет",
+ "▁famil ies",
+ "▁familie s",
+ "ab et",
+ "abe t",
+ "a bet",
+ "е вич",
+ "änd er",
+ "än der",
+ "ände r",
+ "ä nder",
+ "▁å r",
+ "▁ år",
+ "▁p endant",
+ "▁b il",
+ "▁bi l",
+ "▁ bil",
+ "▁h int",
+ "▁hi nt",
+ "▁hin t",
+ "ode n",
+ "od en",
+ "o den",
+ "▁exp ansion",
+ "▁p ont",
+ "▁po nt",
+ "▁pon t",
+ "▁ pont",
+ "as ant",
+ "asa nt",
+ "▁K ind",
+ "▁Ki nd",
+ "▁Kin d",
+ "▁ Kind",
+ "ij i",
+ "i ji",
+ "▁A uth",
+ "▁Aut h",
+ "▁Au th",
+ "▁ Auth",
+ "laim ed",
+ "ref lect",
+ "] =",
+ "by tes",
+ "byte s",
+ "ho ver",
+ "hov er",
+ "h over",
+ "▁ц ер",
+ "▁це р",
+ "▁ цер",
+ "grad le",
+ "Ar ch",
+ "ap est",
+ "ape st",
+ "apes t",
+ "ás a",
+ "á sa",
+ "Car d",
+ "Ca rd",
+ "C ard",
+ "▁tempor ary",
+ "▁départ ement",
+ "class es",
+ "жи ва",
+ "▁х удо",
+ "▁m ole",
+ "▁mo le",
+ "▁mol e",
+ "R Y",
+ "L P",
+ "▁p ec",
+ "▁pe c",
+ "▁ pec",
+ "rodu ction",
+ "▁Gu ard",
+ "▁Par liament",
+ "▁inst anti",
+ "▁instant i",
+ "▁not amment",
+ "▁D oug",
+ "▁Do ug",
+ "▁Dou g",
+ "▁Mar sh",
+ "▁Mars h",
+ ". ~",
+ "▁\\ \"",
+ "▁ \\\"",
+ "▁t hé",
+ "▁th é",
+ "▁li bre",
+ "▁lib re",
+ "do es",
+ "▁dé but",
+ "▁U nit",
+ "▁Un it",
+ "▁ Unit",
+ "▁с ту",
+ "▁ст у",
+ "▁ сту",
+ "▁le ague",
+ "▁qu ale",
+ "▁q uale",
+ "▁qual e",
+ "▁состав ля",
+ "▁соста вля",
+ "Se curity",
+ "Sec urity",
+ "▁appar ently",
+ "▁apparent ly",
+ "▁tro ops",
+ "ic ano",
+ "ica no",
+ "ican o",
+ "i cano",
+ "▁M B",
+ "▁ MB",
+ "en ze",
+ "enz e",
+ "lo ading",
+ "load ing",
+ "▁dist ributed",
+ "▁distribu ted",
+ "▁distrib uted",
+ "write r",
+ "writ er",
+ "wr iter",
+ "w riter",
+ "res ources",
+ "resource s",
+ "h ö",
+ "ut ils",
+ "util s",
+ "uti ls",
+ "▁prep ared",
+ "▁prepar ed",
+ "▁prepare d",
+ "ci er",
+ "cie r",
+ "c ier",
+ "op ol",
+ "opo l",
+ "o pol",
+ "▁län kar",
+ "he s",
+ "h es",
+ "н ва",
+ "▁op ens",
+ "▁open s",
+ "▁ opens",
+ "ag og",
+ "ago g",
+ "inter face",
+ "▁F und",
+ "▁Fu nd",
+ "▁Fun d",
+ "▁pent ru",
+ "ní ch",
+ "n ích",
+ "▁config ured",
+ "▁configure d",
+ "▁configur ed",
+ "▁Web site",
+ "▁list ener",
+ "▁listen er",
+ "▁liste ner",
+ "▁ listener",
+ "iv el",
+ "ive l",
+ "i vel",
+ "n ę",
+ "min a",
+ "mi na",
+ "m ina",
+ "▁in vest",
+ "▁inv est",
+ "▁inve st",
+ "▁м іс",
+ "▁мі с",
+ "▁d av",
+ "▁da v",
+ "▁p atch",
+ "▁pat ch",
+ "▁ patch",
+ "pi eler",
+ "piel er",
+ "pie ler",
+ "▁Ext erna",
+ "▁Extern a",
+ "t f",
+ "▁e red",
+ "▁er ed",
+ "▁ere d",
+ "▁ ered",
+ "▁Ass embly",
+ "▁ Assembly",
+ "▁s out",
+ "▁so ut",
+ "▁sou t",
+ "▁v erk",
+ "▁ver k",
+ "▁ verk",
+ "me rs",
+ "mer s",
+ "m ers",
+ "t oggle",
+ "▁up dating",
+ "▁upd ating",
+ "▁K ent",
+ "▁Ke nt",
+ "▁Ken t",
+ "ec a",
+ "e ca",
+ "FA ULT",
+ "▁tit re",
+ "▁ti tre",
+ "▁K enn",
+ "▁Ke nn",
+ "▁Ken n",
+ "▁Ми ха",
+ "ст ор",
+ "сто р",
+ "с тор",
+ "▁p ode",
+ "▁po de",
+ "▁pod e",
+ "▁S eb",
+ "▁Se b",
+ "це в",
+ "ц ев",
+ "E Y",
+ "▁sil ver",
+ "▁cap acity",
+ "▁capac ity",
+ "▁comple tion",
+ "▁complet ion",
+ "▁Pe dro",
+ "▁Ped ro",
+ "fe l",
+ "f el",
+ "va no",
+ "van o",
+ "v ano",
+ "ze ug",
+ "▁in terior",
+ "▁inter ior",
+ "▁inte rior",
+ "▁Res ponse",
+ "▁ Response",
+ "éd ia",
+ "é dia",
+ "▁World Cat",
+ "▁c ă",
+ "qu el",
+ "que l",
+ "q uel",
+ "So l",
+ "S ol",
+ "іс ля",
+ "▁D omin",
+ "▁Do min",
+ "▁Dom in",
+ "▁c um",
+ "▁cu m",
+ "ce p",
+ "c ep",
+ "▁M use",
+ "▁Mus e",
+ "▁Mu se",
+ "▁M aría",
+ "▁Mar ía",
+ "▁Ma ría",
+ "▁function al",
+ "▁ad apter",
+ "▁adapt er",
+ "▁ adapter",
+ "config uration",
+ "▁t ipo",
+ "▁tip o",
+ "▁ti po",
+ "▁B ry",
+ "▁Br y",
+ "v y",
+ "U L",
+ "▁tra vers",
+ "▁trav ers",
+ "! (",
+ "▁absol utely",
+ "▁absolute ly",
+ "л та",
+ "тт я",
+ "т тя",
+ "▁I T",
+ "▁ IT",
+ "▁во ен",
+ "yc le",
+ "y cle",
+ "be st",
+ "bes t",
+ "b est",
+ "▁construct ed",
+ "▁constru cted",
+ "▁фи ль",
+ "▁ филь",
+ "ci do",
+ "cid o",
+ "c ido",
+ "ex it",
+ "ga rt",
+ "gar t",
+ "g art",
+ "▁provin cia",
+ "ve z",
+ "v ez",
+ "ci pl",
+ "cip l",
+ "▁Face book",
+ "▁Fac ebook",
+ "▁y ellow",
+ "▁ yellow",
+ "▁Sum mer",
+ "▁point ing",
+ "▁poss ibility",
+ "▁possib ility",
+ "▁possibil ity",
+ "▁leg isl",
+ "▁мо ж",
+ "▁ мож",
+ "de rn",
+ "der n",
+ "d ern",
+ "ко но",
+ "кон о",
+ "▁mechan ism",
+ "▁Bern ard",
+ "ex pr",
+ "exp r",
+ "ло ви",
+ "лов и",
+ "л ови",
+ "▁dig its",
+ "▁digit s",
+ "▁de legate",
+ "▁deleg ate",
+ "▁ delegate",
+ "og ram",
+ "o gram",
+ "▁D ictionary",
+ "▁ Dictionary",
+ "is y",
+ "▁s po",
+ "▁sp o",
+ "/ $",
+ "clude d",
+ "clud ed",
+ "▁M VC",
+ "▁t ém",
+ "▁té m",
+ "▁print ed",
+ "▁prin ted",
+ "▁G ott",
+ "▁Go tt",
+ "▁Got t",
+ "▁O m",
+ "▁ Om",
+ "ans as",
+ "▁D urch",
+ "▁Dur ch",
+ "▁I dent",
+ "▁Id ent",
+ "▁Ide nt",
+ "▁ Ident",
+ "Q U",
+ "ht m",
+ "h tm",
+ "▁S ul",
+ "▁Su l",
+ "'] .",
+ "' ].",
+ "▁du ty",
+ "▁dut y",
+ "▁Aut hor",
+ "▁Auth or",
+ "▁ Author",
+ "▁n ě",
+ "▁ ně",
+ "ow ego",
+ "owe go",
+ "pu s",
+ "p us",
+ "em bl",
+ "emb l",
+ "Exec utor",
+ "B L",
+ "▁M ens",
+ "▁Me ns",
+ "▁Men s",
+ "dis patch",
+ "▁M id",
+ "▁Mi d",
+ "ap ps",
+ "app s",
+ "Trans form",
+ "▁D at",
+ "▁Da t",
+ "▁ Dat",
+ "▁im pl",
+ "▁imp l",
+ "▁ impl",
+ "ou x",
+ "o ux",
+ "ho lm",
+ "hol m",
+ "▁I ns",
+ "▁In s",
+ "▁Emp ire",
+ "ру п",
+ "▁Ap ache",
+ "SI ON",
+ "S ION",
+ "▁pass age",
+ "######## ########",
+ "▁ex pressed",
+ "▁express ed",
+ "▁expr essed",
+ "▁expres sed",
+ "на д",
+ "▁o l",
+ "▁ ol",
+ "▁h avia",
+ "▁ha via",
+ "▁hav ia",
+ "▁бо лее",
+ "▁enjo y",
+ "form ance",
+ "▁dim ensions",
+ "▁dimension s",
+ "▁ч ер",
+ "▁че р",
+ "▁ чер",
+ "Se e",
+ "S ee",
+ "▁m outh",
+ "▁mo uth",
+ "▁mou th",
+ "▁ mouth",
+ "▁g au",
+ "▁ga u",
+ "ien cy",
+ "i ency",
+ "▁Carol ina",
+ "Dis t",
+ "Di st",
+ "D ist",
+ "rad io",
+ "li mit",
+ "lim it",
+ "l imit",
+ "/ ?",
+ "▁B all",
+ "▁Ba ll",
+ "▁Bal l",
+ "ні сть",
+ "Mem ber",
+ "M ember",
+ "wa ter",
+ "w ater",
+ "▁mur der",
+ "▁stand ing",
+ "▁stan ding",
+ "▁ standing",
+ "▁V II",
+ "▁VI I",
+ "Cent er",
+ "C enter",
+ "pp a",
+ "p pa",
+ "ur eau",
+ "ure au",
+ "▁Le ip",
+ "▁ob jet",
+ "▁obj et",
+ "▁Act ivity",
+ "▁Activ ity",
+ "▁ Activity",
+ "em bers",
+ "ember s",
+ "emb ers",
+ "v r",
+ "▁con du",
+ "▁cond u",
+ "Cell s",
+ "C ells",
+ "in us",
+ "inu s",
+ "▁' ,",
+ "▁ ',",
+ "▁af raid",
+ "▁х а",
+ "▁ ха",
+ "▁V ic",
+ "▁Vi c",
+ "test ing",
+ "tes ting",
+ "Tu be",
+ "T ube",
+ "▁v ast",
+ "▁va st",
+ "▁vas t",
+ "P M",
+ "ni h",
+ "n ih",
+ "SS N",
+ "S SN",
+ "▁Ch ile",
+ "▁Chi le",
+ "yl van",
+ "▁B ow",
+ "▁Bo w",
+ "▁relig ion",
+ "op her",
+ "oph er",
+ "ophe r",
+ "o pher",
+ "▁C oll",
+ "▁Col l",
+ "▁Co ll",
+ "▁ Coll",
+ "▁dig ital",
+ "▁digit al",
+ "zi oni",
+ "z ioni",
+ "Se ction",
+ "Sec tion",
+ "S ection",
+ "▁резу льта",
+ "Foo t",
+ "F oot",
+ "con vert",
+ "conv ert",
+ "▁rece iving",
+ "Cont act",
+ "▁h ero",
+ "▁he ro",
+ "▁her o",
+ "sa m",
+ "s am",
+ "▁pos terior",
+ "▁poster ior",
+ "▁poste rior",
+ "ow i",
+ "o wi",
+ "An t",
+ "A nt",
+ "▁fl ags",
+ "▁flag s",
+ "▁fla gs",
+ "▁ flags",
+ "▁Ze aland",
+ "▁b ounds",
+ "▁bound s",
+ "▁ bounds",
+ "▁where as",
+ "▁whe reas",
+ "in fl",
+ "inf l",
+ "Pl ay",
+ "P lay",
+ "▁d emo",
+ "▁de mo",
+ "▁dem o",
+ "▁ demo",
+ "▁g ibt",
+ "▁gi bt",
+ "▁h ospital",
+ "▁hosp ital",
+ "▁v olta",
+ "▁vol ta",
+ "▁volt a",
+ "л ё",
+ "▁f ashion",
+ "▁ex ceed",
+ "▁exc eed",
+ "el enium",
+ "elen ium",
+ "It er",
+ "I ter",
+ "kr ie",
+ "k rie",
+ "▁integr ation",
+ "▁integra tion",
+ "▁ integration",
+ "▁Other wise",
+ "ad u",
+ "a du",
+ "Sh e",
+ "S he",
+ "on de",
+ "ond e",
+ "o nde",
+ "ui nt",
+ "u int",
+ "rad ius",
+ "▁r am",
+ "▁ra m",
+ "▁ ram",
+ "▁ál bum",
+ "▁т ур",
+ "▁ту р",
+ "▁ тур",
+ "▁d y",
+ "▁ dy",
+ "▁O tt",
+ "▁Ot t",
+ "▁пер и",
+ "▁пе ри",
+ "re v",
+ "r ev",
+ "ri or",
+ "rio r",
+ "r ior",
+ "í d",
+ "ir at",
+ "ira t",
+ "i rat",
+ "▁в клю",
+ "▁import ante",
+ "▁important e",
+ "▁Du ke",
+ "▁caus a",
+ "▁ca usa",
+ "▁Math emat",
+ "▁di plom",
+ "▁N icol",
+ "▁Nic ol",
+ "▁Ni col",
+ "▁ex clus",
+ "▁exc lus",
+ "▁debug ging",
+ "▁G h",
+ "or iginal",
+ "origin al",
+ "orig inal",
+ "ly n",
+ "l yn",
+ "▁P la",
+ "▁Pl a",
+ "su ite",
+ "suit e",
+ "ch at",
+ "cha t",
+ "c hat",
+ "▁e stud",
+ "▁est ud",
+ "ue lle",
+ "uel le",
+ "u elle",
+ "▁p ert",
+ "▁per t",
+ "▁pe rt",
+ "▁ pert",
+ "▁import ance",
+ "▁appro aches",
+ "▁approach es",
+ "▁d la",
+ "▁про ф",
+ "Pr es",
+ "Pre s",
+ "P res",
+ "< \\",
+ "pre fix",
+ "p refix",
+ "SS ION",
+ "S SION",
+ "ро ди",
+ "род и",
+ "count ry",
+ "c ountry",
+ "it zer",
+ "itz er",
+ "▁ко р",
+ "▁к ор",
+ "▁ кор",
+ "▁sing ular",
+ "go v",
+ "g ov",
+ "ри н",
+ "р ин",
+ "▁F A",
+ "▁ FA",
+ "▁mat rices",
+ "ol are",
+ "ola re",
+ "olar e",
+ "o lare",
+ "ni ka",
+ "nik a",
+ "n ika",
+ "po wer",
+ "pow er",
+ "p ower",
+ "ll a",
+ "l la",
+ "▁des ire",
+ "▁famil ia",
+ "▁fam ilia",
+ "до р",
+ "д ор",
+ "▁f an",
+ "▁fa n",
+ "▁ fan",
+ "gener ated",
+ "generate d",
+ "▁C os",
+ "▁Co s",
+ "▁ż e",
+ "▁ że",
+ "▁D iese",
+ "▁Die se",
+ "▁Di ese",
+ "▁Dies e",
+ "mo v",
+ "m ov",
+ "▁de note",
+ "▁den ote",
+ "\") ]",
+ "\" )]",
+ "ou vern",
+ "ouv ern",
+ "ouve rn",
+ "ouver n",
+ "am an",
+ "ama n",
+ "a man",
+ "▁in ser",
+ "▁ins er",
+ "▁inse r",
+ "ij k",
+ "i jk",
+ "ot ta",
+ "ott a",
+ "o tta",
+ "er al",
+ "era l",
+ "e ral",
+ "де ль",
+ "д ель",
+ "() ->",
+ "( )->",
+ "▁p oder",
+ "▁po der",
+ "▁pod er",
+ "▁pode r",
+ "ig es",
+ "ige s",
+ "i ges",
+ "▁On line",
+ "▁we ird",
+ "ia c",
+ "i ac",
+ "▁quel ques",
+ "▁quelque s",
+ "ère nt",
+ "è rent",
+ "▁t el",
+ "▁te l",
+ "▁ tel",
+ "▁L atin",
+ "▁Lat in",
+ "ver ter",
+ "vert er",
+ "verte r",
+ "ля р",
+ "ро и",
+ "▁p df",
+ "▁pd f",
+ "▁ pdf",
+ "▁key word",
+ "▁ keyword",
+ "Hand le",
+ "A fter",
+ "re ce",
+ "rec e",
+ "▁ident ical",
+ "style sheet",
+ "styles heet",
+ "▁стан ови",
+ "▁станов и",
+ "▁k a",
+ "▁ ka",
+ "ce ment",
+ "cem ent",
+ "c ement",
+ "те т",
+ "т ет",
+ "▁c hat",
+ "▁ch at",
+ "▁cha t",
+ "▁ chat",
+ "▁M un",
+ "▁Mu n",
+ "ał a",
+ "a ła",
+ "AN T",
+ "A NT",
+ "ol óg",
+ "▁f ant",
+ "▁fa nt",
+ "▁fan t",
+ "▁for est",
+ "▁fo rest",
+ "▁fore st",
+ "▁ви ко",
+ "cu ss",
+ "cus s",
+ "c uss",
+ "▁se hr",
+ "pa g",
+ "p ag",
+ "ot ic",
+ "oti c",
+ "▁á ll",
+ "▁ál l",
+ "▁ áll",
+ "ма ти",
+ "мат и",
+ "▁\" '",
+ "+ \"",
+ "An imation",
+ "Anim ation",
+ "ходи т",
+ "ход ит",
+ "az u",
+ "a zu",
+ "▁pl ays",
+ "▁play s",
+ "▁pla ys",
+ "▁ plays",
+ "iz ioni",
+ "izi oni",
+ "izio ni",
+ "i zioni",
+ "ми че",
+ "▁b omb",
+ "▁bo mb",
+ "▁bom b",
+ "▁mer ely",
+ "▁mere ly",
+ "▁hold ing",
+ "▁hol ding",
+ "▁w enn",
+ "▁we nn",
+ "▁wen n",
+ "▁m edic",
+ "▁me dic",
+ "▁med ic",
+ "▁medi c",
+ "▁spe aking",
+ "▁speak ing",
+ "ong odb",
+ "ongo db",
+ "▁Cam pe",
+ "▁Camp e",
+ "in ity",
+ "ini ty",
+ "init y",
+ "▁я нва",
+ "() `.",
+ "()` .",
+ "( )`.",
+ "lu ss",
+ "lus s",
+ "l uss",
+ "▁H istoire",
+ "▁His toire",
+ "▁Hist oire",
+ "▁oper ating",
+ "▁opera ting",
+ "Ch annel",
+ "▁accur acy",
+ "▁b os",
+ "▁bo s",
+ "▁ bos",
+ "▁ev ident",
+ "ци ю",
+ "event s",
+ "ev ents",
+ "even ts",
+ "text rm",
+ "or eign",
+ "ore ign",
+ "▁i i",
+ "▁ ii",
+ "hr en",
+ "hre n",
+ "h ren",
+ "lo wer",
+ "low er",
+ "l ower",
+ "▁т ом",
+ "▁то м",
+ "▁ том",
+ "▁Ab out",
+ "▁ About",
+ "▁a j",
+ "▁ aj",
+ "er i",
+ "e ri",
+ "сту пи",
+ "ступ и",
+ "▁di git",
+ "▁dig it",
+ "▁ digit",
+ "▁Sp ain",
+ "▁D aten",
+ "▁Date n",
+ "▁Da ten",
+ "▁Dat en",
+ "▁for me",
+ "▁form e",
+ "▁ш та",
+ "▁ шта",
+ "▁B ach",
+ "▁Ba ch",
+ "▁Bac h",
+ "no number",
+ "non umber",
+ "▁recomm ended",
+ "▁recommend ed",
+ "▁re ads",
+ "▁read s",
+ "his toire",
+ "h istoire",
+ "▁s ang",
+ "▁sa ng",
+ "▁san g",
+ "▁? ?",
+ "▁ ??",
+ "▁с тал",
+ "▁ст ал",
+ "▁ста л",
+ "sc ore",
+ "s core",
+ "fa s",
+ "f as",
+ "▁c ub",
+ "▁cu b",
+ "▁g rew",
+ "▁gr ew",
+ "▁gre w",
+ "▁cent ro",
+ "▁bek annt",
+ "Event s",
+ "BE R",
+ "B ER",
+ "he w",
+ "h ew",
+ "сс а",
+ "с са",
+ "▁major ity",
+ "ît re",
+ "î tre",
+ "en ci",
+ "enc i",
+ "▁Qu ery",
+ "▁Que ry",
+ "▁ Query",
+ "▁któ re",
+ "i ć",
+ "▁complex ity",
+ "▁Fran çois",
+ "const raint",
+ "ур на",
+ "═ ═",
+ "▁iter ate",
+ "le tt",
+ "let t",
+ "l ett",
+ "pe ror",
+ "per or",
+ "▁Neder land",
+ "sh are",
+ "sha re",
+ "▁incl u",
+ "▁inc lu",
+ "än ger",
+ "äng er",
+ "änge r",
+ "▁N ic",
+ "▁Ni c",
+ "ч о",
+ "F ull",
+ "▁ra pport",
+ "▁rapp ort",
+ "▁rap port",
+ "ec lipse",
+ "e clipse",
+ "▁indust ry",
+ "he aders",
+ "head ers",
+ "header s",
+ "▁Р и",
+ "ch sel",
+ "chs el",
+ "▁po lic",
+ "▁pol ic",
+ "sch ied",
+ "% ,",
+ "O D",
+ "▁J ak",
+ "▁Ja k",
+ "({ \\",
+ "( {\\",
+ "al igned",
+ "align ed",
+ "▁frequ ently",
+ "▁frequent ly",
+ "▁su oi",
+ "▁suo i",
+ "▁ess entially",
+ "▁essential ly",
+ "▁R ic",
+ "▁Ri c",
+ "▁re ports",
+ "▁report s",
+ "▁dec imal",
+ "ra r",
+ "r ar",
+ "▁F oo",
+ "▁Fo o",
+ "▁ Foo",
+ "▁K a",
+ "▁D C",
+ "▁ DC",
+ "▁sim pler",
+ "▁simple r",
+ "▁simp ler",
+ "▁simpl er",
+ "Pa ne",
+ "Pan e",
+ "P ane",
+ "? }",
+ "So rt",
+ "S ort",
+ "▁pos it",
+ "cd n",
+ "c dn",
+ "kt ur",
+ "▁aw k",
+ "▁ awk",
+ "зе р",
+ "з ер",
+ "P F",
+ "u ur",
+ "▁R oss",
+ "▁Ro ss",
+ "▁Ros s",
+ "▁m ant",
+ "▁ma nt",
+ "▁man t",
+ "N a",
+ "Con s",
+ "Co ns",
+ "C ons",
+ ")) ))",
+ "))) )",
+ ") )))",
+ "▁techn iques",
+ "▁techni ques",
+ "▁technique s",
+ "im pl",
+ "imp l",
+ "▁dro pped",
+ "▁drop ped",
+ "▁L ista",
+ "▁List a",
+ "▁Li sta",
+ "▁Lis ta",
+ "▁Bas ically",
+ "▁Basic ally",
+ "en tal",
+ "ent al",
+ "enta l",
+ "▁cel ui",
+ "▁str ategy",
+ "▁strateg y",
+ "▁strat egy",
+ "▁W ales",
+ "▁Wal es",
+ "▁Wa les",
+ "na n",
+ "n an",
+ "▁g min",
+ "▁gr öß",
+ "▁eer ste",
+ "▁eerst e",
+ "T im",
+ "nt en",
+ "n ten",
+ "re sp",
+ "res p",
+ "r esp",
+ "▁s table",
+ "▁st able",
+ "▁sta ble",
+ "▁ stable",
+ "no v",
+ "n ov",
+ "ro b",
+ "r ob",
+ "но ј",
+ "▁mar riage",
+ "get String",
+ "Aut hor",
+ "Auth or",
+ "▁G raf",
+ "▁Gr af",
+ "▁Gra f",
+ "▁di agram",
+ "▁diag ram",
+ "▁dia gram",
+ "gi a",
+ "g ia",
+ "Net work",
+ "N etwork",
+ "▁com posed",
+ "▁comp osed",
+ "▁compos ed",
+ "▁compose d",
+ "▁miss ed",
+ "▁mis sed",
+ "▁M eg",
+ "▁Me g",
+ "▁пра во",
+ "▁прав о",
+ "▁hom onymes",
+ "▁Bo oks",
+ "▁Book s",
+ "▁en cou",
+ "▁enc ou",
+ "port e",
+ "por te",
+ "p orte",
+ "▁rot ation",
+ "▁f ir",
+ "▁fi r",
+ "▁ fir",
+ "те льно",
+ "тель но",
+ "▁g un",
+ "▁gu n",
+ "▁ gun",
+ "▁A ff",
+ "▁Af f",
+ "▁ Aff",
+ "но к",
+ "н ок",
+ "▁Fuß ball",
+ "▁St ory",
+ "▁Sto ry",
+ "▁ Story",
+ "▁Ch ap",
+ "▁Cha p",
+ "▁) .",
+ "▁ ).",
+ "▁Se it",
+ "мо н",
+ "м он",
+ "▁t élé",
+ "▁té lé",
+ "▁cop ied",
+ "▁cons istent",
+ "▁consist ent",
+ "▁dr ink",
+ "▁C ham",
+ "▁Ch am",
+ "▁Cha m",
+ "▁mat ters",
+ "▁matter s",
+ "▁render ed",
+ "▁rend ered",
+ "▁rende red",
+ "▁hyp oth",
+ "œ uv",
+ "▁me er",
+ "▁par sing",
+ "▁P RO",
+ "▁PR O",
+ "▁ PRO",
+ "se ries",
+ "ser ies",
+ "serie s",
+ "s eries",
+ "▁z á",
+ "▁ zá",
+ "stra ße",
+ "▁B oot",
+ "▁Bo ot",
+ "▁ Boot",
+ "▁re po",
+ "▁rep o",
+ "▁ repo",
+ "wo r",
+ "w or",
+ "▁St ream",
+ "▁Stre am",
+ "▁ Stream",
+ "▁A N",
+ "▁ AN",
+ "▁п ів",
+ "▁пі в",
+ "▁S M",
+ "▁ SM",
+ "▁A rn",
+ "▁Ar n",
+ "▁ Ž",
+ "▁[ ];",
+ "▁[] ;",
+ "Res ources",
+ "Resource s",
+ "▁el abor",
+ "▁ela bor",
+ "▁E th",
+ "▁Et h",
+ "▁l iste",
+ "▁li ste",
+ "▁list e",
+ "▁rel atively",
+ "▁relative ly",
+ "▁relativ ely",
+ "ch ant",
+ "chan t",
+ "cha nt",
+ "=\" \"",
+ "= \"\"",
+ "▁l ift",
+ "▁li ft",
+ "▁lif t",
+ "C N",
+ "Service s",
+ "Serv ices",
+ "ME NT",
+ "M ENT",
+ "▁и гра",
+ "▁иг ра",
+ "▁ игра",
+ "б ре",
+ "▁J ord",
+ "▁Jo rd",
+ "▁t ec",
+ "▁te c",
+ "ш ка",
+ "▁S up",
+ "▁Su p",
+ "▁infl uen",
+ "▁influ en",
+ "on ds",
+ "ond s",
+ "hand ler",
+ "handle r",
+ "▁b anda",
+ "▁band a",
+ "▁ban da",
+ "▁vert ices",
+ "▁z ap",
+ "▁za p",
+ "▁c ord",
+ "▁cor d",
+ "▁co rd",
+ "▁ cord",
+ "al ter",
+ "alt er",
+ "ze nia",
+ "zen ia",
+ "z enia",
+ "ât eau",
+ "âte au",
+ "▁know ing",
+ "▁Argent ina",
+ "Ar ea",
+ "Are a",
+ "A rea",
+ "ан е",
+ "а не",
+ "f c",
+ "=\" /",
+ "= \"/",
+ "▁M ik",
+ "▁Mi k",
+ "at ă",
+ "ie ux",
+ "ieu x",
+ "▁deutsch en",
+ "▁deutsche n",
+ "▁trad itional",
+ "▁tradition al",
+ "de code",
+ "dec ode",
+ "ve x",
+ "v ex",
+ "▁size of",
+ "▁ sizeof",
+ "▁F un",
+ "▁Fu n",
+ "▁ Fun",
+ "▁par ser",
+ "▁parse r",
+ "▁ parser",
+ "▁Flor ida",
+ "▁build ings",
+ "▁building s",
+ "▁Man uel",
+ "ri le",
+ "ril e",
+ "r ile",
+ "▁log ged",
+ "▁strong ly",
+ "▁re vol",
+ "▁rev ol",
+ "не е",
+ "xi co",
+ "xic o",
+ "x ico",
+ "▁F air",
+ "▁Fa ir",
+ "ca rt",
+ "car t",
+ "c art",
+ "▁W ort",
+ "▁Wo rt",
+ "▁Wor t",
+ "▁Jes us",
+ "em es",
+ "eme s",
+ "e mes",
+ "sch rift",
+ "Input Stream",
+ "wa d",
+ "w ad",
+ "▁gran des",
+ "▁grand es",
+ "▁grande s",
+ "▁númer o",
+ "▁O tto",
+ "▁Ot to",
+ "▁Ott o",
+ "ien tes",
+ "ient es",
+ "iente s",
+ "i entes",
+ "▁fam ous",
+ "ol ogne",
+ "olog ne",
+ "J e",
+ "ни ш",
+ "▁Guer ra",
+ "bar a",
+ "ba ra",
+ "b ara",
+ "▁c ad",
+ "▁ca d",
+ "el ve",
+ "br ace",
+ "bra ce",
+ "b race",
+ "▁J r",
+ "st able",
+ "sta ble",
+ "stab le",
+ "s table",
+ "EC T",
+ "E CT",
+ "lem ma",
+ "med iate",
+ "medi ate",
+ "media te",
+ "▁v in",
+ "▁vi n",
+ "▁ vin",
+ "▁mon ument",
+ "▁c v",
+ "▁ cv",
+ "▁w inter",
+ "▁win ter",
+ "▁trans formation",
+ "▁transform ation",
+ "▁N ick",
+ "▁Nic k",
+ "▁Ni ck",
+ "str onom",
+ "▁f rag",
+ "▁fr ag",
+ "▁fra g",
+ "▁in tel",
+ "▁int el",
+ "▁inte l",
+ "ra ction",
+ "rac tion",
+ "ract ion",
+ "r action",
+ "▁consider ing",
+ "▁consid ering",
+ "▁F le",
+ "▁Fl e",
+ "▁ ло",
+ "▁A près",
+ "▁Ap rès",
+ "▁A M",
+ "▁ AM",
+ "▁H um",
+ "▁Hu m",
+ "▁m undo",
+ "NE R",
+ "N ER",
+ "▁Be low",
+ "▁Bel ow",
+ "▁го рода",
+ "▁горо да",
+ "▁город а",
+ "ar ters",
+ "art ers",
+ "arter s",
+ "arte rs",
+ "-- \"",
+ "▁П е",
+ "▁ Пе",
+ "î t",
+ "▁t xt",
+ "▁tx t",
+ "▁ txt",
+ "an gers",
+ "ang ers",
+ "ange rs",
+ "anger s",
+ "▁t hy",
+ "▁th y",
+ "▁ thy",
+ "CL A",
+ "C LA",
+ "ib les",
+ "ible s",
+ "i bles",
+ "▁request ed",
+ "▁requ ested",
+ "▁Alex and",
+ "▁fact ors",
+ "▁fa ctors",
+ "▁factor s",
+ "▁produ ces",
+ "▁produce s",
+ "ning en",
+ "n ingen",
+ "▁со стоя",
+ "▁optim ization",
+ "ch od",
+ "cho d",
+ "c hod",
+ "> `",
+ "▁Wik ip",
+ "nost i",
+ "nos ti",
+ "n osti",
+ "▁compet ition",
+ "▁H ann",
+ "▁Ha nn",
+ "▁Han n",
+ "▁z ona",
+ "▁zo na",
+ "d c",
+ "de sign",
+ "des ign",
+ "▁Z u",
+ "▁e spec",
+ "▁es pec",
+ "▁espe c",
+ "▁esp ec",
+ "equ ality",
+ "equal ity",
+ "e quality",
+ "▁A bb",
+ "▁Ab b",
+ "▁develop er",
+ "▁ developer",
+ "▁\" ^",
+ "▁Sh ort",
+ "▁Sho rt",
+ "▁ Short",
+ "▁pl ans",
+ "▁pla ns",
+ "▁plan s",
+ "▁v it",
+ "▁vi t",
+ "iz able",
+ "iza ble",
+ "burg h",
+ "bur gh",
+ "ag em",
+ "age m",
+ "a gem",
+ "▁Pr int",
+ "▁Pri nt",
+ "▁Prin t",
+ "▁ Print",
+ "í v",
+ "▁su itable",
+ "▁suit able",
+ "pi cker",
+ "pic ker",
+ "pick er",
+ "p icker",
+ "Pro file",
+ "an dy",
+ "and y",
+ "▁qu ot",
+ "▁ quot",
+ "▁Dur ante",
+ "▁Durant e",
+ "▁Fran cia",
+ "▁Fr ancia",
+ "▁Franc ia",
+ "▁t art",
+ "▁tar t",
+ "▁ta rt",
+ "▁V enez",
+ "▁Ve nez",
+ "▁Ven ez",
+ "▁dis patch",
+ "▁disp atch",
+ "▁ dispatch",
+ "▁observ ations",
+ "▁observation s",
+ "▁ ż",
+ "In valid",
+ "▁occ urr",
+ "▁occur r",
+ "▁oc curr",
+ "т ки",
+ "Mem ento",
+ "M emento",
+ "▁S yd",
+ "▁Sy d",
+ "▁tiem po",
+ "▁st aff",
+ "▁sta ff",
+ "▁se ctions",
+ "▁section s",
+ "▁sect ions",
+ "▁ sections",
+ "▁s sh",
+ "▁ss h",
+ "▁ ssh",
+ "▁N GC",
+ "ë l",
+ "▁er re",
+ "▁err e",
+ "▁div ided",
+ "▁divide d",
+ "▁divid ed",
+ "▁With out",
+ "▁du rant",
+ "▁dur ant",
+ "▁j aar",
+ "▁ja ar",
+ "▁ −",
+ "▁sold iers",
+ "▁soldier s",
+ "ун к",
+ "la pse",
+ "lap se",
+ "laps e",
+ "▁Val ley",
+ "▁Vall ey",
+ "▁Valle y",
+ "▁( :",
+ "▁ (:",
+ "re ra",
+ "rer a",
+ "r era",
+ "▁d ével",
+ "▁dé vel",
+ "▁p éri",
+ "▁pé ri",
+ "▁calcul ation",
+ "▁calc ulation",
+ "▁ke ine",
+ "▁kein e",
+ "er tain",
+ "ert ain",
+ "erta in",
+ "▁те ле",
+ "ру д",
+ "▁c ul",
+ "▁cu l",
+ "▁ cul",
+ "▁cl oth",
+ "▁clo th",
+ "; }",
+ "▁pr zed",
+ "▁prze d",
+ "▁prz ed",
+ "Mon th",
+ "Mo nth",
+ "Mont h",
+ "Pi cker",
+ "P icker",
+ "▁S V",
+ "▁ SV",
+ "ar ian",
+ "ari an",
+ "aria n",
+ "a rian",
+ "▁Re view",
+ "▁Rev iew",
+ "▁h ang",
+ "▁ha ng",
+ "▁han g",
+ "▁ hang",
+ "▁о кт",
+ "▁ок т",
+ "▁F ront",
+ "▁Fr ont",
+ "▁Fro nt",
+ "▁ Front",
+ "ot lin",
+ "▁trans lation",
+ "▁transl ation",
+ "▁m odo",
+ "▁mod o",
+ "▁mo do",
+ "▁stat istics",
+ "▁statist ics",
+ "▁N ue",
+ "▁Nu e",
+ "▁Ни кола",
+ "NU M",
+ "N UM",
+ "▁s hips",
+ "▁sh ips",
+ "▁ship s",
+ "▁ ships",
+ "▁Re port",
+ "▁Rep ort",
+ "▁ Report",
+ "{ [",
+ "E ffect",
+ "ie ri",
+ "ier i",
+ "i eri",
+ "▁par ties",
+ "▁part ies",
+ "▁partie s",
+ "▁parti es",
+ "pl a",
+ "p la",
+ "r w",
+ "▁Work s",
+ "▁Wor ks",
+ "▁i ron",
+ "▁ir on",
+ "▁att ract",
+ "▁attr act",
+ "▁attra ct",
+ "▁c ort",
+ "▁cor t",
+ "▁co rt",
+ "n á",
+ "▁Ste ve",
+ "▁b ene",
+ "▁be ne",
+ "▁ben e",
+ "то н",
+ "т он",
+ "ícul a",
+ "Tw o",
+ "T wo",
+ "▁г лав",
+ "▁гла в",
+ "▁V ideo",
+ "▁ Video",
+ "▁power ful",
+ "au ch",
+ "auc h",
+ "a uch",
+ "ma nde",
+ "man de",
+ "m ande",
+ "äch st",
+ "ächs t",
+ "La t",
+ "L at",
+ "▁z na",
+ "▁zn a",
+ "▁ zna",
+ "▁fig ures",
+ "▁figure s",
+ "▁figur es",
+ "▁a lias",
+ "▁al ias",
+ "▁ali as",
+ "▁ alias",
+ "ne x",
+ "n ex",
+ "▁c ategories",
+ "▁categ ories",
+ "▁categor ies",
+ "▁categorie s",
+ "▁ categories",
+ "cal led",
+ "call ed",
+ "c alled",
+ "▁Sim ilar",
+ "▁g irls",
+ "▁girl s",
+ "▁gir ls",
+ "pe z",
+ "p ez",
+ "▁j oint",
+ "▁jo int",
+ "▁join t",
+ "▁ joint",
+ "ро го",
+ "р ого",
+ "ik en",
+ "ike n",
+ "i ken",
+ "чи на",
+ "чин а",
+ "an cia",
+ "anc ia",
+ "anci a",
+ "▁t ijd",
+ "▁ti jd",
+ "▁R ose",
+ "▁Ro se",
+ "▁Ros e",
+ "▁alg orithms",
+ "▁algorithm s",
+ "▁print ing",
+ "▁prin ting",
+ "ne a",
+ "n ea",
+ "▁exec uting",
+ "▁execut ing",
+ "▁l ambda",
+ "▁ lambda",
+ "▁reg ional",
+ "▁region al",
+ "▁Co pa",
+ "▁Cop a",
+ "F oo",
+ "ph ys",
+ "phy s",
+ "z m",
+ "▁L aur",
+ "▁La ur",
+ "▁Lau r",
+ "▁candid ate",
+ "▁J a",
+ "zy m",
+ "z ym",
+ "Ex ample",
+ "▁s piel",
+ "▁sp iel",
+ "▁ spiel",
+ "▁д ей",
+ "▁де й",
+ "▁ дей",
+ "ne hmen",
+ "neh men",
+ "nehm en",
+ "ke iten",
+ "keit en",
+ "▁с ент",
+ "int ent",
+ "inte nt",
+ ". (",
+ "▁пер вы",
+ "pr om",
+ "pro m",
+ "p rom",
+ "▁n at",
+ "▁na t",
+ "▁ nat",
+ "▁im agine",
+ "▁imag ine",
+ "call back",
+ "com ponents",
+ "component s",
+ "with out",
+ "▁a quest",
+ "▁aqu est",
+ "Su pport",
+ "Supp ort",
+ "▁respons ible",
+ "▁j ego",
+ "▁je go",
+ "l j",
+ "wi ll",
+ "w ill",
+ "le an",
+ "lea n",
+ "el and",
+ "ela nd",
+ "e land",
+ "olog ía",
+ "m c",
+ "Pro xy",
+ "▁o cup",
+ "▁oc up",
+ "▁на ходи",
+ "▁r ub",
+ "▁ru b",
+ "ні в",
+ "н ів",
+ "▁F all",
+ "▁Fa ll",
+ "▁Fal l",
+ "am os",
+ "amo s",
+ "a mos",
+ "▁E p",
+ "en tre",
+ "ent re",
+ "entr e",
+ "fa il",
+ "f ail",
+ "W orld",
+ "▁Ed itor",
+ "▁Edit or",
+ "▁ Editor",
+ "▁ex pos",
+ "▁exp os",
+ "▁f inds",
+ "▁find s",
+ "▁fin ds",
+ "▁C ulture",
+ "▁Cult ure",
+ "▁ Culture",
+ "LE ASE",
+ "▁m ovie",
+ "▁mov ie",
+ "▁mo vie",
+ "▁ movie",
+ "< =",
+ "omet ric",
+ "o metric",
+ "el ing",
+ "eli ng",
+ "elin g",
+ "e ling",
+ "numer able",
+ "ou rd",
+ "our d",
+ "o urd",
+ "▁S ea",
+ "▁Se a",
+ "▁b ild",
+ "▁bi ld",
+ "▁bil d",
+ "▁ bild",
+ "▁о ста",
+ "▁ос та",
+ "▁ост а",
+ "bl o",
+ "b lo",
+ "▁l ose",
+ "▁lo se",
+ "▁los e",
+ "▁ lose",
+ "at eurs",
+ "ate urs",
+ "ateur s",
+ "ou red",
+ "our ed",
+ "oure d",
+ "o ured",
+ "▁B att",
+ "▁Ba tt",
+ "▁Bat t",
+ "() ;\r",
+ "(); \r",
+ "( );\r",
+ "▁p oz",
+ "▁po z",
+ "pos ts",
+ "post s",
+ "pe nd",
+ "pen d",
+ "p end",
+ "cer tain",
+ "cert ain",
+ "c ertain",
+ "ни ком",
+ "ник ом",
+ "J ust",
+ "web kit",
+ "dem ás",
+ "~~ ~~",
+ "▁indic ates",
+ "▁indicate s",
+ "▁p ark",
+ "▁par k",
+ "▁ park",
+ "ri que",
+ "r ique",
+ "vo d",
+ "v od",
+ "▁Ch amp",
+ "▁Cham p",
+ "▁Cha mp",
+ "ft ware",
+ "OP T",
+ "O PT",
+ "dj ango",
+ "d jango",
+ "re lease",
+ "▁ È",
+ "S R",
+ "▁polit ician",
+ "▁r oi",
+ "▁ro i",
+ "at uren",
+ "atur en",
+ "ature n",
+ "atu ren",
+ "▁Deutsch e",
+ "ta gon",
+ "tag on",
+ "t agon",
+ "▁M ov",
+ "▁Mo v",
+ "ob ierno",
+ "obi erno",
+ "▁da ß",
+ "ut her",
+ "uth er",
+ "u ther",
+ "in di",
+ "ind i",
+ "▁Wik ipedia",
+ "▁Wikip edia",
+ "▁Wikiped ia",
+ "▁a nos",
+ "▁an os",
+ "▁ano s",
+ "▁ anos",
+ "▁ob serve",
+ "▁obser ve",
+ "▁observ e",
+ "▁obs erve",
+ "el ly",
+ "ell y",
+ "▁rail way",
+ "at on",
+ "ato n",
+ "a ton",
+ "▁e num",
+ "▁en um",
+ "▁ enum",
+ "hu s",
+ "h us",
+ "▁in hab",
+ "P si",
+ "oir e",
+ "oi re",
+ "o ire",
+ "▁Х о",
+ "▁S pace",
+ "▁Sp ace",
+ "▁ Space",
+ "▁Ар хи",
+ "▁an terior",
+ "▁ante rior",
+ "▁ Ł",
+ "is ons",
+ "ison s",
+ "iso ns",
+ "I l",
+ "▁am éric",
+ "la ps",
+ "lap s",
+ "l aps",
+ "▁B BC",
+ "▁BB C",
+ "QUE ST",
+ "Con stra",
+ "Const ra",
+ "Cons tra",
+ "mon t",
+ "mo nt",
+ "m ont",
+ "ä ft",
+ "▁ä ven",
+ "ub ern",
+ "ube rn",
+ "uber n",
+ "u bern",
+ "< !--",
+ "▁c oding",
+ "▁co ding",
+ "▁cod ing",
+ "the ory",
+ "at hed",
+ "ath ed",
+ "▁Ar be",
+ "▁ш и",
+ "▁ ши",
+ "for Each",
+ "om orphism",
+ "omorph ism",
+ "det ails",
+ "detail s",
+ "ach sen",
+ "in tegr",
+ "int egr",
+ "inte gr",
+ "V or",
+ "Un known",
+ "ace ae",
+ "a ceae",
+ "in ue",
+ "inu e",
+ "es ome",
+ "eso me",
+ "e some",
+ "▁F ir",
+ "ch ain",
+ "cha in",
+ "▁extrem ely",
+ "▁extreme ly",
+ "mult icol",
+ "multi col",
+ "▁Sw ift",
+ "▁address es",
+ "▁addr esses",
+ "hs pace",
+ "h space",
+ "▁Ro ger",
+ "▁Rog er",
+ "▁d essen",
+ "▁des sen",
+ "▁dess en",
+ "▁con sequ",
+ "▁cons equ",
+ "▁conse qu",
+ "ual mente",
+ "▁Pre mier",
+ "▁Prem ier",
+ "▁Re cord",
+ "▁Rec ord",
+ "▁ Record",
+ "▁B ron",
+ "▁Br on",
+ "▁Bro n",
+ "ki r",
+ "k ir",
+ "se x",
+ "s ex",
+ "in tern",
+ "int ern",
+ "inter n",
+ "inte rn",
+ "▁benef it",
+ "▁bene fit",
+ "um en",
+ "ume n",
+ "u men",
+ "▁be coming",
+ "▁bec oming",
+ "▁becom ing",
+ "▁l ig",
+ "▁li g",
+ "▁ lig",
+ "▁pop ula",
+ "▁popul a",
+ "os c",
+ "o sc",
+ "▁c iv",
+ "▁ci v",
+ "▁great est",
+ "▁pro ces",
+ "▁proc es",
+ "] *",
+ "▁ме сто",
+ "▁мест о",
+ "▁' $",
+ "▁ '$",
+ "he ll",
+ "hel l",
+ "h ell",
+ "(\" \\",
+ "( \"\\",
+ "▁n ine",
+ "▁ni ne",
+ "▁nin e",
+ "▁F ac",
+ "▁Fa c",
+ "ul pt",
+ "ulp t",
+ "jo urs",
+ "jou rs",
+ "j ours",
+ "▁C opy",
+ "▁Co py",
+ "▁Cop y",
+ "▁ Copy",
+ "▁activ ities",
+ "▁Dem ocr",
+ "▁Demo cr",
+ "E s",
+ "Su ccess",
+ "▁E sta",
+ "▁Est a",
+ "▁Es ta",
+ "it ul",
+ "itu l",
+ "is ti",
+ "ist i",
+ "▁B ed",
+ "▁Be d",
+ "ja s",
+ "j as",
+ "▁т ем",
+ "▁те м",
+ "▁ тем",
+ "▁H ung",
+ "▁Hu ng",
+ "▁Hun g",
+ "G ame",
+ "▁he av",
+ "onn ées",
+ "▁branch es",
+ "▁bran ches",
+ "bo rg",
+ "bor g",
+ "b org",
+ "▁v l",
+ "▁ vl",
+ "▁slow ly",
+ "F a",
+ "Go ogle",
+ "em i",
+ "e mi",
+ "▁circumst ances",
+ "▁' %",
+ "▁U nd",
+ "▁Un d",
+ "▁ Und",
+ "▁Vict oria",
+ "▁Victor ia",
+ "▁T yp",
+ "▁Ty p",
+ "▁ Typ",
+ "rupt ed",
+ "rup ted",
+ "▁rel ativ",
+ "▁s lo",
+ "▁sl o",
+ "▁p adre",
+ "▁pad re",
+ "▁d aily",
+ "▁da ily",
+ "▁dai ly",
+ "▁or th",
+ "▁ort h",
+ "▁ orth",
+ "чни й",
+ "ч ний",
+ "▁fran zös",
+ "▁t eil",
+ "▁te il",
+ "▁ teil",
+ "▁Se curity",
+ "▁Sec urity",
+ "▁ Security",
+ "or don",
+ "ord on",
+ "ordo n",
+ "▁s weet",
+ "▁swe et",
+ "SI ZE",
+ "▁C el",
+ "▁Ce l",
+ "èt res",
+ "è tres",
+ "om mes",
+ "omm es",
+ "▁с і",
+ "▁ сі",
+ "▁effort s",
+ "ą z",
+ "▁oh ne",
+ "▁South ern",
+ "▁Sou thern",
+ "▁approxim ately",
+ "▁approximate ly",
+ "це н",
+ "ц ен",
+ "(' #",
+ "▁s aving",
+ "▁sa ving",
+ "▁sav ing",
+ "nb sp",
+ "▁trans late",
+ "▁transl ate",
+ "▁ translate",
+ "▁Î n",
+ "mem ber",
+ "m ember",
+ "▁l aws",
+ "▁la ws",
+ "▁law s",
+ "▁ж ен",
+ "▁же н",
+ "▁ жен",
+ "▁си сте",
+ "t c",
+ "> \\",
+ "el te",
+ "elt e",
+ "▁e hem",
+ "▁con trad",
+ "▁cont rad",
+ "▁contr ad",
+ "▁contra d",
+ "▁ру с",
+ "▁р ус",
+ "▁ рус",
+ "ь я",
+ "▁M iddle",
+ "▁ Middle",
+ "qu ip",
+ "qui p",
+ "▁c hez",
+ "▁ch ez",
+ "▁che z",
+ "▁ chez",
+ "Field s",
+ "▁per mit",
+ "▁perm it",
+ "ik el",
+ "ike l",
+ "i kel",
+ "▁w ir",
+ "▁t rial",
+ "▁tr ial",
+ "▁tri al",
+ "▁ver schied",
+ "▁versch ied",
+ "▁ф ев",
+ "▁фе в",
+ "▁m ale",
+ "▁ma le",
+ "▁mal e",
+ "▁ male",
+ "▁я зы",
+ "▁ny el",
+ "ak ter",
+ "akt er",
+ "akte r",
+ "a kter",
+ "▁den omin",
+ "cept or",
+ "cep tor",
+ "▁W at",
+ "▁Wa t",
+ "▁f ino",
+ "▁fin o",
+ "▁fi no",
+ "▁XV III",
+ "▁XVI II",
+ "▁XVII I",
+ "ry ption",
+ "rypt ion",
+ "de sc",
+ "des c",
+ "d esc",
+ "ap a",
+ "a pa",
+ "ле на",
+ "лен а",
+ "л ена",
+ "▁k ol",
+ "▁ko l",
+ "▁ kol",
+ "▁ Є",
+ "▁dep endent",
+ "▁depend ent",
+ "▁ dependent",
+ "▁C ra",
+ "▁Cr a",
+ "▁st orm",
+ "▁stor m",
+ "▁sto rm",
+ "▁Г ер",
+ "▁Ге р",
+ "▁p ipe",
+ "▁pi pe",
+ "▁pip e",
+ "▁ pipe",
+ "▁att ended",
+ "▁attend ed",
+ "▁v ita",
+ "▁vi ta",
+ "▁vit a",
+ "uz ione",
+ "u zione",
+ "cz as",
+ "cza s",
+ "c zas",
+ "on da",
+ "ond a",
+ "▁b old",
+ "▁bo ld",
+ "▁bol d",
+ "▁ bold",
+ "Column s",
+ "ic ió",
+ "ici ó",
+ "i ció",
+ "▁c zę",
+ "▁cz ę",
+ "▁из вест",
+ "▁Cl oud",
+ "▁Clo ud",
+ "▁ Cloud",
+ "▁w arm",
+ "▁war m",
+ "▁wa rm",
+ "▁с ы",
+ "▁ сы",
+ "▁с те",
+ "▁ст е",
+ "▁ сте",
+ "▁produ cer",
+ "▁produce r",
+ "▁Lud wig",
+ "▁Nor thern",
+ "▁North ern",
+ "ł ą",
+ "NS String",
+ "▁H ad",
+ "▁Ha d",
+ "▁И ван",
+ "▁E g",
+ "▁I mp",
+ "▁Im p",
+ "▁ Imp",
+ "ш і",
+ "▁A uch",
+ "▁Au ch",
+ "то к",
+ "т ок",
+ "▁H it",
+ "▁Hi t",
+ "▁qu ien",
+ "▁qui en",
+ "▁de partment",
+ "▁depart ment",
+ "▁erh ielt",
+ "▁u i",
+ "▁ ui",
+ "▁S pr",
+ "▁Sp r",
+ "се р",
+ "с ер",
+ "ou rt",
+ "our t",
+ "o urt",
+ "▁Ste phen",
+ "▁Step hen",
+ "▁Steph en",
+ "te am",
+ "▁z ip",
+ "▁ zip",
+ "▁B ang",
+ "▁Ba ng",
+ "▁Ban g",
+ "▁grow th",
+ "▁j am",
+ "▁ja m",
+ "▁K ais",
+ "▁Ka is",
+ "b matrix",
+ "▁As ia",
+ "▁rég ion",
+ "= /",
+ "▁Pac ific",
+ "▁author ity",
+ "▁# [",
+ "та ми",
+ "там и",
+ "▁every one",
+ "▁att end",
+ "▁atte nd",
+ "▁ attend",
+ "▁tim estamp",
+ "▁ timestamp",
+ "▁t ries",
+ "▁tr ies",
+ "▁tri es",
+ "▁f f",
+ "▁ ff",
+ "ше й",
+ "ш ей",
+ "▁develop ing",
+ "ol t",
+ "o lt",
+ "up s",
+ "u ps",
+ "▁moment o",
+ "▁mom ento",
+ "▁S ain",
+ "▁Sa in",
+ "Te rm",
+ "T erm",
+ "▁c elle",
+ "▁ce lle",
+ "▁cell e",
+ "▁cel le",
+ "G R",
+ "Mo use",
+ "M ouse",
+ "▁челов ек",
+ "▁челове к",
+ "▁Col lection",
+ "▁Coll ection",
+ "▁Collect ion",
+ "▁ Collection",
+ "ât re",
+ "â tre",
+ "▁W rite",
+ "▁Writ e",
+ "▁ Write",
+ "▁P om",
+ "▁Po m",
+ "[ -",
+ "Ca m",
+ "C am",
+ "▁loc ations",
+ "▁location s",
+ "▁J son",
+ "▁ Json",
+ "el led",
+ "ell ed",
+ "elle d",
+ "select or",
+ "sel ector",
+ "re peat",
+ "ct ors",
+ "ctor s",
+ "ot te",
+ "ott e",
+ "o tte",
+ "ви зи",
+ "änd e",
+ "än de",
+ "ä nde",
+ "▁ach ieved",
+ "▁achieve d",
+ "▁achiev ed",
+ "▁main ly",
+ "____ ____",
+ "! )",
+ "▁явля ется",
+ "▁c ities",
+ "▁ci ties",
+ "▁cit ies",
+ "sing le",
+ "sin gle",
+ "г ре",
+ "▁P ak",
+ "▁Pa k",
+ "▁allow ing",
+ "▁allo wing",
+ "fer red",
+ "▁а пре",
+ "хо дя",
+ "ход я",
+ "▁brow sers",
+ "▁browser s",
+ "▁es crit",
+ "▁esc rit",
+ "▁escri t",
+ "▁mount ain",
+ "▁network s",
+ "▁net works",
+ "ki nd",
+ "kin d",
+ "k ind",
+ "li ver",
+ "live r",
+ "liv er",
+ "l iver",
+ "▁cl osing",
+ "▁clos ing",
+ "▁clo sing",
+ "▁sk ip",
+ "▁ski p",
+ "▁ skip",
+ "ú t",
+ "▁d uration",
+ "▁dur ation",
+ "▁ duration",
+ "ét ait",
+ "éta it",
+ "é tait",
+ "▁s cr",
+ "▁sc r",
+ "▁ scr",
+ "B B",
+ "ór ia",
+ "ó ria",
+ "▁K ultur",
+ "▁Kult ur",
+ "▁output s",
+ "multi column",
+ "multicol umn",
+ "▁bel ongs",
+ "▁belong s",
+ "fe ature",
+ "uc ky",
+ "uck y",
+ "▁j uli",
+ "▁ju li",
+ "▁jul i",
+ "▁рай она",
+ "▁райо на",
+ "▁район а",
+ "з во",
+ "fact ory",
+ "factor y",
+ "f actory",
+ "Fun c",
+ "F unc",
+ "▁ut ter",
+ "▁ utter",
+ "▁TO DO",
+ "▁o bt",
+ "▁ob t",
+ "ateg ories",
+ "ategor ies",
+ "▁com bine",
+ "▁comb ine",
+ "▁combin e",
+ "▁W all",
+ "▁Wal l",
+ "▁Wa ll",
+ "▁under lying",
+ "ar ono",
+ "aron o",
+ "aro no",
+ "▁P rote",
+ "▁Pro te",
+ "▁Pr ote",
+ "c ów",
+ "st an",
+ "sta n",
+ "s tan",
+ "▁G ew",
+ "▁Ge w",
+ "▁opt imal",
+ "▁optim al",
+ "▁Archiv link",
+ "▁S cript",
+ "▁ Script",
+ "▁destroy ed",
+ "х е",
+ "▁Fire fox",
+ "▁s ole",
+ "▁so le",
+ "▁sol e",
+ "▁ sole",
+ "La yer",
+ "L ayer",
+ "т ку",
+ "▁st ores",
+ "▁stor es",
+ "▁store s",
+ "▁sto res",
+ "▁dis plays",
+ "▁display s",
+ "is hing",
+ "ish ing",
+ "ishi ng",
+ "▁о ст",
+ "▁ос т",
+ "▁inst ant",
+ "▁el ő",
+ "▁habit antes",
+ "▁Ein wo",
+ "▁a li",
+ "▁al i",
+ "▁ ali",
+ "▁ER ROR",
+ "▁ERR OR",
+ "▁ ERROR",
+ "▁a head",
+ "▁ah ead",
+ "▁go als",
+ "▁goal s",
+ "▁m ár",
+ "▁má r",
+ "▁s ą",
+ "▁m art",
+ "▁ma rt",
+ "▁mar t",
+ "▁ mart",
+ "мини стра",
+ "F r",
+ "▁V illa",
+ "▁Vill a",
+ "▁Vi lla",
+ "▁Vil la",
+ "▁M arc",
+ "▁Mar c",
+ "▁Ma rc",
+ "ro py",
+ "rop y",
+ "r opy",
+ "ag ram",
+ "agr am",
+ "a gram",
+ "ha pe",
+ "h ape",
+ "ме й",
+ "м ей",
+ "▁A L",
+ "▁ AL",
+ "▁conne xes",
+ "▁En tre",
+ "▁Ent re",
+ "St ep",
+ "Ste p",
+ "лі в",
+ "л ів",
+ "▁De ath",
+ "▁r ise",
+ "▁ris e",
+ "▁ri se",
+ "▁f os",
+ "▁fo s",
+ "▁l ev",
+ "▁le v",
+ "▁ lev",
+ "ga be",
+ "g abe",
+ "▁b roke",
+ "▁br oke",
+ "▁bro ke",
+ "product s",
+ "▁m edi",
+ "▁me di",
+ "▁med i",
+ "▁ medi",
+ "▁dis pon",
+ "▁disp on",
+ "Pack age",
+ "P ackage",
+ "Image View",
+ "▁N ag",
+ "▁Na g",
+ "uj ą",
+ "u ją",
+ "W ord",
+ "▁k ole",
+ "▁ko le",
+ "▁kol e",
+ "ße r",
+ "ß er",
+ ")` .",
+ ") `.",
+ "▁r ol",
+ "▁ro l",
+ "▁ rol",
+ "▁ í",
+ "те й",
+ "т ей",
+ "Pro gress",
+ "be an",
+ "▁s empre",
+ "▁sem pre",
+ "State ment",
+ "Stat ement",
+ "UP DATE",
+ "▁mond iale",
+ "▁w rapper",
+ "▁wr apper",
+ "▁wra pper",
+ "▁wrap per",
+ "▁ wrapper",
+ "▁C hart",
+ "▁Ch art",
+ "▁Char t",
+ "▁Cha rt",
+ "▁ Chart",
+ "▁on Click",
+ "че ння",
+ "чен ня",
+ "LO G",
+ "some thing",
+ "som ething",
+ "s omething",
+ "▁IN SERT",
+ "▁ INSERT",
+ "ще ния",
+ "ue t",
+ "u et",
+ "wer p",
+ "we rp",
+ "ro und",
+ "rou nd",
+ "r ound",
+ "ic hen",
+ "ich en",
+ "iche n",
+ "i chen",
+ "▁X VI",
+ "▁XV I",
+ "з ни",
+ "▁ave va",
+ "▁St ore",
+ "▁Sto re",
+ "▁ Store",
+ "▁x s",
+ "▁ xs",
+ "ra cht",
+ "rac ht",
+ "rach t",
+ "r acht",
+ "sc ar",
+ "s car",
+ "▁op era",
+ "▁oper a",
+ "▁ opera",
+ "▁deg rees",
+ "▁degree s",
+ "▁cit iz",
+ "äs ident",
+ "▁class ical",
+ "▁classic al",
+ "▁Jer sey",
+ "▁er sch",
+ "▁ers ch",
+ "▁ ersch",
+ "▁treat ment",
+ "▁насе ље",
+ "н ня",
+ "▁bo ost",
+ "▁ boost",
+ "am ount",
+ "amo unt",
+ "a mount",
+ "▁со зда",
+ "ér ieur",
+ "érie ur",
+ "éri eur",
+ "▁t elling",
+ "▁tell ing",
+ "▁tel ling",
+ "Ha s",
+ "H as",
+ "▁in iti",
+ "▁init i",
+ "▁П и",
+ "ev al",
+ "e val",
+ "▁M atch",
+ "▁Mat ch",
+ "▁ Match",
+ "▁cor re",
+ "▁corr e",
+ "Point er",
+ "Po inter",
+ "▁pass es",
+ "▁passe s",
+ "comp any",
+ "▁а н",
+ "▁ ан",
+ "ach es",
+ "ac hes",
+ "ache s",
+ "a ches",
+ "▁sig lo",
+ "не м",
+ "н ем",
+ "▁ex change",
+ "▁ exchange",
+ "ci to",
+ "cit o",
+ "c ito",
+ "▁B ab",
+ "▁Ba b",
+ "Do c",
+ "D oc",
+ "ze ś",
+ "▁на род",
+ "▁ народ",
+ "▁conf lict",
+ "▁conflic t",
+ "▁confl ict",
+ "▁nov ember",
+ "ea u",
+ "e au",
+ "ö v",
+ "▁H ub",
+ "▁Hu b",
+ "▁ Hub",
+ "▁p oco",
+ "▁po co",
+ "▁poc o",
+ "en sa",
+ "ens a",
+ "sch ließ",
+ "lass e",
+ "las se",
+ "l asse",
+ "data s",
+ "dat as",
+ "▁с ти",
+ "▁ст и",
+ "▁ сти",
+ "un ivers",
+ "uni vers",
+ "ek s",
+ "e ks",
+ "▁C ho",
+ "▁Ch o",
+ "▁ Cho",
+ "▁c ô",
+ "▁( .",
+ "▁ (.",
+ "ew nę",
+ "▁Ch ief",
+ "▁Chi ef",
+ "▁ch ef",
+ "▁che f",
+ "▁у прав",
+ "ul i",
+ "u li",
+ "▁' ''",
+ "▁'' '",
+ "▁ '''",
+ "nap shot",
+ "▁re lac",
+ "▁rel ac",
+ "▁rela c",
+ "ég e",
+ "é ge",
+ "w t",
+ "we nd",
+ "wen d",
+ "w end",
+ "os ing",
+ "osi ng",
+ "o sing",
+ "▁ha cer",
+ "▁hace r",
+ "▁ф ран",
+ "au tres",
+ "aut res",
+ "autre s",
+ "▁f ils",
+ "▁fil s",
+ "▁fi ls",
+ "er ed",
+ "ere d",
+ "e red",
+ "▁По силання",
+ "▁th erm",
+ "▁the rm",
+ "▁ther m",
+ "ер жа",
+ "su ch",
+ "s uch",
+ "▁i hren",
+ "▁ih ren",
+ "▁ihr en",
+ "▁ihre n",
+ "▁en contr",
+ "▁l ots",
+ "▁lo ts",
+ "▁lot s",
+ "lo go",
+ "log o",
+ "l ogo",
+ "▁W i",
+ "/ (",
+ "ш ње",
+ "DA TA",
+ "DAT A",
+ "D ATA",
+ "▁P layer",
+ "▁Pl ayer",
+ "▁Play er",
+ "▁Pla yer",
+ "▁ Player",
+ "▁Leip zig",
+ "▁rel atives",
+ "▁relative s",
+ "▁relativ es",
+ "ре в",
+ "р ев",
+ "▁new sp",
+ "▁news p",
+ "? ,",
+ "▁St utt",
+ "▁Stu tt",
+ "▁d ual",
+ "▁du al",
+ "▁compan ies",
+ "▁z am",
+ "▁za m",
+ "put ation",
+ "▁in equality",
+ "▁t rem",
+ "▁tr em",
+ "▁tre m",
+ "hi ps",
+ "hip s",
+ "h ips",
+ "an ch",
+ "anc h",
+ "▁ Ż",
+ "бур г",
+ "▁cop ies",
+ "da sh",
+ "das h",
+ "d ash",
+ "во р",
+ "в ор",
+ "spiel er",
+ "s pieler",
+ "▁Re volution",
+ "▁Revol ution",
+ "es ty",
+ "est y",
+ "e sty",
+ "▁j unto",
+ "▁jun to",
+ "▁junt o",
+ "▁Ind eed",
+ "ok al",
+ "oka l",
+ "o kal",
+ "ctr ine",
+ "▁F ord",
+ "▁For d",
+ "▁Fo rd",
+ "▁C REATE",
+ "▁ CREATE",
+ "▁w alls",
+ "▁wall s",
+ "▁wal ls",
+ "▁a ute",
+ "▁au te",
+ "▁aut e",
+ "S U",
+ "wh y",
+ "w hy",
+ "plement ation",
+ "ro ut",
+ "rou t",
+ "r out",
+ "Mat rix",
+ "▁s ad",
+ "▁sa d",
+ "ан а",
+ "а на",
+ "▁P ic",
+ "▁Pi c",
+ ". “",
+ "▁A C",
+ "▁ AC",
+ "▁F est",
+ "▁Fe st",
+ "▁des ktop",
+ "▁ desktop",
+ "▁P ay",
+ "▁Pa y",
+ "▁ Pay",
+ "ome times",
+ "omet imes",
+ "▁T ak",
+ "▁Ta k",
+ "ра б",
+ "▁S ever",
+ "▁Se ver",
+ "▁nor thern",
+ "▁north ern",
+ "an ter",
+ "ant er",
+ "ante r",
+ "▁Mod ern",
+ "▁Mo dern",
+ "▁Mode rn",
+ "wa l",
+ "w al",
+ "{ \r",
+ "on line",
+ "ö k",
+ "▁brit ann",
+ "$ _",
+ "▁j ar",
+ "▁ja r",
+ "▁ jar",
+ "T L",
+ "xx xx",
+ "xxx x",
+ "x xxx",
+ "mer ge",
+ "▁N amen",
+ "▁Name n",
+ "▁Na men",
+ "▁Nam en",
+ "▁K EY",
+ "▁ KEY",
+ "▁re fers",
+ "▁ref ers",
+ "▁refer s",
+ "▁h in",
+ "▁hi n",
+ "▁ hin",
+ "▁Vol ks",
+ "▁Volk s",
+ "st eller",
+ "stell er",
+ "stelle r",
+ "vi ation",
+ "via tion",
+ "v iation",
+ "on io",
+ "oni o",
+ "o nio",
+ "ight er",
+ "igh ter",
+ "Com pat",
+ "Comp at",
+ "▁C E",
+ "▁ CE",
+ "▁p ró",
+ "▁pr ó",
+ "▁encuent ra",
+ "the orem",
+ "▁pub li",
+ "▁Develop ment",
+ "н д",
+ "▁r os",
+ "▁ro s",
+ "▁ ros",
+ "▁s hr",
+ "▁sh r",
+ "se au",
+ "s eau",
+ "▁gener ating",
+ "▁gene rating",
+ "▁difficult y",
+ "▁Ex press",
+ "▁Exp ress",
+ "▁ Express",
+ "Al ignment",
+ "de utsch",
+ "▁Вла ди",
+ "▁sugg ests",
+ "▁suggest s",
+ "▁Famil y",
+ "▁Fam ily",
+ "▁ Family",
+ "bb i",
+ "b bi",
+ "]) .",
+ "] ).",
+ "st aw",
+ "sta w",
+ "▁pres idente",
+ "▁president e",
+ "▁presiden te",
+ "▁st esso",
+ "in x",
+ "i nx",
+ "set up",
+ "▁con form",
+ "▁conf orm",
+ "▁f ro",
+ "▁fr o",
+ "=\\ \"",
+ "= \\\"",
+ "▁d å",
+ "ic iones",
+ "ici ones",
+ "icio nes",
+ "icion es",
+ "i ciones",
+ "▁e volution",
+ "▁evol ution",
+ "pr ote",
+ "pro te",
+ "p rote",
+ "▁pr ints",
+ "▁print s",
+ "▁prin ts",
+ "▁P ont",
+ "▁Po nt",
+ "▁Pon t",
+ "▁conf usion",
+ "▁ Й",
+ "▁d ello",
+ "▁del lo",
+ "▁dell o",
+ "▁man if",
+ "Def inition",
+ "ár a",
+ "á ra",
+ "ma ls",
+ "mal s",
+ "m als",
+ "▁s ale",
+ "▁sa le",
+ "▁sal e",
+ "▁drop down",
+ "▁ dropdown",
+ "Ch ain",
+ "Amer ican",
+ "America n",
+ "▁m k",
+ "▁ mk",
+ "▁B ez",
+ "▁Be z",
+ "▁F ue",
+ "▁Fu e",
+ "▁N E",
+ "▁ NE",
+ "гра фи",
+ "граф и",
+ "doc ker",
+ "do cker",
+ "d ocker",
+ "▁^ {",
+ "▁ ^{",
+ "As sert",
+ "Ass ert",
+ "▁hor izontal",
+ "▁horizon tal",
+ "▁ horizontal",
+ "(@ \"",
+ "( @\"",
+ "▁д ву",
+ "pro xy",
+ "U ri",
+ "gen cy",
+ "g ency",
+ "▁\" [",
+ "▁Q t",
+ "▁ Qt",
+ "▁N ames",
+ "▁Name s",
+ "▁Na mes",
+ "▁Nam es",
+ "▁ Names",
+ "▁evalu ate",
+ "▁eval uate",
+ "! /",
+ "▁ein ges",
+ "▁eing es",
+ "▁syn th",
+ "▁sy nth",
+ "▁You Tube",
+ "▁turn ing",
+ "▁tur ning",
+ "▁E ric",
+ "▁Er ic",
+ "▁б ли",
+ "▁ бли",
+ "▁k lub",
+ "▁kl ub",
+ "pl orer",
+ "▁s ports",
+ "▁sport s",
+ "▁s ia",
+ "▁si a",
+ "о ш",
+ "▁d ai",
+ "▁da i",
+ "▁e urope",
+ "▁europ e",
+ "▁euro pe",
+ "ic ians",
+ "ici ans",
+ "ician s",
+ "icia ns",
+ "ings områ",
+ "▁d re",
+ "▁dr e",
+ "▁work around",
+ "▁s uit",
+ "▁su it",
+ "▁ suit",
+ "amb igu",
+ "▁quant ity",
+ "▁ quantity",
+ "▁seg undo",
+ "Sym bol",
+ "S ymbol",
+ "▁m oral",
+ "▁mo ral",
+ "▁mor al",
+ "Ch art",
+ "Char t",
+ "C hart",
+ "▁da mit",
+ "▁dam it",
+ "▁attempt s",
+ "▁d onn",
+ "▁do nn",
+ "▁don n",
+ "jo s",
+ "j os",
+ "▁e re",
+ "▁er e",
+ "▁ ere",
+ "▁hom me",
+ "▁ homme",
+ "si mp",
+ "sim p",
+ "s imp",
+ "rypt ed",
+ "▁act s",
+ "▁ac ts",
+ "inner HTML",
+ "▁tourn ament",
+ "▁s ky",
+ "▁sk y",
+ "▁ sky",
+ "Time r",
+ "Tim er",
+ "T imer",
+ "▁mill ions",
+ "▁million s",
+ "^ +",
+ "ag ent",
+ "age nt",
+ "agen t",
+ "a gent",
+ "') );",
+ "')) ;",
+ "' ));",
+ "▁o st",
+ "▁os t",
+ "▁ ost",
+ "▁g la",
+ "▁gl a",
+ "▁по мо",
+ "▁f ün",
+ "ст вом",
+ "ств ом",
+ "ство м",
+ "ewnę trz",
+ "▁Mé xico",
+ "▁l ub",
+ "▁lu b",
+ "▁ lub",
+ "▁É d",
+ "if ik",
+ "ifi k",
+ "i fik",
+ "че ский",
+ "▁im mer",
+ "▁imm er",
+ "▁ immer",
+ "en sen",
+ "ens en",
+ "ense n",
+ "an ny",
+ "ann y",
+ "in line",
+ "▁g over",
+ "▁go ver",
+ "au c",
+ "a uc",
+ "▁re pre",
+ "▁rep re",
+ "▁repr e",
+ "▁histor ia",
+ "▁hist oria",
+ "A g",
+ "▁p lt",
+ "▁pl t",
+ "▁Pr inci",
+ "▁Prin ci",
+ "im eter",
+ "ime ter",
+ "imet er",
+ "i meter",
+ "ő s",
+ "š e",
+ "▁U E",
+ "▁ UE",
+ "Equ als",
+ "Equal s",
+ "Eq uals",
+ "Dis patch",
+ "le gen",
+ "leg en",
+ "lege n",
+ "l egen",
+ "ла зи",
+ "чно й",
+ "ч ной",
+ "▁st ell",
+ "▁ste ll",
+ "▁ stell",
+ "ń st",
+ "▁c ri",
+ "▁cr i",
+ "▁ cri",
+ "▁In dep",
+ "▁Ind ep",
+ "è de",
+ "}\\ )",
+ "} \\)",
+ "▁w yst",
+ "▁wy st",
+ "▁wys t",
+ "▁fig ured",
+ "▁figure d",
+ "▁figur ed",
+ "AT CH",
+ "éb en",
+ "é ben",
+ "la cht",
+ "lac ht",
+ "lach t",
+ "l acht",
+ "▁succeed ed",
+ "gr y",
+ "g ry",
+ "▁p ret",
+ "▁pr et",
+ "▁pre t",
+ "▁ pret",
+ "▁S af",
+ "▁Sa f",
+ "▁\" );",
+ "▁\") ;",
+ "▁ \");",
+ "e h",
+ "▁offic iel",
+ "▁offici el",
+ "краї н",
+ "wi nd",
+ "win d",
+ "w ind",
+ "▁sc atter",
+ "▁F ox",
+ "▁Fo x",
+ "ic ious",
+ "ici ous",
+ "icio us",
+ "i cious",
+ "Man y",
+ "Ma ny",
+ "M any",
+ "up er",
+ "u per",
+ "▁Con vert",
+ "▁ Convert",
+ "st erd",
+ "ste rd",
+ "ster d",
+ "▁St ein",
+ "▁Ste in",
+ "▁О т",
+ "}^ {(",
+ "}^{ (",
+ "} ^{(",
+ "bet ween",
+ "hi re",
+ "h ire",
+ "▁on Create",
+ "▁ onCreate",
+ "; ",
+ "b ably",
+ "S Y",
+ "mo t",
+ "m ot",
+ "▁D ire",
+ "▁Di re",
+ "▁Dir e",
+ "itect ure",
+ "то й",
+ "▁co ordinate",
+ "▁coordin ate",
+ "▁coord inate",
+ "▁ coordinate",
+ "(\" #",
+ "▁s üd",
+ "O B",
+ "▁m orte",
+ "▁mor te",
+ "▁mort e",
+ "▁we ather",
+ "▁h ely",
+ "▁he ly",
+ "▁hel y",
+ "▁ hely",
+ "▁priv ile",
+ "RE LEASE",
+ "at el",
+ "ate l",
+ "a tel",
+ "▁recogn ized",
+ "▁recognize d",
+ "▁Th ough",
+ "сси й",
+ "mem ory",
+ "▁comp ilation",
+ "bit s",
+ "bi ts",
+ "b its",
+ "▁w ed",
+ "▁we d",
+ "▁ wed",
+ "}} _{",
+ "}}_ {",
+ "} }_{",
+ "▁G UI",
+ "п ня",
+ "▁sou thern",
+ "▁south ern",
+ "▁h ay",
+ "▁ha y",
+ "ov ić",
+ "ovi ć",
+ "o vić",
+ "la uf",
+ "lau f",
+ "l auf",
+ "▁E L",
+ "▁ EL",
+ "▁F ull",
+ "▁Fu ll",
+ "▁Ful l",
+ "▁ Full",
+ "▁Ham burg",
+ "▁Hamb urg",
+ "▁M ittel",
+ "▁Mit tel",
+ "▁Mitte l",
+ "▁Mitt el",
+ "D U",
+ "appro x",
+ "H S",
+ "▁про це",
+ "▁mag azine",
+ "▁M ig",
+ "▁Mi g",
+ "▁click ing",
+ "en tr",
+ "ent r",
+ "▁au tre",
+ "▁aut re",
+ "▁ autre",
+ "▁t é",
+ "▁ té",
+ "▁h á",
+ "▁ há",
+ "ст ы",
+ "с ты",
+ "▁M A",
+ "▁ MA",
+ "ap py",
+ "app y",
+ "a ppy",
+ "st ví",
+ "▁se lon",
+ "▁sel on",
+ "▁g ek",
+ "▁ge k",
+ "▁S l",
+ "▁ Sl",
+ "fr astr",
+ "fra str",
+ "Li b",
+ "L ib",
+ "▁Д у",
+ "▁f acing",
+ "▁fa cing",
+ "▁fac ing",
+ "▁с тар",
+ "▁ст ар",
+ "▁ста р",
+ "▁D utch",
+ "at ar",
+ "ata r",
+ "a tar",
+ "▁ke eps",
+ "▁keep s",
+ "▁Pat rick",
+ "▁Patri ck",
+ "il io",
+ "ili o",
+ "i lio",
+ "▁v ig",
+ "▁vi g",
+ "тв а",
+ "т ва",
+ "▁Feder al",
+ "▁Fed eral",
+ "▁par agraph",
+ "▁para graph",
+ "▁ paragraph",
+ "▁inter action",
+ "▁inte raction",
+ "▁interact ion",
+ "▁occ as",
+ "▁oc cas",
+ "▁I ran",
+ "▁Ir an",
+ "▁Ira n",
+ "▁machine s",
+ "▁mach ines",
+ "(( )",
+ "( ()",
+ "ur ies",
+ "uri es",
+ "u ries",
+ "▁ро ди",
+ "▁род и",
+ "▁ роди",
+ "▁а мерикан",
+ "up p",
+ "u pp",
+ "▁i ce",
+ "▁ic e",
+ "▁ ice",
+ "▁S ay",
+ "▁Sa y",
+ "▁s ail",
+ "▁sa il",
+ "▁B egin",
+ "▁Be gin",
+ "▁Beg in",
+ "▁ Begin",
+ "fi co",
+ "fic o",
+ "f ico",
+ "og a",
+ "o ga",
+ "▁d esar",
+ "▁des ar",
+ "▁d v",
+ "▁ра ди",
+ "oh en",
+ "o hen",
+ "er ei",
+ "ere i",
+ "e rei",
+ "án ak",
+ "á nak",
+ "▁d aar",
+ "▁da ar",
+ "if iers",
+ "ifier s",
+ "ifi ers",
+ "ifie rs",
+ "▁th ee",
+ "▁the e",
+ "▁by la",
+ "▁byl a",
+ "ва ла",
+ "вал а",
+ "в ала",
+ "an dro",
+ "and ro",
+ "andr o",
+ "▁м оло",
+ "▁мо ло",
+ "▁tot ally",
+ "▁total ly",
+ "io m",
+ "i om",
+ "▁a er",
+ "ns ylvan",
+ "▁cor ps",
+ "▁tre ated",
+ "▁treat ed",
+ "▁com une",
+ "▁comun e",
+ "M ich",
+ "vo ice",
+ "pg f",
+ "▁a nx",
+ "▁an x",
+ "▁Phil ip",
+ "▁Phili p",
+ "▁e k",
+ "▁ ek",
+ "▁Men schen",
+ "▁Mens chen",
+ "▁d ere",
+ "▁de re",
+ "▁der e",
+ "▁per met",
+ "▁perm et",
+ "Ma il",
+ "M ail",
+ "▁V é",
+ "en ted",
+ "ent ed",
+ "ente d",
+ "▁b unch",
+ "▁P iet",
+ "▁Pi et",
+ "▁Pie t",
+ "att ach",
+ "atta ch",
+ "▁p orte",
+ "▁por te",
+ "▁port e",
+ "▁ porte",
+ "да т",
+ "д ат",
+ "▁Brit ain",
+ "Enc oding",
+ "▁` <",
+ "Sp ace",
+ "S pace",
+ "▁r ap",
+ "▁ra p",
+ "▁ rap",
+ "▁pop ul",
+ "fl oor",
+ "f loor",
+ "spec ific",
+ "cle an",
+ "c lean",
+ "▁con qu",
+ "f b",
+ "▁introdu ce",
+ "▁Ent ity",
+ "▁ Entity",
+ "▁er folg",
+ "▁erf olg",
+ "at ol",
+ "ato l",
+ "a tol",
+ "ient os",
+ "iento s",
+ "ки педи",
+ "▁U t",
+ "▁б ри",
+ "▁ бри",
+ "ed uler",
+ "edu ler",
+ "edule r",
+ "▁conc entr",
+ "▁concent r",
+ "▁c her",
+ "▁ch er",
+ "▁che r",
+ "▁ cher",
+ "▁up grade",
+ "▁upgrad e",
+ "▁p ictures",
+ "▁picture s",
+ "▁Famil ie",
+ "M us",
+ "Lo ok",
+ "L ook",
+ "▁e ran",
+ "▁er an",
+ "▁era n",
+ "▁g ram",
+ "▁gr am",
+ "▁gra m",
+ "▁ gram",
+ "▁W o",
+ "np m",
+ "n pm",
+ "▁Sal v",
+ "▁Sa lv",
+ "▁c d",
+ "▁ cd",
+ "▁В ы",
+ "wa hl",
+ "w ahl",
+ "tr ain",
+ "tra in",
+ "t rain",
+ "ch em",
+ "che m",
+ "c hem",
+ "▁P il",
+ "▁Pi l",
+ "▁Con nect",
+ "▁ Connect",
+ "č e",
+ "▁h ast",
+ "▁ha st",
+ "▁has t",
+ "▁Mult i",
+ "▁Mul ti",
+ "▁ Multi",
+ "at ta",
+ "att a",
+ "a tta",
+ "▁S ound",
+ "▁So und",
+ "▁Sou nd",
+ "▁ Sound",
+ "sol ute",
+ "▁qu ote",
+ "▁quot e",
+ "▁ quote",
+ "▁o bst",
+ "▁ob st",
+ "▁obs t",
+ "cc iones",
+ "ccion es",
+ "c ciones",
+ "ib ly",
+ "▁b rand",
+ "▁br and",
+ "▁bra nd",
+ "▁bran d",
+ "▁ brand",
+ "▁convers ation",
+ "▁to utes",
+ "▁tout es",
+ "▁tou tes",
+ "▁toute s",
+ "▁R ub",
+ "▁Ru b",
+ "ie nia",
+ "ien ia",
+ "i enia",
+ "ir it",
+ "iri t",
+ "i rit",
+ "▁А нд",
+ "▁Ан д",
+ "edu led",
+ "edule d",
+ "▁T otal",
+ "▁To tal",
+ "▁Tot al",
+ "▁ Total",
+ "Di g",
+ "D ig",
+ "er em",
+ "ere m",
+ "e rem",
+ "▁s ki",
+ "▁sk i",
+ "▁ ski",
+ "De st",
+ "Des t",
+ "D est",
+ "Y Y",
+ "е ди",
+ "al y",
+ "a ly",
+ "▁back end",
+ "▁ backend",
+ "ul us",
+ "ulu s",
+ "u lus",
+ "▁feature d",
+ "▁person n",
+ "▁pers onn",
+ "▁sc hon",
+ "▁sch on",
+ "tr ace",
+ "tra ce",
+ "t race",
+ "▁I DE",
+ "▁ID E",
+ "▁ IDE",
+ "á j",
+ "▁anim als",
+ "▁animal s",
+ "▁ani mals",
+ "▁s now",
+ "▁sn ow",
+ "uv e",
+ "u ve",
+ "uer to",
+ "▁d rew",
+ "▁dr ew",
+ "▁dre w",
+ "▁Ye ah",
+ "▁S v",
+ "\\, \\",
+ "\\ ,\\",
+ "▁S erie",
+ "▁Se rie",
+ "▁Ser ie",
+ "▁second o",
+ "▁sec ondo",
+ "▁Leb ens",
+ "▁Leben s",
+ "▁acc ord",
+ "▁ac cord",
+ "▁C et",
+ "▁Ce t",
+ "er ade",
+ "era de",
+ "e rade",
+ "▁desp ite",
+ "▁C arlo",
+ "▁Car lo",
+ "▁Carl o",
+ "▁z ewnętrz",
+ "▁l ista",
+ "▁li sta",
+ "▁list a",
+ "▁ lista",
+ "ni co",
+ "nic o",
+ "n ico",
+ "▁Corpor ation",
+ "vs pace",
+ "v space",
+ "▁вой ны",
+ "▁st ands",
+ "▁stand s",
+ "▁stan ds",
+ "▁wor se",
+ "▁sim ult",
+ "▁si mult",
+ "▁pract ical",
+ "CO L",
+ "C OL",
+ "ch anged",
+ "change d",
+ "chan ged",
+ "▁Исто рия",
+ "б ри",
+ "in do",
+ "ind o",
+ "▁Lew is",
+ "▁pattern s",
+ "if ica",
+ "ific a",
+ "ifi ca",
+ "i fica",
+ "▁s mart",
+ "▁sm art",
+ "▁concern ed",
+ "ți i",
+ "ț ii",
+ "▁H ello",
+ "▁Hel lo",
+ "▁Hell o",
+ "▁ Hello",
+ "re ll",
+ "rel l",
+ "r ell",
+ "▁L ex",
+ "▁Le x",
+ "▁в то",
+ "▁cond itional",
+ "▁condition al",
+ "ot ted",
+ "ott ed",
+ "otte d",
+ "▁sh oot",
+ "▁sho ot",
+ "▁W ed",
+ "▁We d",
+ "▁мар та",
+ "au d",
+ "a ud",
+ "▁an te",
+ "▁ant e",
+ "▁ ante",
+ "ien tras",
+ "ient ras",
+ "▁p apers",
+ "▁pa pers",
+ "▁pap ers",
+ "▁paper s",
+ "▁port ug",
+ "▁Man agement",
+ "▁ Management",
+ "▁exerc ise",
+ "▁Begr iff",
+ "com mit",
+ "comm it",
+ "▁render ing",
+ "▁rend ering",
+ "▁rende ring",
+ "▁c zas",
+ "▁cz as",
+ "▁ czas",
+ "Dr op",
+ "D rop",
+ "er g",
+ "e rg",
+ "▁m ul",
+ "▁mu l",
+ "▁ mul",
+ "▁T an",
+ "▁Ta n",
+ "ie ro",
+ "ier o",
+ "i ero",
+ "▁loc ale",
+ "▁local e",
+ "▁ locale",
+ "▁in aug",
+ "du mp",
+ "d ump",
+ "ци й",
+ "▁symbol s",
+ "in ta",
+ "int a",
+ "▁aw arded",
+ "▁award ed",
+ "▁s ust",
+ "▁su st",
+ "▁sus t",
+ "▁S end",
+ "▁Se nd",
+ "▁Sen d",
+ "▁ Send",
+ "ї в",
+ "Re st",
+ "Res t",
+ "R est",
+ "zt en",
+ "zte n",
+ "z ten",
+ "ли м",
+ "л им",
+ "ri val",
+ "riv al",
+ "r ival",
+ "PO RT",
+ "P ORT",
+ "öl ker",
+ "im ately",
+ "imate ly",
+ "imat ely",
+ "ig te",
+ "igt e",
+ "ч ных",
+ "▁ter ra",
+ "▁ terra",
+ "ög lich",
+ "▁H om",
+ "▁Ho m",
+ "▁ Hom",
+ "▁h ex",
+ "▁he x",
+ "▁ hex",
+ "do ne",
+ "don e",
+ "d one",
+ "am ps",
+ "amp s",
+ "▁c et",
+ "▁ce t",
+ "PR E",
+ "P RE",
+ "ös t",
+ "ö st",
+ "▁fem me",
+ "Se lection",
+ "Select ion",
+ "▁z aw",
+ "▁za w",
+ "sp r",
+ "s pr",
+ "▁horse s",
+ "▁hors es",
+ "▁s nap",
+ "▁sn ap",
+ "Text Box",
+ "▁E clipse",
+ "ul le",
+ "ull e",
+ "u lle",
+ "ow ym",
+ "owy m",
+ "▁c omer",
+ "▁com er",
+ "▁co mer",
+ "▁come r",
+ "ne cess",
+ "co ok",
+ "c ook",
+ "en ger",
+ "eng er",
+ "-- >",
+ "- ->",
+ "▁p ří",
+ "▁př í",
+ "pan das",
+ "p andas",
+ "▁P lus",
+ "▁Pl us",
+ "▁ Plus",
+ "yl l",
+ "y ll",
+ "▁t error",
+ "▁te rror",
+ "▁ter ror",
+ "▁c rim",
+ "▁cr im",
+ "▁cri m",
+ "▁z ak",
+ "▁za k",
+ "▁ zak",
+ "iss ue",
+ "pa nel",
+ "pan el",
+ "p anel",
+ "sv g",
+ "▁re b",
+ "▁r eb",
+ "▁ reb",
+ "Custom er",
+ "sw itch",
+ "об ра",
+ "о бра",
+ "▁Champion ships",
+ "▁Championship s",
+ "▁Champions hips",
+ "cl o",
+ "c lo",
+ "at te",
+ "att e",
+ "a tte",
+ "▁any more",
+ "▁excell ent",
+ "▁opport unity",
+ "▁opportun ity",
+ "▁B ahn",
+ "▁Ba hn",
+ "▁Bah n",
+ "чи н",
+ "ч ин",
+ "et ing",
+ "eti ng",
+ "e ting",
+ "▁inc ident",
+ "to m",
+ "t om",
+ "Per s",
+ "Pe rs",
+ "P ers",
+ "bb en",
+ "bbe n",
+ "b ben",
+ "ствен ной",
+ "ственно й",
+ "и х",
+ "ro uter",
+ "route r",
+ "rout er",
+ "rou ter",
+ "r outer",
+ "▁new ly",
+ "▁sil ence",
+ "▁G NU",
+ "▁R ails",
+ "▁Ra ils",
+ "▁Rail s",
+ "▁A mb",
+ "▁Am b",
+ "▁Q ual",
+ "▁Qu al",
+ "▁ Qual",
+ "▁Sch aus",
+ "▁Sc haus",
+ "▁S ohn",
+ "▁So hn",
+ "▁A LL",
+ "▁AL L",
+ "▁ ALL",
+ "▁ro yal",
+ "▁roy al",
+ "▁ £",
+ "wi ę",
+ "w ię",
+ "▁ent fer",
+ "▁Re move",
+ "▁Rem ove",
+ "▁ Remove",
+ "▁hard ly",
+ "Us ing",
+ "U sing",
+ "ло г",
+ "▁I ch",
+ "▁d erni",
+ "▁der ni",
+ "▁Con nection",
+ "▁Connect ion",
+ "▁ Connection",
+ "fi sh",
+ "f ish",
+ "▁In form",
+ "▁Inf orm",
+ "▁Info rm",
+ "▁E ner",
+ "▁En er",
+ "ro it",
+ "r oit",
+ "B bb",
+ "View Model",
+ "V ideo",
+ "il ey",
+ "ile y",
+ "i ley",
+ "▁м ного",
+ "▁мно го",
+ "▁G em",
+ "▁Ge m",
+ "▁comp reh",
+ "▁compr eh",
+ "en umerate",
+ "ul as",
+ "ula s",
+ "u las",
+ "▁B ah",
+ "▁Ba h",
+ "▁Y et",
+ "▁Ye t",
+ "B R",
+ "х ра",
+ "▁count y",
+ "▁coun ty",
+ "▁H ist",
+ "▁His t",
+ "▁Hi st",
+ "▁Г у",
+ "▁ Ј",
+ "▁m ari",
+ "▁ma ri",
+ "▁mar i",
+ "▁C lar",
+ "▁Cl ar",
+ "▁Cla r",
+ "Bit map",
+ "B itmap",
+ "▁C z",
+ "▁m ån",
+ "▁må n",
+ "▁m ere",
+ "▁me re",
+ "▁mer e",
+ "▁mus ique",
+ "al so",
+ "als o",
+ "date s",
+ "da tes",
+ "dat es",
+ "d ates",
+ "▁D VD",
+ "▁g ol",
+ "▁go l",
+ "fo ny",
+ "fon y",
+ "f ony",
+ "▁Cast le",
+ "▁фа ми",
+ "▁arr ang",
+ "▁Bus iness",
+ "▁K az",
+ "▁Ka z",
+ "▁o sc",
+ "▁os c",
+ "▁ osc",
+ "▁se colo",
+ "▁sec olo",
+ "▁aff ected",
+ "▁affect ed",
+ "▁He alth",
+ "re b",
+ "r eb",
+ "ed itor",
+ "edit or",
+ "edi tor",
+ "▁own ed",
+ "▁ow ned",
+ "▁ owned",
+ "t l",
+ "▁v í",
+ "▁ ví",
+ "чни х",
+ "ч них",
+ "к ви",
+ "▁dev ient",
+ "▁devi ent",
+ "M utable",
+ "▁t egen",
+ "▁te gen",
+ "Reg ister",
+ "є ю",
+ "▁car acter",
+ "лл и",
+ "л ли",
+ "▁n ouvelle",
+ "▁nouve lle",
+ "ok o",
+ "o ko",
+ "icht et",
+ "ichte t",
+ "▁e vol",
+ "▁ev ol",
+ "▁H ab",
+ "▁Ha b",
+ "▁mil itar",
+ "▁milit ar",
+ "▁p uts",
+ "▁put s",
+ "▁pu ts",
+ "end if",
+ "endi f",
+ "▁Dav is",
+ "▁Da vis",
+ "▁Scot land",
+ "reg ular",
+ "▁Con text",
+ "▁Cont ext",
+ "▁ Context",
+ "is piel",
+ "isp iel",
+ "i spiel",
+ "▁G allery",
+ "▁Gall ery",
+ "\", \r",
+ "\" ,\r",
+ "▁a rc",
+ "▁ar c",
+ "▁ arc",
+ "▁IN FO",
+ "▁ INFO",
+ "▁c od",
+ "▁co d",
+ "▁ cod",
+ "ді в",
+ "д ів",
+ "▁v archar",
+ "▁var char",
+ "▁ varchar",
+ "▁tou jours",
+ "at ial",
+ "ati al",
+ "atia l",
+ "▁h anno",
+ "▁han no",
+ "▁проф ес",
+ "▁launch ed",
+ "▁насе лення",
+ "▁t on",
+ "▁to n",
+ "▁ ton",
+ "au sed",
+ "ause d",
+ "aus ed",
+ "a used",
+ "▁і з",
+ "▁t ö",
+ "▁P ur",
+ "▁Pu r",
+ "▁o lymp",
+ "AR N",
+ "ó m",
+ "▁a ugust",
+ "▁aug ust",
+ "▁f urn",
+ "▁fur n",
+ "▁fu rn",
+ "▁Col omb",
+ "▁Sta ats",
+ "▁Staat s",
+ "ho ra",
+ "hor a",
+ "h ora",
+ "▁м ор",
+ "▁мо р",
+ "▁ мор",
+ "can vas",
+ "▁gr ave",
+ "▁gra ve",
+ "▁grav e",
+ "▁com position",
+ "▁comp osition",
+ "▁compos ition",
+ "ac ja",
+ "▁которы е",
+ "▁ч о",
+ "▁ чо",
+ "Gener al",
+ "Gen eral",
+ "ан і",
+ "а ні",
+ "▁Joh annes",
+ "▁Johann es",
+ "▁Johan nes",
+ "ка р",
+ "к ар",
+ "▁ча ст",
+ "▁час т",
+ "▁Ва си",
+ "ss h",
+ "s sh",
+ "▁repla cing",
+ "▁< >",
+ "▁ <>",
+ "ці в",
+ "ц ів",
+ "la us",
+ "lau s",
+ "l aus",
+ "en y",
+ "e ny",
+ "äh l",
+ "ä hl",
+ "▁m arg",
+ "▁ma rg",
+ "▁mar g",
+ "ci ence",
+ "c ience",
+ "▁inst ruction",
+ "▁instru ction",
+ "▁instruct ion",
+ "▁ко ји",
+ "Ed itor",
+ "Edit or",
+ "▁fund amental",
+ "mu nd",
+ "mun d",
+ "m und",
+ "▁exception s",
+ "▁except ions",
+ "▁p late",
+ "▁pl ate",
+ "▁pla te",
+ "▁plat e",
+ "▁ plate",
+ "▁L is",
+ "▁Li s",
+ "▁d eren",
+ "▁de ren",
+ "▁der en",
+ "▁dere n",
+ "pr ep",
+ "pre p",
+ "p rep",
+ "▁janu ari",
+ "Sc ope",
+ "S cope",
+ "yn ast",
+ "yna st",
+ "r v",
+ "or sz",
+ "ors z",
+ "▁T ony",
+ "▁To ny",
+ "▁Ton y",
+ "▁д і",
+ "▁ ді",
+ "▁о дна",
+ "▁од на",
+ "▁s ab",
+ "▁sa b",
+ "ot i",
+ "o ti",
+ "je l",
+ "j el",
+ "▁gener ator",
+ "▁ generator",
+ "▁' .",
+ "▁ '.",
+ "▁sh arp",
+ "▁ sharp",
+ "▁то лько",
+ "▁account s",
+ "▁ž e",
+ "▁ že",
+ "▁for am",
+ "▁fo ram",
+ "▁g ouvern",
+ "TI ME",
+ "T IME",
+ "▁Sov iet",
+ "▁G é",
+ "▁ex ped",
+ "▁exp ed",
+ "▁ord inary",
+ "▁ordin ary",
+ "▁ ordinary",
+ "▁Con serv",
+ "▁Cons erv",
+ "▁Conse rv",
+ "▁com pla",
+ "▁comp la",
+ "▁compl a",
+ "te i",
+ "t ei",
+ "▁cap tain",
+ "▁capt ain",
+ "▁Sam uel",
+ "▁D ark",
+ "▁Dar k",
+ "▁в ін",
+ "▁ві н",
+ "▁de light",
+ "▁del ight",
+ "re cht",
+ "rec ht",
+ "di a",
+ "d ia",
+ "ess es",
+ "esse s",
+ "ul p",
+ "u lp",
+ "ш ки",
+ "be z",
+ "b ez",
+ "▁det ection",
+ "▁detect ion",
+ "▁cook ie",
+ "▁ cookie",
+ "an try",
+ "ant ry",
+ "Mult i",
+ "ob a",
+ "o ba",
+ "▁j oy",
+ "▁jo y",
+ "▁safe ty",
+ "▁saf ety",
+ "| ^",
+ "po d",
+ "p od",
+ "ad ém",
+ "▁Ch ron",
+ "▁Chr on",
+ "▁D jango",
+ "▁Dj ango",
+ "▁ehem al",
+ "k h",
+ "è le",
+ "▁p oc",
+ "▁po c",
+ "B ottom",
+ "la unch",
+ "ne m",
+ "n em",
+ "▁G ROUP",
+ "▁ GROUP",
+ "ní ho",
+ "▁G ib",
+ "▁Gi b",
+ "sd k",
+ "s dk",
+ "B E",
+ "▁G ene",
+ "▁Ge ne",
+ "▁Gen e",
+ "▁St aff",
+ "▁Sta ff",
+ "▁subsequ ent",
+ "ic ion",
+ "ici on",
+ "icio n",
+ "i cion",
+ "▁vict ory",
+ "▁c anon",
+ "▁can on",
+ "▁ca non",
+ "iz ar",
+ "iza r",
+ "i zar",
+ "iz ia",
+ "izi a",
+ "i zia",
+ "▁m ate",
+ "▁ma te",
+ "▁mat e",
+ "▁ mate",
+ "▁lay ers",
+ "▁layer s",
+ "▁ layers",
+ "su do",
+ "s udo",
+ "sch ule",
+ "per iment",
+ "ül et",
+ "ü let",
+ "AR CHAR",
+ "▁тер рито",
+ "▁me asures",
+ "▁measure s",
+ "▁meas ures",
+ "▁z ou",
+ "▁zo u",
+ "ops is",
+ "на ми",
+ "tb ody",
+ "t body",
+ "▁e se",
+ "▁es e",
+ "▁ ese",
+ "ster dam",
+ "sterd am",
+ "▁ph oto",
+ "▁phot o",
+ "▁ photo",
+ "ynchron ous",
+ "set minus",
+ "▁lo ads",
+ "▁load s",
+ "▁ loads",
+ "▁ple asure",
+ "▁me ille",
+ "}\\ ,",
+ "} \\,",
+ "qu al",
+ "qua l",
+ "q ual",
+ "▁fav our",
+ "▁r od",
+ "▁ro d",
+ "▁ rod",
+ "De r",
+ "D er",
+ "ра бо",
+ "раб о",
+ "▁pr essed",
+ "▁pres sed",
+ "▁press ed",
+ "▁ pressed",
+ "r ę",
+ "ie ving",
+ "iev ing",
+ "mate rial",
+ "m aterial",
+ "vi rt",
+ "vir t",
+ "v irt",
+ "▁cap able",
+ "с ло",
+ "us hed",
+ "ush ed",
+ "▁по бе",
+ "uset ts",
+ "un signed",
+ "uns igned",
+ "k ów",
+ "▁o v",
+ "▁ ov",
+ "eg eben",
+ "ege ben",
+ "e geben",
+ "▁app lying",
+ "▁apply ing",
+ "▁gal ax",
+ "▁ga lax",
+ "▁O racle",
+ "▁Or acle",
+ "▁Stutt gart",
+ "In fl",
+ "Inf l",
+ "ach usetts",
+ "▁de el",
+ "li re",
+ "l ire",
+ "▁stat unit",
+ "▁Polit iker",
+ "▁Politik er",
+ "▁beaut y",
+ ") >",
+ "▁Columb ia",
+ "▁zewnętrz ne",
+ "▁про гра",
+ "▁пр огра",
+ "▁d x",
+ "▁ dx",
+ "ck now",
+ "c know",
+ "▁d ub",
+ "▁du b",
+ "un ächst",
+ "find ViewById",
+ "▁M and",
+ "▁Man d",
+ "▁Ma nd",
+ "ál l",
+ "á ll",
+ "na ire",
+ "n aire",
+ "▁dest in",
+ "is ting",
+ "ist ing",
+ "isti ng",
+ "ag gi",
+ "agg i",
+ "a ggi",
+ "ch art",
+ "char t",
+ "cha rt",
+ "c hart",
+ "▁just ice",
+ "Sim ple",
+ "▁un fortunately",
+ "і р",
+ "▁qu esta",
+ "▁que sta",
+ "▁quest a",
+ "▁ questa",
+ "▁Govern or",
+ "я в",
+ "▁mús ica",
+ "▁equ ipo",
+ "▁equip o",
+ "▁D est",
+ "▁De st",
+ "▁Des t",
+ "▁ Dest",
+ "el ect",
+ "ele ct",
+ "e lect",
+ "Stack Trace",
+ "зо м",
+ "з ом",
+ "pr oc",
+ "pro c",
+ "p roc",
+ "ent in",
+ "enti n",
+ "ad ora",
+ "ado ra",
+ "ador a",
+ "▁Л ю",
+ "▁register ed",
+ "H L",
+ "face book",
+ "fac ebook",
+ "▁st oring",
+ "▁stor ing",
+ "▁sto ring",
+ "▁Current ly",
+ "▁qu adr",
+ "▁quad r",
+ "Stand ard",
+ "tr im",
+ "tri m",
+ "t rim",
+ "ear s",
+ "ea rs",
+ "e ars",
+ "se nder",
+ "sen der",
+ "send er",
+ "s ender",
+ "▁V as",
+ "▁Va s",
+ "▁ed ific",
+ "▁B ür",
+ "▁Bü r",
+ "▁C ountry",
+ "▁Count ry",
+ "▁Coun try",
+ "▁ Country",
+ "th a",
+ "t ha",
+ "; \"",
+ "no r",
+ "n or",
+ "▁Do ctor",
+ "▁Doc tor",
+ "ru ment",
+ "rum ent",
+ "r ument",
+ "Ge n",
+ "G en",
+ "▁B uen",
+ "▁Bu en",
+ "ra de",
+ "rad e",
+ "r ade",
+ "▁k un",
+ "n avigation",
+ "Pa y",
+ "P ay",
+ "▁capt ured",
+ "▁capture d",
+ "▁st ruck",
+ "▁str uck",
+ "▁stru ck",
+ "ven ir",
+ "ém ent",
+ "é ment",
+ "▁T ree",
+ "▁Tr ee",
+ "▁Tre e",
+ "▁ Tree",
+ "▁x x",
+ "▁ xx",
+ "▁n arr",
+ "▁na rr",
+ "▁nar r",
+ "ль ного",
+ "льно го",
+ "▁inst alling",
+ "▁install ing",
+ "▁instal ling",
+ "▁associ ation",
+ "▁insert ed",
+ "▁inser ted",
+ "er ner",
+ "ern er",
+ "erne r",
+ "valid ate",
+ "▁l ut",
+ "▁lu t",
+ "▁g lo",
+ "▁gl o",
+ "▁techn ology",
+ "▁P lace",
+ "▁Pl ace",
+ "▁Pla ce",
+ "▁ Place",
+ "$ ?",
+ "▁z v",
+ "с лі",
+ "E P",
+ "▁at mos",
+ "ug o",
+ "u go",
+ "ér t",
+ "é rt",
+ "▁W erk",
+ "▁Wer k",
+ "▁% }",
+ "te le",
+ "tel e",
+ "t ele",
+ "Sp an",
+ "S pan",
+ "▁R aj",
+ "▁Ra j",
+ "▁Person en",
+ "▁Pers onen",
+ "▁C ant",
+ "▁Can t",
+ "▁Ca nt",
+ "▁com bat",
+ "▁comb at",
+ "▁observ ation",
+ "▁obs ervation",
+ "param eter",
+ "para meter",
+ "▁agre ed",
+ "▁agree d",
+ "▁agr eed",
+ "pu r",
+ "p ur",
+ "▁sh adow",
+ "▁ shadow",
+ "▁g ł",
+ "Key s",
+ "Ke ys",
+ "Cre d",
+ "Cr ed",
+ "C red",
+ "ou ri",
+ "our i",
+ "o uri",
+ "▁p ale",
+ "▁pa le",
+ "▁pal e",
+ "ic ké",
+ "ick é",
+ "▁We ek",
+ "▁ Week",
+ "▁Pr ime",
+ "▁Pri me",
+ "▁Prim e",
+ "> .",
+ "Init ial",
+ "▁о дин",
+ "▁од ин",
+ "▁' ',",
+ "▁'' ,",
+ "▁у чи",
+ "▁In v",
+ "▁ Inv",
+ "col a",
+ "co la",
+ "c ola",
+ "ci ble",
+ "c ible",
+ "▁The atre",
+ "▁b em",
+ "▁be m",
+ "▁satisf y",
+ "x l",
+ "▁ра зви",
+ "▁раз ви",
+ "▁p ixel",
+ "▁pix el",
+ "lá n",
+ "l án",
+ "▁tw ee",
+ "▁twe e",
+ "ço n",
+ "ç on",
+ "не ния",
+ "▁A T",
+ "▁ AT",
+ "èg e",
+ "è ge",
+ "▁M ort",
+ "▁Mor t",
+ "▁Mo rt",
+ "▁my sq",
+ "▁ mysq",
+ "ft en",
+ "fte n",
+ "f ten",
+ "▁п ес",
+ "▁пе с",
+ "ém a",
+ "é ma",
+ "▁Service s",
+ "▁Serv ices",
+ "▁ Services",
+ "custom er",
+ "▁A WS",
+ "ъ т",
+ "▁A ch",
+ "▁Ac h",
+ "% .",
+ "▁clar ify",
+ "▁уни версите",
+ "xt ure",
+ "um i",
+ "u mi",
+ "▁s å",
+ "▁P el",
+ "▁Pe l",
+ "se rial",
+ "ser ial",
+ "UR I",
+ "U RI",
+ "▁r g",
+ "▁ rg",
+ "▁со ста",
+ "ch estra",
+ "che stra",
+ "ches tra",
+ "]. [",
+ "] .[",
+ "we n",
+ "w en",
+ "▁Lond res",
+ "▁an ys",
+ "▁any s",
+ "Data Source",
+ "▁рай оне",
+ "▁райо не",
+ "▁район е",
+ "▁re in",
+ "▁r ein",
+ "▁rei n",
+ "▁met adata",
+ "▁meta data",
+ "▁ metadata",
+ "um ble",
+ "umb le",
+ "ar beit",
+ "arbe it",
+ "hn er",
+ "h ner",
+ "ci ent",
+ "cie nt",
+ "c ient",
+ "▁n orte",
+ "▁nor te",
+ "▁о на",
+ "▁он а",
+ "▁ она",
+ "▁sc ored",
+ "▁score d",
+ "▁r ay",
+ "▁ra y",
+ "▁ ray",
+ "▁фев ра",
+ "▁фе вра",
+ "▁pro tagon",
+ "▁prot agon",
+ "▁S ac",
+ "▁Sa c",
+ "▁comm only",
+ "▁common ly",
+ "Linear Layout",
+ "▁app lic",
+ "▁ма я",
+ "З а",
+ "▁access ible",
+ "ie wer",
+ "iew er",
+ "fl ag",
+ "f lag",
+ "▁R ück",
+ "ä u",
+ "▁e rano",
+ "▁er ano",
+ "▁era no",
+ "▁eran o",
+ "▁auth entic",
+ "▁ authentic",
+ "▁R y",
+ "▁не ско",
+ "▁emb argo",
+ "▁embar go",
+ "▁d ry",
+ "▁dr y",
+ "▁reason able",
+ "▁Mod ule",
+ "▁ Module",
+ "▁acc eler",
+ "▁inter view",
+ "▁C reek",
+ "▁Cre ek",
+ "▁al pha",
+ "▁ alpha",
+ "se rie",
+ "ser ie",
+ "s erie",
+ "Th ey",
+ "The y",
+ "ю чи",
+ "▁H of",
+ "▁Ho f",
+ "▁C R",
+ "▁ CR",
+ "mod al",
+ "mo dal",
+ "▁sequence s",
+ "▁sequ ences",
+ "cl osed",
+ "close d",
+ "clos ed",
+ "clo sed",
+ ")} $",
+ ") }$",
+ "▁Ч ер",
+ "▁Че р",
+ "▁OR DER",
+ "▁ ORDER",
+ "Right arrow",
+ "R ightarrow",
+ "haus en",
+ "}} _",
+ "} }_",
+ "▁tamb é",
+ "▁magn etic",
+ "▁magnet ic",
+ "▁Mc C",
+ "▁win ning",
+ "under line",
+ "▁Bill board",
+ "na io",
+ "▁l iqu",
+ "▁li qu",
+ "▁ liqu",
+ "display style",
+ "time out",
+ "▁consider able",
+ "▁e ben",
+ "▁eb en",
+ "▁ eben",
+ "iffer ent",
+ "iffe rent",
+ "an u",
+ "a nu",
+ "▁С ов",
+ "▁Со в",
+ "[ (",
+ "▁: -)",
+ "▁:- )",
+ "le itung",
+ "form ed",
+ "for med",
+ "▁Man ager",
+ "▁ Manager",
+ "▁on click",
+ "T Y",
+ "та х",
+ "C V",
+ "run time",
+ "r untime",
+ "po que",
+ "▁Л о",
+ "Tem p",
+ "Te mp",
+ "T emp",
+ "lo aded",
+ "load ed",
+ "▁! ==",
+ "▁!= =",
+ "▁s inger",
+ "▁sing er",
+ "▁sin ger",
+ "fa r",
+ "f ar",
+ "▁Com ple",
+ "▁Comp le",
+ "▁ Comple",
+ "▁Ö sterreich",
+ "Pol icy",
+ "▁work er",
+ "▁wor ker",
+ "▁ worker",
+ "W rapper",
+ "ob i",
+ "o bi",
+ "▁discuss ed",
+ "▁b uy",
+ "▁bu y",
+ "▁янва ря",
+ "▁D in",
+ "▁Di n",
+ "▁g ed",
+ "▁ge d",
+ "▁ ged",
+ "ско ј",
+ "E urope",
+ "▁t all",
+ "▁tal l",
+ "▁ta ll",
+ "ho s",
+ "h os",
+ "ла го",
+ "▁B lock",
+ "▁Bl ock",
+ "▁Blo ck",
+ "▁ Block",
+ "▁ident ified",
+ "List View",
+ "▁attempt ing",
+ "▁typ ical",
+ "ps um",
+ "p sum",
+ "os ter",
+ "ost er",
+ "o ster",
+ "▁ж урна",
+ "P e",
+ "mer ce",
+ "▁un expected",
+ "hu i",
+ "h ui",
+ "let ter",
+ "lett er",
+ "lette r",
+ "l etter",
+ "▁nue vo",
+ "▁а бо",
+ "▁VAL UES",
+ "▁I z",
+ "Fl ags",
+ "Flag s",
+ "▁TR UE",
+ "▁ TRUE",
+ "iz ación",
+ "iza ción",
+ "▁gro wing",
+ "▁grow ing",
+ "es tre",
+ "est re",
+ "estr e",
+ "e stre",
+ "▁p oly",
+ "▁po ly",
+ "▁pol y",
+ "▁ poly",
+ "▁St one",
+ "▁Sto ne",
+ "▁V III",
+ "▁VI II",
+ "▁VII I",
+ "▁local host",
+ "▁ localhost",
+ "äh lt",
+ "ähl t",
+ "▁embed ded",
+ "jd bc",
+ "j dbc",
+ "▁con vention",
+ "▁conv ention",
+ "▁conven tion",
+ "▁convent ion",
+ "▁s cala",
+ "▁sc ala",
+ "▁scal a",
+ "▁ scala",
+ "со к",
+ "с ок",
+ "▁an alog",
+ "▁anal og",
+ "▁\" +",
+ "▁ \"+",
+ "ц ю",
+ "oc c",
+ "o cc",
+ "▁l itt",
+ "▁li tt",
+ "▁lit t",
+ "P N",
+ "▁а ктив",
+ "▁ак тив",
+ "att ributes",
+ "attribute s",
+ "▁F erd",
+ "▁Fe rd",
+ "▁Fer d",
+ "▁az ure",
+ "▁ azure",
+ "ș ti",
+ "ño s",
+ "ñ os",
+ "pi ng",
+ "pin g",
+ "p ing",
+ "▁te acher",
+ "▁teach er",
+ "▁tea cher",
+ "} &",
+ "ip e",
+ "i pe",
+ "▁N ob",
+ "▁No b",
+ "▁и ма",
+ "▁им а",
+ "Bi nd",
+ "B ind",
+ "▁mag ic",
+ "▁Trans port",
+ "▁ Transport",
+ "ix el",
+ "▁comp uted",
+ "▁comput ed",
+ "▁compute d",
+ "ag na",
+ "agn a",
+ "er st",
+ "ers t",
+ "H A",
+ "W ait",
+ "▁author s",
+ "▁auth ors",
+ "▁; )",
+ "cl am",
+ "cla m",
+ "c lam",
+ "▁Pen nsylvan",
+ "▁d rug",
+ "▁dr ug",
+ "▁dru g",
+ "▁v ain",
+ "▁va in",
+ "▁employ ed",
+ "▁individ uals",
+ "▁individual s",
+ "▁an ge",
+ "▁ang e",
+ "▁ ange",
+ "ut at",
+ "uta t",
+ "u tat",
+ "▁$ -",
+ "▁ $-",
+ "cor rect",
+ "corr ect",
+ "▁exper iments",
+ "▁experiment s",
+ "Arg ument",
+ "▁I B",
+ "▁ IB",
+ "▁p ère",
+ "▁B rian",
+ "▁Br ian",
+ "ber ger",
+ "berg er",
+ "Ma c",
+ "M ac",
+ "ia st",
+ "ias t",
+ "i ast",
+ "Per m",
+ "Pe rm",
+ "P erm",
+ "Ca st",
+ "C ast",
+ "▁{ };",
+ "▁{} ;",
+ "▁St udent",
+ "▁Stud ent",
+ "▁Stu dent",
+ "▁ Student",
+ "▁st att",
+ "▁stat t",
+ "▁sta tt",
+ "al gebra",
+ "▁equ als",
+ "▁equal s",
+ "▁eq uals",
+ "▁ equals",
+ "▁pro jet",
+ "▁prés ident",
+ "Activity Thread",
+ "▁ein z",
+ "en ia",
+ "eni a",
+ "e nia",
+ "re z",
+ "r ez",
+ "ess ional",
+ "ession al",
+ "▁авгу ста",
+ "over ride",
+ "ne ws",
+ "new s",
+ "▁pla net",
+ "▁plan et",
+ "▁plane t",
+ "n n",
+ "▁W is",
+ "▁Wi s",
+ "тв ер",
+ "т вер",
+ "▁Val id",
+ "▁ Valid",
+ "▁G ef",
+ "▁Ge f",
+ "гра д",
+ "▁e ig",
+ "an tom",
+ "ant om",
+ "anto m",
+ "▁Me ister",
+ "fl ags",
+ "flag s",
+ "ffic iale",
+ "fficial e",
+ "ша я",
+ "- ,",
+ "at ionen",
+ "ation en",
+ "ati onen",
+ "atio nen",
+ "mo use",
+ "m ouse",
+ "stand ard",
+ "Sing le",
+ "▁b ol",
+ "▁bo l",
+ "▁ bol",
+ "is is",
+ "isi s",
+ "▁f ruit",
+ "▁fr uit",
+ "c ourse",
+ "it ants",
+ "itan ts",
+ "▁é taient",
+ "▁ét aient",
+ "Text Field",
+ "▁ф он",
+ "▁фо н",
+ "▁a ircraft",
+ "▁air craft",
+ "▁I SSN",
+ "▁IS SN",
+ "▁west ern",
+ "▁ western",
+ "▁represent ing",
+ "Es p",
+ "E sp",
+ "▁El se",
+ "▁Els e",
+ "▁ Else",
+ "▁s izes",
+ "▁si zes",
+ "▁size s",
+ "▁satisf ied",
+ "ot os",
+ "oto s",
+ "U D",
+ "Fin al",
+ "Fi nal",
+ "F inal",
+ "ó j",
+ "è ve",
+ "▁R oy",
+ "▁Ro y",
+ "ff en",
+ "ffe n",
+ "f fen",
+ "▁s alt",
+ "▁sa lt",
+ "▁sal t",
+ "▁L abel",
+ "▁La bel",
+ "▁Lab el",
+ "▁ Label",
+ "S k",
+ "▁к ре",
+ "▁ кре",
+ "▁Ли тература",
+ "▁с м",
+ "Att ributes",
+ "Attribute s",
+ "ay e",
+ "a ye",
+ "сь к",
+ "▁вы со",
+ "- )",
+ "os es",
+ "ose s",
+ "cal cul",
+ "calc ul",
+ "▁C annot",
+ "▁Can not",
+ "▁ Cannot",
+ "Gener ic",
+ "em o",
+ "e mo",
+ "▁A utor",
+ "▁Aut or",
+ "▁Au tor",
+ "▁Auto r",
+ "лё н",
+ "л ён",
+ "ла га",
+ "vo te",
+ "v ote",
+ "lic ates",
+ "licate s",
+ "lica tes",
+ "ru s",
+ "r us",
+ "él i",
+ "é li",
+ "op f",
+ "o pf",
+ "at ique",
+ "ati que",
+ "sc ala",
+ "scal a",
+ "s cala",
+ "▁Oh io",
+ "▁Brit ann",
+ "▁b ef",
+ "▁be f",
+ "▁Е вро",
+ "▁Ев ро",
+ "▁Care er",
+ "is ée",
+ "isé e",
+ "ó t",
+ "bo se",
+ "bos e",
+ "b ose",
+ "▁Б ер",
+ "▁Бе р",
+ "▁Cont roller",
+ "▁Control ler",
+ "▁ Controller",
+ "po le",
+ "pol e",
+ "p ole",
+ "▁al len",
+ "▁all en",
+ "▁alle n",
+ "▁ allen",
+ "▁h ack",
+ "▁ha ck",
+ "▁ext ent",
+ "▁cal ci",
+ "▁calc i",
+ "Me r",
+ "M er",
+ "▁sum mary",
+ "▁summar y",
+ "▁summ ary",
+ "▁ summary",
+ "Mar t",
+ "Ma rt",
+ "M art",
+ "▁histor ical",
+ "▁historic al",
+ "im at",
+ "ima t",
+ "i mat",
+ "bu d",
+ "b ud",
+ "▁F OR",
+ "▁FO R",
+ "▁ FOR",
+ "ex port",
+ "exp ort",
+ "ed i",
+ "e di",
+ "Map ping",
+ "Mapp ing",
+ "Ma pping",
+ "M apping",
+ "▁A y",
+ "▁R uby",
+ "▁Ru by",
+ "▁Rub y",
+ "▁definition s",
+ "▁defin itions",
+ "▁definit ions",
+ "▁{ $",
+ "▁ {$",
+ "▁y ours",
+ "▁you rs",
+ "▁your s",
+ "▁yo urs",
+ "ri as",
+ "ria s",
+ "r ias",
+ "To uch",
+ "T ouch",
+ "▁G az",
+ "▁Ga z",
+ "▁Aut om",
+ "▁Au tom",
+ "▁Auto m",
+ "▁ Autom",
+ "▁и стори",
+ "▁исто ри",
+ "▁ис тори",
+ "▁d elen",
+ "▁de len",
+ "▁del en",
+ "▁K inder",
+ "▁Kind er",
+ "▁Ki nder",
+ "▁Kin der",
+ "}} %",
+ "} }%",
+ "▁perform ing",
+ "F R",
+ "▁S ig",
+ "▁Si g",
+ "▁B rad",
+ "▁Br ad",
+ "▁Bra d",
+ "br as",
+ "bra s",
+ "b ras",
+ "▁J ar",
+ "▁Ja r",
+ "pk g",
+ "p kg",
+ "w r",
+ "▁P ays",
+ "▁Pa ys",
+ "▁Pay s",
+ "N C",
+ "▁op posed",
+ "▁opp osed",
+ "▁oppos ed",
+ "Tr y",
+ "T ry",
+ "▁ве зе",
+ "▁B og",
+ "▁Bo g",
+ "▁writ es",
+ "▁wr ites",
+ "▁write s",
+ "▁st ories",
+ "▁stor ies",
+ "▁sto ries",
+ "▁m ater",
+ "▁ma ter",
+ "▁mat er",
+ "▁mate r",
+ "▁stag ione",
+ "▁s ty",
+ "▁st y",
+ "▁ sty",
+ "▁compat ible",
+ "▁ compatible",
+ "he ast",
+ "h east",
+ "▁G uy",
+ "▁Gu y",
+ "egr ünd",
+ "▁ident ifier",
+ "▁ identifier",
+ "▁he ads",
+ "▁head s",
+ "по зи",
+ "▁st up",
+ "▁t f",
+ "▁ tf",
+ "▁ј ош",
+ "▁H ugh",
+ "▁Hu gh",
+ "▁c ards",
+ "▁car ds",
+ "▁card s",
+ "▁ cards",
+ "ov y",
+ "o vy",
+ "▁To ast",
+ "al las",
+ "all as",
+ "alla s",
+ "▁p úblic",
+ "▁ass umes",
+ "▁assum es",
+ "▁assume s",
+ "▁чемпи она",
+ "yc ler",
+ "ycle r",
+ "y cler",
+ "▁Juni or",
+ "▁Jun ior",
+ "▁F ich",
+ "▁estim ated",
+ "▁estimate d",
+ "ze rw",
+ "zer w",
+ "di alog",
+ "dia log",
+ "d ialog",
+ "ши н",
+ "ш ин",
+ "sh ell",
+ "she ll",
+ "s hell",
+ "▁н их",
+ "▁ни х",
+ "▁ них",
+ "▁p itch",
+ "▁pit ch",
+ "до л",
+ "out ube",
+ "▁S anti",
+ "▁San ti",
+ "▁Sant i",
+ "On ClickListener",
+ "▁M agyar",
+ "▁Mag yar",
+ "▁v ue",
+ "▁vu e",
+ "▁ vue",
+ "i ão",
+ "▁` #",
+ "col lect",
+ "coll ect",
+ "▁R ou",
+ "▁Ro u",
+ "anal ysis",
+ "istrz ost",
+ "▁Dig ital",
+ "▁ Digital",
+ "▁c rist",
+ "▁cr ist",
+ "▁cri st",
+ "ri ere",
+ "rie re",
+ "rier e",
+ "r iere",
+ "▁cam po",
+ "▁camp o",
+ "U s",
+ "▁circ a",
+ "▁cir ca",
+ "▁Com ponent",
+ "▁ Component",
+ "▁NS String",
+ "▁ NSString",
+ "p d",
+ "▁pr ince",
+ "▁prin ce",
+ "▁in voke",
+ "▁inv oke",
+ "▁ invoke",
+ "▁Mar ine",
+ "▁Mari ne",
+ "Al low",
+ "All ow",
+ "est ic",
+ "esti c",
+ "ри сти",
+ "рис ти",
+ "рист и",
+ "bo ne",
+ "bon e",
+ "b one",
+ "ту ры",
+ "тур ы",
+ "▁pass ion",
+ "ác ió",
+ "á ció",
+ "▁o rn",
+ "▁or n",
+ "▁ orn",
+ "ве д",
+ "▁in vari",
+ "▁inv ari",
+ "▁н і",
+ "▁ ні",
+ "Re move",
+ "Rem ove",
+ "en cies",
+ "enc ies",
+ "enci es",
+ "il ib",
+ "ili b",
+ "i lib",
+ "▁Direct or",
+ "▁Dire ctor",
+ "▁Dir ector",
+ "\" \"",
+ "▁Con se",
+ "▁Cons e",
+ "google apis",
+ "ó k",
+ "▁У кра",
+ "▁H aving",
+ "▁Ha ving",
+ "▁Hav ing",
+ "Do main",
+ "Dom ain",
+ "ie rz",
+ "ier z",
+ "но логи",
+ "н ологи",
+ "Ch o",
+ "C ho",
+ "un defined",
+ "und efined",
+ "al loc",
+ "all oc",
+ "allo c",
+ "▁p ied",
+ "▁pi ed",
+ "▁pie d",
+ "▁f raction",
+ "▁fr action",
+ "▁fra ction",
+ "bi a",
+ "b ia",
+ "▁п оло",
+ "▁по ло",
+ "▁пол о",
+ "▁ поло",
+ "ug no",
+ "min ister",
+ "▁princip ale",
+ "▁principal e",
+ "▁ref used",
+ "▁refuse d",
+ "brow ser",
+ "b rowser",
+ "* ,",
+ "▁H ospital",
+ "▁univers al",
+ "▁Ern st",
+ "wh o",
+ "w ho",
+ "▁G ard",
+ "▁Gar d",
+ "▁Ga rd",
+ "' _",
+ "con de",
+ "co nde",
+ "cond e",
+ "c onde",
+ "▁[ {",
+ "▁ [{",
+ "so b",
+ "s ob",
+ "▁C rit",
+ "▁Cr it",
+ "▁дека бря",
+ "▁p unto",
+ "▁pun to",
+ "▁punt o",
+ "▁einges etzt",
+ "▁t ör",
+ "▁tö r",
+ "▁N i",
+ "▁w orry",
+ "▁wor ry",
+ "▁leg end",
+ "▁ legend",
+ "▁бу ли",
+ "▁k omm",
+ "▁kom m",
+ "▁ko mm",
+ "ri jk",
+ "rij k",
+ "r ijk",
+ "ef fect",
+ "eff ect",
+ "e ffect",
+ "Or i",
+ "O ri",
+ "RE S",
+ "R ES",
+ "▁P eters",
+ "▁Pe ters",
+ "▁Peter s",
+ "▁Pet ers",
+ "▁B aron",
+ "▁Bar on",
+ "▁Ba ron",
+ "▁G ot",
+ "▁Go t",
+ "▁hon est",
+ "▁ho nest",
+ "är e",
+ "ä re",
+ "ás z",
+ "á sz",
+ "▁no ble",
+ "▁nob le",
+ "▁con clusion",
+ "▁conclus ion",
+ "▁concl usion",
+ "▁form atting",
+ "▁format ting",
+ "▁formatt ing",
+ "▁o tto",
+ "▁ot to",
+ "▁ott o",
+ "▁ otto",
+ "▁de leg",
+ "▁del eg",
+ "м б",
+ "pt op",
+ "pto p",
+ "p top",
+ "▁s ends",
+ "▁send s",
+ "▁sen ds",
+ "ur name",
+ "urn ame",
+ "▁f estival",
+ "▁fest ival",
+ "▁festiv al",
+ ", ",
+ "ру с",
+ "р ус",
+ "▁d och",
+ "▁do ch",
+ "▁doc h",
+ "sub ject",
+ "su bject",
+ "▁care ful",
+ "qu ent",
+ "que nt",
+ "q uent",
+ "▁Lo ad",
+ "▁ Load",
+ "temper aturen",
+ "▁r ue",
+ "▁ru e",
+ "Mem ory",
+ "ț a",
+ "ion a",
+ "io na",
+ "i ona",
+ "▁dent ro",
+ "▁beg ann",
+ "▁began n",
+ "▁A qu",
+ "▁scient ific",
+ "ka ń",
+ "ло к",
+ "л ок",
+ "el de",
+ "eld e",
+ "▁Th ose",
+ "qu ier",
+ "qui er",
+ "act ér",
+ "▁Auf lage",
+ ") '",
+ "▁grad ient",
+ "▁ gradient",
+ "in teger",
+ "inte ger",
+ "▁Im port",
+ "▁Imp ort",
+ "▁ Import",
+ "S K",
+ "▁St atus",
+ "▁Stat us",
+ "▁ Status",
+ "▁exp lo",
+ "▁expl o",
+ "A E",
+ "Sh ell",
+ "She ll",
+ "S hell",
+ "▁Pa ulo",
+ "▁Paul o",
+ ". »",
+ "} ",
+ "fl ex",
+ "f lex",
+ "▁ко мп",
+ "▁ком п",
+ "on den",
+ "ond en",
+ "onde n",
+ "ac cept",
+ "▁miejs ce",
+ "H ub",
+ "all eng",
+ "alle ng",
+ "allen g",
+ "W N",
+ "▁implement ing",
+ "▁ лу",
+ "▁conf using",
+ "▁Inst all",
+ "▁ Install",
+ "▁r ou",
+ "▁ro u",
+ "▁ rou",
+ "▁про ек",
+ "Access or",
+ "Acc essor",
+ "ља шње",
+ "od io",
+ "odi o",
+ "▁app lies",
+ "ющи й",
+ "ю щий",
+ "▁M undial",
+ "Ét at",
+ "É tat",
+ "iet nam",
+ "hu m",
+ "h um",
+ "▁с бор",
+ "ord inate",
+ "ordin ate",
+ "Fran ce",
+ "Fr ance",
+ "F rance",
+ "▁p rend",
+ "▁pr end",
+ "▁pre nd",
+ "el temperaturen",
+ "▁trab aj",
+ "A xis",
+ "▁м но",
+ "prim ary",
+ "▁Se ite",
+ "▁Seit e",
+ "per mission",
+ "perm ission",
+ "▁or den",
+ "▁ord en",
+ "▁ orden",
+ "sin ce",
+ "s ince",
+ "▁i c",
+ "▁ ic",
+ "▁Bra zil",
+ "▁b are",
+ "▁bar e",
+ "▁ba re",
+ "▁ bare",
+ "▁N ar",
+ "▁Na r",
+ "▁J ur",
+ "▁Ju r",
+ "▁fre edom",
+ "▁free dom",
+ "▁med ical",
+ "▁medic al",
+ "▁medi cal",
+ "isch of",
+ "isc hof",
+ "▁с п",
+ "ie ż",
+ "▁boot strap",
+ "▁ bootstrap",
+ "▁ …",
+ "▁fa cil",
+ "▁fac il",
+ "co rd",
+ "cor d",
+ "c ord",
+ "ва не",
+ "ван е",
+ "в ане",
+ "▁Al len",
+ "▁All en",
+ "▁Alle n",
+ "av id",
+ "avi d",
+ "a vid",
+ "ing ham",
+ "za s",
+ "z as",
+ "▁in spect",
+ "▁ins pect",
+ "▁insp ect",
+ "it ten",
+ "itt en",
+ "itte n",
+ "os ti",
+ "ost i",
+ "u h",
+ "c é",
+ "▁# ####",
+ "▁### ##",
+ "▁#### #",
+ "ci us",
+ "ciu s",
+ "c ius",
+ "om y",
+ "o my",
+ "▁Se ine",
+ "▁Sein e",
+ "bre s",
+ "br es",
+ "b res",
+ "▁gen us",
+ "▁genu s",
+ "O ther",
+ "▁Gold en",
+ "▁Gol den",
+ "mu l",
+ "m ul",
+ "▁Спо љашње",
+ "▁gen naio",
+ "▁care fully",
+ "▁careful ly",
+ "aa l",
+ "a al",
+ "▁anal yt",
+ "▁analy t",
+ "ne ur",
+ "n eur",
+ "▁st retch",
+ "▁str etch",
+ "▁O cc",
+ "▁ Occ",
+ "ol as",
+ "ola s",
+ "o las",
+ "▁fire base",
+ "▁ firebase",
+ "▁expect ing",
+ "bas ic",
+ "cond ition",
+ "pr ov",
+ "pro v",
+ "p rov",
+ "▁W asser",
+ "▁Was ser",
+ "▁Wass er",
+ "▁conc aten",
+ "▁e vil",
+ "▁ev il",
+ "▁coefficient s",
+ "We st",
+ "W est",
+ "ir y",
+ "i ry",
+ "ph as",
+ "pha s",
+ "p has",
+ "▁J am",
+ "▁Ja m",
+ "fo is",
+ "f ois",
+ "▁cons id",
+ "▁main ten",
+ "▁mai nten",
+ "ni m",
+ "n im",
+ "es ser",
+ "ess er",
+ "esse r",
+ "es z",
+ "e sz",
+ "un ta",
+ "unt a",
+ "ue st",
+ "ues t",
+ "u est",
+ "▁cred entials",
+ "_ ;",
+ "Di m",
+ "D im",
+ "пре де",
+ "пр еде",
+ "▁B ü",
+ "bu ilt",
+ "▁A cadem",
+ "▁Ac adem",
+ "▁a udi",
+ "▁au di",
+ "▁aud i",
+ "▁ audi",
+ "▁tv å",
+ "in and",
+ "ina nd",
+ "▁The ater",
+ "▁gen re",
+ "ço s",
+ "ç os",
+ "gres ql",
+ "gre sql",
+ "▁we ap",
+ "▁R ab",
+ "▁Ra b",
+ "▁ ’",
+ "▁ad ult",
+ "▁d ém",
+ "▁dé m",
+ "` `",
+ "▁st abil",
+ "▁sta bil",
+ "▁correspond s",
+ "▁E astern",
+ "▁East ern",
+ "un nel",
+ "unn el",
+ "Work er",
+ "▁c oh",
+ "▁co h",
+ "л ка",
+ "▁Mass achusetts",
+ "pi o",
+ "p io",
+ "▁por ts",
+ "▁port s",
+ "▁ ports",
+ "ag g",
+ "a gg",
+ "▁De bug",
+ "▁Deb ug",
+ "▁ Debug",
+ "▁bre ath",
+ "MI N",
+ "M IN",
+ "Vari able",
+ "bat ch",
+ "b atch",
+ "сс е",
+ "с се",
+ "▁p reg",
+ "▁pr eg",
+ "▁pre g",
+ "▁r oles",
+ "▁ro les",
+ "▁role s",
+ "▁rol es",
+ "pa ste",
+ "pas te",
+ "p aste",
+ "▁refer enced",
+ "▁reference d",
+ "ad rat",
+ "adr at",
+ "ч ё",
+ "bin om",
+ "bi nom",
+ "▁def ining",
+ "▁defin ing",
+ "▁Bud apest",
+ "▁д ви",
+ "▁ дви",
+ "▁t aught",
+ "▁h ole",
+ "▁ho le",
+ "▁hol e",
+ "▁ hole",
+ "▁qu ella",
+ "▁que lla",
+ "▁quel la",
+ "M sg",
+ "as ka",
+ "ask a",
+ "a ska",
+ "sc an",
+ "s can",
+ "▁pro pose",
+ "▁prop ose",
+ "▁propos e",
+ "▁Би ография",
+ "{{ \\",
+ "{ {\\",
+ "text t",
+ "tex tt",
+ "▁A lb",
+ "▁Al b",
+ "▁Syd ney",
+ "▁back up",
+ "▁cre dit",
+ "▁cr edit",
+ "▁cred it",
+ "▁фран цу",
+ "st ats",
+ "sta ts",
+ "stat s",
+ "\\\" :",
+ "\\ \":",
+ "▁П ере",
+ "▁Пер е",
+ "▁Пе ре",
+ "▁according ly",
+ "▁accord ingly",
+ "▁L en",
+ "▁Le n",
+ "▁ Len",
+ "zn a",
+ "z na",
+ "▁Reg ional",
+ "▁Region al",
+ "▁и зда",
+ "▁из да",
+ "▁j ú",
+ "hi stor",
+ "his tor",
+ "h istor",
+ "▁ent ities",
+ "St ar",
+ "S tar",
+ "он е",
+ "о не",
+ "'] ['",
+ "' ]['",
+ "▁N ova",
+ "▁No va",
+ "▁Nov a",
+ "di e",
+ "d ie",
+ "▁` '",
+ "▁ `'",
+ "▁ob ten",
+ "▁obt en",
+ "an st",
+ "ans t",
+ "▁Re lig",
+ "▁Rel ig",
+ "▁t rig",
+ "▁tr ig",
+ "▁tri g",
+ "▁ре жи",
+ "▁Person al",
+ "▁Pers onal",
+ "▁t one",
+ "▁to ne",
+ "▁ton e",
+ "▁a id",
+ "▁ai d",
+ "Vis ual",
+ "Sub mit",
+ "▁mov es",
+ "▁mo ves",
+ "▁move s",
+ "▁B ridge",
+ "▁Br idge",
+ "▁B oy",
+ "▁Bo y",
+ "▁accur ate",
+ "os ta",
+ "ost a",
+ "o sta",
+ "at to",
+ "att o",
+ "a tto",
+ "▁defe ated",
+ "▁defeat ed",
+ "▁data b",
+ "▁da tab",
+ "▁dat ab",
+ "▁ datab",
+ "gi nx",
+ "gin x",
+ "g inx",
+ "▁L iv",
+ "▁Li v",
+ "ly wood",
+ "T W",
+ "ri um",
+ "r ium",
+ "ip ped",
+ "ipp ed",
+ "i pped",
+ "Fa il",
+ "F ail",
+ "RE QUEST",
+ "▁ign or",
+ "▁ig nor",
+ "▁s itting",
+ "▁sit ting",
+ "▁sitt ing",
+ "▁mol to",
+ "▁molt o",
+ "▁end point",
+ "▁ endpoint",
+ "uc ión",
+ "u ción",
+ "▁col lections",
+ "▁collection s",
+ "▁collect ions",
+ "▁colle ctions",
+ "▁ collections",
+ "▁Т у",
+ "tem bre",
+ "t embre",
+ "▁né cess",
+ "▁inter act",
+ "▁inte ract",
+ "▁o tras",
+ "▁ot ras",
+ "▁otra s",
+ "▁c urr",
+ "▁cu rr",
+ "▁cur r",
+ "▁ curr",
+ "▁tr acks",
+ "▁tra cks",
+ "▁track s",
+ "▁trac ks",
+ "▁fam ília",
+ "▁numer ical",
+ "▁numeric al",
+ "le gt",
+ "leg t",
+ "] /",
+ "▁M ario",
+ "▁Mar io",
+ "▁Ma rio",
+ "▁Mari o",
+ "▁t ort",
+ "▁to rt",
+ "▁tor t",
+ "b g",
+ "ss l",
+ "s sl",
+ "text tt",
+ "textt t",
+ "▁s park",
+ "▁sp ark",
+ "▁ spark",
+ "ди и",
+ "▁prob able",
+ "%% %%",
+ "ph ia",
+ "phi a",
+ "], [",
+ "] ,[",
+ "▁bo xes",
+ "▁box es",
+ "▁a cadem",
+ "▁ac adem",
+ "▁S lo",
+ "▁Sl o",
+ "äu de",
+ "ä ude",
+ "▁wit ness",
+ "▁ed iting",
+ "▁edit ing",
+ "ли на",
+ "лин а",
+ "▁look up",
+ "▁ lookup",
+ "▁B uck",
+ "▁Bu ck",
+ "▁Buc k",
+ "д ня",
+ "▁j ours",
+ "▁jo urs",
+ "▁jou rs",
+ "▁jour s",
+ "▁ jours",
+ "++ ){",
+ "++) {",
+ "▁ind ices",
+ "▁indic es",
+ "▁f light",
+ "▁fl ight",
+ "▁com putation",
+ "▁comput ation",
+ "Pl ugin",
+ "▁real ize",
+ "▁realiz e",
+ "is set",
+ "iss et",
+ "isse t",
+ "▁deriv ative",
+ "line width",
+ "bu nd",
+ "b und",
+ "▁t hor",
+ "▁th or",
+ "▁. =",
+ "▁ .=",
+ "▁s í",
+ "▁C lick",
+ "▁Cl ick",
+ "▁ Click",
+ "▁Seb ast",
+ "> '",
+ "hav ior",
+ "le i",
+ "l ei",
+ "ul f",
+ "▁ge ometry",
+ "▁geom etry",
+ "▁geomet ry",
+ "▁ geometry",
+ "pr ev",
+ "pre v",
+ "p rev",
+ "em pl",
+ "emp l",
+ "▁L é",
+ "an son",
+ "ans on",
+ "▁A lice",
+ "▁Al ice",
+ "▁Ali ce",
+ "pro totype",
+ "proto type",
+ "RE AD",
+ "ic ular",
+ "icul ar",
+ "i cular",
+ "▁б і",
+ "▁ бі",
+ "▁deutsch e",
+ "▁Re present",
+ "si tes",
+ "site s",
+ "s ites",
+ "▁Me an",
+ "▁d iss",
+ "▁di ss",
+ "▁dis s",
+ "▁Z ur",
+ "▁Zu r",
+ "▁п рез",
+ "▁пре з",
+ "▁пр ез",
+ "PA R",
+ "P AR",
+ "▁' #",
+ "▁D ra",
+ "▁Dr a",
+ "▁ Dra",
+ "со н",
+ "с он",
+ "▁ste ht",
+ "mar kt",
+ "mark t",
+ "▁e ase",
+ "▁eas e",
+ "Draw ing",
+ "Dra wing",
+ "= %",
+ "St op",
+ "Sto p",
+ "S top",
+ "▁s erving",
+ "▁ser ving",
+ "▁serv ing",
+ "▁servi ng",
+ "▁tak że",
+ "▁D NS",
+ "▁liter al",
+ "▁lit eral",
+ "Di e",
+ "D ie",
+ "▁в ос",
+ "▁во с",
+ "▁sen ior",
+ "ac ion",
+ "aci on",
+ "a cion",
+ "▁u buntu",
+ "▁ub untu",
+ "▁ ubuntu",
+ "▁Frank furt",
+ "▁Sun day",
+ "▁Sund ay",
+ "á b",
+ "▁jour ney",
+ "▁journ ey",
+ "is sa",
+ "iss a",
+ "ber ry",
+ "▁s ep",
+ "▁se p",
+ "▁ sep",
+ "▁i on",
+ "▁io n",
+ "▁ ion",
+ "wer t",
+ "we rt",
+ "w ert",
+ "or szág",
+ "orsz ág",
+ "ser ve",
+ "serv e",
+ "s erve",
+ "▁Mil ano",
+ "▁Milan o",
+ "▁ве ка",
+ "ра х",
+ "▁ию ля",
+ "▁man era",
+ "▁st ations",
+ "▁stat ions",
+ "▁station s",
+ "▁stati ons",
+ "▁adopt ed",
+ "▁any body",
+ "VER SION",
+ "F E",
+ "do rf",
+ "dor f",
+ "d orf",
+ ".. .,",
+ "... ,",
+ "▁обра зова",
+ "▁образ ова",
+ "Log ger",
+ "фи циаль",
+ "фици аль",
+ "WR ITE",
+ "▁h am",
+ "▁ha m",
+ "▁ ham",
+ "▁F uture",
+ "▁Fut ure",
+ "▁ Future",
+ "ot en",
+ "ote n",
+ "o ten",
+ "▁A G",
+ "▁ AG",
+ "▁t rained",
+ "▁tr ained",
+ "▁tra ined",
+ "▁train ed",
+ "▁N ich",
+ "▁Nic h",
+ "▁Ni ch",
+ "▁un iversity",
+ "▁univers ity",
+ "▁Olymp ics",
+ "▁Olympic s",
+ "▁d oit",
+ "▁do it",
+ "▁doi t",
+ "▁cult ural",
+ "▁cultura l",
+ "Con f",
+ "▁Con ference",
+ "or no",
+ "orn o",
+ "▁M P",
+ "▁ MP",
+ "▁b ou",
+ "▁bo u",
+ "ci n",
+ "c in",
+ "Hi gh",
+ "H igh",
+ "ann te",
+ "annt e",
+ "▁display ing",
+ "▁ch apter",
+ "▁chap ter",
+ "▁ chapter",
+ "▁Fra uen",
+ "▁Frau en",
+ "▁real ized",
+ "▁realiz ed",
+ "▁realize d",
+ "▁attempt ed",
+ "▁pre ferred",
+ "▁prefer red",
+ "Da t",
+ "D at",
+ "▁tr ouve",
+ "▁tro uve",
+ "▁trou ve",
+ "▁trouv e",
+ "▁int ention",
+ "▁intent ion",
+ "▁inten tion",
+ "▁Not ice",
+ "tim estamp",
+ "* (",
+ "▁Ш а",
+ "an as",
+ "ana s",
+ "a nas",
+ "cl a",
+ "c la",
+ "is z",
+ "i sz",
+ "tb l",
+ "t bl",
+ "Ar r",
+ "A rr",
+ "▁in verse",
+ "▁ter rible",
+ "▁occup ied",
+ "J AX",
+ "< -",
+ "▁Phil osoph",
+ "▁Cor ps",
+ "bu ilder",
+ "build er",
+ "▁beg ins",
+ "▁begin s",
+ "▁c ensus",
+ "▁cens us",
+ ". ’",
+ "▁pro ven",
+ "▁pr oven",
+ "▁prov en",
+ "▁prove n",
+ "met ric",
+ "▁incre ases",
+ "▁increase s",
+ "wi ch",
+ "w ich",
+ "▁A BC",
+ "▁AB C",
+ "▁ ABC",
+ "project s",
+ "▁T hor",
+ "▁Th or",
+ "▁conf idence",
+ "▁u fficiale",
+ "el m",
+ "e lm",
+ "▁g arden",
+ "▁gar den",
+ "▁gard en",
+ "▁rob ust",
+ "▁cos ì",
+ "ie dz",
+ "ied z",
+ "▁Is lam",
+ "▁Add ress",
+ "▁ Address",
+ "▁div ide",
+ "▁divid e",
+ "▁E u",
+ "ca tal",
+ "cat al",
+ "c atal",
+ "de tail",
+ "det ail",
+ "ep endant",
+ "f g",
+ "▁b ew",
+ "▁be w",
+ "▁ bew",
+ "▁f is",
+ "▁fi s",
+ "▁B O",
+ "▁ BO",
+ "▁w sp",
+ "▁ws p",
+ "▁p ipeline",
+ "▁pip eline",
+ "▁pipe line",
+ "h d",
+ "▁S ession",
+ "▁ Session",
+ "lä nd",
+ "l änd",
+ "iv eau",
+ "ive au",
+ "es tr",
+ "est r",
+ "e str",
+ "▁p article",
+ "▁part icle",
+ "▁partic le",
+ "▁parti cle",
+ "▁lar avel",
+ "▁ laravel",
+ "pi c",
+ "p ic",
+ "▁n au",
+ "▁na u",
+ "▁f ins",
+ "▁fin s",
+ "▁fi ns",
+ "▁V il",
+ "▁Vi l",
+ "▁f us",
+ "▁fu s",
+ "▁qu asi",
+ "oper ation",
+ "opera tion",
+ "▁al ler",
+ "▁all er",
+ "▁alle r",
+ "▁ aller",
+ "▁an aly",
+ "▁anal y",
+ "▁ analy",
+ "▁О н",
+ "▁M es",
+ "▁Me s",
+ "▁о пера",
+ "▁оп ера",
+ "▁hand led",
+ "▁handle d",
+ "▁de prec",
+ "▁dep rec",
+ "tt o",
+ "t to",
+ "▁E k",
+ "▁st ran",
+ "▁str an",
+ "▁stra n",
+ "▁ang lais",
+ "ju re",
+ "j ure",
+ "▁Sil ver",
+ "▁close ly",
+ "▁clos ely",
+ "en kins",
+ "enk ins",
+ "an os",
+ "ano s",
+ "a nos",
+ "st ed",
+ "ste d",
+ "s ted",
+ "▁сент ября",
+ "br and",
+ "bra nd",
+ "b rand",
+ "нь о",
+ "▁prés ent",
+ "▁pré sent",
+ "ro k",
+ "r ok",
+ "mo unt",
+ "m ount",
+ "▁Anth ony",
+ "▁Further more",
+ "in ha",
+ "▁ар хи",
+ "▁раз ли",
+ "▁окт ября",
+ "▁p int",
+ "▁pi nt",
+ "▁pin t",
+ "n ý",
+ "pt s",
+ "p ts",
+ "▁ital ien",
+ "▁ре ги",
+ "ле з",
+ "л ез",
+ "ди на",
+ "дин а",
+ "ather ine",
+ "In ternal",
+ "Int ernal",
+ "Inter nal",
+ "Intern al",
+ "Qu estion",
+ "▁sett lement",
+ "▁В се",
+ "▁fol ders",
+ "▁folder s",
+ "д ри",
+ "▁val or",
+ "▁va lor",
+ "▁M iller",
+ "▁Mil ler",
+ "▁Mill er",
+ "▁As sert",
+ "▁Ass ert",
+ "▁ Assert",
+ "▁pat ient",
+ "▁N ieder",
+ "▁Ni eder",
+ "▁Nie der",
+ "▁Nied er",
+ "▁E P",
+ "▁ EP",
+ "▁A gr",
+ "▁Ag r",
+ "▁o nde",
+ "▁on de",
+ "▁ onde",
+ "▁s cop",
+ "▁sc op",
+ "▁ scop",
+ "se quence",
+ "sequ ence",
+ "▁P L",
+ "▁ PL",
+ "▁se ek",
+ "▁see k",
+ "java se",
+ "jav ase",
+ "▁V ector",
+ "▁Ve ctor",
+ "▁Vec tor",
+ "▁ Vector",
+ "▁n á",
+ "▁ ná",
+ "▁categor ía",
+ "cl one",
+ "clo ne",
+ "N R",
+ "av ailable",
+ "▁B esch",
+ "▁Be sch",
+ "▁Bes ch",
+ "▁e clipse",
+ "▁ec lipse",
+ "▁ eclipse",
+ "wick lung",
+ "dep loy",
+ "en ie",
+ "eni e",
+ "e nie",
+ "▁\" )",
+ "▁ \")",
+ "äs t",
+ "ä st",
+ "▁s ync",
+ "▁syn c",
+ "▁sy nc",
+ "▁ sync",
+ "CO DE",
+ "▁Ч е",
+ "▁flo ating",
+ "▁float ing",
+ "/ `",
+ "▁ret ired",
+ "▁retir ed",
+ "de b",
+ "d eb",
+ "▁part icul",
+ "▁partic ul",
+ "▁parti cul",
+ "▁coll ected",
+ "▁collect ed",
+ "▁colle cted",
+ "▁down loaded",
+ "▁download ed",
+ "ni ce",
+ "nic e",
+ "n ice",
+ "▁B uffer",
+ "▁Buff er",
+ "▁ Buffer",
+ "▁Acc ount",
+ "▁Ac count",
+ "▁ Account",
+ "▁m aggio",
+ "▁mag gio",
+ "▁ре да",
+ "▁ред а",
+ "▁s ales",
+ "▁sa les",
+ "▁sal es",
+ "▁sale s",
+ "▁statunit ense",
+ "▁K i",
+ "▁F err",
+ "▁Fe rr",
+ "▁Fer r",
+ "Lo ck",
+ "Loc k",
+ "L ock",
+ "▁Is abel",
+ "▁Isa bel",
+ "cl ar",
+ "cla r",
+ "c lar",
+ "▁p ov",
+ "▁po v",
+ "at ra",
+ "atr a",
+ "a tra",
+ "▁Fr au",
+ "▁Fra u",
+ "▁sort ing",
+ "▁sor ting",
+ "▁sorti ng",
+ "▁phr ase",
+ "▁апре ля",
+ "▁дея тель",
+ "▁And ré",
+ "def inition",
+ "defin ition",
+ "writ ing",
+ "wr iting",
+ "ér é",
+ "é ré",
+ "щ у",
+ "▁O rd",
+ "▁Or d",
+ "▁ Ord",
+ "▁r um",
+ "▁ru m",
+ "▁ rum",
+ "▁T urk",
+ "▁Tur k",
+ "▁I van",
+ "th eless",
+ "the less",
+ "▁г и",
+ "▁ ги",
+ "▁s ake",
+ "▁sa ke",
+ "▁B ased",
+ "▁Bas ed",
+ "▁Ba sed",
+ "▁Base d",
+ "de ck",
+ "dec k",
+ "or us",
+ "oru s",
+ "o rus",
+ "▁tut ti",
+ "▁b lan",
+ "▁bl an",
+ "▁bla n",
+ "▁П у",
+ "De tail",
+ "Det ail",
+ "▁Н о",
+ "▁S ky",
+ "▁Sk y",
+ "▁p rès",
+ "▁pr ès",
+ "▁ près",
+ "мо й",
+ "col n",
+ "co ln",
+ "че ской",
+ "et i",
+ "e ti",
+ "▁ar row",
+ "▁arr ow",
+ "▁ arrow",
+ "▁C ha",
+ "▁Ch a",
+ "ch mark",
+ "œ ur",
+ "fa b",
+ "f ab",
+ "ку ль",
+ "Grid View",
+ "▁Back ground",
+ "▁ Background",
+ "s n",
+ "▁segu ito",
+ "▁n ic",
+ "▁ni c",
+ "▁ nic",
+ "co u",
+ "c ou",
+ "ті в",
+ "т ів",
+ "▁b zw",
+ "add EventListener",
+ "syn c",
+ "s ync",
+ "az zo",
+ "azz o",
+ "ab stract",
+ "as sets",
+ "ass ets",
+ "asse ts",
+ "asset s",
+ "▁D ru",
+ "▁Dr u",
+ "з д",
+ "ord net",
+ "▁b igger",
+ "▁big ger",
+ "▁initial ized",
+ "▁initialize d",
+ "ка з",
+ "og ene",
+ "ogen e",
+ "oge ne",
+ "vi ously",
+ "vious ly",
+ "v iously",
+ "▁g uid",
+ "▁gu id",
+ "scheid ung",
+ "▁Z ent",
+ "▁Ze nt",
+ "▁fr ames",
+ "▁frame s",
+ "▁fra mes",
+ "▁fram es",
+ "▁ frames",
+ "ri eben",
+ "rie ben",
+ "rieb en",
+ "r ieben",
+ "▁iss ued",
+ "▁issue d",
+ "▁issu ed",
+ "▁d ow",
+ "▁do w",
+ "▁descri bes",
+ "▁describe s",
+ "il st",
+ "ils t",
+ "i lst",
+ "▁c riteria",
+ "▁crit eria",
+ "▁criter ia",
+ "▁gentle man",
+ "Bas ic",
+ "ne z",
+ "n ez",
+ "De v",
+ "D ev",
+ "Mo ve",
+ "M ove",
+ "▁est aba",
+ "▁estab a",
+ "▁esta ba",
+ "▁set tembre",
+ "▁sett embre",
+ "circ le",
+ "cir cle",
+ "▁f ais",
+ "▁fa is",
+ "▁m yst",
+ "▁my st",
+ "▁arch iv",
+ "▁ archiv",
+ "d ynamic",
+ "j à",
+ "it as",
+ "ita s",
+ "▁я кий",
+ "▁d or",
+ "▁do r",
+ "▁ dor",
+ "▁Am azon",
+ "▁Ama zon",
+ "▁ne ces",
+ "▁Mar cel",
+ "▁Marc el",
+ "▁e lla",
+ "▁el la",
+ "▁ell a",
+ "▁ ella",
+ "ро к",
+ "р ок",
+ "▁Pennsylvan ia",
+ "cul ar",
+ "cu lar",
+ "c ular",
+ "Pa ck",
+ "P ack",
+ "it age",
+ "ita ge",
+ "▁B urn",
+ "▁Bu rn",
+ "▁Bur n",
+ "▁R O",
+ "▁ RO",
+ "▁о ни",
+ "▁он и",
+ "▁ они",
+ "~ $",
+ "Te X",
+ "as sign",
+ "ass ign",
+ "▁be at",
+ "id ense",
+ "iden se",
+ "ac ent",
+ "ace nt",
+ "a cent",
+ "Al ert",
+ "▁str ateg",
+ "▁strat eg",
+ "▁mån aden",
+ "LO C",
+ "L OC",
+ "▁c atalog",
+ "▁cat alog",
+ "▁catal og",
+ "▁ catalog",
+ "print StackTrace",
+ "() ).",
+ "()) .",
+ "( )).",
+ "us ted",
+ "ust ed",
+ "u sted",
+ "▁Frame work",
+ "▁ Framework",
+ "EC K",
+ "E CK",
+ "▁a té",
+ "▁at é",
+ "Frame work",
+ "▁att acks",
+ "▁attack s",
+ "▁B ert",
+ "▁Be rt",
+ "▁Ber t",
+ "▁т ран",
+ "▁тра н",
+ ": %",
+ "ar si",
+ "ars i",
+ "not ation",
+ "▁log ical",
+ "▁logic al",
+ "we et",
+ "▁vis ited",
+ "▁visit ed",
+ "br u",
+ "b ru",
+ "▁sur prise",
+ "▁surpr ise",
+ "^ ^",
+ "in ale",
+ "inal e",
+ "ina le",
+ "rem ote",
+ "'} ,",
+ "' },",
+ "Syn tax",
+ "S yntax",
+ "ia ne",
+ "ian e",
+ "i ane",
+ "on nen",
+ "onn en",
+ "onne n",
+ "▁bre aking",
+ "▁break ing",
+ "par ser",
+ "parse r",
+ "ap k",
+ "a pk",
+ "▁Mig uel",
+ "▁ §",
+ "▁act ing",
+ "▁ac ting",
+ "▁g ebru",
+ "▁ge bru",
+ "▁geb ru",
+ "At Index",
+ "ють ся",
+ "ю ться",
+ "▁of fers",
+ "▁off ers",
+ "▁offer s",
+ "▁p rac",
+ "▁pr ac",
+ "▁pra c",
+ "▁g rant",
+ "▁gr ant",
+ "▁gra nt",
+ "▁gran t",
+ "tern oon",
+ "▁ac quired",
+ "▁acqu ired",
+ "▁N y",
+ "▁com ma",
+ "▁comm a",
+ "ní k",
+ "n ík",
+ "▁St ep",
+ "▁Ste p",
+ "▁ Step",
+ "in ners",
+ "inn ers",
+ "inner s",
+ "▁S A",
+ "▁ SA",
+ "▁w at",
+ "▁wa t",
+ "da ys",
+ "day s",
+ "d ays",
+ "▁rect angle",
+ "da r",
+ "d ar",
+ "▁t rac",
+ "▁tr ac",
+ "▁tra c",
+ "▁Ind ones",
+ "▁feed back",
+ "▁bre aks",
+ "▁break s",
+ "part ition",
+ "ic ans",
+ "ica ns",
+ "ican s",
+ "▁Not ices",
+ "▁Notice s",
+ "▁impro ved",
+ "▁improve d",
+ "▁improv ed",
+ "▁impr oved",
+ "ph an",
+ "pha n",
+ "p han",
+ "▁differ ential",
+ "▁different ial",
+ "▁differenti al",
+ "script s",
+ "scri pts",
+ "▁X III",
+ "▁XII I",
+ "▁XI II",
+ "▁L abor",
+ "▁La bor",
+ "▁Lab or",
+ "▁prec ision",
+ "▁precis ion",
+ "▁s eed",
+ "▁se ed",
+ "▁see d",
+ "▁ seed",
+ "bund le",
+ "b undle",
+ "id ents",
+ "ident s",
+ "iden ts",
+ "hr e",
+ "h re",
+ "▁Doug las",
+ "ul d",
+ "u ld",
+ "▁second ary",
+ "▁seconda ry",
+ "▁b rig",
+ "▁br ig",
+ "▁confirm ed",
+ "▁confir med",
+ "▁cla ims",
+ "▁claim s",
+ "Ro le",
+ "R ole",
+ "▁Jew ish",
+ "▁p řed",
+ "▁př ed",
+ "▁ho tel",
+ "▁hot el",
+ "▁comp te",
+ "▁compt e",
+ "▁rec ursive",
+ "▁recurs ive",
+ "](# )",
+ "▁rot ate",
+ "▁ rotate",
+ "▁ch rome",
+ "▁chr ome",
+ "▁chrom e",
+ "▁ chrome",
+ "in ea",
+ "ine a",
+ "i nea",
+ "%; \r",
+ "% ;\r",
+ "▁En vironment",
+ "▁ Environment",
+ "pl atz",
+ "pla tz",
+ "▁Sing le",
+ "▁Sin gle",
+ "▁ Single",
+ "▁s event",
+ "▁se vent",
+ "▁seven t",
+ "▁pos ting",
+ "▁post ing",
+ "▁de aling",
+ "▁deal ing",
+ "param eters",
+ "parameter s",
+ "гра ф",
+ "Auth entication",
+ "to uch",
+ "t ouch",
+ "A z",
+ "▁g ray",
+ "▁gr ay",
+ "▁gra y",
+ "▁ gray",
+ "en cing",
+ "enc ing",
+ "enci ng",
+ "bold math",
+ "▁сай те",
+ "▁сайт е",
+ "▁Z a",
+ "an je",
+ "▁p olar",
+ "▁po lar",
+ "▁pol ar",
+ "▁у ли",
+ "ki l",
+ "k il",
+ "▁h over",
+ "▁ho ver",
+ "▁ hover",
+ "▁RE ST",
+ "▁C ome",
+ "▁Com e",
+ "▁Co me",
+ "▁ Come",
+ "j b",
+ "▁Georg ia",
+ "▁Est ado",
+ "▁Esta do",
+ "▁Estad o",
+ "Output Stream",
+ "ћ и",
+ "▁d ump",
+ "▁du mp",
+ "▁ dump",
+ "▁A ge",
+ "▁Ag e",
+ "▁ Age",
+ "▁s wo",
+ "▁sw o",
+ "m obile",
+ "oc cup",
+ "occ up",
+ "ше го",
+ "ш его",
+ "▁const itution",
+ "▁constitu tion",
+ "▁constit ution",
+ "go od",
+ "g ood",
+ "ak u",
+ "a ku",
+ "▁а нг",
+ "▁ан г",
+ "▁ анг",
+ "ie ck",
+ "iec k",
+ "▁Ps ych",
+ "▁ro ots",
+ "▁root s",
+ "▁v est",
+ "▁ve st",
+ "▁ves t",
+ "▁ vest",
+ "▁го дах",
+ "▁года х",
+ "▁Rep ública",
+ "▁p ian",
+ "▁pi an",
+ "▁pia n",
+ "igr ation",
+ "▁pr éc",
+ "▁pré c",
+ "▁gener ates",
+ "▁generate s",
+ "L Y",
+ "( `",
+ "▁= ~",
+ "ше ния",
+ "▁R ah",
+ "▁Ra h",
+ "▁connect ing",
+ "ž í",
+ "▁f ő",
+ "▁a ppel",
+ "▁app el",
+ "▁ap pel",
+ "▁appe l",
+ "▁Rail way",
+ "г ли",
+ "▁dével opp",
+ "▁a po",
+ "▁ap o",
+ "fr an",
+ "fra n",
+ "f ran",
+ "▁im mediate",
+ "▁immedi ate",
+ "во го",
+ "в ого",
+ "Run ner",
+ "ä g",
+ "Some thing",
+ "S omething",
+ "▁gén éra",
+ "Event Args",
+ "in ction",
+ "inc tion",
+ "inct ion",
+ "gl y",
+ "g ly",
+ "▁D ue",
+ "▁Du e",
+ "▁p rost",
+ "▁pro st",
+ "▁pr ost",
+ "▁pros t",
+ "▁refer ring",
+ "▁j og",
+ "▁jo g",
+ "▁exec utable",
+ "▁execut able",
+ "▁D ream",
+ "▁Dre am",
+ "ac s",
+ "a cs",
+ "▁C ole",
+ "▁Col e",
+ "▁Co le",
+ "am pf",
+ "amp f",
+ "▁B is",
+ "▁Bi s",
+ "▁ию ня",
+ "li eder",
+ "lied er",
+ "lie der",
+ "l ieder",
+ "те к",
+ "т ек",
+ "▁v b",
+ "▁ vb",
+ "▁m om",
+ "▁mo m",
+ "▁: (",
+ "▁ :(",
+ "▁der nier",
+ "▁derni er",
+ "' =>",
+ "▁э того",
+ "▁это го",
+ "▁ne ue",
+ "▁neu e",
+ "▁Ч а",
+ "▁weiter e",
+ "▁weit ere",
+ "▁al leg",
+ "▁all eg",
+ "▁alle g",
+ "▁re ality",
+ "▁real ity",
+ "▁jud ge",
+ "▁B alt",
+ "▁Ba lt",
+ "▁Bal t",
+ "▁t hin",
+ "▁th in",
+ "▁G ed",
+ "▁Ge d",
+ "ie val",
+ "iev al",
+ "i eval",
+ "m x",
+ "ці ональ",
+ "▁вы пу",
+ "▁I X",
+ "▁ IX",
+ "▁bl ind",
+ "▁Mo tor",
+ "▁Mot or",
+ "▁ш а",
+ "▁ ша",
+ "▁approxim ation",
+ "da m",
+ "d am",
+ "▁f og",
+ "▁fo g",
+ "▁ fog",
+ "ко р",
+ "к ор",
+ "▁W rit",
+ "▁l ing",
+ "▁li ng",
+ "▁lin g",
+ "▁ ling",
+ "▁пи са",
+ "▁ писа",
+ "▁M ars",
+ "▁Mar s",
+ "▁Ma rs",
+ "ot ti",
+ "ott i",
+ "En um",
+ "E num",
+ "▁T rib",
+ "▁Tr ib",
+ "▁Tri b",
+ "▁m erc",
+ "▁me rc",
+ "▁mer c",
+ "zu ng",
+ "z ung",
+ "van ced",
+ "v anced",
+ "cf g",
+ "c fg",
+ "на х",
+ "sch en",
+ "sc hen",
+ "sche n",
+ "s chen",
+ "\"] .",
+ "\" ].",
+ "be k",
+ "b ek",
+ "▁s ter",
+ "▁st er",
+ "▁ste r",
+ "▁ ster",
+ "j p",
+ "▁R ap",
+ "▁Ra p",
+ "▁rec ording",
+ "▁record ing",
+ "▁pe int",
+ "▁l ets",
+ "▁le ts",
+ "▁let s",
+ "▁ lets",
+ "än ge",
+ "äng e",
+ ">\" ;",
+ "> \";",
+ "▁міс це",
+ "▁c aval",
+ "▁ca val",
+ "▁cav al",
+ "▁C SV",
+ "▁CS V",
+ "▁ent stand",
+ "▁hel per",
+ "▁help er",
+ "▁ helper",
+ "en det",
+ "end et",
+ "ende t",
+ "▁G ram",
+ "▁Gr am",
+ "▁Gra m",
+ "▁D iego",
+ "▁Die go",
+ "▁Di ego",
+ "▁B ishop",
+ "▁Bi shop",
+ "TA G",
+ "T AG",
+ "▁e cc",
+ "▁ec c",
+ "▁E en",
+ "▁A V",
+ "▁ AV",
+ "C ity",
+ "▁Gu ide",
+ "hi nd",
+ "hin d",
+ "h ind",
+ "ri cal",
+ "ric al",
+ "rica l",
+ "r ical",
+ "▁Ос нов",
+ "Bu s",
+ "B us",
+ "▁z unächst",
+ "▁t ick",
+ "▁ti ck",
+ "▁ tick",
+ "▁Col onel",
+ "Th anks",
+ "Thank s",
+ "▁f erm",
+ "▁fe rm",
+ "▁fer m",
+ "▁gr anted",
+ "▁gran ted",
+ "▁grant ed",
+ "▁th reshold",
+ "omorph ic",
+ "▁H un",
+ "▁Hu n",
+ "en is",
+ "eni s",
+ "e nis",
+ "▁п рав",
+ "▁пра в",
+ "▁ прав",
+ "▁я кі",
+ "▁як і",
+ "P G",
+ "▁w s",
+ "▁ ws",
+ "▁techn ical",
+ "▁techni cal",
+ "est ro",
+ "estr o",
+ "kl är",
+ "k lär",
+ "va rs",
+ "var s",
+ "v ars",
+ "oc rat",
+ "ocr at",
+ "▁оп шти",
+ "on so",
+ "ons o",
+ "ib a",
+ "i ba",
+ "▁S ave",
+ "▁Sa ve",
+ "▁Sav e",
+ "▁ Save",
+ "▁program a",
+ "▁в ъ",
+ "▁inv ån",
+ ">( )",
+ "> ()",
+ "▁me jor",
+ "▁с лова",
+ "▁сло ва",
+ "▁rep lacement",
+ "▁replace ment",
+ "▁repla cement",
+ "▁im pr",
+ "▁imp r",
+ "▁Frances co",
+ "▁Ho tel",
+ "▁Hot el",
+ "▁UP DATE",
+ "▁ UPDATE",
+ "▁му зы",
+ "ug s",
+ "u gs",
+ "va rd",
+ "var d",
+ "v ard",
+ "▁f az",
+ "▁fa z",
+ "in ton",
+ "int on",
+ "into n",
+ "▁ar ts",
+ "▁art s",
+ "▁ arts",
+ "▁K y",
+ "▁I ls",
+ "▁Il s",
+ "▁s era",
+ "▁se ra",
+ "▁ser a",
+ "▁Vol ume",
+ "▁ Volume",
+ "▁gi ugno",
+ "▁a sym",
+ "▁as ym",
+ "▁P ir",
+ "▁Pi r",
+ "▁N AS",
+ "▁NA S",
+ "▁T am",
+ "▁Ta m",
+ "ě l",
+ "Se qu",
+ "Seq u",
+ "S equ",
+ "km al",
+ "k mal",
+ "▁E ins",
+ "▁Ein s",
+ "▁ком па",
+ "▁комп а",
+ "ob e",
+ "o be",
+ "oo r",
+ "o or",
+ "▁he ap",
+ "ct l",
+ "c tl",
+ "▁separ ately",
+ "▁separate ly",
+ "re ader",
+ "read er",
+ "rea der",
+ "▁signific antly",
+ "▁significant ly",
+ "▁L ag",
+ "▁La g",
+ "no tes",
+ "not es",
+ "note s",
+ "n otes",
+ "▁s ele",
+ "▁se le",
+ "▁sel e",
+ "▁dedic ated",
+ "▁H ost",
+ "▁Ho st",
+ "▁ Host",
+ "cho ice",
+ "wi ng",
+ "win g",
+ "w ing",
+ "▁T itel",
+ "▁Tit el",
+ "▁Ti tel",
+ "▁befind et",
+ "lar ge",
+ "larg e",
+ "▁con ten",
+ "▁cont en",
+ "▁co nten",
+ "▁conte n",
+ "Java Script",
+ "▁de ser",
+ "▁des er",
+ "▁G ordon",
+ "▁Gor don",
+ "с пе",
+ "▁p atri",
+ "▁pat ri",
+ "▁pa tri",
+ "▁patr i",
+ "▁R andom",
+ "▁Rand om",
+ "▁Ran dom",
+ "▁ Random",
+ "▁Return s",
+ "ы м",
+ "ро ма",
+ "ром а",
+ "▁Stud ies",
+ "S l",
+ "▁fr ü",
+ "TE XT",
+ "T EXT",
+ "in ate",
+ "ina te",
+ "▁T ol",
+ "▁To l",
+ "▁every where",
+ "ar ta",
+ "art a",
+ "▁or bit",
+ "▁orb it",
+ "▁A ires",
+ "▁Air es",
+ "▁I ss",
+ "▁Is s",
+ "▁te ż",
+ "▁d iverse",
+ "▁di verse",
+ "▁divers e",
+ "▁diver se",
+ "▁n umeric",
+ "▁numer ic",
+ "▁ numeric",
+ "ma z",
+ "m az",
+ "▁m ise",
+ "▁mi se",
+ "▁mis e",
+ "▁batt ery",
+ "▁batter y",
+ "▁bat tery",
+ "▁A kadem",
+ "▁Ak adem",
+ "не ние",
+ "▁simult ane",
+ "▁D ead",
+ "▁De ad",
+ "▁cl ust",
+ "▁ot ro",
+ "▁c erca",
+ "▁cer ca",
+ "() `,",
+ "()` ,",
+ "( )`,",
+ "ro z",
+ "r oz",
+ "ă t",
+ "▁M O",
+ "▁ MO",
+ "ri ften",
+ "rift en",
+ "rif ten",
+ "import ant",
+ "▁je ho",
+ "▁find ViewById",
+ "▁ findViewById",
+ "▁con sequence",
+ "▁conse quence",
+ "▁consequ ence",
+ "▁measure d",
+ "▁meas ured",
+ "is hes",
+ "ish es",
+ "▁s ze",
+ "▁sz e",
+ "ien do",
+ "i endo",
+ "▁W ahl",
+ "▁Wa hl",
+ "st rip",
+ "str ip",
+ "AR D",
+ "▁op acity",
+ "▁ opacity",
+ "WOR D",
+ "W ORD",
+ "▁В і",
+ "▁L ocation",
+ "▁Lo cation",
+ "▁Loc ation",
+ "▁ Location",
+ "ra i",
+ "r ai",
+ "пе н",
+ "п ен",
+ "▁r if",
+ "▁ri f",
+ "▁ rif",
+ "auss ian",
+ "File Name",
+ "▁dis co",
+ "▁disc o",
+ "il en",
+ "ile n",
+ "i len",
+ "▁v agy",
+ "▁va gy",
+ "li city",
+ "lic ity",
+ "licit y",
+ "l icity",
+ "B order",
+ "▁T rack",
+ "▁Tr ack",
+ "▁Tra ck",
+ "▁ Track",
+ "бо м",
+ "б ом",
+ "fa ct",
+ "fac t",
+ "f act",
+ "ok a",
+ "o ka",
+ "▁g ior",
+ "▁gi or",
+ "▁ gior",
+ "▁XV II",
+ "▁XVI I",
+ "▁d är",
+ "Si te",
+ "S ite",
+ "ał o",
+ "a ło",
+ "sk á",
+ "s ká",
+ "▁pix els",
+ "▁pixel s",
+ "vi ty",
+ "v ity",
+ "j Query",
+ "▁sc ulpt",
+ "▁c argo",
+ "▁car go",
+ "▁direct ive",
+ "▁w al",
+ "▁wa l",
+ "▁ wal",
+ "▁c onna",
+ "▁con na",
+ "▁conn a",
+ "▁Th rough",
+ "▁э том",
+ "▁это м",
+ "St atic",
+ "Stat ic",
+ "oms nitt",
+ "▁r und",
+ "▁run d",
+ "▁ru nd",
+ "▁ rund",
+ "▁c laimed",
+ "▁claim ed",
+ "з ня",
+ "sh a",
+ "s ha",
+ "▁r ag",
+ "▁ra g",
+ "▁ rag",
+ "cre ment",
+ "cr ement",
+ "▁fün f",
+ "▁r ival",
+ "▁riv al",
+ "▁ri val",
+ "▁ rival",
+ "ri n",
+ "r in",
+ "sl ash",
+ "▁th irty",
+ "s leep",
+ "оло ги",
+ "о логи",
+ "S M",
+ "ga te",
+ "gat e",
+ "g ate",
+ "iz ations",
+ "ization s",
+ "vi k",
+ "v ik",
+ "▁b less",
+ "▁bl ess",
+ "▁ble ss",
+ "▁Ill inois",
+ "▁T E",
+ "▁ TE",
+ "ut ing",
+ "uti ng",
+ "u ting",
+ "▁sol ving",
+ "GE R",
+ "G ER",
+ "▁X IV",
+ "▁XI V",
+ "▁Ind ians",
+ "▁India ns",
+ "▁Indian s",
+ "ex press",
+ "exp ress",
+ "expr ess",
+ "▁H eil",
+ "▁He il",
+ "▁mu jer",
+ "▁invån are",
+ "'] );",
+ "']) ;",
+ "' ]);",
+ "▁a ur",
+ "▁au r",
+ "▁ aur",
+ "bo ost",
+ "G O",
+ "▁n in",
+ "▁ni n",
+ "to k",
+ "t ok",
+ "go d",
+ "g od",
+ "ot er",
+ "ote r",
+ "o ter",
+ ")$ $",
+ ") $$",
+ "▁desc end",
+ "р ю",
+ "▁L anguage",
+ "▁ Language",
+ "▁d iver",
+ "▁di ver",
+ "▁div er",
+ "▁Ass uming",
+ "▁fre quent",
+ "▁frequ ent",
+ "ч ні",
+ "▁Bi ography",
+ ", [",
+ "ur m",
+ "u rm",
+ "▁walk ed",
+ "▁wal ked",
+ "▁feder al",
+ "▁fed eral",
+ "▁Mich igan",
+ "▁fact s",
+ "▁fac ts",
+ "▁In tegr",
+ "▁Int egr",
+ "▁ Integr",
+ "LE S",
+ "L ES",
+ "▁A lan",
+ "▁Al an",
+ "▁c oup",
+ "▁co up",
+ "▁cou p",
+ "Be r",
+ "B er",
+ "▁p articles",
+ "▁part icles",
+ "▁partic les",
+ "▁particle s",
+ "▁parti cles",
+ "ћ е",
+ "Infl ater",
+ "+ (",
+ "Bo und",
+ "B ound",
+ "▁S ü",
+ "A udio",
+ "cite t",
+ "cit et",
+ "c itet",
+ "ye ct",
+ "y ect",
+ "▁n r",
+ "▁ nr",
+ "x e",
+ "▁B run",
+ "▁Br un",
+ "▁Bru n",
+ "▁_ ,",
+ "▁ _,",
+ "av or",
+ "avo r",
+ "a vor",
+ "▁dis cipl",
+ "al m",
+ "a lm",
+ "▁но ября",
+ "▁S SL",
+ "▁SS L",
+ "▁ SSL",
+ "▁Ka iser",
+ "▁Kais er",
+ "▁re cher",
+ "▁rec her",
+ "yg on",
+ "y gon",
+ "▁regard less",
+ "▁config ur",
+ "▁un necess",
+ "▁Cl ark",
+ "▁Clar k",
+ "PH P",
+ "P HP",
+ "▁F ALSE",
+ "▁ FALSE",
+ "▁p ad",
+ "▁pa d",
+ "▁ pad",
+ "$ }",
+ "▁v alu",
+ "▁val u",
+ "▁va lu",
+ "▁ valu",
+ "▁dise ase",
+ "▁ma ior",
+ "▁mai or",
+ "▁h ommes",
+ "▁hom mes",
+ "▁homme s",
+ "▁Ed ition",
+ "▁Edit ion",
+ "sl ant",
+ "s lant",
+ "▁en ding",
+ "▁end ing",
+ "▁ ending",
+ "▁sett led",
+ "ur us",
+ "uru s",
+ "u rus",
+ "he d",
+ "h ed",
+ "Pat tern",
+ "▁го дина",
+ "▁годи на",
+ "▁Phil adel",
+ "tikz picture",
+ "▁co al",
+ "▁s ede",
+ "▁se de",
+ "▁sed e",
+ "▁satisf ies",
+ "▁t rim",
+ "▁tr im",
+ "▁tri m",
+ "▁ trim",
+ "▁b at",
+ "▁ba t",
+ "▁ bat",
+ "▁améric ain",
+ "▁lug lio",
+ "▁по ча",
+ "▁поч а",
+ "ff ff",
+ "fff f",
+ "f fff",
+ "▁T arget",
+ "▁Tar get",
+ "▁ Target",
+ "gener ate",
+ "▁Z ie",
+ "ți a",
+ "ț ia",
+ "▁g ard",
+ "▁gar d",
+ "▁ga rd",
+ "▁work ers",
+ "▁worker s",
+ "▁J ob",
+ "▁Jo b",
+ "▁ Job",
+ "▁ur ban",
+ "▁urb an",
+ "▁ urban",
+ "ah len",
+ "ahl en",
+ "a hlen",
+ "▁Build ing",
+ "▁n eu",
+ "▁ne u",
+ "▁ch ron",
+ "▁chr on",
+ "▁ chron",
+ "▁Ear l",
+ "gr o",
+ "g ro",
+ "US E",
+ "U SE",
+ "▁X II",
+ "▁XI I",
+ "▁we alth",
+ "▁ wealth",
+ "in ae",
+ "ina e",
+ "▁Б ра",
+ "▁li bert",
+ "▁lib ert",
+ "▁liber t",
+ "ir os",
+ "iro s",
+ "i ros",
+ ": $",
+ "le e",
+ "l ee",
+ "ie ves",
+ "ieve s",
+ "iev es",
+ "▁Just ice",
+ "▁o il",
+ "▁Ath let",
+ "▁c lo",
+ "▁cl o",
+ "▁ clo",
+ "Sc ale",
+ "Scal e",
+ "▁l ips",
+ "▁li ps",
+ "▁lip s",
+ "▁a pril",
+ "▁ap ril",
+ "▁apr il",
+ "▁im pression",
+ "▁imp ression",
+ "▁impr ession",
+ "▁impress ion",
+ "▁per ce",
+ "▁уча сти",
+ "▁участ и",
+ "vi l",
+ "v il",
+ "éc h",
+ "é ch",
+ "▁e quality",
+ "▁equ ality",
+ "▁equal ity",
+ "▁ equality",
+ "▁м ет",
+ "▁ме т",
+ "▁ мет",
+ "▁an notation",
+ "▁annot ation",
+ "▁ annotation",
+ "er nal",
+ "ern al",
+ "erna l",
+ "▁M ach",
+ "▁Ma ch",
+ "▁Mac h",
+ "▁int itul",
+ "pro blem",
+ "prob lem",
+ "ющи х",
+ "ю щих",
+ "op lus",
+ "o plus",
+ "▁thous ands",
+ "▁thousand s",
+ "▁calcul ations",
+ "▁calculation s",
+ "▁calc ulations",
+ "um ps",
+ "ump s",
+ "▁tri angle",
+ "▁ triangle",
+ "ph al",
+ "pha l",
+ "p hal",
+ "▁D orf",
+ "▁Do rf",
+ "▁Dor f",
+ "▁doll ars",
+ "▁d enen",
+ "▁de nen",
+ "▁den en",
+ "l ès",
+ "ol id",
+ "oli d",
+ "▁Result s",
+ "▁ Results",
+ "▁Stad ium",
+ "▁D esp",
+ "▁De sp",
+ "▁Des p",
+ "▁E isen",
+ "im ir",
+ "imi r",
+ "i mir",
+ "▁s otto",
+ "▁so tto",
+ "▁sott o",
+ "▁č i",
+ "▁ či",
+ "at able",
+ "ata ble",
+ "a table",
+ "or um",
+ "oru m",
+ "o rum",
+ "▁conver gence",
+ "▁je une",
+ "▁jeu ne",
+ "ok ing",
+ "oki ng",
+ "o king",
+ "▁жи во",
+ "ain ing",
+ "ai ning",
+ "a ining",
+ "po inter",
+ "point er",
+ "cul o",
+ "cu lo",
+ "c ulo",
+ "▁js ou",
+ "▁g rab",
+ "▁gr ab",
+ "▁gra b",
+ "ak te",
+ "akt e",
+ "a kte",
+ "▁ho ping",
+ "▁hop ing",
+ "▁M ak",
+ "▁Ma k",
+ "▁s ag",
+ "▁sa g",
+ "origin e",
+ "orig ine",
+ "▁по след",
+ "▁после д",
+ "▁V eg",
+ "▁Ve g",
+ "▁the oret",
+ "▁T ru",
+ "▁Tr u",
+ "ne ment",
+ "nem ent",
+ "n ement",
+ "▁f aces",
+ "▁fa ces",
+ "▁face s",
+ "▁fac es",
+ "▁ faces",
+ "H or",
+ "Jo in",
+ "J oin",
+ "ar el",
+ "are l",
+ "a rel",
+ "▁о коло",
+ "▁ок оло",
+ "How ever",
+ "▁c atal",
+ "▁ca tal",
+ "▁cat al",
+ "▁ catal",
+ "bo urg",
+ "bour g",
+ "b ourg",
+ "▁mysql i",
+ "▁mysq li",
+ "▁ mysqli",
+ "ac ions",
+ "acion s",
+ "aci ons",
+ "▁Init ial",
+ "▁ Initial",
+ "▁r ain",
+ "▁ra in",
+ "▁ rain",
+ "it ure",
+ "itu re",
+ "▁Sci ences",
+ "▁Science s",
+ "▁Kre is",
+ "._ _",
+ ". __",
+ "▁cin q",
+ "▁A uß",
+ "▁Au ß",
+ "ith met",
+ "it ors",
+ "ito rs",
+ "itor s",
+ "am azon",
+ "ama zon",
+ "▁g ap",
+ "▁ga p",
+ "▁ign ored",
+ "▁ignore d",
+ "▁ignor ed",
+ "ad v",
+ "ко ї",
+ "▁ча сть",
+ "▁час ть",
+ "▁част ь",
+ "▁cor por",
+ "▁corpo r",
+ "це р",
+ "ц ер",
+ "▁cr ime",
+ "▁cri me",
+ "▁crim e",
+ "uo us",
+ "u ous",
+ "▁на лази",
+ "Data Frame",
+ "во ди",
+ "вод и",
+ "Ig n",
+ "I gn",
+ "▁Lin coln",
+ "▁me nos",
+ "▁men os",
+ "▁Lu ft",
+ "▁L ind",
+ "▁Li nd",
+ "▁Lin d",
+ "▁C ook",
+ "▁Co ok",
+ "▁ Cook",
+ "▁material s",
+ "ap ped",
+ "app ed",
+ "appe d",
+ "a pped",
+ "ign ore",
+ "▁от кры",
+ "fr ied",
+ "fri ed",
+ "f ried",
+ "▁gouvern ement",
+ "▁f ired",
+ "▁fire d",
+ "▁fi red",
+ "▁fir ed",
+ "▁screen shot",
+ "▁screens hot",
+ "се н",
+ "с ен",
+ "▁[ (",
+ "▁ [(",
+ "▁органи за",
+ "Graph ics",
+ "▁про ти",
+ "▁p hen",
+ "▁ph en",
+ "▁ phen",
+ "cr aft",
+ "cra ft",
+ "c raft",
+ "▁b rain",
+ "▁br ain",
+ "▁bra in",
+ "▁C omo",
+ "▁Com o",
+ "▁Co mo",
+ "▁Every thing",
+ "an es",
+ "ane s",
+ "a nes",
+ "IG N",
+ "I GN",
+ "▁n ederbörd",
+ "▁ nederbörd",
+ "▁For est",
+ "▁Fore st",
+ "▁Fo rest",
+ "za hl",
+ "z ahl",
+ "▁Am ong",
+ "Q t",
+ "▁to gg",
+ "▁tog g",
+ "▁vari ant",
+ "▁ variant",
+ "▁h ill",
+ "▁hi ll",
+ "▁ hill",
+ "пи си",
+ "пис и",
+ "col on",
+ "co lon",
+ "colo n",
+ "▁dic embre",
+ "го р",
+ "г ор",
+ "▁W ind",
+ "▁Win d",
+ "▁Wi nd",
+ "ünst ler",
+ "▁= \\",
+ "▁ =\\",
+ "sa ved",
+ "save d",
+ "s aved",
+ "▁n ej",
+ "▁ne j",
+ "▁ nej",
+ "un te",
+ "unt e",
+ "ut to",
+ "utt o",
+ "u tto",
+ "▁rec ens",
+ "▁rece ns",
+ "▁s ick",
+ "▁si ck",
+ "▁sic k",
+ "▁d esen",
+ "▁de sen",
+ "▁des en",
+ "US T",
+ "U ST",
+ "▁wor st",
+ "▁An gel",
+ "▁Ang el",
+ "od ox",
+ "odo x",
+ "▁Prov ince",
+ "▁Provin ce",
+ "▁M az",
+ "▁Ma z",
+ "▁agre ement",
+ "▁agree ment",
+ "▁B ass",
+ "▁Bas s",
+ "▁Ba ss",
+ "▁seg unda",
+ "on ces",
+ "once s",
+ "onc es",
+ "▁Lin ki",
+ "▁Link i",
+ "▁C L",
+ "▁ CL",
+ "▁j á",
+ "it ement",
+ "ite ment",
+ "item ent",
+ "▁á rea",
+ "▁ár ea",
+ "▁scal ar",
+ "▁scala r",
+ "▁Р ес",
+ "▁Ре с",
+ "aw t",
+ "a wt",
+ "si eme",
+ "▁j uni",
+ "▁ju ni",
+ "▁jun i",
+ "▁худо ж",
+ "ik us",
+ "iku s",
+ "▁l id",
+ "▁li d",
+ "pp el",
+ "ppe l",
+ "p pel",
+ "av i",
+ "a vi",
+ "▁bal ance",
+ "ip ping",
+ "ipp ing",
+ "ippi ng",
+ "i pping",
+ "cuss ion",
+ "че ских",
+ "(\" .",
+ "( \".",
+ "Al so",
+ "▁w his",
+ "▁wh is",
+ "HO ME",
+ "▁b rown",
+ "▁br own",
+ "▁bro wn",
+ "▁brow n",
+ "▁d ía",
+ "▁dí a",
+ "▁pu ò",
+ "plot lib",
+ "▁Jahrhundert s",
+ "D K",
+ "▁an chor",
+ "▁anc hor",
+ "▁anch or",
+ "▁ anchor",
+ ".. .]",
+ "... ]",
+ "▁Aust ria",
+ "▁m arca",
+ "▁mar ca",
+ "▁marc a",
+ "▁g ez",
+ "▁ge z",
+ "ious ly",
+ "i ously",
+ "▁l azy",
+ "▁la zy",
+ "x a",
+ "▁Ch annel",
+ "▁Chan nel",
+ "▁ Channel",
+ "▁ne uen",
+ "▁neue n",
+ "▁neu en",
+ "da s",
+ "d as",
+ "▁search ed",
+ "▁sta at",
+ "▁ staat",
+ "▁Та к",
+ "▁Jo sef",
+ "▁Jose f",
+ "▁Jos ef",
+ "▁S her",
+ "▁Sh er",
+ "▁She r",
+ "po is",
+ "p ois",
+ "▁e nem",
+ "▁en em",
+ "▁access ing",
+ "▁не ко",
+ "▁fur ono",
+ "▁pse udo",
+ "▁pseud o",
+ "? >",
+ "▁estado un",
+ "▁estad oun",
+ "▁Ви ди",
+ "▁mot iv",
+ "▁re call",
+ "▁rec all",
+ "is son",
+ "iss on",
+ "i sson",
+ "ó b",
+ ")- -",
+ ") --",
+ "▁E rz",
+ "▁Er z",
+ "▁са вез",
+ "Dir ect",
+ "Di rect",
+ "D irect",
+ "со б",
+ "с об",
+ "▁s ho",
+ "▁sh o",
+ "v ölker",
+ "A p",
+ "ge ns",
+ "gen s",
+ "g ens",
+ "ниш тво",
+ "▁Am sterdam",
+ "us k",
+ "u sk",
+ "п ло",
+ "▁sim ulation",
+ "▁B C",
+ "▁ BC",
+ "▁W oj",
+ "▁Wo j",
+ "au tom",
+ "aut om",
+ "auto m",
+ "Al ex",
+ "A lex",
+ "▁econom ic",
+ "▁econ omic",
+ "го м",
+ "г ом",
+ "ik ai",
+ "ika i",
+ "▁a ltre",
+ "▁al tre",
+ "▁alt re",
+ "▁' -",
+ "▁ '-",
+ "▁W eg",
+ "▁We g",
+ "Not Found",
+ "й ской",
+ "▁convert ing",
+ "▁conver ting",
+ "ph abet",
+ "pha bet",
+ "at rice",
+ "atr ice",
+ "atri ce",
+ "bour ne",
+ "al om",
+ "alo m",
+ "▁comp aring",
+ "▁compar ing",
+ "▁Z o",
+ "▁f la",
+ "▁fl a",
+ "ва я",
+ "▁en tra",
+ "▁ent ra",
+ "▁entr a",
+ "▁char set",
+ "▁chars et",
+ "develop ers",
+ "developer s",
+ "íst ica",
+ "} >",
+ "▁J azz",
+ "▁Ja zz",
+ "▁How ard",
+ "▁Ho ward",
+ "ш та",
+ "▁cl one",
+ "▁clo ne",
+ "▁ clone",
+ "do or",
+ "d oor",
+ "▁P in",
+ "▁Pi n",
+ "** *",
+ "* **",
+ "▁sil ent",
+ "ec ycle",
+ "e cycle",
+ "is ce",
+ "isc e",
+ "i sce",
+ "▁m ud",
+ "▁mu d",
+ "▁Dis play",
+ "▁ Display",
+ "▁l ip",
+ "▁li p",
+ "▁ lip",
+ "▁исполь зова",
+ "▁character istic",
+ "▁s b",
+ "▁ sb",
+ "fire base",
+ "▁B ew",
+ "▁Be w",
+ "Cal endar",
+ "▁u so",
+ "▁us o",
+ "▁ uso",
+ "ès e",
+ "è se",
+ "▁R at",
+ "▁Ra t",
+ "▁es per",
+ "▁espe r",
+ "▁esp er",
+ "▁ esper",
+ "▁throw ing",
+ "▁thro wing",
+ "▁ro dz",
+ "▁rod z",
+ "▁y ards",
+ "▁yard s",
+ "▁g rass",
+ "▁gr ass",
+ "▁gra ss",
+ "▁mar ker",
+ "▁mark er",
+ "▁ marker",
+ "▁K os",
+ "▁Ko s",
+ "Th eta",
+ "The ta",
+ "▁organ is",
+ "ker nel",
+ "kern el",
+ "k ernel",
+ "▁person as",
+ "▁pers onas",
+ "▁persona s",
+ "ke ep",
+ "kee p",
+ "▁exc laimed",
+ "os lav",
+ "▁Ent ertain",
+ "▁Enter tain",
+ "не р",
+ "н ер",
+ "▁in won",
+ "▁R and",
+ "▁Ra nd",
+ "▁Ran d",
+ "red uce",
+ "redu ce",
+ "fa c",
+ "f ac",
+ "ex pression",
+ "exp ression",
+ "expr ession",
+ "express ion",
+ "y j",
+ "▁differ enti",
+ "▁different i",
+ "ag lia",
+ "agli a",
+ "▁tem plates",
+ "▁template s",
+ "▁ templates",
+ "▁m ű",
+ "▁p rv",
+ "▁pr v",
+ "▁m ois",
+ "▁mo is",
+ "▁moi s",
+ "▁gew ann",
+ "▁бу ла",
+ "bib li",
+ "b ibli",
+ "de mo",
+ "dem o",
+ "d emo",
+ "▁And erson",
+ "▁Anders on",
+ "▁ре д",
+ "▁ ред",
+ "▁por que",
+ "▁P ologne",
+ "▁Pol ogne",
+ "▁t rip",
+ "▁tr ip",
+ "▁tri p",
+ "▁exem ple",
+ "▁exempl e",
+ "▁Intern acional",
+ "▁ка о",
+ "In sert",
+ "gen eral",
+ "gener al",
+ "SE SSION",
+ "ber ga",
+ "berg a",
+ "hä lt",
+ "h ält",
+ "un as",
+ "una s",
+ "u nas",
+ "ми ра",
+ "мир а",
+ "▁yield s",
+ "map sto",
+ "maps to",
+ "sp ot",
+ "s pot",
+ "▁+ \\",
+ "▁ +\\",
+ "лл а",
+ "л ла",
+ "▁precis ely",
+ "▁precise ly",
+ "▁ч лен",
+ "sh adow",
+ "Ar e",
+ "A re",
+ "un al",
+ "una l",
+ "u nal",
+ "▁dis par",
+ "▁disp ar",
+ "▁tít ulo",
+ "ne st",
+ "nes t",
+ "n est",
+ "▁L ow",
+ "▁Lo w",
+ "▁p rot",
+ "▁pro t",
+ "▁pr ot",
+ "▁C osta",
+ "▁Co sta",
+ "▁Cost a",
+ "▁Cos ta",
+ "name d",
+ "na med",
+ "nam ed",
+ "n amed",
+ "▁g ained",
+ "▁ga ined",
+ "▁gain ed",
+ "les ia",
+ "l esia",
+ "▁admin istration",
+ "▁administr ation",
+ "Im port",
+ "Imp ort",
+ "br anch",
+ "b ranch",
+ "▁sym path",
+ "vo j",
+ "v oj",
+ "▁E C",
+ "▁ EC",
+ "▁municip io",
+ "▁anim ated",
+ "▁animate d",
+ "▁direct ories",
+ "▁director ies",
+ "▁ro of",
+ "zą d",
+ "z ąd",
+ "im et",
+ "ime t",
+ "i met",
+ "pr oto",
+ "pro to",
+ "bl a",
+ "b la",
+ ": ]",
+ "ha ve",
+ "hav e",
+ "h ave",
+ "at em",
+ "ate m",
+ "a tem",
+ "▁n s",
+ "▁ ns",
+ "▁s ector",
+ "▁se ctor",
+ "▁sec tor",
+ "▁sect or",
+ "th ree",
+ "ow ane",
+ "owa ne",
+ "owan e",
+ "wer s",
+ "we rs",
+ "w ers",
+ "ов их",
+ "ови х",
+ "ren ce",
+ "r ence",
+ "▁ex tr",
+ "▁ext r",
+ "ig ten",
+ "igt en",
+ "igte n",
+ "▁occ ident",
+ "ț ă",
+ "▁e at",
+ "▁h ydro",
+ "▁hy dro",
+ "▁hyd ro",
+ "ubern etes",
+ "[ @",
+ "▁M oon",
+ "▁Mo on",
+ "▁S ho",
+ "▁Sh o",
+ "▁else where",
+ "ül ler",
+ "üll er",
+ "Up load",
+ "ла нд",
+ "лан д",
+ "л анд",
+ "▁F ör",
+ "w issenschaft",
+ "K S",
+ "▁phys ics",
+ "▁ physics",
+ "t z",
+ "▁се ред",
+ "▁Ar beit",
+ "▁Arbe it",
+ "▁ме ст",
+ "▁ мест",
+ "▁Geb iet",
+ "▁in sect",
+ "▁ins ect",
+ "▁inse ct",
+ "A h",
+ "iz ado",
+ "iza do",
+ "▁tem ple",
+ "▁temp le",
+ "▁ann ual",
+ "st ad",
+ "sta d",
+ "▁hab itat",
+ "▁habit at",
+ "▁A B",
+ "▁ AB",
+ "wo rt",
+ "wor t",
+ "w ort",
+ "▁re pos",
+ "▁rep os",
+ "▁repo s",
+ "▁N eu",
+ "▁Ne u",
+ "▁$ (\".",
+ "▁$( \".",
+ "▁$(\" .",
+ "Vor lage",
+ "▁repre zent",
+ "est anden",
+ "In tern",
+ "Int ern",
+ "Inter n",
+ ". `",
+ "▁fa iling",
+ "▁fail ing",
+ "▁M aterial",
+ "▁Mate rial",
+ "▁ Material",
+ "▁effect ively",
+ "▁effective ly",
+ "те лем",
+ "тел ем",
+ "▁г ла",
+ "▁ гла",
+ "▁na hm",
+ "▁nah m",
+ "▁ nahm",
+ "▁differ ently",
+ "▁different ly",
+ "ext ension",
+ "▁V erm",
+ "▁Ver m",
+ "▁Ve rm",
+ "en abled",
+ "ena bled",
+ "enable d",
+ "con figure",
+ "config ure",
+ "ni o",
+ "n io",
+ "ci ones",
+ "cio nes",
+ "cion es",
+ "c iones",
+ "▁B each",
+ "▁Be ach",
+ "со на",
+ "сон а",
+ "с она",
+ "▁copy ing",
+ "▁cop ying",
+ "▁у країн",
+ "▁при зна",
+ "▁приз на",
+ "z h",
+ "Des ktop",
+ "▁s ost",
+ "▁so st",
+ "▁sub sequently",
+ "▁subsequ ently",
+ "▁subsequent ly",
+ "▁Le hr",
+ "▁ ó",
+ "lä r",
+ "l är",
+ "od or",
+ "odo r",
+ "o dor",
+ "ph on",
+ "p hon",
+ "n c",
+ "iter ator",
+ "▁э ти",
+ "▁europ é",
+ "▁Tor onto",
+ "ód igo",
+ "▁p osto",
+ "▁po sto",
+ "▁pos to",
+ "▁post o",
+ "ff e",
+ "f fe",
+ "▁c rew",
+ "▁cre w",
+ "▁cr ew",
+ "▁Sch war",
+ "▁Schw ar",
+ "S a",
+ "squ are",
+ "s quare",
+ "▁be side",
+ "▁bes ide",
+ "▁М і",
+ "▁a th",
+ "▁at h",
+ "▁ ath",
+ "▁ad vent",
+ "▁adv ent",
+ "c ji",
+ "writ ten",
+ "wr itten",
+ "w ritten",
+ "▁r uss",
+ "▁ru ss",
+ "▁rus s",
+ "ro st",
+ "ros t",
+ "r ost",
+ "H I",
+ "▁d ice",
+ "▁di ce",
+ "▁dic e",
+ "cc a",
+ "c ca",
+ "▁d ép",
+ "▁dé p",
+ "pl y",
+ "p ly",
+ "big g",
+ "bi gg",
+ "b igg",
+ "zi ał",
+ "zia ł",
+ "z iał",
+ "üt t",
+ "ü tt",
+ "▁о дно",
+ "▁од но",
+ "J ECT",
+ "сь кому",
+ "сько му",
+ "ськ ому",
+ "no s",
+ "n os",
+ "mo ck",
+ "m ock",
+ "La unch",
+ "sa me",
+ "sam e",
+ "s ame",
+ "▁j obs",
+ "▁jo bs",
+ "▁job s",
+ "▁wide ly",
+ "▁wid ely",
+ "▁def ines",
+ "▁define s",
+ "▁defin es",
+ "▁P se",
+ "▁Ps e",
+ "▁neigh bour",
+ "▁neighb our",
+ "ющи е",
+ "▁cl oser",
+ "▁close r",
+ "▁clos er",
+ "▁clo ser",
+ "▁рас поло",
+ "▁распо ло",
+ "▁cl ubs",
+ "▁club s",
+ "fl y",
+ "f ly",
+ "ши м",
+ "ш им",
+ "▁suffer ed",
+ "▁suff ered",
+ "▁n ar",
+ "▁na r",
+ "▁ nar",
+ "▁l avor",
+ "▁la vor",
+ "▁lav or",
+ "Ext ension",
+ "ition ally",
+ "itional ly",
+ "▁g race",
+ "▁gr ace",
+ "▁gra ce",
+ "▁Campe onato",
+ "▁Christ mas",
+ "m iddle",
+ "oth ek",
+ "othe k",
+ "el ements",
+ "element s",
+ "ele ments",
+ "elem ents",
+ "▁son dern",
+ "▁t arde",
+ "▁tar de",
+ "▁tard e",
+ "▁perman ent",
+ "▁con clude",
+ "▁concl ude",
+ "Se g",
+ "S eg",
+ "▁а каде",
+ "}\" ,",
+ "} \",",
+ "▁февра ля",
+ "ře d",
+ "ř ed",
+ "▁I L",
+ "▁ IL",
+ "ju d",
+ "j ud",
+ "▁U SS",
+ "▁US S",
+ "▁N ature",
+ "▁Natur e",
+ "▁Nat ure",
+ "if ference",
+ "iffer ence",
+ "iffe rence",
+ "Serial izer",
+ "▁tw elve",
+ "ti d",
+ "t id",
+ "ми я",
+ "че ского",
+ "▁cal endar",
+ "▁ calendar",
+ "con cat",
+ "▁inter section",
+ "▁intersect ion",
+ "▁P A",
+ "▁ PA",
+ "az ure",
+ "azu re",
+ "▁situ ée",
+ "▁situé e",
+ "▁k inds",
+ "▁kind s",
+ "▁kin ds",
+ "▁aus ge",
+ "▁r ural",
+ "▁ru ral",
+ "Th eme",
+ "The me",
+ "▁t ale",
+ "▁tal e",
+ "▁ta le",
+ "no indent",
+ "go ing",
+ "r x",
+ "ag i",
+ "a gi",
+ "wrap per",
+ "wr apper",
+ "w rapper",
+ "▁Co ast",
+ "mb H",
+ "▁пере д",
+ "▁пе ред",
+ "sp re",
+ "spr e",
+ "s pre",
+ "▁} \\",
+ "▁ }\\",
+ "▁L I",
+ "▁ LI",
+ "zn am",
+ "zna m",
+ "z nam",
+ "it led",
+ "itle d",
+ "Sam ple",
+ "S ample",
+ "ul iar",
+ "uli ar",
+ "* \\",
+ "▁res istance",
+ "▁resist ance",
+ "st ock",
+ "sto ck",
+ "ke d",
+ "k ed",
+ "▁H E",
+ "▁ HE",
+ "▁pos session",
+ "▁poss ession",
+ "▁possess ion",
+ "▁R ing",
+ "▁Ri ng",
+ "▁m agyar",
+ "▁mag yar",
+ "ou ts",
+ "out s",
+ "o uts",
+ "▁Secret ary",
+ "nd e",
+ "n de",
+ "▁W ald",
+ "▁Wal d",
+ "▁Wa ld",
+ "- (",
+ "▁I SO",
+ "▁IS O",
+ "▁ ISO",
+ "▁af ternoon",
+ "ion en",
+ "io nen",
+ "ione n",
+ "i onen",
+ "▁st ops",
+ "▁stop s",
+ "▁sto ps",
+ "▁const ants",
+ "▁constant s",
+ "gu ard",
+ "bo w",
+ "b ow",
+ "▁e rs",
+ "▁er s",
+ "▁ ers",
+ "▁Fire base",
+ "▁C lear",
+ "▁Cl ear",
+ "▁Cle ar",
+ "▁ Clear",
+ "▁H oly",
+ "▁Hol y",
+ "▁Ho ly",
+ "W in",
+ "▁title s",
+ "▁tit les",
+ "▁т рав",
+ "▁тра в",
+ "▁cont rib",
+ "▁contr ib",
+ "▁ contrib",
+ "hä ng",
+ "h äng",
+ "▁phot ograph",
+ "▁photo graph",
+ "▁Dist ribution",
+ "if ts",
+ "ift s",
+ "▁a unque",
+ "com b",
+ "co mb",
+ "c omb",
+ "AD D",
+ "A DD",
+ "▁public ation",
+ "▁pub lication",
+ "▁publi cation",
+ "▁слу ж",
+ "▁к ня",
+ "▁ay ant",
+ "▁re store",
+ "▁r estore",
+ "▁rest ore",
+ "▁resto re",
+ "▁bel ief",
+ "▁v ég",
+ "▁vé g",
+ "▁ext ensions",
+ "▁extension s",
+ "▁extens ions",
+ "▁ extensions",
+ "▁de com",
+ "▁dec om",
+ "вши й",
+ "в ший",
+ "W T",
+ "▁par ti",
+ "▁part i",
+ "▁gi oc",
+ "▁ми ра",
+ "▁ мира",
+ "▁is su",
+ "▁iss u",
+ "pi pe",
+ "pip e",
+ "p ipe",
+ "▁pro ps",
+ "▁pr ops",
+ "▁prop s",
+ "▁ props",
+ "▁w illing",
+ "▁will ing",
+ "▁wil ling",
+ "▁n est",
+ "▁ne st",
+ "▁ nest",
+ "as o",
+ "a so",
+ "po t",
+ "p ot",
+ "▁hand les",
+ "▁handle s",
+ "▁ф о",
+ "▁ фо",
+ "▁m oder",
+ "▁mod er",
+ "▁mo der",
+ "▁mode r",
+ "▁eben falls",
+ "▁fight ing",
+ "um bn",
+ "umb n",
+ "▁trans parent",
+ "▁K rist",
+ "▁Kr ist",
+ "▁home s",
+ "▁hom es",
+ "▁ho mes",
+ "▁voy age",
+ "Fa iled",
+ "Fail ed",
+ "▁B ird",
+ "▁Bi rd",
+ "▁Bir d",
+ "▁He art",
+ "Count er",
+ "Co unter",
+ "C ounter",
+ "▁Scott ish",
+ "át ica",
+ "▁ar beit",
+ "▁ arbeit",
+ "^{ -\\",
+ "^{- \\",
+ "▁S or",
+ "▁So r",
+ "▁eng aged",
+ "▁engag ed",
+ "▁a side",
+ "▁as ide",
+ "▁asi de",
+ "▁F ou",
+ "▁Fo u",
+ "▁w iel",
+ "▁wie l",
+ "▁re const",
+ "▁recon st",
+ "ou sin",
+ "ous in",
+ "▁host ed",
+ "▁ho sted",
+ "▁hos ted",
+ "▁c lasse",
+ "▁class e",
+ "▁cl asse",
+ "▁clas se",
+ "▁con test",
+ "▁cont est",
+ "▁conte st",
+ ".. .\"",
+ "... \"",
+ "мо м",
+ "м ом",
+ "▁be an",
+ "▁ bean",
+ "ge m",
+ "g em",
+ "▁consult ato",
+ "▁b io",
+ "▁bi o",
+ "▁ bio",
+ "▁subject s",
+ "bo Box",
+ "▁Sch rift",
+ "▁d inner",
+ "▁din ner",
+ "ă r",
+ "▁r ówn",
+ "▁% %",
+ "▁ %%",
+ "ba ge",
+ "bag e",
+ "b age",
+ "▁ver öff",
+ "▁det ected",
+ "▁detect ed",
+ "ie nn",
+ "ien n",
+ "i enn",
+ "ro se",
+ "ros e",
+ "r ose",
+ "▁T on",
+ "▁To n",
+ "Comp lete",
+ "Comple te",
+ "▁pro to",
+ "▁pr oto",
+ "▁prot o",
+ "▁ proto",
+ "ich ts",
+ "icht s",
+ "i chts",
+ "ST AT",
+ "Check ed",
+ "▁in ten",
+ "▁i nten",
+ "▁int en",
+ "▁inte n",
+ "▁s mile",
+ "▁sm ile",
+ "▁st rip",
+ "▁str ip",
+ "▁stri p",
+ "▁ strip",
+ "ne ut",
+ "') ;\r",
+ "'); \r",
+ "' );\r",
+ "fo ur",
+ "f our",
+ "▁to das",
+ "▁tod as",
+ "▁toda s",
+ "Control s",
+ "▁thor ough",
+ "ru p",
+ "r up",
+ "▁држа ви",
+ "it ă",
+ "Pro tocol",
+ "К а",
+ "▁expand ed",
+ "ex tra",
+ "ext ra",
+ "op ort",
+ "opo rt",
+ "o port",
+ "▁Ста нов",
+ "le ases",
+ "lease s",
+ "▁n otion",
+ "▁not ion",
+ "▁no tion",
+ "▁g uest",
+ "▁gu est",
+ "▁Is lands",
+ "▁Island s",
+ "ic ked",
+ "ick ed",
+ "▁D ave",
+ "▁Dav e",
+ "▁Da ve",
+ "▁ref lection",
+ "▁reflect ion",
+ "li v",
+ "l iv",
+ "ál ní",
+ "▁reve aled",
+ "▁s og",
+ "▁so g",
+ "▁T ax",
+ "▁Ta x",
+ "▁period o",
+ "▁peri odo",
+ "▁Welt krie",
+ "catal ina",
+ "qu é",
+ "q ué",
+ "▁F ather",
+ "▁Fa ther",
+ "▁B ir",
+ "▁Bi r",
+ "ex pect",
+ "exp ect",
+ "▁re gression",
+ "▁reg ression",
+ "in é",
+ "i né",
+ "▁d abei",
+ "▁da bei",
+ "pe rm",
+ "per m",
+ "p erm",
+ "ме не",
+ "мен е",
+ "м ене",
+ "▁A bd",
+ "▁Ab d",
+ "▁C F",
+ "▁ CF",
+ "ar ks",
+ "ark s",
+ "resol ve",
+ "wed ge",
+ "w edge",
+ "▁initial ization",
+ "▁Vé ase",
+ "▁при ня",
+ "st mt",
+ "▁in come",
+ "▁inc ome",
+ "M Y",
+ "▁od kazy",
+ "▁Sie he",
+ "▁bod ies",
+ "▁s oc",
+ "▁so c",
+ "R andom",
+ "▁s enza",
+ "▁sen za",
+ "ab lo",
+ "abl o",
+ "a blo",
+ "▁reg arded",
+ "▁regard ed",
+ "on Create",
+ "▁Mag azine",
+ "▁R af",
+ "▁Ra f",
+ "▁Buen os",
+ "и л",
+ ")) );",
+ "))) ;",
+ ") ));",
+ "ca pt",
+ "cap t",
+ "c apt",
+ "re direct",
+ "red irect",
+ "▁pe tit",
+ "▁pet it",
+ "▁f arm",
+ "▁far m",
+ "▁fa rm",
+ "▁r ôle",
+ "▁стать и",
+ " ",
+ "sub figure",
+ "èce s",
+ "è ces",
+ "zi el",
+ "zie l",
+ "z iel",
+ "▁о кон",
+ "▁ок он",
+ "E E",
+ "me e",
+ "m ee",
+ "▁p erten",
+ "▁per ten",
+ "▁pert en",
+ "▁représ ent",
+ "▁L A",
+ "▁ LA",
+ "? '",
+ "▁т ру",
+ "▁r ational",
+ "▁rat ional",
+ "▁ratio nal",
+ "os of",
+ "oso f",
+ "▁k ne",
+ "▁kn e",
+ "▁art ists",
+ "▁artist s",
+ "Fl ow",
+ "F low",
+ "▁А ль",
+ "▁Ал ь",
+ "iz ard",
+ "iza rd",
+ "izar d",
+ "▁num ero",
+ "▁numer o",
+ "act ic",
+ "a ctic",
+ "▁de struct",
+ "▁dest ruct",
+ "▁destru ct",
+ "▁П ра",
+ "ons ieur",
+ "q t",
+ "ab estanden",
+ "no ść",
+ "Con nect",
+ "Conne ct",
+ "▁o racle",
+ "▁or acle",
+ "▁ora cle",
+ "▁ oracle",
+ "▁Stock holm",
+ "size of",
+ "▁gem äß",
+ "AC T",
+ "A CT",
+ "▁ex pert",
+ "▁exp ert",
+ "▁exper t",
+ "ut ions",
+ "ution s",
+ "uti ons",
+ "▁h acia",
+ "▁ha cia",
+ "▁log ger",
+ "▁ logger",
+ "▁f ool",
+ "▁fo ol",
+ "▁foo l",
+ "ry pto",
+ "rypt o",
+ "æ r",
+ "▁c idade",
+ "▁ci dade",
+ "▁состав е",
+ "▁соста ве",
+ "ok er",
+ "oke r",
+ "o ker",
+ "▁Trans fer",
+ "▁den ied",
+ "Tr ack",
+ "Tra ck",
+ "T rack",
+ "▁r adi",
+ "▁ra di",
+ "▁rad i",
+ "ze c",
+ "z ec",
+ "▁Histor ic",
+ "▁Einwo hner",
+ "ко ю",
+ "▁х ра",
+ "▁ хра",
+ "▁C ategory",
+ "▁ Category",
+ "▁Dis ney",
+ "▁sw ap",
+ "▁ swap",
+ "Be gin",
+ "B egin",
+ "▁m ientras",
+ "▁d ance",
+ "▁dan ce",
+ "▁t ête",
+ "▁d roit",
+ "▁dr oit",
+ "▁dro it",
+ "er ta",
+ "ert a",
+ "▁bird s",
+ "▁bir ds",
+ "▁con vin",
+ "▁conv in",
+ "par ator",
+ "para tor",
+ "д ра",
+ "▁E S",
+ "▁ ES",
+ "▁Ress ources",
+ "▁Ressource s",
+ "EG IN",
+ "ück e",
+ "ü cke",
+ "▁Cr uz",
+ "▁Cru z",
+ "ab ling",
+ "abl ing",
+ "a bling",
+ "▁\" @",
+ "▁me tres",
+ "▁met res",
+ "▁B eg",
+ "▁Be g",
+ "▁Gr ünd",
+ "▁B oh",
+ "▁Bo h",
+ "▁m ile",
+ "▁mil e",
+ "▁mi le",
+ "▁ mile",
+ "▁Techn ology",
+ "\" +",
+ "ac co",
+ "acc o",
+ "a cco",
+ "▁s s",
+ "▁ ss",
+ "▁F ed",
+ "▁Fe d",
+ "▁H end",
+ "▁He nd",
+ "▁Hen d",
+ "us ch",
+ "usc h",
+ "u sch",
+ "it ä",
+ "fol k",
+ "f olk",
+ "▁abs or",
+ "an tal",
+ "ant al",
+ "anta l",
+ "od ge",
+ "▁WH EN",
+ "▁Extern í",
+ "▁Reg iment",
+ "▁evalu ation",
+ "▁T ai",
+ "▁Ta i",
+ "▁voc als",
+ "▁vocal s",
+ "▁ex perimental",
+ "▁experiment al",
+ "em bed",
+ "emb ed",
+ "▁M inn",
+ "▁Min n",
+ "▁Mi nn",
+ "▁в ме",
+ "pr ec",
+ "pre c",
+ "p rec",
+ "ever y",
+ "ev ery",
+ "e very",
+ "▁ho of",
+ "▁Fern ando",
+ "▁Bibli ographie",
+ "▁n ag",
+ "▁na g",
+ "amerikan ischer",
+ "▁m arks",
+ "▁mar ks",
+ "▁mark s",
+ "▁ marks",
+ "▁U TC",
+ "▁ UTC",
+ "▁un certain",
+ "ди я",
+ "ol ia",
+ "oli a",
+ "o lia",
+ "▁c up",
+ "▁cu p",
+ "▁ cup",
+ "▁f ille",
+ "▁fil le",
+ "▁fill e",
+ "▁fi lle",
+ "▁d ok",
+ "▁do k",
+ "use ppe",
+ "est erd",
+ "ester d",
+ "este rd",
+ "e sterd",
+ "▁B rand",
+ "▁Br and",
+ "▁Bra nd",
+ "▁Bran d",
+ "▁Th ird",
+ "P P",
+ "no des",
+ "node s",
+ "n odes",
+ "▁P ad",
+ "▁Pa d",
+ "▁ Pad",
+ "▁l oved",
+ "▁lo ved",
+ "▁love d",
+ "▁lov ed",
+ "sw ing",
+ "s wing",
+ "▁surpr ised",
+ "▁surprise d",
+ "ar di",
+ "ard i",
+ "▁G R",
+ "▁ GR",
+ "] \"",
+ "▁equ ally",
+ "▁equal ly",
+ "▁eq ually",
+ "ih e",
+ "i he",
+ "ca re",
+ "car e",
+ "c are",
+ "пи сок",
+ "пис ок",
+ "li jk",
+ "lij k",
+ "l ijk",
+ "ri nn",
+ "rin n",
+ "r inn",
+ "▁\\ [\\",
+ "▁\\[ \\",
+ "▁s ons",
+ "▁so ns",
+ "▁son s",
+ "▁t ät",
+ "ic amente",
+ "ica mente",
+ "▁l isting",
+ "▁list ing",
+ "iel lement",
+ "ielle ment",
+ "▁nyel ven",
+ "▁d s",
+ "▁ ds",
+ "▁agr icult",
+ "▁H ermann",
+ "▁Her mann",
+ "▁Herm ann",
+ "▁bes ides",
+ "▁beside s",
+ "pro gress",
+ "prog ress",
+ "▁pec uliar",
+ "fo cus",
+ "f ocus",
+ "c n",
+ "- $",
+ "ствен ный",
+ "ou rg",
+ "our g",
+ "o urg",
+ "▁w yn",
+ "▁wy n",
+ "▁conduct ed",
+ "▁condu cted",
+ "▁Станов ништво",
+ "connect ed",
+ "conne cted",
+ "conn ected",
+ "▁b ott",
+ "▁bo tt",
+ "▁bot t",
+ "▁с мер",
+ "▁см ер",
+ "▁P oz",
+ "▁Po z",
+ "un ct",
+ "unc t",
+ "con da",
+ "cond a",
+ "c onda",
+ "▁савез ној",
+ "▁ha vet",
+ "▁have t",
+ "▁hav et",
+ "li gt",
+ "lig t",
+ "l igt",
+ "or ted",
+ "ort ed",
+ "orte d",
+ "▁ent ering",
+ "▁enter ing",
+ "mult ip",
+ "multi p",
+ "mul tip",
+ "▁Tem ple",
+ "▁Temp le",
+ "▁P lant",
+ "▁Pl ant",
+ "▁Plan t",
+ "▁Pla nt",
+ "type of",
+ "▁V lad",
+ "▁qu ed",
+ "▁que d",
+ "▁q ued",
+ "▁re ste",
+ "▁r este",
+ "▁res te",
+ "▁rest e",
+ "▁ма й",
+ "▁ май",
+ "▁V ery",
+ "▁Ver y",
+ "▁Ve ry",
+ "ambigu ation",
+ "▁ch alleng",
+ "▁res pective",
+ "▁respect ive",
+ "▁т ор",
+ "▁то р",
+ "▁ тор",
+ "C trl",
+ "▁abs ence",
+ "ar u",
+ "a ru",
+ "во е",
+ "▁för st",
+ "▁s q",
+ "▁ sq",
+ "▁Em peror",
+ "▁I gn",
+ "▁Ig n",
+ "▁ Ign",
+ "▁т ова",
+ "▁то ва",
+ "▁ това",
+ ": `",
+ "ad oop",
+ "ado op",
+ "▁Mad ame",
+ "▁gru ppo",
+ "▁grup po",
+ "st ud",
+ "▁extern as",
+ "▁Александ р",
+ "▁d ign",
+ "▁di gn",
+ "▁dig n",
+ "▁жи ве",
+ "Am ount",
+ "A mount",
+ "▁correl ate",
+ "▁corre late",
+ "▁F ant",
+ "▁Fa nt",
+ "▁r ails",
+ "▁ra ils",
+ "▁rail s",
+ "▁ rails",
+ "f p",
+ "министра тив",
+ "▁b ought",
+ "▁fil ters",
+ "▁filter s",
+ "▁ filters",
+ "▁anc ora",
+ "▁part ner",
+ "▁qu and",
+ "▁quan d",
+ "sym bol",
+ "s ymbol",
+ "ul ating",
+ "ula ting",
+ "▁z d",
+ "▁ zd",
+ "aw n",
+ "a wn",
+ "▁G rant",
+ "▁Gr ant",
+ "▁Gra nt",
+ "▁Gran t",
+ "bec ause",
+ "b ecause",
+ "ra ble",
+ "rab le",
+ "r able",
+ "\\ }",
+ "íst icas",
+ "ística s",
+ "▁у че",
+ "▁péri ode",
+ "▁s ke",
+ "▁sk e",
+ "▁ ske",
+ "▁Any way",
+ "▁index es",
+ "▁inde xes",
+ "▁direct ions",
+ "▁dire ctions",
+ "▁direction s",
+ "▁R AM",
+ "▁RA M",
+ "▁ RAM",
+ "ch rome",
+ "chr ome",
+ "chrom e",
+ "▁a post",
+ "▁ap ost",
+ "▁apo st",
+ "▁war nings",
+ "▁warning s",
+ "▁warn ings",
+ "▁Air port",
+ "V I",
+ "ab ile",
+ "abil e",
+ "abi le",
+ "▁l ord",
+ "▁lo rd",
+ "pro vider",
+ "prov ider",
+ "▁J i",
+ "ost ream",
+ "o stream",
+ "▁geme ente",
+ "table View",
+ "Ex tra",
+ "Ext ra",
+ "c ursor",
+ "eg round",
+ "egr ound",
+ "e ground",
+ "▁M oz",
+ "▁Mo z",
+ "▁r ib",
+ "▁ri b",
+ "▁ rib",
+ "▁m orph",
+ "▁mor ph",
+ "lo ads",
+ "load s",
+ "el sk",
+ "els k",
+ "▁M AX",
+ "▁MA X",
+ "▁ MAX",
+ "▁Santi ago",
+ "▁H im",
+ "▁Hi m",
+ "code s",
+ "co des",
+ "cod es",
+ "c odes",
+ "▁l anz",
+ "▁lan z",
+ "▁count s",
+ "▁coun ts",
+ "rinn ingsområ",
+ "щ ё",
+ "▁sp é",
+ "▁pier ws",
+ "▁pierw s",
+ "▁S ver",
+ "▁Sv er",
+ "▁a cknow",
+ "▁ac know",
+ "Bo olean",
+ "▁фами ли",
+ "▁Sen ate",
+ "шо в",
+ "ш ов",
+ "ag ers",
+ "age rs",
+ "ager s",
+ "a gers",
+ "▁Nue va",
+ "bi l",
+ "b il",
+ "ki em",
+ "kie m",
+ "k iem",
+ "▁M ey",
+ "▁Me y",
+ "wi j",
+ "w ij",
+ "▁G mbH",
+ "valid ation",
+ "▁en suite",
+ "in king",
+ "ink ing",
+ "▁c ampion",
+ "▁camp ion",
+ "▁finan cial",
+ "▁financi al",
+ "iz on",
+ "izo n",
+ "i zon",
+ "He aders",
+ "Head ers",
+ "Header s",
+ "▁deprec ated",
+ "▁fon ction",
+ "RE G",
+ "R EG",
+ "▁vol umes",
+ "▁volume s",
+ "▁C hi",
+ "▁Ch i",
+ "▁encounter ed",
+ "la k",
+ "l ak",
+ "ра я",
+ "▁contin ues",
+ "▁continu es",
+ "▁continue s",
+ "▁~ [",
+ "uer te",
+ "u erte",
+ "▁\\ ;",
+ "▁ \\;",
+ "▁D ok",
+ "▁Do k",
+ "▁we ights",
+ "▁weight s",
+ "▁r h",
+ "▁ rh",
+ "▁Na pole",
+ "▁Nap ole",
+ "▁natur ally",
+ "▁natural ly",
+ "sk u",
+ "s ku",
+ "pa s",
+ "p as",
+ "▁g egründ",
+ "et r",
+ "e tr",
+ "▁K u",
+ "ic ted",
+ "ict ed",
+ "i cted",
+ "▁fab ric",
+ "▁A SC",
+ "▁AS C",
+ "▁ ASC",
+ "▁Entertain ment",
+ "▁en erg",
+ "▁ener g",
+ "кла д",
+ "к лад",
+ "om on",
+ "omo n",
+ "o mon",
+ "th eme",
+ "the me",
+ "▁ха рак",
+ "▁d raft",
+ "▁dr aft",
+ "▁dra ft",
+ "▁ch annels",
+ "▁channel s",
+ "▁de sert",
+ "▁des ert",
+ "▁deser t",
+ "▁tra vés",
+ "▁trav és",
+ "▁L ock",
+ "▁Lo ck",
+ "▁Loc k",
+ "▁ Lock",
+ "▁s iendo",
+ "▁si endo",
+ "фе к",
+ "ф ек",
+ "m ême",
+ "▁pa cket",
+ "▁pack et",
+ "▁pac ket",
+ "▁Mount ain",
+ "▁F ahr",
+ "▁Fa hr",
+ "bra io",
+ "пе ре",
+ "пер е",
+ "п ере",
+ "▁gen annt",
+ "▁dep loyment",
+ "▁deploy ment",
+ "Pa l",
+ "P al",
+ "но г",
+ "ст ру",
+ "стр у",
+ "Pr im",
+ "P rim",
+ "f ür",
+ "▁danger ous",
+ "▁sz ám",
+ "re ck",
+ "rec k",
+ "▁pop up",
+ "ic ky",
+ "ick y",
+ "in ar",
+ "ina r",
+ "i nar",
+ "co wo",
+ "cow o",
+ "c owo",
+ "нци кло",
+ "ít ás",
+ "▁pl ugins",
+ "▁plugin s",
+ "▁plug ins",
+ "▁ plugins",
+ "▁dr iven",
+ "▁drive n",
+ "▁dri ven",
+ "▁driv en",
+ "ле в",
+ "л ев",
+ "▁\" (",
+ "tt a",
+ "t ta",
+ "▁ Ú",
+ "▁e b",
+ "▁ eb",
+ "▁' ';",
+ "▁'' ;",
+ "▁kn ock",
+ "▁ос нова",
+ "▁основ а",
+ "▁m aison",
+ "▁ma ison",
+ "▁mais on",
+ "▁mai son",
+ "г ля",
+ "▁Hon or",
+ "▁Ho nor",
+ "ta il",
+ "t ail",
+ "ri tz",
+ "rit z",
+ "r itz",
+ "▁gu ys",
+ "▁combin ations",
+ "▁combination s",
+ "ond ere",
+ "onder e",
+ "onde re",
+ "▁A ld",
+ "▁Al d",
+ "▁f iddle",
+ "▁ fiddle",
+ "да в",
+ "ur d",
+ "u rd",
+ "▁pro jection",
+ "▁project ion",
+ "▁Tamb ién",
+ "ve rb",
+ "ver b",
+ "v erb",
+ "▁ter re",
+ "▁ terre",
+ "ru gu",
+ "rug u",
+ "▁se ptember",
+ "▁sept ember",
+ "▁< !",
+ "co st",
+ "cos t",
+ "c ost",
+ "▁n ut",
+ "▁nu t",
+ "▁ nut",
+ "{ %",
+ "▁ub ic",
+ "am arin",
+ "ama rin",
+ "amar in",
+ "ти и",
+ "▁pat ron",
+ "▁patr on",
+ "▁am ely",
+ "▁e sto",
+ "▁est o",
+ "▁es to",
+ "▁ esto",
+ "▁li stop",
+ "▁list op",
+ "fa l",
+ "f al",
+ "▁P rop",
+ "▁Pro p",
+ "▁Pr op",
+ "▁ Prop",
+ "▁O nt",
+ "▁On t",
+ "▁M ade",
+ "▁Ma de",
+ "▁Mad e",
+ "TE ST",
+ "▁N em",
+ "▁Ne m",
+ "▁N ations",
+ "▁Nat ions",
+ "▁Nation s",
+ "▁в у",
+ "▁ ву",
+ "in cluding",
+ "includ ing",
+ "▁spect rum",
+ "▁L an",
+ "▁La n",
+ "▁E ver",
+ "▁Ev er",
+ "Pa ul",
+ "t m",
+ "App end",
+ "Ap pend",
+ "Rel ative",
+ "dis abled",
+ "disable d",
+ "return s",
+ "▁flow ers",
+ "▁flo wers",
+ "▁flower s",
+ "ik u",
+ "i ku",
+ "▁| \\",
+ "▁ |\\",
+ "▁Jord an",
+ "▁Sm all",
+ "▁c ic",
+ "▁ci c",
+ "▁sex ual",
+ "au tre",
+ "aut re",
+ "ва л",
+ "в ал",
+ "▁r ip",
+ "▁ri p",
+ "▁ rip",
+ "ou st",
+ "ous t",
+ "o ust",
+ "▁Philadel phia",
+ "▁u k",
+ "▁ uk",
+ "▁M ongo",
+ "▁Mon go",
+ "▁Mong o",
+ "xml ns",
+ "▁sh op",
+ "▁sho p",
+ "▁ shop",
+ "▁debug ger",
+ "▁z aj",
+ "▁za j",
+ "▁B illy",
+ "▁Bill y",
+ "▁Bil ly",
+ "▁n iem",
+ "▁nie m",
+ "▁ni em",
+ "ol is",
+ "oli s",
+ "o lis",
+ "▁ро ссий",
+ "ag ner",
+ "agn er",
+ "agne r",
+ "▁m aven",
+ "▁ma ven",
+ "▁ maven",
+ "▁Gu stav",
+ "▁Gust av",
+ "A us",
+ "comp are",
+ "▁j eu",
+ "▁je u",
+ "ud er",
+ "ude r",
+ "u der",
+ "ish ment",
+ "▁ди визи",
+ "▁Fin land",
+ "ну т",
+ "н ут",
+ "z és",
+ "▁Liga ções",
+ "▁Lig ações",
+ "▁qu ello",
+ "▁quel lo",
+ "an notation",
+ "annot ation",
+ "▁th rew",
+ "▁thr ew",
+ "▁thre w",
+ "▁Pro of",
+ "▁ Proof",
+ "▁A rea",
+ "▁Ar ea",
+ "▁Are a",
+ "▁ Area",
+ "as hi",
+ "ash i",
+ "▁F O",
+ "▁ FO",
+ "ja min",
+ "j amin",
+ "ден т",
+ "д ент",
+ "▁un us",
+ "fri end",
+ ".\" );",
+ ".\") ;",
+ ". \");",
+ "▁tra kten",
+ "document class",
+ "an ka",
+ "ank a",
+ "▁ar rive",
+ "▁arr ive",
+ "▁arriv e",
+ "▁d onne",
+ "▁don ne",
+ "▁donn e",
+ "ol y",
+ "o ly",
+ "▁R ein",
+ "▁Re in",
+ "▁face book",
+ "▁fac ebook",
+ "▁ facebook",
+ "ic ina",
+ "ici na",
+ "sl ice",
+ "s lice",
+ "▁n agy",
+ "▁na gy",
+ "▁nag y",
+ "▁he bben",
+ "▁I C",
+ "▁ IC",
+ "▁B ag",
+ "▁Ba g",
+ "▁ Bag",
+ "▁circ ul",
+ "▁cir cul",
+ "ác t",
+ "á ct",
+ "mit t",
+ "mi tt",
+ "m itt",
+ "▁g rey",
+ "▁gr ey",
+ "▁gre y",
+ "▁c av",
+ "▁ca v",
+ "▁осо би",
+ "▁sym metric",
+ "▁symmet ric",
+ "▁S ic",
+ "▁Si c",
+ "▁med ium",
+ "▁medi um",
+ "▁ medium",
+ "▁U TF",
+ "▁ UTF",
+ "▁D opo",
+ "▁Do po",
+ "í ch",
+ "bar e",
+ "ba re",
+ "b are",
+ "dz ie",
+ "d zie",
+ "▁he aven",
+ "▁heav en",
+ "▁cam pe",
+ "▁camp e",
+ "ester day",
+ "esterd ay",
+ "▁W issenschaft",
+ "по ль",
+ "пол ь",
+ "di d",
+ "d id",
+ "al er",
+ "ale r",
+ "a ler",
+ "▁citiz ens",
+ "▁Marg aret",
+ "▁s ought",
+ "ch arts",
+ "char ts",
+ "chart s",
+ "CL C",
+ "C LC",
+ "ol ly",
+ "oll y",
+ "ys z",
+ "y sz",
+ "wa ld",
+ "wal d",
+ "w ald",
+ "▁f en",
+ "▁fe n",
+ "▁ fen",
+ "▁S ix",
+ "▁Si x",
+ "▁U rs",
+ "▁Ur s",
+ "▁ор ган",
+ "▁T rad",
+ "▁Tr ad",
+ "▁Tra d",
+ "cu e",
+ "c ue",
+ "sch utz",
+ "▁prec ise",
+ "▁precis e",
+ "▁W indow",
+ "▁Wind ow",
+ "▁ Window",
+ "ти е",
+ "ло ві",
+ "лов і",
+ "it ori",
+ "ito ri",
+ "itor i",
+ "dis ambiguation",
+ "▁х и",
+ "▁ хи",
+ "▁N atural",
+ "▁Natur al",
+ "▁Nat ural",
+ "da n",
+ "d an",
+ "▁con crete",
+ "ци ја",
+ "▁s pel",
+ "▁sp el",
+ "▁spe l",
+ "▁Fa iled",
+ "▁Fail ed",
+ "▁ Failed",
+ "ści e",
+ "śc ie",
+ "ś cie",
+ "▁b uf",
+ "▁bu f",
+ "▁ buf",
+ "uc a",
+ "u ca",
+ "ic ional",
+ "ici onal",
+ "icio nal",
+ "icion al",
+ "▁ott obre",
+ "▁otto bre",
+ "▁ф і",
+ "▁ фі",
+ "▁submit ted",
+ "▁subm itted",
+ "la ve",
+ "lav e",
+ "l ave",
+ "▁P lot",
+ "▁Pl ot",
+ "▁ Plot",
+ "▁col leg",
+ "▁coll eg",
+ "▁colle g",
+ "ad em",
+ "ade m",
+ "a dem",
+ "▁ch aque",
+ "▁cha que",
+ "▁neighbor hood",
+ "▁calci atore",
+ "Lo op",
+ "L oop",
+ "▁G ast",
+ "▁Ga st",
+ "▁Gas t",
+ "▁ко гда",
+ "▁indust rial",
+ "▁industri al",
+ "▁f atal",
+ "▁fa tal",
+ "▁fat al",
+ "▁C ert",
+ "▁Ce rt",
+ "▁Cer t",
+ "▁ Cert",
+ "la tion",
+ "lat ion",
+ "l ation",
+ "▁О дна",
+ "▁Од на",
+ "▁jam ais",
+ "▁acc um",
+ "Id entity",
+ "Ident ity",
+ "▁Me dal",
+ "▁Med al",
+ "Met adata",
+ "Meta data",
+ "▁лю дя",
+ "br idge",
+ "brid ge",
+ "b ridge",
+ "Go od",
+ "G ood",
+ "▁что бы",
+ "▁comp oser",
+ "▁compos er",
+ "▁compose r",
+ "▁b read",
+ "▁br ead",
+ "▁bre ad",
+ "▁clos ure",
+ "▁ closure",
+ "▁large ly",
+ "▁larg ely",
+ "F B",
+ "▁обла сть",
+ "▁autom atic",
+ "▁automat ic",
+ "ar ía",
+ "a ría",
+ "▁sufficient ly",
+ "▁ital iana",
+ "▁ка че",
+ "▁J ó",
+ "hi story",
+ "histor y",
+ "h istory",
+ "▁H D",
+ "▁ HD",
+ "▁sigu iente",
+ "ne ll",
+ "nel l",
+ "n ell",
+ "▁G ree",
+ "▁Gr ee",
+ "▁Gre e",
+ "▁T i",
+ "▁trans ferred",
+ "▁transfer red",
+ "équ ipe",
+ "é quipe",
+ "▁Phili ppe",
+ "▁Philipp e",
+ "▁Philip pe",
+ "▁encou rag",
+ "▁V ietnam",
+ "▁graph s",
+ "▁symmet ry",
+ "fr ed",
+ "fre d",
+ "f red",
+ "we ek",
+ "▁bron ze",
+ "ry s",
+ "r ys",
+ "▁name ly",
+ "▁nam ely",
+ "on ders",
+ "ond ers",
+ "onder s",
+ "onde rs",
+ "lem agne",
+ "X Y",
+ "Con vert",
+ "}] (",
+ "} ](",
+ "Reg ion",
+ "pe cies",
+ "pec ies",
+ "▁te xture",
+ "▁text ure",
+ "▁c hr",
+ "▁ch r",
+ "▁ chr",
+ "не го",
+ "н его",
+ "▁some body",
+ "a qu",
+ "er as",
+ "era s",
+ "e ras",
+ "▁Н ово",
+ "▁Но во",
+ "▁Нов о",
+ "▁d ez",
+ "▁de z",
+ "an iu",
+ "ani u",
+ "a niu",
+ "ok rat",
+ "▁co vers",
+ "▁cover s",
+ "▁cov ers",
+ "▁sign als",
+ "▁signal s",
+ "ђ е",
+ "▁H eb",
+ "▁He b",
+ "▁An ti",
+ "▁Ant i",
+ "IV E",
+ "I VE",
+ "▁re ss",
+ "▁r ess",
+ "▁res s",
+ "▁ ress",
+ "LE TE",
+ "yn a",
+ "y na",
+ "п ла",
+ "жде ния",
+ "ж дения",
+ "▁ch amp",
+ "▁cha mp",
+ "▁cham p",
+ "▁vill ages",
+ "▁village s",
+ "▁villa ges",
+ "Z one",
+ "▁i Phone",
+ "▁sou vent",
+ "сь кі",
+ "ськ і",
+ "▁feb braio",
+ "ér cito",
+ "▁X I",
+ "ok at",
+ "oka t",
+ "▁mem bres",
+ "▁memb res",
+ "▁membre s",
+ "ju nit",
+ "j unit",
+ "▁D raw",
+ "▁Dr aw",
+ "▁Dra w",
+ "▁ Draw",
+ "▁п рово",
+ "▁про во",
+ "▁пров о",
+ "▁пр ово",
+ "aud io",
+ "audi o",
+ "a udio",
+ "en dl",
+ "end l",
+ "▁N ad",
+ "▁Na d",
+ "▁magn itude",
+ "Su r",
+ "S ur",
+ "ic ing",
+ "ici ng",
+ "i cing",
+ "▁un w",
+ "▁о три",
+ "▁от ри",
+ "▁B ey",
+ "▁Be y",
+ "▁V ik",
+ "▁Vi k",
+ "▁polít ica",
+ "port er",
+ "por ter",
+ "porte r",
+ "p orter",
+ "▁Bar bara",
+ "▁Barb ara",
+ "ál t",
+ "á lt",
+ "bi b",
+ "b ib",
+ "▁accom pan",
+ "▁accomp an",
+ "V P",
+ "▁en coded",
+ "▁enc oded",
+ "▁encode d",
+ "▁ encoded",
+ "▁S ometimes",
+ "▁Some times",
+ "bi rd",
+ "bir d",
+ "b ird",
+ "▁U lt",
+ "▁Ul t",
+ "▁t un",
+ "▁tu n",
+ "get Text",
+ "▁ar rival",
+ "▁arr ival",
+ "▁arriv al",
+ "script style",
+ "{ `",
+ "▁pers pective",
+ "LI NE",
+ "LIN E",
+ "L INE",
+ "Form atter",
+ "Format ter",
+ "▁b om",
+ "▁bo m",
+ "в ра",
+ "DE BUG",
+ "Bound s",
+ "B ounds",
+ "▁T itle",
+ "▁Tit le",
+ "▁ Title",
+ "l ó",
+ "Da n",
+ "D an",
+ "▁g ene",
+ "▁ge ne",
+ "▁gen e",
+ "▁B it",
+ "▁Bi t",
+ "▁ Bit",
+ "▁reprodu ce",
+ "▁graph ics",
+ "▁ graphics",
+ "▁с ем",
+ "▁се м",
+ "р ё",
+ "▁ре ки",
+ "us alem",
+ "usa lem",
+ "ро ж",
+ "▁D ES",
+ "▁DE S",
+ "▁So ftware",
+ "ur ance",
+ "u rance",
+ "ithmet ic",
+ "en ess",
+ "ene ss",
+ "enes s",
+ "e ness",
+ "ic hi",
+ "ich i",
+ "i chi",
+ "Con verter",
+ "Convert er",
+ "▁g ithub",
+ "▁ github",
+ "erd ings",
+ "gl ise",
+ "ác h",
+ "á ch",
+ "▁bu ried",
+ "▁bur ied",
+ "▁v ision",
+ "▁vis ion",
+ "▁ vision",
+ "M iss",
+ "▁s ees",
+ "▁se es",
+ "▁see s",
+ "▁person nes",
+ "▁pers onnes",
+ "▁personn es",
+ "▁personne s",
+ "▁In tel",
+ "▁Int el",
+ "el ia",
+ "eli a",
+ "e lia",
+ "▁č lán",
+ "▁c hi",
+ "▁ch i",
+ "▁ chi",
+ "▁k las",
+ "▁kl as",
+ "au té",
+ "aut é",
+ "▁st ark",
+ "▁star k",
+ "cz e",
+ "c ze",
+ "▁dr ivers",
+ "▁driver s",
+ "▁drive rs",
+ "▁dri vers",
+ "▁driv ers",
+ "v n",
+ "! ,",
+ "▁го ды",
+ "▁год ы",
+ "H i",
+ "▁expla ins",
+ "▁expl ains",
+ "▁explain s",
+ "art icles",
+ "article s",
+ "▁z ug",
+ "▁zu g",
+ "▁ zug",
+ "Pro m",
+ "Pr om",
+ "P rom",
+ "> =",
+ "▁Be at",
+ "▁S ax",
+ "▁Sa x",
+ "vert ical",
+ "кт о",
+ "к то",
+ "▁pl ants",
+ "▁plan ts",
+ "▁plant s",
+ "▁Ré férences",
+ "▁Référence s",
+ "▁og ni",
+ "▁c urs",
+ "▁cu rs",
+ "▁cur s",
+ "▁S K",
+ "▁ SK",
+ "он и",
+ "о ни",
+ "▁des tac",
+ "▁dest ac",
+ "\") ;\r",
+ "\"); \r",
+ "\" );\r",
+ "▁S ure",
+ "▁Su re",
+ "▁Sur e",
+ "▁part ido",
+ "▁parti do",
+ "▁Fol ge",
+ "▁Mo ore",
+ "▁w z",
+ "ск ус",
+ "ску с",
+ "lt re",
+ "l tre",
+ "on do",
+ "ond o",
+ "▁p ose",
+ "▁po se",
+ "▁pos e",
+ "▁ pose",
+ "im os",
+ "imo s",
+ "i mos",
+ "бо й",
+ "ци па",
+ "ju s",
+ "j us",
+ ".. ...",
+ "... ..",
+ ".... .",
+ ". ....",
+ "▁ép oca",
+ "▁qu anto",
+ "▁quant o",
+ "▁quan to",
+ "▁Su pport",
+ "▁Supp ort",
+ "▁Sup port",
+ "▁ Support",
+ "gesch ichte",
+ "SER VER",
+ "▁George s",
+ "▁Georg es",
+ "en um",
+ "enu m",
+ "e num",
+ "▁h erm",
+ "▁he rm",
+ "▁her m",
+ "▁ne bo",
+ "▁C hr",
+ "▁Ch r",
+ "▁ Chr",
+ "char acter",
+ "▁* **",
+ "▁** *",
+ "▁ ***",
+ "▁For sch",
+ "ia mi",
+ "iam i",
+ "i ami",
+ "▁ ¿",
+ "cy ch",
+ "cyc h",
+ "c ych",
+ "▁fif th",
+ "se nt",
+ "sen t",
+ "s ent",
+ "▁and erem",
+ "▁andere m",
+ "▁proport ion",
+ "▁propor tion",
+ "▁p rest",
+ "▁pr est",
+ "▁pre st",
+ "▁pres t",
+ "▁G irl",
+ "▁Gi rl",
+ "▁Gir l",
+ "▁d rama",
+ "▁dr ama",
+ "▁dra ma",
+ "▁dram a",
+ "wa nd",
+ "wan d",
+ "w and",
+ "▁M ail",
+ "▁Ma il",
+ "▁Mai l",
+ "▁ Mail",
+ "▁L ux",
+ "▁Lu x",
+ "▁kter ý",
+ "▁Ges ellschaft",
+ "▁Hin weis",
+ "nis se",
+ "n isse",
+ "▁m ondo",
+ "▁mon do",
+ "▁mond o",
+ "E q",
+ "▁per í",
+ "▁pe rí",
+ "▁e astern",
+ "▁eas tern",
+ "▁east ern",
+ "▁UE FA",
+ "ual e",
+ "ua le",
+ "u ale",
+ "▁con vex",
+ "▁conv ex",
+ "▁по ль",
+ "▁пол ь",
+ "▁ поль",
+ "▁H ey",
+ "▁He y",
+ "ze nie",
+ "zen ie",
+ "z enie",
+ "init ely",
+ "▁Z usammen",
+ "SS L",
+ "S SL",
+ "oc al",
+ "oca l",
+ "o cal",
+ "▁c anal",
+ "▁can al",
+ "▁ca nal",
+ "vo y",
+ "v oy",
+ "▁К ри",
+ "▁köz ött",
+ "▁c ars",
+ "▁car s",
+ "▁ca rs",
+ "▁vers ión",
+ "En vironment",
+ "He r",
+ "H er",
+ "▁se ñ",
+ "▁sp atial",
+ "ym i",
+ "y mi",
+ "Fi re",
+ "F ire",
+ "▁ve get",
+ "▁veg et",
+ "▁W ie",
+ "▁Wi e",
+ "▁zn aj",
+ "▁zna j",
+ "▁dam age",
+ "▁en dl",
+ "▁end l",
+ "▁ endl",
+ "gi f",
+ "g if",
+ "▁qu ali",
+ "▁qual i",
+ "▁которы х",
+ "el lan",
+ "ell an",
+ "ella n",
+ "▁m ens",
+ "▁me ns",
+ "▁men s",
+ "▁pl ug",
+ "▁a bund",
+ "▁ab und",
+ "FI G",
+ "F IG",
+ "▁s f",
+ "▁ sf",
+ "▁con fl",
+ "▁conf l",
+ "▁насе ления",
+ "▁princi ples",
+ "▁princip les",
+ "▁principle s",
+ "▁Gab riel",
+ "ib e",
+ "i be",
+ "▁{ %",
+ "▁ {%",
+ "▁pobla ció",
+ "ні ципа",
+ "▁ext reme",
+ "▁extrem e",
+ "▁extr eme",
+ "▁as se",
+ "▁ass e",
+ "▁ asse",
+ "▁v u",
+ "▁ vu",
+ "Mo ck",
+ "M ock",
+ "▁spiel te",
+ "▁A er",
+ "▁d atos",
+ "▁dat os",
+ "en des",
+ "end es",
+ "ende s",
+ "▁G el",
+ "▁Ge l",
+ "▁G or",
+ "▁Go r",
+ "Ch rist",
+ "Chr ist",
+ "ch os",
+ "cho s",
+ "c hos",
+ "Process or",
+ "Proc essor",
+ "▁in struct",
+ "▁inst ruct",
+ "▁instru ct",
+ "▁p icked",
+ "▁pick ed",
+ "▁pic ked",
+ "nah me",
+ "nahm e",
+ "fa hr",
+ "fah r",
+ "f ahr",
+ "▁indic ated",
+ "▁indicate d",
+ "▁% .",
+ "▁ %.",
+ "▁t s",
+ "▁ ts",
+ "▁not able",
+ "▁no table",
+ "▁qual ified",
+ "▁А л",
+ "Bl ack",
+ "B lack",
+ "▁coun cil",
+ "▁over head",
+ "ac i",
+ "a ci",
+ "an née",
+ "ann ée",
+ "▁init With",
+ "bi ó",
+ "b ió",
+ "▁int roduction",
+ "▁introdu ction",
+ "▁compan ion",
+ "▁ex pon",
+ "▁exp on",
+ "▁k ör",
+ "▁kö r",
+ "ob y",
+ "o by",
+ "bu rn",
+ "bur n",
+ "b urn",
+ "gn u",
+ "g nu",
+ "virt ual",
+ "v irtual",
+ "▁intel lect",
+ "▁д ержа",
+ "▁ держа",
+ "' +",
+ "б ле",
+ "▁strict ly",
+ "▁recogn ize",
+ "ho ur",
+ "hou r",
+ "h our",
+ "▁W rest",
+ "en nen",
+ "enn en",
+ "enne n",
+ "$) .",
+ "$ ).",
+ "ff f",
+ "f ff",
+ "▁Cent ro",
+ "▁P itt",
+ "▁Pi tt",
+ "▁Pit t",
+ "▁d ział",
+ "▁dz iał",
+ "▁ dział",
+ "▁c ela",
+ "▁ce la",
+ "▁cel a",
+ "▁frances e",
+ "▁franc ese",
+ "ра ми",
+ "spe cial",
+ "spec ial",
+ "▁D up",
+ "▁Du p",
+ "to ire",
+ "t oire",
+ "ка ль",
+ "кал ь",
+ "к аль",
+ "CO UNT",
+ "▁Br ook",
+ "▁Bro ok",
+ "▁ру ково",
+ "pub lique",
+ "▁se conda",
+ "▁second a",
+ "▁sec onda",
+ "▁com pt",
+ "▁comp t",
+ "▁b land",
+ "▁bl and",
+ "▁bla nd",
+ "▁blan d",
+ "Be fore",
+ "▁P ack",
+ "▁Pa ck",
+ "▁Pac k",
+ "▁ Pack",
+ "al ty",
+ "alt y",
+ "öd er",
+ "ö der",
+ "▁interval s",
+ "▁Daten bank",
+ "Mo vie",
+ "M ovie",
+ "▁trans m",
+ "▁tran sm",
+ "▁t ap",
+ "▁ta p",
+ "▁по ч",
+ "fo n",
+ "f on",
+ "ia i",
+ "i ai",
+ "▁f ib",
+ "▁fi b",
+ "▁w yd",
+ "▁wy d",
+ "▁h ung",
+ "▁hun g",
+ "▁hu ng",
+ "▁ hung",
+ "▁a live",
+ "▁al ive",
+ "▁ali ve",
+ "Cl ear",
+ "C lear",
+ "▁p ushed",
+ "▁push ed",
+ "▁tu ple",
+ "▁ tuple",
+ "ach en",
+ "ac hen",
+ "ache n",
+ "a chen",
+ "го во",
+ "гов о",
+ "г ово",
+ "▁re vers",
+ "▁rev ers",
+ "▁reve rs",
+ "▁rever s",
+ "▁au gment",
+ "▁aug ment",
+ "▁ch allenge",
+ "▁challeng e",
+ "lo st",
+ "los t",
+ "l ost",
+ "▁deux ième",
+ "struct or",
+ "stru ctor",
+ "▁mehr erer",
+ "▁mehrere r",
+ "at ural",
+ "atur al",
+ "atura l",
+ "atu ral",
+ "Sp lit",
+ "S plit",
+ "ст ем",
+ "сте м",
+ "с тем",
+ "ш ла",
+ ")\\ \\",
+ ") \\\\",
+ "▁D og",
+ "▁Do g",
+ "▁develop ers",
+ "▁developer s",
+ "▁ developers",
+ "▁n od",
+ "▁no d",
+ "▁сто ро",
+ "▁Na N",
+ "▁ NaN",
+ "▁pr iest",
+ "▁pri est",
+ "▁ex ha",
+ "UN D",
+ "U ND",
+ "pa ir",
+ "p air",
+ "al one",
+ "alo ne",
+ "▁m oon",
+ "▁mo on",
+ "▁# !/",
+ "▁g uns",
+ "▁gu ns",
+ "▁gun s",
+ "ro la",
+ "rol a",
+ "r ola",
+ "чи та",
+ "▁Encyc lopedia",
+ "▁Encyclop edia",
+ "at is",
+ "ati s",
+ "a tis",
+ "▁' \"",
+ "▁ '\"",
+ "zy ch",
+ "z ych",
+ "▁super fic",
+ "▁э к",
+ "еде ра",
+ "fe ed",
+ "f eed",
+ "LA Y",
+ "F i",
+ "un ks",
+ "unk s",
+ "ise cond",
+ "i second",
+ "▁' @",
+ "▁Ad ding",
+ "▁Add ing",
+ "ро е",
+ "▁t ang",
+ "▁tan g",
+ "▁ta ng",
+ "ц о",
+ "hu ng",
+ "h ung",
+ "bi s",
+ "b is",
+ "sk ého",
+ "ské ho",
+ "▁ad vert",
+ "▁adv ert",
+ "▁за нима",
+ "uz z",
+ "u zz",
+ "ág ina",
+ "▁T el",
+ "▁Te l",
+ "si g",
+ "s ig",
+ "▁E z",
+ "▁guarante e",
+ "▁te aching",
+ "▁teach ing",
+ "ot y",
+ "o ty",
+ "ter min",
+ "term in",
+ "▁distribution s",
+ "▁distrib utions",
+ "FL A",
+ "F LA",
+ "▁Gi useppe",
+ "query Selector",
+ "▁/ \\",
+ "▁ /\\",
+ "▁S quad",
+ "g z",
+ "de lay",
+ "del ay",
+ "▁surr ounding",
+ "▁m anus",
+ "▁man us",
+ "▁H ou",
+ "▁Ho u",
+ "² ,",
+ "▁cult iv",
+ "▁trouble s",
+ "▁trou bles",
+ "▁r aison",
+ "▁ra ison",
+ "exp and",
+ "▁c ov",
+ "▁co v",
+ "▁ cov",
+ "nung en",
+ "n ungen",
+ ")) {",
+ ") ){",
+ "▁g een",
+ "▁ge en",
+ "▁au ßer",
+ "▁Л і",
+ "ř i",
+ "▁situ ations",
+ "▁situation s",
+ "▁tele p",
+ "▁tel ep",
+ "▁J ed",
+ "▁Je d",
+ "▁trav ail",
+ "▁trava il",
+ "li as",
+ "lia s",
+ "l ias",
+ "bul let",
+ "▁select ing",
+ "av ier",
+ "avi er",
+ "a vier",
+ "▁ess ential",
+ "( /",
+ "yy yy",
+ "št ě",
+ "ul ty",
+ "ult y",
+ "▁k ra",
+ "▁kr a",
+ "▁t abs",
+ "▁tab s",
+ "▁ta bs",
+ "▁ tabs",
+ "▁experience d",
+ "▁experien ced",
+ "az i",
+ "a zi",
+ "▁D irectory",
+ "▁Direct ory",
+ "▁Director y",
+ "▁ Directory",
+ "▁c ron",
+ "▁cr on",
+ "▁cro n",
+ "▁s pend",
+ "▁sp end",
+ "▁spe nd",
+ "▁R A",
+ "▁ RA",
+ "▁s elenium",
+ "▁sel enium",
+ "▁ selenium",
+ "▁T hé",
+ "▁Th é",
+ "Element s",
+ "El ements",
+ "ci i",
+ "c ii",
+ "▁p lat",
+ "▁pl at",
+ "▁pla t",
+ "▁arch ive",
+ "▁archiv e",
+ "▁ archive",
+ "▁ass istance",
+ "▁assist ance",
+ "▁ne ck",
+ "▁A venue",
+ "▁Aven ue",
+ "▁w heel",
+ "▁whe el",
+ "▁h ade",
+ "▁ha de",
+ "▁had e",
+ "Com mon",
+ "Comm on",
+ "▁D ialog",
+ "▁Di alog",
+ "▁Dia log",
+ "▁ Dialog",
+ "▁f org",
+ "▁for g",
+ "▁fo rg",
+ "▁sur ely",
+ "▁sure ly",
+ "▁h ockey",
+ "kt ó",
+ "k tó",
+ "▁t k",
+ "▁ tk",
+ "▁Br uce",
+ "▁Bru ce",
+ "▁e norm",
+ "▁en orm",
+ ", ’",
+ "▁Christ opher",
+ "▁Christoph er",
+ "je v",
+ "j ev",
+ "▁qu ad",
+ "▁ quad",
+ "▁A JAX",
+ "▁rel ief",
+ "▁reli ef",
+ "▁m odes",
+ "▁mod es",
+ "▁mo des",
+ "▁mode s",
+ "sk lär",
+ "s klär",
+ "▁V id",
+ "▁Vi d",
+ "▁Se rial",
+ "▁Ser ial",
+ "▁ Serial",
+ "▁to kens",
+ "▁token s",
+ "▁Pol and",
+ "▁Po land",
+ "\\ ]",
+ "▁v ide",
+ "▁vi de",
+ "▁vid e",
+ "ro oms",
+ "room s",
+ "om as",
+ "oma s",
+ "o mas",
+ "▁B ureau",
+ "▁Bur eau",
+ "c x",
+ "ность ю",
+ "ност ью",
+ "▁sign s",
+ "▁sig ns",
+ "ше ние",
+ "los sen",
+ "loss en",
+ "l ossen",
+ "▁Que ens",
+ "▁Queen s",
+ "▁m embre",
+ "▁mem bre",
+ "▁memb re",
+ "▁m ez",
+ "▁me z",
+ "▁ mez",
+ "▁B ool",
+ "▁Bo ol",
+ "▁ Bool",
+ "▁N aj",
+ "▁Na j",
+ "▁Mem ory",
+ "▁ Memory",
+ "▁K han",
+ "▁Kh an",
+ "▁l à",
+ "▁ là",
+ "▁H ud",
+ "▁Hu d",
+ "▁d ismiss",
+ "▁dis miss",
+ "ight h",
+ "igh th",
+ "▁f s",
+ "▁ fs",
+ "pr event",
+ "pre vent",
+ "prev ent",
+ "▁ме да",
+ "▁Pol ice",
+ "▁Po lice",
+ "▁с ко",
+ "▁ ско",
+ "fin ite",
+ "▁a mi",
+ "▁am i",
+ "▁ ami",
+ "▁M uch",
+ "▁Mu ch",
+ "ow ania",
+ "owa nia",
+ "owan ia",
+ "OR Y",
+ "O RY",
+ "io rs",
+ "ior s",
+ "i ors",
+ "▁Prem io",
+ "▁text box",
+ "d m",
+ "▁a fin",
+ "▁af in",
+ "▁Don ald",
+ "▁ Donald",
+ "▁P riv",
+ "▁Pr iv",
+ "▁Pri v",
+ "▁de cid",
+ "▁dec id",
+ "▁Maur ice",
+ "▁Mau rice",
+ "ag an",
+ "aga n",
+ "a gan",
+ "▁Britann ica",
+ "▁o ft",
+ "▁of t",
+ "▁consec utive",
+ "\"? >",
+ "\" ?>",
+ "ови й",
+ "st udent",
+ "stud ent",
+ "▁pe que",
+ "▁di eses",
+ "▁dies es",
+ "▁diese s",
+ "▁ret our",
+ "ét r",
+ "é tr",
+ "▁с ез",
+ "▁се з",
+ "▁k re",
+ "▁kr e",
+ "▁ kre",
+ "▁v otes",
+ "▁vo tes",
+ "▁vot es",
+ "▁vote s",
+ "ru ption",
+ "rupt ion",
+ "rup tion",
+ "iz ada",
+ "iza da",
+ "▁W iel",
+ "▁Wi el",
+ "▁Wie l",
+ "▁G ray",
+ "▁Gr ay",
+ "▁Gra y",
+ "▁Le op",
+ "▁Leo p",
+ "teil ung",
+ "tei lung",
+ "([ '",
+ "( ['",
+ "▁wh ites",
+ "▁white s",
+ "fr ica",
+ "fri ca",
+ "f rica",
+ "an imation",
+ "anim ation",
+ "cur l",
+ "cu rl",
+ "c url",
+ "ling s",
+ "lin gs",
+ "l ings",
+ "=\" $",
+ "lo yd",
+ "loy d",
+ "text sc",
+ "ор у",
+ "о ру",
+ "▁се ла",
+ "es ian",
+ "esi an",
+ "esia n",
+ "▁M ission",
+ "▁Miss ion",
+ "▁не за",
+ "▁ult imately",
+ "бо в",
+ "б ов",
+ "ol en",
+ "ole n",
+ "o len",
+ "ско му",
+ "ском у",
+ "ск ому",
+ "с кому",
+ "ne te",
+ "net e",
+ "n ete",
+ "▁D it",
+ "▁Di t",
+ "▁co stru",
+ "▁cost ru",
+ "dep endent",
+ "▁Re source",
+ "▁Res ource",
+ "▁ Resource",
+ "▁host s",
+ "▁hos ts",
+ "▁ hosts",
+ "▁re ar",
+ "▁r ear",
+ "D uration",
+ "ни ків",
+ "ник ів",
+ "М а",
+ "▁pl anning",
+ "▁plan ning",
+ "▁pre diction",
+ "▁pred iction",
+ "▁predict ion",
+ "▁L yn",
+ "▁Ly n",
+ "▁k ir",
+ "▁ki r",
+ "▁ kir",
+ "▁Leg isl",
+ "ма т",
+ "м ат",
+ "▁S occer",
+ "▁Soc cer",
+ "▁sur vey",
+ "▁surv ey",
+ "▁surve y",
+ "▁estadoun idense",
+ "or gen",
+ "org en",
+ "orge n",
+ "jo urd",
+ "jou rd",
+ "j ourd",
+ "▁ap rile",
+ "▁april e",
+ "▁apr ile",
+ "▁i ds",
+ "▁id s",
+ "▁ ids",
+ "сь ке",
+ "ськ е",
+ "▁emp loyee",
+ "▁employ ee",
+ "▁ employee",
+ "▁Schaus pieler",
+ "р ъ",
+ "▁mult imedia",
+ "▁multi media",
+ "▁сво ю",
+ "▁w ine",
+ "▁win e",
+ "▁E U",
+ "ic ă",
+ "▁R hein",
+ "▁Rh ein",
+ "▁Pal mar",
+ "ot eca",
+ "ote ca",
+ "▁prep are",
+ "▁prepar e",
+ "▁ prepare",
+ "▁T ot",
+ "▁To t",
+ "▁N ull",
+ "▁Nu ll",
+ "▁ Null",
+ "▁k in",
+ "▁ki n",
+ "▁ kin",
+ "in als",
+ "inal s",
+ "ina ls",
+ "▁New ton",
+ "▁t bl",
+ "▁ tbl",
+ "▁S old",
+ "▁So ld",
+ "▁Sol d",
+ "▁ver f",
+ "▁ve rf",
+ "at uring",
+ "atur ing",
+ "atu ring",
+ "▁la ptop",
+ "▁lap top",
+ "▁Со вет",
+ "▁Сов ет",
+ "▁Сове т",
+ "se cret",
+ "sec ret",
+ "▁Olymp ic",
+ "▁football er",
+ "▁Rud olf",
+ "▁con he",
+ "zy sk",
+ "▁evalu ated",
+ "▁evaluate d",
+ "» )",
+ "sh op",
+ "re pository",
+ "▁z ach",
+ "▁za ch",
+ "▁l osing",
+ "▁lo sing",
+ "▁los ing",
+ "et ter",
+ "ett er",
+ "ette r",
+ "▁W irtschaft",
+ "та к",
+ "▁unnecess ary",
+ "▁P hot",
+ "▁Ph ot",
+ "▁Pho t",
+ "an ska",
+ "ans ka",
+ "ansk a",
+ "▁N ative",
+ "▁Nat ive",
+ "▁ Native",
+ "CC E",
+ "C CE",
+ "▁fi fty",
+ "▁fif ty",
+ "▁e rw",
+ "▁er w",
+ "r h",
+ "is sent",
+ "iss ent",
+ "isse nt",
+ "issen t",
+ "}{ (",
+ "} {(",
+ "▁lan ç",
+ "▁X code",
+ "го род",
+ "гор од",
+ "ci r",
+ "c ir",
+ "▁pel ícula",
+ "▁O scar",
+ "▁Os car",
+ "▁sh ore",
+ "▁sho re",
+ "▁supp lied",
+ "ex amples",
+ "example s",
+ "Me ss",
+ "M ess",
+ "VI CE",
+ "V ICE",
+ "▁ex clude",
+ "▁h en",
+ "▁he n",
+ "▁ hen",
+ "▁гу бер",
+ "▁F ragment",
+ "▁Fra gment",
+ "▁ Fragment",
+ "▁B itte",
+ "▁Bi tte",
+ "▁Bit te",
+ "▁Bes ides",
+ "▁h es",
+ "▁he s",
+ "▁ hes",
+ "▁ih rem",
+ "▁ihr em",
+ "▁ihre m",
+ "▁Ser ge",
+ "▁art ific",
+ "=\" ${",
+ "=\"$ {",
+ "ло во",
+ "лов о",
+ "л ово",
+ "ut eur",
+ "ute ur",
+ "ta ire",
+ "t aire",
+ "па с",
+ "▁eas iest",
+ "▁fam iglia",
+ "N ormal",
+ "▁d alle",
+ "▁da lle",
+ "▁dal le",
+ "▁dall e",
+ "▁n ations",
+ "▁nation s",
+ "▁nat ions",
+ "r p",
+ "th ead",
+ "the ad",
+ "t head",
+ "▁обла сті",
+ "▁Democr atic",
+ "▁челов е",
+ "мо ж",
+ "▁г ер",
+ "▁ге р",
+ "▁ гер",
+ "▁small est",
+ "▁Publish ing",
+ "▁T s",
+ "▁laugh ed",
+ "ll e",
+ "l le",
+ "▁A mt",
+ "▁Am t",
+ "▁I IS",
+ "▁II S",
+ "FOR M",
+ "F ORM",
+ "Ma g",
+ "M ag",
+ "до н",
+ "д он",
+ "▁st oria",
+ "▁stor ia",
+ "▁sto ria",
+ "▁organ ized",
+ "▁organiz ed",
+ "č ní",
+ "▁o x",
+ "▁ ox",
+ "ling en",
+ "lin gen",
+ "l ingen",
+ "▁lu ego",
+ "cc ió",
+ "c ció",
+ "▁re ly",
+ "▁r ely",
+ "▁rel y",
+ "▁t ussen",
+ "er ten",
+ "ert en",
+ "erte n",
+ "▁hon our",
+ "▁Cla ude",
+ "▁Claud e",
+ "▁Ko rea",
+ "▁Kore a",
+ "▁Kor ea",
+ "▁Met ropol",
+ "▁Metro pol",
+ "Su per",
+ "S uper",
+ "ri en",
+ "rie n",
+ "r ien",
+ "ér ature",
+ "att ro",
+ "attr o",
+ "▁б іль",
+ "▁бі ль",
+ "▁ біль",
+ "▁Her bert",
+ "▁aut eurs",
+ "▁aute urs",
+ "▁dar auf",
+ "▁m ental",
+ "▁men tal",
+ "▁ment al",
+ "▁r ang",
+ "▁ra ng",
+ "▁ran g",
+ "▁s ón",
+ "▁só n",
+ "▁S oph",
+ "▁So ph",
+ ")\" ,",
+ ") \",",
+ "Des criptor",
+ "prep are",
+ "▁Land kreis",
+ "H C",
+ "cr oss",
+ "cro ss",
+ "c ross",
+ "ли за",
+ "▁Lo gin",
+ "▁Log in",
+ "▁ Login",
+ "on en",
+ "one n",
+ "o nen",
+ "Fe ature",
+ "▁m useum",
+ "▁muse um",
+ "▁ museum",
+ "ve k",
+ "v ek",
+ "▁Nel son",
+ "▁re jo",
+ "▁коман ди",
+ "▁sum mar",
+ "▁summ ar",
+ "▁сле ду",
+ "▁след у",
+ "äm p",
+ "ä mp",
+ "▁G as",
+ "▁Ga s",
+ "во м",
+ "в ом",
+ "VAL UE",
+ "in ge",
+ "ing e",
+ "per iod",
+ "lass en",
+ "las sen",
+ "lasse n",
+ "l assen",
+ "áv al",
+ "á val",
+ "▁alt ogether",
+ "um ph",
+ "ump h",
+ "ist ro",
+ "istr o",
+ "ą ż",
+ "▁Ke ep",
+ "▁Mar co",
+ "▁Marc o",
+ "▁ét ant",
+ "▁D re",
+ "▁Dr e",
+ "ge ometry",
+ "▁K as",
+ "▁Ka s",
+ "message s",
+ "mess ages",
+ "Co ok",
+ "C ook",
+ "▁S ide",
+ "▁Si de",
+ "▁Sid e",
+ "▁ Side",
+ "▁ко ми",
+ "▁ком и",
+ "ст ри",
+ "стр и",
+ "с три",
+ "▁ex cess",
+ "▁exc ess",
+ "▁Bi ografia",
+ "XX XX",
+ "XXX X",
+ "X XXX",
+ "▁N ie",
+ "▁Ni e",
+ "ven dor",
+ "v endor",
+ "xs d",
+ "x sd",
+ "Mil l",
+ "M ill",
+ "process ing",
+ "▁Miss ouri",
+ "▁perm ett",
+ "▁permet t",
+ "▁a par",
+ "▁ap ar",
+ "▁cro wd",
+ "▁crow d",
+ "fer t",
+ "fe rt",
+ "f ert",
+ "▁D ou",
+ "▁Do u",
+ "r í",
+ "▁C C",
+ "▁ CC",
+ "▁pay ment",
+ "▁ payment",
+ "▁Hol lywood",
+ "▁V irtual",
+ "▁ Virtual",
+ "▁sp oken",
+ "▁spoke n",
+ "▁spo ken",
+ "▁t ram",
+ "▁tr am",
+ "▁tra m",
+ "▁Comm unity",
+ "▁Commun ity",
+ "▁administr ative",
+ "▁в оло",
+ "▁во ло",
+ "gi or",
+ "gio r",
+ "g ior",
+ "vis or",
+ "▁Укра и",
+ "st age",
+ "sta ge",
+ "stag e",
+ "▁For mat",
+ "▁Form at",
+ "▁ Format",
+ "▁conven ient",
+ "Н а",
+ "▁med ian",
+ "▁media n",
+ "▁medi an",
+ "▁в ра",
+ "▁ вра",
+ "▁Пре ма",
+ "en ig",
+ "eni g",
+ "e nig",
+ "▁Op era",
+ "▁Oper a",
+ "ré s",
+ "r és",
+ "▁f mt",
+ "▁ fmt",
+ "▁effic iency",
+ "ma le",
+ "mal e",
+ "m ale",
+ "Ma ster",
+ "M aster",
+ "Ser ies",
+ "Se ries",
+ "S eries",
+ "▁s yd",
+ "▁sy d",
+ "gener ic",
+ "inter val",
+ "▁e fect",
+ "▁inwon ers",
+ "лим пи",
+ "ir ement",
+ "ire ment",
+ "Er r",
+ "E rr",
+ "ö h",
+ "▁l ying",
+ "▁ly ing",
+ "▁ lying",
+ "▁S ettings",
+ "▁Setting s",
+ "▁ Settings",
+ "! =",
+ "em atic",
+ "emat ic",
+ "arg v",
+ "▁Bas ic",
+ "▁ Basic",
+ "▁consider ation",
+ "▁h abe",
+ "▁ha be",
+ "▁hab e",
+ "- %",
+ "▁mount ains",
+ "▁mountain s",
+ "▁pe ak",
+ "▁f allen",
+ "▁fall en",
+ "▁fal len",
+ "ed ed",
+ "ede d",
+ "e ded",
+ "log ic",
+ "▁mat ched",
+ "▁match ed",
+ "▁typ ing",
+ "▁ty ping",
+ ")} ,",
+ ") },",
+ "▁f ancy",
+ "▁fan cy",
+ "▁eleg ant",
+ "ا ل",
+ "▁уча ст",
+ "▁Sa rah",
+ "▁Sar ah",
+ "▁V erd",
+ "▁Ver d",
+ "▁Ve rd",
+ "▁t ego",
+ "▁te go",
+ "ru les",
+ "rule s",
+ "r ules",
+ "▁mo unted",
+ "▁mount ed",
+ "▁і м",
+ "ер у",
+ "е ру",
+ "st off",
+ "sto ff",
+ "fa hren",
+ "fah ren",
+ "fahr en",
+ "f ahren",
+ "dist ance",
+ "d istance",
+ "▁Lic ense",
+ "▁LE FT",
+ "▁ LEFT",
+ "▁w p",
+ "▁ wp",
+ "/ {",
+ "▁am azon",
+ "▁amaz on",
+ "▁ amazon",
+ "> &",
+ "▁els ő",
+ "qu arters",
+ "▁sh ock",
+ "▁sho ck",
+ "ni ck",
+ "nic k",
+ "n ick",
+ "▁Arch ite",
+ "▁S quare",
+ "▁r ates",
+ "▁ra tes",
+ "▁rate s",
+ "▁rat es",
+ "io re",
+ "ior e",
+ "i ore",
+ "▁N at",
+ "▁Na t",
+ "▁Char lot",
+ "re ichen",
+ "reich en",
+ "rei chen",
+ "reiche n",
+ "▁var iation",
+ "▁vari ation",
+ "os is",
+ "osi s",
+ "li fe",
+ "l ife",
+ "sl ide",
+ "s lide",
+ "ab i",
+ "a bi",
+ "uk i",
+ "u ki",
+ "my sq",
+ "mys q",
+ "▁prim itive",
+ "▁primit ive",
+ "▁univers itaire",
+ "LE NG",
+ "ale ż",
+ "eb ook",
+ "e book",
+ "s yn",
+ "▁G egen",
+ "▁Ge gen",
+ "▁Geg en",
+ "▁K ü",
+ "▁а ле",
+ "▁ал е",
+ "▁L ub",
+ "▁Lu b",
+ "con current",
+ "izz ato",
+ "izza to",
+ "▁st ub",
+ "▁i e",
+ "▁ ie",
+ "▁' ./",
+ "▁'. /",
+ "co d",
+ "c od",
+ "▁intern acional",
+ "▁G las",
+ "▁Gl as",
+ "▁Gla s",
+ "▁m are",
+ "▁ma re",
+ "▁mar e",
+ "▁N eb",
+ "▁Ne b",
+ "▁G B",
+ "▁ GB",
+ "kw args",
+ "▁a ument",
+ "▁au ment",
+ "WI D",
+ "W ID",
+ "▁ро д",
+ "▁р од",
+ "▁ род",
+ "p unkt",
+ "▁G rad",
+ "▁Gr ad",
+ "▁Gra d",
+ "▁ Grad",
+ "S N",
+ "AM P",
+ "A MP",
+ "▁B orn",
+ "▁Bo rn",
+ "▁Bor n",
+ "▁Guer re",
+ "го тов",
+ "▁med io",
+ "▁medi o",
+ "Me d",
+ "M ed",
+ "su pp",
+ "sup p",
+ "s upp",
+ "act ual",
+ "drop down",
+ "▁ok tober",
+ "▁ ř",
+ "▁circ ular",
+ "▁cir cular",
+ "▁circul ar",
+ "▁s kin",
+ "▁sk in",
+ "▁ski n",
+ "▁em phas",
+ "▁emp has",
+ "▁го лов",
+ "▁голо в",
+ "▁p ue",
+ "▁pu e",
+ "▁inform ations",
+ "▁information s",
+ "▁Wolf gang",
+ "▁us eless",
+ "▁use less",
+ "и т",
+ "▁Jo an",
+ "▁б ор",
+ "▁бо р",
+ "▁ бор",
+ "▁G lad",
+ "▁Gl ad",
+ "▁Gla d",
+ "▁K now",
+ "▁Kn ow",
+ "▁Kno w",
+ "ké nt",
+ "k ént",
+ "sp eed",
+ "spe ed",
+ "▁Ke vin",
+ "un ft",
+ "▁ar qu",
+ "▁ arqu",
+ "▁C asa",
+ "▁Cas a",
+ "▁Ca sa",
+ "(. ..",
+ "( ...",
+ "▁rapid ly",
+ "▁pro ble",
+ "▁prob le",
+ "▁probl e",
+ "▁Ви кипеди",
+ "že n",
+ "ž en",
+ "▁N eben",
+ "▁Ne ben",
+ "▁Neb en",
+ "▁M eter",
+ "▁Me ter",
+ "▁Met er",
+ "Child ren",
+ "ce m",
+ "c em",
+ "ig os",
+ "igo s",
+ "aj u",
+ "a ju",
+ "▁Ret rie",
+ "▁H ell",
+ "▁He ll",
+ "▁Hel l",
+ "▁g ig",
+ "▁gi g",
+ "▁contro vers",
+ "▁z oom",
+ "▁zo om",
+ "▁zoo m",
+ "▁c ens",
+ "▁ce ns",
+ "▁alc uni",
+ "▁He ader",
+ "▁Head er",
+ "▁ Header",
+ "Me ta",
+ "Met a",
+ "M eta",
+ "Re quired",
+ "▁ин ститу",
+ "▁s kup",
+ "▁sk up",
+ "▁ing les",
+ "ég l",
+ "é gl",
+ "bi j",
+ "b ij",
+ "▁t ér",
+ "▁té r",
+ "▁com pag",
+ "▁comp ag",
+ "▁comm itted",
+ "▁commit ted",
+ "▁process ed",
+ "▁proc essed",
+ "▁proces sed",
+ "Lo wer",
+ "L ower",
+ "▁F oreign",
+ "▁For eign",
+ "▁Fore ign",
+ "▁ Foreign",
+ "▁s eq",
+ "▁se q",
+ "▁ seq",
+ "sheet s",
+ "she ets",
+ "▁F em",
+ "▁Fe m",
+ "ho z",
+ "h oz",
+ "in ks",
+ "ink s",
+ "▁k all",
+ "▁ka ll",
+ "▁kal l",
+ "vari ant",
+ "▁li bro",
+ "▁lib ro",
+ "▁cl icks",
+ "▁click s",
+ "▁cli cks",
+ "▁g obierno",
+ "ie gel",
+ "ieg el",
+ "мо го",
+ "м ого",
+ "ge me",
+ "gem e",
+ "g eme",
+ "▁t ower",
+ "▁to wer",
+ "▁par ish",
+ "▁T CP",
+ "▁l s",
+ "▁ ls",
+ "▁n ginx",
+ "▁ng inx",
+ "▁ nginx",
+ "Na N",
+ "▁D ir",
+ "▁Di r",
+ "▁ Dir",
+ "▁Begr iffe",
+ "▁Begriff e",
+ "ar ie",
+ "ari e",
+ "a rie",
+ "ím p",
+ "í mp",
+ "ic ios",
+ "ici os",
+ "icio s",
+ "i cios",
+ "▁sh aring",
+ "▁cin éma",
+ "be c",
+ "b ec",
+ "RE D",
+ "R ED",
+ "▁K ra",
+ "▁Kr a",
+ "ab ol",
+ "a bol",
+ "▁fl ux",
+ "▁flu x",
+ "▁exp ensive",
+ "▁су ще",
+ "▁` _",
+ "oc z",
+ "o cz",
+ "ли ст",
+ "▁acqu aint",
+ "▁w ise",
+ "▁wis e",
+ "▁ wise",
+ "▁pou voir",
+ "▁pouv oir",
+ "▁dev ant",
+ "▁moment um",
+ "im mer",
+ "imm er",
+ "▁C oupe",
+ "▁Cou pe",
+ "index Of",
+ "▁does nt",
+ "▁doesn t",
+ "▁за в",
+ "▁lic ense",
+ "▁ â",
+ "CS S",
+ "C SS",
+ "▁r ice",
+ "▁ric e",
+ "▁ri ce",
+ "▁ rice",
+ "Te am",
+ "▁a no",
+ "▁an o",
+ "▁ ano",
+ "li t",
+ "l it",
+ "▁mer ged",
+ "▁merge d",
+ "▁C ell",
+ "▁Ce ll",
+ "▁Cel l",
+ "▁ Cell",
+ "л л",
+ "bo y",
+ "b oy",
+ "as ts",
+ "ast s",
+ "▁s ell",
+ "▁se ll",
+ "▁sel l",
+ "▁gro ße",
+ "▁groß e",
+ "▁virt uel",
+ "▁virtue l",
+ "Can cel",
+ "▁s j",
+ "g ment",
+ ". <",
+ "ча й",
+ "i ë",
+ "ak h",
+ "a kh",
+ "iz ers",
+ "ize rs",
+ "izer s",
+ "pr it",
+ "p rit",
+ "▁T ib",
+ "▁Ti b",
+ "▁elabor ate",
+ "▁f é",
+ "▁м еди",
+ "▁ме ди",
+ "LENG TH",
+ "▁prim arily",
+ "▁sc ores",
+ "▁score s",
+ "▁carry ing",
+ "▁l ake",
+ "▁la ke",
+ "▁lak e",
+ "com pose",
+ "comp ose",
+ "compos e",
+ "▁Town ship",
+ "un ge",
+ "ung e",
+ "▁al berga",
+ "an ych",
+ "any ch",
+ "a nych",
+ "qu elle",
+ "que lle",
+ "quel le",
+ "q uelle",
+ "▁Ar k",
+ "▁p ris",
+ "▁pr is",
+ "▁pri s",
+ "▁v oll",
+ "▁vo ll",
+ "▁vol l",
+ "ш ли",
+ "Valid ation",
+ "▁ce ux",
+ "▁pop ulate",
+ "▁popula te",
+ "▁popul ate",
+ "\" \r",
+ "▁fem mes",
+ "▁femme s",
+ "AN G",
+ "A NG",
+ "▁Desp ite",
+ "вы е",
+ "в ые",
+ "is ke",
+ "isk e",
+ "i ske",
+ "zu g",
+ "z ug",
+ "на ча",
+ "▁h atten",
+ "▁hat ten",
+ "▁hatte n",
+ "IN SERT",
+ "Emp loyee",
+ "▁mo ments",
+ "▁moment s",
+ "▁mom ents",
+ "▁últ ima",
+ "▁h older",
+ "▁hold er",
+ "▁ho lder",
+ "▁hol der",
+ "▁ holder",
+ "bl ank",
+ "Col lections",
+ "Collection s",
+ "Collect ions",
+ "ath ers",
+ "ather s",
+ "a thers",
+ "▁g rade",
+ "▁gr ade",
+ "▁gra de",
+ "▁grad e",
+ "▁ grade",
+ "▁aff airs",
+ "▁affair s",
+ ".$ $",
+ ". $$",
+ "▁d elta",
+ "▁del ta",
+ "▁ delta",
+ "▁Jug end",
+ "▁españ ol",
+ "▁O UT",
+ "▁ OUT",
+ "▁mathemat ical",
+ "▁m ongo",
+ "▁mon go",
+ "▁Ф е",
+ "ul ing",
+ "uli ng",
+ "u ling",
+ "▁re volution",
+ "▁revol ution",
+ "▁c oin",
+ "▁co in",
+ "▁sub class",
+ "\" =>",
+ "äch e",
+ "ä che",
+ "▁p yg",
+ "▁py g",
+ "ща я",
+ "ill ery",
+ "ille ry",
+ "iller y",
+ "▁com enz",
+ "dep th",
+ "▁c él",
+ "▁re size",
+ "▁res ize",
+ "▁ resize",
+ "▁S ame",
+ "▁Sam e",
+ "▁Sa me",
+ "▁st rik",
+ "▁str ik",
+ "▁stri k",
+ "▁t ir",
+ "▁ti r",
+ "▁sc arc",
+ "▁scar c",
+ "▁M ember",
+ "▁Mem ber",
+ "▁ Member",
+ "sub scribe",
+ "ó ż",
+ "út bol",
+ "ex cept",
+ "▁dr iving",
+ "▁dri ving",
+ "▁driv ing",
+ "ki e",
+ "k ie",
+ "zo ny",
+ "zon y",
+ "z ony",
+ "ème s",
+ "è mes",
+ "Da vid",
+ "D avid",
+ "iss ant",
+ "issa nt",
+ "▁т ы",
+ "▁ ты",
+ "▁é lect",
+ "▁él ect",
+ "▁re name",
+ "▁r ename",
+ "▁ren ame",
+ "▁R unning",
+ "▁Run ning",
+ "▁ Running",
+ "▁inter faces",
+ "▁interface s",
+ "//////// ////////",
+ "▁Wal ker",
+ "▁Walk er",
+ "▁soci été",
+ "▁as ks",
+ "▁ask s",
+ "br id",
+ "b rid",
+ "▁je we",
+ "▁se ines",
+ "▁sein es",
+ "▁seine s",
+ "▁sei nes",
+ "▁ag ents",
+ "▁agent s",
+ "▁M Y",
+ "▁ MY",
+ "▁Law rence",
+ "de ss",
+ "des s",
+ "d ess",
+ "ie sen",
+ "ies en",
+ "iese n",
+ "i esen",
+ "▁людя х",
+ "прав и",
+ "пра ви",
+ "▁anc est",
+ "▁wel che",
+ "ra um",
+ "r aum",
+ "▁o rb",
+ "▁or b",
+ "▁ orb",
+ "sc al",
+ "s cal",
+ "▁L ear",
+ "▁Le ar",
+ "▁w ear",
+ "▁we ar",
+ "▁s lave",
+ "▁sl ave",
+ "▁sla ve",
+ "▁re named",
+ "▁ren amed",
+ "▁rename d",
+ "če n",
+ "č en",
+ "ma ste",
+ "mas te",
+ "m aste",
+ "ang les",
+ "angle s",
+ "▁Am érica",
+ "▁t i",
+ "▁ ti",
+ "▁dem sel",
+ "▁bene ath",
+ "bin ary",
+ "b inary",
+ "▁ed ición",
+ "▁kil omet",
+ "▁kilom et",
+ "ui ts",
+ "uit s",
+ "u its",
+ "▁cu atro",
+ "▁ent rance",
+ "▁entr ance",
+ "ond issement",
+ "▁b ag",
+ "▁ba g",
+ "▁ bag",
+ "▁Ar men",
+ "▁Arm en",
+ "ij o",
+ "i jo",
+ "▁L ors",
+ "▁Lo rs",
+ "▁Lor s",
+ "▁demsel ben",
+ "ê m",
+ "▁dis crete",
+ "▁prom inent",
+ "▁J ay",
+ "▁Ja y",
+ "de cor",
+ "dec or",
+ "D L",
+ "▁d í",
+ "St ruct",
+ "Str uct",
+ "▁P roduction",
+ "▁Produ ction",
+ "▁Product ion",
+ "th ey",
+ "the y",
+ "ar ius",
+ "ari us",
+ "sch nitt",
+ "▁C ou",
+ "▁Co u",
+ "▁l ex",
+ "▁le x",
+ "▁ lex",
+ "y outube",
+ "▁рабо та",
+ "st ation",
+ "sta tion",
+ "stat ion",
+ "se p",
+ "s ep",
+ "▁mi rror",
+ "▁mir ror",
+ "▁h its",
+ "▁hit s",
+ "▁hi ts",
+ "▁Be ck",
+ "at ically",
+ "atic ally",
+ "▁L az",
+ "▁La z",
+ "▁w inner",
+ "▁win ner",
+ "DE X",
+ "D EX",
+ "▁I NT",
+ "▁IN T",
+ "▁ INT",
+ "}^ {-",
+ "}^{ -",
+ "} ^{-",
+ "▁w egen",
+ "▁we gen",
+ "▁weg en",
+ "ma d",
+ "m ad",
+ "An gle",
+ "Ang le",
+ "zi ng",
+ "zin g",
+ "z ing",
+ "▁Bay ern",
+ "▁Bayer n",
+ "sa l",
+ "s al",
+ "äg er",
+ "ä ger",
+ "▁bus y",
+ "▁st ör",
+ "▁f olk",
+ "▁fol k",
+ "▁ folk",
+ "▁p rix",
+ "▁pr ix",
+ "▁pri x",
+ "▁al located",
+ "▁alloc ated",
+ "▁allocate d",
+ "▁p t",
+ "▁ pt",
+ "af fen",
+ "aff en",
+ "a ffen",
+ "cl uster",
+ "clus ter",
+ "▁com plement",
+ "▁comp lement",
+ "▁comple ment",
+ "▁compl ement",
+ "ár s",
+ "á rs",
+ "▁Amer ika",
+ "рі й",
+ "р ій",
+ "▁val ley",
+ "▁vall ey",
+ "▁valle y",
+ "▁ro oms",
+ "▁room s",
+ "▁ rooms",
+ "▁m oi",
+ "▁mo i",
+ ".\" ,",
+ ". \",",
+ ";; ;;",
+ "▁lo west",
+ "▁low est",
+ "no g",
+ "n og",
+ "▁land et",
+ "▁lan det",
+ "▁program me",
+ "ch io",
+ "chi o",
+ "▁W ährend",
+ "ánd ez",
+ "▁дол ж",
+ "▁o uv",
+ "▁ou v",
+ "▁ ouv",
+ "om ány",
+ "▁Википеди и",
+ "▁s ó",
+ "▁ele ktr",
+ "De sc",
+ "Des c",
+ "D esc",
+ "▁Be aut",
+ "▁Beau t",
+ "на р",
+ "н ар",
+ "▁мо же",
+ "▁мож е",
+ "P ierre",
+ "es ota",
+ "eso ta",
+ "▁oper ated",
+ "▁opera ted",
+ "▁operate d",
+ "▁f orte",
+ "▁for te",
+ "▁fort e",
+ "ри с",
+ "р ис",
+ "▁op position",
+ "▁opp osition",
+ "▁oppos ition",
+ "al ia",
+ "ali a",
+ "a lia",
+ "▁S yl",
+ "▁Sy l",
+ "get Name",
+ "ве ли",
+ "fi k",
+ "f ik",
+ "▁com prom",
+ "▁comp rom",
+ "▁compr om",
+ "▁Text View",
+ "▁ TextView",
+ "Sp ring",
+ "S pring",
+ "met adata",
+ "meta data",
+ "en gu",
+ "eng u",
+ "/ ,",
+ "▁car ri",
+ "is tol",
+ "ist ol",
+ "isto l",
+ "▁diag onal",
+ "li sta",
+ "list a",
+ "lis ta",
+ "l ista",
+ "iz en",
+ "ize n",
+ "i zen",
+ "▁re nde",
+ "▁r ende",
+ "▁ren de",
+ "▁rend e",
+ "gc c",
+ "g cc",
+ "be ck",
+ "bec k",
+ "li us",
+ "l ius",
+ "ir al",
+ "ira l",
+ "i ral",
+ "Resol ver",
+ "▁percent age",
+ "▁at tra",
+ "▁att ra",
+ "▁attr a",
+ "str ings",
+ "string s",
+ "wi ąz",
+ "od s",
+ "o ds",
+ "во лю",
+ "ę ż",
+ "▁news paper",
+ "▁newsp aper",
+ "im iter",
+ "imi ter",
+ "imit er",
+ "AB C",
+ "A BC",
+ "▁Man chester",
+ "[ {",
+ "Ag ent",
+ "Age nt",
+ "A gent",
+ "▁W or",
+ "▁Wo r",
+ "▁K ath",
+ "▁Kat h",
+ "▁Ka th",
+ "▁по ві",
+ "▁пов і",
+ "▁ent onces",
+ "▁n iveau",
+ "at ted",
+ "att ed",
+ "atte d",
+ "le arn",
+ "lear n",
+ "lea rn",
+ "at iques",
+ "ati ques",
+ "atique s",
+ "▁у би",
+ "▁qu indi",
+ "bin ding",
+ "bind ing",
+ "b inding",
+ "▁import ed",
+ "▁imp orted",
+ "▁H orn",
+ "▁Hor n",
+ "▁Ho rn",
+ "em berg",
+ "ember g",
+ "emb erg",
+ "com plex",
+ "comp lex",
+ "comple x",
+ "▁ne ural",
+ "▁neu ral",
+ "▁neur al",
+ "in formation",
+ "▁recogn ition",
+ "in gt",
+ "ing t",
+ "▁inhab itants",
+ "vu e",
+ "v ue",
+ "▁Be völker",
+ "▁cur ves",
+ "▁curve s",
+ "▁curv es",
+ "▁l eb",
+ "▁le b",
+ "▁ leb",
+ "ді й",
+ "д ій",
+ "▁s ow",
+ "▁so w",
+ "▁sent iment",
+ "P H",
+ "ra che",
+ "rac he",
+ "rach e",
+ "r ache",
+ "▁- (",
+ "▁ -(",
+ "▁e stable",
+ "▁est able",
+ "▁es table",
+ "▁estab le",
+ "▁esta ble",
+ "▁Ferd inand",
+ "▁é crit",
+ "▁éc rit",
+ "▁prime iro",
+ "▁t ex",
+ "▁te x",
+ "▁ tex",
+ "▁inter mediate",
+ "ve rage",
+ "ver age",
+ "vera ge",
+ "ib us",
+ "i bus",
+ "▁s erves",
+ "▁ser ves",
+ "▁serv es",
+ "▁serve s",
+ "iv as",
+ "iva s",
+ "i vas",
+ "▁b ru",
+ "▁br u",
+ "▁ bru",
+ "▁l um",
+ "▁lu m",
+ "att ice",
+ "atti ce",
+ "ч ный",
+ "▁D res",
+ "▁Dr es",
+ "▁Dre s",
+ "▁v ideos",
+ "▁video s",
+ "▁vide os",
+ "d uration",
+ "▁a bit",
+ "▁ab it",
+ "▁e gg",
+ "▁eg g",
+ "ograph ical",
+ "ographic al",
+ "al ph",
+ "ST ATE",
+ "STAT E",
+ "▁па ра",
+ "▁пар а",
+ "▁ пара",
+ "re ading",
+ "read ing",
+ "rea ding",
+ "▁veh icle",
+ "▁fort une",
+ "ult ats",
+ "▁St oria",
+ "▁Sto ria",
+ "mi dt",
+ "mid t",
+ "łą cz",
+ "▁Mem orial",
+ "▁v as",
+ "▁va s",
+ "▁ vas",
+ "▁з ан",
+ "▁за н",
+ "▁ зан",
+ "▁ut ility",
+ "▁util ity",
+ "▁ob sc",
+ "▁obs c",
+ "▁rel acion",
+ "▁rela cion",
+ "▁relac ion",
+ "▁run at",
+ "▁ru nat",
+ "Re lease",
+ "ta ke",
+ "t ake",
+ "▁O liver",
+ "▁Ol iver",
+ "▁Oliv er",
+ "▁S id",
+ "▁Si d",
+ "ul os",
+ "ulo s",
+ "u los",
+ "▁G arc",
+ "▁Gar c",
+ "▁Ga rc",
+ "▁роз та",
+ "▁S ak",
+ "▁Sa k",
+ "P y",
+ "führ t",
+ "f ührt",
+ "▁tra bal",
+ "▁trab al",
+ "* {",
+ "▁z es",
+ "▁ze s",
+ "▁ zes",
+ "▁sz ere",
+ "▁szer e",
+ "▁sze re",
+ "▁v arios",
+ "▁var ios",
+ "▁vari os",
+ "▁va rios",
+ "▁o tra",
+ "▁ot ra",
+ "▁e val",
+ "▁ev al",
+ "▁ eval",
+ "▁situ é",
+ "▁sit ué",
+ "▁w ounded",
+ "▁Vin cent",
+ "▁вико ри",
+ "▁en code",
+ "▁enc ode",
+ "▁ encode",
+ "Mod al",
+ "Mo dal",
+ "▁f orb",
+ "▁for b",
+ "▁fo rb",
+ "▁dynam ics",
+ "▁dynamic s",
+ "▁de pos",
+ "▁dep os",
+ "ar de",
+ "ard e",
+ "▁street s",
+ "▁stre ets",
+ "▁K omm",
+ "▁Kom m",
+ "▁Ko mm",
+ "=$ (",
+ "= $(",
+ "▁по вер",
+ "▁пов ер",
+ "▁пове р",
+ "▁d ois",
+ "▁do is",
+ "▁doi s",
+ "▁v itt",
+ "▁vi tt",
+ "▁vit t",
+ "▁automat isch",
+ "▁re load",
+ "▁ reload",
+ "▁Ver walt",
+ "ber o",
+ "be ro",
+ "b ero",
+ "▁h ub",
+ "▁hu b",
+ "▁m os",
+ "▁mo s",
+ "▁ mos",
+ "▁t utto",
+ "▁tu tto",
+ "▁tut to",
+ "▁Freder ick",
+ "ło w",
+ "ł ow",
+ "ant ages",
+ "anta ges",
+ "antage s",
+ "aqu e",
+ "a que",
+ "pa per",
+ "p aper",
+ "▁ein ige",
+ "`) ,",
+ "` ),",
+ "d j",
+ "▁P le",
+ "▁Pl e",
+ "▁% ,",
+ "▁ %,",
+ "▁B itmap",
+ "▁Bit map",
+ "▁ Bitmap",
+ "▁friend ly",
+ "▁tr uly",
+ "▁st roke",
+ "▁str oke",
+ "▁stro ke",
+ "▁ stroke",
+ "ro ph",
+ "rop h",
+ "r oph",
+ "▁en gl",
+ "▁eng l",
+ "▁ engl",
+ "▁c off",
+ "▁co ff",
+ "▁d ust",
+ "▁du st",
+ "▁dus t",
+ "▁Jah res",
+ "▁Jahr es",
+ "▁Jahre s",
+ "pp i",
+ "p pi",
+ "▁w ys",
+ "▁wy s",
+ "fa ctor",
+ "fact or",
+ "fac tor",
+ "f actor",
+ "sch luss",
+ "▁дере вня",
+ "▁дерев ня",
+ "▁P ast",
+ "▁Pa st",
+ "▁Pas t",
+ "▁до ма",
+ "CO M",
+ "C OM",
+ "▁pu eden",
+ "▁puede n",
+ "▁pue den",
+ "▁g ift",
+ "▁gi ft",
+ "▁G la",
+ "▁Gl a",
+ "▁trigger ed",
+ "él y",
+ "é ly",
+ "ül és",
+ "ü lés",
+ "▁O liv",
+ "▁Ol iv",
+ "▁ver so",
+ "▁vers o",
+ "▁ verso",
+ "▁l le",
+ "▁ll e",
+ "▁ lle",
+ "▁G li",
+ "▁Gl i",
+ "▁L td",
+ "o a",
+ "▁territ orio",
+ "ord re",
+ "▁de ck",
+ "▁dec k",
+ "▁ deck",
+ "dr a",
+ "d ra",
+ "as zt",
+ "asz t",
+ "▁concern ing",
+ "▁Add itionally",
+ "▁kter é",
+ "▁g rund",
+ "▁gr und",
+ "▁gru nd",
+ "▁ grund",
+ "▁G est",
+ "▁Ge st",
+ "▁Ges t",
+ "▁ Gest",
+ "▁mis under",
+ "pr et",
+ "pre t",
+ "p ret",
+ "── ──",
+ "▁re putation",
+ "zi a",
+ "z ia",
+ "▁у спе",
+ "▁ус пе",
+ "▁esc aped",
+ "▁escape d",
+ "▁P rag",
+ "▁Pr ag",
+ "▁Pra g",
+ "per form",
+ "▁a ustral",
+ "▁aust ral",
+ "▁V ater",
+ "▁Va ter",
+ "ча с",
+ "▁r aces",
+ "▁ra ces",
+ "▁race s",
+ "▁rac es",
+ "▁By te",
+ "▁ Byte",
+ "Ma sk",
+ "M ask",
+ "▁Ter rit",
+ "▁Terr it",
+ "ст ю",
+ "▁V oci",
+ "▁Vo ci",
+ "▁Fich ier",
+ "▁Насе лення",
+ "▁Unter scheidung",
+ "te enth",
+ "teen th",
+ "▁pi lot",
+ "▁pil ot",
+ "▁j i",
+ "▁ ji",
+ "▁дву х",
+ "▁orient ation",
+ "▁ orientation",
+ "ind re",
+ "▁D ort",
+ "▁Do rt",
+ "▁Dor t",
+ "ça s",
+ "ç as",
+ "п ли",
+ "▁re action",
+ "▁react ion",
+ "▁cons isting",
+ "▁consist ing",
+ "▁fer ro",
+ "ти сти",
+ "ya rd",
+ "yar d",
+ "y ard",
+ "▁с ві",
+ "▁interpret ation",
+ "i ą",
+ "ra h",
+ "r ah",
+ "▁f and",
+ "▁fa nd",
+ "▁fan d",
+ "Pub lic",
+ "P ublic",
+ "▁un iverse",
+ "▁univers e",
+ "▁ret ir",
+ "▁cons cious",
+ "ar qu",
+ "▁w aste",
+ "▁was te",
+ "▁wa ste",
+ "▁B ib",
+ "▁Bi b",
+ "ycler View",
+ "▁list ening",
+ "▁listen ing",
+ "▁liste ning",
+ "gle ich",
+ "g leich",
+ "nie js",
+ "niej s",
+ "▁cor relation",
+ "▁correl ation",
+ "▁corre lation",
+ "▁rece iver",
+ "▁receive r",
+ "▁у да",
+ "▁cour age",
+ "▁cou rage",
+ "uch s",
+ "uc hs",
+ "u chs",
+ "fa ss",
+ "fas s",
+ "f ass",
+ "▁ch unk",
+ "▁ chunk",
+ "▁An fang",
+ "▁gro ßen",
+ "▁große n",
+ "▁groß en",
+ "cont inue",
+ "continu e",
+ "▁Warsza wa",
+ "h é",
+ "i y",
+ "iv ement",
+ "ive ment",
+ "i vement",
+ "▁ α",
+ "▁ex posed",
+ "▁exp osed",
+ "▁expos ed",
+ "▁expose d",
+ "▁z ahl",
+ "▁za hl",
+ "▁ zahl",
+ "▁sa cr",
+ "▁sac r",
+ "▁Lo oks",
+ "▁Look s",
+ "▁e ager",
+ "en ten",
+ "ent en",
+ "ente n",
+ "e nten",
+ "C ursor",
+ "/ _",
+ "ix a",
+ "i xa",
+ "ре ла",
+ "зна ча",
+ "з нача",
+ "▁фамили ей",
+ "▁ar gent",
+ "▁arg ent",
+ "▁ argent",
+ "▁An ders",
+ "▁And ers",
+ "œuv re",
+ "▁I sa",
+ "▁Is a",
+ "мен та",
+ "мент а",
+ "▁ad vers",
+ "▁adv ers",
+ "ri ction",
+ "ric tion",
+ "rict ion",
+ "r iction",
+ "G P",
+ "▁п ісля",
+ "▁pre serve",
+ "▁pres erve",
+ "▁G arden",
+ "▁Gar den",
+ "▁Gard en",
+ "R ate",
+ "ap rès",
+ "a près",
+ "▁read able",
+ "in du",
+ "ind u",
+ "▁s kill",
+ "▁sk ill",
+ "▁ski ll",
+ "▁hel ping",
+ "▁help ing",
+ "ograph ique",
+ "cl ing",
+ "cli ng",
+ "c ling",
+ "olog ist",
+ "▁Fil ter",
+ "▁ Filter",
+ "▁f inger",
+ "▁fin ger",
+ "▁V all",
+ "▁Val l",
+ "▁Va ll",
+ "▁Pol ish",
+ "▁Po lish",
+ "l g",
+ "▁Famil ien",
+ "▁Familie n",
+ "▁w aters",
+ "▁water s",
+ "▁wa ters",
+ "▁wat ers",
+ "▁pse ud",
+ "az a",
+ "a za",
+ "_ )",
+ "AR Y",
+ "A RY",
+ "▁с реди",
+ "▁сред и",
+ "▁сре ди",
+ "▁M ust",
+ "▁Mus t",
+ "▁Mu st",
+ "▁B od",
+ "▁Bo d",
+ "an on",
+ "ano n",
+ "a non",
+ "▁l ado",
+ "▁la do",
+ "▁lad o",
+ "▁t ight",
+ "im en",
+ "ime n",
+ "i men",
+ "ap pen",
+ "app en",
+ "appe n",
+ "a ppen",
+ "fr ames",
+ "frame s",
+ "fra mes",
+ "fram es",
+ "in gers",
+ "ing ers",
+ "inger s",
+ "inge rs",
+ "▁CO VID",
+ "▁з і",
+ "▁ зі",
+ "▁с ве",
+ "▁ц ь",
+ "▁ ць",
+ "▁L eft",
+ "▁Le ft",
+ "▁ Left",
+ "]] ;",
+ "] ];",
+ "ч ь",
+ "фи ка",
+ "▁с ло",
+ "▁ сло",
+ "▁п і",
+ "▁ пі",
+ "▁ex iste",
+ "▁exist e",
+ "▁Atl antic",
+ "▁maintain ed",
+ "▁ir re",
+ "▁an née",
+ "▁ann ée",
+ "▁ année",
+ "▁comm ented",
+ "▁comment ed",
+ "ве ро",
+ "вер о",
+ "ber ta",
+ "bert a",
+ "b erta",
+ "▁L ad",
+ "▁La d",
+ "▁U pon",
+ "▁Up on",
+ "▁p ause",
+ "▁pa use",
+ "▁pau se",
+ "mi ll",
+ "mil l",
+ "m ill",
+ "op ter",
+ "opt er",
+ "U K",
+ "ре с",
+ "р ес",
+ "нцикло педи",
+ "▁along side",
+ "▁ro bot",
+ "▁rob ot",
+ "▁f ert",
+ "▁fe rt",
+ "▁fer t",
+ "▁ fert",
+ "▁m oy",
+ "▁mo y",
+ "▁a de",
+ "▁ad e",
+ "▁ ade",
+ "Map per",
+ "Mapp er",
+ "Ma pper",
+ "M apper",
+ ")- >",
+ ") ->",
+ "ig ua",
+ "igu a",
+ "ét ique",
+ "т ка",
+ "al ias",
+ "ali as",
+ "alia s",
+ "a lias",
+ "▁о ри",
+ "▁ор и",
+ "▁M agn",
+ "▁Ma gn",
+ "▁Mag n",
+ "▁gehör te",
+ "▁gehört e",
+ "im b",
+ "i mb",
+ ")} {\\",
+ ")}{ \\",
+ ") }{\\",
+ "▁Wikip édia",
+ "▁u rs",
+ "▁ur s",
+ "▁ urs",
+ "▁e nde",
+ "▁en de",
+ "▁end e",
+ "▁ ende",
+ "le b",
+ "l eb",
+ "▁G C",
+ "▁ GC",
+ "H ol",
+ "an cing",
+ "anc ing",
+ "anci ng",
+ "Un ion",
+ "Uni on",
+ "▁ten ía",
+ "T T",
+ "▁e state",
+ "▁est ate",
+ "▁esta te",
+ "▁estat e",
+ "h á",
+ "▁по лі",
+ "▁пол і",
+ "ul tan",
+ "ult an",
+ "▁H ockey",
+ "ul se",
+ "uls e",
+ "▁cho ices",
+ "▁choice s",
+ "sch er",
+ "sc her",
+ "sche r",
+ "s cher",
+ "▁[ ],",
+ "▁[] ,",
+ "▁pot entially",
+ "▁potential ly",
+ "▁Ü bers",
+ "▁Über s",
+ "▁ad mit",
+ "▁adm it",
+ "Com ment",
+ "Comm ent",
+ "ст я",
+ "с тя",
+ "▁V ien",
+ "▁Vi en",
+ "▁Vie n",
+ "▁ц і",
+ "▁ ці",
+ "▁per mut",
+ "▁perm ut",
+ "c gi",
+ "▁cr ít",
+ "Con sole",
+ "Cons ole",
+ "ct ic",
+ "▁ok res",
+ "aw k",
+ "foot ball",
+ "ou est",
+ "o uest",
+ "CT YPE",
+ "C TYPE",
+ "olog ique",
+ "▁const it",
+ "▁cons tit",
+ "▁inter ests",
+ "▁interest s",
+ "▁Pro gress",
+ "▁ Progress",
+ "▁M enu",
+ "▁Me nu",
+ "▁Men u",
+ "▁ Menu",
+ "▁tak é",
+ "▁ta ké",
+ "▁As ian",
+ "▁Asia n",
+ "▁за щи",
+ "▁young er",
+ "▁w ished",
+ "▁wish ed",
+ "▁wis hed",
+ "▁S ort",
+ "▁So rt",
+ "▁Sor t",
+ "▁ Sort",
+ "▁aud ience",
+ "▁audi ence",
+ "am ba",
+ "amb a",
+ "▁gehör t",
+ "▁K ansas",
+ "ya ume",
+ "▁Prof essional",
+ "â ce",
+ "▁f atto",
+ "▁fa tto",
+ "▁fat to",
+ "to d",
+ "t od",
+ "▁data sets",
+ "▁datas ets",
+ "▁dataset s",
+ "▁f are",
+ "▁far e",
+ "▁fa re",
+ "▁ fare",
+ "▁w aves",
+ "▁wave s",
+ "▁wa ves",
+ "~ /",
+ "▁measure ment",
+ "▁w ol",
+ "▁wo l",
+ "▁ wol",
+ "ind ust",
+ "indu st",
+ "▁strugg ling",
+ "▁pull ed",
+ "▁pul led",
+ "▁car atter",
+ "▁Ex terne",
+ "▁Ext erne",
+ "▁Extern e",
+ "▁дей стви",
+ "cn t",
+ "c nt",
+ "li ches",
+ "lic hes",
+ "lich es",
+ "liche s",
+ "▁Pos sible",
+ "▁Poss ible",
+ "▁fa ced",
+ "▁face d",
+ "▁fac ed",
+ "▁hypoth esis",
+ "▁kil om",
+ "▁n är",
+ "▁nä r",
+ "bo olean",
+ "P Y",
+ "am pa",
+ "amp a",
+ "▁k iss",
+ "▁ki ss",
+ "▁kis s",
+ "▁as tero",
+ "▁ast ero",
+ "▁neg li",
+ "am ents",
+ "ament s",
+ "amen ts",
+ "a ments",
+ "▁S tu",
+ "▁St u",
+ "at ó",
+ "a tó",
+ "▁Const itution",
+ "▁inter pol",
+ "▁Un able",
+ "▁Una ble",
+ "▁p is",
+ "▁pi s",
+ "▁ pis",
+ "▁p arc",
+ "▁par c",
+ "▁pa rc",
+ "\"] )",
+ "\" ])",
+ "ple r",
+ "pl er",
+ "p ler",
+ "▁aut ory",
+ "▁auto ry",
+ "▁autor y",
+ "▁alg unos",
+ "yw na",
+ "}) )",
+ "} ))",
+ "▁f alls",
+ "▁fall s",
+ "▁fal ls",
+ "▁ falls",
+ "▁é quip",
+ "▁e mit",
+ "▁em it",
+ "▁ emit",
+ "▁pro fil",
+ "▁prof il",
+ "ge ts",
+ "get s",
+ "g ets",
+ "ф о",
+ "▁Milit ary",
+ "▁nombre ux",
+ "oc t",
+ "o ct",
+ "Re place",
+ "Rep lace",
+ "▁se asons",
+ "▁season s",
+ "▁ch âteau",
+ "▁type of",
+ "▁ typeof",
+ "po lit",
+ "pol it",
+ "p olit",
+ "▁r and",
+ "▁ra nd",
+ "▁ran d",
+ "▁ rand",
+ "▁qu ar",
+ "▁erst mals",
+ "си ни",
+ "▁pay load",
+ "▁ payload",
+ "П о",
+ "кі н",
+ "к ін",
+ "re po",
+ "rep o",
+ "▁P av",
+ "▁Pa v",
+ "Sc ore",
+ "S core",
+ "er ves",
+ "erv es",
+ "erve s",
+ "▁soll te",
+ "▁мі ж",
+ "éb ec",
+ "é bec",
+ "▁c lip",
+ "▁cl ip",
+ "▁cli p",
+ "▁ clip",
+ "▁N ice",
+ "▁Nic e",
+ "▁Ni ce",
+ "▁n eben",
+ "▁ne ben",
+ "▁ass ass",
+ "it ories",
+ "ito ries",
+ "itor ies",
+ "itori es",
+ "▁un ity",
+ "▁unit y",
+ "▁ unity",
+ "▁е н",
+ "▁ ен",
+ "▁Inst itut",
+ "▁Instit ut",
+ "▁ Institut",
+ "▁intern ationale",
+ "▁international e",
+ "▁на ук",
+ "▁нау к",
+ "▁com and",
+ "▁kle ine",
+ "▁klein e",
+ "▁adj acent",
+ "▁deliver ed",
+ "▁ш е",
+ "▁ ше",
+ "зе м",
+ "з ем",
+ "▁c ot",
+ "▁co t",
+ "▁ cot",
+ "vis ual",
+ "ва ет",
+ "▁C ensus",
+ "\\ _",
+ "▁territ ory",
+ "чи л",
+ "ч ил",
+ "ч ные",
+ "fl utter",
+ "Did Load",
+ "Document s",
+ "Doc uments",
+ "▁d ob",
+ "▁do b",
+ "▁ dob",
+ "Br e",
+ "B re",
+ "an imate",
+ "ani mate",
+ "anim ate",
+ "▁b iz",
+ "▁bi z",
+ "▁b ata",
+ "▁ba ta",
+ "▁bat a",
+ "▁S U",
+ "▁ SU",
+ "es o",
+ "e so",
+ "▁p riority",
+ "▁prior ity",
+ "vá n",
+ "v án",
+ "ir as",
+ "ira s",
+ "i ras",
+ "▁char ged",
+ "▁charge d",
+ "▁charg ed",
+ "▁M icro",
+ "▁Mi cro",
+ "▁Mic ro",
+ "at oire",
+ "ato ire",
+ "a toire",
+ "че р",
+ "ч ер",
+ "ab ad",
+ "aba d",
+ "a bad",
+ "ur u",
+ "u ru",
+ "▁v š",
+ "dir e",
+ "di re",
+ "d ire",
+ "▁Tw itter",
+ "▁м ето",
+ "▁ме то",
+ "▁мет о",
+ "). .",
+ ") ..",
+ "▁Ц ент",
+ "▁ent wick",
+ "▁M ind",
+ "▁Min d",
+ "▁Mi nd",
+ "▁ф унк",
+ "F uture",
+ "ls t",
+ "l st",
+ "ło ż",
+ "fl i",
+ "f li",
+ "t ensor",
+ "▁top ology",
+ "▁ar te",
+ "▁art e",
+ "▁ arte",
+ "ER T",
+ "E RT",
+ "▁var iance",
+ "▁vari ance",
+ "Im ages",
+ "Image s",
+ "▁( @",
+ "▁ (@",
+ "Array List",
+ "O C",
+ "▁Де мо",
+ "auc oup",
+ "▁de notes",
+ "▁den otes",
+ "▁denote s",
+ "im on",
+ "imo n",
+ "i mon",
+ "њ и",
+ "▁Prz yp",
+ "▁Z ag",
+ "▁Za g",
+ "▁ди ре",
+ "▁Similar ly",
+ "б ро",
+ "▁mil itaire",
+ "▁milit aire",
+ "▁т ому",
+ "▁то му",
+ "▁том у",
+ "▁ тому",
+ "▁John ny",
+ "▁Мекси ку",
+ "ћ а",
+ "Su pp",
+ "S upp",
+ "▁jun ior",
+ "▁junio r",
+ "▁juni or",
+ "ol tre",
+ "olt re",
+ "o ltre",
+ "▁Мо ск",
+ "▁Мос к",
+ "▁adm itted",
+ "▁admit ted",
+ "▁relig ios",
+ "зя й",
+ "е го",
+ "▁t ears",
+ "▁te ars",
+ "▁tea rs",
+ "in go",
+ "ing o",
+ "od u",
+ "o du",
+ "iv eness",
+ "ive ness",
+ "iven ess",
+ "▁l ogo",
+ "▁lo go",
+ "▁log o",
+ "▁ logo",
+ "▁últ imo",
+ "▁al iment",
+ "▁ali ment",
+ "▁U ITableView",
+ "▁ UITableView",
+ ") !",
+ "▁n j",
+ "le tte",
+ "let te",
+ "lett e",
+ "l ette",
+ "▁res ident",
+ "▁resid ent",
+ "▁term ine",
+ "▁ter mine",
+ "▁termin e",
+ "▁у же",
+ "▁С те",
+ "▁Ст е",
+ "off ice",
+ "▁c arte",
+ "▁car te",
+ "▁cart e",
+ "▁li vre",
+ "▁liv re",
+ "▁Мо сков",
+ "▁Мос ков",
+ "▁Моск ов",
+ "▁e lections",
+ "▁elect ions",
+ "▁ele ctions",
+ "▁election s",
+ "зи ден",
+ "Tr igger",
+ "▁Ben jamin",
+ "add Class",
+ "ско г",
+ "▁Ob servable",
+ "▁Observ able",
+ "▁ Observable",
+ "Cl a",
+ "C la",
+ "gem ein",
+ "geme in",
+ "g emein",
+ "▁con sent",
+ "▁cons ent",
+ "▁conse nt",
+ "в ри",
+ "▁un fold",
+ "▁unf old",
+ "▁govern or",
+ "▁gover nor",
+ "▁governo r",
+ "на л",
+ "н ал",
+ "▁t oda",
+ "▁to da",
+ "▁tod a",
+ "Rem ote",
+ "ar ias",
+ "ari as",
+ "aria s",
+ "a rias",
+ "▁in stal",
+ "▁inst al",
+ "▁ins tal",
+ "fix ed",
+ "f ixed",
+ "▁dec ay",
+ "▁де рев",
+ "▁дере в",
+ "xy z",
+ "x yz",
+ "▁D ATE",
+ "▁DA TE",
+ "▁DAT E",
+ "▁ DATE",
+ "im ar",
+ "ima r",
+ "i mar",
+ "nt il",
+ "n til",
+ "▁start up",
+ "al ion",
+ "ali on",
+ "▁ko lej",
+ "▁kol ej",
+ "▁kole j",
+ "ci os",
+ "cio s",
+ "c ios",
+ "▁r anges",
+ "▁range s",
+ "▁ran ges",
+ "▁rang es",
+ "▁stup id",
+ "▁implement ations",
+ "▁implementation s",
+ "▁r m",
+ "▁ rm",
+ "én ek",
+ "é nek",
+ "▁g cc",
+ "▁ gcc",
+ "▁sc ène",
+ "N avigation",
+ "▁ ",
+ "▁к ан",
+ "▁ка н",
+ "▁ кан",
+ "▁town s",
+ "User name",
+ "Us ername",
+ "▁ф е",
+ "▁ фе",
+ "▁le aders",
+ "▁lead ers",
+ "▁leader s",
+ "oi t",
+ "o it",
+ "w är",
+ "▁d ummy",
+ "▁ass istant",
+ "▁assist ant",
+ "{$ \\",
+ "{ $\\",
+ "бі р",
+ "б ір",
+ "▁r oy",
+ "▁ro y",
+ "▁ roy",
+ "▁L ayout",
+ "▁ Layout",
+ "▁J ung",
+ "▁Ju ng",
+ "▁Jun g",
+ "Line s",
+ "Lin es",
+ "Li nes",
+ "L ines",
+ "▁Hol land",
+ "по р",
+ "п ор",
+ "▁Г ри",
+ "▁B ened",
+ "▁Be ned",
+ "▁Ben ed",
+ "▁П од",
+ "▁По д",
+ "xl s",
+ "x ls",
+ "▁G ol",
+ "▁Go l",
+ "▁Al eks",
+ "▁Ale ks",
+ "▁ej emplo",
+ "▁se zon",
+ "ar ding",
+ "ard ing",
+ "ardi ng",
+ "ardin g",
+ "foot note",
+ "▁Cong rès",
+ "re fer",
+ "ref er",
+ "ска та",
+ "с ката",
+ "Iter ator",
+ "▁our selves",
+ "▁M ic",
+ "▁Mi c",
+ "▁c ódigo",
+ "▁пло ща",
+ "▁\\ $",
+ "▁Char lie",
+ "No des",
+ "Node s",
+ "N odes",
+ "▁p uzz",
+ "▁pu zz",
+ "▁Ident ifier",
+ "▁ Identifier",
+ "▁fl utter",
+ "▁ flutter",
+ "▁pr ü",
+ "▁ prü",
+ "▁o rt",
+ "▁or t",
+ "▁ ort",
+ "▁C ort",
+ "▁Cor t",
+ "▁Co rt",
+ "astic search",
+ "▁С вя",
+ "▁B ull",
+ "▁Bu ll",
+ "▁Bul l",
+ "ud em",
+ "ude m",
+ "u dem",
+ "▁ap parent",
+ "▁appar ent",
+ ":- -",
+ ": --",
+ "▁Х ар",
+ "▁Ха р",
+ "▁L ap",
+ "▁La p",
+ "▁com port",
+ "▁comp ort",
+ "mat ically",
+ "m atically",
+ "▁cu rios",
+ "▁cur ios",
+ "▁мо жет",
+ "▁мож ет",
+ "▁може т",
+ "▁B h",
+ "ap ping",
+ "app ing",
+ "a pping",
+ "▁b asketball",
+ "▁basket ball",
+ "ze tek",
+ "zet ek",
+ "▁r unt",
+ "▁run t",
+ "▁ru nt",
+ "▁Mil an",
+ "▁Mi lan",
+ "fe ction",
+ "fect ion",
+ "f ection",
+ "rí a",
+ "r ía",
+ "▁K in",
+ "▁Ki n",
+ "▁s lower",
+ "▁sl ower",
+ "▁slow er",
+ "▁slo wer",
+ "bo th",
+ "bot h",
+ "b oth",
+ "▁Inst ituto",
+ "▁Instit uto",
+ "▁Institut o",
+ "▁Histor ical",
+ "▁Historic al",
+ "▁równ ież",
+ "mat ches",
+ "match es",
+ "yc i",
+ "y ci",
+ "▁esp èce",
+ "▁Schwe izer",
+ "▁Schweiz er",
+ "N T",
+ "S F",
+ "ac ia",
+ "aci a",
+ "a cia",
+ "for ge",
+ "f orge",
+ "Point s",
+ "Po ints",
+ "num bers",
+ "number s",
+ "▁f alling",
+ "▁fall ing",
+ "▁fal ling",
+ "▁inherit ance",
+ "▁Er st",
+ "▁custom ers",
+ "▁customer s",
+ "▁a ctu",
+ "▁act u",
+ "▁ac tu",
+ "▁m igration",
+ "▁migr ation",
+ "\\ '",
+ "Pl an",
+ "P lan",
+ "M r",
+ "ot hy",
+ "oth y",
+ "o thy",
+ "▁up grad",
+ "би ра",
+ "▁O ffic",
+ "▁Of fic",
+ "▁Off ic",
+ "▁W ait",
+ "▁Wa it",
+ "▁ Wait",
+ "▁to ler",
+ "ar don",
+ "ard on",
+ "ardo n",
+ "▁s lide",
+ "▁sl ide",
+ "▁sli de",
+ "▁ slide",
+ ") _",
+ "▁ста в",
+ "▁ став",
+ "▁nu clear",
+ "▁nuc lear",
+ "▁nucle ar",
+ "▁B il",
+ "▁Bi l",
+ "ow ner",
+ "own er",
+ "o wner",
+ "▁Har ris",
+ "▁Harr is",
+ "In formation",
+ "▁p ó",
+ "▁вклю ча",
+ "▁nu ovo",
+ "▁C av",
+ "▁Ca v",
+ "▁De scri",
+ "▁Des cri",
+ "▁а к",
+ "ód zt",
+ "▁react js",
+ "▁Ad ams",
+ "▁Adam s",
+ "▁Ada ms",
+ "▁Altern atively",
+ "ст рук",
+ "стру к",
+ "стр ук",
+ ")` ,",
+ ") `,",
+ "sub string",
+ "subst ring",
+ "substr ing",
+ "▁mass ive",
+ "▁heav ily",
+ "▁се зо",
+ "▁сез о",
+ "▁A na",
+ "▁An a",
+ "▁v ale",
+ "▁val e",
+ "▁va le",
+ "Pa d",
+ "P ad",
+ "▁E ither",
+ "▁r s",
+ "▁ rs",
+ "an che",
+ "anc he",
+ "anch e",
+ "▁up loaded",
+ "▁upload ed",
+ "▁( /",
+ "▁ (/",
+ "▁с пор",
+ "▁спо р",
+ "▁сп ор",
+ "▁redu ction",
+ "▁Tok yo",
+ "gr en",
+ "gre n",
+ "g ren",
+ "▁m igli",
+ "▁mig li",
+ "▁iter ator",
+ "▁ iterator",
+ "st av",
+ "sta v",
+ "▁support ing",
+ "▁ö sterreich",
+ "▁NS Log",
+ "ist iques",
+ "isti ques",
+ "istique s",
+ "ri min",
+ "rim in",
+ "r imin",
+ "MO DE",
+ "}} }\\",
+ "}}} \\",
+ "} }}\\",
+ "▁exp los",
+ "▁expl os",
+ "▁explo s",
+ "от е",
+ "о те",
+ "▁( „",
+ "Sa l",
+ "S al",
+ "▁simple st",
+ "▁simpl est",
+ "▁gi à",
+ "▁та н",
+ "▁т ан",
+ "▁ тан",
+ "▁c yl",
+ "▁cy l",
+ "bi r",
+ "b ir",
+ "▁measure ments",
+ "▁measurement s",
+ "Create d",
+ "Cre ated",
+ "er ek",
+ "ere k",
+ "e rek",
+ "look up",
+ "w irtschaft",
+ "▁В оло",
+ "▁Во ло",
+ "▁Вол о",
+ "ti mer",
+ "time r",
+ "tim er",
+ "t imer",
+ "de rr",
+ "der r",
+ "d err",
+ "▁ст ала",
+ "▁ста ла",
+ "▁стал а",
+ "▁sc enes",
+ "▁scen es",
+ "▁scene s",
+ "▁per su",
+ "▁pers u",
+ "li est",
+ "lie st",
+ "lies t",
+ "l iest",
+ "▁sch edule",
+ "▁sched ule",
+ "ta l",
+ "t al",
+ "ле но",
+ "лен о",
+ "▁pain ting",
+ "▁paint ing",
+ "▁impro vement",
+ "▁improve ment",
+ "▁improv ement",
+ "so ftware",
+ "soft ware",
+ "▁govern o",
+ "▁gover no",
+ "▁H ir",
+ "▁Hi r",
+ "Exec ution",
+ "▁Ok ay",
+ "Pro p",
+ "Pr op",
+ "P rop",
+ "lo ster",
+ "los ter",
+ "lost er",
+ "l oster",
+ "ніципа лі",
+ "▁peu vent",
+ "ol u",
+ "o lu",
+ "▁Ф а",
+ "roll o",
+ "rol lo",
+ "▁ко ло",
+ "▁к оло",
+ "▁ коло",
+ "▁car rière",
+ "▁carri ère",
+ "▁t oggle",
+ "▁tog gle",
+ "▁togg le",
+ "▁ toggle",
+ "▁( $\\",
+ "▁($ \\",
+ "▁aggreg ate",
+ "▁Б і",
+ "text area",
+ "O k",
+ "it to",
+ "itt o",
+ "i tto",
+ "▁s tim",
+ "▁st im",
+ "▁recurs ion",
+ "▁Feder ation",
+ ")_ {",
+ ") _{",
+ "ate gor",
+ "ateg or",
+ "▁dist ribu",
+ "▁distrib u",
+ "Cl oud",
+ "▁m adre",
+ "▁mad re",
+ "▁i v",
+ "▁ iv",
+ "▁Lie utenant",
+ "▁subst ant",
+ "▁le af",
+ "▁ leaf",
+ "▁Kont rola",
+ "V A",
+ "▁t omb",
+ "▁to mb",
+ "▁tom b",
+ "э н",
+ "ato es",
+ "▁god ine",
+ "▁# >",
+ "C ert",
+ "▁em presa",
+ "▁empres a",
+ "Pro ps",
+ "Pr ops",
+ "Prop s",
+ "▁pl anned",
+ "▁plan ned",
+ "▁random ly",
+ "j ähr",
+ "el em",
+ "ele m",
+ "e lem",
+ "▁Oper ation",
+ "▁Opera tion",
+ "▁ Operation",
+ "* `",
+ "pro tocol",
+ "proto col",
+ "() ));",
+ "()) );",
+ "())) ;",
+ "( )));",
+ "we l",
+ "w el",
+ "▁p raw",
+ "▁pr aw",
+ "▁pra w",
+ "▁с им",
+ "▁си м",
+ "▁w ob",
+ "▁wo b",
+ "▁h ace",
+ "▁ha ce",
+ "▁near est",
+ "dis able",
+ "▁C ommun",
+ "▁Com mun",
+ "▁Comm un",
+ "▁re vel",
+ "▁rev el",
+ "▁reve l",
+ "Fr ee",
+ "Fre e",
+ "F ree",
+ "▁bra ckets",
+ "IO Exception",
+ "▁al to",
+ "▁alt o",
+ "▁mar ry",
+ "▁a uc",
+ "▁au c",
+ "▁ auc",
+ "), \\",
+ ") ,\\",
+ "▁typ o",
+ "▁ty po",
+ "ed ad",
+ "eda d",
+ "ar á",
+ "a rá",
+ "ic ator",
+ "ica tor",
+ "tat ywna",
+ "▁b uff",
+ "▁bu ff",
+ "▁buf f",
+ "▁ buff",
+ "or ders",
+ "ord ers",
+ "order s",
+ "orde rs",
+ "▁as ynchronous",
+ "▁e con",
+ "▁ec on",
+ "▁f eu",
+ "▁fe u",
+ "▁I ron",
+ "▁Ir on",
+ "▁r ising",
+ "▁ris ing",
+ "▁ri sing",
+ "Rad ius",
+ "cl k",
+ "▁zwe iten",
+ "▁zwei ten",
+ "▁zweite n",
+ "` '",
+ "▁un iqu",
+ "▁F M",
+ "▁ FM",
+ "▁B ran",
+ "▁Br an",
+ "▁Bra n",
+ "▁f lu",
+ "▁fl u",
+ "▁ flu",
+ "▁sens itive",
+ "ur re",
+ "urr e",
+ "▁I ter",
+ "▁It er",
+ "▁ Iter",
+ "▁S ein",
+ "▁Se in",
+ "▁difer entes",
+ "▁diferen tes",
+ "▁не го",
+ "▁н его",
+ "▁ него",
+ "ch ia",
+ "chi a",
+ "▁An leitung",
+ "atur day",
+ "▁sh orter",
+ "▁short er",
+ "▁transl ated",
+ "▁translate d",
+ "▁R és",
+ "▁Ré s",
+ "▁r ode",
+ "▁ro de",
+ "▁rod e",
+ "dr ag",
+ "dra g",
+ "d rag",
+ "▁l ange",
+ "▁lang e",
+ "▁lan ge",
+ "B i",
+ "ü b",
+ "le ur",
+ "l eur",
+ "▁order ing",
+ "▁ord ering",
+ "al ous",
+ "alo us",
+ "▁К ор",
+ "▁Ко р",
+ "ar char",
+ "arch ar",
+ "arc har",
+ "dest roy",
+ "erv ation",
+ "erva tion",
+ "]] ,",
+ "] ],",
+ "Accessor Impl",
+ "▁autory tatywna",
+ "Se quence",
+ "Sequ ence",
+ "▁pro yect",
+ "▁b ran",
+ "▁br an",
+ "▁bra n",
+ "▁( +",
+ "▁K ab",
+ "▁Ka b",
+ "▁z em",
+ "▁ze m",
+ "▁ zem",
+ "▁Cal cul",
+ "▁ Calcul",
+ "▁se ul",
+ "▁seu l",
+ "▁N iger",
+ "▁Ni ger",
+ "▁ch iam",
+ "▁chi am",
+ "th row",
+ "▁Plan et",
+ "▁Pla net",
+ "bild ung",
+ "▁z ones",
+ "▁zo nes",
+ "▁zone s",
+ "trans ition",
+ "ле ний",
+ "▁m apped",
+ "▁ma pped",
+ "▁map ped",
+ "on aut",
+ "ona ut",
+ "Pa ir",
+ "P air",
+ "il ian",
+ "ili an",
+ "ilia n",
+ "▁M organ",
+ "▁Mor gan",
+ "▁un to",
+ "▁ unto",
+ "jo u",
+ "j ou",
+ "▁h id",
+ "▁hi d",
+ "▁M eta",
+ "▁Me ta",
+ "▁Met a",
+ "▁ Meta",
+ "▁e lles",
+ "▁el les",
+ "▁elle s",
+ "▁ell es",
+ "▁ elles",
+ "Lo u",
+ "L ou",
+ "ra ma",
+ "ram a",
+ "r ama",
+ "ge ordnet",
+ "▁scarc ely",
+ "▁m int",
+ "▁min t",
+ "▁mi nt",
+ "F ocus",
+ "▁Al ter",
+ "▁Alt er",
+ "▁d io",
+ "▁di o",
+ "▁am pl",
+ "▁amp l",
+ "ière ment",
+ "▁ис следова",
+ "LE D",
+ "L ED",
+ "alg orithm",
+ "▁сай ті",
+ "▁сайт і",
+ "▁\" \")",
+ "▁\"\" )",
+ "Hi story",
+ "H istory",
+ "p k",
+ "▁W hit",
+ "▁Wh it",
+ "▁си стем",
+ "▁систе м",
+ "▁Kir chen",
+ "▁Kirche n",
+ "▁Kirch en",
+ "r à",
+ "AP P",
+ "A PP",
+ "▁< %",
+ "ant ine",
+ "anti ne",
+ "antin e",
+ "▁D isk",
+ "▁Dis k",
+ "▁Di sk",
+ "con v",
+ "we lt",
+ "wel t",
+ "w elt",
+ "▁F ut",
+ "▁Fu t",
+ "▁N om",
+ "▁No m",
+ "or do",
+ "ord o",
+ "el lij",
+ "ell ij",
+ "elli j",
+ "▁rece ives",
+ "▁receive s",
+ "co w",
+ "c ow",
+ "yt u",
+ "y tu",
+ "▁o bras",
+ "▁ob ras",
+ "▁obra s",
+ "▁p urchase",
+ "▁purch ase",
+ "▁ear ned",
+ "▁acc essed",
+ "▁access ed",
+ "ax i",
+ "a xi",
+ "▁M ans",
+ "▁Man s",
+ "▁Ma ns",
+ "iv an",
+ "iva n",
+ "i van",
+ "▁t uvo",
+ "▁tu vo",
+ "▁T race",
+ "▁Tr ace",
+ "▁Tra ce",
+ "▁ Trace",
+ "rim onio",
+ "▁desen vol",
+ "ér ique",
+ "éri que",
+ "é rique",
+ "▁result ed",
+ "▁comp uting",
+ "▁comput ing",
+ "▁insp ired",
+ "▁inspir ed",
+ "▁Pr ize",
+ "▁Pri ze",
+ "* \"",
+ "Com put",
+ "Comp ut",
+ "▁ext ensive",
+ "▁extens ive",
+ "è g",
+ "▁Port ály",
+ "▁cast le",
+ "▁ castle",
+ "▁* .",
+ "▁ *.",
+ "▁ph otos",
+ "▁phot os",
+ "▁photo s",
+ "▁vo et",
+ "ON G",
+ "O NG",
+ "▁A lle",
+ "▁Al le",
+ "▁All e",
+ "▁thre aten",
+ "▁threat en",
+ "st üt",
+ "▁album s",
+ "▁alb ums",
+ "▁d ense",
+ "▁den se",
+ "▁dens e",
+ "fl at",
+ "f lat",
+ "cont inu",
+ "Sub ject",
+ "Su bject",
+ "▁read only",
+ "Op t",
+ "O pt",
+ "пи ско",
+ "пис ко",
+ "▁A ber",
+ "▁Ab er",
+ "▁P osition",
+ "▁Pos ition",
+ "▁ Position",
+ "▁To day",
+ "▁Tod ay",
+ "▁m ini",
+ "▁min i",
+ "▁mi ni",
+ "▁B ef",
+ "▁Be f",
+ "li sten",
+ "list en",
+ "lis ten",
+ "l isten",
+ "ствен ного",
+ "ственно го",
+ "SU B",
+ "S UB",
+ "os sa",
+ "oss a",
+ "▁P ope",
+ "▁Po pe",
+ "▁Pop e",
+ "▁Jim my",
+ "▁Д ру",
+ "ungs seite",
+ "▁t ren",
+ "▁tr en",
+ "▁tre n",
+ "op tim",
+ "opt im",
+ "it sch",
+ "its ch",
+ "▁s amt",
+ "▁sa mt",
+ "▁sam t",
+ "▁испо л",
+ "▁ис пол",
+ "& =",
+ "▁Przyp isy",
+ "▁про дол",
+ "C r",
+ "er mann",
+ "erm ann",
+ "erman n",
+ "▁ма тери",
+ "▁мате ри",
+ "▁H ugo",
+ "▁Hu go",
+ "▁De ze",
+ "▁Dez e",
+ "TR UE",
+ "▁defe at",
+ "▁watch ed",
+ "▁wat ched",
+ "▁G ent",
+ "▁Ge nt",
+ "▁Gen t",
+ "AU T",
+ "A UT",
+ "or ous",
+ "oro us",
+ "▁о преде",
+ "ori entation",
+ "orient ation",
+ "▁distingu ished",
+ "▁distinguish ed",
+ "▁mes mo",
+ "▁s li",
+ "▁sl i",
+ "ме на",
+ "мен а",
+ "м ена",
+ "mit tel",
+ "mitt el",
+ "m ittel",
+ "ge richt",
+ "ger icht",
+ "et on",
+ "eto n",
+ "e ton",
+ "-> {",
+ "- >{",
+ "▁w ont",
+ "▁won t",
+ "▁wo nt",
+ "▁w eg",
+ "▁we g",
+ "▁ weg",
+ "▁class ific",
+ "il us",
+ "i lus",
+ "▁M D",
+ "▁ MD",
+ "task s",
+ "▁c him",
+ "▁ch im",
+ "▁chi m",
+ "aw ait",
+ "awa it",
+ "a wait",
+ "▁g ang",
+ "▁gan g",
+ "▁ga ng",
+ "▁ gang",
+ "▁w ię",
+ "▁ wię",
+ "th rough",
+ "▁Russ ell",
+ "▁guess ing",
+ "▁а кт",
+ "▁ак т",
+ "б лі",
+ "c ategories",
+ "су т",
+ "с ут",
+ "▁F en",
+ "▁Fe n",
+ "▁му ж",
+ "▁ne wer",
+ "▁new er",
+ "▁A sync",
+ "▁As ync",
+ "▁ Async",
+ "▁t erme",
+ "▁term e",
+ "▁ter me",
+ "> /",
+ "па ра",
+ "пар а",
+ "▁T rust",
+ "▁Tr ust",
+ "▁Tru st",
+ "▁O pt",
+ "▁Op t",
+ "▁ Opt",
+ "▁d ah",
+ "▁da h",
+ "▁wonder ful",
+ "adrat kil",
+ "▁Г ра",
+ "ma pping",
+ "map ping",
+ "m apping",
+ "▁disc overy",
+ "▁discover y",
+ "▁disco very",
+ "▁B E",
+ "▁ BE",
+ "En able",
+ "▁Fri end",
+ "с ня",
+ "▁cont rolled",
+ "▁control led",
+ "чно ї",
+ "ч ної",
+ "▁contribution s",
+ "▁contrib utions",
+ "j ší",
+ "▁L ev",
+ "▁Le v",
+ "▁franc és",
+ "▁m ic",
+ "▁mi c",
+ "▁ mic",
+ "zi k",
+ "z ik",
+ "▁a lem",
+ "▁al em",
+ "▁ale m",
+ "▁ alem",
+ "can cel",
+ "! '",
+ "▁g rat",
+ "▁gr at",
+ "▁gra t",
+ "▁Begriff sklär",
+ "Cam era",
+ "if icación",
+ "ific ación",
+ "ifica ción",
+ "ró d",
+ "r ód",
+ "▁Arn old",
+ "▁bezeichnet er",
+ "▁f ought",
+ "▁de put",
+ "▁dep ut",
+ "▁D rop",
+ "▁Dr op",
+ "▁Dro p",
+ "▁ Drop",
+ "ta x",
+ "t ax",
+ "d g",
+ "▁H op",
+ "▁Ho p",
+ "G N",
+ "▁Kir ch",
+ "▁Б ар",
+ "▁Ба р",
+ "In voke",
+ "Inv oke",
+ "▁er halten",
+ "▁ve el",
+ "▁word press",
+ "▁ wordpress",
+ "▁IN NER",
+ "trans action",
+ "▁dé jà",
+ "Fa ct",
+ "F act",
+ "▁над мор",
+ "▁angular js",
+ "▁á t",
+ "▁ át",
+ "▁a lap",
+ "▁al ap",
+ "▁P rice",
+ "▁Pr ice",
+ "▁Pri ce",
+ "▁ Price",
+ "▁eff et",
+ "▁s phere",
+ "▁sp here",
+ "▁spher e",
+ "Class Loader",
+ "▁r ugby",
+ "▁rug by",
+ "▁king dom",
+ "▁M ut",
+ "▁Mu t",
+ "▁ки но",
+ "▁re ward",
+ "ci t",
+ "c it",
+ "▁present e",
+ "▁pres ente",
+ "St o",
+ "S to",
+ "Char acter",
+ "lo gs",
+ "log s",
+ "l ogs",
+ "▁cent rale",
+ "▁central e",
+ "▁m ouv",
+ "▁mo uv",
+ "▁mou v",
+ "▁ok ay",
+ "▁ap lic",
+ "Mo re",
+ "Mor e",
+ "M ore",
+ "ény ek",
+ "▁Kö ln",
+ "ne tt",
+ "net t",
+ "n ett",
+ "▁исто рии",
+ "▁истори и",
+ "▁descri bing",
+ "▁sold ier",
+ "▁N eed",
+ "▁Ne ed",
+ "L ight",
+ "▁\" \\<",
+ "▁\"\\ <",
+ "▁h av",
+ "▁ha v",
+ "▁ hav",
+ "er mo",
+ "erm o",
+ "▁infer ior",
+ "le a",
+ "l ea",
+ "▁g g",
+ "▁ gg",
+ "▁кон це",
+ "fra gment",
+ "f ragment",
+ "s b",
+ "Count ry",
+ "C ountry",
+ "▁v ě",
+ "▁ vě",
+ "▁B eng",
+ "▁Be ng",
+ "▁Ben g",
+ "▁Э то",
+ "▁во до",
+ "ма р",
+ "м ар",
+ "STR ING",
+ "▁ú j",
+ "multi ple",
+ "multip le",
+ "state ment",
+ "stat ement",
+ "▁invol ves",
+ "▁involve s",
+ "▁te cn",
+ "▁tec n",
+ "St udent",
+ "gr é",
+ "g ré",
+ "▁le an",
+ "▁ lean",
+ "▁bring ing",
+ "▁Med ical",
+ "▁Medic al",
+ "▁Medi cal",
+ "▁програ м",
+ "▁V og",
+ "▁Vo g",
+ "▁ж ов",
+ "▁Sp irit",
+ "nt h",
+ "n th",
+ "▁stand ards",
+ "▁standard s",
+ "▁Pro file",
+ "▁Prof ile",
+ "▁Profil e",
+ "▁ Profile",
+ "▁e z",
+ "▁ ez",
+ "▁террито рии",
+ "▁s tem",
+ "▁st em",
+ "▁ste m",
+ "ui l",
+ "u il",
+ "▁O g",
+ "B tn",
+ "na l",
+ "n al",
+ "▁near by",
+ "▁produ cing",
+ "cri v",
+ "cr iv",
+ "c riv",
+ "▁assum ptions",
+ "▁assumption s",
+ "▁S park",
+ "▁Sp ark",
+ "▁L ot",
+ "▁Lo t",
+ "it udes",
+ "itu des",
+ "itude s",
+ "itud es",
+ "af ka",
+ "fi ve",
+ "f ive",
+ "at io",
+ "ati o",
+ "▁distingu ish",
+ "ro ck",
+ "roc k",
+ "r ock",
+ "égl ise",
+ "é glise",
+ "▁rapp res",
+ "▁rap pres",
+ ">\\ <",
+ "> \\<",
+ "лі й",
+ "л ій",
+ "▁ми ни",
+ "▁ мини",
+ "▁intitul é",
+ "}} (\\",
+ "}}( \\",
+ "} }(\\",
+ "▁R out",
+ "▁Ro ut",
+ "▁Rou t",
+ "▁ Rout",
+ "▁B order",
+ "▁Bor der",
+ "▁ Border",
+ "▁over rid",
+ "HO ST",
+ "H OST",
+ "rit ten",
+ "ritt en",
+ "r itten",
+ "sa y",
+ "s ay",
+ "▁Ч и",
+ "icht ung",
+ "▁straight forward",
+ "ob b",
+ "o bb",
+ "▁Ter ra",
+ "▁Terr a",
+ "▁[ :",
+ "▁ [:",
+ "Be n",
+ "B en",
+ "▁compos ite",
+ ")+ \\",
+ ") +\\",
+ "▁c rown",
+ "▁cr own",
+ "▁cro wn",
+ "▁crow n",
+ "dir ection",
+ "direct ion",
+ "dire ction",
+ "d irection",
+ "▁неско лько",
+ "▁av ail",
+ "▁purch ased",
+ "▁purchase d",
+ "ho ok",
+ "h ook",
+ "et ies",
+ "eti es",
+ "e ties",
+ "▁f ase",
+ "▁fa se",
+ "▁fas e",
+ "▁R um",
+ "▁Ru m",
+ "▁ge nom",
+ "▁gen om",
+ "▁d ét",
+ "▁dé t",
+ "ow ą",
+ "mp eg",
+ "▁І н",
+ "des ktop",
+ "▁in jection",
+ "▁inj ection",
+ "▁inject ion",
+ "ag le",
+ "a gle",
+ "▁E dd",
+ "▁Ed d",
+ "_{ (",
+ "_ {(",
+ "▁H em",
+ "▁He m",
+ "ut os",
+ "uto s",
+ "pr oj",
+ "pro j",
+ "▁superfic ie",
+ "Pl ot",
+ "P lot",
+ "▁D ocker",
+ "▁Do cker",
+ "▁Doc ker",
+ "ät z",
+ "ä tz",
+ "kre ich",
+ "k reich",
+ "▁un clear",
+ "▁uncle ar",
+ "▁Un ity",
+ "▁Unit y",
+ "▁stream s",
+ "▁stre ams",
+ "ви д",
+ "▁simpl ified",
+ "Fil l",
+ "Fi ll",
+ "F ill",
+ "▁s ant",
+ "▁sa nt",
+ "▁san t",
+ "▁K ommun",
+ "▁Kom mun",
+ "▁Komm un",
+ "▁d uc",
+ "▁du c",
+ "▁д ве",
+ "▁o bs",
+ "▁ob s",
+ "▁ obs",
+ "ž it",
+ "▁Jane iro",
+ "б я",
+ "▁pr esso",
+ "▁pres so",
+ "▁press o",
+ "▁Min istry",
+ "▁b urst",
+ "▁bur st",
+ "▁re aching",
+ "▁reach ing",
+ "li ter",
+ "lit er",
+ "l iter",
+ "▁response s",
+ "▁respons es",
+ "▁E ug",
+ "▁Eu g",
+ "▁s od",
+ "▁so d",
+ "▁C ord",
+ "▁Cor d",
+ "▁Co rd",
+ "▁P erm",
+ "▁Per m",
+ "▁Pe rm",
+ "▁ Perm",
+ "par ts",
+ "part s",
+ "p arts",
+ "ци ма",
+ "vari ables",
+ "variable s",
+ "▁forgot ten",
+ "Fe rn",
+ "F ern",
+ "ost ęp",
+ "v l",
+ "▁С м",
+ "ki m",
+ "k im",
+ "aj ąc",
+ "ają c",
+ "a jąc",
+ "на ль",
+ "нал ь",
+ "н аль",
+ "г ле",
+ "hel per",
+ "help er",
+ "du p",
+ "d up",
+ "eu w",
+ "e uw",
+ "fr a",
+ "f ra",
+ "ell ite",
+ "elli te",
+ "an ya",
+ "any a",
+ "▁re ign",
+ "▁r eign",
+ "▁rei gn",
+ "ges amt",
+ "се да",
+ "▁R yan",
+ "▁Ry an",
+ "▁form atted",
+ "▁format ted",
+ "▁formatt ed",
+ "▁B org",
+ "▁Bo rg",
+ "▁Bor g",
+ "wal k",
+ "w alk",
+ "▁а л",
+ "▁ ал",
+ "agnost ics",
+ "agnostic s",
+ "▁C ape",
+ "▁Cap e",
+ "▁Ca pe",
+ "▁Fran co",
+ "▁Franc o",
+ "▁f ug",
+ "▁fu g",
+ ": )",
+ "ю з",
+ "F etch",
+ "▁rough ly",
+ "▁M is",
+ "▁Mi s",
+ "uet ooth",
+ "▁Venez uela",
+ "▁a stronom",
+ "▁astr onom",
+ "\") `",
+ "\" )`",
+ "om bres",
+ "omb res",
+ "▁кото рой",
+ "ó p",
+ "ow ed",
+ "owe d",
+ "o wed",
+ "H R",
+ "▁C amer",
+ "▁Cam er",
+ "▁Ca mer",
+ "ки е",
+ "par ison",
+ "▁B ij",
+ "▁Bi j",
+ "tem plates",
+ "template s",
+ "en vironment",
+ "environ ment",
+ "iz ação",
+ "iza ção",
+ "▁é r",
+ "▁ ér",
+ "▁pl enty",
+ "▁Type Error",
+ "▁for ty",
+ "▁fort y",
+ "ко ном",
+ "кон ом",
+ "коно м",
+ "▁S ed",
+ "▁Se d",
+ "▁th ats",
+ "▁that s",
+ "▁gra vity",
+ "▁grav ity",
+ "▁gravit y",
+ "▁ gravity",
+ "▁spirit ual",
+ "▁dup licates",
+ "▁duplicate s",
+ "▁enc ryption",
+ "▁encrypt ion",
+ "▁re ven",
+ "▁r even",
+ "▁rev en",
+ "▁reve n",
+ "▁ reven",
+ "get Instance",
+ "äl lor",
+ "äll or",
+ "dis k",
+ "di sk",
+ "d isk",
+ "▁th ro",
+ "▁thr o",
+ "▁N ak",
+ "▁Na k",
+ "▁p oł",
+ "▁po ł",
+ "▁her aus",
+ "in valid",
+ "s By",
+ "Bo ot",
+ "B oot",
+ "▁bu cket",
+ "▁ bucket",
+ "▁P arse",
+ "▁Par se",
+ "▁ Parse",
+ "he x",
+ "h ex",
+ "Con ne",
+ "C onne",
+ "▁Comp uter",
+ "▁Comput er",
+ "zy k",
+ "z yk",
+ "▁indu ced",
+ "▁Br uno",
+ "▁Bru no",
+ "▁Brun o",
+ "▁address ed",
+ "▁addr essed",
+ "ma nia",
+ "man ia",
+ "m ania",
+ "▁in clus",
+ "▁incl us",
+ "▁inc lus",
+ "▁inclu s",
+ "oun ced",
+ "ounce d",
+ "script size",
+ "scripts ize",
+ "▁E pis",
+ "▁Ep is",
+ "▁v ocal",
+ "▁vo cal",
+ "▁voc al",
+ "▁Jon athan",
+ "у м",
+ "st aden",
+ "sta den",
+ "stad en",
+ "▁Child ren",
+ "▁ Children",
+ "пе й",
+ "п ей",
+ "It alia",
+ "Ital ia",
+ "reib ung",
+ "▁n ost",
+ "▁no st",
+ "▁nos t",
+ "▁ nost",
+ "▁е щё",
+ "▁Wer ke",
+ "▁Werk e",
+ "▁act ress",
+ "▁Minn esota",
+ "ri ke",
+ "rik e",
+ "r ike",
+ "▁t ek",
+ "▁te k",
+ "▁ tek",
+ "▁prime ira",
+ "▁f rat",
+ "▁fr at",
+ "▁fra t",
+ "▁Config uration",
+ "▁ Configuration",
+ "▁b id",
+ "▁bi d",
+ "▁ bid",
+ "tr igger",
+ "Cont ents",
+ "Content s",
+ "▁const antly",
+ "▁constant ly",
+ "!! !",
+ "! !!",
+ "▁d read",
+ "▁dr ead",
+ "▁dre ad",
+ "▁hundred s",
+ "ist ische",
+ "isti sche",
+ "▁card inal",
+ "T ABLE",
+ "▁est os",
+ "▁esto s",
+ "ass oc",
+ "asso c",
+ "gr ay",
+ "gra y",
+ "g ray",
+ "▁Sch loss",
+ "▁Schl oss",
+ "▁s che",
+ "▁sc he",
+ "▁sch e",
+ "▁ sche",
+ "con g",
+ "co ng",
+ "c ong",
+ "▁ko ji",
+ "ète s",
+ "èt es",
+ "è tes",
+ "▁E ra",
+ "▁Er a",
+ "om i",
+ "o mi",
+ "▁S R",
+ "▁ SR",
+ "▁wr apped",
+ "▁wra pped",
+ "▁wrap ped",
+ "▁tr unc",
+ "▁a h",
+ "▁ ah",
+ "eg os",
+ "ego s",
+ "ok i",
+ "o ki",
+ "mo uth",
+ "m outh",
+ "log ging",
+ "▁f asc",
+ "▁fa sc",
+ "▁fas c",
+ "▁S ample",
+ "▁Sam ple",
+ "▁ Sample",
+ "▁c onte",
+ "▁con te",
+ "▁cont e",
+ "▁v illa",
+ "▁vi lla",
+ "▁vill a",
+ "▁vil la",
+ "▁ villa",
+ "com ments",
+ "comm ents",
+ "comment s",
+ "▁b atal",
+ "▁ba tal",
+ "▁bat al",
+ "▁bata l",
+ "▁Garc ía",
+ "▁N orte",
+ "▁Nor te",
+ "▁we chsel",
+ "▁Muse o",
+ "▁enf ants",
+ "▁whis per",
+ "na ke",
+ "nak e",
+ "n ake",
+ "▁jed nak",
+ "l ês",
+ "en ders",
+ "end ers",
+ "ender s",
+ "ende rs",
+ "▁ä l",
+ "▁ äl",
+ "▁V B",
+ "▁ VB",
+ "▁cook ies",
+ "▁cookie s",
+ "ze ti",
+ "zet i",
+ "z eti",
+ "at um",
+ "atu m",
+ "▁d edu",
+ "▁de du",
+ "▁ded u",
+ "▁arr anged",
+ "▁arrang ed",
+ "la z",
+ "l az",
+ "▁cu enta",
+ "ym l",
+ "y ml",
+ "▁f lav",
+ "▁fl av",
+ "▁fla v",
+ "M R",
+ "em et",
+ "eme t",
+ "e met",
+ "бі ль",
+ "б іль",
+ "cm p",
+ "c mp",
+ "it uto",
+ "itu to",
+ "itut o",
+ "ze tt",
+ "zet t",
+ "z ett",
+ "▁en vi",
+ "▁env i",
+ "▁k ot",
+ "▁ko t",
+ "$ :",
+ "up per",
+ "upp er",
+ "u pper",
+ "▁Al berto",
+ "▁Albert o",
+ "k b",
+ "An al",
+ "A nal",
+ "ör t",
+ "ö rt",
+ "▁[ -",
+ "▁ [-",
+ "▁führ te",
+ "▁führt e",
+ "ia h",
+ "i ah",
+ "▁T un",
+ "▁Tu n",
+ "▁и скус",
+ "uw e",
+ "u we",
+ "is pecies",
+ "i species",
+ "P ub",
+ "Syn c",
+ "S ync",
+ "▁Colomb ia",
+ "ak ers",
+ "ake rs",
+ "aker s",
+ "▁Imper ial",
+ "ov ing",
+ "ovi ng",
+ "o ving",
+ "▁int elligence",
+ "▁intellig ence",
+ "▁equip ment",
+ "ei n",
+ "e in",
+ "dag ger",
+ "d agger",
+ "▁Ed ge",
+ "▁ Edge",
+ "▁Рес публи",
+ "adratkil ometer",
+ "▁An to",
+ "▁Ant o",
+ "▁char ges",
+ "▁charge s",
+ "▁charg es",
+ "▁O cean",
+ "▁simpl ify",
+ "▁m iesz",
+ "▁mi esz",
+ "▁mie sz",
+ "run ning",
+ "r unning",
+ "▁L ac",
+ "▁La c",
+ "gen ommen",
+ "▁represent ative",
+ "= .",
+ "▁P red",
+ "▁Pr ed",
+ "▁Pre d",
+ "▁ Pred",
+ "▁sp ite",
+ "ci ale",
+ "cial e",
+ "cia le",
+ "c iale",
+ "▁n ave",
+ "▁na ve",
+ "▁nav e",
+ "▁ext ens",
+ "▁neut ral",
+ "▁кото рая",
+ ".< /",
+ ". ",
+ "▁C S",
+ "▁ CS",
+ "uk y",
+ "u ky",
+ "▁wh ilst",
+ "▁l ingu",
+ "▁lin gu",
+ "▁ling u",
+ "ext ract",
+ "extra ct",
+ "zeich nung",
+ "▁F eld",
+ "▁Fe ld",
+ "▁Fel d",
+ "▁valu able",
+ "ur able",
+ "ura ble",
+ "u rable",
+ "▁J en",
+ "▁Je n",
+ "▁strugg le",
+ "▁comm ittee",
+ "▁W ohn",
+ "▁Wo hn",
+ "▁sql ite",
+ "▁ sqlite",
+ "▁T emp",
+ "▁Te mp",
+ "▁Tem p",
+ "▁ Temp",
+ "▁CO UNT",
+ "▁ COUNT",
+ "con sin",
+ "cons in",
+ "мі ні",
+ "мін і",
+ "us age",
+ "usa ge",
+ "▁qu est",
+ "▁que st",
+ "▁q uest",
+ "▁ quest",
+ "дя н",
+ "д ян",
+ "ear ed",
+ "ea red",
+ "e ared",
+ "▁Sch ne",
+ "▁d od",
+ "▁do d",
+ "▁re cht",
+ "▁rec ht",
+ "▁ recht",
+ "▁k ao",
+ "▁ka o",
+ "Cap t",
+ "Ca pt",
+ "C apt",
+ "label s",
+ "lab els",
+ "▁el los",
+ "▁ell os",
+ "▁indust ri",
+ "▁Color ado",
+ "▁contr ary",
+ "▁contra ry",
+ "▁D um",
+ "▁Du m",
+ "Be l",
+ "B el",
+ "▁V ent",
+ "▁Ve nt",
+ "▁Ven t",
+ "▁author ities",
+ "Y ES",
+ "en sed",
+ "ens ed",
+ "ense d",
+ "umbn ail",
+ "izz azione",
+ "izza zione",
+ "ko u",
+ "k ou",
+ "ri ca",
+ "ric a",
+ "r ica",
+ "▁s ect",
+ "▁se ct",
+ "▁sec t",
+ "▁ sect",
+ "test s",
+ "tes ts",
+ "t ests",
+ "▁K lein",
+ "▁Kle in",
+ "▁Kl ein",
+ "▁le gs",
+ "▁leg s",
+ "▁Pi etro",
+ "▁Piet ro",
+ "f u",
+ "th y",
+ "t hy",
+ "▁b ast",
+ "▁bas t",
+ "▁ba st",
+ "▁t edes",
+ "▁te des",
+ "▁ted es",
+ "et tes",
+ "ett es",
+ "ette s",
+ "▁re pet",
+ "▁rep et",
+ "▁repe t",
+ "ac re",
+ "a cre",
+ "re tto",
+ "ret to",
+ "rett o",
+ "r etto",
+ "▁remain der",
+ "▁G eg",
+ "▁Ge g",
+ "▁Г ор",
+ "▁Го р",
+ "▁Re chts",
+ "▁Recht s",
+ "▁filter ing",
+ "ou ss",
+ "ous s",
+ "o uss",
+ "▁deploy ed",
+ "▁prü fe",
+ "▁b itmap",
+ "▁bit map",
+ "▁s ovi",
+ "▁so vi",
+ "▁sov i",
+ "▁< %=",
+ "▁<% =",
+ "▁ <%=",
+ "▁entfer ne",
+ "ki ll",
+ "kil l",
+ "k ill",
+ "ta bs",
+ "tab s",
+ "t abs",
+ "Ex pr",
+ "Exp r",
+ "ко му",
+ "ком у",
+ "к ому",
+ "▁Republic an",
+ "▁S ize",
+ "▁Si ze",
+ "▁ Size",
+ "▁p oll",
+ "▁po ll",
+ "▁pol l",
+ "▁r ien",
+ "▁ri en",
+ "▁ rien",
+ "▁клу б",
+ "én d",
+ "é nd",
+ "▁B io",
+ "▁Bi o",
+ "▁per l",
+ "▁pe rl",
+ "▁ perl",
+ "▁And reas",
+ "▁Andrea s",
+ "▁Andre as",
+ "ви н",
+ "в ин",
+ "▁d istant",
+ "▁dist ant",
+ "▁F inn",
+ "▁Fin n",
+ "▁M itch",
+ "▁Mit ch",
+ "▁% {",
+ "▁c harm",
+ "▁ch arm",
+ "▁char m",
+ "▁cha rm",
+ "▁M ul",
+ "▁Mu l",
+ "pe rate",
+ "per ate",
+ "▁sci ences",
+ "▁science s",
+ "▁mon ot",
+ "▁mo not",
+ "▁deb ido",
+ "riz ona",
+ "ie c",
+ "i ec",
+ "▁al arm",
+ "▁prom oted",
+ "▁promote d",
+ "▁let zten",
+ "at in",
+ "ati n",
+ "▁con clus",
+ "▁conc lus",
+ "▁concl us",
+ "he rr",
+ "her r",
+ "h err",
+ "▁é ch",
+ "▁éc h",
+ "▁ éch",
+ "ed ish",
+ "edi sh",
+ "go r",
+ "g or",
+ "▁st ycz",
+ "▁sty cz",
+ "▁im press",
+ "▁imp ress",
+ "▁impr ess",
+ "ru its",
+ "ruit s",
+ "r uits",
+ "ier ungs",
+ "ierung s",
+ "▁par sed",
+ "▁parse d",
+ "▁r ío",
+ "▁Pak istan",
+ "ig ner",
+ "ign er",
+ "igne r",
+ "▁watch ing",
+ "▁database s",
+ "▁datab ases",
+ "ed ing",
+ "edi ng",
+ "e ding",
+ "▁Spec ific",
+ "▁gener ale",
+ "▁general e",
+ "▁gene rale",
+ "la x",
+ "l ax",
+ "▁Lo oking",
+ "▁Look ing",
+ "▁b ond",
+ "▁bo nd",
+ "▁bon d",
+ "▁v ista",
+ "▁vis ta",
+ "▁vi sta",
+ "▁e c",
+ "▁ ec",
+ "▁gr ud",
+ "▁gru d",
+ "▁del eting",
+ "▁delet ing",
+ "ta c",
+ "t ac",
+ "▁j azz",
+ "▁ja zz",
+ "j m",
+ "▁p ół",
+ "▁pó ł",
+ "L anguage",
+ "de legate",
+ "▁reg istry",
+ "▁registr y",
+ "▁Sh ared",
+ "▁Share d",
+ "▁ Shared",
+ "ст рой",
+ "стро й",
+ "Mus ic",
+ "▁v essel",
+ "▁vess el",
+ "▁ves sel",
+ ". @",
+ "▁W ür",
+ "▁f ed",
+ "▁fe d",
+ "▁ered et",
+ "▁ere det",
+ "▁G ö",
+ "up t",
+ "u pt",
+ "▁ple asant",
+ "▁table View",
+ "▁ tableView",
+ "▁count ing",
+ "▁coun ting",
+ "▁Krie gs",
+ "▁Krieg s",
+ "▁полу чил",
+ "▁получи л",
+ "▁] ,",
+ "▁ ],",
+ "ви а",
+ "▁a ž",
+ "To List",
+ "▁Ad vent",
+ "▁Adv ent",
+ "▁sk etch",
+ "p n",
+ "▁s ier",
+ "▁si er",
+ "▁sie r",
+ "▁находи тся",
+ "io p",
+ "i op",
+ "▁l y",
+ "▁ ly",
+ "▁Sch l",
+ "▁Sc hl",
+ "Cont ract",
+ "as soci",
+ "ass oci",
+ "asso ci",
+ "assoc i",
+ "▁P ear",
+ "▁Pe ar",
+ "▁w he",
+ "▁wh e",
+ "▁De lete",
+ "▁Del ete",
+ "▁ Delete",
+ "▁e lem",
+ "▁el em",
+ "▁ele m",
+ "▁ elem",
+ "ät te",
+ "ätt e",
+ "ä tte",
+ "▁č esk",
+ "▁M C",
+ "▁ MC",
+ "▁sh out",
+ "▁sho ut",
+ "ake spe",
+ "akes pe",
+ "▁default s",
+ "pe nas",
+ "pen as",
+ "p enas",
+ "ò ria",
+ "▁hier archy",
+ "ip t",
+ "i pt",
+ "▁E lis",
+ "▁El is",
+ "▁Eli s",
+ "like ly",
+ "lik ely",
+ "Ro t",
+ "R ot",
+ "▁c ow",
+ "▁co w",
+ "▁ cow",
+ "▁st rike",
+ "▁str ike",
+ "▁stri ke",
+ "▁strik e",
+ "▁бере зня",
+ "▁ens emble",
+ "▁ ensemble",
+ "▁Pse ud",
+ "V irtual",
+ "▁ї ї",
+ "RO OT",
+ "си я",
+ "▁с об",
+ "▁со б",
+ "▁ соб",
+ "▁in vert",
+ "▁inv ert",
+ "▁inve rt",
+ "▁switch ing",
+ "ht access",
+ "▁на гра",
+ "▁Nor man",
+ "▁Norm an",
+ "▁ing lês",
+ "! [",
+ "ou sel",
+ "ous el",
+ "ouse l",
+ "DO CTYPE",
+ "DOC TYPE",
+ "▁supp ress",
+ "▁sup press",
+ "▁accompan ied",
+ "▁B é",
+ "imp lies",
+ "impl ies",
+ "nu t",
+ "n ut",
+ "▁S yntax",
+ "▁Syn tax",
+ "▁ Syntax",
+ "in ho",
+ "▁t am",
+ "▁ta m",
+ "▁focus ed",
+ "▁foc used",
+ "av ano",
+ "ava no",
+ "avan o",
+ "a vano",
+ "▁B aden",
+ "▁Ba den",
+ "▁Bad en",
+ "ha d",
+ "h ad",
+ "▁( {",
+ "▁ ({",
+ "T y",
+ "▁ро с",
+ "▁р ос",
+ "▁ рос",
+ "▁чо лові",
+ "og e",
+ "o ge",
+ "js p",
+ "j sp",
+ "Bl ue",
+ "▁su as",
+ "▁sua s",
+ "ap ers",
+ "ape rs",
+ "aper s",
+ "a pers",
+ "Sh ort",
+ "Render er",
+ "▁s endo",
+ "▁send o",
+ "▁sen do",
+ "▁C ec",
+ "▁Ce c",
+ "▁` __",
+ "▁`_ _",
+ "▁Municip al",
+ "dot net",
+ "▁b ev",
+ "▁be v",
+ "▁D A",
+ "▁ DA",
+ "Menu Item",
+ "▁a mp",
+ "▁am p",
+ "▁ amp",
+ "▁u ri",
+ "▁ur i",
+ "▁ uri",
+ "▁f ier",
+ "▁fi er",
+ "сле н",
+ "с лен",
+ "), (",
+ ") ,(",
+ "cul es",
+ "cu les",
+ "c ules",
+ "il las",
+ "ill as",
+ "illa s",
+ "LO CK",
+ "LOC K",
+ "▁de rive",
+ "▁der ive",
+ "▁deriv e",
+ "ub en",
+ "ube n",
+ "u ben",
+ "▁G T",
+ "▁ GT",
+ "▁M ack",
+ "▁Ma ck",
+ "▁Mac k",
+ "▁sch olar",
+ ")} }",
+ ") }}",
+ "з м",
+ ">: :",
+ "> ::",
+ "ш ёл",
+ "▁princip ales",
+ "▁principal es",
+ "▁principale s",
+ "▁ц ар",
+ "▁t ied",
+ "▁ti ed",
+ "▁tie d",
+ "▁al ta",
+ "▁alt a",
+ "▁C it",
+ "▁Ci t",
+ "li ned",
+ "line d",
+ "lin ed",
+ "l ined",
+ "ma jor",
+ "▁p unk",
+ "▁pun k",
+ "▁cin co",
+ "ick ý",
+ "▁r aggi",
+ "▁ra ggi",
+ "▁rag gi",
+ "ty pen",
+ "type n",
+ "typ en",
+ "тель ство",
+ "▁con ference",
+ "▁confer ence",
+ "▁с іль",
+ "▁сі ль",
+ "▁he ut",
+ "i š",
+ "ет а",
+ "е та",
+ "vel ope",
+ "velop e",
+ "h box",
+ "no wn",
+ "now n",
+ "n own",
+ "▁z ar",
+ "▁za r",
+ "▁ zar",
+ "kt iv",
+ "ie ß",
+ "▁с тре",
+ "▁ст ре",
+ "▁ стре",
+ "▁Event Args",
+ "▁ EventArgs",
+ "▁I ra",
+ "▁Ir a",
+ "▁V BA",
+ "▁VB A",
+ "▁S anto",
+ "▁San to",
+ "▁Sant o",
+ "▁F ach",
+ "▁Fa ch",
+ "▁Fac h",
+ "▁F F",
+ "▁ FF",
+ "▁Ray mond",
+ "ме ц",
+ "im plementation",
+ "▁bro thers",
+ "▁brother s",
+ "▁cô té",
+ "▁cont rollers",
+ "▁control lers",
+ "▁controller s",
+ "▁C le",
+ "▁Cl e",
+ "▁c able",
+ "▁ca ble",
+ "▁cab le",
+ "▁con fer",
+ "▁conf er",
+ "▁{ -",
+ "▁ {-",
+ "▁cz ł",
+ "▁Fil ip",
+ "at orio",
+ "ator io",
+ "ato rio",
+ "atori o",
+ "▁w icht",
+ "▁be aucoup",
+ "▁L it",
+ "▁Li t",
+ "▁s essions",
+ "▁session s",
+ "▁sess ions",
+ "▁Su ccess",
+ "▁ Success",
+ "▁ro uting",
+ "▁rout ing",
+ "▁rou ting",
+ "ni u",
+ "n iu",
+ "▁V ice",
+ "▁Vi ce",
+ "▁Vic e",
+ "▁k rit",
+ "▁kr it",
+ "up dated",
+ "update d",
+ "▁In valid",
+ "▁ Invalid",
+ "▁Mann schaft",
+ "▁a os",
+ "▁ao s",
+ "▁t udi",
+ "▁tu di",
+ "▁tud i",
+ "▁des prés",
+ "▁desp rés",
+ "qu a",
+ "q ua",
+ "Cont ains",
+ "Comp any",
+ "▁person a",
+ "▁pers ona",
+ "ad apter",
+ "с ни",
+ "▁v oj",
+ "▁vo j",
+ "▁ voj",
+ "▁e scri",
+ "▁es cri",
+ "▁esc ri",
+ "ag t",
+ "a gt",
+ "▁с тво",
+ "▁ст во",
+ "▁ ство",
+ "▁dist rito",
+ "ap an",
+ "apa n",
+ "a pan",
+ "▁aspect s",
+ "▁z al",
+ "▁za l",
+ ")^ {\\",
+ ")^{ \\",
+ ") ^{\\",
+ "▁syst ème",
+ "▁а на",
+ "▁ан а",
+ "▁ ана",
+ "ium s",
+ "iu ms",
+ "i ums",
+ "▁prem iers",
+ "▁premi ers",
+ "▁premier s",
+ "▁по э",
+ "▁m ère",
+ "▁G un",
+ "▁Gu n",
+ "ap ing",
+ "api ng",
+ "a ping",
+ "▁R ain",
+ "▁Ra in",
+ "▁ig ual",
+ "▁process or",
+ "▁proc essor",
+ "▁ processor",
+ "') `",
+ "' )`",
+ "bl ing",
+ "b ling",
+ "▁m ism",
+ "▁mi sm",
+ "▁mis m",
+ "br áz",
+ "▁close st",
+ "▁clos est",
+ "▁Re ading",
+ "▁Read ing",
+ "▁по пу",
+ "con o",
+ "co no",
+ "c ono",
+ "▁k ult",
+ "▁! !",
+ "▁ !!",
+ "▁Ex pression",
+ "▁Exp ression",
+ "▁Express ion",
+ "▁ Expression",
+ "▁indu ction",
+ "▁induct ion",
+ "ah ren",
+ "ahr en",
+ "a hren",
+ "▁c p",
+ "▁ cp",
+ "▁viol ence",
+ "ient í",
+ "cent e",
+ "cen te",
+ "c ente",
+ "▁D ob",
+ "▁Do b",
+ "ja ck",
+ "j ack",
+ "so ng",
+ "son g",
+ "s ong",
+ "bu cket",
+ "▁de port",
+ "▁dep ort",
+ "ки ми",
+ "ким и",
+ "l m",
+ "▁in noc",
+ "▁inn oc",
+ "Ch anges",
+ "Change s",
+ "▁pro hib",
+ "ang ol",
+ "ango l",
+ "isecond s",
+ "i seconds",
+ "▁п ор",
+ "▁по р",
+ "▁ пор",
+ "▁h ip",
+ "▁hi p",
+ "▁ hip",
+ "▁p ů",
+ "en dorf",
+ "end orf",
+ "endo rf",
+ "endor f",
+ "▁sch eduled",
+ "▁schedule d",
+ "▁Fl ug",
+ "ac yj",
+ "acy j",
+ "▁Fil ms",
+ "▁Film s",
+ "athed ral",
+ "Po wer",
+ "P ower",
+ "ar din",
+ "ard in",
+ "ardi n",
+ "ka p",
+ "k ap",
+ "ic ken",
+ "ick en",
+ "i cken",
+ "re size",
+ "res ize",
+ "eu s",
+ "e us",
+ "r r",
+ "ля н",
+ "л ян",
+ "▁H av",
+ "▁Ha v",
+ "▁o ra",
+ "▁or a",
+ "▁ ora",
+ "FR OM",
+ "F ROM",
+ "ло ся",
+ "▁te rug",
+ "▁ter ug",
+ "▁W idth",
+ "▁ Width",
+ "▁accept s",
+ "бе н",
+ "б ен",
+ "▁m ich",
+ "▁mi ch",
+ "▁mic h",
+ "▁C zech",
+ "▁Cz ech",
+ "▁B edeut",
+ "▁ви д",
+ "▁ вид",
+ "ô me",
+ "▁L oop",
+ "▁Lo op",
+ "▁ Loop",
+ "sp ect",
+ "spe ct",
+ "spec t",
+ "s pect",
+ "ü k",
+ "es ton",
+ "est on",
+ "esto n",
+ "e ston",
+ "▁s lot",
+ "▁sl ot",
+ "▁slo t",
+ "▁został a",
+ "▁Charlot te",
+ "▁состав ляет",
+ "▁составля ет",
+ "▁Prom ise",
+ "▁e po",
+ "▁ep o",
+ "▁d iction",
+ "▁di ction",
+ "▁dict ion",
+ "▁dic tion",
+ "▁ diction",
+ "▁Frank lin",
+ "▁R iv",
+ "▁Ri v",
+ "ру г",
+ "ci da",
+ "cid a",
+ "c ida",
+ "▁Ex plorer",
+ "cook ie",
+ "▁former ly",
+ "▁municip ality",
+ "▁municipal ity",
+ "▁Ste fan",
+ "▁Stef an",
+ "list s",
+ "lis ts",
+ "l ists",
+ "CO MP",
+ "COM P",
+ "Le n",
+ "L en",
+ "▁Sta at",
+ "▁N BA",
+ "de ns",
+ "den s",
+ "d ens",
+ "▁osc ill",
+ "! .",
+ "▁P O",
+ "▁ PO",
+ "ô ne",
+ "es es",
+ "ese s",
+ "▁на циональ",
+ "vo or",
+ "v oor",
+ "▁ко пи",
+ "▁по зи",
+ "▁ пози",
+ "ul u",
+ "u lu",
+ "Const raint",
+ "Constra int",
+ "▁сво ей",
+ "▁algebra ic",
+ "ч ня",
+ "Di ct",
+ "D ict",
+ "▁appear ing",
+ "▁appe aring",
+ "▁p rav",
+ "▁pr av",
+ "▁pra v",
+ "▁Univers al",
+ "B rowser",
+ "▁Sing ap",
+ "ennes see",
+ "] _",
+ "▁S of",
+ "▁So f",
+ "▁C ad",
+ "▁Ca d",
+ "oun ce",
+ "▁cost s",
+ "▁cos ts",
+ "]{ \\",
+ "] {\\",
+ "../ ../",
+ "ськ ій",
+ "ські й",
+ "üh l",
+ "ü hl",
+ "ie ty",
+ "iet y",
+ "i ety",
+ "п р",
+ "▁interpre ted",
+ "▁interpret ed",
+ "aj n",
+ "col og",
+ "co log",
+ "colo g",
+ "c olog",
+ "Y S",
+ "ma ns",
+ "man s",
+ "m ans",
+ "▁met rics",
+ "▁metric s",
+ "▁reg istr",
+ "▁ registr",
+ "ist ance",
+ "istan ce",
+ "▁По ль",
+ "▁an onymous",
+ "▁ anonymous",
+ "▁institution s",
+ "▁instit utions",
+ "▁z dob",
+ "▁zd ob",
+ "pr üng",
+ "prü ng",
+ "▁ар ти",
+ "▁e stat",
+ "▁est at",
+ "▁es tat",
+ "▁esta t",
+ "ac ci",
+ "acc i",
+ "▁academ ic",
+ "▁ch iesa",
+ "▁chi esa",
+ "▁G ian",
+ "▁Gi an",
+ "▁Gia n",
+ "cont rib",
+ "contr ib",
+ "um ed",
+ "ume d",
+ "u med",
+ "▁G ir",
+ "▁Gi r",
+ "▁base ball",
+ "numer ic",
+ "n umeric",
+ "Gener ator",
+ "G M",
+ "▁t iny",
+ "▁ti ny",
+ "▁tin y",
+ "▁ tiny",
+ "▁dist inction",
+ "▁distinct ion",
+ "ге р",
+ "г ер",
+ "▁r ust",
+ "▁ru st",
+ "▁rus t",
+ "▁ rust",
+ "▁FI FA",
+ "▁Pro perties",
+ "▁ Properties",
+ "^ -",
+ "▁э кс",
+ "▁эк с",
+ "▁Sta nis",
+ "▁Stan is",
+ "▁A jax",
+ "es cape",
+ "esc ape",
+ "▁con sp",
+ "▁cons p",
+ "▁C hen",
+ "▁Ch en",
+ "▁Che n",
+ "▁N aval",
+ "▁Na val",
+ "▁Nav al",
+ "Bi t",
+ "B it",
+ "▁b ât",
+ "ски ми",
+ "ским и",
+ "с кими",
+ "dr ive",
+ "dri ve",
+ "d rive",
+ "▁R ound",
+ "▁Ro und",
+ "▁Rou nd",
+ "ph oto",
+ "▁Le vel",
+ "▁Lev el",
+ "▁ Level",
+ "▁g eg",
+ "▁ge g",
+ "▁ geg",
+ "To m",
+ "T om",
+ "▁M obile",
+ "▁ Mobile",
+ "▁T rop",
+ "▁Tr op",
+ "▁Tro p",
+ "Dir ection",
+ "Direct ion",
+ "D irection",
+ "is an",
+ "isa n",
+ "i san",
+ ")^ {-",
+ ")^{ -",
+ ") ^{-",
+ "▁Set ting",
+ "▁ Setting",
+ "▁Pro bably",
+ "ль я",
+ "л ья",
+ "▁as sets",
+ "▁ass ets",
+ "▁asse ts",
+ "▁asset s",
+ "▁ assets",
+ "▁a tte",
+ "▁at te",
+ "▁att e",
+ "▁ atte",
+ "▁b ulk",
+ "▁bul k",
+ "és t",
+ "é st",
+ "▁w ing",
+ "▁win g",
+ "▁ wing",
+ "ni us",
+ "niu s",
+ "n ius",
+ "▁w ins",
+ "▁win s",
+ "▁l ud",
+ "▁lu d",
+ "us hing",
+ "ush ing",
+ "▁d even",
+ "▁de ven",
+ "▁dev en",
+ "▁deve n",
+ "огра ф",
+ "о граф",
+ "burg er",
+ "bur ger",
+ "b urger",
+ "▁em bar",
+ "▁emb ar",
+ "Filter Chain",
+ "▁t um",
+ "▁tu m",
+ "▁ö ss",
+ "▁nom mé",
+ "▁p ir",
+ "▁pi r",
+ "▁l uc",
+ "▁lu c",
+ "db o",
+ "d bo",
+ "ag ues",
+ "ague s",
+ "agu es",
+ "▁al can",
+ "▁alc an",
+ "ou wen",
+ "ouw en",
+ "▁Stan ley",
+ "ци али",
+ "▁g rown",
+ "▁gr own",
+ "▁gro wn",
+ "▁grow n",
+ "▁pres erved",
+ "▁preserve d",
+ "▁s olar",
+ "▁so lar",
+ "▁sol ar",
+ "▁Насе ление",
+ "▁perform ances",
+ "▁performance s",
+ "▁C ow",
+ "▁Co w",
+ "▁engine ering",
+ "▁engineer ing",
+ "▁sc aling",
+ "▁scal ing",
+ "at omic",
+ "ato mic",
+ "atom ic",
+ "end ance",
+ "▁a ce",
+ "▁ac e",
+ "▁ ace",
+ "än gen",
+ "äng en",
+ "änge n",
+ "An im",
+ "A nim",
+ "ph ase",
+ "pha se",
+ "phas e",
+ "z burg",
+ "O ld",
+ "▁serv ant",
+ "▁geme ins",
+ "▁Ob serv",
+ "trans late",
+ "▁cover ing",
+ "▁cov ering",
+ "▁est án",
+ "▁está n",
+ "▁problem a",
+ "▁proble ma",
+ "▁probl ema",
+ "▁у станов",
+ "▁l lev",
+ "▁ll ev",
+ "▁lle v",
+ "▁c zerw",
+ "é al",
+ "me z",
+ "m ez",
+ "RE E",
+ "R EE",
+ "ER R",
+ "ту ри",
+ "тур и",
+ "se gu",
+ "seg u",
+ "s egu",
+ "▁pro fit",
+ "▁prof it",
+ "▁multip lication",
+ "kom men",
+ "k ommen",
+ "▁f aut",
+ "▁fa ut",
+ "▁candid ates",
+ "▁candidate s",
+ "▁U ri",
+ "▁Ur i",
+ "▁ Uri",
+ "▁La ura",
+ "▁Laur a",
+ "▁Lau ra",
+ "▁s ap",
+ "▁sa p",
+ "▁ви сини",
+ "▁Bet ween",
+ "fa de",
+ "f ade",
+ "▁res erved",
+ "▁reserve d",
+ "▁invol ving",
+ "▁M are",
+ "▁Mar e",
+ "▁Ma re",
+ "▁Cont ainer",
+ "▁ Container",
+ "▁на зна",
+ "▁DE BUG",
+ "▁ DEBUG",
+ "▁h urt",
+ "▁hur t",
+ "▁hu rt",
+ "▁Pol ski",
+ "▁l ux",
+ "▁lu x",
+ "C B",
+ "wa ch",
+ "w ach",
+ "▁пери од",
+ "▁перио д",
+ "▁C atherine",
+ "▁g anz",
+ "▁gan z",
+ "uch te",
+ "ucht e",
+ "u chte",
+ "▁cons umer",
+ "▁consum er",
+ "▁consume r",
+ "▁cross ed",
+ "ord ered",
+ "order ed",
+ "orde red",
+ "aw ay",
+ "awa y",
+ "a way",
+ "te chn",
+ "tech n",
+ "▁sub scri",
+ "▁subs cri",
+ "▁short cut",
+ "▁произ вод",
+ "▁simultane ously",
+ "▁r ating",
+ "▁ra ting",
+ "▁rat ing",
+ "▁ rating",
+ "▁K ings",
+ "▁King s",
+ "▁Kin gs",
+ "▁relations hips",
+ "▁relation ships",
+ "▁relationship s",
+ "▁S ex",
+ "▁Se x",
+ "▁T ool",
+ "▁To ol",
+ "▁ Tool",
+ "ag h",
+ "a gh",
+ "ac ters",
+ "act ers",
+ "acter s",
+ "log ger",
+ "hom me",
+ "en gers",
+ "eng ers",
+ "enger s",
+ "▁R i",
+ "ear ance",
+ "ea rance",
+ "▁appear ances",
+ "▁appearance s",
+ "Re al",
+ "▁p asse",
+ "▁pass e",
+ "▁pas se",
+ "ic lopedia",
+ "ч ко",
+ "ter re",
+ "▁Ont ario",
+ "▁пере да",
+ "▁перед а",
+ "fo oter",
+ "foo ter",
+ "foot er",
+ "arch ivi",
+ "archiv i",
+ "if iz",
+ "ifi z",
+ "▁Pro test",
+ "▁Prote st",
+ "▁L IN",
+ "▁LI N",
+ "▁ LIN",
+ "unn able",
+ "▁cent uries",
+ "▁B ayer",
+ "▁Ba yer",
+ "▁Bay er",
+ "ці ю",
+ "ов ин",
+ "ови н",
+ "о вин",
+ "▁And rea",
+ "▁Andre a",
+ "se lection",
+ "select ion",
+ "sel ection",
+ "▁c alm",
+ "▁cal m",
+ "▁ca lm",
+ "▁mod ification",
+ "▁modific ation",
+ "▁short ly",
+ "in aire",
+ "ina ire",
+ "i naire",
+ "▁f usion",
+ "▁fus ion",
+ "▁feel ings",
+ "▁feeling s",
+ "▁fee lings",
+ "P K",
+ "▁Ro berto",
+ "▁Robert o",
+ "г не",
+ "Sh ared",
+ "▁mehr ere",
+ "▁N iem",
+ "▁Ni em",
+ "▁Nie m",
+ "om p",
+ "o mp",
+ "En v",
+ "▁Art icle",
+ "▁P ok",
+ "▁Po k",
+ "▁V ARCHAR",
+ "▁d il",
+ "▁di l",
+ "▁af ford",
+ "▁aff ord",
+ "▁con front",
+ "▁conf ront",
+ "ow anie",
+ "owa nie",
+ "owan ie",
+ "▁min istre",
+ "▁minist re",
+ "▁mini stre",
+ "ad esh",
+ "ade sh",
+ "ades h",
+ "▁P oly",
+ "▁Pol y",
+ "▁Po ly",
+ "▁Ра спо",
+ "▁Рас по",
+ "▁Gru ppe",
+ "▁H elen",
+ "▁He len",
+ "▁Hel en",
+ "▁c c",
+ "▁ cc",
+ "▁port rait",
+ "be w",
+ "b ew",
+ "▁b eta",
+ "▁be ta",
+ "▁bet a",
+ "▁ beta",
+ "▁W ir",
+ "▁Wi r",
+ "▁A udio",
+ "▁Aud io",
+ "▁ Audio",
+ "▁( \\<",
+ "▁(\\ <",
+ "rior ity",
+ "▁n it",
+ "▁ni t",
+ "▁ nit",
+ "▁пред стави",
+ "▁представ и",
+ "▁V ie",
+ "▁Vi e",
+ "▁w ür",
+ "▁ wür",
+ "▁H old",
+ "▁Hol d",
+ "▁Ho ld",
+ "▁ Hold",
+ "▁S ad",
+ "▁Sa d",
+ "▁To chter",
+ "▁o ltre",
+ "▁ol tre",
+ "▁ oltre",
+ "▁Act iv",
+ "▁ Activ",
+ "▁J ason",
+ "▁Ja son",
+ "▁Jas on",
+ "▁wie ku",
+ "▁reg ards",
+ "▁regard s",
+ "▁t aste",
+ "▁ta ste",
+ "agnost ic",
+ "ла ся",
+ "▁S elf",
+ "▁Sel f",
+ "▁ Self",
+ "▁a pr",
+ "▁ap r",
+ "▁De ep",
+ "sc op",
+ "s cop",
+ "Act iv",
+ "▁type def",
+ "▁typed ef",
+ "Content View",
+ "comp iler",
+ "compile r",
+ "▁R oth",
+ "▁Ro th",
+ "▁Rot h",
+ "x c",
+ "зи к",
+ "▁l argo",
+ "▁lar go",
+ "▁larg o",
+ "▁R ena",
+ "▁Re na",
+ "▁Ren a",
+ "he iten",
+ "heit en",
+ "▁platform s",
+ "▁plat forms",
+ "ul la",
+ "ull a",
+ "u lla",
+ "▁gl ance",
+ "▁mas cul",
+ "▁m ex",
+ "▁me x",
+ "▁J orge",
+ "▁fun cion",
+ "▁func ion",
+ "cho ose",
+ "▁re views",
+ "▁review s",
+ "▁Al ban",
+ "▁Alb an",
+ "▁G lo",
+ "▁Gl o",
+ "▁S pecies",
+ "▁Spe cies",
+ "▁Spec ies",
+ "▁F ame",
+ "▁Fa me",
+ "▁Fam e",
+ "▁R oll",
+ "▁Ro ll",
+ "▁Rol l",
+ "▁P uerto",
+ "▁\\ )",
+ "▁ \\)",
+ "ym nas",
+ "ymn as",
+ "en viron",
+ "▁i phone",
+ "▁Wrest ling",
+ "ał y",
+ "a ły",
+ "▁Ind iana",
+ "▁India na",
+ "▁Indian a",
+ "Rad io",
+ "V S",
+ "▁independ ence",
+ "та й",
+ "▁de code",
+ "▁dec ode",
+ "▁ decode",
+ "Wh ite",
+ "▁j ourn",
+ "▁jo urn",
+ "▁jou rn",
+ "▁jour n",
+ "ícul o",
+ "í culo",
+ "▁Bar b",
+ "▁Ba rb",
+ "▁Ev angel",
+ "▁An dy",
+ "▁And y",
+ "▁Wel come",
+ "▁De vice",
+ "▁Dev ice",
+ "▁ Device",
+ "ge f",
+ "g ef",
+ "▁remember ed",
+ "▁vari ations",
+ "▁variation s",
+ "▁Ad olf",
+ "it aine",
+ "ita ine",
+ "▁надмор ској",
+ "▁s team",
+ "▁ste am",
+ "▁concern s",
+ "▁` |",
+ "▁би о",
+ "тель ства",
+ "▁qu attro",
+ "ext end",
+ "▁trab ajo",
+ "▁trabaj o",
+ "en berg",
+ "▁scen arios",
+ "▁scenario s",
+ "ân t",
+ "â nt",
+ "▁kom mt",
+ "▁komm t",
+ "▁dom estic",
+ "▁B asketball",
+ "▁Co oper",
+ "so ck",
+ "s ock",
+ "дер жа",
+ "д ержа",
+ "={ \\",
+ "= {\\",
+ "▁in ici",
+ "▁P hill",
+ "▁Ph ill",
+ "▁Phil l",
+ "▁гене рал",
+ "archivi ato",
+ "ъ н",
+ "Ro b",
+ "R ob",
+ "▁t ong",
+ "▁to ng",
+ "▁ton g",
+ "▁character istics",
+ "▁characteristic s",
+ "▁a maz",
+ "▁am az",
+ "▁M ode",
+ "▁Mod e",
+ "▁Mo de",
+ "▁ Mode",
+ "▁inaug ur",
+ "we hr",
+ "ra nt",
+ "ran t",
+ "r ant",
+ "ion ali",
+ "ional i",
+ "iona li",
+ "▁M other",
+ "▁Mo ther",
+ "▁Mot her",
+ "M a",
+ "é qu",
+ "▁K elly",
+ "▁Kel ly",
+ "ci le",
+ "cil e",
+ "c ile",
+ "▁beste ht",
+ "▁estim ates",
+ "▁estimate s",
+ "rugu ay",
+ "▁A ns",
+ "▁An s",
+ "Ma d",
+ "M ad",
+ "▁на в",
+ "▁d onnées",
+ "▁donn ées",
+ "▁donné es",
+ "▁ données",
+ "▁trop ical",
+ "▁Sever al",
+ "el ter",
+ "elt er",
+ "elte r",
+ "▁P ho",
+ "▁Ph o",
+ "ke m",
+ "k em",
+ "▁Custom er",
+ "▁ Customer",
+ "▁скла ді",
+ "▁c ourses",
+ "▁course s",
+ "▁cours es",
+ "Pl atform",
+ "nav bar",
+ "le arning",
+ "lear ning",
+ "learn ing",
+ "▁Sw edish",
+ "▁z ast",
+ "▁za st",
+ "▁zas t",
+ "▁L ig",
+ "▁Li g",
+ "man agement",
+ "▁l od",
+ "▁lo d",
+ "uff le",
+ "Text ure",
+ "Te xture",
+ "ar ga",
+ "arg a",
+ "át um",
+ "▁D DR",
+ "ні ї",
+ "н ії",
+ "▁Soci été",
+ "▁dom ains",
+ "▁domain s",
+ "▁perm itted",
+ "▁permit ted",
+ "▁ex terne",
+ "▁ext erne",
+ "▁extern e",
+ "▁quel que",
+ "v t",
+ "ym an",
+ "y man",
+ "▁W ard",
+ "▁War d",
+ "▁Wa rd",
+ "▁ag li",
+ "▁ agli",
+ "▁and ra",
+ "▁an dra",
+ "▁ andra",
+ "S napshot",
+ "▁m å",
+ "▁ye ah",
+ "де на",
+ "ден а",
+ "д ена",
+ "ęp u",
+ "ę pu",
+ "ask ell",
+ "▁Ré publique",
+ "in ject",
+ "▁' ;",
+ "▁ ';",
+ "än n",
+ "ä nn",
+ "▁z elf",
+ "▁Ent wicklung",
+ "ár ia",
+ "á ria",
+ "on omy",
+ "ono my",
+ "onom y",
+ "▁s vil",
+ "▁sv il",
+ "ie se",
+ "ies e",
+ "i ese",
+ "▁con ser",
+ "▁cons er",
+ "▁conse r",
+ "▁n im",
+ "▁ni m",
+ "▁ nim",
+ "▁r ész",
+ "▁ré sz",
+ "▁rés z",
+ "▁И тали",
+ "▁part ici",
+ "▁partic i",
+ "▁parti ci",
+ "▁L ion",
+ "▁Li on",
+ "s r",
+ "al ways",
+ "▁Влади мир",
+ "че ские",
+ "[ ,",
+ "▁Def inition",
+ "▁ Definition",
+ "na nt",
+ "nan t",
+ "n ant",
+ "oe m",
+ "o em",
+ "Id s",
+ "I ds",
+ "▁в не",
+ "▁[ ...]",
+ "▁на прав",
+ "▁нап рав",
+ "▁G O",
+ "▁ GO",
+ "▁å rs",
+ "▁år s",
+ "▁ut án",
+ "▁out ros",
+ "▁reg ión",
+ "▁M ong",
+ "▁Mon g",
+ "▁Mo ng",
+ "▁fil me",
+ "▁film e",
+ "▁tri ple",
+ "▁trip le",
+ "▁sp ons",
+ "▁spo ns",
+ "De velop",
+ "▁out come",
+ "▁B ible",
+ "▁Bi ble",
+ "▁Bib le",
+ "▁и мени",
+ "▁име ни",
+ "▁имен и",
+ "Can vas",
+ "пу та",
+ "cur r",
+ "cu rr",
+ "c urr",
+ "ás ok",
+ "){ \\",
+ ") {\\",
+ "ning ar",
+ "` ;",
+ "▁Fl ash",
+ ": #",
+ "mu st",
+ "mus t",
+ "m ust",
+ "cp u",
+ "c pu",
+ "▁form ats",
+ "▁format s",
+ "▁forma ts",
+ "Ha r",
+ "H ar",
+ "▁epis odio",
+ "▁R osa",
+ "▁Ro sa",
+ "▁Ros a",
+ "▁d ès",
+ "em it",
+ "emi t",
+ "e mit",
+ "rit eria",
+ "rite ria",
+ "riter ia",
+ "An notation",
+ "Fl ag",
+ "F lag",
+ "g mail",
+ "▁N ormal",
+ "▁Nor mal",
+ "▁Norm al",
+ "▁ Normal",
+ "oll ary",
+ "ollar y",
+ "▁f oss",
+ "▁fo ss",
+ "▁fos s",
+ "▁con current",
+ "▁conc urrent",
+ "▁ concurrent",
+ "▁crash es",
+ "▁ви де",
+ "▁вид е",
+ "▁Min or",
+ "▁Mi nor",
+ "▁S it",
+ "▁Si t",
+ "▁S N",
+ "▁ SN",
+ "▁s car",
+ "▁sc ar",
+ "▁ scar",
+ "▁fe min",
+ "▁fem in",
+ "▁spec ification",
+ "▁specific ation",
+ "so ap",
+ "▁o perate",
+ "▁oper ate",
+ "▁opera te",
+ "▁principal mente",
+ "▁a ust",
+ "▁au st",
+ "▁aus t",
+ "ib ile",
+ "ibil e",
+ "it ime",
+ "iti me",
+ "i time",
+ "ле жа",
+ "if rame",
+ "i frame",
+ "▁concept s",
+ "▁conce pts",
+ "▁t ack",
+ "▁ta ck",
+ "▁v iss",
+ "▁vis s",
+ "▁vi ss",
+ "▁car bon",
+ "ter y",
+ "te ry",
+ "t ery",
+ "▁n aming",
+ "▁na ming",
+ "▁nam ing",
+ "▁Or ts",
+ "▁Ort s",
+ "id ente",
+ "ident e",
+ "iden te",
+ "▁Cap it",
+ "▁Ca pit",
+ "▁ex pr",
+ "▁exp r",
+ "▁ expr",
+ "▁насе љу",
+ "▁Select ed",
+ "▁Sel ected",
+ "▁Sele cted",
+ "▁ Selected",
+ "▁h inter",
+ "▁hint er",
+ "▁hin ter",
+ "▁i frame",
+ "▁if rame",
+ "▁ iframe",
+ "▁z b",
+ "index Path",
+ "col l",
+ "co ll",
+ "c oll",
+ "▁wr ześ",
+ "▁a cht",
+ "▁ac ht",
+ "▁ach t",
+ "▁ acht",
+ "▁grad ually",
+ "▁gradu ally",
+ "▁ч у",
+ "▁ чу",
+ "зе й",
+ "з ей",
+ "ha ft",
+ "h aft",
+ "▁t ran",
+ "▁tr an",
+ "▁tra n",
+ "▁la quelle",
+ "yt ics",
+ "ID E",
+ "I DE",
+ "▁py game",
+ "▁pyg ame",
+ "▁P ackage",
+ "▁Pack age",
+ "▁ Package",
+ "▁class Name",
+ "▁ className",
+ "B al",
+ "pe rl",
+ "per l",
+ "ти на",
+ "тин а",
+ "O cc",
+ "▁in frastr",
+ "▁Champion s",
+ "▁Champ ions",
+ "▁class ic",
+ "▁R aw",
+ "▁Ra w",
+ "▁ Raw",
+ "▁partial ly",
+ "▁parti ally",
+ "▁T ed",
+ "▁Te d",
+ "▁sto let",
+ "ra ined",
+ "rain ed",
+ "raine d",
+ "rai ned",
+ "r ained",
+ "WH ERE",
+ "W HERE",
+ "▁v all",
+ "▁val l",
+ "▁va ll",
+ "▁Jul ia",
+ "▁Ju lia",
+ "▁Juli a",
+ "za t",
+ "z at",
+ "▁surr ounded",
+ "SE E",
+ "S EE",
+ "▁walk ing",
+ "▁wal king",
+ "B ad",
+ "FO R",
+ "F OR",
+ "con tre",
+ "cont re",
+ "contr e",
+ "▁Pal est",
+ "▁Pale st",
+ "át ico",
+ "▁engine er",
+ "▁part ners",
+ "▁partner s",
+ "▁Je ws",
+ "▁Jew s",
+ "il ers",
+ "ile rs",
+ "iler s",
+ "i lers",
+ "▁c erem",
+ "▁ce rem",
+ "▁cer em",
+ "▁inter actions",
+ "▁interaction s",
+ "▁interact ions",
+ "ac u",
+ "a cu",
+ "st y",
+ "s ty",
+ "▁Prince ss",
+ "▁Prin cess",
+ "sh arp",
+ "sha rp",
+ "▁Sing les",
+ "▁Single s",
+ "▁ї х",
+ "ch ez",
+ "che z",
+ "c hez",
+ "Rece iver",
+ "Receive r",
+ "▁pat ients",
+ "▁patient s",
+ "string ify",
+ "▁compet ed",
+ "be y",
+ "b ey",
+ "$ ;",
+ "▁B d",
+ "had oop",
+ "h adoop",
+ "▁Div isión",
+ "öl d",
+ "ö ld",
+ "▁restrict ed",
+ "▁comm ander",
+ "▁command er",
+ "▁comma nder",
+ "▁High way",
+ "▁Č esk",
+ "▁m yth",
+ "▁my th",
+ "ча н",
+ "ч ан",
+ "ra ham",
+ "rah am",
+ "▁en qu",
+ "▁p og",
+ "▁po g",
+ "▁com una",
+ "▁comun a",
+ "▁print ln",
+ "▁ println",
+ "▁к руп",
+ "▁de pois",
+ "▁dep ois",
+ "▁se ats",
+ "▁sea ts",
+ "▁seat s",
+ "▁neigh b",
+ "ци она",
+ "цион а",
+ "ag ine",
+ "agi ne",
+ "agin e",
+ "▁cloth es",
+ "▁clo thes",
+ "▁P rior",
+ "▁Pr ior",
+ "▁Pri or",
+ "Br ain",
+ "Bra in",
+ "B rain",
+ "FF FF",
+ "': '",
+ "' :'",
+ "fe atures",
+ "feature s",
+ "▁file system",
+ "▁files ystem",
+ "▁sing les",
+ "▁single s",
+ "▁Mel bourne",
+ "▁dest ruction",
+ "▁destruct ion",
+ "▁destru ction",
+ "▁Ly on",
+ "▁In sel",
+ "▁Ins el",
+ "Na v",
+ "N av",
+ "▁Re place",
+ "▁Rep lace",
+ "▁ Replace",
+ "▁l é",
+ "▁ lé",
+ "Wh o",
+ "W ho",
+ "▁E stad",
+ "▁Est ad",
+ "▁Esta d",
+ "▁dim ensional",
+ "▁dimension al",
+ "▁ dimensional",
+ "▁ö ff",
+ "▁ öff",
+ "▁gr ands",
+ "▁gran ds",
+ "▁grand s",
+ "дж а",
+ "д жа",
+ "pl ane",
+ "plan e",
+ "pla ne",
+ "p lane",
+ "но сті",
+ "ност і",
+ "нос ті",
+ "▁Or igin",
+ "▁Ori gin",
+ "▁Orig in",
+ "▁ Origin",
+ "W I",
+ "än ner",
+ "änn er",
+ "▁C ry",
+ "▁Cr y",
+ "IT ION",
+ "▁fö dd",
+ "▁cult ura",
+ "▁R ank",
+ "▁Ran k",
+ "▁v uel",
+ "▁vue l",
+ "▁vu el",
+ "▁z ag",
+ "▁za g",
+ "▁Ma xim",
+ "▁Max im",
+ "он у",
+ "о ну",
+ "() ))",
+ "()) )",
+ "( )))",
+ "R aw",
+ "kir che",
+ "k irche",
+ "▁a demás",
+ "▁t ie",
+ "▁ti e",
+ "▁St yle",
+ "▁ Style",
+ "ско в",
+ "ск ов",
+ "с ков",
+ "ist ant",
+ "ista nt",
+ "istan t",
+ "ol ph",
+ "▁Z ür",
+ "▁In fo",
+ "▁Inf o",
+ "▁ Info",
+ "DO M",
+ "D OM",
+ "us c",
+ "u sc",
+ "na hm",
+ "nah m",
+ "▁Ф едера",
+ "▁F ot",
+ "▁Fo t",
+ "▁spec ifying",
+ "▁specify ing",
+ "▁tit olo",
+ "▁Bo ys",
+ "▁Boy s",
+ "ie ch",
+ "iec h",
+ "i ech",
+ "Pl ace",
+ "P lace",
+ "▁H off",
+ "▁Ho ff",
+ "▁Hof f",
+ "▁c ached",
+ "▁ca ched",
+ "▁cache d",
+ "ва ль",
+ "вал ь",
+ "в аль",
+ "is her",
+ "ish er",
+ "roll ing",
+ "rol ling",
+ "op ens",
+ "ope ns",
+ "open s",
+ "▁h r",
+ "▁ hr",
+ "-- ----",
+ "---- --",
+ "--- ---",
+ "----- -",
+ "- -----",
+ "▁mag gior",
+ "▁maggio r",
+ "▁trans actions",
+ "▁transaction s",
+ "▁c riminal",
+ "▁crim inal",
+ "▁re tre",
+ "▁ret re",
+ "▁retr e",
+ "▁Camp bell",
+ ")) :",
+ ") ):",
+ "▁n ed",
+ "▁ne d",
+ "▁ ned",
+ "Page r",
+ "Pa ger",
+ "P ager",
+ "▁H ero",
+ "▁He ro",
+ "▁Her o",
+ "(_ _",
+ "( __",
+ "▁un cle",
+ "▁re aches",
+ "▁reach es",
+ "ar to",
+ "art o",
+ "▁h ello",
+ "▁hel lo",
+ "▁hell o",
+ "▁ hello",
+ "Pre ferences",
+ "▁за тем",
+ "Name d",
+ "Na med",
+ "N amed",
+ "▁re aders",
+ "▁read ers",
+ "▁reader s",
+ "х і",
+ "ke rn",
+ "ker n",
+ "k ern",
+ "▁у по",
+ "ки н",
+ "к ин",
+ "▁l av",
+ "▁la v",
+ "▁ lav",
+ "▁n ob",
+ "▁no b",
+ "▁se cre",
+ "▁sec re",
+ "▁List View",
+ "▁ ListView",
+ "ва ния",
+ "▁May or",
+ "bo rough",
+ "bor ough",
+ "▁fil osof",
+ "не ння",
+ "нен ня",
+ "фр и",
+ "ф ри",
+ "▁p atr",
+ "▁pat r",
+ "▁pa tr",
+ "F M",
+ "▁a cid",
+ "▁ac id",
+ "▁Salv ador",
+ "▁a bb",
+ "▁ab b",
+ "▁ abb",
+ "▁G raham",
+ "▁Gra ham",
+ "pol icy",
+ "neg ative",
+ "ński ego",
+ "ń skiego",
+ "▁He imat",
+ "▁d azu",
+ "▁da zu",
+ "▁m ely",
+ "▁me ly",
+ "▁mel y",
+ "▁r ide",
+ "▁rid e",
+ "▁ri de",
+ "▁ ride",
+ "▁du ties",
+ "▁dut ies",
+ "ov ery",
+ "over y",
+ "ove ry",
+ "o very",
+ "▁Pro position",
+ "▁Prop osition",
+ "▁Pa olo",
+ "/ '",
+ "▁M au",
+ "▁Ma u",
+ "im enti",
+ "iment i",
+ "imen ti",
+ "Sa int",
+ "S aint",
+ "fa ther",
+ "f ather",
+ "▁equ ilib",
+ "ph ony",
+ "phon y",
+ "▁c las",
+ "▁cl as",
+ "▁cla s",
+ "▁от ли",
+ "▁Buffer ed",
+ "▁Buff ered",
+ "re k",
+ "r ek",
+ "▁m itt",
+ "▁mit t",
+ "▁mi tt",
+ "▁ mitt",
+ "▁H ur",
+ "▁Hu r",
+ "▁Har vard",
+ "▁demonstr ate",
+ "ua rio",
+ "u ario",
+ "▁do lor",
+ "▁dol or",
+ "▁reject ed",
+ "▁M üller",
+ "▁n ac",
+ "▁na c",
+ "▁B elle",
+ "▁Be lle",
+ "▁Bel le",
+ "▁Bell e",
+ "▁gather ed",
+ "n r",
+ "fr ika",
+ "fri ka",
+ "öl l",
+ "ö ll",
+ "▁chem ical",
+ "ni g",
+ "n ig",
+ "▁cal c",
+ "▁ calc",
+ "▁DE FAULT",
+ "▁ DEFAULT",
+ "▁philosoph y",
+ "▁Lar avel",
+ "▁al ignment",
+ "▁align ment",
+ "E V",
+ "e or",
+ "▁d zie",
+ "▁dz ie",
+ "▁ dzie",
+ "▁m est",
+ "▁me st",
+ "▁mes t",
+ "▁I o",
+ "CR E",
+ "C RE",
+ "з ви",
+ "▁M edic",
+ "▁Me dic",
+ "▁Med ic",
+ "▁Medi c",
+ "▁n ä",
+ "▁z ab",
+ "▁za b",
+ "▁S lov",
+ "▁Sl ov",
+ "▁Slo v",
+ "ut lich",
+ "▁am plit",
+ "▁ampl it",
+ "▁amp lit",
+ "▁Fran kreich",
+ "▁Frank reich",
+ "▁к іль",
+ "▁кі ль",
+ "IN D",
+ "I ND",
+ "exec ution",
+ "▁Kar riere",
+ "d ostęp",
+ "▁r éal",
+ "▁ré al",
+ "en go",
+ "eng o",
+ "▁se vere",
+ "▁sever e",
+ "зм а",
+ "з ма",
+ "▁тур ни",
+ "▁C arter",
+ "▁Car ter",
+ "▁Cart er",
+ "▁Rob inson",
+ "▁Robin son",
+ "getElement sBy",
+ "▁pro totype",
+ "▁proto type",
+ "▁ prototype",
+ "▁jap on",
+ "▁ja pon",
+ "führ ung",
+ "f ührung",
+ "▁con segu",
+ "▁cons egu",
+ "▁conse gu",
+ "▁st udi",
+ "▁stud i",
+ "▁l ire",
+ "▁li re",
+ "▁ lire",
+ "▁sch ließ",
+ "▁ schließ",
+ "▁B uff",
+ "▁Bu ff",
+ "▁red und",
+ "▁redu nd",
+ "▁e rn",
+ "▁er n",
+ "▁ ern",
+ "▁my ster",
+ "▁myst er",
+ "▁prop rio",
+ "▁propri o",
+ "ate ful",
+ "▁Par ent",
+ "▁Pa rent",
+ "▁ Parent",
+ "▁lad ies",
+ "ra ck",
+ "rac k",
+ "r ack",
+ "ти ка",
+ "тик а",
+ "en burg",
+ "▁каче стве",
+ "▁E F",
+ "▁ EF",
+ "▁st am",
+ "▁sta m",
+ "▁nue va",
+ "▁fil tered",
+ "▁filter ed",
+ "re ten",
+ "ret en",
+ "r eten",
+ "▁I an",
+ "▁Matt hew",
+ "▁Matth ew",
+ "ki h",
+ "k ih",
+ "▁ ő",
+ "▁ком пози",
+ "▁for ever",
+ "▁fore ver",
+ "oir es",
+ "oi res",
+ "oire s",
+ "o ires",
+ ":\\ \\",
+ ": \\\\",
+ "▁ét udes",
+ "▁s oup",
+ "▁so up",
+ "▁sou p",
+ "▁p leased",
+ "▁please d",
+ "▁ple ased",
+ ")} (",
+ ") }(",
+ "▁S top",
+ "▁St op",
+ "▁Sto p",
+ "▁ Stop",
+ "Set ter",
+ "S etter",
+ "▁He lp",
+ "▁Hel p",
+ "▁ Help",
+ "▁b ars",
+ "▁bar s",
+ "▁ba rs",
+ "▁ bars",
+ "▁ER R",
+ "▁ ERR",
+ "▁( ?",
+ "▁ (?",
+ "▁po etry",
+ "▁poet ry",
+ "▁U til",
+ "▁Ut il",
+ "▁ Util",
+ "A K",
+ "▁f ick",
+ "▁fi ck",
+ "▁fic k",
+ "▁I M",
+ "▁ IM",
+ "▁pro ud",
+ "▁pr oud",
+ "но си",
+ "нос и",
+ "▁m uerte",
+ "▁mu erte",
+ "▁Palmar ès",
+ "▁N as",
+ "▁Na s",
+ "щи х",
+ "щ их",
+ "▁qu er",
+ "▁que r",
+ "▁q uer",
+ "▁ quer",
+ "▁a penas",
+ "▁ap enas",
+ "][ '",
+ "] ['",
+ "▁Kon st",
+ "по н",
+ "п он",
+ "▁Sch iff",
+ "▁m p",
+ "▁ mp",
+ "▁б лаго",
+ "fr am",
+ "fra m",
+ "f ram",
+ "▁house hold",
+ "▁t ract",
+ "▁tr act",
+ "▁tra ct",
+ "▁trac t",
+ "enc oding",
+ "▁und ert",
+ "▁under t",
+ "▁ undert",
+ "▁A ug",
+ "▁Au g",
+ "ов ан",
+ "ова н",
+ "о ван",
+ "▁Ar ten",
+ "▁Art en",
+ "▁Arte n",
+ "▁inv oked",
+ "▁invoke d",
+ "▁d ynast",
+ "▁fle et",
+ "че ство",
+ "▁Mur ray",
+ "▁g ut",
+ "▁gu t",
+ "eli hood",
+ "▁S SH",
+ "▁SS H",
+ "от вет",
+ "▁person ally",
+ "▁personal ly",
+ "при я",
+ "п рия",
+ "▁fin anci",
+ "▁finan ci",
+ "▁Thom pson",
+ "al u",
+ "a lu",
+ "id entity",
+ "ident ity",
+ "▁G rab",
+ "▁Gr ab",
+ "▁Gra b",
+ "add le",
+ "É t",
+ "▁T ob",
+ "▁To b",
+ "▁ver lor",
+ "▁verl or",
+ "▁Saint e",
+ "▁Sa inte",
+ "▁Sain te",
+ "▁d op",
+ "▁do p",
+ "▁в ере",
+ "▁ве ре",
+ "▁вер е",
+ "__ _",
+ "_ __",
+ "▁prom otion",
+ "▁- =",
+ "▁от де",
+ "▁amb igu",
+ "▁ ambigu",
+ "OR DER",
+ "ORD ER",
+ "▁Comm unic",
+ "▁Commun ic",
+ "▁im ply",
+ "▁imp ly",
+ "▁impl y",
+ "on ed",
+ "one d",
+ "o ned",
+ "clud ing",
+ "▁coll ision",
+ "▁fragment s",
+ "▁frag ments",
+ "script ion",
+ "scri ption",
+ "s cription",
+ "▁' {",
+ "ля х",
+ "л ях",
+ "▁h ans",
+ "▁ha ns",
+ "▁han s",
+ "у с",
+ "wi re",
+ "w ire",
+ "name space",
+ "names pace",
+ "▁s word",
+ "▁sw ord",
+ "▁swo rd",
+ "ref resh",
+ "▁kw am",
+ "z s",
+ "comm ons",
+ "common s",
+ "▁c osa",
+ "▁co sa",
+ "▁cos a",
+ "▁reg ime",
+ "gr ep",
+ "gre p",
+ "g rep",
+ "▁di oc",
+ "▁dio c",
+ "▁Cont act",
+ "▁ Contact",
+ "▁est as",
+ "▁esta s",
+ "▁Ste wart",
+ "▁v iele",
+ "▁vi ele",
+ "▁vie le",
+ "▁viel e",
+ "то ва",
+ "тов а",
+ "т ова",
+ "▁R an",
+ "▁Ra n",
+ "an nes",
+ "ann es",
+ "anne s",
+ "id ay",
+ "ida y",
+ "i day",
+ "▁s napshot",
+ "▁snap shot",
+ "or row",
+ "orr ow",
+ "▁za č",
+ "▁участи е",
+ "▁prom ised",
+ "▁promise d",
+ "Ass embly",
+ "▁champion ship",
+ "▁champions hip",
+ "▁Def ine",
+ "▁e ren",
+ "▁er en",
+ "▁ere n",
+ "▁ eren",
+ "▁но во",
+ "▁н ово",
+ "▁нов о",
+ "▁ ново",
+ "▁th inks",
+ "▁think s",
+ "▁thin ks",
+ "Ag e",
+ "A ge",
+ "▁g ev",
+ "▁ge v",
+ "var char",
+ "v archar",
+ "iv ità",
+ "com pos",
+ "comp os",
+ "▁M utter",
+ "▁Mut ter",
+ "CO NT",
+ "CON T",
+ "arm ée",
+ "ag net",
+ "agn et",
+ "agne t",
+ "▁B row",
+ "▁Br ow",
+ "▁Bro w",
+ ". —",
+ "▁Tele vision",
+ "▁Д ля",
+ "▁v m",
+ "▁ vm",
+ "▁or din",
+ "▁ord in",
+ "▁ ordin",
+ "▁Миха й",
+ "▁apro xim",
+ "') ->",
+ "' )->",
+ "▁z oo",
+ "▁zo o",
+ "ip pi",
+ "ipp i",
+ "i ppi",
+ "▁s ino",
+ "▁si no",
+ "▁sin o",
+ "▁Qu ébec",
+ "ra ges",
+ "rag es",
+ "rage s",
+ "r ages",
+ "ä ck",
+ "ei ng",
+ "ein g",
+ "e ing",
+ "ar lo",
+ "pi os",
+ "pio s",
+ "p ios",
+ "▁C han",
+ "▁Ch an",
+ "▁Cha n",
+ "▁el li",
+ "▁ell i",
+ "▁ elli",
+ "▁in cons",
+ "▁inc ons",
+ "▁incon s",
+ "gest ellt",
+ "g estellt",
+ "pp ers",
+ "pper s",
+ "ppe rs",
+ "p pers",
+ "Je an",
+ "anst alt",
+ "▁D ance",
+ "▁Dan ce",
+ "▁to en",
+ "▁toe n",
+ "▁de cis",
+ "▁dec is",
+ "▁Ре зу",
+ "▁official ly",
+ "▁offici ally",
+ "ät ze",
+ "ätz e",
+ "▁до ро",
+ "▁e numer",
+ "▁en umer",
+ "▁enum er",
+ "▁trois ième",
+ "ty p",
+ "t yp",
+ "of fs",
+ "off s",
+ "бо ль",
+ "od n",
+ "o dn",
+ "▁Z ar",
+ "▁Za r",
+ "▁дру го",
+ "qu ia",
+ "qui a",
+ "▁Nicol as",
+ "▁Nic olas",
+ "▁Nicola s",
+ "пи су",
+ "пис у",
+ "▁m ob",
+ "▁mo b",
+ "pa ces",
+ "pace s",
+ "p aces",
+ "нь ого",
+ "ньо го",
+ "Al g",
+ "A lg",
+ "éro ï",
+ "Error s",
+ "Err ors",
+ "▁г ре",
+ "▁ гре",
+ "▁жен щи",
+ "in ch",
+ "inc h",
+ "▁Kore an",
+ "▁Korea n",
+ "▁A post",
+ "▁Ap ost",
+ "▁L iver",
+ "▁Li ver",
+ "▁Live r",
+ "▁Liv er",
+ "▁element ary",
+ "▁D I",
+ "▁ DI",
+ "ви си",
+ "▁so il",
+ "▁D LL",
+ "▁r isp",
+ "▁ris p",
+ "▁ri sp",
+ "▁Sh akespe",
+ "▁G aussian",
+ "▁K urt",
+ "▁Kur t",
+ "▁Ku rt",
+ "Ver tex",
+ "Vert ex",
+ "eb ol",
+ "e bol",
+ "organ isation",
+ "är en",
+ "äre n",
+ "ä ren",
+ "▁Y ES",
+ "▁ YES",
+ "C UR",
+ "▁нача ль",
+ "▁по стро",
+ "▁пос тро",
+ "▁Lu igi",
+ "▁c aching",
+ "prevent Default",
+ "am d",
+ "a md",
+ "▁V it",
+ "▁Vi t",
+ "sub st",
+ "su bst",
+ "▁ст рои",
+ "▁C ampion",
+ "▁Camp ion",
+ "ch r",
+ "c hr",
+ "фе ре",
+ "фер е",
+ "ф ере",
+ "▁С писок",
+ "N F",
+ "▁c ím",
+ "▁cí m",
+ "▁h é",
+ "▁ hé",
+ "re bbe",
+ "reb be",
+ "oc y",
+ "o cy",
+ "be low",
+ "bel ow",
+ "▁by lo",
+ "▁byl o",
+ "▁У и",
+ "▁\\ ({\\",
+ "▁\\( {\\",
+ "▁` :",
+ "▁ `:",
+ "gi ore",
+ "gio re",
+ "gior e",
+ "g iore",
+ "Sa n",
+ "S an",
+ "▁G ate",
+ "▁Ga te",
+ "▁в с",
+ "▁o limp",
+ "▁ol imp",
+ "▁Mat rix",
+ "▁ Matrix",
+ "▁he aring",
+ "▁hear ing",
+ "ri i",
+ "r ii",
+ "tf rac",
+ "t frac",
+ "▁allem and",
+ "▁V ue",
+ "л н",
+ "▁comp iling",
+ "▁E ns",
+ "▁En s",
+ "▁investig ation",
+ "▁A x",
+ "▁ch ars",
+ "▁char s",
+ "▁cha rs",
+ "▁target s",
+ "▁tar gets",
+ "▁l oud",
+ "▁lo ud",
+ "us ement",
+ "use ment",
+ "▁N ether",
+ "▁Ne ther",
+ "▁Net her",
+ "com merce",
+ "IG HT",
+ "oc oa",
+ "oco a",
+ "if ecycle",
+ "ife cycle",
+ "▁Le o",
+ "pr iv",
+ "p riv",
+ "▁go ods",
+ "▁good s",
+ "ad amente",
+ "ada mente",
+ "A ustral",
+ "▁re boot",
+ "▁reb oot",
+ "Ge st",
+ "G est",
+ "▁represent ations",
+ "▁representation s",
+ "ce u",
+ "c eu",
+ "▁do ctrine",
+ "ce rs",
+ "cer s",
+ "c ers",
+ "▁K rak",
+ "▁Kr ak",
+ "▁Kra k",
+ "▁adv oc",
+ "▁squad ra",
+ "▁arbeit ete",
+ "üs t",
+ "ü st",
+ "▁p ill",
+ "▁pi ll",
+ "▁pil l",
+ "An swer",
+ "▁к віт",
+ "▁W a",
+ "um ann",
+ "uman n",
+ "uma nn",
+ "u mann",
+ "▁D ynam",
+ "▁Dy nam",
+ "Fa mil",
+ "F amil",
+ "▁t ennis",
+ "▁ten nis",
+ "▁Engine ering",
+ "▁circ les",
+ "▁cir cles",
+ "▁circle s",
+ "▁Mary land",
+ "▁b esta",
+ "▁be sta",
+ "▁best a",
+ "▁bes ta",
+ "▁b ases",
+ "▁bas es",
+ "▁base s",
+ "▁znaj du",
+ "ктор а",
+ "кто ра",
+ "к тора",
+ "▁ar rest",
+ "▁arr est",
+ "ле р",
+ "л ер",
+ "▁G ia",
+ "▁Gi a",
+ "▁remark able",
+ "▁мо гу",
+ "▁Sup reme",
+ "▁` %",
+ "do r",
+ "d or",
+ "▁au jourd",
+ "▁w is",
+ "WID TH",
+ "▁mis ma",
+ "▁mism a",
+ "▁fl uid",
+ "▁flu id",
+ "▁pet ite",
+ "▁petit e",
+ "▁T ow",
+ "▁To w",
+ "Reg istry",
+ "em ed",
+ "eme d",
+ "e med",
+ "▁Wis consin",
+ "▁R acing",
+ "▁Ra cing",
+ "▁reg istration",
+ "▁registr ation",
+ "/ %",
+ "th ird",
+ "▁mon uments",
+ "▁monument s",
+ "че й",
+ "ч ей",
+ "▁j et",
+ "▁je t",
+ "▁ jet",
+ "▁Ur ban",
+ "ál va",
+ "▁mil ieu",
+ "▁poss ess",
+ "▁g erm",
+ "▁ge rm",
+ "▁ger m",
+ "dep endencies",
+ "▁enem ies",
+ "▁s amen",
+ "▁sa men",
+ "▁same n",
+ "▁sam en",
+ "▁W erner",
+ "▁Wer ner",
+ "▁h izo",
+ "▁hi zo",
+ "▁t d",
+ "▁ td",
+ "▁y esterday",
+ "▁А д",
+ "▁ha sn",
+ "▁has n",
+ "cel lation",
+ "cell ation",
+ "ov ání",
+ "ová ní",
+ "li ka",
+ "lik a",
+ "l ika",
+ "We ek",
+ "▁I ng",
+ "▁In g",
+ "▁E mail",
+ "▁Em ail",
+ "▁ Email",
+ "▁m ètres",
+ "▁O CLC",
+ "▁among st",
+ "▁spl end",
+ "fu r",
+ "f ur",
+ "ant ics",
+ "anti cs",
+ "antic s",
+ "▁X XX",
+ "▁XX X",
+ "▁ XXX",
+ "▁груп пы",
+ "la ch",
+ "lac h",
+ "l ach",
+ "▁c ousin",
+ "▁cou sin",
+ "▁in variant",
+ "▁invari ant",
+ "ђ у",
+ "▁Be ispiel",
+ "▁Bei spiel",
+ "▁hard er",
+ "▁har der",
+ "▁b ell",
+ "▁be ll",
+ "▁bel l",
+ "▁ bell",
+ "▁or ch",
+ "▁ orch",
+ "t b",
+ "Foot note",
+ "re gon",
+ "reg on",
+ "Mart in",
+ "▁in con",
+ "▁inc on",
+ "▁attack ed",
+ "_{ -",
+ "_ {-",
+ "▁T ras",
+ "▁Tr as",
+ "▁Tra s",
+ "par ty",
+ "part y",
+ "ite it",
+ "▁s aint",
+ "▁sa int",
+ "▁sain t",
+ "rás ok",
+ "r ások",
+ "▁contain ers",
+ "▁container s",
+ "M o",
+ "▁S n",
+ "quant ity",
+ "▁r as",
+ "▁ra s",
+ "▁ ras",
+ "▁C anal",
+ "▁Can al",
+ "▁Ca nal",
+ "cc ion",
+ "c cion",
+ "uv o",
+ "u vo",
+ "▁i dx",
+ "▁id x",
+ "▁ idx",
+ "type name",
+ "typen ame",
+ "typ ename",
+ "▁R ugby",
+ "▁Se ems",
+ "▁See ms",
+ "▁trans mit",
+ "▁transm it",
+ "▁Pr äsident",
+ "з не",
+ "▁B aker",
+ "▁Ba ker",
+ "▁Bak er",
+ "in th",
+ "int h",
+ "i nth",
+ "▁tö bb",
+ "ver ein",
+ "vere in",
+ "▁espe cie",
+ "▁espec ie",
+ ", (",
+ "▁t éc",
+ "▁té c",
+ "▁W ITH",
+ "▁u nos",
+ "▁un os",
+ "▁uno s",
+ "▁ unos",
+ "▁polit ics",
+ "create Element",
+ "▁st ats",
+ "▁stat s",
+ "▁sta ts",
+ "▁ stats",
+ "▁T ennessee",
+ "▁Bedeut ung",
+ "▁S creen",
+ "▁Sc reen",
+ "▁ Screen",
+ "▁Stra ße",
+ "an ze",
+ "anz e",
+ "▁part ly",
+ "man uel",
+ "ol ation",
+ "ola tion",
+ "o lation",
+ "hor izontal",
+ "érie ure",
+ "érieur e",
+ "am pio",
+ "amp io",
+ "▁ст рук",
+ "▁ струк",
+ "We ight",
+ "La nd",
+ "L and",
+ "po ly",
+ "pol y",
+ "p oly",
+ "▁D ak",
+ "▁Da k",
+ "▁Ass ume",
+ "\". $",
+ "\" .$",
+ "▁c asi",
+ "▁cas i",
+ "▁ca si",
+ "▁g ross",
+ "▁gr oss",
+ "▁gro ss",
+ "▁gros s",
+ "▁ent ertain",
+ "▁enter tain",
+ "▁déc ada",
+ "'. $",
+ "' .$",
+ "en cer",
+ "ence r",
+ "enc er",
+ "▁guarante ed",
+ "▁guarantee d",
+ "]$ .",
+ "] $.",
+ "ли ся",
+ "▁accept able",
+ "ra ise",
+ "rai se",
+ "rais e",
+ "ir us",
+ "i rus",
+ "we it",
+ "wei t",
+ "▁А на",
+ "▁Ан а",
+ "▁h ills",
+ "▁hill s",
+ "ip age",
+ "i page",
+ "BI T",
+ "B IT",
+ "▁nu cle",
+ "▁nuc le",
+ "▁ut ilis",
+ "▁util is",
+ "CA A",
+ "C AA",
+ "ène s",
+ "èn es",
+ "è nes",
+ "▁Schwe iz",
+ "▁A A",
+ "▁ AA",
+ "ning er",
+ "n inger",
+ "▁b ands",
+ "▁band s",
+ "▁ban ds",
+ "▁t ender",
+ "▁te nder",
+ "▁ten der",
+ "▁tend er",
+ "so m",
+ "s om",
+ "W arning",
+ "▁B ischof",
+ "▁A rc",
+ "▁Ar c",
+ "▁W oman",
+ "▁Wo man",
+ "▁trans mission",
+ "▁transm ission",
+ "ч ни",
+ "is tre",
+ "ist re",
+ "istr e",
+ "i stre",
+ "B Y",
+ "▁S I",
+ "▁ SI",
+ "▁П ар",
+ "▁Па р",
+ "▁} ).",
+ "▁}) .",
+ "▁ }).",
+ "▁present a",
+ "▁pres enta",
+ "▁Re né",
+ "▁Ren é",
+ "▁happ iness",
+ "▁P unk",
+ "col s",
+ "co ls",
+ "c ols",
+ "▁Des de",
+ "рё х",
+ "▁м она",
+ "▁мо на",
+ "▁scr atch",
+ "▁t cp",
+ "▁ tcp",
+ "ête s",
+ "êt es",
+ "ê tes",
+ "it ated",
+ "ita ted",
+ "itat ed",
+ "itate d",
+ "▁dif eren",
+ "▁difer en",
+ "ge h",
+ "g eh",
+ "na hmen",
+ "nah men",
+ "nahme n",
+ "nahm en",
+ "П е",
+ "ck i",
+ "c ki",
+ "▁Te atro",
+ "▁Re member",
+ "▁Rem ember",
+ "▁f right",
+ "▁fr ight",
+ "▁Y am",
+ "▁Ya m",
+ "west ern",
+ "le ted",
+ "let ed",
+ "lete d",
+ "▁в стре",
+ "▁вс тре",
+ "▁telep ülés",
+ "зи н",
+ "з ин",
+ "▁Qu ant",
+ "▁ Quant",
+ "▁su pre",
+ "▁sup re",
+ "áj a",
+ "á ja",
+ "ді я",
+ "д ія",
+ "▁car rera",
+ "▁carre ra",
+ "kre t",
+ "kr et",
+ "k ret",
+ "par a",
+ "pa ra",
+ "p ara",
+ "▁S UM",
+ "▁SU M",
+ "▁ SUM",
+ "▁p it",
+ "▁pi t",
+ "▁ pit",
+ "ź dz",
+ "é o",
+ "ре ння",
+ "рен ня",
+ "▁C hor",
+ "▁Ch or",
+ "▁Cho r",
+ "▁vo ix",
+ "▁exec utive",
+ "▁execut ive",
+ "▁all erdings",
+ "May be",
+ "▁д ень",
+ "▁де нь",
+ "▁f lying",
+ "▁fl ying",
+ "▁fly ing",
+ "▁par liament",
+ "жда н",
+ "ж дан",
+ "▁f ram",
+ "▁fr am",
+ "▁fra m",
+ "▁ fram",
+ "▁жов т",
+ "▁u gly",
+ "▁бу ду",
+ "ig ny",
+ "ign y",
+ "\\| _{",
+ "\\ |_{",
+ "▁b itter",
+ "▁bit ter",
+ "sc e",
+ "s ce",
+ "▁p ole",
+ "▁po le",
+ "▁pol e",
+ "▁ pole",
+ "Ver lag",
+ "▁total ité",
+ "▁found ation",
+ "j t",
+ "▁s lice",
+ "▁sl ice",
+ "▁sli ce",
+ "▁ slice",
+ "if ique",
+ "ifi que",
+ "▁integr ate",
+ "▁integra te",
+ "st rij",
+ "str ij",
+ "▁asym pt",
+ "▁е му",
+ "▁pert urb",
+ "▁F low",
+ "▁Fl ow",
+ "▁Flo w",
+ "▁ Flow",
+ "jb oss",
+ "RI G",
+ "R IG",
+ "▁A less",
+ "▁Al ess",
+ "▁Ale ss",
+ "XX X",
+ "X XX",
+ "▁s umm",
+ "▁su mm",
+ "▁sum m",
+ "sql ite",
+ "▁che er",
+ "pr ob",
+ "pro b",
+ "p rob",
+ "▁G PU",
+ "▁GP U",
+ "zi ł",
+ "z ił",
+ "(* )",
+ "( *)",
+ "▁in duct",
+ "▁ind uct",
+ "▁indu ct",
+ "RA Y",
+ "bl att",
+ "bla tt",
+ "qu esta",
+ "que sta",
+ "quest a",
+ "ques ta",
+ "or u",
+ "o ru",
+ "▁In side",
+ "▁Ins ide",
+ "▁Mc G",
+ "▁N ep",
+ "▁Ne p",
+ "м п",
+ "▁in ve",
+ "▁inv e",
+ "▁An imal",
+ "▁Anim al",
+ "▁s ob",
+ "▁so b",
+ "▁ sob",
+ "ít ott",
+ "loy ment",
+ "▁b und",
+ "▁bu nd",
+ "▁ bund",
+ "St ation",
+ "Stat ion",
+ "▁B EGIN",
+ "▁part iellement",
+ "ig g",
+ "i gg",
+ "est ore",
+ "esto re",
+ "e store",
+ "▁co inc",
+ "▁coin c",
+ "▁Som mer",
+ "▁m d",
+ "▁ md",
+ "▁loc ked",
+ "▁lock ed",
+ "▁ locked",
+ "math char",
+ "ar ma",
+ "arm a",
+ "pe nt",
+ "pen t",
+ "p ent",
+ "ar ium",
+ "ari um",
+ "a rium",
+ "▁e ars",
+ "▁ear s",
+ "▁ ears",
+ "▁S ongs",
+ "▁Son gs",
+ "▁Song s",
+ "▁similar ly",
+ "▁liter ally",
+ "▁literal ly",
+ "▁in ches",
+ "▁inc hes",
+ "▁af fection",
+ "▁aff ection",
+ "▁affect ion",
+ "l p",
+ "▁con cluded",
+ "▁conclude d",
+ "▁му ніципалі",
+ "▁па мя",
+ "est aur",
+ "esta ur",
+ "▁J osh",
+ "▁Jo sh",
+ "▁Jos h",
+ "▁F ritz",
+ "▁Fr itz",
+ "▁Fri tz",
+ "DB C",
+ "D BC",
+ "д ён",
+ "pos a",
+ "po sa",
+ "p osa",
+ "▁gold en",
+ "▁gol den",
+ "▁p c",
+ "▁ pc",
+ "▁com te",
+ "▁Z iel",
+ "▁Zie l",
+ "▁prés ente",
+ "▁présent e",
+ "mar ks",
+ "mark s",
+ "m arks",
+ "ig neur",
+ "ign eur",
+ "igne ur",
+ "▁D rive",
+ "▁Dr ive",
+ "▁neg lect",
+ "▁roz p",
+ "▁F ive",
+ "sp aces",
+ "space s",
+ "s paces",
+ "▁M edi",
+ "▁Me di",
+ "▁Med i",
+ "▁ex isted",
+ "▁exist ed",
+ "▁existe d",
+ "▁by ła",
+ "▁był a",
+ "дж и",
+ "д жи",
+ "▁fr ente",
+ "т ник",
+ "od d",
+ "o dd",
+ "▁answer ing",
+ "bi an",
+ "bia n",
+ "b ian",
+ "▁E ugen",
+ "▁Eu gen",
+ "▁Eug en",
+ "▁Public ations",
+ "▁Pub lications",
+ "▁D ia",
+ "▁Di a",
+ "l á",
+ "▁' _",
+ "▁ '_",
+ "▁rec uper",
+ "ом у",
+ "о му",
+ "▁App end",
+ "▁Ap pend",
+ "▁ Append",
+ "ob ar",
+ "oba r",
+ "o bar",
+ "▁employ ees",
+ "▁employee s",
+ "▁comp ens",
+ "eme tery",
+ "emet ery",
+ "▁э лект",
+ "MO N",
+ "M ON",
+ "ol in",
+ "oli n",
+ "o lin",
+ "▁histor ic",
+ "hi s",
+ "h is",
+ "ą d",
+ "n m",
+ "▁G oth",
+ "▁Go th",
+ "▁Got h",
+ "▁st ress",
+ "▁str ess",
+ "▁stre ss",
+ "▁parte cip",
+ "▁A w",
+ "▁s ar",
+ "▁sa r",
+ "▁h u",
+ "▁ hu",
+ "▁mat plotlib",
+ "▁M yst",
+ "▁My st",
+ "▁Mys t",
+ "() ;`",
+ "(); `",
+ "( );`",
+ "sch ein",
+ "sc hein",
+ "sche in",
+ "Long rightarrow",
+ "▁р я",
+ "▁ ря",
+ "▁Is ra",
+ "[ ^",
+ "no u",
+ "n ou",
+ "▁syn d",
+ "▁sy nd",
+ "work ing",
+ "wor king",
+ "▁N ation",
+ "▁Na tion",
+ "▁Nat ion",
+ "▁P ent",
+ "▁Pe nt",
+ "▁Pen t",
+ "▁k lass",
+ "▁kl ass",
+ "▁klas s",
+ "▁applic able",
+ "▁D iam",
+ "▁Di am",
+ "▁Dia m",
+ "▁bras ile",
+ "▁p ac",
+ "▁pa c",
+ "▁He ight",
+ "▁ Height",
+ "P ut",
+ "▁int ro",
+ "▁intr o",
+ "▁ intro",
+ "▁unus ual",
+ "na s",
+ "n as",
+ "▁Geb äude",
+ "▁be am",
+ "▁R ect",
+ "▁Re ct",
+ "▁Rec t",
+ "▁ Rect",
+ "▁Prim era",
+ "▁Prime ra",
+ "▁h aut",
+ "▁ha ut",
+ "▁t rait",
+ "▁tr ait",
+ "▁tra it",
+ "prü ft",
+ "in ación",
+ "ina ción",
+ "▁configuration s",
+ "▁configur ations",
+ "▁g ilt",
+ "▁gi lt",
+ "▁territ oire",
+ "he z",
+ "h ez",
+ "▁al te",
+ "▁alt e",
+ "rel ative",
+ "Ex cel",
+ "▁W right",
+ "G V",
+ "по ли",
+ "пол и",
+ "Qu ant",
+ "▁ga uge",
+ "▁gau ge",
+ "▁multi ply",
+ "▁multip ly",
+ "AS S",
+ "A SS",
+ "ствен но",
+ "ан у",
+ "а ну",
+ "▁j eden",
+ "▁je den",
+ "▁jed en",
+ "▁liter ary",
+ "▁D ro",
+ "▁Dr o",
+ "▁adv ise",
+ "▁advis e",
+ "it zen",
+ "itz en",
+ "▁dis ag",
+ "web site",
+ "▁д ія",
+ "▁ді я",
+ "▁ дія",
+ "▁ob server",
+ "▁obser ver",
+ "▁observ er",
+ "▁observe r",
+ "▁janu ár",
+ "v ě",
+ "ku p",
+ "k up",
+ "▁S es",
+ "▁Se s",
+ "▁woj ew",
+ "▁st ages",
+ "▁stage s",
+ "▁sta ges",
+ "▁stag es",
+ "▁вре мени",
+ "▁време ни",
+ "łu ż",
+ "но с",
+ "н ос",
+ "Down load",
+ "ip o",
+ "i po",
+ "▁g raf",
+ "▁gr af",
+ "▁gra f",
+ "▁ро бо",
+ "▁Nik ol",
+ "▁Ni kol",
+ "▁f ic",
+ "▁fi c",
+ "▁ fic",
+ "▁jo ining",
+ "▁join ing",
+ "▁divers os",
+ "▁LI KE",
+ "▁F itz",
+ "▁d imin",
+ "▁di min",
+ "▁dim in",
+ "▁dist rib",
+ "Sa m",
+ "S am",
+ "ko z",
+ "k oz",
+ "▁al phabet",
+ "▁alpha bet",
+ "os er",
+ "ose r",
+ "o ser",
+ "OU R",
+ "O UR",
+ "uk a",
+ "u ka",
+ "ка я",
+ "▁ste el",
+ "▁` --",
+ "▁`- -",
+ "▁t ener",
+ "▁te ner",
+ "▁ten er",
+ "mar ker",
+ "mark er",
+ "▁He aven",
+ "new command",
+ "▁prison ers",
+ "▁prisoner s",
+ "▁K night",
+ "▁Kn ight",
+ "▁present s",
+ "▁pres ents",
+ "▁qu esti",
+ "▁quest i",
+ "▁tr ains",
+ "▁tra ins",
+ "▁train s",
+ "op era",
+ "ope ra",
+ "oper a",
+ "▁Li near",
+ "▁Lin ear",
+ "▁Line ar",
+ "▁ Linear",
+ "▁M E",
+ "▁ ME",
+ "▁B uc",
+ "▁Bu c",
+ "Le g",
+ "L eg",
+ "▁ag ua",
+ "▁ agua",
+ "▁Gr iff",
+ "ol g",
+ "o lg",
+ "ds t",
+ "d st",
+ ". \r",
+ "▁person es",
+ "▁pers ones",
+ "▁persone s",
+ "Ma l",
+ "M al",
+ "бе ре",
+ "бер е",
+ "б ере",
+ "fol ge",
+ "folg e",
+ "▁ac ab",
+ "ct u",
+ "c tu",
+ "pt ic",
+ "▁N avigation",
+ "▁ Navigation",
+ "R uss",
+ "га ль",
+ "г аль",
+ "▁F ul",
+ "▁Fu l",
+ "▁ма є",
+ "чна я",
+ "ч ная",
+ "wn er",
+ "w ner",
+ "con tra",
+ "cont ra",
+ "contr a",
+ "▁jou eur",
+ "▁joue ur",
+ "▁J ess",
+ "▁Je ss",
+ "▁Jes s",
+ "▁re new",
+ "▁ren ew",
+ "▁l ap",
+ "▁la p",
+ "▁ lap",
+ "▁cas ting",
+ "▁cast ing",
+ "ga l",
+ "g al",
+ "▁tém atu",
+ "▁на зыва",
+ "за х",
+ "ч не",
+ ")- \\",
+ ") -\\",
+ "▁ча сто",
+ "▁час то",
+ "▁част о",
+ "}$ -",
+ "} $-",
+ "▁l icz",
+ "▁li cz",
+ "▁lic z",
+ "▁e mot",
+ "▁em ot",
+ "ha rm",
+ "har m",
+ "h arm",
+ "▁occasion ally",
+ "▁hor ror",
+ "▁ho rror",
+ "ea st",
+ "e ast",
+ "▁pr inter",
+ "▁print er",
+ "▁prin ter",
+ "ar an",
+ "ara n",
+ "a ran",
+ "▁Miss iss",
+ "fol low",
+ "f ollow",
+ "▁Bar ry",
+ "▁investig ate",
+ "go w",
+ "g ow",
+ "▁Amer icans",
+ "▁American s",
+ "▁America ns",
+ "S ince",
+ "▁від о",
+ "▁ві до",
+ "▁re un",
+ "os ci",
+ "osc i",
+ "o sci",
+ "▁Ch apter",
+ "▁Chap ter",
+ "▁b ay",
+ "▁ba y",
+ "▁ bay",
+ "ро ме",
+ "ром е",
+ "et he",
+ "eth e",
+ "e the",
+ "éd ie",
+ "é die",
+ "com ot",
+ "co mot",
+ "como t",
+ "▁miejs cowo",
+ "▁stud ierte",
+ "▁studi erte",
+ "ou vert",
+ "ouv ert",
+ "ouve rt",
+ "ouver t",
+ "▁к ур",
+ "▁ку р",
+ "▁ кур",
+ "▁DE SC",
+ "▁DES C",
+ "▁touch ed",
+ "▁tou ched",
+ "▁Jer ry",
+ "ue se",
+ "ues e",
+ "u ese",
+ "ли ще",
+ "auth entication",
+ "authentic ation",
+ "▁col le",
+ "▁co lle",
+ "▁coll e",
+ "he art",
+ "▁reg iment",
+ "▁regime nt",
+ "cri bed",
+ "cribe d",
+ "▁Бо ль",
+ "▁про ис",
+ "ce ae",
+ "▁mass es",
+ "▁sc rolling",
+ "▁scroll ing",
+ "us to",
+ "ust o",
+ "u sto",
+ "S W",
+ "ov at",
+ "ova t",
+ "o vat",
+ "▁gr âce",
+ "▁Архи в",
+ "▁Се вер",
+ "av ait",
+ "ava it",
+ "▁Marsh all",
+ "▁Mars hall",
+ "▁Hash Map",
+ "▁ HashMap",
+ "ac on",
+ "aco n",
+ "a con",
+ "ück en",
+ "ücke n",
+ "ü cken",
+ "[] )",
+ "[ ])",
+ "▁ev angel",
+ "et zung",
+ "etz ung",
+ "tt emberg",
+ "st ers",
+ "ste rs",
+ "ster s",
+ "s ters",
+ "T M",
+ "▁ли тера",
+ "qu ot",
+ "Pr ed",
+ "Pre d",
+ "P red",
+ "▁w erk",
+ "▁wer k",
+ "▁ werk",
+ "▁ha ber",
+ "▁hab er",
+ "▁habe r",
+ "la va",
+ "lav a",
+ "l ava",
+ "vo us",
+ "v ous",
+ "▁L ate",
+ "▁La te",
+ "▁Lat e",
+ "cy cle",
+ "cyc le",
+ "c ycle",
+ "ти рова",
+ "▁про ду",
+ "▁прод у",
+ "▁pop ulations",
+ "▁population s",
+ "▁popul ations",
+ "▁Y an",
+ "▁Ya n",
+ "Pre fix",
+ "P refix",
+ "actér istiques",
+ "+ '",
+ "() `](",
+ "()` ](",
+ "▁Л ь",
+ "фи ль",
+ "▁жи зни",
+ "ft p",
+ "f tp",
+ "▁все х",
+ "▁g dzie",
+ "▁v idea",
+ "▁vid ea",
+ "▁vide a",
+ "oa uth",
+ "o auth",
+ "▁p id",
+ "▁pi d",
+ "▁ pid",
+ "ů m",
+ "▁p esso",
+ "▁pes so",
+ "▁track ing",
+ "▁trac king",
+ "iz in",
+ "izi n",
+ "i zin",
+ "▁Mor ris",
+ "щи й",
+ "▁Provin z",
+ "▁M itte",
+ "▁Mit te",
+ "▁Mi tte",
+ "▁Mitt e",
+ "▁artific ial",
+ "bráz ky",
+ "▁до сти",
+ "▁rest ored",
+ "▁restore d",
+ "▁resto red",
+ "▁commun icate",
+ "▁communic ate",
+ "ag it",
+ "agi t",
+ "a git",
+ "Rec ogn",
+ "▁l on",
+ "▁lo n",
+ "▁ lon",
+ "▁за ня",
+ "▁зан я",
+ "▁Arg ument",
+ "▁ Argument",
+ "fl ush",
+ "flu sh",
+ "ма на",
+ "ман а",
+ "м ана",
+ "sec onds",
+ "second s",
+ "U C",
+ "▁R uth",
+ "▁Ru th",
+ "▁t ub",
+ "▁tu b",
+ "▁B ret",
+ "▁Br et",
+ "▁Bre t",
+ "▁P ere",
+ "▁Per e",
+ "▁Pe re",
+ "▁respons ibility",
+ "ńcz y",
+ "ń czy",
+ "▁environment s",
+ "▁environ ments",
+ "ke e",
+ "k ee",
+ "▁g root",
+ "▁gr oot",
+ "▁gro ot",
+ "▁pain ted",
+ "▁paint ed",
+ "▁Éd itions",
+ "cp y",
+ "c py",
+ "ár t",
+ "á rt",
+ "lich keit",
+ "ar da",
+ "ard a",
+ "B atch",
+ "▁Leop old",
+ "re ason",
+ "rea son",
+ "reas on",
+ "n oreferrer",
+ "se ns",
+ "sen s",
+ "s ens",
+ "▁ro cks",
+ "▁rock s",
+ "▁Hit ler",
+ "ла т",
+ "л ат",
+ "▁qu oted",
+ "▁quot ed",
+ "▁quote d",
+ "▁ко лле",
+ "▁у ров",
+ "ba g",
+ "b ag",
+ ".\" )",
+ ". \")",
+ "▁M L",
+ "▁ ML",
+ "▁kom t",
+ "▁ko mt",
+ "▁[ _",
+ "▁ [_",
+ "▁spect ral",
+ "ed o",
+ "e do",
+ "▁in sieme",
+ "▁suffer ing",
+ "▁suff ering",
+ "sl ider",
+ "slide r",
+ "▁Kenn edy",
+ "ol ate",
+ "ola te",
+ "o late",
+ "▁P atri",
+ "▁Pa tri",
+ "▁Pat ri",
+ "зи и",
+ "O H",
+ "▁те а",
+ "▁пра ва",
+ "▁прав а",
+ "ма х",
+ "re write",
+ "rew rite",
+ "r ewrite",
+ "▁Eins atz",
+ "ex ternal",
+ "ext ernal",
+ "hol ds",
+ "hold s",
+ "h olds",
+ "▁P laces",
+ "▁Pl aces",
+ "▁Pla ces",
+ "▁Place s",
+ "at ype",
+ "aty pe",
+ "a type",
+ "▁vul ner",
+ "▁abandon ed",
+ "Or igin",
+ "Ori gin",
+ "▁max imal",
+ "▁maxim al",
+ "AA AA",
+ "▁Base ball",
+ "▁C lose",
+ "▁Cl ose",
+ "▁Clo se",
+ "▁ Close",
+ "▁pa inter",
+ "▁pain ter",
+ "▁paint er",
+ "▁assign ing",
+ "N B",
+ "bl ast",
+ "bla st",
+ "b last",
+ "▁K ünstler",
+ ")] (",
+ ") ](",
+ "fa ch",
+ "fac h",
+ "f ach",
+ "▁Const antin",
+ "▁Constant in",
+ "ok es",
+ "oke s",
+ "o kes",
+ "▁no body",
+ "▁nob ody",
+ "▁subt ract",
+ "▁fos se",
+ "▁foss e",
+ "▁cert ific",
+ "▁m use",
+ "▁mus e",
+ "▁mu se",
+ "/) ,",
+ "/ ),",
+ "▁Pro fil",
+ "▁Prof il",
+ "▁pro xim",
+ "▁Jer usalem",
+ "▁simp licity",
+ "▁simpl icity",
+ "▁w sz",
+ "▁ws z",
+ "NUM BER",
+ "utt avia",
+ "U ITableView",
+ "ich ter",
+ "icht er",
+ "ichte r",
+ "i chter",
+ "жа н",
+ "ж ан",
+ "▁L av",
+ "▁La v",
+ "it chen",
+ "itch en",
+ "▁Ч ем",
+ "▁Че м",
+ "T u",
+ "▁ge om",
+ "▁zv uky",
+ "▁Sur vey",
+ "AN CE",
+ "▁enc rypted",
+ "▁encrypt ed",
+ "pr of",
+ "pro f",
+ "▁d are",
+ "▁da re",
+ "▁dar e",
+ "▁L oren",
+ "▁Lo ren",
+ "▁Lor en",
+ "т в",
+ "▁А лек",
+ "▁Ал ек",
+ "▁comput ers",
+ "▁computer s",
+ "▁compute rs",
+ "▁expect ation",
+ "▁substant ial",
+ "▁Д ми",
+ "▁` {",
+ "▁д ра",
+ "▁др а",
+ "▁ дра",
+ "ub ble",
+ "▁per forms",
+ "▁perform s",
+ "▁Kr ieg",
+ "▁Krie g",
+ "▁in coming",
+ "▁inc oming",
+ "▁Class ification",
+ "Web View",
+ "▁epis odes",
+ "▁episode s",
+ "ap per",
+ "app er",
+ "appe r",
+ "a pper",
+ "äu fig",
+ "▁gi ov",
+ "▁De part",
+ "▁Dep art",
+ "бо ра",
+ "бор а",
+ "ed ly",
+ "os pod",
+ "osp od",
+ "▁p tr",
+ "▁pt r",
+ "▁ ptr",
+ "▁d átum",
+ "▁est imation",
+ "▁estim ation",
+ "ic ole",
+ "ico le",
+ "icol e",
+ "i cole",
+ "▁- ---",
+ "▁-- --",
+ "▁--- -",
+ "▁ ----",
+ "▁prin ces",
+ "▁prince s",
+ "HE AD",
+ "▁diff usion",
+ "▁diffus ion",
+ "▁d rie",
+ "▁dr ie",
+ "▁dri e",
+ "▁A da",
+ "▁Ad a",
+ "ни це",
+ "ниц е",
+ "ng inx",
+ "n ginx",
+ "sh al",
+ "sha l",
+ "s hal",
+ "▁febru ari",
+ "▁T at",
+ "▁Ta t",
+ "lo oking",
+ "look ing",
+ "ku nd",
+ "k und",
+ "▁De an",
+ "m ongodb",
+ "вши х",
+ "в ших",
+ "▁A ur",
+ "▁Au r",
+ "▁Fl ora",
+ "▁Flor a",
+ "▁Flo ra",
+ "▁Stud ios",
+ "▁Studio s",
+ "ци је",
+ "ei l",
+ "e il",
+ "Inst all",
+ "▁f ranch",
+ "▁fr anch",
+ "▁fran ch",
+ "▁franc h",
+ "▁H MS",
+ "▁pract ices",
+ "▁practice s",
+ "le j",
+ "l ej",
+ "da le",
+ "dal e",
+ "d ale",
+ "▁po ste",
+ "▁pos te",
+ "▁post e",
+ "▁H els",
+ "▁He ls",
+ "▁Hel s",
+ "▁reli able",
+ "źdz ier",
+ "▁ver se",
+ "▁vers e",
+ "▁ verse",
+ "er meister",
+ "erme ister",
+ "▁qu it",
+ "▁qui t",
+ "▁q uit",
+ "▁ quit",
+ "ét ico",
+ "il is",
+ "ili s",
+ "i lis",
+ "ed or",
+ "edo r",
+ "e dor",
+ "▁Cult ural",
+ "▁Cultura l",
+ "дж е",
+ "д же",
+ "▁li ked",
+ "▁like d",
+ "▁lik ed",
+ "▁m ongodb",
+ "▁mongo db",
+ "▁ mongodb",
+ "▁Broad way",
+ "▁I R",
+ "▁ IR",
+ "es zt",
+ "esz t",
+ "ho v",
+ "h ov",
+ "▁m íst",
+ "▁mí st",
+ "re iche",
+ "reich e",
+ "rei che",
+ "▁k B",
+ "ст ом",
+ "сто м",
+ "с том",
+ "▁SQL ite",
+ "▁tor neo",
+ "\\ .",
+ "Or d",
+ "O rd",
+ "▁Admin istration",
+ "▁Administr ation",
+ "▁з да",
+ "▁ зда",
+ "▁H inter",
+ "▁Hin ter",
+ "▁V ia",
+ "▁Vi a",
+ "Dec imal",
+ "or ious",
+ "ori ous",
+ "orio us",
+ "▁nécess aire",
+ "w x",
+ "▁t ej",
+ "▁te j",
+ "▁t ema",
+ "▁te ma",
+ "▁tem a",
+ "O brázky",
+ "ри те",
+ "рит е",
+ "▁build s",
+ "▁l aten",
+ "▁la ten",
+ "▁lat en",
+ "▁late n",
+ "▁г г",
+ "Vis ibility",
+ "lä u",
+ "l äu",
+ "▁se chs",
+ "▁sec hs",
+ "▁лу ч",
+ "ce ra",
+ "cer a",
+ "c era",
+ "Co uld",
+ "C ould",
+ "▁tra ject",
+ "}} ^{",
+ "}}^ {",
+ "} }^{",
+ "▁Jap on",
+ "▁Ja pon",
+ "an other",
+ "ano ther",
+ "I K",
+ "▁belong ing",
+ "▁fac ilities",
+ "▁facil ities",
+ "▁D aily",
+ "▁Da ily",
+ "▁de ce",
+ "▁dec e",
+ "int ro",
+ "▁слу ча",
+ "Name space",
+ "Names pace",
+ "▁B ak",
+ "▁Ba k",
+ "loc ale",
+ "local e",
+ "U G",
+ "=$ {",
+ "= ${",
+ "▁comp añ",
+ "ją c",
+ "j ąc",
+ "▁ar ithmetic",
+ "fo rum",
+ "for um",
+ "f orum",
+ "▁por ta",
+ "▁port a",
+ "on k",
+ "▁g ender",
+ "▁ge nder",
+ "▁gen der",
+ "▁ gender",
+ "▁expect s",
+ "б ка",
+ "▁n ak",
+ "▁na k",
+ "▁ nak",
+ "▁G race",
+ "▁Gr ace",
+ "▁Gra ce",
+ "▁st ro",
+ "▁str o",
+ "ivid ual",
+ "▁C OM",
+ "▁CO M",
+ "▁ COM",
+ "▁F arm",
+ "▁Fa rm",
+ "▁Far m",
+ "▁c anton",
+ "▁can ton",
+ "▁cant on",
+ "то му",
+ "том у",
+ "т ому",
+ "java x",
+ "jav ax",
+ "се й",
+ "с ей",
+ "▁brief ly",
+ "Fa ce",
+ "F ace",
+ "rot ate",
+ "const ant",
+ "▁g allery",
+ "▁gall ery",
+ "ast ro",
+ "astr o",
+ "all ery",
+ "alle ry",
+ "aller y",
+ "▁D J",
+ "char ge",
+ "charg e",
+ "ходи ть",
+ "ходит ь",
+ "C ent",
+ "\\\" ,",
+ "\\ \",",
+ "▁d onna",
+ "▁don na",
+ "▁donn a",
+ "ar ca",
+ "arc a",
+ "la de",
+ "lad e",
+ "l ade",
+ "zi n",
+ "z in",
+ "▁N ed",
+ "▁Ne d",
+ "▁host ing",
+ "▁hos ting",
+ "id or",
+ "ido r",
+ "i dor",
+ "it ative",
+ "itat ive",
+ "ig s",
+ "i gs",
+ "▁п ря",
+ "▁пр я",
+ "▁t icket",
+ "▁tick et",
+ "▁ti cket",
+ "▁stud ying",
+ "▁study ing",
+ "▁des igner",
+ "▁design er",
+ "lap sed",
+ "lapse d",
+ "laps ed",
+ "l apsed",
+ "▁la at",
+ "▁d ix",
+ "▁di x",
+ "▁integr ated",
+ "▁integrate d",
+ "▁integra ted",
+ "▁in formed",
+ "▁inform ed",
+ "▁be have",
+ "▁beh ave",
+ "▁behav e",
+ "▁la bour",
+ "▁lab our",
+ "est ellt",
+ "cal endar",
+ "▁k illing",
+ "▁kil ling",
+ "▁kill ing",
+ "▁tw itter",
+ "▁ twitter",
+ "ia e",
+ "i ae",
+ "▁histor ique",
+ "DE FAULT",
+ "ia ła",
+ "iał a",
+ "i ała",
+ "▁theoret ical",
+ "▁un ders",
+ "▁und ers",
+ "▁under s",
+ "ля ет",
+ "at an",
+ "ata n",
+ "a tan",
+ "▁s urname",
+ "▁sur name",
+ "▁inter cept",
+ "гла сно",
+ "▁општи ни",
+ "▁t ired",
+ "▁tir ed",
+ "▁ti red",
+ "▁B eth",
+ "▁Be th",
+ "▁Bet h",
+ "▁ад министратив",
+ "L i",
+ "▁Т ур",
+ "▁Ту р",
+ "▁Sc anner",
+ "▁S tern",
+ "▁St ern",
+ "▁Ste rn",
+ "▁Ster n",
+ "▁вме сте",
+ "▁report ing",
+ "▁s ull",
+ "▁su ll",
+ "▁sul l",
+ "ци ей",
+ "ber ts",
+ "bert s",
+ "og onal",
+ "ogo nal",
+ "ő k",
+ "▁i psum",
+ "▁ip sum",
+ "▁seu lement",
+ "▁seul ement",
+ "▁seule ment",
+ "▁Se iten",
+ "▁Seit en",
+ "▁Seite n",
+ "word press",
+ "▁fe aturing",
+ "ist ischen",
+ "isti schen",
+ "istische n",
+ "ju b",
+ "j ub",
+ "▁é tr",
+ "▁ét r",
+ "▁ étr",
+ "▁t ea",
+ "▁te a",
+ "▁adapt ed",
+ "▁sc ales",
+ "▁scale s",
+ "▁scal es",
+ "▁n an",
+ "▁na n",
+ "▁ nan",
+ "get Value",
+ "▁Bl ues",
+ "▁Blue s",
+ "ac les",
+ "acle s",
+ "a cles",
+ "▁st ati",
+ "▁stat i",
+ "▁sta ti",
+ "▁ent itled",
+ "▁R alph",
+ "gra vity",
+ "▁entre pr",
+ "któ ber",
+ "li mat",
+ "lim at",
+ "l imat",
+ "li s",
+ "l is",
+ "De mo",
+ "D emo",
+ "re lation",
+ "rel ation",
+ "▁n ep",
+ "▁ne p",
+ "pro wad",
+ "it is",
+ "iti s",
+ "i tis",
+ "▁p up",
+ "▁pu p",
+ "neh mer",
+ "nehm er",
+ "▁disapp oint",
+ "▁et was",
+ "▁etwa s",
+ "an non",
+ "ann on",
+ "anno n",
+ "▁appro ved",
+ "▁cl ever",
+ "▁cle ver",
+ "Lo ading",
+ "Load ing",
+ "▁ver z",
+ "▁ve rz",
+ "res se",
+ "ress e",
+ "r esse",
+ "▁insp ir",
+ "▁sam pling",
+ "▁B ek",
+ "▁Be k",
+ "}) $.",
+ "})$ .",
+ "} )$.",
+ "▁г рома",
+ "▁spe cie",
+ "▁spec ie",
+ "▁re pub",
+ "▁rep ub",
+ "▁lo ader",
+ "▁load er",
+ "▁ loader",
+ "▁e rf",
+ "▁er f",
+ "▁should er",
+ "ra is",
+ "rai s",
+ "r ais",
+ "▁ма те",
+ "▁мат е",
+ "▁Mon th",
+ "▁Mont h",
+ "▁Mo nth",
+ "▁ Month",
+ "Sc ene",
+ "▁block ing",
+ "▁o cean",
+ "ge ben",
+ "geb en",
+ "g eben",
+ "▁Kil ometer",
+ "▁b edeut",
+ "▁M ix",
+ "▁Mi x",
+ "fm t",
+ "f mt",
+ "▁Nor weg",
+ "▁ID s",
+ "par allel",
+ "▁ant icip",
+ "▁anti cip",
+ "▁re vis",
+ "▁rev is",
+ "ха н",
+ "х ан",
+ "▁с вет",
+ "▁све т",
+ "CA SE",
+ "C ASE",
+ "▁f ührt",
+ "▁führ t",
+ "▁ führt",
+ "▁at omic",
+ "▁atom ic",
+ "▁ atomic",
+ "▁dark ness",
+ "▁Fußball spieler",
+ "▁Ж и",
+ "quis ition",
+ "▁S ieg",
+ "▁Sie g",
+ "▁Si eg",
+ "C irc",
+ "▁c ientí",
+ "ne lle",
+ "nel le",
+ "nell e",
+ "n elle",
+ "SH A",
+ "S HA",
+ "▁u rb",
+ "▁ur b",
+ "▁ urb",
+ "▁k si",
+ "leq slant",
+ "▁ф рон",
+ "▁de fect",
+ "▁def ect",
+ "▁defe ct",
+ "▁r á",
+ "▁ rá",
+ "▁strong er",
+ "▁p ł",
+ "▁commun ities",
+ "ни на",
+ "нин а",
+ "en as",
+ "ena s",
+ "e nas",
+ "ienne nt",
+ "ienn ent",
+ "▁safe ly",
+ "▁saf ely",
+ "▁т я",
+ "▁ тя",
+ "▁ben chmark",
+ "▁Bra un",
+ "method s",
+ "arg ument",
+ "vo s",
+ "v os",
+ "ob ox",
+ "o box",
+ "ро ви",
+ "ров и",
+ "р ови",
+ "▁recher che",
+ "m n",
+ "▁br ings",
+ "▁bring s",
+ "m achine",
+ "CE SS",
+ "CES S",
+ "host s",
+ "hos ts",
+ "▁N Y",
+ "Aut ow",
+ "Auto w",
+ "▁сов ремен",
+ "▁G ary",
+ "▁Gar y",
+ "▁Ga ry",
+ "▁s ensor",
+ "▁sens or",
+ "▁document ed",
+ "▁pr endre",
+ "▁prend re",
+ "▁pe er",
+ "en ix",
+ "eni x",
+ "ha i",
+ "h ai",
+ "ar be",
+ "цен т",
+ "ц ент",
+ "_ (",
+ "▁U RI",
+ "▁ URI",
+ "ев а",
+ "е ва",
+ "▁Re gie",
+ "▁Reg ie",
+ "▁Mon ument",
+ "▁onder werp",
+ "B ag",
+ "ti t",
+ "t it",
+ "▁st ir",
+ "▁n erv",
+ "▁ne rv",
+ "▁ner v",
+ "стор ія",
+ "▁s ov",
+ "▁so v",
+ "▁writ ers",
+ "▁write rs",
+ "▁writer s",
+ "▁sort s",
+ "▁sor ts",
+ "ab solute",
+ "▁difficult ies",
+ "▁par lament",
+ "▁parl ament",
+ "▁IE numerable",
+ "▁dis sol",
+ "▁diss ol",
+ "▁CH ECK",
+ "ar ina",
+ "ari na",
+ "arin a",
+ "in burgh",
+ "D M",
+ "▁e ind",
+ "▁ein d",
+ "▁bud get",
+ "▁cert ains",
+ "▁certain s",
+ "▁för sta",
+ "▁först a",
+ "an ja",
+ "a nja",
+ "▁го дов",
+ "▁год ов",
+ "▁т ек",
+ "▁те к",
+ "▁ тек",
+ "▁D uch",
+ "▁Du ch",
+ "▁Duc h",
+ "gu i",
+ "g ui",
+ "▁Te ams",
+ "▁Team s",
+ "▁мно ги",
+ "Mar ie",
+ "Ma rie",
+ "M arie",
+ "In tegr",
+ "Int egr",
+ "Thread Pool",
+ "ru st",
+ "rus t",
+ "r ust",
+ "í k",
+ "% \"",
+ "en f",
+ "sp l",
+ "s pl",
+ "▁be gun",
+ "▁beg un",
+ "lo u",
+ "l ou",
+ "▁Rewrite Rule",
+ "tu ple",
+ "ane ous",
+ "▁mar ine",
+ "▁mari ne",
+ "▁ marine",
+ "at tan",
+ "att an",
+ "atta n",
+ "ik al",
+ "ika l",
+ "i kal",
+ "▁gradu ated",
+ "il lé",
+ "ill é",
+ "▁про ве",
+ "▁пров е",
+ "▁пр ове",
+ "▁Р оз",
+ "▁Ро з",
+ "', \r",
+ "' ,\r",
+ "▁Pf arr",
+ "▁n ivel",
+ "▁ni vel",
+ "▁пра цю",
+ "mus ic",
+ "▁set Timeout",
+ "ER S",
+ "E RS",
+ "▁E rik",
+ "▁Er ik",
+ "pi t",
+ "p it",
+ "▁Х ро",
+ "▁p ił",
+ "▁pi ł",
+ "▁p eri",
+ "▁per i",
+ "▁pe ri",
+ "до к",
+ "д ок",
+ "us zt",
+ "usz t",
+ "▁B ear",
+ "▁Be ar",
+ "Class Name",
+ "▁Par lament",
+ "▁a ix",
+ "▁ai x",
+ "▁inv ited",
+ "▁P ATH",
+ "▁PA TH",
+ "▁ PATH",
+ "xt er",
+ "x ter",
+ "▁R ace",
+ "▁Ra ce",
+ "▁h echo",
+ "▁he cho",
+ "▁T ower",
+ "▁To wer",
+ "▁Tow er",
+ "▁u tf",
+ "▁ut f",
+ "▁ utf",
+ "act ly",
+ "▁бу де",
+ "▁ang les",
+ "▁angle s",
+ "▁ angles",
+ "ня я",
+ "ouv elles",
+ "ouve lles",
+ "ouvel les",
+ "ouvelle s",
+ "▁cl imate",
+ "▁cli mate",
+ "▁clim ate",
+ "▁sing ing",
+ "▁sin ging",
+ "▁navig ate",
+ ">' ;",
+ "> ';",
+ "ad ows",
+ "ado ws",
+ "adow s",
+ "▁l eta",
+ "▁le ta",
+ "▁let a",
+ "▁S itz",
+ "▁Si tz",
+ "▁Sit z",
+ "▁part itions",
+ "▁partition s",
+ "▁d ock",
+ "▁do ck",
+ "▁doc k",
+ "▁ż y",
+ "▁ ży",
+ "▁alloc ate",
+ "▁benef its",
+ "▁benefit s",
+ "▁n ieder",
+ "▁nie der",
+ "▁ni eder",
+ "xp ath",
+ "x path",
+ "me ck",
+ "äl le",
+ "äll e",
+ "ä lle",
+ "▁cou pling",
+ "▁coup ling",
+ "жи л",
+ "ж ил",
+ "For Key",
+ "ar gent",
+ "arg ent",
+ "cl ou",
+ "clo u",
+ "c lou",
+ "▁instru ments",
+ "▁instrument s",
+ "▁ent hus",
+ "▁m ég",
+ "▁mé g",
+ "▁Па в",
+ "▁R ach",
+ "▁Ra ch",
+ "-- ---",
+ "---- -",
+ "--- --",
+ "- ----",
+ "▁API s",
+ "▁AP Is",
+ "▁V ier",
+ "▁Vi er",
+ "▁Vie r",
+ "C md",
+ "it ore",
+ "ito re",
+ "itor e",
+ "▁C uba",
+ "▁Cu ba",
+ "▁Cub a",
+ "▁dátum mal",
+ "▁embed ding",
+ "std io",
+ "▁Gil bert",
+ "▁ge prüft",
+ "▁st ating",
+ "▁stat ing",
+ "▁sta ting",
+ "▁stati ng",
+ "▁trigger s",
+ "▁trig gers",
+ "+ =",
+ "▁spé cial",
+ "▁del iber",
+ "▁deli ber",
+ "ми н",
+ "м ин",
+ "Pro du",
+ "Pr odu",
+ "P rodu",
+ "▁St ati",
+ "▁Stat i",
+ "▁Sta ti",
+ "▁z us",
+ "▁zu s",
+ "kt ionen",
+ "ktion en",
+ "Dispatch er",
+ "id al",
+ "ida l",
+ "i dal",
+ "▁L P",
+ "▁ LP",
+ "op tera",
+ "opt era",
+ "opter a",
+ "▁e star",
+ "▁est ar",
+ "▁es tar",
+ "▁esta r",
+ "▁зна чи",
+ "с мо",
+ "ous es",
+ "ouse s",
+ "o uses",
+ "eng ono",
+ "engo no",
+ "▁W PF",
+ "pub lish",
+ "▁t eor",
+ "▁te or",
+ "el if",
+ "eli f",
+ "▁e rg",
+ "▁er g",
+ "▁ erg",
+ "▁separ ation",
+ "Pa n",
+ "P an",
+ "▁Or chestra",
+ "Pe ter",
+ "P eter",
+ "bound s",
+ "b ounds",
+ "▁Shakespe are",
+ "▁cant ante",
+ "▁d emi",
+ "▁de mi",
+ "▁dem i",
+ "▁Pop ular",
+ "ф р",
+ "ar ring",
+ "arr ing",
+ "ци н",
+ "ц ин",
+ "▁И с",
+ "vo n",
+ "v on",
+ "▁subst itution",
+ "▁lí nea",
+ "\\}$ .",
+ "\\} $.",
+ "\\ }$.",
+ "com o",
+ "co mo",
+ "c omo",
+ "▁ва ж",
+ "wa gen",
+ "w agen",
+ "▁rare ly",
+ "▁period s",
+ "▁peri ods",
+ "gl ob",
+ "g lob",
+ "▁F rid",
+ "▁Fr id",
+ "▁Fri d",
+ "▁T err",
+ "▁Te rr",
+ "▁Ter r",
+ "▁Re lease",
+ "▁ Release",
+ "Brain z",
+ "▁гра ф",
+ "▁ граф",
+ "DI S",
+ "D IS",
+ "compat ible",
+ "▁po č",
+ "LI N",
+ "L IN",
+ "▁K ällor",
+ "▁A rizona",
+ "pp y",
+ "p py",
+ "Se q",
+ "S eq",
+ "▁A in",
+ "▁T ourn",
+ "▁To urn",
+ "▁Tour n",
+ "br ow",
+ "bro w",
+ "b row",
+ "▁K ör",
+ "▁Kö r",
+ "▁a sh",
+ "▁as h",
+ "▁ ash",
+ "ogene ous",
+ "▁dia lect",
+ "▁насе ља",
+ "mysql i",
+ "mysq li",
+ "цо в",
+ "ц ов",
+ "▁f lor",
+ "▁fl or",
+ "▁flo r",
+ "▁ф ло",
+ "IA B",
+ "I AB",
+ "▁With in",
+ "▁Wit hin",
+ "^ (",
+ "▁b ois",
+ "▁bo is",
+ "▁t ank",
+ "▁tan k",
+ "▁aff ili",
+ "▁h ijo",
+ "▁hij o",
+ "▁hi jo",
+ "▁K ate",
+ "▁Kat e",
+ "▁Ka te",
+ "▁Ver l",
+ "▁Ve rl",
+ "▁M iami",
+ "▁Mi ami",
+ "▁type script",
+ "▁types cript",
+ "њ у",
+ "▁V ern",
+ "▁Ver n",
+ "▁Ve rn",
+ "▁ви со",
+ "ie mann",
+ "iem ann",
+ "i emann",
+ "▁co verage",
+ "▁cover age",
+ "br ie",
+ "b rie",
+ "▁Start ing",
+ "▁Star ting",
+ "num py",
+ "▁J enkins",
+ "▁Jen kins",
+ "▁k ét",
+ "▁ké t",
+ "▁g rup",
+ "▁gr up",
+ "▁gru p",
+ "▁S cient",
+ "▁Sc ient",
+ "▁Sci ent",
+ "▁inter rupt",
+ "▁b lob",
+ "▁bl ob",
+ "▁blo b",
+ "▁ blob",
+ "ug el",
+ "uge l",
+ "u gel",
+ "▁Or th",
+ "▁Ort h",
+ "ab ama",
+ "aba ma",
+ "▁B apt",
+ "▁Ba pt",
+ "ow nik",
+ "own ik",
+ "▁бы ть",
+ "▁Jul ius",
+ "▁Ju lius",
+ "▁Juli us",
+ "▁П рез",
+ "▁Пре з",
+ "▁subst itute",
+ "support ed",
+ "supp orted",
+ "ch y",
+ "c hy",
+ "egy zetek",
+ "▁Per formance",
+ "▁Perform ance",
+ "less ly",
+ "Con structor",
+ "▁ext ending",
+ "▁extend ing",
+ "▁Mus lim",
+ "Over flow",
+ "▁J enn",
+ "▁Je nn",
+ "▁Jen n",
+ "▁produ z",
+ "▁prod uz",
+ "мі ї",
+ "м ії",
+ "▁país es",
+ "▁e ux",
+ "▁eu x",
+ "▁f ate",
+ "▁fa te",
+ "▁fat e",
+ "ol oge",
+ "olog e",
+ "olo ge",
+ "у к",
+ "▁wo bei",
+ "▁wob ei",
+ "▁S achsen",
+ "▁Sach sen",
+ "▁са йт",
+ "▁сай т",
+ "Mod els",
+ "Model s",
+ "Mode ls",
+ "▁F ast",
+ "▁Fa st",
+ "bes ondere",
+ "▁F R",
+ "▁ FR",
+ "▁a con",
+ "▁ac on",
+ "▁ acon",
+ "▁Den kmal",
+ "▁an ch",
+ "▁anc h",
+ "▁ anch",
+ "▁públic o",
+ "▁T as",
+ "▁Ta s",
+ "▁c and",
+ "▁can d",
+ "▁ca nd",
+ "▁pa ździer",
+ "▁М он",
+ "▁Мо н",
+ "▁vers us",
+ "ru t",
+ "r ut",
+ "G T",
+ "▁insert ing",
+ "▁inser ting",
+ "▁can ad",
+ "▁ca nad",
+ "є м",
+ "▁M etro",
+ "▁Met ro",
+ "▁Herz og",
+ "Ign ore",
+ "▁decre ase",
+ "▁п ун",
+ "▁пу н",
+ "▁F ischer",
+ "▁M all",
+ "▁Ma ll",
+ "▁Mal l",
+ "▁n örd",
+ "io stream",
+ "i ostream",
+ "▁Lux emb",
+ "pay load",
+ "▁Ze itung",
+ "▁Zeit ung",
+ "▁mod ifying",
+ "▁modify ing",
+ "▁C her",
+ "▁Ch er",
+ "▁Che r",
+ "▁Lu ci",
+ "▁Luc i",
+ "n x",
+ "▁lo ose",
+ "▁top ics",
+ "▁topic s",
+ "▁var ied",
+ "▁vari ed",
+ "▁va ried",
+ "▁p g",
+ "▁ pg",
+ "aj es",
+ "aje s",
+ "a jes",
+ "um m",
+ "u mm",
+ "View s",
+ "▁B eau",
+ "▁Be au",
+ "MA P",
+ "M AP",
+ "ip eline",
+ "ipe line",
+ "▁Inter est",
+ "ar ith",
+ "ari th",
+ "▁seg ún",
+ "▁Geme ins",
+ "▁Att ribute",
+ "▁ Attribute",
+ "comm unity",
+ "▁цент р",
+ "▁kil ometer",
+ "▁kilomet er",
+ "▁kilom eter",
+ "▁é conom",
+ "▁éc onom",
+ "lar ation",
+ "▁к ъ",
+ "▁car riage",
+ "▁carri age",
+ "▁L ane",
+ "▁La ne",
+ "▁Lan e",
+ "▁не об",
+ "ku r",
+ "k ur",
+ "▁A F",
+ "▁ AF",
+ "IN TER",
+ "INT ER",
+ ")) $",
+ ") )$",
+ "▁be ide",
+ "▁bei de",
+ "dest ination",
+ "▁font s",
+ "▁fon ts",
+ "▁ fonts",
+ "append Child",
+ "▁M AR",
+ "▁MA R",
+ "▁g ay",
+ "▁ga y",
+ "mi l",
+ "m il",
+ "le sh",
+ "les h",
+ "l esh",
+ "è t",
+ "▁W ang",
+ "▁Wa ng",
+ "▁Y ears",
+ "▁Year s",
+ "▁Ye ars",
+ "▁S ymbol",
+ "▁Sym bol",
+ "▁ Symbol",
+ "Li ve",
+ "L ive",
+ "qu ency",
+ "▁U sers",
+ "▁Use rs",
+ "▁User s",
+ "▁Us ers",
+ "▁ Users",
+ "▁Un icode",
+ "▁S au",
+ "▁Sa u",
+ "▁t ons",
+ "▁to ns",
+ "▁ton s",
+ "▁ tons",
+ "▁Н і",
+ "▁кра ї",
+ "▁ краї",
+ "AX I",
+ "▁P ick",
+ "▁Pi ck",
+ "▁Pic k",
+ "A I",
+ "▁h ath",
+ "▁ha th",
+ "▁hat h",
+ "▁a inda",
+ "▁ain da",
+ "▁p apa",
+ "▁pa pa",
+ "▁pap a",
+ "▁C enso",
+ "▁B ald",
+ "▁Ba ld",
+ "▁Bal d",
+ "▁Насе ље",
+ "▁sim ulations",
+ "▁simulation s",
+ "▁j aren",
+ "▁ja ren",
+ "▁jar en",
+ "▁inher ited",
+ "▁inherit ed",
+ "▁то й",
+ "▁ той",
+ "▁fe els",
+ "▁feel s",
+ "▁fee ls",
+ "ress ion",
+ "r ession",
+ "▁o któber",
+ "bi d",
+ "b id",
+ "ás i",
+ "á si",
+ "▁m uss",
+ "▁mus s",
+ "▁mu ss",
+ "vent ory",
+ "▁me ist",
+ "▁b ore",
+ "▁bo re",
+ "▁bor e",
+ "▁sl ider",
+ "▁slide r",
+ "▁sli der",
+ "▁ slider",
+ "де ли",
+ "\\ ;",
+ "▁extra cted",
+ "▁extract ed",
+ "ку р",
+ "к ур",
+ "Ed ge",
+ "▁per f",
+ "▁pe rf",
+ "▁Brig ade",
+ "▁гра д",
+ "▁ град",
+ "ie nie",
+ "ien ie",
+ "i enie",
+ "▁N orden",
+ "▁Nor den",
+ "▁Nord en",
+ "▁c ancer",
+ "▁can cer",
+ "\" /",
+ "C ur",
+ "▁С ере",
+ "▁Се ре",
+ "▁Сер е",
+ "▁liqu id",
+ "str ucture",
+ "struct ure",
+ "▁cho osing",
+ "▁Per l",
+ "▁Pe rl",
+ "Si de",
+ "S ide",
+ "ü s",
+ "ри тор",
+ "рито р",
+ "рит ор",
+ "▁k ost",
+ "▁ko st",
+ "▁pa ckets",
+ "▁pack ets",
+ "▁packet s",
+ "▁кото рого",
+ "▁Com un",
+ "▁Co mun",
+ "▁f ingers",
+ "▁fin gers",
+ "▁finger s",
+ "ográ fica",
+ "> :",
+ "▁champion nat",
+ "▁bl ieb",
+ "▁S itu",
+ "▁Si tu",
+ "▁Sit u",
+ "▁su ic",
+ "an dis",
+ "and is",
+ "Fr e",
+ "F re",
+ "▁C onc",
+ "▁Con c",
+ "▁Co nc",
+ "▁re public",
+ "▁rep ublic",
+ "▁repub lic",
+ "▁ar med",
+ "▁arm ed",
+ "▁h ell",
+ "▁he ll",
+ "▁hel l",
+ "▁ hell",
+ "▁h ög",
+ "▁hö g",
+ "rag ma",
+ "▁en se",
+ "▁ens e",
+ "▁ ense",
+ "▁ac res",
+ "▁В ід",
+ "▁Ві д",
+ "▁Re form",
+ "▁Ref orm",
+ "Main Activity",
+ "ke eper",
+ "keep er",
+ "kee per",
+ "er b",
+ "e rb",
+ "▁mon aster",
+ "sub subsection",
+ "▁Ди в",
+ "▁cre ature",
+ "▁indic ating",
+ "▁url s",
+ "▁ur ls",
+ "▁ urls",
+ "▁k ein",
+ "▁ke in",
+ "об раз",
+ "обра з",
+ "pi ck",
+ "pic k",
+ "p ick",
+ "▁Ad mir",
+ "▁old est",
+ "▁ol dest",
+ "▁m uz",
+ "▁mu z",
+ "▁contra diction",
+ "▁contrad iction",
+ "▁contradict ion",
+ "▁prob abil",
+ "illi ant",
+ "▁p av",
+ "▁pa v",
+ "▁pa pel",
+ "▁pap el",
+ "ub s",
+ "u bs",
+ "▁ж ена",
+ "▁же на",
+ "▁жен а",
+ "▁ жена",
+ "AM L",
+ "A ML",
+ "▁re cip",
+ "▁rec ip",
+ "▁reci p",
+ "▁C OL",
+ "▁CO L",
+ "▁ COL",
+ "ad ded",
+ "add ed",
+ "▁cl ue",
+ "▁Uk raine",
+ "▁Ukrain e",
+ "▁jel ent",
+ "че нь",
+ "чен ь",
+ "ч ень",
+ "▁mathemat ics",
+ "Ac cept",
+ "▁с от",
+ "▁со т",
+ "▁се вер",
+ "▁isol ated",
+ "▁по я",
+ "w ür",
+ "Ro uter",
+ "Route r",
+ "Rout er",
+ "R outer",
+ "CA T",
+ "C AT",
+ "rg b",
+ "r gb",
+ "▁L ov",
+ "▁Lo v",
+ "mu table",
+ "mut able",
+ "m utable",
+ "▁W es",
+ "▁We s",
+ "▁Ital ien",
+ "Dra g",
+ "Dr ag",
+ "D rag",
+ "en ium",
+ "eni um",
+ "at ting",
+ "att ing",
+ "atti ng",
+ "tc p",
+ "t cp",
+ "▁erfolg te",
+ "▁Be it",
+ "▁Bei t",
+ "га то",
+ "▁System s",
+ "▁Syst ems",
+ "▁re serve",
+ "▁res erve",
+ "er ee",
+ "ere e",
+ "e ree",
+ "▁Па ри",
+ "▁Пар и",
+ "▁з али",
+ "▁за ли",
+ "▁re nt",
+ "▁r ent",
+ "▁ren t",
+ "▁ rent",
+ "▁s unt",
+ "▁su nt",
+ "▁sun t",
+ "▁G irls",
+ "▁Girl s",
+ "▁Gir ls",
+ "▁Er nest",
+ "▁Ern est",
+ "▁f its",
+ "▁fi ts",
+ "▁fit s",
+ "▁op pon",
+ "▁opp on",
+ "▁живе ло",
+ "▁av aient",
+ "▁Flor ence",
+ "▁Flo rence",
+ "▁чи сле",
+ "▁eng ines",
+ "▁engine s",
+ "D ynamic",
+ "▁stycz nia",
+ "▁b ias",
+ "▁bi as",
+ "▁Ex change",
+ "ди й",
+ "▁histor iques",
+ "▁historique s",
+ "▁H ä",
+ "ho d",
+ "h od",
+ "▁w ł",
+ "sch ap",
+ "▁l ac",
+ "▁la c",
+ "▁ lac",
+ "▁F oi",
+ "▁Fo i",
+ "▁d well",
+ "▁dw ell",
+ "▁Unter nehmen",
+ "UR N",
+ "▁kilomet res",
+ "▁Одна ко",
+ "к ли",
+ "▁S ri",
+ "▁Sr i",
+ "Gr oups",
+ "Group s",
+ "min d",
+ "mi nd",
+ "m ind",
+ "os lov",
+ "fer n",
+ "fe rn",
+ "f ern",
+ "eg u",
+ "e gu",
+ "abel ed",
+ "abe led",
+ "F iddle",
+ "▁Cent ury",
+ "/ -",
+ "▁J egyzetek",
+ "He n",
+ "H en",
+ "ens emble",
+ "▁G ut",
+ "▁Gu t",
+ "_{ {\\",
+ "_ {{\\",
+ "▁ran king",
+ "▁rank ing",
+ "+ $",
+ "ал а",
+ "а ла",
+ "▁# {",
+ "▁ #{",
+ "im ientos",
+ "imiento s",
+ "ach im",
+ "ac him",
+ "achi m",
+ "ri des",
+ "ride s",
+ "rid es",
+ "r ides",
+ "▁K laus",
+ "▁Kl aus",
+ "▁int end",
+ "▁inte nd",
+ "▁inten d",
+ "▁Kent ucky",
+ "ci pe",
+ "cip e",
+ "c ipe",
+ "▁D ienst",
+ "▁Di enst",
+ "▁situ ated",
+ "▁pó ź",
+ "▁s crit",
+ "▁sc rit",
+ "▁scr it",
+ "▁scri t",
+ "cl ip",
+ "cli p",
+ "c lip",
+ "не т",
+ "н ет",
+ "ta bles",
+ "table s",
+ "tab les",
+ "t ables",
+ "▁N ied",
+ "▁Ni ed",
+ "▁Nie d",
+ "▁Mc K",
+ "▁pow st",
+ "▁kun nen",
+ "▁Ev ans",
+ "▁Eva ns",
+ "ж ды",
+ "ва ть",
+ "ват ь",
+ "uch ar",
+ "uc har",
+ "ucha r",
+ "u char",
+ "▁res idents",
+ "▁resid ents",
+ "▁resident s",
+ "ia k",
+ "i ak",
+ "▁Re sol",
+ "▁Res ol",
+ "▁ Resol",
+ "▁ve ces",
+ "▁vec es",
+ "▁satisf ying",
+ "▁satisfy ing",
+ "IN F",
+ "I NF",
+ "▁с ин",
+ "▁си н",
+ "▁cross ing",
+ "ib en",
+ "ibe n",
+ "i ben",
+ "▁ши ро",
+ "pt o",
+ "p to",
+ "IL L",
+ "I LL",
+ "▁ро ль",
+ "▁a ktiv",
+ "▁akt iv",
+ "▁обра щения",
+ "Wik ispecies",
+ "▁Hö he",
+ "cr o",
+ "c ro",
+ "══ ══",
+ "al tra",
+ "alt ra",
+ "▁FI LE",
+ "▁ FILE",
+ "▁u ps",
+ "▁up s",
+ "▁ ups",
+ "▁al location",
+ "▁all ocation",
+ "▁alloc ation",
+ "▁allo cation",
+ "Mich ael",
+ "▁acknow led",
+ "Lin ux",
+ "▁met ros",
+ "▁ metros",
+ "tt e",
+ "t te",
+ "af en",
+ "a fen",
+ "▁x code",
+ "▁тра ди",
+ "spe cies",
+ "spec ies",
+ "s pecies",
+ "▁inj ury",
+ "▁са мы",
+ "▁сам ы",
+ "▁l attice",
+ "M aterial",
+ "and enburg",
+ "anden burg",
+ "▁huvud staden",
+ "st ory",
+ "sto ry",
+ "stor y",
+ "▁var ying",
+ "▁vary ing",
+ "▁kö vet",
+ "▁Росси йской",
+ "ir se",
+ "irs e",
+ "▁d rum",
+ "▁dr um",
+ "▁dru m",
+ "Pr essed",
+ "Press ed",
+ "Pres sed",
+ "La r",
+ "L ar",
+ "▁A gu",
+ "▁Ag u",
+ "▁w eil",
+ "▁we il",
+ "▁comm ence",
+ "▁Seg ún",
+ "Gest ure",
+ "Sh ape",
+ "S hape",
+ "▁V ors",
+ "▁Vo rs",
+ "▁Vor s",
+ "▁succ ès",
+ "▁correct ed",
+ "▁corre cted",
+ "▁corr ected",
+ "K ar",
+ "▁cr uel",
+ "▁cru el",
+ "▁polit ico",
+ "▁Schrift steller",
+ "▁ris ult",
+ "et u",
+ "e tu",
+ "arch iv",
+ "▁gén ero",
+ "▁gé nero",
+ "▁L ü",
+ "▁tri umph",
+ "OR S",
+ "O RS",
+ "L u",
+ "▁person nel",
+ "▁personn el",
+ "▁personne l",
+ "▁H ills",
+ "▁Hill s",
+ "▁Hil ls",
+ "as set",
+ "ass et",
+ "asse t",
+ "do min",
+ "dom in",
+ "d omin",
+ "Rece ive",
+ "▁O ak",
+ "▁K no",
+ "▁Kn o",
+ "▁The ory",
+ "ir ie",
+ "iri e",
+ "i rie",
+ "ow an",
+ "owa n",
+ "o wan",
+ "▁est ava",
+ "▁esta va",
+ "▁exec utes",
+ "▁execute s",
+ "▁execut es",
+ "й т",
+ "óp ez",
+ "ó pez",
+ "по ло",
+ "пол о",
+ "п оло",
+ "ét ica",
+ "▁назва ние",
+ "▁conver ges",
+ "▁not re",
+ "▁no tre",
+ "▁pop ulated",
+ "▁popula ted",
+ "▁popul ated",
+ "▁populate d",
+ "▁mov ements",
+ "▁move ments",
+ "▁movement s",
+ "▁statist ical",
+ "▁Zwe iten",
+ "qu in",
+ "qui n",
+ "▁import antes",
+ "▁important es",
+ "▁importante s",
+ "▁k lein",
+ "▁kle in",
+ "▁kl ein",
+ "▁Seg unda",
+ "schließ end",
+ "Fail ure",
+ "na r",
+ "n ar",
+ "da g",
+ "d ag",
+ "▁ru olo",
+ "▁f iction",
+ "▁fi ction",
+ "▁fic tion",
+ "▁fict ion",
+ "▁исполь зу",
+ "▁cr isis",
+ "▁Get ting",
+ ", %",
+ "▁ар мии",
+ "▁cam pus",
+ "▁camp us",
+ "▁fo oter",
+ "▁foot er",
+ "▁foo ter",
+ "▁ footer",
+ "▁d ías",
+ "▁día s",
+ "▁dí as",
+ "ба н",
+ "б ан",
+ "▁liber ty",
+ "▁libert y",
+ "▁g h",
+ "▁ gh",
+ "▁cham ber",
+ "▁district s",
+ "▁exc ited",
+ "▁can ción",
+ "ter o",
+ "te ro",
+ "t ero",
+ "▁Work ing",
+ "▁Wor king",
+ "▁czę ści",
+ "ль ный",
+ "▁f orum",
+ "▁for um",
+ "▁fo rum",
+ "▁ forum",
+ "▁E he",
+ "▁ка та",
+ "▁ ката",
+ "it ations",
+ "itation s",
+ "itat ions",
+ "To ols",
+ "Tool s",
+ "T ools",
+ "ach iv",
+ "achi v",
+ "▁c res",
+ "▁cre s",
+ "▁cr es",
+ "as to",
+ "ast o",
+ "a sto",
+ "▁re ver",
+ "▁r ever",
+ "▁rev er",
+ "▁reve r",
+ "▁n azionale",
+ "▁naz ionale",
+ "▁do ors",
+ "▁door s",
+ "▁N ancy",
+ "▁Nan cy",
+ "▁is lands",
+ "▁island s",
+ "Im p",
+ "I mp",
+ "▁Ch air",
+ "▁Cha ir",
+ "▁v orm",
+ "▁vo rm",
+ "▁vor m",
+ "se in",
+ "s ein",
+ "▁до ку",
+ "er set",
+ "ers et",
+ "▁tät ig",
+ "▁K rit",
+ "▁Kr it",
+ "▁п я",
+ "▁cons ervation",
+ "▁conserv ation",
+ "▁Part ido",
+ "▁Parti do",
+ "min ipage",
+ "Valid ator",
+ "▁rec overy",
+ "▁recover y",
+ "▁NA SA",
+ "▁NAS A",
+ "▁br east",
+ "▁bre ast",
+ "il ty",
+ "ilt y",
+ "an aly",
+ "ana ly",
+ "anal y",
+ "el ines",
+ "eli nes",
+ "eline s",
+ "elin es",
+ "e lines",
+ "▁S aturday",
+ "em ark",
+ "e mark",
+ "ce j",
+ "c ej",
+ "Ze ro",
+ "Z ero",
+ "▁Tur ner",
+ "▁Turn er",
+ "sec ure",
+ "Ex ists",
+ "▁R ick",
+ "▁Ric k",
+ "▁Ri ck",
+ "ev alu",
+ "eval u",
+ "e valu",
+ "ct rl",
+ "ctr l",
+ "c trl",
+ "▁com pression",
+ "▁comp ression",
+ "▁compr ession",
+ "▁compress ion",
+ "▁C URL",
+ "text color",
+ ")\\ ,",
+ ") \\,",
+ "long rightarrow",
+ "▁Fern seh",
+ "▁ Fernseh",
+ "ic ha",
+ "ich a",
+ "i cha",
+ "▁l oi",
+ "▁lo i",
+ "▁О те",
+ "▁От е",
+ "▁c ave",
+ "▁ca ve",
+ "▁cav e",
+ "▁do zen",
+ "▁expla ining",
+ "▁expl aining",
+ "▁explain ing",
+ "▁in nov",
+ "▁inn ov",
+ "▁Nich olas",
+ "▁dia meter",
+ "▁diam eter",
+ "▁M arian",
+ "▁Mar ian",
+ "▁Ma rian",
+ "▁Maria n",
+ "▁Mari an",
+ "▁f ires",
+ "▁fire s",
+ "▁fi res",
+ "▁fir es",
+ "▁art ifact",
+ "▁ artifact",
+ "▁Par ker",
+ "▁Park er",
+ "▁B und",
+ "▁Bu nd",
+ "▁Bun d",
+ "▁v erte",
+ "▁ver te",
+ "▁vert e",
+ "▁ verte",
+ "▁tal ent",
+ "▁tale nt",
+ "▁Lu cas",
+ "▁Luc as",
+ "re verse",
+ "▁folg enden",
+ "▁S ah",
+ "▁Sa h",
+ "ject ions",
+ "je ctions",
+ "jection s",
+ "▁inve ce",
+ "▁cost itu",
+ "▁s sl",
+ "▁ss l",
+ "▁ ssl",
+ "}} ^",
+ "} }^",
+ "▁viol ent",
+ "▁s pos",
+ "▁sp os",
+ "▁spo s",
+ "Ro ut",
+ "R out",
+ "jd k",
+ "j dk",
+ "▁за ме",
+ "▁f urent",
+ "▁fur ent",
+ "▁fu rent",
+ "an dal",
+ "and al",
+ "anda l",
+ "H om",
+ "▁Sen ior",
+ "▁p ounds",
+ "▁Disc ogs",
+ "▁з е",
+ "▁ зе",
+ "'} [",
+ "' }[",
+ "▁Napole on",
+ "ordin ates",
+ "ordinate s",
+ "à n",
+ "▁k urz",
+ "▁kur z",
+ "▁v ere",
+ "▁ver e",
+ "▁ve re",
+ "▁ vere",
+ "▁re use",
+ "▁Г ен",
+ "▁Ге н",
+ "▁S yst",
+ "▁Sy st",
+ "▁disapp eared",
+ "▁disappear ed",
+ "▁W atch",
+ "▁Wat ch",
+ "▁ Watch",
+ "bibli othek",
+ "▁кор пу",
+ "▁C s",
+ "▁} `",
+ "▁ }`",
+ "▁r ör",
+ "▁де ла",
+ "▁ дела",
+ "V B",
+ "▁calcul us",
+ "▁calc ulus",
+ "ро да",
+ "род а",
+ "▁jud gment",
+ "at ile",
+ "ati le",
+ "▁long ue",
+ "▁lon gue",
+ "▁H us",
+ "▁Hu s",
+ "J ac",
+ "}} )",
+ "} })",
+ "RI PT",
+ "IAB ot",
+ "▁ap ós",
+ "▁a ston",
+ "▁as ton",
+ "▁ast on",
+ "Web achiv",
+ "▁URL s",
+ "▁co at",
+ "▁э коно",
+ "▁l ear",
+ "▁le ar",
+ "▁ lear",
+ "ext ensions",
+ "extension s",
+ "▁Class ic",
+ "T I",
+ "▁T age",
+ "▁Tag e",
+ "▁Ta ge",
+ "▁l á",
+ "▁ lá",
+ "▁s emb",
+ "▁se mb",
+ "▁sem b",
+ "▁développ ement",
+ "IS TS",
+ "IST S",
+ "▁sol ves",
+ "▁solve s",
+ ",\\ ,",
+ ", \\,",
+ "▁чем пі",
+ "ord inary",
+ "ordin ary",
+ "▁B av",
+ "▁Ba v",
+ "▁much os",
+ "▁mu chos",
+ "▁mucho s",
+ "S elf",
+ "▁Ма й",
+ "▁D iet",
+ "▁Die t",
+ "▁Di et",
+ "▁necess ity",
+ "ві д",
+ "в ід",
+ "▁m ano",
+ "▁ma no",
+ "▁man o",
+ "▁С р",
+ "▁car re",
+ "▁Cam era",
+ "▁Camer a",
+ "▁ Camera",
+ "▁N arod",
+ "▁Na rod",
+ "▁Nar od",
+ "▁Ph one",
+ "▁Pho ne",
+ "▁ Phone",
+ "▁pol ym",
+ "▁poly m",
+ "im ore",
+ "imo re",
+ "i more",
+ "is Empty",
+ "▁Hou ston",
+ "▁Re ce",
+ "▁Rec e",
+ "▁ Rece",
+ "▁present ation",
+ "▁pres entation",
+ "▁presenta tion",
+ "▁ presentation",
+ "ни ципа",
+ "ници па",
+ "▁D b",
+ "▁ Db",
+ "▁conf ident",
+ "▁} {",
+ "▁ }{",
+ "▁bul let",
+ "▁ bullet",
+ "▁{ },",
+ "▁{} ,",
+ "AN GE",
+ "ANG E",
+ "▁No tre",
+ "▁Not re",
+ "ch in",
+ "chi n",
+ "c hin",
+ "▁Dr agon",
+ "▁Drag on",
+ "▁Dra gon",
+ "er ca",
+ "erc a",
+ "ia li",
+ "ial i",
+ "i ali",
+ "▁as set",
+ "▁ass et",
+ "▁asse t",
+ "▁ asset",
+ "▁mu ito",
+ "▁muit o",
+ "▁deep ly",
+ "▁rest riction",
+ "▁restrict ion",
+ "▁com merce",
+ "▁commer ce",
+ "▁ commerce",
+ "▁B omb",
+ "▁Bo mb",
+ "▁Bom b",
+ "c aught",
+ "q q",
+ "▁A rag",
+ "▁Ar ag",
+ "▁Ara g",
+ "▁не мец",
+ "▁Anal ysis",
+ "▁člán ku",
+ "▁b aby",
+ "▁ba by",
+ "▁e chter",
+ "▁о дного",
+ "▁од ного",
+ "▁одно го",
+ "же на",
+ "жен а",
+ "ж ена",
+ "▁white space",
+ "▁whites pace",
+ "ç u",
+ "LI ST",
+ "L IST",
+ "fr ique",
+ "fri que",
+ "f rique",
+ "▁v arias",
+ "▁var ias",
+ "▁vari as",
+ "▁va rias",
+ "▁W it",
+ "▁Wi t",
+ "▁Lic encia",
+ "Ex it",
+ "▁sie rp",
+ "▁sier p",
+ "▁ass emb",
+ "▁asse mb",
+ "▁split ting",
+ "▁spl itting",
+ "▁pa lace",
+ "▁pal ace",
+ "▁b locked",
+ "▁block ed",
+ "▁bound aries",
+ "▁iter ations",
+ "▁iteration s",
+ "▁Rot ten",
+ "▁Ver kehr",
+ "▁we er",
+ "Test s",
+ "T ests",
+ "if ting",
+ "ift ing",
+ "▁reg ul",
+ "▁pers ist",
+ "▁Sol ution",
+ "p b",
+ "▁col lapse",
+ "▁ collapse",
+ "▁arr ested",
+ "▁arrest ed",
+ "▁pred icate",
+ "▁Z one",
+ "▁Zo ne",
+ "▁ Zone",
+ "▁in gen",
+ "▁ing en",
+ "▁ ingen",
+ "zá lez",
+ "▁b anks",
+ "▁bank s",
+ "▁ban ks",
+ "pl ant",
+ "plan t",
+ "pla nt",
+ "p lant",
+ "▁N ella",
+ "▁Ne lla",
+ "▁Nel la",
+ "▁Nell a",
+ "▁б ан",
+ "▁ба н",
+ "▁ бан",
+ "▁S now",
+ "▁Sn ow",
+ "▁Kre uz",
+ "í cio",
+ "▁en ters",
+ "▁ent ers",
+ "▁enter s",
+ "▁ex pose",
+ "▁exp ose",
+ "▁expos e",
+ "č i",
+ "ши е",
+ "Qu al",
+ "Q ual",
+ "▁lands cape",
+ "▁пода цима",
+ "ma i",
+ "m ai",
+ "st ag",
+ "sta g",
+ "s tag",
+ "ова ний",
+ "DE F",
+ "D EF",
+ "[] {",
+ "[ ]{",
+ "▁derni ère",
+ "ic ut",
+ "i cut",
+ "▁X ml",
+ "▁ Xml",
+ "▁sub group",
+ "▁Pol sce",
+ "▁W arning",
+ "▁War ning",
+ "▁ Warning",
+ "▁veh icles",
+ "▁vehicle s",
+ "io t",
+ "i ot",
+ "▁d ll",
+ "▁ dll",
+ "ro nt",
+ "ron t",
+ "r ont",
+ "▁Lou ise",
+ "▁Louis e",
+ "▁a ra",
+ "▁ar a",
+ "▁ ara",
+ "▁S cala",
+ "▁Sc ala",
+ "▁canon ical",
+ "▁pl acing",
+ "▁pla cing",
+ "ER Y",
+ "E RY",
+ "▁J ag",
+ "▁Ja g",
+ "▁v irus",
+ "▁vi rus",
+ "▁vir us",
+ "em u",
+ "e mu",
+ "▁} );\r",
+ "▁}); \r",
+ "▁}) ;\r",
+ "▁м м",
+ "▁Tr ying",
+ "▁Try ing",
+ "▁Lex ikon",
+ "ab ord",
+ "abor d",
+ "▁exped ition",
+ "▁demand ed",
+ "▁demande d",
+ "Z yg",
+ "le in",
+ "lei n",
+ "l ein",
+ "▁verw endet",
+ "ри на",
+ "рин а",
+ "wo l",
+ "w ol",
+ "▁p ivot",
+ "▁одна ко",
+ "▁propri et",
+ "▁a wards",
+ "▁aw ards",
+ "▁award s",
+ "to ut",
+ "t out",
+ "▁as sim",
+ "▁ass im",
+ "▁St orm",
+ "▁Sto rm",
+ "Li mit",
+ "L imit",
+ "el in",
+ "eli n",
+ "e lin",
+ "we alth",
+ "ue z",
+ "u ez",
+ "▁rap present",
+ "▁rappres ent",
+ "▁re sta",
+ "▁r esta",
+ "▁res ta",
+ "▁rest a",
+ "▁gegründ et",
+ "▁journal ist",
+ "is ie",
+ "isi e",
+ "▁fac ility",
+ "▁facil ity",
+ "il led",
+ "ill ed",
+ "ille d",
+ "ul k",
+ "▁P K",
+ "▁ PK",
+ "An chor",
+ "▁_ )",
+ "▁ _)",
+ "V F",
+ "LA B",
+ "L AB",
+ "▁n å",
+ "od os",
+ "odo s",
+ "▁bill ion",
+ "vir ti",
+ "virt i",
+ "▁Je ux",
+ "юз а",
+ "ю за",
+ "tom cat",
+ "▁ch arts",
+ "▁char ts",
+ "▁chart s",
+ "▁ charts",
+ "▁B undle",
+ "▁Bund le",
+ "▁ Bundle",
+ "▁l st",
+ "▁ls t",
+ "▁ lst",
+ "▁ex er",
+ "▁fem ales",
+ "▁female s",
+ "▁oblig ed",
+ "▁a by",
+ "▁ab y",
+ "▁ aby",
+ "roll ed",
+ "rol led",
+ "rolle d",
+ "dr i",
+ "d ri",
+ "▁S che",
+ "▁Sch e",
+ "▁Sc he",
+ "▁vess els",
+ "▁vessel s",
+ "IMA RY",
+ "IM ARY",
+ "▁reason ing",
+ "▁про те",
+ "▁пр оте",
+ "FI LES",
+ "FILE S",
+ "ver k",
+ "v erk",
+ "os os",
+ "oso s",
+ "▁ком му",
+ "ді ї",
+ "д ії",
+ "▁d d",
+ "▁ dd",
+ "▁со ответ",
+ "▁IO Exception",
+ "▁ IOException",
+ "sk ých",
+ "ský ch",
+ "▁C LI",
+ "▁CL I",
+ "▁ CLI",
+ "▁ ње",
+ "C M",
+ "T D",
+ "▁possib ilities",
+ "▁possibil ities",
+ "▁Com pos",
+ "▁Comp os",
+ "hal f",
+ "h alf",
+ "▁web page",
+ "▁s wing",
+ "▁sw ing",
+ "▁ swing",
+ "▁z as",
+ "▁za s",
+ "▁ zas",
+ "▁cy cl",
+ "le id",
+ "lei d",
+ "ist ica",
+ "istic a",
+ "isti ca",
+ "▁In sert",
+ "▁Ins ert",
+ "▁ Insert",
+ "▁Sw eden",
+ "▁want ing",
+ "▁ ال",
+ "▁e euw",
+ "▁Admin istr",
+ "▁War ren",
+ "▁b s",
+ "▁ bs",
+ "▁p am",
+ "▁pa m",
+ "an us",
+ "anu s",
+ "Dr a",
+ "D ra",
+ "ex pl",
+ "exp l",
+ "▁K ant",
+ "▁Kan t",
+ "▁Ka nt",
+ "▁Aust in",
+ "▁c sak",
+ "▁cs ak",
+ "▁the atre",
+ "▁compat ibility",
+ "ма тиче",
+ "мати че",
+ "set State",
+ "б ю",
+ "}{ |",
+ "} {|",
+ "▁D y",
+ "▁Zw ischen",
+ "Al t",
+ "A lt",
+ "CLA RE",
+ "st eps",
+ "ste ps",
+ "step s",
+ "▁L age",
+ "▁La ge",
+ "▁Lag e",
+ "▁M itt",
+ "▁Mit t",
+ "▁Mi tt",
+ "▁Dub lin",
+ "▁рабо ты",
+ "de ep",
+ "▁fl ows",
+ "▁flow s",
+ "▁flo ws",
+ "▁Pa lace",
+ "▁Pal ace",
+ "▁Pala ce",
+ "un ix",
+ "uni x",
+ "re fs",
+ "ref s",
+ "um ar",
+ "uma r",
+ "u mar",
+ "as et",
+ "ase t",
+ "a set",
+ "co v",
+ "c ov",
+ "▁p ing",
+ "▁pi ng",
+ "▁pin g",
+ "▁ ping",
+ "▁Saf ari",
+ "fl ug",
+ "flu g",
+ "cre ens",
+ "creen s",
+ "c reens",
+ "{ #",
+ "▁ре а",
+ "ad ors",
+ "ado rs",
+ "ador s",
+ "▁a mor",
+ "▁am or",
+ "uc e",
+ "u ce",
+ "de mic",
+ "dem ic",
+ "▁Nether lands",
+ "▁cluster s",
+ "▁clust ers",
+ "▁en for",
+ "▁enf or",
+ "mar ine",
+ "▁b ugs",
+ "▁bu gs",
+ "▁bug s",
+ "izz ata",
+ "izza ta",
+ "▁s cra",
+ "▁sc ra",
+ "▁scr a",
+ "Le s",
+ "L es",
+ "qu ick",
+ "qui ck",
+ "▁turn o",
+ "▁tur no",
+ "_ *",
+ "ер а",
+ "е ра",
+ "Gener ated",
+ "> [",
+ "▁e stre",
+ "▁est re",
+ "▁es tre",
+ "▁ estre",
+ "or de",
+ "ord e",
+ "▁v erg",
+ "▁ver g",
+ "▁ve rg",
+ "ро з",
+ "р оз",
+ "▁p au",
+ "▁pa u",
+ "in cludes",
+ "include s",
+ "includ es",
+ "as sa",
+ "ass a",
+ "ad ers",
+ "ader s",
+ "ade rs",
+ "a ders",
+ "▁Гер ма",
+ "▁est aven",
+ "▁esta ven",
+ "▁ear liest",
+ "▁res ultado",
+ "▁result ado",
+ "mu n",
+ "m un",
+ "▁pl ots",
+ "▁plot s",
+ "▁ plots",
+ "di n",
+ "d in",
+ "sort ed",
+ "s orted",
+ "▁p reference",
+ "▁pre ference",
+ "▁prefer ence",
+ "ri ó",
+ "r ió",
+ "ту ре",
+ "тур е",
+ "▁L igue",
+ "▁Li gue",
+ "▁Lig ue",
+ "▁за вер",
+ "▁зав ер",
+ "ph r",
+ "p hr",
+ "▁p ocket",
+ "▁po cket",
+ "▁poc ket",
+ "▁par l",
+ "▁pa rl",
+ "▁l ak",
+ "▁la k",
+ "▁ lak",
+ "▁p owie",
+ "▁po wie",
+ "▁pow ie",
+ "▁al tres",
+ "▁alt res",
+ "▁altre s",
+ "$} ;",
+ "$ };",
+ "pl ain",
+ "pla in",
+ "p lain",
+ "▁C red",
+ "▁Cre d",
+ "▁Cr ed",
+ "▁ Cred",
+ "it za",
+ "itz a",
+ "pe rp",
+ "per p",
+ "Gr een",
+ "Gre en",
+ "G reen",
+ "▁dev oted",
+ "product ion",
+ "produ ction",
+ "p roduction",
+ "work er",
+ "wor ker",
+ "el sen",
+ "els en",
+ "else n",
+ "▁v ern",
+ "▁ver n",
+ "▁ve rn",
+ "▁ vern",
+ "▁már cius",
+ "▁Conf eder",
+ "▁Liver pool",
+ "▁му зи",
+ "▁em ails",
+ "▁email s",
+ "▁dist ances",
+ "▁distance s",
+ "▁seg ments",
+ "▁segment s",
+ "▁a nth",
+ "▁an th",
+ "▁ant h",
+ "▁ anth",
+ "▁w rest",
+ "▁wr est",
+ "▁ho og",
+ "▁cin ema",
+ "rr or",
+ "r ror",
+ "▁geb oren",
+ "▁é c",
+ "▁ éc",
+ "Mar ker",
+ "Mark er",
+ "▁Com pet",
+ "▁Comp et",
+ "▁ли сто",
+ "all owed",
+ "allow ed",
+ "allo wed",
+ "vol ume",
+ "Esp agne",
+ "Z e",
+ "▁fix es",
+ "▁fi xes",
+ "▁r ond",
+ "▁ro nd",
+ "▁arrang ement",
+ "/ ~",
+ ".] (",
+ ". ](",
+ "▁For rások",
+ "▁weiter en",
+ "▁weit eren",
+ "▁weitere n",
+ "ex cel",
+ "▁з мі",
+ "▁mod erne",
+ "▁modern e",
+ "▁moder ne",
+ "Eng lish",
+ "▁Transfer markt",
+ "▁be aring",
+ "▁bear ing",
+ "▁cl eared",
+ "▁clear ed",
+ "▁cle ared",
+ "▁са м",
+ "▁di vs",
+ "▁div s",
+ "ć i",
+ "▁э той",
+ "▁это й",
+ "▁Ге ор",
+ "sc ene",
+ "sce ne",
+ "▁a ges",
+ "▁ag es",
+ "▁age s",
+ "▁ ages",
+ "GE N",
+ "G EN",
+ "rä n",
+ "r än",
+ "▁T oul",
+ "▁To ul",
+ "▁A bs",
+ "▁Ab s",
+ "j át",
+ "▁med iante",
+ "▁medi ante",
+ "▁median te",
+ "▁em pres",
+ "▁emp res",
+ "▁Emp loyee",
+ "▁ Employee",
+ "▁polynomial s",
+ "▁optim ize",
+ "▁вы ступа",
+ "fa re",
+ "far e",
+ "f are",
+ "ве й",
+ "в ей",
+ "x f",
+ "qu ez",
+ "que z",
+ "q uez",
+ "▁bo tan",
+ "▁bot an",
+ "▁def end",
+ "▁defe nd",
+ "▁Qu art",
+ "Mon t",
+ "Mo nt",
+ "M ont",
+ "v b",
+ "ti ck",
+ "t ick",
+ "W D",
+ "min e",
+ "mi ne",
+ "m ine",
+ "▁mod ific",
+ "not ification",
+ "▁d enn",
+ "▁de nn",
+ "▁den n",
+ "▁al go",
+ "▁alg o",
+ "▁S po",
+ "▁Sp o",
+ "▁m istrzost",
+ "/ :",
+ "▁a present",
+ "▁apr esent",
+ "▁п род",
+ "▁про д",
+ "▁пр од",
+ "Vol ume",
+ "sk ą",
+ "s ką",
+ "prote cted",
+ "▁Turk ish",
+ "az y",
+ "a zy",
+ "▁p ouv",
+ "▁po uv",
+ "▁pou v",
+ "▁perí odo",
+ "sk og",
+ "sko g",
+ "▁ent ropy",
+ "▁entr opy",
+ "ze d",
+ "z ed",
+ "то ри",
+ "тор и",
+ "▁l ij",
+ "▁li j",
+ "▁ lij",
+ "bo ards",
+ "board s",
+ "▁ста ту",
+ "Bo ol",
+ "B ool",
+ "▁pol ity",
+ "▁polit y",
+ "@\" ,",
+ "@ \",",
+ "▁рі к",
+ "né e",
+ "n ée",
+ "▁Z ug",
+ "▁Zu g",
+ "▁Un iti",
+ "▁Unit i",
+ "ém et",
+ "é met",
+ "at ience",
+ "ati ence",
+ "di men",
+ "dim en",
+ "d imen",
+ "▁St even",
+ "▁Ste ven",
+ "▁Steve n",
+ "H a",
+ "ACT ION",
+ "A CTION",
+ "▁w and",
+ "▁wa nd",
+ "▁ wand",
+ "▁Na var",
+ "▁Nav ar",
+ "▁сі чня",
+ "W atch",
+ "▁Stu art",
+ "▁z de",
+ "▁zd e",
+ "▁кон тро",
+ "data set",
+ "dat aset",
+ "datas et",
+ "y ó",
+ "▁B ush",
+ "▁Bu sh",
+ "▁Bus h",
+ "▁се бя",
+ "▁wor thy",
+ "▁worth y",
+ "▁B le",
+ "▁Bl e",
+ "▁pro por",
+ "▁prop or",
+ "▁Vill age",
+ "▁Villa ge",
+ "▁Vil lage",
+ "▁r y",
+ "▁ ry",
+ "▁v oit",
+ "▁vo it",
+ "▁копи я",
+ "▁z p",
+ "▁c ura",
+ "▁cu ra",
+ "▁cur a",
+ "▁H tml",
+ "▁ Html",
+ "▁Die ser",
+ "▁Dies er",
+ "▁Diese r",
+ "▁D ays",
+ "▁Da ys",
+ "▁Day s",
+ "▁ Days",
+ "on nes",
+ "onn es",
+ "onne s",
+ "▁ant igu",
+ "▁anti gu",
+ "▁Sta aten",
+ "▁Staat en",
+ "▁f aint",
+ "▁fa int",
+ "on gs",
+ "ong s",
+ "▁ö st",
+ "▁ öst",
+ "Re direct",
+ "Red irect",
+ "ел ь",
+ "е ль",
+ "at orial",
+ "ator ial",
+ "ato rial",
+ "atori al",
+ "▁b other",
+ "▁bo ther",
+ "▁both er",
+ "▁bot her",
+ "Edit Text",
+ "▁Gi ul",
+ "▁за во",
+ "▁зав о",
+ "▁pue blo",
+ "▁Mississ ippi",
+ "ja k",
+ "j ak",
+ "▁w ings",
+ "▁win gs",
+ "▁wing s",
+ "on c",
+ "o nc",
+ "ív el",
+ "í vel",
+ "ien cia",
+ "i encia",
+ "ent licht",
+ "entlich t",
+ "▁B TW",
+ "or nal",
+ "orn al",
+ "▁Ко ро",
+ "▁Кор о",
+ "▁од ним",
+ "▁sa lv",
+ "▁sal v",
+ "▁f inden",
+ "▁find en",
+ "▁fin den",
+ "ge o",
+ "▁а виа",
+ "att ung",
+ "vi v",
+ "v iv",
+ "▁L uther",
+ "▁Lu ther",
+ "▁об щи",
+ "▁Ro lle",
+ "▁Rol le",
+ "▁Roll e",
+ "▁Ab raham",
+ "▁cent ered",
+ "▁center ed",
+ "▁sl ash",
+ "▁sla sh",
+ "▁ slash",
+ "is at",
+ "isa t",
+ "em ann",
+ "ema nn",
+ "eman n",
+ "e mann",
+ "O s",
+ "пар та",
+ "▁P ablo",
+ "▁Pa blo",
+ "▁collabor ation",
+ "path s",
+ "pat hs",
+ "éd ition",
+ "▁view ed",
+ "▁vie wed",
+ "▁cons isted",
+ "▁consist ed",
+ "▁recover ed",
+ "▁Mex ican",
+ "▁F ix",
+ "▁sp ell",
+ "▁spe ll",
+ "▁spel l",
+ "Spec ial",
+ "Spe cial",
+ "▁С т",
+ "ess eur",
+ "esse ur",
+ "▁Украи ны",
+ "form er",
+ "for mer",
+ "▁ś w",
+ "▁z eros",
+ "▁ze ros",
+ "▁zero s",
+ "▁Stra ßen",
+ "▁Straße n",
+ "▁organ isation",
+ "▁organis ation",
+ "▁ organisation",
+ "üss en",
+ "üs sen",
+ "▁S ierra",
+ "▁Se ason",
+ "▁Sea son",
+ "▁vol ont",
+ "Bean Factory",
+ "▁помо щ",
+ "▁pres sing",
+ "▁press ing",
+ "▁equival ence",
+ "▁c att",
+ "▁ca tt",
+ "▁cat t",
+ "ic ity",
+ "ici ty",
+ "i city",
+ "▁accompl ished",
+ "▁accomp lished",
+ "▁accomplish ed",
+ "▁y o",
+ "▁ yo",
+ "▁s ic",
+ "▁si c",
+ "▁im ports",
+ "▁import s",
+ "▁accom mod",
+ "▁Port o",
+ "▁Por to",
+ "▁я ка",
+ "▁як а",
+ "▁lo an",
+ "ти ки",
+ "тик и",
+ "▁check out",
+ "▁ass ess",
+ "▁asse ss",
+ "▁Pop ulation",
+ "ur ent",
+ "ure nt",
+ "uren t",
+ "u rent",
+ "clo jure",
+ "▁Sant os",
+ "▁Santo s",
+ "▁inform áció",
+ "PO S",
+ "P OS",
+ "▁g are",
+ "▁gar e",
+ "▁ga re",
+ "▁k ick",
+ "▁ki ck",
+ "▁rad ical",
+ "▁radi cal",
+ "▁Pe ace",
+ "▁stream ing",
+ "▁stre aming",
+ "ca mp",
+ "cam p",
+ "c amp",
+ "zą t",
+ "го вор",
+ "гов ор",
+ "гово р",
+ "▁Reg ierung",
+ "▁proceed ed",
+ "f m",
+ "ле ны",
+ "лен ы",
+ "▁ear nest",
+ "▁Par ad",
+ "▁Pa rad",
+ "▁Para d",
+ "request s",
+ "▁R aum",
+ "▁Ra um",
+ "š č",
+ "▁polic ies",
+ "▁T ig",
+ "▁Ti g",
+ "▁s itt",
+ "▁si tt",
+ "▁sit t",
+ "▁Ener gy",
+ "▁pur ely",
+ "▁pure ly",
+ "▁H aut",
+ "▁Ha ut",
+ "▁Sp eed",
+ "▁Spe ed",
+ "▁ Speed",
+ "bi o",
+ "b io",
+ "▁o range",
+ "▁or ange",
+ "▁big gest",
+ "▁britann ique",
+ "▁No table",
+ "▁Not able",
+ "v u",
+ "ле нии",
+ "би н",
+ "б ин",
+ "▁N ash",
+ "▁Na sh",
+ "▁Nas h",
+ "ще ние",
+ "▁c iel",
+ "▁ci el",
+ "adém ie",
+ "▁гру дня",
+ "▁jo ue",
+ "▁jou e",
+ "▁v oted",
+ "▁vo ted",
+ "▁vot ed",
+ "▁vote d",
+ "ri co",
+ "ric o",
+ "r ico",
+ "▁го р",
+ "▁г ор",
+ "▁ гор",
+ "▁коман ду",
+ "it ivity",
+ "iti vity",
+ "▁щ е",
+ "▁ ще",
+ "▁de finite",
+ "▁defin ite",
+ "▁definit e",
+ "uro pa",
+ "urop a",
+ "!\" );",
+ "! \");",
+ "Default s",
+ "▁неко торы",
+ "éd ération",
+ "▁s illy",
+ "▁sil ly",
+ "▁talk ed",
+ "▁tal ked",
+ "re u",
+ "r eu",
+ "▁L omb",
+ "▁Lo mb",
+ "▁stat ue",
+ "кт а",
+ "к та",
+ "ю р",
+ "um ably",
+ "▁горо де",
+ "▁город е",
+ "▁R untime",
+ "▁Run time",
+ "▁ Runtime",
+ "▁di agn",
+ "▁diag n",
+ "▁dia gn",
+ "▁r etro",
+ "▁ret ro",
+ "▁retr o",
+ "▁Sver ige",
+ "▁in icial",
+ "▁inici al",
+ "ien za",
+ "i enza",
+ "▁fig lio",
+ "▁z og",
+ "▁zo g",
+ "▁re y",
+ "▁r ey",
+ "▁ rey",
+ "▁R und",
+ "▁Run d",
+ "▁Ru nd",
+ "т ный",
+ "▁ce ased",
+ "er no",
+ "ern o",
+ "▁e sa",
+ "▁es a",
+ "▁ esa",
+ "▁tr ouv",
+ "▁tro uv",
+ "▁trou v",
+ "▁Gemeinde n",
+ "▁Geme inden",
+ "▁comer cial",
+ "sk ap",
+ "ska p",
+ "s kap",
+ "en ario",
+ "ena rio",
+ "▁ju ris",
+ "▁jur is",
+ "T B",
+ "на ла",
+ "нал а",
+ "н ала",
+ "▁v ij",
+ "▁vi j",
+ "V O",
+ "▁c lin",
+ "▁cl in",
+ "▁cli n",
+ "jö r",
+ "j ör",
+ "са н",
+ "с ан",
+ "ow ała",
+ "owa ła",
+ "ował a",
+ "rib ución",
+ "ribu ción",
+ "▁urs prüng",
+ "▁con dem",
+ "▁cond em",
+ "▁St age",
+ "▁Sta ge",
+ "▁ Stage",
+ "▁mix ing",
+ "▁рі з",
+ "▁f ans",
+ "▁fa ns",
+ "▁fan s",
+ "há z",
+ "h áz",
+ "so cial",
+ "soci al",
+ "za n",
+ "z an",
+ "▁с вой",
+ "▁сво й",
+ "Cook ie",
+ "▁Ro land",
+ "▁Rol and",
+ "az ionale",
+ "▁Sl oven",
+ "▁Slo ven",
+ "▁Slov en",
+ "▁F iche",
+ "▁Fich e",
+ "▁S é",
+ "h ä",
+ "▁official s",
+ "▁offici als",
+ "▁î nt",
+ "▁în t",
+ "Inter ceptor",
+ "Table s",
+ "Tab les",
+ "T ables",
+ "▁da von",
+ "▁dav on",
+ "init ialize",
+ "initial ize",
+ "]= \"",
+ "] =\"",
+ "▁B ody",
+ "▁Bo dy",
+ "▁Bod y",
+ "▁ Body",
+ "▁U pper",
+ "▁Up per",
+ "▁ Upper",
+ "▁Col lect",
+ "▁Coll ect",
+ "▁ Collect",
+ "▁Zür ich",
+ "Hor izontal",
+ "Ty p",
+ "T yp",
+ "▁polít ico",
+ "▁Rewrite Cond",
+ "▁h oped",
+ "▁hope d",
+ "▁ho ped",
+ "▁hop ed",
+ "▁anx ious",
+ "Li ter",
+ "L iter",
+ "ja hr",
+ "j ahr",
+ "▁ass emble",
+ "▁assemb le",
+ "▁c rypt",
+ "▁cry pt",
+ "lah oma",
+ "AS H",
+ "A SH",
+ "▁Б ри",
+ "▁C ic",
+ "▁Ci c",
+ "tw itter",
+ "hy per",
+ "▁T ell",
+ "▁Te ll",
+ "▁Tel l",
+ "іль ки",
+ "во бо",
+ "▁ba zie",
+ "▁baz ie",
+ "▁contempor ary",
+ "▁Param eter",
+ "▁Para meter",
+ "▁ Parameter",
+ "st wa",
+ "▁bek end",
+ "co ck",
+ "c ock",
+ "pre vious",
+ "prev ious",
+ "en ska",
+ "ens ka",
+ "ensk a",
+ "▁c aller",
+ "▁cal ler",
+ "▁call er",
+ "]] )",
+ "] ])",
+ "▁R az",
+ "▁Ra z",
+ "▁Se lon",
+ "▁Sel on",
+ "▁propos al",
+ "▁b ý",
+ "▁S ied",
+ "▁Sie d",
+ "▁Si ed",
+ "▁Arbe its",
+ "▁Arbeit s",
+ "▁p ride",
+ "▁pr ide",
+ "▁pri de",
+ "▁sl ope",
+ "▁slo pe",
+ "id é",
+ "grad ient",
+ "▁Дже рела",
+ "▁S H",
+ "▁ SH",
+ "▁раз рабо",
+ "ivers ity",
+ "спо дар",
+ "\\{ \\",
+ "\\ {\\",
+ "▁с тали",
+ "▁ст али",
+ "▁ста ли",
+ "▁стал и",
+ "▁Ein zel",
+ "▁Einz el",
+ "▁rg ba",
+ "▁A nim",
+ "▁An im",
+ "▁ Anim",
+ "▁a lles",
+ "▁al les",
+ "▁all es",
+ "▁alle s",
+ "▁ alles",
+ "ба р",
+ "б ар",
+ "er te",
+ "ert e",
+ "▁réalis é",
+ "▁réal isé",
+ "Inst itut",
+ "▁mar kup",
+ "▁mark up",
+ "▁v ars",
+ "▁var s",
+ "▁va rs",
+ "▁ vars",
+ "▁g am",
+ "▁ga m",
+ "▁Васи ль",
+ "iz za",
+ "izz a",
+ "i zza",
+ "▁C ob",
+ "▁Co b",
+ "▁M etal",
+ "▁Me tal",
+ "▁Met al",
+ "▁Meta l",
+ "▁le ak",
+ "▁L anc",
+ "▁La nc",
+ "▁Lan c",
+ "Sw itch",
+ "De lay",
+ "Del ay",
+ "at uur",
+ "atu ur",
+ "▁че ты",
+ "▁анг лий",
+ "▁leg acy",
+ "▁desar roll",
+ "▁top ological",
+ "▁jewe ils",
+ "▁Nederland se",
+ "▁atmos phere",
+ "ur ban",
+ "urb an",
+ "▁s lov",
+ "▁sl ov",
+ "▁slo v",
+ "▁law yer",
+ "pe cially",
+ "▁altern ate",
+ "▁para met",
+ "▁param et",
+ "▁establish ment",
+ "▁wood s",
+ "▁wo ods",
+ "P D",
+ "▁на и",
+ "▁m ang",
+ "▁ma ng",
+ "▁man g",
+ "▁wechsel te",
+ "сь ку",
+ "ськ у",
+ ". =",
+ "▁fif teen",
+ "SU M",
+ "S UM",
+ "▁F ro",
+ "▁Fr o",
+ "▁L ED",
+ "▁LE D",
+ "▁ LED",
+ "ow ano",
+ "owa no",
+ "owan o",
+ "стви е",
+ "▁D onnées",
+ "to l",
+ "t ol",
+ "ży n",
+ "ż yn",
+ "cre f",
+ "cr ef",
+ "c ref",
+ "стви и",
+ "ho rn",
+ "hor n",
+ "h orn",
+ "▁со об",
+ "▁обо ро",
+ "▁Comp lete",
+ "▁Comple te",
+ "▁ Complete",
+ "“ )",
+ "▁kind ly",
+ "▁Cham ber",
+ "s ég",
+ "W H",
+ "▁amb ient",
+ "к ро",
+ "▁ch eval",
+ "▁che val",
+ "▁на писа",
+ "fl u",
+ "f lu",
+ "▁Off iz",
+ "ma te",
+ "mat e",
+ "m ate",
+ "nat ural",
+ "n atural",
+ "se par",
+ "sep ar",
+ "em pre",
+ "emp re",
+ "View Holder",
+ "f w",
+ "▁le tech",
+ "▁let ech",
+ "▁tra iling",
+ "▁trail ing",
+ "at ri",
+ "atr i",
+ "a tri",
+ "▁G ó",
+ "▁B onn",
+ "▁Bo nn",
+ "▁Bon n",
+ "▁un likely",
+ "▁unlike ly",
+ "RA M",
+ "R AM",
+ "en st",
+ "ens t",
+ "St ats",
+ "Stat s",
+ "▁поли тиче",
+ ")- -(",
+ ")-- (",
+ "▁t rom",
+ "▁tr om",
+ "▁tro m",
+ "!. ..",
+ "! ...",
+ "▁Mean while",
+ "ст ана",
+ "ста на",
+ "стан а",
+ "▁Re ino",
+ "▁Rein o",
+ "▁A rist",
+ "▁Ar ist",
+ "▁Ari st",
+ "$} }%",
+ "$ }}%",
+ "▁so lem",
+ "▁sol em",
+ "▁sole m",
+ "clos ure",
+ "ign ation",
+ "ło d",
+ "ł od",
+ "▁di vor",
+ "▁div or",
+ "▁между народ",
+ "=\" ",
+ "▁m olt",
+ "▁mo lt",
+ "▁mol t",
+ "▁sk ills",
+ "▁skill s",
+ "▁C ir",
+ "▁Ci r",
+ "▁Des pués",
+ "▁Desp ués",
+ "▁l un",
+ "▁lu n",
+ "▁cor on",
+ "▁co ron",
+ "▁Com ics",
+ "сто ри",
+ "стор и",
+ "с тори",
+ "▁It ems",
+ "▁Item s",
+ "▁ Items",
+ "▁Th ink",
+ "и гра",
+ "▁g rows",
+ "▁gr ows",
+ "▁gro ws",
+ "▁grow s",
+ "port al",
+ "por tal",
+ "▁n ich",
+ "▁ni ch",
+ "▁nic h",
+ "▁restrict ions",
+ "▁restriction s",
+ "▁L au",
+ "▁La u",
+ "ше ння",
+ "шен ня",
+ "▁So zial",
+ "▁к і",
+ "▁ кі",
+ "ma na",
+ "man a",
+ "m ana",
+ "▁lie utenant",
+ "Att r",
+ "At tr",
+ "ume ric",
+ "umer ic",
+ "▁dr ives",
+ "▁drive s",
+ "▁dri ves",
+ "▁driv es",
+ "as is",
+ "asi s",
+ "ба й",
+ "N L",
+ "Zyg ote",
+ "phys ics",
+ "▁intern ally",
+ "▁internal ly",
+ "ва ется",
+ "вает ся",
+ "H idden",
+ "▁Да та",
+ "▁un safe",
+ "▁R oc",
+ "▁Ro c",
+ "▁instanti ate",
+ "▁instant iate",
+ "ud ni",
+ "▁R oom",
+ "▁Ro om",
+ "▁П ред",
+ "▁Пре д",
+ "▁m aja",
+ "▁ma ja",
+ "▁maj a",
+ "ach ment",
+ "u uid",
+ "Project s",
+ "Gr e",
+ "G re",
+ "▁в зя",
+ "▁вз я",
+ "▁Bl ood",
+ "▁Blo od",
+ "ic ile",
+ "ici le",
+ "i cile",
+ "▁N ouvelle",
+ "Do es",
+ "▁nie uwe",
+ "ál e",
+ "á le",
+ "an gs",
+ "ang s",
+ "we ak",
+ "▁a antal",
+ "▁aan tal",
+ "▁Е в",
+ "▁Dres den",
+ "▁L ost",
+ "▁Lo st",
+ "▁Los t",
+ "ка та",
+ "▁invol ve",
+ "▁decl aring",
+ "▁decla ring",
+ "▁declar ing",
+ "▁Polit ical",
+ "ér ez",
+ "ére z",
+ "é rez",
+ "ko p",
+ "k op",
+ "not ify",
+ "▁C urt",
+ "▁Cu rt",
+ "▁Cur t",
+ "▁schließ lich",
+ "gh an",
+ "g han",
+ "це на",
+ "цен а",
+ "ц ена",
+ "▁kw iet",
+ "üg el",
+ "üge l",
+ "ü gel",
+ "▁S ob",
+ "▁So b",
+ "▁sub str",
+ "▁subst r",
+ "▁subs tr",
+ "▁ substr",
+ "▁el len",
+ "▁elle n",
+ "▁ell en",
+ "▁ ellen",
+ "ion ario",
+ "iona rio",
+ "en son",
+ "ens on",
+ "enso n",
+ "WI N",
+ "W IN",
+ "спо рт",
+ "em er",
+ "eme r",
+ "e mer",
+ "no me",
+ "nom e",
+ "n ome",
+ "▁sm iled",
+ "▁smile d",
+ "▁Sch midt",
+ "▁sm oke",
+ "▁T oken",
+ "▁To ken",
+ "▁Tok en",
+ "▁ Token",
+ "▁v ague",
+ "▁va gue",
+ "▁pro vision",
+ "▁prov ision",
+ "ya ml",
+ "y aml",
+ "ни тель",
+ "ните ль",
+ "on ial",
+ "oni al",
+ "onia l",
+ "é poque",
+ "▁N C",
+ "▁ NC",
+ "▁N FL",
+ "te ck",
+ "▁al lo",
+ "▁all o",
+ "▁ allo",
+ "▁préc éd",
+ "cent ral",
+ "▁ma jd",
+ "▁maj d",
+ "▁ch rom",
+ "▁chr om",
+ "▁ chrom",
+ "▁Z um",
+ "▁Zu m",
+ "ver so",
+ "vers o",
+ "▁verschied enen",
+ "▁ста ро",
+ "▁стар о",
+ "▁qu elle",
+ "▁que lle",
+ "▁q uelle",
+ "▁quel le",
+ "▁ quelle",
+ "▁r ép",
+ "▁ré p",
+ "RO W",
+ "R OW",
+ "▁i hnen",
+ "▁ih nen",
+ "▁ihn en",
+ "▁sens ible",
+ "▁sen sible",
+ "| $",
+ "▁sc hw",
+ "▁sch w",
+ "▁B R",
+ "▁ BR",
+ "▁O ptions",
+ "▁Option s",
+ "▁Opt ions",
+ "▁ Options",
+ "▁t ens",
+ "▁te ns",
+ "▁ten s",
+ "▁conqu ist",
+ "▁l ieß",
+ "▁lie ß",
+ "▁ ließ",
+ "ov is",
+ "ovi s",
+ "o vis",
+ "▁мі ста",
+ "▁міс та",
+ "▁e la",
+ "▁el a",
+ "▁ ela",
+ "rif ice",
+ "r ifice",
+ "▁l ok",
+ "▁lo k",
+ "▁Queens land",
+ "B inary",
+ "▁Ra hmen",
+ "▁Rah men",
+ "▁a bol",
+ "▁ab ol",
+ "▁ abol",
+ "▁č ást",
+ "▁Ed inburgh",
+ "in de",
+ "ind e",
+ "i nde",
+ "▁calcul ating",
+ "▁calc ulating",
+ "▁O regon",
+ "▁le git",
+ "▁leg it",
+ "▁Nach dem",
+ "at hon",
+ "ath on",
+ "P rivate",
+ "illa ume",
+ "▁ob servable",
+ "▁observ able",
+ "le ans",
+ "lean s",
+ "lea ns",
+ "▁remark ed",
+ "▁h alt",
+ "▁ha lt",
+ "▁hal t",
+ "▁ halt",
+ "ни цы",
+ "ниц ы",
+ "▁st amp",
+ "▁sta mp",
+ "▁stam p",
+ "▁Ad v",
+ "Lo uis",
+ "Lou is",
+ "im ming",
+ "imm ing",
+ "gru ppe",
+ "▁Pol icy",
+ "▁ Policy",
+ "▁v rij",
+ "▁vr ij",
+ "ft rag",
+ "▁off ices",
+ "▁offic es",
+ "▁office s",
+ "▁particip ated",
+ "▁es col",
+ "▁esc ol",
+ "▁\" ",
+ "▁\"< /",
+ "▁nombre uses",
+ "▁d ivid",
+ "▁di vid",
+ "▁div id",
+ "▁ad vis",
+ "▁adv is",
+ "лта ти",
+ "▁= =>",
+ "▁== >",
+ "Ori entation",
+ "ci d",
+ "c id",
+ "Car t",
+ "Ca rt",
+ "C art",
+ "▁m urm",
+ "▁mu rm",
+ "▁mur m",
+ "▁ass ez",
+ "▁asse z",
+ "▁l inking",
+ "▁link ing",
+ "▁lin king",
+ "build ing",
+ "▁rec onna",
+ "▁recon na",
+ "▁s hook",
+ "▁sh ook",
+ "▁sho ok",
+ "man aged",
+ "mana ged",
+ "land a",
+ "lan da",
+ "l anda",
+ "▁Le ón",
+ "▁cré ation",
+ "до й",
+ "oc ity",
+ "oci ty",
+ "o city",
+ "▁w ij",
+ "▁ wij",
+ "▁wie ś",
+ "xt art",
+ "▁M ove",
+ "▁Mo ve",
+ "▁Mov e",
+ "▁ Move",
+ "lung en",
+ "l ungen",
+ "ству ет",
+ "or ney",
+ "orn ey",
+ "option al",
+ "opt ional",
+ "ma cro",
+ "mac ro",
+ "Cond ition",
+ "▁square s",
+ "▁squ ares",
+ "▁mist aken",
+ "▁mistake n",
+ "án t",
+ "á nt",
+ "▁R is",
+ "▁Ri s",
+ "▁sent ences",
+ "▁sentence s",
+ "er ea",
+ "ere a",
+ "e rea",
+ "▁m ij",
+ "▁mi j",
+ "Un d",
+ "U nd",
+ "▁nom br",
+ "z A",
+ "▁In dependent",
+ "▁Indep endent",
+ "▁Independ ent",
+ "▁p review",
+ "▁pre view",
+ "▁prev iew",
+ "▁ preview",
+ "im as",
+ "ima s",
+ "i mas",
+ "▁m ales",
+ "▁ma les",
+ "▁mal es",
+ "▁male s",
+ "in ental",
+ "inen tal",
+ "inent al",
+ "Th ank",
+ "▁p opol",
+ "▁po pol",
+ "▁pop ol",
+ "▁p over",
+ "▁po ver",
+ "▁pov er",
+ "▁gr asp",
+ "▁gra sp",
+ "▁im ped",
+ "▁imp ed",
+ "▁campion ato",
+ "▁W ei",
+ "▁We i",
+ "▁t itled",
+ "▁title d",
+ "▁tit led",
+ "▁A demás",
+ "▁Pass word",
+ "▁ Password",
+ "▁P am",
+ "▁Pa m",
+ "UI LD",
+ "▁ли пня",
+ "wer b",
+ "we rb",
+ "w erb",
+ "........ ........",
+ "▁R ío",
+ "▁te eth",
+ "b p",
+ "▁S W",
+ "▁ SW",
+ "ul aire",
+ "ula ire",
+ "▁se ized",
+ "▁sei zed",
+ "▁St ef",
+ "▁Ste f",
+ "ú l",
+ "▁v iz",
+ "▁vi z",
+ "ion y",
+ "io ny",
+ "i ony",
+ "▁j unt",
+ "▁ju nt",
+ "▁jun t",
+ "▁kter á",
+ "▁wrześ nia",
+ "< >",
+ "▁s urg",
+ "▁su rg",
+ "▁sur g",
+ "▁tu tte",
+ "▁tut te",
+ "▁H ob",
+ "▁Ho b",
+ "по від",
+ "пов ід",
+ "▁w ohl",
+ "▁wo hl",
+ "▁ wohl",
+ "▁t rag",
+ "▁tr ag",
+ "▁tra g",
+ "▁C rown",
+ "▁Cr own",
+ "▁Cro wn",
+ "▁Crow n",
+ "▁tr ova",
+ "▁tro va",
+ "▁trov a",
+ "сто ву",
+ "стов у",
+ "▁Vien na",
+ "ese hen",
+ "▁met ropol",
+ "▁reflect ed",
+ "те та",
+ "тет а",
+ "т ета",
+ "▁trad uc",
+ "▁tradu c",
+ "▁B ast",
+ "▁Bas t",
+ "▁Ba st",
+ "▁ersch ien",
+ "wo ord",
+ "() \"",
+ "( )\"",
+ "ta let",
+ "tal et",
+ "t alet",
+ "▁ro ads",
+ "▁road s",
+ "ве дения",
+ "веде ния",
+ "ühr ung",
+ "▁c ogn",
+ "▁co gn",
+ "▁V alle",
+ "▁Val le",
+ "▁Va lle",
+ "▁Vall e",
+ "▁land ing",
+ "▁lan ding",
+ "▁Re gex",
+ "▁Reg ex",
+ "▁I owa",
+ "▁Io wa",
+ "dz iał",
+ "d ział",
+ "▁erre ichte",
+ "au m",
+ "a um",
+ "▁found er",
+ "▁fo under",
+ "▁fou nder",
+ "ap olis",
+ "Comp iler",
+ "▁k op",
+ "▁ko p",
+ "▁ kop",
+ "▁m arc",
+ "▁ma rc",
+ "▁mar c",
+ "▁те ритор",
+ ")) `",
+ ") )`",
+ "▁l ei",
+ "▁le i",
+ "▁ lei",
+ "ge on",
+ "geo n",
+ "▁weap ons",
+ "▁weapon s",
+ "▁h orn",
+ "▁hor n",
+ "▁ho rn",
+ "▁ horn",
+ "▁el if",
+ "▁ elif",
+ "▁Cap ital",
+ "▁Capit al",
+ "ć e",
+ "▁for all",
+ "▁ forall",
+ "▁э та",
+ "pre view",
+ "prev iew",
+ "p review",
+ "▁D NA",
+ "▁s id",
+ "▁si d",
+ "or ch",
+ "▁R as",
+ "▁Ra s",
+ "▁a rab",
+ "▁ar ab",
+ "▁ara b",
+ "▁ arab",
+ "Be st",
+ "B est",
+ "▁с чита",
+ "▁L ópez",
+ "an ça",
+ "▁fun kc",
+ "▁t ienen",
+ "▁tiene n",
+ "▁ti enen",
+ "▁tie nen",
+ "; &",
+ "m useum",
+ "▁E rr",
+ "▁Er r",
+ "▁ Err",
+ "▁re sort",
+ "▁res ort",
+ "No v",
+ "N ov",
+ "▁k al",
+ "▁ka l",
+ "▁ kal",
+ "M W",
+ "ш ь",
+ "an chor",
+ "anc hor",
+ "anch or",
+ "▁ро ман",
+ "le ading",
+ "lea ding",
+ "▁m anten",
+ "▁ma nten",
+ "▁man ten",
+ "▁mant en",
+ "▁Sil va",
+ "da de",
+ "d ade",
+ "▁design ated",
+ "▁rev ista",
+ "▁revis ta",
+ "O ct",
+ "per cent",
+ "▁у ні",
+ "ident ifier",
+ "ma ss",
+ "mas s",
+ "m ass",
+ "@ @",
+ "uls ion",
+ "ger meister",
+ "g ermeister",
+ "▁pred icted",
+ "▁predict ed",
+ "▁с ви",
+ "жно й",
+ "ж ной",
+ "▁Er geb",
+ "▁c ust",
+ "▁cu st",
+ "▁remove s",
+ "▁remov es",
+ "ch arg",
+ "char g",
+ "cha rg",
+ "при мер",
+ "▁for ming",
+ "▁form ing",
+ "as ma",
+ "asm a",
+ "std out",
+ "F un",
+ "ym e",
+ "y me",
+ "ter ed",
+ "te red",
+ "tere d",
+ "t ered",
+ "urs ive",
+ "ig hed",
+ "igh ed",
+ "▁сле д",
+ "▁ след",
+ "ver band",
+ "verb and",
+ "▁LO G",
+ "▁ LOG",
+ "ra ms",
+ "ram s",
+ "r ams",
+ "éo n",
+ "é on",
+ "en dra",
+ "end ra",
+ "▁Be reich",
+ "▁Bere ich",
+ "▁tempor al",
+ "▁temp oral",
+ "▁tempo ral",
+ "▁lang ue",
+ "▁lan gue",
+ "▁I nn",
+ "▁In n",
+ "▁more over",
+ "▁tutorial s",
+ "M iddle",
+ "▁совет ский",
+ "▁mainten ance",
+ "as ures",
+ "asure s",
+ "▁vál to",
+ "BA SE",
+ "B ASE",
+ "▁disapp ear",
+ "ски я",
+ "▁conoc ido",
+ "▁На у",
+ "▁Li bert",
+ "▁Lib ert",
+ "▁Liber t",
+ "▁Har old",
+ "▁life time",
+ "▁lif etime",
+ "▁T ür",
+ "▁za wod",
+ "▁zaw od",
+ "om ic",
+ "omi c",
+ "o mic",
+ "▁Retrie ved",
+ "arch itecture",
+ "č ka",
+ "iform es",
+ "develop ment",
+ "ord nung",
+ "In f",
+ "le ben",
+ "leb en",
+ "l eben",
+ "▁St ars",
+ "▁Sta rs",
+ "▁Star s",
+ "sign al",
+ "sig nal",
+ "▁gram mar",
+ "▁cor so",
+ "▁cors o",
+ "▁W agner",
+ "▁ge ht",
+ "▁royal e",
+ "▁roy ale",
+ "wa rn",
+ "war n",
+ "w arn",
+ "um bled",
+ "umb led",
+ "umble d",
+ "▁inst it",
+ "▁ins tit",
+ "▁Ш и",
+ "h h",
+ "▁ref uge",
+ "▁favor ite",
+ "ier to",
+ "iert o",
+ "▁cond ado",
+ "▁T her",
+ "▁The r",
+ "▁Th er",
+ "▁человек а",
+ "▁челове ка",
+ "▁F ood",
+ "▁Foo d",
+ "▁Fo od",
+ "▁se izo",
+ "▁sei zo",
+ "▁Init ialize",
+ "▁Initial ize",
+ "▁con nu",
+ "▁conn u",
+ "▁over lap",
+ "▁E mil",
+ "▁Em il",
+ "▁Mart í",
+ "▁жовт ня",
+ "er va",
+ "erv a",
+ "▁bo ats",
+ "▁boat s",
+ "a ções",
+ "▁der rot",
+ "▁m alloc",
+ "▁mal loc",
+ "▁ malloc",
+ "▁con ject",
+ "▁conj ect",
+ "j k",
+ "▁s are",
+ "▁sa re",
+ "▁sar e",
+ "ле мен",
+ "лем ен",
+ "▁s ums",
+ "▁su ms",
+ "▁sum s",
+ "Author ization",
+ "▁K un",
+ "▁Ku n",
+ "]$ ,",
+ "] $,",
+ "geme inde",
+ "gemein de",
+ "g emeinde",
+ "od ot",
+ "odo t",
+ "o dot",
+ "de fin",
+ "def in",
+ "▁e mission",
+ "▁em ission",
+ "▁Кра с",
+ "▁app art",
+ "▁ap part",
+ "▁appar t",
+ "▁stop ping",
+ "▁sto pping",
+ "▁С ред",
+ "▁conj ug",
+ "▁ins ight",
+ "▁Broad cast",
+ "▁PM ID",
+ "▁adv antages",
+ "▁advantage s",
+ "en es",
+ "ene s",
+ "e nes",
+ "▁res idence",
+ "▁resid ence",
+ "lj en",
+ "l jen",
+ "iss eur",
+ "isse ur",
+ "▁pubblic ato",
+ "▁Git Hub",
+ "▁Per u",
+ "▁Pe ru",
+ "▁galax ies",
+ "▁annot ations",
+ "▁annotation s",
+ "ga s",
+ "g as",
+ "▁ré pond",
+ "▁rép ond",
+ "J s",
+ "▁independent ly",
+ "▁independ ently",
+ "N P",
+ "▁in qu",
+ "▁gr ounds",
+ "▁ground s",
+ "Com ponents",
+ "Component s",
+ "▁a nten",
+ "▁an ten",
+ "▁ant en",
+ "▁ante n",
+ "▁ anten",
+ "▁в з",
+ "▁h os",
+ "▁ho s",
+ "▁ hos",
+ "▁s int",
+ "▁si nt",
+ "▁sin t",
+ "▁h iding",
+ "▁hi ding",
+ "▁hid ing",
+ "▁wojew ództ",
+ "Message s",
+ "Mess ages",
+ "▁по каза",
+ "▁пока за",
+ "== =",
+ "= ==",
+ "▁Ab stract",
+ "▁ Abstract",
+ "▁l äng",
+ "▁län g",
+ "▁lä ng",
+ "▁Form ula",
+ "da wn",
+ "d awn",
+ "▁design s",
+ "Im g",
+ "▁Portug uese",
+ "▁incl uy",
+ "▁inclu y",
+ "avig ator",
+ "▁Bro thers",
+ "▁cont inent",
+ "▁contin ent",
+ "▁evident ly",
+ "ra ce",
+ "rac e",
+ "r ace",
+ "ць кого",
+ "▁re ck",
+ "▁rec k",
+ "▁ reck",
+ "▁сер пня",
+ "▁G rey",
+ "▁Gr ey",
+ "▁Gre y",
+ "▁appe al",
+ "▁un like",
+ "▁power shell",
+ "▁pow ershell",
+ "▁powers hell",
+ "▁r acc",
+ "▁ra cc",
+ "▁rac c",
+ "fer s",
+ "fe rs",
+ "f ers",
+ "▁bur ning",
+ "▁burn ing",
+ "fas st",
+ "fass t",
+ "inst alled",
+ "install ed",
+ "▁G ive",
+ "▁Gi ve",
+ "▁col onial",
+ "▁colon ial",
+ "▁ €",
+ "▁R ö",
+ "▁ch rist",
+ "▁chr ist",
+ "ne hm",
+ "neh m",
+ "та м",
+ "▁cor po",
+ "▁con virti",
+ "yt er",
+ "y ter",
+ "S ym",
+ "▁Gree ce",
+ "▁m oth",
+ "▁mo th",
+ "▁mot h",
+ "▁Joh an",
+ "▁Jo han",
+ "▁mon arch",
+ "▁Down load",
+ "▁ Download",
+ "▁c raft",
+ "▁cr aft",
+ "▁cra ft",
+ "▁ craft",
+ "u ž",
+ "▁Lu ke",
+ "▁suf fix",
+ "▁suff ix",
+ "\\ /",
+ "Ha ve",
+ "H ave",
+ "▁ка рь",
+ "▁кар ь",
+ "▁comfort able",
+ "▁t ips",
+ "▁tip s",
+ "▁ti ps",
+ "▁П ісля",
+ "▁бро ја",
+ "▁ин форма",
+ "M Q",
+ "бра н",
+ "б ран",
+ "▁t x",
+ "▁ tx",
+ "▁sl aves",
+ "▁sla ves",
+ "▁slave s",
+ "▁fire wall",
+ "▁For ces",
+ "▁Force s",
+ "at if",
+ "ati f",
+ "▁Qu ellen",
+ "▁thé âtre",
+ "ль ных",
+ "▁располо жен",
+ "▁Det ails",
+ "▁ Details",
+ "k ą",
+ "▁long itud",
+ "IN ST",
+ "▁n aval",
+ "▁na val",
+ "▁nav al",
+ "Fern seh",
+ "es sel",
+ "ess el",
+ "esse l",
+ "Gr ad",
+ "G rad",
+ "▁be lang",
+ "▁bel ang",
+ "▁a ggi",
+ "▁ag gi",
+ "▁ aggi",
+ "Zygote Init",
+ "ł ów",
+ "▁S ug",
+ "▁Su g",
+ "si l",
+ "s il",
+ "▁ex terior",
+ "щ і",
+ "OR D",
+ "en ser",
+ "ens er",
+ "ense r",
+ "▁rapid e",
+ "▁rap ide",
+ "▁тем пера",
+ "in cie",
+ "inci e",
+ "inc ie",
+ "S i",
+ "av am",
+ "ava m",
+ "ar ded",
+ "ard ed",
+ "arde d",
+ "▁Ad ded",
+ "▁Add ed",
+ "End point",
+ "hard t",
+ "har dt",
+ "ст ран",
+ "стра н",
+ "стр ан",
+ "▁est ilo",
+ "▁H az",
+ "▁Ha z",
+ "▁mus ste",
+ "▁muss te",
+ "u o",
+ "ii i",
+ "i ii",
+ "▁ř í",
+ "▁ ří",
+ "an zen",
+ "anz en",
+ "anze n",
+ "же ний",
+ "ah a",
+ "a ha",
+ "ARN ING",
+ "▁re nov",
+ "▁ren ov",
+ "▁div ine",
+ "▁convin ced",
+ "▁hum ans",
+ "▁human s",
+ "▁hu mans",
+ "▁depart ure",
+ "▁Med iter",
+ "▁Medi ter",
+ "q a",
+ "▁poss essed",
+ "▁possess ed",
+ "▁цер кви",
+ "gi v",
+ "g iv",
+ "▁сво ї",
+ "▁Ort ste",
+ "▁Orts te",
+ "R ich",
+ "pu is",
+ "p uis",
+ "in crement",
+ "▁Hann over",
+ "▁u cz",
+ "Do ne",
+ "Don e",
+ "D one",
+ "▁alg uns",
+ "FI X",
+ "F IX",
+ "▁Her itage",
+ "remove Class",
+ "фе р",
+ "ф ер",
+ "▁a bc",
+ "▁ab c",
+ "▁ abc",
+ "D r",
+ "▁се мей",
+ "▁сем ей",
+ "{ :",
+ "▁se ule",
+ "▁seu le",
+ "▁seul e",
+ "zeich nungen",
+ "zeichnung en",
+ "ad dy",
+ "add y",
+ "▁Par ís",
+ "üss eld",
+ "▁re ception",
+ "▁rece ption",
+ "fo lio",
+ "fol io",
+ "ti ny",
+ "t iny",
+ "▁recens ement",
+ "▁N ur",
+ "▁Nu r",
+ "▁k ier",
+ "▁ki er",
+ "▁g mina",
+ "▁gmin a",
+ "sta at",
+ "ánd ose",
+ "че ская",
+ "▁spe aker",
+ "▁speak er",
+ "▁expon ential",
+ "▁exponent ial",
+ "▁D ieu",
+ "▁Die u",
+ "▁Di eu",
+ "▁при з",
+ "▁пр из",
+ "▁Raf ael",
+ "▁gg plot",
+ "▁Tem plate",
+ "▁Temp late",
+ "▁ Template",
+ "ou re",
+ "our e",
+ "o ure",
+ "▁In ner",
+ "▁Inn er",
+ "▁ Inner",
+ "og ne",
+ "ogn e",
+ "ig are",
+ "iga re",
+ "▁Ar te",
+ "▁Art e",
+ "▁C ov",
+ "▁Co v",
+ "▁auf grund",
+ "▁Б ы",
+ "▁cerem ony",
+ "▁S part",
+ "▁Sp art",
+ "ject ive",
+ "y i",
+ "▁in izi",
+ "▁l atin",
+ "▁lat in",
+ "▁Never theless",
+ "▁D one",
+ "▁Do ne",
+ "▁Don e",
+ "▁ Done",
+ "т ря",
+ "▁A rr",
+ "▁Ar r",
+ "▁ Arr",
+ "se ason",
+ "▁скла ду",
+ "▁pod czas",
+ "▁Beaut iful",
+ "▁Weltkrie g",
+ "▁з о",
+ "▁ зо",
+ "▁over come",
+ "▁Pr aha",
+ "▁Pra ha",
+ "▁рай ону",
+ "▁райо ну",
+ "▁район у",
+ "▁sub scription",
+ "▁subs cription",
+ "▁subscri ption",
+ "ig ent",
+ "igen t",
+ "ige nt",
+ "i gent",
+ "▁по ка",
+ "la tex",
+ "lat ex",
+ "late x",
+ "▁b each",
+ "▁be ach",
+ "▁ро ках",
+ "ge g",
+ "g eg",
+ "▁pro bl",
+ "▁prob l",
+ "arg uments",
+ "argument s",
+ "▁organ izations",
+ "▁organiz ations",
+ "▁organization s",
+ "▁N an",
+ "▁Na n",
+ "▁st ones",
+ "▁sto nes",
+ "▁stone s",
+ "▁H unter",
+ "▁Hun ter",
+ "▁regular ly",
+ "шо го",
+ "ш ого",
+ "▁flex ible",
+ "op ts",
+ "opt s",
+ "o pts",
+ "á ř",
+ "wi tz",
+ "w itz",
+ "▁' )",
+ "▁ ')",
+ "PA SS",
+ "P ASS",
+ "▁k raj",
+ "▁kr aj",
+ "▁kra j",
+ "▁f ake",
+ "▁fa ke",
+ "he its",
+ "heit s",
+ "os ph",
+ "osp h",
+ "parse Int",
+ "F ALSE",
+ "▁prof ess",
+ "▁profes s",
+ "pe ople",
+ "▁pre cip",
+ "▁prec ip",
+ "dir name",
+ "▁per pet",
+ "▁Up dated",
+ "▁Update d",
+ "▁ Updated",
+ "ra yed",
+ "ray ed",
+ "▁prov oc",
+ "▁тра вня",
+ "▁трав ня",
+ "▁categ orie",
+ "▁categor ie",
+ "▁те о",
+ "с ну",
+ "ot r",
+ "o tr",
+ "▁Вер хов",
+ "▁comp ét",
+ "Co st",
+ "C ost",
+ "▁w ider",
+ "▁wide r",
+ "▁wid er",
+ "▁Ob viously",
+ "пи сан",
+ "писа н",
+ "пис ан",
+ "▁на стоя",
+ "▁see king",
+ "▁seek ing",
+ "() ),",
+ "()) ,",
+ "( )),",
+ "▁é quipe",
+ "▁équip e",
+ "▁ équipe",
+ "▁comm its",
+ "▁commit s",
+ "▁S vens",
+ "▁Sv ens",
+ "я бре",
+ "at ern",
+ "ate rn",
+ "ater n",
+ "a tern",
+ "▁h eter",
+ "▁he ter",
+ "▁het er",
+ "▁Boot strap",
+ "én é",
+ "é né",
+ "▁deriv atives",
+ "▁derivative s",
+ "▁Det roit",
+ "▁provin cial",
+ "▁provincia l",
+ "onom ie",
+ "E B",
+ "▁c uer",
+ "▁cu er",
+ "▁от носи",
+ "▁отно си",
+ "▁не й",
+ "▁н ей",
+ "▁ ней",
+ ") ».",
+ "▁Ci udad",
+ "IA L",
+ "I AL",
+ "zy st",
+ "z yst",
+ ")\" )",
+ ") \")",
+ "▁Al c",
+ "bl ogs",
+ "blog s",
+ "blo gs",
+ "b logs",
+ "▁par mi",
+ "▁Album s",
+ "▁Alb ums",
+ "▁Bo liv",
+ "▁Bol iv",
+ "▁c lés",
+ "▁cl és",
+ "Product s",
+ "uer do",
+ "▁ge lang",
+ "▁gel ang",
+ "zn ik",
+ "z nik",
+ "ha gen",
+ "h agen",
+ "an onymous",
+ "▁sv g",
+ "▁ svg",
+ "▁Cons eil",
+ "▁Conse il",
+ "▁A ri",
+ "▁Ar i",
+ "col i",
+ "co li",
+ "c oli",
+ "▁c zy",
+ "▁cz y",
+ "▁ czy",
+ "▁C V",
+ "▁ CV",
+ "▁f ord",
+ "▁for d",
+ "▁fo rd",
+ "▁ ford",
+ "▁Au ßer",
+ "▁Auß er",
+ "▁C I",
+ "▁ CI",
+ "▁t empt",
+ "▁tem pt",
+ "▁temp t",
+ "▁Organ isation",
+ "á š",
+ "▁cy cles",
+ "▁cycle s",
+ "▁cycl es",
+ "▁ges lacht",
+ "▁лю дей",
+ "ým i",
+ "ý mi",
+ "▁S pieler",
+ "▁Spiel er",
+ "ef e",
+ "e fe",
+ "▁Mar vel",
+ "▁por tal",
+ "▁port al",
+ "▁porta l",
+ "▁ portal",
+ "▁Сер г",
+ "▁g rado",
+ "▁gr ado",
+ "▁gra do",
+ "▁grad o",
+ "▁hand lers",
+ "▁handle rs",
+ "▁handler s",
+ "▁Inter face",
+ "▁ Interface",
+ "AM E",
+ "A ME",
+ "▁ser iously",
+ "▁serious ly",
+ "▁B inding",
+ "▁Bin ding",
+ "▁Bind ing",
+ "▁ Binding",
+ "▁R ang",
+ "▁Ra ng",
+ "▁Ran g",
+ "▁n ada",
+ "▁na da",
+ "▁nad a",
+ "oc e",
+ "o ce",
+ "▁inte gra",
+ "▁integr a",
+ "oc racy",
+ "ocr acy",
+ "▁аль бо",
+ "▁st ability",
+ "▁stabil ity",
+ "Un s",
+ "U ns",
+ "▁v eter",
+ "▁ve ter",
+ "-- ----+",
+ "---- --+",
+ "--- ---+",
+ "------ +",
+ "----- -+",
+ "▁se rait",
+ "▁ser ait",
+ "▁sera it",
+ "▁om itted",
+ "▁uncertain ty",
+ "on ian",
+ "oni an",
+ "onia n",
+ "▁re sto",
+ "▁r esto",
+ "▁res to",
+ "▁rest o",
+ "▁же лез",
+ "▁од ной",
+ "▁одно й",
+ "▁Bevölker ung",
+ "▁K raft",
+ "▁Kr aft",
+ "▁Kra ft",
+ "ст р",
+ "▁Mos cow",
+ "la ne",
+ "lan e",
+ "l ane",
+ "ar ab",
+ "ara b",
+ "a rab",
+ "▁s pole",
+ "▁sp ole",
+ "▁spo le",
+ "▁сво его",
+ "? :",
+ "ST ART",
+ "▁ин тер",
+ "▁инте р",
+ "▁sym pt",
+ "▁Loren zo",
+ "▁ej ec",
+ "▁pros per",
+ "DA T",
+ "D AT",
+ "лимпи й",
+ "▁sh apes",
+ "▁shape s",
+ "value Of",
+ "▁associ ate",
+ "▁Med ien",
+ "▁Medi en",
+ "EN V",
+ "▁с ре",
+ "▁држа ве",
+ "▁the ories",
+ "he b",
+ "h eb",
+ "▁Way ne",
+ "▁String Builder",
+ "iw ers",
+ "i wers",
+ "▁M aps",
+ "▁Ma ps",
+ "▁Map s",
+ "Ph ys",
+ "\\} \\",
+ "\\ }\\",
+ "▁P arte",
+ "▁Par te",
+ "▁Part e",
+ "▁Hud son",
+ "ло н",
+ "л он",
+ "L ng",
+ "▁р ы",
+ "▁ ры",
+ "ст ей",
+ "сте й",
+ "с тей",
+ "la u",
+ "l au",
+ "an cer",
+ "ance r",
+ "anc er",
+ "▁Co ppa",
+ "▁Cop pa",
+ "▁вій сь",
+ "▁u cc",
+ "▁Pat tern",
+ "▁ Pattern",
+ "▁gar bage",
+ "▁Gon zález",
+ "▁Encyc lop",
+ "et ten",
+ "ett en",
+ "ette n",
+ "Ex ternal",
+ "Ext ernal",
+ "RE F",
+ "R EF",
+ "> ;",
+ "lij ke",
+ "lijk e",
+ "▁inter sect",
+ "▁Un less",
+ "▁de eper",
+ "▁deep er",
+ "▁ж і",
+ "▁ жі",
+ "de nt",
+ "den t",
+ "d ent",
+ "le f",
+ "l ef",
+ "▁ch anson",
+ "▁diff us",
+ "▁pr imi",
+ "▁prim i",
+ "▁pri mi",
+ "▁W ieder",
+ "▁Wi eder",
+ "▁Wie der",
+ "▁a ws",
+ "▁aw s",
+ "▁ aws",
+ "ow ana",
+ "owa na",
+ "owan a",
+ "▁so ciale",
+ "▁social e",
+ "▁soci ale",
+ "▁soc iale",
+ "ik k",
+ "i kk",
+ "ль ной",
+ "льно й",
+ "▁div isions",
+ "▁division s",
+ "▁divis ions",
+ "ло со",
+ "▁Cl aud",
+ "▁Cla ud",
+ "▁Y a",
+ "▁v oce",
+ "▁vo ce",
+ "▁voc e",
+ "▁B ranch",
+ "▁Br anch",
+ "▁Bran ch",
+ "▁f itted",
+ "▁fit ted",
+ "or r",
+ "o rr",
+ "ôt el",
+ "ô tel",
+ "st roke",
+ "str oke",
+ "list ener",
+ "listen er",
+ "im an",
+ "ima n",
+ "i man",
+ "во сто",
+ "▁Sh ah",
+ "Int roduction",
+ "▁new line",
+ "▁t ile",
+ "▁til e",
+ "▁ti le",
+ "'] ))",
+ "']) )",
+ "' ]))",
+ "▁trav aux",
+ "▁trava ux",
+ "CON FIG",
+ "▁quadr atic",
+ "on neur",
+ "onn eur",
+ "onne ur",
+ "▁Gi org",
+ "▁ident ific",
+ "éric aine",
+ "érica ine",
+ "▁UI View",
+ "▁ UIView",
+ "▁Lib eral",
+ "▁Liber al",
+ "▁K och",
+ "▁Ko ch",
+ "▁Berlin er",
+ "▁Berl iner",
+ "▁not ifications",
+ "▁notification s",
+ "▁Su san",
+ "▁Sus an",
+ "▁c adre",
+ "▁cad re",
+ "▁K loster",
+ "▁Kl oster",
+ "▁exam ine",
+ "▁е дин",
+ "▁еди н",
+ "▁UN ION",
+ "▁al ten",
+ "▁alt en",
+ "▁alte n",
+ "▁f init",
+ "▁fin it",
+ "▁fi nit",
+ "▁pe dig",
+ "▁ped ig",
+ "cy k",
+ "c yk",
+ "▁mouv ement",
+ "▁mou vement",
+ "IO S",
+ "I OS",
+ "▁бри тан",
+ "▁b out",
+ "▁bo ut",
+ "▁bou t",
+ "▁ав тор",
+ "▁авто р",
+ "ниц тво",
+ "ет о",
+ "е то",
+ "le ra",
+ "ler a",
+ "l era",
+ "cl s",
+ "c ls",
+ "▁L ey",
+ "▁Le y",
+ "am y",
+ "a my",
+ "ag ens",
+ "age ns",
+ "agen s",
+ "a gens",
+ "as hed",
+ "ash ed",
+ "▁ok rę",
+ "г ро",
+ "el lett",
+ "ell ett",
+ "elle tt",
+ "▁F ellow",
+ "▁Fel low",
+ "▁manif old",
+ "$) ,",
+ "$ ),",
+ "ld er",
+ "l der",
+ "▁v oz",
+ "▁vo z",
+ "▁be gg",
+ "▁beg g",
+ "▁b aron",
+ "▁bar on",
+ "▁ba ron",
+ "▁f id",
+ "▁fi d",
+ "▁f iring",
+ "▁fi ring",
+ "▁fir ing",
+ "il da",
+ "ild a",
+ "de k",
+ "d ek",
+ "A U",
+ "it are",
+ "ita re",
+ "itar e",
+ "▁A ra",
+ "▁Ar a",
+ "▁Ex it",
+ "▁ Exit",
+ "▁cin emat",
+ "▁cinema t",
+ "▁int ros",
+ "▁intr os",
+ "▁intro s",
+ "▁contact s",
+ "пе ни",
+ "пен и",
+ "▁m öglich",
+ "▁Singap ore",
+ "str öm",
+ "▁H ern",
+ "▁He rn",
+ "▁Her n",
+ "▁six th",
+ "▁public ations",
+ "▁pub lications",
+ "▁publication s",
+ "vi e",
+ "v ie",
+ "▁H at",
+ "▁Ha t",
+ "▁accept ing",
+ "á c",
+ "st wo",
+ "s two",
+ "▁quiet ly",
+ "Ph oto",
+ "▁b asket",
+ "▁bas ket",
+ "▁eigen values",
+ "▁mé dec",
+ "▁méd ec",
+ "▁O limp",
+ "▁Ol imp",
+ "▁цер ков",
+ "al in",
+ "ali n",
+ "a lin",
+ "con sum",
+ "cons um",
+ "▁l assen",
+ "▁las sen",
+ "▁ lassen",
+ "▁ан ти",
+ "▁S eq",
+ "▁Se q",
+ "▁ Seq",
+ "\"; \r",
+ "\" ;\r",
+ "ra re",
+ "rar e",
+ "r are",
+ "▁$ |\\",
+ "▁$| \\",
+ "▁n ick",
+ "▁ni ck",
+ "▁nic k",
+ "▁ nick",
+ "df lare",
+ "V ec",
+ "bind ung",
+ "▁b g",
+ "▁ bg",
+ "ch anges",
+ "change s",
+ "chan ges",
+ "Day s",
+ "Da ys",
+ "D ays",
+ "▁M ouse",
+ "▁Mo use",
+ "▁Mou se",
+ "▁ Mouse",
+ "▁wait ed",
+ "▁wa ited",
+ "▁Tom atoes",
+ "▁f as",
+ "▁fa s",
+ "▁ fas",
+ "ver te",
+ "vert e",
+ "v erte",
+ "▁success ion",
+ "▁succ ession",
+ "со р",
+ "с ор",
+ "▁s ols",
+ "▁so ls",
+ "▁sol s",
+ "▁R ender",
+ "▁Re nder",
+ "▁Ren der",
+ "▁ Render",
+ "▁lead ership",
+ "▁leader ship",
+ "▁leaders hip",
+ "▁signific ance",
+ "▁ga uche",
+ "▁gau che",
+ "ca no",
+ "can o",
+ "c ano",
+ "▁P ie",
+ "▁Pi e",
+ "enso ort",
+ "▁cam bio",
+ "▁camb io",
+ "▁у з",
+ "▁ende av",
+ "Comp leted",
+ "Comple ted",
+ "Complete d",
+ "▁Архив ная",
+ "j d",
+ "ór ico",
+ "ó rico",
+ "▁church es",
+ "▁an imate",
+ "▁anim ate",
+ "▁ani mate",
+ "▁ animate",
+ "S G",
+ "comp ute",
+ "comput e",
+ "▁uniform ly",
+ "IN IT",
+ "ll es",
+ "lle s",
+ "l les",
+ "Http Request",
+ "К о",
+ "Di ff",
+ "D iff",
+ "▁s ah",
+ "▁sa h",
+ "air o",
+ "ai ro",
+ "a iro",
+ "may be",
+ "UT E",
+ "U TE",
+ "▁D ow",
+ "▁Do w",
+ "hu man",
+ "hum an",
+ "h uman",
+ "▁au rait",
+ "▁aur ait",
+ "dar k",
+ "d ark",
+ "▁re pair",
+ "▁rep air",
+ "▁n er",
+ "▁ne r",
+ "▁ ner",
+ "▁D abei",
+ "▁Da bei",
+ "▁Bo tan",
+ "▁Bot an",
+ "Or iginal",
+ "Origin al",
+ "az ă",
+ "▁N AT",
+ "▁NA T",
+ "im per",
+ "imp er",
+ "▁Y outh",
+ "▁You th",
+ "th es",
+ "the s",
+ "t hes",
+ "▁окру га",
+ "▁F lo",
+ "▁Fl o",
+ "▁break fast",
+ "ur ls",
+ "url s",
+ "▁über nahm",
+ "ár ios",
+ "ário s",
+ "á rios",
+ "▁O range",
+ "▁Or ange",
+ "▁Aff airs",
+ "sk e",
+ "s ke",
+ "▁not ify",
+ "▁ notify",
+ "imo ine",
+ "▁Ar ena",
+ "▁Are na",
+ "▁lib eral",
+ "▁liber al",
+ "▁o bec",
+ "▁ob ec",
+ "if a",
+ "i fa",
+ "gu ez",
+ "gue z",
+ "g uez",
+ "ion o",
+ "io no",
+ "i ono",
+ "пера тор",
+ "▁ret ained",
+ "▁retain ed",
+ "fa iled",
+ "fail ed",
+ "bin e",
+ "bi ne",
+ "b ine",
+ "т ных",
+ "▁CG Rect",
+ "cam era",
+ "ide note",
+ "iden ote",
+ "K B",
+ "▁l ights",
+ "▁light s",
+ "▁P ictures",
+ "▁Picture s",
+ "▁Squad ron",
+ "▁V olk",
+ "▁Vol k",
+ "▁b urg",
+ "▁bu rg",
+ "▁bur g",
+ "▁ burg",
+ ", ]",
+ "G i",
+ "ê que",
+ "make Text",
+ "▁every body",
+ "▁Hy per",
+ "▁Hyp er",
+ "▁De ux",
+ "▁gl ory",
+ "▁glo ry",
+ "pres entation",
+ "present ation",
+ "on ica",
+ "oni ca",
+ "onic a",
+ "o nica",
+ "▁fr ère",
+ "ag et",
+ "age t",
+ "a get",
+ "▁h ints",
+ "▁hint s",
+ "▁hin ts",
+ "▁t unnel",
+ "▁tun nel",
+ "▁E j",
+ "ál is",
+ "á lis",
+ "▁V iv",
+ "▁Vi v",
+ "ствен ных",
+ "▁c aps",
+ "▁cap s",
+ "▁ca ps",
+ "PA RT",
+ "PAR T",
+ "P ART",
+ "oc i",
+ "o ci",
+ "▁p rices",
+ "▁pr ices",
+ "▁pri ces",
+ "▁price s",
+ "curr ency",
+ "c urrency",
+ "▁a chter",
+ "▁ach ter",
+ "▁acht er",
+ "rom agnet",
+ "ge nder",
+ "gen der",
+ "gende r",
+ "g ender",
+ "▁s uis",
+ "▁su is",
+ "vers ions",
+ "version s",
+ "▁Tr aining",
+ "▁Tra ining",
+ "▁Train ing",
+ "in side",
+ "ins ide",
+ "eg e",
+ "e ge",
+ "▁tot ale",
+ "▁total e",
+ "▁D aar",
+ "▁Da ar",
+ "▁grud nia",
+ "▁I er",
+ "▁occasion s",
+ "▁occas ions",
+ "▁k de",
+ "▁tensor flow",
+ "▁ tensorflow",
+ "▁ó r",
+ "▁ ór",
+ "Method s",
+ "▁loop ing",
+ "▁direct eur",
+ "k ę",
+ "▁is omorphism",
+ "▁Jo ão",
+ "▁al igned",
+ "▁align ed",
+ "▁ aligned",
+ "он ов",
+ "о нов",
+ "ur ger",
+ "urg er",
+ "▁n ova",
+ "▁no va",
+ "▁nov a",
+ "mor row",
+ "m orrow",
+ "al tern",
+ "alt ern",
+ "alter n",
+ "H D",
+ "▁m arqu",
+ "▁mar qu",
+ "at ivas",
+ "ativ as",
+ "ati vas",
+ "ativa s",
+ "gg reg",
+ "g greg",
+ "▁anci en",
+ "▁anc ien",
+ "ni t",
+ "n it",
+ "▁sec ured",
+ "▁secure d",
+ "mi er",
+ "m ier",
+ "▁O le",
+ "▁Ol e",
+ "▁ин те",
+ "▁m inus",
+ "▁min us",
+ "▁ minus",
+ "▁clear er",
+ "▁n ello",
+ "▁nel lo",
+ "▁nell o",
+ "▁információ k",
+ "▁pro pre",
+ "▁prop re",
+ "{ .",
+ "il og",
+ "ilo g",
+ "i log",
+ "▁Qu ick",
+ "▁acc us",
+ "▁ac cus",
+ "emp loyee",
+ "▁з у",
+ "▁ зу",
+ "ць кий",
+ "фі цій",
+ "▁пу бли",
+ "▁ публи",
+ "▁b ent",
+ "▁be nt",
+ "▁ben t",
+ "▁по зво",
+ "▁П ор",
+ "▁По р",
+ "áz í",
+ "án ico",
+ "á nico",
+ "empty set",
+ "▁sur tout",
+ "re no",
+ "ren o",
+ "r eno",
+ "un ya",
+ "▁у ез",
+ "▁Mill ionen",
+ "▁listop ada",
+ "▁M aine",
+ "▁Ma ine",
+ "▁Main e",
+ "▁Mai ne",
+ "▁gru pos",
+ "▁grupo s",
+ "▁grup os",
+ "▁St orage",
+ "▁Sto rage",
+ "▁ Storage",
+ "▁app le",
+ "▁ap ple",
+ "▁ apple",
+ "▁L ö",
+ "ou sed",
+ "ous ed",
+ "ouse d",
+ "o used",
+ "д ро",
+ "sc i",
+ "s ci",
+ "▁hi bernate",
+ "▁ hibernate",
+ "do g",
+ "d og",
+ "▁во сто",
+ "▁вос то",
+ "▁ восто",
+ "▁intens ity",
+ "leg end",
+ "lege nd",
+ "legen d",
+ "▁W ille",
+ "▁Will e",
+ "▁Wil le",
+ "▁Wi lle",
+ "▁szer int",
+ "ges ellschaft",
+ "▁L iving",
+ "▁Li ving",
+ "▁Liv ing",
+ "al lo",
+ "all o",
+ "▁S plit",
+ "▁Sp lit",
+ "▁ Split",
+ "dr u",
+ "d ru",
+ "ne ed",
+ "n eed",
+ "▁Дж он",
+ "▁Sw iss",
+ "▁sp raw",
+ "▁spr aw",
+ "▁be ho",
+ "▁beh o",
+ "▁fot ograf",
+ "▁ren contre",
+ "▁k is",
+ "▁ki s",
+ "▁sign ing",
+ "▁sig ning",
+ "ak ult",
+ "aku lt",
+ "▁index ing",
+ "ap or",
+ "a por",
+ "▁con ception",
+ "▁concept ion",
+ "▁conce ption",
+ "ag greg",
+ "agg reg",
+ "a ggreg",
+ "▁Са вез",
+ "▁aff air",
+ "ě ní",
+ "A ugust",
+ "▁се кре",
+ "▁miesz kań",
+ "UI Image",
+ "▁b ishop",
+ "▁bi shop",
+ "▁ bishop",
+ "▁serv ants",
+ "▁servant s",
+ "▁tr ail",
+ "▁tra il",
+ "di git",
+ "dig it",
+ "▁jo ins",
+ "▁join s",
+ "▁N ear",
+ "▁Ne ar",
+ "öff entlich",
+ "> {",
+ "▁sk ład",
+ "ge führt",
+ "gef ührt",
+ "▁Hol z",
+ "▁Milit är",
+ "ach i",
+ "ac hi",
+ "a chi",
+ "Up per",
+ "U pper",
+ "pi ne",
+ "pin e",
+ "p ine",
+ "ut zt",
+ "utz t",
+ "▁nu ova",
+ "ibr ation",
+ "▁B ien",
+ "▁Bi en",
+ "▁пер вый",
+ "▁первы й",
+ "▁Cre ating",
+ "On ce",
+ "▁ein mal",
+ "▁ge ometric",
+ "▁geomet ric",
+ "st vo",
+ "▁k W",
+ "▁decom position",
+ "▁com edy",
+ "▁come dy",
+ "▁activ ation",
+ "▁an gry",
+ "▁ang ry",
+ "ill eurs",
+ "ille urs",
+ "▁inst antly",
+ "▁instant ly",
+ "▁suggest ing",
+ "▁C lay",
+ "▁Cl ay",
+ "▁Cla y",
+ "co t",
+ "c ot",
+ "▁G én",
+ "▁Gé n",
+ "($ (",
+ "( $(",
+ "un wrap",
+ "▁lif ted",
+ "▁lift ed",
+ "▁K it",
+ "▁Ki t",
+ "▁ Kit",
+ "▁l inea",
+ "▁li nea",
+ "▁line a",
+ "▁lin ea",
+ "о к",
+ "ha rt",
+ "har t",
+ "h art",
+ "-> _",
+ "▁n uit",
+ "▁nu it",
+ "▁Iss ue",
+ "ли и",
+ "▁r öm",
+ "Task s",
+ "▁S r",
+ "▁se is",
+ "▁sei s",
+ "as ia",
+ "asi a",
+ "}} $.",
+ "}}$ .",
+ "} }$.",
+ ": {",
+ "control s",
+ "contr ols",
+ "▁S tim",
+ "▁St im",
+ "▁Re cht",
+ "▁Rec ht",
+ "ocia ción",
+ "oci ación",
+ "▁N atal",
+ "▁Na tal",
+ "▁Nat al",
+ "▁Philipp ines",
+ "ul en",
+ "ule n",
+ "u len",
+ "F ixed",
+ "▁switch ed",
+ "Z ip",
+ "os pel",
+ "osp el",
+ "▁нача ле",
+ "▁B lan",
+ "▁Bl an",
+ "▁Bla n",
+ "ur st",
+ "urs t",
+ "▁aut our",
+ "▁auto ur",
+ "C a",
+ "▁lat itude",
+ "▁F rei",
+ "▁Fre i",
+ "▁Fr ei",
+ "▁Mus ée",
+ "▁K urz",
+ "▁Kur z",
+ "▁Ku rz",
+ "▁reg ião",
+ "sw ap",
+ "▁h ate",
+ "▁ha te",
+ "▁hat e",
+ "▁mod ifications",
+ "▁modification s",
+ "▁modific ations",
+ "▁К ом",
+ "▁Ко м",
+ "▁Anto ine",
+ "ug a",
+ "u ga",
+ "RE CT",
+ "R ECT",
+ "ét er",
+ "é ter",
+ "G ROUP",
+ "▁sacr ific",
+ "▁W he",
+ "▁Wh e",
+ "▁Ste vens",
+ "▁Steve ns",
+ "▁Steven s",
+ "olog ische",
+ "Sum mary",
+ "ob s",
+ "o bs",
+ "hn en",
+ "h nen",
+ "< %=",
+ "di enst",
+ "d ienst",
+ "re mark",
+ "rem ark",
+ "r emark",
+ "▁veröff entlicht",
+ "е л",
+ "▁M ock",
+ "▁Mo ck",
+ "▁ Mock",
+ "▁Ль в",
+ "▁tr ês",
+ "g b",
+ "▁celebr ated",
+ "▁E b",
+ "▁c osta",
+ "▁co sta",
+ "▁cost a",
+ "▁cos ta",
+ "▁Ge ographic",
+ "▁att achment",
+ "▁attach ment",
+ "mann schaft",
+ "▁depend ence",
+ "� �",
+ "▁att itude",
+ "et al",
+ "eta l",
+ "e tal",
+ "vi c",
+ "v ic",
+ "ba ut",
+ "bau t",
+ "b aut",
+ "▁д ов",
+ "▁до в",
+ "▁ дов",
+ "▁inter ven",
+ "▁G ü",
+ "ón ica",
+ "ó nica",
+ "▁P on",
+ "▁Po n",
+ "▁dispon ible",
+ "▁F eb",
+ "▁Fe b",
+ "▁wor ship",
+ "▁Specific ally",
+ "H y",
+ "ij u",
+ "i ju",
+ "▁c b",
+ "▁ cb",
+ "▁sp ac",
+ "lev eland",
+ "level and",
+ "▁local idad",
+ "▁prec eding",
+ "▁preced ing",
+ "▁H essen",
+ "x p",
+ "▁W ein",
+ "▁We in",
+ "▁Wei n",
+ "▁Rom â",
+ "▁gi orno",
+ "▁gior no",
+ "▁квіт ня",
+ "lla ços",
+ "▁Academ ia",
+ "▁k ül",
+ "▁Å rs",
+ "▁на ј",
+ "uc lide",
+ "Inter net",
+ "Intern et",
+ "or ton",
+ "ort on",
+ "▁c orn",
+ "▁cor n",
+ "▁co rn",
+ "я ми",
+ "▁\" *",
+ "▁Fel ix",
+ "ap at",
+ "apa t",
+ "a pat",
+ "▁сво и",
+ "MI T",
+ "M IT",
+ "ma de",
+ "mad e",
+ "m ade",
+ "▁lo comot",
+ "хо да",
+ "ход а",
+ "F P",
+ "▁p m",
+ "▁ pm",
+ ".* ;",
+ "▁H amm",
+ "▁Ha mm",
+ "▁Ham m",
+ "` }",
+ "Layout Inflater",
+ "== \"",
+ "= =\"",
+ "▁E ur",
+ "▁Eu r",
+ "▁d ogs",
+ "▁do gs",
+ "▁dog s",
+ "же нии",
+ "▁a zon",
+ "▁az on",
+ "▁ azon",
+ "▁em ulator",
+ "▁r icon",
+ "▁ric on",
+ "▁ri con",
+ "be eld",
+ "▁н у",
+ "▁ ну",
+ "▁approxim ate",
+ "L M",
+ "▁B ond",
+ "▁Bo nd",
+ "▁Bon d",
+ "▁en h",
+ "ęd z",
+ "ę dz",
+ "▁s olit",
+ "▁so lit",
+ "▁sol it",
+ "Relative Layout",
+ "et eor",
+ "ete or",
+ "ament os",
+ "amento s",
+ "▁in direct",
+ "▁ind irect",
+ "ib ől",
+ "▁g ros",
+ "▁gr os",
+ "▁gro s",
+ "▁Original s",
+ "▁Origin als",
+ "▁Orig inals",
+ "comm ands",
+ "command s",
+ "Ex port",
+ "Exp ort",
+ "▁A vec",
+ "▁Av ec",
+ "▁sole mn",
+ "▁solem n",
+ "▁correct ion",
+ "▁corre ction",
+ "▁corr ection",
+ "▁про води",
+ "▁прово ди",
+ "▁Mo sk",
+ "▁Mos k",
+ "▁по до",
+ "▁под о",
+ "▁geb ied",
+ "▁nast ęp",
+ "▁D river",
+ "▁Dr iver",
+ "▁Drive r",
+ "▁ Driver",
+ "▁O ok",
+ "▁V ec",
+ "▁Ve c",
+ "▁ Vec",
+ "▁lung o",
+ "▁lun go",
+ "fi cos",
+ "fic os",
+ "fico s",
+ "f icos",
+ "▁s vol",
+ "▁sv ol",
+ "▁svo l",
+ "▁k id",
+ "▁ki d",
+ "n ja",
+ "▁H r",
+ "▁под дер",
+ "▁vis ibility",
+ "▁ visibility",
+ "▁M éd",
+ "▁Mé d",
+ "▁c pu",
+ "▁cp u",
+ "▁ cpu",
+ "dis cussion",
+ "As set",
+ "Ass et",
+ "▁def ense",
+ "▁Any one",
+ "▁Just in",
+ "is zt",
+ "isz t",
+ "▁Coll ins",
+ "▁Val ent",
+ "▁P ale",
+ "▁Pa le",
+ "▁Pal e",
+ "▁f uel",
+ "▁fue l",
+ "▁fu el",
+ "▁n ose",
+ "▁no se",
+ "▁nos e",
+ "rí guez",
+ "▁Sch les",
+ "▁Schl es",
+ "▁Mal ays",
+ "▁com mut",
+ "▁comm ut",
+ "dr o",
+ "d ro",
+ "ui ng",
+ "u ing",
+ "▁R ico",
+ "▁Ric o",
+ "▁Ri co",
+ "▁Em ma",
+ "or p",
+ "o rp",
+ "▁K irk",
+ "▁Kir k",
+ "▁Qu ando",
+ "▁Ne ue",
+ "▁Neu e",
+ "▁de mande",
+ "▁dem ande",
+ "▁demand e",
+ "▁C over",
+ "▁Co ver",
+ "▁Cov er",
+ "▁res cue",
+ "▁gew ählt",
+ "▁Cal endar",
+ "▁ Calendar",
+ "▁Mad onna",
+ "W P",
+ "os hi",
+ "osh i",
+ "▁M aven",
+ "▁Ma ven",
+ "▁b elle",
+ "▁be lle",
+ "▁bel le",
+ "▁bell e",
+ "▁w x",
+ "▁ wx",
+ "▁su gar",
+ "▁sug ar",
+ "▁Bet rieb",
+ "▁equilib rium",
+ "E AR",
+ "▁text s",
+ "▁tex ts",
+ "сло в",
+ "с лов",
+ "▁czerw ca",
+ "▁D üsseld",
+ "▁EL SE",
+ "▁am ery",
+ "▁amer y",
+ "▁a ni",
+ "▁an i",
+ "▁ ani",
+ "▁o bey",
+ "▁ob ey",
+ "▁N ell",
+ "▁Ne ll",
+ "▁Nel l",
+ "▁in ne",
+ "▁inn e",
+ "▁т ро",
+ "▁ тро",
+ "F D",
+ "cc o",
+ "c co",
+ "▁Z ob",
+ "▁Zo b",
+ "al ette",
+ "ale tte",
+ "alet te",
+ "a lette",
+ "▁má jus",
+ "ect ed",
+ "ec ted",
+ "e cted",
+ "▁Tur key",
+ "▁Turk ey",
+ "▁Wh ether",
+ "▁Whe ther",
+ "q i",
+ "▁ш то",
+ "▁head quarters",
+ "en di",
+ "end i",
+ "ar us",
+ "aru s",
+ "a rus",
+ "op us",
+ "o pus",
+ "▁з оло",
+ "▁зо ло",
+ "▁de stru",
+ "▁dest ru",
+ "▁L ok",
+ "▁Lo k",
+ "▁satisf action",
+ "() \r",
+ "( )\r",
+ "▁Т ер",
+ "▁Те р",
+ "Jo se",
+ "J ose",
+ "▁con quer",
+ "▁conqu er",
+ "▁E ffect",
+ "▁ Effect",
+ "Layout Params",
+ "ie z",
+ "i ez",
+ "▁extern s",
+ "▁gegen über",
+ "▁E SP",
+ "▁ES P",
+ "ol ta",
+ "olt a",
+ "process or",
+ "proc essor",
+ "▁K ult",
+ "▁Ku lt",
+ "▁Atl anta",
+ "▁t ier",
+ "▁ti er",
+ "▁tie r",
+ "Oper ator",
+ "▁ди а",
+ "▁пи сь",
+ "▁gro ß",
+ "▁he arts",
+ "▁heart s",
+ "▁hear ts",
+ "▁mill imeter",
+ "al though",
+ "alth ough",
+ "al les",
+ "all es",
+ "alle s",
+ "a lles",
+ "▁Mag ic",
+ "tr aining",
+ "tra ining",
+ "train ing",
+ "ol ine",
+ "oli ne",
+ "olin e",
+ "o line",
+ "▁орган і",
+ ">\\< ^",
+ "> \\<^",
+ "ці аль",
+ "ex ports",
+ "export s",
+ "Work book",
+ "▁вере сня",
+ "▁t eles",
+ "▁te les",
+ "▁tele s",
+ "▁tel es",
+ "▁econom y",
+ "▁econ omy",
+ "▁ec onomy",
+ "▁t rap",
+ "▁tr ap",
+ "▁tra p",
+ "▁ref use",
+ "▁str anger",
+ "▁strange r",
+ "▁stran ger",
+ "▁inst inct",
+ "по да",
+ "ol an",
+ "ola n",
+ "o lan",
+ "▁n ing",
+ "▁ni ng",
+ "▁nin g",
+ "▁ ning",
+ "inf late",
+ "infl ate",
+ "itat ea",
+ "itate a",
+ "ack s",
+ "ac ks",
+ "a cks",
+ "▁J oy",
+ "▁Jo y",
+ "FL AG",
+ "FLA G",
+ "ail and",
+ "ai land",
+ "▁sort i",
+ "▁sor ti",
+ "▁в пер",
+ "▁p én",
+ "▁pé n",
+ "Not hing",
+ "No thing",
+ "N othing",
+ "▁sz áz",
+ "▁Á ng",
+ "▁A UT",
+ "▁ AUT",
+ "Act ions",
+ "Action s",
+ "A ctions",
+ "E very",
+ "▁чер вня",
+ "▁авто мо",
+ "▁rout ine",
+ "▁e struct",
+ "▁est ruct",
+ "▁G ang",
+ "▁Ga ng",
+ "▁Gan g",
+ "▁h oles",
+ "▁ho les",
+ "▁hol es",
+ "▁hole s",
+ "th esis",
+ "thes is",
+ "▁con cl",
+ "▁conc l",
+ "▁p é",
+ "ri ers",
+ "rie rs",
+ "rier s",
+ "r iers",
+ "ро вой",
+ "рово й",
+ "р овой",
+ "ad ic",
+ "adi c",
+ "a dic",
+ "Sp eed",
+ "Spe ed",
+ "▁command ed",
+ "▁N azionale",
+ "▁Naz ionale",
+ "Man aged",
+ "▁DE CLARE",
+ "▁se dan",
+ "▁sed an",
+ "String s",
+ "Str ings",
+ "▁sa cred",
+ "▁sac red",
+ "▁sacr ed",
+ "ter such",
+ "ters uch",
+ "▁abit anti",
+ "br it",
+ "b rit",
+ "▁N CAA",
+ "▁NC AA",
+ "▁С П",
+ "▁a ged",
+ "▁ag ed",
+ "▁age d",
+ "▁ aged",
+ "▁Ch iesa",
+ "▁Chi esa",
+ "▁re vision",
+ "▁rev ision",
+ "▁revis ion",
+ "op ro",
+ "o pro",
+ "▁over write",
+ "emb ros",
+ "embro s",
+ "▁sort ie",
+ "▁sorti e",
+ "▁ot ten",
+ "▁ott en",
+ "xi v",
+ "x iv",
+ "▁d eli",
+ "▁de li",
+ "▁del i",
+ "▁A sp",
+ "▁As p",
+ "▁b alls",
+ "▁bal ls",
+ "▁ball s",
+ "ka f",
+ "k af",
+ "▁br ave",
+ "▁bra ve",
+ "▁все го",
+ "▁вс его",
+ "eg n",
+ "e gn",
+ "jp eg",
+ "▁O sten",
+ "▁Os ten",
+ "▁Ost en",
+ "Const ants",
+ "▁Inf antry",
+ "▁N ev",
+ "▁Ne v",
+ "▁я ких",
+ "▁як их",
+ "▁му ниципа",
+ "ci ja",
+ "c ija",
+ "▁p oem",
+ "▁po em",
+ "▁ne gro",
+ "▁neg ro",
+ "ха р",
+ "х ар",
+ "▁A sk",
+ "▁As k",
+ "▁a vo",
+ "▁av o",
+ "▁ avo",
+ "▁Me yer",
+ "▁Mey er",
+ "▁W esten",
+ "▁We sten",
+ "▁West en",
+ "▁Wes ten",
+ "▁o ko",
+ "▁ok o",
+ "▁ oko",
+ "ag in",
+ "agi n",
+ "a gin",
+ "▁Süd en",
+ "▁Sü den",
+ "ent ries",
+ "entr ies",
+ "▁Rep ublik",
+ "▁Repub lik",
+ "Collection View",
+ "-- -----",
+ "---- ---",
+ "--- ----",
+ "------ -",
+ "----- --",
+ "- ------",
+ "▁fire fox",
+ "▁alc une",
+ "▁фо то",
+ "▁отри ма",
+ "~~~~ ~~~~",
+ "▁Ра з",
+ "▁Com plex",
+ "▁Comp lex",
+ "▁Comple x",
+ "▁p ia",
+ "▁pi a",
+ "▁public ada",
+ "we i",
+ "w ei",
+ "ced ure",
+ "occup ation",
+ "▁medic ine",
+ "▁dr ove",
+ "▁dro ve",
+ "Pro blem",
+ "▁beg inner",
+ "▁begin ner",
+ "▁thorough ly",
+ "ur ia",
+ "uri a",
+ "u ria",
+ "av ant",
+ "ava nt",
+ "avan t",
+ "uch a",
+ "uc ha",
+ "u cha",
+ "▁l ever",
+ "▁le ver",
+ "▁lev er",
+ "▁te atro",
+ "▁teat ro",
+ "AV A",
+ "A VA",
+ "sq u",
+ "s qu",
+ "tr at",
+ "tra t",
+ "t rat",
+ "iv atal",
+ "iva tal",
+ "▁d irty",
+ "▁dir ty",
+ "▁se conde",
+ "▁second e",
+ "▁sec onde",
+ "▁grav it",
+ "▁pro position",
+ "▁prop osition",
+ "▁propos ition",
+ "h bar",
+ "om ini",
+ "omin i",
+ "omi ni",
+ "▁ ”",
+ "▁C amil",
+ "▁Cam il",
+ "▁Ca mil",
+ "▁qu een",
+ "▁que en",
+ "mod ifier",
+ "J an",
+ "▁l yr",
+ "▁ly r",
+ "Com boBox",
+ "ion ic",
+ "io nic",
+ "ioni c",
+ "i onic",
+ "▁h oly",
+ "▁ho ly",
+ "▁hol y",
+ "▁Sebast ian",
+ "| _{",
+ "▁{ @",
+ "▁мо жно",
+ "▁мож но",
+ "▁Cre ative",
+ "▁inter ess",
+ "▁inte ress",
+ "▁C T",
+ "▁ CT",
+ "i ções",
+ "▁ch ant",
+ "▁cha nt",
+ "▁ chant",
+ "▁wsp ół",
+ "▁Мекси ка",
+ "▁ran ked",
+ "▁rank ed",
+ "▁paździer nika",
+ "▁b rut",
+ "▁br ut",
+ "▁bru t",
+ "▁far ther",
+ "▁V erb",
+ "▁Ver b",
+ "▁Ve rb",
+ "▁S even",
+ "▁Se ven",
+ "lb l",
+ "l bl",
+ "▁mention s",
+ "▁ment ions",
+ "▁F ight",
+ "▁Fig ht",
+ "if en",
+ "ife n",
+ "i fen",
+ "▁b og",
+ "▁bo g",
+ "▁re gres",
+ "▁reg res",
+ "▁sc oring",
+ "ic ane",
+ "ica ne",
+ "ican e",
+ "▁El li",
+ "▁Ell i",
+ "▁pie rw",
+ "▁pier w",
+ "me asure",
+ "ński ej",
+ "ń skiej",
+ "# {",
+ "▁де ся",
+ "▁var maste",
+ "▁Un ix",
+ "I Z",
+ "iti é",
+ "Prim ary",
+ "▁Spring er",
+ "▁Spr inger",
+ "ün g",
+ "ü ng",
+ "▁an v",
+ "▁vers ione",
+ "▁version e",
+ "▁should ers",
+ "▁shoulder s",
+ "▁бри га",
+ "▁j av",
+ "▁ja v",
+ "▁ jav",
+ "lt al",
+ "l tal",
+ "▁kall aste",
+ "▁Mitch ell",
+ "▁wire less",
+ "▁wir eless",
+ "▁Á l",
+ "resp ons",
+ "co uld",
+ "cou ld",
+ "c ould",
+ "▁re lax",
+ "▁rel ax",
+ "▁rela x",
+ "▁ relax",
+ "Lo nd",
+ "L ond",
+ "ń cz",
+ "ство вал",
+ "ствова л",
+ "▁pol ski",
+ "en ç",
+ "za r",
+ "z ar",
+ "▁d type",
+ "▁dt ype",
+ "ow ned",
+ "own ed",
+ "un known",
+ "unk nown",
+ "▁m utable",
+ "▁mu table",
+ "▁mut able",
+ "▁ mutable",
+ "▁si empre",
+ "▁Mont real",
+ "▁loc ate",
+ "▁tr aces",
+ "▁tra ces",
+ "▁trace s",
+ "▁trac es",
+ "▁ins gesamt",
+ "▁N il",
+ "▁Ni l",
+ "▁ Nil",
+ "▁п рода",
+ "▁про да",
+ "▁прод а",
+ "▁War ner",
+ "▁N au",
+ "▁Na u",
+ "tri angle",
+ "▁concentr ation",
+ "▁gentle men",
+ "äch t",
+ "ä cht",
+ "fil ters",
+ "filter s",
+ "inci pal",
+ "VAL ID",
+ "▁де пута",
+ "ad ó",
+ "▁kon st",
+ "gs å",
+ "ag as",
+ "aga s",
+ "a gas",
+ "▁meille ur",
+ "▁дан ным",
+ "є дна",
+ "en coded",
+ "enc oded",
+ "encode d",
+ "< '",
+ "▁she ets",
+ "▁sheet s",
+ "▁ sheets",
+ "cu ador",
+ "▁викори стову",
+ "▁De put",
+ "▁Dep ut",
+ "▁man ière",
+ "ą g",
+ "cs ol",
+ "c sol",
+ ")$ -",
+ ") $-",
+ "UI View",
+ "▁mill ones",
+ "▁E hren",
+ "▁Ehr en",
+ "Si l",
+ "S il",
+ "▁a tac",
+ "▁at ac",
+ "▁C old",
+ "▁Col d",
+ "▁Co ld",
+ "\" \\",
+ "▁appro ached",
+ "▁approach ed",
+ "▁Års med",
+ "W M",
+ "▁De port",
+ "▁Dep ort",
+ "mi s",
+ "m is",
+ "and box",
+ "ob serv",
+ "obs erv",
+ "set ting",
+ "sett ing",
+ "ha tó",
+ "hat ó",
+ "h ató",
+ "▁s trat",
+ "▁st rat",
+ "▁str at",
+ "▁stra t",
+ "▁s pre",
+ "▁sp re",
+ "▁spr e",
+ "▁ spre",
+ "▁person ne",
+ "▁pers onne",
+ "▁personn e",
+ "▁dir ige",
+ "▁dirig e",
+ "pu ll",
+ "p ull",
+ "da ting",
+ "dat ing",
+ "d ating",
+ "▁F act",
+ "▁Fa ct",
+ "▁Fac t",
+ "▁ Fact",
+ "▁manip ulate",
+ "▁M AC",
+ "▁MA C",
+ "▁d ej",
+ "▁de j",
+ "ult imo",
+ "F X",
+ "Li fe",
+ "L ife",
+ "▁c rack",
+ "▁cr ack",
+ "▁cra ck",
+ "▁m í",
+ "▁п ове",
+ "▁по ве",
+ "▁пов е",
+ "▁w ore",
+ "▁wor e",
+ "▁wo re",
+ "univers ité",
+ "▁form ulas",
+ "▁formula s",
+ "▁Elis abeth",
+ "pl ots",
+ "plot s",
+ "mi le",
+ "mil e",
+ "m ile",
+ "▁me nor",
+ "▁men or",
+ "ти л",
+ "т ил",
+ "key word",
+ "▁Balt imore",
+ "hr er",
+ "hre r",
+ "h rer",
+ "▁C lement",
+ "▁Cl ement",
+ "▁Cle ment",
+ "vi m",
+ "v im",
+ "ra ss",
+ "ras s",
+ "r ass",
+ "T ake",
+ "▁cím ű",
+ "▁Con vention",
+ "at ge",
+ "se ed",
+ "see d",
+ "s eed",
+ "▁D í",
+ "▁Sp ider",
+ "ah oo",
+ "aho o",
+ "▁име ет",
+ "ühr t",
+ "üh rt",
+ "▁по писа",
+ "▁C ot",
+ "▁Co t",
+ "▁no bles",
+ "▁noble s",
+ "▁nob les",
+ "RE SS",
+ "RES S",
+ "▁che min",
+ "▁chem in",
+ "▁gł ówn",
+ "G G",
+ "▁German ia",
+ "▁Ger mania",
+ "▁Germ ania",
+ "▁Alexand re",
+ "he ns",
+ "hen s",
+ "h ens",
+ "sw ift",
+ "oo p",
+ "o op",
+ "Sub view",
+ "▁requ iring",
+ "ęd zy",
+ "ędz y",
+ "▁f ict",
+ "▁fi ct",
+ "▁fic t",
+ "▁Кон стан",
+ "▁dé put",
+ "▁dép ut",
+ "▁surpr ising",
+ "▁de ix",
+ "▁dei x",
+ "▁unter schied",
+ "in son",
+ "ins on",
+ "▁Char acter",
+ "▁ Character",
+ "▁g estion",
+ "▁ges tion",
+ "▁gest ion",
+ "ch us",
+ "c hus",
+ "com es",
+ "co mes",
+ "come s",
+ "▁n eur",
+ "▁ne ur",
+ "▁neu r",
+ "▁ neur",
+ "▁ye ux",
+ "ol lar",
+ "oll ar",
+ "▁par ad",
+ "▁para d",
+ "▁pa rad",
+ "▁mag giore",
+ "▁maggio re",
+ "▁maggior e",
+ "TR AN",
+ "▁vo tre",
+ "▁vot re",
+ "▁des cent",
+ "▁desc ent",
+ "▁I con",
+ "▁ Icon",
+ "▁Jud ge",
+ "▁occup ation",
+ "▁ occupation",
+ "ep ing",
+ "e ping",
+ "▁ton gue",
+ "▁tong ue",
+ "▁En llaços",
+ "ru f",
+ "r uf",
+ "▁prote in",
+ "▁prot ein",
+ "▁vis itors",
+ "▁visit ors",
+ "▁visitor s",
+ "ax y",
+ "a xy",
+ "es ten",
+ "est en",
+ "este n",
+ "e sten",
+ "bl ica",
+ "blic a",
+ "b lica",
+ "h w",
+ "▁spir its",
+ "▁spirit s",
+ "▁redu ces",
+ "▁reduce s",
+ "▁м ен",
+ "▁ме н",
+ "▁ мен",
+ "▁L amb",
+ "▁La mb",
+ "▁Lam b",
+ "▁M ine",
+ "▁Min e",
+ "▁Mi ne",
+ "▁ver ified",
+ "▁B aby",
+ "▁Ba by",
+ "▁Bab y",
+ "▁pr ize",
+ "▁pri ze",
+ "в ър",
+ "▁rat ings",
+ "▁rating s",
+ "▁f ore",
+ "▁for e",
+ "▁fo re",
+ "▁ fore",
+ "as ha",
+ "ash a",
+ "a sha",
+ "ur rence",
+ "urr ence",
+ "▁int ér",
+ "▁Ol ímp",
+ "cr a",
+ "c ra",
+ "▁comput ational",
+ "▁computation al",
+ "ir che",
+ "irc he",
+ ".: ",
+ "▁illustr ated",
+ "▁illustrate d",
+ "▁Sh are",
+ "▁house holds",
+ "▁household s",
+ "▁con volution",
+ "oe md",
+ "oem d",
+ "▁zd oby",
+ "▁zdob y",
+ "cc c",
+ "c cc",
+ "▁quant ities",
+ "Ch e",
+ "C he",
+ "Sh ould",
+ "▁ge nius",
+ "▁gen ius",
+ "ad j",
+ "a dj",
+ "х ва",
+ "Пе тер",
+ "EM A",
+ "E MA",
+ "▁R ights",
+ "▁Right s",
+ "▁E li",
+ "▁El i",
+ "VA R",
+ "V AR",
+ "ш ло",
+ "▁з бір",
+ "ift ung",
+ "▁cont ributed",
+ "▁contrib uted",
+ "▁contribu ted",
+ "▁contribute d",
+ "ze f",
+ "z ef",
+ "▁CH AR",
+ "▁ CHAR",
+ "▁S ib",
+ "▁Si b",
+ "▁M ant",
+ "▁Man t",
+ "▁Ma nt",
+ "▁свя зи",
+ "▁java fx",
+ "▁c ependant",
+ "▁in tu",
+ "▁int u",
+ "▁т вор",
+ "▁ Ó",
+ "gu er",
+ "gue r",
+ "g uer",
+ "ra do",
+ "rad o",
+ "r ado",
+ "▁Re vol",
+ "▁Rev ol",
+ "▁fé min",
+ "▁Or leans",
+ "▁p oj",
+ "▁po j",
+ "▁p rez",
+ "▁pr ez",
+ "▁pre z",
+ "Te x",
+ "T ex",
+ "ou wd",
+ "ouw d",
+ "? (",
+ "▁L IM",
+ "▁LI M",
+ "ist ique",
+ "isti que",
+ "es ar",
+ "esa r",
+ "▁he ures",
+ "ic ki",
+ "ick i",
+ "i cki",
+ "▁d bo",
+ "▁db o",
+ "▁ dbo",
+ "sk ih",
+ "ski h",
+ "s kih",
+ "conf irm",
+ "▁vil ág",
+ "▁ci utat",
+ "▁D R",
+ "▁ DR",
+ "▁Haw ai",
+ "ch ed",
+ "che d",
+ "c hed",
+ "▁s pher",
+ "▁sp her",
+ "▁Art ikel",
+ "▁Multi ple",
+ "ci u",
+ "c iu",
+ "▁м ы",
+ "▁ мы",
+ "▁lip ca",
+ "]( /",
+ "] (/",
+ "Str ategy",
+ "▁Al abama",
+ "SD K",
+ "S DK",
+ "UT C",
+ "U TC",
+ "__ .",
+ "_ _.",
+ "Arg uments",
+ "Argument s",
+ "▁set ContentView",
+ "î le",
+ "By Val",
+ "▁J VM",
+ "юще го",
+ "▁Leon ard",
+ "▁just ify",
+ "це м",
+ "ц ем",
+ "▁n ab",
+ "▁na b",
+ "▁ nab",
+ "CCE SS",
+ "C CESS",
+ "▁hope s",
+ "▁ho pes",
+ "▁hop es",
+ ") &",
+ "se ro",
+ "ser o",
+ "s ero",
+ "▁за й",
+ "слі д",
+ "▁R ég",
+ "▁Ré g",
+ "▁S ang",
+ "▁San g",
+ "▁Sa ng",
+ "▁f ung",
+ "▁fun g",
+ "▁fu ng",
+ "ba ar",
+ "b aar",
+ "▁coff ee",
+ "ass embly",
+ "▁В ін",
+ "▁Ві н",
+ "э й",
+ "▁comp rend",
+ "▁compr end",
+ "fil led",
+ "fill ed",
+ "f illed",
+ "р д",
+ "od ia",
+ "odi a",
+ "o dia",
+ "▁g ens",
+ "▁ge ns",
+ "▁gen s",
+ "▁ gens",
+ "fl uss",
+ "flu ss",
+ "f luss",
+ "Draw able",
+ "▁sur ve",
+ "▁surv e",
+ "Set up",
+ "▁n ależ",
+ "▁conj unto",
+ "▁Е го",
+ "▁old al",
+ "▁ol dal",
+ "▁ver bose",
+ "▁verb ose",
+ "▁Elect ric",
+ "▁H arrison",
+ "▁Harr ison",
+ "▁Harris on",
+ "en gen",
+ "eng en",
+ "par agraph",
+ "para graph",
+ "▁n ouvelles",
+ "▁nouve lles",
+ "▁nouvelle s",
+ "▁вре ме",
+ "▁m emor",
+ "▁me mor",
+ "▁mem or",
+ "▁mayo ría",
+ "▁mayor ía",
+ "са д",
+ "▁bat aille",
+ "▁bata ille",
+ "▁therm al",
+ "▁ther mal",
+ "▁Хро нологи",
+ "▁B etter",
+ "▁Bet ter",
+ "by e",
+ "b ye",
+ "▁теа тра",
+ "ro e",
+ "r oe",
+ "▁se gle",
+ "▁seg le",
+ "ro tt",
+ "rot t",
+ "r ott",
+ "▁opin ions",
+ "▁opinion s",
+ ")} )",
+ ") })",
+ "üh le",
+ "ühl e",
+ "▁G ün",
+ "▁Gü n",
+ "▁ Щ",
+ "b ól",
+ "▁Lar ry",
+ "▁so lic",
+ "▁sol ic",
+ "▁z war",
+ "▁zw ar",
+ "▁Car oline",
+ "▁Carol ine",
+ "▁Reich s",
+ "Ext ensions",
+ "Extension s",
+ "mi gr",
+ "m igr",
+ ": @",
+ "▁en umerate",
+ "▁enumer ate",
+ "▁ enumerate",
+ "▁eigen en",
+ "▁eig enen",
+ "▁expl ore",
+ "▁explo re",
+ "ém u",
+ "é mu",
+ "▁g at",
+ "▁ga t",
+ "▁ gat",
+ "▁imper ial",
+ "▁Us ually",
+ "▁t ud",
+ "▁tu d",
+ "▁у кра",
+ "hi m",
+ "h im",
+ "▁cor ners",
+ "▁corner s",
+ "▁corn ers",
+ "▁S ER",
+ "▁SE R",
+ "▁ SER",
+ "▁interpre ter",
+ "▁interpret er",
+ "▁I ce",
+ "▁amount s",
+ "▁P ala",
+ "▁Pa la",
+ "▁Pal a",
+ "▁t inha",
+ "▁tin ha",
+ "vo le",
+ "vol e",
+ "v ole",
+ "▁g le",
+ "▁gl e",
+ "▁ gle",
+ "uc ci",
+ "▁sie he",
+ "Jac k",
+ "J ack",
+ "▁w oll",
+ "▁wo ll",
+ "▁wol l",
+ "▁e lder",
+ "▁el der",
+ "▁ко раб",
+ "▁eng ag",
+ "▁La urent",
+ "▁Laur ent",
+ "▁Lau rent",
+ "▁ach iev",
+ "ist ik",
+ "isti k",
+ "ar ct",
+ "arc t",
+ "тно го",
+ "т ного",
+ "▁g ir",
+ "▁gi r",
+ "▁Sing h",
+ "▁Sin gh",
+ "math op",
+ "US A",
+ "U SA",
+ "▁Pro jekt",
+ "▁de be",
+ "▁deb e",
+ "richt ung",
+ "r ichtung",
+ "▁T sch",
+ "▁Ts ch",
+ "um inate",
+ "umin ate",
+ "▁s zó",
+ "▁sz ó",
+ "ly ph",
+ "зи дент",
+ "зиден т",
+ "▁lim itations",
+ "▁limit ations",
+ "▁limitation s",
+ "юще й",
+ "▁b ila",
+ "▁bi la",
+ "▁bil a",
+ "P ush",
+ "▁off ering",
+ "▁offer ing",
+ "ien nes",
+ "ienne s",
+ "ienn es",
+ "i ennes",
+ "Fr i",
+ "F ri",
+ "▁post gresql",
+ "▁ postgresql",
+ "▁Tom my",
+ "▁partic olare",
+ "▁stolet í",
+ "▁ar rib",
+ "▁arr ib",
+ "▁E va",
+ "▁Ev a",
+ "sch ool",
+ "▁v endor",
+ "▁ven dor",
+ "▁vend or",
+ "▁ vendor",
+ "▁D allas",
+ "▁Dal las",
+ "▁pro long",
+ "CRE ATE",
+ "C REATE",
+ "▁suiv ante",
+ "STAT US",
+ "l à",
+ "k v",
+ "▁h äufig",
+ "▁Agr icult",
+ "▁h uit",
+ "▁hu it",
+ "▁in oltre",
+ "▁L loyd",
+ "▁францу з",
+ "▁вы пол",
+ "▁faith ful",
+ "▁В ар",
+ "▁Ва р",
+ "▁ver l",
+ "▁ve rl",
+ "▁ju ego",
+ "▁Резу лтати",
+ ", ...,",
+ "▁implicit ly",
+ "ir ks",
+ "irk s",
+ "Cal cul",
+ "▁m eses",
+ "▁mes es",
+ "om ed",
+ "ome d",
+ "o med",
+ "▁p ak",
+ "▁pa k",
+ "he rit",
+ "her it",
+ "▁opt ical",
+ "▁І сторія",
+ "ve is",
+ "▁capital e",
+ "▁capit ale",
+ "place holder",
+ "int rag",
+ "▁At las",
+ "▁Atl as",
+ "▁ Atlas",
+ ")] ;",
+ ") ];",
+ "ic ons",
+ "ico ns",
+ "icon s",
+ "i cons",
+ "▁B ent",
+ "▁Be nt",
+ "▁Ben t",
+ "▁W idget",
+ "▁ Widget",
+ "▁vol unt",
+ "av o",
+ "a vo",
+ "ég r",
+ "é gr",
+ "li ge",
+ "lig e",
+ "l ige",
+ "▁N AME",
+ "▁NA ME",
+ "▁ NAME",
+ "▁ab stra",
+ "▁abs tra",
+ "▁f ís",
+ "▁B rowser",
+ "▁Brow ser",
+ "▁ Browser",
+ "▁b ush",
+ "▁bu sh",
+ "▁bus h",
+ "ha ll",
+ "hal l",
+ "h all",
+ "▁cloud s",
+ "▁S UB",
+ "▁SU B",
+ "▁ SUB",
+ "▁t andis",
+ "▁tan dis",
+ "▁Common wealth",
+ "та я",
+ "▁exha ust",
+ "________ ________",
+ "▁Stat istics",
+ "▁Statist ics",
+ "▁Relig ion",
+ "▁Mu ham",
+ "ual s",
+ "ua ls",
+ "u als",
+ "go to",
+ "got o",
+ "g oto",
+ "Dig ital",
+ "Famil y",
+ "▁B un",
+ "▁Bu n",
+ "let in",
+ "Man agement",
+ "▁cap abilities",
+ "an nten",
+ "ann ten",
+ "annt en",
+ "annte n",
+ "▁се бе",
+ "▁st ays",
+ "▁stay s",
+ "▁sta ys",
+ "kt er",
+ "kte r",
+ "k ter",
+ "▁d ost",
+ "▁do st",
+ "▁dos t",
+ "▁Т ре",
+ "ло вич",
+ "лови ч",
+ "л ович",
+ "▁d ying",
+ "▁dy ing",
+ "se ctions",
+ "section s",
+ "sect ions",
+ "án os",
+ "á nos",
+ "▁app arten",
+ "▁appar ten",
+ "▁appart en",
+ "▁zo als",
+ "▁dr essed",
+ "▁dress ed",
+ "▁com press",
+ "▁comp ress",
+ "▁compr ess",
+ "ń ska",
+ "▁sierp nia",
+ "▁ти ту",
+ "diction ary",
+ "d ictionary",
+ "▁r abb",
+ "▁ra bb",
+ "▁vé rit",
+ "В о",
+ "▁sing leton",
+ "▁single ton",
+ "▁v ital",
+ "▁vi tal",
+ "▁vit al",
+ "▁vita l",
+ "Ref resh",
+ "ме ль",
+ "м ель",
+ "▁Z h",
+ "▁Af ghan",
+ "in kel",
+ "ink el",
+ "aa aa",
+ "▁particip ants",
+ "ar in",
+ "ari n",
+ "a rin",
+ "▁M old",
+ "▁Mo ld",
+ "▁Mol d",
+ "▁prim eros",
+ "▁prime ros",
+ "▁primer os",
+ "▁ра н",
+ "▁р ан",
+ "▁ ран",
+ "▁А мери",
+ "▁restaur ant",
+ "év el",
+ "é vel",
+ "▁S L",
+ "▁ SL",
+ "▁R ey",
+ "▁Re y",
+ "ch as",
+ "cha s",
+ "c has",
+ "▁elect rons",
+ "▁electron s",
+ "▁electro ns",
+ "▁Pitt s",
+ "▁Pit ts",
+ "▁J ules",
+ "▁Jul es",
+ "▁Ju les",
+ "ма й",
+ "en ant",
+ "ena nt",
+ "e nant",
+ "- }",
+ "ла д",
+ "▁Мос ква",
+ "▁Моск ва",
+ "go m",
+ "g om",
+ "▁Fern ández",
+ "fun d",
+ "fu nd",
+ "f und",
+ "int erno",
+ "inter no",
+ "intern o",
+ "▁M ari",
+ "▁Mar i",
+ "▁Ma ri",
+ "▁r ius",
+ "▁ri us",
+ "▁Pro zent",
+ "ст рі",
+ "стр і",
+ "▁в нут",
+ "ant erie",
+ "ante rie",
+ "anter ie",
+ "▁п рис",
+ "▁при с",
+ "▁пр ис",
+ "▁о бы",
+ "▁об ы",
+ "▁M arina",
+ "▁Mar ina",
+ "▁Mari na",
+ "▁occ urrence",
+ "▁occur rence",
+ "▁occurr ence",
+ "ri kt",
+ "rik t",
+ "r ikt",
+ "▁фи зи",
+ "▁sch wer",
+ "▁schw er",
+ "▁Г ре",
+ "Re set",
+ "Res et",
+ "▁much o",
+ "▁mu cho",
+ "an dr",
+ "and r",
+ "▁W ies",
+ "▁Wi es",
+ "▁Wie s",
+ "▁Ke ith",
+ "▁Jul ian",
+ "▁Juli an",
+ "▁Julia n",
+ "▁c ole",
+ "▁col e",
+ "▁co le",
+ "▁ cole",
+ "ci endo",
+ "c iendo",
+ "▁Cont empor",
+ "et ry",
+ "etr y",
+ "e try",
+ "el ian",
+ "eli an",
+ "elia n",
+ "ги и",
+ "▁го ло",
+ "▁г оло",
+ "▁d él",
+ "▁dé l",
+ "▁de cent",
+ "▁dec ent",
+ "▁dece nt",
+ "Р СР",
+ "▁sze ptember",
+ "ме ст",
+ "cast le",
+ "▁держа в",
+ "}\" )",
+ "} \")",
+ "▁ASC II",
+ "▁G len",
+ "▁Gl en",
+ "itzer land",
+ "T oggle",
+ "▁trad icional",
+ "▁P lat",
+ "▁Pl at",
+ "▁Pla t",
+ "ve e",
+ "v ee",
+ "ab gerufen",
+ "( |",
+ "CL I",
+ "C LI",
+ "}} $,",
+ "}}$ ,",
+ "} }$,",
+ "▁Bow l",
+ "▁M ale",
+ "▁Ma le",
+ "▁Mal e",
+ "▁B res",
+ "▁Br es",
+ "▁Bre s",
+ "▁п си",
+ "▁Ch allenge",
+ "z ó",
+ "▁pro jekt",
+ "▁neg oti",
+ "ab ove",
+ "a bove",
+ "▁пери о",
+ "▁long est",
+ "▁lon gest",
+ "auth entic",
+ "▁tr adu",
+ "▁tra du",
+ "▁trad u",
+ "▁mujer es",
+ "▁And re",
+ "▁ha dn",
+ "▁had n",
+ "▁Sch ule",
+ "▁Schul e",
+ "ode l",
+ "od el",
+ "o del",
+ "ble d",
+ "bl ed",
+ "b led",
+ "▁T rade",
+ "▁Tr ade",
+ "▁Tra de",
+ "▁Trad e",
+ "▁m obil",
+ "▁mo bil",
+ "▁mob il",
+ "▁alg unas",
+ "▁L ak",
+ "▁La k",
+ "▁Connect icut",
+ "▁al co",
+ "▁alc o",
+ "▁Sel bst",
+ "i ł",
+ "▁a lb",
+ "▁al b",
+ "ouver neur",
+ "ouvern eur",
+ "▁s r",
+ "▁ sr",
+ "▁v ba",
+ "▁vb a",
+ "lo ped",
+ "lop ed",
+ "l oped",
+ "▁Par tei",
+ "▁Part ei",
+ "▁Parte i",
+ "ua te",
+ "u ate",
+ "▁Auth entication",
+ "▁ Authentication",
+ "be i",
+ "b ei",
+ "}} .",
+ "} }.",
+ "▁kon nten",
+ "▁konn ten",
+ "▁konnte n",
+ "▁до по",
+ "▁h yd",
+ "▁hy d",
+ "Off ice",
+ "d onnées",
+ "▁C leveland",
+ "ri ta",
+ "rit a",
+ "r ita",
+ "ío s",
+ "í os",
+ "▁вы ше",
+ "▁Ro berts",
+ "▁Robert s",
+ "▁é lections",
+ "▁élect ions",
+ "▁' ')",
+ "▁'' )",
+ "▁publish ing",
+ "▁b apt",
+ "▁ba pt",
+ "<> ();",
+ "< >();",
+ "miss ing",
+ "mis sing",
+ "рова но",
+ "рован о",
+ "р овано",
+ "▁ho using",
+ "▁hous ing",
+ "▁in ference",
+ "▁infer ence",
+ "▁Rena issance",
+ "▁r èg",
+ "▁Ste ph",
+ "▁Step h",
+ "CE S",
+ "C ES",
+ "ER E",
+ "E RE",
+ "ке т",
+ "к ет",
+ "O U",
+ "▁group ing",
+ "ver kehr",
+ "ji h",
+ "j ih",
+ "ag li",
+ "▁mil k",
+ "la it",
+ "l ait",
+ "St age",
+ "▁by ly",
+ "▁byl y",
+ "▁wood en",
+ "▁wo oden",
+ "ke ley",
+ "kel ey",
+ "kele y",
+ "et ra",
+ "etr a",
+ "e tra",
+ "▁P eg",
+ "▁Pe g",
+ "▁don né",
+ "▁donn é",
+ "ad al",
+ "ada l",
+ "a dal",
+ "sequ ently",
+ "▁ins besondere",
+ "EL D",
+ "E LD",
+ "▁M am",
+ "▁Ma m",
+ "▁vol te",
+ "▁volt e",
+ "▁pro spect",
+ "▁pros pect",
+ "но ве",
+ "нов е",
+ "н ове",
+ "▁den oted",
+ "▁denote d",
+ "▁over lay",
+ "Per mission",
+ "Perm ission",
+ "ee n",
+ "e en",
+ "▁E M",
+ "▁ EM",
+ "▁u z",
+ "▁ uz",
+ "M c",
+ "ol it",
+ "oli t",
+ "o lit",
+ "▁ser vi",
+ "▁serv i",
+ "▁He idel",
+ "▁Wien er",
+ "▁Wi ener",
+ "▁Wie ner",
+ "▁il legal",
+ "▁predict ions",
+ "▁prediction s",
+ "▁go og",
+ "ho n",
+ "h on",
+ "▁Cin ema",
+ "▁ре волю",
+ "▁R ule",
+ "▁Ru le",
+ "▁ Rule",
+ "wo d",
+ "w od",
+ "▁rad iation",
+ "▁radi ation",
+ "o ł",
+ "ово ї",
+ "▁Per form",
+ "▁prison er",
+ "▁a met",
+ "▁am et",
+ "▁fig ura",
+ "▁figur a",
+ "▁Comm ander",
+ "▁Command er",
+ "▁о фициаль",
+ "▁t rov",
+ "▁tr ov",
+ "▁tro v",
+ "▁a cted",
+ "▁act ed",
+ "▁ac ted",
+ "▁work flow",
+ "▁Республи ки",
+ "▁guid ance",
+ "▁м ене",
+ "▁ме не",
+ "▁мен е",
+ "▁ мене",
+ "N ational",
+ "▁K el",
+ "▁Ke l",
+ "web pack",
+ "про стра",
+ "▁llam ado",
+ "al og",
+ "alo g",
+ "a log",
+ "ter ra",
+ "ix en",
+ "le graph",
+ "leg raph",
+ "ä ischen",
+ "▁teach ers",
+ "▁teacher s",
+ "ud en",
+ "ude n",
+ "u den",
+ "▁o gså",
+ "pos sible",
+ "poss ible",
+ "▁S oul",
+ "▁So ul",
+ "▁Sou l",
+ "▁Ge ography",
+ "▁за да",
+ "hi t",
+ "h it",
+ "▁an ger",
+ "▁ang er",
+ "▁ange r",
+ "▁ anger",
+ "▁rem porte",
+ "▁remp orte",
+ "Po d",
+ "P od",
+ "ч ке",
+ "▁a ria",
+ "▁ar ia",
+ "▁ aria",
+ "▁A stronom",
+ "ch apter",
+ "▁f ork",
+ "▁for k",
+ "▁Cu ando",
+ "men se",
+ "m ense",
+ "▁Christ ians",
+ "▁Christian s",
+ "g c",
+ "▁# (",
+ "Or gan",
+ "▁ste ady",
+ "▁stead y",
+ "ps e",
+ "p se",
+ "жи ть",
+ "ig nes",
+ "ign es",
+ "igne s",
+ "ater ra",
+ "a terra",
+ "mo vie",
+ "mov ie",
+ "m ovie",
+ "pos ta",
+ "po sta",
+ "post a",
+ "p osta",
+ "ra ste",
+ "ras te",
+ "r aste",
+ "▁Res source",
+ "▁Ress ource",
+ "▁Pa ís",
+ "▁( );",
+ "▁() ;",
+ "▁ ();",
+ "▁pen alty",
+ "т т",
+ "▁tras fer",
+ "cent ury",
+ "▁clean er",
+ "sel enium",
+ "s elenium",
+ "ort heast",
+ "orth east",
+ "xi c",
+ "x ic",
+ "лі ї",
+ "л ії",
+ "▁ingles e",
+ "▁T ang",
+ "▁Ta ng",
+ "▁Tan g",
+ "▁g ods",
+ "▁go ds",
+ "▁god s",
+ "fr ent",
+ "fre nt",
+ "f rent",
+ "ci ente",
+ "cient e",
+ "c iente",
+ "st arts",
+ "start s",
+ "star ts",
+ "▁mus ica",
+ "▁music a",
+ "ymnas ium",
+ "-- --+",
+ "---- +",
+ "--- -+",
+ "- ---+",
+ "▁ter rest",
+ "▁terre st",
+ "▁retr ieved",
+ "▁retrieve d",
+ "ia re",
+ "iar e",
+ "i are",
+ "un ning",
+ "unn ing",
+ "▁Mar cus",
+ "▁Marc us",
+ "▁prom ote",
+ "war ning",
+ "warn ing",
+ "w arning",
+ "ты й",
+ "т ый",
+ "}) $,",
+ "})$ ,",
+ "} )$,",
+ "Trans port",
+ "▁re son",
+ "▁res on",
+ "▁C lo",
+ "▁Cl o",
+ "▁e rm",
+ "▁er m",
+ "▁ erm",
+ "▁elimin ate",
+ "▁elim inate",
+ "he imer",
+ "heim er",
+ "▁s aves",
+ "▁sa ves",
+ "▁sav es",
+ "▁save s",
+ "▁pr ayer",
+ "▁pra yer",
+ "▁pray er",
+ "Class es",
+ "Ex press",
+ "Exp ress",
+ "Expr ess",
+ "▁Akadem ie",
+ "El se",
+ "Tu rn",
+ "T urn",
+ "▁ik ke",
+ "▁re i",
+ "▁r ei",
+ "▁ rei",
+ "▁di rett",
+ "▁dire tt",
+ "▁dir ett",
+ "▁R ost",
+ "▁Ro st",
+ "▁Ros t",
+ "▁P apa",
+ "▁Pa pa",
+ "▁Pap a",
+ "▁j sf",
+ "▁js f",
+ "ле нием",
+ "ление м",
+ "▁T ul",
+ "▁Tu l",
+ "▁Z ak",
+ "▁Za k",
+ "▁niem ieck",
+ "T w",
+ "am our",
+ "amo ur",
+ "ne sted",
+ "nes ted",
+ "nest ed",
+ "n ested",
+ "pp ets",
+ "ppe ts",
+ "ppet s",
+ "ш п",
+ "di t",
+ "d it",
+ "зе н",
+ "з ен",
+ "zy ma",
+ "zym a",
+ "hr te",
+ "Constra ints",
+ "Constraint s",
+ "▁own ership",
+ "▁owner ship",
+ "Ar m",
+ "A rm",
+ "▁cons umption",
+ "▁consum ption",
+ "▁f et",
+ "▁fe t",
+ "iv ari",
+ "iva ri",
+ "i vari",
+ "ch rom",
+ "chr om",
+ "set Attribute",
+ "▁com pose",
+ "▁comp ose",
+ "▁compos e",
+ "▁ compose",
+ "▁back ing",
+ "▁P az",
+ "▁Pa z",
+ "▁s cri",
+ "▁sc ri",
+ "▁scr i",
+ "▁ scri",
+ "▁Me chan",
+ "▁Nor way",
+ "▁J up",
+ "▁Ju p",
+ "▁m ér",
+ "▁mé r",
+ "▁administr ator",
+ "▁c abe",
+ "▁ca be",
+ "▁cab e",
+ "ival ent",
+ "▁thr one",
+ "▁thro ne",
+ "▁d ues",
+ "▁du es",
+ "▁due s",
+ "▁hum or",
+ "▁hu mor",
+ "▁A dri",
+ "▁Ad ri",
+ "▁ab ort",
+ "ña s",
+ "ñ as",
+ "▁Ки їв",
+ "j ící",
+ "▁zwe ite",
+ "▁zwei te",
+ "▁do ub",
+ "▁dou b",
+ "er shell",
+ "ers hell",
+ "шо й",
+ "▁F am",
+ "▁Fa m",
+ "å k",
+ "▁twe ede",
+ "▁twee de",
+ "▁R ib",
+ "▁Ri b",
+ "▁f ør",
+ "pc ión",
+ "p ción",
+ "in ned",
+ "inn ed",
+ "rv m",
+ "r vm",
+ "▁App ar",
+ "▁Ap par",
+ "▁D j",
+ "▁S hang",
+ "▁Sh ang",
+ "Dist ance",
+ "D istance",
+ "▁d awn",
+ "▁da wn",
+ "▁ dawn",
+ "▁Mat th",
+ "▁Matt h",
+ "▁err ichtet",
+ "ph antom",
+ "phan tom",
+ "▁re leases",
+ "▁release s",
+ "Recogn izer",
+ "▁K op",
+ "▁Ko p",
+ "▁P ul",
+ "▁Pu l",
+ "u é",
+ "na ts",
+ "nat s",
+ "n ats",
+ "re lax",
+ "rel ax",
+ "▁f led",
+ "▁fl ed",
+ "▁fle d",
+ "▁experience s",
+ "▁experien ces",
+ "ще е",
+ "ме ня",
+ "мен я",
+ "▁пер сона",
+ "▁Id entity",
+ "▁Ident ity",
+ "▁ Identity",
+ "re ts",
+ "ret s",
+ "r ets",
+ "k unft",
+ "la rg",
+ "lar g",
+ "l arg",
+ "List Item",
+ "v d",
+ "run ner",
+ "la nt",
+ "lan t",
+ "l ant",
+ "ip art",
+ "i part",
+ "ba y",
+ "b ay",
+ "ie i",
+ "i ei",
+ "▁length s",
+ "▁c attle",
+ "▁catt le",
+ "je ts",
+ "jet s",
+ "j ets",
+ "▁se hen",
+ "J ul",
+ "fa tt",
+ "f att",
+ "▁sur render",
+ "▁surr ender",
+ "▁Tr ump",
+ "▁Tru mp",
+ "дно го",
+ "д ного",
+ "▁Four ier",
+ "▁Fou rier",
+ "ie ben",
+ "ieb en",
+ "i eben",
+ "_ \"",
+ "▁frü her",
+ "▁gar ant",
+ "▁ga rant",
+ "uclide an",
+ "äg t",
+ "ä gt",
+ "▁пів ден",
+ "Page s",
+ "Pa ges",
+ "P ages",
+ "▁r ivers",
+ "▁river s",
+ "▁riv ers",
+ "▁ri vers",
+ "▁don ner",
+ "▁donn er",
+ "▁donne r",
+ "sv n",
+ "s vn",
+ "▁ ł",
+ "ov ě",
+ "o vě",
+ "▁Le ist",
+ "ar ial",
+ "ari al",
+ "aria l",
+ "a rial",
+ "ov ých",
+ "ový ch",
+ "▁f illing",
+ "▁fil ling",
+ "▁fill ing",
+ "▁mus icale",
+ "▁music ale",
+ "▁musical e",
+ "▁musica le",
+ "ma xim",
+ "max im",
+ "▁d ashed",
+ "▁das hed",
+ "▁dash ed",
+ "▁Н ов",
+ "▁Но в",
+ "Draw er",
+ "Dra wer",
+ "▁Medic ine",
+ "▁dok ument",
+ "ow el",
+ "owe l",
+ "o wel",
+ "vi ć",
+ "v ić",
+ "he ly",
+ "hel y",
+ "h ely",
+ "▁e let",
+ "▁el et",
+ "▁ele t",
+ "Sec onds",
+ "Second s",
+ "▁Gon z",
+ "ro u",
+ "r ou",
+ "▁fin ales",
+ "▁final es",
+ "▁finale s",
+ "r n",
+ "f ø",
+ "▁index ed",
+ "class Name",
+ "▁o ber",
+ "▁ob er",
+ "▁ ober",
+ "▁du as",
+ "▁optim ized",
+ "▁optimize d",
+ "▁k dy",
+ "vers ary",
+ "ener gy",
+ "▁цент ра",
+ "▁центр а",
+ "▁c urrency",
+ "▁curr ency",
+ "▁ currency",
+ "zy ż",
+ "Li ke",
+ "L ike",
+ "▁Г и",
+ "so no",
+ "son o",
+ "s ono",
+ "▁pa lab",
+ "▁pal ab",
+ "▁p ushing",
+ "▁push ing",
+ "ub lik",
+ "▁H ass",
+ "▁Ha ss",
+ "▁Has s",
+ "}\\ ,\\",
+ "}\\, \\",
+ "} \\,\\",
+ "un ker",
+ "unk er",
+ "▁F actory",
+ "▁Fact ory",
+ "▁ Factory",
+ "▁Res ources",
+ "▁Resource s",
+ "▁ Resources",
+ "date i",
+ "da tei",
+ "dat ei",
+ "▁T ools",
+ "▁To ols",
+ "▁Tool s",
+ "▁ Tools",
+ "▁ste hen",
+ "si me",
+ "sim e",
+ "s ime",
+ "▁Х у",
+ "▁h och",
+ "▁ho ch",
+ "▁Rod ríguez",
+ "zeit ig",
+ "▁Ter ry",
+ "▁Terr y",
+ "▁о бу",
+ "▁об у",
+ "Us age",
+ "urch ase",
+ "l ö",
+ "▁Int roduction",
+ "▁ Introduction",
+ "▁particip ation",
+ "ο ς",
+ "og li",
+ "ap y",
+ "a py",
+ "▁hope fully",
+ "pon der",
+ "po nder",
+ "pond er",
+ "p onder",
+ "▁Y ang",
+ "▁Yan g",
+ "▁Ya ng",
+ "▁prom ises",
+ "▁promise s",
+ "▁вер ну",
+ "▁о стров",
+ "▁ост ров",
+ "^{ +",
+ "▁most ra",
+ "▁mo stra",
+ "▁mos tra",
+ "▁CURL OPT",
+ "H H",
+ "▁std out",
+ "▁ stdout",
+ "▁br illiant",
+ "▁manus cript",
+ "▁de cir",
+ "▁dec ir",
+ "▁B olog",
+ "▁Bo log",
+ "▁Bol og",
+ "▁ме ста",
+ "▁мест а",
+ "▁in visible",
+ "▁C hal",
+ "▁Ch al",
+ "▁Cha l",
+ "▁analy ze",
+ "▁analyz e",
+ "pr ilis",
+ "pril is",
+ "att end",
+ "atten d",
+ "atte nd",
+ "M vc",
+ "th an",
+ "tha n",
+ "t han",
+ "ck o",
+ "c ko",
+ "▁Que bec",
+ "▁pl anta",
+ "▁plan ta",
+ "▁plant a",
+ "▁télé vis",
+ "▁un install",
+ "èn cies",
+ "▁gmin ie",
+ "▁P ref",
+ "▁Pr ef",
+ "▁Pre f",
+ "▁le quel",
+ "Inv ocation",
+ "▁ Í",
+ "▁trans formed",
+ "▁transform ed",
+ "MA N",
+ "M AN",
+ "ge baut",
+ "geb aut",
+ "▁со хра",
+ "▁вто рой",
+ "▁L ith",
+ "▁Li th",
+ "▁Lit h",
+ "wend ung",
+ "▁Polit ik",
+ "▁Sen ator",
+ "▁L L",
+ "▁ LL",
+ "жде ние",
+ "ш те",
+ "▁C és",
+ "▁b ande",
+ "▁band e",
+ "▁ban de",
+ "▁ba nde",
+ "▁histor ian",
+ "▁historia n",
+ "▁pass words",
+ "▁password s",
+ "mal loc",
+ "m alloc",
+ "▁sem if",
+ "▁semi f",
+ "▁r å",
+ "▁ rå",
+ "unic í",
+ "uni cí",
+ "Av ailable",
+ "Option al",
+ "Opt ional",
+ "▁T we",
+ "▁Tw e",
+ "▁k ró",
+ "▁kr ó",
+ "▁sub sets",
+ "▁subset s",
+ "▁subs ets",
+ "▁D AT",
+ "▁DA T",
+ "▁ DAT",
+ "▁double s",
+ "▁dou bles",
+ "▁doub les",
+ "ни ками",
+ "ника ми",
+ "▁з в",
+ "ge geben",
+ "geg eben",
+ "g egeben",
+ "▁По пис",
+ "▁jú lius",
+ "▁m eteor",
+ "▁met eor",
+ "Mo unt",
+ "M ount",
+ "iv ent",
+ "ive nt",
+ "iven t",
+ "i vent",
+ "▁N athan",
+ "▁Na than",
+ "▁Nat han",
+ "▁Sch utz",
+ "eg ov",
+ "ego v",
+ "e gov",
+ "▁d öd",
+ "▁me at",
+ "▁пун кт",
+ "▁m inds",
+ "▁min ds",
+ "▁mind s",
+ "eli very",
+ "▁T LS",
+ "ре м",
+ "р ем",
+ "cks å",
+ "▁stay ed",
+ "▁sta yed",
+ "▁B in",
+ "▁Bi n",
+ "▁P ia",
+ "▁Pi a",
+ "▁и мен",
+ "▁име н",
+ "▁им ен",
+ "▁Bob by",
+ "▁produ it",
+ "▁prod uit",
+ "em pio",
+ "emp io",
+ "▁redu cing",
+ "▁Y u",
+ "▁Gesch äft",
+ "▁per ché",
+ "▁c ors",
+ "▁cor s",
+ "▁co rs",
+ "▁i cons",
+ "▁icon s",
+ "▁ic ons",
+ "▁ icons",
+ "App Data",
+ "▁H og",
+ "▁Ho g",
+ "▁р ів",
+ "▁рі в",
+ "▁ рів",
+ "▁S ans",
+ "▁San s",
+ "▁Sa ns",
+ "▁si ège",
+ "▁siè ge",
+ "st ellen",
+ "stell en",
+ "stelle n",
+ "Br ush",
+ "OF F",
+ "O FF",
+ "▁vis itor",
+ "▁visit or",
+ "▁b ath",
+ "▁ba th",
+ "▁bat h",
+ "▁f ee",
+ "▁fe e",
+ "at isf",
+ "ati sf",
+ "atis f",
+ "▁cu rv",
+ "▁cur v",
+ "▁fol gender",
+ "▁folg ender",
+ "▁cons cience",
+ "▁Se attle",
+ "▁med ieval",
+ "▁medi eval",
+ "dist ribution",
+ "▁D M",
+ "▁ DM",
+ "▁м я",
+ "▁ мя",
+ "▁R UN",
+ "ak ov",
+ "ako v",
+ "a kov",
+ "ce il",
+ "c eil",
+ "▁let ting",
+ "▁lett ing",
+ "▁d ov",
+ "▁do v",
+ "▁о би",
+ "▁об и",
+ "ki ej",
+ "kie j",
+ "k iej",
+ "▁dire kt",
+ "▁t m",
+ "▁ tm",
+ "col ors",
+ "color s",
+ "colo rs",
+ "▁alt ro",
+ "▁tijd ens",
+ "]{ '",
+ "] {'",
+ "▁B om",
+ "▁Bo m",
+ "▁k unst",
+ "▁kun st",
+ "▁sh elter",
+ "▁r av",
+ "▁ra v",
+ "▁ rav",
+ "pre dict",
+ "pred ict",
+ "▁comenz ó",
+ "▁świ at",
+ "▁św iat",
+ "▁Du rant",
+ "▁Dur ant",
+ "▁sch emes",
+ "▁scheme s",
+ "▁sche mes",
+ "▁m esh",
+ "▁me sh",
+ "▁mes h",
+ "▁ind icator",
+ "▁indic ator",
+ "▁E mer",
+ "▁Em er",
+ "▁gu ilty",
+ "не ц",
+ "▁consequ ences",
+ "▁consequence s",
+ "cl udes",
+ "clude s",
+ "clud es",
+ "▁L ower",
+ "▁Lo wer",
+ "▁Low er",
+ "▁ Lower",
+ "▁по ме",
+ "▁p ace",
+ "▁pa ce",
+ "▁pac e",
+ "▁ pace",
+ "да го",
+ "▁am bos",
+ "▁amb os",
+ "l b",
+ "▁educ ated",
+ "ur ale",
+ "ura le",
+ "ural e",
+ "u rale",
+ "an h",
+ "es ség",
+ "ess ég",
+ "▁associ ations",
+ "▁association s",
+ "to wn",
+ "t own",
+ "▁t rif",
+ "▁tr if",
+ "▁tri f",
+ "sample s",
+ "sam ples",
+ "s amples",
+ "bo s",
+ "b os",
+ "▁S pect",
+ "▁Sp ect",
+ "▁Spe ct",
+ "▁Spec t",
+ "▁Ц е",
+ "alt ung",
+ "▁L ob",
+ "▁Lo b",
+ "▁curios ity",
+ "▁We iter",
+ "▁Wei ter",
+ "▁Weit er",
+ "est one",
+ "esto ne",
+ "eston e",
+ "e stone",
+ "▁dem ol",
+ "▁demo l",
+ "▁ap olog",
+ "▁apo log",
+ "▁D ynamic",
+ "▁Dynam ic",
+ "▁ Dynamic",
+ "In ner",
+ "es per",
+ "esp er",
+ "ec z",
+ "e cz",
+ "uel lement",
+ "uelle ment",
+ "▁Hamilton ian",
+ "At las",
+ "▁ar gue",
+ "▁arg ue",
+ "For eign",
+ "F oreign",
+ "col lapse",
+ "▁tér min",
+ "▁electron ic",
+ "▁electro nic",
+ "▁N R",
+ "▁ NR",
+ "▁c orr",
+ "▁cor r",
+ "▁co rr",
+ "▁ corr",
+ "tem ps",
+ "temp s",
+ "Index Path",
+ "я з",
+ "▁tal ál",
+ "to day",
+ "tod ay",
+ "wa ve",
+ "w ave",
+ "▁s ib",
+ "▁si b",
+ "▁с пи",
+ "▁сп и",
+ "▁con vey",
+ "▁conv ey",
+ "▁Gé ographie",
+ "▁Н ью",
+ "▁Hi bernate",
+ "▁t in",
+ "▁ti n",
+ "di c",
+ "d ic",
+ "pp ings",
+ "pping s",
+ "s weise",
+ "▁roll ing",
+ "▁rol ling",
+ "▁ rolling",
+ "▁select s",
+ ")\\ )",
+ ") \\)",
+ "▁po eta",
+ "▁poet a",
+ "▁сте пени",
+ "▁A br",
+ "▁Ab r",
+ "▁hö ch",
+ "▁s tern",
+ "▁st ern",
+ "▁ste rn",
+ "▁ster n",
+ "▁f jär",
+ "▁inst aller",
+ "▁install er",
+ "▁instal ler",
+ "de cl",
+ "dec l",
+ "▁m iser",
+ "▁mi ser",
+ "▁mis er",
+ "▁mise r",
+ "group by",
+ "sub str",
+ "subst r",
+ "▁phen omen",
+ "▁W ing",
+ "▁Win g",
+ "▁Wi ng",
+ "▁f ills",
+ "▁fil ls",
+ "▁fill s",
+ "▁ú nico",
+ "Run ning",
+ "R unning",
+ "Com e",
+ "Co me",
+ "C ome",
+ "ir able",
+ "ira ble",
+ "i rable",
+ "sim eq",
+ "sime q",
+ "▁re mp",
+ "▁r emp",
+ "▁rem p",
+ "ke le",
+ "kel e",
+ "k ele",
+ "li ers",
+ "lie rs",
+ "lier s",
+ "l iers",
+ "▁kwiet nia",
+ "▁inter rupted",
+ "▁interrupt ed",
+ "▁J et",
+ "▁Je t",
+ "=\\ {",
+ "= \\{",
+ "íd o",
+ "í do",
+ "▁Tai wan",
+ "▁воз ра",
+ "▁altern atives",
+ "▁alternative s",
+ "▁T ir",
+ "▁Ti r",
+ "▁Re serve",
+ "▁Res erve",
+ "▁К ур",
+ "▁Ку р",
+ "▁No bel",
+ "▁Nob el",
+ "▁рабо тал",
+ "▁работа л",
+ "▁a xes",
+ "▁ax es",
+ "▁C ependant",
+ "k á",
+ "▁er neut",
+ "▁D emo",
+ "▁De mo",
+ "▁Dem o",
+ "▁ Demo",
+ "comm unic",
+ "con structor",
+ "construct or",
+ "▁Mon day",
+ "▁Mond ay",
+ "N il",
+ "Hash Map",
+ "pay ment",
+ "▁fix ing",
+ "▁A DD",
+ "▁AD D",
+ "▁ ADD",
+ "re view",
+ "rev iew",
+ "▁poss ibil",
+ "▁possib il",
+ "▁g rote",
+ "▁gr ote",
+ "▁gro te",
+ "▁group ed",
+ "▁groupe d",
+ "▁L ima",
+ "▁Li ma",
+ "▁Lim a",
+ "▁A ugen",
+ "▁Au gen",
+ "▁Aug en",
+ "▁o ckså",
+ "on as",
+ "ona s",
+ "o nas",
+ "▁deb ate",
+ "▁In gl",
+ "▁Ing l",
+ "D a",
+ "SO UR",
+ "S OUR",
+ "ett be",
+ "▁Batt alion",
+ "▁F loat",
+ "▁Flo at",
+ "▁ Float",
+ "▁c one",
+ "▁con e",
+ "▁co ne",
+ "read sheet",
+ "co urt",
+ "cou rt",
+ "c ourt",
+ "li gen",
+ "lig en",
+ "lige n",
+ "l igen",
+ "▁Begin n",
+ "▁Beg inn",
+ "▁LI MIT",
+ "▁LIM IT",
+ "▁enjo yed",
+ "▁enjoy ed",
+ "▁Jak ob",
+ "▁t elt",
+ "▁te lt",
+ "▁tel t",
+ "back end",
+ "▁Gemeins ame",
+ "li nt",
+ "lin t",
+ "l int",
+ "al ling",
+ "all ing",
+ "▁b ör",
+ "gr and",
+ "gra nd",
+ "g rand",
+ "▁divers es",
+ "▁diverse s",
+ "▁z wiąz",
+ "▁Kom pon",
+ "▁inner halb",
+ "▁desar rollo",
+ "▁desarroll o",
+ "▁Ma sters",
+ "▁Mas ters",
+ "▁Master s",
+ "io so",
+ "ios o",
+ "i oso",
+ "]` .",
+ "] `.",
+ "▁frances a",
+ "▁franc esa",
+ "A ff",
+ "in ek",
+ "ine k",
+ "i nek",
+ "▁des sin",
+ "▁dess in",
+ "`. `",
+ "` .`",
+ "▁r anks",
+ "▁ran ks",
+ "▁rank s",
+ "бер г",
+ "▁s kal",
+ "▁sk al",
+ "▁S ultan",
+ "▁Sul tan",
+ "А Н",
+ "▁спо соб",
+ "▁contra dict",
+ "▁contrad ict",
+ "▁re com",
+ "▁rec om",
+ "▁Ok lahoma",
+ "▁Vlad imir",
+ "▁m eters",
+ "▁me ters",
+ "▁met ers",
+ "▁meter s",
+ "trans port",
+ "▁cons ulté",
+ "▁consult é",
+ "▁ consulté",
+ "▁A TP",
+ "▁AT P",
+ "eb b",
+ "e bb",
+ "▁vol unte",
+ "▁volunt e",
+ "▁out line",
+ "LI C",
+ "L IC",
+ "▁e uro",
+ "▁eu ro",
+ "Char Field",
+ "med ium",
+ "medi um",
+ "▁Belg ique",
+ "Pro c",
+ "Pr oc",
+ "P roc",
+ "ro utes",
+ "route s",
+ "rout es",
+ "rou tes",
+ "▁cont ribu",
+ "▁contrib u",
+ "! }",
+ "ší m",
+ "š ím",
+ "▁L ess",
+ "▁Le ss",
+ "▁Les s",
+ "▁K ost",
+ "▁Ko st",
+ "▁Kos t",
+ "▁eredet iből",
+ "re ven",
+ "rev en",
+ "r even",
+ "ver ify",
+ "▁S alt",
+ "▁Sal t",
+ "▁Sa lt",
+ "▁shoot ing",
+ "▁sho oting",
+ "▁dis pose",
+ "▁dispos e",
+ "▁disp ose",
+ "uj í",
+ "▁t ierra",
+ "▁tier ra",
+ "▁po ison",
+ "▁poi son",
+ "sa k",
+ "s ak",
+ "periment al",
+ "▁N é",
+ "▁K id",
+ "▁Ki d",
+ "ag yar",
+ "agy ar",
+ "▁archiv álva",
+ "be reich",
+ "bere ich",
+ "í z",
+ "▁R itter",
+ "▁Хронологи ја",
+ "ze um",
+ "да х",
+ "▁gr ünd",
+ "▁program mer",
+ "▁programme r",
+ "▁cons eil",
+ "▁conse il",
+ "▁enc rypt",
+ "integr ation",
+ "C ulture",
+ "▁Circ le",
+ "▁Cir cle",
+ "Ob servable",
+ "▁gen omsnitt",
+ "▁Se lection",
+ "▁Select ion",
+ "▁Sel ection",
+ "▁Sele ction",
+ "▁ Selection",
+ "▁ir regular",
+ "Aut res",
+ "Per cent",
+ "fa ult",
+ "f ault",
+ "▁virt ue",
+ "ą pi",
+ "▁s ess",
+ "▁se ss",
+ "▁ses s",
+ "▁Так же",
+ "Tim estamp",
+ "▁litt érature",
+ "▁mo ż",
+ "▁b orrow",
+ "▁bor row",
+ "▁con ced",
+ "▁conc ed",
+ "▁conce d",
+ "чни к",
+ "ч ник",
+ "▁L und",
+ "▁Lu nd",
+ "ION S",
+ "IO NS",
+ "yn ie",
+ "y nie",
+ "▁S hin",
+ "▁Sh in",
+ "▁o sob",
+ "▁os ob",
+ "b ě",
+ "▁int uit",
+ "▁intu it",
+ "▁на п",
+ "▁p roph",
+ "▁pro ph",
+ "▁pr oph",
+ "▁prop h",
+ "▁p itt",
+ "▁pi tt",
+ "▁pit t",
+ "▁IB M",
+ "▁T ill",
+ "▁Ti ll",
+ "▁h ina",
+ "▁hi na",
+ "▁hin a",
+ "it test",
+ "itt est",
+ "itte st",
+ "gener ator",
+ "▁N in",
+ "▁Ni n",
+ "▁K ot",
+ "▁Ko t",
+ "▁p asser",
+ "▁pass er",
+ "▁pas ser",
+ "▁passe r",
+ "▁dis position",
+ "▁dispos ition",
+ "▁disp osition",
+ "un ing",
+ "uni ng",
+ "u ning",
+ "▁f ame",
+ "▁fa me",
+ "▁fam e",
+ "▁t enia",
+ "▁te nia",
+ "▁ten ia",
+ "an cement",
+ "ance ment",
+ "anc ement",
+ "▁Su isse",
+ "` -",
+ "▁h ombres",
+ "▁hom bres",
+ "▁hombre s",
+ "▁inf inity",
+ "▁infin ity",
+ "▁окон ча",
+ "▁co sm",
+ "▁cos m",
+ "▁D ennis",
+ "▁Den nis",
+ "ba z",
+ "b az",
+ "ha upt",
+ "h aupt",
+ "▁might y",
+ "▁pr ede",
+ "▁pre de",
+ "▁pred e",
+ "us able",
+ "usa ble",
+ "▁ws zyst",
+ "▁wsz yst",
+ "▁l b",
+ "▁ lb",
+ "AB ASE",
+ "A BASE",
+ "j na",
+ "не в",
+ "н ев",
+ "▁as es",
+ "▁ ases",
+ "▁final mente",
+ "й м",
+ "pe ction",
+ "pect ion",
+ "pec tion",
+ "p ection",
+ "▁Stud ien",
+ "▁Norweg ian",
+ "ce go",
+ "c ego",
+ "IN DEX",
+ "IND EX",
+ "or ten",
+ "ort en",
+ "orte n",
+ "▁friend ship",
+ "▁friends hip",
+ "met ro",
+ "m etro",
+ "th ick",
+ "▁Z el",
+ "▁Ze l",
+ "LO W",
+ "L OW",
+ "▁there by",
+ "un ted",
+ "unt ed",
+ "unte d",
+ "▁sur faces",
+ "▁surface s",
+ "ющи м",
+ "%) .",
+ "% ).",
+ "▁W onder",
+ "▁Wo nder",
+ "▁redund ant",
+ "▁G ros",
+ "▁Gr os",
+ "▁Gro s",
+ "▁web sites",
+ "▁website s",
+ "▁v io",
+ "▁vi o",
+ "▁o cas",
+ "▁oc as",
+ "vé s",
+ "v és",
+ "▁G am",
+ "▁Ga m",
+ "d w",
+ "Ind icator",
+ "▁K ob",
+ "▁Ko b",
+ "▁j ack",
+ "▁ja ck",
+ "▁ jack",
+ "Hi nt",
+ "H int",
+ "▁A pol",
+ "▁Ap ol",
+ "▁други е",
+ "▁N UM",
+ "▁ NUM",
+ "▁o fic",
+ "▁of ic",
+ "yst ycz",
+ "▁were ld",
+ "▁wer eld",
+ "мо сти",
+ "LE FT",
+ "▁T ypes",
+ "▁Type s",
+ "▁Ty pes",
+ "▁Typ es",
+ "▁ Types",
+ "se en",
+ "see n",
+ "s een",
+ "un cia",
+ "unc ia",
+ "unci a",
+ "▁n arod",
+ "▁na rod",
+ "▁nar od",
+ "▁это т",
+ "Side note",
+ "S idenote",
+ "ue il",
+ "u eil",
+ "▁от ме",
+ "▁cour ts",
+ "▁court s",
+ "fi r",
+ "f ir",
+ "ur z",
+ "u rz",
+ "чен ко",
+ "Cred entials",
+ "▁imag ination",
+ "it ats",
+ "ita ts",
+ "itat s",
+ "bu ff",
+ "buf f",
+ "b uff",
+ "fl ash",
+ "▁bad ly",
+ "▁w orn",
+ "▁wor n",
+ "▁wo rn",
+ "▁окру гу",
+ "cat alog",
+ "catal og",
+ "c atalog",
+ "li me",
+ "lim e",
+ "l ime",
+ "▁G ill",
+ "▁Gi ll",
+ "▁Gil l",
+ "▁S ent",
+ "▁Se nt",
+ "▁Sen t",
+ "ie lla",
+ "iel la",
+ "i ella",
+ "▁Cra ig",
+ "▁S ele",
+ "▁Se le",
+ "▁Sel e",
+ "▁Indep end",
+ "▁prov incie",
+ "▁provin cie",
+ "os sen",
+ "oss en",
+ "▁за пад",
+ "▁запа д",
+ "▁inf ant",
+ "▁pr events",
+ "▁prevent s",
+ "▁prev ents",
+ "▁provin ces",
+ "▁province s",
+ "af é",
+ "be g",
+ "b eg",
+ "▁col ours",
+ "▁colour s",
+ "B F",
+ "ë n",
+ "▁Ме жду",
+ "î n",
+ "Ob server",
+ "for sch",
+ "í gen",
+ "um ption",
+ "ump tion",
+ "▁Ill ustr",
+ "ри ст",
+ "рис т",
+ "▁по лови",
+ "▁пол ови",
+ "▁поло ви",
+ "▁` &",
+ "▁o re",
+ "▁or e",
+ "▁ ore",
+ "▁supp lies",
+ "▁parent hes",
+ "Found ation",
+ "▁v ou",
+ "▁vo u",
+ "▁T out",
+ "▁To ut",
+ "Don ald",
+ "▁R ET",
+ "▁RE T",
+ "we ig",
+ "wei g",
+ "▁produ cción",
+ "mi x",
+ "m ix",
+ "▁ut wor",
+ "▁f öl",
+ "▁fö l",
+ "▁ent ão",
+ "▁S ister",
+ "▁Si ster",
+ "Tag s",
+ "T ags",
+ "▁Савез не",
+ "▁privile ges",
+ "▁na zw",
+ "▁naz w",
+ "▁R av",
+ "▁Ra v",
+ "▁re pro",
+ "▁rep ro",
+ "▁repr o",
+ "▁M ason",
+ "▁Ma son",
+ "▁Mas on",
+ "▁Pl atform",
+ "▁Plat form",
+ "▁ Platform",
+ "▁про бле",
+ "▁P érez",
+ "▁bl anc",
+ "▁bla nc",
+ "▁blan c",
+ "Be havior",
+ "фи ци",
+ "ek en",
+ "e ken",
+ "▁me ets",
+ "▁meet s",
+ "(. *",
+ "( .*",
+ "▁f å",
+ "ep en",
+ "e pen",
+ "ma ker",
+ "make r",
+ "m aker",
+ "▁lo yal",
+ "mem bers",
+ "member s",
+ "m embers",
+ "meister schaft",
+ "go al",
+ "ш лен",
+ "▁се веро",
+ "▁север о",
+ "ie nde",
+ "ien de",
+ "i ende",
+ "д ні",
+ "Pro of",
+ "▁exp lic",
+ "▁expl ic",
+ "▁elect ro",
+ "ie ls",
+ "iel s",
+ "i els",
+ "re load",
+ "▁el even",
+ "▁ele ven",
+ "▁elev en",
+ "▁part idos",
+ "▁partido s",
+ "în e",
+ "î ne",
+ "▁R egin",
+ "▁Re gin",
+ "▁Reg in",
+ "▁é x",
+ "▁Bu lg",
+ "▁Bul g",
+ "▁network ing",
+ "▁net working",
+ "▁se parator",
+ "▁separ ator",
+ "User Name",
+ "▁edific io",
+ "▁M ie",
+ "▁Mi e",
+ "▁id le",
+ "ye d",
+ "y ed",
+ "▁pass engers",
+ "▁passenger s",
+ "+ )",
+ "me no",
+ "men o",
+ "m eno",
+ "eg gi",
+ "e ggi",
+ "▁nice ly",
+ "▁nic ely",
+ "end encia",
+ "enden cia",
+ "чи й",
+ "ét és",
+ "été s",
+ "ight arrow",
+ "▁orth ogonal",
+ "▁H alf",
+ "▁Hal f",
+ "▁fe wer",
+ "▁few er",
+ "▁pro pi",
+ "▁prop i",
+ "▁pr imit",
+ "▁prim it",
+ "▁pri mit",
+ "▁primi t",
+ "ic ale",
+ "ical e",
+ "ica le",
+ "▁f lower",
+ "▁fl ower",
+ "▁flow er",
+ "▁flo wer",
+ "mer k",
+ "m erk",
+ "▁Оте че",
+ "▁pers istent",
+ "▁persist ent",
+ "▁V ille",
+ "▁Vill e",
+ "▁Vi lle",
+ "▁Vil le",
+ "Me n",
+ "M en",
+ "ga ben",
+ "gabe n",
+ "g aben",
+ "▁Isa ac",
+ "at ivity",
+ "ativ ity",
+ "ati vity",
+ "▁pół noc",
+ "▁r ok",
+ "▁ro k",
+ "▁ rok",
+ "car ds",
+ "card s",
+ "c ards",
+ "де ния",
+ "▁ю го",
+ "▁extra ordinary",
+ "▁k yr",
+ "(\" ,",
+ "( \",",
+ ")) ]",
+ ") )]",
+ "▁un ix",
+ "▁ unix",
+ "ко л",
+ "▁s ink",
+ "▁sin k",
+ "ap sed",
+ "aps ed",
+ "▁k ommen",
+ "▁kom men",
+ "▁komm en",
+ "▁ kommen",
+ "▁for cing",
+ "Ab out",
+ "▁H alle",
+ "▁Ha lle",
+ "▁Hall e",
+ "▁Hal le",
+ "▁Maj esty",
+ "▁Sw itch",
+ "▁ Switch",
+ "▁ab road",
+ "▁acceler ation",
+ "ur bed",
+ "urb ed",
+ "▁о стан",
+ "▁ос тан",
+ "▁оста н",
+ "▁ост ан",
+ "Re ady",
+ "Read y",
+ "▁пів ні",
+ "Br a",
+ "B ra",
+ "▁ць ого",
+ "▁pl ut",
+ "▁T rain",
+ "▁Tr ain",
+ "▁Tra in",
+ "▁á prilis",
+ "▁p uesto",
+ "▁pu esto",
+ "▁pue sto",
+ "▁t oss",
+ "▁to ss",
+ "▁irre levant",
+ "▁d ip",
+ "▁di p",
+ "se gment",
+ "seg ment",
+ "op acity",
+ "▁lors que",
+ "▁versch ill",
+ "ен а",
+ "е на",
+ "▁D oc",
+ "▁Do c",
+ "▁ Doc",
+ "%%%% %%%%",
+ "▁b orders",
+ "▁border s",
+ "▁bor ders",
+ "▁bord ers",
+ "ge bras",
+ "geb ras",
+ "gebra s",
+ "▁r ies",
+ "▁ri es",
+ "▁ ries",
+ "▁Olymp edia",
+ "▁Gener ation",
+ "met ros",
+ "metro s",
+ "▁hor izon",
+ "▁adapt ation",
+ "▁Z ahl",
+ "▁Za hl",
+ "▁na he",
+ "▁nah e",
+ "▁B ug",
+ "▁Bu g",
+ "P icture",
+ "љ и",
+ "R GB",
+ "O wner",
+ "ad in",
+ "adi n",
+ "a din",
+ "▁Catal unya",
+ "ný ch",
+ "n ých",
+ "▁cual quier",
+ "▁Inst itution",
+ "▁Instit ution",
+ "▁Institut ion",
+ "in sen",
+ "ins en",
+ "▁Bras ile",
+ "▁Brasil e",
+ "▁f itting",
+ "▁fit ting",
+ "De leg",
+ "Del eg",
+ "ic two",
+ "ict wo",
+ "▁Ex per",
+ "▁Exp er",
+ "och astic",
+ "▁d us",
+ "▁du s",
+ "▁по ра",
+ "▁пор а",
+ "▁sub string",
+ "▁subst ring",
+ "▁subs tring",
+ "▁substr ing",
+ "▁ substring",
+ "сси и",
+ "с сии",
+ "oi n",
+ "o in",
+ "▁ш кола",
+ "▁шко ла",
+ "▁c x",
+ "▁ cx",
+ "▁% )",
+ "▁ %)",
+ "▁Bud dh",
+ "▁p ending",
+ "▁pen ding",
+ "▁En try",
+ "▁Ent ry",
+ "▁ Entry",
+ "▁Be rl",
+ "▁Ber l",
+ "▁c ler",
+ "▁cl er",
+ "▁cle r",
+ "▁ cler",
+ "▁S oc",
+ "▁So c",
+ "▁r ounded",
+ "▁round ed",
+ "▁m v",
+ "▁ mv",
+ "ít ett",
+ "▁Di plom",
+ "▁französ ischen",
+ "▁G an",
+ "▁Ga n",
+ "▁Inv estig",
+ "▁index Path",
+ "▁ indexPath",
+ "▁mol ti",
+ "▁molt i",
+ "pers istence",
+ "▁XIX e",
+ "▁Elect ron",
+ "b ü",
+ "ge le",
+ "gel e",
+ "g ele",
+ "▁M aler",
+ "▁Ma ler",
+ "▁Mal er",
+ "▁Male r",
+ "▁proyect o",
+ "▁B ath",
+ "▁Ba th",
+ "▁Bat h",
+ "el lers",
+ "ell ers",
+ "elle rs",
+ "eller s",
+ "▁G P",
+ "▁ GP",
+ "on ing",
+ "oni ng",
+ "o ning",
+ "clou dflare",
+ "▁p ři",
+ "▁př i",
+ "▁d ed",
+ "▁de d",
+ "▁ ded",
+ "▁Od kazy",
+ "▁M sg",
+ "▁ Msg",
+ "▁B eing",
+ "▁Be ing",
+ "▁Bei ng",
+ "▁De puis",
+ "▁Dep uis",
+ "▁Pri mary",
+ "▁Prim ary",
+ "▁Prima ry",
+ "▁ Primary",
+ "▁App ro",
+ "▁Ap pro",
+ "▁form ally",
+ "▁formal ly",
+ "ступ ил",
+ "ступи л",
+ "▁fue ra",
+ "▁fu era",
+ "▁fuer a",
+ "▁R oot",
+ "▁Ro ot",
+ "▁ Root",
+ "▁aut onom",
+ "▁auto nom",
+ "▁secret ary",
+ "▁os ób",
+ "▁cu ales",
+ "▁cual es",
+ "▁Dep ending",
+ "▁a si",
+ "▁as i",
+ "▁ asi",
+ "ve ra",
+ "ver a",
+ "v era",
+ "▁rus se",
+ "▁russ e",
+ "▁pro ves",
+ "▁prov es",
+ "▁prove s",
+ "▁pres iden",
+ "R U",
+ "▁Wat son",
+ "▁web pack",
+ "▁ webpack",
+ "elli gence",
+ "ellig ence",
+ "ка м",
+ "▁Office r",
+ "▁Offic er",
+ "▁d elivery",
+ "▁deliver y",
+ "▁deli very",
+ "ж дён",
+ "▁им пе",
+ "▁w il",
+ "▁v esc",
+ "▁ve sc",
+ "▁ves c",
+ "uszt us",
+ "▁Ge off",
+ "() }",
+ "( )}",
+ "▁F ore",
+ "▁For e",
+ "▁Fo re",
+ "▁w enig",
+ "▁we nig",
+ "▁wen ig",
+ "▁A irl",
+ "▁Air l",
+ "▁E fter",
+ "▁Bre ak",
+ "▁St äd",
+ "is miss",
+ "ism iss",
+ "í p",
+ "▁avoid ed",
+ "▁avo ided",
+ "▁assert ion",
+ "D N",
+ "▁te at",
+ "▁tea t",
+ "ín a",
+ "í na",
+ "▁mechan ical",
+ "is u",
+ "i su",
+ "@ {",
+ "▁n ou",
+ "▁no u",
+ "▁ nou",
+ "Ital ie",
+ "source forge",
+ "▁s vo",
+ "▁sv o",
+ "▁kir ály",
+ "▁Re ferences",
+ "▁Refer ences",
+ "▁Reference s",
+ "si x",
+ "s ix",
+ "▁Arch ives",
+ "▁Archiv es",
+ "▁Archive s",
+ "▁fin ishing",
+ "▁finish ing",
+ "ac je",
+ "ét at",
+ "éta t",
+ "é tat",
+ "if fs",
+ "iff s",
+ "▁st ead",
+ "▁ste ad",
+ "▁fe as",
+ "aw are",
+ "awa re",
+ "a ware",
+ "la nde",
+ "land e",
+ "lan de",
+ "l ande",
+ "In ject",
+ "▁A gent",
+ "▁Ag ent",
+ "▁Age nt",
+ "▁ Agent",
+ "▁Norm datei",
+ "▁a men",
+ "▁am en",
+ "▁ amen",
+ "▁Arch itecture",
+ "az e",
+ "a ze",
+ "ș te",
+ "▁us ar",
+ "▁c ores",
+ "▁cor es",
+ "▁co res",
+ "▁core s",
+ "лі н",
+ "л ін",
+ "▁C astro",
+ "▁Cast ro",
+ "▁v æ",
+ ">\" ,",
+ "> \",",
+ "om ena",
+ "ome na",
+ "omen a",
+ "▁ge sam",
+ "▁ges am",
+ "▁Mart ín",
+ "▁Martí n",
+ "eg ung",
+ "egu ng",
+ "▁spole č",
+ "▁ampl itude",
+ "▁amplit ude",
+ "▁import ing",
+ "▁list view",
+ "TH E",
+ "T HE",
+ "zi ale",
+ "zial e",
+ "zia le",
+ "z iale",
+ "ce des",
+ "ced es",
+ "c edes",
+ "▁particul ier",
+ "▁Распо дела",
+ "▁кра й",
+ "▁d ivent",
+ "▁di vent",
+ "▁div ent",
+ "▁k é",
+ "▁ ké",
+ "qu it",
+ "qui t",
+ "q uit",
+ "то ром",
+ "тор ом",
+ "Check Box",
+ "▁Zob acz",
+ "ph e",
+ "p he",
+ "pt a",
+ "p ta",
+ "▁s jö",
+ "▁sj ö",
+ "▁розта ш",
+ "▁tedes co",
+ "▁s tal",
+ "▁st al",
+ "▁sta l",
+ "▁ stal",
+ "▁Be ruf",
+ "▁Ber uf",
+ "ова я",
+ "о вая",
+ "▁s vě",
+ "▁sv ě",
+ "▁fl ush",
+ "▁flu sh",
+ "▁ flush",
+ "▁від бу",
+ "▁rad ial",
+ "▁radi al",
+ "▁différ entes",
+ "ан та",
+ "▁Per ry",
+ "Col l",
+ "Co ll",
+ "C oll",
+ "li qu",
+ "l iqu",
+ "▁Option al",
+ "▁Opt ional",
+ "▁ Optional",
+ "▁Сан кт",
+ "▁LIN Q",
+ "▁Fran c",
+ "▁Fr anc",
+ "▁Fra nc",
+ "ci je",
+ "c ije",
+ "▁Gu illaume",
+ "kn ow",
+ "k now",
+ "▁Un its",
+ "▁Unit s",
+ "ol k",
+ "▁Syst ème",
+ "▁S ales",
+ "▁Sal es",
+ "▁Sa les",
+ "▁ehemal igen",
+ "ми рова",
+ "мир ова",
+ "x html",
+ "set opt",
+ "▁m ellan",
+ "▁mel lan",
+ "▁z ie",
+ "▁ zie",
+ "▁gi ant",
+ "Bo ard",
+ "▁C aval",
+ "▁Ca val",
+ "▁Cav al",
+ "▁def ence",
+ "-- --------",
+ "---- ------",
+ "-------- --",
+ "--- -------",
+ "------ ----",
+ "----- -----",
+ "------- ---",
+ "ps hire",
+ "p shire",
+ "ma rt",
+ "mar t",
+ "m art",
+ "▁Di oc",
+ "is kt",
+ "isk t",
+ "▁in se",
+ "▁ins e",
+ "▁é pisode",
+ "чи к",
+ "bar s",
+ "ba rs",
+ "b ars",
+ "Si to",
+ "S ito",
+ "▁integr ity",
+ "au ff",
+ "auf f",
+ "a uff",
+ "▁v är",
+ "▁vä r",
+ "Az ure",
+ "▁star b",
+ "▁sta rb",
+ "▁кон тра",
+ "▁Мекси чка",
+ "▁за па",
+ "▁Mount ains",
+ "▁Mountain s",
+ "}} =",
+ "} }=",
+ "▁pull ing",
+ "▁pul ling",
+ "▁sat ellite",
+ "▁at oms",
+ "▁atom s",
+ "▁profes or",
+ "▁repeated ly",
+ "▁repeat edly",
+ "▁inv asion",
+ "▁invas ion",
+ "program ming",
+ "├ ──",
+ "▁L ip",
+ "▁Li p",
+ "вши е",
+ "в шие",
+ "▁k een",
+ "▁ke en",
+ "▁crit ics",
+ "▁critic s",
+ "▁N icola",
+ "▁Nicol a",
+ "▁Nic ola",
+ "▁Ni cola",
+ "▁C and",
+ "▁Can d",
+ "▁Ca nd",
+ "▁dist int",
+ "▁he ading",
+ "▁head ing",
+ "p ragma",
+ "{ |",
+ "ym en",
+ "yme n",
+ "y men",
+ "▁ter rain",
+ "▁terra in",
+ "ied enis",
+ "▁bes onders",
+ "▁nomin ated",
+ "BO OL",
+ "▁K ay",
+ "▁Ka y",
+ "ci an",
+ "cia n",
+ "c ian",
+ "st elle",
+ "ste lle",
+ "stell e",
+ "▁disput e",
+ "▁disp ute",
+ "▁ щ",
+ "Data Set",
+ "no thing",
+ "not hing",
+ "n othing",
+ "Aut om",
+ "Auto m",
+ "hör en",
+ "hö ren",
+ "▁s hed",
+ "▁sh ed",
+ "▁she d",
+ "▁p aused",
+ "▁pa used",
+ "▁pause d",
+ "▁pau sed",
+ "sa n",
+ "s an",
+ "▁nun ca",
+ "!( \"",
+ "! (\"",
+ "▁po łoż",
+ "Se cret",
+ "Sec ret",
+ "▁Do main",
+ "▁Dom ain",
+ "▁ Domain",
+ "▁воз мож",
+ "X V",
+ "l v",
+ "ik h",
+ "i kh",
+ "▁S ony",
+ "▁So ny",
+ "▁Son y",
+ "m q",
+ "ot rop",
+ "otr op",
+ "▁Log ger",
+ "▁ Logger",
+ "▁thre at",
+ "as ted",
+ "ast ed",
+ "aste d",
+ "a sted",
+ "зь ко",
+ "▁fre ely",
+ "▁free ly",
+ "▁improve ments",
+ "▁improv ements",
+ "▁improvement s",
+ "ist ema",
+ "iste ma",
+ "▁illustr ate",
+ "▁t act",
+ "▁ta ct",
+ "▁fig ur",
+ "ué s",
+ "u és",
+ "rim inal",
+ "rimin al",
+ "od on",
+ "odo n",
+ "o don",
+ "int endo",
+ "▁influ enced",
+ "▁influence d",
+ "▁influen ced",
+ "FF ER",
+ "▁G host",
+ "▁Gh ost",
+ "▁со вер",
+ "▁сов ер",
+ "na d",
+ "n ad",
+ "ion ed",
+ "io ned",
+ "ione d",
+ "i oned",
+ "▁Event s",
+ "▁Ev ents",
+ "▁Even ts",
+ "▁ Events",
+ "▁wr apping",
+ "▁wra pping",
+ "▁wrap ping",
+ "-------- -+",
+ "--- ------+",
+ "------ ---+",
+ "----- ----+",
+ "------- --+",
+ "fi f",
+ "f if",
+ "▁( **",
+ "▁(* *",
+ "={ {",
+ "= {{",
+ "ма ль",
+ "м аль",
+ "▁loss es",
+ "▁Gal erie",
+ "te l",
+ "t el",
+ "▁лю того",
+ "▁K ru",
+ "▁Kr u",
+ "▁P olen",
+ "▁Pol en",
+ "▁Po len",
+ "ні м",
+ "ne ar",
+ "nea r",
+ "n ear",
+ "▁sh ame",
+ "▁moy enne",
+ "▁C P",
+ "▁ CP",
+ "pre is",
+ "▁pass enger",
+ "le k",
+ "l ek",
+ "ion ales",
+ "ional es",
+ "ionale s",
+ "iona les",
+ "kaf ka",
+ "k afka",
+ "▁partic ipe",
+ "▁particip e",
+ "▁parti cipe",
+ "▁partici pe",
+ "▁memb ership",
+ "▁member ship",
+ "▁members hip",
+ "[ _",
+ "land o",
+ "lan do",
+ "l ando",
+ "st elling",
+ "stell ing",
+ "Se m",
+ "S em",
+ "go n",
+ "g on",
+ "▁Cor rect",
+ "▁v alle",
+ "▁val le",
+ "▁va lle",
+ "▁vall e",
+ "▁read ily",
+ "▁Dok ument",
+ "hon neur",
+ "h onneur",
+ "▁test im",
+ "ul ative",
+ "do Filter",
+ "▁domin ant",
+ "am mer",
+ "amm er",
+ "▁ко ја",
+ "▁M onsieur",
+ "ze g",
+ "z eg",
+ "▁вій ни",
+ "▁F o",
+ "▁A my",
+ "▁Am y",
+ "▁ ¡",
+ "▁febru ár",
+ "▁down loading",
+ "▁download ing",
+ "▁l eng",
+ "▁le ng",
+ "▁len g",
+ "\\}$ ,",
+ "\\} $,",
+ "\\ }$,",
+ "▁ne at",
+ "▁C ache",
+ "▁Ca che",
+ "▁ Cache",
+ "IC ATION",
+ "▁de ve",
+ "▁dev e",
+ "▁s orrow",
+ "▁sor row",
+ "sl ow",
+ "s low",
+ "▁hin aus",
+ "▁hina us",
+ "▁recon oc",
+ "▁Lin ked",
+ "▁Link ed",
+ "▁Sh aw",
+ "mar ket",
+ "mark et",
+ "▁D ic",
+ "▁Di c",
+ "▁S ki",
+ "▁Sk i",
+ "▁del imiter",
+ "▁Main Activity",
+ "▁ MainActivity",
+ "▁Mus ical",
+ "▁Music al",
+ "▁Re yn",
+ "▁Rey n",
+ "Scroll View",
+ "▁convent ional",
+ "▁convention al",
+ "en ça",
+ "enç a",
+ "▁re factor",
+ "▁ref actor",
+ "' -",
+ "▁H ed",
+ "▁He d",
+ "spr ech",
+ "spre ch",
+ "▁ath let",
+ "▁e species",
+ "▁es pecies",
+ "▁espe cies",
+ "▁espec ies",
+ "▁especie s",
+ "▁Sch ön",
+ "▁kle inen",
+ "▁kleine n",
+ "▁klein en",
+ "ш ко",
+ "▁Й о",
+ "▁H appy",
+ "▁Ha ppy",
+ "multi row",
+ "▁august i",
+ "▁G and",
+ "▁Ga nd",
+ "▁Gan d",
+ "▁appoint ment",
+ "▁Medi abestanden",
+ "Th ree",
+ "▁Kenn eth",
+ "NE W",
+ "▁Not ification",
+ "▁ Notification",
+ "▁Mar x",
+ "▁Ma rx",
+ "▁in sc",
+ "▁ins c",
+ "Mo r",
+ "M or",
+ "вы й",
+ "в ый",
+ "vä st",
+ "v äst",
+ "vi dia",
+ "vid ia",
+ "v idia",
+ "▁demonstr ated",
+ "▁demonstrate d",
+ "font s",
+ "fon ts",
+ "▁k amen",
+ "▁kam en",
+ "▁ka men",
+ "▁S ter",
+ "▁St er",
+ "▁Ste r",
+ "▁mieszkań ców",
+ "▁K oh",
+ "▁Ko h",
+ "~$ \\",
+ "~ $\\",
+ "») .",
+ "» ).",
+ "re ne",
+ "ren e",
+ "r ene",
+ "ins ic",
+ "ic ká",
+ "ick á",
+ "xy gen",
+ "▁m n",
+ "▁ mn",
+ "▁s ched",
+ "▁sc hed",
+ "▁sch ed",
+ "▁sche d",
+ "AS C",
+ "A SC",
+ "I g",
+ "▁Const ant",
+ "▁opport un",
+ "▁My Class",
+ "se f",
+ "s ef",
+ "op ed",
+ "ope d",
+ "o ped",
+ "▁inj ured",
+ "VI S",
+ "V IS",
+ "▁P ero",
+ "▁Per o",
+ "▁Pe ro",
+ "▁U ntil",
+ "▁Un til",
+ "▁f lesh",
+ "▁fl esh",
+ "▁fle sh",
+ "orph ism",
+ "▁Port al",
+ "▁Por tal",
+ "▁gmin y",
+ "▁вла сти",
+ "▁N ä",
+ "кти че",
+ "к тиче",
+ "▁h rab",
+ "▁hr ab",
+ "▁C ub",
+ "▁Cu b",
+ "av oir",
+ "avo ir",
+ "a voir",
+ "▁L ars",
+ "▁La rs",
+ "▁Lar s",
+ "▁Бе ло",
+ "▁seizo en",
+ "▁Gen omsnitt",
+ "▁L il",
+ "▁Li l",
+ "▁P ool",
+ "▁Po ol",
+ "▁ Pool",
+ "▁D ios",
+ "▁Di os",
+ "T X",
+ "ae s",
+ "a es",
+ "aut ore",
+ "auto re",
+ "autor e",
+ "Al pha",
+ "st ates",
+ "state s",
+ "sta tes",
+ "stat es",
+ "La b",
+ "L ab",
+ "n ederbörd",
+ "er ton",
+ "ert on",
+ "▁b rid",
+ "▁br id",
+ "▁ brid",
+ "▁r icht",
+ "▁rich t",
+ "▁ric ht",
+ "▁ri cht",
+ "▁ richt",
+ "▁E la",
+ "▁El a",
+ "▁с ла",
+ "▁ сла",
+ "▁weap on",
+ "▁comb att",
+ "▁combat t",
+ "ag ar",
+ "aga r",
+ "a gar",
+ "▁reg nig",
+ "▁util isé",
+ "▁utilis é",
+ "▁ser vir",
+ "▁serv ir",
+ "▁servi r",
+ "▁b rick",
+ "▁br ick",
+ "▁gate way",
+ "▁tor raste",
+ "▁proced ures",
+ "▁procedure s",
+ "▁års nederbörd",
+ "▁Genomsnitt lig",
+ "чё т",
+ "ч ёт",
+ "▁om rå",
+ "▁ områ",
+ "▁regnig aste",
+ "▁че сть",
+ "▁a mid",
+ "▁am id",
+ "▁ami d",
+ "▁gr ateful",
+ "▁D IS",
+ "▁DI S",
+ "▁ DIS",
+ "DA Y",
+ "▁о ру",
+ "▁ор у",
+ "▁ ору",
+ "▁riv ière",
+ "he ure",
+ "▁Rich mond",
+ "▁Com par",
+ "▁Comp ar",
+ "▁Н ор",
+ "▁Но р",
+ "DO C",
+ "D OC",
+ "es ia",
+ "esi a",
+ "cal c",
+ "▁I U",
+ "▁v org",
+ "▁vo rg",
+ "▁vor g",
+ "▁hab ían",
+ "▁había n",
+ "ço it",
+ "ç oit",
+ "▁a rist",
+ "▁ar ist",
+ "▁к ли",
+ "▁ кли",
+ "▁S ue",
+ "▁Su e",
+ "▁T ouch",
+ "▁To uch",
+ "▁ Touch",
+ "▁Writ ing",
+ "ifi able",
+ "▁w c",
+ "▁with draw",
+ "за р",
+ "з ар",
+ "▁present ly",
+ "▁pres ently",
+ "▁F K",
+ "▁pr akt",
+ "▁pra kt",
+ "▁col ored",
+ "▁color ed",
+ "us b",
+ "u sb",
+ "▁Per ú",
+ "▁pl ata",
+ "▁pla ta",
+ "▁plat a",
+ "▁w ishes",
+ "▁wish es",
+ "▁wis hes",
+ "▁ка м",
+ "▁ кам",
+ "az ar",
+ "aza r",
+ "a zar",
+ "áv el",
+ "á vel",
+ "▁l amp",
+ "▁la mp",
+ "bi shop",
+ "b ishop",
+ "▁in clusion",
+ "▁incl usion",
+ "▁inclus ion",
+ "j q",
+ "ar th",
+ "art h",
+ "▁F lag",
+ "▁Fl ag",
+ "▁ Flag",
+ "▁но р",
+ "▁н ор",
+ "æ dia",
+ "UN CTION",
+ "▁Bahn hof",
+ "▁appro aching",
+ "▁approach ing",
+ "▁G ött",
+ "▁Gö tt",
+ "▁c ube",
+ "▁cu be",
+ "▁cub e",
+ "▁arg ued",
+ "▁argue d",
+ "▁Th ings",
+ "Gu i",
+ "G ui",
+ "до ви",
+ "дов и",
+ "д ови",
+ "▁re cre",
+ "▁rec re",
+ "▁ré seau",
+ "▁rés eau",
+ "▁sign ifica",
+ "▁signific a",
+ "Gi t",
+ "G it",
+ "geb racht",
+ "gebra cht",
+ "▁l iga",
+ "▁li ga",
+ "▁lig a",
+ "▁ liga",
+ "▁ass ured",
+ "al us",
+ "alu s",
+ "a lus",
+ "ри т",
+ "р ит",
+ "▁э нциклопеди",
+ "▁% ).",
+ "▁%) .",
+ "▁ %).",
+ "▁Prem ière",
+ "▁declar ations",
+ "▁declaration s",
+ "▁tr icky",
+ "▁trick y",
+ "▁pro files",
+ "▁prof iles",
+ "▁profile s",
+ "▁profil es",
+ "▁F on",
+ "▁Fo n",
+ "▁J as",
+ "▁Ja s",
+ "â r",
+ "ba bel",
+ "b abel",
+ "▁Fr iday",
+ "▁Fri day",
+ "▁Frid ay",
+ "▁jú nius",
+ "▁c ols",
+ "▁col s",
+ "▁co ls",
+ "▁ cols",
+ "▁EX ISTS",
+ "▁Ital iana",
+ "▁Italian a",
+ "▁Italia na",
+ "▁author ization",
+ "▁s ulle",
+ "▁su lle",
+ "▁sul le",
+ "▁sull e",
+ "▁E mb",
+ "▁Em b",
+ "▁Vari able",
+ "▁ Variable",
+ "tr ees",
+ "tre es",
+ "tree s",
+ "t rees",
+ "▁F ly",
+ "▁Fl y",
+ "ri ors",
+ "rio rs",
+ "rior s",
+ "r iors",
+ "▁da mals",
+ "▁dam als",
+ "▁find et",
+ "▁fin det",
+ "▁Se pt",
+ "▁Sep t",
+ "▁m undial",
+ "▁rem oval",
+ "▁remov al",
+ "▁long itude",
+ "▁longitud e",
+ "cl ic",
+ "cli c",
+ "c lic",
+ "▁f ade",
+ "▁fa de",
+ "▁ fade",
+ "▁grad le",
+ "▁ gradle",
+ "▁z ák",
+ "▁zá k",
+ "▁tim ing",
+ "▁ti ming",
+ "tr ightarrow",
+ "t rightarrow",
+ "at ia",
+ "ati a",
+ "- .",
+ "uch e",
+ "uc he",
+ "u che",
+ "▁ser ialize",
+ "▁serial ize",
+ "▁H mm",
+ "▁Represent atives",
+ "ba h",
+ "b ah",
+ "re nd",
+ "ren d",
+ "r end",
+ "ass ador",
+ "assa dor",
+ "▁sh ield",
+ "uc ion",
+ "u cion",
+ "▁am éricaine",
+ "▁améric aine",
+ "▁américain e",
+ "z ę",
+ "vi lla",
+ "vil la",
+ "v illa",
+ "▁hom bre",
+ "ás s",
+ "á ss",
+ "▁S F",
+ "▁ SF",
+ "▁repe ating",
+ "▁repeat ing",
+ "▁c riter",
+ "▁cr iter",
+ "▁crit er",
+ "▁cri ter",
+ "▁St ruct",
+ "▁Str uct",
+ "▁ Struct",
+ "?? ?",
+ "? ??",
+ "▁che ap",
+ "▁r ings",
+ "▁ring s",
+ "▁rin gs",
+ "ab häng",
+ "▁c orte",
+ "▁cor te",
+ "▁cort e",
+ "▁admin ist",
+ "ix on",
+ "gy pt",
+ "▁punt os",
+ "▁punto s",
+ "▁me zi",
+ "▁mez i",
+ "▁po chod",
+ "▁poc hod",
+ "is ko",
+ "isk o",
+ "i sko",
+ "ni ę",
+ "n ię",
+ "▁о су",
+ "▁ос у",
+ "▁á r",
+ "▁ ár",
+ "те льной",
+ "тель ной",
+ "тельно й",
+ "▁Metropol itan",
+ "ji n",
+ "j in",
+ "ze ss",
+ "zes s",
+ "z ess",
+ "▁ві ці",
+ "▁conflic ts",
+ "▁conflict s",
+ "ij st",
+ "▁Mar ket",
+ "▁Mark et",
+ "ст ров",
+ "стро в",
+ "стр ов",
+ "▁\" ,\"",
+ "▁\", \"",
+ "▁ \",\"",
+ "▁Sc roll",
+ "▁ Scroll",
+ "gu n",
+ "g un",
+ "та ра",
+ "тар а",
+ "▁am ateur",
+ "▁r óż",
+ "pos s",
+ "po ss",
+ "p oss",
+ "▁general ized",
+ "▁H arm",
+ "▁Har m",
+ "▁Ha rm",
+ "ci ta",
+ "cit a",
+ "c ita",
+ "▁Sw itzerland",
+ "ic ola",
+ "ico la",
+ "icol a",
+ "i cola",
+ "▁m uit",
+ "▁mu it",
+ "loc ated",
+ "▁c ó",
+ "▁a rose",
+ "▁ar ose",
+ "▁commun auté",
+ "}) ^",
+ "} )^",
+ "vis ibility",
+ "íd a",
+ "í da",
+ "▁F B",
+ "▁ FB",
+ "▁Fre und",
+ "ga t",
+ "g at",
+ "\": {\"",
+ "int ellij",
+ "if ie",
+ "ifi e",
+ "hm en",
+ "h men",
+ "▁éd ition",
+ "▁ édition",
+ "▁ко је",
+ "▁ін ших",
+ "om ing",
+ "omin g",
+ "omi ng",
+ "o ming",
+ "▁arqu itect",
+ "▁Pres idente",
+ "▁President e",
+ "▁П ід",
+ "▁ca bin",
+ "▁cab in",
+ "The orem",
+ "▁G ay",
+ "▁Ga y",
+ "if ice",
+ "ific e",
+ "ifi ce",
+ "▁h ect",
+ "▁he ct",
+ "l ą",
+ "irm ingham",
+ "▁sem antic",
+ "▁Louis iana",
+ "▁sac rifice",
+ "▁sacr ifice",
+ "▁sacrific e",
+ "▁Christ oph",
+ "▁Exec utive",
+ "_ +",
+ "j ák",
+ "▁s eria",
+ "▁se ria",
+ "▁ser ia",
+ "▁Over flow",
+ "▁ Overflow",
+ "▁Lu cy",
+ "▁Luc y",
+ "▁mel hor",
+ "▁vo ices",
+ "▁voice s",
+ "cz a",
+ "c za",
+ "▁ка пи",
+ "▁университе та",
+ "IN CT",
+ "▁col oc",
+ "▁co loc",
+ "▁pr ue",
+ "▁ge omet",
+ "▁geom et",
+ "▁di retto",
+ "▁dire tto",
+ "▁dir etto",
+ "▁dirett o",
+ "re so",
+ "res o",
+ "r eso",
+ "▁A kt",
+ "▁Ak t",
+ "▁un h",
+ "▁се ри",
+ "▁сер и",
+ "▁Al ert",
+ "▁Ale rt",
+ "▁ Alert",
+ "We l",
+ "W el",
+ "au di",
+ "aud i",
+ "a udi",
+ "äl er",
+ "ä ler",
+ "▁gu ests",
+ "▁guest s",
+ "▁и де",
+ "St udio",
+ "▁ка те",
+ "▁ex ponent",
+ "▁expon ent",
+ "rz e",
+ "r ze",
+ "pm od",
+ "p mod",
+ "ro lle",
+ "roll e",
+ "rol le",
+ "▁Lim ited",
+ "Al lemagne",
+ "▁p ity",
+ "▁pi ty",
+ "▁pit y",
+ "▁l ä",
+ "▁ lä",
+ "▁run ner",
+ "▁ runner",
+ "ke nde",
+ "ken de",
+ "k ende",
+ "E Q",
+ "▁M M",
+ "▁ MM",
+ "sz ág",
+ "по ді",
+ "▁reg ret",
+ "▁publi é",
+ "▁depart amento",
+ "▁acc used",
+ "▁accus ed",
+ "h p",
+ "▁P fl",
+ "▁Pf l",
+ "▁S int",
+ "▁Si nt",
+ "▁Sin t",
+ "▁ek onom",
+ "ra ctor",
+ "rac tor",
+ "ract or",
+ "r actor",
+ "▁П ів",
+ "▁aw ful",
+ "owa ć",
+ "] ->",
+ "▁F ine",
+ "▁Fin e",
+ "С а",
+ "ti s",
+ "t is",
+ "ét a",
+ "é ta",
+ "▁Ро ди",
+ "▁Düsseld orf",
+ "LO B",
+ "L OB",
+ "os as",
+ "osa s",
+ "wer ke",
+ "werk e",
+ "▁l ance",
+ "▁lan ce",
+ "▁листо пада",
+ "▁in complete",
+ "▁P icture",
+ "▁ Picture",
+ "(' \\",
+ "( '\\",
+ "es ters",
+ "est ers",
+ "ester s",
+ "este rs",
+ "e sters",
+ "▁belong ed",
+ "▁S ank",
+ "▁San k",
+ "am med",
+ "amm ed",
+ "▁repos itories",
+ "▁ad dr",
+ "▁add r",
+ "▁ addr",
+ "Col lect",
+ "Coll ect",
+ "H ot",
+ "▁t yl",
+ "▁ty l",
+ "▁instance of",
+ "▁bon us",
+ "ov ý",
+ "▁мо ря",
+ "▁мор я",
+ "▁inter active",
+ "▁interact ive",
+ "▁M ys",
+ "▁My s",
+ "▁Ed mund",
+ "file Name",
+ "em or",
+ "emo r",
+ "e mor",
+ "▁Т ри",
+ "▁R osen",
+ "▁Ro sen",
+ "▁Ros en",
+ "▁Rose n",
+ "▁Pr ima",
+ "▁Pri ma",
+ "▁Prim a",
+ "▁v oting",
+ "▁vo ting",
+ "▁vot ing",
+ "▁X P",
+ "▁Z ero",
+ "▁Ze ro",
+ "▁ Zero",
+ "▁L ed",
+ "▁Le d",
+ "ams ung",
+ "▁en ables",
+ "▁enable s",
+ "▁redirect s",
+ "AS T",
+ "A ST",
+ "Pa int",
+ "P aint",
+ "ack er",
+ "ac ker",
+ "a cker",
+ "le cht",
+ "▁chair man",
+ "▁A ven",
+ "▁Av en",
+ "▁S ach",
+ "▁Sa ch",
+ "▁Sac h",
+ "(\" <",
+ "ке р",
+ "к ер",
+ "▁mist akes",
+ "▁mistake s",
+ "▁We it",
+ "▁Wei t",
+ "▁pro wad",
+ "▁ prowad",
+ "▁did nt",
+ "▁didn t",
+ "én ario",
+ "un less",
+ "▁back wards",
+ "bo a",
+ "b oa",
+ "du ino",
+ "`` `",
+ "` ``",
+ "st or",
+ "sto r",
+ "s tor",
+ "Comple tion",
+ "pu esta",
+ "▁din ast",
+ "úl t",
+ "ú lt",
+ "▁S Y",
+ "▁ SY",
+ "if olia",
+ "œuv res",
+ "œuvre s",
+ "▁r acing",
+ "▁ra cing",
+ "▁rac ing",
+ "▁cab inet",
+ "▁cabin et",
+ "▁cut ting",
+ "▁th umb",
+ "▁Ка ра",
+ "▁Кар а",
+ "high light",
+ "ку п",
+ "▁s d",
+ "▁ sd",
+ "▁на ціональ",
+ "▁camp agne",
+ "▁register s",
+ "▁educ ational",
+ "▁education al",
+ "▁p esar",
+ "▁pes ar",
+ "üg e",
+ "ü ge",
+ "▁o ro",
+ "▁or o",
+ "▁ oro",
+ "burg o",
+ "bur go",
+ "▁Athlet ics",
+ "▁M TV",
+ "get Message",
+ "▁H yp",
+ "▁Hy p",
+ "▁vict im",
+ "▁vic tim",
+ ")) \\",
+ ") )\\",
+ "▁dr ums",
+ "▁dru ms",
+ "▁drum s",
+ "host name",
+ "ta ł",
+ "t ał",
+ "ma king",
+ "m aking",
+ "▁pow iat",
+ "ő d",
+ "thread s",
+ "▁absol v",
+ "▁лю ди",
+ "▁ste pped",
+ "▁step ped",
+ "ex ist",
+ "▁N K",
+ "▁v es",
+ "▁ve s",
+ "▁ ves",
+ "ist iche",
+ "istic he",
+ "isti che",
+ "% '",
+ "at ivos",
+ "ativ os",
+ "ati vos",
+ "ativo s",
+ "▁та кой",
+ "▁тако й",
+ "▁Mongo DB",
+ "▁U ng",
+ "▁Un g",
+ "▁Р ус",
+ "▁Ру с",
+ "▁e lim",
+ "▁el im",
+ "▁F if",
+ "ic ación",
+ "ica ción",
+ "▁T ennis",
+ "▁Ten nis",
+ "▁Jeff erson",
+ "j án",
+ "fo g",
+ "f og",
+ "an ha",
+ "anh a",
+ "zo r",
+ "z or",
+ "▁уні версите",
+ "ah u",
+ "a hu",
+ "ia da",
+ "i ada",
+ "S dk",
+ "Set ting",
+ "▁K ill",
+ "▁Kil l",
+ "▁Ki ll",
+ "▁W end",
+ "▁We nd",
+ "▁b ald",
+ "▁bal d",
+ "▁ba ld",
+ "▁K ub",
+ "▁Ku b",
+ "▁v isto",
+ "▁vis to",
+ "▁vi sto",
+ "▁je unes",
+ "▁jeune s",
+ "▁jeu nes",
+ "col lections",
+ "collection s",
+ "collect ions",
+ "ac í",
+ "a cí",
+ "вро пей",
+ "▁ar ise",
+ "он і",
+ "о ні",
+ "MA IN",
+ "до ступ",
+ "▁b erg",
+ "▁be rg",
+ "▁ber g",
+ "▁ berg",
+ "▁critic ism",
+ "▁Tor re",
+ "▁de script",
+ "▁des cript",
+ "▁descri pt",
+ "ière s",
+ "i ères",
+ "▁e studio",
+ "▁est udio",
+ "▁estud io",
+ "▁i li",
+ "▁il i",
+ "▁ ili",
+ "▁mil itare",
+ "▁milit are",
+ "▁militar e",
+ "▁Cl ara",
+ "▁Cla ra",
+ "▁Clar a",
+ "▁El len",
+ "▁Elle n",
+ "▁Ell en",
+ "lim ited",
+ "limit ed",
+ "л м",
+ "▁Esp añ",
+ "▁inf initely",
+ "▁infinite ly",
+ "Amer ica",
+ "ou c",
+ "o uc",
+ "gl ass",
+ "g lass",
+ "▁r ud",
+ "▁ru d",
+ "▁z at",
+ "▁za t",
+ "▁ zat",
+ "▁r in",
+ "▁ri n",
+ "▁ rin",
+ "▁Bibli ografía",
+ "▁mer chant",
+ "tensor flow",
+ "▁d ér",
+ "▁dé r",
+ "▁Active Record",
+ "IE S",
+ "I ES",
+ "▁link er",
+ "▁lin ker",
+ "▁estud ios",
+ "▁estudio s",
+ "cdn js",
+ "▁Го судар",
+ "án chez",
+ "ap pe",
+ "app e",
+ "a ppe",
+ "cl ub",
+ "c lub",
+ "▁dal ší",
+ "▁Alg orithm",
+ "df s",
+ "d fs",
+ "▁B ac",
+ "▁Ba c",
+ "▁ка фе",
+ "▁& =\\",
+ "▁&= \\",
+ "▁а т",
+ "▁ ат",
+ "▁Г лав",
+ "▁M ou",
+ "▁Mo u",
+ "M achine",
+ "(... )",
+ "( ...)",
+ "▁com part",
+ "▁comp art",
+ "▁compar t",
+ "▁aug usztus",
+ "av an",
+ "ava n",
+ "a van",
+ "▁roll ed",
+ "▁rol led",
+ "▁ rolled",
+ "▁е ди",
+ "▁ еди",
+ "Sc an",
+ "S can",
+ "▁ре гі",
+ "▁świ ata",
+ "▁świat a",
+ "▁m ines",
+ "▁min es",
+ "▁mi nes",
+ "▁mine s",
+ "}, {",
+ "▁T ier",
+ "▁Ti er",
+ "Can not",
+ "C annot",
+ "мі н",
+ "м ін",
+ "▁NE W",
+ "▁ NEW",
+ "▁Во л",
+ "▁M anh",
+ "▁Man h",
+ "▁Greg ory",
+ "▁princi pe",
+ "▁princip e",
+ "▁prin cipe",
+ "IS O",
+ "I SO",
+ "pr og",
+ "pro g",
+ "p rog",
+ "▁F ail",
+ "▁Fa il",
+ "▁ Fail",
+ "▁a a",
+ "▁ aa",
+ "▁fe cha",
+ "▁W CF",
+ "▁mag istr",
+ "▁Z ach",
+ "▁Za ch",
+ "▁un icode",
+ "▁con verter",
+ "▁convert er",
+ "▁conver ter",
+ "▁dis pers",
+ "▁disp ers",
+ "ks am",
+ "k sam",
+ "▁Un cle",
+ "Property Changed",
+ "▁l ider",
+ "▁li der",
+ "▁lid er",
+ "▁o pts",
+ "▁op ts",
+ "▁opt s",
+ "▁ opts",
+ "▁та м",
+ "▁ там",
+ "lock ed",
+ "loc ked",
+ "za k",
+ "z ak",
+ "▁co unted",
+ "▁count ed",
+ "▁coun ted",
+ "▁person e",
+ "▁pers one",
+ "▁hur ried",
+ "ät ter",
+ "ätt er",
+ "ätte r",
+ "▁out ras",
+ "▁ou tras",
+ "▁g enu",
+ "▁ge nu",
+ "▁gen u",
+ "B D",
+ "ve g",
+ "v eg",
+ "du e",
+ "d ue",
+ "▁P ract",
+ "▁Pr act",
+ "▁Pra ct",
+ "▁po sible",
+ "▁pos ible",
+ "▁cont ribute",
+ "▁contrib ute",
+ "▁contribu te",
+ "UM N",
+ "▁Bür ger",
+ "▁w ars",
+ "▁war s",
+ "▁wa rs",
+ "▁exhib ition",
+ "hi ll",
+ "h ill",
+ "▁a str",
+ "▁as tr",
+ "▁ast r",
+ "▁ astr",
+ "▁му зе",
+ "▁C ASE",
+ "▁CA SE",
+ "▁ CASE",
+ "man ifest",
+ "y ellow",
+ "F n",
+ "▁R C",
+ "▁ RC",
+ "▁s ott",
+ "▁so tt",
+ "▁su jet",
+ "▁S ocket",
+ "▁So cket",
+ "▁Soc ket",
+ "▁ Socket",
+ "▁Ch ine",
+ "▁Chi ne",
+ "▁frame works",
+ "▁framework s",
+ "Hol d",
+ "H old",
+ "êt s",
+ "ê ts",
+ "▁ф іль",
+ "▁фі ль",
+ "Lo aded",
+ "Load ed",
+ "op he",
+ "oph e",
+ "o phe",
+ "text e",
+ "tex te",
+ "▁ex pres",
+ "▁exp res",
+ "▁expr es",
+ "▁cons ume",
+ "▁consum e",
+ "▁R ichtung",
+ "ograf i",
+ "▁magn ific",
+ "à t",
+ "▁ind ul",
+ "▁indu l",
+ "ry ty",
+ "▁off ici",
+ "▁offic i",
+ "▁ass ault",
+ "ru nd",
+ "run d",
+ "r und",
+ "▁vari ants",
+ "▁variant s",
+ "▁сель сов",
+ "▁exc itement",
+ "Time s",
+ "Tim es",
+ "T imes",
+ "k otlin",
+ "▁g ering",
+ "▁ge ring",
+ "▁ger ing",
+ "▁En gel",
+ "▁Eng el",
+ "▁T imer",
+ "▁Time r",
+ "▁Tim er",
+ "▁Ti mer",
+ "▁ Timer",
+ "² ).",
+ "▁N g",
+ "äs st",
+ "sch au",
+ "SE rror",
+ "S Error",
+ "▁Ed wards",
+ "▁Edward s",
+ "▁Term inal",
+ "li ct",
+ "lic t",
+ "l ict",
+ "Un der",
+ "Und er",
+ "U nder",
+ "▁sp awn",
+ "ür gen",
+ "▁Außer dem",
+ "▁k itchen",
+ "fah rt",
+ "fahr t",
+ "▁Col ors",
+ "▁Color s",
+ "▁систе ма",
+ "▁систем а",
+ "▁termin ated",
+ "▁terminate d",
+ "▁La TeX",
+ "ig keiten",
+ "igkeit en",
+ "▁mes ure",
+ "▁Am ts",
+ "▁Amt s",
+ "▁emp ir",
+ "▁stri king",
+ "▁strik ing",
+ "▁exclus ive",
+ "те х",
+ "▁re z",
+ "▁r ez",
+ "▁ rez",
+ "▁qu an",
+ "▁q uan",
+ "▁Glas gow",
+ "▁lect ure",
+ "▁Test ament",
+ "▁fun ds",
+ "▁fund s",
+ "▁st essa",
+ "▁tri bes",
+ "▁trib es",
+ "▁tribe s",
+ "▁par fois",
+ "▁tre ball",
+ "ni tz",
+ "nit z",
+ "n itz",
+ "bo ve",
+ "b ove",
+ "▁за слу",
+ "▁ab sent",
+ "▁abs ent",
+ "▁L auf",
+ "▁La uf",
+ "▁Lau f",
+ "Sm ith",
+ "▁Никола й",
+ "▁europé enne",
+ "l r",
+ "▁program ma",
+ "▁mi dst",
+ "▁mid st",
+ "▁daugh ters",
+ "▁daughter s",
+ "S yn",
+ "ob en",
+ "obe n",
+ "o ben",
+ "ân ă",
+ "id an",
+ "ida n",
+ "i dan",
+ "▁t her",
+ "▁th er",
+ "▁the r",
+ "▁ ther",
+ "od ore",
+ "odo re",
+ "odor e",
+ "sd l",
+ "s dl",
+ "▁Q uint",
+ "▁Qu int",
+ "▁cas os",
+ "▁caso s",
+ "▁Z am",
+ "▁Za m",
+ "▁стра ны",
+ "▁sp rite",
+ "▁spr ite",
+ "ка л",
+ "к ал",
+ "▁n asc",
+ "▁na sc",
+ "▁nas c",
+ "▁сот руд",
+ "▁tr ava",
+ "▁tra va",
+ "▁trav a",
+ "▁хо зяй",
+ "▁U ruguay",
+ "▁s parse",
+ "▁sp arse",
+ "▁по ле",
+ "▁пол е",
+ "▁myst ery",
+ "▁myster y",
+ "▁M ang",
+ "▁Man g",
+ "▁Ma ng",
+ "reg istr",
+ "▁CG Float",
+ "▁sub mission",
+ "▁subm ission",
+ "ва на",
+ "ван а",
+ "в ана",
+ "▁\" :",
+ "▁ \":",
+ "▁Trace back",
+ "▁P it",
+ "▁Pi t",
+ "▁E hr",
+ "▁с ра",
+ "▁Graph ics",
+ "▁ Graphics",
+ "Up dated",
+ "Update d",
+ "▁sv ensk",
+ "▁sp acing",
+ "▁spac ing",
+ "tr itt",
+ "tri tt",
+ "t ritt",
+ "▁Gu inea",
+ "▁Fran ça",
+ "▁Fr ança",
+ "As soci",
+ "Ass oci",
+ "▁T ová",
+ "▁To vá",
+ "st ab",
+ "sta b",
+ "s tab",
+ "▁Le arning",
+ "▁Lear ning",
+ "▁B right",
+ "▁Br ight",
+ "▁Brig ht",
+ "ś c",
+ "▁id ő",
+ "}} _{\\",
+ "}}_{ \\",
+ "}}_ {\\",
+ "} }_{\\",
+ "▁dro ite",
+ "▁droit e",
+ "▁ra ising",
+ "get ting",
+ "yth m",
+ "yt hm",
+ "y thm",
+ "on yme",
+ "ony me",
+ "onym e",
+ "ż s",
+ "▁b lah",
+ "▁bl ah",
+ "▁bla h",
+ "▁ blah",
+ "Tag Name",
+ "Vert ical",
+ "▁a per",
+ "▁ap er",
+ "▁ aper",
+ "post gresql",
+ "▁Hand le",
+ "▁ Handle",
+ "ze w",
+ "z ew",
+ "▁sk ulle",
+ "▁op ere",
+ "▁oper e",
+ "lay ers",
+ "layer s",
+ "▁pos sono",
+ "▁poss ono",
+ "▁re late",
+ "▁rel ate",
+ "▁rela te",
+ "ą c",
+ "▁M ih",
+ "▁Mi h",
+ "â ge",
+ "▁Ś wi",
+ "iss es",
+ "isse s",
+ "▁serv let",
+ "▁ servlet",
+ "Lo s",
+ "L os",
+ "▁Ad vanced",
+ "▁Adv anced",
+ "at ica",
+ "ati ca",
+ "atic a",
+ "▁c ed",
+ "▁ce d",
+ "▁ ced",
+ "▁element os",
+ "ро на",
+ "рон а",
+ "р она",
+ "ik s",
+ "i ks",
+ "ar f",
+ "a rf",
+ "ar iat",
+ "ari at",
+ "aria t",
+ "M obile",
+ "ag ua",
+ "agu a",
+ "▁t imp",
+ "▁tim p",
+ "▁ti mp",
+ "▁Com ité",
+ "▁comb ining",
+ "▁combin ing",
+ "wo hl",
+ "w ohl",
+ "▁Stud y",
+ "▁Stu dy",
+ "co ordinate",
+ "▁recommend ation",
+ "▁transform ations",
+ "▁transformation s",
+ "un til",
+ "unt il",
+ "u ntil",
+ "bound ed",
+ "b ounded",
+ "▁и зу",
+ "▁из у",
+ "han ced",
+ "h anced",
+ "▁во про",
+ "▁P rés",
+ "▁Pr és",
+ "▁co ord",
+ "xt y",
+ "x ty",
+ "▁$ ,",
+ "▁ $,",
+ "▁champion s",
+ "▁champ ions",
+ "De n",
+ "D en",
+ "M il",
+ "(' ,",
+ "( ',",
+ "▁Pre is",
+ "▁e igh",
+ "▁eig h",
+ "▁mark ers",
+ "▁marker s",
+ "▁gew esen",
+ "ät ten",
+ "ätt en",
+ "ätte n",
+ "▁p ione",
+ "▁pi one",
+ "m v",
+ "▁ј у",
+ "▁ ју",
+ "zeich nis",
+ "ho ff",
+ "hof f",
+ "h off",
+ "New s",
+ "Ne ws",
+ "▁Stanis ław",
+ "▁Br andenburg",
+ "▁Brand enburg",
+ "▁Fe uer",
+ "= &",
+ "же т",
+ "ж ет",
+ "▁N eil",
+ "▁Ne il",
+ "▁w irk",
+ "▁wir k",
+ "▁soci età",
+ "▁sp are",
+ "▁civil e",
+ "▁civ ile",
+ "sp rach",
+ "spr ach",
+ "▁d isse",
+ "▁dis se",
+ "▁diss e",
+ "▁g ates",
+ "▁ga tes",
+ "▁gate s",
+ "▁gat es",
+ "▁a nom",
+ "▁an om",
+ "▁ano m",
+ "▁Федера ции",
+ "▁t ib",
+ "▁ti b",
+ "▁f útbol",
+ "▁Wikip ed",
+ "ia te",
+ "iat e",
+ "i ate",
+ "Fr ont",
+ "F ront",
+ "▁c raw",
+ "▁cr aw",
+ "▁cra w",
+ "▁R ak",
+ "▁Ra k",
+ "▁з ву",
+ "▁зв у",
+ "st reet",
+ "stre et",
+ "▁A gency",
+ "▁Ag ency",
+ "ва ло",
+ "вал о",
+ "▁Ра с",
+ "▁mk dir",
+ "ac ję",
+ "▁sh ares",
+ "▁share s",
+ "St ory",
+ "Sto ry",
+ "▁re marks",
+ "▁rem arks",
+ "▁remark s",
+ "▁key words",
+ "▁keyword s",
+ "Bo b",
+ "B ob",
+ "▁t oe",
+ "▁to e",
+ "▁V itt",
+ "▁Vi tt",
+ "▁Vit t",
+ "▁r hs",
+ "▁rh s",
+ "RO P",
+ "R OP",
+ "or is",
+ "ori s",
+ "o ris",
+ "/ @",
+ "си и",
+ "▁tra verse",
+ "▁travers e",
+ "▁refer encing",
+ "pr äsident",
+ "ro ng",
+ "ron g",
+ "r ong",
+ "') :",
+ "' ):",
+ "at ies",
+ "ati es",
+ "atie s",
+ "a ties",
+ "A W",
+ "Out let",
+ "▁é vol",
+ "▁év ol",
+ "ik es",
+ "ike s",
+ "i kes",
+ "▁environment al",
+ "ic um",
+ "▁L ied",
+ "▁Li ed",
+ "▁Lie d",
+ "▁w arn",
+ "▁war n",
+ "▁wa rn",
+ "▁ warn",
+ "▁But ler",
+ "▁% ),",
+ "▁%) ,",
+ "▁Zeit schrift",
+ "▁Mon tr",
+ "▁Mont r",
+ "ва жа",
+ "▁Mer cur",
+ "je kte",
+ "jekt e",
+ "me ter",
+ "met er",
+ "m eter",
+ "du cation",
+ "▁att ributed",
+ "▁attribute d",
+ "* $",
+ "▁un f",
+ "▁Vert rag",
+ "zi en",
+ "zie n",
+ "z ien",
+ "▁Р об",
+ "▁Ро б",
+ "li ces",
+ "lic es",
+ "lice s",
+ "l ices",
+ "pp ly",
+ "p ply",
+ "an sen",
+ "ans en",
+ "anse n",
+ "▁ze it",
+ "▁ zeit",
+ "▁im mense",
+ "▁imm ense",
+ "▁lut ego",
+ "▁Bul gar",
+ "▁Bulg ar",
+ "▁mi embros",
+ "▁На циональ",
+ "▁Al low",
+ "▁All ow",
+ "▁ Allow",
+ "▁ang lès",
+ "д ви",
+ "▁T oy",
+ "▁To y",
+ "ту а",
+ "▁y ard",
+ "▁ya rd",
+ "▁ yard",
+ "( %",
+ "is ser",
+ "iss er",
+ "isse r",
+ "▁g olf",
+ "▁gol f",
+ "▁Uk rain",
+ "▁h osp",
+ "▁ho sp",
+ "▁hos p",
+ "In clude",
+ "▁L isa",
+ "▁Li sa",
+ "▁Lis a",
+ "▁c sal",
+ "▁cs al",
+ "▁M ira",
+ "▁Mi ra",
+ "▁Mir a",
+ "rec ogn",
+ "▁К е",
+ "▁h itting",
+ "▁hit ting",
+ "коно мі",
+ "коном і",
+ "▁Tourn ament",
+ "LO AD",
+ "▁Guard ian",
+ "▁da her",
+ "▁dah er",
+ "▁time zone",
+ "▁tom cat",
+ "▁ tomcat",
+ "▁success or",
+ "▁succ essor",
+ "▁successo r",
+ "▁V oid",
+ "▁Vo id",
+ "▁come ç",
+ "▁convert s",
+ "▁conver ts",
+ "äch s",
+ "ä chs",
+ "os ex",
+ "ose x",
+ "o sex",
+ "xe lles",
+ "x elles",
+ "as er",
+ "ase r",
+ "a ser",
+ "▁É s",
+ "▁m ou",
+ "▁mo u",
+ "▁u ng",
+ "▁un g",
+ "▁ ung",
+ "▁or igen",
+ "▁orig en",
+ "▁C row",
+ "▁Cr ow",
+ "▁Cro w",
+ "▁E rd",
+ "▁Er d",
+ "▁s ieben",
+ "▁si eben",
+ "▁sie ben",
+ "lu a",
+ "l ua",
+ "▁B B",
+ "▁ BB",
+ "RE NT",
+ "R ENT",
+ "▁pił kar",
+ "▁mar que",
+ "▁marqu e",
+ "▁La bour",
+ "▁Lab our",
+ "vi ders",
+ "vider s",
+ "vid ers",
+ "v iders",
+ "▁ex empl",
+ "▁exem pl",
+ "So und",
+ "S ound",
+ "▁W ass",
+ "▁Was s",
+ "▁Wa ss",
+ "arr ison",
+ "▁те чение",
+ "▁Of icina",
+ "▁D aw",
+ "▁Da w",
+ "▁K auf",
+ "▁Ka uf",
+ "én t",
+ "é nt",
+ "és ő",
+ "▁= \"",
+ "▁ =\"",
+ "▁k at",
+ "▁ka t",
+ "di ction",
+ "dict ion",
+ "dic tion",
+ "d iction",
+ "▁V oll",
+ "▁Vol l",
+ "▁Vo ll",
+ "▁high way",
+ "J ames",
+ "ze uge",
+ "zeug e",
+ "▁mod elo",
+ "▁model o",
+ "▁mode lo",
+ "Th row",
+ "▁F orum",
+ "▁For um",
+ "▁Fo rum",
+ "(\" @",
+ "▁en fer",
+ "▁enf er",
+ "▁спе циаль",
+ "Number s",
+ "Num bers",
+ "▁B inary",
+ "▁Bin ary",
+ "▁ Binary",
+ "▁Martí nez",
+ "▁Martín ez",
+ "▁St ato",
+ "▁Stat o",
+ "▁Sta to",
+ "▁fest iv",
+ "▁k atol",
+ "▁ka tol",
+ "▁kat ol",
+ "▁А б",
+ "▁lim itation",
+ "▁limit ation",
+ "▁S TR",
+ "▁ST R",
+ "▁ STR",
+ "▁О фициаль",
+ "ip es",
+ "ipe s",
+ "i pes",
+ "▁I sn",
+ "▁Is n",
+ "▁rule d",
+ "▁ru led",
+ "▁c í",
+ "▁ cí",
+ "ge ber",
+ "geb er",
+ "▁lavor o",
+ "▁lav oro",
+ "▁parenthes es",
+ "о з",
+ "▁équip es",
+ "▁équipe s",
+ "▁efficient ly",
+ "▁Per iod",
+ "▁ Period",
+ "▁Reg arding",
+ "le af",
+ "lea f",
+ "▁similar ity",
+ "▁gest ure",
+ "data b",
+ "da tab",
+ "dat ab",
+ "▁term inate",
+ "▁termin ate",
+ "▁sem antics",
+ "▁semantic s",
+ "▁A lo",
+ "▁Al o",
+ "▁c ig",
+ "▁ci g",
+ "▁Open GL",
+ "▁heut igen",
+ "xa ml",
+ "x aml",
+ "▁frequ encies",
+ ")} .",
+ ") }.",
+ "▁threaten ed",
+ "▁threat ened",
+ "ти к",
+ "▁cal cio",
+ "▁calci o",
+ "▁calc io",
+ "▁R iemann",
+ "▁Ri emann",
+ "sl ug",
+ "▁F inale",
+ "▁Fin ale",
+ "▁Final e",
+ "L R",
+ "▁Der by",
+ "▁о ще",
+ "▁de viation",
+ "▁dev iation",
+ "▁devi ation",
+ "äch en",
+ "äche n",
+ "ä chen",
+ "▁C ris",
+ "▁Cr is",
+ "но во",
+ "нов о",
+ "н ово",
+ "▁сто лі",
+ "▁re lev",
+ "▁rel ev",
+ "▁splend id",
+ "▁у чё",
+ "er ving",
+ "erv ing",
+ "ga ble",
+ "g able",
+ "▁général e",
+ "▁généra le",
+ "po m",
+ "p om",
+ "▁Che ers",
+ "▁impr ison",
+ "▁in dent",
+ "▁ind ent",
+ "▁inde nt",
+ "▁ indent",
+ "▁anal yz",
+ "▁analy z",
+ "▁re vert",
+ "▁rev ert",
+ "▁reve rt",
+ "▁rever t",
+ "ér er",
+ "ére r",
+ "é rer",
+ "▁ph ases",
+ "▁phase s",
+ "First Name",
+ "▁m ig",
+ "▁mi g",
+ "▁dist urb",
+ "▁mi xture",
+ "▁) {",
+ "▁ ){",
+ "int ure",
+ "▁T ried",
+ "▁Tr ied",
+ "▁Tri ed",
+ "▁soon er",
+ "▁p els",
+ "▁pe ls",
+ "▁pel s",
+ "▁ét abl",
+ "et ro",
+ "etr o",
+ "it ie",
+ "iti e",
+ "▁quart ier",
+ "▁го во",
+ "▁г ово",
+ "▁ гово",
+ "▁vá ros",
+ "uf e",
+ "u fe",
+ "he ten",
+ "het en",
+ "h eten",
+ "хо м",
+ "х ом",
+ "▁so ap",
+ "▁ soap",
+ "ut ors",
+ "uto rs",
+ "utor s",
+ "▁d uch",
+ "▁du ch",
+ "▁duc h",
+ "syn tax",
+ "s yntax",
+ "▁tr ibe",
+ "▁tri be",
+ "▁trib e",
+ "▁ch ante",
+ "▁chant e",
+ "Tr i",
+ "T ri",
+ "▁M ate",
+ "▁Ma te",
+ "▁Mat e",
+ "qu ality",
+ "qual ity",
+ "uo la",
+ "u ola",
+ "=\" .",
+ "= \".",
+ "ch k",
+ "▁в сі",
+ "▁вс і",
+ "▁prze ci",
+ "▁M eteor",
+ "▁Met eor",
+ "▁scatter ed",
+ "Pl us",
+ "P lus",
+ "tr ad",
+ "tra d",
+ "t rad",
+ "▁stack overflow",
+ "▁ stackoverflow",
+ "▁re tra",
+ "▁r etra",
+ "▁ret ra",
+ "▁retr a",
+ "▁éd itions",
+ "▁édition s",
+ "▁s ain",
+ "▁sa in",
+ "cri be",
+ "cr ibe",
+ "ig non",
+ "ign on",
+ "uc ker",
+ "uck er",
+ "u cker",
+ "▁ма ло",
+ "▁ten ir",
+ "▁ex ports",
+ "▁export s",
+ "▁ exports",
+ "▁aux ili",
+ "▁] ]",
+ "▁ ]]",
+ "▁C BS",
+ "un iform",
+ "uni form",
+ "▁period ic",
+ "ag rant",
+ "agr ant",
+ "▁em ple",
+ "▁emp le",
+ "W il",
+ "▁f res",
+ "▁fr es",
+ "▁fre s",
+ "▁str utt",
+ "▁stru tt",
+ "▁с віт",
+ "▁сві т",
+ "▁be tre",
+ "▁bet re",
+ "▁объ ек",
+ "ти ся",
+ "▁b isher",
+ "▁bis her",
+ "ba um",
+ "bau m",
+ "b aum",
+ "is hi",
+ "ish i",
+ "▁Gaz ette",
+ "background Color",
+ "j l",
+ "▁f iel",
+ "▁fi el",
+ "▁пре ма",
+ "▁protagon ista",
+ "▁Muham mad",
+ "▁sim ulate",
+ "▁H ook",
+ "▁Ho ok",
+ "fe st",
+ "f est",
+ "▁сво их",
+ "▁свои х",
+ "Se nder",
+ "Send er",
+ "S ender",
+ "▁list ened",
+ "▁listen ed",
+ "▁liste ned",
+ "ж і",
+ "je st",
+ "jes t",
+ "j est",
+ "ko rd",
+ "kor d",
+ "k ord",
+ "Cho ice",
+ "▁hoof d",
+ "redu cible",
+ "hp p",
+ "h pp",
+ "▁W u",
+ "š i",
+ "▁M arse",
+ "▁Mar se",
+ "▁Mars e",
+ "▁s oir",
+ "▁so ir",
+ "we sten",
+ "west en",
+ "w esten",
+ "em os",
+ "emo s",
+ "e mos",
+ "▁D uc",
+ "▁Du c",
+ "▁amer ik",
+ "| }{",
+ "▁G ul",
+ "▁Gu l",
+ "▁Sp rache",
+ "▁Spr ache",
+ "▁mis match",
+ "▁mism atch",
+ "Sc al",
+ "S cal",
+ "P ixel",
+ "E F",
+ "▁S ep",
+ "▁Se p",
+ "▁powie cie",
+ "ur k",
+ "▁Nap oli",
+ "▁neighbour hood",
+ "сто ян",
+ "стоя н",
+ "▁search es",
+ "yr us",
+ "y rus",
+ "пе т",
+ "п ет",
+ "He lp",
+ "Hel p",
+ "pon t",
+ "po nt",
+ "p ont",
+ "▁Or ient",
+ "▁Ori ent",
+ "▁Alf onso",
+ "▁monitor ing",
+ "ia o",
+ "i ao",
+ "éd é",
+ "▁Cés ar",
+ "ше е",
+ "Sh ift",
+ "su it",
+ "s uit",
+ "code d",
+ "co ded",
+ "cod ed",
+ "c oded",
+ "но то",
+ "▁Par ti",
+ "▁Part i",
+ "▁la sci",
+ "▁las ci",
+ "▁aw esome",
+ "us ta",
+ "ust a",
+ "u sta",
+ "▁С ове",
+ "▁Со ве",
+ "▁Сов е",
+ "▁F land",
+ "▁Fl and",
+ "oo m",
+ "o om",
+ "▁de vi",
+ "▁dev i",
+ "eng elsk",
+ "end um",
+ "▁Pa scal",
+ "▁Pas cal",
+ "▁B ind",
+ "▁Bi nd",
+ "▁Bin d",
+ "▁ Bind",
+ "▁sigu ientes",
+ "▁siguiente s",
+ "J B",
+ "▁Peters burg",
+ "▁incorrect ly",
+ "▁B ash",
+ "▁Bas h",
+ "▁Ba sh",
+ "▁pe los",
+ "▁pel os",
+ "▁pelo s",
+ "▁zes po",
+ "NS URL",
+ "▁př ek",
+ "▁Cr ime",
+ "na ch",
+ "n ach",
+ "▁th rust",
+ "▁thr ust",
+ "▁Cult ura",
+ "W F",
+ "▁S olo",
+ "▁So lo",
+ "▁Sol o",
+ "▁in vas",
+ "▁inv as",
+ "▁individ ually",
+ "▁individual ly",
+ "ib m",
+ "i bm",
+ "▁et apa",
+ "▁hand ed",
+ "▁han ded",
+ "▁where ver",
+ "▁interpol ation",
+ "▁mus ée",
+ "▁C NN",
+ "id ia",
+ "idi a",
+ "i dia",
+ "ńst w",
+ "▁pr zew",
+ "▁prze w",
+ "▁prz ew",
+ "ug hing",
+ "ugh ing",
+ "▁a ctors",
+ "▁act ors",
+ "▁actor s",
+ "▁Ori ental",
+ "▁Orient al",
+ "▁conven ience",
+ "▁mi asta",
+ "br ains",
+ "bra ins",
+ "▁ме ся",
+ "▁inf atti",
+ "▁All Movie",
+ "▁crit ique",
+ "▁success o",
+ "▁succ esso",
+ "anc ouver",
+ "▁f á",
+ "ъл гар",
+ "▁wis dom",
+ "▁Pho enix",
+ "ho le",
+ "hol e",
+ "h ole",
+ "▁inform ación",
+ "▁Air lines",
+ "▁Airl ines",
+ ". «",
+ "mo rt",
+ "mor t",
+ "m ort",
+ "user Id",
+ "▁*/ \r",
+ "▁C ongo",
+ "▁Con go",
+ "▁Cong o",
+ "▁\" `",
+ "▁ \"`",
+ "co rr",
+ "cor r",
+ "c orr",
+ "▁problem as",
+ "▁proble mas",
+ "▁problema s",
+ "▁probl emas",
+ "▁b ib",
+ "▁bi b",
+ "▁ bib",
+ "▁póź niej",
+ "▁file Name",
+ "▁ fileName",
+ "zo tt",
+ "z ott",
+ "ma cht",
+ "mac ht",
+ "m acht",
+ "▁Ul rich",
+ "C y",
+ "end point",
+ "▁she ep",
+ "▁i bn",
+ "Fe ed",
+ "F eed",
+ "▁sympath y",
+ "▁I b",
+ "▁territ orial",
+ "ra ting",
+ "rat ing",
+ "r ating",
+ "да ми",
+ "▁d st",
+ "▁ds t",
+ "▁ dst",
+ "у ю",
+ "ah o",
+ "a ho",
+ "▁s ug",
+ "▁su g",
+ "em ia",
+ "emi a",
+ "▁t ed",
+ "▁te d",
+ "▁ ted",
+ "▁A pi",
+ "▁Ap i",
+ "▁ Api",
+ "▁R ica",
+ "▁Ric a",
+ "▁Ri ca",
+ "▁M R",
+ "▁ MR",
+ "ński m",
+ "ń skim",
+ "▁V oor",
+ "▁Vo or",
+ "▁de vil",
+ "▁dev il",
+ "▁devi l",
+ "▁Ф о",
+ "▁N är",
+ "▁Nä r",
+ "▁... )",
+ "▁.. .)",
+ "▁ ...)",
+ "▁v ois",
+ "▁vo is",
+ "▁ab bre",
+ "▁abb re",
+ "▁M änner",
+ "xim o",
+ "xi mo",
+ "x imo",
+ "▁intellect ual",
+ "▁t ales",
+ "▁tal es",
+ "▁ta les",
+ "▁tale s",
+ "sim ilar",
+ "ne um",
+ "▁O rig",
+ "▁Or ig",
+ "▁Ori g",
+ "▁po stal",
+ "▁pos tal",
+ "▁post al",
+ "▁h vor",
+ "▁ident ification",
+ "▁identific ation",
+ "▁О д",
+ "ue sto",
+ "ues to",
+ "uest o",
+ "u esto",
+ "▁. ./",
+ "▁.. /",
+ "▁ ../",
+ "▁b ir",
+ "▁bi r",
+ "▁ bir",
+ "▁Л он",
+ "▁Ло н",
+ "▁es empio",
+ "▁E ing",
+ "▁Ein g",
+ "Exp and",
+ "▁PR IMARY",
+ "▁J in",
+ "▁Ji n",
+ "▁vš ak",
+ "ours es",
+ "ourse s",
+ "▁Be tty",
+ "▁Bet ty",
+ "▁W M",
+ "▁ WM",
+ "▁fl ask",
+ "▁fla sk",
+ "hl en",
+ "h len",
+ "▁A del",
+ "▁Ad el",
+ "lar avel",
+ "▁д ет",
+ "▁де т",
+ "сь кою",
+ "сько ю",
+ "▁M undo",
+ "▁Mun do",
+ "ic zn",
+ "icz n",
+ "ifi é",
+ "▁М ор",
+ "▁Мо р",
+ "▁д рев",
+ "▁др ев",
+ "Date Format",
+ "сь ким",
+ "ськ им",
+ "▁d ated",
+ "▁da ted",
+ "▁dat ed",
+ "▁date d",
+ "▁ dated",
+ "ко ли",
+ "кол и",
+ "▁результа те",
+ "\\) .",
+ "\\ ).",
+ "▁delay ed",
+ "so und",
+ "s ound",
+ "▁Ма к",
+ "▁\" ...",
+ "▁\". ..",
+ "▁b innen",
+ "▁bin nen",
+ "▁фа куль",
+ "▁pol ygon",
+ "▁poly gon",
+ "▁eg gs",
+ "▁egg s",
+ "At IndexPath",
+ "AtIndex Path",
+ "мен таль",
+ "мент аль",
+ "мента ль",
+ "▁in cred",
+ "▁incre d",
+ "▁inc red",
+ "ch unk",
+ "web driver",
+ "▁с вобо",
+ "▁сво бо",
+ "▁mi ędzy",
+ "Rece ived",
+ "Receive d",
+ "▁M onde",
+ "▁Mon de",
+ "▁Mo nde",
+ "▁Mond e",
+ "▁J Query",
+ "Bu tt",
+ "But t",
+ "B utt",
+ "▁P DO",
+ "▁for ec",
+ "▁fo rec",
+ "▁fore c",
+ "▁discipl ine",
+ "ch ev",
+ "che v",
+ "на т",
+ "н ат",
+ "▁re dis",
+ "▁red is",
+ "▁hun ting",
+ "▁al k",
+ "▁ alk",
+ "▁proof s",
+ "PR I",
+ "P RI",
+ "▁c hip",
+ "▁ch ip",
+ "▁chi p",
+ "és ie",
+ "▁H O",
+ "▁ HO",
+ "▁r ug",
+ "▁ru g",
+ "▁ rug",
+ "zo s",
+ "z os",
+ "▁s orte",
+ "▁sort e",
+ "▁sor te",
+ "▁ze igt",
+ "▁Phys ics",
+ "leg te",
+ "legt e",
+ "▁proport ional",
+ "▁proportion al",
+ "▁tool bar",
+ "ve ment",
+ "v ement",
+ "not in",
+ "▁prv ní",
+ "bl ah",
+ "bla h",
+ "b lah",
+ "▁prés ence",
+ "▁l loc",
+ "▁ll oc",
+ "▁lí der",
+ "▁Ac cept",
+ "▁ Accept",
+ "▁Al ways",
+ "▁\" {",
+ "▁divers i",
+ "▁diver si",
+ "ik or",
+ "iko r",
+ "i kor",
+ "Per iod",
+ "ж ён",
+ "▁Al liance",
+ "▁All iance",
+ "▁re lay",
+ "▁rel ay",
+ "▁rela y",
+ "Br o",
+ "B ro",
+ "jö n",
+ "j ön",
+ "▁B aud",
+ "▁Ba ud",
+ "▁Bau d",
+ "▁B ian",
+ "▁Bi an",
+ "') [",
+ "' )[",
+ "чи в",
+ "▁P oss",
+ "▁Po ss",
+ "▁Pos s",
+ "▁Mitg lieder",
+ "▁Mitglied er",
+ "▁n ev",
+ "▁ne v",
+ "Dan iel",
+ "▁t ends",
+ "▁ten ds",
+ "▁tend s",
+ "▁compag nie",
+ "▁liv res",
+ "▁livre s",
+ "lu b",
+ "l ub",
+ "▁ ▁",
+ "▁▁ ▁▁",
+ "▁▁▁ ▁",
+ "▁ ▁▁▁",
+ "▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁",
+ "▁▁▁▁ ▁",
+ "▁▁▁ ▁▁",
+ "▁ ▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁",
+ "▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁",
+ "▁ ▁▁",
+ "▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/out/pretrain/tinyllama/2408_full/final/tokenizer_config.json b/out/pretrain/tinyllama/2408_full/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ef41cbc275000b29afe157ba487f0530b8c26dc
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_full/final/tokenizer_config.json
@@ -0,0 +1,35 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "bos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "clean_up_tokenization_spaces": false,
+ "eos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "legacy": false,
+ "model_max_length": 1000000000000000019884624838656,
+ "pad_token": null,
+ "padding_side": "right",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizer",
+ "unk_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/out/pretrain/tinyllama/2408_lr4e-5/final/config.json b/out/pretrain/tinyllama/2408_lr4e-5/final/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..6a20305540fec9201e5c28b99dcd32c1000201fd
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_lr4e-5/final/config.json
@@ -0,0 +1,24 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "hidden_act": "silu",
+ "hidden_size": 2048,
+ "initializer_range": 0.02,
+ "intermediate_size": 5632,
+ "max_position_embeddings": 2048,
+ "model_type": "llama",
+ "num_attention_heads": 32,
+ "num_hidden_layers": 22,
+ "num_key_value_heads": 4,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-05,
+ "rope_scaling": null,
+ "tie_word_embeddings": false,
+ "torch_dtype": "float32",
+ "transformers_version": "4.31.0.dev0",
+ "use_cache": true,
+ "vocab_size": 32000
+}
diff --git a/out/pretrain/tinyllama/2408_lr4e-5/final/generation_config.json b/out/pretrain/tinyllama/2408_lr4e-5/final/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..89c1930ccf07b1ba0c1bf146b2ad2d2666761dfb
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_lr4e-5/final/generation_config.json
@@ -0,0 +1,7 @@
+{
+ "bos_token_id": 1,
+ "eos_token_id": 2,
+ "pad_token_id": 0,
+ "max_length": 2048,
+ "transformers_version": "4.31.0.dev0"
+}
diff --git a/out/pretrain/tinyllama/2408_lr4e-5/final/hyperparameters.yaml b/out/pretrain/tinyllama/2408_lr4e-5/final/hyperparameters.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..01cecfadd0c25e6bfa9ea8eca0b7cad30aa3abb2
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_lr4e-5/final/hyperparameters.yaml
@@ -0,0 +1,44 @@
+model_name: tiny-llama-1.1b
+out_dir: out/pretrain/tinyllama/2408_lr4e-5
+precision: bf16-mixed
+initial_checkpoint_dir: out/pretrain/tinyllama/2407_full/final
+resume: false
+data:
+ class_path: litgpt.data.Arxiv
+ init_args:
+ data_path: litgpt/data/arxiv
+ seed: 42
+ num_workers: 0
+ use_starcoder: true
+data_dir: litgpt/data/arxiv/2408
+train:
+ save_interval: 100
+ log_interval: 1
+ global_batch_size: 512
+ micro_batch_size: 4
+ lr_warmup_steps: 20
+ max_tokens: 177209344
+ max_seq_length: 2048
+ max_norm: 1.0
+ min_lr: 4.0e-05
+eval:
+ interval: 50
+ max_iters: 200
+ initial_validation: true
+ final_validation: true
+ evaluate_example: first
+log: {}
+optimizer:
+ class_path: torch.optim.AdamW
+ init_args:
+ lr: 4.0e-05
+ weight_decay: 0.1
+ betas:
+ - 0.9
+ - 0.95
+devices: auto
+num_nodes: 1
+tokenizer_dir: checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+logger_name: tensorboard
+seed: 42
+ppl: false
diff --git a/out/pretrain/tinyllama/2408_lr4e-5/final/model_config.yaml b/out/pretrain/tinyllama/2408_lr4e-5/final/model_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..d31881309289cb59520314f7da89a8ef38f3c77e
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_lr4e-5/final/model_config.yaml
@@ -0,0 +1,44 @@
+attention_logit_softcapping: null
+attention_scores_scalar: null
+attn_bias: false
+bias: false
+block_size: 2048
+final_logit_softcapping: null
+gelu_approximate: none
+head_size: 64
+hf_config:
+ name: TinyLlama-1.1B-intermediate-step-1431k-3T
+ org: TinyLlama
+intermediate_size: 5632
+lm_head_bias: false
+mlp_class_name: LLaMAMLP
+moe_intermediate_size: null
+n_embd: 2048
+n_expert: 0
+n_expert_per_token: 0
+n_head: 32
+n_layer: 22
+n_query_groups: 4
+name: tiny-llama-1.1b
+norm_1: true
+norm_2: true
+norm_class_name: RMSNorm
+norm_eps: 1.0e-05
+norm_qk: false
+norm_qk_type: default
+padded_vocab_size: 32000
+padding_multiple: 64
+parallel_residual: false
+post_attention_norm: false
+post_mlp_norm: false
+rope_adjustments: null
+rope_base: 10000
+rope_condense_ratio: 1
+rope_indices: null
+rope_local_base_freq: null
+rotary_percentage: 1.0
+scale_embeddings: false
+shared_attention_norm: false
+sliding_window_indices: null
+sliding_window_size: null
+vocab_size: 32000
diff --git a/out/pretrain/tinyllama/2408_lr4e-5/final/tokenizer.json b/out/pretrain/tinyllama/2408_lr4e-5/final/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a6e931b92caff4c79c5c56282f1e89569a0ae558
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_lr4e-5/final/tokenizer.json
@@ -0,0 +1,93391 @@
+{
+ "version": "1.0",
+ "truncation": null,
+ "padding": null,
+ "added_tokens": [
+ {
+ "id": 0,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 1,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ },
+ {
+ "id": 2,
+ "content": "",
+ "single_word": false,
+ "lstrip": false,
+ "rstrip": false,
+ "normalized": false,
+ "special": true
+ }
+ ],
+ "normalizer": {
+ "type": "Sequence",
+ "normalizers": [
+ {
+ "type": "Prepend",
+ "prepend": "▁"
+ },
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": " "
+ },
+ "content": "▁"
+ }
+ ]
+ },
+ "pre_tokenizer": null,
+ "post_processor": {
+ "type": "TemplateProcessing",
+ "single": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ }
+ ],
+ "pair": [
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 0
+ }
+ },
+ {
+ "Sequence": {
+ "id": "A",
+ "type_id": 0
+ }
+ },
+ {
+ "SpecialToken": {
+ "id": "",
+ "type_id": 1
+ }
+ },
+ {
+ "Sequence": {
+ "id": "B",
+ "type_id": 1
+ }
+ }
+ ],
+ "special_tokens": {
+ "": {
+ "id": "",
+ "ids": [
+ 1
+ ],
+ "tokens": [
+ ""
+ ]
+ }
+ }
+ },
+ "decoder": {
+ "type": "Sequence",
+ "decoders": [
+ {
+ "type": "Replace",
+ "pattern": {
+ "String": "▁"
+ },
+ "content": " "
+ },
+ {
+ "type": "ByteFallback"
+ },
+ {
+ "type": "Fuse"
+ },
+ {
+ "type": "Strip",
+ "content": " ",
+ "start": 1,
+ "stop": 0
+ }
+ ]
+ },
+ "model": {
+ "type": "BPE",
+ "dropout": null,
+ "unk_token": "",
+ "continuing_subword_prefix": null,
+ "end_of_word_suffix": null,
+ "fuse_unk": true,
+ "byte_fallback": true,
+ "vocab": {
+ "": 0,
+ "": 1,
+ "": 2,
+ "<0x00>": 3,
+ "<0x01>": 4,
+ "<0x02>": 5,
+ "<0x03>": 6,
+ "<0x04>": 7,
+ "<0x05>": 8,
+ "<0x06>": 9,
+ "<0x07>": 10,
+ "<0x08>": 11,
+ "<0x09>": 12,
+ "<0x0A>": 13,
+ "<0x0B>": 14,
+ "<0x0C>": 15,
+ "<0x0D>": 16,
+ "<0x0E>": 17,
+ "<0x0F>": 18,
+ "<0x10>": 19,
+ "<0x11>": 20,
+ "<0x12>": 21,
+ "<0x13>": 22,
+ "<0x14>": 23,
+ "<0x15>": 24,
+ "<0x16>": 25,
+ "<0x17>": 26,
+ "<0x18>": 27,
+ "<0x19>": 28,
+ "<0x1A>": 29,
+ "<0x1B>": 30,
+ "<0x1C>": 31,
+ "<0x1D>": 32,
+ "<0x1E>": 33,
+ "<0x1F>": 34,
+ "<0x20>": 35,
+ "<0x21>": 36,
+ "<0x22>": 37,
+ "<0x23>": 38,
+ "<0x24>": 39,
+ "<0x25>": 40,
+ "<0x26>": 41,
+ "<0x27>": 42,
+ "<0x28>": 43,
+ "<0x29>": 44,
+ "<0x2A>": 45,
+ "<0x2B>": 46,
+ "<0x2C>": 47,
+ "<0x2D>": 48,
+ "<0x2E>": 49,
+ "<0x2F>": 50,
+ "<0x30>": 51,
+ "<0x31>": 52,
+ "<0x32>": 53,
+ "<0x33>": 54,
+ "<0x34>": 55,
+ "<0x35>": 56,
+ "<0x36>": 57,
+ "<0x37>": 58,
+ "<0x38>": 59,
+ "<0x39>": 60,
+ "<0x3A>": 61,
+ "<0x3B>": 62,
+ "<0x3C>": 63,
+ "<0x3D>": 64,
+ "<0x3E>": 65,
+ "<0x3F>": 66,
+ "<0x40>": 67,
+ "<0x41>": 68,
+ "<0x42>": 69,
+ "<0x43>": 70,
+ "<0x44>": 71,
+ "<0x45>": 72,
+ "<0x46>": 73,
+ "<0x47>": 74,
+ "<0x48>": 75,
+ "<0x49>": 76,
+ "<0x4A>": 77,
+ "<0x4B>": 78,
+ "<0x4C>": 79,
+ "<0x4D>": 80,
+ "<0x4E>": 81,
+ "<0x4F>": 82,
+ "<0x50>": 83,
+ "<0x51>": 84,
+ "<0x52>": 85,
+ "<0x53>": 86,
+ "<0x54>": 87,
+ "<0x55>": 88,
+ "<0x56>": 89,
+ "<0x57>": 90,
+ "<0x58>": 91,
+ "<0x59>": 92,
+ "<0x5A>": 93,
+ "<0x5B>": 94,
+ "<0x5C>": 95,
+ "<0x5D>": 96,
+ "<0x5E>": 97,
+ "<0x5F>": 98,
+ "<0x60>": 99,
+ "<0x61>": 100,
+ "<0x62>": 101,
+ "<0x63>": 102,
+ "<0x64>": 103,
+ "<0x65>": 104,
+ "<0x66>": 105,
+ "<0x67>": 106,
+ "<0x68>": 107,
+ "<0x69>": 108,
+ "<0x6A>": 109,
+ "<0x6B>": 110,
+ "<0x6C>": 111,
+ "<0x6D>": 112,
+ "<0x6E>": 113,
+ "<0x6F>": 114,
+ "<0x70>": 115,
+ "<0x71>": 116,
+ "<0x72>": 117,
+ "<0x73>": 118,
+ "<0x74>": 119,
+ "<0x75>": 120,
+ "<0x76>": 121,
+ "<0x77>": 122,
+ "<0x78>": 123,
+ "<0x79>": 124,
+ "<0x7A>": 125,
+ "<0x7B>": 126,
+ "<0x7C>": 127,
+ "<0x7D>": 128,
+ "<0x7E>": 129,
+ "<0x7F>": 130,
+ "<0x80>": 131,
+ "<0x81>": 132,
+ "<0x82>": 133,
+ "<0x83>": 134,
+ "<0x84>": 135,
+ "<0x85>": 136,
+ "<0x86>": 137,
+ "<0x87>": 138,
+ "<0x88>": 139,
+ "<0x89>": 140,
+ "<0x8A>": 141,
+ "<0x8B>": 142,
+ "<0x8C>": 143,
+ "<0x8D>": 144,
+ "<0x8E>": 145,
+ "<0x8F>": 146,
+ "<0x90>": 147,
+ "<0x91>": 148,
+ "<0x92>": 149,
+ "<0x93>": 150,
+ "<0x94>": 151,
+ "<0x95>": 152,
+ "<0x96>": 153,
+ "<0x97>": 154,
+ "<0x98>": 155,
+ "<0x99>": 156,
+ "<0x9A>": 157,
+ "<0x9B>": 158,
+ "<0x9C>": 159,
+ "<0x9D>": 160,
+ "<0x9E>": 161,
+ "<0x9F>": 162,
+ "<0xA0>": 163,
+ "<0xA1>": 164,
+ "<0xA2>": 165,
+ "<0xA3>": 166,
+ "<0xA4>": 167,
+ "<0xA5>": 168,
+ "<0xA6>": 169,
+ "<0xA7>": 170,
+ "<0xA8>": 171,
+ "<0xA9>": 172,
+ "<0xAA>": 173,
+ "<0xAB>": 174,
+ "<0xAC>": 175,
+ "<0xAD>": 176,
+ "<0xAE>": 177,
+ "<0xAF>": 178,
+ "<0xB0>": 179,
+ "<0xB1>": 180,
+ "<0xB2>": 181,
+ "<0xB3>": 182,
+ "<0xB4>": 183,
+ "<0xB5>": 184,
+ "<0xB6>": 185,
+ "<0xB7>": 186,
+ "<0xB8>": 187,
+ "<0xB9>": 188,
+ "<0xBA>": 189,
+ "<0xBB>": 190,
+ "<0xBC>": 191,
+ "<0xBD>": 192,
+ "<0xBE>": 193,
+ "<0xBF>": 194,
+ "<0xC0>": 195,
+ "<0xC1>": 196,
+ "<0xC2>": 197,
+ "<0xC3>": 198,
+ "<0xC4>": 199,
+ "<0xC5>": 200,
+ "<0xC6>": 201,
+ "<0xC7>": 202,
+ "<0xC8>": 203,
+ "<0xC9>": 204,
+ "<0xCA>": 205,
+ "<0xCB>": 206,
+ "<0xCC>": 207,
+ "<0xCD>": 208,
+ "<0xCE>": 209,
+ "<0xCF>": 210,
+ "<0xD0>": 211,
+ "<0xD1>": 212,
+ "<0xD2>": 213,
+ "<0xD3>": 214,
+ "<0xD4>": 215,
+ "<0xD5>": 216,
+ "<0xD6>": 217,
+ "<0xD7>": 218,
+ "<0xD8>": 219,
+ "<0xD9>": 220,
+ "<0xDA>": 221,
+ "<0xDB>": 222,
+ "<0xDC>": 223,
+ "<0xDD>": 224,
+ "<0xDE>": 225,
+ "<0xDF>": 226,
+ "<0xE0>": 227,
+ "<0xE1>": 228,
+ "<0xE2>": 229,
+ "<0xE3>": 230,
+ "<0xE4>": 231,
+ "<0xE5>": 232,
+ "<0xE6>": 233,
+ "<0xE7>": 234,
+ "<0xE8>": 235,
+ "<0xE9>": 236,
+ "<0xEA>": 237,
+ "<0xEB>": 238,
+ "<0xEC>": 239,
+ "<0xED>": 240,
+ "<0xEE>": 241,
+ "<0xEF>": 242,
+ "<0xF0>": 243,
+ "<0xF1>": 244,
+ "<0xF2>": 245,
+ "<0xF3>": 246,
+ "<0xF4>": 247,
+ "<0xF5>": 248,
+ "<0xF6>": 249,
+ "<0xF7>": 250,
+ "<0xF8>": 251,
+ "<0xF9>": 252,
+ "<0xFA>": 253,
+ "<0xFB>": 254,
+ "<0xFC>": 255,
+ "<0xFD>": 256,
+ "<0xFE>": 257,
+ "<0xFF>": 258,
+ "▁▁": 259,
+ "▁t": 260,
+ "er": 261,
+ "in": 262,
+ "▁a": 263,
+ "en": 264,
+ "on": 265,
+ "▁th": 266,
+ "es": 267,
+ "▁▁▁▁": 268,
+ "▁s": 269,
+ "▁d": 270,
+ "at": 271,
+ "or": 272,
+ "an": 273,
+ "▁c": 274,
+ "is": 275,
+ "re": 276,
+ "it": 277,
+ "▁the": 278,
+ "ar": 279,
+ "le": 280,
+ "▁w": 281,
+ "▁p": 282,
+ "ou": 283,
+ "al": 284,
+ "▁f": 285,
+ "▁m": 286,
+ "ed": 287,
+ "▁o": 288,
+ "▁b": 289,
+ "om": 290,
+ "ion": 291,
+ "ing": 292,
+ "ic": 293,
+ "as": 294,
+ "el": 295,
+ "ent": 296,
+ "▁in": 297,
+ "▁h": 298,
+ "nd": 299,
+ "et": 300,
+ "▁l": 301,
+ "▁n": 302,
+ "st": 303,
+ "▁to": 304,
+ "ch": 305,
+ "▁I": 306,
+ "ro": 307,
+ "▁▁▁▁▁▁▁▁": 308,
+ "il": 309,
+ "▁of": 310,
+ "de": 311,
+ "ct": 312,
+ "▁(": 313,
+ "am": 314,
+ "▁C": 315,
+ "▁de": 316,
+ "▁S": 317,
+ "▁u": 318,
+ "▁A": 319,
+ "▁\\": 320,
+ "▁e": 321,
+ "▁and": 322,
+ "▁T": 323,
+ "ol": 324,
+ "▁v": 325,
+ "im": 326,
+ "ot": 327,
+ "ad": 328,
+ "ut": 329,
+ "▁g": 330,
+ "em": 331,
+ "ur": 332,
+ "id": 333,
+ "▁*": 334,
+ "ig": 335,
+ "ra": 336,
+ "▁re": 337,
+ "▁is": 338,
+ "qu": 339,
+ "ow": 340,
+ "▁M": 341,
+ "est": 342,
+ "▁y": 343,
+ "se": 344,
+ "ve": 345,
+ "ce": 346,
+ "ie": 347,
+ "un": 348,
+ "▁P": 349,
+ "▁B": 350,
+ "ag": 351,
+ "ul": 352,
+ "▁=": 353,
+ "he": 354,
+ "end": 355,
+ "ode": 356,
+ "ter": 357,
+ "ment": 358,
+ "os": 359,
+ "▁D": 360,
+ "if": 361,
+ "ation": 362,
+ "▁for": 363,
+ "▁r": 364,
+ "▁L": 365,
+ "▁you": 366,
+ "▁be": 367,
+ "ly": 368,
+ "ver": 369,
+ "ab": 370,
+ "te": 371,
+ "▁it": 372,
+ "▁on": 373,
+ "ri": 374,
+ "us": 375,
+ "▁\"": 376,
+ "▁wh": 377,
+ "▁con": 378,
+ "▁H": 379,
+ "▁st": 380,
+ "ir": 381,
+ "▁E": 382,
+ "▁F": 383,
+ "ck": 384,
+ "▁an": 385,
+ "th": 386,
+ "eg": 387,
+ "ay": 388,
+ "ith": 389,
+ "▁R": 390,
+ "ist": 391,
+ "and": 392,
+ "▁that": 393,
+ "▁al": 394,
+ "▁$": 395,
+ "▁#": 396,
+ "od": 397,
+ "um": 398,
+ "▁W": 399,
+ "ht": 400,
+ "code": 401,
+ "▁G": 402,
+ "ate": 403,
+ "ess": 404,
+ "▁N": 405,
+ "ere": 406,
+ "pp": 407,
+ "▁as": 408,
+ "▁se": 409,
+ "▁pro": 410,
+ "▁with": 411,
+ "pe": 412,
+ "▁k": 413,
+ "ers": 414,
+ "pt": 415,
+ ");": 416,
+ "lo": 417,
+ "▁▁▁▁▁": 418,
+ "▁com": 419,
+ "ame": 420,
+ "▁`": 421,
+ "▁Com": 422,
+ "ia": 423,
+ "ant": 424,
+ "▁la": 425,
+ "▁{": 426,
+ "▁en": 427,
+ "ction": 428,
+ "▁ex": 429,
+ "ld": 430,
+ "ub": 431,
+ "▁j": 432,
+ "la": 433,
+ "ue": 434,
+ "▁J": 435,
+ "ich": 436,
+ "▁do": 437,
+ "▁O": 438,
+ "▁qu": 439,
+ "iv": 440,
+ "ort": 441,
+ "art": 442,
+ "▁un": 443,
+ "▁##": 444,
+ "▁this": 445,
+ "ke": 446,
+ "▁ha": 447,
+ "▁-": 448,
+ "out": 449,
+ "▁The": 450,
+ "▁not": 451,
+ "▁ne": 452,
+ "ill": 453,
+ "▁le": 454,
+ "ci": 455,
+ "rom": 456,
+ "ine": 457,
+ "//": 458,
+ "op": 459,
+ "egin": 460,
+ "▁Comment": 461,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 462,
+ "begin": 463,
+ "ст": 464,
+ "ass": 465,
+ "iz": 466,
+ ").": 467,
+ "og": 468,
+ "▁п": 469,
+ "▁or": 470,
+ "▁was": 471,
+ "▁at": 472,
+ "our": 473,
+ "▁i": 474,
+ "ain": 475,
+ "▁K": 476,
+ "на": 477,
+ "▁V": 478,
+ "ge": 479,
+ "▁su": 480,
+ "ap": 481,
+ "age": 482,
+ "ould": 483,
+ "ne": 484,
+ "av": 485,
+ "xt": 486,
+ "ore": 487,
+ "ile": 488,
+ "--": 489,
+ "▁в": 490,
+ "▁by": 491,
+ "li": 492,
+ "ath": 493,
+ "ра": 494,
+ "ber": 495,
+ "ach": 496,
+ "all": 497,
+ "▁Th": 498,
+ "ult": 499,
+ "▁}": 500,
+ "▁U": 501,
+ "▁us": 502,
+ "▁z": 503,
+ "ust": 504,
+ "▁have": 505,
+ "lic": 506,
+ "ни": 507,
+ "▁can": 508,
+ "tr": 509,
+ "com": 510,
+ "),": 511,
+ "▁In": 512,
+ "ind": 513,
+ "ell": 514,
+ "▁from": 515,
+ "ов": 516,
+ "to": 517,
+ "▁[": 518,
+ "able": 519,
+ "ost": 520,
+ "▁ch": 521,
+ "ect": 522,
+ "ight": 523,
+ "int": 524,
+ "▁'": 525,
+ "▁are": 526,
+ "▁im": 527,
+ "▁sh": 528,
+ "▁<": 529,
+ "▁An": 530,
+ "▁с": 531,
+ "ata": 532,
+ "ire": 533,
+ "▁tr": 534,
+ "con": 535,
+ "ord": 536,
+ "ity": 537,
+ "ard": 538,
+ "▁▁▁▁▁▁": 539,
+ "▁he": 540,
+ "▁but": 541,
+ "oc": 542,
+ "=\"": 543,
+ "▁pr": 544,
+ "ure": 545,
+ "per": 546,
+ "ack": 547,
+ "ork": 548,
+ "ong": 549,
+ "ans": 550,
+ "ко": 551,
+ "ple": 552,
+ "▁des": 553,
+ "ok": 554,
+ "orm": 555,
+ "wer": 556,
+ "ak": 557,
+ "pr": 558,
+ "ase": 559,
+ "▁el": 560,
+ "ph": 561,
+ "ac": 562,
+ "▁und": 563,
+ "▁ar": 564,
+ "▁if": 565,
+ "ud": 566,
+ "ps": 567,
+ "ite": 568,
+ "ble": 569,
+ "но": 570,
+ "fer": 571,
+ "pl": 572,
+ "ive": 573,
+ "ang": 574,
+ "ens": 575,
+ "ро": 576,
+ "▁so": 577,
+ "so": 578,
+ "ast": 579,
+ "()": 580,
+ "swer": 581,
+ "ru": 582,
+ "ies": 583,
+ "▁:": 584,
+ "au": 585,
+ "ov": 586,
+ "ре": 587,
+ "го": 588,
+ "▁der": 589,
+ "▁my": 590,
+ "▁we": 591,
+ "▁me": 592,
+ "nt": 593,
+ "▁ad": 594,
+ "urn": 595,
+ "▁your": 596,
+ "://": 597,
+ "are": 598,
+ "▁all": 599,
+ "ff": 600,
+ "io": 601,
+ "estion": 602,
+ "ime": 603,
+ "▁er": 604,
+ "lass": 605,
+ "▁и": 606,
+ "▁which": 607,
+ "ome": 608,
+ "ont": 609,
+ "▁par": 610,
+ "▁ma": 611,
+ "▁Y": 612,
+ "\",": 613,
+ "▁о": 614,
+ "ft": 615,
+ "ial": 616,
+ "cc": 617,
+ "ound": 618,
+ "▁li": 619,
+ "▁res": 620,
+ "eth": 621,
+ "ject": 622,
+ "▁app": 623,
+ "▁St": 624,
+ "ice": 625,
+ "▁am": 626,
+ "act": 627,
+ "▁del": 628,
+ "gr": 629,
+ "ated": 630,
+ "ier": 631,
+ "▁▁▁▁▁▁▁▁▁▁▁▁": 632,
+ "▁ab": 633,
+ "▁et": 634,
+ "ally": 635,
+ "..": 636,
+ "port": 637,
+ "ik": 638,
+ "▁per": 639,
+ "▁cont": 640,
+ "ри": 641,
+ "ка": 642,
+ "ser": 643,
+ "ли": 644,
+ "ll": 645,
+ "iew": 646,
+ "ign": 647,
+ "_{": 648,
+ "put": 649,
+ "one": 650,
+ "unction": 651,
+ "▁di": 652,
+ "ary": 653,
+ "ition": 654,
+ "ma": 655,
+ "ен": 656,
+ "get": 657,
+ "▁lo": 658,
+ "▁val": 659,
+ "▁Q": 660,
+ "ran": 661,
+ "▁д": 662,
+ "ence": 663,
+ "▁work": 664,
+ "▁на": 665,
+ "ip": 666,
+ "item": 667,
+ "ype": 668,
+ "▁&": 669,
+ "▁his": 670,
+ "▁use": 671,
+ "der": 672,
+ "▁Answer": 673,
+ "▁will": 674,
+ "ize": 675,
+ "та": 676,
+ "low": 677,
+ "▁Ch": 678,
+ "▁get": 679,
+ "ide": 680,
+ "ous": 681,
+ "ink": 682,
+ "ption": 683,
+ "ла": 684,
+ "turn": 685,
+ "ung": 686,
+ "ec": 687,
+ "ug": 688,
+ "form": 689,
+ "res": 690,
+ "htt": 691,
+ "oug": 692,
+ "ль": 693,
+ "▁no": 694,
+ "cl": 695,
+ "▁ro": 696,
+ "▁one": 697,
+ "tt": 698,
+ "cri": 699,
+ "du": 700,
+ "▁up": 701,
+ "то": 702,
+ "(\"": 703,
+ "▁ob": 704,
+ "we": 705,
+ "ory": 706,
+ "▁est": 707,
+ "ery": 708,
+ "iel": 709,
+ "str": 710,
+ "ob": 711,
+ "▁que": 712,
+ "ian": 713,
+ "▁out": 714,
+ "▁pl": 715,
+ "▁new": 716,
+ "ки": 717,
+ "▁+": 718,
+ "ry": 719,
+ "oth": 720,
+ "ther": 721,
+ "▁var": 722,
+ "▁would": 723,
+ "▁ser": 724,
+ "tern": 725,
+ "text": 726,
+ "▁there": 727,
+ "ish": 728,
+ "ror": 729,
+ "те": 730,
+ "▁set": 731,
+ "▁@": 732,
+ "▁по": 733,
+ "▁te": 734,
+ "ex": 735,
+ "▁return": 736,
+ "ail": 737,
+ "▁any": 738,
+ "▁It": 739,
+ "▁function": 740,
+ "{\\": 741,
+ "',": 742,
+ "és": 743,
+ "ale": 744,
+ "ан": 745,
+ "▁when": 746,
+ "ib": 747,
+ "▁go": 748,
+ "ance": 749,
+ "▁had": 750,
+ "▁Qu": 751,
+ "▁comp": 752,
+ "ле": 753,
+ "▁з": 754,
+ "math": 755,
+ "▁has": 756,
+ "▁м": 757,
+ "▁pre": 758,
+ "ener": 759,
+ "▁part": 760,
+ "elf": 761,
+ "▁die": 762,
+ "▁like": 763,
+ "ray": 764,
+ "irst": 765,
+ "▁dis": 766,
+ "▁man": 767,
+ "rit": 768,
+ "▁then": 769,
+ "▁class": 770,
+ "pro": 771,
+ "▁po": 772,
+ "▁using": 773,
+ "eb": 774,
+ "▁code": 775,
+ "own": 776,
+ "▁some": 777,
+ "ces": 778,
+ "▁$\\": 779,
+ "ер": 780,
+ "lect": 781,
+ "▁au": 782,
+ "isch": 783,
+ "▁col": 784,
+ "▁–": 785,
+ "up": 786,
+ "ons": 787,
+ "▁add": 788,
+ "ild": 789,
+ "iss": 790,
+ "val": 791,
+ "ount": 792,
+ "les": 793,
+ "vent": 794,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁": 795,
+ "▁Z": 796,
+ "In": 797,
+ "row": 798,
+ "ear": 799,
+ "ations": 800,
+ "ah": 801,
+ "que": 802,
+ "ublic": 803,
+ "ank": 804,
+ "▁sp": 805,
+ "▁Wh": 806,
+ "----": 807,
+ "sk": 808,
+ "ew": 809,
+ "ags": 810,
+ "ти": 811,
+ "ann": 812,
+ "▁—": 813,
+ "ert": 814,
+ "ace": 815,
+ "sch": 816,
+ "▁need": 817,
+ "▁à": 818,
+ "ien": 819,
+ "ough": 820,
+ "не": 821,
+ "▁def": 822,
+ "ij": 823,
+ "ern": 824,
+ "▁what": 825,
+ "▁Ar": 826,
+ "wo": 827,
+ "ml": 828,
+ "": 829,
+ "▁Re": 830,
+ "▁es": 831,
+ "▁inst": 832,
+ "bo": 833,
+ "az": 834,
+ "▁###": 835,
+ "▁б": 836,
+ "erm": 837,
+ "▁Al": 838,
+ "led": 839,
+ "да": 840,
+ "ten": 841,
+ "set": 842,
+ "ло": 843,
+ "▁comm": 844,
+ "sh": 845,
+ "ва": 846,
+ "▁/": 847,
+ "▁data": 848,
+ "▁//": 849,
+ "](": 850,
+ "▁str": 851,
+ "ose": 852,
+ "▁Un": 853,
+ "ven": 854,
+ "St": 855,
+ "...": 856,
+ "▁С": 857,
+ "yst": 858,
+ "▁«": 859,
+ "ick": 860,
+ "ix": 861,
+ "par": 862,
+ "▁у": 863,
+ "▁want": 864,
+ "ng": 865,
+ "ote": 866,
+ "▁gr": 867,
+ "▁du": 868,
+ "▁.": 869,
+ "und": 870,
+ "▁only": 871,
+ "▁sa": 872,
+ "ely": 873,
+ "vers": 874,
+ "▁ent": 875,
+ "))": 876,
+ "('": 877,
+ "▁mod": 878,
+ "ava": 879,
+ "ton": 880,
+ "▁should": 881,
+ "ement": 882,
+ "▁form": 883,
+ "▁also": 884,
+ "▁sc": 885,
+ "ings": 886,
+ "▁You": 887,
+ "ón": 888,
+ "▁kn": 889,
+ "();": 890,
+ "▁|": 891,
+ "▁were": 892,
+ "ss": 893,
+ "▁Question": 894,
+ "ise": 895,
+ "▁they": 896,
+ "▁De": 897,
+ "ond": 898,
+ "▁sol": 899,
+ "▁fol": 900,
+ "▁more": 901,
+ "▁her": 902,
+ "▁_": 903,
+ "▁é": 904,
+ "atch": 905,
+ "fter": 906,
+ "▁cre": 907,
+ "lock": 908,
+ "tring": 909,
+ "▁This": 910,
+ "ze": 911,
+ "ado": 912,
+ "ull": 913,
+ "ger": 914,
+ "be": 915,
+ "▁other": 916,
+ "▁Tags": 917,
+ "ution": 918,
+ "ict": 919,
+ "▁how": 920,
+ "▁x": 921,
+ "▁Se": 922,
+ "▁che": 923,
+ "cript": 924,
+ "▁just": 925,
+ "▁pos": 926,
+ "ange": 927,
+ "ific": 928,
+ "ree": 929,
+ "}}": 930,
+ "▁time": 931,
+ "app": 932,
+ "ны": 933,
+ "▁file": 934,
+ "ark": 935,
+ "ical": 936,
+ "▁first": 937,
+ "▁int": 938,
+ "▁В": 939,
+ "▁He": 940,
+ "ta": 941,
+ "ument": 942,
+ "ors": 943,
+ "lement": 944,
+ "rac": 945,
+ "▁ag": 946,
+ "▁does": 947,
+ "yn": 948,
+ "read": 949,
+ "ual": 950,
+ "▁Le": 951,
+ "ys": 952,
+ "▁em": 953,
+ "▁num": 954,
+ "vel": 955,
+ "ди": 956,
+ "over": 957,
+ "▁dif": 958,
+ "ethod": 959,
+ "▁If": 960,
+ "▁spe": 961,
+ "ym": 962,
+ "▁them": 963,
+ "▁into": 964,
+ "▁▁▁▁▁▁▁▁▁▁": 965,
+ "▁les": 966,
+ "▁its": 967,
+ "ese": 968,
+ "ield": 969,
+ "▁public": 970,
+ "▁П": 971,
+ "▁den": 972,
+ "ystem": 973,
+ "of": 974,
+ "▁over": 975,
+ "->": 976,
+ "▁fil": 977,
+ "name": 978,
+ "inal": 979,
+ "▁il": 980,
+ "ample": 981,
+ "▁way": 982,
+ "ica": 983,
+ "во": 984,
+ "cess": 985,
+ "itt": 986,
+ "uch": 987,
+ "▁where": 988,
+ "ми": 989,
+ "org": 990,
+ "https": 991,
+ "▁vo": 992,
+ "ient": 993,
+ "ove": 994,
+ "▁value": 995,
+ "eng": 996,
+ "▁La": 997,
+ "^{": 998,
+ "ref": 999,
+ "ied": 1000,
+ "ER": 1001,
+ "▁stat": 1002,
+ "fig": 1003,
+ "me": 1004,
+ "▁von": 1005,
+ "▁inter": 1006,
+ "roid": 1007,
+ "ater": 1008,
+ "▁their": 1009,
+ "▁bet": 1010,
+ "▁ein": 1011,
+ "}\\": 1012,
+ "\">": 1013,
+ "▁sub": 1014,
+ "▁op": 1015,
+ "▁don": 1016,
+ "ty": 1017,
+ "▁try": 1018,
+ "▁Pro": 1019,
+ "▁tra": 1020,
+ "▁same": 1021,
+ "ep": 1022,
+ "▁two": 1023,
+ "▁name": 1024,
+ "old": 1025,
+ "let": 1026,
+ "▁sim": 1027,
+ "sp": 1028,
+ "▁av": 1029,
+ "bre": 1030,
+ "blem": 1031,
+ "ey": 1032,
+ "▁could": 1033,
+ "▁cor": 1034,
+ "▁acc": 1035,
+ "ays": 1036,
+ "cre": 1037,
+ "urr": 1038,
+ "si": 1039,
+ "▁const": 1040,
+ "ues": 1041,
+ "}$": 1042,
+ "View": 1043,
+ "▁act": 1044,
+ "▁bo": 1045,
+ "▁ко": 1046,
+ "▁som": 1047,
+ "▁about": 1048,
+ "land": 1049,
+ "mer": 1050,
+ "▁list": 1051,
+ "cal": 1052,
+ "▁import": 1053,
+ "col": 1054,
+ "▁na": 1055,
+ "na": 1056,
+ "::": 1057,
+ "▁who": 1058,
+ "▁error": 1059,
+ "▁X": 1060,
+ "ator": 1061,
+ "ext": 1062,
+ "▁been": 1063,
+ "ér": 1064,
+ "▁run": 1065,
+ "pos": 1066,
+ "▁cl": 1067,
+ "**": 1068,
+ "▁К": 1069,
+ "ular": 1070,
+ "ause": 1071,
+ "▁reg": 1072,
+ "▁know": 1073,
+ "▁see": 1074,
+ "▁him": 1075,
+ "ning": 1076,
+ "▁за": 1077,
+ "ates": 1078,
+ "fore": 1079,
+ "ions": 1080,
+ "▁hel": 1081,
+ "ute": 1082,
+ "▁rem": 1083,
+ "▁го": 1084,
+ "▁Mar": 1085,
+ "ру": 1086,
+ "vice": 1087,
+ "irect": 1088,
+ "ner": 1089,
+ "▁under": 1090,
+ "rib": 1091,
+ "hr": 1092,
+ "че": 1093,
+ "▁As": 1094,
+ "▁end": 1095,
+ "ember": 1096,
+ "▁а": 1097,
+ "▁att": 1098,
+ "ina": 1099,
+ "son": 1100,
+ "▁follow": 1101,
+ "▁Sch": 1102,
+ "pect": 1103,
+ "▁rel": 1104,
+ "▁So": 1105,
+ "▁look": 1106,
+ "abel": 1107,
+ "▁problem": 1108,
+ "▁van": 1109,
+ "strong": 1110,
+ "co": 1111,
+ "pon": 1112,
+ "ca": 1113,
+ "ada": 1114,
+ "\":": 1115,
+ "cond": 1116,
+ "amb": 1117,
+ "},": 1118,
+ "quest": 1119,
+ "▁aut": 1120,
+ "▁result": 1121,
+ "▁may": 1122,
+ "Re": 1123,
+ "http": 1124,
+ "):": 1125,
+ "▁And": 1126,
+ "red": 1127,
+ "▁How": 1128,
+ "po": 1129,
+ "ско": 1130,
+ "att": 1131,
+ "oup": 1132,
+ "ced": 1133,
+ "▁type": 1134,
+ "▁than": 1135,
+ "▁cons": 1136,
+ "uf": 1137,
+ "ци": 1138,
+ "▁question": 1139,
+ "raph": 1140,
+ "igh": 1141,
+ "▁М": 1142,
+ "▁htt": 1143,
+ "ins": 1144,
+ "den": 1145,
+ "▁da": 1146,
+ "▁ver": 1147,
+ "oh": 1148,
+ "▁=>": 1149,
+ "riv": 1150,
+ "ude": 1151,
+ "▁For": 1152,
+ "▁ra": 1153,
+ "frac": 1154,
+ "ма": 1155,
+ "▁after": 1156,
+ "}{": 1157,
+ "▁method": 1158,
+ "\")": 1159,
+ "amp": 1160,
+ "ash": 1161,
+ "▁rec": 1162,
+ "▁differ": 1163,
+ "ON": 1164,
+ "ax": 1165,
+ "ament": 1166,
+ "ource": 1167,
+ "Con": 1168,
+ "its": 1169,
+ "Name": 1170,
+ "man": 1171,
+ "▁bec": 1172,
+ "che": 1173,
+ "▁En": 1174,
+ "aj": 1175,
+ "▁gener": 1176,
+ "IN": 1177,
+ "▁id": 1178,
+ "ages": 1179,
+ "▁loc": 1180,
+ "fo": 1181,
+ "br": 1182,
+ "▁she": 1183,
+ "Pro": 1184,
+ "▁una": 1185,
+ "▁к": 1186,
+ "eta": 1187,
+ "log": 1188,
+ "olog": 1189,
+ "▁sur": 1190,
+ "arg": 1191,
+ "▁--": 1192,
+ "kt": 1193,
+ "(\\": 1194,
+ "min": 1195,
+ "▁line": 1196,
+ "▁vari": 1197,
+ "ся": 1198,
+ "ics": 1199,
+ "ня": 1200,
+ "very": 1201,
+ "add": 1202,
+ "▁object": 1203,
+ "Id": 1204,
+ "▁But": 1205,
+ "▁case": 1206,
+ "▁make": 1207,
+ "▁cal": 1208,
+ "▁pass": 1209,
+ "сь": 1210,
+ "ession": 1211,
+ "net": 1212,
+ ".\"": 1213,
+ "▁г": 1214,
+ "är": 1215,
+ "де": 1216,
+ "no": 1217,
+ "ating": 1218,
+ "ato": 1219,
+ "line": 1220,
+ "ви": 1221,
+ "▁Ex": 1222,
+ "▁ass": 1223,
+ "▁vers": 1224,
+ "ля": 1225,
+ "▁ed": 1226,
+ "umn": 1227,
+ "other": 1228,
+ "ста": 1229,
+ "ative": 1230,
+ "String": 1231,
+ "▁los": 1232,
+ "wn": 1233,
+ "▁answer": 1234,
+ "▁let": 1235,
+ "▁pe": 1236,
+ "ents": 1237,
+ "▁fe": 1238,
+ "ince": 1239,
+ "ni": 1240,
+ "ider": 1241,
+ "ows": 1242,
+ "▁test": 1243,
+ "▁here": 1244,
+ "roll": 1245,
+ "▁call": 1246,
+ "ruct": 1247,
+ "▁pol": 1248,
+ "ait": 1249,
+ "▁back": 1250,
+ "ho": 1251,
+ "Ex": 1252,
+ "ress": 1253,
+ "ST": 1254,
+ "ried": 1255,
+ "date": 1256,
+ "ет": 1257,
+ "▁did": 1258,
+ "ting": 1259,
+ "▁El": 1260,
+ "▁dem": 1261,
+ ")$": 1262,
+ "ова": 1263,
+ "urrent": 1264,
+ "lace": 1265,
+ "right": 1266,
+ "ren": 1267,
+ "по": 1268,
+ "▁each": 1269,
+ "cy": 1270,
+ "block": 1271,
+ "data": 1272,
+ "▁%": 1273,
+ "▁ac": 1274,
+ "▁==": 1275,
+ "ür": 1276,
+ "▁por": 1277,
+ "ask": 1278,
+ "arch": 1279,
+ "ames": 1280,
+ "▁Con": 1281,
+ "ча": 1282,
+ "▁off": 1283,
+ "▁find": 1284,
+ "cont": 1285,
+ "▁now": 1286,
+ "work": 1287,
+ "ational": 1288,
+ "dd": 1289,
+ "ción": 1290,
+ "▁А": 1291,
+ "ault": 1292,
+ "List": 1293,
+ "▁ext": 1294,
+ "urs": 1295,
+ "ake": 1296,
+ "ule": 1297,
+ "▁point": 1298,
+ "AT": 1299,
+ "aut": 1300,
+ "▁trans": 1301,
+ "▁co": 1302,
+ "▁read": 1303,
+ "▁used": 1304,
+ "ски": 1305,
+ "ari": 1306,
+ "LE": 1307,
+ "eter": 1308,
+ "oun": 1309,
+ "ever": 1310,
+ "self": 1311,
+ "ined": 1312,
+ "idth": 1313,
+ "ux": 1314,
+ "js": 1315,
+ "▁such": 1316,
+ "▁Is": 1317,
+ "ée": 1318,
+ "ful": 1319,
+ "▁dist": 1320,
+ "▁bu": 1321,
+ "itemize": 1322,
+ "Cont": 1323,
+ "je": 1324,
+ "си": 1325,
+ "▁prov": 1326,
+ "bb": 1327,
+ "ward": 1328,
+ "esent": 1329,
+ "erson": 1330,
+ "anks": 1331,
+ "wh": 1332,
+ "not": 1333,
+ "▁We": 1334,
+ "ka": 1335,
+ "rop": 1336,
+ "atur": 1337,
+ "als": 1338,
+ "▁bel": 1339,
+ "ör": 1340,
+ "fr": 1341,
+ "▁example": 1342,
+ "▁incl": 1343,
+ "amil": 1344,
+ "▁ра": 1345,
+ "▁“": 1346,
+ "▁string": 1347,
+ "▁think": 1348,
+ "Th": 1349,
+ "▁tem": 1350,
+ "ave": 1351,
+ "▁Fran": 1352,
+ "▁number": 1353,
+ "▁si": 1354,
+ "imes": 1355,
+ "tem": 1356,
+ "my": 1357,
+ "ler": 1358,
+ "load": 1359,
+ "==": 1360,
+ "▁hand": 1361,
+ "za": 1362,
+ "▁because": 1363,
+ "▁sch": 1364,
+ "vo": 1365,
+ "this": 1366,
+ "ID": 1367,
+ "ão": 1368,
+ "▁start": 1369,
+ "▁war": 1370,
+ "▁help": 1371,
+ "ts": 1372,
+ "▁char": 1373,
+ "▁ph": 1374,
+ "▁min": 1375,
+ "til": 1376,
+ "rite": 1377,
+ "--------": 1378,
+ "els": 1379,
+ "▁mit": 1380,
+ "edia": 1381,
+ "ку": 1382,
+ "▁Sh": 1383,
+ "any": 1384,
+ "];": 1385,
+ "▁Б": 1386,
+ "ique": 1387,
+ "da": 1388,
+ "ef": 1389,
+ "dex": 1390,
+ "▁produ": 1391,
+ "▁Н": 1392,
+ "gram": 1393,
+ "▁Or": 1394,
+ "▁gre": 1395,
+ "quote": 1396,
+ "leg": 1397,
+ "orn": 1398,
+ "▁ind": 1399,
+ "▁post": 1400,
+ "▁dep": 1401,
+ "],": 1402,
+ "vi": 1403,
+ "▁user": 1404,
+ "▁>": 1405,
+ "lick": 1406,
+ "▁very": 1407,
+ "ething": 1408,
+ "▁array": 1409,
+ "▁gu": 1410,
+ "▁dur": 1411,
+ "`.": 1412,
+ "ть": 1413,
+ "lication": 1414,
+ "сти": 1415,
+ "ek": 1416,
+ "ico": 1417,
+ "▁dat": 1418,
+ "ор": 1419,
+ "html": 1420,
+ "ione": 1421,
+ "▁different": 1422,
+ "▁check": 1423,
+ "▁fr": 1424,
+ "▁Er": 1425,
+ "▁text": 1426,
+ "ні": 1427,
+ "icht": 1428,
+ "stack": 1429,
+ "EN": 1430,
+ "rag": 1431,
+ "▁every": 1432,
+ "Ar": 1433,
+ "▁before": 1434,
+ "alse": 1435,
+ "▁fin": 1436,
+ "▁dé": 1437,
+ "▁these": 1438,
+ "▁det": 1439,
+ "Val": 1440,
+ "ception": 1441,
+ "▁android": 1442,
+ "blockquote": 1443,
+ "▁je": 1444,
+ "file": 1445,
+ "ats": 1446,
+ "▁до": 1447,
+ "essage": 1448,
+ "▁again": 1449,
+ "aw": 1450,
+ "Ch": 1451,
+ "ween": 1452,
+ "▁Д": 1453,
+ "for": 1454,
+ "cial": 1455,
+ "play": 1456,
+ "pre": 1457,
+ "ida": 1458,
+ "▁Par": 1459,
+ "ny": 1460,
+ "ract": 1461,
+ "▁supp": 1462,
+ "ased": 1463,
+ "lection": 1464,
+ "▁dans": 1465,
+ "air": 1466,
+ "rol": 1467,
+ "▁thr": 1468,
+ "Data": 1469,
+ "lich": 1470,
+ "▁про": 1471,
+ "▁long": 1472,
+ "▁second": 1473,
+ "ually": 1474,
+ "ines": 1475,
+ "▁found": 1476,
+ "ength": 1477,
+ "yp": 1478,
+ "ead": 1479,
+ "▁log": 1480,
+ "ui": 1481,
+ "new": 1482,
+ "▁Р": 1483,
+ "go": 1484,
+ "aus": 1485,
+ "ody": 1486,
+ "▁son": 1487,
+ "ме": 1488,
+ "ero": 1489,
+ "ved": 1490,
+ "sub": 1491,
+ "▁right": 1492,
+ "view": 1493,
+ "▁following": 1494,
+ "')": 1495,
+ "\");": 1496,
+ "▁said": 1497,
+ "же": 1498,
+ "чи": 1499,
+ "ту": 1500,
+ "ott": 1501,
+ "се": 1502,
+ "ars": 1503,
+ "$.": 1504,
+ "gg": 1505,
+ "▁br": 1506,
+ "ool": 1507,
+ "yle": 1508,
+ "use": 1509,
+ "▁show": 1510,
+ "lease": 1511,
+ "cia": 1512,
+ "▁direct": 1513,
+ "doc": 1514,
+ "ар": 1515,
+ "ms": 1516,
+ "▁giv": 1517,
+ "▁exp": 1518,
+ "ql": 1519,
+ "ду": 1520,
+ "ве": 1521,
+ "▁Be": 1522,
+ "Com": 1523,
+ "iter": 1524,
+ "RE": 1525,
+ "mp": 1526,
+ "men": 1527,
+ "▁Ro": 1528,
+ "MA": 1529,
+ "▁Col": 1530,
+ "ister": 1531,
+ "▁well": 1532,
+ "▁": 1533,
+ "ayout": 1534,
+ "ature": 1535,
+ "ivers": 1536,
+ "zy": 1537,
+ "▁не": 1538,
+ "▁met": 1539,
+ "une": 1540,
+ "yth": 1541,
+ "Type": 1542,
+ "▁element": 1543,
+ "▁link": 1544,
+ "mod": 1545,
+ "▁between": 1546,
+ "cept": 1547,
+ "quire": 1548,
+ "▁through": 1549,
+ "▁while": 1550,
+ "▁On": 1551,
+ "the": 1552,
+ "ía": 1553,
+ "▁something": 1554,
+ "vol": 1555,
+ "▁most": 1556,
+ "sc": 1557,
+ "uss": 1558,
+ "▁car": 1559,
+ "▁sm": 1560,
+ "▁ро": 1561,
+ "ano": 1562,
+ "left": 1563,
+ "va": 1564,
+ "▁true": 1565,
+ "($": 1566,
+ "ems": 1567,
+ "▁much": 1568,
+ "ás": 1569,
+ "▁New": 1570,
+ "▁proper": 1571,
+ "era": 1572,
+ "ited": 1573,
+ "▁doc": 1574,
+ "ices": 1575,
+ "The": 1576,
+ "▁?": 1577,
+ "сто": 1578,
+ "fl": 1579,
+ "▁spec": 1580,
+ "ender": 1581,
+ "way": 1582,
+ "▁self": 1583,
+ "▁even": 1584,
+ "ів": 1585,
+ "▁се": 1586,
+ "ния": 1587,
+ "▁Pr": 1588,
+ "▁ke": 1589,
+ "emb": 1590,
+ "▁table": 1591,
+ "▁equ": 1592,
+ "lient": 1593,
+ "td": 1594,
+ "part": 1595,
+ "▁print": 1596,
+ "▁une": 1597,
+ "ify": 1598,
+ "▁->": 1599,
+ "ene": 1600,
+ "▁mon": 1601,
+ "▁dec": 1602,
+ "▁still": 1603,
+ "▁об": 1604,
+ "▁Tr": 1605,
+ "▁ф": 1606,
+ "ife": 1607,
+ "ism": 1608,
+ "by": 1609,
+ "raw": 1610,
+ "ior": 1611,
+ "▁med": 1612,
+ "orld": 1613,
+ "▁comple": 1614,
+ "ww": 1615,
+ "▁art": 1616,
+ "ron": 1617,
+ "▁Г": 1618,
+ "▁My": 1619,
+ "▁als": 1620,
+ "rect": 1621,
+ "▁auf": 1622,
+ "▁down": 1623,
+ "ather": 1624,
+ "Col": 1625,
+ "Text": 1626,
+ "back": 1627,
+ "$,": 1628,
+ "▁year": 1629,
+ "мо": 1630,
+ "pi": 1631,
+ "▁Gr": 1632,
+ "ream": 1633,
+ "▁rep": 1634,
+ "bf": 1635,
+ "www": 1636,
+ "▁wur": 1637,
+ "▁org": 1638,
+ "inter": 1639,
+ "▁Die": 1640,
+ "▁being": 1641,
+ "\".": 1642,
+ "label": 1643,
+ "▁cent": 1644,
+ "java": 1645,
+ "bar": 1646,
+ "ante": 1647,
+ "ana": 1648,
+ "__": 1649,
+ "▁solution": 1650,
+ "▁О": 1651,
+ "▁fl": 1652,
+ "▁create": 1653,
+ "ici": 1654,
+ "ste": 1655,
+ "ython": 1656,
+ "unt": 1657,
+ "ason": 1658,
+ "ference": 1659,
+ "SE": 1660,
+ "▁non": 1661,
+ "ane": 1662,
+ "▁ins": 1663,
+ "ader": 1664,
+ "_{\\": 1665,
+ "Res": 1666,
+ "▁main": 1667,
+ "пи": 1668,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 1669,
+ "▁There": 1670,
+ "▁pour": 1671,
+ "RO": 1672,
+ "`,": 1673,
+ "lish": 1674,
+ "bject": 1675,
+ "ccess": 1676,
+ "▁orig": 1677,
+ "▁▁▁": 1678,
+ "ischen": 1679,
+ "ower": 1680,
+ "▁het": 1681,
+ "uc": 1682,
+ "▁else": 1683,
+ "».": 1684,
+ "▁от": 1685,
+ "equ": 1686,
+ "sible": 1687,
+ "test": 1688,
+ "stand": 1689,
+ "én": 1690,
+ "ets": 1691,
+ "GE": 1692,
+ "ident": 1693,
+ "▁е": 1694,
+ "▁при": 1695,
+ ".,": 1696,
+ "▁das": 1697,
+ "ock": 1698,
+ ",\"": 1699,
+ "▁vol": 1700,
+ "▁fo": 1701,
+ "▁para": 1702,
+ "▁Т": 1703,
+ "▁Car": 1704,
+ "ral": 1705,
+ "▁Sp": 1706,
+ "var": 1707,
+ "▁play": 1708,
+ "ouse": 1709,
+ "▁та": 1710,
+ "ically": 1711,
+ "▁contain": 1712,
+ "ponse": 1713,
+ "▁String": 1714,
+ "án": 1715,
+ "▁both": 1716,
+ "ken": 1717,
+ "AR": 1718,
+ "ере": 1719,
+ "▁Il": 1720,
+ "▁iss": 1721,
+ "▁open": 1722,
+ "▁)": 1723,
+ "▁What": 1724,
+ "fe": 1725,
+ "rivate": 1726,
+ "reg": 1727,
+ "▁without": 1728,
+ "▁zu": 1729,
+ "vis": 1730,
+ "flow": 1731,
+ "▁http": 1732,
+ "abase": 1733,
+ "▁word": 1734,
+ "▁change": 1735,
+ "▁works": 1736,
+ "▁ge": 1737,
+ "▁!": 1738,
+ "▁een": 1739,
+ "itle": 1740,
+ "▁event": 1741,
+ "word": 1742,
+ "ando": 1743,
+ "SB": 1744,
+ "rem": 1745,
+ "▁field": 1746,
+ "ving": 1747,
+ "Ser": 1748,
+ "▁our": 1749,
+ "▁qui": 1750,
+ "▁oper": 1751,
+ "▁ist": 1752,
+ "def": 1753,
+ "▁made": 1754,
+ "ние": 1755,
+ "px": 1756,
+ "▁men": 1757,
+ "rm": 1758,
+ "ais": 1759,
+ "cent": 1760,
+ "list": 1761,
+ "To": 1762,
+ "▁To": 1763,
+ "ja": 1764,
+ "vert": 1765,
+ "▁mar": 1766,
+ "value": 1767,
+ "▁„": 1768,
+ "\";": 1769,
+ "▁aus": 1770,
+ "▁Br": 1771,
+ "ole": 1772,
+ "▁mult": 1773,
+ "ought": 1774,
+ "▁mat": 1775,
+ "▁view": 1776,
+ "fil": 1777,
+ "▁со": 1778,
+ "га": 1779,
+ "▁void": 1780,
+ "▁good": 1781,
+ "бо": 1782,
+ "CT": 1783,
+ "▁many": 1784,
+ "ben": 1785,
+ "▁во": 1786,
+ "▁ка": 1787,
+ "▁system": 1788,
+ "ino": 1789,
+ "▁another": 1790,
+ "▁rest": 1791,
+ "user": 1792,
+ "ility": 1793,
+ "ai": 1794,
+ "▁might": 1795,
+ "ustom": 1796,
+ "▁order": 1797,
+ "▁Ver": 1798,
+ "SS": 1799,
+ "})": 1800,
+ "▁eff": 1801,
+ "до": 1802,
+ "ett": 1803,
+ "▁sign": 1804,
+ "му": 1805,
+ "IT": 1806,
+ "string": 1807,
+ "elle": 1808,
+ "▁sing": 1809,
+ "cul": 1810,
+ "▁trying": 1811,
+ "▁beg": 1812,
+ "▁page": 1813,
+ "хо": 1814,
+ "▁Can": 1815,
+ "▁Ser": 1816,
+ "++": 1817,
+ "▁must": 1818,
+ "▁values": 1819,
+ "▁key": 1820,
+ "ible": 1821,
+ "].": 1822,
+ "ird": 1823,
+ "▁program": 1824,
+ "roller": 1825,
+ "▁conne": 1826,
+ "▁say": 1827,
+ "▁param": 1828,
+ "ache": 1829,
+ "velop": 1830,
+ "▁select": 1831,
+ "▁famil": 1832,
+ "▁last": 1833,
+ "▁Thanks": 1834,
+ "▁pop": 1835,
+ "}.": 1836,
+ "eq": 1837,
+ "▁doesn": 1838,
+ "['": 1839,
+ "▁term": 1840,
+ "▁ré": 1841,
+ "▁document": 1842,
+ "па": 1843,
+ "лу": 1844,
+ "ateg": 1845,
+ ".)": 1846,
+ "ling": 1847,
+ "ional": 1848,
+ "ables": 1849,
+ "▁tak": 1850,
+ "utton": 1851,
+ "▁arg": 1852,
+ "type": 1853,
+ "▁sure": 1854,
+ "▁real": 1855,
+ "▁web": 1856,
+ "▁current": 1857,
+ "▁Pl": 1858,
+ "cho": 1859,
+ "ments": 1860,
+ "▁Joh": 1861,
+ "ots": 1862,
+ "▁exist": 1863,
+ "ну": 1864,
+ "▁für": 1865,
+ "▁из": 1866,
+ "do": 1867,
+ "ного": 1868,
+ "▁las": 1869,
+ "▁null": 1870,
+ "▁inform": 1871,
+ "▁Л": 1872,
+ "▁version": 1873,
+ "▁chang": 1874,
+ "ager": 1875,
+ "▁Comm": 1876,
+ "лі": 1877,
+ "ush": 1878,
+ "▁Ge": 1879,
+ "▁high": 1880,
+ "▁input": 1881,
+ "ogle": 1882,
+ "ros": 1883,
+ "box": 1884,
+ "gen": 1885,
+ "▁ste": 1886,
+ "▁local": 1887,
+ "Im": 1888,
+ "▁process": 1889,
+ "ternal": 1890,
+ "ized": 1891,
+ "ги": 1892,
+ "ét": 1893,
+ "▁Ind": 1894,
+ "▁och": 1895,
+ "lt": 1896,
+ "▁column": 1897,
+ "▁tried": 1898,
+ "▁command": 1899,
+ "▁best": 1900,
+ "aster": 1901,
+ "за": 1902,
+ "▁prim": 1903,
+ "▁model": 1904,
+ "▁і": 1905,
+ "▁those": 1906,
+ "ities": 1907,
+ "ère": 1908,
+ "▁ре": 1909,
+ "је": 1910,
+ "ши": 1911,
+ "ques": 1912,
+ "▁Am": 1913,
+ "▁own": 1914,
+ "lin": 1915,
+ "зи": 1916,
+ "Value": 1917,
+ "thing": 1918,
+ "▁,": 1919,
+ "▁Te": 1920,
+ "▁stud": 1921,
+ "▁um": 1922,
+ "▁server": 1923,
+ "ille": 1924,
+ "▁put": 1925,
+ "ativ": 1926,
+ "gy": 1927,
+ "ови": 1928,
+ "raf": 1929,
+ "ово": 1930,
+ "▁wurde": 1931,
+ "▁When": 1932,
+ "▁div": 1933,
+ "ants": 1934,
+ "▁ter": 1935,
+ "▁partic": 1936,
+ "▁т": 1937,
+ "▁Do": 1938,
+ "▁No": 1939,
+ "sert": 1940,
+ "ido": 1941,
+ "mathcal": 1942,
+ "ade": 1943,
+ "▁II": 1944,
+ "lear": 1945,
+ "ograph": 1946,
+ "ense": 1947,
+ "▁row": 1948,
+ "num": 1949,
+ "▁possible": 1950,
+ "▁since": 1951,
+ "▁Bo": 1952,
+ "ctions": 1953,
+ "▁Im": 1954,
+ "OR": 1955,
+ "ці": 1956,
+ "▁ide": 1957,
+ "map": 1958,
+ "▁correct": 1959,
+ "ves": 1960,
+ "php": 1961,
+ "▁output": 1962,
+ "▁Ph": 1963,
+ "AL": 1964,
+ "ared": 1965,
+ "\\\\": 1966,
+ "▁image": 1967,
+ "esch": 1968,
+ "жи": 1969,
+ "▁conf": 1970,
+ "por": 1971,
+ "query": 1972,
+ "ures": 1973,
+ "ium": 1974,
+ "ends": 1975,
+ "▁Ab": 1976,
+ "SBN": 1977,
+ "ід": 1978,
+ "ether": 1979,
+ "ptions": 1980,
+ "itu": 1981,
+ "lib": 1982,
+ "ns": 1983,
+ "ki": 1984,
+ "▁working": 1985,
+ "▁como": 1986,
+ "▁Then": 1987,
+ "ML": 1988,
+ "key": 1989,
+ "class": 1990,
+ "ople": 1991,
+ "ittle": 1992,
+ "▁match": 1993,
+ "ways": 1994,
+ "mathbb": 1995,
+ "▁require": 1996,
+ "alt": 1997,
+ "▁vis": 1998,
+ "▁bl": 1999,
+ "▁called": 2000,
+ "Item": 2001,
+ "ura": 2002,
+ "vec": 2003,
+ "eme": 2004,
+ "▁della": 2005,
+ "embre": 2006,
+ "urg": 2007,
+ "Se": 2008,
+ "▁request": 2009,
+ "ische": 2010,
+ "▁port": 2011,
+ "▁instead": 2012,
+ "=\\": 2013,
+ "▁У": 2014,
+ "hor": 2015,
+ "ente": 2016,
+ "ume": 2017,
+ "erd": 2018,
+ "са": 2019,
+ "▁why": 2020,
+ "rist": 2021,
+ "▁person": 2022,
+ "▁...": 2023,
+ "▁private": 2024,
+ "▁tot": 2025,
+ "pha": 2026,
+ "ift": 2027,
+ "ita": 2028,
+ "loc": 2029,
+ "▁old": 2030,
+ "он": 2031,
+ "▁nel": 2032,
+ "']": 2033,
+ "ti": 2034,
+ "iet": 2035,
+ "cite": 2036,
+ "plement": 2037,
+ "▁above": 2038,
+ "ks": 2039,
+ "ready": 2040,
+ "▁come": 2041,
+ "section": 2042,
+ "▁Pol": 2043,
+ "▁writ": 2044,
+ "▁https": 2045,
+ "▁$$": 2046,
+ "▁»": 2047,
+ "▁build": 2048,
+ "ito": 2049,
+ "▁consider": 2050,
+ "aft": 2051,
+ "App": 2052,
+ ",\\": 2053,
+ "indows": 2054,
+ "comm": 2055,
+ "▁;": 2056,
+ "ground": 2057,
+ "▁place": 2058,
+ "By": 2059,
+ "▁project": 2060,
+ "Object": 2061,
+ "▁repr": 2062,
+ "ences": 2063,
+ "indow": 2064,
+ "zt": 2065,
+ "▁files": 2066,
+ "cz": 2067,
+ "ivity": 2068,
+ "▁init": 2069,
+ "▁prob": 2070,
+ "▁sk": 2071,
+ "orth": 2072,
+ "iment": 2073,
+ "ouble": 2074,
+ "atal": 2075,
+ "irc": 2076,
+ "▁è": 2077,
+ "▁bre": 2078,
+ "ista": 2079,
+ "input": 2080,
+ "▁И": 2081,
+ "ной": 2082,
+ "sum": 2083,
+ "path": 2084,
+ "▁cour": 2085,
+ "▁too": 2086,
+ "▁Ad": 2087,
+ "▁Gu": 2088,
+ "▁false": 2089,
+ "▁fun": 2090,
+ "▁ст": 2091,
+ "ood": 2092,
+ "ès": 2093,
+ "▁enc": 2094,
+ "bol": 2095,
+ "rl": 2096,
+ "arget": 2097,
+ "order": 2098,
+ "▁mean": 2099,
+ "пе": 2100,
+ "igen": 2101,
+ "▁пре": 2102,
+ "width": 2103,
+ ";\r": 2104,
+ "itor": 2105,
+ "▁state": 2106,
+ "▁great": 2107,
+ "enn": 2108,
+ "bin": 2109,
+ "Er": 2110,
+ "Mod": 2111,
+ "oz": 2112,
+ "▁won": 2113,
+ "▁fact": 2114,
+ "▁java": 2115,
+ "▁Univers": 2116,
+ "▁cap": 2117,
+ "istor": 2118,
+ "}(": 2119,
+ "ku": 2120,
+ "ither": 2121,
+ "ales": 2122,
+ "▁ou": 2123,
+ "ross": 2124,
+ "▁take": 2125,
+ "rix": 2126,
+ "lob": 2127,
+ "▁eine": 2128,
+ "ases": 2129,
+ "▁access": 2130,
+ "ité": 2131,
+ "istr": 2132,
+ "ization": 2133,
+ "▁appro": 2134,
+ "ball": 2135,
+ "▁mak": 2136,
+ "}^": 2137,
+ "▁Cons": 2138,
+ "press": 2139,
+ "serv": 2140,
+ "().": 2141,
+ "af": 2142,
+ "▁ref": 2143,
+ ")\\": 2144,
+ "▁contin": 2145,
+ "su": 2146,
+ "iver": 2147,
+ "▁cond": 2148,
+ "▁expect": 2149,
+ "▁charact": 2150,
+ "bert": 2151,
+ "elt": 2152,
+ "ters": 2153,
+ "script": 2154,
+ "▁Ed": 2155,
+ "apt": 2156,
+ "');": 2157,
+ "print": 2158,
+ "▁size": 2159,
+ "▁sich": 2160,
+ "face": 2161,
+ "enden": 2162,
+ "▁Amer": 2163,
+ "ified": 2164,
+ "ów": 2165,
+ "▁Su": 2166,
+ "tes": 2167,
+ "med": 2168,
+ "▁Reg": 2169,
+ "sole": 2170,
+ "▁includ": 2171,
+ "ini": 2172,
+ "inci": 2173,
+ "▁pla": 2174,
+ "▁left": 2175,
+ "df": 2176,
+ "Par": 2177,
+ "▁All": 2178,
+ "▁occ": 2179,
+ "▁At": 2180,
+ "▁cr": 2181,
+ "Qu": 2182,
+ "▁given": 2183,
+ "▁System": 2184,
+ "ican": 2185,
+ "▁final": 2186,
+ "itions": 2187,
+ "▁бы": 2188,
+ "▁perform": 2189,
+ "AN": 2190,
+ "▁Me": 2191,
+ "uro": 2192,
+ "▁That": 2193,
+ "гра": 2194,
+ "▁По": 2195,
+ "▁ви": 2196,
+ "ably": 2197,
+ "▁present": 2198,
+ "duct": 2199,
+ "ric": 2200,
+ "▁Eng": 2201,
+ "try": 2202,
+ "▁lar": 2203,
+ "bl": 2204,
+ "idd": 2205,
+ "▁är": 2206,
+ "ora": 2207,
+ "LL": 2208,
+ "oss": 2209,
+ "▁ISBN": 2210,
+ "▁three": 2211,
+ "jo": 2212,
+ "ní": 2213,
+ "rc": 2214,
+ "▁far": 2215,
+ "▁Not": 2216,
+ "▁little": 2217,
+ "dis": 2218,
+ "ati": 2219,
+ "function": 2220,
+ "▁able": 2221,
+ "less": 2222,
+ "со": 2223,
+ "▁path": 2224,
+ "▁pres": 2225,
+ "lose": 2226,
+ "PI": 2227,
+ "▁issue": 2228,
+ "ackage": 2229,
+ "time": 2230,
+ "ige": 2231,
+ "ams": 2232,
+ "▁Cl": 2233,
+ "ails": 2234,
+ "alk": 2235,
+ "ii": 2236,
+ "ше": 2237,
+ "pen": 2238,
+ "QL": 2239,
+ "▁eas": 2240,
+ "RL": 2241,
+ "cel": 2242,
+ "▁sl": 2243,
+ "▁ask": 2244,
+ "▁nom": 2245,
+ "▁top": 2246,
+ "ides": 2247,
+ "index": 2248,
+ "ém": 2249,
+ "▁happ": 2250,
+ "ox": 2251,
+ "cd": 2252,
+ "▁better": 2253,
+ "▁load": 2254,
+ "ados": 2255,
+ "zen": 2256,
+ "▁ce": 2257,
+ "▁fa": 2258,
+ "▁John": 2259,
+ "IMA": 2260,
+ "▁Bar": 2261,
+ "overflow": 2262,
+ "▁де": 2263,
+ "ness": 2264,
+ "cer": 2265,
+ "▁Here": 2266,
+ "ret": 2267,
+ "▁sz": 2268,
+ "ambda": 2269,
+ "opy": 2270,
+ "url": 2271,
+ "py": 2272,
+ "rt": 2273,
+ "▁understand": 2274,
+ "ał": 2275,
+ "her": 2276,
+ "##": 2277,
+ "▁child": 2278,
+ "▁exec": 2279,
+ "▁application": 2280,
+ "▁struct": 2281,
+ "▁я": 2282,
+ "File": 2283,
+ "▁cert": 2284,
+ "ison": 2285,
+ "▁variable": 2286,
+ "DE": 2287,
+ "rs": 2288,
+ "▁really": 2289,
+ "Port": 2290,
+ "ba": 2291,
+ "▁Ber": 2292,
+ "▁inte": 2293,
+ "▁static": 2294,
+ "▁config": 2295,
+ "▁She": 2296,
+ "estions": 2297,
+ "▁plus": 2298,
+ "▁hab": 2299,
+ "ope": 2300,
+ "▁mus": 2301,
+ "▁count": 2302,
+ "ME": 2303,
+ "▁support": 2304,
+ "▁people": 2305,
+ "▁beh": 2306,
+ "▁already": 2307,
+ "Tr": 2308,
+ "▁done": 2309,
+ "dem": 2310,
+ "size": 2311,
+ "alpha": 2312,
+ "▁disc": 2313,
+ "])": 2314,
+ "▁Man": 2315,
+ "▁mil": 2316,
+ "▁stand": 2317,
+ "▁group": 2318,
+ "▁small": 2319,
+ "▁mag": 2320,
+ "сть": 2321,
+ "▁default": 2322,
+ "▁single": 2323,
+ "link": 2324,
+ "clude": 2325,
+ "▁ear": 2326,
+ "ilar": 2327,
+ "****": 2328,
+ "▁fix": 2329,
+ "ley": 2330,
+ "▁pas": 2331,
+ "ний": 2332,
+ "ission": 2333,
+ "▁implement": 2334,
+ "itch": 2335,
+ "▁года": 2336,
+ "▁always": 2337,
+ "▁Jah": 2338,
+ "pring": 2339,
+ "ção": 2340,
+ "plate": 2341,
+ "▁descri": 2342,
+ "▁head": 2343,
+ "init": 2344,
+ "ograf": 2345,
+ "▁query": 2346,
+ "ived": 2347,
+ "▁ing": 2348,
+ "pty": 2349,
+ "ha": 2350,
+ "▁mov": 2351,
+ "▁э": 2352,
+ "ette": 2353,
+ "ily": 2354,
+ "▁got": 2355,
+ "iled": 2356,
+ "icro": 2357,
+ "▁wr": 2358,
+ "ря": 2359,
+ "▁never": 2360,
+ "ores": 2361,
+ "▁bas": 2362,
+ "ios": 2363,
+ "lack": 2364,
+ "aint": 2365,
+ "vious": 2366,
+ "▁give": 2367,
+ "idad": 2368,
+ "En": 2369,
+ "ный": 2370,
+ "table": 2371,
+ "▁На": 2372,
+ "▁pat": 2373,
+ "тор": 2374,
+ "angu": 2375,
+ "loy": 2376,
+ "▁seg": 2377,
+ "array": 2378,
+ "▁Fl": 2379,
+ "▁index": 2380,
+ "▁sw": 2381,
+ "IMAGE": 2382,
+ "▁km": 2383,
+ "би": 2384,
+ "Class": 2385,
+ "ena": 2386,
+ "мен": 2387,
+ "comp": 2388,
+ "atus": 2389,
+ "rap": 2390,
+ "▁List": 2391,
+ "Error": 2392,
+ "▁typ": 2393,
+ "▁ма": 2394,
+ "cs": 2395,
+ "':": 2396,
+ "ji": 2397,
+ "▁However": 2398,
+ "▁те": 2399,
+ "▁below": 2400,
+ "▁App": 2401,
+ "ще": 2402,
+ "}_": 2403,
+ "bum": 2404,
+ "vir": 2405,
+ "ées": 2406,
+ "▁record": 2407,
+ "tain": 2408,
+ "lem": 2409,
+ "ital": 2410,
+ "▁imp": 2411,
+ "ego": 2412,
+ "▁od": 2413,
+ "▁rece": 2414,
+ "mit": 2415,
+ "ffic": 2416,
+ "stackoverflow": 2417,
+ "ieve": 2418,
+ "▁З": 2419,
+ "▁nov": 2420,
+ "це": 2421,
+ "▁Intern": 2422,
+ "bu": 2423,
+ "▁sugg": 2424,
+ "▁loop": 2425,
+ "ride": 2426,
+ "▁$(": 2427,
+ "▁super": 2428,
+ "rid": 2429,
+ "ных": 2430,
+ "▁Per": 2431,
+ "▁dom": 2432,
+ "='": 2433,
+ "utsch": 2434,
+ "len": 2435,
+ "▁write": 2436,
+ "▁inv": 2437,
+ "outh": 2438,
+ "▁Her": 2439,
+ "▁years": 2440,
+ "▁original": 2441,
+ "ega": 2442,
+ "▁Ste": 2443,
+ "▁seems": 2444,
+ "ég": 2445,
+ "▁next": 2446,
+ "eder": 2447,
+ "▁Ne": 2448,
+ "avas": 2449,
+ "ification": 2450,
+ "Exception": 2451,
+ "▁Der": 2452,
+ "▁ve": 2453,
+ "atic": 2454,
+ "hat": 2455,
+ "brary": 2456,
+ "return": 2457,
+ "urch": 2458,
+ "ision": 2459,
+ "mi": 2460,
+ "oint": 2461,
+ "▁day": 2462,
+ "iction": 2463,
+ "ál": 2464,
+ "▁és": 2465,
+ "▁though": 2466,
+ "action": 2467,
+ "ít": 2468,
+ "ungen": 2469,
+ "ours": 2470,
+ "▁script": 2471,
+ "▁information": 2472,
+ "▁multi": 2473,
+ "▁\\\\": 2474,
+ "ster": 2475,
+ "ке": 2476,
+ "AC": 2477,
+ "cies": 2478,
+ "▁display": 2479,
+ "oman": 2480,
+ "Time": 2481,
+ "ius": 2482,
+ "));": 2483,
+ "tre": 2484,
+ "▁lim": 2485,
+ "ately": 2486,
+ "éd": 2487,
+ "iste": 2488,
+ "▁са": 2489,
+ "post": 2490,
+ "uel": 2491,
+ "img": 2492,
+ "▁ч": 2493,
+ "ска": 2494,
+ "eld": 2495,
+ "pper": 2496,
+ "ula": 2497,
+ "▁general": 2498,
+ "Al": 2499,
+ "Form": 2500,
+ "▁upon": 2501,
+ "zo": 2502,
+ "amente": 2503,
+ "▁prom": 2504,
+ "▁ü": 2505,
+ "lex": 2506,
+ "▁turn": 2507,
+ "▁ме": 2508,
+ "ention": 2509,
+ "лен": 2510,
+ "▁af": 2511,
+ "icle": 2512,
+ "ств": 2513,
+ "▁Fil": 2514,
+ "▁Ф": 2515,
+ "avascript": 2516,
+ "Man": 2517,
+ "ara": 2518,
+ "ware": 2519,
+ "align": 2520,
+ "angle": 2521,
+ "▁Sc": 2522,
+ "unic": 2523,
+ "▁fran": 2524,
+ "Un": 2525,
+ "zi": 2526,
+ "met": 2527,
+ "Add": 2528,
+ "▁pub": 2529,
+ "ков": 2530,
+ "▁gen": 2531,
+ "▁pod": 2532,
+ "▁sum": 2533,
+ "▁having": 2534,
+ "▁avec": 2535,
+ "sl": 2536,
+ "▁fig": 2537,
+ "▁Res": 2538,
+ "Date": 2539,
+ "ules": 2540,
+ "with": 2541,
+ "ский": 2542,
+ "gu": 2543,
+ "ET": 2544,
+ "▁bro": 2545,
+ "rie": 2546,
+ "aps": 2547,
+ "ending": 2548,
+ "mail": 2549,
+ "ook": 2550,
+ "▁success": 2551,
+ "berg": 2552,
+ "▁deb": 2553,
+ "elta": 2554,
+ "()`": 2555,
+ "ential": 2556,
+ "frame": 2557,
+ "Key": 2558,
+ "inn": 2559,
+ "▁simple": 2560,
+ "ival": 2561,
+ "▁care": 2562,
+ "▁Web": 2563,
+ "\").": 2564,
+ ">": 2565,
+ "▁database": 2566,
+ "▁Now": 2567,
+ "Ind": 2568,
+ "▁мо": 2569,
+ "cht": 2570,
+ "ban": 2571,
+ "ram": 2572,
+ "equation": 2573,
+ "ski": 2574,
+ "ief": 2575,
+ "lim": 2576,
+ "Get": 2577,
+ "▁tre": 2578,
+ "aten": 2579,
+ "bed": 2580,
+ "▁Je": 2581,
+ "▁results": 2582,
+ "лю": 2583,
+ "тель": 2584,
+ "db": 2585,
+ "▁bit": 2586,
+ "body": 2587,
+ "Array": 2588,
+ "mu": 2589,
+ "pression": 2590,
+ "▁ста": 2591,
+ "ony": 2592,
+ "iff": 2593,
+ "▁bar": 2594,
+ "▁Arch": 2595,
+ "bers": 2596,
+ "){": 2597,
+ "▁Mon": 2598,
+ "▁doing": 2599,
+ "▁prof": 2600,
+ "▁install": 2601,
+ "▁position": 2602,
+ "ema": 2603,
+ "▁});": 2604,
+ "Path": 2605,
+ "ali": 2606,
+ "▁&&": 2607,
+ "lev": 2608,
+ "▁cannot": 2609,
+ "▁May": 2610,
+ "inst": 2611,
+ "-\\": 2612,
+ "▁coun": 2613,
+ "▁ang": 2614,
+ "▁appear": 2615,
+ "cor": 2616,
+ "ció": 2617,
+ "ided": 2618,
+ "questions": 2619,
+ "atter": 2620,
+ "▁Pa": 2621,
+ "select": 2622,
+ "▁princi": 2623,
+ "Event": 2624,
+ "▁side": 2625,
+ "▁mem": 2626,
+ "▁Jan": 2627,
+ "ario": 2628,
+ "▁within": 2629,
+ "▁Val": 2630,
+ "odes": 2631,
+ "iddle": 2632,
+ "uration": 2633,
+ "bra": 2634,
+ "▁date": 2635,
+ "[]": 2636,
+ "▁entre": 2637,
+ "ili": 2638,
+ "Portail": 2639,
+ "docs": 2640,
+ "ской": 2641,
+ "Element": 2642,
+ "▁message": 2643,
+ "▁nach": 2644,
+ "▁during": 2645,
+ "▁gra": 2646,
+ "etwork": 2647,
+ "▁By": 2648,
+ "▁tell": 2649,
+ "ete": 2650,
+ "~\\": 2651,
+ "▁bis": 2652,
+ "▁pu": 2653,
+ "▁red": 2654,
+ "▁thing": 2655,
+ "▁sort": 2656,
+ "xim": 2657,
+ "ires": 2658,
+ "User": 2659,
+ "iod": 2660,
+ "▁Est": 2661,
+ "osed": 2662,
+ "oute": 2663,
+ "▁Les": 2664,
+ "▁sent": 2665,
+ "ribute": 2666,
+ "utes": 2667,
+ "istory": 2668,
+ "▁service": 2669,
+ "';": 2670,
+ "field": 2671,
+ "▁IN": 2672,
+ "ension": 2673,
+ "rel": 2674,
+ "▁going": 2675,
+ "web": 2676,
+ "Context": 2677,
+ "▁later": 2678,
+ "uk": 2679,
+ "layout": 2680,
+ "ona": 2681,
+ "át": 2682,
+ "----------------": 2683,
+ "▁exact": 2684,
+ "andom": 2685,
+ "▁sie": 2686,
+ "II": 2687,
+ "▁They": 2688,
+ "mente": 2689,
+ "ibli": 2690,
+ "▁fine": 2691,
+ "UT": 2692,
+ "▁develop": 2693,
+ "▁Ein": 2694,
+ "soft": 2695,
+ "off": 2696,
+ "Set": 2697,
+ "▁az": 2698,
+ "eters": 2699,
+ "ilder": 2700,
+ "ples": 2701,
+ "▁specific": 2702,
+ "▁om": 2703,
+ "error": 2704,
+ "ently": 2705,
+ "▁film": 2706,
+ "uck": 2707,
+ "ains": 2708,
+ "ación": 2709,
+ "ges": 2710,
+ "жа": 2711,
+ "▁things": 2712,
+ "Sh": 2713,
+ "▁thought": 2714,
+ "▁added": 2715,
+ "dep": 2716,
+ "ского": 2717,
+ "▁Li": 2718,
+ "ils": 2719,
+ "ync": 2720,
+ "▁то": 2721,
+ "ries": 2722,
+ "▁cu": 2723,
+ "chen": 2724,
+ "ION": 2725,
+ "▁Des": 2726,
+ "ultado": 2727,
+ "irt": 2728,
+ "▁based": 2729,
+ "▁mo": 2730,
+ "▁dest": 2731,
+ "png": 2732,
+ "reen": 2733,
+ "▁running": 2734,
+ "amma": 2735,
+ "oud": 2736,
+ "▁refer": 2737,
+ "ious": 2738,
+ "▁Jul": 2739,
+ "▁search": 2740,
+ "ald": 2741,
+ "ede": 2742,
+ "▁wrong": 2743,
+ "An": 2744,
+ "▁until": 2745,
+ "site": 2746,
+ "ayer": 2747,
+ "▁once": 2748,
+ "arr": 2749,
+ "▁against": 2750,
+ "====": 2751,
+ "▁source": 2752,
+ "arn": 2753,
+ "api": 2754,
+ "▁represent": 2755,
+ "▁aff": 2756,
+ "▁sein": 2757,
+ "▁allow": 2758,
+ "ormal": 2759,
+ "ended": 2760,
+ "▁control": 2761,
+ "mathbf": 2762,
+ "come": 2763,
+ "cur": 2764,
+ "endo": 2765,
+ "wa": 2766,
+ "▁update": 2767,
+ "▁inside": 2768,
+ "▁reason": 2769,
+ "omen": 2770,
+ "▁вы": 2771,
+ "De": 2772,
+ "▁је": 2773,
+ "sw": 2774,
+ "▁sever": 2775,
+ "Of": 2776,
+ "▁instance": 2777,
+ "▁mer": 2778,
+ "▁effect": 2779,
+ "color": 2780,
+ "ugust": 2781,
+ "ilt": 2782,
+ "des": 2783,
+ "itz": 2784,
+ "ulation": 2785,
+ "nie": 2786,
+ "▁World": 2787,
+ "▁similar": 2788,
+ "ymbol": 2789,
+ "hing": 2790,
+ "▁mark": 2791,
+ "State": 2792,
+ "▁content": 2793,
+ "▁means": 2794,
+ "amed": 2795,
+ "▁End": 2796,
+ "ND": 2797,
+ "count": 2798,
+ "▁Inst": 2799,
+ "perty": 2800,
+ "ctor": 2801,
+ "▁{\\": 2802,
+ "▁Let": 2803,
+ "▁!=": 2804,
+ "▁getting": 2805,
+ "uth": 2806,
+ "umber": 2807,
+ "▁Consultado": 2808,
+ "schaft": 2809,
+ "lete": 2810,
+ "▁Will": 2811,
+ "▁Em": 2812,
+ "head": 2813,
+ "▁leg": 2814,
+ "ном": 2815,
+ "Or": 2816,
+ "arm": 2817,
+ "pond": 2818,
+ "▁Christ": 2819,
+ "▁around": 2820,
+ "▁clear": 2821,
+ "▁href": 2822,
+ "▁See": 2823,
+ "').": 2824,
+ "▁created": 2825,
+ "▁button": 2826,
+ "ining": 2827,
+ "▁click": 2828,
+ "iam": 2829,
+ "plit": 2830,
+ "For": 2831,
+ "▁polit": 2832,
+ "▁seem": 2833,
+ "▁life": 2834,
+ "нов": 2835,
+ "▁intern": 2836,
+ "щи": 2837,
+ "sel": 2838,
+ "soci": 2839,
+ "▁stor": 2840,
+ "cle": 2841,
+ "earch": 2842,
+ "android": 2843,
+ "}^{": 2844,
+ "▁either": 2845,
+ "▁few": 2846,
+ "▁initial": 2847,
+ "length": 2848,
+ "ria": 2849,
+ "sql": 2850,
+ "wik": 2851,
+ "▁ét": 2852,
+ "uer": 2853,
+ "▁valid": 2854,
+ "And": 2855,
+ "include": 2856,
+ "ury": 2857,
+ "▁sus": 2858,
+ "ired": 2859,
+ "▁After": 2860,
+ "▁due": 2861,
+ "▁bei": 2862,
+ "ources": 2863,
+ "▁Nov": 2864,
+ "Act": 2865,
+ "▁Cont": 2866,
+ "▁break": 2867,
+ "ested": 2868,
+ "▁actually": 2869,
+ "else": 2870,
+ "tml": 2871,
+ "rer": 2872,
+ "ones": 2873,
+ "▁design": 2874,
+ "▁property": 2875,
+ "phi": 2876,
+ "ality": 2877,
+ "och": 2878,
+ "ists": 2879,
+ "▁·": 2880,
+ "udio": 2881,
+ "AB": 2882,
+ "ala": 2883,
+ "iones": 2884,
+ "фи": 2885,
+ "find": 2886,
+ "As": 2887,
+ "▁custom": 2888,
+ "▁ann": 2889,
+ "ES": 2890,
+ "OT": 2891,
+ "lambda": 2892,
+ "▁ident": 2893,
+ "▁organ": 2894,
+ "▁Cent": 2895,
+ "▁Char": 2896,
+ "▁os": 2897,
+ "▁hard": 2898,
+ "ров": 2899,
+ "▁/>": 2900,
+ "ko": 2901,
+ "▁exper": 2902,
+ "▁separ": 2903,
+ "yl": 2904,
+ "ourn": 2905,
+ "▁dev": 2906,
+ "▁auch": 2907,
+ "▁block": 2908,
+ "book": 2909,
+ "▁map": 2910,
+ "illa": 2911,
+ "▁comput": 2912,
+ "▁space": 2913,
+ "result": 2914,
+ ")}": 2915,
+ "▁echo": 2916,
+ "config": 2917,
+ "hi": 2918,
+ "▁large": 2919,
+ "▁width": 2920,
+ "▁Go": 2921,
+ "mat": 2922,
+ "▁diff": 2923,
+ "▁kind": 2924,
+ "ances": 2925,
+ "ynam": 2926,
+ "▁color": 2927,
+ "Int": 2928,
+ "sol": 2929,
+ "▁pi": 2930,
+ "▁character": 2931,
+ "oment": 2932,
+ "▁response": 2933,
+ "igma": 2934,
+ "wards": 2935,
+ "arrow": 2936,
+ "су": 2937,
+ "ties": 2938,
+ "▁über": 2939,
+ "Image": 2940,
+ "yd": 2941,
+ "▁пере": 2942,
+ "▁node": 2943,
+ "▁item": 2944,
+ "achine": 2945,
+ "ima": 2946,
+ "▁va": 2947,
+ "▁approach": 2948,
+ "▁wer": 2949,
+ "▁че": 2950,
+ "On": 2951,
+ "ollow": 2952,
+ "она": 2953,
+ "cted": 2954,
+ "ured": 2955,
+ "Controller": 2956,
+ "lied": 2957,
+ "▁jo": 2958,
+ "▁dal": 2959,
+ "unk": 2960,
+ "▁î": 2961,
+ "start": 2962,
+ "ola": 2963,
+ "▁compon": 2964,
+ "IC": 2965,
+ "bit": 2966,
+ "▁base": 2967,
+ "пу": 2968,
+ "▁idea": 2969,
+ "▁dire": 2970,
+ "▁rad": 2971,
+ "group": 2972,
+ "▁With": 2973,
+ "server": 2974,
+ "side": 2975,
+ "sing": 2976,
+ "▁dies": 2977,
+ "▁near": 2978,
+ "▁voor": 2979,
+ "▁argument": 2980,
+ "▁},": 2981,
+ "▁land": 2982,
+ "▁names": 2983,
+ "▁option": 2984,
+ "ithub": 2985,
+ "pped": 2986,
+ "aug": 2987,
+ "▁links": 2988,
+ "▁full": 2989,
+ "▁situ": 2990,
+ "▁console": 2991,
+ "▁etc": 2992,
+ "aux": 2993,
+ "▁Cor": 2994,
+ "icrosoft": 2995,
+ "▁came": 2996,
+ "local": 2997,
+ "▁known": 2998,
+ "▁multiple": 2999,
+ "anguage": 3000,
+ "▁total": 3001,
+ "ology": 3002,
+ "ät": 3003,
+ "▁Х": 3004,
+ "▁fre": 3005,
+ "▁ten": 3006,
+ "ideo": 3007,
+ "▁bes": 3008,
+ "true": 3009,
+ "Query": 3010,
+ "omm": 3011,
+ "▁Art": 3012,
+ "▁keep": 3013,
+ "▁University": 3014,
+ "reate": 3015,
+ "pport": 3016,
+ "▁python": 3017,
+ "tra": 3018,
+ "ector": 3019,
+ "рі": 3020,
+ "oph": 3021,
+ "▁conc": 3022,
+ "▁four": 3023,
+ "viron": 3024,
+ "▁via": 3025,
+ "?\"": 3026,
+ "image": 3027,
+ "oll": 3028,
+ "ные": 3029,
+ "▁context": 3030,
+ "▁sem": 3031,
+ "._": 3032,
+ "▁eng": 3033,
+ "mar": 3034,
+ "AD": 3035,
+ "▁mor": 3036,
+ "▁Cal": 3037,
+ "▁cell": 3038,
+ "imal": 3039,
+ "ATE": 3040,
+ "▁inf": 3041,
+ "ön": 3042,
+ "uffer": 3043,
+ "sq": 3044,
+ "....": 3045,
+ "▁zur": 3046,
+ "With": 3047,
+ "ран": 3048,
+ "chn": 3049,
+ "▁door": 3050,
+ "content": 3051,
+ "▁miss": 3052,
+ "▁simp": 3053,
+ "ár": 3054,
+ "ira": 3055,
+ "▁hat": 3056,
+ "Test": 3057,
+ "▁certain": 3058,
+ "NS": 3059,
+ "▁cho": 3060,
+ "▁adv": 3061,
+ "where": 3062,
+ "▁looking": 3063,
+ "▁times": 3064,
+ "них": 3065,
+ "uto": 3066,
+ "▁É": 3067,
+ "can": 3068,
+ "host": 3069,
+ "▁(*": 3070,
+ "loat": 3071,
+ "▁nicht": 3072,
+ "Field": 3073,
+ "burg": 3074,
+ "const": 3075,
+ "ades": 3076,
+ "▁Mus": 3077,
+ "▁nothing": 3078,
+ "▁incre": 3079,
+ "▁Min": 3080,
+ "▁power": 3081,
+ "▁American": 3082,
+ "ln": 3083,
+ "valid": 3084,
+ "ungs": 3085,
+ "▁National": 3086,
+ "▁San": 3087,
+ "▁York": 3088,
+ "Request": 3089,
+ "char": 3090,
+ "▁Ze": 3091,
+ "button": 3092,
+ "▁alg": 3093,
+ "SON": 3094,
+ "▁ap": 3095,
+ "uff": 3096,
+ "ability": 3097,
+ "ем": 3098,
+ "▁anything": 3099,
+ "ela": 3100,
+ "())": 3101,
+ "ба": 3102,
+ "ampion": 3103,
+ "▁pot": 3104,
+ "▁fut": 3105,
+ "ailable": 3106,
+ "▁prop": 3107,
+ "\"]": 3108,
+ "▁less": 3109,
+ "lag": 3110,
+ "▁August": 3111,
+ "It": 3112,
+ "▁please": 3113,
+ "▁style": 3114,
+ "▁Also": 3115,
+ "bt": 3116,
+ "▁probably": 3117,
+ "▁One": 3118,
+ "▁poss": 3119,
+ "UI": 3120,
+ "uit": 3121,
+ "▁West": 3122,
+ "hn": 3123,
+ "+\\": 3124,
+ "Button": 3125,
+ "json": 3126,
+ "err": 3127,
+ "rame": 3128,
+ "dom": 3129,
+ "ilon": 3130,
+ "alf": 3131,
+ "▁client": 3132,
+ "▁continu": 3133,
+ "xml": 3134,
+ "pec": 3135,
+ "ador": 3136,
+ "ls": 3137,
+ "▁however": 3138,
+ "▁Any": 3139,
+ "änd": 3140,
+ "mathrm": 3141,
+ "▁url": 3142,
+ "▁book": 3143,
+ "▁gl": 3144,
+ "ives": 3145,
+ "gi": 3146,
+ "▁tro": 3147,
+ "▁US": 3148,
+ "point": 3149,
+ "open": 3150,
+ "▁cur": 3151,
+ "▁era": 3152,
+ "▁particular": 3153,
+ "▁HT": 3154,
+ "oot": 3155,
+ "ello": 3156,
+ "lobal": 3157,
+ "▁action": 3158,
+ "▁Int": 3159,
+ "▁include": 3160,
+ "▁elements": 3161,
+ "ная": 3162,
+ "ards": 3163,
+ "▁Bl": 3164,
+ "▁hum": 3165,
+ "from": 3166,
+ "change": 3167,
+ "▁functions": 3168,
+ "hen": 3169,
+ "Service": 3170,
+ "▁height": 3171,
+ "▁Land": 3172,
+ "ias": 3173,
+ "gs": 3174,
+ "ión": 3175,
+ "лов": 3176,
+ "node": 3177,
+ ".”": 3178,
+ "hand": 3179,
+ "▁бу": 3180,
+ "▁amb": 3181,
+ "▁Lu": 3182,
+ "▁throw": 3183,
+ "▁mot": 3184,
+ "▁Act": 3185,
+ "▁world": 3186,
+ "_\\": 3187,
+ "base": 3188,
+ "▁Co": 3189,
+ "▁arch": 3190,
+ "▁####": 3191,
+ "ged": 3192,
+ "pril": 3193,
+ "older": 3194,
+ "Model": 3195,
+ "▁several": 3196,
+ "lie": 3197,
+ "check": 3198,
+ "]{": 3199,
+ "cons": 3200,
+ "▁Tra": 3201,
+ "heck": 3202,
+ "▁least": 3203,
+ "down": 3204,
+ "ebru": 3205,
+ "Def": 3206,
+ "param": 3207,
+ "ischer": 3208,
+ "▁cas": 3209,
+ "CH": 3210,
+ "▁address": 3211,
+ "▁раз": 3212,
+ "ufen": 3213,
+ "urope": 3214,
+ "ей": 3215,
+ "▁bound": 3216,
+ "CO": 3217,
+ "▁Ang": 3218,
+ "▁Ma": 3219,
+ "Index": 3220,
+ "core": 3221,
+ "ouch": 3222,
+ "atabase": 3223,
+ "ribution": 3224,
+ "document": 3225,
+ "Le": 3226,
+ "}_{": 3227,
+ "vern": 3228,
+ "▁statement": 3229,
+ "▁Brit": 3230,
+ "ono": 3231,
+ "psilon": 3232,
+ "▁level": 3233,
+ "▁product": 3234,
+ "IS": 3235,
+ "▁course": 3236,
+ "▁Mr": 3237,
+ ">\r": 3238,
+ "▁background": 3239,
+ "▁ret": 3240,
+ "ering": 3241,
+ "most": 3242,
+ "сько": 3243,
+ "▁thread": 3244,
+ "itional": 3245,
+ "ites": 3246,
+ "Pl": 3247,
+ "▁dos": 3248,
+ "ga": 3249,
+ "day": 3250,
+ "▁Gener": 3251,
+ "▁tw": 3252,
+ "Ad": 3253,
+ "\"><": 3254,
+ "▁($": 3255,
+ "▁moment": 3256,
+ "title": 3257,
+ "create": 3258,
+ "version": 3259,
+ "Manager": 3260,
+ "▁fur": 3261,
+ "pping": 3262,
+ "ijn": 3263,
+ "ос": 3264,
+ "▁rather": 3265,
+ "ptember": 3266,
+ "OS": 3267,
+ "▁site": 3268,
+ "▁caus": 3269,
+ "ani": 3270,
+ "▁home": 3271,
+ "мі": 3272,
+ "▁short": 3273,
+ "pa": 3274,
+ "▁lead": 3275,
+ "ished": 3276,
+ "cing": 3277,
+ "ording": 3278,
+ "▁prote": 3279,
+ "сле": 3280,
+ "LECT": 3281,
+ "▁didn": 3282,
+ "position": 3283,
+ "\",\"": 3284,
+ "(),": 3285,
+ "trans": 3286,
+ "▁lot": 3287,
+ "▁од": 3288,
+ "AS": 3289,
+ "▁sat": 3290,
+ "▁points": 3291,
+ "github": 3292,
+ "style": 3293,
+ "▁году": 3294,
+ "▁Dis": 3295,
+ "ponent": 3296,
+ "omet": 3297,
+ "zer": 3298,
+ "ULL": 3299,
+ "▁pa": 3300,
+ "AP": 3301,
+ "aces": 3302,
+ "▁United": 3303,
+ "ama": 3304,
+ "ety": 3305,
+ "Color": 3306,
+ "▁enough": 3307,
+ "US": 3308,
+ "▁length": 3309,
+ "());": 3310,
+ "^{\\": 3311,
+ "fty": 3312,
+ "Box": 3313,
+ "apter": 3314,
+ "▁complet": 3315,
+ "ник": 3316,
+ "max": 3317,
+ "object": 3318,
+ "({": 3319,
+ "imgur": 3320,
+ "itive": 3321,
+ "unch": 3322,
+ "▁Sub": 3323,
+ "ende": 3324,
+ "гу": 3325,
+ "ategory": 3326,
+ "ты": 3327,
+ "iano": 3328,
+ "▁upd": 3329,
+ "▁Aust": 3330,
+ "}{\\": 3331,
+ "top": 3332,
+ "las": 3333,
+ "pis": 3334,
+ "iness": 3335,
+ "▁{\r": 3336,
+ "▁Е": 3337,
+ "Gr": 3338,
+ "▁AS": 3339,
+ "▁ве": 3340,
+ "thers": 3341,
+ "▁defined": 3342,
+ "azione": 3343,
+ "▁offic": 3344,
+ "▁autom": 3345,
+ "ün": 3346,
+ "▁brow": 3347,
+ "▁serv": 3348,
+ "▁remove": 3349,
+ "iro": 3350,
+ "▁Bibli": 3351,
+ "ED": 3352,
+ "▁whole": 3353,
+ "▁ш": 3354,
+ "▁Java": 3355,
+ "▁zum": 3356,
+ "ua": 3357,
+ "pm": 3358,
+ "dev": 3359,
+ "кра": 3360,
+ "olds": 3361,
+ "▁War": 3362,
+ "än": 3363,
+ "pass": 3364,
+ "uz": 3365,
+ "[\"": 3366,
+ "▁tri": 3367,
+ "ised": 3368,
+ "ха": 3369,
+ "▁memory": 3370,
+ "▁Port": 3371,
+ "oper": 3372,
+ "Up": 3373,
+ "▁Thank": 3374,
+ "▁Mich": 3375,
+ "ych": 3376,
+ "board": 3377,
+ "бу": 3378,
+ "Inst": 3379,
+ "▁begin": 3380,
+ "ination": 3381,
+ "▁Mod": 3382,
+ "_,": 3383,
+ "▁Den": 3384,
+ "option": 3385,
+ "▁construct": 3386,
+ "▁Just": 3387,
+ "Map": 3388,
+ "run": 3389,
+ "▁respect": 3390,
+ "ham": 3391,
+ "ман": 3392,
+ "imedia": 3393,
+ "▁apply": 3394,
+ "cription": 3395,
+ "main": 3396,
+ "▁Ка": 3397,
+ "oid": 3398,
+ "Code": 3399,
+ "};": 3400,
+ "Info": 3401,
+ "▁format": 3402,
+ "Log": 3403,
+ "▁су": 3404,
+ "▁lat": 3405,
+ "utor": 3406,
+ "▁reference": 3407,
+ "▁calcul": 3408,
+ "onn": 3409,
+ "Lo": 3410,
+ "infty": 3411,
+ "▁along": 3412,
+ "▁č": 3413,
+ "▁task": 3414,
+ "▁ev": 3415,
+ "theta": 3416,
+ "ras": 3417,
+ "jor": 3418,
+ "▁бо": 3419,
+ "▁princip": 3420,
+ "My": 3421,
+ "▁einer": 3422,
+ "▁Es": 3423,
+ "omb": 3424,
+ "quad": 3425,
+ "^{-": 3426,
+ "ump": 3427,
+ "▁till": 3428,
+ "ді": 3429,
+ "▁looks": 3430,
+ "▁ok": 3431,
+ "ца": 3432,
+ "nu": 3433,
+ "Fil": 3434,
+ "▁sont": 3435,
+ "▁Med": 3436,
+ "ague": 3437,
+ "▁cost": 3438,
+ "▁Sim": 3439,
+ "▁comment": 3440,
+ "▁(\\": 3441,
+ "egen": 3442,
+ "▁parameter": 3443,
+ "▁France": 3444,
+ "rep": 3445,
+ "▁TH": 3446,
+ "▁yet": 3447,
+ "▁away": 3448,
+ "▁circ": 3449,
+ "▁API": 3450,
+ "emp": 3451,
+ "ві": 3452,
+ "Layout": 3453,
+ "▁lines": 3454,
+ "▁Part": 3455,
+ "empt": 3456,
+ "▁Bi": 3457,
+ "▁mind": 3458,
+ "ky": 3459,
+ "ging": 3460,
+ "▁report": 3461,
+ "▁Add": 3462,
+ "род": 3463,
+ "▁range": 3464,
+ "cias": 3465,
+ "lip": 3466,
+ "▁Kar": 3467,
+ "▁Commons": 3468,
+ "gerufen": 3469,
+ "aff": 3470,
+ "sec": 3471,
+ "▁html": 3472,
+ "lig": 3473,
+ "▁window": 3474,
+ "inition": 3475,
+ "cis": 3476,
+ "▁ut": 3477,
+ "eln": 3478,
+ "▁aux": 3479,
+ "▁neg": 3480,
+ "Hand": 3481,
+ "▁);": 3482,
+ "▁anal": 3483,
+ "▁fri": 3484,
+ "▁си": 3485,
+ "etch": 3486,
+ "md": 3487,
+ "page": 3488,
+ "▁library": 3489,
+ "▁:=": 3490,
+ "ROM": 3491,
+ "You": 3492,
+ "space": 3493,
+ "▁durch": 3494,
+ "▁host": 3495,
+ "aven": 3496,
+ "▁File": 3497,
+ "alle": 3498,
+ "тив": 3499,
+ "▁pap": 3500,
+ "ство": 3501,
+ "mark": 3502,
+ "▁mais": 3503,
+ "erman": 3504,
+ "Size": 3505,
+ "ек": 3506,
+ "▁Ма": 3507,
+ "▁isn": 3508,
+ "▁copy": 3509,
+ "sten": 3510,
+ "river": 3511,
+ "▁went": 3512,
+ "▁javascript": 3513,
+ "▁sam": 3514,
+ "▁frame": 3515,
+ "▁vi": 3516,
+ "▁previous": 3517,
+ "rodu": 3518,
+ "▁methods": 3519,
+ "▁necess": 3520,
+ "NA": 3521,
+ "cket": 3522,
+ "▁opt": 3523,
+ "Loc": 3524,
+ "how": 3525,
+ "▁în": 3526,
+ "ship": 3527,
+ "▁itself": 3528,
+ "▁Please": 3529,
+ "iene": 3530,
+ "вер": 3531,
+ "▁<<": 3532,
+ "▁mill": 3533,
+ "▁trad": 3534,
+ "pace": 3535,
+ "▁Har": 3536,
+ "iten": 3537,
+ "wise": 3538,
+ "write": 3539,
+ "ции": 3540,
+ "ры": 3541,
+ "Line": 3542,
+ "olo": 3543,
+ "▁accept": 3544,
+ "height": 3545,
+ "▁elect": 3546,
+ "ella": 3547,
+ "▁på": 3548,
+ "Select": 3549,
+ "▁ли": 3550,
+ "▁\\<": 3551,
+ "((": 3552,
+ "▁ID": 3553,
+ "ops": 3554,
+ "ван": 3555,
+ "ió": 3556,
+ "TP": 3557,
+ "»,": 3558,
+ "nection": 3559,
+ "parent": 3560,
+ "▁Mag": 3561,
+ "Table": 3562,
+ "Over": 3563,
+ "▁network": 3564,
+ "спо": 3565,
+ "▁assign": 3566,
+ "igger": 3567,
+ "irm": 3568,
+ ")`": 3569,
+ "ottom": 3570,
+ "beta": 3571,
+ "▁dell": 3572,
+ "▁body": 3573,
+ "▁да": 3574,
+ "▁Your": 3575,
+ "▁fue": 3576,
+ "▁package": 3577,
+ "▁light": 3578,
+ "▁**": 3579,
+ "MP": 3580,
+ "▁cou": 3581,
+ "yes": 3582,
+ ":\\": 3583,
+ "▁Ч": 3584,
+ "▁mention": 3585,
+ "ensch": 3586,
+ "▁deg": 3587,
+ "▁convert": 3588,
+ "▁Dav": 3589,
+ "adt": 3590,
+ "Result": 3591,
+ "though": 3592,
+ "▁bus": 3593,
+ "xy": 3594,
+ "▁seen": 3595,
+ "All": 3596,
+ "public": 3597,
+ "ively": 3598,
+ "▁Rec": 3599,
+ "▁His": 3600,
+ "sim": 3601,
+ "▁för": 3602,
+ "▁histor": 3603,
+ "▁sett": 3604,
+ "rat": 3605,
+ "abled": 3606,
+ "▁»,": 3607,
+ "google": 3608,
+ "Web": 3609,
+ "él": 3610,
+ "▁title": 3611,
+ "▁Janu": 3612,
+ "ја": 3613,
+ "▁took": 3614,
+ "iden": 3615,
+ "sz": 3616,
+ "▁Get": 3617,
+ "▁objects": 3618,
+ "▁common": 3619,
+ "▁changes": 3620,
+ "▁Lond": 3621,
+ "▁extern": 3622,
+ "▁ju": 3623,
+ "Is": 3624,
+ "▁available": 3625,
+ "tri": 3626,
+ "▁más": 3627,
+ "osa": 3628,
+ "Be": 3629,
+ "▁Data": 3630,
+ "ural": 3631,
+ "▁hom": 3632,
+ "▁account": 3633,
+ "oo": 3634,
+ "▁perm": 3635,
+ "respond": 3636,
+ "yt": 3637,
+ "▁send": 3638,
+ "▁returns": 3639,
+ "ivid": 3640,
+ "▁expla": 3641,
+ "ín": 3642,
+ "▁nor": 3643,
+ "If": 3644,
+ "▁From": 3645,
+ "▁target": 3646,
+ "fect": 3647,
+ "ент": 3648,
+ "▁uit": 3649,
+ "▁Jo": 3650,
+ "▁variables": 3651,
+ "▁series": 3652,
+ "▁func": 3653,
+ "▁himself": 3654,
+ "▁ча": 3655,
+ "anti": 3656,
+ "▁ach": 3657,
+ "ialog": 3658,
+ "▁std": 3659,
+ "ae": 3660,
+ "▁foot": 3661,
+ "▁unter": 3662,
+ "gress": 3663,
+ "Not": 3664,
+ "rad": 3665,
+ "fér": 3666,
+ "▁util": 3667,
+ "orem": 3668,
+ "▁sou": 3669,
+ "opt": 3670,
+ "▁og": 3671,
+ "▁uma": 3672,
+ "itar": 3673,
+ "▁Ok": 3674,
+ "ück": 3675,
+ "sqrt": 3676,
+ "▁ant": 3677,
+ "▁werden": 3678,
+ "år": 3679,
+ "});": 3680,
+ "▁Paris": 3681,
+ "▁exception": 3682,
+ "▁determ": 3683,
+ "▁Vol": 3684,
+ "▁Sam": 3685,
+ "▁ess": 3686,
+ "lies": 3687,
+ "ioni": 3688,
+ "oding": 3689,
+ "idget": 3690,
+ "▁pri": 3691,
+ "▁whether": 3692,
+ "▁под": 3693,
+ "▁numbers": 3694,
+ "▁~": 3695,
+ "event": 3696,
+ "▁shows": 3697,
+ "atures": 3698,
+ "▁house": 3699,
+ "▁face": 3700,
+ "▁się": 3701,
+ "vironment": 3702,
+ "van": 3703,
+ "▁including": 3704,
+ "▁<-": 3705,
+ "times": 3706,
+ "now": 3707,
+ "▁pur": 3708,
+ "ifier": 3709,
+ "▁emp": 3710,
+ "▁cla": 3711,
+ "mon": 3712,
+ "▁Das": 3713,
+ "ady": 3714,
+ "▁від": 3715,
+ "▁ц": 3716,
+ "abor": 3717,
+ "OST": 3718,
+ "▁band": 3719,
+ "▁ú": 3720,
+ "▁exactly": 3721,
+ "iert": 3722,
+ "avig": 3723,
+ "▁redu": 3724,
+ "▁SE": 3725,
+ "lished": 3726,
+ "Bu": 3727,
+ "Message": 3728,
+ "cell": 3729,
+ "fully": 3730,
+ "▁sv": 3731,
+ "▁makes": 3732,
+ "pol": 3733,
+ "▁required": 3734,
+ "ferrer": 3735,
+ "▁pers": 3736,
+ "▁mi": 3737,
+ "FI": 3738,
+ "▁Paul": 3739,
+ "▁UI": 3740,
+ "▁Bel": 3741,
+ "inc": 3742,
+ "▁contains": 3743,
+ "Out": 3744,
+ "asure": 3745,
+ "pu": 3746,
+ "oto": 3747,
+ "▁game": 3748,
+ "zn": 3749,
+ "▁Why": 3750,
+ "orith": 3751,
+ "big": 3752,
+ "кий": 3753,
+ "sigma": 3754,
+ "▁quite": 3755,
+ "▁jed": 3756,
+ "rec": 3757,
+ "▁SQL": 3758,
+ "бе": 3759,
+ "▁Mart": 3760,
+ "ya": 3761,
+ "▁school": 3762,
+ "▁simply": 3763,
+ "▁vor": 3764,
+ "▁double": 3765,
+ "рав": 3766,
+ "▁Str": 3767,
+ "iem": 3768,
+ "▁album": 3769,
+ "▁resol": 3770,
+ "▁dei": 3771,
+ "▁Wik": 3772,
+ "▁aw": 3773,
+ "umb": 3774,
+ "ols": 3775,
+ "▁*/": 3776,
+ "▁ze": 3777,
+ "▁anim": 3778,
+ "/>": 3779,
+ "ris": 3780,
+ "resh": 3781,
+ "No": 3782,
+ "iques": 3783,
+ "current": 3784,
+ "▁period": 3785,
+ "▁April": 3786,
+ "▁store": 3787,
+ "','": 3788,
+ "▁Set": 3789,
+ "={": 3790,
+ "ached": 3791,
+ "▁Mal": 3792,
+ "▁Pal": 3793,
+ "antes": 3794,
+ "aterial": 3795,
+ "▁worked": 3796,
+ "leq": 3797,
+ "oreferrer": 3798,
+ "▁happen": 3799,
+ "▁box": 3800,
+ "ney": 3801,
+ "▁close": 3802,
+ "▁gran": 3803,
+ "▁lie": 3804,
+ "▁ir": 3805,
+ "▁expected": 3806,
+ "▁для": 3807,
+ "click": 3808,
+ "și": 3809,
+ "▁parte": 3810,
+ "ogn": 3811,
+ "▁Form": 3812,
+ "▁memb": 3813,
+ "▁plan": 3814,
+ "▁team": 3815,
+ "][": 3816,
+ "▁commun": 3817,
+ "orry": 3818,
+ "ency": 3819,
+ "gl": 3820,
+ "inary": 3821,
+ "cdot": 3822,
+ "^\\": 3823,
+ "▁First": 3824,
+ "ander": 3825,
+ "▁Dec": 3826,
+ "request": 3827,
+ "ства": 3828,
+ "▁structure": 3829,
+ "▁||": 3830,
+ "▁Comp": 3831,
+ "actory": 3832,
+ "▁Mil": 3833,
+ "▁Some": 3834,
+ "Stream": 3835,
+ "▁assum": 3836,
+ "uen": 3837,
+ "▁words": 3838,
+ "▁September": 3839,
+ "▁Ко": 3840,
+ "▁days": 3841,
+ "ories": 3842,
+ "став": 3843,
+ "sm": 3844,
+ "vin": 3845,
+ "partial": 3846,
+ "▁parent": 3847,
+ "oj": 3848,
+ "нии": 3849,
+ "!\"": 3850,
+ "ugin": 3851,
+ "▁Windows": 3852,
+ "Ed": 3853,
+ ":}": 3854,
+ "▁q": 3855,
+ "▁ben": 3856,
+ "iana": 3857,
+ "▁label": 3858,
+ "state": 3859,
+ "uted": 3860,
+ "▁()": 3861,
+ "▁сво": 3862,
+ "▁edit": 3863,
+ "uring": 3864,
+ "▁NS": 3865,
+ "▁Jahr": 3866,
+ "▁provide": 3867,
+ "He": 3868,
+ "▁Yes": 3869,
+ "anel": 3870,
+ "ename": 3871,
+ "▁Don": 3872,
+ "isk": 3873,
+ "gra": 3874,
+ "elij": 3875,
+ "▁root": 3876,
+ "*/": 3877,
+ "▁Fre": 3878,
+ "▁Mor": 3879,
+ "used": 3880,
+ "range": 3881,
+ "▁tamb": 3882,
+ "▁module": 3883,
+ "▁directory": 3884,
+ "ounds": 3885,
+ "Activity": 3886,
+ "▁mu": 3887,
+ "info": 3888,
+ "▁free": 3889,
+ "orge": 3890,
+ "tab": 3891,
+ ")=": 3892,
+ "lang": 3893,
+ "▁ос": 3894,
+ "▁FROM": 3895,
+ "▁enter": 3896,
+ "▁became": 3897,
+ "idae": 3898,
+ "хи": 3899,
+ "▁States": 3900,
+ "verse": 3901,
+ "▁expl": 3902,
+ "ynt": 3903,
+ "UN": 3904,
+ "ee": 3905,
+ "endent": 3906,
+ "▁making": 3907,
+ "▁\"$": 3908,
+ "uni": 3909,
+ "quence": 3910,
+ "▁lui": 3911,
+ "HT": 3912,
+ "▁uses": 3913,
+ "zie": 3914,
+ "nia": 3915,
+ "Content": 3916,
+ "▁Count": 3917,
+ "▁standard": 3918,
+ "ENT": 3919,
+ "▁кон": 3920,
+ "fort": 3921,
+ "adas": 3922,
+ "зу": 3923,
+ "System": 3924,
+ "▁Sw": 3925,
+ "▁ever": 3926,
+ "LO": 3927,
+ "▁correspond": 3928,
+ "▁Po": 3929,
+ "argin": 3930,
+ "кт": 3931,
+ "ій": 3932,
+ "▁remain": 3933,
+ "cio": 3934,
+ "▁actual": 3935,
+ "сту": 3936,
+ "▁sind": 3937,
+ "▁Pe": 3938,
+ "▁changed": 3939,
+ "▁Note": 3940,
+ "skie": 3941,
+ "▁family": 3942,
+ "ità": 3943,
+ "cos": 3944,
+ "txt": 3945,
+ "ker": 3946,
+ "ceed": 3947,
+ "▁arr": 3948,
+ "▁cam": 3949,
+ "izer": 3950,
+ "▁Dan": 3951,
+ "hel": 3952,
+ "icult": 3953,
+ "HP": 3954,
+ "iler": 3955,
+ "▁Sal": 3956,
+ "▁connection": 3957,
+ "usion": 3958,
+ "kn": 3959,
+ "RI": 3960,
+ "▁vom": 3961,
+ "Listener": 3962,
+ "▁ö": 3963,
+ "▁dim": 3964,
+ "▁press": 3965,
+ "▁esc": 3966,
+ "▁Try": 3967,
+ "atalog": 3968,
+ "▁thanks": 3969,
+ "DO": 3970,
+ "▁written": 3971,
+ "dir": 3972,
+ "rew": 3973,
+ "▁fire": 3974,
+ "▁Nach": 3975,
+ "▁á": 3976,
+ "enc": 3977,
+ "▁origin": 3978,
+ "▁November": 3979,
+ "▁};": 3980,
+ "Count": 3981,
+ "▁За": 3982,
+ "▁graph": 3983,
+ "▁mis": 3984,
+ "▁External": 3985,
+ "▁▁▁▁▁▁▁▁▁": 3986,
+ "▁options": 3987,
+ "▁URL": 3988,
+ "▁php": 3989,
+ "▁integr": 3990,
+ "Config": 3991,
+ "▁Text": 3992,
+ "inner": 3993,
+ "▁crit": 3994,
+ ",”": 3995,
+ "▁tog": 3996,
+ "$$": 3997,
+ "nof": 3998,
+ "▁ses": 3999,
+ "ühr": 4000,
+ "▁Since": 4001,
+ "Des": 4002,
+ "ube": 4003,
+ "▁section": 4004,
+ "▁gi": 4005,
+ "ford": 4006,
+ "▁Ass": 4007,
+ "ainer": 4008,
+ "ttp": 4009,
+ "▁behav": 4010,
+ "ports": 4011,
+ "draw": 4012,
+ "This": 4013,
+ "ranch": 4014,
+ "inding": 4015,
+ "▁estab": 4016,
+ "▁obtain": 4017,
+ "rich": 4018,
+ "licit": 4019,
+ "ев": 4020,
+ "▁qual": 4021,
+ "▁za": 4022,
+ "▁har": 4023,
+ "▁fac": 4024,
+ "aar": 4025,
+ "jet": 4026,
+ "icles": 4027,
+ "▁Aus": 4028,
+ "▁hor": 4029,
+ "▁remov": 4030,
+ "▁wie": 4031,
+ "Client": 4032,
+ "▁natur": 4033,
+ "hip": 4034,
+ "Sub": 4035,
+ "▁random": 4036,
+ "DF": 4037,
+ "▁area": 4038,
+ "tag": 4039,
+ "Pr": 4040,
+ "▁Ital": 4041,
+ "▁roku": 4042,
+ "nofollow": 4043,
+ "*}": 4044,
+ "▁others": 4045,
+ "▁limit": 4046,
+ "▁sil": 4047,
+ "▁sav": 4048,
+ "▁often": 4049,
+ "▁render": 4050,
+ "DB": 4051,
+ "▁Mc": 4052,
+ "▁zijn": 4053,
+ "жен": 4054,
+ "▁tag": 4055,
+ "ming": 4056,
+ "lichen": 4057,
+ "pack": 4058,
+ "▁Ag": 4059,
+ "▁sense": 4060,
+ "pg": 4061,
+ "Method": 4062,
+ "aged": 4063,
+ "ág": 4064,
+ "ła": 4065,
+ "▁interest": 4066,
+ "▁associ": 4067,
+ "volution": 4068,
+ "▁empty": 4069,
+ "iche": 4070,
+ "▁gro": 4071,
+ "▁types": 4072,
+ "▁Sie": 4073,
+ "Inter": 4074,
+ "▁noreferrer": 4075,
+ "▁gives": 4076,
+ "hal": 4077,
+ "▁save": 4078,
+ "▁font": 4079,
+ "ruction": 4080,
+ "Script": 4081,
+ "▁alla": 4082,
+ "▁says": 4083,
+ "▁fu": 4084,
+ "ape": 4085,
+ "▁language": 4086,
+ "iger": 4087,
+ "▁King": 4088,
+ "bor": 4089,
+ "uv": 4090,
+ "▁shall": 4091,
+ "▁Europe": 4092,
+ "▁einem": 4093,
+ "▁water": 4094,
+ "▁govern": 4095,
+ "anz": 4096,
+ "ators": 4097,
+ "▁month": 4098,
+ "ye": 4099,
+ "▁important": 4100,
+ "atz": 4101,
+ "first": 4102,
+ "▁Trans": 4103,
+ "▁Mad": 4104,
+ "▁bra": 4105,
+ "ika": 4106,
+ "▁Saint": 4107,
+ "oria": 4108,
+ "kre": 4109,
+ "ements": 4110,
+ "▁Ben": 4111,
+ "lav": 4112,
+ "▁admin": 4113,
+ "▁Hen": 4114,
+ "ril": 4115,
+ "▁Sm": 4116,
+ "cat": 4117,
+ "▁Refer": 4118,
+ "▁Ш": 4119,
+ "▁pract": 4120,
+ "▁Pat": 4121,
+ "▁Gre": 4122,
+ "▁young": 4123,
+ "▁Inter": 4124,
+ "oma": 4125,
+ "teger": 4126,
+ "ibility": 4127,
+ "▁parameters": 4128,
+ "▁everything": 4129,
+ "dat": 4130,
+ "urop": 4131,
+ "olean": 4132,
+ "▁returned": 4133,
+ "▁Class": 4134,
+ "acy": 4135,
+ "####": 4136,
+ "▁př": 4137,
+ "▁folder": 4138,
+ "▁kon": 4139,
+ "▁guess": 4140,
+ "gt": 4141,
+ "jen": 4142,
+ "annel": 4143,
+ "icon": 4144,
+ "▁comb": 4145,
+ "rict": 4146,
+ "▁hij": 4147,
+ "▁author": 4148,
+ "see": 4149,
+ "here": 4150,
+ "stra": 4151,
+ "▁entire": 4152,
+ "▁directly": 4153,
+ "raft": 4154,
+ "heet": 4155,
+ "ester": 4156,
+ "▁ми": 4157,
+ "▁mass": 4158,
+ "untu": 4159,
+ "▁users": 4160,
+ "chi": 4161,
+ "PE": 4162,
+ "▁component": 4163,
+ "Click": 4164,
+ "Att": 4165,
+ "▁sobre": 4166,
+ "ands": 4167,
+ "▁Hol": 4168,
+ "▁Sant": 4169,
+ "ori": 4170,
+ "▁sua": 4171,
+ "std": 4172,
+ "entic": 4173,
+ "CC": 4174,
+ "▁filter": 4175,
+ "SQL": 4176,
+ "▁God": 4177,
+ "At": 4178,
+ "▁му": 4179,
+ "▁performance": 4180,
+ "delta": 4181,
+ "ande": 4182,
+ "amer": 4183,
+ "ды": 4184,
+ "▁cult": 4185,
+ "▁Nor": 4186,
+ "but": 4187,
+ "▁lik": 4188,
+ "********": 4189,
+ "ствен": 4190,
+ "▁comme": 4191,
+ "▁dr": 4192,
+ "imer": 4193,
+ "ordin": 4194,
+ "▁condition": 4195,
+ "este": 4196,
+ "([": 4197,
+ "FF": 4198,
+ "ться": 4199,
+ "imo": 4200,
+ "rab": 4201,
+ "іль": 4202,
+ "▁half": 4203,
+ "each": 4204,
+ "Dis": 4205,
+ "▁rows": 4206,
+ "▁hon": 4207,
+ "▁together": 4208,
+ "▁și": 4209,
+ "medi": 4210,
+ "agn": 4211,
+ "alled": 4212,
+ "▁vill": 4213,
+ "ING": 4214,
+ "idden": 4215,
+ "▁draw": 4216,
+ "yntax": 4217,
+ "▁attempt": 4218,
+ "URL": 4219,
+ "pose": 4220,
+ "▁indic": 4221,
+ "ника": 4222,
+ "▁English": 4223,
+ "▁déc": 4224,
+ "▁needs": 4225,
+ "▁normal": 4226,
+ "urt": 4227,
+ "▁но": 4228,
+ "}}\\": 4229,
+ "last": 4230,
+ "▁Fin": 4231,
+ "▁Febru": 4232,
+ "ila": 4233,
+ "▁country": 4234,
+ "▁fields": 4235,
+ "▁max": 4236,
+ "lés": 4237,
+ "owie": 4238,
+ "▁deux": 4239,
+ "▁built": 4240,
+ "▁Main": 4241,
+ "▁camp": 4242,
+ "ivo": 4243,
+ "iva": 4244,
+ "icy": 4245,
+ "zione": 4246,
+ "Node": 4247,
+ "▁:)": 4248,
+ "▁among": 4249,
+ "▁Ob": 4250,
+ "▁cases": 4251,
+ "haps": 4252,
+ "sers": 4253,
+ "arter": 4254,
+ "ści": 4255,
+ "▁iter": 4256,
+ "▁named": 4257,
+ "exec": 4258,
+ "▁season": 4259,
+ "tot": 4260,
+ "=>": 4261,
+ "graph": 4262,
+ "▁nil": 4263,
+ "acional": 4264,
+ "▁NULL": 4265,
+ "▁special": 4266,
+ "сте": 4267,
+ "css": 4268,
+ "▁\\(": 4269,
+ "vs": 4270,
+ "ael": 4271,
+ "▁city": 4272,
+ "ova": 4273,
+ "▁article": 4274,
+ "▁South": 4275,
+ "Action": 4276,
+ "ça": 4277,
+ "spring": 4278,
+ "itude": 4279,
+ "▁complex": 4280,
+ "▁что": 4281,
+ "build": 4282,
+ "gamma": 4283,
+ "▁Ent": 4284,
+ "iers": 4285,
+ "'.": 4286,
+ "car": 4287,
+ "apache": 4288,
+ "ingen": 4289,
+ "Input": 4290,
+ ": ": 4291,
+ "▁dynam": 4292,
+ "alls": 4293,
+ "show": 4294,
+ "|\\": 4295,
+ "▁wird": 4296,
+ "Bar": 4297,
+ "alth": 4298,
+ "model": 4299,
+ "Trans": 4300,
+ "Row": 4301,
+ "abe": 4302,
+ "▁lib": 4303,
+ "null": 4304,
+ "ragment": 4305,
+ "▁State": 4306,
+ "▁law": 4307,
+ "Frame": 4308,
+ "▁Lo": 4309,
+ "geb": 4310,
+ "}$.": 4311,
+ "▁needed": 4312,
+ "▁contr": 4313,
+ "aries": 4314,
+ "▁screen": 4315,
+ "yr": 4316,
+ "mm": 4317,
+ "▁shown": 4318,
+ "▁bad": 4319,
+ "▁cast": 4320,
+ "▁Test": 4321,
+ "▁Auf": 4322,
+ "▁quant": 4323,
+ "iga": 4324,
+ "▁ren": 4325,
+ "▁Mac": 4326,
+ "▁transform": 4327,
+ "▁difference": 4328,
+ "▁tit": 4329,
+ "TE": 4330,
+ "▁step": 4331,
+ "▁capt": 4332,
+ "▁collection": 4333,
+ "ictionary": 4334,
+ "▁Tom": 4335,
+ "rier": 4336,
+ "▁move": 4337,
+ "cope": 4338,
+ "ords": 4339,
+ "▁further": 4340,
+ "▁columns": 4341,
+ "▁Lin": 4342,
+ "▁fixed": 4343,
+ "▁children": 4344,
+ "MS": 4345,
+ "mo": 4346,
+ "una": 4347,
+ "▁individ": 4348,
+ "tty": 4349,
+ "aste": 4350,
+ "src": 4351,
+ "match": 4352,
+ "wi": 4353,
+ "▁х": 4354,
+ "▁ди": 4355,
+ "▁ord": 4356,
+ "iving": 4357,
+ "▁Bro": 4358,
+ "▁almost": 4359,
+ "▁Pres": 4360,
+ "reci": 4361,
+ "aring": 4362,
+ "▁///": 4363,
+ "ется": 4364,
+ "▁sig": 4365,
+ "light": 4366,
+ "▁Red": 4367,
+ "▁suggest": 4368,
+ "olf": 4369,
+ "▁été": 4370,
+ "isation": 4371,
+ "зна": 4372,
+ "New": 4373,
+ "стан": 4374,
+ "LA": 4375,
+ "unicip": 4376,
+ "▁figure": 4377,
+ "mt": 4378,
+ "iale": 4379,
+ "▁catch": 4380,
+ "default": 4381,
+ "▁tele": 4382,
+ "▁matter": 4383,
+ "cast": 4384,
+ "▁Rich": 4385,
+ "▁handle": 4386,
+ "valu": 4387,
+ "$-": 4388,
+ "об": 4389,
+ "▁json": 4390,
+ "Create": 4391,
+ "▁exam": 4392,
+ "аль": 4393,
+ "ют": 4394,
+ "ored": 4395,
+ "idos": 4396,
+ "append": 4397,
+ "▁Array": 4398,
+ "кс": 4399,
+ "}[": 4400,
+ "rive": 4401,
+ "▁club": 4402,
+ "mann": 4403,
+ "▁este": 4404,
+ "esta": 4405,
+ "▁Gi": 4406,
+ "▁Jap": 4407,
+ "▁Name": 4408,
+ "Column": 4409,
+ "oups": 4410,
+ "ismo": 4411,
+ "▁City": 4412,
+ "▁classes": 4413,
+ "▁infl": 4414,
+ "hl": 4415,
+ "ром": 4416,
+ "▁adding": 4417,
+ "▁fail": 4418,
+ "xx": 4419,
+ "ões": 4420,
+ "Sc": 4421,
+ "util": 4422,
+ "▁location": 4423,
+ "lege": 4424,
+ "ago": 4425,
+ "▁properties": 4426,
+ "abil": 4427,
+ "vas": 4428,
+ "}$,": 4429,
+ "itted": 4430,
+ "ód": 4431,
+ "▁Dem": 4432,
+ "▁asked": 4433,
+ "▁tab": 4434,
+ "Source": 4435,
+ "▁errors": 4436,
+ "ographie": 4437,
+ "▁жи": 4438,
+ "▁mal": 4439,
+ "stract": 4440,
+ "▁dro": 4441,
+ "rak": 4442,
+ "▁note": 4443,
+ "▁setting": 4444,
+ "▁fem": 4445,
+ "▁saw": 4446,
+ "iar": 4447,
+ "HER": 4448,
+ "ес": 4449,
+ "▁pred": 4450,
+ "▁Out": 4451,
+ "▁items": 4452,
+ "лан": 4453,
+ "▁werd": 4454,
+ "ersion": 4455,
+ "lia": 4456,
+ "▁sin": 4457,
+ "ichte": 4458,
+ "▁feel": 4459,
+ "▁пра": 4460,
+ "▁oder": 4461,
+ "UE": 4462,
+ "ocument": 4463,
+ "▁mode": 4464,
+ "▁Na": 4465,
+ "ден": 4466,
+ "mes": 4467,
+ "framework": 4468,
+ "▁auto": 4469,
+ "ным": 4470,
+ "uby": 4471,
+ "▁template": 4472,
+ "▁mess": 4473,
+ "ieder": 4474,
+ "▁related": 4475,
+ "oken": 4476,
+ "▁follows": 4477,
+ "search": 4478,
+ "ami": 4479,
+ "▁wait": 4480,
+ "igr": 4481,
+ "▁low": 4482,
+ "ских": 4483,
+ "ская": 4484,
+ "▁Mark": 4485,
+ "▁ill": 4486,
+ "amento": 4487,
+ "\\<": 4488,
+ "▁df": 4489,
+ "osition": 4490,
+ "▁Ви": 4491,
+ "isf": 4492,
+ "▁Deutsch": 4493,
+ "ahl": 4494,
+ "war": 4495,
+ "itect": 4496,
+ "▁sal": 4497,
+ "elen": 4498,
+ "ById": 4499,
+ "▁gru": 4500,
+ "sv": 4501,
+ "▁passed": 4502,
+ "▁añ": 4503,
+ "Sch": 4504,
+ "▁solve": 4505,
+ "weise": 4506,
+ "atos": 4507,
+ "▁meg": 4508,
+ "▁member": 4509,
+ "ername": 4510,
+ "▁connect": 4511,
+ "ips": 4512,
+ "▁round": 4513,
+ "▁]": 4514,
+ "nes": 4515,
+ "▁dir": 4516,
+ "▁London": 4517,
+ "dy": 4518,
+ "FA": 4519,
+ "▁received": 4520,
+ "reet": 4521,
+ "▁Log": 4522,
+ "▁School": 4523,
+ "ango": 4524,
+ "▁These": 4525,
+ "▁Mont": 4526,
+ "▁ener": 4527,
+ "lad": 4528,
+ "▁define": 4529,
+ "sign": 4530,
+ "▁cle": 4531,
+ "figure": 4532,
+ "▁View": 4533,
+ "textbf": 4534,
+ "$\\": 4535,
+ "зы": 4536,
+ "number": 4537,
+ "▁din": 4538,
+ "eller": 4539,
+ "orithm": 4540,
+ "false": 4541,
+ "fol": 4542,
+ "fficient": 4543,
+ "▁HTML": 4544,
+ "liche": 4545,
+ "▁Mo": 4546,
+ "▁introdu": 4547,
+ "exp": 4548,
+ "▁strong": 4549,
+ "▁thus": 4550,
+ "/)": 4551,
+ "▁ele": 4552,
+ "▁так": 4553,
+ "▁па": 4554,
+ "▁dont": 4555,
+ "▁cause": 4556,
+ "Number": 4557,
+ "▁images": 4558,
+ "▁sample": 4559,
+ "▁sci": 4560,
+ "like": 4561,
+ "▁Lou": 4562,
+ "div": 4563,
+ "anc": 4564,
+ "▁front": 4565,
+ "nen": 4566,
+ "▁missing": 4567,
+ "aria": 4568,
+ "pres": 4569,
+ "▁пред": 4570,
+ "DI": 4571,
+ "filter": 4572,
+ "▁Mit": 4573,
+ "UR": 4574,
+ "▁opp": 4575,
+ "▁sql": 4576,
+ "▁року": 4577,
+ "eren": 4578,
+ "emat": 4579,
+ "ís": 4580,
+ "▁Jean": 4581,
+ "éc": 4582,
+ "▁ci": 4583,
+ "enne": 4584,
+ "atform": 4585,
+ "▁taken": 4586,
+ "▁Of": 4587,
+ "▁насе": 4588,
+ "▁err": 4589,
+ "OP": 4590,
+ "From": 4591,
+ "Default": 4592,
+ "▁General": 4593,
+ "wiki": 4594,
+ "▁grand": 4595,
+ "▁einen": 4596,
+ "Reg": 4597,
+ "Handler": 4598,
+ "conom": 4599,
+ "anger": 4600,
+ "▁был": 4601,
+ "▁Los": 4602,
+ "▁expression": 4603,
+ "ша": 4604,
+ "yal": 4605,
+ "▁$('": 4606,
+ "▁switch": 4607,
+ "▁vector": 4608,
+ "▁Thom": 4609,
+ "▁virt": 4610,
+ "leased": 4611,
+ "▁cover": 4612,
+ "▁resp": 4613,
+ "ako": 4614,
+ "rench": 4615,
+ "ota": 4616,
+ "Cell": 4617,
+ "anged": 4618,
+ "▁+=": 4619,
+ "lac": 4620,
+ "ska": 4621,
+ "next": 4622,
+ "▁International": 4623,
+ "▁Wil": 4624,
+ "▁ont": 4625,
+ "ibr": 4626,
+ "ustr": 4627,
+ "▁black": 4628,
+ "▁selected": 4629,
+ "cher": 4630,
+ "▁liter": 4631,
+ "root": 4632,
+ "лся": 4633,
+ "▁Life": 4634,
+ "▁insert": 4635,
+ "▁matrix": 4636,
+ "ises": 4637,
+ ")]": 4638,
+ "▁pel": 4639,
+ "Override": 4640,
+ "rypt": 4641,
+ "▁former": 4642,
+ "▁Film": 4643,
+ "▁North": 4644,
+ "client": 4645,
+ "▁night": 4646,
+ "ходи": 4647,
+ "▁Austral": 4648,
+ "▁Ret": 4649,
+ "rho": 4650,
+ "▁пер": 4651,
+ "ipedia": 4652,
+ "▁express": 4653,
+ "▁third": 4654,
+ "▁major": 4655,
+ "▁grad": 4656,
+ "owe": 4657,
+ "▁believe": 4658,
+ "ournal": 4659,
+ "▁status": 4660,
+ "unc": 4661,
+ "▁dou": 4662,
+ "▁JSON": 4663,
+ "uis": 4664,
+ "▁population": 4665,
+ "enz": 4666,
+ "▁William": 4667,
+ "sf": 4668,
+ "▁Object": 4669,
+ "▁cin": 4670,
+ "▁Di": 4671,
+ "curity": 4672,
+ "▁Open": 4673,
+ "▁ле": 4674,
+ "lar": 4675,
+ "adding": 4676,
+ "▁kom": 4677,
+ "}(\\": 4678,
+ "▁kil": 4679,
+ "umer": 4680,
+ "\"/>": 4681,
+ "▁feature": 4682,
+ "▁Are": 4683,
+ "cks": 4684,
+ "▁Internet": 4685,
+ "▁ih": 4686,
+ "▁started": 4687,
+ "▁early": 4688,
+ "▁began": 4689,
+ "TH": 4690,
+ "python": 4691,
+ "asp": 4692,
+ "▁Fr": 4693,
+ "▁clos": 4694,
+ "istic": 4695,
+ "▁music": 4696,
+ "▁dig": 4697,
+ "▁ital": 4698,
+ "▁David": 4699,
+ "▁website": 4700,
+ "▁controller": 4701,
+ "▁Mer": 4702,
+ "context": 4703,
+ "product": 4704,
+ "osp": 4705,
+ "▁▁▁▁▁▁▁": 4706,
+ "▁jun": 4707,
+ "rown": 4708,
+ "▁Az": 4709,
+ "\":\"": 4710,
+ "▁aan": 4711,
+ "▁Date": 4712,
+ "mult": 4713,
+ "▁browser": 4714,
+ "ред": 4715,
+ "which": 4716,
+ "RA": 4717,
+ "quare": 4718,
+ "▁Russ": 4719,
+ "▁soon": 4720,
+ "▁Pre": 4721,
+ "tau": 4722,
+ "▁week": 4723,
+ "▁ба": 4724,
+ "▁oct": 4725,
+ "▁town": 4726,
+ "roy": 4727,
+ "▁els": 4728,
+ "blic": 4729,
+ "undle": 4730,
+ "▁Histor": 4731,
+ "▁foi": 4732,
+ "▁models": 4733,
+ "зо": 4734,
+ "onym": 4735,
+ "Param": 4736,
+ "▁Met": 4737,
+ "gener": 4738,
+ "ją": 4739,
+ "▁espe": 4740,
+ "CE": 4741,
+ "▁device": 4742,
+ "ellow": 4743,
+ "▁debug": 4744,
+ "érie": 4745,
+ "using": 4746,
+ "анг": 4747,
+ "▁*)": 4748,
+ "udi": 4749,
+ "▁Miss": 4750,
+ "ком": 4751,
+ "posed": 4752,
+ "▁zwe": 4753,
+ "ін": 4754,
+ "▁Robert": 4755,
+ "▁Oct": 4756,
+ "lop": 4757,
+ "jar": 4758,
+ "▁aver": 4759,
+ "▁habit": 4760,
+ "▁::": 4761,
+ "äng": 4762,
+ "Start": 4763,
+ "▁pow": 4764,
+ "▁src": 4765,
+ "▁pattern": 4766,
+ "▁Э": 4767,
+ "▁bi": 4768,
+ "otes": 4769,
+ "▁__": 4770,
+ "▁sens": 4771,
+ "▁avoid": 4772,
+ "example": 4773,
+ "utt": 4774,
+ "Label": 4775,
+ "tex": 4776,
+ "boot": 4777,
+ "esto": 4778,
+ "▁March": 4779,
+ "▁easy": 4780,
+ "icture": 4781,
+ "Group": 4782,
+ "▁father": 4783,
+ "▁updated": 4784,
+ "▁Vo": 4785,
+ "▁III": 4786,
+ "omega": 4787,
+ "▁alle": 4788,
+ "Rec": 4789,
+ "yg": 4790,
+ "зе": 4791,
+ "▁Dim": 4792,
+ "nect": 4793,
+ "▁Tor": 4794,
+ "▁deutsch": 4795,
+ "▁white": 4796,
+ "▁national": 4797,
+ "ppe": 4798,
+ "▁air": 4799,
+ "▁password": 4800,
+ "det": 4801,
+ "▁big": 4802,
+ "▁Use": 4803,
+ "call": 4804,
+ "▁extra": 4805,
+ "We": 4806,
+ "ania": 4807,
+ "▁hold": 4808,
+ "Control": 4809,
+ "▁CO": 4810,
+ "▁мі": 4811,
+ "iti": 4812,
+ "▁Ke": 4813,
+ "enu": 4814,
+ "▁Park": 4815,
+ "том": 4816,
+ "▁auth": 4817,
+ "▁center": 4818,
+ "Ph": 4819,
+ "тов": 4820,
+ "iding": 4821,
+ "▁across": 4822,
+ "▁song": 4823,
+ "▁phys": 4824,
+ "▁numer": 4825,
+ "ща": 4826,
+ "▁Alex": 4827,
+ "▁problems": 4828,
+ "▁Error": 4829,
+ "format": 4830,
+ "▁Acc": 4831,
+ "▁six": 4832,
+ "▁db": 4833,
+ "▁Cast": 4834,
+ "oms": 4835,
+ "project": 4836,
+ "▁vert": 4837,
+ "cret": 4838,
+ "▁header": 4839,
+ "▁stream": 4840,
+ "ids": 4841,
+ "▁tor": 4842,
+ "▁sept": 4843,
+ "▁estim": 4844,
+ "▁decl": 4845,
+ "▁gave": 4846,
+ "▁player": 4847,
+ "ysis": 4848,
+ "▁дру": 4849,
+ "amm": 4850,
+ "що": 4851,
+ "▁(\"": 4852,
+ "▁ax": 4853,
+ "Property": 4854,
+ "usr": 4855,
+ "▁someone": 4856,
+ "▁impro": 4857,
+ "aden": 4858,
+ "rote": 4859,
+ "▁Ми": 4860,
+ "ih": 4861,
+ "++)": 4862,
+ "▁video": 4863,
+ "▁exists": 4864,
+ "кла": 4865,
+ "▁complete": 4866,
+ "▁session": 4867,
+ "▁constant": 4868,
+ "icos": 4869,
+ "▁pack": 4870,
+ "rome": 4871,
+ "egr": 4872,
+ "Application": 4873,
+ "▁yes": 4874,
+ "▁elle": 4875,
+ "▁email": 4876,
+ "orf": 4877,
+ "case": 4878,
+ "▁pointer": 4879,
+ "▁regard": 4880,
+ "sen": 4881,
+ "status": 4882,
+ "▁mes": 4883,
+ "▁delle": 4884,
+ "ington": 4885,
+ "▁Bas": 4886,
+ ")^": 4887,
+ "develop": 4888,
+ "▁force": 4889,
+ "▁characters": 4890,
+ "▁cross": 4891,
+ "▁death": 4892,
+ "▁takes": 4893,
+ "éri": 4894,
+ "igne": 4895,
+ "чен": 4896,
+ "UP": 4897,
+ ".:": 4898,
+ "Thread": 4899,
+ "ju": 4900,
+ "iny": 4901,
+ "▁details": 4902,
+ "▁xml": 4903,
+ "tait": 4904,
+ "output": 4905,
+ "message": 4906,
+ "''": 4907,
+ "▁British": 4908,
+ "ville": 4909,
+ "▁Div": 4910,
+ "▁User": 4911,
+ "cm": 4912,
+ "чно": 4913,
+ "column": 4914,
+ "eqref": 4915,
+ "ór": 4916,
+ "onom": 4917,
+ "▁Post": 4918,
+ "ellen": 4919,
+ "Ab": 4920,
+ "ulté": 4921,
+ "▁perfect": 4922,
+ "(){": 4923,
+ "vision": 4924,
+ "active": 4925,
+ "lier": 4926,
+ "rij": 4927,
+ "sd": 4928,
+ "▁kö": 4929,
+ "▁nie": 4930,
+ "▁relig": 4931,
+ "▁ot": 4932,
+ "▁machine": 4933,
+ "▁held": 4934,
+ ")$.": 4935,
+ "========": 4936,
+ "cker": 4937,
+ "вы": 4938,
+ "born": 4939,
+ "▁past": 4940,
+ "рия": 4941,
+ "▁Dr": 4942,
+ "▁regular": 4943,
+ "▁provided": 4944,
+ "TER": 4945,
+ "▁univers": 4946,
+ "▁gets": 4947,
+ "▁nu": 4948,
+ "▁/*": 4949,
+ "ober": 4950,
+ "fin": 4951,
+ "▁nella": 4952,
+ "▁become": 4953,
+ "▁``": 4954,
+ "▁history": 4955,
+ "▁Sol": 4956,
+ "▁Rad": 4957,
+ "▁terms": 4958,
+ "▁events": 4959,
+ "lymp": 4960,
+ ")))": 4961,
+ "рова": 4962,
+ "▁absol": 4963,
+ "▁soft": 4964,
+ "links": 4965,
+ "▁hope": 4966,
+ "▁subject": 4967,
+ "\"),": 4968,
+ "▁creating": 4969,
+ "▁}\r": 4970,
+ "▁Sk": 4971,
+ "▁flow": 4972,
+ "▁Ра": 4973,
+ "▁assert": 4974,
+ "zet": 4975,
+ "▁Frank": 4976,
+ "sa": 4977,
+ "▁distribution": 4978,
+ "cu": 4979,
+ "band": 4980,
+ "izz": 4981,
+ "▁job": 4982,
+ "iner": 4983,
+ "struct": 4984,
+ "ák": 4985,
+ "TO": 4986,
+ "auf": 4987,
+ "▁extends": 4988,
+ "▁Gra": 4989,
+ "display": 4990,
+ "▁signific": 4991,
+ "oney": 4992,
+ "source": 4993,
+ "microsoft": 4994,
+ "inder": 4995,
+ "▁quick": 4996,
+ "▁wonder": 4997,
+ "Instance": 4998,
+ "elles": 4999,
+ "ème": 5000,
+ "▁company": 5001,
+ "uß": 5002,
+ ".}": 5003,
+ "▁separate": 5004,
+ "UM": 5005,
+ "HERE": 5006,
+ "▁writing": 5007,
+ "itution": 5008,
+ "▁Gesch": 5009,
+ "мя": 5010,
+ "▁James": 5011,
+ "▁DE": 5012,
+ "▁Spe": 5013,
+ "process": 5014,
+ "Str": 5015,
+ "▁sym": 5016,
+ "▁ao": 5017,
+ "▁wy": 5018,
+ "▁anyone": 5019,
+ "▁Up": 5020,
+ "useum": 5021,
+ "aron": 5022,
+ "▁definition": 5023,
+ "▁`$": 5024,
+ "▁fav": 5025,
+ "ributes": 5026,
+ "▁Ré": 5027,
+ "ografia": 5028,
+ "element": 5029,
+ "cap": 5030,
+ "pat": 5031,
+ "▁Bra": 5032,
+ ")(": 5033,
+ "▁according": 5034,
+ "ге": 5035,
+ "▁pie": 5036,
+ "eli": 5037,
+ "}\"": 5038,
+ "▁activ": 5039,
+ "▁stop": 5040,
+ "patch": 5041,
+ "ті": 5042,
+ "▁Jose": 5043,
+ "End": 5044,
+ "▁prze": 5045,
+ "▁age": 5046,
+ "itory": 5047,
+ "▁PHP": 5048,
+ "agement": 5049,
+ "▁`.": 5050,
+ "▁pretty": 5051,
+ "▁recomm": 5052,
+ "▁sud": 5053,
+ "▁requ": 5054,
+ "▁обла": 5055,
+ "atives": 5056,
+ "▁High": 5057,
+ "áz": 5058,
+ "oul": 5059,
+ "rest": 5060,
+ "▁Ter": 5061,
+ "under": 5062,
+ "thern": 5063,
+ "center": 5064,
+ "▁ur": 5065,
+ "lat": 5066,
+ "▁interface": 5067,
+ "▁ин": 5068,
+ "▁whose": 5069,
+ "icas": 5070,
+ "amen": 5071,
+ "Filter": 5072,
+ "▁station": 5073,
+ "Page": 5074,
+ "▁arm": 5075,
+ "▁eyes": 5076,
+ "▁рай": 5077,
+ "▁seu": 5078,
+ "oli": 5079,
+ "win": 5080,
+ "lik": 5081,
+ "gex": 5082,
+ "chan": 5083,
+ "idence": 5084,
+ "args": 5085,
+ "aking": 5086,
+ "▁Google": 5087,
+ "▁Stud": 5088,
+ "▁ho": 5089,
+ "торы": 5090,
+ "Su": 5091,
+ "▁automat": 5092,
+ "ême": 5093,
+ "▁cy": 5094,
+ "lor": 5095,
+ "▁stack": 5096,
+ "▁SELECT": 5097,
+ "AF": 5098,
+ "▁>>": 5099,
+ "▁compet": 5100,
+ "▁pair": 5101,
+ "▁inglés": 5102,
+ "Response": 5103,
+ "▁Fig": 5104,
+ "grad": 5105,
+ "▁documentation": 5106,
+ "▁cant": 5107,
+ "▁appreci": 5108,
+ "ån": 5109,
+ "▁learn": 5110,
+ "▁indep": 5111,
+ "▁pal": 5112,
+ "package": 5113,
+ "ares": 5114,
+ "▁Berlin": 5115,
+ "бли": 5116,
+ "reich": 5117,
+ "ён": 5118,
+ "▁satisf": 5119,
+ "▁region": 5120,
+ "▁friend": 5121,
+ "▁George": 5122,
+ "▁Во": 5123,
+ "▁\"\"": 5124,
+ "▁desde": 5125,
+ "Factory": 5126,
+ "▁County": 5127,
+ "ouv": 5128,
+ "▁‘": 5129,
+ "▁installed": 5130,
+ "▁wanted": 5131,
+ "▁Python": 5132,
+ "▁interpre": 5133,
+ "▁included": 5134,
+ "▁((": 5135,
+ "▁altern": 5136,
+ "isto": 5137,
+ "gn": 5138,
+ "▁border": 5139,
+ "pdf": 5140,
+ "▁dup": 5141,
+ "▁download": 5142,
+ "just": 5143,
+ "▁members": 5144,
+ "child": 5145,
+ "▁pay": 5146,
+ "▁cer": 5147,
+ "▁looked": 5148,
+ "▁correctly": 5149,
+ "auth": 5150,
+ "▁стан": 5151,
+ "▁esp": 5152,
+ "▁desc": 5153,
+ "eben": 5154,
+ "▁questions": 5155,
+ "mal": 5156,
+ "▁abgerufen": 5157,
+ "▁Band": 5158,
+ "▁[]": 5159,
+ "Base": 5160,
+ "▁ris": 5161,
+ "▁fort": 5162,
+ "▁Id": 5163,
+ "▁various": 5164,
+ "▁League": 5165,
+ "▁Hand": 5166,
+ "▁Type": 5167,
+ "irl": 5168,
+ "▁Fe": 5169,
+ "ién": 5170,
+ "itter": 5171,
+ "▁fast": 5172,
+ "sta": 5173,
+ "▁except": 5174,
+ "icz": 5175,
+ "▁French": 5176,
+ "▁environment": 5177,
+ "▁conse": 5178,
+ "ур": 5179,
+ "ого": 5180,
+ "▁necessary": 5181,
+ "target": 5182,
+ "▁reading": 5183,
+ "home": 5184,
+ "zeich": 5185,
+ "▁equal": 5186,
+ "▁più": 5187,
+ "▁prem": 5188,
+ "▁difficult": 5189,
+ "▁unit": 5190,
+ "▁replace": 5191,
+ "▁heart": 5192,
+ "▁talk": 5193,
+ "AM": 5194,
+ "▁RE": 5195,
+ "▁Person": 5196,
+ "endency": 5197,
+ "▁imm": 5198,
+ "▁human": 5199,
+ "dn": 5200,
+ "▁Kir": 5201,
+ "▁Aut": 5202,
+ "known": 5203,
+ "▁frequ": 5204,
+ "system": 5205,
+ "лав": 5206,
+ "▁Sz": 5207,
+ "▁Gal": 5208,
+ "ное": 5209,
+ "selves": 5210,
+ "rightarrow": 5211,
+ "▁Са": 5212,
+ "=\"@": 5213,
+ "▁building": 5214,
+ "import": 5215,
+ "▁fam": 5216,
+ "▁delete": 5217,
+ "aire": 5218,
+ "mary": 5219,
+ "▁fund": 5220,
+ "▁particip": 5221,
+ "▁syn": 5222,
+ "sin": 5223,
+ "▁lower": 5224,
+ "▁zero": 5225,
+ "▁sec": 5226,
+ "▁fra": 5227,
+ "Point": 5228,
+ "▁failed": 5229,
+ "iento": 5230,
+ "cup": 5231,
+ "▁slow": 5232,
+ "▁nation": 5233,
+ "ähr": 5234,
+ "▁info": 5235,
+ "▁Public": 5236,
+ "▁decla": 5237,
+ "▁Та": 5238,
+ "▁sold": 5239,
+ "▁Rem": 5240,
+ "▁Phil": 5241,
+ "стра": 5242,
+ "▁mehr": 5243,
+ "▁Work": 5244,
+ "▁Nord": 5245,
+ "▁fait": 5246,
+ "▁gew": 5247,
+ "println": 5248,
+ "obile": 5249,
+ "▁Kon": 5250,
+ "▁assume": 5251,
+ "lands": 5252,
+ "▁amount": 5253,
+ "▁Press": 5254,
+ "ých": 5255,
+ "▁maxim": 5256,
+ "▁Champion": 5257,
+ "library": 5258,
+ "añ": 5259,
+ "▁Wal": 5260,
+ "Comm": 5261,
+ "]]": 5262,
+ "▁zw": 5263,
+ "▁social": 5264,
+ "LI": 5265,
+ "▁Unter": 5266,
+ "vor": 5267,
+ "Delta": 5268,
+ "email": 5269,
+ "raint": 5270,
+ "oni": 5271,
+ "▁alt": 5272,
+ "▁né": 5273,
+ "ция": 5274,
+ "ography": 5275,
+ "▁mentioned": 5276,
+ "▁<=": 5277,
+ "▁cette": 5278,
+ "▁currently": 5279,
+ "vare": 5280,
+ "izing": 5281,
+ "▁Def": 5282,
+ "icol": 5283,
+ "ünd": 5284,
+ "▁configuration": 5285,
+ "estig": 5286,
+ "III": 5287,
+ "lam": 5288,
+ "ière": 5289,
+ "▁Ear": 5290,
+ "▁tu": 5291,
+ "Ent": 5292,
+ "▁Using": 5293,
+ "▁ком": 5294,
+ "cie": 5295,
+ "▁proof": 5296,
+ "▁invol": 5297,
+ "▁History": 5298,
+ "><": 5299,
+ "▁AND": 5300,
+ "avy": 5301,
+ "▁relations": 5302,
+ "${": 5303,
+ "▁comes": 5304,
+ "▁direction": 5305,
+ "▁June": 5306,
+ "▁Way": 5307,
+ "Component": 5308,
+ "ech": 5309,
+ "▁Peter": 5310,
+ "sg": 5311,
+ "▁stra": 5312,
+ "uct": 5313,
+ "▁implementation": 5314,
+ "attle": 5315,
+ "▁cz": 5316,
+ "plot": 5317,
+ "▁played": 5318,
+ "\">": 5319,
+ "▁five": 5320,
+ "▁coll": 5321,
+ "▁Charles": 5322,
+ "Tra": 5323,
+ "▁suo": 5324,
+ "files": 5325,
+ "entes": 5326,
+ "response": 5327,
+ "How": 5328,
+ "▁Soci": 5329,
+ "▁ign": 5330,
+ "▁led": 5331,
+ "▁German": 5332,
+ "udo": 5333,
+ "▁Du": 5334,
+ "▁tim": 5335,
+ "ounter": 5336,
+ "▁attack": 5337,
+ "uri": 5338,
+ "▁ар": 5339,
+ "esse": 5340,
+ "ivil": 5341,
+ "▁Ju": 5342,
+ "▁vel": 5343,
+ "matrix": 5344,
+ "▁Mat": 5345,
+ "gio": 5346,
+ "▁Zeit": 5347,
+ "VER": 5348,
+ "has": 5349,
+ "Connection": 5350,
+ "▁ihr": 5351,
+ "▁attribute": 5352,
+ "▁discuss": 5353,
+ "▁domain": 5354,
+ "bind": 5355,
+ "▁Sec": 5356,
+ "rik": 5357,
+ "close": 5358,
+ "gin": 5359,
+ "▁love": 5360,
+ "anto": 5361,
+ "gent": 5362,
+ "aba": 5363,
+ "jango": 5364,
+ "bi": 5365,
+ "▁obser": 5366,
+ "itting": 5367,
+ "▁ру": 5368,
+ "}=": 5369,
+ "agen": 5370,
+ "BC": 5371,
+ "some": 5372,
+ "▁Bu": 5373,
+ "▁soci": 5374,
+ "▁individual": 5375,
+ "▁deal": 5376,
+ "▁outside": 5377,
+ "rio": 5378,
+ "Exec": 5379,
+ "andid": 5380,
+ "▁business": 5381,
+ "▁tempor": 5382,
+ "▁Tur": 5383,
+ "▁(!": 5384,
+ "riter": 5385,
+ "▁google": 5386,
+ "]:": 5387,
+ "itte": 5388,
+ "xi": 5389,
+ "▁Па": 5390,
+ "hol": 5391,
+ "нь": 5392,
+ "ring": 5393,
+ "▁sul": 5394,
+ "ности": 5395,
+ "_.": 5396,
+ "gar": 5397,
+ "Task": 5398,
+ "▁Check": 5399,
+ "▁modern": 5400,
+ "▁win": 5401,
+ "uster": 5402,
+ "han": 5403,
+ "formation": 5404,
+ "void": 5405,
+ "▁фи": 5406,
+ "▁useful": 5407,
+ "▁England": 5408,
+ "los": 5409,
+ "etime": 5410,
+ "eur": 5411,
+ "▁unique": 5412,
+ "▁как": 5413,
+ "ying": 5414,
+ "obj": 5415,
+ "uid": 5416,
+ "▁windows": 5417,
+ "▁distance": 5418,
+ "▁nombre": 5419,
+ "ія": 5420,
+ "ocus": 5421,
+ "ahn": 5422,
+ "ierte": 5423,
+ "▁dar": 5424,
+ "SI": 5425,
+ "long": 5426,
+ "asta": 5427,
+ "iven": 5428,
+ "▁told": 5429,
+ "▁Gru": 5430,
+ "foo": 5431,
+ "▁calling": 5432,
+ "iembre": 5433,
+ "▁future": 5434,
+ "près": 5435,
+ "leep": 5436,
+ "avigation": 5437,
+ "POST": 5438,
+ "▁described": 5439,
+ "▁noch": 5440,
+ "unit": 5441,
+ "allen": 5442,
+ "▁branch": 5443,
+ "fa": 5444,
+ "▁fill": 5445,
+ "▁obj": 5446,
+ "▁tree": 5447,
+ "▁wurden": 5448,
+ "▁Liter": 5449,
+ "rot": 5450,
+ "split": 5451,
+ "emein": 5452,
+ "module": 5453,
+ "CA": 5454,
+ "▁operator": 5455,
+ "▁wrote": 5456,
+ "▁Jack": 5457,
+ "ologie": 5458,
+ "▁Ant": 5459,
+ "тер": 5460,
+ "stream": 5461,
+ "▁Que": 5462,
+ "epsilon": 5463,
+ "non": 5464,
+ "stein": 5465,
+ "▁simpl": 5466,
+ "pub": 5467,
+ "▁July": 5468,
+ "▁nature": 5469,
+ "▁Database": 5470,
+ "ól": 5471,
+ "ним": 5472,
+ "▁VI": 5473,
+ "être": 5474,
+ "iles": 5475,
+ "▁wel": 5476,
+ "'),": 5477,
+ "▁mut": 5478,
+ "location": 5479,
+ "▁therefore": 5480,
+ "elli": 5481,
+ "▁І": 5482,
+ "né": 5483,
+ "▁ав": 5484,
+ "ledge": 5485,
+ "▁conver": 5486,
+ "ím": 5487,
+ "▁XV": 5488,
+ "vider": 5489,
+ "▁January": 5490,
+ "▁usually": 5491,
+ "▁released": 5492,
+ "▁Mi": 5493,
+ "Head": 5494,
+ "iller": 5495,
+ "▁jan": 5496,
+ "▁letter": 5497,
+ "produ": 5498,
+ "rd": 5499,
+ "▁Cam": 5500,
+ ",'": 5501,
+ "▁Ц": 5502,
+ "▁push": 5503,
+ "update": 5504,
+ "▁maybe": 5505,
+ "Http": 5506,
+ "@\"": 5507,
+ "мер": 5508,
+ "service": 5509,
+ "parse": 5510,
+ "▁dass": 5511,
+ "ên": 5512,
+ ")\"": 5513,
+ "more": 5514,
+ "/*": 5515,
+ "▁mas": 5516,
+ "▁likely": 5517,
+ "▁material": 5518,
+ "▁[[": 5519,
+ "▁longer": 5520,
+ "bal": 5521,
+ "▁Archiv": 5522,
+ "igt": 5523,
+ "▁egy": 5524,
+ "idge": 5525,
+ "igu": 5526,
+ "conf": 5527,
+ "▁inc": 5528,
+ "consulté": 5529,
+ "▁mai": 5530,
+ "Work": 5531,
+ "▁гра": 5532,
+ "▁October": 5533,
+ "▁global": 5534,
+ "▁sel": 5535,
+ "▁municip": 5536,
+ "▁viol": 5537,
+ "▁Does": 5538,
+ "▁\\[": 5539,
+ "ском": 5540,
+ "▁compos": 5541,
+ "бря": 5542,
+ "вя": 5543,
+ "▁respons": 5544,
+ "▁considered": 5545,
+ "▁Japan": 5546,
+ "pes": 5547,
+ "osto": 5548,
+ "▁milit": 5549,
+ "SP": 5550,
+ "сы": 5551,
+ "attr": 5552,
+ "cil": 5553,
+ "irectory": 5554,
+ "aving": 5555,
+ "▁Del": 5556,
+ "▁prevent": 5557,
+ "idade": 5558,
+ "git": 5559,
+ "iform": 5560,
+ "outer": 5561,
+ "inct": 5562,
+ "level": 5563,
+ "atever": 5564,
+ "▁repe": 5565,
+ "▁exc": 5566,
+ "дар": 5567,
+ "Style": 5568,
+ "▁Thomas": 5569,
+ "eline": 5570,
+ "▁ж": 5571,
+ "untime": 5572,
+ "▁larg": 5573,
+ "True": 5574,
+ ".*": 5575,
+ "creen": 5576,
+ "yles": 5577,
+ "▁transl": 5578,
+ "▁Со": 5579,
+ "ensions": 5580,
+ "äl": 5581,
+ "isse": 5582,
+ "▁volt": 5583,
+ "cially": 5584,
+ "nik": 5585,
+ ".]": 5586,
+ "▁Stadt": 5587,
+ "мы": 5588,
+ "fill": 5589,
+ "lov": 5590,
+ "▁\"/": 5591,
+ "Sp": 5592,
+ "▁Air": 5593,
+ "Call": 5594,
+ "▁nur": 5595,
+ "Check": 5596,
+ "ience": 5597,
+ "efined": 5598,
+ "▁вре": 5599,
+ "ło": 5600,
+ "dz": 5601,
+ "▁ор": 5602,
+ "iker": 5603,
+ "owa": 5604,
+ "ович": 5605,
+ "ré": 5606,
+ "OL": 5607,
+ "▁linear": 5608,
+ "▁export": 5609,
+ "ahr": 5610,
+ "icial": 5611,
+ "Rep": 5612,
+ "▁natural": 5613,
+ "▁cop": 5614,
+ "▁})": 5615,
+ "ções": 5616,
+ "zz": 5617,
+ "What": 5618,
+ "▁House": 5619,
+ "Ref": 5620,
+ "inger": 5621,
+ "▁taking": 5622,
+ "ně": 5623,
+ "▁Einz": 5624,
+ "▁dam": 5625,
+ "▁issues": 5626,
+ "Builder": 5627,
+ "edit": 5628,
+ "▁prz": 5629,
+ "password": 5630,
+ "Gener": 5631,
+ "rim": 5632,
+ "▁parts": 5633,
+ "---": 5634,
+ "iginal": 5635,
+ "▁Sci": 5636,
+ "▁mother": 5637,
+ "rea": 5638,
+ "▁container": 5639,
+ "дя": 5640,
+ "▁IP": 5641,
+ "▁none": 5642,
+ "▁followed": 5643,
+ "▁ple": 5644,
+ "▁measure": 5645,
+ "▁tout": 5646,
+ "Ext": 5647,
+ "▁TV": 5648,
+ "▁explain": 5649,
+ "▁paper": 5650,
+ "сті": 5651,
+ "ws": 5652,
+ "Wik": 5653,
+ "▁mm": 5654,
+ "▁Norm": 5655,
+ "▁Server": 5656,
+ "font": 5657,
+ "ecause": 5658,
+ "TR": 5659,
+ "▁би": 5660,
+ "La": 5661,
+ "▁ens": 5662,
+ "▁retr": 5663,
+ "▁Sil": 5664,
+ "▁sequence": 5665,
+ "arc": 5666,
+ "IV": 5667,
+ "zá": 5668,
+ "▁Android": 5669,
+ "▁Super": 5670,
+ "▁roz": 5671,
+ "ovie": 5672,
+ "Om": 5673,
+ "▁Well": 5674,
+ "make": 5675,
+ "orph": 5676,
+ "▁Jer": 5677,
+ "▁Ros": 5678,
+ "reference": 5679,
+ "▁features": 5680,
+ "▁Ger": 5681,
+ "▁Leg": 5682,
+ "▁late": 5683,
+ "▁additional": 5684,
+ "▁flo": 5685,
+ "▁его": 5686,
+ "▁algorithm": 5687,
+ "BA": 5688,
+ "kar": 5689,
+ "IP": 5690,
+ "]);": 5691,
+ "▁appears": 5692,
+ "yw": 5693,
+ "▁temp": 5694,
+ "▁aussi": 5695,
+ "method": 5696,
+ "▁pet": 5697,
+ "strap": 5698,
+ "arning": 5699,
+ "▁cut": 5700,
+ "▁Sa": 5701,
+ "▁track": 5702,
+ "▁employ": 5703,
+ "▁inde": 5704,
+ "rav": 5705,
+ "▁generate": 5706,
+ "bes": 5707,
+ "arts": 5708,
+ "Status": 5709,
+ "uge": 5710,
+ "alis": 5711,
+ "▁override": 5712,
+ "▁fi": 5713,
+ "▁lost": 5714,
+ "oted": 5715,
+ "▁room": 5716,
+ "▁calls": 5717,
+ "▁consist": 5718,
+ "рен": 5719,
+ "▁village": 5720,
+ "dist": 5721,
+ "▁techn": 5722,
+ "enza": 5723,
+ "▁роз": 5724,
+ "▁Catalog": 5725,
+ "▁becom": 5726,
+ "rows": 5727,
+ "▁Nel": 5728,
+ "comple": 5729,
+ "▁premi": 5730,
+ "▁rot": 5731,
+ "▁Weblinks": 5732,
+ "▁football": 5733,
+ "▁compar": 5734,
+ "▁live": 5735,
+ "ких": 5736,
+ "▁equival": 5737,
+ "cape": 5738,
+ "▁Gen": 5739,
+ "nder": 5740,
+ "▁Vis": 5741,
+ "▁behind": 5742,
+ "gers": 5743,
+ "voke": 5744,
+ "▁media": 5745,
+ "EX": 5746,
+ "that": 5747,
+ "▁sono": 5748,
+ "▁mysql": 5749,
+ "ev": 5750,
+ "▁rule": 5751,
+ "дов": 5752,
+ "acc": 5753,
+ "▁WHERE": 5754,
+ "ене": 5755,
+ "Grid": 5756,
+ "▁jul": 5757,
+ "▁mort": 5758,
+ "▁generated": 5759,
+ "encia": 5760,
+ "acter": 5761,
+ "clud": 5762,
+ "▁scen": 5763,
+ "▁closed": 5764,
+ "▁Michael": 5765,
+ "▁mount": 5766,
+ ")$,": 5767,
+ "▁drop": 5768,
+ "▁combin": 5769,
+ "tocol": 5770,
+ "▁goes": 5771,
+ "▁geb": 5772,
+ "MD": 5773,
+ "▁Anton": 5774,
+ "▁$(\"": 5775,
+ "Tem": 5776,
+ "▁ca": 5777,
+ "▁instru": 5778,
+ "eds": 5779,
+ "▁tool": 5780,
+ "mys": 5781,
+ "▁route": 5782,
+ "\"))": 5783,
+ "пре": 5784,
+ "▁float": 5785,
+ "▁services": 5786,
+ "▁чи": 5787,
+ "кі": 5788,
+ "embly": 5789,
+ "aker": 5790,
+ "▁Son": 5791,
+ "▁Math": 5792,
+ "asse": 5793,
+ "ously": 5794,
+ "lications": 5795,
+ "▁ru": 5796,
+ "▁що": 5797,
+ "▁Const": 5798,
+ "▁immedi": 5799,
+ "FO": 5800,
+ "oro": 5801,
+ "▁production": 5802,
+ "rei": 5803,
+ "▁jquery": 5804,
+ "annt": 5805,
+ "▁While": 5806,
+ "▁sn": 5807,
+ "▁годи": 5808,
+ "Format": 5809,
+ "▁star": 5810,
+ "▁Sen": 5811,
+ "▁ko": 5812,
+ "NAME": 5813,
+ "▁prés": 5814,
+ "cha": 5815,
+ "what": 5816,
+ "omin": 5817,
+ "endant": 5818,
+ "hy": 5819,
+ "▁observ": 5820,
+ "▁prefer": 5821,
+ "ун": 5822,
+ "▁constructor": 5823,
+ "bs": 5824,
+ "▁mac": 5825,
+ "▁Bre": 5826,
+ "▁Instit": 5827,
+ "▁story": 5828,
+ "▁symbol": 5829,
+ "eles": 5830,
+ "ße": 5831,
+ "asing": 5832,
+ "▁west": 5833,
+ "ians": 5834,
+ "▁master": 5835,
+ "ез": 5836,
+ "▁ways": 5837,
+ "bm": 5838,
+ "▁pick": 5839,
+ "▁depart": 5840,
+ "Back": 5841,
+ "enk": 5842,
+ "lipse": 5843,
+ "▁math": 5844,
+ "▁Francis": 5845,
+ "▁December": 5846,
+ "fs": 5847,
+ "rum": 5848,
+ "▁development": 5849,
+ "LT": 5850,
+ "ernel": 5851,
+ "▁True": 5852,
+ "▁More": 5853,
+ "rangle": 5854,
+ "▁conditions": 5855,
+ "Options": 5856,
+ "▁gli": 5857,
+ "▁operation": 5858,
+ "ék": 5859,
+ "acht": 5860,
+ "ights": 5861,
+ "▁mist": 5862,
+ "anda": 5863,
+ "▁energy": 5864,
+ "▁же": 5865,
+ "▁women": 5866,
+ "akt": 5867,
+ "▁CH": 5868,
+ "gebra": 5869,
+ "▁meet": 5870,
+ "iu": 5871,
+ "well": 5872,
+ "öl": 5873,
+ "▁government": 5874,
+ "▁Jos": 5875,
+ "ieg": 5876,
+ "▁syntax": 5877,
+ "fix": 5878,
+ "▁Pet": 5879,
+ "jquery": 5880,
+ "▁card": 5881,
+ "▁principal": 5882,
+ "▁dru": 5883,
+ "▁territ": 5884,
+ "▁пов": 5885,
+ "▁SS": 5886,
+ "рии": 5887,
+ "tres": 5888,
+ "agne": 5889,
+ "lying": 5890,
+ "tilde": 5891,
+ "bern": 5892,
+ "enter": 5893,
+ "Per": 5894,
+ "▁somet": 5895,
+ "Load": 5896,
+ "lice": 5897,
+ "▁sous": 5898,
+ "▁Louis": 5899,
+ "▁logic": 5900,
+ "▁Other": 5901,
+ "▁cir": 5902,
+ "év": 5903,
+ "chron": 5904,
+ "▁han": 5905,
+ "▁margin": 5906,
+ "Window": 5907,
+ "ères": 5908,
+ "nych": 5909,
+ "push": 5910,
+ "bolds": 5911,
+ "▁layout": 5912,
+ "▁[`": 5913,
+ "Char": 5914,
+ "▁Cap": 5915,
+ "boldsymbol": 5916,
+ "▁Roman": 5917,
+ "▁Max": 5918,
+ ":(": 5919,
+ "▁Code": 5920,
+ "ising": 5921,
+ "▁states": 5922,
+ "▁existing": 5923,
+ "support": 5924,
+ "▁research": 5925,
+ "licate": 5926,
+ "vari": 5927,
+ "▁bij": 5928,
+ "▁appe": 5929,
+ "▁happens": 5930,
+ "\\\"": 5931,
+ "▁concern": 5932,
+ "west": 5933,
+ "▁saying": 5934,
+ "pid": 5935,
+ "▁recogn": 5936,
+ "▁Het": 5937,
+ "Child": 5938,
+ "▁cs": 5939,
+ "\\,": 5940,
+ "▁clean": 5941,
+ "lections": 5942,
+ "access": 5943,
+ "ву": 5944,
+ "про": 5945,
+ "acity": 5946,
+ "▁Off": 5947,
+ "▁easily": 5948,
+ "èque": 5949,
+ "▁jako": 5950,
+ "▁iz": 5951,
+ "▁Ha": 5952,
+ "▁Det": 5953,
+ "▁forma": 5954,
+ "sche": 5955,
+ "swers": 5956,
+ "▁offer": 5957,
+ "quired": 5958,
+ "Users": 5959,
+ "▁subst": 5960,
+ ">(": 5961,
+ "▁ground": 5962,
+ "unn": 5963,
+ "rod": 5964,
+ "spe": 5965,
+ "ursor": 5966,
+ "▁leave": 5967,
+ "erk": 5968,
+ "▁tal": 5969,
+ "▁bottom": 5970,
+ "IO": 5971,
+ "▁popular": 5972,
+ "igo": 5973,
+ "▁Time": 5974,
+ "values": 5975,
+ "▁Loc": 5976,
+ "▁Club": 5977,
+ "▁anche": 5978,
+ "iał": 5979,
+ "ії": 5980,
+ "Omega": 5981,
+ "▁located": 5982,
+ "Url": 5983,
+ "▁Esp": 5984,
+ "лы": 5985,
+ "ць": 5986,
+ "ulate": 5987,
+ "▁join": 5988,
+ "aves": 5989,
+ "vet": 5990,
+ "lio": 5991,
+ "remove": 5992,
+ "▁token": 5993,
+ "▁optim": 5994,
+ "▁claim": 5995,
+ "ological": 5996,
+ "▁css": 5997,
+ "▁although": 5998,
+ "▁priv": 5999,
+ "▁Ba": 6000,
+ "ül": 6001,
+ "entication": 6002,
+ "▁ven": 6003,
+ "Server": 6004,
+ "▁Cong": 6005,
+ "NET": 6006,
+ "CON": 6007,
+ "dt": 6008,
+ "perties": 6009,
+ "▁epis": 6010,
+ "wikipedia": 6011,
+ "▁engine": 6012,
+ "▁fer": 6013,
+ "getElement": 6014,
+ "▁Cla": 6015,
+ "ří": 6016,
+ "▁rom": 6017,
+ "varepsilon": 6018,
+ "▁prime": 6019,
+ "istry": 6020,
+ "pected": 6021,
+ "orage": 6022,
+ "▁touch": 6023,
+ "▁['": 6024,
+ "▁dan": 6025,
+ "Em": 6026,
+ "aciones": 6027,
+ "Can": 6028,
+ "▁whom": 6029,
+ "▁behavior": 6030,
+ "▁strings": 6031,
+ "▁Europ": 6032,
+ "▁Rom": 6033,
+ "circ": 6034,
+ "▁pun": 6035,
+ "▁register": 6036,
+ "buntu": 6037,
+ "rain": 6038,
+ "Ob": 6039,
+ "TA": 6040,
+ "▁sometimes": 6041,
+ "▁ment": 6042,
+ "▁integer": 6043,
+ "▁Jac": 6044,
+ "legate": 6045,
+ "othing": 6046,
+ "▁sound": 6047,
+ "laces": 6048,
+ "▁Ба": 6049,
+ "rb": 6050,
+ "di": 6051,
+ "ления": 6052,
+ "▁themselves": 6053,
+ "▁Black": 6054,
+ "▁settings": 6055,
+ "▁norm": 6056,
+ "▁runs": 6057,
+ "▁NOT": 6058,
+ "KE": 6059,
+ "▁perhaps": 6060,
+ "▁Я": 6061,
+ "▁mol": 6062,
+ "▁ans": 6063,
+ "atre": 6064,
+ "▁Dies": 6065,
+ "Token": 6066,
+ "anie": 6067,
+ "▁allowed": 6068,
+ "Range": 6069,
+ "▁Gro": 6070,
+ "via": 6071,
+ "utorial": 6072,
+ "ensor": 6073,
+ "estival": 6074,
+ ");\r": 6075,
+ "краї": 6076,
+ "▁turned": 6077,
+ "scope": 6078,
+ "▁bien": 6079,
+ "=$": 6080,
+ "▁extension": 6081,
+ "atore": 6082,
+ "▁Ро": 6083,
+ "▁specify": 6084,
+ "edu": 6085,
+ "Datos": 6086,
+ "▁stored": 6087,
+ "▁parse": 6088,
+ "▁answers": 6089,
+ "ills": 6090,
+ "▁heard": 6091,
+ "lu": 6092,
+ "▁THE": 6093,
+ "▁gén": 6094,
+ "▁ful": 6095,
+ "ez": 6096,
+ "▁Prem": 6097,
+ "then": 6098,
+ "dp": 6099,
+ "ського": 6100,
+ "▁Si": 6101,
+ "ço": 6102,
+ "Edit": 6103,
+ "ків": 6104,
+ "▁Ли": 6105,
+ "▁Sing": 6106,
+ "▁categ": 6107,
+ "Equ": 6108,
+ "▁guer": 6109,
+ "Width": 6110,
+ "▁Christian": 6111,
+ "stat": 6112,
+ "Write": 6113,
+ "▁woman": 6114,
+ "wood": 6115,
+ "Vis": 6116,
+ "раз": 6117,
+ "▁$$\\": 6118,
+ "oder": 6119,
+ "▁bool": 6120,
+ "▁international": 6121,
+ "ность": 6122,
+ "▁Richard": 6123,
+ "▁addition": 6124,
+ "▁Music": 6125,
+ "▁aber": 6126,
+ "tó": 6127,
+ "▁hier": 6128,
+ "ugh": 6129,
+ "▁pob": 6130,
+ "▁tables": 6131,
+ "Do": 6132,
+ "▁higher": 6133,
+ "psi": 6134,
+ "rá": 6135,
+ "▁active": 6136,
+ "▁Table": 6137,
+ "ње": 6138,
+ "▁description": 6139,
+ "▁seemed": 6140,
+ "íst": 6141,
+ "▁myself": 6142,
+ "▁menu": 6143,
+ "del": 6144,
+ "▁ž": 6145,
+ "ele": 6146,
+ "Aut": 6147,
+ "▁гру": 6148,
+ "mut": 6149,
+ "oon": 6150,
+ "asc": 6151,
+ "bug": 6152,
+ "▁moved": 6153,
+ "CL": 6154,
+ "▁datas": 6155,
+ "SO": 6156,
+ "оло": 6157,
+ "▁Georg": 6158,
+ "▁reach": 6159,
+ ":\"": 6160,
+ "▁evalu": 6161,
+ "▁Hel": 6162,
+ "▁River": 6163,
+ "▁Ар": 6164,
+ "////": 6165,
+ "▁sets": 6166,
+ "▁Olymp": 6167,
+ "Adapter": 6168,
+ ".'": 6169,
+ "overn": 6170,
+ "▁Lord": 6171,
+ "!--": 6172,
+ "jpg": 6173,
+ "imento": 6174,
+ "▁Prof": 6175,
+ "▁achieve": 6176,
+ "}:": 6177,
+ "▁incor": 6178,
+ "▁onder": 6179,
+ "engl": 6180,
+ "ABLE": 6181,
+ "▁Mary": 6182,
+ "▁waren": 6183,
+ "lage": 6184,
+ "Dec": 6185,
+ "англ": 6186,
+ "encias": 6187,
+ "лей": 6188,
+ "▁Machine": 6189,
+ "▁Ан": 6190,
+ "uda": 6191,
+ "▁ś": 6192,
+ "▁XX": 6193,
+ "only": 6194,
+ "ление": 6195,
+ "▁también": 6196,
+ "nej": 6197,
+ "▁relative": 6198,
+ "▁hours": 6199,
+ "▁indeed": 6200,
+ "undo": 6201,
+ "ingu": 6202,
+ "area": 6203,
+ "▁Create": 6204,
+ "beit": 6205,
+ "▁removed": 6206,
+ "master": 6207,
+ "haus": 6208,
+ "▁Bern": 6209,
+ "▁speed": 6210,
+ "▁Bay": 6211,
+ "▁Att": 6212,
+ "▁None": 6213,
+ "application": 6214,
+ "üd": 6215,
+ "▁fit": 6216,
+ "▁Maria": 6217,
+ "▁nord": 6218,
+ "▁split": 6219,
+ "▁stru": 6220,
+ "▁official": 6221,
+ "▁execute": 6222,
+ "ouve": 6223,
+ "{{": 6224,
+ "▁Ap": 6225,
+ "▁ку": 6226,
+ "IL": 6227,
+ "▁^": 6228,
+ "dim": 6229,
+ "▁setup": 6230,
+ "ск": 6231,
+ "▁share": 6232,
+ "▁minutes": 6233,
+ "gle": 6234,
+ "oco": 6235,
+ "stell": 6236,
+ "▁Coun": 6237,
+ "▁temper": 6238,
+ "keit": 6239,
+ "ський": 6240,
+ "ao": 6241,
+ "▁Long": 6242,
+ "(&": 6243,
+ "кан": 6244,
+ "▁dens": 6245,
+ "But": 6246,
+ "XX": 6247,
+ "DATE": 6248,
+ "gan": 6249,
+ ".).": 6250,
+ "▁entry": 6251,
+ "install": 6252,
+ "▁зна": 6253,
+ "▁Som": 6254,
+ "Command": 6255,
+ "ßen": 6256,
+ "▁starting": 6257,
+ "▁sto": 6258,
+ "IG": 6259,
+ "▁minim": 6260,
+ "▁explicit": 6261,
+ "▁bytes": 6262,
+ "▁party": 6263,
+ "tober": 6264,
+ "▁Grand": 6265,
+ "▁Vor": 6266,
+ "▁leur": 6267,
+ "Document": 6268,
+ "erc": 6269,
+ "ensive": 6270,
+ "CP": 6271,
+ "env": 6272,
+ "▁arguments": 6273,
+ "▁Gran": 6274,
+ "arily": 6275,
+ "▁lin": 6276,
+ "tn": 6277,
+ "(-": 6278,
+ "geq": 6279,
+ "▁Famil": 6280,
+ "▁Бо": 6281,
+ "▁tour": 6282,
+ "▁nav": 6283,
+ "▁properly": 6284,
+ "▁Mrs": 6285,
+ "▁Mel": 6286,
+ "▁scale": 6287,
+ "astic": 6288,
+ "ds": 6289,
+ "▁Sir": 6290,
+ "▁Church": 6291,
+ "}^{\\": 6292,
+ "you": 6293,
+ "/.": 6294,
+ "So": 6295,
+ "▁brought": 6296,
+ "▁role": 6297,
+ "▁Sur": 6298,
+ "▁fond": 6299,
+ "▁ges": 6300,
+ "że": 6301,
+ "eten": 6302,
+ "▁était": 6303,
+ "SER": 6304,
+ "▁которы": 6305,
+ "▁equation": 6306,
+ "aspx": 6307,
+ "▁Afr": 6308,
+ "▁dit": 6309,
+ "empty": 6310,
+ "alement": 6311,
+ "wrap": 6312,
+ "▁Bet": 6313,
+ "▁collect": 6314,
+ "▁git": 6315,
+ "▁vie": 6316,
+ "▁..": 6317,
+ "рой": 6318,
+ "▁": 6319,
+ "▁educ": 6320,
+ "kl": 6321,
+ "ensis": 6322,
+ "▁OR": 6323,
+ "▁Hi": 6324,
+ "▁Cour": 6325,
+ "бы": 6326,
+ "cert": 6327,
+ "▁Ges": 6328,
+ "essor": 6329,
+ "Main": 6330,
+ "▁лю": 6331,
+ "cade": 6332,
+ "dot": 6333,
+ "augh": 6334,
+ "hib": 6335,
+ "▁automatically": 6336,
+ "▁spir": 6337,
+ "present": 6338,
+ "▁February": 6339,
+ "▁Elle": 6340,
+ "custom": 6341,
+ "▁proget": 6342,
+ "▁administr": 6343,
+ "AA": 6344,
+ "▁born": 6345,
+ "▁College": 6346,
+ "athol": 6347,
+ "`)": 6348,
+ "ierre": 6349,
+ "▁ran": 6350,
+ "▁profession": 6351,
+ "ogen": 6352,
+ "}_{\\": 6353,
+ "▁activity": 6354,
+ "▁scroll": 6355,
+ "▁prove": 6356,
+ "ibrary": 6357,
+ "eries": 6358,
+ "Read": 6359,
+ "year": 6360,
+ "▁lang": 6361,
+ "Det": 6362,
+ "▁knew": 6363,
+ "▁protected": 6364,
+ "▁wor": 6365,
+ "▁effic": 6366,
+ "▁rég": 6367,
+ "▁theory": 6368,
+ "▁published": 6369,
+ "real": 6370,
+ "▁Tour": 6371,
+ "▁durante": 6372,
+ "äs": 6373,
+ "▁positive": 6374,
+ "▁forward": 6375,
+ "▁Rel": 6376,
+ "{\"": 6377,
+ "park": 6378,
+ "▁Um": 6379,
+ "▁eer": 6380,
+ "enta": 6381,
+ "▁imag": 6382,
+ "ної": 6383,
+ "piel": 6384,
+ "▁jQuery": 6385,
+ "isme": 6386,
+ "chni": 6387,
+ "organ": 6388,
+ "▁args": 6389,
+ "oir": 6390,
+ "heim": 6391,
+ "rian": 6392,
+ "eless": 6393,
+ "uses": 6394,
+ "дин": 6395,
+ "ición": 6396,
+ "▁indust": 6397,
+ "▁wish": 6398,
+ "ány": 6399,
+ "oca": 6400,
+ "▁angular": 6401,
+ "ieved": 6402,
+ "▁occur": 6403,
+ "SELECT": 6404,
+ "onia": 6405,
+ "admin": 6406,
+ "▁Best": 6407,
+ "▁это": 6408,
+ "огра": 6409,
+ "▁loss": 6410,
+ "▁bal": 6411,
+ "▁Рос": 6412,
+ "▁career": 6413,
+ "▁пе": 6414,
+ "IX": 6415,
+ "▁fall": 6416,
+ "▁Rob": 6417,
+ "▁OP": 6418,
+ "ened": 6419,
+ "graphics": 6420,
+ "▁coming": 6421,
+ "Update": 6422,
+ "▁died": 6423,
+ "eden": 6424,
+ "▁abs": 6425,
+ "▁inner": 6426,
+ "▁trav": 6427,
+ "стоя": 6428,
+ "zą": 6429,
+ "ép": 6430,
+ "▁Group": 6431,
+ "▁cel": 6432,
+ "▁stuff": 6433,
+ "▁situation": 6434,
+ "▁${": 6435,
+ "acle": 6436,
+ "▁purpose": 6437,
+ "▁Fire": 6438,
+ "▁Oh": 6439,
+ "▁Second": 6440,
+ "▁upload": 6441,
+ "ostał": 6442,
+ "ющи": 6443,
+ "Auth": 6444,
+ "▁showing": 6445,
+ "▁completely": 6446,
+ "avel": 6447,
+ "bd": 6448,
+ "▁proced": 6449,
+ "▁Ö": 6450,
+ "control": 6451,
+ "▁thank": 6452,
+ "undred": 6453,
+ "▁tom": 6454,
+ "▁examples": 6455,
+ "▁remember": 6456,
+ "▁рабо": 6457,
+ "▁possib": 6458,
+ "▁detect": 6459,
+ "▁poor": 6460,
+ "▁Op": 6461,
+ "▁century": 6462,
+ "utter": 6463,
+ "▁login": 6464,
+ "unst": 6465,
+ "Output": 6466,
+ "▁otherwise": 6467,
+ "lan": 6468,
+ "тур": 6469,
+ "▁сов": 6470,
+ "▁groups": 6471,
+ "rip": 6472,
+ "▁shell": 6473,
+ "▁district": 6474,
+ "▁records": 6475,
+ "▁siè": 6476,
+ "fortun": 6477,
+ "enty": 6478,
+ "▁Tre": 6479,
+ "▁changing": 6480,
+ "след": 6481,
+ "aught": 6482,
+ "▁deep": 6483,
+ "subset": 6484,
+ "agy": 6485,
+ "endar": 6486,
+ "jax": 6487,
+ "OM": 6488,
+ "El": 6489,
+ "imate": 6490,
+ "ardo": 6491,
+ "▁plot": 6492,
+ "▁visit": 6493,
+ "▁bug": 6494,
+ "▁все": 6495,
+ "▁opened": 6496,
+ "▁repla": 6497,
+ "▁Henry": 6498,
+ "▁pp": 6499,
+ "bas": 6500,
+ "▁dark": 6501,
+ "▁Martin": 6502,
+ "▁resource": 6503,
+ "iling": 6504,
+ "▁watch": 6505,
+ "replace": 6506,
+ "▁release": 6507,
+ "Location": 6508,
+ "▁learning": 6509,
+ "menu": 6510,
+ "▁allows": 6511,
+ "ър": 6512,
+ "Length": 6513,
+ "▁whatever": 6514,
+ "▁pages": 6515,
+ "▁compiler": 6516,
+ "▁также": 6517,
+ "▁Pan": 6518,
+ "command": 6519,
+ "▁road": 6520,
+ "▁unless": 6521,
+ "`?": 6522,
+ "▁discover": 6523,
+ "▁он": 6524,
+ "}]": 6525,
+ "bour": 6526,
+ "▁Could": 6527,
+ "▁regex": 6528,
+ "▁ps": 6529,
+ "CD": 6530,
+ "из": 6531,
+ "▁wife": 6532,
+ "amenti": 6533,
+ "▁fair": 6534,
+ "▁DB": 6535,
+ "▁Cup": 6536,
+ "enen": 6537,
+ "ajax": 6538,
+ "othèque": 6539,
+ "▁seiner": 6540,
+ "icker": 6541,
+ "ám": 6542,
+ "exchange": 6543,
+ "oles": 6544,
+ "IF": 6545,
+ "▁До": 6546,
+ "ohn": 6547,
+ "▁grow": 6548,
+ "▁Thus": 6549,
+ "spec": 6550,
+ "▁hatte": 6551,
+ "#,": 6552,
+ "allel": 6553,
+ "▁rate": 6554,
+ "▁central": 6555,
+ "▁Van": 6556,
+ "iforn": 6557,
+ "Run": 6558,
+ "▁study": 6559,
+ "▁XML": 6560,
+ "▁Che": 6561,
+ "▁beaut": 6562,
+ "mid": 6563,
+ "▁advance": 6564,
+ "Ver": 6565,
+ "тя": 6566,
+ "▁hands": 6567,
+ "▁lay": 6568,
+ "▁š": 6569,
+ "▁OS": 6570,
+ "▁{}": 6571,
+ "Pre": 6572,
+ "▁Hall": 6573,
+ "imp": 6574,
+ "▁sun": 6575,
+ "▁steps": 6576,
+ "▁jud": 6577,
+ "qui": 6578,
+ "▁boot": 6579,
+ "▁%>": 6580,
+ "▁Ва": 6581,
+ "nost": 6582,
+ "▁nem": 6583,
+ "▁pen": 6584,
+ "Open": 6585,
+ "▁church": 6586,
+ "кон": 6587,
+ "▁average": 6588,
+ "▁comments": 6589,
+ "▁corresponding": 6590,
+ "levant": 6591,
+ "▁bed": 6592,
+ "▁meaning": 6593,
+ "Version": 6594,
+ "Link": 6595,
+ "bel": 6596,
+ "▁extract": 6597,
+ "ść": 6598,
+ "▁IV": 6599,
+ "▁Ir": 6600,
+ "▁computer": 6601,
+ "▁affect": 6602,
+ "▁Ста": 6603,
+ "AX": 6604,
+ "sort": 6605,
+ "▁species": 6606,
+ "▁Oper": 6607,
+ "▁hash": 6608,
+ "ches": 6609,
+ "▁Einzeln": 6610,
+ "▁keys": 6611,
+ "▁marzo": 6612,
+ "▁interpret": 6613,
+ "hood": 6614,
+ "▁coordin": 6615,
+ "ös": 6616,
+ "rage": 6617,
+ "etz": 6618,
+ "iza": 6619,
+ "дер": 6620,
+ "üt": 6621,
+ "^*": 6622,
+ "▁modify": 6623,
+ "▁termin": 6624,
+ "▁cred": 6625,
+ "zon": 6626,
+ "ную": 6627,
+ "▁mie": 6628,
+ "▁''": 6629,
+ "▁Mos": 6630,
+ "▁connected": 6631,
+ "NO": 6632,
+ "▁compile": 6633,
+ "▁\"\\": 6634,
+ "▁cat": 6635,
+ "fiddle": 6636,
+ "uta": 6637,
+ "Access": 6638,
+ "▁Sto": 6639,
+ "▁Bur": 6640,
+ "▁north": 6641,
+ "Gamma": 6642,
+ "▁alloc": 6643,
+ "Init": 6644,
+ "▁Link": 6645,
+ "ialize": 6646,
+ "Impl": 6647,
+ "oupe": 6648,
+ "ropri": 6649,
+ "▁Gold": 6650,
+ "▁solo": 6651,
+ "▁Dist": 6652,
+ ",-": 6653,
+ "nav": 6654,
+ "▁alert": 6655,
+ "esis": 6656,
+ "▁Os": 6657,
+ "///": 6658,
+ "▁feb": 6659,
+ "▁-->": 6660,
+ "foot": 6661,
+ "▁Fried": 6662,
+ "▁Einzelnach": 6663,
+ "▁rev": 6664,
+ "zeit": 6665,
+ "▁Stat": 6666,
+ "▁Seg": 6667,
+ "▁blo": 6668,
+ "wick": 6669,
+ "EL": 6670,
+ "caption": 6671,
+ "header": 6672,
+ "▁president": 6673,
+ "▁multip": 6674,
+ "▁Einzelnachweise": 6675,
+ "▁seine": 6676,
+ "?”": 6677,
+ "Function": 6678,
+ "▁Stand": 6679,
+ "▁Function": 6680,
+ "▁?>": 6681,
+ "▁Bill": 6682,
+ "▁spect": 6683,
+ "▁redirect": 6684,
+ "rupt": 6685,
+ "▁walk": 6686,
+ "вши": 6687,
+ "springframework": 6688,
+ "place": 6689,
+ "ého": 6690,
+ "Entity": 6691,
+ "▁Service": 6692,
+ "inte": 6693,
+ "▁training": 6694,
+ "▁(`": 6695,
+ "фор": 6696,
+ "▁кра": 6697,
+ "aur": 6698,
+ "▁fetch": 6699,
+ "▁†": 6700,
+ "▁même": 6701,
+ "▁('": 6702,
+ "atively": 6703,
+ "▁execut": 6704,
+ "äch": 6705,
+ "▁Catalogue": 6706,
+ "based": 6707,
+ "Attribute": 6708,
+ "▁spring": 6709,
+ "phone": 6710,
+ "тра": 6711,
+ "▁пи": 6712,
+ "тера": 6713,
+ "▁`\\": 6714,
+ "▁Od": 6715,
+ "One": 6716,
+ "send": 6717,
+ "bon": 6718,
+ "▁°": 6719,
+ "MO": 6720,
+ "▁asking": 6721,
+ "▁où": 6722,
+ "▁ingår": 6723,
+ "▁testing": 6724,
+ "▁фа": 6725,
+ "▁Book": 6726,
+ "imm": 6727,
+ "▁progress": 6728,
+ "bro": 6729,
+ "First": 6730,
+ "▁phot": 6731,
+ "▁ON": 6732,
+ "Template": 6733,
+ "developer": 6734,
+ "annot": 6735,
+ "▁>=": 6736,
+ "mission": 6737,
+ "▁któ": 6738,
+ "pc": 6739,
+ "bach": 6740,
+ "zent": 6741,
+ "ued": 6742,
+ "▁ones": 6743,
+ "ји": 6744,
+ "▁rout": 6745,
+ "▁Ки": 6746,
+ "Post": 6747,
+ "ції": 6748,
+ "▁Vir": 6749,
+ "nek": 6750,
+ "aging": 6751,
+ "▁ок": 6752,
+ "izont": 6753,
+ "▁agosto": 6754,
+ "▁choose": 6755,
+ "▁\r": 6756,
+ "▁systems": 6757,
+ "loss": 6758,
+ "iente": 6759,
+ "▁Cre": 6760,
+ "▁contra": 6761,
+ "ums": 6762,
+ "▁beginning": 6763,
+ "emy": 6764,
+ "istics": 6765,
+ "▁served": 6766,
+ "Down": 6767,
+ "options": 6768,
+ "▁Govern": 6769,
+ "▁BY": 6770,
+ "▁jest": 6771,
+ "té": 6772,
+ "▁continue": 6773,
+ "pers": 6774,
+ "▁easier": 6775,
+ "▁cos": 6776,
+ "esso": 6777,
+ ">>": 6778,
+ "Net": 6779,
+ "▁Bor": 6780,
+ "▁Cr": 6781,
+ "▁transfer": 6782,
+ "▁CSS": 6783,
+ "▁finns": 6784,
+ "▁хо": 6785,
+ "username": 6786,
+ "▁constru": 6787,
+ "▁pain": 6788,
+ "▁Tem": 6789,
+ "▁specified": 6790,
+ "▁brit": 6791,
+ "ские": 6792,
+ "irk": 6793,
+ "rapper": 6794,
+ "▁counter": 6795,
+ "▁[\"": 6796,
+ "oded": 6797,
+ "дан": 6798,
+ "property": 6799,
+ "hard": 6800,
+ "istrict": 6801,
+ ")/": 6802,
+ "▁Pour": 6803,
+ "▁Where": 6804,
+ "▁===": 6805,
+ "▁sowie": 6806,
+ "▁Про": 6807,
+ "▁dess": 6808,
+ "▁tras": 6809,
+ "▁уча": 6810,
+ "▁Over": 6811,
+ "note": 6812,
+ "▁America": 6813,
+ "cp": 6814,
+ "▁grande": 6815,
+ "Me": 6816,
+ ")-": 6817,
+ "Mode": 6818,
+ "▁passing": 6819,
+ "▁giving": 6820,
+ "Cl": 6821,
+ "}/": 6822,
+ "Menu": 6823,
+ "!!": 6824,
+ "angular": 6825,
+ "▁launch": 6826,
+ "varphi": 6827,
+ "▁Johann": 6828,
+ "▁foreach": 6829,
+ "ró": 6830,
+ "sequ": 6831,
+ "ifi": 6832,
+ "Am": 6833,
+ "arp": 6834,
+ "▁buffer": 6835,
+ "▁ni": 6836,
+ "▁mix": 6837,
+ "▁Museum": 6838,
+ "▁meant": 6839,
+ "asi": 6840,
+ "▁kan": 6841,
+ "прав": 6842,
+ "Comp": 6843,
+ "istoire": 6844,
+ "iful": 6845,
+ "jer": 6846,
+ "issions": 6847,
+ "Resource": 6848,
+ "▁воз": 6849,
+ "▁ST": 6850,
+ "▁solutions": 6851,
+ "▁belong": 6852,
+ "▁Associ": 6853,
+ "cf": 6854,
+ "▁Mär": 6855,
+ "▁grid": 6856,
+ "Mult": 6857,
+ "▁requires": 6858,
+ "kk": 6859,
+ "▁teach": 6860,
+ "emeinde": 6861,
+ "▁square": 6862,
+ "▁коман": 6863,
+ "▁Event": 6864,
+ "▁rules": 6865,
+ "▁bur": 6866,
+ "▁eing": 6867,
+ "▁Mai": 6868,
+ "▁nam": 6869,
+ "▁slä": 6870,
+ "hör": 6871,
+ "▁tip": 6872,
+ "▁Literatur": 6873,
+ "▁scope": 6874,
+ "overline": 6875,
+ "▁exit": 6876,
+ ")?": 6877,
+ "bet": 6878,
+ "▁vict": 6879,
+ "Off": 6880,
+ "▁approxim": 6881,
+ "▁Geb": 6882,
+ "ktop": 6883,
+ "heit": 6884,
+ "▁Ю": 6885,
+ "template": 6886,
+ "рон": 6887,
+ "▁uno": 6888,
+ "Serv": 6889,
+ "▁framework": 6890,
+ "operator": 6891,
+ "▁generally": 6892,
+ "▁hundred": 6893,
+ "▁divers": 6894,
+ "ovi": 6895,
+ "▁rés": 6896,
+ "abs": 6897,
+ "▁gal": 6898,
+ "çais": 6899,
+ "▁feet": 6900,
+ "▁virtual": 6901,
+ "czy": 6902,
+ "ску": 6903,
+ "./": 6904,
+ "hu": 6905,
+ "ancy": 6906,
+ "▁recommend": 6907,
+ "▁під": 6908,
+ "▁money": 6909,
+ "▁versions": 6910,
+ "▁helps": 6911,
+ "▁Hor": 6912,
+ "Items": 6913,
+ "look": 6914,
+ "connect": 6915,
+ "anges": 6916,
+ "ViewController": 6917,
+ "elijk": 6918,
+ "▁occup": 6919,
+ "▁editor": 6920,
+ "auto": 6921,
+ "ög": 6922,
+ "▁seconds": 6923,
+ "▁obvious": 6924,
+ "vm": 6925,
+ "akes": 6926,
+ "▁gegen": 6927,
+ "▁til": 6928,
+ "jection": 6929,
+ "лення": 6930,
+ "▁operations": 6931,
+ "▁East": 6932,
+ "ogy": 6933,
+ "▁Polit": 6934,
+ "uten": 6935,
+ "▁Joseph": 6936,
+ "\"`": 6937,
+ "▁Company": 6938,
+ "▁callback": 6939,
+ "▁sen": 6940,
+ "cción": 6941,
+ "▁associated": 6942,
+ "▁containing": 6943,
+ "▁practice": 6944,
+ "elijke": 6945,
+ "oke": 6946,
+ "éra": 6947,
+ "uns": 6948,
+ "anta": 6949,
+ "vey": 6950,
+ "zu": 6951,
+ "▁Bes": 6952,
+ "▁Flor": 6953,
+ "mem": 6954,
+ "ycz": 6955,
+ "▁architect": 6956,
+ "▁anni": 6957,
+ "▁contact": 6958,
+ "YPE": 6959,
+ "▁Cas": 6960,
+ "▁полу": 6961,
+ "ovo": 6962,
+ "▁bring": 6963,
+ "▁concept": 6964,
+ "▁js": 6965,
+ "▁Referencias": 6966,
+ "emble": 6967,
+ "▁н": 6968,
+ "▁supported": 6969,
+ "Big": 6970,
+ "▁Hans": 6971,
+ "erv": 6972,
+ "▁Maj": 6973,
+ "▁arriv": 6974,
+ "▁Have": 6975,
+ "▁probability": 6976,
+ "▁Pop": 6977,
+ "▁Pass": 6978,
+ "token": 6979,
+ "Provider": 6980,
+ "▁Ra": 6981,
+ "Reader": 6982,
+ "ooth": 6983,
+ "lap": 6984,
+ "▁assist": 6985,
+ "adow": 6986,
+ "▁tests": 6987,
+ "сси": 6988,
+ "▁king": 6989,
+ "langle": 6990,
+ "▁Sum": 6991,
+ "OIN": 6992,
+ "▁security": 6993,
+ "nis": 6994,
+ "../": 6995,
+ "▁basic": 6996,
+ "unity": 6997,
+ "`:": 6998,
+ "▁кото": 6999,
+ "kow": 7000,
+ "▁Bibliothèque": 7001,
+ "asion": 7002,
+ "alo": 7003,
+ "ifest": 7004,
+ "▁novembre": 7005,
+ "▁peu": 7006,
+ "▁Ж": 7007,
+ "enschaft": 7008,
+ "clus": 7009,
+ "ју": 7010,
+ "Height": 7011,
+ "ún": 7012,
+ "▁tur": 7013,
+ "▁ideas": 7014,
+ "▁ces": 7015,
+ "frak": 7016,
+ "▁premier": 7017,
+ "itation": 7018,
+ "▁sé": 7019,
+ "HTML": 7020,
+ "▁Royal": 7021,
+ "ської": 7022,
+ "▁byte": 7023,
+ "PS": 7024,
+ "▁segu": 7025,
+ "inen": 7026,
+ "▁Great": 7027,
+ "▁Ку": 7028,
+ "▁external": 7029,
+ "Title": 7030,
+ "Top": 7031,
+ "Process": 7032,
+ "ität": 7033,
+ "▁`/": 7034,
+ "▁secret": 7035,
+ "pository": 7036,
+ "▁potential": 7037,
+ "▁Bud": 7038,
+ "names": 7039,
+ "asons": 7040,
+ "stackexchange": 7041,
+ "background": 7042,
+ "пер": 7043,
+ "сов": 7044,
+ "after": 7045,
+ "▁pero": 7046,
+ "▁software": 7047,
+ "▁sed": 7048,
+ "▁arrays": 7049,
+ "tmp": 7050,
+ "▁asp": 7051,
+ "scale": 7052,
+ "▁Lat": 7053,
+ "anal": 7054,
+ "▁gem": 7055,
+ "PU": 7056,
+ "▁Altri": 7057,
+ "That": 7058,
+ "▁Ни": 7059,
+ "ifact": 7060,
+ "Address": 7061,
+ "▁south": 7062,
+ "▁formula": 7063,
+ "▁Colleg": 7064,
+ "▁ін": 7065,
+ "ktion": 7066,
+ "▁sac": 7067,
+ "SH": 7068,
+ "ajo": 7069,
+ "etc": 7070,
+ "vc": 7071,
+ "`](": 7072,
+ "▁Dur": 7073,
+ "▁Ме": 7074,
+ "▁Smith": 7075,
+ "items": 7076,
+ "CK": 7077,
+ "elo": 7078,
+ "▁plugin": 7079,
+ "▁serie": 7080,
+ "ienne": 7081,
+ "▁или": 7082,
+ "Mar": 7083,
+ "▁Image": 7084,
+ "got": 7085,
+ "andas": 7086,
+ "▁matches": 7087,
+ "▁worth": 7088,
+ "▁Deb": 7089,
+ "▁cache": 7090,
+ "▁felt": 7091,
+ "ersch": 7092,
+ "izes": 7093,
+ "Oper": 7094,
+ "▁Jahre": 7095,
+ "▁commune": 7096,
+ "thread": 7097,
+ "▁ny": 7098,
+ "dec": 7099,
+ "ouw": 7100,
+ "▁surface": 7101,
+ "▁Por": 7102,
+ "▁Street": 7103,
+ "при": 7104,
+ "▁candid": 7105,
+ "▁Return": 7106,
+ "▁Kom": 7107,
+ "gru": 7108,
+ "▁ти": 7109,
+ "[\\": 7110,
+ "▁depends": 7111,
+ "▁influ": 7112,
+ "▁towards": 7113,
+ "ained": 7114,
+ "▁rank": 7115,
+ "▁Januar": 7116,
+ "▁components": 7117,
+ "gest": 7118,
+ "getElementById": 7119,
+ "▁checked": 7120,
+ "airs": 7121,
+ "join": 7122,
+ "▁dead": 7123,
+ "▁hit": 7124,
+ "ény": 7125,
+ "▁equivalent": 7126,
+ "▁Пре": 7127,
+ "▁appropri": 7128,
+ "Pass": 7129,
+ "▁primer": 7130,
+ "englisch": 7131,
+ "▁appar": 7132,
+ "▁During": 7133,
+ "▁knowledge": 7134,
+ "▁trigger": 7135,
+ "▁core": 7136,
+ "▁Ol": 7137,
+ "▁Produ": 7138,
+ "▁Fern": 7139,
+ "▁нача": 7140,
+ "Te": 7141,
+ "▁Mot": 7142,
+ "erve": 7143,
+ "тво": 7144,
+ "▁mid": 7145,
+ "▁finally": 7146,
+ "aires": 7147,
+ "▁especially": 7148,
+ "▁tut": 7149,
+ "▁receive": 7150,
+ "adre": 7151,
+ "▁neigh": 7152,
+ "ktet": 7153,
+ "ilde": 7154,
+ "▁radio": 7155,
+ "▁driver": 7156,
+ "лись": 7157,
+ "endencies": 7158,
+ "▁IE": 7159,
+ "▁saved": 7160,
+ "ffect": 7161,
+ "▁Wayback": 7162,
+ "iat": 7163,
+ "▁padding": 7164,
+ "window": 7165,
+ "тиче": 7166,
+ "▁mur": 7167,
+ "actor": 7168,
+ "▁Han": 7169,
+ "ональ": 7170,
+ "▁gar": 7171,
+ "▁familjen": 7172,
+ "ós": 7173,
+ "▁nationale": 7174,
+ "▁pré": 7175,
+ "ded": 7176,
+ "onal": 7177,
+ "▁President": 7178,
+ "▁\\,": 7179,
+ "▁placed": 7180,
+ "erni": 7181,
+ "▁signal": 7182,
+ "nab": 7183,
+ "hm": 7184,
+ "Mon": 7185,
+ "▁vs": 7186,
+ "SC": 7187,
+ "▁progetti": 7188,
+ "▁Ü": 7189,
+ "▁forms": 7190,
+ "▁messages": 7191,
+ "inf": 7192,
+ "users": 7193,
+ "GET": 7194,
+ "▁dels": 7195,
+ "Collection": 7196,
+ "▁Good": 7197,
+ "▁Maybe": 7198,
+ "▁compr": 7199,
+ "▁larger": 7200,
+ "gres": 7201,
+ "aper": 7202,
+ "▁При": 7203,
+ "undes": 7204,
+ "▁sea": 7205,
+ "▁Spring": 7206,
+ "ulo": 7207,
+ "▁mechan": 7208,
+ "▁sans": 7209,
+ "GB": 7210,
+ "Valid": 7211,
+ "▁communic": 7212,
+ "▁pra": 7213,
+ "vier": 7214,
+ "▁Се": 7215,
+ "▁ain": 7216,
+ "тура": 7217,
+ "kom": 7218,
+ "skiego": 7219,
+ "ково": 7220,
+ "adata": 7221,
+ "▁Ре": 7222,
+ "▁boolean": 7223,
+ "sets": 7224,
+ "▁effort": 7225,
+ ".[": 7226,
+ "▁został": 7227,
+ "PA": 7228,
+ "▁Vict": 7229,
+ "SD": 7230,
+ "ował": 7231,
+ "▁emb": 7232,
+ "▁prima": 7233,
+ "▁hour": 7234,
+ "subsection": 7235,
+ "▁Fort": 7236,
+ "mathfrak": 7237,
+ "igin": 7238,
+ "GL": 7239,
+ ")+": 7240,
+ "fi": 7241,
+ "▁anci": 7242,
+ "▁pan": 7243,
+ "\\)": 7244,
+ "▁lug": 7245,
+ "▁deploy": 7246,
+ "domain": 7247,
+ "▁slight": 7248,
+ "JSON": 7249,
+ "▁morning": 7250,
+ "▁hi": 7251,
+ "▁compare": 7252,
+ "ije": 7253,
+ "▁blue": 7254,
+ "▁Ac": 7255,
+ "▁middle": 7256,
+ "anden": 7257,
+ "▁shared": 7258,
+ "▁Camp": 7259,
+ "▁Á": 7260,
+ "ounded": 7261,
+ "uw": 7262,
+ "ierung": 7263,
+ "Stack": 7264,
+ "▁eines": 7265,
+ "▁Da": 7266,
+ "lij": 7267,
+ "enti": 7268,
+ "▁й": 7269,
+ "Util": 7270,
+ "▁experience": 7271,
+ "▁await": 7272,
+ "uls": 7273,
+ "▁requests": 7274,
+ "▁impos": 7275,
+ "▁constraint": 7276,
+ "Change": 7277,
+ "emph": 7278,
+ "бер": 7279,
+ "▁Another": 7280,
+ "Custom": 7281,
+ "▁significant": 7282,
+ "cr": 7283,
+ "▁million": 7284,
+ "reek": 7285,
+ "▁dalla": 7286,
+ "▁Germ": 7287,
+ "otal": 7288,
+ "ateur": 7289,
+ "btn": 7290,
+ "▁thinking": 7291,
+ "▁interval": 7292,
+ "onne": 7293,
+ "▁liv": 7294,
+ "():": 7295,
+ "▁Ве": 7296,
+ "oe": 7297,
+ "▁Ev": 7298,
+ "meta": 7299,
+ "▁broad": 7300,
+ "Rem": 7301,
+ "apply": 7302,
+ "▁couple": 7303,
+ "▁techni": 7304,
+ "idades": 7305,
+ "▁goal": 7306,
+ "▁CD": 7307,
+ "hab": 7308,
+ "▁explan": 7309,
+ "anner": 7310,
+ "▁Because": 7311,
+ "blog": 7312,
+ "includegraphics": 7313,
+ "▁voice": 7314,
+ "▁Map": 7315,
+ "vention": 7316,
+ "Session": 7317,
+ "▁Liens": 7318,
+ "▁sor": 7319,
+ "category": 7320,
+ "ashington": 7321,
+ "▁März": 7322,
+ "pop": 7323,
+ "illet": 7324,
+ "▁zwei": 7325,
+ "▁Lie": 7326,
+ "Null": 7327,
+ "address": 7328,
+ "▁factor": 7329,
+ "▁ligne": 7330,
+ "▁HTTP": 7331,
+ "▁suf": 7332,
+ "▁personal": 7333,
+ "cip": 7334,
+ "▁Dar": 7335,
+ "▁adm": 7336,
+ "кой": 7337,
+ "▁Ext": 7338,
+ "▁god": 7339,
+ "aa": 7340,
+ "Right": 7341,
+ "été": 7342,
+ "▁dynamic": 7343,
+ "▁maintain": 7344,
+ "tor": 7345,
+ "########": 7346,
+ "▁Fra": 7347,
+ "▁choice": 7348,
+ "▁сто": 7349,
+ "СР": 7350,
+ "▁Feder": 7351,
+ "ston": 7352,
+ "▁flag": 7353,
+ "kit": 7354,
+ "Module": 7355,
+ "▁спо": 7356,
+ "▁Stra": 7357,
+ "icks": 7358,
+ "▁haven": 7359,
+ "▁Mass": 7360,
+ "▁Emp": 7361,
+ "▁Pi": 7362,
+ "▁Pen": 7363,
+ "Rect": 7364,
+ "▁Kr": 7365,
+ "itat": 7366,
+ "eler": 7367,
+ "ября": 7368,
+ "itet": 7369,
+ "▁Start": 7370,
+ "▁produced": 7371,
+ "▁пол": 7372,
+ "(_": 7373,
+ "▁delet": 7374,
+ "▁hot": 7375,
+ "▁Geschichte": 7376,
+ "~~": 7377,
+ "▁months": 7378,
+ "▁tod": 7379,
+ "▁ни": 7380,
+ "ús": 7381,
+ "temp": 7382,
+ "▁Dez": 7383,
+ "ypes": 7384,
+ "▁cui": 7385,
+ "ommun": 7386,
+ "actions": 7387,
+ "▁eigen": 7388,
+ "▁immediately": 7389,
+ "PL": 7390,
+ "▁Го": 7391,
+ "▁Bal": 7392,
+ "ље": 7393,
+ "ului": 7394,
+ "▁online": 7395,
+ "▁años": 7396,
+ "▁namespace": 7397,
+ "▁mond": 7398,
+ "▁Base": 7399,
+ "▁Canada": 7400,
+ "etzt": 7401,
+ "}-": 7402,
+ "▁defin": 7403,
+ "▁doubt": 7404,
+ "▁investig": 7405,
+ "views": 7406,
+ "▁Line": 7407,
+ "▁stage": 7408,
+ "ettings": 7409,
+ "ubre": 7410,
+ "float": 7411,
+ "▁Play": 7412,
+ "▁Las": 7413,
+ "ptr": 7414,
+ "▁becomes": 7415,
+ "estamp": 7416,
+ "▁independent": 7417,
+ "▁analysis": 7418,
+ "▁Look": 7419,
+ "lain": 7420,
+ "▁рас": 7421,
+ "Reference": 7422,
+ "▁sorry": 7423,
+ "▁supposed": 7424,
+ "ût": 7425,
+ "▁degree": 7426,
+ "utz": 7427,
+ "MM": 7428,
+ "▁desired": 7429,
+ "ły": 7430,
+ "▁len": 7431,
+ "▁alone": 7432,
+ "signed": 7433,
+ "▁Sta": 7434,
+ "Person": 7435,
+ "▁applied": 7436,
+ "▁Back": 7437,
+ "▁mars": 7438,
+ "Part": 7439,
+ "▁Did": 7440,
+ "▁externes": 7441,
+ "▁np": 7442,
+ "ongo": 7443,
+ "▁esta": 7444,
+ "Block": 7445,
+ "▁pou": 7446,
+ "adores": 7447,
+ "▁Studio": 7448,
+ ".$": 7449,
+ "▁reached": 7450,
+ "bot": 7451,
+ "▁Juni": 7452,
+ "tons": 7453,
+ "itel": 7454,
+ "▁Gar": 7455,
+ "▁articles": 7456,
+ "▁District": 7457,
+ "▁trouble": 7458,
+ "lide": 7459,
+ "▁Found": 7460,
+ "ád": 7461,
+ "▁equip": 7462,
+ "▁internal": 7463,
+ "'],": 7464,
+ "▁async": 7465,
+ "UB": 7466,
+ "gel": 7467,
+ "▁ai": 7468,
+ "ensure": 7469,
+ "▁appeared": 7470,
+ "▁$_": 7471,
+ "▁maximum": 7472,
+ "▁Си": 7473,
+ "рь": 7474,
+ "▁announ": 7475,
+ "лась": 7476,
+ "▁cm": 7477,
+ "ган": 7478,
+ "aupt": 7479,
+ "▁latter": 7480,
+ "▁platform": 7481,
+ "▁dra": 7482,
+ "▁capital": 7483,
+ "▁solved": 7484,
+ "riz": 7485,
+ "edic": 7486,
+ "▁Mur": 7487,
+ "▁Top": 7488,
+ "тся": 7489,
+ "Panel": 7490,
+ "rule": 7491,
+ "etic": 7492,
+ "▁Ren": 7493,
+ "▁Wikimedia": 7494,
+ "▁TO": 7495,
+ "second": 7496,
+ "isl": 7497,
+ "▁hy": 7498,
+ "▁niet": 7499,
+ "▁loaded": 7500,
+ "dig": 7501,
+ "▁mayo": 7502,
+ "[:": 7503,
+ "Acc": 7504,
+ "▁bek": 7505,
+ "нию": 7506,
+ "login": 7507,
+ "tx": 7508,
+ "▁Fur": 7509,
+ "▁Santa": 7510,
+ "azz": 7511,
+ "▁conduct": 7512,
+ "▁India": 7513,
+ "Order": 7514,
+ "irth": 7515,
+ "tw": 7516,
+ "}+": 7517,
+ "▁wieder": 7518,
+ "▁Edu": 7519,
+ "AV": 7520,
+ "▁```": 7521,
+ "▁manually": 7522,
+ "▁Read": 7523,
+ "fortunately": 7524,
+ "▁Run": 7525,
+ "▁Award": 7526,
+ "▁Foot": 7527,
+ "*)": 7528,
+ "params": 7529,
+ "пі": 7530,
+ "▁native": 7531,
+ "rift": 7532,
+ "▁ä": 7533,
+ "ATH": 7534,
+ "▁yourself": 7535,
+ "▁prior": 7536,
+ "▁cit": 7537,
+ "äh": 7538,
+ "▁treat": 7539,
+ "▁meas": 7540,
+ "ributed": 7541,
+ "▁clar": 7542,
+ "card": 7543,
+ "ROR": 7544,
+ "illes": 7545,
+ "▁layer": 7546,
+ "auer": 7547,
+ "▁rat": 7548,
+ "bernate": 7549,
+ "▁stato": 7550,
+ "▁China": 7551,
+ "▁$('#": 7552,
+ "▁naar": 7553,
+ "zip": 7554,
+ "▁${\\": 7555,
+ "▁appreciated": 7556,
+ "▁име": 7557,
+ "ży": 7558,
+ "▁przez": 7559,
+ "▁Indian": 7560,
+ "▁Tod": 7561,
+ "▁Source": 7562,
+ "▁други": 7563,
+ "internal": 7564,
+ "ionale": 7565,
+ "Product": 7566,
+ "▁Men": 7567,
+ "▁upper": 7568,
+ "▁Every": 7569,
+ "},\\": 7570,
+ "▁printf": 7571,
+ "▁continued": 7572,
+ "▁nodes": 7573,
+ "лки": 7574,
+ "▁nice": 7575,
+ "modules": 7576,
+ "eign": 7577,
+ "▁Mex": 7578,
+ "▁According": 7579,
+ "▁undefined": 7580,
+ "▁binary": 7581,
+ "cut": 7582,
+ "Current": 7583,
+ "edy": 7584,
+ "}}{": 7585,
+ "bles": 7586,
+ "▁вой": 7587,
+ "scri": 7588,
+ "eqn": 7589,
+ "Changed": 7590,
+ "▁köz": 7591,
+ "▁remote": 7592,
+ "вля": 7593,
+ "▁quel": 7594,
+ "▁align": 7595,
+ "▁пар": 7596,
+ "SV": 7597,
+ "yer": 7598,
+ "▁Californ": 7599,
+ "▁places": 7600,
+ "▁primary": 7601,
+ "▁conv": 7602,
+ "▁Juli": 7603,
+ "▁visual": 7604,
+ "▁Select": 7605,
+ "atory": 7606,
+ "=(": 7607,
+ "iser": 7608,
+ "▁intent": 7609,
+ "sur": 7610,
+ "container": 7611,
+ "iced": 7612,
+ "▁board": 7613,
+ "astr": 7614,
+ "omial": 7615,
+ "вет": 7616,
+ "зва": 7617,
+ "▁cru": 7618,
+ "▁Oktober": 7619,
+ "save": 7620,
+ "▁greater": 7621,
+ "▁inn": 7622,
+ "▁picture": 7623,
+ "▁То": 7624,
+ "▁obtained": 7625,
+ "Wikimedia": 7626,
+ "úblic": 7627,
+ "▁lors": 7628,
+ "▁mont": 7629,
+ "obre": 7630,
+ "▁civil": 7631,
+ "▁construction": 7632,
+ "▁Welt": 7633,
+ "▁Under": 7634,
+ "undert": 7635,
+ "▁edge": 7636,
+ "▁Liste": 7637,
+ "csv": 7638,
+ "▁experiment": 7639,
+ "localhost": 7640,
+ "▁Edit": 7641,
+ "greg": 7642,
+ "ová": 7643,
+ "ља": 7644,
+ "msg": 7645,
+ "▁Green": 7646,
+ "Dialog": 7647,
+ "Ident": 7648,
+ "▁JS": 7649,
+ "^{(": 7650,
+ "▁släktet": 7651,
+ "____": 7652,
+ "Project": 7653,
+ "▁beskre": 7654,
+ "▁ber": 7655,
+ "▁wouldn": 7656,
+ "▁react": 7657,
+ "Hel": 7658,
+ "zw": 7659,
+ "▁Washington": 7660,
+ "orie": 7661,
+ "task": 7662,
+ "▁category": 7663,
+ "▁artist": 7664,
+ "anno": 7665,
+ "▁ook": 7666,
+ "ammen": 7667,
+ "▁Minister": 7668,
+ "▁declar": 7669,
+ "▁Key": 7670,
+ ",.": 7671,
+ "▁mach": 7672,
+ "▁ww": 7673,
+ "isen": 7674,
+ "Fran": 7675,
+ "▁Росси": 7676,
+ "бор": 7677,
+ "три": 7678,
+ "▁rock": 7679,
+ "quis": 7680,
+ "mos": 7681,
+ "пера": 7682,
+ "▁esterni": 7683,
+ "▁gold": 7684,
+ "Windows": 7685,
+ "%%": 7686,
+ "▁partial": 7687,
+ "▁weight": 7688,
+ "▁spr": 7689,
+ "}).": 7690,
+ "▁français": 7691,
+ "fun": 7692,
+ "▁thous": 7693,
+ "holder": 7694,
+ "▁gone": 7695,
+ "▁Č": 7696,
+ "▁rend": 7697,
+ "DA": 7698,
+ "▁answered": 7699,
+ "▁False": 7700,
+ "Buffer": 7701,
+ "▁daugh": 7702,
+ ".--": 7703,
+ "▁Show": 7704,
+ "▁rect": 7705,
+ "▁Kre": 7706,
+ "dr": 7707,
+ "osoph": 7708,
+ "▁yield": 7709,
+ "urity": 7710,
+ "toString": 7711,
+ "aval": 7712,
+ "Pol": 7713,
+ "▁lock": 7714,
+ "imation": 7715,
+ "antic": 7716,
+ "Local": 7717,
+ "▁beskrevs": 7718,
+ "ités": 7719,
+ "grid": 7720,
+ "ут": 7721,
+ "▁_{": 7722,
+ "сі": 7723,
+ "FILE": 7724,
+ "▁км": 7725,
+ "▁speak": 7726,
+ "summary": 7727,
+ "prop": 7728,
+ "javascript": 7729,
+ "zk": 7730,
+ "izontal": 7731,
+ "▁trois": 7732,
+ "▁Rod": 7733,
+ "prise": 7734,
+ "рово": 7735,
+ "▁odd": 7736,
+ "▁gest": 7737,
+ "▁produce": 7738,
+ "▁waar": 7739,
+ "▁Av": 7740,
+ "ribu": 7741,
+ "вання": 7742,
+ "▁finished": 7743,
+ "▁adapt": 7744,
+ "▁Sar": 7745,
+ "textit": 7746,
+ "▁Ce": 7747,
+ "▁Fa": 7748,
+ "osen": 7749,
+ "▁deriv": 7750,
+ "▁ship": 7751,
+ "▁opin": 7752,
+ "▁Even": 7753,
+ "gesch": 7754,
+ "▁suppose": 7755,
+ "▁Fer": 7756,
+ "ское": 7757,
+ "▁worden": 7758,
+ "sey": 7759,
+ "hline": 7760,
+ "▁Union": 7761,
+ "▁/**": 7762,
+ "▁vez": 7763,
+ "▁Collegamenti": 7764,
+ "▁Society": 7765,
+ "▁econom": 7766,
+ "ší": 7767,
+ "oi": 7768,
+ "▁orient": 7769,
+ "▁Teil": 7770,
+ "rent": 7771,
+ "лекс": 7772,
+ "▁solid": 7773,
+ "▁cart": 7774,
+ "****************": 7775,
+ "▁cab": 7776,
+ "▁Message": 7777,
+ "dots": 7778,
+ "▁ég": 7779,
+ "▁twe": 7780,
+ "aga": 7781,
+ "▁naz": 7782,
+ "▁Microsoft": 7783,
+ "▁underarter": 7784,
+ "ppen": 7785,
+ "▁recent": 7786,
+ "▁net": 7787,
+ "▁resources": 7788,
+ "Ste": 7789,
+ ".\\": 7790,
+ "▁SO": 7791,
+ "лом": 7792,
+ "▁cele": 7793,
+ "▁lic": 7794,
+ "▁benef": 7795,
+ "ldots": 7796,
+ "▁serial": 7797,
+ "Integer": 7798,
+ "cles": 7799,
+ "▁miles": 7800,
+ "▁Ale": 7801,
+ "▁entered": 7802,
+ "▁Two": 7803,
+ "wie": 7804,
+ "▁includes": 7805,
+ "▁Each": 7806,
+ "elling": 7807,
+ "quer": 7808,
+ "▁Dom": 7809,
+ "pf": 7810,
+ "WS": 7811,
+ "▁straight": 7812,
+ "▁Stan": 7813,
+ "▁nos": 7814,
+ "ícul": 7815,
+ "atro": 7816,
+ "▁Center": 7817,
+ "FT": 7818,
+ "▁Inga": 7819,
+ "ilo": 7820,
+ "▁www": 7821,
+ "jsfiddle": 7822,
+ "nic": 7823,
+ "▁European": 7824,
+ "▁commer": 7825,
+ "▁girl": 7826,
+ "total": 7827,
+ "▁Star": 7828,
+ "▁suggested": 7829,
+ "pal": 7830,
+ "▁zwischen": 7831,
+ "писа": 7832,
+ "IM": 7833,
+ "▁handler": 7834,
+ "▁Program": 7835,
+ "xsl": 7836,
+ "ály": 7837,
+ "BU": 7838,
+ ",--": 7839,
+ "▁vid": 7840,
+ "▁established": 7841,
+ "▁Spiel": 7842,
+ "ometry": 7843,
+ "unes": 7844,
+ "▁sit": 7845,
+ "▁inher": 7846,
+ "▁puis": 7847,
+ "▁être": 7848,
+ "▁Most": 7849,
+ "Header": 7850,
+ "insert": 7851,
+ "▁sist": 7852,
+ "▁favor": 7853,
+ "dest": 7854,
+ "▁entity": 7855,
+ "Cal": 7856,
+ "▁Therefore": 7857,
+ "DD": 7858,
+ ";;": 7859,
+ "▁Dezember": 7860,
+ "▁Rh": 7861,
+ "iments": 7862,
+ "▁returning": 7863,
+ "sto": 7864,
+ "▁Value": 7865,
+ "▁liber": 7866,
+ "▁Result": 7867,
+ "▁bind": 7868,
+ "voir": 7869,
+ "▁Tim": 7870,
+ "▁Movie": 7871,
+ "weg": 7872,
+ "ket": 7873,
+ "▁исто": 7874,
+ "▁friends": 7875,
+ "▁fn": 7876,
+ "▁él": 7877,
+ "▁&=": 7878,
+ "arden": 7879,
+ "fficial": 7880,
+ "▁community": 7881,
+ "▁api": 7882,
+ "Args": 7883,
+ "ieren": 7884,
+ "▁dann": 7885,
+ "omorph": 7886,
+ "adr": 7887,
+ "loop": 7888,
+ "uman": 7889,
+ "▁vous": 7890,
+ "bst": 7891,
+ "submit": 7892,
+ "\\|": 7893,
+ "тин": 7894,
+ "Container": 7895,
+ "asket": 7896,
+ "?)": 7897,
+ "Sec": 7898,
+ "▁drive": 7899,
+ "Ass": 7900,
+ "▁swe": 7901,
+ "▁amer": 7902,
+ "▁mine": 7903,
+ "▁Ham": 7904,
+ "▁avait": 7905,
+ "▁Hon": 7906,
+ "▁après": 7907,
+ "▁Mann": 7908,
+ "ська": 7909,
+ "▁increase": 7910,
+ "▁ty": 7911,
+ "sky": 7912,
+ "▁accur": 7913,
+ "article": 7914,
+ "weight": 7915,
+ "▁sex": 7916,
+ "▁listade": 7917,
+ "/**": 7918,
+ "▁está": 7919,
+ "}}$": 7920,
+ "argo": 7921,
+ "define": 7922,
+ "▁состав": 7923,
+ "session": 7924,
+ "ads": 7925,
+ "стви": 7926,
+ "▁Law": 7927,
+ "▁dialog": 7928,
+ "▁duplicate": 7929,
+ "▁ép": 7930,
+ "▁voc": 7931,
+ "fri": 7932,
+ "▁green": 7933,
+ "▁hidden": 7934,
+ "▁Island": 7935,
+ "▁diag": 7936,
+ "owej": 7937,
+ "mysql": 7938,
+ "teil": 7939,
+ "rä": 7940,
+ "ikan": 7941,
+ "▁José": 7942,
+ "aled": 7943,
+ "Runtime": 7944,
+ "▁train": 7945,
+ "▁Division": 7946,
+ "ниц": 7947,
+ "▁Span": 7948,
+ "нима": 7949,
+ ")=\\": 7950,
+ "тан": 7951,
+ "▁stay": 7952,
+ "▁foo": 7953,
+ "▁accom": 7954,
+ "▁hers": 7955,
+ "▁нау": 7956,
+ "▁Mün": 7957,
+ "ideos": 7958,
+ "static": 7959,
+ "▁ready": 7960,
+ "]`": 7961,
+ "▁visible": 7962,
+ "▁Hope": 7963,
+ "ulated": 7964,
+ "▁Cult": 7965,
+ "стро": 7966,
+ "Co": 7967,
+ "▁smaller": 7968,
+ "atura": 7969,
+ "▁perfectly": 7970,
+ "req": 7971,
+ "▁proposed": 7972,
+ "▁degli": 7973,
+ "Search": 7974,
+ "▁ich": 7975,
+ "Max": 7976,
+ "▁volume": 7977,
+ "execute": 7978,
+ "gre": 7979,
+ "▁sport": 7980,
+ "udad": 7981,
+ "PT": 7982,
+ "▁Records": 7983,
+ "▁cook": 7984,
+ "▁expand": 7985,
+ "бі": 7986,
+ "▁altri": 7987,
+ "ppet": 7988,
+ "arse": 7989,
+ "▁wet": 7990,
+ "▁Bob": 7991,
+ "▁FC": 7992,
+ "▁Association": 7993,
+ "uje": 7994,
+ "▁fel": 7995,
+ "▁слу": 7996,
+ "▁Big": 7997,
+ "/\\": 7998,
+ "Ge": 7999,
+ "while": 8000,
+ "{(": 8001,
+ "▁sufficient": 8002,
+ "Position": 8003,
+ "▁understanding": 8004,
+ "▁nue": 8005,
+ "▁raz": 8006,
+ "▁ye": 8007,
+ "hem": 8008,
+ "Num": 8009,
+ "▁Project": 8010,
+ "▁Its": 8011,
+ "▁hasta": 8012,
+ "enso": 8013,
+ "▁wire": 8014,
+ "Ret": 8015,
+ "uj": 8016,
+ "proof": 8017,
+ "▁relevant": 8018,
+ "▁partir": 8019,
+ "▁ago": 8020,
+ "ificate": 8021,
+ "▁domin": 8022,
+ "▁boy": 8023,
+ "▁plant": 8024,
+ "▁encoding": 8025,
+ "▁throws": 8026,
+ "▁Rock": 8027,
+ "zone": 8028,
+ "gang": 8029,
+ "widget": 8030,
+ "▁interesting": 8031,
+ "DER": 8032,
+ "▁demon": 8033,
+ "▁office": 8034,
+ "amt": 8035,
+ "äter": 8036,
+ "▁White": 8037,
+ "▁versch": 8038,
+ "▁dieser": 8039,
+ "▁Mount": 8040,
+ "▁students": 8041,
+ "▁Pub": 8042,
+ "▁Де": 8043,
+ "ija": 8044,
+ "▁Cy": 8045,
+ "▁California": 8046,
+ "▁abril": 8047,
+ "äll": 8048,
+ "▁чем": 8049,
+ "TV": 8050,
+ "▁més": 8051,
+ "▁declared": 8052,
+ "▁ю": 8053,
+ "ől": 8054,
+ "appa": 8055,
+ "▁Бе": 8056,
+ "echo": 8057,
+ "numer": 8058,
+ "▁posted": 8059,
+ "▁вер": 8060,
+ "▁године": 8061,
+ "▁weak": 8062,
+ "▁Republic": 8063,
+ "▁champion": 8064,
+ "ensuremath": 8065,
+ "your": 8066,
+ "▁Ober": 8067,
+ "▁Central": 8068,
+ "isa": 8069,
+ "анд": 8070,
+ "yy": 8071,
+ "▁fully": 8072,
+ "▁SD": 8073,
+ "▁Linux": 8074,
+ "▁Scott": 8075,
+ "partment": 8076,
+ "kon": 8077,
+ "▁contract": 8078,
+ "▁OF": 8079,
+ "▁ale": 8080,
+ "▁Ann": 8081,
+ "▁над": 8082,
+ "lah": 8083,
+ "▁Next": 8084,
+ "oren": 8085,
+ "▁disk": 8086,
+ "▁eg": 8087,
+ "atu": 8088,
+ "логи": 8089,
+ "▁games": 8090,
+ "Left": 8091,
+ "▁lu": 8092,
+ "▁finite": 8093,
+ "▁ки": 8094,
+ "▁crash": 8095,
+ "pher": 8096,
+ "exe": 8097,
+ "ATION": 8098,
+ "▁brother": 8099,
+ "Eng": 8100,
+ "tat": 8101,
+ "▁Integer": 8102,
+ "ному": 8103,
+ "▁colon": 8104,
+ "iqu": 8105,
+ ")).": 8106,
+ "ivi": 8107,
+ "▁Method": 8108,
+ "arten": 8109,
+ "Uni": 8110,
+ "vector": 8111,
+ "▁wood": 8112,
+ "рт": 8113,
+ "▁Ле": 8114,
+ "▁siècle": 8115,
+ "▁gent": 8116,
+ "}\r": 8117,
+ "▁contents": 8118,
+ "▁compan": 8119,
+ "Go": 8120,
+ "▁jou": 8121,
+ "uent": 8122,
+ "Async": 8123,
+ "printf": 8124,
+ "▁Model": 8125,
+ "▁kept": 8126,
+ "ASE": 8127,
+ "▁provides": 8128,
+ "▁Abgerufen": 8129,
+ "▁Gall": 8130,
+ "▁Alf": 8131,
+ "SA": 8132,
+ "▁Mem": 8133,
+ "▁kter": 8134,
+ "▁Bru": 8135,
+ "Android": 8136,
+ "(:": 8137,
+ "▁Украї": 8138,
+ "Ne": 8139,
+ "Min": 8140,
+ "atr": 8141,
+ "▁Hal": 8142,
+ "delete": 8143,
+ "odo": 8144,
+ "▁não": 8145,
+ "ène": 8146,
+ "▁calculate": 8147,
+ "Json": 8148,
+ "keys": 8149,
+ "ней": 8150,
+ "▁hence": 8151,
+ "▁ow": 8152,
+ "▁Lib": 8153,
+ "eno": 8154,
+ "▁Love": 8155,
+ "osi": 8156,
+ "wide": 8157,
+ "▁score": 8158,
+ "full": 8159,
+ "вод": 8160,
+ "▁determine": 8161,
+ "▁spaces": 8162,
+ "лова": 8163,
+ "▁peut": 8164,
+ "éral": 8165,
+ "ół": 8166,
+ "▁appoint": 8167,
+ "▁Tw": 8168,
+ "": 8169,
+ "▁Order": 8170,
+ "▁hop": 8171,
+ "random": 8172,
+ "cache": 8173,
+ "▁destroy": 8174,
+ "▁race": 8175,
+ "Tag": 8176,
+ "▁rid": 8177,
+ "▁negative": 8178,
+ "Car": 8179,
+ "ensional": 8180,
+ "dk": 8181,
+ "▁cro": 8182,
+ "▁THEN": 8183,
+ "▁$.": 8184,
+ "ensk": 8185,
+ "NE": 8186,
+ "HO": 8187,
+ "▁kle": 8188,
+ "ospital": 8189,
+ "kte": 8190,
+ "férences": 8191,
+ "udes": 8192,
+ "IR": 8193,
+ "otion": 8194,
+ "▁Real": 8195,
+ "▁Februar": 8196,
+ "ин": 8197,
+ "▁Old": 8198,
+ "кого": 8199,
+ "leich": 8200,
+ "▁р": 8201,
+ "ían": 8202,
+ "▁га": 8203,
+ "cide": 8204,
+ "lab": 8205,
+ "▁pull": 8206,
+ "▁'/": 8207,
+ "Long": 8208,
+ ",$": 8209,
+ "▁appropriate": 8210,
+ "▁была": 8211,
+ "führ": 8212,
+ "▁Media": 8213,
+ "▁manner": 8214,
+ "▁Ге": 8215,
+ "description": 8216,
+ "Bean": 8217,
+ "▁Lar": 8218,
+ "'];": 8219,
+ "▁relation": 8220,
+ "▁Sorry": 8221,
+ "har": 8222,
+ "cpp": 8223,
+ "▁Ko": 8224,
+ "▁execution": 8225,
+ "inos": 8226,
+ "▁bul": 8227,
+ "grade": 8228,
+ "▁Mu": 8229,
+ "▁pil": 8230,
+ "writ": 8231,
+ "ifications": 8232,
+ "inese": 8233,
+ "▁Phili": 8234,
+ "dx": 8235,
+ "▁leading": 8236,
+ "▁Journal": 8237,
+ "oved": 8238,
+ "▁contro": 8239,
+ "нова": 8240,
+ "Yes": 8241,
+ "▁channel": 8242,
+ ")),": 8243,
+ "isten": 8244,
+ "aka": 8245,
+ "ToString": 8246,
+ "mas": 8247,
+ "▁ett": 8248,
+ "▁forces": 8249,
+ "ulations": 8250,
+ "▁Call": 8251,
+ "▁explanation": 8252,
+ "oring": 8253,
+ "ATA": 8254,
+ "chter": 8255,
+ "when": 8256,
+ "VC": 8257,
+ "▁Jahrh": 8258,
+ "Case": 8259,
+ "▁commands": 8260,
+ "▁rich": 8261,
+ "bus": 8262,
+ "Fe": 8263,
+ "mbox": 8264,
+ "▁recon": 8265,
+ "ño": 8266,
+ "▁shape": 8267,
+ "owy": 8268,
+ "entry": 8269,
+ "itable": 8270,
+ "▁election": 8271,
+ "ється": 8272,
+ "▁prep": 8273,
+ "vá": 8274,
+ "▁infin": 8275,
+ "lot": 8276,
+ "▁books": 8277,
+ "▁USA": 8278,
+ "лин": 8279,
+ "▁pom": 8280,
+ "▁nas": 8281,
+ "▁tags": 8282,
+ "▁executed": 8283,
+ "aille": 8284,
+ "lung": 8285,
+ "▁JavaScript": 8286,
+ "▁ball": 8287,
+ "▁ainsi": 8288,
+ "▁Pri": 8289,
+ "{$": 8290,
+ "▁UN": 8291,
+ "▁Ram": 8292,
+ "▁hear": 8293,
+ "▁Ubuntu": 8294,
+ ">();": 8295,
+ "▁pure": 8296,
+ "▁embed": 8297,
+ "ação": 8298,
+ "controller": 8299,
+ "▁married": 8300,
+ "▁Fol": 8301,
+ "famil": 8302,
+ "▁prec": 8303,
+ "▁recurs": 8304,
+ "pad": 8305,
+ "istration": 8306,
+ "▁respectively": 8307,
+ "[$": 8308,
+ "autor": 8309,
+ "▁grav": 8310,
+ "iera": 8311,
+ "azioni": 8312,
+ "▁Bul": 8313,
+ "▁Australia": 8314,
+ "mond": 8315,
+ "▁Tro": 8316,
+ "▁Ele": 8317,
+ "packages": 8318,
+ "msdn": 8319,
+ "▁Als": 8320,
+ "▁przy": 8321,
+ "ART": 8322,
+ "▁charge": 8323,
+ "▁applications": 8324,
+ "Unit": 8325,
+ "aren": 8326,
+ "▁sudden": 8327,
+ "ometer": 8328,
+ "▁dot": 8329,
+ "acji": 8330,
+ "ктор": 8331,
+ "imin": 8332,
+ "ening": 8333,
+ "▁donde": 8334,
+ "▁Ho": 8335,
+ "tree": 8336,
+ "mb": 8337,
+ "▁drag": 8338,
+ "aje": 8339,
+ "▁invalid": 8340,
+ "▁finish": 8341,
+ "laim": 8342,
+ "▁feed": 8343,
+ "▁Nap": 8344,
+ "room": 8345,
+ "images": 8346,
+ "▁сай": 8347,
+ "▁succ": 8348,
+ "iffer": 8349,
+ "▁año": 8350,
+ "▁cual": 8351,
+ "мери": 8352,
+ "DR": 8353,
+ "▁Bilder": 8354,
+ "бра": 8355,
+ "rait": 8356,
+ "pan": 8357,
+ "ень": 8358,
+ "▁distinct": 8359,
+ "▁Kn": 8360,
+ "önig": 8361,
+ "anced": 8362,
+ "▁loading": 8363,
+ "▁Techn": 8364,
+ "▁Sel": 8365,
+ "mus": 8366,
+ "▁rail": 8367,
+ "▁student": 8368,
+ "▁notice": 8369,
+ "▁sla": 8370,
+ "▁Да": 8371,
+ "▁guard": 8372,
+ "▁Day": 8373,
+ "вали": 8374,
+ "Option": 8375,
+ "aison": 8376,
+ "ipp": 8377,
+ "▁Jun": 8378,
+ "▁fell": 8379,
+ "▁absolute": 8380,
+ "ове": 8381,
+ "debug": 8382,
+ "▁Sud": 8383,
+ "пы": 8384,
+ "ugins": 8385,
+ "▁views": 8386,
+ "lay": 8387,
+ "▁surr": 8388,
+ "▁stood": 8389,
+ "▁ві": 8390,
+ "selected": 8391,
+ "гі": 8392,
+ "▁attributes": 8393,
+ "final": 8394,
+ "enda": 8395,
+ "▁Bon": 8396,
+ "ners": 8397,
+ "▁Wer": 8398,
+ "bur": 8399,
+ "ittel": 8400,
+ "▁moving": 8401,
+ "▁Plan": 8402,
+ "isches": 8403,
+ "Java": 8404,
+ "▁basis": 8405,
+ "▁Bus": 8406,
+ "▁Au": 8407,
+ "▁Ill": 8408,
+ "▁время": 8409,
+ "▁цент": 8410,
+ "handle": 8411,
+ "ступ": 8412,
+ "▁Far": 8413,
+ "▁oraz": 8414,
+ "ocr": 8415,
+ "▁seit": 8416,
+ "onder": 8417,
+ "дом": 8418,
+ ":/": 8419,
+ "chor": 8420,
+ "▁Town": 8421,
+ "▁definit": 8422,
+ "react": 8423,
+ "▁piece": 8424,
+ "▁Karl": 8425,
+ "CI": 8426,
+ "▁Application": 8427,
+ "unter": 8428,
+ "▁formed": 8429,
+ "▁пу": 8430,
+ "Bo": 8431,
+ "▁Daniel": 8432,
+ "▁пла": 8433,
+ "Body": 8434,
+ "})$": 8435,
+ "▁были": 8436,
+ "▁earth": 8437,
+ "гла": 8438,
+ "There": 8439,
+ "▁стра": 8440,
+ "▁ville": 8441,
+ "▁centre": 8442,
+ ")\r": 8443,
+ "▁helpful": 8444,
+ "▁++": 8445,
+ "▁CG": 8446,
+ "izione": 8447,
+ "▁Game": 8448,
+ "▁Which": 8449,
+ "▁pip": 8450,
+ "▁Portug": 8451,
+ "DS": 8452,
+ "▁describe": 8453,
+ "▁checking": 8454,
+ "▁manager": 8455,
+ "BO": 8456,
+ "▁Bundes": 8457,
+ "buch": 8458,
+ "▁decided": 8459,
+ "▁Jahrhundert": 8460,
+ "▁fif": 8461,
+ "efficient": 8462,
+ "anci": 8463,
+ "braries": 8464,
+ "▁fails": 8465,
+ "▁kernel": 8466,
+ "▁Gl": 8467,
+ "▁Nacional": 8468,
+ "▁proceed": 8469,
+ "▁fuer": 8470,
+ "▁living": 8471,
+ "▁successfully": 8472,
+ "▁faster": 8473,
+ "▁contre": 8474,
+ "▁prison": 8475,
+ "ORT": 8476,
+ "help": 8477,
+ "▁autor": 8478,
+ "ław": 8479,
+ "ają": 8480,
+ "▁Arm": 8481,
+ "▁provin": 8482,
+ "▁naam": 8483,
+ "/#": 8484,
+ "sed": 8485,
+ "▁gesch": 8486,
+ "▁мар": 8487,
+ "esk": 8488,
+ "term": 8489,
+ "▁Tex": 8490,
+ "iring": 8491,
+ "▁tools": 8492,
+ "PDF": 8493,
+ "▁ult": 8494,
+ "issenschaft": 8495,
+ "▁couldn": 8496,
+ "ding": 8497,
+ "Dep": 8498,
+ "{-": 8499,
+ "▁predict": 8500,
+ "antage": 8501,
+ "▁Like": 8502,
+ "▁Би": 8503,
+ "tools": 8504,
+ "estra": 8505,
+ "▁ki": 8506,
+ "▁Jim": 8507,
+ "star": 8508,
+ "▁remark": 8509,
+ "óg": 8510,
+ "nabla": 8511,
+ "▁Although": 8512,
+ "mode": 8513,
+ "Host": 8514,
+ "▁strange": 8515,
+ "None": 8516,
+ "black": 8517,
+ "▁Festival": 8518,
+ "▁IS": 8519,
+ "anza": 8520,
+ "▁(-": 8521,
+ "icket": 8522,
+ "кола": 8523,
+ "▁Jes": 8524,
+ "▁flex": 8525,
+ "▁À": 8526,
+ "▁Network": 8527,
+ "▁EX": 8528,
+ "▁enero": 8529,
+ "!”": 8530,
+ "▁Ort": 8531,
+ "▁alors": 8532,
+ "▁Original": 8533,
+ "▁zo": 8534,
+ "ными": 8535,
+ "▁spl": 8536,
+ "Draw": 8537,
+ "yond": 8538,
+ "──": 8539,
+ "▁Ot": 8540,
+ "▁dram": 8541,
+ "▁division": 8542,
+ "▁efficient": 8543,
+ "▁Га": 8544,
+ "▁vier": 8545,
+ "nak": 8546,
+ "LS": 8547,
+ "▁spirit": 8548,
+ "zeichnet": 8549,
+ "▁dici": 8550,
+ "clear": 8551,
+ "copy": 8552,
+ "yar": 8553,
+ "▁році": 8554,
+ "usqu": 8555,
+ "▁nous": 8556,
+ "▁blev": 8557,
+ "жде": 8558,
+ "Arg": 8559,
+ "▁performed": 8560,
+ "▁Make": 8561,
+ "▁Carol": 8562,
+ "etto": 8563,
+ "▁Sand": 8564,
+ "▁Disc": 8565,
+ "Enc": 8566,
+ "rero": 8567,
+ "hash": 8568,
+ "▁focus": 8569,
+ "▁attention": 8570,
+ "▁agre": 8571,
+ "▁divis": 8572,
+ "▁было": 8573,
+ "▁ej": 8574,
+ "▁march": 8575,
+ "▁phase": 8576,
+ "ías": 8577,
+ "▁phil": 8578,
+ "▁Pap": 8579,
+ "▁river": 8580,
+ "▁caused": 8581,
+ "plugin": 8582,
+ "▁Team": 8583,
+ "uler": 8584,
+ "▁$(\"#": 8585,
+ "iej": 8586,
+ "ISBN": 8587,
+ "nam": 8588,
+ "▁fight": 8589,
+ "vid": 8590,
+ "▁Lud": 8591,
+ "Selected": 8592,
+ ":@\"": 8593,
+ "▁Pod": 8594,
+ "▁années": 8595,
+ "arios": 8596,
+ "▁deutscher": 8597,
+ "▁NA": 8598,
+ "▁ию": 8599,
+ "▁dictionary": 8600,
+ "▁Ла": 8601,
+ "▁Tri": 8602,
+ "èn": 8603,
+ "▁political": 8604,
+ "ridge": 8605,
+ "atten": 8606,
+ "▁circle": 8607,
+ "▁transport": 8608,
+ "emas": 8609,
+ "FC": 8610,
+ "▁replaced": 8611,
+ "▁Aud": 8612,
+ "iska": 8613,
+ "Configuration": 8614,
+ "▁soort": 8615,
+ "▁Не": 8616,
+ "▁sequ": 8617,
+ "PRO": 8618,
+ "▁bud": 8619,
+ "▁{{": 8620,
+ "ließ": 8621,
+ "▁Mas": 8622,
+ "ders": 8623,
+ "usammen": 8624,
+ "esa": 8625,
+ "▁Ly": 8626,
+ "вро": 8627,
+ "mac": 8628,
+ "▁испо": 8629,
+ "▁suc": 8630,
+ "uy": 8631,
+ "▁illustr": 8632,
+ "▁primera": 8633,
+ "ilation": 8634,
+ "▁storage": 8635,
+ "▁params": 8636,
+ "kaz": 8637,
+ "▁terminal": 8638,
+ "раль": 8639,
+ "▁holds": 8640,
+ "лось": 8641,
+ "▁nad": 8642,
+ "”.": 8643,
+ "▁octubre": 8644,
+ "bul": 8645,
+ "▁hus": 8646,
+ "ULT": 8647,
+ "▁également": 8648,
+ "▁Mill": 8649,
+ "ład": 8650,
+ "▁contiene": 8651,
+ "\"?": 8652,
+ "▁>>>": 8653,
+ "Que": 8654,
+ " ": 8655,
+ "▁plain": 8656,
+ "ativa": 8657,
+ "ocker": 8658,
+ "Names": 8659,
+ "▁Jud": 8660,
+ "▁agree": 8661,
+ "▁Gemeinde": 8662,
+ "lare": 8663,
+ "каза": 8664,
+ "▁starts": 8665,
+ "▁price": 8666,
+ "Target": 8667,
+ "cus": 8668,
+ "▁Instead": 8669,
+ ".;": 8670,
+ "▁alternative": 8671,
+ "▁вла": 8672,
+ "IE": 8673,
+ "▁organiz": 8674,
+ "inu": 8675,
+ "▁completed": 8676,
+ "▁carry": 8677,
+ "atom": 8678,
+ "▁depending": 8679,
+ "▁Our": 8680,
+ "▁insp": 8681,
+ "▁&\\": 8682,
+ "aily": 8683,
+ "irection": 8684,
+ "фа": 8685,
+ "▁defe": 8686,
+ "TAC": 8687,
+ "▁designed": 8688,
+ "▁voir": 8689,
+ "break": 8690,
+ "▁partie": 8691,
+ "▁Jahren": 8692,
+ "▁studio": 8693,
+ "▁jour": 8694,
+ "▁Notes": 8695,
+ "fire": 8696,
+ "house": 8697,
+ "success": 8698,
+ "▁Juan": 8699,
+ "JS": 8700,
+ "▁Custom": 8701,
+ "▁besch": 8702,
+ "▁stated": 8703,
+ "bootstrap": 8704,
+ "ött": 8705,
+ "ozzá": 8706,
+ "▁CON": 8707,
+ "hav": 8708,
+ "▁sleep": 8709,
+ "eda": 8710,
+ "hot": 8711,
+ "ánd": 8712,
+ "▁Sy": 8713,
+ "▁temps": 8714,
+ "amar": 8715,
+ "▁scal": 8716,
+ "▁ast": 8717,
+ "▁opening": 8718,
+ "clipse": 8719,
+ "▁programming": 8720,
+ "▁letters": 8721,
+ "▁profile": 8722,
+ "nah": 8723,
+ "▁beyond": 8724,
+ "▁Further": 8725,
+ "faces": 8726,
+ "▁chart": 8727,
+ "зда": 8728,
+ "aign": 8729,
+ "ній": 8730,
+ "▁Rol": 8731,
+ "овано": 8732,
+ "terior": 8733,
+ "wed": 8734,
+ "▁herself": 8735,
+ "▁ng": 8736,
+ "anguages": 8737,
+ "}=\\": 8738,
+ "ynamic": 8739,
+ "▁jug": 8740,
+ "▁Example": 8741,
+ "▁(†": 8742,
+ "▁playing": 8743,
+ "▁usage": 8744,
+ "▁managed": 8745,
+ "▁Natur": 8746,
+ "тери": 8747,
+ "▁Et": 8748,
+ "eria": 8749,
+ "▁daughter": 8750,
+ "нием": 8751,
+ "Fragment": 8752,
+ "▁hol": 8753,
+ "Fl": 8754,
+ "ографи": 8755,
+ "▁ihn": 8756,
+ "üh": 8757,
+ "instance": 8758,
+ "▁comun": 8759,
+ "▁truth": 8760,
+ "▁само": 8761,
+ "▁implemented": 8762,
+ "▁anyway": 8763,
+ "▁Cro": 8764,
+ "фе": 8765,
+ "GC": 8766,
+ "ubuntu": 8767,
+ "types": 8768,
+ "ês": 8769,
+ ".~\\": 8770,
+ "fold": 8771,
+ "▁joined": 8772,
+ "??": 8773,
+ "▁mé": 8774,
+ "▁wild": 8775,
+ "клю": 8776,
+ "rowser": 8777,
+ "▁Home": 8778,
+ "skiej": 8779,
+ "▁JOIN": 8780,
+ "▁juin": 8781,
+ "hof": 8782,
+ "▁dataset": 8783,
+ "жду": 8784,
+ "'))": 8785,
+ "▁miejs": 8786,
+ "API": 8787,
+ "▁edited": 8788,
+ "ools": 8789,
+ "▁seeing": 8790,
+ "ijd": 8791,
+ "▁procedure": 8792,
+ "▁Bras": 8793,
+ "▁signed": 8794,
+ "▁externos": 8795,
+ "▁disapp": 8796,
+ "▁Direct": 8797,
+ "cyc": 8798,
+ "▁consult": 8799,
+ "örd": 8800,
+ "Widget": 8801,
+ "cious": 8802,
+ "sect": 8803,
+ "▁Ди": 8804,
+ "▁wind": 8805,
+ "▁Archivado": 8806,
+ "aml": 8807,
+ "сс": 8808,
+ "Wh": 8809,
+ "kbd": 8810,
+ "▁Army": 8811,
+ "▁suffer": 8812,
+ "artifact": 8813,
+ "▁resolve": 8814,
+ "▁Sport": 8815,
+ "▁це": 8816,
+ "idas": 8817,
+ "▁tax": 8818,
+ "idi": 8819,
+ "▁actions": 8820,
+ "пра": 8821,
+ "pués": 8822,
+ "▁naj": 8823,
+ "False": 8824,
+ "▁chance": 8825,
+ "▁тако": 8826,
+ "äd": 8827,
+ "▁dol": 8828,
+ "▁env": 8829,
+ "▁basically": 8830,
+ "▁Council": 8831,
+ "zte": 8832,
+ "▁displayed": 8833,
+ "nil": 8834,
+ "complete": 8835,
+ "▁Lem": 8836,
+ "iance": 8837,
+ "▁основ": 8838,
+ "▁depend": 8839,
+ "plom": 8840,
+ "ensus": 8841,
+ "uts": 8842,
+ "▁Hot": 8843,
+ "bitr": 8844,
+ "▁validation": 8845,
+ "abb": 8846,
+ "▁тре": 8847,
+ "km": 8848,
+ "zd": 8849,
+ "öff": 8850,
+ "WE": 8851,
+ "▁interested": 8852,
+ "▁{\"": 8853,
+ "aro": 8854,
+ "▁correl": 8855,
+ "▁dedic": 8856,
+ "▁lists": 8857,
+ "▁Bibliografia": 8858,
+ "▁earlier": 8859,
+ "program": 8860,
+ "▁première": 8861,
+ "front": 8862,
+ "Tab": 8863,
+ "ству": 8864,
+ "drop": 8865,
+ "▁fear": 8866,
+ "▁Enlaces": 8867,
+ "▁Capt": 8868,
+ "▁realiz": 8869,
+ "▁hal": 8870,
+ "▁instances": 8871,
+ "▁susp": 8872,
+ "illing": 8873,
+ "%;": 8874,
+ "{}": 8875,
+ "||": 8876,
+ "▁partition": 8877,
+ "▁Build": 8878,
+ "▁wo": 8879,
+ "▁Пер": 8880,
+ "▁director": 8881,
+ "▁Sin": 8882,
+ "тия": 8883,
+ "rsg": 8884,
+ "ouver": 8885,
+ "▁nearly": 8886,
+ "oda": 8887,
+ "ктив": 8888,
+ "▁sir": 8889,
+ "IME": 8890,
+ "▁janvier": 8891,
+ "▁Win": 8892,
+ "Build": 8893,
+ "ieurs": 8894,
+ "INE": 8895,
+ "double": 8896,
+ "Last": 8897,
+ "▁policy": 8898,
+ "store": 8899,
+ "▁observed": 8900,
+ "▁familie": 8901,
+ "nica": 8902,
+ "rey": 8903,
+ "зь": 8904,
+ "▁Year": 8905,
+ "▁developed": 8906,
+ "▁Institute": 8907,
+ "▁reply": 8908,
+ "Comple": 8909,
+ "ician": 8910,
+ "▁Guer": 8911,
+ "▁dall": 8912,
+ "▁desp": 8913,
+ "▁Football": 8914,
+ "Empty": 8915,
+ "cken": 8916,
+ "unda": 8917,
+ "▁Ur": 8918,
+ "▁ig": 8919,
+ "▁Atl": 8920,
+ "author": 8921,
+ "▁Bol": 8922,
+ "zig": 8923,
+ "nat": 8924,
+ "št": 8925,
+ "security": 8926,
+ "onic": 8927,
+ "▁pes": 8928,
+ "itan": 8929,
+ "▁Extern": 8930,
+ "jan": 8931,
+ "VAL": 8932,
+ "▁им": 8933,
+ "bold": 8934,
+ "▁ва": 8935,
+ "▁Мо": 8936,
+ "▁disput": 8937,
+ "▁trick": 8938,
+ "▁ped": 8939,
+ ")^{": 8940,
+ "into": 8941,
+ "Sim": 8942,
+ "▁parallel": 8943,
+ "fox": 8944,
+ "normal": 8945,
+ "inent": 8946,
+ "педи": 8947,
+ "hold": 8948,
+ "OK": 8949,
+ "▁chem": 8950,
+ "▁twice": 8951,
+ "▁username": 8952,
+ "ič": 8953,
+ "▁representation": 8954,
+ "▁journal": 8955,
+ "▁:-": 8956,
+ "▁batt": 8957,
+ "\\%": 8958,
+ "▁certainly": 8959,
+ "▁Exception": 8960,
+ "eps": 8961,
+ "shot": 8962,
+ "ategy": 8963,
+ "Show": 8964,
+ "▁Carl": 8965,
+ "rig": 8966,
+ "▁reported": 8967,
+ "bottom": 8968,
+ "TF": 8969,
+ "▁Francisco": 8970,
+ "nap": 8971,
+ "▁Championship": 8972,
+ "▁court": 8973,
+ "▁sources": 8974,
+ "iour": 8975,
+ "▁conserv": 8976,
+ "dict": 8977,
+ "▁Ру": 8978,
+ "IB": 8979,
+ "▁Ve": 8980,
+ "▁№": 8981,
+ "▁ER": 8982,
+ "\"));": 8983,
+ "▁Point": 8984,
+ "azine": 8985,
+ "▁internet": 8986,
+ "дна": 8987,
+ "▁carried": 8988,
+ "▁Field": 8989,
+ "axis": 8990,
+ "▁Sun": 8991,
+ "▁ave": 8992,
+ "пис": 8993,
+ "ян": 8994,
+ "asy": 8995,
+ "▁julio": 8996,
+ "▁depuis": 8997,
+ "▁suggestion": 8998,
+ "[[": 8999,
+ "▁Archive": 9000,
+ "ęp": 9001,
+ "▁Pra": 9002,
+ "reh": 9003,
+ "▁demonstr": 9004,
+ "фі": 9005,
+ "cmd": 9006,
+ "▁wasn": 9007,
+ "▁phone": 9008,
+ "upload": 9009,
+ "aya": 9010,
+ "тора": 9011,
+ "lines": 9012,
+ "▁indu": 9013,
+ "▁vot": 9014,
+ "▁espa": 9015,
+ "▁bin": 9016,
+ "▁после": 9017,
+ "plan": 9018,
+ "▁junio": 9019,
+ "orial": 9020,
+ "free": 9021,
+ "sterreich": 9022,
+ "▁ду": 9023,
+ "▁linked": 9024,
+ "▁enable": 9025,
+ "PC": 9026,
+ "▁density": 9027,
+ "▁Egy": 9028,
+ "yo": 9029,
+ "endre": 9030,
+ "▁съ": 9031,
+ "▁italiano": 9032,
+ "▁AR": 9033,
+ "▁Pers": 9034,
+ "férés": 9035,
+ "▁скла": 9036,
+ "Var": 9037,
+ "▁Once": 9038,
+ "Red": 9039,
+ "buffer": 9040,
+ "▁Enter": 9041,
+ "▁Š": 9042,
+ "imiento": 9043,
+ "Store": 9044,
+ "▁health": 9045,
+ "vat": 9046,
+ "IST": 9047,
+ "Oh": 9048,
+ "▁kw": 9049,
+ "▁riv": 9050,
+ "▁somewhere": 9051,
+ "ografie": 9052,
+ "private": 9053,
+ "кти": 9054,
+ "▁delay": 9055,
+ "▁Http": 9056,
+ "job": 9057,
+ "rael": 9058,
+ "empor": 9059,
+ "▁diciembre": 9060,
+ "ête": 9061,
+ "цу": 9062,
+ "▁commit": 9063,
+ "oso": 9064,
+ "Values": 9065,
+ "▁headers": 9066,
+ "transform": 9067,
+ "▁processing": 9068,
+ "rå": 9069,
+ "▁Ah": 9070,
+ "▁Node": 9071,
+ "------------": 9072,
+ "▁faire": 9073,
+ "▁hun": 9074,
+ "Player": 9075,
+ "▁review": 9076,
+ "гда": 9077,
+ "▁limited": 9078,
+ "▁Property": 9079,
+ "▁serve": 9080,
+ "riage": 9081,
+ "▁Master": 9082,
+ "▁kann": 9083,
+ "crete": 9084,
+ "phere": 9085,
+ "ёр": 9086,
+ "▁chief": 9087,
+ "▁scene": 9088,
+ "kin": 9089,
+ "▁uniform": 9090,
+ "▁febrero": 9091,
+ "\"}": 9092,
+ "illo": 9093,
+ "ITE": 9094,
+ "ouvel": 9095,
+ "usepackage": 9096,
+ "enth": 9097,
+ "▁quickly": 9098,
+ "Lambda": 9099,
+ "xes": 9100,
+ "▁cells": 9101,
+ "rog": 9102,
+ "amin": 9103,
+ "▁Мар": 9104,
+ "▁mayor": 9105,
+ "player": 9106,
+ "++;": 9107,
+ "▁Насе": 9108,
+ "▁safe": 9109,
+ "▁veloc": 9110,
+ "▁обра": 9111,
+ "Database": 9112,
+ "neh": 9113,
+ "Vert": 9114,
+ "▁fle": 9115,
+ "▁фор": 9116,
+ "▁foreign": 9117,
+ "Abstract": 9118,
+ "▁magn": 9119,
+ "▁modified": 9120,
+ "▁military": 9121,
+ "▁monde": 9122,
+ "▁Action": 9123,
+ "▁bank": 9124,
+ "Serial": 9125,
+ "▁continuous": 9126,
+ "▁gel": 9127,
+ "▁physical": 9128,
+ "▁introduced": 9129,
+ "uture": 9130,
+ "rick": 9131,
+ "▁presented": 9132,
+ "▁Prov": 9133,
+ "▁Both": 9134,
+ "Pos": 9135,
+ "super": 9136,
+ "": 9137,
+ "▁finding": 9138,
+ "nel": 9139,
+ "unde": 9140,
+ "▁från": 9141,
+ "skim": 9142,
+ "▁Hill": 9143,
+ "fn": 9144,
+ "▁Canad": 9145,
+ "▁intended": 9146,
+ "ozzáférés": 9147,
+ "▁juillet": 9148,
+ "▁Wars": 9149,
+ "▁successful": 9150,
+ "▁charg": 9151,
+ "iele": 9152,
+ "omething": 9153,
+ "oku": 9154,
+ "fetch": 9155,
+ "▁}}": 9156,
+ "bank": 9157,
+ "operatorname": 9158,
+ "▁Color": 9159,
+ "▁Card": 9160,
+ "tu": 9161,
+ "▁\",": 9162,
+ "wid": 9163,
+ "▁gep": 9164,
+ "XML": 9165,
+ "================": 9166,
+ "▁Virgin": 9167,
+ "ährend": 9168,
+ "licated": 9169,
+ "Dir": 9170,
+ "zero": 9171,
+ "▁Kal": 9172,
+ "▁Party": 9173,
+ "▁å": 9174,
+ "price": 9175,
+ "don": 9176,
+ "▁warning": 9177,
+ "▁Bad": 9178,
+ "▁Supp": 9179,
+ "▁Liga": 9180,
+ "▁Pierre": 9181,
+ "Record": 9182,
+ "ulator": 9183,
+ "▁Rome": 9184,
+ "▁theorem": 9185,
+ "▁entirely": 9186,
+ "ским": 9187,
+ "het": 9188,
+ "▁dopo": 9189,
+ "Next": 9190,
+ "mlung": 9191,
+ "wig": 9192,
+ "▁Ath": 9193,
+ "▁Sou": 9194,
+ "licher": 9195,
+ "▁sudo": 9196,
+ "ests": 9197,
+ "хів": 9198,
+ "▁septiembre": 9199,
+ "▁micro": 9200,
+ "▁trop": 9201,
+ "fit": 9202,
+ "Core": 9203,
+ "▁Radio": 9204,
+ "▁Organ": 9205,
+ "▁Power": 9206,
+ "CF": 9207,
+ "▁Last": 9208,
+ "▁oppos": 9209,
+ "▁offset": 9210,
+ "▁regia": 9211,
+ "▁minimum": 9212,
+ "▁helped": 9213,
+ "andon": 9214,
+ "ifying": 9215,
+ "ruit": 9216,
+ "enschapp": 9217,
+ "▁bere": 9218,
+ "VM": 9219,
+ "▁Awards": 9220,
+ "▁agr": 9221,
+ "ynomial": 9222,
+ "enced": 9223,
+ "▁devices": 9224,
+ "▁bot": 9225,
+ "▁firm": 9226,
+ "▁writer": 9227,
+ "▁ring": 9228,
+ ".-": 9229,
+ "istes": 9230,
+ "lä": 9231,
+ "▁mel": 9232,
+ "entation": 9233,
+ "▁Schw": 9234,
+ "▁nome": 9235,
+ "▁pobla": 9236,
+ "▁woj": 9237,
+ "▁ul": 9238,
+ "ento": 9239,
+ "ых": 9240,
+ "▁resist": 9241,
+ "▁remains": 9242,
+ "▁Ca": 9243,
+ "aña": 9244,
+ "▁Court": 9245,
+ "utable": 9246,
+ "entially": 9247,
+ "▁trat": 9248,
+ "▁Visual": 9249,
+ "▁restrict": 9250,
+ "▁previously": 9251,
+ "cation": 9252,
+ "▁осо": 9253,
+ "▁MySQL": 9254,
+ "för": 9255,
+ "cala": 9256,
+ "▁culture": 9257,
+ "live": 9258,
+ "▁accepted": 9259,
+ "Did": 9260,
+ "▁hous": 9261,
+ "▁selection": 9262,
+ "▁decre": 9263,
+ "margin": 9264,
+ "urb": 9265,
+ "▁Inc": 9266,
+ "▁Many": 9267,
+ "ibt": 9268,
+ "▁succeed": 9269,
+ "Binding": 9270,
+ "cí": 9271,
+ "▁Rog": 9272,
+ "▁shouldn": 9273,
+ "cloud": 9274,
+ "▁dz": 9275,
+ "вав": 9276,
+ "▁pix": 9277,
+ "small": 9278,
+ "▁projects": 9279,
+ "▁OK": 9280,
+ "▁latest": 9281,
+ "▁references": 9282,
+ "Program": 9283,
+ "▁erst": 9284,
+ "▁як": 9285,
+ "▁kam": 9286,
+ "▁Camb": 9287,
+ "ellt": 9288,
+ "öd": 9289,
+ "none": 9290,
+ "▁jusqu": 9291,
+ "king": 9292,
+ "▁Ped": 9293,
+ "assert": 9294,
+ "CS": 9295,
+ "rito": 9296,
+ "essa": 9297,
+ "лько": 9298,
+ "▁Von": 9299,
+ "▁Edward": 9300,
+ "▁impossible": 9301,
+ "np": 9302,
+ "words": 9303,
+ "ielt": 9304,
+ "▁Page": 9305,
+ "lers": 9306,
+ "▁pier": 9307,
+ "▁области": 9308,
+ "ittee": 9309,
+ "▁([": 9310,
+ "▁trust": 9311,
+ "NG": 9312,
+ "redu": 9313,
+ "<<": 9314,
+ "rial": 9315,
+ "▁products": 9316,
+ "▁Ern": 9317,
+ "rière": 9318,
+ "гов": 9319,
+ "▁Reich": 9320,
+ "▁Road": 9321,
+ "▁nested": 9322,
+ "Display": 9323,
+ "▁strength": 9324,
+ "ografía": 9325,
+ "▁announced": 9326,
+ "▁Science": 9327,
+ "▁райо": 9328,
+ "Parameter": 9329,
+ "▁Task": 9330,
+ "uments": 9331,
+ "▁adopt": 9332,
+ "▁Only": 9333,
+ "ють": 9334,
+ "▁cli": 9335,
+ "▁lem": 9336,
+ "stood": 9337,
+ "▁FI": 9338,
+ "ências": 9339,
+ "ponents": 9340,
+ "]$": 9341,
+ "comment": 9342,
+ "▁ya": 9343,
+ "should": 9344,
+ "ike": 9345,
+ "tim": 9346,
+ "ellig": 9347,
+ "▁sending": 9348,
+ "▁ajax": 9349,
+ "▁noviembre": 9350,
+ "umes": 9351,
+ "▁weiter": 9352,
+ "▁Dans": 9353,
+ "opp": 9354,
+ "▁septembre": 9355,
+ "otimes": 9356,
+ "ző": 9357,
+ "▁ep": 9358,
+ "vere": 9359,
+ "▁oh": 9360,
+ ":=": 9361,
+ "▁Song": 9362,
+ "”,": 9363,
+ "▁viv": 9364,
+ "▁queries": 9365,
+ "▁vá": 9366,
+ "▁décembre": 9367,
+ "▁unable": 9368,
+ "▁erh": 9369,
+ "▁`-": 9370,
+ "▁Lee": 9371,
+ "▁ersten": 9372,
+ "ôt": 9373,
+ "стве": 9374,
+ "TS": 9375,
+ "▁fragment": 9376,
+ "▁wide": 9377,
+ "▁suff": 9378,
+ "▁dut": 9379,
+ "▁Vere": 9380,
+ "іс": 9381,
+ "ading": 9382,
+ "iego": 9383,
+ "icago": 9384,
+ "▁Argent": 9385,
+ "orer": 9386,
+ "ennes": 9387,
+ "▁Leb": 9388,
+ "linux": 9389,
+ "acing": 9390,
+ "▁broken": 9391,
+ "tp": 9392,
+ "ío": 9393,
+ "abeth": 9394,
+ "istas": 9395,
+ "gew": 9396,
+ "ième": 9397,
+ "cas": 9398,
+ "▁preced": 9399,
+ "▁Dal": 9400,
+ "▁compared": 9401,
+ "equiv": 9402,
+ "illy": 9403,
+ "teen": 9404,
+ "▁Console": 9405,
+ "▁strict": 9406,
+ "itaire": 9407,
+ "▁ED": 9408,
+ "entials": 9409,
+ "▁perman": 9410,
+ "▁tous": 9411,
+ "▁geme": 9412,
+ "▁extrem": 9413,
+ "▁окру": 9414,
+ "kg": 9415,
+ "▁heavy": 9416,
+ "▁avril": 9417,
+ "▁anti": 9418,
+ "▁octobre": 9419,
+ "utf": 9420,
+ "helm": 9421,
+ "amples": 9422,
+ "▁(_": 9423,
+ "aken": 9424,
+ "▁dear": 9425,
+ "▁opinion": 9426,
+ "▁fish": 9427,
+ "▁Alexander": 9428,
+ "iw": 9429,
+ "им": 9430,
+ "cadem": 9431,
+ "▁reflect": 9432,
+ "▁др": 9433,
+ "▁trib": 9434,
+ "common": 9435,
+ "▁clearly": 9436,
+ "▁saf": 9437,
+ "=\"@+": 9438,
+ "▁Мос": 9439,
+ "сите": 9440,
+ "eqnarray": 9441,
+ "nung": 9442,
+ "▁relationship": 9443,
+ "▁Sem": 9444,
+ "▁killed": 9445,
+ "ted": 9446,
+ "uno": 9447,
+ "▁лі": 9448,
+ "▁wid": 9449,
+ "anning": 9450,
+ "▁panel": 9451,
+ "▁Leben": 9452,
+ "▁ruby": 9453,
+ "ansion": 9454,
+ "▁aren": 9455,
+ "tabular": 9456,
+ "alet": 9457,
+ "}$$": 9458,
+ "▁Lake": 9459,
+ "▁suite": 9460,
+ "▁minor": 9461,
+ "Hozzáférés": 9462,
+ "▁xmlns": 9463,
+ "DIR": 9464,
+ "driver": 9465,
+ "ints": 9466,
+ "▁vic": 9467,
+ "AND": 9468,
+ "prim": 9469,
+ "сылки": 9470,
+ "▁Ox": 9471,
+ "TC": 9472,
+ "rivial": 9473,
+ "atie": 9474,
+ "▁eight": 9475,
+ "▁conflic": 9476,
+ "angel": 9477,
+ "▁Begr": 9478,
+ "▁explicitly": 9479,
+ "ются": 9480,
+ "▁Dev": 9481,
+ "render": 9482,
+ "▁reprodu": 9483,
+ "▁cré": 9484,
+ "Gu": 9485,
+ "MB": 9486,
+ "▁kön": 9487,
+ "▁remained": 9488,
+ "▁kl": 9489,
+ "хов": 9490,
+ "▁byl": 9491,
+ "Phi": 9492,
+ "▁detail": 9493,
+ "jav": 9494,
+ "▁mouse": 9495,
+ "Bas": 9496,
+ "ię": 9497,
+ "asser": 9498,
+ "hs": 9499,
+ "▁shift": 9500,
+ "▁últ": 9501,
+ "rand": 9502,
+ "▁btn": 9503,
+ "raz": 9504,
+ "▁pul": 9505,
+ "▁statements": 9506,
+ "filename": 9507,
+ "▁prompt": 9508,
+ "élé": 9509,
+ "ikz": 9510,
+ "▁Sus": 9511,
+ "▁debut": 9512,
+ "Stat": 9513,
+ "forms": 9514,
+ "▁Hein": 9515,
+ "stadt": 9516,
+ "ennis": 9517,
+ "пол": 9518,
+ "arante": 9519,
+ "цій": 9520,
+ "▁queue": 9521,
+ "▁reci": 9522,
+ "▁sta": 9523,
+ "ynchron": 9524,
+ "centering": 9525,
+ "Some": 9526,
+ "Graph": 9527,
+ "▁tested": 9528,
+ "▁Kunst": 9529,
+ "ом": 9530,
+ "▁Nothing": 9531,
+ "ieu": 9532,
+ "“.": 9533,
+ "Bundle": 9534,
+ "▁oficial": 9535,
+ "allow": 9536,
+ "▁React": 9537,
+ "▁Library": 9538,
+ "blue": 9539,
+ "▁verw": 9540,
+ "▁pare": 9541,
+ "▁Friedrich": 9542,
+ "▁aware": 9543,
+ "Exp": 9544,
+ "▁effects": 9545,
+ "▁горо": 9546,
+ "lopedia": 9547,
+ "▁Ven": 9548,
+ "rale": 9549,
+ "▁Final": 9550,
+ "▁propos": 9551,
+ "lacement": 9552,
+ "kten": 9553,
+ "▁novel": 9554,
+ "orter": 9555,
+ "▁Germany": 9556,
+ "▁django": 9557,
+ "▁transition": 9558,
+ "▁happened": 9559,
+ "▁beautiful": 9560,
+ "▁neither": 9561,
+ "▁libraries": 9562,
+ "▁hide": 9563,
+ "alg": 9564,
+ "▁aspect": 9565,
+ "▁forget": 9566,
+ "cademy": 9567,
+ "onte": 9568,
+ "refix": 9569,
+ "▁cloud": 9570,
+ "ned": 9571,
+ "cdots": 9572,
+ "register": 9573,
+ "nym": 9574,
+ ".):": 9575,
+ "▁Jew": 9576,
+ "▁très": 9577,
+ "ниче": 9578,
+ "▁Dor": 9579,
+ "▁proc": 9580,
+ "▁gan": 9581,
+ "▁є": 9582,
+ "▁Sav": 9583,
+ "ví": 9584,
+ "Settings": 9585,
+ "▁Vari": 9586,
+ "▁cours": 9587,
+ "Ro": 9588,
+ "▁conj": 9589,
+ "▁reasons": 9590,
+ "▁reader": 9591,
+ "лександ": 9592,
+ "icate": 9593,
+ "}),": 9594,
+ "▁tasks": 9595,
+ "▁Ray": 9596,
+ "▁ric": 9597,
+ "Ke": 9598,
+ "onie": 9599,
+ "rf": 9600,
+ ")[": 9601,
+ "▁subsequ": 9602,
+ "▁Turn": 9603,
+ "▁VIAF": 9604,
+ "mathsf": 9605,
+ "HE": 9606,
+ "▁declare": 9607,
+ "▁protocol": 9608,
+ "▁PC": 9609,
+ "цион": 9610,
+ "ViewById": 9611,
+ "▁animation": 9612,
+ "▁confused": 9613,
+ "вич": 9614,
+ "▁enabled": 9615,
+ "owo": 9616,
+ "ást": 9617,
+ "öt": 9618,
+ "▁mand": 9619,
+ "▁Rail": 9620,
+ "fields": 9621,
+ "▁Kap": 9622,
+ "▁algebra": 9623,
+ "▁Су": 9624,
+ "férence": 9625,
+ "▁Current": 9626,
+ "сно": 9627,
+ "▁Lim": 9628,
+ "Params": 9629,
+ "▁Antonio": 9630,
+ "▁tv": 9631,
+ "late": 9632,
+ "ifer": 9633,
+ "Entry": 9634,
+ "▁Serv": 9635,
+ "▁musical": 9636,
+ "▁trace": 9637,
+ "▁scient": 9638,
+ "fic": 9639,
+ "▁forgot": 9640,
+ "video": 9641,
+ "▁older": 9642,
+ "Tree": 9643,
+ "▁uns": 9644,
+ "ники": 9645,
+ "▁Europa": 9646,
+ "▁Zwe": 9647,
+ "▁бе": 9648,
+ "▁vec": 9649,
+ "жу": 9650,
+ "▁▁▁▁▁▁▁▁▁▁▁": 9651,
+ "Match": 9652,
+ "span": 9653,
+ "▁blank": 9654,
+ "▁später": 9655,
+ "▁Ty": 9656,
+ "▁dict": 9657,
+ "ña": 9658,
+ "▁confirm": 9659,
+ "▁vý": 9660,
+ "зан": 9661,
+ "Rel": 9662,
+ "film": 9663,
+ "▁Rot": 9664,
+ "▁Hy": 9665,
+ "ках": 9666,
+ "▁demand": 9667,
+ "▁minist": 9668,
+ "▁Madrid": 9669,
+ "▁usual": 9670,
+ "spiel": 9671,
+ "eros": 9672,
+ "▁tutorial": 9673,
+ "▁Ссылки": 9674,
+ "sys": 9675,
+ "циаль": 9676,
+ "▁spread": 9677,
+ "▁convers": 9678,
+ "▁roll": 9679,
+ "artifactId": 9680,
+ "▁Number": 9681,
+ "▁symmet": 9682,
+ "▁Mult": 9683,
+ "expected": 9684,
+ "▁axis": 9685,
+ "▁matching": 9686,
+ "▁food": 9687,
+ "groupId": 9688,
+ "Mapp": 9689,
+ "▁свя": 9690,
+ "▁vend": 9691,
+ "Found": 9692,
+ "otto": 9693,
+ "Cat": 9694,
+ "crit": 9695,
+ "istent": 9696,
+ "▁drei": 9697,
+ "▁ended": 9698,
+ "▁Tele": 9699,
+ "component": 9700,
+ "▁involved": 9701,
+ "▁Estados": 9702,
+ "▁danger": 9703,
+ "▁chain": 9704,
+ "▁Prom": 9705,
+ "hom": 9706,
+ "▁polít": 9707,
+ "cop": 9708,
+ "▁nap": 9709,
+ "rif": 9710,
+ "plements": 9711,
+ "▁vent": 9712,
+ "anna": 9713,
+ "anted": 9714,
+ "dated": 9715,
+ "anth": 9716,
+ "▁threads": 9717,
+ "зова": 9718,
+ "▁станов": 9719,
+ "▁eerst": 9720,
+ "buf": 9721,
+ "heid": 9722,
+ "▁Ru": 9723,
+ "▁Prim": 9724,
+ "▁migr": 9725,
+ "▁Unidos": 9726,
+ "▁arbitr": 9727,
+ "▁roman": 9728,
+ "ountry": 9729,
+ "ultur": 9730,
+ "▁König": 9731,
+ "▁annot": 9732,
+ "aching": 9733,
+ "▁Haupt": 9734,
+ "umin": 9735,
+ "▁hem": 9736,
+ "ckets": 9737,
+ "bau": 9738,
+ "ection": 9739,
+ "eft": 9740,
+ "▁packages": 9741,
+ "▁Kur": 9742,
+ "thur": 9743,
+ "▁pays": 9744,
+ "liament": 9745,
+ "▁Бу": 9746,
+ "▁cada": 9747,
+ "points": 9748,
+ "ocket": 9749,
+ "▁verb": 9750,
+ "лее": 9751,
+ "▁submit": 9752,
+ "▁san": 9753,
+ "ruby": 9754,
+ "▁east": 9755,
+ "kov": 9756,
+ "▁Verlag": 9757,
+ "▁spot": 9758,
+ "ppo": 9759,
+ "Each": 9760,
+ "jekt": 9761,
+ "▁Biographie": 9762,
+ "▁news": 9763,
+ "▁país": 9764,
+ "ufact": 9765,
+ "▁dia": 9766,
+ "кова": 9767,
+ "▁accompl": 9768,
+ "▁Ét": 9769,
+ "ilities": 9770,
+ "▁ihm": 9771,
+ "invoke": 9772,
+ "▁append": 9773,
+ ".),": 9774,
+ "▁lab": 9775,
+ "anging": 9776,
+ "istan": 9777,
+ "resol": 9778,
+ "▁Section": 9779,
+ "Parent": 9780,
+ "moz": 9781,
+ "Mat": 9782,
+ "styles": 9783,
+ "unden": 9784,
+ "“,": 9785,
+ "irtschaft": 9786,
+ "ким": 9787,
+ "▁Finally": 9788,
+ "phen": 9789,
+ "▁Pac": 9790,
+ "▁ArrayList": 9791,
+ "▁recover": 9792,
+ "▁education": 9793,
+ "models": 9794,
+ "ped": 9795,
+ "▁happy": 9796,
+ "чу": 9797,
+ "▁guerra": 9798,
+ "media": 9799,
+ "OF": 9800,
+ "▁ensure": 9801,
+ "Mark": 9802,
+ "database": 9803,
+ "oggle": 9804,
+ "▁publish": 9805,
+ "OW": 9806,
+ "▁Bau": 9807,
+ "?.": 9808,
+ "▁части": 9809,
+ "▁repository": 9810,
+ "▁Matt": 9811,
+ "high": 9812,
+ "oven": 9813,
+ "▁ger": 9814,
+ "▁unknown": 9815,
+ "Amer": 9816,
+ "▁Brown": 9817,
+ "ALL": 9818,
+ "▁resulting": 9819,
+ "▁bor": 9820,
+ "▁poet": 9821,
+ "ними": 9822,
+ "Email": 9823,
+ "Font": 9824,
+ "▁hist": 9825,
+ "▁today": 9826,
+ "▁Berg": 9827,
+ "▁buttons": 9828,
+ "тал": 9829,
+ "▁sni": 9830,
+ "▁челов": 9831,
+ "Cre": 9832,
+ "▁union": 9833,
+ "▁zich": 9834,
+ "ishop": 9835,
+ "▁quando": 9836,
+ "Po": 9837,
+ "CTION": 9838,
+ "▁Cost": 9839,
+ "судар": 9840,
+ "erved": 9841,
+ "Note": 9842,
+ "Equal": 9843,
+ "лия": 9844,
+ "бур": 9845,
+ "▁abstract": 9846,
+ "stop": 9847,
+ "▁advice": 9848,
+ "▁icon": 9849,
+ "▁travel": 9850,
+ "BS": 9851,
+ "vens": 9852,
+ "▁batch": 9853,
+ "lique": 9854,
+ "sheet": 9855,
+ "▁ihre": 9856,
+ "emon": 9857,
+ "berto": 9858,
+ "▁assigned": 9859,
+ "ью": 9860,
+ "Phone": 9861,
+ "▁award": 9862,
+ "▁functionality": 9863,
+ "alla": 9864,
+ "▁Dam": 9865,
+ "▁ciudad": 9866,
+ "▁cluster": 9867,
+ "Description": 9868,
+ "▁sheet": 9869,
+ "▁Australian": 9870,
+ "▁».": 9871,
+ "▁\"<": 9872,
+ "▁wondering": 9873,
+ "aine": 9874,
+ "▁represented": 9875,
+ "kappa": 9876,
+ "nb": 9877,
+ "▁sy": 9878,
+ "▁Kö": 9879,
+ "=\"#": 9880,
+ "▁seven": 9881,
+ "Directory": 9882,
+ "▁sister": 9883,
+ "plates": 9884,
+ "▁luck": 9885,
+ "▁remaining": 9886,
+ "▁Vill": 9887,
+ "werk": 9888,
+ "anni": 9889,
+ "etti": 9890,
+ "func": 9891,
+ "▁ban": 9892,
+ "ims": 9893,
+ "miss": 9894,
+ "agraph": 9895,
+ "екси": 9896,
+ "▁Ref": 9897,
+ "nitt": 9898,
+ "▁Gab": 9899,
+ "▁andere": 9900,
+ "▁jedoch": 9901,
+ "results": 9902,
+ "!\\": 9903,
+ "▁listed": 9904,
+ "▁loro": 9905,
+ "▁knows": 9906,
+ "жно": 9907,
+ "Rad": 9908,
+ "▁socket": 9909,
+ "multi": 9910,
+ "▁рі": 9911,
+ "rails": 9912,
+ "▁tar": 9913,
+ "▁gentle": 9914,
+ "sett": 9915,
+ "services": 9916,
+ "bound": 9917,
+ "igkeit": 9918,
+ "aja": 9919,
+ "▁cmd": 9920,
+ "agger": 9921,
+ "▁ba": 9922,
+ "▁Belg": 9923,
+ "▁Kle": 9924,
+ "▁wordt": 9925,
+ "▁fost": 9926,
+ "▁dimension": 9927,
+ "Ang": 9928,
+ "uming": 9929,
+ "Obj": 9930,
+ "нен": 9931,
+ "▁Marie": 9932,
+ "exists": 9933,
+ "тро": 9934,
+ "▁боль": 9935,
+ "emente": 9936,
+ "▁Jon": 9937,
+ "SERT": 9938,
+ "▁highest": 9939,
+ "aki": 9940,
+ "▁tres": 9941,
+ "▁circum": 9942,
+ "▁Down": 9943,
+ "ommen": 9944,
+ "urer": 9945,
+ "▁causes": 9946,
+ "venue": 9947,
+ "issance": 9948,
+ "▁influence": 9949,
+ "▁fat": 9950,
+ "реди": 9951,
+ "}\\\\": 9952,
+ "▁entr": 9953,
+ "▁Sign": 9954,
+ "▁кла": 9955,
+ "▁binding": 9956,
+ "essen": 9957,
+ "▁Фран": 9958,
+ "▁Local": 9959,
+ "▁явля": 9960,
+ "appro": 9961,
+ "▁dependencies": 9962,
+ "▁talking": 9963,
+ "▁zurück": 9964,
+ "connection": 9965,
+ "Active": 9966,
+ "bbe": 9967,
+ "irls": 9968,
+ "▁Inf": 9969,
+ "wd": 9970,
+ "▁ис": 9971,
+ "road": 9972,
+ "▁conven": 9973,
+ "ět": 9974,
+ "вез": 9975,
+ "▁entries": 9976,
+ "esc": 9977,
+ "▁bits": 9978,
+ "asso": 9979,
+ "WR": 9980,
+ "ships": 9981,
+ "▁dés": 9982,
+ "esp": 9983,
+ "Make": 9984,
+ "▁familiar": 9985,
+ "Art": 9986,
+ "▁army": 9987,
+ "ctr": 9988,
+ "éric": 9989,
+ "queue": 9990,
+ "▁\\{": 9991,
+ "uela": 9992,
+ "amiento": 9993,
+ "ших": 9994,
+ "▁\"\"\"": 9995,
+ "contr": 9996,
+ "лле": 9997,
+ "FS": 9998,
+ "▁market": 9999,
+ "ång": 10000,
+ "citep": 10001,
+ "Ill": 10002,
+ "rank": 10003,
+ "▁sender": 10004,
+ "▁beim": 10005,
+ "рак": 10006,
+ "▁compat": 10007,
+ "▁occurs": 10008,
+ "▁diese": 10009,
+ "ститу": 10010,
+ "awa": 10011,
+ "▁iOS": 10012,
+ "▁Chinese": 10013,
+ "▁TR": 10014,
+ "▁Ken": 10015,
+ "▁Une": 10016,
+ "▁creates": 10017,
+ "▁showed": 10018,
+ "▁év": 10019,
+ "ologia": 10020,
+ "▁protest": 10021,
+ "▁Pf": 10022,
+ "▁squad": 10023,
+ "++,": 10024,
+ "áv": 10025,
+ "▁essere": 10026,
+ "зя": 10027,
+ "kol": 10028,
+ "▁slightly": 10029,
+ "addr": 10030,
+ "ân": 10031,
+ "▁reduce": 10032,
+ "▁\\(\\": 10033,
+ "▁Dep": 10034,
+ "▁generic": 10035,
+ "Loader": 10036,
+ "ți": 10037,
+ "▁пос": 10038,
+ "▁occasion": 10039,
+ "▁Lady": 10040,
+ "entity": 10041,
+ "▁avant": 10042,
+ "▁Pas": 10043,
+ "aggio": 10044,
+ "\\{": 10045,
+ "пад": 10046,
+ "atholic": 10047,
+ "Password": 10048,
+ "▁respond": 10049,
+ "▁Non": 10050,
+ "AG": 10051,
+ "neg": 10052,
+ "▁ус": 10053,
+ "blob": 10054,
+ "cke": 10055,
+ "▁Consider": 10056,
+ "▁Care": 10057,
+ "iki": 10058,
+ "▁Chicago": 10059,
+ "inden": 10060,
+ "▁Cop": 10061,
+ "]+": 10062,
+ "öm": 10063,
+ "évrier": 10064,
+ "кло": 10065,
+ "alen": 10066,
+ "▁maj": 10067,
+ "racy": 10068,
+ "orte": 10069,
+ "ients": 10070,
+ "ells": 10071,
+ "activity": 10072,
+ "▁runtime": 10073,
+ "NULL": 10074,
+ "▁possibly": 10075,
+ "▁stri": 10076,
+ "izi": 10077,
+ "▁mir": 10078,
+ "▁Version": 10079,
+ "prime": 10080,
+ "▁twenty": 10081,
+ "▁Mah": 10082,
+ "▁sounds": 10083,
+ "шен": 10084,
+ "clusion": 10085,
+ "acz": 10086,
+ "▁determined": 10087,
+ "▁Rep": 10088,
+ "▁Landes": 10089,
+ "▁wall": 10090,
+ "igi": 10091,
+ "▁reset": 10092,
+ "шо": 10093,
+ "yan": 10094,
+ "Met": 10095,
+ "ei": 10096,
+ "▁appearance": 10097,
+ "▁fois": 10098,
+ "▁nell": 10099,
+ "esi": 10100,
+ "ёт": 10101,
+ "loor": 10102,
+ "▁Ul": 10103,
+ "▁resolution": 10104,
+ "▁fot": 10105,
+ "▁throughout": 10106,
+ "▁ri": 10107,
+ "Level": 10108,
+ "pool": 10109,
+ "▁identity": 10110,
+ "▁janu": 10111,
+ "▁imper": 10112,
+ "▁över": 10113,
+ "}`": 10114,
+ "▁infer": 10115,
+ "▁dates": 10116,
+ "▁Standard": 10117,
+ "force": 10118,
+ "ockey": 10119,
+ "tera": 10120,
+ "▁distingu": 10121,
+ "▁presence": 10122,
+ "lica": 10123,
+ "▁leaving": 10124,
+ "itung": 10125,
+ "éb": 10126,
+ "▁establish": 10127,
+ "▁maar": 10128,
+ "adi": 10129,
+ "▁News": 10130,
+ "azon": 10131,
+ "folg": 10132,
+ "▁Hence": 10133,
+ "▁Ye": 10134,
+ "▁fab": 10135,
+ "▁führ": 10136,
+ "itmap": 10137,
+ "▁Vers": 10138,
+ "rov": 10139,
+ "Sign": 10140,
+ "device": 10141,
+ "Sigma": 10142,
+ "▁wetenschapp": 10143,
+ "▁Ps": 10144,
+ "PATH": 10145,
+ "▁torn": 10146,
+ "vest": 10147,
+ "стов": 10148,
+ "account": 10149,
+ "▁largest": 10150,
+ "▁percent": 10151,
+ "▁Women": 10152,
+ "▁img": 10153,
+ "tool": 10154,
+ "▁roce": 10155,
+ "▁ay": 10156,
+ "inet": 10157,
+ "▁août": 10158,
+ "▁polynomial": 10159,
+ "▁integral": 10160,
+ "▁areas": 10161,
+ "}'": 10162,
+ "▁hyp": 10163,
+ "loyee": 10164,
+ "таль": 10165,
+ "▁proxy": 10166,
+ "▁Wy": 10167,
+ "▁Мекси": 10168,
+ "▁escape": 10169,
+ "olar": 10170,
+ "▁mistake": 10171,
+ ")}{": 10172,
+ "▁Pot": 10173,
+ "▁processes": 10174,
+ "\">\r": 10175,
+ "halten": 10176,
+ "zza": 10177,
+ "amo": 10178,
+ "кре": 10179,
+ "▁Wood": 10180,
+ "ør": 10181,
+ "▁сер": 10182,
+ "ocia": 10183,
+ "two": 10184,
+ "profile": 10185,
+ "▁Ast": 10186,
+ "embro": 10187,
+ "▁arms": 10188,
+ "inas": 10189,
+ "innen": 10190,
+ "▁msg": 10191,
+ "INT": 10192,
+ "▁batter": 10193,
+ "ignment": 10194,
+ "▁vy": 10195,
+ "Hrsg": 10196,
+ "▁Grund": 10197,
+ "roc": 10198,
+ "seg": 10199,
+ "▁decor": 10200,
+ "▁eventually": 10201,
+ ">,": 10202,
+ "▁pag": 10203,
+ "anten": 10204,
+ "▁strugg": 10205,
+ "}^\\": 10206,
+ "daten": 10207,
+ "▁rela": 10208,
+ "пов": 10209,
+ "▁коро": 10210,
+ "▁Bos": 10211,
+ "▁labor": 10212,
+ "▁Secret": 10213,
+ "ugen": 10214,
+ "▁jap": 10215,
+ "▁husband": 10216,
+ "▁Album": 10217,
+ "▁etwa": 10218,
+ "▁произ": 10219,
+ "richt": 10220,
+ "rach": 10221,
+ "bat": 10222,
+ "▁prepar": 10223,
+ "▁Stock": 10224,
+ "▁lack": 10225,
+ "хід": 10226,
+ "▁hogy": 10227,
+ "▁Chrome": 10228,
+ "▁Admin": 10229,
+ "▁comparison": 10230,
+ "▁increasing": 10231,
+ "нг": 10232,
+ "imi": 10233,
+ "Db": 10234,
+ "▁gef": 10235,
+ "ucht": 10236,
+ "ése": 10237,
+ "gence": 10238,
+ "▁Core": 10239,
+ "▁incorrect": 10240,
+ "▁assuming": 10241,
+ "ourse": 10242,
+ "ieron": 10243,
+ "▁Theorem": 10244,
+ "▁casa": 10245,
+ "jes": 10246,
+ "▁дере": 10247,
+ "▁`\"": 10248,
+ "LD": 10249,
+ "äß": 10250,
+ "Deb": 10251,
+ "▁suiv": 10252,
+ "▁Bank": 10253,
+ "libs": 10254,
+ "▁Leon": 10255,
+ "▁quart": 10256,
+ "▁professional": 10257,
+ "▁tiene": 10258,
+ "▁accomp": 10259,
+ "стер": 10260,
+ "▁UK": 10261,
+ "NN": 10262,
+ "▁lí": 10263,
+ "ця": 10264,
+ "kel": 10265,
+ "▁•": 10266,
+ "▁dise": 10267,
+ "onto": 10268,
+ "▁má": 10269,
+ "ifs": 10270,
+ "bild": 10271,
+ "▁compute": 10272,
+ "▁éd": 10273,
+ "ję": 10274,
+ "▁Mé": 10275,
+ "▁languages": 10276,
+ "▁Times": 10277,
+ "cen": 10278,
+ "▁авто": 10279,
+ "ým": 10280,
+ "enez": 10281,
+ "▁upp": 10282,
+ "▁méd": 10283,
+ "▁cuando": 10284,
+ "од": 10285,
+ "Intent": 10286,
+ "eerd": 10287,
+ "▁Tal": 10288,
+ "offset": 10289,
+ "▁haben": 10290,
+ "reme": 10291,
+ "▁Stack": 10292,
+ "▁dri": 10293,
+ "▁seinem": 10294,
+ "▁février": 10295,
+ "▁combination": 10296,
+ "▁soll": 10297,
+ "▁movement": 10298,
+ "Spec": 10299,
+ "кры": 10300,
+ "retch": 10301,
+ "Offset": 10302,
+ "Root": 10303,
+ "Ар": 10304,
+ "wart": 10305,
+ "▁Follow": 10306,
+ "▁Social": 10307,
+ "ников": 10308,
+ "▁→": 10309,
+ "Don": 10310,
+ "▁harm": 10311,
+ "agr": 10312,
+ "nego": 10313,
+ "resource": 10314,
+ "▁Luc": 10315,
+ "▁seinen": 10316,
+ "▁Department": 10317,
+ "▁Update": 10318,
+ "▁Texas": 10319,
+ "▁reve": 10320,
+ "▁Pos": 10321,
+ "▁shot": 10322,
+ "othe": 10323,
+ "▁repeated": 10324,
+ "▁recently": 10325,
+ "ában": 10326,
+ "aks": 10327,
+ "пан": 10328,
+ "▁cha": 10329,
+ "ohl": 10330,
+ "▁tend": 10331,
+ "▁дво": 10332,
+ "chts": 10333,
+ "çaise": 10334,
+ "pling": 10335,
+ "album": 10336,
+ "ej": 10337,
+ "▁`[": 10338,
+ "maps": 10339,
+ "▁units": 10340,
+ "▁": 15110,
+ "▁pří": 15111,
+ "pandas": 15112,
+ "▁Plus": 15113,
+ "yll": 15114,
+ "▁terror": 15115,
+ "▁crim": 15116,
+ "▁zak": 15117,
+ "issue": 15118,
+ "panel": 15119,
+ "svg": 15120,
+ "▁reb": 15121,
+ "Customer": 15122,
+ "switch": 15123,
+ "обра": 15124,
+ "▁Championships": 15125,
+ "clo": 15126,
+ "atte": 15127,
+ "▁anymore": 15128,
+ "▁excellent": 15129,
+ "▁opportunity": 15130,
+ "▁Bahn": 15131,
+ "чин": 15132,
+ "eting": 15133,
+ "▁incident": 15134,
+ "tom": 15135,
+ "Pers": 15136,
+ "bben": 15137,
+ "ственной": 15138,
+ "их": 15139,
+ "router": 15140,
+ "▁newly": 15141,
+ "▁silence": 15142,
+ "▁GNU": 15143,
+ "▁Rails": 15144,
+ "▁Amb": 15145,
+ "▁Qual": 15146,
+ "▁Schaus": 15147,
+ "▁Sohn": 15148,
+ "▁ALL": 15149,
+ "▁royal": 15150,
+ "▁£": 15151,
+ "wię": 15152,
+ "▁entfer": 15153,
+ "▁Remove": 15154,
+ "▁hardly": 15155,
+ "Using": 15156,
+ "лог": 15157,
+ "▁Ich": 15158,
+ "▁derni": 15159,
+ "▁Connection": 15160,
+ "fish": 15161,
+ "▁Inform": 15162,
+ "▁Ener": 15163,
+ "roit": 15164,
+ "Bbb": 15165,
+ "ViewModel": 15166,
+ "Video": 15167,
+ "iley": 15168,
+ "▁много": 15169,
+ "▁Gem": 15170,
+ "▁compreh": 15171,
+ "enumerate": 15172,
+ "ulas": 15173,
+ "▁Bah": 15174,
+ "▁Yet": 15175,
+ "BR": 15176,
+ "хра": 15177,
+ "▁county": 15178,
+ "▁Hist": 15179,
+ "▁Гу": 15180,
+ "▁Ј": 15181,
+ "▁mari": 15182,
+ "▁Clar": 15183,
+ "Bitmap": 15184,
+ "▁Cz": 15185,
+ "▁mån": 15186,
+ "▁mere": 15187,
+ "▁musique": 15188,
+ "also": 15189,
+ "dates": 15190,
+ "▁DVD": 15191,
+ "▁gol": 15192,
+ "fony": 15193,
+ "▁Castle": 15194,
+ "▁фами": 15195,
+ "▁arrang": 15196,
+ "▁Business": 15197,
+ "▁Kaz": 15198,
+ "▁osc": 15199,
+ "▁secolo": 15200,
+ "▁affected": 15201,
+ "▁Health": 15202,
+ "reb": 15203,
+ "editor": 15204,
+ "▁owned": 15205,
+ "tl": 15206,
+ "▁ví": 15207,
+ "чних": 15208,
+ "кви": 15209,
+ "▁devient": 15210,
+ "Mutable": 15211,
+ "▁tegen": 15212,
+ "Register": 15213,
+ "єю": 15214,
+ "▁caracter": 15215,
+ "лли": 15216,
+ "▁nouvelle": 15217,
+ "oko": 15218,
+ "ichtet": 15219,
+ "▁evol": 15220,
+ "▁Hab": 15221,
+ "▁militar": 15222,
+ "▁puts": 15223,
+ "endif": 15224,
+ "▁Davis": 15225,
+ "▁Scotland": 15226,
+ "regular": 15227,
+ "▁Context": 15228,
+ "ispiel": 15229,
+ "▁Gallery": 15230,
+ "\",\r": 15231,
+ "▁arc": 15232,
+ "▁INFO": 15233,
+ "▁cod": 15234,
+ "дів": 15235,
+ "▁varchar": 15236,
+ "▁toujours": 15237,
+ "atial": 15238,
+ "▁hanno": 15239,
+ "▁профес": 15240,
+ "▁launched": 15241,
+ "▁населення": 15242,
+ "▁ton": 15243,
+ "aused": 15244,
+ "▁із": 15245,
+ "▁tö": 15246,
+ "▁Pur": 15247,
+ "▁olymp": 15248,
+ "ARN": 15249,
+ "óm": 15250,
+ "▁august": 15251,
+ "▁furn": 15252,
+ "▁Colomb": 15253,
+ "▁Staats": 15254,
+ "hora": 15255,
+ "▁мор": 15256,
+ "canvas": 15257,
+ "▁grave": 15258,
+ "▁composition": 15259,
+ "acja": 15260,
+ "▁которые": 15261,
+ "▁чо": 15262,
+ "General": 15263,
+ "ані": 15264,
+ "▁Johannes": 15265,
+ "кар": 15266,
+ "▁част": 15267,
+ "▁Васи": 15268,
+ "ssh": 15269,
+ "▁replacing": 15270,
+ "▁<>": 15271,
+ "ців": 15272,
+ "laus": 15273,
+ "eny": 15274,
+ "ähl": 15275,
+ "▁marg": 15276,
+ "cience": 15277,
+ "▁instruction": 15278,
+ "▁који": 15279,
+ "Editor": 15280,
+ "▁fundamental": 15281,
+ "mund": 15282,
+ "▁exceptions": 15283,
+ "▁plate": 15284,
+ "▁Lis": 15285,
+ "▁deren": 15286,
+ "prep": 15287,
+ "▁januari": 15288,
+ "Scope": 15289,
+ "ynast": 15290,
+ "rv": 15291,
+ "orsz": 15292,
+ "▁Tony": 15293,
+ "▁ді": 15294,
+ "▁одна": 15295,
+ "▁sab": 15296,
+ "oti": 15297,
+ "jel": 15298,
+ "▁generator": 15299,
+ "▁'.": 15300,
+ "▁sharp": 15301,
+ "▁только": 15302,
+ "▁accounts": 15303,
+ "▁že": 15304,
+ "▁foram": 15305,
+ "▁gouvern": 15306,
+ "TIME": 15307,
+ "▁Soviet": 15308,
+ "▁Gé": 15309,
+ "▁exped": 15310,
+ "▁ordinary": 15311,
+ "▁Conserv": 15312,
+ "▁compla": 15313,
+ "tei": 15314,
+ "▁captain": 15315,
+ "▁Samuel": 15316,
+ "▁Dark": 15317,
+ "▁він": 15318,
+ "▁delight": 15319,
+ "recht": 15320,
+ "dia": 15321,
+ "esses": 15322,
+ "ulp": 15323,
+ "шки": 15324,
+ "bez": 15325,
+ "▁detection": 15326,
+ "▁cookie": 15327,
+ "antry": 15328,
+ "Multi": 15329,
+ "oba": 15330,
+ "▁joy": 15331,
+ "▁safety": 15332,
+ "|^": 15333,
+ "pod": 15334,
+ "adém": 15335,
+ "▁Chron": 15336,
+ "▁Django": 15337,
+ "▁ehemal": 15338,
+ "kh": 15339,
+ "èle": 15340,
+ "▁poc": 15341,
+ "Bottom": 15342,
+ "launch": 15343,
+ "nem": 15344,
+ "▁GROUP": 15345,
+ "ního": 15346,
+ "▁Gib": 15347,
+ "sdk": 15348,
+ "BE": 15349,
+ "▁Gene": 15350,
+ "▁Staff": 15351,
+ "▁subsequent": 15352,
+ "icion": 15353,
+ "▁victory": 15354,
+ "▁canon": 15355,
+ "izar": 15356,
+ "izia": 15357,
+ "▁mate": 15358,
+ "▁layers": 15359,
+ "sudo": 15360,
+ "schule": 15361,
+ "periment": 15362,
+ "ület": 15363,
+ "ARCHAR": 15364,
+ "▁террито": 15365,
+ "▁measures": 15366,
+ "▁zou": 15367,
+ "opsis": 15368,
+ "нами": 15369,
+ "tbody": 15370,
+ "▁ese": 15371,
+ "sterdam": 15372,
+ "▁photo": 15373,
+ "ynchronous": 15374,
+ "setminus": 15375,
+ "▁loads": 15376,
+ "▁pleasure": 15377,
+ "▁meille": 15378,
+ "}\\,": 15379,
+ "qual": 15380,
+ "▁favour": 15381,
+ "▁rod": 15382,
+ "Der": 15383,
+ "рабо": 15384,
+ "▁pressed": 15385,
+ "rę": 15386,
+ "ieving": 15387,
+ "material": 15388,
+ "virt": 15389,
+ "▁capable": 15390,
+ "сло": 15391,
+ "ushed": 15392,
+ "▁побе": 15393,
+ "usetts": 15394,
+ "unsigned": 15395,
+ "ków": 15396,
+ "▁ov": 15397,
+ "egeben": 15398,
+ "▁applying": 15399,
+ "▁galax": 15400,
+ "▁Oracle": 15401,
+ "▁Stuttgart": 15402,
+ "Infl": 15403,
+ "achusetts": 15404,
+ "▁deel": 15405,
+ "lire": 15406,
+ "▁statunit": 15407,
+ "▁Politiker": 15408,
+ "▁beauty": 15409,
+ ")>": 15410,
+ "▁Columbia": 15411,
+ "▁zewnętrzne": 15412,
+ "▁програ": 15413,
+ "▁dx": 15414,
+ "cknow": 15415,
+ "▁dub": 15416,
+ "unächst": 15417,
+ "findViewById": 15418,
+ "▁Mand": 15419,
+ "áll": 15420,
+ "naire": 15421,
+ "▁destin": 15422,
+ "isting": 15423,
+ "aggi": 15424,
+ "chart": 15425,
+ "▁justice": 15426,
+ "Simple": 15427,
+ "▁unfortunately": 15428,
+ "ір": 15429,
+ "▁questa": 15430,
+ "▁Governor": 15431,
+ "яв": 15432,
+ "▁música": 15433,
+ "▁equipo": 15434,
+ "▁Dest": 15435,
+ "elect": 15436,
+ "StackTrace": 15437,
+ "зом": 15438,
+ "proc": 15439,
+ "entin": 15440,
+ "adora": 15441,
+ "▁Лю": 15442,
+ "▁registered": 15443,
+ "HL": 15444,
+ "facebook": 15445,
+ "▁storing": 15446,
+ "▁Currently": 15447,
+ "▁quadr": 15448,
+ "Standard": 15449,
+ "trim": 15450,
+ "ears": 15451,
+ "sender": 15452,
+ "▁Vas": 15453,
+ "▁edific": 15454,
+ "▁Bür": 15455,
+ "▁Country": 15456,
+ "tha": 15457,
+ ";\"": 15458,
+ "nor": 15459,
+ "▁Doctor": 15460,
+ "rument": 15461,
+ "Gen": 15462,
+ "▁Buen": 15463,
+ "rade": 15464,
+ "▁kun": 15465,
+ "navigation": 15466,
+ "Pay": 15467,
+ "▁captured": 15468,
+ "▁struck": 15469,
+ "venir": 15470,
+ "ément": 15471,
+ "▁Tree": 15472,
+ "▁xx": 15473,
+ "▁narr": 15474,
+ "льного": 15475,
+ "▁installing": 15476,
+ "▁association": 15477,
+ "▁inserted": 15478,
+ "erner": 15479,
+ "validate": 15480,
+ "▁lut": 15481,
+ "▁glo": 15482,
+ "▁technology": 15483,
+ "▁Place": 15484,
+ "$?": 15485,
+ "▁zv": 15486,
+ "слі": 15487,
+ "EP": 15488,
+ "▁atmos": 15489,
+ "ugo": 15490,
+ "ért": 15491,
+ "▁Werk": 15492,
+ "▁%}": 15493,
+ "tele": 15494,
+ "Span": 15495,
+ "▁Raj": 15496,
+ "▁Personen": 15497,
+ "▁Cant": 15498,
+ "▁combat": 15499,
+ "▁observation": 15500,
+ "parameter": 15501,
+ "▁agreed": 15502,
+ "pur": 15503,
+ "▁shadow": 15504,
+ "▁gł": 15505,
+ "Keys": 15506,
+ "Cred": 15507,
+ "ouri": 15508,
+ "▁pale": 15509,
+ "ické": 15510,
+ "▁Week": 15511,
+ "▁Prime": 15512,
+ ">.": 15513,
+ "Initial": 15514,
+ "▁один": 15515,
+ "▁'',": 15516,
+ "▁учи": 15517,
+ "▁Inv": 15518,
+ "cola": 15519,
+ "cible": 15520,
+ "▁Theatre": 15521,
+ "▁bem": 15522,
+ "▁satisfy": 15523,
+ "xl": 15524,
+ "▁разви": 15525,
+ "▁pixel": 15526,
+ "lán": 15527,
+ "▁twee": 15528,
+ "çon": 15529,
+ "нения": 15530,
+ "▁AT": 15531,
+ "ège": 15532,
+ "▁Mort": 15533,
+ "▁mysq": 15534,
+ "ften": 15535,
+ "▁пес": 15536,
+ "éma": 15537,
+ "▁Services": 15538,
+ "customer": 15539,
+ "▁AWS": 15540,
+ "ът": 15541,
+ "▁Ach": 15542,
+ "%.": 15543,
+ "▁clarify": 15544,
+ "▁университе": 15545,
+ "xture": 15546,
+ "umi": 15547,
+ "▁så": 15548,
+ "▁Pel": 15549,
+ "serial": 15550,
+ "URI": 15551,
+ "▁rg": 15552,
+ "▁соста": 15553,
+ "chestra": 15554,
+ "].[": 15555,
+ "wen": 15556,
+ "▁Londres": 15557,
+ "▁anys": 15558,
+ "DataSource": 15559,
+ "▁районе": 15560,
+ "▁rein": 15561,
+ "▁metadata": 15562,
+ "umble": 15563,
+ "arbeit": 15564,
+ "hner": 15565,
+ "cient": 15566,
+ "▁norte": 15567,
+ "▁она": 15568,
+ "▁scored": 15569,
+ "▁ray": 15570,
+ "▁февра": 15571,
+ "▁protagon": 15572,
+ "▁Sac": 15573,
+ "▁commonly": 15574,
+ "LinearLayout": 15575,
+ "▁applic": 15576,
+ "▁мая": 15577,
+ "За": 15578,
+ "▁accessible": 15579,
+ "iewer": 15580,
+ "flag": 15581,
+ "▁Rück": 15582,
+ "äu": 15583,
+ "▁erano": 15584,
+ "▁authentic": 15585,
+ "▁Ry": 15586,
+ "▁неско": 15587,
+ "▁embargo": 15588,
+ "▁dry": 15589,
+ "▁reasonable": 15590,
+ "▁Module": 15591,
+ "▁acceler": 15592,
+ "▁interview": 15593,
+ "▁Creek": 15594,
+ "▁alpha": 15595,
+ "serie": 15596,
+ "They": 15597,
+ "ючи": 15598,
+ "▁Hof": 15599,
+ "▁CR": 15600,
+ "modal": 15601,
+ "▁sequences": 15602,
+ "closed": 15603,
+ ")}$": 15604,
+ "▁Чер": 15605,
+ "▁ORDER": 15606,
+ "Rightarrow": 15607,
+ "hausen": 15608,
+ "}}_": 15609,
+ "▁també": 15610,
+ "▁magnetic": 15611,
+ "▁McC": 15612,
+ "▁winning": 15613,
+ "underline": 15614,
+ "▁Billboard": 15615,
+ "naio": 15616,
+ "▁liqu": 15617,
+ "displaystyle": 15618,
+ "timeout": 15619,
+ "▁considerable": 15620,
+ "▁eben": 15621,
+ "ifferent": 15622,
+ "anu": 15623,
+ "▁Сов": 15624,
+ "[(": 15625,
+ "▁:-)": 15626,
+ "leitung": 15627,
+ "formed": 15628,
+ "▁Manager": 15629,
+ "▁onclick": 15630,
+ "TY": 15631,
+ "тах": 15632,
+ "CV": 15633,
+ "runtime": 15634,
+ "poque": 15635,
+ "▁Ло": 15636,
+ "Temp": 15637,
+ "loaded": 15638,
+ "▁!==": 15639,
+ "▁singer": 15640,
+ "far": 15641,
+ "▁Comple": 15642,
+ "▁Österreich": 15643,
+ "Policy": 15644,
+ "▁worker": 15645,
+ "Wrapper": 15646,
+ "obi": 15647,
+ "▁discussed": 15648,
+ "▁buy": 15649,
+ "▁января": 15650,
+ "▁Din": 15651,
+ "▁ged": 15652,
+ "ској": 15653,
+ "Europe": 15654,
+ "▁tall": 15655,
+ "hos": 15656,
+ "лаго": 15657,
+ "▁Block": 15658,
+ "▁identified": 15659,
+ "ListView": 15660,
+ "▁attempting": 15661,
+ "▁typical": 15662,
+ "psum": 15663,
+ "oster": 15664,
+ "▁журна": 15665,
+ "Pe": 15666,
+ "merce": 15667,
+ "▁unexpected": 15668,
+ "hui": 15669,
+ "letter": 15670,
+ "▁nuevo": 15671,
+ "▁або": 15672,
+ "▁VALUES": 15673,
+ "▁Iz": 15674,
+ "Flags": 15675,
+ "▁TRUE": 15676,
+ "ización": 15677,
+ "▁growing": 15678,
+ "estre": 15679,
+ "▁poly": 15680,
+ "▁Stone": 15681,
+ "▁VIII": 15682,
+ "▁localhost": 15683,
+ "ählt": 15684,
+ "▁embedded": 15685,
+ "jdbc": 15686,
+ "▁convention": 15687,
+ "▁scala": 15688,
+ "сок": 15689,
+ "▁analog": 15690,
+ "▁\"+": 15691,
+ "цю": 15692,
+ "occ": 15693,
+ "▁litt": 15694,
+ "PN": 15695,
+ "▁актив": 15696,
+ "attributes": 15697,
+ "▁Ferd": 15698,
+ "▁azure": 15699,
+ "ști": 15700,
+ "ños": 15701,
+ "ping": 15702,
+ "▁teacher": 15703,
+ "}&": 15704,
+ "ipe": 15705,
+ "▁Nob": 15706,
+ "▁има": 15707,
+ "Bind": 15708,
+ "▁magic": 15709,
+ "▁Transport": 15710,
+ "ixel": 15711,
+ "▁computed": 15712,
+ "agna": 15713,
+ "erst": 15714,
+ "HA": 15715,
+ "Wait": 15716,
+ "▁authors": 15717,
+ "▁;)": 15718,
+ "clam": 15719,
+ "▁Pennsylvan": 15720,
+ "▁drug": 15721,
+ "▁vain": 15722,
+ "▁employed": 15723,
+ "▁individuals": 15724,
+ "▁ange": 15725,
+ "utat": 15726,
+ "▁$-": 15727,
+ "correct": 15728,
+ "▁experiments": 15729,
+ "Argument": 15730,
+ "▁IB": 15731,
+ "▁père": 15732,
+ "▁Brian": 15733,
+ "berger": 15734,
+ "Mac": 15735,
+ "iast": 15736,
+ "Perm": 15737,
+ "Cast": 15738,
+ "▁{};": 15739,
+ "▁Student": 15740,
+ "▁statt": 15741,
+ "algebra": 15742,
+ "▁equals": 15743,
+ "▁projet": 15744,
+ "▁président": 15745,
+ "ActivityThread": 15746,
+ "▁einz": 15747,
+ "enia": 15748,
+ "rez": 15749,
+ "essional": 15750,
+ "▁августа": 15751,
+ "override": 15752,
+ "news": 15753,
+ "▁planet": 15754,
+ "nn": 15755,
+ "▁Wis": 15756,
+ "твер": 15757,
+ "▁Valid": 15758,
+ "▁Gef": 15759,
+ "град": 15760,
+ "▁eig": 15761,
+ "antom": 15762,
+ "▁Meister": 15763,
+ "flags": 15764,
+ "fficiale": 15765,
+ "шая": 15766,
+ "-,": 15767,
+ "ationen": 15768,
+ "mouse": 15769,
+ "standard": 15770,
+ "Single": 15771,
+ "▁bol": 15772,
+ "isis": 15773,
+ "▁fruit": 15774,
+ "course": 15775,
+ "itants": 15776,
+ "▁étaient": 15777,
+ "TextField": 15778,
+ "▁фон": 15779,
+ "▁aircraft": 15780,
+ "▁ISSN": 15781,
+ "▁western": 15782,
+ "▁representing": 15783,
+ "Esp": 15784,
+ "▁Else": 15785,
+ "▁sizes": 15786,
+ "▁satisfied": 15787,
+ "otos": 15788,
+ "UD": 15789,
+ "Final": 15790,
+ "ój": 15791,
+ "ève": 15792,
+ "▁Roy": 15793,
+ "ffen": 15794,
+ "▁salt": 15795,
+ "▁Label": 15796,
+ "Sk": 15797,
+ "▁кре": 15798,
+ "▁Литература": 15799,
+ "▁см": 15800,
+ "Attributes": 15801,
+ "aye": 15802,
+ "ськ": 15803,
+ "▁высо": 15804,
+ "-)": 15805,
+ "oses": 15806,
+ "calcul": 15807,
+ "▁Cannot": 15808,
+ "Generic": 15809,
+ "emo": 15810,
+ "▁Autor": 15811,
+ "лён": 15812,
+ "лага": 15813,
+ "vote": 15814,
+ "licates": 15815,
+ "rus": 15816,
+ "éli": 15817,
+ "opf": 15818,
+ "atique": 15819,
+ "scala": 15820,
+ "▁Ohio": 15821,
+ "▁Britann": 15822,
+ "▁bef": 15823,
+ "▁Евро": 15824,
+ "▁Career": 15825,
+ "isée": 15826,
+ "ót": 15827,
+ "bose": 15828,
+ "▁Бер": 15829,
+ "▁Controller": 15830,
+ "pole": 15831,
+ "▁allen": 15832,
+ "▁hack": 15833,
+ "▁extent": 15834,
+ "▁calci": 15835,
+ "Mer": 15836,
+ "▁summary": 15837,
+ "Mart": 15838,
+ "▁historical": 15839,
+ "imat": 15840,
+ "bud": 15841,
+ "▁FOR": 15842,
+ "export": 15843,
+ "edi": 15844,
+ "Mapping": 15845,
+ "▁Ay": 15846,
+ "▁Ruby": 15847,
+ "▁definitions": 15848,
+ "▁{$": 15849,
+ "▁yours": 15850,
+ "rias": 15851,
+ "Touch": 15852,
+ "▁Gaz": 15853,
+ "▁Autom": 15854,
+ "▁истори": 15855,
+ "▁delen": 15856,
+ "▁Kinder": 15857,
+ "}}%": 15858,
+ "▁performing": 15859,
+ "FR": 15860,
+ "▁Sig": 15861,
+ "▁Brad": 15862,
+ "bras": 15863,
+ "▁Jar": 15864,
+ "pkg": 15865,
+ "wr": 15866,
+ "▁Pays": 15867,
+ "NC": 15868,
+ "▁opposed": 15869,
+ "Try": 15870,
+ "▁везе": 15871,
+ "▁Bog": 15872,
+ "▁writes": 15873,
+ "▁stories": 15874,
+ "▁mater": 15875,
+ "▁stagione": 15876,
+ "▁sty": 15877,
+ "▁compatible": 15878,
+ "heast": 15879,
+ "▁Guy": 15880,
+ "egründ": 15881,
+ "▁identifier": 15882,
+ "▁heads": 15883,
+ "пози": 15884,
+ "▁stup": 15885,
+ "▁tf": 15886,
+ "▁још": 15887,
+ "▁Hugh": 15888,
+ "▁cards": 15889,
+ "ovy": 15890,
+ "▁Toast": 15891,
+ "allas": 15892,
+ "▁públic": 15893,
+ "▁assumes": 15894,
+ "▁чемпиона": 15895,
+ "ycler": 15896,
+ "▁Junior": 15897,
+ "▁Fich": 15898,
+ "▁estimated": 15899,
+ "zerw": 15900,
+ "dialog": 15901,
+ "шин": 15902,
+ "shell": 15903,
+ "▁них": 15904,
+ "▁pitch": 15905,
+ "дол": 15906,
+ "outube": 15907,
+ "▁Santi": 15908,
+ "OnClickListener": 15909,
+ "▁Magyar": 15910,
+ "▁vue": 15911,
+ "ião": 15912,
+ "▁`#": 15913,
+ "collect": 15914,
+ "▁Rou": 15915,
+ "analysis": 15916,
+ "istrzost": 15917,
+ "▁Digital": 15918,
+ "▁crist": 15919,
+ "riere": 15920,
+ "▁campo": 15921,
+ "Us": 15922,
+ "▁circa": 15923,
+ "▁Component": 15924,
+ "▁NSString": 15925,
+ "pd": 15926,
+ "▁prince": 15927,
+ "▁invoke": 15928,
+ "▁Marine": 15929,
+ "Allow": 15930,
+ "estic": 15931,
+ "ристи": 15932,
+ "bone": 15933,
+ "туры": 15934,
+ "▁passion": 15935,
+ "áció": 15936,
+ "▁orn": 15937,
+ "вед": 15938,
+ "▁invari": 15939,
+ "▁ні": 15940,
+ "Remove": 15941,
+ "encies": 15942,
+ "ilib": 15943,
+ "▁Director": 15944,
+ "\"\"": 15945,
+ "▁Conse": 15946,
+ "googleapis": 15947,
+ "ók": 15948,
+ "▁Укра": 15949,
+ "▁Having": 15950,
+ "Domain": 15951,
+ "ierz": 15952,
+ "нологи": 15953,
+ "Cho": 15954,
+ "undefined": 15955,
+ "alloc": 15956,
+ "▁pied": 15957,
+ "▁fraction": 15958,
+ "bia": 15959,
+ "▁поло": 15960,
+ "ugno": 15961,
+ "minister": 15962,
+ "▁principale": 15963,
+ "▁refused": 15964,
+ "browser": 15965,
+ "*,": 15966,
+ "▁Hospital": 15967,
+ "▁universal": 15968,
+ "▁Ernst": 15969,
+ "who": 15970,
+ "▁Gard": 15971,
+ "'_": 15972,
+ "conde": 15973,
+ "▁[{": 15974,
+ "sob": 15975,
+ "▁Crit": 15976,
+ "▁декабря": 15977,
+ "▁punto": 15978,
+ "▁eingesetzt": 15979,
+ "▁tör": 15980,
+ "▁Ni": 15981,
+ "▁worry": 15982,
+ "▁legend": 15983,
+ "▁були": 15984,
+ "▁komm": 15985,
+ "rijk": 15986,
+ "effect": 15987,
+ "Ori": 15988,
+ "RES": 15989,
+ "▁Peters": 15990,
+ "▁Baron": 15991,
+ "▁Got": 15992,
+ "▁honest": 15993,
+ "äre": 15994,
+ "ász": 15995,
+ "▁noble": 15996,
+ "▁conclusion": 15997,
+ "▁formatting": 15998,
+ "▁otto": 15999,
+ "▁deleg": 16000,
+ "мб": 16001,
+ "ptop": 16002,
+ "▁sends": 16003,
+ "urname": 16004,
+ "▁festival": 16005,
+ ",": 16006,
+ "рус": 16007,
+ "▁doch": 16008,
+ "subject": 16009,
+ "▁careful": 16010,
+ "quent": 16011,
+ "▁Load": 16012,
+ "temperaturen": 16013,
+ "▁rue": 16014,
+ "Memory": 16015,
+ "ța": 16016,
+ "iona": 16017,
+ "▁dentro": 16018,
+ "▁begann": 16019,
+ "▁Aqu": 16020,
+ "▁scientific": 16021,
+ "kań": 16022,
+ "лок": 16023,
+ "elde": 16024,
+ "▁Those": 16025,
+ "quier": 16026,
+ "actér": 16027,
+ "▁Auflage": 16028,
+ ")'": 16029,
+ "▁gradient": 16030,
+ "integer": 16031,
+ "▁Import": 16032,
+ "SK": 16033,
+ "▁Status": 16034,
+ "▁explo": 16035,
+ "AE": 16036,
+ "Shell": 16037,
+ "▁Paulo": 16038,
+ ".»": 16039,
+ "}": 16040,
+ "flex": 16041,
+ "▁комп": 16042,
+ "onden": 16043,
+ "accept": 16044,
+ "▁miejsce": 16045,
+ "Hub": 16046,
+ "alleng": 16047,
+ "WN": 16048,
+ "▁implementing": 16049,
+ "▁лу": 16050,
+ "▁confusing": 16051,
+ "▁Install": 16052,
+ "▁rou": 16053,
+ "▁проек": 16054,
+ "Accessor": 16055,
+ "љашње": 16056,
+ "odio": 16057,
+ "▁applies": 16058,
+ "ющий": 16059,
+ "▁Mundial": 16060,
+ "État": 16061,
+ "ietnam": 16062,
+ "hum": 16063,
+ "▁сбор": 16064,
+ "ordinate": 16065,
+ "France": 16066,
+ "▁prend": 16067,
+ "eltemperaturen": 16068,
+ "▁trabaj": 16069,
+ "Axis": 16070,
+ "▁мно": 16071,
+ "primary": 16072,
+ "▁Seite": 16073,
+ "permission": 16074,
+ "▁orden": 16075,
+ "since": 16076,
+ "▁ic": 16077,
+ "▁Brazil": 16078,
+ "▁bare": 16079,
+ "▁Nar": 16080,
+ "▁Jur": 16081,
+ "▁freedom": 16082,
+ "▁medical": 16083,
+ "ischof": 16084,
+ "▁сп": 16085,
+ "ież": 16086,
+ "▁bootstrap": 16087,
+ "▁…": 16088,
+ "▁facil": 16089,
+ "cord": 16090,
+ "ване": 16091,
+ "▁Allen": 16092,
+ "avid": 16093,
+ "ingham": 16094,
+ "zas": 16095,
+ "▁inspect": 16096,
+ "itten": 16097,
+ "osti": 16098,
+ "uh": 16099,
+ "cé": 16100,
+ "▁#####": 16101,
+ "cius": 16102,
+ "omy": 16103,
+ "▁Seine": 16104,
+ "bres": 16105,
+ "▁genus": 16106,
+ "Other": 16107,
+ "▁Golden": 16108,
+ "mul": 16109,
+ "▁Спољашње": 16110,
+ "▁gennaio": 16111,
+ "▁carefully": 16112,
+ "aal": 16113,
+ "▁analyt": 16114,
+ "neur": 16115,
+ "▁stretch": 16116,
+ "▁Occ": 16117,
+ "olas": 16118,
+ "▁firebase": 16119,
+ "▁expecting": 16120,
+ "basic": 16121,
+ "condition": 16122,
+ "prov": 16123,
+ "▁Wasser": 16124,
+ "▁concaten": 16125,
+ "▁evil": 16126,
+ "▁coefficients": 16127,
+ "West": 16128,
+ "iry": 16129,
+ "phas": 16130,
+ "▁Jam": 16131,
+ "fois": 16132,
+ "▁consid": 16133,
+ "▁mainten": 16134,
+ "nim": 16135,
+ "esser": 16136,
+ "esz": 16137,
+ "unta": 16138,
+ "uest": 16139,
+ "▁credentials": 16140,
+ "_;": 16141,
+ "Dim": 16142,
+ "преде": 16143,
+ "▁Bü": 16144,
+ "built": 16145,
+ "▁Academ": 16146,
+ "▁audi": 16147,
+ "▁två": 16148,
+ "inand": 16149,
+ "▁Theater": 16150,
+ "▁genre": 16151,
+ "ços": 16152,
+ "gresql": 16153,
+ "▁weap": 16154,
+ "▁Rab": 16155,
+ "▁’": 16156,
+ "▁adult": 16157,
+ "▁dém": 16158,
+ "``": 16159,
+ "▁stabil": 16160,
+ "▁corresponds": 16161,
+ "▁Eastern": 16162,
+ "unnel": 16163,
+ "Worker": 16164,
+ "▁coh": 16165,
+ "лка": 16166,
+ "▁Massachusetts": 16167,
+ "pio": 16168,
+ "▁ports": 16169,
+ "agg": 16170,
+ "▁Debug": 16171,
+ "▁breath": 16172,
+ "MIN": 16173,
+ "Variable": 16174,
+ "batch": 16175,
+ "ссе": 16176,
+ "▁preg": 16177,
+ "▁roles": 16178,
+ "paste": 16179,
+ "▁referenced": 16180,
+ "adrat": 16181,
+ "чё": 16182,
+ "binom": 16183,
+ "▁defining": 16184,
+ "▁Budapest": 16185,
+ "▁дви": 16186,
+ "▁taught": 16187,
+ "▁hole": 16188,
+ "▁quella": 16189,
+ "Msg": 16190,
+ "aska": 16191,
+ "scan": 16192,
+ "▁propose": 16193,
+ "▁Биография": 16194,
+ "{{\\": 16195,
+ "textt": 16196,
+ "▁Alb": 16197,
+ "▁Sydney": 16198,
+ "▁backup": 16199,
+ "▁credit": 16200,
+ "▁францу": 16201,
+ "stats": 16202,
+ "\\\":": 16203,
+ "▁Пере": 16204,
+ "▁accordingly": 16205,
+ "▁Len": 16206,
+ "zna": 16207,
+ "▁Regional": 16208,
+ "▁изда": 16209,
+ "▁jú": 16210,
+ "histor": 16211,
+ "▁entities": 16212,
+ "Star": 16213,
+ "оне": 16214,
+ "']['": 16215,
+ "▁Nova": 16216,
+ "die": 16217,
+ "▁`'": 16218,
+ "▁obten": 16219,
+ "anst": 16220,
+ "▁Relig": 16221,
+ "▁trig": 16222,
+ "▁режи": 16223,
+ "▁Personal": 16224,
+ "▁tone": 16225,
+ "▁aid": 16226,
+ "Visual": 16227,
+ "Submit": 16228,
+ "▁moves": 16229,
+ "▁Bridge": 16230,
+ "▁Boy": 16231,
+ "▁accurate": 16232,
+ "osta": 16233,
+ "atto": 16234,
+ "▁defeated": 16235,
+ "▁datab": 16236,
+ "ginx": 16237,
+ "▁Liv": 16238,
+ "lywood": 16239,
+ "TW": 16240,
+ "rium": 16241,
+ "ipped": 16242,
+ "Fail": 16243,
+ "REQUEST": 16244,
+ "▁ignor": 16245,
+ "▁sitting": 16246,
+ "▁molto": 16247,
+ "▁endpoint": 16248,
+ "ución": 16249,
+ "▁collections": 16250,
+ "▁Ту": 16251,
+ "tembre": 16252,
+ "▁nécess": 16253,
+ "▁interact": 16254,
+ "▁otras": 16255,
+ "▁curr": 16256,
+ "▁tracks": 16257,
+ "▁família": 16258,
+ "▁numerical": 16259,
+ "legt": 16260,
+ "]/": 16261,
+ "▁Mario": 16262,
+ "▁tort": 16263,
+ "bg": 16264,
+ "ssl": 16265,
+ "texttt": 16266,
+ "▁spark": 16267,
+ "дии": 16268,
+ "▁probable": 16269,
+ "%%%%": 16270,
+ "phia": 16271,
+ "],[": 16272,
+ "▁boxes": 16273,
+ "▁academ": 16274,
+ "▁Slo": 16275,
+ "äude": 16276,
+ "▁witness": 16277,
+ "▁editing": 16278,
+ "лина": 16279,
+ "▁lookup": 16280,
+ "▁Buck": 16281,
+ "дня": 16282,
+ "▁jours": 16283,
+ "++){": 16284,
+ "▁indices": 16285,
+ "▁flight": 16286,
+ "▁computation": 16287,
+ "Plugin": 16288,
+ "▁realize": 16289,
+ "isset": 16290,
+ "▁derivative": 16291,
+ "linewidth": 16292,
+ "bund": 16293,
+ "▁thor": 16294,
+ "▁.=": 16295,
+ "▁sí": 16296,
+ "▁Click": 16297,
+ "▁Sebast": 16298,
+ ">'": 16299,
+ "havior": 16300,
+ "lei": 16301,
+ "ulf": 16302,
+ "▁geometry": 16303,
+ "prev": 16304,
+ "empl": 16305,
+ "▁Lé": 16306,
+ "anson": 16307,
+ "▁Alice": 16308,
+ "prototype": 16309,
+ "READ": 16310,
+ "icular": 16311,
+ "▁бі": 16312,
+ "▁deutsche": 16313,
+ "▁Represent": 16314,
+ "sites": 16315,
+ "▁Mean": 16316,
+ "▁diss": 16317,
+ "▁Zur": 16318,
+ "▁през": 16319,
+ "PAR": 16320,
+ "▁'#": 16321,
+ "▁Dra": 16322,
+ "сон": 16323,
+ "▁steht": 16324,
+ "markt": 16325,
+ "▁ease": 16326,
+ "Drawing": 16327,
+ "=%": 16328,
+ "Stop": 16329,
+ "▁serving": 16330,
+ "▁także": 16331,
+ "▁DNS": 16332,
+ "▁literal": 16333,
+ "Die": 16334,
+ "▁вос": 16335,
+ "▁senior": 16336,
+ "acion": 16337,
+ "▁ubuntu": 16338,
+ "▁Frankfurt": 16339,
+ "▁Sunday": 16340,
+ "áb": 16341,
+ "▁journey": 16342,
+ "issa": 16343,
+ "berry": 16344,
+ "▁sep": 16345,
+ "▁ion": 16346,
+ "wert": 16347,
+ "ország": 16348,
+ "serve": 16349,
+ "▁Milano": 16350,
+ "▁века": 16351,
+ "рах": 16352,
+ "▁июля": 16353,
+ "▁manera": 16354,
+ "▁stations": 16355,
+ "▁adopted": 16356,
+ "▁anybody": 16357,
+ "VERSION": 16358,
+ "FE": 16359,
+ "dorf": 16360,
+ "...,": 16361,
+ "▁образова": 16362,
+ "Logger": 16363,
+ "фициаль": 16364,
+ "WRITE": 16365,
+ "▁ham": 16366,
+ "▁Future": 16367,
+ "oten": 16368,
+ "▁AG": 16369,
+ "▁trained": 16370,
+ "▁Nich": 16371,
+ "▁university": 16372,
+ "▁Olympics": 16373,
+ "▁doit": 16374,
+ "▁cultural": 16375,
+ "Conf": 16376,
+ "▁Conference": 16377,
+ "orno": 16378,
+ "▁MP": 16379,
+ "▁bou": 16380,
+ "cin": 16381,
+ "High": 16382,
+ "annte": 16383,
+ "▁displaying": 16384,
+ "▁chapter": 16385,
+ "▁Frauen": 16386,
+ "▁realized": 16387,
+ "▁attempted": 16388,
+ "▁preferred": 16389,
+ "Dat": 16390,
+ "▁trouve": 16391,
+ "▁intention": 16392,
+ "▁Notice": 16393,
+ "timestamp": 16394,
+ "*(": 16395,
+ "▁Ша": 16396,
+ "anas": 16397,
+ "cla": 16398,
+ "isz": 16399,
+ "tbl": 16400,
+ "Arr": 16401,
+ "▁inverse": 16402,
+ "▁terrible": 16403,
+ "▁occupied": 16404,
+ "JAX": 16405,
+ "<-": 16406,
+ "▁Philosoph": 16407,
+ "▁Corps": 16408,
+ "builder": 16409,
+ "▁begins": 16410,
+ "▁census": 16411,
+ ".’": 16412,
+ "▁proven": 16413,
+ "metric": 16414,
+ "▁increases": 16415,
+ "wich": 16416,
+ "▁ABC": 16417,
+ "projects": 16418,
+ "▁Thor": 16419,
+ "▁confidence": 16420,
+ "▁ufficiale": 16421,
+ "elm": 16422,
+ "▁garden": 16423,
+ "▁robust": 16424,
+ "▁così": 16425,
+ "iedz": 16426,
+ "▁Islam": 16427,
+ "▁Address": 16428,
+ "▁divide": 16429,
+ "▁Eu": 16430,
+ "catal": 16431,
+ "detail": 16432,
+ "ependant": 16433,
+ "fg": 16434,
+ "▁bew": 16435,
+ "▁fis": 16436,
+ "▁BO": 16437,
+ "▁wsp": 16438,
+ "▁pipeline": 16439,
+ "hd": 16440,
+ "▁Session": 16441,
+ "länd": 16442,
+ "iveau": 16443,
+ "estr": 16444,
+ "▁particle": 16445,
+ "▁laravel": 16446,
+ "pic": 16447,
+ "▁nau": 16448,
+ "▁fins": 16449,
+ "▁Vil": 16450,
+ "▁fus": 16451,
+ "▁quasi": 16452,
+ "operation": 16453,
+ "▁aller": 16454,
+ "▁analy": 16455,
+ "▁Он": 16456,
+ "▁Mes": 16457,
+ "▁опера": 16458,
+ "▁handled": 16459,
+ "▁deprec": 16460,
+ "tto": 16461,
+ "▁Ek": 16462,
+ "▁stran": 16463,
+ "▁anglais": 16464,
+ "jure": 16465,
+ "▁Silver": 16466,
+ "▁closely": 16467,
+ "enkins": 16468,
+ "anos": 16469,
+ "sted": 16470,
+ "▁сентября": 16471,
+ "brand": 16472,
+ "ньо": 16473,
+ "▁présent": 16474,
+ "rok": 16475,
+ "mount": 16476,
+ "▁Anthony": 16477,
+ "▁Furthermore": 16478,
+ "inha": 16479,
+ "▁архи": 16480,
+ "▁разли": 16481,
+ "▁октября": 16482,
+ "▁pint": 16483,
+ "ný": 16484,
+ "pts": 16485,
+ "▁italien": 16486,
+ "▁реги": 16487,
+ "лез": 16488,
+ "дина": 16489,
+ "atherine": 16490,
+ "Internal": 16491,
+ "Question": 16492,
+ "▁settlement": 16493,
+ "▁Все": 16494,
+ "▁folders": 16495,
+ "дри": 16496,
+ "▁valor": 16497,
+ "▁Miller": 16498,
+ "▁Assert": 16499,
+ "▁patient": 16500,
+ "▁Nieder": 16501,
+ "▁EP": 16502,
+ "▁Agr": 16503,
+ "▁onde": 16504,
+ "▁scop": 16505,
+ "sequence": 16506,
+ "▁PL": 16507,
+ "▁seek": 16508,
+ "javase": 16509,
+ "▁Vector": 16510,
+ "▁ná": 16511,
+ "▁categoría": 16512,
+ "clone": 16513,
+ "NR": 16514,
+ "available": 16515,
+ "▁Besch": 16516,
+ "▁eclipse": 16517,
+ "wicklung": 16518,
+ "deploy": 16519,
+ "enie": 16520,
+ "▁\")": 16521,
+ "äst": 16522,
+ "▁sync": 16523,
+ "CODE": 16524,
+ "▁Че": 16525,
+ "▁floating": 16526,
+ "/`": 16527,
+ "▁retired": 16528,
+ "deb": 16529,
+ "▁particul": 16530,
+ "▁collected": 16531,
+ "▁downloaded": 16532,
+ "nice": 16533,
+ "▁Buffer": 16534,
+ "▁Account": 16535,
+ "▁maggio": 16536,
+ "▁реда": 16537,
+ "▁sales": 16538,
+ "▁statunitense": 16539,
+ "▁Ki": 16540,
+ "▁Ferr": 16541,
+ "Lock": 16542,
+ "▁Isabel": 16543,
+ "clar": 16544,
+ "▁pov": 16545,
+ "atra": 16546,
+ "▁Frau": 16547,
+ "▁sorting": 16548,
+ "▁phrase": 16549,
+ "▁апреля": 16550,
+ "▁деятель": 16551,
+ "▁André": 16552,
+ "definition": 16553,
+ "writing": 16554,
+ "éré": 16555,
+ "щу": 16556,
+ "▁Ord": 16557,
+ "▁rum": 16558,
+ "▁Turk": 16559,
+ "▁Ivan": 16560,
+ "theless": 16561,
+ "▁ги": 16562,
+ "▁sake": 16563,
+ "▁Based": 16564,
+ "deck": 16565,
+ "orus": 16566,
+ "▁tutti": 16567,
+ "▁blan": 16568,
+ "▁Пу": 16569,
+ "Detail": 16570,
+ "▁Но": 16571,
+ "▁Sky": 16572,
+ "▁près": 16573,
+ "мой": 16574,
+ "coln": 16575,
+ "ческой": 16576,
+ "eti": 16577,
+ "▁arrow": 16578,
+ "▁Cha": 16579,
+ "chmark": 16580,
+ "œur": 16581,
+ "fab": 16582,
+ "куль": 16583,
+ "GridView": 16584,
+ "▁Background": 16585,
+ "sn": 16586,
+ "▁seguito": 16587,
+ "▁nic": 16588,
+ "cou": 16589,
+ "тів": 16590,
+ "▁bzw": 16591,
+ "addEventListener": 16592,
+ "sync": 16593,
+ "azzo": 16594,
+ "abstract": 16595,
+ "assets": 16596,
+ "▁Dru": 16597,
+ "зд": 16598,
+ "ordnet": 16599,
+ "▁bigger": 16600,
+ "▁initialized": 16601,
+ "каз": 16602,
+ "ogene": 16603,
+ "viously": 16604,
+ "▁guid": 16605,
+ "scheidung": 16606,
+ "▁Zent": 16607,
+ "▁frames": 16608,
+ "rieben": 16609,
+ "▁issued": 16610,
+ "▁dow": 16611,
+ "▁describes": 16612,
+ "ilst": 16613,
+ "▁criteria": 16614,
+ "▁gentleman": 16615,
+ "Basic": 16616,
+ "nez": 16617,
+ "Dev": 16618,
+ "Move": 16619,
+ "▁estaba": 16620,
+ "▁settembre": 16621,
+ "circle": 16622,
+ "▁fais": 16623,
+ "▁myst": 16624,
+ "▁archiv": 16625,
+ "dynamic": 16626,
+ "jà": 16627,
+ "itas": 16628,
+ "▁який": 16629,
+ "▁dor": 16630,
+ "▁Amazon": 16631,
+ "▁neces": 16632,
+ "▁Marcel": 16633,
+ "▁ella": 16634,
+ "рок": 16635,
+ "▁Pennsylvania": 16636,
+ "cular": 16637,
+ "Pack": 16638,
+ "itage": 16639,
+ "▁Burn": 16640,
+ "▁RO": 16641,
+ "▁они": 16642,
+ "~$": 16643,
+ "TeX": 16644,
+ "assign": 16645,
+ "▁beat": 16646,
+ "idense": 16647,
+ "acent": 16648,
+ "Alert": 16649,
+ "▁strateg": 16650,
+ "▁månaden": 16651,
+ "LOC": 16652,
+ "▁catalog": 16653,
+ "printStackTrace": 16654,
+ "()).": 16655,
+ "usted": 16656,
+ "▁Framework": 16657,
+ "ECK": 16658,
+ "▁até": 16659,
+ "Framework": 16660,
+ "▁attacks": 16661,
+ "▁Bert": 16662,
+ "▁тран": 16663,
+ ":%": 16664,
+ "arsi": 16665,
+ "notation": 16666,
+ "▁logical": 16667,
+ "weet": 16668,
+ "▁visited": 16669,
+ "bru": 16670,
+ "▁surprise": 16671,
+ "^^": 16672,
+ "inale": 16673,
+ "remote": 16674,
+ "'},": 16675,
+ "Syntax": 16676,
+ "iane": 16677,
+ "onnen": 16678,
+ "▁breaking": 16679,
+ "parser": 16680,
+ "apk": 16681,
+ "▁Miguel": 16682,
+ "▁§": 16683,
+ "▁acting": 16684,
+ "▁gebru": 16685,
+ "AtIndex": 16686,
+ "ються": 16687,
+ "▁offers": 16688,
+ "▁prac": 16689,
+ "▁grant": 16690,
+ "ternoon": 16691,
+ "▁acquired": 16692,
+ "▁Ny": 16693,
+ "▁comma": 16694,
+ "ník": 16695,
+ "▁Step": 16696,
+ "inners": 16697,
+ "▁SA": 16698,
+ "▁wat": 16699,
+ "days": 16700,
+ "▁rectangle": 16701,
+ "dar": 16702,
+ "▁trac": 16703,
+ "▁Indones": 16704,
+ "▁feedback": 16705,
+ "▁breaks": 16706,
+ "partition": 16707,
+ "icans": 16708,
+ "▁Notices": 16709,
+ "▁improved": 16710,
+ "phan": 16711,
+ "▁differential": 16712,
+ "scripts": 16713,
+ "▁XIII": 16714,
+ "▁Labor": 16715,
+ "▁precision": 16716,
+ "▁seed": 16717,
+ "bundle": 16718,
+ "idents": 16719,
+ "hre": 16720,
+ "▁Douglas": 16721,
+ "uld": 16722,
+ "▁secondary": 16723,
+ "▁brig": 16724,
+ "▁confirmed": 16725,
+ "▁claims": 16726,
+ "Role": 16727,
+ "▁Jewish": 16728,
+ "▁před": 16729,
+ "▁hotel": 16730,
+ "▁compte": 16731,
+ "▁recursive": 16732,
+ "](#)": 16733,
+ "▁rotate": 16734,
+ "▁chrome": 16735,
+ "inea": 16736,
+ "%;\r": 16737,
+ "▁Environment": 16738,
+ "platz": 16739,
+ "▁Single": 16740,
+ "▁sevent": 16741,
+ "▁posting": 16742,
+ "▁dealing": 16743,
+ "parameters": 16744,
+ "граф": 16745,
+ "Authentication": 16746,
+ "touch": 16747,
+ "Az": 16748,
+ "▁gray": 16749,
+ "encing": 16750,
+ "boldmath": 16751,
+ "▁сайте": 16752,
+ "▁Za": 16753,
+ "anje": 16754,
+ "▁polar": 16755,
+ "▁ули": 16756,
+ "kil": 16757,
+ "▁hover": 16758,
+ "▁REST": 16759,
+ "▁Come": 16760,
+ "jb": 16761,
+ "▁Georgia": 16762,
+ "▁Estado": 16763,
+ "OutputStream": 16764,
+ "ћи": 16765,
+ "▁dump": 16766,
+ "▁Age": 16767,
+ "▁swo": 16768,
+ "mobile": 16769,
+ "occup": 16770,
+ "шего": 16771,
+ "▁constitution": 16772,
+ "good": 16773,
+ "aku": 16774,
+ "▁анг": 16775,
+ "ieck": 16776,
+ "▁Psych": 16777,
+ "▁roots": 16778,
+ "▁vest": 16779,
+ "▁годах": 16780,
+ "▁República": 16781,
+ "▁pian": 16782,
+ "igration": 16783,
+ "▁préc": 16784,
+ "▁generates": 16785,
+ "LY": 16786,
+ "(`": 16787,
+ "▁=~": 16788,
+ "шения": 16789,
+ "▁Rah": 16790,
+ "▁connecting": 16791,
+ "ží": 16792,
+ "▁fő": 16793,
+ "▁appel": 16794,
+ "▁Railway": 16795,
+ "гли": 16796,
+ "▁développ": 16797,
+ "▁apo": 16798,
+ "fran": 16799,
+ "▁immediate": 16800,
+ "вого": 16801,
+ "Runner": 16802,
+ "äg": 16803,
+ "Something": 16804,
+ "▁généra": 16805,
+ "EventArgs": 16806,
+ "inction": 16807,
+ "gly": 16808,
+ "▁Due": 16809,
+ "▁prost": 16810,
+ "▁referring": 16811,
+ "▁jog": 16812,
+ "▁executable": 16813,
+ "▁Dream": 16814,
+ "acs": 16815,
+ "▁Cole": 16816,
+ "ampf": 16817,
+ "▁Bis": 16818,
+ "▁июня": 16819,
+ "lieder": 16820,
+ "тек": 16821,
+ "▁vb": 16822,
+ "▁mom": 16823,
+ "▁:(": 16824,
+ "▁dernier": 16825,
+ "'=>": 16826,
+ "▁этого": 16827,
+ "▁neue": 16828,
+ "▁Ча": 16829,
+ "▁weitere": 16830,
+ "▁alleg": 16831,
+ "▁reality": 16832,
+ "▁judge": 16833,
+ "▁Balt": 16834,
+ "▁thin": 16835,
+ "▁Ged": 16836,
+ "ieval": 16837,
+ "mx": 16838,
+ "ціональ": 16839,
+ "▁выпу": 16840,
+ "▁IX": 16841,
+ "▁blind": 16842,
+ "▁Motor": 16843,
+ "▁ша": 16844,
+ "▁approximation": 16845,
+ "dam": 16846,
+ "▁fog": 16847,
+ "кор": 16848,
+ "▁Writ": 16849,
+ "▁ling": 16850,
+ "▁писа": 16851,
+ "▁Mars": 16852,
+ "otti": 16853,
+ "Enum": 16854,
+ "▁Trib": 16855,
+ "▁merc": 16856,
+ "zung": 16857,
+ "vanced": 16858,
+ "cfg": 16859,
+ "нах": 16860,
+ "schen": 16861,
+ "\"].": 16862,
+ "bek": 16863,
+ "▁ster": 16864,
+ "jp": 16865,
+ "▁Rap": 16866,
+ "▁recording": 16867,
+ "▁peint": 16868,
+ "▁lets": 16869,
+ "änge": 16870,
+ ">\";": 16871,
+ "▁місце": 16872,
+ "▁caval": 16873,
+ "▁CSV": 16874,
+ "▁entstand": 16875,
+ "▁helper": 16876,
+ "endet": 16877,
+ "▁Gram": 16878,
+ "▁Diego": 16879,
+ "▁Bishop": 16880,
+ "TAG": 16881,
+ "▁ecc": 16882,
+ "▁Een": 16883,
+ "▁AV": 16884,
+ "City": 16885,
+ "▁Guide": 16886,
+ "hind": 16887,
+ "rical": 16888,
+ "▁Основ": 16889,
+ "Bus": 16890,
+ "▁zunächst": 16891,
+ "▁tick": 16892,
+ "▁Colonel": 16893,
+ "Thanks": 16894,
+ "▁ferm": 16895,
+ "▁granted": 16896,
+ "▁threshold": 16897,
+ "omorphic": 16898,
+ "▁Hun": 16899,
+ "enis": 16900,
+ "▁прав": 16901,
+ "▁які": 16902,
+ "PG": 16903,
+ "▁ws": 16904,
+ "▁technical": 16905,
+ "estro": 16906,
+ "klär": 16907,
+ "vars": 16908,
+ "ocrat": 16909,
+ "▁општи": 16910,
+ "onso": 16911,
+ "iba": 16912,
+ "▁Save": 16913,
+ "▁programa": 16914,
+ "▁въ": 16915,
+ "▁invån": 16916,
+ ">()": 16917,
+ "▁mejor": 16918,
+ "▁слова": 16919,
+ "▁replacement": 16920,
+ "▁impr": 16921,
+ "▁Francesco": 16922,
+ "▁Hotel": 16923,
+ "▁UPDATE": 16924,
+ "▁музы": 16925,
+ "ugs": 16926,
+ "vard": 16927,
+ "▁faz": 16928,
+ "inton": 16929,
+ "▁arts": 16930,
+ "▁Ky": 16931,
+ "▁Ils": 16932,
+ "▁sera": 16933,
+ "▁Volume": 16934,
+ "▁giugno": 16935,
+ "▁asym": 16936,
+ "▁Pir": 16937,
+ "▁NAS": 16938,
+ "▁Tam": 16939,
+ "ěl": 16940,
+ "Sequ": 16941,
+ "kmal": 16942,
+ "▁Eins": 16943,
+ "▁компа": 16944,
+ "obe": 16945,
+ "oor": 16946,
+ "▁heap": 16947,
+ "ctl": 16948,
+ "▁separately": 16949,
+ "reader": 16950,
+ "▁significantly": 16951,
+ "▁Lag": 16952,
+ "notes": 16953,
+ "▁sele": 16954,
+ "▁dedicated": 16955,
+ "▁Host": 16956,
+ "choice": 16957,
+ "wing": 16958,
+ "▁Titel": 16959,
+ "▁befindet": 16960,
+ "large": 16961,
+ "▁conten": 16962,
+ "JavaScript": 16963,
+ "▁deser": 16964,
+ "▁Gordon": 16965,
+ "спе": 16966,
+ "▁patri": 16967,
+ "▁Random": 16968,
+ "▁Returns": 16969,
+ "ым": 16970,
+ "рома": 16971,
+ "▁Studies": 16972,
+ "Sl": 16973,
+ "▁frü": 16974,
+ "TEXT": 16975,
+ "inate": 16976,
+ "▁Tol": 16977,
+ "▁everywhere": 16978,
+ "arta": 16979,
+ "▁orbit": 16980,
+ "▁Aires": 16981,
+ "▁Iss": 16982,
+ "▁też": 16983,
+ "▁diverse": 16984,
+ "▁numeric": 16985,
+ "maz": 16986,
+ "▁mise": 16987,
+ "▁battery": 16988,
+ "▁Akadem": 16989,
+ "нение": 16990,
+ "▁simultane": 16991,
+ "▁Dead": 16992,
+ "▁clust": 16993,
+ "▁otro": 16994,
+ "▁cerca": 16995,
+ "()`,": 16996,
+ "roz": 16997,
+ "ăt": 16998,
+ "▁MO": 16999,
+ "riften": 17000,
+ "important": 17001,
+ "▁jeho": 17002,
+ "▁findViewById": 17003,
+ "▁consequence": 17004,
+ "▁measured": 17005,
+ "ishes": 17006,
+ "▁sze": 17007,
+ "iendo": 17008,
+ "▁Wahl": 17009,
+ "strip": 17010,
+ "ARD": 17011,
+ "▁opacity": 17012,
+ "WORD": 17013,
+ "▁Ві": 17014,
+ "▁Location": 17015,
+ "rai": 17016,
+ "пен": 17017,
+ "▁rif": 17018,
+ "aussian": 17019,
+ "FileName": 17020,
+ "▁disco": 17021,
+ "ilen": 17022,
+ "▁vagy": 17023,
+ "licity": 17024,
+ "Border": 17025,
+ "▁Track": 17026,
+ "бом": 17027,
+ "fact": 17028,
+ "oka": 17029,
+ "▁gior": 17030,
+ "▁XVII": 17031,
+ "▁där": 17032,
+ "Site": 17033,
+ "ało": 17034,
+ "ská": 17035,
+ "▁pixels": 17036,
+ "vity": 17037,
+ "jQuery": 17038,
+ "▁sculpt": 17039,
+ "▁cargo": 17040,
+ "▁directive": 17041,
+ "▁wal": 17042,
+ "▁conna": 17043,
+ "▁Through": 17044,
+ "▁этом": 17045,
+ "Static": 17046,
+ "omsnitt": 17047,
+ "▁rund": 17048,
+ "▁claimed": 17049,
+ "зня": 17050,
+ "sha": 17051,
+ "▁rag": 17052,
+ "crement": 17053,
+ "▁fünf": 17054,
+ "▁rival": 17055,
+ "rin": 17056,
+ "slash": 17057,
+ "▁thirty": 17058,
+ "sleep": 17059,
+ "ологи": 17060,
+ "SM": 17061,
+ "gate": 17062,
+ "izations": 17063,
+ "vik": 17064,
+ "▁bless": 17065,
+ "▁Illinois": 17066,
+ "▁TE": 17067,
+ "uting": 17068,
+ "▁solving": 17069,
+ "GER": 17070,
+ "▁XIV": 17071,
+ "▁Indians": 17072,
+ "express": 17073,
+ "▁Heil": 17074,
+ "▁mujer": 17075,
+ "▁invånare": 17076,
+ "']);": 17077,
+ "▁aur": 17078,
+ "boost": 17079,
+ "GO": 17080,
+ "▁nin": 17081,
+ "tok": 17082,
+ "god": 17083,
+ "oter": 17084,
+ ")$$": 17085,
+ "▁descend": 17086,
+ "рю": 17087,
+ "▁Language": 17088,
+ "▁diver": 17089,
+ "▁Assuming": 17090,
+ "▁frequent": 17091,
+ "чні": 17092,
+ "▁Biography": 17093,
+ ",[": 17094,
+ "urm": 17095,
+ "▁walked": 17096,
+ "▁federal": 17097,
+ "▁Michigan": 17098,
+ "▁facts": 17099,
+ "▁Integr": 17100,
+ "LES": 17101,
+ "▁Alan": 17102,
+ "▁coup": 17103,
+ "Ber": 17104,
+ "▁particles": 17105,
+ "ће": 17106,
+ "Inflater": 17107,
+ "+(": 17108,
+ "Bound": 17109,
+ "▁Sü": 17110,
+ "Audio": 17111,
+ "citet": 17112,
+ "yect": 17113,
+ "▁nr": 17114,
+ "xe": 17115,
+ "▁Brun": 17116,
+ "▁_,": 17117,
+ "avor": 17118,
+ "▁discipl": 17119,
+ "alm": 17120,
+ "▁ноября": 17121,
+ "▁SSL": 17122,
+ "▁Kaiser": 17123,
+ "▁recher": 17124,
+ "ygon": 17125,
+ "▁regardless": 17126,
+ "▁configur": 17127,
+ "▁unnecess": 17128,
+ "▁Clark": 17129,
+ "PHP": 17130,
+ "▁FALSE": 17131,
+ "▁pad": 17132,
+ "$}": 17133,
+ "▁valu": 17134,
+ "▁disease": 17135,
+ "▁maior": 17136,
+ "▁hommes": 17137,
+ "▁Edition": 17138,
+ "slant": 17139,
+ "▁ending": 17140,
+ "▁settled": 17141,
+ "urus": 17142,
+ "hed": 17143,
+ "Pattern": 17144,
+ "▁година": 17145,
+ "▁Philadel": 17146,
+ "tikzpicture": 17147,
+ "▁coal": 17148,
+ "▁sede": 17149,
+ "▁satisfies": 17150,
+ "▁trim": 17151,
+ "▁bat": 17152,
+ "▁américain": 17153,
+ "▁luglio": 17154,
+ "▁поча": 17155,
+ "ffff": 17156,
+ "▁Target": 17157,
+ "generate": 17158,
+ "▁Zie": 17159,
+ "ția": 17160,
+ "▁gard": 17161,
+ "▁workers": 17162,
+ "▁Job": 17163,
+ "▁urban": 17164,
+ "ahlen": 17165,
+ "▁Building": 17166,
+ "▁neu": 17167,
+ "▁chron": 17168,
+ "▁Earl": 17169,
+ "gro": 17170,
+ "USE": 17171,
+ "▁XII": 17172,
+ "▁wealth": 17173,
+ "inae": 17174,
+ "▁Бра": 17175,
+ "▁libert": 17176,
+ "iros": 17177,
+ ":$": 17178,
+ "lee": 17179,
+ "ieves": 17180,
+ "▁Justice": 17181,
+ "▁oil": 17182,
+ "▁Athlet": 17183,
+ "▁clo": 17184,
+ "Scale": 17185,
+ "▁lips": 17186,
+ "▁april": 17187,
+ "▁impression": 17188,
+ "▁perce": 17189,
+ "▁участи": 17190,
+ "vil": 17191,
+ "éch": 17192,
+ "▁equality": 17193,
+ "▁мет": 17194,
+ "▁annotation": 17195,
+ "ernal": 17196,
+ "▁Mach": 17197,
+ "▁intitul": 17198,
+ "problem": 17199,
+ "ющих": 17200,
+ "oplus": 17201,
+ "▁thousands": 17202,
+ "▁calculations": 17203,
+ "umps": 17204,
+ "▁triangle": 17205,
+ "phal": 17206,
+ "▁Dorf": 17207,
+ "▁dollars": 17208,
+ "▁denen": 17209,
+ "lès": 17210,
+ "olid": 17211,
+ "▁Results": 17212,
+ "▁Stadium": 17213,
+ "▁Desp": 17214,
+ "▁Eisen": 17215,
+ "imir": 17216,
+ "▁sotto": 17217,
+ "▁či": 17218,
+ "atable": 17219,
+ "orum": 17220,
+ "▁convergence": 17221,
+ "▁jeune": 17222,
+ "oking": 17223,
+ "▁живо": 17224,
+ "aining": 17225,
+ "pointer": 17226,
+ "culo": 17227,
+ "▁jsou": 17228,
+ "▁grab": 17229,
+ "akte": 17230,
+ "▁hoping": 17231,
+ "▁Mak": 17232,
+ "▁sag": 17233,
+ "origine": 17234,
+ "▁послед": 17235,
+ "▁Veg": 17236,
+ "▁theoret": 17237,
+ "▁Tru": 17238,
+ "nement": 17239,
+ "▁faces": 17240,
+ "Hor": 17241,
+ "Join": 17242,
+ "arel": 17243,
+ "▁около": 17244,
+ "However": 17245,
+ "▁catal": 17246,
+ "bourg": 17247,
+ "▁mysqli": 17248,
+ "acions": 17249,
+ "▁Initial": 17250,
+ "▁rain": 17251,
+ "iture": 17252,
+ "▁Sciences": 17253,
+ "▁Kreis": 17254,
+ ".__": 17255,
+ "▁cinq": 17256,
+ "▁Auß": 17257,
+ "ithmet": 17258,
+ "itors": 17259,
+ "amazon": 17260,
+ "▁gap": 17261,
+ "▁ignored": 17262,
+ "adv": 17263,
+ "кої": 17264,
+ "▁часть": 17265,
+ "▁corpor": 17266,
+ "цер": 17267,
+ "▁crime": 17268,
+ "uous": 17269,
+ "▁налази": 17270,
+ "DataFrame": 17271,
+ "води": 17272,
+ "Ign": 17273,
+ "▁Lincoln": 17274,
+ "▁menos": 17275,
+ "▁Luft": 17276,
+ "▁Lind": 17277,
+ "▁Cook": 17278,
+ "▁materials": 17279,
+ "apped": 17280,
+ "ignore": 17281,
+ "▁откры": 17282,
+ "fried": 17283,
+ "▁gouvernement": 17284,
+ "▁fired": 17285,
+ "▁screenshot": 17286,
+ "сен": 17287,
+ "▁[(": 17288,
+ "▁организа": 17289,
+ "Graphics": 17290,
+ "▁проти": 17291,
+ "▁phen": 17292,
+ "craft": 17293,
+ "▁brain": 17294,
+ "▁Como": 17295,
+ "▁Everything": 17296,
+ "anes": 17297,
+ "IGN": 17298,
+ "▁nederbörd": 17299,
+ "▁Forest": 17300,
+ "zahl": 17301,
+ "▁Among": 17302,
+ "Qt": 17303,
+ "▁togg": 17304,
+ "▁variant": 17305,
+ "▁hill": 17306,
+ "писи": 17307,
+ "colon": 17308,
+ "▁dicembre": 17309,
+ "гор": 17310,
+ "▁Wind": 17311,
+ "ünstler": 17312,
+ "▁=\\": 17313,
+ "saved": 17314,
+ "▁nej": 17315,
+ "unte": 17316,
+ "utto": 17317,
+ "▁recens": 17318,
+ "▁sick": 17319,
+ "▁desen": 17320,
+ "UST": 17321,
+ "▁worst": 17322,
+ "▁Angel": 17323,
+ "odox": 17324,
+ "▁Province": 17325,
+ "▁Maz": 17326,
+ "▁agreement": 17327,
+ "▁Bass": 17328,
+ "▁segunda": 17329,
+ "onces": 17330,
+ "▁Linki": 17331,
+ "▁CL": 17332,
+ "▁já": 17333,
+ "itement": 17334,
+ "▁área": 17335,
+ "▁scalar": 17336,
+ "▁Рес": 17337,
+ "awt": 17338,
+ "sieme": 17339,
+ "▁juni": 17340,
+ "▁худож": 17341,
+ "ikus": 17342,
+ "▁lid": 17343,
+ "ppel": 17344,
+ "avi": 17345,
+ "▁balance": 17346,
+ "ipping": 17347,
+ "cussion": 17348,
+ "ческих": 17349,
+ "(\".": 17350,
+ "Also": 17351,
+ "▁whis": 17352,
+ "HOME": 17353,
+ "▁brown": 17354,
+ "▁día": 17355,
+ "▁può": 17356,
+ "plotlib": 17357,
+ "▁Jahrhunderts": 17358,
+ "DK": 17359,
+ "▁anchor": 17360,
+ "...]": 17361,
+ "▁Austria": 17362,
+ "▁marca": 17363,
+ "▁gez": 17364,
+ "iously": 17365,
+ "▁lazy": 17366,
+ "xa": 17367,
+ "▁Channel": 17368,
+ "▁neuen": 17369,
+ "das": 17370,
+ "▁searched": 17371,
+ "▁staat": 17372,
+ "▁Так": 17373,
+ "▁Josef": 17374,
+ "▁Sher": 17375,
+ "pois": 17376,
+ "▁enem": 17377,
+ "▁accessing": 17378,
+ "▁неко": 17379,
+ "▁furono": 17380,
+ "▁pseudo": 17381,
+ "?>": 17382,
+ "▁estadoun": 17383,
+ "▁Види": 17384,
+ "▁motiv": 17385,
+ "▁recall": 17386,
+ "isson": 17387,
+ "ób": 17388,
+ ")--": 17389,
+ "▁Erz": 17390,
+ "▁савез": 17391,
+ "Direct": 17392,
+ "соб": 17393,
+ "▁sho": 17394,
+ "völker": 17395,
+ "Ap": 17396,
+ "gens": 17397,
+ "ништво": 17398,
+ "▁Amsterdam": 17399,
+ "usk": 17400,
+ "пло": 17401,
+ "▁simulation": 17402,
+ "▁BC": 17403,
+ "▁Woj": 17404,
+ "autom": 17405,
+ "Alex": 17406,
+ "▁economic": 17407,
+ "гом": 17408,
+ "ikai": 17409,
+ "▁altre": 17410,
+ "▁'-": 17411,
+ "▁Weg": 17412,
+ "NotFound": 17413,
+ "йской": 17414,
+ "▁converting": 17415,
+ "phabet": 17416,
+ "atrice": 17417,
+ "bourne": 17418,
+ "alom": 17419,
+ "▁comparing": 17420,
+ "▁Zo": 17421,
+ "▁fla": 17422,
+ "вая": 17423,
+ "▁entra": 17424,
+ "▁charset": 17425,
+ "developers": 17426,
+ "ística": 17427,
+ "}>": 17428,
+ "▁Jazz": 17429,
+ "▁Howard": 17430,
+ "шта": 17431,
+ "▁clone": 17432,
+ "door": 17433,
+ "▁Pin": 17434,
+ "***": 17435,
+ "▁silent": 17436,
+ "ecycle": 17437,
+ "isce": 17438,
+ "▁mud": 17439,
+ "▁Display": 17440,
+ "▁lip": 17441,
+ "▁использова": 17442,
+ "▁characteristic": 17443,
+ "▁sb": 17444,
+ "firebase": 17445,
+ "▁Bew": 17446,
+ "Calendar": 17447,
+ "▁uso": 17448,
+ "èse": 17449,
+ "▁Rat": 17450,
+ "▁esper": 17451,
+ "▁throwing": 17452,
+ "▁rodz": 17453,
+ "▁yards": 17454,
+ "▁grass": 17455,
+ "▁marker": 17456,
+ "▁Kos": 17457,
+ "Theta": 17458,
+ "▁organis": 17459,
+ "kernel": 17460,
+ "▁personas": 17461,
+ "keep": 17462,
+ "▁exclaimed": 17463,
+ "oslav": 17464,
+ "▁Entertain": 17465,
+ "нер": 17466,
+ "▁inwon": 17467,
+ "▁Rand": 17468,
+ "reduce": 17469,
+ "fac": 17470,
+ "expression": 17471,
+ "yj": 17472,
+ "▁differenti": 17473,
+ "aglia": 17474,
+ "▁templates": 17475,
+ "▁mű": 17476,
+ "▁prv": 17477,
+ "▁mois": 17478,
+ "▁gewann": 17479,
+ "▁була": 17480,
+ "bibli": 17481,
+ "demo": 17482,
+ "▁Anderson": 17483,
+ "▁ред": 17484,
+ "▁porque": 17485,
+ "▁Pologne": 17486,
+ "▁trip": 17487,
+ "▁exemple": 17488,
+ "▁Internacional": 17489,
+ "▁као": 17490,
+ "Insert": 17491,
+ "general": 17492,
+ "SESSION": 17493,
+ "berga": 17494,
+ "hält": 17495,
+ "unas": 17496,
+ "мира": 17497,
+ "▁yields": 17498,
+ "mapsto": 17499,
+ "spot": 17500,
+ "▁+\\": 17501,
+ "лла": 17502,
+ "▁precisely": 17503,
+ "▁член": 17504,
+ "shadow": 17505,
+ "Are": 17506,
+ "unal": 17507,
+ "▁dispar": 17508,
+ "▁título": 17509,
+ "nest": 17510,
+ "▁Low": 17511,
+ "▁prot": 17512,
+ "▁Costa": 17513,
+ "named": 17514,
+ "▁gained": 17515,
+ "lesia": 17516,
+ "▁administration": 17517,
+ "Import": 17518,
+ "branch": 17519,
+ "▁sympath": 17520,
+ "voj": 17521,
+ "▁EC": 17522,
+ "▁municipio": 17523,
+ "▁animated": 17524,
+ "▁directories": 17525,
+ "▁roof": 17526,
+ "ząd": 17527,
+ "imet": 17528,
+ "proto": 17529,
+ "bla": 17530,
+ ":]": 17531,
+ "have": 17532,
+ "atem": 17533,
+ "▁ns": 17534,
+ "▁sector": 17535,
+ "three": 17536,
+ "owane": 17537,
+ "wers": 17538,
+ "ових": 17539,
+ "rence": 17540,
+ "▁extr": 17541,
+ "igten": 17542,
+ "▁occident": 17543,
+ "ță": 17544,
+ "▁eat": 17545,
+ "▁hydro": 17546,
+ "ubernetes": 17547,
+ "[@": 17548,
+ "▁Moon": 17549,
+ "▁Sho": 17550,
+ "▁elsewhere": 17551,
+ "üller": 17552,
+ "Upload": 17553,
+ "ланд": 17554,
+ "▁För": 17555,
+ "wissenschaft": 17556,
+ "KS": 17557,
+ "▁physics": 17558,
+ "tz": 17559,
+ "▁серед": 17560,
+ "▁Arbeit": 17561,
+ "▁мест": 17562,
+ "▁Gebiet": 17563,
+ "▁insect": 17564,
+ "Ah": 17565,
+ "izado": 17566,
+ "▁temple": 17567,
+ "▁annual": 17568,
+ "stad": 17569,
+ "▁habitat": 17570,
+ "▁AB": 17571,
+ "wort": 17572,
+ "▁repos": 17573,
+ "▁Neu": 17574,
+ "▁$(\".": 17575,
+ "Vorlage": 17576,
+ "▁reprezent": 17577,
+ "estanden": 17578,
+ "Intern": 17579,
+ ".`": 17580,
+ "▁failing": 17581,
+ "▁Material": 17582,
+ "▁effectively": 17583,
+ "телем": 17584,
+ "▁гла": 17585,
+ "▁nahm": 17586,
+ "▁differently": 17587,
+ "extension": 17588,
+ "▁Verm": 17589,
+ "enabled": 17590,
+ "configure": 17591,
+ "nio": 17592,
+ "ciones": 17593,
+ "▁Beach": 17594,
+ "сона": 17595,
+ "▁copying": 17596,
+ "▁україн": 17597,
+ "▁призна": 17598,
+ "zh": 17599,
+ "Desktop": 17600,
+ "▁sost": 17601,
+ "▁subsequently": 17602,
+ "▁Lehr": 17603,
+ "▁ó": 17604,
+ "lär": 17605,
+ "odor": 17606,
+ "phon": 17607,
+ "nc": 17608,
+ "iterator": 17609,
+ "▁эти": 17610,
+ "▁europé": 17611,
+ "▁Toronto": 17612,
+ "ódigo": 17613,
+ "▁posto": 17614,
+ "ffe": 17615,
+ "▁crew": 17616,
+ "▁Schwar": 17617,
+ "Sa": 17618,
+ "square": 17619,
+ "▁beside": 17620,
+ "▁Мі": 17621,
+ "▁ath": 17622,
+ "▁advent": 17623,
+ "cji": 17624,
+ "written": 17625,
+ "▁russ": 17626,
+ "rost": 17627,
+ "HI": 17628,
+ "▁dice": 17629,
+ "cca": 17630,
+ "▁dép": 17631,
+ "ply": 17632,
+ "bigg": 17633,
+ "ział": 17634,
+ "ütt": 17635,
+ "▁одно": 17636,
+ "JECT": 17637,
+ "ському": 17638,
+ "nos": 17639,
+ "mock": 17640,
+ "Launch": 17641,
+ "same": 17642,
+ "▁jobs": 17643,
+ "▁widely": 17644,
+ "▁defines": 17645,
+ "▁Pse": 17646,
+ "▁neighbour": 17647,
+ "ющие": 17648,
+ "▁closer": 17649,
+ "▁располо": 17650,
+ "▁clubs": 17651,
+ "fly": 17652,
+ "шим": 17653,
+ "▁suffered": 17654,
+ "▁nar": 17655,
+ "▁lavor": 17656,
+ "Extension": 17657,
+ "itionally": 17658,
+ "▁grace": 17659,
+ "▁Campeonato": 17660,
+ "▁Christmas": 17661,
+ "middle": 17662,
+ "othek": 17663,
+ "elements": 17664,
+ "▁sondern": 17665,
+ "▁tarde": 17666,
+ "▁permanent": 17667,
+ "▁conclude": 17668,
+ "Seg": 17669,
+ "▁акаде": 17670,
+ "}\",": 17671,
+ "▁февраля": 17672,
+ "řed": 17673,
+ "▁IL": 17674,
+ "jud": 17675,
+ "▁USS": 17676,
+ "▁Nature": 17677,
+ "ifference": 17678,
+ "Serializer": 17679,
+ "▁twelve": 17680,
+ "tid": 17681,
+ "мия": 17682,
+ "ческого": 17683,
+ "▁calendar": 17684,
+ "concat": 17685,
+ "▁intersection": 17686,
+ "▁PA": 17687,
+ "azure": 17688,
+ "▁située": 17689,
+ "▁kinds": 17690,
+ "▁ausge": 17691,
+ "▁rural": 17692,
+ "Theme": 17693,
+ "▁tale": 17694,
+ "noindent": 17695,
+ "going": 17696,
+ "rx": 17697,
+ "agi": 17698,
+ "wrapper": 17699,
+ "▁Coast": 17700,
+ "mbH": 17701,
+ "▁перед": 17702,
+ "spre": 17703,
+ "▁}\\": 17704,
+ "▁LI": 17705,
+ "znam": 17706,
+ "itled": 17707,
+ "Sample": 17708,
+ "uliar": 17709,
+ "*\\": 17710,
+ "▁resistance": 17711,
+ "stock": 17712,
+ "ked": 17713,
+ "▁HE": 17714,
+ "▁possession": 17715,
+ "▁Ring": 17716,
+ "▁magyar": 17717,
+ "outs": 17718,
+ "▁Secretary": 17719,
+ "nde": 17720,
+ "▁Wald": 17721,
+ "-(": 17722,
+ "▁ISO": 17723,
+ "▁afternoon": 17724,
+ "ionen": 17725,
+ "▁stops": 17726,
+ "▁constants": 17727,
+ "guard": 17728,
+ "bow": 17729,
+ "▁ers": 17730,
+ "▁Firebase": 17731,
+ "▁Clear": 17732,
+ "▁Holy": 17733,
+ "Win": 17734,
+ "▁titles": 17735,
+ "▁трав": 17736,
+ "▁contrib": 17737,
+ "häng": 17738,
+ "▁photograph": 17739,
+ "▁Distribution": 17740,
+ "ifts": 17741,
+ "▁aunque": 17742,
+ "comb": 17743,
+ "ADD": 17744,
+ "▁publication": 17745,
+ "▁служ": 17746,
+ "▁кня": 17747,
+ "▁ayant": 17748,
+ "▁restore": 17749,
+ "▁belief": 17750,
+ "▁vég": 17751,
+ "▁extensions": 17752,
+ "▁decom": 17753,
+ "вший": 17754,
+ "WT": 17755,
+ "▁parti": 17756,
+ "▁gioc": 17757,
+ "▁мира": 17758,
+ "▁issu": 17759,
+ "pipe": 17760,
+ "▁props": 17761,
+ "▁willing": 17762,
+ "▁nest": 17763,
+ "aso": 17764,
+ "pot": 17765,
+ "▁handles": 17766,
+ "▁фо": 17767,
+ "▁moder": 17768,
+ "▁ebenfalls": 17769,
+ "▁fighting": 17770,
+ "umbn": 17771,
+ "▁transparent": 17772,
+ "▁Krist": 17773,
+ "▁homes": 17774,
+ "▁voyage": 17775,
+ "Failed": 17776,
+ "▁Bird": 17777,
+ "▁Heart": 17778,
+ "Counter": 17779,
+ "▁Scottish": 17780,
+ "ática": 17781,
+ "▁arbeit": 17782,
+ "^{-\\": 17783,
+ "▁Sor": 17784,
+ "▁engaged": 17785,
+ "▁aside": 17786,
+ "▁Fou": 17787,
+ "▁wiel": 17788,
+ "▁reconst": 17789,
+ "ousin": 17790,
+ "▁hosted": 17791,
+ "▁classe": 17792,
+ "▁contest": 17793,
+ "...\"": 17794,
+ "мом": 17795,
+ "▁bean": 17796,
+ "gem": 17797,
+ "▁consultato": 17798,
+ "▁bio": 17799,
+ "▁subjects": 17800,
+ "boBox": 17801,
+ "▁Schrift": 17802,
+ "▁dinner": 17803,
+ "ăr": 17804,
+ "▁równ": 17805,
+ "▁%%": 17806,
+ "bage": 17807,
+ "▁veröff": 17808,
+ "▁detected": 17809,
+ "ienn": 17810,
+ "rose": 17811,
+ "▁Ton": 17812,
+ "Complete": 17813,
+ "▁proto": 17814,
+ "ichts": 17815,
+ "STAT": 17816,
+ "Checked": 17817,
+ "▁inten": 17818,
+ "▁smile": 17819,
+ "▁strip": 17820,
+ "neut": 17821,
+ "');\r": 17822,
+ "four": 17823,
+ "▁todas": 17824,
+ "Controls": 17825,
+ "▁thorough": 17826,
+ "rup": 17827,
+ "▁држави": 17828,
+ "ită": 17829,
+ "Protocol": 17830,
+ "Ка": 17831,
+ "▁expanded": 17832,
+ "extra": 17833,
+ "oport": 17834,
+ "▁Станов": 17835,
+ "leases": 17836,
+ "▁notion": 17837,
+ "▁guest": 17838,
+ "▁Islands": 17839,
+ "icked": 17840,
+ "▁Dave": 17841,
+ "▁reflection": 17842,
+ "liv": 17843,
+ "ální": 17844,
+ "▁revealed": 17845,
+ "▁sog": 17846,
+ "▁Tax": 17847,
+ "▁periodo": 17848,
+ "▁Weltkrie": 17849,
+ "catalina": 17850,
+ "qué": 17851,
+ "▁Father": 17852,
+ "▁Bir": 17853,
+ "expect": 17854,
+ "▁regression": 17855,
+ "iné": 17856,
+ "▁dabei": 17857,
+ "perm": 17858,
+ "мене": 17859,
+ "▁Abd": 17860,
+ "▁CF": 17861,
+ "arks": 17862,
+ "resolve": 17863,
+ "wedge": 17864,
+ "▁initialization": 17865,
+ "▁Véase": 17866,
+ "▁приня": 17867,
+ "stmt": 17868,
+ "▁income": 17869,
+ "MY": 17870,
+ "▁odkazy": 17871,
+ "▁Siehe": 17872,
+ "▁bodies": 17873,
+ "▁soc": 17874,
+ "Random": 17875,
+ "▁senza": 17876,
+ "ablo": 17877,
+ "▁regarded": 17878,
+ "onCreate": 17879,
+ "▁Magazine": 17880,
+ "▁Raf": 17881,
+ "▁Buenos": 17882,
+ "ил": 17883,
+ ")));": 17884,
+ "capt": 17885,
+ "redirect": 17886,
+ "▁petit": 17887,
+ "▁farm": 17888,
+ "▁rôle": 17889,
+ "▁статьи": 17890,
+ " ": 17891,
+ "subfigure": 17892,
+ "èces": 17893,
+ "ziel": 17894,
+ "▁окон": 17895,
+ "EE": 17896,
+ "mee": 17897,
+ "▁perten": 17898,
+ "▁représent": 17899,
+ "▁LA": 17900,
+ "?'": 17901,
+ "▁тру": 17902,
+ "▁rational": 17903,
+ "osof": 17904,
+ "▁kne": 17905,
+ "▁artists": 17906,
+ "Flow": 17907,
+ "▁Аль": 17908,
+ "izard": 17909,
+ "▁numero": 17910,
+ "actic": 17911,
+ "▁destruct": 17912,
+ "▁Пра": 17913,
+ "onsieur": 17914,
+ "qt": 17915,
+ "abestanden": 17916,
+ "ność": 17917,
+ "Connect": 17918,
+ "▁oracle": 17919,
+ "▁Stockholm": 17920,
+ "sizeof": 17921,
+ "▁gemäß": 17922,
+ "ACT": 17923,
+ "▁expert": 17924,
+ "utions": 17925,
+ "▁hacia": 17926,
+ "▁logger": 17927,
+ "▁fool": 17928,
+ "rypto": 17929,
+ "ær": 17930,
+ "▁cidade": 17931,
+ "▁составе": 17932,
+ "oker": 17933,
+ "▁Transfer": 17934,
+ "▁denied": 17935,
+ "Track": 17936,
+ "▁radi": 17937,
+ "zec": 17938,
+ "▁Historic": 17939,
+ "▁Einwohner": 17940,
+ "кою": 17941,
+ "▁хра": 17942,
+ "▁Category": 17943,
+ "▁Disney": 17944,
+ "▁swap": 17945,
+ "Begin": 17946,
+ "▁mientras": 17947,
+ "▁dance": 17948,
+ "▁tête": 17949,
+ "▁droit": 17950,
+ "erta": 17951,
+ "▁birds": 17952,
+ "▁convin": 17953,
+ "parator": 17954,
+ "дра": 17955,
+ "▁ES": 17956,
+ "▁Ressources": 17957,
+ "EGIN": 17958,
+ "ücke": 17959,
+ "▁Cruz": 17960,
+ "abling": 17961,
+ "▁\"@": 17962,
+ "▁metres": 17963,
+ "▁Beg": 17964,
+ "▁Gründ": 17965,
+ "▁Boh": 17966,
+ "▁mile": 17967,
+ "▁Technology": 17968,
+ "\"+": 17969,
+ "acco": 17970,
+ "▁ss": 17971,
+ "▁Fed": 17972,
+ "▁Hend": 17973,
+ "usch": 17974,
+ "itä": 17975,
+ "folk": 17976,
+ "▁absor": 17977,
+ "antal": 17978,
+ "odge": 17979,
+ "▁WHEN": 17980,
+ "▁Externí": 17981,
+ "▁Regiment": 17982,
+ "▁evaluation": 17983,
+ "▁Tai": 17984,
+ "▁vocals": 17985,
+ "▁experimental": 17986,
+ "embed": 17987,
+ "▁Minn": 17988,
+ "▁вме": 17989,
+ "prec": 17990,
+ "every": 17991,
+ "▁hoof": 17992,
+ "▁Fernando": 17993,
+ "▁Bibliographie": 17994,
+ "▁nag": 17995,
+ "amerikanischer": 17996,
+ "▁marks": 17997,
+ "▁UTC": 17998,
+ "▁uncertain": 17999,
+ "дия": 18000,
+ "olia": 18001,
+ "▁cup": 18002,
+ "▁fille": 18003,
+ "▁dok": 18004,
+ "useppe": 18005,
+ "esterd": 18006,
+ "▁Brand": 18007,
+ "▁Third": 18008,
+ "PP": 18009,
+ "nodes": 18010,
+ "▁Pad": 18011,
+ "▁loved": 18012,
+ "swing": 18013,
+ "▁surprised": 18014,
+ "ardi": 18015,
+ "▁GR": 18016,
+ "]\"": 18017,
+ "▁equally": 18018,
+ "ihe": 18019,
+ "care": 18020,
+ "писок": 18021,
+ "lijk": 18022,
+ "rinn": 18023,
+ "▁\\[\\": 18024,
+ "▁sons": 18025,
+ "▁tät": 18026,
+ "icamente": 18027,
+ "▁listing": 18028,
+ "iellement": 18029,
+ "▁nyelven": 18030,
+ "▁ds": 18031,
+ "▁agricult": 18032,
+ "▁Hermann": 18033,
+ "▁besides": 18034,
+ "progress": 18035,
+ "▁peculiar": 18036,
+ "focus": 18037,
+ "cn": 18038,
+ "-$": 18039,
+ "ственный": 18040,
+ "ourg": 18041,
+ "▁wyn": 18042,
+ "▁conducted": 18043,
+ "▁Становништво": 18044,
+ "connected": 18045,
+ "▁bott": 18046,
+ "▁смер": 18047,
+ "▁Poz": 18048,
+ "unct": 18049,
+ "conda": 18050,
+ "▁савезној": 18051,
+ "▁havet": 18052,
+ "ligt": 18053,
+ "orted": 18054,
+ "▁entering": 18055,
+ "multip": 18056,
+ "▁Temple": 18057,
+ "▁Plant": 18058,
+ "typeof": 18059,
+ "▁Vlad": 18060,
+ "▁qued": 18061,
+ "▁reste": 18062,
+ "▁май": 18063,
+ "▁Very": 18064,
+ "ambiguation": 18065,
+ "▁challeng": 18066,
+ "▁respective": 18067,
+ "▁тор": 18068,
+ "Ctrl": 18069,
+ "▁absence": 18070,
+ "aru": 18071,
+ "вое": 18072,
+ "▁först": 18073,
+ "▁sq": 18074,
+ "▁Emperor": 18075,
+ "▁Ign": 18076,
+ "▁това": 18077,
+ ":`": 18078,
+ "adoop": 18079,
+ "▁Madame": 18080,
+ "▁gruppo": 18081,
+ "stud": 18082,
+ "▁externas": 18083,
+ "▁Александр": 18084,
+ "▁dign": 18085,
+ "▁живе": 18086,
+ "Amount": 18087,
+ "▁correlate": 18088,
+ "▁Fant": 18089,
+ "▁rails": 18090,
+ "fp": 18091,
+ "министратив": 18092,
+ "▁bought": 18093,
+ "▁filters": 18094,
+ "▁ancora": 18095,
+ "▁partner": 18096,
+ "▁quand": 18097,
+ "symbol": 18098,
+ "ulating": 18099,
+ "▁zd": 18100,
+ "awn": 18101,
+ "▁Grant": 18102,
+ "because": 18103,
+ "rable": 18104,
+ "\\}": 18105,
+ "ísticas": 18106,
+ "▁уче": 18107,
+ "▁période": 18108,
+ "▁ske": 18109,
+ "▁Anyway": 18110,
+ "▁indexes": 18111,
+ "▁directions": 18112,
+ "▁RAM": 18113,
+ "chrome": 18114,
+ "▁apost": 18115,
+ "▁warnings": 18116,
+ "▁Airport": 18117,
+ "VI": 18118,
+ "abile": 18119,
+ "▁lord": 18120,
+ "provider": 18121,
+ "▁Ji": 18122,
+ "ostream": 18123,
+ "▁gemeente": 18124,
+ "tableView": 18125,
+ "Extra": 18126,
+ "cursor": 18127,
+ "eground": 18128,
+ "▁Moz": 18129,
+ "▁rib": 18130,
+ "▁morph": 18131,
+ "loads": 18132,
+ "elsk": 18133,
+ "▁MAX": 18134,
+ "▁Santiago": 18135,
+ "▁Him": 18136,
+ "codes": 18137,
+ "▁lanz": 18138,
+ "▁counts": 18139,
+ "rinningsområ": 18140,
+ "щё": 18141,
+ "▁spé": 18142,
+ "▁pierws": 18143,
+ "▁Sver": 18144,
+ "▁acknow": 18145,
+ "Boolean": 18146,
+ "▁фамили": 18147,
+ "▁Senate": 18148,
+ "шов": 18149,
+ "agers": 18150,
+ "▁Nueva": 18151,
+ "bil": 18152,
+ "kiem": 18153,
+ "▁Mey": 18154,
+ "wij": 18155,
+ "▁GmbH": 18156,
+ "validation": 18157,
+ "▁ensuite": 18158,
+ "inking": 18159,
+ "▁campion": 18160,
+ "▁financial": 18161,
+ "izon": 18162,
+ "Headers": 18163,
+ "▁deprecated": 18164,
+ "▁fonction": 18165,
+ "REG": 18166,
+ "▁volumes": 18167,
+ "▁Chi": 18168,
+ "▁encountered": 18169,
+ "lak": 18170,
+ "рая": 18171,
+ "▁continues": 18172,
+ "▁~[": 18173,
+ "uerte": 18174,
+ "▁\\;": 18175,
+ "▁Dok": 18176,
+ "▁weights": 18177,
+ "▁rh": 18178,
+ "▁Napole": 18179,
+ "▁naturally": 18180,
+ "sku": 18181,
+ "pas": 18182,
+ "▁gegründ": 18183,
+ "etr": 18184,
+ "▁Ku": 18185,
+ "icted": 18186,
+ "▁fabric": 18187,
+ "▁ASC": 18188,
+ "▁Entertainment": 18189,
+ "▁energ": 18190,
+ "клад": 18191,
+ "omon": 18192,
+ "theme": 18193,
+ "▁харак": 18194,
+ "▁draft": 18195,
+ "▁channels": 18196,
+ "▁desert": 18197,
+ "▁través": 18198,
+ "▁Lock": 18199,
+ "▁siendo": 18200,
+ "фек": 18201,
+ "même": 18202,
+ "▁packet": 18203,
+ "▁Mountain": 18204,
+ "▁Fahr": 18205,
+ "braio": 18206,
+ "пере": 18207,
+ "▁genannt": 18208,
+ "▁deployment": 18209,
+ "Pal": 18210,
+ "ног": 18211,
+ "стру": 18212,
+ "Prim": 18213,
+ "für": 18214,
+ "▁dangerous": 18215,
+ "▁szám": 18216,
+ "reck": 18217,
+ "▁popup": 18218,
+ "icky": 18219,
+ "inar": 18220,
+ "cowo": 18221,
+ "нцикло": 18222,
+ "ítás": 18223,
+ "▁plugins": 18224,
+ "▁driven": 18225,
+ "лев": 18226,
+ "▁\"(": 18227,
+ "tta": 18228,
+ "▁Ú": 18229,
+ "▁eb": 18230,
+ "▁'';": 18231,
+ "▁knock": 18232,
+ "▁основа": 18233,
+ "▁maison": 18234,
+ "гля": 18235,
+ "▁Honor": 18236,
+ "tail": 18237,
+ "ritz": 18238,
+ "▁guys": 18239,
+ "▁combinations": 18240,
+ "ondere": 18241,
+ "▁Ald": 18242,
+ "▁fiddle": 18243,
+ "дав": 18244,
+ "urd": 18245,
+ "▁projection": 18246,
+ "▁También": 18247,
+ "verb": 18248,
+ "▁terre": 18249,
+ "rugu": 18250,
+ "▁september": 18251,
+ "▁=": 18572,
+ "▁Beat": 18573,
+ "▁Sax": 18574,
+ "vertical": 18575,
+ "кто": 18576,
+ "▁plants": 18577,
+ "▁Références": 18578,
+ "▁ogni": 18579,
+ "▁curs": 18580,
+ "▁SK": 18581,
+ "они": 18582,
+ "▁destac": 18583,
+ "\");\r": 18584,
+ "▁Sure": 18585,
+ "▁partido": 18586,
+ "▁Folge": 18587,
+ "▁Moore": 18588,
+ "▁wz": 18589,
+ "скус": 18590,
+ "ltre": 18591,
+ "ondo": 18592,
+ "▁pose": 18593,
+ "imos": 18594,
+ "бой": 18595,
+ "ципа": 18596,
+ "jus": 18597,
+ ".....": 18598,
+ "▁época": 18599,
+ "▁quanto": 18600,
+ "▁Support": 18601,
+ "geschichte": 18602,
+ "SERVER": 18603,
+ "▁Georges": 18604,
+ "enum": 18605,
+ "▁herm": 18606,
+ "▁nebo": 18607,
+ "▁Chr": 18608,
+ "character": 18609,
+ "▁***": 18610,
+ "▁Forsch": 18611,
+ "iami": 18612,
+ "▁¿": 18613,
+ "cych": 18614,
+ "▁fifth": 18615,
+ "sent": 18616,
+ "▁anderem": 18617,
+ "▁proportion": 18618,
+ "▁prest": 18619,
+ "▁Girl": 18620,
+ "▁drama": 18621,
+ "wand": 18622,
+ "▁Mail": 18623,
+ "▁Lux": 18624,
+ "▁který": 18625,
+ "▁Gesellschaft": 18626,
+ "▁Hinweis": 18627,
+ "nisse": 18628,
+ "▁mondo": 18629,
+ "Eq": 18630,
+ "▁perí": 18631,
+ "▁eastern": 18632,
+ "▁UEFA": 18633,
+ "uale": 18634,
+ "▁convex": 18635,
+ "▁поль": 18636,
+ "▁Hey": 18637,
+ "zenie": 18638,
+ "initely": 18639,
+ "▁Zusammen": 18640,
+ "SSL": 18641,
+ "ocal": 18642,
+ "▁canal": 18643,
+ "voy": 18644,
+ "▁Кри": 18645,
+ "▁között": 18646,
+ "▁cars": 18647,
+ "▁versión": 18648,
+ "Environment": 18649,
+ "Her": 18650,
+ "▁señ": 18651,
+ "▁spatial": 18652,
+ "ymi": 18653,
+ "Fire": 18654,
+ "▁veget": 18655,
+ "▁Wie": 18656,
+ "▁znaj": 18657,
+ "▁damage": 18658,
+ "▁endl": 18659,
+ "gif": 18660,
+ "▁quali": 18661,
+ "▁которых": 18662,
+ "ellan": 18663,
+ "▁mens": 18664,
+ "▁plug": 18665,
+ "▁abund": 18666,
+ "FIG": 18667,
+ "▁sf": 18668,
+ "▁confl": 18669,
+ "▁населения": 18670,
+ "▁principles": 18671,
+ "▁Gabriel": 18672,
+ "ibe": 18673,
+ "▁{%": 18674,
+ "▁població": 18675,
+ "ніципа": 18676,
+ "▁extreme": 18677,
+ "▁asse": 18678,
+ "▁vu": 18679,
+ "Mock": 18680,
+ "▁spielte": 18681,
+ "▁Aer": 18682,
+ "▁datos": 18683,
+ "endes": 18684,
+ "▁Gel": 18685,
+ "▁Gor": 18686,
+ "Christ": 18687,
+ "chos": 18688,
+ "Processor": 18689,
+ "▁instruct": 18690,
+ "▁picked": 18691,
+ "nahme": 18692,
+ "fahr": 18693,
+ "▁indicated": 18694,
+ "▁%.": 18695,
+ "▁ts": 18696,
+ "▁notable": 18697,
+ "▁qualified": 18698,
+ "▁Ал": 18699,
+ "Black": 18700,
+ "▁council": 18701,
+ "▁overhead": 18702,
+ "aci": 18703,
+ "année": 18704,
+ "▁initWith": 18705,
+ "bió": 18706,
+ "▁introduction": 18707,
+ "▁companion": 18708,
+ "▁expon": 18709,
+ "▁kör": 18710,
+ "oby": 18711,
+ "burn": 18712,
+ "gnu": 18713,
+ "virtual": 18714,
+ "▁intellect": 18715,
+ "▁держа": 18716,
+ "'+": 18717,
+ "бле": 18718,
+ "▁strictly": 18719,
+ "▁recognize": 18720,
+ "hour": 18721,
+ "▁Wrest": 18722,
+ "ennen": 18723,
+ "$).": 18724,
+ "fff": 18725,
+ "▁Centro": 18726,
+ "▁Pitt": 18727,
+ "▁dział": 18728,
+ "▁cela": 18729,
+ "▁francese": 18730,
+ "рами": 18731,
+ "special": 18732,
+ "▁Dup": 18733,
+ "toire": 18734,
+ "каль": 18735,
+ "COUNT": 18736,
+ "▁Brook": 18737,
+ "▁руково": 18738,
+ "publique": 18739,
+ "▁seconda": 18740,
+ "▁compt": 18741,
+ "▁bland": 18742,
+ "Before": 18743,
+ "▁Pack": 18744,
+ "alty": 18745,
+ "öder": 18746,
+ "▁intervals": 18747,
+ "▁Datenbank": 18748,
+ "Movie": 18749,
+ "▁transm": 18750,
+ "▁tap": 18751,
+ "▁поч": 18752,
+ "fon": 18753,
+ "iai": 18754,
+ "▁fib": 18755,
+ "▁wyd": 18756,
+ "▁hung": 18757,
+ "▁alive": 18758,
+ "Clear": 18759,
+ "▁pushed": 18760,
+ "▁tuple": 18761,
+ "achen": 18762,
+ "гово": 18763,
+ "▁revers": 18764,
+ "▁augment": 18765,
+ "▁challenge": 18766,
+ "lost": 18767,
+ "▁deuxième": 18768,
+ "structor": 18769,
+ "▁mehrerer": 18770,
+ "atural": 18771,
+ "Split": 18772,
+ "стем": 18773,
+ "шла": 18774,
+ ")\\\\": 18775,
+ "▁Dog": 18776,
+ "▁developers": 18777,
+ "▁nod": 18778,
+ "▁сторо": 18779,
+ "▁NaN": 18780,
+ "▁priest": 18781,
+ "▁exha": 18782,
+ "UND": 18783,
+ "pair": 18784,
+ "alone": 18785,
+ "▁moon": 18786,
+ "▁#!/": 18787,
+ "▁guns": 18788,
+ "rola": 18789,
+ "чита": 18790,
+ "▁Encyclopedia": 18791,
+ "atis": 18792,
+ "▁'\"": 18793,
+ "zych": 18794,
+ "▁superfic": 18795,
+ "▁эк": 18796,
+ "едера": 18797,
+ "feed": 18798,
+ "LAY": 18799,
+ "Fi": 18800,
+ "unks": 18801,
+ "isecond": 18802,
+ "▁'@": 18803,
+ "▁Adding": 18804,
+ "рое": 18805,
+ "▁tang": 18806,
+ "цо": 18807,
+ "hung": 18808,
+ "bis": 18809,
+ "ského": 18810,
+ "▁advert": 18811,
+ "▁занима": 18812,
+ "uzz": 18813,
+ "ágina": 18814,
+ "▁Tel": 18815,
+ "sig": 18816,
+ "▁Ez": 18817,
+ "▁guarantee": 18818,
+ "▁teaching": 18819,
+ "oty": 18820,
+ "termin": 18821,
+ "▁distributions": 18822,
+ "FLA": 18823,
+ "▁Giuseppe": 18824,
+ "querySelector": 18825,
+ "▁/\\": 18826,
+ "▁Squad": 18827,
+ "gz": 18828,
+ "delay": 18829,
+ "▁surrounding": 18830,
+ "▁manus": 18831,
+ "▁Hou": 18832,
+ "²,": 18833,
+ "▁cultiv": 18834,
+ "▁troubles": 18835,
+ "▁raison": 18836,
+ "expand": 18837,
+ "▁cov": 18838,
+ "nungen": 18839,
+ ")){": 18840,
+ "▁geen": 18841,
+ "▁außer": 18842,
+ "▁Лі": 18843,
+ "ři": 18844,
+ "▁situations": 18845,
+ "▁telep": 18846,
+ "▁Jed": 18847,
+ "▁travail": 18848,
+ "lias": 18849,
+ "bullet": 18850,
+ "▁selecting": 18851,
+ "avier": 18852,
+ "▁essential": 18853,
+ "(/": 18854,
+ "yyyy": 18855,
+ "ště": 18856,
+ "ulty": 18857,
+ "▁kra": 18858,
+ "▁tabs": 18859,
+ "▁experienced": 18860,
+ "azi": 18861,
+ "▁Directory": 18862,
+ "▁cron": 18863,
+ "▁spend": 18864,
+ "▁RA": 18865,
+ "▁selenium": 18866,
+ "▁Thé": 18867,
+ "Elements": 18868,
+ "cii": 18869,
+ "▁plat": 18870,
+ "▁archive": 18871,
+ "▁assistance": 18872,
+ "▁neck": 18873,
+ "▁Avenue": 18874,
+ "▁wheel": 18875,
+ "▁hade": 18876,
+ "Common": 18877,
+ "▁Dialog": 18878,
+ "▁forg": 18879,
+ "▁surely": 18880,
+ "▁hockey": 18881,
+ "któ": 18882,
+ "▁tk": 18883,
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁": 18884,
+ "▁Bruce": 18885,
+ "▁enorm": 18886,
+ ",’": 18887,
+ "▁Christopher": 18888,
+ "jev": 18889,
+ "▁quad": 18890,
+ "▁AJAX": 18891,
+ "▁relief": 18892,
+ "▁modes": 18893,
+ "sklär": 18894,
+ "▁Vid": 18895,
+ "▁Serial": 18896,
+ "▁tokens": 18897,
+ "▁Poland": 18898,
+ "\\]": 18899,
+ "▁vide": 18900,
+ "rooms": 18901,
+ "omas": 18902,
+ "▁Bureau": 18903,
+ "cx": 18904,
+ "ностью": 18905,
+ "▁signs": 18906,
+ "шение": 18907,
+ "lossen": 18908,
+ "▁Queens": 18909,
+ "▁membre": 18910,
+ "▁mez": 18911,
+ "▁Bool": 18912,
+ "▁Naj": 18913,
+ "▁Memory": 18914,
+ "▁Khan": 18915,
+ "▁là": 18916,
+ "▁Hud": 18917,
+ "▁dismiss": 18918,
+ "ighth": 18919,
+ "▁fs": 18920,
+ "prevent": 18921,
+ "▁меда": 18922,
+ "▁Police": 18923,
+ "▁ско": 18924,
+ "finite": 18925,
+ "▁ami": 18926,
+ "▁Much": 18927,
+ "owania": 18928,
+ "ORY": 18929,
+ "iors": 18930,
+ "▁Premio": 18931,
+ "▁textbox": 18932,
+ "dm": 18933,
+ "▁afin": 18934,
+ "▁Donald": 18935,
+ "▁Priv": 18936,
+ "▁decid": 18937,
+ "▁Maurice": 18938,
+ "agan": 18939,
+ "▁Britannica": 18940,
+ "▁oft": 18941,
+ "▁consecutive": 18942,
+ "\"?>": 18943,
+ "овий": 18944,
+ "student": 18945,
+ "▁peque": 18946,
+ "▁dieses": 18947,
+ "▁retour": 18948,
+ "étr": 18949,
+ "▁сез": 18950,
+ "▁kre": 18951,
+ "▁votes": 18952,
+ "ruption": 18953,
+ "izada": 18954,
+ "▁Wiel": 18955,
+ "▁Gray": 18956,
+ "▁Leop": 18957,
+ "teilung": 18958,
+ "(['": 18959,
+ "▁whites": 18960,
+ "frica": 18961,
+ "animation": 18962,
+ "curl": 18963,
+ "lings": 18964,
+ "=\"$": 18965,
+ "loyd": 18966,
+ "textsc": 18967,
+ "ору": 18968,
+ "▁села": 18969,
+ "esian": 18970,
+ "▁Mission": 18971,
+ "▁неза": 18972,
+ "▁ultimately": 18973,
+ "бов": 18974,
+ "olen": 18975,
+ "скому": 18976,
+ "nete": 18977,
+ "▁Dit": 18978,
+ "▁costru": 18979,
+ "dependent": 18980,
+ "▁Resource": 18981,
+ "▁hosts": 18982,
+ "▁rear": 18983,
+ "Duration": 18984,
+ "ників": 18985,
+ "Ма": 18986,
+ "▁planning": 18987,
+ "▁prediction": 18988,
+ "▁Lyn": 18989,
+ "▁kir": 18990,
+ "▁Legisl": 18991,
+ "мат": 18992,
+ "▁Soccer": 18993,
+ "▁survey": 18994,
+ "▁estadounidense": 18995,
+ "orgen": 18996,
+ "jourd": 18997,
+ "▁aprile": 18998,
+ "▁ids": 18999,
+ "ське": 19000,
+ "▁employee": 19001,
+ "▁Schauspieler": 19002,
+ "ръ": 19003,
+ "▁multimedia": 19004,
+ "▁свою": 19005,
+ "▁wine": 19006,
+ "▁EU": 19007,
+ "ică": 19008,
+ "▁Rhein": 19009,
+ "▁Palmar": 19010,
+ "oteca": 19011,
+ "▁prepare": 19012,
+ "▁Tot": 19013,
+ "▁Null": 19014,
+ "▁kin": 19015,
+ "inals": 19016,
+ "▁Newton": 19017,
+ "▁tbl": 19018,
+ "▁Sold": 19019,
+ "▁verf": 19020,
+ "aturing": 19021,
+ "▁laptop": 19022,
+ "▁Совет": 19023,
+ "secret": 19024,
+ "▁Olympic": 19025,
+ "▁footballer": 19026,
+ "▁Rudolf": 19027,
+ "▁conhe": 19028,
+ "zysk": 19029,
+ "▁evaluated": 19030,
+ "»)": 19031,
+ "shop": 19032,
+ "repository": 19033,
+ "▁zach": 19034,
+ "▁losing": 19035,
+ "etter": 19036,
+ "▁Wirtschaft": 19037,
+ "так": 19038,
+ "▁unnecessary": 19039,
+ "▁Phot": 19040,
+ "anska": 19041,
+ "▁Native": 19042,
+ "CCE": 19043,
+ "▁fifty": 19044,
+ "▁erw": 19045,
+ "rh": 19046,
+ "issent": 19047,
+ "}{(": 19048,
+ "▁lanç": 19049,
+ "▁Xcode": 19050,
+ "город": 19051,
+ "cir": 19052,
+ "▁película": 19053,
+ "▁Oscar": 19054,
+ "▁shore": 19055,
+ "▁supplied": 19056,
+ "examples": 19057,
+ "Mess": 19058,
+ "VICE": 19059,
+ "▁exclude": 19060,
+ "▁hen": 19061,
+ "▁губер": 19062,
+ "▁Fragment": 19063,
+ "▁Bitte": 19064,
+ "▁Besides": 19065,
+ "▁hes": 19066,
+ "▁ihrem": 19067,
+ "▁Serge": 19068,
+ "▁artific": 19069,
+ "=\"${": 19070,
+ "лово": 19071,
+ "uteur": 19072,
+ "taire": 19073,
+ "пас": 19074,
+ "▁easiest": 19075,
+ "▁famiglia": 19076,
+ "Normal": 19077,
+ "▁dalle": 19078,
+ "▁nations": 19079,
+ "rp": 19080,
+ "thead": 19081,
+ "▁області": 19082,
+ "▁Democratic": 19083,
+ "▁челове": 19084,
+ "мож": 19085,
+ "▁гер": 19086,
+ "▁smallest": 19087,
+ "▁Publishing": 19088,
+ "▁Ts": 19089,
+ "▁laughed": 19090,
+ "lle": 19091,
+ "▁Amt": 19092,
+ "▁IIS": 19093,
+ "FORM": 19094,
+ "Mag": 19095,
+ "дон": 19096,
+ "▁storia": 19097,
+ "▁organized": 19098,
+ "ční": 19099,
+ "▁ox": 19100,
+ "lingen": 19101,
+ "▁luego": 19102,
+ "cció": 19103,
+ "▁rely": 19104,
+ "▁tussen": 19105,
+ "erten": 19106,
+ "▁honour": 19107,
+ "▁Claude": 19108,
+ "▁Korea": 19109,
+ "▁Metropol": 19110,
+ "Super": 19111,
+ "rien": 19112,
+ "érature": 19113,
+ "attro": 19114,
+ "▁біль": 19115,
+ "▁Herbert": 19116,
+ "▁auteurs": 19117,
+ "▁darauf": 19118,
+ "▁mental": 19119,
+ "▁rang": 19120,
+ "▁són": 19121,
+ "▁Soph": 19122,
+ ")\",": 19123,
+ "Descriptor": 19124,
+ "prepare": 19125,
+ "▁Landkreis": 19126,
+ "HC": 19127,
+ "cross": 19128,
+ "лиза": 19129,
+ "▁Login": 19130,
+ "onen": 19131,
+ "Feature": 19132,
+ "▁museum": 19133,
+ "vek": 19134,
+ "▁Nelson": 19135,
+ "▁rejo": 19136,
+ "▁команди": 19137,
+ "▁summar": 19138,
+ "▁следу": 19139,
+ "ämp": 19140,
+ "▁Gas": 19141,
+ "вом": 19142,
+ "VALUE": 19143,
+ "inge": 19144,
+ "period": 19145,
+ "lassen": 19146,
+ "ával": 19147,
+ "▁altogether": 19148,
+ "umph": 19149,
+ "istro": 19150,
+ "ąż": 19151,
+ "▁Keep": 19152,
+ "▁Marco": 19153,
+ "▁étant": 19154,
+ "▁Dre": 19155,
+ "geometry": 19156,
+ "▁Kas": 19157,
+ "messages": 19158,
+ "Cook": 19159,
+ "▁Side": 19160,
+ "▁коми": 19161,
+ "стри": 19162,
+ "▁excess": 19163,
+ "▁Biografia": 19164,
+ "XXXX": 19165,
+ "▁Nie": 19166,
+ "vendor": 19167,
+ "xsd": 19168,
+ "Mill": 19169,
+ "processing": 19170,
+ "▁Missouri": 19171,
+ "▁permett": 19172,
+ "▁apar": 19173,
+ "▁crowd": 19174,
+ "fert": 19175,
+ "▁Dou": 19176,
+ "rí": 19177,
+ "▁CC": 19178,
+ "▁payment": 19179,
+ "▁Hollywood": 19180,
+ "▁Virtual": 19181,
+ "▁spoken": 19182,
+ "▁tram": 19183,
+ "▁Community": 19184,
+ "▁administrative": 19185,
+ "▁воло": 19186,
+ "gior": 19187,
+ "visor": 19188,
+ "▁Украи": 19189,
+ "stage": 19190,
+ "▁Format": 19191,
+ "▁convenient": 19192,
+ "На": 19193,
+ "▁median": 19194,
+ "▁вра": 19195,
+ "▁Према": 19196,
+ "enig": 19197,
+ "▁Opera": 19198,
+ "rés": 19199,
+ "▁fmt": 19200,
+ "▁efficiency": 19201,
+ "male": 19202,
+ "Master": 19203,
+ "Series": 19204,
+ "▁syd": 19205,
+ "generic": 19206,
+ "interval": 19207,
+ "▁efect": 19208,
+ "▁inwoners": 19209,
+ "лимпи": 19210,
+ "irement": 19211,
+ "Err": 19212,
+ "öh": 19213,
+ "▁lying": 19214,
+ "▁Settings": 19215,
+ "!=": 19216,
+ "ematic": 19217,
+ "argv": 19218,
+ "▁Basic": 19219,
+ "▁consideration": 19220,
+ "▁habe": 19221,
+ "-%": 19222,
+ "▁mountains": 19223,
+ "▁peak": 19224,
+ "▁fallen": 19225,
+ "eded": 19226,
+ "logic": 19227,
+ "▁matched": 19228,
+ "▁typing": 19229,
+ ")},": 19230,
+ "▁fancy": 19231,
+ "▁elegant": 19232,
+ "ال": 19233,
+ "▁участ": 19234,
+ "▁Sarah": 19235,
+ "▁Verd": 19236,
+ "▁tego": 19237,
+ "rules": 19238,
+ "▁mounted": 19239,
+ "▁ім": 19240,
+ "еру": 19241,
+ "stoff": 19242,
+ "fahren": 19243,
+ "distance": 19244,
+ "▁License": 19245,
+ "▁LEFT": 19246,
+ "▁wp": 19247,
+ "/{": 19248,
+ "▁amazon": 19249,
+ ">&": 19250,
+ "▁első": 19251,
+ "quarters": 19252,
+ "▁shock": 19253,
+ "nick": 19254,
+ "▁Archite": 19255,
+ "▁Square": 19256,
+ "▁rates": 19257,
+ "iore": 19258,
+ "▁Nat": 19259,
+ "▁Charlot": 19260,
+ "reichen": 19261,
+ "▁variation": 19262,
+ "osis": 19263,
+ "life": 19264,
+ "slide": 19265,
+ "abi": 19266,
+ "uki": 19267,
+ "mysq": 19268,
+ "▁primitive": 19269,
+ "▁universitaire": 19270,
+ "LENG": 19271,
+ "ależ": 19272,
+ "ebook": 19273,
+ "syn": 19274,
+ "▁Gegen": 19275,
+ "▁Kü": 19276,
+ "▁але": 19277,
+ "▁Lub": 19278,
+ "concurrent": 19279,
+ "izzato": 19280,
+ "▁stub": 19281,
+ "▁ie": 19282,
+ "▁'./": 19283,
+ "cod": 19284,
+ "▁internacional": 19285,
+ "▁Glas": 19286,
+ "▁mare": 19287,
+ "▁Neb": 19288,
+ "▁GB": 19289,
+ "kwargs": 19290,
+ "▁aument": 19291,
+ "WID": 19292,
+ "▁род": 19293,
+ "punkt": 19294,
+ "▁Grad": 19295,
+ "SN": 19296,
+ "AMP": 19297,
+ "▁Born": 19298,
+ "▁Guerre": 19299,
+ "готов": 19300,
+ "▁medio": 19301,
+ "Med": 19302,
+ "supp": 19303,
+ "actual": 19304,
+ "dropdown": 19305,
+ "▁oktober": 19306,
+ "▁ř": 19307,
+ "▁circular": 19308,
+ "▁skin": 19309,
+ "▁emphas": 19310,
+ "▁голов": 19311,
+ "▁pue": 19312,
+ "▁informations": 19313,
+ "▁Wolfgang": 19314,
+ "▁useless": 19315,
+ "ит": 19316,
+ "▁Joan": 19317,
+ "▁бор": 19318,
+ "▁Glad": 19319,
+ "▁Know": 19320,
+ "ként": 19321,
+ "speed": 19322,
+ "▁Kevin": 19323,
+ "unft": 19324,
+ "▁arqu": 19325,
+ "▁Casa": 19326,
+ "(...": 19327,
+ "▁rapidly": 19328,
+ "▁proble": 19329,
+ "▁Википеди": 19330,
+ "žen": 19331,
+ "▁Neben": 19332,
+ "▁Meter": 19333,
+ "Children": 19334,
+ "cem": 19335,
+ "igos": 19336,
+ "aju": 19337,
+ "▁Retrie": 19338,
+ "▁Hell": 19339,
+ "▁gig": 19340,
+ "▁controvers": 19341,
+ "▁zoom": 19342,
+ "▁cens": 19343,
+ "▁alcuni": 19344,
+ "▁Header": 19345,
+ "Meta": 19346,
+ "Required": 19347,
+ "▁институ": 19348,
+ "▁skup": 19349,
+ "▁ingles": 19350,
+ "égl": 19351,
+ "bij": 19352,
+ "▁tér": 19353,
+ "▁compag": 19354,
+ "▁committed": 19355,
+ "▁processed": 19356,
+ "Lower": 19357,
+ "▁Foreign": 19358,
+ "▁seq": 19359,
+ "sheets": 19360,
+ "▁Fem": 19361,
+ "hoz": 19362,
+ "inks": 19363,
+ "▁kall": 19364,
+ "variant": 19365,
+ "▁libro": 19366,
+ "▁clicks": 19367,
+ "▁gobierno": 19368,
+ "iegel": 19369,
+ "мого": 19370,
+ "geme": 19371,
+ "▁tower": 19372,
+ "▁parish": 19373,
+ "▁TCP": 19374,
+ "▁ls": 19375,
+ "▁nginx": 19376,
+ "NaN": 19377,
+ "▁Dir": 19378,
+ "▁Begriffe": 19379,
+ "arie": 19380,
+ "ímp": 19381,
+ "icios": 19382,
+ "▁sharing": 19383,
+ "▁cinéma": 19384,
+ "bec": 19385,
+ "RED": 19386,
+ "▁Kra": 19387,
+ "abol": 19388,
+ "▁flux": 19389,
+ "▁expensive": 19390,
+ "▁суще": 19391,
+ "▁`_": 19392,
+ "ocz": 19393,
+ "лист": 19394,
+ "▁acquaint": 19395,
+ "▁wise": 19396,
+ "▁pouvoir": 19397,
+ "▁devant": 19398,
+ "▁momentum": 19399,
+ "immer": 19400,
+ "▁Coupe": 19401,
+ "indexOf": 19402,
+ "▁doesnt": 19403,
+ "▁зав": 19404,
+ "▁license": 19405,
+ "▁â": 19406,
+ "CSS": 19407,
+ "▁rice": 19408,
+ "Team": 19409,
+ "▁ano": 19410,
+ "lit": 19411,
+ "▁merged": 19412,
+ "▁Cell": 19413,
+ "лл": 19414,
+ "boy": 19415,
+ "asts": 19416,
+ "▁sell": 19417,
+ "▁große": 19418,
+ "▁virtuel": 19419,
+ "Cancel": 19420,
+ "▁sj": 19421,
+ "gment": 19422,
+ ".<": 19423,
+ "чай": 19424,
+ "ië": 19425,
+ "akh": 19426,
+ "izers": 19427,
+ "prit": 19428,
+ "▁Tib": 19429,
+ "▁elaborate": 19430,
+ "▁fé": 19431,
+ "▁меди": 19432,
+ "LENGTH": 19433,
+ "▁primarily": 19434,
+ "▁scores": 19435,
+ "▁carrying": 19436,
+ "▁lake": 19437,
+ "compose": 19438,
+ "▁Township": 19439,
+ "unge": 19440,
+ "▁alberga": 19441,
+ "anych": 19442,
+ "quelle": 19443,
+ "▁Ark": 19444,
+ "▁pris": 19445,
+ "▁voll": 19446,
+ "шли": 19447,
+ "Validation": 19448,
+ "▁ceux": 19449,
+ "▁populate": 19450,
+ "\"\r": 19451,
+ "▁femmes": 19452,
+ "ANG": 19453,
+ "▁Despite": 19454,
+ "вые": 19455,
+ "iske": 19456,
+ "zug": 19457,
+ "нача": 19458,
+ "▁hatten": 19459,
+ "INSERT": 19460,
+ "Employee": 19461,
+ "▁moments": 19462,
+ "▁última": 19463,
+ "▁holder": 19464,
+ "blank": 19465,
+ "Collections": 19466,
+ "athers": 19467,
+ "▁grade": 19468,
+ "▁affairs": 19469,
+ ".$$": 19470,
+ "▁delta": 19471,
+ "▁Jugend": 19472,
+ "▁español": 19473,
+ "▁OUT": 19474,
+ "▁mathematical": 19475,
+ "▁mongo": 19476,
+ "▁Фе": 19477,
+ "uling": 19478,
+ "▁revolution": 19479,
+ "▁coin": 19480,
+ "▁subclass": 19481,
+ "\"=>": 19482,
+ "äche": 19483,
+ "▁pyg": 19484,
+ "щая": 19485,
+ "illery": 19486,
+ "▁comenz": 19487,
+ "depth": 19488,
+ "▁cél": 19489,
+ "▁resize": 19490,
+ "▁Same": 19491,
+ "▁strik": 19492,
+ "▁tir": 19493,
+ "▁scarc": 19494,
+ "▁Member": 19495,
+ "subscribe": 19496,
+ "óż": 19497,
+ "útbol": 19498,
+ "except": 19499,
+ "▁driving": 19500,
+ "kie": 19501,
+ "zony": 19502,
+ "èmes": 19503,
+ "David": 19504,
+ "issant": 19505,
+ "▁ты": 19506,
+ "▁élect": 19507,
+ "▁rename": 19508,
+ "▁Running": 19509,
+ "▁interfaces": 19510,
+ "////////////////": 19511,
+ "▁Walker": 19512,
+ "▁société": 19513,
+ "▁asks": 19514,
+ "brid": 19515,
+ "▁jewe": 19516,
+ "▁seines": 19517,
+ "▁agents": 19518,
+ "▁MY": 19519,
+ "▁Lawrence": 19520,
+ "dess": 19521,
+ "iesen": 19522,
+ "▁людях": 19523,
+ "прави": 19524,
+ "▁ancest": 19525,
+ "▁welche": 19526,
+ "raum": 19527,
+ "▁orb": 19528,
+ "scal": 19529,
+ "▁Lear": 19530,
+ "▁wear": 19531,
+ "▁slave": 19532,
+ "▁renamed": 19533,
+ "čen": 19534,
+ "maste": 19535,
+ "angles": 19536,
+ "▁América": 19537,
+ "▁ti": 19538,
+ "▁demsel": 19539,
+ "▁beneath": 19540,
+ "binary": 19541,
+ "▁edición": 19542,
+ "▁kilomet": 19543,
+ "uits": 19544,
+ "▁cuatro": 19545,
+ "▁entrance": 19546,
+ "ondissement": 19547,
+ "▁bag": 19548,
+ "▁Armen": 19549,
+ "ijo": 19550,
+ "▁Lors": 19551,
+ "▁demselben": 19552,
+ "êm": 19553,
+ "▁discrete": 19554,
+ "▁prominent": 19555,
+ "▁Jay": 19556,
+ "decor": 19557,
+ "DL": 19558,
+ "▁dí": 19559,
+ "Struct": 19560,
+ "▁Production": 19561,
+ "they": 19562,
+ "arius": 19563,
+ "schnitt": 19564,
+ "▁Cou": 19565,
+ "▁lex": 19566,
+ "youtube": 19567,
+ "▁работа": 19568,
+ "station": 19569,
+ "sep": 19570,
+ "▁mirror": 19571,
+ "▁hits": 19572,
+ "▁Beck": 19573,
+ "atically": 19574,
+ "▁Laz": 19575,
+ "▁winner": 19576,
+ "DEX": 19577,
+ "▁INT": 19578,
+ "}^{-": 19579,
+ "▁wegen": 19580,
+ "mad": 19581,
+ "Angle": 19582,
+ "zing": 19583,
+ "▁Bayern": 19584,
+ "sal": 19585,
+ "äger": 19586,
+ "▁busy": 19587,
+ "▁stör": 19588,
+ "▁folk": 19589,
+ "▁prix": 19590,
+ "▁allocated": 19591,
+ "▁pt": 19592,
+ "affen": 19593,
+ "cluster": 19594,
+ "▁complement": 19595,
+ "árs": 19596,
+ "▁Amerika": 19597,
+ "рій": 19598,
+ "▁valley": 19599,
+ "▁rooms": 19600,
+ "▁moi": 19601,
+ ".\",": 19602,
+ ";;;;": 19603,
+ "▁lowest": 19604,
+ "nog": 19605,
+ "▁landet": 19606,
+ "▁programme": 19607,
+ "chio": 19608,
+ "▁Während": 19609,
+ "ández": 19610,
+ "▁долж": 19611,
+ "▁ouv": 19612,
+ "omány": 19613,
+ "▁Википедии": 19614,
+ "▁só": 19615,
+ "▁elektr": 19616,
+ "Desc": 19617,
+ "▁Beaut": 19618,
+ "нар": 19619,
+ "▁може": 19620,
+ "Pierre": 19621,
+ "esota": 19622,
+ "▁operated": 19623,
+ "▁forte": 19624,
+ "рис": 19625,
+ "▁opposition": 19626,
+ "alia": 19627,
+ "▁Syl": 19628,
+ "getName": 19629,
+ "вели": 19630,
+ "fik": 19631,
+ "▁comprom": 19632,
+ "▁TextView": 19633,
+ "Spring": 19634,
+ "metadata": 19635,
+ "engu": 19636,
+ "/,": 19637,
+ "▁carri": 19638,
+ "istol": 19639,
+ "▁diagonal": 19640,
+ "lista": 19641,
+ "izen": 19642,
+ "▁rende": 19643,
+ "gcc": 19644,
+ "beck": 19645,
+ "lius": 19646,
+ "iral": 19647,
+ "Resolver": 19648,
+ "▁percentage": 19649,
+ "▁attra": 19650,
+ "strings": 19651,
+ "wiąz": 19652,
+ "ods": 19653,
+ "волю": 19654,
+ "ęż": 19655,
+ "▁newspaper": 19656,
+ "imiter": 19657,
+ "ABC": 19658,
+ "▁Manchester": 19659,
+ "[{": 19660,
+ "Agent": 19661,
+ "▁Wor": 19662,
+ "▁Kath": 19663,
+ "▁пові": 19664,
+ "▁entonces": 19665,
+ "▁niveau": 19666,
+ "atted": 19667,
+ "learn": 19668,
+ "atiques": 19669,
+ "▁уби": 19670,
+ "▁quindi": 19671,
+ "binding": 19672,
+ "▁imported": 19673,
+ "▁Horn": 19674,
+ "emberg": 19675,
+ "complex": 19676,
+ "▁neural": 19677,
+ "information": 19678,
+ "▁recognition": 19679,
+ "ingt": 19680,
+ "▁inhabitants": 19681,
+ "vue": 19682,
+ "▁Bevölker": 19683,
+ "▁curves": 19684,
+ "▁leb": 19685,
+ "дій": 19686,
+ "▁sow": 19687,
+ "▁sentiment": 19688,
+ "PH": 19689,
+ "rache": 19690,
+ "▁-(": 19691,
+ "▁estable": 19692,
+ "▁Ferdinand": 19693,
+ "▁écrit": 19694,
+ "▁primeiro": 19695,
+ "▁tex": 19696,
+ "▁intermediate": 19697,
+ "verage": 19698,
+ "ibus": 19699,
+ "▁serves": 19700,
+ "ivas": 19701,
+ "▁bru": 19702,
+ "▁lum": 19703,
+ "attice": 19704,
+ "чный": 19705,
+ "▁Dres": 19706,
+ "▁videos": 19707,
+ "duration": 19708,
+ "▁abit": 19709,
+ "▁egg": 19710,
+ "ographical": 19711,
+ "alph": 19712,
+ "STATE": 19713,
+ "▁пара": 19714,
+ "reading": 19715,
+ "▁vehicle": 19716,
+ "▁fortune": 19717,
+ "ultats": 19718,
+ "▁Storia": 19719,
+ "midt": 19720,
+ "łącz": 19721,
+ "▁Memorial": 19722,
+ "▁vas": 19723,
+ "▁зан": 19724,
+ "▁utility": 19725,
+ "▁obsc": 19726,
+ "▁relacion": 19727,
+ "▁runat": 19728,
+ "Release": 19729,
+ "take": 19730,
+ "▁Oliver": 19731,
+ "▁Sid": 19732,
+ "ulos": 19733,
+ "▁Garc": 19734,
+ "▁розта": 19735,
+ "▁Sak": 19736,
+ "Py": 19737,
+ "führt": 19738,
+ "▁trabal": 19739,
+ "*{": 19740,
+ "▁zes": 19741,
+ "▁szere": 19742,
+ "▁varios": 19743,
+ "▁otra": 19744,
+ "▁eval": 19745,
+ "▁situé": 19746,
+ "▁wounded": 19747,
+ "▁Vincent": 19748,
+ "▁викори": 19749,
+ "▁encode": 19750,
+ "Modal": 19751,
+ "▁forb": 19752,
+ "▁dynamics": 19753,
+ "▁depos": 19754,
+ "arde": 19755,
+ "▁streets": 19756,
+ "▁Komm": 19757,
+ "=$(": 19758,
+ "▁повер": 19759,
+ "▁dois": 19760,
+ "▁vitt": 19761,
+ "▁automatisch": 19762,
+ "▁reload": 19763,
+ "▁Verwalt": 19764,
+ "bero": 19765,
+ "▁hub": 19766,
+ "▁mos": 19767,
+ "▁tutto": 19768,
+ "▁Frederick": 19769,
+ "łow": 19770,
+ "antages": 19771,
+ "aque": 19772,
+ "paper": 19773,
+ "▁einige": 19774,
+ "`),": 19775,
+ "dj": 19776,
+ "▁Ple": 19777,
+ "▁%,": 19778,
+ "▁Bitmap": 19779,
+ "▁friendly": 19780,
+ "▁truly": 19781,
+ "▁stroke": 19782,
+ "roph": 19783,
+ "▁engl": 19784,
+ "▁coff": 19785,
+ "▁dust": 19786,
+ "▁Jahres": 19787,
+ "ppi": 19788,
+ "▁wys": 19789,
+ "factor": 19790,
+ "schluss": 19791,
+ "▁деревня": 19792,
+ "▁Past": 19793,
+ "▁дома": 19794,
+ "COM": 19795,
+ "▁pueden": 19796,
+ "▁gift": 19797,
+ "▁Gla": 19798,
+ "▁triggered": 19799,
+ "ély": 19800,
+ "ülés": 19801,
+ "▁Oliv": 19802,
+ "▁verso": 19803,
+ "▁lle": 19804,
+ "▁Gli": 19805,
+ "▁Ltd": 19806,
+ "oa": 19807,
+ "▁territorio": 19808,
+ "ordre": 19809,
+ "▁deck": 19810,
+ "dra": 19811,
+ "aszt": 19812,
+ "▁concerning": 19813,
+ "▁Additionally": 19814,
+ "▁které": 19815,
+ "▁grund": 19816,
+ "▁Gest": 19817,
+ "▁misunder": 19818,
+ "pret": 19819,
+ "────": 19820,
+ "▁reputation": 19821,
+ "zia": 19822,
+ "▁успе": 19823,
+ "▁escaped": 19824,
+ "▁Prag": 19825,
+ "perform": 19826,
+ "▁austral": 19827,
+ "▁Vater": 19828,
+ "час": 19829,
+ "▁races": 19830,
+ "▁Byte": 19831,
+ "Mask": 19832,
+ "▁Territ": 19833,
+ "стю": 19834,
+ "▁Voci": 19835,
+ "▁Fichier": 19836,
+ "▁Населення": 19837,
+ "▁Unterscheidung": 19838,
+ "teenth": 19839,
+ "▁pilot": 19840,
+ "▁ji": 19841,
+ "▁двух": 19842,
+ "▁orientation": 19843,
+ "indre": 19844,
+ "▁Dort": 19845,
+ "ças": 19846,
+ "пли": 19847,
+ "▁reaction": 19848,
+ "▁consisting": 19849,
+ "▁ferro": 19850,
+ "тисти": 19851,
+ "yard": 19852,
+ "▁сві": 19853,
+ "▁interpretation": 19854,
+ "ią": 19855,
+ "rah": 19856,
+ "▁fand": 19857,
+ "Public": 19858,
+ "▁universe": 19859,
+ "▁retir": 19860,
+ "▁conscious": 19861,
+ "arqu": 19862,
+ "▁waste": 19863,
+ "▁Bib": 19864,
+ "yclerView": 19865,
+ "▁listening": 19866,
+ "gleich": 19867,
+ "niejs": 19868,
+ "▁correlation": 19869,
+ "▁receiver": 19870,
+ "▁уда": 19871,
+ "▁courage": 19872,
+ "uchs": 19873,
+ "fass": 19874,
+ "▁chunk": 19875,
+ "▁Anfang": 19876,
+ "▁großen": 19877,
+ "continue": 19878,
+ "▁Warszawa": 19879,
+ "hé": 19880,
+ "iy": 19881,
+ "ivement": 19882,
+ "▁α": 19883,
+ "▁exposed": 19884,
+ "▁zahl": 19885,
+ "▁sacr": 19886,
+ "▁Looks": 19887,
+ "▁eager": 19888,
+ "enten": 19889,
+ "Cursor": 19890,
+ "/_": 19891,
+ "ixa": 19892,
+ "рела": 19893,
+ "знача": 19894,
+ "▁фамилией": 19895,
+ "▁argent": 19896,
+ "▁Anders": 19897,
+ "œuvre": 19898,
+ "▁Isa": 19899,
+ "мента": 19900,
+ "▁advers": 19901,
+ "riction": 19902,
+ "GP": 19903,
+ "▁після": 19904,
+ "▁preserve": 19905,
+ "▁Garden": 19906,
+ "Rate": 19907,
+ "après": 19908,
+ "▁readable": 19909,
+ "indu": 19910,
+ "▁skill": 19911,
+ "▁helping": 19912,
+ "ographique": 19913,
+ "cling": 19914,
+ "ologist": 19915,
+ "▁Filter": 19916,
+ "▁finger": 19917,
+ "▁Vall": 19918,
+ "▁Polish": 19919,
+ "lg": 19920,
+ "▁Familien": 19921,
+ "▁waters": 19922,
+ "▁pseud": 19923,
+ "aza": 19924,
+ "_)": 19925,
+ "ARY": 19926,
+ "▁среди": 19927,
+ "▁Must": 19928,
+ "▁Bod": 19929,
+ "anon": 19930,
+ "▁lado": 19931,
+ "▁tight": 19932,
+ "imen": 19933,
+ "appen": 19934,
+ "frames": 19935,
+ "ingers": 19936,
+ "▁COVID": 19937,
+ "▁зі": 19938,
+ "▁све": 19939,
+ "▁ць": 19940,
+ "▁Left": 19941,
+ "]];": 19942,
+ "чь": 19943,
+ "фика": 19944,
+ "▁сло": 19945,
+ "▁пі": 19946,
+ "▁existe": 19947,
+ "▁Atlantic": 19948,
+ "▁maintained": 19949,
+ "▁irre": 19950,
+ "▁année": 19951,
+ "▁commented": 19952,
+ "веро": 19953,
+ "berta": 19954,
+ "▁Lad": 19955,
+ "▁Upon": 19956,
+ "▁pause": 19957,
+ "mill": 19958,
+ "opter": 19959,
+ "UK": 19960,
+ "рес": 19961,
+ "нциклопеди": 19962,
+ "▁alongside": 19963,
+ "▁robot": 19964,
+ "▁fert": 19965,
+ "▁moy": 19966,
+ "▁ade": 19967,
+ "Mapper": 19968,
+ ")->": 19969,
+ "igua": 19970,
+ "étique": 19971,
+ "тка": 19972,
+ "alias": 19973,
+ "▁ори": 19974,
+ "▁Magn": 19975,
+ "▁gehörte": 19976,
+ "imb": 19977,
+ ")}{\\": 19978,
+ "▁Wikipédia": 19979,
+ "▁urs": 19980,
+ "▁ende": 19981,
+ "leb": 19982,
+ "▁GC": 19983,
+ "Hol": 19984,
+ "ancing": 19985,
+ "Union": 19986,
+ "▁tenía": 19987,
+ "TT": 19988,
+ "▁estate": 19989,
+ "há": 19990,
+ "▁полі": 19991,
+ "ultan": 19992,
+ "▁Hockey": 19993,
+ "ulse": 19994,
+ "▁choices": 19995,
+ "scher": 19996,
+ "▁[],": 19997,
+ "▁potentially": 19998,
+ "▁Übers": 19999,
+ "▁admit": 20000,
+ "Comment": 20001,
+ "стя": 20002,
+ "▁Vien": 20003,
+ "▁ці": 20004,
+ "▁permut": 20005,
+ "cgi": 20006,
+ "▁crít": 20007,
+ "Console": 20008,
+ "ctic": 20009,
+ "▁okres": 20010,
+ "awk": 20011,
+ "football": 20012,
+ "ouest": 20013,
+ "CTYPE": 20014,
+ "ologique": 20015,
+ "▁constit": 20016,
+ "▁interests": 20017,
+ "▁Progress": 20018,
+ "▁Menu": 20019,
+ "▁také": 20020,
+ "▁Asian": 20021,
+ "▁защи": 20022,
+ "▁younger": 20023,
+ "▁wished": 20024,
+ "▁Sort": 20025,
+ "▁audience": 20026,
+ "amba": 20027,
+ "▁gehört": 20028,
+ "▁Kansas": 20029,
+ "yaume": 20030,
+ "▁Professional": 20031,
+ "âce": 20032,
+ "▁fatto": 20033,
+ "tod": 20034,
+ "▁datasets": 20035,
+ "▁fare": 20036,
+ "▁waves": 20037,
+ "~/": 20038,
+ "▁measurement": 20039,
+ "▁wol": 20040,
+ "indust": 20041,
+ "▁struggling": 20042,
+ "▁pulled": 20043,
+ "▁caratter": 20044,
+ "▁Externe": 20045,
+ "▁действи": 20046,
+ "cnt": 20047,
+ "liches": 20048,
+ "▁Possible": 20049,
+ "▁faced": 20050,
+ "▁hypothesis": 20051,
+ "▁kilom": 20052,
+ "▁när": 20053,
+ "boolean": 20054,
+ "PY": 20055,
+ "ampa": 20056,
+ "▁kiss": 20057,
+ "▁astero": 20058,
+ "▁negli": 20059,
+ "aments": 20060,
+ "▁Stu": 20061,
+ "ató": 20062,
+ "▁Constitution": 20063,
+ "▁interpol": 20064,
+ "▁Unable": 20065,
+ "▁pis": 20066,
+ "▁parc": 20067,
+ "\"])": 20068,
+ "pler": 20069,
+ "▁autory": 20070,
+ "▁algunos": 20071,
+ "ywna": 20072,
+ "}))": 20073,
+ "▁falls": 20074,
+ "▁équip": 20075,
+ "▁emit": 20076,
+ "▁profil": 20077,
+ "gets": 20078,
+ "фо": 20079,
+ "▁Military": 20080,
+ "▁nombreux": 20081,
+ "oct": 20082,
+ "Replace": 20083,
+ "▁seasons": 20084,
+ "▁château": 20085,
+ "▁typeof": 20086,
+ "polit": 20087,
+ "▁rand": 20088,
+ "▁quar": 20089,
+ "▁erstmals": 20090,
+ "сини": 20091,
+ "▁payload": 20092,
+ "По": 20093,
+ "кін": 20094,
+ "repo": 20095,
+ "▁Pav": 20096,
+ "Score": 20097,
+ "erves": 20098,
+ "▁sollte": 20099,
+ "▁між": 20100,
+ "ébec": 20101,
+ "▁clip": 20102,
+ "▁Nice": 20103,
+ "▁neben": 20104,
+ "▁assass": 20105,
+ "itories": 20106,
+ "▁unity": 20107,
+ "▁ен": 20108,
+ "▁Institut": 20109,
+ "▁internationale": 20110,
+ "▁наук": 20111,
+ "▁comand": 20112,
+ "▁kleine": 20113,
+ "▁adjacent": 20114,
+ "▁delivered": 20115,
+ "▁ше": 20116,
+ "зем": 20117,
+ "▁cot": 20118,
+ "visual": 20119,
+ "вает": 20120,
+ "▁Census": 20121,
+ "\\_": 20122,
+ "▁territory": 20123,
+ "чил": 20124,
+ "чные": 20125,
+ "flutter": 20126,
+ "DidLoad": 20127,
+ "Documents": 20128,
+ "▁dob": 20129,
+ "Bre": 20130,
+ "animate": 20131,
+ "▁biz": 20132,
+ "▁bata": 20133,
+ "▁SU": 20134,
+ "eso": 20135,
+ "▁priority": 20136,
+ "ván": 20137,
+ "iras": 20138,
+ "▁charged": 20139,
+ "▁Micro": 20140,
+ "atoire": 20141,
+ "чер": 20142,
+ "abad": 20143,
+ "uru": 20144,
+ "▁vš": 20145,
+ "dire": 20146,
+ "▁Twitter": 20147,
+ "▁мето": 20148,
+ ")..": 20149,
+ "▁Цент": 20150,
+ "▁entwick": 20151,
+ "▁Mind": 20152,
+ "▁функ": 20153,
+ "Future": 20154,
+ "lst": 20155,
+ "łoż": 20156,
+ "fli": 20157,
+ "tensor": 20158,
+ "▁topology": 20159,
+ "▁arte": 20160,
+ "ERT": 20161,
+ "▁variance": 20162,
+ "Images": 20163,
+ "▁(@": 20164,
+ "ArrayList": 20165,
+ "OC": 20166,
+ "▁Демо": 20167,
+ "aucoup": 20168,
+ "▁denotes": 20169,
+ "imon": 20170,
+ "њи": 20171,
+ "▁Przyp": 20172,
+ "▁Zag": 20173,
+ "▁дире": 20174,
+ "▁Similarly": 20175,
+ "бро": 20176,
+ "▁militaire": 20177,
+ "▁тому": 20178,
+ "▁Johnny": 20179,
+ "▁Мексику": 20180,
+ "ћа": 20181,
+ "Supp": 20182,
+ "▁junior": 20183,
+ "oltre": 20184,
+ "▁Моск": 20185,
+ "▁admitted": 20186,
+ "▁religios": 20187,
+ "зяй": 20188,
+ "его": 20189,
+ "▁tears": 20190,
+ "ingo": 20191,
+ "odu": 20192,
+ "iveness": 20193,
+ "▁logo": 20194,
+ "▁último": 20195,
+ "▁aliment": 20196,
+ "▁UITableView": 20197,
+ ")!": 20198,
+ "▁nj": 20199,
+ "lette": 20200,
+ "▁resident": 20201,
+ "▁termine": 20202,
+ "▁уже": 20203,
+ "▁Сте": 20204,
+ "office": 20205,
+ "▁carte": 20206,
+ "▁livre": 20207,
+ "▁Москов": 20208,
+ "▁elections": 20209,
+ "зиден": 20210,
+ "Trigger": 20211,
+ "▁Benjamin": 20212,
+ "addClass": 20213,
+ "ског": 20214,
+ "▁Observable": 20215,
+ "Cla": 20216,
+ "gemein": 20217,
+ "▁consent": 20218,
+ "ври": 20219,
+ "▁unfold": 20220,
+ "▁governor": 20221,
+ "нал": 20222,
+ "▁toda": 20223,
+ "Remote": 20224,
+ "arias": 20225,
+ "▁instal": 20226,
+ "fixed": 20227,
+ "▁decay": 20228,
+ "▁дерев": 20229,
+ "xyz": 20230,
+ "▁DATE": 20231,
+ "imar": 20232,
+ "ntil": 20233,
+ "▁startup": 20234,
+ "alion": 20235,
+ "▁kolej": 20236,
+ "cios": 20237,
+ "▁ranges": 20238,
+ "▁stupid": 20239,
+ "▁implementations": 20240,
+ "▁rm": 20241,
+ "ének": 20242,
+ "▁gcc": 20243,
+ "▁scène": 20244,
+ "Navigation": 20245,
+ "▁ ": 20246,
+ "▁кан": 20247,
+ "▁towns": 20248,
+ "Username": 20249,
+ "▁фе": 20250,
+ "▁leaders": 20251,
+ "oit": 20252,
+ "wär": 20253,
+ "▁dummy": 20254,
+ "▁assistant": 20255,
+ "{$\\": 20256,
+ "бір": 20257,
+ "▁roy": 20258,
+ "▁Layout": 20259,
+ "▁Jung": 20260,
+ "Lines": 20261,
+ "▁Holland": 20262,
+ "пор": 20263,
+ "▁Гри": 20264,
+ "▁Bened": 20265,
+ "▁Под": 20266,
+ "xls": 20267,
+ "▁Gol": 20268,
+ "▁Aleks": 20269,
+ "▁ejemplo": 20270,
+ "▁sezon": 20271,
+ "arding": 20272,
+ "footnote": 20273,
+ "▁Congrès": 20274,
+ "refer": 20275,
+ "ската": 20276,
+ "Iterator": 20277,
+ "▁ourselves": 20278,
+ "▁Mic": 20279,
+ "▁código": 20280,
+ "▁площа": 20281,
+ "▁\\$": 20282,
+ "▁Charlie": 20283,
+ "Nodes": 20284,
+ "▁puzz": 20285,
+ "▁Identifier": 20286,
+ "▁flutter": 20287,
+ "▁prü": 20288,
+ "▁ort": 20289,
+ "▁Cort": 20290,
+ "asticsearch": 20291,
+ "▁Свя": 20292,
+ "▁Bull": 20293,
+ "udem": 20294,
+ "▁apparent": 20295,
+ ":--": 20296,
+ "▁Хар": 20297,
+ "▁Lap": 20298,
+ "▁comport": 20299,
+ "matically": 20300,
+ "▁curios": 20301,
+ "▁может": 20302,
+ "▁Bh": 20303,
+ "apping": 20304,
+ "▁basketball": 20305,
+ "zetek": 20306,
+ "▁runt": 20307,
+ "▁Milan": 20308,
+ "fection": 20309,
+ "ría": 20310,
+ "▁Kin": 20311,
+ "▁slower": 20312,
+ "both": 20313,
+ "▁Instituto": 20314,
+ "▁Historical": 20315,
+ "▁również": 20316,
+ "matches": 20317,
+ "yci": 20318,
+ "▁espèce": 20319,
+ "▁Schweizer": 20320,
+ "NT": 20321,
+ "SF": 20322,
+ "acia": 20323,
+ "forge": 20324,
+ "Points": 20325,
+ "numbers": 20326,
+ "▁falling": 20327,
+ "▁inheritance": 20328,
+ "▁Erst": 20329,
+ "▁customers": 20330,
+ "▁actu": 20331,
+ "▁migration": 20332,
+ "\\'": 20333,
+ "Plan": 20334,
+ "Mr": 20335,
+ "othy": 20336,
+ "▁upgrad": 20337,
+ "бира": 20338,
+ "▁Offic": 20339,
+ "▁Wait": 20340,
+ "▁toler": 20341,
+ "ardon": 20342,
+ "▁slide": 20343,
+ ")_": 20344,
+ "▁став": 20345,
+ "▁nuclear": 20346,
+ "▁Bil": 20347,
+ "owner": 20348,
+ "▁Harris": 20349,
+ "Information": 20350,
+ "▁pó": 20351,
+ "▁включа": 20352,
+ "▁nuovo": 20353,
+ "▁Cav": 20354,
+ "▁Descri": 20355,
+ "▁ак": 20356,
+ "ództ": 20357,
+ "▁reactjs": 20358,
+ "▁Adams": 20359,
+ "▁Alternatively": 20360,
+ "струк": 20361,
+ ")`,": 20362,
+ "substring": 20363,
+ "▁massive": 20364,
+ "▁heavily": 20365,
+ "▁сезо": 20366,
+ "▁Ana": 20367,
+ "▁vale": 20368,
+ "Pad": 20369,
+ "▁Either": 20370,
+ "▁rs": 20371,
+ "anche": 20372,
+ "▁uploaded": 20373,
+ "▁(/": 20374,
+ "▁спор": 20375,
+ "▁reduction": 20376,
+ "▁Tokyo": 20377,
+ "gren": 20378,
+ "▁migli": 20379,
+ "▁iterator": 20380,
+ "stav": 20381,
+ "▁supporting": 20382,
+ "▁österreich": 20383,
+ "▁NSLog": 20384,
+ "istiques": 20385,
+ "rimin": 20386,
+ "MODE": 20387,
+ "}}}\\": 20388,
+ "▁explos": 20389,
+ "оте": 20390,
+ "▁(„": 20391,
+ "Sal": 20392,
+ "▁simplest": 20393,
+ "▁già": 20394,
+ "▁тан": 20395,
+ "▁cyl": 20396,
+ "bir": 20397,
+ "▁measurements": 20398,
+ "Created": 20399,
+ "erek": 20400,
+ "lookup": 20401,
+ "wirtschaft": 20402,
+ "▁Воло": 20403,
+ "timer": 20404,
+ "derr": 20405,
+ "▁стала": 20406,
+ "▁scenes": 20407,
+ "▁persu": 20408,
+ "liest": 20409,
+ "▁schedule": 20410,
+ "tal": 20411,
+ "лено": 20412,
+ "▁painting": 20413,
+ "▁improvement": 20414,
+ "software": 20415,
+ "▁governo": 20416,
+ "▁Hir": 20417,
+ "Execution": 20418,
+ "▁Okay": 20419,
+ "Prop": 20420,
+ "loster": 20421,
+ "ніципалі": 20422,
+ "▁peuvent": 20423,
+ "olu": 20424,
+ "▁Фа": 20425,
+ "rollo": 20426,
+ "▁коло": 20427,
+ "▁carrière": 20428,
+ "▁toggle": 20429,
+ "▁($\\": 20430,
+ "▁aggregate": 20431,
+ "▁Бі": 20432,
+ "textarea": 20433,
+ "Ok": 20434,
+ "itto": 20435,
+ "▁stim": 20436,
+ "▁recursion": 20437,
+ "▁Federation": 20438,
+ ")_{": 20439,
+ "ategor": 20440,
+ "▁distribu": 20441,
+ "Cloud": 20442,
+ "▁madre": 20443,
+ "▁iv": 20444,
+ "▁Lieutenant": 20445,
+ "▁substant": 20446,
+ "▁leaf": 20447,
+ "▁Kontrola": 20448,
+ "VA": 20449,
+ "▁tomb": 20450,
+ "эн": 20451,
+ "atoes": 20452,
+ "▁godine": 20453,
+ "▁#>": 20454,
+ "Cert": 20455,
+ "▁empresa": 20456,
+ "Props": 20457,
+ "▁planned": 20458,
+ "▁randomly": 20459,
+ "jähr": 20460,
+ "elem": 20461,
+ "▁Operation": 20462,
+ "*`": 20463,
+ "protocol": 20464,
+ "()));": 20465,
+ "wel": 20466,
+ "▁praw": 20467,
+ "▁сим": 20468,
+ "▁wob": 20469,
+ "▁hace": 20470,
+ "▁nearest": 20471,
+ "disable": 20472,
+ "▁Commun": 20473,
+ "▁revel": 20474,
+ "Free": 20475,
+ "▁brackets": 20476,
+ "IOException": 20477,
+ "▁alto": 20478,
+ "▁marry": 20479,
+ "▁auc": 20480,
+ "),\\": 20481,
+ "▁typo": 20482,
+ "edad": 20483,
+ "ará": 20484,
+ "icator": 20485,
+ "tatywna": 20486,
+ "▁buff": 20487,
+ "orders": 20488,
+ "▁asynchronous": 20489,
+ "▁econ": 20490,
+ "▁feu": 20491,
+ "▁Iron": 20492,
+ "▁rising": 20493,
+ "Radius": 20494,
+ "clk": 20495,
+ "▁zweiten": 20496,
+ "`'": 20497,
+ "▁uniqu": 20498,
+ "▁FM": 20499,
+ "▁Bran": 20500,
+ "▁flu": 20501,
+ "▁sensitive": 20502,
+ "urre": 20503,
+ "▁Iter": 20504,
+ "▁Sein": 20505,
+ "▁diferentes": 20506,
+ "▁него": 20507,
+ "chia": 20508,
+ "▁Anleitung": 20509,
+ "aturday": 20510,
+ "▁shorter": 20511,
+ "▁translated": 20512,
+ "▁Rés": 20513,
+ "▁rode": 20514,
+ "drag": 20515,
+ "▁lange": 20516,
+ "Bi": 20517,
+ "üb": 20518,
+ "leur": 20519,
+ "▁ordering": 20520,
+ "alous": 20521,
+ "▁Кор": 20522,
+ "archar": 20523,
+ "destroy": 20524,
+ "ervation": 20525,
+ "]],": 20526,
+ "AccessorImpl": 20527,
+ "▁autorytatywna": 20528,
+ "Sequence": 20529,
+ "▁proyect": 20530,
+ "▁bran": 20531,
+ "▁(+": 20532,
+ "▁Kab": 20533,
+ "▁zem": 20534,
+ "▁Calcul": 20535,
+ "▁seul": 20536,
+ "▁Niger": 20537,
+ "▁chiam": 20538,
+ "throw": 20539,
+ "▁Planet": 20540,
+ "bildung": 20541,
+ "▁zones": 20542,
+ "transition": 20543,
+ "лений": 20544,
+ "▁mapped": 20545,
+ "onaut": 20546,
+ "Pair": 20547,
+ "ilian": 20548,
+ "▁Morgan": 20549,
+ "▁unto": 20550,
+ "jou": 20551,
+ "▁hid": 20552,
+ "▁Meta": 20553,
+ "▁elles": 20554,
+ "Lou": 20555,
+ "rama": 20556,
+ "geordnet": 20557,
+ "▁scarcely": 20558,
+ "▁mint": 20559,
+ "Focus": 20560,
+ "▁Alter": 20561,
+ "▁dio": 20562,
+ "▁ampl": 20563,
+ "ièrement": 20564,
+ "▁исследова": 20565,
+ "LED": 20566,
+ "algorithm": 20567,
+ "▁сайті": 20568,
+ "▁\"\")": 20569,
+ "History": 20570,
+ "pk": 20571,
+ "▁Whit": 20572,
+ "▁систем": 20573,
+ "▁Kirchen": 20574,
+ "rà": 20575,
+ "APP": 20576,
+ "▁<%": 20577,
+ "antine": 20578,
+ "▁Disk": 20579,
+ "conv": 20580,
+ "welt": 20581,
+ "▁Fut": 20582,
+ "▁Nom": 20583,
+ "ordo": 20584,
+ "ellij": 20585,
+ "▁receives": 20586,
+ "cow": 20587,
+ "ytu": 20588,
+ "▁obras": 20589,
+ "▁purchase": 20590,
+ "▁earned": 20591,
+ "▁accessed": 20592,
+ "axi": 20593,
+ "▁Mans": 20594,
+ "ivan": 20595,
+ "▁tuvo": 20596,
+ "▁Trace": 20597,
+ "rimonio": 20598,
+ "▁desenvol": 20599,
+ "érique": 20600,
+ "▁resulted": 20601,
+ "▁computing": 20602,
+ "▁inspired": 20603,
+ "▁Prize": 20604,
+ "*\"": 20605,
+ "Comput": 20606,
+ "▁extensive": 20607,
+ "èg": 20608,
+ "▁Portály": 20609,
+ "▁castle": 20610,
+ "▁*.": 20611,
+ "▁photos": 20612,
+ "▁voet": 20613,
+ "ONG": 20614,
+ "▁Alle": 20615,
+ "▁threaten": 20616,
+ "stüt": 20617,
+ "▁albums": 20618,
+ "▁dense": 20619,
+ "flat": 20620,
+ "continu": 20621,
+ "Subject": 20622,
+ "▁readonly": 20623,
+ "Opt": 20624,
+ "писко": 20625,
+ "▁Aber": 20626,
+ "▁Position": 20627,
+ "▁Today": 20628,
+ "▁mini": 20629,
+ "▁Bef": 20630,
+ "listen": 20631,
+ "ственного": 20632,
+ "SUB": 20633,
+ "ossa": 20634,
+ "▁Pope": 20635,
+ "▁Jimmy": 20636,
+ "▁Дру": 20637,
+ "ungsseite": 20638,
+ "▁tren": 20639,
+ "optim": 20640,
+ "itsch": 20641,
+ "▁samt": 20642,
+ "▁испол": 20643,
+ "&=": 20644,
+ "▁Przypisy": 20645,
+ "▁продол": 20646,
+ "Cr": 20647,
+ "ermann": 20648,
+ "▁матери": 20649,
+ "▁Hugo": 20650,
+ "▁Deze": 20651,
+ "TRUE": 20652,
+ "▁defeat": 20653,
+ "▁watched": 20654,
+ "▁Gent": 20655,
+ "AUT": 20656,
+ "orous": 20657,
+ "▁опреде": 20658,
+ "orientation": 20659,
+ "▁distinguished": 20660,
+ "▁mesmo": 20661,
+ "▁sli": 20662,
+ "мена": 20663,
+ "mittel": 20664,
+ "gericht": 20665,
+ "eton": 20666,
+ "->{": 20667,
+ "▁wont": 20668,
+ "▁weg": 20669,
+ "▁classific": 20670,
+ "ilus": 20671,
+ "▁MD": 20672,
+ "tasks": 20673,
+ "▁chim": 20674,
+ "await": 20675,
+ "▁gang": 20676,
+ "▁wię": 20677,
+ "through": 20678,
+ "▁Russell": 20679,
+ "▁guessing": 20680,
+ "▁акт": 20681,
+ "блі": 20682,
+ "categories": 20683,
+ "сут": 20684,
+ "▁Fen": 20685,
+ "▁муж": 20686,
+ "▁newer": 20687,
+ "▁Async": 20688,
+ "▁terme": 20689,
+ ">/": 20690,
+ "пара": 20691,
+ "▁Trust": 20692,
+ "▁Opt": 20693,
+ "▁dah": 20694,
+ "▁wonderful": 20695,
+ "adratkil": 20696,
+ "▁Гра": 20697,
+ "mapping": 20698,
+ "▁discovery": 20699,
+ "▁BE": 20700,
+ "Enable": 20701,
+ "▁Friend": 20702,
+ "сня": 20703,
+ "▁controlled": 20704,
+ "чної": 20705,
+ "▁contributions": 20706,
+ "jší": 20707,
+ "▁Lev": 20708,
+ "▁francés": 20709,
+ "▁mic": 20710,
+ "zik": 20711,
+ "▁alem": 20712,
+ "cancel": 20713,
+ "!'": 20714,
+ "▁grat": 20715,
+ "▁Begriffsklär": 20716,
+ "Camera": 20717,
+ "ificación": 20718,
+ "ród": 20719,
+ "▁Arnold": 20720,
+ "▁bezeichneter": 20721,
+ "▁fought": 20722,
+ "▁deput": 20723,
+ "▁Drop": 20724,
+ "tax": 20725,
+ "dg": 20726,
+ "▁Hop": 20727,
+ "GN": 20728,
+ "▁Kirch": 20729,
+ "▁Бар": 20730,
+ "Invoke": 20731,
+ "▁erhalten": 20732,
+ "▁veel": 20733,
+ "▁wordpress": 20734,
+ "▁INNER": 20735,
+ "transaction": 20736,
+ "▁déjà": 20737,
+ "Fact": 20738,
+ "▁надмор": 20739,
+ "▁angularjs": 20740,
+ "▁át": 20741,
+ "▁alap": 20742,
+ "▁Price": 20743,
+ "▁effet": 20744,
+ "▁sphere": 20745,
+ "ClassLoader": 20746,
+ "▁rugby": 20747,
+ "▁kingdom": 20748,
+ "▁Mut": 20749,
+ "▁кино": 20750,
+ "▁reward": 20751,
+ "cit": 20752,
+ "▁presente": 20753,
+ "Sto": 20754,
+ "Character": 20755,
+ "logs": 20756,
+ "▁centrale": 20757,
+ "▁mouv": 20758,
+ "▁okay": 20759,
+ "▁aplic": 20760,
+ "More": 20761,
+ "ények": 20762,
+ "▁Köln": 20763,
+ "nett": 20764,
+ "▁истории": 20765,
+ "▁describing": 20766,
+ "▁soldier": 20767,
+ "▁Need": 20768,
+ "Light": 20769,
+ "▁\"\\<": 20770,
+ "▁hav": 20771,
+ "ermo": 20772,
+ "▁inferior": 20773,
+ "lea": 20774,
+ "▁gg": 20775,
+ "▁конце": 20776,
+ "fragment": 20777,
+ "sb": 20778,
+ "Country": 20779,
+ "▁vě": 20780,
+ "▁Beng": 20781,
+ "▁Это": 20782,
+ "▁водо": 20783,
+ "мар": 20784,
+ "STRING": 20785,
+ "▁új": 20786,
+ "multiple": 20787,
+ "statement": 20788,
+ "▁involves": 20789,
+ "▁tecn": 20790,
+ "Student": 20791,
+ "gré": 20792,
+ "▁lean": 20793,
+ "▁bringing": 20794,
+ "▁Medical": 20795,
+ "▁програм": 20796,
+ "▁Vog": 20797,
+ "▁жов": 20798,
+ "▁Spirit": 20799,
+ "nth": 20800,
+ "▁standards": 20801,
+ "▁Profile": 20802,
+ "▁ez": 20803,
+ "▁территории": 20804,
+ "▁stem": 20805,
+ "uil": 20806,
+ "▁Og": 20807,
+ "Btn": 20808,
+ "nal": 20809,
+ "▁nearby": 20810,
+ "▁producing": 20811,
+ "criv": 20812,
+ "▁assumptions": 20813,
+ "▁Spark": 20814,
+ "▁Lot": 20815,
+ "itudes": 20816,
+ "afka": 20817,
+ "five": 20818,
+ "atio": 20819,
+ "▁distinguish": 20820,
+ "rock": 20821,
+ "église": 20822,
+ "▁rappres": 20823,
+ ">\\<": 20824,
+ "лій": 20825,
+ "▁мини": 20826,
+ "▁intitulé": 20827,
+ "}}(\\": 20828,
+ "▁Rout": 20829,
+ "▁Border": 20830,
+ "▁overrid": 20831,
+ "HOST": 20832,
+ "ritten": 20833,
+ "say": 20834,
+ "▁Чи": 20835,
+ "ichtung": 20836,
+ "▁straightforward": 20837,
+ "obb": 20838,
+ "▁Terra": 20839,
+ "▁[:": 20840,
+ "Ben": 20841,
+ "▁composite": 20842,
+ ")+\\": 20843,
+ "▁crown": 20844,
+ "direction": 20845,
+ "▁несколько": 20846,
+ "▁avail": 20847,
+ "▁purchased": 20848,
+ "hook": 20849,
+ "eties": 20850,
+ "▁fase": 20851,
+ "▁Rum": 20852,
+ "▁genom": 20853,
+ "▁dét": 20854,
+ "ową": 20855,
+ "mpeg": 20856,
+ "▁Ін": 20857,
+ "desktop": 20858,
+ "▁injection": 20859,
+ "agle": 20860,
+ "▁Edd": 20861,
+ "_{(": 20862,
+ "▁Hem": 20863,
+ "utos": 20864,
+ "proj": 20865,
+ "▁superficie": 20866,
+ "Plot": 20867,
+ "▁Docker": 20868,
+ "ätz": 20869,
+ "kreich": 20870,
+ "▁unclear": 20871,
+ "▁Unity": 20872,
+ "▁streams": 20873,
+ "вид": 20874,
+ "▁simplified": 20875,
+ "Fill": 20876,
+ "▁sant": 20877,
+ "▁Kommun": 20878,
+ "▁duc": 20879,
+ "▁две": 20880,
+ "▁obs": 20881,
+ "žit": 20882,
+ "▁Janeiro": 20883,
+ "бя": 20884,
+ "▁presso": 20885,
+ "▁Ministry": 20886,
+ "▁burst": 20887,
+ "▁reaching": 20888,
+ "liter": 20889,
+ "▁responses": 20890,
+ "▁Eug": 20891,
+ "▁sod": 20892,
+ "▁Cord": 20893,
+ "▁Perm": 20894,
+ "parts": 20895,
+ "цима": 20896,
+ "variables": 20897,
+ "▁forgotten": 20898,
+ "Fern": 20899,
+ "ostęp": 20900,
+ "vl": 20901,
+ "▁См": 20902,
+ "kim": 20903,
+ "ając": 20904,
+ "наль": 20905,
+ "гле": 20906,
+ "helper": 20907,
+ "dup": 20908,
+ "euw": 20909,
+ "fra": 20910,
+ "ellite": 20911,
+ "anya": 20912,
+ "▁reign": 20913,
+ "gesamt": 20914,
+ "седа": 20915,
+ "▁Ryan": 20916,
+ "▁formatted": 20917,
+ "▁Borg": 20918,
+ "walk": 20919,
+ "▁ал": 20920,
+ "agnostics": 20921,
+ "▁Cape": 20922,
+ "▁Franco": 20923,
+ "▁fug": 20924,
+ ":)": 20925,
+ "юз": 20926,
+ "Fetch": 20927,
+ "▁roughly": 20928,
+ "▁Mis": 20929,
+ "uetooth": 20930,
+ "▁Venezuela": 20931,
+ "▁astronom": 20932,
+ "\")`": 20933,
+ "ombres": 20934,
+ "▁которой": 20935,
+ "óp": 20936,
+ "owed": 20937,
+ "HR": 20938,
+ "▁Camer": 20939,
+ "кие": 20940,
+ "parison": 20941,
+ "▁Bij": 20942,
+ "templates": 20943,
+ "environment": 20944,
+ "ização": 20945,
+ "▁ér": 20946,
+ "▁plenty": 20947,
+ "▁TypeError": 20948,
+ "▁forty": 20949,
+ "коном": 20950,
+ "▁Sed": 20951,
+ "▁thats": 20952,
+ "▁gravity": 20953,
+ "▁spiritual": 20954,
+ "▁duplicates": 20955,
+ "▁encryption": 20956,
+ "▁reven": 20957,
+ "getInstance": 20958,
+ "ällor": 20959,
+ "disk": 20960,
+ "▁thro": 20961,
+ "▁Nak": 20962,
+ "▁poł": 20963,
+ "▁heraus": 20964,
+ "invalid": 20965,
+ "sBy": 20966,
+ "Boot": 20967,
+ "▁bucket": 20968,
+ "▁Parse": 20969,
+ "hex": 20970,
+ "Conne": 20971,
+ "▁Computer": 20972,
+ "zyk": 20973,
+ "▁induced": 20974,
+ "▁Bruno": 20975,
+ "▁addressed": 20976,
+ "mania": 20977,
+ "▁inclus": 20978,
+ "ounced": 20979,
+ "scriptsize": 20980,
+ "▁Epis": 20981,
+ "▁vocal": 20982,
+ "▁Jonathan": 20983,
+ "ум": 20984,
+ "staden": 20985,
+ "▁Children": 20986,
+ "пей": 20987,
+ "Italia": 20988,
+ "reibung": 20989,
+ "▁nost": 20990,
+ "▁ещё": 20991,
+ "▁Werke": 20992,
+ "▁actress": 20993,
+ "▁Minnesota": 20994,
+ "rike": 20995,
+ "▁tek": 20996,
+ "▁primeira": 20997,
+ "▁frat": 20998,
+ "▁Configuration": 20999,
+ "▁bid": 21000,
+ "trigger": 21001,
+ "Contents": 21002,
+ "▁constantly": 21003,
+ "!!!": 21004,
+ "▁dread": 21005,
+ "▁hundreds": 21006,
+ "istische": 21007,
+ "▁cardinal": 21008,
+ "TABLE": 21009,
+ "▁estos": 21010,
+ "assoc": 21011,
+ "gray": 21012,
+ "▁Schloss": 21013,
+ "▁sche": 21014,
+ "cong": 21015,
+ "▁koji": 21016,
+ "ètes": 21017,
+ "▁Era": 21018,
+ "omi": 21019,
+ "▁SR": 21020,
+ "▁wrapped": 21021,
+ "▁trunc": 21022,
+ "▁ah": 21023,
+ "egos": 21024,
+ "oki": 21025,
+ "mouth": 21026,
+ "logging": 21027,
+ "▁fasc": 21028,
+ "▁Sample": 21029,
+ "▁conte": 21030,
+ "▁villa": 21031,
+ "comments": 21032,
+ "▁batal": 21033,
+ "▁García": 21034,
+ "▁Norte": 21035,
+ "▁wechsel": 21036,
+ "▁Museo": 21037,
+ "▁enfants": 21038,
+ "▁whisper": 21039,
+ "nake": 21040,
+ "▁jednak": 21041,
+ "lês": 21042,
+ "enders": 21043,
+ "▁äl": 21044,
+ "▁VB": 21045,
+ "▁cookies": 21046,
+ "zeti": 21047,
+ "atum": 21048,
+ "▁dedu": 21049,
+ "▁arranged": 21050,
+ "laz": 21051,
+ "▁cuenta": 21052,
+ "yml": 21053,
+ "▁flav": 21054,
+ "MR": 21055,
+ "emet": 21056,
+ "біль": 21057,
+ "cmp": 21058,
+ "ituto": 21059,
+ "zett": 21060,
+ "▁envi": 21061,
+ "▁kot": 21062,
+ "$:": 21063,
+ "upper": 21064,
+ "▁Alberto": 21065,
+ "kb": 21066,
+ "Anal": 21067,
+ "ört": 21068,
+ "▁[-": 21069,
+ "▁führte": 21070,
+ "iah": 21071,
+ "▁Tun": 21072,
+ "▁искус": 21073,
+ "uwe": 21074,
+ "ispecies": 21075,
+ "Pub": 21076,
+ "Sync": 21077,
+ "▁Colombia": 21078,
+ "akers": 21079,
+ "▁Imperial": 21080,
+ "oving": 21081,
+ "▁intelligence": 21082,
+ "▁equipment": 21083,
+ "ein": 21084,
+ "dagger": 21085,
+ "▁Edge": 21086,
+ "▁Республи": 21087,
+ "adratkilometer": 21088,
+ "▁Anto": 21089,
+ "▁charges": 21090,
+ "▁Ocean": 21091,
+ "▁simplify": 21092,
+ "▁miesz": 21093,
+ "running": 21094,
+ "▁Lac": 21095,
+ "genommen": 21096,
+ "▁representative": 21097,
+ "=.": 21098,
+ "▁Pred": 21099,
+ "▁spite": 21100,
+ "ciale": 21101,
+ "▁nave": 21102,
+ "▁extens": 21103,
+ "▁neutral": 21104,
+ "▁которая": 21105,
+ ".": 21106,
+ "▁CS": 21107,
+ "uky": 21108,
+ "▁whilst": 21109,
+ "▁lingu": 21110,
+ "extract": 21111,
+ "zeichnung": 21112,
+ "▁Feld": 21113,
+ "▁valuable": 21114,
+ "urable": 21115,
+ "▁Jen": 21116,
+ "▁struggle": 21117,
+ "▁committee": 21118,
+ "▁Wohn": 21119,
+ "▁sqlite": 21120,
+ "▁Temp": 21121,
+ "▁COUNT": 21122,
+ "consin": 21123,
+ "міні": 21124,
+ "usage": 21125,
+ "▁quest": 21126,
+ "дян": 21127,
+ "eared": 21128,
+ "▁Schne": 21129,
+ "▁dod": 21130,
+ "▁recht": 21131,
+ "▁kao": 21132,
+ "Capt": 21133,
+ "labels": 21134,
+ "▁ellos": 21135,
+ "▁industri": 21136,
+ "▁Colorado": 21137,
+ "▁contrary": 21138,
+ "▁Dum": 21139,
+ "Bel": 21140,
+ "▁Vent": 21141,
+ "▁authorities": 21142,
+ "YES": 21143,
+ "ensed": 21144,
+ "umbnail": 21145,
+ "izzazione": 21146,
+ "kou": 21147,
+ "rica": 21148,
+ "▁sect": 21149,
+ "tests": 21150,
+ "▁Klein": 21151,
+ "▁legs": 21152,
+ "▁Pietro": 21153,
+ "fu": 21154,
+ "thy": 21155,
+ "▁bast": 21156,
+ "▁tedes": 21157,
+ "ettes": 21158,
+ "▁repet": 21159,
+ "acre": 21160,
+ "retto": 21161,
+ "▁remainder": 21162,
+ "▁Geg": 21163,
+ "▁Гор": 21164,
+ "▁Rechts": 21165,
+ "▁filtering": 21166,
+ "ouss": 21167,
+ "▁deployed": 21168,
+ "▁prüfe": 21169,
+ "▁bitmap": 21170,
+ "▁sovi": 21171,
+ "▁<%=": 21172,
+ "▁entferne": 21173,
+ "kill": 21174,
+ "tabs": 21175,
+ "Expr": 21176,
+ "кому": 21177,
+ "▁Republican": 21178,
+ "▁Size": 21179,
+ "▁poll": 21180,
+ "▁rien": 21181,
+ "▁клуб": 21182,
+ "énd": 21183,
+ "▁Bio": 21184,
+ "▁perl": 21185,
+ "▁Andreas": 21186,
+ "вин": 21187,
+ "▁distant": 21188,
+ "▁Finn": 21189,
+ "▁Mitch": 21190,
+ "▁%{": 21191,
+ "▁charm": 21192,
+ "▁Mul": 21193,
+ "perate": 21194,
+ "▁sciences": 21195,
+ "▁monot": 21196,
+ "▁debido": 21197,
+ "rizona": 21198,
+ "iec": 21199,
+ "▁alarm": 21200,
+ "▁promoted": 21201,
+ "▁letzten": 21202,
+ "atin": 21203,
+ "▁conclus": 21204,
+ "herr": 21205,
+ "▁éch": 21206,
+ "edish": 21207,
+ "gor": 21208,
+ "▁stycz": 21209,
+ "▁impress": 21210,
+ "ruits": 21211,
+ "ierungs": 21212,
+ "▁parsed": 21213,
+ "▁río": 21214,
+ "▁Pakistan": 21215,
+ "igner": 21216,
+ "▁watching": 21217,
+ "▁databases": 21218,
+ "eding": 21219,
+ "▁Specific": 21220,
+ "▁generale": 21221,
+ "lax": 21222,
+ "▁Looking": 21223,
+ "▁bond": 21224,
+ "▁vista": 21225,
+ "▁ec": 21226,
+ "▁grud": 21227,
+ "▁deleting": 21228,
+ "tac": 21229,
+ "▁jazz": 21230,
+ "jm": 21231,
+ "▁pół": 21232,
+ "Language": 21233,
+ "delegate": 21234,
+ "▁registry": 21235,
+ "▁Shared": 21236,
+ "строй": 21237,
+ "Music": 21238,
+ "▁vessel": 21239,
+ ".@": 21240,
+ "▁Wür": 21241,
+ "▁fed": 21242,
+ "▁eredet": 21243,
+ "▁Gö": 21244,
+ "upt": 21245,
+ "▁pleasant": 21246,
+ "▁tableView": 21247,
+ "▁counting": 21248,
+ "▁Kriegs": 21249,
+ "▁получил": 21250,
+ "▁],": 21251,
+ "виа": 21252,
+ "▁až": 21253,
+ "ToList": 21254,
+ "▁Advent": 21255,
+ "▁sketch": 21256,
+ "pn": 21257,
+ "▁sier": 21258,
+ "▁находится": 21259,
+ "iop": 21260,
+ "▁ly": 21261,
+ "▁Schl": 21262,
+ "Contract": 21263,
+ "associ": 21264,
+ "▁Pear": 21265,
+ "▁whe": 21266,
+ "▁Delete": 21267,
+ "▁elem": 21268,
+ "ätte": 21269,
+ "▁česk": 21270,
+ "▁MC": 21271,
+ "▁shout": 21272,
+ "akespe": 21273,
+ "▁defaults": 21274,
+ "penas": 21275,
+ "òria": 21276,
+ "▁hierarchy": 21277,
+ "ipt": 21278,
+ "▁Elis": 21279,
+ "likely": 21280,
+ "Rot": 21281,
+ "▁cow": 21282,
+ "▁strike": 21283,
+ "▁березня": 21284,
+ "▁ensemble": 21285,
+ "▁Pseud": 21286,
+ "Virtual": 21287,
+ "▁її": 21288,
+ "ROOT": 21289,
+ "сия": 21290,
+ "▁соб": 21291,
+ "▁invert": 21292,
+ "▁switching": 21293,
+ "htaccess": 21294,
+ "▁награ": 21295,
+ "▁Norman": 21296,
+ "▁inglês": 21297,
+ "![": 21298,
+ "ousel": 21299,
+ "DOCTYPE": 21300,
+ "▁suppress": 21301,
+ "▁accompanied": 21302,
+ "▁Bé": 21303,
+ "implies": 21304,
+ "nut": 21305,
+ "▁Syntax": 21306,
+ "inho": 21307,
+ "▁tam": 21308,
+ "▁focused": 21309,
+ "avano": 21310,
+ "▁Baden": 21311,
+ "had": 21312,
+ "▁({": 21313,
+ "Ty": 21314,
+ "▁рос": 21315,
+ "▁чолові": 21316,
+ "oge": 21317,
+ "jsp": 21318,
+ "Blue": 21319,
+ "▁suas": 21320,
+ "apers": 21321,
+ "Short": 21322,
+ "Renderer": 21323,
+ "▁sendo": 21324,
+ "▁Cec": 21325,
+ "▁`__": 21326,
+ "▁Municipal": 21327,
+ "dotnet": 21328,
+ "▁bev": 21329,
+ "▁DA": 21330,
+ "MenuItem": 21331,
+ "▁amp": 21332,
+ "▁uri": 21333,
+ "▁fier": 21334,
+ "слен": 21335,
+ "),(": 21336,
+ "cules": 21337,
+ "illas": 21338,
+ "LOCK": 21339,
+ "▁derive": 21340,
+ "uben": 21341,
+ "▁GT": 21342,
+ "▁Mack": 21343,
+ "▁scholar": 21344,
+ ")}}": 21345,
+ "зм": 21346,
+ ">::": 21347,
+ "шёл": 21348,
+ "▁principales": 21349,
+ "▁цар": 21350,
+ "▁tied": 21351,
+ "▁alta": 21352,
+ "▁Cit": 21353,
+ "lined": 21354,
+ "major": 21355,
+ "▁punk": 21356,
+ "▁cinco": 21357,
+ "ický": 21358,
+ "▁raggi": 21359,
+ "typen": 21360,
+ "тельство": 21361,
+ "▁conference": 21362,
+ "▁сіль": 21363,
+ "▁heut": 21364,
+ "iš": 21365,
+ "ета": 21366,
+ "velope": 21367,
+ "hbox": 21368,
+ "nown": 21369,
+ "▁zar": 21370,
+ "ktiv": 21371,
+ "ieß": 21372,
+ "▁стре": 21373,
+ "▁EventArgs": 21374,
+ "▁Ira": 21375,
+ "▁VBA": 21376,
+ "▁Santo": 21377,
+ "▁Fach": 21378,
+ "▁FF": 21379,
+ "▁Raymond": 21380,
+ "мец": 21381,
+ "implementation": 21382,
+ "▁brothers": 21383,
+ "▁côté": 21384,
+ "▁controllers": 21385,
+ "▁Cle": 21386,
+ "▁cable": 21387,
+ "▁confer": 21388,
+ "▁{-": 21389,
+ "▁czł": 21390,
+ "▁Filip": 21391,
+ "atorio": 21392,
+ "▁wicht": 21393,
+ "▁beaucoup": 21394,
+ "▁Lit": 21395,
+ "▁sessions": 21396,
+ "▁Success": 21397,
+ "▁routing": 21398,
+ "niu": 21399,
+ "▁Vice": 21400,
+ "▁krit": 21401,
+ "updated": 21402,
+ "▁Invalid": 21403,
+ "▁Mannschaft": 21404,
+ "▁aos": 21405,
+ "▁tudi": 21406,
+ "▁després": 21407,
+ "qua": 21408,
+ "Contains": 21409,
+ "Company": 21410,
+ "▁persona": 21411,
+ "adapter": 21412,
+ "сни": 21413,
+ "▁voj": 21414,
+ "▁escri": 21415,
+ "agt": 21416,
+ "▁ство": 21417,
+ "▁distrito": 21418,
+ "apan": 21419,
+ "▁aspects": 21420,
+ "▁zal": 21421,
+ ")^{\\": 21422,
+ "▁système": 21423,
+ "▁ана": 21424,
+ "iums": 21425,
+ "▁premiers": 21426,
+ "▁поэ": 21427,
+ "▁mère": 21428,
+ "▁Gun": 21429,
+ "aping": 21430,
+ "▁Rain": 21431,
+ "▁igual": 21432,
+ "▁processor": 21433,
+ "')`": 21434,
+ "bling": 21435,
+ "▁mism": 21436,
+ "bráz": 21437,
+ "▁closest": 21438,
+ "▁Reading": 21439,
+ "▁попу": 21440,
+ "cono": 21441,
+ "▁kult": 21442,
+ "▁!!": 21443,
+ "▁Expression": 21444,
+ "▁induction": 21445,
+ "ahren": 21446,
+ "▁cp": 21447,
+ "▁violence": 21448,
+ "ientí": 21449,
+ "cente": 21450,
+ "▁Dob": 21451,
+ "jack": 21452,
+ "song": 21453,
+ "bucket": 21454,
+ "▁deport": 21455,
+ "кими": 21456,
+ "lm": 21457,
+ "▁innoc": 21458,
+ "Changes": 21459,
+ "▁prohib": 21460,
+ "angol": 21461,
+ "iseconds": 21462,
+ "▁пор": 21463,
+ "▁hip": 21464,
+ "▁pů": 21465,
+ "endorf": 21466,
+ "▁scheduled": 21467,
+ "▁Flug": 21468,
+ "acyj": 21469,
+ "▁Films": 21470,
+ "athedral": 21471,
+ "Power": 21472,
+ "ardin": 21473,
+ "kap": 21474,
+ "icken": 21475,
+ "resize": 21476,
+ "eus": 21477,
+ "rr": 21478,
+ "лян": 21479,
+ "▁Hav": 21480,
+ "▁ora": 21481,
+ "FROM": 21482,
+ "лося": 21483,
+ "▁terug": 21484,
+ "▁Width": 21485,
+ "▁accepts": 21486,
+ "бен": 21487,
+ "▁mich": 21488,
+ "▁Czech": 21489,
+ "▁Bedeut": 21490,
+ "▁вид": 21491,
+ "ôme": 21492,
+ "▁Loop": 21493,
+ "spect": 21494,
+ "ük": 21495,
+ "eston": 21496,
+ "▁slot": 21497,
+ "▁została": 21498,
+ "▁Charlotte": 21499,
+ "▁составляет": 21500,
+ "▁Promise": 21501,
+ "▁epo": 21502,
+ "▁diction": 21503,
+ "▁Franklin": 21504,
+ "▁Riv": 21505,
+ "руг": 21506,
+ "cida": 21507,
+ "▁Explorer": 21508,
+ "cookie": 21509,
+ "▁formerly": 21510,
+ "▁municipality": 21511,
+ "▁Stefan": 21512,
+ "lists": 21513,
+ "COMP": 21514,
+ "Len": 21515,
+ "▁Staat": 21516,
+ "▁NBA": 21517,
+ "dens": 21518,
+ "▁oscill": 21519,
+ "!.": 21520,
+ "▁PO": 21521,
+ "ône": 21522,
+ "eses": 21523,
+ "▁националь": 21524,
+ "voor": 21525,
+ "▁копи": 21526,
+ "▁пози": 21527,
+ "ulu": 21528,
+ "Constraint": 21529,
+ "▁своей": 21530,
+ "▁algebraic": 21531,
+ "чня": 21532,
+ "Dict": 21533,
+ "▁appearing": 21534,
+ "▁prav": 21535,
+ "▁Universal": 21536,
+ "Browser": 21537,
+ "▁Singap": 21538,
+ "ennessee": 21539,
+ "]_": 21540,
+ "▁Sof": 21541,
+ "▁Cad": 21542,
+ "ounce": 21543,
+ "▁costs": 21544,
+ "]{\\": 21545,
+ "../../": 21546,
+ "ській": 21547,
+ "ühl": 21548,
+ "iety": 21549,
+ "пр": 21550,
+ "▁interpreted": 21551,
+ "ajn": 21552,
+ "colog": 21553,
+ "YS": 21554,
+ "mans": 21555,
+ "▁metrics": 21556,
+ "▁registr": 21557,
+ "istance": 21558,
+ "▁Поль": 21559,
+ "▁anonymous": 21560,
+ "▁institutions": 21561,
+ "▁zdob": 21562,
+ "prüng": 21563,
+ "▁арти": 21564,
+ "▁estat": 21565,
+ "acci": 21566,
+ "▁academic": 21567,
+ "▁chiesa": 21568,
+ "▁Gian": 21569,
+ "contrib": 21570,
+ "umed": 21571,
+ "▁Gir": 21572,
+ "▁baseball": 21573,
+ "numeric": 21574,
+ "Generator": 21575,
+ "GM": 21576,
+ "▁tiny": 21577,
+ "▁distinction": 21578,
+ "гер": 21579,
+ "▁rust": 21580,
+ "▁FIFA": 21581,
+ "▁Properties": 21582,
+ "^-": 21583,
+ "▁экс": 21584,
+ "▁Stanis": 21585,
+ "▁Ajax": 21586,
+ "escape": 21587,
+ "▁consp": 21588,
+ "▁Chen": 21589,
+ "▁Naval": 21590,
+ "Bit": 21591,
+ "▁bât": 21592,
+ "скими": 21593,
+ "drive": 21594,
+ "▁Round": 21595,
+ "photo": 21596,
+ "▁Level": 21597,
+ "▁geg": 21598,
+ "Tom": 21599,
+ "▁Mobile": 21600,
+ "▁Trop": 21601,
+ "Direction": 21602,
+ "isan": 21603,
+ ")^{-": 21604,
+ "▁Setting": 21605,
+ "▁Probably": 21606,
+ "лья": 21607,
+ "▁assets": 21608,
+ "▁atte": 21609,
+ "▁bulk": 21610,
+ "ést": 21611,
+ "▁wing": 21612,
+ "nius": 21613,
+ "▁wins": 21614,
+ "▁lud": 21615,
+ "ushing": 21616,
+ "▁deven": 21617,
+ "ограф": 21618,
+ "burger": 21619,
+ "▁embar": 21620,
+ "FilterChain": 21621,
+ "▁tum": 21622,
+ "▁öss": 21623,
+ "▁nommé": 21624,
+ "▁pir": 21625,
+ "▁luc": 21626,
+ "dbo": 21627,
+ "agues": 21628,
+ "▁alcan": 21629,
+ "ouwen": 21630,
+ "▁Stanley": 21631,
+ "циали": 21632,
+ "▁grown": 21633,
+ "▁preserved": 21634,
+ "▁solar": 21635,
+ "▁Население": 21636,
+ "▁performances": 21637,
+ "▁Cow": 21638,
+ "▁engineering": 21639,
+ "▁scaling": 21640,
+ "atomic": 21641,
+ "endance": 21642,
+ "▁ace": 21643,
+ "ängen": 21644,
+ "Anim": 21645,
+ "phase": 21646,
+ "zburg": 21647,
+ "Old": 21648,
+ "▁servant": 21649,
+ "▁gemeins": 21650,
+ "▁Observ": 21651,
+ "translate": 21652,
+ "▁covering": 21653,
+ "▁están": 21654,
+ "▁problema": 21655,
+ "▁установ": 21656,
+ "▁llev": 21657,
+ "▁czerw": 21658,
+ "éal": 21659,
+ "mez": 21660,
+ "REE": 21661,
+ "ERR": 21662,
+ "тури": 21663,
+ "segu": 21664,
+ "▁profit": 21665,
+ "▁multiplication": 21666,
+ "kommen": 21667,
+ "▁faut": 21668,
+ "▁candidates": 21669,
+ "▁Uri": 21670,
+ "▁Laura": 21671,
+ "▁sap": 21672,
+ "▁висини": 21673,
+ "▁Between": 21674,
+ "fade": 21675,
+ "▁reserved": 21676,
+ "▁involving": 21677,
+ "▁Mare": 21678,
+ "▁Container": 21679,
+ "▁назна": 21680,
+ "▁DEBUG": 21681,
+ "▁hurt": 21682,
+ "▁Polski": 21683,
+ "▁lux": 21684,
+ "CB": 21685,
+ "wach": 21686,
+ "▁период": 21687,
+ "▁Catherine": 21688,
+ "▁ganz": 21689,
+ "uchte": 21690,
+ "▁consumer": 21691,
+ "▁crossed": 21692,
+ "ordered": 21693,
+ "away": 21694,
+ "techn": 21695,
+ "▁subscri": 21696,
+ "▁shortcut": 21697,
+ "▁производ": 21698,
+ "▁simultaneously": 21699,
+ "▁rating": 21700,
+ "▁Kings": 21701,
+ "▁relationships": 21702,
+ "▁Sex": 21703,
+ "▁Tool": 21704,
+ "agh": 21705,
+ "acters": 21706,
+ "logger": 21707,
+ "homme": 21708,
+ "engers": 21709,
+ "▁Ri": 21710,
+ "earance": 21711,
+ "▁appearances": 21712,
+ "Real": 21713,
+ "▁passe": 21714,
+ "iclopedia": 21715,
+ "чко": 21716,
+ "terre": 21717,
+ "▁Ontario": 21718,
+ "▁переда": 21719,
+ "footer": 21720,
+ "archivi": 21721,
+ "ifiz": 21722,
+ "▁Protest": 21723,
+ "▁LIN": 21724,
+ "unnable": 21725,
+ "▁centuries": 21726,
+ "▁Bayer": 21727,
+ "цію": 21728,
+ "овин": 21729,
+ "▁Andrea": 21730,
+ "selection": 21731,
+ "▁calm": 21732,
+ "▁modification": 21733,
+ "▁shortly": 21734,
+ "inaire": 21735,
+ "▁fusion": 21736,
+ "▁feelings": 21737,
+ "PK": 21738,
+ "▁Roberto": 21739,
+ "гне": 21740,
+ "Shared": 21741,
+ "▁mehrere": 21742,
+ "▁Niem": 21743,
+ "omp": 21744,
+ "Env": 21745,
+ "▁Article": 21746,
+ "▁Pok": 21747,
+ "▁VARCHAR": 21748,
+ "▁dil": 21749,
+ "▁afford": 21750,
+ "▁confront": 21751,
+ "owanie": 21752,
+ "▁ministre": 21753,
+ "adesh": 21754,
+ "▁Poly": 21755,
+ "▁Распо": 21756,
+ "▁Gruppe": 21757,
+ "▁Helen": 21758,
+ "▁cc": 21759,
+ "▁portrait": 21760,
+ "bew": 21761,
+ "▁beta": 21762,
+ "▁Wir": 21763,
+ "▁Audio": 21764,
+ "▁(\\<": 21765,
+ "riority": 21766,
+ "▁nit": 21767,
+ "▁представи": 21768,
+ "▁Vie": 21769,
+ "▁wür": 21770,
+ "▁Hold": 21771,
+ "▁Sad": 21772,
+ "▁Tochter": 21773,
+ "▁oltre": 21774,
+ "▁Activ": 21775,
+ "▁Jason": 21776,
+ "▁wieku": 21777,
+ "▁regards": 21778,
+ "▁taste": 21779,
+ "agnostic": 21780,
+ "лася": 21781,
+ "▁Self": 21782,
+ "▁apr": 21783,
+ "▁Deep": 21784,
+ "scop": 21785,
+ "Activ": 21786,
+ "▁typedef": 21787,
+ "ContentView": 21788,
+ "compiler": 21789,
+ "▁Roth": 21790,
+ "xc": 21791,
+ "зик": 21792,
+ "▁largo": 21793,
+ "▁Rena": 21794,
+ "heiten": 21795,
+ "▁platforms": 21796,
+ "ulla": 21797,
+ "▁glance": 21798,
+ "▁mascul": 21799,
+ "▁mex": 21800,
+ "▁Jorge": 21801,
+ "▁funcion": 21802,
+ "choose": 21803,
+ "▁reviews": 21804,
+ "▁Alban": 21805,
+ "▁Glo": 21806,
+ "▁Species": 21807,
+ "▁Fame": 21808,
+ "▁Roll": 21809,
+ "▁Puerto": 21810,
+ "▁\\)": 21811,
+ "ymnas": 21812,
+ "environ": 21813,
+ "▁iphone": 21814,
+ "▁Wrestling": 21815,
+ "ały": 21816,
+ "▁Indiana": 21817,
+ "Radio": 21818,
+ "VS": 21819,
+ "▁independence": 21820,
+ "тай": 21821,
+ "▁decode": 21822,
+ "White": 21823,
+ "▁journ": 21824,
+ "ículo": 21825,
+ "▁Barb": 21826,
+ "▁Evangel": 21827,
+ "▁Andy": 21828,
+ "▁Welcome": 21829,
+ "▁Device": 21830,
+ "gef": 21831,
+ "▁remembered": 21832,
+ "▁variations": 21833,
+ "▁Adolf": 21834,
+ "itaine": 21835,
+ "▁надморској": 21836,
+ "▁steam": 21837,
+ "▁concerns": 21838,
+ "▁`|": 21839,
+ "▁био": 21840,
+ "тельства": 21841,
+ "▁quattro": 21842,
+ "extend": 21843,
+ "▁trabajo": 21844,
+ "enberg": 21845,
+ "▁scenarios": 21846,
+ "ânt": 21847,
+ "▁kommt": 21848,
+ "▁domestic": 21849,
+ "▁Basketball": 21850,
+ "▁Cooper": 21851,
+ "sock": 21852,
+ "держа": 21853,
+ "={\\": 21854,
+ "▁inici": 21855,
+ "▁Phill": 21856,
+ "▁генерал": 21857,
+ "archiviato": 21858,
+ "ън": 21859,
+ "Rob": 21860,
+ "▁tong": 21861,
+ "▁characteristics": 21862,
+ "▁amaz": 21863,
+ "▁Mode": 21864,
+ "▁inaugur": 21865,
+ "wehr": 21866,
+ "rant": 21867,
+ "ionali": 21868,
+ "▁Mother": 21869,
+ "Ma": 21870,
+ "équ": 21871,
+ "▁Kelly": 21872,
+ "cile": 21873,
+ "▁besteht": 21874,
+ "▁estimates": 21875,
+ "ruguay": 21876,
+ "▁Ans": 21877,
+ "Mad": 21878,
+ "▁нав": 21879,
+ "▁données": 21880,
+ "▁tropical": 21881,
+ "▁Several": 21882,
+ "elter": 21883,
+ "▁Pho": 21884,
+ "kem": 21885,
+ "▁Customer": 21886,
+ "▁складі": 21887,
+ "▁courses": 21888,
+ "Platform": 21889,
+ "navbar": 21890,
+ "learning": 21891,
+ "▁Swedish": 21892,
+ "▁zast": 21893,
+ "▁Lig": 21894,
+ "management": 21895,
+ "▁lod": 21896,
+ "uffle": 21897,
+ "Texture": 21898,
+ "arga": 21899,
+ "átum": 21900,
+ "▁DDR": 21901,
+ "нії": 21902,
+ "▁Société": 21903,
+ "▁domains": 21904,
+ "▁permitted": 21905,
+ "▁externe": 21906,
+ "▁quelque": 21907,
+ "vt": 21908,
+ "yman": 21909,
+ "▁Ward": 21910,
+ "▁agli": 21911,
+ "▁andra": 21912,
+ "Snapshot": 21913,
+ "▁må": 21914,
+ "▁yeah": 21915,
+ "дена": 21916,
+ "ępu": 21917,
+ "askell": 21918,
+ "▁République": 21919,
+ "inject": 21920,
+ "▁';": 21921,
+ "änn": 21922,
+ "▁zelf": 21923,
+ "▁Entwicklung": 21924,
+ "ária": 21925,
+ "onomy": 21926,
+ "▁svil": 21927,
+ "iese": 21928,
+ "▁conser": 21929,
+ "▁nim": 21930,
+ "▁rész": 21931,
+ "▁Итали": 21932,
+ "▁partici": 21933,
+ "▁Lion": 21934,
+ "sr": 21935,
+ "always": 21936,
+ "▁Владимир": 21937,
+ "ческие": 21938,
+ "[,": 21939,
+ "▁Definition": 21940,
+ "nant": 21941,
+ "oem": 21942,
+ "Ids": 21943,
+ "▁вне": 21944,
+ "▁[...]": 21945,
+ "▁направ": 21946,
+ "▁GO": 21947,
+ "▁års": 21948,
+ "▁után": 21949,
+ "▁outros": 21950,
+ "▁región": 21951,
+ "▁Mong": 21952,
+ "▁filme": 21953,
+ "▁triple": 21954,
+ "▁spons": 21955,
+ "Develop": 21956,
+ "▁outcome": 21957,
+ "▁Bible": 21958,
+ "▁имени": 21959,
+ "Canvas": 21960,
+ "пута": 21961,
+ "curr": 21962,
+ "ások": 21963,
+ "){\\": 21964,
+ "ningar": 21965,
+ "`;": 21966,
+ "▁Flash": 21967,
+ ":#": 21968,
+ "must": 21969,
+ "cpu": 21970,
+ "▁formats": 21971,
+ "Har": 21972,
+ "▁episodio": 21973,
+ "▁Rosa": 21974,
+ "▁dès": 21975,
+ "emit": 21976,
+ "riteria": 21977,
+ "Annotation": 21978,
+ "Flag": 21979,
+ "gmail": 21980,
+ "▁Normal": 21981,
+ "ollary": 21982,
+ "▁foss": 21983,
+ "▁concurrent": 21984,
+ "▁crashes": 21985,
+ "▁виде": 21986,
+ "▁Minor": 21987,
+ "▁Sit": 21988,
+ "▁SN": 21989,
+ "▁scar": 21990,
+ "▁femin": 21991,
+ "▁specification": 21992,
+ "soap": 21993,
+ "▁operate": 21994,
+ "▁principalmente": 21995,
+ "▁aust": 21996,
+ "ibile": 21997,
+ "itime": 21998,
+ "лежа": 21999,
+ "iframe": 22000,
+ "▁concepts": 22001,
+ "▁tack": 22002,
+ "▁viss": 22003,
+ "▁carbon": 22004,
+ "tery": 22005,
+ "▁naming": 22006,
+ "▁Orts": 22007,
+ "idente": 22008,
+ "▁Capit": 22009,
+ "▁expr": 22010,
+ "▁насељу": 22011,
+ "▁Selected": 22012,
+ "▁hinter": 22013,
+ "▁iframe": 22014,
+ "▁zb": 22015,
+ "indexPath": 22016,
+ "coll": 22017,
+ "▁wrześ": 22018,
+ "▁acht": 22019,
+ "▁gradually": 22020,
+ "▁чу": 22021,
+ "зей": 22022,
+ "haft": 22023,
+ "▁tran": 22024,
+ "▁laquelle": 22025,
+ "ytics": 22026,
+ "IDE": 22027,
+ "▁pygame": 22028,
+ "▁Package": 22029,
+ "▁className": 22030,
+ "Bal": 22031,
+ "perl": 22032,
+ "тина": 22033,
+ "Occ": 22034,
+ "▁infrastr": 22035,
+ "▁Champions": 22036,
+ "▁classic": 22037,
+ "▁Raw": 22038,
+ "▁partially": 22039,
+ "▁Ted": 22040,
+ "▁stolet": 22041,
+ "rained": 22042,
+ "WHERE": 22043,
+ "▁vall": 22044,
+ "▁Julia": 22045,
+ "zat": 22046,
+ "▁surrounded": 22047,
+ "SEE": 22048,
+ "▁walking": 22049,
+ "Bad": 22050,
+ "FOR": 22051,
+ "contre": 22052,
+ "▁Palest": 22053,
+ "ático": 22054,
+ "▁engineer": 22055,
+ "▁partners": 22056,
+ "▁Jews": 22057,
+ "ilers": 22058,
+ "▁cerem": 22059,
+ "▁interactions": 22060,
+ "acu": 22061,
+ "sty": 22062,
+ "▁Princess": 22063,
+ "sharp": 22064,
+ "▁Singles": 22065,
+ "▁їх": 22066,
+ "chez": 22067,
+ "Receiver": 22068,
+ "▁patients": 22069,
+ "stringify": 22070,
+ "▁competed": 22071,
+ "bey": 22072,
+ "$;": 22073,
+ "▁Bd": 22074,
+ "hadoop": 22075,
+ "▁División": 22076,
+ "öld": 22077,
+ "▁restricted": 22078,
+ "▁commander": 22079,
+ "▁Highway": 22080,
+ "▁Česk": 22081,
+ "▁myth": 22082,
+ "чан": 22083,
+ "raham": 22084,
+ "▁enqu": 22085,
+ "▁pog": 22086,
+ "▁comuna": 22087,
+ "▁println": 22088,
+ "▁круп": 22089,
+ "▁depois": 22090,
+ "▁seats": 22091,
+ "▁neighb": 22092,
+ "циона": 22093,
+ "agine": 22094,
+ "▁clothes": 22095,
+ "▁Prior": 22096,
+ "Brain": 22097,
+ "FFFF": 22098,
+ "':'": 22099,
+ "features": 22100,
+ "▁filesystem": 22101,
+ "▁singles": 22102,
+ "▁Melbourne": 22103,
+ "▁destruction": 22104,
+ "▁Lyon": 22105,
+ "▁Insel": 22106,
+ "Nav": 22107,
+ "▁Replace": 22108,
+ "▁lé": 22109,
+ "Who": 22110,
+ "▁Estad": 22111,
+ "▁dimensional": 22112,
+ "▁öff": 22113,
+ "▁grands": 22114,
+ "джа": 22115,
+ "plane": 22116,
+ "ності": 22117,
+ "▁Origin": 22118,
+ "WI": 22119,
+ "änner": 22120,
+ "▁Cry": 22121,
+ "ITION": 22122,
+ "▁född": 22123,
+ "▁cultura": 22124,
+ "▁Rank": 22125,
+ "▁vuel": 22126,
+ "▁zag": 22127,
+ "▁Maxim": 22128,
+ "ону": 22129,
+ "()))": 22130,
+ "Raw": 22131,
+ "kirche": 22132,
+ "▁además": 22133,
+ "▁tie": 22134,
+ "▁Style": 22135,
+ "сков": 22136,
+ "istant": 22137,
+ "olph": 22138,
+ "▁Zür": 22139,
+ "▁Info": 22140,
+ "DOM": 22141,
+ "usc": 22142,
+ "nahm": 22143,
+ "▁Федера": 22144,
+ "▁Fot": 22145,
+ "▁specifying": 22146,
+ "▁titolo": 22147,
+ "▁Boys": 22148,
+ "iech": 22149,
+ "Place": 22150,
+ "▁Hoff": 22151,
+ "▁cached": 22152,
+ "валь": 22153,
+ "isher": 22154,
+ "rolling": 22155,
+ "opens": 22156,
+ "▁hr": 22157,
+ "------": 22158,
+ "▁maggior": 22159,
+ "▁transactions": 22160,
+ "▁criminal": 22161,
+ "▁retre": 22162,
+ "▁Campbell": 22163,
+ ")):": 22164,
+ "▁ned": 22165,
+ "Pager": 22166,
+ "▁Hero": 22167,
+ "(__": 22168,
+ "▁uncle": 22169,
+ "▁reaches": 22170,
+ "arto": 22171,
+ "▁hello": 22172,
+ "Preferences": 22173,
+ "▁затем": 22174,
+ "Named": 22175,
+ "▁readers": 22176,
+ "хі": 22177,
+ "kern": 22178,
+ "▁упо": 22179,
+ "кин": 22180,
+ "▁lav": 22181,
+ "▁nob": 22182,
+ "▁secre": 22183,
+ "▁ListView": 22184,
+ "вания": 22185,
+ "▁Mayor": 22186,
+ "borough": 22187,
+ "▁filosof": 22188,
+ "нення": 22189,
+ "фри": 22190,
+ "▁patr": 22191,
+ "FM": 22192,
+ "▁acid": 22193,
+ "▁Salvador": 22194,
+ "▁abb": 22195,
+ "▁Graham": 22196,
+ "policy": 22197,
+ "negative": 22198,
+ "ńskiego": 22199,
+ "▁Heimat": 22200,
+ "▁dazu": 22201,
+ "▁mely": 22202,
+ "▁ride": 22203,
+ "▁duties": 22204,
+ "overy": 22205,
+ "▁Proposition": 22206,
+ "▁Paolo": 22207,
+ "/'": 22208,
+ "▁Mau": 22209,
+ "imenti": 22210,
+ "Saint": 22211,
+ "father": 22212,
+ "▁equilib": 22213,
+ "phony": 22214,
+ "▁clas": 22215,
+ "▁отли": 22216,
+ "▁Buffered": 22217,
+ "rek": 22218,
+ "▁mitt": 22219,
+ "▁Hur": 22220,
+ "▁Harvard": 22221,
+ "▁demonstrate": 22222,
+ "uario": 22223,
+ "▁dolor": 22224,
+ "▁rejected": 22225,
+ "▁Müller": 22226,
+ "▁nac": 22227,
+ "▁Belle": 22228,
+ "▁gathered": 22229,
+ "nr": 22230,
+ "frika": 22231,
+ "öll": 22232,
+ "▁chemical": 22233,
+ "nig": 22234,
+ "▁calc": 22235,
+ "▁DEFAULT": 22236,
+ "▁philosophy": 22237,
+ "▁Laravel": 22238,
+ "▁alignment": 22239,
+ "EV": 22240,
+ "eor": 22241,
+ "▁dzie": 22242,
+ "▁mest": 22243,
+ "▁Io": 22244,
+ "CRE": 22245,
+ "зви": 22246,
+ "▁Medic": 22247,
+ "▁nä": 22248,
+ "▁zab": 22249,
+ "▁Slov": 22250,
+ "utlich": 22251,
+ "▁amplit": 22252,
+ "▁Frankreich": 22253,
+ "▁кіль": 22254,
+ "IND": 22255,
+ "execution": 22256,
+ "▁Karriere": 22257,
+ "dostęp": 22258,
+ "▁réal": 22259,
+ "engo": 22260,
+ "▁severe": 22261,
+ "зма": 22262,
+ "▁турни": 22263,
+ "▁Carter": 22264,
+ "▁Robinson": 22265,
+ "getElementsBy": 22266,
+ "▁prototype": 22267,
+ "▁japon": 22268,
+ "führung": 22269,
+ "▁consegu": 22270,
+ "▁studi": 22271,
+ "▁lire": 22272,
+ "▁schließ": 22273,
+ "▁Buff": 22274,
+ "▁redund": 22275,
+ "▁ern": 22276,
+ "▁myster": 22277,
+ "▁proprio": 22278,
+ "ateful": 22279,
+ "▁Parent": 22280,
+ "▁ladies": 22281,
+ "rack": 22282,
+ "тика": 22283,
+ "enburg": 22284,
+ "▁качестве": 22285,
+ "▁EF": 22286,
+ "▁stam": 22287,
+ "▁nueva": 22288,
+ "▁filtered": 22289,
+ "reten": 22290,
+ "▁Ian": 22291,
+ "▁Matthew": 22292,
+ "kih": 22293,
+ "▁ő": 22294,
+ "▁компози": 22295,
+ "▁forever": 22296,
+ "oires": 22297,
+ ":\\\\": 22298,
+ "▁études": 22299,
+ "▁soup": 22300,
+ "▁pleased": 22301,
+ ")}(": 22302,
+ "▁Stop": 22303,
+ "Setter": 22304,
+ "▁Help": 22305,
+ "▁bars": 22306,
+ "▁ERR": 22307,
+ "▁(?": 22308,
+ "▁poetry": 22309,
+ "▁Util": 22310,
+ "AK": 22311,
+ "▁fick": 22312,
+ "▁IM": 22313,
+ "▁proud": 22314,
+ "носи": 22315,
+ "▁muerte": 22316,
+ "▁Palmarès": 22317,
+ "▁Nas": 22318,
+ "щих": 22319,
+ "▁quer": 22320,
+ "▁apenas": 22321,
+ "]['": 22322,
+ "▁Konst": 22323,
+ "пон": 22324,
+ "▁Schiff": 22325,
+ "▁mp": 22326,
+ "▁благо": 22327,
+ "fram": 22328,
+ "▁household": 22329,
+ "▁tract": 22330,
+ "encoding": 22331,
+ "▁undert": 22332,
+ "▁Aug": 22333,
+ "ован": 22334,
+ "▁Arten": 22335,
+ "▁invoked": 22336,
+ "▁dynast": 22337,
+ "▁fleet": 22338,
+ "чество": 22339,
+ "▁Murray": 22340,
+ "▁gut": 22341,
+ "elihood": 22342,
+ "▁SSH": 22343,
+ "ответ": 22344,
+ "▁personally": 22345,
+ "прия": 22346,
+ "▁financi": 22347,
+ "▁Thompson": 22348,
+ "alu": 22349,
+ "identity": 22350,
+ "▁Grab": 22351,
+ "addle": 22352,
+ "Ét": 22353,
+ "▁Tob": 22354,
+ "▁verlor": 22355,
+ "▁Sainte": 22356,
+ "▁dop": 22357,
+ "▁вере": 22358,
+ "___": 22359,
+ "▁promotion": 22360,
+ "▁-=": 22361,
+ "▁отде": 22362,
+ "▁ambigu": 22363,
+ "ORDER": 22364,
+ "▁Communic": 22365,
+ "▁imply": 22366,
+ "oned": 22367,
+ "cluding": 22368,
+ "▁collision": 22369,
+ "▁fragments": 22370,
+ "scription": 22371,
+ "▁'{": 22372,
+ "лях": 22373,
+ "▁hans": 22374,
+ "ус": 22375,
+ "wire": 22376,
+ "namespace": 22377,
+ "▁sword": 22378,
+ "refresh": 22379,
+ "▁kwam": 22380,
+ "zs": 22381,
+ "commons": 22382,
+ "▁cosa": 22383,
+ "▁regime": 22384,
+ "grep": 22385,
+ "▁dioc": 22386,
+ "▁Contact": 22387,
+ "▁estas": 22388,
+ "▁Stewart": 22389,
+ "▁viele": 22390,
+ "това": 22391,
+ "▁Ran": 22392,
+ "annes": 22393,
+ "iday": 22394,
+ "▁snapshot": 22395,
+ "orrow": 22396,
+ "▁zač": 22397,
+ "▁участие": 22398,
+ "▁promised": 22399,
+ "Assembly": 22400,
+ "▁championship": 22401,
+ "▁Define": 22402,
+ "▁eren": 22403,
+ "▁ново": 22404,
+ "▁thinks": 22405,
+ "Age": 22406,
+ "▁gev": 22407,
+ "varchar": 22408,
+ "ività": 22409,
+ "compos": 22410,
+ "▁Mutter": 22411,
+ "CONT": 22412,
+ "armée": 22413,
+ "agnet": 22414,
+ "▁Brow": 22415,
+ ".—": 22416,
+ "▁Television": 22417,
+ "▁Для": 22418,
+ "▁vm": 22419,
+ "▁ordin": 22420,
+ "▁Михай": 22421,
+ "▁aproxim": 22422,
+ "')->": 22423,
+ "▁zoo": 22424,
+ "ippi": 22425,
+ "▁sino": 22426,
+ "▁Québec": 22427,
+ "rages": 22428,
+ "äck": 22429,
+ "eing": 22430,
+ "arlo": 22431,
+ "pios": 22432,
+ "▁Chan": 22433,
+ "▁elli": 22434,
+ "▁incons": 22435,
+ "gestellt": 22436,
+ "ppers": 22437,
+ "Jean": 22438,
+ "anstalt": 22439,
+ "▁Dance": 22440,
+ "▁toen": 22441,
+ "▁decis": 22442,
+ "▁Резу": 22443,
+ "▁officially": 22444,
+ "ätze": 22445,
+ "▁доро": 22446,
+ "▁enumer": 22447,
+ "▁troisième": 22448,
+ "typ": 22449,
+ "offs": 22450,
+ "боль": 22451,
+ "odn": 22452,
+ "▁Zar": 22453,
+ "▁друго": 22454,
+ "quia": 22455,
+ "▁Nicolas": 22456,
+ "пису": 22457,
+ "▁mob": 22458,
+ "paces": 22459,
+ "нього": 22460,
+ "Alg": 22461,
+ "éroï": 22462,
+ "Errors": 22463,
+ "▁гре": 22464,
+ "▁женщи": 22465,
+ "inch": 22466,
+ "▁Korean": 22467,
+ "▁Apost": 22468,
+ "▁Liver": 22469,
+ "▁elementary": 22470,
+ "▁DI": 22471,
+ "виси": 22472,
+ "▁soil": 22473,
+ "▁DLL": 22474,
+ "▁risp": 22475,
+ "▁Shakespe": 22476,
+ "▁Gaussian": 22477,
+ "▁Kurt": 22478,
+ "Vertex": 22479,
+ "ebol": 22480,
+ "organisation": 22481,
+ "ären": 22482,
+ "▁YES": 22483,
+ "CUR": 22484,
+ "▁началь": 22485,
+ "▁постро": 22486,
+ "▁Luigi": 22487,
+ "▁caching": 22488,
+ "preventDefault": 22489,
+ "amd": 22490,
+ "▁Vit": 22491,
+ "subst": 22492,
+ "▁строи": 22493,
+ "▁Campion": 22494,
+ "chr": 22495,
+ "фере": 22496,
+ "▁Список": 22497,
+ "NF": 22498,
+ "▁cím": 22499,
+ "▁hé": 22500,
+ "rebbe": 22501,
+ "ocy": 22502,
+ "below": 22503,
+ "▁bylo": 22504,
+ "▁Уи": 22505,
+ "▁\\({\\": 22506,
+ "▁`:": 22507,
+ "giore": 22508,
+ "San": 22509,
+ "▁Gate": 22510,
+ "▁вс": 22511,
+ "▁olimp": 22512,
+ "▁Matrix": 22513,
+ "▁hearing": 22514,
+ "rii": 22515,
+ "tfrac": 22516,
+ "▁allemand": 22517,
+ "▁Vue": 22518,
+ "лн": 22519,
+ "▁compiling": 22520,
+ "▁Ens": 22521,
+ "▁investigation": 22522,
+ "▁Ax": 22523,
+ "▁chars": 22524,
+ "▁targets": 22525,
+ "▁loud": 22526,
+ "usement": 22527,
+ "▁Nether": 22528,
+ "commerce": 22529,
+ "IGHT": 22530,
+ "ocoa": 22531,
+ "ifecycle": 22532,
+ "▁Leo": 22533,
+ "priv": 22534,
+ "▁goods": 22535,
+ "adamente": 22536,
+ "Austral": 22537,
+ "▁reboot": 22538,
+ "Gest": 22539,
+ "▁representations": 22540,
+ "ceu": 22541,
+ "▁doctrine": 22542,
+ "cers": 22543,
+ "▁Krak": 22544,
+ "▁advoc": 22545,
+ "▁squadra": 22546,
+ "▁arbeitete": 22547,
+ "üst": 22548,
+ "▁pill": 22549,
+ "Answer": 22550,
+ "▁квіт": 22551,
+ "▁Wa": 22552,
+ "umann": 22553,
+ "▁Dynam": 22554,
+ "Famil": 22555,
+ "▁tennis": 22556,
+ "▁Engineering": 22557,
+ "▁circles": 22558,
+ "▁Maryland": 22559,
+ "▁besta": 22560,
+ "▁bases": 22561,
+ "▁znajdu": 22562,
+ "ктора": 22563,
+ "▁arrest": 22564,
+ "лер": 22565,
+ "▁Gia": 22566,
+ "▁remarkable": 22567,
+ "▁могу": 22568,
+ "▁Supreme": 22569,
+ "▁`%": 22570,
+ "dor": 22571,
+ "▁aujourd": 22572,
+ "▁wis": 22573,
+ "WIDTH": 22574,
+ "▁misma": 22575,
+ "▁fluid": 22576,
+ "▁petite": 22577,
+ "▁Tow": 22578,
+ "Registry": 22579,
+ "emed": 22580,
+ "▁Wisconsin": 22581,
+ "▁Racing": 22582,
+ "▁registration": 22583,
+ "/%": 22584,
+ "third": 22585,
+ "▁monuments": 22586,
+ "чей": 22587,
+ "▁jet": 22588,
+ "▁Urban": 22589,
+ "álva": 22590,
+ "▁milieu": 22591,
+ "▁possess": 22592,
+ "▁germ": 22593,
+ "dependencies": 22594,
+ "▁enemies": 22595,
+ "▁samen": 22596,
+ "▁Werner": 22597,
+ "▁hizo": 22598,
+ "▁td": 22599,
+ "▁yesterday": 22600,
+ "▁Ад": 22601,
+ "▁hasn": 22602,
+ "cellation": 22603,
+ "ování": 22604,
+ "lika": 22605,
+ "Week": 22606,
+ "▁Ing": 22607,
+ "▁Email": 22608,
+ "▁mètres": 22609,
+ "▁OCLC": 22610,
+ "▁amongst": 22611,
+ "▁splend": 22612,
+ "fur": 22613,
+ "antics": 22614,
+ "▁XXX": 22615,
+ "▁группы": 22616,
+ "lach": 22617,
+ "▁cousin": 22618,
+ "▁invariant": 22619,
+ "ђу": 22620,
+ "▁Beispiel": 22621,
+ "▁harder": 22622,
+ "▁bell": 22623,
+ "▁orch": 22624,
+ "tb": 22625,
+ "Footnote": 22626,
+ "regon": 22627,
+ "Martin": 22628,
+ "▁incon": 22629,
+ "▁attacked": 22630,
+ "_{-": 22631,
+ "▁Tras": 22632,
+ "party": 22633,
+ "iteit": 22634,
+ "▁saint": 22635,
+ "rások": 22636,
+ "▁containers": 22637,
+ "Mo": 22638,
+ "▁Sn": 22639,
+ "quantity": 22640,
+ "▁ras": 22641,
+ "▁Canal": 22642,
+ "ccion": 22643,
+ "uvo": 22644,
+ "▁idx": 22645,
+ "typename": 22646,
+ "▁Rugby": 22647,
+ "▁Seems": 22648,
+ "▁transmit": 22649,
+ "▁Präsident": 22650,
+ "зне": 22651,
+ "▁Baker": 22652,
+ "inth": 22653,
+ "▁több": 22654,
+ "verein": 22655,
+ "▁especie": 22656,
+ ",(": 22657,
+ "▁téc": 22658,
+ "▁WITH": 22659,
+ "▁unos": 22660,
+ "▁politics": 22661,
+ "createElement": 22662,
+ "▁stats": 22663,
+ "▁Tennessee": 22664,
+ "▁Bedeutung": 22665,
+ "▁Screen": 22666,
+ "▁Straße": 22667,
+ "anze": 22668,
+ "▁partly": 22669,
+ "manuel": 22670,
+ "olation": 22671,
+ "horizontal": 22672,
+ "érieure": 22673,
+ "ampio": 22674,
+ "▁струк": 22675,
+ "Weight": 22676,
+ "Land": 22677,
+ "poly": 22678,
+ "▁Dak": 22679,
+ "▁Assume": 22680,
+ "\".$": 22681,
+ "▁casi": 22682,
+ "▁gross": 22683,
+ "▁entertain": 22684,
+ "▁década": 22685,
+ "'.$": 22686,
+ "encer": 22687,
+ "▁guaranteed": 22688,
+ "]$.": 22689,
+ "лися": 22690,
+ "▁acceptable": 22691,
+ "raise": 22692,
+ "irus": 22693,
+ "weit": 22694,
+ "▁Ана": 22695,
+ "▁hills": 22696,
+ "ipage": 22697,
+ "BIT": 22698,
+ "▁nucle": 22699,
+ "▁utilis": 22700,
+ "CAA": 22701,
+ "ènes": 22702,
+ "▁Schweiz": 22703,
+ "▁AA": 22704,
+ "ninger": 22705,
+ "▁bands": 22706,
+ "▁tender": 22707,
+ "som": 22708,
+ "Warning": 22709,
+ "▁Bischof": 22710,
+ "▁Arc": 22711,
+ "▁Woman": 22712,
+ "▁transmission": 22713,
+ "чни": 22714,
+ "istre": 22715,
+ "BY": 22716,
+ "▁SI": 22717,
+ "▁Пар": 22718,
+ "▁}).": 22719,
+ "▁presenta": 22720,
+ "▁René": 22721,
+ "▁happiness": 22722,
+ "▁Punk": 22723,
+ "cols": 22724,
+ "▁Desde": 22725,
+ "рёх": 22726,
+ "▁мона": 22727,
+ "▁scratch": 22728,
+ "▁tcp": 22729,
+ "êtes": 22730,
+ "itated": 22731,
+ "▁diferen": 22732,
+ "geh": 22733,
+ "nahmen": 22734,
+ "Пе": 22735,
+ "cki": 22736,
+ "▁Teatro": 22737,
+ "▁Remember": 22738,
+ "▁fright": 22739,
+ "▁Yam": 22740,
+ "western": 22741,
+ "leted": 22742,
+ "▁встре": 22743,
+ "▁település": 22744,
+ "зин": 22745,
+ "▁Quant": 22746,
+ "▁supre": 22747,
+ "ája": 22748,
+ "дія": 22749,
+ "▁carrera": 22750,
+ "kret": 22751,
+ "para": 22752,
+ "▁SUM": 22753,
+ "▁pit": 22754,
+ "źdz": 22755,
+ "éo": 22756,
+ "рення": 22757,
+ "▁Chor": 22758,
+ "▁voix": 22759,
+ "▁executive": 22760,
+ "▁allerdings": 22761,
+ "Maybe": 22762,
+ "▁день": 22763,
+ "▁flying": 22764,
+ "▁parliament": 22765,
+ "ждан": 22766,
+ "▁fram": 22767,
+ "▁жовт": 22768,
+ "▁ugly": 22769,
+ "▁буду": 22770,
+ "igny": 22771,
+ "\\|_{": 22772,
+ "▁bitter": 22773,
+ "sce": 22774,
+ "▁pole": 22775,
+ "Verlag": 22776,
+ "▁totalité": 22777,
+ "▁foundation": 22778,
+ "jt": 22779,
+ "▁slice": 22780,
+ "ifique": 22781,
+ "▁integrate": 22782,
+ "strij": 22783,
+ "▁asympt": 22784,
+ "▁ему": 22785,
+ "▁perturb": 22786,
+ "▁Flow": 22787,
+ "jboss": 22788,
+ "RIG": 22789,
+ "▁Aless": 22790,
+ "XXX": 22791,
+ "▁summ": 22792,
+ "sqlite": 22793,
+ "▁cheer": 22794,
+ "prob": 22795,
+ "▁GPU": 22796,
+ "ził": 22797,
+ "(*)": 22798,
+ "▁induct": 22799,
+ "RAY": 22800,
+ "blatt": 22801,
+ "questa": 22802,
+ "oru": 22803,
+ "▁Inside": 22804,
+ "▁McG": 22805,
+ "▁Nep": 22806,
+ "мп": 22807,
+ "▁inve": 22808,
+ "▁Animal": 22809,
+ "▁sob": 22810,
+ "ított": 22811,
+ "loyment": 22812,
+ "▁bund": 22813,
+ "Station": 22814,
+ "▁BEGIN": 22815,
+ "▁partiellement": 22816,
+ "igg": 22817,
+ "estore": 22818,
+ "▁coinc": 22819,
+ "▁Sommer": 22820,
+ "▁md": 22821,
+ "▁locked": 22822,
+ "mathchar": 22823,
+ "arma": 22824,
+ "pent": 22825,
+ "arium": 22826,
+ "▁ears": 22827,
+ "▁Songs": 22828,
+ "▁similarly": 22829,
+ "▁literally": 22830,
+ "▁inches": 22831,
+ "▁affection": 22832,
+ "lp": 22833,
+ "▁concluded": 22834,
+ "▁муніципалі": 22835,
+ "▁памя": 22836,
+ "estaur": 22837,
+ "▁Josh": 22838,
+ "▁Fritz": 22839,
+ "DBC": 22840,
+ "дён": 22841,
+ "posa": 22842,
+ "▁golden": 22843,
+ "▁pc": 22844,
+ "▁comte": 22845,
+ "▁Ziel": 22846,
+ "▁présente": 22847,
+ "marks": 22848,
+ "igneur": 22849,
+ "▁Drive": 22850,
+ "▁neglect": 22851,
+ "▁rozp": 22852,
+ "▁Five": 22853,
+ "spaces": 22854,
+ "▁Medi": 22855,
+ "▁existed": 22856,
+ "▁była": 22857,
+ "джи": 22858,
+ "▁frente": 22859,
+ "тник": 22860,
+ "odd": 22861,
+ "▁answering": 22862,
+ "bian": 22863,
+ "▁Eugen": 22864,
+ "▁Publications": 22865,
+ "▁Dia": 22866,
+ "lá": 22867,
+ "▁'_": 22868,
+ "▁recuper": 22869,
+ "ому": 22870,
+ "▁Append": 22871,
+ "obar": 22872,
+ "▁employees": 22873,
+ "▁compens": 22874,
+ "emetery": 22875,
+ "▁элект": 22876,
+ "MON": 22877,
+ "olin": 22878,
+ "▁historic": 22879,
+ "his": 22880,
+ "ąd": 22881,
+ "nm": 22882,
+ "▁Goth": 22883,
+ "▁stress": 22884,
+ "▁partecip": 22885,
+ "▁Aw": 22886,
+ "▁sar": 22887,
+ "▁hu": 22888,
+ "▁matplotlib": 22889,
+ "▁Myst": 22890,
+ "();`": 22891,
+ "schein": 22892,
+ "Longrightarrow": 22893,
+ "▁ря": 22894,
+ "▁Isra": 22895,
+ "[^": 22896,
+ "nou": 22897,
+ "▁synd": 22898,
+ "working": 22899,
+ "▁Nation": 22900,
+ "▁Pent": 22901,
+ "▁klass": 22902,
+ "▁applicable": 22903,
+ "▁Diam": 22904,
+ "▁brasile": 22905,
+ "▁pac": 22906,
+ "▁Height": 22907,
+ "Put": 22908,
+ "▁intro": 22909,
+ "▁unusual": 22910,
+ "nas": 22911,
+ "▁Gebäude": 22912,
+ "▁beam": 22913,
+ "▁Rect": 22914,
+ "▁Primera": 22915,
+ "▁haut": 22916,
+ "▁trait": 22917,
+ "prüft": 22918,
+ "inación": 22919,
+ "▁configurations": 22920,
+ "▁gilt": 22921,
+ "▁territoire": 22922,
+ "hez": 22923,
+ "▁alte": 22924,
+ "relative": 22925,
+ "Excel": 22926,
+ "▁Wright": 22927,
+ "GV": 22928,
+ "поли": 22929,
+ "Quant": 22930,
+ "▁gauge": 22931,
+ "▁multiply": 22932,
+ "ASS": 22933,
+ "ственно": 22934,
+ "ану": 22935,
+ "▁jeden": 22936,
+ "▁literary": 22937,
+ "▁Dro": 22938,
+ "▁advise": 22939,
+ "itzen": 22940,
+ "▁disag": 22941,
+ "website": 22942,
+ "▁дія": 22943,
+ "▁observer": 22944,
+ "▁január": 22945,
+ "vě": 22946,
+ "kup": 22947,
+ "▁Ses": 22948,
+ "▁wojew": 22949,
+ "▁stages": 22950,
+ "▁времени": 22951,
+ "łuż": 22952,
+ "нос": 22953,
+ "Download": 22954,
+ "ipo": 22955,
+ "▁graf": 22956,
+ "▁робо": 22957,
+ "▁Nikol": 22958,
+ "▁fic": 22959,
+ "▁joining": 22960,
+ "▁diversos": 22961,
+ "▁LIKE": 22962,
+ "▁Fitz": 22963,
+ "▁dimin": 22964,
+ "▁distrib": 22965,
+ "Sam": 22966,
+ "koz": 22967,
+ "▁alphabet": 22968,
+ "oser": 22969,
+ "OUR": 22970,
+ "uka": 22971,
+ "кая": 22972,
+ "▁steel": 22973,
+ "▁`--": 22974,
+ "▁tener": 22975,
+ "marker": 22976,
+ "▁Heaven": 22977,
+ "newcommand": 22978,
+ "▁prisoners": 22979,
+ "▁Knight": 22980,
+ "▁presents": 22981,
+ "▁questi": 22982,
+ "▁trains": 22983,
+ "opera": 22984,
+ "▁Linear": 22985,
+ "▁ME": 22986,
+ "▁Buc": 22987,
+ "Leg": 22988,
+ "▁agua": 22989,
+ "▁Griff": 22990,
+ "olg": 22991,
+ "dst": 22992,
+ ".\r": 22993,
+ "▁persones": 22994,
+ "Mal": 22995,
+ "бере": 22996,
+ "folge": 22997,
+ "▁acab": 22998,
+ "ctu": 22999,
+ "ptic": 23000,
+ "▁Navigation": 23001,
+ "Russ": 23002,
+ "галь": 23003,
+ "▁Ful": 23004,
+ "▁має": 23005,
+ "чная": 23006,
+ "wner": 23007,
+ "contra": 23008,
+ "▁joueur": 23009,
+ "▁Jess": 23010,
+ "▁renew": 23011,
+ "▁lap": 23012,
+ "▁casting": 23013,
+ "gal": 23014,
+ "▁tématu": 23015,
+ "▁называ": 23016,
+ "зах": 23017,
+ "чне": 23018,
+ ")-\\": 23019,
+ "▁часто": 23020,
+ "}$-": 23021,
+ "▁licz": 23022,
+ "▁emot": 23023,
+ "harm": 23024,
+ "▁occasionally": 23025,
+ "▁horror": 23026,
+ "east": 23027,
+ "▁printer": 23028,
+ "aran": 23029,
+ "▁Mississ": 23030,
+ "follow": 23031,
+ "▁Barry": 23032,
+ "▁investigate": 23033,
+ "gow": 23034,
+ "▁Americans": 23035,
+ "Since": 23036,
+ "▁відо": 23037,
+ "▁reun": 23038,
+ "osci": 23039,
+ "▁Chapter": 23040,
+ "▁bay": 23041,
+ "роме": 23042,
+ "ethe": 23043,
+ "édie": 23044,
+ "comot": 23045,
+ "▁miejscowo": 23046,
+ "▁studierte": 23047,
+ "ouvert": 23048,
+ "▁кур": 23049,
+ "▁DESC": 23050,
+ "▁touched": 23051,
+ "▁Jerry": 23052,
+ "uese": 23053,
+ "лище": 23054,
+ "authentication": 23055,
+ "▁colle": 23056,
+ "heart": 23057,
+ "▁regiment": 23058,
+ "cribed": 23059,
+ "▁Боль": 23060,
+ "▁проис": 23061,
+ "ceae": 23062,
+ "▁masses": 23063,
+ "▁scrolling": 23064,
+ "usto": 23065,
+ "SW": 23066,
+ "ovat": 23067,
+ "▁grâce": 23068,
+ "▁Архив": 23069,
+ "▁Север": 23070,
+ "avait": 23071,
+ "▁Marshall": 23072,
+ "▁HashMap": 23073,
+ "acon": 23074,
+ "ücken": 23075,
+ "[])": 23076,
+ "▁evangel": 23077,
+ "etzung": 23078,
+ "ttemberg": 23079,
+ "sters": 23080,
+ "TM": 23081,
+ "▁литера": 23082,
+ "quot": 23083,
+ "Pred": 23084,
+ "▁werk": 23085,
+ "▁haber": 23086,
+ "lava": 23087,
+ "vous": 23088,
+ "▁Late": 23089,
+ "cycle": 23090,
+ "тирова": 23091,
+ "▁проду": 23092,
+ "▁populations": 23093,
+ "▁Yan": 23094,
+ "Prefix": 23095,
+ "actéristiques": 23096,
+ "+'": 23097,
+ "()`](": 23098,
+ "▁Ль": 23099,
+ "филь": 23100,
+ "▁жизни": 23101,
+ "ftp": 23102,
+ "▁всех": 23103,
+ "▁gdzie": 23104,
+ "▁videa": 23105,
+ "oauth": 23106,
+ "▁pid": 23107,
+ "ům": 23108,
+ "▁pesso": 23109,
+ "▁tracking": 23110,
+ "izin": 23111,
+ "▁Morris": 23112,
+ "щий": 23113,
+ "▁Provinz": 23114,
+ "▁Mitte": 23115,
+ "▁artificial": 23116,
+ "brázky": 23117,
+ "▁дости": 23118,
+ "▁restored": 23119,
+ "▁communicate": 23120,
+ "agit": 23121,
+ "Recogn": 23122,
+ "▁lon": 23123,
+ "▁заня": 23124,
+ "▁Argument": 23125,
+ "flush": 23126,
+ "мана": 23127,
+ "seconds": 23128,
+ "UC": 23129,
+ "▁Ruth": 23130,
+ "▁tub": 23131,
+ "▁Bret": 23132,
+ "▁Pere": 23133,
+ "▁responsibility": 23134,
+ "ńczy": 23135,
+ "▁environments": 23136,
+ "kee": 23137,
+ "▁groot": 23138,
+ "▁painted": 23139,
+ "▁Éditions": 23140,
+ "cpy": 23141,
+ "árt": 23142,
+ "lichkeit": 23143,
+ "arda": 23144,
+ "Batch": 23145,
+ "▁Leopold": 23146,
+ "reason": 23147,
+ "noreferrer": 23148,
+ "sens": 23149,
+ "▁rocks": 23150,
+ "▁Hitler": 23151,
+ "лат": 23152,
+ "▁quoted": 23153,
+ "▁колле": 23154,
+ "▁уров": 23155,
+ "bag": 23156,
+ ".\")": 23157,
+ "▁ML": 23158,
+ "▁komt": 23159,
+ "▁[_": 23160,
+ "▁spectral": 23161,
+ "edo": 23162,
+ "▁insieme": 23163,
+ "▁suffering": 23164,
+ "slider": 23165,
+ "▁Kennedy": 23166,
+ "olate": 23167,
+ "▁Patri": 23168,
+ "зии": 23169,
+ "OH": 23170,
+ "▁теа": 23171,
+ "▁права": 23172,
+ "мах": 23173,
+ "rewrite": 23174,
+ "▁Einsatz": 23175,
+ "external": 23176,
+ "holds": 23177,
+ "▁Places": 23178,
+ "atype": 23179,
+ "▁vulner": 23180,
+ "▁abandoned": 23181,
+ "Origin": 23182,
+ "▁maximal": 23183,
+ "AAAA": 23184,
+ "▁Baseball": 23185,
+ "▁Close": 23186,
+ "▁painter": 23187,
+ "▁assigning": 23188,
+ "NB": 23189,
+ "blast": 23190,
+ "▁Künstler": 23191,
+ ")](": 23192,
+ "fach": 23193,
+ "▁Constantin": 23194,
+ "okes": 23195,
+ "▁nobody": 23196,
+ "▁subtract": 23197,
+ "▁fosse": 23198,
+ "▁certific": 23199,
+ "▁muse": 23200,
+ "/),": 23201,
+ "▁Profil": 23202,
+ "▁proxim": 23203,
+ "▁Jerusalem": 23204,
+ "▁simplicity": 23205,
+ "▁wsz": 23206,
+ "NUMBER": 23207,
+ "uttavia": 23208,
+ "UITableView": 23209,
+ "ichter": 23210,
+ "жан": 23211,
+ "▁Lav": 23212,
+ "itchen": 23213,
+ "▁Чем": 23214,
+ "Tu": 23215,
+ "▁geom": 23216,
+ "▁zvuky": 23217,
+ "▁Survey": 23218,
+ "ANCE": 23219,
+ "▁encrypted": 23220,
+ "prof": 23221,
+ "▁dare": 23222,
+ "▁Loren": 23223,
+ "тв": 23224,
+ "▁Алек": 23225,
+ "▁computers": 23226,
+ "▁expectation": 23227,
+ "▁substantial": 23228,
+ "▁Дми": 23229,
+ "▁`{": 23230,
+ "▁дра": 23231,
+ "ubble": 23232,
+ "▁performs": 23233,
+ "▁Krieg": 23234,
+ "▁incoming": 23235,
+ "▁Classification": 23236,
+ "WebView": 23237,
+ "▁episodes": 23238,
+ "apper": 23239,
+ "äufig": 23240,
+ "▁giov": 23241,
+ "▁Depart": 23242,
+ "бора": 23243,
+ "edly": 23244,
+ "ospod": 23245,
+ "▁ptr": 23246,
+ "▁dátum": 23247,
+ "▁estimation": 23248,
+ "icole": 23249,
+ "▁----": 23250,
+ "▁princes": 23251,
+ "HEAD": 23252,
+ "▁diffusion": 23253,
+ "▁drie": 23254,
+ "▁Ada": 23255,
+ "нице": 23256,
+ "nginx": 23257,
+ "shal": 23258,
+ "▁februari": 23259,
+ "▁Tat": 23260,
+ "looking": 23261,
+ "kund": 23262,
+ "▁Dean": 23263,
+ "mongodb": 23264,
+ "вших": 23265,
+ "▁Aur": 23266,
+ "▁Flora": 23267,
+ "▁Studios": 23268,
+ "ције": 23269,
+ "eil": 23270,
+ "Install": 23271,
+ "▁franch": 23272,
+ "▁HMS": 23273,
+ "▁practices": 23274,
+ "lej": 23275,
+ "dale": 23276,
+ "▁poste": 23277,
+ "▁Hels": 23278,
+ "▁reliable": 23279,
+ "ździer": 23280,
+ "▁verse": 23281,
+ "ermeister": 23282,
+ "▁quit": 23283,
+ "ético": 23284,
+ "ilis": 23285,
+ "edor": 23286,
+ "▁Cultural": 23287,
+ "дже": 23288,
+ "▁liked": 23289,
+ "▁mongodb": 23290,
+ "▁Broadway": 23291,
+ "▁IR": 23292,
+ "eszt": 23293,
+ "hov": 23294,
+ "▁míst": 23295,
+ "reiche": 23296,
+ "▁kB": 23297,
+ "стом": 23298,
+ "▁SQLite": 23299,
+ "▁torneo": 23300,
+ "\\.": 23301,
+ "Ord": 23302,
+ "▁Administration": 23303,
+ "▁зда": 23304,
+ "▁Hinter": 23305,
+ "▁Via": 23306,
+ "Decimal": 23307,
+ "orious": 23308,
+ "▁nécessaire": 23309,
+ "wx": 23310,
+ "▁tej": 23311,
+ "▁tema": 23312,
+ "Obrázky": 23313,
+ "рите": 23314,
+ "▁builds": 23315,
+ "▁laten": 23316,
+ "▁гг": 23317,
+ "Visibility": 23318,
+ "läu": 23319,
+ "▁sechs": 23320,
+ "▁луч": 23321,
+ "cera": 23322,
+ "Could": 23323,
+ "▁traject": 23324,
+ "}}^{": 23325,
+ "▁Japon": 23326,
+ "another": 23327,
+ "IK": 23328,
+ "▁belonging": 23329,
+ "▁facilities": 23330,
+ "▁Daily": 23331,
+ "▁dece": 23332,
+ "intro": 23333,
+ "▁случа": 23334,
+ "Namespace": 23335,
+ "▁Bak": 23336,
+ "locale": 23337,
+ "UG": 23338,
+ "=${": 23339,
+ "▁compañ": 23340,
+ "jąc": 23341,
+ "▁arithmetic": 23342,
+ "forum": 23343,
+ "▁porta": 23344,
+ "onk": 23345,
+ "▁gender": 23346,
+ "▁expects": 23347,
+ "бка": 23348,
+ "▁nak": 23349,
+ "▁Grace": 23350,
+ "▁stro": 23351,
+ "ividual": 23352,
+ "▁COM": 23353,
+ "▁Farm": 23354,
+ "▁canton": 23355,
+ "тому": 23356,
+ "javax": 23357,
+ "сей": 23358,
+ "▁briefly": 23359,
+ "Face": 23360,
+ "rotate": 23361,
+ "constant": 23362,
+ "▁gallery": 23363,
+ "astro": 23364,
+ "allery": 23365,
+ "▁DJ": 23366,
+ "charge": 23367,
+ "ходить": 23368,
+ "Cent": 23369,
+ "\\\",": 23370,
+ "▁donna": 23371,
+ "arca": 23372,
+ "lade": 23373,
+ "zin": 23374,
+ "▁Ned": 23375,
+ "▁hosting": 23376,
+ "idor": 23377,
+ "itative": 23378,
+ "igs": 23379,
+ "▁пря": 23380,
+ "▁ticket": 23381,
+ "▁studying": 23382,
+ "▁designer": 23383,
+ "lapsed": 23384,
+ "▁laat": 23385,
+ "▁dix": 23386,
+ "▁integrated": 23387,
+ "▁informed": 23388,
+ "▁behave": 23389,
+ "▁labour": 23390,
+ "estellt": 23391,
+ "calendar": 23392,
+ "▁killing": 23393,
+ "▁twitter": 23394,
+ "iae": 23395,
+ "▁historique": 23396,
+ "DEFAULT": 23397,
+ "iała": 23398,
+ "▁theoretical": 23399,
+ "▁unders": 23400,
+ "ляет": 23401,
+ "atan": 23402,
+ "▁surname": 23403,
+ "▁intercept": 23404,
+ "гласно": 23405,
+ "▁општини": 23406,
+ "▁tired": 23407,
+ "▁Beth": 23408,
+ "▁административ": 23409,
+ "Li": 23410,
+ "▁Тур": 23411,
+ "▁Scanner": 23412,
+ "▁Stern": 23413,
+ "▁вместе": 23414,
+ "▁reporting": 23415,
+ "▁sull": 23416,
+ "цией": 23417,
+ "berts": 23418,
+ "ogonal": 23419,
+ "ők": 23420,
+ "▁ipsum": 23421,
+ "▁seulement": 23422,
+ "▁Seiten": 23423,
+ "wordpress": 23424,
+ "▁featuring": 23425,
+ "istischen": 23426,
+ "jub": 23427,
+ "▁étr": 23428,
+ "▁tea": 23429,
+ "▁adapted": 23430,
+ "▁scales": 23431,
+ "▁nan": 23432,
+ "getValue": 23433,
+ "▁Blues": 23434,
+ "acles": 23435,
+ "▁stati": 23436,
+ "▁entitled": 23437,
+ "▁Ralph": 23438,
+ "gravity": 23439,
+ "▁entrepr": 23440,
+ "któber": 23441,
+ "limat": 23442,
+ "lis": 23443,
+ "Demo": 23444,
+ "relation": 23445,
+ "▁nep": 23446,
+ "prowad": 23447,
+ "itis": 23448,
+ "▁pup": 23449,
+ "nehmer": 23450,
+ "▁disappoint": 23451,
+ "▁etwas": 23452,
+ "annon": 23453,
+ "▁approved": 23454,
+ "▁clever": 23455,
+ "Loading": 23456,
+ "▁verz": 23457,
+ "resse": 23458,
+ "▁inspir": 23459,
+ "▁sampling": 23460,
+ "▁Bek": 23461,
+ "})$.": 23462,
+ "▁грома": 23463,
+ "▁specie": 23464,
+ "▁repub": 23465,
+ "▁loader": 23466,
+ "▁erf": 23467,
+ "▁shoulder": 23468,
+ "rais": 23469,
+ "▁мате": 23470,
+ "▁Month": 23471,
+ "Scene": 23472,
+ "▁blocking": 23473,
+ "▁ocean": 23474,
+ "geben": 23475,
+ "▁Kilometer": 23476,
+ "▁bedeut": 23477,
+ "▁Mix": 23478,
+ "fmt": 23479,
+ "▁Norweg": 23480,
+ "▁IDs": 23481,
+ "parallel": 23482,
+ "▁anticip": 23483,
+ "▁revis": 23484,
+ "хан": 23485,
+ "▁свет": 23486,
+ "CASE": 23487,
+ "▁führt": 23488,
+ "▁atomic": 23489,
+ "▁darkness": 23490,
+ "▁Fußballspieler": 23491,
+ "▁Жи": 23492,
+ "quisition": 23493,
+ "▁Sieg": 23494,
+ "Circ": 23495,
+ "▁cientí": 23496,
+ "nelle": 23497,
+ "SHA": 23498,
+ "▁urb": 23499,
+ "▁ksi": 23500,
+ "leqslant": 23501,
+ "▁фрон": 23502,
+ "▁defect": 23503,
+ "▁rá": 23504,
+ "▁stronger": 23505,
+ "▁pł": 23506,
+ "▁communities": 23507,
+ "нина": 23508,
+ "enas": 23509,
+ "iennent": 23510,
+ "▁safely": 23511,
+ "▁тя": 23512,
+ "▁benchmark": 23513,
+ "▁Braun": 23514,
+ "methods": 23515,
+ "argument": 23516,
+ "vos": 23517,
+ "obox": 23518,
+ "рови": 23519,
+ "▁recherche": 23520,
+ "mn": 23521,
+ "▁brings": 23522,
+ "machine": 23523,
+ "CESS": 23524,
+ "hosts": 23525,
+ "▁NY": 23526,
+ "Autow": 23527,
+ "▁современ": 23528,
+ "▁Gary": 23529,
+ "▁sensor": 23530,
+ "▁documented": 23531,
+ "▁prendre": 23532,
+ "▁peer": 23533,
+ "enix": 23534,
+ "hai": 23535,
+ "arbe": 23536,
+ "цент": 23537,
+ "_(": 23538,
+ "▁URI": 23539,
+ "ева": 23540,
+ "▁Regie": 23541,
+ "▁Monument": 23542,
+ "▁onderwerp": 23543,
+ "Bag": 23544,
+ "tit": 23545,
+ "▁stir": 23546,
+ "▁nerv": 23547,
+ "сторія": 23548,
+ "▁sov": 23549,
+ "▁writers": 23550,
+ "▁sorts": 23551,
+ "absolute": 23552,
+ "▁difficulties": 23553,
+ "▁parlament": 23554,
+ "▁IEnumerable": 23555,
+ "▁dissol": 23556,
+ "▁CHECK": 23557,
+ "arina": 23558,
+ "inburgh": 23559,
+ "DM": 23560,
+ "▁eind": 23561,
+ "▁budget": 23562,
+ "▁certains": 23563,
+ "▁första": 23564,
+ "anja": 23565,
+ "▁годов": 23566,
+ "▁тек": 23567,
+ "▁Duch": 23568,
+ "gui": 23569,
+ "▁Teams": 23570,
+ "▁многи": 23571,
+ "Marie": 23572,
+ "Integr": 23573,
+ "ThreadPool": 23574,
+ "rust": 23575,
+ "ík": 23576,
+ "%\"": 23577,
+ "enf": 23578,
+ "spl": 23579,
+ "▁begun": 23580,
+ "lou": 23581,
+ "▁RewriteRule": 23582,
+ "tuple": 23583,
+ "aneous": 23584,
+ "▁marine": 23585,
+ "attan": 23586,
+ "ikal": 23587,
+ "▁graduated": 23588,
+ "illé": 23589,
+ "▁прове": 23590,
+ "▁Роз": 23591,
+ "',\r": 23592,
+ "▁Pfarr": 23593,
+ "▁nivel": 23594,
+ "▁працю": 23595,
+ "music": 23596,
+ "▁setTimeout": 23597,
+ "ERS": 23598,
+ "▁Erik": 23599,
+ "pit": 23600,
+ "▁Хро": 23601,
+ "▁pił": 23602,
+ "▁peri": 23603,
+ "док": 23604,
+ "uszt": 23605,
+ "▁Bear": 23606,
+ "ClassName": 23607,
+ "▁Parlament": 23608,
+ "▁aix": 23609,
+ "▁invited": 23610,
+ "▁PATH": 23611,
+ "xter": 23612,
+ "▁Race": 23613,
+ "▁hecho": 23614,
+ "▁Tower": 23615,
+ "▁utf": 23616,
+ "actly": 23617,
+ "▁буде": 23618,
+ "▁angles": 23619,
+ "няя": 23620,
+ "ouvelles": 23621,
+ "▁climate": 23622,
+ "▁singing": 23623,
+ "▁navigate": 23624,
+ ">';": 23625,
+ "adows": 23626,
+ "▁leta": 23627,
+ "▁Sitz": 23628,
+ "▁partitions": 23629,
+ "▁dock": 23630,
+ "▁ży": 23631,
+ "▁allocate": 23632,
+ "▁benefits": 23633,
+ "▁nieder": 23634,
+ "xpath": 23635,
+ "meck": 23636,
+ "älle": 23637,
+ "▁coupling": 23638,
+ "жил": 23639,
+ "ForKey": 23640,
+ "argent": 23641,
+ "clou": 23642,
+ "▁instruments": 23643,
+ "▁enthus": 23644,
+ "▁még": 23645,
+ "▁Пав": 23646,
+ "▁Rach": 23647,
+ "-----": 23648,
+ "▁APIs": 23649,
+ "▁Vier": 23650,
+ "Cmd": 23651,
+ "itore": 23652,
+ "▁Cuba": 23653,
+ "▁dátummal": 23654,
+ "▁embedding": 23655,
+ "stdio": 23656,
+ "▁Gilbert": 23657,
+ "▁geprüft": 23658,
+ "▁stating": 23659,
+ "▁triggers": 23660,
+ "+=": 23661,
+ "▁spécial": 23662,
+ "▁deliber": 23663,
+ "мин": 23664,
+ "Produ": 23665,
+ "▁Stati": 23666,
+ "▁zus": 23667,
+ "ktionen": 23668,
+ "Dispatcher": 23669,
+ "idal": 23670,
+ "▁LP": 23671,
+ "optera": 23672,
+ "▁estar": 23673,
+ "▁значи": 23674,
+ "смо": 23675,
+ "ouses": 23676,
+ "engono": 23677,
+ "▁WPF": 23678,
+ "publish": 23679,
+ "▁teor": 23680,
+ "elif": 23681,
+ "▁erg": 23682,
+ "▁separation": 23683,
+ "Pan": 23684,
+ "▁Orchestra": 23685,
+ "Peter": 23686,
+ "bounds": 23687,
+ "▁Shakespeare": 23688,
+ "▁cantante": 23689,
+ "▁demi": 23690,
+ "▁Popular": 23691,
+ "фр": 23692,
+ "arring": 23693,
+ "цин": 23694,
+ "▁Ис": 23695,
+ "von": 23696,
+ "▁substitution": 23697,
+ "▁línea": 23698,
+ "\\}$.": 23699,
+ "como": 23700,
+ "▁важ": 23701,
+ "wagen": 23702,
+ "▁rarely": 23703,
+ "▁periods": 23704,
+ "glob": 23705,
+ "▁Frid": 23706,
+ "▁Terr": 23707,
+ "▁Release": 23708,
+ "Brainz": 23709,
+ "▁граф": 23710,
+ "DIS": 23711,
+ "compatible": 23712,
+ "▁poč": 23713,
+ "LIN": 23714,
+ "▁Källor": 23715,
+ "▁Arizona": 23716,
+ "ppy": 23717,
+ "Seq": 23718,
+ "▁Ain": 23719,
+ "▁Tourn": 23720,
+ "brow": 23721,
+ "▁Kör": 23722,
+ "▁ash": 23723,
+ "ogeneous": 23724,
+ "▁dialect": 23725,
+ "▁насеља": 23726,
+ "mysqli": 23727,
+ "цов": 23728,
+ "▁flor": 23729,
+ "▁фло": 23730,
+ "IAB": 23731,
+ "▁Within": 23732,
+ "^(": 23733,
+ "▁bois": 23734,
+ "▁tank": 23735,
+ "▁affili": 23736,
+ "▁hijo": 23737,
+ "▁Kate": 23738,
+ "▁Verl": 23739,
+ "▁Miami": 23740,
+ "▁typescript": 23741,
+ "њу": 23742,
+ "▁Vern": 23743,
+ "▁висо": 23744,
+ "iemann": 23745,
+ "▁coverage": 23746,
+ "brie": 23747,
+ "▁Starting": 23748,
+ "numpy": 23749,
+ "▁Jenkins": 23750,
+ "▁két": 23751,
+ "▁grup": 23752,
+ "▁Scient": 23753,
+ "▁interrupt": 23754,
+ "▁blob": 23755,
+ "ugel": 23756,
+ "▁Orth": 23757,
+ "abama": 23758,
+ "▁Bapt": 23759,
+ "ownik": 23760,
+ "▁быть": 23761,
+ "▁Julius": 23762,
+ "▁През": 23763,
+ "▁substitute": 23764,
+ "supported": 23765,
+ "chy": 23766,
+ "egyzetek": 23767,
+ "▁Performance": 23768,
+ "lessly": 23769,
+ "Constructor": 23770,
+ "▁extending": 23771,
+ "▁Muslim": 23772,
+ "Overflow": 23773,
+ "▁Jenn": 23774,
+ "▁produz": 23775,
+ "мії": 23776,
+ "▁países": 23777,
+ "▁eux": 23778,
+ "▁fate": 23779,
+ "ologe": 23780,
+ "ук": 23781,
+ "▁wobei": 23782,
+ "▁Sachsen": 23783,
+ "▁сайт": 23784,
+ "Models": 23785,
+ "▁Fast": 23786,
+ "besondere": 23787,
+ "▁FR": 23788,
+ "▁acon": 23789,
+ "▁Denkmal": 23790,
+ "▁anch": 23791,
+ "▁público": 23792,
+ "▁Tas": 23793,
+ "▁cand": 23794,
+ "▁paździer": 23795,
+ "▁Мон": 23796,
+ "▁versus": 23797,
+ "rut": 23798,
+ "GT": 23799,
+ "▁inserting": 23800,
+ "▁canad": 23801,
+ "єм": 23802,
+ "▁Metro": 23803,
+ "▁Herzog": 23804,
+ "Ignore": 23805,
+ "▁decrease": 23806,
+ "▁пун": 23807,
+ "▁Fischer": 23808,
+ "▁Mall": 23809,
+ "▁nörd": 23810,
+ "iostream": 23811,
+ "▁Luxemb": 23812,
+ "payload": 23813,
+ "▁Zeitung": 23814,
+ "▁modifying": 23815,
+ "▁Cher": 23816,
+ "▁Luci": 23817,
+ "nx": 23818,
+ "▁loose": 23819,
+ "▁topics": 23820,
+ "▁varied": 23821,
+ "▁pg": 23822,
+ "ajes": 23823,
+ "umm": 23824,
+ "Views": 23825,
+ "▁Beau": 23826,
+ "MAP": 23827,
+ "ipeline": 23828,
+ "▁Interest": 23829,
+ "arith": 23830,
+ "▁según": 23831,
+ "▁Gemeins": 23832,
+ "▁Attribute": 23833,
+ "community": 23834,
+ "▁центр": 23835,
+ "▁kilometer": 23836,
+ "▁économ": 23837,
+ "laration": 23838,
+ "▁къ": 23839,
+ "▁carriage": 23840,
+ "▁Lane": 23841,
+ "▁необ": 23842,
+ "kur": 23843,
+ "▁AF": 23844,
+ "INTER": 23845,
+ "))$": 23846,
+ "▁beide": 23847,
+ "destination": 23848,
+ "▁fonts": 23849,
+ "appendChild": 23850,
+ "▁MAR": 23851,
+ "▁gay": 23852,
+ "mil": 23853,
+ "lesh": 23854,
+ "èt": 23855,
+ "▁Wang": 23856,
+ "▁Years": 23857,
+ "▁Symbol": 23858,
+ "Live": 23859,
+ "quency": 23860,
+ "▁Users": 23861,
+ "▁Unicode": 23862,
+ "▁Sau": 23863,
+ "▁tons": 23864,
+ "▁Ні": 23865,
+ "▁краї": 23866,
+ "AXI": 23867,
+ "▁Pick": 23868,
+ "AI": 23869,
+ "▁hath": 23870,
+ "▁ainda": 23871,
+ "▁papa": 23872,
+ "▁Censo": 23873,
+ "▁Bald": 23874,
+ "▁Насеље": 23875,
+ "▁simulations": 23876,
+ "▁jaren": 23877,
+ "▁inherited": 23878,
+ "▁той": 23879,
+ "▁feels": 23880,
+ "ression": 23881,
+ "▁október": 23882,
+ "bid": 23883,
+ "ási": 23884,
+ "▁muss": 23885,
+ "ventory": 23886,
+ "▁meist": 23887,
+ "▁bore": 23888,
+ "▁slider": 23889,
+ "дели": 23890,
+ "\\;": 23891,
+ "▁extracted": 23892,
+ "кур": 23893,
+ "Edge": 23894,
+ "▁perf": 23895,
+ "▁Brigade": 23896,
+ "▁град": 23897,
+ "ienie": 23898,
+ "▁Norden": 23899,
+ "▁cancer": 23900,
+ "\"/": 23901,
+ "Cur": 23902,
+ "▁Сере": 23903,
+ "▁liquid": 23904,
+ "structure": 23905,
+ "▁choosing": 23906,
+ "▁Perl": 23907,
+ "Side": 23908,
+ "üs": 23909,
+ "ритор": 23910,
+ "▁kost": 23911,
+ "▁packets": 23912,
+ "▁которого": 23913,
+ "▁Comun": 23914,
+ "▁fingers": 23915,
+ "ográfica": 23916,
+ ">:": 23917,
+ "▁championnat": 23918,
+ "▁blieb": 23919,
+ "▁Situ": 23920,
+ "▁suic": 23921,
+ "andis": 23922,
+ "Fre": 23923,
+ "▁Conc": 23924,
+ "▁republic": 23925,
+ "▁armed": 23926,
+ "▁hell": 23927,
+ "▁hög": 23928,
+ "ragma": 23929,
+ "▁ense": 23930,
+ "▁acres": 23931,
+ "▁Від": 23932,
+ "▁Reform": 23933,
+ "MainActivity": 23934,
+ "keeper": 23935,
+ "erb": 23936,
+ "▁monaster": 23937,
+ "subsubsection": 23938,
+ "▁Див": 23939,
+ "▁creature": 23940,
+ "▁indicating": 23941,
+ "▁urls": 23942,
+ "▁kein": 23943,
+ "образ": 23944,
+ "pick": 23945,
+ "▁Admir": 23946,
+ "▁oldest": 23947,
+ "▁muz": 23948,
+ "▁contradiction": 23949,
+ "▁probabil": 23950,
+ "illiant": 23951,
+ "▁pav": 23952,
+ "▁papel": 23953,
+ "ubs": 23954,
+ "▁жена": 23955,
+ "AML": 23956,
+ "▁recip": 23957,
+ "▁COL": 23958,
+ "added": 23959,
+ "▁clue": 23960,
+ "▁Ukraine": 23961,
+ "▁jelent": 23962,
+ "чень": 23963,
+ "▁mathematics": 23964,
+ "Accept": 23965,
+ "▁сот": 23966,
+ "▁север": 23967,
+ "▁isolated": 23968,
+ "▁поя": 23969,
+ "wür": 23970,
+ "Router": 23971,
+ "CAT": 23972,
+ "rgb": 23973,
+ "▁Lov": 23974,
+ "mutable": 23975,
+ "▁Wes": 23976,
+ "▁Italien": 23977,
+ "Drag": 23978,
+ "enium": 23979,
+ "atting": 23980,
+ "tcp": 23981,
+ "▁erfolgte": 23982,
+ "▁Beit": 23983,
+ "гато": 23984,
+ "▁Systems": 23985,
+ "▁reserve": 23986,
+ "eree": 23987,
+ "▁Пари": 23988,
+ "▁зали": 23989,
+ "▁rent": 23990,
+ "▁sunt": 23991,
+ "▁Girls": 23992,
+ "▁Ernest": 23993,
+ "▁fits": 23994,
+ "▁oppon": 23995,
+ "▁живело": 23996,
+ "▁avaient": 23997,
+ "▁Florence": 23998,
+ "▁числе": 23999,
+ "▁engines": 24000,
+ "Dynamic": 24001,
+ "▁stycznia": 24002,
+ "▁bias": 24003,
+ "▁Exchange": 24004,
+ "дий": 24005,
+ "▁historiques": 24006,
+ "▁Hä": 24007,
+ "hod": 24008,
+ "▁wł": 24009,
+ "schap": 24010,
+ "▁lac": 24011,
+ "▁Foi": 24012,
+ "▁dwell": 24013,
+ "▁Unternehmen": 24014,
+ "URN": 24015,
+ "▁kilometres": 24016,
+ "▁Однако": 24017,
+ "кли": 24018,
+ "▁Sri": 24019,
+ "Groups": 24020,
+ "mind": 24021,
+ "oslov": 24022,
+ "fern": 24023,
+ "egu": 24024,
+ "abeled": 24025,
+ "Fiddle": 24026,
+ "▁Century": 24027,
+ "/-": 24028,
+ "▁Jegyzetek": 24029,
+ "Hen": 24030,
+ "ensemble": 24031,
+ "▁Gut": 24032,
+ "_{{\\": 24033,
+ "▁ranking": 24034,
+ "+$": 24035,
+ "ала": 24036,
+ "▁#{": 24037,
+ "imientos": 24038,
+ "achim": 24039,
+ "rides": 24040,
+ "▁Klaus": 24041,
+ "▁intend": 24042,
+ "▁Kentucky": 24043,
+ "cipe": 24044,
+ "▁Dienst": 24045,
+ "▁situated": 24046,
+ "▁póź": 24047,
+ "▁scrit": 24048,
+ "clip": 24049,
+ "нет": 24050,
+ "tables": 24051,
+ "▁Nied": 24052,
+ "▁McK": 24053,
+ "▁powst": 24054,
+ "▁kunnen": 24055,
+ "▁Evans": 24056,
+ "жды": 24057,
+ "вать": 24058,
+ "uchar": 24059,
+ "▁residents": 24060,
+ "iak": 24061,
+ "▁Resol": 24062,
+ "▁veces": 24063,
+ "▁satisfying": 24064,
+ "INF": 24065,
+ "▁син": 24066,
+ "▁crossing": 24067,
+ "iben": 24068,
+ "▁широ": 24069,
+ "pto": 24070,
+ "ILL": 24071,
+ "▁роль": 24072,
+ "▁aktiv": 24073,
+ "▁обращения": 24074,
+ "Wikispecies": 24075,
+ "▁Höhe": 24076,
+ "cro": 24077,
+ "════": 24078,
+ "altra": 24079,
+ "▁FILE": 24080,
+ "▁ups": 24081,
+ "▁allocation": 24082,
+ "Michael": 24083,
+ "▁acknowled": 24084,
+ "Linux": 24085,
+ "▁metros": 24086,
+ "tte": 24087,
+ "afen": 24088,
+ "▁xcode": 24089,
+ "▁тради": 24090,
+ "species": 24091,
+ "▁injury": 24092,
+ "▁самы": 24093,
+ "▁lattice": 24094,
+ "Material": 24095,
+ "andenburg": 24096,
+ "▁huvudstaden": 24097,
+ "story": 24098,
+ "▁varying": 24099,
+ "▁követ": 24100,
+ "▁Российской": 24101,
+ "irse": 24102,
+ "▁drum": 24103,
+ "Pressed": 24104,
+ "Lar": 24105,
+ "▁Agu": 24106,
+ "▁weil": 24107,
+ "▁commence": 24108,
+ "▁Según": 24109,
+ "Gesture": 24110,
+ "Shape": 24111,
+ "▁Vors": 24112,
+ "▁succès": 24113,
+ "▁corrected": 24114,
+ "Kar": 24115,
+ "▁cruel": 24116,
+ "▁politico": 24117,
+ "▁Schriftsteller": 24118,
+ "▁risult": 24119,
+ "etu": 24120,
+ "archiv": 24121,
+ "▁género": 24122,
+ "▁Lü": 24123,
+ "▁triumph": 24124,
+ "ORS": 24125,
+ "Lu": 24126,
+ "▁personnel": 24127,
+ "▁Hills": 24128,
+ "asset": 24129,
+ "domin": 24130,
+ "Receive": 24131,
+ "▁Oak": 24132,
+ "▁Kno": 24133,
+ "▁Theory": 24134,
+ "irie": 24135,
+ "owan": 24136,
+ "▁estava": 24137,
+ "▁executes": 24138,
+ "йт": 24139,
+ "ópez": 24140,
+ "поло": 24141,
+ "ética": 24142,
+ "▁название": 24143,
+ "▁converges": 24144,
+ "▁notre": 24145,
+ "▁populated": 24146,
+ "▁movements": 24147,
+ "▁statistical": 24148,
+ "▁Zweiten": 24149,
+ "quin": 24150,
+ "▁importantes": 24151,
+ "▁klein": 24152,
+ "▁Segunda": 24153,
+ "schließend": 24154,
+ "Failure": 24155,
+ "nar": 24156,
+ "dag": 24157,
+ "▁ruolo": 24158,
+ "▁fiction": 24159,
+ "▁использу": 24160,
+ "▁crisis": 24161,
+ "▁Getting": 24162,
+ ",%": 24163,
+ "▁армии": 24164,
+ "▁campus": 24165,
+ "▁footer": 24166,
+ "▁días": 24167,
+ "бан": 24168,
+ "▁liberty": 24169,
+ "▁gh": 24170,
+ "▁chamber": 24171,
+ "▁districts": 24172,
+ "▁excited": 24173,
+ "▁canción": 24174,
+ "tero": 24175,
+ "▁Working": 24176,
+ "▁części": 24177,
+ "льный": 24178,
+ "▁forum": 24179,
+ "▁Ehe": 24180,
+ "▁ката": 24181,
+ "itations": 24182,
+ "Tools": 24183,
+ "achiv": 24184,
+ "▁cres": 24185,
+ "asto": 24186,
+ "▁rever": 24187,
+ "▁nazionale": 24188,
+ "▁doors": 24189,
+ "▁Nancy": 24190,
+ "▁islands": 24191,
+ "Imp": 24192,
+ "▁Chair": 24193,
+ "▁vorm": 24194,
+ "sein": 24195,
+ "▁доку": 24196,
+ "erset": 24197,
+ "▁tätig": 24198,
+ "▁Krit": 24199,
+ "▁пя": 24200,
+ "▁conservation": 24201,
+ "▁Partido": 24202,
+ "minipage": 24203,
+ "Validator": 24204,
+ "▁recovery": 24205,
+ "▁NASA": 24206,
+ "▁breast": 24207,
+ "ilty": 24208,
+ "analy": 24209,
+ "elines": 24210,
+ "▁Saturday": 24211,
+ "emark": 24212,
+ "cej": 24213,
+ "Zero": 24214,
+ "▁Turner": 24215,
+ "secure": 24216,
+ "Exists": 24217,
+ "▁Rick": 24218,
+ "evalu": 24219,
+ "ctrl": 24220,
+ "▁compression": 24221,
+ "▁CURL": 24222,
+ "textcolor": 24223,
+ ")\\,": 24224,
+ "longrightarrow": 24225,
+ "▁Fernseh": 24226,
+ "icha": 24227,
+ "▁loi": 24228,
+ "▁Оте": 24229,
+ "▁cave": 24230,
+ "▁dozen": 24231,
+ "▁explaining": 24232,
+ "▁innov": 24233,
+ "▁Nicholas": 24234,
+ "▁diameter": 24235,
+ "▁Marian": 24236,
+ "▁fires": 24237,
+ "▁artifact": 24238,
+ "▁Parker": 24239,
+ "▁Bund": 24240,
+ "▁verte": 24241,
+ "▁talent": 24242,
+ "▁Lucas": 24243,
+ "reverse": 24244,
+ "▁folgenden": 24245,
+ "▁Sah": 24246,
+ "jections": 24247,
+ "▁invece": 24248,
+ "▁costitu": 24249,
+ "▁ssl": 24250,
+ "}}^": 24251,
+ "▁violent": 24252,
+ "▁spos": 24253,
+ "Rout": 24254,
+ "jdk": 24255,
+ "▁заме": 24256,
+ "▁furent": 24257,
+ "andal": 24258,
+ "Hom": 24259,
+ "▁Senior": 24260,
+ "▁pounds": 24261,
+ "▁Discogs": 24262,
+ "▁зе": 24263,
+ "'}[": 24264,
+ "▁Napoleon": 24265,
+ "ordinates": 24266,
+ "àn": 24267,
+ "▁kurz": 24268,
+ "▁vere": 24269,
+ "▁reuse": 24270,
+ "▁Ген": 24271,
+ "▁Syst": 24272,
+ "▁disappeared": 24273,
+ "▁Watch": 24274,
+ "bibliothek": 24275,
+ "▁корпу": 24276,
+ "▁Cs": 24277,
+ "▁}`": 24278,
+ "▁rör": 24279,
+ "▁дела": 24280,
+ "VB": 24281,
+ "▁calculus": 24282,
+ "рода": 24283,
+ "▁judgment": 24284,
+ "atile": 24285,
+ "▁longue": 24286,
+ "▁Hus": 24287,
+ "Jac": 24288,
+ "}})": 24289,
+ "RIPT": 24290,
+ "IABot": 24291,
+ "▁após": 24292,
+ "▁aston": 24293,
+ "Webachiv": 24294,
+ "▁URLs": 24295,
+ "▁coat": 24296,
+ "▁эконо": 24297,
+ "▁lear": 24298,
+ "extensions": 24299,
+ "▁Classic": 24300,
+ "TI": 24301,
+ "▁Tage": 24302,
+ "▁lá": 24303,
+ "▁semb": 24304,
+ "▁développement": 24305,
+ "ISTS": 24306,
+ "▁solves": 24307,
+ ",\\,": 24308,
+ "▁чемпі": 24309,
+ "ordinary": 24310,
+ "▁Bav": 24311,
+ "▁muchos": 24312,
+ "Self": 24313,
+ "▁Май": 24314,
+ "▁Diet": 24315,
+ "▁necessity": 24316,
+ "від": 24317,
+ "▁mano": 24318,
+ "▁Ср": 24319,
+ "▁carre": 24320,
+ "▁Camera": 24321,
+ "▁Narod": 24322,
+ "▁Phone": 24323,
+ "▁polym": 24324,
+ "imore": 24325,
+ "isEmpty": 24326,
+ "▁Houston": 24327,
+ "▁Rece": 24328,
+ "▁presentation": 24329,
+ "ниципа": 24330,
+ "▁Db": 24331,
+ "▁confident": 24332,
+ "▁}{": 24333,
+ "▁bullet": 24334,
+ "▁{},": 24335,
+ "ANGE": 24336,
+ "▁Notre": 24337,
+ "chin": 24338,
+ "▁Dragon": 24339,
+ "erca": 24340,
+ "iali": 24341,
+ "▁asset": 24342,
+ "▁muito": 24343,
+ "▁deeply": 24344,
+ "▁restriction": 24345,
+ "▁commerce": 24346,
+ "▁Bomb": 24347,
+ "caught": 24348,
+ "qq": 24349,
+ "▁Arag": 24350,
+ "▁немец": 24351,
+ "▁Analysis": 24352,
+ "▁článku": 24353,
+ "▁baby": 24354,
+ "▁echter": 24355,
+ "▁одного": 24356,
+ "жена": 24357,
+ "▁whitespace": 24358,
+ "çu": 24359,
+ "LIST": 24360,
+ "frique": 24361,
+ "▁varias": 24362,
+ "▁Wit": 24363,
+ "▁Licencia": 24364,
+ "Exit": 24365,
+ "▁sierp": 24366,
+ "▁assemb": 24367,
+ "▁splitting": 24368,
+ "▁palace": 24369,
+ "▁blocked": 24370,
+ "▁boundaries": 24371,
+ "▁iterations": 24372,
+ "▁Rotten": 24373,
+ "▁Verkehr": 24374,
+ "▁weer": 24375,
+ "Tests": 24376,
+ "ifting": 24377,
+ "▁regul": 24378,
+ "▁persist": 24379,
+ "▁Solution": 24380,
+ "pb": 24381,
+ "▁collapse": 24382,
+ "▁arrested": 24383,
+ "▁predicate": 24384,
+ "▁Zone": 24385,
+ "▁ingen": 24386,
+ "zález": 24387,
+ "▁banks": 24388,
+ "plant": 24389,
+ "▁Nella": 24390,
+ "▁бан": 24391,
+ "▁Snow": 24392,
+ "▁Kreuz": 24393,
+ "ício": 24394,
+ "▁enters": 24395,
+ "▁expose": 24396,
+ "či": 24397,
+ "шие": 24398,
+ "Qual": 24399,
+ "▁landscape": 24400,
+ "▁подацима": 24401,
+ "mai": 24402,
+ "stag": 24403,
+ "ований": 24404,
+ "DEF": 24405,
+ "[]{": 24406,
+ "▁dernière": 24407,
+ "icut": 24408,
+ "▁Xml": 24409,
+ "▁subgroup": 24410,
+ "▁Polsce": 24411,
+ "▁Warning": 24412,
+ "▁vehicles": 24413,
+ "iot": 24414,
+ "▁dll": 24415,
+ "ront": 24416,
+ "▁Louise": 24417,
+ "▁ara": 24418,
+ "▁Scala": 24419,
+ "▁canonical": 24420,
+ "▁placing": 24421,
+ "ERY": 24422,
+ "▁Jag": 24423,
+ "▁virus": 24424,
+ "emu": 24425,
+ "▁});\r": 24426,
+ "▁мм": 24427,
+ "▁Trying": 24428,
+ "▁Lexikon": 24429,
+ "abord": 24430,
+ "▁expedition": 24431,
+ "▁demanded": 24432,
+ "Zyg": 24433,
+ "lein": 24434,
+ "▁verwendet": 24435,
+ "рина": 24436,
+ "wol": 24437,
+ "▁pivot": 24438,
+ "▁однако": 24439,
+ "▁propriet": 24440,
+ "▁awards": 24441,
+ "tout": 24442,
+ "▁assim": 24443,
+ "▁Storm": 24444,
+ "Limit": 24445,
+ "elin": 24446,
+ "wealth": 24447,
+ "uez": 24448,
+ "▁rappresent": 24449,
+ "▁resta": 24450,
+ "▁gegründet": 24451,
+ "▁journalist": 24452,
+ "isie": 24453,
+ "▁facility": 24454,
+ "illed": 24455,
+ "ulk": 24456,
+ "▁PK": 24457,
+ "Anchor": 24458,
+ "▁_)": 24459,
+ "VF": 24460,
+ "LAB": 24461,
+ "▁nå": 24462,
+ "odos": 24463,
+ "▁billion": 24464,
+ "virti": 24465,
+ "▁Jeux": 24466,
+ "юза": 24467,
+ "tomcat": 24468,
+ "▁charts": 24469,
+ "▁Bundle": 24470,
+ "▁lst": 24471,
+ "▁exer": 24472,
+ "▁females": 24473,
+ "▁obliged": 24474,
+ "▁aby": 24475,
+ "rolled": 24476,
+ "dri": 24477,
+ "▁Sche": 24478,
+ "▁vessels": 24479,
+ "IMARY": 24480,
+ "▁reasoning": 24481,
+ "▁проте": 24482,
+ "FILES": 24483,
+ "verk": 24484,
+ "osos": 24485,
+ "▁комму": 24486,
+ "дії": 24487,
+ "▁dd": 24488,
+ "▁соответ": 24489,
+ "▁IOException": 24490,
+ "ských": 24491,
+ "▁CLI": 24492,
+ "▁ње": 24493,
+ "CM": 24494,
+ "TD": 24495,
+ "▁possibilities": 24496,
+ "▁Compos": 24497,
+ "half": 24498,
+ "▁webpage": 24499,
+ "▁swing": 24500,
+ "▁zas": 24501,
+ "▁cycl": 24502,
+ "leid": 24503,
+ "istica": 24504,
+ "▁Insert": 24505,
+ "▁Sweden": 24506,
+ "▁wanting": 24507,
+ "▁ال": 24508,
+ "▁eeuw": 24509,
+ "▁Administr": 24510,
+ "▁Warren": 24511,
+ "▁bs": 24512,
+ "▁pam": 24513,
+ "anus": 24514,
+ "Dra": 24515,
+ "expl": 24516,
+ "▁Kant": 24517,
+ "▁Austin": 24518,
+ "▁csak": 24519,
+ "▁theatre": 24520,
+ "▁compatibility": 24521,
+ "матиче": 24522,
+ "setState": 24523,
+ "бю": 24524,
+ "}{|": 24525,
+ "▁Dy": 24526,
+ "▁Zwischen": 24527,
+ "Alt": 24528,
+ "CLARE": 24529,
+ "steps": 24530,
+ "▁Lage": 24531,
+ "▁Mitt": 24532,
+ "▁Dublin": 24533,
+ "▁работы": 24534,
+ "deep": 24535,
+ "▁flows": 24536,
+ "▁Palace": 24537,
+ "unix": 24538,
+ "refs": 24539,
+ "umar": 24540,
+ "aset": 24541,
+ "cov": 24542,
+ "▁ping": 24543,
+ "▁Safari": 24544,
+ "flug": 24545,
+ "creens": 24546,
+ "{#": 24547,
+ "▁реа": 24548,
+ "adors": 24549,
+ "▁amor": 24550,
+ "uce": 24551,
+ "demic": 24552,
+ "▁Netherlands": 24553,
+ "▁clusters": 24554,
+ "▁enfor": 24555,
+ "marine": 24556,
+ "▁bugs": 24557,
+ "izzata": 24558,
+ "▁scra": 24559,
+ "Les": 24560,
+ "quick": 24561,
+ "▁turno": 24562,
+ "_*": 24563,
+ "ера": 24564,
+ "Generated": 24565,
+ ">[": 24566,
+ "▁estre": 24567,
+ "orde": 24568,
+ "▁verg": 24569,
+ "роз": 24570,
+ "▁pau": 24571,
+ "includes": 24572,
+ "assa": 24573,
+ "aders": 24574,
+ "▁Герма": 24575,
+ "▁estaven": 24576,
+ "▁earliest": 24577,
+ "▁resultado": 24578,
+ "mun": 24579,
+ "▁plots": 24580,
+ "din": 24581,
+ "sorted": 24582,
+ "▁preference": 24583,
+ "rió": 24584,
+ "туре": 24585,
+ "▁Ligue": 24586,
+ "▁завер": 24587,
+ "phr": 24588,
+ "▁pocket": 24589,
+ "▁parl": 24590,
+ "▁lak": 24591,
+ "▁powie": 24592,
+ "▁altres": 24593,
+ "$};": 24594,
+ "plain": 24595,
+ "▁Cred": 24596,
+ "itza": 24597,
+ "perp": 24598,
+ "Green": 24599,
+ "▁devoted": 24600,
+ "production": 24601,
+ "worker": 24602,
+ "elsen": 24603,
+ "▁vern": 24604,
+ "▁március": 24605,
+ "▁Confeder": 24606,
+ "▁Liverpool": 24607,
+ "▁музи": 24608,
+ "▁emails": 24609,
+ "▁distances": 24610,
+ "▁segments": 24611,
+ "▁anth": 24612,
+ "▁wrest": 24613,
+ "▁hoog": 24614,
+ "▁cinema": 24615,
+ "rror": 24616,
+ "▁geboren": 24617,
+ "▁éc": 24618,
+ "Marker": 24619,
+ "▁Compet": 24620,
+ "▁листо": 24621,
+ "allowed": 24622,
+ "volume": 24623,
+ "Espagne": 24624,
+ "Ze": 24625,
+ "▁fixes": 24626,
+ "▁rond": 24627,
+ "▁arrangement": 24628,
+ "/~": 24629,
+ ".](": 24630,
+ "▁Források": 24631,
+ "▁weiteren": 24632,
+ "excel": 24633,
+ "▁змі": 24634,
+ "▁moderne": 24635,
+ "English": 24636,
+ "▁Transfermarkt": 24637,
+ "▁bearing": 24638,
+ "▁cleared": 24639,
+ "▁сам": 24640,
+ "▁divs": 24641,
+ "ći": 24642,
+ "▁этой": 24643,
+ "▁Геор": 24644,
+ "scene": 24645,
+ "▁ages": 24646,
+ "GEN": 24647,
+ "rän": 24648,
+ "▁Toul": 24649,
+ "▁Abs": 24650,
+ "ját": 24651,
+ "▁mediante": 24652,
+ "▁empres": 24653,
+ "▁Employee": 24654,
+ "▁polynomials": 24655,
+ "▁optimize": 24656,
+ "▁выступа": 24657,
+ "fare": 24658,
+ "вей": 24659,
+ "xf": 24660,
+ "quez": 24661,
+ "▁botan": 24662,
+ "▁defend": 24663,
+ "▁Quart": 24664,
+ "Mont": 24665,
+ "vb": 24666,
+ "tick": 24667,
+ "WD": 24668,
+ "mine": 24669,
+ "▁modific": 24670,
+ "notification": 24671,
+ "▁denn": 24672,
+ "▁algo": 24673,
+ "▁Spo": 24674,
+ "▁mistrzost": 24675,
+ "/:": 24676,
+ "▁apresent": 24677,
+ "▁прод": 24678,
+ "Volume": 24679,
+ "ską": 24680,
+ "protected": 24681,
+ "▁Turkish": 24682,
+ "azy": 24683,
+ "▁pouv": 24684,
+ "▁período": 24685,
+ "skog": 24686,
+ "▁entropy": 24687,
+ "zed": 24688,
+ "тори": 24689,
+ "▁lij": 24690,
+ "boards": 24691,
+ "▁стату": 24692,
+ "Bool": 24693,
+ "▁polity": 24694,
+ "@\",": 24695,
+ "▁рік": 24696,
+ "née": 24697,
+ "▁Zug": 24698,
+ "▁Uniti": 24699,
+ "émet": 24700,
+ "atience": 24701,
+ "dimen": 24702,
+ "▁Steven": 24703,
+ "Ha": 24704,
+ "ACTION": 24705,
+ "▁wand": 24706,
+ "▁Navar": 24707,
+ "▁січня": 24708,
+ "Watch": 24709,
+ "▁Stuart": 24710,
+ "▁zde": 24711,
+ "▁контро": 24712,
+ "dataset": 24713,
+ "yó": 24714,
+ "▁Bush": 24715,
+ "▁себя": 24716,
+ "▁worthy": 24717,
+ "▁Ble": 24718,
+ "▁propor": 24719,
+ "▁Village": 24720,
+ "▁ry": 24721,
+ "▁voit": 24722,
+ "▁копия": 24723,
+ "▁zp": 24724,
+ "▁cura": 24725,
+ "▁Html": 24726,
+ "▁Dieser": 24727,
+ "▁Days": 24728,
+ "onnes": 24729,
+ "▁antigu": 24730,
+ "▁Staaten": 24731,
+ "▁faint": 24732,
+ "ongs": 24733,
+ "▁öst": 24734,
+ "Redirect": 24735,
+ "ель": 24736,
+ "atorial": 24737,
+ "▁bother": 24738,
+ "EditText": 24739,
+ "▁Giul": 24740,
+ "▁заво": 24741,
+ "▁pueblo": 24742,
+ "▁Mississippi": 24743,
+ "jak": 24744,
+ "▁wings": 24745,
+ "onc": 24746,
+ "ível": 24747,
+ "iencia": 24748,
+ "entlicht": 24749,
+ "▁BTW": 24750,
+ "ornal": 24751,
+ "▁Коро": 24752,
+ "▁одним": 24753,
+ "▁salv": 24754,
+ "▁finden": 24755,
+ "geo": 24756,
+ "▁авиа": 24757,
+ "attung": 24758,
+ "viv": 24759,
+ "▁Luther": 24760,
+ "▁общи": 24761,
+ "▁Rolle": 24762,
+ "▁Abraham": 24763,
+ "▁centered": 24764,
+ "▁slash": 24765,
+ "isat": 24766,
+ "emann": 24767,
+ "Os": 24768,
+ "парта": 24769,
+ "▁Pablo": 24770,
+ "▁collaboration": 24771,
+ "paths": 24772,
+ "édition": 24773,
+ "▁viewed": 24774,
+ "▁consisted": 24775,
+ "▁recovered": 24776,
+ "▁Mexican": 24777,
+ "▁Fix": 24778,
+ "▁spell": 24779,
+ "Special": 24780,
+ "▁Ст": 24781,
+ "esseur": 24782,
+ "▁Украины": 24783,
+ "former": 24784,
+ "▁św": 24785,
+ "▁zeros": 24786,
+ "▁Straßen": 24787,
+ "▁organisation": 24788,
+ "üssen": 24789,
+ "▁Sierra": 24790,
+ "▁Season": 24791,
+ "▁volont": 24792,
+ "BeanFactory": 24793,
+ "▁помощ": 24794,
+ "▁pressing": 24795,
+ "▁equivalence": 24796,
+ "▁catt": 24797,
+ "icity": 24798,
+ "▁accomplished": 24799,
+ "▁yo": 24800,
+ "▁sic": 24801,
+ "▁imports": 24802,
+ "▁accommod": 24803,
+ "▁Porto": 24804,
+ "▁яка": 24805,
+ "▁loan": 24806,
+ "тики": 24807,
+ "▁checkout": 24808,
+ "▁assess": 24809,
+ "▁Population": 24810,
+ "urent": 24811,
+ "clojure": 24812,
+ "▁Santos": 24813,
+ "▁információ": 24814,
+ "POS": 24815,
+ "▁gare": 24816,
+ "▁kick": 24817,
+ "▁radical": 24818,
+ "▁Peace": 24819,
+ "▁streaming": 24820,
+ "camp": 24821,
+ "ząt": 24822,
+ "говор": 24823,
+ "▁Regierung": 24824,
+ "▁proceeded": 24825,
+ "fm": 24826,
+ "лены": 24827,
+ "▁earnest": 24828,
+ "▁Parad": 24829,
+ "requests": 24830,
+ "▁Raum": 24831,
+ "šč": 24832,
+ "▁policies": 24833,
+ "▁Tig": 24834,
+ "▁sitt": 24835,
+ "▁Energy": 24836,
+ "▁purely": 24837,
+ "▁Haut": 24838,
+ "▁Speed": 24839,
+ "bio": 24840,
+ "▁orange": 24841,
+ "▁biggest": 24842,
+ "▁britannique": 24843,
+ "▁Notable": 24844,
+ "vu": 24845,
+ "лении": 24846,
+ "бин": 24847,
+ "▁Nash": 24848,
+ "щение": 24849,
+ "▁ciel": 24850,
+ "adémie": 24851,
+ "▁грудня": 24852,
+ "▁joue": 24853,
+ "▁voted": 24854,
+ "rico": 24855,
+ "▁гор": 24856,
+ "▁команду": 24857,
+ "itivity": 24858,
+ "▁ще": 24859,
+ "▁definite": 24860,
+ "uropa": 24861,
+ "!\");": 24862,
+ "Defaults": 24863,
+ "▁некоторы": 24864,
+ "édération": 24865,
+ "▁silly": 24866,
+ "▁talked": 24867,
+ "reu": 24868,
+ "▁Lomb": 24869,
+ "▁statue": 24870,
+ "кта": 24871,
+ "юр": 24872,
+ "umably": 24873,
+ "▁городе": 24874,
+ "▁Runtime": 24875,
+ "▁diagn": 24876,
+ "▁retro": 24877,
+ "▁Sverige": 24878,
+ "▁inicial": 24879,
+ "ienza": 24880,
+ "▁figlio": 24881,
+ "▁zog": 24882,
+ "▁rey": 24883,
+ "▁Rund": 24884,
+ "тный": 24885,
+ "▁ceased": 24886,
+ "erno": 24887,
+ "▁esa": 24888,
+ "▁trouv": 24889,
+ "▁Gemeinden": 24890,
+ "▁comercial": 24891,
+ "skap": 24892,
+ "enario": 24893,
+ "▁juris": 24894,
+ "TB": 24895,
+ "нала": 24896,
+ "▁vij": 24897,
+ "VO": 24898,
+ "▁clin": 24899,
+ "jör": 24900,
+ "сан": 24901,
+ "owała": 24902,
+ "ribución": 24903,
+ "▁ursprüng": 24904,
+ "▁condem": 24905,
+ "▁Stage": 24906,
+ "▁mixing": 24907,
+ "▁різ": 24908,
+ "▁fans": 24909,
+ "ház": 24910,
+ "social": 24911,
+ "zan": 24912,
+ "▁свой": 24913,
+ "Cookie": 24914,
+ "▁Roland": 24915,
+ "azionale": 24916,
+ "▁Sloven": 24917,
+ "▁Fiche": 24918,
+ "▁Sé": 24919,
+ "hä": 24920,
+ "▁officials": 24921,
+ "▁înt": 24922,
+ "Interceptor": 24923,
+ "Tables": 24924,
+ "▁davon": 24925,
+ "initialize": 24926,
+ "]=\"": 24927,
+ "▁Body": 24928,
+ "▁Upper": 24929,
+ "▁Collect": 24930,
+ "▁Zürich": 24931,
+ "Horizontal": 24932,
+ "Typ": 24933,
+ "▁político": 24934,
+ "▁RewriteCond": 24935,
+ "▁hoped": 24936,
+ "▁anxious": 24937,
+ "Liter": 24938,
+ "jahr": 24939,
+ "▁assemble": 24940,
+ "▁crypt": 24941,
+ "lahoma": 24942,
+ "ASH": 24943,
+ "▁Бри": 24944,
+ "▁Cic": 24945,
+ "twitter": 24946,
+ "hyper": 24947,
+ "▁Tell": 24948,
+ "ільки": 24949,
+ "вобо": 24950,
+ "▁bazie": 24951,
+ "▁contemporary": 24952,
+ "▁Parameter": 24953,
+ "stwa": 24954,
+ "▁bekend": 24955,
+ "cock": 24956,
+ "previous": 24957,
+ "enska": 24958,
+ "▁caller": 24959,
+ "]])": 24960,
+ "▁Raz": 24961,
+ "▁Selon": 24962,
+ "▁proposal": 24963,
+ "▁bý": 24964,
+ "▁Sied": 24965,
+ "▁Arbeits": 24966,
+ "▁pride": 24967,
+ "▁slope": 24968,
+ "idé": 24969,
+ "gradient": 24970,
+ "▁Джерела": 24971,
+ "▁SH": 24972,
+ "▁разрабо": 24973,
+ "iversity": 24974,
+ "сподар": 24975,
+ "\\{\\": 24976,
+ "▁стали": 24977,
+ "▁Einzel": 24978,
+ "▁rgba": 24979,
+ "▁Anim": 24980,
+ "▁alles": 24981,
+ "бар": 24982,
+ "erte": 24983,
+ "▁réalisé": 24984,
+ "Institut": 24985,
+ "▁markup": 24986,
+ "▁vars": 24987,
+ "▁gam": 24988,
+ "▁Василь": 24989,
+ "izza": 24990,
+ "▁Cob": 24991,
+ "▁Metal": 24992,
+ "▁leak": 24993,
+ "▁Lanc": 24994,
+ "Switch": 24995,
+ "Delay": 24996,
+ "atuur": 24997,
+ "▁четы": 24998,
+ "▁англий": 24999,
+ "▁legacy": 25000,
+ "▁desarroll": 25001,
+ "▁topological": 25002,
+ "▁jeweils": 25003,
+ "▁Nederlandse": 25004,
+ "▁atmosphere": 25005,
+ "urban": 25006,
+ "▁slov": 25007,
+ "▁lawyer": 25008,
+ "pecially": 25009,
+ "▁alternate": 25010,
+ "▁paramet": 25011,
+ "▁establishment": 25012,
+ "▁woods": 25013,
+ "PD": 25014,
+ "▁наи": 25015,
+ "▁mang": 25016,
+ "▁wechselte": 25017,
+ "ську": 25018,
+ ".=": 25019,
+ "▁fifteen": 25020,
+ "SUM": 25021,
+ "▁Fro": 25022,
+ "▁LED": 25023,
+ "owano": 25024,
+ "ствие": 25025,
+ "▁Données": 25026,
+ "tol": 25027,
+ "żyn": 25028,
+ "cref": 25029,
+ "ствии": 25030,
+ "horn": 25031,
+ "▁сооб": 25032,
+ "▁оборо": 25033,
+ "▁Complete": 25034,
+ "“)": 25035,
+ "▁kindly": 25036,
+ "▁Chamber": 25037,
+ "ség": 25038,
+ "WH": 25039,
+ "▁ambient": 25040,
+ "кро": 25041,
+ "▁cheval": 25042,
+ "▁написа": 25043,
+ "flu": 25044,
+ "▁Offiz": 25045,
+ "mate": 25046,
+ "natural": 25047,
+ "separ": 25048,
+ "empre": 25049,
+ "ViewHolder": 25050,
+ "fw": 25051,
+ "▁letech": 25052,
+ "▁trailing": 25053,
+ "atri": 25054,
+ "▁Gó": 25055,
+ "▁Bonn": 25056,
+ "▁unlikely": 25057,
+ "RAM": 25058,
+ "enst": 25059,
+ "Stats": 25060,
+ "▁политиче": 25061,
+ ")--(": 25062,
+ "▁trom": 25063,
+ "!...": 25064,
+ "▁Meanwhile": 25065,
+ "стана": 25066,
+ "▁Reino": 25067,
+ "▁Arist": 25068,
+ "$}}%": 25069,
+ "▁solem": 25070,
+ "closure": 25071,
+ "ignation": 25072,
+ "łod": 25073,
+ "▁divor": 25074,
+ "▁международ": 25075,
+ "=\"": 25076,
+ "▁molt": 25077,
+ "▁skills": 25078,
+ "▁Cir": 25079,
+ "▁Después": 25080,
+ "▁lun": 25081,
+ "▁coron": 25082,
+ "▁Comics": 25083,
+ "стори": 25084,
+ "▁Items": 25085,
+ "▁Think": 25086,
+ "игра": 25087,
+ "▁grows": 25088,
+ "portal": 25089,
+ "▁nich": 25090,
+ "▁restrictions": 25091,
+ "▁Lau": 25092,
+ "шення": 25093,
+ "▁Sozial": 25094,
+ "▁кі": 25095,
+ "mana": 25096,
+ "▁lieutenant": 25097,
+ "Attr": 25098,
+ "umeric": 25099,
+ "▁drives": 25100,
+ "asis": 25101,
+ "бай": 25102,
+ "NL": 25103,
+ "Zygote": 25104,
+ "physics": 25105,
+ "▁internally": 25106,
+ "вается": 25107,
+ "Hidden": 25108,
+ "▁Дата": 25109,
+ "▁unsafe": 25110,
+ "▁Roc": 25111,
+ "▁instantiate": 25112,
+ "udni": 25113,
+ "▁Room": 25114,
+ "▁Пред": 25115,
+ "▁maja": 25116,
+ "achment": 25117,
+ "uuid": 25118,
+ "Projects": 25119,
+ "Gre": 25120,
+ "▁взя": 25121,
+ "▁Blood": 25122,
+ "icile": 25123,
+ "▁Nouvelle": 25124,
+ "Does": 25125,
+ "▁nieuwe": 25126,
+ "ále": 25127,
+ "angs": 25128,
+ "weak": 25129,
+ "▁aantal": 25130,
+ "▁Ев": 25131,
+ "▁Dresden": 25132,
+ "▁Lost": 25133,
+ "ката": 25134,
+ "▁involve": 25135,
+ "▁declaring": 25136,
+ "▁Political": 25137,
+ "érez": 25138,
+ "kop": 25139,
+ "notify": 25140,
+ "▁Curt": 25141,
+ "▁schließlich": 25142,
+ "ghan": 25143,
+ "цена": 25144,
+ "▁kwiet": 25145,
+ "ügel": 25146,
+ "▁Sob": 25147,
+ "▁substr": 25148,
+ "▁ellen": 25149,
+ "ionario": 25150,
+ "enson": 25151,
+ "WIN": 25152,
+ "спорт": 25153,
+ "emer": 25154,
+ "nome": 25155,
+ "▁smiled": 25156,
+ "▁Schmidt": 25157,
+ "▁smoke": 25158,
+ "▁Token": 25159,
+ "▁vague": 25160,
+ "▁provision": 25161,
+ "yaml": 25162,
+ "нитель": 25163,
+ "onial": 25164,
+ "époque": 25165,
+ "▁NC": 25166,
+ "▁NFL": 25167,
+ "teck": 25168,
+ "▁allo": 25169,
+ "▁précéd": 25170,
+ "central": 25171,
+ "▁majd": 25172,
+ "▁chrom": 25173,
+ "▁Zum": 25174,
+ "verso": 25175,
+ "▁verschiedenen": 25176,
+ "▁старо": 25177,
+ "▁quelle": 25178,
+ "▁rép": 25179,
+ "ROW": 25180,
+ "▁ihnen": 25181,
+ "▁sensible": 25182,
+ "|$": 25183,
+ "▁schw": 25184,
+ "▁BR": 25185,
+ "▁Options": 25186,
+ "▁tens": 25187,
+ "▁conquist": 25188,
+ "▁ließ": 25189,
+ "ovis": 25190,
+ "▁міста": 25191,
+ "▁ela": 25192,
+ "rifice": 25193,
+ "▁lok": 25194,
+ "▁Queensland": 25195,
+ "Binary": 25196,
+ "▁Rahmen": 25197,
+ "▁abol": 25198,
+ "▁část": 25199,
+ "▁Edinburgh": 25200,
+ "inde": 25201,
+ "▁calculating": 25202,
+ "▁Oregon": 25203,
+ "▁legit": 25204,
+ "▁Nachdem": 25205,
+ "athon": 25206,
+ "Private": 25207,
+ "illaume": 25208,
+ "▁observable": 25209,
+ "leans": 25210,
+ "▁remarked": 25211,
+ "▁halt": 25212,
+ "ницы": 25213,
+ "▁stamp": 25214,
+ "▁Adv": 25215,
+ "Louis": 25216,
+ "imming": 25217,
+ "gruppe": 25218,
+ "▁Policy": 25219,
+ "▁vrij": 25220,
+ "ftrag": 25221,
+ "▁offices": 25222,
+ "▁participated": 25223,
+ "▁escol": 25224,
+ "▁\"": 25225,
+ "▁nombreuses": 25226,
+ "▁divid": 25227,
+ "▁advis": 25228,
+ "лтати": 25229,
+ "▁==>": 25230,
+ "Orientation": 25231,
+ "cid": 25232,
+ "Cart": 25233,
+ "▁murm": 25234,
+ "▁assez": 25235,
+ "▁linking": 25236,
+ "building": 25237,
+ "▁reconna": 25238,
+ "▁shook": 25239,
+ "managed": 25240,
+ "landa": 25241,
+ "▁León": 25242,
+ "▁création": 25243,
+ "дой": 25244,
+ "ocity": 25245,
+ "▁wij": 25246,
+ "▁wieś": 25247,
+ "xtart": 25248,
+ "▁Move": 25249,
+ "lungen": 25250,
+ "ствует": 25251,
+ "orney": 25252,
+ "optional": 25253,
+ "macro": 25254,
+ "Condition": 25255,
+ "▁squares": 25256,
+ "▁mistaken": 25257,
+ "ánt": 25258,
+ "▁Ris": 25259,
+ "▁sentences": 25260,
+ "erea": 25261,
+ "▁mij": 25262,
+ "Und": 25263,
+ "▁nombr": 25264,
+ "zA": 25265,
+ "▁Independent": 25266,
+ "▁preview": 25267,
+ "imas": 25268,
+ "▁males": 25269,
+ "inental": 25270,
+ "Thank": 25271,
+ "▁popol": 25272,
+ "▁pover": 25273,
+ "▁grasp": 25274,
+ "▁imped": 25275,
+ "▁campionato": 25276,
+ "▁Wei": 25277,
+ "▁titled": 25278,
+ "▁Además": 25279,
+ "▁Password": 25280,
+ "▁Pam": 25281,
+ "UILD": 25282,
+ "▁липня": 25283,
+ "werb": 25284,
+ "................": 25285,
+ "▁Río": 25286,
+ "▁teeth": 25287,
+ "bp": 25288,
+ "▁SW": 25289,
+ "ulaire": 25290,
+ "▁seized": 25291,
+ "▁Stef": 25292,
+ "úl": 25293,
+ "▁viz": 25294,
+ "iony": 25295,
+ "▁junt": 25296,
+ "▁která": 25297,
+ "▁września": 25298,
+ "<>": 25299,
+ "▁surg": 25300,
+ "▁tutte": 25301,
+ "▁Hob": 25302,
+ "повід": 25303,
+ "▁wohl": 25304,
+ "▁trag": 25305,
+ "▁Crown": 25306,
+ "▁trova": 25307,
+ "стову": 25308,
+ "▁Vienna": 25309,
+ "esehen": 25310,
+ "▁metropol": 25311,
+ "▁reflected": 25312,
+ "тета": 25313,
+ "▁traduc": 25314,
+ "▁Bast": 25315,
+ "▁erschien": 25316,
+ "woord": 25317,
+ "()\"": 25318,
+ "talet": 25319,
+ "▁roads": 25320,
+ "ведения": 25321,
+ "ührung": 25322,
+ "▁cogn": 25323,
+ "▁Valle": 25324,
+ "▁landing": 25325,
+ "▁Regex": 25326,
+ "▁Iowa": 25327,
+ "dział": 25328,
+ "▁erreichte": 25329,
+ "aum": 25330,
+ "▁founder": 25331,
+ "apolis": 25332,
+ "Compiler": 25333,
+ "▁kop": 25334,
+ "▁marc": 25335,
+ "▁територ": 25336,
+ "))`": 25337,
+ "▁lei": 25338,
+ "geon": 25339,
+ "▁weapons": 25340,
+ "▁horn": 25341,
+ "▁elif": 25342,
+ "▁Capital": 25343,
+ "će": 25344,
+ "▁forall": 25345,
+ "▁эта": 25346,
+ "preview": 25347,
+ "▁DNA": 25348,
+ "▁sid": 25349,
+ "orch": 25350,
+ "▁Ras": 25351,
+ "▁arab": 25352,
+ "Best": 25353,
+ "▁счита": 25354,
+ "▁López": 25355,
+ "ança": 25356,
+ "▁funkc": 25357,
+ "▁tienen": 25358,
+ ";&": 25359,
+ "museum": 25360,
+ "▁Err": 25361,
+ "▁resort": 25362,
+ "Nov": 25363,
+ "▁kal": 25364,
+ "MW": 25365,
+ "шь": 25366,
+ "anchor": 25367,
+ "▁роман": 25368,
+ "leading": 25369,
+ "▁manten": 25370,
+ "▁Silva": 25371,
+ "dade": 25372,
+ "▁designated": 25373,
+ "▁revista": 25374,
+ "Oct": 25375,
+ "percent": 25376,
+ "▁уні": 25377,
+ "identifier": 25378,
+ "mass": 25379,
+ "@@": 25380,
+ "ulsion": 25381,
+ "germeister": 25382,
+ "▁predicted": 25383,
+ "▁сви": 25384,
+ "жной": 25385,
+ "▁Ergeb": 25386,
+ "▁cust": 25387,
+ "▁removes": 25388,
+ "charg": 25389,
+ "пример": 25390,
+ "▁forming": 25391,
+ "asma": 25392,
+ "stdout": 25393,
+ "Fun": 25394,
+ "yme": 25395,
+ "tered": 25396,
+ "ursive": 25397,
+ "ighed": 25398,
+ "▁след": 25399,
+ "verband": 25400,
+ "▁LOG": 25401,
+ "rams": 25402,
+ "éon": 25403,
+ "endra": 25404,
+ "▁Bereich": 25405,
+ "▁temporal": 25406,
+ "▁langue": 25407,
+ "▁Inn": 25408,
+ "▁moreover": 25409,
+ "▁tutorials": 25410,
+ "Middle": 25411,
+ "▁советский": 25412,
+ "▁maintenance": 25413,
+ "asures": 25414,
+ "▁válto": 25415,
+ "BASE": 25416,
+ "▁disappear": 25417,
+ "ския": 25418,
+ "▁conocido": 25419,
+ "▁Нау": 25420,
+ "▁Libert": 25421,
+ "▁Harold": 25422,
+ "▁lifetime": 25423,
+ "▁Tür": 25424,
+ "▁zawod": 25425,
+ "omic": 25426,
+ "▁Retrieved": 25427,
+ "architecture": 25428,
+ "čka": 25429,
+ "iformes": 25430,
+ "development": 25431,
+ "ordnung": 25432,
+ "Inf": 25433,
+ "leben": 25434,
+ "▁Stars": 25435,
+ "signal": 25436,
+ "▁grammar": 25437,
+ "▁corso": 25438,
+ "▁Wagner": 25439,
+ "▁geht": 25440,
+ "▁royale": 25441,
+ "warn": 25442,
+ "umbled": 25443,
+ "▁instit": 25444,
+ "▁Ши": 25445,
+ "hh": 25446,
+ "▁refuge": 25447,
+ "▁favorite": 25448,
+ "ierto": 25449,
+ "▁condado": 25450,
+ "▁Ther": 25451,
+ "▁человека": 25452,
+ "▁Food": 25453,
+ "▁seizo": 25454,
+ "▁Initialize": 25455,
+ "▁connu": 25456,
+ "▁overlap": 25457,
+ "▁Emil": 25458,
+ "▁Martí": 25459,
+ "▁жовтня": 25460,
+ "erva": 25461,
+ "▁boats": 25462,
+ "ações": 25463,
+ "▁derrot": 25464,
+ "▁malloc": 25465,
+ "▁conject": 25466,
+ "jk": 25467,
+ "▁sare": 25468,
+ "лемен": 25469,
+ "▁sums": 25470,
+ "Authorization": 25471,
+ "▁Kun": 25472,
+ "]$,": 25473,
+ "gemeinde": 25474,
+ "odot": 25475,
+ "defin": 25476,
+ "▁emission": 25477,
+ "▁Крас": 25478,
+ "▁appart": 25479,
+ "▁stopping": 25480,
+ "▁Сред": 25481,
+ "▁conjug": 25482,
+ "▁insight": 25483,
+ "▁Broadcast": 25484,
+ "▁PMID": 25485,
+ "▁advantages": 25486,
+ "enes": 25487,
+ "▁residence": 25488,
+ "ljen": 25489,
+ "isseur": 25490,
+ "▁pubblicato": 25491,
+ "▁GitHub": 25492,
+ "▁Peru": 25493,
+ "▁galaxies": 25494,
+ "▁annotations": 25495,
+ "gas": 25496,
+ "▁répond": 25497,
+ "Js": 25498,
+ "▁independently": 25499,
+ "NP": 25500,
+ "▁inqu": 25501,
+ "▁grounds": 25502,
+ "Components": 25503,
+ "▁anten": 25504,
+ "▁вз": 25505,
+ "▁hos": 25506,
+ "▁sint": 25507,
+ "▁hiding": 25508,
+ "▁województ": 25509,
+ "Messages": 25510,
+ "▁показа": 25511,
+ "===": 25512,
+ "▁Abstract": 25513,
+ "▁läng": 25514,
+ "▁Formula": 25515,
+ "dawn": 25516,
+ "▁designs": 25517,
+ "Img": 25518,
+ "▁Portuguese": 25519,
+ "▁incluy": 25520,
+ "avigator": 25521,
+ "▁Brothers": 25522,
+ "▁continent": 25523,
+ "▁evidently": 25524,
+ "race": 25525,
+ "цького": 25526,
+ "▁reck": 25527,
+ "▁серпня": 25528,
+ "▁Grey": 25529,
+ "▁appeal": 25530,
+ "▁unlike": 25531,
+ "▁powershell": 25532,
+ "▁racc": 25533,
+ "fers": 25534,
+ "▁burning": 25535,
+ "fasst": 25536,
+ "installed": 25537,
+ "▁Give": 25538,
+ "▁colonial": 25539,
+ "▁€": 25540,
+ "▁Rö": 25541,
+ "▁christ": 25542,
+ "nehm": 25543,
+ "там": 25544,
+ "▁corpo": 25545,
+ "▁convirti": 25546,
+ "yter": 25547,
+ "Sym": 25548,
+ "▁Greece": 25549,
+ "▁moth": 25550,
+ "▁Johan": 25551,
+ "▁monarch": 25552,
+ "▁Download": 25553,
+ "▁craft": 25554,
+ "už": 25555,
+ "▁Luke": 25556,
+ "▁suffix": 25557,
+ "\\/": 25558,
+ "Have": 25559,
+ "▁карь": 25560,
+ "▁comfortable": 25561,
+ "▁tips": 25562,
+ "▁Після": 25563,
+ "▁броја": 25564,
+ "▁информа": 25565,
+ "MQ": 25566,
+ "бран": 25567,
+ "▁tx": 25568,
+ "▁slaves": 25569,
+ "▁firewall": 25570,
+ "▁Forces": 25571,
+ "atif": 25572,
+ "▁Quellen": 25573,
+ "▁théâtre": 25574,
+ "льных": 25575,
+ "▁расположен": 25576,
+ "▁Details": 25577,
+ "ką": 25578,
+ "▁longitud": 25579,
+ "INST": 25580,
+ "▁naval": 25581,
+ "Fernseh": 25582,
+ "essel": 25583,
+ "Grad": 25584,
+ "▁belang": 25585,
+ "▁aggi": 25586,
+ "ZygoteInit": 25587,
+ "łów": 25588,
+ "▁Sug": 25589,
+ "sil": 25590,
+ "▁exterior": 25591,
+ "щі": 25592,
+ "ORD": 25593,
+ "enser": 25594,
+ "▁rapide": 25595,
+ "▁темпера": 25596,
+ "incie": 25597,
+ "Si": 25598,
+ "avam": 25599,
+ "arded": 25600,
+ "▁Added": 25601,
+ "Endpoint": 25602,
+ "hardt": 25603,
+ "стран": 25604,
+ "▁estilo": 25605,
+ "▁Haz": 25606,
+ "▁musste": 25607,
+ "uo": 25608,
+ "iii": 25609,
+ "▁ří": 25610,
+ "anzen": 25611,
+ "жений": 25612,
+ "aha": 25613,
+ "ARNING": 25614,
+ "▁renov": 25615,
+ "▁divine": 25616,
+ "▁convinced": 25617,
+ "▁humans": 25618,
+ "▁departure": 25619,
+ "▁Mediter": 25620,
+ "qa": 25621,
+ "▁possessed": 25622,
+ "▁церкви": 25623,
+ "giv": 25624,
+ "▁свої": 25625,
+ "▁Ortste": 25626,
+ "Rich": 25627,
+ "puis": 25628,
+ "increment": 25629,
+ "▁Hannover": 25630,
+ "▁ucz": 25631,
+ "Done": 25632,
+ "▁alguns": 25633,
+ "FIX": 25634,
+ "▁Heritage": 25635,
+ "removeClass": 25636,
+ "фер": 25637,
+ "▁abc": 25638,
+ "Dr": 25639,
+ "▁семей": 25640,
+ "{:": 25641,
+ "▁seule": 25642,
+ "zeichnungen": 25643,
+ "addy": 25644,
+ "▁París": 25645,
+ "üsseld": 25646,
+ "▁reception": 25647,
+ "folio": 25648,
+ "tiny": 25649,
+ "▁recensement": 25650,
+ "▁Nur": 25651,
+ "▁kier": 25652,
+ "▁gmina": 25653,
+ "staat": 25654,
+ "ándose": 25655,
+ "ческая": 25656,
+ "▁speaker": 25657,
+ "▁exponential": 25658,
+ "▁Dieu": 25659,
+ "▁приз": 25660,
+ "▁Rafael": 25661,
+ "▁ggplot": 25662,
+ "▁Template": 25663,
+ "oure": 25664,
+ "▁Inner": 25665,
+ "ogne": 25666,
+ "igare": 25667,
+ "▁Arte": 25668,
+ "▁Cov": 25669,
+ "▁aufgrund": 25670,
+ "▁Бы": 25671,
+ "▁ceremony": 25672,
+ "▁Spart": 25673,
+ "jective": 25674,
+ "yi": 25675,
+ "▁inizi": 25676,
+ "▁latin": 25677,
+ "▁Nevertheless": 25678,
+ "▁Done": 25679,
+ "тря": 25680,
+ "▁Arr": 25681,
+ "season": 25682,
+ "▁складу": 25683,
+ "▁podczas": 25684,
+ "▁Beautiful": 25685,
+ "▁Weltkrieg": 25686,
+ "▁зо": 25687,
+ "▁overcome": 25688,
+ "▁Praha": 25689,
+ "▁району": 25690,
+ "▁subscription": 25691,
+ "igent": 25692,
+ "▁пока": 25693,
+ "latex": 25694,
+ "▁beach": 25695,
+ "▁роках": 25696,
+ "geg": 25697,
+ "▁probl": 25698,
+ "arguments": 25699,
+ "▁organizations": 25700,
+ "▁Nan": 25701,
+ "▁stones": 25702,
+ "▁Hunter": 25703,
+ "▁regularly": 25704,
+ "шого": 25705,
+ "▁flexible": 25706,
+ "opts": 25707,
+ "ář": 25708,
+ "witz": 25709,
+ "▁')": 25710,
+ "PASS": 25711,
+ "▁kraj": 25712,
+ "▁fake": 25713,
+ "heits": 25714,
+ "osph": 25715,
+ "parseInt": 25716,
+ "FALSE": 25717,
+ "▁profess": 25718,
+ "people": 25719,
+ "▁precip": 25720,
+ "dirname": 25721,
+ "▁perpet": 25722,
+ "▁Updated": 25723,
+ "rayed": 25724,
+ "▁provoc": 25725,
+ "▁травня": 25726,
+ "▁categorie": 25727,
+ "▁тео": 25728,
+ "сну": 25729,
+ "otr": 25730,
+ "▁Верхов": 25731,
+ "▁compét": 25732,
+ "Cost": 25733,
+ "▁wider": 25734,
+ "▁Obviously": 25735,
+ "писан": 25736,
+ "▁настоя": 25737,
+ "▁seeking": 25738,
+ "()),": 25739,
+ "▁équipe": 25740,
+ "▁commits": 25741,
+ "▁Svens": 25742,
+ "ябре": 25743,
+ "atern": 25744,
+ "▁heter": 25745,
+ "▁Bootstrap": 25746,
+ "éné": 25747,
+ "▁derivatives": 25748,
+ "▁Detroit": 25749,
+ "▁provincial": 25750,
+ "onomie": 25751,
+ "EB": 25752,
+ "▁cuer": 25753,
+ "▁относи": 25754,
+ "▁ней": 25755,
+ ")».": 25756,
+ "▁Ciudad": 25757,
+ "IAL": 25758,
+ "zyst": 25759,
+ ")\")": 25760,
+ "▁Alc": 25761,
+ "blogs": 25762,
+ "▁parmi": 25763,
+ "▁Albums": 25764,
+ "▁Boliv": 25765,
+ "▁clés": 25766,
+ "Products": 25767,
+ "uerdo": 25768,
+ "▁gelang": 25769,
+ "znik": 25770,
+ "hagen": 25771,
+ "anonymous": 25772,
+ "▁svg": 25773,
+ "▁Conseil": 25774,
+ "▁Ari": 25775,
+ "coli": 25776,
+ "▁czy": 25777,
+ "▁CV": 25778,
+ "▁ford": 25779,
+ "▁Außer": 25780,
+ "▁CI": 25781,
+ "▁tempt": 25782,
+ "▁Organisation": 25783,
+ "áš": 25784,
+ "▁cycles": 25785,
+ "▁geslacht": 25786,
+ "▁людей": 25787,
+ "ými": 25788,
+ "▁Spieler": 25789,
+ "efe": 25790,
+ "▁Marvel": 25791,
+ "▁portal": 25792,
+ "▁Серг": 25793,
+ "▁grado": 25794,
+ "▁handlers": 25795,
+ "▁Interface": 25796,
+ "AME": 25797,
+ "▁seriously": 25798,
+ "▁Binding": 25799,
+ "▁Rang": 25800,
+ "▁nada": 25801,
+ "oce": 25802,
+ "▁integra": 25803,
+ "ocracy": 25804,
+ "▁альбо": 25805,
+ "▁stability": 25806,
+ "Uns": 25807,
+ "▁veter": 25808,
+ "------+": 25809,
+ "▁serait": 25810,
+ "▁omitted": 25811,
+ "▁uncertainty": 25812,
+ "onian": 25813,
+ "▁resto": 25814,
+ "▁желез": 25815,
+ "▁одной": 25816,
+ "▁Bevölkerung": 25817,
+ "▁Kraft": 25818,
+ "стр": 25819,
+ "▁Moscow": 25820,
+ "lane": 25821,
+ "arab": 25822,
+ "▁spole": 25823,
+ "▁своего": 25824,
+ "?:": 25825,
+ "START": 25826,
+ "▁интер": 25827,
+ "▁sympt": 25828,
+ "▁Lorenzo": 25829,
+ "▁ejec": 25830,
+ "▁prosper": 25831,
+ "DAT": 25832,
+ "лимпий": 25833,
+ "▁shapes": 25834,
+ "valueOf": 25835,
+ "▁associate": 25836,
+ "▁Medien": 25837,
+ "ENV": 25838,
+ "▁сре": 25839,
+ "▁државе": 25840,
+ "▁theories": 25841,
+ "heb": 25842,
+ "▁Wayne": 25843,
+ "▁StringBuilder": 25844,
+ "iwers": 25845,
+ "▁Maps": 25846,
+ "Phys": 25847,
+ "\\}\\": 25848,
+ "▁Parte": 25849,
+ "▁Hudson": 25850,
+ "лон": 25851,
+ "Lng": 25852,
+ "▁ры": 25853,
+ "стей": 25854,
+ "lau": 25855,
+ "ancer": 25856,
+ "▁Coppa": 25857,
+ "▁війсь": 25858,
+ "▁ucc": 25859,
+ "▁Pattern": 25860,
+ "▁garbage": 25861,
+ "▁González": 25862,
+ "▁Encyclop": 25863,
+ "etten": 25864,
+ "External": 25865,
+ "REF": 25866,
+ ">;": 25867,
+ "lijke": 25868,
+ "▁intersect": 25869,
+ "▁Unless": 25870,
+ "▁deeper": 25871,
+ "▁жі": 25872,
+ "dent": 25873,
+ "lef": 25874,
+ "▁chanson": 25875,
+ "▁diffus": 25876,
+ "▁primi": 25877,
+ "▁Wieder": 25878,
+ "▁aws": 25879,
+ "owana": 25880,
+ "▁sociale": 25881,
+ "ikk": 25882,
+ "льной": 25883,
+ "▁divisions": 25884,
+ "лосо": 25885,
+ "▁Claud": 25886,
+ "▁Ya": 25887,
+ "▁voce": 25888,
+ "▁Branch": 25889,
+ "▁fitted": 25890,
+ "orr": 25891,
+ "ôtel": 25892,
+ "stroke": 25893,
+ "listener": 25894,
+ "iman": 25895,
+ "восто": 25896,
+ "▁Shah": 25897,
+ "Introduction": 25898,
+ "▁newline": 25899,
+ "▁tile": 25900,
+ "']))": 25901,
+ "▁travaux": 25902,
+ "CONFIG": 25903,
+ "▁quadratic": 25904,
+ "onneur": 25905,
+ "▁Giorg": 25906,
+ "▁identific": 25907,
+ "éricaine": 25908,
+ "▁UIView": 25909,
+ "▁Liberal": 25910,
+ "▁Koch": 25911,
+ "▁Berliner": 25912,
+ "▁notifications": 25913,
+ "▁Susan": 25914,
+ "▁cadre": 25915,
+ "▁Kloster": 25916,
+ "▁examine": 25917,
+ "▁един": 25918,
+ "▁UNION": 25919,
+ "▁alten": 25920,
+ "▁finit": 25921,
+ "▁pedig": 25922,
+ "cyk": 25923,
+ "▁mouvement": 25924,
+ "IOS": 25925,
+ "▁британ": 25926,
+ "▁bout": 25927,
+ "▁автор": 25928,
+ "ництво": 25929,
+ "ето": 25930,
+ "lera": 25931,
+ "cls": 25932,
+ "▁Ley": 25933,
+ "amy": 25934,
+ "agens": 25935,
+ "ashed": 25936,
+ "▁okrę": 25937,
+ "гро": 25938,
+ "ellett": 25939,
+ "▁Fellow": 25940,
+ "▁manifold": 25941,
+ "$),": 25942,
+ "lder": 25943,
+ "▁voz": 25944,
+ "▁begg": 25945,
+ "▁baron": 25946,
+ "▁fid": 25947,
+ "▁firing": 25948,
+ "ilda": 25949,
+ "dek": 25950,
+ "AU": 25951,
+ "itare": 25952,
+ "▁Ara": 25953,
+ "▁Exit": 25954,
+ "▁cinemat": 25955,
+ "▁intros": 25956,
+ "▁contacts": 25957,
+ "пени": 25958,
+ "▁möglich": 25959,
+ "▁Singapore": 25960,
+ "ström": 25961,
+ "▁Hern": 25962,
+ "▁sixth": 25963,
+ "▁publications": 25964,
+ "vie": 25965,
+ "▁Hat": 25966,
+ "▁accepting": 25967,
+ "ác": 25968,
+ "stwo": 25969,
+ "▁quietly": 25970,
+ "Photo": 25971,
+ "▁basket": 25972,
+ "▁eigenvalues": 25973,
+ "▁médec": 25974,
+ "▁Olimp": 25975,
+ "▁церков": 25976,
+ "alin": 25977,
+ "consum": 25978,
+ "▁lassen": 25979,
+ "▁анти": 25980,
+ "▁Seq": 25981,
+ "\";\r": 25982,
+ "rare": 25983,
+ "▁$|\\": 25984,
+ "▁nick": 25985,
+ "dflare": 25986,
+ "Vec": 25987,
+ "bindung": 25988,
+ "▁bg": 25989,
+ "changes": 25990,
+ "Days": 25991,
+ "▁Mouse": 25992,
+ "▁waited": 25993,
+ "▁Tomatoes": 25994,
+ "▁fas": 25995,
+ "verte": 25996,
+ "▁succession": 25997,
+ "сор": 25998,
+ "▁sols": 25999,
+ "▁Render": 26000,
+ "▁leadership": 26001,
+ "▁significance": 26002,
+ "▁gauche": 26003,
+ "cano": 26004,
+ "▁Pie": 26005,
+ "ensoort": 26006,
+ "▁cambio": 26007,
+ "▁уз": 26008,
+ "▁endeav": 26009,
+ "Completed": 26010,
+ "▁Архивная": 26011,
+ "jd": 26012,
+ "órico": 26013,
+ "▁churches": 26014,
+ "▁animate": 26015,
+ "SG": 26016,
+ "compute": 26017,
+ "▁uniformly": 26018,
+ "INIT": 26019,
+ "lles": 26020,
+ "HttpRequest": 26021,
+ "Ко": 26022,
+ "Diff": 26023,
+ "▁sah": 26024,
+ "airo": 26025,
+ "maybe": 26026,
+ "UTE": 26027,
+ "▁Dow": 26028,
+ "human": 26029,
+ "▁aurait": 26030,
+ "dark": 26031,
+ "▁repair": 26032,
+ "▁ner": 26033,
+ "▁Dabei": 26034,
+ "▁Botan": 26035,
+ "Original": 26036,
+ "ază": 26037,
+ "▁NAT": 26038,
+ "imper": 26039,
+ "▁Youth": 26040,
+ "thes": 26041,
+ "▁округа": 26042,
+ "▁Flo": 26043,
+ "▁breakfast": 26044,
+ "urls": 26045,
+ "▁übernahm": 26046,
+ "ários": 26047,
+ "▁Orange": 26048,
+ "▁Affairs": 26049,
+ "ske": 26050,
+ "▁notify": 26051,
+ "imoine": 26052,
+ "▁Arena": 26053,
+ "▁liberal": 26054,
+ "▁obec": 26055,
+ "ifa": 26056,
+ "guez": 26057,
+ "iono": 26058,
+ "ператор": 26059,
+ "▁retained": 26060,
+ "failed": 26061,
+ "bine": 26062,
+ "тных": 26063,
+ "▁CGRect": 26064,
+ "camera": 26065,
+ "idenote": 26066,
+ "KB": 26067,
+ "▁lights": 26068,
+ "▁Pictures": 26069,
+ "▁Squadron": 26070,
+ "▁Volk": 26071,
+ "▁burg": 26072,
+ ",]": 26073,
+ "Gi": 26074,
+ "êque": 26075,
+ "makeText": 26076,
+ "▁everybody": 26077,
+ "▁Hyper": 26078,
+ "▁Deux": 26079,
+ "▁glory": 26080,
+ "presentation": 26081,
+ "onica": 26082,
+ "▁frère": 26083,
+ "aget": 26084,
+ "▁hints": 26085,
+ "▁tunnel": 26086,
+ "▁Ej": 26087,
+ "ális": 26088,
+ "▁Viv": 26089,
+ "ственных": 26090,
+ "▁caps": 26091,
+ "PART": 26092,
+ "oci": 26093,
+ "▁prices": 26094,
+ "currency": 26095,
+ "▁achter": 26096,
+ "romagnet": 26097,
+ "gender": 26098,
+ "▁suis": 26099,
+ "versions": 26100,
+ "▁Training": 26101,
+ "inside": 26102,
+ "ege": 26103,
+ "▁totale": 26104,
+ "▁Daar": 26105,
+ "▁grudnia": 26106,
+ "▁Ier": 26107,
+ "▁occasions": 26108,
+ "▁kde": 26109,
+ "▁tensorflow": 26110,
+ "▁ór": 26111,
+ "Methods": 26112,
+ "▁looping": 26113,
+ "▁directeur": 26114,
+ "kę": 26115,
+ "▁isomorphism": 26116,
+ "▁João": 26117,
+ "▁aligned": 26118,
+ "онов": 26119,
+ "urger": 26120,
+ "▁nova": 26121,
+ "morrow": 26122,
+ "altern": 26123,
+ "HD": 26124,
+ "▁marqu": 26125,
+ "ativas": 26126,
+ "ggreg": 26127,
+ "▁ancien": 26128,
+ "nit": 26129,
+ "▁secured": 26130,
+ "mier": 26131,
+ "▁Ole": 26132,
+ "▁инте": 26133,
+ "▁minus": 26134,
+ "▁clearer": 26135,
+ "▁nello": 26136,
+ "▁információk": 26137,
+ "▁propre": 26138,
+ "{.": 26139,
+ "ilog": 26140,
+ "▁Quick": 26141,
+ "▁accus": 26142,
+ "employee": 26143,
+ "▁зу": 26144,
+ "цький": 26145,
+ "фіцій": 26146,
+ "▁публи": 26147,
+ "▁bent": 26148,
+ "▁позво": 26149,
+ "▁Пор": 26150,
+ "ází": 26151,
+ "ánico": 26152,
+ "emptyset": 26153,
+ "▁surtout": 26154,
+ "reno": 26155,
+ "unya": 26156,
+ "▁уез": 26157,
+ "▁Millionen": 26158,
+ "▁listopada": 26159,
+ "▁Maine": 26160,
+ "▁grupos": 26161,
+ "▁Storage": 26162,
+ "▁apple": 26163,
+ "▁Lö": 26164,
+ "oused": 26165,
+ "дро": 26166,
+ "sci": 26167,
+ "▁hibernate": 26168,
+ "dog": 26169,
+ "▁восто": 26170,
+ "▁intensity": 26171,
+ "legend": 26172,
+ "▁Wille": 26173,
+ "▁szerint": 26174,
+ "gesellschaft": 26175,
+ "▁Living": 26176,
+ "allo": 26177,
+ "▁Split": 26178,
+ "dru": 26179,
+ "need": 26180,
+ "▁Джон": 26181,
+ "▁Swiss": 26182,
+ "▁spraw": 26183,
+ "▁beho": 26184,
+ "▁fotograf": 26185,
+ "▁rencontre": 26186,
+ "▁kis": 26187,
+ "▁signing": 26188,
+ "akult": 26189,
+ "▁indexing": 26190,
+ "apor": 26191,
+ "▁conception": 26192,
+ "aggreg": 26193,
+ "▁Савез": 26194,
+ "▁affair": 26195,
+ "ění": 26196,
+ "August": 26197,
+ "▁секре": 26198,
+ "▁mieszkań": 26199,
+ "UIImage": 26200,
+ "▁bishop": 26201,
+ "▁servants": 26202,
+ "▁trail": 26203,
+ "digit": 26204,
+ "▁joins": 26205,
+ "▁Near": 26206,
+ "öffentlich": 26207,
+ ">{": 26208,
+ "▁skład": 26209,
+ "geführt": 26210,
+ "▁Holz": 26211,
+ "▁Militär": 26212,
+ "achi": 26213,
+ "Upper": 26214,
+ "pine": 26215,
+ "utzt": 26216,
+ "▁nuova": 26217,
+ "ibration": 26218,
+ "▁Bien": 26219,
+ "▁первый": 26220,
+ "▁Creating": 26221,
+ "Once": 26222,
+ "▁einmal": 26223,
+ "▁geometric": 26224,
+ "stvo": 26225,
+ "▁kW": 26226,
+ "▁decomposition": 26227,
+ "▁comedy": 26228,
+ "▁activation": 26229,
+ "▁angry": 26230,
+ "illeurs": 26231,
+ "▁instantly": 26232,
+ "▁suggesting": 26233,
+ "▁Clay": 26234,
+ "cot": 26235,
+ "▁Gén": 26236,
+ "($(": 26237,
+ "unwrap": 26238,
+ "▁lifted": 26239,
+ "▁Kit": 26240,
+ "▁linea": 26241,
+ "ок": 26242,
+ "hart": 26243,
+ "->_": 26244,
+ "▁nuit": 26245,
+ "▁Issue": 26246,
+ "лии": 26247,
+ "▁röm": 26248,
+ "Tasks": 26249,
+ "▁Sr": 26250,
+ "▁seis": 26251,
+ "asia": 26252,
+ "}}$.": 26253,
+ ":{": 26254,
+ "controls": 26255,
+ "▁Stim": 26256,
+ "▁Recht": 26257,
+ "ociación": 26258,
+ "▁Natal": 26259,
+ "▁Philippines": 26260,
+ "ulen": 26261,
+ "Fixed": 26262,
+ "▁switched": 26263,
+ "Zip": 26264,
+ "ospel": 26265,
+ "▁начале": 26266,
+ "▁Blan": 26267,
+ "urst": 26268,
+ "▁autour": 26269,
+ "Ca": 26270,
+ "▁latitude": 26271,
+ "▁Frei": 26272,
+ "▁Musée": 26273,
+ "▁Kurz": 26274,
+ "▁região": 26275,
+ "swap": 26276,
+ "▁hate": 26277,
+ "▁modifications": 26278,
+ "▁Ком": 26279,
+ "▁Antoine": 26280,
+ "uga": 26281,
+ "RECT": 26282,
+ "éter": 26283,
+ "GROUP": 26284,
+ "▁sacrific": 26285,
+ "▁Whe": 26286,
+ "▁Stevens": 26287,
+ "ologische": 26288,
+ "Summary": 26289,
+ "obs": 26290,
+ "hnen": 26291,
+ "<%=": 26292,
+ "dienst": 26293,
+ "remark": 26294,
+ "▁veröffentlicht": 26295,
+ "ел": 26296,
+ "▁Mock": 26297,
+ "▁Льв": 26298,
+ "▁três": 26299,
+ "gb": 26300,
+ "▁celebrated": 26301,
+ "▁Eb": 26302,
+ "▁costa": 26303,
+ "▁Geographic": 26304,
+ "▁attachment": 26305,
+ "mannschaft": 26306,
+ "▁dependence": 26307,
+ "��": 26308,
+ "▁attitude": 26309,
+ "etal": 26310,
+ "vic": 26311,
+ "baut": 26312,
+ "▁дов": 26313,
+ "▁interven": 26314,
+ "▁Gü": 26315,
+ "ónica": 26316,
+ "▁Pon": 26317,
+ "▁disponible": 26318,
+ "▁Feb": 26319,
+ "▁worship": 26320,
+ "▁Specifically": 26321,
+ "Hy": 26322,
+ "iju": 26323,
+ "▁cb": 26324,
+ "▁spac": 26325,
+ "leveland": 26326,
+ "▁localidad": 26327,
+ "▁preceding": 26328,
+ "▁Hessen": 26329,
+ "xp": 26330,
+ "▁Wein": 26331,
+ "▁Româ": 26332,
+ "▁giorno": 26333,
+ "▁квітня": 26334,
+ "llaços": 26335,
+ "▁Academia": 26336,
+ "▁kül": 26337,
+ "▁Års": 26338,
+ "▁нај": 26339,
+ "uclide": 26340,
+ "Internet": 26341,
+ "orton": 26342,
+ "▁corn": 26343,
+ "ями": 26344,
+ "▁\"*": 26345,
+ "▁Felix": 26346,
+ "apat": 26347,
+ "▁свои": 26348,
+ "MIT": 26349,
+ "made": 26350,
+ "▁locomot": 26351,
+ "хода": 26352,
+ "FP": 26353,
+ "▁pm": 26354,
+ ".*;": 26355,
+ "▁Hamm": 26356,
+ "`}": 26357,
+ "LayoutInflater": 26358,
+ "==\"": 26359,
+ "▁Eur": 26360,
+ "▁dogs": 26361,
+ "жении": 26362,
+ "▁azon": 26363,
+ "▁emulator": 26364,
+ "▁ricon": 26365,
+ "beeld": 26366,
+ "▁ну": 26367,
+ "▁approximate": 26368,
+ "LM": 26369,
+ "▁Bond": 26370,
+ "▁enh": 26371,
+ "ędz": 26372,
+ "▁solit": 26373,
+ "RelativeLayout": 26374,
+ "eteor": 26375,
+ "amentos": 26376,
+ "▁indirect": 26377,
+ "iből": 26378,
+ "▁gros": 26379,
+ "▁Originals": 26380,
+ "commands": 26381,
+ "Export": 26382,
+ "▁Avec": 26383,
+ "▁solemn": 26384,
+ "▁correction": 26385,
+ "▁проводи": 26386,
+ "▁Mosk": 26387,
+ "▁подо": 26388,
+ "▁gebied": 26389,
+ "▁następ": 26390,
+ "▁Driver": 26391,
+ "▁Ook": 26392,
+ "▁Vec": 26393,
+ "▁lungo": 26394,
+ "ficos": 26395,
+ "▁svol": 26396,
+ "▁kid": 26397,
+ "nja": 26398,
+ "▁Hr": 26399,
+ "▁поддер": 26400,
+ "▁visibility": 26401,
+ "▁Méd": 26402,
+ "▁cpu": 26403,
+ "discussion": 26404,
+ "Asset": 26405,
+ "▁defense": 26406,
+ "▁Anyone": 26407,
+ "▁Justin": 26408,
+ "iszt": 26409,
+ "▁Collins": 26410,
+ "▁Valent": 26411,
+ "▁Pale": 26412,
+ "▁fuel": 26413,
+ "▁nose": 26414,
+ "ríguez": 26415,
+ "▁Schles": 26416,
+ "▁Malays": 26417,
+ "▁commut": 26418,
+ "dro": 26419,
+ "uing": 26420,
+ "▁Rico": 26421,
+ "▁Emma": 26422,
+ "orp": 26423,
+ "▁Kirk": 26424,
+ "▁Quando": 26425,
+ "▁Neue": 26426,
+ "▁demande": 26427,
+ "▁Cover": 26428,
+ "▁rescue": 26429,
+ "▁gewählt": 26430,
+ "▁Calendar": 26431,
+ "▁Madonna": 26432,
+ "WP": 26433,
+ "oshi": 26434,
+ "▁Maven": 26435,
+ "▁belle": 26436,
+ "▁wx": 26437,
+ "▁sugar": 26438,
+ "▁Betrieb": 26439,
+ "▁equilibrium": 26440,
+ "EAR": 26441,
+ "▁texts": 26442,
+ "слов": 26443,
+ "▁czerwca": 26444,
+ "▁Düsseld": 26445,
+ "▁ELSE": 26446,
+ "▁amery": 26447,
+ "▁ani": 26448,
+ "▁obey": 26449,
+ "▁Nell": 26450,
+ "▁inne": 26451,
+ "▁тро": 26452,
+ "FD": 26453,
+ "cco": 26454,
+ "▁Zob": 26455,
+ "alette": 26456,
+ "▁május": 26457,
+ "ected": 26458,
+ "▁Turkey": 26459,
+ "▁Whether": 26460,
+ "qi": 26461,
+ "▁што": 26462,
+ "▁headquarters": 26463,
+ "endi": 26464,
+ "arus": 26465,
+ "opus": 26466,
+ "▁золо": 26467,
+ "▁destru": 26468,
+ "▁Lok": 26469,
+ "▁satisfaction": 26470,
+ "()\r": 26471,
+ "▁Тер": 26472,
+ "Jose": 26473,
+ "▁conquer": 26474,
+ "▁Effect": 26475,
+ "LayoutParams": 26476,
+ "iez": 26477,
+ "▁externs": 26478,
+ "▁gegenüber": 26479,
+ "▁ESP": 26480,
+ "olta": 26481,
+ "processor": 26482,
+ "▁Kult": 26483,
+ "▁Atlanta": 26484,
+ "▁tier": 26485,
+ "Operator": 26486,
+ "▁диа": 26487,
+ "▁пись": 26488,
+ "▁groß": 26489,
+ "▁hearts": 26490,
+ "▁millimeter": 26491,
+ "although": 26492,
+ "alles": 26493,
+ "▁Magic": 26494,
+ "training": 26495,
+ "oline": 26496,
+ "▁органі": 26497,
+ ">\\<^": 26498,
+ "ціаль": 26499,
+ "exports": 26500,
+ "Workbook": 26501,
+ "▁вересня": 26502,
+ "▁teles": 26503,
+ "▁economy": 26504,
+ "▁trap": 26505,
+ "▁refuse": 26506,
+ "▁stranger": 26507,
+ "▁instinct": 26508,
+ "пода": 26509,
+ "olan": 26510,
+ "▁ning": 26511,
+ "inflate": 26512,
+ "itatea": 26513,
+ "acks": 26514,
+ "▁Joy": 26515,
+ "FLAG": 26516,
+ "ailand": 26517,
+ "▁sorti": 26518,
+ "▁впер": 26519,
+ "▁pén": 26520,
+ "Nothing": 26521,
+ "▁száz": 26522,
+ "▁Áng": 26523,
+ "▁AUT": 26524,
+ "Actions": 26525,
+ "Every": 26526,
+ "▁червня": 26527,
+ "▁автомо": 26528,
+ "▁routine": 26529,
+ "▁estruct": 26530,
+ "▁Gang": 26531,
+ "▁holes": 26532,
+ "thesis": 26533,
+ "▁concl": 26534,
+ "▁pé": 26535,
+ "riers": 26536,
+ "ровой": 26537,
+ "adic": 26538,
+ "Speed": 26539,
+ "▁commanded": 26540,
+ "▁Nazionale": 26541,
+ "Managed": 26542,
+ "▁DECLARE": 26543,
+ "▁sedan": 26544,
+ "Strings": 26545,
+ "▁sacred": 26546,
+ "tersuch": 26547,
+ "▁abitanti": 26548,
+ "brit": 26549,
+ "▁NCAA": 26550,
+ "▁СП": 26551,
+ "▁aged": 26552,
+ "▁Chiesa": 26553,
+ "▁revision": 26554,
+ "opro": 26555,
+ "▁overwrite": 26556,
+ "embros": 26557,
+ "▁sortie": 26558,
+ "▁otten": 26559,
+ "xiv": 26560,
+ "▁deli": 26561,
+ "▁Asp": 26562,
+ "▁balls": 26563,
+ "kaf": 26564,
+ "▁brave": 26565,
+ "▁всего": 26566,
+ "egn": 26567,
+ "jpeg": 26568,
+ "▁Osten": 26569,
+ "Constants": 26570,
+ "▁Infantry": 26571,
+ "▁Nev": 26572,
+ "▁яких": 26573,
+ "▁муниципа": 26574,
+ "cija": 26575,
+ "▁poem": 26576,
+ "▁negro": 26577,
+ "хар": 26578,
+ "▁Ask": 26579,
+ "▁avo": 26580,
+ "▁Meyer": 26581,
+ "▁Westen": 26582,
+ "▁oko": 26583,
+ "agin": 26584,
+ "▁Süden": 26585,
+ "entries": 26586,
+ "▁Republik": 26587,
+ "CollectionView": 26588,
+ "-------": 26589,
+ "▁firefox": 26590,
+ "▁alcune": 26591,
+ "▁фото": 26592,
+ "▁отрима": 26593,
+ "~~~~~~~~": 26594,
+ "▁Раз": 26595,
+ "▁Complex": 26596,
+ "▁pia": 26597,
+ "▁publicada": 26598,
+ "wei": 26599,
+ "cedure": 26600,
+ "occupation": 26601,
+ "▁medicine": 26602,
+ "▁drove": 26603,
+ "Problem": 26604,
+ "▁beginner": 26605,
+ "▁thoroughly": 26606,
+ "uria": 26607,
+ "avant": 26608,
+ "ucha": 26609,
+ "▁lever": 26610,
+ "▁teatro": 26611,
+ "AVA": 26612,
+ "squ": 26613,
+ "trat": 26614,
+ "ivatal": 26615,
+ "▁dirty": 26616,
+ "▁seconde": 26617,
+ "▁gravit": 26618,
+ "▁proposition": 26619,
+ "hbar": 26620,
+ "omini": 26621,
+ "▁”": 26622,
+ "▁Camil": 26623,
+ "▁queen": 26624,
+ "modifier": 26625,
+ "Jan": 26626,
+ "▁lyr": 26627,
+ "ComboBox": 26628,
+ "ionic": 26629,
+ "▁holy": 26630,
+ "▁Sebastian": 26631,
+ "|_{": 26632,
+ "▁{@": 26633,
+ "▁можно": 26634,
+ "▁Creative": 26635,
+ "▁interess": 26636,
+ "▁CT": 26637,
+ "ições": 26638,
+ "▁chant": 26639,
+ "▁współ": 26640,
+ "▁Мексика": 26641,
+ "▁ranked": 26642,
+ "▁października": 26643,
+ "▁brut": 26644,
+ "▁farther": 26645,
+ "▁Verb": 26646,
+ "▁Seven": 26647,
+ "lbl": 26648,
+ "▁mentions": 26649,
+ "▁Fight": 26650,
+ "ifen": 26651,
+ "▁bog": 26652,
+ "▁regres": 26653,
+ "▁scoring": 26654,
+ "icane": 26655,
+ "▁Elli": 26656,
+ "▁pierw": 26657,
+ "measure": 26658,
+ "ńskiej": 26659,
+ "#{": 26660,
+ "▁деся": 26661,
+ "▁varmaste": 26662,
+ "▁Unix": 26663,
+ "IZ": 26664,
+ "itié": 26665,
+ "Primary": 26666,
+ "▁Springer": 26667,
+ "üng": 26668,
+ "▁anv": 26669,
+ "▁versione": 26670,
+ "▁shoulders": 26671,
+ "▁брига": 26672,
+ "▁jav": 26673,
+ "ltal": 26674,
+ "▁kallaste": 26675,
+ "▁Mitchell": 26676,
+ "▁wireless": 26677,
+ "▁Ál": 26678,
+ "respons": 26679,
+ "could": 26680,
+ "▁relax": 26681,
+ "Lond": 26682,
+ "ńcz": 26683,
+ "ствовал": 26684,
+ "▁polski": 26685,
+ "enç": 26686,
+ "zar": 26687,
+ "▁dtype": 26688,
+ "owned": 26689,
+ "unknown": 26690,
+ "▁mutable": 26691,
+ "▁siempre": 26692,
+ "▁Montreal": 26693,
+ "▁locate": 26694,
+ "▁traces": 26695,
+ "▁insgesamt": 26696,
+ "▁Nil": 26697,
+ "▁прода": 26698,
+ "▁Warner": 26699,
+ "▁Nau": 26700,
+ "triangle": 26701,
+ "▁concentration": 26702,
+ "▁gentlemen": 26703,
+ "ächt": 26704,
+ "filters": 26705,
+ "incipal": 26706,
+ "VALID": 26707,
+ "▁депута": 26708,
+ "adó": 26709,
+ "▁konst": 26710,
+ "gså": 26711,
+ "agas": 26712,
+ "▁meilleur": 26713,
+ "▁данным": 26714,
+ "єдна": 26715,
+ "encoded": 26716,
+ "<'": 26717,
+ "▁sheets": 26718,
+ "cuador": 26719,
+ "▁використову": 26720,
+ "▁Deput": 26721,
+ "▁manière": 26722,
+ "ąg": 26723,
+ "csol": 26724,
+ ")$-": 26725,
+ "UIView": 26726,
+ "▁millones": 26727,
+ "▁Ehren": 26728,
+ "Sil": 26729,
+ "▁atac": 26730,
+ "▁Cold": 26731,
+ "\"\\": 26732,
+ "▁approached": 26733,
+ "▁Årsmed": 26734,
+ "WM": 26735,
+ "▁Deport": 26736,
+ "mis": 26737,
+ "andbox": 26738,
+ "observ": 26739,
+ "setting": 26740,
+ "ható": 26741,
+ "▁strat": 26742,
+ "▁spre": 26743,
+ "▁personne": 26744,
+ "▁dirige": 26745,
+ "pull": 26746,
+ "dating": 26747,
+ "▁Fact": 26748,
+ "▁manipulate": 26749,
+ "▁MAC": 26750,
+ "▁dej": 26751,
+ "ultimo": 26752,
+ "FX": 26753,
+ "Life": 26754,
+ "▁crack": 26755,
+ "▁mí": 26756,
+ "▁пове": 26757,
+ "▁wore": 26758,
+ "université": 26759,
+ "▁formulas": 26760,
+ "▁Elisabeth": 26761,
+ "plots": 26762,
+ "mile": 26763,
+ "▁menor": 26764,
+ "тил": 26765,
+ "keyword": 26766,
+ "▁Baltimore": 26767,
+ "hrer": 26768,
+ "▁Clement": 26769,
+ "vim": 26770,
+ "rass": 26771,
+ "Take": 26772,
+ "▁című": 26773,
+ "▁Convention": 26774,
+ "atge": 26775,
+ "seed": 26776,
+ "▁Dí": 26777,
+ "▁Spider": 26778,
+ "ahoo": 26779,
+ "▁имеет": 26780,
+ "ührt": 26781,
+ "▁пописа": 26782,
+ "▁Cot": 26783,
+ "▁nobles": 26784,
+ "RESS": 26785,
+ "▁chemin": 26786,
+ "▁główn": 26787,
+ "GG": 26788,
+ "▁Germania": 26789,
+ "▁Alexandre": 26790,
+ "hens": 26791,
+ "swift": 26792,
+ "oop": 26793,
+ "Subview": 26794,
+ "▁requiring": 26795,
+ "ędzy": 26796,
+ "▁fict": 26797,
+ "▁Констан": 26798,
+ "▁déput": 26799,
+ "▁surprising": 26800,
+ "▁deix": 26801,
+ "▁unterschied": 26802,
+ "inson": 26803,
+ "▁Character": 26804,
+ "▁gestion": 26805,
+ "chus": 26806,
+ "comes": 26807,
+ "▁neur": 26808,
+ "▁yeux": 26809,
+ "ollar": 26810,
+ "▁parad": 26811,
+ "▁maggiore": 26812,
+ "TRAN": 26813,
+ "▁votre": 26814,
+ "▁descent": 26815,
+ "▁Icon": 26816,
+ "▁Judge": 26817,
+ "▁occupation": 26818,
+ "eping": 26819,
+ "▁tongue": 26820,
+ "▁Enllaços": 26821,
+ "ruf": 26822,
+ "▁protein": 26823,
+ "▁visitors": 26824,
+ "axy": 26825,
+ "esten": 26826,
+ "blica": 26827,
+ "hw": 26828,
+ "▁spirits": 26829,
+ "▁reduces": 26830,
+ "▁мен": 26831,
+ "▁Lamb": 26832,
+ "▁Mine": 26833,
+ "▁verified": 26834,
+ "▁Baby": 26835,
+ "▁prize": 26836,
+ "вър": 26837,
+ "▁ratings": 26838,
+ "▁fore": 26839,
+ "asha": 26840,
+ "urrence": 26841,
+ "▁intér": 26842,
+ "▁Olímp": 26843,
+ "cra": 26844,
+ "▁computational": 26845,
+ "irche": 26846,
+ ".: ": 26847,
+ "▁illustrated": 26848,
+ "▁Share": 26849,
+ "▁households": 26850,
+ "▁convolution": 26851,
+ "oemd": 26852,
+ "▁zdoby": 26853,
+ "ccc": 26854,
+ "▁quantities": 26855,
+ "Che": 26856,
+ "Should": 26857,
+ "▁genius": 26858,
+ "adj": 26859,
+ "хва": 26860,
+ "Петер": 26861,
+ "EMA": 26862,
+ "▁Rights": 26863,
+ "▁Eli": 26864,
+ "VAR": 26865,
+ "шло": 26866,
+ "▁збір": 26867,
+ "iftung": 26868,
+ "▁contributed": 26869,
+ "zef": 26870,
+ "▁CHAR": 26871,
+ "▁Sib": 26872,
+ "▁Mant": 26873,
+ "▁связи": 26874,
+ "▁javafx": 26875,
+ "▁cependant": 26876,
+ "▁intu": 26877,
+ "▁твор": 26878,
+ "▁Ó": 26879,
+ "guer": 26880,
+ "rado": 26881,
+ "▁Revol": 26882,
+ "▁fémin": 26883,
+ "▁Orleans": 26884,
+ "▁poj": 26885,
+ "▁prez": 26886,
+ "Tex": 26887,
+ "ouwd": 26888,
+ "?(": 26889,
+ "▁LIM": 26890,
+ "istique": 26891,
+ "esar": 26892,
+ "▁heures": 26893,
+ "icki": 26894,
+ "▁dbo": 26895,
+ "skih": 26896,
+ "confirm": 26897,
+ "▁világ": 26898,
+ "▁ciutat": 26899,
+ "▁DR": 26900,
+ "▁Hawai": 26901,
+ "ched": 26902,
+ "▁spher": 26903,
+ "▁Artikel": 26904,
+ "▁Multiple": 26905,
+ "ciu": 26906,
+ "▁мы": 26907,
+ "▁lipca": 26908,
+ "](/": 26909,
+ "Strategy": 26910,
+ "▁Alabama": 26911,
+ "SDK": 26912,
+ "UTC": 26913,
+ "__.": 26914,
+ "Arguments": 26915,
+ "▁setContentView": 26916,
+ "île": 26917,
+ "ByVal": 26918,
+ "▁JVM": 26919,
+ "ющего": 26920,
+ "▁Leonard": 26921,
+ "▁justify": 26922,
+ "цем": 26923,
+ "▁nab": 26924,
+ "CCESS": 26925,
+ "▁hopes": 26926,
+ ")&": 26927,
+ "sero": 26928,
+ "▁зай": 26929,
+ "слід": 26930,
+ "▁Rég": 26931,
+ "▁Sang": 26932,
+ "▁fung": 26933,
+ "baar": 26934,
+ "▁coffee": 26935,
+ "assembly": 26936,
+ "▁Він": 26937,
+ "эй": 26938,
+ "▁comprend": 26939,
+ "filled": 26940,
+ "рд": 26941,
+ "odia": 26942,
+ "▁gens": 26943,
+ "fluss": 26944,
+ "Drawable": 26945,
+ "▁surve": 26946,
+ "Setup": 26947,
+ "▁należ": 26948,
+ "▁conjunto": 26949,
+ "▁Его": 26950,
+ "▁oldal": 26951,
+ "▁verbose": 26952,
+ "▁Electric": 26953,
+ "▁Harrison": 26954,
+ "engen": 26955,
+ "paragraph": 26956,
+ "▁nouvelles": 26957,
+ "▁време": 26958,
+ "▁memor": 26959,
+ "▁mayoría": 26960,
+ "сад": 26961,
+ "▁bataille": 26962,
+ "▁thermal": 26963,
+ "▁Хронологи": 26964,
+ "▁Better": 26965,
+ "bye": 26966,
+ "▁театра": 26967,
+ "roe": 26968,
+ "▁segle": 26969,
+ "rott": 26970,
+ "▁opinions": 26971,
+ ")})": 26972,
+ "ühle": 26973,
+ "▁Gün": 26974,
+ "▁Щ": 26975,
+ "ból": 26976,
+ "▁Larry": 26977,
+ "▁solic": 26978,
+ "▁zwar": 26979,
+ "▁Caroline": 26980,
+ "▁Reichs": 26981,
+ "Extensions": 26982,
+ "migr": 26983,
+ ":@": 26984,
+ "▁enumerate": 26985,
+ "▁eigenen": 26986,
+ "▁explore": 26987,
+ "ému": 26988,
+ "▁gat": 26989,
+ "▁imperial": 26990,
+ "▁Usually": 26991,
+ "▁tud": 26992,
+ "▁укра": 26993,
+ "him": 26994,
+ "▁corners": 26995,
+ "▁SER": 26996,
+ "▁interpreter": 26997,
+ "▁Ice": 26998,
+ "▁amounts": 26999,
+ "▁Pala": 27000,
+ "▁tinha": 27001,
+ "vole": 27002,
+ "▁gle": 27003,
+ "ucci": 27004,
+ "▁siehe": 27005,
+ "Jack": 27006,
+ "▁woll": 27007,
+ "▁elder": 27008,
+ "▁кораб": 27009,
+ "▁engag": 27010,
+ "▁Laurent": 27011,
+ "▁achiev": 27012,
+ "istik": 27013,
+ "arct": 27014,
+ "тного": 27015,
+ "▁gir": 27016,
+ "▁Singh": 27017,
+ "mathop": 27018,
+ "USA": 27019,
+ "▁Projekt": 27020,
+ "▁debe": 27021,
+ "richtung": 27022,
+ "▁Tsch": 27023,
+ "uminate": 27024,
+ "▁szó": 27025,
+ "lyph": 27026,
+ "зидент": 27027,
+ "▁limitations": 27028,
+ "ющей": 27029,
+ "▁bila": 27030,
+ "Push": 27031,
+ "▁offering": 27032,
+ "iennes": 27033,
+ "Fri": 27034,
+ "▁postgresql": 27035,
+ "▁Tommy": 27036,
+ "▁particolare": 27037,
+ "▁století": 27038,
+ "▁arrib": 27039,
+ "▁Eva": 27040,
+ "school": 27041,
+ "▁vendor": 27042,
+ "▁Dallas": 27043,
+ "▁prolong": 27044,
+ "CREATE": 27045,
+ "▁suivante": 27046,
+ "STATUS": 27047,
+ "là": 27048,
+ "kv": 27049,
+ "▁häufig": 27050,
+ "▁Agricult": 27051,
+ "▁huit": 27052,
+ "▁inoltre": 27053,
+ "▁Lloyd": 27054,
+ "▁француз": 27055,
+ "▁выпол": 27056,
+ "▁faithful": 27057,
+ "▁Вар": 27058,
+ "▁verl": 27059,
+ "▁juego": 27060,
+ "▁Резултати": 27061,
+ ",...,": 27062,
+ "▁implicitly": 27063,
+ "irks": 27064,
+ "Calcul": 27065,
+ "▁meses": 27066,
+ "omed": 27067,
+ "▁pak": 27068,
+ "herit": 27069,
+ "▁optical": 27070,
+ "▁Історія": 27071,
+ "veis": 27072,
+ "▁capitale": 27073,
+ "placeholder": 27074,
+ "intrag": 27075,
+ "▁Atlas": 27076,
+ ")];": 27077,
+ "icons": 27078,
+ "▁Bent": 27079,
+ "▁Widget": 27080,
+ "▁volunt": 27081,
+ "avo": 27082,
+ "égr": 27083,
+ "lige": 27084,
+ "▁NAME": 27085,
+ "▁abstra": 27086,
+ "▁fís": 27087,
+ "▁Browser": 27088,
+ "▁bush": 27089,
+ "hall": 27090,
+ "▁clouds": 27091,
+ "▁SUB": 27092,
+ "▁tandis": 27093,
+ "▁Commonwealth": 27094,
+ "тая": 27095,
+ "▁exhaust": 27096,
+ "________________": 27097,
+ "▁Statistics": 27098,
+ "▁Religion": 27099,
+ "▁Muham": 27100,
+ "uals": 27101,
+ "goto": 27102,
+ "Digital": 27103,
+ "Family": 27104,
+ "▁Bun": 27105,
+ "letin": 27106,
+ "Management": 27107,
+ "▁capabilities": 27108,
+ "annten": 27109,
+ "▁себе": 27110,
+ "▁stays": 27111,
+ "kter": 27112,
+ "▁dost": 27113,
+ "▁Тре": 27114,
+ "лович": 27115,
+ "▁dying": 27116,
+ "sections": 27117,
+ "ános": 27118,
+ "▁apparten": 27119,
+ "▁zoals": 27120,
+ "▁dressed": 27121,
+ "▁compress": 27122,
+ "ńska": 27123,
+ "▁sierpnia": 27124,
+ "▁титу": 27125,
+ "dictionary": 27126,
+ "▁rabb": 27127,
+ "▁vérit": 27128,
+ "Во": 27129,
+ "▁singleton": 27130,
+ "▁vital": 27131,
+ "Refresh": 27132,
+ "мель": 27133,
+ "▁Zh": 27134,
+ "▁Afghan": 27135,
+ "inkel": 27136,
+ "aaaa": 27137,
+ "▁participants": 27138,
+ "arin": 27139,
+ "▁Mold": 27140,
+ "▁primeros": 27141,
+ "▁ран": 27142,
+ "▁Амери": 27143,
+ "▁restaurant": 27144,
+ "ével": 27145,
+ "▁SL": 27146,
+ "▁Rey": 27147,
+ "chas": 27148,
+ "▁electrons": 27149,
+ "▁Pitts": 27150,
+ "▁Jules": 27151,
+ "май": 27152,
+ "enant": 27153,
+ "-}": 27154,
+ "лад": 27155,
+ "▁Москва": 27156,
+ "gom": 27157,
+ "▁Fernández": 27158,
+ "fund": 27159,
+ "interno": 27160,
+ "▁Mari": 27161,
+ "▁rius": 27162,
+ "▁Prozent": 27163,
+ "стрі": 27164,
+ "▁внут": 27165,
+ "anterie": 27166,
+ "▁прис": 27167,
+ "▁обы": 27168,
+ "▁Marina": 27169,
+ "▁occurrence": 27170,
+ "rikt": 27171,
+ "▁физи": 27172,
+ "▁schwer": 27173,
+ "▁Гре": 27174,
+ "Reset": 27175,
+ "▁mucho": 27176,
+ "andr": 27177,
+ "▁Wies": 27178,
+ "▁Keith": 27179,
+ "▁Julian": 27180,
+ "▁cole": 27181,
+ "ciendo": 27182,
+ "▁Contempor": 27183,
+ "etry": 27184,
+ "elian": 27185,
+ "гии": 27186,
+ "▁голо": 27187,
+ "▁dél": 27188,
+ "▁decent": 27189,
+ "РСР": 27190,
+ "▁szeptember": 27191,
+ "мест": 27192,
+ "castle": 27193,
+ "▁держав": 27194,
+ "}\")": 27195,
+ "▁ASCII": 27196,
+ "▁Glen": 27197,
+ "itzerland": 27198,
+ "Toggle": 27199,
+ "▁tradicional": 27200,
+ "▁Plat": 27201,
+ "vee": 27202,
+ "abgerufen": 27203,
+ "(|": 27204,
+ "CLI": 27205,
+ "}}$,": 27206,
+ "▁Bowl": 27207,
+ "▁Male": 27208,
+ "▁Bres": 27209,
+ "▁пси": 27210,
+ "▁Challenge": 27211,
+ "zó": 27212,
+ "▁projekt": 27213,
+ "▁negoti": 27214,
+ "above": 27215,
+ "▁перио": 27216,
+ "▁longest": 27217,
+ "authentic": 27218,
+ "▁tradu": 27219,
+ "▁mujeres": 27220,
+ "▁Andre": 27221,
+ "▁hadn": 27222,
+ "▁Schule": 27223,
+ "odel": 27224,
+ "bled": 27225,
+ "▁Trade": 27226,
+ "▁mobil": 27227,
+ "▁algunas": 27228,
+ "▁Lak": 27229,
+ "▁Connecticut": 27230,
+ "▁alco": 27231,
+ "▁Selbst": 27232,
+ "ił": 27233,
+ "▁alb": 27234,
+ "ouverneur": 27235,
+ "▁sr": 27236,
+ "▁vba": 27237,
+ "loped": 27238,
+ "▁Partei": 27239,
+ "uate": 27240,
+ "▁Authentication": 27241,
+ "bei": 27242,
+ "}}.": 27243,
+ "▁konnten": 27244,
+ "▁допо": 27245,
+ "▁hyd": 27246,
+ "Office": 27247,
+ "données": 27248,
+ "▁Cleveland": 27249,
+ "rita": 27250,
+ "íos": 27251,
+ "▁выше": 27252,
+ "▁Roberts": 27253,
+ "▁élections": 27254,
+ "▁'')": 27255,
+ "▁publishing": 27256,
+ "▁bapt": 27257,
+ "<>();": 27258,
+ "missing": 27259,
+ "ровано": 27260,
+ "▁housing": 27261,
+ "▁inference": 27262,
+ "▁Renaissance": 27263,
+ "▁règ": 27264,
+ "▁Steph": 27265,
+ "CES": 27266,
+ "ERE": 27267,
+ "кет": 27268,
+ "OU": 27269,
+ "▁grouping": 27270,
+ "verkehr": 27271,
+ "jih": 27272,
+ "agli": 27273,
+ "▁milk": 27274,
+ "lait": 27275,
+ "Stage": 27276,
+ "▁byly": 27277,
+ "▁wooden": 27278,
+ "keley": 27279,
+ "etra": 27280,
+ "▁Peg": 27281,
+ "▁donné": 27282,
+ "adal": 27283,
+ "sequently": 27284,
+ "▁insbesondere": 27285,
+ "ELD": 27286,
+ "▁Mam": 27287,
+ "▁volte": 27288,
+ "▁prospect": 27289,
+ "нове": 27290,
+ "▁denoted": 27291,
+ "▁overlay": 27292,
+ "Permission": 27293,
+ "een": 27294,
+ "▁EM": 27295,
+ "▁uz": 27296,
+ "Mc": 27297,
+ "olit": 27298,
+ "▁servi": 27299,
+ "▁Heidel": 27300,
+ "▁Wiener": 27301,
+ "▁illegal": 27302,
+ "▁predictions": 27303,
+ "▁goog": 27304,
+ "hon": 27305,
+ "▁Cinema": 27306,
+ "▁револю": 27307,
+ "▁Rule": 27308,
+ "wod": 27309,
+ "▁radiation": 27310,
+ "oł": 27311,
+ "ової": 27312,
+ "▁Perform": 27313,
+ "▁prisoner": 27314,
+ "▁amet": 27315,
+ "▁figura": 27316,
+ "▁Commander": 27317,
+ "▁официаль": 27318,
+ "▁trov": 27319,
+ "▁acted": 27320,
+ "▁workflow": 27321,
+ "▁Республики": 27322,
+ "▁guidance": 27323,
+ "▁мене": 27324,
+ "National": 27325,
+ "▁Kel": 27326,
+ "webpack": 27327,
+ "простра": 27328,
+ "▁llamado": 27329,
+ "alog": 27330,
+ "terra": 27331,
+ "ixen": 27332,
+ "legraph": 27333,
+ "äischen": 27334,
+ "▁teachers": 27335,
+ "uden": 27336,
+ "▁også": 27337,
+ "possible": 27338,
+ "▁Soul": 27339,
+ "▁Geography": 27340,
+ "▁зада": 27341,
+ "hit": 27342,
+ "▁anger": 27343,
+ "▁remporte": 27344,
+ "Pod": 27345,
+ "чке": 27346,
+ "▁aria": 27347,
+ "▁Astronom": 27348,
+ "chapter": 27349,
+ "▁fork": 27350,
+ "▁Cuando": 27351,
+ "mense": 27352,
+ "▁Christians": 27353,
+ "gc": 27354,
+ "▁#(": 27355,
+ "Organ": 27356,
+ "▁steady": 27357,
+ "pse": 27358,
+ "жить": 27359,
+ "ignes": 27360,
+ "aterra": 27361,
+ "movie": 27362,
+ "posta": 27363,
+ "raste": 27364,
+ "▁Ressource": 27365,
+ "▁País": 27366,
+ "▁();": 27367,
+ "▁penalty": 27368,
+ "тт": 27369,
+ "▁trasfer": 27370,
+ "century": 27371,
+ "▁cleaner": 27372,
+ "selenium": 27373,
+ "ortheast": 27374,
+ "xic": 27375,
+ "лії": 27376,
+ "▁inglese": 27377,
+ "▁Tang": 27378,
+ "▁gods": 27379,
+ "frent": 27380,
+ "ciente": 27381,
+ "starts": 27382,
+ "▁musica": 27383,
+ "ymnasium": 27384,
+ "----+": 27385,
+ "▁terrest": 27386,
+ "▁retrieved": 27387,
+ "iare": 27388,
+ "unning": 27389,
+ "▁Marcus": 27390,
+ "▁promote": 27391,
+ "warning": 27392,
+ "тый": 27393,
+ "})$,": 27394,
+ "Transport": 27395,
+ "▁reson": 27396,
+ "▁Clo": 27397,
+ "▁erm": 27398,
+ "▁eliminate": 27399,
+ "heimer": 27400,
+ "▁saves": 27401,
+ "▁prayer": 27402,
+ "Classes": 27403,
+ "Express": 27404,
+ "▁Akademie": 27405,
+ "Else": 27406,
+ "Turn": 27407,
+ "▁ikke": 27408,
+ "▁rei": 27409,
+ "▁dirett": 27410,
+ "▁Rost": 27411,
+ "▁Papa": 27412,
+ "▁jsf": 27413,
+ "лением": 27414,
+ "▁Tul": 27415,
+ "▁Zak": 27416,
+ "▁niemieck": 27417,
+ "Tw": 27418,
+ "amour": 27419,
+ "nested": 27420,
+ "ppets": 27421,
+ "шп": 27422,
+ "dit": 27423,
+ "зен": 27424,
+ "zyma": 27425,
+ "hrte": 27426,
+ "Constraints": 27427,
+ "▁ownership": 27428,
+ "Arm": 27429,
+ "▁consumption": 27430,
+ "▁fet": 27431,
+ "ivari": 27432,
+ "chrom": 27433,
+ "setAttribute": 27434,
+ "▁compose": 27435,
+ "▁backing": 27436,
+ "▁Paz": 27437,
+ "▁scri": 27438,
+ "▁Mechan": 27439,
+ "▁Norway": 27440,
+ "▁Jup": 27441,
+ "▁mér": 27442,
+ "▁administrator": 27443,
+ "▁cabe": 27444,
+ "ivalent": 27445,
+ "▁throne": 27446,
+ "▁dues": 27447,
+ "▁humor": 27448,
+ "▁Adri": 27449,
+ "▁abort": 27450,
+ "ñas": 27451,
+ "▁Київ": 27452,
+ "jící": 27453,
+ "▁zweite": 27454,
+ "▁doub": 27455,
+ "ershell": 27456,
+ "шой": 27457,
+ "▁Fam": 27458,
+ "åk": 27459,
+ "▁tweede": 27460,
+ "▁Rib": 27461,
+ "▁før": 27462,
+ "pción": 27463,
+ "inned": 27464,
+ "rvm": 27465,
+ "▁Appar": 27466,
+ "▁Dj": 27467,
+ "▁Shang": 27468,
+ "Distance": 27469,
+ "▁dawn": 27470,
+ "▁Matth": 27471,
+ "▁errichtet": 27472,
+ "phantom": 27473,
+ "▁releases": 27474,
+ "Recognizer": 27475,
+ "▁Kop": 27476,
+ "▁Pul": 27477,
+ "ué": 27478,
+ "nats": 27479,
+ "relax": 27480,
+ "▁fled": 27481,
+ "▁experiences": 27482,
+ "щее": 27483,
+ "меня": 27484,
+ "▁персона": 27485,
+ "▁Identity": 27486,
+ "rets": 27487,
+ "kunft": 27488,
+ "larg": 27489,
+ "ListItem": 27490,
+ "vd": 27491,
+ "runner": 27492,
+ "lant": 27493,
+ "ipart": 27494,
+ "bay": 27495,
+ "iei": 27496,
+ "▁lengths": 27497,
+ "▁cattle": 27498,
+ "jets": 27499,
+ "▁sehen": 27500,
+ "Jul": 27501,
+ "fatt": 27502,
+ "▁surrender": 27503,
+ "▁Trump": 27504,
+ "дного": 27505,
+ "▁Fourier": 27506,
+ "ieben": 27507,
+ "_\"": 27508,
+ "▁früher": 27509,
+ "▁garant": 27510,
+ "uclidean": 27511,
+ "ägt": 27512,
+ "▁півден": 27513,
+ "Pages": 27514,
+ "▁rivers": 27515,
+ "▁donner": 27516,
+ "svn": 27517,
+ "▁ł": 27518,
+ "ově": 27519,
+ "▁Leist": 27520,
+ "arial": 27521,
+ "ových": 27522,
+ "▁filling": 27523,
+ "▁musicale": 27524,
+ "maxim": 27525,
+ "▁dashed": 27526,
+ "▁Нов": 27527,
+ "Drawer": 27528,
+ "▁Medicine": 27529,
+ "▁dokument": 27530,
+ "owel": 27531,
+ "vić": 27532,
+ "hely": 27533,
+ "▁elet": 27534,
+ "Seconds": 27535,
+ "▁Gonz": 27536,
+ "rou": 27537,
+ "▁finales": 27538,
+ "rn": 27539,
+ "fø": 27540,
+ "▁indexed": 27541,
+ "className": 27542,
+ "▁ober": 27543,
+ "▁duas": 27544,
+ "▁optimized": 27545,
+ "▁kdy": 27546,
+ "versary": 27547,
+ "energy": 27548,
+ "▁центра": 27549,
+ "▁currency": 27550,
+ "zyż": 27551,
+ "Like": 27552,
+ "▁Ги": 27553,
+ "sono": 27554,
+ "▁palab": 27555,
+ "▁pushing": 27556,
+ "ublik": 27557,
+ "▁Hass": 27558,
+ "}\\,\\": 27559,
+ "unker": 27560,
+ "▁Factory": 27561,
+ "▁Resources": 27562,
+ "datei": 27563,
+ "▁Tools": 27564,
+ "▁stehen": 27565,
+ "sime": 27566,
+ "▁Ху": 27567,
+ "▁hoch": 27568,
+ "▁Rodríguez": 27569,
+ "zeitig": 27570,
+ "▁Terry": 27571,
+ "▁обу": 27572,
+ "Usage": 27573,
+ "urchase": 27574,
+ "lö": 27575,
+ "▁Introduction": 27576,
+ "▁participation": 27577,
+ "ος": 27578,
+ "ogli": 27579,
+ "apy": 27580,
+ "▁hopefully": 27581,
+ "ponder": 27582,
+ "▁Yang": 27583,
+ "▁promises": 27584,
+ "▁верну": 27585,
+ "▁остров": 27586,
+ "^{+": 27587,
+ "▁mostra": 27588,
+ "▁CURLOPT": 27589,
+ "HH": 27590,
+ "▁stdout": 27591,
+ "▁brilliant": 27592,
+ "▁manuscript": 27593,
+ "▁decir": 27594,
+ "▁Bolog": 27595,
+ "▁места": 27596,
+ "▁invisible": 27597,
+ "▁Chal": 27598,
+ "▁analyze": 27599,
+ "prilis": 27600,
+ "attend": 27601,
+ "Mvc": 27602,
+ "than": 27603,
+ "cko": 27604,
+ "▁Quebec": 27605,
+ "▁planta": 27606,
+ "▁télévis": 27607,
+ "▁uninstall": 27608,
+ "ències": 27609,
+ "▁gminie": 27610,
+ "▁Pref": 27611,
+ "▁lequel": 27612,
+ "Invocation": 27613,
+ "▁Í": 27614,
+ "▁transformed": 27615,
+ "MAN": 27616,
+ "gebaut": 27617,
+ "▁сохра": 27618,
+ "▁второй": 27619,
+ "▁Lith": 27620,
+ "wendung": 27621,
+ "▁Politik": 27622,
+ "▁Senator": 27623,
+ "▁LL": 27624,
+ "ждение": 27625,
+ "ште": 27626,
+ "▁Cés": 27627,
+ "▁bande": 27628,
+ "▁historian": 27629,
+ "▁passwords": 27630,
+ "malloc": 27631,
+ "▁semif": 27632,
+ "▁rå": 27633,
+ "unicí": 27634,
+ "Available": 27635,
+ "Optional": 27636,
+ "▁Twe": 27637,
+ "▁kró": 27638,
+ "▁subsets": 27639,
+ "▁DAT": 27640,
+ "▁doubles": 27641,
+ "никами": 27642,
+ "▁зв": 27643,
+ "gegeben": 27644,
+ "▁Попис": 27645,
+ "▁július": 27646,
+ "▁meteor": 27647,
+ "Mount": 27648,
+ "ivent": 27649,
+ "▁Nathan": 27650,
+ "▁Schutz": 27651,
+ "egov": 27652,
+ "▁död": 27653,
+ "▁meat": 27654,
+ "▁пункт": 27655,
+ "▁minds": 27656,
+ "elivery": 27657,
+ "▁TLS": 27658,
+ "рем": 27659,
+ "ckså": 27660,
+ "▁stayed": 27661,
+ "▁Bin": 27662,
+ "▁Pia": 27663,
+ "▁имен": 27664,
+ "▁Bobby": 27665,
+ "▁produit": 27666,
+ "empio": 27667,
+ "▁reducing": 27668,
+ "▁Yu": 27669,
+ "▁Geschäft": 27670,
+ "▁perché": 27671,
+ "▁cors": 27672,
+ "▁icons": 27673,
+ "AppData": 27674,
+ "▁Hog": 27675,
+ "▁рів": 27676,
+ "▁Sans": 27677,
+ "▁siège": 27678,
+ "stellen": 27679,
+ "Brush": 27680,
+ "OFF": 27681,
+ "▁visitor": 27682,
+ "▁bath": 27683,
+ "▁fee": 27684,
+ "atisf": 27685,
+ "▁curv": 27686,
+ "▁folgender": 27687,
+ "▁conscience": 27688,
+ "▁Seattle": 27689,
+ "▁medieval": 27690,
+ "distribution": 27691,
+ "▁DM": 27692,
+ "▁мя": 27693,
+ "▁RUN": 27694,
+ "akov": 27695,
+ "ceil": 27696,
+ "▁letting": 27697,
+ "▁dov": 27698,
+ "▁оби": 27699,
+ "kiej": 27700,
+ "▁direkt": 27701,
+ "▁tm": 27702,
+ "colors": 27703,
+ "▁altro": 27704,
+ "▁tijdens": 27705,
+ "]{'": 27706,
+ "▁Bom": 27707,
+ "▁kunst": 27708,
+ "▁shelter": 27709,
+ "▁rav": 27710,
+ "predict": 27711,
+ "▁comenzó": 27712,
+ "▁świat": 27713,
+ "▁Durant": 27714,
+ "▁schemes": 27715,
+ "▁mesh": 27716,
+ "▁indicator": 27717,
+ "▁Emer": 27718,
+ "▁guilty": 27719,
+ "нец": 27720,
+ "▁consequences": 27721,
+ "cludes": 27722,
+ "▁Lower": 27723,
+ "▁поме": 27724,
+ "▁pace": 27725,
+ "даго": 27726,
+ "▁ambos": 27727,
+ "lb": 27728,
+ "▁educated": 27729,
+ "urale": 27730,
+ "anh": 27731,
+ "esség": 27732,
+ "▁associations": 27733,
+ "town": 27734,
+ "▁trif": 27735,
+ "samples": 27736,
+ "bos": 27737,
+ "▁Spect": 27738,
+ "▁Це": 27739,
+ "altung": 27740,
+ "▁Lob": 27741,
+ "▁curiosity": 27742,
+ "▁Weiter": 27743,
+ "estone": 27744,
+ "▁demol": 27745,
+ "▁apolog": 27746,
+ "▁Dynamic": 27747,
+ "Inner": 27748,
+ "esper": 27749,
+ "ecz": 27750,
+ "uellement": 27751,
+ "▁Hamiltonian": 27752,
+ "Atlas": 27753,
+ "▁argue": 27754,
+ "Foreign": 27755,
+ "collapse": 27756,
+ "▁términ": 27757,
+ "▁electronic": 27758,
+ "▁NR": 27759,
+ "▁corr": 27760,
+ "temps": 27761,
+ "IndexPath": 27762,
+ "яз": 27763,
+ "▁talál": 27764,
+ "today": 27765,
+ "wave": 27766,
+ "▁sib": 27767,
+ "▁спи": 27768,
+ "▁convey": 27769,
+ "▁Géographie": 27770,
+ "▁Нью": 27771,
+ "▁Hibernate": 27772,
+ "▁tin": 27773,
+ "dic": 27774,
+ "ppings": 27775,
+ "sweise": 27776,
+ "▁rolling": 27777,
+ "▁selects": 27778,
+ ")\\)": 27779,
+ "▁poeta": 27780,
+ "▁степени": 27781,
+ "▁Abr": 27782,
+ "▁höch": 27783,
+ "▁stern": 27784,
+ "▁fjär": 27785,
+ "▁installer": 27786,
+ "decl": 27787,
+ "▁miser": 27788,
+ "groupby": 27789,
+ "substr": 27790,
+ "▁phenomen": 27791,
+ "▁Wing": 27792,
+ "▁fills": 27793,
+ "▁único": 27794,
+ "Running": 27795,
+ "Come": 27796,
+ "irable": 27797,
+ "simeq": 27798,
+ "▁remp": 27799,
+ "kele": 27800,
+ "liers": 27801,
+ "▁kwietnia": 27802,
+ "▁interrupted": 27803,
+ "▁Jet": 27804,
+ "=\\{": 27805,
+ "ído": 27806,
+ "▁Taiwan": 27807,
+ "▁возра": 27808,
+ "▁alternatives": 27809,
+ "▁Tir": 27810,
+ "▁Reserve": 27811,
+ "▁Кур": 27812,
+ "▁Nobel": 27813,
+ "▁работал": 27814,
+ "▁axes": 27815,
+ "▁Cependant": 27816,
+ "ká": 27817,
+ "▁erneut": 27818,
+ "▁Demo": 27819,
+ "communic": 27820,
+ "constructor": 27821,
+ "▁Monday": 27822,
+ "Nil": 27823,
+ "HashMap": 27824,
+ "payment": 27825,
+ "▁fixing": 27826,
+ "▁ADD": 27827,
+ "review": 27828,
+ "▁possibil": 27829,
+ "▁grote": 27830,
+ "▁grouped": 27831,
+ "▁Lima": 27832,
+ "▁Augen": 27833,
+ "▁också": 27834,
+ "onas": 27835,
+ "▁debate": 27836,
+ "▁Ingl": 27837,
+ "Da": 27838,
+ "SOUR": 27839,
+ "ettbe": 27840,
+ "▁Battalion": 27841,
+ "▁Float": 27842,
+ "▁cone": 27843,
+ "readsheet": 27844,
+ "court": 27845,
+ "ligen": 27846,
+ "▁Beginn": 27847,
+ "▁LIMIT": 27848,
+ "▁enjoyed": 27849,
+ "▁Jakob": 27850,
+ "▁telt": 27851,
+ "backend": 27852,
+ "▁Gemeinsame": 27853,
+ "lint": 27854,
+ "alling": 27855,
+ "▁bör": 27856,
+ "grand": 27857,
+ "▁diverses": 27858,
+ "▁związ": 27859,
+ "▁Kompon": 27860,
+ "▁innerhalb": 27861,
+ "▁desarrollo": 27862,
+ "▁Masters": 27863,
+ "ioso": 27864,
+ "]`.": 27865,
+ "▁francesa": 27866,
+ "Aff": 27867,
+ "inek": 27868,
+ "▁dessin": 27869,
+ "`.`": 27870,
+ "▁ranks": 27871,
+ "берг": 27872,
+ "▁skal": 27873,
+ "▁Sultan": 27874,
+ "АН": 27875,
+ "▁способ": 27876,
+ "▁contradict": 27877,
+ "▁recom": 27878,
+ "▁Oklahoma": 27879,
+ "▁Vladimir": 27880,
+ "▁meters": 27881,
+ "transport": 27882,
+ "▁consulté": 27883,
+ "▁ATP": 27884,
+ "ebb": 27885,
+ "▁volunte": 27886,
+ "▁outline": 27887,
+ "LIC": 27888,
+ "▁euro": 27889,
+ "CharField": 27890,
+ "medium": 27891,
+ "▁Belgique": 27892,
+ "Proc": 27893,
+ "routes": 27894,
+ "▁contribu": 27895,
+ "!}": 27896,
+ "ším": 27897,
+ "▁Less": 27898,
+ "▁Kost": 27899,
+ "▁eredetiből": 27900,
+ "reven": 27901,
+ "verify": 27902,
+ "▁Salt": 27903,
+ "▁shooting": 27904,
+ "▁dispose": 27905,
+ "ují": 27906,
+ "▁tierra": 27907,
+ "▁poison": 27908,
+ "sak": 27909,
+ "perimental": 27910,
+ "▁Né": 27911,
+ "▁Kid": 27912,
+ "agyar": 27913,
+ "▁archiválva": 27914,
+ "bereich": 27915,
+ "íz": 27916,
+ "▁Ritter": 27917,
+ "▁Хронологија": 27918,
+ "zeum": 27919,
+ "дах": 27920,
+ "▁gründ": 27921,
+ "▁programmer": 27922,
+ "▁conseil": 27923,
+ "▁encrypt": 27924,
+ "integration": 27925,
+ "Culture": 27926,
+ "▁Circle": 27927,
+ "Observable": 27928,
+ "▁genomsnitt": 27929,
+ "▁Selection": 27930,
+ "▁irregular": 27931,
+ "Autres": 27932,
+ "Percent": 27933,
+ "fault": 27934,
+ "▁virtue": 27935,
+ "ąpi": 27936,
+ "▁sess": 27937,
+ "▁Также": 27938,
+ "Timestamp": 27939,
+ "▁littérature": 27940,
+ "▁moż": 27941,
+ "▁borrow": 27942,
+ "▁conced": 27943,
+ "чник": 27944,
+ "▁Lund": 27945,
+ "IONS": 27946,
+ "ynie": 27947,
+ "▁Shin": 27948,
+ "▁osob": 27949,
+ "bě": 27950,
+ "▁intuit": 27951,
+ "▁нап": 27952,
+ "▁proph": 27953,
+ "▁pitt": 27954,
+ "▁IBM": 27955,
+ "▁Till": 27956,
+ "▁hina": 27957,
+ "ittest": 27958,
+ "generator": 27959,
+ "▁Nin": 27960,
+ "▁Kot": 27961,
+ "▁passer": 27962,
+ "▁disposition": 27963,
+ "uning": 27964,
+ "▁fame": 27965,
+ "▁tenia": 27966,
+ "ancement": 27967,
+ "▁Suisse": 27968,
+ "`-": 27969,
+ "▁hombres": 27970,
+ "▁infinity": 27971,
+ "▁оконча": 27972,
+ "▁cosm": 27973,
+ "▁Dennis": 27974,
+ "baz": 27975,
+ "haupt": 27976,
+ "▁mighty": 27977,
+ "▁prede": 27978,
+ "usable": 27979,
+ "▁wszyst": 27980,
+ "▁lb": 27981,
+ "ABASE": 27982,
+ "jna": 27983,
+ "нев": 27984,
+ "▁ases": 27985,
+ "▁finalmente": 27986,
+ "йм": 27987,
+ "pection": 27988,
+ "▁Studien": 27989,
+ "▁Norwegian": 27990,
+ "cego": 27991,
+ "INDEX": 27992,
+ "orten": 27993,
+ "▁friendship": 27994,
+ "metro": 27995,
+ "thick": 27996,
+ "▁Zel": 27997,
+ "LOW": 27998,
+ "▁thereby": 27999,
+ "unted": 28000,
+ "▁surfaces": 28001,
+ "ющим": 28002,
+ "%).": 28003,
+ "▁Wonder": 28004,
+ "▁redundant": 28005,
+ "▁Gros": 28006,
+ "▁websites": 28007,
+ "▁vio": 28008,
+ "▁ocas": 28009,
+ "vés": 28010,
+ "▁Gam": 28011,
+ "dw": 28012,
+ "Indicator": 28013,
+ "▁Kob": 28014,
+ "▁jack": 28015,
+ "Hint": 28016,
+ "▁Apol": 28017,
+ "▁другие": 28018,
+ "▁NUM": 28019,
+ "▁ofic": 28020,
+ "ystycz": 28021,
+ "▁wereld": 28022,
+ "мости": 28023,
+ "LEFT": 28024,
+ "▁Types": 28025,
+ "seen": 28026,
+ "uncia": 28027,
+ "▁narod": 28028,
+ "▁этот": 28029,
+ "Sidenote": 28030,
+ "ueil": 28031,
+ "▁отме": 28032,
+ "▁courts": 28033,
+ "fir": 28034,
+ "urz": 28035,
+ "ченко": 28036,
+ "Credentials": 28037,
+ "▁imagination": 28038,
+ "itats": 28039,
+ "buff": 28040,
+ "flash": 28041,
+ "▁badly": 28042,
+ "▁worn": 28043,
+ "▁округу": 28044,
+ "catalog": 28045,
+ "lime": 28046,
+ "▁Gill": 28047,
+ "▁Sent": 28048,
+ "iella": 28049,
+ "▁Craig": 28050,
+ "▁Sele": 28051,
+ "▁Independ": 28052,
+ "▁provincie": 28053,
+ "ossen": 28054,
+ "▁запад": 28055,
+ "▁infant": 28056,
+ "▁prevents": 28057,
+ "▁provinces": 28058,
+ "afé": 28059,
+ "beg": 28060,
+ "▁colours": 28061,
+ "BF": 28062,
+ "ën": 28063,
+ "▁Между": 28064,
+ "în": 28065,
+ "Observer": 28066,
+ "forsch": 28067,
+ "ígen": 28068,
+ "umption": 28069,
+ "▁Illustr": 28070,
+ "рист": 28071,
+ "▁полови": 28072,
+ "▁`&": 28073,
+ "▁ore": 28074,
+ "▁supplies": 28075,
+ "▁parenthes": 28076,
+ "Foundation": 28077,
+ "▁vou": 28078,
+ "▁Tout": 28079,
+ "Donald": 28080,
+ "▁RET": 28081,
+ "weig": 28082,
+ "▁producción": 28083,
+ "mix": 28084,
+ "▁utwor": 28085,
+ "▁föl": 28086,
+ "▁então": 28087,
+ "▁Sister": 28088,
+ "Tags": 28089,
+ "▁Савезне": 28090,
+ "▁privileges": 28091,
+ "▁nazw": 28092,
+ "▁Rav": 28093,
+ "▁repro": 28094,
+ "▁Mason": 28095,
+ "▁Platform": 28096,
+ "▁пробле": 28097,
+ "▁Pérez": 28098,
+ "▁blanc": 28099,
+ "Behavior": 28100,
+ "фици": 28101,
+ "eken": 28102,
+ "▁meets": 28103,
+ "(.*": 28104,
+ "▁få": 28105,
+ "epen": 28106,
+ "maker": 28107,
+ "▁loyal": 28108,
+ "members": 28109,
+ "meisterschaft": 28110,
+ "goal": 28111,
+ "шлен": 28112,
+ "▁северо": 28113,
+ "iende": 28114,
+ "дні": 28115,
+ "Proof": 28116,
+ "▁explic": 28117,
+ "▁electro": 28118,
+ "iels": 28119,
+ "reload": 28120,
+ "▁eleven": 28121,
+ "▁partidos": 28122,
+ "îne": 28123,
+ "▁Regin": 28124,
+ "▁éx": 28125,
+ "▁Bulg": 28126,
+ "▁networking": 28127,
+ "▁separator": 28128,
+ "UserName": 28129,
+ "▁edificio": 28130,
+ "▁Mie": 28131,
+ "▁idle": 28132,
+ "yed": 28133,
+ "▁passengers": 28134,
+ "+)": 28135,
+ "meno": 28136,
+ "eggi": 28137,
+ "▁nicely": 28138,
+ "endencia": 28139,
+ "чий": 28140,
+ "étés": 28141,
+ "ightarrow": 28142,
+ "▁orthogonal": 28143,
+ "▁Half": 28144,
+ "▁fewer": 28145,
+ "▁propi": 28146,
+ "▁primit": 28147,
+ "icale": 28148,
+ "▁flower": 28149,
+ "merk": 28150,
+ "▁Отече": 28151,
+ "▁persistent": 28152,
+ "▁Ville": 28153,
+ "Men": 28154,
+ "gaben": 28155,
+ "▁Isaac": 28156,
+ "ativity": 28157,
+ "▁północ": 28158,
+ "▁rok": 28159,
+ "cards": 28160,
+ "дения": 28161,
+ "▁юго": 28162,
+ "▁extraordinary": 28163,
+ "▁kyr": 28164,
+ "(\",": 28165,
+ "))]": 28166,
+ "▁unix": 28167,
+ "кол": 28168,
+ "▁sink": 28169,
+ "apsed": 28170,
+ "▁kommen": 28171,
+ "▁forcing": 28172,
+ "About": 28173,
+ "▁Halle": 28174,
+ "▁Majesty": 28175,
+ "▁Switch": 28176,
+ "▁abroad": 28177,
+ "▁acceleration": 28178,
+ "urbed": 28179,
+ "▁остан": 28180,
+ "Ready": 28181,
+ "▁півні": 28182,
+ "Bra": 28183,
+ "▁цього": 28184,
+ "▁plut": 28185,
+ "▁Train": 28186,
+ "▁április": 28187,
+ "▁puesto": 28188,
+ "▁toss": 28189,
+ "▁irrelevant": 28190,
+ "▁dip": 28191,
+ "segment": 28192,
+ "opacity": 28193,
+ "▁lorsque": 28194,
+ "▁verschill": 28195,
+ "ена": 28196,
+ "▁Doc": 28197,
+ "%%%%%%%%": 28198,
+ "▁borders": 28199,
+ "gebras": 28200,
+ "▁ries": 28201,
+ "▁Olympedia": 28202,
+ "▁Generation": 28203,
+ "metros": 28204,
+ "▁horizon": 28205,
+ "▁adaptation": 28206,
+ "▁Zahl": 28207,
+ "▁nahe": 28208,
+ "▁Bug": 28209,
+ "Picture": 28210,
+ "љи": 28211,
+ "RGB": 28212,
+ "Owner": 28213,
+ "adin": 28214,
+ "▁Catalunya": 28215,
+ "ných": 28216,
+ "▁cualquier": 28217,
+ "▁Institution": 28218,
+ "insen": 28219,
+ "▁Brasile": 28220,
+ "▁fitting": 28221,
+ "Deleg": 28222,
+ "ictwo": 28223,
+ "▁Exper": 28224,
+ "ochastic": 28225,
+ "▁dus": 28226,
+ "▁пора": 28227,
+ "▁substring": 28228,
+ "ссии": 28229,
+ "oin": 28230,
+ "▁школа": 28231,
+ "▁cx": 28232,
+ "▁%)": 28233,
+ "▁Buddh": 28234,
+ "▁pending": 28235,
+ "▁Entry": 28236,
+ "▁Berl": 28237,
+ "▁cler": 28238,
+ "▁Soc": 28239,
+ "▁rounded": 28240,
+ "▁mv": 28241,
+ "ített": 28242,
+ "▁Diplom": 28243,
+ "▁französischen": 28244,
+ "▁Gan": 28245,
+ "▁Investig": 28246,
+ "▁indexPath": 28247,
+ "▁molti": 28248,
+ "persistence": 28249,
+ "▁XIXe": 28250,
+ "▁Electron": 28251,
+ "bü": 28252,
+ "gele": 28253,
+ "▁Maler": 28254,
+ "▁proyecto": 28255,
+ "▁Bath": 28256,
+ "ellers": 28257,
+ "▁GP": 28258,
+ "oning": 28259,
+ "cloudflare": 28260,
+ "▁při": 28261,
+ "▁ded": 28262,
+ "▁Odkazy": 28263,
+ "▁Msg": 28264,
+ "▁Being": 28265,
+ "▁Depuis": 28266,
+ "▁Primary": 28267,
+ "▁Appro": 28268,
+ "▁formally": 28269,
+ "ступил": 28270,
+ "▁fuera": 28271,
+ "▁Root": 28272,
+ "▁autonom": 28273,
+ "▁secretary": 28274,
+ "▁osób": 28275,
+ "▁cuales": 28276,
+ "▁Depending": 28277,
+ "▁asi": 28278,
+ "vera": 28279,
+ "▁russe": 28280,
+ "▁proves": 28281,
+ "▁presiden": 28282,
+ "RU": 28283,
+ "▁Watson": 28284,
+ "▁webpack": 28285,
+ "elligence": 28286,
+ "кам": 28287,
+ "▁Officer": 28288,
+ "▁delivery": 28289,
+ "ждён": 28290,
+ "▁импе": 28291,
+ "▁wil": 28292,
+ "▁vesc": 28293,
+ "usztus": 28294,
+ "▁Geoff": 28295,
+ "()}": 28296,
+ "▁Fore": 28297,
+ "▁wenig": 28298,
+ "▁Airl": 28299,
+ "▁Efter": 28300,
+ "▁Break": 28301,
+ "▁Städ": 28302,
+ "ismiss": 28303,
+ "íp": 28304,
+ "▁avoided": 28305,
+ "▁assertion": 28306,
+ "DN": 28307,
+ "▁teat": 28308,
+ "ína": 28309,
+ "▁mechanical": 28310,
+ "isu": 28311,
+ "@{": 28312,
+ "▁nou": 28313,
+ "Italie": 28314,
+ "sourceforge": 28315,
+ "▁svo": 28316,
+ "▁király": 28317,
+ "▁References": 28318,
+ "six": 28319,
+ "▁Archives": 28320,
+ "▁finishing": 28321,
+ "acje": 28322,
+ "état": 28323,
+ "iffs": 28324,
+ "▁stead": 28325,
+ "▁feas": 28326,
+ "aware": 28327,
+ "lande": 28328,
+ "Inject": 28329,
+ "▁Agent": 28330,
+ "▁Normdatei": 28331,
+ "▁amen": 28332,
+ "▁Architecture": 28333,
+ "aze": 28334,
+ "ște": 28335,
+ "▁usar": 28336,
+ "▁cores": 28337,
+ "лін": 28338,
+ "▁Castro": 28339,
+ "▁væ": 28340,
+ ">\",": 28341,
+ "omena": 28342,
+ "▁gesam": 28343,
+ "▁Martín": 28344,
+ "egung": 28345,
+ "▁společ": 28346,
+ "▁amplitude": 28347,
+ "▁importing": 28348,
+ "▁listview": 28349,
+ "THE": 28350,
+ "ziale": 28351,
+ "cedes": 28352,
+ "▁particulier": 28353,
+ "▁Расподела": 28354,
+ "▁край": 28355,
+ "▁divent": 28356,
+ "▁ké": 28357,
+ "quit": 28358,
+ "тором": 28359,
+ "CheckBox": 28360,
+ "▁Zobacz": 28361,
+ "phe": 28362,
+ "pta": 28363,
+ "▁sjö": 28364,
+ "▁розташ": 28365,
+ "▁tedesco": 28366,
+ "▁stal": 28367,
+ "▁Beruf": 28368,
+ "овая": 28369,
+ "▁svě": 28370,
+ "▁flush": 28371,
+ "▁відбу": 28372,
+ "▁radial": 28373,
+ "▁différentes": 28374,
+ "анта": 28375,
+ "▁Perry": 28376,
+ "Coll": 28377,
+ "liqu": 28378,
+ "▁Optional": 28379,
+ "▁Санкт": 28380,
+ "▁LINQ": 28381,
+ "▁Franc": 28382,
+ "cije": 28383,
+ "▁Guillaume": 28384,
+ "know": 28385,
+ "▁Units": 28386,
+ "olk": 28387,
+ "▁Système": 28388,
+ "▁Sales": 28389,
+ "▁ehemaligen": 28390,
+ "мирова": 28391,
+ "xhtml": 28392,
+ "setopt": 28393,
+ "▁mellan": 28394,
+ "▁zie": 28395,
+ "▁giant": 28396,
+ "Board": 28397,
+ "▁Caval": 28398,
+ "▁defence": 28399,
+ "----------": 28400,
+ "pshire": 28401,
+ "mart": 28402,
+ "▁Dioc": 28403,
+ "iskt": 28404,
+ "▁inse": 28405,
+ "▁épisode": 28406,
+ "чик": 28407,
+ "bars": 28408,
+ "Sito": 28409,
+ "▁integrity": 28410,
+ "auff": 28411,
+ "▁vär": 28412,
+ "Azure": 28413,
+ "▁starb": 28414,
+ "▁контра": 28415,
+ "▁Мексичка": 28416,
+ "▁запа": 28417,
+ "▁Mountains": 28418,
+ "}}=": 28419,
+ "▁pulling": 28420,
+ "▁satellite": 28421,
+ "▁atoms": 28422,
+ "▁profesor": 28423,
+ "▁repeatedly": 28424,
+ "▁invasion": 28425,
+ "programming": 28426,
+ "├──": 28427,
+ "▁Lip": 28428,
+ "вшие": 28429,
+ "▁keen": 28430,
+ "▁critics": 28431,
+ "▁Nicola": 28432,
+ "▁Cand": 28433,
+ "▁distint": 28434,
+ "▁heading": 28435,
+ "pragma": 28436,
+ "{|": 28437,
+ "ymen": 28438,
+ "▁terrain": 28439,
+ "iedenis": 28440,
+ "▁besonders": 28441,
+ "▁nominated": 28442,
+ "BOOL": 28443,
+ "▁Kay": 28444,
+ "cian": 28445,
+ "stelle": 28446,
+ "▁dispute": 28447,
+ "▁щ": 28448,
+ "DataSet": 28449,
+ "nothing": 28450,
+ "Autom": 28451,
+ "hören": 28452,
+ "▁shed": 28453,
+ "▁paused": 28454,
+ "san": 28455,
+ "▁nunca": 28456,
+ "!(\"": 28457,
+ "▁położ": 28458,
+ "Secret": 28459,
+ "▁Domain": 28460,
+ "▁возмож": 28461,
+ "XV": 28462,
+ "lv": 28463,
+ "ikh": 28464,
+ "▁Sony": 28465,
+ "mq": 28466,
+ "otrop": 28467,
+ "▁Logger": 28468,
+ "▁threat": 28469,
+ "asted": 28470,
+ "зько": 28471,
+ "▁freely": 28472,
+ "▁improvements": 28473,
+ "istema": 28474,
+ "▁illustrate": 28475,
+ "▁tact": 28476,
+ "▁figur": 28477,
+ "ués": 28478,
+ "riminal": 28479,
+ "odon": 28480,
+ "intendo": 28481,
+ "▁influenced": 28482,
+ "FFER": 28483,
+ "▁Ghost": 28484,
+ "▁совер": 28485,
+ "nad": 28486,
+ "ioned": 28487,
+ "▁Events": 28488,
+ "▁wrapping": 28489,
+ "---------+": 28490,
+ "fif": 28491,
+ "▁(**": 28492,
+ "={{": 28493,
+ "маль": 28494,
+ "▁losses": 28495,
+ "▁Galerie": 28496,
+ "tel": 28497,
+ "▁лютого": 28498,
+ "▁Kru": 28499,
+ "▁Polen": 28500,
+ "нім": 28501,
+ "near": 28502,
+ "▁shame": 28503,
+ "▁moyenne": 28504,
+ "▁CP": 28505,
+ "preis": 28506,
+ "▁passenger": 28507,
+ "lek": 28508,
+ "ionales": 28509,
+ "kafka": 28510,
+ "▁participe": 28511,
+ "▁membership": 28512,
+ "[_": 28513,
+ "lando": 28514,
+ "stelling": 28515,
+ "Sem": 28516,
+ "gon": 28517,
+ "▁Correct": 28518,
+ "▁valle": 28519,
+ "▁readily": 28520,
+ "▁Dokument": 28521,
+ "honneur": 28522,
+ "▁testim": 28523,
+ "ulative": 28524,
+ "doFilter": 28525,
+ "▁dominant": 28526,
+ "ammer": 28527,
+ "▁која": 28528,
+ "▁Monsieur": 28529,
+ "zeg": 28530,
+ "▁війни": 28531,
+ "▁Fo": 28532,
+ "▁Amy": 28533,
+ "▁¡": 28534,
+ "▁február": 28535,
+ "▁downloading": 28536,
+ "▁leng": 28537,
+ "\\}$,": 28538,
+ "▁neat": 28539,
+ "▁Cache": 28540,
+ "ICATION": 28541,
+ "▁deve": 28542,
+ "▁sorrow": 28543,
+ "slow": 28544,
+ "▁hinaus": 28545,
+ "▁reconoc": 28546,
+ "▁Linked": 28547,
+ "▁Shaw": 28548,
+ "market": 28549,
+ "▁Dic": 28550,
+ "▁Ski": 28551,
+ "▁delimiter": 28552,
+ "▁MainActivity": 28553,
+ "▁Musical": 28554,
+ "▁Reyn": 28555,
+ "ScrollView": 28556,
+ "▁conventional": 28557,
+ "ença": 28558,
+ "▁refactor": 28559,
+ "'-": 28560,
+ "▁Hed": 28561,
+ "sprech": 28562,
+ "▁athlet": 28563,
+ "▁especies": 28564,
+ "▁Schön": 28565,
+ "▁kleinen": 28566,
+ "шко": 28567,
+ "▁Йо": 28568,
+ "▁Happy": 28569,
+ "multirow": 28570,
+ "▁augusti": 28571,
+ "▁Gand": 28572,
+ "▁appointment": 28573,
+ "▁Mediabestanden": 28574,
+ "Three": 28575,
+ "▁Kenneth": 28576,
+ "NEW": 28577,
+ "▁Notification": 28578,
+ "▁Marx": 28579,
+ "▁insc": 28580,
+ "Mor": 28581,
+ "вый": 28582,
+ "väst": 28583,
+ "vidia": 28584,
+ "▁demonstrated": 28585,
+ "fonts": 28586,
+ "▁kamen": 28587,
+ "▁Ster": 28588,
+ "▁mieszkańców": 28589,
+ "▁Koh": 28590,
+ "~$\\": 28591,
+ "»).": 28592,
+ "rene": 28593,
+ "insic": 28594,
+ "ická": 28595,
+ "xygen": 28596,
+ "▁mn": 28597,
+ "▁sched": 28598,
+ "ASC": 28599,
+ "Ig": 28600,
+ "▁Constant": 28601,
+ "▁opportun": 28602,
+ "▁MyClass": 28603,
+ "sef": 28604,
+ "oped": 28605,
+ "▁injured": 28606,
+ "VIS": 28607,
+ "▁Pero": 28608,
+ "▁Until": 28609,
+ "▁flesh": 28610,
+ "orphism": 28611,
+ "▁Portal": 28612,
+ "▁gminy": 28613,
+ "▁власти": 28614,
+ "▁Nä": 28615,
+ "ктиче": 28616,
+ "▁hrab": 28617,
+ "▁Cub": 28618,
+ "avoir": 28619,
+ "▁Lars": 28620,
+ "▁Бело": 28621,
+ "▁seizoen": 28622,
+ "▁Genomsnitt": 28623,
+ "▁Lil": 28624,
+ "▁Pool": 28625,
+ "▁Dios": 28626,
+ "TX": 28627,
+ "aes": 28628,
+ "autore": 28629,
+ "Alpha": 28630,
+ "states": 28631,
+ "Lab": 28632,
+ "nederbörd": 28633,
+ "erton": 28634,
+ "▁brid": 28635,
+ "▁richt": 28636,
+ "▁Ela": 28637,
+ "▁сла": 28638,
+ "▁weapon": 28639,
+ "▁combatt": 28640,
+ "agar": 28641,
+ "▁regnig": 28642,
+ "▁utilisé": 28643,
+ "▁servir": 28644,
+ "▁brick": 28645,
+ "▁gateway": 28646,
+ "▁torraste": 28647,
+ "▁procedures": 28648,
+ "▁årsnederbörd": 28649,
+ "▁Genomsnittlig": 28650,
+ "чёт": 28651,
+ "▁områ": 28652,
+ "▁regnigaste": 28653,
+ "▁честь": 28654,
+ "▁amid": 28655,
+ "▁grateful": 28656,
+ "▁DIS": 28657,
+ "DAY": 28658,
+ "▁ору": 28659,
+ "▁rivière": 28660,
+ "heure": 28661,
+ "▁Richmond": 28662,
+ "▁Compar": 28663,
+ "▁Нор": 28664,
+ "DOC": 28665,
+ "esia": 28666,
+ "calc": 28667,
+ "▁IU": 28668,
+ "▁vorg": 28669,
+ "▁habían": 28670,
+ "çoit": 28671,
+ "▁arist": 28672,
+ "▁кли": 28673,
+ "▁Sue": 28674,
+ "▁Touch": 28675,
+ "▁Writing": 28676,
+ "ifiable": 28677,
+ "▁wc": 28678,
+ "▁withdraw": 28679,
+ "зар": 28680,
+ "▁presently": 28681,
+ "▁FK": 28682,
+ "▁prakt": 28683,
+ "▁colored": 28684,
+ "usb": 28685,
+ "▁Perú": 28686,
+ "▁plata": 28687,
+ "▁wishes": 28688,
+ "▁кам": 28689,
+ "azar": 28690,
+ "ável": 28691,
+ "▁lamp": 28692,
+ "bishop": 28693,
+ "▁inclusion": 28694,
+ "jq": 28695,
+ "arth": 28696,
+ "▁Flag": 28697,
+ "▁нор": 28698,
+ "ædia": 28699,
+ "UNCTION": 28700,
+ "▁Bahnhof": 28701,
+ "▁approaching": 28702,
+ "▁Gött": 28703,
+ "▁cube": 28704,
+ "▁argued": 28705,
+ "▁Things": 28706,
+ "Gui": 28707,
+ "дови": 28708,
+ "▁recre": 28709,
+ "▁réseau": 28710,
+ "▁significa": 28711,
+ "Git": 28712,
+ "gebracht": 28713,
+ "▁liga": 28714,
+ "▁assured": 28715,
+ "alus": 28716,
+ "рит": 28717,
+ "▁энциклопеди": 28718,
+ "▁%).": 28719,
+ "▁Première": 28720,
+ "▁declarations": 28721,
+ "▁tricky": 28722,
+ "▁profiles": 28723,
+ "▁Fon": 28724,
+ "▁Jas": 28725,
+ "âr": 28726,
+ "babel": 28727,
+ "▁Friday": 28728,
+ "▁június": 28729,
+ "▁cols": 28730,
+ "▁EXISTS": 28731,
+ "▁Italiana": 28732,
+ "▁authorization": 28733,
+ "▁sulle": 28734,
+ "▁Emb": 28735,
+ "▁Variable": 28736,
+ "trees": 28737,
+ "▁Fly": 28738,
+ "riors": 28739,
+ "▁damals": 28740,
+ "▁findet": 28741,
+ "▁Sept": 28742,
+ "▁mundial": 28743,
+ "▁removal": 28744,
+ "▁longitude": 28745,
+ "clic": 28746,
+ "▁fade": 28747,
+ "▁gradle": 28748,
+ "▁zák": 28749,
+ "▁timing": 28750,
+ "trightarrow": 28751,
+ "atia": 28752,
+ "-.": 28753,
+ "uche": 28754,
+ "▁serialize": 28755,
+ "▁Hmm": 28756,
+ "▁Representatives": 28757,
+ "bah": 28758,
+ "rend": 28759,
+ "assador": 28760,
+ "▁shield": 28761,
+ "ucion": 28762,
+ "▁américaine": 28763,
+ "zę": 28764,
+ "villa": 28765,
+ "▁hombre": 28766,
+ "áss": 28767,
+ "▁SF": 28768,
+ "▁repeating": 28769,
+ "▁criter": 28770,
+ "▁Struct": 28771,
+ "???": 28772,
+ "▁cheap": 28773,
+ "▁rings": 28774,
+ "abhäng": 28775,
+ "▁corte": 28776,
+ "▁administ": 28777,
+ "ixon": 28778,
+ "gypt": 28779,
+ "▁puntos": 28780,
+ "▁mezi": 28781,
+ "▁pochod": 28782,
+ "isko": 28783,
+ "nię": 28784,
+ "▁осу": 28785,
+ "▁ár": 28786,
+ "тельной": 28787,
+ "▁Metropolitan": 28788,
+ "jin": 28789,
+ "zess": 28790,
+ "▁віці": 28791,
+ "▁conflicts": 28792,
+ "ijst": 28793,
+ "▁Market": 28794,
+ "стров": 28795,
+ "▁\",\"": 28796,
+ "▁Scroll": 28797,
+ "gun": 28798,
+ "тара": 28799,
+ "▁amateur": 28800,
+ "▁róż": 28801,
+ "poss": 28802,
+ "▁generalized": 28803,
+ "▁Harm": 28804,
+ "cita": 28805,
+ "▁Switzerland": 28806,
+ "icola": 28807,
+ "▁muit": 28808,
+ "located": 28809,
+ "▁có": 28810,
+ "▁arose": 28811,
+ "▁communauté": 28812,
+ "})^": 28813,
+ "visibility": 28814,
+ "ída": 28815,
+ "▁FB": 28816,
+ "▁Freund": 28817,
+ "gat": 28818,
+ "\":{\"": 28819,
+ "intellij": 28820,
+ "ifie": 28821,
+ "hmen": 28822,
+ "▁édition": 28823,
+ "▁које": 28824,
+ "▁інших": 28825,
+ "oming": 28826,
+ "▁arquitect": 28827,
+ "▁Presidente": 28828,
+ "▁Під": 28829,
+ "▁cabin": 28830,
+ "Theorem": 28831,
+ "▁Gay": 28832,
+ "ifice": 28833,
+ "▁hect": 28834,
+ "lą": 28835,
+ "irmingham": 28836,
+ "▁semantic": 28837,
+ "▁Louisiana": 28838,
+ "▁sacrifice": 28839,
+ "▁Christoph": 28840,
+ "▁Executive": 28841,
+ "_+": 28842,
+ "ják": 28843,
+ "▁seria": 28844,
+ "▁Overflow": 28845,
+ "▁Lucy": 28846,
+ "▁melhor": 28847,
+ "▁voices": 28848,
+ "cza": 28849,
+ "▁капи": 28850,
+ "▁университета": 28851,
+ "INCT": 28852,
+ "▁coloc": 28853,
+ "▁prue": 28854,
+ "▁geomet": 28855,
+ "▁diretto": 28856,
+ "reso": 28857,
+ "▁Akt": 28858,
+ "▁unh": 28859,
+ "▁сери": 28860,
+ "▁Alert": 28861,
+ "Wel": 28862,
+ "audi": 28863,
+ "äler": 28864,
+ "▁guests": 28865,
+ "▁иде": 28866,
+ "Studio": 28867,
+ "▁кате": 28868,
+ "▁exponent": 28869,
+ "rze": 28870,
+ "pmod": 28871,
+ "rolle": 28872,
+ "▁Limited": 28873,
+ "Allemagne": 28874,
+ "▁pity": 28875,
+ "▁lä": 28876,
+ "▁runner": 28877,
+ "kende": 28878,
+ "EQ": 28879,
+ "▁MM": 28880,
+ "szág": 28881,
+ "поді": 28882,
+ "▁regret": 28883,
+ "▁publié": 28884,
+ "▁departamento": 28885,
+ "▁accused": 28886,
+ "hp": 28887,
+ "▁Pfl": 28888,
+ "▁Sint": 28889,
+ "▁ekonom": 28890,
+ "ractor": 28891,
+ "▁Пів": 28892,
+ "▁awful": 28893,
+ "ować": 28894,
+ "]->": 28895,
+ "▁Fine": 28896,
+ "Са": 28897,
+ "tis": 28898,
+ "éta": 28899,
+ "▁Роди": 28900,
+ "▁Düsseldorf": 28901,
+ "LOB": 28902,
+ "osas": 28903,
+ "werke": 28904,
+ "▁lance": 28905,
+ "▁листопада": 28906,
+ "▁incomplete": 28907,
+ "▁Picture": 28908,
+ "('\\": 28909,
+ "esters": 28910,
+ "▁belonged": 28911,
+ "▁Sank": 28912,
+ "ammed": 28913,
+ "▁repositories": 28914,
+ "▁addr": 28915,
+ "Collect": 28916,
+ "Hot": 28917,
+ "▁tyl": 28918,
+ "▁instanceof": 28919,
+ "▁bonus": 28920,
+ "ový": 28921,
+ "▁моря": 28922,
+ "▁interactive": 28923,
+ "▁Mys": 28924,
+ "▁Edmund": 28925,
+ "fileName": 28926,
+ "emor": 28927,
+ "▁Три": 28928,
+ "▁Rosen": 28929,
+ "▁Prima": 28930,
+ "▁voting": 28931,
+ "▁XP": 28932,
+ "▁Zero": 28933,
+ "▁Led": 28934,
+ "amsung": 28935,
+ "▁enables": 28936,
+ "▁redirects": 28937,
+ "AST": 28938,
+ "Paint": 28939,
+ "acker": 28940,
+ "lecht": 28941,
+ "▁chairman": 28942,
+ "▁Aven": 28943,
+ "▁Sach": 28944,
+ "(\"<": 28945,
+ "кер": 28946,
+ "▁mistakes": 28947,
+ "▁Weit": 28948,
+ "▁prowad": 28949,
+ "▁didnt": 28950,
+ "énario": 28951,
+ "unless": 28952,
+ "▁backwards": 28953,
+ "boa": 28954,
+ "duino": 28955,
+ "```": 28956,
+ "stor": 28957,
+ "Completion": 28958,
+ "puesta": 28959,
+ "▁dinast": 28960,
+ "últ": 28961,
+ "▁SY": 28962,
+ "ifolia": 28963,
+ "œuvres": 28964,
+ "▁racing": 28965,
+ "▁cabinet": 28966,
+ "▁cutting": 28967,
+ "▁thumb": 28968,
+ "▁Кара": 28969,
+ "highlight": 28970,
+ "куп": 28971,
+ "▁sd": 28972,
+ "▁національ": 28973,
+ "▁campagne": 28974,
+ "▁registers": 28975,
+ "▁educational": 28976,
+ "▁pesar": 28977,
+ "üge": 28978,
+ "▁oro": 28979,
+ "burgo": 28980,
+ "▁Athletics": 28981,
+ "▁MTV": 28982,
+ "getMessage": 28983,
+ "▁Hyp": 28984,
+ "▁victim": 28985,
+ "))\\": 28986,
+ "▁drums": 28987,
+ "hostname": 28988,
+ "tał": 28989,
+ "making": 28990,
+ "▁powiat": 28991,
+ "őd": 28992,
+ "threads": 28993,
+ "▁absolv": 28994,
+ "▁люди": 28995,
+ "▁stepped": 28996,
+ "exist": 28997,
+ "▁NK": 28998,
+ "▁ves": 28999,
+ "istiche": 29000,
+ "%'": 29001,
+ "ativos": 29002,
+ "▁такой": 29003,
+ "▁MongoDB": 29004,
+ "▁Ung": 29005,
+ "▁Рус": 29006,
+ "▁elim": 29007,
+ "▁Fif": 29008,
+ "icación": 29009,
+ "▁Tennis": 29010,
+ "▁Jefferson": 29011,
+ "ján": 29012,
+ "fog": 29013,
+ "anha": 29014,
+ "zor": 29015,
+ "▁університе": 29016,
+ "ahu": 29017,
+ "iada": 29018,
+ "Sdk": 29019,
+ "Setting": 29020,
+ "▁Kill": 29021,
+ "▁Wend": 29022,
+ "▁bald": 29023,
+ "▁Kub": 29024,
+ "▁visto": 29025,
+ "▁jeunes": 29026,
+ "collections": 29027,
+ "ací": 29028,
+ "вропей": 29029,
+ "▁arise": 29030,
+ "оні": 29031,
+ "MAIN": 29032,
+ "доступ": 29033,
+ "▁berg": 29034,
+ "▁criticism": 29035,
+ "▁Torre": 29036,
+ "▁descript": 29037,
+ "ières": 29038,
+ "▁estudio": 29039,
+ "▁ili": 29040,
+ "▁militare": 29041,
+ "▁Clara": 29042,
+ "▁Ellen": 29043,
+ "limited": 29044,
+ "лм": 29045,
+ "▁Españ": 29046,
+ "▁infinitely": 29047,
+ "America": 29048,
+ "ouc": 29049,
+ "glass": 29050,
+ "▁rud": 29051,
+ "▁zat": 29052,
+ "▁rin": 29053,
+ "▁Bibliografía": 29054,
+ "▁merchant": 29055,
+ "tensorflow": 29056,
+ "▁dér": 29057,
+ "▁ActiveRecord": 29058,
+ "IES": 29059,
+ "▁linker": 29060,
+ "▁estudios": 29061,
+ "cdnjs": 29062,
+ "▁Государ": 29063,
+ "ánchez": 29064,
+ "appe": 29065,
+ "club": 29066,
+ "▁další": 29067,
+ "▁Algorithm": 29068,
+ "dfs": 29069,
+ "▁Bac": 29070,
+ "▁кафе": 29071,
+ "▁&=\\": 29072,
+ "▁ат": 29073,
+ "▁Глав": 29074,
+ "▁Mou": 29075,
+ "Machine": 29076,
+ "(...)": 29077,
+ "▁compart": 29078,
+ "▁augusztus": 29079,
+ "avan": 29080,
+ "▁rolled": 29081,
+ "▁еди": 29082,
+ "Scan": 29083,
+ "▁регі": 29084,
+ "▁świata": 29085,
+ "▁mines": 29086,
+ "},{": 29087,
+ "▁Tier": 29088,
+ "Cannot": 29089,
+ "мін": 29090,
+ "▁NEW": 29091,
+ "▁Вол": 29092,
+ "▁Manh": 29093,
+ "▁Gregory": 29094,
+ "▁principe": 29095,
+ "ISO": 29096,
+ "prog": 29097,
+ "▁Fail": 29098,
+ "▁aa": 29099,
+ "▁fecha": 29100,
+ "▁WCF": 29101,
+ "▁magistr": 29102,
+ "▁Zach": 29103,
+ "▁unicode": 29104,
+ "▁converter": 29105,
+ "▁dispers": 29106,
+ "ksam": 29107,
+ "▁Uncle": 29108,
+ "PropertyChanged": 29109,
+ "▁lider": 29110,
+ "▁opts": 29111,
+ "▁там": 29112,
+ "locked": 29113,
+ "zak": 29114,
+ "▁counted": 29115,
+ "▁persone": 29116,
+ "▁hurried": 29117,
+ "ätter": 29118,
+ "▁outras": 29119,
+ "▁genu": 29120,
+ "BD": 29121,
+ "veg": 29122,
+ "due": 29123,
+ "▁Pract": 29124,
+ "▁posible": 29125,
+ "▁contribute": 29126,
+ "UMN": 29127,
+ "▁Bürger": 29128,
+ "▁wars": 29129,
+ "▁exhibition": 29130,
+ "hill": 29131,
+ "▁astr": 29132,
+ "▁музе": 29133,
+ "▁CASE": 29134,
+ "manifest": 29135,
+ "yellow": 29136,
+ "Fn": 29137,
+ "▁RC": 29138,
+ "▁sott": 29139,
+ "▁sujet": 29140,
+ "▁Socket": 29141,
+ "▁Chine": 29142,
+ "▁frameworks": 29143,
+ "Hold": 29144,
+ "êts": 29145,
+ "▁філь": 29146,
+ "Loaded": 29147,
+ "ophe": 29148,
+ "texte": 29149,
+ "▁expres": 29150,
+ "▁consume": 29151,
+ "▁Richtung": 29152,
+ "ografi": 29153,
+ "▁magnific": 29154,
+ "àt": 29155,
+ "▁indul": 29156,
+ "ryty": 29157,
+ "▁offici": 29158,
+ "▁assault": 29159,
+ "rund": 29160,
+ "▁variants": 29161,
+ "▁сельсов": 29162,
+ "▁excitement": 29163,
+ "Times": 29164,
+ "kotlin": 29165,
+ "▁gering": 29166,
+ "▁Engel": 29167,
+ "▁Timer": 29168,
+ "²).": 29169,
+ "▁Ng": 29170,
+ "ässt": 29171,
+ "schau": 29172,
+ "SError": 29173,
+ "▁Edwards": 29174,
+ "▁Terminal": 29175,
+ "lict": 29176,
+ "Under": 29177,
+ "▁spawn": 29178,
+ "ürgen": 29179,
+ "▁Außerdem": 29180,
+ "▁kitchen": 29181,
+ "fahrt": 29182,
+ "▁Colors": 29183,
+ "▁система": 29184,
+ "▁terminated": 29185,
+ "▁LaTeX": 29186,
+ "igkeiten": 29187,
+ "▁mesure": 29188,
+ "▁Amts": 29189,
+ "▁empir": 29190,
+ "▁striking": 29191,
+ "▁exclusive": 29192,
+ "тех": 29193,
+ "▁rez": 29194,
+ "▁quan": 29195,
+ "▁Glasgow": 29196,
+ "▁lecture": 29197,
+ "▁Testament": 29198,
+ "▁funds": 29199,
+ "▁stessa": 29200,
+ "▁tribes": 29201,
+ "▁parfois": 29202,
+ "▁treball": 29203,
+ "nitz": 29204,
+ "bove": 29205,
+ "▁заслу": 29206,
+ "▁absent": 29207,
+ "▁Lauf": 29208,
+ "Smith": 29209,
+ "▁Николай": 29210,
+ "▁européenne": 29211,
+ "lr": 29212,
+ "▁programma": 29213,
+ "▁midst": 29214,
+ "▁daughters": 29215,
+ "Syn": 29216,
+ "oben": 29217,
+ "ână": 29218,
+ "idan": 29219,
+ "▁ther": 29220,
+ "odore": 29221,
+ "sdl": 29222,
+ "▁Quint": 29223,
+ "▁casos": 29224,
+ "▁Zam": 29225,
+ "▁страны": 29226,
+ "▁sprite": 29227,
+ "кал": 29228,
+ "▁nasc": 29229,
+ "▁сотруд": 29230,
+ "▁trava": 29231,
+ "▁хозяй": 29232,
+ "▁Uruguay": 29233,
+ "▁sparse": 29234,
+ "▁поле": 29235,
+ "▁mystery": 29236,
+ "▁Mang": 29237,
+ "registr": 29238,
+ "▁CGFloat": 29239,
+ "▁submission": 29240,
+ "вана": 29241,
+ "▁\":": 29242,
+ "▁Traceback": 29243,
+ "▁Pit": 29244,
+ "▁Ehr": 29245,
+ "▁сра": 29246,
+ "▁Graphics": 29247,
+ "Updated": 29248,
+ "▁svensk": 29249,
+ "▁spacing": 29250,
+ "tritt": 29251,
+ "▁Guinea": 29252,
+ "▁França": 29253,
+ "Associ": 29254,
+ "▁Tová": 29255,
+ "stab": 29256,
+ "▁Learning": 29257,
+ "▁Bright": 29258,
+ "śc": 29259,
+ "▁idő": 29260,
+ "}}_{\\": 29261,
+ "▁droite": 29262,
+ "▁raising": 29263,
+ "getting": 29264,
+ "ythm": 29265,
+ "onyme": 29266,
+ "żs": 29267,
+ "▁blah": 29268,
+ "TagName": 29269,
+ "Vertical": 29270,
+ "▁aper": 29271,
+ "postgresql": 29272,
+ "▁Handle": 29273,
+ "zew": 29274,
+ "▁skulle": 29275,
+ "▁opere": 29276,
+ "layers": 29277,
+ "▁possono": 29278,
+ "▁relate": 29279,
+ "ąc": 29280,
+ "▁Mih": 29281,
+ "âge": 29282,
+ "▁Świ": 29283,
+ "isses": 29284,
+ "▁servlet": 29285,
+ "Los": 29286,
+ "▁Advanced": 29287,
+ "atica": 29288,
+ "▁ced": 29289,
+ "▁elementos": 29290,
+ "рона": 29291,
+ "iks": 29292,
+ "arf": 29293,
+ "ariat": 29294,
+ "Mobile": 29295,
+ "agua": 29296,
+ "▁timp": 29297,
+ "▁Comité": 29298,
+ "▁combining": 29299,
+ "wohl": 29300,
+ "▁Study": 29301,
+ "coordinate": 29302,
+ "▁recommendation": 29303,
+ "▁transformations": 29304,
+ "until": 29305,
+ "bounded": 29306,
+ "▁изу": 29307,
+ "hanced": 29308,
+ "▁вопро": 29309,
+ "▁Prés": 29310,
+ "▁coord": 29311,
+ "xty": 29312,
+ "▁$,": 29313,
+ "▁champions": 29314,
+ "Den": 29315,
+ "Mil": 29316,
+ "(',": 29317,
+ "▁Preis": 29318,
+ "▁eigh": 29319,
+ "▁markers": 29320,
+ "▁gewesen": 29321,
+ "ätten": 29322,
+ "▁pione": 29323,
+ "mv": 29324,
+ "▁ју": 29325,
+ "zeichnis": 29326,
+ "hoff": 29327,
+ "News": 29328,
+ "▁Stanisław": 29329,
+ "▁Brandenburg": 29330,
+ "▁Feuer": 29331,
+ "=&": 29332,
+ "жет": 29333,
+ "▁Neil": 29334,
+ "▁wirk": 29335,
+ "▁società": 29336,
+ "▁spare": 29337,
+ "▁civile": 29338,
+ "sprach": 29339,
+ "▁disse": 29340,
+ "▁gates": 29341,
+ "▁anom": 29342,
+ "▁Федерации": 29343,
+ "▁tib": 29344,
+ "▁fútbol": 29345,
+ "▁Wikiped": 29346,
+ "iate": 29347,
+ "Front": 29348,
+ "▁craw": 29349,
+ "▁Rak": 29350,
+ "▁зву": 29351,
+ "street": 29352,
+ "▁Agency": 29353,
+ "вало": 29354,
+ "▁Рас": 29355,
+ "▁mkdir": 29356,
+ "ację": 29357,
+ "▁shares": 29358,
+ "Story": 29359,
+ "▁remarks": 29360,
+ "▁keywords": 29361,
+ "Bob": 29362,
+ "▁toe": 29363,
+ "▁Vitt": 29364,
+ "▁rhs": 29365,
+ "ROP": 29366,
+ "oris": 29367,
+ "/@": 29368,
+ "сии": 29369,
+ "▁traverse": 29370,
+ "▁referencing": 29371,
+ "präsident": 29372,
+ "rong": 29373,
+ "'):": 29374,
+ "aties": 29375,
+ "AW": 29376,
+ "Outlet": 29377,
+ "▁évol": 29378,
+ "ikes": 29379,
+ "▁environmental": 29380,
+ "icum": 29381,
+ "▁Lied": 29382,
+ "▁warn": 29383,
+ "▁Butler": 29384,
+ "▁%),": 29385,
+ "▁Zeitschrift": 29386,
+ "▁Montr": 29387,
+ "важа": 29388,
+ "▁Mercur": 29389,
+ "jekte": 29390,
+ "meter": 29391,
+ "ducation": 29392,
+ "▁attributed": 29393,
+ "*$": 29394,
+ "▁unf": 29395,
+ "▁Vertrag": 29396,
+ "zien": 29397,
+ "▁Роб": 29398,
+ "lices": 29399,
+ "pply": 29400,
+ "ansen": 29401,
+ "▁zeit": 29402,
+ "▁immense": 29403,
+ "▁lutego": 29404,
+ "▁Bulgar": 29405,
+ "▁miembros": 29406,
+ "▁Националь": 29407,
+ "▁Allow": 29408,
+ "▁anglès": 29409,
+ "дви": 29410,
+ "▁Toy": 29411,
+ "туа": 29412,
+ "▁yard": 29413,
+ "(%": 29414,
+ "isser": 29415,
+ "▁golf": 29416,
+ "▁Ukrain": 29417,
+ "▁hosp": 29418,
+ "Include": 29419,
+ "▁Lisa": 29420,
+ "▁csal": 29421,
+ "▁Mira": 29422,
+ "recogn": 29423,
+ "▁Ке": 29424,
+ "▁hitting": 29425,
+ "кономі": 29426,
+ "▁Tournament": 29427,
+ "LOAD": 29428,
+ "▁Guardian": 29429,
+ "▁daher": 29430,
+ "▁timezone": 29431,
+ "▁tomcat": 29432,
+ "▁successor": 29433,
+ "▁Void": 29434,
+ "▁começ": 29435,
+ "▁converts": 29436,
+ "ächs": 29437,
+ "osex": 29438,
+ "xelles": 29439,
+ "aser": 29440,
+ "▁És": 29441,
+ "▁mou": 29442,
+ "▁ung": 29443,
+ "▁origen": 29444,
+ "▁Crow": 29445,
+ "▁Erd": 29446,
+ "▁sieben": 29447,
+ "lua": 29448,
+ "▁BB": 29449,
+ "RENT": 29450,
+ "▁piłkar": 29451,
+ "▁marque": 29452,
+ "▁Labour": 29453,
+ "viders": 29454,
+ "▁exempl": 29455,
+ "Sound": 29456,
+ "▁Wass": 29457,
+ "arrison": 29458,
+ "▁течение": 29459,
+ "▁Oficina": 29460,
+ "▁Daw": 29461,
+ "▁Kauf": 29462,
+ "ént": 29463,
+ "éső": 29464,
+ "▁=\"": 29465,
+ "▁kat": 29466,
+ "diction": 29467,
+ "▁Voll": 29468,
+ "▁highway": 29469,
+ "James": 29470,
+ "zeuge": 29471,
+ "▁modelo": 29472,
+ "Throw": 29473,
+ "▁Forum": 29474,
+ "(\"@": 29475,
+ "▁enfer": 29476,
+ "▁специаль": 29477,
+ "Numbers": 29478,
+ "▁Binary": 29479,
+ "▁Martínez": 29480,
+ "▁Stato": 29481,
+ "▁festiv": 29482,
+ "▁katol": 29483,
+ "▁Аб": 29484,
+ "▁limitation": 29485,
+ "▁STR": 29486,
+ "▁Официаль": 29487,
+ "ipes": 29488,
+ "▁Isn": 29489,
+ "▁ruled": 29490,
+ "▁cí": 29491,
+ "geber": 29492,
+ "▁lavoro": 29493,
+ "▁parentheses": 29494,
+ "оз": 29495,
+ "▁équipes": 29496,
+ "▁efficiently": 29497,
+ "▁Period": 29498,
+ "▁Regarding": 29499,
+ "leaf": 29500,
+ "▁similarity": 29501,
+ "▁gesture": 29502,
+ "datab": 29503,
+ "▁terminate": 29504,
+ "▁semantics": 29505,
+ "▁Alo": 29506,
+ "▁cig": 29507,
+ "▁OpenGL": 29508,
+ "▁heutigen": 29509,
+ "xaml": 29510,
+ "▁frequencies": 29511,
+ ")}.": 29512,
+ "▁threatened": 29513,
+ "тик": 29514,
+ "▁calcio": 29515,
+ "▁Riemann": 29516,
+ "slug": 29517,
+ "▁Finale": 29518,
+ "LR": 29519,
+ "▁Derby": 29520,
+ "▁още": 29521,
+ "▁deviation": 29522,
+ "ächen": 29523,
+ "▁Cris": 29524,
+ "ново": 29525,
+ "▁столі": 29526,
+ "▁relev": 29527,
+ "▁splendid": 29528,
+ "▁учё": 29529,
+ "erving": 29530,
+ "gable": 29531,
+ "▁générale": 29532,
+ "pom": 29533,
+ "▁Cheers": 29534,
+ "▁imprison": 29535,
+ "▁indent": 29536,
+ "▁analyz": 29537,
+ "▁revert": 29538,
+ "érer": 29539,
+ "▁phases": 29540,
+ "FirstName": 29541,
+ "▁mig": 29542,
+ "▁disturb": 29543,
+ "▁mixture": 29544,
+ "▁){": 29545,
+ "inture": 29546,
+ "▁Tried": 29547,
+ "▁sooner": 29548,
+ "▁pels": 29549,
+ "▁établ": 29550,
+ "etro": 29551,
+ "itie": 29552,
+ "▁quartier": 29553,
+ "▁гово": 29554,
+ "▁város": 29555,
+ "ufe": 29556,
+ "heten": 29557,
+ "хом": 29558,
+ "▁soap": 29559,
+ "utors": 29560,
+ "▁duch": 29561,
+ "syntax": 29562,
+ "▁tribe": 29563,
+ "▁chante": 29564,
+ "Tri": 29565,
+ "▁Mate": 29566,
+ "quality": 29567,
+ "uola": 29568,
+ "=\".": 29569,
+ "chk": 29570,
+ "▁всі": 29571,
+ "▁przeci": 29572,
+ "▁Meteor": 29573,
+ "▁scattered": 29574,
+ "Plus": 29575,
+ "trad": 29576,
+ "▁stackoverflow": 29577,
+ "▁retra": 29578,
+ "▁éditions": 29579,
+ "▁sain": 29580,
+ "cribe": 29581,
+ "ignon": 29582,
+ "ucker": 29583,
+ "▁мало": 29584,
+ "▁tenir": 29585,
+ "▁exports": 29586,
+ "▁auxili": 29587,
+ "▁]]": 29588,
+ "▁CBS": 29589,
+ "uniform": 29590,
+ "▁periodic": 29591,
+ "agrant": 29592,
+ "▁emple": 29593,
+ "Wil": 29594,
+ "▁fres": 29595,
+ "▁strutt": 29596,
+ "▁світ": 29597,
+ "▁betre": 29598,
+ "▁объек": 29599,
+ "тися": 29600,
+ "▁bisher": 29601,
+ "baum": 29602,
+ "ishi": 29603,
+ "▁Gazette": 29604,
+ "backgroundColor": 29605,
+ "jl": 29606,
+ "▁fiel": 29607,
+ "▁према": 29608,
+ "▁protagonista": 29609,
+ "▁Muhammad": 29610,
+ "▁simulate": 29611,
+ "▁Hook": 29612,
+ "fest": 29613,
+ "▁своих": 29614,
+ "Sender": 29615,
+ "▁listened": 29616,
+ "жі": 29617,
+ "jest": 29618,
+ "kord": 29619,
+ "Choice": 29620,
+ "▁hoofd": 29621,
+ "reducible": 29622,
+ "hpp": 29623,
+ "▁Wu": 29624,
+ "ši": 29625,
+ "▁Marse": 29626,
+ "▁soir": 29627,
+ "westen": 29628,
+ "emos": 29629,
+ "▁Duc": 29630,
+ "▁amerik": 29631,
+ "|}{": 29632,
+ "▁Gul": 29633,
+ "▁Sprache": 29634,
+ "▁mismatch": 29635,
+ "Scal": 29636,
+ "Pixel": 29637,
+ "EF": 29638,
+ "▁Sep": 29639,
+ "▁powiecie": 29640,
+ "urk": 29641,
+ "▁Napoli": 29642,
+ "▁neighbourhood": 29643,
+ "стоян": 29644,
+ "▁searches": 29645,
+ "yrus": 29646,
+ "пет": 29647,
+ "Help": 29648,
+ "pont": 29649,
+ "▁Orient": 29650,
+ "▁Alfonso": 29651,
+ "▁monitoring": 29652,
+ "iao": 29653,
+ "édé": 29654,
+ "▁César": 29655,
+ "шее": 29656,
+ "Shift": 29657,
+ "suit": 29658,
+ "coded": 29659,
+ "ното": 29660,
+ "▁Parti": 29661,
+ "▁lasci": 29662,
+ "▁awesome": 29663,
+ "usta": 29664,
+ "▁Сове": 29665,
+ "▁Fland": 29666,
+ "oom": 29667,
+ "▁devi": 29668,
+ "engelsk": 29669,
+ "endum": 29670,
+ "▁Pascal": 29671,
+ "▁Bind": 29672,
+ "▁siguientes": 29673,
+ "JB": 29674,
+ "▁Petersburg": 29675,
+ "▁incorrectly": 29676,
+ "▁Bash": 29677,
+ "▁pelos": 29678,
+ "▁zespo": 29679,
+ "NSURL": 29680,
+ "▁přek": 29681,
+ "▁Crime": 29682,
+ "nach": 29683,
+ "▁thrust": 29684,
+ "▁Cultura": 29685,
+ "WF": 29686,
+ "▁Solo": 29687,
+ "▁invas": 29688,
+ "▁individually": 29689,
+ "ibm": 29690,
+ "▁etapa": 29691,
+ "▁handed": 29692,
+ "▁wherever": 29693,
+ "▁interpolation": 29694,
+ "▁musée": 29695,
+ "▁CNN": 29696,
+ "idia": 29697,
+ "ństw": 29698,
+ "▁przew": 29699,
+ "ughing": 29700,
+ "▁actors": 29701,
+ "▁Oriental": 29702,
+ "▁convenience": 29703,
+ "▁miasta": 29704,
+ "brains": 29705,
+ "▁меся": 29706,
+ "▁infatti": 29707,
+ "▁AllMovie": 29708,
+ "▁critique": 29709,
+ "▁successo": 29710,
+ "ancouver": 29711,
+ "▁fá": 29712,
+ "ългар": 29713,
+ "▁wisdom": 29714,
+ "▁Phoenix": 29715,
+ "hole": 29716,
+ "▁información": 29717,
+ "▁Airlines": 29718,
+ ".«": 29719,
+ "mort": 29720,
+ "userId": 29721,
+ "▁*/\r": 29722,
+ "▁Congo": 29723,
+ "▁\"`": 29724,
+ "corr": 29725,
+ "▁problemas": 29726,
+ "▁bib": 29727,
+ "▁później": 29728,
+ "▁fileName": 29729,
+ "zott": 29730,
+ "macht": 29731,
+ "▁Ulrich": 29732,
+ "Cy": 29733,
+ "endpoint": 29734,
+ "▁sheep": 29735,
+ "▁ibn": 29736,
+ "Feed": 29737,
+ "▁sympathy": 29738,
+ "▁Ib": 29739,
+ "▁territorial": 29740,
+ "rating": 29741,
+ "дами": 29742,
+ "▁dst": 29743,
+ "ую": 29744,
+ "aho": 29745,
+ "▁sug": 29746,
+ "emia": 29747,
+ "▁ted": 29748,
+ "▁Api": 29749,
+ "▁Rica": 29750,
+ "▁MR": 29751,
+ "ńskim": 29752,
+ "▁Voor": 29753,
+ "▁devil": 29754,
+ "▁Фо": 29755,
+ "▁När": 29756,
+ "▁...)": 29757,
+ "▁vois": 29758,
+ "▁abbre": 29759,
+ "▁Männer": 29760,
+ "ximo": 29761,
+ "▁intellectual": 29762,
+ "▁tales": 29763,
+ "similar": 29764,
+ "neum": 29765,
+ "▁Orig": 29766,
+ "▁postal": 29767,
+ "▁hvor": 29768,
+ "▁identification": 29769,
+ "▁Од": 29770,
+ "uesto": 29771,
+ "▁../": 29772,
+ "▁bir": 29773,
+ "▁Лон": 29774,
+ "▁esempio": 29775,
+ "▁Eing": 29776,
+ "Expand": 29777,
+ "▁PRIMARY": 29778,
+ "▁Jin": 29779,
+ "▁však": 29780,
+ "ourses": 29781,
+ "▁Betty": 29782,
+ "▁WM": 29783,
+ "▁flask": 29784,
+ "hlen": 29785,
+ "▁Adel": 29786,
+ "laravel": 29787,
+ "▁дет": 29788,
+ "ською": 29789,
+ "▁Mundo": 29790,
+ "iczn": 29791,
+ "ifié": 29792,
+ "▁Мор": 29793,
+ "▁древ": 29794,
+ "DateFormat": 29795,
+ "ським": 29796,
+ "▁dated": 29797,
+ "коли": 29798,
+ "▁результате": 29799,
+ "\\).": 29800,
+ "▁delayed": 29801,
+ "sound": 29802,
+ "▁Мак": 29803,
+ "▁\"...": 29804,
+ "▁binnen": 29805,
+ "▁факуль": 29806,
+ "▁polygon": 29807,
+ "▁eggs": 29808,
+ "AtIndexPath": 29809,
+ "менталь": 29810,
+ "▁incred": 29811,
+ "chunk": 29812,
+ "webdriver": 29813,
+ "▁свобо": 29814,
+ "▁między": 29815,
+ "Received": 29816,
+ "▁Monde": 29817,
+ "▁JQuery": 29818,
+ "Butt": 29819,
+ "▁PDO": 29820,
+ "▁forec": 29821,
+ "▁discipline": 29822,
+ "chev": 29823,
+ "нат": 29824,
+ "▁redis": 29825,
+ "▁hunting": 29826,
+ "▁alk": 29827,
+ "▁proofs": 29828,
+ "PRI": 29829,
+ "▁chip": 29830,
+ "ésie": 29831,
+ "▁HO": 29832,
+ "▁rug": 29833,
+ "zos": 29834,
+ "▁sorte": 29835,
+ "▁zeigt": 29836,
+ "▁Physics": 29837,
+ "legte": 29838,
+ "▁proportional": 29839,
+ "▁toolbar": 29840,
+ "vement": 29841,
+ "notin": 29842,
+ "▁první": 29843,
+ "blah": 29844,
+ "▁présence": 29845,
+ "▁lloc": 29846,
+ "▁líder": 29847,
+ "▁Accept": 29848,
+ "▁Always": 29849,
+ "▁\"{": 29850,
+ "▁diversi": 29851,
+ "ikor": 29852,
+ "Period": 29853,
+ "жён": 29854,
+ "▁Alliance": 29855,
+ "▁relay": 29856,
+ "Bro": 29857,
+ "jön": 29858,
+ "▁Baud": 29859,
+ "▁Bian": 29860,
+ "')[": 29861,
+ "чив": 29862,
+ "▁Poss": 29863,
+ "▁Mitglieder": 29864,
+ "▁nev": 29865,
+ "Daniel": 29866,
+ "▁tends": 29867,
+ "▁compagnie": 29868,
+ "▁livres": 29869,
+ "lub": 29870,
+ "▁": 29871,
+ "e": 29872,
+ "t": 29873,
+ "a": 29874,
+ "i": 29875,
+ "n": 29876,
+ "o": 29877,
+ "r": 29878,
+ "s": 29879,
+ "l": 29880,
+ "d": 29881,
+ "h": 29882,
+ "c": 29883,
+ "u": 29884,
+ "m": 29885,
+ "p": 29886,
+ "g": 29887,
+ "f": 29888,
+ ".": 29889,
+ "b": 29890,
+ "y": 29891,
+ ",": 29892,
+ "w": 29893,
+ "v": 29894,
+ "k": 29895,
+ "1": 29896,
+ ")": 29897,
+ "(": 29898,
+ "-": 29899,
+ "0": 29900,
+ ":": 29901,
+ "I": 29902,
+ "S": 29903,
+ "о": 29904,
+ "\\": 29905,
+ "2": 29906,
+ "C": 29907,
+ "\"": 29908,
+ "A": 29909,
+ "а": 29910,
+ "T": 29911,
+ "{": 29912,
+ "}": 29913,
+ "/": 29914,
+ "'": 29915,
+ "x": 29916,
+ "и": 29917,
+ "_": 29918,
+ "е": 29919,
+ "z": 29920,
+ "н": 29921,
+ "=": 29922,
+ "E": 29923,
+ "M": 29924,
+ "P": 29925,
+ "j": 29926,
+ "р": 29927,
+ "D": 29928,
+ "9": 29929,
+ "*": 29930,
+ "L": 29931,
+ "т": 29932,
+ "B": 29933,
+ "R": 29934,
+ "с": 29935,
+ ";": 29936,
+ "#": 29937,
+ "$": 29938,
+ "q": 29939,
+ "N": 29940,
+ "3": 29941,
+ "в": 29942,
+ "F": 29943,
+ "л": 29944,
+ "5": 29945,
+ "4": 29946,
+ "8": 29947,
+ "é": 29948,
+ "O": 29949,
+ "H": 29950,
+ "к": 29951,
+ "`": 29952,
+ "6": 29953,
+ "G": 29954,
+ "7": 29955,
+ "W": 29956,
+ "д": 29957,
+ ">": 29958,
+ "м": 29959,
+ "у": 29960,
+ "[": 29961,
+ "]": 29962,
+ "V": 29963,
+ "п": 29964,
+ "U": 29965,
+ "<": 29966,
+ "J": 29967,
+ "K": 29968,
+ "г": 29969,
+ "я": 29970,
+ "і": 29971,
+ "з": 29972,
+ "?": 29973,
+ "+": 29974,
+ "б": 29975,
+ "á": 29976,
+ "й": 29977,
+ "ь": 29978,
+ "Y": 29979,
+ "ó": 29980,
+ "ч": 29981,
+ "ы": 29982,
+ "í": 29983,
+ "Q": 29984,
+ "^": 29985,
+ "ä": 29986,
+ "&": 29987,
+ "х": 29988,
+ "|": 29989,
+ "X": 29990,
+ "!": 29991,
+ "@": 29992,
+ "ü": 29993,
+ "–": 29994,
+ "%": 29995,
+ "ц": 29996,
+ "ö": 29997,
+ "ж": 29998,
+ "Z": 29999,
+ "è": 30000,
+ "à": 30001,
+ "ш": 30002,
+ "—": 30003,
+ "\r": 30004,
+ "ю": 30005,
+ "ł": 30006,
+ "»": 30007,
+ "С": 30008,
+ "«": 30009,
+ "’": 30010,
+ "ф": 30011,
+ "В": 30012,
+ "П": 30013,
+ "К": 30014,
+ "“": 30015,
+ "ј": 30016,
+ "М": 30017,
+ "А": 30018,
+ "ç": 30019,
+ "å": 30020,
+ "щ": 30021,
+ "~": 30022,
+ "ę": 30023,
+ "”": 30024,
+ "ą": 30025,
+ "č": 30026,
+ "Р": 30027,
+ "ї": 30028,
+ "Н": 30029,
+ "ú": 30030,
+ "Б": 30031,
+ "Д": 30032,
+ "ã": 30033,
+ "ß": 30034,
+ "ă": 30035,
+ "ě": 30036,
+ "ê": 30037,
+ "О": 30038,
+ "š": 30039,
+ "Г": 30040,
+ "Т": 30041,
+ "ż": 30042,
+ "ё": 30043,
+ "ž": 30044,
+ "ś": 30045,
+ "ñ": 30046,
+ "ř": 30047,
+ "ő": 30048,
+ "„": 30049,
+ "Л": 30050,
+ "э": 30051,
+ "ý": 30052,
+ "У": 30053,
+ "И": 30054,
+ "ъ": 30055,
+ "є": 30056,
+ "â": 30057,
+ "î": 30058,
+ "ò": 30059,
+ "З": 30060,
+ "Ф": 30061,
+ "É": 30062,
+ "ć": 30063,
+ "·": 30064,
+ "ș": 30065,
+ "ń": 30066,
+ "ț": 30067,
+ "Х": 30068,
+ "ô": 30069,
+ "Е": 30070,
+ "ù": 30071,
+ "ů": 30072,
+ "°": 30073,
+ "Ш": 30074,
+ "љ": 30075,
+ "Ч": 30076,
+ "ø": 30077,
+ "æ": 30078,
+ "њ": 30079,
+ " ": 30080,
+ " ": 30081,
+ "Э": 30082,
+ "ë": 30083,
+ "õ": 30084,
+ "ï": 30085,
+ "‘": 30086,
+ "†": 30087,
+ "²": 30088,
+ "ű": 30089,
+ "І": 30090,
+ "─": 30091,
+ "Ц": 30092,
+ "ћ": 30093,
+ "Ö": 30094,
+ "û": 30095,
+ "Я": 30096,
+ "ì": 30097,
+ "…": 30098,
+ "ō": 30099,
+ "Ж": 30100,
+ "Ю": 30101,
+ "Á": 30102,
+ "́": 30103,
+ "Ü": 30104,
+ "º": 30105,
+ "œ": 30106,
+ "ā": 30107,
+ "Č": 30108,
+ "ź": 30109,
+ "α": 30110,
+ "│": 30111,
+ "ا": 30112,
+ "À": 30113,
+ "═": 30114,
+ "Š": 30115,
+ "ђ": 30116,
+ "№": 30117,
+ " ": 30118,
+ "•": 30119,
+ "−": 30120,
+ "→": 30121,
+ "×": 30122,
+ "ο": 30123,
+ "₂": 30124,
+ "Ä": 30125,
+ "Î": 30126,
+ "Ś": 30127,
+ "đ": 30128,
+ "Å": 30129,
+ "ı": 30130,
+ "": 30131,
+ "ū": 30132,
+ "ν": 30133,
+ "Й": 30134,
+ "ª": 30135,
+ "ι": 30136,
+ "τ": 30137,
+ "ل": 30138,
+ "′": 30139,
+ "�": 30140,
+ "È": 30141,
+ "λ": 30142,
+ "": 30143,
+ "Ž": 30144,
+ "ς": 30145,
+ "ň": 30146,
+ "ρ": 30147,
+ "₁": 30148,
+ "Є": 30149,
+ "ī": 30150,
+ "ε": 30151,
+ "§": 30152,
+ "Ł": 30153,
+ "Ј": 30154,
+ "£": 30155,
+ "ر": 30156,
+ "Ż": 30157,
+ "¿": 30158,
+ "م": 30159,
+ "″": 30160,
+ "Ú": 30161,
+ "ن": 30162,
+ "ي": 30163,
+ "σ": 30164,
+ "´": 30165,
+ "": 30166,
+ "μ": 30167,
+ "³": 30168,
+ "ş": 30169,
+ "π": 30170,
+ "و": 30171,
+ "د": 30172,
+ "κ": 30173,
+ "₃": 30174,
+ "Í": 30175,
+ "ˈ": 30176,
+ "ب": 30177,
+ "Ó": 30178,
+ "Ã": 30179,
+ "¡": 30180,
+ "€": 30181,
+ "ť": 30182,
+ "η": 30183,
+ "ə": 30184,
+ "ー": 30185,
+ "Щ": 30186,
+ "β": 30187,
+ "├": 30188,
+ "ð": 30189,
+ "ґ": 30190,
+ "": 30191,
+ "υ": 30192,
+ "¹": 30193,
+ "₄": 30194,
+ "ت": 30195,
+ "י": 30196,
+ "γ": 30197,
+ "س": 30198,
+ "の": 30199,
+ "ğ": 30200,
+ "δ": 30201,
+ "ی": 30202,
+ "ン": 30203,
+ "ه": 30204,
+ "ו": 30205,
+ "ω": 30206,
+ "ί": 30207,
+ "█": 30208,
+ "θ": 30209,
+ "的": 30210,
+ "©": 30211,
+ "Â": 30212,
+ "↑": 30213,
+ ",": 30214,
+ "ː": 30215,
+ "ά": 30216,
+ "―": 30217,
+ "ع": 30218,
+ "Ç": 30219,
+ "₀": 30220,
+ "±": 30221,
+ "Ø": 30222,
+ "ď": 30223,
+ "Ř": 30224,
+ "Œ": 30225,
+ "½": 30226,
+ "└": 30227,
+ "ό": 30228,
+ "‚": 30229,
+ "ē": 30230,
+ "₅": 30231,
+ "Æ": 30232,
+ "Ș": 30233,
+ "ɛ": 30234,
+ "ה": 30235,
+ "ר": 30236,
+ "φ": 30237,
+ "₆": 30238,
+ "ė": 30239,
+ "ح": 30240,
+ "ف": 30241,
+ "ة": 30242,
+ "İ": 30243,
+ " ": 30244,
+ "←": 30245,
+ "║": 30246,
+ "ɔ": 30247,
+ "≤": 30248,
+ "ל": 30249,
+ "Đ": 30250,
+ "ա": 30251,
+ "Ō": 30252,
+ "א": 30253,
+ "്": 30254,
+ "ス": 30255,
+ "ش": 30256,
+ "大": 30257,
+ "ル": 30258,
+ "џ": 30259,
+ "イ": 30260,
+ "⟩": 30261,
+ " ": 30262,
+ "µ": 30263,
+ "∈": 30264,
+ "ق": 30265,
+ "⟨": 30266,
+ "。": 30267,
+ "Ґ": 30268,
+ "ा": 30269,
+ "ج": 30270,
+ "ʿ": 30271,
+ "ა": 30272,
+ "έ": 30273,
+ "χ": 30274,
+ "中": 30275,
+ "ב": 30276,
+ "ი": 30277,
+ "₈": 30278,
+ "ト": 30279,
+ "ή": 30280,
+ "ラ": 30281,
+ "Џ": 30282,
+ "ك": 30283,
+ "₇": 30284,
+ "מ": 30285,
+ "ת": 30286,
+ "一": 30287,
+ "Π": 30288,
+ "า": 30289,
+ "・": 30290,
+ "Σ": 30291,
+ "Α": 30292,
+ "Δ": 30293,
+ "ש": 30294,
+ "ز": 30295,
+ "्": 30296,
+ "ร": 30297,
+ "い": 30298,
+ "ʻ": 30299,
+ "Њ": 30300,
+ "₉": 30301,
+ "ʼ": 30302,
+ "リ": 30303,
+ "‐": 30304,
+ "ク": 30305,
+ "∞": 30306,
+ "⁄": 30307,
+ "ύ": 30308,
+ "Ş": 30309,
+ "ア": 30310,
+ "Ε": 30311,
+ "ɪ": 30312,
+ "人": 30313,
+ "Κ": 30314,
+ "∀": 30315,
+ "र": 30316,
+ "ッ": 30317,
+ "►": 30318,
+ "子": 30319,
+ "¬": 30320,
+ "خ": 30321,
+ "◄": 30322,
+ "َ": 30323,
+ "ע": 30324,
+ "日": 30325,
+ "し": 30326,
+ "ḥ": 30327,
+ "נ": 30328,
+ "山": 30329,
+ "、": 30330,
+ "Ї": 30331,
+ "る": 30332,
+ "文": 30333,
+ "Ñ": 30334,
+ "ド": 30335,
+ "ד": 30336,
+ "ն": 30337,
+ "Ђ": 30338,
+ "Γ": 30339,
+ "þ": 30340,
+ "": 30341,
+ "®": 30342,
+ "ک": 30343,
+ "": 30344,
+ "⚭": 30345,
+ "本": 30346,
+ "ℕ": 30347,
+ "น": 30348,
+ "ѝ": 30349,
+ "̶": 30350,
+ "อ": 30351,
+ "ў": 30352,
+ "に": 30353,
+ "数": 30354,
+ "ე": 30355,
+ "国": 30356,
+ "Ω": 30357,
+ " ": 30358,
+ "ǎ": 30359,
+ "ص": 30360,
+ "": 30361,
+ "Μ": 30362,
+ " ": 30363,
+ "と": 30364,
+ "": 30365,
+ "た": 30366,
+ "ط": 30367,
+ "ր": 30368,
+ "タ": 30369,
+ "ÿ": 30370,
+ "な": 30371,
+ "أ": 30372,
+ "シ": 30373,
+ "新": 30374,
+ "﹕": 30375,
+ "ʃ": 30376,
+ "ľ": 30377,
+ "ロ": 30378,
+ "⁴": 30379,
+ "்": 30380,
+ "⇒": 30381,
+ "ţ": 30382,
+ ":": 30383,
+ "Ț": 30384,
+ "ക": 30385,
+ "≥": 30386,
+ "ി": 30387,
+ "マ": 30388,
+ "ん": 30389,
+ "ṣ": 30390,
+ "ジ": 30391,
+ "是": 30392,
+ "이": 30393,
+ "⋅": 30394,
+ "田": 30395,
+ "を": 30396,
+ "道": 30397,
+ "ง": 30398,
+ "¨": 30399,
+ "ـ": 30400,
+ "เ": 30401,
+ "村": 30402,
+ "Ê": 30403,
+ "ם": 30404,
+ "›": 30405,
+ "用": 30406,
+ "ώ": 30407,
+ "天": 30408,
+ ")": 30409,
+ "་": 30410,
+ "镇": 30411,
+ "か": 30412,
+ "不": 30413,
+ "Τ": 30414,
+ "学": 30415,
+ "ư": 30416,
+ "有": 30417,
+ "ո": 30418,
+ "(": 30419,
+ "レ": 30420,
+ "گ": 30421,
+ "": 30422,
+ "フ": 30423,
+ "न": 30424,
+ "ก": 30425,
+ "ɑ": 30426,
+ "す": 30427,
+ "ח": 30428,
+ "上": 30429,
+ "": 30430,
+ "∧": 30431,
+ "ṭ": 30432,
+ "ק": 30433,
+ "ξ": 30434,
+ "¤": 30435,
+ "ि": 30436,
+ "会": 30437,
+ "ന": 30438,
+ "カ": 30439,
+ "ų": 30440,
+ "ま": 30441,
+ "ു": 30442,
+ "͡": 30443,
+ "क": 30444,
+ "া": 30445,
+ "小": 30446,
+ "ן": 30447,
+ "行": 30448,
+ "は": 30449,
+ "ʁ": 30450,
+ "Ő": 30451,
+ "Þ": 30452,
+ "り": 30453,
+ "キ": 30454,
+ "Λ": 30455,
+ "რ": 30456,
+ "三": 30457,
+ "が": 30458,
+ "コ": 30459,
+ "ζ": 30460,
+ "市": 30461,
+ "王": 30462,
+ "ℝ": 30463,
+ "Ź": 30464,
+ "う": 30465,
+ "て": 30466,
+ "区": 30467,
+ "ാ": 30468,
+ "": 30469,
+ "年": 30470,
+ "פ": 30471,
+ "ի": 30472,
+ "ſ": 30473,
+ "‹": 30474,
+ "त": 30475,
+ "ŏ": 30476,
+ "‑": 30477,
+ "̃": 30478,
+ "Ć": 30479,
+ "ى": 30480,
+ "「": 30481,
+ "」": 30482,
+ "ს": 30483,
+ "Ā": 30484,
+ "म": 30485,
+ "生": 30486,
+ "≠": 30487,
+ "Љ": 30488,
+ "स": 30489,
+ "↔": 30490,
+ "Ο": 30491,
+ "ว": 30492,
+ "ლ": 30493,
+ "成": 30494,
+ "定": 30495,
+ "ล": 30496,
+ "¶": 30497,
+ "כ": 30498,
+ "で": 30499,
+ "ּ": 30500,
+ "ม": 30501,
+ "个": 30502,
+ "和": 30503,
+ "ס": 30504,
+ "在": 30505,
+ "Β": 30506,
+ "ิ": 30507,
+ "Ι": 30508,
+ "⁵": 30509,
+ "ั": 30510,
+ "ɡ": 30511,
+ "━": 30512,
+ "ら": 30513,
+ "オ": 30514,
+ "¼": 30515,
+ "ե": 30516,
+ "バ": 30517,
+ "ָ": 30518,
+ "ŋ": 30519,
+ "ŭ": 30520,
+ "グ": 30521,
+ "⁶": 30522,
+ "Ь": 30523,
+ "⁰": 30524,
+ "方": 30525,
+ "บ": 30526,
+ "": 30527,
+ "高": 30528,
+ "ệ": 30529,
+ "Ν": 30530,
+ "ѣ": 30531,
+ "ィ": 30532,
+ "地": 30533,
+ "月": 30534,
+ "Ô": 30535,
+ "™": 30536,
+ "ウ": 30537,
+ "き": 30538,
+ "公": 30539,
+ "ạ": 30540,
+ "ო": 30541,
+ "ɾ": 30542,
+ "่": 30543,
+ "出": 30544,
+ "法": 30545,
+ "Θ": 30546,
+ "ส": 30547,
+ "名": 30548,
+ "ย": 30549,
+ "ത": 30550,
+ "Φ": 30551,
+ "↓": 30552,
+ "れ": 30553,
+ "ג": 30554,
+ "Ё": 30555,
+ "ơ": 30556,
+ "下": 30557,
+ "ә": 30558,
+ "ψ": 30559,
+ "┼": 30560,
+ "ャ": 30561,
+ "√": 30562,
+ "¥": 30563,
+ "社": 30564,
+ "ṇ": 30565,
+ "さ": 30566,
+ "ِ": 30567,
+ "く": 30568,
+ "े": 30569,
+ "Ы": 30570,
+ "ἐ": 30571,
+ "テ": 30572,
+ "为": 30573,
+ "乡": 30574,
+ "川": 30575,
+ "ナ": 30576,
+ "之": 30577,
+ "字": 30578,
+ "ム": 30579,
+ "ी": 30580,
+ "海": 30581,
+ "ブ": 30582,
+ "≈": 30583,
+ "!": 30584,
+ "پ": 30585,
+ "¯": 30586,
+ "ἀ": 30587,
+ "": 30588,
+ "こ": 30589,
+ "ְ": 30590,
+ "東": 30591,
+ "明": 30592,
+ "ὶ": 30593,
+ "时": 30594,
+ "ท": 30595,
+ "ɨ": 30596,
+ "デ": 30597,
+ "️": 30598,
+ "ʊ": 30599,
+ "エ": 30600,
+ "南": 30601,
+ "西": 30602,
+ "ल": 30603,
+ "メ": 30604,
+ "プ": 30605,
+ "平": 30606,
+ "式": 30607,
+ "ῖ": 30608,
+ "қ": 30609,
+ "व": 30610,
+ "غ": 30611,
+ "Ò": 30612,
+ "家": 30613,
+ "ʒ": 30614,
+ "サ": 30615,
+ "≡": 30616,
+ "ダ": 30617,
+ "ต": 30618,
+ "∃": 30619,
+ "₹": 30620,
+ "प": 30621,
+ "第": 30622,
+ "ര": 30623,
+ "ض": 30624,
+ "▄": 30625,
+ "城": 30626,
+ "ミ": 30627,
+ "ɐ": 30628,
+ "¦": 30629,
+ "美": 30630,
+ "件": 30631,
+ "ნ": 30632,
+ "Ð": 30633,
+ "ַ": 30634,
+ "ニ": 30635,
+ "部": 30636,
+ "ņ": 30637,
+ "ǐ": 30638,
+ "ט": 30639,
+ "य": 30640,
+ "あ": 30641,
+ "¾": 30642,
+ "ả": 30643,
+ "ち": 30644,
+ "ュ": 30645,
+ "÷": 30646,
+ "女": 30647,
+ "神": 30648,
+ "♦": 30649,
+ "¢": 30650,
+ "以": 30651,
+ "้": 30652,
+ "র": 30653,
+ "太": 30654,
+ "্": 30655,
+ "チ": 30656,
+ "յ": 30657,
+ "前": 30658,
+ "金": 30659,
+ "ւ": 30660,
+ "野": 30661,
+ "北": 30662,
+ "ห": 30663,
+ "‰": 30664,
+ "っ": 30665,
+ "加": 30666,
+ "原": 30667,
+ "ʲ": 30668,
+ "置": 30669,
+ "安": 30670,
+ "ガ": 30671,
+ "我": 30672,
+ "Ḥ": 30673,
+ "യ": 30674,
+ "京": 30675,
+ "▀": 30676,
+ "მ": 30677,
+ "ვ": 30678,
+ "ʾ": 30679,
+ "∨": 30680,
+ "ִ": 30681,
+ "可": 30682,
+ "取": 30683,
+ "县": 30684,
+ "二": 30685,
+ "▒": 30686,
+ "理": 30687,
+ "自": 30688,
+ "信": 30689,
+ "代": 30690,
+ "ี": 30691,
+ "צ": 30692,
+ "်": 30693,
+ "द": 30694,
+ "⁸": 30695,
+ "̯": 30696,
+ "お": 30697,
+ "要": 30698,
+ "ῦ": 30699,
+ "க": 30700,
+ "ễ": 30701,
+ "ु": 30702,
+ "ƒ": 30703,
+ "ʰ": 30704,
+ "化": 30705,
+ "✓": 30706,
+ "പ": 30707,
+ "의": 30708,
+ "다": 30709,
+ "木": 30710,
+ "ُ": 30711,
+ "̀": 30712,
+ "ˌ": 30713,
+ "ह": 30714,
+ "パ": 30715,
+ "水": 30716,
+ "ế": 30717,
+ "ด": 30718,
+ "ズ": 30719,
+ "⁹": 30720,
+ "島": 30721,
+ "": 30722,
+ "も": 30723,
+ "正": 30724,
+ "■": 30725,
+ "آ": 30726,
+ "พ": 30727,
+ "内": 30728,
+ "Ì": 30729,
+ "ǔ": 30730,
+ "┬": 30731,
+ "作": 30732,
+ "合": 30733,
+ "ὸ": 30734,
+ "み": 30735,
+ "▼": 30736,
+ "ῶ": 30737,
+ "⊙": 30738,
+ "~": 30739,
+ "ị": 30740,
+ "ْ": 30741,
+ "回": 30742,
+ "了": 30743,
+ "所": 30744,
+ "事": 30745,
+ "表": 30746,
+ "ำ": 30747,
+ "分": 30748,
+ "⁷": 30749,
+ "ү": 30750,
+ "": 30751,
+ "入": 30752,
+ "全": 30753,
+ "إ": 30754,
+ "里": 30755,
+ "Χ": 30756,
+ "ं": 30757,
+ "ハ": 30758,
+ "ค": 30759,
+ "⁻": 30760,
+ "モ": 30761,
+ "郎": 30762,
+ "据": 30763,
+ "●": 30764,
+ "州": 30765,
+ "∩": 30766,
+ "者": 30767,
+ "通": 30768,
+ "都": 30769,
+ "ℤ": 30770,
+ "♭": 30771,
+ "╌": 30772,
+ "つ": 30773,
+ "ḍ": 30774,
+ "江": 30775,
+ "ז": 30776,
+ "Ý": 30777,
+ "ө": 30778,
+ "์": 30779,
+ "到": 30780,
+ "ி": 30781,
+ "ʂ": 30782,
+ "对": 30783,
+ "스": 30784,
+ "使": 30785,
+ "ি": 30786,
+ "よ": 30787,
+ "Ἀ": 30788,
+ "Ï": 30789,
+ "∘": 30790,
+ "사": 30791,
+ "ন": 30792,
+ "世": 30793,
+ "ɕ": 30794,
+ "կ": 30795,
+ "უ": 30796,
+ "ട": 30797,
+ "ბ": 30798,
+ "ो": 30799,
+ "വ": 30800,
+ "果": 30801,
+ "十": 30802,
+ "ุ": 30803,
+ "藤": 30804,
+ "来": 30805,
+ "面": 30806,
+ "け": 30807,
+ "ĕ": 30808,
+ "ビ": 30809,
+ "这": 30810,
+ "지": 30811,
+ "ം": 30812,
+ "街": 30813,
+ "石": 30814,
+ "能": 30815,
+ "空": 30816,
+ "տ": 30817,
+ "ئ": 30818,
+ "武": 30819,
+ "ʹ": 30820,
+ "ϕ": 30821,
+ "后": 30822,
+ "ะ": 30823,
+ "元": 30824,
+ "ʔ": 30825,
+ "리": 30826,
+ "기": 30827,
+ "河": 30828,
+ "町": 30829,
+ "花": 30830,
+ "ὐ": 30831,
+ "类": 30832,
+ "░": 30833,
+ "物": 30834,
+ "Η": 30835,
+ "¸": 30836,
+ "ு": 30837,
+ "თ": 30838,
+ "ث": 30839,
+ "െ": 30840,
+ "╠": 30841,
+ "⊆": 30842,
+ "》": 30843,
+ "ツ": 30844,
+ "版": 30845,
+ "动": 30846,
+ "如": 30847,
+ "真": 30848,
+ "ɲ": 30849,
+ "号": 30850,
+ "ذ": 30851,
+ "정": 30852,
+ "林": 30853,
+ "書": 30854,
+ "民": 30855,
+ "口": 30856,
+ "ّ": 30857,
+ "示": 30858,
+ "മ": 30859,
+ "아": 30860,
+ "图": 30861,
+ "∪": 30862,
+ "戦": 30863,
+ "李": 30864,
+ "ല": 30865,
+ "《": 30866,
+ "光": 30867,
+ "白": 30868,
+ "心": 30869,
+ "த": 30870,
+ "ज": 30871,
+ "设": 30872,
+ "ί": 30873,
+ "路": 30874,
+ "ग": 30875,
+ "∥": 30876,
+ "한": 30877,
+ "最": 30878,
+ "Ћ": 30879,
+ "手": 30880,
+ "ս": 30881,
+ "?": 30882,
+ "型": 30883,
+ "ầ": 30884,
+ "セ": 30885,
+ "建": 30886,
+ "ェ": 30887,
+ "主": 30888,
+ "시": 30889,
+ "대": 30890,
+ "ῆ": 30891,
+ "‡": 30892,
+ "集": 30893,
+ "დ": 30894,
+ "目": 30895,
+ "Ρ": 30896,
+ "ァ": 30897,
+ "度": 30898,
+ "長": 30899,
+ "星": 30900,
+ "ノ": 30901,
+ "ộ": 30902,
+ "가": 30903,
+ "五": 30904,
+ "چ": 30905,
+ "로": 30906,
+ "ョ": 30907,
+ "重": 30908,
+ "于": 30909,
+ "发": 30910,
+ "史": 30911,
+ "ظ": 30912,
+ "ช": 30913,
+ "え": 30914,
+ "國": 30915,
+ "ĭ": 30916,
+ "ப": 30917,
+ "인": 30918,
+ "你": 30919,
+ "駅": 30920,
+ "‒": 30921,
+ "♥": 30922,
+ "多": 30923,
+ "ħ": 30924,
+ "Қ": 30925,
+ "ồ": 30926,
+ "士": 30927,
+ "四": 30928,
+ "┴": 30929,
+ "ம": 30930,
+ "司": 30931,
+ "ে": 30932,
+ "ὰ": 30933,
+ "∂": 30934,
+ "╬": 30935,
+ "次": 30936,
+ "Ľ": 30937,
+ "⟶": 30938,
+ "立": 30939,
+ "点": 30940,
+ "音": 30941,
+ "⠀": 30942,
+ "器": 30943,
+ "하": 30944,
+ "井": 30945,
+ "存": 30946,
+ "ֹ": 30947,
+ "当": 30948,
+ "Ë": 30949,
+ "★": 30950,
+ "寺": 30951,
+ "性": 30952,
+ "也": 30953,
+ "め": 30954,
+ "だ": 30955,
+ "位": 30956,
+ "ങ": 30957,
+ "ہ": 30958,
+ "值": 30959,
+ "古": 30960,
+ "გ": 30961,
+ "ব": 30962,
+ "院": 30963,
+ "േ": 30964,
+ "▶": 30965,
+ "ர": 30966,
+ "界": 30967,
+ "語": 30968,
+ "സ": 30969,
+ "수": 30970,
+ "ǒ": 30971,
+ "愛": 30972,
+ "✔": 30973,
+ "時": 30974,
+ "ọ": 30975,
+ "റ": 30976,
+ "մ": 30977,
+ "ケ": 30978,
+ "东": 30979,
+ "同": 30980,
+ "주": 30981,
+ "保": 30982,
+ "Õ": 30983,
+ "ố": 30984,
+ "ἰ": 30985,
+ "青": 30986,
+ "ゴ": 30987,
+ "体": 30988,
+ "清": 30989,
+ "相": 30990,
+ "จ": 30991,
+ "ء": 30992,
+ "情": 30993,
+ "𝕜": 30994,
+ "ক": 30995,
+ "ḫ": 30996,
+ "ờ": 30997,
+ "将": 30998,
+ "族": 30999,
+ "동": 31000,
+ "Υ": 31001,
+ "┌": 31002,
+ "ボ": 31003,
+ "宮": 31004,
+ "』": 31005,
+ "ম": 31006,
+ "『": 31007,
+ "ļ": 31008,
+ "श": 31009,
+ "ป": 31010,
+ "Ա": 31011,
+ "ब": 31012,
+ "자": 31013,
+ "政": 31014,
+ "ா": 31015,
+ "间": 31016,
+ "fi": 31017,
+ "松": 31018,
+ "ṃ": 31019,
+ "始": 31020,
+ "息": 31021,
+ "少": 31022,
+ "教": 31023,
+ "获": 31024,
+ "列": 31025,
+ "开": 31026,
+ "ტ": 31027,
+ "ワ": 31028,
+ "კ": 31029,
+ "科": 31030,
+ "春": 31031,
+ "治": 31032,
+ "吉": 31033,
+ "ས": 31034,
+ "ศ": 31035,
+ "ɒ": 31036,
+ "台": 31037,
+ "ネ": 31038,
+ "း": 31039,
+ "ĩ": 31040,
+ "工": 31041,
+ "ά": 31042,
+ "知": 31043,
+ "八": 31044,
+ "場": 31045,
+ "画": 31046,
+ "百": 31047,
+ "☆": 31048,
+ "記": 31049,
+ "得": 31050,
+ "ソ": 31051,
+ "氏": 31052,
+ "ာ": 31053,
+ "에": 31054,
+ "ল": 31055,
+ "ṛ": 31056,
+ "关": 31057,
+ "ġ": 31058,
+ "έ": 31059,
+ "∑": 31060,
+ "ベ": 31061,
+ "标": 31062,
+ "니": 31063,
+ "ὴ": 31064,
+ "ֵ": 31065,
+ "外": 31066,
+ "♠": 31067,
+ "わ": 31068,
+ "間": 31069,
+ "ภ": 31070,
+ "校": 31071,
+ "制": 31072,
+ "แ": 31073,
+ "力": 31074,
+ "門": 31075,
+ "好": 31076,
+ "ғ": 31077,
+ "Ù": 31078,
+ "ℓ": 31079,
+ "ֶ": 31080,
+ "는": 31081,
+ "┐": 31082,
+ "∗": 31083,
+ "指": 31084,
+ "色": 31085,
+ "返": 31086,
+ "馬": 31087,
+ "请": 31088,
+ "≫": 31089,
+ "風": 31090,
+ "ό": 31091,
+ "接": 31092,
+ "서": 31093,
+ "↳": 31094,
+ "せ": 31095,
+ "志": 31096,
+ "̲": 31097,
+ "魔": 31098,
+ "ң": 31099,
+ "更": 31100,
+ "程": 31101,
+ "김": 31102,
+ "郡": 31103,
+ "ོ": 31104,
+ "ũ": 31105,
+ "ച": 31106,
+ "利": 31107,
+ "県": 31108,
+ "周": 31109,
+ "そ": 31110,
+ "や": 31111,
+ "谷": 31112,
+ "香": 31113,
+ "♯": 31114,
+ "じ": 31115,
+ "،": 31116,
+ "期": 31117,
+ "∅": 31118,
+ "┘": 31119,
+ "初": 31120,
+ "福": 31121,
+ "片": 31122,
+ "ザ": 31123,
+ "動": 31124,
+ "参": 31125,
+ "성": 31126,
+ "Ə": 31127,
+ "╦": 31128,
+ "어": 31129,
+ "ხ": 31130,
+ "義": 31131,
+ "च": 31132,
+ "象": 31133,
+ "功": 31134,
+ "♂": 31135,
+ "도": 31136,
+ "고": 31137,
+ "过": 31138,
+ "վ": 31139,
+ "皇": 31140,
+ "特": 31141,
+ "ậ": 31142,
+ "长": 31143,
+ "英": 31144,
+ "ấ": 31145,
+ "ണ": 31146,
+ "Ъ": 31147,
+ "স": 31148,
+ "其": 31149,
+ "ত": 31150,
+ "流": 31151,
+ "除": 31152,
+ "일": 31153,
+ "ু": 31154,
+ "្": 31155,
+ "永": 31156,
+ "直": 31157,
+ "상": 31158,
+ "千": 31159,
+ "ắ": 31160,
+ "館": 31161,
+ "Ť": 31162,
+ "朝": 31163,
+ "ட": 31164,
+ "ɣ": 31165,
+ "单": 31166,
+ "ʀ": 31167,
+ "格": 31168,
+ "德": 31169,
+ "전": 31170,
+ "☺": 31171,
+ "ピ": 31172,
+ "歌": 31173,
+ "进": 31174,
+ "限": 31175,
+ "夫": 31176,
+ "트": 31177,
+ "⊢": 31178,
+ "園": 31179,
+ "量": 31180,
+ "土": 31181,
+ "放": 31182,
+ "码": 31183,
+ "等": 31184,
+ "系": 31185,
+ "∼": 31186,
+ "華": 31187,
+ "↵": 31188,
+ "소": 31189,
+ "常": 31190,
+ "否": 31191,
+ "見": 31192,
+ "源": 31193,
+ "ׁ": 31194,
+ "实": 31195,
+ "博": 31196,
+ "라": 31197,
+ "원": 31198,
+ "보": 31199,
+ "⊕": 31200,
+ "解": 31201,
+ "〜": 31202,
+ "男": 31203,
+ "দ": 31204,
+ "ポ": 31205,
+ "ろ": 31206,
+ "나": 31207,
+ "ག": 31208,
+ "無": 31209,
+ "Û": 31210,
+ "̥": 31211,
+ "ұ": 31212,
+ "查": 31213,
+ "̣": 31214,
+ "╗": 31215,
+ "╩": 31216,
+ "条": 31217,
+ "য": 31218,
+ "ὁ": 31219,
+ "後": 31220,
+ "他": 31221,
+ "网": 31222,
+ "ல": 31223,
+ "≃": 31224,
+ "화": 31225,
+ "ە": 31226,
+ "阿": 31227,
+ "ေ": 31228,
+ "户": 31229,
+ "∫": 31230,
+ "구": 31231,
+ "ར": 31232,
+ "မ": 31233,
+ "▸": 31234,
+ "լ": 31235,
+ "○": 31236,
+ "命": 31237,
+ "就": 31238,
+ "龍": 31239,
+ "君": 31240,
+ "夏": 31241,
+ "": 31242,
+ "言": 31243,
+ "先": 31244,
+ "➜": 31245,
+ "შ": 31246,
+ "ძ": 31247,
+ "ਾ": 31248,
+ "வ": 31249,
+ "ど": 31250,
+ "ヒ": 31251,
+ "ไ": 31252,
+ "ன": 31253,
+ "ば": 31254,
+ "ギ": 31255,
+ "գ": 31256,
+ "ἄ": 31257,
+ "ヤ": 31258,
+ "典": 31259,
+ "府": 31260,
+ "̄": 31261,
+ "신": 31262,
+ "组": 31263,
+ "改": 31264,
+ "ὲ": 31265,
+ "华": 31266,
+ "与": 31267,
+ "调": 31268,
+ "╝": 31269,
+ "ヴ": 31270,
+ "ქ": 31271,
+ "由": 31272,
+ "修": 31273,
+ "學": 31274,
+ "♣": 31275,
+ "消": 31276,
+ "符": 31277,
+ "ʌ": 31278,
+ "부": 31279,
+ "ớ": 31280,
+ "‾": 31281,
+ "▲": 31282,
+ "录": 31283,
+ "ള": 31284,
+ "연": 31285,
+ "을": 31286,
+ "ひ": 31287,
+ "영": 31288,
+ "┤": 31289,
+ "已": 31290,
+ "陽": 31291,
+ "င": 31292,
+ "국": 31293,
+ "容": 31294,
+ "未": 31295,
+ "宗": 31296,
+ "ᴇ": 31297,
+ "び": 31298,
+ "장": 31299,
+ "龙": 31300,
+ "්": 31301,
+ "提": 31302,
+ "ĝ": 31303,
+ "六": 31304,
+ "形": 31305,
+ "제": 31306,
+ "Հ": 31307,
+ "伊": 31308,
+ "ϵ": 31309,
+ "ข": 31310,
+ "Ű": 31311,
+ "ゃ": 31312,
+ "火": 31313,
+ "Ṣ": 31314,
+ "佐": 31315,
+ "⊥": 31316,
+ "̪": 31317,
+ "ứ": 31318,
+ "□": 31319,
+ "结": 31320,
+ "九": 31321,
+ "雄": 31322,
+ "թ": 31323,
+ "ា": 31324,
+ "而": 31325,
+ "བ": 31326,
+ "우": 31327,
+ "张": 31328,
+ "ट": 31329,
+ "ष": 31330,
+ "向": 31331,
+ "ῥ": 31332,
+ "选": 31333,
+ "공": 31334,
+ "ゲ": 31335,
+ "ʐ": 31336,
+ "仁": 31337,
+ "堂": 31338,
+ "ך": 31339,
+ "ု": 31340,
+ "ἔ": 31341,
+ "അ": 31342,
+ "ề": 31343,
+ "ད": 31344,
+ "선": 31345,
+ "오": 31346,
+ "久": 31347,
+ "": 31348,
+ "义": 31349,
+ "अ": 31350,
+ "╔": 31351,
+ "无": 31352,
+ "
": 31353,
+ "은": 31354,
+ "ʷ": 31355,
+ "那": 31356,
+ "線": 31357,
+ "务": 31358,
+ "基": 31359,
+ "属": 31360,
+ "配": 31361,
+ "미": 31362,
+ "軍": 31363,
+ "โ": 31364,
+ "津": 31365,
+ "完": 31366,
+ "研": 31367,
+ "注": 31368,
+ "失": 31369,
+ "应": 31370,
+ "က": 31371,
+ "╚": 31372,
+ "友": 31373,
+ "章": 31374,
+ "Ψ": 31375,
+ "求": 31376,
+ "ण": 31377,
+ "경": 31378,
+ "": 31379,
+ "भ": 31380,
+ "们": 31381,
+ "模": 31382,
+ "需": 31383,
+ "ச": 31384,
+ "電": 31385,
+ "প": 31386,
+ "դ": 31387,
+ "へ": 31388,
+ "此": 31389,
+ "夜": 31390,
+ "或": 31391,
+ "橋": 31392,
+ "根": 31393,
+ "Ī": 31394,
+ "玉": 31395,
+ "ู": 31396,
+ "ṅ": 31397,
+ "交": 31398,
+ "品": 31399,
+ "良": 31400,
+ "ང": 31401,
+ "ォ": 31402,
+ "则": 31403,
+ "開": 31404,
+ "Ζ": 31405,
+ "문": 31406,
+ "被": 31407,
+ "조": 31408,
+ "株": 31409,
+ "记": 31410,
+ "會": 31411,
+ "经": 31412,
+ "ू": 31413,
+ "ょ": 31414,
+ "转": 31415,
+ "崎": 31416,
+ "마": 31417,
+ "⌘": 31418,
+ "比": 31419,
+ "造": 31420,
+ "ܐ": 31421,
+ "ื": 31422,
+ "没": 31423,
+ "现": 31424,
+ "七": 31425,
+ "Ά": 31426,
+ "商": 31427,
+ "ை": 31428,
+ "机": 31429,
+ "阳": 31430,
+ "ĉ": 31431,
+ "角": 31432,
+ "站": 31433,
+ "բ": 31434,
+ "해": 31435,
+ "及": 31436,
+ "ध": 31437,
+ "術": 31438,
+ "认": 31439,
+ "": 31440,
+ "创": 31441,
+ "編": 31442,
+ "ղ": 31443,
+ "ḩ": 31444,
+ "伝": 31445,
+ "岡": 31446,
+ "ड": 31447,
+ "ホ": 31448,
+ "港": 31449,
+ "任": 31450,
+ "登": 31451,
+ "ི": 31452,
+ "็": 31453,
+ "布": 31454,
+ "究": 31455,
+ "帝": 31456,
+ "여": 31457,
+ "산": 31458,
+ "န": 31459,
+ "◦": 31460,
+ "密": 31461,
+ "变": 31462,
+ "序": 31463,
+ "♀": 31464,
+ "∣": 31465,
+ "计": 31466,
+ "曲": 31467,
+ "Ă": 31468,
+ "ύ": 31469,
+ "ʋ": 31470,
+ "传": 31471,
+ "】": 31472,
+ "包": 31473,
+ "意": 31474,
+ "去": 31475,
+ "沙": 31476,
+ "⸮": 31477,
+ "【": 31478,
+ "写": 31479,
+ "超": 31480,
+ "ய": 31481,
+ "今": 31482,
+ "┈": 31483,
+ "森": 31484,
+ "ි": 31485,
+ "⊗": 31486,
+ "비": 31487,
+ "հ": 31488,
+ "Ḩ": 31489,
+ "ǫ": 31490,
+ "黄": 31491,
+ "∙": 31492,
+ "드": 31493,
+ "🌍": 31494,
+ "景": 31495,
+ "湖": 31496,
+ "ք": 31497,
+ "ိ": 31498,
+ "ⁿ": 31499,
+ "̂": 31500,
+ "ペ": 31501,
+ "何": 31502,
+ "宇": 31503,
+ "張": 31504,
+ "语": 31505,
+ "老": 31506,
+ "例": 31507,
+ "Ṭ": 31508,
+ "鉄": 31509,
+ "克": 31510,
+ "☉": 31511,
+ "": 31512,
+ "ɹ": 31513,
+ "ἱ": 31514,
+ "ⴰ": 31515,
+ "然": 31516,
+ "를": 31517,
+ "ǧ": 31518,
+ "報": 31519,
+ "服": 31520,
+ "Ď": 31521,
+ "想": 31522,
+ "‖": 31523,
+ "ユ": 31524,
+ "実": 31525,
+ "载": 31526,
+ "요": 31527,
+ "ℚ": 31528,
+ "波": 31529,
+ "马": 31530,
+ "状": 31531,
+ "线": 31532,
+ "유": 31533,
+ "洋": 31534,
+ "万": 31535,
+ "진": 31536,
+ "জ": 31537,
+ "添": 31538,
+ "球": 31539,
+ "機": 31540,
+ "支": 31541,
+ "显": 31542,
+ "拉": 31543,
+ "ὑ": 31544,
+ "送": 31545,
+ "隊": 31546,
+ "ธ": 31547,
+ "处": 31548,
+ "師": 31549,
+ "⊂": 31550,
+ "像": 31551,
+ "়": 31552,
+ "黒": 31553,
+ "ց": 31554,
+ "": 31555,
+ "ủ": 31556,
+ "只": 31557,
+ "起": 31558,
+ "段": 31559,
+ "တ": 31560,
+ "區": 31561,
+ "選": 31562,
+ "천": 31563,
+ "業": 31564,
+ "算": 31565,
+ "广": 31566,
+ "រ": 31567,
+ "视": 31568,
+ "秋": 31569,
+ "因": 31570,
+ "년": 31571,
+ "ے": 31572,
+ "输": 31573,
+ "̱": 31574,
+ "Մ": 31575,
+ "∆": 31576,
+ "康": 31577,
+ "세": 31578,
+ "思": 31579,
+ "死": 31580,
+ "聖": 31581,
+ "민": 31582,
+ "-": 31583,
+ "头": 31584,
+ "ർ": 31585,
+ "∉": 31586,
+ "車": 31587,
+ "┃": 31588,
+ "▇": 31589,
+ "按": 31590,
+ "⍵": 31591,
+ "夢": 31592,
+ "汉": 31593,
+ "从": 31594,
+ "ী": 31595,
+ "题": 31596,
+ "ˆ": 31597,
+ "ἡ": 31598,
+ "展": 31599,
+ "省": 31600,
+ "ུ": 31601,
+ "葉": 31602,
+ "호": 31603,
+ "ਰ": 31604,
+ "素": 31605,
+ "関": 31606,
+ "그": 31607,
+ ";": 31608,
+ "න": 31609,
+ "页": 31610,
+ "共": 31611,
+ "宿": 31612,
+ "态": 31613,
+ "ན": 31614,
+ "技": 31615,
+ "乐": 31616,
+ "控": 31617,
+ "移": 31618,
+ "影": 31619,
+ "ụ": 31620,
+ "ゆ": 31621,
+ "ご": 31622,
+ "್": 31623,
+ "管": 31624,
+ "ൾ": 31625,
+ "╣": 31626,
+ "戸": 31627,
+ "⇔": 31628,
+ "函": 31629,
+ "ẓ": 31630,
+ "尾": 31631,
+ "场": 31632,
+ "介": 31633,
+ "": 31634,
+ "育": 31635,
+ "ර": 31636,
+ "泉": 31637,
+ "ൽ": 31638,
+ "说": 31639,
+ "换": 31640,
+ "必": 31641,
+ "紀": 31642,
+ "མ": 31643,
+ "ེ": 31644,
+ "ợ": 31645,
+ "ൻ": 31646,
+ "宝": 31647,
+ "気": 31648,
+ "门": 31649,
+ "令": 31650,
+ "左": 31651,
+ "漢": 31652,
+ "若": 31653,
+ "屋": 31654,
+ "局": 31655,
+ "打": 31656,
+ "発": 31657,
+ "问": 31658,
+ "恋": 31659,
+ "兵": 31660,
+ "別": 31661,
+ "ા": 31662,
+ "Ս": 31663,
+ "߬": 31664,
+ "গ": 31665,
+ "并": 31666,
+ "ख": 31667,
+ "ή": 31668,
+ "节": 31669,
+ "ʑ": 31670,
+ "ץ": 31671,
+ "Ḫ": 31672,
+ "ℂ": 31673,
+ "引": 31674,
+ "统": 31675,
+ "智": 31676,
+ "̩": 31677,
+ "ै": 31678,
+ "电": 31679,
+ "현": 31680,
+ "✅": 31681,
+ "赤": 31682,
+ "断": 31683,
+ "ね": 31684,
+ "称": 31685,
+ "শ": 31686,
+ "身": 31687,
+ "首": 31688,
+ "付": 31689,
+ "⅓": 31690,
+ "ਸ": 31691,
+ "連": 31692,
+ "ზ": 31693,
+ "官": 31694,
+ "持": 31695,
+ "奈": 31696,
+ "御": 31697,
+ "親": 31698,
+ "군": 31699,
+ "库": 31700,
+ "秀": 31701,
+ "址": 31702,
+ "守": 31703,
+ "活": 31704,
+ "ལ": 31705,
+ "ふ": 31706,
+ "藏": 31707,
+ "ស": 31708,
+ "竹": 31709,
+ "草": 31710,
+ "結": 31711,
+ "ා": 31712,
+ "昌": 31713,
+ "樹": 31714,
+ "ள": 31715,
+ "무": 31716,
+ "হ": 31717,
+ "ゼ": 31718,
+ "̈": 31719,
+ "շ": 31720,
+ "勝": 31721,
+ "足": 31722,
+ "ရ": 31723,
+ "위": 31724,
+ "į": 31725,
+ "Ἰ": 31726,
+ "航": 31727,
+ "陳": 31728,
+ "业": 31729,
+ "富": 31730,
+ "雪": 31731,
+ "आ": 31732,
+ "再": 31733,
+ "안": 31734,
+ "默": 31735,
+ "박": 31736,
+ "용": 31737,
+ "✿": 31738,
+ "楽": 31739,
+ "沢": 31740,
+ "羅": 31741,
+ "Ė": 31742,
+ "ʎ": 31743,
+ "忠": 31744,
+ "错": 31745,
+ "단": 31746,
+ "면": 31747,
+ "ķ": 31748,
+ "桥": 31749,
+ "雲": 31750,
+ "该": 31751,
+ "ṯ": 31752,
+ "岩": 31753,
+ "남": 31754,
+ "ỹ": 31755,
+ "专": 31756,
+ "切": 31757,
+ "店": 31758,
+ "朱": 31759,
+ "ף": 31760,
+ "ず": 31761,
+ "幸": 31762,
+ "母": 31763,
+ "ɫ": 31764,
+ "々": 31765,
+ "∷": 31766,
+ "串": 31767,
+ "击": 31768,
+ "Ἐ": 31769,
+ "設": 31770,
+ "⊤": 31771,
+ "ₗ": 31772,
+ "經": 31773,
+ "강": 31774,
+ "ပ": 31775,
+ "।": 31776,
+ "ѐ": 31777,
+ "ᾶ": 31778,
+ "➖": 31779,
+ "座": 31780,
+ "씨": 31781,
+ "ぶ": 31782,
+ "Ţ": 31783,
+ "云": 31784,
+ "告": 31785,
+ "変": 31786,
+ "试": 31787,
+ "隆": 31788,
+ "개": 31789,
+ "պ": 31790,
+ "判": 31791,
+ "劉": 31792,
+ "˜": 31793,
+ "ˠ": 31794,
+ "编": 31795,
+ "ณ": 31796,
+ "ữ": 31797,
+ "达": 31798,
+ "Ě": 31799,
+ "ܝ": 31800,
+ "ြ": 31801,
+ "ḷ": 31802,
+ "右": 31803,
+ "들": 31804,
+ "ŝ": 31805,
+ "ӏ": 31806,
+ "్": 31807,
+ "എ": 31808,
+ "ற": 31809,
+ "复": 31810,
+ "看": 31811,
+ "話": 31812,
+ "坂": 31813,
+ "尔": 31814,
+ "衛": 31815,
+ "զ": 31816,
+ "차": 31817,
+ "丸": 31818,
+ "样": 31819,
+ "鬼": 31820,
+ "़": 31821,
+ "학": 31822,
+ "喜": 31823,
+ "斯": 31824,
+ "銀": 31825,
+ "만": 31826,
+ "Ξ": 31827,
+ "ც": 31828,
+ "群": 31829,
+ "近": 31830,
+ "塔": 31831,
+ "ϊ": 31832,
+ "ந": 31833,
+ "む": 31834,
+ "确": 31835,
+ "索": 31836,
+ "∇": 31837,
+ "非": 31838,
+ "望": 31839,
+ "❯": 31840,
+ "希": 31841,
+ "ỳ": 31842,
+ "甲": 31843,
+ "越": 31844,
+ "鳥": 31845,
+ "麻": 31846,
+ "雅": 31847,
+ "拳": 31848,
+ "ក": 31849,
+ "溪": 31850,
+ "测": 31851,
+ "话": 31852,
+ "池": 31853,
+ "菜": 31854,
+ "食": 31855,
+ "터": 31856,
+ "ਿ": 31857,
+ "渡": 31858,
+ "速": 31859,
+ "ھ": 31860,
+ "ರ": 31861,
+ "陈": 31862,
+ "健": 31863,
+ "ো": 31864,
+ "ක": 31865,
+ "ὺ": 31866,
+ "军": 31867,
+ "庄": 31868,
+ "红": 31869,
+ "Ħ": 31870,
+ "論": 31871,
+ "Ÿ": 31872,
+ "Έ": 31873,
+ "ự": 31874,
+ "孝": 31875,
+ "頭": 31876,
+ "飛": 31877,
+ "˚": 31878,
+ "▓": 31879,
+ "ً": 31880,
+ "": 31881,
+ "么": 31882,
+ "達": 31883,
+ "ѫ": 31884,
+ "巴": 31885,
+ "洞": 31886,
+ "貴": 31887,
+ "项": 31888,
+ "ദ": 31889,
+ "ɵ": 31890,
+ "̍": 31891,
+ "ҡ": 31892,
+ "种": 31893,
+ "运": 31894,
+ "식": 31895,
+ "ྱ": 31896,
+ "ḳ": 31897,
+ "彦": 31898,
+ "⥤": 31899,
+ "书": 31900,
+ "构": 31901,
+ "米": 31902,
+ "连": 31903,
+ "操": 31904,
+ "装": 31905,
+ "과": 31906,
+ "ぐ": 31907,
+ "反": 31908,
+ "̌": 31909,
+ "仮": 31910,
+ "员": 31911,
+ "昭": 31912,
+ "ശ": 31913,
+ "兴": 31914,
+ "客": 31915,
+ "删": 31916,
+ "ම": 31917,
+ "ව": 31918,
+ "პ": 31919,
+ "ċ": 31920,
+ "ഷ": 31921,
+ "သ": 31922,
+ "ᵉ": 31923,
+ "居": 31924,
+ "타": 31925,
+ "𝓝": 31926,
+ "थ": 31927,
+ "現": 31928,
+ "ˇ": 31929,
+ "종": 31930,
+ "助": 31931,
+ "唐": 31932,
+ "瀬": 31933,
+ "ន": 31934,
+ "微": 31935,
+ "1": 31936,
+ "Ġ": 31937,
+ "ほ": 31938,
+ "舞": 31939,
+ "내": 31940,
+ "중": 31941,
+ "Ē": 31942,
+ "导": 31943,
+ "效": 31944,
+ "방": 31945,
+ "ḏ": 31946,
+ "深": 31947,
+ "梅": 31948,
+ "料": 31949,
+ "월": 31950,
+ "每": 31951,
+ "洲": 31952,
+ "회": 31953,
+ "茶": 31954,
+ "败": 31955,
+ "ഞ": 31956,
+ "ể": 31957,
+ "ヨ": 31958,
+ "些": 31959,
+ "双": 31960,
+ "嘉": 31961,
+ "모": 31962,
+ "바": 31963,
+ "ษ": 31964,
+ "進": 31965,
+ "음": 31966,
+ "ญ": 31967,
+ "丁": 31968,
+ "故": 31969,
+ "計": 31970,
+ "遠": 31971,
+ "교": 31972,
+ "재": 31973,
+ "候": 31974,
+ "房": 31975,
+ "명": 31976,
+ "两": 31977,
+ "ფ": 31978,
+ "才": 31979,
+ "합": 31980,
+ "止": 31981,
+ "番": 31982,
+ "ɯ": 31983,
+ "奇": 31984,
+ "怪": 31985,
+ "联": 31986,
+ "역": 31987,
+ "泰": 31988,
+ "백": 31989,
+ "ὀ": 31990,
+ "げ": 31991,
+ "べ": 31992,
+ "边": 31993,
+ "还": 31994,
+ "黃": 31995,
+ "왕": 31996,
+ "收": 31997,
+ "弘": 31998,
+ "给": 31999
+ },
+ "merges": [
+ "▁ t",
+ "e r",
+ "i n",
+ "▁ a",
+ "e n",
+ "o n",
+ "▁t h",
+ "▁ th",
+ "e s",
+ "▁ s",
+ "▁ d",
+ "a t",
+ "o r",
+ "a n",
+ "▁ c",
+ "i s",
+ "r e",
+ "i t",
+ "▁t he",
+ "▁th e",
+ "▁ the",
+ "a r",
+ "l e",
+ "▁ w",
+ "▁ p",
+ "o u",
+ "a l",
+ "▁ f",
+ "▁ m",
+ "e d",
+ "▁ o",
+ "▁ b",
+ "o m",
+ "io n",
+ "i on",
+ "in g",
+ "i ng",
+ "i c",
+ "a s",
+ "e l",
+ "en t",
+ "e nt",
+ "▁i n",
+ "▁ in",
+ "▁ h",
+ "n d",
+ "e t",
+ "▁ l",
+ "▁ n",
+ "s t",
+ "▁t o",
+ "▁ to",
+ "c h",
+ "▁ I",
+ "r o",
+ "i l",
+ "▁o f",
+ "▁ of",
+ "d e",
+ "c t",
+ "▁ (",
+ "a m",
+ "▁ C",
+ "▁d e",
+ "▁ de",
+ "▁ S",
+ "▁ u",
+ "▁ A",
+ "▁ \\",
+ "▁ e",
+ "▁a nd",
+ "▁an d",
+ "▁ and",
+ "▁ T",
+ "o l",
+ "▁ v",
+ "i m",
+ "o t",
+ "a d",
+ "u t",
+ "▁ g",
+ "e m",
+ "u r",
+ "i d",
+ "▁ *",
+ "i g",
+ "r a",
+ "▁r e",
+ "▁ re",
+ "▁i s",
+ "▁ is",
+ "q u",
+ "o w",
+ "▁ M",
+ "es t",
+ "e st",
+ "▁ y",
+ "s e",
+ "v e",
+ "c e",
+ "i e",
+ "u n",
+ "▁ P",
+ "▁ B",
+ "a g",
+ "u l",
+ "▁ =",
+ "h e",
+ "en d",
+ "e nd",
+ "od e",
+ "o de",
+ "te r",
+ "t er",
+ "me nt",
+ "men t",
+ "m ent",
+ "o s",
+ "▁ D",
+ "i f",
+ "at ion",
+ "ati on",
+ "atio n",
+ "a tion",
+ "▁f or",
+ "▁fo r",
+ "▁ for",
+ "▁ r",
+ "▁ L",
+ "▁y ou",
+ "▁yo u",
+ "▁ you",
+ "▁b e",
+ "▁ be",
+ "l y",
+ "ve r",
+ "v er",
+ "a b",
+ "t e",
+ "▁i t",
+ "▁ it",
+ "▁o n",
+ "▁ on",
+ "r i",
+ "u s",
+ "▁ \"",
+ "▁w h",
+ "▁ wh",
+ "▁c on",
+ "▁co n",
+ "▁ con",
+ "▁ H",
+ "▁s t",
+ "▁ st",
+ "i r",
+ "▁ E",
+ "▁ F",
+ "c k",
+ "▁a n",
+ "▁ an",
+ "t h",
+ "e g",
+ "a y",
+ "it h",
+ "i th",
+ "▁ R",
+ "is t",
+ "i st",
+ "an d",
+ "a nd",
+ "▁t hat",
+ "▁th at",
+ "▁ that",
+ "▁a l",
+ "▁ al",
+ "▁ $",
+ "▁ #",
+ "o d",
+ "u m",
+ "▁ W",
+ "h t",
+ "co de",
+ "cod e",
+ "c ode",
+ "▁ G",
+ "at e",
+ "a te",
+ "es s",
+ "e ss",
+ "▁ N",
+ "er e",
+ "e re",
+ "p p",
+ "▁a s",
+ "▁ as",
+ "▁s e",
+ "▁ se",
+ "▁p ro",
+ "▁pr o",
+ "▁ pro",
+ "▁w ith",
+ "▁wit h",
+ "▁ with",
+ "p e",
+ "▁ k",
+ "er s",
+ "e rs",
+ "p t",
+ ") ;",
+ "l o",
+ "▁c om",
+ "▁co m",
+ "▁ com",
+ "am e",
+ "a me",
+ "▁ `",
+ "▁C om",
+ "▁Co m",
+ "▁ Com",
+ "i a",
+ "an t",
+ "a nt",
+ "▁l a",
+ "▁ la",
+ "▁ {",
+ "▁e n",
+ "▁ en",
+ "ct ion",
+ "c tion",
+ "▁e x",
+ "▁ ex",
+ "l d",
+ "u b",
+ "▁ j",
+ "l a",
+ "u e",
+ "▁ J",
+ "ic h",
+ "i ch",
+ "▁d o",
+ "▁ do",
+ "▁ O",
+ "▁q u",
+ "▁ qu",
+ "i v",
+ "or t",
+ "o rt",
+ "ar t",
+ "a rt",
+ "▁u n",
+ "▁ un",
+ "▁# #",
+ "▁ ##",
+ "▁t his",
+ "▁th is",
+ "▁ this",
+ "k e",
+ "▁h a",
+ "▁ ha",
+ "▁ -",
+ "ou t",
+ "o ut",
+ "▁T he",
+ "▁Th e",
+ "▁ The",
+ "▁n ot",
+ "▁no t",
+ "▁ not",
+ "▁n e",
+ "▁ ne",
+ "il l",
+ "i ll",
+ "▁l e",
+ "▁ le",
+ "c i",
+ "ro m",
+ "r om",
+ "in e",
+ "i ne",
+ "/ /",
+ "o p",
+ "eg in",
+ "e gin",
+ "▁Com ment",
+ "▁Comm ent",
+ "▁ Comment",
+ "be gin",
+ "beg in",
+ "b egin",
+ "с т",
+ "as s",
+ "a ss",
+ "i z",
+ ") .",
+ "o g",
+ "▁ п",
+ "▁o r",
+ "▁ or",
+ "▁w as",
+ "▁wa s",
+ "▁ was",
+ "▁a t",
+ "▁ at",
+ "ou r",
+ "o ur",
+ "▁ i",
+ "ai n",
+ "a in",
+ "▁ K",
+ "н а",
+ "▁ V",
+ "g e",
+ "▁s u",
+ "▁ su",
+ "a p",
+ "ag e",
+ "a ge",
+ "ou ld",
+ "oul d",
+ "o uld",
+ "n e",
+ "a v",
+ "x t",
+ "or e",
+ "o re",
+ "il e",
+ "i le",
+ "- -",
+ "▁ в",
+ "▁b y",
+ "▁ by",
+ "l i",
+ "at h",
+ "a th",
+ "р а",
+ "be r",
+ "b er",
+ "ac h",
+ "a ch",
+ "al l",
+ "a ll",
+ "▁T h",
+ "▁ Th",
+ "ul t",
+ "u lt",
+ "▁ }",
+ "▁ U",
+ "▁u s",
+ "▁ us",
+ "▁ z",
+ "us t",
+ "u st",
+ "▁h ave",
+ "▁ha ve",
+ "▁hav e",
+ "▁ have",
+ "li c",
+ "l ic",
+ "н и",
+ "▁c an",
+ "▁ca n",
+ "▁ can",
+ "t r",
+ "co m",
+ "c om",
+ ") ,",
+ "▁I n",
+ "▁ In",
+ "in d",
+ "i nd",
+ "el l",
+ "e ll",
+ "▁f rom",
+ "▁fr om",
+ "▁fro m",
+ "▁ from",
+ "о в",
+ "t o",
+ "▁ [",
+ "ab le",
+ "abl e",
+ "a ble",
+ "os t",
+ "o st",
+ "▁c h",
+ "▁ ch",
+ "ec t",
+ "e ct",
+ "ig ht",
+ "igh t",
+ "in t",
+ "i nt",
+ "▁ '",
+ "▁a re",
+ "▁ar e",
+ "▁ are",
+ "▁i m",
+ "▁ im",
+ "▁s h",
+ "▁ sh",
+ "▁ <",
+ "▁A n",
+ "▁ An",
+ "▁ с",
+ "at a",
+ "a ta",
+ "ir e",
+ "i re",
+ "▁t r",
+ "▁ tr",
+ "co n",
+ "c on",
+ "or d",
+ "o rd",
+ "it y",
+ "i ty",
+ "ar d",
+ "a rd",
+ "▁h e",
+ "▁ he",
+ "▁b ut",
+ "▁bu t",
+ "▁ but",
+ "o c",
+ "= \"",
+ "▁p r",
+ "▁ pr",
+ "ur e",
+ "u re",
+ "pe r",
+ "p er",
+ "ac k",
+ "a ck",
+ "or k",
+ "on g",
+ "o ng",
+ "an s",
+ "a ns",
+ "к о",
+ "pl e",
+ "p le",
+ "▁d es",
+ "▁de s",
+ "▁ des",
+ "o k",
+ "or m",
+ "o rm",
+ "we r",
+ "w er",
+ "a k",
+ "p r",
+ "as e",
+ "a se",
+ "▁e l",
+ "▁ el",
+ "p h",
+ "a c",
+ "▁u nd",
+ "▁un d",
+ "▁ und",
+ "▁a r",
+ "▁ ar",
+ "▁i f",
+ "▁ if",
+ "u d",
+ "p s",
+ "it e",
+ "i te",
+ "bl e",
+ "b le",
+ "н о",
+ "fe r",
+ "f er",
+ "p l",
+ "iv e",
+ "i ve",
+ "an g",
+ "a ng",
+ "en s",
+ "e ns",
+ "р о",
+ "▁s o",
+ "▁ so",
+ "s o",
+ "as t",
+ "a st",
+ "( )",
+ "sw er",
+ "s wer",
+ "r u",
+ "ie s",
+ "i es",
+ "▁ :",
+ "a u",
+ "o v",
+ "р е",
+ "г о",
+ "▁d er",
+ "▁de r",
+ "▁ der",
+ "▁m y",
+ "▁ my",
+ "▁w e",
+ "▁ we",
+ "▁m e",
+ "▁ me",
+ "n t",
+ "▁a d",
+ "▁ ad",
+ "ur n",
+ "u rn",
+ "▁y our",
+ "▁you r",
+ "▁yo ur",
+ "▁ your",
+ ":/ /",
+ ": //",
+ "ar e",
+ "a re",
+ "▁a ll",
+ "▁al l",
+ "▁ all",
+ "f f",
+ "i o",
+ "es tion",
+ "est ion",
+ "esti on",
+ "im e",
+ "i me",
+ "▁e r",
+ "▁ er",
+ "la ss",
+ "las s",
+ "l ass",
+ "▁ и",
+ "▁wh ich",
+ "▁ which",
+ "om e",
+ "o me",
+ "on t",
+ "o nt",
+ "▁p ar",
+ "▁pa r",
+ "▁ par",
+ "▁m a",
+ "▁ ma",
+ "▁ Y",
+ "\" ,",
+ "▁ о",
+ "f t",
+ "ia l",
+ "i al",
+ "c c",
+ "ou nd",
+ "oun d",
+ "o und",
+ "▁l i",
+ "▁ li",
+ "▁re s",
+ "▁r es",
+ "▁ res",
+ "et h",
+ "e th",
+ "je ct",
+ "j ect",
+ "▁a pp",
+ "▁ap p",
+ "▁ app",
+ "▁S t",
+ "▁ St",
+ "ic e",
+ "i ce",
+ "▁a m",
+ "▁ am",
+ "ac t",
+ "a ct",
+ "▁d el",
+ "▁de l",
+ "▁ del",
+ "g r",
+ "at ed",
+ "ate d",
+ "a ted",
+ "ie r",
+ "i er",
+ "▁a b",
+ "▁ ab",
+ "▁e t",
+ "▁ et",
+ "al ly",
+ "all y",
+ ". .",
+ "po rt",
+ "por t",
+ "p ort",
+ "i k",
+ "▁p er",
+ "▁pe r",
+ "▁ per",
+ "▁c ont",
+ "▁con t",
+ "▁co nt",
+ "▁ cont",
+ "р и",
+ "к а",
+ "se r",
+ "s er",
+ "л и",
+ "l l",
+ "ie w",
+ "i ew",
+ "ig n",
+ "i gn",
+ "_ {",
+ "pu t",
+ "p ut",
+ "on e",
+ "o ne",
+ "un ction",
+ "unc tion",
+ "unct ion",
+ "▁d i",
+ "▁ di",
+ "ar y",
+ "a ry",
+ "it ion",
+ "iti on",
+ "i tion",
+ "m a",
+ "е н",
+ "ge t",
+ "g et",
+ "▁l o",
+ "▁ lo",
+ "▁v al",
+ "▁va l",
+ "▁ val",
+ "▁ Q",
+ "ra n",
+ "r an",
+ "▁ д",
+ "en ce",
+ "enc e",
+ "▁w ork",
+ "▁wor k",
+ "▁ work",
+ "▁н а",
+ "▁ на",
+ "i p",
+ "it em",
+ "ite m",
+ "i tem",
+ "yp e",
+ "y pe",
+ "▁ &",
+ "▁h is",
+ "▁hi s",
+ "▁ his",
+ "▁u se",
+ "▁us e",
+ "▁ use",
+ "de r",
+ "d er",
+ "▁An swer",
+ "▁Ans wer",
+ "▁ Answer",
+ "▁w ill",
+ "▁wil l",
+ "▁ will",
+ "iz e",
+ "i ze",
+ "т а",
+ "lo w",
+ "l ow",
+ "▁C h",
+ "▁ Ch",
+ "▁g et",
+ "▁ge t",
+ "▁ get",
+ "id e",
+ "i de",
+ "ou s",
+ "o us",
+ "in k",
+ "pt ion",
+ "p tion",
+ "л а",
+ "tu rn",
+ "t urn",
+ "un g",
+ "u ng",
+ "e c",
+ "u g",
+ "fo rm",
+ "for m",
+ "f orm",
+ "re s",
+ "r es",
+ "ht t",
+ "h tt",
+ "ou g",
+ "o ug",
+ "л ь",
+ "▁n o",
+ "▁ no",
+ "c l",
+ "▁r o",
+ "▁ ro",
+ "▁o ne",
+ "▁on e",
+ "▁ one",
+ "t t",
+ "cr i",
+ "c ri",
+ "d u",
+ "▁u p",
+ "▁ up",
+ "т о",
+ "( \"",
+ "▁o b",
+ "▁ ob",
+ "w e",
+ "or y",
+ "o ry",
+ "▁e st",
+ "▁es t",
+ "▁ est",
+ "er y",
+ "e ry",
+ "ie l",
+ "i el",
+ "st r",
+ "s tr",
+ "o b",
+ "▁qu e",
+ "▁q ue",
+ "▁ que",
+ "ia n",
+ "i an",
+ "▁o ut",
+ "▁ou t",
+ "▁ out",
+ "▁p l",
+ "▁ pl",
+ "▁n ew",
+ "▁ne w",
+ "▁ new",
+ "к и",
+ "▁ +",
+ "r y",
+ "ot h",
+ "o th",
+ "th er",
+ "the r",
+ "t her",
+ "▁v ar",
+ "▁va r",
+ "▁ var",
+ "▁w ould",
+ "▁wo uld",
+ "▁s er",
+ "▁se r",
+ "▁ ser",
+ "ter n",
+ "te rn",
+ "t ern",
+ "te xt",
+ "tex t",
+ "t ext",
+ "▁t here",
+ "▁th ere",
+ "▁the re",
+ "▁ther e",
+ "▁ there",
+ "is h",
+ "i sh",
+ "ro r",
+ "r or",
+ "т е",
+ "▁s et",
+ "▁se t",
+ "▁ set",
+ "▁ @",
+ "▁п о",
+ "▁ по",
+ "▁t e",
+ "▁ te",
+ "e x",
+ "▁re turn",
+ "▁ret urn",
+ "▁ return",
+ "ai l",
+ "a il",
+ "▁a ny",
+ "▁an y",
+ "▁ any",
+ "▁I t",
+ "▁ It",
+ "▁f unction",
+ "▁fun ction",
+ "▁func tion",
+ "▁ function",
+ "{ \\",
+ "' ,",
+ "é s",
+ "al e",
+ "a le",
+ "а н",
+ "▁w hen",
+ "▁wh en",
+ "▁whe n",
+ "▁ when",
+ "i b",
+ "▁g o",
+ "▁ go",
+ "an ce",
+ "anc e",
+ "▁h ad",
+ "▁ha d",
+ "▁ had",
+ "▁Q u",
+ "▁ Qu",
+ "▁c omp",
+ "▁com p",
+ "▁co mp",
+ "▁ comp",
+ "л е",
+ "▁ з",
+ "ma th",
+ "mat h",
+ "m ath",
+ "▁h as",
+ "▁ha s",
+ "▁ has",
+ "▁ м",
+ "▁p re",
+ "▁pr e",
+ "▁ pre",
+ "en er",
+ "ene r",
+ "e ner",
+ "▁p art",
+ "▁par t",
+ "▁pa rt",
+ "▁ part",
+ "el f",
+ "▁d ie",
+ "▁di e",
+ "▁ die",
+ "▁l ike",
+ "▁li ke",
+ "▁lik e",
+ "▁ like",
+ "ra y",
+ "r ay",
+ "ir st",
+ "irs t",
+ "▁d is",
+ "▁di s",
+ "▁ dis",
+ "▁m an",
+ "▁ma n",
+ "▁ man",
+ "ri t",
+ "r it",
+ "▁t hen",
+ "▁th en",
+ "▁the n",
+ "▁ then",
+ "▁c lass",
+ "▁cl ass",
+ "▁cla ss",
+ "▁clas s",
+ "▁ class",
+ "pr o",
+ "p ro",
+ "▁p o",
+ "▁ po",
+ "▁u sing",
+ "▁us ing",
+ "▁ using",
+ "e b",
+ "▁c ode",
+ "▁co de",
+ "▁cod e",
+ "▁ code",
+ "ow n",
+ "o wn",
+ "▁s ome",
+ "▁so me",
+ "▁som e",
+ "▁ some",
+ "ce s",
+ "c es",
+ "▁$ \\",
+ "▁ $\\",
+ "е р",
+ "le ct",
+ "l ect",
+ "▁a u",
+ "▁ au",
+ "is ch",
+ "isc h",
+ "i sch",
+ "▁c ol",
+ "▁co l",
+ "▁ col",
+ "▁ –",
+ "u p",
+ "on s",
+ "o ns",
+ "▁a dd",
+ "▁ad d",
+ "▁ add",
+ "il d",
+ "i ld",
+ "is s",
+ "i ss",
+ "va l",
+ "v al",
+ "ou nt",
+ "oun t",
+ "o unt",
+ "le s",
+ "l es",
+ "ve nt",
+ "ven t",
+ "v ent",
+ "▁ Z",
+ "I n",
+ "ro w",
+ "r ow",
+ "ea r",
+ "e ar",
+ "at ions",
+ "ation s",
+ "ati ons",
+ "atio ns",
+ "a h",
+ "qu e",
+ "q ue",
+ "ub lic",
+ "u blic",
+ "an k",
+ "▁s p",
+ "▁ sp",
+ "▁W h",
+ "▁ Wh",
+ "-- --",
+ "--- -",
+ "- ---",
+ "s k",
+ "e w",
+ "ag s",
+ "a gs",
+ "т и",
+ "an n",
+ "a nn",
+ "▁ —",
+ "er t",
+ "e rt",
+ "ac e",
+ "a ce",
+ "sc h",
+ "s ch",
+ "▁n eed",
+ "▁ne ed",
+ "▁ need",
+ "▁ à",
+ "ie n",
+ "i en",
+ "ou gh",
+ "oug h",
+ "o ugh",
+ "н е",
+ "▁d ef",
+ "▁de f",
+ "▁ def",
+ "i j",
+ "er n",
+ "e rn",
+ "▁w hat",
+ "▁wh at",
+ "▁ what",
+ "▁A r",
+ "▁ Ar",
+ "w o",
+ "m l",
+ "< /",
+ "▁R e",
+ "▁ Re",
+ "▁e s",
+ "▁ es",
+ "▁in st",
+ "▁ins t",
+ "▁ inst",
+ "b o",
+ "a z",
+ "▁# ##",
+ "▁## #",
+ "▁ б",
+ "er m",
+ "e rm",
+ "▁A l",
+ "▁ Al",
+ "le d",
+ "l ed",
+ "д а",
+ "te n",
+ "t en",
+ "se t",
+ "s et",
+ "л о",
+ "▁c omm",
+ "▁com m",
+ "▁co mm",
+ "▁ comm",
+ "s h",
+ "в а",
+ "▁ /",
+ "▁d ata",
+ "▁da ta",
+ "▁dat a",
+ "▁ data",
+ "▁/ /",
+ "▁ //",
+ "] (",
+ "▁s tr",
+ "▁st r",
+ "▁ str",
+ "os e",
+ "o se",
+ "▁U n",
+ "▁ Un",
+ "ve n",
+ "v en",
+ "S t",
+ ".. .",
+ ". ..",
+ "▁ С",
+ "ys t",
+ "y st",
+ "▁ «",
+ "ic k",
+ "i ck",
+ "i x",
+ "pa r",
+ "p ar",
+ "▁ у",
+ "▁w ant",
+ "▁wa nt",
+ "n g",
+ "ot e",
+ "o te",
+ "▁g r",
+ "▁ gr",
+ "▁d u",
+ "▁ du",
+ "▁ .",
+ "un d",
+ "u nd",
+ "▁on ly",
+ "▁ only",
+ "▁s a",
+ "▁ sa",
+ "el y",
+ "e ly",
+ "ve rs",
+ "ver s",
+ "v ers",
+ "▁e nt",
+ "▁en t",
+ "▁ ent",
+ ") )",
+ "( '",
+ "▁m od",
+ "▁mo d",
+ "▁ mod",
+ "av a",
+ "a va",
+ "to n",
+ "t on",
+ "▁sh ould",
+ "▁sho uld",
+ "▁ should",
+ "em ent",
+ "eme nt",
+ "emen t",
+ "e ment",
+ "▁f orm",
+ "▁for m",
+ "▁fo rm",
+ "▁ form",
+ "▁al so",
+ "▁als o",
+ "▁ also",
+ "▁s c",
+ "▁ sc",
+ "in gs",
+ "ing s",
+ "▁Y ou",
+ "▁ You",
+ "ó n",
+ "▁k n",
+ "▁ kn",
+ "() ;",
+ "( );",
+ "▁ |",
+ "▁w ere",
+ "▁we re",
+ "▁wer e",
+ "s s",
+ "▁Qu estion",
+ "▁ Question",
+ "is e",
+ "i se",
+ "▁th ey",
+ "▁the y",
+ "▁ they",
+ "▁D e",
+ "▁ De",
+ "on d",
+ "o nd",
+ "▁s ol",
+ "▁so l",
+ "▁ sol",
+ "▁f ol",
+ "▁fo l",
+ "▁ fol",
+ "▁m ore",
+ "▁mo re",
+ "▁mor e",
+ "▁ more",
+ "▁h er",
+ "▁he r",
+ "▁ her",
+ "▁ _",
+ "▁ é",
+ "at ch",
+ "ft er",
+ "fte r",
+ "f ter",
+ "▁c re",
+ "▁cr e",
+ "▁ cre",
+ "lo ck",
+ "loc k",
+ "l ock",
+ "tr ing",
+ "tri ng",
+ "t ring",
+ "▁T his",
+ "▁Th is",
+ "▁ This",
+ "z e",
+ "ad o",
+ "a do",
+ "ul l",
+ "u ll",
+ "ge r",
+ "g er",
+ "b e",
+ "▁o ther",
+ "▁ot her",
+ "▁ other",
+ "▁T ags",
+ "▁Tag s",
+ "▁Ta gs",
+ "▁ Tags",
+ "ut ion",
+ "uti on",
+ "u tion",
+ "ic t",
+ "i ct",
+ "▁h ow",
+ "▁ho w",
+ "▁ how",
+ "▁ x",
+ "▁S e",
+ "▁ Se",
+ "▁c he",
+ "▁ch e",
+ "▁ che",
+ "cri pt",
+ "cr ipt",
+ "▁j ust",
+ "▁ju st",
+ "▁ just",
+ "▁p os",
+ "▁po s",
+ "▁ pos",
+ "an ge",
+ "ang e",
+ "if ic",
+ "ifi c",
+ "i fic",
+ "re e",
+ "r ee",
+ "} }",
+ "▁t ime",
+ "▁tim e",
+ "▁ti me",
+ "▁ time",
+ "ap p",
+ "a pp",
+ "н ы",
+ "▁f ile",
+ "▁fil e",
+ "▁fi le",
+ "▁ file",
+ "ar k",
+ "ic al",
+ "ica l",
+ "i cal",
+ "▁f irst",
+ "▁fir st",
+ "▁ first",
+ "▁in t",
+ "▁i nt",
+ "▁ int",
+ "▁ В",
+ "▁H e",
+ "▁ He",
+ "t a",
+ "um ent",
+ "ume nt",
+ "umen t",
+ "u ment",
+ "or s",
+ "o rs",
+ "le ment",
+ "lem ent",
+ "l ement",
+ "ra c",
+ "r ac",
+ "▁a g",
+ "▁ ag",
+ "▁do es",
+ "▁ does",
+ "y n",
+ "re ad",
+ "rea d",
+ "r ead",
+ "ua l",
+ "u al",
+ "▁L e",
+ "▁ Le",
+ "y s",
+ "▁e m",
+ "▁ em",
+ "▁n um",
+ "▁nu m",
+ "▁ num",
+ "ve l",
+ "v el",
+ "д и",
+ "ov er",
+ "ove r",
+ "o ver",
+ "▁d if",
+ "▁di f",
+ "et hod",
+ "eth od",
+ "▁I f",
+ "▁ If",
+ "▁s pe",
+ "▁sp e",
+ "▁ spe",
+ "y m",
+ "▁t hem",
+ "▁th em",
+ "▁the m",
+ "▁in to",
+ "▁int o",
+ "▁ into",
+ "▁l es",
+ "▁le s",
+ "▁ les",
+ "▁it s",
+ "▁i ts",
+ "▁ its",
+ "es e",
+ "e se",
+ "ie ld",
+ "iel d",
+ "i eld",
+ "▁p ublic",
+ "▁pub lic",
+ "▁pu blic",
+ "▁publi c",
+ "▁ public",
+ "▁ П",
+ "▁d en",
+ "▁de n",
+ "▁ den",
+ "yst em",
+ "ys tem",
+ "o f",
+ "▁o ver",
+ "▁ov er",
+ "▁ over",
+ "- >",
+ "▁f il",
+ "▁fi l",
+ "▁ fil",
+ "na me",
+ "nam e",
+ "n ame",
+ "in al",
+ "ina l",
+ "i nal",
+ "▁i l",
+ "▁ il",
+ "am ple",
+ "amp le",
+ "▁w ay",
+ "▁wa y",
+ "▁ way",
+ "ic a",
+ "i ca",
+ "в о",
+ "ce ss",
+ "ces s",
+ "c ess",
+ "it t",
+ "i tt",
+ "uc h",
+ "u ch",
+ "▁w here",
+ "▁wh ere",
+ "▁whe re",
+ "▁ where",
+ "м и",
+ "or g",
+ "o rg",
+ "htt ps",
+ "http s",
+ "▁v o",
+ "▁ vo",
+ "ie nt",
+ "ien t",
+ "i ent",
+ "ov e",
+ "o ve",
+ "▁val ue",
+ "▁valu e",
+ "▁ value",
+ "en g",
+ "e ng",
+ "▁L a",
+ "▁ La",
+ "^ {",
+ "re f",
+ "r ef",
+ "ie d",
+ "i ed",
+ "E R",
+ "▁s tat",
+ "▁st at",
+ "▁sta t",
+ "▁ stat",
+ "fi g",
+ "f ig",
+ "m e",
+ "▁v on",
+ "▁vo n",
+ "▁ von",
+ "▁in ter",
+ "▁int er",
+ "▁inte r",
+ "▁ inter",
+ "ro id",
+ "r oid",
+ "at er",
+ "ate r",
+ "a ter",
+ "▁the ir",
+ "▁b et",
+ "▁be t",
+ "▁ bet",
+ "▁e in",
+ "▁ ein",
+ "} \\",
+ "\" >",
+ "▁s ub",
+ "▁su b",
+ "▁ sub",
+ "▁o p",
+ "▁ op",
+ "▁d on",
+ "▁do n",
+ "▁ don",
+ "t y",
+ "▁t ry",
+ "▁tr y",
+ "▁ try",
+ "▁P ro",
+ "▁Pr o",
+ "▁ Pro",
+ "▁t ra",
+ "▁tr a",
+ "▁ tra",
+ "▁s ame",
+ "▁sa me",
+ "▁sam e",
+ "▁ same",
+ "e p",
+ "▁t wo",
+ "▁tw o",
+ "▁ two",
+ "▁n ame",
+ "▁na me",
+ "▁nam e",
+ "▁ name",
+ "ol d",
+ "o ld",
+ "le t",
+ "l et",
+ "▁s im",
+ "▁si m",
+ "▁ sim",
+ "s p",
+ "▁a v",
+ "▁ av",
+ "br e",
+ "b re",
+ "ble m",
+ "bl em",
+ "b lem",
+ "e y",
+ "▁c ould",
+ "▁co uld",
+ "▁cou ld",
+ "▁ could",
+ "▁c or",
+ "▁co r",
+ "▁ cor",
+ "▁a cc",
+ "▁ac c",
+ "▁ acc",
+ "ay s",
+ "a ys",
+ "cr e",
+ "c re",
+ "ur r",
+ "u rr",
+ "s i",
+ "▁con st",
+ "▁cons t",
+ "▁ const",
+ "ue s",
+ "u es",
+ "} $",
+ "V iew",
+ "▁a ct",
+ "▁ac t",
+ "▁ act",
+ "▁b o",
+ "▁ bo",
+ "▁к о",
+ "▁ ко",
+ "▁s om",
+ "▁so m",
+ "▁ som",
+ "▁ab out",
+ "▁ about",
+ "la nd",
+ "lan d",
+ "l and",
+ "me r",
+ "m er",
+ "▁l ist",
+ "▁li st",
+ "▁ list",
+ "ca l",
+ "c al",
+ "▁im port",
+ "▁imp ort",
+ "▁ import",
+ "co l",
+ "c ol",
+ "▁n a",
+ "▁ na",
+ "n a",
+ ": :",
+ "▁w ho",
+ "▁wh o",
+ "▁ who",
+ "▁e rror",
+ "▁er ror",
+ "▁err or",
+ "▁ error",
+ "▁ X",
+ "at or",
+ "ato r",
+ "a tor",
+ "ex t",
+ "e xt",
+ "▁b een",
+ "▁be en",
+ "é r",
+ "▁r un",
+ "▁ru n",
+ "▁ run",
+ "po s",
+ "p os",
+ "▁c l",
+ "▁ cl",
+ "* *",
+ "▁ К",
+ "ul ar",
+ "ula r",
+ "u lar",
+ "au se",
+ "aus e",
+ "a use",
+ "▁re g",
+ "▁r eg",
+ "▁ reg",
+ "▁k now",
+ "▁kn ow",
+ "▁ know",
+ "▁s ee",
+ "▁se e",
+ "▁ see",
+ "▁h im",
+ "▁hi m",
+ "▁ him",
+ "ni ng",
+ "n ing",
+ "▁з а",
+ "▁ за",
+ "at es",
+ "ate s",
+ "a tes",
+ "fo re",
+ "for e",
+ "f ore",
+ "ion s",
+ "io ns",
+ "i ons",
+ "▁h el",
+ "▁he l",
+ "▁ hel",
+ "ut e",
+ "u te",
+ "▁re m",
+ "▁r em",
+ "▁ rem",
+ "▁г о",
+ "▁ го",
+ "▁M ar",
+ "▁Ma r",
+ "▁ Mar",
+ "р у",
+ "vi ce",
+ "vic e",
+ "v ice",
+ "ir ect",
+ "ire ct",
+ "i rect",
+ "ne r",
+ "n er",
+ "▁u nder",
+ "▁un der",
+ "▁und er",
+ "▁ under",
+ "ri b",
+ "r ib",
+ "h r",
+ "ч е",
+ "▁A s",
+ "▁ As",
+ "▁e nd",
+ "▁en d",
+ "▁ end",
+ "em ber",
+ "emb er",
+ "▁ а",
+ "▁a tt",
+ "▁at t",
+ "▁ att",
+ "in a",
+ "i na",
+ "so n",
+ "s on",
+ "▁f ollow",
+ "▁fol low",
+ "▁ follow",
+ "▁S ch",
+ "▁Sc h",
+ "▁ Sch",
+ "pe ct",
+ "pec t",
+ "p ect",
+ "▁re l",
+ "▁r el",
+ "▁ rel",
+ "▁S o",
+ "▁ So",
+ "▁l ook",
+ "▁lo ok",
+ "▁ look",
+ "ab el",
+ "abe l",
+ "a bel",
+ "▁pro blem",
+ "▁prob lem",
+ "▁proble m",
+ "▁probl em",
+ "▁ problem",
+ "▁v an",
+ "▁va n",
+ "▁ van",
+ "st rong",
+ "str ong",
+ "c o",
+ "po n",
+ "p on",
+ "c a",
+ "ad a",
+ "a da",
+ "\" :",
+ "con d",
+ "co nd",
+ "c ond",
+ "am b",
+ "a mb",
+ "} ,",
+ "qu est",
+ "que st",
+ "ques t",
+ "q uest",
+ "▁a ut",
+ "▁au t",
+ "▁ aut",
+ "▁res ult",
+ "▁ result",
+ "▁m ay",
+ "▁ma y",
+ "▁ may",
+ "R e",
+ "ht tp",
+ "htt p",
+ "h ttp",
+ ") :",
+ "▁A nd",
+ "▁An d",
+ "▁ And",
+ "re d",
+ "r ed",
+ "▁H ow",
+ "▁Ho w",
+ "▁ How",
+ "p o",
+ "ск о",
+ "с ко",
+ "at t",
+ "a tt",
+ "ou p",
+ "o up",
+ "ce d",
+ "c ed",
+ "▁t ype",
+ "▁typ e",
+ "▁ty pe",
+ "▁ type",
+ "▁t han",
+ "▁th an",
+ "▁ than",
+ "▁c ons",
+ "▁con s",
+ "▁co ns",
+ "▁ cons",
+ "u f",
+ "ц и",
+ "▁qu estion",
+ "▁quest ion",
+ "▁questi on",
+ "▁ question",
+ "ra ph",
+ "rap h",
+ "r aph",
+ "ig h",
+ "i gh",
+ "▁ М",
+ "▁h tt",
+ "▁ htt",
+ "in s",
+ "i ns",
+ "de n",
+ "d en",
+ "▁d a",
+ "▁ da",
+ "▁v er",
+ "▁ve r",
+ "▁ ver",
+ "o h",
+ "▁= >",
+ "▁ =>",
+ "ri v",
+ "r iv",
+ "ud e",
+ "u de",
+ "▁F or",
+ "▁Fo r",
+ "▁ For",
+ "▁r a",
+ "▁ ra",
+ "fr ac",
+ "fra c",
+ "f rac",
+ "м а",
+ "▁a fter",
+ "▁af ter",
+ "▁ after",
+ "} {",
+ "▁m ethod",
+ "▁met hod",
+ "▁ method",
+ "\" )",
+ "am p",
+ "a mp",
+ "as h",
+ "a sh",
+ "▁re c",
+ "▁r ec",
+ "▁ rec",
+ "▁d iffer",
+ "▁dif fer",
+ "▁diff er",
+ "O N",
+ "a x",
+ "am ent",
+ "ame nt",
+ "amen t",
+ "a ment",
+ "our ce",
+ "Co n",
+ "C on",
+ "it s",
+ "i ts",
+ "Na me",
+ "N ame",
+ "ma n",
+ "m an",
+ "▁b ec",
+ "▁be c",
+ "▁ bec",
+ "ch e",
+ "c he",
+ "▁E n",
+ "▁ En",
+ "a j",
+ "▁g ener",
+ "▁ge ner",
+ "▁gen er",
+ "▁gene r",
+ "▁ gener",
+ "I N",
+ "▁i d",
+ "▁ id",
+ "ag es",
+ "age s",
+ "a ges",
+ "▁l oc",
+ "▁lo c",
+ "▁ loc",
+ "f o",
+ "b r",
+ "▁s he",
+ "▁sh e",
+ "▁ she",
+ "Pr o",
+ "P ro",
+ "▁u na",
+ "▁un a",
+ "▁ una",
+ "▁ к",
+ "et a",
+ "e ta",
+ "lo g",
+ "l og",
+ "ol og",
+ "olo g",
+ "o log",
+ "▁s ur",
+ "▁su r",
+ "▁ sur",
+ "ar g",
+ "a rg",
+ "▁- -",
+ "▁ --",
+ "k t",
+ "( \\",
+ "mi n",
+ "m in",
+ "▁l ine",
+ "▁li ne",
+ "▁lin e",
+ "▁ line",
+ "▁v ari",
+ "▁var i",
+ "▁va ri",
+ "▁ vari",
+ "с я",
+ "ic s",
+ "i cs",
+ "н я",
+ "ve ry",
+ "ver y",
+ "v ery",
+ "ad d",
+ "a dd",
+ "▁o bject",
+ "▁ob ject",
+ "▁obj ect",
+ "▁ object",
+ "I d",
+ "▁B ut",
+ "▁Bu t",
+ "▁ But",
+ "▁c ase",
+ "▁cas e",
+ "▁ca se",
+ "▁ case",
+ "▁m ake",
+ "▁ma ke",
+ "▁mak e",
+ "▁ make",
+ "▁c al",
+ "▁ca l",
+ "▁ cal",
+ "▁p ass",
+ "▁pas s",
+ "▁pa ss",
+ "▁ pass",
+ "с ь",
+ "ess ion",
+ "ne t",
+ "n et",
+ ". \"",
+ "▁ г",
+ "ä r",
+ "д е",
+ "n o",
+ "at ing",
+ "ati ng",
+ "atin g",
+ "a ting",
+ "at o",
+ "a to",
+ "li ne",
+ "lin e",
+ "l ine",
+ "в и",
+ "▁E x",
+ "▁ Ex",
+ "▁a ss",
+ "▁as s",
+ "▁ ass",
+ "▁v ers",
+ "▁ver s",
+ "▁ve rs",
+ "▁ vers",
+ "л я",
+ "▁e d",
+ "▁ ed",
+ "um n",
+ "u mn",
+ "ot her",
+ "oth er",
+ "othe r",
+ "o ther",
+ "ст а",
+ "с та",
+ "at ive",
+ "ativ e",
+ "ati ve",
+ "St ring",
+ "Str ing",
+ "S tring",
+ "▁l os",
+ "▁lo s",
+ "▁ los",
+ "w n",
+ "▁an swer",
+ "▁ans wer",
+ "▁ answer",
+ "▁l et",
+ "▁le t",
+ "▁ let",
+ "▁p e",
+ "▁ pe",
+ "en ts",
+ "ent s",
+ "▁f e",
+ "▁ fe",
+ "in ce",
+ "inc e",
+ "n i",
+ "id er",
+ "ide r",
+ "i der",
+ "ow s",
+ "o ws",
+ "▁t est",
+ "▁te st",
+ "▁ test",
+ "▁h ere",
+ "▁he re",
+ "▁her e",
+ "▁ here",
+ "ro ll",
+ "rol l",
+ "r oll",
+ "▁c all",
+ "▁cal l",
+ "▁ca ll",
+ "▁ call",
+ "ru ct",
+ "r uct",
+ "▁p ol",
+ "▁po l",
+ "▁ pol",
+ "ai t",
+ "a it",
+ "▁b ack",
+ "▁ba ck",
+ "▁ back",
+ "h o",
+ "E x",
+ "re ss",
+ "res s",
+ "r ess",
+ "S T",
+ "ri ed",
+ "rie d",
+ "r ied",
+ "da te",
+ "dat e",
+ "d ate",
+ "е т",
+ "▁d id",
+ "▁di d",
+ "▁ did",
+ "ti ng",
+ "t ing",
+ "▁E l",
+ "▁ El",
+ "▁d em",
+ "▁de m",
+ "▁ dem",
+ ") $",
+ "ов а",
+ "о ва",
+ "ur rent",
+ "urr ent",
+ "urre nt",
+ "la ce",
+ "lac e",
+ "l ace",
+ "rig ht",
+ "r ight",
+ "re n",
+ "r en",
+ "п о",
+ "▁e ach",
+ "▁ each",
+ "c y",
+ "bl ock",
+ "blo ck",
+ "b lock",
+ "da ta",
+ "dat a",
+ "d ata",
+ "▁ %",
+ "▁a c",
+ "▁ ac",
+ "▁= =",
+ "▁ ==",
+ "ü r",
+ "▁p or",
+ "▁po r",
+ "▁ por",
+ "as k",
+ "a sk",
+ "ar ch",
+ "arc h",
+ "am es",
+ "ame s",
+ "a mes",
+ "▁C on",
+ "▁Co n",
+ "▁ Con",
+ "ч а",
+ "▁o ff",
+ "▁of f",
+ "▁ off",
+ "▁f ind",
+ "▁fin d",
+ "▁fi nd",
+ "▁ find",
+ "con t",
+ "co nt",
+ "c ont",
+ "▁n ow",
+ "▁no w",
+ "▁ now",
+ "wor k",
+ "w ork",
+ "at ional",
+ "ation al",
+ "ati onal",
+ "atio nal",
+ "d d",
+ "ci ón",
+ "ció n",
+ "c ión",
+ "▁ А",
+ "au lt",
+ "a ult",
+ "Li st",
+ "L ist",
+ "▁e xt",
+ "▁ex t",
+ "▁ ext",
+ "ur s",
+ "u rs",
+ "ak e",
+ "a ke",
+ "ul e",
+ "u le",
+ "▁p oint",
+ "▁po int",
+ "▁poi nt",
+ "▁ point",
+ "A T",
+ "au t",
+ "a ut",
+ "▁tr ans",
+ "▁tra ns",
+ "▁tran s",
+ "▁ trans",
+ "▁c o",
+ "▁ co",
+ "▁re ad",
+ "▁r ead",
+ "▁ read",
+ "▁u sed",
+ "▁us ed",
+ "▁use d",
+ "▁ used",
+ "ск и",
+ "с ки",
+ "ar i",
+ "a ri",
+ "L E",
+ "et er",
+ "ete r",
+ "e ter",
+ "ou n",
+ "o un",
+ "ev er",
+ "e ver",
+ "sel f",
+ "s elf",
+ "in ed",
+ "ine d",
+ "i ned",
+ "id th",
+ "u x",
+ "j s",
+ "▁s uch",
+ "▁su ch",
+ "▁suc h",
+ "▁ such",
+ "▁I s",
+ "▁ Is",
+ "é e",
+ "fu l",
+ "f ul",
+ "▁d ist",
+ "▁di st",
+ "▁dis t",
+ "▁ dist",
+ "▁b u",
+ "▁ bu",
+ "item ize",
+ "Con t",
+ "Co nt",
+ "C ont",
+ "j e",
+ "с и",
+ "▁p rov",
+ "▁pro v",
+ "▁pr ov",
+ "▁ prov",
+ "b b",
+ "wa rd",
+ "war d",
+ "w ard",
+ "es ent",
+ "ese nt",
+ "esen t",
+ "e sent",
+ "er son",
+ "ers on",
+ "an ks",
+ "ank s",
+ "w h",
+ "no t",
+ "n ot",
+ "▁W e",
+ "▁ We",
+ "k a",
+ "ro p",
+ "r op",
+ "at ur",
+ "atu r",
+ "al s",
+ "a ls",
+ "▁b el",
+ "▁be l",
+ "▁ bel",
+ "ö r",
+ "f r",
+ "▁ex ample",
+ "▁exam ple",
+ "▁ example",
+ "▁in cl",
+ "▁inc l",
+ "am il",
+ "ami l",
+ "a mil",
+ "▁р а",
+ "▁ ра",
+ "▁ “",
+ "▁s tring",
+ "▁st ring",
+ "▁str ing",
+ "▁stri ng",
+ "▁ string",
+ "▁th ink",
+ "▁thin k",
+ "T h",
+ "▁t em",
+ "▁te m",
+ "▁ tem",
+ "av e",
+ "a ve",
+ "▁F ran",
+ "▁Fr an",
+ "▁Fra n",
+ "▁ Fran",
+ "▁n umber",
+ "▁num ber",
+ "▁ number",
+ "▁s i",
+ "▁ si",
+ "im es",
+ "ime s",
+ "i mes",
+ "te m",
+ "t em",
+ "m y",
+ "le r",
+ "l er",
+ "lo ad",
+ "= =",
+ "▁h and",
+ "▁ha nd",
+ "▁han d",
+ "▁ hand",
+ "z a",
+ "▁b ecause",
+ "▁bec ause",
+ "▁ because",
+ "▁s ch",
+ "▁sc h",
+ "▁ sch",
+ "v o",
+ "th is",
+ "t his",
+ "I D",
+ "ã o",
+ "▁st art",
+ "▁star t",
+ "▁sta rt",
+ "▁ start",
+ "▁w ar",
+ "▁wa r",
+ "▁ war",
+ "▁he lp",
+ "▁hel p",
+ "▁ help",
+ "t s",
+ "▁c har",
+ "▁ch ar",
+ "▁cha r",
+ "▁ char",
+ "▁p h",
+ "▁ ph",
+ "▁m in",
+ "▁mi n",
+ "▁ min",
+ "ti l",
+ "t il",
+ "ri te",
+ "rit e",
+ "r ite",
+ "-- ------",
+ "---- ----",
+ "--- -----",
+ "------ --",
+ "----- ---",
+ "------- -",
+ "- -------",
+ "el s",
+ "e ls",
+ "▁m it",
+ "▁mi t",
+ "▁ mit",
+ "ed ia",
+ "edi a",
+ "e dia",
+ "к у",
+ "▁S h",
+ "▁ Sh",
+ "an y",
+ "a ny",
+ "] ;",
+ "▁ Б",
+ "iqu e",
+ "i que",
+ "d a",
+ "e f",
+ "de x",
+ "d ex",
+ "▁p rodu",
+ "▁pro du",
+ "▁pr odu",
+ "▁prod u",
+ "▁ produ",
+ "▁ Н",
+ "gr am",
+ "gra m",
+ "g ram",
+ "▁O r",
+ "▁ Or",
+ "▁g re",
+ "▁gr e",
+ "▁ gre",
+ "qu ote",
+ "quot e",
+ "le g",
+ "l eg",
+ "or n",
+ "o rn",
+ "▁in d",
+ "▁i nd",
+ "▁ ind",
+ "▁p ost",
+ "▁po st",
+ "▁pos t",
+ "▁ post",
+ "▁d ep",
+ "▁de p",
+ "▁ dep",
+ "] ,",
+ "v i",
+ "▁u ser",
+ "▁us er",
+ "▁use r",
+ "▁ user",
+ "▁ >",
+ "li ck",
+ "lic k",
+ "l ick",
+ "▁v ery",
+ "▁ver y",
+ "▁ve ry",
+ "▁ very",
+ "et hing",
+ "eth ing",
+ "e thing",
+ "▁ar ray",
+ "▁arr ay",
+ "▁ array",
+ "▁g u",
+ "▁ gu",
+ "▁d ur",
+ "▁du r",
+ "` .",
+ "т ь",
+ "li cation",
+ "lic ation",
+ "lica tion",
+ "ст и",
+ "с ти",
+ "e k",
+ "ic o",
+ "i co",
+ "▁d at",
+ "▁da t",
+ "▁ dat",
+ "о р",
+ "ht ml",
+ "htm l",
+ "h tml",
+ "ion e",
+ "io ne",
+ "i one",
+ "▁d ifferent",
+ "▁differ ent",
+ "▁c heck",
+ "▁che ck",
+ "▁ check",
+ "▁f r",
+ "▁ fr",
+ "▁E r",
+ "▁ Er",
+ "▁t ext",
+ "▁te xt",
+ "▁tex t",
+ "▁ text",
+ "н і",
+ "ic ht",
+ "ich t",
+ "i cht",
+ "st ack",
+ "sta ck",
+ "E N",
+ "ra g",
+ "r ag",
+ "▁e very",
+ "▁ev ery",
+ "▁ever y",
+ "▁ every",
+ "A r",
+ "▁be fore",
+ "▁bef ore",
+ "▁ before",
+ "al se",
+ "als e",
+ "▁f in",
+ "▁fi n",
+ "▁ fin",
+ "▁d é",
+ "▁th ese",
+ "▁the se",
+ "▁d et",
+ "▁de t",
+ "▁ det",
+ "V al",
+ "ce ption",
+ "cept ion",
+ "cep tion",
+ "▁and roid",
+ "▁ android",
+ "block quote",
+ "▁j e",
+ "▁ je",
+ "fil e",
+ "fi le",
+ "f ile",
+ "at s",
+ "a ts",
+ "▁д о",
+ "▁ до",
+ "ess age",
+ "essa ge",
+ "▁ag ain",
+ "a w",
+ "C h",
+ "we en",
+ "w een",
+ "▁ Д",
+ "fo r",
+ "f or",
+ "ci al",
+ "cia l",
+ "c ial",
+ "pl ay",
+ "pla y",
+ "p lay",
+ "pr e",
+ "p re",
+ "id a",
+ "i da",
+ "▁P ar",
+ "▁Pa r",
+ "▁ Par",
+ "n y",
+ "ra ct",
+ "rac t",
+ "r act",
+ "▁s upp",
+ "▁su pp",
+ "▁sup p",
+ "▁ supp",
+ "as ed",
+ "ase d",
+ "a sed",
+ "le ction",
+ "lect ion",
+ "l ection",
+ "▁d ans",
+ "▁da ns",
+ "▁dan s",
+ "ai r",
+ "a ir",
+ "ro l",
+ "r ol",
+ "▁t hr",
+ "▁th r",
+ "Dat a",
+ "Da ta",
+ "D ata",
+ "li ch",
+ "lic h",
+ "l ich",
+ "▁п ро",
+ "▁пр о",
+ "▁ про",
+ "▁l ong",
+ "▁lo ng",
+ "▁lon g",
+ "▁ long",
+ "▁se cond",
+ "▁sec ond",
+ "▁ second",
+ "ual ly",
+ "u ally",
+ "in es",
+ "ine s",
+ "i nes",
+ "▁f ound",
+ "▁fo und",
+ "▁fou nd",
+ "▁ found",
+ "eng th",
+ "y p",
+ "ea d",
+ "e ad",
+ "▁l og",
+ "▁lo g",
+ "▁ log",
+ "u i",
+ "ne w",
+ "n ew",
+ "▁ Р",
+ "g o",
+ "au s",
+ "a us",
+ "od y",
+ "o dy",
+ "▁s on",
+ "▁so n",
+ "▁ son",
+ "м е",
+ "er o",
+ "e ro",
+ "ve d",
+ "v ed",
+ "su b",
+ "s ub",
+ "▁r ight",
+ "▁rig ht",
+ "▁ right",
+ "vi ew",
+ "vie w",
+ "v iew",
+ "▁follow ing",
+ "' )",
+ "\") ;",
+ "\" );",
+ "▁sa id",
+ "ж е",
+ "ч и",
+ "т у",
+ "ot t",
+ "o tt",
+ "с е",
+ "ar s",
+ "a rs",
+ "$ .",
+ "g g",
+ "▁b r",
+ "▁ br",
+ "oo l",
+ "o ol",
+ "yl e",
+ "y le",
+ "us e",
+ "u se",
+ "▁s how",
+ "▁sh ow",
+ "▁sho w",
+ "▁ show",
+ "le ase",
+ "lea se",
+ "ci a",
+ "c ia",
+ "▁d irect",
+ "▁di rect",
+ "▁dire ct",
+ "▁dir ect",
+ "▁ direct",
+ "do c",
+ "d oc",
+ "а р",
+ "m s",
+ "▁g iv",
+ "▁gi v",
+ "▁ giv",
+ "▁e xp",
+ "▁ex p",
+ "▁ exp",
+ "q l",
+ "д у",
+ "в е",
+ "▁B e",
+ "▁ Be",
+ "Co m",
+ "C om",
+ "it er",
+ "ite r",
+ "i ter",
+ "R E",
+ "m p",
+ "me n",
+ "m en",
+ "▁R o",
+ "▁ Ro",
+ "M A",
+ "▁C ol",
+ "▁Co l",
+ "▁ Col",
+ "is ter",
+ "ist er",
+ "iste r",
+ "i ster",
+ "▁w ell",
+ "▁we ll",
+ "▁wel l",
+ "▁ well",
+ "▁< /",
+ "▁ ",
+ "ay out",
+ "at ure",
+ "atur e",
+ "atu re",
+ "iv ers",
+ "ive rs",
+ "iver s",
+ "i vers",
+ "z y",
+ "▁н е",
+ "▁ не",
+ "▁m et",
+ "▁me t",
+ "▁ met",
+ "un e",
+ "u ne",
+ "yt h",
+ "y th",
+ "Ty pe",
+ "Typ e",
+ "T ype",
+ "▁e lement",
+ "▁el ement",
+ "▁ele ment",
+ "▁elem ent",
+ "▁ element",
+ "▁l ink",
+ "▁lin k",
+ "▁ link",
+ "mo d",
+ "m od",
+ "▁bet ween",
+ "▁ between",
+ "ce pt",
+ "cep t",
+ "qu ire",
+ "qui re",
+ "▁th rough",
+ "▁thr ough",
+ "▁thro ugh",
+ "▁ through",
+ "▁wh ile",
+ "▁ while",
+ "▁O n",
+ "▁ On",
+ "th e",
+ "t he",
+ "í a",
+ "▁s omething",
+ "▁some thing",
+ "▁som ething",
+ "▁somet hing",
+ "▁ something",
+ "vo l",
+ "v ol",
+ "▁m ost",
+ "▁mo st",
+ "▁mos t",
+ "▁ most",
+ "s c",
+ "us s",
+ "u ss",
+ "▁c ar",
+ "▁ca r",
+ "▁ car",
+ "▁s m",
+ "▁ sm",
+ "▁р о",
+ "▁ ро",
+ "an o",
+ "a no",
+ "le ft",
+ "lef t",
+ "l eft",
+ "v a",
+ "▁tr ue",
+ "▁ true",
+ "( $",
+ "em s",
+ "e ms",
+ "▁m uch",
+ "▁mu ch",
+ "á s",
+ "▁N ew",
+ "▁Ne w",
+ "▁ New",
+ "▁pro per",
+ "▁pr oper",
+ "▁prop er",
+ "er a",
+ "e ra",
+ "it ed",
+ "ite d",
+ "i ted",
+ "▁d oc",
+ "▁do c",
+ "▁ doc",
+ "ic es",
+ "ice s",
+ "i ces",
+ "Th e",
+ "T he",
+ "▁ ?",
+ "ст о",
+ "с то",
+ "f l",
+ "▁s pec",
+ "▁sp ec",
+ "▁spe c",
+ "▁ spec",
+ "en der",
+ "end er",
+ "ende r",
+ "e nder",
+ "wa y",
+ "w ay",
+ "▁s elf",
+ "▁sel f",
+ "▁ self",
+ "▁e ven",
+ "▁ev en",
+ "▁ even",
+ "і в",
+ "▁с е",
+ "▁ се",
+ "ни я",
+ "▁P r",
+ "▁ Pr",
+ "▁k e",
+ "▁ ke",
+ "em b",
+ "e mb",
+ "▁t able",
+ "▁tab le",
+ "▁ta ble",
+ "▁ table",
+ "▁e qu",
+ "▁eq u",
+ "▁ equ",
+ "li ent",
+ "lie nt",
+ "l ient",
+ "t d",
+ "par t",
+ "pa rt",
+ "p art",
+ "▁pr int",
+ "▁pri nt",
+ "▁prin t",
+ "▁ print",
+ "▁u ne",
+ "▁un e",
+ "▁ une",
+ "if y",
+ "▁- >",
+ "▁ ->",
+ "en e",
+ "e ne",
+ "▁m on",
+ "▁mo n",
+ "▁ mon",
+ "▁d ec",
+ "▁de c",
+ "▁ dec",
+ "▁st ill",
+ "▁о б",
+ "▁ об",
+ "▁T r",
+ "▁ Tr",
+ "▁ ф",
+ "if e",
+ "i fe",
+ "is m",
+ "i sm",
+ "b y",
+ "ra w",
+ "r aw",
+ "io r",
+ "i or",
+ "▁m ed",
+ "▁me d",
+ "▁ med",
+ "or ld",
+ "▁com ple",
+ "▁comp le",
+ "▁compl e",
+ "▁ comple",
+ "w w",
+ "▁a rt",
+ "▁ar t",
+ "▁ art",
+ "ro n",
+ "r on",
+ "▁ Г",
+ "▁M y",
+ "▁ My",
+ "▁a ls",
+ "▁al s",
+ "▁ als",
+ "re ct",
+ "rec t",
+ "r ect",
+ "▁a uf",
+ "▁au f",
+ "▁ auf",
+ "▁d own",
+ "▁do wn",
+ "▁dow n",
+ "▁ down",
+ "at her",
+ "ath er",
+ "a ther",
+ "Co l",
+ "C ol",
+ "Te xt",
+ "Tex t",
+ "T ext",
+ "ba ck",
+ "b ack",
+ "$ ,",
+ "▁y ear",
+ "▁ye ar",
+ "▁ year",
+ "м о",
+ "p i",
+ "▁G r",
+ "▁ Gr",
+ "re am",
+ "rea m",
+ "▁re p",
+ "▁r ep",
+ "▁ rep",
+ "b f",
+ "ww w",
+ "w ww",
+ "▁w ur",
+ "▁o rg",
+ "▁or g",
+ "▁ org",
+ "in ter",
+ "int er",
+ "inte r",
+ "▁D ie",
+ "▁Di e",
+ "▁ Die",
+ "▁b eing",
+ "▁be ing",
+ "▁bei ng",
+ "\" .",
+ "la bel",
+ "lab el",
+ "l abel",
+ "▁c ent",
+ "▁ce nt",
+ "▁ cent",
+ "ja va",
+ "jav a",
+ "j ava",
+ "ba r",
+ "b ar",
+ "an te",
+ "ant e",
+ "an a",
+ "a na",
+ "_ _",
+ "▁sol ution",
+ "▁ О",
+ "▁f l",
+ "▁ fl",
+ "▁c reate",
+ "▁cre ate",
+ "▁ create",
+ "ic i",
+ "i ci",
+ "st e",
+ "s te",
+ "yth on",
+ "yt hon",
+ "un t",
+ "u nt",
+ "as on",
+ "aso n",
+ "a son",
+ "fer ence",
+ "fe rence",
+ "S E",
+ "▁n on",
+ "▁no n",
+ "▁ non",
+ "an e",
+ "a ne",
+ "▁in s",
+ "▁i ns",
+ "▁ ins",
+ "ad er",
+ "ade r",
+ "a der",
+ "_{ \\",
+ "_ {\\",
+ "Re s",
+ "R es",
+ "▁m ain",
+ "▁ma in",
+ "▁mai n",
+ "▁ main",
+ "п и",
+ "▁T here",
+ "▁The re",
+ "▁Th ere",
+ "▁Ther e",
+ "▁ There",
+ "▁p our",
+ "▁po ur",
+ "▁pou r",
+ "R O",
+ "` ,",
+ "li sh",
+ "lis h",
+ "l ish",
+ "b ject",
+ "cc ess",
+ "c cess",
+ "▁o rig",
+ "▁or ig",
+ "▁ orig",
+ "is chen",
+ "isch en",
+ "ische n",
+ "isc hen",
+ "i schen",
+ "ow er",
+ "owe r",
+ "o wer",
+ "▁h et",
+ "▁he t",
+ "▁ het",
+ "u c",
+ "▁el se",
+ "▁els e",
+ "▁ else",
+ "» .",
+ "▁о т",
+ "▁ от",
+ "eq u",
+ "e qu",
+ "si ble",
+ "s ible",
+ "te st",
+ "tes t",
+ "t est",
+ "st and",
+ "sta nd",
+ "stan d",
+ "é n",
+ "et s",
+ "e ts",
+ "G E",
+ "id ent",
+ "ide nt",
+ "iden t",
+ "i dent",
+ "▁ е",
+ "▁п ри",
+ "▁пр и",
+ "▁ при",
+ ". ,",
+ "▁d as",
+ "▁da s",
+ "▁ das",
+ "oc k",
+ "o ck",
+ ", \"",
+ "▁v ol",
+ "▁vo l",
+ "▁ vol",
+ "▁f o",
+ "▁ fo",
+ "▁p ara",
+ "▁par a",
+ "▁pa ra",
+ "▁ para",
+ "▁ Т",
+ "▁C ar",
+ "▁Ca r",
+ "▁ Car",
+ "ra l",
+ "r al",
+ "▁S p",
+ "▁ Sp",
+ "va r",
+ "v ar",
+ "▁p lay",
+ "▁pl ay",
+ "▁pla y",
+ "▁ play",
+ "ou se",
+ "ous e",
+ "o use",
+ "▁т а",
+ "▁ та",
+ "ic ally",
+ "ical ly",
+ "▁con tain",
+ "▁cont ain",
+ "pon se",
+ "▁S tring",
+ "▁St ring",
+ "▁Str ing",
+ "▁ String",
+ "á n",
+ "▁b oth",
+ "▁bo th",
+ "▁bot h",
+ "▁ both",
+ "ke n",
+ "k en",
+ "A R",
+ "ер е",
+ "е ре",
+ "▁I l",
+ "▁ Il",
+ "▁is s",
+ "▁i ss",
+ "▁ iss",
+ "▁o pen",
+ "▁op en",
+ "▁ open",
+ "▁ )",
+ "▁W hat",
+ "▁Wh at",
+ "▁ What",
+ "f e",
+ "riv ate",
+ "re g",
+ "r eg",
+ "▁with out",
+ "▁ without",
+ "▁z u",
+ "▁ zu",
+ "vi s",
+ "v is",
+ "fl ow",
+ "f low",
+ "▁h ttp",
+ "▁htt p",
+ "▁ http",
+ "ab ase",
+ "aba se",
+ "a base",
+ "▁w ord",
+ "▁wor d",
+ "▁wo rd",
+ "▁ word",
+ "▁ch ange",
+ "▁chang e",
+ "▁ change",
+ "▁work s",
+ "▁wor ks",
+ "▁ works",
+ "▁g e",
+ "▁ ge",
+ "▁ !",
+ "▁e en",
+ "▁ een",
+ "it le",
+ "▁e vent",
+ "▁even t",
+ "▁ev ent",
+ "▁ event",
+ "wo rd",
+ "wor d",
+ "w ord",
+ "an do",
+ "and o",
+ "S B",
+ "re m",
+ "r em",
+ "▁f ield",
+ "▁fi eld",
+ "▁fiel d",
+ "▁ field",
+ "vi ng",
+ "vin g",
+ "v ing",
+ "Se r",
+ "S er",
+ "▁o ur",
+ "▁ou r",
+ "▁ our",
+ "▁qu i",
+ "▁q ui",
+ "▁ qui",
+ "▁o per",
+ "▁op er",
+ "▁ oper",
+ "▁is t",
+ "▁i st",
+ "▁ ist",
+ "de f",
+ "d ef",
+ "▁m ade",
+ "▁ma de",
+ "▁mad e",
+ "▁ made",
+ "ни е",
+ "p x",
+ "▁m en",
+ "▁me n",
+ "▁ men",
+ "r m",
+ "ai s",
+ "a is",
+ "ce nt",
+ "cen t",
+ "c ent",
+ "li st",
+ "lis t",
+ "l ist",
+ "T o",
+ "▁T o",
+ "▁ To",
+ "j a",
+ "ve rt",
+ "ver t",
+ "v ert",
+ "▁m ar",
+ "▁ma r",
+ "▁ mar",
+ "val ue",
+ "valu e",
+ "▁ „",
+ "\" ;",
+ "▁a us",
+ "▁au s",
+ "▁ aus",
+ "▁B r",
+ "▁ Br",
+ "ol e",
+ "o le",
+ "▁m ult",
+ "▁mu lt",
+ "▁mul t",
+ "▁ mult",
+ "oug ht",
+ "ough t",
+ "▁m at",
+ "▁ma t",
+ "▁ mat",
+ "▁v iew",
+ "▁vi ew",
+ "▁vie w",
+ "▁ view",
+ "fi l",
+ "f il",
+ "▁с о",
+ "▁ со",
+ "г а",
+ "▁v oid",
+ "▁vo id",
+ "▁ void",
+ "▁g ood",
+ "▁go od",
+ "▁ good",
+ "б о",
+ "C T",
+ "▁m any",
+ "▁ma ny",
+ "▁man y",
+ "▁ many",
+ "be n",
+ "b en",
+ "▁в о",
+ "▁ во",
+ "▁к а",
+ "▁ ка",
+ "▁s ystem",
+ "▁sys tem",
+ "▁syst em",
+ "▁ system",
+ "in o",
+ "i no",
+ "▁an other",
+ "▁ano ther",
+ "▁ another",
+ "▁re st",
+ "▁r est",
+ "▁res t",
+ "▁ rest",
+ "us er",
+ "use r",
+ "u ser",
+ "il ity",
+ "ili ty",
+ "a i",
+ "▁m ight",
+ "▁mig ht",
+ "us tom",
+ "ust om",
+ "usto m",
+ "▁or der",
+ "▁ord er",
+ "▁ order",
+ "▁V er",
+ "▁Ve r",
+ "▁ Ver",
+ "S S",
+ "} )",
+ "▁e ff",
+ "▁ eff",
+ "д о",
+ "et t",
+ "e tt",
+ "▁s ign",
+ "▁si gn",
+ "▁sig n",
+ "▁ sign",
+ "м у",
+ "I T",
+ "st ring",
+ "str ing",
+ "s tring",
+ "el le",
+ "ell e",
+ "e lle",
+ "▁s ing",
+ "▁si ng",
+ "▁sin g",
+ "▁ sing",
+ "cu l",
+ "c ul",
+ "▁tr ying",
+ "▁try ing",
+ "▁b eg",
+ "▁be g",
+ "▁ beg",
+ "▁p age",
+ "▁pa ge",
+ "▁pag e",
+ "▁ page",
+ "х о",
+ "▁C an",
+ "▁Ca n",
+ "▁ Can",
+ "▁S er",
+ "▁Se r",
+ "▁ Ser",
+ "+ +",
+ "▁m ust",
+ "▁mus t",
+ "▁mu st",
+ "▁ must",
+ "▁val ues",
+ "▁value s",
+ "▁valu es",
+ "▁ values",
+ "▁k ey",
+ "▁ke y",
+ "▁ key",
+ "ib le",
+ "i ble",
+ "] .",
+ "ir d",
+ "i rd",
+ "▁pro gram",
+ "▁pr ogram",
+ "▁ program",
+ "roll er",
+ "rol ler",
+ "rolle r",
+ "▁c onne",
+ "▁con ne",
+ "▁conn e",
+ "▁ conne",
+ "▁s ay",
+ "▁sa y",
+ "▁ say",
+ "▁p aram",
+ "▁par am",
+ "▁para m",
+ "▁pa ram",
+ "▁ param",
+ "ach e",
+ "ac he",
+ "a che",
+ "ve lop",
+ "vel op",
+ "▁s elect",
+ "▁se lect",
+ "▁sel ect",
+ "▁sele ct",
+ "▁ select",
+ "▁f amil",
+ "▁fa mil",
+ "▁fam il",
+ "▁ famil",
+ "▁l ast",
+ "▁la st",
+ "▁las t",
+ "▁ last",
+ "▁Th anks",
+ "▁Thank s",
+ "▁ Thanks",
+ "▁p op",
+ "▁po p",
+ "▁ pop",
+ "} .",
+ "e q",
+ "▁does n",
+ "[ '",
+ "▁t erm",
+ "▁te rm",
+ "▁ter m",
+ "▁ term",
+ "▁r é",
+ "▁ ré",
+ "▁d ocument",
+ "▁doc ument",
+ "▁ document",
+ "п а",
+ "л у",
+ "at eg",
+ "ate g",
+ ". )",
+ "li ng",
+ "lin g",
+ "l ing",
+ "ion al",
+ "io nal",
+ "iona l",
+ "i onal",
+ "ab les",
+ "able s",
+ "abl es",
+ "a bles",
+ "▁t ak",
+ "▁ta k",
+ "ut ton",
+ "utt on",
+ "utto n",
+ "▁a rg",
+ "▁ar g",
+ "▁ arg",
+ "ty pe",
+ "typ e",
+ "t ype",
+ "▁s ure",
+ "▁su re",
+ "▁sur e",
+ "▁re al",
+ "▁ real",
+ "▁w eb",
+ "▁we b",
+ "▁ web",
+ "▁c urrent",
+ "▁cur rent",
+ "▁curr ent",
+ "▁ current",
+ "▁P l",
+ "▁ Pl",
+ "ch o",
+ "c ho",
+ "ment s",
+ "men ts",
+ "m ents",
+ "▁J oh",
+ "▁Jo h",
+ "ot s",
+ "o ts",
+ "▁ex ist",
+ "▁ exist",
+ "н у",
+ "▁f ür",
+ "▁ für",
+ "▁и з",
+ "▁ из",
+ "d o",
+ "но го",
+ "ног о",
+ "н ого",
+ "▁l as",
+ "▁la s",
+ "▁ las",
+ "▁n ull",
+ "▁nu ll",
+ "▁ null",
+ "▁in form",
+ "▁inf orm",
+ "▁info rm",
+ "▁ Л",
+ "▁v ersion",
+ "▁vers ion",
+ "▁ version",
+ "▁c hang",
+ "▁ch ang",
+ "▁cha ng",
+ "ag er",
+ "age r",
+ "a ger",
+ "▁C omm",
+ "▁Com m",
+ "▁Co mm",
+ "▁ Comm",
+ "л і",
+ "us h",
+ "u sh",
+ "▁G e",
+ "▁ Ge",
+ "▁h igh",
+ "▁hi gh",
+ "▁ high",
+ "▁in put",
+ "▁ input",
+ "og le",
+ "o gle",
+ "ro s",
+ "r os",
+ "bo x",
+ "b ox",
+ "ge n",
+ "g en",
+ "▁s te",
+ "▁st e",
+ "▁ ste",
+ "▁l ocal",
+ "▁lo cal",
+ "▁loc al",
+ "▁ local",
+ "I m",
+ "▁pro cess",
+ "▁proc ess",
+ "▁proces s",
+ "▁ process",
+ "ter nal",
+ "tern al",
+ "t ernal",
+ "iz ed",
+ "ize d",
+ "i zed",
+ "г и",
+ "é t",
+ "▁I nd",
+ "▁In d",
+ "▁ Ind",
+ "▁o ch",
+ "▁oc h",
+ "▁ och",
+ "l t",
+ "▁col umn",
+ "▁ column",
+ "▁t ried",
+ "▁tr ied",
+ "▁tri ed",
+ "▁comm and",
+ "▁comma nd",
+ "▁ command",
+ "▁b est",
+ "▁be st",
+ "▁bes t",
+ "▁ best",
+ "as ter",
+ "ast er",
+ "aste r",
+ "a ster",
+ "з а",
+ "▁p rim",
+ "▁pr im",
+ "▁pri m",
+ "▁ prim",
+ "▁m odel",
+ "▁mod el",
+ "▁mo del",
+ "▁mode l",
+ "▁ model",
+ "▁ і",
+ "▁th ose",
+ "it ies",
+ "iti es",
+ "itie s",
+ "i ties",
+ "è re",
+ "▁р е",
+ "▁ ре",
+ "ј е",
+ "ш и",
+ "qu es",
+ "que s",
+ "q ues",
+ "▁A m",
+ "▁ Am",
+ "▁o wn",
+ "▁ow n",
+ "▁ own",
+ "li n",
+ "l in",
+ "з и",
+ "Val ue",
+ "th ing",
+ "t hing",
+ "▁ ,",
+ "▁T e",
+ "▁ Te",
+ "▁st ud",
+ "▁ stud",
+ "▁u m",
+ "▁ um",
+ "▁ser ver",
+ "▁serv er",
+ "▁serve r",
+ "▁ server",
+ "il le",
+ "ill e",
+ "i lle",
+ "▁p ut",
+ "▁pu t",
+ "▁ put",
+ "at iv",
+ "ati v",
+ "g y",
+ "ов и",
+ "о ви",
+ "ra f",
+ "r af",
+ "ов о",
+ "о во",
+ "▁wur de",
+ "▁W hen",
+ "▁Wh en",
+ "▁Whe n",
+ "▁ When",
+ "▁d iv",
+ "▁di v",
+ "▁ div",
+ "an ts",
+ "ant s",
+ "▁t er",
+ "▁te r",
+ "▁ ter",
+ "▁part ic",
+ "▁parti c",
+ "▁ т",
+ "▁D o",
+ "▁ Do",
+ "▁N o",
+ "▁ No",
+ "se rt",
+ "ser t",
+ "s ert",
+ "id o",
+ "i do",
+ "math cal",
+ "ad e",
+ "a de",
+ "▁I I",
+ "▁ II",
+ "le ar",
+ "lea r",
+ "l ear",
+ "og raph",
+ "o graph",
+ "en se",
+ "ens e",
+ "▁r ow",
+ "▁ro w",
+ "▁ row",
+ "nu m",
+ "n um",
+ "▁pos sible",
+ "▁poss ible",
+ "▁possib le",
+ "▁ possible",
+ "▁s ince",
+ "▁sin ce",
+ "▁ since",
+ "▁B o",
+ "▁ Bo",
+ "ct ions",
+ "ction s",
+ "▁I m",
+ "▁ Im",
+ "O R",
+ "ц і",
+ "▁i de",
+ "▁id e",
+ "▁ ide",
+ "ma p",
+ "m ap",
+ "▁cor rect",
+ "▁corre ct",
+ "▁corr ect",
+ "▁ correct",
+ "ve s",
+ "v es",
+ "ph p",
+ "p hp",
+ "▁out put",
+ "▁ output",
+ "▁P h",
+ "▁ Ph",
+ "A L",
+ "ar ed",
+ "are d",
+ "a red",
+ "\\ \\",
+ "▁im age",
+ "▁imag e",
+ "▁ image",
+ "es ch",
+ "esc h",
+ "e sch",
+ "ж и",
+ "▁con f",
+ "▁ conf",
+ "po r",
+ "p or",
+ "qu ery",
+ "que ry",
+ "quer y",
+ "ur es",
+ "ure s",
+ "u res",
+ "iu m",
+ "i um",
+ "en ds",
+ "end s",
+ "▁A b",
+ "▁ Ab",
+ "SB N",
+ "і д",
+ "et her",
+ "eth er",
+ "ethe r",
+ "e ther",
+ "pt ions",
+ "ption s",
+ "it u",
+ "i tu",
+ "li b",
+ "l ib",
+ "n s",
+ "k i",
+ "▁work ing",
+ "▁wor king",
+ "▁ working",
+ "▁c omo",
+ "▁com o",
+ "▁co mo",
+ "▁ como",
+ "▁T hen",
+ "▁The n",
+ "▁Th en",
+ "▁ Then",
+ "M L",
+ "ke y",
+ "k ey",
+ "cl ass",
+ "cla ss",
+ "c lass",
+ "op le",
+ "o ple",
+ "itt le",
+ "▁m atch",
+ "▁mat ch",
+ "▁ match",
+ "way s",
+ "wa ys",
+ "w ays",
+ "math bb",
+ "▁re quire",
+ "▁requ ire",
+ "▁ require",
+ "al t",
+ "a lt",
+ "▁v is",
+ "▁vi s",
+ "▁ vis",
+ "▁b l",
+ "▁ bl",
+ "▁c alled",
+ "▁cal led",
+ "▁call ed",
+ "▁ called",
+ "It em",
+ "I tem",
+ "ur a",
+ "u ra",
+ "ve c",
+ "v ec",
+ "em e",
+ "e me",
+ "▁d ella",
+ "▁de lla",
+ "▁del la",
+ "▁dell a",
+ "em bre",
+ "emb re",
+ "ur g",
+ "u rg",
+ "S e",
+ "▁re quest",
+ "▁requ est",
+ "▁req uest",
+ "▁ request",
+ "is che",
+ "isch e",
+ "isc he",
+ "i sche",
+ "▁p ort",
+ "▁po rt",
+ "▁por t",
+ "▁ port",
+ "▁inst ead",
+ "= \\",
+ "▁ У",
+ "ho r",
+ "h or",
+ "en te",
+ "ent e",
+ "um e",
+ "u me",
+ "er d",
+ "e rd",
+ "с а",
+ "▁w hy",
+ "▁wh y",
+ "▁ why",
+ "ri st",
+ "ris t",
+ "r ist",
+ "▁p erson",
+ "▁per son",
+ "▁pers on",
+ "▁ person",
+ "▁. ..",
+ "▁.. .",
+ "▁ ...",
+ "▁p rivate",
+ "▁priv ate",
+ "▁ private",
+ "▁t ot",
+ "▁to t",
+ "▁ tot",
+ "ph a",
+ "p ha",
+ "if t",
+ "i ft",
+ "it a",
+ "i ta",
+ "lo c",
+ "l oc",
+ "▁o ld",
+ "▁ol d",
+ "▁ old",
+ "о н",
+ "▁n el",
+ "▁ne l",
+ "▁ nel",
+ "' ]",
+ "t i",
+ "ie t",
+ "i et",
+ "ci te",
+ "cit e",
+ "c ite",
+ "ple ment",
+ "pl ement",
+ "p lement",
+ "▁a bove",
+ "▁ab ove",
+ "▁ above",
+ "k s",
+ "re ady",
+ "read y",
+ "rea dy",
+ "▁c ome",
+ "▁com e",
+ "▁co me",
+ "▁ come",
+ "se ction",
+ "sec tion",
+ "sect ion",
+ "s ection",
+ "▁P ol",
+ "▁Po l",
+ "▁ Pol",
+ "▁w rit",
+ "▁wr it",
+ "▁ writ",
+ "▁htt ps",
+ "▁http s",
+ "▁ https",
+ "▁$ $",
+ "▁ $$",
+ "▁ »",
+ "▁bu ild",
+ "▁ build",
+ "it o",
+ "i to",
+ "▁cons ider",
+ "▁consid er",
+ "af t",
+ "a ft",
+ "Ap p",
+ "A pp",
+ ", \\",
+ "ind ows",
+ "indow s",
+ "indo ws",
+ "com m",
+ "co mm",
+ "c omm",
+ "▁ ;",
+ "gr ound",
+ "gro und",
+ "g round",
+ "▁p lace",
+ "▁pl ace",
+ "▁pla ce",
+ "▁ place",
+ "B y",
+ "▁pro ject",
+ "▁ project",
+ "Ob ject",
+ "Obj ect",
+ "O bject",
+ "▁re pr",
+ "▁rep r",
+ "en ces",
+ "ence s",
+ "enc es",
+ "ind ow",
+ "indo w",
+ "z t",
+ "▁f iles",
+ "▁file s",
+ "▁fil es",
+ "▁fi les",
+ "▁ files",
+ "c z",
+ "iv ity",
+ "ivi ty",
+ "i vity",
+ "▁in it",
+ "▁i nit",
+ "▁ init",
+ "▁p rob",
+ "▁pro b",
+ "▁pr ob",
+ "▁ prob",
+ "▁s k",
+ "▁ sk",
+ "or th",
+ "ort h",
+ "im ent",
+ "ime nt",
+ "imen t",
+ "i ment",
+ "ou ble",
+ "at al",
+ "ata l",
+ "a tal",
+ "ir c",
+ "i rc",
+ "▁ è",
+ "▁b re",
+ "▁br e",
+ "▁ bre",
+ "is ta",
+ "ist a",
+ "i sta",
+ "in put",
+ "▁ И",
+ "но й",
+ "su m",
+ "s um",
+ "pa th",
+ "pat h",
+ "p ath",
+ "▁c our",
+ "▁co ur",
+ "▁cou r",
+ "▁t oo",
+ "▁to o",
+ "▁A d",
+ "▁ Ad",
+ "▁G u",
+ "▁ Gu",
+ "▁f alse",
+ "▁fal se",
+ "▁ false",
+ "▁f un",
+ "▁fu n",
+ "▁ fun",
+ "▁с т",
+ "▁ ст",
+ "oo d",
+ "o od",
+ "è s",
+ "▁e nc",
+ "▁en c",
+ "▁ enc",
+ "bo l",
+ "b ol",
+ "r l",
+ "ar get",
+ "arg et",
+ "or der",
+ "ord er",
+ "orde r",
+ "▁me an",
+ "▁ mean",
+ "п е",
+ "ig en",
+ "ige n",
+ "i gen",
+ "▁п ре",
+ "▁пр е",
+ "▁ пре",
+ "wid th",
+ "w idth",
+ "; \r",
+ "it or",
+ "ito r",
+ "i tor",
+ "▁st ate",
+ "▁stat e",
+ "▁sta te",
+ "▁ state",
+ "▁gre at",
+ "en n",
+ "e nn",
+ "bi n",
+ "b in",
+ "E r",
+ "Mo d",
+ "M od",
+ "o z",
+ "▁w on",
+ "▁wo n",
+ "▁ won",
+ "▁f act",
+ "▁fa ct",
+ "▁fac t",
+ "▁ fact",
+ "▁j ava",
+ "▁ja va",
+ "▁jav a",
+ "▁ java",
+ "▁Un ivers",
+ "▁ Univers",
+ "▁c ap",
+ "▁ca p",
+ "▁ cap",
+ "is tor",
+ "ist or",
+ "isto r",
+ "i stor",
+ "} (",
+ "k u",
+ "it her",
+ "ith er",
+ "i ther",
+ "al es",
+ "ale s",
+ "a les",
+ "▁o u",
+ "▁ ou",
+ "ro ss",
+ "ros s",
+ "r oss",
+ "▁t ake",
+ "▁tak e",
+ "▁ta ke",
+ "▁ take",
+ "ri x",
+ "r ix",
+ "lo b",
+ "l ob",
+ "▁e ine",
+ "▁ein e",
+ "as es",
+ "ase s",
+ "▁a ccess",
+ "▁acc ess",
+ "▁ac cess",
+ "▁ access",
+ "it é",
+ "i té",
+ "is tr",
+ "ist r",
+ "i str",
+ "iz ation",
+ "iza tion",
+ "▁app ro",
+ "▁ap pro",
+ "▁ appro",
+ "ba ll",
+ "bal l",
+ "b all",
+ "▁m ak",
+ "▁ma k",
+ "} ^",
+ "▁C ons",
+ "▁Con s",
+ "▁Co ns",
+ "▁ Cons",
+ "pr ess",
+ "pre ss",
+ "pres s",
+ "p ress",
+ "se rv",
+ "ser v",
+ "s erv",
+ "() .",
+ "( ).",
+ "a f",
+ "▁re f",
+ "▁r ef",
+ "▁ ref",
+ ") \\",
+ "▁cont in",
+ "s u",
+ "iv er",
+ "ive r",
+ "i ver",
+ "▁c ond",
+ "▁con d",
+ "▁co nd",
+ "▁ cond",
+ "▁ex pect",
+ "▁exp ect",
+ "▁ expect",
+ "▁char act",
+ "▁cha ract",
+ "ber t",
+ "be rt",
+ "b ert",
+ "el t",
+ "e lt",
+ "ter s",
+ "te rs",
+ "t ers",
+ "scri pt",
+ "scr ipt",
+ "s cript",
+ "▁E d",
+ "▁ Ed",
+ "ap t",
+ "a pt",
+ "') ;",
+ "' );",
+ "pr int",
+ "▁s ize",
+ "▁si ze",
+ "▁ size",
+ "▁s ich",
+ "▁si ch",
+ "▁sic h",
+ "fa ce",
+ "fac e",
+ "f ace",
+ "en den",
+ "end en",
+ "ende n",
+ "▁A mer",
+ "▁Am er",
+ "▁ Amer",
+ "if ied",
+ "ifi ed",
+ "ifie d",
+ "ó w",
+ "▁S u",
+ "▁ Su",
+ "te s",
+ "t es",
+ "me d",
+ "m ed",
+ "▁R eg",
+ "▁Re g",
+ "▁ Reg",
+ "so le",
+ "sol e",
+ "s ole",
+ "▁in clud",
+ "▁incl ud",
+ "▁inclu d",
+ "▁ includ",
+ "in i",
+ "i ni",
+ "in ci",
+ "inc i",
+ "▁p la",
+ "▁pl a",
+ "▁ pla",
+ "▁l eft",
+ "▁le ft",
+ "▁ left",
+ "d f",
+ "Pa r",
+ "P ar",
+ "▁A ll",
+ "▁Al l",
+ "▁ All",
+ "▁o cc",
+ "▁oc c",
+ "▁ occ",
+ "▁A t",
+ "▁ At",
+ "▁c r",
+ "▁ cr",
+ "Q u",
+ "▁g iven",
+ "▁giv en",
+ "▁give n",
+ "▁gi ven",
+ "▁S ystem",
+ "▁Syst em",
+ "▁ System",
+ "ic an",
+ "ica n",
+ "i can",
+ "▁f inal",
+ "▁fin al",
+ "▁fi nal",
+ "▁ final",
+ "it ions",
+ "ition s",
+ "iti ons",
+ "▁б ы",
+ "▁ бы",
+ "▁per form",
+ "▁perf orm",
+ "▁ perform",
+ "A N",
+ "▁M e",
+ "▁ Me",
+ "ur o",
+ "u ro",
+ "▁T hat",
+ "▁Th at",
+ "▁ That",
+ "г ра",
+ "▁П о",
+ "▁ По",
+ "▁в и",
+ "▁ ви",
+ "ab ly",
+ "abl y",
+ "▁pr esent",
+ "▁pre sent",
+ "▁pres ent",
+ "▁ present",
+ "du ct",
+ "d uct",
+ "ri c",
+ "r ic",
+ "▁E ng",
+ "▁En g",
+ "▁ Eng",
+ "tr y",
+ "t ry",
+ "▁l ar",
+ "▁la r",
+ "▁ lar",
+ "b l",
+ "id d",
+ "i dd",
+ "▁ä r",
+ "▁ är",
+ "or a",
+ "o ra",
+ "L L",
+ "os s",
+ "o ss",
+ "▁I SBN",
+ "▁ ISBN",
+ "▁th ree",
+ "▁thr ee",
+ "▁thre e",
+ "▁ three",
+ "j o",
+ "n í",
+ "r c",
+ "▁f ar",
+ "▁fa r",
+ "▁ far",
+ "▁N ot",
+ "▁No t",
+ "▁ Not",
+ "▁l ittle",
+ "▁litt le",
+ "di s",
+ "d is",
+ "at i",
+ "a ti",
+ "fun ction",
+ "func tion",
+ "f unction",
+ "▁a ble",
+ "▁ab le",
+ "▁ able",
+ "le ss",
+ "les s",
+ "l ess",
+ "с о",
+ "▁p ath",
+ "▁pat h",
+ "▁pa th",
+ "▁ path",
+ "▁p res",
+ "▁pr es",
+ "▁pre s",
+ "▁ pres",
+ "lo se",
+ "los e",
+ "l ose",
+ "P I",
+ "▁iss ue",
+ "▁issu e",
+ "▁ issue",
+ "ack age",
+ "ti me",
+ "tim e",
+ "t ime",
+ "ig e",
+ "i ge",
+ "am s",
+ "a ms",
+ "▁C l",
+ "▁ Cl",
+ "ail s",
+ "ai ls",
+ "a ils",
+ "al k",
+ "i i",
+ "ш е",
+ "pe n",
+ "p en",
+ "Q L",
+ "▁e as",
+ "R L",
+ "ce l",
+ "c el",
+ "▁s l",
+ "▁ sl",
+ "▁a sk",
+ "▁as k",
+ "▁ ask",
+ "▁n om",
+ "▁no m",
+ "▁ nom",
+ "▁t op",
+ "▁to p",
+ "▁ top",
+ "id es",
+ "ide s",
+ "i des",
+ "in dex",
+ "ind ex",
+ "inde x",
+ "é m",
+ "▁h app",
+ "▁ha pp",
+ "o x",
+ "c d",
+ "▁b etter",
+ "▁bet ter",
+ "▁lo ad",
+ "▁ load",
+ "ad os",
+ "ado s",
+ "ze n",
+ "z en",
+ "▁c e",
+ "▁ ce",
+ "▁f a",
+ "▁ fa",
+ "▁J ohn",
+ "▁Joh n",
+ "▁Jo hn",
+ "▁ John",
+ "IM A",
+ "I MA",
+ "▁B ar",
+ "▁Ba r",
+ "▁ Bar",
+ "over flow",
+ "▁д е",
+ "▁ де",
+ "ne ss",
+ "nes s",
+ "n ess",
+ "ce r",
+ "c er",
+ "▁H ere",
+ "▁He re",
+ "▁Her e",
+ "▁ Here",
+ "re t",
+ "r et",
+ "▁s z",
+ "▁ sz",
+ "amb da",
+ "op y",
+ "o py",
+ "ur l",
+ "u rl",
+ "p y",
+ "r t",
+ "▁under stand",
+ "a ł",
+ "he r",
+ "h er",
+ "# #",
+ "▁ch ild",
+ "▁chi ld",
+ "▁ child",
+ "▁ex ec",
+ "▁ exec",
+ "▁app lication",
+ "▁applic ation",
+ "▁ application",
+ "▁st ruct",
+ "▁str uct",
+ "▁stru ct",
+ "▁ struct",
+ "▁ я",
+ "Fil e",
+ "Fi le",
+ "F ile",
+ "▁c ert",
+ "▁ce rt",
+ "▁cer t",
+ "▁ cert",
+ "is on",
+ "iso n",
+ "i son",
+ "▁vari able",
+ "▁ variable",
+ "D E",
+ "r s",
+ "▁re ally",
+ "▁real ly",
+ "Po rt",
+ "P ort",
+ "b a",
+ "▁B er",
+ "▁Be r",
+ "▁ Ber",
+ "▁in te",
+ "▁int e",
+ "▁ inte",
+ "▁st atic",
+ "▁stat ic",
+ "▁stati c",
+ "▁ static",
+ "▁con fig",
+ "▁conf ig",
+ "▁ config",
+ "▁S he",
+ "▁Sh e",
+ "▁ She",
+ "est ions",
+ "estion s",
+ "esti ons",
+ "▁p lus",
+ "▁pl us",
+ "▁ plus",
+ "▁h ab",
+ "▁ha b",
+ "▁ hab",
+ "op e",
+ "o pe",
+ "▁m us",
+ "▁mu s",
+ "▁ mus",
+ "▁c ount",
+ "▁co unt",
+ "▁coun t",
+ "▁cou nt",
+ "▁ count",
+ "M E",
+ "▁su pport",
+ "▁supp ort",
+ "▁sup port",
+ "▁ support",
+ "▁pe ople",
+ "▁ people",
+ "▁b eh",
+ "▁be h",
+ "▁al ready",
+ "T r",
+ "▁d one",
+ "▁do ne",
+ "▁don e",
+ "▁ done",
+ "de m",
+ "d em",
+ "si ze",
+ "s ize",
+ "al pha",
+ "alph a",
+ "▁d isc",
+ "▁di sc",
+ "▁dis c",
+ "] )",
+ "▁M an",
+ "▁Ma n",
+ "▁ Man",
+ "▁m il",
+ "▁mi l",
+ "▁ mil",
+ "▁st and",
+ "▁sta nd",
+ "▁stan d",
+ "▁ stand",
+ "▁gr oup",
+ "▁gro up",
+ "▁ group",
+ "▁sm all",
+ "▁ small",
+ "▁m ag",
+ "▁ma g",
+ "▁ mag",
+ "ст ь",
+ "с ть",
+ "▁de fault",
+ "▁def ault",
+ "▁ default",
+ "▁sing le",
+ "▁sin gle",
+ "▁ single",
+ "lin k",
+ "l ink",
+ "cl ude",
+ "clud e",
+ "▁e ar",
+ "▁ ear",
+ "il ar",
+ "ila r",
+ "i lar",
+ "** **",
+ "*** *",
+ "* ***",
+ "▁f ix",
+ "▁fi x",
+ "▁ fix",
+ "le y",
+ "l ey",
+ "▁p as",
+ "▁pa s",
+ "▁ pas",
+ "ни й",
+ "iss ion",
+ "▁im plement",
+ "▁imp lement",
+ "▁impl ement",
+ "it ch",
+ "▁го да",
+ "▁год а",
+ "▁al ways",
+ "▁ always",
+ "▁J ah",
+ "▁Ja h",
+ "pr ing",
+ "p ring",
+ "ç ão",
+ "pl ate",
+ "pla te",
+ "p late",
+ "▁de scri",
+ "▁des cri",
+ "▁desc ri",
+ "▁h ead",
+ "▁he ad",
+ "▁ head",
+ "in it",
+ "ini t",
+ "i nit",
+ "og raf",
+ "▁qu ery",
+ "▁que ry",
+ "▁quer y",
+ "▁ query",
+ "iv ed",
+ "ive d",
+ "i ved",
+ "▁in g",
+ "▁i ng",
+ "▁ ing",
+ "pt y",
+ "p ty",
+ "h a",
+ "▁m ov",
+ "▁mo v",
+ "▁ mov",
+ "▁ э",
+ "et te",
+ "ett e",
+ "e tte",
+ "il y",
+ "i ly",
+ "▁g ot",
+ "▁go t",
+ "▁ got",
+ "il ed",
+ "ile d",
+ "i led",
+ "ic ro",
+ "i cro",
+ "▁w r",
+ "▁ wr",
+ "р я",
+ "▁n ever",
+ "▁ne ver",
+ "▁nev er",
+ "or es",
+ "ore s",
+ "o res",
+ "▁b as",
+ "▁ba s",
+ "▁ bas",
+ "io s",
+ "i os",
+ "la ck",
+ "lac k",
+ "l ack",
+ "ain t",
+ "ai nt",
+ "a int",
+ "vi ous",
+ "v ious",
+ "▁g ive",
+ "▁giv e",
+ "▁gi ve",
+ "id ad",
+ "ida d",
+ "E n",
+ "ны й",
+ "н ый",
+ "ta ble",
+ "tab le",
+ "t able",
+ "▁Н а",
+ "▁ На",
+ "▁p at",
+ "▁pa t",
+ "▁ pat",
+ "то р",
+ "т ор",
+ "an gu",
+ "ang u",
+ "lo y",
+ "l oy",
+ "▁s eg",
+ "▁se g",
+ "▁ seg",
+ "ar ray",
+ "arr ay",
+ "▁F l",
+ "▁ Fl",
+ "▁in dex",
+ "▁ind ex",
+ "▁inde x",
+ "▁ index",
+ "▁s w",
+ "▁ sw",
+ "IMA GE",
+ "IM AGE",
+ "▁k m",
+ "▁ km",
+ "б и",
+ "Cl ass",
+ "Cla ss",
+ "C lass",
+ "en a",
+ "e na",
+ "ме н",
+ "м ен",
+ "com p",
+ "co mp",
+ "c omp",
+ "at us",
+ "atu s",
+ "ra p",
+ "r ap",
+ "▁L ist",
+ "▁Li st",
+ "▁Lis t",
+ "▁ List",
+ "Er ror",
+ "Err or",
+ "E rror",
+ "▁t yp",
+ "▁ty p",
+ "▁ typ",
+ "▁м а",
+ "▁ ма",
+ "c s",
+ "' :",
+ "j i",
+ "▁How ever",
+ "▁ However",
+ "▁т е",
+ "▁ те",
+ "▁be low",
+ "▁bel ow",
+ "▁ below",
+ "▁A pp",
+ "▁Ap p",
+ "▁ App",
+ "щ е",
+ "} _",
+ "bu m",
+ "b um",
+ "vi r",
+ "v ir",
+ "ée s",
+ "é es",
+ "▁re cord",
+ "▁rec ord",
+ "▁ record",
+ "ta in",
+ "t ain",
+ "le m",
+ "l em",
+ "it al",
+ "ita l",
+ "i tal",
+ "▁i mp",
+ "▁im p",
+ "▁ imp",
+ "eg o",
+ "e go",
+ "▁o d",
+ "▁ od",
+ "▁re ce",
+ "▁rec e",
+ "▁ rece",
+ "mi t",
+ "m it",
+ "ff ic",
+ "f fic",
+ "stack overflow",
+ "ie ve",
+ "iev e",
+ "▁ З",
+ "▁n ov",
+ "▁no v",
+ "▁ nov",
+ "ц е",
+ "▁In tern",
+ "▁Int ern",
+ "▁Inter n",
+ "▁ Intern",
+ "b u",
+ "▁s ugg",
+ "▁su gg",
+ "▁sug g",
+ "▁l oop",
+ "▁lo op",
+ "▁ loop",
+ "ri de",
+ "rid e",
+ "r ide",
+ "▁$ (",
+ "▁ $(",
+ "▁s uper",
+ "▁su per",
+ "▁sup er",
+ "▁ super",
+ "ri d",
+ "r id",
+ "ны х",
+ "н ых",
+ "▁P er",
+ "▁Pe r",
+ "▁ Per",
+ "▁d om",
+ "▁do m",
+ "▁ dom",
+ "= '",
+ "ut sch",
+ "uts ch",
+ "le n",
+ "l en",
+ "▁w rite",
+ "▁writ e",
+ "▁wr ite",
+ "▁ write",
+ "▁in v",
+ "▁ inv",
+ "ou th",
+ "out h",
+ "o uth",
+ "▁H er",
+ "▁He r",
+ "▁ Her",
+ "▁y ears",
+ "▁year s",
+ "▁ye ars",
+ "▁or iginal",
+ "▁orig inal",
+ "▁origin al",
+ "▁ original",
+ "eg a",
+ "e ga",
+ "▁S te",
+ "▁St e",
+ "▁ Ste",
+ "▁se ems",
+ "▁see ms",
+ "▁seem s",
+ "é g",
+ "▁n ext",
+ "▁ne xt",
+ "▁ next",
+ "ed er",
+ "ede r",
+ "e der",
+ "▁N e",
+ "▁ Ne",
+ "av as",
+ "ava s",
+ "a vas",
+ "ific ation",
+ "ifi cation",
+ "ifica tion",
+ "Ex ception",
+ "▁D er",
+ "▁De r",
+ "▁ Der",
+ "▁v e",
+ "▁ ve",
+ "at ic",
+ "ati c",
+ "ha t",
+ "h at",
+ "br ary",
+ "bra ry",
+ "re turn",
+ "ret urn",
+ "ur ch",
+ "is ion",
+ "isi on",
+ "m i",
+ "oi nt",
+ "oin t",
+ "o int",
+ "▁d ay",
+ "▁da y",
+ "▁ day",
+ "ic tion",
+ "ict ion",
+ "i ction",
+ "á l",
+ "▁é s",
+ "▁ és",
+ "▁th ough",
+ "▁thou gh",
+ "▁ though",
+ "ac tion",
+ "act ion",
+ "a ction",
+ "í t",
+ "un gen",
+ "ung en",
+ "unge n",
+ "ou rs",
+ "our s",
+ "o urs",
+ "▁s cript",
+ "▁scr ipt",
+ "▁scri pt",
+ "▁ script",
+ "▁in formation",
+ "▁inform ation",
+ "▁ information",
+ "▁mult i",
+ "▁mul ti",
+ "▁ multi",
+ "▁\\ \\",
+ "▁ \\\\",
+ "st er",
+ "ste r",
+ "s ter",
+ "к е",
+ "A C",
+ "ci es",
+ "cie s",
+ "c ies",
+ "▁dis play",
+ "▁disp lay",
+ "▁ display",
+ "om an",
+ "oma n",
+ "o man",
+ "Tim e",
+ "T ime",
+ "iu s",
+ "i us",
+ ")) ;",
+ ") );",
+ "tr e",
+ "t re",
+ "▁l im",
+ "▁li m",
+ "▁ lim",
+ "at ely",
+ "ate ly",
+ "atel y",
+ "é d",
+ "is te",
+ "ist e",
+ "i ste",
+ "▁с а",
+ "▁ са",
+ "pos t",
+ "po st",
+ "p ost",
+ "ue l",
+ "u el",
+ "im g",
+ "▁ ч",
+ "ск а",
+ "с ка",
+ "el d",
+ "e ld",
+ "pp er",
+ "ppe r",
+ "p per",
+ "ul a",
+ "u la",
+ "▁gener al",
+ "▁gen eral",
+ "▁gene ral",
+ "▁ general",
+ "A l",
+ "For m",
+ "F orm",
+ "▁u pon",
+ "▁up on",
+ "z o",
+ "am ente",
+ "ament e",
+ "amen te",
+ "a mente",
+ "▁p rom",
+ "▁pro m",
+ "▁pr om",
+ "▁ prom",
+ "▁ ü",
+ "le x",
+ "l ex",
+ "▁t urn",
+ "▁tu rn",
+ "▁tur n",
+ "▁ turn",
+ "▁м е",
+ "▁ ме",
+ "en tion",
+ "ent ion",
+ "enti on",
+ "ле н",
+ "л ен",
+ "▁a f",
+ "▁ af",
+ "ic le",
+ "i cle",
+ "ст в",
+ "с тв",
+ "▁F il",
+ "▁ Fil",
+ "▁ Ф",
+ "ava script",
+ "avas cript",
+ "Ma n",
+ "M an",
+ "ar a",
+ "a ra",
+ "wa re",
+ "war e",
+ "w are",
+ "al ign",
+ "ali gn",
+ "an gle",
+ "ang le",
+ "▁S c",
+ "▁ Sc",
+ "un ic",
+ "uni c",
+ "u nic",
+ "▁f ran",
+ "▁fr an",
+ "▁fra n",
+ "▁ fran",
+ "U n",
+ "z i",
+ "me t",
+ "m et",
+ "Ad d",
+ "A dd",
+ "▁p ub",
+ "▁pu b",
+ "▁ pub",
+ "ко в",
+ "к ов",
+ "▁g en",
+ "▁ge n",
+ "▁ gen",
+ "▁p od",
+ "▁po d",
+ "▁ pod",
+ "▁s um",
+ "▁su m",
+ "▁ sum",
+ "▁h aving",
+ "▁ha ving",
+ "▁hav ing",
+ "▁a vec",
+ "▁av ec",
+ "▁ave c",
+ "s l",
+ "▁f ig",
+ "▁fi g",
+ "▁ fig",
+ "▁R es",
+ "▁Re s",
+ "▁ Res",
+ "Dat e",
+ "Da te",
+ "D ate",
+ "ul es",
+ "ule s",
+ "u les",
+ "wi th",
+ "w ith",
+ "ски й",
+ "с кий",
+ "g u",
+ "E T",
+ "▁b ro",
+ "▁br o",
+ "▁ bro",
+ "ri e",
+ "r ie",
+ "ap s",
+ "a ps",
+ "en ding",
+ "end ing",
+ "endi ng",
+ "ma il",
+ "mai l",
+ "m ail",
+ "oo k",
+ "o ok",
+ "▁su ccess",
+ "▁succ ess",
+ "▁suc cess",
+ "▁ success",
+ "ber g",
+ "be rg",
+ "b erg",
+ "▁d eb",
+ "▁de b",
+ "▁ deb",
+ "el ta",
+ "elt a",
+ "() `",
+ "( )`",
+ "ent ial",
+ "enti al",
+ "fr ame",
+ "fra me",
+ "fram e",
+ "f rame",
+ "Ke y",
+ "K ey",
+ "in n",
+ "i nn",
+ "▁sim ple",
+ "▁simp le",
+ "▁simpl e",
+ "▁ simple",
+ "iv al",
+ "iva l",
+ "i val",
+ "▁c are",
+ "▁car e",
+ "▁ca re",
+ "▁ care",
+ "▁W eb",
+ "▁We b",
+ "▁ Web",
+ "\") .",
+ "\" ).",
+ ">< /",
+ "> ",
+ "▁d atabase",
+ "▁data base",
+ "▁dat abase",
+ "▁datab ase",
+ "▁ database",
+ "▁N ow",
+ "▁No w",
+ "▁ Now",
+ "In d",
+ "I nd",
+ "▁м о",
+ "▁ мо",
+ "ch t",
+ "c ht",
+ "ba n",
+ "b an",
+ "ra m",
+ "r am",
+ "equ ation",
+ "sk i",
+ "s ki",
+ "ie f",
+ "i ef",
+ "li m",
+ "l im",
+ "Ge t",
+ "G et",
+ "▁t re",
+ "▁tr e",
+ "▁ tre",
+ "at en",
+ "ate n",
+ "a ten",
+ "be d",
+ "b ed",
+ "▁J e",
+ "▁ Je",
+ "▁result s",
+ "▁ results",
+ "л ю",
+ "те ль",
+ "тел ь",
+ "т ель",
+ "d b",
+ "▁b it",
+ "▁bi t",
+ "▁ bit",
+ "bo dy",
+ "b ody",
+ "Ar ray",
+ "Arr ay",
+ "m u",
+ "pr ession",
+ "press ion",
+ "p ression",
+ "▁с та",
+ "▁ст а",
+ "▁ ста",
+ "on y",
+ "o ny",
+ "if f",
+ "i ff",
+ "▁b ar",
+ "▁ba r",
+ "▁ bar",
+ "▁Ar ch",
+ "▁Arc h",
+ "▁ Arch",
+ "ber s",
+ "be rs",
+ "b ers",
+ ") {",
+ "▁M on",
+ "▁Mo n",
+ "▁ Mon",
+ "▁do ing",
+ "▁doi ng",
+ "▁pro f",
+ "▁pr of",
+ "▁ prof",
+ "▁inst all",
+ "▁instal l",
+ "▁ install",
+ "▁p osition",
+ "▁pos ition",
+ "▁posit ion",
+ "▁ position",
+ "em a",
+ "e ma",
+ "▁} );",
+ "▁}) ;",
+ "▁ });",
+ "Pat h",
+ "Pa th",
+ "P ath",
+ "al i",
+ "a li",
+ "▁& &",
+ "▁ &&",
+ "le v",
+ "l ev",
+ "▁c annot",
+ "▁can not",
+ "▁M ay",
+ "▁Ma y",
+ "▁ May",
+ "in st",
+ "ins t",
+ "- \\",
+ "▁c oun",
+ "▁co un",
+ "▁cou n",
+ "▁a ng",
+ "▁an g",
+ "▁ ang",
+ "▁app ear",
+ "▁appe ar",
+ "co r",
+ "c or",
+ "ci ó",
+ "c ió",
+ "id ed",
+ "ide d",
+ "i ded",
+ "qu estions",
+ "quest ions",
+ "question s",
+ "at ter",
+ "att er",
+ "atte r",
+ "▁P a",
+ "▁ Pa",
+ "se lect",
+ "sel ect",
+ "s elect",
+ "▁pr inci",
+ "▁prin ci",
+ "E vent",
+ "▁s ide",
+ "▁si de",
+ "▁sid e",
+ "▁ side",
+ "▁m em",
+ "▁me m",
+ "▁ mem",
+ "▁J an",
+ "▁Ja n",
+ "▁ Jan",
+ "ar io",
+ "ari o",
+ "a rio",
+ "▁with in",
+ "▁wit hin",
+ "▁V al",
+ "▁Va l",
+ "▁ Val",
+ "ode s",
+ "od es",
+ "o des",
+ "idd le",
+ "ur ation",
+ "ura tion",
+ "br a",
+ "b ra",
+ "▁d ate",
+ "▁da te",
+ "▁dat e",
+ "▁ date",
+ "[ ]",
+ "▁en tre",
+ "▁ent re",
+ "▁entr e",
+ "▁ entre",
+ "il i",
+ "i li",
+ "Port ail",
+ "doc s",
+ "do cs",
+ "d ocs",
+ "ско й",
+ "с кой",
+ "El ement",
+ "E lement",
+ "▁m essage",
+ "▁mess age",
+ "▁ message",
+ "▁n ach",
+ "▁na ch",
+ "▁nac h",
+ "▁ nach",
+ "▁d uring",
+ "▁du ring",
+ "▁dur ing",
+ "▁g ra",
+ "▁gr a",
+ "▁ gra",
+ "et work",
+ "▁B y",
+ "▁ By",
+ "▁t ell",
+ "▁te ll",
+ "▁tel l",
+ "et e",
+ "e te",
+ "~ \\",
+ "▁b is",
+ "▁bi s",
+ "▁ bis",
+ "▁p u",
+ "▁ pu",
+ "▁re d",
+ "▁r ed",
+ "▁ red",
+ "▁t hing",
+ "▁th ing",
+ "▁thin g",
+ "▁ thing",
+ "▁s ort",
+ "▁so rt",
+ "▁sor t",
+ "▁ sort",
+ "xi m",
+ "x im",
+ "ir es",
+ "ire s",
+ "i res",
+ "Use r",
+ "Us er",
+ "U ser",
+ "io d",
+ "i od",
+ "▁E st",
+ "▁Es t",
+ "▁ Est",
+ "os ed",
+ "ose d",
+ "o sed",
+ "ou te",
+ "out e",
+ "o ute",
+ "▁L es",
+ "▁Le s",
+ "▁ Les",
+ "▁s ent",
+ "▁se nt",
+ "▁sen t",
+ "▁ sent",
+ "rib ute",
+ "ribu te",
+ "ut es",
+ "ute s",
+ "u tes",
+ "ist ory",
+ "istor y",
+ "isto ry",
+ "i story",
+ "▁ser vice",
+ "▁serv ice",
+ "▁servi ce",
+ "▁ service",
+ "' ;",
+ "fi eld",
+ "f ield",
+ "▁I N",
+ "▁ IN",
+ "ens ion",
+ "re l",
+ "r el",
+ "▁go ing",
+ "▁ going",
+ "we b",
+ "w eb",
+ "Con text",
+ "Cont ext",
+ "▁l ater",
+ "▁la ter",
+ "▁lat er",
+ "▁late r",
+ "u k",
+ "lay out",
+ "l ayout",
+ "on a",
+ "o na",
+ "á t",
+ "---- ------------",
+ "-------- --------",
+ "------------ ----",
+ "------ ----------",
+ "---------- ------",
+ "▁ex act",
+ "an dom",
+ "and om",
+ "ando m",
+ "▁s ie",
+ "▁si e",
+ "I I",
+ "▁The y",
+ "▁Th ey",
+ "▁ They",
+ "ment e",
+ "men te",
+ "m ente",
+ "ib li",
+ "▁f ine",
+ "▁fin e",
+ "▁fi ne",
+ "U T",
+ "▁de velop",
+ "▁deve lop",
+ "▁ develop",
+ "▁E in",
+ "so ft",
+ "of f",
+ "o ff",
+ "Se t",
+ "S et",
+ "▁a z",
+ "▁ az",
+ "et ers",
+ "eter s",
+ "ete rs",
+ "e ters",
+ "il der",
+ "ild er",
+ "ilde r",
+ "i lder",
+ "ple s",
+ "pl es",
+ "p les",
+ "▁spec ific",
+ "▁ specific",
+ "▁o m",
+ "▁ om",
+ "er ror",
+ "err or",
+ "e rror",
+ "ent ly",
+ "▁fil m",
+ "▁fi lm",
+ "▁ film",
+ "uc k",
+ "u ck",
+ "ain s",
+ "ai ns",
+ "a ins",
+ "ac ión",
+ "ació n",
+ "aci ón",
+ "a ción",
+ "ge s",
+ "g es",
+ "ж а",
+ "▁th ings",
+ "▁thing s",
+ "▁thin gs",
+ "S h",
+ "▁th ought",
+ "▁though t",
+ "▁ad ded",
+ "▁add ed",
+ "▁ added",
+ "de p",
+ "d ep",
+ "ско го",
+ "ск ого",
+ "ског о",
+ "с кого",
+ "▁L i",
+ "▁ Li",
+ "il s",
+ "i ls",
+ "yn c",
+ "y nc",
+ "▁т о",
+ "▁ то",
+ "ri es",
+ "rie s",
+ "r ies",
+ "▁c u",
+ "▁ cu",
+ "ch en",
+ "che n",
+ "c hen",
+ "IO N",
+ "I ON",
+ "▁D es",
+ "▁De s",
+ "▁ Des",
+ "ult ado",
+ "ir t",
+ "i rt",
+ "▁b ased",
+ "▁bas ed",
+ "▁base d",
+ "▁ba sed",
+ "▁ based",
+ "▁m o",
+ "▁ mo",
+ "▁d est",
+ "▁de st",
+ "▁des t",
+ "▁ dest",
+ "pn g",
+ "p ng",
+ "re en",
+ "ree n",
+ "r een",
+ "▁r unning",
+ "▁run ning",
+ "▁ running",
+ "am ma",
+ "amm a",
+ "ou d",
+ "o ud",
+ "▁re fer",
+ "▁ref er",
+ "▁ refer",
+ "io us",
+ "i ous",
+ "▁J ul",
+ "▁Ju l",
+ "▁ Jul",
+ "▁s earch",
+ "▁se arch",
+ "▁ search",
+ "al d",
+ "a ld",
+ "ed e",
+ "e de",
+ "▁w rong",
+ "▁wr ong",
+ "A n",
+ "▁u ntil",
+ "▁un til",
+ "▁ until",
+ "si te",
+ "s ite",
+ "ay er",
+ "aye r",
+ "a yer",
+ "▁on ce",
+ "▁ once",
+ "ar r",
+ "a rr",
+ "▁again st",
+ "== ==",
+ "=== =",
+ "= ===",
+ "▁s ource",
+ "▁ source",
+ "ar n",
+ "a rn",
+ "ap i",
+ "a pi",
+ "▁re present",
+ "▁repr esent",
+ "▁repres ent",
+ "▁repre sent",
+ "▁a ff",
+ "▁af f",
+ "▁ aff",
+ "▁s ein",
+ "▁se in",
+ "▁sei n",
+ "▁ sein",
+ "▁al low",
+ "▁all ow",
+ "▁allo w",
+ "▁ allow",
+ "or mal",
+ "orm al",
+ "en ded",
+ "end ed",
+ "ende d",
+ "▁cont rol",
+ "▁contr ol",
+ "▁contro l",
+ "▁ control",
+ "math bf",
+ "com e",
+ "co me",
+ "c ome",
+ "cu r",
+ "c ur",
+ "en do",
+ "end o",
+ "w a",
+ "▁up date",
+ "▁upd ate",
+ "▁ update",
+ "▁in side",
+ "▁ins ide",
+ "▁ inside",
+ "▁re ason",
+ "▁ reason",
+ "om en",
+ "ome n",
+ "o men",
+ "▁в ы",
+ "▁ вы",
+ "D e",
+ "▁ј е",
+ "▁ је",
+ "s w",
+ "▁s ever",
+ "▁se ver",
+ "O f",
+ "▁inst ance",
+ "▁ instance",
+ "▁m er",
+ "▁me r",
+ "▁ mer",
+ "▁e ffect",
+ "▁eff ect",
+ "▁ effect",
+ "col or",
+ "co lor",
+ "colo r",
+ "ug ust",
+ "il t",
+ "i lt",
+ "de s",
+ "d es",
+ "it z",
+ "i tz",
+ "ul ation",
+ "ula tion",
+ "u lation",
+ "ni e",
+ "n ie",
+ "▁W orld",
+ "▁Wor ld",
+ "▁ World",
+ "▁sim ilar",
+ "▁ similar",
+ "ym bol",
+ "hi ng",
+ "hin g",
+ "h ing",
+ "▁m ark",
+ "▁mar k",
+ "▁ mark",
+ "St ate",
+ "Stat e",
+ "▁cont ent",
+ "▁conten t",
+ "▁conte nt",
+ "▁ content",
+ "▁me ans",
+ "▁mean s",
+ "am ed",
+ "ame d",
+ "a med",
+ "▁E nd",
+ "▁En d",
+ "▁ End",
+ "N D",
+ "co unt",
+ "cou nt",
+ "c ount",
+ "▁In st",
+ "▁Ins t",
+ "▁ Inst",
+ "per ty",
+ "pert y",
+ "ct or",
+ "c tor",
+ "▁{ \\",
+ "▁ {\\",
+ "▁L et",
+ "▁Le t",
+ "▁ Let",
+ "▁! =",
+ "▁ !=",
+ "▁get ting",
+ "▁ getting",
+ "ut h",
+ "u th",
+ "um ber",
+ "umb er",
+ "▁Cons ultado",
+ "sch aft",
+ "sc haft",
+ "le te",
+ "let e",
+ "l ete",
+ "▁W ill",
+ "▁Wil l",
+ "▁Wi ll",
+ "▁ Will",
+ "▁E m",
+ "▁ Em",
+ "he ad",
+ "h ead",
+ "▁l eg",
+ "▁le g",
+ "▁ leg",
+ "но м",
+ "н ом",
+ "O r",
+ "ar m",
+ "a rm",
+ "pon d",
+ "po nd",
+ "p ond",
+ "▁Ch rist",
+ "▁Chris t",
+ "▁Chr ist",
+ "▁ Christ",
+ "▁a round",
+ "▁ar ound",
+ "▁ around",
+ "▁c lear",
+ "▁cl ear",
+ "▁cle ar",
+ "▁ clear",
+ "▁h ref",
+ "▁hr ef",
+ "▁ href",
+ "▁S ee",
+ "▁Se e",
+ "▁ See",
+ "') .",
+ "' ).",
+ "▁cre ated",
+ "▁create d",
+ "▁ created",
+ "▁b utton",
+ "▁but ton",
+ "▁ button",
+ "in ing",
+ "ini ng",
+ "i ning",
+ "▁c lick",
+ "▁cl ick",
+ "▁cli ck",
+ "▁ click",
+ "ia m",
+ "i am",
+ "pl it",
+ "p lit",
+ "F or",
+ "▁p olit",
+ "▁po lit",
+ "▁pol it",
+ "▁ polit",
+ "▁se em",
+ "▁see m",
+ "▁l ife",
+ "▁li fe",
+ "▁lif e",
+ "▁ life",
+ "но в",
+ "н ов",
+ "▁in tern",
+ "▁int ern",
+ "▁inter n",
+ "▁inte rn",
+ "▁ intern",
+ "щ и",
+ "se l",
+ "s el",
+ "so ci",
+ "s oci",
+ "▁s tor",
+ "▁st or",
+ "▁sto r",
+ "▁ stor",
+ "cl e",
+ "c le",
+ "ear ch",
+ "e arch",
+ "and roid",
+ "andro id",
+ "andr oid",
+ "}^ {",
+ "} ^{",
+ "▁e ither",
+ "▁f ew",
+ "▁fe w",
+ "▁init ial",
+ "▁initi al",
+ "▁ initial",
+ "l ength",
+ "ri a",
+ "r ia",
+ "sq l",
+ "s ql",
+ "wi k",
+ "w ik",
+ "▁é t",
+ "▁ ét",
+ "ue r",
+ "u er",
+ "▁val id",
+ "▁ valid",
+ "An d",
+ "A nd",
+ "in clude",
+ "includ e",
+ "ur y",
+ "u ry",
+ "▁s us",
+ "▁su s",
+ "ir ed",
+ "ire d",
+ "i red",
+ "▁A fter",
+ "▁Af ter",
+ "▁ After",
+ "▁d ue",
+ "▁du e",
+ "▁ due",
+ "▁b ei",
+ "▁be i",
+ "▁ bei",
+ "our ces",
+ "ource s",
+ "▁N ov",
+ "▁No v",
+ "▁ Nov",
+ "Ac t",
+ "A ct",
+ "▁C ont",
+ "▁Con t",
+ "▁Co nt",
+ "▁ Cont",
+ "▁bre ak",
+ "▁ break",
+ "es ted",
+ "est ed",
+ "este d",
+ "e sted",
+ "▁act ually",
+ "▁actual ly",
+ "▁actu ally",
+ "el se",
+ "els e",
+ "tm l",
+ "t ml",
+ "re r",
+ "r er",
+ "on es",
+ "one s",
+ "o nes",
+ "▁de sign",
+ "▁des ign",
+ "▁ design",
+ "▁pro perty",
+ "▁proper ty",
+ "▁ property",
+ "ph i",
+ "p hi",
+ "al ity",
+ "ali ty",
+ "oc h",
+ "o ch",
+ "is ts",
+ "ist s",
+ "▁ ·",
+ "ud io",
+ "udi o",
+ "A B",
+ "al a",
+ "a la",
+ "ion es",
+ "io nes",
+ "ione s",
+ "i ones",
+ "ф и",
+ "fin d",
+ "fi nd",
+ "f ind",
+ "A s",
+ "▁c ustom",
+ "▁cust om",
+ "▁ custom",
+ "▁a nn",
+ "▁an n",
+ "▁ ann",
+ "E S",
+ "O T",
+ "l ambda",
+ "▁i dent",
+ "▁id ent",
+ "▁ide nt",
+ "▁ ident",
+ "▁or gan",
+ "▁org an",
+ "▁ organ",
+ "▁C ent",
+ "▁Ce nt",
+ "▁ Cent",
+ "▁C har",
+ "▁Ch ar",
+ "▁Cha r",
+ "▁ Char",
+ "▁o s",
+ "▁ os",
+ "▁h ard",
+ "▁ha rd",
+ "▁har d",
+ "▁ hard",
+ "ро в",
+ "р ов",
+ "▁/ >",
+ "▁ />",
+ "k o",
+ "▁ex per",
+ "▁exp er",
+ "▁se par",
+ "▁sep ar",
+ "▁ separ",
+ "y l",
+ "ou rn",
+ "our n",
+ "o urn",
+ "▁d ev",
+ "▁de v",
+ "▁ dev",
+ "▁a uch",
+ "▁au ch",
+ "▁auc h",
+ "▁ auch",
+ "▁b lock",
+ "▁bl ock",
+ "▁blo ck",
+ "▁ block",
+ "bo ok",
+ "b ook",
+ "▁m ap",
+ "▁ma p",
+ "▁ map",
+ "il la",
+ "ill a",
+ "i lla",
+ "▁com put",
+ "▁comp ut",
+ "▁ comput",
+ "▁s pace",
+ "▁sp ace",
+ "▁spac e",
+ "▁ space",
+ "res ult",
+ ") }",
+ "▁e cho",
+ "▁ec ho",
+ "▁ echo",
+ "con fig",
+ "conf ig",
+ "h i",
+ "▁lar ge",
+ "▁larg e",
+ "▁ large",
+ "▁w idth",
+ "▁wid th",
+ "▁ width",
+ "▁G o",
+ "▁ Go",
+ "ma t",
+ "m at",
+ "▁d iff",
+ "▁di ff",
+ "▁dif f",
+ "▁ diff",
+ "▁k ind",
+ "▁ki nd",
+ "▁kin d",
+ "▁ kind",
+ "an ces",
+ "ance s",
+ "anc es",
+ "yn am",
+ "yna m",
+ "y nam",
+ "▁col or",
+ "▁co lor",
+ "▁ color",
+ "In t",
+ "I nt",
+ "so l",
+ "s ol",
+ "▁p i",
+ "▁ pi",
+ "▁char acter",
+ "▁charact er",
+ "▁ character",
+ "om ent",
+ "ome nt",
+ "omen t",
+ "o ment",
+ "▁res ponse",
+ "▁respons e",
+ "▁ response",
+ "ig ma",
+ "ward s",
+ "war ds",
+ "w ards",
+ "ar row",
+ "arr ow",
+ "с у",
+ "ti es",
+ "t ies",
+ "▁ü ber",
+ "▁ über",
+ "Im age",
+ "y d",
+ "▁п ере",
+ "▁пер е",
+ "▁пе ре",
+ "▁ пере",
+ "▁n ode",
+ "▁no de",
+ "▁nod e",
+ "▁ node",
+ "▁it em",
+ "▁i tem",
+ "▁ item",
+ "ach ine",
+ "achi ne",
+ "im a",
+ "i ma",
+ "▁v a",
+ "▁ va",
+ "▁appro ach",
+ "▁w er",
+ "▁we r",
+ "▁ wer",
+ "▁ч е",
+ "▁ че",
+ "O n",
+ "ol low",
+ "oll ow",
+ "он а",
+ "о на",
+ "ct ed",
+ "c ted",
+ "ur ed",
+ "ure d",
+ "u red",
+ "Cont roller",
+ "Control ler",
+ "li ed",
+ "lie d",
+ "l ied",
+ "▁j o",
+ "▁ jo",
+ "▁d al",
+ "▁da l",
+ "▁ dal",
+ "un k",
+ "▁ î",
+ "st art",
+ "sta rt",
+ "star t",
+ "ol a",
+ "o la",
+ "▁com pon",
+ "▁comp on",
+ "I C",
+ "bi t",
+ "b it",
+ "▁b ase",
+ "▁bas e",
+ "▁ba se",
+ "▁ base",
+ "п у",
+ "▁id ea",
+ "▁ide a",
+ "▁ idea",
+ "▁d ire",
+ "▁di re",
+ "▁dir e",
+ "▁ dire",
+ "▁r ad",
+ "▁ra d",
+ "▁ rad",
+ "gr oup",
+ "gro up",
+ "▁W ith",
+ "▁Wi th",
+ "▁Wit h",
+ "▁ With",
+ "ser ver",
+ "serv er",
+ "serve r",
+ "si de",
+ "s ide",
+ "si ng",
+ "sin g",
+ "s ing",
+ "▁d ies",
+ "▁di es",
+ "▁die s",
+ "▁n ear",
+ "▁ne ar",
+ "▁ near",
+ "▁v oor",
+ "▁vo or",
+ "▁ voor",
+ "▁arg ument",
+ "▁ argument",
+ "▁} ,",
+ "▁ },",
+ "▁l and",
+ "▁la nd",
+ "▁lan d",
+ "▁ land",
+ "▁n ames",
+ "▁name s",
+ "▁na mes",
+ "▁nam es",
+ "▁ names",
+ "▁o ption",
+ "▁op tion",
+ "▁opt ion",
+ "▁ option",
+ "ith ub",
+ "pp ed",
+ "ppe d",
+ "p ped",
+ "au g",
+ "a ug",
+ "▁l inks",
+ "▁link s",
+ "▁lin ks",
+ "▁ links",
+ "▁f ull",
+ "▁fu ll",
+ "▁ful l",
+ "▁ full",
+ "▁s itu",
+ "▁si tu",
+ "▁sit u",
+ "▁con sole",
+ "▁cons ole",
+ "▁ console",
+ "▁e tc",
+ "▁et c",
+ "▁ etc",
+ "au x",
+ "a ux",
+ "▁C or",
+ "▁Co r",
+ "▁ Cor",
+ "icro soft",
+ "▁c ame",
+ "▁cam e",
+ "▁ca me",
+ "lo cal",
+ "loc al",
+ "l ocal",
+ "▁k nown",
+ "▁kn own",
+ "▁know n",
+ "▁ known",
+ "▁multi ple",
+ "▁multip le",
+ "▁ multiple",
+ "angu age",
+ "▁t otal",
+ "▁to tal",
+ "▁tot al",
+ "▁ total",
+ "ol ogy",
+ "olog y",
+ "olo gy",
+ "ä t",
+ "▁ Х",
+ "▁f re",
+ "▁fr e",
+ "▁ fre",
+ "▁t en",
+ "▁te n",
+ "▁ ten",
+ "ide o",
+ "▁b es",
+ "▁be s",
+ "▁ bes",
+ "tr ue",
+ "Qu ery",
+ "Que ry",
+ "om m",
+ "o mm",
+ "▁A rt",
+ "▁Ar t",
+ "▁ Art",
+ "▁ke ep",
+ "▁ keep",
+ "▁Un iversity",
+ "▁Univers ity",
+ "re ate",
+ "rea te",
+ "pp ort",
+ "ppo rt",
+ "p port",
+ "▁p ython",
+ "▁ python",
+ "tr a",
+ "t ra",
+ "ect or",
+ "ec tor",
+ "e ctor",
+ "р і",
+ "op h",
+ "o ph",
+ "▁c onc",
+ "▁con c",
+ "▁co nc",
+ "▁f our",
+ "▁fo ur",
+ "▁fou r",
+ "▁ four",
+ "vi ron",
+ "vir on",
+ "▁v ia",
+ "▁vi a",
+ "▁ via",
+ "? \"",
+ "im age",
+ "ima ge",
+ "ol l",
+ "o ll",
+ "ны е",
+ "н ые",
+ "▁con text",
+ "▁cont ext",
+ "▁conte xt",
+ "▁ context",
+ "▁s em",
+ "▁se m",
+ "▁ sem",
+ ". _",
+ "▁e ng",
+ "▁en g",
+ "▁ eng",
+ "ma r",
+ "m ar",
+ "A D",
+ "▁m or",
+ "▁mo r",
+ "▁ mor",
+ "▁C al",
+ "▁Ca l",
+ "▁ Cal",
+ "▁c ell",
+ "▁ce ll",
+ "▁cel l",
+ "▁ cell",
+ "im al",
+ "ima l",
+ "i mal",
+ "AT E",
+ "A TE",
+ "▁in f",
+ "▁ inf",
+ "ö n",
+ "uf fer",
+ "uff er",
+ "s q",
+ ".. ..",
+ "... .",
+ ". ...",
+ "▁z ur",
+ "▁zu r",
+ "W ith",
+ "ра н",
+ "р ан",
+ "ch n",
+ "c hn",
+ "▁d oor",
+ "▁do or",
+ "▁ door",
+ "cont ent",
+ "▁m iss",
+ "▁mi ss",
+ "▁mis s",
+ "▁ miss",
+ "▁s imp",
+ "▁sim p",
+ "▁si mp",
+ "▁ simp",
+ "á r",
+ "ir a",
+ "i ra",
+ "▁h at",
+ "▁ha t",
+ "▁ hat",
+ "Te st",
+ "T est",
+ "▁c ertain",
+ "▁cert ain",
+ "▁cer tain",
+ "▁ certain",
+ "N S",
+ "▁c ho",
+ "▁ch o",
+ "▁ cho",
+ "▁ad v",
+ "▁ adv",
+ "wh ere",
+ "w here",
+ "▁lo oking",
+ "▁look ing",
+ "▁ looking",
+ "▁t imes",
+ "▁time s",
+ "▁tim es",
+ "▁ti mes",
+ "▁ times",
+ "ни х",
+ "н их",
+ "ut o",
+ "u to",
+ "▁ É",
+ "ca n",
+ "c an",
+ "ho st",
+ "hos t",
+ "h ost",
+ "▁( *",
+ "▁ (*",
+ "lo at",
+ "▁n icht",
+ "▁ni cht",
+ "▁nic ht",
+ "▁nich t",
+ "Fi eld",
+ "F ield",
+ "bu rg",
+ "bur g",
+ "b urg",
+ "con st",
+ "cons t",
+ "ad es",
+ "ade s",
+ "a des",
+ "▁M us",
+ "▁Mu s",
+ "▁ Mus",
+ "▁n othing",
+ "▁not hing",
+ "▁no thing",
+ "▁ nothing",
+ "▁in cre",
+ "▁inc re",
+ "▁M in",
+ "▁Mi n",
+ "▁ Min",
+ "▁p ower",
+ "▁po wer",
+ "▁pow er",
+ "▁ power",
+ "▁Amer ican",
+ "▁America n",
+ "▁ American",
+ "l n",
+ "val id",
+ "un gs",
+ "ung s",
+ "▁N ational",
+ "▁Nat ional",
+ "▁Nation al",
+ "▁ National",
+ "▁S an",
+ "▁Sa n",
+ "▁ San",
+ "▁Y ork",
+ "Re quest",
+ "ch ar",
+ "cha r",
+ "c har",
+ "▁Z e",
+ "▁ Ze",
+ "but ton",
+ "b utton",
+ "▁a lg",
+ "▁al g",
+ "▁ alg",
+ "SO N",
+ "S ON",
+ "▁a p",
+ "▁ ap",
+ "uf f",
+ "u ff",
+ "ab ility",
+ "abil ity",
+ "е м",
+ "▁any thing",
+ "el a",
+ "e la",
+ "() )",
+ "( ))",
+ "б а",
+ "amp ion",
+ "ampio n",
+ "▁p ot",
+ "▁po t",
+ "▁ pot",
+ "▁f ut",
+ "▁fu t",
+ "ail able",
+ "▁p rop",
+ "▁pro p",
+ "▁pr op",
+ "▁ prop",
+ "\" ]",
+ "▁l ess",
+ "▁le ss",
+ "▁les s",
+ "▁ less",
+ "la g",
+ "l ag",
+ "▁A ugust",
+ "▁Aug ust",
+ "▁ August",
+ "I t",
+ "▁p lease",
+ "▁ple ase",
+ "▁st yle",
+ "▁sty le",
+ "▁ style",
+ "▁Al so",
+ "▁Als o",
+ "▁ Also",
+ "b t",
+ "▁pro bably",
+ "▁prob ably",
+ "▁O ne",
+ "▁On e",
+ "▁ One",
+ "▁p oss",
+ "▁po ss",
+ "▁pos s",
+ "▁ poss",
+ "U I",
+ "ui t",
+ "u it",
+ "▁W est",
+ "▁We st",
+ "▁Wes t",
+ "▁ West",
+ "h n",
+ "+ \\",
+ "But ton",
+ "Butt on",
+ "B utton",
+ "js on",
+ "j son",
+ "er r",
+ "e rr",
+ "ra me",
+ "ram e",
+ "r ame",
+ "do m",
+ "d om",
+ "il on",
+ "ilo n",
+ "i lon",
+ "al f",
+ "▁c lient",
+ "▁cl ient",
+ "▁cli ent",
+ "▁ client",
+ "▁cont inu",
+ "▁contin u",
+ "▁ continu",
+ "x ml",
+ "pe c",
+ "p ec",
+ "ad or",
+ "ado r",
+ "a dor",
+ "l s",
+ "▁how ever",
+ "▁A ny",
+ "▁An y",
+ "▁ Any",
+ "än d",
+ "ä nd",
+ "math rm",
+ "▁u rl",
+ "▁ur l",
+ "▁ url",
+ "▁b ook",
+ "▁bo ok",
+ "▁ book",
+ "▁g l",
+ "▁ gl",
+ "iv es",
+ "ive s",
+ "i ves",
+ "g i",
+ "▁t ro",
+ "▁tr o",
+ "▁U S",
+ "▁ US",
+ "po int",
+ "p oint",
+ "op en",
+ "ope n",
+ "o pen",
+ "▁c ur",
+ "▁cu r",
+ "▁ cur",
+ "▁e ra",
+ "▁er a",
+ "▁ era",
+ "▁part icular",
+ "▁partic ular",
+ "▁particul ar",
+ "▁parti cular",
+ "▁H T",
+ "▁ HT",
+ "oo t",
+ "o ot",
+ "el lo",
+ "ell o",
+ "lo bal",
+ "lob al",
+ "▁a ction",
+ "▁act ion",
+ "▁ac tion",
+ "▁ action",
+ "▁I nt",
+ "▁In t",
+ "▁ Int",
+ "▁in clude",
+ "▁incl ude",
+ "▁includ e",
+ "▁inclu de",
+ "▁ include",
+ "▁el ements",
+ "▁element s",
+ "▁ele ments",
+ "▁elem ents",
+ "▁ elements",
+ "на я",
+ "ar ds",
+ "ard s",
+ "▁B l",
+ "▁ Bl",
+ "▁h um",
+ "▁hu m",
+ "▁ hum",
+ "fr om",
+ "f rom",
+ "ch ange",
+ "chan ge",
+ "▁function s",
+ "▁fun ctions",
+ "▁ functions",
+ "he n",
+ "h en",
+ "Ser vice",
+ "Serv ice",
+ "▁he ight",
+ "▁ height",
+ "▁L and",
+ "▁La nd",
+ "▁Lan d",
+ "▁ Land",
+ "ia s",
+ "i as",
+ "g s",
+ "ió n",
+ "i ón",
+ "ло в",
+ "л ов",
+ "no de",
+ "n ode",
+ ". ”",
+ "ha nd",
+ "han d",
+ "h and",
+ "▁б у",
+ "▁ бу",
+ "▁a mb",
+ "▁am b",
+ "▁ amb",
+ "▁L u",
+ "▁ Lu",
+ "▁th row",
+ "▁thr ow",
+ "▁thro w",
+ "▁ throw",
+ "▁m ot",
+ "▁mo t",
+ "▁ mot",
+ "▁A ct",
+ "▁Ac t",
+ "▁ Act",
+ "▁w orld",
+ "▁wor ld",
+ "▁ world",
+ "_ \\",
+ "ba se",
+ "bas e",
+ "b ase",
+ "▁C o",
+ "▁ Co",
+ "▁ar ch",
+ "▁arc h",
+ "▁ arch",
+ "▁## ##",
+ "▁### #",
+ "▁ ####",
+ "ge d",
+ "g ed",
+ "pr il",
+ "p ril",
+ "ol der",
+ "old er",
+ "o lder",
+ "Mod el",
+ "Mode l",
+ "Mo del",
+ "M odel",
+ "▁sever al",
+ "li e",
+ "l ie",
+ "che ck",
+ "c heck",
+ "] {",
+ "con s",
+ "co ns",
+ "c ons",
+ "▁T ra",
+ "▁Tr a",
+ "▁ Tra",
+ "he ck",
+ "▁l east",
+ "▁le ast",
+ "do wn",
+ "d own",
+ "eb ru",
+ "e bru",
+ "De f",
+ "D ef",
+ "par am",
+ "pa ram",
+ "para m",
+ "p aram",
+ "is cher",
+ "isch er",
+ "ische r",
+ "isc her",
+ "i scher",
+ "▁c as",
+ "▁ca s",
+ "▁ cas",
+ "C H",
+ "▁add ress",
+ "▁addr ess",
+ "▁ address",
+ "▁ра з",
+ "▁ раз",
+ "uf en",
+ "ufe n",
+ "u fen",
+ "ur ope",
+ "uro pe",
+ "urop e",
+ "е й",
+ "▁b ound",
+ "▁bo und",
+ "▁bou nd",
+ "▁ bound",
+ "C O",
+ "▁A ng",
+ "▁An g",
+ "▁ Ang",
+ "▁M a",
+ "▁ Ma",
+ "In dex",
+ "Ind ex",
+ "co re",
+ "cor e",
+ "c ore",
+ "ou ch",
+ "ouc h",
+ "o uch",
+ "at abase",
+ "ata base",
+ "rib ution",
+ "ribu tion",
+ "doc ument",
+ "d ocument",
+ "L e",
+ "}_ {",
+ "} _{",
+ "ve rn",
+ "ver n",
+ "v ern",
+ "▁stat ement",
+ "▁state ment",
+ "▁ statement",
+ "▁B rit",
+ "▁Br it",
+ "on o",
+ "o no",
+ "ps ilon",
+ "psi lon",
+ "▁le vel",
+ "▁lev el",
+ "▁ level",
+ "▁pro duct",
+ "▁produ ct",
+ "▁prod uct",
+ "▁ product",
+ "I S",
+ "▁c ourse",
+ "▁cour se",
+ "▁cours e",
+ "▁ course",
+ "▁M r",
+ "▁ Mr",
+ "> \r",
+ "▁back ground",
+ "▁ background",
+ "▁re t",
+ "▁r et",
+ "▁ ret",
+ "er ing",
+ "eri ng",
+ "e ring",
+ "mo st",
+ "mos t",
+ "m ost",
+ "сь ко",
+ "ськ о",
+ "▁th read",
+ "▁thr ead",
+ "▁thre ad",
+ "▁ thread",
+ "it ional",
+ "ition al",
+ "iti onal",
+ "it es",
+ "ite s",
+ "i tes",
+ "P l",
+ "▁d os",
+ "▁do s",
+ "g a",
+ "da y",
+ "d ay",
+ "▁G ener",
+ "▁Ge ner",
+ "▁Gen er",
+ "▁Gene r",
+ "▁ Gener",
+ "▁t w",
+ "▁ tw",
+ "A d",
+ "\"> <",
+ "\" ><",
+ "▁( $",
+ "▁ ($",
+ "▁m oment",
+ "▁mo ment",
+ "▁mom ent",
+ "tit le",
+ "t itle",
+ "cre ate",
+ "c reate",
+ "vers ion",
+ "v ersion",
+ "Man ager",
+ "▁f ur",
+ "▁fu r",
+ "▁ fur",
+ "pp ing",
+ "ppi ng",
+ "p ping",
+ "ij n",
+ "о с",
+ "▁r ather",
+ "▁ra ther",
+ "▁rat her",
+ "pt ember",
+ "O S",
+ "▁s ite",
+ "▁si te",
+ "▁sit e",
+ "▁ site",
+ "▁c aus",
+ "▁ca us",
+ "an i",
+ "a ni",
+ "▁h ome",
+ "▁hom e",
+ "▁ho me",
+ "▁ home",
+ "м і",
+ "▁sh ort",
+ "▁sho rt",
+ "▁ short",
+ "p a",
+ "▁l ead",
+ "▁le ad",
+ "is hed",
+ "ish ed",
+ "ci ng",
+ "cin g",
+ "c ing",
+ "or ding",
+ "ord ing",
+ "ordin g",
+ "▁p rote",
+ "▁pro te",
+ "▁pr ote",
+ "▁prot e",
+ "▁ prote",
+ "с ле",
+ "LE CT",
+ "L ECT",
+ "▁di dn",
+ "▁did n",
+ "pos ition",
+ "p osition",
+ "\", \"",
+ "\" ,\"",
+ "() ,",
+ "( ),",
+ "tr ans",
+ "tra ns",
+ "▁l ot",
+ "▁lo t",
+ "▁ lot",
+ "▁о д",
+ "▁ од",
+ "A S",
+ "▁s at",
+ "▁sa t",
+ "▁po ints",
+ "▁point s",
+ "▁ points",
+ "g ithub",
+ "st yle",
+ "sty le",
+ "▁го ду",
+ "▁год у",
+ "▁D is",
+ "▁Di s",
+ "▁ Dis",
+ "pon ent",
+ "om et",
+ "ome t",
+ "o met",
+ "ze r",
+ "z er",
+ "UL L",
+ "U LL",
+ "▁p a",
+ "▁ pa",
+ "A P",
+ "ac es",
+ "ace s",
+ "a ces",
+ "▁Un ited",
+ "▁Unit ed",
+ "am a",
+ "a ma",
+ "et y",
+ "e ty",
+ "Col or",
+ "Co lor",
+ "▁en ough",
+ "U S",
+ "▁l ength",
+ "▁leng th",
+ "▁ length",
+ "() );",
+ "()) ;",
+ "( ));",
+ "^{ \\",
+ "^ {\\",
+ "ft y",
+ "f ty",
+ "Bo x",
+ "B ox",
+ "ap ter",
+ "apt er",
+ "▁comp let",
+ "▁comple t",
+ "▁compl et",
+ "ни к",
+ "ma x",
+ "m ax",
+ "ob ject",
+ "obj ect",
+ "o bject",
+ "( {",
+ "img ur",
+ "it ive",
+ "iti ve",
+ "un ch",
+ "unc h",
+ "▁S ub",
+ "▁Su b",
+ "▁ Sub",
+ "en de",
+ "end e",
+ "e nde",
+ "г у",
+ "ateg ory",
+ "ategor y",
+ "т ы",
+ "ia no",
+ "ian o",
+ "i ano",
+ "▁u pd",
+ "▁up d",
+ "▁A ust",
+ "▁Aus t",
+ "▁Au st",
+ "}{ \\",
+ "} {\\",
+ "to p",
+ "t op",
+ "la s",
+ "l as",
+ "pi s",
+ "p is",
+ "in ess",
+ "ine ss",
+ "ines s",
+ "i ness",
+ "▁{ \r",
+ "▁ {\r",
+ "▁ Е",
+ "G r",
+ "▁A S",
+ "▁ AS",
+ "▁в е",
+ "▁ ве",
+ "th ers",
+ "ther s",
+ "the rs",
+ "▁d efined",
+ "▁def ined",
+ "▁define d",
+ "▁defin ed",
+ "▁ defined",
+ "az ione",
+ "azi one",
+ "a zione",
+ "▁o ffic",
+ "▁of fic",
+ "▁off ic",
+ "▁au tom",
+ "▁aut om",
+ "▁auto m",
+ "▁ autom",
+ "ü n",
+ "▁b row",
+ "▁br ow",
+ "▁bro w",
+ "▁ brow",
+ "▁s erv",
+ "▁se rv",
+ "▁ser v",
+ "▁ serv",
+ "▁re move",
+ "▁rem ove",
+ "▁remov e",
+ "▁ remove",
+ "ir o",
+ "i ro",
+ "▁B ibli",
+ "▁Bib li",
+ "E D",
+ "▁w hole",
+ "▁wh ole",
+ "▁who le",
+ "▁ ш",
+ "▁J ava",
+ "▁Ja va",
+ "▁ Java",
+ "▁z um",
+ "▁zu m",
+ "u a",
+ "p m",
+ "de v",
+ "d ev",
+ "к ра",
+ "ol ds",
+ "old s",
+ "▁W ar",
+ "▁Wa r",
+ "ä n",
+ "pa ss",
+ "pas s",
+ "p ass",
+ "u z",
+ "[ \"",
+ "▁t ri",
+ "▁tr i",
+ "▁ tri",
+ "is ed",
+ "ise d",
+ "i sed",
+ "х а",
+ "▁mem ory",
+ "▁memor y",
+ "▁ memory",
+ "▁P ort",
+ "▁Po rt",
+ "▁Por t",
+ "▁ Port",
+ "op er",
+ "ope r",
+ "o per",
+ "U p",
+ "▁Th ank",
+ "▁ Thank",
+ "▁M ich",
+ "▁Mi ch",
+ "▁Mic h",
+ "▁ Mich",
+ "yc h",
+ "y ch",
+ "bo ard",
+ "boa rd",
+ "б у",
+ "In st",
+ "▁b egin",
+ "▁be gin",
+ "▁beg in",
+ "▁ begin",
+ "in ation",
+ "ina tion",
+ "▁M od",
+ "▁Mo d",
+ "▁ Mod",
+ "_ ,",
+ "▁D en",
+ "▁De n",
+ "▁ Den",
+ "op tion",
+ "opt ion",
+ "o ption",
+ "▁con struct",
+ "▁const ruct",
+ "▁constru ct",
+ "▁ construct",
+ "▁J ust",
+ "▁Ju st",
+ "▁ Just",
+ "Ma p",
+ "M ap",
+ "ru n",
+ "r un",
+ "▁re spect",
+ "▁res pect",
+ "▁resp ect",
+ "ha m",
+ "h am",
+ "ма н",
+ "м ан",
+ "im edia",
+ "ime dia",
+ "i media",
+ "▁a pply",
+ "▁app ly",
+ "▁ap ply",
+ "▁ apply",
+ "cri ption",
+ "cript ion",
+ "ma in",
+ "mai n",
+ "m ain",
+ "▁К а",
+ "▁ Ка",
+ "oi d",
+ "o id",
+ "Co de",
+ "C ode",
+ "} ;",
+ "In fo",
+ "Inf o",
+ "▁for mat",
+ "▁form at",
+ "▁forma t",
+ "▁ format",
+ "Lo g",
+ "L og",
+ "▁с у",
+ "▁ су",
+ "▁l at",
+ "▁la t",
+ "▁ lat",
+ "ut or",
+ "uto r",
+ "u tor",
+ "▁re ference",
+ "▁refer ence",
+ "▁ reference",
+ "▁cal cul",
+ "▁calc ul",
+ "▁ calcul",
+ "on n",
+ "o nn",
+ "L o",
+ "in fty",
+ "inf ty",
+ "▁a long",
+ "▁al ong",
+ "▁ č",
+ "▁t ask",
+ "▁ta sk",
+ "▁ task",
+ "▁e v",
+ "▁ ev",
+ "th eta",
+ "the ta",
+ "ra s",
+ "r as",
+ "jo r",
+ "j or",
+ "▁б о",
+ "▁ бо",
+ "▁princi p",
+ "▁prin cip",
+ "M y",
+ "▁e iner",
+ "▁ein er",
+ "▁eine r",
+ "▁E s",
+ "▁ Es",
+ "om b",
+ "o mb",
+ "qu ad",
+ "qua d",
+ "^{ -",
+ "^ {-",
+ "um p",
+ "u mp",
+ "▁t ill",
+ "▁til l",
+ "▁ti ll",
+ "д і",
+ "▁lo oks",
+ "▁look s",
+ "▁o k",
+ "▁ ok",
+ "ц а",
+ "n u",
+ "Fi l",
+ "F il",
+ "▁s ont",
+ "▁so nt",
+ "▁son t",
+ "▁M ed",
+ "▁Me d",
+ "▁ Med",
+ "ag ue",
+ "agu e",
+ "a gue",
+ "▁c ost",
+ "▁co st",
+ "▁cos t",
+ "▁ cost",
+ "▁S im",
+ "▁Si m",
+ "▁ Sim",
+ "▁com ment",
+ "▁comm ent",
+ "▁comme nt",
+ "▁ comment",
+ "▁( \\",
+ "▁ (\\",
+ "eg en",
+ "ege n",
+ "e gen",
+ "▁para meter",
+ "▁param eter",
+ "▁paramet er",
+ "▁ parameter",
+ "▁F rance",
+ "▁Fran ce",
+ "▁Fr ance",
+ "▁Franc e",
+ "▁ France",
+ "re p",
+ "r ep",
+ "▁T H",
+ "▁ TH",
+ "▁y et",
+ "▁ye t",
+ "▁a way",
+ "▁aw ay",
+ "▁ away",
+ "▁c irc",
+ "▁ci rc",
+ "▁cir c",
+ "▁ circ",
+ "▁A PI",
+ "▁AP I",
+ "▁ API",
+ "em p",
+ "e mp",
+ "в і",
+ "L ayout",
+ "▁l ines",
+ "▁li nes",
+ "▁line s",
+ "▁lin es",
+ "▁ lines",
+ "▁P art",
+ "▁Par t",
+ "▁Pa rt",
+ "▁ Part",
+ "em pt",
+ "emp t",
+ "▁B i",
+ "▁ Bi",
+ "▁m ind",
+ "▁min d",
+ "▁mi nd",
+ "▁ mind",
+ "k y",
+ "gi ng",
+ "gin g",
+ "g ing",
+ "▁re port",
+ "▁rep ort",
+ "▁repo rt",
+ "▁ report",
+ "▁A dd",
+ "▁Ad d",
+ "▁ Add",
+ "ро д",
+ "р од",
+ "▁r ange",
+ "▁ran ge",
+ "▁rang e",
+ "▁ range",
+ "ci as",
+ "cia s",
+ "c ias",
+ "li p",
+ "l ip",
+ "▁K ar",
+ "▁Ka r",
+ "▁ Kar",
+ "▁Comm ons",
+ "▁Common s",
+ "ger ufen",
+ "af f",
+ "a ff",
+ "se c",
+ "s ec",
+ "▁h tml",
+ "▁ html",
+ "li g",
+ "l ig",
+ "▁w indow",
+ "▁wind ow",
+ "▁ window",
+ "in ition",
+ "ini tion",
+ "init ion",
+ "ci s",
+ "c is",
+ "▁u t",
+ "▁ ut",
+ "el n",
+ "e ln",
+ "▁a ux",
+ "▁au x",
+ "▁ aux",
+ "▁n eg",
+ "▁ne g",
+ "▁ neg",
+ "Ha nd",
+ "H and",
+ "▁) ;",
+ "▁ );",
+ "▁a nal",
+ "▁an al",
+ "▁ anal",
+ "▁f ri",
+ "▁fr i",
+ "▁ fri",
+ "▁с и",
+ "▁ си",
+ "et ch",
+ "etc h",
+ "m d",
+ "pa ge",
+ "pag e",
+ "p age",
+ "▁l ibrary",
+ "▁li brary",
+ "▁ library",
+ "▁: =",
+ "▁ :=",
+ "RO M",
+ "R OM",
+ "Y ou",
+ "sp ace",
+ "s pace",
+ "▁d urch",
+ "▁dur ch",
+ "▁h ost",
+ "▁ho st",
+ "▁hos t",
+ "▁ host",
+ "av en",
+ "ave n",
+ "a ven",
+ "▁F ile",
+ "▁Fil e",
+ "▁ File",
+ "al le",
+ "all e",
+ "a lle",
+ "ти в",
+ "▁p ap",
+ "▁pa p",
+ "ст во",
+ "ств о",
+ "с тво",
+ "mar k",
+ "m ark",
+ "▁m ais",
+ "▁ma is",
+ "▁mai s",
+ "er man",
+ "erm an",
+ "Si ze",
+ "S ize",
+ "е к",
+ "▁М а",
+ "▁ Ма",
+ "▁is n",
+ "▁i sn",
+ "▁c opy",
+ "▁co py",
+ "▁cop y",
+ "▁ copy",
+ "st en",
+ "ste n",
+ "s ten",
+ "ri ver",
+ "riv er",
+ "rive r",
+ "r iver",
+ "▁w ent",
+ "▁we nt",
+ "▁wen t",
+ "▁j avascript",
+ "▁java script",
+ "▁ javascript",
+ "▁s am",
+ "▁sa m",
+ "▁ sam",
+ "▁f rame",
+ "▁fr ame",
+ "▁fra me",
+ "▁fram e",
+ "▁ frame",
+ "▁v i",
+ "▁ vi",
+ "▁pre vious",
+ "▁prev ious",
+ "▁ previous",
+ "ro du",
+ "rod u",
+ "r odu",
+ "▁method s",
+ "▁ methods",
+ "▁ne cess",
+ "▁neces s",
+ "▁ necess",
+ "N A",
+ "ck et",
+ "cke t",
+ "c ket",
+ "▁o pt",
+ "▁op t",
+ "▁ opt",
+ "Lo c",
+ "L oc",
+ "ho w",
+ "h ow",
+ "▁î n",
+ "▁ în",
+ "sh ip",
+ "s hip",
+ "▁it self",
+ "▁its elf",
+ "▁P lease",
+ "▁Ple ase",
+ "▁ Please",
+ "ie ne",
+ "ien e",
+ "i ene",
+ "ве р",
+ "в ер",
+ "▁< <",
+ "▁ <<",
+ "▁m ill",
+ "▁mil l",
+ "▁mi ll",
+ "▁ mill",
+ "▁t rad",
+ "▁tr ad",
+ "▁tra d",
+ "▁ trad",
+ "pa ce",
+ "p ace",
+ "▁H ar",
+ "▁Ha r",
+ "▁ Har",
+ "it en",
+ "ite n",
+ "i ten",
+ "wi se",
+ "w ise",
+ "writ e",
+ "wr ite",
+ "w rite",
+ "ци и",
+ "р ы",
+ "Lin e",
+ "Li ne",
+ "L ine",
+ "ol o",
+ "o lo",
+ "▁ac cept",
+ "▁ accept",
+ "he ight",
+ "▁e lect",
+ "▁el ect",
+ "▁ele ct",
+ "▁ elect",
+ "el la",
+ "ell a",
+ "e lla",
+ "▁p å",
+ "Se lect",
+ "S elect",
+ "▁ ли",
+ "▁\\ <",
+ "▁ \\<",
+ "( (",
+ "▁I D",
+ "▁ ID",
+ "op s",
+ "o ps",
+ "ва н",
+ "в ан",
+ "i ó",
+ "T P",
+ "» ,",
+ "ne ction",
+ "nect ion",
+ "n ection",
+ "par ent",
+ "pa rent",
+ "▁M ag",
+ "▁Ma g",
+ "▁ Mag",
+ "Tab le",
+ "T able",
+ "O ver",
+ "▁n etwork",
+ "▁net work",
+ "▁ network",
+ "с по",
+ "▁as sign",
+ "▁ass ign",
+ "▁ assign",
+ "ig ger",
+ "igg er",
+ "ir m",
+ "i rm",
+ ") `",
+ "ot tom",
+ "ott om",
+ "otto m",
+ "be ta",
+ "bet a",
+ "b eta",
+ "▁d ell",
+ "▁de ll",
+ "▁del l",
+ "▁b ody",
+ "▁bo dy",
+ "▁bod y",
+ "▁ body",
+ "▁д а",
+ "▁ да",
+ "▁Y our",
+ "▁You r",
+ "▁ Your",
+ "▁f ue",
+ "▁fu e",
+ "▁p ackage",
+ "▁pack age",
+ "▁ package",
+ "▁l ight",
+ "▁lig ht",
+ "▁ light",
+ "▁* *",
+ "▁ **",
+ "M P",
+ "▁c ou",
+ "▁co u",
+ "▁ cou",
+ "ye s",
+ "y es",
+ ": \\",
+ "▁ Ч",
+ "▁m ention",
+ "▁men tion",
+ "▁ment ion",
+ "en sch",
+ "ens ch",
+ "▁d eg",
+ "▁de g",
+ "▁ deg",
+ "▁con vert",
+ "▁conver t",
+ "▁conv ert",
+ "▁ convert",
+ "▁D av",
+ "▁Da v",
+ "ad t",
+ "a dt",
+ "Res ult",
+ "th ough",
+ "▁b us",
+ "▁bu s",
+ "▁ bus",
+ "x y",
+ "▁s een",
+ "▁se en",
+ "▁see n",
+ "▁ seen",
+ "Al l",
+ "A ll",
+ "pu blic",
+ "pub lic",
+ "p ublic",
+ "iv ely",
+ "ive ly",
+ "ivel y",
+ "▁R ec",
+ "▁Re c",
+ "▁ Rec",
+ "▁H is",
+ "▁Hi s",
+ "si m",
+ "s im",
+ "▁f ör",
+ "▁fö r",
+ "▁ för",
+ "▁h istor",
+ "▁his tor",
+ "▁hi stor",
+ "▁hist or",
+ "▁ histor",
+ "▁s ett",
+ "▁se tt",
+ "▁set t",
+ "▁ sett",
+ "ra t",
+ "r at",
+ "ab led",
+ "able d",
+ "abl ed",
+ "a bled",
+ "▁» ,",
+ "▁ »,",
+ "go ogle",
+ "We b",
+ "W eb",
+ "é l",
+ "▁t itle",
+ "▁tit le",
+ "▁ title",
+ "▁J anu",
+ "▁Jan u",
+ "▁Ja nu",
+ "ј а",
+ "▁t ook",
+ "▁to ok",
+ "▁too k",
+ "id en",
+ "ide n",
+ "i den",
+ "s z",
+ "▁G et",
+ "▁Ge t",
+ "▁ Get",
+ "▁object s",
+ "▁ objects",
+ "▁com mon",
+ "▁comm on",
+ "▁ common",
+ "▁ch anges",
+ "▁change s",
+ "▁chang es",
+ "▁ changes",
+ "▁L ond",
+ "▁Lo nd",
+ "▁ Lond",
+ "▁ex tern",
+ "▁ext ern",
+ "▁j u",
+ "▁ ju",
+ "I s",
+ "▁av ailable",
+ "▁avail able",
+ "▁ available",
+ "tr i",
+ "t ri",
+ "▁m ás",
+ "▁má s",
+ "os a",
+ "o sa",
+ "B e",
+ "▁D ata",
+ "▁Da ta",
+ "▁Dat a",
+ "▁ Data",
+ "ur al",
+ "ura l",
+ "u ral",
+ "▁h om",
+ "▁ho m",
+ "▁ hom",
+ "▁acc ount",
+ "▁ac count",
+ "▁ account",
+ "o o",
+ "▁p erm",
+ "▁per m",
+ "▁pe rm",
+ "▁ perm",
+ "res pond",
+ "resp ond",
+ "y t",
+ "▁s end",
+ "▁se nd",
+ "▁sen d",
+ "▁ send",
+ "▁return s",
+ "▁ returns",
+ "iv id",
+ "ivi d",
+ "i vid",
+ "▁ex pla",
+ "▁exp la",
+ "▁expl a",
+ "í n",
+ "▁n or",
+ "▁no r",
+ "▁ nor",
+ "I f",
+ "▁F rom",
+ "▁Fr om",
+ "▁Fro m",
+ "▁ From",
+ "▁t arget",
+ "▁tar get",
+ "▁ target",
+ "fe ct",
+ "f ect",
+ "ен т",
+ "▁u it",
+ "▁ui t",
+ "▁ uit",
+ "▁J o",
+ "▁ Jo",
+ "▁vari ables",
+ "▁variable s",
+ "▁ variables",
+ "▁s eries",
+ "▁se ries",
+ "▁ser ies",
+ "▁serie s",
+ "▁ series",
+ "▁f unc",
+ "▁fun c",
+ "▁fu nc",
+ "▁ func",
+ "▁him self",
+ "▁ч а",
+ "▁ ча",
+ "an ti",
+ "ant i",
+ "▁a ch",
+ "▁ac h",
+ "▁ ach",
+ "ia log",
+ "ial og",
+ "i alog",
+ "▁s td",
+ "▁st d",
+ "▁ std",
+ "a e",
+ "▁f oot",
+ "▁fo ot",
+ "▁foo t",
+ "▁ foot",
+ "▁un ter",
+ "▁ unter",
+ "gr ess",
+ "gres s",
+ "gre ss",
+ "g ress",
+ "No t",
+ "N ot",
+ "ra d",
+ "r ad",
+ "f ér",
+ "▁u til",
+ "▁ut il",
+ "▁ util",
+ "or em",
+ "ore m",
+ "o rem",
+ "▁s ou",
+ "▁so u",
+ "op t",
+ "o pt",
+ "▁o g",
+ "▁ og",
+ "▁u ma",
+ "▁um a",
+ "▁ uma",
+ "it ar",
+ "ita r",
+ "i tar",
+ "▁O k",
+ "▁ Ok",
+ "ü ck",
+ "sq rt",
+ "▁a nt",
+ "▁an t",
+ "▁ ant",
+ "▁wer den",
+ "▁werd en",
+ "å r",
+ "}) ;",
+ "} );",
+ "▁P aris",
+ "▁Par is",
+ "▁Pa ris",
+ "▁ex ception",
+ "▁except ion",
+ "▁ exception",
+ "▁de term",
+ "▁det erm",
+ "▁V ol",
+ "▁Vo l",
+ "▁ Vol",
+ "▁S am",
+ "▁Sa m",
+ "▁ Sam",
+ "▁e ss",
+ "▁es s",
+ "▁ ess",
+ "li es",
+ "lie s",
+ "l ies",
+ "ion i",
+ "io ni",
+ "i oni",
+ "od ing",
+ "odi ng",
+ "o ding",
+ "id get",
+ "idge t",
+ "▁p ri",
+ "▁pr i",
+ "▁wh ether",
+ "▁whe ther",
+ "▁п од",
+ "▁по д",
+ "▁num bers",
+ "▁number s",
+ "▁ numbers",
+ "▁ ~",
+ "ev ent",
+ "even t",
+ "e vent",
+ "▁sh ows",
+ "▁show s",
+ "▁sho ws",
+ "at ures",
+ "atur es",
+ "ature s",
+ "atu res",
+ "▁h ouse",
+ "▁ho use",
+ "▁hous e",
+ "▁ house",
+ "▁f ace",
+ "▁fa ce",
+ "▁fac e",
+ "▁ face",
+ "▁s ię",
+ "▁si ę",
+ "viron ment",
+ "va n",
+ "v an",
+ "▁in cluding",
+ "▁includ ing",
+ "▁inclu ding",
+ "▁ including",
+ "▁< -",
+ "▁ <-",
+ "ti mes",
+ "time s",
+ "tim es",
+ "t imes",
+ "no w",
+ "n ow",
+ "▁p ur",
+ "▁pu r",
+ "▁ pur",
+ "if ier",
+ "ifi er",
+ "ifie r",
+ "▁e mp",
+ "▁em p",
+ "▁ emp",
+ "▁c la",
+ "▁cl a",
+ "▁ cla",
+ "mo n",
+ "m on",
+ "▁D as",
+ "▁Da s",
+ "ad y",
+ "a dy",
+ "▁в ід",
+ "▁ві д",
+ "▁ від",
+ "▁ ц",
+ "ab or",
+ "a bor",
+ "OS T",
+ "O ST",
+ "▁b and",
+ "▁ban d",
+ "▁ba nd",
+ "▁ band",
+ "▁ ú",
+ "▁ex actly",
+ "▁exact ly",
+ "ie rt",
+ "ier t",
+ "i ert",
+ "av ig",
+ "avi g",
+ "▁re du",
+ "▁r edu",
+ "▁red u",
+ "▁ redu",
+ "▁S E",
+ "▁ SE",
+ "lish ed",
+ "lis hed",
+ "l ished",
+ "B u",
+ "Mess age",
+ "M essage",
+ "ce ll",
+ "cel l",
+ "c ell",
+ "ful ly",
+ "full y",
+ "▁s v",
+ "▁ sv",
+ "▁m akes",
+ "▁ma kes",
+ "▁make s",
+ "▁mak es",
+ "po l",
+ "p ol",
+ "▁re quired",
+ "▁require d",
+ "▁requ ired",
+ "▁ required",
+ "fer rer",
+ "▁p ers",
+ "▁per s",
+ "▁pe rs",
+ "▁ pers",
+ "▁m i",
+ "▁ mi",
+ "F I",
+ "▁Pa ul",
+ "▁ Paul",
+ "▁U I",
+ "▁ UI",
+ "▁B el",
+ "▁Be l",
+ "▁ Bel",
+ "in c",
+ "i nc",
+ "▁cont ains",
+ "▁contain s",
+ "▁ contains",
+ "O ut",
+ "as ure",
+ "p u",
+ "ot o",
+ "o to",
+ "▁g ame",
+ "▁ga me",
+ "▁gam e",
+ "▁ game",
+ "z n",
+ "▁W hy",
+ "▁Wh y",
+ "▁ Why",
+ "or ith",
+ "ori th",
+ "bi g",
+ "b ig",
+ "ки й",
+ "sig ma",
+ "s igma",
+ "▁qu ite",
+ "▁qui te",
+ "▁quit e",
+ "▁j ed",
+ "▁je d",
+ "▁ jed",
+ "re c",
+ "r ec",
+ "▁S QL",
+ "▁ SQL",
+ "б е",
+ "▁M art",
+ "▁Mar t",
+ "▁Ma rt",
+ "▁ Mart",
+ "y a",
+ "▁sch ool",
+ "▁ school",
+ "▁sim ply",
+ "▁simp ly",
+ "▁simpl y",
+ "▁v or",
+ "▁vo r",
+ "▁ vor",
+ "▁d ouble",
+ "▁dou ble",
+ "▁doub le",
+ "▁ double",
+ "ра в",
+ "▁S tr",
+ "▁St r",
+ "▁ Str",
+ "ie m",
+ "i em",
+ "▁al bum",
+ "▁alb um",
+ "▁ album",
+ "▁re sol",
+ "▁res ol",
+ "▁ resol",
+ "▁d ei",
+ "▁de i",
+ "▁W ik",
+ "▁Wi k",
+ "▁ Wik",
+ "▁a w",
+ "▁ aw",
+ "um b",
+ "u mb",
+ "ol s",
+ "o ls",
+ "▁* /",
+ "▁ */",
+ "▁z e",
+ "▁ ze",
+ "▁a nim",
+ "▁an im",
+ "▁ani m",
+ "▁ anim",
+ "/ >",
+ "ri s",
+ "r is",
+ "re sh",
+ "res h",
+ "r esh",
+ "N o",
+ "ique s",
+ "iqu es",
+ "i ques",
+ "cur rent",
+ "curr ent",
+ "c urrent",
+ "▁per iod",
+ "▁peri od",
+ "▁ period",
+ "▁A pril",
+ "▁Ap ril",
+ "▁st ore",
+ "▁stor e",
+ "▁sto re",
+ "▁ store",
+ "', '",
+ "' ,'",
+ "▁S et",
+ "▁Se t",
+ "▁ Set",
+ "= {",
+ "ach ed",
+ "ac hed",
+ "ache d",
+ "a ched",
+ "▁M al",
+ "▁Ma l",
+ "▁ Mal",
+ "▁P al",
+ "▁Pa l",
+ "▁ Pal",
+ "an tes",
+ "ant es",
+ "ante s",
+ "ate rial",
+ "ater ial",
+ "▁work ed",
+ "▁wor ked",
+ "le q",
+ "l eq",
+ "ore ferrer",
+ "▁h appen",
+ "▁ha ppen",
+ "▁happ en",
+ "▁b ox",
+ "▁bo x",
+ "▁ box",
+ "ne y",
+ "n ey",
+ "▁c lose",
+ "▁cl ose",
+ "▁clos e",
+ "▁clo se",
+ "▁ close",
+ "▁g ran",
+ "▁gr an",
+ "▁gra n",
+ "▁l ie",
+ "▁li e",
+ "▁ lie",
+ "▁i r",
+ "▁ ir",
+ "▁ex pected",
+ "▁exp ected",
+ "▁expect ed",
+ "▁ expected",
+ "▁д ля",
+ "cl ick",
+ "cli ck",
+ "clic k",
+ "c lick",
+ "ș i",
+ "▁p arte",
+ "▁par te",
+ "▁part e",
+ "og n",
+ "o gn",
+ "▁F orm",
+ "▁For m",
+ "▁Fo rm",
+ "▁ Form",
+ "▁m emb",
+ "▁me mb",
+ "▁mem b",
+ "▁p lan",
+ "▁pl an",
+ "▁pla n",
+ "▁ plan",
+ "▁te am",
+ "▁tea m",
+ "▁ team",
+ "] [",
+ "▁c ommun",
+ "▁com mun",
+ "▁comm un",
+ "or ry",
+ "orr y",
+ "en cy",
+ "enc y",
+ "g l",
+ "in ary",
+ "ina ry",
+ "inar y",
+ "cd ot",
+ "c dot",
+ "^ \\",
+ "▁F irst",
+ "▁Fir st",
+ "▁ First",
+ "an der",
+ "and er",
+ "ande r",
+ "a nder",
+ "▁D ec",
+ "▁De c",
+ "▁ Dec",
+ "re quest",
+ "req uest",
+ "ст ва",
+ "ств а",
+ "с тва",
+ "▁str ucture",
+ "▁struct ure",
+ "▁ structure",
+ "▁| |",
+ "▁ ||",
+ "▁C omp",
+ "▁Com p",
+ "▁Co mp",
+ "▁ Comp",
+ "act ory",
+ "actor y",
+ "▁M il",
+ "▁Mi l",
+ "▁ Mil",
+ "▁S ome",
+ "▁So me",
+ "▁Som e",
+ "▁ Some",
+ "St ream",
+ "▁as sum",
+ "▁ass um",
+ "ue n",
+ "u en",
+ "▁w ords",
+ "▁word s",
+ "▁wor ds",
+ "▁ words",
+ "▁Se ptember",
+ "▁Sept ember",
+ "▁К о",
+ "▁ Ко",
+ "▁d ays",
+ "▁da ys",
+ "▁day s",
+ "▁ days",
+ "or ies",
+ "ori es",
+ "orie s",
+ "o ries",
+ "ста в",
+ "s m",
+ "vi n",
+ "v in",
+ "part ial",
+ "▁par ent",
+ "▁pa rent",
+ "▁pare nt",
+ "▁ parent",
+ "o j",
+ "ни и",
+ "! \"",
+ "ug in",
+ "u gin",
+ "▁W indows",
+ "▁Wind ows",
+ "▁Window s",
+ "▁ Windows",
+ "E d",
+ ": }",
+ "▁ q",
+ "▁b en",
+ "▁be n",
+ "▁ ben",
+ "ia na",
+ "ian a",
+ "i ana",
+ "▁l abel",
+ "▁la bel",
+ "▁lab el",
+ "▁ label",
+ "st ate",
+ "sta te",
+ "stat e",
+ "ut ed",
+ "ute d",
+ "u ted",
+ "▁( )",
+ "▁ ()",
+ "▁с во",
+ "▁e dit",
+ "▁ed it",
+ "▁ edit",
+ "ur ing",
+ "uri ng",
+ "u ring",
+ "▁N S",
+ "▁ NS",
+ "▁J ahr",
+ "▁Jah r",
+ "▁Ja hr",
+ "▁prov ide",
+ "H e",
+ "▁Y es",
+ "▁Ye s",
+ "▁ Yes",
+ "an el",
+ "ane l",
+ "a nel",
+ "en ame",
+ "ena me",
+ "e name",
+ "▁D on",
+ "▁Do n",
+ "▁ Don",
+ "is k",
+ "i sk",
+ "gr a",
+ "g ra",
+ "el ij",
+ "eli j",
+ "e lij",
+ "▁r oot",
+ "▁ro ot",
+ "▁ root",
+ "* /",
+ "▁F re",
+ "▁Fr e",
+ "▁ Fre",
+ "▁M or",
+ "▁Mo r",
+ "▁ Mor",
+ "us ed",
+ "use d",
+ "u sed",
+ "ran ge",
+ "r ange",
+ "▁t amb",
+ "▁ta mb",
+ "▁tam b",
+ "▁mod ule",
+ "▁ module",
+ "▁d irectory",
+ "▁direct ory",
+ "▁director y",
+ "▁ directory",
+ "ound s",
+ "oun ds",
+ "Act ivity",
+ "Activ ity",
+ "▁m u",
+ "▁ mu",
+ "in fo",
+ "inf o",
+ "▁f ree",
+ "▁fr ee",
+ "▁fre e",
+ "▁ free",
+ "or ge",
+ "org e",
+ "ta b",
+ "t ab",
+ ") =",
+ "la ng",
+ "lan g",
+ "l ang",
+ "▁о с",
+ "▁ ос",
+ "▁F ROM",
+ "▁FR OM",
+ "▁ FROM",
+ "▁en ter",
+ "▁ent er",
+ "▁ enter",
+ "▁bec ame",
+ "id ae",
+ "ida e",
+ "х и",
+ "▁St ates",
+ "▁State s",
+ "▁Stat es",
+ "▁Sta tes",
+ "ver se",
+ "vers e",
+ "▁ex pl",
+ "▁exp l",
+ "▁ expl",
+ "yn t",
+ "y nt",
+ "U N",
+ "e e",
+ "en dent",
+ "end ent",
+ "enden t",
+ "ende nt",
+ "▁m aking",
+ "▁ma king",
+ "▁mak ing",
+ "▁ making",
+ "▁\" $",
+ "un i",
+ "u ni",
+ "qu ence",
+ "▁l ui",
+ "▁lu i",
+ "H T",
+ "▁us es",
+ "▁use s",
+ "▁ uses",
+ "zi e",
+ "z ie",
+ "ni a",
+ "n ia",
+ "Cont ent",
+ "▁C ount",
+ "▁Co unt",
+ "▁Coun t",
+ "▁Cou nt",
+ "▁ Count",
+ "▁stand ard",
+ "▁ standard",
+ "EN T",
+ "E NT",
+ "▁ко н",
+ "▁к он",
+ "▁ кон",
+ "fo rt",
+ "for t",
+ "f ort",
+ "ad as",
+ "ada s",
+ "a das",
+ "з у",
+ "S ystem",
+ "▁S w",
+ "▁ Sw",
+ "▁e ver",
+ "▁ev er",
+ "▁ ever",
+ "L O",
+ "▁cor respond",
+ "▁P o",
+ "▁ Po",
+ "ar gin",
+ "arg in",
+ "к т",
+ "і й",
+ "▁re main",
+ "▁rem ain",
+ "ci o",
+ "c io",
+ "▁act ual",
+ "▁actu al",
+ "▁ actual",
+ "ст у",
+ "с ту",
+ "▁s ind",
+ "▁si nd",
+ "▁sin d",
+ "▁P e",
+ "▁ Pe",
+ "▁ch anged",
+ "▁change d",
+ "▁chang ed",
+ "▁ changed",
+ "▁N ote",
+ "▁No te",
+ "▁Not e",
+ "▁ Note",
+ "sk ie",
+ "ski e",
+ "s kie",
+ "▁famil y",
+ "▁fam ily",
+ "▁ family",
+ "it à",
+ "co s",
+ "c os",
+ "tx t",
+ "t xt",
+ "ke r",
+ "k er",
+ "ce ed",
+ "c eed",
+ "▁a rr",
+ "▁ar r",
+ "▁ arr",
+ "▁c am",
+ "▁ca m",
+ "▁ cam",
+ "iz er",
+ "ize r",
+ "i zer",
+ "▁D an",
+ "▁Da n",
+ "▁ Dan",
+ "he l",
+ "h el",
+ "ic ult",
+ "icul t",
+ "H P",
+ "il er",
+ "ile r",
+ "i ler",
+ "▁S al",
+ "▁Sa l",
+ "▁ Sal",
+ "▁con nection",
+ "▁conne ction",
+ "▁connect ion",
+ "▁conn ection",
+ "▁ connection",
+ "us ion",
+ "k n",
+ "R I",
+ "▁v om",
+ "▁vo m",
+ "List ener",
+ "▁ ö",
+ "▁d im",
+ "▁di m",
+ "▁ dim",
+ "▁p ress",
+ "▁pr ess",
+ "▁pre ss",
+ "▁pres s",
+ "▁ press",
+ "▁e sc",
+ "▁es c",
+ "▁ esc",
+ "▁T ry",
+ "▁Tr y",
+ "▁ Try",
+ "at alog",
+ "ata log",
+ "atal og",
+ "▁th anks",
+ "▁than ks",
+ "▁thank s",
+ "D O",
+ "▁w ritten",
+ "▁writ ten",
+ "▁wr itten",
+ "▁ written",
+ "di r",
+ "d ir",
+ "re w",
+ "r ew",
+ "▁f ire",
+ "▁fi re",
+ "▁fir e",
+ "▁ fire",
+ "▁N ach",
+ "▁Na ch",
+ "▁ á",
+ "en c",
+ "e nc",
+ "▁or igin",
+ "▁orig in",
+ "▁ origin",
+ "▁Nov ember",
+ "▁} ;",
+ "▁ };",
+ "Co unt",
+ "C ount",
+ "▁З а",
+ "▁ За",
+ "▁g raph",
+ "▁gr aph",
+ "▁gra ph",
+ "▁ graph",
+ "▁m is",
+ "▁mi s",
+ "▁ mis",
+ "▁Ex ternal",
+ "▁Ext ernal",
+ "▁Extern al",
+ "▁Externa l",
+ "▁ External",
+ "▁o ptions",
+ "▁option s",
+ "▁opt ions",
+ "▁ options",
+ "▁U RL",
+ "▁ URL",
+ "▁p hp",
+ "▁ph p",
+ "▁ php",
+ "▁in tegr",
+ "▁int egr",
+ "▁inte gr",
+ "▁ integr",
+ "Con fig",
+ "Conf ig",
+ "▁T ext",
+ "▁Te xt",
+ "▁Tex t",
+ "▁ Text",
+ "in ner",
+ "inn er",
+ "▁c rit",
+ "▁cr it",
+ "▁cri t",
+ "▁ crit",
+ ", ”",
+ "▁t og",
+ "▁to g",
+ "$ $",
+ "no f",
+ "n of",
+ "▁s es",
+ "▁se s",
+ "üh r",
+ "ü hr",
+ "▁S ince",
+ "▁Sin ce",
+ "▁ Since",
+ "De s",
+ "D es",
+ "ub e",
+ "u be",
+ "▁s ection",
+ "▁se ction",
+ "▁sec tion",
+ "▁sect ion",
+ "▁ section",
+ "▁g i",
+ "▁ gi",
+ "fo rd",
+ "for d",
+ "f ord",
+ "▁A ss",
+ "▁As s",
+ "▁ Ass",
+ "ain er",
+ "ai ner",
+ "aine r",
+ "a iner",
+ "tt p",
+ "t tp",
+ "▁be hav",
+ "▁beh av",
+ "port s",
+ "por ts",
+ "dr aw",
+ "dra w",
+ "d raw",
+ "Th is",
+ "T his",
+ "ran ch",
+ "r anch",
+ "in ding",
+ "ind ing",
+ "indi ng",
+ "▁e stab",
+ "▁est ab",
+ "▁es tab",
+ "▁esta b",
+ "▁ob tain",
+ "▁obt ain",
+ "ri ch",
+ "ric h",
+ "r ich",
+ "li cit",
+ "lic it",
+ "е в",
+ "▁qu al",
+ "▁q ual",
+ "▁ qual",
+ "▁z a",
+ "▁ za",
+ "▁h ar",
+ "▁ha r",
+ "▁ har",
+ "▁f ac",
+ "▁fa c",
+ "▁ fac",
+ "aa r",
+ "a ar",
+ "je t",
+ "j et",
+ "ic les",
+ "icle s",
+ "i cles",
+ "▁A us",
+ "▁Au s",
+ "▁ Aus",
+ "▁h or",
+ "▁ho r",
+ "▁ hor",
+ "▁re mov",
+ "▁rem ov",
+ "▁w ie",
+ "▁ wie",
+ "Cl ient",
+ "C lient",
+ "▁n atur",
+ "▁nat ur",
+ "hi p",
+ "h ip",
+ "Su b",
+ "S ub",
+ "▁r andom",
+ "▁ran dom",
+ "▁rand om",
+ "▁ random",
+ "D F",
+ "▁a rea",
+ "▁are a",
+ "▁ar ea",
+ "▁ area",
+ "ta g",
+ "t ag",
+ "P r",
+ "▁I tal",
+ "▁It al",
+ "▁ Ital",
+ "▁r oku",
+ "▁ro ku",
+ "▁rok u",
+ "no follow",
+ "nof ollow",
+ "* }",
+ "▁o thers",
+ "▁other s",
+ "▁l imit",
+ "▁li mit",
+ "▁lim it",
+ "▁ limit",
+ "▁s il",
+ "▁si l",
+ "▁ sil",
+ "▁s av",
+ "▁sa v",
+ "▁o ften",
+ "▁of ten",
+ "▁oft en",
+ "▁re nder",
+ "▁r ender",
+ "▁ren der",
+ "▁rend er",
+ "▁rende r",
+ "▁ render",
+ "D B",
+ "▁M c",
+ "▁ Mc",
+ "▁z ijn",
+ "▁zij n",
+ "же н",
+ "ж ен",
+ "▁t ag",
+ "▁ta g",
+ "▁ tag",
+ "min g",
+ "mi ng",
+ "m ing",
+ "li chen",
+ "lic hen",
+ "lich en",
+ "liche n",
+ "l ichen",
+ "pa ck",
+ "p ack",
+ "▁A g",
+ "▁ Ag",
+ "▁s ense",
+ "▁sens e",
+ "▁sen se",
+ "p g",
+ "Met hod",
+ "M ethod",
+ "ag ed",
+ "age d",
+ "a ged",
+ "á g",
+ "ł a",
+ "▁inter est",
+ "▁inte rest",
+ "▁as soci",
+ "▁ass oci",
+ "▁ associ",
+ "vol ution",
+ "▁em pty",
+ "▁emp ty",
+ "▁ empty",
+ "ic he",
+ "ich e",
+ "i che",
+ "▁g ro",
+ "▁gr o",
+ "▁ gro",
+ "▁t ypes",
+ "▁type s",
+ "▁typ es",
+ "▁ty pes",
+ "▁ types",
+ "▁S ie",
+ "▁Si e",
+ "In ter",
+ "Int er",
+ "▁n oreferrer",
+ "▁ noreferrer",
+ "▁g ives",
+ "▁giv es",
+ "▁give s",
+ "▁gi ves",
+ "ha l",
+ "h al",
+ "▁s ave",
+ "▁sa ve",
+ "▁sav e",
+ "▁ save",
+ "▁f ont",
+ "▁fo nt",
+ "▁fon t",
+ "▁ font",
+ "ru ction",
+ "ruct ion",
+ "S cript",
+ "▁a lla",
+ "▁al la",
+ "▁all a",
+ "▁ alla",
+ "▁s ays",
+ "▁sa ys",
+ "▁say s",
+ "▁f u",
+ "▁ fu",
+ "ap e",
+ "a pe",
+ "▁l anguage",
+ "▁ language",
+ "ig er",
+ "ige r",
+ "i ger",
+ "▁K ing",
+ "▁Ki ng",
+ "▁Kin g",
+ "bo r",
+ "b or",
+ "u v",
+ "▁s hall",
+ "▁sh all",
+ "▁E urope",
+ "▁Europ e",
+ "▁Euro pe",
+ "▁Eur ope",
+ "▁ Europe",
+ "▁ein em",
+ "▁eine m",
+ "▁w ater",
+ "▁wa ter",
+ "▁wat er",
+ "▁ water",
+ "▁g overn",
+ "▁go vern",
+ "▁gover n",
+ "an z",
+ "at ors",
+ "ator s",
+ "ato rs",
+ "▁mon th",
+ "▁mo nth",
+ "▁mont h",
+ "▁ month",
+ "y e",
+ "▁import ant",
+ "▁ important",
+ "at z",
+ "a tz",
+ "fir st",
+ "f irst",
+ "▁Tr ans",
+ "▁Tra ns",
+ "▁ Trans",
+ "▁M ad",
+ "▁Ma d",
+ "▁ Mad",
+ "▁b ra",
+ "▁br a",
+ "▁ bra",
+ "ik a",
+ "i ka",
+ "▁S aint",
+ "▁Sa int",
+ "▁Sain t",
+ "▁ Saint",
+ "or ia",
+ "ori a",
+ "o ria",
+ "kr e",
+ "k re",
+ "em ents",
+ "ement s",
+ "emen ts",
+ "e ments",
+ "▁B en",
+ "▁Be n",
+ "▁ Ben",
+ "la v",
+ "l av",
+ "▁ad min",
+ "▁adm in",
+ "▁ admin",
+ "▁H en",
+ "▁He n",
+ "▁ Hen",
+ "ri l",
+ "r il",
+ "▁S m",
+ "▁ Sm",
+ "ca t",
+ "c at",
+ "▁Re fer",
+ "▁Ref er",
+ "▁ Ш",
+ "▁p ract",
+ "▁pr act",
+ "▁pra ct",
+ "▁prac t",
+ "▁P at",
+ "▁Pa t",
+ "▁ Pat",
+ "▁G re",
+ "▁Gr e",
+ "▁ Gre",
+ "▁you ng",
+ "▁yo ung",
+ "▁In ter",
+ "▁Int er",
+ "▁ Inter",
+ "om a",
+ "o ma",
+ "te ger",
+ "ib ility",
+ "ibil ity",
+ "▁param eters",
+ "▁parameter s",
+ "▁paramet ers",
+ "▁ parameters",
+ "▁every thing",
+ "da t",
+ "d at",
+ "ur op",
+ "uro p",
+ "u rop",
+ "ole an",
+ "o lean",
+ "▁return ed",
+ "▁C lass",
+ "▁Cl ass",
+ "▁Cla ss",
+ "▁ Class",
+ "ac y",
+ "a cy",
+ "## ##",
+ "▁p ř",
+ "▁f older",
+ "▁fol der",
+ "▁fo lder",
+ "▁ folder",
+ "▁k on",
+ "▁ko n",
+ "▁ kon",
+ "▁gu ess",
+ "g t",
+ "je n",
+ "j en",
+ "an nel",
+ "ann el",
+ "anne l",
+ "ic on",
+ "ico n",
+ "i con",
+ "▁c omb",
+ "▁com b",
+ "▁co mb",
+ "▁ comb",
+ "ri ct",
+ "ric t",
+ "r ict",
+ "▁h ij",
+ "▁hi j",
+ "▁aut hor",
+ "▁auth or",
+ "▁ author",
+ "se e",
+ "s ee",
+ "he re",
+ "her e",
+ "h ere",
+ "st ra",
+ "str a",
+ "s tra",
+ "▁ent ire",
+ "▁direct ly",
+ "ra ft",
+ "raf t",
+ "r aft",
+ "he et",
+ "es ter",
+ "est er",
+ "este r",
+ "e ster",
+ "▁м и",
+ "▁ ми",
+ "▁m ass",
+ "▁ma ss",
+ "▁mas s",
+ "▁ mass",
+ "un tu",
+ "unt u",
+ "▁u sers",
+ "▁us ers",
+ "▁use rs",
+ "▁user s",
+ "▁ users",
+ "ch i",
+ "c hi",
+ "P E",
+ "▁com ponent",
+ "▁compon ent",
+ "▁ component",
+ "Cl ick",
+ "C lick",
+ "At t",
+ "A tt",
+ "▁s obre",
+ "▁so bre",
+ "▁sob re",
+ "an ds",
+ "and s",
+ "▁H ol",
+ "▁Ho l",
+ "▁ Hol",
+ "▁S ant",
+ "▁San t",
+ "▁Sa nt",
+ "or i",
+ "o ri",
+ "▁s ua",
+ "▁su a",
+ "st d",
+ "s td",
+ "ent ic",
+ "enti c",
+ "C C",
+ "▁fil ter",
+ "▁ filter",
+ "S QL",
+ "▁G od",
+ "▁Go d",
+ "A t",
+ "▁м у",
+ "▁ му",
+ "▁per formance",
+ "▁perform ance",
+ "del ta",
+ "d elta",
+ "an de",
+ "and e",
+ "a nde",
+ "am er",
+ "ame r",
+ "a mer",
+ "д ы",
+ "▁c ult",
+ "▁cu lt",
+ "▁cul t",
+ "▁N or",
+ "▁No r",
+ "bu t",
+ "b ut",
+ "▁l ik",
+ "▁li k",
+ "▁ lik",
+ "**** ****",
+ "ст вен",
+ "ств ен",
+ "стве н",
+ "▁com me",
+ "▁comm e",
+ "▁d r",
+ "▁ dr",
+ "im er",
+ "ime r",
+ "i mer",
+ "or din",
+ "ord in",
+ "▁cond ition",
+ "▁ condition",
+ "es te",
+ "est e",
+ "e ste",
+ "( [",
+ "F F",
+ "ть ся",
+ "im o",
+ "i mo",
+ "ra b",
+ "r ab",
+ "і ль",
+ "▁h alf",
+ "▁hal f",
+ "▁ half",
+ "ea ch",
+ "e ach",
+ "Di s",
+ "D is",
+ "▁r ows",
+ "▁ro ws",
+ "▁row s",
+ "▁ rows",
+ "▁h on",
+ "▁ho n",
+ "▁ hon",
+ "▁t ogether",
+ "▁tog ether",
+ "▁ și",
+ "me di",
+ "med i",
+ "m edi",
+ "ag n",
+ "a gn",
+ "al led",
+ "all ed",
+ "alle d",
+ "▁v ill",
+ "▁vi ll",
+ "▁vil l",
+ "IN G",
+ "I NG",
+ "id den",
+ "idd en",
+ "▁d raw",
+ "▁dr aw",
+ "▁dra w",
+ "▁ draw",
+ "yn tax",
+ "ynt ax",
+ "▁att empt",
+ "UR L",
+ "U RL",
+ "pos e",
+ "po se",
+ "p ose",
+ "▁in dic",
+ "▁ind ic",
+ "ни ка",
+ "ник а",
+ "▁Eng lish",
+ "▁ English",
+ "▁d éc",
+ "▁dé c",
+ "▁ne eds",
+ "▁need s",
+ "▁n ormal",
+ "▁nor mal",
+ "▁norm al",
+ "▁ normal",
+ "ur t",
+ "u rt",
+ "▁н о",
+ "▁ но",
+ "}} \\",
+ "} }\\",
+ "la st",
+ "las t",
+ "l ast",
+ "▁F in",
+ "▁ Fin",
+ "▁F ebru",
+ "▁Fe bru",
+ "▁Feb ru",
+ "il a",
+ "i la",
+ "▁c ountry",
+ "▁count ry",
+ "▁coun try",
+ "▁ country",
+ "▁field s",
+ "▁fiel ds",
+ "▁ fields",
+ "▁m ax",
+ "▁ma x",
+ "▁ max",
+ "lé s",
+ "l és",
+ "ow ie",
+ "owi e",
+ "o wie",
+ "▁de ux",
+ "▁bu ilt",
+ "▁ built",
+ "▁M ain",
+ "▁Ma in",
+ "▁Mai n",
+ "▁ Main",
+ "▁c amp",
+ "▁cam p",
+ "▁ca mp",
+ "▁ camp",
+ "iv o",
+ "i vo",
+ "iv a",
+ "i va",
+ "ic y",
+ "i cy",
+ "zi one",
+ "z ione",
+ "No de",
+ "N ode",
+ "▁: )",
+ "▁ :)",
+ "▁am ong",
+ "▁O b",
+ "▁ Ob",
+ "▁c ases",
+ "▁case s",
+ "▁cas es",
+ "▁ cases",
+ "ha ps",
+ "h aps",
+ "se rs",
+ "ser s",
+ "s ers",
+ "ar ter",
+ "art er",
+ "arte r",
+ "śc i",
+ "ś ci",
+ "▁it er",
+ "▁i ter",
+ "▁ iter",
+ "▁n amed",
+ "▁name d",
+ "▁na med",
+ "▁nam ed",
+ "▁ named",
+ "ex ec",
+ "exe c",
+ "▁se ason",
+ "▁sea son",
+ "▁ season",
+ "to t",
+ "t ot",
+ "= >",
+ "gr aph",
+ "gra ph",
+ "g raph",
+ "▁n il",
+ "▁ni l",
+ "▁ nil",
+ "ac ional",
+ "acion al",
+ "aci onal",
+ "▁N ULL",
+ "▁ NULL",
+ "▁spe cial",
+ "▁spec ial",
+ "▁ special",
+ "ст е",
+ "с те",
+ "cs s",
+ "c ss",
+ "▁\\ (",
+ "v s",
+ "ae l",
+ "a el",
+ "▁c ity",
+ "▁ci ty",
+ "▁cit y",
+ "▁ city",
+ "ov a",
+ "o va",
+ "▁art icle",
+ "▁ article",
+ "▁S outh",
+ "▁So uth",
+ "▁Sou th",
+ "Act ion",
+ "Ac tion",
+ "A ction",
+ "ç a",
+ "sp ring",
+ "spr ing",
+ "s pring",
+ "it ude",
+ "itu de",
+ "itud e",
+ "▁com plex",
+ "▁comp lex",
+ "▁comple x",
+ "▁compl ex",
+ "▁ complex",
+ "▁ч то",
+ "bu ild",
+ "g amma",
+ "▁E nt",
+ "▁En t",
+ "▁ Ent",
+ "ie rs",
+ "ier s",
+ "i ers",
+ "' .",
+ "ca r",
+ "c ar",
+ "ap ache",
+ "apa che",
+ "in gen",
+ "ing en",
+ "inge n",
+ "In put",
+ ": ",
+ "▁d ynam",
+ "▁dy nam",
+ "al ls",
+ "all s",
+ "sh ow",
+ "s how",
+ "| \\",
+ "▁w ird",
+ "▁wir d",
+ "B ar",
+ "al th",
+ "alt h",
+ "mod el",
+ "mo del",
+ "mode l",
+ "m odel",
+ "Tr ans",
+ "Tra ns",
+ "Ro w",
+ "R ow",
+ "ab e",
+ "a be",
+ "▁l ib",
+ "▁li b",
+ "▁ lib",
+ "nu ll",
+ "n ull",
+ "ra gment",
+ "rag ment",
+ "▁St ate",
+ "▁Stat e",
+ "▁Sta te",
+ "▁ State",
+ "▁l aw",
+ "▁la w",
+ "▁ law",
+ "Fr ame",
+ "F rame",
+ "▁L o",
+ "▁ Lo",
+ "ge b",
+ "g eb",
+ "}$ .",
+ "} $.",
+ "▁ne eded",
+ "▁need ed",
+ "▁con tr",
+ "▁cont r",
+ "▁ contr",
+ "ar ies",
+ "ari es",
+ "arie s",
+ "a ries",
+ "▁s creen",
+ "▁sc reen",
+ "▁scr een",
+ "▁ screen",
+ "y r",
+ "m m",
+ "▁sh own",
+ "▁show n",
+ "▁sho wn",
+ "▁b ad",
+ "▁ba d",
+ "▁ bad",
+ "▁c ast",
+ "▁cas t",
+ "▁ca st",
+ "▁ cast",
+ "▁T est",
+ "▁Te st",
+ "▁ Test",
+ "▁A uf",
+ "▁Au f",
+ "▁qu ant",
+ "▁quan t",
+ "▁ quant",
+ "ig a",
+ "i ga",
+ "▁re n",
+ "▁r en",
+ "▁ ren",
+ "▁M ac",
+ "▁Ma c",
+ "▁ Mac",
+ "▁trans form",
+ "▁ transform",
+ "▁d ifference",
+ "▁dif ference",
+ "▁differ ence",
+ "▁t it",
+ "▁ti t",
+ "▁ tit",
+ "T E",
+ "▁st ep",
+ "▁ste p",
+ "▁ step",
+ "▁c apt",
+ "▁cap t",
+ "▁ca pt",
+ "▁ capt",
+ "▁col lection",
+ "▁coll ection",
+ "▁collect ion",
+ "▁colle ction",
+ "▁ collection",
+ "iction ary",
+ "▁T om",
+ "▁To m",
+ "▁ Tom",
+ "ri er",
+ "rie r",
+ "r ier",
+ "▁m ove",
+ "▁mov e",
+ "▁mo ve",
+ "▁ move",
+ "co pe",
+ "cop e",
+ "c ope",
+ "or ds",
+ "ord s",
+ "▁fur ther",
+ "▁column s",
+ "▁ columns",
+ "▁L in",
+ "▁Li n",
+ "▁ Lin",
+ "▁f ixed",
+ "▁fix ed",
+ "▁ fixed",
+ "▁child ren",
+ "▁ children",
+ "M S",
+ "m o",
+ "un a",
+ "u na",
+ "▁ind ivid",
+ "tt y",
+ "t ty",
+ "as te",
+ "ast e",
+ "a ste",
+ "sr c",
+ "s rc",
+ "mat ch",
+ "m atch",
+ "w i",
+ "▁ х",
+ "▁д и",
+ "▁ ди",
+ "▁o rd",
+ "▁or d",
+ "▁ ord",
+ "iv ing",
+ "ivi ng",
+ "i ving",
+ "▁B ro",
+ "▁Br o",
+ "▁ Bro",
+ "▁al most",
+ "▁P res",
+ "▁Pr es",
+ "▁Pre s",
+ "▁ Pres",
+ "re ci",
+ "rec i",
+ "ar ing",
+ "ari ng",
+ "arin g",
+ "a ring",
+ "▁/ //",
+ "▁// /",
+ "▁ ///",
+ "ет ся",
+ "е тся",
+ "▁s ig",
+ "▁si g",
+ "▁ sig",
+ "lig ht",
+ "l ight",
+ "▁R ed",
+ "▁Re d",
+ "▁ Red",
+ "▁sugg est",
+ "▁sug gest",
+ "ol f",
+ "▁é té",
+ "▁ét é",
+ "▁ été",
+ "is ation",
+ "isa tion",
+ "isat ion",
+ "з на",
+ "Ne w",
+ "N ew",
+ "ст ан",
+ "ста н",
+ "с тан",
+ "L A",
+ "un icip",
+ "unic ip",
+ "uni cip",
+ "▁fig ure",
+ "▁figur e",
+ "▁ figure",
+ "m t",
+ "ia le",
+ "ial e",
+ "i ale",
+ "▁c atch",
+ "▁cat ch",
+ "▁ catch",
+ "de fault",
+ "def ault",
+ "▁t ele",
+ "▁te le",
+ "▁tel e",
+ "▁ tele",
+ "▁m atter",
+ "▁mat ter",
+ "ca st",
+ "cas t",
+ "c ast",
+ "▁R ich",
+ "▁Ric h",
+ "▁Ri ch",
+ "▁ Rich",
+ "▁hand le",
+ "▁ handle",
+ "val u",
+ "va lu",
+ "v alu",
+ "$ -",
+ "о б",
+ "▁j son",
+ "▁js on",
+ "▁ json",
+ "Cre ate",
+ "C reate",
+ "▁ex am",
+ "ал ь",
+ "а ль",
+ "ю т",
+ "or ed",
+ "ore d",
+ "o red",
+ "id os",
+ "ido s",
+ "ap pend",
+ "app end",
+ "appen d",
+ "appe nd",
+ "▁Ar ray",
+ "▁Arr ay",
+ "▁ Array",
+ "к с",
+ "} [",
+ "ri ve",
+ "riv e",
+ "r ive",
+ "▁c lub",
+ "▁cl ub",
+ "▁ club",
+ "ma nn",
+ "man n",
+ "m ann",
+ "▁e ste",
+ "▁est e",
+ "▁es te",
+ "▁ este",
+ "es ta",
+ "est a",
+ "e sta",
+ "▁G i",
+ "▁ Gi",
+ "▁J ap",
+ "▁Ja p",
+ "▁N ame",
+ "▁Na me",
+ "▁Nam e",
+ "▁ Name",
+ "Col umn",
+ "ou ps",
+ "oup s",
+ "o ups",
+ "is mo",
+ "ism o",
+ "▁C ity",
+ "▁Ci ty",
+ "▁Cit y",
+ "▁ City",
+ "▁class es",
+ "▁classe s",
+ "▁ classes",
+ "▁in fl",
+ "▁inf l",
+ "▁ infl",
+ "h l",
+ "ро м",
+ "р ом",
+ "▁ad ding",
+ "▁add ing",
+ "▁ adding",
+ "▁f ail",
+ "▁fa il",
+ "▁ fail",
+ "x x",
+ "õ es",
+ "S c",
+ "ut il",
+ "uti l",
+ "u til",
+ "▁l ocation",
+ "▁lo cation",
+ "▁loc ation",
+ "▁ location",
+ "le ge",
+ "leg e",
+ "l ege",
+ "ag o",
+ "a go",
+ "▁pro perties",
+ "▁proper ties",
+ "▁ properties",
+ "ab il",
+ "abi l",
+ "a bil",
+ "va s",
+ "v as",
+ "}$ ,",
+ "} $,",
+ "it ted",
+ "itt ed",
+ "itte d",
+ "ó d",
+ "▁D em",
+ "▁De m",
+ "▁as ked",
+ "▁ask ed",
+ "▁t ab",
+ "▁ta b",
+ "▁ tab",
+ "S ource",
+ "▁error s",
+ "▁err ors",
+ "▁ errors",
+ "ograph ie",
+ "▁ж и",
+ "▁ жи",
+ "▁m al",
+ "▁ma l",
+ "▁ mal",
+ "st ract",
+ "str act",
+ "stra ct",
+ "▁d ro",
+ "▁dr o",
+ "▁ dro",
+ "ra k",
+ "r ak",
+ "▁n ote",
+ "▁not e",
+ "▁no te",
+ "▁ note",
+ "▁set ting",
+ "▁sett ing",
+ "▁ setting",
+ "▁f em",
+ "▁fe m",
+ "▁s aw",
+ "▁sa w",
+ "ia r",
+ "i ar",
+ "HE R",
+ "H ER",
+ "е с",
+ "▁p red",
+ "▁pr ed",
+ "▁pre d",
+ "▁ pred",
+ "▁O ut",
+ "▁ Out",
+ "▁it ems",
+ "▁item s",
+ "▁ items",
+ "ла н",
+ "л ан",
+ "▁w erd",
+ "▁we rd",
+ "▁wer d",
+ "ers ion",
+ "li a",
+ "l ia",
+ "▁s in",
+ "▁si n",
+ "▁ sin",
+ "ich te",
+ "icht e",
+ "i chte",
+ "▁fe el",
+ "▁fee l",
+ "▁п ра",
+ "▁пр а",
+ "▁ пра",
+ "▁o der",
+ "▁od er",
+ "▁ oder",
+ "U E",
+ "oc ument",
+ "▁m ode",
+ "▁mod e",
+ "▁mo de",
+ "▁ mode",
+ "▁N a",
+ "▁ Na",
+ "де н",
+ "д ен",
+ "me s",
+ "m es",
+ "frame work",
+ "▁a uto",
+ "▁au to",
+ "▁aut o",
+ "▁ auto",
+ "ны м",
+ "н ым",
+ "ub y",
+ "u by",
+ "▁tem plate",
+ "▁temp late",
+ "▁ template",
+ "▁m ess",
+ "▁me ss",
+ "▁mes s",
+ "▁ mess",
+ "ie der",
+ "ied er",
+ "i eder",
+ "▁rel ated",
+ "▁rela ted",
+ "▁relate d",
+ "▁ related",
+ "ok en",
+ "oke n",
+ "o ken",
+ "▁follow s",
+ "se arch",
+ "s earch",
+ "am i",
+ "a mi",
+ "▁w ait",
+ "▁wa it",
+ "▁ wait",
+ "ig r",
+ "i gr",
+ "▁l ow",
+ "▁lo w",
+ "▁ low",
+ "ски х",
+ "ск их",
+ "с ких",
+ "ска я",
+ "с кая",
+ "▁M ark",
+ "▁Mar k",
+ "▁ Mark",
+ "▁i ll",
+ "▁il l",
+ "▁ ill",
+ "am ento",
+ "ament o",
+ "amen to",
+ "\\ <",
+ "▁d f",
+ "▁ df",
+ "os ition",
+ "osi tion",
+ "▁В и",
+ "is f",
+ "i sf",
+ "▁De utsch",
+ "ah l",
+ "a hl",
+ "wa r",
+ "w ar",
+ "it ect",
+ "ite ct",
+ "▁s al",
+ "▁sa l",
+ "▁ sal",
+ "el en",
+ "ele n",
+ "e len",
+ "By Id",
+ "▁g ru",
+ "▁gr u",
+ "▁ gru",
+ "s v",
+ "▁pass ed",
+ "▁pas sed",
+ "▁passe d",
+ "▁a ñ",
+ "▁ añ",
+ "Sc h",
+ "S ch",
+ "▁sol ve",
+ "we ise",
+ "weis e",
+ "wei se",
+ "at os",
+ "ato s",
+ "▁m eg",
+ "▁me g",
+ "▁m ember",
+ "▁mem ber",
+ "▁memb er",
+ "▁ member",
+ "er name",
+ "ern ame",
+ "erna me",
+ "▁con nect",
+ "▁conne ct",
+ "▁conn ect",
+ "▁ connect",
+ "ip s",
+ "i ps",
+ "▁r ound",
+ "▁ro und",
+ "▁rou nd",
+ "▁ round",
+ "▁ ]",
+ "ne s",
+ "n es",
+ "▁d ir",
+ "▁di r",
+ "▁ dir",
+ "▁Lond on",
+ "d y",
+ "F A",
+ "▁rece ived",
+ "▁receive d",
+ "re et",
+ "ree t",
+ "▁L og",
+ "▁Lo g",
+ "▁ Log",
+ "▁Sch ool",
+ "an go",
+ "ang o",
+ "▁The se",
+ "▁Th ese",
+ "▁M ont",
+ "▁Mon t",
+ "▁Mo nt",
+ "▁ Mont",
+ "▁e ner",
+ "▁en er",
+ "▁ ener",
+ "la d",
+ "l ad",
+ "▁def ine",
+ "▁defin e",
+ "▁ define",
+ "si gn",
+ "sig n",
+ "s ign",
+ "▁c le",
+ "▁cl e",
+ "▁ cle",
+ "fig ure",
+ "▁V iew",
+ "▁Vi ew",
+ "▁Vie w",
+ "▁ View",
+ "text bf",
+ "$ \\",
+ "з ы",
+ "num ber",
+ "n umber",
+ "▁d in",
+ "▁di n",
+ "▁ din",
+ "el ler",
+ "ell er",
+ "elle r",
+ "orith m",
+ "ori thm",
+ "fal se",
+ "f alse",
+ "fo l",
+ "f ol",
+ "ffic ient",
+ "▁HT ML",
+ "▁ HTML",
+ "li che",
+ "lic he",
+ "lich e",
+ "l iche",
+ "▁M o",
+ "▁ Mo",
+ "▁int rodu",
+ "▁intr odu",
+ "▁intro du",
+ "ex p",
+ "e xp",
+ "▁st rong",
+ "▁str ong",
+ "▁stro ng",
+ "▁ strong",
+ "▁t hus",
+ "▁th us",
+ "/ )",
+ "▁e le",
+ "▁el e",
+ "▁ ele",
+ "▁та к",
+ "▁ так",
+ "▁п а",
+ "▁ па",
+ "▁d ont",
+ "▁do nt",
+ "▁don t",
+ "▁c ause",
+ "▁caus e",
+ "▁ca use",
+ "Num ber",
+ "N umber",
+ "▁im ages",
+ "▁image s",
+ "▁imag es",
+ "▁ images",
+ "▁s ample",
+ "▁sam ple",
+ "▁ sample",
+ "▁s ci",
+ "▁sc i",
+ "▁ sci",
+ "li ke",
+ "lik e",
+ "l ike",
+ "▁L ou",
+ "▁Lo u",
+ "▁ Lou",
+ "di v",
+ "d iv",
+ "an c",
+ "a nc",
+ "▁f ront",
+ "▁fr ont",
+ "▁fro nt",
+ "▁ front",
+ "ne n",
+ "n en",
+ "▁miss ing",
+ "▁mis sing",
+ "▁ missing",
+ "ar ia",
+ "ari a",
+ "a ria",
+ "pr es",
+ "pre s",
+ "p res",
+ "▁п ред",
+ "▁пре д",
+ "D I",
+ "fil ter",
+ "▁M it",
+ "▁Mi t",
+ "U R",
+ "▁o pp",
+ "▁op p",
+ "▁ opp",
+ "▁s ql",
+ "▁sq l",
+ "▁ sql",
+ "▁ро ку",
+ "er en",
+ "ere n",
+ "e ren",
+ "em at",
+ "ema t",
+ "e mat",
+ "í s",
+ "▁Je an",
+ "▁ Jean",
+ "é c",
+ "▁c i",
+ "▁ ci",
+ "en ne",
+ "enn e",
+ "at form",
+ "▁t aken",
+ "▁tak en",
+ "▁take n",
+ "▁ta ken",
+ "▁O f",
+ "▁ Of",
+ "▁на се",
+ "▁e rr",
+ "▁er r",
+ "▁ err",
+ "O P",
+ "Fr om",
+ "F rom",
+ "De fault",
+ "Def ault",
+ "▁Gener al",
+ "▁Gen eral",
+ "▁Gene ral",
+ "▁ General",
+ "wik i",
+ "wi ki",
+ "w iki",
+ "▁g rand",
+ "▁gr and",
+ "▁gra nd",
+ "▁gran d",
+ "▁ grand",
+ "▁e inen",
+ "▁ein en",
+ "▁eine n",
+ "Re g",
+ "R eg",
+ "Hand ler",
+ "Handle r",
+ "con om",
+ "co nom",
+ "cono m",
+ "c onom",
+ "an ger",
+ "ang er",
+ "ange r",
+ "▁бы л",
+ "▁L os",
+ "▁Lo s",
+ "▁ Los",
+ "▁ex pression",
+ "▁exp ression",
+ "▁express ion",
+ "▁expr ession",
+ "▁ expression",
+ "ш а",
+ "ya l",
+ "y al",
+ "▁$ ('",
+ "▁$( '",
+ "▁sw itch",
+ "▁ switch",
+ "▁v ector",
+ "▁ve ctor",
+ "▁vec tor",
+ "▁ vector",
+ "▁T hom",
+ "▁Th om",
+ "▁v irt",
+ "▁vi rt",
+ "▁vir t",
+ "▁ virt",
+ "le ased",
+ "lease d",
+ "lea sed",
+ "▁c over",
+ "▁co ver",
+ "▁cov er",
+ "▁ cover",
+ "▁re sp",
+ "▁r esp",
+ "▁res p",
+ "▁ resp",
+ "ak o",
+ "a ko",
+ "ren ch",
+ "ot a",
+ "o ta",
+ "C ell",
+ "an ged",
+ "ang ed",
+ "ange d",
+ "▁+ =",
+ "▁ +=",
+ "la c",
+ "l ac",
+ "sk a",
+ "s ka",
+ "ne xt",
+ "nex t",
+ "n ext",
+ "▁Intern ational",
+ "▁W il",
+ "▁Wi l",
+ "▁ Wil",
+ "▁o nt",
+ "▁on t",
+ "▁ ont",
+ "ib r",
+ "i br",
+ "us tr",
+ "ust r",
+ "u str",
+ "▁b lack",
+ "▁bl ack",
+ "▁bla ck",
+ "▁ black",
+ "▁select ed",
+ "▁sel ected",
+ "▁sele cted",
+ "▁ selected",
+ "ch er",
+ "che r",
+ "c her",
+ "▁l iter",
+ "▁li ter",
+ "▁lit er",
+ "▁ liter",
+ "ro ot",
+ "r oot",
+ "л ся",
+ "▁L ife",
+ "▁Li fe",
+ "▁ Life",
+ "▁in sert",
+ "▁ins ert",
+ "▁inser t",
+ "▁inse rt",
+ "▁ insert",
+ "▁mat rix",
+ "▁ matrix",
+ "is es",
+ "ise s",
+ ") ]",
+ "▁p el",
+ "▁pe l",
+ "▁ pel",
+ "Over ride",
+ "ry pt",
+ "▁for mer",
+ "▁form er",
+ "▁forme r",
+ "▁ former",
+ "▁Fil m",
+ "▁N orth",
+ "▁Nor th",
+ "cl ient",
+ "cli ent",
+ "c lient",
+ "▁n ight",
+ "▁ night",
+ "хо ди",
+ "ход и",
+ "▁A ustral",
+ "▁Aust ral",
+ "▁ Austral",
+ "▁R et",
+ "▁Re t",
+ "▁ Ret",
+ "rh o",
+ "r ho",
+ "▁п ер",
+ "▁пе р",
+ "▁ пер",
+ "ip edia",
+ "ipe dia",
+ "▁ex press",
+ "▁exp ress",
+ "▁expr ess",
+ "▁expres s",
+ "▁ express",
+ "▁th ird",
+ "▁ third",
+ "▁ma jor",
+ "▁maj or",
+ "▁ major",
+ "▁g rad",
+ "▁gr ad",
+ "▁gra d",
+ "▁ grad",
+ "ow e",
+ "o we",
+ "▁bel ieve",
+ "our nal",
+ "ourn al",
+ "▁st atus",
+ "▁stat us",
+ "▁ status",
+ "un c",
+ "u nc",
+ "▁d ou",
+ "▁do u",
+ "▁J SON",
+ "▁JS ON",
+ "▁ JSON",
+ "ui s",
+ "u is",
+ "▁pop ulation",
+ "▁popula tion",
+ "▁popul ation",
+ "en z",
+ "▁Will iam",
+ "s f",
+ "▁O bject",
+ "▁Ob ject",
+ "▁ Object",
+ "▁c in",
+ "▁ci n",
+ "▁ cin",
+ "▁D i",
+ "▁ Di",
+ "cur ity",
+ "c urity",
+ "▁O pen",
+ "▁Op en",
+ "▁ Open",
+ "▁ ле",
+ "la r",
+ "l ar",
+ "ad ding",
+ "add ing",
+ "▁k om",
+ "▁ko m",
+ "▁ kom",
+ "}( \\",
+ "} (\\",
+ "▁k il",
+ "▁ki l",
+ "▁ kil",
+ "um er",
+ "ume r",
+ "u mer",
+ "\"/ >",
+ "\" />",
+ "▁fe ature",
+ "▁ feature",
+ "▁A re",
+ "▁Ar e",
+ "▁ Are",
+ "ck s",
+ "c ks",
+ "▁Intern et",
+ "▁Inter net",
+ "▁ Internet",
+ "▁i h",
+ "▁ ih",
+ "▁start ed",
+ "▁star ted",
+ "▁ear ly",
+ "▁be gan",
+ "▁beg an",
+ "T H",
+ "p ython",
+ "as p",
+ "a sp",
+ "▁F r",
+ "▁ Fr",
+ "▁c los",
+ "▁cl os",
+ "▁clo s",
+ "▁ clos",
+ "ist ic",
+ "isti c",
+ "▁mus ic",
+ "▁ music",
+ "▁d ig",
+ "▁di g",
+ "▁ dig",
+ "▁it al",
+ "▁i tal",
+ "▁ ital",
+ "▁D avid",
+ "▁Dav id",
+ "▁Da vid",
+ "▁ David",
+ "▁web site",
+ "▁ website",
+ "▁cont roller",
+ "▁control ler",
+ "▁ controller",
+ "▁M er",
+ "▁Me r",
+ "▁ Mer",
+ "con text",
+ "cont ext",
+ "pro duct",
+ "produ ct",
+ "prod uct",
+ "os p",
+ "o sp",
+ "▁j un",
+ "▁ju n",
+ "ro wn",
+ "row n",
+ "r own",
+ "▁A z",
+ "▁ Az",
+ "\": \"",
+ "\" :\"",
+ "▁a an",
+ "▁aa n",
+ "▁D ate",
+ "▁Da te",
+ "▁Dat e",
+ "▁ Date",
+ "mu lt",
+ "mul t",
+ "m ult",
+ "▁b rowser",
+ "▁brow ser",
+ "▁ browser",
+ "ре д",
+ "wh ich",
+ "R A",
+ "qu are",
+ "qua re",
+ "▁R uss",
+ "▁Ru ss",
+ "▁Rus s",
+ "▁ Russ",
+ "▁s oon",
+ "▁so on",
+ "▁P re",
+ "▁Pr e",
+ "▁ Pre",
+ "ta u",
+ "t au",
+ "▁we ek",
+ "▁ week",
+ "▁б а",
+ "▁ ба",
+ "▁o ct",
+ "▁oc t",
+ "▁ oct",
+ "▁t own",
+ "▁to wn",
+ "▁ town",
+ "ro y",
+ "r oy",
+ "▁e ls",
+ "▁el s",
+ "▁ els",
+ "bl ic",
+ "b lic",
+ "und le",
+ "▁H istor",
+ "▁His tor",
+ "▁Hi stor",
+ "▁Hist or",
+ "▁f oi",
+ "▁fo i",
+ "▁mod els",
+ "▁model s",
+ "▁mode ls",
+ "▁ models",
+ "з о",
+ "on ym",
+ "ony m",
+ "o nym",
+ "Par am",
+ "Pa ram",
+ "P aram",
+ "▁M et",
+ "▁Me t",
+ "▁ Met",
+ "ge ner",
+ "gen er",
+ "g ener",
+ "j ą",
+ "▁e spe",
+ "▁es pe",
+ "▁esp e",
+ "C E",
+ "▁de vice",
+ "▁dev ice",
+ "▁devi ce",
+ "▁ device",
+ "el low",
+ "ell ow",
+ "ello w",
+ "▁de bug",
+ "▁deb ug",
+ "▁ debug",
+ "ér ie",
+ "éri e",
+ "é rie",
+ "us ing",
+ "u sing",
+ "ан г",
+ "а нг",
+ "▁* )",
+ "▁ *)",
+ "ud i",
+ "u di",
+ "▁M iss",
+ "▁Mi ss",
+ "▁Mis s",
+ "▁ Miss",
+ "ко м",
+ "к ом",
+ "pos ed",
+ "po sed",
+ "pose d",
+ "p osed",
+ "▁z we",
+ "▁zw e",
+ "і н",
+ "▁Ro bert",
+ "▁Rob ert",
+ "▁O ct",
+ "▁ Oct",
+ "lo p",
+ "l op",
+ "ja r",
+ "j ar",
+ "▁a ver",
+ "▁av er",
+ "▁ave r",
+ "▁ aver",
+ "▁ha bit",
+ "▁hab it",
+ "▁: :",
+ "▁ ::",
+ "än g",
+ "ä ng",
+ "St art",
+ "Star t",
+ "▁p ow",
+ "▁po w",
+ "▁ pow",
+ "▁s rc",
+ "▁sr c",
+ "▁ src",
+ "▁pat tern",
+ "▁ pattern",
+ "▁ Э",
+ "▁b i",
+ "▁ bi",
+ "ot es",
+ "ote s",
+ "o tes",
+ "▁_ _",
+ "▁ __",
+ "▁s ens",
+ "▁se ns",
+ "▁sen s",
+ "▁ sens",
+ "▁a void",
+ "▁av oid",
+ "▁avo id",
+ "ex ample",
+ "ut t",
+ "u tt",
+ "La bel",
+ "Lab el",
+ "L abel",
+ "te x",
+ "t ex",
+ "bo ot",
+ "b oot",
+ "es to",
+ "est o",
+ "e sto",
+ "▁M arch",
+ "▁Mar ch",
+ "▁Marc h",
+ "▁e asy",
+ "▁eas y",
+ "ict ure",
+ "Gr oup",
+ "▁f ather",
+ "▁fa ther",
+ "▁fat her",
+ "▁ father",
+ "▁up dated",
+ "▁update d",
+ "▁upd ated",
+ "▁ updated",
+ "▁V o",
+ "▁I II",
+ "▁II I",
+ "▁ III",
+ "om ega",
+ "ome ga",
+ "▁a lle",
+ "▁al le",
+ "▁all e",
+ "▁ alle",
+ "Re c",
+ "R ec",
+ "y g",
+ "з е",
+ "▁D im",
+ "▁Di m",
+ "▁ Dim",
+ "ne ct",
+ "n ect",
+ "▁T or",
+ "▁To r",
+ "▁de utsch",
+ "▁ deutsch",
+ "▁wh ite",
+ "▁ white",
+ "▁n ational",
+ "▁nation al",
+ "▁nat ional",
+ "pp e",
+ "p pe",
+ "▁a ir",
+ "▁ai r",
+ "▁ air",
+ "▁pass word",
+ "▁ password",
+ "de t",
+ "d et",
+ "▁b ig",
+ "▁bi g",
+ "▁ big",
+ "▁U se",
+ "▁Us e",
+ "▁ Use",
+ "cal l",
+ "ca ll",
+ "c all",
+ "▁ex tra",
+ "▁ext ra",
+ "▁extr a",
+ "▁ extra",
+ "W e",
+ "an ia",
+ "ani a",
+ "a nia",
+ "▁h old",
+ "▁ho ld",
+ "▁hol d",
+ "▁ hold",
+ "Cont rol",
+ "▁C O",
+ "▁ CO",
+ "▁м і",
+ "▁ мі",
+ "it i",
+ "i ti",
+ "▁K e",
+ "▁ Ke",
+ "en u",
+ "e nu",
+ "▁P ark",
+ "▁Par k",
+ "то м",
+ "т ом",
+ "▁a uth",
+ "▁au th",
+ "▁aut h",
+ "▁ auth",
+ "▁c enter",
+ "▁cent er",
+ "▁ center",
+ "P h",
+ "то в",
+ "т ов",
+ "id ing",
+ "idi ng",
+ "i ding",
+ "▁a cross",
+ "▁ac ross",
+ "▁s ong",
+ "▁so ng",
+ "▁son g",
+ "▁ song",
+ "▁ph ys",
+ "▁ phys",
+ "▁n umer",
+ "▁num er",
+ "▁nu mer",
+ "▁ numer",
+ "щ а",
+ "▁A lex",
+ "▁Al ex",
+ "▁Ale x",
+ "▁ Alex",
+ "▁problem s",
+ "▁proble ms",
+ "▁probl ems",
+ "▁E rror",
+ "▁Er ror",
+ "▁Err or",
+ "▁ Error",
+ "form at",
+ "for mat",
+ "▁A cc",
+ "▁Ac c",
+ "▁ Acc",
+ "▁s ix",
+ "▁si x",
+ "▁ six",
+ "▁d b",
+ "▁ db",
+ "▁C ast",
+ "▁Cas t",
+ "▁Ca st",
+ "▁ Cast",
+ "om s",
+ "o ms",
+ "pro ject",
+ "proj ect",
+ "▁v ert",
+ "▁ver t",
+ "▁ve rt",
+ "▁ vert",
+ "cre t",
+ "cr et",
+ "c ret",
+ "▁he ader",
+ "▁head er",
+ "▁ header",
+ "▁st ream",
+ "▁stre am",
+ "▁ stream",
+ "id s",
+ "i ds",
+ "▁t or",
+ "▁to r",
+ "▁ tor",
+ "▁se pt",
+ "▁sep t",
+ "▁est im",
+ "▁es tim",
+ "▁de cl",
+ "▁dec l",
+ "▁ decl",
+ "▁g ave",
+ "▁ga ve",
+ "▁p layer",
+ "▁pl ayer",
+ "▁play er",
+ "▁pla yer",
+ "▁ player",
+ "ys is",
+ "▁д ру",
+ "▁др у",
+ "am m",
+ "a mm",
+ "щ о",
+ "▁( \"",
+ "▁ (\"",
+ "▁a x",
+ "▁ ax",
+ "Pro perty",
+ "us r",
+ "u sr",
+ "▁some one",
+ "▁im pro",
+ "▁imp ro",
+ "▁impr o",
+ "ad en",
+ "ade n",
+ "a den",
+ "ro te",
+ "rot e",
+ "r ote",
+ "▁М и",
+ "i h",
+ "++ )",
+ "+ +)",
+ "▁v ideo",
+ "▁vide o",
+ "▁ video",
+ "▁ex ists",
+ "▁exist s",
+ "▁ exists",
+ "к ла",
+ "▁comp lete",
+ "▁comple te",
+ "▁complet e",
+ "▁compl ete",
+ "▁ complete",
+ "▁s ession",
+ "▁sess ion",
+ "▁ session",
+ "▁const ant",
+ "▁ constant",
+ "ic os",
+ "ico s",
+ "i cos",
+ "▁p ack",
+ "▁pa ck",
+ "▁pac k",
+ "▁ pack",
+ "ro me",
+ "rom e",
+ "r ome",
+ "eg r",
+ "e gr",
+ "App lication",
+ "▁y es",
+ "▁ye s",
+ "▁ yes",
+ "▁e lle",
+ "▁el le",
+ "▁ell e",
+ "▁ elle",
+ "▁e mail",
+ "▁em ail",
+ "▁ email",
+ "or f",
+ "o rf",
+ "ca se",
+ "cas e",
+ "c ase",
+ "▁po inter",
+ "▁point er",
+ "▁ pointer",
+ "▁reg ard",
+ "se n",
+ "s en",
+ "st atus",
+ "stat us",
+ "▁m es",
+ "▁me s",
+ "▁ mes",
+ "▁d elle",
+ "▁de lle",
+ "▁del le",
+ "▁dell e",
+ "ing ton",
+ "ingt on",
+ "▁B as",
+ "▁Ba s",
+ "▁ Bas",
+ ") ^",
+ "de velop",
+ "▁for ce",
+ "▁ force",
+ "▁char acters",
+ "▁charact ers",
+ "▁character s",
+ "▁c ross",
+ "▁cr oss",
+ "▁cro ss",
+ "▁ cross",
+ "▁de ath",
+ "▁t akes",
+ "▁tak es",
+ "▁take s",
+ "▁ta kes",
+ "ér i",
+ "é ri",
+ "ig ne",
+ "ign e",
+ "че н",
+ "ч ен",
+ "U P",
+ ". :",
+ "Th read",
+ "j u",
+ "in y",
+ "i ny",
+ "▁det ails",
+ "▁detail s",
+ "▁ details",
+ "▁x ml",
+ "▁ xml",
+ "ta it",
+ "t ait",
+ "out put",
+ "mess age",
+ "m essage",
+ "' '",
+ "▁Brit ish",
+ "vi lle",
+ "vil le",
+ "v ille",
+ "▁D iv",
+ "▁Di v",
+ "▁ Div",
+ "▁U ser",
+ "▁Use r",
+ "▁Us er",
+ "▁ User",
+ "c m",
+ "ч но",
+ "col umn",
+ "eq ref",
+ "ó r",
+ "on om",
+ "ono m",
+ "o nom",
+ "▁P ost",
+ "▁Po st",
+ "▁Pos t",
+ "▁ Post",
+ "el len",
+ "ell en",
+ "elle n",
+ "A b",
+ "ul té",
+ "ult é",
+ "▁per fect",
+ "▁perf ect",
+ "() {",
+ "( ){",
+ "vis ion",
+ "v ision",
+ "act ive",
+ "activ e",
+ "li er",
+ "lie r",
+ "l ier",
+ "ri j",
+ "r ij",
+ "s d",
+ "▁k ö",
+ "▁ kö",
+ "▁n ie",
+ "▁ni e",
+ "▁ nie",
+ "▁re lig",
+ "▁rel ig",
+ "▁reli g",
+ "▁o t",
+ "▁ ot",
+ "▁m achine",
+ "▁mach ine",
+ "▁ machine",
+ "▁h eld",
+ "▁he ld",
+ "▁hel d",
+ ")$ .",
+ ") $.",
+ "==== ====",
+ "ck er",
+ "cke r",
+ "c ker",
+ "в ы",
+ "bo rn",
+ "bor n",
+ "b orn",
+ "▁p ast",
+ "▁pas t",
+ "▁pa st",
+ "ри я",
+ "▁D r",
+ "▁ Dr",
+ "▁reg ular",
+ "▁regul ar",
+ "▁ regular",
+ "▁prov ided",
+ "▁provide d",
+ "TE R",
+ "T ER",
+ "▁un ivers",
+ "▁ univers",
+ "▁g ets",
+ "▁get s",
+ "▁ge ts",
+ "▁ gets",
+ "▁n u",
+ "▁ nu",
+ "▁/ *",
+ "▁ /*",
+ "ob er",
+ "obe r",
+ "o ber",
+ "fi n",
+ "f in",
+ "▁n ella",
+ "▁ne lla",
+ "▁nel la",
+ "▁nell a",
+ "▁be come",
+ "▁bec ome",
+ "▁becom e",
+ "▁` `",
+ "▁ ``",
+ "▁h istory",
+ "▁histor y",
+ "▁hi story",
+ "▁hist ory",
+ "▁ history",
+ "▁S ol",
+ "▁So l",
+ "▁ Sol",
+ "▁R ad",
+ "▁Ra d",
+ "▁ Rad",
+ "▁term s",
+ "▁ter ms",
+ "▁even ts",
+ "▁event s",
+ "▁ev ents",
+ "▁ events",
+ "ly mp",
+ ")) )",
+ ") ))",
+ "ро ва",
+ "ров а",
+ "р ова",
+ "▁ab sol",
+ "▁abs ol",
+ "▁so ft",
+ "▁ soft",
+ "lin ks",
+ "link s",
+ "l inks",
+ "▁h ope",
+ "▁ho pe",
+ "▁hop e",
+ "▁su bject",
+ "▁sub ject",
+ "▁ subject",
+ "\") ,",
+ "\" ),",
+ "▁cre ating",
+ "▁} \r",
+ "▁ }\r",
+ "▁S k",
+ "▁ Sk",
+ "▁f low",
+ "▁fl ow",
+ "▁flo w",
+ "▁ flow",
+ "▁Р а",
+ "▁as sert",
+ "▁ass ert",
+ "▁asse rt",
+ "▁ assert",
+ "ze t",
+ "z et",
+ "▁F rank",
+ "▁Fran k",
+ "▁Fr ank",
+ "s a",
+ "▁dist ribution",
+ "▁distribu tion",
+ "▁distrib ution",
+ "▁ distribution",
+ "c u",
+ "ba nd",
+ "ban d",
+ "b and",
+ "iz z",
+ "i zz",
+ "▁j ob",
+ "▁jo b",
+ "▁ job",
+ "in er",
+ "ine r",
+ "i ner",
+ "st ruct",
+ "str uct",
+ "stru ct",
+ "á k",
+ "T O",
+ "au f",
+ "a uf",
+ "▁ext ends",
+ "▁extend s",
+ "▁G ra",
+ "▁Gr a",
+ "dis play",
+ "▁sign ific",
+ "on ey",
+ "one y",
+ "o ney",
+ "s ource",
+ "m icrosoft",
+ "in der",
+ "ind er",
+ "inde r",
+ "i nder",
+ "▁qu ick",
+ "▁qui ck",
+ "▁ quick",
+ "▁w onder",
+ "▁won der",
+ "▁wo nder",
+ "Inst ance",
+ "el les",
+ "ell es",
+ "elle s",
+ "e lles",
+ "è me",
+ "▁comp any",
+ "▁compan y",
+ "▁ company",
+ "u ß",
+ ". }",
+ "▁separ ate",
+ "U M",
+ "HER E",
+ "HE RE",
+ "H ERE",
+ "▁writ ing",
+ "▁wr iting",
+ "▁ writing",
+ "it ution",
+ "itu tion",
+ "itut ion",
+ "▁G esch",
+ "▁Ge sch",
+ "▁Ges ch",
+ "м я",
+ "▁J ames",
+ "▁Ja mes",
+ "▁Jam es",
+ "▁ James",
+ "▁D E",
+ "▁ DE",
+ "▁S pe",
+ "▁Sp e",
+ "▁ Spe",
+ "pro cess",
+ "proc ess",
+ "St r",
+ "S tr",
+ "▁s ym",
+ "▁sy m",
+ "▁ sym",
+ "▁a o",
+ "▁ ao",
+ "▁w y",
+ "▁ wy",
+ "▁any one",
+ "▁U p",
+ "▁ Up",
+ "use um",
+ "ar on",
+ "aro n",
+ "a ron",
+ "▁def inition",
+ "▁defin ition",
+ "▁definit ion",
+ "▁ definition",
+ "▁` $",
+ "▁f av",
+ "▁fa v",
+ "rib utes",
+ "ribute s",
+ "ribu tes",
+ "▁R é",
+ "ograf ia",
+ "ografi a",
+ "el ement",
+ "ele ment",
+ "elem ent",
+ "e lement",
+ "ca p",
+ "c ap",
+ "pa t",
+ "p at",
+ "▁B ra",
+ "▁Br a",
+ "▁ Bra",
+ ") (",
+ "▁acc ording",
+ "▁accord ing",
+ "г е",
+ "▁p ie",
+ "▁pi e",
+ "▁ pie",
+ "el i",
+ "e li",
+ "} \"",
+ "▁act iv",
+ "▁ activ",
+ "▁s top",
+ "▁st op",
+ "▁sto p",
+ "▁ stop",
+ "pat ch",
+ "p atch",
+ "т і",
+ "▁J ose",
+ "▁Jo se",
+ "▁Jos e",
+ "▁ Jose",
+ "En d",
+ "E nd",
+ "▁p rze",
+ "▁pr ze",
+ "▁prz e",
+ "▁a ge",
+ "▁ag e",
+ "▁ age",
+ "it ory",
+ "ito ry",
+ "itor y",
+ "▁P HP",
+ "▁ PHP",
+ "ag ement",
+ "age ment",
+ "agem ent",
+ "▁` .",
+ "▁ `.",
+ "▁pre tty",
+ "▁pret ty",
+ "▁re comm",
+ "▁rec omm",
+ "▁recom m",
+ "▁s ud",
+ "▁su d",
+ "▁re qu",
+ "▁r equ",
+ "▁req u",
+ "▁об ла",
+ "at ives",
+ "ative s",
+ "ativ es",
+ "ati ves",
+ "▁H igh",
+ "▁Hi gh",
+ "▁ High",
+ "á z",
+ "ou l",
+ "o ul",
+ "re st",
+ "res t",
+ "r est",
+ "▁T er",
+ "▁Te r",
+ "un der",
+ "und er",
+ "unde r",
+ "u nder",
+ "th ern",
+ "ther n",
+ "the rn",
+ "cent er",
+ "cen ter",
+ "cente r",
+ "c enter",
+ "▁u r",
+ "▁ ur",
+ "la t",
+ "l at",
+ "▁inter face",
+ "▁ interface",
+ "▁и н",
+ "▁ ин",
+ "▁wh ose",
+ "▁who se",
+ "ic as",
+ "ica s",
+ "i cas",
+ "am en",
+ "ame n",
+ "a men",
+ "Fil ter",
+ "▁st ation",
+ "▁stat ion",
+ "▁sta tion",
+ "▁stati on",
+ "▁ station",
+ "Pa ge",
+ "P age",
+ "▁a rm",
+ "▁ar m",
+ "▁ arm",
+ "▁e yes",
+ "▁eye s",
+ "▁ра й",
+ "▁s eu",
+ "▁se u",
+ "ol i",
+ "o li",
+ "wi n",
+ "w in",
+ "li k",
+ "l ik",
+ "ge x",
+ "g ex",
+ "ch an",
+ "cha n",
+ "c han",
+ "id ence",
+ "iden ce",
+ "ar gs",
+ "arg s",
+ "ak ing",
+ "aki ng",
+ "a king",
+ "▁Go ogle",
+ "▁ Google",
+ "▁St ud",
+ "▁Stu d",
+ "▁h o",
+ "▁ ho",
+ "то ры",
+ "тор ы",
+ "S u",
+ "▁autom at",
+ "▁auto mat",
+ "êm e",
+ "ê me",
+ "▁c y",
+ "▁ cy",
+ "lo r",
+ "l or",
+ "▁st ack",
+ "▁sta ck",
+ "▁ stack",
+ "▁SE LECT",
+ "▁ SELECT",
+ "A F",
+ "▁> >",
+ "▁ >>",
+ "▁com pet",
+ "▁comp et",
+ "▁p air",
+ "▁pa ir",
+ "▁ pair",
+ "▁ing lés",
+ "Res ponse",
+ "▁F ig",
+ "▁ Fig",
+ "gr ad",
+ "gra d",
+ "g rad",
+ "▁document ation",
+ "▁ documentation",
+ "▁c ant",
+ "▁can t",
+ "▁ca nt",
+ "▁app reci",
+ "å n",
+ "▁le arn",
+ "▁lear n",
+ "▁ learn",
+ "▁in dep",
+ "▁ind ep",
+ "▁inde p",
+ "▁p al",
+ "▁pa l",
+ "▁ pal",
+ "pack age",
+ "p ackage",
+ "ar es",
+ "are s",
+ "a res",
+ "▁Ber lin",
+ "▁Berl in",
+ "б ли",
+ "re ich",
+ "rei ch",
+ "ё н",
+ "▁s atisf",
+ "▁sat isf",
+ "▁reg ion",
+ "▁ region",
+ "▁fri end",
+ "▁ friend",
+ "▁Ge orge",
+ "▁Georg e",
+ "▁В о",
+ "▁ Во",
+ "▁\" \"",
+ "▁ \"\"",
+ "▁des de",
+ "Fact ory",
+ "F actory",
+ "▁Count y",
+ "▁Coun ty",
+ "ou v",
+ "o uv",
+ "▁ ‘",
+ "▁inst alled",
+ "▁install ed",
+ "▁instal led",
+ "▁ installed",
+ "▁w anted",
+ "▁want ed",
+ "▁P ython",
+ "▁ Python",
+ "▁inter pre",
+ "▁in cluded",
+ "▁includ ed",
+ "▁include d",
+ "▁inclu ded",
+ "▁( (",
+ "▁ ((",
+ "▁al tern",
+ "▁alt ern",
+ "▁alter n",
+ "▁alte rn",
+ "▁ altern",
+ "is to",
+ "ist o",
+ "i sto",
+ "g n",
+ "▁b order",
+ "▁bor der",
+ "▁bord er",
+ "▁ border",
+ "pd f",
+ "p df",
+ "▁d up",
+ "▁du p",
+ "▁ dup",
+ "▁down load",
+ "▁ download",
+ "ju st",
+ "jus t",
+ "j ust",
+ "▁m embers",
+ "▁mem bers",
+ "▁memb ers",
+ "▁member s",
+ "▁ members",
+ "ch ild",
+ "chi ld",
+ "▁p ay",
+ "▁pa y",
+ "▁ pay",
+ "▁c er",
+ "▁ce r",
+ "▁ cer",
+ "▁lo oked",
+ "▁look ed",
+ "▁correct ly",
+ "au th",
+ "aut h",
+ "a uth",
+ "▁с тан",
+ "▁ст ан",
+ "▁ста н",
+ "▁ стан",
+ "▁e sp",
+ "▁es p",
+ "▁ esp",
+ "▁d esc",
+ "▁de sc",
+ "▁des c",
+ "▁ desc",
+ "eb en",
+ "e ben",
+ "▁qu estions",
+ "▁question s",
+ "▁quest ions",
+ "▁questi ons",
+ "▁ questions",
+ "ma l",
+ "m al",
+ "▁ab gerufen",
+ "▁ abgerufen",
+ "▁B and",
+ "▁Ba nd",
+ "▁Ban d",
+ "▁[ ]",
+ "▁ []",
+ "Bas e",
+ "B ase",
+ "▁r is",
+ "▁ri s",
+ "▁ ris",
+ "▁f ort",
+ "▁for t",
+ "▁fo rt",
+ "▁ fort",
+ "▁I d",
+ "▁ Id",
+ "▁var ious",
+ "▁vari ous",
+ "▁Le ague",
+ "▁H and",
+ "▁Ha nd",
+ "▁Han d",
+ "▁ Hand",
+ "▁T ype",
+ "▁Ty pe",
+ "▁Typ e",
+ "▁ Type",
+ "ir l",
+ "i rl",
+ "▁F e",
+ "▁ Fe",
+ "i én",
+ "it ter",
+ "itt er",
+ "itte r",
+ "▁f ast",
+ "▁fa st",
+ "▁fas t",
+ "▁ fast",
+ "st a",
+ "s ta",
+ "▁ex cept",
+ "▁ except",
+ "ic z",
+ "i cz",
+ "▁F rench",
+ "▁en vironment",
+ "▁environ ment",
+ "▁ environment",
+ "▁con se",
+ "▁cons e",
+ "у р",
+ "о го",
+ "▁necess ary",
+ "tar get",
+ "t arget",
+ "▁re ading",
+ "▁read ing",
+ "▁ reading",
+ "ho me",
+ "hom e",
+ "h ome",
+ "ze ich",
+ "▁e qual",
+ "▁equ al",
+ "▁eq ual",
+ "▁ equal",
+ "▁pi ù",
+ "▁p rem",
+ "▁pr em",
+ "▁pre m",
+ "▁diff icult",
+ "▁u nit",
+ "▁un it",
+ "▁ unit",
+ "▁re place",
+ "▁rep lace",
+ "▁repla ce",
+ "▁ replace",
+ "▁he art",
+ "▁hear t",
+ "▁ heart",
+ "▁t alk",
+ "▁tal k",
+ "A M",
+ "▁R E",
+ "▁ RE",
+ "▁P erson",
+ "▁Per son",
+ "▁Pers on",
+ "▁ Person",
+ "end ency",
+ "enden cy",
+ "▁i mm",
+ "▁im m",
+ "▁ imm",
+ "▁h uman",
+ "▁hum an",
+ "▁hu man",
+ "▁ human",
+ "d n",
+ "▁K ir",
+ "▁Ki r",
+ "▁A ut",
+ "▁Au t",
+ "▁ Aut",
+ "kn own",
+ "know n",
+ "k nown",
+ "▁fr equ",
+ "▁fre qu",
+ "sys tem",
+ "s ystem",
+ "ла в",
+ "▁S z",
+ "▁G al",
+ "▁Ga l",
+ "но е",
+ "sel ves",
+ "right arrow",
+ "r ightarrow",
+ "▁С а",
+ "▁ Са",
+ "=\" @",
+ "▁build ing",
+ "▁ building",
+ "im port",
+ "imp ort",
+ "▁f am",
+ "▁fa m",
+ "▁de lete",
+ "▁del ete",
+ "▁delet e",
+ "▁ delete",
+ "air e",
+ "ai re",
+ "a ire",
+ "ma ry",
+ "mar y",
+ "m ary",
+ "▁f und",
+ "▁fun d",
+ "▁fu nd",
+ "▁ fund",
+ "▁part icip",
+ "▁partic ip",
+ "▁parti cip",
+ "▁partici p",
+ "▁s yn",
+ "▁sy n",
+ "▁ syn",
+ "si n",
+ "s in",
+ "▁l ower",
+ "▁lo wer",
+ "▁low er",
+ "▁ lower",
+ "▁z ero",
+ "▁ze ro",
+ "▁ zero",
+ "▁s ec",
+ "▁se c",
+ "▁ sec",
+ "▁f ra",
+ "▁fr a",
+ "▁ fra",
+ "Po int",
+ "P oint",
+ "▁fa iled",
+ "▁fail ed",
+ "▁ failed",
+ "ien to",
+ "ient o",
+ "i ento",
+ "cu p",
+ "c up",
+ "▁s low",
+ "▁sl ow",
+ "▁slo w",
+ "▁ slow",
+ "▁n ation",
+ "▁na tion",
+ "▁nat ion",
+ "äh r",
+ "ä hr",
+ "▁in fo",
+ "▁inf o",
+ "▁ info",
+ "▁P ublic",
+ "▁Pub lic",
+ "▁Pu blic",
+ "▁ Public",
+ "▁de cla",
+ "▁dec la",
+ "▁decl a",
+ "▁Т а",
+ "▁s old",
+ "▁so ld",
+ "▁sol d",
+ "▁R em",
+ "▁Re m",
+ "▁ Rem",
+ "▁Ph il",
+ "ст ра",
+ "стр а",
+ "с тра",
+ "▁me hr",
+ "▁W ork",
+ "▁Wor k",
+ "▁ Work",
+ "▁N ord",
+ "▁No rd",
+ "▁Nor d",
+ "▁f ait",
+ "▁fa it",
+ "▁g ew",
+ "▁ge w",
+ "▁ gew",
+ "print ln",
+ "ob ile",
+ "obil e",
+ "obi le",
+ "▁K on",
+ "▁Ko n",
+ "▁ass ume",
+ "▁assum e",
+ "land s",
+ "lan ds",
+ "l ands",
+ "▁a mount",
+ "▁am ount",
+ "▁ amount",
+ "▁P ress",
+ "▁Pr ess",
+ "▁Pres s",
+ "▁Pre ss",
+ "▁ Press",
+ "ý ch",
+ "▁ma xim",
+ "▁max im",
+ "▁ maxim",
+ "▁Ch ampion",
+ "▁Champ ion",
+ "li brary",
+ "l ibrary",
+ "a ñ",
+ "▁W al",
+ "▁Wa l",
+ "Com m",
+ "Co mm",
+ "C omm",
+ "] ]",
+ "▁z w",
+ "▁ zw",
+ "▁so cial",
+ "▁soci al",
+ "▁soc ial",
+ "▁ social",
+ "L I",
+ "▁Un ter",
+ "vo r",
+ "v or",
+ "Del ta",
+ "D elta",
+ "em ail",
+ "ema il",
+ "e mail",
+ "ra int",
+ "rain t",
+ "rai nt",
+ "r aint",
+ "on i",
+ "o ni",
+ "▁a lt",
+ "▁al t",
+ "▁ alt",
+ "▁n é",
+ "▁ né",
+ "ци я",
+ "ograph y",
+ "▁mention ed",
+ "▁ment ioned",
+ "▁< =",
+ "▁ <=",
+ "▁c ette",
+ "▁ce tte",
+ "▁cet te",
+ "▁current ly",
+ "▁curr ently",
+ "va re",
+ "var e",
+ "v are",
+ "iz ing",
+ "izi ng",
+ "izin g",
+ "i zing",
+ "▁D ef",
+ "▁De f",
+ "▁ Def",
+ "ic ol",
+ "ico l",
+ "i col",
+ "ün d",
+ "ü nd",
+ "▁config uration",
+ "▁configur ation",
+ "▁ configuration",
+ "est ig",
+ "esti g",
+ "II I",
+ "I II",
+ "la m",
+ "l am",
+ "i ère",
+ "▁E ar",
+ "▁t u",
+ "▁ tu",
+ "En t",
+ "E nt",
+ "▁U sing",
+ "▁Us ing",
+ "▁ Using",
+ "▁ко м",
+ "▁к ом",
+ "▁ ком",
+ "ci e",
+ "c ie",
+ "▁pro of",
+ "▁ proof",
+ "▁in vol",
+ "▁inv ol",
+ "▁H istory",
+ "▁Histor y",
+ "▁Hi story",
+ "▁Hist ory",
+ "▁ History",
+ "> <",
+ "▁A ND",
+ "▁AN D",
+ "▁ AND",
+ "av y",
+ "a vy",
+ "▁rel ations",
+ "▁relation s",
+ "$ {",
+ "▁com es",
+ "▁co mes",
+ "▁come s",
+ "▁ comes",
+ "▁d irection",
+ "▁direct ion",
+ "▁dire ction",
+ "▁dir ection",
+ "▁ direction",
+ "▁J une",
+ "▁Ju ne",
+ "▁Jun e",
+ "▁W ay",
+ "▁Wa y",
+ "Com ponent",
+ "ec h",
+ "e ch",
+ "▁P eter",
+ "▁Pe ter",
+ "▁Pet er",
+ "▁ Peter",
+ "s g",
+ "▁s tra",
+ "▁st ra",
+ "▁str a",
+ "▁ stra",
+ "uc t",
+ "u ct",
+ "▁im plementation",
+ "▁implement ation",
+ "▁ implementation",
+ "att le",
+ "▁c z",
+ "▁ cz",
+ "pl ot",
+ "p lot",
+ "▁play ed",
+ "▁pla yed",
+ "\"> ",
+ "\">< /",
+ "\" >",
+ "▁f ive",
+ "▁fi ve",
+ "▁ five",
+ "▁c oll",
+ "▁col l",
+ "▁co ll",
+ "▁ coll",
+ "▁Char les",
+ "Tr a",
+ "T ra",
+ "▁s uo",
+ "▁su o",
+ "file s",
+ "fil es",
+ "fi les",
+ "f iles",
+ "en tes",
+ "ent es",
+ "ente s",
+ "res ponse",
+ "respons e",
+ "H ow",
+ "▁S oci",
+ "▁So ci",
+ "▁Soc i",
+ "▁i gn",
+ "▁ig n",
+ "▁ ign",
+ "▁l ed",
+ "▁le d",
+ "▁ led",
+ "▁G erman",
+ "▁Ger man",
+ "▁Germ an",
+ "ud o",
+ "u do",
+ "▁D u",
+ "▁t im",
+ "▁ti m",
+ "▁ tim",
+ "ount er",
+ "oun ter",
+ "o unter",
+ "▁att ack",
+ "ur i",
+ "u ri",
+ "▁а р",
+ "▁ ар",
+ "es se",
+ "ess e",
+ "iv il",
+ "ivi l",
+ "i vil",
+ "▁J u",
+ "▁v el",
+ "▁ve l",
+ "▁ vel",
+ "mat rix",
+ "▁M at",
+ "▁Ma t",
+ "▁ Mat",
+ "gi o",
+ "g io",
+ "▁Ze it",
+ "VE R",
+ "V ER",
+ "ha s",
+ "h as",
+ "Con nection",
+ "Connect ion",
+ "Conne ction",
+ "▁i hr",
+ "▁ih r",
+ "▁att ribute",
+ "▁ attribute",
+ "▁dis cuss",
+ "▁disc uss",
+ "▁do main",
+ "▁dom ain",
+ "▁ domain",
+ "bin d",
+ "bi nd",
+ "b ind",
+ "▁S ec",
+ "▁Se c",
+ "▁ Sec",
+ "ri k",
+ "r ik",
+ "cl ose",
+ "clos e",
+ "clo se",
+ "c lose",
+ "gi n",
+ "g in",
+ "▁l ove",
+ "▁lo ve",
+ "▁lov e",
+ "an to",
+ "ant o",
+ "ge nt",
+ "gen t",
+ "g ent",
+ "ab a",
+ "a ba",
+ "jan go",
+ "j ango",
+ "b i",
+ "▁ob ser",
+ "▁obs er",
+ "it ting",
+ "itt ing",
+ "▁р у",
+ "▁ ру",
+ "} =",
+ "ag en",
+ "age n",
+ "a gen",
+ "B C",
+ "so me",
+ "som e",
+ "s ome",
+ "▁B u",
+ "▁ Bu",
+ "▁s oci",
+ "▁so ci",
+ "▁soc i",
+ "▁ soci",
+ "▁ind ividual",
+ "▁individ ual",
+ "▁de al",
+ "▁out side",
+ "ri o",
+ "r io",
+ "Ex ec",
+ "an did",
+ "and id",
+ "▁bus iness",
+ "▁t empor",
+ "▁tem por",
+ "▁temp or",
+ "▁tempo r",
+ "▁T ur",
+ "▁Tu r",
+ "▁( !",
+ "▁ (!",
+ "ri ter",
+ "rit er",
+ "rite r",
+ "r iter",
+ "▁go ogle",
+ "▁goog le",
+ "▁ google",
+ "] :",
+ "it te",
+ "itt e",
+ "i tte",
+ "x i",
+ "▁П а",
+ "ho l",
+ "h ol",
+ "н ь",
+ "ri ng",
+ "rin g",
+ "r ing",
+ "▁s ul",
+ "▁su l",
+ "но сти",
+ "ност и",
+ "нос ти",
+ "_ .",
+ "ga r",
+ "g ar",
+ "T ask",
+ "▁C heck",
+ "▁Che ck",
+ "▁ Check",
+ "▁mod ern",
+ "▁mo dern",
+ "▁mode rn",
+ "▁moder n",
+ "▁w in",
+ "▁ win",
+ "us ter",
+ "ust er",
+ "u ster",
+ "ha n",
+ "h an",
+ "form ation",
+ "format ion",
+ "vo id",
+ "v oid",
+ "▁ф и",
+ "▁ фи",
+ "▁use ful",
+ "▁Eng land",
+ "lo s",
+ "l os",
+ "et ime",
+ "eti me",
+ "e time",
+ "eu r",
+ "e ur",
+ "▁un ique",
+ "▁uniqu e",
+ "▁ unique",
+ "▁ка к",
+ "yi ng",
+ "y ing",
+ "ob j",
+ "ui d",
+ "u id",
+ "▁w indows",
+ "▁window s",
+ "▁wind ows",
+ "▁ windows",
+ "▁d istance",
+ "▁dist ance",
+ "▁ distance",
+ "▁nom bre",
+ "▁nombr e",
+ "і я",
+ "oc us",
+ "o cus",
+ "ah n",
+ "a hn",
+ "ier te",
+ "iert e",
+ "i erte",
+ "▁d ar",
+ "▁da r",
+ "▁ dar",
+ "S I",
+ "lo ng",
+ "lon g",
+ "l ong",
+ "as ta",
+ "ast a",
+ "a sta",
+ "iv en",
+ "ive n",
+ "i ven",
+ "▁t old",
+ "▁to ld",
+ "▁G ru",
+ "▁Gr u",
+ "fo o",
+ "f oo",
+ "▁c alling",
+ "▁cal ling",
+ "▁call ing",
+ "iem bre",
+ "i embre",
+ "▁f uture",
+ "▁fut ure",
+ "pr ès",
+ "p rès",
+ "le ep",
+ "lee p",
+ "avig ation",
+ "PO ST",
+ "POS T",
+ "P OST",
+ "▁des cribed",
+ "▁descri bed",
+ "▁describe d",
+ "▁n och",
+ "▁no ch",
+ "un it",
+ "uni t",
+ "u nit",
+ "al len",
+ "all en",
+ "alle n",
+ "▁b ranch",
+ "▁br anch",
+ "▁bran ch",
+ "▁ branch",
+ "f a",
+ "▁f ill",
+ "▁fil l",
+ "▁fi ll",
+ "▁ fill",
+ "▁ob j",
+ "▁ obj",
+ "▁t ree",
+ "▁tr ee",
+ "▁tre e",
+ "▁ tree",
+ "▁wur den",
+ "▁wurde n",
+ "▁L iter",
+ "▁Li ter",
+ "▁Lit er",
+ "▁ Liter",
+ "ro t",
+ "r ot",
+ "sp lit",
+ "spl it",
+ "s plit",
+ "em ein",
+ "eme in",
+ "mod ule",
+ "C A",
+ "▁oper ator",
+ "▁opera tor",
+ "▁ operator",
+ "▁w rote",
+ "▁wr ote",
+ "▁J ack",
+ "▁Jac k",
+ "▁Ja ck",
+ "▁ Jack",
+ "olog ie",
+ "olo gie",
+ "▁A nt",
+ "▁An t",
+ "▁ Ant",
+ "те р",
+ "т ер",
+ "st ream",
+ "stre am",
+ "▁Q ue",
+ "▁Qu e",
+ "▁ Que",
+ "eps ilon",
+ "e psilon",
+ "no n",
+ "n on",
+ "st ein",
+ "ste in",
+ "▁s impl",
+ "▁sim pl",
+ "▁simp l",
+ "pu b",
+ "p ub",
+ "▁J uly",
+ "▁Jul y",
+ "▁Ju ly",
+ "▁n ature",
+ "▁natur e",
+ "▁nat ure",
+ "▁D atabase",
+ "▁Data base",
+ "▁Dat abase",
+ "▁ Database",
+ "ó l",
+ "ни м",
+ "н им",
+ "▁V I",
+ "▁ VI",
+ "êt re",
+ "ê tre",
+ "il es",
+ "ile s",
+ "i les",
+ "▁w el",
+ "▁we l",
+ "▁ wel",
+ "') ,",
+ "' ),",
+ "▁m ut",
+ "▁mu t",
+ "▁ mut",
+ "lo cation",
+ "loc ation",
+ "l ocation",
+ "▁there fore",
+ "el li",
+ "ell i",
+ "▁ І",
+ "n é",
+ "▁а в",
+ "led ge",
+ "l edge",
+ "▁con ver",
+ "▁conv er",
+ "í m",
+ "▁X V",
+ "▁ XV",
+ "vi der",
+ "vid er",
+ "v ider",
+ "▁Janu ary",
+ "▁Januar y",
+ "▁us ually",
+ "▁usual ly",
+ "▁re leased",
+ "▁release d",
+ "▁M i",
+ "He ad",
+ "H ead",
+ "il ler",
+ "ill er",
+ "ille r",
+ "▁j an",
+ "▁ja n",
+ "▁ jan",
+ "▁l etter",
+ "▁let ter",
+ "▁lett er",
+ "▁ letter",
+ "pr odu",
+ "pro du",
+ "prod u",
+ "p rodu",
+ "r d",
+ "▁C am",
+ "▁Ca m",
+ "▁ Cam",
+ ", '",
+ "▁ Ц",
+ "▁p ush",
+ "▁pu sh",
+ "▁ push",
+ "up date",
+ "▁may be",
+ "▁ maybe",
+ "H ttp",
+ "@ \"",
+ "ме р",
+ "м ер",
+ "ser vice",
+ "serv ice",
+ "par se",
+ "p arse",
+ "▁d ass",
+ "▁da ss",
+ "▁das s",
+ "ê n",
+ ") \"",
+ "mo re",
+ "mor e",
+ "m ore",
+ "/ *",
+ "▁m as",
+ "▁ma s",
+ "▁ mas",
+ "▁like ly",
+ "▁lik ely",
+ "▁ likely",
+ "▁m aterial",
+ "▁mate rial",
+ "▁mater ial",
+ "▁ material",
+ "▁[ [",
+ "▁ [[",
+ "▁long er",
+ "▁lon ger",
+ "ba l",
+ "b al",
+ "▁Arch iv",
+ "ig t",
+ "i gt",
+ "▁e gy",
+ "▁eg y",
+ "▁ egy",
+ "id ge",
+ "ig u",
+ "i gu",
+ "con f",
+ "▁in c",
+ "▁i nc",
+ "▁ inc",
+ "cons ulté",
+ "▁m ai",
+ "▁ma i",
+ "▁ mai",
+ "W ork",
+ "▁г ра",
+ "▁ гра",
+ "▁Oct ober",
+ "▁g lobal",
+ "▁glob al",
+ "▁glo bal",
+ "▁ global",
+ "▁s el",
+ "▁se l",
+ "▁ sel",
+ "▁m unicip",
+ "▁vi ol",
+ "▁vio l",
+ "▁Do es",
+ "▁ Does",
+ "▁\\ [",
+ "ско м",
+ "ск ом",
+ "с ком",
+ "▁com pos",
+ "▁comp os",
+ "▁ compos",
+ "б ря",
+ "в я",
+ "▁resp ons",
+ "▁ respons",
+ "▁consider ed",
+ "▁consid ered",
+ "▁J apan",
+ "▁Jap an",
+ "▁Ja pan",
+ "pe s",
+ "p es",
+ "os to",
+ "ost o",
+ "o sto",
+ "▁mil it",
+ "▁mi lit",
+ "S P",
+ "с ы",
+ "at tr",
+ "att r",
+ "ci l",
+ "c il",
+ "irect ory",
+ "av ing",
+ "avi ng",
+ "a ving",
+ "▁D el",
+ "▁De l",
+ "▁ Del",
+ "▁pr event",
+ "▁pre vent",
+ "▁prev ent",
+ "▁ prevent",
+ "id ade",
+ "ida de",
+ "idad e",
+ "i dade",
+ "gi t",
+ "g it",
+ "if orm",
+ "i form",
+ "ou ter",
+ "out er",
+ "oute r",
+ "o uter",
+ "in ct",
+ "inc t",
+ "le vel",
+ "lev el",
+ "at ever",
+ "ate ver",
+ "▁re pe",
+ "▁rep e",
+ "▁e xc",
+ "▁ex c",
+ "да р",
+ "д ар",
+ "St yle",
+ "▁Th omas",
+ "▁Thom as",
+ "el ine",
+ "eli ne",
+ "elin e",
+ "e line",
+ "▁ ж",
+ "un time",
+ "unt ime",
+ "▁l arg",
+ "▁la rg",
+ "▁lar g",
+ "▁ larg",
+ "Tr ue",
+ ". *",
+ "cre en",
+ "cr een",
+ "c reen",
+ "yle s",
+ "yl es",
+ "y les",
+ "▁trans l",
+ "▁tran sl",
+ "▁С о",
+ "ens ions",
+ "ension s",
+ "ä l",
+ "is se",
+ "iss e",
+ "▁v olt",
+ "▁vo lt",
+ "▁vol t",
+ "ci ally",
+ "cial ly",
+ "ni k",
+ "n ik",
+ ". ]",
+ "▁St adt",
+ "▁Sta dt",
+ "▁Stad t",
+ "м ы",
+ "fil l",
+ "fi ll",
+ "f ill",
+ "lo v",
+ "l ov",
+ "▁\" /",
+ "▁ \"/",
+ "S p",
+ "▁A ir",
+ "Cal l",
+ "Ca ll",
+ "C all",
+ "▁n ur",
+ "▁nu r",
+ "Che ck",
+ "C heck",
+ "ien ce",
+ "i ence",
+ "ef ined",
+ "▁в ре",
+ "ł o",
+ "d z",
+ "▁о р",
+ "▁ ор",
+ "ik er",
+ "ike r",
+ "i ker",
+ "ow a",
+ "o wa",
+ "ови ч",
+ "о вич",
+ "r é",
+ "O L",
+ "▁li near",
+ "▁line ar",
+ "▁lin ear",
+ "▁linea r",
+ "▁ linear",
+ "▁ex port",
+ "▁exp ort",
+ "▁ export",
+ "ah r",
+ "a hr",
+ "ic ial",
+ "ici al",
+ "icia l",
+ "i cial",
+ "Re p",
+ "R ep",
+ "▁n atural",
+ "▁natur al",
+ "▁nat ural",
+ "▁ natural",
+ "▁c op",
+ "▁co p",
+ "▁ cop",
+ "▁} )",
+ "▁ })",
+ "ç ões",
+ "z z",
+ "Wh at",
+ "W hat",
+ "▁H ouse",
+ "▁Ho use",
+ "▁Hou se",
+ "Re f",
+ "R ef",
+ "in ger",
+ "ing er",
+ "inge r",
+ "▁t aking",
+ "▁tak ing",
+ "▁ta king",
+ "n ě",
+ "▁Ein z",
+ "▁d am",
+ "▁da m",
+ "▁ dam",
+ "▁iss ues",
+ "▁issue s",
+ "▁issu es",
+ "▁ issues",
+ "Bu ilder",
+ "Build er",
+ "ed it",
+ "edi t",
+ "e dit",
+ "▁p rz",
+ "▁pr z",
+ "pass word",
+ "Ge ner",
+ "Gen er",
+ "G ener",
+ "ri m",
+ "r im",
+ "▁p arts",
+ "▁par ts",
+ "▁part s",
+ "▁ parts",
+ "-- -",
+ "- --",
+ "ig inal",
+ "igin al",
+ "igi nal",
+ "▁S ci",
+ "▁Sc i",
+ "▁m other",
+ "▁mo ther",
+ "▁mot her",
+ "▁moth er",
+ "re a",
+ "r ea",
+ "▁cont ainer",
+ "▁contain er",
+ "▁ container",
+ "д я",
+ "▁I P",
+ "▁ IP",
+ "▁n one",
+ "▁no ne",
+ "▁non e",
+ "▁ none",
+ "▁follow ed",
+ "▁p le",
+ "▁pl e",
+ "▁ ple",
+ "▁me asure",
+ "▁meas ure",
+ "▁ measure",
+ "▁t out",
+ "▁to ut",
+ "▁tou t",
+ "▁ tout",
+ "Ex t",
+ "E xt",
+ "▁T V",
+ "▁ TV",
+ "▁ex plain",
+ "▁exp lain",
+ "▁expla in",
+ "▁expl ain",
+ "▁p aper",
+ "▁pa per",
+ "▁pap er",
+ "▁ paper",
+ "ст і",
+ "с ті",
+ "w s",
+ "W ik",
+ "▁m m",
+ "▁ mm",
+ "▁N orm",
+ "▁No rm",
+ "▁Nor m",
+ "▁Ser ver",
+ "▁Serv er",
+ "▁ Server",
+ "fo nt",
+ "fon t",
+ "f ont",
+ "ec ause",
+ "eca use",
+ "T R",
+ "▁б и",
+ "▁ би",
+ "L a",
+ "▁e ns",
+ "▁en s",
+ "▁ ens",
+ "▁re tr",
+ "▁r etr",
+ "▁ret r",
+ "▁S il",
+ "▁Si l",
+ "▁ Sil",
+ "▁se quence",
+ "▁sequ ence",
+ "▁ sequence",
+ "ar c",
+ "a rc",
+ "I V",
+ "z á",
+ "▁And roid",
+ "▁ Android",
+ "▁S uper",
+ "▁Su per",
+ "▁Sup er",
+ "▁ Super",
+ "▁r oz",
+ "▁ro z",
+ "▁ roz",
+ "ov ie",
+ "ovi e",
+ "o vie",
+ "O m",
+ "▁W ell",
+ "▁We ll",
+ "▁Wel l",
+ "▁ Well",
+ "ma ke",
+ "m ake",
+ "or ph",
+ "orp h",
+ "▁J er",
+ "▁Je r",
+ "▁R os",
+ "▁Ro s",
+ "re ference",
+ "refer ence",
+ "▁fe atures",
+ "▁feature s",
+ "▁ features",
+ "▁G er",
+ "▁Ge r",
+ "▁L eg",
+ "▁Le g",
+ "▁ Leg",
+ "▁l ate",
+ "▁la te",
+ "▁lat e",
+ "▁ late",
+ "▁add itional",
+ "▁addition al",
+ "▁f lo",
+ "▁fl o",
+ "▁е го",
+ "▁ его",
+ "▁alg orithm",
+ "▁ algorithm",
+ "B A",
+ "ka r",
+ "k ar",
+ "I P",
+ "]) ;",
+ "] );",
+ "▁app ears",
+ "▁appear s",
+ "▁appe ars",
+ "y w",
+ "▁t emp",
+ "▁te mp",
+ "▁tem p",
+ "▁ temp",
+ "▁aus si",
+ "met hod",
+ "m ethod",
+ "▁p et",
+ "▁pe t",
+ "▁ pet",
+ "st rap",
+ "str ap",
+ "stra p",
+ "ar ning",
+ "arn ing",
+ "▁c ut",
+ "▁cu t",
+ "▁ cut",
+ "▁S a",
+ "▁ Sa",
+ "▁t rack",
+ "▁tr ack",
+ "▁tra ck",
+ "▁trac k",
+ "▁ track",
+ "▁emp loy",
+ "▁in de",
+ "▁i nde",
+ "▁ind e",
+ "▁ inde",
+ "ra v",
+ "r av",
+ "▁gener ate",
+ "▁gene rate",
+ "▁ generate",
+ "be s",
+ "b es",
+ "ar ts",
+ "art s",
+ "St atus",
+ "Stat us",
+ "ug e",
+ "u ge",
+ "al is",
+ "ali s",
+ "a lis",
+ "▁over ride",
+ "▁overrid e",
+ "▁ override",
+ "▁f i",
+ "▁ fi",
+ "▁l ost",
+ "▁lo st",
+ "▁los t",
+ "▁ lost",
+ "ot ed",
+ "ote d",
+ "o ted",
+ "▁r oom",
+ "▁ro om",
+ "▁ room",
+ "▁c alls",
+ "▁cal ls",
+ "▁call s",
+ "▁cons ist",
+ "ре н",
+ "р ен",
+ "▁vill age",
+ "▁vil lage",
+ "▁villa ge",
+ "dis t",
+ "di st",
+ "d ist",
+ "▁te chn",
+ "▁tec hn",
+ "▁ techn",
+ "en za",
+ "enz a",
+ "▁ро з",
+ "▁р оз",
+ "▁ роз",
+ "▁C atalog",
+ "▁Cat alog",
+ "▁Catal og",
+ "▁be com",
+ "▁bec om",
+ "ro ws",
+ "row s",
+ "r ows",
+ "▁N el",
+ "▁Ne l",
+ "com ple",
+ "comp le",
+ "▁pr emi",
+ "▁pre mi",
+ "▁prem i",
+ "▁r ot",
+ "▁ro t",
+ "▁ rot",
+ "▁Web links",
+ "▁foot ball",
+ "▁ football",
+ "▁com par",
+ "▁comp ar",
+ "▁l ive",
+ "▁li ve",
+ "▁liv e",
+ "▁ live",
+ "ки х",
+ "к их",
+ "▁equ ival",
+ "ca pe",
+ "cap e",
+ "c ape",
+ "▁G en",
+ "▁Ge n",
+ "▁ Gen",
+ "nd er",
+ "nde r",
+ "n der",
+ "▁V is",
+ "▁Vi s",
+ "▁ Vis",
+ "▁be hind",
+ "▁beh ind",
+ "ge rs",
+ "ger s",
+ "g ers",
+ "vo ke",
+ "v oke",
+ "▁m edia",
+ "▁me dia",
+ "▁med ia",
+ "▁medi a",
+ "▁ media",
+ "E X",
+ "th at",
+ "tha t",
+ "t hat",
+ "▁s ono",
+ "▁so no",
+ "▁son o",
+ "▁ sono",
+ "▁my sql",
+ "▁mysq l",
+ "▁ mysql",
+ "e v",
+ "▁r ule",
+ "▁ru le",
+ "▁ rule",
+ "до в",
+ "д ов",
+ "ac c",
+ "a cc",
+ "▁W HERE",
+ "▁WH ERE",
+ "▁ WHERE",
+ "ен е",
+ "е не",
+ "Gr id",
+ "G rid",
+ "▁j ul",
+ "▁ju l",
+ "▁m ort",
+ "▁mo rt",
+ "▁mor t",
+ "▁ mort",
+ "▁gener ated",
+ "▁generate d",
+ "▁ generated",
+ "en cia",
+ "enc ia",
+ "enci a",
+ "ac ter",
+ "act er",
+ "cl ud",
+ "▁s cen",
+ "▁sc en",
+ "▁cl osed",
+ "▁close d",
+ "▁clos ed",
+ "▁clo sed",
+ "▁ closed",
+ "▁Mich ael",
+ "▁ Michael",
+ "▁m ount",
+ "▁mo unt",
+ "▁mou nt",
+ "▁ mount",
+ ")$ ,",
+ ") $,",
+ "▁d rop",
+ "▁dr op",
+ "▁dro p",
+ "▁ drop",
+ "▁com bin",
+ "▁comb in",
+ "to col",
+ "▁go es",
+ "▁g eb",
+ "▁ge b",
+ "▁ geb",
+ "M D",
+ "▁An ton",
+ "▁Ant on",
+ "▁Anto n",
+ "▁$ (\"",
+ "▁$( \"",
+ "Te m",
+ "T em",
+ "▁c a",
+ "▁ ca",
+ "▁in stru",
+ "▁inst ru",
+ "ed s",
+ "e ds",
+ "▁t ool",
+ "▁to ol",
+ "▁too l",
+ "▁ tool",
+ "my s",
+ "m ys",
+ "▁r oute",
+ "▁ro ute",
+ "▁rout e",
+ "▁rou te",
+ "▁ route",
+ "\") )",
+ "\" ))",
+ "пр е",
+ "п ре",
+ "▁f loat",
+ "▁flo at",
+ "▁ float",
+ "▁service s",
+ "▁serv ices",
+ "▁servi ces",
+ "▁ services",
+ "▁ч и",
+ "▁ чи",
+ "к і",
+ "emb ly",
+ "embl y",
+ "ak er",
+ "ake r",
+ "a ker",
+ "▁S on",
+ "▁So n",
+ "▁M ath",
+ "▁Ma th",
+ "▁Mat h",
+ "▁ Math",
+ "as se",
+ "ass e",
+ "ous ly",
+ "lic ations",
+ "lication s",
+ "▁r u",
+ "▁ ru",
+ "▁щ о",
+ "▁ що",
+ "▁Con st",
+ "▁Cons t",
+ "▁ Const",
+ "▁im medi",
+ "▁imm edi",
+ "F O",
+ "or o",
+ "o ro",
+ "▁p roduction",
+ "▁produ ction",
+ "▁product ion",
+ "▁ production",
+ "re i",
+ "r ei",
+ "▁j query",
+ "▁ jquery",
+ "an nt",
+ "ann t",
+ "▁Wh ile",
+ "▁s n",
+ "▁ sn",
+ "▁го ди",
+ "▁год и",
+ "Form at",
+ "For mat",
+ "▁s tar",
+ "▁st ar",
+ "▁sta r",
+ "▁ star",
+ "▁S en",
+ "▁Se n",
+ "▁k o",
+ "▁ ko",
+ "NA ME",
+ "N AME",
+ "▁p rés",
+ "▁pr és",
+ "▁pré s",
+ "▁ prés",
+ "ch a",
+ "c ha",
+ "wh at",
+ "w hat",
+ "om in",
+ "omi n",
+ "o min",
+ "end ant",
+ "enda nt",
+ "h y",
+ "▁ob serv",
+ "▁obser v",
+ "▁obs erv",
+ "▁ observ",
+ "▁p refer",
+ "▁pre fer",
+ "у н",
+ "▁con structor",
+ "▁construct or",
+ "▁constru ctor",
+ "▁ constructor",
+ "b s",
+ "▁m ac",
+ "▁ma c",
+ "▁ mac",
+ "▁B re",
+ "▁Br e",
+ "▁ Bre",
+ "▁Inst it",
+ "▁Ins tit",
+ "▁st ory",
+ "▁stor y",
+ "▁sto ry",
+ "▁ story",
+ "▁s ymbol",
+ "▁sym bol",
+ "▁ symbol",
+ "el es",
+ "ele s",
+ "e les",
+ "ß e",
+ "as ing",
+ "asi ng",
+ "a sing",
+ "▁w est",
+ "▁we st",
+ "▁ west",
+ "ia ns",
+ "ian s",
+ "i ans",
+ "▁m aster",
+ "▁ma ster",
+ "▁mas ter",
+ "▁ master",
+ "е з",
+ "▁w ays",
+ "▁way s",
+ "▁wa ys",
+ "▁ ways",
+ "b m",
+ "▁p ick",
+ "▁pi ck",
+ "▁pic k",
+ "▁ pick",
+ "▁de part",
+ "▁dep art",
+ "B ack",
+ "en k",
+ "li pse",
+ "lip se",
+ "▁m ath",
+ "▁ma th",
+ "▁mat h",
+ "▁ math",
+ "▁Fran cis",
+ "▁Franc is",
+ "▁Dec ember",
+ "f s",
+ "ru m",
+ "r um",
+ "▁develop ment",
+ "▁ development",
+ "L T",
+ "er nel",
+ "ern el",
+ "erne l",
+ "▁Tr ue",
+ "▁Tru e",
+ "▁ True",
+ "▁M ore",
+ "▁Mor e",
+ "▁Mo re",
+ "▁ More",
+ "ran gle",
+ "r angle",
+ "▁cond itions",
+ "▁condition s",
+ "Option s",
+ "Opt ions",
+ "O ptions",
+ "▁g li",
+ "▁gl i",
+ "▁oper ation",
+ "▁opera tion",
+ "▁ operation",
+ "é k",
+ "ach t",
+ "ac ht",
+ "a cht",
+ "ight s",
+ "igh ts",
+ "▁m ist",
+ "▁mi st",
+ "▁mis t",
+ "an da",
+ "and a",
+ "▁ener gy",
+ "▁energ y",
+ "▁ energy",
+ "▁ж е",
+ "▁ же",
+ "▁w omen",
+ "▁wo men",
+ "ak t",
+ "a kt",
+ "▁C H",
+ "▁ CH",
+ "ge bra",
+ "geb ra",
+ "▁me et",
+ "i u",
+ "we ll",
+ "wel l",
+ "w ell",
+ "ö l",
+ "▁govern ment",
+ "▁J os",
+ "▁Jo s",
+ "ie g",
+ "i eg",
+ "▁s yntax",
+ "▁syn tax",
+ "▁ syntax",
+ "fi x",
+ "f ix",
+ "▁P et",
+ "▁Pe t",
+ "j query",
+ "▁c ard",
+ "▁car d",
+ "▁ca rd",
+ "▁ card",
+ "▁pr incipal",
+ "▁princi pal",
+ "▁princip al",
+ "▁d ru",
+ "▁dr u",
+ "▁ dru",
+ "▁ter rit",
+ "▁п ов",
+ "▁по в",
+ "▁ пов",
+ "▁S S",
+ "▁ SS",
+ "ри и",
+ "tr es",
+ "tre s",
+ "t res",
+ "ag ne",
+ "agn e",
+ "ly ing",
+ "l ying",
+ "til de",
+ "t ilde",
+ "ber n",
+ "be rn",
+ "b ern",
+ "en ter",
+ "ent er",
+ "ente r",
+ "Pe r",
+ "P er",
+ "▁s omet",
+ "▁so met",
+ "▁some t",
+ "▁som et",
+ "Lo ad",
+ "li ce",
+ "lic e",
+ "l ice",
+ "▁s ous",
+ "▁so us",
+ "▁sou s",
+ "▁Lo uis",
+ "▁Lou is",
+ "▁ Louis",
+ "▁log ic",
+ "▁ logic",
+ "▁O ther",
+ "▁Ot her",
+ "▁ Other",
+ "▁c ir",
+ "▁ci r",
+ "▁ cir",
+ "é v",
+ "ch ron",
+ "chr on",
+ "▁h an",
+ "▁ha n",
+ "▁ han",
+ "▁m argin",
+ "▁mar gin",
+ "▁marg in",
+ "▁ margin",
+ "W indow",
+ "ère s",
+ "è res",
+ "ny ch",
+ "n ych",
+ "pu sh",
+ "pus h",
+ "p ush",
+ "bol ds",
+ "bold s",
+ "b olds",
+ "▁l ayout",
+ "▁lay out",
+ "▁ layout",
+ "▁[ `",
+ "Ch ar",
+ "C har",
+ "▁C ap",
+ "▁Ca p",
+ "▁ Cap",
+ "bolds ymbol",
+ "bold symbol",
+ "▁R oman",
+ "▁Ro man",
+ "▁Rom an",
+ "▁Roma n",
+ "▁M ax",
+ "▁Ma x",
+ "▁ Max",
+ ": (",
+ "▁C ode",
+ "▁Co de",
+ "▁ Code",
+ "is ing",
+ "isi ng",
+ "i sing",
+ "▁st ates",
+ "▁stat es",
+ "▁state s",
+ "▁sta tes",
+ "▁ states",
+ "▁ex isting",
+ "▁exist ing",
+ "su pport",
+ "sup port",
+ "supp ort",
+ "▁re search",
+ "▁res earch",
+ "lic ate",
+ "lica te",
+ "l icate",
+ "va ri",
+ "var i",
+ "v ari",
+ "▁b ij",
+ "▁bi j",
+ "▁ bij",
+ "▁a ppe",
+ "▁app e",
+ "▁ap pe",
+ "▁ appe",
+ "▁happ ens",
+ "▁happen s",
+ "\\ \"",
+ "▁conc ern",
+ "▁conce rn",
+ "we st",
+ "w est",
+ "▁sa ying",
+ "▁say ing",
+ "pi d",
+ "p id",
+ "▁rec ogn",
+ "▁ recogn",
+ "▁H et",
+ "▁He t",
+ "Ch ild",
+ "▁c s",
+ "▁ cs",
+ "\\ ,",
+ "▁c lean",
+ "▁cle an",
+ "▁ clean",
+ "le ctions",
+ "lect ions",
+ "lection s",
+ "ac cess",
+ "acc ess",
+ "a ccess",
+ "в у",
+ "пр о",
+ "п ро",
+ "ac ity",
+ "aci ty",
+ "a city",
+ "▁O ff",
+ "▁Of f",
+ "▁ Off",
+ "▁eas ily",
+ "è que",
+ "▁j ako",
+ "▁ja ko",
+ "▁jak o",
+ "▁i z",
+ "▁ iz",
+ "▁H a",
+ "▁ Ha",
+ "▁D et",
+ "▁De t",
+ "▁ Det",
+ "▁for ma",
+ "▁form a",
+ "sch e",
+ "sc he",
+ "s che",
+ "swer s",
+ "sw ers",
+ "s wers",
+ "▁of fer",
+ "▁off er",
+ "qu ired",
+ "quire d",
+ "qui red",
+ "User s",
+ "Use rs",
+ "Us ers",
+ "U sers",
+ "▁su bst",
+ "▁sub st",
+ "▁subs t",
+ "▁ subst",
+ "> (",
+ "▁g round",
+ "▁gr ound",
+ "▁gro und",
+ "▁ ground",
+ "un n",
+ "u nn",
+ "ro d",
+ "r od",
+ "sp e",
+ "s pe",
+ "urs or",
+ "▁le ave",
+ "er k",
+ "▁t al",
+ "▁ta l",
+ "▁ tal",
+ "▁b ottom",
+ "▁bot tom",
+ "▁bott om",
+ "▁ bottom",
+ "I O",
+ "▁pop ular",
+ "▁popula r",
+ "▁popul ar",
+ "ig o",
+ "i go",
+ "▁T ime",
+ "▁Tim e",
+ "▁Ti me",
+ "▁ Time",
+ "val ues",
+ "value s",
+ "valu es",
+ "▁L oc",
+ "▁Lo c",
+ "▁ Loc",
+ "▁C lub",
+ "▁Cl ub",
+ "▁an che",
+ "▁anc he",
+ "▁anch e",
+ "▁ anche",
+ "ia ł",
+ "i ał",
+ "і ї",
+ "Om ega",
+ "▁loc ated",
+ "▁locate d",
+ "▁ located",
+ "U rl",
+ "▁E sp",
+ "▁Es p",
+ "▁ Esp",
+ "л ы",
+ "ц ь",
+ "ul ate",
+ "ula te",
+ "u late",
+ "▁j oin",
+ "▁jo in",
+ "▁ join",
+ "av es",
+ "ave s",
+ "a ves",
+ "ve t",
+ "v et",
+ "li o",
+ "l io",
+ "re move",
+ "rem ove",
+ "▁t oken",
+ "▁to ken",
+ "▁ token",
+ "▁op tim",
+ "▁opt im",
+ "▁ optim",
+ "▁c laim",
+ "▁cla im",
+ "olog ical",
+ "▁c ss",
+ "▁cs s",
+ "▁ css",
+ "▁al though",
+ "▁ although",
+ "▁p riv",
+ "▁pr iv",
+ "▁pri v",
+ "▁ priv",
+ "▁B a",
+ "ü l",
+ "entic ation",
+ "enti cation",
+ "▁v en",
+ "▁ve n",
+ "▁ ven",
+ "Ser ver",
+ "Serv er",
+ "▁C ong",
+ "▁Con g",
+ "▁Co ng",
+ "NE T",
+ "N ET",
+ "CO N",
+ "C ON",
+ "d t",
+ "per ties",
+ "pert ies",
+ "▁e pis",
+ "▁ep is",
+ "wik ipedia",
+ "▁eng ine",
+ "▁ engine",
+ "▁f er",
+ "▁fe r",
+ "▁ fer",
+ "get Element",
+ "▁C la",
+ "▁Cl a",
+ "▁ Cla",
+ "ř í",
+ "▁r om",
+ "▁ro m",
+ "▁ rom",
+ "var epsilon",
+ "vare psilon",
+ "▁pr ime",
+ "▁prim e",
+ "▁pri me",
+ "▁ prime",
+ "is try",
+ "ist ry",
+ "istr y",
+ "pe cted",
+ "pect ed",
+ "pec ted",
+ "p ected",
+ "or age",
+ "ora ge",
+ "o rage",
+ "▁t ouch",
+ "▁to uch",
+ "▁tou ch",
+ "▁ touch",
+ "▁[ '",
+ "▁ ['",
+ "▁d an",
+ "▁da n",
+ "▁ dan",
+ "E m",
+ "ac iones",
+ "acion es",
+ "aci ones",
+ "a ciones",
+ "Ca n",
+ "C an",
+ "▁w hom",
+ "▁wh om",
+ "▁who m",
+ "▁be havior",
+ "▁behav ior",
+ "▁str ings",
+ "▁string s",
+ "▁ strings",
+ "▁E urop",
+ "▁Euro p",
+ "▁Eu rop",
+ "▁Eur op",
+ "▁R om",
+ "▁Ro m",
+ "ci rc",
+ "cir c",
+ "c irc",
+ "▁p un",
+ "▁pu n",
+ "▁reg ister",
+ "▁ register",
+ "b untu",
+ "ra in",
+ "rai n",
+ "r ain",
+ "O b",
+ "T A",
+ "▁s ometimes",
+ "▁some times",
+ "▁somet imes",
+ "▁m ent",
+ "▁me nt",
+ "▁men t",
+ "▁ ment",
+ "▁in teger",
+ "▁inte ger",
+ "▁ integer",
+ "▁J ac",
+ "▁Ja c",
+ "▁ Jac",
+ "le gate",
+ "leg ate",
+ "ot hing",
+ "oth ing",
+ "o thing",
+ "▁s ound",
+ "▁so und",
+ "▁sou nd",
+ "▁ sound",
+ "la ces",
+ "lace s",
+ "lac es",
+ "l aces",
+ "▁Б а",
+ "r b",
+ "d i",
+ "ле ния",
+ "▁them selves",
+ "▁B lack",
+ "▁Bl ack",
+ "▁Bla ck",
+ "▁ Black",
+ "▁s ettings",
+ "▁sett ings",
+ "▁setting s",
+ "▁ settings",
+ "▁n orm",
+ "▁no rm",
+ "▁nor m",
+ "▁ norm",
+ "▁r uns",
+ "▁run s",
+ "▁ru ns",
+ "▁N OT",
+ "▁NO T",
+ "▁ NOT",
+ "K E",
+ "▁per haps",
+ "▁ Я",
+ "▁m ol",
+ "▁mo l",
+ "▁a ns",
+ "▁an s",
+ "▁ ans",
+ "at re",
+ "atr e",
+ "a tre",
+ "▁D ies",
+ "▁Die s",
+ "▁Di es",
+ "To ken",
+ "T oken",
+ "an ie",
+ "ani e",
+ "a nie",
+ "▁all owed",
+ "▁allow ed",
+ "▁allo wed",
+ "▁ allowed",
+ "R ange",
+ "▁G ro",
+ "▁Gr o",
+ "vi a",
+ "v ia",
+ "ut orial",
+ "uto rial",
+ "utor ial",
+ "ens or",
+ "enso r",
+ "est ival",
+ "esti val",
+ "); \r",
+ ") ;\r",
+ "кра ї",
+ "▁turn ed",
+ "▁tur ned",
+ "sc ope",
+ "scop e",
+ "s cope",
+ "▁b ien",
+ "▁bi en",
+ "= $",
+ "▁ext ension",
+ "▁extens ion",
+ "▁ extension",
+ "at ore",
+ "ator e",
+ "ato re",
+ "▁Р о",
+ "▁spec ify",
+ "ed u",
+ "e du",
+ "Dat os",
+ "D atos",
+ "▁st ored",
+ "▁stor ed",
+ "▁store d",
+ "▁sto red",
+ "▁p arse",
+ "▁par se",
+ "▁ parse",
+ "▁an swers",
+ "▁answer s",
+ "▁ans wers",
+ "il ls",
+ "ill s",
+ "▁he ard",
+ "▁hear d",
+ "l u",
+ "▁T HE",
+ "▁TH E",
+ "▁ THE",
+ "▁g én",
+ "▁gé n",
+ "▁f ul",
+ "▁fu l",
+ "▁ ful",
+ "e z",
+ "▁P rem",
+ "▁Pr em",
+ "▁Pre m",
+ "th en",
+ "the n",
+ "t hen",
+ "d p",
+ "сь кого",
+ "сько го",
+ "ськ ого",
+ "▁S i",
+ "▁ Si",
+ "ç o",
+ "Ed it",
+ "E dit",
+ "кі в",
+ "к ів",
+ "▁Л и",
+ "▁S ing",
+ "▁Si ng",
+ "▁Sin g",
+ "▁ Sing",
+ "▁c ateg",
+ "▁cat eg",
+ "Eq u",
+ "E qu",
+ "▁g uer",
+ "▁gu er",
+ "▁ guer",
+ "W idth",
+ "▁Christ ian",
+ "st at",
+ "sta t",
+ "s tat",
+ "W rite",
+ "▁w oman",
+ "▁wo man",
+ "wo od",
+ "w ood",
+ "V is",
+ "ра з",
+ "▁$ $\\",
+ "▁$$ \\",
+ "ode r",
+ "od er",
+ "o der",
+ "▁b ool",
+ "▁bo ol",
+ "▁ bool",
+ "▁intern ational",
+ "но сть",
+ "ност ь",
+ "нос ть",
+ "▁Rich ard",
+ "▁Ric hard",
+ "▁add ition",
+ "▁Mus ic",
+ "▁ Music",
+ "▁a ber",
+ "▁ab er",
+ "t ó",
+ "▁h ier",
+ "▁hi er",
+ "ug h",
+ "u gh",
+ "▁p ob",
+ "▁po b",
+ "▁t ables",
+ "▁table s",
+ "▁tab les",
+ "▁ta bles",
+ "▁ tables",
+ "D o",
+ "▁high er",
+ "ps i",
+ "p si",
+ "r á",
+ "▁act ive",
+ "▁activ e",
+ "▁ active",
+ "▁T able",
+ "▁Ta ble",
+ "▁Tab le",
+ "▁ Table",
+ "њ е",
+ "▁de scription",
+ "▁des cription",
+ "▁descri ption",
+ "▁descript ion",
+ "▁ description",
+ "▁se emed",
+ "▁see med",
+ "▁seem ed",
+ "ís t",
+ "í st",
+ "▁my self",
+ "▁m enu",
+ "▁me nu",
+ "▁men u",
+ "▁ menu",
+ "de l",
+ "d el",
+ "▁ ž",
+ "el e",
+ "e le",
+ "A ut",
+ "▁г ру",
+ "mu t",
+ "m ut",
+ "oo n",
+ "o on",
+ "as c",
+ "a sc",
+ "bu g",
+ "b ug",
+ "▁m oved",
+ "▁mov ed",
+ "▁mo ved",
+ "▁move d",
+ "C L",
+ "▁data s",
+ "▁dat as",
+ "▁ datas",
+ "S O",
+ "о ло",
+ "▁Ge org",
+ "▁re ach",
+ "▁r each",
+ ": \"",
+ "▁e valu",
+ "▁ev alu",
+ "▁eval u",
+ "▁ evalu",
+ "▁H el",
+ "▁He l",
+ "▁ Hel",
+ "▁R iver",
+ "▁Riv er",
+ "▁Ri ver",
+ "▁А р",
+ "▁ Ар",
+ "// //",
+ "/// /",
+ "/ ///",
+ "▁s ets",
+ "▁se ts",
+ "▁set s",
+ "▁ sets",
+ "▁O lymp",
+ "Ad apter",
+ ". '",
+ "ov ern",
+ "over n",
+ "ove rn",
+ "o vern",
+ "▁L ord",
+ "▁Lo rd",
+ "▁Lor d",
+ "! --",
+ "jp g",
+ "j pg",
+ "im ento",
+ "iment o",
+ "imen to",
+ "▁Pro f",
+ "▁Pr of",
+ "▁ach ieve",
+ "▁achiev e",
+ "} :",
+ "▁in cor",
+ "▁inc or",
+ "▁o nder",
+ "▁on der",
+ "▁onde r",
+ "▁ onder",
+ "en gl",
+ "eng l",
+ "AB LE",
+ "▁M ary",
+ "▁Mar y",
+ "▁Ma ry",
+ "▁w aren",
+ "▁war en",
+ "▁wa ren",
+ "la ge",
+ "lag e",
+ "l age",
+ "De c",
+ "D ec",
+ "анг л",
+ "en cias",
+ "enc ias",
+ "encia s",
+ "enci as",
+ "ле й",
+ "л ей",
+ "▁M achine",
+ "▁Mach ine",
+ "▁ Machine",
+ "▁А н",
+ "ud a",
+ "u da",
+ "▁ ś",
+ "▁X X",
+ "▁ XX",
+ "on ly",
+ "ле ние",
+ "▁tamb ién",
+ "ne j",
+ "n ej",
+ "▁rel ative",
+ "▁relativ e",
+ "▁ relative",
+ "▁h ours",
+ "▁ho urs",
+ "▁hour s",
+ "▁ind eed",
+ "▁inde ed",
+ "un do",
+ "und o",
+ "in gu",
+ "ing u",
+ "ar ea",
+ "are a",
+ "a rea",
+ "▁C reate",
+ "▁Cre ate",
+ "▁ Create",
+ "be it",
+ "bei t",
+ "▁rem oved",
+ "▁remove d",
+ "▁remov ed",
+ "ma ster",
+ "mas ter",
+ "maste r",
+ "m aster",
+ "ha us",
+ "h aus",
+ "▁B ern",
+ "▁Be rn",
+ "▁Ber n",
+ "▁sp eed",
+ "▁spe ed",
+ "▁ speed",
+ "▁B ay",
+ "▁Ba y",
+ "▁A tt",
+ "▁At t",
+ "▁ Att",
+ "▁N one",
+ "▁No ne",
+ "▁Non e",
+ "▁ None",
+ "app lication",
+ "ü d",
+ "▁f it",
+ "▁fi t",
+ "▁ fit",
+ "▁M aria",
+ "▁Mar ia",
+ "▁Ma ria",
+ "▁Mari a",
+ "▁n ord",
+ "▁no rd",
+ "▁nor d",
+ "▁s plit",
+ "▁sp lit",
+ "▁spl it",
+ "▁ split",
+ "▁st ru",
+ "▁str u",
+ "▁ stru",
+ "▁o fficial",
+ "▁off icial",
+ "▁offic ial",
+ "▁offici al",
+ "▁exec ute",
+ "▁execut e",
+ "▁ execute",
+ "ou ve",
+ "ouv e",
+ "o uve",
+ "{ {",
+ "▁A p",
+ "▁ Ap",
+ "▁к у",
+ "▁ ку",
+ "I L",
+ "▁ ^",
+ "di m",
+ "d im",
+ "▁set up",
+ "▁ setup",
+ "с к",
+ "▁sh are",
+ "▁ share",
+ "▁min utes",
+ "▁minute s",
+ "gl e",
+ "g le",
+ "oc o",
+ "o co",
+ "st ell",
+ "ste ll",
+ "▁C oun",
+ "▁Co un",
+ "▁Cou n",
+ "▁tem per",
+ "▁temp er",
+ "▁ temper",
+ "ke it",
+ "сь кий",
+ "a o",
+ "▁L ong",
+ "▁Lo ng",
+ "▁ Long",
+ "( &",
+ "ка н",
+ "к ан",
+ "▁d ens",
+ "▁de ns",
+ "▁den s",
+ "▁ dens",
+ "Bu t",
+ "B ut",
+ "X X",
+ "DA TE",
+ "DAT E",
+ "D ATE",
+ "ga n",
+ "g an",
+ ".) .",
+ ". ).",
+ "▁en try",
+ "▁ent ry",
+ "▁entr y",
+ "▁ entry",
+ "inst all",
+ "▁з на",
+ "▁ зна",
+ "▁S om",
+ "▁So m",
+ "Comm and",
+ "ße n",
+ "ß en",
+ "▁start ing",
+ "▁star ting",
+ "▁s to",
+ "▁st o",
+ "▁ sto",
+ "I G",
+ "▁min im",
+ "▁mi nim",
+ "▁mini m",
+ "▁exp licit",
+ "▁explic it",
+ "▁by tes",
+ "▁byte s",
+ "▁ bytes",
+ "▁par ty",
+ "▁part y",
+ "▁ party",
+ "to ber",
+ "t ober",
+ "▁G rand",
+ "▁Gr and",
+ "▁Gra nd",
+ "▁Gran d",
+ "▁V or",
+ "▁Vo r",
+ "▁ Vor",
+ "▁l eur",
+ "▁le ur",
+ "▁ leur",
+ "Doc ument",
+ "D ocument",
+ "er c",
+ "e rc",
+ "ens ive",
+ "C P",
+ "en v",
+ "▁arg uments",
+ "▁argument s",
+ "▁ arguments",
+ "▁G ran",
+ "▁Gr an",
+ "▁Gra n",
+ "ar ily",
+ "ari ly",
+ "▁l in",
+ "▁li n",
+ "▁ lin",
+ "t n",
+ "( -",
+ "ge q",
+ "g eq",
+ "▁F amil",
+ "▁Fa mil",
+ "▁Fam il",
+ "▁ Famil",
+ "▁Б о",
+ "▁t our",
+ "▁to ur",
+ "▁tou r",
+ "▁n av",
+ "▁na v",
+ "▁ nav",
+ "▁proper ly",
+ "▁M rs",
+ "▁Mr s",
+ "▁M el",
+ "▁Me l",
+ "▁sc ale",
+ "▁scal e",
+ "▁ scale",
+ "ast ic",
+ "d s",
+ "▁S ir",
+ "▁Si r",
+ "▁Ch urch",
+ "}^ {\\",
+ "}^{ \\",
+ "} ^{\\",
+ "yo u",
+ "y ou",
+ "/ .",
+ "S o",
+ "▁br ought",
+ "▁r ole",
+ "▁ro le",
+ "▁rol e",
+ "▁ role",
+ "▁S ur",
+ "▁Su r",
+ "▁ Sur",
+ "▁f ond",
+ "▁fo nd",
+ "▁fon d",
+ "▁g es",
+ "▁ge s",
+ "▁ ges",
+ "ż e",
+ "et en",
+ "ete n",
+ "e ten",
+ "▁é tait",
+ "▁ét ait",
+ "▁ était",
+ "SE R",
+ "S ER",
+ "▁ко торы",
+ "▁кото ры",
+ "▁equ ation",
+ "▁ equation",
+ "as px",
+ "asp x",
+ "▁A fr",
+ "▁Af r",
+ "▁d it",
+ "▁di t",
+ "▁ dit",
+ "em pty",
+ "emp ty",
+ "empt y",
+ "al ement",
+ "ale ment",
+ "alem ent",
+ "a lement",
+ "wr ap",
+ "w rap",
+ "▁B et",
+ "▁Be t",
+ "▁col lect",
+ "▁coll ect",
+ "▁colle ct",
+ "▁ collect",
+ "▁g it",
+ "▁gi t",
+ "▁ git",
+ "▁v ie",
+ "▁vi e",
+ "▁ vie",
+ "▁. .",
+ "▁ ..",
+ "ро й",
+ "▁< ?",
+ "▁ ",
+ "▁ed uc",
+ "k l",
+ "ens is",
+ "▁O R",
+ "▁ OR",
+ "▁H i",
+ "▁ Hi",
+ "▁C our",
+ "▁Co ur",
+ "▁Cou r",
+ "б ы",
+ "ce rt",
+ "cer t",
+ "c ert",
+ "▁G es",
+ "▁Ge s",
+ "ess or",
+ "esso r",
+ "Ma in",
+ "M ain",
+ "▁ лю",
+ "ca de",
+ "c ade",
+ "do t",
+ "d ot",
+ "au gh",
+ "aug h",
+ "a ugh",
+ "hi b",
+ "h ib",
+ "▁autom atically",
+ "▁auto matically",
+ "▁automat ically",
+ "▁automatic ally",
+ "▁sp ir",
+ "pr esent",
+ "pre sent",
+ "pres ent",
+ "▁Febru ary",
+ "▁Februar y",
+ "▁E lle",
+ "▁El le",
+ "▁Ell e",
+ "cus tom",
+ "c ustom",
+ "▁pro get",
+ "▁admin istr",
+ "▁administ r",
+ "A A",
+ "▁b orn",
+ "▁bo rn",
+ "▁bor n",
+ "▁ born",
+ "▁Col lege",
+ "▁Colleg e",
+ "▁Coll ege",
+ "at hol",
+ "ath ol",
+ "` )",
+ "ier re",
+ "▁r an",
+ "▁ra n",
+ "▁ ran",
+ "▁prof ession",
+ "▁profess ion",
+ "og en",
+ "oge n",
+ "o gen",
+ "}_ {\\",
+ "}_{ \\",
+ "} _{\\",
+ "▁act ivity",
+ "▁activ ity",
+ "▁ activity",
+ "▁sc roll",
+ "▁scr oll",
+ "▁ scroll",
+ "▁pro ve",
+ "▁pr ove",
+ "▁prov e",
+ "ibr ary",
+ "i brary",
+ "er ies",
+ "erie s",
+ "eri es",
+ "e ries",
+ "Re ad",
+ "R ead",
+ "ye ar",
+ "y ear",
+ "▁l ang",
+ "▁la ng",
+ "▁lan g",
+ "▁ lang",
+ "De t",
+ "D et",
+ "▁k new",
+ "▁kn ew",
+ "▁kne w",
+ "▁prote cted",
+ "▁protect ed",
+ "▁prot ected",
+ "▁ protected",
+ "▁w or",
+ "▁wo r",
+ "▁ wor",
+ "▁e ffic",
+ "▁eff ic",
+ "▁r ég",
+ "▁ré g",
+ "▁the ory",
+ "▁ theory",
+ "▁pub lished",
+ "▁publish ed",
+ "re al",
+ "rea l",
+ "▁T our",
+ "▁To ur",
+ "▁dur ante",
+ "▁durant e",
+ "ä s",
+ "▁pos itive",
+ "▁posit ive",
+ "▁for ward",
+ "▁ forward",
+ "▁R el",
+ "▁Re l",
+ "▁ Rel",
+ "{ \"",
+ "par k",
+ "p ark",
+ "▁U m",
+ "▁e er",
+ "en ta",
+ "ent a",
+ "▁i mag",
+ "▁im ag",
+ "но ї",
+ "pi el",
+ "pie l",
+ "p iel",
+ "▁j Query",
+ "▁ jQuery",
+ "is me",
+ "ism e",
+ "ch ni",
+ "chn i",
+ "or gan",
+ "org an",
+ "▁ar gs",
+ "▁arg s",
+ "▁ args",
+ "oi r",
+ "o ir",
+ "he im",
+ "ri an",
+ "ria n",
+ "r ian",
+ "el ess",
+ "eles s",
+ "ele ss",
+ "e less",
+ "us es",
+ "use s",
+ "ди н",
+ "д ин",
+ "ic ión",
+ "ici ón",
+ "ició n",
+ "i ción",
+ "▁ind ust",
+ "▁indu st",
+ "▁ indust",
+ "▁w ish",
+ "▁wis h",
+ "án y",
+ "á ny",
+ "oc a",
+ "o ca",
+ "▁ang ular",
+ "▁ angular",
+ "ie ved",
+ "ieve d",
+ "iev ed",
+ "▁occ ur",
+ "▁oc cur",
+ "SE LECT",
+ "on ia",
+ "oni a",
+ "o nia",
+ "ad min",
+ "▁B est",
+ "▁Be st",
+ "▁Bes t",
+ "▁ Best",
+ "▁э то",
+ "о гра",
+ "▁l oss",
+ "▁lo ss",
+ "▁los s",
+ "▁ loss",
+ "▁b al",
+ "▁ba l",
+ "▁ bal",
+ "▁Р ос",
+ "▁Ро с",
+ "▁care er",
+ "▁п е",
+ "▁ пе",
+ "I X",
+ "▁f all",
+ "▁fa ll",
+ "▁fal l",
+ "▁ fall",
+ "▁R ob",
+ "▁Ro b",
+ "▁ Rob",
+ "▁O P",
+ "▁ OP",
+ "en ed",
+ "ene d",
+ "e ned",
+ "graph ics",
+ "▁c oming",
+ "▁com ing",
+ "▁co ming",
+ "▁ coming",
+ "Up date",
+ "▁d ied",
+ "▁di ed",
+ "▁die d",
+ "ed en",
+ "ede n",
+ "e den",
+ "▁a bs",
+ "▁ab s",
+ "▁ abs",
+ "▁in ner",
+ "▁inn er",
+ "▁inne r",
+ "▁ inner",
+ "▁t rav",
+ "▁tr av",
+ "▁tra v",
+ "сто я",
+ "z ą",
+ "é p",
+ "▁Gr oup",
+ "▁Gro up",
+ "▁ Group",
+ "▁c el",
+ "▁ce l",
+ "▁ cel",
+ "▁st uff",
+ "▁situ ation",
+ "▁$ {",
+ "▁ ${",
+ "ac le",
+ "a cle",
+ "▁pur pose",
+ "▁F ire",
+ "▁Fir e",
+ "▁ Fire",
+ "▁O h",
+ "▁ Oh",
+ "▁Se cond",
+ "▁Sec ond",
+ "▁ Second",
+ "▁up load",
+ "▁ upload",
+ "os tał",
+ "ost ał",
+ "osta ł",
+ "ю щи",
+ "Aut h",
+ "A uth",
+ "▁show ing",
+ "▁sho wing",
+ "▁complet ely",
+ "▁complete ly",
+ "av el",
+ "ave l",
+ "a vel",
+ "b d",
+ "▁pro ced",
+ "▁proc ed",
+ "▁ Ö",
+ "cont rol",
+ "contr ol",
+ "▁th ank",
+ "▁than k",
+ "und red",
+ "▁t om",
+ "▁to m",
+ "▁ tom",
+ "▁ex amples",
+ "▁example s",
+ "▁exam ples",
+ "▁ examples",
+ "▁re member",
+ "▁rem ember",
+ "▁ра бо",
+ "▁ рабо",
+ "▁poss ib",
+ "▁det ect",
+ "▁p oor",
+ "▁po or",
+ "▁O p",
+ "▁ Op",
+ "▁cent ury",
+ "▁ century",
+ "ut ter",
+ "utt er",
+ "▁lo gin",
+ "▁log in",
+ "▁ login",
+ "un st",
+ "uns t",
+ "Out put",
+ "▁other wise",
+ "la n",
+ "l an",
+ "ту р",
+ "т ур",
+ "▁с ов",
+ "▁со в",
+ "▁ сов",
+ "▁gr oups",
+ "▁group s",
+ "▁gro ups",
+ "▁ groups",
+ "ri p",
+ "r ip",
+ "▁s hell",
+ "▁sh ell",
+ "▁she ll",
+ "▁ shell",
+ "▁d istrict",
+ "▁dist rict",
+ "▁rec ords",
+ "▁record s",
+ "▁si è",
+ "fort un",
+ "en ty",
+ "ent y",
+ "▁T re",
+ "▁Tr e",
+ "▁ch anging",
+ "▁chang ing",
+ "сле д",
+ "aug ht",
+ "augh t",
+ "▁de ep",
+ "▁ deep",
+ "sub set",
+ "ag y",
+ "a gy",
+ "en dar",
+ "end ar",
+ "enda r",
+ "ja x",
+ "j ax",
+ "O M",
+ "E l",
+ "im ate",
+ "ima te",
+ "imat e",
+ "i mate",
+ "ar do",
+ "ard o",
+ "▁p lot",
+ "▁pl ot",
+ "▁ plot",
+ "▁vis it",
+ "▁b ug",
+ "▁bu g",
+ "▁ bug",
+ "▁в се",
+ "▁вс е",
+ "▁op ened",
+ "▁open ed",
+ "▁re pla",
+ "▁rep la",
+ "▁Hen ry",
+ "▁p p",
+ "▁ pp",
+ "ba s",
+ "b as",
+ "▁d ark",
+ "▁dar k",
+ "▁ dark",
+ "▁Mart in",
+ "▁ Martin",
+ "▁re source",
+ "▁res ource",
+ "▁ resource",
+ "il ing",
+ "ili ng",
+ "i ling",
+ "▁w atch",
+ "▁wat ch",
+ "▁ watch",
+ "re place",
+ "rep lace",
+ "▁re lease",
+ "▁ release",
+ "Lo cation",
+ "Loc ation",
+ "L ocation",
+ "▁le arning",
+ "▁learn ing",
+ "▁lear ning",
+ "▁ learning",
+ "me nu",
+ "men u",
+ "m enu",
+ "▁all ows",
+ "▁allow s",
+ "▁allo ws",
+ "ъ р",
+ "L ength",
+ "▁wh atever",
+ "▁what ever",
+ "▁p ages",
+ "▁page s",
+ "▁pa ges",
+ "▁pag es",
+ "▁ pages",
+ "▁comp iler",
+ "▁compile r",
+ "▁ compiler",
+ "▁так же",
+ "▁P an",
+ "▁Pa n",
+ "▁ Pan",
+ "comm and",
+ "▁ro ad",
+ "▁ road",
+ "▁un less",
+ "▁ unless",
+ "` ?",
+ "▁dis cover",
+ "▁disc over",
+ "▁disco ver",
+ "▁о н",
+ "▁ он",
+ "} ]",
+ "bo ur",
+ "b our",
+ "▁C ould",
+ "▁Co uld",
+ "▁Cou ld",
+ "▁ Could",
+ "▁re gex",
+ "▁reg ex",
+ "▁ regex",
+ "▁p s",
+ "▁ ps",
+ "C D",
+ "и з",
+ "▁w ife",
+ "am enti",
+ "ament i",
+ "amen ti",
+ "▁f air",
+ "▁fa ir",
+ "▁D B",
+ "▁ DB",
+ "▁C up",
+ "▁Cu p",
+ "en en",
+ "ene n",
+ "e nen",
+ "aj ax",
+ "aja x",
+ "a jax",
+ "oth èque",
+ "▁se iner",
+ "▁sein er",
+ "▁seine r",
+ "▁sei ner",
+ "ic ker",
+ "ick er",
+ "i cker",
+ "á m",
+ "ex change",
+ "ol es",
+ "ole s",
+ "o les",
+ "I F",
+ "▁Д о",
+ "oh n",
+ "o hn",
+ "▁g row",
+ "▁gr ow",
+ "▁gro w",
+ "▁T hus",
+ "▁Th us",
+ "sp ec",
+ "spe c",
+ "s pec",
+ "▁h atte",
+ "▁ha tte",
+ "▁hat te",
+ "# ,",
+ "all el",
+ "alle l",
+ "▁r ate",
+ "▁ra te",
+ "▁rat e",
+ "▁ rate",
+ "▁cent ral",
+ "▁ central",
+ "▁V an",
+ "▁Va n",
+ "if orn",
+ "R un",
+ "▁stud y",
+ "▁X ML",
+ "▁ XML",
+ "▁C he",
+ "▁Ch e",
+ "▁ Che",
+ "▁be aut",
+ "mi d",
+ "m id",
+ "▁adv ance",
+ "V er",
+ "т я",
+ "▁h ands",
+ "▁hand s",
+ "▁han ds",
+ "▁l ay",
+ "▁la y",
+ "▁ lay",
+ "▁ š",
+ "▁O S",
+ "▁ OS",
+ "▁{ }",
+ "▁ {}",
+ "Pr e",
+ "P re",
+ "▁H all",
+ "▁Ha ll",
+ "▁Hal l",
+ "im p",
+ "i mp",
+ "▁s un",
+ "▁su n",
+ "▁ sun",
+ "▁st eps",
+ "▁ste ps",
+ "▁step s",
+ "▁ steps",
+ "▁j ud",
+ "▁ju d",
+ "▁ jud",
+ "qu i",
+ "q ui",
+ "▁b oot",
+ "▁bo ot",
+ "▁ boot",
+ "▁% >",
+ "▁В а",
+ "no st",
+ "nos t",
+ "n ost",
+ "▁n em",
+ "▁ne m",
+ "▁ nem",
+ "▁p en",
+ "▁pe n",
+ "▁ pen",
+ "Op en",
+ "O pen",
+ "▁ch urch",
+ "ко н",
+ "к он",
+ "▁a verage",
+ "▁aver age",
+ "▁ave rage",
+ "▁com ments",
+ "▁comm ents",
+ "▁comment s",
+ "▁ comments",
+ "▁correspond ing",
+ "lev ant",
+ "▁b ed",
+ "▁be d",
+ "▁ bed",
+ "▁mean ing",
+ "V ersion",
+ "Lin k",
+ "L ink",
+ "be l",
+ "b el",
+ "▁ext ract",
+ "▁extra ct",
+ "▁extr act",
+ "▁ extract",
+ "ś ć",
+ "▁I V",
+ "▁ IV",
+ "▁I r",
+ "▁comp uter",
+ "▁comput er",
+ "▁compute r",
+ "▁a ffect",
+ "▁af fect",
+ "▁aff ect",
+ "▁С та",
+ "▁Ст а",
+ "A X",
+ "so rt",
+ "s ort",
+ "▁s pecies",
+ "▁spe cies",
+ "▁spec ies",
+ "▁specie s",
+ "▁ species",
+ "▁O per",
+ "▁Op er",
+ "▁ Oper",
+ "▁h ash",
+ "▁ha sh",
+ "▁has h",
+ "▁ hash",
+ "ch es",
+ "che s",
+ "c hes",
+ "▁Einz eln",
+ "▁Einzel n",
+ "▁ke ys",
+ "▁key s",
+ "▁ keys",
+ "▁mar zo",
+ "▁inter pret",
+ "▁interpre t",
+ "ho od",
+ "h ood",
+ "▁co ordin",
+ "▁coord in",
+ "ö s",
+ "ra ge",
+ "rag e",
+ "r age",
+ "et z",
+ "e tz",
+ "iz a",
+ "i za",
+ "де р",
+ "д ер",
+ "ü t",
+ "^ *",
+ "▁mod ify",
+ "▁term in",
+ "▁ter min",
+ "▁ termin",
+ "▁c red",
+ "▁cre d",
+ "▁cr ed",
+ "▁ cred",
+ "zo n",
+ "z on",
+ "ну ю",
+ "н ую",
+ "▁m ie",
+ "▁mi e",
+ "▁' '",
+ "▁ ''",
+ "▁M os",
+ "▁Mo s",
+ "▁conne cted",
+ "▁connect ed",
+ "▁conn ected",
+ "▁ connected",
+ "N O",
+ "▁comp ile",
+ "▁ compile",
+ "▁\" \\",
+ "▁ \"\\",
+ "▁c at",
+ "▁ca t",
+ "▁ cat",
+ "f iddle",
+ "ut a",
+ "u ta",
+ "Acc ess",
+ "Ac cess",
+ "A ccess",
+ "▁S to",
+ "▁St o",
+ "▁ Sto",
+ "▁B ur",
+ "▁Bu r",
+ "▁n orth",
+ "▁nor th",
+ "G amma",
+ "▁al loc",
+ "▁all oc",
+ "▁allo c",
+ "▁ alloc",
+ "In it",
+ "I nit",
+ "▁L ink",
+ "▁Lin k",
+ "▁ Link",
+ "ial ize",
+ "iali ze",
+ "Im pl",
+ "Imp l",
+ "ou pe",
+ "oup e",
+ "rop ri",
+ "▁G old",
+ "▁Go ld",
+ "▁Gol d",
+ "▁s olo",
+ "▁so lo",
+ "▁sol o",
+ "▁D ist",
+ "▁Dis t",
+ "▁Di st",
+ "▁ Dist",
+ ", -",
+ "na v",
+ "n av",
+ "▁al ert",
+ "▁ale rt",
+ "▁ alert",
+ "es is",
+ "esi s",
+ "▁O s",
+ "▁ Os",
+ "// /",
+ "/ //",
+ "▁f eb",
+ "▁fe b",
+ "▁- ->",
+ "▁-- >",
+ "▁ -->",
+ "fo ot",
+ "foo t",
+ "f oot",
+ "▁F ried",
+ "▁Fr ied",
+ "▁Fri ed",
+ "▁Einzeln ach",
+ "▁Einzel nach",
+ "▁re v",
+ "▁r ev",
+ "▁ rev",
+ "ze it",
+ "▁S tat",
+ "▁St at",
+ "▁Sta t",
+ "▁ Stat",
+ "▁S eg",
+ "▁Se g",
+ "▁ Seg",
+ "▁b lo",
+ "▁bl o",
+ "▁ blo",
+ "wi ck",
+ "w ick",
+ "E L",
+ "ca ption",
+ "cap tion",
+ "capt ion",
+ "he ader",
+ "head er",
+ "▁pres ident",
+ "▁presiden t",
+ "▁mult ip",
+ "▁multi p",
+ "▁mul tip",
+ "▁ multip",
+ "▁Einzelnach weise",
+ "▁se ine",
+ "▁sein e",
+ "▁sei ne",
+ "? ”",
+ "Func tion",
+ "Fun ction",
+ "F unction",
+ "▁St and",
+ "▁Sta nd",
+ "▁Stan d",
+ "▁ Stand",
+ "▁F unction",
+ "▁Fun ction",
+ "▁ Function",
+ "▁? >",
+ "▁ ?>",
+ "▁B ill",
+ "▁Bi ll",
+ "▁Bil l",
+ "▁s pect",
+ "▁sp ect",
+ "▁spe ct",
+ "▁spec t",
+ "▁ spect",
+ "▁re direct",
+ "▁red irect",
+ "▁ redirect",
+ "ru pt",
+ "rup t",
+ "r upt",
+ "▁w alk",
+ "▁wal k",
+ "▁ walk",
+ "в ши",
+ "spring framework",
+ "pl ace",
+ "pla ce",
+ "p lace",
+ "é ho",
+ "Ent ity",
+ "▁Ser vice",
+ "▁Serv ice",
+ "▁ Service",
+ "in te",
+ "int e",
+ "▁tr aining",
+ "▁tra ining",
+ "▁train ing",
+ "▁ training",
+ "▁( `",
+ "▁ (`",
+ "фо р",
+ "ф ор",
+ "▁к ра",
+ "▁ кра",
+ "au r",
+ "a ur",
+ "▁f etch",
+ "▁fet ch",
+ "▁ fetch",
+ "▁ †",
+ "▁m ême",
+ "▁ même",
+ "▁( '",
+ "▁ ('",
+ "at ively",
+ "ative ly",
+ "ativ ely",
+ "▁exec ut",
+ "ä ch",
+ "▁Catalog ue",
+ "ba sed",
+ "base d",
+ "bas ed",
+ "b ased",
+ "Att ribute",
+ "▁s pring",
+ "▁sp ring",
+ "▁spr ing",
+ "▁ spring",
+ "ph one",
+ "phon e",
+ "т ра",
+ "▁п и",
+ "▁ пи",
+ "те ра",
+ "тер а",
+ "т ера",
+ "▁` \\",
+ "▁O d",
+ "On e",
+ "O ne",
+ "se nd",
+ "sen d",
+ "s end",
+ "bo n",
+ "b on",
+ "▁ °",
+ "M O",
+ "▁as king",
+ "▁ask ing",
+ "▁o ù",
+ "▁ing år",
+ "▁test ing",
+ "▁ testing",
+ "▁ф а",
+ "▁ фа",
+ "▁B ook",
+ "▁Bo ok",
+ "▁ Book",
+ "im m",
+ "i mm",
+ "▁pro gress",
+ "▁ progress",
+ "br o",
+ "b ro",
+ "F irst",
+ "▁p hot",
+ "▁ph ot",
+ "▁O N",
+ "▁ ON",
+ "Tem plate",
+ "Temp late",
+ "develop er",
+ "an not",
+ "ann ot",
+ "anno t",
+ "▁> =",
+ "▁ >=",
+ "miss ion",
+ "m ission",
+ "▁k tó",
+ "▁ któ",
+ "p c",
+ "ba ch",
+ "b ach",
+ "ze nt",
+ "zen t",
+ "z ent",
+ "ue d",
+ "u ed",
+ "▁o nes",
+ "▁on es",
+ "▁one s",
+ "▁ ones",
+ "ј и",
+ "▁r out",
+ "▁ro ut",
+ "▁rou t",
+ "▁ rout",
+ "▁К и",
+ "Pos t",
+ "Po st",
+ "P ost",
+ "ці ї",
+ "ц ії",
+ "▁V ir",
+ "▁Vi r",
+ "ne k",
+ "n ek",
+ "ag ing",
+ "agi ng",
+ "agin g",
+ "a ging",
+ "▁о к",
+ "▁ ок",
+ "iz ont",
+ "izo nt",
+ "izon t",
+ "▁ag osto",
+ "▁ago sto",
+ "▁cho ose",
+ "▁ choose",
+ "▁ \r",
+ "▁system s",
+ "▁syst ems",
+ "lo ss",
+ "los s",
+ "l oss",
+ "ien te",
+ "ient e",
+ "i ente",
+ "▁C re",
+ "▁Cr e",
+ "▁ Cre",
+ "▁con tra",
+ "▁cont ra",
+ "▁contr a",
+ "▁ contra",
+ "um s",
+ "u ms",
+ "▁begin ning",
+ "em y",
+ "e my",
+ "ist ics",
+ "istic s",
+ "isti cs",
+ "▁s erved",
+ "▁ser ved",
+ "▁serv ed",
+ "▁serve d",
+ "Do wn",
+ "D own",
+ "option s",
+ "opt ions",
+ "o ptions",
+ "▁G overn",
+ "▁Go vern",
+ "▁B Y",
+ "▁ BY",
+ "▁j est",
+ "▁je st",
+ "▁ jest",
+ "t é",
+ "▁cont inue",
+ "▁contin ue",
+ "▁continu e",
+ "▁ continue",
+ "pe rs",
+ "per s",
+ "p ers",
+ "▁eas ier",
+ "▁c os",
+ "▁co s",
+ "▁ cos",
+ "es so",
+ "ess o",
+ "> >",
+ "Ne t",
+ "N et",
+ "▁B or",
+ "▁Bo r",
+ "▁C r",
+ "▁ Cr",
+ "▁trans fer",
+ "▁C SS",
+ "▁CS S",
+ "▁ CSS",
+ "▁fin ns",
+ "▁х о",
+ "▁ хо",
+ "us ername",
+ "user name",
+ "▁con stru",
+ "▁const ru",
+ "▁p ain",
+ "▁pa in",
+ "▁T em",
+ "▁Te m",
+ "▁ Tem",
+ "▁spec ified",
+ "▁b rit",
+ "▁br it",
+ "▁ brit",
+ "ски е",
+ "с кие",
+ "ir k",
+ "ra pper",
+ "rap per",
+ "r apper",
+ "▁c ounter",
+ "▁co unter",
+ "▁count er",
+ "▁coun ter",
+ "▁ counter",
+ "▁[ \"",
+ "▁ [\"",
+ "ode d",
+ "od ed",
+ "o ded",
+ "да н",
+ "д ан",
+ "pro perty",
+ "ha rd",
+ "har d",
+ "h ard",
+ "ist rict",
+ "istr ict",
+ ") /",
+ "▁P our",
+ "▁Po ur",
+ "▁W here",
+ "▁Wh ere",
+ "▁Whe re",
+ "▁ Where",
+ "▁= ==",
+ "▁== =",
+ "▁ ===",
+ "▁s owie",
+ "▁so wie",
+ "▁sow ie",
+ "▁П ро",
+ "▁d ess",
+ "▁de ss",
+ "▁des s",
+ "▁ dess",
+ "▁t ras",
+ "▁tr as",
+ "▁tra s",
+ "▁ tras",
+ "▁у ча",
+ "▁O ver",
+ "▁ Over",
+ "no te",
+ "not e",
+ "n ote",
+ "▁Amer ica",
+ "▁ America",
+ "c p",
+ "▁gr ande",
+ "▁gra nde",
+ "▁gran de",
+ "▁grand e",
+ "M e",
+ ") -",
+ "Mod e",
+ "Mo de",
+ "M ode",
+ "▁pass ing",
+ "▁pas sing",
+ "▁g iving",
+ "▁giv ing",
+ "▁gi ving",
+ "C l",
+ "} /",
+ "Me nu",
+ "Men u",
+ "M enu",
+ "! !",
+ "ang ular",
+ "angu lar",
+ "▁la unch",
+ "▁ launch",
+ "var phi",
+ "▁Joh ann",
+ "▁Johan n",
+ "▁for each",
+ "▁fore ach",
+ "▁ foreach",
+ "r ó",
+ "se qu",
+ "seq u",
+ "s equ",
+ "if i",
+ "i fi",
+ "A m",
+ "ar p",
+ "a rp",
+ "▁b uffer",
+ "▁buf fer",
+ "▁buff er",
+ "▁ buffer",
+ "▁n i",
+ "▁ ni",
+ "▁m ix",
+ "▁mi x",
+ "▁ mix",
+ "▁M useum",
+ "▁Muse um",
+ "▁me ant",
+ "▁mean t",
+ "as i",
+ "a si",
+ "▁k an",
+ "▁ka n",
+ "▁ kan",
+ "пра в",
+ "п рав",
+ "Com p",
+ "Co mp",
+ "C omp",
+ "is toire",
+ "ist oire",
+ "isto ire",
+ "if ul",
+ "i ful",
+ "je r",
+ "j er",
+ "iss ions",
+ "ission s",
+ "Re source",
+ "Res ource",
+ "▁в оз",
+ "▁во з",
+ "▁S T",
+ "▁ ST",
+ "▁sol utions",
+ "▁solution s",
+ "▁be long",
+ "▁bel ong",
+ "▁As soci",
+ "▁Ass oci",
+ "▁ Associ",
+ "c f",
+ "▁M är",
+ "▁g rid",
+ "▁gr id",
+ "▁ grid",
+ "M ult",
+ "▁require s",
+ "▁requ ires",
+ "k k",
+ "▁t each",
+ "▁te ach",
+ "▁tea ch",
+ "eme inde",
+ "emein de",
+ "▁s quare",
+ "▁squ are",
+ "▁ square",
+ "▁ко ман",
+ "▁ком ан",
+ "▁E vent",
+ "▁Ev ent",
+ "▁Even t",
+ "▁ Event",
+ "▁r ules",
+ "▁rule s",
+ "▁ru les",
+ "▁ rules",
+ "▁b ur",
+ "▁bu r",
+ "▁ bur",
+ "▁e ing",
+ "▁ein g",
+ "▁ eing",
+ "▁M ai",
+ "▁Ma i",
+ "▁n am",
+ "▁na m",
+ "▁ nam",
+ "▁s lä",
+ "▁sl ä",
+ "hö r",
+ "h ör",
+ "▁t ip",
+ "▁ti p",
+ "▁ tip",
+ "▁Liter atur",
+ "▁s cope",
+ "▁sc ope",
+ "▁scop e",
+ "▁ scope",
+ "over line",
+ "▁ex it",
+ "▁ exit",
+ ") ?",
+ "be t",
+ "b et",
+ "▁v ict",
+ "▁vi ct",
+ "▁vic t",
+ "Of f",
+ "O ff",
+ "▁appro xim",
+ "▁G eb",
+ "▁Ge b",
+ "kt op",
+ "k top",
+ "he it",
+ "▁ Ю",
+ "tem plate",
+ "temp late",
+ "ро н",
+ "р он",
+ "▁u no",
+ "▁un o",
+ "▁ uno",
+ "Ser v",
+ "Se rv",
+ "S erv",
+ "▁frame work",
+ "▁ framework",
+ "oper ator",
+ "opera tor",
+ "▁gener ally",
+ "▁general ly",
+ "▁h undred",
+ "▁d ivers",
+ "▁di vers",
+ "▁div ers",
+ "▁diver s",
+ "ov i",
+ "o vi",
+ "▁r és",
+ "▁ré s",
+ "▁ rés",
+ "ab s",
+ "a bs",
+ "▁g al",
+ "▁ga l",
+ "▁ gal",
+ "ça is",
+ "ç ais",
+ "▁fe et",
+ "▁fee t",
+ "▁v irtual",
+ "▁virt ual",
+ "▁ virtual",
+ "cz y",
+ "c zy",
+ "ск у",
+ "с ку",
+ ". /",
+ "h u",
+ "an cy",
+ "anc y",
+ "▁recomm end",
+ "▁п ід",
+ "▁пі д",
+ "▁m oney",
+ "▁mon ey",
+ "▁mo ney",
+ "▁vers ions",
+ "▁version s",
+ "▁ versions",
+ "▁hel ps",
+ "▁help s",
+ "▁H or",
+ "▁Ho r",
+ "▁ Hor",
+ "Item s",
+ "It ems",
+ "lo ok",
+ "l ook",
+ "con nect",
+ "conne ct",
+ "conn ect",
+ "an ges",
+ "ang es",
+ "ange s",
+ "View Controller",
+ "el ijk",
+ "elij k",
+ "eli jk",
+ "e lijk",
+ "▁occ up",
+ "▁oc cup",
+ "▁ occup",
+ "▁ed itor",
+ "▁edit or",
+ "▁ editor",
+ "au to",
+ "aut o",
+ "a uto",
+ "ö g",
+ "▁second s",
+ "▁sec onds",
+ "▁ seconds",
+ "▁ob vious",
+ "v m",
+ "ak es",
+ "ake s",
+ "a kes",
+ "▁g egen",
+ "▁ge gen",
+ "▁geg en",
+ "▁t il",
+ "▁ti l",
+ "▁ til",
+ "ject ion",
+ "je ction",
+ "j ection",
+ "ле ння",
+ "лен ня",
+ "▁oper ations",
+ "▁operation s",
+ "▁E ast",
+ "og y",
+ "o gy",
+ "▁P olit",
+ "▁Pol it",
+ "▁Po lit",
+ "ut en",
+ "ute n",
+ "u ten",
+ "▁Jose ph",
+ "\" `",
+ "▁Comp any",
+ "▁ Company",
+ "▁call back",
+ "▁ callback",
+ "▁s en",
+ "▁se n",
+ "▁ sen",
+ "cc ión",
+ "cció n",
+ "c ción",
+ "▁associ ated",
+ "▁associate d",
+ "▁cont aining",
+ "▁contain ing",
+ "▁pract ice",
+ "elij ke",
+ "elijk e",
+ "e lijke",
+ "ok e",
+ "o ke",
+ "ér a",
+ "é ra",
+ "un s",
+ "u ns",
+ "an ta",
+ "ant a",
+ "ve y",
+ "v ey",
+ "z u",
+ "▁B es",
+ "▁Be s",
+ "▁F lor",
+ "▁Fl or",
+ "▁Flo r",
+ "me m",
+ "m em",
+ "yc z",
+ "y cz",
+ "▁arch itect",
+ "▁an ni",
+ "▁ann i",
+ "▁ anni",
+ "▁cont act",
+ "▁ contact",
+ "Y PE",
+ "▁C as",
+ "▁Ca s",
+ "▁по лу",
+ "▁пол у",
+ "ov o",
+ "o vo",
+ "▁b ring",
+ "▁br ing",
+ "▁con cept",
+ "▁conce pt",
+ "▁j s",
+ "▁ js",
+ "▁Refer encias",
+ "em ble",
+ "emb le",
+ "embl e",
+ "▁ н",
+ "▁supp orted",
+ "▁support ed",
+ "▁ supported",
+ "Bi g",
+ "B ig",
+ "▁H ans",
+ "▁Ha ns",
+ "▁Han s",
+ "er v",
+ "e rv",
+ "▁M aj",
+ "▁Ma j",
+ "▁ar riv",
+ "▁arr iv",
+ "▁H ave",
+ "▁Ha ve",
+ "▁Hav e",
+ "▁ Have",
+ "▁prob ability",
+ "▁probabil ity",
+ "▁P op",
+ "▁Po p",
+ "▁ Pop",
+ "▁P ass",
+ "▁Pa ss",
+ "▁Pas s",
+ "▁ Pass",
+ "to ken",
+ "tok en",
+ "t oken",
+ "Pro vider",
+ "▁R a",
+ "Re ader",
+ "Read er",
+ "oot h",
+ "oo th",
+ "o oth",
+ "la p",
+ "l ap",
+ "▁ass ist",
+ "ad ow",
+ "ado w",
+ "▁t ests",
+ "▁test s",
+ "▁ tests",
+ "сс и",
+ "с си",
+ "▁k ing",
+ "▁ki ng",
+ "▁kin g",
+ "▁ king",
+ "lang le",
+ "lan gle",
+ "l angle",
+ "▁S um",
+ "▁Su m",
+ "▁ Sum",
+ "O IN",
+ "▁se curity",
+ "▁sec urity",
+ "▁ security",
+ "ni s",
+ "n is",
+ ".. /",
+ ". ./",
+ "▁bas ic",
+ "▁ basic",
+ "un ity",
+ "uni ty",
+ "unit y",
+ "` :",
+ "▁ко то",
+ "ko w",
+ "k ow",
+ "▁Bibli othèque",
+ "as ion",
+ "asi on",
+ "al o",
+ "a lo",
+ "if est",
+ "ife st",
+ "i fest",
+ "▁nov embre",
+ "▁p eu",
+ "▁pe u",
+ "▁ Ж",
+ "en schaft",
+ "ensch aft",
+ "cl us",
+ "c lus",
+ "ј у",
+ "He ight",
+ "ú n",
+ "▁t ur",
+ "▁tu r",
+ "▁ide as",
+ "▁idea s",
+ "▁c es",
+ "▁ce s",
+ "▁ ces",
+ "fr ak",
+ "fra k",
+ "f rak",
+ "▁pre mier",
+ "▁prem ier",
+ "▁premi er",
+ "it ation",
+ "ita tion",
+ "itat ion",
+ "▁s é",
+ "HT ML",
+ "▁Ro yal",
+ "▁Roy al",
+ "сь кої",
+ "сько ї",
+ "▁by te",
+ "▁ byte",
+ "P S",
+ "▁s egu",
+ "▁se gu",
+ "▁seg u",
+ "▁ segu",
+ "in en",
+ "ine n",
+ "i nen",
+ "▁Gre at",
+ "▁К у",
+ "▁ex ternal",
+ "▁ext ernal",
+ "▁extern al",
+ "▁ external",
+ "T itle",
+ "To p",
+ "T op",
+ "Pro cess",
+ "Proc ess",
+ "it ät",
+ "itä t",
+ "▁` /",
+ "▁se cret",
+ "▁sec ret",
+ "▁secre t",
+ "▁ secret",
+ "pos itory",
+ "▁pot ential",
+ "▁B ud",
+ "▁Bu d",
+ "name s",
+ "na mes",
+ "nam es",
+ "n ames",
+ "as ons",
+ "ason s",
+ "aso ns",
+ "stack exchange",
+ "back ground",
+ "пе р",
+ "п ер",
+ "со в",
+ "с ов",
+ "aft er",
+ "af ter",
+ "a fter",
+ "▁p ero",
+ "▁per o",
+ "▁pe ro",
+ "▁so ftware",
+ "▁soft ware",
+ "▁ software",
+ "▁s ed",
+ "▁se d",
+ "▁ sed",
+ "▁array s",
+ "▁arr ays",
+ "tm p",
+ "t mp",
+ "▁a sp",
+ "▁as p",
+ "▁ asp",
+ "sc ale",
+ "scal e",
+ "▁L at",
+ "▁La t",
+ "▁ Lat",
+ "an al",
+ "ana l",
+ "a nal",
+ "▁g em",
+ "▁ge m",
+ "▁ gem",
+ "P U",
+ "▁Al tri",
+ "▁Alt ri",
+ "Th at",
+ "T hat",
+ "▁Н и",
+ "if act",
+ "ifa ct",
+ "i fact",
+ "Add ress",
+ "▁s outh",
+ "▁so uth",
+ "▁sou th",
+ "▁sout h",
+ "▁form ula",
+ "▁Col leg",
+ "▁Coll eg",
+ "▁і н",
+ "▁ ін",
+ "kt ion",
+ "k tion",
+ "▁s ac",
+ "▁sa c",
+ "S H",
+ "aj o",
+ "a jo",
+ "et c",
+ "e tc",
+ "v c",
+ "` ](",
+ "▁D ur",
+ "▁Du r",
+ "▁М е",
+ "▁Sm ith",
+ "▁ Smith",
+ "it ems",
+ "ite ms",
+ "item s",
+ "C K",
+ "el o",
+ "e lo",
+ "▁pl ugin",
+ "▁plug in",
+ "▁ plugin",
+ "▁s erie",
+ "▁se rie",
+ "▁ser ie",
+ "▁ serie",
+ "ien ne",
+ "ienn e",
+ "i enne",
+ "▁и ли",
+ "Ma r",
+ "M ar",
+ "▁Im age",
+ "▁ Image",
+ "go t",
+ "g ot",
+ "an das",
+ "and as",
+ "anda s",
+ "▁mat ches",
+ "▁match es",
+ "▁ matches",
+ "▁w orth",
+ "▁wor th",
+ "▁ worth",
+ "▁D eb",
+ "▁De b",
+ "▁ Deb",
+ "▁c ache",
+ "▁ca che",
+ "▁ cache",
+ "▁f elt",
+ "▁fe lt",
+ "▁fel t",
+ "er sch",
+ "ers ch",
+ "iz es",
+ "ize s",
+ "i zes",
+ "Op er",
+ "O per",
+ "▁Jah re",
+ "▁Jahr e",
+ "▁Ja hre",
+ "▁comm une",
+ "▁commun e",
+ "th read",
+ "▁n y",
+ "▁ ny",
+ "de c",
+ "d ec",
+ "ou w",
+ "o uw",
+ "▁sur face",
+ "▁P or",
+ "▁Po r",
+ "▁St reet",
+ "▁Stre et",
+ "пр и",
+ "п ри",
+ "▁c andid",
+ "▁can did",
+ "▁cand id",
+ "▁Re turn",
+ "▁Ret urn",
+ "▁ Return",
+ "▁K om",
+ "▁Ko m",
+ "gr u",
+ "g ru",
+ "▁т и",
+ "▁ ти",
+ "[ \\",
+ "▁dep ends",
+ "▁depend s",
+ "▁in flu",
+ "▁inf lu",
+ "▁infl u",
+ "▁to wards",
+ "▁toward s",
+ "ain ed",
+ "ai ned",
+ "aine d",
+ "a ined",
+ "▁r ank",
+ "▁ran k",
+ "▁ rank",
+ "▁Janu ar",
+ "▁com ponents",
+ "▁compon ents",
+ "▁component s",
+ "▁ components",
+ "ge st",
+ "ges t",
+ "g est",
+ "getElement ById",
+ "▁check ed",
+ "▁ checked",
+ "air s",
+ "ai rs",
+ "a irs",
+ "jo in",
+ "j oin",
+ "▁d ead",
+ "▁de ad",
+ "▁h it",
+ "▁hi t",
+ "▁ hit",
+ "én y",
+ "é ny",
+ "▁equ ivalent",
+ "▁equival ent",
+ "▁П ре",
+ "▁app ropri",
+ "Pa ss",
+ "P ass",
+ "▁pr imer",
+ "▁prim er",
+ "▁pri mer",
+ "▁prime r",
+ "engl isch",
+ "▁app ar",
+ "▁ap par",
+ "▁D uring",
+ "▁Du ring",
+ "▁Dur ing",
+ "▁know ledge",
+ "▁tr igger",
+ "▁trig ger",
+ "▁ trigger",
+ "▁c ore",
+ "▁cor e",
+ "▁co re",
+ "▁ core",
+ "▁O l",
+ "▁P rodu",
+ "▁Pro du",
+ "▁Pr odu",
+ "▁ Produ",
+ "▁F ern",
+ "▁Fe rn",
+ "▁Fer n",
+ "▁ Fern",
+ "▁на ча",
+ "▁ нача",
+ "T e",
+ "▁M ot",
+ "▁Mo t",
+ "er ve",
+ "erv e",
+ "тв о",
+ "т во",
+ "▁m id",
+ "▁mi d",
+ "▁ mid",
+ "▁fin ally",
+ "▁final ly",
+ "air es",
+ "ai res",
+ "aire s",
+ "a ires",
+ "▁es pecially",
+ "▁espe cially",
+ "▁especial ly",
+ "▁t ut",
+ "▁tu t",
+ "▁rece ive",
+ "ad re",
+ "adr e",
+ "▁ne igh",
+ "▁nei gh",
+ "kt et",
+ "kte t",
+ "il de",
+ "ild e",
+ "▁rad io",
+ "▁radi o",
+ "▁ radio",
+ "▁d river",
+ "▁dr iver",
+ "▁drive r",
+ "▁dri ver",
+ "▁driv er",
+ "▁ driver",
+ "ли сь",
+ "end encies",
+ "enden cies",
+ "▁I E",
+ "▁ IE",
+ "▁s aved",
+ "▁sa ved",
+ "▁sav ed",
+ "▁save d",
+ "▁ saved",
+ "ff ect",
+ "ffe ct",
+ "f fect",
+ "▁Way back",
+ "ia t",
+ "i at",
+ "▁p adding",
+ "▁pad ding",
+ "▁ padding",
+ "wind ow",
+ "w indow",
+ "ти че",
+ "▁m ur",
+ "▁mu r",
+ "ac tor",
+ "act or",
+ "a ctor",
+ "▁H an",
+ "▁Ha n",
+ "он аль",
+ "она ль",
+ "о наль",
+ "▁g ar",
+ "▁ga r",
+ "▁ gar",
+ "▁famil jen",
+ "ó s",
+ "▁n ationale",
+ "▁national e",
+ "▁nation ale",
+ "▁nat ionale",
+ "▁p ré",
+ "▁pr é",
+ "de d",
+ "d ed",
+ "on al",
+ "ona l",
+ "o nal",
+ "▁Pres ident",
+ "▁\\ ,",
+ "▁ \\,",
+ "▁place d",
+ "▁pla ced",
+ "er ni",
+ "ern i",
+ "▁sign al",
+ "▁sig nal",
+ "▁ signal",
+ "na b",
+ "n ab",
+ "h m",
+ "Mo n",
+ "M on",
+ "▁v s",
+ "▁ vs",
+ "S C",
+ "▁proget ti",
+ "▁ Ü",
+ "▁for ms",
+ "▁form s",
+ "▁ forms",
+ "▁message s",
+ "▁mess ages",
+ "▁ messages",
+ "in f",
+ "us ers",
+ "use rs",
+ "user s",
+ "u sers",
+ "GE T",
+ "G ET",
+ "▁d els",
+ "▁de ls",
+ "▁del s",
+ "Col lection",
+ "Coll ection",
+ "Collect ion",
+ "▁G ood",
+ "▁Go od",
+ "▁ Good",
+ "▁May be",
+ "▁ Maybe",
+ "▁com pr",
+ "▁comp r",
+ "▁lar ger",
+ "▁large r",
+ "▁larg er",
+ "gr es",
+ "gre s",
+ "g res",
+ "ap er",
+ "ape r",
+ "a per",
+ "▁П ри",
+ "un des",
+ "und es",
+ "unde s",
+ "▁s ea",
+ "▁se a",
+ "▁S pring",
+ "▁Sp ring",
+ "▁Spr ing",
+ "▁ Spring",
+ "ul o",
+ "u lo",
+ "▁me chan",
+ "▁s ans",
+ "▁sa ns",
+ "▁san s",
+ "G B",
+ "Val id",
+ "▁comm unic",
+ "▁commun ic",
+ "▁ communic",
+ "▁p ra",
+ "▁pr a",
+ "vi er",
+ "vie r",
+ "v ier",
+ "▁С е",
+ "▁a in",
+ "▁ai n",
+ "▁ ain",
+ "ту ра",
+ "тур а",
+ "ko m",
+ "k om",
+ "sk iego",
+ "ski ego",
+ "skie go",
+ "ко во",
+ "ков о",
+ "к ово",
+ "ad ata",
+ "ada ta",
+ "a data",
+ "▁Р е",
+ "▁bo olean",
+ "▁ boolean",
+ "se ts",
+ "set s",
+ "s ets",
+ "▁eff ort",
+ ". [",
+ "▁z ostał",
+ "P A",
+ "▁V ict",
+ "▁Vi ct",
+ "▁Vic t",
+ "S D",
+ "ow ał",
+ "owa ł",
+ "▁e mb",
+ "▁em b",
+ "▁ emb",
+ "▁pr ima",
+ "▁prim a",
+ "▁pri ma",
+ "▁h our",
+ "▁ho ur",
+ "▁ hour",
+ "sub section",
+ "▁F ort",
+ "▁For t",
+ "▁Fo rt",
+ "math frak",
+ "ig in",
+ "igi n",
+ "i gin",
+ "G L",
+ ") +",
+ "f i",
+ "▁an ci",
+ "▁anc i",
+ "▁ anci",
+ "▁p an",
+ "▁pa n",
+ "▁ pan",
+ "\\ )",
+ "▁l ug",
+ "▁lu g",
+ "▁dep loy",
+ "▁ deploy",
+ "do main",
+ "dom ain",
+ "▁s light",
+ "▁sl ight",
+ "JS ON",
+ "J SON",
+ "▁mor ning",
+ "▁h i",
+ "▁ hi",
+ "▁comp are",
+ "▁compar e",
+ "▁ compare",
+ "ij e",
+ "i je",
+ "▁bl ue",
+ "▁ blue",
+ "▁A c",
+ "▁ Ac",
+ "▁m iddle",
+ "▁ middle",
+ "an den",
+ "and en",
+ "ande n",
+ "▁sh ared",
+ "▁share d",
+ "▁ shared",
+ "▁C amp",
+ "▁Cam p",
+ "▁Ca mp",
+ "▁ Á",
+ "ound ed",
+ "oun ded",
+ "u w",
+ "ier ung",
+ "St ack",
+ "▁e ines",
+ "▁ein es",
+ "▁eine s",
+ "▁D a",
+ "▁ Da",
+ "li j",
+ "l ij",
+ "en ti",
+ "ent i",
+ "▁ й",
+ "U til",
+ "▁exper ience",
+ "▁experien ce",
+ "▁a wait",
+ "▁aw ait",
+ "▁ await",
+ "ul s",
+ "u ls",
+ "▁request s",
+ "▁requ ests",
+ "▁ requests",
+ "▁im pos",
+ "▁imp os",
+ "▁const raint",
+ "▁ constraint",
+ "Ch ange",
+ "em ph",
+ "emp h",
+ "бе р",
+ "б ер",
+ "▁An other",
+ "C ustom",
+ "▁signific ant",
+ "▁significa nt",
+ "c r",
+ "▁mill ion",
+ "re ek",
+ "ree k",
+ "▁d alla",
+ "▁da lla",
+ "▁dal la",
+ "▁dall a",
+ "▁G erm",
+ "▁Ge rm",
+ "▁Ger m",
+ "ot al",
+ "ota l",
+ "o tal",
+ "at eur",
+ "ate ur",
+ "bt n",
+ "b tn",
+ "▁th inking",
+ "▁think ing",
+ "▁thin king",
+ "▁inter val",
+ "▁ interval",
+ "on ne",
+ "onn e",
+ "▁l iv",
+ "▁li v",
+ "▁ liv",
+ "() :",
+ "( ):",
+ "▁В е",
+ "o e",
+ "▁E v",
+ "me ta",
+ "met a",
+ "m eta",
+ "▁b road",
+ "▁bro ad",
+ "Re m",
+ "R em",
+ "ap ply",
+ "app ly",
+ "a pply",
+ "▁cou ple",
+ "▁coup le",
+ "▁te chni",
+ "▁techn i",
+ "id ades",
+ "ida des",
+ "idad es",
+ "idade s",
+ "▁go al",
+ "▁ goal",
+ "▁C D",
+ "▁ CD",
+ "ha b",
+ "h ab",
+ "▁ex plan",
+ "▁exp lan",
+ "▁expla n",
+ "▁expl an",
+ "an ner",
+ "ann er",
+ "anne r",
+ "▁B ecause",
+ "bl og",
+ "blo g",
+ "b log",
+ "include graphics",
+ "▁vo ice",
+ "▁ voice",
+ "▁M ap",
+ "▁Ma p",
+ "▁ Map",
+ "vent ion",
+ "ven tion",
+ "v ention",
+ "S ession",
+ "▁L iens",
+ "▁Li ens",
+ "▁Lie ns",
+ "▁s or",
+ "▁so r",
+ "c ategory",
+ "ash ington",
+ "▁Mär z",
+ "po p",
+ "p op",
+ "il let",
+ "ill et",
+ "ille t",
+ "▁z wei",
+ "▁zwe i",
+ "▁zw ei",
+ "▁L ie",
+ "▁Li e",
+ "N ull",
+ "add ress",
+ "addr ess",
+ "▁f actor",
+ "▁fact or",
+ "▁fa ctor",
+ "▁fac tor",
+ "▁ factor",
+ "▁l igne",
+ "▁lig ne",
+ "▁HT TP",
+ "▁ HTTP",
+ "▁s uf",
+ "▁su f",
+ "▁person al",
+ "▁pers onal",
+ "▁persona l",
+ "ci p",
+ "c ip",
+ "▁D ar",
+ "▁Da r",
+ "▁a dm",
+ "▁ad m",
+ "ко й",
+ "▁E xt",
+ "▁Ex t",
+ "▁ Ext",
+ "▁g od",
+ "▁go d",
+ "▁ god",
+ "a a",
+ "R ight",
+ "ét é",
+ "é té",
+ "▁d ynamic",
+ "▁dynam ic",
+ "▁ dynamic",
+ "▁main tain",
+ "to r",
+ "t or",
+ "#### ####",
+ "▁F ra",
+ "▁Fr a",
+ "▁cho ice",
+ "▁ choice",
+ "▁с то",
+ "▁ст о",
+ "▁ сто",
+ "С Р",
+ "▁F eder",
+ "▁Fe der",
+ "▁Fed er",
+ "st on",
+ "sto n",
+ "s ton",
+ "▁f lag",
+ "▁fl ag",
+ "▁fla g",
+ "▁ flag",
+ "ki t",
+ "k it",
+ "Mod ule",
+ "▁с по",
+ "▁сп о",
+ "▁ спо",
+ "▁S tra",
+ "▁St ra",
+ "▁Str a",
+ "ic ks",
+ "ick s",
+ "i cks",
+ "▁h aven",
+ "▁ha ven",
+ "▁have n",
+ "▁hav en",
+ "▁M ass",
+ "▁Ma ss",
+ "▁Mas s",
+ "▁E mp",
+ "▁Em p",
+ "▁ Emp",
+ "▁P i",
+ "▁ Pi",
+ "▁P en",
+ "▁Pe n",
+ "Re ct",
+ "Rec t",
+ "R ect",
+ "▁K r",
+ "it at",
+ "ita t",
+ "i tat",
+ "el er",
+ "ele r",
+ "e ler",
+ "я бря",
+ "it et",
+ "ite t",
+ "▁St art",
+ "▁Sta rt",
+ "▁Star t",
+ "▁ Start",
+ "▁produ ced",
+ "▁produce d",
+ "▁по л",
+ "▁ пол",
+ "( _",
+ "▁de let",
+ "▁del et",
+ "▁h ot",
+ "▁ho t",
+ "▁ hot",
+ "▁Gesch ichte",
+ "~ ~",
+ "▁month s",
+ "▁mont hs",
+ "▁t od",
+ "▁to d",
+ "▁ tod",
+ "▁н и",
+ "▁ ни",
+ "ú s",
+ "te mp",
+ "tem p",
+ "t emp",
+ "▁D ez",
+ "▁De z",
+ "ype s",
+ "yp es",
+ "y pes",
+ "▁c ui",
+ "▁cu i",
+ "om mun",
+ "omm un",
+ "act ions",
+ "action s",
+ "a ctions",
+ "▁e igen",
+ "▁eig en",
+ "▁immedi ately",
+ "▁immediate ly",
+ "P L",
+ "▁Г о",
+ "▁B al",
+ "▁Ba l",
+ "▁ Bal",
+ "љ е",
+ "ul ui",
+ "ulu i",
+ "▁on line",
+ "▁ online",
+ "▁a ños",
+ "▁añ os",
+ "▁año s",
+ "▁name space",
+ "▁names pace",
+ "▁ namespace",
+ "▁m ond",
+ "▁mon d",
+ "▁mo nd",
+ "▁ mond",
+ "▁B ase",
+ "▁Bas e",
+ "▁Ba se",
+ "▁ Base",
+ "▁Can ada",
+ "▁Canad a",
+ "et zt",
+ "etz t",
+ "} -",
+ "▁de fin",
+ "▁def in",
+ "▁ defin",
+ "▁dou bt",
+ "▁doub t",
+ "▁inv estig",
+ "▁invest ig",
+ "view s",
+ "vie ws",
+ "▁L ine",
+ "▁Li ne",
+ "▁Lin e",
+ "▁ Line",
+ "▁st age",
+ "▁sta ge",
+ "▁stag e",
+ "▁ stage",
+ "ett ings",
+ "ub re",
+ "u bre",
+ "f loat",
+ "▁P lay",
+ "▁Pl ay",
+ "▁Pla y",
+ "▁ Play",
+ "▁L as",
+ "▁La s",
+ "pt r",
+ "p tr",
+ "▁be comes",
+ "▁become s",
+ "▁becom es",
+ "est amp",
+ "esta mp",
+ "▁in dependent",
+ "▁indep endent",
+ "▁independ ent",
+ "▁anal ysis",
+ "▁ analysis",
+ "▁L ook",
+ "▁Lo ok",
+ "▁ Look",
+ "la in",
+ "l ain",
+ "▁ра с",
+ "Re ference",
+ "▁s orry",
+ "▁sor ry",
+ "▁supp osed",
+ "▁suppose d",
+ "▁sup posed",
+ "û t",
+ "▁deg ree",
+ "ut z",
+ "u tz",
+ "M M",
+ "▁des ired",
+ "▁desire d",
+ "ł y",
+ "▁l en",
+ "▁le n",
+ "▁ len",
+ "▁al one",
+ "▁ alone",
+ "sign ed",
+ "sig ned",
+ "s igned",
+ "▁S ta",
+ "▁St a",
+ "Per son",
+ "Pers on",
+ "P erson",
+ "▁app lied",
+ "▁B ack",
+ "▁Ba ck",
+ "▁Bac k",
+ "▁ Back",
+ "▁m ars",
+ "▁ma rs",
+ "▁mar s",
+ "Par t",
+ "Pa rt",
+ "P art",
+ "▁D id",
+ "▁Di d",
+ "▁ Did",
+ "▁extern es",
+ "▁externe s",
+ "▁n p",
+ "▁ np",
+ "on go",
+ "ong o",
+ "▁e sta",
+ "▁est a",
+ "▁es ta",
+ "▁ esta",
+ "Bl ock",
+ "B lock",
+ "▁p ou",
+ "▁po u",
+ "ad ores",
+ "ado res",
+ "ador es",
+ "▁St udio",
+ "▁Stud io",
+ "▁ Studio",
+ ". $",
+ "▁re ached",
+ "▁reach ed",
+ "bo t",
+ "b ot",
+ "▁J uni",
+ "▁Ju ni",
+ "▁Jun i",
+ "to ns",
+ "ton s",
+ "t ons",
+ "it el",
+ "ite l",
+ "i tel",
+ "▁G ar",
+ "▁Ga r",
+ "▁art icles",
+ "▁article s",
+ "▁ articles",
+ "▁D istrict",
+ "▁Dist rict",
+ "▁tr ouble",
+ "▁trou ble",
+ "li de",
+ "l ide",
+ "▁F ound",
+ "▁Fou nd",
+ "▁Fo und",
+ "▁ Found",
+ "á d",
+ "▁e quip",
+ "▁equ ip",
+ "▁in ternal",
+ "▁int ernal",
+ "▁inter nal",
+ "▁intern al",
+ "▁ internal",
+ "'] ,",
+ "' ],",
+ "▁a sync",
+ "▁as ync",
+ "▁ async",
+ "U B",
+ "ge l",
+ "g el",
+ "▁a i",
+ "▁ ai",
+ "ens ure",
+ "▁app eared",
+ "▁appear ed",
+ "▁appe ared",
+ "▁$ _",
+ "▁ $_",
+ "▁max imum",
+ "▁maxim um",
+ "▁С и",
+ "р ь",
+ "▁ann oun",
+ "▁anno un",
+ "ла сь",
+ "▁c m",
+ "▁ cm",
+ "га н",
+ "г ан",
+ "au pt",
+ "a upt",
+ "▁l atter",
+ "▁lat ter",
+ "▁pl atform",
+ "▁plat form",
+ "▁ platform",
+ "▁d ra",
+ "▁dr a",
+ "▁ dra",
+ "▁cap ital",
+ "▁capit al",
+ "▁sol ved",
+ "▁solve d",
+ "ri z",
+ "r iz",
+ "ed ic",
+ "edi c",
+ "e dic",
+ "▁M ur",
+ "▁Mu r",
+ "▁T op",
+ "▁To p",
+ "▁ Top",
+ "т ся",
+ "Pa nel",
+ "Pane l",
+ "Pan el",
+ "P anel",
+ "ru le",
+ "r ule",
+ "et ic",
+ "eti c",
+ "▁R en",
+ "▁Re n",
+ "▁Wik imedia",
+ "▁ Wikimedia",
+ "▁T O",
+ "▁ TO",
+ "se cond",
+ "sec ond",
+ "is l",
+ "i sl",
+ "▁h y",
+ "▁ hy",
+ "▁n iet",
+ "▁nie t",
+ "▁ni et",
+ "▁lo aded",
+ "▁load ed",
+ "▁ loaded",
+ "di g",
+ "d ig",
+ "▁ma yo",
+ "▁may o",
+ "[ :",
+ "Ac c",
+ "A cc",
+ "▁b ek",
+ "▁be k",
+ "▁ bek",
+ "ни ю",
+ "lo gin",
+ "log in",
+ "t x",
+ "▁F ur",
+ "▁Fu r",
+ "▁S anta",
+ "▁San ta",
+ "▁Sant a",
+ "az z",
+ "a zz",
+ "▁con duct",
+ "▁cond uct",
+ "▁condu ct",
+ "▁In dia",
+ "▁Ind ia",
+ "Or der",
+ "Ord er",
+ "ir th",
+ "irt h",
+ "t w",
+ "} +",
+ "▁w ieder",
+ "▁wie der",
+ "▁E du",
+ "▁Ed u",
+ "A V",
+ "▁` ``",
+ "▁`` `",
+ "▁ ```",
+ "▁man ually",
+ "▁manual ly",
+ "▁R ead",
+ "▁Re ad",
+ "▁ Read",
+ "fortun ately",
+ "▁R un",
+ "▁Ru n",
+ "▁ Run",
+ "▁A ward",
+ "▁Aw ard",
+ "▁F oot",
+ "▁Foo t",
+ "▁Fo ot",
+ "▁ Foot",
+ "* )",
+ "par ams",
+ "param s",
+ "pa rams",
+ "para ms",
+ "п і",
+ "▁n ative",
+ "▁nat ive",
+ "▁ native",
+ "ri ft",
+ "rif t",
+ "r ift",
+ "▁ ä",
+ "AT H",
+ "A TH",
+ "▁your self",
+ "▁yours elf",
+ "▁p rior",
+ "▁pr ior",
+ "▁pri or",
+ "▁c it",
+ "▁ci t",
+ "▁ cit",
+ "ä h",
+ "▁tre at",
+ "▁me as",
+ "rib uted",
+ "ribute d",
+ "ribu ted",
+ "▁c lar",
+ "▁cl ar",
+ "▁cla r",
+ "▁ clar",
+ "ca rd",
+ "car d",
+ "c ard",
+ "RO R",
+ "R OR",
+ "il les",
+ "ill es",
+ "ille s",
+ "i lles",
+ "▁l ayer",
+ "▁la yer",
+ "▁lay er",
+ "▁ layer",
+ "au er",
+ "a uer",
+ "▁r at",
+ "▁ra t",
+ "▁ rat",
+ "bern ate",
+ "▁st ato",
+ "▁stat o",
+ "▁sta to",
+ "▁Ch ina",
+ "▁Chi na",
+ "▁$ ('#",
+ "▁$(' #",
+ "▁n aar",
+ "▁na ar",
+ "zi p",
+ "z ip",
+ "▁$ {\\",
+ "▁${ \\",
+ "▁appreci ated",
+ "▁appreciate d",
+ "▁и ме",
+ "▁им е",
+ "ż y",
+ "▁prze z",
+ "▁prz ez",
+ "▁Ind ian",
+ "▁India n",
+ "▁T od",
+ "▁To d",
+ "▁S ource",
+ "▁ Source",
+ "▁дру ги",
+ "in ternal",
+ "int ernal",
+ "inter nal",
+ "intern al",
+ "ion ale",
+ "ional e",
+ "iona le",
+ "Pro duct",
+ "Produ ct",
+ "▁M en",
+ "▁Me n",
+ "▁ Men",
+ "▁u pper",
+ "▁up per",
+ "▁upp er",
+ "▁ upper",
+ "▁E very",
+ "▁Ev ery",
+ "▁Ever y",
+ "▁ Every",
+ "}, \\",
+ "} ,\\",
+ "▁print f",
+ "▁prin tf",
+ "▁ printf",
+ "▁contin ued",
+ "▁continu ed",
+ "▁continue d",
+ "▁n odes",
+ "▁no des",
+ "▁node s",
+ "▁nod es",
+ "▁ nodes",
+ "л ки",
+ "▁n ice",
+ "▁ni ce",
+ "▁nic e",
+ "▁ nice",
+ "mod ules",
+ "module s",
+ "ei gn",
+ "e ign",
+ "▁M ex",
+ "▁Me x",
+ "▁Acc ording",
+ "▁un defined",
+ "▁und efined",
+ "▁ undefined",
+ "▁b inary",
+ "▁bin ary",
+ "▁ binary",
+ "cu t",
+ "c ut",
+ "Cur rent",
+ "C urrent",
+ "ed y",
+ "e dy",
+ "}} {",
+ "} }{",
+ "ble s",
+ "bl es",
+ "b les",
+ "▁во й",
+ "▁ вой",
+ "sc ri",
+ "scr i",
+ "s cri",
+ "eq n",
+ "Ch anged",
+ "Change d",
+ "▁kö z",
+ "▁rem ote",
+ "▁ remote",
+ "в ля",
+ "▁qu el",
+ "▁que l",
+ "▁q uel",
+ "▁ quel",
+ "▁al ign",
+ "▁ali gn",
+ "▁ align",
+ "▁п ар",
+ "▁па р",
+ "▁ пар",
+ "S V",
+ "ye r",
+ "y er",
+ "▁Cal iforn",
+ "▁p laces",
+ "▁pl aces",
+ "▁place s",
+ "▁pla ces",
+ "▁prim ary",
+ "▁pri mary",
+ "▁prima ry",
+ "▁ primary",
+ "▁con v",
+ "▁ conv",
+ "▁J uli",
+ "▁Jul i",
+ "▁Ju li",
+ "▁vis ual",
+ "▁ visual",
+ "▁S elect",
+ "▁Se lect",
+ "▁Sel ect",
+ "▁Sele ct",
+ "▁ Select",
+ "at ory",
+ "ator y",
+ "ato ry",
+ "= (",
+ "is er",
+ "ise r",
+ "i ser",
+ "▁int ent",
+ "▁inte nt",
+ "▁inten t",
+ "▁ intent",
+ "su r",
+ "s ur",
+ "cont ainer",
+ "ic ed",
+ "ice d",
+ "i ced",
+ "▁bo ard",
+ "▁ board",
+ "as tr",
+ "ast r",
+ "a str",
+ "om ial",
+ "omi al",
+ "ве т",
+ "в ет",
+ "з ва",
+ "▁c ru",
+ "▁cr u",
+ "▁Ok tober",
+ "sa ve",
+ "s ave",
+ "▁gre ater",
+ "▁great er",
+ "▁in n",
+ "▁i nn",
+ "▁ inn",
+ "▁p icture",
+ "▁ picture",
+ "▁Т о",
+ "▁obtain ed",
+ "▁obt ained",
+ "Wik imedia",
+ "ú blic",
+ "▁l ors",
+ "▁lo rs",
+ "▁m ont",
+ "▁mon t",
+ "▁mo nt",
+ "▁ mont",
+ "ob re",
+ "o bre",
+ "▁c ivil",
+ "▁ci vil",
+ "▁civ il",
+ "▁const ruction",
+ "▁construct ion",
+ "▁constru ction",
+ "▁W elt",
+ "▁We lt",
+ "▁Wel t",
+ "▁U nder",
+ "▁Un der",
+ "▁Und er",
+ "▁ Under",
+ "und ert",
+ "under t",
+ "unde rt",
+ "▁ed ge",
+ "▁ edge",
+ "▁L iste",
+ "▁List e",
+ "▁Li ste",
+ "▁Lis te",
+ "cs v",
+ "c sv",
+ "▁ex periment",
+ "▁exper iment",
+ "local host",
+ "▁E dit",
+ "▁Ed it",
+ "▁ Edit",
+ "gr eg",
+ "gre g",
+ "g reg",
+ "ov á",
+ "o vá",
+ "љ а",
+ "ms g",
+ "m sg",
+ "▁G reen",
+ "▁Gr een",
+ "▁Gre en",
+ "▁Gree n",
+ "▁ Green",
+ "Di alog",
+ "D ialog",
+ "Id ent",
+ "I dent",
+ "▁J S",
+ "▁ JS",
+ "^{ (",
+ "^ {(",
+ "▁slä ktet",
+ "__ __",
+ "___ _",
+ "_ ___",
+ "Pro ject",
+ "▁bes kre",
+ "▁b er",
+ "▁be r",
+ "▁ ber",
+ "▁would n",
+ "▁re act",
+ "▁ react",
+ "He l",
+ "H el",
+ "z w",
+ "▁W ashington",
+ "or ie",
+ "ori e",
+ "o rie",
+ "ta sk",
+ "t ask",
+ "▁c ategory",
+ "▁categ ory",
+ "▁categor y",
+ "▁ category",
+ "▁art ist",
+ "an no",
+ "ann o",
+ "▁o ok",
+ "▁ ook",
+ "am men",
+ "amm en",
+ "▁Min ister",
+ "▁de clar",
+ "▁dec lar",
+ "▁decl ar",
+ "▁decla r",
+ "▁K ey",
+ "▁Ke y",
+ "▁ Key",
+ ", .",
+ "▁m ach",
+ "▁ma ch",
+ "▁mac h",
+ "▁w w",
+ "▁ ww",
+ "is en",
+ "ise n",
+ "i sen",
+ "Fr an",
+ "F ran",
+ "▁Ро сси",
+ "▁Рос си",
+ "бо р",
+ "б ор",
+ "т ри",
+ "▁r ock",
+ "▁ro ck",
+ "▁ rock",
+ "qu is",
+ "qui s",
+ "q uis",
+ "mo s",
+ "m os",
+ "пе ра",
+ "пер а",
+ "п ера",
+ "▁est erni",
+ "▁g old",
+ "▁go ld",
+ "▁gol d",
+ "Window s",
+ "W indows",
+ "% %",
+ "▁part ial",
+ "▁parti al",
+ "▁ partial",
+ "▁we ight",
+ "▁ weight",
+ "▁s pr",
+ "▁sp r",
+ "▁ spr",
+ "}) .",
+ "} ).",
+ "▁fran çais",
+ "fu n",
+ "f un",
+ "▁th ous",
+ "▁thou s",
+ "ho lder",
+ "hol der",
+ "hold er",
+ "h older",
+ "▁g one",
+ "▁go ne",
+ "▁ Č",
+ "▁re nd",
+ "▁r end",
+ "▁ren d",
+ "▁ rend",
+ "D A",
+ "▁answer ed",
+ "▁F alse",
+ "▁Fal se",
+ "▁ False",
+ "B uffer",
+ "▁d augh",
+ "▁da ugh",
+ ".- -",
+ ". --",
+ "▁S how",
+ "▁Sh ow",
+ "▁Sho w",
+ "▁ Show",
+ "▁re ct",
+ "▁r ect",
+ "▁rec t",
+ "▁ rect",
+ "▁K re",
+ "▁Kr e",
+ "d r",
+ "os oph",
+ "oso ph",
+ "▁y ield",
+ "ur ity",
+ "uri ty",
+ "to String",
+ "av al",
+ "ava l",
+ "a val",
+ "Po l",
+ "P ol",
+ "▁l ock",
+ "▁lo ck",
+ "▁loc k",
+ "▁ lock",
+ "im ation",
+ "ima tion",
+ "imat ion",
+ "ant ic",
+ "anti c",
+ "Lo cal",
+ "Loc al",
+ "L ocal",
+ "▁beskre vs",
+ "it és",
+ "ité s",
+ "gr id",
+ "g rid",
+ "у т",
+ "▁_ {",
+ "▁ _{",
+ "с і",
+ "FI LE",
+ "▁к м",
+ "▁spe ak",
+ "sum mary",
+ "pr op",
+ "pro p",
+ "p rop",
+ "java script",
+ "j avascript",
+ "z k",
+ "izont al",
+ "izon tal",
+ "▁tr ois",
+ "▁tro is",
+ "▁R od",
+ "▁Ro d",
+ "pr ise",
+ "ро во",
+ "ров о",
+ "р ово",
+ "▁o dd",
+ "▁od d",
+ "▁ odd",
+ "▁g est",
+ "▁ge st",
+ "▁ges t",
+ "▁ gest",
+ "▁produ ce",
+ "▁prod uce",
+ "▁w aar",
+ "▁wa ar",
+ "▁A v",
+ "▁ Av",
+ "ri bu",
+ "rib u",
+ "ва ння",
+ "ван ня",
+ "▁fin ished",
+ "▁finish ed",
+ "▁ad apt",
+ "▁S ar",
+ "▁Sa r",
+ "text it",
+ "tex tit",
+ "▁C e",
+ "▁F a",
+ "▁ Fa",
+ "os en",
+ "ose n",
+ "o sen",
+ "▁de riv",
+ "▁der iv",
+ "▁s hip",
+ "▁sh ip",
+ "▁ ship",
+ "▁o pin",
+ "▁op in",
+ "▁E ven",
+ "▁Ev en",
+ "ge sch",
+ "ges ch",
+ "g esch",
+ "▁supp ose",
+ "▁sup pose",
+ "▁F er",
+ "▁Fe r",
+ "ско е",
+ "▁w orden",
+ "▁word en",
+ "▁wor den",
+ "se y",
+ "s ey",
+ "hl ine",
+ "h line",
+ "▁Un ion",
+ "▁ Union",
+ "▁/ **",
+ "▁/* *",
+ "▁ /**",
+ "▁v ez",
+ "▁ve z",
+ "▁ vez",
+ "▁Colleg amenti",
+ "▁Soci ety",
+ "▁Soc iety",
+ "▁e conom",
+ "▁econ om",
+ "▁ec onom",
+ "š í",
+ "o i",
+ "▁or ient",
+ "▁ orient",
+ "▁T eil",
+ "▁Te il",
+ "re nt",
+ "ren t",
+ "r ent",
+ "ле кс",
+ "лек с",
+ "▁s olid",
+ "▁sol id",
+ "▁c art",
+ "▁car t",
+ "▁ca rt",
+ "▁ cart",
+ "******** ********",
+ "▁c ab",
+ "▁ca b",
+ "▁M essage",
+ "▁Mess age",
+ "▁ Message",
+ "do ts",
+ "dot s",
+ "d ots",
+ "▁é g",
+ "▁ ég",
+ "▁t we",
+ "▁tw e",
+ "ag a",
+ "a ga",
+ "▁n az",
+ "▁na z",
+ "▁M icrosoft",
+ "▁Micro soft",
+ "▁ Microsoft",
+ "▁under arter",
+ "pp en",
+ "ppe n",
+ "p pen",
+ "▁re cent",
+ "▁rec ent",
+ "▁rece nt",
+ "▁n et",
+ "▁ne t",
+ "▁ net",
+ "▁res ources",
+ "▁resource s",
+ "▁ resources",
+ "St e",
+ "S te",
+ ". \\",
+ "▁S O",
+ "▁ SO",
+ "ло м",
+ "л ом",
+ "▁c ele",
+ "▁ce le",
+ "▁cel e",
+ "▁l ic",
+ "▁li c",
+ "▁ lic",
+ "▁ben ef",
+ "▁bene f",
+ "ld ots",
+ "l dots",
+ "▁se rial",
+ "▁ser ial",
+ "▁seria l",
+ "▁ serial",
+ "In teger",
+ "cl es",
+ "cle s",
+ "c les",
+ "▁m iles",
+ "▁mil es",
+ "▁mi les",
+ "▁mile s",
+ "▁A le",
+ "▁Al e",
+ "▁en tered",
+ "▁ent ered",
+ "▁enter ed",
+ "▁T wo",
+ "▁Tw o",
+ "▁ Two",
+ "wi e",
+ "w ie",
+ "▁in cludes",
+ "▁incl udes",
+ "▁includ es",
+ "▁include s",
+ "▁inclu des",
+ "▁ includes",
+ "▁E ach",
+ "▁ Each",
+ "el ling",
+ "ell ing",
+ "elli ng",
+ "qu er",
+ "que r",
+ "q uer",
+ "▁D om",
+ "▁Do m",
+ "▁ Dom",
+ "p f",
+ "W S",
+ "▁stra ight",
+ "▁S tan",
+ "▁St an",
+ "▁Sta n",
+ "▁n os",
+ "▁no s",
+ "▁ nos",
+ "í cul",
+ "at ro",
+ "atr o",
+ "▁C enter",
+ "▁Cent er",
+ "▁ Center",
+ "F T",
+ "▁In ga",
+ "▁Ing a",
+ "il o",
+ "i lo",
+ "▁w ww",
+ "▁ww w",
+ "▁ www",
+ "js fiddle",
+ "ni c",
+ "n ic",
+ "▁Europe an",
+ "▁com mer",
+ "▁comm er",
+ "▁comme r",
+ "▁g irl",
+ "▁gi rl",
+ "▁gir l",
+ "to tal",
+ "tot al",
+ "t otal",
+ "▁S tar",
+ "▁St ar",
+ "▁Sta r",
+ "▁ Star",
+ "▁sugg ested",
+ "▁suggest ed",
+ "pa l",
+ "p al",
+ "▁zw ischen",
+ "пи са",
+ "пис а",
+ "I M",
+ "▁hand ler",
+ "▁handle r",
+ "▁ handler",
+ "▁Pro gram",
+ "▁Pr ogram",
+ "▁ Program",
+ "xs l",
+ "x sl",
+ "ál y",
+ "á ly",
+ "B U",
+ ",- -",
+ ", --",
+ "▁v id",
+ "▁vi d",
+ "▁ vid",
+ "▁estab lished",
+ "▁establish ed",
+ "▁S piel",
+ "▁Sp iel",
+ "om etry",
+ "ome try",
+ "omet ry",
+ "un es",
+ "une s",
+ "u nes",
+ "▁s it",
+ "▁si t",
+ "▁in her",
+ "▁p uis",
+ "▁pu is",
+ "▁ puis",
+ "▁ être",
+ "▁M ost",
+ "▁Mo st",
+ "▁Mos t",
+ "He ader",
+ "Head er",
+ "in sert",
+ "ins ert",
+ "▁s ist",
+ "▁si st",
+ "▁f avor",
+ "▁fa vor",
+ "▁fav or",
+ "de st",
+ "des t",
+ "d est",
+ "▁ent ity",
+ "▁ entity",
+ "Ca l",
+ "C al",
+ "▁There fore",
+ "D D",
+ "; ;",
+ "▁Dez ember",
+ "▁R h",
+ "im ents",
+ "iment s",
+ "imen ts",
+ "i ments",
+ "▁return ing",
+ "st o",
+ "s to",
+ "▁Val ue",
+ "▁ Value",
+ "▁l iber",
+ "▁li ber",
+ "▁lib er",
+ "▁Res ult",
+ "▁ Result",
+ "▁b ind",
+ "▁bi nd",
+ "▁bin d",
+ "▁ bind",
+ "vo ir",
+ "v oir",
+ "▁T im",
+ "▁Ti m",
+ "▁ Tim",
+ "▁M ovie",
+ "▁Mo vie",
+ "▁Mov ie",
+ "▁ Movie",
+ "we g",
+ "w eg",
+ "ke t",
+ "k et",
+ "▁и сто",
+ "▁ис то",
+ "▁fri ends",
+ "▁friend s",
+ "▁f n",
+ "▁ fn",
+ "▁é l",
+ "▁ él",
+ "▁& =",
+ "▁ &=",
+ "ar den",
+ "ard en",
+ "arde n",
+ "ff icial",
+ "ffic ial",
+ "▁comm unity",
+ "▁commun ity",
+ "▁ community",
+ "▁a pi",
+ "▁ap i",
+ "▁ api",
+ "Ar gs",
+ "Arg s",
+ "ie ren",
+ "ier en",
+ "iere n",
+ "i eren",
+ "▁d ann",
+ "▁da nn",
+ "▁dan n",
+ "om orph",
+ "ad r",
+ "a dr",
+ "lo op",
+ "l oop",
+ "um an",
+ "uma n",
+ "u man",
+ "▁v ous",
+ "▁vo us",
+ "▁vou s",
+ "▁ vous",
+ "bs t",
+ "b st",
+ "sub mit",
+ "\\ |",
+ "ти н",
+ "т ин",
+ "Cont ainer",
+ "as ket",
+ "ask et",
+ "? )",
+ "Se c",
+ "S ec",
+ "▁d rive",
+ "▁dr ive",
+ "▁dri ve",
+ "▁driv e",
+ "▁ drive",
+ "As s",
+ "A ss",
+ "▁s we",
+ "▁sw e",
+ "▁a mer",
+ "▁am er",
+ "▁ amer",
+ "▁m ine",
+ "▁min e",
+ "▁mi ne",
+ "▁ mine",
+ "▁H am",
+ "▁Ha m",
+ "▁av ait",
+ "▁ avait",
+ "▁H on",
+ "▁Ho n",
+ "▁a près",
+ "▁ap rès",
+ "▁apr ès",
+ "▁ après",
+ "▁M ann",
+ "▁Man n",
+ "▁Ma nn",
+ "сь ка",
+ "ськ а",
+ "▁incre ase",
+ "▁t y",
+ "▁ ty",
+ "sk y",
+ "s ky",
+ "▁acc ur",
+ "▁ac cur",
+ "art icle",
+ "we ight",
+ "weig ht",
+ "▁s ex",
+ "▁se x",
+ "▁ sex",
+ "▁list ade",
+ "▁lista de",
+ "/* *",
+ "/ **",
+ "▁est á",
+ "}} $",
+ "} }$",
+ "ar go",
+ "arg o",
+ "def ine",
+ "defin e",
+ "▁со став",
+ "▁соста в",
+ "s ession",
+ "ad s",
+ "a ds",
+ "ст ви",
+ "ств и",
+ "▁L aw",
+ "▁La w",
+ "▁d ialog",
+ "▁di alog",
+ "▁dia log",
+ "▁ dialog",
+ "▁dup licate",
+ "▁é p",
+ "▁ ép",
+ "▁v oc",
+ "▁vo c",
+ "fr i",
+ "f ri",
+ "▁g reen",
+ "▁gr een",
+ "▁gre en",
+ "▁ green",
+ "▁h idden",
+ "▁hid den",
+ "▁ hidden",
+ "▁Is land",
+ "▁di ag",
+ "▁dia g",
+ "ow ej",
+ "owe j",
+ "my sql",
+ "mys ql",
+ "mysq l",
+ "te il",
+ "tei l",
+ "t eil",
+ "r ä",
+ "ik an",
+ "ika n",
+ "i kan",
+ "▁Jos é",
+ "al ed",
+ "ale d",
+ "a led",
+ "Run time",
+ "R untime",
+ "▁t rain",
+ "▁tr ain",
+ "▁tra in",
+ "▁ train",
+ "▁Di vision",
+ "▁Div ision",
+ "ни ц",
+ "▁S pan",
+ "▁Sp an",
+ "▁ Span",
+ "ни ма",
+ "ним а",
+ ")= \\",
+ ") =\\",
+ "та н",
+ "т ан",
+ "▁st ay",
+ "▁sta y",
+ "▁f oo",
+ "▁fo o",
+ "▁ foo",
+ "▁acc om",
+ "▁ac com",
+ "▁h ers",
+ "▁he rs",
+ "▁her s",
+ "▁на у",
+ "▁M ün",
+ "ide os",
+ "ideo s",
+ "st atic",
+ "stat ic",
+ "▁re ady",
+ "▁read y",
+ "▁ ready",
+ "] `",
+ "▁vis ible",
+ "▁vi sible",
+ "▁ visible",
+ "▁H ope",
+ "▁Ho pe",
+ "▁Hop e",
+ "ul ated",
+ "ula ted",
+ "ulate d",
+ "▁C ult",
+ "▁Cu lt",
+ "ст ро",
+ "стр о",
+ "с тро",
+ "C o",
+ "▁sm aller",
+ "▁small er",
+ "at ura",
+ "atur a",
+ "atu ra",
+ "▁perfect ly",
+ "re q",
+ "r eq",
+ "▁pro posed",
+ "▁prop osed",
+ "▁propos ed",
+ "▁propose d",
+ "▁deg li",
+ "Se arch",
+ "S earch",
+ "▁i ch",
+ "▁ic h",
+ "▁ ich",
+ "Ma x",
+ "M ax",
+ "▁vol ume",
+ "▁ volume",
+ "exec ute",
+ "gr e",
+ "g re",
+ "▁s port",
+ "▁sp ort",
+ "▁spo rt",
+ "ud ad",
+ "uda d",
+ "P T",
+ "▁Rec ords",
+ "▁Record s",
+ "▁c ook",
+ "▁co ok",
+ "▁ cook",
+ "▁exp and",
+ "▁ expand",
+ "б і",
+ "▁al tri",
+ "▁alt ri",
+ "pp et",
+ "ppe t",
+ "p pet",
+ "ar se",
+ "ars e",
+ "▁w et",
+ "▁we t",
+ "▁B ob",
+ "▁Bo b",
+ "▁ Bob",
+ "▁F C",
+ "▁ FC",
+ "▁Associ ation",
+ "uj e",
+ "u je",
+ "▁f el",
+ "▁fe l",
+ "▁ fel",
+ "▁с лу",
+ "▁ слу",
+ "▁B ig",
+ "▁Bi g",
+ "▁ Big",
+ "/ \\",
+ "G e",
+ "wh ile",
+ "{ (",
+ "▁su fficient",
+ "Pos ition",
+ "P osition",
+ "▁under standing",
+ "▁understand ing",
+ "▁n ue",
+ "▁nu e",
+ "▁r az",
+ "▁ra z",
+ "▁ raz",
+ "▁y e",
+ "▁ ye",
+ "he m",
+ "h em",
+ "N um",
+ "▁Pro ject",
+ "▁ Project",
+ "▁I ts",
+ "▁It s",
+ "▁h asta",
+ "▁ha sta",
+ "▁has ta",
+ "▁hast a",
+ "en so",
+ "ens o",
+ "▁w ire",
+ "▁wir e",
+ "▁ wire",
+ "Re t",
+ "R et",
+ "u j",
+ "pro of",
+ "▁re levant",
+ "▁relev ant",
+ "▁part ir",
+ "▁parti r",
+ "▁a go",
+ "▁ag o",
+ "▁ ago",
+ "if icate",
+ "ific ate",
+ "ifica te",
+ "▁d omin",
+ "▁do min",
+ "▁dom in",
+ "▁ domin",
+ "▁b oy",
+ "▁bo y",
+ "▁ boy",
+ "▁p lant",
+ "▁pl ant",
+ "▁pla nt",
+ "▁plan t",
+ "▁ plant",
+ "▁enc oding",
+ "▁ encoding",
+ "▁th rows",
+ "▁thr ows",
+ "▁throw s",
+ "▁thro ws",
+ "▁R ock",
+ "▁Ro ck",
+ "▁Roc k",
+ "zo ne",
+ "zon e",
+ "z one",
+ "ga ng",
+ "gan g",
+ "g ang",
+ "wid get",
+ "w idget",
+ "▁interest ing",
+ "DE R",
+ "D ER",
+ "▁d emon",
+ "▁de mon",
+ "▁dem on",
+ "▁demo n",
+ "▁off ice",
+ "▁offic e",
+ "▁ office",
+ "am t",
+ "a mt",
+ "ät er",
+ "ä ter",
+ "▁Wh ite",
+ "▁Whit e",
+ "▁ White",
+ "▁v ersch",
+ "▁ver sch",
+ "▁vers ch",
+ "▁die ser",
+ "▁dies er",
+ "▁diese r",
+ "▁M ount",
+ "▁Mo unt",
+ "▁Mou nt",
+ "▁ Mount",
+ "▁stud ents",
+ "▁student s",
+ "▁P ub",
+ "▁Pu b",
+ "▁ Pub",
+ "▁Д е",
+ "ij a",
+ "i ja",
+ "▁C y",
+ "▁ Cy",
+ "▁Californ ia",
+ "▁ab ril",
+ "äl l",
+ "ä ll",
+ "▁ч ем",
+ "▁че м",
+ "T V",
+ "▁m és",
+ "▁mé s",
+ "▁decl ared",
+ "▁decla red",
+ "▁declar ed",
+ "▁declare d",
+ "▁ ю",
+ "ő l",
+ "ap pa",
+ "app a",
+ "a ppa",
+ "▁Б е",
+ "ec ho",
+ "ech o",
+ "e cho",
+ "num er",
+ "nu mer",
+ "n umer",
+ "▁po sted",
+ "▁pos ted",
+ "▁post ed",
+ "▁poste d",
+ "▁в ер",
+ "▁ве р",
+ "▁ вер",
+ "▁годи не",
+ "▁we ak",
+ "▁ weak",
+ "▁Re public",
+ "▁Rep ublic",
+ "▁Repub lic",
+ "▁ch ampion",
+ "▁champ ion",
+ "ensure math",
+ "you r",
+ "yo ur",
+ "y our",
+ "▁O ber",
+ "▁Ob er",
+ "▁Cent ral",
+ "is a",
+ "i sa",
+ "ан д",
+ "а нд",
+ "y y",
+ "▁full y",
+ "▁ful ly",
+ "▁ fully",
+ "▁S D",
+ "▁ SD",
+ "▁Lin ux",
+ "▁ Linux",
+ "▁Sc ott",
+ "▁Scot t",
+ "part ment",
+ "ko n",
+ "k on",
+ "▁cont ract",
+ "▁contr act",
+ "▁contra ct",
+ "▁O F",
+ "▁ OF",
+ "▁a le",
+ "▁al e",
+ "▁ ale",
+ "▁A nn",
+ "▁An n",
+ "▁на д",
+ "▁ над",
+ "la h",
+ "l ah",
+ "▁N ext",
+ "▁Ne xt",
+ "▁ Next",
+ "or en",
+ "ore n",
+ "o ren",
+ "▁d isk",
+ "▁di sk",
+ "▁dis k",
+ "▁ disk",
+ "▁e g",
+ "▁ eg",
+ "at u",
+ "a tu",
+ "ло ги",
+ "лог и",
+ "▁g ames",
+ "▁game s",
+ "▁ga mes",
+ "▁gam es",
+ "Le ft",
+ "L eft",
+ "▁l u",
+ "▁ lu",
+ "▁fin ite",
+ "▁finit e",
+ "▁ finite",
+ "▁к и",
+ "▁ ки",
+ "▁cr ash",
+ "▁cra sh",
+ "ph er",
+ "phe r",
+ "p her",
+ "ex e",
+ "e xe",
+ "AT ION",
+ "▁br other",
+ "▁bro ther",
+ "En g",
+ "E ng",
+ "ta t",
+ "t at",
+ "▁In teger",
+ "▁ Integer",
+ "но му",
+ "ном у",
+ "н ому",
+ "▁col on",
+ "▁co lon",
+ "▁ colon",
+ "i qu",
+ ")) .",
+ ") ).",
+ "iv i",
+ "i vi",
+ "▁M ethod",
+ "▁Met hod",
+ "▁ Method",
+ "ar ten",
+ "art en",
+ "arte n",
+ "Un i",
+ "U ni",
+ "ve ctor",
+ "vec tor",
+ "v ector",
+ "▁w ood",
+ "▁wo od",
+ "▁ wood",
+ "р т",
+ "▁Л е",
+ "▁siè cle",
+ "▁g ent",
+ "▁ge nt",
+ "▁gen t",
+ "▁ gent",
+ "} \r",
+ "▁cont ents",
+ "▁content s",
+ "▁conten ts",
+ "▁ contents",
+ "▁com pan",
+ "▁comp an",
+ "G o",
+ "▁j ou",
+ "▁jo u",
+ "▁ jou",
+ "ue nt",
+ "uen t",
+ "u ent",
+ "As ync",
+ "A sync",
+ "print f",
+ "▁M odel",
+ "▁Mod el",
+ "▁Mo del",
+ "▁Mode l",
+ "▁ Model",
+ "▁ke pt",
+ "AS E",
+ "A SE",
+ "▁prov ides",
+ "▁provide s",
+ "▁Ab gerufen",
+ "▁G all",
+ "▁Gal l",
+ "▁Ga ll",
+ "▁Al f",
+ "S A",
+ "▁M em",
+ "▁Me m",
+ "▁ Mem",
+ "▁k ter",
+ "▁ kter",
+ "▁B ru",
+ "▁Br u",
+ "And roid",
+ "( :",
+ "▁У краї",
+ "▁Укра ї",
+ "N e",
+ "M in",
+ "at r",
+ "a tr",
+ "▁H al",
+ "▁Ha l",
+ "de lete",
+ "del ete",
+ "od o",
+ "o do",
+ "▁n ão",
+ "èn e",
+ "è ne",
+ "▁calcul ate",
+ "▁calc ulate",
+ "Js on",
+ "J son",
+ "ke ys",
+ "key s",
+ "не й",
+ "н ей",
+ "▁h ence",
+ "▁hen ce",
+ "▁o w",
+ "▁ ow",
+ "▁L ib",
+ "▁Li b",
+ "▁ Lib",
+ "en o",
+ "e no",
+ "▁L ove",
+ "▁Lo ve",
+ "▁Lov e",
+ "os i",
+ "o si",
+ "wi de",
+ "wid e",
+ "w ide",
+ "▁s core",
+ "▁sc ore",
+ "▁ score",
+ "ful l",
+ "fu ll",
+ "f ull",
+ "во д",
+ "в од",
+ "▁determ ine",
+ "▁determin e",
+ "▁s paces",
+ "▁sp aces",
+ "▁space s",
+ "▁spac es",
+ "▁ spaces",
+ "ло ва",
+ "лов а",
+ "л ова",
+ "▁pe ut",
+ "▁peu t",
+ "ér al",
+ "éra l",
+ "é ral",
+ "ó ł",
+ "▁app oint",
+ "▁ap point",
+ "▁T w",
+ "▁ Tw",
+ "< ?",
+ "▁Or der",
+ "▁Ord er",
+ "▁ Order",
+ "▁h op",
+ "▁ho p",
+ "ran dom",
+ "rand om",
+ "r andom",
+ "ca che",
+ "c ache",
+ "▁dest roy",
+ "▁ destroy",
+ "▁r ace",
+ "▁ra ce",
+ "▁rac e",
+ "▁ race",
+ "T ag",
+ "▁r id",
+ "▁ri d",
+ "▁ rid",
+ "▁neg ative",
+ "▁ negative",
+ "Ca r",
+ "C ar",
+ "ens ional",
+ "ension al",
+ "d k",
+ "▁c ro",
+ "▁cr o",
+ "▁ cro",
+ "▁TH EN",
+ "▁THE N",
+ "▁$ .",
+ "▁ $.",
+ "en sk",
+ "ens k",
+ "N E",
+ "H O",
+ "▁k le",
+ "▁kl e",
+ "osp ital",
+ "kt e",
+ "k te",
+ "fér ences",
+ "férence s",
+ "ud es",
+ "ude s",
+ "u des",
+ "I R",
+ "ot ion",
+ "oti on",
+ "o tion",
+ "▁Re al",
+ "▁ Real",
+ "▁Febru ar",
+ "и н",
+ "▁O ld",
+ "▁Ol d",
+ "▁ Old",
+ "ко го",
+ "к ого",
+ "le ich",
+ "lei ch",
+ "▁ р",
+ "ía n",
+ "í an",
+ "▁г а",
+ "▁ га",
+ "ci de",
+ "cid e",
+ "c ide",
+ "la b",
+ "l ab",
+ "▁p ull",
+ "▁pu ll",
+ "▁pul l",
+ "▁ pull",
+ "▁' /",
+ "Lo ng",
+ "L ong",
+ ", $",
+ "▁appropri ate",
+ "▁бы ла",
+ "▁был а",
+ "f ühr",
+ "▁M edia",
+ "▁Me dia",
+ "▁Med ia",
+ "▁Medi a",
+ "▁ Media",
+ "▁m anner",
+ "▁man ner",
+ "▁Г е",
+ "de scription",
+ "des cription",
+ "Be an",
+ "▁L ar",
+ "▁La r",
+ "▁ Lar",
+ "'] ;",
+ "' ];",
+ "▁re lation",
+ "▁rel ation",
+ "▁rela tion",
+ "▁ relation",
+ "▁S orry",
+ "▁Sor ry",
+ "ha r",
+ "h ar",
+ "cp p",
+ "c pp",
+ "▁K o",
+ "▁exec ution",
+ "▁execut ion",
+ "▁ execution",
+ "in os",
+ "ino s",
+ "i nos",
+ "▁b ul",
+ "▁bu l",
+ "▁ bul",
+ "gr ade",
+ "gra de",
+ "grad e",
+ "g rade",
+ "▁M u",
+ "▁p il",
+ "▁pi l",
+ "wr it",
+ "w rit",
+ "ific ations",
+ "ification s",
+ "in ese",
+ "ine se",
+ "ines e",
+ "▁Ph ili",
+ "▁Phil i",
+ "d x",
+ "▁le ading",
+ "▁lead ing",
+ "▁ leading",
+ "▁J ournal",
+ "ov ed",
+ "ove d",
+ "o ved",
+ "▁cont ro",
+ "▁contr o",
+ "но ва",
+ "нов а",
+ "н ова",
+ "Y es",
+ "▁ch annel",
+ "▁ channel",
+ ")) ,",
+ ") ),",
+ "is ten",
+ "ist en",
+ "iste n",
+ "i sten",
+ "ak a",
+ "a ka",
+ "To String",
+ "ma s",
+ "m as",
+ "▁e tt",
+ "▁et t",
+ "▁ ett",
+ "▁for ces",
+ "▁force s",
+ "ul ations",
+ "ulation s",
+ "▁C all",
+ "▁Cal l",
+ "▁Ca ll",
+ "▁ Call",
+ "▁explan ation",
+ "or ing",
+ "ori ng",
+ "o ring",
+ "AT A",
+ "A TA",
+ "ch ter",
+ "cht er",
+ "chte r",
+ "wh en",
+ "w hen",
+ "V C",
+ "▁Jah rh",
+ "▁Jahr h",
+ "Ca se",
+ "C ase",
+ "▁comm ands",
+ "▁command s",
+ "▁ commands",
+ "▁r ich",
+ "▁ric h",
+ "▁ri ch",
+ "▁ rich",
+ "bu s",
+ "b us",
+ "F e",
+ "mb ox",
+ "m box",
+ "▁re con",
+ "▁rec on",
+ "ñ o",
+ "▁s hape",
+ "▁sh ape",
+ "▁ shape",
+ "ow y",
+ "o wy",
+ "en try",
+ "ent ry",
+ "entr y",
+ "it able",
+ "ita ble",
+ "i table",
+ "▁e lection",
+ "▁el ection",
+ "▁elect ion",
+ "▁ele ction",
+ "є ться",
+ "▁p rep",
+ "▁pr ep",
+ "▁pre p",
+ "▁ prep",
+ "v á",
+ "▁in fin",
+ "▁inf in",
+ "lo t",
+ "l ot",
+ "▁bo oks",
+ "▁book s",
+ "▁ books",
+ "▁U SA",
+ "▁US A",
+ "▁ USA",
+ "ли н",
+ "л ин",
+ "▁p om",
+ "▁po m",
+ "▁ pom",
+ "▁n as",
+ "▁na s",
+ "▁ nas",
+ "▁t ags",
+ "▁tag s",
+ "▁ta gs",
+ "▁ tags",
+ "▁exec uted",
+ "▁execute d",
+ "▁execut ed",
+ "ail le",
+ "ai lle",
+ "a ille",
+ "lu ng",
+ "l ung",
+ "▁Java Script",
+ "▁ JavaScript",
+ "▁b all",
+ "▁bal l",
+ "▁ba ll",
+ "▁ ball",
+ "▁ain si",
+ "▁P ri",
+ "▁Pr i",
+ "{ $",
+ "▁U N",
+ "▁ UN",
+ "▁R am",
+ "▁Ra m",
+ "▁h ear",
+ "▁he ar",
+ "▁U buntu",
+ ">( );",
+ ">() ;",
+ "> ();",
+ "▁p ure",
+ "▁pu re",
+ "▁pur e",
+ "▁em bed",
+ "▁emb ed",
+ "▁ embed",
+ "a ção",
+ "cont roller",
+ "control ler",
+ "▁mar ried",
+ "▁F ol",
+ "▁Fo l",
+ "fa mil",
+ "f amil",
+ "▁p rec",
+ "▁pr ec",
+ "▁pre c",
+ "▁ prec",
+ "▁rec urs",
+ "pa d",
+ "p ad",
+ "istr ation",
+ "istra tion",
+ "▁respect ively",
+ "▁respective ly",
+ "[ $",
+ "au tor",
+ "aut or",
+ "auto r",
+ "a utor",
+ "▁g rav",
+ "▁gr av",
+ "▁gra v",
+ "ie ra",
+ "ier a",
+ "i era",
+ "az ioni",
+ "azi oni",
+ "a zioni",
+ "▁B ul",
+ "▁Bu l",
+ "▁Austral ia",
+ "mon d",
+ "mo nd",
+ "m ond",
+ "▁T ro",
+ "▁Tr o",
+ "▁E le",
+ "▁El e",
+ "pack ages",
+ "package s",
+ "ms dn",
+ "▁A ls",
+ "▁Al s",
+ "▁pr zy",
+ "▁prz y",
+ "AR T",
+ "A RT",
+ "▁char ge",
+ "▁charg e",
+ "▁ charge",
+ "▁app lications",
+ "▁application s",
+ "▁applic ations",
+ "Un it",
+ "Uni t",
+ "U nit",
+ "ar en",
+ "are n",
+ "a ren",
+ "▁sud den",
+ "om eter",
+ "ome ter",
+ "omet er",
+ "o meter",
+ "▁d ot",
+ "▁do t",
+ "▁ dot",
+ "ac ji",
+ "a cji",
+ "кт ор",
+ "кто р",
+ "к тор",
+ "im in",
+ "imi n",
+ "i min",
+ "en ing",
+ "eni ng",
+ "e ning",
+ "▁d onde",
+ "▁do nde",
+ "▁don de",
+ "▁H o",
+ "tr ee",
+ "tre e",
+ "t ree",
+ "m b",
+ "▁d rag",
+ "▁dr ag",
+ "▁dra g",
+ "▁ drag",
+ "aj e",
+ "a je",
+ "▁in valid",
+ "▁ invalid",
+ "▁fin ish",
+ "la im",
+ "▁f eed",
+ "▁fe ed",
+ "▁fee d",
+ "▁ feed",
+ "▁N ap",
+ "▁Na p",
+ "ro om",
+ "r oom",
+ "im ages",
+ "ima ges",
+ "image s",
+ "▁са й",
+ "▁su cc",
+ "▁suc c",
+ "if fer",
+ "iff er",
+ "iffe r",
+ "▁a ño",
+ "▁añ o",
+ "▁c ual",
+ "▁cu al",
+ "ме ри",
+ "мер и",
+ "D R",
+ "▁B ilder",
+ "▁Bi lder",
+ "▁Bild er",
+ "▁Bil der",
+ "б ра",
+ "ra it",
+ "rai t",
+ "r ait",
+ "pa n",
+ "p an",
+ "ен ь",
+ "е нь",
+ "▁dist inct",
+ "▁K n",
+ "ön ig",
+ "ö nig",
+ "an ced",
+ "ance d",
+ "anc ed",
+ "▁lo ading",
+ "▁load ing",
+ "▁ loading",
+ "▁Te chn",
+ "▁S el",
+ "▁Se l",
+ "mu s",
+ "m us",
+ "▁r ail",
+ "▁ra il",
+ "▁st udent",
+ "▁stud ent",
+ "▁ student",
+ "▁not ice",
+ "▁s la",
+ "▁sl a",
+ "▁Д а",
+ "▁gu ard",
+ "▁ guard",
+ "▁D ay",
+ "▁Da y",
+ "▁ Day",
+ "ва ли",
+ "вал и",
+ "в али",
+ "Op tion",
+ "Opt ion",
+ "O ption",
+ "ais on",
+ "ai son",
+ "a ison",
+ "ip p",
+ "i pp",
+ "▁J un",
+ "▁Ju n",
+ "▁f ell",
+ "▁fe ll",
+ "▁fel l",
+ "▁ab solute",
+ "▁absol ute",
+ "▁ absolute",
+ "ов е",
+ "о ве",
+ "de bug",
+ "deb ug",
+ "▁S ud",
+ "▁Su d",
+ "п ы",
+ "ug ins",
+ "ugin s",
+ "▁view s",
+ "▁vie ws",
+ "▁ views",
+ "la y",
+ "l ay",
+ "▁s urr",
+ "▁su rr",
+ "▁sur r",
+ "▁st ood",
+ "▁sto od",
+ "▁ stood",
+ "▁в і",
+ "▁ ві",
+ "select ed",
+ "sel ected",
+ "г і",
+ "▁att ributes",
+ "▁attribute s",
+ "▁ attributes",
+ "fin al",
+ "fi nal",
+ "f inal",
+ "en da",
+ "end a",
+ "▁B on",
+ "▁Bo n",
+ "ne rs",
+ "ner s",
+ "n ers",
+ "▁W er",
+ "▁We r",
+ "bu r",
+ "b ur",
+ "it tel",
+ "itt el",
+ "itte l",
+ "▁m oving",
+ "▁mov ing",
+ "▁mo ving",
+ "▁P lan",
+ "▁Pl an",
+ "▁Pla n",
+ "▁ Plan",
+ "is ches",
+ "isch es",
+ "ische s",
+ "isc hes",
+ "J ava",
+ "▁b asis",
+ "▁bas is",
+ "▁B us",
+ "▁Bu s",
+ "▁ Bus",
+ "▁A u",
+ "▁I ll",
+ "▁Il l",
+ "▁ Ill",
+ "▁вре мя",
+ "▁ц ент",
+ "▁ цент",
+ "hand le",
+ "сту п",
+ "▁F ar",
+ "▁Fa r",
+ "▁o raz",
+ "▁or az",
+ "▁ora z",
+ "oc r",
+ "o cr",
+ "▁se it",
+ "▁sei t",
+ "on der",
+ "ond er",
+ "onde r",
+ "o nder",
+ "до м",
+ "д ом",
+ ": /",
+ "ch or",
+ "cho r",
+ "c hor",
+ "▁T own",
+ "▁To wn",
+ "▁Tow n",
+ "▁def init",
+ "▁defin it",
+ "re act",
+ "rea ct",
+ "▁pie ce",
+ "▁Kar l",
+ "▁Ka rl",
+ "C I",
+ "▁App lication",
+ "▁ Application",
+ "un ter",
+ "unt er",
+ "unte r",
+ "▁for med",
+ "▁form ed",
+ "▁forme d",
+ "▁ formed",
+ "▁п у",
+ "▁ пу",
+ "B o",
+ "▁Dan iel",
+ "▁ Daniel",
+ "▁п ла",
+ "▁ пла",
+ "Bo dy",
+ "B ody",
+ "}) $",
+ "} )$",
+ "▁бы ли",
+ "▁был и",
+ "▁e arth",
+ "▁ear th",
+ "г ла",
+ "Th ere",
+ "The re",
+ "T here",
+ "▁с тра",
+ "▁ст ра",
+ "▁ стра",
+ "▁v ille",
+ "▁vi lle",
+ "▁vill e",
+ "▁vil le",
+ "▁ ville",
+ "▁c entre",
+ "▁cent re",
+ ") \r",
+ "▁help ful",
+ "▁+ +",
+ "▁ ++",
+ "▁C G",
+ "▁ CG",
+ "iz ione",
+ "izi one",
+ "izio ne",
+ "i zione",
+ "▁G ame",
+ "▁Ga me",
+ "▁Gam e",
+ "▁ Game",
+ "▁Wh ich",
+ "▁p ip",
+ "▁pi p",
+ "▁ pip",
+ "▁Port ug",
+ "D S",
+ "▁de scribe",
+ "▁des cribe",
+ "▁descri be",
+ "▁check ing",
+ "▁man ager",
+ "▁manage r",
+ "▁ manager",
+ "B O",
+ "▁B undes",
+ "▁Bund es",
+ "▁Bun des",
+ "bu ch",
+ "b uch",
+ "▁dec ided",
+ "▁decide d",
+ "▁decid ed",
+ "▁Jahrh undert",
+ "▁f if",
+ "▁fi f",
+ "▁ fif",
+ "e fficient",
+ "an ci",
+ "anc i",
+ "br aries",
+ "bra ries",
+ "▁f ails",
+ "▁fa ils",
+ "▁fail s",
+ "▁k ernel",
+ "▁ker nel",
+ "▁ kernel",
+ "▁G l",
+ "▁N acional",
+ "▁pro ceed",
+ "▁proc eed",
+ "▁f uer",
+ "▁fue r",
+ "▁fu er",
+ "▁l iving",
+ "▁li ving",
+ "▁liv ing",
+ "▁success fully",
+ "▁successful ly",
+ "▁f aster",
+ "▁fa ster",
+ "▁fast er",
+ "▁fas ter",
+ "▁con tre",
+ "▁cont re",
+ "▁contr e",
+ "▁ contre",
+ "▁pr ison",
+ "▁pri son",
+ "▁pris on",
+ "OR T",
+ "O RT",
+ "he lp",
+ "hel p",
+ "▁a utor",
+ "▁au tor",
+ "▁aut or",
+ "▁auto r",
+ "▁ autor",
+ "ła w",
+ "ł aw",
+ "aj ą",
+ "a ją",
+ "▁A rm",
+ "▁Ar m",
+ "▁ Arm",
+ "▁pro vin",
+ "▁prov in",
+ "▁na am",
+ "/ #",
+ "se d",
+ "s ed",
+ "▁g esch",
+ "▁ge sch",
+ "▁ges ch",
+ "▁ gesch",
+ "▁м ар",
+ "▁ма р",
+ "▁ мар",
+ "es k",
+ "e sk",
+ "ter m",
+ "te rm",
+ "t erm",
+ "▁T ex",
+ "▁Te x",
+ "▁ Tex",
+ "ir ing",
+ "iri ng",
+ "i ring",
+ "▁t ools",
+ "▁to ols",
+ "▁too ls",
+ "▁tool s",
+ "▁ tools",
+ "PD F",
+ "P DF",
+ "▁u lt",
+ "▁ul t",
+ "▁ ult",
+ "iss enschaft",
+ "issen schaft",
+ "▁could n",
+ "di ng",
+ "din g",
+ "d ing",
+ "De p",
+ "D ep",
+ "{ -",
+ "▁pre dict",
+ "▁pred ict",
+ "▁ predict",
+ "ant age",
+ "anta ge",
+ "▁L ike",
+ "▁Li ke",
+ "▁ Like",
+ "▁Б и",
+ "to ols",
+ "tool s",
+ "t ools",
+ "es tra",
+ "est ra",
+ "estr a",
+ "e stra",
+ "▁k i",
+ "▁ ki",
+ "▁J im",
+ "▁Ji m",
+ "st ar",
+ "sta r",
+ "s tar",
+ "▁re mark",
+ "▁r emark",
+ "▁rem ark",
+ "▁ remark",
+ "ó g",
+ "na bla",
+ "nab la",
+ "▁Al though",
+ "mod e",
+ "mo de",
+ "m ode",
+ "H ost",
+ "▁st range",
+ "▁str ange",
+ "▁stran ge",
+ "No ne",
+ "Non e",
+ "N one",
+ "bl ack",
+ "bla ck",
+ "b lack",
+ "▁F estival",
+ "▁Fest ival",
+ "▁I S",
+ "▁ IS",
+ "an za",
+ "anz a",
+ "▁( -",
+ "▁ (-",
+ "ic ket",
+ "ick et",
+ "i cket",
+ "ко ла",
+ "кол а",
+ "▁J es",
+ "▁Je s",
+ "▁f lex",
+ "▁fl ex",
+ "▁fle x",
+ "▁ flex",
+ "▁ À",
+ "▁N etwork",
+ "▁Net work",
+ "▁ Network",
+ "▁E X",
+ "▁ EX",
+ "▁e nero",
+ "▁en ero",
+ "▁ener o",
+ "! ”",
+ "▁O rt",
+ "▁Or t",
+ "▁al ors",
+ "▁Or iginal",
+ "▁Origin al",
+ "▁Orig inal",
+ "▁ Original",
+ "▁z o",
+ "▁ zo",
+ "ны ми",
+ "ным и",
+ "▁s pl",
+ "▁sp l",
+ "▁ spl",
+ "Dra w",
+ "Dr aw",
+ "D raw",
+ "yo nd",
+ "y ond",
+ "─ ─",
+ "▁O t",
+ "▁d ram",
+ "▁dr am",
+ "▁dra m",
+ "▁di vision",
+ "▁div ision",
+ "▁divis ion",
+ "▁e fficient",
+ "▁effic ient",
+ "▁ efficient",
+ "▁Г а",
+ "▁v ier",
+ "▁vi er",
+ "▁vie r",
+ "▁ vier",
+ "na k",
+ "n ak",
+ "L S",
+ "▁sp irit",
+ "▁spir it",
+ "zeich net",
+ "▁d ici",
+ "▁di ci",
+ "▁dic i",
+ "cl ear",
+ "cle ar",
+ "c lear",
+ "co py",
+ "cop y",
+ "c opy",
+ "ya r",
+ "y ar",
+ "▁ро ці",
+ "us qu",
+ "u squ",
+ "▁n ous",
+ "▁no us",
+ "▁nou s",
+ "▁b lev",
+ "▁bl ev",
+ "▁ble v",
+ "ж де",
+ "Ar g",
+ "A rg",
+ "▁per formed",
+ "▁perform ed",
+ "▁M ake",
+ "▁Ma ke",
+ "▁Mak e",
+ "▁ Make",
+ "▁Car ol",
+ "▁Ca rol",
+ "et to",
+ "ett o",
+ "e tto",
+ "▁S and",
+ "▁San d",
+ "▁Sa nd",
+ "▁D isc",
+ "▁Dis c",
+ "▁Di sc",
+ "En c",
+ "E nc",
+ "re ro",
+ "rer o",
+ "r ero",
+ "ha sh",
+ "has h",
+ "h ash",
+ "▁f ocus",
+ "▁fo cus",
+ "▁foc us",
+ "▁ focus",
+ "▁att ention",
+ "▁a gre",
+ "▁ag re",
+ "▁agr e",
+ "▁di vis",
+ "▁div is",
+ "▁бы ло",
+ "▁был о",
+ "▁e j",
+ "▁ ej",
+ "▁m arch",
+ "▁mar ch",
+ "▁marc h",
+ "▁ph ase",
+ "▁ phase",
+ "ía s",
+ "í as",
+ "▁ph il",
+ "▁P ap",
+ "▁Pa p",
+ "▁r iver",
+ "▁riv er",
+ "▁ri ver",
+ "▁ river",
+ "▁c aused",
+ "▁caus ed",
+ "▁cause d",
+ "▁ca used",
+ "pl ugin",
+ "▁Te am",
+ "▁ Team",
+ "ul er",
+ "ule r",
+ "u ler",
+ "▁$ (\"#",
+ "▁$(\" #",
+ "ie j",
+ "i ej",
+ "I SBN",
+ "na m",
+ "n am",
+ "▁f ight",
+ "▁fig ht",
+ "vi d",
+ "v id",
+ "▁L ud",
+ "▁Lu d",
+ "Select ed",
+ ":@ \"",
+ ": @\"",
+ "▁P od",
+ "▁Po d",
+ "▁ Pod",
+ "▁ann ées",
+ "▁année s",
+ "ar ios",
+ "ari os",
+ "ario s",
+ "a rios",
+ "▁deutsch er",
+ "▁deutsche r",
+ "▁N A",
+ "▁ NA",
+ "▁и ю",
+ "▁d ictionary",
+ "▁diction ary",
+ "▁ dictionary",
+ "▁Л а",
+ "▁T ri",
+ "▁Tr i",
+ "▁ Tri",
+ "è n",
+ "▁polit ical",
+ "rid ge",
+ "r idge",
+ "at ten",
+ "att en",
+ "atte n",
+ "▁circ le",
+ "▁cir cle",
+ "▁ circle",
+ "▁trans port",
+ "▁ transport",
+ "em as",
+ "ema s",
+ "e mas",
+ "F C",
+ "▁replace d",
+ "▁repla ced",
+ "▁A ud",
+ "▁Au d",
+ "is ka",
+ "isk a",
+ "i ska",
+ "Config uration",
+ "▁so ort",
+ "▁Н е",
+ "▁s equ",
+ "▁se qu",
+ "▁seq u",
+ "▁ sequ",
+ "PR O",
+ "P RO",
+ "▁b ud",
+ "▁bu d",
+ "▁ bud",
+ "▁{ {",
+ "▁ {{",
+ "lie ß",
+ "l ieß",
+ "▁M as",
+ "▁Ma s",
+ "de rs",
+ "der s",
+ "d ers",
+ "us ammen",
+ "es a",
+ "e sa",
+ "▁L y",
+ "в ро",
+ "ma c",
+ "m ac",
+ "▁и спо",
+ "▁ис по",
+ "▁s uc",
+ "▁su c",
+ "u y",
+ "▁ill ustr",
+ "▁prim era",
+ "▁prime ra",
+ "▁primer a",
+ "il ation",
+ "ila tion",
+ "i lation",
+ "▁st orage",
+ "▁stor age",
+ "▁sto rage",
+ "▁ storage",
+ "▁par ams",
+ "▁para ms",
+ "▁param s",
+ "▁pa rams",
+ "▁ params",
+ "ka z",
+ "k az",
+ "▁term inal",
+ "▁termin al",
+ "ра ль",
+ "рал ь",
+ "р аль",
+ "▁h olds",
+ "▁hold s",
+ "▁hol ds",
+ "▁ holds",
+ "ло сь",
+ "▁n ad",
+ "▁na d",
+ "▁ nad",
+ "” .",
+ "▁oct ubre",
+ "bu l",
+ "b ul",
+ "▁h us",
+ "▁hu s",
+ "▁ hus",
+ "UL T",
+ "U LT",
+ "▁ég alement",
+ "▁M ill",
+ "▁Mil l",
+ "▁Mi ll",
+ "▁ Mill",
+ "ła d",
+ "ł ad",
+ "▁cont iene",
+ "\" ?",
+ "▁> >>",
+ "▁>> >",
+ "Qu e",
+ "Q ue",
+ " ",
+ "▁p lain",
+ "▁pl ain",
+ "▁pla in",
+ "▁ plain",
+ "at iva",
+ "ativ a",
+ "ati va",
+ "oc ker",
+ "ock er",
+ "o cker",
+ "Name s",
+ "Na mes",
+ "N ames",
+ "▁J ud",
+ "▁Ju d",
+ "▁ag ree",
+ "▁agre e",
+ "▁agr ee",
+ "▁G emeinde",
+ "▁Geme inde",
+ "la re",
+ "lar e",
+ "l are",
+ "ка за",
+ "каз а",
+ "▁st arts",
+ "▁start s",
+ "▁star ts",
+ "▁ starts",
+ "▁p rice",
+ "▁pr ice",
+ "▁pri ce",
+ "▁ price",
+ "T arget",
+ "cu s",
+ "c us",
+ "▁Inst ead",
+ ". ;",
+ "▁altern ative",
+ "▁alter native",
+ "▁в ла",
+ "I E",
+ "▁organ iz",
+ "in u",
+ "i nu",
+ "▁comp leted",
+ "▁comple ted",
+ "▁complet ed",
+ "▁complete d",
+ "▁car ry",
+ "at om",
+ "ato m",
+ "a tom",
+ "▁dep ending",
+ "▁depend ing",
+ "▁O ur",
+ "▁in sp",
+ "▁ins p",
+ "▁& \\",
+ "▁ &\\",
+ "ail y",
+ "ai ly",
+ "a ily",
+ "ir ection",
+ "ire ction",
+ "irect ion",
+ "ф а",
+ "▁d efe",
+ "▁de fe",
+ "▁def e",
+ "TA C",
+ "T AC",
+ "▁de signed",
+ "▁des igned",
+ "▁design ed",
+ "▁v oir",
+ "▁vo ir",
+ "▁ voir",
+ "bre ak",
+ "▁part ie",
+ "▁parti e",
+ "▁J ahren",
+ "▁Jah ren",
+ "▁Jahr en",
+ "▁Jahre n",
+ "▁Ja hren",
+ "▁st udio",
+ "▁stud io",
+ "▁studi o",
+ "▁ studio",
+ "▁j our",
+ "▁jo ur",
+ "▁jou r",
+ "▁N otes",
+ "▁No tes",
+ "▁Not es",
+ "▁Note s",
+ "fi re",
+ "fir e",
+ "f ire",
+ "ho use",
+ "hou se",
+ "h ouse",
+ "su ccess",
+ "▁J uan",
+ "▁Ju an",
+ "J S",
+ "▁C ustom",
+ "▁ Custom",
+ "▁b esch",
+ "▁be sch",
+ "▁bes ch",
+ "▁st ated",
+ "▁stat ed",
+ "▁state d",
+ "▁sta ted",
+ "boot strap",
+ "öt t",
+ "ö tt",
+ "oz zá",
+ "▁C ON",
+ "▁CO N",
+ "▁ CON",
+ "ha v",
+ "h av",
+ "▁s leep",
+ "▁sle ep",
+ "▁ sleep",
+ "ed a",
+ "e da",
+ "ho t",
+ "h ot",
+ "án d",
+ "á nd",
+ "▁S y",
+ "▁tem ps",
+ "▁temp s",
+ "▁ temps",
+ "am ar",
+ "ama r",
+ "a mar",
+ "▁s cal",
+ "▁sc al",
+ "▁ scal",
+ "▁a st",
+ "▁as t",
+ "▁ ast",
+ "▁op ening",
+ "▁open ing",
+ "cli pse",
+ "clip se",
+ "c lipse",
+ "▁program ming",
+ "▁ programming",
+ "▁let ters",
+ "▁letter s",
+ "▁lett ers",
+ "▁pro file",
+ "▁prof ile",
+ "▁profil e",
+ "▁ profile",
+ "na h",
+ "n ah",
+ "▁be yond",
+ "▁Fur ther",
+ "face s",
+ "fa ces",
+ "fac es",
+ "f aces",
+ "▁c hart",
+ "▁ch art",
+ "▁char t",
+ "▁cha rt",
+ "▁ chart",
+ "зд а",
+ "з да",
+ "ai gn",
+ "a ign",
+ "ні й",
+ "н ій",
+ "▁R ol",
+ "▁Ro l",
+ "ова но",
+ "ован о",
+ "ter ior",
+ "te rior",
+ "we d",
+ "w ed",
+ "▁her self",
+ "▁hers elf",
+ "▁n g",
+ "▁ ng",
+ "angu ages",
+ "anguage s",
+ "}= \\",
+ "} =\\",
+ "ynam ic",
+ "yna mic",
+ "▁j ug",
+ "▁ju g",
+ "▁Ex ample",
+ "▁ Example",
+ "▁( †",
+ "▁play ing",
+ "▁pla ying",
+ "▁us age",
+ "▁ usage",
+ "▁man aged",
+ "▁manage d",
+ "▁ managed",
+ "▁N atur",
+ "▁Nat ur",
+ "те ри",
+ "тер и",
+ "▁E t",
+ "er ia",
+ "eri a",
+ "e ria",
+ "▁daugh ter",
+ "ни ем",
+ "ние м",
+ "F ragment",
+ "▁h ol",
+ "▁ho l",
+ "▁ hol",
+ "F l",
+ "огра фи",
+ "ограф и",
+ "о графи",
+ "▁i hn",
+ "▁ih n",
+ "ü h",
+ "inst ance",
+ "▁com un",
+ "▁co mun",
+ "▁tr uth",
+ "▁са мо",
+ "▁сам о",
+ "▁implement ed",
+ "▁any way",
+ "▁C ro",
+ "▁Cr o",
+ "ф е",
+ "G C",
+ "ub untu",
+ "u buntu",
+ "ty pes",
+ "type s",
+ "typ es",
+ "t ypes",
+ "ê s",
+ ".~ \\",
+ ". ~\\",
+ "fo ld",
+ "fol d",
+ "f old",
+ "▁jo ined",
+ "▁join ed",
+ "? ?",
+ "▁m é",
+ "▁ mé",
+ "▁w ild",
+ "▁wil d",
+ "к лю",
+ "row ser",
+ "rows er",
+ "▁H ome",
+ "▁Ho me",
+ "▁Hom e",
+ "▁ Home",
+ "sk iej",
+ "ski ej",
+ "skie j",
+ "s kiej",
+ "▁J OIN",
+ "▁ju in",
+ "ho f",
+ "h of",
+ "▁data set",
+ "▁dat aset",
+ "▁datas et",
+ "▁ dataset",
+ "ж ду",
+ "') )",
+ "' ))",
+ "▁mie js",
+ "AP I",
+ "A PI",
+ "▁ed ited",
+ "▁edit ed",
+ "ool s",
+ "oo ls",
+ "o ols",
+ "▁se eing",
+ "▁see ing",
+ "ij d",
+ "i jd",
+ "▁pro cedure",
+ "▁proced ure",
+ "▁B ras",
+ "▁Br as",
+ "▁Bra s",
+ "▁s igned",
+ "▁sign ed",
+ "▁sig ned",
+ "▁ signed",
+ "▁extern os",
+ "▁dis app",
+ "▁D irect",
+ "▁Di rect",
+ "▁Dire ct",
+ "▁Dir ect",
+ "▁ Direct",
+ "cy c",
+ "c yc",
+ "▁cons ult",
+ "ör d",
+ "ö rd",
+ "W idget",
+ "ci ous",
+ "cio us",
+ "c ious",
+ "se ct",
+ "sec t",
+ "s ect",
+ "▁Д и",
+ "▁w ind",
+ "▁win d",
+ "▁ wind",
+ "▁Archiv ado",
+ "am l",
+ "a ml",
+ "с с",
+ "W h",
+ "kb d",
+ "k bd",
+ "▁Ar my",
+ "▁Arm y",
+ "▁s uffer",
+ "▁suf fer",
+ "▁suff er",
+ "art ifact",
+ "▁resol ve",
+ "▁ resolve",
+ "▁S port",
+ "▁Sp ort",
+ "▁Spo rt",
+ "▁ц е",
+ "▁ це",
+ "id as",
+ "ida s",
+ "i das",
+ "▁t ax",
+ "▁ta x",
+ "▁ tax",
+ "id i",
+ "i di",
+ "▁a ctions",
+ "▁act ions",
+ "▁action s",
+ "▁ actions",
+ "пр а",
+ "п ра",
+ "pu és",
+ "p ués",
+ "▁n aj",
+ "▁na j",
+ "F alse",
+ "▁ch ance",
+ "▁та ко",
+ "▁так о",
+ "ä d",
+ "▁d ol",
+ "▁do l",
+ "▁en v",
+ "▁ env",
+ "▁bas ically",
+ "▁basic ally",
+ "▁Coun cil",
+ "zt e",
+ "z te",
+ "▁display ed",
+ "ni l",
+ "n il",
+ "comp lete",
+ "comple te",
+ "▁L em",
+ "▁Le m",
+ "ian ce",
+ "i ance",
+ "▁ос нов",
+ "▁de pend",
+ "▁dep end",
+ "pl om",
+ "ens us",
+ "ut s",
+ "u ts",
+ "▁H ot",
+ "▁Ho t",
+ "▁ Hot",
+ "bit r",
+ "bi tr",
+ "▁valid ation",
+ "▁ validation",
+ "ab b",
+ "a bb",
+ "▁т ре",
+ "▁ тре",
+ "k m",
+ "z d",
+ "ö ff",
+ "W E",
+ "▁inter ested",
+ "▁interest ed",
+ "▁{ \"",
+ "▁ {\"",
+ "ar o",
+ "a ro",
+ "▁cor rel",
+ "▁corre l",
+ "▁corr el",
+ "▁d edic",
+ "▁de dic",
+ "▁ded ic",
+ "▁l ists",
+ "▁list s",
+ "▁ lists",
+ "▁Bibli ografia",
+ "▁ear lier",
+ "pr ogram",
+ "pro gram",
+ "prog ram",
+ "▁prem ière",
+ "▁premi ère",
+ "fr ont",
+ "f ront",
+ "T ab",
+ "ст ву",
+ "ств у",
+ "dr op",
+ "dro p",
+ "d rop",
+ "▁f ear",
+ "▁fe ar",
+ "▁En laces",
+ "▁C apt",
+ "▁Cap t",
+ "▁Ca pt",
+ "▁ Capt",
+ "▁real iz",
+ "▁h al",
+ "▁ha l",
+ "▁ hal",
+ "▁inst ances",
+ "▁instance s",
+ "▁su sp",
+ "▁sus p",
+ "il ling",
+ "ill ing",
+ "illi ng",
+ "% ;",
+ "{ }",
+ "| |",
+ "▁part ition",
+ "▁parti tion",
+ "▁ partition",
+ "▁Bu ild",
+ "▁ Build",
+ "▁w o",
+ "▁ wo",
+ "▁П ер",
+ "▁Пе р",
+ "▁direct or",
+ "▁dire ctor",
+ "▁dir ector",
+ "▁S in",
+ "▁Si n",
+ "ти я",
+ "rs g",
+ "r sg",
+ "ou ver",
+ "ouv er",
+ "ouve r",
+ "▁near ly",
+ "od a",
+ "o da",
+ "кти в",
+ "к тив",
+ "▁s ir",
+ "▁si r",
+ "IM E",
+ "I ME",
+ "▁jan vier",
+ "▁W in",
+ "▁Wi n",
+ "▁ Win",
+ "Bu ild",
+ "ie urs",
+ "ieu rs",
+ "ieur s",
+ "i eurs",
+ "IN E",
+ "I NE",
+ "d ouble",
+ "La st",
+ "L ast",
+ "▁pol icy",
+ "▁polic y",
+ "▁ policy",
+ "st ore",
+ "sto re",
+ "stor e",
+ "▁obser ved",
+ "▁observ ed",
+ "▁observe d",
+ "▁obs erved",
+ "▁famil ie",
+ "ni ca",
+ "nic a",
+ "n ica",
+ "re y",
+ "r ey",
+ "з ь",
+ "▁Y ear",
+ "▁Ye ar",
+ "▁ Year",
+ "▁develop ed",
+ "▁deve loped",
+ "▁Inst itute",
+ "▁Instit ute",
+ "▁Institut e",
+ "▁re ply",
+ "▁rep ly",
+ "Com ple",
+ "Comp le",
+ "ic ian",
+ "ici an",
+ "icia n",
+ "i cian",
+ "▁G uer",
+ "▁Gu er",
+ "▁d all",
+ "▁da ll",
+ "▁dal l",
+ "▁d esp",
+ "▁de sp",
+ "▁des p",
+ "▁Foot ball",
+ "Em pty",
+ "Emp ty",
+ "ck en",
+ "cke n",
+ "c ken",
+ "un da",
+ "und a",
+ "▁U r",
+ "▁i g",
+ "▁ ig",
+ "▁A tl",
+ "▁At l",
+ "aut hor",
+ "auth or",
+ "▁B ol",
+ "▁Bo l",
+ "zi g",
+ "z ig",
+ "na t",
+ "n at",
+ "š t",
+ "se curity",
+ "sec urity",
+ "on ic",
+ "oni c",
+ "o nic",
+ "▁p es",
+ "▁pe s",
+ "▁ pes",
+ "it an",
+ "ita n",
+ "i tan",
+ "▁Ex tern",
+ "▁Ext ern",
+ "ja n",
+ "j an",
+ "VA L",
+ "V AL",
+ "▁и м",
+ "▁ им",
+ "bo ld",
+ "bol d",
+ "b old",
+ "▁в а",
+ "▁ ва",
+ "▁М о",
+ "▁dis put",
+ "▁disp ut",
+ "▁t rick",
+ "▁tr ick",
+ "▁tri ck",
+ "▁p ed",
+ "▁pe d",
+ "▁ ped",
+ ")^ {",
+ ") ^{",
+ "in to",
+ "int o",
+ "Si m",
+ "S im",
+ "▁par allel",
+ "▁ parallel",
+ "fo x",
+ "f ox",
+ "norm al",
+ "nor mal",
+ "n ormal",
+ "in ent",
+ "ine nt",
+ "inen t",
+ "пе ди",
+ "п еди",
+ "ho ld",
+ "hol d",
+ "h old",
+ "O K",
+ "▁c hem",
+ "▁ch em",
+ "▁che m",
+ "▁ chem",
+ "▁tw ice",
+ "▁us ername",
+ "▁user name",
+ "▁ username",
+ "i č",
+ "▁re presentation",
+ "▁represent ation",
+ "▁repres entation",
+ "▁j ournal",
+ "▁jour nal",
+ "▁journ al",
+ "▁: -",
+ "▁ :-",
+ "▁b att",
+ "▁ba tt",
+ "▁bat t",
+ "\\ %",
+ "▁certain ly",
+ "▁Ex ception",
+ "▁ Exception",
+ "ep s",
+ "e ps",
+ "sh ot",
+ "s hot",
+ "at egy",
+ "ate gy",
+ "ateg y",
+ "Sh ow",
+ "S how",
+ "▁Car l",
+ "▁Ca rl",
+ "ri g",
+ "r ig",
+ "▁rep orted",
+ "▁report ed",
+ "bot tom",
+ "b ottom",
+ "T F",
+ "▁Francis co",
+ "na p",
+ "n ap",
+ "▁Champion ship",
+ "▁Champions hip",
+ "▁c ourt",
+ "▁co urt",
+ "▁cour t",
+ "▁cou rt",
+ "▁ court",
+ "▁s ources",
+ "▁source s",
+ "io ur",
+ "i our",
+ "▁con serv",
+ "▁cons erv",
+ "▁conse rv",
+ "▁conser v",
+ "di ct",
+ "dic t",
+ "d ict",
+ "▁Р у",
+ "I B",
+ "▁V e",
+ "▁ №",
+ "▁E R",
+ "▁ ER",
+ "\") );",
+ "\")) ;",
+ "\" ));",
+ "▁P oint",
+ "▁Po int",
+ "▁ Point",
+ "az ine",
+ "azi ne",
+ "▁inter net",
+ "▁intern et",
+ "д на",
+ "▁car ried",
+ "▁carri ed",
+ "▁F ield",
+ "▁ Field",
+ "ax is",
+ "axi s",
+ "a xis",
+ "▁S un",
+ "▁Su n",
+ "▁a ve",
+ "▁av e",
+ "▁ ave",
+ "пи с",
+ "п ис",
+ "я н",
+ "as y",
+ "▁ju lio",
+ "▁jul io",
+ "▁juli o",
+ "▁de puis",
+ "▁dep uis",
+ "▁sugg estion",
+ "▁suggest ion",
+ "[ [",
+ "▁Arch ive",
+ "▁Archiv e",
+ "ę p",
+ "▁P ra",
+ "▁Pr a",
+ "re h",
+ "r eh",
+ "▁demon str",
+ "ф і",
+ "cm d",
+ "c md",
+ "▁was n",
+ "▁wa sn",
+ "▁ph one",
+ "▁ phone",
+ "up load",
+ "ay a",
+ "a ya",
+ "то ра",
+ "тор а",
+ "li nes",
+ "line s",
+ "lin es",
+ "l ines",
+ "▁in du",
+ "▁ind u",
+ "▁ indu",
+ "▁v ot",
+ "▁vo t",
+ "▁es pa",
+ "▁esp a",
+ "▁b in",
+ "▁bi n",
+ "▁ bin",
+ "▁по сле",
+ "▁пос ле",
+ "pl an",
+ "pla n",
+ "p lan",
+ "▁ju nio",
+ "▁jun io",
+ "▁juni o",
+ "or ial",
+ "oria l",
+ "ori al",
+ "o rial",
+ "fr ee",
+ "fre e",
+ "f ree",
+ "ster reich",
+ "▁д у",
+ "▁ ду",
+ "▁link ed",
+ "▁lin ked",
+ "▁en able",
+ "▁ enable",
+ "P C",
+ "▁dens ity",
+ "▁E gy",
+ "▁Eg y",
+ "y o",
+ "end re",
+ "▁с ъ",
+ "▁ital iano",
+ "▁A R",
+ "▁ AR",
+ "▁P ers",
+ "▁Per s",
+ "▁Pe rs",
+ "▁ Pers",
+ "fér és",
+ "▁с кла",
+ "V ar",
+ "▁On ce",
+ "▁ Once",
+ "Re d",
+ "R ed",
+ "buf fer",
+ "buff er",
+ "b uffer",
+ "▁En ter",
+ "▁Ent er",
+ "▁ Enter",
+ "▁ Š",
+ "im iento",
+ "imi ento",
+ "St ore",
+ "Sto re",
+ "▁he alth",
+ "va t",
+ "v at",
+ "IS T",
+ "I ST",
+ "O h",
+ "▁k w",
+ "▁ kw",
+ "▁r iv",
+ "▁ri v",
+ "▁ riv",
+ "▁some where",
+ "ograf ie",
+ "ografi e",
+ "priv ate",
+ "p rivate",
+ "кт и",
+ "к ти",
+ "▁de lay",
+ "▁del ay",
+ "▁ delay",
+ "▁H ttp",
+ "▁ Http",
+ "jo b",
+ "j ob",
+ "ra el",
+ "r ael",
+ "em por",
+ "emp or",
+ "▁dici embre",
+ "▁dic iembre",
+ "êt e",
+ "ê te",
+ "ц у",
+ "▁com mit",
+ "▁comm it",
+ "▁ commit",
+ "os o",
+ "o so",
+ "Val ues",
+ "Value s",
+ "▁he aders",
+ "▁head ers",
+ "▁header s",
+ "▁ headers",
+ "trans form",
+ "▁process ing",
+ "▁proces sing",
+ "▁ processing",
+ "r å",
+ "▁A h",
+ "▁ Ah",
+ "▁N ode",
+ "▁No de",
+ "▁ Node",
+ "-- ----------",
+ "---- --------",
+ "-------- ----",
+ "------ ------",
+ "----- -------",
+ "------- -----",
+ "---------- --",
+ "▁f aire",
+ "▁fa ire",
+ "▁fair e",
+ "▁h un",
+ "▁hu n",
+ "Pl ayer",
+ "Play er",
+ "P layer",
+ "▁re view",
+ "▁rev iew",
+ "▁ review",
+ "г да",
+ "▁lim ited",
+ "▁limit ed",
+ "▁ limited",
+ "▁Pro perty",
+ "▁ Property",
+ "▁s erve",
+ "▁ser ve",
+ "▁serv e",
+ "▁ serve",
+ "ri age",
+ "ria ge",
+ "▁M aster",
+ "▁Ma ster",
+ "▁Mas ter",
+ "▁ Master",
+ "▁k ann",
+ "▁kan n",
+ "▁ka nn",
+ "cre te",
+ "cret e",
+ "cr ete",
+ "ph ere",
+ "pher e",
+ "phe re",
+ "p here",
+ "ё р",
+ "▁ch ief",
+ "▁chi ef",
+ "▁sc ene",
+ "▁scen e",
+ "▁ scene",
+ "ki n",
+ "k in",
+ "▁un iform",
+ "▁ uniform",
+ "▁feb rero",
+ "\" }",
+ "il lo",
+ "ill o",
+ "IT E",
+ "I TE",
+ "ou vel",
+ "ouv el",
+ "ouve l",
+ "use package",
+ "en th",
+ "ent h",
+ "e nth",
+ "▁quick ly",
+ "L ambda",
+ "xe s",
+ "x es",
+ "▁c ells",
+ "▁cell s",
+ "▁cel ls",
+ "ro g",
+ "r og",
+ "am in",
+ "ami n",
+ "a min",
+ "▁М ар",
+ "▁Ма р",
+ "▁may or",
+ "▁mayo r",
+ "pl ayer",
+ "play er",
+ "pla yer",
+ "p layer",
+ "++ ;",
+ "▁На се",
+ "▁sa fe",
+ "▁saf e",
+ "▁ safe",
+ "▁ve loc",
+ "▁vel oc",
+ "▁о бра",
+ "▁об ра",
+ "▁ обра",
+ "Data base",
+ "Dat abase",
+ "D atabase",
+ "ne h",
+ "n eh",
+ "Ver t",
+ "V ert",
+ "▁f le",
+ "▁fl e",
+ "▁ф ор",
+ "▁фо р",
+ "▁ фор",
+ "▁f oreign",
+ "▁for eign",
+ "▁fore ign",
+ "Ab stract",
+ "▁m agn",
+ "▁ma gn",
+ "▁mag n",
+ "▁mod ified",
+ "▁milit ary",
+ "▁militar y",
+ "▁m onde",
+ "▁mon de",
+ "▁mo nde",
+ "▁mond e",
+ "▁A ction",
+ "▁Act ion",
+ "▁Ac tion",
+ "▁ Action",
+ "▁b ank",
+ "▁ban k",
+ "▁ bank",
+ "Ser ial",
+ "Se rial",
+ "▁contin uous",
+ "▁continu ous",
+ "▁g el",
+ "▁ge l",
+ "▁ gel",
+ "▁phys ical",
+ "▁introdu ced",
+ "▁introduce d",
+ "ut ure",
+ "ri ck",
+ "ric k",
+ "r ick",
+ "▁present ed",
+ "▁pres ented",
+ "▁presente d",
+ "▁P rov",
+ "▁Pro v",
+ "▁Pr ov",
+ "▁B oth",
+ "▁Bo th",
+ "▁Bot h",
+ "Po s",
+ "P os",
+ "su per",
+ "sup er",
+ "s uper",
+ "& #",
+ "▁f inding",
+ "▁find ing",
+ "▁fin ding",
+ "ne l",
+ "n el",
+ "un de",
+ "und e",
+ "u nde",
+ "▁fr ån",
+ "sk im",
+ "ski m",
+ "s kim",
+ "▁H ill",
+ "▁Hi ll",
+ "▁Hil l",
+ "f n",
+ "▁Can ad",
+ "▁Ca nad",
+ "▁int ended",
+ "▁inten ded",
+ "▁intend ed",
+ "ozzá férés",
+ "▁ju illet",
+ "▁W ars",
+ "▁War s",
+ "▁Wa rs",
+ "▁success ful",
+ "▁ch arg",
+ "▁char g",
+ "▁cha rg",
+ "▁ charg",
+ "ie le",
+ "iel e",
+ "i ele",
+ "om ething",
+ "ome thing",
+ "omet hing",
+ "ok u",
+ "o ku",
+ "f etch",
+ "▁} }",
+ "▁ }}",
+ "ban k",
+ "b ank",
+ "operator name",
+ "▁Col or",
+ "▁Co lor",
+ "▁ Color",
+ "▁C ard",
+ "▁Car d",
+ "▁Ca rd",
+ "▁ Card",
+ "t u",
+ "▁\" ,",
+ "▁ \",",
+ "wi d",
+ "w id",
+ "▁g ep",
+ "▁ge p",
+ "X ML",
+ "======== ========",
+ "▁Vir gin",
+ "ähr end",
+ "äh rend",
+ "lic ated",
+ "licate d",
+ "lica ted",
+ "Di r",
+ "D ir",
+ "ze ro",
+ "zer o",
+ "z ero",
+ "▁K al",
+ "▁Ka l",
+ "▁Par ty",
+ "▁Part y",
+ "▁ å",
+ "pr ice",
+ "p rice",
+ "do n",
+ "d on",
+ "▁w arning",
+ "▁war ning",
+ "▁warn ing",
+ "▁ warning",
+ "▁B ad",
+ "▁Ba d",
+ "▁ Bad",
+ "▁S upp",
+ "▁Su pp",
+ "▁Sup p",
+ "▁ Supp",
+ "▁L iga",
+ "▁Li ga",
+ "▁Lig a",
+ "▁P ierre",
+ "▁Pier re",
+ "▁ Pierre",
+ "Re cord",
+ "Rec ord",
+ "ul ator",
+ "ula tor",
+ "▁R ome",
+ "▁Ro me",
+ "▁Rom e",
+ "▁the orem",
+ "▁ theorem",
+ "▁entire ly",
+ "ски м",
+ "ск им",
+ "с ким",
+ "he t",
+ "h et",
+ "▁d opo",
+ "▁do po",
+ "▁dop o",
+ "Ne xt",
+ "N ext",
+ "ml ung",
+ "m lung",
+ "wi g",
+ "w ig",
+ "▁A th",
+ "▁At h",
+ "▁S ou",
+ "▁So u",
+ "li cher",
+ "lic her",
+ "lich er",
+ "liche r",
+ "l icher",
+ "▁s udo",
+ "▁su do",
+ "▁sud o",
+ "▁ sudo",
+ "es ts",
+ "est s",
+ "хі в",
+ "х ів",
+ "▁sept iembre",
+ "▁m icro",
+ "▁mi cro",
+ "▁mic ro",
+ "▁t rop",
+ "▁tr op",
+ "▁tro p",
+ "fi t",
+ "f it",
+ "Co re",
+ "Cor e",
+ "C ore",
+ "▁Rad io",
+ "▁ Radio",
+ "▁Or gan",
+ "▁ Organ",
+ "▁P ower",
+ "▁Po wer",
+ "▁Pow er",
+ "▁ Power",
+ "C F",
+ "▁L ast",
+ "▁La st",
+ "▁Las t",
+ "▁ Last",
+ "▁op pos",
+ "▁opp os",
+ "▁off set",
+ "▁ offset",
+ "▁re gia",
+ "▁reg ia",
+ "▁min imum",
+ "▁minim um",
+ "▁hel ped",
+ "▁help ed",
+ "an don",
+ "and on",
+ "ando n",
+ "if ying",
+ "ify ing",
+ "ru it",
+ "r uit",
+ "ensch app",
+ "▁b ere",
+ "▁be re",
+ "▁ber e",
+ "▁ bere",
+ "V M",
+ "▁A wards",
+ "▁Award s",
+ "▁Aw ards",
+ "▁a gr",
+ "▁ag r",
+ "▁ agr",
+ "yn omial",
+ "en ced",
+ "ence d",
+ "enc ed",
+ "▁dev ices",
+ "▁device s",
+ "▁devi ces",
+ "▁b ot",
+ "▁bo t",
+ "▁ bot",
+ "▁f irm",
+ "▁fi rm",
+ "▁fir m",
+ "▁w riter",
+ "▁writ er",
+ "▁wr iter",
+ "▁write r",
+ "▁ writer",
+ "▁r ing",
+ "▁ri ng",
+ "▁rin g",
+ "▁ ring",
+ ". -",
+ "is tes",
+ "ist es",
+ "iste s",
+ "l ä",
+ "▁m el",
+ "▁me l",
+ "▁ mel",
+ "ent ation",
+ "enta tion",
+ "▁Sch w",
+ "▁Sc hw",
+ "▁n ome",
+ "▁no me",
+ "▁nom e",
+ "▁ nome",
+ "▁po bla",
+ "▁pob la",
+ "▁w oj",
+ "▁wo j",
+ "▁u l",
+ "▁ ul",
+ "en to",
+ "ent o",
+ "ы х",
+ "▁res ist",
+ "▁rem ains",
+ "▁remain s",
+ "▁C a",
+ "▁ Ca",
+ "añ a",
+ "a ña",
+ "▁C ourt",
+ "▁Co urt",
+ "▁Cour t",
+ "▁Cou rt",
+ "ut able",
+ "uta ble",
+ "u table",
+ "ential ly",
+ "enti ally",
+ "▁t rat",
+ "▁tr at",
+ "▁tra t",
+ "▁ trat",
+ "▁Vis ual",
+ "▁ Visual",
+ "▁rest rict",
+ "▁pre viously",
+ "▁previous ly",
+ "▁prev iously",
+ "ca tion",
+ "cat ion",
+ "c ation",
+ "▁о со",
+ "▁ос о",
+ "▁My SQL",
+ "f ör",
+ "cal a",
+ "ca la",
+ "c ala",
+ "▁c ulture",
+ "▁cult ure",
+ "li ve",
+ "liv e",
+ "l ive",
+ "▁accept ed",
+ "Di d",
+ "D id",
+ "▁h ous",
+ "▁ho us",
+ "▁se lection",
+ "▁select ion",
+ "▁sel ection",
+ "▁sele ction",
+ "▁ selection",
+ "▁de cre",
+ "▁dec re",
+ "mar gin",
+ "m argin",
+ "ur b",
+ "u rb",
+ "▁I nc",
+ "▁In c",
+ "▁M any",
+ "▁Man y",
+ "▁Ma ny",
+ "▁ Many",
+ "ib t",
+ "i bt",
+ "▁succ eed",
+ "▁suc ceed",
+ "Bind ing",
+ "B inding",
+ "c í",
+ "▁R og",
+ "▁Ro g",
+ "▁should n",
+ "cl oud",
+ "clo ud",
+ "clou d",
+ "▁d z",
+ "▁ dz",
+ "ва в",
+ "▁p ix",
+ "▁pi x",
+ "sm all",
+ "▁project s",
+ "▁ projects",
+ "▁O K",
+ "▁ OK",
+ "▁la test",
+ "▁lat est",
+ "▁late st",
+ "▁ latest",
+ "▁re ferences",
+ "▁refer ences",
+ "▁reference s",
+ "Pro gram",
+ "Pr ogram",
+ "▁er st",
+ "▁ers t",
+ "▁ erst",
+ "▁я к",
+ "▁k am",
+ "▁ka m",
+ "▁C amb",
+ "▁Cam b",
+ "▁Ca mb",
+ "el lt",
+ "ell t",
+ "ö d",
+ "no ne",
+ "non e",
+ "n one",
+ "▁j usqu",
+ "▁ju squ",
+ "ki ng",
+ "kin g",
+ "k ing",
+ "▁P ed",
+ "▁Pe d",
+ "as sert",
+ "ass ert",
+ "asse rt",
+ "asser t",
+ "C S",
+ "ri to",
+ "rit o",
+ "r ito",
+ "es sa",
+ "ess a",
+ "ль ко",
+ "▁V on",
+ "▁Vo n",
+ "▁Ed ward",
+ "▁im possible",
+ "▁impos sible",
+ "n p",
+ "word s",
+ "wor ds",
+ "w ords",
+ "ie lt",
+ "iel t",
+ "i elt",
+ "▁P age",
+ "▁Pa ge",
+ "▁ Page",
+ "le rs",
+ "ler s",
+ "l ers",
+ "▁p ier",
+ "▁pi er",
+ "▁pie r",
+ "▁обла сти",
+ "itt ee",
+ "itte e",
+ "▁( [",
+ "▁ ([",
+ "▁t rust",
+ "▁tr ust",
+ "N G",
+ "re du",
+ "red u",
+ "r edu",
+ "< <",
+ "ri al",
+ "ria l",
+ "r ial",
+ "▁product s",
+ "▁ products",
+ "▁E rn",
+ "▁Er n",
+ "ri ère",
+ "r ière",
+ "го в",
+ "г ов",
+ "▁Re ich",
+ "▁Ro ad",
+ "▁n ested",
+ "▁ne sted",
+ "▁nest ed",
+ "▁ nested",
+ "Dis play",
+ "▁str ength",
+ "ograf ía",
+ "▁ann ounced",
+ "▁announ ced",
+ "▁S cience",
+ "▁Sc ience",
+ "▁Sci ence",
+ "▁рай о",
+ "Param eter",
+ "▁T ask",
+ "▁Ta sk",
+ "▁Tas k",
+ "▁ Task",
+ "um ents",
+ "ument s",
+ "umen ts",
+ "u ments",
+ "▁ad opt",
+ "▁On ly",
+ "▁ Only",
+ "ют ь",
+ "ю ть",
+ "▁c li",
+ "▁cl i",
+ "▁ cli",
+ "▁l em",
+ "▁le m",
+ "▁ lem",
+ "st ood",
+ "sto od",
+ "▁F I",
+ "▁ FI",
+ "ên cias",
+ "ência s",
+ "pon ents",
+ "ponent s",
+ "] $",
+ "com ment",
+ "comm ent",
+ "▁y a",
+ "▁ ya",
+ "sh ould",
+ "ik e",
+ "i ke",
+ "ti m",
+ "t im",
+ "el lig",
+ "ell ig",
+ "elli g",
+ "▁s ending",
+ "▁send ing",
+ "▁sen ding",
+ "▁a jax",
+ "▁aj ax",
+ "▁ ajax",
+ "▁nov iembre",
+ "um es",
+ "ume s",
+ "u mes",
+ "▁we iter",
+ "▁weit er",
+ "▁D ans",
+ "▁Dan s",
+ "▁Da ns",
+ "op p",
+ "o pp",
+ "▁sept embre",
+ "▁sep tembre",
+ "ot imes",
+ "oti mes",
+ "o times",
+ "z ő",
+ "▁e p",
+ "▁ ep",
+ "ve re",
+ "ver e",
+ "v ere",
+ "▁o h",
+ "▁ oh",
+ ": =",
+ "▁S ong",
+ "▁So ng",
+ "▁Son g",
+ "” ,",
+ "▁v iv",
+ "▁vi v",
+ "▁ viv",
+ "▁qu eries",
+ "▁que ries",
+ "▁quer ies",
+ "▁v á",
+ "▁ vá",
+ "▁déc embre",
+ "▁un able",
+ "▁una ble",
+ "▁e rh",
+ "▁er h",
+ "▁` -",
+ "▁ `-",
+ "▁L ee",
+ "▁Le e",
+ "▁er sten",
+ "▁erst en",
+ "▁erste n",
+ "▁ers ten",
+ "ô t",
+ "ст ве",
+ "ств е",
+ "T S",
+ "▁f ragment",
+ "▁fra gment",
+ "▁frag ment",
+ "▁ fragment",
+ "▁w ide",
+ "▁wid e",
+ "▁ wide",
+ "▁s uff",
+ "▁su ff",
+ "▁suf f",
+ "▁d ut",
+ "▁du t",
+ "▁V ere",
+ "▁Ver e",
+ "▁Ve re",
+ "і с",
+ "ad ing",
+ "adi ng",
+ "adin g",
+ "a ding",
+ "ie go",
+ "ieg o",
+ "i ego",
+ "ic ago",
+ "ica go",
+ "▁Ar gent",
+ "▁Arg ent",
+ "or er",
+ "ore r",
+ "o rer",
+ "en nes",
+ "enn es",
+ "enne s",
+ "▁L eb",
+ "▁Le b",
+ "lin ux",
+ "ac ing",
+ "aci ng",
+ "a cing",
+ "▁br oken",
+ "▁bro ken",
+ "▁broke n",
+ "t p",
+ "í o",
+ "ab eth",
+ "abe th",
+ "abet h",
+ "ist as",
+ "ista s",
+ "ge w",
+ "g ew",
+ "i ème",
+ "ca s",
+ "c as",
+ "▁pre ced",
+ "▁prec ed",
+ "▁D al",
+ "▁Da l",
+ "▁comp ared",
+ "▁compar ed",
+ "▁compare d",
+ "equ iv",
+ "il ly",
+ "ill y",
+ "te en",
+ "t een",
+ "▁Con sole",
+ "▁Cons ole",
+ "▁ Console",
+ "▁st rict",
+ "▁str ict",
+ "▁stri ct",
+ "it aire",
+ "ita ire",
+ "i taire",
+ "▁E D",
+ "▁ ED",
+ "ential s",
+ "enti als",
+ "▁p erman",
+ "▁per man",
+ "▁perm an",
+ "▁t ous",
+ "▁to us",
+ "▁tou s",
+ "▁g eme",
+ "▁ge me",
+ "▁gem e",
+ "▁ geme",
+ "▁ext rem",
+ "▁extr em",
+ "▁ок ру",
+ "k g",
+ "▁he avy",
+ "▁heav y",
+ "▁av ril",
+ "▁an ti",
+ "▁ant i",
+ "▁ anti",
+ "▁oct obre",
+ "ut f",
+ "u tf",
+ "he lm",
+ "hel m",
+ "h elm",
+ "am ples",
+ "ample s",
+ "amp les",
+ "▁( _",
+ "▁ (_",
+ "ak en",
+ "ake n",
+ "a ken",
+ "▁d ear",
+ "▁de ar",
+ "▁opin ion",
+ "▁f ish",
+ "▁fi sh",
+ "▁fis h",
+ "▁ fish",
+ "▁Alex ander",
+ "▁Alexand er",
+ "i w",
+ "и м",
+ "ca dem",
+ "cade m",
+ "c adem",
+ "▁ref lect",
+ "▁ reflect",
+ "▁д р",
+ "▁t rib",
+ "▁tr ib",
+ "▁tri b",
+ "com mon",
+ "comm on",
+ "▁clear ly",
+ "▁s af",
+ "▁sa f",
+ "=\"@ +",
+ "▁М ос",
+ "▁Мо с",
+ "си те",
+ "eqn array",
+ "nu ng",
+ "n ung",
+ "▁relations hip",
+ "▁relation ship",
+ "▁S em",
+ "▁Se m",
+ "▁ Sem",
+ "▁k illed",
+ "▁kil led",
+ "▁kill ed",
+ "te d",
+ "t ed",
+ "un o",
+ "u no",
+ "▁ лі",
+ "▁w id",
+ "▁ wid",
+ "an ning",
+ "ann ing",
+ "anni ng",
+ "▁p anel",
+ "▁pa nel",
+ "▁pan el",
+ "▁ panel",
+ "▁L eben",
+ "▁Le ben",
+ "▁Leb en",
+ "▁r uby",
+ "▁ru by",
+ "▁rub y",
+ "▁ ruby",
+ "ans ion",
+ "▁a ren",
+ "▁are n",
+ "▁ar en",
+ "▁ aren",
+ "tab ular",
+ "al et",
+ "ale t",
+ "a let",
+ "}$ $",
+ "} $$",
+ "▁L ake",
+ "▁La ke",
+ "▁Lak e",
+ "▁su ite",
+ "▁suit e",
+ "▁ suite",
+ "▁min or",
+ "▁mi nor",
+ "H ozzáférés",
+ "▁xml ns",
+ "▁ xmlns",
+ "DI R",
+ "D IR",
+ "dr iver",
+ "drive r",
+ "dri ver",
+ "d river",
+ "in ts",
+ "int s",
+ "▁v ic",
+ "▁vi c",
+ "▁ vic",
+ "AN D",
+ "A ND",
+ "pr im",
+ "p rim",
+ "сы лки",
+ "▁O x",
+ "T C",
+ "riv ial",
+ "at ie",
+ "ati e",
+ "▁e ight",
+ "▁eig ht",
+ "▁eigh t",
+ "▁conf lic",
+ "▁confl ic",
+ "an gel",
+ "ang el",
+ "ange l",
+ "▁B egr",
+ "▁Be gr",
+ "▁Beg r",
+ "▁explicit ly",
+ "ют ся",
+ "ю тся",
+ "▁D ev",
+ "▁De v",
+ "▁ Dev",
+ "re nder",
+ "ren der",
+ "rend er",
+ "r ender",
+ "▁re produ",
+ "▁rep rodu",
+ "▁repr odu",
+ "▁repro du",
+ "▁c ré",
+ "▁cr é",
+ "G u",
+ "M B",
+ "▁k ön",
+ "▁kö n",
+ "▁rem ained",
+ "▁remain ed",
+ "▁k l",
+ "▁ kl",
+ "хо в",
+ "х ов",
+ "▁b yl",
+ "▁by l",
+ "Ph i",
+ "P hi",
+ "▁de tail",
+ "▁det ail",
+ "▁ detail",
+ "ja v",
+ "j av",
+ "▁m ouse",
+ "▁mo use",
+ "▁mou se",
+ "▁ mouse",
+ "B as",
+ "i ę",
+ "as ser",
+ "ass er",
+ "asse r",
+ "h s",
+ "▁sh ift",
+ "▁ shift",
+ "▁ú lt",
+ "▁ últ",
+ "ra nd",
+ "ran d",
+ "r and",
+ "▁b tn",
+ "▁ btn",
+ "ra z",
+ "r az",
+ "▁p ul",
+ "▁pu l",
+ "▁stat ements",
+ "▁state ments",
+ "▁statement s",
+ "file name",
+ "fil ename",
+ "▁prom pt",
+ "él é",
+ "é lé",
+ "ik z",
+ "▁S us",
+ "▁Su s",
+ "▁de but",
+ "▁deb ut",
+ "St at",
+ "S tat",
+ "form s",
+ "for ms",
+ "▁H ein",
+ "▁He in",
+ "st adt",
+ "sta dt",
+ "stad t",
+ "en nis",
+ "enn is",
+ "по л",
+ "ar ante",
+ "aran te",
+ "ці й",
+ "ц ій",
+ "▁que ue",
+ "▁ queue",
+ "▁re ci",
+ "▁rec i",
+ "▁ reci",
+ "▁s ta",
+ "▁st a",
+ "▁ sta",
+ "yn chron",
+ "cent ering",
+ "center ing",
+ "cente ring",
+ "So me",
+ "S ome",
+ "Gr aph",
+ "G raph",
+ "▁t ested",
+ "▁te sted",
+ "▁test ed",
+ "▁K unst",
+ "▁Kun st",
+ "о м",
+ "▁N othing",
+ "▁No thing",
+ "▁Not hing",
+ "▁ Nothing",
+ "ie u",
+ "i eu",
+ "“ .",
+ "B undle",
+ "▁of icial",
+ "▁ofic ial",
+ "al low",
+ "all ow",
+ "allo w",
+ "▁Re act",
+ "▁L ibrary",
+ "▁Li brary",
+ "▁ Library",
+ "bl ue",
+ "▁ver w",
+ "▁ve rw",
+ "▁p are",
+ "▁par e",
+ "▁pa re",
+ "▁Fried rich",
+ "▁a ware",
+ "▁aw are",
+ "▁ aware",
+ "Ex p",
+ "E xp",
+ "▁effect s",
+ "▁го ро",
+ "▁гор о",
+ "lop edia",
+ "loped ia",
+ "▁V en",
+ "▁Ve n",
+ "ra le",
+ "ral e",
+ "r ale",
+ "▁F inal",
+ "▁Fin al",
+ "▁ Final",
+ "▁pro pos",
+ "▁prop os",
+ "la cement",
+ "lace ment",
+ "lac ement",
+ "kt en",
+ "kte n",
+ "k ten",
+ "▁no vel",
+ "▁nov el",
+ "or ter",
+ "ort er",
+ "orte r",
+ "▁German y",
+ "▁Ger many",
+ "▁Germ any",
+ "▁d jango",
+ "▁ django",
+ "▁trans ition",
+ "▁ transition",
+ "▁happ ened",
+ "▁happen ed",
+ "▁beaut iful",
+ "▁ne ither",
+ "▁nei ther",
+ "▁li braries",
+ "▁h ide",
+ "▁hi de",
+ "▁hid e",
+ "▁ hide",
+ "al g",
+ "a lg",
+ "▁a spect",
+ "▁as pect",
+ "▁asp ect",
+ "▁for get",
+ "▁forg et",
+ "cade my",
+ "cadem y",
+ "on te",
+ "ont e",
+ "re fix",
+ "ref ix",
+ "▁cl oud",
+ "▁clo ud",
+ "▁ cloud",
+ "ne d",
+ "n ed",
+ "cd ots",
+ "cdot s",
+ "c dots",
+ "reg ister",
+ "ny m",
+ "n ym",
+ ".) :",
+ ". ):",
+ "▁J ew",
+ "▁Je w",
+ "▁t rès",
+ "▁tr ès",
+ "ни че",
+ "▁D or",
+ "▁Do r",
+ "▁p roc",
+ "▁pro c",
+ "▁pr oc",
+ "▁ proc",
+ "▁g an",
+ "▁ga n",
+ "▁ gan",
+ "▁ є",
+ "▁S av",
+ "▁Sa v",
+ "v í",
+ "Setting s",
+ "S ettings",
+ "▁V ari",
+ "▁Var i",
+ "▁Va ri",
+ "▁ Vari",
+ "▁c ours",
+ "▁co urs",
+ "▁cour s",
+ "▁cou rs",
+ "R o",
+ "▁con j",
+ "▁re asons",
+ "▁reason s",
+ "▁re ader",
+ "▁read er",
+ "▁ reader",
+ "лекс анд",
+ "ic ate",
+ "ica te",
+ "}) ,",
+ "} ),",
+ "▁task s",
+ "▁ tasks",
+ "▁R ay",
+ "▁Ra y",
+ "▁r ic",
+ "▁ri c",
+ "▁ ric",
+ "K e",
+ "on ie",
+ "oni e",
+ "o nie",
+ "r f",
+ ") [",
+ "▁sub sequ",
+ "▁subs equ",
+ "▁T urn",
+ "▁Tur n",
+ "▁Tu rn",
+ "▁ Turn",
+ "▁VI AF",
+ "math sf",
+ "H E",
+ "▁dec lare",
+ "▁decl are",
+ "▁decla re",
+ "▁declar e",
+ "▁pro tocol",
+ "▁proto col",
+ "▁ protocol",
+ "▁P C",
+ "▁ PC",
+ "ци он",
+ "View ById",
+ "▁an imation",
+ "▁anim ation",
+ "▁ animation",
+ "▁conf used",
+ "ви ч",
+ "▁en abled",
+ "▁enable d",
+ "▁ enabled",
+ "ow o",
+ "o wo",
+ "ás t",
+ "á st",
+ "ö t",
+ "▁m and",
+ "▁ma nd",
+ "▁man d",
+ "▁R ail",
+ "▁Ra il",
+ "field s",
+ "▁K ap",
+ "▁Ka p",
+ "▁al gebra",
+ "▁ algebra",
+ "▁С у",
+ "fér ence",
+ "▁C urrent",
+ "▁Cur rent",
+ "▁ Current",
+ "с но",
+ "▁L im",
+ "▁Li m",
+ "Par ams",
+ "Param s",
+ "Pa rams",
+ "▁Ant onio",
+ "▁Anton io",
+ "▁Anto nio",
+ "▁t v",
+ "▁ tv",
+ "la te",
+ "lat e",
+ "l ate",
+ "if er",
+ "ife r",
+ "i fer",
+ "En try",
+ "Ent ry",
+ "▁S erv",
+ "▁Se rv",
+ "▁Ser v",
+ "▁ Serv",
+ "▁mus ical",
+ "▁music al",
+ "▁musica l",
+ "▁t race",
+ "▁tr ace",
+ "▁tra ce",
+ "▁trac e",
+ "▁ trace",
+ "▁s cient",
+ "▁sc ient",
+ "▁sci ent",
+ "fi c",
+ "f ic",
+ "▁for got",
+ "▁forg ot",
+ "v ideo",
+ "▁o lder",
+ "▁old er",
+ "▁ol der",
+ "▁ older",
+ "Tr ee",
+ "T ree",
+ "▁u ns",
+ "▁un s",
+ "▁ uns",
+ "ни ки",
+ "ник и",
+ "▁E uropa",
+ "▁Europ a",
+ "▁Euro pa",
+ "▁Z we",
+ "▁Zw e",
+ "▁б е",
+ "▁ бе",
+ "▁v ec",
+ "▁ve c",
+ "▁ vec",
+ "ж у",
+ "Mat ch",
+ "M atch",
+ "sp an",
+ "s pan",
+ "▁bl ank",
+ "▁blan k",
+ "▁ blank",
+ "▁sp äter",
+ "▁T y",
+ "▁ Ty",
+ "▁d ict",
+ "▁di ct",
+ "▁dic t",
+ "▁ dict",
+ "ñ a",
+ "▁conf irm",
+ "▁confir m",
+ "▁ confirm",
+ "▁v ý",
+ "за н",
+ "з ан",
+ "Re l",
+ "R el",
+ "fil m",
+ "fi lm",
+ "▁R ot",
+ "▁Ro t",
+ "▁ Rot",
+ "▁H y",
+ "▁ Hy",
+ "ка х",
+ "▁dem and",
+ "▁min ist",
+ "▁mini st",
+ "▁Mad rid",
+ "▁us ual",
+ "sp iel",
+ "s piel",
+ "er os",
+ "ero s",
+ "e ros",
+ "▁t utorial",
+ "▁tut orial",
+ "▁ tutorial",
+ "▁С сылки",
+ "s ys",
+ "ци аль",
+ "▁sp read",
+ "▁spr ead",
+ "▁spre ad",
+ "▁con vers",
+ "▁conver s",
+ "▁conv ers",
+ "▁r oll",
+ "▁ro ll",
+ "▁rol l",
+ "▁ roll",
+ "artifact Id",
+ "▁N umber",
+ "▁Num ber",
+ "▁ Number",
+ "▁sym met",
+ "▁M ult",
+ "▁Mu lt",
+ "▁Mul t",
+ "▁ Mult",
+ "ex pected",
+ "exp ected",
+ "expect ed",
+ "▁a xis",
+ "▁ax is",
+ "▁ axis",
+ "▁match ing",
+ "▁f ood",
+ "▁fo od",
+ "▁foo d",
+ "group Id",
+ "Map p",
+ "Ma pp",
+ "M app",
+ "▁с вя",
+ "▁v end",
+ "▁ve nd",
+ "▁ven d",
+ "F ound",
+ "ot to",
+ "ott o",
+ "o tto",
+ "Ca t",
+ "C at",
+ "cri t",
+ "cr it",
+ "c rit",
+ "ist ent",
+ "iste nt",
+ "isten t",
+ "▁d rei",
+ "▁dr ei",
+ "▁dre i",
+ "▁en ded",
+ "▁end ed",
+ "▁ende d",
+ "▁ ended",
+ "▁T ele",
+ "▁Te le",
+ "▁Tel e",
+ "com ponent",
+ "▁invol ved",
+ "▁involve d",
+ "▁Est ados",
+ "▁Estado s",
+ "▁Estad os",
+ "▁d anger",
+ "▁dan ger",
+ "▁ch ain",
+ "▁cha in",
+ "▁ chain",
+ "▁P rom",
+ "▁Pro m",
+ "▁Pr om",
+ "▁ Prom",
+ "ho m",
+ "h om",
+ "▁pol ít",
+ "co p",
+ "c op",
+ "▁n ap",
+ "▁na p",
+ "▁ nap",
+ "ri f",
+ "r if",
+ "ple ments",
+ "pl ements",
+ "plement s",
+ "▁v ent",
+ "▁ve nt",
+ "▁ven t",
+ "▁ vent",
+ "an na",
+ "ann a",
+ "an ted",
+ "ant ed",
+ "ante d",
+ "date d",
+ "da ted",
+ "dat ed",
+ "d ated",
+ "an th",
+ "ant h",
+ "a nth",
+ "▁thread s",
+ "▁thre ads",
+ "▁ threads",
+ "зо ва",
+ "зов а",
+ "з ова",
+ "▁ста нов",
+ "▁стан ов",
+ "▁ станов",
+ "▁e erst",
+ "▁eer st",
+ "bu f",
+ "b uf",
+ "he id",
+ "▁R u",
+ "▁P rim",
+ "▁Pr im",
+ "▁Pri m",
+ "▁ Prim",
+ "▁m igr",
+ "▁mi gr",
+ "▁mig r",
+ "▁ migr",
+ "▁Un idos",
+ "▁ar bitr",
+ "▁r oman",
+ "▁ro man",
+ "▁rom an",
+ "ount ry",
+ "oun try",
+ "ult ur",
+ "▁K önig",
+ "▁Kö nig",
+ "▁an not",
+ "▁ann ot",
+ "▁anno t",
+ "▁ annot",
+ "ach ing",
+ "ac hing",
+ "achi ng",
+ "▁H aupt",
+ "▁Ha upt",
+ "um in",
+ "umi n",
+ "u min",
+ "▁h em",
+ "▁he m",
+ "▁ hem",
+ "ck ets",
+ "cket s",
+ "cke ts",
+ "ba u",
+ "b au",
+ "ect ion",
+ "ec tion",
+ "e ction",
+ "ef t",
+ "e ft",
+ "▁package s",
+ "▁pack ages",
+ "▁ packages",
+ "▁K ur",
+ "▁Ku r",
+ "th ur",
+ "▁p ays",
+ "▁pa ys",
+ "▁pay s",
+ "li ament",
+ "lia ment",
+ "▁Б у",
+ "▁c ada",
+ "▁ca da",
+ "▁cad a",
+ "po ints",
+ "point s",
+ "oc ket",
+ "ock et",
+ "o cket",
+ "▁v erb",
+ "▁ver b",
+ "▁ve rb",
+ "▁ verb",
+ "ле е",
+ "▁sub mit",
+ "▁subm it",
+ "▁ submit",
+ "▁s an",
+ "▁sa n",
+ "▁ san",
+ "ru by",
+ "r uby",
+ "▁e ast",
+ "▁eas t",
+ "▁ east",
+ "ko v",
+ "k ov",
+ "▁Ver lag",
+ "▁Verl ag",
+ "▁ Verlag",
+ "▁s pot",
+ "▁sp ot",
+ "▁spo t",
+ "▁ spot",
+ "pp o",
+ "p po",
+ "E ach",
+ "je kt",
+ "▁Bi ographie",
+ "▁ne ws",
+ "▁new s",
+ "▁ news",
+ "▁pa ís",
+ "uf act",
+ "u fact",
+ "▁d ia",
+ "▁di a",
+ "▁ dia",
+ "ко ва",
+ "ков а",
+ "к ова",
+ "▁accom pl",
+ "▁accomp l",
+ "▁É t",
+ "▁ Ét",
+ "il ities",
+ "ili ties",
+ "▁i hm",
+ "▁ih m",
+ "in voke",
+ "inv oke",
+ "▁app end",
+ "▁ap pend",
+ "▁appe nd",
+ "▁ append",
+ ".) ,",
+ ". ),",
+ "▁l ab",
+ "▁la b",
+ "▁ lab",
+ "an ging",
+ "ang ing",
+ "is tan",
+ "ist an",
+ "ista n",
+ "i stan",
+ "re sol",
+ "res ol",
+ "reso l",
+ "▁S ection",
+ "▁Se ction",
+ "▁Sec tion",
+ "▁ Section",
+ "Par ent",
+ "Pa rent",
+ "mo z",
+ "m oz",
+ "Ma t",
+ "M at",
+ "st yles",
+ "style s",
+ "sty les",
+ "un den",
+ "und en",
+ "unde n",
+ "“ ,",
+ "irt schaft",
+ "ки м",
+ "к им",
+ "▁Fin ally",
+ "▁Final ly",
+ "ph en",
+ "phe n",
+ "p hen",
+ "▁P ac",
+ "▁Pa c",
+ "▁Array List",
+ "▁ ArrayList",
+ "▁re cover",
+ "▁rec over",
+ "▁e ducation",
+ "▁educ ation",
+ "mod els",
+ "model s",
+ "mode ls",
+ "pe d",
+ "p ed",
+ "▁h appy",
+ "▁ha ppy",
+ "▁happ y",
+ "ч у",
+ "▁guer ra",
+ "me dia",
+ "med ia",
+ "medi a",
+ "m edia",
+ "O F",
+ "▁ens ure",
+ "▁ ensure",
+ "Mar k",
+ "M ark",
+ "data base",
+ "dat abase",
+ "datab ase",
+ "d atabase",
+ "og gle",
+ "▁pub lish",
+ "▁publi sh",
+ "▁ publish",
+ "O W",
+ "▁B au",
+ "▁Ba u",
+ "? .",
+ "▁ча сти",
+ "▁час ти",
+ "▁част и",
+ "▁re pository",
+ "▁repos itory",
+ "▁ repository",
+ "▁M att",
+ "▁Ma tt",
+ "▁Mat t",
+ "hi gh",
+ "h igh",
+ "ov en",
+ "ove n",
+ "o ven",
+ "▁g er",
+ "▁ge r",
+ "▁ ger",
+ "▁un known",
+ "▁ unknown",
+ "Am er",
+ "A mer",
+ "▁B rown",
+ "▁Br own",
+ "▁Bro wn",
+ "▁Brow n",
+ "AL L",
+ "A LL",
+ "▁result ing",
+ "▁b or",
+ "▁bo r",
+ "▁ bor",
+ "▁po et",
+ "ни ми",
+ "ним и",
+ "Em ail",
+ "E mail",
+ "F ont",
+ "▁h ist",
+ "▁his t",
+ "▁hi st",
+ "▁to day",
+ "▁tod ay",
+ "▁toda y",
+ "▁ today",
+ "▁B erg",
+ "▁Be rg",
+ "▁Ber g",
+ "▁but tons",
+ "▁button s",
+ "та л",
+ "т ал",
+ "▁s ni",
+ "▁sn i",
+ "▁че лов",
+ "Cr e",
+ "C re",
+ "▁un ion",
+ "▁ union",
+ "▁z ich",
+ "ish op",
+ "i shop",
+ "▁qu ando",
+ "▁quand o",
+ "▁quan do",
+ "P o",
+ "CT ION",
+ "▁C ost",
+ "▁Co st",
+ "▁Cos t",
+ "▁ Cost",
+ "су дар",
+ "er ved",
+ "erv ed",
+ "erve d",
+ "Not e",
+ "No te",
+ "N ote",
+ "Equ al",
+ "Eq ual",
+ "E qual",
+ "ли я",
+ "бу р",
+ "б ур",
+ "▁ab stract",
+ "▁abstra ct",
+ "▁ abstract",
+ "st op",
+ "sto p",
+ "s top",
+ "▁ad vice",
+ "▁adv ice",
+ "▁i con",
+ "▁ic on",
+ "▁ icon",
+ "▁tr avel",
+ "▁tra vel",
+ "▁trav el",
+ "B S",
+ "ve ns",
+ "ven s",
+ "v ens",
+ "▁b atch",
+ "▁bat ch",
+ "▁ batch",
+ "li que",
+ "liqu e",
+ "l ique",
+ "she et",
+ "s heet",
+ "▁i hre",
+ "▁ih re",
+ "▁ihr e",
+ "em on",
+ "emo n",
+ "e mon",
+ "ber to",
+ "bert o",
+ "▁as signed",
+ "▁ass igned",
+ "▁assign ed",
+ "ь ю",
+ "Ph one",
+ "▁a ward",
+ "▁aw ard",
+ "▁function ality",
+ "▁functional ity",
+ "al la",
+ "all a",
+ "a lla",
+ "▁D am",
+ "▁Da m",
+ "▁ci udad",
+ "▁cl uster",
+ "▁clust er",
+ "▁ cluster",
+ "De scription",
+ "Des cription",
+ "▁s heet",
+ "▁she et",
+ "▁ sheet",
+ "▁Austral ian",
+ "▁Australia n",
+ "▁» .",
+ "▁ ».",
+ "▁\" <",
+ "▁wonder ing",
+ "ain e",
+ "ai ne",
+ "a ine",
+ "▁represent ed",
+ "▁repres ented",
+ "ka ppa",
+ "kap pa",
+ "k appa",
+ "n b",
+ "▁s y",
+ "▁K ö",
+ "=\" #",
+ "▁s even",
+ "▁se ven",
+ "Direct ory",
+ "D irectory",
+ "▁s ister",
+ "▁si ster",
+ "▁sist er",
+ "pl ates",
+ "plate s",
+ "pla tes",
+ "▁l uck",
+ "▁lu ck",
+ "▁luc k",
+ "▁rem aining",
+ "▁remain ing",
+ "▁V ill",
+ "▁Vi ll",
+ "▁Vil l",
+ "wer k",
+ "w erk",
+ "an ni",
+ "ann i",
+ "et ti",
+ "ett i",
+ "fun c",
+ "fu nc",
+ "f unc",
+ "▁b an",
+ "▁ba n",
+ "▁ ban",
+ "im s",
+ "i ms",
+ "mi ss",
+ "mis s",
+ "m iss",
+ "ag raph",
+ "agr aph",
+ "a graph",
+ "ек си",
+ "е кси",
+ "▁R ef",
+ "▁Re f",
+ "▁ Ref",
+ "ni tt",
+ "nit t",
+ "n itt",
+ "▁G ab",
+ "▁Ga b",
+ "▁and ere",
+ "▁jed och",
+ "result s",
+ "! \\",
+ "▁l isted",
+ "▁li sted",
+ "▁list ed",
+ "▁liste d",
+ "▁l oro",
+ "▁lo ro",
+ "▁kn ows",
+ "▁know s",
+ "ж но",
+ "R ad",
+ "▁s ocket",
+ "▁so cket",
+ "▁soc ket",
+ "▁ socket",
+ "mult i",
+ "mul ti",
+ "▁р і",
+ "▁ рі",
+ "ra ils",
+ "rai ls",
+ "r ails",
+ "▁t ar",
+ "▁ta r",
+ "▁ tar",
+ "▁gent le",
+ "se tt",
+ "set t",
+ "s ett",
+ "serv ices",
+ "service s",
+ "bo und",
+ "b ound",
+ "ig keit",
+ "aj a",
+ "a ja",
+ "▁c md",
+ "▁cm d",
+ "▁ cmd",
+ "ag ger",
+ "agg er",
+ "▁b a",
+ "▁ ba",
+ "▁Be lg",
+ "▁Bel g",
+ "▁K le",
+ "▁Kl e",
+ "▁word t",
+ "▁wor dt",
+ "▁f ost",
+ "▁fo st",
+ "▁fos t",
+ "▁dim ension",
+ "An g",
+ "A ng",
+ "um ing",
+ "umin g",
+ "umi ng",
+ "u ming",
+ "Ob j",
+ "не н",
+ "н ен",
+ "▁M arie",
+ "▁Mar ie",
+ "▁Ma rie",
+ "▁Mari e",
+ "▁ Marie",
+ "ex ists",
+ "exist s",
+ "т ро",
+ "▁бо ль",
+ "▁ боль",
+ "em ente",
+ "ement e",
+ "emen te",
+ "e mente",
+ "▁J on",
+ "▁Jo n",
+ "SE RT",
+ "SER T",
+ "S ERT",
+ "▁high est",
+ "ak i",
+ "a ki",
+ "▁t res",
+ "▁tr es",
+ "▁tre s",
+ "▁ tres",
+ "▁circ um",
+ "▁D own",
+ "▁Do wn",
+ "▁Dow n",
+ "▁ Down",
+ "om men",
+ "omm en",
+ "ur er",
+ "ure r",
+ "u rer",
+ "▁caus es",
+ "▁cause s",
+ "▁ca uses",
+ "ven ue",
+ "iss ance",
+ "▁influ ence",
+ "▁influen ce",
+ "▁f at",
+ "▁fa t",
+ "ре ди",
+ "ред и",
+ "р еди",
+ "}\\ \\",
+ "} \\\\",
+ "▁en tr",
+ "▁ent r",
+ "▁ entr",
+ "▁S ign",
+ "▁Si gn",
+ "▁Sig n",
+ "▁ Sign",
+ "▁к ла",
+ "▁ кла",
+ "▁b inding",
+ "▁bind ing",
+ "▁bin ding",
+ "▁ binding",
+ "es sen",
+ "ess en",
+ "esse n",
+ "▁Ф ран",
+ "▁L ocal",
+ "▁Lo cal",
+ "▁Loc al",
+ "▁ Local",
+ "▁я вля",
+ "ap pro",
+ "app ro",
+ "▁dep endencies",
+ "▁depend encies",
+ "▁ dependencies",
+ "▁talk ing",
+ "▁tal king",
+ "▁zur ück",
+ "con nection",
+ "connect ion",
+ "conne ction",
+ "conn ection",
+ "Act ive",
+ "Activ e",
+ "bb e",
+ "b be",
+ "ir ls",
+ "irl s",
+ "▁In f",
+ "▁ Inf",
+ "w d",
+ "▁и с",
+ "▁ ис",
+ "ro ad",
+ "▁con ven",
+ "▁conv en",
+ "ě t",
+ "ве з",
+ "в ез",
+ "▁ent ries",
+ "▁entr ies",
+ "▁ entries",
+ "es c",
+ "e sc",
+ "▁b its",
+ "▁bit s",
+ "▁bi ts",
+ "▁ bits",
+ "as so",
+ "ass o",
+ "W R",
+ "sh ips",
+ "ship s",
+ "s hips",
+ "▁d és",
+ "▁dé s",
+ "es p",
+ "e sp",
+ "Ma ke",
+ "M ake",
+ "▁famil iar",
+ "▁familia r",
+ "Ar t",
+ "A rt",
+ "▁ar my",
+ "▁arm y",
+ "ct r",
+ "c tr",
+ "ér ic",
+ "éri c",
+ "é ric",
+ "que ue",
+ "▁\\ {",
+ "▁ \\{",
+ "ue la",
+ "uel a",
+ "u ela",
+ "am iento",
+ "ami ento",
+ "ши х",
+ "ш их",
+ "▁\" \"\"",
+ "▁\"\" \"",
+ "con tr",
+ "cont r",
+ "лл е",
+ "л ле",
+ "F S",
+ "▁mar ket",
+ "▁mark et",
+ "▁ market",
+ "ån g",
+ "å ng",
+ "cite p",
+ "cit ep",
+ "Il l",
+ "I ll",
+ "ran k",
+ "r ank",
+ "▁s ender",
+ "▁se nder",
+ "▁send er",
+ "▁sen der",
+ "▁ sender",
+ "▁be im",
+ "▁bei m",
+ "ра к",
+ "▁com pat",
+ "▁comp at",
+ "▁ compat",
+ "▁occ urs",
+ "▁occur s",
+ "▁d iese",
+ "▁di ese",
+ "▁die se",
+ "▁dies e",
+ "сти ту",
+ "aw a",
+ "a wa",
+ "▁i OS",
+ "▁Ch inese",
+ "▁Chine se",
+ "▁T R",
+ "▁ TR",
+ "▁K en",
+ "▁Ke n",
+ "▁U ne",
+ "▁Un e",
+ "▁cre ates",
+ "▁create s",
+ "▁sh owed",
+ "▁show ed",
+ "▁sho wed",
+ "▁é v",
+ "▁ év",
+ "olog ia",
+ "olo gia",
+ "▁pro test",
+ "▁prote st",
+ "▁prot est",
+ "▁P f",
+ "▁s quad",
+ "▁squ ad",
+ "++ ,",
+ "á v",
+ "▁ess ere",
+ "з я",
+ "ko l",
+ "k ol",
+ "▁slight ly",
+ "ad dr",
+ "add r",
+ "â n",
+ "▁red uce",
+ "▁redu ce",
+ "▁ reduce",
+ "▁\\ (\\",
+ "▁\\( \\",
+ "▁D ep",
+ "▁De p",
+ "▁ Dep",
+ "▁gener ic",
+ "▁gene ric",
+ "▁ generic",
+ "Lo ader",
+ "Load er",
+ "ț i",
+ "▁п ос",
+ "▁по с",
+ "▁occ asion",
+ "▁occas ion",
+ "▁L ady",
+ "▁La dy",
+ "▁Lad y",
+ "ent ity",
+ "enti ty",
+ "▁av ant",
+ "▁ avant",
+ "▁P as",
+ "▁Pa s",
+ "ag gio",
+ "aggi o",
+ "agg io",
+ "\\ {",
+ "па д",
+ "athol ic",
+ "Pass word",
+ "▁res pond",
+ "▁resp ond",
+ "▁ respond",
+ "▁N on",
+ "▁No n",
+ "▁ Non",
+ "A G",
+ "ne g",
+ "n eg",
+ "▁у с",
+ "▁ ус",
+ "bl ob",
+ "blo b",
+ "b lob",
+ "ck e",
+ "c ke",
+ "▁Cons ider",
+ "▁C are",
+ "▁Car e",
+ "▁Ca re",
+ "ik i",
+ "i ki",
+ "▁Ch icago",
+ "in den",
+ "ind en",
+ "inde n",
+ "▁C op",
+ "▁Co p",
+ "] +",
+ "ö m",
+ "év rier",
+ "к ло",
+ "al en",
+ "ale n",
+ "a len",
+ "▁m aj",
+ "▁ma j",
+ "ra cy",
+ "rac y",
+ "r acy",
+ "or te",
+ "ort e",
+ "ien ts",
+ "ient s",
+ "i ents",
+ "el ls",
+ "ell s",
+ "act ivity",
+ "activ ity",
+ "▁r untime",
+ "▁run time",
+ "▁runt ime",
+ "▁ runtime",
+ "NU LL",
+ "N ULL",
+ "▁poss ibly",
+ "▁possib ly",
+ "▁s tri",
+ "▁st ri",
+ "▁str i",
+ "iz i",
+ "i zi",
+ "▁m ir",
+ "▁mi r",
+ "▁ mir",
+ "▁V ersion",
+ "▁Vers ion",
+ "▁ Version",
+ "pr ime",
+ "prim e",
+ "▁tw enty",
+ "▁M ah",
+ "▁Ma h",
+ "▁s ounds",
+ "▁sound s",
+ "ше н",
+ "ш ен",
+ "cl usion",
+ "clus ion",
+ "ac z",
+ "a cz",
+ "▁determ ined",
+ "▁determine d",
+ "▁determin ed",
+ "▁R ep",
+ "▁Re p",
+ "▁ Rep",
+ "▁Land es",
+ "▁Lan des",
+ "▁w all",
+ "▁wa ll",
+ "▁wal l",
+ "▁ wall",
+ "ig i",
+ "i gi",
+ "▁re set",
+ "▁res et",
+ "▁ reset",
+ "ш о",
+ "ya n",
+ "y an",
+ "Me t",
+ "M et",
+ "e i",
+ "▁app earance",
+ "▁appear ance",
+ "▁f ois",
+ "▁fo is",
+ "▁foi s",
+ "▁ fois",
+ "▁n ell",
+ "▁ne ll",
+ "▁nel l",
+ "▁ nell",
+ "es i",
+ "e si",
+ "ё т",
+ "lo or",
+ "l oor",
+ "▁U l",
+ "▁resol ution",
+ "▁f ot",
+ "▁fo t",
+ "▁through out",
+ "▁r i",
+ "▁ ri",
+ "Le vel",
+ "po ol",
+ "p ool",
+ "▁id entity",
+ "▁ident ity",
+ "▁ identity",
+ "▁j anu",
+ "▁jan u",
+ "▁ja nu",
+ "▁im per",
+ "▁imp er",
+ "▁ imper",
+ "▁ö ver",
+ "} `",
+ "▁in fer",
+ "▁inf er",
+ "▁d ates",
+ "▁da tes",
+ "▁dat es",
+ "▁date s",
+ "▁ dates",
+ "▁Stand ard",
+ "▁ Standard",
+ "for ce",
+ "oc key",
+ "ock ey",
+ "ter a",
+ "te ra",
+ "t era",
+ "▁dist ingu",
+ "▁pres ence",
+ "li ca",
+ "lic a",
+ "l ica",
+ "▁le aving",
+ "it ung",
+ "itu ng",
+ "é b",
+ "▁estab lish",
+ "▁m aar",
+ "▁ma ar",
+ "ad i",
+ "a di",
+ "▁New s",
+ "▁Ne ws",
+ "▁ News",
+ "az on",
+ "a zon",
+ "fo lg",
+ "fol g",
+ "f olg",
+ "▁H ence",
+ "▁Hen ce",
+ "▁Y e",
+ "▁f ab",
+ "▁fa b",
+ "▁ fab",
+ "▁f ühr",
+ "▁ führ",
+ "it map",
+ "▁V ers",
+ "▁Ver s",
+ "▁Ve rs",
+ "ro v",
+ "r ov",
+ "Si gn",
+ "S ign",
+ "de vice",
+ "dev ice",
+ "S igma",
+ "▁wet enschapp",
+ "▁P s",
+ "PA TH",
+ "P ATH",
+ "▁t orn",
+ "▁to rn",
+ "▁tor n",
+ "ve st",
+ "ves t",
+ "v est",
+ "ст ов",
+ "сто в",
+ "с тов",
+ "ac count",
+ "acc ount",
+ "acco unt",
+ "▁lar gest",
+ "▁large st",
+ "▁larg est",
+ "▁per cent",
+ "▁perce nt",
+ "▁ percent",
+ "▁W omen",
+ "▁Wo men",
+ "▁im g",
+ "▁ img",
+ "to ol",
+ "t ool",
+ "▁r oce",
+ "▁ro ce",
+ "▁a y",
+ "▁ ay",
+ "in et",
+ "ine t",
+ "i net",
+ "▁ao ût",
+ "▁pol ynomial",
+ "▁integr al",
+ "▁integra l",
+ "▁a reas",
+ "▁are as",
+ "▁area s",
+ "} '",
+ "▁h yp",
+ "▁hy p",
+ "loy ee",
+ "та ль",
+ "тал ь",
+ "т аль",
+ "▁pro xy",
+ "▁ proxy",
+ "▁W y",
+ "▁М екси",
+ "▁Ме кси",
+ "▁es cape",
+ "▁esc ape",
+ "▁ escape",
+ "ol ar",
+ "ola r",
+ "o lar",
+ "▁mis take",
+ "▁mist ake",
+ ")} {",
+ ") }{",
+ "▁P ot",
+ "▁Po t",
+ "▁process es",
+ "▁proc esses",
+ "\"> \r",
+ "\" >\r",
+ "hal ten",
+ "halt en",
+ "zz a",
+ "z za",
+ "am o",
+ "a mo",
+ "к ре",
+ "▁W ood",
+ "▁Wo od",
+ "ø r",
+ "▁с ер",
+ "▁се р",
+ "▁ сер",
+ "oc ia",
+ "oci a",
+ "o cia",
+ "tw o",
+ "t wo",
+ "pro file",
+ "prof ile",
+ "▁A st",
+ "▁As t",
+ "em bro",
+ "emb ro",
+ "▁ar ms",
+ "▁arm s",
+ "in as",
+ "ina s",
+ "i nas",
+ "in nen",
+ "inn en",
+ "▁m sg",
+ "▁ms g",
+ "▁ msg",
+ "IN T",
+ "I NT",
+ "▁b atter",
+ "▁batt er",
+ "▁bat ter",
+ "ign ment",
+ "▁v y",
+ "▁ vy",
+ "H rsg",
+ "▁G rund",
+ "▁Gr und",
+ "▁Gru nd",
+ "ro c",
+ "r oc",
+ "se g",
+ "s eg",
+ "▁de cor",
+ "▁dec or",
+ "▁ decor",
+ "▁event ually",
+ "> ,",
+ "▁p ag",
+ "▁pa g",
+ "▁ pag",
+ "an ten",
+ "ant en",
+ "ante n",
+ "a nten",
+ "▁str ugg",
+ "▁stru gg",
+ "}^ \\",
+ "} ^\\",
+ "date n",
+ "da ten",
+ "dat en",
+ "d aten",
+ "▁re la",
+ "▁r ela",
+ "▁rel a",
+ "по в",
+ "п ов",
+ "▁ко ро",
+ "▁кор о",
+ "▁B os",
+ "▁Bo s",
+ "▁l abor",
+ "▁la bor",
+ "▁lab or",
+ "▁Se cret",
+ "▁Sec ret",
+ "▁ Secret",
+ "ug en",
+ "uge n",
+ "u gen",
+ "▁j ap",
+ "▁ja p",
+ "▁hus band",
+ "▁Al bum",
+ "▁Alb um",
+ "▁et wa",
+ "▁про из",
+ "ri cht",
+ "ric ht",
+ "rich t",
+ "r icht",
+ "ra ch",
+ "rac h",
+ "r ach",
+ "ba t",
+ "b at",
+ "▁pre par",
+ "▁prep ar",
+ "▁St ock",
+ "▁Sto ck",
+ "▁l ack",
+ "▁la ck",
+ "▁lac k",
+ "▁ lack",
+ "хі д",
+ "х ід",
+ "▁h ogy",
+ "▁ho gy",
+ "▁Ch rome",
+ "▁Chr ome",
+ "▁Ad min",
+ "▁ Admin",
+ "▁com parison",
+ "▁compar ison",
+ "▁incre asing",
+ "н г",
+ "im i",
+ "i mi",
+ "D b",
+ "▁g ef",
+ "▁ge f",
+ "▁ gef",
+ "uch t",
+ "uc ht",
+ "u cht",
+ "és e",
+ "é se",
+ "gen ce",
+ "g ence",
+ "▁C ore",
+ "▁Cor e",
+ "▁Co re",
+ "▁ Core",
+ "▁in correct",
+ "▁incor rect",
+ "▁ass uming",
+ "▁assum ing",
+ "our se",
+ "ours e",
+ "ie ron",
+ "ier on",
+ "iero n",
+ "▁The orem",
+ "▁ Theorem",
+ "▁c asa",
+ "▁cas a",
+ "▁ca sa",
+ "je s",
+ "j es",
+ "▁д ере",
+ "▁де ре",
+ "▁` \"",
+ "L D",
+ "ä ß",
+ "De b",
+ "D eb",
+ "▁su iv",
+ "▁B ank",
+ "▁Ban k",
+ "li bs",
+ "lib s",
+ "▁Le on",
+ "▁Leo n",
+ "▁qu art",
+ "▁quar t",
+ "▁prof essional",
+ "▁profession al",
+ "▁profess ional",
+ "▁t iene",
+ "▁ti ene",
+ "▁tie ne",
+ "▁acc omp",
+ "▁ac comp",
+ "▁accom p",
+ "ст ер",
+ "сте р",
+ "с тер",
+ "▁U K",
+ "▁ UK",
+ "N N",
+ "▁l í",
+ "ц я",
+ "ke l",
+ "k el",
+ "▁ •",
+ "▁d ise",
+ "▁di se",
+ "▁dis e",
+ "on to",
+ "ont o",
+ "▁m á",
+ "if s",
+ "i fs",
+ "bi ld",
+ "bil d",
+ "b ild",
+ "▁comp ute",
+ "▁comput e",
+ "▁ compute",
+ "▁é d",
+ "▁ éd",
+ "j ę",
+ "▁M é",
+ "▁l anguages",
+ "▁language s",
+ "▁T imes",
+ "▁Time s",
+ "▁Tim es",
+ "▁Ti mes",
+ "▁ Times",
+ "ce n",
+ "c en",
+ "▁ав то",
+ "ý m",
+ "en ez",
+ "ene z",
+ "e nez",
+ "▁u pp",
+ "▁up p",
+ "▁ upp",
+ "▁m éd",
+ "▁mé d",
+ "▁cu ando",
+ "о д",
+ "Int ent",
+ "ee rd",
+ "e erd",
+ "▁T al",
+ "▁Ta l",
+ "off set",
+ "offs et",
+ "▁h aben",
+ "▁ha ben",
+ "▁hab en",
+ "▁habe n",
+ "re me",
+ "rem e",
+ "r eme",
+ "▁St ack",
+ "▁Sta ck",
+ "▁ Stack",
+ "▁d ri",
+ "▁dr i",
+ "▁ dri",
+ "▁sein em",
+ "▁seine m",
+ "▁sei nem",
+ "▁f évrier",
+ "▁comb ination",
+ "▁combin ation",
+ "▁s oll",
+ "▁so ll",
+ "▁sol l",
+ "▁mov ement",
+ "▁mo vement",
+ "▁move ment",
+ "Sp ec",
+ "Spe c",
+ "S pec",
+ "к ры",
+ "ret ch",
+ "r etch",
+ "Off set",
+ "Ro ot",
+ "R oot",
+ "А р",
+ "wa rt",
+ "war t",
+ "w art",
+ "▁F ollow",
+ "▁Fol low",
+ "▁So cial",
+ "▁Soci al",
+ "▁Soc ial",
+ "ни ков",
+ "ник ов",
+ "▁ →",
+ "Do n",
+ "D on",
+ "▁h arm",
+ "▁ha rm",
+ "▁har m",
+ "▁ harm",
+ "ag r",
+ "a gr",
+ "ne go",
+ "neg o",
+ "n ego",
+ "re source",
+ "res ource",
+ "▁L uc",
+ "▁Lu c",
+ "▁se inen",
+ "▁sein en",
+ "▁seine n",
+ "▁sei nen",
+ "▁De partment",
+ "▁Depart ment",
+ "▁Up date",
+ "▁ Update",
+ "▁Tex as",
+ "▁re ve",
+ "▁rev e",
+ "▁P os",
+ "▁Po s",
+ "▁ Pos",
+ "▁s hot",
+ "▁sh ot",
+ "▁sho t",
+ "▁ shot",
+ "ot he",
+ "oth e",
+ "o the",
+ "▁repe ated",
+ "▁repeat ed",
+ "▁rec ently",
+ "▁recent ly",
+ "áb an",
+ "á ban",
+ "ak s",
+ "a ks",
+ "па н",
+ "п ан",
+ "▁c ha",
+ "▁ch a",
+ "▁ cha",
+ "oh l",
+ "o hl",
+ "▁t end",
+ "▁te nd",
+ "▁ten d",
+ "▁д во",
+ "ch ts",
+ "cht s",
+ "ça ise",
+ "çais e",
+ "pl ing",
+ "p ling",
+ "al bum",
+ "e j",
+ "▁` [",
+ "ma ps",
+ "map s",
+ "m aps",
+ "▁un its",
+ "▁unit s",
+ "▁< !--",
+ "▁",
+ "St and",
+ "▁techn ique",
+ "▁techni que",
+ "▁E ss",
+ "▁Es s",
+ "▁Ox ford",
+ "▁ ла",
+ "t ikz",
+ "ли й",
+ "Log in",
+ "Lo gin",
+ "▁min ister",
+ "▁minist er",
+ "▁mini ster",
+ "▁ minister",
+ "▁c url",
+ "▁cu rl",
+ "▁cur l",
+ "▁ curl",
+ "ka n",
+ "k an",
+ "▁m aps",
+ "▁ma ps",
+ "▁map s",
+ "▁ maps",
+ "in da",
+ "ind a",
+ "ri eb",
+ "rie b",
+ "r ieb",
+ "▁E ND",
+ "▁EN D",
+ "▁ END",
+ "if ies",
+ "ifi es",
+ "ifie s",
+ "con sole",
+ "cons ole",
+ "bu ry",
+ "bur y",
+ "b ury",
+ "▁L E",
+ "▁ LE",
+ "▁indep end",
+ "▁inde pend",
+ "▁t a",
+ "▁ ta",
+ "▁ Ś",
+ "on el",
+ "one l",
+ "o nel",
+ "és z",
+ "é sz",
+ "▁I st",
+ "▁Is t",
+ "ut ive",
+ "uti ve",
+ "ё л",
+ "▁Reg ion",
+ "▁ Region",
+ "▁( =",
+ "▁comp act",
+ "ço is",
+ "ç ois",
+ "▁label s",
+ "▁lab els",
+ "▁ labels",
+ "autor ité",
+ "▁s tan",
+ "▁st an",
+ "▁sta n",
+ "▁ stan",
+ "▁fran çaise",
+ "▁français e",
+ "▁rem oving",
+ "▁remov ing",
+ "y c",
+ "} |",
+ "▁Ex ec",
+ "▁ Exec",
+ "($ _",
+ "( $_",
+ "ma g",
+ "m ag",
+ "be fore",
+ "▁stop ped",
+ "▁sto pped",
+ "ми и",
+ "▁ref resh",
+ "▁ refresh",
+ "un kt",
+ "unk t",
+ "ic io",
+ "ici o",
+ "i cio",
+ "X ml",
+ "▁T ab",
+ "▁Ta b",
+ "▁ Tab",
+ "▁f ounded",
+ "▁found ed",
+ "▁f al",
+ "▁fa l",
+ "▁ fal",
+ "f x",
+ "▁Histor ia",
+ "▁Hist oria",
+ "▁Ear ly",
+ "▁Earl y",
+ "Do m",
+ "D om",
+ "▁de cide",
+ "▁dec ide",
+ "▁decid e",
+ "▁under stood",
+ "▁j ur",
+ "▁ju r",
+ "▁N r",
+ "▁cap ac",
+ "wa s",
+ "w as",
+ "▁en emy",
+ "▁enem y",
+ "▁program s",
+ "▁m ask",
+ "▁ma sk",
+ "▁mas k",
+ "▁ mask",
+ "ск е",
+ "с ке",
+ "▁gr oupe",
+ "▁group e",
+ "ca m",
+ "c am",
+ "▁w idget",
+ "▁wid get",
+ "▁ widget",
+ "RE ATE",
+ "▁se va",
+ "▁Bar cel",
+ "▁p erd",
+ "▁per d",
+ "▁pe rd",
+ "▁М у",
+ "ran ce",
+ "r ance",
+ "TY PE",
+ "T YPE",
+ "▁{ '",
+ "▁ {'",
+ "▁b ill",
+ "▁bi ll",
+ "▁bil l",
+ "▁\" _",
+ "' `",
+ "ba hn",
+ "bah n",
+ "b ahn",
+ "▁cont ained",
+ "▁contain ed",
+ "Cl ose",
+ "C lose",
+ "ru g",
+ "r ug",
+ "eg y",
+ "e gy",
+ "▁s ight",
+ "▁sig ht",
+ "▁Pro vin",
+ "▁Prov in",
+ "н ю",
+ "ar z",
+ "a rz",
+ "ще н",
+ "щ ен",
+ "▁J oe",
+ "▁Jo e",
+ "▁de leted",
+ "▁delete d",
+ "▁delet ed",
+ "▁A uto",
+ "▁Aut o",
+ "▁Au to",
+ "▁ Auto",
+ "▁m eter",
+ "▁me ter",
+ "▁met er",
+ "▁ meter",
+ "C G",
+ "ъ л",
+ "▁p ent",
+ "▁pe nt",
+ "▁pen t",
+ "▁ pent",
+ "▁be zeichnet",
+ "Su m",
+ "S um",
+ "db c",
+ "d bc",
+ "▁Pl atz",
+ "▁Pla tz",
+ "▁Plat z",
+ "ect ors",
+ "ector s",
+ "e ctors",
+ "▁L ittle",
+ "QU E",
+ "Q UE",
+ "ці я",
+ "ц ія",
+ "те ля",
+ "тел я",
+ "nig ht",
+ "n ight",
+ "▁l l",
+ "▁ ll",
+ "▁most ly",
+ "UI D",
+ "U ID",
+ "▁b ez",
+ "▁be z",
+ "▁ bez",
+ "do b",
+ "d ob",
+ "кс и",
+ "к си",
+ "ter ne",
+ "tern e",
+ "t erne",
+ "▁cor ner",
+ "▁corn er",
+ "at y",
+ "a ty",
+ "▁impro ve",
+ "▁improv e",
+ "▁impr ove",
+ "▁in tr",
+ "▁int r",
+ "▁` @",
+ "ar od",
+ "aro d",
+ "a rod",
+ "▁install ation",
+ "▁instal lation",
+ "▁Refer ências",
+ "ig an",
+ "iga n",
+ "i gan",
+ "▁crit ic",
+ "ad el",
+ "ade l",
+ "a del",
+ "▁се ло",
+ ", \r",
+ "at ori",
+ "ator i",
+ "ato ri",
+ "▁F ri",
+ "▁Fr i",
+ "▁ Fri",
+ "▁ré férences",
+ "▁Int ent",
+ "▁ Intent",
+ "▁t ant",
+ "▁tan t",
+ "▁ta nt",
+ "un ci",
+ "unc i",
+ "▁level s",
+ "▁lev els",
+ "er es",
+ "ere s",
+ "e res",
+ "▁e mer",
+ "▁em er",
+ "▁ emer",
+ "sa fe",
+ "t k",
+ "▁c ham",
+ "▁ch am",
+ "▁cha m",
+ "▁great ly",
+ "▁we it",
+ "▁ weit",
+ "▁co ach",
+ "▁to ward",
+ "Hom e",
+ "H ome",
+ "▁Bo olean",
+ "▁ Boolean",
+ "те л",
+ "т ел",
+ "▁m ock",
+ "▁mo ck",
+ "▁ mock",
+ "▁appreci ate",
+ "▁C ross",
+ "▁Cr oss",
+ "▁Cro ss",
+ "▁T ake",
+ "▁Ta ke",
+ "▁Tak e",
+ "▁ Take",
+ "D P",
+ "▁s ides",
+ "▁si des",
+ "▁side s",
+ "▁sid es",
+ "▁Norm daten",
+ "де й",
+ "д ей",
+ "st al",
+ "sta l",
+ "s tal",
+ "▁c out",
+ "▁co ut",
+ "▁cou t",
+ "▁ cout",
+ "b n",
+ "▁V ert",
+ "▁Ver t",
+ "▁Ve rt",
+ "▁ Vert",
+ "▁b ird",
+ "▁bi rd",
+ "▁bir d",
+ "▁ bird",
+ "▁dynam ically",
+ "▁dynamic ally",
+ "▁D ol",
+ "▁Do l",
+ "▁B urg",
+ "▁Bu rg",
+ "▁Bur g",
+ "▁d og",
+ "▁do g",
+ "▁ dog",
+ "ät t",
+ "ä tt",
+ "▁n uc",
+ "▁nu c",
+ "E C",
+ "By tes",
+ "Byte s",
+ "▁a k",
+ "▁ ak",
+ "re land",
+ "rel and",
+ "r eland",
+ "▁gu itar",
+ "▁reg arding",
+ "▁regard ing",
+ "▁F uß",
+ "▁Fu ß",
+ "▁до л",
+ "▁ дол",
+ "au ss",
+ "aus s",
+ "a uss",
+ "▁j ej",
+ "▁je j",
+ "ac o",
+ "a co",
+ "▁up dates",
+ "▁update s",
+ "▁upd ates",
+ "ру к",
+ "р ук",
+ "(' /",
+ "▁c old",
+ "▁col d",
+ "▁co ld",
+ "▁G iven",
+ "▁Gi ven",
+ "▁Give n",
+ "hi n",
+ "h in",
+ "▁fe eling",
+ "▁feel ing",
+ "▁fee ling",
+ "ig li",
+ "fa h",
+ "f ah",
+ "ст ре",
+ "стр е",
+ "с тре",
+ "bo ol",
+ "b ool",
+ "init ial",
+ "▁станов ника",
+ "▁An na",
+ "▁Ann a",
+ "▁h ors",
+ "▁hor s",
+ "▁ho rs",
+ "▁d oll",
+ "▁do ll",
+ "▁dol l",
+ "▁con sum",
+ "▁cons um",
+ "▁ consum",
+ "ub er",
+ "ube r",
+ "u ber",
+ "stand ing",
+ "stan ding",
+ "act iv",
+ "з і",
+ "check ed",
+ "▁perm issions",
+ "▁permission s",
+ "▁M onte",
+ "▁Mon te",
+ "▁Mont e",
+ "Write Line",
+ "pl us",
+ "p lus",
+ "▁E qu",
+ "▁Eq u",
+ "▁ Equ",
+ "▁и х",
+ "▁ их",
+ "ч ки",
+ "un que",
+ "▁L O",
+ "▁ LO",
+ "e a",
+ "sam ple",
+ "s ample",
+ "ie sz",
+ "ies z",
+ "i esz",
+ "or al",
+ "ora l",
+ "o ral",
+ "▁И н",
+ "os ton",
+ "ost on",
+ "osto n",
+ "o ston",
+ "▁S imon",
+ "▁Sim on",
+ "▁Si mon",
+ "fa st",
+ "fas t",
+ "f ast",
+ "m k",
+ "as sen",
+ "ass en",
+ "asse n",
+ "▁arch itecture",
+ "▁architect ure",
+ "▁ architecture",
+ "ens es",
+ "ense s",
+ "▁ Å",
+ "▁to pic",
+ "▁top ic",
+ "▁ topic",
+ "▁dis able",
+ "▁ disable",
+ "▁C ru",
+ "▁Cr u",
+ "▁Cont rol",
+ "▁ Control",
+ "▁cre ation",
+ "▁hy per",
+ "▁hyp er",
+ "▁ hyper",
+ "it ud",
+ "itu d",
+ "же ния",
+ "ar am",
+ "ara m",
+ "a ram",
+ "▁г де",
+ "ien st",
+ "iens t",
+ "i enst",
+ "ed ule",
+ "edu le",
+ "▁B ot",
+ "▁Bo t",
+ "▁О с",
+ "▁The ir",
+ "an ne",
+ "ann e",
+ "M icrosoft",
+ "▁P M",
+ "▁ PM",
+ "yd ro",
+ "y dro",
+ "ent lich",
+ "▁E ine",
+ "▁Ein e",
+ "CH AR",
+ ": '",
+ "We ll",
+ "Wel l",
+ "W ell",
+ "le ton",
+ "let on",
+ "l eton",
+ "▁support s",
+ "▁sup ports",
+ "'] )",
+ "' ])",
+ "man ual",
+ "▁v ice",
+ "▁vi ce",
+ "▁vic e",
+ "▁ vice",
+ "as a",
+ "a sa",
+ "cl os",
+ "clo s",
+ "c los",
+ "vi sed",
+ "vis ed",
+ "v ised",
+ "▁p ok",
+ "▁po k",
+ "tr ack",
+ "tra ck",
+ "t rack",
+ "но ст",
+ "нос т",
+ "... .....",
+ ".... ....",
+ "..... ...",
+ "▁' \\",
+ "▁ '\\",
+ "² .",
+ "▁or ders",
+ "▁order s",
+ "▁ord ers",
+ "▁ orders",
+ "et ta",
+ "ett a",
+ "e tta",
+ "▁con version",
+ "▁conv ersion",
+ "▁convers ion",
+ "▁t rade",
+ "▁tr ade",
+ "▁tra de",
+ "▁trad e",
+ "cl i",
+ "c li",
+ "▁И сто",
+ "▁Ис то",
+ "▁a kt",
+ "▁ak t",
+ "▁ akt",
+ "▁sub set",
+ "▁subs et",
+ "▁ subset",
+ "▁a ug",
+ "▁au g",
+ "▁ aug",
+ "▁le aves",
+ "▁leave s",
+ "Mat h",
+ "Ma th",
+ "M ath",
+ "an ned",
+ "ann ed",
+ "anne d",
+ "ka l",
+ "k al",
+ "▁Ве ли",
+ "▁n og",
+ "▁no g",
+ "▁ nog",
+ "▁e th",
+ "▁et h",
+ "▁ eth",
+ "▁h air",
+ "▁ha ir",
+ "ar ound",
+ "aro und",
+ "a round",
+ "▁java x",
+ "▁jav ax",
+ "▁ javax",
+ "во й",
+ "▁C entre",
+ "▁Cent re",
+ "ö ß",
+ "ut i",
+ "u ti",
+ "▁n avigation",
+ "▁navig ation",
+ "▁ navigation",
+ "▁P S",
+ "▁ PS",
+ "▁w a",
+ "▁ wa",
+ "▁Ро ссии",
+ "▁Рос сии",
+ "▁Росси и",
+ "us a",
+ "u sa",
+ "ze ta",
+ "zet a",
+ "z eta",
+ "▁P DF",
+ "▁ PDF",
+ "▁m ismo",
+ "▁mis mo",
+ "▁mism o",
+ "pro perties",
+ "me ister",
+ "ль та",
+ "for ward",
+ "▁O st",
+ "▁Os t",
+ "ki ns",
+ "kin s",
+ "k ins",
+ "▁s ido",
+ "▁si do",
+ "▁sid o",
+ "зо в",
+ "з ов",
+ "ta gs",
+ "tag s",
+ "t ags",
+ "▁a ctor",
+ "▁act or",
+ "▁ac tor",
+ "▁ actor",
+ "▁f ly",
+ "▁fl y",
+ "▁ fly",
+ "C R",
+ "ag ini",
+ "agi ni",
+ "agin i",
+ "▁l ett",
+ "▁le tt",
+ "▁let t",
+ "▁ lett",
+ "en i",
+ "e ni",
+ "te ch",
+ "t ech",
+ "▁E nc",
+ "▁En c",
+ "▁ Enc",
+ "or acle",
+ "ora cle",
+ "o racle",
+ "amil ton",
+ "ze j",
+ "z ej",
+ "fe n",
+ "f en",
+ "ume rate",
+ "umer ate",
+ "▁qu esto",
+ "▁que sto",
+ "▁q uesto",
+ "▁quest o",
+ "da rt",
+ "dar t",
+ "d art",
+ "▁K ore",
+ "▁Ko re",
+ "▁Kor e",
+ "ap is",
+ "api s",
+ "a pis",
+ "ep er",
+ "e per",
+ "Sc reen",
+ "S creen",
+ "wa ll",
+ "wal l",
+ "w all",
+ "▁is land",
+ "sh e",
+ "s he",
+ "▁l igger",
+ "▁lig ger",
+ "в ся",
+ "fa ng",
+ "fan g",
+ "f ang",
+ "▁t ard",
+ "▁tar d",
+ "▁ta rd",
+ "▁pla ats",
+ "▁п ло",
+ "▁ пло",
+ "▁Off ice",
+ "▁Offic e",
+ "▁ Office",
+ "▁S ET",
+ "▁SE T",
+ "▁ SET",
+ "▁circ uit",
+ "je d",
+ "j ed",
+ "Sa ve",
+ "S ave",
+ "ль но",
+ "So cket",
+ "S ocket",
+ "▁In dex",
+ "▁Ind ex",
+ "▁ Index",
+ "AC K",
+ "A CK",
+ "id ers",
+ "ide rs",
+ "ider s",
+ "i ders",
+ "er er",
+ "ere r",
+ "e rer",
+ "▁С ША",
+ "▁l ady",
+ "▁la dy",
+ "▁lad y",
+ "▁sch eme",
+ "▁sche me",
+ "ie lle",
+ "iel le",
+ "i elle",
+ "▁ex erc",
+ "▁exer c",
+ ")} \\",
+ ") }\\",
+ "Date Time",
+ "at han",
+ "ath an",
+ "a than",
+ "▁Prof essor",
+ "▁mo ins",
+ "▁moi ns",
+ "▁Ex cel",
+ "▁ Excel",
+ "▁H ay",
+ "▁Ha y",
+ "▁Mus ik",
+ "▁ ї",
+ "ę d",
+ "▁\" .",
+ "▁ \".",
+ "▁бу в",
+ "▁inst rument",
+ "▁instru ment",
+ "па р",
+ "п ар",
+ "▁б ере",
+ "▁бе ре",
+ "▁ бере",
+ "▁polit ique",
+ "▁trad ition",
+ "▁V M",
+ "▁ VM",
+ "▁Ar ts",
+ "▁Art s",
+ "▁C i",
+ "Us e",
+ "U se",
+ "▁a ggreg",
+ "▁ag greg",
+ "▁ aggreg",
+ "▁we eks",
+ "▁week s",
+ "▁o pport",
+ "▁op port",
+ "▁opp ort",
+ "it ing",
+ "iti ng",
+ "i ting",
+ "▁vert ical",
+ "▁ vertical",
+ "▁N az",
+ "▁Na z",
+ ".. .)",
+ "... )",
+ "iz o",
+ "i zo",
+ "▁c ycle",
+ "▁cy cle",
+ "▁cycl e",
+ "▁ cycle",
+ "▁tem po",
+ "▁temp o",
+ "т ре",
+ "▁hand ling",
+ "ist ence",
+ "isten ce",
+ "▁p aste",
+ "▁pas te",
+ "▁pa ste",
+ "▁past e",
+ "▁ paste",
+ "▁en jo",
+ "RO UP",
+ "▁o uter",
+ "▁out er",
+ "▁ou ter",
+ "▁ outer",
+ "▁su pply",
+ "▁supp ly",
+ "▁sup ply",
+ "em an",
+ "ema n",
+ "e man",
+ "▁acc ident",
+ "▁\\ ]",
+ "▁ \\]",
+ "▁те х",
+ "▁ тех",
+ "Po ol",
+ "P ool",
+ "ot ing",
+ "oti ng",
+ "o ting",
+ "onym ous",
+ "▁Gi ov",
+ "▁u d",
+ "▁ ud",
+ "▁. /",
+ "▁ ./",
+ "ER ROR",
+ "ERR OR",
+ "con struct",
+ "const ruct",
+ "text width",
+ "qu ipe",
+ "qui pe",
+ "quip e",
+ "case s",
+ "cas es",
+ "c ases",
+ "▁а д",
+ "▁R ow",
+ "▁Ro w",
+ "▁ Row",
+ "Hol der",
+ "Hold er",
+ "H older",
+ "wa n",
+ "w an",
+ "ar na",
+ "arn a",
+ "Me m",
+ "M em",
+ "▁Canad ian",
+ "▁Com mission",
+ "▁Comm ission",
+ "su n",
+ "s un",
+ "▁app s",
+ "▁ap ps",
+ "▁ apps",
+ "▁B lo",
+ "▁Bl o",
+ "▁i hrer",
+ "▁ih rer",
+ "▁ihr er",
+ "▁ihre r",
+ "▁famil le",
+ "▁fam ille",
+ "▁m ě",
+ "▁p y",
+ "▁ py",
+ "и с",
+ "▁т ого",
+ "▁то го",
+ "▁ того",
+ "▁Ag ain",
+ "▁ign ore",
+ "▁ignor e",
+ "▁ ignore",
+ "▁tele vision",
+ "▁televis ion",
+ "Pa t",
+ "P at",
+ "hi de",
+ "h ide",
+ "▁R ev",
+ "▁Re v",
+ "▁b ear",
+ "▁be ar",
+ "ph y",
+ "p hy",
+ "▁no ise",
+ "▁w ra",
+ "▁wr a",
+ "at ionale",
+ "ation ale",
+ "ational e",
+ "▁coll abor",
+ "bor der",
+ "b order",
+ "▁el ected",
+ "▁elect ed",
+ "▁ele cted",
+ "▁sur pr",
+ "▁a voir",
+ "▁av oir",
+ "▁avo ir",
+ "▁ avoir",
+ "▁ass embly",
+ "▁assemb ly",
+ "▁ assembly",
+ "▁об ще",
+ "▁arbitr ary",
+ "▁br ief",
+ "▁- --",
+ "▁-- -",
+ "▁ ---",
+ "▁M aur",
+ "▁Ma ur",
+ "▁Mau r",
+ "gr ession",
+ "gress ion",
+ "g ression",
+ "ic ia",
+ "ici a",
+ "i cia",
+ "▁lie gt",
+ "▁Fig ure",
+ "▁on to",
+ "▁ont o",
+ "▁ onto",
+ "Re pository",
+ "Repos itory",
+ "▁dé f",
+ "▁f orth",
+ "▁for th",
+ "▁fort h",
+ "▁cl icked",
+ "▁click ed",
+ "se ite",
+ "▁n otes",
+ "▁not es",
+ "▁no tes",
+ "▁note s",
+ "▁ notes",
+ "nat ive",
+ "n ative",
+ "▁ED IT",
+ "▁ EDIT",
+ "ы е",
+ "M T",
+ "am ental",
+ "ament al",
+ "amen tal",
+ "▁r ose",
+ "▁ro se",
+ "▁ros e",
+ "▁ rose",
+ "▁pu ede",
+ "▁pue de",
+ "De legate",
+ "Deleg ate",
+ "ub a",
+ "u ba",
+ "ne o",
+ "xi s",
+ "x is",
+ "▁Ar thur",
+ "UR E",
+ "U RE",
+ "am ing",
+ "ami ng",
+ "amin g",
+ "a ming",
+ "De vice",
+ "Dev ice",
+ "▁d iam",
+ "▁di am",
+ "▁dia m",
+ "st änd",
+ "▁p ron",
+ "▁pro n",
+ "▁pr on",
+ "oi s",
+ "o is",
+ "com ing",
+ "co ming",
+ "c oming",
+ "Param eters",
+ "Parameter s",
+ "uv ud",
+ "▁ab ility",
+ "▁ ability",
+ "▁m ét",
+ "▁mé t",
+ "▁Un fortunately",
+ "f d",
+ "D ictionary",
+ "so cket",
+ "sock et",
+ "s ocket",
+ "▁con oc",
+ "▁co noc",
+ "cont ains",
+ "es sed",
+ "ess ed",
+ "esse d",
+ "▁gel dig",
+ "▁geld ig",
+ "ни ца",
+ "ниц а",
+ "▁point ed",
+ "es ti",
+ "est i",
+ "no m",
+ "n om",
+ "ографи я",
+ "▁represent s",
+ "▁repres ents",
+ "▁man ip",
+ "wor ld",
+ "w orld",
+ "▁resol ved",
+ "▁resolve d",
+ "te gr",
+ "t egr",
+ "▁d ort",
+ "▁do rt",
+ "▁dor t",
+ "as tern",
+ "ast ern",
+ "aster n",
+ "aste rn",
+ "▁camp aign",
+ "▁pr imo",
+ "▁prim o",
+ "▁pri mo",
+ "▁; ;",
+ "▁ ;;",
+ "▁sni ppet",
+ "▁N ik",
+ "▁Ni k",
+ "To tal",
+ "T otal",
+ "iss ement",
+ "isse ment",
+ "AC E",
+ "A CE",
+ "▁ver ify",
+ "▁ verify",
+ "if fe",
+ "iff e",
+ "i ffe",
+ "la gen",
+ "lag en",
+ "lage n",
+ "l agen",
+ "ie ur",
+ "ieu r",
+ "i eur",
+ "▁convert ed",
+ "▁conver ted",
+ "▁Mil it",
+ "▁Mi lit",
+ "▁A lg",
+ "▁Al g",
+ "▁ Alg",
+ "▁R on",
+ "▁Ro n",
+ "▁k onn",
+ "▁kon n",
+ "▁ko nn",
+ "ap ple",
+ "app le",
+ "▁dis pos",
+ "▁disp os",
+ "stell ung",
+ "▁re tain",
+ "▁ret ain",
+ "▁m entre",
+ "▁men tre",
+ "▁ment re",
+ "▁ne ut",
+ "▁neu t",
+ "▁ neut",
+ "▁N ight",
+ "ch é",
+ "c hé",
+ "at ti",
+ "att i",
+ "▁o bra",
+ "▁ob ra",
+ "▁super ior",
+ "▁Con gress",
+ "▁Cong ress",
+ "ё м",
+ "▁c odes",
+ "▁code s",
+ "▁co des",
+ "▁cod es",
+ "▁ codes",
+ "▁A ma",
+ "▁Am a",
+ "▁E arth",
+ "▁Ear th",
+ "▁oppos ite",
+ "▁p ool",
+ "▁po ol",
+ "▁ pool",
+ "▁D un",
+ "▁Du n",
+ "же ние",
+ "▁\" ${",
+ "▁\"$ {",
+ "in v",
+ "▁у ни",
+ "▁And rew",
+ "▁Andre w",
+ "те лей",
+ "тел ей",
+ "▁by ł",
+ "Un ivers",
+ "Uni vers",
+ "▁Ang ular",
+ "an im",
+ "ani m",
+ "a nim",
+ "до ва",
+ "дов а",
+ "д ова",
+ "BU G",
+ "B UG",
+ "ut ely",
+ "ute ly",
+ "▁draw ing",
+ "▁dra wing",
+ "▁g ain",
+ "▁ga in",
+ "▁four th",
+ "▁Pro blem",
+ "▁ Problem",
+ "▁sudden ly",
+ "▁ Ä",
+ "on na",
+ "onn a",
+ "▁K ont",
+ "▁Kon t",
+ "▁Ko nt",
+ "▁Bilder n",
+ "▁Bild ern",
+ "▁Bil dern",
+ "▁konn te",
+ "ž e",
+ "Tr ace",
+ "Tra ce",
+ "T race",
+ "▁sec ure",
+ "▁ secure",
+ "▁któ ry",
+ "▁e q",
+ "▁ eq",
+ "▁f ormal",
+ "▁for mal",
+ "▁form al",
+ "▁forma l",
+ "amer ikan",
+ "▁A nal",
+ "▁An al",
+ "▁Ana l",
+ "▁ Anal",
+ "▁R ewrite",
+ "▁Re write",
+ "▁D ouble",
+ "▁Dou ble",
+ "▁ Double",
+ "cre ated",
+ "create d",
+ "N U",
+ "MD b",
+ "M Db",
+ "ap es",
+ "ape s",
+ "a pes",
+ "Un is",
+ "Uni s",
+ "U nis",
+ "▁e special",
+ "▁espe cial",
+ "▁espec ial",
+ "}) \\",
+ "} )\\",
+ "ed om",
+ "edo m",
+ "e dom",
+ "▁c ategor",
+ "▁categ or",
+ "Re turn",
+ "Ret urn",
+ "▁H amb",
+ "▁Ha mb",
+ "▁Ham b",
+ "▁R io",
+ "▁Ri o",
+ "▁M ir",
+ "▁Mi r",
+ "▁G eme",
+ "▁Ge me",
+ "▁Gem e",
+ "ab ilities",
+ "abil ities",
+ "tr z",
+ "t rz",
+ "us et",
+ "use t",
+ "u set",
+ "ier ra",
+ "net work",
+ "n etwork",
+ "▁do ctor",
+ "▁doc tor",
+ "eur s",
+ "eu rs",
+ "e urs",
+ "▁l isten",
+ "▁li sten",
+ "▁list en",
+ "▁liste n",
+ "▁ listen",
+ "д ж",
+ "▁H ö",
+ "▁cons ists",
+ "▁consist s",
+ "as m",
+ "a sm",
+ "Ch r",
+ "C hr",
+ "al and",
+ "ala nd",
+ "a land",
+ "▁испо ль",
+ "▁ис поль",
+ "▁испол ь",
+ "▁lug ar",
+ "▁lu gar",
+ "▁def initely",
+ "▁definit ely",
+ "▁definite ly",
+ "mo ve",
+ "mov e",
+ "m ove",
+ "úblic a",
+ "ú blica",
+ "▁l än",
+ "▁lä n",
+ "is mus",
+ "ism us",
+ "▁др жа",
+ "▁d t",
+ "▁ dt",
+ "▁Per haps",
+ "▁Bra sil",
+ "▁Bras il",
+ "Jo hn",
+ "J ohn",
+ "▁prom ise",
+ "ł u",
+ "re ens",
+ "ree ns",
+ "reen s",
+ "▁ps ych",
+ "▁W ho",
+ "▁Wh o",
+ "▁ Who",
+ "ря д",
+ "▁IN TO",
+ "▁INT O",
+ "▁Pe ople",
+ "▁Will iams",
+ "▁William s",
+ "▁M arg",
+ "▁Mar g",
+ "▁Ma rg",
+ "▁д ан",
+ "▁да н",
+ "▁ дан",
+ "re cord",
+ "rec ord",
+ "▁E uro",
+ "▁Eu ro",
+ "▁Eur o",
+ "▁Virgin ia",
+ "▁R est",
+ "▁Re st",
+ "▁Res t",
+ "▁ Rest",
+ "▁C orn",
+ "▁Cor n",
+ "▁Co rn",
+ "}} ,",
+ "} },",
+ "▁G rid",
+ "▁Gr id",
+ "▁ Grid",
+ "▁in ject",
+ "▁inj ect",
+ "▁ inject",
+ "на н",
+ "н ан",
+ "▁c row",
+ "▁cr ow",
+ "▁cro w",
+ "▁Ph ys",
+ "▁ Phys",
+ "▁D O",
+ "▁ DO",
+ "▁\" -",
+ "▁incre ased",
+ "▁increase d",
+ "ach er",
+ "ac her",
+ "ache r",
+ "a cher",
+ "pe at",
+ "Li n",
+ "L in",
+ "▁D ub",
+ "▁Du b",
+ "ri ces",
+ "ric es",
+ "rice s",
+ "r ices",
+ "ag nost",
+ "agn ost",
+ "d l",
+ "▁cur ve",
+ "▁curv e",
+ "ü g",
+ "ri ce",
+ "ric e",
+ "r ice",
+ "l anguage",
+ "Click Listener",
+ "▁municip al",
+ "▁O ri",
+ "▁Or i",
+ "▁ Ori",
+ "▁B ild",
+ "▁Bi ld",
+ "▁Bil d",
+ "▁C ab",
+ "▁Ca b",
+ "▁V ar",
+ "▁Va r",
+ "▁ Var",
+ "▁n oted",
+ "▁not ed",
+ "▁no ted",
+ "▁note d",
+ "▁ Î",
+ "▁s ubs",
+ "▁su bs",
+ "▁sub s",
+ "ia tion",
+ "iat ion",
+ "i ation",
+ "W OR",
+ "in gly",
+ "ing ly",
+ "▁R us",
+ "▁Ru s",
+ "ie ns",
+ "ien s",
+ "i ens",
+ "IN FO",
+ "INF O",
+ "к ва",
+ "at ivo",
+ "ativ o",
+ "ati vo",
+ "ge nde",
+ "gen de",
+ "g ende",
+ "▁Fran z",
+ "▁Fr anz",
+ "▁is ol",
+ "▁i sol",
+ "ed es",
+ "ede s",
+ "e des",
+ "ni er",
+ "nie r",
+ "n ier",
+ "▁N O",
+ "▁ NO",
+ "▁H as",
+ "▁Ha s",
+ "▁ Has",
+ "be ans",
+ "bean s",
+ "▁p andas",
+ "▁pan das",
+ "▁ pandas",
+ "(\" %",
+ "ві т",
+ "ут бо",
+ "▁g ather",
+ "▁ga ther",
+ "▁gat her",
+ "▁le gal",
+ "▁leg al",
+ "▁ legal",
+ "in clud",
+ "▁circum st",
+ "cript or",
+ "ri ble",
+ "rib le",
+ "r ible",
+ "▁S üd",
+ "▁Sü d",
+ "▁a pro",
+ "▁ap ro",
+ "▁apr o",
+ "Ap i",
+ "A pi",
+ "▁на й",
+ "▁Afr ican",
+ "▁Africa n",
+ "ow ski",
+ "ows ki",
+ "▁John son",
+ "ie k",
+ "i ek",
+ "▁v ote",
+ "▁vo te",
+ "▁vot e",
+ "▁ vote",
+ "▁K an",
+ "▁Ka n",
+ "▁b ibli",
+ "▁bib li",
+ "▁ bibli",
+ "▁h aar",
+ "▁ha ar",
+ "▁v r",
+ "▁ vr",
+ "]) ,",
+ "] ),",
+ "subset eq",
+ "Par ser",
+ "Parse r",
+ "ia ni",
+ "ian i",
+ "i ani",
+ "is é",
+ "id ea",
+ "ide a",
+ "On ly",
+ "▁á l",
+ "▁ ál",
+ "▁C atal",
+ "▁Ca tal",
+ "▁Cat al",
+ "▁C ase",
+ "▁Cas e",
+ "▁Ca se",
+ "▁ Case",
+ "se h",
+ "s eh",
+ "▁en counter",
+ "▁enc ounter",
+ "▁re form",
+ "▁ref orm",
+ "ми ни",
+ "мин и",
+ "▁S tre",
+ "▁St re",
+ "▁Str e",
+ "ex ception",
+ "except ion",
+ "▁T ar",
+ "▁Ta r",
+ "та р",
+ "т ар",
+ "tr l",
+ "t rl",
+ "▁А лександ",
+ "ле кт",
+ "лек т",
+ "equ al",
+ "eq ual",
+ "e qual",
+ "O p",
+ "▁l if",
+ "▁li f",
+ "▁й ого",
+ "▁volt age",
+ "▁volta ge",
+ "sh ire",
+ "s hire",
+ "▁Gro ß",
+ "в ня",
+ "ning s",
+ "n ings",
+ "н ци",
+ "▁l ag",
+ "▁la g",
+ "▁ lag",
+ "▁and eren",
+ "▁andere n",
+ "▁v ac",
+ "▁va c",
+ "▁ma cro",
+ "▁mac ro",
+ "▁ macro",
+ "= [",
+ "Th en",
+ "The n",
+ "T hen",
+ "▁control s",
+ "▁contr ols",
+ "▁contro ls",
+ "▁ controls",
+ "se q",
+ "s eq",
+ "olog ies",
+ "ologie s",
+ "▁select or",
+ "▁sel ector",
+ "▁sele ctor",
+ "▁ selector",
+ "▁Украї ни",
+ "хів овано",
+ "ы й",
+ "allen ge",
+ "alleng e",
+ "▁I MDb",
+ "▁IM Db",
+ "um my",
+ "umm y",
+ "ye n",
+ "y en",
+ "▁b este",
+ "▁be ste",
+ "▁best e",
+ "▁bes te",
+ "▁B ox",
+ "▁Bo x",
+ "▁ Box",
+ "▁ch air",
+ "▁cha ir",
+ "▁S ab",
+ "▁Sa b",
+ "er de",
+ "erd e",
+ "▁n ast",
+ "▁na st",
+ "▁nas t",
+ "iv amente",
+ "iva mente",
+ "▁об ъ",
+ "▁require ments",
+ "▁requirement s",
+ "▁me eting",
+ "▁meet ing",
+ "▁fin an",
+ "▁fi nan",
+ "▁A dam",
+ "▁Ad am",
+ "▁Ada m",
+ "▁tele vis",
+ "▁b right",
+ "▁br ight",
+ "▁brig ht",
+ "▁G it",
+ "▁Gi t",
+ "▁ Git",
+ "E G",
+ "▁G il",
+ "▁Gi l",
+ "r ès",
+ "▁C ond",
+ "▁Con d",
+ "▁Co nd",
+ "▁ Cond",
+ "▁f t",
+ "▁ ft",
+ "▁бу ло",
+ "- +",
+ "EN D",
+ "E ND",
+ "er ne",
+ "ern e",
+ "▁Com put",
+ "▁Comp ut",
+ "▁ Comput",
+ "▁i ls",
+ "▁il s",
+ "▁ ils",
+ "▁g all",
+ "▁gal l",
+ "▁ga ll",
+ "▁c sv",
+ "▁cs v",
+ "▁ csv",
+ "łu g",
+ "ł ug",
+ "▁sum mer",
+ "▁summ er",
+ "ga me",
+ "g ame",
+ "▁pos ts",
+ "▁post s",
+ "▁ posts",
+ "Ар хівовано",
+ "▁z ij",
+ "▁de termin",
+ "▁determ in",
+ "▁ab andon",
+ "co unter",
+ "count er",
+ "c ounter",
+ "▁require ment",
+ "▁requ irement",
+ "▁T it",
+ "▁Ti t",
+ "irt ual",
+ "▁V ideos",
+ "▁Video s",
+ "▁qu iet",
+ "▁qui et",
+ "▁T erm",
+ "▁Te rm",
+ "▁Ter m",
+ "▁ Term",
+ "▁time out",
+ "▁ timeout",
+ "Pr int",
+ "▁in vent",
+ "▁inv ent",
+ "▁inve nt",
+ "la is",
+ "l ais",
+ "▁mon itor",
+ "ha lb",
+ "hal b",
+ "▁W ild",
+ "▁Wil d",
+ "▁Wi ld",
+ "▁le ader",
+ "▁lead er",
+ "▁с ель",
+ "▁се ль",
+ "▁util iz",
+ "▁par ents",
+ "▁parent s",
+ "▁for ced",
+ "▁force d",
+ "▁pro ved",
+ "▁pr oved",
+ "▁prov ed",
+ "▁prove d",
+ "▁effect ive",
+ "▁l lam",
+ "▁ll am",
+ "▁С по",
+ "or b",
+ "o rb",
+ "gg i",
+ "g gi",
+ "▁ass umption",
+ "▁assum ption",
+ "▁su bm",
+ "▁sub m",
+ "▁в ій",
+ "▁ві й",
+ "il ia",
+ "ili a",
+ "i lia",
+ "▁re verse",
+ "▁revers e",
+ "▁rever se",
+ "▁ reverse",
+ "' \"",
+ "▁qu otes",
+ "▁quot es",
+ "▁quote s",
+ "▁s ites",
+ "▁si tes",
+ "▁site s",
+ "▁sit es",
+ "▁ sites",
+ "ig ung",
+ "igu ng",
+ "▁A rg",
+ "▁Ar g",
+ "▁ Arg",
+ "D ouble",
+ "▁s creens",
+ "▁sc reens",
+ "▁screen s",
+ "▁cl ause",
+ "▁cla use",
+ "▁b undle",
+ "▁bund le",
+ "▁ bundle",
+ "▁phil osoph",
+ "▁N um",
+ "▁Nu m",
+ "▁ Num",
+ "▁g leich",
+ "▁gle ich",
+ "▁ gleich",
+ "ul y",
+ "u ly",
+ "dir ect",
+ "di rect",
+ "dire ct",
+ "d irect",
+ "asket ball",
+ "ow any",
+ "owa ny",
+ "owan y",
+ "\\} $",
+ "\\ }$",
+ "▁rad ius",
+ "▁radi us",
+ "▁ radius",
+ "▁S earch",
+ "▁Se arch",
+ "▁ Search",
+ "Pro perties",
+ "▁e lev",
+ "▁el ev",
+ "▁ele v",
+ "▁p rod",
+ "▁pro d",
+ "▁pr od",
+ "▁ prod",
+ "▁\" %",
+ "is ión",
+ "isi ón",
+ "De bug",
+ "Deb ug",
+ "Se cond",
+ "Sec ond",
+ "( !",
+ "▁C atholic",
+ "ро ван",
+ "ров ан",
+ "рова н",
+ "р ован",
+ "le z",
+ "l ez",
+ "P a",
+ "ps on",
+ "p son",
+ "▁er ste",
+ "▁erst e",
+ "▁ers te",
+ "▁F u",
+ "▁l it",
+ "▁li t",
+ "▁ lit",
+ "▁S aison",
+ "▁Sa ison",
+ "▁H ash",
+ "▁Ha sh",
+ "▁Has h",
+ "▁ Hash",
+ "▁ex em",
+ "▁пред став",
+ ") *",
+ "▁e u",
+ "▁ eu",
+ "▁ │",
+ "▁g ab",
+ "▁ga b",
+ "eta iled",
+ "Co py",
+ "C opy",
+ "▁д ва",
+ "ev en",
+ "e ven",
+ "K ind",
+ "▁Jack son",
+ "а л",
+ "▁con sec",
+ "▁cons ec",
+ "▁conse c",
+ "US ER",
+ "USE R",
+ "U SER",
+ "▁T ok",
+ "▁To k",
+ "( .",
+ "▁$ |",
+ "▁T amb",
+ "▁Ta mb",
+ "▁Tam b",
+ "▁Lem ma",
+ "ha ng",
+ "han g",
+ "h ang",
+ "▁cont ribution",
+ "▁contrib ution",
+ "▁contribu tion",
+ "roll ers",
+ "rol lers",
+ "roller s",
+ "rolle rs",
+ "▁stud ies",
+ "▁studi es",
+ "▁p oi",
+ "▁po i",
+ "ge ms",
+ "gem s",
+ "g ems",
+ "▁U P",
+ "▁ UP",
+ "▁W ol",
+ "▁Wo l",
+ "> \"",
+ "▁f loor",
+ "▁fl oor",
+ "▁flo or",
+ "▁ floor",
+ "▁init ialize",
+ "▁initial ize",
+ "▁ initialize",
+ "▁L ew",
+ "▁Le w",
+ "ze k",
+ "z ek",
+ "ar te",
+ "art e",
+ "▁pos itions",
+ "▁position s",
+ "▁posit ions",
+ "▁por tion",
+ "▁port ion",
+ "co ver",
+ "cov er",
+ "c over",
+ "w p",
+ "ов ого",
+ "ово го",
+ "о вого",
+ "▁p iano",
+ "▁pi ano",
+ "▁pian o",
+ "▁pia no",
+ "▁m etal",
+ "▁me tal",
+ "▁met al",
+ "▁meta l",
+ "▁s amples",
+ "▁sam ples",
+ "▁sample s",
+ "▁ samples",
+ "▁С ан",
+ "▁Са н",
+ "vari able",
+ "▁ста ть",
+ "▁inte gers",
+ "▁integer s",
+ "Wh ere",
+ "W here",
+ "famil y",
+ "▁n un",
+ "▁nu n",
+ "▁in crement",
+ "▁incre ment",
+ "▁ increment",
+ "ix ed",
+ "▁he eft",
+ "ft e",
+ "f te",
+ "▁v il",
+ "▁vi l",
+ "▁ vil",
+ "▁ot ros",
+ "▁otro s",
+ "Mult imedia",
+ "Multi media",
+ "▁Hen ri",
+ "ad ed",
+ "ade d",
+ "a ded",
+ "ге н",
+ "г ен",
+ "▁cap it",
+ "▁ca pit",
+ "▁други х",
+ "is p",
+ "i sp",
+ "IT Y",
+ "I TY",
+ "▁constraint s",
+ "▁K irche",
+ "▁Kir che",
+ "▁Kirch e",
+ "fo und",
+ "f ound",
+ "ши й",
+ "▁p ic",
+ "▁pi c",
+ "▁ pic",
+ "▁t ou",
+ "▁to u",
+ "cre d",
+ "cr ed",
+ "c red",
+ "ро б",
+ "р об",
+ "▁M ess",
+ "▁Me ss",
+ "▁Mes s",
+ "▁ Mess",
+ "Jo b",
+ "J ob",
+ "▁M ais",
+ "▁Ma is",
+ "▁Mai s",
+ "▁st yles",
+ "▁style s",
+ "▁sty les",
+ "▁ styles",
+ "fa ll",
+ "fal l",
+ "f all",
+ "▁U k",
+ "▁st reet",
+ "▁stre et",
+ "▁ street",
+ "oc cer",
+ "occ er",
+ "es en",
+ "ese n",
+ "e sen",
+ "▁col ors",
+ "▁color s",
+ "▁ colors",
+ "ce an",
+ "ю ще",
+ "con ne",
+ "conn e",
+ "c onne",
+ "▁r atio",
+ "▁rat io",
+ "an ton",
+ "ant on",
+ "anto n",
+ "▁F el",
+ "▁Fe l",
+ "▁custom er",
+ "▁cust omer",
+ "▁ customer",
+ "▁P rix",
+ "▁Pr ix",
+ "▁Pri x",
+ "rá s",
+ "r ás",
+ "pr ed",
+ "pre d",
+ "p red",
+ "▁elect ron",
+ "▁electro n",
+ "s ym",
+ "▁ве ли",
+ "▁ вели",
+ "▁over flow",
+ "▁ overflow",
+ "▁$ [",
+ "▁P OST",
+ "▁PO ST",
+ "▁ POST",
+ "▁C in",
+ "▁Ci n",
+ "sc heid",
+ "sche id",
+ "(\" /",
+ "( \"/",
+ "▁search ing",
+ "▁pur poses",
+ "▁purpose s",
+ "▁arr ived",
+ "▁arriv ed",
+ "▁arrive d",
+ "▁p unt",
+ "▁pu nt",
+ "▁pun t",
+ "▁l ad",
+ "▁la d",
+ "▁ lad",
+ "P ython",
+ "▁le ads",
+ "▁lead s",
+ "▁s and",
+ "▁sa nd",
+ "▁san d",
+ "па да",
+ "пад а",
+ "▁comm unes",
+ "▁commun es",
+ "▁commune s",
+ "▁CH AP",
+ "▁c aso",
+ "▁cas o",
+ "▁ca so",
+ "r z",
+ "▁d w",
+ "▁ dw",
+ "ac a",
+ "a ca",
+ "▁Col umb",
+ "child ren",
+ "ê t",
+ "sch emas",
+ "sche mas",
+ "schema s",
+ "▁instru ctions",
+ "▁instruction s",
+ "▁instruct ions",
+ "▁- \\",
+ "▁ -\\",
+ "▁Is rael",
+ "▁Isra el",
+ "no ści",
+ "▁об раз",
+ "▁обра з",
+ "▁ образ",
+ "▁со вет",
+ "▁сов ет",
+ "▁imm agini",
+ "▁F red",
+ "▁Fre d",
+ "▁Fr ed",
+ "▁G lobal",
+ "▁Glo bal",
+ "▁ Global",
+ "▁th ick",
+ "▁ thick",
+ "▁fue ron",
+ "▁fuer on",
+ "▁th rown",
+ "▁thr own",
+ "▁throw n",
+ "▁thro wn",
+ "▁c lock",
+ "▁cl ock",
+ "▁clo ck",
+ "▁ clock",
+ "en able",
+ "ena ble",
+ "'' '",
+ "' ''",
+ "▁S und",
+ "▁Su nd",
+ "▁Sun d",
+ "▁cont empor",
+ "an swer",
+ "ans wer",
+ "▁man ufact",
+ "▁i o",
+ "▁ io",
+ "q quad",
+ "OU T",
+ "O UT",
+ "▁L ab",
+ "▁La b",
+ "▁ Lab",
+ "▁Z w",
+ "le gal",
+ "leg al",
+ "▁V el",
+ "▁Ve l",
+ "▁ra ise",
+ "▁ raise",
+ "▁de liver",
+ "▁del iver",
+ "▁deli ver",
+ "▁V oir",
+ "▁Vo ir",
+ "▁ass umed",
+ "▁assum ed",
+ "▁assume d",
+ "Le t",
+ "L et",
+ "ier ten",
+ "iert en",
+ "ierte n",
+ "i erten",
+ "▁K ong",
+ "▁Kon g",
+ "▁Ko ng",
+ "▁E xp",
+ "▁Ex p",
+ "▁ Exp",
+ "▁J ug",
+ "▁Ju g",
+ "▁dec laration",
+ "▁declar ation",
+ "▁F ish",
+ "m é",
+ "▁spe ech",
+ "▁t ent",
+ "▁te nt",
+ "▁ten t",
+ "▁R oute",
+ "▁Ro ute",
+ "▁Rou te",
+ "▁Rout e",
+ "▁ Route",
+ "__ (",
+ "_ _(",
+ "▁ré alis",
+ "▁réal is",
+ "▁De sign",
+ "▁Des ign",
+ "set Text",
+ "▁St ation",
+ "▁Stat ion",
+ "▁Sta tion",
+ "▁Stati on",
+ "▁ Station",
+ "ar chy",
+ "arch y",
+ "arc hy",
+ "▁ка то",
+ "▁d ent",
+ "▁de nt",
+ "▁den t",
+ "▁ dent",
+ "▁K l",
+ "i ß",
+ "▁r isk",
+ "▁ris k",
+ "▁ri sk",
+ "▁B road",
+ "▁Bro ad",
+ "▁v ectors",
+ "▁ve ctors",
+ "▁vector s",
+ "▁S pec",
+ "▁Sp ec",
+ "▁Spe c",
+ "▁ Spec",
+ "▁ro utes",
+ "▁route s",
+ "▁rout es",
+ "▁rou tes",
+ "▁ routes",
+ "ym n",
+ "y mn",
+ "▁G reg",
+ "▁Gr eg",
+ "▁Gre g",
+ "▁полу чи",
+ "gi e",
+ "g ie",
+ "OR M",
+ "ве де",
+ "вед е",
+ "в еде",
+ "wa lt",
+ "wal t",
+ "w alt",
+ "▁e fter",
+ "P tr",
+ "▁su bt",
+ "▁sub t",
+ "▁b irth",
+ "▁bir th",
+ "▁dr awn",
+ "▁draw n",
+ "▁dra wn",
+ "me ss",
+ "mes s",
+ "m ess",
+ "мери кан",
+ "V E",
+ "▁P ut",
+ "▁Pu t",
+ "▁ Put",
+ "▁a sc",
+ "▁as c",
+ "▁ asc",
+ "▁f eder",
+ "▁fe der",
+ "▁fed er",
+ "с ли",
+ "▁P rin",
+ "▁Pr in",
+ "▁Pri n",
+ "▁s tick",
+ "▁st ick",
+ "re set",
+ "res et",
+ "y k",
+ "st udio",
+ "stud io",
+ "▁St ill",
+ "Con st",
+ "Cons t",
+ "ac ió",
+ "aci ó",
+ "a ció",
+ "▁Portug al",
+ "▁script s",
+ "▁scri pts",
+ "▁ scripts",
+ "und ial",
+ "▁l ives",
+ "▁li ves",
+ "▁live s",
+ "▁liv es",
+ "▁s zer",
+ "▁sz er",
+ "▁sze r",
+ "▁est ado",
+ "▁esta do",
+ "▁estad o",
+ "fo lder",
+ "fol der",
+ "fold er",
+ "f older",
+ "▁communic ation",
+ "Ro ute",
+ "Rout e",
+ "R oute",
+ "▁sw ift",
+ "▁ swift",
+ "те н",
+ "т ен",
+ "▁k ill",
+ "▁kil l",
+ "▁ki ll",
+ "▁ kill",
+ "▁P R",
+ "▁ PR",
+ "jo int",
+ "join t",
+ "j oint",
+ "▁ob jective",
+ "▁object ive",
+ "▁comp licated",
+ "▁Ü ber",
+ "es h",
+ "e sh",
+ "p icture",
+ "ra ine",
+ "rain e",
+ "rai ne",
+ "r aine",
+ "com put",
+ "comp ut",
+ "▁pro port",
+ "▁pr oport",
+ "▁prop ort",
+ "▁propor t",
+ "og s",
+ "o gs",
+ "ül t",
+ "ü lt",
+ "▁quant um",
+ "к ри",
+ "▁s op",
+ "▁so p",
+ "▁lo ops",
+ "▁loop s",
+ "▁Re ference",
+ "▁Refer ence",
+ "▁ Reference",
+ "▁n ei",
+ "▁ne i",
+ "IC E",
+ "I CE",
+ "▁v erm",
+ "▁ver m",
+ "▁ve rm",
+ "▁a dj",
+ "▁ad j",
+ "▁ adj",
+ "▁per ò",
+ "▁t rou",
+ "▁tr ou",
+ "▁tro u",
+ "is ions",
+ "ision s",
+ "isi ons",
+ "▁App le",
+ "▁Ap ple",
+ "serv able",
+ "▁B oston",
+ "▁Bo ston",
+ "▁Bos ton",
+ "or et",
+ "ore t",
+ "o ret",
+ "ok s",
+ "o ks",
+ "▁k g",
+ "▁ kg",
+ "def ined",
+ "define d",
+ "defin ed",
+ "d efined",
+ "pl atform",
+ "cl er",
+ "cle r",
+ "c ler",
+ "ograph ic",
+ "ri tt",
+ "rit t",
+ "r itt",
+ "▁d ic",
+ "▁di c",
+ "▁ dic",
+ "▁M ond",
+ "▁Mon d",
+ "▁Mo nd",
+ "▁I reland",
+ "▁Ir eland",
+ "▁U na",
+ "▁Un a",
+ "▁commer cial",
+ "▁P u",
+ "D i",
+ "▁е ё",
+ "▁pre cis",
+ "▁prec is",
+ "на род",
+ "нар од",
+ "▁qu atre",
+ "ust ral",
+ "ustr al",
+ "▁d ag",
+ "▁da g",
+ "▁ dag",
+ "ig ue",
+ "igu e",
+ "i gue",
+ "▁b urn",
+ "▁bu rn",
+ "▁bur n",
+ "▁ burn",
+ "▁offic er",
+ "▁office r",
+ "▁А в",
+ "▁high light",
+ "▁ highlight",
+ "▁Supp ose",
+ "▁Sup pose",
+ "od i",
+ "o di",
+ "serv let",
+ "▁En cyc",
+ "▁Enc yc",
+ "▁R ange",
+ "▁Ran ge",
+ "▁Rang e",
+ "▁ Range",
+ "ти й",
+ "P lease",
+ "▁ро ків",
+ "qu ant",
+ "qua nt",
+ "▁f lat",
+ "▁fl at",
+ "▁fla t",
+ "▁ flat",
+ "▁Ré férence",
+ "сле дова",
+ "след ова",
+ "ro le",
+ "rol e",
+ "r ole",
+ "▁d iesen",
+ "▁di esen",
+ "▁die sen",
+ "▁dies en",
+ "▁diese n",
+ "}} (",
+ "} }(",
+ "▁Ind ust",
+ "▁nú mer",
+ "▁\" ;",
+ "▁ \";",
+ "lu s",
+ "l us",
+ "ô le",
+ "▁z m",
+ "▁ zm",
+ "de g",
+ "d eg",
+ "▁r ough",
+ "▁ro ugh",
+ "▁rou gh",
+ "▁ rough",
+ "In v",
+ "▁h ur",
+ "▁hu r",
+ "▁R ess",
+ "▁Re ss",
+ "▁Res s",
+ "ch s",
+ "c hs",
+ "▁turn s",
+ "▁tur ns",
+ "ne ro",
+ "ner o",
+ "n ero",
+ "function s",
+ "fun ctions",
+ "ал и",
+ "а ли",
+ "▁hab itants",
+ "▁habit ants",
+ "а т",
+ "iss ues",
+ "issue s",
+ "▁h uge",
+ "▁hu ge",
+ "Util s",
+ "▁S at",
+ "▁Sa t",
+ "▁го судар",
+ "▁co ast",
+ "sh ape",
+ "sha pe",
+ "s hape",
+ "L C",
+ "▁log ging",
+ "▁ logging",
+ "en dor",
+ "end or",
+ "endo r",
+ "▁l ies",
+ "▁li es",
+ "▁lie s",
+ "▁ lies",
+ "▁d ifer",
+ "▁di fer",
+ "▁dif er",
+ "▁crit ical",
+ "▁critic al",
+ "X T",
+ "ми на",
+ "мин а",
+ "an sk",
+ "ans k",
+ "Result s",
+ "k c",
+ "ivers e",
+ "iver se",
+ "i verse",
+ "EX T",
+ "E XT",
+ "AL SE",
+ "▁v ál",
+ "▁vá l",
+ "P i",
+ "comp ile",
+ "hel lo",
+ "hell o",
+ "h ello",
+ "▁чем пи",
+ "▁It alia",
+ "▁Ital ia",
+ "▁ Italia",
+ "ко ло",
+ "кол о",
+ "к оло",
+ "▁ed ition",
+ "▁edit ion",
+ "gr und",
+ "gru nd",
+ "g rund",
+ "▁data frame",
+ "▁Follow ing",
+ "re ib",
+ "rei b",
+ "▁J eff",
+ "▁Je ff",
+ "▁citt à",
+ "IT able",
+ "I Table",
+ "▁$ (\\",
+ "▁$( \\",
+ "▁redu ced",
+ "▁reduce d",
+ "ob il",
+ "obi l",
+ "o bil",
+ "▁any where",
+ "' (",
+ "▁p hr",
+ "▁ph r",
+ "▁ phr",
+ "▁K h",
+ "▁F rame",
+ "▁Fr ame",
+ "▁Fra me",
+ "▁ Frame",
+ "▁man ual",
+ "▁ manual",
+ "▁c ra",
+ "▁cr a",
+ "▁ cra",
+ "▁V S",
+ "▁ VS",
+ "% =",
+ "Instance State",
+ "▁б ра",
+ "▁ бра",
+ "▁D rag",
+ "▁Dr ag",
+ "▁Dra g",
+ "▁ Drag",
+ "▁H err",
+ "▁He rr",
+ "▁Her r",
+ "▁г у",
+ "▁ гу",
+ "▁m ús",
+ "To ol",
+ "T ool",
+ "▁P rivate",
+ "▁Priv ate",
+ "▁ Private",
+ "▁s ynchron",
+ "▁syn chron",
+ "ir ation",
+ "ira tion",
+ "irat ion",
+ "▁о бо",
+ "▁об о",
+ "▁typ ically",
+ "▁typical ly",
+ "▁imp licit",
+ "or ient",
+ "ori ent",
+ "orie nt",
+ "▁t imer",
+ "▁time r",
+ "▁tim er",
+ "▁ti mer",
+ "▁ timer",
+ "▁kön nen",
+ "ie st",
+ "ies t",
+ "i est",
+ "ra id",
+ "rai d",
+ "▁expression s",
+ "▁express ions",
+ "▁expr essions",
+ "▁a im",
+ "▁ai m",
+ "▁s tre",
+ "▁st re",
+ "▁str e",
+ "▁ stre",
+ "▁w rap",
+ "▁wr ap",
+ "▁wra p",
+ "▁ wrap",
+ "▁B art",
+ "▁Bar t",
+ "▁Ba rt",
+ "▁b ron",
+ "▁br on",
+ "▁bro n",
+ "▁key board",
+ "po w",
+ "p ow",
+ "▁gru po",
+ "▁grup o",
+ "▁ре зу",
+ "▁prof essor",
+ "▁profess or",
+ "▁H ead",
+ "▁He ad",
+ "▁ Head",
+ "но ю",
+ "min us",
+ "m inus",
+ "▁Mich el",
+ "▁Mic hel",
+ "NO T",
+ "N OT",
+ "mo r",
+ "m or",
+ "] }",
+ "wide hat",
+ "ar is",
+ "ari s",
+ "a ris",
+ "тера тура",
+ "de fn",
+ "def n",
+ "is trz",
+ "ist rz",
+ "istr z",
+ "▁t anto",
+ "▁tan to",
+ "▁tant o",
+ "▁P ow",
+ "▁Po w",
+ "▁ind icate",
+ "▁indic ate",
+ "▁W inter",
+ "▁Win ter",
+ "res hold",
+ "resh old",
+ "рі в",
+ "р ів",
+ "▁` (",
+ "▁o wner",
+ "▁own er",
+ "▁ow ner",
+ "▁ owner",
+ "▁d isp",
+ "▁di sp",
+ "▁dis p",
+ "▁к ри",
+ "▁ кри",
+ "ме т",
+ "м ет",
+ "мен т",
+ "м ент",
+ "re port",
+ "rep ort",
+ "repo rt",
+ "re quire",
+ "▁v oy",
+ "▁vo y",
+ "▁ voy",
+ "▁A P",
+ "▁ AP",
+ "▁Esp aña",
+ "▁Españ a",
+ "▁S ão",
+ "j är",
+ "No n",
+ "N on",
+ "Li brary",
+ "L ibrary",
+ "ich ten",
+ "icht en",
+ "ichte n",
+ "i chten",
+ "▁struct ures",
+ "▁structure s",
+ "▁m uy",
+ "▁mu y",
+ "ár io",
+ "á rio",
+ "▁cert ificate",
+ "▁certific ate",
+ "чно го",
+ "ч ного",
+ "▁prov ince",
+ "▁provin ce",
+ "pa ges",
+ "page s",
+ "pag es",
+ "p ages",
+ "da l",
+ "d al",
+ "▁Fre der",
+ "▁Fr eder",
+ "▁Fred er",
+ "ь е",
+ "Exec ute",
+ "▁an cient",
+ "▁anci ent",
+ "▁anc ient",
+ "▁ancien t",
+ "▁fil ms",
+ "▁film s",
+ "▁Al fred",
+ "▁Alf red",
+ "Aut o",
+ "A uto",
+ "▁a tom",
+ "▁at om",
+ "▁ atom",
+ "▁e ll",
+ "▁el l",
+ "▁ ell",
+ "▁H arr",
+ "▁Har r",
+ "▁Ha rr",
+ "й н",
+ "▁\" #",
+ "▁n acional",
+ "▁nac ional",
+ "▁neigh bor",
+ "▁neighb or",
+ "сту па",
+ "ступ а",
+ "▁w it",
+ "Po p",
+ "P op",
+ "▁G reek",
+ "▁Gre ek",
+ "▁Gree k",
+ "▁re peat",
+ "▁repe at",
+ "▁ repeat",
+ "ba d",
+ "b ad",
+ "▁S C",
+ "▁ SC",
+ "▁Date Time",
+ "▁ DateTime",
+ "ш ти",
+ "▁W H",
+ "▁ WH",
+ "▁пра ви",
+ "▁прав и",
+ "▁ прави",
+ "▁Т и",
+ "▁s aison",
+ "▁sa ison",
+ "▁H art",
+ "▁Har t",
+ "▁Ha rt",
+ "direct ory",
+ "d irectory",
+ "ua n",
+ "u an",
+ "no rm",
+ "nor m",
+ "n orm",
+ "▁Phil ipp",
+ "▁Phili pp",
+ "▁Philip p",
+ "▁su spect",
+ "▁sus pect",
+ "▁susp ect",
+ "▁an no",
+ "▁ann o",
+ "▁ anno",
+ "b c",
+ "с ла",
+ "$ (",
+ "▁be find",
+ "▁bef ind",
+ "oc s",
+ "o cs",
+ "la test",
+ "lat est",
+ "late st",
+ ";\" >",
+ "; \">",
+ "▁after wards",
+ "PU T",
+ "P UT",
+ "▁j a",
+ "▁ ja",
+ "▁H il",
+ "▁Hi l",
+ "y z",
+ "▁B our",
+ "▁Bo ur",
+ "▁Bou r",
+ "▁la id",
+ "▁Д же",
+ "▁Дж е",
+ "pi e",
+ "p ie",
+ "w atch",
+ "▁E q",
+ "▁ Eq",
+ "cont act",
+ "ib er",
+ "ibe r",
+ "i ber",
+ "check box",
+ "▁esp añ",
+ "▁espa ñ",
+ "an se",
+ "ans e",
+ "▁ш ко",
+ "▁ шко",
+ "ef f",
+ "e ff",
+ "xx x",
+ "x xx",
+ "▁G ET",
+ "▁ GET",
+ "▁l ov",
+ "▁lo v",
+ "▁ lov",
+ "it ute",
+ "itu te",
+ "itut e",
+ "ze ch",
+ "zec h",
+ "z ech",
+ "ter e",
+ "te re",
+ "t ere",
+ "▁p urs",
+ "▁pu rs",
+ "▁pur s",
+ "ke ns",
+ "ken s",
+ "k ens",
+ "ian te",
+ "i ante",
+ "▁F ree",
+ "▁Fre e",
+ "▁Fr ee",
+ "▁ Free",
+ "▁ор гани",
+ "▁орган и",
+ "kre is",
+ "▁{ :",
+ "▁ {:",
+ "sh ared",
+ "share d",
+ "sha red",
+ "▁G raph",
+ "▁Gr aph",
+ "▁Gra ph",
+ "▁ Graph",
+ "▁conne ctions",
+ "▁connection s",
+ "▁connect ions",
+ "▁D OM",
+ "▁DO M",
+ "▁ DOM",
+ "▁C art",
+ "▁Car t",
+ "▁Ca rt",
+ "▁ Cart",
+ "ss on",
+ "s son",
+ "▁H amilton",
+ "те ли",
+ "тел и",
+ "▁r estaur",
+ "▁rest aur",
+ "▁resta ur",
+ "Re sol",
+ "Res ol",
+ "Dr iver",
+ "D river",
+ "▁en f",
+ "▁ enf",
+ "ED IT",
+ "▁p rev",
+ "▁pr ev",
+ "▁pre v",
+ "▁ prev",
+ "▁i k",
+ "▁ ik",
+ "▁s ă",
+ "j ö",
+ "▁С ССР",
+ "▁col our",
+ "ch ten",
+ "cht en",
+ "chte n",
+ "▁e stad",
+ "▁est ad",
+ "▁esta d",
+ "in ois",
+ "ino is",
+ "▁con fir",
+ "▁conf ir",
+ "▁v é",
+ "▁ vé",
+ "▁C es",
+ "▁Ce s",
+ "▁N ever",
+ "▁Ne ver",
+ "▁Nev er",
+ "om er",
+ "ome r",
+ "o mer",
+ "ж да",
+ "с лу",
+ "че ния",
+ "dl l",
+ "d ll",
+ "▁y outh",
+ "▁you th",
+ "▁yo uth",
+ "em en",
+ "eme n",
+ "e men",
+ "▁stud ied",
+ "▁studi ed",
+ "▁K il",
+ "▁Ki l",
+ "ci on",
+ "cio n",
+ "c ion",
+ "▁n avig",
+ "▁nav ig",
+ "re quired",
+ "require d",
+ "orith ms",
+ "orithm s",
+ "il or",
+ "ilo r",
+ "i lor",
+ "▁Deutsch en",
+ "▁Deutsche n",
+ "▁person s",
+ "▁pers ons",
+ "▁Barcel ona",
+ "▁form ation",
+ "▁format ion",
+ "▁forma tion",
+ "▁ formation",
+ "ab ei",
+ "abe i",
+ "a bei",
+ "▁про тив",
+ "▁проти в",
+ "Eng ine",
+ "ON E",
+ "O NE",
+ "og rá",
+ "Ca p",
+ "C ap",
+ "ri r",
+ "r ir",
+ "▁g ate",
+ "▁ga te",
+ "▁gat e",
+ "▁ gate",
+ "or ation",
+ "ora tion",
+ "ma ven",
+ "m aven",
+ "▁comb ined",
+ "▁combin ed",
+ "▁combine d",
+ "▁at tr",
+ "▁att r",
+ "▁ attr",
+ "▁h ook",
+ "▁ho ok",
+ "▁ hook",
+ "▁которы й",
+ "▁ser vers",
+ "▁server s",
+ "▁serv ers",
+ "▁serve rs",
+ "uct ure",
+ "же ння",
+ "жен ня",
+ "t v",
+ "▁re q",
+ "▁r eq",
+ "▁ req",
+ "ja l",
+ "j al",
+ "▁loc ally",
+ "▁local ly",
+ "}} {\\",
+ "}}{ \\",
+ "} }{\\",
+ "B r",
+ "▁H ier",
+ "▁Hi er",
+ "мо р",
+ "м ор",
+ "▁a part",
+ "▁ap art",
+ "▁apar t",
+ "\"] ,",
+ "\" ],",
+ "▁%> %",
+ "▁z usammen",
+ "▁zus ammen",
+ "▁ident ify",
+ "▁Al tern",
+ "▁Alt ern",
+ "▁Alter n",
+ "▁б ро",
+ "▁ бро",
+ "▁ц и",
+ "▁ ци",
+ "g h",
+ "▁T en",
+ "▁Te n",
+ "R S",
+ "фор ма",
+ "▁n elle",
+ "▁ne lle",
+ "▁nel le",
+ "▁nell e",
+ "▁ nelle",
+ "▁H in",
+ "▁Hi n",
+ "ound ing",
+ "oun ding",
+ "▁re prés",
+ "▁rep rés",
+ "▁repr és",
+ "ap h",
+ "a ph",
+ "▁[ \\",
+ "▁ [\\",
+ "▁S ports",
+ "▁Sport s",
+ "ра л",
+ "р ал",
+ "▁t hre",
+ "▁th re",
+ "▁thr e",
+ "▁p rin",
+ "▁pr in",
+ "▁pri n",
+ "▁El iz",
+ "▁Eli z",
+ "▁F our",
+ "▁Fou r",
+ "▁Fo ur",
+ "▁soci ety",
+ "▁soc iety",
+ "Trans action",
+ "▁v eg",
+ "▁ve g",
+ "▁ veg",
+ "▁sch ools",
+ "▁school s",
+ "▁over all",
+ "▁t ail",
+ "▁ta il",
+ "▁ tail",
+ "üb er",
+ "ü ber",
+ "▁S ov",
+ "▁So v",
+ "▁С ер",
+ "▁Се р",
+ "▁r app",
+ "▁ra pp",
+ "▁rap p",
+ "▁tra ffic",
+ "qu estion",
+ "quest ion",
+ "ques tion",
+ "▁en viron",
+ "▁envi ron",
+ "▁ environ",
+ "ate ien",
+ "ic us",
+ "i cus",
+ "▁n arrow",
+ "▁narr ow",
+ "▁nar row",
+ "▁p ray",
+ "▁pr ay",
+ "▁pra y",
+ "▁B ou",
+ "▁Bo u",
+ "▁C lient",
+ "▁Cl ient",
+ "▁ Client",
+ "ab l",
+ "a bl",
+ "▁Aud iod",
+ "▁Audio d",
+ "▁n pm",
+ "▁np m",
+ "▁ npm",
+ "▁Col umn",
+ "▁ Column",
+ "▁G ames",
+ "▁Game s",
+ "▁Ga mes",
+ "▁Gam es",
+ "av er",
+ "ave r",
+ "a ver",
+ "ony mes",
+ "onym es",
+ "onyme s",
+ "▁По сле",
+ "n ą",
+ "▁N u",
+ "▁D ick",
+ "▁Di ck",
+ "▁Dic k",
+ "▁t ensor",
+ "▁tens or",
+ "▁ tensor",
+ "▁@ \"",
+ "▁ @\"",
+ "v é",
+ "I con",
+ "▁по да",
+ "▁под а",
+ "▁ пода",
+ "▁G on",
+ "▁Go n",
+ "/) .",
+ "/ ).",
+ "is tra",
+ "ist ra",
+ "istr a",
+ "i stra",
+ "▁Audiod ateien",
+ "De lete",
+ "Del ete",
+ "}} }",
+ "} }}",
+ "▁j ump",
+ "▁ju mp",
+ "▁О б",
+ "▁princi ple",
+ "▁princip le",
+ "▁Ét ats",
+ "ok ed",
+ "oke d",
+ "o ked",
+ "▁В ла",
+ "Inter val",
+ "▁s au",
+ "▁sa u",
+ "en code",
+ "enc ode",
+ "▁p on",
+ "▁po n",
+ "▁ pon",
+ "cat ch",
+ "c atch",
+ "▁t iem",
+ "▁ti em",
+ "▁tie m",
+ "▁G ust",
+ "▁Gu st",
+ "M C",
+ "lim its",
+ "limit s",
+ "▁ke eping",
+ "▁keep ing",
+ "▁s ongs",
+ "▁son gs",
+ "▁song s",
+ "▁ав гу",
+ "▁рай он",
+ "▁райо н",
+ "▁not ification",
+ "▁ notification",
+ "▁off ered",
+ "▁offer ed",
+ "Co r",
+ "C or",
+ "▁sh ut",
+ "error s",
+ "err ors",
+ "▁E N",
+ "▁ EN",
+ "▁lat ach",
+ "▁sel bst",
+ "▁check box",
+ "▁ checkbox",
+ "▁c ool",
+ "▁co ol",
+ "▁f actory",
+ "▁fact ory",
+ "▁factor y",
+ "▁ factory",
+ "▁pa id",
+ "dim ensional",
+ "ni ej",
+ "nie j",
+ "n iej",
+ "pt on",
+ "pto n",
+ "p ton",
+ "▁p in",
+ "▁pi n",
+ "▁ pin",
+ "ak ed",
+ "ake d",
+ "a ked",
+ "▁re li",
+ "▁r eli",
+ "▁rel i",
+ "▁T aylor",
+ "▁S omething",
+ "▁Some thing",
+ "▁Som ething",
+ "▁ Something",
+ "im um",
+ "▁V in",
+ "▁Vi n",
+ "▁iter ation",
+ "Fin d",
+ "Fi nd",
+ "F ind",
+ "ко ви",
+ "ков и",
+ "к ови",
+ "▁bo ys",
+ "▁boy s",
+ "▁Sim ple",
+ "▁ Simple",
+ "▁C rist",
+ "▁Cr ist",
+ "▁Cris t",
+ "▁W as",
+ "▁Wa s",
+ "ân d",
+ "â nd",
+ "▁V a",
+ "▁т ра",
+ "▁ тра",
+ "▁dest ination",
+ "▁destin ation",
+ "▁ destination",
+ "li mp",
+ "lim p",
+ "l imp",
+ "▁K at",
+ "▁Ka t",
+ "wor th",
+ "wort h",
+ "w orth",
+ "▁K or",
+ "▁Ko r",
+ "i ção",
+ "= `",
+ "▁fair ly",
+ "fall s",
+ "fal ls",
+ "f alls",
+ "▁re ject",
+ "▁d ream",
+ "▁dre am",
+ "be ll",
+ "bel l",
+ "b ell",
+ "▁t oute",
+ "▁to ute",
+ "▁tout e",
+ "▁tou te",
+ "▁$ \\{",
+ "▁$\\ {",
+ "▁st one",
+ "▁sto ne",
+ "▁ stone",
+ "▁prote ct",
+ "▁prot ect",
+ "▁ex cell",
+ "▁exc ell",
+ "▁excel l",
+ "▁Me xico",
+ "▁Mex ico",
+ "▁d ash",
+ "▁da sh",
+ "▁das h",
+ "▁ dash",
+ "▁f ault",
+ "▁fa ult",
+ "▁ fault",
+ "p matrix",
+ "al ler",
+ "all er",
+ "alle r",
+ "▁guer re",
+ "or igin",
+ "ori gin",
+ "orig in",
+ "hi bernate",
+ "í lia",
+ "▁Reg ister",
+ "▁ Register",
+ "un to",
+ "unt o",
+ "▁B at",
+ "▁Ba t",
+ "▁b ow",
+ "▁bo w",
+ "▁ bow",
+ "сь ких",
+ "ськ их",
+ "et à",
+ "▁L uis",
+ "▁Lu is",
+ "▁f ou",
+ "▁fo u",
+ "▁Cam bridge",
+ "▁Camb ridge",
+ "▁o tt",
+ "▁ot t",
+ "▁ ott",
+ "su p",
+ "s up",
+ "re as",
+ "rea s",
+ "▁point ers",
+ "▁pointer s",
+ "▁Bo ard",
+ "▁ Board",
+ "▁р и",
+ "▁ ри",
+ "▁d riv",
+ "▁dr iv",
+ "▁dri v",
+ "ни н",
+ "н ин",
+ "▁C irc",
+ "▁Ci rc",
+ "▁Cir c",
+ "▁ Circ",
+ "▁t hou",
+ "▁th ou",
+ "Di v",
+ "D iv",
+ "sp ark",
+ "s park",
+ "la ment",
+ "lam ent",
+ "l ament",
+ "▁V AL",
+ "▁ VAL",
+ "Se nd",
+ "S end",
+ "▁Ir ish",
+ "o y",
+ "▁T u",
+ "▁ Tu",
+ "▁t rivial",
+ "Form s",
+ "For ms",
+ "▁as í",
+ "▁Im per",
+ "▁Imp er",
+ "▁sign ature",
+ "un os",
+ "uno s",
+ "u nos",
+ "▁N eg",
+ "▁Ne g",
+ "▁can cel",
+ "▁ cancel",
+ "▁Hein rich",
+ "ee d",
+ "e ed",
+ "Ill ustration",
+ "▁s ulla",
+ "▁su lla",
+ "▁sul la",
+ "▁sull a",
+ "▁qu arter",
+ "▁quart er",
+ "▁quar ter",
+ "as z",
+ "a sz",
+ "▁b log",
+ "▁bl og",
+ "▁blo g",
+ "▁ blog",
+ "fi ca",
+ "fic a",
+ "f ica",
+ "wo n",
+ "w on",
+ "qu et",
+ "que t",
+ "q uet",
+ "]) )",
+ "] ))",
+ "▁gener ation",
+ "▁c aught",
+ "▁ caught",
+ "▁l ands",
+ "▁land s",
+ "▁lan ds",
+ "▁ lands",
+ "▁King dom",
+ "schaft en",
+ "ro ns",
+ "ron s",
+ "r ons",
+ "ann els",
+ "annel s",
+ "anne ls",
+ "▁Spe cial",
+ "▁Spec ial",
+ "▁ Special",
+ "t utorial",
+ "ti p",
+ "t ip",
+ "▁\" \",",
+ "▁\"\" ,",
+ "▁Az ure",
+ "▁ Azure",
+ "▁b ounded",
+ "▁bound ed",
+ "▁ bounded",
+ "S m",
+ "ta r",
+ "t ar",
+ "ве н",
+ "в ен",
+ "▁з ем",
+ "▁зе м",
+ "▁ зем",
+ "▁not ation",
+ "▁ notation",
+ "▁ap ache",
+ "▁ apache",
+ "▁g az",
+ "▁ga z",
+ "ier no",
+ "i erno",
+ "an gen",
+ "ang en",
+ "ange n",
+ "pect ive",
+ "▁elect ric",
+ "▁s emi",
+ "▁se mi",
+ "▁sem i",
+ "MA X",
+ "M AX",
+ "ed erb",
+ "eder b",
+ "ede rb",
+ "object s",
+ "▁dif ferences",
+ "▁differ ences",
+ "▁difference s",
+ "is ted",
+ "ist ed",
+ "iste d",
+ "i sted",
+ "hr ef",
+ "hre f",
+ "h ref",
+ "ic ip",
+ "ici p",
+ "i cip",
+ "▁num py",
+ "▁ numpy",
+ "▁ф утбо",
+ "lo ader",
+ "load er",
+ "▁d ich",
+ "▁di ch",
+ "▁dic h",
+ "љ у",
+ "▁D é",
+ "H z",
+ "▁P aram",
+ "▁Par am",
+ "▁Pa ram",
+ "▁Para m",
+ "▁ Param",
+ "document ation",
+ "ir craft",
+ "irc raft",
+ "E M",
+ "▁inst itution",
+ "▁instit ution",
+ "com pat",
+ "comp at",
+ "▁а ль",
+ "▁ал ь",
+ "▁ аль",
+ "сла в",
+ "с лав",
+ "▁N et",
+ "▁Ne t",
+ "▁ Net",
+ "ци ональ",
+ "цион аль",
+ "циона ль",
+ "▁broad cast",
+ "date time",
+ "dat etime",
+ "as ync",
+ "asy nc",
+ "a sync",
+ "vr e",
+ "v re",
+ "me an",
+ "▁C hem",
+ "▁Ch em",
+ "▁Che m",
+ "▁est imate",
+ "▁estim ate",
+ "ic ana",
+ "ica na",
+ "ican a",
+ "▁g rep",
+ "▁gr ep",
+ "▁gre p",
+ "▁ grep",
+ "te k",
+ "t ek",
+ "ä m",
+ "or ig",
+ "ori g",
+ "o rig",
+ "▁Vict or",
+ "▁Vi ctor",
+ "▁Vic tor",
+ "ut enant",
+ "ute nant",
+ "uten ant",
+ "an ga",
+ "ang a",
+ "pi n",
+ "p in",
+ "▁ver tex",
+ "▁vert ex",
+ "▁verte x",
+ "▁CHAP TER",
+ "ci ty",
+ "cit y",
+ "c ity",
+ "ug by",
+ "gr een",
+ "gre en",
+ "g reen",
+ "▁K er",
+ "▁Ke r",
+ "▁dif fér",
+ "▁diff ér",
+ "▁necess arily",
+ "D C",
+ "Line ar",
+ "Lin ear",
+ "Li near",
+ "al em",
+ "ale m",
+ "a lem",
+ "▁L ater",
+ "▁La ter",
+ "▁Lat er",
+ "▁Late r",
+ "▁m eta",
+ "▁me ta",
+ "▁met a",
+ "▁ meta",
+ "je m",
+ "j em",
+ "ra gen",
+ "rag en",
+ "rage n",
+ "r agen",
+ "Ma y",
+ "M ay",
+ "▁Mitg lied",
+ "▁s orted",
+ "▁sort ed",
+ "▁sor ted",
+ "▁sorte d",
+ "▁ sorted",
+ "us sen",
+ "uss en",
+ "▁sp oke",
+ "▁spo ke",
+ "▁dis abled",
+ "▁disable d",
+ "▁ disabled",
+ "▁accompl ish",
+ "▁accomp lish",
+ "▁Russ ia",
+ "th ere",
+ "ther e",
+ "the re",
+ "t here",
+ "ee s",
+ "e es",
+ "▁h all",
+ "▁ha ll",
+ "▁hal l",
+ "▁ hall",
+ "▁met ric",
+ "▁ metric",
+ "att ribute",
+ "то го",
+ "т ого",
+ "ab out",
+ "▁L am",
+ "▁La m",
+ "ch annel",
+ "chan nel",
+ "▁e pisode",
+ "▁epis ode",
+ "▁$ ('.",
+ "▁$( '.",
+ "▁$(' .",
+ "▁ ought",
+ "▁E ste",
+ "▁Est e",
+ "▁Es te",
+ "Object s",
+ "▁valid ate",
+ "▁ validate",
+ "▁r im",
+ "▁ri m",
+ "▁ rim",
+ "▁numer ous",
+ "▁numero us",
+ "▁J avascript",
+ "▁Java script",
+ "▁G L",
+ "▁ GL",
+ "▁It aly",
+ "▁Ital y",
+ "ederb örd",
+ "on ato",
+ "ona to",
+ "bo oks",
+ "book s",
+ "st one",
+ "ston e",
+ "sto ne",
+ "х у",
+ "▁j el",
+ "▁je l",
+ "▁ jel",
+ "ir i",
+ "i ri",
+ "▁A SP",
+ "▁AS P",
+ "G A",
+ "▁st ata",
+ "▁stat a",
+ "▁sta ta",
+ "▁b az",
+ "▁ba z",
+ "▁ baz",
+ "Da y",
+ "D ay",
+ "th m",
+ "t hm",
+ "d h",
+ "▁F iles",
+ "▁Fil es",
+ "▁File s",
+ "▁ Files",
+ "Android Runtime",
+ "▁che cks",
+ "▁check s",
+ "k r",
+ "▁v enne",
+ "▁ven ne",
+ "S L",
+ "av ia",
+ "avi a",
+ "a via",
+ "ka zy",
+ "kaz y",
+ "k azy",
+ "▁Th ree",
+ "▁ Three",
+ "Ad min",
+ "▁col lege",
+ "▁coll ege",
+ "▁colleg e",
+ "▁colle ge",
+ "G lobal",
+ "ti on",
+ "t ion",
+ "▁cur ious",
+ "sh ort",
+ "▁b ass",
+ "▁bas s",
+ "▁ba ss",
+ "де ла",
+ "▁де я",
+ "Sch ema",
+ "' \\",
+ "di ff",
+ "d iff",
+ "▁C A",
+ "▁ CA",
+ "▁Cor por",
+ "▁oper ators",
+ "▁operator s",
+ "om rå",
+ "▁ed ges",
+ "▁edge s",
+ "); `",
+ ") ;`",
+ "in ds",
+ "ind s",
+ "▁g ing",
+ "▁gi ng",
+ "▁ ging",
+ "& &",
+ "}- \\",
+ "} -\\",
+ "ra no",
+ "ran o",
+ "r ano",
+ "▁s ão",
+ "▁ad ds",
+ "▁add s",
+ "el or",
+ "elo r",
+ "e lor",
+ "▁un signed",
+ "▁uns igned",
+ "▁ unsigned",
+ "▁п р",
+ "▁ пр",
+ "▁Con fig",
+ "▁Conf ig",
+ "▁ Config",
+ "▁E sc",
+ "▁Es c",
+ "▁ch ose",
+ "▁cho se",
+ "▁pie ces",
+ "▁piece s",
+ "▁reg ions",
+ "▁region s",
+ "Es t",
+ "E st",
+ "▁B attle",
+ "▁Batt le",
+ "▁f oc",
+ "▁fo c",
+ "▁L ight",
+ "▁Lig ht",
+ "▁ Light",
+ "pad ding",
+ "p adding",
+ "ab en",
+ "abe n",
+ "a ben",
+ "▁e urop",
+ "▁eu rop",
+ "▁euro p",
+ "il lon",
+ "ill on",
+ "illo n",
+ "▁е сть",
+ "▁b ord",
+ "▁bo rd",
+ "▁bor d",
+ "▁о тно",
+ "▁от но",
+ "▁H ong",
+ "▁Hon g",
+ "▁Ho ng",
+ "▁v ul",
+ "▁vu l",
+ "pl ugins",
+ "plugin s",
+ "▁' <",
+ "▁k ur",
+ "▁ kur",
+ "reg ion",
+ "▁Re pub",
+ "▁Rep ub",
+ "ic her",
+ "ich er",
+ "iche r",
+ "i cher",
+ "}_ \\",
+ "} _\\",
+ "▁me dal",
+ "▁med al",
+ "▁More over",
+ "B I",
+ "A v",
+ "ut er",
+ "ute r",
+ "u ter",
+ "▁s can",
+ "▁sc an",
+ "▁ scan",
+ "▁M unicip",
+ "▁Mun icip",
+ "▁contr ast",
+ "▁contra st",
+ "▁I g",
+ "▁ Ig",
+ "▁го род",
+ "▁горо д",
+ "▁гор од",
+ "▁ город",
+ "rel ated",
+ "al ing",
+ "ali ng",
+ "alin g",
+ "a ling",
+ "▁м ат",
+ "▁ма т",
+ "▁ мат",
+ "ün st",
+ "▁Ch ris",
+ "▁Chr is",
+ "w y",
+ "▁Act ually",
+ "▁Univers idad",
+ "Event Listener",
+ "▁tempor ada",
+ "▁ass ignment",
+ "▁assign ment",
+ "▁M ike",
+ "▁Mi ke",
+ "▁Mik e",
+ "▁w ährend",
+ "▁ś wi",
+ "▁św i",
+ "▁с ред",
+ "▁сре д",
+ "ка де",
+ "▁calcul ated",
+ "▁calculate d",
+ "▁calc ulated",
+ "▁el ler",
+ "▁elle r",
+ "▁ell er",
+ "▁ eller",
+ "▁A sh",
+ "▁As h",
+ "ri el",
+ "rie l",
+ "r iel",
+ "▁hard ware",
+ "▁int ens",
+ "▁inte ns",
+ "▁inten s",
+ "(' .",
+ "( '.",
+ "il li",
+ "ill i",
+ "ag on",
+ "ago n",
+ "a gon",
+ "▁G y",
+ "▁he ute",
+ "▁heut e",
+ "▁s le",
+ "▁sl e",
+ "▁liter ature",
+ "se m",
+ "s em",
+ "man ager",
+ "mana ger",
+ "▁Gr ande",
+ "▁Gra nde",
+ "▁Grand e",
+ "▁Gran de",
+ "▁m ixed",
+ "▁mix ed",
+ "▁В ер",
+ "▁Ве р",
+ "í cí",
+ "▁s oit",
+ "▁so it",
+ "▁wel come",
+ "че ние",
+ "▁Univers ität",
+ "▁bu ilder",
+ "▁build er",
+ "▁ builder",
+ "sim ple",
+ "simp le",
+ "ic ode",
+ "ico de",
+ "i code",
+ "ř e",
+ "in dent",
+ "ind ent",
+ "inden t",
+ "inde nt",
+ "op o",
+ "o po",
+ "▁ad vanced",
+ "▁adv anced",
+ "▁advance d",
+ "tem per",
+ "temp er",
+ "ed ge",
+ "▁dat etime",
+ "▁date time",
+ "▁ datetime",
+ "▁d onc",
+ "▁do nc",
+ "▁don c",
+ "ла ння",
+ "лан ня",
+ "▁v erd",
+ "▁ver d",
+ "▁ve rd",
+ "д но",
+ "it os",
+ "ito s",
+ "▁he at",
+ "vi sible",
+ "vis ible",
+ "me l",
+ "m el",
+ "▁Giov anni",
+ "▁var iety",
+ "▁vari ety",
+ "▁r outer",
+ "▁ro uter",
+ "▁route r",
+ "▁rout er",
+ "▁rou ter",
+ "▁ router",
+ "Vec tor",
+ "V ector",
+ "▁W alk",
+ "▁Wal k",
+ "▁ob viously",
+ "▁obvious ly",
+ "he in",
+ "h ein",
+ "Fi n",
+ "F in",
+ "ITable View",
+ "Y ear",
+ "▁E conom",
+ "▁vel ocity",
+ "▁veloc ity",
+ "▁C ivil",
+ "▁Ci vil",
+ "▁ ј",
+ "al ert",
+ "ale rt",
+ "aler t",
+ "Ident ifier",
+ "èn cia",
+ "▁normal ly",
+ "▁norm ally",
+ "▁E gypt",
+ "▁Egy pt",
+ "▁c tx",
+ "▁ ctx",
+ "▁Ver ein",
+ "▁Vere in",
+ "▁H u",
+ "ult ure",
+ "ultur e",
+ "ни те",
+ "l é",
+ "▁W ien",
+ "▁Wi en",
+ "▁Wie n",
+ "▁P rz",
+ "▁Pr z",
+ "By te",
+ "▁n ah",
+ "▁na h",
+ "▁ nah",
+ "is ms",
+ "ism s",
+ "▁Pub lish",
+ "▁He rz",
+ "▁Her z",
+ "ic ul",
+ "i cul",
+ "pis ode",
+ "ч і",
+ "▁die sem",
+ "▁dies em",
+ "▁diese m",
+ "k ö",
+ "Vis ible",
+ "▁r ig",
+ "▁ri g",
+ "▁ rig",
+ "`) .",
+ "` ).",
+ "Par se",
+ "P arse",
+ "▁Jac ques",
+ "N I",
+ "▁g lass",
+ "▁gl ass",
+ "▁gla ss",
+ "▁ glass",
+ "-- -+",
+ "--- +",
+ "- --+",
+ "▁initial ly",
+ "▁initi ally",
+ "▁k r",
+ "▁ kr",
+ "CC N",
+ "C CN",
+ "pl ays",
+ "play s",
+ "pla ys",
+ "▁s igu",
+ "▁si gu",
+ "▁sig u",
+ "F older",
+ "st orage",
+ "sto rage",
+ "stor age",
+ "▁\\ |",
+ "▁ \\|",
+ "iv os",
+ "ivo s",
+ "i vos",
+ "ск ую",
+ "ску ю",
+ "▁M oh",
+ "▁Mo h",
+ "▁Comm ittee",
+ "▁K im",
+ "▁Ki m",
+ "e u",
+ "те м",
+ "т ем",
+ "▁orig inale",
+ "▁original e",
+ "▁origin ale",
+ "ir s",
+ "i rs",
+ "▁R eb",
+ "▁Re b",
+ "it ut",
+ "itu t",
+ "n l",
+ "▁P ier",
+ "▁Pi er",
+ "▁Pie r",
+ "▁] ;",
+ "▁ ];",
+ "▁F al",
+ "▁Fa l",
+ "▁\" \";",
+ "▁\"\" ;",
+ "mv c",
+ "m vc",
+ "▁fe male",
+ "▁fem ale",
+ "▁b ridge",
+ "▁br idge",
+ "▁brid ge",
+ "▁ bridge",
+ "▁t ít",
+ "kt r",
+ "k tr",
+ "> )",
+ "▁se at",
+ "▁sea t",
+ "▁v ess",
+ "▁ve ss",
+ "▁ves s",
+ "▁U SB",
+ "▁US B",
+ "▁Art icles",
+ "▁Article s",
+ "▁De scription",
+ "▁Des cription",
+ "▁Descri ption",
+ "▁ Description",
+ "▁o c",
+ "▁ oc",
+ "▁h ouses",
+ "▁house s",
+ "▁ho uses",
+ "▁hous es",
+ "▁П ет",
+ "▁Пе т",
+ "lo n",
+ "l on",
+ "Not ification",
+ "▁press ure",
+ "▁ку ль",
+ "▁ куль",
+ "ig ned",
+ "ign ed",
+ "igne d",
+ "▁relig ious",
+ "fa n",
+ "f an",
+ "ig lia",
+ "igli a",
+ "▁class ification",
+ "▁classific ation",
+ "og ether",
+ "oge ther",
+ "▁S DK",
+ "▁SD K",
+ "▁ SDK",
+ "▁H uman",
+ "▁Hu man",
+ "▁Hum an",
+ "▁com mission",
+ "▁comm ission",
+ "▁О р",
+ "▁an tes",
+ "▁ant es",
+ "▁ante s",
+ "▁ antes",
+ "D T",
+ "èt e",
+ "è te",
+ "pr és",
+ "p rés",
+ "/ \"",
+ "▁( «",
+ "▁h ö",
+ "▁ hö",
+ "▁ча с",
+ "▁ час",
+ "▁j ak",
+ "▁ja k",
+ "▁ jak",
+ "ie nen",
+ "ien en",
+ "iene n",
+ "i enen",
+ "ug g",
+ "u gg",
+ "W A",
+ "▁place holder",
+ "▁ placeholder",
+ "Wil l",
+ "W ill",
+ ", ,",
+ "▁K am",
+ "▁Ka m",
+ "▁w en",
+ "▁we n",
+ "▁ wen",
+ "▁Sch ul",
+ "ți e",
+ "ț ie",
+ "▁a ud",
+ "▁au d",
+ "▁ aud",
+ "▁s ue",
+ "▁su e",
+ "▁re ferred",
+ "▁refer red",
+ "ва т",
+ "в ат",
+ "▁P ara",
+ "▁Par a",
+ "▁Pa ra",
+ "▁b la",
+ "▁bl a",
+ "▁ bla",
+ "UE S",
+ "U ES",
+ "▁stat ist",
+ "▁stati st",
+ "▁т у",
+ "▁ ту",
+ "▁Wars za",
+ "gu e",
+ "g ue",
+ "▁I de",
+ "▁Id e",
+ "math scr",
+ "▁l ieu",
+ "▁li eu",
+ "▁lie u",
+ "▁b od",
+ "▁bo d",
+ "▁r us",
+ "▁ru s",
+ "▁ rus",
+ "▁bo at",
+ "xs pace",
+ "x space",
+ "▁mod al",
+ "▁mo dal",
+ "▁ modal",
+ "ле к",
+ "л ек",
+ "to pic",
+ "top ic",
+ "ma ny",
+ "man y",
+ "m any",
+ "sk ý",
+ "▁organ ization",
+ "▁organiz ation",
+ "▁г ене",
+ "▁ге не",
+ "▁Wil son",
+ "▁com fort",
+ "ib il",
+ "i bil",
+ ": -",
+ "▁an imal",
+ "▁anim al",
+ "▁ani mal",
+ "Re port",
+ "Rep ort",
+ "ка ми",
+ "кам и",
+ "jo n",
+ "j on",
+ "▁k er",
+ "▁ke r",
+ "▁ ker",
+ "▁к ни",
+ "moz illa",
+ "Pr ice",
+ "P rice",
+ "ant in",
+ "anti n",
+ "em ento",
+ "ement o",
+ "emen to",
+ "ma y",
+ "m ay",
+ "▁l ung",
+ "▁lu ng",
+ "▁lun g",
+ "▁ lung",
+ "▁b low",
+ "▁bl ow",
+ "▁blo w",
+ "ede ut",
+ "▁type d",
+ "▁typ ed",
+ "▁ty ped",
+ "▁dec ember",
+ "▁. ...",
+ "▁... .",
+ "▁.. ..",
+ "▁ ....",
+ "li ance",
+ "l iance",
+ "▁v iel",
+ "▁vi el",
+ "▁vie l",
+ "▁Ф и",
+ "pr esa",
+ "pre sa",
+ "pres a",
+ "▁ос іб",
+ "▁N am",
+ "▁Na m",
+ "▁G ren",
+ "▁Gr en",
+ "▁Gre n",
+ "си лання",
+ "VI D",
+ "V ID",
+ "st re",
+ "str e",
+ "s tre",
+ "we is",
+ "wei s",
+ "▁prote ction",
+ "▁protect ion",
+ "▁prot ection",
+ "ta ient",
+ "t aient",
+ "▁offic ers",
+ "▁office rs",
+ "▁officer s",
+ "т но",
+ "▁B rig",
+ "▁Br ig",
+ "▁int ellig",
+ "▁intel lig",
+ "я х",
+ "IT H",
+ "I TH",
+ "▁separ ated",
+ "▁separate d",
+ "▁L CCN",
+ "ní m",
+ "n ím",
+ "cl ock",
+ "clo ck",
+ "c lock",
+ "▁ap are",
+ "▁apar e",
+ "яв и",
+ "я ви",
+ "▁Eliz abeth",
+ "▁W ater",
+ "▁Wat er",
+ "▁Wa ter",
+ "geb iet",
+ "▁con vent",
+ "▁conv ent",
+ "▁conven t",
+ "fu rt",
+ "fur t",
+ "f urt",
+ "▁be iden",
+ "▁bei den",
+ "▁beide n",
+ "ba sh",
+ "bas h",
+ "b ash",
+ "▁че рез",
+ "▁чер ез",
+ "▁u b",
+ "▁ ub",
+ "▁Stat ist",
+ "▁Stati st",
+ "▁lim its",
+ "▁limit s",
+ "▁ limits",
+ "V ol",
+ "ct x",
+ "c tx",
+ "▁но в",
+ "▁н ов",
+ "▁ нов",
+ "gu ide",
+ "gui de",
+ "mi c",
+ "m ic",
+ "ie sa",
+ "ies a",
+ "i esa",
+ "▁h uvud",
+ "R T",
+ "Fi g",
+ "F ig",
+ "▁l ect",
+ "▁le ct",
+ "▁ lect",
+ "con n",
+ "co nn",
+ "c onn",
+ "im it",
+ "imi t",
+ "i mit",
+ "га р",
+ "г ар",
+ "▁b ajo",
+ "▁ba jo",
+ "scri be",
+ "scr ibe",
+ "s cribe",
+ "re gex",
+ "reg ex",
+ "▁C ass",
+ "▁Cas s",
+ "▁Ca ss",
+ "▁pro pag",
+ "▁prop ag",
+ "' $",
+ "▁prof es",
+ "un ique",
+ "uni que",
+ "▁S ql",
+ "▁ Sql",
+ "un ion",
+ "uni on",
+ "ri os",
+ "rio s",
+ "r ios",
+ "pi p",
+ "p ip",
+ "-- +",
+ "- -+",
+ "ka dem",
+ "k adem",
+ "column s",
+ "▁v ary",
+ "▁var y",
+ "▁va ry",
+ "▁bere its",
+ "▁d oi",
+ "▁do i",
+ "▁Com mon",
+ "▁Comm on",
+ "▁ Common",
+ "▁Ro bin",
+ "▁Rob in",
+ "▁ ×",
+ "▁s ei",
+ "▁se i",
+ "▁s yst",
+ "▁sy st",
+ "▁sys t",
+ "▁v ä",
+ "▁ vä",
+ "▁De fault",
+ "▁Def ault",
+ "▁ Default",
+ "▁t ym",
+ "▁ty m",
+ "pe l",
+ "p el",
+ "▁bel ieved",
+ "▁believe d",
+ "▁pro vider",
+ "▁prov ider",
+ "▁provide r",
+ "▁ provider",
+ "▁min imal",
+ "▁minim al",
+ "▁mini mal",
+ "та ли",
+ "тал и",
+ "т али",
+ "ain es",
+ "ai nes",
+ "aine s",
+ "a ines",
+ "K it",
+ "iz io",
+ "izi o",
+ "is sen",
+ "iss en",
+ "isse n",
+ "pr essed",
+ "press ed",
+ "pres sed",
+ "▁s tag",
+ "▁st ag",
+ "▁sta g",
+ "▁ stag",
+ "▁u int",
+ "▁ui nt",
+ "▁ uint",
+ "ko r",
+ "k or",
+ "▁ра спо",
+ "▁рас по",
+ "▁in herit",
+ "▁inher it",
+ "▁comp iled",
+ "▁compile d",
+ "▁f ebru",
+ "▁fe bru",
+ "▁feb ru",
+ "▁t mp",
+ "▁tm p",
+ "▁ tmp",
+ "work s",
+ "wor ks",
+ "ч на",
+ "draw able",
+ "▁N av",
+ "▁Na v",
+ "▁ Nav",
+ "▁though ts",
+ "▁thought s",
+ "ro ute",
+ "rout e",
+ "rou te",
+ "r oute",
+ "▁con cert",
+ "▁conc ert",
+ "▁conce rt",
+ "▁option al",
+ "▁opt ional",
+ "▁ optional",
+ "▁b ras",
+ "▁br as",
+ "▁bra s",
+ "▁ bras",
+ "▁prov iding",
+ "со м",
+ "с ом",
+ "id x",
+ "i dx",
+ "emp lo",
+ "empl o",
+ "▁ко ли",
+ "▁ коли",
+ "▁B ere",
+ "▁Be re",
+ "▁Ber e",
+ "▁E ls",
+ "▁El s",
+ "ре мен",
+ "рем ен",
+ "▁де ка",
+ "co ut",
+ "cou t",
+ "c out",
+ "la yer",
+ "lay er",
+ "l ayer",
+ "▁g lob",
+ "▁gl ob",
+ "▁glo b",
+ "▁ glob",
+ "fore ach",
+ "for each",
+ "▁E ducation",
+ "▁Edu cation",
+ "P O",
+ "▁im prov",
+ "▁imp rov",
+ "▁impro v",
+ "▁impr ov",
+ "▁cl ients",
+ "▁client s",
+ "▁cli ents",
+ "gr oups",
+ "group s",
+ "gro ups",
+ "▁k ont",
+ "▁kon t",
+ "▁ko nt",
+ "De l",
+ "D el",
+ "re tt",
+ "ret t",
+ "r ett",
+ "▁s up",
+ "▁su p",
+ "▁ sup",
+ "▁m og",
+ "▁mo g",
+ "ta n",
+ "t an",
+ "▁com pl",
+ "▁comp l",
+ "ir ty",
+ "irt y",
+ "▁nouve au",
+ "os z",
+ "o sz",
+ "▁N avy",
+ "▁Na vy",
+ "▁Nav y",
+ "ber e",
+ "be re",
+ "b ere",
+ "ma sk",
+ "mas k",
+ "m ask",
+ "ov é",
+ "o vé",
+ "zi l",
+ "z il",
+ "PE R",
+ "P ER",
+ "▁pobla ción",
+ "▁població n",
+ "▁d etailed",
+ "▁detail ed",
+ "ле т",
+ "л ет",
+ "▁famil ies",
+ "▁familie s",
+ "ab et",
+ "abe t",
+ "a bet",
+ "е вич",
+ "änd er",
+ "än der",
+ "ände r",
+ "ä nder",
+ "▁å r",
+ "▁ år",
+ "▁p endant",
+ "▁b il",
+ "▁bi l",
+ "▁ bil",
+ "▁h int",
+ "▁hi nt",
+ "▁hin t",
+ "ode n",
+ "od en",
+ "o den",
+ "▁exp ansion",
+ "▁p ont",
+ "▁po nt",
+ "▁pon t",
+ "▁ pont",
+ "as ant",
+ "asa nt",
+ "▁K ind",
+ "▁Ki nd",
+ "▁Kin d",
+ "▁ Kind",
+ "ij i",
+ "i ji",
+ "▁A uth",
+ "▁Aut h",
+ "▁Au th",
+ "▁ Auth",
+ "laim ed",
+ "ref lect",
+ "] =",
+ "by tes",
+ "byte s",
+ "ho ver",
+ "hov er",
+ "h over",
+ "▁ц ер",
+ "▁це р",
+ "▁ цер",
+ "grad le",
+ "Ar ch",
+ "ap est",
+ "ape st",
+ "apes t",
+ "ás a",
+ "á sa",
+ "Car d",
+ "Ca rd",
+ "C ard",
+ "▁tempor ary",
+ "▁départ ement",
+ "class es",
+ "жи ва",
+ "▁х удо",
+ "▁m ole",
+ "▁mo le",
+ "▁mol e",
+ "R Y",
+ "L P",
+ "▁p ec",
+ "▁pe c",
+ "▁ pec",
+ "rodu ction",
+ "▁Gu ard",
+ "▁Par liament",
+ "▁inst anti",
+ "▁instant i",
+ "▁not amment",
+ "▁D oug",
+ "▁Do ug",
+ "▁Dou g",
+ "▁Mar sh",
+ "▁Mars h",
+ ". ~",
+ "▁\\ \"",
+ "▁ \\\"",
+ "▁t hé",
+ "▁th é",
+ "▁li bre",
+ "▁lib re",
+ "do es",
+ "▁dé but",
+ "▁U nit",
+ "▁Un it",
+ "▁ Unit",
+ "▁с ту",
+ "▁ст у",
+ "▁ сту",
+ "▁le ague",
+ "▁qu ale",
+ "▁q uale",
+ "▁qual e",
+ "▁состав ля",
+ "▁соста вля",
+ "Se curity",
+ "Sec urity",
+ "▁appar ently",
+ "▁apparent ly",
+ "▁tro ops",
+ "ic ano",
+ "ica no",
+ "ican o",
+ "i cano",
+ "▁M B",
+ "▁ MB",
+ "en ze",
+ "enz e",
+ "lo ading",
+ "load ing",
+ "▁dist ributed",
+ "▁distribu ted",
+ "▁distrib uted",
+ "write r",
+ "writ er",
+ "wr iter",
+ "w riter",
+ "res ources",
+ "resource s",
+ "h ö",
+ "ut ils",
+ "util s",
+ "uti ls",
+ "▁prep ared",
+ "▁prepar ed",
+ "▁prepare d",
+ "ci er",
+ "cie r",
+ "c ier",
+ "op ol",
+ "opo l",
+ "o pol",
+ "▁län kar",
+ "he s",
+ "h es",
+ "н ва",
+ "▁op ens",
+ "▁open s",
+ "▁ opens",
+ "ag og",
+ "ago g",
+ "inter face",
+ "▁F und",
+ "▁Fu nd",
+ "▁Fun d",
+ "▁pent ru",
+ "ní ch",
+ "n ích",
+ "▁config ured",
+ "▁configure d",
+ "▁configur ed",
+ "▁Web site",
+ "▁list ener",
+ "▁listen er",
+ "▁liste ner",
+ "▁ listener",
+ "iv el",
+ "ive l",
+ "i vel",
+ "n ę",
+ "min a",
+ "mi na",
+ "m ina",
+ "▁in vest",
+ "▁inv est",
+ "▁inve st",
+ "▁м іс",
+ "▁мі с",
+ "▁d av",
+ "▁da v",
+ "▁p atch",
+ "▁pat ch",
+ "▁ patch",
+ "pi eler",
+ "piel er",
+ "pie ler",
+ "▁Ext erna",
+ "▁Extern a",
+ "t f",
+ "▁e red",
+ "▁er ed",
+ "▁ere d",
+ "▁ ered",
+ "▁Ass embly",
+ "▁ Assembly",
+ "▁s out",
+ "▁so ut",
+ "▁sou t",
+ "▁v erk",
+ "▁ver k",
+ "▁ verk",
+ "me rs",
+ "mer s",
+ "m ers",
+ "t oggle",
+ "▁up dating",
+ "▁upd ating",
+ "▁K ent",
+ "▁Ke nt",
+ "▁Ken t",
+ "ec a",
+ "e ca",
+ "FA ULT",
+ "▁tit re",
+ "▁ti tre",
+ "▁K enn",
+ "▁Ke nn",
+ "▁Ken n",
+ "▁Ми ха",
+ "ст ор",
+ "сто р",
+ "с тор",
+ "▁p ode",
+ "▁po de",
+ "▁pod e",
+ "▁S eb",
+ "▁Se b",
+ "це в",
+ "ц ев",
+ "E Y",
+ "▁sil ver",
+ "▁cap acity",
+ "▁capac ity",
+ "▁comple tion",
+ "▁complet ion",
+ "▁Pe dro",
+ "▁Ped ro",
+ "fe l",
+ "f el",
+ "va no",
+ "van o",
+ "v ano",
+ "ze ug",
+ "▁in terior",
+ "▁inter ior",
+ "▁inte rior",
+ "▁Res ponse",
+ "▁ Response",
+ "éd ia",
+ "é dia",
+ "▁World Cat",
+ "▁c ă",
+ "qu el",
+ "que l",
+ "q uel",
+ "So l",
+ "S ol",
+ "іс ля",
+ "▁D omin",
+ "▁Do min",
+ "▁Dom in",
+ "▁c um",
+ "▁cu m",
+ "ce p",
+ "c ep",
+ "▁M use",
+ "▁Mus e",
+ "▁Mu se",
+ "▁M aría",
+ "▁Mar ía",
+ "▁Ma ría",
+ "▁function al",
+ "▁ad apter",
+ "▁adapt er",
+ "▁ adapter",
+ "config uration",
+ "▁t ipo",
+ "▁tip o",
+ "▁ti po",
+ "▁B ry",
+ "▁Br y",
+ "v y",
+ "U L",
+ "▁tra vers",
+ "▁trav ers",
+ "! (",
+ "▁absol utely",
+ "▁absolute ly",
+ "л та",
+ "тт я",
+ "т тя",
+ "▁I T",
+ "▁ IT",
+ "▁во ен",
+ "yc le",
+ "y cle",
+ "be st",
+ "bes t",
+ "b est",
+ "▁construct ed",
+ "▁constru cted",
+ "▁фи ль",
+ "▁ филь",
+ "ci do",
+ "cid o",
+ "c ido",
+ "ex it",
+ "ga rt",
+ "gar t",
+ "g art",
+ "▁provin cia",
+ "ve z",
+ "v ez",
+ "ci pl",
+ "cip l",
+ "▁Face book",
+ "▁Fac ebook",
+ "▁y ellow",
+ "▁ yellow",
+ "▁Sum mer",
+ "▁point ing",
+ "▁poss ibility",
+ "▁possib ility",
+ "▁possibil ity",
+ "▁leg isl",
+ "▁мо ж",
+ "▁ мож",
+ "de rn",
+ "der n",
+ "d ern",
+ "ко но",
+ "кон о",
+ "▁mechan ism",
+ "▁Bern ard",
+ "ex pr",
+ "exp r",
+ "ло ви",
+ "лов и",
+ "л ови",
+ "▁dig its",
+ "▁digit s",
+ "▁de legate",
+ "▁deleg ate",
+ "▁ delegate",
+ "og ram",
+ "o gram",
+ "▁D ictionary",
+ "▁ Dictionary",
+ "is y",
+ "▁s po",
+ "▁sp o",
+ "/ $",
+ "clude d",
+ "clud ed",
+ "▁M VC",
+ "▁t ém",
+ "▁té m",
+ "▁print ed",
+ "▁prin ted",
+ "▁G ott",
+ "▁Go tt",
+ "▁Got t",
+ "▁O m",
+ "▁ Om",
+ "ans as",
+ "▁D urch",
+ "▁Dur ch",
+ "▁I dent",
+ "▁Id ent",
+ "▁Ide nt",
+ "▁ Ident",
+ "Q U",
+ "ht m",
+ "h tm",
+ "▁S ul",
+ "▁Su l",
+ "'] .",
+ "' ].",
+ "▁du ty",
+ "▁dut y",
+ "▁Aut hor",
+ "▁Auth or",
+ "▁ Author",
+ "▁n ě",
+ "▁ ně",
+ "ow ego",
+ "owe go",
+ "pu s",
+ "p us",
+ "em bl",
+ "emb l",
+ "Exec utor",
+ "B L",
+ "▁M ens",
+ "▁Me ns",
+ "▁Men s",
+ "dis patch",
+ "▁M id",
+ "▁Mi d",
+ "ap ps",
+ "app s",
+ "Trans form",
+ "▁D at",
+ "▁Da t",
+ "▁ Dat",
+ "▁im pl",
+ "▁imp l",
+ "▁ impl",
+ "ou x",
+ "o ux",
+ "ho lm",
+ "hol m",
+ "▁I ns",
+ "▁In s",
+ "▁Emp ire",
+ "ру п",
+ "▁Ap ache",
+ "SI ON",
+ "S ION",
+ "▁pass age",
+ "######## ########",
+ "▁ex pressed",
+ "▁express ed",
+ "▁expr essed",
+ "▁expres sed",
+ "на д",
+ "▁o l",
+ "▁ ol",
+ "▁h avia",
+ "▁ha via",
+ "▁hav ia",
+ "▁бо лее",
+ "▁enjo y",
+ "form ance",
+ "▁dim ensions",
+ "▁dimension s",
+ "▁ч ер",
+ "▁че р",
+ "▁ чер",
+ "Se e",
+ "S ee",
+ "▁m outh",
+ "▁mo uth",
+ "▁mou th",
+ "▁ mouth",
+ "▁g au",
+ "▁ga u",
+ "ien cy",
+ "i ency",
+ "▁Carol ina",
+ "Dis t",
+ "Di st",
+ "D ist",
+ "rad io",
+ "li mit",
+ "lim it",
+ "l imit",
+ "/ ?",
+ "▁B all",
+ "▁Ba ll",
+ "▁Bal l",
+ "ні сть",
+ "Mem ber",
+ "M ember",
+ "wa ter",
+ "w ater",
+ "▁mur der",
+ "▁stand ing",
+ "▁stan ding",
+ "▁ standing",
+ "▁V II",
+ "▁VI I",
+ "Cent er",
+ "C enter",
+ "pp a",
+ "p pa",
+ "ur eau",
+ "ure au",
+ "▁Le ip",
+ "▁ob jet",
+ "▁obj et",
+ "▁Act ivity",
+ "▁Activ ity",
+ "▁ Activity",
+ "em bers",
+ "ember s",
+ "emb ers",
+ "v r",
+ "▁con du",
+ "▁cond u",
+ "Cell s",
+ "C ells",
+ "in us",
+ "inu s",
+ "▁' ,",
+ "▁ ',",
+ "▁af raid",
+ "▁х а",
+ "▁ ха",
+ "▁V ic",
+ "▁Vi c",
+ "test ing",
+ "tes ting",
+ "Tu be",
+ "T ube",
+ "▁v ast",
+ "▁va st",
+ "▁vas t",
+ "P M",
+ "ni h",
+ "n ih",
+ "SS N",
+ "S SN",
+ "▁Ch ile",
+ "▁Chi le",
+ "yl van",
+ "▁B ow",
+ "▁Bo w",
+ "▁relig ion",
+ "op her",
+ "oph er",
+ "ophe r",
+ "o pher",
+ "▁C oll",
+ "▁Col l",
+ "▁Co ll",
+ "▁ Coll",
+ "▁dig ital",
+ "▁digit al",
+ "zi oni",
+ "z ioni",
+ "Se ction",
+ "Sec tion",
+ "S ection",
+ "▁резу льта",
+ "Foo t",
+ "F oot",
+ "con vert",
+ "conv ert",
+ "▁rece iving",
+ "Cont act",
+ "▁h ero",
+ "▁he ro",
+ "▁her o",
+ "sa m",
+ "s am",
+ "▁pos terior",
+ "▁poster ior",
+ "▁poste rior",
+ "ow i",
+ "o wi",
+ "An t",
+ "A nt",
+ "▁fl ags",
+ "▁flag s",
+ "▁fla gs",
+ "▁ flags",
+ "▁Ze aland",
+ "▁b ounds",
+ "▁bound s",
+ "▁ bounds",
+ "▁where as",
+ "▁whe reas",
+ "in fl",
+ "inf l",
+ "Pl ay",
+ "P lay",
+ "▁d emo",
+ "▁de mo",
+ "▁dem o",
+ "▁ demo",
+ "▁g ibt",
+ "▁gi bt",
+ "▁h ospital",
+ "▁hosp ital",
+ "▁v olta",
+ "▁vol ta",
+ "▁volt a",
+ "л ё",
+ "▁f ashion",
+ "▁ex ceed",
+ "▁exc eed",
+ "el enium",
+ "elen ium",
+ "It er",
+ "I ter",
+ "kr ie",
+ "k rie",
+ "▁integr ation",
+ "▁integra tion",
+ "▁ integration",
+ "▁Other wise",
+ "ad u",
+ "a du",
+ "Sh e",
+ "S he",
+ "on de",
+ "ond e",
+ "o nde",
+ "ui nt",
+ "u int",
+ "rad ius",
+ "▁r am",
+ "▁ra m",
+ "▁ ram",
+ "▁ál bum",
+ "▁т ур",
+ "▁ту р",
+ "▁ тур",
+ "▁d y",
+ "▁ dy",
+ "▁O tt",
+ "▁Ot t",
+ "▁пер и",
+ "▁пе ри",
+ "re v",
+ "r ev",
+ "ri or",
+ "rio r",
+ "r ior",
+ "í d",
+ "ir at",
+ "ira t",
+ "i rat",
+ "▁в клю",
+ "▁import ante",
+ "▁important e",
+ "▁Du ke",
+ "▁caus a",
+ "▁ca usa",
+ "▁Math emat",
+ "▁di plom",
+ "▁N icol",
+ "▁Nic ol",
+ "▁Ni col",
+ "▁ex clus",
+ "▁exc lus",
+ "▁debug ging",
+ "▁G h",
+ "or iginal",
+ "origin al",
+ "orig inal",
+ "ly n",
+ "l yn",
+ "▁P la",
+ "▁Pl a",
+ "su ite",
+ "suit e",
+ "ch at",
+ "cha t",
+ "c hat",
+ "▁e stud",
+ "▁est ud",
+ "ue lle",
+ "uel le",
+ "u elle",
+ "▁p ert",
+ "▁per t",
+ "▁pe rt",
+ "▁ pert",
+ "▁import ance",
+ "▁appro aches",
+ "▁approach es",
+ "▁d la",
+ "▁про ф",
+ "Pr es",
+ "Pre s",
+ "P res",
+ "< \\",
+ "pre fix",
+ "p refix",
+ "SS ION",
+ "S SION",
+ "ро ди",
+ "род и",
+ "count ry",
+ "c ountry",
+ "it zer",
+ "itz er",
+ "▁ко р",
+ "▁к ор",
+ "▁ кор",
+ "▁sing ular",
+ "go v",
+ "g ov",
+ "ри н",
+ "р ин",
+ "▁F A",
+ "▁ FA",
+ "▁mat rices",
+ "ol are",
+ "ola re",
+ "olar e",
+ "o lare",
+ "ni ka",
+ "nik a",
+ "n ika",
+ "po wer",
+ "pow er",
+ "p ower",
+ "ll a",
+ "l la",
+ "▁des ire",
+ "▁famil ia",
+ "▁fam ilia",
+ "до р",
+ "д ор",
+ "▁f an",
+ "▁fa n",
+ "▁ fan",
+ "gener ated",
+ "generate d",
+ "▁C os",
+ "▁Co s",
+ "▁ż e",
+ "▁ że",
+ "▁D iese",
+ "▁Die se",
+ "▁Di ese",
+ "▁Dies e",
+ "mo v",
+ "m ov",
+ "▁de note",
+ "▁den ote",
+ "\") ]",
+ "\" )]",
+ "ou vern",
+ "ouv ern",
+ "ouve rn",
+ "ouver n",
+ "am an",
+ "ama n",
+ "a man",
+ "▁in ser",
+ "▁ins er",
+ "▁inse r",
+ "ij k",
+ "i jk",
+ "ot ta",
+ "ott a",
+ "o tta",
+ "er al",
+ "era l",
+ "e ral",
+ "де ль",
+ "д ель",
+ "() ->",
+ "( )->",
+ "▁p oder",
+ "▁po der",
+ "▁pod er",
+ "▁pode r",
+ "ig es",
+ "ige s",
+ "i ges",
+ "▁On line",
+ "▁we ird",
+ "ia c",
+ "i ac",
+ "▁quel ques",
+ "▁quelque s",
+ "ère nt",
+ "è rent",
+ "▁t el",
+ "▁te l",
+ "▁ tel",
+ "▁L atin",
+ "▁Lat in",
+ "ver ter",
+ "vert er",
+ "verte r",
+ "ля р",
+ "ро и",
+ "▁p df",
+ "▁pd f",
+ "▁ pdf",
+ "▁key word",
+ "▁ keyword",
+ "Hand le",
+ "A fter",
+ "re ce",
+ "rec e",
+ "▁ident ical",
+ "style sheet",
+ "styles heet",
+ "▁стан ови",
+ "▁станов и",
+ "▁k a",
+ "▁ ka",
+ "ce ment",
+ "cem ent",
+ "c ement",
+ "те т",
+ "т ет",
+ "▁c hat",
+ "▁ch at",
+ "▁cha t",
+ "▁ chat",
+ "▁M un",
+ "▁Mu n",
+ "ał a",
+ "a ła",
+ "AN T",
+ "A NT",
+ "ol óg",
+ "▁f ant",
+ "▁fa nt",
+ "▁fan t",
+ "▁for est",
+ "▁fo rest",
+ "▁fore st",
+ "▁ви ко",
+ "cu ss",
+ "cus s",
+ "c uss",
+ "▁se hr",
+ "pa g",
+ "p ag",
+ "ot ic",
+ "oti c",
+ "▁á ll",
+ "▁ál l",
+ "▁ áll",
+ "ма ти",
+ "мат и",
+ "▁\" '",
+ "+ \"",
+ "An imation",
+ "Anim ation",
+ "ходи т",
+ "ход ит",
+ "az u",
+ "a zu",
+ "▁pl ays",
+ "▁play s",
+ "▁pla ys",
+ "▁ plays",
+ "iz ioni",
+ "izi oni",
+ "izio ni",
+ "i zioni",
+ "ми че",
+ "▁b omb",
+ "▁bo mb",
+ "▁bom b",
+ "▁mer ely",
+ "▁mere ly",
+ "▁hold ing",
+ "▁hol ding",
+ "▁w enn",
+ "▁we nn",
+ "▁wen n",
+ "▁m edic",
+ "▁me dic",
+ "▁med ic",
+ "▁medi c",
+ "▁spe aking",
+ "▁speak ing",
+ "ong odb",
+ "ongo db",
+ "▁Cam pe",
+ "▁Camp e",
+ "in ity",
+ "ini ty",
+ "init y",
+ "▁я нва",
+ "() `.",
+ "()` .",
+ "( )`.",
+ "lu ss",
+ "lus s",
+ "l uss",
+ "▁H istoire",
+ "▁His toire",
+ "▁Hist oire",
+ "▁oper ating",
+ "▁opera ting",
+ "Ch annel",
+ "▁accur acy",
+ "▁b os",
+ "▁bo s",
+ "▁ bos",
+ "▁ev ident",
+ "ци ю",
+ "event s",
+ "ev ents",
+ "even ts",
+ "text rm",
+ "or eign",
+ "ore ign",
+ "▁i i",
+ "▁ ii",
+ "hr en",
+ "hre n",
+ "h ren",
+ "lo wer",
+ "low er",
+ "l ower",
+ "▁т ом",
+ "▁то м",
+ "▁ том",
+ "▁Ab out",
+ "▁ About",
+ "▁a j",
+ "▁ aj",
+ "er i",
+ "e ri",
+ "сту пи",
+ "ступ и",
+ "▁di git",
+ "▁dig it",
+ "▁ digit",
+ "▁Sp ain",
+ "▁D aten",
+ "▁Date n",
+ "▁Da ten",
+ "▁Dat en",
+ "▁for me",
+ "▁form e",
+ "▁ш та",
+ "▁ шта",
+ "▁B ach",
+ "▁Ba ch",
+ "▁Bac h",
+ "no number",
+ "non umber",
+ "▁recomm ended",
+ "▁recommend ed",
+ "▁re ads",
+ "▁read s",
+ "his toire",
+ "h istoire",
+ "▁s ang",
+ "▁sa ng",
+ "▁san g",
+ "▁? ?",
+ "▁ ??",
+ "▁с тал",
+ "▁ст ал",
+ "▁ста л",
+ "sc ore",
+ "s core",
+ "fa s",
+ "f as",
+ "▁c ub",
+ "▁cu b",
+ "▁g rew",
+ "▁gr ew",
+ "▁gre w",
+ "▁cent ro",
+ "▁bek annt",
+ "Event s",
+ "BE R",
+ "B ER",
+ "he w",
+ "h ew",
+ "сс а",
+ "с са",
+ "▁major ity",
+ "ît re",
+ "î tre",
+ "en ci",
+ "enc i",
+ "▁Qu ery",
+ "▁Que ry",
+ "▁ Query",
+ "▁któ re",
+ "i ć",
+ "▁complex ity",
+ "▁Fran çois",
+ "const raint",
+ "ур на",
+ "═ ═",
+ "▁iter ate",
+ "le tt",
+ "let t",
+ "l ett",
+ "pe ror",
+ "per or",
+ "▁Neder land",
+ "sh are",
+ "sha re",
+ "▁incl u",
+ "▁inc lu",
+ "än ger",
+ "äng er",
+ "änge r",
+ "▁N ic",
+ "▁Ni c",
+ "ч о",
+ "F ull",
+ "▁ra pport",
+ "▁rapp ort",
+ "▁rap port",
+ "ec lipse",
+ "e clipse",
+ "▁indust ry",
+ "he aders",
+ "head ers",
+ "header s",
+ "▁Р и",
+ "ch sel",
+ "chs el",
+ "▁po lic",
+ "▁pol ic",
+ "sch ied",
+ "% ,",
+ "O D",
+ "▁J ak",
+ "▁Ja k",
+ "({ \\",
+ "( {\\",
+ "al igned",
+ "align ed",
+ "▁frequ ently",
+ "▁frequent ly",
+ "▁su oi",
+ "▁suo i",
+ "▁ess entially",
+ "▁essential ly",
+ "▁R ic",
+ "▁Ri c",
+ "▁re ports",
+ "▁report s",
+ "▁dec imal",
+ "ra r",
+ "r ar",
+ "▁F oo",
+ "▁Fo o",
+ "▁ Foo",
+ "▁K a",
+ "▁D C",
+ "▁ DC",
+ "▁sim pler",
+ "▁simple r",
+ "▁simp ler",
+ "▁simpl er",
+ "Pa ne",
+ "Pan e",
+ "P ane",
+ "? }",
+ "So rt",
+ "S ort",
+ "▁pos it",
+ "cd n",
+ "c dn",
+ "kt ur",
+ "▁aw k",
+ "▁ awk",
+ "зе р",
+ "з ер",
+ "P F",
+ "u ur",
+ "▁R oss",
+ "▁Ro ss",
+ "▁Ros s",
+ "▁m ant",
+ "▁ma nt",
+ "▁man t",
+ "N a",
+ "Con s",
+ "Co ns",
+ "C ons",
+ ")) ))",
+ "))) )",
+ ") )))",
+ "▁techn iques",
+ "▁techni ques",
+ "▁technique s",
+ "im pl",
+ "imp l",
+ "▁dro pped",
+ "▁drop ped",
+ "▁L ista",
+ "▁List a",
+ "▁Li sta",
+ "▁Lis ta",
+ "▁Bas ically",
+ "▁Basic ally",
+ "en tal",
+ "ent al",
+ "enta l",
+ "▁cel ui",
+ "▁str ategy",
+ "▁strateg y",
+ "▁strat egy",
+ "▁W ales",
+ "▁Wal es",
+ "▁Wa les",
+ "na n",
+ "n an",
+ "▁g min",
+ "▁gr öß",
+ "▁eer ste",
+ "▁eerst e",
+ "T im",
+ "nt en",
+ "n ten",
+ "re sp",
+ "res p",
+ "r esp",
+ "▁s table",
+ "▁st able",
+ "▁sta ble",
+ "▁ stable",
+ "no v",
+ "n ov",
+ "ro b",
+ "r ob",
+ "но ј",
+ "▁mar riage",
+ "get String",
+ "Aut hor",
+ "Auth or",
+ "▁G raf",
+ "▁Gr af",
+ "▁Gra f",
+ "▁di agram",
+ "▁diag ram",
+ "▁dia gram",
+ "gi a",
+ "g ia",
+ "Net work",
+ "N etwork",
+ "▁com posed",
+ "▁comp osed",
+ "▁compos ed",
+ "▁compose d",
+ "▁miss ed",
+ "▁mis sed",
+ "▁M eg",
+ "▁Me g",
+ "▁пра во",
+ "▁прав о",
+ "▁hom onymes",
+ "▁Bo oks",
+ "▁Book s",
+ "▁en cou",
+ "▁enc ou",
+ "port e",
+ "por te",
+ "p orte",
+ "▁rot ation",
+ "▁f ir",
+ "▁fi r",
+ "▁ fir",
+ "те льно",
+ "тель но",
+ "▁g un",
+ "▁gu n",
+ "▁ gun",
+ "▁A ff",
+ "▁Af f",
+ "▁ Aff",
+ "но к",
+ "н ок",
+ "▁Fuß ball",
+ "▁St ory",
+ "▁Sto ry",
+ "▁ Story",
+ "▁Ch ap",
+ "▁Cha p",
+ "▁) .",
+ "▁ ).",
+ "▁Se it",
+ "мо н",
+ "м он",
+ "▁t élé",
+ "▁té lé",
+ "▁cop ied",
+ "▁cons istent",
+ "▁consist ent",
+ "▁dr ink",
+ "▁C ham",
+ "▁Ch am",
+ "▁Cha m",
+ "▁mat ters",
+ "▁matter s",
+ "▁render ed",
+ "▁rend ered",
+ "▁rende red",
+ "▁hyp oth",
+ "œ uv",
+ "▁me er",
+ "▁par sing",
+ "▁P RO",
+ "▁PR O",
+ "▁ PRO",
+ "se ries",
+ "ser ies",
+ "serie s",
+ "s eries",
+ "▁z á",
+ "▁ zá",
+ "stra ße",
+ "▁B oot",
+ "▁Bo ot",
+ "▁ Boot",
+ "▁re po",
+ "▁rep o",
+ "▁ repo",
+ "wo r",
+ "w or",
+ "▁St ream",
+ "▁Stre am",
+ "▁ Stream",
+ "▁A N",
+ "▁ AN",
+ "▁п ів",
+ "▁пі в",
+ "▁S M",
+ "▁ SM",
+ "▁A rn",
+ "▁Ar n",
+ "▁ Ž",
+ "▁[ ];",
+ "▁[] ;",
+ "Res ources",
+ "Resource s",
+ "▁el abor",
+ "▁ela bor",
+ "▁E th",
+ "▁Et h",
+ "▁l iste",
+ "▁li ste",
+ "▁list e",
+ "▁rel atively",
+ "▁relative ly",
+ "▁relativ ely",
+ "ch ant",
+ "chan t",
+ "cha nt",
+ "=\" \"",
+ "= \"\"",
+ "▁l ift",
+ "▁li ft",
+ "▁lif t",
+ "C N",
+ "Service s",
+ "Serv ices",
+ "ME NT",
+ "M ENT",
+ "▁и гра",
+ "▁иг ра",
+ "▁ игра",
+ "б ре",
+ "▁J ord",
+ "▁Jo rd",
+ "▁t ec",
+ "▁te c",
+ "ш ка",
+ "▁S up",
+ "▁Su p",
+ "▁infl uen",
+ "▁influ en",
+ "on ds",
+ "ond s",
+ "hand ler",
+ "handle r",
+ "▁b anda",
+ "▁band a",
+ "▁ban da",
+ "▁vert ices",
+ "▁z ap",
+ "▁za p",
+ "▁c ord",
+ "▁cor d",
+ "▁co rd",
+ "▁ cord",
+ "al ter",
+ "alt er",
+ "ze nia",
+ "zen ia",
+ "z enia",
+ "ât eau",
+ "âte au",
+ "▁know ing",
+ "▁Argent ina",
+ "Ar ea",
+ "Are a",
+ "A rea",
+ "ан е",
+ "а не",
+ "f c",
+ "=\" /",
+ "= \"/",
+ "▁M ik",
+ "▁Mi k",
+ "at ă",
+ "ie ux",
+ "ieu x",
+ "▁deutsch en",
+ "▁deutsche n",
+ "▁trad itional",
+ "▁tradition al",
+ "de code",
+ "dec ode",
+ "ve x",
+ "v ex",
+ "▁size of",
+ "▁ sizeof",
+ "▁F un",
+ "▁Fu n",
+ "▁ Fun",
+ "▁par ser",
+ "▁parse r",
+ "▁ parser",
+ "▁Flor ida",
+ "▁build ings",
+ "▁building s",
+ "▁Man uel",
+ "ri le",
+ "ril e",
+ "r ile",
+ "▁log ged",
+ "▁strong ly",
+ "▁re vol",
+ "▁rev ol",
+ "не е",
+ "xi co",
+ "xic o",
+ "x ico",
+ "▁F air",
+ "▁Fa ir",
+ "ca rt",
+ "car t",
+ "c art",
+ "▁W ort",
+ "▁Wo rt",
+ "▁Wor t",
+ "▁Jes us",
+ "em es",
+ "eme s",
+ "e mes",
+ "sch rift",
+ "Input Stream",
+ "wa d",
+ "w ad",
+ "▁gran des",
+ "▁grand es",
+ "▁grande s",
+ "▁númer o",
+ "▁O tto",
+ "▁Ot to",
+ "▁Ott o",
+ "ien tes",
+ "ient es",
+ "iente s",
+ "i entes",
+ "▁fam ous",
+ "ol ogne",
+ "olog ne",
+ "J e",
+ "ни ш",
+ "▁Guer ra",
+ "bar a",
+ "ba ra",
+ "b ara",
+ "▁c ad",
+ "▁ca d",
+ "el ve",
+ "br ace",
+ "bra ce",
+ "b race",
+ "▁J r",
+ "st able",
+ "sta ble",
+ "stab le",
+ "s table",
+ "EC T",
+ "E CT",
+ "lem ma",
+ "med iate",
+ "medi ate",
+ "media te",
+ "▁v in",
+ "▁vi n",
+ "▁ vin",
+ "▁mon ument",
+ "▁c v",
+ "▁ cv",
+ "▁w inter",
+ "▁win ter",
+ "▁trans formation",
+ "▁transform ation",
+ "▁N ick",
+ "▁Nic k",
+ "▁Ni ck",
+ "str onom",
+ "▁f rag",
+ "▁fr ag",
+ "▁fra g",
+ "▁in tel",
+ "▁int el",
+ "▁inte l",
+ "ra ction",
+ "rac tion",
+ "ract ion",
+ "r action",
+ "▁consider ing",
+ "▁consid ering",
+ "▁F le",
+ "▁Fl e",
+ "▁ ло",
+ "▁A près",
+ "▁Ap rès",
+ "▁A M",
+ "▁ AM",
+ "▁H um",
+ "▁Hu m",
+ "▁m undo",
+ "NE R",
+ "N ER",
+ "▁Be low",
+ "▁Bel ow",
+ "▁го рода",
+ "▁горо да",
+ "▁город а",
+ "ar ters",
+ "art ers",
+ "arter s",
+ "arte rs",
+ "-- \"",
+ "▁П е",
+ "▁ Пе",
+ "î t",
+ "▁t xt",
+ "▁tx t",
+ "▁ txt",
+ "an gers",
+ "ang ers",
+ "ange rs",
+ "anger s",
+ "▁t hy",
+ "▁th y",
+ "▁ thy",
+ "CL A",
+ "C LA",
+ "ib les",
+ "ible s",
+ "i bles",
+ "▁request ed",
+ "▁requ ested",
+ "▁Alex and",
+ "▁fact ors",
+ "▁fa ctors",
+ "▁factor s",
+ "▁produ ces",
+ "▁produce s",
+ "ning en",
+ "n ingen",
+ "▁со стоя",
+ "▁optim ization",
+ "ch od",
+ "cho d",
+ "c hod",
+ "> `",
+ "▁Wik ip",
+ "nost i",
+ "nos ti",
+ "n osti",
+ "▁compet ition",
+ "▁H ann",
+ "▁Ha nn",
+ "▁Han n",
+ "▁z ona",
+ "▁zo na",
+ "d c",
+ "de sign",
+ "des ign",
+ "▁Z u",
+ "▁e spec",
+ "▁es pec",
+ "▁espe c",
+ "▁esp ec",
+ "equ ality",
+ "equal ity",
+ "e quality",
+ "▁A bb",
+ "▁Ab b",
+ "▁develop er",
+ "▁ developer",
+ "▁\" ^",
+ "▁Sh ort",
+ "▁Sho rt",
+ "▁ Short",
+ "▁pl ans",
+ "▁pla ns",
+ "▁plan s",
+ "▁v it",
+ "▁vi t",
+ "iz able",
+ "iza ble",
+ "burg h",
+ "bur gh",
+ "ag em",
+ "age m",
+ "a gem",
+ "▁Pr int",
+ "▁Pri nt",
+ "▁Prin t",
+ "▁ Print",
+ "í v",
+ "▁su itable",
+ "▁suit able",
+ "pi cker",
+ "pic ker",
+ "pick er",
+ "p icker",
+ "Pro file",
+ "an dy",
+ "and y",
+ "▁qu ot",
+ "▁ quot",
+ "▁Dur ante",
+ "▁Durant e",
+ "▁Fran cia",
+ "▁Fr ancia",
+ "▁Franc ia",
+ "▁t art",
+ "▁tar t",
+ "▁ta rt",
+ "▁V enez",
+ "▁Ve nez",
+ "▁Ven ez",
+ "▁dis patch",
+ "▁disp atch",
+ "▁ dispatch",
+ "▁observ ations",
+ "▁observation s",
+ "▁ ż",
+ "In valid",
+ "▁occ urr",
+ "▁occur r",
+ "▁oc curr",
+ "т ки",
+ "Mem ento",
+ "M emento",
+ "▁S yd",
+ "▁Sy d",
+ "▁tiem po",
+ "▁st aff",
+ "▁sta ff",
+ "▁se ctions",
+ "▁section s",
+ "▁sect ions",
+ "▁ sections",
+ "▁s sh",
+ "▁ss h",
+ "▁ ssh",
+ "▁N GC",
+ "ë l",
+ "▁er re",
+ "▁err e",
+ "▁div ided",
+ "▁divide d",
+ "▁divid ed",
+ "▁With out",
+ "▁du rant",
+ "▁dur ant",
+ "▁j aar",
+ "▁ja ar",
+ "▁ −",
+ "▁sold iers",
+ "▁soldier s",
+ "ун к",
+ "la pse",
+ "lap se",
+ "laps e",
+ "▁Val ley",
+ "▁Vall ey",
+ "▁Valle y",
+ "▁( :",
+ "▁ (:",
+ "re ra",
+ "rer a",
+ "r era",
+ "▁d ével",
+ "▁dé vel",
+ "▁p éri",
+ "▁pé ri",
+ "▁calcul ation",
+ "▁calc ulation",
+ "▁ke ine",
+ "▁kein e",
+ "er tain",
+ "ert ain",
+ "erta in",
+ "▁те ле",
+ "ру д",
+ "▁c ul",
+ "▁cu l",
+ "▁ cul",
+ "▁cl oth",
+ "▁clo th",
+ "; }",
+ "▁pr zed",
+ "▁prze d",
+ "▁prz ed",
+ "Mon th",
+ "Mo nth",
+ "Mont h",
+ "Pi cker",
+ "P icker",
+ "▁S V",
+ "▁ SV",
+ "ar ian",
+ "ari an",
+ "aria n",
+ "a rian",
+ "▁Re view",
+ "▁Rev iew",
+ "▁h ang",
+ "▁ha ng",
+ "▁han g",
+ "▁ hang",
+ "▁о кт",
+ "▁ок т",
+ "▁F ront",
+ "▁Fr ont",
+ "▁Fro nt",
+ "▁ Front",
+ "ot lin",
+ "▁trans lation",
+ "▁transl ation",
+ "▁m odo",
+ "▁mod o",
+ "▁mo do",
+ "▁stat istics",
+ "▁statist ics",
+ "▁N ue",
+ "▁Nu e",
+ "▁Ни кола",
+ "NU M",
+ "N UM",
+ "▁s hips",
+ "▁sh ips",
+ "▁ship s",
+ "▁ ships",
+ "▁Re port",
+ "▁Rep ort",
+ "▁ Report",
+ "{ [",
+ "E ffect",
+ "ie ri",
+ "ier i",
+ "i eri",
+ "▁par ties",
+ "▁part ies",
+ "▁partie s",
+ "▁parti es",
+ "pl a",
+ "p la",
+ "r w",
+ "▁Work s",
+ "▁Wor ks",
+ "▁i ron",
+ "▁ir on",
+ "▁att ract",
+ "▁attr act",
+ "▁attra ct",
+ "▁c ort",
+ "▁cor t",
+ "▁co rt",
+ "n á",
+ "▁Ste ve",
+ "▁b ene",
+ "▁be ne",
+ "▁ben e",
+ "то н",
+ "т он",
+ "ícul a",
+ "Tw o",
+ "T wo",
+ "▁г лав",
+ "▁гла в",
+ "▁V ideo",
+ "▁ Video",
+ "▁power ful",
+ "au ch",
+ "auc h",
+ "a uch",
+ "ma nde",
+ "man de",
+ "m ande",
+ "äch st",
+ "ächs t",
+ "La t",
+ "L at",
+ "▁z na",
+ "▁zn a",
+ "▁ zna",
+ "▁fig ures",
+ "▁figure s",
+ "▁figur es",
+ "▁a lias",
+ "▁al ias",
+ "▁ali as",
+ "▁ alias",
+ "ne x",
+ "n ex",
+ "▁c ategories",
+ "▁categ ories",
+ "▁categor ies",
+ "▁categorie s",
+ "▁ categories",
+ "cal led",
+ "call ed",
+ "c alled",
+ "▁Sim ilar",
+ "▁g irls",
+ "▁girl s",
+ "▁gir ls",
+ "pe z",
+ "p ez",
+ "▁j oint",
+ "▁jo int",
+ "▁join t",
+ "▁ joint",
+ "ро го",
+ "р ого",
+ "ik en",
+ "ike n",
+ "i ken",
+ "чи на",
+ "чин а",
+ "an cia",
+ "anc ia",
+ "anci a",
+ "▁t ijd",
+ "▁ti jd",
+ "▁R ose",
+ "▁Ro se",
+ "▁Ros e",
+ "▁alg orithms",
+ "▁algorithm s",
+ "▁print ing",
+ "▁prin ting",
+ "ne a",
+ "n ea",
+ "▁exec uting",
+ "▁execut ing",
+ "▁l ambda",
+ "▁ lambda",
+ "▁reg ional",
+ "▁region al",
+ "▁Co pa",
+ "▁Cop a",
+ "F oo",
+ "ph ys",
+ "phy s",
+ "z m",
+ "▁L aur",
+ "▁La ur",
+ "▁Lau r",
+ "▁candid ate",
+ "▁J a",
+ "zy m",
+ "z ym",
+ "Ex ample",
+ "▁s piel",
+ "▁sp iel",
+ "▁ spiel",
+ "▁д ей",
+ "▁де й",
+ "▁ дей",
+ "ne hmen",
+ "neh men",
+ "nehm en",
+ "ke iten",
+ "keit en",
+ "▁с ент",
+ "int ent",
+ "inte nt",
+ ". (",
+ "▁пер вы",
+ "pr om",
+ "pro m",
+ "p rom",
+ "▁n at",
+ "▁na t",
+ "▁ nat",
+ "▁im agine",
+ "▁imag ine",
+ "call back",
+ "com ponents",
+ "component s",
+ "with out",
+ "▁a quest",
+ "▁aqu est",
+ "Su pport",
+ "Supp ort",
+ "▁respons ible",
+ "▁j ego",
+ "▁je go",
+ "l j",
+ "wi ll",
+ "w ill",
+ "le an",
+ "lea n",
+ "el and",
+ "ela nd",
+ "e land",
+ "olog ía",
+ "m c",
+ "Pro xy",
+ "▁o cup",
+ "▁oc up",
+ "▁на ходи",
+ "▁r ub",
+ "▁ru b",
+ "ні в",
+ "н ів",
+ "▁F all",
+ "▁Fa ll",
+ "▁Fal l",
+ "am os",
+ "amo s",
+ "a mos",
+ "▁E p",
+ "en tre",
+ "ent re",
+ "entr e",
+ "fa il",
+ "f ail",
+ "W orld",
+ "▁Ed itor",
+ "▁Edit or",
+ "▁ Editor",
+ "▁ex pos",
+ "▁exp os",
+ "▁f inds",
+ "▁find s",
+ "▁fin ds",
+ "▁C ulture",
+ "▁Cult ure",
+ "▁ Culture",
+ "LE ASE",
+ "▁m ovie",
+ "▁mov ie",
+ "▁mo vie",
+ "▁ movie",
+ "< =",
+ "omet ric",
+ "o metric",
+ "el ing",
+ "eli ng",
+ "elin g",
+ "e ling",
+ "numer able",
+ "ou rd",
+ "our d",
+ "o urd",
+ "▁S ea",
+ "▁Se a",
+ "▁b ild",
+ "▁bi ld",
+ "▁bil d",
+ "▁ bild",
+ "▁о ста",
+ "▁ос та",
+ "▁ост а",
+ "bl o",
+ "b lo",
+ "▁l ose",
+ "▁lo se",
+ "▁los e",
+ "▁ lose",
+ "at eurs",
+ "ate urs",
+ "ateur s",
+ "ou red",
+ "our ed",
+ "oure d",
+ "o ured",
+ "▁B att",
+ "▁Ba tt",
+ "▁Bat t",
+ "() ;\r",
+ "(); \r",
+ "( );\r",
+ "▁p oz",
+ "▁po z",
+ "pos ts",
+ "post s",
+ "pe nd",
+ "pen d",
+ "p end",
+ "cer tain",
+ "cert ain",
+ "c ertain",
+ "ни ком",
+ "ник ом",
+ "J ust",
+ "web kit",
+ "dem ás",
+ "~~ ~~",
+ "▁indic ates",
+ "▁indicate s",
+ "▁p ark",
+ "▁par k",
+ "▁ park",
+ "ri que",
+ "r ique",
+ "vo d",
+ "v od",
+ "▁Ch amp",
+ "▁Cham p",
+ "▁Cha mp",
+ "ft ware",
+ "OP T",
+ "O PT",
+ "dj ango",
+ "d jango",
+ "re lease",
+ "▁ È",
+ "S R",
+ "▁polit ician",
+ "▁r oi",
+ "▁ro i",
+ "at uren",
+ "atur en",
+ "ature n",
+ "atu ren",
+ "▁Deutsch e",
+ "ta gon",
+ "tag on",
+ "t agon",
+ "▁M ov",
+ "▁Mo v",
+ "ob ierno",
+ "obi erno",
+ "▁da ß",
+ "ut her",
+ "uth er",
+ "u ther",
+ "in di",
+ "ind i",
+ "▁Wik ipedia",
+ "▁Wikip edia",
+ "▁Wikiped ia",
+ "▁a nos",
+ "▁an os",
+ "▁ano s",
+ "▁ anos",
+ "▁ob serve",
+ "▁obser ve",
+ "▁observ e",
+ "▁obs erve",
+ "el ly",
+ "ell y",
+ "▁rail way",
+ "at on",
+ "ato n",
+ "a ton",
+ "▁e num",
+ "▁en um",
+ "▁ enum",
+ "hu s",
+ "h us",
+ "▁in hab",
+ "P si",
+ "oir e",
+ "oi re",
+ "o ire",
+ "▁Х о",
+ "▁S pace",
+ "▁Sp ace",
+ "▁ Space",
+ "▁Ар хи",
+ "▁an terior",
+ "▁ante rior",
+ "▁ Ł",
+ "is ons",
+ "ison s",
+ "iso ns",
+ "I l",
+ "▁am éric",
+ "la ps",
+ "lap s",
+ "l aps",
+ "▁B BC",
+ "▁BB C",
+ "QUE ST",
+ "Con stra",
+ "Const ra",
+ "Cons tra",
+ "mon t",
+ "mo nt",
+ "m ont",
+ "ä ft",
+ "▁ä ven",
+ "ub ern",
+ "ube rn",
+ "uber n",
+ "u bern",
+ "< !--",
+ "▁c oding",
+ "▁co ding",
+ "▁cod ing",
+ "the ory",
+ "at hed",
+ "ath ed",
+ "▁Ar be",
+ "▁ш и",
+ "▁ ши",
+ "for Each",
+ "om orphism",
+ "omorph ism",
+ "det ails",
+ "detail s",
+ "ach sen",
+ "in tegr",
+ "int egr",
+ "inte gr",
+ "V or",
+ "Un known",
+ "ace ae",
+ "a ceae",
+ "in ue",
+ "inu e",
+ "es ome",
+ "eso me",
+ "e some",
+ "▁F ir",
+ "ch ain",
+ "cha in",
+ "▁extrem ely",
+ "▁extreme ly",
+ "mult icol",
+ "multi col",
+ "▁Sw ift",
+ "▁address es",
+ "▁addr esses",
+ "hs pace",
+ "h space",
+ "▁Ro ger",
+ "▁Rog er",
+ "▁d essen",
+ "▁des sen",
+ "▁dess en",
+ "▁con sequ",
+ "▁cons equ",
+ "▁conse qu",
+ "ual mente",
+ "▁Pre mier",
+ "▁Prem ier",
+ "▁Re cord",
+ "▁Rec ord",
+ "▁ Record",
+ "▁B ron",
+ "▁Br on",
+ "▁Bro n",
+ "ki r",
+ "k ir",
+ "se x",
+ "s ex",
+ "in tern",
+ "int ern",
+ "inter n",
+ "inte rn",
+ "▁benef it",
+ "▁bene fit",
+ "um en",
+ "ume n",
+ "u men",
+ "▁be coming",
+ "▁bec oming",
+ "▁becom ing",
+ "▁l ig",
+ "▁li g",
+ "▁ lig",
+ "▁pop ula",
+ "▁popul a",
+ "os c",
+ "o sc",
+ "▁c iv",
+ "▁ci v",
+ "▁great est",
+ "▁pro ces",
+ "▁proc es",
+ "] *",
+ "▁ме сто",
+ "▁мест о",
+ "▁' $",
+ "▁ '$",
+ "he ll",
+ "hel l",
+ "h ell",
+ "(\" \\",
+ "( \"\\",
+ "▁n ine",
+ "▁ni ne",
+ "▁nin e",
+ "▁F ac",
+ "▁Fa c",
+ "ul pt",
+ "ulp t",
+ "jo urs",
+ "jou rs",
+ "j ours",
+ "▁C opy",
+ "▁Co py",
+ "▁Cop y",
+ "▁ Copy",
+ "▁activ ities",
+ "▁Dem ocr",
+ "▁Demo cr",
+ "E s",
+ "Su ccess",
+ "▁E sta",
+ "▁Est a",
+ "▁Es ta",
+ "it ul",
+ "itu l",
+ "is ti",
+ "ist i",
+ "▁B ed",
+ "▁Be d",
+ "ja s",
+ "j as",
+ "▁т ем",
+ "▁те м",
+ "▁ тем",
+ "▁H ung",
+ "▁Hu ng",
+ "▁Hun g",
+ "G ame",
+ "▁he av",
+ "onn ées",
+ "▁branch es",
+ "▁bran ches",
+ "bo rg",
+ "bor g",
+ "b org",
+ "▁v l",
+ "▁ vl",
+ "▁slow ly",
+ "F a",
+ "Go ogle",
+ "em i",
+ "e mi",
+ "▁circumst ances",
+ "▁' %",
+ "▁U nd",
+ "▁Un d",
+ "▁ Und",
+ "▁Vict oria",
+ "▁Victor ia",
+ "▁T yp",
+ "▁Ty p",
+ "▁ Typ",
+ "rupt ed",
+ "rup ted",
+ "▁rel ativ",
+ "▁s lo",
+ "▁sl o",
+ "▁p adre",
+ "▁pad re",
+ "▁d aily",
+ "▁da ily",
+ "▁dai ly",
+ "▁or th",
+ "▁ort h",
+ "▁ orth",
+ "чни й",
+ "ч ний",
+ "▁fran zös",
+ "▁t eil",
+ "▁te il",
+ "▁ teil",
+ "▁Se curity",
+ "▁Sec urity",
+ "▁ Security",
+ "or don",
+ "ord on",
+ "ordo n",
+ "▁s weet",
+ "▁swe et",
+ "SI ZE",
+ "▁C el",
+ "▁Ce l",
+ "èt res",
+ "è tres",
+ "om mes",
+ "omm es",
+ "▁с і",
+ "▁ сі",
+ "▁effort s",
+ "ą z",
+ "▁oh ne",
+ "▁South ern",
+ "▁Sou thern",
+ "▁approxim ately",
+ "▁approximate ly",
+ "це н",
+ "ц ен",
+ "(' #",
+ "▁s aving",
+ "▁sa ving",
+ "▁sav ing",
+ "nb sp",
+ "▁trans late",
+ "▁transl ate",
+ "▁ translate",
+ "▁Î n",
+ "mem ber",
+ "m ember",
+ "▁l aws",
+ "▁la ws",
+ "▁law s",
+ "▁ж ен",
+ "▁же н",
+ "▁ жен",
+ "▁си сте",
+ "t c",
+ "> \\",
+ "el te",
+ "elt e",
+ "▁e hem",
+ "▁con trad",
+ "▁cont rad",
+ "▁contr ad",
+ "▁contra d",
+ "▁ру с",
+ "▁р ус",
+ "▁ рус",
+ "ь я",
+ "▁M iddle",
+ "▁ Middle",
+ "qu ip",
+ "qui p",
+ "▁c hez",
+ "▁ch ez",
+ "▁che z",
+ "▁ chez",
+ "Field s",
+ "▁per mit",
+ "▁perm it",
+ "ik el",
+ "ike l",
+ "i kel",
+ "▁w ir",
+ "▁t rial",
+ "▁tr ial",
+ "▁tri al",
+ "▁ver schied",
+ "▁versch ied",
+ "▁ф ев",
+ "▁фе в",
+ "▁m ale",
+ "▁ma le",
+ "▁mal e",
+ "▁ male",
+ "▁я зы",
+ "▁ny el",
+ "ak ter",
+ "akt er",
+ "akte r",
+ "a kter",
+ "▁den omin",
+ "cept or",
+ "cep tor",
+ "▁W at",
+ "▁Wa t",
+ "▁f ino",
+ "▁fin o",
+ "▁fi no",
+ "▁XV III",
+ "▁XVI II",
+ "▁XVII I",
+ "ry ption",
+ "rypt ion",
+ "de sc",
+ "des c",
+ "d esc",
+ "ap a",
+ "a pa",
+ "ле на",
+ "лен а",
+ "л ена",
+ "▁k ol",
+ "▁ko l",
+ "▁ kol",
+ "▁ Є",
+ "▁dep endent",
+ "▁depend ent",
+ "▁ dependent",
+ "▁C ra",
+ "▁Cr a",
+ "▁st orm",
+ "▁stor m",
+ "▁sto rm",
+ "▁Г ер",
+ "▁Ге р",
+ "▁p ipe",
+ "▁pi pe",
+ "▁pip e",
+ "▁ pipe",
+ "▁att ended",
+ "▁attend ed",
+ "▁v ita",
+ "▁vi ta",
+ "▁vit a",
+ "uz ione",
+ "u zione",
+ "cz as",
+ "cza s",
+ "c zas",
+ "on da",
+ "ond a",
+ "▁b old",
+ "▁bo ld",
+ "▁bol d",
+ "▁ bold",
+ "Column s",
+ "ic ió",
+ "ici ó",
+ "i ció",
+ "▁c zę",
+ "▁cz ę",
+ "▁из вест",
+ "▁Cl oud",
+ "▁Clo ud",
+ "▁ Cloud",
+ "▁w arm",
+ "▁war m",
+ "▁wa rm",
+ "▁с ы",
+ "▁ сы",
+ "▁с те",
+ "▁ст е",
+ "▁ сте",
+ "▁produ cer",
+ "▁produce r",
+ "▁Lud wig",
+ "▁Nor thern",
+ "▁North ern",
+ "ł ą",
+ "NS String",
+ "▁H ad",
+ "▁Ha d",
+ "▁И ван",
+ "▁E g",
+ "▁I mp",
+ "▁Im p",
+ "▁ Imp",
+ "ш і",
+ "▁A uch",
+ "▁Au ch",
+ "то к",
+ "т ок",
+ "▁H it",
+ "▁Hi t",
+ "▁qu ien",
+ "▁qui en",
+ "▁de partment",
+ "▁depart ment",
+ "▁erh ielt",
+ "▁u i",
+ "▁ ui",
+ "▁S pr",
+ "▁Sp r",
+ "се р",
+ "с ер",
+ "ou rt",
+ "our t",
+ "o urt",
+ "▁Ste phen",
+ "▁Step hen",
+ "▁Steph en",
+ "te am",
+ "▁z ip",
+ "▁ zip",
+ "▁B ang",
+ "▁Ba ng",
+ "▁Ban g",
+ "▁grow th",
+ "▁j am",
+ "▁ja m",
+ "▁K ais",
+ "▁Ka is",
+ "b matrix",
+ "▁As ia",
+ "▁rég ion",
+ "= /",
+ "▁Pac ific",
+ "▁author ity",
+ "▁# [",
+ "та ми",
+ "там и",
+ "▁every one",
+ "▁att end",
+ "▁atte nd",
+ "▁ attend",
+ "▁tim estamp",
+ "▁ timestamp",
+ "▁t ries",
+ "▁tr ies",
+ "▁tri es",
+ "▁f f",
+ "▁ ff",
+ "ше й",
+ "ш ей",
+ "▁develop ing",
+ "ol t",
+ "o lt",
+ "up s",
+ "u ps",
+ "▁moment o",
+ "▁mom ento",
+ "▁S ain",
+ "▁Sa in",
+ "Te rm",
+ "T erm",
+ "▁c elle",
+ "▁ce lle",
+ "▁cell e",
+ "▁cel le",
+ "G R",
+ "Mo use",
+ "M ouse",
+ "▁челов ек",
+ "▁челове к",
+ "▁Col lection",
+ "▁Coll ection",
+ "▁Collect ion",
+ "▁ Collection",
+ "ât re",
+ "â tre",
+ "▁W rite",
+ "▁Writ e",
+ "▁ Write",
+ "▁P om",
+ "▁Po m",
+ "[ -",
+ "Ca m",
+ "C am",
+ "▁loc ations",
+ "▁location s",
+ "▁J son",
+ "▁ Json",
+ "el led",
+ "ell ed",
+ "elle d",
+ "select or",
+ "sel ector",
+ "re peat",
+ "ct ors",
+ "ctor s",
+ "ot te",
+ "ott e",
+ "o tte",
+ "ви зи",
+ "änd e",
+ "än de",
+ "ä nde",
+ "▁ach ieved",
+ "▁achieve d",
+ "▁achiev ed",
+ "▁main ly",
+ "____ ____",
+ "! )",
+ "▁явля ется",
+ "▁c ities",
+ "▁ci ties",
+ "▁cit ies",
+ "sing le",
+ "sin gle",
+ "г ре",
+ "▁P ak",
+ "▁Pa k",
+ "▁allow ing",
+ "▁allo wing",
+ "fer red",
+ "▁а пре",
+ "хо дя",
+ "ход я",
+ "▁brow sers",
+ "▁browser s",
+ "▁es crit",
+ "▁esc rit",
+ "▁escri t",
+ "▁mount ain",
+ "▁network s",
+ "▁net works",
+ "ki nd",
+ "kin d",
+ "k ind",
+ "li ver",
+ "live r",
+ "liv er",
+ "l iver",
+ "▁cl osing",
+ "▁clos ing",
+ "▁clo sing",
+ "▁sk ip",
+ "▁ski p",
+ "▁ skip",
+ "ú t",
+ "▁d uration",
+ "▁dur ation",
+ "▁ duration",
+ "ét ait",
+ "éta it",
+ "é tait",
+ "▁s cr",
+ "▁sc r",
+ "▁ scr",
+ "B B",
+ "ór ia",
+ "ó ria",
+ "▁K ultur",
+ "▁Kult ur",
+ "▁output s",
+ "multi column",
+ "multicol umn",
+ "▁bel ongs",
+ "▁belong s",
+ "fe ature",
+ "uc ky",
+ "uck y",
+ "▁j uli",
+ "▁ju li",
+ "▁jul i",
+ "▁рай она",
+ "▁райо на",
+ "▁район а",
+ "з во",
+ "fact ory",
+ "factor y",
+ "f actory",
+ "Fun c",
+ "F unc",
+ "▁ut ter",
+ "▁ utter",
+ "▁TO DO",
+ "▁o bt",
+ "▁ob t",
+ "ateg ories",
+ "ategor ies",
+ "▁com bine",
+ "▁comb ine",
+ "▁combin e",
+ "▁W all",
+ "▁Wal l",
+ "▁Wa ll",
+ "▁under lying",
+ "ar ono",
+ "aron o",
+ "aro no",
+ "▁P rote",
+ "▁Pro te",
+ "▁Pr ote",
+ "c ów",
+ "st an",
+ "sta n",
+ "s tan",
+ "▁G ew",
+ "▁Ge w",
+ "▁opt imal",
+ "▁optim al",
+ "▁Archiv link",
+ "▁S cript",
+ "▁ Script",
+ "▁destroy ed",
+ "х е",
+ "▁Fire fox",
+ "▁s ole",
+ "▁so le",
+ "▁sol e",
+ "▁ sole",
+ "La yer",
+ "L ayer",
+ "т ку",
+ "▁st ores",
+ "▁stor es",
+ "▁store s",
+ "▁sto res",
+ "▁dis plays",
+ "▁display s",
+ "is hing",
+ "ish ing",
+ "ishi ng",
+ "▁о ст",
+ "▁ос т",
+ "▁inst ant",
+ "▁el ő",
+ "▁habit antes",
+ "▁Ein wo",
+ "▁a li",
+ "▁al i",
+ "▁ ali",
+ "▁ER ROR",
+ "▁ERR OR",
+ "▁ ERROR",
+ "▁a head",
+ "▁ah ead",
+ "▁go als",
+ "▁goal s",
+ "▁m ár",
+ "▁má r",
+ "▁s ą",
+ "▁m art",
+ "▁ma rt",
+ "▁mar t",
+ "▁ mart",
+ "мини стра",
+ "F r",
+ "▁V illa",
+ "▁Vill a",
+ "▁Vi lla",
+ "▁Vil la",
+ "▁M arc",
+ "▁Mar c",
+ "▁Ma rc",
+ "ro py",
+ "rop y",
+ "r opy",
+ "ag ram",
+ "agr am",
+ "a gram",
+ "ha pe",
+ "h ape",
+ "ме й",
+ "м ей",
+ "▁A L",
+ "▁ AL",
+ "▁conne xes",
+ "▁En tre",
+ "▁Ent re",
+ "St ep",
+ "Ste p",
+ "лі в",
+ "л ів",
+ "▁De ath",
+ "▁r ise",
+ "▁ris e",
+ "▁ri se",
+ "▁f os",
+ "▁fo s",
+ "▁l ev",
+ "▁le v",
+ "▁ lev",
+ "ga be",
+ "g abe",
+ "▁b roke",
+ "▁br oke",
+ "▁bro ke",
+ "product s",
+ "▁m edi",
+ "▁me di",
+ "▁med i",
+ "▁ medi",
+ "▁dis pon",
+ "▁disp on",
+ "Pack age",
+ "P ackage",
+ "Image View",
+ "▁N ag",
+ "▁Na g",
+ "uj ą",
+ "u ją",
+ "W ord",
+ "▁k ole",
+ "▁ko le",
+ "▁kol e",
+ "ße r",
+ "ß er",
+ ")` .",
+ ") `.",
+ "▁r ol",
+ "▁ro l",
+ "▁ rol",
+ "▁ í",
+ "те й",
+ "т ей",
+ "Pro gress",
+ "be an",
+ "▁s empre",
+ "▁sem pre",
+ "State ment",
+ "Stat ement",
+ "UP DATE",
+ "▁mond iale",
+ "▁w rapper",
+ "▁wr apper",
+ "▁wra pper",
+ "▁wrap per",
+ "▁ wrapper",
+ "▁C hart",
+ "▁Ch art",
+ "▁Char t",
+ "▁Cha rt",
+ "▁ Chart",
+ "▁on Click",
+ "че ння",
+ "чен ня",
+ "LO G",
+ "some thing",
+ "som ething",
+ "s omething",
+ "▁IN SERT",
+ "▁ INSERT",
+ "ще ния",
+ "ue t",
+ "u et",
+ "wer p",
+ "we rp",
+ "ro und",
+ "rou nd",
+ "r ound",
+ "ic hen",
+ "ich en",
+ "iche n",
+ "i chen",
+ "▁X VI",
+ "▁XV I",
+ "з ни",
+ "▁ave va",
+ "▁St ore",
+ "▁Sto re",
+ "▁ Store",
+ "▁x s",
+ "▁ xs",
+ "ra cht",
+ "rac ht",
+ "rach t",
+ "r acht",
+ "sc ar",
+ "s car",
+ "▁op era",
+ "▁oper a",
+ "▁ opera",
+ "▁deg rees",
+ "▁degree s",
+ "▁cit iz",
+ "äs ident",
+ "▁class ical",
+ "▁classic al",
+ "▁Jer sey",
+ "▁er sch",
+ "▁ers ch",
+ "▁ ersch",
+ "▁treat ment",
+ "▁насе ље",
+ "н ня",
+ "▁bo ost",
+ "▁ boost",
+ "am ount",
+ "amo unt",
+ "a mount",
+ "▁со зда",
+ "ér ieur",
+ "érie ur",
+ "éri eur",
+ "▁t elling",
+ "▁tell ing",
+ "▁tel ling",
+ "Ha s",
+ "H as",
+ "▁in iti",
+ "▁init i",
+ "▁П и",
+ "ev al",
+ "e val",
+ "▁M atch",
+ "▁Mat ch",
+ "▁ Match",
+ "▁cor re",
+ "▁corr e",
+ "Point er",
+ "Po inter",
+ "▁pass es",
+ "▁passe s",
+ "comp any",
+ "▁а н",
+ "▁ ан",
+ "ach es",
+ "ac hes",
+ "ache s",
+ "a ches",
+ "▁sig lo",
+ "не м",
+ "н ем",
+ "▁ex change",
+ "▁ exchange",
+ "ci to",
+ "cit o",
+ "c ito",
+ "▁B ab",
+ "▁Ba b",
+ "Do c",
+ "D oc",
+ "ze ś",
+ "▁на род",
+ "▁ народ",
+ "▁conf lict",
+ "▁conflic t",
+ "▁confl ict",
+ "▁nov ember",
+ "ea u",
+ "e au",
+ "ö v",
+ "▁H ub",
+ "▁Hu b",
+ "▁ Hub",
+ "▁p oco",
+ "▁po co",
+ "▁poc o",
+ "en sa",
+ "ens a",
+ "sch ließ",
+ "lass e",
+ "las se",
+ "l asse",
+ "data s",
+ "dat as",
+ "▁с ти",
+ "▁ст и",
+ "▁ сти",
+ "un ivers",
+ "uni vers",
+ "ek s",
+ "e ks",
+ "▁C ho",
+ "▁Ch o",
+ "▁ Cho",
+ "▁c ô",
+ "▁( .",
+ "▁ (.",
+ "ew nę",
+ "▁Ch ief",
+ "▁Chi ef",
+ "▁ch ef",
+ "▁che f",
+ "▁у прав",
+ "ul i",
+ "u li",
+ "▁' ''",
+ "▁'' '",
+ "▁ '''",
+ "nap shot",
+ "▁re lac",
+ "▁rel ac",
+ "▁rela c",
+ "ég e",
+ "é ge",
+ "w t",
+ "we nd",
+ "wen d",
+ "w end",
+ "os ing",
+ "osi ng",
+ "o sing",
+ "▁ha cer",
+ "▁hace r",
+ "▁ф ран",
+ "au tres",
+ "aut res",
+ "autre s",
+ "▁f ils",
+ "▁fil s",
+ "▁fi ls",
+ "er ed",
+ "ere d",
+ "e red",
+ "▁По силання",
+ "▁th erm",
+ "▁the rm",
+ "▁ther m",
+ "ер жа",
+ "su ch",
+ "s uch",
+ "▁i hren",
+ "▁ih ren",
+ "▁ihr en",
+ "▁ihre n",
+ "▁en contr",
+ "▁l ots",
+ "▁lo ts",
+ "▁lot s",
+ "lo go",
+ "log o",
+ "l ogo",
+ "▁W i",
+ "/ (",
+ "ш ње",
+ "DA TA",
+ "DAT A",
+ "D ATA",
+ "▁P layer",
+ "▁Pl ayer",
+ "▁Play er",
+ "▁Pla yer",
+ "▁ Player",
+ "▁Leip zig",
+ "▁rel atives",
+ "▁relative s",
+ "▁relativ es",
+ "ре в",
+ "р ев",
+ "▁new sp",
+ "▁news p",
+ "? ,",
+ "▁St utt",
+ "▁Stu tt",
+ "▁d ual",
+ "▁du al",
+ "▁compan ies",
+ "▁z am",
+ "▁za m",
+ "put ation",
+ "▁in equality",
+ "▁t rem",
+ "▁tr em",
+ "▁tre m",
+ "hi ps",
+ "hip s",
+ "h ips",
+ "an ch",
+ "anc h",
+ "▁ Ż",
+ "бур г",
+ "▁cop ies",
+ "da sh",
+ "das h",
+ "d ash",
+ "во р",
+ "в ор",
+ "spiel er",
+ "s pieler",
+ "▁Re volution",
+ "▁Revol ution",
+ "es ty",
+ "est y",
+ "e sty",
+ "▁j unto",
+ "▁jun to",
+ "▁junt o",
+ "▁Ind eed",
+ "ok al",
+ "oka l",
+ "o kal",
+ "ctr ine",
+ "▁F ord",
+ "▁For d",
+ "▁Fo rd",
+ "▁C REATE",
+ "▁ CREATE",
+ "▁w alls",
+ "▁wall s",
+ "▁wal ls",
+ "▁a ute",
+ "▁au te",
+ "▁aut e",
+ "S U",
+ "wh y",
+ "w hy",
+ "plement ation",
+ "ro ut",
+ "rou t",
+ "r out",
+ "Mat rix",
+ "▁s ad",
+ "▁sa d",
+ "ан а",
+ "а на",
+ "▁P ic",
+ "▁Pi c",
+ ". “",
+ "▁A C",
+ "▁ AC",
+ "▁F est",
+ "▁Fe st",
+ "▁des ktop",
+ "▁ desktop",
+ "▁P ay",
+ "▁Pa y",
+ "▁ Pay",
+ "ome times",
+ "omet imes",
+ "▁T ak",
+ "▁Ta k",
+ "ра б",
+ "▁S ever",
+ "▁Se ver",
+ "▁nor thern",
+ "▁north ern",
+ "an ter",
+ "ant er",
+ "ante r",
+ "▁Mod ern",
+ "▁Mo dern",
+ "▁Mode rn",
+ "wa l",
+ "w al",
+ "{ \r",
+ "on line",
+ "ö k",
+ "▁brit ann",
+ "$ _",
+ "▁j ar",
+ "▁ja r",
+ "▁ jar",
+ "T L",
+ "xx xx",
+ "xxx x",
+ "x xxx",
+ "mer ge",
+ "▁N amen",
+ "▁Name n",
+ "▁Na men",
+ "▁Nam en",
+ "▁K EY",
+ "▁ KEY",
+ "▁re fers",
+ "▁ref ers",
+ "▁refer s",
+ "▁h in",
+ "▁hi n",
+ "▁ hin",
+ "▁Vol ks",
+ "▁Volk s",
+ "st eller",
+ "stell er",
+ "stelle r",
+ "vi ation",
+ "via tion",
+ "v iation",
+ "on io",
+ "oni o",
+ "o nio",
+ "ight er",
+ "igh ter",
+ "Com pat",
+ "Comp at",
+ "▁C E",
+ "▁ CE",
+ "▁p ró",
+ "▁pr ó",
+ "▁encuent ra",
+ "the orem",
+ "▁pub li",
+ "▁Develop ment",
+ "н д",
+ "▁r os",
+ "▁ro s",
+ "▁ ros",
+ "▁s hr",
+ "▁sh r",
+ "se au",
+ "s eau",
+ "▁gener ating",
+ "▁gene rating",
+ "▁difficult y",
+ "▁Ex press",
+ "▁Exp ress",
+ "▁ Express",
+ "Al ignment",
+ "de utsch",
+ "▁Вла ди",
+ "▁sugg ests",
+ "▁suggest s",
+ "▁Famil y",
+ "▁Fam ily",
+ "▁ Family",
+ "bb i",
+ "b bi",
+ "]) .",
+ "] ).",
+ "st aw",
+ "sta w",
+ "▁pres idente",
+ "▁president e",
+ "▁presiden te",
+ "▁st esso",
+ "in x",
+ "i nx",
+ "set up",
+ "▁con form",
+ "▁conf orm",
+ "▁f ro",
+ "▁fr o",
+ "=\\ \"",
+ "= \\\"",
+ "▁d å",
+ "ic iones",
+ "ici ones",
+ "icio nes",
+ "icion es",
+ "i ciones",
+ "▁e volution",
+ "▁evol ution",
+ "pr ote",
+ "pro te",
+ "p rote",
+ "▁pr ints",
+ "▁print s",
+ "▁prin ts",
+ "▁P ont",
+ "▁Po nt",
+ "▁Pon t",
+ "▁conf usion",
+ "▁ Й",
+ "▁d ello",
+ "▁del lo",
+ "▁dell o",
+ "▁man if",
+ "Def inition",
+ "ár a",
+ "á ra",
+ "ma ls",
+ "mal s",
+ "m als",
+ "▁s ale",
+ "▁sa le",
+ "▁sal e",
+ "▁drop down",
+ "▁ dropdown",
+ "Ch ain",
+ "Amer ican",
+ "America n",
+ "▁m k",
+ "▁ mk",
+ "▁B ez",
+ "▁Be z",
+ "▁F ue",
+ "▁Fu e",
+ "▁N E",
+ "▁ NE",
+ "гра фи",
+ "граф и",
+ "doc ker",
+ "do cker",
+ "d ocker",
+ "▁^ {",
+ "▁ ^{",
+ "As sert",
+ "Ass ert",
+ "▁hor izontal",
+ "▁horizon tal",
+ "▁ horizontal",
+ "(@ \"",
+ "( @\"",
+ "▁д ву",
+ "pro xy",
+ "U ri",
+ "gen cy",
+ "g ency",
+ "▁\" [",
+ "▁Q t",
+ "▁ Qt",
+ "▁N ames",
+ "▁Name s",
+ "▁Na mes",
+ "▁Nam es",
+ "▁ Names",
+ "▁evalu ate",
+ "▁eval uate",
+ "! /",
+ "▁ein ges",
+ "▁eing es",
+ "▁syn th",
+ "▁sy nth",
+ "▁You Tube",
+ "▁turn ing",
+ "▁tur ning",
+ "▁E ric",
+ "▁Er ic",
+ "▁б ли",
+ "▁ бли",
+ "▁k lub",
+ "▁kl ub",
+ "pl orer",
+ "▁s ports",
+ "▁sport s",
+ "▁s ia",
+ "▁si a",
+ "о ш",
+ "▁d ai",
+ "▁da i",
+ "▁e urope",
+ "▁europ e",
+ "▁euro pe",
+ "ic ians",
+ "ici ans",
+ "ician s",
+ "icia ns",
+ "ings områ",
+ "▁d re",
+ "▁dr e",
+ "▁work around",
+ "▁s uit",
+ "▁su it",
+ "▁ suit",
+ "amb igu",
+ "▁quant ity",
+ "▁ quantity",
+ "▁seg undo",
+ "Sym bol",
+ "S ymbol",
+ "▁m oral",
+ "▁mo ral",
+ "▁mor al",
+ "Ch art",
+ "Char t",
+ "C hart",
+ "▁da mit",
+ "▁dam it",
+ "▁attempt s",
+ "▁d onn",
+ "▁do nn",
+ "▁don n",
+ "jo s",
+ "j os",
+ "▁e re",
+ "▁er e",
+ "▁ ere",
+ "▁hom me",
+ "▁ homme",
+ "si mp",
+ "sim p",
+ "s imp",
+ "rypt ed",
+ "▁act s",
+ "▁ac ts",
+ "inner HTML",
+ "▁tourn ament",
+ "▁s ky",
+ "▁sk y",
+ "▁ sky",
+ "Time r",
+ "Tim er",
+ "T imer",
+ "▁mill ions",
+ "▁million s",
+ "^ +",
+ "ag ent",
+ "age nt",
+ "agen t",
+ "a gent",
+ "') );",
+ "')) ;",
+ "' ));",
+ "▁o st",
+ "▁os t",
+ "▁ ost",
+ "▁g la",
+ "▁gl a",
+ "▁по мо",
+ "▁f ün",
+ "ст вом",
+ "ств ом",
+ "ство м",
+ "ewnę trz",
+ "▁Mé xico",
+ "▁l ub",
+ "▁lu b",
+ "▁ lub",
+ "▁É d",
+ "if ik",
+ "ifi k",
+ "i fik",
+ "че ский",
+ "▁im mer",
+ "▁imm er",
+ "▁ immer",
+ "en sen",
+ "ens en",
+ "ense n",
+ "an ny",
+ "ann y",
+ "in line",
+ "▁g over",
+ "▁go ver",
+ "au c",
+ "a uc",
+ "▁re pre",
+ "▁rep re",
+ "▁repr e",
+ "▁histor ia",
+ "▁hist oria",
+ "A g",
+ "▁p lt",
+ "▁pl t",
+ "▁Pr inci",
+ "▁Prin ci",
+ "im eter",
+ "ime ter",
+ "imet er",
+ "i meter",
+ "ő s",
+ "š e",
+ "▁U E",
+ "▁ UE",
+ "Equ als",
+ "Equal s",
+ "Eq uals",
+ "Dis patch",
+ "le gen",
+ "leg en",
+ "lege n",
+ "l egen",
+ "ла зи",
+ "чно й",
+ "ч ной",
+ "▁st ell",
+ "▁ste ll",
+ "▁ stell",
+ "ń st",
+ "▁c ri",
+ "▁cr i",
+ "▁ cri",
+ "▁In dep",
+ "▁Ind ep",
+ "è de",
+ "}\\ )",
+ "} \\)",
+ "▁w yst",
+ "▁wy st",
+ "▁wys t",
+ "▁fig ured",
+ "▁figure d",
+ "▁figur ed",
+ "AT CH",
+ "éb en",
+ "é ben",
+ "la cht",
+ "lac ht",
+ "lach t",
+ "l acht",
+ "▁succeed ed",
+ "gr y",
+ "g ry",
+ "▁p ret",
+ "▁pr et",
+ "▁pre t",
+ "▁ pret",
+ "▁S af",
+ "▁Sa f",
+ "▁\" );",
+ "▁\") ;",
+ "▁ \");",
+ "e h",
+ "▁offic iel",
+ "▁offici el",
+ "краї н",
+ "wi nd",
+ "win d",
+ "w ind",
+ "▁sc atter",
+ "▁F ox",
+ "▁Fo x",
+ "ic ious",
+ "ici ous",
+ "icio us",
+ "i cious",
+ "Man y",
+ "Ma ny",
+ "M any",
+ "up er",
+ "u per",
+ "▁Con vert",
+ "▁ Convert",
+ "st erd",
+ "ste rd",
+ "ster d",
+ "▁St ein",
+ "▁Ste in",
+ "▁О т",
+ "}^ {(",
+ "}^{ (",
+ "} ^{(",
+ "bet ween",
+ "hi re",
+ "h ire",
+ "▁on Create",
+ "▁ onCreate",
+ "; ",
+ "b ably",
+ "S Y",
+ "mo t",
+ "m ot",
+ "▁D ire",
+ "▁Di re",
+ "▁Dir e",
+ "itect ure",
+ "то й",
+ "▁co ordinate",
+ "▁coordin ate",
+ "▁coord inate",
+ "▁ coordinate",
+ "(\" #",
+ "▁s üd",
+ "O B",
+ "▁m orte",
+ "▁mor te",
+ "▁mort e",
+ "▁we ather",
+ "▁h ely",
+ "▁he ly",
+ "▁hel y",
+ "▁ hely",
+ "▁priv ile",
+ "RE LEASE",
+ "at el",
+ "ate l",
+ "a tel",
+ "▁recogn ized",
+ "▁recognize d",
+ "▁Th ough",
+ "сси й",
+ "mem ory",
+ "▁comp ilation",
+ "bit s",
+ "bi ts",
+ "b its",
+ "▁w ed",
+ "▁we d",
+ "▁ wed",
+ "}} _{",
+ "}}_ {",
+ "} }_{",
+ "▁G UI",
+ "п ня",
+ "▁sou thern",
+ "▁south ern",
+ "▁h ay",
+ "▁ha y",
+ "ov ić",
+ "ovi ć",
+ "o vić",
+ "la uf",
+ "lau f",
+ "l auf",
+ "▁E L",
+ "▁ EL",
+ "▁F ull",
+ "▁Fu ll",
+ "▁Ful l",
+ "▁ Full",
+ "▁Ham burg",
+ "▁Hamb urg",
+ "▁M ittel",
+ "▁Mit tel",
+ "▁Mitte l",
+ "▁Mitt el",
+ "D U",
+ "appro x",
+ "H S",
+ "▁про це",
+ "▁mag azine",
+ "▁M ig",
+ "▁Mi g",
+ "▁click ing",
+ "en tr",
+ "ent r",
+ "▁au tre",
+ "▁aut re",
+ "▁ autre",
+ "▁t é",
+ "▁ té",
+ "▁h á",
+ "▁ há",
+ "ст ы",
+ "с ты",
+ "▁M A",
+ "▁ MA",
+ "ap py",
+ "app y",
+ "a ppy",
+ "st ví",
+ "▁se lon",
+ "▁sel on",
+ "▁g ek",
+ "▁ge k",
+ "▁S l",
+ "▁ Sl",
+ "fr astr",
+ "fra str",
+ "Li b",
+ "L ib",
+ "▁Д у",
+ "▁f acing",
+ "▁fa cing",
+ "▁fac ing",
+ "▁с тар",
+ "▁ст ар",
+ "▁ста р",
+ "▁D utch",
+ "at ar",
+ "ata r",
+ "a tar",
+ "▁ke eps",
+ "▁keep s",
+ "▁Pat rick",
+ "▁Patri ck",
+ "il io",
+ "ili o",
+ "i lio",
+ "▁v ig",
+ "▁vi g",
+ "тв а",
+ "т ва",
+ "▁Feder al",
+ "▁Fed eral",
+ "▁par agraph",
+ "▁para graph",
+ "▁ paragraph",
+ "▁inter action",
+ "▁inte raction",
+ "▁interact ion",
+ "▁occ as",
+ "▁oc cas",
+ "▁I ran",
+ "▁Ir an",
+ "▁Ira n",
+ "▁machine s",
+ "▁mach ines",
+ "(( )",
+ "( ()",
+ "ur ies",
+ "uri es",
+ "u ries",
+ "▁ро ди",
+ "▁род и",
+ "▁ роди",
+ "▁а мерикан",
+ "up p",
+ "u pp",
+ "▁i ce",
+ "▁ic e",
+ "▁ ice",
+ "▁S ay",
+ "▁Sa y",
+ "▁s ail",
+ "▁sa il",
+ "▁B egin",
+ "▁Be gin",
+ "▁Beg in",
+ "▁ Begin",
+ "fi co",
+ "fic o",
+ "f ico",
+ "og a",
+ "o ga",
+ "▁d esar",
+ "▁des ar",
+ "▁d v",
+ "▁ра ди",
+ "oh en",
+ "o hen",
+ "er ei",
+ "ere i",
+ "e rei",
+ "án ak",
+ "á nak",
+ "▁d aar",
+ "▁da ar",
+ "if iers",
+ "ifier s",
+ "ifi ers",
+ "ifie rs",
+ "▁th ee",
+ "▁the e",
+ "▁by la",
+ "▁byl a",
+ "ва ла",
+ "вал а",
+ "в ала",
+ "an dro",
+ "and ro",
+ "andr o",
+ "▁м оло",
+ "▁мо ло",
+ "▁tot ally",
+ "▁total ly",
+ "io m",
+ "i om",
+ "▁a er",
+ "ns ylvan",
+ "▁cor ps",
+ "▁tre ated",
+ "▁treat ed",
+ "▁com une",
+ "▁comun e",
+ "M ich",
+ "vo ice",
+ "pg f",
+ "▁a nx",
+ "▁an x",
+ "▁Phil ip",
+ "▁Phili p",
+ "▁e k",
+ "▁ ek",
+ "▁Men schen",
+ "▁Mens chen",
+ "▁d ere",
+ "▁de re",
+ "▁der e",
+ "▁per met",
+ "▁perm et",
+ "Ma il",
+ "M ail",
+ "▁V é",
+ "en ted",
+ "ent ed",
+ "ente d",
+ "▁b unch",
+ "▁P iet",
+ "▁Pi et",
+ "▁Pie t",
+ "att ach",
+ "atta ch",
+ "▁p orte",
+ "▁por te",
+ "▁port e",
+ "▁ porte",
+ "да т",
+ "д ат",
+ "▁Brit ain",
+ "Enc oding",
+ "▁` <",
+ "Sp ace",
+ "S pace",
+ "▁r ap",
+ "▁ra p",
+ "▁ rap",
+ "▁pop ul",
+ "fl oor",
+ "f loor",
+ "spec ific",
+ "cle an",
+ "c lean",
+ "▁con qu",
+ "f b",
+ "▁introdu ce",
+ "▁Ent ity",
+ "▁ Entity",
+ "▁er folg",
+ "▁erf olg",
+ "at ol",
+ "ato l",
+ "a tol",
+ "ient os",
+ "iento s",
+ "ки педи",
+ "▁U t",
+ "▁б ри",
+ "▁ бри",
+ "ed uler",
+ "edu ler",
+ "edule r",
+ "▁conc entr",
+ "▁concent r",
+ "▁c her",
+ "▁ch er",
+ "▁che r",
+ "▁ cher",
+ "▁up grade",
+ "▁upgrad e",
+ "▁p ictures",
+ "▁picture s",
+ "▁Famil ie",
+ "M us",
+ "Lo ok",
+ "L ook",
+ "▁e ran",
+ "▁er an",
+ "▁era n",
+ "▁g ram",
+ "▁gr am",
+ "▁gra m",
+ "▁ gram",
+ "▁W o",
+ "np m",
+ "n pm",
+ "▁Sal v",
+ "▁Sa lv",
+ "▁c d",
+ "▁ cd",
+ "▁В ы",
+ "wa hl",
+ "w ahl",
+ "tr ain",
+ "tra in",
+ "t rain",
+ "ch em",
+ "che m",
+ "c hem",
+ "▁P il",
+ "▁Pi l",
+ "▁Con nect",
+ "▁ Connect",
+ "č e",
+ "▁h ast",
+ "▁ha st",
+ "▁has t",
+ "▁Mult i",
+ "▁Mul ti",
+ "▁ Multi",
+ "at ta",
+ "att a",
+ "a tta",
+ "▁S ound",
+ "▁So und",
+ "▁Sou nd",
+ "▁ Sound",
+ "sol ute",
+ "▁qu ote",
+ "▁quot e",
+ "▁ quote",
+ "▁o bst",
+ "▁ob st",
+ "▁obs t",
+ "cc iones",
+ "ccion es",
+ "c ciones",
+ "ib ly",
+ "▁b rand",
+ "▁br and",
+ "▁bra nd",
+ "▁bran d",
+ "▁ brand",
+ "▁convers ation",
+ "▁to utes",
+ "▁tout es",
+ "▁tou tes",
+ "▁toute s",
+ "▁R ub",
+ "▁Ru b",
+ "ie nia",
+ "ien ia",
+ "i enia",
+ "ir it",
+ "iri t",
+ "i rit",
+ "▁А нд",
+ "▁Ан д",
+ "edu led",
+ "edule d",
+ "▁T otal",
+ "▁To tal",
+ "▁Tot al",
+ "▁ Total",
+ "Di g",
+ "D ig",
+ "er em",
+ "ere m",
+ "e rem",
+ "▁s ki",
+ "▁sk i",
+ "▁ ski",
+ "De st",
+ "Des t",
+ "D est",
+ "Y Y",
+ "е ди",
+ "al y",
+ "a ly",
+ "▁back end",
+ "▁ backend",
+ "ul us",
+ "ulu s",
+ "u lus",
+ "▁feature d",
+ "▁person n",
+ "▁pers onn",
+ "▁sc hon",
+ "▁sch on",
+ "tr ace",
+ "tra ce",
+ "t race",
+ "▁I DE",
+ "▁ID E",
+ "▁ IDE",
+ "á j",
+ "▁anim als",
+ "▁animal s",
+ "▁ani mals",
+ "▁s now",
+ "▁sn ow",
+ "uv e",
+ "u ve",
+ "uer to",
+ "▁d rew",
+ "▁dr ew",
+ "▁dre w",
+ "▁Ye ah",
+ "▁S v",
+ "\\, \\",
+ "\\ ,\\",
+ "▁S erie",
+ "▁Se rie",
+ "▁Ser ie",
+ "▁second o",
+ "▁sec ondo",
+ "▁Leb ens",
+ "▁Leben s",
+ "▁acc ord",
+ "▁ac cord",
+ "▁C et",
+ "▁Ce t",
+ "er ade",
+ "era de",
+ "e rade",
+ "▁desp ite",
+ "▁C arlo",
+ "▁Car lo",
+ "▁Carl o",
+ "▁z ewnętrz",
+ "▁l ista",
+ "▁li sta",
+ "▁list a",
+ "▁ lista",
+ "ni co",
+ "nic o",
+ "n ico",
+ "▁Corpor ation",
+ "vs pace",
+ "v space",
+ "▁вой ны",
+ "▁st ands",
+ "▁stand s",
+ "▁stan ds",
+ "▁wor se",
+ "▁sim ult",
+ "▁si mult",
+ "▁pract ical",
+ "CO L",
+ "C OL",
+ "ch anged",
+ "change d",
+ "chan ged",
+ "▁Исто рия",
+ "б ри",
+ "in do",
+ "ind o",
+ "▁Lew is",
+ "▁pattern s",
+ "if ica",
+ "ific a",
+ "ifi ca",
+ "i fica",
+ "▁s mart",
+ "▁sm art",
+ "▁concern ed",
+ "ți i",
+ "ț ii",
+ "▁H ello",
+ "▁Hel lo",
+ "▁Hell o",
+ "▁ Hello",
+ "re ll",
+ "rel l",
+ "r ell",
+ "▁L ex",
+ "▁Le x",
+ "▁в то",
+ "▁cond itional",
+ "▁condition al",
+ "ot ted",
+ "ott ed",
+ "otte d",
+ "▁sh oot",
+ "▁sho ot",
+ "▁W ed",
+ "▁We d",
+ "▁мар та",
+ "au d",
+ "a ud",
+ "▁an te",
+ "▁ant e",
+ "▁ ante",
+ "ien tras",
+ "ient ras",
+ "▁p apers",
+ "▁pa pers",
+ "▁pap ers",
+ "▁paper s",
+ "▁port ug",
+ "▁Man agement",
+ "▁ Management",
+ "▁exerc ise",
+ "▁Begr iff",
+ "com mit",
+ "comm it",
+ "▁render ing",
+ "▁rend ering",
+ "▁rende ring",
+ "▁c zas",
+ "▁cz as",
+ "▁ czas",
+ "Dr op",
+ "D rop",
+ "er g",
+ "e rg",
+ "▁m ul",
+ "▁mu l",
+ "▁ mul",
+ "▁T an",
+ "▁Ta n",
+ "ie ro",
+ "ier o",
+ "i ero",
+ "▁loc ale",
+ "▁local e",
+ "▁ locale",
+ "▁in aug",
+ "du mp",
+ "d ump",
+ "ци й",
+ "▁symbol s",
+ "in ta",
+ "int a",
+ "▁aw arded",
+ "▁award ed",
+ "▁s ust",
+ "▁su st",
+ "▁sus t",
+ "▁S end",
+ "▁Se nd",
+ "▁Sen d",
+ "▁ Send",
+ "ї в",
+ "Re st",
+ "Res t",
+ "R est",
+ "zt en",
+ "zte n",
+ "z ten",
+ "ли м",
+ "л им",
+ "ri val",
+ "riv al",
+ "r ival",
+ "PO RT",
+ "P ORT",
+ "öl ker",
+ "im ately",
+ "imate ly",
+ "imat ely",
+ "ig te",
+ "igt e",
+ "ч ных",
+ "▁ter ra",
+ "▁ terra",
+ "ög lich",
+ "▁H om",
+ "▁Ho m",
+ "▁ Hom",
+ "▁h ex",
+ "▁he x",
+ "▁ hex",
+ "do ne",
+ "don e",
+ "d one",
+ "am ps",
+ "amp s",
+ "▁c et",
+ "▁ce t",
+ "PR E",
+ "P RE",
+ "ös t",
+ "ö st",
+ "▁fem me",
+ "Se lection",
+ "Select ion",
+ "▁z aw",
+ "▁za w",
+ "sp r",
+ "s pr",
+ "▁horse s",
+ "▁hors es",
+ "▁s nap",
+ "▁sn ap",
+ "Text Box",
+ "▁E clipse",
+ "ul le",
+ "ull e",
+ "u lle",
+ "ow ym",
+ "owy m",
+ "▁c omer",
+ "▁com er",
+ "▁co mer",
+ "▁come r",
+ "ne cess",
+ "co ok",
+ "c ook",
+ "en ger",
+ "eng er",
+ "-- >",
+ "- ->",
+ "▁p ří",
+ "▁př í",
+ "pan das",
+ "p andas",
+ "▁P lus",
+ "▁Pl us",
+ "▁ Plus",
+ "yl l",
+ "y ll",
+ "▁t error",
+ "▁te rror",
+ "▁ter ror",
+ "▁c rim",
+ "▁cr im",
+ "▁cri m",
+ "▁z ak",
+ "▁za k",
+ "▁ zak",
+ "iss ue",
+ "pa nel",
+ "pan el",
+ "p anel",
+ "sv g",
+ "▁re b",
+ "▁r eb",
+ "▁ reb",
+ "Custom er",
+ "sw itch",
+ "об ра",
+ "о бра",
+ "▁Champion ships",
+ "▁Championship s",
+ "▁Champions hips",
+ "cl o",
+ "c lo",
+ "at te",
+ "att e",
+ "a tte",
+ "▁any more",
+ "▁excell ent",
+ "▁opport unity",
+ "▁opportun ity",
+ "▁B ahn",
+ "▁Ba hn",
+ "▁Bah n",
+ "чи н",
+ "ч ин",
+ "et ing",
+ "eti ng",
+ "e ting",
+ "▁inc ident",
+ "to m",
+ "t om",
+ "Per s",
+ "Pe rs",
+ "P ers",
+ "bb en",
+ "bbe n",
+ "b ben",
+ "ствен ной",
+ "ственно й",
+ "и х",
+ "ro uter",
+ "route r",
+ "rout er",
+ "rou ter",
+ "r outer",
+ "▁new ly",
+ "▁sil ence",
+ "▁G NU",
+ "▁R ails",
+ "▁Ra ils",
+ "▁Rail s",
+ "▁A mb",
+ "▁Am b",
+ "▁Q ual",
+ "▁Qu al",
+ "▁ Qual",
+ "▁Sch aus",
+ "▁Sc haus",
+ "▁S ohn",
+ "▁So hn",
+ "▁A LL",
+ "▁AL L",
+ "▁ ALL",
+ "▁ro yal",
+ "▁roy al",
+ "▁ £",
+ "wi ę",
+ "w ię",
+ "▁ent fer",
+ "▁Re move",
+ "▁Rem ove",
+ "▁ Remove",
+ "▁hard ly",
+ "Us ing",
+ "U sing",
+ "ло г",
+ "▁I ch",
+ "▁d erni",
+ "▁der ni",
+ "▁Con nection",
+ "▁Connect ion",
+ "▁ Connection",
+ "fi sh",
+ "f ish",
+ "▁In form",
+ "▁Inf orm",
+ "▁Info rm",
+ "▁E ner",
+ "▁En er",
+ "ro it",
+ "r oit",
+ "B bb",
+ "View Model",
+ "V ideo",
+ "il ey",
+ "ile y",
+ "i ley",
+ "▁м ного",
+ "▁мно го",
+ "▁G em",
+ "▁Ge m",
+ "▁comp reh",
+ "▁compr eh",
+ "en umerate",
+ "ul as",
+ "ula s",
+ "u las",
+ "▁B ah",
+ "▁Ba h",
+ "▁Y et",
+ "▁Ye t",
+ "B R",
+ "х ра",
+ "▁count y",
+ "▁coun ty",
+ "▁H ist",
+ "▁His t",
+ "▁Hi st",
+ "▁Г у",
+ "▁ Ј",
+ "▁m ari",
+ "▁ma ri",
+ "▁mar i",
+ "▁C lar",
+ "▁Cl ar",
+ "▁Cla r",
+ "Bit map",
+ "B itmap",
+ "▁C z",
+ "▁m ån",
+ "▁må n",
+ "▁m ere",
+ "▁me re",
+ "▁mer e",
+ "▁mus ique",
+ "al so",
+ "als o",
+ "date s",
+ "da tes",
+ "dat es",
+ "d ates",
+ "▁D VD",
+ "▁g ol",
+ "▁go l",
+ "fo ny",
+ "fon y",
+ "f ony",
+ "▁Cast le",
+ "▁фа ми",
+ "▁arr ang",
+ "▁Bus iness",
+ "▁K az",
+ "▁Ka z",
+ "▁o sc",
+ "▁os c",
+ "▁ osc",
+ "▁se colo",
+ "▁sec olo",
+ "▁aff ected",
+ "▁affect ed",
+ "▁He alth",
+ "re b",
+ "r eb",
+ "ed itor",
+ "edit or",
+ "edi tor",
+ "▁own ed",
+ "▁ow ned",
+ "▁ owned",
+ "t l",
+ "▁v í",
+ "▁ ví",
+ "чни х",
+ "ч них",
+ "к ви",
+ "▁dev ient",
+ "▁devi ent",
+ "M utable",
+ "▁t egen",
+ "▁te gen",
+ "Reg ister",
+ "є ю",
+ "▁car acter",
+ "лл и",
+ "л ли",
+ "▁n ouvelle",
+ "▁nouve lle",
+ "ok o",
+ "o ko",
+ "icht et",
+ "ichte t",
+ "▁e vol",
+ "▁ev ol",
+ "▁H ab",
+ "▁Ha b",
+ "▁mil itar",
+ "▁milit ar",
+ "▁p uts",
+ "▁put s",
+ "▁pu ts",
+ "end if",
+ "endi f",
+ "▁Dav is",
+ "▁Da vis",
+ "▁Scot land",
+ "reg ular",
+ "▁Con text",
+ "▁Cont ext",
+ "▁ Context",
+ "is piel",
+ "isp iel",
+ "i spiel",
+ "▁G allery",
+ "▁Gall ery",
+ "\", \r",
+ "\" ,\r",
+ "▁a rc",
+ "▁ar c",
+ "▁ arc",
+ "▁IN FO",
+ "▁ INFO",
+ "▁c od",
+ "▁co d",
+ "▁ cod",
+ "ді в",
+ "д ів",
+ "▁v archar",
+ "▁var char",
+ "▁ varchar",
+ "▁tou jours",
+ "at ial",
+ "ati al",
+ "atia l",
+ "▁h anno",
+ "▁han no",
+ "▁проф ес",
+ "▁launch ed",
+ "▁насе лення",
+ "▁t on",
+ "▁to n",
+ "▁ ton",
+ "au sed",
+ "ause d",
+ "aus ed",
+ "a used",
+ "▁і з",
+ "▁t ö",
+ "▁P ur",
+ "▁Pu r",
+ "▁o lymp",
+ "AR N",
+ "ó m",
+ "▁a ugust",
+ "▁aug ust",
+ "▁f urn",
+ "▁fur n",
+ "▁fu rn",
+ "▁Col omb",
+ "▁Sta ats",
+ "▁Staat s",
+ "ho ra",
+ "hor a",
+ "h ora",
+ "▁м ор",
+ "▁мо р",
+ "▁ мор",
+ "can vas",
+ "▁gr ave",
+ "▁gra ve",
+ "▁grav e",
+ "▁com position",
+ "▁comp osition",
+ "▁compos ition",
+ "ac ja",
+ "▁которы е",
+ "▁ч о",
+ "▁ чо",
+ "Gener al",
+ "Gen eral",
+ "ан і",
+ "а ні",
+ "▁Joh annes",
+ "▁Johann es",
+ "▁Johan nes",
+ "ка р",
+ "к ар",
+ "▁ча ст",
+ "▁час т",
+ "▁Ва си",
+ "ss h",
+ "s sh",
+ "▁repla cing",
+ "▁< >",
+ "▁ <>",
+ "ці в",
+ "ц ів",
+ "la us",
+ "lau s",
+ "l aus",
+ "en y",
+ "e ny",
+ "äh l",
+ "ä hl",
+ "▁m arg",
+ "▁ma rg",
+ "▁mar g",
+ "ci ence",
+ "c ience",
+ "▁inst ruction",
+ "▁instru ction",
+ "▁instruct ion",
+ "▁ко ји",
+ "Ed itor",
+ "Edit or",
+ "▁fund amental",
+ "mu nd",
+ "mun d",
+ "m und",
+ "▁exception s",
+ "▁except ions",
+ "▁p late",
+ "▁pl ate",
+ "▁pla te",
+ "▁plat e",
+ "▁ plate",
+ "▁L is",
+ "▁Li s",
+ "▁d eren",
+ "▁de ren",
+ "▁der en",
+ "▁dere n",
+ "pr ep",
+ "pre p",
+ "p rep",
+ "▁janu ari",
+ "Sc ope",
+ "S cope",
+ "yn ast",
+ "yna st",
+ "r v",
+ "or sz",
+ "ors z",
+ "▁T ony",
+ "▁To ny",
+ "▁Ton y",
+ "▁д і",
+ "▁ ді",
+ "▁о дна",
+ "▁од на",
+ "▁s ab",
+ "▁sa b",
+ "ot i",
+ "o ti",
+ "je l",
+ "j el",
+ "▁gener ator",
+ "▁ generator",
+ "▁' .",
+ "▁ '.",
+ "▁sh arp",
+ "▁ sharp",
+ "▁то лько",
+ "▁account s",
+ "▁ž e",
+ "▁ že",
+ "▁for am",
+ "▁fo ram",
+ "▁g ouvern",
+ "TI ME",
+ "T IME",
+ "▁Sov iet",
+ "▁G é",
+ "▁ex ped",
+ "▁exp ed",
+ "▁ord inary",
+ "▁ordin ary",
+ "▁ ordinary",
+ "▁Con serv",
+ "▁Cons erv",
+ "▁Conse rv",
+ "▁com pla",
+ "▁comp la",
+ "▁compl a",
+ "te i",
+ "t ei",
+ "▁cap tain",
+ "▁capt ain",
+ "▁Sam uel",
+ "▁D ark",
+ "▁Dar k",
+ "▁в ін",
+ "▁ві н",
+ "▁de light",
+ "▁del ight",
+ "re cht",
+ "rec ht",
+ "di a",
+ "d ia",
+ "ess es",
+ "esse s",
+ "ul p",
+ "u lp",
+ "ш ки",
+ "be z",
+ "b ez",
+ "▁det ection",
+ "▁detect ion",
+ "▁cook ie",
+ "▁ cookie",
+ "an try",
+ "ant ry",
+ "Mult i",
+ "ob a",
+ "o ba",
+ "▁j oy",
+ "▁jo y",
+ "▁safe ty",
+ "▁saf ety",
+ "| ^",
+ "po d",
+ "p od",
+ "ad ém",
+ "▁Ch ron",
+ "▁Chr on",
+ "▁D jango",
+ "▁Dj ango",
+ "▁ehem al",
+ "k h",
+ "è le",
+ "▁p oc",
+ "▁po c",
+ "B ottom",
+ "la unch",
+ "ne m",
+ "n em",
+ "▁G ROUP",
+ "▁ GROUP",
+ "ní ho",
+ "▁G ib",
+ "▁Gi b",
+ "sd k",
+ "s dk",
+ "B E",
+ "▁G ene",
+ "▁Ge ne",
+ "▁Gen e",
+ "▁St aff",
+ "▁Sta ff",
+ "▁subsequ ent",
+ "ic ion",
+ "ici on",
+ "icio n",
+ "i cion",
+ "▁vict ory",
+ "▁c anon",
+ "▁can on",
+ "▁ca non",
+ "iz ar",
+ "iza r",
+ "i zar",
+ "iz ia",
+ "izi a",
+ "i zia",
+ "▁m ate",
+ "▁ma te",
+ "▁mat e",
+ "▁ mate",
+ "▁lay ers",
+ "▁layer s",
+ "▁ layers",
+ "su do",
+ "s udo",
+ "sch ule",
+ "per iment",
+ "ül et",
+ "ü let",
+ "AR CHAR",
+ "▁тер рито",
+ "▁me asures",
+ "▁measure s",
+ "▁meas ures",
+ "▁z ou",
+ "▁zo u",
+ "ops is",
+ "на ми",
+ "tb ody",
+ "t body",
+ "▁e se",
+ "▁es e",
+ "▁ ese",
+ "ster dam",
+ "sterd am",
+ "▁ph oto",
+ "▁phot o",
+ "▁ photo",
+ "ynchron ous",
+ "set minus",
+ "▁lo ads",
+ "▁load s",
+ "▁ loads",
+ "▁ple asure",
+ "▁me ille",
+ "}\\ ,",
+ "} \\,",
+ "qu al",
+ "qua l",
+ "q ual",
+ "▁fav our",
+ "▁r od",
+ "▁ro d",
+ "▁ rod",
+ "De r",
+ "D er",
+ "ра бо",
+ "раб о",
+ "▁pr essed",
+ "▁pres sed",
+ "▁press ed",
+ "▁ pressed",
+ "r ę",
+ "ie ving",
+ "iev ing",
+ "mate rial",
+ "m aterial",
+ "vi rt",
+ "vir t",
+ "v irt",
+ "▁cap able",
+ "с ло",
+ "us hed",
+ "ush ed",
+ "▁по бе",
+ "uset ts",
+ "un signed",
+ "uns igned",
+ "k ów",
+ "▁o v",
+ "▁ ov",
+ "eg eben",
+ "ege ben",
+ "e geben",
+ "▁app lying",
+ "▁apply ing",
+ "▁gal ax",
+ "▁ga lax",
+ "▁O racle",
+ "▁Or acle",
+ "▁Stutt gart",
+ "In fl",
+ "Inf l",
+ "ach usetts",
+ "▁de el",
+ "li re",
+ "l ire",
+ "▁stat unit",
+ "▁Polit iker",
+ "▁Politik er",
+ "▁beaut y",
+ ") >",
+ "▁Columb ia",
+ "▁zewnętrz ne",
+ "▁про гра",
+ "▁пр огра",
+ "▁d x",
+ "▁ dx",
+ "ck now",
+ "c know",
+ "▁d ub",
+ "▁du b",
+ "un ächst",
+ "find ViewById",
+ "▁M and",
+ "▁Man d",
+ "▁Ma nd",
+ "ál l",
+ "á ll",
+ "na ire",
+ "n aire",
+ "▁dest in",
+ "is ting",
+ "ist ing",
+ "isti ng",
+ "ag gi",
+ "agg i",
+ "a ggi",
+ "ch art",
+ "char t",
+ "cha rt",
+ "c hart",
+ "▁just ice",
+ "Sim ple",
+ "▁un fortunately",
+ "і р",
+ "▁qu esta",
+ "▁que sta",
+ "▁quest a",
+ "▁ questa",
+ "▁Govern or",
+ "я в",
+ "▁mús ica",
+ "▁equ ipo",
+ "▁equip o",
+ "▁D est",
+ "▁De st",
+ "▁Des t",
+ "▁ Dest",
+ "el ect",
+ "ele ct",
+ "e lect",
+ "Stack Trace",
+ "зо м",
+ "з ом",
+ "pr oc",
+ "pro c",
+ "p roc",
+ "ent in",
+ "enti n",
+ "ad ora",
+ "ado ra",
+ "ador a",
+ "▁Л ю",
+ "▁register ed",
+ "H L",
+ "face book",
+ "fac ebook",
+ "▁st oring",
+ "▁stor ing",
+ "▁sto ring",
+ "▁Current ly",
+ "▁qu adr",
+ "▁quad r",
+ "Stand ard",
+ "tr im",
+ "tri m",
+ "t rim",
+ "ear s",
+ "ea rs",
+ "e ars",
+ "se nder",
+ "sen der",
+ "send er",
+ "s ender",
+ "▁V as",
+ "▁Va s",
+ "▁ed ific",
+ "▁B ür",
+ "▁Bü r",
+ "▁C ountry",
+ "▁Count ry",
+ "▁Coun try",
+ "▁ Country",
+ "th a",
+ "t ha",
+ "; \"",
+ "no r",
+ "n or",
+ "▁Do ctor",
+ "▁Doc tor",
+ "ru ment",
+ "rum ent",
+ "r ument",
+ "Ge n",
+ "G en",
+ "▁B uen",
+ "▁Bu en",
+ "ra de",
+ "rad e",
+ "r ade",
+ "▁k un",
+ "n avigation",
+ "Pa y",
+ "P ay",
+ "▁capt ured",
+ "▁capture d",
+ "▁st ruck",
+ "▁str uck",
+ "▁stru ck",
+ "ven ir",
+ "ém ent",
+ "é ment",
+ "▁T ree",
+ "▁Tr ee",
+ "▁Tre e",
+ "▁ Tree",
+ "▁x x",
+ "▁ xx",
+ "▁n arr",
+ "▁na rr",
+ "▁nar r",
+ "ль ного",
+ "льно го",
+ "▁inst alling",
+ "▁install ing",
+ "▁instal ling",
+ "▁associ ation",
+ "▁insert ed",
+ "▁inser ted",
+ "er ner",
+ "ern er",
+ "erne r",
+ "valid ate",
+ "▁l ut",
+ "▁lu t",
+ "▁g lo",
+ "▁gl o",
+ "▁techn ology",
+ "▁P lace",
+ "▁Pl ace",
+ "▁Pla ce",
+ "▁ Place",
+ "$ ?",
+ "▁z v",
+ "с лі",
+ "E P",
+ "▁at mos",
+ "ug o",
+ "u go",
+ "ér t",
+ "é rt",
+ "▁W erk",
+ "▁Wer k",
+ "▁% }",
+ "te le",
+ "tel e",
+ "t ele",
+ "Sp an",
+ "S pan",
+ "▁R aj",
+ "▁Ra j",
+ "▁Person en",
+ "▁Pers onen",
+ "▁C ant",
+ "▁Can t",
+ "▁Ca nt",
+ "▁com bat",
+ "▁comb at",
+ "▁observ ation",
+ "▁obs ervation",
+ "param eter",
+ "para meter",
+ "▁agre ed",
+ "▁agree d",
+ "▁agr eed",
+ "pu r",
+ "p ur",
+ "▁sh adow",
+ "▁ shadow",
+ "▁g ł",
+ "Key s",
+ "Ke ys",
+ "Cre d",
+ "Cr ed",
+ "C red",
+ "ou ri",
+ "our i",
+ "o uri",
+ "▁p ale",
+ "▁pa le",
+ "▁pal e",
+ "ic ké",
+ "ick é",
+ "▁We ek",
+ "▁ Week",
+ "▁Pr ime",
+ "▁Pri me",
+ "▁Prim e",
+ "> .",
+ "Init ial",
+ "▁о дин",
+ "▁од ин",
+ "▁' ',",
+ "▁'' ,",
+ "▁у чи",
+ "▁In v",
+ "▁ Inv",
+ "col a",
+ "co la",
+ "c ola",
+ "ci ble",
+ "c ible",
+ "▁The atre",
+ "▁b em",
+ "▁be m",
+ "▁satisf y",
+ "x l",
+ "▁ра зви",
+ "▁раз ви",
+ "▁p ixel",
+ "▁pix el",
+ "lá n",
+ "l án",
+ "▁tw ee",
+ "▁twe e",
+ "ço n",
+ "ç on",
+ "не ния",
+ "▁A T",
+ "▁ AT",
+ "èg e",
+ "è ge",
+ "▁M ort",
+ "▁Mor t",
+ "▁Mo rt",
+ "▁my sq",
+ "▁ mysq",
+ "ft en",
+ "fte n",
+ "f ten",
+ "▁п ес",
+ "▁пе с",
+ "ém a",
+ "é ma",
+ "▁Service s",
+ "▁Serv ices",
+ "▁ Services",
+ "custom er",
+ "▁A WS",
+ "ъ т",
+ "▁A ch",
+ "▁Ac h",
+ "% .",
+ "▁clar ify",
+ "▁уни версите",
+ "xt ure",
+ "um i",
+ "u mi",
+ "▁s å",
+ "▁P el",
+ "▁Pe l",
+ "se rial",
+ "ser ial",
+ "UR I",
+ "U RI",
+ "▁r g",
+ "▁ rg",
+ "▁со ста",
+ "ch estra",
+ "che stra",
+ "ches tra",
+ "]. [",
+ "] .[",
+ "we n",
+ "w en",
+ "▁Lond res",
+ "▁an ys",
+ "▁any s",
+ "Data Source",
+ "▁рай оне",
+ "▁райо не",
+ "▁район е",
+ "▁re in",
+ "▁r ein",
+ "▁rei n",
+ "▁met adata",
+ "▁meta data",
+ "▁ metadata",
+ "um ble",
+ "umb le",
+ "ar beit",
+ "arbe it",
+ "hn er",
+ "h ner",
+ "ci ent",
+ "cie nt",
+ "c ient",
+ "▁n orte",
+ "▁nor te",
+ "▁о на",
+ "▁он а",
+ "▁ она",
+ "▁sc ored",
+ "▁score d",
+ "▁r ay",
+ "▁ra y",
+ "▁ ray",
+ "▁фев ра",
+ "▁фе вра",
+ "▁pro tagon",
+ "▁prot agon",
+ "▁S ac",
+ "▁Sa c",
+ "▁comm only",
+ "▁common ly",
+ "Linear Layout",
+ "▁app lic",
+ "▁ма я",
+ "З а",
+ "▁access ible",
+ "ie wer",
+ "iew er",
+ "fl ag",
+ "f lag",
+ "▁R ück",
+ "ä u",
+ "▁e rano",
+ "▁er ano",
+ "▁era no",
+ "▁eran o",
+ "▁auth entic",
+ "▁ authentic",
+ "▁R y",
+ "▁не ско",
+ "▁emb argo",
+ "▁embar go",
+ "▁d ry",
+ "▁dr y",
+ "▁reason able",
+ "▁Mod ule",
+ "▁ Module",
+ "▁acc eler",
+ "▁inter view",
+ "▁C reek",
+ "▁Cre ek",
+ "▁al pha",
+ "▁ alpha",
+ "se rie",
+ "ser ie",
+ "s erie",
+ "Th ey",
+ "The y",
+ "ю чи",
+ "▁H of",
+ "▁Ho f",
+ "▁C R",
+ "▁ CR",
+ "mod al",
+ "mo dal",
+ "▁sequence s",
+ "▁sequ ences",
+ "cl osed",
+ "close d",
+ "clos ed",
+ "clo sed",
+ ")} $",
+ ") }$",
+ "▁Ч ер",
+ "▁Че р",
+ "▁OR DER",
+ "▁ ORDER",
+ "Right arrow",
+ "R ightarrow",
+ "haus en",
+ "}} _",
+ "} }_",
+ "▁tamb é",
+ "▁magn etic",
+ "▁magnet ic",
+ "▁Mc C",
+ "▁win ning",
+ "under line",
+ "▁Bill board",
+ "na io",
+ "▁l iqu",
+ "▁li qu",
+ "▁ liqu",
+ "display style",
+ "time out",
+ "▁consider able",
+ "▁e ben",
+ "▁eb en",
+ "▁ eben",
+ "iffer ent",
+ "iffe rent",
+ "an u",
+ "a nu",
+ "▁С ов",
+ "▁Со в",
+ "[ (",
+ "▁: -)",
+ "▁:- )",
+ "le itung",
+ "form ed",
+ "for med",
+ "▁Man ager",
+ "▁ Manager",
+ "▁on click",
+ "T Y",
+ "та х",
+ "C V",
+ "run time",
+ "r untime",
+ "po que",
+ "▁Л о",
+ "Tem p",
+ "Te mp",
+ "T emp",
+ "lo aded",
+ "load ed",
+ "▁! ==",
+ "▁!= =",
+ "▁s inger",
+ "▁sing er",
+ "▁sin ger",
+ "fa r",
+ "f ar",
+ "▁Com ple",
+ "▁Comp le",
+ "▁ Comple",
+ "▁Ö sterreich",
+ "Pol icy",
+ "▁work er",
+ "▁wor ker",
+ "▁ worker",
+ "W rapper",
+ "ob i",
+ "o bi",
+ "▁discuss ed",
+ "▁b uy",
+ "▁bu y",
+ "▁янва ря",
+ "▁D in",
+ "▁Di n",
+ "▁g ed",
+ "▁ge d",
+ "▁ ged",
+ "ско ј",
+ "E urope",
+ "▁t all",
+ "▁tal l",
+ "▁ta ll",
+ "ho s",
+ "h os",
+ "ла го",
+ "▁B lock",
+ "▁Bl ock",
+ "▁Blo ck",
+ "▁ Block",
+ "▁ident ified",
+ "List View",
+ "▁attempt ing",
+ "▁typ ical",
+ "ps um",
+ "p sum",
+ "os ter",
+ "ost er",
+ "o ster",
+ "▁ж урна",
+ "P e",
+ "mer ce",
+ "▁un expected",
+ "hu i",
+ "h ui",
+ "let ter",
+ "lett er",
+ "lette r",
+ "l etter",
+ "▁nue vo",
+ "▁а бо",
+ "▁VAL UES",
+ "▁I z",
+ "Fl ags",
+ "Flag s",
+ "▁TR UE",
+ "▁ TRUE",
+ "iz ación",
+ "iza ción",
+ "▁gro wing",
+ "▁grow ing",
+ "es tre",
+ "est re",
+ "estr e",
+ "e stre",
+ "▁p oly",
+ "▁po ly",
+ "▁pol y",
+ "▁ poly",
+ "▁St one",
+ "▁Sto ne",
+ "▁V III",
+ "▁VI II",
+ "▁VII I",
+ "▁local host",
+ "▁ localhost",
+ "äh lt",
+ "ähl t",
+ "▁embed ded",
+ "jd bc",
+ "j dbc",
+ "▁con vention",
+ "▁conv ention",
+ "▁conven tion",
+ "▁convent ion",
+ "▁s cala",
+ "▁sc ala",
+ "▁scal a",
+ "▁ scala",
+ "со к",
+ "с ок",
+ "▁an alog",
+ "▁anal og",
+ "▁\" +",
+ "▁ \"+",
+ "ц ю",
+ "oc c",
+ "o cc",
+ "▁l itt",
+ "▁li tt",
+ "▁lit t",
+ "P N",
+ "▁а ктив",
+ "▁ак тив",
+ "att ributes",
+ "attribute s",
+ "▁F erd",
+ "▁Fe rd",
+ "▁Fer d",
+ "▁az ure",
+ "▁ azure",
+ "ș ti",
+ "ño s",
+ "ñ os",
+ "pi ng",
+ "pin g",
+ "p ing",
+ "▁te acher",
+ "▁teach er",
+ "▁tea cher",
+ "} &",
+ "ip e",
+ "i pe",
+ "▁N ob",
+ "▁No b",
+ "▁и ма",
+ "▁им а",
+ "Bi nd",
+ "B ind",
+ "▁mag ic",
+ "▁Trans port",
+ "▁ Transport",
+ "ix el",
+ "▁comp uted",
+ "▁comput ed",
+ "▁compute d",
+ "ag na",
+ "agn a",
+ "er st",
+ "ers t",
+ "H A",
+ "W ait",
+ "▁author s",
+ "▁auth ors",
+ "▁; )",
+ "cl am",
+ "cla m",
+ "c lam",
+ "▁Pen nsylvan",
+ "▁d rug",
+ "▁dr ug",
+ "▁dru g",
+ "▁v ain",
+ "▁va in",
+ "▁employ ed",
+ "▁individ uals",
+ "▁individual s",
+ "▁an ge",
+ "▁ang e",
+ "▁ ange",
+ "ut at",
+ "uta t",
+ "u tat",
+ "▁$ -",
+ "▁ $-",
+ "cor rect",
+ "corr ect",
+ "▁exper iments",
+ "▁experiment s",
+ "Arg ument",
+ "▁I B",
+ "▁ IB",
+ "▁p ère",
+ "▁B rian",
+ "▁Br ian",
+ "ber ger",
+ "berg er",
+ "Ma c",
+ "M ac",
+ "ia st",
+ "ias t",
+ "i ast",
+ "Per m",
+ "Pe rm",
+ "P erm",
+ "Ca st",
+ "C ast",
+ "▁{ };",
+ "▁{} ;",
+ "▁St udent",
+ "▁Stud ent",
+ "▁Stu dent",
+ "▁ Student",
+ "▁st att",
+ "▁stat t",
+ "▁sta tt",
+ "al gebra",
+ "▁equ als",
+ "▁equal s",
+ "▁eq uals",
+ "▁ equals",
+ "▁pro jet",
+ "▁prés ident",
+ "Activity Thread",
+ "▁ein z",
+ "en ia",
+ "eni a",
+ "e nia",
+ "re z",
+ "r ez",
+ "ess ional",
+ "ession al",
+ "▁авгу ста",
+ "over ride",
+ "ne ws",
+ "new s",
+ "▁pla net",
+ "▁plan et",
+ "▁plane t",
+ "n n",
+ "▁W is",
+ "▁Wi s",
+ "тв ер",
+ "т вер",
+ "▁Val id",
+ "▁ Valid",
+ "▁G ef",
+ "▁Ge f",
+ "гра д",
+ "▁e ig",
+ "an tom",
+ "ant om",
+ "anto m",
+ "▁Me ister",
+ "fl ags",
+ "flag s",
+ "ffic iale",
+ "fficial e",
+ "ша я",
+ "- ,",
+ "at ionen",
+ "ation en",
+ "ati onen",
+ "atio nen",
+ "mo use",
+ "m ouse",
+ "stand ard",
+ "Sing le",
+ "▁b ol",
+ "▁bo l",
+ "▁ bol",
+ "is is",
+ "isi s",
+ "▁f ruit",
+ "▁fr uit",
+ "c ourse",
+ "it ants",
+ "itan ts",
+ "▁é taient",
+ "▁ét aient",
+ "Text Field",
+ "▁ф он",
+ "▁фо н",
+ "▁a ircraft",
+ "▁air craft",
+ "▁I SSN",
+ "▁IS SN",
+ "▁west ern",
+ "▁ western",
+ "▁represent ing",
+ "Es p",
+ "E sp",
+ "▁El se",
+ "▁Els e",
+ "▁ Else",
+ "▁s izes",
+ "▁si zes",
+ "▁size s",
+ "▁satisf ied",
+ "ot os",
+ "oto s",
+ "U D",
+ "Fin al",
+ "Fi nal",
+ "F inal",
+ "ó j",
+ "è ve",
+ "▁R oy",
+ "▁Ro y",
+ "ff en",
+ "ffe n",
+ "f fen",
+ "▁s alt",
+ "▁sa lt",
+ "▁sal t",
+ "▁L abel",
+ "▁La bel",
+ "▁Lab el",
+ "▁ Label",
+ "S k",
+ "▁к ре",
+ "▁ кре",
+ "▁Ли тература",
+ "▁с м",
+ "Att ributes",
+ "Attribute s",
+ "ay e",
+ "a ye",
+ "сь к",
+ "▁вы со",
+ "- )",
+ "os es",
+ "ose s",
+ "cal cul",
+ "calc ul",
+ "▁C annot",
+ "▁Can not",
+ "▁ Cannot",
+ "Gener ic",
+ "em o",
+ "e mo",
+ "▁A utor",
+ "▁Aut or",
+ "▁Au tor",
+ "▁Auto r",
+ "лё н",
+ "л ён",
+ "ла га",
+ "vo te",
+ "v ote",
+ "lic ates",
+ "licate s",
+ "lica tes",
+ "ru s",
+ "r us",
+ "él i",
+ "é li",
+ "op f",
+ "o pf",
+ "at ique",
+ "ati que",
+ "sc ala",
+ "scal a",
+ "s cala",
+ "▁Oh io",
+ "▁Brit ann",
+ "▁b ef",
+ "▁be f",
+ "▁Е вро",
+ "▁Ев ро",
+ "▁Care er",
+ "is ée",
+ "isé e",
+ "ó t",
+ "bo se",
+ "bos e",
+ "b ose",
+ "▁Б ер",
+ "▁Бе р",
+ "▁Cont roller",
+ "▁Control ler",
+ "▁ Controller",
+ "po le",
+ "pol e",
+ "p ole",
+ "▁al len",
+ "▁all en",
+ "▁alle n",
+ "▁ allen",
+ "▁h ack",
+ "▁ha ck",
+ "▁ext ent",
+ "▁cal ci",
+ "▁calc i",
+ "Me r",
+ "M er",
+ "▁sum mary",
+ "▁summar y",
+ "▁summ ary",
+ "▁ summary",
+ "Mar t",
+ "Ma rt",
+ "M art",
+ "▁histor ical",
+ "▁historic al",
+ "im at",
+ "ima t",
+ "i mat",
+ "bu d",
+ "b ud",
+ "▁F OR",
+ "▁FO R",
+ "▁ FOR",
+ "ex port",
+ "exp ort",
+ "ed i",
+ "e di",
+ "Map ping",
+ "Mapp ing",
+ "Ma pping",
+ "M apping",
+ "▁A y",
+ "▁R uby",
+ "▁Ru by",
+ "▁Rub y",
+ "▁definition s",
+ "▁defin itions",
+ "▁definit ions",
+ "▁{ $",
+ "▁ {$",
+ "▁y ours",
+ "▁you rs",
+ "▁your s",
+ "▁yo urs",
+ "ri as",
+ "ria s",
+ "r ias",
+ "To uch",
+ "T ouch",
+ "▁G az",
+ "▁Ga z",
+ "▁Aut om",
+ "▁Au tom",
+ "▁Auto m",
+ "▁ Autom",
+ "▁и стори",
+ "▁исто ри",
+ "▁ис тори",
+ "▁d elen",
+ "▁de len",
+ "▁del en",
+ "▁K inder",
+ "▁Kind er",
+ "▁Ki nder",
+ "▁Kin der",
+ "}} %",
+ "} }%",
+ "▁perform ing",
+ "F R",
+ "▁S ig",
+ "▁Si g",
+ "▁B rad",
+ "▁Br ad",
+ "▁Bra d",
+ "br as",
+ "bra s",
+ "b ras",
+ "▁J ar",
+ "▁Ja r",
+ "pk g",
+ "p kg",
+ "w r",
+ "▁P ays",
+ "▁Pa ys",
+ "▁Pay s",
+ "N C",
+ "▁op posed",
+ "▁opp osed",
+ "▁oppos ed",
+ "Tr y",
+ "T ry",
+ "▁ве зе",
+ "▁B og",
+ "▁Bo g",
+ "▁writ es",
+ "▁wr ites",
+ "▁write s",
+ "▁st ories",
+ "▁stor ies",
+ "▁sto ries",
+ "▁m ater",
+ "▁ma ter",
+ "▁mat er",
+ "▁mate r",
+ "▁stag ione",
+ "▁s ty",
+ "▁st y",
+ "▁ sty",
+ "▁compat ible",
+ "▁ compatible",
+ "he ast",
+ "h east",
+ "▁G uy",
+ "▁Gu y",
+ "egr ünd",
+ "▁ident ifier",
+ "▁ identifier",
+ "▁he ads",
+ "▁head s",
+ "по зи",
+ "▁st up",
+ "▁t f",
+ "▁ tf",
+ "▁ј ош",
+ "▁H ugh",
+ "▁Hu gh",
+ "▁c ards",
+ "▁car ds",
+ "▁card s",
+ "▁ cards",
+ "ov y",
+ "o vy",
+ "▁To ast",
+ "al las",
+ "all as",
+ "alla s",
+ "▁p úblic",
+ "▁ass umes",
+ "▁assum es",
+ "▁assume s",
+ "▁чемпи она",
+ "yc ler",
+ "ycle r",
+ "y cler",
+ "▁Juni or",
+ "▁Jun ior",
+ "▁F ich",
+ "▁estim ated",
+ "▁estimate d",
+ "ze rw",
+ "zer w",
+ "di alog",
+ "dia log",
+ "d ialog",
+ "ши н",
+ "ш ин",
+ "sh ell",
+ "she ll",
+ "s hell",
+ "▁н их",
+ "▁ни х",
+ "▁ них",
+ "▁p itch",
+ "▁pit ch",
+ "до л",
+ "out ube",
+ "▁S anti",
+ "▁San ti",
+ "▁Sant i",
+ "On ClickListener",
+ "▁M agyar",
+ "▁Mag yar",
+ "▁v ue",
+ "▁vu e",
+ "▁ vue",
+ "i ão",
+ "▁` #",
+ "col lect",
+ "coll ect",
+ "▁R ou",
+ "▁Ro u",
+ "anal ysis",
+ "istrz ost",
+ "▁Dig ital",
+ "▁ Digital",
+ "▁c rist",
+ "▁cr ist",
+ "▁cri st",
+ "ri ere",
+ "rie re",
+ "rier e",
+ "r iere",
+ "▁cam po",
+ "▁camp o",
+ "U s",
+ "▁circ a",
+ "▁cir ca",
+ "▁Com ponent",
+ "▁ Component",
+ "▁NS String",
+ "▁ NSString",
+ "p d",
+ "▁pr ince",
+ "▁prin ce",
+ "▁in voke",
+ "▁inv oke",
+ "▁ invoke",
+ "▁Mar ine",
+ "▁Mari ne",
+ "Al low",
+ "All ow",
+ "est ic",
+ "esti c",
+ "ри сти",
+ "рис ти",
+ "рист и",
+ "bo ne",
+ "bon e",
+ "b one",
+ "ту ры",
+ "тур ы",
+ "▁pass ion",
+ "ác ió",
+ "á ció",
+ "▁o rn",
+ "▁or n",
+ "▁ orn",
+ "ве д",
+ "▁in vari",
+ "▁inv ari",
+ "▁н і",
+ "▁ ні",
+ "Re move",
+ "Rem ove",
+ "en cies",
+ "enc ies",
+ "enci es",
+ "il ib",
+ "ili b",
+ "i lib",
+ "▁Direct or",
+ "▁Dire ctor",
+ "▁Dir ector",
+ "\" \"",
+ "▁Con se",
+ "▁Cons e",
+ "google apis",
+ "ó k",
+ "▁У кра",
+ "▁H aving",
+ "▁Ha ving",
+ "▁Hav ing",
+ "Do main",
+ "Dom ain",
+ "ie rz",
+ "ier z",
+ "но логи",
+ "н ологи",
+ "Ch o",
+ "C ho",
+ "un defined",
+ "und efined",
+ "al loc",
+ "all oc",
+ "allo c",
+ "▁p ied",
+ "▁pi ed",
+ "▁pie d",
+ "▁f raction",
+ "▁fr action",
+ "▁fra ction",
+ "bi a",
+ "b ia",
+ "▁п оло",
+ "▁по ло",
+ "▁пол о",
+ "▁ поло",
+ "ug no",
+ "min ister",
+ "▁princip ale",
+ "▁principal e",
+ "▁ref used",
+ "▁refuse d",
+ "brow ser",
+ "b rowser",
+ "* ,",
+ "▁H ospital",
+ "▁univers al",
+ "▁Ern st",
+ "wh o",
+ "w ho",
+ "▁G ard",
+ "▁Gar d",
+ "▁Ga rd",
+ "' _",
+ "con de",
+ "co nde",
+ "cond e",
+ "c onde",
+ "▁[ {",
+ "▁ [{",
+ "so b",
+ "s ob",
+ "▁C rit",
+ "▁Cr it",
+ "▁дека бря",
+ "▁p unto",
+ "▁pun to",
+ "▁punt o",
+ "▁einges etzt",
+ "▁t ör",
+ "▁tö r",
+ "▁N i",
+ "▁w orry",
+ "▁wor ry",
+ "▁leg end",
+ "▁ legend",
+ "▁бу ли",
+ "▁k omm",
+ "▁kom m",
+ "▁ko mm",
+ "ri jk",
+ "rij k",
+ "r ijk",
+ "ef fect",
+ "eff ect",
+ "e ffect",
+ "Or i",
+ "O ri",
+ "RE S",
+ "R ES",
+ "▁P eters",
+ "▁Pe ters",
+ "▁Peter s",
+ "▁Pet ers",
+ "▁B aron",
+ "▁Bar on",
+ "▁Ba ron",
+ "▁G ot",
+ "▁Go t",
+ "▁hon est",
+ "▁ho nest",
+ "är e",
+ "ä re",
+ "ás z",
+ "á sz",
+ "▁no ble",
+ "▁nob le",
+ "▁con clusion",
+ "▁conclus ion",
+ "▁concl usion",
+ "▁form atting",
+ "▁format ting",
+ "▁formatt ing",
+ "▁o tto",
+ "▁ot to",
+ "▁ott o",
+ "▁ otto",
+ "▁de leg",
+ "▁del eg",
+ "м б",
+ "pt op",
+ "pto p",
+ "p top",
+ "▁s ends",
+ "▁send s",
+ "▁sen ds",
+ "ur name",
+ "urn ame",
+ "▁f estival",
+ "▁fest ival",
+ "▁festiv al",
+ ", ",
+ "ру с",
+ "р ус",
+ "▁d och",
+ "▁do ch",
+ "▁doc h",
+ "sub ject",
+ "su bject",
+ "▁care ful",
+ "qu ent",
+ "que nt",
+ "q uent",
+ "▁Lo ad",
+ "▁ Load",
+ "temper aturen",
+ "▁r ue",
+ "▁ru e",
+ "Mem ory",
+ "ț a",
+ "ion a",
+ "io na",
+ "i ona",
+ "▁dent ro",
+ "▁beg ann",
+ "▁began n",
+ "▁A qu",
+ "▁scient ific",
+ "ka ń",
+ "ло к",
+ "л ок",
+ "el de",
+ "eld e",
+ "▁Th ose",
+ "qu ier",
+ "qui er",
+ "act ér",
+ "▁Auf lage",
+ ") '",
+ "▁grad ient",
+ "▁ gradient",
+ "in teger",
+ "inte ger",
+ "▁Im port",
+ "▁Imp ort",
+ "▁ Import",
+ "S K",
+ "▁St atus",
+ "▁Stat us",
+ "▁ Status",
+ "▁exp lo",
+ "▁expl o",
+ "A E",
+ "Sh ell",
+ "She ll",
+ "S hell",
+ "▁Pa ulo",
+ "▁Paul o",
+ ". »",
+ "} ",
+ "fl ex",
+ "f lex",
+ "▁ко мп",
+ "▁ком п",
+ "on den",
+ "ond en",
+ "onde n",
+ "ac cept",
+ "▁miejs ce",
+ "H ub",
+ "all eng",
+ "alle ng",
+ "allen g",
+ "W N",
+ "▁implement ing",
+ "▁ лу",
+ "▁conf using",
+ "▁Inst all",
+ "▁ Install",
+ "▁r ou",
+ "▁ro u",
+ "▁ rou",
+ "▁про ек",
+ "Access or",
+ "Acc essor",
+ "ља шње",
+ "od io",
+ "odi o",
+ "▁app lies",
+ "ющи й",
+ "ю щий",
+ "▁M undial",
+ "Ét at",
+ "É tat",
+ "iet nam",
+ "hu m",
+ "h um",
+ "▁с бор",
+ "ord inate",
+ "ordin ate",
+ "Fran ce",
+ "Fr ance",
+ "F rance",
+ "▁p rend",
+ "▁pr end",
+ "▁pre nd",
+ "el temperaturen",
+ "▁trab aj",
+ "A xis",
+ "▁м но",
+ "prim ary",
+ "▁Se ite",
+ "▁Seit e",
+ "per mission",
+ "perm ission",
+ "▁or den",
+ "▁ord en",
+ "▁ orden",
+ "sin ce",
+ "s ince",
+ "▁i c",
+ "▁ ic",
+ "▁Bra zil",
+ "▁b are",
+ "▁bar e",
+ "▁ba re",
+ "▁ bare",
+ "▁N ar",
+ "▁Na r",
+ "▁J ur",
+ "▁Ju r",
+ "▁fre edom",
+ "▁free dom",
+ "▁med ical",
+ "▁medic al",
+ "▁medi cal",
+ "isch of",
+ "isc hof",
+ "▁с п",
+ "ie ż",
+ "▁boot strap",
+ "▁ bootstrap",
+ "▁ …",
+ "▁fa cil",
+ "▁fac il",
+ "co rd",
+ "cor d",
+ "c ord",
+ "ва не",
+ "ван е",
+ "в ане",
+ "▁Al len",
+ "▁All en",
+ "▁Alle n",
+ "av id",
+ "avi d",
+ "a vid",
+ "ing ham",
+ "za s",
+ "z as",
+ "▁in spect",
+ "▁ins pect",
+ "▁insp ect",
+ "it ten",
+ "itt en",
+ "itte n",
+ "os ti",
+ "ost i",
+ "u h",
+ "c é",
+ "▁# ####",
+ "▁### ##",
+ "▁#### #",
+ "ci us",
+ "ciu s",
+ "c ius",
+ "om y",
+ "o my",
+ "▁Se ine",
+ "▁Sein e",
+ "bre s",
+ "br es",
+ "b res",
+ "▁gen us",
+ "▁genu s",
+ "O ther",
+ "▁Gold en",
+ "▁Gol den",
+ "mu l",
+ "m ul",
+ "▁Спо љашње",
+ "▁gen naio",
+ "▁care fully",
+ "▁careful ly",
+ "aa l",
+ "a al",
+ "▁anal yt",
+ "▁analy t",
+ "ne ur",
+ "n eur",
+ "▁st retch",
+ "▁str etch",
+ "▁O cc",
+ "▁ Occ",
+ "ol as",
+ "ola s",
+ "o las",
+ "▁fire base",
+ "▁ firebase",
+ "▁expect ing",
+ "bas ic",
+ "cond ition",
+ "pr ov",
+ "pro v",
+ "p rov",
+ "▁W asser",
+ "▁Was ser",
+ "▁Wass er",
+ "▁conc aten",
+ "▁e vil",
+ "▁ev il",
+ "▁coefficient s",
+ "We st",
+ "W est",
+ "ir y",
+ "i ry",
+ "ph as",
+ "pha s",
+ "p has",
+ "▁J am",
+ "▁Ja m",
+ "fo is",
+ "f ois",
+ "▁cons id",
+ "▁main ten",
+ "▁mai nten",
+ "ni m",
+ "n im",
+ "es ser",
+ "ess er",
+ "esse r",
+ "es z",
+ "e sz",
+ "un ta",
+ "unt a",
+ "ue st",
+ "ues t",
+ "u est",
+ "▁cred entials",
+ "_ ;",
+ "Di m",
+ "D im",
+ "пре де",
+ "пр еде",
+ "▁B ü",
+ "bu ilt",
+ "▁A cadem",
+ "▁Ac adem",
+ "▁a udi",
+ "▁au di",
+ "▁aud i",
+ "▁ audi",
+ "▁tv å",
+ "in and",
+ "ina nd",
+ "▁The ater",
+ "▁gen re",
+ "ço s",
+ "ç os",
+ "gres ql",
+ "gre sql",
+ "▁we ap",
+ "▁R ab",
+ "▁Ra b",
+ "▁ ’",
+ "▁ad ult",
+ "▁d ém",
+ "▁dé m",
+ "` `",
+ "▁st abil",
+ "▁sta bil",
+ "▁correspond s",
+ "▁E astern",
+ "▁East ern",
+ "un nel",
+ "unn el",
+ "Work er",
+ "▁c oh",
+ "▁co h",
+ "л ка",
+ "▁Mass achusetts",
+ "pi o",
+ "p io",
+ "▁por ts",
+ "▁port s",
+ "▁ ports",
+ "ag g",
+ "a gg",
+ "▁De bug",
+ "▁Deb ug",
+ "▁ Debug",
+ "▁bre ath",
+ "MI N",
+ "M IN",
+ "Vari able",
+ "bat ch",
+ "b atch",
+ "сс е",
+ "с се",
+ "▁p reg",
+ "▁pr eg",
+ "▁pre g",
+ "▁r oles",
+ "▁ro les",
+ "▁role s",
+ "▁rol es",
+ "pa ste",
+ "pas te",
+ "p aste",
+ "▁refer enced",
+ "▁reference d",
+ "ad rat",
+ "adr at",
+ "ч ё",
+ "bin om",
+ "bi nom",
+ "▁def ining",
+ "▁defin ing",
+ "▁Bud apest",
+ "▁д ви",
+ "▁ дви",
+ "▁t aught",
+ "▁h ole",
+ "▁ho le",
+ "▁hol e",
+ "▁ hole",
+ "▁qu ella",
+ "▁que lla",
+ "▁quel la",
+ "M sg",
+ "as ka",
+ "ask a",
+ "a ska",
+ "sc an",
+ "s can",
+ "▁pro pose",
+ "▁prop ose",
+ "▁propos e",
+ "▁Би ография",
+ "{{ \\",
+ "{ {\\",
+ "text t",
+ "tex tt",
+ "▁A lb",
+ "▁Al b",
+ "▁Syd ney",
+ "▁back up",
+ "▁cre dit",
+ "▁cr edit",
+ "▁cred it",
+ "▁фран цу",
+ "st ats",
+ "sta ts",
+ "stat s",
+ "\\\" :",
+ "\\ \":",
+ "▁П ере",
+ "▁Пер е",
+ "▁Пе ре",
+ "▁according ly",
+ "▁accord ingly",
+ "▁L en",
+ "▁Le n",
+ "▁ Len",
+ "zn a",
+ "z na",
+ "▁Reg ional",
+ "▁Region al",
+ "▁и зда",
+ "▁из да",
+ "▁j ú",
+ "hi stor",
+ "his tor",
+ "h istor",
+ "▁ent ities",
+ "St ar",
+ "S tar",
+ "он е",
+ "о не",
+ "'] ['",
+ "' ]['",
+ "▁N ova",
+ "▁No va",
+ "▁Nov a",
+ "di e",
+ "d ie",
+ "▁` '",
+ "▁ `'",
+ "▁ob ten",
+ "▁obt en",
+ "an st",
+ "ans t",
+ "▁Re lig",
+ "▁Rel ig",
+ "▁t rig",
+ "▁tr ig",
+ "▁tri g",
+ "▁ре жи",
+ "▁Person al",
+ "▁Pers onal",
+ "▁t one",
+ "▁to ne",
+ "▁ton e",
+ "▁a id",
+ "▁ai d",
+ "Vis ual",
+ "Sub mit",
+ "▁mov es",
+ "▁mo ves",
+ "▁move s",
+ "▁B ridge",
+ "▁Br idge",
+ "▁B oy",
+ "▁Bo y",
+ "▁accur ate",
+ "os ta",
+ "ost a",
+ "o sta",
+ "at to",
+ "att o",
+ "a tto",
+ "▁defe ated",
+ "▁defeat ed",
+ "▁data b",
+ "▁da tab",
+ "▁dat ab",
+ "▁ datab",
+ "gi nx",
+ "gin x",
+ "g inx",
+ "▁L iv",
+ "▁Li v",
+ "ly wood",
+ "T W",
+ "ri um",
+ "r ium",
+ "ip ped",
+ "ipp ed",
+ "i pped",
+ "Fa il",
+ "F ail",
+ "RE QUEST",
+ "▁ign or",
+ "▁ig nor",
+ "▁s itting",
+ "▁sit ting",
+ "▁sitt ing",
+ "▁mol to",
+ "▁molt o",
+ "▁end point",
+ "▁ endpoint",
+ "uc ión",
+ "u ción",
+ "▁col lections",
+ "▁collection s",
+ "▁collect ions",
+ "▁colle ctions",
+ "▁ collections",
+ "▁Т у",
+ "tem bre",
+ "t embre",
+ "▁né cess",
+ "▁inter act",
+ "▁inte ract",
+ "▁o tras",
+ "▁ot ras",
+ "▁otra s",
+ "▁c urr",
+ "▁cu rr",
+ "▁cur r",
+ "▁ curr",
+ "▁tr acks",
+ "▁tra cks",
+ "▁track s",
+ "▁trac ks",
+ "▁fam ília",
+ "▁numer ical",
+ "▁numeric al",
+ "le gt",
+ "leg t",
+ "] /",
+ "▁M ario",
+ "▁Mar io",
+ "▁Ma rio",
+ "▁Mari o",
+ "▁t ort",
+ "▁to rt",
+ "▁tor t",
+ "b g",
+ "ss l",
+ "s sl",
+ "text tt",
+ "textt t",
+ "▁s park",
+ "▁sp ark",
+ "▁ spark",
+ "ди и",
+ "▁prob able",
+ "%% %%",
+ "ph ia",
+ "phi a",
+ "], [",
+ "] ,[",
+ "▁bo xes",
+ "▁box es",
+ "▁a cadem",
+ "▁ac adem",
+ "▁S lo",
+ "▁Sl o",
+ "äu de",
+ "ä ude",
+ "▁wit ness",
+ "▁ed iting",
+ "▁edit ing",
+ "ли на",
+ "лин а",
+ "▁look up",
+ "▁ lookup",
+ "▁B uck",
+ "▁Bu ck",
+ "▁Buc k",
+ "д ня",
+ "▁j ours",
+ "▁jo urs",
+ "▁jou rs",
+ "▁jour s",
+ "▁ jours",
+ "++ ){",
+ "++) {",
+ "▁ind ices",
+ "▁indic es",
+ "▁f light",
+ "▁fl ight",
+ "▁com putation",
+ "▁comput ation",
+ "Pl ugin",
+ "▁real ize",
+ "▁realiz e",
+ "is set",
+ "iss et",
+ "isse t",
+ "▁deriv ative",
+ "line width",
+ "bu nd",
+ "b und",
+ "▁t hor",
+ "▁th or",
+ "▁. =",
+ "▁ .=",
+ "▁s í",
+ "▁C lick",
+ "▁Cl ick",
+ "▁ Click",
+ "▁Seb ast",
+ "> '",
+ "hav ior",
+ "le i",
+ "l ei",
+ "ul f",
+ "▁ge ometry",
+ "▁geom etry",
+ "▁geomet ry",
+ "▁ geometry",
+ "pr ev",
+ "pre v",
+ "p rev",
+ "em pl",
+ "emp l",
+ "▁L é",
+ "an son",
+ "ans on",
+ "▁A lice",
+ "▁Al ice",
+ "▁Ali ce",
+ "pro totype",
+ "proto type",
+ "RE AD",
+ "ic ular",
+ "icul ar",
+ "i cular",
+ "▁б і",
+ "▁ бі",
+ "▁deutsch e",
+ "▁Re present",
+ "si tes",
+ "site s",
+ "s ites",
+ "▁Me an",
+ "▁d iss",
+ "▁di ss",
+ "▁dis s",
+ "▁Z ur",
+ "▁Zu r",
+ "▁п рез",
+ "▁пре з",
+ "▁пр ез",
+ "PA R",
+ "P AR",
+ "▁' #",
+ "▁D ra",
+ "▁Dr a",
+ "▁ Dra",
+ "со н",
+ "с он",
+ "▁ste ht",
+ "mar kt",
+ "mark t",
+ "▁e ase",
+ "▁eas e",
+ "Draw ing",
+ "Dra wing",
+ "= %",
+ "St op",
+ "Sto p",
+ "S top",
+ "▁s erving",
+ "▁ser ving",
+ "▁serv ing",
+ "▁servi ng",
+ "▁tak że",
+ "▁D NS",
+ "▁liter al",
+ "▁lit eral",
+ "Di e",
+ "D ie",
+ "▁в ос",
+ "▁во с",
+ "▁sen ior",
+ "ac ion",
+ "aci on",
+ "a cion",
+ "▁u buntu",
+ "▁ub untu",
+ "▁ ubuntu",
+ "▁Frank furt",
+ "▁Sun day",
+ "▁Sund ay",
+ "á b",
+ "▁jour ney",
+ "▁journ ey",
+ "is sa",
+ "iss a",
+ "ber ry",
+ "▁s ep",
+ "▁se p",
+ "▁ sep",
+ "▁i on",
+ "▁io n",
+ "▁ ion",
+ "wer t",
+ "we rt",
+ "w ert",
+ "or szág",
+ "orsz ág",
+ "ser ve",
+ "serv e",
+ "s erve",
+ "▁Mil ano",
+ "▁Milan o",
+ "▁ве ка",
+ "ра х",
+ "▁ию ля",
+ "▁man era",
+ "▁st ations",
+ "▁stat ions",
+ "▁station s",
+ "▁stati ons",
+ "▁adopt ed",
+ "▁any body",
+ "VER SION",
+ "F E",
+ "do rf",
+ "dor f",
+ "d orf",
+ ".. .,",
+ "... ,",
+ "▁обра зова",
+ "▁образ ова",
+ "Log ger",
+ "фи циаль",
+ "фици аль",
+ "WR ITE",
+ "▁h am",
+ "▁ha m",
+ "▁ ham",
+ "▁F uture",
+ "▁Fut ure",
+ "▁ Future",
+ "ot en",
+ "ote n",
+ "o ten",
+ "▁A G",
+ "▁ AG",
+ "▁t rained",
+ "▁tr ained",
+ "▁tra ined",
+ "▁train ed",
+ "▁N ich",
+ "▁Nic h",
+ "▁Ni ch",
+ "▁un iversity",
+ "▁univers ity",
+ "▁Olymp ics",
+ "▁Olympic s",
+ "▁d oit",
+ "▁do it",
+ "▁doi t",
+ "▁cult ural",
+ "▁cultura l",
+ "Con f",
+ "▁Con ference",
+ "or no",
+ "orn o",
+ "▁M P",
+ "▁ MP",
+ "▁b ou",
+ "▁bo u",
+ "ci n",
+ "c in",
+ "Hi gh",
+ "H igh",
+ "ann te",
+ "annt e",
+ "▁display ing",
+ "▁ch apter",
+ "▁chap ter",
+ "▁ chapter",
+ "▁Fra uen",
+ "▁Frau en",
+ "▁real ized",
+ "▁realiz ed",
+ "▁realize d",
+ "▁attempt ed",
+ "▁pre ferred",
+ "▁prefer red",
+ "Da t",
+ "D at",
+ "▁tr ouve",
+ "▁tro uve",
+ "▁trou ve",
+ "▁trouv e",
+ "▁int ention",
+ "▁intent ion",
+ "▁inten tion",
+ "▁Not ice",
+ "tim estamp",
+ "* (",
+ "▁Ш а",
+ "an as",
+ "ana s",
+ "a nas",
+ "cl a",
+ "c la",
+ "is z",
+ "i sz",
+ "tb l",
+ "t bl",
+ "Ar r",
+ "A rr",
+ "▁in verse",
+ "▁ter rible",
+ "▁occup ied",
+ "J AX",
+ "< -",
+ "▁Phil osoph",
+ "▁Cor ps",
+ "bu ilder",
+ "build er",
+ "▁beg ins",
+ "▁begin s",
+ "▁c ensus",
+ "▁cens us",
+ ". ’",
+ "▁pro ven",
+ "▁pr oven",
+ "▁prov en",
+ "▁prove n",
+ "met ric",
+ "▁incre ases",
+ "▁increase s",
+ "wi ch",
+ "w ich",
+ "▁A BC",
+ "▁AB C",
+ "▁ ABC",
+ "project s",
+ "▁T hor",
+ "▁Th or",
+ "▁conf idence",
+ "▁u fficiale",
+ "el m",
+ "e lm",
+ "▁g arden",
+ "▁gar den",
+ "▁gard en",
+ "▁rob ust",
+ "▁cos ì",
+ "ie dz",
+ "ied z",
+ "▁Is lam",
+ "▁Add ress",
+ "▁ Address",
+ "▁div ide",
+ "▁divid e",
+ "▁E u",
+ "ca tal",
+ "cat al",
+ "c atal",
+ "de tail",
+ "det ail",
+ "ep endant",
+ "f g",
+ "▁b ew",
+ "▁be w",
+ "▁ bew",
+ "▁f is",
+ "▁fi s",
+ "▁B O",
+ "▁ BO",
+ "▁w sp",
+ "▁ws p",
+ "▁p ipeline",
+ "▁pip eline",
+ "▁pipe line",
+ "h d",
+ "▁S ession",
+ "▁ Session",
+ "lä nd",
+ "l änd",
+ "iv eau",
+ "ive au",
+ "es tr",
+ "est r",
+ "e str",
+ "▁p article",
+ "▁part icle",
+ "▁partic le",
+ "▁parti cle",
+ "▁lar avel",
+ "▁ laravel",
+ "pi c",
+ "p ic",
+ "▁n au",
+ "▁na u",
+ "▁f ins",
+ "▁fin s",
+ "▁fi ns",
+ "▁V il",
+ "▁Vi l",
+ "▁f us",
+ "▁fu s",
+ "▁qu asi",
+ "oper ation",
+ "opera tion",
+ "▁al ler",
+ "▁all er",
+ "▁alle r",
+ "▁ aller",
+ "▁an aly",
+ "▁anal y",
+ "▁ analy",
+ "▁О н",
+ "▁M es",
+ "▁Me s",
+ "▁о пера",
+ "▁оп ера",
+ "▁hand led",
+ "▁handle d",
+ "▁de prec",
+ "▁dep rec",
+ "tt o",
+ "t to",
+ "▁E k",
+ "▁st ran",
+ "▁str an",
+ "▁stra n",
+ "▁ang lais",
+ "ju re",
+ "j ure",
+ "▁Sil ver",
+ "▁close ly",
+ "▁clos ely",
+ "en kins",
+ "enk ins",
+ "an os",
+ "ano s",
+ "a nos",
+ "st ed",
+ "ste d",
+ "s ted",
+ "▁сент ября",
+ "br and",
+ "bra nd",
+ "b rand",
+ "нь о",
+ "▁prés ent",
+ "▁pré sent",
+ "ro k",
+ "r ok",
+ "mo unt",
+ "m ount",
+ "▁Anth ony",
+ "▁Further more",
+ "in ha",
+ "▁ар хи",
+ "▁раз ли",
+ "▁окт ября",
+ "▁p int",
+ "▁pi nt",
+ "▁pin t",
+ "n ý",
+ "pt s",
+ "p ts",
+ "▁ital ien",
+ "▁ре ги",
+ "ле з",
+ "л ез",
+ "ди на",
+ "дин а",
+ "ather ine",
+ "In ternal",
+ "Int ernal",
+ "Inter nal",
+ "Intern al",
+ "Qu estion",
+ "▁sett lement",
+ "▁В се",
+ "▁fol ders",
+ "▁folder s",
+ "д ри",
+ "▁val or",
+ "▁va lor",
+ "▁M iller",
+ "▁Mil ler",
+ "▁Mill er",
+ "▁As sert",
+ "▁Ass ert",
+ "▁ Assert",
+ "▁pat ient",
+ "▁N ieder",
+ "▁Ni eder",
+ "▁Nie der",
+ "▁Nied er",
+ "▁E P",
+ "▁ EP",
+ "▁A gr",
+ "▁Ag r",
+ "▁o nde",
+ "▁on de",
+ "▁ onde",
+ "▁s cop",
+ "▁sc op",
+ "▁ scop",
+ "se quence",
+ "sequ ence",
+ "▁P L",
+ "▁ PL",
+ "▁se ek",
+ "▁see k",
+ "java se",
+ "jav ase",
+ "▁V ector",
+ "▁Ve ctor",
+ "▁Vec tor",
+ "▁ Vector",
+ "▁n á",
+ "▁ ná",
+ "▁categor ía",
+ "cl one",
+ "clo ne",
+ "N R",
+ "av ailable",
+ "▁B esch",
+ "▁Be sch",
+ "▁Bes ch",
+ "▁e clipse",
+ "▁ec lipse",
+ "▁ eclipse",
+ "wick lung",
+ "dep loy",
+ "en ie",
+ "eni e",
+ "e nie",
+ "▁\" )",
+ "▁ \")",
+ "äs t",
+ "ä st",
+ "▁s ync",
+ "▁syn c",
+ "▁sy nc",
+ "▁ sync",
+ "CO DE",
+ "▁Ч е",
+ "▁flo ating",
+ "▁float ing",
+ "/ `",
+ "▁ret ired",
+ "▁retir ed",
+ "de b",
+ "d eb",
+ "▁part icul",
+ "▁partic ul",
+ "▁parti cul",
+ "▁coll ected",
+ "▁collect ed",
+ "▁colle cted",
+ "▁down loaded",
+ "▁download ed",
+ "ni ce",
+ "nic e",
+ "n ice",
+ "▁B uffer",
+ "▁Buff er",
+ "▁ Buffer",
+ "▁Acc ount",
+ "▁Ac count",
+ "▁ Account",
+ "▁m aggio",
+ "▁mag gio",
+ "▁ре да",
+ "▁ред а",
+ "▁s ales",
+ "▁sa les",
+ "▁sal es",
+ "▁sale s",
+ "▁statunit ense",
+ "▁K i",
+ "▁F err",
+ "▁Fe rr",
+ "▁Fer r",
+ "Lo ck",
+ "Loc k",
+ "L ock",
+ "▁Is abel",
+ "▁Isa bel",
+ "cl ar",
+ "cla r",
+ "c lar",
+ "▁p ov",
+ "▁po v",
+ "at ra",
+ "atr a",
+ "a tra",
+ "▁Fr au",
+ "▁Fra u",
+ "▁sort ing",
+ "▁sor ting",
+ "▁sorti ng",
+ "▁phr ase",
+ "▁апре ля",
+ "▁дея тель",
+ "▁And ré",
+ "def inition",
+ "defin ition",
+ "writ ing",
+ "wr iting",
+ "ér é",
+ "é ré",
+ "щ у",
+ "▁O rd",
+ "▁Or d",
+ "▁ Ord",
+ "▁r um",
+ "▁ru m",
+ "▁ rum",
+ "▁T urk",
+ "▁Tur k",
+ "▁I van",
+ "th eless",
+ "the less",
+ "▁г и",
+ "▁ ги",
+ "▁s ake",
+ "▁sa ke",
+ "▁B ased",
+ "▁Bas ed",
+ "▁Ba sed",
+ "▁Base d",
+ "de ck",
+ "dec k",
+ "or us",
+ "oru s",
+ "o rus",
+ "▁tut ti",
+ "▁b lan",
+ "▁bl an",
+ "▁bla n",
+ "▁П у",
+ "De tail",
+ "Det ail",
+ "▁Н о",
+ "▁S ky",
+ "▁Sk y",
+ "▁p rès",
+ "▁pr ès",
+ "▁ près",
+ "мо й",
+ "col n",
+ "co ln",
+ "че ской",
+ "et i",
+ "e ti",
+ "▁ar row",
+ "▁arr ow",
+ "▁ arrow",
+ "▁C ha",
+ "▁Ch a",
+ "ch mark",
+ "œ ur",
+ "fa b",
+ "f ab",
+ "ку ль",
+ "Grid View",
+ "▁Back ground",
+ "▁ Background",
+ "s n",
+ "▁segu ito",
+ "▁n ic",
+ "▁ni c",
+ "▁ nic",
+ "co u",
+ "c ou",
+ "ті в",
+ "т ів",
+ "▁b zw",
+ "add EventListener",
+ "syn c",
+ "s ync",
+ "az zo",
+ "azz o",
+ "ab stract",
+ "as sets",
+ "ass ets",
+ "asse ts",
+ "asset s",
+ "▁D ru",
+ "▁Dr u",
+ "з д",
+ "ord net",
+ "▁b igger",
+ "▁big ger",
+ "▁initial ized",
+ "▁initialize d",
+ "ка з",
+ "og ene",
+ "ogen e",
+ "oge ne",
+ "vi ously",
+ "vious ly",
+ "v iously",
+ "▁g uid",
+ "▁gu id",
+ "scheid ung",
+ "▁Z ent",
+ "▁Ze nt",
+ "▁fr ames",
+ "▁frame s",
+ "▁fra mes",
+ "▁fram es",
+ "▁ frames",
+ "ri eben",
+ "rie ben",
+ "rieb en",
+ "r ieben",
+ "▁iss ued",
+ "▁issue d",
+ "▁issu ed",
+ "▁d ow",
+ "▁do w",
+ "▁descri bes",
+ "▁describe s",
+ "il st",
+ "ils t",
+ "i lst",
+ "▁c riteria",
+ "▁crit eria",
+ "▁criter ia",
+ "▁gentle man",
+ "Bas ic",
+ "ne z",
+ "n ez",
+ "De v",
+ "D ev",
+ "Mo ve",
+ "M ove",
+ "▁est aba",
+ "▁estab a",
+ "▁esta ba",
+ "▁set tembre",
+ "▁sett embre",
+ "circ le",
+ "cir cle",
+ "▁f ais",
+ "▁fa is",
+ "▁m yst",
+ "▁my st",
+ "▁arch iv",
+ "▁ archiv",
+ "d ynamic",
+ "j à",
+ "it as",
+ "ita s",
+ "▁я кий",
+ "▁d or",
+ "▁do r",
+ "▁ dor",
+ "▁Am azon",
+ "▁Ama zon",
+ "▁ne ces",
+ "▁Mar cel",
+ "▁Marc el",
+ "▁e lla",
+ "▁el la",
+ "▁ell a",
+ "▁ ella",
+ "ро к",
+ "р ок",
+ "▁Pennsylvan ia",
+ "cul ar",
+ "cu lar",
+ "c ular",
+ "Pa ck",
+ "P ack",
+ "it age",
+ "ita ge",
+ "▁B urn",
+ "▁Bu rn",
+ "▁Bur n",
+ "▁R O",
+ "▁ RO",
+ "▁о ни",
+ "▁он и",
+ "▁ они",
+ "~ $",
+ "Te X",
+ "as sign",
+ "ass ign",
+ "▁be at",
+ "id ense",
+ "iden se",
+ "ac ent",
+ "ace nt",
+ "a cent",
+ "Al ert",
+ "▁str ateg",
+ "▁strat eg",
+ "▁mån aden",
+ "LO C",
+ "L OC",
+ "▁c atalog",
+ "▁cat alog",
+ "▁catal og",
+ "▁ catalog",
+ "print StackTrace",
+ "() ).",
+ "()) .",
+ "( )).",
+ "us ted",
+ "ust ed",
+ "u sted",
+ "▁Frame work",
+ "▁ Framework",
+ "EC K",
+ "E CK",
+ "▁a té",
+ "▁at é",
+ "Frame work",
+ "▁att acks",
+ "▁attack s",
+ "▁B ert",
+ "▁Be rt",
+ "▁Ber t",
+ "▁т ран",
+ "▁тра н",
+ ": %",
+ "ar si",
+ "ars i",
+ "not ation",
+ "▁log ical",
+ "▁logic al",
+ "we et",
+ "▁vis ited",
+ "▁visit ed",
+ "br u",
+ "b ru",
+ "▁sur prise",
+ "▁surpr ise",
+ "^ ^",
+ "in ale",
+ "inal e",
+ "ina le",
+ "rem ote",
+ "'} ,",
+ "' },",
+ "Syn tax",
+ "S yntax",
+ "ia ne",
+ "ian e",
+ "i ane",
+ "on nen",
+ "onn en",
+ "onne n",
+ "▁bre aking",
+ "▁break ing",
+ "par ser",
+ "parse r",
+ "ap k",
+ "a pk",
+ "▁Mig uel",
+ "▁ §",
+ "▁act ing",
+ "▁ac ting",
+ "▁g ebru",
+ "▁ge bru",
+ "▁geb ru",
+ "At Index",
+ "ють ся",
+ "ю ться",
+ "▁of fers",
+ "▁off ers",
+ "▁offer s",
+ "▁p rac",
+ "▁pr ac",
+ "▁pra c",
+ "▁g rant",
+ "▁gr ant",
+ "▁gra nt",
+ "▁gran t",
+ "tern oon",
+ "▁ac quired",
+ "▁acqu ired",
+ "▁N y",
+ "▁com ma",
+ "▁comm a",
+ "ní k",
+ "n ík",
+ "▁St ep",
+ "▁Ste p",
+ "▁ Step",
+ "in ners",
+ "inn ers",
+ "inner s",
+ "▁S A",
+ "▁ SA",
+ "▁w at",
+ "▁wa t",
+ "da ys",
+ "day s",
+ "d ays",
+ "▁rect angle",
+ "da r",
+ "d ar",
+ "▁t rac",
+ "▁tr ac",
+ "▁tra c",
+ "▁Ind ones",
+ "▁feed back",
+ "▁bre aks",
+ "▁break s",
+ "part ition",
+ "ic ans",
+ "ica ns",
+ "ican s",
+ "▁Not ices",
+ "▁Notice s",
+ "▁impro ved",
+ "▁improve d",
+ "▁improv ed",
+ "▁impr oved",
+ "ph an",
+ "pha n",
+ "p han",
+ "▁differ ential",
+ "▁different ial",
+ "▁differenti al",
+ "script s",
+ "scri pts",
+ "▁X III",
+ "▁XII I",
+ "▁XI II",
+ "▁L abor",
+ "▁La bor",
+ "▁Lab or",
+ "▁prec ision",
+ "▁precis ion",
+ "▁s eed",
+ "▁se ed",
+ "▁see d",
+ "▁ seed",
+ "bund le",
+ "b undle",
+ "id ents",
+ "ident s",
+ "iden ts",
+ "hr e",
+ "h re",
+ "▁Doug las",
+ "ul d",
+ "u ld",
+ "▁second ary",
+ "▁seconda ry",
+ "▁b rig",
+ "▁br ig",
+ "▁confirm ed",
+ "▁confir med",
+ "▁cla ims",
+ "▁claim s",
+ "Ro le",
+ "R ole",
+ "▁Jew ish",
+ "▁p řed",
+ "▁př ed",
+ "▁ho tel",
+ "▁hot el",
+ "▁comp te",
+ "▁compt e",
+ "▁rec ursive",
+ "▁recurs ive",
+ "](# )",
+ "▁rot ate",
+ "▁ rotate",
+ "▁ch rome",
+ "▁chr ome",
+ "▁chrom e",
+ "▁ chrome",
+ "in ea",
+ "ine a",
+ "i nea",
+ "%; \r",
+ "% ;\r",
+ "▁En vironment",
+ "▁ Environment",
+ "pl atz",
+ "pla tz",
+ "▁Sing le",
+ "▁Sin gle",
+ "▁ Single",
+ "▁s event",
+ "▁se vent",
+ "▁seven t",
+ "▁pos ting",
+ "▁post ing",
+ "▁de aling",
+ "▁deal ing",
+ "param eters",
+ "parameter s",
+ "гра ф",
+ "Auth entication",
+ "to uch",
+ "t ouch",
+ "A z",
+ "▁g ray",
+ "▁gr ay",
+ "▁gra y",
+ "▁ gray",
+ "en cing",
+ "enc ing",
+ "enci ng",
+ "bold math",
+ "▁сай те",
+ "▁сайт е",
+ "▁Z a",
+ "an je",
+ "▁p olar",
+ "▁po lar",
+ "▁pol ar",
+ "▁у ли",
+ "ki l",
+ "k il",
+ "▁h over",
+ "▁ho ver",
+ "▁ hover",
+ "▁RE ST",
+ "▁C ome",
+ "▁Com e",
+ "▁Co me",
+ "▁ Come",
+ "j b",
+ "▁Georg ia",
+ "▁Est ado",
+ "▁Esta do",
+ "▁Estad o",
+ "Output Stream",
+ "ћ и",
+ "▁d ump",
+ "▁du mp",
+ "▁ dump",
+ "▁A ge",
+ "▁Ag e",
+ "▁ Age",
+ "▁s wo",
+ "▁sw o",
+ "m obile",
+ "oc cup",
+ "occ up",
+ "ше го",
+ "ш его",
+ "▁const itution",
+ "▁constitu tion",
+ "▁constit ution",
+ "go od",
+ "g ood",
+ "ak u",
+ "a ku",
+ "▁а нг",
+ "▁ан г",
+ "▁ анг",
+ "ie ck",
+ "iec k",
+ "▁Ps ych",
+ "▁ro ots",
+ "▁root s",
+ "▁v est",
+ "▁ve st",
+ "▁ves t",
+ "▁ vest",
+ "▁го дах",
+ "▁года х",
+ "▁Rep ública",
+ "▁p ian",
+ "▁pi an",
+ "▁pia n",
+ "igr ation",
+ "▁pr éc",
+ "▁pré c",
+ "▁gener ates",
+ "▁generate s",
+ "L Y",
+ "( `",
+ "▁= ~",
+ "ше ния",
+ "▁R ah",
+ "▁Ra h",
+ "▁connect ing",
+ "ž í",
+ "▁f ő",
+ "▁a ppel",
+ "▁app el",
+ "▁ap pel",
+ "▁appe l",
+ "▁Rail way",
+ "г ли",
+ "▁dével opp",
+ "▁a po",
+ "▁ap o",
+ "fr an",
+ "fra n",
+ "f ran",
+ "▁im mediate",
+ "▁immedi ate",
+ "во го",
+ "в ого",
+ "Run ner",
+ "ä g",
+ "Some thing",
+ "S omething",
+ "▁gén éra",
+ "Event Args",
+ "in ction",
+ "inc tion",
+ "inct ion",
+ "gl y",
+ "g ly",
+ "▁D ue",
+ "▁Du e",
+ "▁p rost",
+ "▁pro st",
+ "▁pr ost",
+ "▁pros t",
+ "▁refer ring",
+ "▁j og",
+ "▁jo g",
+ "▁exec utable",
+ "▁execut able",
+ "▁D ream",
+ "▁Dre am",
+ "ac s",
+ "a cs",
+ "▁C ole",
+ "▁Col e",
+ "▁Co le",
+ "am pf",
+ "amp f",
+ "▁B is",
+ "▁Bi s",
+ "▁ию ня",
+ "li eder",
+ "lied er",
+ "lie der",
+ "l ieder",
+ "те к",
+ "т ек",
+ "▁v b",
+ "▁ vb",
+ "▁m om",
+ "▁mo m",
+ "▁: (",
+ "▁ :(",
+ "▁der nier",
+ "▁derni er",
+ "' =>",
+ "▁э того",
+ "▁это го",
+ "▁ne ue",
+ "▁neu e",
+ "▁Ч а",
+ "▁weiter e",
+ "▁weit ere",
+ "▁al leg",
+ "▁all eg",
+ "▁alle g",
+ "▁re ality",
+ "▁real ity",
+ "▁jud ge",
+ "▁B alt",
+ "▁Ba lt",
+ "▁Bal t",
+ "▁t hin",
+ "▁th in",
+ "▁G ed",
+ "▁Ge d",
+ "ie val",
+ "iev al",
+ "i eval",
+ "m x",
+ "ці ональ",
+ "▁вы пу",
+ "▁I X",
+ "▁ IX",
+ "▁bl ind",
+ "▁Mo tor",
+ "▁Mot or",
+ "▁ш а",
+ "▁ ша",
+ "▁approxim ation",
+ "da m",
+ "d am",
+ "▁f og",
+ "▁fo g",
+ "▁ fog",
+ "ко р",
+ "к ор",
+ "▁W rit",
+ "▁l ing",
+ "▁li ng",
+ "▁lin g",
+ "▁ ling",
+ "▁пи са",
+ "▁ писа",
+ "▁M ars",
+ "▁Mar s",
+ "▁Ma rs",
+ "ot ti",
+ "ott i",
+ "En um",
+ "E num",
+ "▁T rib",
+ "▁Tr ib",
+ "▁Tri b",
+ "▁m erc",
+ "▁me rc",
+ "▁mer c",
+ "zu ng",
+ "z ung",
+ "van ced",
+ "v anced",
+ "cf g",
+ "c fg",
+ "на х",
+ "sch en",
+ "sc hen",
+ "sche n",
+ "s chen",
+ "\"] .",
+ "\" ].",
+ "be k",
+ "b ek",
+ "▁s ter",
+ "▁st er",
+ "▁ste r",
+ "▁ ster",
+ "j p",
+ "▁R ap",
+ "▁Ra p",
+ "▁rec ording",
+ "▁record ing",
+ "▁pe int",
+ "▁l ets",
+ "▁le ts",
+ "▁let s",
+ "▁ lets",
+ "än ge",
+ "äng e",
+ ">\" ;",
+ "> \";",
+ "▁міс це",
+ "▁c aval",
+ "▁ca val",
+ "▁cav al",
+ "▁C SV",
+ "▁CS V",
+ "▁ent stand",
+ "▁hel per",
+ "▁help er",
+ "▁ helper",
+ "en det",
+ "end et",
+ "ende t",
+ "▁G ram",
+ "▁Gr am",
+ "▁Gra m",
+ "▁D iego",
+ "▁Die go",
+ "▁Di ego",
+ "▁B ishop",
+ "▁Bi shop",
+ "TA G",
+ "T AG",
+ "▁e cc",
+ "▁ec c",
+ "▁E en",
+ "▁A V",
+ "▁ AV",
+ "C ity",
+ "▁Gu ide",
+ "hi nd",
+ "hin d",
+ "h ind",
+ "ri cal",
+ "ric al",
+ "rica l",
+ "r ical",
+ "▁Ос нов",
+ "Bu s",
+ "B us",
+ "▁z unächst",
+ "▁t ick",
+ "▁ti ck",
+ "▁ tick",
+ "▁Col onel",
+ "Th anks",
+ "Thank s",
+ "▁f erm",
+ "▁fe rm",
+ "▁fer m",
+ "▁gr anted",
+ "▁gran ted",
+ "▁grant ed",
+ "▁th reshold",
+ "omorph ic",
+ "▁H un",
+ "▁Hu n",
+ "en is",
+ "eni s",
+ "e nis",
+ "▁п рав",
+ "▁пра в",
+ "▁ прав",
+ "▁я кі",
+ "▁як і",
+ "P G",
+ "▁w s",
+ "▁ ws",
+ "▁techn ical",
+ "▁techni cal",
+ "est ro",
+ "estr o",
+ "kl är",
+ "k lär",
+ "va rs",
+ "var s",
+ "v ars",
+ "oc rat",
+ "ocr at",
+ "▁оп шти",
+ "on so",
+ "ons o",
+ "ib a",
+ "i ba",
+ "▁S ave",
+ "▁Sa ve",
+ "▁Sav e",
+ "▁ Save",
+ "▁program a",
+ "▁в ъ",
+ "▁inv ån",
+ ">( )",
+ "> ()",
+ "▁me jor",
+ "▁с лова",
+ "▁сло ва",
+ "▁rep lacement",
+ "▁replace ment",
+ "▁repla cement",
+ "▁im pr",
+ "▁imp r",
+ "▁Frances co",
+ "▁Ho tel",
+ "▁Hot el",
+ "▁UP DATE",
+ "▁ UPDATE",
+ "▁му зы",
+ "ug s",
+ "u gs",
+ "va rd",
+ "var d",
+ "v ard",
+ "▁f az",
+ "▁fa z",
+ "in ton",
+ "int on",
+ "into n",
+ "▁ar ts",
+ "▁art s",
+ "▁ arts",
+ "▁K y",
+ "▁I ls",
+ "▁Il s",
+ "▁s era",
+ "▁se ra",
+ "▁ser a",
+ "▁Vol ume",
+ "▁ Volume",
+ "▁gi ugno",
+ "▁a sym",
+ "▁as ym",
+ "▁P ir",
+ "▁Pi r",
+ "▁N AS",
+ "▁NA S",
+ "▁T am",
+ "▁Ta m",
+ "ě l",
+ "Se qu",
+ "Seq u",
+ "S equ",
+ "km al",
+ "k mal",
+ "▁E ins",
+ "▁Ein s",
+ "▁ком па",
+ "▁комп а",
+ "ob e",
+ "o be",
+ "oo r",
+ "o or",
+ "▁he ap",
+ "ct l",
+ "c tl",
+ "▁separ ately",
+ "▁separate ly",
+ "re ader",
+ "read er",
+ "rea der",
+ "▁signific antly",
+ "▁significant ly",
+ "▁L ag",
+ "▁La g",
+ "no tes",
+ "not es",
+ "note s",
+ "n otes",
+ "▁s ele",
+ "▁se le",
+ "▁sel e",
+ "▁dedic ated",
+ "▁H ost",
+ "▁Ho st",
+ "▁ Host",
+ "cho ice",
+ "wi ng",
+ "win g",
+ "w ing",
+ "▁T itel",
+ "▁Tit el",
+ "▁Ti tel",
+ "▁befind et",
+ "lar ge",
+ "larg e",
+ "▁con ten",
+ "▁cont en",
+ "▁co nten",
+ "▁conte n",
+ "Java Script",
+ "▁de ser",
+ "▁des er",
+ "▁G ordon",
+ "▁Gor don",
+ "с пе",
+ "▁p atri",
+ "▁pat ri",
+ "▁pa tri",
+ "▁patr i",
+ "▁R andom",
+ "▁Rand om",
+ "▁Ran dom",
+ "▁ Random",
+ "▁Return s",
+ "ы м",
+ "ро ма",
+ "ром а",
+ "▁Stud ies",
+ "S l",
+ "▁fr ü",
+ "TE XT",
+ "T EXT",
+ "in ate",
+ "ina te",
+ "▁T ol",
+ "▁To l",
+ "▁every where",
+ "ar ta",
+ "art a",
+ "▁or bit",
+ "▁orb it",
+ "▁A ires",
+ "▁Air es",
+ "▁I ss",
+ "▁Is s",
+ "▁te ż",
+ "▁d iverse",
+ "▁di verse",
+ "▁divers e",
+ "▁diver se",
+ "▁n umeric",
+ "▁numer ic",
+ "▁ numeric",
+ "ma z",
+ "m az",
+ "▁m ise",
+ "▁mi se",
+ "▁mis e",
+ "▁batt ery",
+ "▁batter y",
+ "▁bat tery",
+ "▁A kadem",
+ "▁Ak adem",
+ "не ние",
+ "▁simult ane",
+ "▁D ead",
+ "▁De ad",
+ "▁cl ust",
+ "▁ot ro",
+ "▁c erca",
+ "▁cer ca",
+ "() `,",
+ "()` ,",
+ "( )`,",
+ "ro z",
+ "r oz",
+ "ă t",
+ "▁M O",
+ "▁ MO",
+ "ri ften",
+ "rift en",
+ "rif ten",
+ "import ant",
+ "▁je ho",
+ "▁find ViewById",
+ "▁ findViewById",
+ "▁con sequence",
+ "▁conse quence",
+ "▁consequ ence",
+ "▁measure d",
+ "▁meas ured",
+ "is hes",
+ "ish es",
+ "▁s ze",
+ "▁sz e",
+ "ien do",
+ "i endo",
+ "▁W ahl",
+ "▁Wa hl",
+ "st rip",
+ "str ip",
+ "AR D",
+ "▁op acity",
+ "▁ opacity",
+ "WOR D",
+ "W ORD",
+ "▁В і",
+ "▁L ocation",
+ "▁Lo cation",
+ "▁Loc ation",
+ "▁ Location",
+ "ra i",
+ "r ai",
+ "пе н",
+ "п ен",
+ "▁r if",
+ "▁ri f",
+ "▁ rif",
+ "auss ian",
+ "File Name",
+ "▁dis co",
+ "▁disc o",
+ "il en",
+ "ile n",
+ "i len",
+ "▁v agy",
+ "▁va gy",
+ "li city",
+ "lic ity",
+ "licit y",
+ "l icity",
+ "B order",
+ "▁T rack",
+ "▁Tr ack",
+ "▁Tra ck",
+ "▁ Track",
+ "бо м",
+ "б ом",
+ "fa ct",
+ "fac t",
+ "f act",
+ "ok a",
+ "o ka",
+ "▁g ior",
+ "▁gi or",
+ "▁ gior",
+ "▁XV II",
+ "▁XVI I",
+ "▁d är",
+ "Si te",
+ "S ite",
+ "ał o",
+ "a ło",
+ "sk á",
+ "s ká",
+ "▁pix els",
+ "▁pixel s",
+ "vi ty",
+ "v ity",
+ "j Query",
+ "▁sc ulpt",
+ "▁c argo",
+ "▁car go",
+ "▁direct ive",
+ "▁w al",
+ "▁wa l",
+ "▁ wal",
+ "▁c onna",
+ "▁con na",
+ "▁conn a",
+ "▁Th rough",
+ "▁э том",
+ "▁это м",
+ "St atic",
+ "Stat ic",
+ "oms nitt",
+ "▁r und",
+ "▁run d",
+ "▁ru nd",
+ "▁ rund",
+ "▁c laimed",
+ "▁claim ed",
+ "з ня",
+ "sh a",
+ "s ha",
+ "▁r ag",
+ "▁ra g",
+ "▁ rag",
+ "cre ment",
+ "cr ement",
+ "▁fün f",
+ "▁r ival",
+ "▁riv al",
+ "▁ri val",
+ "▁ rival",
+ "ri n",
+ "r in",
+ "sl ash",
+ "▁th irty",
+ "s leep",
+ "оло ги",
+ "о логи",
+ "S M",
+ "ga te",
+ "gat e",
+ "g ate",
+ "iz ations",
+ "ization s",
+ "vi k",
+ "v ik",
+ "▁b less",
+ "▁bl ess",
+ "▁ble ss",
+ "▁Ill inois",
+ "▁T E",
+ "▁ TE",
+ "ut ing",
+ "uti ng",
+ "u ting",
+ "▁sol ving",
+ "GE R",
+ "G ER",
+ "▁X IV",
+ "▁XI V",
+ "▁Ind ians",
+ "▁India ns",
+ "▁Indian s",
+ "ex press",
+ "exp ress",
+ "expr ess",
+ "▁H eil",
+ "▁He il",
+ "▁mu jer",
+ "▁invån are",
+ "'] );",
+ "']) ;",
+ "' ]);",
+ "▁a ur",
+ "▁au r",
+ "▁ aur",
+ "bo ost",
+ "G O",
+ "▁n in",
+ "▁ni n",
+ "to k",
+ "t ok",
+ "go d",
+ "g od",
+ "ot er",
+ "ote r",
+ "o ter",
+ ")$ $",
+ ") $$",
+ "▁desc end",
+ "р ю",
+ "▁L anguage",
+ "▁ Language",
+ "▁d iver",
+ "▁di ver",
+ "▁div er",
+ "▁Ass uming",
+ "▁fre quent",
+ "▁frequ ent",
+ "ч ні",
+ "▁Bi ography",
+ ", [",
+ "ur m",
+ "u rm",
+ "▁walk ed",
+ "▁wal ked",
+ "▁feder al",
+ "▁fed eral",
+ "▁Mich igan",
+ "▁fact s",
+ "▁fac ts",
+ "▁In tegr",
+ "▁Int egr",
+ "▁ Integr",
+ "LE S",
+ "L ES",
+ "▁A lan",
+ "▁Al an",
+ "▁c oup",
+ "▁co up",
+ "▁cou p",
+ "Be r",
+ "B er",
+ "▁p articles",
+ "▁part icles",
+ "▁partic les",
+ "▁particle s",
+ "▁parti cles",
+ "ћ е",
+ "Infl ater",
+ "+ (",
+ "Bo und",
+ "B ound",
+ "▁S ü",
+ "A udio",
+ "cite t",
+ "cit et",
+ "c itet",
+ "ye ct",
+ "y ect",
+ "▁n r",
+ "▁ nr",
+ "x e",
+ "▁B run",
+ "▁Br un",
+ "▁Bru n",
+ "▁_ ,",
+ "▁ _,",
+ "av or",
+ "avo r",
+ "a vor",
+ "▁dis cipl",
+ "al m",
+ "a lm",
+ "▁но ября",
+ "▁S SL",
+ "▁SS L",
+ "▁ SSL",
+ "▁Ka iser",
+ "▁Kais er",
+ "▁re cher",
+ "▁rec her",
+ "yg on",
+ "y gon",
+ "▁regard less",
+ "▁config ur",
+ "▁un necess",
+ "▁Cl ark",
+ "▁Clar k",
+ "PH P",
+ "P HP",
+ "▁F ALSE",
+ "▁ FALSE",
+ "▁p ad",
+ "▁pa d",
+ "▁ pad",
+ "$ }",
+ "▁v alu",
+ "▁val u",
+ "▁va lu",
+ "▁ valu",
+ "▁dise ase",
+ "▁ma ior",
+ "▁mai or",
+ "▁h ommes",
+ "▁hom mes",
+ "▁homme s",
+ "▁Ed ition",
+ "▁Edit ion",
+ "sl ant",
+ "s lant",
+ "▁en ding",
+ "▁end ing",
+ "▁ ending",
+ "▁sett led",
+ "ur us",
+ "uru s",
+ "u rus",
+ "he d",
+ "h ed",
+ "Pat tern",
+ "▁го дина",
+ "▁годи на",
+ "▁Phil adel",
+ "tikz picture",
+ "▁co al",
+ "▁s ede",
+ "▁se de",
+ "▁sed e",
+ "▁satisf ies",
+ "▁t rim",
+ "▁tr im",
+ "▁tri m",
+ "▁ trim",
+ "▁b at",
+ "▁ba t",
+ "▁ bat",
+ "▁améric ain",
+ "▁lug lio",
+ "▁по ча",
+ "▁поч а",
+ "ff ff",
+ "fff f",
+ "f fff",
+ "▁T arget",
+ "▁Tar get",
+ "▁ Target",
+ "gener ate",
+ "▁Z ie",
+ "ți a",
+ "ț ia",
+ "▁g ard",
+ "▁gar d",
+ "▁ga rd",
+ "▁work ers",
+ "▁worker s",
+ "▁J ob",
+ "▁Jo b",
+ "▁ Job",
+ "▁ur ban",
+ "▁urb an",
+ "▁ urban",
+ "ah len",
+ "ahl en",
+ "a hlen",
+ "▁Build ing",
+ "▁n eu",
+ "▁ne u",
+ "▁ch ron",
+ "▁chr on",
+ "▁ chron",
+ "▁Ear l",
+ "gr o",
+ "g ro",
+ "US E",
+ "U SE",
+ "▁X II",
+ "▁XI I",
+ "▁we alth",
+ "▁ wealth",
+ "in ae",
+ "ina e",
+ "▁Б ра",
+ "▁li bert",
+ "▁lib ert",
+ "▁liber t",
+ "ir os",
+ "iro s",
+ "i ros",
+ ": $",
+ "le e",
+ "l ee",
+ "ie ves",
+ "ieve s",
+ "iev es",
+ "▁Just ice",
+ "▁o il",
+ "▁Ath let",
+ "▁c lo",
+ "▁cl o",
+ "▁ clo",
+ "Sc ale",
+ "Scal e",
+ "▁l ips",
+ "▁li ps",
+ "▁lip s",
+ "▁a pril",
+ "▁ap ril",
+ "▁apr il",
+ "▁im pression",
+ "▁imp ression",
+ "▁impr ession",
+ "▁impress ion",
+ "▁per ce",
+ "▁уча сти",
+ "▁участ и",
+ "vi l",
+ "v il",
+ "éc h",
+ "é ch",
+ "▁e quality",
+ "▁equ ality",
+ "▁equal ity",
+ "▁ equality",
+ "▁м ет",
+ "▁ме т",
+ "▁ мет",
+ "▁an notation",
+ "▁annot ation",
+ "▁ annotation",
+ "er nal",
+ "ern al",
+ "erna l",
+ "▁M ach",
+ "▁Ma ch",
+ "▁Mac h",
+ "▁int itul",
+ "pro blem",
+ "prob lem",
+ "ющи х",
+ "ю щих",
+ "op lus",
+ "o plus",
+ "▁thous ands",
+ "▁thousand s",
+ "▁calcul ations",
+ "▁calculation s",
+ "▁calc ulations",
+ "um ps",
+ "ump s",
+ "▁tri angle",
+ "▁ triangle",
+ "ph al",
+ "pha l",
+ "p hal",
+ "▁D orf",
+ "▁Do rf",
+ "▁Dor f",
+ "▁doll ars",
+ "▁d enen",
+ "▁de nen",
+ "▁den en",
+ "l ès",
+ "ol id",
+ "oli d",
+ "▁Result s",
+ "▁ Results",
+ "▁Stad ium",
+ "▁D esp",
+ "▁De sp",
+ "▁Des p",
+ "▁E isen",
+ "im ir",
+ "imi r",
+ "i mir",
+ "▁s otto",
+ "▁so tto",
+ "▁sott o",
+ "▁č i",
+ "▁ či",
+ "at able",
+ "ata ble",
+ "a table",
+ "or um",
+ "oru m",
+ "o rum",
+ "▁conver gence",
+ "▁je une",
+ "▁jeu ne",
+ "ok ing",
+ "oki ng",
+ "o king",
+ "▁жи во",
+ "ain ing",
+ "ai ning",
+ "a ining",
+ "po inter",
+ "point er",
+ "cul o",
+ "cu lo",
+ "c ulo",
+ "▁js ou",
+ "▁g rab",
+ "▁gr ab",
+ "▁gra b",
+ "ak te",
+ "akt e",
+ "a kte",
+ "▁ho ping",
+ "▁hop ing",
+ "▁M ak",
+ "▁Ma k",
+ "▁s ag",
+ "▁sa g",
+ "origin e",
+ "orig ine",
+ "▁по след",
+ "▁после д",
+ "▁V eg",
+ "▁Ve g",
+ "▁the oret",
+ "▁T ru",
+ "▁Tr u",
+ "ne ment",
+ "nem ent",
+ "n ement",
+ "▁f aces",
+ "▁fa ces",
+ "▁face s",
+ "▁fac es",
+ "▁ faces",
+ "H or",
+ "Jo in",
+ "J oin",
+ "ar el",
+ "are l",
+ "a rel",
+ "▁о коло",
+ "▁ок оло",
+ "How ever",
+ "▁c atal",
+ "▁ca tal",
+ "▁cat al",
+ "▁ catal",
+ "bo urg",
+ "bour g",
+ "b ourg",
+ "▁mysql i",
+ "▁mysq li",
+ "▁ mysqli",
+ "ac ions",
+ "acion s",
+ "aci ons",
+ "▁Init ial",
+ "▁ Initial",
+ "▁r ain",
+ "▁ra in",
+ "▁ rain",
+ "it ure",
+ "itu re",
+ "▁Sci ences",
+ "▁Science s",
+ "▁Kre is",
+ "._ _",
+ ". __",
+ "▁cin q",
+ "▁A uß",
+ "▁Au ß",
+ "ith met",
+ "it ors",
+ "ito rs",
+ "itor s",
+ "am azon",
+ "ama zon",
+ "▁g ap",
+ "▁ga p",
+ "▁ign ored",
+ "▁ignore d",
+ "▁ignor ed",
+ "ad v",
+ "ко ї",
+ "▁ча сть",
+ "▁час ть",
+ "▁част ь",
+ "▁cor por",
+ "▁corpo r",
+ "це р",
+ "ц ер",
+ "▁cr ime",
+ "▁cri me",
+ "▁crim e",
+ "uo us",
+ "u ous",
+ "▁на лази",
+ "Data Frame",
+ "во ди",
+ "вод и",
+ "Ig n",
+ "I gn",
+ "▁Lin coln",
+ "▁me nos",
+ "▁men os",
+ "▁Lu ft",
+ "▁L ind",
+ "▁Li nd",
+ "▁Lin d",
+ "▁C ook",
+ "▁Co ok",
+ "▁ Cook",
+ "▁material s",
+ "ap ped",
+ "app ed",
+ "appe d",
+ "a pped",
+ "ign ore",
+ "▁от кры",
+ "fr ied",
+ "fri ed",
+ "f ried",
+ "▁gouvern ement",
+ "▁f ired",
+ "▁fire d",
+ "▁fi red",
+ "▁fir ed",
+ "▁screen shot",
+ "▁screens hot",
+ "се н",
+ "с ен",
+ "▁[ (",
+ "▁ [(",
+ "▁органи за",
+ "Graph ics",
+ "▁про ти",
+ "▁p hen",
+ "▁ph en",
+ "▁ phen",
+ "cr aft",
+ "cra ft",
+ "c raft",
+ "▁b rain",
+ "▁br ain",
+ "▁bra in",
+ "▁C omo",
+ "▁Com o",
+ "▁Co mo",
+ "▁Every thing",
+ "an es",
+ "ane s",
+ "a nes",
+ "IG N",
+ "I GN",
+ "▁n ederbörd",
+ "▁ nederbörd",
+ "▁For est",
+ "▁Fore st",
+ "▁Fo rest",
+ "za hl",
+ "z ahl",
+ "▁Am ong",
+ "Q t",
+ "▁to gg",
+ "▁tog g",
+ "▁vari ant",
+ "▁ variant",
+ "▁h ill",
+ "▁hi ll",
+ "▁ hill",
+ "пи си",
+ "пис и",
+ "col on",
+ "co lon",
+ "colo n",
+ "▁dic embre",
+ "го р",
+ "г ор",
+ "▁W ind",
+ "▁Win d",
+ "▁Wi nd",
+ "ünst ler",
+ "▁= \\",
+ "▁ =\\",
+ "sa ved",
+ "save d",
+ "s aved",
+ "▁n ej",
+ "▁ne j",
+ "▁ nej",
+ "un te",
+ "unt e",
+ "ut to",
+ "utt o",
+ "u tto",
+ "▁rec ens",
+ "▁rece ns",
+ "▁s ick",
+ "▁si ck",
+ "▁sic k",
+ "▁d esen",
+ "▁de sen",
+ "▁des en",
+ "US T",
+ "U ST",
+ "▁wor st",
+ "▁An gel",
+ "▁Ang el",
+ "od ox",
+ "odo x",
+ "▁Prov ince",
+ "▁Provin ce",
+ "▁M az",
+ "▁Ma z",
+ "▁agre ement",
+ "▁agree ment",
+ "▁B ass",
+ "▁Bas s",
+ "▁Ba ss",
+ "▁seg unda",
+ "on ces",
+ "once s",
+ "onc es",
+ "▁Lin ki",
+ "▁Link i",
+ "▁C L",
+ "▁ CL",
+ "▁j á",
+ "it ement",
+ "ite ment",
+ "item ent",
+ "▁á rea",
+ "▁ár ea",
+ "▁scal ar",
+ "▁scala r",
+ "▁Р ес",
+ "▁Ре с",
+ "aw t",
+ "a wt",
+ "si eme",
+ "▁j uni",
+ "▁ju ni",
+ "▁jun i",
+ "▁худо ж",
+ "ik us",
+ "iku s",
+ "▁l id",
+ "▁li d",
+ "pp el",
+ "ppe l",
+ "p pel",
+ "av i",
+ "a vi",
+ "▁bal ance",
+ "ip ping",
+ "ipp ing",
+ "ippi ng",
+ "i pping",
+ "cuss ion",
+ "че ских",
+ "(\" .",
+ "( \".",
+ "Al so",
+ "▁w his",
+ "▁wh is",
+ "HO ME",
+ "▁b rown",
+ "▁br own",
+ "▁bro wn",
+ "▁brow n",
+ "▁d ía",
+ "▁dí a",
+ "▁pu ò",
+ "plot lib",
+ "▁Jahrhundert s",
+ "D K",
+ "▁an chor",
+ "▁anc hor",
+ "▁anch or",
+ "▁ anchor",
+ ".. .]",
+ "... ]",
+ "▁Aust ria",
+ "▁m arca",
+ "▁mar ca",
+ "▁marc a",
+ "▁g ez",
+ "▁ge z",
+ "ious ly",
+ "i ously",
+ "▁l azy",
+ "▁la zy",
+ "x a",
+ "▁Ch annel",
+ "▁Chan nel",
+ "▁ Channel",
+ "▁ne uen",
+ "▁neue n",
+ "▁neu en",
+ "da s",
+ "d as",
+ "▁search ed",
+ "▁sta at",
+ "▁ staat",
+ "▁Та к",
+ "▁Jo sef",
+ "▁Jose f",
+ "▁Jos ef",
+ "▁S her",
+ "▁Sh er",
+ "▁She r",
+ "po is",
+ "p ois",
+ "▁e nem",
+ "▁en em",
+ "▁access ing",
+ "▁не ко",
+ "▁fur ono",
+ "▁pse udo",
+ "▁pseud o",
+ "? >",
+ "▁estado un",
+ "▁estad oun",
+ "▁Ви ди",
+ "▁mot iv",
+ "▁re call",
+ "▁rec all",
+ "is son",
+ "iss on",
+ "i sson",
+ "ó b",
+ ")- -",
+ ") --",
+ "▁E rz",
+ "▁Er z",
+ "▁са вез",
+ "Dir ect",
+ "Di rect",
+ "D irect",
+ "со б",
+ "с об",
+ "▁s ho",
+ "▁sh o",
+ "v ölker",
+ "A p",
+ "ge ns",
+ "gen s",
+ "g ens",
+ "ниш тво",
+ "▁Am sterdam",
+ "us k",
+ "u sk",
+ "п ло",
+ "▁sim ulation",
+ "▁B C",
+ "▁ BC",
+ "▁W oj",
+ "▁Wo j",
+ "au tom",
+ "aut om",
+ "auto m",
+ "Al ex",
+ "A lex",
+ "▁econom ic",
+ "▁econ omic",
+ "го м",
+ "г ом",
+ "ik ai",
+ "ika i",
+ "▁a ltre",
+ "▁al tre",
+ "▁alt re",
+ "▁' -",
+ "▁ '-",
+ "▁W eg",
+ "▁We g",
+ "Not Found",
+ "й ской",
+ "▁convert ing",
+ "▁conver ting",
+ "ph abet",
+ "pha bet",
+ "at rice",
+ "atr ice",
+ "atri ce",
+ "bour ne",
+ "al om",
+ "alo m",
+ "▁comp aring",
+ "▁compar ing",
+ "▁Z o",
+ "▁f la",
+ "▁fl a",
+ "ва я",
+ "▁en tra",
+ "▁ent ra",
+ "▁entr a",
+ "▁char set",
+ "▁chars et",
+ "develop ers",
+ "developer s",
+ "íst ica",
+ "} >",
+ "▁J azz",
+ "▁Ja zz",
+ "▁How ard",
+ "▁Ho ward",
+ "ш та",
+ "▁cl one",
+ "▁clo ne",
+ "▁ clone",
+ "do or",
+ "d oor",
+ "▁P in",
+ "▁Pi n",
+ "** *",
+ "* **",
+ "▁sil ent",
+ "ec ycle",
+ "e cycle",
+ "is ce",
+ "isc e",
+ "i sce",
+ "▁m ud",
+ "▁mu d",
+ "▁Dis play",
+ "▁ Display",
+ "▁l ip",
+ "▁li p",
+ "▁ lip",
+ "▁исполь зова",
+ "▁character istic",
+ "▁s b",
+ "▁ sb",
+ "fire base",
+ "▁B ew",
+ "▁Be w",
+ "Cal endar",
+ "▁u so",
+ "▁us o",
+ "▁ uso",
+ "ès e",
+ "è se",
+ "▁R at",
+ "▁Ra t",
+ "▁es per",
+ "▁espe r",
+ "▁esp er",
+ "▁ esper",
+ "▁throw ing",
+ "▁thro wing",
+ "▁ro dz",
+ "▁rod z",
+ "▁y ards",
+ "▁yard s",
+ "▁g rass",
+ "▁gr ass",
+ "▁gra ss",
+ "▁mar ker",
+ "▁mark er",
+ "▁ marker",
+ "▁K os",
+ "▁Ko s",
+ "Th eta",
+ "The ta",
+ "▁organ is",
+ "ker nel",
+ "kern el",
+ "k ernel",
+ "▁person as",
+ "▁pers onas",
+ "▁persona s",
+ "ke ep",
+ "kee p",
+ "▁exc laimed",
+ "os lav",
+ "▁Ent ertain",
+ "▁Enter tain",
+ "не р",
+ "н ер",
+ "▁in won",
+ "▁R and",
+ "▁Ra nd",
+ "▁Ran d",
+ "red uce",
+ "redu ce",
+ "fa c",
+ "f ac",
+ "ex pression",
+ "exp ression",
+ "expr ession",
+ "express ion",
+ "y j",
+ "▁differ enti",
+ "▁different i",
+ "ag lia",
+ "agli a",
+ "▁tem plates",
+ "▁template s",
+ "▁ templates",
+ "▁m ű",
+ "▁p rv",
+ "▁pr v",
+ "▁m ois",
+ "▁mo is",
+ "▁moi s",
+ "▁gew ann",
+ "▁бу ла",
+ "bib li",
+ "b ibli",
+ "de mo",
+ "dem o",
+ "d emo",
+ "▁And erson",
+ "▁Anders on",
+ "▁ре д",
+ "▁ ред",
+ "▁por que",
+ "▁P ologne",
+ "▁Pol ogne",
+ "▁t rip",
+ "▁tr ip",
+ "▁tri p",
+ "▁exem ple",
+ "▁exempl e",
+ "▁Intern acional",
+ "▁ка о",
+ "In sert",
+ "gen eral",
+ "gener al",
+ "SE SSION",
+ "ber ga",
+ "berg a",
+ "hä lt",
+ "h ält",
+ "un as",
+ "una s",
+ "u nas",
+ "ми ра",
+ "мир а",
+ "▁yield s",
+ "map sto",
+ "maps to",
+ "sp ot",
+ "s pot",
+ "▁+ \\",
+ "▁ +\\",
+ "лл а",
+ "л ла",
+ "▁precis ely",
+ "▁precise ly",
+ "▁ч лен",
+ "sh adow",
+ "Ar e",
+ "A re",
+ "un al",
+ "una l",
+ "u nal",
+ "▁dis par",
+ "▁disp ar",
+ "▁tít ulo",
+ "ne st",
+ "nes t",
+ "n est",
+ "▁L ow",
+ "▁Lo w",
+ "▁p rot",
+ "▁pro t",
+ "▁pr ot",
+ "▁C osta",
+ "▁Co sta",
+ "▁Cost a",
+ "▁Cos ta",
+ "name d",
+ "na med",
+ "nam ed",
+ "n amed",
+ "▁g ained",
+ "▁ga ined",
+ "▁gain ed",
+ "les ia",
+ "l esia",
+ "▁admin istration",
+ "▁administr ation",
+ "Im port",
+ "Imp ort",
+ "br anch",
+ "b ranch",
+ "▁sym path",
+ "vo j",
+ "v oj",
+ "▁E C",
+ "▁ EC",
+ "▁municip io",
+ "▁anim ated",
+ "▁animate d",
+ "▁direct ories",
+ "▁director ies",
+ "▁ro of",
+ "zą d",
+ "z ąd",
+ "im et",
+ "ime t",
+ "i met",
+ "pr oto",
+ "pro to",
+ "bl a",
+ "b la",
+ ": ]",
+ "ha ve",
+ "hav e",
+ "h ave",
+ "at em",
+ "ate m",
+ "a tem",
+ "▁n s",
+ "▁ ns",
+ "▁s ector",
+ "▁se ctor",
+ "▁sec tor",
+ "▁sect or",
+ "th ree",
+ "ow ane",
+ "owa ne",
+ "owan e",
+ "wer s",
+ "we rs",
+ "w ers",
+ "ов их",
+ "ови х",
+ "ren ce",
+ "r ence",
+ "▁ex tr",
+ "▁ext r",
+ "ig ten",
+ "igt en",
+ "igte n",
+ "▁occ ident",
+ "ț ă",
+ "▁e at",
+ "▁h ydro",
+ "▁hy dro",
+ "▁hyd ro",
+ "ubern etes",
+ "[ @",
+ "▁M oon",
+ "▁Mo on",
+ "▁S ho",
+ "▁Sh o",
+ "▁else where",
+ "ül ler",
+ "üll er",
+ "Up load",
+ "ла нд",
+ "лан д",
+ "л анд",
+ "▁F ör",
+ "w issenschaft",
+ "K S",
+ "▁phys ics",
+ "▁ physics",
+ "t z",
+ "▁се ред",
+ "▁Ar beit",
+ "▁Arbe it",
+ "▁ме ст",
+ "▁ мест",
+ "▁Geb iet",
+ "▁in sect",
+ "▁ins ect",
+ "▁inse ct",
+ "A h",
+ "iz ado",
+ "iza do",
+ "▁tem ple",
+ "▁temp le",
+ "▁ann ual",
+ "st ad",
+ "sta d",
+ "▁hab itat",
+ "▁habit at",
+ "▁A B",
+ "▁ AB",
+ "wo rt",
+ "wor t",
+ "w ort",
+ "▁re pos",
+ "▁rep os",
+ "▁repo s",
+ "▁N eu",
+ "▁Ne u",
+ "▁$ (\".",
+ "▁$( \".",
+ "▁$(\" .",
+ "Vor lage",
+ "▁repre zent",
+ "est anden",
+ "In tern",
+ "Int ern",
+ "Inter n",
+ ". `",
+ "▁fa iling",
+ "▁fail ing",
+ "▁M aterial",
+ "▁Mate rial",
+ "▁ Material",
+ "▁effect ively",
+ "▁effective ly",
+ "те лем",
+ "тел ем",
+ "▁г ла",
+ "▁ гла",
+ "▁na hm",
+ "▁nah m",
+ "▁ nahm",
+ "▁differ ently",
+ "▁different ly",
+ "ext ension",
+ "▁V erm",
+ "▁Ver m",
+ "▁Ve rm",
+ "en abled",
+ "ena bled",
+ "enable d",
+ "con figure",
+ "config ure",
+ "ni o",
+ "n io",
+ "ci ones",
+ "cio nes",
+ "cion es",
+ "c iones",
+ "▁B each",
+ "▁Be ach",
+ "со на",
+ "сон а",
+ "с она",
+ "▁copy ing",
+ "▁cop ying",
+ "▁у країн",
+ "▁при зна",
+ "▁приз на",
+ "z h",
+ "Des ktop",
+ "▁s ost",
+ "▁so st",
+ "▁sub sequently",
+ "▁subsequ ently",
+ "▁subsequent ly",
+ "▁Le hr",
+ "▁ ó",
+ "lä r",
+ "l är",
+ "od or",
+ "odo r",
+ "o dor",
+ "ph on",
+ "p hon",
+ "n c",
+ "iter ator",
+ "▁э ти",
+ "▁europ é",
+ "▁Tor onto",
+ "ód igo",
+ "▁p osto",
+ "▁po sto",
+ "▁pos to",
+ "▁post o",
+ "ff e",
+ "f fe",
+ "▁c rew",
+ "▁cre w",
+ "▁cr ew",
+ "▁Sch war",
+ "▁Schw ar",
+ "S a",
+ "squ are",
+ "s quare",
+ "▁be side",
+ "▁bes ide",
+ "▁М і",
+ "▁a th",
+ "▁at h",
+ "▁ ath",
+ "▁ad vent",
+ "▁adv ent",
+ "c ji",
+ "writ ten",
+ "wr itten",
+ "w ritten",
+ "▁r uss",
+ "▁ru ss",
+ "▁rus s",
+ "ro st",
+ "ros t",
+ "r ost",
+ "H I",
+ "▁d ice",
+ "▁di ce",
+ "▁dic e",
+ "cc a",
+ "c ca",
+ "▁d ép",
+ "▁dé p",
+ "pl y",
+ "p ly",
+ "big g",
+ "bi gg",
+ "b igg",
+ "zi ał",
+ "zia ł",
+ "z iał",
+ "üt t",
+ "ü tt",
+ "▁о дно",
+ "▁од но",
+ "J ECT",
+ "сь кому",
+ "сько му",
+ "ськ ому",
+ "no s",
+ "n os",
+ "mo ck",
+ "m ock",
+ "La unch",
+ "sa me",
+ "sam e",
+ "s ame",
+ "▁j obs",
+ "▁jo bs",
+ "▁job s",
+ "▁wide ly",
+ "▁wid ely",
+ "▁def ines",
+ "▁define s",
+ "▁defin es",
+ "▁P se",
+ "▁Ps e",
+ "▁neigh bour",
+ "▁neighb our",
+ "ющи е",
+ "▁cl oser",
+ "▁close r",
+ "▁clos er",
+ "▁clo ser",
+ "▁рас поло",
+ "▁распо ло",
+ "▁cl ubs",
+ "▁club s",
+ "fl y",
+ "f ly",
+ "ши м",
+ "ш им",
+ "▁suffer ed",
+ "▁suff ered",
+ "▁n ar",
+ "▁na r",
+ "▁ nar",
+ "▁l avor",
+ "▁la vor",
+ "▁lav or",
+ "Ext ension",
+ "ition ally",
+ "itional ly",
+ "▁g race",
+ "▁gr ace",
+ "▁gra ce",
+ "▁Campe onato",
+ "▁Christ mas",
+ "m iddle",
+ "oth ek",
+ "othe k",
+ "el ements",
+ "element s",
+ "ele ments",
+ "elem ents",
+ "▁son dern",
+ "▁t arde",
+ "▁tar de",
+ "▁tard e",
+ "▁perman ent",
+ "▁con clude",
+ "▁concl ude",
+ "Se g",
+ "S eg",
+ "▁а каде",
+ "}\" ,",
+ "} \",",
+ "▁февра ля",
+ "ře d",
+ "ř ed",
+ "▁I L",
+ "▁ IL",
+ "ju d",
+ "j ud",
+ "▁U SS",
+ "▁US S",
+ "▁N ature",
+ "▁Natur e",
+ "▁Nat ure",
+ "if ference",
+ "iffer ence",
+ "iffe rence",
+ "Serial izer",
+ "▁tw elve",
+ "ti d",
+ "t id",
+ "ми я",
+ "че ского",
+ "▁cal endar",
+ "▁ calendar",
+ "con cat",
+ "▁inter section",
+ "▁intersect ion",
+ "▁P A",
+ "▁ PA",
+ "az ure",
+ "azu re",
+ "▁situ ée",
+ "▁situé e",
+ "▁k inds",
+ "▁kind s",
+ "▁kin ds",
+ "▁aus ge",
+ "▁r ural",
+ "▁ru ral",
+ "Th eme",
+ "The me",
+ "▁t ale",
+ "▁tal e",
+ "▁ta le",
+ "no indent",
+ "go ing",
+ "r x",
+ "ag i",
+ "a gi",
+ "wrap per",
+ "wr apper",
+ "w rapper",
+ "▁Co ast",
+ "mb H",
+ "▁пере д",
+ "▁пе ред",
+ "sp re",
+ "spr e",
+ "s pre",
+ "▁} \\",
+ "▁ }\\",
+ "▁L I",
+ "▁ LI",
+ "zn am",
+ "zna m",
+ "z nam",
+ "it led",
+ "itle d",
+ "Sam ple",
+ "S ample",
+ "ul iar",
+ "uli ar",
+ "* \\",
+ "▁res istance",
+ "▁resist ance",
+ "st ock",
+ "sto ck",
+ "ke d",
+ "k ed",
+ "▁H E",
+ "▁ HE",
+ "▁pos session",
+ "▁poss ession",
+ "▁possess ion",
+ "▁R ing",
+ "▁Ri ng",
+ "▁m agyar",
+ "▁mag yar",
+ "ou ts",
+ "out s",
+ "o uts",
+ "▁Secret ary",
+ "nd e",
+ "n de",
+ "▁W ald",
+ "▁Wal d",
+ "▁Wa ld",
+ "- (",
+ "▁I SO",
+ "▁IS O",
+ "▁ ISO",
+ "▁af ternoon",
+ "ion en",
+ "io nen",
+ "ione n",
+ "i onen",
+ "▁st ops",
+ "▁stop s",
+ "▁sto ps",
+ "▁const ants",
+ "▁constant s",
+ "gu ard",
+ "bo w",
+ "b ow",
+ "▁e rs",
+ "▁er s",
+ "▁ ers",
+ "▁Fire base",
+ "▁C lear",
+ "▁Cl ear",
+ "▁Cle ar",
+ "▁ Clear",
+ "▁H oly",
+ "▁Hol y",
+ "▁Ho ly",
+ "W in",
+ "▁title s",
+ "▁tit les",
+ "▁т рав",
+ "▁тра в",
+ "▁cont rib",
+ "▁contr ib",
+ "▁ contrib",
+ "hä ng",
+ "h äng",
+ "▁phot ograph",
+ "▁photo graph",
+ "▁Dist ribution",
+ "if ts",
+ "ift s",
+ "▁a unque",
+ "com b",
+ "co mb",
+ "c omb",
+ "AD D",
+ "A DD",
+ "▁public ation",
+ "▁pub lication",
+ "▁publi cation",
+ "▁слу ж",
+ "▁к ня",
+ "▁ay ant",
+ "▁re store",
+ "▁r estore",
+ "▁rest ore",
+ "▁resto re",
+ "▁bel ief",
+ "▁v ég",
+ "▁vé g",
+ "▁ext ensions",
+ "▁extension s",
+ "▁extens ions",
+ "▁ extensions",
+ "▁de com",
+ "▁dec om",
+ "вши й",
+ "в ший",
+ "W T",
+ "▁par ti",
+ "▁part i",
+ "▁gi oc",
+ "▁ми ра",
+ "▁ мира",
+ "▁is su",
+ "▁iss u",
+ "pi pe",
+ "pip e",
+ "p ipe",
+ "▁pro ps",
+ "▁pr ops",
+ "▁prop s",
+ "▁ props",
+ "▁w illing",
+ "▁will ing",
+ "▁wil ling",
+ "▁n est",
+ "▁ne st",
+ "▁ nest",
+ "as o",
+ "a so",
+ "po t",
+ "p ot",
+ "▁hand les",
+ "▁handle s",
+ "▁ф о",
+ "▁ фо",
+ "▁m oder",
+ "▁mod er",
+ "▁mo der",
+ "▁mode r",
+ "▁eben falls",
+ "▁fight ing",
+ "um bn",
+ "umb n",
+ "▁trans parent",
+ "▁K rist",
+ "▁Kr ist",
+ "▁home s",
+ "▁hom es",
+ "▁ho mes",
+ "▁voy age",
+ "Fa iled",
+ "Fail ed",
+ "▁B ird",
+ "▁Bi rd",
+ "▁Bir d",
+ "▁He art",
+ "Count er",
+ "Co unter",
+ "C ounter",
+ "▁Scott ish",
+ "át ica",
+ "▁ar beit",
+ "▁ arbeit",
+ "^{ -\\",
+ "^{- \\",
+ "▁S or",
+ "▁So r",
+ "▁eng aged",
+ "▁engag ed",
+ "▁a side",
+ "▁as ide",
+ "▁asi de",
+ "▁F ou",
+ "▁Fo u",
+ "▁w iel",
+ "▁wie l",
+ "▁re const",
+ "▁recon st",
+ "ou sin",
+ "ous in",
+ "▁host ed",
+ "▁ho sted",
+ "▁hos ted",
+ "▁c lasse",
+ "▁class e",
+ "▁cl asse",
+ "▁clas se",
+ "▁con test",
+ "▁cont est",
+ "▁conte st",
+ ".. .\"",
+ "... \"",
+ "мо м",
+ "м ом",
+ "▁be an",
+ "▁ bean",
+ "ge m",
+ "g em",
+ "▁consult ato",
+ "▁b io",
+ "▁bi o",
+ "▁ bio",
+ "▁subject s",
+ "bo Box",
+ "▁Sch rift",
+ "▁d inner",
+ "▁din ner",
+ "ă r",
+ "▁r ówn",
+ "▁% %",
+ "▁ %%",
+ "ba ge",
+ "bag e",
+ "b age",
+ "▁ver öff",
+ "▁det ected",
+ "▁detect ed",
+ "ie nn",
+ "ien n",
+ "i enn",
+ "ro se",
+ "ros e",
+ "r ose",
+ "▁T on",
+ "▁To n",
+ "Comp lete",
+ "Comple te",
+ "▁pro to",
+ "▁pr oto",
+ "▁prot o",
+ "▁ proto",
+ "ich ts",
+ "icht s",
+ "i chts",
+ "ST AT",
+ "Check ed",
+ "▁in ten",
+ "▁i nten",
+ "▁int en",
+ "▁inte n",
+ "▁s mile",
+ "▁sm ile",
+ "▁st rip",
+ "▁str ip",
+ "▁stri p",
+ "▁ strip",
+ "ne ut",
+ "') ;\r",
+ "'); \r",
+ "' );\r",
+ "fo ur",
+ "f our",
+ "▁to das",
+ "▁tod as",
+ "▁toda s",
+ "Control s",
+ "▁thor ough",
+ "ru p",
+ "r up",
+ "▁држа ви",
+ "it ă",
+ "Pro tocol",
+ "К а",
+ "▁expand ed",
+ "ex tra",
+ "ext ra",
+ "op ort",
+ "opo rt",
+ "o port",
+ "▁Ста нов",
+ "le ases",
+ "lease s",
+ "▁n otion",
+ "▁not ion",
+ "▁no tion",
+ "▁g uest",
+ "▁gu est",
+ "▁Is lands",
+ "▁Island s",
+ "ic ked",
+ "ick ed",
+ "▁D ave",
+ "▁Dav e",
+ "▁Da ve",
+ "▁ref lection",
+ "▁reflect ion",
+ "li v",
+ "l iv",
+ "ál ní",
+ "▁reve aled",
+ "▁s og",
+ "▁so g",
+ "▁T ax",
+ "▁Ta x",
+ "▁period o",
+ "▁peri odo",
+ "▁Welt krie",
+ "catal ina",
+ "qu é",
+ "q ué",
+ "▁F ather",
+ "▁Fa ther",
+ "▁B ir",
+ "▁Bi r",
+ "ex pect",
+ "exp ect",
+ "▁re gression",
+ "▁reg ression",
+ "in é",
+ "i né",
+ "▁d abei",
+ "▁da bei",
+ "pe rm",
+ "per m",
+ "p erm",
+ "ме не",
+ "мен е",
+ "м ене",
+ "▁A bd",
+ "▁Ab d",
+ "▁C F",
+ "▁ CF",
+ "ar ks",
+ "ark s",
+ "resol ve",
+ "wed ge",
+ "w edge",
+ "▁initial ization",
+ "▁Vé ase",
+ "▁при ня",
+ "st mt",
+ "▁in come",
+ "▁inc ome",
+ "M Y",
+ "▁od kazy",
+ "▁Sie he",
+ "▁bod ies",
+ "▁s oc",
+ "▁so c",
+ "R andom",
+ "▁s enza",
+ "▁sen za",
+ "ab lo",
+ "abl o",
+ "a blo",
+ "▁reg arded",
+ "▁regard ed",
+ "on Create",
+ "▁Mag azine",
+ "▁R af",
+ "▁Ra f",
+ "▁Buen os",
+ "и л",
+ ")) );",
+ "))) ;",
+ ") ));",
+ "ca pt",
+ "cap t",
+ "c apt",
+ "re direct",
+ "red irect",
+ "▁pe tit",
+ "▁pet it",
+ "▁f arm",
+ "▁far m",
+ "▁fa rm",
+ "▁r ôle",
+ "▁стать и",
+ " ",
+ "sub figure",
+ "èce s",
+ "è ces",
+ "zi el",
+ "zie l",
+ "z iel",
+ "▁о кон",
+ "▁ок он",
+ "E E",
+ "me e",
+ "m ee",
+ "▁p erten",
+ "▁per ten",
+ "▁pert en",
+ "▁représ ent",
+ "▁L A",
+ "▁ LA",
+ "? '",
+ "▁т ру",
+ "▁r ational",
+ "▁rat ional",
+ "▁ratio nal",
+ "os of",
+ "oso f",
+ "▁k ne",
+ "▁kn e",
+ "▁art ists",
+ "▁artist s",
+ "Fl ow",
+ "F low",
+ "▁А ль",
+ "▁Ал ь",
+ "iz ard",
+ "iza rd",
+ "izar d",
+ "▁num ero",
+ "▁numer o",
+ "act ic",
+ "a ctic",
+ "▁de struct",
+ "▁dest ruct",
+ "▁destru ct",
+ "▁П ра",
+ "ons ieur",
+ "q t",
+ "ab estanden",
+ "no ść",
+ "Con nect",
+ "Conne ct",
+ "▁o racle",
+ "▁or acle",
+ "▁ora cle",
+ "▁ oracle",
+ "▁Stock holm",
+ "size of",
+ "▁gem äß",
+ "AC T",
+ "A CT",
+ "▁ex pert",
+ "▁exp ert",
+ "▁exper t",
+ "ut ions",
+ "ution s",
+ "uti ons",
+ "▁h acia",
+ "▁ha cia",
+ "▁log ger",
+ "▁ logger",
+ "▁f ool",
+ "▁fo ol",
+ "▁foo l",
+ "ry pto",
+ "rypt o",
+ "æ r",
+ "▁c idade",
+ "▁ci dade",
+ "▁состав е",
+ "▁соста ве",
+ "ok er",
+ "oke r",
+ "o ker",
+ "▁Trans fer",
+ "▁den ied",
+ "Tr ack",
+ "Tra ck",
+ "T rack",
+ "▁r adi",
+ "▁ra di",
+ "▁rad i",
+ "ze c",
+ "z ec",
+ "▁Histor ic",
+ "▁Einwo hner",
+ "ко ю",
+ "▁х ра",
+ "▁ хра",
+ "▁C ategory",
+ "▁ Category",
+ "▁Dis ney",
+ "▁sw ap",
+ "▁ swap",
+ "Be gin",
+ "B egin",
+ "▁m ientras",
+ "▁d ance",
+ "▁dan ce",
+ "▁t ête",
+ "▁d roit",
+ "▁dr oit",
+ "▁dro it",
+ "er ta",
+ "ert a",
+ "▁bird s",
+ "▁bir ds",
+ "▁con vin",
+ "▁conv in",
+ "par ator",
+ "para tor",
+ "д ра",
+ "▁E S",
+ "▁ ES",
+ "▁Ress ources",
+ "▁Ressource s",
+ "EG IN",
+ "ück e",
+ "ü cke",
+ "▁Cr uz",
+ "▁Cru z",
+ "ab ling",
+ "abl ing",
+ "a bling",
+ "▁\" @",
+ "▁me tres",
+ "▁met res",
+ "▁B eg",
+ "▁Be g",
+ "▁Gr ünd",
+ "▁B oh",
+ "▁Bo h",
+ "▁m ile",
+ "▁mil e",
+ "▁mi le",
+ "▁ mile",
+ "▁Techn ology",
+ "\" +",
+ "ac co",
+ "acc o",
+ "a cco",
+ "▁s s",
+ "▁ ss",
+ "▁F ed",
+ "▁Fe d",
+ "▁H end",
+ "▁He nd",
+ "▁Hen d",
+ "us ch",
+ "usc h",
+ "u sch",
+ "it ä",
+ "fol k",
+ "f olk",
+ "▁abs or",
+ "an tal",
+ "ant al",
+ "anta l",
+ "od ge",
+ "▁WH EN",
+ "▁Extern í",
+ "▁Reg iment",
+ "▁evalu ation",
+ "▁T ai",
+ "▁Ta i",
+ "▁voc als",
+ "▁vocal s",
+ "▁ex perimental",
+ "▁experiment al",
+ "em bed",
+ "emb ed",
+ "▁M inn",
+ "▁Min n",
+ "▁Mi nn",
+ "▁в ме",
+ "pr ec",
+ "pre c",
+ "p rec",
+ "ever y",
+ "ev ery",
+ "e very",
+ "▁ho of",
+ "▁Fern ando",
+ "▁Bibli ographie",
+ "▁n ag",
+ "▁na g",
+ "amerikan ischer",
+ "▁m arks",
+ "▁mar ks",
+ "▁mark s",
+ "▁ marks",
+ "▁U TC",
+ "▁ UTC",
+ "▁un certain",
+ "ди я",
+ "ol ia",
+ "oli a",
+ "o lia",
+ "▁c up",
+ "▁cu p",
+ "▁ cup",
+ "▁f ille",
+ "▁fil le",
+ "▁fill e",
+ "▁fi lle",
+ "▁d ok",
+ "▁do k",
+ "use ppe",
+ "est erd",
+ "ester d",
+ "este rd",
+ "e sterd",
+ "▁B rand",
+ "▁Br and",
+ "▁Bra nd",
+ "▁Bran d",
+ "▁Th ird",
+ "P P",
+ "no des",
+ "node s",
+ "n odes",
+ "▁P ad",
+ "▁Pa d",
+ "▁ Pad",
+ "▁l oved",
+ "▁lo ved",
+ "▁love d",
+ "▁lov ed",
+ "sw ing",
+ "s wing",
+ "▁surpr ised",
+ "▁surprise d",
+ "ar di",
+ "ard i",
+ "▁G R",
+ "▁ GR",
+ "] \"",
+ "▁equ ally",
+ "▁equal ly",
+ "▁eq ually",
+ "ih e",
+ "i he",
+ "ca re",
+ "car e",
+ "c are",
+ "пи сок",
+ "пис ок",
+ "li jk",
+ "lij k",
+ "l ijk",
+ "ri nn",
+ "rin n",
+ "r inn",
+ "▁\\ [\\",
+ "▁\\[ \\",
+ "▁s ons",
+ "▁so ns",
+ "▁son s",
+ "▁t ät",
+ "ic amente",
+ "ica mente",
+ "▁l isting",
+ "▁list ing",
+ "iel lement",
+ "ielle ment",
+ "▁nyel ven",
+ "▁d s",
+ "▁ ds",
+ "▁agr icult",
+ "▁H ermann",
+ "▁Her mann",
+ "▁Herm ann",
+ "▁bes ides",
+ "▁beside s",
+ "pro gress",
+ "prog ress",
+ "▁pec uliar",
+ "fo cus",
+ "f ocus",
+ "c n",
+ "- $",
+ "ствен ный",
+ "ou rg",
+ "our g",
+ "o urg",
+ "▁w yn",
+ "▁wy n",
+ "▁conduct ed",
+ "▁condu cted",
+ "▁Станов ништво",
+ "connect ed",
+ "conne cted",
+ "conn ected",
+ "▁b ott",
+ "▁bo tt",
+ "▁bot t",
+ "▁с мер",
+ "▁см ер",
+ "▁P oz",
+ "▁Po z",
+ "un ct",
+ "unc t",
+ "con da",
+ "cond a",
+ "c onda",
+ "▁савез ној",
+ "▁ha vet",
+ "▁have t",
+ "▁hav et",
+ "li gt",
+ "lig t",
+ "l igt",
+ "or ted",
+ "ort ed",
+ "orte d",
+ "▁ent ering",
+ "▁enter ing",
+ "mult ip",
+ "multi p",
+ "mul tip",
+ "▁Tem ple",
+ "▁Temp le",
+ "▁P lant",
+ "▁Pl ant",
+ "▁Plan t",
+ "▁Pla nt",
+ "type of",
+ "▁V lad",
+ "▁qu ed",
+ "▁que d",
+ "▁q ued",
+ "▁re ste",
+ "▁r este",
+ "▁res te",
+ "▁rest e",
+ "▁ма й",
+ "▁ май",
+ "▁V ery",
+ "▁Ver y",
+ "▁Ve ry",
+ "ambigu ation",
+ "▁ch alleng",
+ "▁res pective",
+ "▁respect ive",
+ "▁т ор",
+ "▁то р",
+ "▁ тор",
+ "C trl",
+ "▁abs ence",
+ "ar u",
+ "a ru",
+ "во е",
+ "▁för st",
+ "▁s q",
+ "▁ sq",
+ "▁Em peror",
+ "▁I gn",
+ "▁Ig n",
+ "▁ Ign",
+ "▁т ова",
+ "▁то ва",
+ "▁ това",
+ ": `",
+ "ad oop",
+ "ado op",
+ "▁Mad ame",
+ "▁gru ppo",
+ "▁grup po",
+ "st ud",
+ "▁extern as",
+ "▁Александ р",
+ "▁d ign",
+ "▁di gn",
+ "▁dig n",
+ "▁жи ве",
+ "Am ount",
+ "A mount",
+ "▁correl ate",
+ "▁corre late",
+ "▁F ant",
+ "▁Fa nt",
+ "▁r ails",
+ "▁ra ils",
+ "▁rail s",
+ "▁ rails",
+ "f p",
+ "министра тив",
+ "▁b ought",
+ "▁fil ters",
+ "▁filter s",
+ "▁ filters",
+ "▁anc ora",
+ "▁part ner",
+ "▁qu and",
+ "▁quan d",
+ "sym bol",
+ "s ymbol",
+ "ul ating",
+ "ula ting",
+ "▁z d",
+ "▁ zd",
+ "aw n",
+ "a wn",
+ "▁G rant",
+ "▁Gr ant",
+ "▁Gra nt",
+ "▁Gran t",
+ "bec ause",
+ "b ecause",
+ "ra ble",
+ "rab le",
+ "r able",
+ "\\ }",
+ "íst icas",
+ "ística s",
+ "▁у че",
+ "▁péri ode",
+ "▁s ke",
+ "▁sk e",
+ "▁ ske",
+ "▁Any way",
+ "▁index es",
+ "▁inde xes",
+ "▁direct ions",
+ "▁dire ctions",
+ "▁direction s",
+ "▁R AM",
+ "▁RA M",
+ "▁ RAM",
+ "ch rome",
+ "chr ome",
+ "chrom e",
+ "▁a post",
+ "▁ap ost",
+ "▁apo st",
+ "▁war nings",
+ "▁warning s",
+ "▁warn ings",
+ "▁Air port",
+ "V I",
+ "ab ile",
+ "abil e",
+ "abi le",
+ "▁l ord",
+ "▁lo rd",
+ "pro vider",
+ "prov ider",
+ "▁J i",
+ "ost ream",
+ "o stream",
+ "▁geme ente",
+ "table View",
+ "Ex tra",
+ "Ext ra",
+ "c ursor",
+ "eg round",
+ "egr ound",
+ "e ground",
+ "▁M oz",
+ "▁Mo z",
+ "▁r ib",
+ "▁ri b",
+ "▁ rib",
+ "▁m orph",
+ "▁mor ph",
+ "lo ads",
+ "load s",
+ "el sk",
+ "els k",
+ "▁M AX",
+ "▁MA X",
+ "▁ MAX",
+ "▁Santi ago",
+ "▁H im",
+ "▁Hi m",
+ "code s",
+ "co des",
+ "cod es",
+ "c odes",
+ "▁l anz",
+ "▁lan z",
+ "▁count s",
+ "▁coun ts",
+ "rinn ingsområ",
+ "щ ё",
+ "▁sp é",
+ "▁pier ws",
+ "▁pierw s",
+ "▁S ver",
+ "▁Sv er",
+ "▁a cknow",
+ "▁ac know",
+ "Bo olean",
+ "▁фами ли",
+ "▁Sen ate",
+ "шо в",
+ "ш ов",
+ "ag ers",
+ "age rs",
+ "ager s",
+ "a gers",
+ "▁Nue va",
+ "bi l",
+ "b il",
+ "ki em",
+ "kie m",
+ "k iem",
+ "▁M ey",
+ "▁Me y",
+ "wi j",
+ "w ij",
+ "▁G mbH",
+ "valid ation",
+ "▁en suite",
+ "in king",
+ "ink ing",
+ "▁c ampion",
+ "▁camp ion",
+ "▁finan cial",
+ "▁financi al",
+ "iz on",
+ "izo n",
+ "i zon",
+ "He aders",
+ "Head ers",
+ "Header s",
+ "▁deprec ated",
+ "▁fon ction",
+ "RE G",
+ "R EG",
+ "▁vol umes",
+ "▁volume s",
+ "▁C hi",
+ "▁Ch i",
+ "▁encounter ed",
+ "la k",
+ "l ak",
+ "ра я",
+ "▁contin ues",
+ "▁continu es",
+ "▁continue s",
+ "▁~ [",
+ "uer te",
+ "u erte",
+ "▁\\ ;",
+ "▁ \\;",
+ "▁D ok",
+ "▁Do k",
+ "▁we ights",
+ "▁weight s",
+ "▁r h",
+ "▁ rh",
+ "▁Na pole",
+ "▁Nap ole",
+ "▁natur ally",
+ "▁natural ly",
+ "sk u",
+ "s ku",
+ "pa s",
+ "p as",
+ "▁g egründ",
+ "et r",
+ "e tr",
+ "▁K u",
+ "ic ted",
+ "ict ed",
+ "i cted",
+ "▁fab ric",
+ "▁A SC",
+ "▁AS C",
+ "▁ ASC",
+ "▁Entertain ment",
+ "▁en erg",
+ "▁ener g",
+ "кла д",
+ "к лад",
+ "om on",
+ "omo n",
+ "o mon",
+ "th eme",
+ "the me",
+ "▁ха рак",
+ "▁d raft",
+ "▁dr aft",
+ "▁dra ft",
+ "▁ch annels",
+ "▁channel s",
+ "▁de sert",
+ "▁des ert",
+ "▁deser t",
+ "▁tra vés",
+ "▁trav és",
+ "▁L ock",
+ "▁Lo ck",
+ "▁Loc k",
+ "▁ Lock",
+ "▁s iendo",
+ "▁si endo",
+ "фе к",
+ "ф ек",
+ "m ême",
+ "▁pa cket",
+ "▁pack et",
+ "▁pac ket",
+ "▁Mount ain",
+ "▁F ahr",
+ "▁Fa hr",
+ "bra io",
+ "пе ре",
+ "пер е",
+ "п ере",
+ "▁gen annt",
+ "▁dep loyment",
+ "▁deploy ment",
+ "Pa l",
+ "P al",
+ "но г",
+ "ст ру",
+ "стр у",
+ "Pr im",
+ "P rim",
+ "f ür",
+ "▁danger ous",
+ "▁sz ám",
+ "re ck",
+ "rec k",
+ "▁pop up",
+ "ic ky",
+ "ick y",
+ "in ar",
+ "ina r",
+ "i nar",
+ "co wo",
+ "cow o",
+ "c owo",
+ "нци кло",
+ "ít ás",
+ "▁pl ugins",
+ "▁plugin s",
+ "▁plug ins",
+ "▁ plugins",
+ "▁dr iven",
+ "▁drive n",
+ "▁dri ven",
+ "▁driv en",
+ "ле в",
+ "л ев",
+ "▁\" (",
+ "tt a",
+ "t ta",
+ "▁ Ú",
+ "▁e b",
+ "▁ eb",
+ "▁' ';",
+ "▁'' ;",
+ "▁kn ock",
+ "▁ос нова",
+ "▁основ а",
+ "▁m aison",
+ "▁ma ison",
+ "▁mais on",
+ "▁mai son",
+ "г ля",
+ "▁Hon or",
+ "▁Ho nor",
+ "ta il",
+ "t ail",
+ "ri tz",
+ "rit z",
+ "r itz",
+ "▁gu ys",
+ "▁combin ations",
+ "▁combination s",
+ "ond ere",
+ "onder e",
+ "onde re",
+ "▁A ld",
+ "▁Al d",
+ "▁f iddle",
+ "▁ fiddle",
+ "да в",
+ "ur d",
+ "u rd",
+ "▁pro jection",
+ "▁project ion",
+ "▁Tamb ién",
+ "ve rb",
+ "ver b",
+ "v erb",
+ "▁ter re",
+ "▁ terre",
+ "ru gu",
+ "rug u",
+ "▁se ptember",
+ "▁sept ember",
+ "▁< !",
+ "co st",
+ "cos t",
+ "c ost",
+ "▁n ut",
+ "▁nu t",
+ "▁ nut",
+ "{ %",
+ "▁ub ic",
+ "am arin",
+ "ama rin",
+ "amar in",
+ "ти и",
+ "▁pat ron",
+ "▁patr on",
+ "▁am ely",
+ "▁e sto",
+ "▁est o",
+ "▁es to",
+ "▁ esto",
+ "▁li stop",
+ "▁list op",
+ "fa l",
+ "f al",
+ "▁P rop",
+ "▁Pro p",
+ "▁Pr op",
+ "▁ Prop",
+ "▁O nt",
+ "▁On t",
+ "▁M ade",
+ "▁Ma de",
+ "▁Mad e",
+ "TE ST",
+ "▁N em",
+ "▁Ne m",
+ "▁N ations",
+ "▁Nat ions",
+ "▁Nation s",
+ "▁в у",
+ "▁ ву",
+ "in cluding",
+ "includ ing",
+ "▁spect rum",
+ "▁L an",
+ "▁La n",
+ "▁E ver",
+ "▁Ev er",
+ "Pa ul",
+ "t m",
+ "App end",
+ "Ap pend",
+ "Rel ative",
+ "dis abled",
+ "disable d",
+ "return s",
+ "▁flow ers",
+ "▁flo wers",
+ "▁flower s",
+ "ik u",
+ "i ku",
+ "▁| \\",
+ "▁ |\\",
+ "▁Jord an",
+ "▁Sm all",
+ "▁c ic",
+ "▁ci c",
+ "▁sex ual",
+ "au tre",
+ "aut re",
+ "ва л",
+ "в ал",
+ "▁r ip",
+ "▁ri p",
+ "▁ rip",
+ "ou st",
+ "ous t",
+ "o ust",
+ "▁Philadel phia",
+ "▁u k",
+ "▁ uk",
+ "▁M ongo",
+ "▁Mon go",
+ "▁Mong o",
+ "xml ns",
+ "▁sh op",
+ "▁sho p",
+ "▁ shop",
+ "▁debug ger",
+ "▁z aj",
+ "▁za j",
+ "▁B illy",
+ "▁Bill y",
+ "▁Bil ly",
+ "▁n iem",
+ "▁nie m",
+ "▁ni em",
+ "ol is",
+ "oli s",
+ "o lis",
+ "▁ро ссий",
+ "ag ner",
+ "agn er",
+ "agne r",
+ "▁m aven",
+ "▁ma ven",
+ "▁ maven",
+ "▁Gu stav",
+ "▁Gust av",
+ "A us",
+ "comp are",
+ "▁j eu",
+ "▁je u",
+ "ud er",
+ "ude r",
+ "u der",
+ "ish ment",
+ "▁ди визи",
+ "▁Fin land",
+ "ну т",
+ "н ут",
+ "z és",
+ "▁Liga ções",
+ "▁Lig ações",
+ "▁qu ello",
+ "▁quel lo",
+ "an notation",
+ "annot ation",
+ "▁th rew",
+ "▁thr ew",
+ "▁thre w",
+ "▁Pro of",
+ "▁ Proof",
+ "▁A rea",
+ "▁Ar ea",
+ "▁Are a",
+ "▁ Area",
+ "as hi",
+ "ash i",
+ "▁F O",
+ "▁ FO",
+ "ja min",
+ "j amin",
+ "ден т",
+ "д ент",
+ "▁un us",
+ "fri end",
+ ".\" );",
+ ".\") ;",
+ ". \");",
+ "▁tra kten",
+ "document class",
+ "an ka",
+ "ank a",
+ "▁ar rive",
+ "▁arr ive",
+ "▁arriv e",
+ "▁d onne",
+ "▁don ne",
+ "▁donn e",
+ "ol y",
+ "o ly",
+ "▁R ein",
+ "▁Re in",
+ "▁face book",
+ "▁fac ebook",
+ "▁ facebook",
+ "ic ina",
+ "ici na",
+ "sl ice",
+ "s lice",
+ "▁n agy",
+ "▁na gy",
+ "▁nag y",
+ "▁he bben",
+ "▁I C",
+ "▁ IC",
+ "▁B ag",
+ "▁Ba g",
+ "▁ Bag",
+ "▁circ ul",
+ "▁cir cul",
+ "ác t",
+ "á ct",
+ "mit t",
+ "mi tt",
+ "m itt",
+ "▁g rey",
+ "▁gr ey",
+ "▁gre y",
+ "▁c av",
+ "▁ca v",
+ "▁осо би",
+ "▁sym metric",
+ "▁symmet ric",
+ "▁S ic",
+ "▁Si c",
+ "▁med ium",
+ "▁medi um",
+ "▁ medium",
+ "▁U TF",
+ "▁ UTF",
+ "▁D opo",
+ "▁Do po",
+ "í ch",
+ "bar e",
+ "ba re",
+ "b are",
+ "dz ie",
+ "d zie",
+ "▁he aven",
+ "▁heav en",
+ "▁cam pe",
+ "▁camp e",
+ "ester day",
+ "esterd ay",
+ "▁W issenschaft",
+ "по ль",
+ "пол ь",
+ "di d",
+ "d id",
+ "al er",
+ "ale r",
+ "a ler",
+ "▁citiz ens",
+ "▁Marg aret",
+ "▁s ought",
+ "ch arts",
+ "char ts",
+ "chart s",
+ "CL C",
+ "C LC",
+ "ol ly",
+ "oll y",
+ "ys z",
+ "y sz",
+ "wa ld",
+ "wal d",
+ "w ald",
+ "▁f en",
+ "▁fe n",
+ "▁ fen",
+ "▁S ix",
+ "▁Si x",
+ "▁U rs",
+ "▁Ur s",
+ "▁ор ган",
+ "▁T rad",
+ "▁Tr ad",
+ "▁Tra d",
+ "cu e",
+ "c ue",
+ "sch utz",
+ "▁prec ise",
+ "▁precis e",
+ "▁W indow",
+ "▁Wind ow",
+ "▁ Window",
+ "ти е",
+ "ло ві",
+ "лов і",
+ "it ori",
+ "ito ri",
+ "itor i",
+ "dis ambiguation",
+ "▁х и",
+ "▁ хи",
+ "▁N atural",
+ "▁Natur al",
+ "▁Nat ural",
+ "da n",
+ "d an",
+ "▁con crete",
+ "ци ја",
+ "▁s pel",
+ "▁sp el",
+ "▁spe l",
+ "▁Fa iled",
+ "▁Fail ed",
+ "▁ Failed",
+ "ści e",
+ "śc ie",
+ "ś cie",
+ "▁b uf",
+ "▁bu f",
+ "▁ buf",
+ "uc a",
+ "u ca",
+ "ic ional",
+ "ici onal",
+ "icio nal",
+ "icion al",
+ "▁ott obre",
+ "▁otto bre",
+ "▁ф і",
+ "▁ фі",
+ "▁submit ted",
+ "▁subm itted",
+ "la ve",
+ "lav e",
+ "l ave",
+ "▁P lot",
+ "▁Pl ot",
+ "▁ Plot",
+ "▁col leg",
+ "▁coll eg",
+ "▁colle g",
+ "ad em",
+ "ade m",
+ "a dem",
+ "▁ch aque",
+ "▁cha que",
+ "▁neighbor hood",
+ "▁calci atore",
+ "Lo op",
+ "L oop",
+ "▁G ast",
+ "▁Ga st",
+ "▁Gas t",
+ "▁ко гда",
+ "▁indust rial",
+ "▁industri al",
+ "▁f atal",
+ "▁fa tal",
+ "▁fat al",
+ "▁C ert",
+ "▁Ce rt",
+ "▁Cer t",
+ "▁ Cert",
+ "la tion",
+ "lat ion",
+ "l ation",
+ "▁О дна",
+ "▁Од на",
+ "▁jam ais",
+ "▁acc um",
+ "Id entity",
+ "Ident ity",
+ "▁Me dal",
+ "▁Med al",
+ "Met adata",
+ "Meta data",
+ "▁лю дя",
+ "br idge",
+ "brid ge",
+ "b ridge",
+ "Go od",
+ "G ood",
+ "▁что бы",
+ "▁comp oser",
+ "▁compos er",
+ "▁compose r",
+ "▁b read",
+ "▁br ead",
+ "▁bre ad",
+ "▁clos ure",
+ "▁ closure",
+ "▁large ly",
+ "▁larg ely",
+ "F B",
+ "▁обла сть",
+ "▁autom atic",
+ "▁automat ic",
+ "ar ía",
+ "a ría",
+ "▁sufficient ly",
+ "▁ital iana",
+ "▁ка че",
+ "▁J ó",
+ "hi story",
+ "histor y",
+ "h istory",
+ "▁H D",
+ "▁ HD",
+ "▁sigu iente",
+ "ne ll",
+ "nel l",
+ "n ell",
+ "▁G ree",
+ "▁Gr ee",
+ "▁Gre e",
+ "▁T i",
+ "▁trans ferred",
+ "▁transfer red",
+ "équ ipe",
+ "é quipe",
+ "▁Phili ppe",
+ "▁Philipp e",
+ "▁Philip pe",
+ "▁encou rag",
+ "▁V ietnam",
+ "▁graph s",
+ "▁symmet ry",
+ "fr ed",
+ "fre d",
+ "f red",
+ "we ek",
+ "▁bron ze",
+ "ry s",
+ "r ys",
+ "▁name ly",
+ "▁nam ely",
+ "on ders",
+ "ond ers",
+ "onder s",
+ "onde rs",
+ "lem agne",
+ "X Y",
+ "Con vert",
+ "}] (",
+ "} ](",
+ "Reg ion",
+ "pe cies",
+ "pec ies",
+ "▁te xture",
+ "▁text ure",
+ "▁c hr",
+ "▁ch r",
+ "▁ chr",
+ "не го",
+ "н его",
+ "▁some body",
+ "a qu",
+ "er as",
+ "era s",
+ "e ras",
+ "▁Н ово",
+ "▁Но во",
+ "▁Нов о",
+ "▁d ez",
+ "▁de z",
+ "an iu",
+ "ani u",
+ "a niu",
+ "ok rat",
+ "▁co vers",
+ "▁cover s",
+ "▁cov ers",
+ "▁sign als",
+ "▁signal s",
+ "ђ е",
+ "▁H eb",
+ "▁He b",
+ "▁An ti",
+ "▁Ant i",
+ "IV E",
+ "I VE",
+ "▁re ss",
+ "▁r ess",
+ "▁res s",
+ "▁ ress",
+ "LE TE",
+ "yn a",
+ "y na",
+ "п ла",
+ "жде ния",
+ "ж дения",
+ "▁ch amp",
+ "▁cha mp",
+ "▁cham p",
+ "▁vill ages",
+ "▁village s",
+ "▁villa ges",
+ "Z one",
+ "▁i Phone",
+ "▁sou vent",
+ "сь кі",
+ "ськ і",
+ "▁feb braio",
+ "ér cito",
+ "▁X I",
+ "ok at",
+ "oka t",
+ "▁mem bres",
+ "▁memb res",
+ "▁membre s",
+ "ju nit",
+ "j unit",
+ "▁D raw",
+ "▁Dr aw",
+ "▁Dra w",
+ "▁ Draw",
+ "▁п рово",
+ "▁про во",
+ "▁пров о",
+ "▁пр ово",
+ "aud io",
+ "audi o",
+ "a udio",
+ "en dl",
+ "end l",
+ "▁N ad",
+ "▁Na d",
+ "▁magn itude",
+ "Su r",
+ "S ur",
+ "ic ing",
+ "ici ng",
+ "i cing",
+ "▁un w",
+ "▁о три",
+ "▁от ри",
+ "▁B ey",
+ "▁Be y",
+ "▁V ik",
+ "▁Vi k",
+ "▁polít ica",
+ "port er",
+ "por ter",
+ "porte r",
+ "p orter",
+ "▁Bar bara",
+ "▁Barb ara",
+ "ál t",
+ "á lt",
+ "bi b",
+ "b ib",
+ "▁accom pan",
+ "▁accomp an",
+ "V P",
+ "▁en coded",
+ "▁enc oded",
+ "▁encode d",
+ "▁ encoded",
+ "▁S ometimes",
+ "▁Some times",
+ "bi rd",
+ "bir d",
+ "b ird",
+ "▁U lt",
+ "▁Ul t",
+ "▁t un",
+ "▁tu n",
+ "get Text",
+ "▁ar rival",
+ "▁arr ival",
+ "▁arriv al",
+ "script style",
+ "{ `",
+ "▁pers pective",
+ "LI NE",
+ "LIN E",
+ "L INE",
+ "Form atter",
+ "Format ter",
+ "▁b om",
+ "▁bo m",
+ "в ра",
+ "DE BUG",
+ "Bound s",
+ "B ounds",
+ "▁T itle",
+ "▁Tit le",
+ "▁ Title",
+ "l ó",
+ "Da n",
+ "D an",
+ "▁g ene",
+ "▁ge ne",
+ "▁gen e",
+ "▁B it",
+ "▁Bi t",
+ "▁ Bit",
+ "▁reprodu ce",
+ "▁graph ics",
+ "▁ graphics",
+ "▁с ем",
+ "▁се м",
+ "р ё",
+ "▁ре ки",
+ "us alem",
+ "usa lem",
+ "ро ж",
+ "▁D ES",
+ "▁DE S",
+ "▁So ftware",
+ "ur ance",
+ "u rance",
+ "ithmet ic",
+ "en ess",
+ "ene ss",
+ "enes s",
+ "e ness",
+ "ic hi",
+ "ich i",
+ "i chi",
+ "Con verter",
+ "Convert er",
+ "▁g ithub",
+ "▁ github",
+ "erd ings",
+ "gl ise",
+ "ác h",
+ "á ch",
+ "▁bu ried",
+ "▁bur ied",
+ "▁v ision",
+ "▁vis ion",
+ "▁ vision",
+ "M iss",
+ "▁s ees",
+ "▁se es",
+ "▁see s",
+ "▁person nes",
+ "▁pers onnes",
+ "▁personn es",
+ "▁personne s",
+ "▁In tel",
+ "▁Int el",
+ "el ia",
+ "eli a",
+ "e lia",
+ "▁č lán",
+ "▁c hi",
+ "▁ch i",
+ "▁ chi",
+ "▁k las",
+ "▁kl as",
+ "au té",
+ "aut é",
+ "▁st ark",
+ "▁star k",
+ "cz e",
+ "c ze",
+ "▁dr ivers",
+ "▁driver s",
+ "▁drive rs",
+ "▁dri vers",
+ "▁driv ers",
+ "v n",
+ "! ,",
+ "▁го ды",
+ "▁год ы",
+ "H i",
+ "▁expla ins",
+ "▁expl ains",
+ "▁explain s",
+ "art icles",
+ "article s",
+ "▁z ug",
+ "▁zu g",
+ "▁ zug",
+ "Pro m",
+ "Pr om",
+ "P rom",
+ "> =",
+ "▁Be at",
+ "▁S ax",
+ "▁Sa x",
+ "vert ical",
+ "кт о",
+ "к то",
+ "▁pl ants",
+ "▁plan ts",
+ "▁plant s",
+ "▁Ré férences",
+ "▁Référence s",
+ "▁og ni",
+ "▁c urs",
+ "▁cu rs",
+ "▁cur s",
+ "▁S K",
+ "▁ SK",
+ "он и",
+ "о ни",
+ "▁des tac",
+ "▁dest ac",
+ "\") ;\r",
+ "\"); \r",
+ "\" );\r",
+ "▁S ure",
+ "▁Su re",
+ "▁Sur e",
+ "▁part ido",
+ "▁parti do",
+ "▁Fol ge",
+ "▁Mo ore",
+ "▁w z",
+ "ск ус",
+ "ску с",
+ "lt re",
+ "l tre",
+ "on do",
+ "ond o",
+ "▁p ose",
+ "▁po se",
+ "▁pos e",
+ "▁ pose",
+ "im os",
+ "imo s",
+ "i mos",
+ "бо й",
+ "ци па",
+ "ju s",
+ "j us",
+ ".. ...",
+ "... ..",
+ ".... .",
+ ". ....",
+ "▁ép oca",
+ "▁qu anto",
+ "▁quant o",
+ "▁quan to",
+ "▁Su pport",
+ "▁Supp ort",
+ "▁Sup port",
+ "▁ Support",
+ "gesch ichte",
+ "SER VER",
+ "▁George s",
+ "▁Georg es",
+ "en um",
+ "enu m",
+ "e num",
+ "▁h erm",
+ "▁he rm",
+ "▁her m",
+ "▁ne bo",
+ "▁C hr",
+ "▁Ch r",
+ "▁ Chr",
+ "char acter",
+ "▁* **",
+ "▁** *",
+ "▁ ***",
+ "▁For sch",
+ "ia mi",
+ "iam i",
+ "i ami",
+ "▁ ¿",
+ "cy ch",
+ "cyc h",
+ "c ych",
+ "▁fif th",
+ "se nt",
+ "sen t",
+ "s ent",
+ "▁and erem",
+ "▁andere m",
+ "▁proport ion",
+ "▁propor tion",
+ "▁p rest",
+ "▁pr est",
+ "▁pre st",
+ "▁pres t",
+ "▁G irl",
+ "▁Gi rl",
+ "▁Gir l",
+ "▁d rama",
+ "▁dr ama",
+ "▁dra ma",
+ "▁dram a",
+ "wa nd",
+ "wan d",
+ "w and",
+ "▁M ail",
+ "▁Ma il",
+ "▁Mai l",
+ "▁ Mail",
+ "▁L ux",
+ "▁Lu x",
+ "▁kter ý",
+ "▁Ges ellschaft",
+ "▁Hin weis",
+ "nis se",
+ "n isse",
+ "▁m ondo",
+ "▁mon do",
+ "▁mond o",
+ "E q",
+ "▁per í",
+ "▁pe rí",
+ "▁e astern",
+ "▁eas tern",
+ "▁east ern",
+ "▁UE FA",
+ "ual e",
+ "ua le",
+ "u ale",
+ "▁con vex",
+ "▁conv ex",
+ "▁по ль",
+ "▁пол ь",
+ "▁ поль",
+ "▁H ey",
+ "▁He y",
+ "ze nie",
+ "zen ie",
+ "z enie",
+ "init ely",
+ "▁Z usammen",
+ "SS L",
+ "S SL",
+ "oc al",
+ "oca l",
+ "o cal",
+ "▁c anal",
+ "▁can al",
+ "▁ca nal",
+ "vo y",
+ "v oy",
+ "▁К ри",
+ "▁köz ött",
+ "▁c ars",
+ "▁car s",
+ "▁ca rs",
+ "▁vers ión",
+ "En vironment",
+ "He r",
+ "H er",
+ "▁se ñ",
+ "▁sp atial",
+ "ym i",
+ "y mi",
+ "Fi re",
+ "F ire",
+ "▁ve get",
+ "▁veg et",
+ "▁W ie",
+ "▁Wi e",
+ "▁zn aj",
+ "▁zna j",
+ "▁dam age",
+ "▁en dl",
+ "▁end l",
+ "▁ endl",
+ "gi f",
+ "g if",
+ "▁qu ali",
+ "▁qual i",
+ "▁которы х",
+ "el lan",
+ "ell an",
+ "ella n",
+ "▁m ens",
+ "▁me ns",
+ "▁men s",
+ "▁pl ug",
+ "▁a bund",
+ "▁ab und",
+ "FI G",
+ "F IG",
+ "▁s f",
+ "▁ sf",
+ "▁con fl",
+ "▁conf l",
+ "▁насе ления",
+ "▁princi ples",
+ "▁princip les",
+ "▁principle s",
+ "▁Gab riel",
+ "ib e",
+ "i be",
+ "▁{ %",
+ "▁ {%",
+ "▁pobla ció",
+ "ні ципа",
+ "▁ext reme",
+ "▁extrem e",
+ "▁extr eme",
+ "▁as se",
+ "▁ass e",
+ "▁ asse",
+ "▁v u",
+ "▁ vu",
+ "Mo ck",
+ "M ock",
+ "▁spiel te",
+ "▁A er",
+ "▁d atos",
+ "▁dat os",
+ "en des",
+ "end es",
+ "ende s",
+ "▁G el",
+ "▁Ge l",
+ "▁G or",
+ "▁Go r",
+ "Ch rist",
+ "Chr ist",
+ "ch os",
+ "cho s",
+ "c hos",
+ "Process or",
+ "Proc essor",
+ "▁in struct",
+ "▁inst ruct",
+ "▁instru ct",
+ "▁p icked",
+ "▁pick ed",
+ "▁pic ked",
+ "nah me",
+ "nahm e",
+ "fa hr",
+ "fah r",
+ "f ahr",
+ "▁indic ated",
+ "▁indicate d",
+ "▁% .",
+ "▁ %.",
+ "▁t s",
+ "▁ ts",
+ "▁not able",
+ "▁no table",
+ "▁qual ified",
+ "▁А л",
+ "Bl ack",
+ "B lack",
+ "▁coun cil",
+ "▁over head",
+ "ac i",
+ "a ci",
+ "an née",
+ "ann ée",
+ "▁init With",
+ "bi ó",
+ "b ió",
+ "▁int roduction",
+ "▁introdu ction",
+ "▁compan ion",
+ "▁ex pon",
+ "▁exp on",
+ "▁k ör",
+ "▁kö r",
+ "ob y",
+ "o by",
+ "bu rn",
+ "bur n",
+ "b urn",
+ "gn u",
+ "g nu",
+ "virt ual",
+ "v irtual",
+ "▁intel lect",
+ "▁д ержа",
+ "▁ держа",
+ "' +",
+ "б ле",
+ "▁strict ly",
+ "▁recogn ize",
+ "ho ur",
+ "hou r",
+ "h our",
+ "▁W rest",
+ "en nen",
+ "enn en",
+ "enne n",
+ "$) .",
+ "$ ).",
+ "ff f",
+ "f ff",
+ "▁Cent ro",
+ "▁P itt",
+ "▁Pi tt",
+ "▁Pit t",
+ "▁d ział",
+ "▁dz iał",
+ "▁ dział",
+ "▁c ela",
+ "▁ce la",
+ "▁cel a",
+ "▁frances e",
+ "▁franc ese",
+ "ра ми",
+ "spe cial",
+ "spec ial",
+ "▁D up",
+ "▁Du p",
+ "to ire",
+ "t oire",
+ "ка ль",
+ "кал ь",
+ "к аль",
+ "CO UNT",
+ "▁Br ook",
+ "▁Bro ok",
+ "▁ру ково",
+ "pub lique",
+ "▁se conda",
+ "▁second a",
+ "▁sec onda",
+ "▁com pt",
+ "▁comp t",
+ "▁b land",
+ "▁bl and",
+ "▁bla nd",
+ "▁blan d",
+ "Be fore",
+ "▁P ack",
+ "▁Pa ck",
+ "▁Pac k",
+ "▁ Pack",
+ "al ty",
+ "alt y",
+ "öd er",
+ "ö der",
+ "▁interval s",
+ "▁Daten bank",
+ "Mo vie",
+ "M ovie",
+ "▁trans m",
+ "▁tran sm",
+ "▁t ap",
+ "▁ta p",
+ "▁по ч",
+ "fo n",
+ "f on",
+ "ia i",
+ "i ai",
+ "▁f ib",
+ "▁fi b",
+ "▁w yd",
+ "▁wy d",
+ "▁h ung",
+ "▁hun g",
+ "▁hu ng",
+ "▁ hung",
+ "▁a live",
+ "▁al ive",
+ "▁ali ve",
+ "Cl ear",
+ "C lear",
+ "▁p ushed",
+ "▁push ed",
+ "▁tu ple",
+ "▁ tuple",
+ "ach en",
+ "ac hen",
+ "ache n",
+ "a chen",
+ "го во",
+ "гов о",
+ "г ово",
+ "▁re vers",
+ "▁rev ers",
+ "▁reve rs",
+ "▁rever s",
+ "▁au gment",
+ "▁aug ment",
+ "▁ch allenge",
+ "▁challeng e",
+ "lo st",
+ "los t",
+ "l ost",
+ "▁deux ième",
+ "struct or",
+ "stru ctor",
+ "▁mehr erer",
+ "▁mehrere r",
+ "at ural",
+ "atur al",
+ "atura l",
+ "atu ral",
+ "Sp lit",
+ "S plit",
+ "ст ем",
+ "сте м",
+ "с тем",
+ "ш ла",
+ ")\\ \\",
+ ") \\\\",
+ "▁D og",
+ "▁Do g",
+ "▁develop ers",
+ "▁developer s",
+ "▁ developers",
+ "▁n od",
+ "▁no d",
+ "▁сто ро",
+ "▁Na N",
+ "▁ NaN",
+ "▁pr iest",
+ "▁pri est",
+ "▁ex ha",
+ "UN D",
+ "U ND",
+ "pa ir",
+ "p air",
+ "al one",
+ "alo ne",
+ "▁m oon",
+ "▁mo on",
+ "▁# !/",
+ "▁g uns",
+ "▁gu ns",
+ "▁gun s",
+ "ro la",
+ "rol a",
+ "r ola",
+ "чи та",
+ "▁Encyc lopedia",
+ "▁Encyclop edia",
+ "at is",
+ "ati s",
+ "a tis",
+ "▁' \"",
+ "▁ '\"",
+ "zy ch",
+ "z ych",
+ "▁super fic",
+ "▁э к",
+ "еде ра",
+ "fe ed",
+ "f eed",
+ "LA Y",
+ "F i",
+ "un ks",
+ "unk s",
+ "ise cond",
+ "i second",
+ "▁' @",
+ "▁Ad ding",
+ "▁Add ing",
+ "ро е",
+ "▁t ang",
+ "▁tan g",
+ "▁ta ng",
+ "ц о",
+ "hu ng",
+ "h ung",
+ "bi s",
+ "b is",
+ "sk ého",
+ "ské ho",
+ "▁ad vert",
+ "▁adv ert",
+ "▁за нима",
+ "uz z",
+ "u zz",
+ "ág ina",
+ "▁T el",
+ "▁Te l",
+ "si g",
+ "s ig",
+ "▁E z",
+ "▁guarante e",
+ "▁te aching",
+ "▁teach ing",
+ "ot y",
+ "o ty",
+ "ter min",
+ "term in",
+ "▁distribution s",
+ "▁distrib utions",
+ "FL A",
+ "F LA",
+ "▁Gi useppe",
+ "query Selector",
+ "▁/ \\",
+ "▁ /\\",
+ "▁S quad",
+ "g z",
+ "de lay",
+ "del ay",
+ "▁surr ounding",
+ "▁m anus",
+ "▁man us",
+ "▁H ou",
+ "▁Ho u",
+ "² ,",
+ "▁cult iv",
+ "▁trouble s",
+ "▁trou bles",
+ "▁r aison",
+ "▁ra ison",
+ "exp and",
+ "▁c ov",
+ "▁co v",
+ "▁ cov",
+ "nung en",
+ "n ungen",
+ ")) {",
+ ") ){",
+ "▁g een",
+ "▁ge en",
+ "▁au ßer",
+ "▁Л і",
+ "ř i",
+ "▁situ ations",
+ "▁situation s",
+ "▁tele p",
+ "▁tel ep",
+ "▁J ed",
+ "▁Je d",
+ "▁trav ail",
+ "▁trava il",
+ "li as",
+ "lia s",
+ "l ias",
+ "bul let",
+ "▁select ing",
+ "av ier",
+ "avi er",
+ "a vier",
+ "▁ess ential",
+ "( /",
+ "yy yy",
+ "št ě",
+ "ul ty",
+ "ult y",
+ "▁k ra",
+ "▁kr a",
+ "▁t abs",
+ "▁tab s",
+ "▁ta bs",
+ "▁ tabs",
+ "▁experience d",
+ "▁experien ced",
+ "az i",
+ "a zi",
+ "▁D irectory",
+ "▁Direct ory",
+ "▁Director y",
+ "▁ Directory",
+ "▁c ron",
+ "▁cr on",
+ "▁cro n",
+ "▁s pend",
+ "▁sp end",
+ "▁spe nd",
+ "▁R A",
+ "▁ RA",
+ "▁s elenium",
+ "▁sel enium",
+ "▁ selenium",
+ "▁T hé",
+ "▁Th é",
+ "Element s",
+ "El ements",
+ "ci i",
+ "c ii",
+ "▁p lat",
+ "▁pl at",
+ "▁pla t",
+ "▁arch ive",
+ "▁archiv e",
+ "▁ archive",
+ "▁ass istance",
+ "▁assist ance",
+ "▁ne ck",
+ "▁A venue",
+ "▁Aven ue",
+ "▁w heel",
+ "▁whe el",
+ "▁h ade",
+ "▁ha de",
+ "▁had e",
+ "Com mon",
+ "Comm on",
+ "▁D ialog",
+ "▁Di alog",
+ "▁Dia log",
+ "▁ Dialog",
+ "▁f org",
+ "▁for g",
+ "▁fo rg",
+ "▁sur ely",
+ "▁sure ly",
+ "▁h ockey",
+ "kt ó",
+ "k tó",
+ "▁t k",
+ "▁ tk",
+ "▁Br uce",
+ "▁Bru ce",
+ "▁e norm",
+ "▁en orm",
+ ", ’",
+ "▁Christ opher",
+ "▁Christoph er",
+ "je v",
+ "j ev",
+ "▁qu ad",
+ "▁ quad",
+ "▁A JAX",
+ "▁rel ief",
+ "▁reli ef",
+ "▁m odes",
+ "▁mod es",
+ "▁mo des",
+ "▁mode s",
+ "sk lär",
+ "s klär",
+ "▁V id",
+ "▁Vi d",
+ "▁Se rial",
+ "▁Ser ial",
+ "▁ Serial",
+ "▁to kens",
+ "▁token s",
+ "▁Pol and",
+ "▁Po land",
+ "\\ ]",
+ "▁v ide",
+ "▁vi de",
+ "▁vid e",
+ "ro oms",
+ "room s",
+ "om as",
+ "oma s",
+ "o mas",
+ "▁B ureau",
+ "▁Bur eau",
+ "c x",
+ "ность ю",
+ "ност ью",
+ "▁sign s",
+ "▁sig ns",
+ "ше ние",
+ "los sen",
+ "loss en",
+ "l ossen",
+ "▁Que ens",
+ "▁Queen s",
+ "▁m embre",
+ "▁mem bre",
+ "▁memb re",
+ "▁m ez",
+ "▁me z",
+ "▁ mez",
+ "▁B ool",
+ "▁Bo ol",
+ "▁ Bool",
+ "▁N aj",
+ "▁Na j",
+ "▁Mem ory",
+ "▁ Memory",
+ "▁K han",
+ "▁Kh an",
+ "▁l à",
+ "▁ là",
+ "▁H ud",
+ "▁Hu d",
+ "▁d ismiss",
+ "▁dis miss",
+ "ight h",
+ "igh th",
+ "▁f s",
+ "▁ fs",
+ "pr event",
+ "pre vent",
+ "prev ent",
+ "▁ме да",
+ "▁Pol ice",
+ "▁Po lice",
+ "▁с ко",
+ "▁ ско",
+ "fin ite",
+ "▁a mi",
+ "▁am i",
+ "▁ ami",
+ "▁M uch",
+ "▁Mu ch",
+ "ow ania",
+ "owa nia",
+ "owan ia",
+ "OR Y",
+ "O RY",
+ "io rs",
+ "ior s",
+ "i ors",
+ "▁Prem io",
+ "▁text box",
+ "d m",
+ "▁a fin",
+ "▁af in",
+ "▁Don ald",
+ "▁ Donald",
+ "▁P riv",
+ "▁Pr iv",
+ "▁Pri v",
+ "▁de cid",
+ "▁dec id",
+ "▁Maur ice",
+ "▁Mau rice",
+ "ag an",
+ "aga n",
+ "a gan",
+ "▁Britann ica",
+ "▁o ft",
+ "▁of t",
+ "▁consec utive",
+ "\"? >",
+ "\" ?>",
+ "ови й",
+ "st udent",
+ "stud ent",
+ "▁pe que",
+ "▁di eses",
+ "▁dies es",
+ "▁diese s",
+ "▁ret our",
+ "ét r",
+ "é tr",
+ "▁с ез",
+ "▁се з",
+ "▁k re",
+ "▁kr e",
+ "▁ kre",
+ "▁v otes",
+ "▁vo tes",
+ "▁vot es",
+ "▁vote s",
+ "ru ption",
+ "rupt ion",
+ "rup tion",
+ "iz ada",
+ "iza da",
+ "▁W iel",
+ "▁Wi el",
+ "▁Wie l",
+ "▁G ray",
+ "▁Gr ay",
+ "▁Gra y",
+ "▁Le op",
+ "▁Leo p",
+ "teil ung",
+ "tei lung",
+ "([ '",
+ "( ['",
+ "▁wh ites",
+ "▁white s",
+ "fr ica",
+ "fri ca",
+ "f rica",
+ "an imation",
+ "anim ation",
+ "cur l",
+ "cu rl",
+ "c url",
+ "ling s",
+ "lin gs",
+ "l ings",
+ "=\" $",
+ "lo yd",
+ "loy d",
+ "text sc",
+ "ор у",
+ "о ру",
+ "▁се ла",
+ "es ian",
+ "esi an",
+ "esia n",
+ "▁M ission",
+ "▁Miss ion",
+ "▁не за",
+ "▁ult imately",
+ "бо в",
+ "б ов",
+ "ol en",
+ "ole n",
+ "o len",
+ "ско му",
+ "ском у",
+ "ск ому",
+ "с кому",
+ "ne te",
+ "net e",
+ "n ete",
+ "▁D it",
+ "▁Di t",
+ "▁co stru",
+ "▁cost ru",
+ "dep endent",
+ "▁Re source",
+ "▁Res ource",
+ "▁ Resource",
+ "▁host s",
+ "▁hos ts",
+ "▁ hosts",
+ "▁re ar",
+ "▁r ear",
+ "D uration",
+ "ни ків",
+ "ник ів",
+ "М а",
+ "▁pl anning",
+ "▁plan ning",
+ "▁pre diction",
+ "▁pred iction",
+ "▁predict ion",
+ "▁L yn",
+ "▁Ly n",
+ "▁k ir",
+ "▁ki r",
+ "▁ kir",
+ "▁Leg isl",
+ "ма т",
+ "м ат",
+ "▁S occer",
+ "▁Soc cer",
+ "▁sur vey",
+ "▁surv ey",
+ "▁surve y",
+ "▁estadoun idense",
+ "or gen",
+ "org en",
+ "orge n",
+ "jo urd",
+ "jou rd",
+ "j ourd",
+ "▁ap rile",
+ "▁april e",
+ "▁apr ile",
+ "▁i ds",
+ "▁id s",
+ "▁ ids",
+ "сь ке",
+ "ськ е",
+ "▁emp loyee",
+ "▁employ ee",
+ "▁ employee",
+ "▁Schaus pieler",
+ "р ъ",
+ "▁mult imedia",
+ "▁multi media",
+ "▁сво ю",
+ "▁w ine",
+ "▁win e",
+ "▁E U",
+ "ic ă",
+ "▁R hein",
+ "▁Rh ein",
+ "▁Pal mar",
+ "ot eca",
+ "ote ca",
+ "▁prep are",
+ "▁prepar e",
+ "▁ prepare",
+ "▁T ot",
+ "▁To t",
+ "▁N ull",
+ "▁Nu ll",
+ "▁ Null",
+ "▁k in",
+ "▁ki n",
+ "▁ kin",
+ "in als",
+ "inal s",
+ "ina ls",
+ "▁New ton",
+ "▁t bl",
+ "▁ tbl",
+ "▁S old",
+ "▁So ld",
+ "▁Sol d",
+ "▁ver f",
+ "▁ve rf",
+ "at uring",
+ "atur ing",
+ "atu ring",
+ "▁la ptop",
+ "▁lap top",
+ "▁Со вет",
+ "▁Сов ет",
+ "▁Сове т",
+ "se cret",
+ "sec ret",
+ "▁Olymp ic",
+ "▁football er",
+ "▁Rud olf",
+ "▁con he",
+ "zy sk",
+ "▁evalu ated",
+ "▁evaluate d",
+ "» )",
+ "sh op",
+ "re pository",
+ "▁z ach",
+ "▁za ch",
+ "▁l osing",
+ "▁lo sing",
+ "▁los ing",
+ "et ter",
+ "ett er",
+ "ette r",
+ "▁W irtschaft",
+ "та к",
+ "▁unnecess ary",
+ "▁P hot",
+ "▁Ph ot",
+ "▁Pho t",
+ "an ska",
+ "ans ka",
+ "ansk a",
+ "▁N ative",
+ "▁Nat ive",
+ "▁ Native",
+ "CC E",
+ "C CE",
+ "▁fi fty",
+ "▁fif ty",
+ "▁e rw",
+ "▁er w",
+ "r h",
+ "is sent",
+ "iss ent",
+ "isse nt",
+ "issen t",
+ "}{ (",
+ "} {(",
+ "▁lan ç",
+ "▁X code",
+ "го род",
+ "гор од",
+ "ci r",
+ "c ir",
+ "▁pel ícula",
+ "▁O scar",
+ "▁Os car",
+ "▁sh ore",
+ "▁sho re",
+ "▁supp lied",
+ "ex amples",
+ "example s",
+ "Me ss",
+ "M ess",
+ "VI CE",
+ "V ICE",
+ "▁ex clude",
+ "▁h en",
+ "▁he n",
+ "▁ hen",
+ "▁гу бер",
+ "▁F ragment",
+ "▁Fra gment",
+ "▁ Fragment",
+ "▁B itte",
+ "▁Bi tte",
+ "▁Bit te",
+ "▁Bes ides",
+ "▁h es",
+ "▁he s",
+ "▁ hes",
+ "▁ih rem",
+ "▁ihr em",
+ "▁ihre m",
+ "▁Ser ge",
+ "▁art ific",
+ "=\" ${",
+ "=\"$ {",
+ "ло во",
+ "лов о",
+ "л ово",
+ "ut eur",
+ "ute ur",
+ "ta ire",
+ "t aire",
+ "па с",
+ "▁eas iest",
+ "▁fam iglia",
+ "N ormal",
+ "▁d alle",
+ "▁da lle",
+ "▁dal le",
+ "▁dall e",
+ "▁n ations",
+ "▁nation s",
+ "▁nat ions",
+ "r p",
+ "th ead",
+ "the ad",
+ "t head",
+ "▁обла сті",
+ "▁Democr atic",
+ "▁челов е",
+ "мо ж",
+ "▁г ер",
+ "▁ге р",
+ "▁ гер",
+ "▁small est",
+ "▁Publish ing",
+ "▁T s",
+ "▁laugh ed",
+ "ll e",
+ "l le",
+ "▁A mt",
+ "▁Am t",
+ "▁I IS",
+ "▁II S",
+ "FOR M",
+ "F ORM",
+ "Ma g",
+ "M ag",
+ "до н",
+ "д он",
+ "▁st oria",
+ "▁stor ia",
+ "▁sto ria",
+ "▁organ ized",
+ "▁organiz ed",
+ "č ní",
+ "▁o x",
+ "▁ ox",
+ "ling en",
+ "lin gen",
+ "l ingen",
+ "▁lu ego",
+ "cc ió",
+ "c ció",
+ "▁re ly",
+ "▁r ely",
+ "▁rel y",
+ "▁t ussen",
+ "er ten",
+ "ert en",
+ "erte n",
+ "▁hon our",
+ "▁Cla ude",
+ "▁Claud e",
+ "▁Ko rea",
+ "▁Kore a",
+ "▁Kor ea",
+ "▁Met ropol",
+ "▁Metro pol",
+ "Su per",
+ "S uper",
+ "ri en",
+ "rie n",
+ "r ien",
+ "ér ature",
+ "att ro",
+ "attr o",
+ "▁б іль",
+ "▁бі ль",
+ "▁ біль",
+ "▁Her bert",
+ "▁aut eurs",
+ "▁aute urs",
+ "▁dar auf",
+ "▁m ental",
+ "▁men tal",
+ "▁ment al",
+ "▁r ang",
+ "▁ra ng",
+ "▁ran g",
+ "▁s ón",
+ "▁só n",
+ "▁S oph",
+ "▁So ph",
+ ")\" ,",
+ ") \",",
+ "Des criptor",
+ "prep are",
+ "▁Land kreis",
+ "H C",
+ "cr oss",
+ "cro ss",
+ "c ross",
+ "ли за",
+ "▁Lo gin",
+ "▁Log in",
+ "▁ Login",
+ "on en",
+ "one n",
+ "o nen",
+ "Fe ature",
+ "▁m useum",
+ "▁muse um",
+ "▁ museum",
+ "ve k",
+ "v ek",
+ "▁Nel son",
+ "▁re jo",
+ "▁коман ди",
+ "▁sum mar",
+ "▁summ ar",
+ "▁сле ду",
+ "▁след у",
+ "äm p",
+ "ä mp",
+ "▁G as",
+ "▁Ga s",
+ "во м",
+ "в ом",
+ "VAL UE",
+ "in ge",
+ "ing e",
+ "per iod",
+ "lass en",
+ "las sen",
+ "lasse n",
+ "l assen",
+ "áv al",
+ "á val",
+ "▁alt ogether",
+ "um ph",
+ "ump h",
+ "ist ro",
+ "istr o",
+ "ą ż",
+ "▁Ke ep",
+ "▁Mar co",
+ "▁Marc o",
+ "▁ét ant",
+ "▁D re",
+ "▁Dr e",
+ "ge ometry",
+ "▁K as",
+ "▁Ka s",
+ "message s",
+ "mess ages",
+ "Co ok",
+ "C ook",
+ "▁S ide",
+ "▁Si de",
+ "▁Sid e",
+ "▁ Side",
+ "▁ко ми",
+ "▁ком и",
+ "ст ри",
+ "стр и",
+ "с три",
+ "▁ex cess",
+ "▁exc ess",
+ "▁Bi ografia",
+ "XX XX",
+ "XXX X",
+ "X XXX",
+ "▁N ie",
+ "▁Ni e",
+ "ven dor",
+ "v endor",
+ "xs d",
+ "x sd",
+ "Mil l",
+ "M ill",
+ "process ing",
+ "▁Miss ouri",
+ "▁perm ett",
+ "▁permet t",
+ "▁a par",
+ "▁ap ar",
+ "▁cro wd",
+ "▁crow d",
+ "fer t",
+ "fe rt",
+ "f ert",
+ "▁D ou",
+ "▁Do u",
+ "r í",
+ "▁C C",
+ "▁ CC",
+ "▁pay ment",
+ "▁ payment",
+ "▁Hol lywood",
+ "▁V irtual",
+ "▁ Virtual",
+ "▁sp oken",
+ "▁spoke n",
+ "▁spo ken",
+ "▁t ram",
+ "▁tr am",
+ "▁tra m",
+ "▁Comm unity",
+ "▁Commun ity",
+ "▁administr ative",
+ "▁в оло",
+ "▁во ло",
+ "gi or",
+ "gio r",
+ "g ior",
+ "vis or",
+ "▁Укра и",
+ "st age",
+ "sta ge",
+ "stag e",
+ "▁For mat",
+ "▁Form at",
+ "▁ Format",
+ "▁conven ient",
+ "Н а",
+ "▁med ian",
+ "▁media n",
+ "▁medi an",
+ "▁в ра",
+ "▁ вра",
+ "▁Пре ма",
+ "en ig",
+ "eni g",
+ "e nig",
+ "▁Op era",
+ "▁Oper a",
+ "ré s",
+ "r és",
+ "▁f mt",
+ "▁ fmt",
+ "▁effic iency",
+ "ma le",
+ "mal e",
+ "m ale",
+ "Ma ster",
+ "M aster",
+ "Ser ies",
+ "Se ries",
+ "S eries",
+ "▁s yd",
+ "▁sy d",
+ "gener ic",
+ "inter val",
+ "▁e fect",
+ "▁inwon ers",
+ "лим пи",
+ "ir ement",
+ "ire ment",
+ "Er r",
+ "E rr",
+ "ö h",
+ "▁l ying",
+ "▁ly ing",
+ "▁ lying",
+ "▁S ettings",
+ "▁Setting s",
+ "▁ Settings",
+ "! =",
+ "em atic",
+ "emat ic",
+ "arg v",
+ "▁Bas ic",
+ "▁ Basic",
+ "▁consider ation",
+ "▁h abe",
+ "▁ha be",
+ "▁hab e",
+ "- %",
+ "▁mount ains",
+ "▁mountain s",
+ "▁pe ak",
+ "▁f allen",
+ "▁fall en",
+ "▁fal len",
+ "ed ed",
+ "ede d",
+ "e ded",
+ "log ic",
+ "▁mat ched",
+ "▁match ed",
+ "▁typ ing",
+ "▁ty ping",
+ ")} ,",
+ ") },",
+ "▁f ancy",
+ "▁fan cy",
+ "▁eleg ant",
+ "ا ل",
+ "▁уча ст",
+ "▁Sa rah",
+ "▁Sar ah",
+ "▁V erd",
+ "▁Ver d",
+ "▁Ve rd",
+ "▁t ego",
+ "▁te go",
+ "ru les",
+ "rule s",
+ "r ules",
+ "▁mo unted",
+ "▁mount ed",
+ "▁і м",
+ "ер у",
+ "е ру",
+ "st off",
+ "sto ff",
+ "fa hren",
+ "fah ren",
+ "fahr en",
+ "f ahren",
+ "dist ance",
+ "d istance",
+ "▁Lic ense",
+ "▁LE FT",
+ "▁ LEFT",
+ "▁w p",
+ "▁ wp",
+ "/ {",
+ "▁am azon",
+ "▁amaz on",
+ "▁ amazon",
+ "> &",
+ "▁els ő",
+ "qu arters",
+ "▁sh ock",
+ "▁sho ck",
+ "ni ck",
+ "nic k",
+ "n ick",
+ "▁Arch ite",
+ "▁S quare",
+ "▁r ates",
+ "▁ra tes",
+ "▁rate s",
+ "▁rat es",
+ "io re",
+ "ior e",
+ "i ore",
+ "▁N at",
+ "▁Na t",
+ "▁Char lot",
+ "re ichen",
+ "reich en",
+ "rei chen",
+ "reiche n",
+ "▁var iation",
+ "▁vari ation",
+ "os is",
+ "osi s",
+ "li fe",
+ "l ife",
+ "sl ide",
+ "s lide",
+ "ab i",
+ "a bi",
+ "uk i",
+ "u ki",
+ "my sq",
+ "mys q",
+ "▁prim itive",
+ "▁primit ive",
+ "▁univers itaire",
+ "LE NG",
+ "ale ż",
+ "eb ook",
+ "e book",
+ "s yn",
+ "▁G egen",
+ "▁Ge gen",
+ "▁Geg en",
+ "▁K ü",
+ "▁а ле",
+ "▁ал е",
+ "▁L ub",
+ "▁Lu b",
+ "con current",
+ "izz ato",
+ "izza to",
+ "▁st ub",
+ "▁i e",
+ "▁ ie",
+ "▁' ./",
+ "▁'. /",
+ "co d",
+ "c od",
+ "▁intern acional",
+ "▁G las",
+ "▁Gl as",
+ "▁Gla s",
+ "▁m are",
+ "▁ma re",
+ "▁mar e",
+ "▁N eb",
+ "▁Ne b",
+ "▁G B",
+ "▁ GB",
+ "kw args",
+ "▁a ument",
+ "▁au ment",
+ "WI D",
+ "W ID",
+ "▁ро д",
+ "▁р од",
+ "▁ род",
+ "p unkt",
+ "▁G rad",
+ "▁Gr ad",
+ "▁Gra d",
+ "▁ Grad",
+ "S N",
+ "AM P",
+ "A MP",
+ "▁B orn",
+ "▁Bo rn",
+ "▁Bor n",
+ "▁Guer re",
+ "го тов",
+ "▁med io",
+ "▁medi o",
+ "Me d",
+ "M ed",
+ "su pp",
+ "sup p",
+ "s upp",
+ "act ual",
+ "drop down",
+ "▁ok tober",
+ "▁ ř",
+ "▁circ ular",
+ "▁cir cular",
+ "▁circul ar",
+ "▁s kin",
+ "▁sk in",
+ "▁ski n",
+ "▁em phas",
+ "▁emp has",
+ "▁го лов",
+ "▁голо в",
+ "▁p ue",
+ "▁pu e",
+ "▁inform ations",
+ "▁information s",
+ "▁Wolf gang",
+ "▁us eless",
+ "▁use less",
+ "и т",
+ "▁Jo an",
+ "▁б ор",
+ "▁бо р",
+ "▁ бор",
+ "▁G lad",
+ "▁Gl ad",
+ "▁Gla d",
+ "▁K now",
+ "▁Kn ow",
+ "▁Kno w",
+ "ké nt",
+ "k ént",
+ "sp eed",
+ "spe ed",
+ "▁Ke vin",
+ "un ft",
+ "▁ar qu",
+ "▁ arqu",
+ "▁C asa",
+ "▁Cas a",
+ "▁Ca sa",
+ "(. ..",
+ "( ...",
+ "▁rapid ly",
+ "▁pro ble",
+ "▁prob le",
+ "▁probl e",
+ "▁Ви кипеди",
+ "že n",
+ "ž en",
+ "▁N eben",
+ "▁Ne ben",
+ "▁Neb en",
+ "▁M eter",
+ "▁Me ter",
+ "▁Met er",
+ "Child ren",
+ "ce m",
+ "c em",
+ "ig os",
+ "igo s",
+ "aj u",
+ "a ju",
+ "▁Ret rie",
+ "▁H ell",
+ "▁He ll",
+ "▁Hel l",
+ "▁g ig",
+ "▁gi g",
+ "▁contro vers",
+ "▁z oom",
+ "▁zo om",
+ "▁zoo m",
+ "▁c ens",
+ "▁ce ns",
+ "▁alc uni",
+ "▁He ader",
+ "▁Head er",
+ "▁ Header",
+ "Me ta",
+ "Met a",
+ "M eta",
+ "Re quired",
+ "▁ин ститу",
+ "▁s kup",
+ "▁sk up",
+ "▁ing les",
+ "ég l",
+ "é gl",
+ "bi j",
+ "b ij",
+ "▁t ér",
+ "▁té r",
+ "▁com pag",
+ "▁comp ag",
+ "▁comm itted",
+ "▁commit ted",
+ "▁process ed",
+ "▁proc essed",
+ "▁proces sed",
+ "Lo wer",
+ "L ower",
+ "▁F oreign",
+ "▁For eign",
+ "▁Fore ign",
+ "▁ Foreign",
+ "▁s eq",
+ "▁se q",
+ "▁ seq",
+ "sheet s",
+ "she ets",
+ "▁F em",
+ "▁Fe m",
+ "ho z",
+ "h oz",
+ "in ks",
+ "ink s",
+ "▁k all",
+ "▁ka ll",
+ "▁kal l",
+ "vari ant",
+ "▁li bro",
+ "▁lib ro",
+ "▁cl icks",
+ "▁click s",
+ "▁cli cks",
+ "▁g obierno",
+ "ie gel",
+ "ieg el",
+ "мо го",
+ "м ого",
+ "ge me",
+ "gem e",
+ "g eme",
+ "▁t ower",
+ "▁to wer",
+ "▁par ish",
+ "▁T CP",
+ "▁l s",
+ "▁ ls",
+ "▁n ginx",
+ "▁ng inx",
+ "▁ nginx",
+ "Na N",
+ "▁D ir",
+ "▁Di r",
+ "▁ Dir",
+ "▁Begr iffe",
+ "▁Begriff e",
+ "ar ie",
+ "ari e",
+ "a rie",
+ "ím p",
+ "í mp",
+ "ic ios",
+ "ici os",
+ "icio s",
+ "i cios",
+ "▁sh aring",
+ "▁cin éma",
+ "be c",
+ "b ec",
+ "RE D",
+ "R ED",
+ "▁K ra",
+ "▁Kr a",
+ "ab ol",
+ "a bol",
+ "▁fl ux",
+ "▁flu x",
+ "▁exp ensive",
+ "▁су ще",
+ "▁` _",
+ "oc z",
+ "o cz",
+ "ли ст",
+ "▁acqu aint",
+ "▁w ise",
+ "▁wis e",
+ "▁ wise",
+ "▁pou voir",
+ "▁pouv oir",
+ "▁dev ant",
+ "▁moment um",
+ "im mer",
+ "imm er",
+ "▁C oupe",
+ "▁Cou pe",
+ "index Of",
+ "▁does nt",
+ "▁doesn t",
+ "▁за в",
+ "▁lic ense",
+ "▁ â",
+ "CS S",
+ "C SS",
+ "▁r ice",
+ "▁ric e",
+ "▁ri ce",
+ "▁ rice",
+ "Te am",
+ "▁a no",
+ "▁an o",
+ "▁ ano",
+ "li t",
+ "l it",
+ "▁mer ged",
+ "▁merge d",
+ "▁C ell",
+ "▁Ce ll",
+ "▁Cel l",
+ "▁ Cell",
+ "л л",
+ "bo y",
+ "b oy",
+ "as ts",
+ "ast s",
+ "▁s ell",
+ "▁se ll",
+ "▁sel l",
+ "▁gro ße",
+ "▁groß e",
+ "▁virt uel",
+ "▁virtue l",
+ "Can cel",
+ "▁s j",
+ "g ment",
+ ". <",
+ "ча й",
+ "i ë",
+ "ak h",
+ "a kh",
+ "iz ers",
+ "ize rs",
+ "izer s",
+ "pr it",
+ "p rit",
+ "▁T ib",
+ "▁Ti b",
+ "▁elabor ate",
+ "▁f é",
+ "▁м еди",
+ "▁ме ди",
+ "LENG TH",
+ "▁prim arily",
+ "▁sc ores",
+ "▁score s",
+ "▁carry ing",
+ "▁l ake",
+ "▁la ke",
+ "▁lak e",
+ "com pose",
+ "comp ose",
+ "compos e",
+ "▁Town ship",
+ "un ge",
+ "ung e",
+ "▁al berga",
+ "an ych",
+ "any ch",
+ "a nych",
+ "qu elle",
+ "que lle",
+ "quel le",
+ "q uelle",
+ "▁Ar k",
+ "▁p ris",
+ "▁pr is",
+ "▁pri s",
+ "▁v oll",
+ "▁vo ll",
+ "▁vol l",
+ "ш ли",
+ "Valid ation",
+ "▁ce ux",
+ "▁pop ulate",
+ "▁popula te",
+ "▁popul ate",
+ "\" \r",
+ "▁fem mes",
+ "▁femme s",
+ "AN G",
+ "A NG",
+ "▁Desp ite",
+ "вы е",
+ "в ые",
+ "is ke",
+ "isk e",
+ "i ske",
+ "zu g",
+ "z ug",
+ "на ча",
+ "▁h atten",
+ "▁hat ten",
+ "▁hatte n",
+ "IN SERT",
+ "Emp loyee",
+ "▁mo ments",
+ "▁moment s",
+ "▁mom ents",
+ "▁últ ima",
+ "▁h older",
+ "▁hold er",
+ "▁ho lder",
+ "▁hol der",
+ "▁ holder",
+ "bl ank",
+ "Col lections",
+ "Collection s",
+ "Collect ions",
+ "ath ers",
+ "ather s",
+ "a thers",
+ "▁g rade",
+ "▁gr ade",
+ "▁gra de",
+ "▁grad e",
+ "▁ grade",
+ "▁aff airs",
+ "▁affair s",
+ ".$ $",
+ ". $$",
+ "▁d elta",
+ "▁del ta",
+ "▁ delta",
+ "▁Jug end",
+ "▁españ ol",
+ "▁O UT",
+ "▁ OUT",
+ "▁mathemat ical",
+ "▁m ongo",
+ "▁mon go",
+ "▁Ф е",
+ "ul ing",
+ "uli ng",
+ "u ling",
+ "▁re volution",
+ "▁revol ution",
+ "▁c oin",
+ "▁co in",
+ "▁sub class",
+ "\" =>",
+ "äch e",
+ "ä che",
+ "▁p yg",
+ "▁py g",
+ "ща я",
+ "ill ery",
+ "ille ry",
+ "iller y",
+ "▁com enz",
+ "dep th",
+ "▁c él",
+ "▁re size",
+ "▁res ize",
+ "▁ resize",
+ "▁S ame",
+ "▁Sam e",
+ "▁Sa me",
+ "▁st rik",
+ "▁str ik",
+ "▁stri k",
+ "▁t ir",
+ "▁ti r",
+ "▁sc arc",
+ "▁scar c",
+ "▁M ember",
+ "▁Mem ber",
+ "▁ Member",
+ "sub scribe",
+ "ó ż",
+ "út bol",
+ "ex cept",
+ "▁dr iving",
+ "▁dri ving",
+ "▁driv ing",
+ "ki e",
+ "k ie",
+ "zo ny",
+ "zon y",
+ "z ony",
+ "ème s",
+ "è mes",
+ "Da vid",
+ "D avid",
+ "iss ant",
+ "issa nt",
+ "▁т ы",
+ "▁ ты",
+ "▁é lect",
+ "▁él ect",
+ "▁re name",
+ "▁r ename",
+ "▁ren ame",
+ "▁R unning",
+ "▁Run ning",
+ "▁ Running",
+ "▁inter faces",
+ "▁interface s",
+ "//////// ////////",
+ "▁Wal ker",
+ "▁Walk er",
+ "▁soci été",
+ "▁as ks",
+ "▁ask s",
+ "br id",
+ "b rid",
+ "▁je we",
+ "▁se ines",
+ "▁sein es",
+ "▁seine s",
+ "▁sei nes",
+ "▁ag ents",
+ "▁agent s",
+ "▁M Y",
+ "▁ MY",
+ "▁Law rence",
+ "de ss",
+ "des s",
+ "d ess",
+ "ie sen",
+ "ies en",
+ "iese n",
+ "i esen",
+ "▁людя х",
+ "прав и",
+ "пра ви",
+ "▁anc est",
+ "▁wel che",
+ "ra um",
+ "r aum",
+ "▁o rb",
+ "▁or b",
+ "▁ orb",
+ "sc al",
+ "s cal",
+ "▁L ear",
+ "▁Le ar",
+ "▁w ear",
+ "▁we ar",
+ "▁s lave",
+ "▁sl ave",
+ "▁sla ve",
+ "▁re named",
+ "▁ren amed",
+ "▁rename d",
+ "če n",
+ "č en",
+ "ma ste",
+ "mas te",
+ "m aste",
+ "ang les",
+ "angle s",
+ "▁Am érica",
+ "▁t i",
+ "▁ ti",
+ "▁dem sel",
+ "▁bene ath",
+ "bin ary",
+ "b inary",
+ "▁ed ición",
+ "▁kil omet",
+ "▁kilom et",
+ "ui ts",
+ "uit s",
+ "u its",
+ "▁cu atro",
+ "▁ent rance",
+ "▁entr ance",
+ "ond issement",
+ "▁b ag",
+ "▁ba g",
+ "▁ bag",
+ "▁Ar men",
+ "▁Arm en",
+ "ij o",
+ "i jo",
+ "▁L ors",
+ "▁Lo rs",
+ "▁Lor s",
+ "▁demsel ben",
+ "ê m",
+ "▁dis crete",
+ "▁prom inent",
+ "▁J ay",
+ "▁Ja y",
+ "de cor",
+ "dec or",
+ "D L",
+ "▁d í",
+ "St ruct",
+ "Str uct",
+ "▁P roduction",
+ "▁Produ ction",
+ "▁Product ion",
+ "th ey",
+ "the y",
+ "ar ius",
+ "ari us",
+ "sch nitt",
+ "▁C ou",
+ "▁Co u",
+ "▁l ex",
+ "▁le x",
+ "▁ lex",
+ "y outube",
+ "▁рабо та",
+ "st ation",
+ "sta tion",
+ "stat ion",
+ "se p",
+ "s ep",
+ "▁mi rror",
+ "▁mir ror",
+ "▁h its",
+ "▁hit s",
+ "▁hi ts",
+ "▁Be ck",
+ "at ically",
+ "atic ally",
+ "▁L az",
+ "▁La z",
+ "▁w inner",
+ "▁win ner",
+ "DE X",
+ "D EX",
+ "▁I NT",
+ "▁IN T",
+ "▁ INT",
+ "}^ {-",
+ "}^{ -",
+ "} ^{-",
+ "▁w egen",
+ "▁we gen",
+ "▁weg en",
+ "ma d",
+ "m ad",
+ "An gle",
+ "Ang le",
+ "zi ng",
+ "zin g",
+ "z ing",
+ "▁Bay ern",
+ "▁Bayer n",
+ "sa l",
+ "s al",
+ "äg er",
+ "ä ger",
+ "▁bus y",
+ "▁st ör",
+ "▁f olk",
+ "▁fol k",
+ "▁ folk",
+ "▁p rix",
+ "▁pr ix",
+ "▁pri x",
+ "▁al located",
+ "▁alloc ated",
+ "▁allocate d",
+ "▁p t",
+ "▁ pt",
+ "af fen",
+ "aff en",
+ "a ffen",
+ "cl uster",
+ "clus ter",
+ "▁com plement",
+ "▁comp lement",
+ "▁comple ment",
+ "▁compl ement",
+ "ár s",
+ "á rs",
+ "▁Amer ika",
+ "рі й",
+ "р ій",
+ "▁val ley",
+ "▁vall ey",
+ "▁valle y",
+ "▁ro oms",
+ "▁room s",
+ "▁ rooms",
+ "▁m oi",
+ "▁mo i",
+ ".\" ,",
+ ". \",",
+ ";; ;;",
+ "▁lo west",
+ "▁low est",
+ "no g",
+ "n og",
+ "▁land et",
+ "▁lan det",
+ "▁program me",
+ "ch io",
+ "chi o",
+ "▁W ährend",
+ "ánd ez",
+ "▁дол ж",
+ "▁o uv",
+ "▁ou v",
+ "▁ ouv",
+ "om ány",
+ "▁Википеди и",
+ "▁s ó",
+ "▁ele ktr",
+ "De sc",
+ "Des c",
+ "D esc",
+ "▁Be aut",
+ "▁Beau t",
+ "на р",
+ "н ар",
+ "▁мо же",
+ "▁мож е",
+ "P ierre",
+ "es ota",
+ "eso ta",
+ "▁oper ated",
+ "▁opera ted",
+ "▁operate d",
+ "▁f orte",
+ "▁for te",
+ "▁fort e",
+ "ри с",
+ "р ис",
+ "▁op position",
+ "▁opp osition",
+ "▁oppos ition",
+ "al ia",
+ "ali a",
+ "a lia",
+ "▁S yl",
+ "▁Sy l",
+ "get Name",
+ "ве ли",
+ "fi k",
+ "f ik",
+ "▁com prom",
+ "▁comp rom",
+ "▁compr om",
+ "▁Text View",
+ "▁ TextView",
+ "Sp ring",
+ "S pring",
+ "met adata",
+ "meta data",
+ "en gu",
+ "eng u",
+ "/ ,",
+ "▁car ri",
+ "is tol",
+ "ist ol",
+ "isto l",
+ "▁diag onal",
+ "li sta",
+ "list a",
+ "lis ta",
+ "l ista",
+ "iz en",
+ "ize n",
+ "i zen",
+ "▁re nde",
+ "▁r ende",
+ "▁ren de",
+ "▁rend e",
+ "gc c",
+ "g cc",
+ "be ck",
+ "bec k",
+ "li us",
+ "l ius",
+ "ir al",
+ "ira l",
+ "i ral",
+ "Resol ver",
+ "▁percent age",
+ "▁at tra",
+ "▁att ra",
+ "▁attr a",
+ "str ings",
+ "string s",
+ "wi ąz",
+ "od s",
+ "o ds",
+ "во лю",
+ "ę ż",
+ "▁news paper",
+ "▁newsp aper",
+ "im iter",
+ "imi ter",
+ "imit er",
+ "AB C",
+ "A BC",
+ "▁Man chester",
+ "[ {",
+ "Ag ent",
+ "Age nt",
+ "A gent",
+ "▁W or",
+ "▁Wo r",
+ "▁K ath",
+ "▁Kat h",
+ "▁Ka th",
+ "▁по ві",
+ "▁пов і",
+ "▁ent onces",
+ "▁n iveau",
+ "at ted",
+ "att ed",
+ "atte d",
+ "le arn",
+ "lear n",
+ "lea rn",
+ "at iques",
+ "ati ques",
+ "atique s",
+ "▁у би",
+ "▁qu indi",
+ "bin ding",
+ "bind ing",
+ "b inding",
+ "▁import ed",
+ "▁imp orted",
+ "▁H orn",
+ "▁Hor n",
+ "▁Ho rn",
+ "em berg",
+ "ember g",
+ "emb erg",
+ "com plex",
+ "comp lex",
+ "comple x",
+ "▁ne ural",
+ "▁neu ral",
+ "▁neur al",
+ "in formation",
+ "▁recogn ition",
+ "in gt",
+ "ing t",
+ "▁inhab itants",
+ "vu e",
+ "v ue",
+ "▁Be völker",
+ "▁cur ves",
+ "▁curve s",
+ "▁curv es",
+ "▁l eb",
+ "▁le b",
+ "▁ leb",
+ "ді й",
+ "д ій",
+ "▁s ow",
+ "▁so w",
+ "▁sent iment",
+ "P H",
+ "ra che",
+ "rac he",
+ "rach e",
+ "r ache",
+ "▁- (",
+ "▁ -(",
+ "▁e stable",
+ "▁est able",
+ "▁es table",
+ "▁estab le",
+ "▁esta ble",
+ "▁Ferd inand",
+ "▁é crit",
+ "▁éc rit",
+ "▁prime iro",
+ "▁t ex",
+ "▁te x",
+ "▁ tex",
+ "▁inter mediate",
+ "ve rage",
+ "ver age",
+ "vera ge",
+ "ib us",
+ "i bus",
+ "▁s erves",
+ "▁ser ves",
+ "▁serv es",
+ "▁serve s",
+ "iv as",
+ "iva s",
+ "i vas",
+ "▁b ru",
+ "▁br u",
+ "▁ bru",
+ "▁l um",
+ "▁lu m",
+ "att ice",
+ "atti ce",
+ "ч ный",
+ "▁D res",
+ "▁Dr es",
+ "▁Dre s",
+ "▁v ideos",
+ "▁video s",
+ "▁vide os",
+ "d uration",
+ "▁a bit",
+ "▁ab it",
+ "▁e gg",
+ "▁eg g",
+ "ograph ical",
+ "ographic al",
+ "al ph",
+ "ST ATE",
+ "STAT E",
+ "▁па ра",
+ "▁пар а",
+ "▁ пара",
+ "re ading",
+ "read ing",
+ "rea ding",
+ "▁veh icle",
+ "▁fort une",
+ "ult ats",
+ "▁St oria",
+ "▁Sto ria",
+ "mi dt",
+ "mid t",
+ "łą cz",
+ "▁Mem orial",
+ "▁v as",
+ "▁va s",
+ "▁ vas",
+ "▁з ан",
+ "▁за н",
+ "▁ зан",
+ "▁ut ility",
+ "▁util ity",
+ "▁ob sc",
+ "▁obs c",
+ "▁rel acion",
+ "▁rela cion",
+ "▁relac ion",
+ "▁run at",
+ "▁ru nat",
+ "Re lease",
+ "ta ke",
+ "t ake",
+ "▁O liver",
+ "▁Ol iver",
+ "▁Oliv er",
+ "▁S id",
+ "▁Si d",
+ "ul os",
+ "ulo s",
+ "u los",
+ "▁G arc",
+ "▁Gar c",
+ "▁Ga rc",
+ "▁роз та",
+ "▁S ak",
+ "▁Sa k",
+ "P y",
+ "führ t",
+ "f ührt",
+ "▁tra bal",
+ "▁trab al",
+ "* {",
+ "▁z es",
+ "▁ze s",
+ "▁ zes",
+ "▁sz ere",
+ "▁szer e",
+ "▁sze re",
+ "▁v arios",
+ "▁var ios",
+ "▁vari os",
+ "▁va rios",
+ "▁o tra",
+ "▁ot ra",
+ "▁e val",
+ "▁ev al",
+ "▁ eval",
+ "▁situ é",
+ "▁sit ué",
+ "▁w ounded",
+ "▁Vin cent",
+ "▁вико ри",
+ "▁en code",
+ "▁enc ode",
+ "▁ encode",
+ "Mod al",
+ "Mo dal",
+ "▁f orb",
+ "▁for b",
+ "▁fo rb",
+ "▁dynam ics",
+ "▁dynamic s",
+ "▁de pos",
+ "▁dep os",
+ "ar de",
+ "ard e",
+ "▁street s",
+ "▁stre ets",
+ "▁K omm",
+ "▁Kom m",
+ "▁Ko mm",
+ "=$ (",
+ "= $(",
+ "▁по вер",
+ "▁пов ер",
+ "▁пове р",
+ "▁d ois",
+ "▁do is",
+ "▁doi s",
+ "▁v itt",
+ "▁vi tt",
+ "▁vit t",
+ "▁automat isch",
+ "▁re load",
+ "▁ reload",
+ "▁Ver walt",
+ "ber o",
+ "be ro",
+ "b ero",
+ "▁h ub",
+ "▁hu b",
+ "▁m os",
+ "▁mo s",
+ "▁ mos",
+ "▁t utto",
+ "▁tu tto",
+ "▁tut to",
+ "▁Freder ick",
+ "ło w",
+ "ł ow",
+ "ant ages",
+ "anta ges",
+ "antage s",
+ "aqu e",
+ "a que",
+ "pa per",
+ "p aper",
+ "▁ein ige",
+ "`) ,",
+ "` ),",
+ "d j",
+ "▁P le",
+ "▁Pl e",
+ "▁% ,",
+ "▁ %,",
+ "▁B itmap",
+ "▁Bit map",
+ "▁ Bitmap",
+ "▁friend ly",
+ "▁tr uly",
+ "▁st roke",
+ "▁str oke",
+ "▁stro ke",
+ "▁ stroke",
+ "ro ph",
+ "rop h",
+ "r oph",
+ "▁en gl",
+ "▁eng l",
+ "▁ engl",
+ "▁c off",
+ "▁co ff",
+ "▁d ust",
+ "▁du st",
+ "▁dus t",
+ "▁Jah res",
+ "▁Jahr es",
+ "▁Jahre s",
+ "pp i",
+ "p pi",
+ "▁w ys",
+ "▁wy s",
+ "fa ctor",
+ "fact or",
+ "fac tor",
+ "f actor",
+ "sch luss",
+ "▁дере вня",
+ "▁дерев ня",
+ "▁P ast",
+ "▁Pa st",
+ "▁Pas t",
+ "▁до ма",
+ "CO M",
+ "C OM",
+ "▁pu eden",
+ "▁puede n",
+ "▁pue den",
+ "▁g ift",
+ "▁gi ft",
+ "▁G la",
+ "▁Gl a",
+ "▁trigger ed",
+ "él y",
+ "é ly",
+ "ül és",
+ "ü lés",
+ "▁O liv",
+ "▁Ol iv",
+ "▁ver so",
+ "▁vers o",
+ "▁ verso",
+ "▁l le",
+ "▁ll e",
+ "▁ lle",
+ "▁G li",
+ "▁Gl i",
+ "▁L td",
+ "o a",
+ "▁territ orio",
+ "ord re",
+ "▁de ck",
+ "▁dec k",
+ "▁ deck",
+ "dr a",
+ "d ra",
+ "as zt",
+ "asz t",
+ "▁concern ing",
+ "▁Add itionally",
+ "▁kter é",
+ "▁g rund",
+ "▁gr und",
+ "▁gru nd",
+ "▁ grund",
+ "▁G est",
+ "▁Ge st",
+ "▁Ges t",
+ "▁ Gest",
+ "▁mis under",
+ "pr et",
+ "pre t",
+ "p ret",
+ "── ──",
+ "▁re putation",
+ "zi a",
+ "z ia",
+ "▁у спе",
+ "▁ус пе",
+ "▁esc aped",
+ "▁escape d",
+ "▁P rag",
+ "▁Pr ag",
+ "▁Pra g",
+ "per form",
+ "▁a ustral",
+ "▁aust ral",
+ "▁V ater",
+ "▁Va ter",
+ "ча с",
+ "▁r aces",
+ "▁ra ces",
+ "▁race s",
+ "▁rac es",
+ "▁By te",
+ "▁ Byte",
+ "Ma sk",
+ "M ask",
+ "▁Ter rit",
+ "▁Terr it",
+ "ст ю",
+ "▁V oci",
+ "▁Vo ci",
+ "▁Fich ier",
+ "▁Насе лення",
+ "▁Unter scheidung",
+ "te enth",
+ "teen th",
+ "▁pi lot",
+ "▁pil ot",
+ "▁j i",
+ "▁ ji",
+ "▁дву х",
+ "▁orient ation",
+ "▁ orientation",
+ "ind re",
+ "▁D ort",
+ "▁Do rt",
+ "▁Dor t",
+ "ça s",
+ "ç as",
+ "п ли",
+ "▁re action",
+ "▁react ion",
+ "▁cons isting",
+ "▁consist ing",
+ "▁fer ro",
+ "ти сти",
+ "ya rd",
+ "yar d",
+ "y ard",
+ "▁с ві",
+ "▁interpret ation",
+ "i ą",
+ "ra h",
+ "r ah",
+ "▁f and",
+ "▁fa nd",
+ "▁fan d",
+ "Pub lic",
+ "P ublic",
+ "▁un iverse",
+ "▁univers e",
+ "▁ret ir",
+ "▁cons cious",
+ "ar qu",
+ "▁w aste",
+ "▁was te",
+ "▁wa ste",
+ "▁B ib",
+ "▁Bi b",
+ "ycler View",
+ "▁list ening",
+ "▁listen ing",
+ "▁liste ning",
+ "gle ich",
+ "g leich",
+ "nie js",
+ "niej s",
+ "▁cor relation",
+ "▁correl ation",
+ "▁corre lation",
+ "▁rece iver",
+ "▁receive r",
+ "▁у да",
+ "▁cour age",
+ "▁cou rage",
+ "uch s",
+ "uc hs",
+ "u chs",
+ "fa ss",
+ "fas s",
+ "f ass",
+ "▁ch unk",
+ "▁ chunk",
+ "▁An fang",
+ "▁gro ßen",
+ "▁große n",
+ "▁groß en",
+ "cont inue",
+ "continu e",
+ "▁Warsza wa",
+ "h é",
+ "i y",
+ "iv ement",
+ "ive ment",
+ "i vement",
+ "▁ α",
+ "▁ex posed",
+ "▁exp osed",
+ "▁expos ed",
+ "▁expose d",
+ "▁z ahl",
+ "▁za hl",
+ "▁ zahl",
+ "▁sa cr",
+ "▁sac r",
+ "▁Lo oks",
+ "▁Look s",
+ "▁e ager",
+ "en ten",
+ "ent en",
+ "ente n",
+ "e nten",
+ "C ursor",
+ "/ _",
+ "ix a",
+ "i xa",
+ "ре ла",
+ "зна ча",
+ "з нача",
+ "▁фамили ей",
+ "▁ar gent",
+ "▁arg ent",
+ "▁ argent",
+ "▁An ders",
+ "▁And ers",
+ "œuv re",
+ "▁I sa",
+ "▁Is a",
+ "мен та",
+ "мент а",
+ "▁ad vers",
+ "▁adv ers",
+ "ri ction",
+ "ric tion",
+ "rict ion",
+ "r iction",
+ "G P",
+ "▁п ісля",
+ "▁pre serve",
+ "▁pres erve",
+ "▁G arden",
+ "▁Gar den",
+ "▁Gard en",
+ "R ate",
+ "ap rès",
+ "a près",
+ "▁read able",
+ "in du",
+ "ind u",
+ "▁s kill",
+ "▁sk ill",
+ "▁ski ll",
+ "▁hel ping",
+ "▁help ing",
+ "ograph ique",
+ "cl ing",
+ "cli ng",
+ "c ling",
+ "olog ist",
+ "▁Fil ter",
+ "▁ Filter",
+ "▁f inger",
+ "▁fin ger",
+ "▁V all",
+ "▁Val l",
+ "▁Va ll",
+ "▁Pol ish",
+ "▁Po lish",
+ "l g",
+ "▁Famil ien",
+ "▁Familie n",
+ "▁w aters",
+ "▁water s",
+ "▁wa ters",
+ "▁wat ers",
+ "▁pse ud",
+ "az a",
+ "a za",
+ "_ )",
+ "AR Y",
+ "A RY",
+ "▁с реди",
+ "▁сред и",
+ "▁сре ди",
+ "▁M ust",
+ "▁Mus t",
+ "▁Mu st",
+ "▁B od",
+ "▁Bo d",
+ "an on",
+ "ano n",
+ "a non",
+ "▁l ado",
+ "▁la do",
+ "▁lad o",
+ "▁t ight",
+ "im en",
+ "ime n",
+ "i men",
+ "ap pen",
+ "app en",
+ "appe n",
+ "a ppen",
+ "fr ames",
+ "frame s",
+ "fra mes",
+ "fram es",
+ "in gers",
+ "ing ers",
+ "inger s",
+ "inge rs",
+ "▁CO VID",
+ "▁з і",
+ "▁ зі",
+ "▁с ве",
+ "▁ц ь",
+ "▁ ць",
+ "▁L eft",
+ "▁Le ft",
+ "▁ Left",
+ "]] ;",
+ "] ];",
+ "ч ь",
+ "фи ка",
+ "▁с ло",
+ "▁ сло",
+ "▁п і",
+ "▁ пі",
+ "▁ex iste",
+ "▁exist e",
+ "▁Atl antic",
+ "▁maintain ed",
+ "▁ir re",
+ "▁an née",
+ "▁ann ée",
+ "▁ année",
+ "▁comm ented",
+ "▁comment ed",
+ "ве ро",
+ "вер о",
+ "ber ta",
+ "bert a",
+ "b erta",
+ "▁L ad",
+ "▁La d",
+ "▁U pon",
+ "▁Up on",
+ "▁p ause",
+ "▁pa use",
+ "▁pau se",
+ "mi ll",
+ "mil l",
+ "m ill",
+ "op ter",
+ "opt er",
+ "U K",
+ "ре с",
+ "р ес",
+ "нцикло педи",
+ "▁along side",
+ "▁ro bot",
+ "▁rob ot",
+ "▁f ert",
+ "▁fe rt",
+ "▁fer t",
+ "▁ fert",
+ "▁m oy",
+ "▁mo y",
+ "▁a de",
+ "▁ad e",
+ "▁ ade",
+ "Map per",
+ "Mapp er",
+ "Ma pper",
+ "M apper",
+ ")- >",
+ ") ->",
+ "ig ua",
+ "igu a",
+ "ét ique",
+ "т ка",
+ "al ias",
+ "ali as",
+ "alia s",
+ "a lias",
+ "▁о ри",
+ "▁ор и",
+ "▁M agn",
+ "▁Ma gn",
+ "▁Mag n",
+ "▁gehör te",
+ "▁gehört e",
+ "im b",
+ "i mb",
+ ")} {\\",
+ ")}{ \\",
+ ") }{\\",
+ "▁Wikip édia",
+ "▁u rs",
+ "▁ur s",
+ "▁ urs",
+ "▁e nde",
+ "▁en de",
+ "▁end e",
+ "▁ ende",
+ "le b",
+ "l eb",
+ "▁G C",
+ "▁ GC",
+ "H ol",
+ "an cing",
+ "anc ing",
+ "anci ng",
+ "Un ion",
+ "Uni on",
+ "▁ten ía",
+ "T T",
+ "▁e state",
+ "▁est ate",
+ "▁esta te",
+ "▁estat e",
+ "h á",
+ "▁по лі",
+ "▁пол і",
+ "ul tan",
+ "ult an",
+ "▁H ockey",
+ "ul se",
+ "uls e",
+ "▁cho ices",
+ "▁choice s",
+ "sch er",
+ "sc her",
+ "sche r",
+ "s cher",
+ "▁[ ],",
+ "▁[] ,",
+ "▁pot entially",
+ "▁potential ly",
+ "▁Ü bers",
+ "▁Über s",
+ "▁ad mit",
+ "▁adm it",
+ "Com ment",
+ "Comm ent",
+ "ст я",
+ "с тя",
+ "▁V ien",
+ "▁Vi en",
+ "▁Vie n",
+ "▁ц і",
+ "▁ ці",
+ "▁per mut",
+ "▁perm ut",
+ "c gi",
+ "▁cr ít",
+ "Con sole",
+ "Cons ole",
+ "ct ic",
+ "▁ok res",
+ "aw k",
+ "foot ball",
+ "ou est",
+ "o uest",
+ "CT YPE",
+ "C TYPE",
+ "olog ique",
+ "▁const it",
+ "▁cons tit",
+ "▁inter ests",
+ "▁interest s",
+ "▁Pro gress",
+ "▁ Progress",
+ "▁M enu",
+ "▁Me nu",
+ "▁Men u",
+ "▁ Menu",
+ "▁tak é",
+ "▁ta ké",
+ "▁As ian",
+ "▁Asia n",
+ "▁за щи",
+ "▁young er",
+ "▁w ished",
+ "▁wish ed",
+ "▁wis hed",
+ "▁S ort",
+ "▁So rt",
+ "▁Sor t",
+ "▁ Sort",
+ "▁aud ience",
+ "▁audi ence",
+ "am ba",
+ "amb a",
+ "▁gehör t",
+ "▁K ansas",
+ "ya ume",
+ "▁Prof essional",
+ "â ce",
+ "▁f atto",
+ "▁fa tto",
+ "▁fat to",
+ "to d",
+ "t od",
+ "▁data sets",
+ "▁datas ets",
+ "▁dataset s",
+ "▁f are",
+ "▁far e",
+ "▁fa re",
+ "▁ fare",
+ "▁w aves",
+ "▁wave s",
+ "▁wa ves",
+ "~ /",
+ "▁measure ment",
+ "▁w ol",
+ "▁wo l",
+ "▁ wol",
+ "ind ust",
+ "indu st",
+ "▁strugg ling",
+ "▁pull ed",
+ "▁pul led",
+ "▁car atter",
+ "▁Ex terne",
+ "▁Ext erne",
+ "▁Extern e",
+ "▁дей стви",
+ "cn t",
+ "c nt",
+ "li ches",
+ "lic hes",
+ "lich es",
+ "liche s",
+ "▁Pos sible",
+ "▁Poss ible",
+ "▁fa ced",
+ "▁face d",
+ "▁fac ed",
+ "▁hypoth esis",
+ "▁kil om",
+ "▁n är",
+ "▁nä r",
+ "bo olean",
+ "P Y",
+ "am pa",
+ "amp a",
+ "▁k iss",
+ "▁ki ss",
+ "▁kis s",
+ "▁as tero",
+ "▁ast ero",
+ "▁neg li",
+ "am ents",
+ "ament s",
+ "amen ts",
+ "a ments",
+ "▁S tu",
+ "▁St u",
+ "at ó",
+ "a tó",
+ "▁Const itution",
+ "▁inter pol",
+ "▁Un able",
+ "▁Una ble",
+ "▁p is",
+ "▁pi s",
+ "▁ pis",
+ "▁p arc",
+ "▁par c",
+ "▁pa rc",
+ "\"] )",
+ "\" ])",
+ "ple r",
+ "pl er",
+ "p ler",
+ "▁aut ory",
+ "▁auto ry",
+ "▁autor y",
+ "▁alg unos",
+ "yw na",
+ "}) )",
+ "} ))",
+ "▁f alls",
+ "▁fall s",
+ "▁fal ls",
+ "▁ falls",
+ "▁é quip",
+ "▁e mit",
+ "▁em it",
+ "▁ emit",
+ "▁pro fil",
+ "▁prof il",
+ "ge ts",
+ "get s",
+ "g ets",
+ "ф о",
+ "▁Milit ary",
+ "▁nombre ux",
+ "oc t",
+ "o ct",
+ "Re place",
+ "Rep lace",
+ "▁se asons",
+ "▁season s",
+ "▁ch âteau",
+ "▁type of",
+ "▁ typeof",
+ "po lit",
+ "pol it",
+ "p olit",
+ "▁r and",
+ "▁ra nd",
+ "▁ran d",
+ "▁ rand",
+ "▁qu ar",
+ "▁erst mals",
+ "си ни",
+ "▁pay load",
+ "▁ payload",
+ "П о",
+ "кі н",
+ "к ін",
+ "re po",
+ "rep o",
+ "▁P av",
+ "▁Pa v",
+ "Sc ore",
+ "S core",
+ "er ves",
+ "erv es",
+ "erve s",
+ "▁soll te",
+ "▁мі ж",
+ "éb ec",
+ "é bec",
+ "▁c lip",
+ "▁cl ip",
+ "▁cli p",
+ "▁ clip",
+ "▁N ice",
+ "▁Nic e",
+ "▁Ni ce",
+ "▁n eben",
+ "▁ne ben",
+ "▁ass ass",
+ "it ories",
+ "ito ries",
+ "itor ies",
+ "itori es",
+ "▁un ity",
+ "▁unit y",
+ "▁ unity",
+ "▁е н",
+ "▁ ен",
+ "▁Inst itut",
+ "▁Instit ut",
+ "▁ Institut",
+ "▁intern ationale",
+ "▁international e",
+ "▁на ук",
+ "▁нау к",
+ "▁com and",
+ "▁kle ine",
+ "▁klein e",
+ "▁adj acent",
+ "▁deliver ed",
+ "▁ш е",
+ "▁ ше",
+ "зе м",
+ "з ем",
+ "▁c ot",
+ "▁co t",
+ "▁ cot",
+ "vis ual",
+ "ва ет",
+ "▁C ensus",
+ "\\ _",
+ "▁territ ory",
+ "чи л",
+ "ч ил",
+ "ч ные",
+ "fl utter",
+ "Did Load",
+ "Document s",
+ "Doc uments",
+ "▁d ob",
+ "▁do b",
+ "▁ dob",
+ "Br e",
+ "B re",
+ "an imate",
+ "ani mate",
+ "anim ate",
+ "▁b iz",
+ "▁bi z",
+ "▁b ata",
+ "▁ba ta",
+ "▁bat a",
+ "▁S U",
+ "▁ SU",
+ "es o",
+ "e so",
+ "▁p riority",
+ "▁prior ity",
+ "vá n",
+ "v án",
+ "ir as",
+ "ira s",
+ "i ras",
+ "▁char ged",
+ "▁charge d",
+ "▁charg ed",
+ "▁M icro",
+ "▁Mi cro",
+ "▁Mic ro",
+ "at oire",
+ "ato ire",
+ "a toire",
+ "че р",
+ "ч ер",
+ "ab ad",
+ "aba d",
+ "a bad",
+ "ur u",
+ "u ru",
+ "▁v š",
+ "dir e",
+ "di re",
+ "d ire",
+ "▁Tw itter",
+ "▁м ето",
+ "▁ме то",
+ "▁мет о",
+ "). .",
+ ") ..",
+ "▁Ц ент",
+ "▁ent wick",
+ "▁M ind",
+ "▁Min d",
+ "▁Mi nd",
+ "▁ф унк",
+ "F uture",
+ "ls t",
+ "l st",
+ "ło ż",
+ "fl i",
+ "f li",
+ "t ensor",
+ "▁top ology",
+ "▁ar te",
+ "▁art e",
+ "▁ arte",
+ "ER T",
+ "E RT",
+ "▁var iance",
+ "▁vari ance",
+ "Im ages",
+ "Image s",
+ "▁( @",
+ "▁ (@",
+ "Array List",
+ "O C",
+ "▁Де мо",
+ "auc oup",
+ "▁de notes",
+ "▁den otes",
+ "▁denote s",
+ "im on",
+ "imo n",
+ "i mon",
+ "њ и",
+ "▁Prz yp",
+ "▁Z ag",
+ "▁Za g",
+ "▁ди ре",
+ "▁Similar ly",
+ "б ро",
+ "▁mil itaire",
+ "▁milit aire",
+ "▁т ому",
+ "▁то му",
+ "▁том у",
+ "▁ тому",
+ "▁John ny",
+ "▁Мекси ку",
+ "ћ а",
+ "Su pp",
+ "S upp",
+ "▁jun ior",
+ "▁junio r",
+ "▁juni or",
+ "ol tre",
+ "olt re",
+ "o ltre",
+ "▁Мо ск",
+ "▁Мос к",
+ "▁adm itted",
+ "▁admit ted",
+ "▁relig ios",
+ "зя й",
+ "е го",
+ "▁t ears",
+ "▁te ars",
+ "▁tea rs",
+ "in go",
+ "ing o",
+ "od u",
+ "o du",
+ "iv eness",
+ "ive ness",
+ "iven ess",
+ "▁l ogo",
+ "▁lo go",
+ "▁log o",
+ "▁ logo",
+ "▁últ imo",
+ "▁al iment",
+ "▁ali ment",
+ "▁U ITableView",
+ "▁ UITableView",
+ ") !",
+ "▁n j",
+ "le tte",
+ "let te",
+ "lett e",
+ "l ette",
+ "▁res ident",
+ "▁resid ent",
+ "▁term ine",
+ "▁ter mine",
+ "▁termin e",
+ "▁у же",
+ "▁С те",
+ "▁Ст е",
+ "off ice",
+ "▁c arte",
+ "▁car te",
+ "▁cart e",
+ "▁li vre",
+ "▁liv re",
+ "▁Мо сков",
+ "▁Мос ков",
+ "▁Моск ов",
+ "▁e lections",
+ "▁elect ions",
+ "▁ele ctions",
+ "▁election s",
+ "зи ден",
+ "Tr igger",
+ "▁Ben jamin",
+ "add Class",
+ "ско г",
+ "▁Ob servable",
+ "▁Observ able",
+ "▁ Observable",
+ "Cl a",
+ "C la",
+ "gem ein",
+ "geme in",
+ "g emein",
+ "▁con sent",
+ "▁cons ent",
+ "▁conse nt",
+ "в ри",
+ "▁un fold",
+ "▁unf old",
+ "▁govern or",
+ "▁gover nor",
+ "▁governo r",
+ "на л",
+ "н ал",
+ "▁t oda",
+ "▁to da",
+ "▁tod a",
+ "Rem ote",
+ "ar ias",
+ "ari as",
+ "aria s",
+ "a rias",
+ "▁in stal",
+ "▁inst al",
+ "▁ins tal",
+ "fix ed",
+ "f ixed",
+ "▁dec ay",
+ "▁де рев",
+ "▁дере в",
+ "xy z",
+ "x yz",
+ "▁D ATE",
+ "▁DA TE",
+ "▁DAT E",
+ "▁ DATE",
+ "im ar",
+ "ima r",
+ "i mar",
+ "nt il",
+ "n til",
+ "▁start up",
+ "al ion",
+ "ali on",
+ "▁ko lej",
+ "▁kol ej",
+ "▁kole j",
+ "ci os",
+ "cio s",
+ "c ios",
+ "▁r anges",
+ "▁range s",
+ "▁ran ges",
+ "▁rang es",
+ "▁stup id",
+ "▁implement ations",
+ "▁implementation s",
+ "▁r m",
+ "▁ rm",
+ "én ek",
+ "é nek",
+ "▁g cc",
+ "▁ gcc",
+ "▁sc ène",
+ "N avigation",
+ "▁ ",
+ "▁к ан",
+ "▁ка н",
+ "▁ кан",
+ "▁town s",
+ "User name",
+ "Us ername",
+ "▁ф е",
+ "▁ фе",
+ "▁le aders",
+ "▁lead ers",
+ "▁leader s",
+ "oi t",
+ "o it",
+ "w är",
+ "▁d ummy",
+ "▁ass istant",
+ "▁assist ant",
+ "{$ \\",
+ "{ $\\",
+ "бі р",
+ "б ір",
+ "▁r oy",
+ "▁ro y",
+ "▁ roy",
+ "▁L ayout",
+ "▁ Layout",
+ "▁J ung",
+ "▁Ju ng",
+ "▁Jun g",
+ "Line s",
+ "Lin es",
+ "Li nes",
+ "L ines",
+ "▁Hol land",
+ "по р",
+ "п ор",
+ "▁Г ри",
+ "▁B ened",
+ "▁Be ned",
+ "▁Ben ed",
+ "▁П од",
+ "▁По д",
+ "xl s",
+ "x ls",
+ "▁G ol",
+ "▁Go l",
+ "▁Al eks",
+ "▁Ale ks",
+ "▁ej emplo",
+ "▁se zon",
+ "ar ding",
+ "ard ing",
+ "ardi ng",
+ "ardin g",
+ "foot note",
+ "▁Cong rès",
+ "re fer",
+ "ref er",
+ "ска та",
+ "с ката",
+ "Iter ator",
+ "▁our selves",
+ "▁M ic",
+ "▁Mi c",
+ "▁c ódigo",
+ "▁пло ща",
+ "▁\\ $",
+ "▁Char lie",
+ "No des",
+ "Node s",
+ "N odes",
+ "▁p uzz",
+ "▁pu zz",
+ "▁Ident ifier",
+ "▁ Identifier",
+ "▁fl utter",
+ "▁ flutter",
+ "▁pr ü",
+ "▁ prü",
+ "▁o rt",
+ "▁or t",
+ "▁ ort",
+ "▁C ort",
+ "▁Cor t",
+ "▁Co rt",
+ "astic search",
+ "▁С вя",
+ "▁B ull",
+ "▁Bu ll",
+ "▁Bul l",
+ "ud em",
+ "ude m",
+ "u dem",
+ "▁ap parent",
+ "▁appar ent",
+ ":- -",
+ ": --",
+ "▁Х ар",
+ "▁Ха р",
+ "▁L ap",
+ "▁La p",
+ "▁com port",
+ "▁comp ort",
+ "mat ically",
+ "m atically",
+ "▁cu rios",
+ "▁cur ios",
+ "▁мо жет",
+ "▁мож ет",
+ "▁може т",
+ "▁B h",
+ "ap ping",
+ "app ing",
+ "a pping",
+ "▁b asketball",
+ "▁basket ball",
+ "ze tek",
+ "zet ek",
+ "▁r unt",
+ "▁run t",
+ "▁ru nt",
+ "▁Mil an",
+ "▁Mi lan",
+ "fe ction",
+ "fect ion",
+ "f ection",
+ "rí a",
+ "r ía",
+ "▁K in",
+ "▁Ki n",
+ "▁s lower",
+ "▁sl ower",
+ "▁slow er",
+ "▁slo wer",
+ "bo th",
+ "bot h",
+ "b oth",
+ "▁Inst ituto",
+ "▁Instit uto",
+ "▁Institut o",
+ "▁Histor ical",
+ "▁Historic al",
+ "▁równ ież",
+ "mat ches",
+ "match es",
+ "yc i",
+ "y ci",
+ "▁esp èce",
+ "▁Schwe izer",
+ "▁Schweiz er",
+ "N T",
+ "S F",
+ "ac ia",
+ "aci a",
+ "a cia",
+ "for ge",
+ "f orge",
+ "Point s",
+ "Po ints",
+ "num bers",
+ "number s",
+ "▁f alling",
+ "▁fall ing",
+ "▁fal ling",
+ "▁inherit ance",
+ "▁Er st",
+ "▁custom ers",
+ "▁customer s",
+ "▁a ctu",
+ "▁act u",
+ "▁ac tu",
+ "▁m igration",
+ "▁migr ation",
+ "\\ '",
+ "Pl an",
+ "P lan",
+ "M r",
+ "ot hy",
+ "oth y",
+ "o thy",
+ "▁up grad",
+ "би ра",
+ "▁O ffic",
+ "▁Of fic",
+ "▁Off ic",
+ "▁W ait",
+ "▁Wa it",
+ "▁ Wait",
+ "▁to ler",
+ "ar don",
+ "ard on",
+ "ardo n",
+ "▁s lide",
+ "▁sl ide",
+ "▁sli de",
+ "▁ slide",
+ ") _",
+ "▁ста в",
+ "▁ став",
+ "▁nu clear",
+ "▁nuc lear",
+ "▁nucle ar",
+ "▁B il",
+ "▁Bi l",
+ "ow ner",
+ "own er",
+ "o wner",
+ "▁Har ris",
+ "▁Harr is",
+ "In formation",
+ "▁p ó",
+ "▁вклю ча",
+ "▁nu ovo",
+ "▁C av",
+ "▁Ca v",
+ "▁De scri",
+ "▁Des cri",
+ "▁а к",
+ "ód zt",
+ "▁react js",
+ "▁Ad ams",
+ "▁Adam s",
+ "▁Ada ms",
+ "▁Altern atively",
+ "ст рук",
+ "стру к",
+ "стр ук",
+ ")` ,",
+ ") `,",
+ "sub string",
+ "subst ring",
+ "substr ing",
+ "▁mass ive",
+ "▁heav ily",
+ "▁се зо",
+ "▁сез о",
+ "▁A na",
+ "▁An a",
+ "▁v ale",
+ "▁val e",
+ "▁va le",
+ "Pa d",
+ "P ad",
+ "▁E ither",
+ "▁r s",
+ "▁ rs",
+ "an che",
+ "anc he",
+ "anch e",
+ "▁up loaded",
+ "▁upload ed",
+ "▁( /",
+ "▁ (/",
+ "▁с пор",
+ "▁спо р",
+ "▁сп ор",
+ "▁redu ction",
+ "▁Tok yo",
+ "gr en",
+ "gre n",
+ "g ren",
+ "▁m igli",
+ "▁mig li",
+ "▁iter ator",
+ "▁ iterator",
+ "st av",
+ "sta v",
+ "▁support ing",
+ "▁ö sterreich",
+ "▁NS Log",
+ "ist iques",
+ "isti ques",
+ "istique s",
+ "ri min",
+ "rim in",
+ "r imin",
+ "MO DE",
+ "}} }\\",
+ "}}} \\",
+ "} }}\\",
+ "▁exp los",
+ "▁expl os",
+ "▁explo s",
+ "от е",
+ "о те",
+ "▁( „",
+ "Sa l",
+ "S al",
+ "▁simple st",
+ "▁simpl est",
+ "▁gi à",
+ "▁та н",
+ "▁т ан",
+ "▁ тан",
+ "▁c yl",
+ "▁cy l",
+ "bi r",
+ "b ir",
+ "▁measure ments",
+ "▁measurement s",
+ "Create d",
+ "Cre ated",
+ "er ek",
+ "ere k",
+ "e rek",
+ "look up",
+ "w irtschaft",
+ "▁В оло",
+ "▁Во ло",
+ "▁Вол о",
+ "ti mer",
+ "time r",
+ "tim er",
+ "t imer",
+ "de rr",
+ "der r",
+ "d err",
+ "▁ст ала",
+ "▁ста ла",
+ "▁стал а",
+ "▁sc enes",
+ "▁scen es",
+ "▁scene s",
+ "▁per su",
+ "▁pers u",
+ "li est",
+ "lie st",
+ "lies t",
+ "l iest",
+ "▁sch edule",
+ "▁sched ule",
+ "ta l",
+ "t al",
+ "ле но",
+ "лен о",
+ "▁pain ting",
+ "▁paint ing",
+ "▁impro vement",
+ "▁improve ment",
+ "▁improv ement",
+ "so ftware",
+ "soft ware",
+ "▁govern o",
+ "▁gover no",
+ "▁H ir",
+ "▁Hi r",
+ "Exec ution",
+ "▁Ok ay",
+ "Pro p",
+ "Pr op",
+ "P rop",
+ "lo ster",
+ "los ter",
+ "lost er",
+ "l oster",
+ "ніципа лі",
+ "▁peu vent",
+ "ol u",
+ "o lu",
+ "▁Ф а",
+ "roll o",
+ "rol lo",
+ "▁ко ло",
+ "▁к оло",
+ "▁ коло",
+ "▁car rière",
+ "▁carri ère",
+ "▁t oggle",
+ "▁tog gle",
+ "▁togg le",
+ "▁ toggle",
+ "▁( $\\",
+ "▁($ \\",
+ "▁aggreg ate",
+ "▁Б і",
+ "text area",
+ "O k",
+ "it to",
+ "itt o",
+ "i tto",
+ "▁s tim",
+ "▁st im",
+ "▁recurs ion",
+ "▁Feder ation",
+ ")_ {",
+ ") _{",
+ "ate gor",
+ "ateg or",
+ "▁dist ribu",
+ "▁distrib u",
+ "Cl oud",
+ "▁m adre",
+ "▁mad re",
+ "▁i v",
+ "▁ iv",
+ "▁Lie utenant",
+ "▁subst ant",
+ "▁le af",
+ "▁ leaf",
+ "▁Kont rola",
+ "V A",
+ "▁t omb",
+ "▁to mb",
+ "▁tom b",
+ "э н",
+ "ato es",
+ "▁god ine",
+ "▁# >",
+ "C ert",
+ "▁em presa",
+ "▁empres a",
+ "Pro ps",
+ "Pr ops",
+ "Prop s",
+ "▁pl anned",
+ "▁plan ned",
+ "▁random ly",
+ "j ähr",
+ "el em",
+ "ele m",
+ "e lem",
+ "▁Oper ation",
+ "▁Opera tion",
+ "▁ Operation",
+ "* `",
+ "pro tocol",
+ "proto col",
+ "() ));",
+ "()) );",
+ "())) ;",
+ "( )));",
+ "we l",
+ "w el",
+ "▁p raw",
+ "▁pr aw",
+ "▁pra w",
+ "▁с им",
+ "▁си м",
+ "▁w ob",
+ "▁wo b",
+ "▁h ace",
+ "▁ha ce",
+ "▁near est",
+ "dis able",
+ "▁C ommun",
+ "▁Com mun",
+ "▁Comm un",
+ "▁re vel",
+ "▁rev el",
+ "▁reve l",
+ "Fr ee",
+ "Fre e",
+ "F ree",
+ "▁bra ckets",
+ "IO Exception",
+ "▁al to",
+ "▁alt o",
+ "▁mar ry",
+ "▁a uc",
+ "▁au c",
+ "▁ auc",
+ "), \\",
+ ") ,\\",
+ "▁typ o",
+ "▁ty po",
+ "ed ad",
+ "eda d",
+ "ar á",
+ "a rá",
+ "ic ator",
+ "ica tor",
+ "tat ywna",
+ "▁b uff",
+ "▁bu ff",
+ "▁buf f",
+ "▁ buff",
+ "or ders",
+ "ord ers",
+ "order s",
+ "orde rs",
+ "▁as ynchronous",
+ "▁e con",
+ "▁ec on",
+ "▁f eu",
+ "▁fe u",
+ "▁I ron",
+ "▁Ir on",
+ "▁r ising",
+ "▁ris ing",
+ "▁ri sing",
+ "Rad ius",
+ "cl k",
+ "▁zwe iten",
+ "▁zwei ten",
+ "▁zweite n",
+ "` '",
+ "▁un iqu",
+ "▁F M",
+ "▁ FM",
+ "▁B ran",
+ "▁Br an",
+ "▁Bra n",
+ "▁f lu",
+ "▁fl u",
+ "▁ flu",
+ "▁sens itive",
+ "ur re",
+ "urr e",
+ "▁I ter",
+ "▁It er",
+ "▁ Iter",
+ "▁S ein",
+ "▁Se in",
+ "▁difer entes",
+ "▁diferen tes",
+ "▁не го",
+ "▁н его",
+ "▁ него",
+ "ch ia",
+ "chi a",
+ "▁An leitung",
+ "atur day",
+ "▁sh orter",
+ "▁short er",
+ "▁transl ated",
+ "▁translate d",
+ "▁R és",
+ "▁Ré s",
+ "▁r ode",
+ "▁ro de",
+ "▁rod e",
+ "dr ag",
+ "dra g",
+ "d rag",
+ "▁l ange",
+ "▁lang e",
+ "▁lan ge",
+ "B i",
+ "ü b",
+ "le ur",
+ "l eur",
+ "▁order ing",
+ "▁ord ering",
+ "al ous",
+ "alo us",
+ "▁К ор",
+ "▁Ко р",
+ "ar char",
+ "arch ar",
+ "arc har",
+ "dest roy",
+ "erv ation",
+ "erva tion",
+ "]] ,",
+ "] ],",
+ "Accessor Impl",
+ "▁autory tatywna",
+ "Se quence",
+ "Sequ ence",
+ "▁pro yect",
+ "▁b ran",
+ "▁br an",
+ "▁bra n",
+ "▁( +",
+ "▁K ab",
+ "▁Ka b",
+ "▁z em",
+ "▁ze m",
+ "▁ zem",
+ "▁Cal cul",
+ "▁ Calcul",
+ "▁se ul",
+ "▁seu l",
+ "▁N iger",
+ "▁Ni ger",
+ "▁ch iam",
+ "▁chi am",
+ "th row",
+ "▁Plan et",
+ "▁Pla net",
+ "bild ung",
+ "▁z ones",
+ "▁zo nes",
+ "▁zone s",
+ "trans ition",
+ "ле ний",
+ "▁m apped",
+ "▁ma pped",
+ "▁map ped",
+ "on aut",
+ "ona ut",
+ "Pa ir",
+ "P air",
+ "il ian",
+ "ili an",
+ "ilia n",
+ "▁M organ",
+ "▁Mor gan",
+ "▁un to",
+ "▁ unto",
+ "jo u",
+ "j ou",
+ "▁h id",
+ "▁hi d",
+ "▁M eta",
+ "▁Me ta",
+ "▁Met a",
+ "▁ Meta",
+ "▁e lles",
+ "▁el les",
+ "▁elle s",
+ "▁ell es",
+ "▁ elles",
+ "Lo u",
+ "L ou",
+ "ra ma",
+ "ram a",
+ "r ama",
+ "ge ordnet",
+ "▁scarc ely",
+ "▁m int",
+ "▁min t",
+ "▁mi nt",
+ "F ocus",
+ "▁Al ter",
+ "▁Alt er",
+ "▁d io",
+ "▁di o",
+ "▁am pl",
+ "▁amp l",
+ "ière ment",
+ "▁ис следова",
+ "LE D",
+ "L ED",
+ "alg orithm",
+ "▁сай ті",
+ "▁сайт і",
+ "▁\" \")",
+ "▁\"\" )",
+ "Hi story",
+ "H istory",
+ "p k",
+ "▁W hit",
+ "▁Wh it",
+ "▁си стем",
+ "▁систе м",
+ "▁Kir chen",
+ "▁Kirche n",
+ "▁Kirch en",
+ "r à",
+ "AP P",
+ "A PP",
+ "▁< %",
+ "ant ine",
+ "anti ne",
+ "antin e",
+ "▁D isk",
+ "▁Dis k",
+ "▁Di sk",
+ "con v",
+ "we lt",
+ "wel t",
+ "w elt",
+ "▁F ut",
+ "▁Fu t",
+ "▁N om",
+ "▁No m",
+ "or do",
+ "ord o",
+ "el lij",
+ "ell ij",
+ "elli j",
+ "▁rece ives",
+ "▁receive s",
+ "co w",
+ "c ow",
+ "yt u",
+ "y tu",
+ "▁o bras",
+ "▁ob ras",
+ "▁obra s",
+ "▁p urchase",
+ "▁purch ase",
+ "▁ear ned",
+ "▁acc essed",
+ "▁access ed",
+ "ax i",
+ "a xi",
+ "▁M ans",
+ "▁Man s",
+ "▁Ma ns",
+ "iv an",
+ "iva n",
+ "i van",
+ "▁t uvo",
+ "▁tu vo",
+ "▁T race",
+ "▁Tr ace",
+ "▁Tra ce",
+ "▁ Trace",
+ "rim onio",
+ "▁desen vol",
+ "ér ique",
+ "éri que",
+ "é rique",
+ "▁result ed",
+ "▁comp uting",
+ "▁comput ing",
+ "▁insp ired",
+ "▁inspir ed",
+ "▁Pr ize",
+ "▁Pri ze",
+ "* \"",
+ "Com put",
+ "Comp ut",
+ "▁ext ensive",
+ "▁extens ive",
+ "è g",
+ "▁Port ály",
+ "▁cast le",
+ "▁ castle",
+ "▁* .",
+ "▁ *.",
+ "▁ph otos",
+ "▁phot os",
+ "▁photo s",
+ "▁vo et",
+ "ON G",
+ "O NG",
+ "▁A lle",
+ "▁Al le",
+ "▁All e",
+ "▁thre aten",
+ "▁threat en",
+ "st üt",
+ "▁album s",
+ "▁alb ums",
+ "▁d ense",
+ "▁den se",
+ "▁dens e",
+ "fl at",
+ "f lat",
+ "cont inu",
+ "Sub ject",
+ "Su bject",
+ "▁read only",
+ "Op t",
+ "O pt",
+ "пи ско",
+ "пис ко",
+ "▁A ber",
+ "▁Ab er",
+ "▁P osition",
+ "▁Pos ition",
+ "▁ Position",
+ "▁To day",
+ "▁Tod ay",
+ "▁m ini",
+ "▁min i",
+ "▁mi ni",
+ "▁B ef",
+ "▁Be f",
+ "li sten",
+ "list en",
+ "lis ten",
+ "l isten",
+ "ствен ного",
+ "ственно го",
+ "SU B",
+ "S UB",
+ "os sa",
+ "oss a",
+ "▁P ope",
+ "▁Po pe",
+ "▁Pop e",
+ "▁Jim my",
+ "▁Д ру",
+ "ungs seite",
+ "▁t ren",
+ "▁tr en",
+ "▁tre n",
+ "op tim",
+ "opt im",
+ "it sch",
+ "its ch",
+ "▁s amt",
+ "▁sa mt",
+ "▁sam t",
+ "▁испо л",
+ "▁ис пол",
+ "& =",
+ "▁Przyp isy",
+ "▁про дол",
+ "C r",
+ "er mann",
+ "erm ann",
+ "erman n",
+ "▁ма тери",
+ "▁мате ри",
+ "▁H ugo",
+ "▁Hu go",
+ "▁De ze",
+ "▁Dez e",
+ "TR UE",
+ "▁defe at",
+ "▁watch ed",
+ "▁wat ched",
+ "▁G ent",
+ "▁Ge nt",
+ "▁Gen t",
+ "AU T",
+ "A UT",
+ "or ous",
+ "oro us",
+ "▁о преде",
+ "ori entation",
+ "orient ation",
+ "▁distingu ished",
+ "▁distinguish ed",
+ "▁mes mo",
+ "▁s li",
+ "▁sl i",
+ "ме на",
+ "мен а",
+ "м ена",
+ "mit tel",
+ "mitt el",
+ "m ittel",
+ "ge richt",
+ "ger icht",
+ "et on",
+ "eto n",
+ "e ton",
+ "-> {",
+ "- >{",
+ "▁w ont",
+ "▁won t",
+ "▁wo nt",
+ "▁w eg",
+ "▁we g",
+ "▁ weg",
+ "▁class ific",
+ "il us",
+ "i lus",
+ "▁M D",
+ "▁ MD",
+ "task s",
+ "▁c him",
+ "▁ch im",
+ "▁chi m",
+ "aw ait",
+ "awa it",
+ "a wait",
+ "▁g ang",
+ "▁gan g",
+ "▁ga ng",
+ "▁ gang",
+ "▁w ię",
+ "▁ wię",
+ "th rough",
+ "▁Russ ell",
+ "▁guess ing",
+ "▁а кт",
+ "▁ак т",
+ "б лі",
+ "c ategories",
+ "су т",
+ "с ут",
+ "▁F en",
+ "▁Fe n",
+ "▁му ж",
+ "▁ne wer",
+ "▁new er",
+ "▁A sync",
+ "▁As ync",
+ "▁ Async",
+ "▁t erme",
+ "▁term e",
+ "▁ter me",
+ "> /",
+ "па ра",
+ "пар а",
+ "▁T rust",
+ "▁Tr ust",
+ "▁Tru st",
+ "▁O pt",
+ "▁Op t",
+ "▁ Opt",
+ "▁d ah",
+ "▁da h",
+ "▁wonder ful",
+ "adrat kil",
+ "▁Г ра",
+ "ma pping",
+ "map ping",
+ "m apping",
+ "▁disc overy",
+ "▁discover y",
+ "▁disco very",
+ "▁B E",
+ "▁ BE",
+ "En able",
+ "▁Fri end",
+ "с ня",
+ "▁cont rolled",
+ "▁control led",
+ "чно ї",
+ "ч ної",
+ "▁contribution s",
+ "▁contrib utions",
+ "j ší",
+ "▁L ev",
+ "▁Le v",
+ "▁franc és",
+ "▁m ic",
+ "▁mi c",
+ "▁ mic",
+ "zi k",
+ "z ik",
+ "▁a lem",
+ "▁al em",
+ "▁ale m",
+ "▁ alem",
+ "can cel",
+ "! '",
+ "▁g rat",
+ "▁gr at",
+ "▁gra t",
+ "▁Begriff sklär",
+ "Cam era",
+ "if icación",
+ "ific ación",
+ "ifica ción",
+ "ró d",
+ "r ód",
+ "▁Arn old",
+ "▁bezeichnet er",
+ "▁f ought",
+ "▁de put",
+ "▁dep ut",
+ "▁D rop",
+ "▁Dr op",
+ "▁Dro p",
+ "▁ Drop",
+ "ta x",
+ "t ax",
+ "d g",
+ "▁H op",
+ "▁Ho p",
+ "G N",
+ "▁Kir ch",
+ "▁Б ар",
+ "▁Ба р",
+ "In voke",
+ "Inv oke",
+ "▁er halten",
+ "▁ve el",
+ "▁word press",
+ "▁ wordpress",
+ "▁IN NER",
+ "trans action",
+ "▁dé jà",
+ "Fa ct",
+ "F act",
+ "▁над мор",
+ "▁angular js",
+ "▁á t",
+ "▁ át",
+ "▁a lap",
+ "▁al ap",
+ "▁P rice",
+ "▁Pr ice",
+ "▁Pri ce",
+ "▁ Price",
+ "▁eff et",
+ "▁s phere",
+ "▁sp here",
+ "▁spher e",
+ "Class Loader",
+ "▁r ugby",
+ "▁rug by",
+ "▁king dom",
+ "▁M ut",
+ "▁Mu t",
+ "▁ки но",
+ "▁re ward",
+ "ci t",
+ "c it",
+ "▁present e",
+ "▁pres ente",
+ "St o",
+ "S to",
+ "Char acter",
+ "lo gs",
+ "log s",
+ "l ogs",
+ "▁cent rale",
+ "▁central e",
+ "▁m ouv",
+ "▁mo uv",
+ "▁mou v",
+ "▁ok ay",
+ "▁ap lic",
+ "Mo re",
+ "Mor e",
+ "M ore",
+ "ény ek",
+ "▁Kö ln",
+ "ne tt",
+ "net t",
+ "n ett",
+ "▁исто рии",
+ "▁истори и",
+ "▁descri bing",
+ "▁sold ier",
+ "▁N eed",
+ "▁Ne ed",
+ "L ight",
+ "▁\" \\<",
+ "▁\"\\ <",
+ "▁h av",
+ "▁ha v",
+ "▁ hav",
+ "er mo",
+ "erm o",
+ "▁infer ior",
+ "le a",
+ "l ea",
+ "▁g g",
+ "▁ gg",
+ "▁кон це",
+ "fra gment",
+ "f ragment",
+ "s b",
+ "Count ry",
+ "C ountry",
+ "▁v ě",
+ "▁ vě",
+ "▁B eng",
+ "▁Be ng",
+ "▁Ben g",
+ "▁Э то",
+ "▁во до",
+ "ма р",
+ "м ар",
+ "STR ING",
+ "▁ú j",
+ "multi ple",
+ "multip le",
+ "state ment",
+ "stat ement",
+ "▁invol ves",
+ "▁involve s",
+ "▁te cn",
+ "▁tec n",
+ "St udent",
+ "gr é",
+ "g ré",
+ "▁le an",
+ "▁ lean",
+ "▁bring ing",
+ "▁Med ical",
+ "▁Medic al",
+ "▁Medi cal",
+ "▁програ м",
+ "▁V og",
+ "▁Vo g",
+ "▁ж ов",
+ "▁Sp irit",
+ "nt h",
+ "n th",
+ "▁stand ards",
+ "▁standard s",
+ "▁Pro file",
+ "▁Prof ile",
+ "▁Profil e",
+ "▁ Profile",
+ "▁e z",
+ "▁ ez",
+ "▁террито рии",
+ "▁s tem",
+ "▁st em",
+ "▁ste m",
+ "ui l",
+ "u il",
+ "▁O g",
+ "B tn",
+ "na l",
+ "n al",
+ "▁near by",
+ "▁produ cing",
+ "cri v",
+ "cr iv",
+ "c riv",
+ "▁assum ptions",
+ "▁assumption s",
+ "▁S park",
+ "▁Sp ark",
+ "▁L ot",
+ "▁Lo t",
+ "it udes",
+ "itu des",
+ "itude s",
+ "itud es",
+ "af ka",
+ "fi ve",
+ "f ive",
+ "at io",
+ "ati o",
+ "▁distingu ish",
+ "ro ck",
+ "roc k",
+ "r ock",
+ "égl ise",
+ "é glise",
+ "▁rapp res",
+ "▁rap pres",
+ ">\\ <",
+ "> \\<",
+ "лі й",
+ "л ій",
+ "▁ми ни",
+ "▁ мини",
+ "▁intitul é",
+ "}} (\\",
+ "}}( \\",
+ "} }(\\",
+ "▁R out",
+ "▁Ro ut",
+ "▁Rou t",
+ "▁ Rout",
+ "▁B order",
+ "▁Bor der",
+ "▁ Border",
+ "▁over rid",
+ "HO ST",
+ "H OST",
+ "rit ten",
+ "ritt en",
+ "r itten",
+ "sa y",
+ "s ay",
+ "▁Ч и",
+ "icht ung",
+ "▁straight forward",
+ "ob b",
+ "o bb",
+ "▁Ter ra",
+ "▁Terr a",
+ "▁[ :",
+ "▁ [:",
+ "Be n",
+ "B en",
+ "▁compos ite",
+ ")+ \\",
+ ") +\\",
+ "▁c rown",
+ "▁cr own",
+ "▁cro wn",
+ "▁crow n",
+ "dir ection",
+ "direct ion",
+ "dire ction",
+ "d irection",
+ "▁неско лько",
+ "▁av ail",
+ "▁purch ased",
+ "▁purchase d",
+ "ho ok",
+ "h ook",
+ "et ies",
+ "eti es",
+ "e ties",
+ "▁f ase",
+ "▁fa se",
+ "▁fas e",
+ "▁R um",
+ "▁Ru m",
+ "▁ge nom",
+ "▁gen om",
+ "▁d ét",
+ "▁dé t",
+ "ow ą",
+ "mp eg",
+ "▁І н",
+ "des ktop",
+ "▁in jection",
+ "▁inj ection",
+ "▁inject ion",
+ "ag le",
+ "a gle",
+ "▁E dd",
+ "▁Ed d",
+ "_{ (",
+ "_ {(",
+ "▁H em",
+ "▁He m",
+ "ut os",
+ "uto s",
+ "pr oj",
+ "pro j",
+ "▁superfic ie",
+ "Pl ot",
+ "P lot",
+ "▁D ocker",
+ "▁Do cker",
+ "▁Doc ker",
+ "ät z",
+ "ä tz",
+ "kre ich",
+ "k reich",
+ "▁un clear",
+ "▁uncle ar",
+ "▁Un ity",
+ "▁Unit y",
+ "▁stream s",
+ "▁stre ams",
+ "ви д",
+ "▁simpl ified",
+ "Fil l",
+ "Fi ll",
+ "F ill",
+ "▁s ant",
+ "▁sa nt",
+ "▁san t",
+ "▁K ommun",
+ "▁Kom mun",
+ "▁Komm un",
+ "▁d uc",
+ "▁du c",
+ "▁д ве",
+ "▁o bs",
+ "▁ob s",
+ "▁ obs",
+ "ž it",
+ "▁Jane iro",
+ "б я",
+ "▁pr esso",
+ "▁pres so",
+ "▁press o",
+ "▁Min istry",
+ "▁b urst",
+ "▁bur st",
+ "▁re aching",
+ "▁reach ing",
+ "li ter",
+ "lit er",
+ "l iter",
+ "▁response s",
+ "▁respons es",
+ "▁E ug",
+ "▁Eu g",
+ "▁s od",
+ "▁so d",
+ "▁C ord",
+ "▁Cor d",
+ "▁Co rd",
+ "▁P erm",
+ "▁Per m",
+ "▁Pe rm",
+ "▁ Perm",
+ "par ts",
+ "part s",
+ "p arts",
+ "ци ма",
+ "vari ables",
+ "variable s",
+ "▁forgot ten",
+ "Fe rn",
+ "F ern",
+ "ost ęp",
+ "v l",
+ "▁С м",
+ "ki m",
+ "k im",
+ "aj ąc",
+ "ają c",
+ "a jąc",
+ "на ль",
+ "нал ь",
+ "н аль",
+ "г ле",
+ "hel per",
+ "help er",
+ "du p",
+ "d up",
+ "eu w",
+ "e uw",
+ "fr a",
+ "f ra",
+ "ell ite",
+ "elli te",
+ "an ya",
+ "any a",
+ "▁re ign",
+ "▁r eign",
+ "▁rei gn",
+ "ges amt",
+ "се да",
+ "▁R yan",
+ "▁Ry an",
+ "▁form atted",
+ "▁format ted",
+ "▁formatt ed",
+ "▁B org",
+ "▁Bo rg",
+ "▁Bor g",
+ "wal k",
+ "w alk",
+ "▁а л",
+ "▁ ал",
+ "agnost ics",
+ "agnostic s",
+ "▁C ape",
+ "▁Cap e",
+ "▁Ca pe",
+ "▁Fran co",
+ "▁Franc o",
+ "▁f ug",
+ "▁fu g",
+ ": )",
+ "ю з",
+ "F etch",
+ "▁rough ly",
+ "▁M is",
+ "▁Mi s",
+ "uet ooth",
+ "▁Venez uela",
+ "▁a stronom",
+ "▁astr onom",
+ "\") `",
+ "\" )`",
+ "om bres",
+ "omb res",
+ "▁кото рой",
+ "ó p",
+ "ow ed",
+ "owe d",
+ "o wed",
+ "H R",
+ "▁C amer",
+ "▁Cam er",
+ "▁Ca mer",
+ "ки е",
+ "par ison",
+ "▁B ij",
+ "▁Bi j",
+ "tem plates",
+ "template s",
+ "en vironment",
+ "environ ment",
+ "iz ação",
+ "iza ção",
+ "▁é r",
+ "▁ ér",
+ "▁pl enty",
+ "▁Type Error",
+ "▁for ty",
+ "▁fort y",
+ "ко ном",
+ "кон ом",
+ "коно м",
+ "▁S ed",
+ "▁Se d",
+ "▁th ats",
+ "▁that s",
+ "▁gra vity",
+ "▁grav ity",
+ "▁gravit y",
+ "▁ gravity",
+ "▁spirit ual",
+ "▁dup licates",
+ "▁duplicate s",
+ "▁enc ryption",
+ "▁encrypt ion",
+ "▁re ven",
+ "▁r even",
+ "▁rev en",
+ "▁reve n",
+ "▁ reven",
+ "get Instance",
+ "äl lor",
+ "äll or",
+ "dis k",
+ "di sk",
+ "d isk",
+ "▁th ro",
+ "▁thr o",
+ "▁N ak",
+ "▁Na k",
+ "▁p oł",
+ "▁po ł",
+ "▁her aus",
+ "in valid",
+ "s By",
+ "Bo ot",
+ "B oot",
+ "▁bu cket",
+ "▁ bucket",
+ "▁P arse",
+ "▁Par se",
+ "▁ Parse",
+ "he x",
+ "h ex",
+ "Con ne",
+ "C onne",
+ "▁Comp uter",
+ "▁Comput er",
+ "zy k",
+ "z yk",
+ "▁indu ced",
+ "▁Br uno",
+ "▁Bru no",
+ "▁Brun o",
+ "▁address ed",
+ "▁addr essed",
+ "ma nia",
+ "man ia",
+ "m ania",
+ "▁in clus",
+ "▁incl us",
+ "▁inc lus",
+ "▁inclu s",
+ "oun ced",
+ "ounce d",
+ "script size",
+ "scripts ize",
+ "▁E pis",
+ "▁Ep is",
+ "▁v ocal",
+ "▁vo cal",
+ "▁voc al",
+ "▁Jon athan",
+ "у м",
+ "st aden",
+ "sta den",
+ "stad en",
+ "▁Child ren",
+ "▁ Children",
+ "пе й",
+ "п ей",
+ "It alia",
+ "Ital ia",
+ "reib ung",
+ "▁n ost",
+ "▁no st",
+ "▁nos t",
+ "▁ nost",
+ "▁е щё",
+ "▁Wer ke",
+ "▁Werk e",
+ "▁act ress",
+ "▁Minn esota",
+ "ri ke",
+ "rik e",
+ "r ike",
+ "▁t ek",
+ "▁te k",
+ "▁ tek",
+ "▁prime ira",
+ "▁f rat",
+ "▁fr at",
+ "▁fra t",
+ "▁Config uration",
+ "▁ Configuration",
+ "▁b id",
+ "▁bi d",
+ "▁ bid",
+ "tr igger",
+ "Cont ents",
+ "Content s",
+ "▁const antly",
+ "▁constant ly",
+ "!! !",
+ "! !!",
+ "▁d read",
+ "▁dr ead",
+ "▁dre ad",
+ "▁hundred s",
+ "ist ische",
+ "isti sche",
+ "▁card inal",
+ "T ABLE",
+ "▁est os",
+ "▁esto s",
+ "ass oc",
+ "asso c",
+ "gr ay",
+ "gra y",
+ "g ray",
+ "▁Sch loss",
+ "▁Schl oss",
+ "▁s che",
+ "▁sc he",
+ "▁sch e",
+ "▁ sche",
+ "con g",
+ "co ng",
+ "c ong",
+ "▁ko ji",
+ "ète s",
+ "èt es",
+ "è tes",
+ "▁E ra",
+ "▁Er a",
+ "om i",
+ "o mi",
+ "▁S R",
+ "▁ SR",
+ "▁wr apped",
+ "▁wra pped",
+ "▁wrap ped",
+ "▁tr unc",
+ "▁a h",
+ "▁ ah",
+ "eg os",
+ "ego s",
+ "ok i",
+ "o ki",
+ "mo uth",
+ "m outh",
+ "log ging",
+ "▁f asc",
+ "▁fa sc",
+ "▁fas c",
+ "▁S ample",
+ "▁Sam ple",
+ "▁ Sample",
+ "▁c onte",
+ "▁con te",
+ "▁cont e",
+ "▁v illa",
+ "▁vi lla",
+ "▁vill a",
+ "▁vil la",
+ "▁ villa",
+ "com ments",
+ "comm ents",
+ "comment s",
+ "▁b atal",
+ "▁ba tal",
+ "▁bat al",
+ "▁bata l",
+ "▁Garc ía",
+ "▁N orte",
+ "▁Nor te",
+ "▁we chsel",
+ "▁Muse o",
+ "▁enf ants",
+ "▁whis per",
+ "na ke",
+ "nak e",
+ "n ake",
+ "▁jed nak",
+ "l ês",
+ "en ders",
+ "end ers",
+ "ender s",
+ "ende rs",
+ "▁ä l",
+ "▁ äl",
+ "▁V B",
+ "▁ VB",
+ "▁cook ies",
+ "▁cookie s",
+ "ze ti",
+ "zet i",
+ "z eti",
+ "at um",
+ "atu m",
+ "▁d edu",
+ "▁de du",
+ "▁ded u",
+ "▁arr anged",
+ "▁arrang ed",
+ "la z",
+ "l az",
+ "▁cu enta",
+ "ym l",
+ "y ml",
+ "▁f lav",
+ "▁fl av",
+ "▁fla v",
+ "M R",
+ "em et",
+ "eme t",
+ "e met",
+ "бі ль",
+ "б іль",
+ "cm p",
+ "c mp",
+ "it uto",
+ "itu to",
+ "itut o",
+ "ze tt",
+ "zet t",
+ "z ett",
+ "▁en vi",
+ "▁env i",
+ "▁k ot",
+ "▁ko t",
+ "$ :",
+ "up per",
+ "upp er",
+ "u pper",
+ "▁Al berto",
+ "▁Albert o",
+ "k b",
+ "An al",
+ "A nal",
+ "ör t",
+ "ö rt",
+ "▁[ -",
+ "▁ [-",
+ "▁führ te",
+ "▁führt e",
+ "ia h",
+ "i ah",
+ "▁T un",
+ "▁Tu n",
+ "▁и скус",
+ "uw e",
+ "u we",
+ "is pecies",
+ "i species",
+ "P ub",
+ "Syn c",
+ "S ync",
+ "▁Colomb ia",
+ "ak ers",
+ "ake rs",
+ "aker s",
+ "▁Imper ial",
+ "ov ing",
+ "ovi ng",
+ "o ving",
+ "▁int elligence",
+ "▁intellig ence",
+ "▁equip ment",
+ "ei n",
+ "e in",
+ "dag ger",
+ "d agger",
+ "▁Ed ge",
+ "▁ Edge",
+ "▁Рес публи",
+ "adratkil ometer",
+ "▁An to",
+ "▁Ant o",
+ "▁char ges",
+ "▁charge s",
+ "▁charg es",
+ "▁O cean",
+ "▁simpl ify",
+ "▁m iesz",
+ "▁mi esz",
+ "▁mie sz",
+ "run ning",
+ "r unning",
+ "▁L ac",
+ "▁La c",
+ "gen ommen",
+ "▁represent ative",
+ "= .",
+ "▁P red",
+ "▁Pr ed",
+ "▁Pre d",
+ "▁ Pred",
+ "▁sp ite",
+ "ci ale",
+ "cial e",
+ "cia le",
+ "c iale",
+ "▁n ave",
+ "▁na ve",
+ "▁nav e",
+ "▁ext ens",
+ "▁neut ral",
+ "▁кото рая",
+ ".< /",
+ ". ",
+ "▁C S",
+ "▁ CS",
+ "uk y",
+ "u ky",
+ "▁wh ilst",
+ "▁l ingu",
+ "▁lin gu",
+ "▁ling u",
+ "ext ract",
+ "extra ct",
+ "zeich nung",
+ "▁F eld",
+ "▁Fe ld",
+ "▁Fel d",
+ "▁valu able",
+ "ur able",
+ "ura ble",
+ "u rable",
+ "▁J en",
+ "▁Je n",
+ "▁strugg le",
+ "▁comm ittee",
+ "▁W ohn",
+ "▁Wo hn",
+ "▁sql ite",
+ "▁ sqlite",
+ "▁T emp",
+ "▁Te mp",
+ "▁Tem p",
+ "▁ Temp",
+ "▁CO UNT",
+ "▁ COUNT",
+ "con sin",
+ "cons in",
+ "мі ні",
+ "мін і",
+ "us age",
+ "usa ge",
+ "▁qu est",
+ "▁que st",
+ "▁q uest",
+ "▁ quest",
+ "дя н",
+ "д ян",
+ "ear ed",
+ "ea red",
+ "e ared",
+ "▁Sch ne",
+ "▁d od",
+ "▁do d",
+ "▁re cht",
+ "▁rec ht",
+ "▁ recht",
+ "▁k ao",
+ "▁ka o",
+ "Cap t",
+ "Ca pt",
+ "C apt",
+ "label s",
+ "lab els",
+ "▁el los",
+ "▁ell os",
+ "▁indust ri",
+ "▁Color ado",
+ "▁contr ary",
+ "▁contra ry",
+ "▁D um",
+ "▁Du m",
+ "Be l",
+ "B el",
+ "▁V ent",
+ "▁Ve nt",
+ "▁Ven t",
+ "▁author ities",
+ "Y ES",
+ "en sed",
+ "ens ed",
+ "ense d",
+ "umbn ail",
+ "izz azione",
+ "izza zione",
+ "ko u",
+ "k ou",
+ "ri ca",
+ "ric a",
+ "r ica",
+ "▁s ect",
+ "▁se ct",
+ "▁sec t",
+ "▁ sect",
+ "test s",
+ "tes ts",
+ "t ests",
+ "▁K lein",
+ "▁Kle in",
+ "▁Kl ein",
+ "▁le gs",
+ "▁leg s",
+ "▁Pi etro",
+ "▁Piet ro",
+ "f u",
+ "th y",
+ "t hy",
+ "▁b ast",
+ "▁bas t",
+ "▁ba st",
+ "▁t edes",
+ "▁te des",
+ "▁ted es",
+ "et tes",
+ "ett es",
+ "ette s",
+ "▁re pet",
+ "▁rep et",
+ "▁repe t",
+ "ac re",
+ "a cre",
+ "re tto",
+ "ret to",
+ "rett o",
+ "r etto",
+ "▁remain der",
+ "▁G eg",
+ "▁Ge g",
+ "▁Г ор",
+ "▁Го р",
+ "▁Re chts",
+ "▁Recht s",
+ "▁filter ing",
+ "ou ss",
+ "ous s",
+ "o uss",
+ "▁deploy ed",
+ "▁prü fe",
+ "▁b itmap",
+ "▁bit map",
+ "▁s ovi",
+ "▁so vi",
+ "▁sov i",
+ "▁< %=",
+ "▁<% =",
+ "▁ <%=",
+ "▁entfer ne",
+ "ki ll",
+ "kil l",
+ "k ill",
+ "ta bs",
+ "tab s",
+ "t abs",
+ "Ex pr",
+ "Exp r",
+ "ко му",
+ "ком у",
+ "к ому",
+ "▁Republic an",
+ "▁S ize",
+ "▁Si ze",
+ "▁ Size",
+ "▁p oll",
+ "▁po ll",
+ "▁pol l",
+ "▁r ien",
+ "▁ri en",
+ "▁ rien",
+ "▁клу б",
+ "én d",
+ "é nd",
+ "▁B io",
+ "▁Bi o",
+ "▁per l",
+ "▁pe rl",
+ "▁ perl",
+ "▁And reas",
+ "▁Andrea s",
+ "▁Andre as",
+ "ви н",
+ "в ин",
+ "▁d istant",
+ "▁dist ant",
+ "▁F inn",
+ "▁Fin n",
+ "▁M itch",
+ "▁Mit ch",
+ "▁% {",
+ "▁c harm",
+ "▁ch arm",
+ "▁char m",
+ "▁cha rm",
+ "▁M ul",
+ "▁Mu l",
+ "pe rate",
+ "per ate",
+ "▁sci ences",
+ "▁science s",
+ "▁mon ot",
+ "▁mo not",
+ "▁deb ido",
+ "riz ona",
+ "ie c",
+ "i ec",
+ "▁al arm",
+ "▁prom oted",
+ "▁promote d",
+ "▁let zten",
+ "at in",
+ "ati n",
+ "▁con clus",
+ "▁conc lus",
+ "▁concl us",
+ "he rr",
+ "her r",
+ "h err",
+ "▁é ch",
+ "▁éc h",
+ "▁ éch",
+ "ed ish",
+ "edi sh",
+ "go r",
+ "g or",
+ "▁st ycz",
+ "▁sty cz",
+ "▁im press",
+ "▁imp ress",
+ "▁impr ess",
+ "ru its",
+ "ruit s",
+ "r uits",
+ "ier ungs",
+ "ierung s",
+ "▁par sed",
+ "▁parse d",
+ "▁r ío",
+ "▁Pak istan",
+ "ig ner",
+ "ign er",
+ "igne r",
+ "▁watch ing",
+ "▁database s",
+ "▁datab ases",
+ "ed ing",
+ "edi ng",
+ "e ding",
+ "▁Spec ific",
+ "▁gener ale",
+ "▁general e",
+ "▁gene rale",
+ "la x",
+ "l ax",
+ "▁Lo oking",
+ "▁Look ing",
+ "▁b ond",
+ "▁bo nd",
+ "▁bon d",
+ "▁v ista",
+ "▁vis ta",
+ "▁vi sta",
+ "▁e c",
+ "▁ ec",
+ "▁gr ud",
+ "▁gru d",
+ "▁del eting",
+ "▁delet ing",
+ "ta c",
+ "t ac",
+ "▁j azz",
+ "▁ja zz",
+ "j m",
+ "▁p ół",
+ "▁pó ł",
+ "L anguage",
+ "de legate",
+ "▁reg istry",
+ "▁registr y",
+ "▁Sh ared",
+ "▁Share d",
+ "▁ Shared",
+ "ст рой",
+ "стро й",
+ "Mus ic",
+ "▁v essel",
+ "▁vess el",
+ "▁ves sel",
+ ". @",
+ "▁W ür",
+ "▁f ed",
+ "▁fe d",
+ "▁ered et",
+ "▁ere det",
+ "▁G ö",
+ "up t",
+ "u pt",
+ "▁ple asant",
+ "▁table View",
+ "▁ tableView",
+ "▁count ing",
+ "▁coun ting",
+ "▁Krie gs",
+ "▁Krieg s",
+ "▁полу чил",
+ "▁получи л",
+ "▁] ,",
+ "▁ ],",
+ "ви а",
+ "▁a ž",
+ "To List",
+ "▁Ad vent",
+ "▁Adv ent",
+ "▁sk etch",
+ "p n",
+ "▁s ier",
+ "▁si er",
+ "▁sie r",
+ "▁находи тся",
+ "io p",
+ "i op",
+ "▁l y",
+ "▁ ly",
+ "▁Sch l",
+ "▁Sc hl",
+ "Cont ract",
+ "as soci",
+ "ass oci",
+ "asso ci",
+ "assoc i",
+ "▁P ear",
+ "▁Pe ar",
+ "▁w he",
+ "▁wh e",
+ "▁De lete",
+ "▁Del ete",
+ "▁ Delete",
+ "▁e lem",
+ "▁el em",
+ "▁ele m",
+ "▁ elem",
+ "ät te",
+ "ätt e",
+ "ä tte",
+ "▁č esk",
+ "▁M C",
+ "▁ MC",
+ "▁sh out",
+ "▁sho ut",
+ "ake spe",
+ "akes pe",
+ "▁default s",
+ "pe nas",
+ "pen as",
+ "p enas",
+ "ò ria",
+ "▁hier archy",
+ "ip t",
+ "i pt",
+ "▁E lis",
+ "▁El is",
+ "▁Eli s",
+ "like ly",
+ "lik ely",
+ "Ro t",
+ "R ot",
+ "▁c ow",
+ "▁co w",
+ "▁ cow",
+ "▁st rike",
+ "▁str ike",
+ "▁stri ke",
+ "▁strik e",
+ "▁бере зня",
+ "▁ens emble",
+ "▁ ensemble",
+ "▁Pse ud",
+ "V irtual",
+ "▁ї ї",
+ "RO OT",
+ "си я",
+ "▁с об",
+ "▁со б",
+ "▁ соб",
+ "▁in vert",
+ "▁inv ert",
+ "▁inve rt",
+ "▁switch ing",
+ "ht access",
+ "▁на гра",
+ "▁Nor man",
+ "▁Norm an",
+ "▁ing lês",
+ "! [",
+ "ou sel",
+ "ous el",
+ "ouse l",
+ "DO CTYPE",
+ "DOC TYPE",
+ "▁supp ress",
+ "▁sup press",
+ "▁accompan ied",
+ "▁B é",
+ "imp lies",
+ "impl ies",
+ "nu t",
+ "n ut",
+ "▁S yntax",
+ "▁Syn tax",
+ "▁ Syntax",
+ "in ho",
+ "▁t am",
+ "▁ta m",
+ "▁focus ed",
+ "▁foc used",
+ "av ano",
+ "ava no",
+ "avan o",
+ "a vano",
+ "▁B aden",
+ "▁Ba den",
+ "▁Bad en",
+ "ha d",
+ "h ad",
+ "▁( {",
+ "▁ ({",
+ "T y",
+ "▁ро с",
+ "▁р ос",
+ "▁ рос",
+ "▁чо лові",
+ "og e",
+ "o ge",
+ "js p",
+ "j sp",
+ "Bl ue",
+ "▁su as",
+ "▁sua s",
+ "ap ers",
+ "ape rs",
+ "aper s",
+ "a pers",
+ "Sh ort",
+ "Render er",
+ "▁s endo",
+ "▁send o",
+ "▁sen do",
+ "▁C ec",
+ "▁Ce c",
+ "▁` __",
+ "▁`_ _",
+ "▁Municip al",
+ "dot net",
+ "▁b ev",
+ "▁be v",
+ "▁D A",
+ "▁ DA",
+ "Menu Item",
+ "▁a mp",
+ "▁am p",
+ "▁ amp",
+ "▁u ri",
+ "▁ur i",
+ "▁ uri",
+ "▁f ier",
+ "▁fi er",
+ "сле н",
+ "с лен",
+ "), (",
+ ") ,(",
+ "cul es",
+ "cu les",
+ "c ules",
+ "il las",
+ "ill as",
+ "illa s",
+ "LO CK",
+ "LOC K",
+ "▁de rive",
+ "▁der ive",
+ "▁deriv e",
+ "ub en",
+ "ube n",
+ "u ben",
+ "▁G T",
+ "▁ GT",
+ "▁M ack",
+ "▁Ma ck",
+ "▁Mac k",
+ "▁sch olar",
+ ")} }",
+ ") }}",
+ "з м",
+ ">: :",
+ "> ::",
+ "ш ёл",
+ "▁princip ales",
+ "▁principal es",
+ "▁principale s",
+ "▁ц ар",
+ "▁t ied",
+ "▁ti ed",
+ "▁tie d",
+ "▁al ta",
+ "▁alt a",
+ "▁C it",
+ "▁Ci t",
+ "li ned",
+ "line d",
+ "lin ed",
+ "l ined",
+ "ma jor",
+ "▁p unk",
+ "▁pun k",
+ "▁cin co",
+ "ick ý",
+ "▁r aggi",
+ "▁ra ggi",
+ "▁rag gi",
+ "ty pen",
+ "type n",
+ "typ en",
+ "тель ство",
+ "▁con ference",
+ "▁confer ence",
+ "▁с іль",
+ "▁сі ль",
+ "▁he ut",
+ "i š",
+ "ет а",
+ "е та",
+ "vel ope",
+ "velop e",
+ "h box",
+ "no wn",
+ "now n",
+ "n own",
+ "▁z ar",
+ "▁za r",
+ "▁ zar",
+ "kt iv",
+ "ie ß",
+ "▁с тре",
+ "▁ст ре",
+ "▁ стре",
+ "▁Event Args",
+ "▁ EventArgs",
+ "▁I ra",
+ "▁Ir a",
+ "▁V BA",
+ "▁VB A",
+ "▁S anto",
+ "▁San to",
+ "▁Sant o",
+ "▁F ach",
+ "▁Fa ch",
+ "▁Fac h",
+ "▁F F",
+ "▁ FF",
+ "▁Ray mond",
+ "ме ц",
+ "im plementation",
+ "▁bro thers",
+ "▁brother s",
+ "▁cô té",
+ "▁cont rollers",
+ "▁control lers",
+ "▁controller s",
+ "▁C le",
+ "▁Cl e",
+ "▁c able",
+ "▁ca ble",
+ "▁cab le",
+ "▁con fer",
+ "▁conf er",
+ "▁{ -",
+ "▁ {-",
+ "▁cz ł",
+ "▁Fil ip",
+ "at orio",
+ "ator io",
+ "ato rio",
+ "atori o",
+ "▁w icht",
+ "▁be aucoup",
+ "▁L it",
+ "▁Li t",
+ "▁s essions",
+ "▁session s",
+ "▁sess ions",
+ "▁Su ccess",
+ "▁ Success",
+ "▁ro uting",
+ "▁rout ing",
+ "▁rou ting",
+ "ni u",
+ "n iu",
+ "▁V ice",
+ "▁Vi ce",
+ "▁Vic e",
+ "▁k rit",
+ "▁kr it",
+ "up dated",
+ "update d",
+ "▁In valid",
+ "▁ Invalid",
+ "▁Mann schaft",
+ "▁a os",
+ "▁ao s",
+ "▁t udi",
+ "▁tu di",
+ "▁tud i",
+ "▁des prés",
+ "▁desp rés",
+ "qu a",
+ "q ua",
+ "Cont ains",
+ "Comp any",
+ "▁person a",
+ "▁pers ona",
+ "ad apter",
+ "с ни",
+ "▁v oj",
+ "▁vo j",
+ "▁ voj",
+ "▁e scri",
+ "▁es cri",
+ "▁esc ri",
+ "ag t",
+ "a gt",
+ "▁с тво",
+ "▁ст во",
+ "▁ ство",
+ "▁dist rito",
+ "ap an",
+ "apa n",
+ "a pan",
+ "▁aspect s",
+ "▁z al",
+ "▁za l",
+ ")^ {\\",
+ ")^{ \\",
+ ") ^{\\",
+ "▁syst ème",
+ "▁а на",
+ "▁ан а",
+ "▁ ана",
+ "ium s",
+ "iu ms",
+ "i ums",
+ "▁prem iers",
+ "▁premi ers",
+ "▁premier s",
+ "▁по э",
+ "▁m ère",
+ "▁G un",
+ "▁Gu n",
+ "ap ing",
+ "api ng",
+ "a ping",
+ "▁R ain",
+ "▁Ra in",
+ "▁ig ual",
+ "▁process or",
+ "▁proc essor",
+ "▁ processor",
+ "') `",
+ "' )`",
+ "bl ing",
+ "b ling",
+ "▁m ism",
+ "▁mi sm",
+ "▁mis m",
+ "br áz",
+ "▁close st",
+ "▁clos est",
+ "▁Re ading",
+ "▁Read ing",
+ "▁по пу",
+ "con o",
+ "co no",
+ "c ono",
+ "▁k ult",
+ "▁! !",
+ "▁ !!",
+ "▁Ex pression",
+ "▁Exp ression",
+ "▁Express ion",
+ "▁ Expression",
+ "▁indu ction",
+ "▁induct ion",
+ "ah ren",
+ "ahr en",
+ "a hren",
+ "▁c p",
+ "▁ cp",
+ "▁viol ence",
+ "ient í",
+ "cent e",
+ "cen te",
+ "c ente",
+ "▁D ob",
+ "▁Do b",
+ "ja ck",
+ "j ack",
+ "so ng",
+ "son g",
+ "s ong",
+ "bu cket",
+ "▁de port",
+ "▁dep ort",
+ "ки ми",
+ "ким и",
+ "l m",
+ "▁in noc",
+ "▁inn oc",
+ "Ch anges",
+ "Change s",
+ "▁pro hib",
+ "ang ol",
+ "ango l",
+ "isecond s",
+ "i seconds",
+ "▁п ор",
+ "▁по р",
+ "▁ пор",
+ "▁h ip",
+ "▁hi p",
+ "▁ hip",
+ "▁p ů",
+ "en dorf",
+ "end orf",
+ "endo rf",
+ "endor f",
+ "▁sch eduled",
+ "▁schedule d",
+ "▁Fl ug",
+ "ac yj",
+ "acy j",
+ "▁Fil ms",
+ "▁Film s",
+ "athed ral",
+ "Po wer",
+ "P ower",
+ "ar din",
+ "ard in",
+ "ardi n",
+ "ka p",
+ "k ap",
+ "ic ken",
+ "ick en",
+ "i cken",
+ "re size",
+ "res ize",
+ "eu s",
+ "e us",
+ "r r",
+ "ля н",
+ "л ян",
+ "▁H av",
+ "▁Ha v",
+ "▁o ra",
+ "▁or a",
+ "▁ ora",
+ "FR OM",
+ "F ROM",
+ "ло ся",
+ "▁te rug",
+ "▁ter ug",
+ "▁W idth",
+ "▁ Width",
+ "▁accept s",
+ "бе н",
+ "б ен",
+ "▁m ich",
+ "▁mi ch",
+ "▁mic h",
+ "▁C zech",
+ "▁Cz ech",
+ "▁B edeut",
+ "▁ви д",
+ "▁ вид",
+ "ô me",
+ "▁L oop",
+ "▁Lo op",
+ "▁ Loop",
+ "sp ect",
+ "spe ct",
+ "spec t",
+ "s pect",
+ "ü k",
+ "es ton",
+ "est on",
+ "esto n",
+ "e ston",
+ "▁s lot",
+ "▁sl ot",
+ "▁slo t",
+ "▁został a",
+ "▁Charlot te",
+ "▁состав ляет",
+ "▁составля ет",
+ "▁Prom ise",
+ "▁e po",
+ "▁ep o",
+ "▁d iction",
+ "▁di ction",
+ "▁dict ion",
+ "▁dic tion",
+ "▁ diction",
+ "▁Frank lin",
+ "▁R iv",
+ "▁Ri v",
+ "ру г",
+ "ci da",
+ "cid a",
+ "c ida",
+ "▁Ex plorer",
+ "cook ie",
+ "▁former ly",
+ "▁municip ality",
+ "▁municipal ity",
+ "▁Ste fan",
+ "▁Stef an",
+ "list s",
+ "lis ts",
+ "l ists",
+ "CO MP",
+ "COM P",
+ "Le n",
+ "L en",
+ "▁Sta at",
+ "▁N BA",
+ "de ns",
+ "den s",
+ "d ens",
+ "▁osc ill",
+ "! .",
+ "▁P O",
+ "▁ PO",
+ "ô ne",
+ "es es",
+ "ese s",
+ "▁на циональ",
+ "vo or",
+ "v oor",
+ "▁ко пи",
+ "▁по зи",
+ "▁ пози",
+ "ul u",
+ "u lu",
+ "Const raint",
+ "Constra int",
+ "▁сво ей",
+ "▁algebra ic",
+ "ч ня",
+ "Di ct",
+ "D ict",
+ "▁appear ing",
+ "▁appe aring",
+ "▁p rav",
+ "▁pr av",
+ "▁pra v",
+ "▁Univers al",
+ "B rowser",
+ "▁Sing ap",
+ "ennes see",
+ "] _",
+ "▁S of",
+ "▁So f",
+ "▁C ad",
+ "▁Ca d",
+ "oun ce",
+ "▁cost s",
+ "▁cos ts",
+ "]{ \\",
+ "] {\\",
+ "../ ../",
+ "ськ ій",
+ "ські й",
+ "üh l",
+ "ü hl",
+ "ie ty",
+ "iet y",
+ "i ety",
+ "п р",
+ "▁interpre ted",
+ "▁interpret ed",
+ "aj n",
+ "col og",
+ "co log",
+ "colo g",
+ "c olog",
+ "Y S",
+ "ma ns",
+ "man s",
+ "m ans",
+ "▁met rics",
+ "▁metric s",
+ "▁reg istr",
+ "▁ registr",
+ "ist ance",
+ "istan ce",
+ "▁По ль",
+ "▁an onymous",
+ "▁ anonymous",
+ "▁institution s",
+ "▁instit utions",
+ "▁z dob",
+ "▁zd ob",
+ "pr üng",
+ "prü ng",
+ "▁ар ти",
+ "▁e stat",
+ "▁est at",
+ "▁es tat",
+ "▁esta t",
+ "ac ci",
+ "acc i",
+ "▁academ ic",
+ "▁ch iesa",
+ "▁chi esa",
+ "▁G ian",
+ "▁Gi an",
+ "▁Gia n",
+ "cont rib",
+ "contr ib",
+ "um ed",
+ "ume d",
+ "u med",
+ "▁G ir",
+ "▁Gi r",
+ "▁base ball",
+ "numer ic",
+ "n umeric",
+ "Gener ator",
+ "G M",
+ "▁t iny",
+ "▁ti ny",
+ "▁tin y",
+ "▁ tiny",
+ "▁dist inction",
+ "▁distinct ion",
+ "ге р",
+ "г ер",
+ "▁r ust",
+ "▁ru st",
+ "▁rus t",
+ "▁ rust",
+ "▁FI FA",
+ "▁Pro perties",
+ "▁ Properties",
+ "^ -",
+ "▁э кс",
+ "▁эк с",
+ "▁Sta nis",
+ "▁Stan is",
+ "▁A jax",
+ "es cape",
+ "esc ape",
+ "▁con sp",
+ "▁cons p",
+ "▁C hen",
+ "▁Ch en",
+ "▁Che n",
+ "▁N aval",
+ "▁Na val",
+ "▁Nav al",
+ "Bi t",
+ "B it",
+ "▁b ât",
+ "ски ми",
+ "ским и",
+ "с кими",
+ "dr ive",
+ "dri ve",
+ "d rive",
+ "▁R ound",
+ "▁Ro und",
+ "▁Rou nd",
+ "ph oto",
+ "▁Le vel",
+ "▁Lev el",
+ "▁ Level",
+ "▁g eg",
+ "▁ge g",
+ "▁ geg",
+ "To m",
+ "T om",
+ "▁M obile",
+ "▁ Mobile",
+ "▁T rop",
+ "▁Tr op",
+ "▁Tro p",
+ "Dir ection",
+ "Direct ion",
+ "D irection",
+ "is an",
+ "isa n",
+ "i san",
+ ")^ {-",
+ ")^{ -",
+ ") ^{-",
+ "▁Set ting",
+ "▁ Setting",
+ "▁Pro bably",
+ "ль я",
+ "л ья",
+ "▁as sets",
+ "▁ass ets",
+ "▁asse ts",
+ "▁asset s",
+ "▁ assets",
+ "▁a tte",
+ "▁at te",
+ "▁att e",
+ "▁ atte",
+ "▁b ulk",
+ "▁bul k",
+ "és t",
+ "é st",
+ "▁w ing",
+ "▁win g",
+ "▁ wing",
+ "ni us",
+ "niu s",
+ "n ius",
+ "▁w ins",
+ "▁win s",
+ "▁l ud",
+ "▁lu d",
+ "us hing",
+ "ush ing",
+ "▁d even",
+ "▁de ven",
+ "▁dev en",
+ "▁deve n",
+ "огра ф",
+ "о граф",
+ "burg er",
+ "bur ger",
+ "b urger",
+ "▁em bar",
+ "▁emb ar",
+ "Filter Chain",
+ "▁t um",
+ "▁tu m",
+ "▁ö ss",
+ "▁nom mé",
+ "▁p ir",
+ "▁pi r",
+ "▁l uc",
+ "▁lu c",
+ "db o",
+ "d bo",
+ "ag ues",
+ "ague s",
+ "agu es",
+ "▁al can",
+ "▁alc an",
+ "ou wen",
+ "ouw en",
+ "▁Stan ley",
+ "ци али",
+ "▁g rown",
+ "▁gr own",
+ "▁gro wn",
+ "▁grow n",
+ "▁pres erved",
+ "▁preserve d",
+ "▁s olar",
+ "▁so lar",
+ "▁sol ar",
+ "▁Насе ление",
+ "▁perform ances",
+ "▁performance s",
+ "▁C ow",
+ "▁Co w",
+ "▁engine ering",
+ "▁engineer ing",
+ "▁sc aling",
+ "▁scal ing",
+ "at omic",
+ "ato mic",
+ "atom ic",
+ "end ance",
+ "▁a ce",
+ "▁ac e",
+ "▁ ace",
+ "än gen",
+ "äng en",
+ "änge n",
+ "An im",
+ "A nim",
+ "ph ase",
+ "pha se",
+ "phas e",
+ "z burg",
+ "O ld",
+ "▁serv ant",
+ "▁geme ins",
+ "▁Ob serv",
+ "trans late",
+ "▁cover ing",
+ "▁cov ering",
+ "▁est án",
+ "▁está n",
+ "▁problem a",
+ "▁proble ma",
+ "▁probl ema",
+ "▁у станов",
+ "▁l lev",
+ "▁ll ev",
+ "▁lle v",
+ "▁c zerw",
+ "é al",
+ "me z",
+ "m ez",
+ "RE E",
+ "R EE",
+ "ER R",
+ "ту ри",
+ "тур и",
+ "se gu",
+ "seg u",
+ "s egu",
+ "▁pro fit",
+ "▁prof it",
+ "▁multip lication",
+ "kom men",
+ "k ommen",
+ "▁f aut",
+ "▁fa ut",
+ "▁candid ates",
+ "▁candidate s",
+ "▁U ri",
+ "▁Ur i",
+ "▁ Uri",
+ "▁La ura",
+ "▁Laur a",
+ "▁Lau ra",
+ "▁s ap",
+ "▁sa p",
+ "▁ви сини",
+ "▁Bet ween",
+ "fa de",
+ "f ade",
+ "▁res erved",
+ "▁reserve d",
+ "▁invol ving",
+ "▁M are",
+ "▁Mar e",
+ "▁Ma re",
+ "▁Cont ainer",
+ "▁ Container",
+ "▁на зна",
+ "▁DE BUG",
+ "▁ DEBUG",
+ "▁h urt",
+ "▁hur t",
+ "▁hu rt",
+ "▁Pol ski",
+ "▁l ux",
+ "▁lu x",
+ "C B",
+ "wa ch",
+ "w ach",
+ "▁пери од",
+ "▁перио д",
+ "▁C atherine",
+ "▁g anz",
+ "▁gan z",
+ "uch te",
+ "ucht e",
+ "u chte",
+ "▁cons umer",
+ "▁consum er",
+ "▁consume r",
+ "▁cross ed",
+ "ord ered",
+ "order ed",
+ "orde red",
+ "aw ay",
+ "awa y",
+ "a way",
+ "te chn",
+ "tech n",
+ "▁sub scri",
+ "▁subs cri",
+ "▁short cut",
+ "▁произ вод",
+ "▁simultane ously",
+ "▁r ating",
+ "▁ra ting",
+ "▁rat ing",
+ "▁ rating",
+ "▁K ings",
+ "▁King s",
+ "▁Kin gs",
+ "▁relations hips",
+ "▁relation ships",
+ "▁relationship s",
+ "▁S ex",
+ "▁Se x",
+ "▁T ool",
+ "▁To ol",
+ "▁ Tool",
+ "ag h",
+ "a gh",
+ "ac ters",
+ "act ers",
+ "acter s",
+ "log ger",
+ "hom me",
+ "en gers",
+ "eng ers",
+ "enger s",
+ "▁R i",
+ "ear ance",
+ "ea rance",
+ "▁appear ances",
+ "▁appearance s",
+ "Re al",
+ "▁p asse",
+ "▁pass e",
+ "▁pas se",
+ "ic lopedia",
+ "ч ко",
+ "ter re",
+ "▁Ont ario",
+ "▁пере да",
+ "▁перед а",
+ "fo oter",
+ "foo ter",
+ "foot er",
+ "arch ivi",
+ "archiv i",
+ "if iz",
+ "ifi z",
+ "▁Pro test",
+ "▁Prote st",
+ "▁L IN",
+ "▁LI N",
+ "▁ LIN",
+ "unn able",
+ "▁cent uries",
+ "▁B ayer",
+ "▁Ba yer",
+ "▁Bay er",
+ "ці ю",
+ "ов ин",
+ "ови н",
+ "о вин",
+ "▁And rea",
+ "▁Andre a",
+ "se lection",
+ "select ion",
+ "sel ection",
+ "▁c alm",
+ "▁cal m",
+ "▁ca lm",
+ "▁mod ification",
+ "▁modific ation",
+ "▁short ly",
+ "in aire",
+ "ina ire",
+ "i naire",
+ "▁f usion",
+ "▁fus ion",
+ "▁feel ings",
+ "▁feeling s",
+ "▁fee lings",
+ "P K",
+ "▁Ro berto",
+ "▁Robert o",
+ "г не",
+ "Sh ared",
+ "▁mehr ere",
+ "▁N iem",
+ "▁Ni em",
+ "▁Nie m",
+ "om p",
+ "o mp",
+ "En v",
+ "▁Art icle",
+ "▁P ok",
+ "▁Po k",
+ "▁V ARCHAR",
+ "▁d il",
+ "▁di l",
+ "▁af ford",
+ "▁aff ord",
+ "▁con front",
+ "▁conf ront",
+ "ow anie",
+ "owa nie",
+ "owan ie",
+ "▁min istre",
+ "▁minist re",
+ "▁mini stre",
+ "ad esh",
+ "ade sh",
+ "ades h",
+ "▁P oly",
+ "▁Pol y",
+ "▁Po ly",
+ "▁Ра спо",
+ "▁Рас по",
+ "▁Gru ppe",
+ "▁H elen",
+ "▁He len",
+ "▁Hel en",
+ "▁c c",
+ "▁ cc",
+ "▁port rait",
+ "be w",
+ "b ew",
+ "▁b eta",
+ "▁be ta",
+ "▁bet a",
+ "▁ beta",
+ "▁W ir",
+ "▁Wi r",
+ "▁A udio",
+ "▁Aud io",
+ "▁ Audio",
+ "▁( \\<",
+ "▁(\\ <",
+ "rior ity",
+ "▁n it",
+ "▁ni t",
+ "▁ nit",
+ "▁пред стави",
+ "▁представ и",
+ "▁V ie",
+ "▁Vi e",
+ "▁w ür",
+ "▁ wür",
+ "▁H old",
+ "▁Hol d",
+ "▁Ho ld",
+ "▁ Hold",
+ "▁S ad",
+ "▁Sa d",
+ "▁To chter",
+ "▁o ltre",
+ "▁ol tre",
+ "▁ oltre",
+ "▁Act iv",
+ "▁ Activ",
+ "▁J ason",
+ "▁Ja son",
+ "▁Jas on",
+ "▁wie ku",
+ "▁reg ards",
+ "▁regard s",
+ "▁t aste",
+ "▁ta ste",
+ "agnost ic",
+ "ла ся",
+ "▁S elf",
+ "▁Sel f",
+ "▁ Self",
+ "▁a pr",
+ "▁ap r",
+ "▁De ep",
+ "sc op",
+ "s cop",
+ "Act iv",
+ "▁type def",
+ "▁typed ef",
+ "Content View",
+ "comp iler",
+ "compile r",
+ "▁R oth",
+ "▁Ro th",
+ "▁Rot h",
+ "x c",
+ "зи к",
+ "▁l argo",
+ "▁lar go",
+ "▁larg o",
+ "▁R ena",
+ "▁Re na",
+ "▁Ren a",
+ "he iten",
+ "heit en",
+ "▁platform s",
+ "▁plat forms",
+ "ul la",
+ "ull a",
+ "u lla",
+ "▁gl ance",
+ "▁mas cul",
+ "▁m ex",
+ "▁me x",
+ "▁J orge",
+ "▁fun cion",
+ "▁func ion",
+ "cho ose",
+ "▁re views",
+ "▁review s",
+ "▁Al ban",
+ "▁Alb an",
+ "▁G lo",
+ "▁Gl o",
+ "▁S pecies",
+ "▁Spe cies",
+ "▁Spec ies",
+ "▁F ame",
+ "▁Fa me",
+ "▁Fam e",
+ "▁R oll",
+ "▁Ro ll",
+ "▁Rol l",
+ "▁P uerto",
+ "▁\\ )",
+ "▁ \\)",
+ "ym nas",
+ "ymn as",
+ "en viron",
+ "▁i phone",
+ "▁Wrest ling",
+ "ał y",
+ "a ły",
+ "▁Ind iana",
+ "▁India na",
+ "▁Indian a",
+ "Rad io",
+ "V S",
+ "▁independ ence",
+ "та й",
+ "▁de code",
+ "▁dec ode",
+ "▁ decode",
+ "Wh ite",
+ "▁j ourn",
+ "▁jo urn",
+ "▁jou rn",
+ "▁jour n",
+ "ícul o",
+ "í culo",
+ "▁Bar b",
+ "▁Ba rb",
+ "▁Ev angel",
+ "▁An dy",
+ "▁And y",
+ "▁Wel come",
+ "▁De vice",
+ "▁Dev ice",
+ "▁ Device",
+ "ge f",
+ "g ef",
+ "▁remember ed",
+ "▁vari ations",
+ "▁variation s",
+ "▁Ad olf",
+ "it aine",
+ "ita ine",
+ "▁надмор ској",
+ "▁s team",
+ "▁ste am",
+ "▁concern s",
+ "▁` |",
+ "▁би о",
+ "тель ства",
+ "▁qu attro",
+ "ext end",
+ "▁trab ajo",
+ "▁trabaj o",
+ "en berg",
+ "▁scen arios",
+ "▁scenario s",
+ "ân t",
+ "â nt",
+ "▁kom mt",
+ "▁komm t",
+ "▁dom estic",
+ "▁B asketball",
+ "▁Co oper",
+ "so ck",
+ "s ock",
+ "дер жа",
+ "д ержа",
+ "={ \\",
+ "= {\\",
+ "▁in ici",
+ "▁P hill",
+ "▁Ph ill",
+ "▁Phil l",
+ "▁гене рал",
+ "archivi ato",
+ "ъ н",
+ "Ro b",
+ "R ob",
+ "▁t ong",
+ "▁to ng",
+ "▁ton g",
+ "▁character istics",
+ "▁characteristic s",
+ "▁a maz",
+ "▁am az",
+ "▁M ode",
+ "▁Mod e",
+ "▁Mo de",
+ "▁ Mode",
+ "▁inaug ur",
+ "we hr",
+ "ra nt",
+ "ran t",
+ "r ant",
+ "ion ali",
+ "ional i",
+ "iona li",
+ "▁M other",
+ "▁Mo ther",
+ "▁Mot her",
+ "M a",
+ "é qu",
+ "▁K elly",
+ "▁Kel ly",
+ "ci le",
+ "cil e",
+ "c ile",
+ "▁beste ht",
+ "▁estim ates",
+ "▁estimate s",
+ "rugu ay",
+ "▁A ns",
+ "▁An s",
+ "Ma d",
+ "M ad",
+ "▁на в",
+ "▁d onnées",
+ "▁donn ées",
+ "▁donné es",
+ "▁ données",
+ "▁trop ical",
+ "▁Sever al",
+ "el ter",
+ "elt er",
+ "elte r",
+ "▁P ho",
+ "▁Ph o",
+ "ke m",
+ "k em",
+ "▁Custom er",
+ "▁ Customer",
+ "▁скла ді",
+ "▁c ourses",
+ "▁course s",
+ "▁cours es",
+ "Pl atform",
+ "nav bar",
+ "le arning",
+ "lear ning",
+ "learn ing",
+ "▁Sw edish",
+ "▁z ast",
+ "▁za st",
+ "▁zas t",
+ "▁L ig",
+ "▁Li g",
+ "man agement",
+ "▁l od",
+ "▁lo d",
+ "uff le",
+ "Text ure",
+ "Te xture",
+ "ar ga",
+ "arg a",
+ "át um",
+ "▁D DR",
+ "ні ї",
+ "н ії",
+ "▁Soci été",
+ "▁dom ains",
+ "▁domain s",
+ "▁perm itted",
+ "▁permit ted",
+ "▁ex terne",
+ "▁ext erne",
+ "▁extern e",
+ "▁quel que",
+ "v t",
+ "ym an",
+ "y man",
+ "▁W ard",
+ "▁War d",
+ "▁Wa rd",
+ "▁ag li",
+ "▁ agli",
+ "▁and ra",
+ "▁an dra",
+ "▁ andra",
+ "S napshot",
+ "▁m å",
+ "▁ye ah",
+ "де на",
+ "ден а",
+ "д ена",
+ "ęp u",
+ "ę pu",
+ "ask ell",
+ "▁Ré publique",
+ "in ject",
+ "▁' ;",
+ "▁ ';",
+ "än n",
+ "ä nn",
+ "▁z elf",
+ "▁Ent wicklung",
+ "ár ia",
+ "á ria",
+ "on omy",
+ "ono my",
+ "onom y",
+ "▁s vil",
+ "▁sv il",
+ "ie se",
+ "ies e",
+ "i ese",
+ "▁con ser",
+ "▁cons er",
+ "▁conse r",
+ "▁n im",
+ "▁ni m",
+ "▁ nim",
+ "▁r ész",
+ "▁ré sz",
+ "▁rés z",
+ "▁И тали",
+ "▁part ici",
+ "▁partic i",
+ "▁parti ci",
+ "▁L ion",
+ "▁Li on",
+ "s r",
+ "al ways",
+ "▁Влади мир",
+ "че ские",
+ "[ ,",
+ "▁Def inition",
+ "▁ Definition",
+ "na nt",
+ "nan t",
+ "n ant",
+ "oe m",
+ "o em",
+ "Id s",
+ "I ds",
+ "▁в не",
+ "▁[ ...]",
+ "▁на прав",
+ "▁нап рав",
+ "▁G O",
+ "▁ GO",
+ "▁å rs",
+ "▁år s",
+ "▁ut án",
+ "▁out ros",
+ "▁reg ión",
+ "▁M ong",
+ "▁Mon g",
+ "▁Mo ng",
+ "▁fil me",
+ "▁film e",
+ "▁tri ple",
+ "▁trip le",
+ "▁sp ons",
+ "▁spo ns",
+ "De velop",
+ "▁out come",
+ "▁B ible",
+ "▁Bi ble",
+ "▁Bib le",
+ "▁и мени",
+ "▁име ни",
+ "▁имен и",
+ "Can vas",
+ "пу та",
+ "cur r",
+ "cu rr",
+ "c urr",
+ "ás ok",
+ "){ \\",
+ ") {\\",
+ "ning ar",
+ "` ;",
+ "▁Fl ash",
+ ": #",
+ "mu st",
+ "mus t",
+ "m ust",
+ "cp u",
+ "c pu",
+ "▁form ats",
+ "▁format s",
+ "▁forma ts",
+ "Ha r",
+ "H ar",
+ "▁epis odio",
+ "▁R osa",
+ "▁Ro sa",
+ "▁Ros a",
+ "▁d ès",
+ "em it",
+ "emi t",
+ "e mit",
+ "rit eria",
+ "rite ria",
+ "riter ia",
+ "An notation",
+ "Fl ag",
+ "F lag",
+ "g mail",
+ "▁N ormal",
+ "▁Nor mal",
+ "▁Norm al",
+ "▁ Normal",
+ "oll ary",
+ "ollar y",
+ "▁f oss",
+ "▁fo ss",
+ "▁fos s",
+ "▁con current",
+ "▁conc urrent",
+ "▁ concurrent",
+ "▁crash es",
+ "▁ви де",
+ "▁вид е",
+ "▁Min or",
+ "▁Mi nor",
+ "▁S it",
+ "▁Si t",
+ "▁S N",
+ "▁ SN",
+ "▁s car",
+ "▁sc ar",
+ "▁ scar",
+ "▁fe min",
+ "▁fem in",
+ "▁spec ification",
+ "▁specific ation",
+ "so ap",
+ "▁o perate",
+ "▁oper ate",
+ "▁opera te",
+ "▁principal mente",
+ "▁a ust",
+ "▁au st",
+ "▁aus t",
+ "ib ile",
+ "ibil e",
+ "it ime",
+ "iti me",
+ "i time",
+ "ле жа",
+ "if rame",
+ "i frame",
+ "▁concept s",
+ "▁conce pts",
+ "▁t ack",
+ "▁ta ck",
+ "▁v iss",
+ "▁vis s",
+ "▁vi ss",
+ "▁car bon",
+ "ter y",
+ "te ry",
+ "t ery",
+ "▁n aming",
+ "▁na ming",
+ "▁nam ing",
+ "▁Or ts",
+ "▁Ort s",
+ "id ente",
+ "ident e",
+ "iden te",
+ "▁Cap it",
+ "▁Ca pit",
+ "▁ex pr",
+ "▁exp r",
+ "▁ expr",
+ "▁насе љу",
+ "▁Select ed",
+ "▁Sel ected",
+ "▁Sele cted",
+ "▁ Selected",
+ "▁h inter",
+ "▁hint er",
+ "▁hin ter",
+ "▁i frame",
+ "▁if rame",
+ "▁ iframe",
+ "▁z b",
+ "index Path",
+ "col l",
+ "co ll",
+ "c oll",
+ "▁wr ześ",
+ "▁a cht",
+ "▁ac ht",
+ "▁ach t",
+ "▁ acht",
+ "▁grad ually",
+ "▁gradu ally",
+ "▁ч у",
+ "▁ чу",
+ "зе й",
+ "з ей",
+ "ha ft",
+ "h aft",
+ "▁t ran",
+ "▁tr an",
+ "▁tra n",
+ "▁la quelle",
+ "yt ics",
+ "ID E",
+ "I DE",
+ "▁py game",
+ "▁pyg ame",
+ "▁P ackage",
+ "▁Pack age",
+ "▁ Package",
+ "▁class Name",
+ "▁ className",
+ "B al",
+ "pe rl",
+ "per l",
+ "ти на",
+ "тин а",
+ "O cc",
+ "▁in frastr",
+ "▁Champion s",
+ "▁Champ ions",
+ "▁class ic",
+ "▁R aw",
+ "▁Ra w",
+ "▁ Raw",
+ "▁partial ly",
+ "▁parti ally",
+ "▁T ed",
+ "▁Te d",
+ "▁sto let",
+ "ra ined",
+ "rain ed",
+ "raine d",
+ "rai ned",
+ "r ained",
+ "WH ERE",
+ "W HERE",
+ "▁v all",
+ "▁val l",
+ "▁va ll",
+ "▁Jul ia",
+ "▁Ju lia",
+ "▁Juli a",
+ "za t",
+ "z at",
+ "▁surr ounded",
+ "SE E",
+ "S EE",
+ "▁walk ing",
+ "▁wal king",
+ "B ad",
+ "FO R",
+ "F OR",
+ "con tre",
+ "cont re",
+ "contr e",
+ "▁Pal est",
+ "▁Pale st",
+ "át ico",
+ "▁engine er",
+ "▁part ners",
+ "▁partner s",
+ "▁Je ws",
+ "▁Jew s",
+ "il ers",
+ "ile rs",
+ "iler s",
+ "i lers",
+ "▁c erem",
+ "▁ce rem",
+ "▁cer em",
+ "▁inter actions",
+ "▁interaction s",
+ "▁interact ions",
+ "ac u",
+ "a cu",
+ "st y",
+ "s ty",
+ "▁Prince ss",
+ "▁Prin cess",
+ "sh arp",
+ "sha rp",
+ "▁Sing les",
+ "▁Single s",
+ "▁ї х",
+ "ch ez",
+ "che z",
+ "c hez",
+ "Rece iver",
+ "Receive r",
+ "▁pat ients",
+ "▁patient s",
+ "string ify",
+ "▁compet ed",
+ "be y",
+ "b ey",
+ "$ ;",
+ "▁B d",
+ "had oop",
+ "h adoop",
+ "▁Div isión",
+ "öl d",
+ "ö ld",
+ "▁restrict ed",
+ "▁comm ander",
+ "▁command er",
+ "▁comma nder",
+ "▁High way",
+ "▁Č esk",
+ "▁m yth",
+ "▁my th",
+ "ча н",
+ "ч ан",
+ "ra ham",
+ "rah am",
+ "▁en qu",
+ "▁p og",
+ "▁po g",
+ "▁com una",
+ "▁comun a",
+ "▁print ln",
+ "▁ println",
+ "▁к руп",
+ "▁de pois",
+ "▁dep ois",
+ "▁se ats",
+ "▁sea ts",
+ "▁seat s",
+ "▁neigh b",
+ "ци она",
+ "цион а",
+ "ag ine",
+ "agi ne",
+ "agin e",
+ "▁cloth es",
+ "▁clo thes",
+ "▁P rior",
+ "▁Pr ior",
+ "▁Pri or",
+ "Br ain",
+ "Bra in",
+ "B rain",
+ "FF FF",
+ "': '",
+ "' :'",
+ "fe atures",
+ "feature s",
+ "▁file system",
+ "▁files ystem",
+ "▁sing les",
+ "▁single s",
+ "▁Mel bourne",
+ "▁dest ruction",
+ "▁destruct ion",
+ "▁destru ction",
+ "▁Ly on",
+ "▁In sel",
+ "▁Ins el",
+ "Na v",
+ "N av",
+ "▁Re place",
+ "▁Rep lace",
+ "▁ Replace",
+ "▁l é",
+ "▁ lé",
+ "Wh o",
+ "W ho",
+ "▁E stad",
+ "▁Est ad",
+ "▁Esta d",
+ "▁dim ensional",
+ "▁dimension al",
+ "▁ dimensional",
+ "▁ö ff",
+ "▁ öff",
+ "▁gr ands",
+ "▁gran ds",
+ "▁grand s",
+ "дж а",
+ "д жа",
+ "pl ane",
+ "plan e",
+ "pla ne",
+ "p lane",
+ "но сті",
+ "ност і",
+ "нос ті",
+ "▁Or igin",
+ "▁Ori gin",
+ "▁Orig in",
+ "▁ Origin",
+ "W I",
+ "än ner",
+ "änn er",
+ "▁C ry",
+ "▁Cr y",
+ "IT ION",
+ "▁fö dd",
+ "▁cult ura",
+ "▁R ank",
+ "▁Ran k",
+ "▁v uel",
+ "▁vue l",
+ "▁vu el",
+ "▁z ag",
+ "▁za g",
+ "▁Ma xim",
+ "▁Max im",
+ "он у",
+ "о ну",
+ "() ))",
+ "()) )",
+ "( )))",
+ "R aw",
+ "kir che",
+ "k irche",
+ "▁a demás",
+ "▁t ie",
+ "▁ti e",
+ "▁St yle",
+ "▁ Style",
+ "ско в",
+ "ск ов",
+ "с ков",
+ "ist ant",
+ "ista nt",
+ "istan t",
+ "ol ph",
+ "▁Z ür",
+ "▁In fo",
+ "▁Inf o",
+ "▁ Info",
+ "DO M",
+ "D OM",
+ "us c",
+ "u sc",
+ "na hm",
+ "nah m",
+ "▁Ф едера",
+ "▁F ot",
+ "▁Fo t",
+ "▁spec ifying",
+ "▁specify ing",
+ "▁tit olo",
+ "▁Bo ys",
+ "▁Boy s",
+ "ie ch",
+ "iec h",
+ "i ech",
+ "Pl ace",
+ "P lace",
+ "▁H off",
+ "▁Ho ff",
+ "▁Hof f",
+ "▁c ached",
+ "▁ca ched",
+ "▁cache d",
+ "ва ль",
+ "вал ь",
+ "в аль",
+ "is her",
+ "ish er",
+ "roll ing",
+ "rol ling",
+ "op ens",
+ "ope ns",
+ "open s",
+ "▁h r",
+ "▁ hr",
+ "-- ----",
+ "---- --",
+ "--- ---",
+ "----- -",
+ "- -----",
+ "▁mag gior",
+ "▁maggio r",
+ "▁trans actions",
+ "▁transaction s",
+ "▁c riminal",
+ "▁crim inal",
+ "▁re tre",
+ "▁ret re",
+ "▁retr e",
+ "▁Camp bell",
+ ")) :",
+ ") ):",
+ "▁n ed",
+ "▁ne d",
+ "▁ ned",
+ "Page r",
+ "Pa ger",
+ "P ager",
+ "▁H ero",
+ "▁He ro",
+ "▁Her o",
+ "(_ _",
+ "( __",
+ "▁un cle",
+ "▁re aches",
+ "▁reach es",
+ "ar to",
+ "art o",
+ "▁h ello",
+ "▁hel lo",
+ "▁hell o",
+ "▁ hello",
+ "Pre ferences",
+ "▁за тем",
+ "Name d",
+ "Na med",
+ "N amed",
+ "▁re aders",
+ "▁read ers",
+ "▁reader s",
+ "х і",
+ "ke rn",
+ "ker n",
+ "k ern",
+ "▁у по",
+ "ки н",
+ "к ин",
+ "▁l av",
+ "▁la v",
+ "▁ lav",
+ "▁n ob",
+ "▁no b",
+ "▁se cre",
+ "▁sec re",
+ "▁List View",
+ "▁ ListView",
+ "ва ния",
+ "▁May or",
+ "bo rough",
+ "bor ough",
+ "▁fil osof",
+ "не ння",
+ "нен ня",
+ "фр и",
+ "ф ри",
+ "▁p atr",
+ "▁pat r",
+ "▁pa tr",
+ "F M",
+ "▁a cid",
+ "▁ac id",
+ "▁Salv ador",
+ "▁a bb",
+ "▁ab b",
+ "▁ abb",
+ "▁G raham",
+ "▁Gra ham",
+ "pol icy",
+ "neg ative",
+ "ński ego",
+ "ń skiego",
+ "▁He imat",
+ "▁d azu",
+ "▁da zu",
+ "▁m ely",
+ "▁me ly",
+ "▁mel y",
+ "▁r ide",
+ "▁rid e",
+ "▁ri de",
+ "▁ ride",
+ "▁du ties",
+ "▁dut ies",
+ "ov ery",
+ "over y",
+ "ove ry",
+ "o very",
+ "▁Pro position",
+ "▁Prop osition",
+ "▁Pa olo",
+ "/ '",
+ "▁M au",
+ "▁Ma u",
+ "im enti",
+ "iment i",
+ "imen ti",
+ "Sa int",
+ "S aint",
+ "fa ther",
+ "f ather",
+ "▁equ ilib",
+ "ph ony",
+ "phon y",
+ "▁c las",
+ "▁cl as",
+ "▁cla s",
+ "▁от ли",
+ "▁Buffer ed",
+ "▁Buff ered",
+ "re k",
+ "r ek",
+ "▁m itt",
+ "▁mit t",
+ "▁mi tt",
+ "▁ mitt",
+ "▁H ur",
+ "▁Hu r",
+ "▁Har vard",
+ "▁demonstr ate",
+ "ua rio",
+ "u ario",
+ "▁do lor",
+ "▁dol or",
+ "▁reject ed",
+ "▁M üller",
+ "▁n ac",
+ "▁na c",
+ "▁B elle",
+ "▁Be lle",
+ "▁Bel le",
+ "▁Bell e",
+ "▁gather ed",
+ "n r",
+ "fr ika",
+ "fri ka",
+ "öl l",
+ "ö ll",
+ "▁chem ical",
+ "ni g",
+ "n ig",
+ "▁cal c",
+ "▁ calc",
+ "▁DE FAULT",
+ "▁ DEFAULT",
+ "▁philosoph y",
+ "▁Lar avel",
+ "▁al ignment",
+ "▁align ment",
+ "E V",
+ "e or",
+ "▁d zie",
+ "▁dz ie",
+ "▁ dzie",
+ "▁m est",
+ "▁me st",
+ "▁mes t",
+ "▁I o",
+ "CR E",
+ "C RE",
+ "з ви",
+ "▁M edic",
+ "▁Me dic",
+ "▁Med ic",
+ "▁Medi c",
+ "▁n ä",
+ "▁z ab",
+ "▁za b",
+ "▁S lov",
+ "▁Sl ov",
+ "▁Slo v",
+ "ut lich",
+ "▁am plit",
+ "▁ampl it",
+ "▁amp lit",
+ "▁Fran kreich",
+ "▁Frank reich",
+ "▁к іль",
+ "▁кі ль",
+ "IN D",
+ "I ND",
+ "exec ution",
+ "▁Kar riere",
+ "d ostęp",
+ "▁r éal",
+ "▁ré al",
+ "en go",
+ "eng o",
+ "▁se vere",
+ "▁sever e",
+ "зм а",
+ "з ма",
+ "▁тур ни",
+ "▁C arter",
+ "▁Car ter",
+ "▁Cart er",
+ "▁Rob inson",
+ "▁Robin son",
+ "getElement sBy",
+ "▁pro totype",
+ "▁proto type",
+ "▁ prototype",
+ "▁jap on",
+ "▁ja pon",
+ "führ ung",
+ "f ührung",
+ "▁con segu",
+ "▁cons egu",
+ "▁conse gu",
+ "▁st udi",
+ "▁stud i",
+ "▁l ire",
+ "▁li re",
+ "▁ lire",
+ "▁sch ließ",
+ "▁ schließ",
+ "▁B uff",
+ "▁Bu ff",
+ "▁red und",
+ "▁redu nd",
+ "▁e rn",
+ "▁er n",
+ "▁ ern",
+ "▁my ster",
+ "▁myst er",
+ "▁prop rio",
+ "▁propri o",
+ "ate ful",
+ "▁Par ent",
+ "▁Pa rent",
+ "▁ Parent",
+ "▁lad ies",
+ "ra ck",
+ "rac k",
+ "r ack",
+ "ти ка",
+ "тик а",
+ "en burg",
+ "▁каче стве",
+ "▁E F",
+ "▁ EF",
+ "▁st am",
+ "▁sta m",
+ "▁nue va",
+ "▁fil tered",
+ "▁filter ed",
+ "re ten",
+ "ret en",
+ "r eten",
+ "▁I an",
+ "▁Matt hew",
+ "▁Matth ew",
+ "ki h",
+ "k ih",
+ "▁ ő",
+ "▁ком пози",
+ "▁for ever",
+ "▁fore ver",
+ "oir es",
+ "oi res",
+ "oire s",
+ "o ires",
+ ":\\ \\",
+ ": \\\\",
+ "▁ét udes",
+ "▁s oup",
+ "▁so up",
+ "▁sou p",
+ "▁p leased",
+ "▁please d",
+ "▁ple ased",
+ ")} (",
+ ") }(",
+ "▁S top",
+ "▁St op",
+ "▁Sto p",
+ "▁ Stop",
+ "Set ter",
+ "S etter",
+ "▁He lp",
+ "▁Hel p",
+ "▁ Help",
+ "▁b ars",
+ "▁bar s",
+ "▁ba rs",
+ "▁ bars",
+ "▁ER R",
+ "▁ ERR",
+ "▁( ?",
+ "▁ (?",
+ "▁po etry",
+ "▁poet ry",
+ "▁U til",
+ "▁Ut il",
+ "▁ Util",
+ "A K",
+ "▁f ick",
+ "▁fi ck",
+ "▁fic k",
+ "▁I M",
+ "▁ IM",
+ "▁pro ud",
+ "▁pr oud",
+ "но си",
+ "нос и",
+ "▁m uerte",
+ "▁mu erte",
+ "▁Palmar ès",
+ "▁N as",
+ "▁Na s",
+ "щи х",
+ "щ их",
+ "▁qu er",
+ "▁que r",
+ "▁q uer",
+ "▁ quer",
+ "▁a penas",
+ "▁ap enas",
+ "][ '",
+ "] ['",
+ "▁Kon st",
+ "по н",
+ "п он",
+ "▁Sch iff",
+ "▁m p",
+ "▁ mp",
+ "▁б лаго",
+ "fr am",
+ "fra m",
+ "f ram",
+ "▁house hold",
+ "▁t ract",
+ "▁tr act",
+ "▁tra ct",
+ "▁trac t",
+ "enc oding",
+ "▁und ert",
+ "▁under t",
+ "▁ undert",
+ "▁A ug",
+ "▁Au g",
+ "ов ан",
+ "ова н",
+ "о ван",
+ "▁Ar ten",
+ "▁Art en",
+ "▁Arte n",
+ "▁inv oked",
+ "▁invoke d",
+ "▁d ynast",
+ "▁fle et",
+ "че ство",
+ "▁Mur ray",
+ "▁g ut",
+ "▁gu t",
+ "eli hood",
+ "▁S SH",
+ "▁SS H",
+ "от вет",
+ "▁person ally",
+ "▁personal ly",
+ "при я",
+ "п рия",
+ "▁fin anci",
+ "▁finan ci",
+ "▁Thom pson",
+ "al u",
+ "a lu",
+ "id entity",
+ "ident ity",
+ "▁G rab",
+ "▁Gr ab",
+ "▁Gra b",
+ "add le",
+ "É t",
+ "▁T ob",
+ "▁To b",
+ "▁ver lor",
+ "▁verl or",
+ "▁Saint e",
+ "▁Sa inte",
+ "▁Sain te",
+ "▁d op",
+ "▁do p",
+ "▁в ере",
+ "▁ве ре",
+ "▁вер е",
+ "__ _",
+ "_ __",
+ "▁prom otion",
+ "▁- =",
+ "▁от де",
+ "▁amb igu",
+ "▁ ambigu",
+ "OR DER",
+ "ORD ER",
+ "▁Comm unic",
+ "▁Commun ic",
+ "▁im ply",
+ "▁imp ly",
+ "▁impl y",
+ "on ed",
+ "one d",
+ "o ned",
+ "clud ing",
+ "▁coll ision",
+ "▁fragment s",
+ "▁frag ments",
+ "script ion",
+ "scri ption",
+ "s cription",
+ "▁' {",
+ "ля х",
+ "л ях",
+ "▁h ans",
+ "▁ha ns",
+ "▁han s",
+ "у с",
+ "wi re",
+ "w ire",
+ "name space",
+ "names pace",
+ "▁s word",
+ "▁sw ord",
+ "▁swo rd",
+ "ref resh",
+ "▁kw am",
+ "z s",
+ "comm ons",
+ "common s",
+ "▁c osa",
+ "▁co sa",
+ "▁cos a",
+ "▁reg ime",
+ "gr ep",
+ "gre p",
+ "g rep",
+ "▁di oc",
+ "▁dio c",
+ "▁Cont act",
+ "▁ Contact",
+ "▁est as",
+ "▁esta s",
+ "▁Ste wart",
+ "▁v iele",
+ "▁vi ele",
+ "▁vie le",
+ "▁viel e",
+ "то ва",
+ "тов а",
+ "т ова",
+ "▁R an",
+ "▁Ra n",
+ "an nes",
+ "ann es",
+ "anne s",
+ "id ay",
+ "ida y",
+ "i day",
+ "▁s napshot",
+ "▁snap shot",
+ "or row",
+ "orr ow",
+ "▁za č",
+ "▁участи е",
+ "▁prom ised",
+ "▁promise d",
+ "Ass embly",
+ "▁champion ship",
+ "▁champions hip",
+ "▁Def ine",
+ "▁e ren",
+ "▁er en",
+ "▁ere n",
+ "▁ eren",
+ "▁но во",
+ "▁н ово",
+ "▁нов о",
+ "▁ ново",
+ "▁th inks",
+ "▁think s",
+ "▁thin ks",
+ "Ag e",
+ "A ge",
+ "▁g ev",
+ "▁ge v",
+ "var char",
+ "v archar",
+ "iv ità",
+ "com pos",
+ "comp os",
+ "▁M utter",
+ "▁Mut ter",
+ "CO NT",
+ "CON T",
+ "arm ée",
+ "ag net",
+ "agn et",
+ "agne t",
+ "▁B row",
+ "▁Br ow",
+ "▁Bro w",
+ ". —",
+ "▁Tele vision",
+ "▁Д ля",
+ "▁v m",
+ "▁ vm",
+ "▁or din",
+ "▁ord in",
+ "▁ ordin",
+ "▁Миха й",
+ "▁apro xim",
+ "') ->",
+ "' )->",
+ "▁z oo",
+ "▁zo o",
+ "ip pi",
+ "ipp i",
+ "i ppi",
+ "▁s ino",
+ "▁si no",
+ "▁sin o",
+ "▁Qu ébec",
+ "ra ges",
+ "rag es",
+ "rage s",
+ "r ages",
+ "ä ck",
+ "ei ng",
+ "ein g",
+ "e ing",
+ "ar lo",
+ "pi os",
+ "pio s",
+ "p ios",
+ "▁C han",
+ "▁Ch an",
+ "▁Cha n",
+ "▁el li",
+ "▁ell i",
+ "▁ elli",
+ "▁in cons",
+ "▁inc ons",
+ "▁incon s",
+ "gest ellt",
+ "g estellt",
+ "pp ers",
+ "pper s",
+ "ppe rs",
+ "p pers",
+ "Je an",
+ "anst alt",
+ "▁D ance",
+ "▁Dan ce",
+ "▁to en",
+ "▁toe n",
+ "▁de cis",
+ "▁dec is",
+ "▁Ре зу",
+ "▁official ly",
+ "▁offici ally",
+ "ät ze",
+ "ätz e",
+ "▁до ро",
+ "▁e numer",
+ "▁en umer",
+ "▁enum er",
+ "▁trois ième",
+ "ty p",
+ "t yp",
+ "of fs",
+ "off s",
+ "бо ль",
+ "od n",
+ "o dn",
+ "▁Z ar",
+ "▁Za r",
+ "▁дру го",
+ "qu ia",
+ "qui a",
+ "▁Nicol as",
+ "▁Nic olas",
+ "▁Nicola s",
+ "пи су",
+ "пис у",
+ "▁m ob",
+ "▁mo b",
+ "pa ces",
+ "pace s",
+ "p aces",
+ "нь ого",
+ "ньо го",
+ "Al g",
+ "A lg",
+ "éro ï",
+ "Error s",
+ "Err ors",
+ "▁г ре",
+ "▁ гре",
+ "▁жен щи",
+ "in ch",
+ "inc h",
+ "▁Kore an",
+ "▁Korea n",
+ "▁A post",
+ "▁Ap ost",
+ "▁L iver",
+ "▁Li ver",
+ "▁Live r",
+ "▁Liv er",
+ "▁element ary",
+ "▁D I",
+ "▁ DI",
+ "ви си",
+ "▁so il",
+ "▁D LL",
+ "▁r isp",
+ "▁ris p",
+ "▁ri sp",
+ "▁Sh akespe",
+ "▁G aussian",
+ "▁K urt",
+ "▁Kur t",
+ "▁Ku rt",
+ "Ver tex",
+ "Vert ex",
+ "eb ol",
+ "e bol",
+ "organ isation",
+ "är en",
+ "äre n",
+ "ä ren",
+ "▁Y ES",
+ "▁ YES",
+ "C UR",
+ "▁нача ль",
+ "▁по стро",
+ "▁пос тро",
+ "▁Lu igi",
+ "▁c aching",
+ "prevent Default",
+ "am d",
+ "a md",
+ "▁V it",
+ "▁Vi t",
+ "sub st",
+ "su bst",
+ "▁ст рои",
+ "▁C ampion",
+ "▁Camp ion",
+ "ch r",
+ "c hr",
+ "фе ре",
+ "фер е",
+ "ф ере",
+ "▁С писок",
+ "N F",
+ "▁c ím",
+ "▁cí m",
+ "▁h é",
+ "▁ hé",
+ "re bbe",
+ "reb be",
+ "oc y",
+ "o cy",
+ "be low",
+ "bel ow",
+ "▁by lo",
+ "▁byl o",
+ "▁У и",
+ "▁\\ ({\\",
+ "▁\\( {\\",
+ "▁` :",
+ "▁ `:",
+ "gi ore",
+ "gio re",
+ "gior e",
+ "g iore",
+ "Sa n",
+ "S an",
+ "▁G ate",
+ "▁Ga te",
+ "▁в с",
+ "▁o limp",
+ "▁ol imp",
+ "▁Mat rix",
+ "▁ Matrix",
+ "▁he aring",
+ "▁hear ing",
+ "ri i",
+ "r ii",
+ "tf rac",
+ "t frac",
+ "▁allem and",
+ "▁V ue",
+ "л н",
+ "▁comp iling",
+ "▁E ns",
+ "▁En s",
+ "▁investig ation",
+ "▁A x",
+ "▁ch ars",
+ "▁char s",
+ "▁cha rs",
+ "▁target s",
+ "▁tar gets",
+ "▁l oud",
+ "▁lo ud",
+ "us ement",
+ "use ment",
+ "▁N ether",
+ "▁Ne ther",
+ "▁Net her",
+ "com merce",
+ "IG HT",
+ "oc oa",
+ "oco a",
+ "if ecycle",
+ "ife cycle",
+ "▁Le o",
+ "pr iv",
+ "p riv",
+ "▁go ods",
+ "▁good s",
+ "ad amente",
+ "ada mente",
+ "A ustral",
+ "▁re boot",
+ "▁reb oot",
+ "Ge st",
+ "G est",
+ "▁represent ations",
+ "▁representation s",
+ "ce u",
+ "c eu",
+ "▁do ctrine",
+ "ce rs",
+ "cer s",
+ "c ers",
+ "▁K rak",
+ "▁Kr ak",
+ "▁Kra k",
+ "▁adv oc",
+ "▁squad ra",
+ "▁arbeit ete",
+ "üs t",
+ "ü st",
+ "▁p ill",
+ "▁pi ll",
+ "▁pil l",
+ "An swer",
+ "▁к віт",
+ "▁W a",
+ "um ann",
+ "uman n",
+ "uma nn",
+ "u mann",
+ "▁D ynam",
+ "▁Dy nam",
+ "Fa mil",
+ "F amil",
+ "▁t ennis",
+ "▁ten nis",
+ "▁Engine ering",
+ "▁circ les",
+ "▁cir cles",
+ "▁circle s",
+ "▁Mary land",
+ "▁b esta",
+ "▁be sta",
+ "▁best a",
+ "▁bes ta",
+ "▁b ases",
+ "▁bas es",
+ "▁base s",
+ "▁znaj du",
+ "ктор а",
+ "кто ра",
+ "к тора",
+ "▁ar rest",
+ "▁arr est",
+ "ле р",
+ "л ер",
+ "▁G ia",
+ "▁Gi a",
+ "▁remark able",
+ "▁мо гу",
+ "▁Sup reme",
+ "▁` %",
+ "do r",
+ "d or",
+ "▁au jourd",
+ "▁w is",
+ "WID TH",
+ "▁mis ma",
+ "▁mism a",
+ "▁fl uid",
+ "▁flu id",
+ "▁pet ite",
+ "▁petit e",
+ "▁T ow",
+ "▁To w",
+ "Reg istry",
+ "em ed",
+ "eme d",
+ "e med",
+ "▁Wis consin",
+ "▁R acing",
+ "▁Ra cing",
+ "▁reg istration",
+ "▁registr ation",
+ "/ %",
+ "th ird",
+ "▁mon uments",
+ "▁monument s",
+ "че й",
+ "ч ей",
+ "▁j et",
+ "▁je t",
+ "▁ jet",
+ "▁Ur ban",
+ "ál va",
+ "▁mil ieu",
+ "▁poss ess",
+ "▁g erm",
+ "▁ge rm",
+ "▁ger m",
+ "dep endencies",
+ "▁enem ies",
+ "▁s amen",
+ "▁sa men",
+ "▁same n",
+ "▁sam en",
+ "▁W erner",
+ "▁Wer ner",
+ "▁h izo",
+ "▁hi zo",
+ "▁t d",
+ "▁ td",
+ "▁y esterday",
+ "▁А д",
+ "▁ha sn",
+ "▁has n",
+ "cel lation",
+ "cell ation",
+ "ov ání",
+ "ová ní",
+ "li ka",
+ "lik a",
+ "l ika",
+ "We ek",
+ "▁I ng",
+ "▁In g",
+ "▁E mail",
+ "▁Em ail",
+ "▁ Email",
+ "▁m ètres",
+ "▁O CLC",
+ "▁among st",
+ "▁spl end",
+ "fu r",
+ "f ur",
+ "ant ics",
+ "anti cs",
+ "antic s",
+ "▁X XX",
+ "▁XX X",
+ "▁ XXX",
+ "▁груп пы",
+ "la ch",
+ "lac h",
+ "l ach",
+ "▁c ousin",
+ "▁cou sin",
+ "▁in variant",
+ "▁invari ant",
+ "ђ у",
+ "▁Be ispiel",
+ "▁Bei spiel",
+ "▁hard er",
+ "▁har der",
+ "▁b ell",
+ "▁be ll",
+ "▁bel l",
+ "▁ bell",
+ "▁or ch",
+ "▁ orch",
+ "t b",
+ "Foot note",
+ "re gon",
+ "reg on",
+ "Mart in",
+ "▁in con",
+ "▁inc on",
+ "▁attack ed",
+ "_{ -",
+ "_ {-",
+ "▁T ras",
+ "▁Tr as",
+ "▁Tra s",
+ "par ty",
+ "part y",
+ "ite it",
+ "▁s aint",
+ "▁sa int",
+ "▁sain t",
+ "rás ok",
+ "r ások",
+ "▁contain ers",
+ "▁container s",
+ "M o",
+ "▁S n",
+ "quant ity",
+ "▁r as",
+ "▁ra s",
+ "▁ ras",
+ "▁C anal",
+ "▁Can al",
+ "▁Ca nal",
+ "cc ion",
+ "c cion",
+ "uv o",
+ "u vo",
+ "▁i dx",
+ "▁id x",
+ "▁ idx",
+ "type name",
+ "typen ame",
+ "typ ename",
+ "▁R ugby",
+ "▁Se ems",
+ "▁See ms",
+ "▁trans mit",
+ "▁transm it",
+ "▁Pr äsident",
+ "з не",
+ "▁B aker",
+ "▁Ba ker",
+ "▁Bak er",
+ "in th",
+ "int h",
+ "i nth",
+ "▁tö bb",
+ "ver ein",
+ "vere in",
+ "▁espe cie",
+ "▁espec ie",
+ ", (",
+ "▁t éc",
+ "▁té c",
+ "▁W ITH",
+ "▁u nos",
+ "▁un os",
+ "▁uno s",
+ "▁ unos",
+ "▁polit ics",
+ "create Element",
+ "▁st ats",
+ "▁stat s",
+ "▁sta ts",
+ "▁ stats",
+ "▁T ennessee",
+ "▁Bedeut ung",
+ "▁S creen",
+ "▁Sc reen",
+ "▁ Screen",
+ "▁Stra ße",
+ "an ze",
+ "anz e",
+ "▁part ly",
+ "man uel",
+ "ol ation",
+ "ola tion",
+ "o lation",
+ "hor izontal",
+ "érie ure",
+ "érieur e",
+ "am pio",
+ "amp io",
+ "▁ст рук",
+ "▁ струк",
+ "We ight",
+ "La nd",
+ "L and",
+ "po ly",
+ "pol y",
+ "p oly",
+ "▁D ak",
+ "▁Da k",
+ "▁Ass ume",
+ "\". $",
+ "\" .$",
+ "▁c asi",
+ "▁cas i",
+ "▁ca si",
+ "▁g ross",
+ "▁gr oss",
+ "▁gro ss",
+ "▁gros s",
+ "▁ent ertain",
+ "▁enter tain",
+ "▁déc ada",
+ "'. $",
+ "' .$",
+ "en cer",
+ "ence r",
+ "enc er",
+ "▁guarante ed",
+ "▁guarantee d",
+ "]$ .",
+ "] $.",
+ "ли ся",
+ "▁accept able",
+ "ra ise",
+ "rai se",
+ "rais e",
+ "ir us",
+ "i rus",
+ "we it",
+ "wei t",
+ "▁А на",
+ "▁Ан а",
+ "▁h ills",
+ "▁hill s",
+ "ip age",
+ "i page",
+ "BI T",
+ "B IT",
+ "▁nu cle",
+ "▁nuc le",
+ "▁ut ilis",
+ "▁util is",
+ "CA A",
+ "C AA",
+ "ène s",
+ "èn es",
+ "è nes",
+ "▁Schwe iz",
+ "▁A A",
+ "▁ AA",
+ "ning er",
+ "n inger",
+ "▁b ands",
+ "▁band s",
+ "▁ban ds",
+ "▁t ender",
+ "▁te nder",
+ "▁ten der",
+ "▁tend er",
+ "so m",
+ "s om",
+ "W arning",
+ "▁B ischof",
+ "▁A rc",
+ "▁Ar c",
+ "▁W oman",
+ "▁Wo man",
+ "▁trans mission",
+ "▁transm ission",
+ "ч ни",
+ "is tre",
+ "ist re",
+ "istr e",
+ "i stre",
+ "B Y",
+ "▁S I",
+ "▁ SI",
+ "▁П ар",
+ "▁Па р",
+ "▁} ).",
+ "▁}) .",
+ "▁ }).",
+ "▁present a",
+ "▁pres enta",
+ "▁Re né",
+ "▁Ren é",
+ "▁happ iness",
+ "▁P unk",
+ "col s",
+ "co ls",
+ "c ols",
+ "▁Des de",
+ "рё х",
+ "▁м она",
+ "▁мо на",
+ "▁scr atch",
+ "▁t cp",
+ "▁ tcp",
+ "ête s",
+ "êt es",
+ "ê tes",
+ "it ated",
+ "ita ted",
+ "itat ed",
+ "itate d",
+ "▁dif eren",
+ "▁difer en",
+ "ge h",
+ "g eh",
+ "na hmen",
+ "nah men",
+ "nahme n",
+ "nahm en",
+ "П е",
+ "ck i",
+ "c ki",
+ "▁Te atro",
+ "▁Re member",
+ "▁Rem ember",
+ "▁f right",
+ "▁fr ight",
+ "▁Y am",
+ "▁Ya m",
+ "west ern",
+ "le ted",
+ "let ed",
+ "lete d",
+ "▁в стре",
+ "▁вс тре",
+ "▁telep ülés",
+ "зи н",
+ "з ин",
+ "▁Qu ant",
+ "▁ Quant",
+ "▁su pre",
+ "▁sup re",
+ "áj a",
+ "á ja",
+ "ді я",
+ "д ія",
+ "▁car rera",
+ "▁carre ra",
+ "kre t",
+ "kr et",
+ "k ret",
+ "par a",
+ "pa ra",
+ "p ara",
+ "▁S UM",
+ "▁SU M",
+ "▁ SUM",
+ "▁p it",
+ "▁pi t",
+ "▁ pit",
+ "ź dz",
+ "é o",
+ "ре ння",
+ "рен ня",
+ "▁C hor",
+ "▁Ch or",
+ "▁Cho r",
+ "▁vo ix",
+ "▁exec utive",
+ "▁execut ive",
+ "▁all erdings",
+ "May be",
+ "▁д ень",
+ "▁де нь",
+ "▁f lying",
+ "▁fl ying",
+ "▁fly ing",
+ "▁par liament",
+ "жда н",
+ "ж дан",
+ "▁f ram",
+ "▁fr am",
+ "▁fra m",
+ "▁ fram",
+ "▁жов т",
+ "▁u gly",
+ "▁бу ду",
+ "ig ny",
+ "ign y",
+ "\\| _{",
+ "\\ |_{",
+ "▁b itter",
+ "▁bit ter",
+ "sc e",
+ "s ce",
+ "▁p ole",
+ "▁po le",
+ "▁pol e",
+ "▁ pole",
+ "Ver lag",
+ "▁total ité",
+ "▁found ation",
+ "j t",
+ "▁s lice",
+ "▁sl ice",
+ "▁sli ce",
+ "▁ slice",
+ "if ique",
+ "ifi que",
+ "▁integr ate",
+ "▁integra te",
+ "st rij",
+ "str ij",
+ "▁asym pt",
+ "▁е му",
+ "▁pert urb",
+ "▁F low",
+ "▁Fl ow",
+ "▁Flo w",
+ "▁ Flow",
+ "jb oss",
+ "RI G",
+ "R IG",
+ "▁A less",
+ "▁Al ess",
+ "▁Ale ss",
+ "XX X",
+ "X XX",
+ "▁s umm",
+ "▁su mm",
+ "▁sum m",
+ "sql ite",
+ "▁che er",
+ "pr ob",
+ "pro b",
+ "p rob",
+ "▁G PU",
+ "▁GP U",
+ "zi ł",
+ "z ił",
+ "(* )",
+ "( *)",
+ "▁in duct",
+ "▁ind uct",
+ "▁indu ct",
+ "RA Y",
+ "bl att",
+ "bla tt",
+ "qu esta",
+ "que sta",
+ "quest a",
+ "ques ta",
+ "or u",
+ "o ru",
+ "▁In side",
+ "▁Ins ide",
+ "▁Mc G",
+ "▁N ep",
+ "▁Ne p",
+ "м п",
+ "▁in ve",
+ "▁inv e",
+ "▁An imal",
+ "▁Anim al",
+ "▁s ob",
+ "▁so b",
+ "▁ sob",
+ "ít ott",
+ "loy ment",
+ "▁b und",
+ "▁bu nd",
+ "▁ bund",
+ "St ation",
+ "Stat ion",
+ "▁B EGIN",
+ "▁part iellement",
+ "ig g",
+ "i gg",
+ "est ore",
+ "esto re",
+ "e store",
+ "▁co inc",
+ "▁coin c",
+ "▁Som mer",
+ "▁m d",
+ "▁ md",
+ "▁loc ked",
+ "▁lock ed",
+ "▁ locked",
+ "math char",
+ "ar ma",
+ "arm a",
+ "pe nt",
+ "pen t",
+ "p ent",
+ "ar ium",
+ "ari um",
+ "a rium",
+ "▁e ars",
+ "▁ear s",
+ "▁ ears",
+ "▁S ongs",
+ "▁Son gs",
+ "▁Song s",
+ "▁similar ly",
+ "▁liter ally",
+ "▁literal ly",
+ "▁in ches",
+ "▁inc hes",
+ "▁af fection",
+ "▁aff ection",
+ "▁affect ion",
+ "l p",
+ "▁con cluded",
+ "▁conclude d",
+ "▁му ніципалі",
+ "▁па мя",
+ "est aur",
+ "esta ur",
+ "▁J osh",
+ "▁Jo sh",
+ "▁Jos h",
+ "▁F ritz",
+ "▁Fr itz",
+ "▁Fri tz",
+ "DB C",
+ "D BC",
+ "д ён",
+ "pos a",
+ "po sa",
+ "p osa",
+ "▁gold en",
+ "▁gol den",
+ "▁p c",
+ "▁ pc",
+ "▁com te",
+ "▁Z iel",
+ "▁Zie l",
+ "▁prés ente",
+ "▁présent e",
+ "mar ks",
+ "mark s",
+ "m arks",
+ "ig neur",
+ "ign eur",
+ "igne ur",
+ "▁D rive",
+ "▁Dr ive",
+ "▁neg lect",
+ "▁roz p",
+ "▁F ive",
+ "sp aces",
+ "space s",
+ "s paces",
+ "▁M edi",
+ "▁Me di",
+ "▁Med i",
+ "▁ex isted",
+ "▁exist ed",
+ "▁existe d",
+ "▁by ła",
+ "▁był a",
+ "дж и",
+ "д жи",
+ "▁fr ente",
+ "т ник",
+ "od d",
+ "o dd",
+ "▁answer ing",
+ "bi an",
+ "bia n",
+ "b ian",
+ "▁E ugen",
+ "▁Eu gen",
+ "▁Eug en",
+ "▁Public ations",
+ "▁Pub lications",
+ "▁D ia",
+ "▁Di a",
+ "l á",
+ "▁' _",
+ "▁ '_",
+ "▁rec uper",
+ "ом у",
+ "о му",
+ "▁App end",
+ "▁Ap pend",
+ "▁ Append",
+ "ob ar",
+ "oba r",
+ "o bar",
+ "▁employ ees",
+ "▁employee s",
+ "▁comp ens",
+ "eme tery",
+ "emet ery",
+ "▁э лект",
+ "MO N",
+ "M ON",
+ "ol in",
+ "oli n",
+ "o lin",
+ "▁histor ic",
+ "hi s",
+ "h is",
+ "ą d",
+ "n m",
+ "▁G oth",
+ "▁Go th",
+ "▁Got h",
+ "▁st ress",
+ "▁str ess",
+ "▁stre ss",
+ "▁parte cip",
+ "▁A w",
+ "▁s ar",
+ "▁sa r",
+ "▁h u",
+ "▁ hu",
+ "▁mat plotlib",
+ "▁M yst",
+ "▁My st",
+ "▁Mys t",
+ "() ;`",
+ "(); `",
+ "( );`",
+ "sch ein",
+ "sc hein",
+ "sche in",
+ "Long rightarrow",
+ "▁р я",
+ "▁ ря",
+ "▁Is ra",
+ "[ ^",
+ "no u",
+ "n ou",
+ "▁syn d",
+ "▁sy nd",
+ "work ing",
+ "wor king",
+ "▁N ation",
+ "▁Na tion",
+ "▁Nat ion",
+ "▁P ent",
+ "▁Pe nt",
+ "▁Pen t",
+ "▁k lass",
+ "▁kl ass",
+ "▁klas s",
+ "▁applic able",
+ "▁D iam",
+ "▁Di am",
+ "▁Dia m",
+ "▁bras ile",
+ "▁p ac",
+ "▁pa c",
+ "▁He ight",
+ "▁ Height",
+ "P ut",
+ "▁int ro",
+ "▁intr o",
+ "▁ intro",
+ "▁unus ual",
+ "na s",
+ "n as",
+ "▁Geb äude",
+ "▁be am",
+ "▁R ect",
+ "▁Re ct",
+ "▁Rec t",
+ "▁ Rect",
+ "▁Prim era",
+ "▁Prime ra",
+ "▁h aut",
+ "▁ha ut",
+ "▁t rait",
+ "▁tr ait",
+ "▁tra it",
+ "prü ft",
+ "in ación",
+ "ina ción",
+ "▁configuration s",
+ "▁configur ations",
+ "▁g ilt",
+ "▁gi lt",
+ "▁territ oire",
+ "he z",
+ "h ez",
+ "▁al te",
+ "▁alt e",
+ "rel ative",
+ "Ex cel",
+ "▁W right",
+ "G V",
+ "по ли",
+ "пол и",
+ "Qu ant",
+ "▁ga uge",
+ "▁gau ge",
+ "▁multi ply",
+ "▁multip ly",
+ "AS S",
+ "A SS",
+ "ствен но",
+ "ан у",
+ "а ну",
+ "▁j eden",
+ "▁je den",
+ "▁jed en",
+ "▁liter ary",
+ "▁D ro",
+ "▁Dr o",
+ "▁adv ise",
+ "▁advis e",
+ "it zen",
+ "itz en",
+ "▁dis ag",
+ "web site",
+ "▁д ія",
+ "▁ді я",
+ "▁ дія",
+ "▁ob server",
+ "▁obser ver",
+ "▁observ er",
+ "▁observe r",
+ "▁janu ár",
+ "v ě",
+ "ku p",
+ "k up",
+ "▁S es",
+ "▁Se s",
+ "▁woj ew",
+ "▁st ages",
+ "▁stage s",
+ "▁sta ges",
+ "▁stag es",
+ "▁вре мени",
+ "▁време ни",
+ "łu ż",
+ "но с",
+ "н ос",
+ "Down load",
+ "ip o",
+ "i po",
+ "▁g raf",
+ "▁gr af",
+ "▁gra f",
+ "▁ро бо",
+ "▁Nik ol",
+ "▁Ni kol",
+ "▁f ic",
+ "▁fi c",
+ "▁ fic",
+ "▁jo ining",
+ "▁join ing",
+ "▁divers os",
+ "▁LI KE",
+ "▁F itz",
+ "▁d imin",
+ "▁di min",
+ "▁dim in",
+ "▁dist rib",
+ "Sa m",
+ "S am",
+ "ko z",
+ "k oz",
+ "▁al phabet",
+ "▁alpha bet",
+ "os er",
+ "ose r",
+ "o ser",
+ "OU R",
+ "O UR",
+ "uk a",
+ "u ka",
+ "ка я",
+ "▁ste el",
+ "▁` --",
+ "▁`- -",
+ "▁t ener",
+ "▁te ner",
+ "▁ten er",
+ "mar ker",
+ "mark er",
+ "▁He aven",
+ "new command",
+ "▁prison ers",
+ "▁prisoner s",
+ "▁K night",
+ "▁Kn ight",
+ "▁present s",
+ "▁pres ents",
+ "▁qu esti",
+ "▁quest i",
+ "▁tr ains",
+ "▁tra ins",
+ "▁train s",
+ "op era",
+ "ope ra",
+ "oper a",
+ "▁Li near",
+ "▁Lin ear",
+ "▁Line ar",
+ "▁ Linear",
+ "▁M E",
+ "▁ ME",
+ "▁B uc",
+ "▁Bu c",
+ "Le g",
+ "L eg",
+ "▁ag ua",
+ "▁ agua",
+ "▁Gr iff",
+ "ol g",
+ "o lg",
+ "ds t",
+ "d st",
+ ". \r",
+ "▁person es",
+ "▁pers ones",
+ "▁persone s",
+ "Ma l",
+ "M al",
+ "бе ре",
+ "бер е",
+ "б ере",
+ "fol ge",
+ "folg e",
+ "▁ac ab",
+ "ct u",
+ "c tu",
+ "pt ic",
+ "▁N avigation",
+ "▁ Navigation",
+ "R uss",
+ "га ль",
+ "г аль",
+ "▁F ul",
+ "▁Fu l",
+ "▁ма є",
+ "чна я",
+ "ч ная",
+ "wn er",
+ "w ner",
+ "con tra",
+ "cont ra",
+ "contr a",
+ "▁jou eur",
+ "▁joue ur",
+ "▁J ess",
+ "▁Je ss",
+ "▁Jes s",
+ "▁re new",
+ "▁ren ew",
+ "▁l ap",
+ "▁la p",
+ "▁ lap",
+ "▁cas ting",
+ "▁cast ing",
+ "ga l",
+ "g al",
+ "▁tém atu",
+ "▁на зыва",
+ "за х",
+ "ч не",
+ ")- \\",
+ ") -\\",
+ "▁ча сто",
+ "▁час то",
+ "▁част о",
+ "}$ -",
+ "} $-",
+ "▁l icz",
+ "▁li cz",
+ "▁lic z",
+ "▁e mot",
+ "▁em ot",
+ "ha rm",
+ "har m",
+ "h arm",
+ "▁occasion ally",
+ "▁hor ror",
+ "▁ho rror",
+ "ea st",
+ "e ast",
+ "▁pr inter",
+ "▁print er",
+ "▁prin ter",
+ "ar an",
+ "ara n",
+ "a ran",
+ "▁Miss iss",
+ "fol low",
+ "f ollow",
+ "▁Bar ry",
+ "▁investig ate",
+ "go w",
+ "g ow",
+ "▁Amer icans",
+ "▁American s",
+ "▁America ns",
+ "S ince",
+ "▁від о",
+ "▁ві до",
+ "▁re un",
+ "os ci",
+ "osc i",
+ "o sci",
+ "▁Ch apter",
+ "▁Chap ter",
+ "▁b ay",
+ "▁ba y",
+ "▁ bay",
+ "ро ме",
+ "ром е",
+ "et he",
+ "eth e",
+ "e the",
+ "éd ie",
+ "é die",
+ "com ot",
+ "co mot",
+ "como t",
+ "▁miejs cowo",
+ "▁stud ierte",
+ "▁studi erte",
+ "ou vert",
+ "ouv ert",
+ "ouve rt",
+ "ouver t",
+ "▁к ур",
+ "▁ку р",
+ "▁ кур",
+ "▁DE SC",
+ "▁DES C",
+ "▁touch ed",
+ "▁tou ched",
+ "▁Jer ry",
+ "ue se",
+ "ues e",
+ "u ese",
+ "ли ще",
+ "auth entication",
+ "authentic ation",
+ "▁col le",
+ "▁co lle",
+ "▁coll e",
+ "he art",
+ "▁reg iment",
+ "▁regime nt",
+ "cri bed",
+ "cribe d",
+ "▁Бо ль",
+ "▁про ис",
+ "ce ae",
+ "▁mass es",
+ "▁sc rolling",
+ "▁scroll ing",
+ "us to",
+ "ust o",
+ "u sto",
+ "S W",
+ "ov at",
+ "ova t",
+ "o vat",
+ "▁gr âce",
+ "▁Архи в",
+ "▁Се вер",
+ "av ait",
+ "ava it",
+ "▁Marsh all",
+ "▁Mars hall",
+ "▁Hash Map",
+ "▁ HashMap",
+ "ac on",
+ "aco n",
+ "a con",
+ "ück en",
+ "ücke n",
+ "ü cken",
+ "[] )",
+ "[ ])",
+ "▁ev angel",
+ "et zung",
+ "etz ung",
+ "tt emberg",
+ "st ers",
+ "ste rs",
+ "ster s",
+ "s ters",
+ "T M",
+ "▁ли тера",
+ "qu ot",
+ "Pr ed",
+ "Pre d",
+ "P red",
+ "▁w erk",
+ "▁wer k",
+ "▁ werk",
+ "▁ha ber",
+ "▁hab er",
+ "▁habe r",
+ "la va",
+ "lav a",
+ "l ava",
+ "vo us",
+ "v ous",
+ "▁L ate",
+ "▁La te",
+ "▁Lat e",
+ "cy cle",
+ "cyc le",
+ "c ycle",
+ "ти рова",
+ "▁про ду",
+ "▁прод у",
+ "▁pop ulations",
+ "▁population s",
+ "▁popul ations",
+ "▁Y an",
+ "▁Ya n",
+ "Pre fix",
+ "P refix",
+ "actér istiques",
+ "+ '",
+ "() `](",
+ "()` ](",
+ "▁Л ь",
+ "фи ль",
+ "▁жи зни",
+ "ft p",
+ "f tp",
+ "▁все х",
+ "▁g dzie",
+ "▁v idea",
+ "▁vid ea",
+ "▁vide a",
+ "oa uth",
+ "o auth",
+ "▁p id",
+ "▁pi d",
+ "▁ pid",
+ "ů m",
+ "▁p esso",
+ "▁pes so",
+ "▁track ing",
+ "▁trac king",
+ "iz in",
+ "izi n",
+ "i zin",
+ "▁Mor ris",
+ "щи й",
+ "▁Provin z",
+ "▁M itte",
+ "▁Mit te",
+ "▁Mi tte",
+ "▁Mitt e",
+ "▁artific ial",
+ "bráz ky",
+ "▁до сти",
+ "▁rest ored",
+ "▁restore d",
+ "▁resto red",
+ "▁commun icate",
+ "▁communic ate",
+ "ag it",
+ "agi t",
+ "a git",
+ "Rec ogn",
+ "▁l on",
+ "▁lo n",
+ "▁ lon",
+ "▁за ня",
+ "▁зан я",
+ "▁Arg ument",
+ "▁ Argument",
+ "fl ush",
+ "flu sh",
+ "ма на",
+ "ман а",
+ "м ана",
+ "sec onds",
+ "second s",
+ "U C",
+ "▁R uth",
+ "▁Ru th",
+ "▁t ub",
+ "▁tu b",
+ "▁B ret",
+ "▁Br et",
+ "▁Bre t",
+ "▁P ere",
+ "▁Per e",
+ "▁Pe re",
+ "▁respons ibility",
+ "ńcz y",
+ "ń czy",
+ "▁environment s",
+ "▁environ ments",
+ "ke e",
+ "k ee",
+ "▁g root",
+ "▁gr oot",
+ "▁gro ot",
+ "▁pain ted",
+ "▁paint ed",
+ "▁Éd itions",
+ "cp y",
+ "c py",
+ "ár t",
+ "á rt",
+ "lich keit",
+ "ar da",
+ "ard a",
+ "B atch",
+ "▁Leop old",
+ "re ason",
+ "rea son",
+ "reas on",
+ "n oreferrer",
+ "se ns",
+ "sen s",
+ "s ens",
+ "▁ro cks",
+ "▁rock s",
+ "▁Hit ler",
+ "ла т",
+ "л ат",
+ "▁qu oted",
+ "▁quot ed",
+ "▁quote d",
+ "▁ко лле",
+ "▁у ров",
+ "ba g",
+ "b ag",
+ ".\" )",
+ ". \")",
+ "▁M L",
+ "▁ ML",
+ "▁kom t",
+ "▁ko mt",
+ "▁[ _",
+ "▁ [_",
+ "▁spect ral",
+ "ed o",
+ "e do",
+ "▁in sieme",
+ "▁suffer ing",
+ "▁suff ering",
+ "sl ider",
+ "slide r",
+ "▁Kenn edy",
+ "ol ate",
+ "ola te",
+ "o late",
+ "▁P atri",
+ "▁Pa tri",
+ "▁Pat ri",
+ "зи и",
+ "O H",
+ "▁те а",
+ "▁пра ва",
+ "▁прав а",
+ "ма х",
+ "re write",
+ "rew rite",
+ "r ewrite",
+ "▁Eins atz",
+ "ex ternal",
+ "ext ernal",
+ "hol ds",
+ "hold s",
+ "h olds",
+ "▁P laces",
+ "▁Pl aces",
+ "▁Pla ces",
+ "▁Place s",
+ "at ype",
+ "aty pe",
+ "a type",
+ "▁vul ner",
+ "▁abandon ed",
+ "Or igin",
+ "Ori gin",
+ "▁max imal",
+ "▁maxim al",
+ "AA AA",
+ "▁Base ball",
+ "▁C lose",
+ "▁Cl ose",
+ "▁Clo se",
+ "▁ Close",
+ "▁pa inter",
+ "▁pain ter",
+ "▁paint er",
+ "▁assign ing",
+ "N B",
+ "bl ast",
+ "bla st",
+ "b last",
+ "▁K ünstler",
+ ")] (",
+ ") ](",
+ "fa ch",
+ "fac h",
+ "f ach",
+ "▁Const antin",
+ "▁Constant in",
+ "ok es",
+ "oke s",
+ "o kes",
+ "▁no body",
+ "▁nob ody",
+ "▁subt ract",
+ "▁fos se",
+ "▁foss e",
+ "▁cert ific",
+ "▁m use",
+ "▁mus e",
+ "▁mu se",
+ "/) ,",
+ "/ ),",
+ "▁Pro fil",
+ "▁Prof il",
+ "▁pro xim",
+ "▁Jer usalem",
+ "▁simp licity",
+ "▁simpl icity",
+ "▁w sz",
+ "▁ws z",
+ "NUM BER",
+ "utt avia",
+ "U ITableView",
+ "ich ter",
+ "icht er",
+ "ichte r",
+ "i chter",
+ "жа н",
+ "ж ан",
+ "▁L av",
+ "▁La v",
+ "it chen",
+ "itch en",
+ "▁Ч ем",
+ "▁Че м",
+ "T u",
+ "▁ge om",
+ "▁zv uky",
+ "▁Sur vey",
+ "AN CE",
+ "▁enc rypted",
+ "▁encrypt ed",
+ "pr of",
+ "pro f",
+ "▁d are",
+ "▁da re",
+ "▁dar e",
+ "▁L oren",
+ "▁Lo ren",
+ "▁Lor en",
+ "т в",
+ "▁А лек",
+ "▁Ал ек",
+ "▁comput ers",
+ "▁computer s",
+ "▁compute rs",
+ "▁expect ation",
+ "▁substant ial",
+ "▁Д ми",
+ "▁` {",
+ "▁д ра",
+ "▁др а",
+ "▁ дра",
+ "ub ble",
+ "▁per forms",
+ "▁perform s",
+ "▁Kr ieg",
+ "▁Krie g",
+ "▁in coming",
+ "▁inc oming",
+ "▁Class ification",
+ "Web View",
+ "▁epis odes",
+ "▁episode s",
+ "ap per",
+ "app er",
+ "appe r",
+ "a pper",
+ "äu fig",
+ "▁gi ov",
+ "▁De part",
+ "▁Dep art",
+ "бо ра",
+ "бор а",
+ "ed ly",
+ "os pod",
+ "osp od",
+ "▁p tr",
+ "▁pt r",
+ "▁ ptr",
+ "▁d átum",
+ "▁est imation",
+ "▁estim ation",
+ "ic ole",
+ "ico le",
+ "icol e",
+ "i cole",
+ "▁- ---",
+ "▁-- --",
+ "▁--- -",
+ "▁ ----",
+ "▁prin ces",
+ "▁prince s",
+ "HE AD",
+ "▁diff usion",
+ "▁diffus ion",
+ "▁d rie",
+ "▁dr ie",
+ "▁dri e",
+ "▁A da",
+ "▁Ad a",
+ "ни це",
+ "ниц е",
+ "ng inx",
+ "n ginx",
+ "sh al",
+ "sha l",
+ "s hal",
+ "▁febru ari",
+ "▁T at",
+ "▁Ta t",
+ "lo oking",
+ "look ing",
+ "ku nd",
+ "k und",
+ "▁De an",
+ "m ongodb",
+ "вши х",
+ "в ших",
+ "▁A ur",
+ "▁Au r",
+ "▁Fl ora",
+ "▁Flor a",
+ "▁Flo ra",
+ "▁Stud ios",
+ "▁Studio s",
+ "ци је",
+ "ei l",
+ "e il",
+ "Inst all",
+ "▁f ranch",
+ "▁fr anch",
+ "▁fran ch",
+ "▁franc h",
+ "▁H MS",
+ "▁pract ices",
+ "▁practice s",
+ "le j",
+ "l ej",
+ "da le",
+ "dal e",
+ "d ale",
+ "▁po ste",
+ "▁pos te",
+ "▁post e",
+ "▁H els",
+ "▁He ls",
+ "▁Hel s",
+ "▁reli able",
+ "źdz ier",
+ "▁ver se",
+ "▁vers e",
+ "▁ verse",
+ "er meister",
+ "erme ister",
+ "▁qu it",
+ "▁qui t",
+ "▁q uit",
+ "▁ quit",
+ "ét ico",
+ "il is",
+ "ili s",
+ "i lis",
+ "ed or",
+ "edo r",
+ "e dor",
+ "▁Cult ural",
+ "▁Cultura l",
+ "дж е",
+ "д же",
+ "▁li ked",
+ "▁like d",
+ "▁lik ed",
+ "▁m ongodb",
+ "▁mongo db",
+ "▁ mongodb",
+ "▁Broad way",
+ "▁I R",
+ "▁ IR",
+ "es zt",
+ "esz t",
+ "ho v",
+ "h ov",
+ "▁m íst",
+ "▁mí st",
+ "re iche",
+ "reich e",
+ "rei che",
+ "▁k B",
+ "ст ом",
+ "сто м",
+ "с том",
+ "▁SQL ite",
+ "▁tor neo",
+ "\\ .",
+ "Or d",
+ "O rd",
+ "▁Admin istration",
+ "▁Administr ation",
+ "▁з да",
+ "▁ зда",
+ "▁H inter",
+ "▁Hin ter",
+ "▁V ia",
+ "▁Vi a",
+ "Dec imal",
+ "or ious",
+ "ori ous",
+ "orio us",
+ "▁nécess aire",
+ "w x",
+ "▁t ej",
+ "▁te j",
+ "▁t ema",
+ "▁te ma",
+ "▁tem a",
+ "O brázky",
+ "ри те",
+ "рит е",
+ "▁build s",
+ "▁l aten",
+ "▁la ten",
+ "▁lat en",
+ "▁late n",
+ "▁г г",
+ "Vis ibility",
+ "lä u",
+ "l äu",
+ "▁se chs",
+ "▁sec hs",
+ "▁лу ч",
+ "ce ra",
+ "cer a",
+ "c era",
+ "Co uld",
+ "C ould",
+ "▁tra ject",
+ "}} ^{",
+ "}}^ {",
+ "} }^{",
+ "▁Jap on",
+ "▁Ja pon",
+ "an other",
+ "ano ther",
+ "I K",
+ "▁belong ing",
+ "▁fac ilities",
+ "▁facil ities",
+ "▁D aily",
+ "▁Da ily",
+ "▁de ce",
+ "▁dec e",
+ "int ro",
+ "▁слу ча",
+ "Name space",
+ "Names pace",
+ "▁B ak",
+ "▁Ba k",
+ "loc ale",
+ "local e",
+ "U G",
+ "=$ {",
+ "= ${",
+ "▁comp añ",
+ "ją c",
+ "j ąc",
+ "▁ar ithmetic",
+ "fo rum",
+ "for um",
+ "f orum",
+ "▁por ta",
+ "▁port a",
+ "on k",
+ "▁g ender",
+ "▁ge nder",
+ "▁gen der",
+ "▁ gender",
+ "▁expect s",
+ "б ка",
+ "▁n ak",
+ "▁na k",
+ "▁ nak",
+ "▁G race",
+ "▁Gr ace",
+ "▁Gra ce",
+ "▁st ro",
+ "▁str o",
+ "ivid ual",
+ "▁C OM",
+ "▁CO M",
+ "▁ COM",
+ "▁F arm",
+ "▁Fa rm",
+ "▁Far m",
+ "▁c anton",
+ "▁can ton",
+ "▁cant on",
+ "то му",
+ "том у",
+ "т ому",
+ "java x",
+ "jav ax",
+ "се й",
+ "с ей",
+ "▁brief ly",
+ "Fa ce",
+ "F ace",
+ "rot ate",
+ "const ant",
+ "▁g allery",
+ "▁gall ery",
+ "ast ro",
+ "astr o",
+ "all ery",
+ "alle ry",
+ "aller y",
+ "▁D J",
+ "char ge",
+ "charg e",
+ "ходи ть",
+ "ходит ь",
+ "C ent",
+ "\\\" ,",
+ "\\ \",",
+ "▁d onna",
+ "▁don na",
+ "▁donn a",
+ "ar ca",
+ "arc a",
+ "la de",
+ "lad e",
+ "l ade",
+ "zi n",
+ "z in",
+ "▁N ed",
+ "▁Ne d",
+ "▁host ing",
+ "▁hos ting",
+ "id or",
+ "ido r",
+ "i dor",
+ "it ative",
+ "itat ive",
+ "ig s",
+ "i gs",
+ "▁п ря",
+ "▁пр я",
+ "▁t icket",
+ "▁tick et",
+ "▁ti cket",
+ "▁stud ying",
+ "▁study ing",
+ "▁des igner",
+ "▁design er",
+ "lap sed",
+ "lapse d",
+ "laps ed",
+ "l apsed",
+ "▁la at",
+ "▁d ix",
+ "▁di x",
+ "▁integr ated",
+ "▁integrate d",
+ "▁integra ted",
+ "▁in formed",
+ "▁inform ed",
+ "▁be have",
+ "▁beh ave",
+ "▁behav e",
+ "▁la bour",
+ "▁lab our",
+ "est ellt",
+ "cal endar",
+ "▁k illing",
+ "▁kil ling",
+ "▁kill ing",
+ "▁tw itter",
+ "▁ twitter",
+ "ia e",
+ "i ae",
+ "▁histor ique",
+ "DE FAULT",
+ "ia ła",
+ "iał a",
+ "i ała",
+ "▁theoret ical",
+ "▁un ders",
+ "▁und ers",
+ "▁under s",
+ "ля ет",
+ "at an",
+ "ata n",
+ "a tan",
+ "▁s urname",
+ "▁sur name",
+ "▁inter cept",
+ "гла сно",
+ "▁општи ни",
+ "▁t ired",
+ "▁tir ed",
+ "▁ti red",
+ "▁B eth",
+ "▁Be th",
+ "▁Bet h",
+ "▁ад министратив",
+ "L i",
+ "▁Т ур",
+ "▁Ту р",
+ "▁Sc anner",
+ "▁S tern",
+ "▁St ern",
+ "▁Ste rn",
+ "▁Ster n",
+ "▁вме сте",
+ "▁report ing",
+ "▁s ull",
+ "▁su ll",
+ "▁sul l",
+ "ци ей",
+ "ber ts",
+ "bert s",
+ "og onal",
+ "ogo nal",
+ "ő k",
+ "▁i psum",
+ "▁ip sum",
+ "▁seu lement",
+ "▁seul ement",
+ "▁seule ment",
+ "▁Se iten",
+ "▁Seit en",
+ "▁Seite n",
+ "word press",
+ "▁fe aturing",
+ "ist ischen",
+ "isti schen",
+ "istische n",
+ "ju b",
+ "j ub",
+ "▁é tr",
+ "▁ét r",
+ "▁ étr",
+ "▁t ea",
+ "▁te a",
+ "▁adapt ed",
+ "▁sc ales",
+ "▁scale s",
+ "▁scal es",
+ "▁n an",
+ "▁na n",
+ "▁ nan",
+ "get Value",
+ "▁Bl ues",
+ "▁Blue s",
+ "ac les",
+ "acle s",
+ "a cles",
+ "▁st ati",
+ "▁stat i",
+ "▁sta ti",
+ "▁ent itled",
+ "▁R alph",
+ "gra vity",
+ "▁entre pr",
+ "któ ber",
+ "li mat",
+ "lim at",
+ "l imat",
+ "li s",
+ "l is",
+ "De mo",
+ "D emo",
+ "re lation",
+ "rel ation",
+ "▁n ep",
+ "▁ne p",
+ "pro wad",
+ "it is",
+ "iti s",
+ "i tis",
+ "▁p up",
+ "▁pu p",
+ "neh mer",
+ "nehm er",
+ "▁disapp oint",
+ "▁et was",
+ "▁etwa s",
+ "an non",
+ "ann on",
+ "anno n",
+ "▁appro ved",
+ "▁cl ever",
+ "▁cle ver",
+ "Lo ading",
+ "Load ing",
+ "▁ver z",
+ "▁ve rz",
+ "res se",
+ "ress e",
+ "r esse",
+ "▁insp ir",
+ "▁sam pling",
+ "▁B ek",
+ "▁Be k",
+ "}) $.",
+ "})$ .",
+ "} )$.",
+ "▁г рома",
+ "▁spe cie",
+ "▁spec ie",
+ "▁re pub",
+ "▁rep ub",
+ "▁lo ader",
+ "▁load er",
+ "▁ loader",
+ "▁e rf",
+ "▁er f",
+ "▁should er",
+ "ra is",
+ "rai s",
+ "r ais",
+ "▁ма те",
+ "▁мат е",
+ "▁Mon th",
+ "▁Mont h",
+ "▁Mo nth",
+ "▁ Month",
+ "Sc ene",
+ "▁block ing",
+ "▁o cean",
+ "ge ben",
+ "geb en",
+ "g eben",
+ "▁Kil ometer",
+ "▁b edeut",
+ "▁M ix",
+ "▁Mi x",
+ "fm t",
+ "f mt",
+ "▁Nor weg",
+ "▁ID s",
+ "par allel",
+ "▁ant icip",
+ "▁anti cip",
+ "▁re vis",
+ "▁rev is",
+ "ха н",
+ "х ан",
+ "▁с вет",
+ "▁све т",
+ "CA SE",
+ "C ASE",
+ "▁f ührt",
+ "▁führ t",
+ "▁ führt",
+ "▁at omic",
+ "▁atom ic",
+ "▁ atomic",
+ "▁dark ness",
+ "▁Fußball spieler",
+ "▁Ж и",
+ "quis ition",
+ "▁S ieg",
+ "▁Sie g",
+ "▁Si eg",
+ "C irc",
+ "▁c ientí",
+ "ne lle",
+ "nel le",
+ "nell e",
+ "n elle",
+ "SH A",
+ "S HA",
+ "▁u rb",
+ "▁ur b",
+ "▁ urb",
+ "▁k si",
+ "leq slant",
+ "▁ф рон",
+ "▁de fect",
+ "▁def ect",
+ "▁defe ct",
+ "▁r á",
+ "▁ rá",
+ "▁strong er",
+ "▁p ł",
+ "▁commun ities",
+ "ни на",
+ "нин а",
+ "en as",
+ "ena s",
+ "e nas",
+ "ienne nt",
+ "ienn ent",
+ "▁safe ly",
+ "▁saf ely",
+ "▁т я",
+ "▁ тя",
+ "▁ben chmark",
+ "▁Bra un",
+ "method s",
+ "arg ument",
+ "vo s",
+ "v os",
+ "ob ox",
+ "o box",
+ "ро ви",
+ "ров и",
+ "р ови",
+ "▁recher che",
+ "m n",
+ "▁br ings",
+ "▁bring s",
+ "m achine",
+ "CE SS",
+ "CES S",
+ "host s",
+ "hos ts",
+ "▁N Y",
+ "Aut ow",
+ "Auto w",
+ "▁сов ремен",
+ "▁G ary",
+ "▁Gar y",
+ "▁Ga ry",
+ "▁s ensor",
+ "▁sens or",
+ "▁document ed",
+ "▁pr endre",
+ "▁prend re",
+ "▁pe er",
+ "en ix",
+ "eni x",
+ "ha i",
+ "h ai",
+ "ar be",
+ "цен т",
+ "ц ент",
+ "_ (",
+ "▁U RI",
+ "▁ URI",
+ "ев а",
+ "е ва",
+ "▁Re gie",
+ "▁Reg ie",
+ "▁Mon ument",
+ "▁onder werp",
+ "B ag",
+ "ti t",
+ "t it",
+ "▁st ir",
+ "▁n erv",
+ "▁ne rv",
+ "▁ner v",
+ "стор ія",
+ "▁s ov",
+ "▁so v",
+ "▁writ ers",
+ "▁write rs",
+ "▁writer s",
+ "▁sort s",
+ "▁sor ts",
+ "ab solute",
+ "▁difficult ies",
+ "▁par lament",
+ "▁parl ament",
+ "▁IE numerable",
+ "▁dis sol",
+ "▁diss ol",
+ "▁CH ECK",
+ "ar ina",
+ "ari na",
+ "arin a",
+ "in burgh",
+ "D M",
+ "▁e ind",
+ "▁ein d",
+ "▁bud get",
+ "▁cert ains",
+ "▁certain s",
+ "▁för sta",
+ "▁först a",
+ "an ja",
+ "a nja",
+ "▁го дов",
+ "▁год ов",
+ "▁т ек",
+ "▁те к",
+ "▁ тек",
+ "▁D uch",
+ "▁Du ch",
+ "▁Duc h",
+ "gu i",
+ "g ui",
+ "▁Te ams",
+ "▁Team s",
+ "▁мно ги",
+ "Mar ie",
+ "Ma rie",
+ "M arie",
+ "In tegr",
+ "Int egr",
+ "Thread Pool",
+ "ru st",
+ "rus t",
+ "r ust",
+ "í k",
+ "% \"",
+ "en f",
+ "sp l",
+ "s pl",
+ "▁be gun",
+ "▁beg un",
+ "lo u",
+ "l ou",
+ "▁Rewrite Rule",
+ "tu ple",
+ "ane ous",
+ "▁mar ine",
+ "▁mari ne",
+ "▁ marine",
+ "at tan",
+ "att an",
+ "atta n",
+ "ik al",
+ "ika l",
+ "i kal",
+ "▁gradu ated",
+ "il lé",
+ "ill é",
+ "▁про ве",
+ "▁пров е",
+ "▁пр ове",
+ "▁Р оз",
+ "▁Ро з",
+ "', \r",
+ "' ,\r",
+ "▁Pf arr",
+ "▁n ivel",
+ "▁ni vel",
+ "▁пра цю",
+ "mus ic",
+ "▁set Timeout",
+ "ER S",
+ "E RS",
+ "▁E rik",
+ "▁Er ik",
+ "pi t",
+ "p it",
+ "▁Х ро",
+ "▁p ił",
+ "▁pi ł",
+ "▁p eri",
+ "▁per i",
+ "▁pe ri",
+ "до к",
+ "д ок",
+ "us zt",
+ "usz t",
+ "▁B ear",
+ "▁Be ar",
+ "Class Name",
+ "▁Par lament",
+ "▁a ix",
+ "▁ai x",
+ "▁inv ited",
+ "▁P ATH",
+ "▁PA TH",
+ "▁ PATH",
+ "xt er",
+ "x ter",
+ "▁R ace",
+ "▁Ra ce",
+ "▁h echo",
+ "▁he cho",
+ "▁T ower",
+ "▁To wer",
+ "▁Tow er",
+ "▁u tf",
+ "▁ut f",
+ "▁ utf",
+ "act ly",
+ "▁бу де",
+ "▁ang les",
+ "▁angle s",
+ "▁ angles",
+ "ня я",
+ "ouv elles",
+ "ouve lles",
+ "ouvel les",
+ "ouvelle s",
+ "▁cl imate",
+ "▁cli mate",
+ "▁clim ate",
+ "▁sing ing",
+ "▁sin ging",
+ "▁navig ate",
+ ">' ;",
+ "> ';",
+ "ad ows",
+ "ado ws",
+ "adow s",
+ "▁l eta",
+ "▁le ta",
+ "▁let a",
+ "▁S itz",
+ "▁Si tz",
+ "▁Sit z",
+ "▁part itions",
+ "▁partition s",
+ "▁d ock",
+ "▁do ck",
+ "▁doc k",
+ "▁ż y",
+ "▁ ży",
+ "▁alloc ate",
+ "▁benef its",
+ "▁benefit s",
+ "▁n ieder",
+ "▁nie der",
+ "▁ni eder",
+ "xp ath",
+ "x path",
+ "me ck",
+ "äl le",
+ "äll e",
+ "ä lle",
+ "▁cou pling",
+ "▁coup ling",
+ "жи л",
+ "ж ил",
+ "For Key",
+ "ar gent",
+ "arg ent",
+ "cl ou",
+ "clo u",
+ "c lou",
+ "▁instru ments",
+ "▁instrument s",
+ "▁ent hus",
+ "▁m ég",
+ "▁mé g",
+ "▁Па в",
+ "▁R ach",
+ "▁Ra ch",
+ "-- ---",
+ "---- -",
+ "--- --",
+ "- ----",
+ "▁API s",
+ "▁AP Is",
+ "▁V ier",
+ "▁Vi er",
+ "▁Vie r",
+ "C md",
+ "it ore",
+ "ito re",
+ "itor e",
+ "▁C uba",
+ "▁Cu ba",
+ "▁Cub a",
+ "▁dátum mal",
+ "▁embed ding",
+ "std io",
+ "▁Gil bert",
+ "▁ge prüft",
+ "▁st ating",
+ "▁stat ing",
+ "▁sta ting",
+ "▁stati ng",
+ "▁trigger s",
+ "▁trig gers",
+ "+ =",
+ "▁spé cial",
+ "▁del iber",
+ "▁deli ber",
+ "ми н",
+ "м ин",
+ "Pro du",
+ "Pr odu",
+ "P rodu",
+ "▁St ati",
+ "▁Stat i",
+ "▁Sta ti",
+ "▁z us",
+ "▁zu s",
+ "kt ionen",
+ "ktion en",
+ "Dispatch er",
+ "id al",
+ "ida l",
+ "i dal",
+ "▁L P",
+ "▁ LP",
+ "op tera",
+ "opt era",
+ "opter a",
+ "▁e star",
+ "▁est ar",
+ "▁es tar",
+ "▁esta r",
+ "▁зна чи",
+ "с мо",
+ "ous es",
+ "ouse s",
+ "o uses",
+ "eng ono",
+ "engo no",
+ "▁W PF",
+ "pub lish",
+ "▁t eor",
+ "▁te or",
+ "el if",
+ "eli f",
+ "▁e rg",
+ "▁er g",
+ "▁ erg",
+ "▁separ ation",
+ "Pa n",
+ "P an",
+ "▁Or chestra",
+ "Pe ter",
+ "P eter",
+ "bound s",
+ "b ounds",
+ "▁Shakespe are",
+ "▁cant ante",
+ "▁d emi",
+ "▁de mi",
+ "▁dem i",
+ "▁Pop ular",
+ "ф р",
+ "ar ring",
+ "arr ing",
+ "ци н",
+ "ц ин",
+ "▁И с",
+ "vo n",
+ "v on",
+ "▁subst itution",
+ "▁lí nea",
+ "\\}$ .",
+ "\\} $.",
+ "\\ }$.",
+ "com o",
+ "co mo",
+ "c omo",
+ "▁ва ж",
+ "wa gen",
+ "w agen",
+ "▁rare ly",
+ "▁period s",
+ "▁peri ods",
+ "gl ob",
+ "g lob",
+ "▁F rid",
+ "▁Fr id",
+ "▁Fri d",
+ "▁T err",
+ "▁Te rr",
+ "▁Ter r",
+ "▁Re lease",
+ "▁ Release",
+ "Brain z",
+ "▁гра ф",
+ "▁ граф",
+ "DI S",
+ "D IS",
+ "compat ible",
+ "▁po č",
+ "LI N",
+ "L IN",
+ "▁K ällor",
+ "▁A rizona",
+ "pp y",
+ "p py",
+ "Se q",
+ "S eq",
+ "▁A in",
+ "▁T ourn",
+ "▁To urn",
+ "▁Tour n",
+ "br ow",
+ "bro w",
+ "b row",
+ "▁K ör",
+ "▁Kö r",
+ "▁a sh",
+ "▁as h",
+ "▁ ash",
+ "ogene ous",
+ "▁dia lect",
+ "▁насе ља",
+ "mysql i",
+ "mysq li",
+ "цо в",
+ "ц ов",
+ "▁f lor",
+ "▁fl or",
+ "▁flo r",
+ "▁ф ло",
+ "IA B",
+ "I AB",
+ "▁With in",
+ "▁Wit hin",
+ "^ (",
+ "▁b ois",
+ "▁bo is",
+ "▁t ank",
+ "▁tan k",
+ "▁aff ili",
+ "▁h ijo",
+ "▁hij o",
+ "▁hi jo",
+ "▁K ate",
+ "▁Kat e",
+ "▁Ka te",
+ "▁Ver l",
+ "▁Ve rl",
+ "▁M iami",
+ "▁Mi ami",
+ "▁type script",
+ "▁types cript",
+ "њ у",
+ "▁V ern",
+ "▁Ver n",
+ "▁Ve rn",
+ "▁ви со",
+ "ie mann",
+ "iem ann",
+ "i emann",
+ "▁co verage",
+ "▁cover age",
+ "br ie",
+ "b rie",
+ "▁Start ing",
+ "▁Star ting",
+ "num py",
+ "▁J enkins",
+ "▁Jen kins",
+ "▁k ét",
+ "▁ké t",
+ "▁g rup",
+ "▁gr up",
+ "▁gru p",
+ "▁S cient",
+ "▁Sc ient",
+ "▁Sci ent",
+ "▁inter rupt",
+ "▁b lob",
+ "▁bl ob",
+ "▁blo b",
+ "▁ blob",
+ "ug el",
+ "uge l",
+ "u gel",
+ "▁Or th",
+ "▁Ort h",
+ "ab ama",
+ "aba ma",
+ "▁B apt",
+ "▁Ba pt",
+ "ow nik",
+ "own ik",
+ "▁бы ть",
+ "▁Jul ius",
+ "▁Ju lius",
+ "▁Juli us",
+ "▁П рез",
+ "▁Пре з",
+ "▁subst itute",
+ "support ed",
+ "supp orted",
+ "ch y",
+ "c hy",
+ "egy zetek",
+ "▁Per formance",
+ "▁Perform ance",
+ "less ly",
+ "Con structor",
+ "▁ext ending",
+ "▁extend ing",
+ "▁Mus lim",
+ "Over flow",
+ "▁J enn",
+ "▁Je nn",
+ "▁Jen n",
+ "▁produ z",
+ "▁prod uz",
+ "мі ї",
+ "м ії",
+ "▁país es",
+ "▁e ux",
+ "▁eu x",
+ "▁f ate",
+ "▁fa te",
+ "▁fat e",
+ "ol oge",
+ "olog e",
+ "olo ge",
+ "у к",
+ "▁wo bei",
+ "▁wob ei",
+ "▁S achsen",
+ "▁Sach sen",
+ "▁са йт",
+ "▁сай т",
+ "Mod els",
+ "Model s",
+ "Mode ls",
+ "▁F ast",
+ "▁Fa st",
+ "bes ondere",
+ "▁F R",
+ "▁ FR",
+ "▁a con",
+ "▁ac on",
+ "▁ acon",
+ "▁Den kmal",
+ "▁an ch",
+ "▁anc h",
+ "▁ anch",
+ "▁públic o",
+ "▁T as",
+ "▁Ta s",
+ "▁c and",
+ "▁can d",
+ "▁ca nd",
+ "▁pa ździer",
+ "▁М он",
+ "▁Мо н",
+ "▁vers us",
+ "ru t",
+ "r ut",
+ "G T",
+ "▁insert ing",
+ "▁inser ting",
+ "▁can ad",
+ "▁ca nad",
+ "є м",
+ "▁M etro",
+ "▁Met ro",
+ "▁Herz og",
+ "Ign ore",
+ "▁decre ase",
+ "▁п ун",
+ "▁пу н",
+ "▁F ischer",
+ "▁M all",
+ "▁Ma ll",
+ "▁Mal l",
+ "▁n örd",
+ "io stream",
+ "i ostream",
+ "▁Lux emb",
+ "pay load",
+ "▁Ze itung",
+ "▁Zeit ung",
+ "▁mod ifying",
+ "▁modify ing",
+ "▁C her",
+ "▁Ch er",
+ "▁Che r",
+ "▁Lu ci",
+ "▁Luc i",
+ "n x",
+ "▁lo ose",
+ "▁top ics",
+ "▁topic s",
+ "▁var ied",
+ "▁vari ed",
+ "▁va ried",
+ "▁p g",
+ "▁ pg",
+ "aj es",
+ "aje s",
+ "a jes",
+ "um m",
+ "u mm",
+ "View s",
+ "▁B eau",
+ "▁Be au",
+ "MA P",
+ "M AP",
+ "ip eline",
+ "ipe line",
+ "▁Inter est",
+ "ar ith",
+ "ari th",
+ "▁seg ún",
+ "▁Geme ins",
+ "▁Att ribute",
+ "▁ Attribute",
+ "comm unity",
+ "▁цент р",
+ "▁kil ometer",
+ "▁kilomet er",
+ "▁kilom eter",
+ "▁é conom",
+ "▁éc onom",
+ "lar ation",
+ "▁к ъ",
+ "▁car riage",
+ "▁carri age",
+ "▁L ane",
+ "▁La ne",
+ "▁Lan e",
+ "▁не об",
+ "ku r",
+ "k ur",
+ "▁A F",
+ "▁ AF",
+ "IN TER",
+ "INT ER",
+ ")) $",
+ ") )$",
+ "▁be ide",
+ "▁bei de",
+ "dest ination",
+ "▁font s",
+ "▁fon ts",
+ "▁ fonts",
+ "append Child",
+ "▁M AR",
+ "▁MA R",
+ "▁g ay",
+ "▁ga y",
+ "mi l",
+ "m il",
+ "le sh",
+ "les h",
+ "l esh",
+ "è t",
+ "▁W ang",
+ "▁Wa ng",
+ "▁Y ears",
+ "▁Year s",
+ "▁Ye ars",
+ "▁S ymbol",
+ "▁Sym bol",
+ "▁ Symbol",
+ "Li ve",
+ "L ive",
+ "qu ency",
+ "▁U sers",
+ "▁Use rs",
+ "▁User s",
+ "▁Us ers",
+ "▁ Users",
+ "▁Un icode",
+ "▁S au",
+ "▁Sa u",
+ "▁t ons",
+ "▁to ns",
+ "▁ton s",
+ "▁ tons",
+ "▁Н і",
+ "▁кра ї",
+ "▁ краї",
+ "AX I",
+ "▁P ick",
+ "▁Pi ck",
+ "▁Pic k",
+ "A I",
+ "▁h ath",
+ "▁ha th",
+ "▁hat h",
+ "▁a inda",
+ "▁ain da",
+ "▁p apa",
+ "▁pa pa",
+ "▁pap a",
+ "▁C enso",
+ "▁B ald",
+ "▁Ba ld",
+ "▁Bal d",
+ "▁Насе ље",
+ "▁sim ulations",
+ "▁simulation s",
+ "▁j aren",
+ "▁ja ren",
+ "▁jar en",
+ "▁inher ited",
+ "▁inherit ed",
+ "▁то й",
+ "▁ той",
+ "▁fe els",
+ "▁feel s",
+ "▁fee ls",
+ "ress ion",
+ "r ession",
+ "▁o któber",
+ "bi d",
+ "b id",
+ "ás i",
+ "á si",
+ "▁m uss",
+ "▁mus s",
+ "▁mu ss",
+ "vent ory",
+ "▁me ist",
+ "▁b ore",
+ "▁bo re",
+ "▁bor e",
+ "▁sl ider",
+ "▁slide r",
+ "▁sli der",
+ "▁ slider",
+ "де ли",
+ "\\ ;",
+ "▁extra cted",
+ "▁extract ed",
+ "ку р",
+ "к ур",
+ "Ed ge",
+ "▁per f",
+ "▁pe rf",
+ "▁Brig ade",
+ "▁гра д",
+ "▁ град",
+ "ie nie",
+ "ien ie",
+ "i enie",
+ "▁N orden",
+ "▁Nor den",
+ "▁Nord en",
+ "▁c ancer",
+ "▁can cer",
+ "\" /",
+ "C ur",
+ "▁С ере",
+ "▁Се ре",
+ "▁Сер е",
+ "▁liqu id",
+ "str ucture",
+ "struct ure",
+ "▁cho osing",
+ "▁Per l",
+ "▁Pe rl",
+ "Si de",
+ "S ide",
+ "ü s",
+ "ри тор",
+ "рито р",
+ "рит ор",
+ "▁k ost",
+ "▁ko st",
+ "▁pa ckets",
+ "▁pack ets",
+ "▁packet s",
+ "▁кото рого",
+ "▁Com un",
+ "▁Co mun",
+ "▁f ingers",
+ "▁fin gers",
+ "▁finger s",
+ "ográ fica",
+ "> :",
+ "▁champion nat",
+ "▁bl ieb",
+ "▁S itu",
+ "▁Si tu",
+ "▁Sit u",
+ "▁su ic",
+ "an dis",
+ "and is",
+ "Fr e",
+ "F re",
+ "▁C onc",
+ "▁Con c",
+ "▁Co nc",
+ "▁re public",
+ "▁rep ublic",
+ "▁repub lic",
+ "▁ar med",
+ "▁arm ed",
+ "▁h ell",
+ "▁he ll",
+ "▁hel l",
+ "▁ hell",
+ "▁h ög",
+ "▁hö g",
+ "rag ma",
+ "▁en se",
+ "▁ens e",
+ "▁ ense",
+ "▁ac res",
+ "▁В ід",
+ "▁Ві д",
+ "▁Re form",
+ "▁Ref orm",
+ "Main Activity",
+ "ke eper",
+ "keep er",
+ "kee per",
+ "er b",
+ "e rb",
+ "▁mon aster",
+ "sub subsection",
+ "▁Ди в",
+ "▁cre ature",
+ "▁indic ating",
+ "▁url s",
+ "▁ur ls",
+ "▁ urls",
+ "▁k ein",
+ "▁ke in",
+ "об раз",
+ "обра з",
+ "pi ck",
+ "pic k",
+ "p ick",
+ "▁Ad mir",
+ "▁old est",
+ "▁ol dest",
+ "▁m uz",
+ "▁mu z",
+ "▁contra diction",
+ "▁contrad iction",
+ "▁contradict ion",
+ "▁prob abil",
+ "illi ant",
+ "▁p av",
+ "▁pa v",
+ "▁pa pel",
+ "▁pap el",
+ "ub s",
+ "u bs",
+ "▁ж ена",
+ "▁же на",
+ "▁жен а",
+ "▁ жена",
+ "AM L",
+ "A ML",
+ "▁re cip",
+ "▁rec ip",
+ "▁reci p",
+ "▁C OL",
+ "▁CO L",
+ "▁ COL",
+ "ad ded",
+ "add ed",
+ "▁cl ue",
+ "▁Uk raine",
+ "▁Ukrain e",
+ "▁jel ent",
+ "че нь",
+ "чен ь",
+ "ч ень",
+ "▁mathemat ics",
+ "Ac cept",
+ "▁с от",
+ "▁со т",
+ "▁се вер",
+ "▁isol ated",
+ "▁по я",
+ "w ür",
+ "Ro uter",
+ "Route r",
+ "Rout er",
+ "R outer",
+ "CA T",
+ "C AT",
+ "rg b",
+ "r gb",
+ "▁L ov",
+ "▁Lo v",
+ "mu table",
+ "mut able",
+ "m utable",
+ "▁W es",
+ "▁We s",
+ "▁Ital ien",
+ "Dra g",
+ "Dr ag",
+ "D rag",
+ "en ium",
+ "eni um",
+ "at ting",
+ "att ing",
+ "atti ng",
+ "tc p",
+ "t cp",
+ "▁erfolg te",
+ "▁Be it",
+ "▁Bei t",
+ "га то",
+ "▁System s",
+ "▁Syst ems",
+ "▁re serve",
+ "▁res erve",
+ "er ee",
+ "ere e",
+ "e ree",
+ "▁Па ри",
+ "▁Пар и",
+ "▁з али",
+ "▁за ли",
+ "▁re nt",
+ "▁r ent",
+ "▁ren t",
+ "▁ rent",
+ "▁s unt",
+ "▁su nt",
+ "▁sun t",
+ "▁G irls",
+ "▁Girl s",
+ "▁Gir ls",
+ "▁Er nest",
+ "▁Ern est",
+ "▁f its",
+ "▁fi ts",
+ "▁fit s",
+ "▁op pon",
+ "▁opp on",
+ "▁живе ло",
+ "▁av aient",
+ "▁Flor ence",
+ "▁Flo rence",
+ "▁чи сле",
+ "▁eng ines",
+ "▁engine s",
+ "D ynamic",
+ "▁stycz nia",
+ "▁b ias",
+ "▁bi as",
+ "▁Ex change",
+ "ди й",
+ "▁histor iques",
+ "▁historique s",
+ "▁H ä",
+ "ho d",
+ "h od",
+ "▁w ł",
+ "sch ap",
+ "▁l ac",
+ "▁la c",
+ "▁ lac",
+ "▁F oi",
+ "▁Fo i",
+ "▁d well",
+ "▁dw ell",
+ "▁Unter nehmen",
+ "UR N",
+ "▁kilomet res",
+ "▁Одна ко",
+ "к ли",
+ "▁S ri",
+ "▁Sr i",
+ "Gr oups",
+ "Group s",
+ "min d",
+ "mi nd",
+ "m ind",
+ "os lov",
+ "fer n",
+ "fe rn",
+ "f ern",
+ "eg u",
+ "e gu",
+ "abel ed",
+ "abe led",
+ "F iddle",
+ "▁Cent ury",
+ "/ -",
+ "▁J egyzetek",
+ "He n",
+ "H en",
+ "ens emble",
+ "▁G ut",
+ "▁Gu t",
+ "_{ {\\",
+ "_ {{\\",
+ "▁ran king",
+ "▁rank ing",
+ "+ $",
+ "ал а",
+ "а ла",
+ "▁# {",
+ "▁ #{",
+ "im ientos",
+ "imiento s",
+ "ach im",
+ "ac him",
+ "achi m",
+ "ri des",
+ "ride s",
+ "rid es",
+ "r ides",
+ "▁K laus",
+ "▁Kl aus",
+ "▁int end",
+ "▁inte nd",
+ "▁inten d",
+ "▁Kent ucky",
+ "ci pe",
+ "cip e",
+ "c ipe",
+ "▁D ienst",
+ "▁Di enst",
+ "▁situ ated",
+ "▁pó ź",
+ "▁s crit",
+ "▁sc rit",
+ "▁scr it",
+ "▁scri t",
+ "cl ip",
+ "cli p",
+ "c lip",
+ "не т",
+ "н ет",
+ "ta bles",
+ "table s",
+ "tab les",
+ "t ables",
+ "▁N ied",
+ "▁Ni ed",
+ "▁Nie d",
+ "▁Mc K",
+ "▁pow st",
+ "▁kun nen",
+ "▁Ev ans",
+ "▁Eva ns",
+ "ж ды",
+ "ва ть",
+ "ват ь",
+ "uch ar",
+ "uc har",
+ "ucha r",
+ "u char",
+ "▁res idents",
+ "▁resid ents",
+ "▁resident s",
+ "ia k",
+ "i ak",
+ "▁Re sol",
+ "▁Res ol",
+ "▁ Resol",
+ "▁ve ces",
+ "▁vec es",
+ "▁satisf ying",
+ "▁satisfy ing",
+ "IN F",
+ "I NF",
+ "▁с ин",
+ "▁си н",
+ "▁cross ing",
+ "ib en",
+ "ibe n",
+ "i ben",
+ "▁ши ро",
+ "pt o",
+ "p to",
+ "IL L",
+ "I LL",
+ "▁ро ль",
+ "▁a ktiv",
+ "▁akt iv",
+ "▁обра щения",
+ "Wik ispecies",
+ "▁Hö he",
+ "cr o",
+ "c ro",
+ "══ ══",
+ "al tra",
+ "alt ra",
+ "▁FI LE",
+ "▁ FILE",
+ "▁u ps",
+ "▁up s",
+ "▁ ups",
+ "▁al location",
+ "▁all ocation",
+ "▁alloc ation",
+ "▁allo cation",
+ "Mich ael",
+ "▁acknow led",
+ "Lin ux",
+ "▁met ros",
+ "▁ metros",
+ "tt e",
+ "t te",
+ "af en",
+ "a fen",
+ "▁x code",
+ "▁тра ди",
+ "spe cies",
+ "spec ies",
+ "s pecies",
+ "▁inj ury",
+ "▁са мы",
+ "▁сам ы",
+ "▁l attice",
+ "M aterial",
+ "and enburg",
+ "anden burg",
+ "▁huvud staden",
+ "st ory",
+ "sto ry",
+ "stor y",
+ "▁var ying",
+ "▁vary ing",
+ "▁kö vet",
+ "▁Росси йской",
+ "ir se",
+ "irs e",
+ "▁d rum",
+ "▁dr um",
+ "▁dru m",
+ "Pr essed",
+ "Press ed",
+ "Pres sed",
+ "La r",
+ "L ar",
+ "▁A gu",
+ "▁Ag u",
+ "▁w eil",
+ "▁we il",
+ "▁comm ence",
+ "▁Seg ún",
+ "Gest ure",
+ "Sh ape",
+ "S hape",
+ "▁V ors",
+ "▁Vo rs",
+ "▁Vor s",
+ "▁succ ès",
+ "▁correct ed",
+ "▁corre cted",
+ "▁corr ected",
+ "K ar",
+ "▁cr uel",
+ "▁cru el",
+ "▁polit ico",
+ "▁Schrift steller",
+ "▁ris ult",
+ "et u",
+ "e tu",
+ "arch iv",
+ "▁gén ero",
+ "▁gé nero",
+ "▁L ü",
+ "▁tri umph",
+ "OR S",
+ "O RS",
+ "L u",
+ "▁person nel",
+ "▁personn el",
+ "▁personne l",
+ "▁H ills",
+ "▁Hill s",
+ "▁Hil ls",
+ "as set",
+ "ass et",
+ "asse t",
+ "do min",
+ "dom in",
+ "d omin",
+ "Rece ive",
+ "▁O ak",
+ "▁K no",
+ "▁Kn o",
+ "▁The ory",
+ "ir ie",
+ "iri e",
+ "i rie",
+ "ow an",
+ "owa n",
+ "o wan",
+ "▁est ava",
+ "▁esta va",
+ "▁exec utes",
+ "▁execute s",
+ "▁execut es",
+ "й т",
+ "óp ez",
+ "ó pez",
+ "по ло",
+ "пол о",
+ "п оло",
+ "ét ica",
+ "▁назва ние",
+ "▁conver ges",
+ "▁not re",
+ "▁no tre",
+ "▁pop ulated",
+ "▁popula ted",
+ "▁popul ated",
+ "▁populate d",
+ "▁mov ements",
+ "▁move ments",
+ "▁movement s",
+ "▁statist ical",
+ "▁Zwe iten",
+ "qu in",
+ "qui n",
+ "▁import antes",
+ "▁important es",
+ "▁importante s",
+ "▁k lein",
+ "▁kle in",
+ "▁kl ein",
+ "▁Seg unda",
+ "schließ end",
+ "Fail ure",
+ "na r",
+ "n ar",
+ "da g",
+ "d ag",
+ "▁ru olo",
+ "▁f iction",
+ "▁fi ction",
+ "▁fic tion",
+ "▁fict ion",
+ "▁исполь зу",
+ "▁cr isis",
+ "▁Get ting",
+ ", %",
+ "▁ар мии",
+ "▁cam pus",
+ "▁camp us",
+ "▁fo oter",
+ "▁foot er",
+ "▁foo ter",
+ "▁ footer",
+ "▁d ías",
+ "▁día s",
+ "▁dí as",
+ "ба н",
+ "б ан",
+ "▁liber ty",
+ "▁libert y",
+ "▁g h",
+ "▁ gh",
+ "▁cham ber",
+ "▁district s",
+ "▁exc ited",
+ "▁can ción",
+ "ter o",
+ "te ro",
+ "t ero",
+ "▁Work ing",
+ "▁Wor king",
+ "▁czę ści",
+ "ль ный",
+ "▁f orum",
+ "▁for um",
+ "▁fo rum",
+ "▁ forum",
+ "▁E he",
+ "▁ка та",
+ "▁ ката",
+ "it ations",
+ "itation s",
+ "itat ions",
+ "To ols",
+ "Tool s",
+ "T ools",
+ "ach iv",
+ "achi v",
+ "▁c res",
+ "▁cre s",
+ "▁cr es",
+ "as to",
+ "ast o",
+ "a sto",
+ "▁re ver",
+ "▁r ever",
+ "▁rev er",
+ "▁reve r",
+ "▁n azionale",
+ "▁naz ionale",
+ "▁do ors",
+ "▁door s",
+ "▁N ancy",
+ "▁Nan cy",
+ "▁is lands",
+ "▁island s",
+ "Im p",
+ "I mp",
+ "▁Ch air",
+ "▁Cha ir",
+ "▁v orm",
+ "▁vo rm",
+ "▁vor m",
+ "se in",
+ "s ein",
+ "▁до ку",
+ "er set",
+ "ers et",
+ "▁tät ig",
+ "▁K rit",
+ "▁Kr it",
+ "▁п я",
+ "▁cons ervation",
+ "▁conserv ation",
+ "▁Part ido",
+ "▁Parti do",
+ "min ipage",
+ "Valid ator",
+ "▁rec overy",
+ "▁recover y",
+ "▁NA SA",
+ "▁NAS A",
+ "▁br east",
+ "▁bre ast",
+ "il ty",
+ "ilt y",
+ "an aly",
+ "ana ly",
+ "anal y",
+ "el ines",
+ "eli nes",
+ "eline s",
+ "elin es",
+ "e lines",
+ "▁S aturday",
+ "em ark",
+ "e mark",
+ "ce j",
+ "c ej",
+ "Ze ro",
+ "Z ero",
+ "▁Tur ner",
+ "▁Turn er",
+ "sec ure",
+ "Ex ists",
+ "▁R ick",
+ "▁Ric k",
+ "▁Ri ck",
+ "ev alu",
+ "eval u",
+ "e valu",
+ "ct rl",
+ "ctr l",
+ "c trl",
+ "▁com pression",
+ "▁comp ression",
+ "▁compr ession",
+ "▁compress ion",
+ "▁C URL",
+ "text color",
+ ")\\ ,",
+ ") \\,",
+ "long rightarrow",
+ "▁Fern seh",
+ "▁ Fernseh",
+ "ic ha",
+ "ich a",
+ "i cha",
+ "▁l oi",
+ "▁lo i",
+ "▁О те",
+ "▁От е",
+ "▁c ave",
+ "▁ca ve",
+ "▁cav e",
+ "▁do zen",
+ "▁expla ining",
+ "▁expl aining",
+ "▁explain ing",
+ "▁in nov",
+ "▁inn ov",
+ "▁Nich olas",
+ "▁dia meter",
+ "▁diam eter",
+ "▁M arian",
+ "▁Mar ian",
+ "▁Ma rian",
+ "▁Maria n",
+ "▁Mari an",
+ "▁f ires",
+ "▁fire s",
+ "▁fi res",
+ "▁fir es",
+ "▁art ifact",
+ "▁ artifact",
+ "▁Par ker",
+ "▁Park er",
+ "▁B und",
+ "▁Bu nd",
+ "▁Bun d",
+ "▁v erte",
+ "▁ver te",
+ "▁vert e",
+ "▁ verte",
+ "▁tal ent",
+ "▁tale nt",
+ "▁Lu cas",
+ "▁Luc as",
+ "re verse",
+ "▁folg enden",
+ "▁S ah",
+ "▁Sa h",
+ "ject ions",
+ "je ctions",
+ "jection s",
+ "▁inve ce",
+ "▁cost itu",
+ "▁s sl",
+ "▁ss l",
+ "▁ ssl",
+ "}} ^",
+ "} }^",
+ "▁viol ent",
+ "▁s pos",
+ "▁sp os",
+ "▁spo s",
+ "Ro ut",
+ "R out",
+ "jd k",
+ "j dk",
+ "▁за ме",
+ "▁f urent",
+ "▁fur ent",
+ "▁fu rent",
+ "an dal",
+ "and al",
+ "anda l",
+ "H om",
+ "▁Sen ior",
+ "▁p ounds",
+ "▁Disc ogs",
+ "▁з е",
+ "▁ зе",
+ "'} [",
+ "' }[",
+ "▁Napole on",
+ "ordin ates",
+ "ordinate s",
+ "à n",
+ "▁k urz",
+ "▁kur z",
+ "▁v ere",
+ "▁ver e",
+ "▁ve re",
+ "▁ vere",
+ "▁re use",
+ "▁Г ен",
+ "▁Ге н",
+ "▁S yst",
+ "▁Sy st",
+ "▁disapp eared",
+ "▁disappear ed",
+ "▁W atch",
+ "▁Wat ch",
+ "▁ Watch",
+ "bibli othek",
+ "▁кор пу",
+ "▁C s",
+ "▁} `",
+ "▁ }`",
+ "▁r ör",
+ "▁де ла",
+ "▁ дела",
+ "V B",
+ "▁calcul us",
+ "▁calc ulus",
+ "ро да",
+ "род а",
+ "▁jud gment",
+ "at ile",
+ "ati le",
+ "▁long ue",
+ "▁lon gue",
+ "▁H us",
+ "▁Hu s",
+ "J ac",
+ "}} )",
+ "} })",
+ "RI PT",
+ "IAB ot",
+ "▁ap ós",
+ "▁a ston",
+ "▁as ton",
+ "▁ast on",
+ "Web achiv",
+ "▁URL s",
+ "▁co at",
+ "▁э коно",
+ "▁l ear",
+ "▁le ar",
+ "▁ lear",
+ "ext ensions",
+ "extension s",
+ "▁Class ic",
+ "T I",
+ "▁T age",
+ "▁Tag e",
+ "▁Ta ge",
+ "▁l á",
+ "▁ lá",
+ "▁s emb",
+ "▁se mb",
+ "▁sem b",
+ "▁développ ement",
+ "IS TS",
+ "IST S",
+ "▁sol ves",
+ "▁solve s",
+ ",\\ ,",
+ ", \\,",
+ "▁чем пі",
+ "ord inary",
+ "ordin ary",
+ "▁B av",
+ "▁Ba v",
+ "▁much os",
+ "▁mu chos",
+ "▁mucho s",
+ "S elf",
+ "▁Ма й",
+ "▁D iet",
+ "▁Die t",
+ "▁Di et",
+ "▁necess ity",
+ "ві д",
+ "в ід",
+ "▁m ano",
+ "▁ma no",
+ "▁man o",
+ "▁С р",
+ "▁car re",
+ "▁Cam era",
+ "▁Camer a",
+ "▁ Camera",
+ "▁N arod",
+ "▁Na rod",
+ "▁Nar od",
+ "▁Ph one",
+ "▁Pho ne",
+ "▁ Phone",
+ "▁pol ym",
+ "▁poly m",
+ "im ore",
+ "imo re",
+ "i more",
+ "is Empty",
+ "▁Hou ston",
+ "▁Re ce",
+ "▁Rec e",
+ "▁ Rece",
+ "▁present ation",
+ "▁pres entation",
+ "▁presenta tion",
+ "▁ presentation",
+ "ни ципа",
+ "ници па",
+ "▁D b",
+ "▁ Db",
+ "▁conf ident",
+ "▁} {",
+ "▁ }{",
+ "▁bul let",
+ "▁ bullet",
+ "▁{ },",
+ "▁{} ,",
+ "AN GE",
+ "ANG E",
+ "▁No tre",
+ "▁Not re",
+ "ch in",
+ "chi n",
+ "c hin",
+ "▁Dr agon",
+ "▁Drag on",
+ "▁Dra gon",
+ "er ca",
+ "erc a",
+ "ia li",
+ "ial i",
+ "i ali",
+ "▁as set",
+ "▁ass et",
+ "▁asse t",
+ "▁ asset",
+ "▁mu ito",
+ "▁muit o",
+ "▁deep ly",
+ "▁rest riction",
+ "▁restrict ion",
+ "▁com merce",
+ "▁commer ce",
+ "▁ commerce",
+ "▁B omb",
+ "▁Bo mb",
+ "▁Bom b",
+ "c aught",
+ "q q",
+ "▁A rag",
+ "▁Ar ag",
+ "▁Ara g",
+ "▁не мец",
+ "▁Anal ysis",
+ "▁člán ku",
+ "▁b aby",
+ "▁ba by",
+ "▁e chter",
+ "▁о дного",
+ "▁од ного",
+ "▁одно го",
+ "же на",
+ "жен а",
+ "ж ена",
+ "▁white space",
+ "▁whites pace",
+ "ç u",
+ "LI ST",
+ "L IST",
+ "fr ique",
+ "fri que",
+ "f rique",
+ "▁v arias",
+ "▁var ias",
+ "▁vari as",
+ "▁va rias",
+ "▁W it",
+ "▁Wi t",
+ "▁Lic encia",
+ "Ex it",
+ "▁sie rp",
+ "▁sier p",
+ "▁ass emb",
+ "▁asse mb",
+ "▁split ting",
+ "▁spl itting",
+ "▁pa lace",
+ "▁pal ace",
+ "▁b locked",
+ "▁block ed",
+ "▁bound aries",
+ "▁iter ations",
+ "▁iteration s",
+ "▁Rot ten",
+ "▁Ver kehr",
+ "▁we er",
+ "Test s",
+ "T ests",
+ "if ting",
+ "ift ing",
+ "▁reg ul",
+ "▁pers ist",
+ "▁Sol ution",
+ "p b",
+ "▁col lapse",
+ "▁ collapse",
+ "▁arr ested",
+ "▁arrest ed",
+ "▁pred icate",
+ "▁Z one",
+ "▁Zo ne",
+ "▁ Zone",
+ "▁in gen",
+ "▁ing en",
+ "▁ ingen",
+ "zá lez",
+ "▁b anks",
+ "▁bank s",
+ "▁ban ks",
+ "pl ant",
+ "plan t",
+ "pla nt",
+ "p lant",
+ "▁N ella",
+ "▁Ne lla",
+ "▁Nel la",
+ "▁Nell a",
+ "▁б ан",
+ "▁ба н",
+ "▁ бан",
+ "▁S now",
+ "▁Sn ow",
+ "▁Kre uz",
+ "í cio",
+ "▁en ters",
+ "▁ent ers",
+ "▁enter s",
+ "▁ex pose",
+ "▁exp ose",
+ "▁expos e",
+ "č i",
+ "ши е",
+ "Qu al",
+ "Q ual",
+ "▁lands cape",
+ "▁пода цима",
+ "ma i",
+ "m ai",
+ "st ag",
+ "sta g",
+ "s tag",
+ "ова ний",
+ "DE F",
+ "D EF",
+ "[] {",
+ "[ ]{",
+ "▁derni ère",
+ "ic ut",
+ "i cut",
+ "▁X ml",
+ "▁ Xml",
+ "▁sub group",
+ "▁Pol sce",
+ "▁W arning",
+ "▁War ning",
+ "▁ Warning",
+ "▁veh icles",
+ "▁vehicle s",
+ "io t",
+ "i ot",
+ "▁d ll",
+ "▁ dll",
+ "ro nt",
+ "ron t",
+ "r ont",
+ "▁Lou ise",
+ "▁Louis e",
+ "▁a ra",
+ "▁ar a",
+ "▁ ara",
+ "▁S cala",
+ "▁Sc ala",
+ "▁canon ical",
+ "▁pl acing",
+ "▁pla cing",
+ "ER Y",
+ "E RY",
+ "▁J ag",
+ "▁Ja g",
+ "▁v irus",
+ "▁vi rus",
+ "▁vir us",
+ "em u",
+ "e mu",
+ "▁} );\r",
+ "▁}); \r",
+ "▁}) ;\r",
+ "▁м м",
+ "▁Tr ying",
+ "▁Try ing",
+ "▁Lex ikon",
+ "ab ord",
+ "abor d",
+ "▁exped ition",
+ "▁demand ed",
+ "▁demande d",
+ "Z yg",
+ "le in",
+ "lei n",
+ "l ein",
+ "▁verw endet",
+ "ри на",
+ "рин а",
+ "wo l",
+ "w ol",
+ "▁p ivot",
+ "▁одна ко",
+ "▁propri et",
+ "▁a wards",
+ "▁aw ards",
+ "▁award s",
+ "to ut",
+ "t out",
+ "▁as sim",
+ "▁ass im",
+ "▁St orm",
+ "▁Sto rm",
+ "Li mit",
+ "L imit",
+ "el in",
+ "eli n",
+ "e lin",
+ "we alth",
+ "ue z",
+ "u ez",
+ "▁rap present",
+ "▁rappres ent",
+ "▁re sta",
+ "▁r esta",
+ "▁res ta",
+ "▁rest a",
+ "▁gegründ et",
+ "▁journal ist",
+ "is ie",
+ "isi e",
+ "▁fac ility",
+ "▁facil ity",
+ "il led",
+ "ill ed",
+ "ille d",
+ "ul k",
+ "▁P K",
+ "▁ PK",
+ "An chor",
+ "▁_ )",
+ "▁ _)",
+ "V F",
+ "LA B",
+ "L AB",
+ "▁n å",
+ "od os",
+ "odo s",
+ "▁bill ion",
+ "vir ti",
+ "virt i",
+ "▁Je ux",
+ "юз а",
+ "ю за",
+ "tom cat",
+ "▁ch arts",
+ "▁char ts",
+ "▁chart s",
+ "▁ charts",
+ "▁B undle",
+ "▁Bund le",
+ "▁ Bundle",
+ "▁l st",
+ "▁ls t",
+ "▁ lst",
+ "▁ex er",
+ "▁fem ales",
+ "▁female s",
+ "▁oblig ed",
+ "▁a by",
+ "▁ab y",
+ "▁ aby",
+ "roll ed",
+ "rol led",
+ "rolle d",
+ "dr i",
+ "d ri",
+ "▁S che",
+ "▁Sch e",
+ "▁Sc he",
+ "▁vess els",
+ "▁vessel s",
+ "IMA RY",
+ "IM ARY",
+ "▁reason ing",
+ "▁про те",
+ "▁пр оте",
+ "FI LES",
+ "FILE S",
+ "ver k",
+ "v erk",
+ "os os",
+ "oso s",
+ "▁ком му",
+ "ді ї",
+ "д ії",
+ "▁d d",
+ "▁ dd",
+ "▁со ответ",
+ "▁IO Exception",
+ "▁ IOException",
+ "sk ých",
+ "ský ch",
+ "▁C LI",
+ "▁CL I",
+ "▁ CLI",
+ "▁ ње",
+ "C M",
+ "T D",
+ "▁possib ilities",
+ "▁possibil ities",
+ "▁Com pos",
+ "▁Comp os",
+ "hal f",
+ "h alf",
+ "▁web page",
+ "▁s wing",
+ "▁sw ing",
+ "▁ swing",
+ "▁z as",
+ "▁za s",
+ "▁ zas",
+ "▁cy cl",
+ "le id",
+ "lei d",
+ "ist ica",
+ "istic a",
+ "isti ca",
+ "▁In sert",
+ "▁Ins ert",
+ "▁ Insert",
+ "▁Sw eden",
+ "▁want ing",
+ "▁ ال",
+ "▁e euw",
+ "▁Admin istr",
+ "▁War ren",
+ "▁b s",
+ "▁ bs",
+ "▁p am",
+ "▁pa m",
+ "an us",
+ "anu s",
+ "Dr a",
+ "D ra",
+ "ex pl",
+ "exp l",
+ "▁K ant",
+ "▁Kan t",
+ "▁Ka nt",
+ "▁Aust in",
+ "▁c sak",
+ "▁cs ak",
+ "▁the atre",
+ "▁compat ibility",
+ "ма тиче",
+ "мати че",
+ "set State",
+ "б ю",
+ "}{ |",
+ "} {|",
+ "▁D y",
+ "▁Zw ischen",
+ "Al t",
+ "A lt",
+ "CLA RE",
+ "st eps",
+ "ste ps",
+ "step s",
+ "▁L age",
+ "▁La ge",
+ "▁Lag e",
+ "▁M itt",
+ "▁Mit t",
+ "▁Mi tt",
+ "▁Dub lin",
+ "▁рабо ты",
+ "de ep",
+ "▁fl ows",
+ "▁flow s",
+ "▁flo ws",
+ "▁Pa lace",
+ "▁Pal ace",
+ "▁Pala ce",
+ "un ix",
+ "uni x",
+ "re fs",
+ "ref s",
+ "um ar",
+ "uma r",
+ "u mar",
+ "as et",
+ "ase t",
+ "a set",
+ "co v",
+ "c ov",
+ "▁p ing",
+ "▁pi ng",
+ "▁pin g",
+ "▁ ping",
+ "▁Saf ari",
+ "fl ug",
+ "flu g",
+ "cre ens",
+ "creen s",
+ "c reens",
+ "{ #",
+ "▁ре а",
+ "ad ors",
+ "ado rs",
+ "ador s",
+ "▁a mor",
+ "▁am or",
+ "uc e",
+ "u ce",
+ "de mic",
+ "dem ic",
+ "▁Nether lands",
+ "▁cluster s",
+ "▁clust ers",
+ "▁en for",
+ "▁enf or",
+ "mar ine",
+ "▁b ugs",
+ "▁bu gs",
+ "▁bug s",
+ "izz ata",
+ "izza ta",
+ "▁s cra",
+ "▁sc ra",
+ "▁scr a",
+ "Le s",
+ "L es",
+ "qu ick",
+ "qui ck",
+ "▁turn o",
+ "▁tur no",
+ "_ *",
+ "ер а",
+ "е ра",
+ "Gener ated",
+ "> [",
+ "▁e stre",
+ "▁est re",
+ "▁es tre",
+ "▁ estre",
+ "or de",
+ "ord e",
+ "▁v erg",
+ "▁ver g",
+ "▁ve rg",
+ "ро з",
+ "р оз",
+ "▁p au",
+ "▁pa u",
+ "in cludes",
+ "include s",
+ "includ es",
+ "as sa",
+ "ass a",
+ "ad ers",
+ "ader s",
+ "ade rs",
+ "a ders",
+ "▁Гер ма",
+ "▁est aven",
+ "▁esta ven",
+ "▁ear liest",
+ "▁res ultado",
+ "▁result ado",
+ "mu n",
+ "m un",
+ "▁pl ots",
+ "▁plot s",
+ "▁ plots",
+ "di n",
+ "d in",
+ "sort ed",
+ "s orted",
+ "▁p reference",
+ "▁pre ference",
+ "▁prefer ence",
+ "ri ó",
+ "r ió",
+ "ту ре",
+ "тур е",
+ "▁L igue",
+ "▁Li gue",
+ "▁Lig ue",
+ "▁за вер",
+ "▁зав ер",
+ "ph r",
+ "p hr",
+ "▁p ocket",
+ "▁po cket",
+ "▁poc ket",
+ "▁par l",
+ "▁pa rl",
+ "▁l ak",
+ "▁la k",
+ "▁ lak",
+ "▁p owie",
+ "▁po wie",
+ "▁pow ie",
+ "▁al tres",
+ "▁alt res",
+ "▁altre s",
+ "$} ;",
+ "$ };",
+ "pl ain",
+ "pla in",
+ "p lain",
+ "▁C red",
+ "▁Cre d",
+ "▁Cr ed",
+ "▁ Cred",
+ "it za",
+ "itz a",
+ "pe rp",
+ "per p",
+ "Gr een",
+ "Gre en",
+ "G reen",
+ "▁dev oted",
+ "product ion",
+ "produ ction",
+ "p roduction",
+ "work er",
+ "wor ker",
+ "el sen",
+ "els en",
+ "else n",
+ "▁v ern",
+ "▁ver n",
+ "▁ve rn",
+ "▁ vern",
+ "▁már cius",
+ "▁Conf eder",
+ "▁Liver pool",
+ "▁му зи",
+ "▁em ails",
+ "▁email s",
+ "▁dist ances",
+ "▁distance s",
+ "▁seg ments",
+ "▁segment s",
+ "▁a nth",
+ "▁an th",
+ "▁ant h",
+ "▁ anth",
+ "▁w rest",
+ "▁wr est",
+ "▁ho og",
+ "▁cin ema",
+ "rr or",
+ "r ror",
+ "▁geb oren",
+ "▁é c",
+ "▁ éc",
+ "Mar ker",
+ "Mark er",
+ "▁Com pet",
+ "▁Comp et",
+ "▁ли сто",
+ "all owed",
+ "allow ed",
+ "allo wed",
+ "vol ume",
+ "Esp agne",
+ "Z e",
+ "▁fix es",
+ "▁fi xes",
+ "▁r ond",
+ "▁ro nd",
+ "▁arrang ement",
+ "/ ~",
+ ".] (",
+ ". ](",
+ "▁For rások",
+ "▁weiter en",
+ "▁weit eren",
+ "▁weitere n",
+ "ex cel",
+ "▁з мі",
+ "▁mod erne",
+ "▁modern e",
+ "▁moder ne",
+ "Eng lish",
+ "▁Transfer markt",
+ "▁be aring",
+ "▁bear ing",
+ "▁cl eared",
+ "▁clear ed",
+ "▁cle ared",
+ "▁са м",
+ "▁di vs",
+ "▁div s",
+ "ć i",
+ "▁э той",
+ "▁это й",
+ "▁Ге ор",
+ "sc ene",
+ "sce ne",
+ "▁a ges",
+ "▁ag es",
+ "▁age s",
+ "▁ ages",
+ "GE N",
+ "G EN",
+ "rä n",
+ "r än",
+ "▁T oul",
+ "▁To ul",
+ "▁A bs",
+ "▁Ab s",
+ "j át",
+ "▁med iante",
+ "▁medi ante",
+ "▁median te",
+ "▁em pres",
+ "▁emp res",
+ "▁Emp loyee",
+ "▁ Employee",
+ "▁polynomial s",
+ "▁optim ize",
+ "▁вы ступа",
+ "fa re",
+ "far e",
+ "f are",
+ "ве й",
+ "в ей",
+ "x f",
+ "qu ez",
+ "que z",
+ "q uez",
+ "▁bo tan",
+ "▁bot an",
+ "▁def end",
+ "▁defe nd",
+ "▁Qu art",
+ "Mon t",
+ "Mo nt",
+ "M ont",
+ "v b",
+ "ti ck",
+ "t ick",
+ "W D",
+ "min e",
+ "mi ne",
+ "m ine",
+ "▁mod ific",
+ "not ification",
+ "▁d enn",
+ "▁de nn",
+ "▁den n",
+ "▁al go",
+ "▁alg o",
+ "▁S po",
+ "▁Sp o",
+ "▁m istrzost",
+ "/ :",
+ "▁a present",
+ "▁apr esent",
+ "▁п род",
+ "▁про д",
+ "▁пр од",
+ "Vol ume",
+ "sk ą",
+ "s ką",
+ "prote cted",
+ "▁Turk ish",
+ "az y",
+ "a zy",
+ "▁p ouv",
+ "▁po uv",
+ "▁pou v",
+ "▁perí odo",
+ "sk og",
+ "sko g",
+ "▁ent ropy",
+ "▁entr opy",
+ "ze d",
+ "z ed",
+ "то ри",
+ "тор и",
+ "▁l ij",
+ "▁li j",
+ "▁ lij",
+ "bo ards",
+ "board s",
+ "▁ста ту",
+ "Bo ol",
+ "B ool",
+ "▁pol ity",
+ "▁polit y",
+ "@\" ,",
+ "@ \",",
+ "▁рі к",
+ "né e",
+ "n ée",
+ "▁Z ug",
+ "▁Zu g",
+ "▁Un iti",
+ "▁Unit i",
+ "ém et",
+ "é met",
+ "at ience",
+ "ati ence",
+ "di men",
+ "dim en",
+ "d imen",
+ "▁St even",
+ "▁Ste ven",
+ "▁Steve n",
+ "H a",
+ "ACT ION",
+ "A CTION",
+ "▁w and",
+ "▁wa nd",
+ "▁ wand",
+ "▁Na var",
+ "▁Nav ar",
+ "▁сі чня",
+ "W atch",
+ "▁Stu art",
+ "▁z de",
+ "▁zd e",
+ "▁кон тро",
+ "data set",
+ "dat aset",
+ "datas et",
+ "y ó",
+ "▁B ush",
+ "▁Bu sh",
+ "▁Bus h",
+ "▁се бя",
+ "▁wor thy",
+ "▁worth y",
+ "▁B le",
+ "▁Bl e",
+ "▁pro por",
+ "▁prop or",
+ "▁Vill age",
+ "▁Villa ge",
+ "▁Vil lage",
+ "▁r y",
+ "▁ ry",
+ "▁v oit",
+ "▁vo it",
+ "▁копи я",
+ "▁z p",
+ "▁c ura",
+ "▁cu ra",
+ "▁cur a",
+ "▁H tml",
+ "▁ Html",
+ "▁Die ser",
+ "▁Dies er",
+ "▁Diese r",
+ "▁D ays",
+ "▁Da ys",
+ "▁Day s",
+ "▁ Days",
+ "on nes",
+ "onn es",
+ "onne s",
+ "▁ant igu",
+ "▁anti gu",
+ "▁Sta aten",
+ "▁Staat en",
+ "▁f aint",
+ "▁fa int",
+ "on gs",
+ "ong s",
+ "▁ö st",
+ "▁ öst",
+ "Re direct",
+ "Red irect",
+ "ел ь",
+ "е ль",
+ "at orial",
+ "ator ial",
+ "ato rial",
+ "atori al",
+ "▁b other",
+ "▁bo ther",
+ "▁both er",
+ "▁bot her",
+ "Edit Text",
+ "▁Gi ul",
+ "▁за во",
+ "▁зав о",
+ "▁pue blo",
+ "▁Mississ ippi",
+ "ja k",
+ "j ak",
+ "▁w ings",
+ "▁win gs",
+ "▁wing s",
+ "on c",
+ "o nc",
+ "ív el",
+ "í vel",
+ "ien cia",
+ "i encia",
+ "ent licht",
+ "entlich t",
+ "▁B TW",
+ "or nal",
+ "orn al",
+ "▁Ко ро",
+ "▁Кор о",
+ "▁од ним",
+ "▁sa lv",
+ "▁sal v",
+ "▁f inden",
+ "▁find en",
+ "▁fin den",
+ "ge o",
+ "▁а виа",
+ "att ung",
+ "vi v",
+ "v iv",
+ "▁L uther",
+ "▁Lu ther",
+ "▁об щи",
+ "▁Ro lle",
+ "▁Rol le",
+ "▁Roll e",
+ "▁Ab raham",
+ "▁cent ered",
+ "▁center ed",
+ "▁sl ash",
+ "▁sla sh",
+ "▁ slash",
+ "is at",
+ "isa t",
+ "em ann",
+ "ema nn",
+ "eman n",
+ "e mann",
+ "O s",
+ "пар та",
+ "▁P ablo",
+ "▁Pa blo",
+ "▁collabor ation",
+ "path s",
+ "pat hs",
+ "éd ition",
+ "▁view ed",
+ "▁vie wed",
+ "▁cons isted",
+ "▁consist ed",
+ "▁recover ed",
+ "▁Mex ican",
+ "▁F ix",
+ "▁sp ell",
+ "▁spe ll",
+ "▁spel l",
+ "Spec ial",
+ "Spe cial",
+ "▁С т",
+ "ess eur",
+ "esse ur",
+ "▁Украи ны",
+ "form er",
+ "for mer",
+ "▁ś w",
+ "▁z eros",
+ "▁ze ros",
+ "▁zero s",
+ "▁Stra ßen",
+ "▁Straße n",
+ "▁organ isation",
+ "▁organis ation",
+ "▁ organisation",
+ "üss en",
+ "üs sen",
+ "▁S ierra",
+ "▁Se ason",
+ "▁Sea son",
+ "▁vol ont",
+ "Bean Factory",
+ "▁помо щ",
+ "▁pres sing",
+ "▁press ing",
+ "▁equival ence",
+ "▁c att",
+ "▁ca tt",
+ "▁cat t",
+ "ic ity",
+ "ici ty",
+ "i city",
+ "▁accompl ished",
+ "▁accomp lished",
+ "▁accomplish ed",
+ "▁y o",
+ "▁ yo",
+ "▁s ic",
+ "▁si c",
+ "▁im ports",
+ "▁import s",
+ "▁accom mod",
+ "▁Port o",
+ "▁Por to",
+ "▁я ка",
+ "▁як а",
+ "▁lo an",
+ "ти ки",
+ "тик и",
+ "▁check out",
+ "▁ass ess",
+ "▁asse ss",
+ "▁Pop ulation",
+ "ur ent",
+ "ure nt",
+ "uren t",
+ "u rent",
+ "clo jure",
+ "▁Sant os",
+ "▁Santo s",
+ "▁inform áció",
+ "PO S",
+ "P OS",
+ "▁g are",
+ "▁gar e",
+ "▁ga re",
+ "▁k ick",
+ "▁ki ck",
+ "▁rad ical",
+ "▁radi cal",
+ "▁Pe ace",
+ "▁stream ing",
+ "▁stre aming",
+ "ca mp",
+ "cam p",
+ "c amp",
+ "zą t",
+ "го вор",
+ "гов ор",
+ "гово р",
+ "▁Reg ierung",
+ "▁proceed ed",
+ "f m",
+ "ле ны",
+ "лен ы",
+ "▁ear nest",
+ "▁Par ad",
+ "▁Pa rad",
+ "▁Para d",
+ "request s",
+ "▁R aum",
+ "▁Ra um",
+ "š č",
+ "▁polic ies",
+ "▁T ig",
+ "▁Ti g",
+ "▁s itt",
+ "▁si tt",
+ "▁sit t",
+ "▁Ener gy",
+ "▁pur ely",
+ "▁pure ly",
+ "▁H aut",
+ "▁Ha ut",
+ "▁Sp eed",
+ "▁Spe ed",
+ "▁ Speed",
+ "bi o",
+ "b io",
+ "▁o range",
+ "▁or ange",
+ "▁big gest",
+ "▁britann ique",
+ "▁No table",
+ "▁Not able",
+ "v u",
+ "ле нии",
+ "би н",
+ "б ин",
+ "▁N ash",
+ "▁Na sh",
+ "▁Nas h",
+ "ще ние",
+ "▁c iel",
+ "▁ci el",
+ "adém ie",
+ "▁гру дня",
+ "▁jo ue",
+ "▁jou e",
+ "▁v oted",
+ "▁vo ted",
+ "▁vot ed",
+ "▁vote d",
+ "ri co",
+ "ric o",
+ "r ico",
+ "▁го р",
+ "▁г ор",
+ "▁ гор",
+ "▁коман ду",
+ "it ivity",
+ "iti vity",
+ "▁щ е",
+ "▁ ще",
+ "▁de finite",
+ "▁defin ite",
+ "▁definit e",
+ "uro pa",
+ "urop a",
+ "!\" );",
+ "! \");",
+ "Default s",
+ "▁неко торы",
+ "éd ération",
+ "▁s illy",
+ "▁sil ly",
+ "▁talk ed",
+ "▁tal ked",
+ "re u",
+ "r eu",
+ "▁L omb",
+ "▁Lo mb",
+ "▁stat ue",
+ "кт а",
+ "к та",
+ "ю р",
+ "um ably",
+ "▁горо де",
+ "▁город е",
+ "▁R untime",
+ "▁Run time",
+ "▁ Runtime",
+ "▁di agn",
+ "▁diag n",
+ "▁dia gn",
+ "▁r etro",
+ "▁ret ro",
+ "▁retr o",
+ "▁Sver ige",
+ "▁in icial",
+ "▁inici al",
+ "ien za",
+ "i enza",
+ "▁fig lio",
+ "▁z og",
+ "▁zo g",
+ "▁re y",
+ "▁r ey",
+ "▁ rey",
+ "▁R und",
+ "▁Run d",
+ "▁Ru nd",
+ "т ный",
+ "▁ce ased",
+ "er no",
+ "ern o",
+ "▁e sa",
+ "▁es a",
+ "▁ esa",
+ "▁tr ouv",
+ "▁tro uv",
+ "▁trou v",
+ "▁Gemeinde n",
+ "▁Geme inden",
+ "▁comer cial",
+ "sk ap",
+ "ska p",
+ "s kap",
+ "en ario",
+ "ena rio",
+ "▁ju ris",
+ "▁jur is",
+ "T B",
+ "на ла",
+ "нал а",
+ "н ала",
+ "▁v ij",
+ "▁vi j",
+ "V O",
+ "▁c lin",
+ "▁cl in",
+ "▁cli n",
+ "jö r",
+ "j ör",
+ "са н",
+ "с ан",
+ "ow ała",
+ "owa ła",
+ "ował a",
+ "rib ución",
+ "ribu ción",
+ "▁urs prüng",
+ "▁con dem",
+ "▁cond em",
+ "▁St age",
+ "▁Sta ge",
+ "▁ Stage",
+ "▁mix ing",
+ "▁рі з",
+ "▁f ans",
+ "▁fa ns",
+ "▁fan s",
+ "há z",
+ "h áz",
+ "so cial",
+ "soci al",
+ "za n",
+ "z an",
+ "▁с вой",
+ "▁сво й",
+ "Cook ie",
+ "▁Ro land",
+ "▁Rol and",
+ "az ionale",
+ "▁Sl oven",
+ "▁Slo ven",
+ "▁Slov en",
+ "▁F iche",
+ "▁Fich e",
+ "▁S é",
+ "h ä",
+ "▁official s",
+ "▁offici als",
+ "▁î nt",
+ "▁în t",
+ "Inter ceptor",
+ "Table s",
+ "Tab les",
+ "T ables",
+ "▁da von",
+ "▁dav on",
+ "init ialize",
+ "initial ize",
+ "]= \"",
+ "] =\"",
+ "▁B ody",
+ "▁Bo dy",
+ "▁Bod y",
+ "▁ Body",
+ "▁U pper",
+ "▁Up per",
+ "▁ Upper",
+ "▁Col lect",
+ "▁Coll ect",
+ "▁ Collect",
+ "▁Zür ich",
+ "Hor izontal",
+ "Ty p",
+ "T yp",
+ "▁polít ico",
+ "▁Rewrite Cond",
+ "▁h oped",
+ "▁hope d",
+ "▁ho ped",
+ "▁hop ed",
+ "▁anx ious",
+ "Li ter",
+ "L iter",
+ "ja hr",
+ "j ahr",
+ "▁ass emble",
+ "▁assemb le",
+ "▁c rypt",
+ "▁cry pt",
+ "lah oma",
+ "AS H",
+ "A SH",
+ "▁Б ри",
+ "▁C ic",
+ "▁Ci c",
+ "tw itter",
+ "hy per",
+ "▁T ell",
+ "▁Te ll",
+ "▁Tel l",
+ "іль ки",
+ "во бо",
+ "▁ba zie",
+ "▁baz ie",
+ "▁contempor ary",
+ "▁Param eter",
+ "▁Para meter",
+ "▁ Parameter",
+ "st wa",
+ "▁bek end",
+ "co ck",
+ "c ock",
+ "pre vious",
+ "prev ious",
+ "en ska",
+ "ens ka",
+ "ensk a",
+ "▁c aller",
+ "▁cal ler",
+ "▁call er",
+ "]] )",
+ "] ])",
+ "▁R az",
+ "▁Ra z",
+ "▁Se lon",
+ "▁Sel on",
+ "▁propos al",
+ "▁b ý",
+ "▁S ied",
+ "▁Sie d",
+ "▁Si ed",
+ "▁Arbe its",
+ "▁Arbeit s",
+ "▁p ride",
+ "▁pr ide",
+ "▁pri de",
+ "▁sl ope",
+ "▁slo pe",
+ "id é",
+ "grad ient",
+ "▁Дже рела",
+ "▁S H",
+ "▁ SH",
+ "▁раз рабо",
+ "ivers ity",
+ "спо дар",
+ "\\{ \\",
+ "\\ {\\",
+ "▁с тали",
+ "▁ст али",
+ "▁ста ли",
+ "▁стал и",
+ "▁Ein zel",
+ "▁Einz el",
+ "▁rg ba",
+ "▁A nim",
+ "▁An im",
+ "▁ Anim",
+ "▁a lles",
+ "▁al les",
+ "▁all es",
+ "▁alle s",
+ "▁ alles",
+ "ба р",
+ "б ар",
+ "er te",
+ "ert e",
+ "▁réalis é",
+ "▁réal isé",
+ "Inst itut",
+ "▁mar kup",
+ "▁mark up",
+ "▁v ars",
+ "▁var s",
+ "▁va rs",
+ "▁ vars",
+ "▁g am",
+ "▁ga m",
+ "▁Васи ль",
+ "iz za",
+ "izz a",
+ "i zza",
+ "▁C ob",
+ "▁Co b",
+ "▁M etal",
+ "▁Me tal",
+ "▁Met al",
+ "▁Meta l",
+ "▁le ak",
+ "▁L anc",
+ "▁La nc",
+ "▁Lan c",
+ "Sw itch",
+ "De lay",
+ "Del ay",
+ "at uur",
+ "atu ur",
+ "▁че ты",
+ "▁анг лий",
+ "▁leg acy",
+ "▁desar roll",
+ "▁top ological",
+ "▁jewe ils",
+ "▁Nederland se",
+ "▁atmos phere",
+ "ur ban",
+ "urb an",
+ "▁s lov",
+ "▁sl ov",
+ "▁slo v",
+ "▁law yer",
+ "pe cially",
+ "▁altern ate",
+ "▁para met",
+ "▁param et",
+ "▁establish ment",
+ "▁wood s",
+ "▁wo ods",
+ "P D",
+ "▁на и",
+ "▁m ang",
+ "▁ma ng",
+ "▁man g",
+ "▁wechsel te",
+ "сь ку",
+ "ськ у",
+ ". =",
+ "▁fif teen",
+ "SU M",
+ "S UM",
+ "▁F ro",
+ "▁Fr o",
+ "▁L ED",
+ "▁LE D",
+ "▁ LED",
+ "ow ano",
+ "owa no",
+ "owan o",
+ "стви е",
+ "▁D onnées",
+ "to l",
+ "t ol",
+ "ży n",
+ "ż yn",
+ "cre f",
+ "cr ef",
+ "c ref",
+ "стви и",
+ "ho rn",
+ "hor n",
+ "h orn",
+ "▁со об",
+ "▁обо ро",
+ "▁Comp lete",
+ "▁Comple te",
+ "▁ Complete",
+ "“ )",
+ "▁kind ly",
+ "▁Cham ber",
+ "s ég",
+ "W H",
+ "▁amb ient",
+ "к ро",
+ "▁ch eval",
+ "▁che val",
+ "▁на писа",
+ "fl u",
+ "f lu",
+ "▁Off iz",
+ "ma te",
+ "mat e",
+ "m ate",
+ "nat ural",
+ "n atural",
+ "se par",
+ "sep ar",
+ "em pre",
+ "emp re",
+ "View Holder",
+ "f w",
+ "▁le tech",
+ "▁let ech",
+ "▁tra iling",
+ "▁trail ing",
+ "at ri",
+ "atr i",
+ "a tri",
+ "▁G ó",
+ "▁B onn",
+ "▁Bo nn",
+ "▁Bon n",
+ "▁un likely",
+ "▁unlike ly",
+ "RA M",
+ "R AM",
+ "en st",
+ "ens t",
+ "St ats",
+ "Stat s",
+ "▁поли тиче",
+ ")- -(",
+ ")-- (",
+ "▁t rom",
+ "▁tr om",
+ "▁tro m",
+ "!. ..",
+ "! ...",
+ "▁Mean while",
+ "ст ана",
+ "ста на",
+ "стан а",
+ "▁Re ino",
+ "▁Rein o",
+ "▁A rist",
+ "▁Ar ist",
+ "▁Ari st",
+ "$} }%",
+ "$ }}%",
+ "▁so lem",
+ "▁sol em",
+ "▁sole m",
+ "clos ure",
+ "ign ation",
+ "ło d",
+ "ł od",
+ "▁di vor",
+ "▁div or",
+ "▁между народ",
+ "=\" ",
+ "▁m olt",
+ "▁mo lt",
+ "▁mol t",
+ "▁sk ills",
+ "▁skill s",
+ "▁C ir",
+ "▁Ci r",
+ "▁Des pués",
+ "▁Desp ués",
+ "▁l un",
+ "▁lu n",
+ "▁cor on",
+ "▁co ron",
+ "▁Com ics",
+ "сто ри",
+ "стор и",
+ "с тори",
+ "▁It ems",
+ "▁Item s",
+ "▁ Items",
+ "▁Th ink",
+ "и гра",
+ "▁g rows",
+ "▁gr ows",
+ "▁gro ws",
+ "▁grow s",
+ "port al",
+ "por tal",
+ "▁n ich",
+ "▁ni ch",
+ "▁nic h",
+ "▁restrict ions",
+ "▁restriction s",
+ "▁L au",
+ "▁La u",
+ "ше ння",
+ "шен ня",
+ "▁So zial",
+ "▁к і",
+ "▁ кі",
+ "ma na",
+ "man a",
+ "m ana",
+ "▁lie utenant",
+ "Att r",
+ "At tr",
+ "ume ric",
+ "umer ic",
+ "▁dr ives",
+ "▁drive s",
+ "▁dri ves",
+ "▁driv es",
+ "as is",
+ "asi s",
+ "ба й",
+ "N L",
+ "Zyg ote",
+ "phys ics",
+ "▁intern ally",
+ "▁internal ly",
+ "ва ется",
+ "вает ся",
+ "H idden",
+ "▁Да та",
+ "▁un safe",
+ "▁R oc",
+ "▁Ro c",
+ "▁instanti ate",
+ "▁instant iate",
+ "ud ni",
+ "▁R oom",
+ "▁Ro om",
+ "▁П ред",
+ "▁Пре д",
+ "▁m aja",
+ "▁ma ja",
+ "▁maj a",
+ "ach ment",
+ "u uid",
+ "Project s",
+ "Gr e",
+ "G re",
+ "▁в зя",
+ "▁вз я",
+ "▁Bl ood",
+ "▁Blo od",
+ "ic ile",
+ "ici le",
+ "i cile",
+ "▁N ouvelle",
+ "Do es",
+ "▁nie uwe",
+ "ál e",
+ "á le",
+ "an gs",
+ "ang s",
+ "we ak",
+ "▁a antal",
+ "▁aan tal",
+ "▁Е в",
+ "▁Dres den",
+ "▁L ost",
+ "▁Lo st",
+ "▁Los t",
+ "ка та",
+ "▁invol ve",
+ "▁decl aring",
+ "▁decla ring",
+ "▁declar ing",
+ "▁Polit ical",
+ "ér ez",
+ "ére z",
+ "é rez",
+ "ko p",
+ "k op",
+ "not ify",
+ "▁C urt",
+ "▁Cu rt",
+ "▁Cur t",
+ "▁schließ lich",
+ "gh an",
+ "g han",
+ "це на",
+ "цен а",
+ "ц ена",
+ "▁kw iet",
+ "üg el",
+ "üge l",
+ "ü gel",
+ "▁S ob",
+ "▁So b",
+ "▁sub str",
+ "▁subst r",
+ "▁subs tr",
+ "▁ substr",
+ "▁el len",
+ "▁elle n",
+ "▁ell en",
+ "▁ ellen",
+ "ion ario",
+ "iona rio",
+ "en son",
+ "ens on",
+ "enso n",
+ "WI N",
+ "W IN",
+ "спо рт",
+ "em er",
+ "eme r",
+ "e mer",
+ "no me",
+ "nom e",
+ "n ome",
+ "▁sm iled",
+ "▁smile d",
+ "▁Sch midt",
+ "▁sm oke",
+ "▁T oken",
+ "▁To ken",
+ "▁Tok en",
+ "▁ Token",
+ "▁v ague",
+ "▁va gue",
+ "▁pro vision",
+ "▁prov ision",
+ "ya ml",
+ "y aml",
+ "ни тель",
+ "ните ль",
+ "on ial",
+ "oni al",
+ "onia l",
+ "é poque",
+ "▁N C",
+ "▁ NC",
+ "▁N FL",
+ "te ck",
+ "▁al lo",
+ "▁all o",
+ "▁ allo",
+ "▁préc éd",
+ "cent ral",
+ "▁ma jd",
+ "▁maj d",
+ "▁ch rom",
+ "▁chr om",
+ "▁ chrom",
+ "▁Z um",
+ "▁Zu m",
+ "ver so",
+ "vers o",
+ "▁verschied enen",
+ "▁ста ро",
+ "▁стар о",
+ "▁qu elle",
+ "▁que lle",
+ "▁q uelle",
+ "▁quel le",
+ "▁ quelle",
+ "▁r ép",
+ "▁ré p",
+ "RO W",
+ "R OW",
+ "▁i hnen",
+ "▁ih nen",
+ "▁ihn en",
+ "▁sens ible",
+ "▁sen sible",
+ "| $",
+ "▁sc hw",
+ "▁sch w",
+ "▁B R",
+ "▁ BR",
+ "▁O ptions",
+ "▁Option s",
+ "▁Opt ions",
+ "▁ Options",
+ "▁t ens",
+ "▁te ns",
+ "▁ten s",
+ "▁conqu ist",
+ "▁l ieß",
+ "▁lie ß",
+ "▁ ließ",
+ "ov is",
+ "ovi s",
+ "o vis",
+ "▁мі ста",
+ "▁міс та",
+ "▁e la",
+ "▁el a",
+ "▁ ela",
+ "rif ice",
+ "r ifice",
+ "▁l ok",
+ "▁lo k",
+ "▁Queens land",
+ "B inary",
+ "▁Ra hmen",
+ "▁Rah men",
+ "▁a bol",
+ "▁ab ol",
+ "▁ abol",
+ "▁č ást",
+ "▁Ed inburgh",
+ "in de",
+ "ind e",
+ "i nde",
+ "▁calcul ating",
+ "▁calc ulating",
+ "▁O regon",
+ "▁le git",
+ "▁leg it",
+ "▁Nach dem",
+ "at hon",
+ "ath on",
+ "P rivate",
+ "illa ume",
+ "▁ob servable",
+ "▁observ able",
+ "le ans",
+ "lean s",
+ "lea ns",
+ "▁remark ed",
+ "▁h alt",
+ "▁ha lt",
+ "▁hal t",
+ "▁ halt",
+ "ни цы",
+ "ниц ы",
+ "▁st amp",
+ "▁sta mp",
+ "▁stam p",
+ "▁Ad v",
+ "Lo uis",
+ "Lou is",
+ "im ming",
+ "imm ing",
+ "gru ppe",
+ "▁Pol icy",
+ "▁ Policy",
+ "▁v rij",
+ "▁vr ij",
+ "ft rag",
+ "▁off ices",
+ "▁offic es",
+ "▁office s",
+ "▁particip ated",
+ "▁es col",
+ "▁esc ol",
+ "▁\" ",
+ "▁\"< /",
+ "▁nombre uses",
+ "▁d ivid",
+ "▁di vid",
+ "▁div id",
+ "▁ad vis",
+ "▁adv is",
+ "лта ти",
+ "▁= =>",
+ "▁== >",
+ "Ori entation",
+ "ci d",
+ "c id",
+ "Car t",
+ "Ca rt",
+ "C art",
+ "▁m urm",
+ "▁mu rm",
+ "▁mur m",
+ "▁ass ez",
+ "▁asse z",
+ "▁l inking",
+ "▁link ing",
+ "▁lin king",
+ "build ing",
+ "▁rec onna",
+ "▁recon na",
+ "▁s hook",
+ "▁sh ook",
+ "▁sho ok",
+ "man aged",
+ "mana ged",
+ "land a",
+ "lan da",
+ "l anda",
+ "▁Le ón",
+ "▁cré ation",
+ "до й",
+ "oc ity",
+ "oci ty",
+ "o city",
+ "▁w ij",
+ "▁ wij",
+ "▁wie ś",
+ "xt art",
+ "▁M ove",
+ "▁Mo ve",
+ "▁Mov e",
+ "▁ Move",
+ "lung en",
+ "l ungen",
+ "ству ет",
+ "or ney",
+ "orn ey",
+ "option al",
+ "opt ional",
+ "ma cro",
+ "mac ro",
+ "Cond ition",
+ "▁square s",
+ "▁squ ares",
+ "▁mist aken",
+ "▁mistake n",
+ "án t",
+ "á nt",
+ "▁R is",
+ "▁Ri s",
+ "▁sent ences",
+ "▁sentence s",
+ "er ea",
+ "ere a",
+ "e rea",
+ "▁m ij",
+ "▁mi j",
+ "Un d",
+ "U nd",
+ "▁nom br",
+ "z A",
+ "▁In dependent",
+ "▁Indep endent",
+ "▁Independ ent",
+ "▁p review",
+ "▁pre view",
+ "▁prev iew",
+ "▁ preview",
+ "im as",
+ "ima s",
+ "i mas",
+ "▁m ales",
+ "▁ma les",
+ "▁mal es",
+ "▁male s",
+ "in ental",
+ "inen tal",
+ "inent al",
+ "Th ank",
+ "▁p opol",
+ "▁po pol",
+ "▁pop ol",
+ "▁p over",
+ "▁po ver",
+ "▁pov er",
+ "▁gr asp",
+ "▁gra sp",
+ "▁im ped",
+ "▁imp ed",
+ "▁campion ato",
+ "▁W ei",
+ "▁We i",
+ "▁t itled",
+ "▁title d",
+ "▁tit led",
+ "▁A demás",
+ "▁Pass word",
+ "▁ Password",
+ "▁P am",
+ "▁Pa m",
+ "UI LD",
+ "▁ли пня",
+ "wer b",
+ "we rb",
+ "w erb",
+ "........ ........",
+ "▁R ío",
+ "▁te eth",
+ "b p",
+ "▁S W",
+ "▁ SW",
+ "ul aire",
+ "ula ire",
+ "▁se ized",
+ "▁sei zed",
+ "▁St ef",
+ "▁Ste f",
+ "ú l",
+ "▁v iz",
+ "▁vi z",
+ "ion y",
+ "io ny",
+ "i ony",
+ "▁j unt",
+ "▁ju nt",
+ "▁jun t",
+ "▁kter á",
+ "▁wrześ nia",
+ "< >",
+ "▁s urg",
+ "▁su rg",
+ "▁sur g",
+ "▁tu tte",
+ "▁tut te",
+ "▁H ob",
+ "▁Ho b",
+ "по від",
+ "пов ід",
+ "▁w ohl",
+ "▁wo hl",
+ "▁ wohl",
+ "▁t rag",
+ "▁tr ag",
+ "▁tra g",
+ "▁C rown",
+ "▁Cr own",
+ "▁Cro wn",
+ "▁Crow n",
+ "▁tr ova",
+ "▁tro va",
+ "▁trov a",
+ "сто ву",
+ "стов у",
+ "▁Vien na",
+ "ese hen",
+ "▁met ropol",
+ "▁reflect ed",
+ "те та",
+ "тет а",
+ "т ета",
+ "▁trad uc",
+ "▁tradu c",
+ "▁B ast",
+ "▁Bas t",
+ "▁Ba st",
+ "▁ersch ien",
+ "wo ord",
+ "() \"",
+ "( )\"",
+ "ta let",
+ "tal et",
+ "t alet",
+ "▁ro ads",
+ "▁road s",
+ "ве дения",
+ "веде ния",
+ "ühr ung",
+ "▁c ogn",
+ "▁co gn",
+ "▁V alle",
+ "▁Val le",
+ "▁Va lle",
+ "▁Vall e",
+ "▁land ing",
+ "▁lan ding",
+ "▁Re gex",
+ "▁Reg ex",
+ "▁I owa",
+ "▁Io wa",
+ "dz iał",
+ "d ział",
+ "▁erre ichte",
+ "au m",
+ "a um",
+ "▁found er",
+ "▁fo under",
+ "▁fou nder",
+ "ap olis",
+ "Comp iler",
+ "▁k op",
+ "▁ko p",
+ "▁ kop",
+ "▁m arc",
+ "▁ma rc",
+ "▁mar c",
+ "▁те ритор",
+ ")) `",
+ ") )`",
+ "▁l ei",
+ "▁le i",
+ "▁ lei",
+ "ge on",
+ "geo n",
+ "▁weap ons",
+ "▁weapon s",
+ "▁h orn",
+ "▁hor n",
+ "▁ho rn",
+ "▁ horn",
+ "▁el if",
+ "▁ elif",
+ "▁Cap ital",
+ "▁Capit al",
+ "ć e",
+ "▁for all",
+ "▁ forall",
+ "▁э та",
+ "pre view",
+ "prev iew",
+ "p review",
+ "▁D NA",
+ "▁s id",
+ "▁si d",
+ "or ch",
+ "▁R as",
+ "▁Ra s",
+ "▁a rab",
+ "▁ar ab",
+ "▁ara b",
+ "▁ arab",
+ "Be st",
+ "B est",
+ "▁с чита",
+ "▁L ópez",
+ "an ça",
+ "▁fun kc",
+ "▁t ienen",
+ "▁tiene n",
+ "▁ti enen",
+ "▁tie nen",
+ "; &",
+ "m useum",
+ "▁E rr",
+ "▁Er r",
+ "▁ Err",
+ "▁re sort",
+ "▁res ort",
+ "No v",
+ "N ov",
+ "▁k al",
+ "▁ka l",
+ "▁ kal",
+ "M W",
+ "ш ь",
+ "an chor",
+ "anc hor",
+ "anch or",
+ "▁ро ман",
+ "le ading",
+ "lea ding",
+ "▁m anten",
+ "▁ma nten",
+ "▁man ten",
+ "▁mant en",
+ "▁Sil va",
+ "da de",
+ "d ade",
+ "▁design ated",
+ "▁rev ista",
+ "▁revis ta",
+ "O ct",
+ "per cent",
+ "▁у ні",
+ "ident ifier",
+ "ma ss",
+ "mas s",
+ "m ass",
+ "@ @",
+ "uls ion",
+ "ger meister",
+ "g ermeister",
+ "▁pred icted",
+ "▁predict ed",
+ "▁с ви",
+ "жно й",
+ "ж ной",
+ "▁Er geb",
+ "▁c ust",
+ "▁cu st",
+ "▁remove s",
+ "▁remov es",
+ "ch arg",
+ "char g",
+ "cha rg",
+ "при мер",
+ "▁for ming",
+ "▁form ing",
+ "as ma",
+ "asm a",
+ "std out",
+ "F un",
+ "ym e",
+ "y me",
+ "ter ed",
+ "te red",
+ "tere d",
+ "t ered",
+ "urs ive",
+ "ig hed",
+ "igh ed",
+ "▁сле д",
+ "▁ след",
+ "ver band",
+ "verb and",
+ "▁LO G",
+ "▁ LOG",
+ "ra ms",
+ "ram s",
+ "r ams",
+ "éo n",
+ "é on",
+ "en dra",
+ "end ra",
+ "▁Be reich",
+ "▁Bere ich",
+ "▁tempor al",
+ "▁temp oral",
+ "▁tempo ral",
+ "▁lang ue",
+ "▁lan gue",
+ "▁I nn",
+ "▁In n",
+ "▁more over",
+ "▁tutorial s",
+ "M iddle",
+ "▁совет ский",
+ "▁mainten ance",
+ "as ures",
+ "asure s",
+ "▁vál to",
+ "BA SE",
+ "B ASE",
+ "▁disapp ear",
+ "ски я",
+ "▁conoc ido",
+ "▁На у",
+ "▁Li bert",
+ "▁Lib ert",
+ "▁Liber t",
+ "▁Har old",
+ "▁life time",
+ "▁lif etime",
+ "▁T ür",
+ "▁za wod",
+ "▁zaw od",
+ "om ic",
+ "omi c",
+ "o mic",
+ "▁Retrie ved",
+ "arch itecture",
+ "č ka",
+ "iform es",
+ "develop ment",
+ "ord nung",
+ "In f",
+ "le ben",
+ "leb en",
+ "l eben",
+ "▁St ars",
+ "▁Sta rs",
+ "▁Star s",
+ "sign al",
+ "sig nal",
+ "▁gram mar",
+ "▁cor so",
+ "▁cors o",
+ "▁W agner",
+ "▁ge ht",
+ "▁royal e",
+ "▁roy ale",
+ "wa rn",
+ "war n",
+ "w arn",
+ "um bled",
+ "umb led",
+ "umble d",
+ "▁inst it",
+ "▁ins tit",
+ "▁Ш и",
+ "h h",
+ "▁ref uge",
+ "▁favor ite",
+ "ier to",
+ "iert o",
+ "▁cond ado",
+ "▁T her",
+ "▁The r",
+ "▁Th er",
+ "▁человек а",
+ "▁челове ка",
+ "▁F ood",
+ "▁Foo d",
+ "▁Fo od",
+ "▁se izo",
+ "▁sei zo",
+ "▁Init ialize",
+ "▁Initial ize",
+ "▁con nu",
+ "▁conn u",
+ "▁over lap",
+ "▁E mil",
+ "▁Em il",
+ "▁Mart í",
+ "▁жовт ня",
+ "er va",
+ "erv a",
+ "▁bo ats",
+ "▁boat s",
+ "a ções",
+ "▁der rot",
+ "▁m alloc",
+ "▁mal loc",
+ "▁ malloc",
+ "▁con ject",
+ "▁conj ect",
+ "j k",
+ "▁s are",
+ "▁sa re",
+ "▁sar e",
+ "ле мен",
+ "лем ен",
+ "▁s ums",
+ "▁su ms",
+ "▁sum s",
+ "Author ization",
+ "▁K un",
+ "▁Ku n",
+ "]$ ,",
+ "] $,",
+ "geme inde",
+ "gemein de",
+ "g emeinde",
+ "od ot",
+ "odo t",
+ "o dot",
+ "de fin",
+ "def in",
+ "▁e mission",
+ "▁em ission",
+ "▁Кра с",
+ "▁app art",
+ "▁ap part",
+ "▁appar t",
+ "▁stop ping",
+ "▁sto pping",
+ "▁С ред",
+ "▁conj ug",
+ "▁ins ight",
+ "▁Broad cast",
+ "▁PM ID",
+ "▁adv antages",
+ "▁advantage s",
+ "en es",
+ "ene s",
+ "e nes",
+ "▁res idence",
+ "▁resid ence",
+ "lj en",
+ "l jen",
+ "iss eur",
+ "isse ur",
+ "▁pubblic ato",
+ "▁Git Hub",
+ "▁Per u",
+ "▁Pe ru",
+ "▁galax ies",
+ "▁annot ations",
+ "▁annotation s",
+ "ga s",
+ "g as",
+ "▁ré pond",
+ "▁rép ond",
+ "J s",
+ "▁independent ly",
+ "▁independ ently",
+ "N P",
+ "▁in qu",
+ "▁gr ounds",
+ "▁ground s",
+ "Com ponents",
+ "Component s",
+ "▁a nten",
+ "▁an ten",
+ "▁ant en",
+ "▁ante n",
+ "▁ anten",
+ "▁в з",
+ "▁h os",
+ "▁ho s",
+ "▁ hos",
+ "▁s int",
+ "▁si nt",
+ "▁sin t",
+ "▁h iding",
+ "▁hi ding",
+ "▁hid ing",
+ "▁wojew ództ",
+ "Message s",
+ "Mess ages",
+ "▁по каза",
+ "▁пока за",
+ "== =",
+ "= ==",
+ "▁Ab stract",
+ "▁ Abstract",
+ "▁l äng",
+ "▁län g",
+ "▁lä ng",
+ "▁Form ula",
+ "da wn",
+ "d awn",
+ "▁design s",
+ "Im g",
+ "▁Portug uese",
+ "▁incl uy",
+ "▁inclu y",
+ "avig ator",
+ "▁Bro thers",
+ "▁cont inent",
+ "▁contin ent",
+ "▁evident ly",
+ "ra ce",
+ "rac e",
+ "r ace",
+ "ць кого",
+ "▁re ck",
+ "▁rec k",
+ "▁ reck",
+ "▁сер пня",
+ "▁G rey",
+ "▁Gr ey",
+ "▁Gre y",
+ "▁appe al",
+ "▁un like",
+ "▁power shell",
+ "▁pow ershell",
+ "▁powers hell",
+ "▁r acc",
+ "▁ra cc",
+ "▁rac c",
+ "fer s",
+ "fe rs",
+ "f ers",
+ "▁bur ning",
+ "▁burn ing",
+ "fas st",
+ "fass t",
+ "inst alled",
+ "install ed",
+ "▁G ive",
+ "▁Gi ve",
+ "▁col onial",
+ "▁colon ial",
+ "▁ €",
+ "▁R ö",
+ "▁ch rist",
+ "▁chr ist",
+ "ne hm",
+ "neh m",
+ "та м",
+ "▁cor po",
+ "▁con virti",
+ "yt er",
+ "y ter",
+ "S ym",
+ "▁Gree ce",
+ "▁m oth",
+ "▁mo th",
+ "▁mot h",
+ "▁Joh an",
+ "▁Jo han",
+ "▁mon arch",
+ "▁Down load",
+ "▁ Download",
+ "▁c raft",
+ "▁cr aft",
+ "▁cra ft",
+ "▁ craft",
+ "u ž",
+ "▁Lu ke",
+ "▁suf fix",
+ "▁suff ix",
+ "\\ /",
+ "Ha ve",
+ "H ave",
+ "▁ка рь",
+ "▁кар ь",
+ "▁comfort able",
+ "▁t ips",
+ "▁tip s",
+ "▁ti ps",
+ "▁П ісля",
+ "▁бро ја",
+ "▁ин форма",
+ "M Q",
+ "бра н",
+ "б ран",
+ "▁t x",
+ "▁ tx",
+ "▁sl aves",
+ "▁sla ves",
+ "▁slave s",
+ "▁fire wall",
+ "▁For ces",
+ "▁Force s",
+ "at if",
+ "ati f",
+ "▁Qu ellen",
+ "▁thé âtre",
+ "ль ных",
+ "▁располо жен",
+ "▁Det ails",
+ "▁ Details",
+ "k ą",
+ "▁long itud",
+ "IN ST",
+ "▁n aval",
+ "▁na val",
+ "▁nav al",
+ "Fern seh",
+ "es sel",
+ "ess el",
+ "esse l",
+ "Gr ad",
+ "G rad",
+ "▁be lang",
+ "▁bel ang",
+ "▁a ggi",
+ "▁ag gi",
+ "▁ aggi",
+ "Zygote Init",
+ "ł ów",
+ "▁S ug",
+ "▁Su g",
+ "si l",
+ "s il",
+ "▁ex terior",
+ "щ і",
+ "OR D",
+ "en ser",
+ "ens er",
+ "ense r",
+ "▁rapid e",
+ "▁rap ide",
+ "▁тем пера",
+ "in cie",
+ "inci e",
+ "inc ie",
+ "S i",
+ "av am",
+ "ava m",
+ "ar ded",
+ "ard ed",
+ "arde d",
+ "▁Ad ded",
+ "▁Add ed",
+ "End point",
+ "hard t",
+ "har dt",
+ "ст ран",
+ "стра н",
+ "стр ан",
+ "▁est ilo",
+ "▁H az",
+ "▁Ha z",
+ "▁mus ste",
+ "▁muss te",
+ "u o",
+ "ii i",
+ "i ii",
+ "▁ř í",
+ "▁ ří",
+ "an zen",
+ "anz en",
+ "anze n",
+ "же ний",
+ "ah a",
+ "a ha",
+ "ARN ING",
+ "▁re nov",
+ "▁ren ov",
+ "▁div ine",
+ "▁convin ced",
+ "▁hum ans",
+ "▁human s",
+ "▁hu mans",
+ "▁depart ure",
+ "▁Med iter",
+ "▁Medi ter",
+ "q a",
+ "▁poss essed",
+ "▁possess ed",
+ "▁цер кви",
+ "gi v",
+ "g iv",
+ "▁сво ї",
+ "▁Ort ste",
+ "▁Orts te",
+ "R ich",
+ "pu is",
+ "p uis",
+ "in crement",
+ "▁Hann over",
+ "▁u cz",
+ "Do ne",
+ "Don e",
+ "D one",
+ "▁alg uns",
+ "FI X",
+ "F IX",
+ "▁Her itage",
+ "remove Class",
+ "фе р",
+ "ф ер",
+ "▁a bc",
+ "▁ab c",
+ "▁ abc",
+ "D r",
+ "▁се мей",
+ "▁сем ей",
+ "{ :",
+ "▁se ule",
+ "▁seu le",
+ "▁seul e",
+ "zeich nungen",
+ "zeichnung en",
+ "ad dy",
+ "add y",
+ "▁Par ís",
+ "üss eld",
+ "▁re ception",
+ "▁rece ption",
+ "fo lio",
+ "fol io",
+ "ti ny",
+ "t iny",
+ "▁recens ement",
+ "▁N ur",
+ "▁Nu r",
+ "▁k ier",
+ "▁ki er",
+ "▁g mina",
+ "▁gmin a",
+ "sta at",
+ "ánd ose",
+ "че ская",
+ "▁spe aker",
+ "▁speak er",
+ "▁expon ential",
+ "▁exponent ial",
+ "▁D ieu",
+ "▁Die u",
+ "▁Di eu",
+ "▁при з",
+ "▁пр из",
+ "▁Raf ael",
+ "▁gg plot",
+ "▁Tem plate",
+ "▁Temp late",
+ "▁ Template",
+ "ou re",
+ "our e",
+ "o ure",
+ "▁In ner",
+ "▁Inn er",
+ "▁ Inner",
+ "og ne",
+ "ogn e",
+ "ig are",
+ "iga re",
+ "▁Ar te",
+ "▁Art e",
+ "▁C ov",
+ "▁Co v",
+ "▁auf grund",
+ "▁Б ы",
+ "▁cerem ony",
+ "▁S part",
+ "▁Sp art",
+ "ject ive",
+ "y i",
+ "▁in izi",
+ "▁l atin",
+ "▁lat in",
+ "▁Never theless",
+ "▁D one",
+ "▁Do ne",
+ "▁Don e",
+ "▁ Done",
+ "т ря",
+ "▁A rr",
+ "▁Ar r",
+ "▁ Arr",
+ "se ason",
+ "▁скла ду",
+ "▁pod czas",
+ "▁Beaut iful",
+ "▁Weltkrie g",
+ "▁з о",
+ "▁ зо",
+ "▁over come",
+ "▁Pr aha",
+ "▁Pra ha",
+ "▁рай ону",
+ "▁райо ну",
+ "▁район у",
+ "▁sub scription",
+ "▁subs cription",
+ "▁subscri ption",
+ "ig ent",
+ "igen t",
+ "ige nt",
+ "i gent",
+ "▁по ка",
+ "la tex",
+ "lat ex",
+ "late x",
+ "▁b each",
+ "▁be ach",
+ "▁ро ках",
+ "ge g",
+ "g eg",
+ "▁pro bl",
+ "▁prob l",
+ "arg uments",
+ "argument s",
+ "▁organ izations",
+ "▁organiz ations",
+ "▁organization s",
+ "▁N an",
+ "▁Na n",
+ "▁st ones",
+ "▁sto nes",
+ "▁stone s",
+ "▁H unter",
+ "▁Hun ter",
+ "▁regular ly",
+ "шо го",
+ "ш ого",
+ "▁flex ible",
+ "op ts",
+ "opt s",
+ "o pts",
+ "á ř",
+ "wi tz",
+ "w itz",
+ "▁' )",
+ "▁ ')",
+ "PA SS",
+ "P ASS",
+ "▁k raj",
+ "▁kr aj",
+ "▁kra j",
+ "▁f ake",
+ "▁fa ke",
+ "he its",
+ "heit s",
+ "os ph",
+ "osp h",
+ "parse Int",
+ "F ALSE",
+ "▁prof ess",
+ "▁profes s",
+ "pe ople",
+ "▁pre cip",
+ "▁prec ip",
+ "dir name",
+ "▁per pet",
+ "▁Up dated",
+ "▁Update d",
+ "▁ Updated",
+ "ra yed",
+ "ray ed",
+ "▁prov oc",
+ "▁тра вня",
+ "▁трав ня",
+ "▁categ orie",
+ "▁categor ie",
+ "▁те о",
+ "с ну",
+ "ot r",
+ "o tr",
+ "▁Вер хов",
+ "▁comp ét",
+ "Co st",
+ "C ost",
+ "▁w ider",
+ "▁wide r",
+ "▁wid er",
+ "▁Ob viously",
+ "пи сан",
+ "писа н",
+ "пис ан",
+ "▁на стоя",
+ "▁see king",
+ "▁seek ing",
+ "() ),",
+ "()) ,",
+ "( )),",
+ "▁é quipe",
+ "▁équip e",
+ "▁ équipe",
+ "▁comm its",
+ "▁commit s",
+ "▁S vens",
+ "▁Sv ens",
+ "я бре",
+ "at ern",
+ "ate rn",
+ "ater n",
+ "a tern",
+ "▁h eter",
+ "▁he ter",
+ "▁het er",
+ "▁Boot strap",
+ "én é",
+ "é né",
+ "▁deriv atives",
+ "▁derivative s",
+ "▁Det roit",
+ "▁provin cial",
+ "▁provincia l",
+ "onom ie",
+ "E B",
+ "▁c uer",
+ "▁cu er",
+ "▁от носи",
+ "▁отно си",
+ "▁не й",
+ "▁н ей",
+ "▁ ней",
+ ") ».",
+ "▁Ci udad",
+ "IA L",
+ "I AL",
+ "zy st",
+ "z yst",
+ ")\" )",
+ ") \")",
+ "▁Al c",
+ "bl ogs",
+ "blog s",
+ "blo gs",
+ "b logs",
+ "▁par mi",
+ "▁Album s",
+ "▁Alb ums",
+ "▁Bo liv",
+ "▁Bol iv",
+ "▁c lés",
+ "▁cl és",
+ "Product s",
+ "uer do",
+ "▁ge lang",
+ "▁gel ang",
+ "zn ik",
+ "z nik",
+ "ha gen",
+ "h agen",
+ "an onymous",
+ "▁sv g",
+ "▁ svg",
+ "▁Cons eil",
+ "▁Conse il",
+ "▁A ri",
+ "▁Ar i",
+ "col i",
+ "co li",
+ "c oli",
+ "▁c zy",
+ "▁cz y",
+ "▁ czy",
+ "▁C V",
+ "▁ CV",
+ "▁f ord",
+ "▁for d",
+ "▁fo rd",
+ "▁ ford",
+ "▁Au ßer",
+ "▁Auß er",
+ "▁C I",
+ "▁ CI",
+ "▁t empt",
+ "▁tem pt",
+ "▁temp t",
+ "▁Organ isation",
+ "á š",
+ "▁cy cles",
+ "▁cycle s",
+ "▁cycl es",
+ "▁ges lacht",
+ "▁лю дей",
+ "ým i",
+ "ý mi",
+ "▁S pieler",
+ "▁Spiel er",
+ "ef e",
+ "e fe",
+ "▁Mar vel",
+ "▁por tal",
+ "▁port al",
+ "▁porta l",
+ "▁ portal",
+ "▁Сер г",
+ "▁g rado",
+ "▁gr ado",
+ "▁gra do",
+ "▁grad o",
+ "▁hand lers",
+ "▁handle rs",
+ "▁handler s",
+ "▁Inter face",
+ "▁ Interface",
+ "AM E",
+ "A ME",
+ "▁ser iously",
+ "▁serious ly",
+ "▁B inding",
+ "▁Bin ding",
+ "▁Bind ing",
+ "▁ Binding",
+ "▁R ang",
+ "▁Ra ng",
+ "▁Ran g",
+ "▁n ada",
+ "▁na da",
+ "▁nad a",
+ "oc e",
+ "o ce",
+ "▁inte gra",
+ "▁integr a",
+ "oc racy",
+ "ocr acy",
+ "▁аль бо",
+ "▁st ability",
+ "▁stabil ity",
+ "Un s",
+ "U ns",
+ "▁v eter",
+ "▁ve ter",
+ "-- ----+",
+ "---- --+",
+ "--- ---+",
+ "------ +",
+ "----- -+",
+ "▁se rait",
+ "▁ser ait",
+ "▁sera it",
+ "▁om itted",
+ "▁uncertain ty",
+ "on ian",
+ "oni an",
+ "onia n",
+ "▁re sto",
+ "▁r esto",
+ "▁res to",
+ "▁rest o",
+ "▁же лез",
+ "▁од ной",
+ "▁одно й",
+ "▁Bevölker ung",
+ "▁K raft",
+ "▁Kr aft",
+ "▁Kra ft",
+ "ст р",
+ "▁Mos cow",
+ "la ne",
+ "lan e",
+ "l ane",
+ "ar ab",
+ "ara b",
+ "a rab",
+ "▁s pole",
+ "▁sp ole",
+ "▁spo le",
+ "▁сво его",
+ "? :",
+ "ST ART",
+ "▁ин тер",
+ "▁инте р",
+ "▁sym pt",
+ "▁Loren zo",
+ "▁ej ec",
+ "▁pros per",
+ "DA T",
+ "D AT",
+ "лимпи й",
+ "▁sh apes",
+ "▁shape s",
+ "value Of",
+ "▁associ ate",
+ "▁Med ien",
+ "▁Medi en",
+ "EN V",
+ "▁с ре",
+ "▁држа ве",
+ "▁the ories",
+ "he b",
+ "h eb",
+ "▁Way ne",
+ "▁String Builder",
+ "iw ers",
+ "i wers",
+ "▁M aps",
+ "▁Ma ps",
+ "▁Map s",
+ "Ph ys",
+ "\\} \\",
+ "\\ }\\",
+ "▁P arte",
+ "▁Par te",
+ "▁Part e",
+ "▁Hud son",
+ "ло н",
+ "л он",
+ "L ng",
+ "▁р ы",
+ "▁ ры",
+ "ст ей",
+ "сте й",
+ "с тей",
+ "la u",
+ "l au",
+ "an cer",
+ "ance r",
+ "anc er",
+ "▁Co ppa",
+ "▁Cop pa",
+ "▁вій сь",
+ "▁u cc",
+ "▁Pat tern",
+ "▁ Pattern",
+ "▁gar bage",
+ "▁Gon zález",
+ "▁Encyc lop",
+ "et ten",
+ "ett en",
+ "ette n",
+ "Ex ternal",
+ "Ext ernal",
+ "RE F",
+ "R EF",
+ "> ;",
+ "lij ke",
+ "lijk e",
+ "▁inter sect",
+ "▁Un less",
+ "▁de eper",
+ "▁deep er",
+ "▁ж і",
+ "▁ жі",
+ "de nt",
+ "den t",
+ "d ent",
+ "le f",
+ "l ef",
+ "▁ch anson",
+ "▁diff us",
+ "▁pr imi",
+ "▁prim i",
+ "▁pri mi",
+ "▁W ieder",
+ "▁Wi eder",
+ "▁Wie der",
+ "▁a ws",
+ "▁aw s",
+ "▁ aws",
+ "ow ana",
+ "owa na",
+ "owan a",
+ "▁so ciale",
+ "▁social e",
+ "▁soci ale",
+ "▁soc iale",
+ "ik k",
+ "i kk",
+ "ль ной",
+ "льно й",
+ "▁div isions",
+ "▁division s",
+ "▁divis ions",
+ "ло со",
+ "▁Cl aud",
+ "▁Cla ud",
+ "▁Y a",
+ "▁v oce",
+ "▁vo ce",
+ "▁voc e",
+ "▁B ranch",
+ "▁Br anch",
+ "▁Bran ch",
+ "▁f itted",
+ "▁fit ted",
+ "or r",
+ "o rr",
+ "ôt el",
+ "ô tel",
+ "st roke",
+ "str oke",
+ "list ener",
+ "listen er",
+ "im an",
+ "ima n",
+ "i man",
+ "во сто",
+ "▁Sh ah",
+ "Int roduction",
+ "▁new line",
+ "▁t ile",
+ "▁til e",
+ "▁ti le",
+ "'] ))",
+ "']) )",
+ "' ]))",
+ "▁trav aux",
+ "▁trava ux",
+ "CON FIG",
+ "▁quadr atic",
+ "on neur",
+ "onn eur",
+ "onne ur",
+ "▁Gi org",
+ "▁ident ific",
+ "éric aine",
+ "érica ine",
+ "▁UI View",
+ "▁ UIView",
+ "▁Lib eral",
+ "▁Liber al",
+ "▁K och",
+ "▁Ko ch",
+ "▁Berlin er",
+ "▁Berl iner",
+ "▁not ifications",
+ "▁notification s",
+ "▁Su san",
+ "▁Sus an",
+ "▁c adre",
+ "▁cad re",
+ "▁K loster",
+ "▁Kl oster",
+ "▁exam ine",
+ "▁е дин",
+ "▁еди н",
+ "▁UN ION",
+ "▁al ten",
+ "▁alt en",
+ "▁alte n",
+ "▁f init",
+ "▁fin it",
+ "▁fi nit",
+ "▁pe dig",
+ "▁ped ig",
+ "cy k",
+ "c yk",
+ "▁mouv ement",
+ "▁mou vement",
+ "IO S",
+ "I OS",
+ "▁бри тан",
+ "▁b out",
+ "▁bo ut",
+ "▁bou t",
+ "▁ав тор",
+ "▁авто р",
+ "ниц тво",
+ "ет о",
+ "е то",
+ "le ra",
+ "ler a",
+ "l era",
+ "cl s",
+ "c ls",
+ "▁L ey",
+ "▁Le y",
+ "am y",
+ "a my",
+ "ag ens",
+ "age ns",
+ "agen s",
+ "a gens",
+ "as hed",
+ "ash ed",
+ "▁ok rę",
+ "г ро",
+ "el lett",
+ "ell ett",
+ "elle tt",
+ "▁F ellow",
+ "▁Fel low",
+ "▁manif old",
+ "$) ,",
+ "$ ),",
+ "ld er",
+ "l der",
+ "▁v oz",
+ "▁vo z",
+ "▁be gg",
+ "▁beg g",
+ "▁b aron",
+ "▁bar on",
+ "▁ba ron",
+ "▁f id",
+ "▁fi d",
+ "▁f iring",
+ "▁fi ring",
+ "▁fir ing",
+ "il da",
+ "ild a",
+ "de k",
+ "d ek",
+ "A U",
+ "it are",
+ "ita re",
+ "itar e",
+ "▁A ra",
+ "▁Ar a",
+ "▁Ex it",
+ "▁ Exit",
+ "▁cin emat",
+ "▁cinema t",
+ "▁int ros",
+ "▁intr os",
+ "▁intro s",
+ "▁contact s",
+ "пе ни",
+ "пен и",
+ "▁m öglich",
+ "▁Singap ore",
+ "str öm",
+ "▁H ern",
+ "▁He rn",
+ "▁Her n",
+ "▁six th",
+ "▁public ations",
+ "▁pub lications",
+ "▁publication s",
+ "vi e",
+ "v ie",
+ "▁H at",
+ "▁Ha t",
+ "▁accept ing",
+ "á c",
+ "st wo",
+ "s two",
+ "▁quiet ly",
+ "Ph oto",
+ "▁b asket",
+ "▁bas ket",
+ "▁eigen values",
+ "▁mé dec",
+ "▁méd ec",
+ "▁O limp",
+ "▁Ol imp",
+ "▁цер ков",
+ "al in",
+ "ali n",
+ "a lin",
+ "con sum",
+ "cons um",
+ "▁l assen",
+ "▁las sen",
+ "▁ lassen",
+ "▁ан ти",
+ "▁S eq",
+ "▁Se q",
+ "▁ Seq",
+ "\"; \r",
+ "\" ;\r",
+ "ra re",
+ "rar e",
+ "r are",
+ "▁$ |\\",
+ "▁$| \\",
+ "▁n ick",
+ "▁ni ck",
+ "▁nic k",
+ "▁ nick",
+ "df lare",
+ "V ec",
+ "bind ung",
+ "▁b g",
+ "▁ bg",
+ "ch anges",
+ "change s",
+ "chan ges",
+ "Day s",
+ "Da ys",
+ "D ays",
+ "▁M ouse",
+ "▁Mo use",
+ "▁Mou se",
+ "▁ Mouse",
+ "▁wait ed",
+ "▁wa ited",
+ "▁Tom atoes",
+ "▁f as",
+ "▁fa s",
+ "▁ fas",
+ "ver te",
+ "vert e",
+ "v erte",
+ "▁success ion",
+ "▁succ ession",
+ "со р",
+ "с ор",
+ "▁s ols",
+ "▁so ls",
+ "▁sol s",
+ "▁R ender",
+ "▁Re nder",
+ "▁Ren der",
+ "▁ Render",
+ "▁lead ership",
+ "▁leader ship",
+ "▁leaders hip",
+ "▁signific ance",
+ "▁ga uche",
+ "▁gau che",
+ "ca no",
+ "can o",
+ "c ano",
+ "▁P ie",
+ "▁Pi e",
+ "enso ort",
+ "▁cam bio",
+ "▁camb io",
+ "▁у з",
+ "▁ende av",
+ "Comp leted",
+ "Comple ted",
+ "Complete d",
+ "▁Архив ная",
+ "j d",
+ "ór ico",
+ "ó rico",
+ "▁church es",
+ "▁an imate",
+ "▁anim ate",
+ "▁ani mate",
+ "▁ animate",
+ "S G",
+ "comp ute",
+ "comput e",
+ "▁uniform ly",
+ "IN IT",
+ "ll es",
+ "lle s",
+ "l les",
+ "Http Request",
+ "К о",
+ "Di ff",
+ "D iff",
+ "▁s ah",
+ "▁sa h",
+ "air o",
+ "ai ro",
+ "a iro",
+ "may be",
+ "UT E",
+ "U TE",
+ "▁D ow",
+ "▁Do w",
+ "hu man",
+ "hum an",
+ "h uman",
+ "▁au rait",
+ "▁aur ait",
+ "dar k",
+ "d ark",
+ "▁re pair",
+ "▁rep air",
+ "▁n er",
+ "▁ne r",
+ "▁ ner",
+ "▁D abei",
+ "▁Da bei",
+ "▁Bo tan",
+ "▁Bot an",
+ "Or iginal",
+ "Origin al",
+ "az ă",
+ "▁N AT",
+ "▁NA T",
+ "im per",
+ "imp er",
+ "▁Y outh",
+ "▁You th",
+ "th es",
+ "the s",
+ "t hes",
+ "▁окру га",
+ "▁F lo",
+ "▁Fl o",
+ "▁break fast",
+ "ur ls",
+ "url s",
+ "▁über nahm",
+ "ár ios",
+ "ário s",
+ "á rios",
+ "▁O range",
+ "▁Or ange",
+ "▁Aff airs",
+ "sk e",
+ "s ke",
+ "▁not ify",
+ "▁ notify",
+ "imo ine",
+ "▁Ar ena",
+ "▁Are na",
+ "▁lib eral",
+ "▁liber al",
+ "▁o bec",
+ "▁ob ec",
+ "if a",
+ "i fa",
+ "gu ez",
+ "gue z",
+ "g uez",
+ "ion o",
+ "io no",
+ "i ono",
+ "пера тор",
+ "▁ret ained",
+ "▁retain ed",
+ "fa iled",
+ "fail ed",
+ "bin e",
+ "bi ne",
+ "b ine",
+ "т ных",
+ "▁CG Rect",
+ "cam era",
+ "ide note",
+ "iden ote",
+ "K B",
+ "▁l ights",
+ "▁light s",
+ "▁P ictures",
+ "▁Picture s",
+ "▁Squad ron",
+ "▁V olk",
+ "▁Vol k",
+ "▁b urg",
+ "▁bu rg",
+ "▁bur g",
+ "▁ burg",
+ ", ]",
+ "G i",
+ "ê que",
+ "make Text",
+ "▁every body",
+ "▁Hy per",
+ "▁Hyp er",
+ "▁De ux",
+ "▁gl ory",
+ "▁glo ry",
+ "pres entation",
+ "present ation",
+ "on ica",
+ "oni ca",
+ "onic a",
+ "o nica",
+ "▁fr ère",
+ "ag et",
+ "age t",
+ "a get",
+ "▁h ints",
+ "▁hint s",
+ "▁hin ts",
+ "▁t unnel",
+ "▁tun nel",
+ "▁E j",
+ "ál is",
+ "á lis",
+ "▁V iv",
+ "▁Vi v",
+ "ствен ных",
+ "▁c aps",
+ "▁cap s",
+ "▁ca ps",
+ "PA RT",
+ "PAR T",
+ "P ART",
+ "oc i",
+ "o ci",
+ "▁p rices",
+ "▁pr ices",
+ "▁pri ces",
+ "▁price s",
+ "curr ency",
+ "c urrency",
+ "▁a chter",
+ "▁ach ter",
+ "▁acht er",
+ "rom agnet",
+ "ge nder",
+ "gen der",
+ "gende r",
+ "g ender",
+ "▁s uis",
+ "▁su is",
+ "vers ions",
+ "version s",
+ "▁Tr aining",
+ "▁Tra ining",
+ "▁Train ing",
+ "in side",
+ "ins ide",
+ "eg e",
+ "e ge",
+ "▁tot ale",
+ "▁total e",
+ "▁D aar",
+ "▁Da ar",
+ "▁grud nia",
+ "▁I er",
+ "▁occasion s",
+ "▁occas ions",
+ "▁k de",
+ "▁tensor flow",
+ "▁ tensorflow",
+ "▁ó r",
+ "▁ ór",
+ "Method s",
+ "▁loop ing",
+ "▁direct eur",
+ "k ę",
+ "▁is omorphism",
+ "▁Jo ão",
+ "▁al igned",
+ "▁align ed",
+ "▁ aligned",
+ "он ов",
+ "о нов",
+ "ur ger",
+ "urg er",
+ "▁n ova",
+ "▁no va",
+ "▁nov a",
+ "mor row",
+ "m orrow",
+ "al tern",
+ "alt ern",
+ "alter n",
+ "H D",
+ "▁m arqu",
+ "▁mar qu",
+ "at ivas",
+ "ativ as",
+ "ati vas",
+ "ativa s",
+ "gg reg",
+ "g greg",
+ "▁anci en",
+ "▁anc ien",
+ "ni t",
+ "n it",
+ "▁sec ured",
+ "▁secure d",
+ "mi er",
+ "m ier",
+ "▁O le",
+ "▁Ol e",
+ "▁ин те",
+ "▁m inus",
+ "▁min us",
+ "▁ minus",
+ "▁clear er",
+ "▁n ello",
+ "▁nel lo",
+ "▁nell o",
+ "▁információ k",
+ "▁pro pre",
+ "▁prop re",
+ "{ .",
+ "il og",
+ "ilo g",
+ "i log",
+ "▁Qu ick",
+ "▁acc us",
+ "▁ac cus",
+ "emp loyee",
+ "▁з у",
+ "▁ зу",
+ "ць кий",
+ "фі цій",
+ "▁пу бли",
+ "▁ публи",
+ "▁b ent",
+ "▁be nt",
+ "▁ben t",
+ "▁по зво",
+ "▁П ор",
+ "▁По р",
+ "áz í",
+ "án ico",
+ "á nico",
+ "empty set",
+ "▁sur tout",
+ "re no",
+ "ren o",
+ "r eno",
+ "un ya",
+ "▁у ез",
+ "▁Mill ionen",
+ "▁listop ada",
+ "▁M aine",
+ "▁Ma ine",
+ "▁Main e",
+ "▁Mai ne",
+ "▁gru pos",
+ "▁grupo s",
+ "▁grup os",
+ "▁St orage",
+ "▁Sto rage",
+ "▁ Storage",
+ "▁app le",
+ "▁ap ple",
+ "▁ apple",
+ "▁L ö",
+ "ou sed",
+ "ous ed",
+ "ouse d",
+ "o used",
+ "д ро",
+ "sc i",
+ "s ci",
+ "▁hi bernate",
+ "▁ hibernate",
+ "do g",
+ "d og",
+ "▁во сто",
+ "▁вос то",
+ "▁ восто",
+ "▁intens ity",
+ "leg end",
+ "lege nd",
+ "legen d",
+ "▁W ille",
+ "▁Will e",
+ "▁Wil le",
+ "▁Wi lle",
+ "▁szer int",
+ "ges ellschaft",
+ "▁L iving",
+ "▁Li ving",
+ "▁Liv ing",
+ "al lo",
+ "all o",
+ "▁S plit",
+ "▁Sp lit",
+ "▁ Split",
+ "dr u",
+ "d ru",
+ "ne ed",
+ "n eed",
+ "▁Дж он",
+ "▁Sw iss",
+ "▁sp raw",
+ "▁spr aw",
+ "▁be ho",
+ "▁beh o",
+ "▁fot ograf",
+ "▁ren contre",
+ "▁k is",
+ "▁ki s",
+ "▁sign ing",
+ "▁sig ning",
+ "ak ult",
+ "aku lt",
+ "▁index ing",
+ "ap or",
+ "a por",
+ "▁con ception",
+ "▁concept ion",
+ "▁conce ption",
+ "ag greg",
+ "agg reg",
+ "a ggreg",
+ "▁Са вез",
+ "▁aff air",
+ "ě ní",
+ "A ugust",
+ "▁се кре",
+ "▁miesz kań",
+ "UI Image",
+ "▁b ishop",
+ "▁bi shop",
+ "▁ bishop",
+ "▁serv ants",
+ "▁servant s",
+ "▁tr ail",
+ "▁tra il",
+ "di git",
+ "dig it",
+ "▁jo ins",
+ "▁join s",
+ "▁N ear",
+ "▁Ne ar",
+ "öff entlich",
+ "> {",
+ "▁sk ład",
+ "ge führt",
+ "gef ührt",
+ "▁Hol z",
+ "▁Milit är",
+ "ach i",
+ "ac hi",
+ "a chi",
+ "Up per",
+ "U pper",
+ "pi ne",
+ "pin e",
+ "p ine",
+ "ut zt",
+ "utz t",
+ "▁nu ova",
+ "ibr ation",
+ "▁B ien",
+ "▁Bi en",
+ "▁пер вый",
+ "▁первы й",
+ "▁Cre ating",
+ "On ce",
+ "▁ein mal",
+ "▁ge ometric",
+ "▁geomet ric",
+ "st vo",
+ "▁k W",
+ "▁decom position",
+ "▁com edy",
+ "▁come dy",
+ "▁activ ation",
+ "▁an gry",
+ "▁ang ry",
+ "ill eurs",
+ "ille urs",
+ "▁inst antly",
+ "▁instant ly",
+ "▁suggest ing",
+ "▁C lay",
+ "▁Cl ay",
+ "▁Cla y",
+ "co t",
+ "c ot",
+ "▁G én",
+ "▁Gé n",
+ "($ (",
+ "( $(",
+ "un wrap",
+ "▁lif ted",
+ "▁lift ed",
+ "▁K it",
+ "▁Ki t",
+ "▁ Kit",
+ "▁l inea",
+ "▁li nea",
+ "▁line a",
+ "▁lin ea",
+ "о к",
+ "ha rt",
+ "har t",
+ "h art",
+ "-> _",
+ "▁n uit",
+ "▁nu it",
+ "▁Iss ue",
+ "ли и",
+ "▁r öm",
+ "Task s",
+ "▁S r",
+ "▁se is",
+ "▁sei s",
+ "as ia",
+ "asi a",
+ "}} $.",
+ "}}$ .",
+ "} }$.",
+ ": {",
+ "control s",
+ "contr ols",
+ "▁S tim",
+ "▁St im",
+ "▁Re cht",
+ "▁Rec ht",
+ "ocia ción",
+ "oci ación",
+ "▁N atal",
+ "▁Na tal",
+ "▁Nat al",
+ "▁Philipp ines",
+ "ul en",
+ "ule n",
+ "u len",
+ "F ixed",
+ "▁switch ed",
+ "Z ip",
+ "os pel",
+ "osp el",
+ "▁нача ле",
+ "▁B lan",
+ "▁Bl an",
+ "▁Bla n",
+ "ur st",
+ "urs t",
+ "▁aut our",
+ "▁auto ur",
+ "C a",
+ "▁lat itude",
+ "▁F rei",
+ "▁Fre i",
+ "▁Fr ei",
+ "▁Mus ée",
+ "▁K urz",
+ "▁Kur z",
+ "▁Ku rz",
+ "▁reg ião",
+ "sw ap",
+ "▁h ate",
+ "▁ha te",
+ "▁hat e",
+ "▁mod ifications",
+ "▁modification s",
+ "▁modific ations",
+ "▁К ом",
+ "▁Ко м",
+ "▁Anto ine",
+ "ug a",
+ "u ga",
+ "RE CT",
+ "R ECT",
+ "ét er",
+ "é ter",
+ "G ROUP",
+ "▁sacr ific",
+ "▁W he",
+ "▁Wh e",
+ "▁Ste vens",
+ "▁Steve ns",
+ "▁Steven s",
+ "olog ische",
+ "Sum mary",
+ "ob s",
+ "o bs",
+ "hn en",
+ "h nen",
+ "< %=",
+ "di enst",
+ "d ienst",
+ "re mark",
+ "rem ark",
+ "r emark",
+ "▁veröff entlicht",
+ "е л",
+ "▁M ock",
+ "▁Mo ck",
+ "▁ Mock",
+ "▁Ль в",
+ "▁tr ês",
+ "g b",
+ "▁celebr ated",
+ "▁E b",
+ "▁c osta",
+ "▁co sta",
+ "▁cost a",
+ "▁cos ta",
+ "▁Ge ographic",
+ "▁att achment",
+ "▁attach ment",
+ "mann schaft",
+ "▁depend ence",
+ "� �",
+ "▁att itude",
+ "et al",
+ "eta l",
+ "e tal",
+ "vi c",
+ "v ic",
+ "ba ut",
+ "bau t",
+ "b aut",
+ "▁д ов",
+ "▁до в",
+ "▁ дов",
+ "▁inter ven",
+ "▁G ü",
+ "ón ica",
+ "ó nica",
+ "▁P on",
+ "▁Po n",
+ "▁dispon ible",
+ "▁F eb",
+ "▁Fe b",
+ "▁wor ship",
+ "▁Specific ally",
+ "H y",
+ "ij u",
+ "i ju",
+ "▁c b",
+ "▁ cb",
+ "▁sp ac",
+ "lev eland",
+ "level and",
+ "▁local idad",
+ "▁prec eding",
+ "▁preced ing",
+ "▁H essen",
+ "x p",
+ "▁W ein",
+ "▁We in",
+ "▁Wei n",
+ "▁Rom â",
+ "▁gi orno",
+ "▁gior no",
+ "▁квіт ня",
+ "lla ços",
+ "▁Academ ia",
+ "▁k ül",
+ "▁Å rs",
+ "▁на ј",
+ "uc lide",
+ "Inter net",
+ "Intern et",
+ "or ton",
+ "ort on",
+ "▁c orn",
+ "▁cor n",
+ "▁co rn",
+ "я ми",
+ "▁\" *",
+ "▁Fel ix",
+ "ap at",
+ "apa t",
+ "a pat",
+ "▁сво и",
+ "MI T",
+ "M IT",
+ "ma de",
+ "mad e",
+ "m ade",
+ "▁lo comot",
+ "хо да",
+ "ход а",
+ "F P",
+ "▁p m",
+ "▁ pm",
+ ".* ;",
+ "▁H amm",
+ "▁Ha mm",
+ "▁Ham m",
+ "` }",
+ "Layout Inflater",
+ "== \"",
+ "= =\"",
+ "▁E ur",
+ "▁Eu r",
+ "▁d ogs",
+ "▁do gs",
+ "▁dog s",
+ "же нии",
+ "▁a zon",
+ "▁az on",
+ "▁ azon",
+ "▁em ulator",
+ "▁r icon",
+ "▁ric on",
+ "▁ri con",
+ "be eld",
+ "▁н у",
+ "▁ ну",
+ "▁approxim ate",
+ "L M",
+ "▁B ond",
+ "▁Bo nd",
+ "▁Bon d",
+ "▁en h",
+ "ęd z",
+ "ę dz",
+ "▁s olit",
+ "▁so lit",
+ "▁sol it",
+ "Relative Layout",
+ "et eor",
+ "ete or",
+ "ament os",
+ "amento s",
+ "▁in direct",
+ "▁ind irect",
+ "ib ől",
+ "▁g ros",
+ "▁gr os",
+ "▁gro s",
+ "▁Original s",
+ "▁Origin als",
+ "▁Orig inals",
+ "comm ands",
+ "command s",
+ "Ex port",
+ "Exp ort",
+ "▁A vec",
+ "▁Av ec",
+ "▁sole mn",
+ "▁solem n",
+ "▁correct ion",
+ "▁corre ction",
+ "▁corr ection",
+ "▁про води",
+ "▁прово ди",
+ "▁Mo sk",
+ "▁Mos k",
+ "▁по до",
+ "▁под о",
+ "▁geb ied",
+ "▁nast ęp",
+ "▁D river",
+ "▁Dr iver",
+ "▁Drive r",
+ "▁ Driver",
+ "▁O ok",
+ "▁V ec",
+ "▁Ve c",
+ "▁ Vec",
+ "▁lung o",
+ "▁lun go",
+ "fi cos",
+ "fic os",
+ "fico s",
+ "f icos",
+ "▁s vol",
+ "▁sv ol",
+ "▁svo l",
+ "▁k id",
+ "▁ki d",
+ "n ja",
+ "▁H r",
+ "▁под дер",
+ "▁vis ibility",
+ "▁ visibility",
+ "▁M éd",
+ "▁Mé d",
+ "▁c pu",
+ "▁cp u",
+ "▁ cpu",
+ "dis cussion",
+ "As set",
+ "Ass et",
+ "▁def ense",
+ "▁Any one",
+ "▁Just in",
+ "is zt",
+ "isz t",
+ "▁Coll ins",
+ "▁Val ent",
+ "▁P ale",
+ "▁Pa le",
+ "▁Pal e",
+ "▁f uel",
+ "▁fue l",
+ "▁fu el",
+ "▁n ose",
+ "▁no se",
+ "▁nos e",
+ "rí guez",
+ "▁Sch les",
+ "▁Schl es",
+ "▁Mal ays",
+ "▁com mut",
+ "▁comm ut",
+ "dr o",
+ "d ro",
+ "ui ng",
+ "u ing",
+ "▁R ico",
+ "▁Ric o",
+ "▁Ri co",
+ "▁Em ma",
+ "or p",
+ "o rp",
+ "▁K irk",
+ "▁Kir k",
+ "▁Qu ando",
+ "▁Ne ue",
+ "▁Neu e",
+ "▁de mande",
+ "▁dem ande",
+ "▁demand e",
+ "▁C over",
+ "▁Co ver",
+ "▁Cov er",
+ "▁res cue",
+ "▁gew ählt",
+ "▁Cal endar",
+ "▁ Calendar",
+ "▁Mad onna",
+ "W P",
+ "os hi",
+ "osh i",
+ "▁M aven",
+ "▁Ma ven",
+ "▁b elle",
+ "▁be lle",
+ "▁bel le",
+ "▁bell e",
+ "▁w x",
+ "▁ wx",
+ "▁su gar",
+ "▁sug ar",
+ "▁Bet rieb",
+ "▁equilib rium",
+ "E AR",
+ "▁text s",
+ "▁tex ts",
+ "сло в",
+ "с лов",
+ "▁czerw ca",
+ "▁D üsseld",
+ "▁EL SE",
+ "▁am ery",
+ "▁amer y",
+ "▁a ni",
+ "▁an i",
+ "▁ ani",
+ "▁o bey",
+ "▁ob ey",
+ "▁N ell",
+ "▁Ne ll",
+ "▁Nel l",
+ "▁in ne",
+ "▁inn e",
+ "▁т ро",
+ "▁ тро",
+ "F D",
+ "cc o",
+ "c co",
+ "▁Z ob",
+ "▁Zo b",
+ "al ette",
+ "ale tte",
+ "alet te",
+ "a lette",
+ "▁má jus",
+ "ect ed",
+ "ec ted",
+ "e cted",
+ "▁Tur key",
+ "▁Turk ey",
+ "▁Wh ether",
+ "▁Whe ther",
+ "q i",
+ "▁ш то",
+ "▁head quarters",
+ "en di",
+ "end i",
+ "ar us",
+ "aru s",
+ "a rus",
+ "op us",
+ "o pus",
+ "▁з оло",
+ "▁зо ло",
+ "▁de stru",
+ "▁dest ru",
+ "▁L ok",
+ "▁Lo k",
+ "▁satisf action",
+ "() \r",
+ "( )\r",
+ "▁Т ер",
+ "▁Те р",
+ "Jo se",
+ "J ose",
+ "▁con quer",
+ "▁conqu er",
+ "▁E ffect",
+ "▁ Effect",
+ "Layout Params",
+ "ie z",
+ "i ez",
+ "▁extern s",
+ "▁gegen über",
+ "▁E SP",
+ "▁ES P",
+ "ol ta",
+ "olt a",
+ "process or",
+ "proc essor",
+ "▁K ult",
+ "▁Ku lt",
+ "▁Atl anta",
+ "▁t ier",
+ "▁ti er",
+ "▁tie r",
+ "Oper ator",
+ "▁ди а",
+ "▁пи сь",
+ "▁gro ß",
+ "▁he arts",
+ "▁heart s",
+ "▁hear ts",
+ "▁mill imeter",
+ "al though",
+ "alth ough",
+ "al les",
+ "all es",
+ "alle s",
+ "a lles",
+ "▁Mag ic",
+ "tr aining",
+ "tra ining",
+ "train ing",
+ "ol ine",
+ "oli ne",
+ "olin e",
+ "o line",
+ "▁орган і",
+ ">\\< ^",
+ "> \\<^",
+ "ці аль",
+ "ex ports",
+ "export s",
+ "Work book",
+ "▁вере сня",
+ "▁t eles",
+ "▁te les",
+ "▁tele s",
+ "▁tel es",
+ "▁econom y",
+ "▁econ omy",
+ "▁ec onomy",
+ "▁t rap",
+ "▁tr ap",
+ "▁tra p",
+ "▁ref use",
+ "▁str anger",
+ "▁strange r",
+ "▁stran ger",
+ "▁inst inct",
+ "по да",
+ "ol an",
+ "ola n",
+ "o lan",
+ "▁n ing",
+ "▁ni ng",
+ "▁nin g",
+ "▁ ning",
+ "inf late",
+ "infl ate",
+ "itat ea",
+ "itate a",
+ "ack s",
+ "ac ks",
+ "a cks",
+ "▁J oy",
+ "▁Jo y",
+ "FL AG",
+ "FLA G",
+ "ail and",
+ "ai land",
+ "▁sort i",
+ "▁sor ti",
+ "▁в пер",
+ "▁p én",
+ "▁pé n",
+ "Not hing",
+ "No thing",
+ "N othing",
+ "▁sz áz",
+ "▁Á ng",
+ "▁A UT",
+ "▁ AUT",
+ "Act ions",
+ "Action s",
+ "A ctions",
+ "E very",
+ "▁чер вня",
+ "▁авто мо",
+ "▁rout ine",
+ "▁e struct",
+ "▁est ruct",
+ "▁G ang",
+ "▁Ga ng",
+ "▁Gan g",
+ "▁h oles",
+ "▁ho les",
+ "▁hol es",
+ "▁hole s",
+ "th esis",
+ "thes is",
+ "▁con cl",
+ "▁conc l",
+ "▁p é",
+ "ri ers",
+ "rie rs",
+ "rier s",
+ "r iers",
+ "ро вой",
+ "рово й",
+ "р овой",
+ "ad ic",
+ "adi c",
+ "a dic",
+ "Sp eed",
+ "Spe ed",
+ "▁command ed",
+ "▁N azionale",
+ "▁Naz ionale",
+ "Man aged",
+ "▁DE CLARE",
+ "▁se dan",
+ "▁sed an",
+ "String s",
+ "Str ings",
+ "▁sa cred",
+ "▁sac red",
+ "▁sacr ed",
+ "ter such",
+ "ters uch",
+ "▁abit anti",
+ "br it",
+ "b rit",
+ "▁N CAA",
+ "▁NC AA",
+ "▁С П",
+ "▁a ged",
+ "▁ag ed",
+ "▁age d",
+ "▁ aged",
+ "▁Ch iesa",
+ "▁Chi esa",
+ "▁re vision",
+ "▁rev ision",
+ "▁revis ion",
+ "op ro",
+ "o pro",
+ "▁over write",
+ "emb ros",
+ "embro s",
+ "▁sort ie",
+ "▁sorti e",
+ "▁ot ten",
+ "▁ott en",
+ "xi v",
+ "x iv",
+ "▁d eli",
+ "▁de li",
+ "▁del i",
+ "▁A sp",
+ "▁As p",
+ "▁b alls",
+ "▁bal ls",
+ "▁ball s",
+ "ka f",
+ "k af",
+ "▁br ave",
+ "▁bra ve",
+ "▁все го",
+ "▁вс его",
+ "eg n",
+ "e gn",
+ "jp eg",
+ "▁O sten",
+ "▁Os ten",
+ "▁Ost en",
+ "Const ants",
+ "▁Inf antry",
+ "▁N ev",
+ "▁Ne v",
+ "▁я ких",
+ "▁як их",
+ "▁му ниципа",
+ "ci ja",
+ "c ija",
+ "▁p oem",
+ "▁po em",
+ "▁ne gro",
+ "▁neg ro",
+ "ха р",
+ "х ар",
+ "▁A sk",
+ "▁As k",
+ "▁a vo",
+ "▁av o",
+ "▁ avo",
+ "▁Me yer",
+ "▁Mey er",
+ "▁W esten",
+ "▁We sten",
+ "▁West en",
+ "▁Wes ten",
+ "▁o ko",
+ "▁ok o",
+ "▁ oko",
+ "ag in",
+ "agi n",
+ "a gin",
+ "▁Süd en",
+ "▁Sü den",
+ "ent ries",
+ "entr ies",
+ "▁Rep ublik",
+ "▁Repub lik",
+ "Collection View",
+ "-- -----",
+ "---- ---",
+ "--- ----",
+ "------ -",
+ "----- --",
+ "- ------",
+ "▁fire fox",
+ "▁alc une",
+ "▁фо то",
+ "▁отри ма",
+ "~~~~ ~~~~",
+ "▁Ра з",
+ "▁Com plex",
+ "▁Comp lex",
+ "▁Comple x",
+ "▁p ia",
+ "▁pi a",
+ "▁public ada",
+ "we i",
+ "w ei",
+ "ced ure",
+ "occup ation",
+ "▁medic ine",
+ "▁dr ove",
+ "▁dro ve",
+ "Pro blem",
+ "▁beg inner",
+ "▁begin ner",
+ "▁thorough ly",
+ "ur ia",
+ "uri a",
+ "u ria",
+ "av ant",
+ "ava nt",
+ "avan t",
+ "uch a",
+ "uc ha",
+ "u cha",
+ "▁l ever",
+ "▁le ver",
+ "▁lev er",
+ "▁te atro",
+ "▁teat ro",
+ "AV A",
+ "A VA",
+ "sq u",
+ "s qu",
+ "tr at",
+ "tra t",
+ "t rat",
+ "iv atal",
+ "iva tal",
+ "▁d irty",
+ "▁dir ty",
+ "▁se conde",
+ "▁second e",
+ "▁sec onde",
+ "▁grav it",
+ "▁pro position",
+ "▁prop osition",
+ "▁propos ition",
+ "h bar",
+ "om ini",
+ "omin i",
+ "omi ni",
+ "▁ ”",
+ "▁C amil",
+ "▁Cam il",
+ "▁Ca mil",
+ "▁qu een",
+ "▁que en",
+ "mod ifier",
+ "J an",
+ "▁l yr",
+ "▁ly r",
+ "Com boBox",
+ "ion ic",
+ "io nic",
+ "ioni c",
+ "i onic",
+ "▁h oly",
+ "▁ho ly",
+ "▁hol y",
+ "▁Sebast ian",
+ "| _{",
+ "▁{ @",
+ "▁мо жно",
+ "▁мож но",
+ "▁Cre ative",
+ "▁inter ess",
+ "▁inte ress",
+ "▁C T",
+ "▁ CT",
+ "i ções",
+ "▁ch ant",
+ "▁cha nt",
+ "▁ chant",
+ "▁wsp ół",
+ "▁Мекси ка",
+ "▁ran ked",
+ "▁rank ed",
+ "▁paździer nika",
+ "▁b rut",
+ "▁br ut",
+ "▁bru t",
+ "▁far ther",
+ "▁V erb",
+ "▁Ver b",
+ "▁Ve rb",
+ "▁S even",
+ "▁Se ven",
+ "lb l",
+ "l bl",
+ "▁mention s",
+ "▁ment ions",
+ "▁F ight",
+ "▁Fig ht",
+ "if en",
+ "ife n",
+ "i fen",
+ "▁b og",
+ "▁bo g",
+ "▁re gres",
+ "▁reg res",
+ "▁sc oring",
+ "ic ane",
+ "ica ne",
+ "ican e",
+ "▁El li",
+ "▁Ell i",
+ "▁pie rw",
+ "▁pier w",
+ "me asure",
+ "ński ej",
+ "ń skiej",
+ "# {",
+ "▁де ся",
+ "▁var maste",
+ "▁Un ix",
+ "I Z",
+ "iti é",
+ "Prim ary",
+ "▁Spring er",
+ "▁Spr inger",
+ "ün g",
+ "ü ng",
+ "▁an v",
+ "▁vers ione",
+ "▁version e",
+ "▁should ers",
+ "▁shoulder s",
+ "▁бри га",
+ "▁j av",
+ "▁ja v",
+ "▁ jav",
+ "lt al",
+ "l tal",
+ "▁kall aste",
+ "▁Mitch ell",
+ "▁wire less",
+ "▁wir eless",
+ "▁Á l",
+ "resp ons",
+ "co uld",
+ "cou ld",
+ "c ould",
+ "▁re lax",
+ "▁rel ax",
+ "▁rela x",
+ "▁ relax",
+ "Lo nd",
+ "L ond",
+ "ń cz",
+ "ство вал",
+ "ствова л",
+ "▁pol ski",
+ "en ç",
+ "za r",
+ "z ar",
+ "▁d type",
+ "▁dt ype",
+ "ow ned",
+ "own ed",
+ "un known",
+ "unk nown",
+ "▁m utable",
+ "▁mu table",
+ "▁mut able",
+ "▁ mutable",
+ "▁si empre",
+ "▁Mont real",
+ "▁loc ate",
+ "▁tr aces",
+ "▁tra ces",
+ "▁trace s",
+ "▁trac es",
+ "▁ins gesamt",
+ "▁N il",
+ "▁Ni l",
+ "▁ Nil",
+ "▁п рода",
+ "▁про да",
+ "▁прод а",
+ "▁War ner",
+ "▁N au",
+ "▁Na u",
+ "tri angle",
+ "▁concentr ation",
+ "▁gentle men",
+ "äch t",
+ "ä cht",
+ "fil ters",
+ "filter s",
+ "inci pal",
+ "VAL ID",
+ "▁де пута",
+ "ad ó",
+ "▁kon st",
+ "gs å",
+ "ag as",
+ "aga s",
+ "a gas",
+ "▁meille ur",
+ "▁дан ным",
+ "є дна",
+ "en coded",
+ "enc oded",
+ "encode d",
+ "< '",
+ "▁she ets",
+ "▁sheet s",
+ "▁ sheets",
+ "cu ador",
+ "▁викори стову",
+ "▁De put",
+ "▁Dep ut",
+ "▁man ière",
+ "ą g",
+ "cs ol",
+ "c sol",
+ ")$ -",
+ ") $-",
+ "UI View",
+ "▁mill ones",
+ "▁E hren",
+ "▁Ehr en",
+ "Si l",
+ "S il",
+ "▁a tac",
+ "▁at ac",
+ "▁C old",
+ "▁Col d",
+ "▁Co ld",
+ "\" \\",
+ "▁appro ached",
+ "▁approach ed",
+ "▁Års med",
+ "W M",
+ "▁De port",
+ "▁Dep ort",
+ "mi s",
+ "m is",
+ "and box",
+ "ob serv",
+ "obs erv",
+ "set ting",
+ "sett ing",
+ "ha tó",
+ "hat ó",
+ "h ató",
+ "▁s trat",
+ "▁st rat",
+ "▁str at",
+ "▁stra t",
+ "▁s pre",
+ "▁sp re",
+ "▁spr e",
+ "▁ spre",
+ "▁person ne",
+ "▁pers onne",
+ "▁personn e",
+ "▁dir ige",
+ "▁dirig e",
+ "pu ll",
+ "p ull",
+ "da ting",
+ "dat ing",
+ "d ating",
+ "▁F act",
+ "▁Fa ct",
+ "▁Fac t",
+ "▁ Fact",
+ "▁manip ulate",
+ "▁M AC",
+ "▁MA C",
+ "▁d ej",
+ "▁de j",
+ "ult imo",
+ "F X",
+ "Li fe",
+ "L ife",
+ "▁c rack",
+ "▁cr ack",
+ "▁cra ck",
+ "▁m í",
+ "▁п ове",
+ "▁по ве",
+ "▁пов е",
+ "▁w ore",
+ "▁wor e",
+ "▁wo re",
+ "univers ité",
+ "▁form ulas",
+ "▁formula s",
+ "▁Elis abeth",
+ "pl ots",
+ "plot s",
+ "mi le",
+ "mil e",
+ "m ile",
+ "▁me nor",
+ "▁men or",
+ "ти л",
+ "т ил",
+ "key word",
+ "▁Balt imore",
+ "hr er",
+ "hre r",
+ "h rer",
+ "▁C lement",
+ "▁Cl ement",
+ "▁Cle ment",
+ "vi m",
+ "v im",
+ "ra ss",
+ "ras s",
+ "r ass",
+ "T ake",
+ "▁cím ű",
+ "▁Con vention",
+ "at ge",
+ "se ed",
+ "see d",
+ "s eed",
+ "▁D í",
+ "▁Sp ider",
+ "ah oo",
+ "aho o",
+ "▁име ет",
+ "ühr t",
+ "üh rt",
+ "▁по писа",
+ "▁C ot",
+ "▁Co t",
+ "▁no bles",
+ "▁noble s",
+ "▁nob les",
+ "RE SS",
+ "RES S",
+ "▁che min",
+ "▁chem in",
+ "▁gł ówn",
+ "G G",
+ "▁German ia",
+ "▁Ger mania",
+ "▁Germ ania",
+ "▁Alexand re",
+ "he ns",
+ "hen s",
+ "h ens",
+ "sw ift",
+ "oo p",
+ "o op",
+ "Sub view",
+ "▁requ iring",
+ "ęd zy",
+ "ędz y",
+ "▁f ict",
+ "▁fi ct",
+ "▁fic t",
+ "▁Кон стан",
+ "▁dé put",
+ "▁dép ut",
+ "▁surpr ising",
+ "▁de ix",
+ "▁dei x",
+ "▁unter schied",
+ "in son",
+ "ins on",
+ "▁Char acter",
+ "▁ Character",
+ "▁g estion",
+ "▁ges tion",
+ "▁gest ion",
+ "ch us",
+ "c hus",
+ "com es",
+ "co mes",
+ "come s",
+ "▁n eur",
+ "▁ne ur",
+ "▁neu r",
+ "▁ neur",
+ "▁ye ux",
+ "ol lar",
+ "oll ar",
+ "▁par ad",
+ "▁para d",
+ "▁pa rad",
+ "▁mag giore",
+ "▁maggio re",
+ "▁maggior e",
+ "TR AN",
+ "▁vo tre",
+ "▁vot re",
+ "▁des cent",
+ "▁desc ent",
+ "▁I con",
+ "▁ Icon",
+ "▁Jud ge",
+ "▁occup ation",
+ "▁ occupation",
+ "ep ing",
+ "e ping",
+ "▁ton gue",
+ "▁tong ue",
+ "▁En llaços",
+ "ru f",
+ "r uf",
+ "▁prote in",
+ "▁prot ein",
+ "▁vis itors",
+ "▁visit ors",
+ "▁visitor s",
+ "ax y",
+ "a xy",
+ "es ten",
+ "est en",
+ "este n",
+ "e sten",
+ "bl ica",
+ "blic a",
+ "b lica",
+ "h w",
+ "▁spir its",
+ "▁spirit s",
+ "▁redu ces",
+ "▁reduce s",
+ "▁м ен",
+ "▁ме н",
+ "▁ мен",
+ "▁L amb",
+ "▁La mb",
+ "▁Lam b",
+ "▁M ine",
+ "▁Min e",
+ "▁Mi ne",
+ "▁ver ified",
+ "▁B aby",
+ "▁Ba by",
+ "▁Bab y",
+ "▁pr ize",
+ "▁pri ze",
+ "в ър",
+ "▁rat ings",
+ "▁rating s",
+ "▁f ore",
+ "▁for e",
+ "▁fo re",
+ "▁ fore",
+ "as ha",
+ "ash a",
+ "a sha",
+ "ur rence",
+ "urr ence",
+ "▁int ér",
+ "▁Ol ímp",
+ "cr a",
+ "c ra",
+ "▁comput ational",
+ "▁computation al",
+ "ir che",
+ "irc he",
+ ".: ",
+ "▁illustr ated",
+ "▁illustrate d",
+ "▁Sh are",
+ "▁house holds",
+ "▁household s",
+ "▁con volution",
+ "oe md",
+ "oem d",
+ "▁zd oby",
+ "▁zdob y",
+ "cc c",
+ "c cc",
+ "▁quant ities",
+ "Ch e",
+ "C he",
+ "Sh ould",
+ "▁ge nius",
+ "▁gen ius",
+ "ad j",
+ "a dj",
+ "х ва",
+ "Пе тер",
+ "EM A",
+ "E MA",
+ "▁R ights",
+ "▁Right s",
+ "▁E li",
+ "▁El i",
+ "VA R",
+ "V AR",
+ "ш ло",
+ "▁з бір",
+ "ift ung",
+ "▁cont ributed",
+ "▁contrib uted",
+ "▁contribu ted",
+ "▁contribute d",
+ "ze f",
+ "z ef",
+ "▁CH AR",
+ "▁ CHAR",
+ "▁S ib",
+ "▁Si b",
+ "▁M ant",
+ "▁Man t",
+ "▁Ma nt",
+ "▁свя зи",
+ "▁java fx",
+ "▁c ependant",
+ "▁in tu",
+ "▁int u",
+ "▁т вор",
+ "▁ Ó",
+ "gu er",
+ "gue r",
+ "g uer",
+ "ra do",
+ "rad o",
+ "r ado",
+ "▁Re vol",
+ "▁Rev ol",
+ "▁fé min",
+ "▁Or leans",
+ "▁p oj",
+ "▁po j",
+ "▁p rez",
+ "▁pr ez",
+ "▁pre z",
+ "Te x",
+ "T ex",
+ "ou wd",
+ "ouw d",
+ "? (",
+ "▁L IM",
+ "▁LI M",
+ "ist ique",
+ "isti que",
+ "es ar",
+ "esa r",
+ "▁he ures",
+ "ic ki",
+ "ick i",
+ "i cki",
+ "▁d bo",
+ "▁db o",
+ "▁ dbo",
+ "sk ih",
+ "ski h",
+ "s kih",
+ "conf irm",
+ "▁vil ág",
+ "▁ci utat",
+ "▁D R",
+ "▁ DR",
+ "▁Haw ai",
+ "ch ed",
+ "che d",
+ "c hed",
+ "▁s pher",
+ "▁sp her",
+ "▁Art ikel",
+ "▁Multi ple",
+ "ci u",
+ "c iu",
+ "▁м ы",
+ "▁ мы",
+ "▁lip ca",
+ "]( /",
+ "] (/",
+ "Str ategy",
+ "▁Al abama",
+ "SD K",
+ "S DK",
+ "UT C",
+ "U TC",
+ "__ .",
+ "_ _.",
+ "Arg uments",
+ "Argument s",
+ "▁set ContentView",
+ "î le",
+ "By Val",
+ "▁J VM",
+ "юще го",
+ "▁Leon ard",
+ "▁just ify",
+ "це м",
+ "ц ем",
+ "▁n ab",
+ "▁na b",
+ "▁ nab",
+ "CCE SS",
+ "C CESS",
+ "▁hope s",
+ "▁ho pes",
+ "▁hop es",
+ ") &",
+ "se ro",
+ "ser o",
+ "s ero",
+ "▁за й",
+ "слі д",
+ "▁R ég",
+ "▁Ré g",
+ "▁S ang",
+ "▁San g",
+ "▁Sa ng",
+ "▁f ung",
+ "▁fun g",
+ "▁fu ng",
+ "ba ar",
+ "b aar",
+ "▁coff ee",
+ "ass embly",
+ "▁В ін",
+ "▁Ві н",
+ "э й",
+ "▁comp rend",
+ "▁compr end",
+ "fil led",
+ "fill ed",
+ "f illed",
+ "р д",
+ "od ia",
+ "odi a",
+ "o dia",
+ "▁g ens",
+ "▁ge ns",
+ "▁gen s",
+ "▁ gens",
+ "fl uss",
+ "flu ss",
+ "f luss",
+ "Draw able",
+ "▁sur ve",
+ "▁surv e",
+ "Set up",
+ "▁n ależ",
+ "▁conj unto",
+ "▁Е го",
+ "▁old al",
+ "▁ol dal",
+ "▁ver bose",
+ "▁verb ose",
+ "▁Elect ric",
+ "▁H arrison",
+ "▁Harr ison",
+ "▁Harris on",
+ "en gen",
+ "eng en",
+ "par agraph",
+ "para graph",
+ "▁n ouvelles",
+ "▁nouve lles",
+ "▁nouvelle s",
+ "▁вре ме",
+ "▁m emor",
+ "▁me mor",
+ "▁mem or",
+ "▁mayo ría",
+ "▁mayor ía",
+ "са д",
+ "▁bat aille",
+ "▁bata ille",
+ "▁therm al",
+ "▁ther mal",
+ "▁Хро нологи",
+ "▁B etter",
+ "▁Bet ter",
+ "by e",
+ "b ye",
+ "▁теа тра",
+ "ro e",
+ "r oe",
+ "▁se gle",
+ "▁seg le",
+ "ro tt",
+ "rot t",
+ "r ott",
+ "▁opin ions",
+ "▁opinion s",
+ ")} )",
+ ") })",
+ "üh le",
+ "ühl e",
+ "▁G ün",
+ "▁Gü n",
+ "▁ Щ",
+ "b ól",
+ "▁Lar ry",
+ "▁so lic",
+ "▁sol ic",
+ "▁z war",
+ "▁zw ar",
+ "▁Car oline",
+ "▁Carol ine",
+ "▁Reich s",
+ "Ext ensions",
+ "Extension s",
+ "mi gr",
+ "m igr",
+ ": @",
+ "▁en umerate",
+ "▁enumer ate",
+ "▁ enumerate",
+ "▁eigen en",
+ "▁eig enen",
+ "▁expl ore",
+ "▁explo re",
+ "ém u",
+ "é mu",
+ "▁g at",
+ "▁ga t",
+ "▁ gat",
+ "▁imper ial",
+ "▁Us ually",
+ "▁t ud",
+ "▁tu d",
+ "▁у кра",
+ "hi m",
+ "h im",
+ "▁cor ners",
+ "▁corner s",
+ "▁corn ers",
+ "▁S ER",
+ "▁SE R",
+ "▁ SER",
+ "▁interpre ter",
+ "▁interpret er",
+ "▁I ce",
+ "▁amount s",
+ "▁P ala",
+ "▁Pa la",
+ "▁Pal a",
+ "▁t inha",
+ "▁tin ha",
+ "vo le",
+ "vol e",
+ "v ole",
+ "▁g le",
+ "▁gl e",
+ "▁ gle",
+ "uc ci",
+ "▁sie he",
+ "Jac k",
+ "J ack",
+ "▁w oll",
+ "▁wo ll",
+ "▁wol l",
+ "▁e lder",
+ "▁el der",
+ "▁ко раб",
+ "▁eng ag",
+ "▁La urent",
+ "▁Laur ent",
+ "▁Lau rent",
+ "▁ach iev",
+ "ist ik",
+ "isti k",
+ "ar ct",
+ "arc t",
+ "тно го",
+ "т ного",
+ "▁g ir",
+ "▁gi r",
+ "▁Sing h",
+ "▁Sin gh",
+ "math op",
+ "US A",
+ "U SA",
+ "▁Pro jekt",
+ "▁de be",
+ "▁deb e",
+ "richt ung",
+ "r ichtung",
+ "▁T sch",
+ "▁Ts ch",
+ "um inate",
+ "umin ate",
+ "▁s zó",
+ "▁sz ó",
+ "ly ph",
+ "зи дент",
+ "зиден т",
+ "▁lim itations",
+ "▁limit ations",
+ "▁limitation s",
+ "юще й",
+ "▁b ila",
+ "▁bi la",
+ "▁bil a",
+ "P ush",
+ "▁off ering",
+ "▁offer ing",
+ "ien nes",
+ "ienne s",
+ "ienn es",
+ "i ennes",
+ "Fr i",
+ "F ri",
+ "▁post gresql",
+ "▁ postgresql",
+ "▁Tom my",
+ "▁partic olare",
+ "▁stolet í",
+ "▁ar rib",
+ "▁arr ib",
+ "▁E va",
+ "▁Ev a",
+ "sch ool",
+ "▁v endor",
+ "▁ven dor",
+ "▁vend or",
+ "▁ vendor",
+ "▁D allas",
+ "▁Dal las",
+ "▁pro long",
+ "CRE ATE",
+ "C REATE",
+ "▁suiv ante",
+ "STAT US",
+ "l à",
+ "k v",
+ "▁h äufig",
+ "▁Agr icult",
+ "▁h uit",
+ "▁hu it",
+ "▁in oltre",
+ "▁L loyd",
+ "▁францу з",
+ "▁вы пол",
+ "▁faith ful",
+ "▁В ар",
+ "▁Ва р",
+ "▁ver l",
+ "▁ve rl",
+ "▁ju ego",
+ "▁Резу лтати",
+ ", ...,",
+ "▁implicit ly",
+ "ir ks",
+ "irk s",
+ "Cal cul",
+ "▁m eses",
+ "▁mes es",
+ "om ed",
+ "ome d",
+ "o med",
+ "▁p ak",
+ "▁pa k",
+ "he rit",
+ "her it",
+ "▁opt ical",
+ "▁І сторія",
+ "ve is",
+ "▁capital e",
+ "▁capit ale",
+ "place holder",
+ "int rag",
+ "▁At las",
+ "▁Atl as",
+ "▁ Atlas",
+ ")] ;",
+ ") ];",
+ "ic ons",
+ "ico ns",
+ "icon s",
+ "i cons",
+ "▁B ent",
+ "▁Be nt",
+ "▁Ben t",
+ "▁W idget",
+ "▁ Widget",
+ "▁vol unt",
+ "av o",
+ "a vo",
+ "ég r",
+ "é gr",
+ "li ge",
+ "lig e",
+ "l ige",
+ "▁N AME",
+ "▁NA ME",
+ "▁ NAME",
+ "▁ab stra",
+ "▁abs tra",
+ "▁f ís",
+ "▁B rowser",
+ "▁Brow ser",
+ "▁ Browser",
+ "▁b ush",
+ "▁bu sh",
+ "▁bus h",
+ "ha ll",
+ "hal l",
+ "h all",
+ "▁cloud s",
+ "▁S UB",
+ "▁SU B",
+ "▁ SUB",
+ "▁t andis",
+ "▁tan dis",
+ "▁Common wealth",
+ "та я",
+ "▁exha ust",
+ "________ ________",
+ "▁Stat istics",
+ "▁Statist ics",
+ "▁Relig ion",
+ "▁Mu ham",
+ "ual s",
+ "ua ls",
+ "u als",
+ "go to",
+ "got o",
+ "g oto",
+ "Dig ital",
+ "Famil y",
+ "▁B un",
+ "▁Bu n",
+ "let in",
+ "Man agement",
+ "▁cap abilities",
+ "an nten",
+ "ann ten",
+ "annt en",
+ "annte n",
+ "▁се бе",
+ "▁st ays",
+ "▁stay s",
+ "▁sta ys",
+ "kt er",
+ "kte r",
+ "k ter",
+ "▁d ost",
+ "▁do st",
+ "▁dos t",
+ "▁Т ре",
+ "ло вич",
+ "лови ч",
+ "л ович",
+ "▁d ying",
+ "▁dy ing",
+ "se ctions",
+ "section s",
+ "sect ions",
+ "án os",
+ "á nos",
+ "▁app arten",
+ "▁appar ten",
+ "▁appart en",
+ "▁zo als",
+ "▁dr essed",
+ "▁dress ed",
+ "▁com press",
+ "▁comp ress",
+ "▁compr ess",
+ "ń ska",
+ "▁sierp nia",
+ "▁ти ту",
+ "diction ary",
+ "d ictionary",
+ "▁r abb",
+ "▁ra bb",
+ "▁vé rit",
+ "В о",
+ "▁sing leton",
+ "▁single ton",
+ "▁v ital",
+ "▁vi tal",
+ "▁vit al",
+ "▁vita l",
+ "Ref resh",
+ "ме ль",
+ "м ель",
+ "▁Z h",
+ "▁Af ghan",
+ "in kel",
+ "ink el",
+ "aa aa",
+ "▁particip ants",
+ "ar in",
+ "ari n",
+ "a rin",
+ "▁M old",
+ "▁Mo ld",
+ "▁Mol d",
+ "▁prim eros",
+ "▁prime ros",
+ "▁primer os",
+ "▁ра н",
+ "▁р ан",
+ "▁ ран",
+ "▁А мери",
+ "▁restaur ant",
+ "év el",
+ "é vel",
+ "▁S L",
+ "▁ SL",
+ "▁R ey",
+ "▁Re y",
+ "ch as",
+ "cha s",
+ "c has",
+ "▁elect rons",
+ "▁electron s",
+ "▁electro ns",
+ "▁Pitt s",
+ "▁Pit ts",
+ "▁J ules",
+ "▁Jul es",
+ "▁Ju les",
+ "ма й",
+ "en ant",
+ "ena nt",
+ "e nant",
+ "- }",
+ "ла д",
+ "▁Мос ква",
+ "▁Моск ва",
+ "go m",
+ "g om",
+ "▁Fern ández",
+ "fun d",
+ "fu nd",
+ "f und",
+ "int erno",
+ "inter no",
+ "intern o",
+ "▁M ari",
+ "▁Mar i",
+ "▁Ma ri",
+ "▁r ius",
+ "▁ri us",
+ "▁Pro zent",
+ "ст рі",
+ "стр і",
+ "▁в нут",
+ "ant erie",
+ "ante rie",
+ "anter ie",
+ "▁п рис",
+ "▁при с",
+ "▁пр ис",
+ "▁о бы",
+ "▁об ы",
+ "▁M arina",
+ "▁Mar ina",
+ "▁Mari na",
+ "▁occ urrence",
+ "▁occur rence",
+ "▁occurr ence",
+ "ri kt",
+ "rik t",
+ "r ikt",
+ "▁фи зи",
+ "▁sch wer",
+ "▁schw er",
+ "▁Г ре",
+ "Re set",
+ "Res et",
+ "▁much o",
+ "▁mu cho",
+ "an dr",
+ "and r",
+ "▁W ies",
+ "▁Wi es",
+ "▁Wie s",
+ "▁Ke ith",
+ "▁Jul ian",
+ "▁Juli an",
+ "▁Julia n",
+ "▁c ole",
+ "▁col e",
+ "▁co le",
+ "▁ cole",
+ "ci endo",
+ "c iendo",
+ "▁Cont empor",
+ "et ry",
+ "etr y",
+ "e try",
+ "el ian",
+ "eli an",
+ "elia n",
+ "ги и",
+ "▁го ло",
+ "▁г оло",
+ "▁d él",
+ "▁dé l",
+ "▁de cent",
+ "▁dec ent",
+ "▁dece nt",
+ "Р СР",
+ "▁sze ptember",
+ "ме ст",
+ "cast le",
+ "▁держа в",
+ "}\" )",
+ "} \")",
+ "▁ASC II",
+ "▁G len",
+ "▁Gl en",
+ "itzer land",
+ "T oggle",
+ "▁trad icional",
+ "▁P lat",
+ "▁Pl at",
+ "▁Pla t",
+ "ve e",
+ "v ee",
+ "ab gerufen",
+ "( |",
+ "CL I",
+ "C LI",
+ "}} $,",
+ "}}$ ,",
+ "} }$,",
+ "▁Bow l",
+ "▁M ale",
+ "▁Ma le",
+ "▁Mal e",
+ "▁B res",
+ "▁Br es",
+ "▁Bre s",
+ "▁п си",
+ "▁Ch allenge",
+ "z ó",
+ "▁pro jekt",
+ "▁neg oti",
+ "ab ove",
+ "a bove",
+ "▁пери о",
+ "▁long est",
+ "▁lon gest",
+ "auth entic",
+ "▁tr adu",
+ "▁tra du",
+ "▁trad u",
+ "▁mujer es",
+ "▁And re",
+ "▁ha dn",
+ "▁had n",
+ "▁Sch ule",
+ "▁Schul e",
+ "ode l",
+ "od el",
+ "o del",
+ "ble d",
+ "bl ed",
+ "b led",
+ "▁T rade",
+ "▁Tr ade",
+ "▁Tra de",
+ "▁Trad e",
+ "▁m obil",
+ "▁mo bil",
+ "▁mob il",
+ "▁alg unas",
+ "▁L ak",
+ "▁La k",
+ "▁Connect icut",
+ "▁al co",
+ "▁alc o",
+ "▁Sel bst",
+ "i ł",
+ "▁a lb",
+ "▁al b",
+ "ouver neur",
+ "ouvern eur",
+ "▁s r",
+ "▁ sr",
+ "▁v ba",
+ "▁vb a",
+ "lo ped",
+ "lop ed",
+ "l oped",
+ "▁Par tei",
+ "▁Part ei",
+ "▁Parte i",
+ "ua te",
+ "u ate",
+ "▁Auth entication",
+ "▁ Authentication",
+ "be i",
+ "b ei",
+ "}} .",
+ "} }.",
+ "▁kon nten",
+ "▁konn ten",
+ "▁konnte n",
+ "▁до по",
+ "▁h yd",
+ "▁hy d",
+ "Off ice",
+ "d onnées",
+ "▁C leveland",
+ "ri ta",
+ "rit a",
+ "r ita",
+ "ío s",
+ "í os",
+ "▁вы ше",
+ "▁Ro berts",
+ "▁Robert s",
+ "▁é lections",
+ "▁élect ions",
+ "▁' ')",
+ "▁'' )",
+ "▁publish ing",
+ "▁b apt",
+ "▁ba pt",
+ "<> ();",
+ "< >();",
+ "miss ing",
+ "mis sing",
+ "рова но",
+ "рован о",
+ "р овано",
+ "▁ho using",
+ "▁hous ing",
+ "▁in ference",
+ "▁infer ence",
+ "▁Rena issance",
+ "▁r èg",
+ "▁Ste ph",
+ "▁Step h",
+ "CE S",
+ "C ES",
+ "ER E",
+ "E RE",
+ "ке т",
+ "к ет",
+ "O U",
+ "▁group ing",
+ "ver kehr",
+ "ji h",
+ "j ih",
+ "ag li",
+ "▁mil k",
+ "la it",
+ "l ait",
+ "St age",
+ "▁by ly",
+ "▁byl y",
+ "▁wood en",
+ "▁wo oden",
+ "ke ley",
+ "kel ey",
+ "kele y",
+ "et ra",
+ "etr a",
+ "e tra",
+ "▁P eg",
+ "▁Pe g",
+ "▁don né",
+ "▁donn é",
+ "ad al",
+ "ada l",
+ "a dal",
+ "sequ ently",
+ "▁ins besondere",
+ "EL D",
+ "E LD",
+ "▁M am",
+ "▁Ma m",
+ "▁vol te",
+ "▁volt e",
+ "▁pro spect",
+ "▁pros pect",
+ "но ве",
+ "нов е",
+ "н ове",
+ "▁den oted",
+ "▁denote d",
+ "▁over lay",
+ "Per mission",
+ "Perm ission",
+ "ee n",
+ "e en",
+ "▁E M",
+ "▁ EM",
+ "▁u z",
+ "▁ uz",
+ "M c",
+ "ol it",
+ "oli t",
+ "o lit",
+ "▁ser vi",
+ "▁serv i",
+ "▁He idel",
+ "▁Wien er",
+ "▁Wi ener",
+ "▁Wie ner",
+ "▁il legal",
+ "▁predict ions",
+ "▁prediction s",
+ "▁go og",
+ "ho n",
+ "h on",
+ "▁Cin ema",
+ "▁ре волю",
+ "▁R ule",
+ "▁Ru le",
+ "▁ Rule",
+ "wo d",
+ "w od",
+ "▁rad iation",
+ "▁radi ation",
+ "o ł",
+ "ово ї",
+ "▁Per form",
+ "▁prison er",
+ "▁a met",
+ "▁am et",
+ "▁fig ura",
+ "▁figur a",
+ "▁Comm ander",
+ "▁Command er",
+ "▁о фициаль",
+ "▁t rov",
+ "▁tr ov",
+ "▁tro v",
+ "▁a cted",
+ "▁act ed",
+ "▁ac ted",
+ "▁work flow",
+ "▁Республи ки",
+ "▁guid ance",
+ "▁м ене",
+ "▁ме не",
+ "▁мен е",
+ "▁ мене",
+ "N ational",
+ "▁K el",
+ "▁Ke l",
+ "web pack",
+ "про стра",
+ "▁llam ado",
+ "al og",
+ "alo g",
+ "a log",
+ "ter ra",
+ "ix en",
+ "le graph",
+ "leg raph",
+ "ä ischen",
+ "▁teach ers",
+ "▁teacher s",
+ "ud en",
+ "ude n",
+ "u den",
+ "▁o gså",
+ "pos sible",
+ "poss ible",
+ "▁S oul",
+ "▁So ul",
+ "▁Sou l",
+ "▁Ge ography",
+ "▁за да",
+ "hi t",
+ "h it",
+ "▁an ger",
+ "▁ang er",
+ "▁ange r",
+ "▁ anger",
+ "▁rem porte",
+ "▁remp orte",
+ "Po d",
+ "P od",
+ "ч ке",
+ "▁a ria",
+ "▁ar ia",
+ "▁ aria",
+ "▁A stronom",
+ "ch apter",
+ "▁f ork",
+ "▁for k",
+ "▁Cu ando",
+ "men se",
+ "m ense",
+ "▁Christ ians",
+ "▁Christian s",
+ "g c",
+ "▁# (",
+ "Or gan",
+ "▁ste ady",
+ "▁stead y",
+ "ps e",
+ "p se",
+ "жи ть",
+ "ig nes",
+ "ign es",
+ "igne s",
+ "ater ra",
+ "a terra",
+ "mo vie",
+ "mov ie",
+ "m ovie",
+ "pos ta",
+ "po sta",
+ "post a",
+ "p osta",
+ "ra ste",
+ "ras te",
+ "r aste",
+ "▁Res source",
+ "▁Ress ource",
+ "▁Pa ís",
+ "▁( );",
+ "▁() ;",
+ "▁ ();",
+ "▁pen alty",
+ "т т",
+ "▁tras fer",
+ "cent ury",
+ "▁clean er",
+ "sel enium",
+ "s elenium",
+ "ort heast",
+ "orth east",
+ "xi c",
+ "x ic",
+ "лі ї",
+ "л ії",
+ "▁ingles e",
+ "▁T ang",
+ "▁Ta ng",
+ "▁Tan g",
+ "▁g ods",
+ "▁go ds",
+ "▁god s",
+ "fr ent",
+ "fre nt",
+ "f rent",
+ "ci ente",
+ "cient e",
+ "c iente",
+ "st arts",
+ "start s",
+ "star ts",
+ "▁mus ica",
+ "▁music a",
+ "ymnas ium",
+ "-- --+",
+ "---- +",
+ "--- -+",
+ "- ---+",
+ "▁ter rest",
+ "▁terre st",
+ "▁retr ieved",
+ "▁retrieve d",
+ "ia re",
+ "iar e",
+ "i are",
+ "un ning",
+ "unn ing",
+ "▁Mar cus",
+ "▁Marc us",
+ "▁prom ote",
+ "war ning",
+ "warn ing",
+ "w arning",
+ "ты й",
+ "т ый",
+ "}) $,",
+ "})$ ,",
+ "} )$,",
+ "Trans port",
+ "▁re son",
+ "▁res on",
+ "▁C lo",
+ "▁Cl o",
+ "▁e rm",
+ "▁er m",
+ "▁ erm",
+ "▁elimin ate",
+ "▁elim inate",
+ "he imer",
+ "heim er",
+ "▁s aves",
+ "▁sa ves",
+ "▁sav es",
+ "▁save s",
+ "▁pr ayer",
+ "▁pra yer",
+ "▁pray er",
+ "Class es",
+ "Ex press",
+ "Exp ress",
+ "Expr ess",
+ "▁Akadem ie",
+ "El se",
+ "Tu rn",
+ "T urn",
+ "▁ik ke",
+ "▁re i",
+ "▁r ei",
+ "▁ rei",
+ "▁di rett",
+ "▁dire tt",
+ "▁dir ett",
+ "▁R ost",
+ "▁Ro st",
+ "▁Ros t",
+ "▁P apa",
+ "▁Pa pa",
+ "▁Pap a",
+ "▁j sf",
+ "▁js f",
+ "ле нием",
+ "ление м",
+ "▁T ul",
+ "▁Tu l",
+ "▁Z ak",
+ "▁Za k",
+ "▁niem ieck",
+ "T w",
+ "am our",
+ "amo ur",
+ "ne sted",
+ "nes ted",
+ "nest ed",
+ "n ested",
+ "pp ets",
+ "ppe ts",
+ "ppet s",
+ "ш п",
+ "di t",
+ "d it",
+ "зе н",
+ "з ен",
+ "zy ma",
+ "zym a",
+ "hr te",
+ "Constra ints",
+ "Constraint s",
+ "▁own ership",
+ "▁owner ship",
+ "Ar m",
+ "A rm",
+ "▁cons umption",
+ "▁consum ption",
+ "▁f et",
+ "▁fe t",
+ "iv ari",
+ "iva ri",
+ "i vari",
+ "ch rom",
+ "chr om",
+ "set Attribute",
+ "▁com pose",
+ "▁comp ose",
+ "▁compos e",
+ "▁ compose",
+ "▁back ing",
+ "▁P az",
+ "▁Pa z",
+ "▁s cri",
+ "▁sc ri",
+ "▁scr i",
+ "▁ scri",
+ "▁Me chan",
+ "▁Nor way",
+ "▁J up",
+ "▁Ju p",
+ "▁m ér",
+ "▁mé r",
+ "▁administr ator",
+ "▁c abe",
+ "▁ca be",
+ "▁cab e",
+ "ival ent",
+ "▁thr one",
+ "▁thro ne",
+ "▁d ues",
+ "▁du es",
+ "▁due s",
+ "▁hum or",
+ "▁hu mor",
+ "▁A dri",
+ "▁Ad ri",
+ "▁ab ort",
+ "ña s",
+ "ñ as",
+ "▁Ки їв",
+ "j ící",
+ "▁zwe ite",
+ "▁zwei te",
+ "▁do ub",
+ "▁dou b",
+ "er shell",
+ "ers hell",
+ "шо й",
+ "▁F am",
+ "▁Fa m",
+ "å k",
+ "▁twe ede",
+ "▁twee de",
+ "▁R ib",
+ "▁Ri b",
+ "▁f ør",
+ "pc ión",
+ "p ción",
+ "in ned",
+ "inn ed",
+ "rv m",
+ "r vm",
+ "▁App ar",
+ "▁Ap par",
+ "▁D j",
+ "▁S hang",
+ "▁Sh ang",
+ "Dist ance",
+ "D istance",
+ "▁d awn",
+ "▁da wn",
+ "▁ dawn",
+ "▁Mat th",
+ "▁Matt h",
+ "▁err ichtet",
+ "ph antom",
+ "phan tom",
+ "▁re leases",
+ "▁release s",
+ "Recogn izer",
+ "▁K op",
+ "▁Ko p",
+ "▁P ul",
+ "▁Pu l",
+ "u é",
+ "na ts",
+ "nat s",
+ "n ats",
+ "re lax",
+ "rel ax",
+ "▁f led",
+ "▁fl ed",
+ "▁fle d",
+ "▁experience s",
+ "▁experien ces",
+ "ще е",
+ "ме ня",
+ "мен я",
+ "▁пер сона",
+ "▁Id entity",
+ "▁Ident ity",
+ "▁ Identity",
+ "re ts",
+ "ret s",
+ "r ets",
+ "k unft",
+ "la rg",
+ "lar g",
+ "l arg",
+ "List Item",
+ "v d",
+ "run ner",
+ "la nt",
+ "lan t",
+ "l ant",
+ "ip art",
+ "i part",
+ "ba y",
+ "b ay",
+ "ie i",
+ "i ei",
+ "▁length s",
+ "▁c attle",
+ "▁catt le",
+ "je ts",
+ "jet s",
+ "j ets",
+ "▁se hen",
+ "J ul",
+ "fa tt",
+ "f att",
+ "▁sur render",
+ "▁surr ender",
+ "▁Tr ump",
+ "▁Tru mp",
+ "дно го",
+ "д ного",
+ "▁Four ier",
+ "▁Fou rier",
+ "ie ben",
+ "ieb en",
+ "i eben",
+ "_ \"",
+ "▁frü her",
+ "▁gar ant",
+ "▁ga rant",
+ "uclide an",
+ "äg t",
+ "ä gt",
+ "▁пів ден",
+ "Page s",
+ "Pa ges",
+ "P ages",
+ "▁r ivers",
+ "▁river s",
+ "▁riv ers",
+ "▁ri vers",
+ "▁don ner",
+ "▁donn er",
+ "▁donne r",
+ "sv n",
+ "s vn",
+ "▁ ł",
+ "ov ě",
+ "o vě",
+ "▁Le ist",
+ "ar ial",
+ "ari al",
+ "aria l",
+ "a rial",
+ "ov ých",
+ "ový ch",
+ "▁f illing",
+ "▁fil ling",
+ "▁fill ing",
+ "▁mus icale",
+ "▁music ale",
+ "▁musical e",
+ "▁musica le",
+ "ma xim",
+ "max im",
+ "▁d ashed",
+ "▁das hed",
+ "▁dash ed",
+ "▁Н ов",
+ "▁Но в",
+ "Draw er",
+ "Dra wer",
+ "▁Medic ine",
+ "▁dok ument",
+ "ow el",
+ "owe l",
+ "o wel",
+ "vi ć",
+ "v ić",
+ "he ly",
+ "hel y",
+ "h ely",
+ "▁e let",
+ "▁el et",
+ "▁ele t",
+ "Sec onds",
+ "Second s",
+ "▁Gon z",
+ "ro u",
+ "r ou",
+ "▁fin ales",
+ "▁final es",
+ "▁finale s",
+ "r n",
+ "f ø",
+ "▁index ed",
+ "class Name",
+ "▁o ber",
+ "▁ob er",
+ "▁ ober",
+ "▁du as",
+ "▁optim ized",
+ "▁optimize d",
+ "▁k dy",
+ "vers ary",
+ "ener gy",
+ "▁цент ра",
+ "▁центр а",
+ "▁c urrency",
+ "▁curr ency",
+ "▁ currency",
+ "zy ż",
+ "Li ke",
+ "L ike",
+ "▁Г и",
+ "so no",
+ "son o",
+ "s ono",
+ "▁pa lab",
+ "▁pal ab",
+ "▁p ushing",
+ "▁push ing",
+ "ub lik",
+ "▁H ass",
+ "▁Ha ss",
+ "▁Has s",
+ "}\\ ,\\",
+ "}\\, \\",
+ "} \\,\\",
+ "un ker",
+ "unk er",
+ "▁F actory",
+ "▁Fact ory",
+ "▁ Factory",
+ "▁Res ources",
+ "▁Resource s",
+ "▁ Resources",
+ "date i",
+ "da tei",
+ "dat ei",
+ "▁T ools",
+ "▁To ols",
+ "▁Tool s",
+ "▁ Tools",
+ "▁ste hen",
+ "si me",
+ "sim e",
+ "s ime",
+ "▁Х у",
+ "▁h och",
+ "▁ho ch",
+ "▁Rod ríguez",
+ "zeit ig",
+ "▁Ter ry",
+ "▁Terr y",
+ "▁о бу",
+ "▁об у",
+ "Us age",
+ "urch ase",
+ "l ö",
+ "▁Int roduction",
+ "▁ Introduction",
+ "▁particip ation",
+ "ο ς",
+ "og li",
+ "ap y",
+ "a py",
+ "▁hope fully",
+ "pon der",
+ "po nder",
+ "pond er",
+ "p onder",
+ "▁Y ang",
+ "▁Yan g",
+ "▁Ya ng",
+ "▁prom ises",
+ "▁promise s",
+ "▁вер ну",
+ "▁о стров",
+ "▁ост ров",
+ "^{ +",
+ "▁most ra",
+ "▁mo stra",
+ "▁mos tra",
+ "▁CURL OPT",
+ "H H",
+ "▁std out",
+ "▁ stdout",
+ "▁br illiant",
+ "▁manus cript",
+ "▁de cir",
+ "▁dec ir",
+ "▁B olog",
+ "▁Bo log",
+ "▁Bol og",
+ "▁ме ста",
+ "▁мест а",
+ "▁in visible",
+ "▁C hal",
+ "▁Ch al",
+ "▁Cha l",
+ "▁analy ze",
+ "▁analyz e",
+ "pr ilis",
+ "pril is",
+ "att end",
+ "atten d",
+ "atte nd",
+ "M vc",
+ "th an",
+ "tha n",
+ "t han",
+ "ck o",
+ "c ko",
+ "▁Que bec",
+ "▁pl anta",
+ "▁plan ta",
+ "▁plant a",
+ "▁télé vis",
+ "▁un install",
+ "èn cies",
+ "▁gmin ie",
+ "▁P ref",
+ "▁Pr ef",
+ "▁Pre f",
+ "▁le quel",
+ "Inv ocation",
+ "▁ Í",
+ "▁trans formed",
+ "▁transform ed",
+ "MA N",
+ "M AN",
+ "ge baut",
+ "geb aut",
+ "▁со хра",
+ "▁вто рой",
+ "▁L ith",
+ "▁Li th",
+ "▁Lit h",
+ "wend ung",
+ "▁Polit ik",
+ "▁Sen ator",
+ "▁L L",
+ "▁ LL",
+ "жде ние",
+ "ш те",
+ "▁C és",
+ "▁b ande",
+ "▁band e",
+ "▁ban de",
+ "▁ba nde",
+ "▁histor ian",
+ "▁historia n",
+ "▁pass words",
+ "▁password s",
+ "mal loc",
+ "m alloc",
+ "▁sem if",
+ "▁semi f",
+ "▁r å",
+ "▁ rå",
+ "unic í",
+ "uni cí",
+ "Av ailable",
+ "Option al",
+ "Opt ional",
+ "▁T we",
+ "▁Tw e",
+ "▁k ró",
+ "▁kr ó",
+ "▁sub sets",
+ "▁subset s",
+ "▁subs ets",
+ "▁D AT",
+ "▁DA T",
+ "▁ DAT",
+ "▁double s",
+ "▁dou bles",
+ "▁doub les",
+ "ни ками",
+ "ника ми",
+ "▁з в",
+ "ge geben",
+ "geg eben",
+ "g egeben",
+ "▁По пис",
+ "▁jú lius",
+ "▁m eteor",
+ "▁met eor",
+ "Mo unt",
+ "M ount",
+ "iv ent",
+ "ive nt",
+ "iven t",
+ "i vent",
+ "▁N athan",
+ "▁Na than",
+ "▁Nat han",
+ "▁Sch utz",
+ "eg ov",
+ "ego v",
+ "e gov",
+ "▁d öd",
+ "▁me at",
+ "▁пун кт",
+ "▁m inds",
+ "▁min ds",
+ "▁mind s",
+ "eli very",
+ "▁T LS",
+ "ре м",
+ "р ем",
+ "cks å",
+ "▁stay ed",
+ "▁sta yed",
+ "▁B in",
+ "▁Bi n",
+ "▁P ia",
+ "▁Pi a",
+ "▁и мен",
+ "▁име н",
+ "▁им ен",
+ "▁Bob by",
+ "▁produ it",
+ "▁prod uit",
+ "em pio",
+ "emp io",
+ "▁redu cing",
+ "▁Y u",
+ "▁Gesch äft",
+ "▁per ché",
+ "▁c ors",
+ "▁cor s",
+ "▁co rs",
+ "▁i cons",
+ "▁icon s",
+ "▁ic ons",
+ "▁ icons",
+ "App Data",
+ "▁H og",
+ "▁Ho g",
+ "▁р ів",
+ "▁рі в",
+ "▁ рів",
+ "▁S ans",
+ "▁San s",
+ "▁Sa ns",
+ "▁si ège",
+ "▁siè ge",
+ "st ellen",
+ "stell en",
+ "stelle n",
+ "Br ush",
+ "OF F",
+ "O FF",
+ "▁vis itor",
+ "▁visit or",
+ "▁b ath",
+ "▁ba th",
+ "▁bat h",
+ "▁f ee",
+ "▁fe e",
+ "at isf",
+ "ati sf",
+ "atis f",
+ "▁cu rv",
+ "▁cur v",
+ "▁fol gender",
+ "▁folg ender",
+ "▁cons cience",
+ "▁Se attle",
+ "▁med ieval",
+ "▁medi eval",
+ "dist ribution",
+ "▁D M",
+ "▁ DM",
+ "▁м я",
+ "▁ мя",
+ "▁R UN",
+ "ak ov",
+ "ako v",
+ "a kov",
+ "ce il",
+ "c eil",
+ "▁let ting",
+ "▁lett ing",
+ "▁d ov",
+ "▁do v",
+ "▁о би",
+ "▁об и",
+ "ki ej",
+ "kie j",
+ "k iej",
+ "▁dire kt",
+ "▁t m",
+ "▁ tm",
+ "col ors",
+ "color s",
+ "colo rs",
+ "▁alt ro",
+ "▁tijd ens",
+ "]{ '",
+ "] {'",
+ "▁B om",
+ "▁Bo m",
+ "▁k unst",
+ "▁kun st",
+ "▁sh elter",
+ "▁r av",
+ "▁ra v",
+ "▁ rav",
+ "pre dict",
+ "pred ict",
+ "▁comenz ó",
+ "▁świ at",
+ "▁św iat",
+ "▁Du rant",
+ "▁Dur ant",
+ "▁sch emes",
+ "▁scheme s",
+ "▁sche mes",
+ "▁m esh",
+ "▁me sh",
+ "▁mes h",
+ "▁ind icator",
+ "▁indic ator",
+ "▁E mer",
+ "▁Em er",
+ "▁gu ilty",
+ "не ц",
+ "▁consequ ences",
+ "▁consequence s",
+ "cl udes",
+ "clude s",
+ "clud es",
+ "▁L ower",
+ "▁Lo wer",
+ "▁Low er",
+ "▁ Lower",
+ "▁по ме",
+ "▁p ace",
+ "▁pa ce",
+ "▁pac e",
+ "▁ pace",
+ "да го",
+ "▁am bos",
+ "▁amb os",
+ "l b",
+ "▁educ ated",
+ "ur ale",
+ "ura le",
+ "ural e",
+ "u rale",
+ "an h",
+ "es ség",
+ "ess ég",
+ "▁associ ations",
+ "▁association s",
+ "to wn",
+ "t own",
+ "▁t rif",
+ "▁tr if",
+ "▁tri f",
+ "sample s",
+ "sam ples",
+ "s amples",
+ "bo s",
+ "b os",
+ "▁S pect",
+ "▁Sp ect",
+ "▁Spe ct",
+ "▁Spec t",
+ "▁Ц е",
+ "alt ung",
+ "▁L ob",
+ "▁Lo b",
+ "▁curios ity",
+ "▁We iter",
+ "▁Wei ter",
+ "▁Weit er",
+ "est one",
+ "esto ne",
+ "eston e",
+ "e stone",
+ "▁dem ol",
+ "▁demo l",
+ "▁ap olog",
+ "▁apo log",
+ "▁D ynamic",
+ "▁Dynam ic",
+ "▁ Dynamic",
+ "In ner",
+ "es per",
+ "esp er",
+ "ec z",
+ "e cz",
+ "uel lement",
+ "uelle ment",
+ "▁Hamilton ian",
+ "At las",
+ "▁ar gue",
+ "▁arg ue",
+ "For eign",
+ "F oreign",
+ "col lapse",
+ "▁tér min",
+ "▁electron ic",
+ "▁electro nic",
+ "▁N R",
+ "▁ NR",
+ "▁c orr",
+ "▁cor r",
+ "▁co rr",
+ "▁ corr",
+ "tem ps",
+ "temp s",
+ "Index Path",
+ "я з",
+ "▁tal ál",
+ "to day",
+ "tod ay",
+ "wa ve",
+ "w ave",
+ "▁s ib",
+ "▁si b",
+ "▁с пи",
+ "▁сп и",
+ "▁con vey",
+ "▁conv ey",
+ "▁Gé ographie",
+ "▁Н ью",
+ "▁Hi bernate",
+ "▁t in",
+ "▁ti n",
+ "di c",
+ "d ic",
+ "pp ings",
+ "pping s",
+ "s weise",
+ "▁roll ing",
+ "▁rol ling",
+ "▁ rolling",
+ "▁select s",
+ ")\\ )",
+ ") \\)",
+ "▁po eta",
+ "▁poet a",
+ "▁сте пени",
+ "▁A br",
+ "▁Ab r",
+ "▁hö ch",
+ "▁s tern",
+ "▁st ern",
+ "▁ste rn",
+ "▁ster n",
+ "▁f jär",
+ "▁inst aller",
+ "▁install er",
+ "▁instal ler",
+ "de cl",
+ "dec l",
+ "▁m iser",
+ "▁mi ser",
+ "▁mis er",
+ "▁mise r",
+ "group by",
+ "sub str",
+ "subst r",
+ "▁phen omen",
+ "▁W ing",
+ "▁Win g",
+ "▁Wi ng",
+ "▁f ills",
+ "▁fil ls",
+ "▁fill s",
+ "▁ú nico",
+ "Run ning",
+ "R unning",
+ "Com e",
+ "Co me",
+ "C ome",
+ "ir able",
+ "ira ble",
+ "i rable",
+ "sim eq",
+ "sime q",
+ "▁re mp",
+ "▁r emp",
+ "▁rem p",
+ "ke le",
+ "kel e",
+ "k ele",
+ "li ers",
+ "lie rs",
+ "lier s",
+ "l iers",
+ "▁kwiet nia",
+ "▁inter rupted",
+ "▁interrupt ed",
+ "▁J et",
+ "▁Je t",
+ "=\\ {",
+ "= \\{",
+ "íd o",
+ "í do",
+ "▁Tai wan",
+ "▁воз ра",
+ "▁altern atives",
+ "▁alternative s",
+ "▁T ir",
+ "▁Ti r",
+ "▁Re serve",
+ "▁Res erve",
+ "▁К ур",
+ "▁Ку р",
+ "▁No bel",
+ "▁Nob el",
+ "▁рабо тал",
+ "▁работа л",
+ "▁a xes",
+ "▁ax es",
+ "▁C ependant",
+ "k á",
+ "▁er neut",
+ "▁D emo",
+ "▁De mo",
+ "▁Dem o",
+ "▁ Demo",
+ "comm unic",
+ "con structor",
+ "construct or",
+ "▁Mon day",
+ "▁Mond ay",
+ "N il",
+ "Hash Map",
+ "pay ment",
+ "▁fix ing",
+ "▁A DD",
+ "▁AD D",
+ "▁ ADD",
+ "re view",
+ "rev iew",
+ "▁poss ibil",
+ "▁possib il",
+ "▁g rote",
+ "▁gr ote",
+ "▁gro te",
+ "▁group ed",
+ "▁groupe d",
+ "▁L ima",
+ "▁Li ma",
+ "▁Lim a",
+ "▁A ugen",
+ "▁Au gen",
+ "▁Aug en",
+ "▁o ckså",
+ "on as",
+ "ona s",
+ "o nas",
+ "▁deb ate",
+ "▁In gl",
+ "▁Ing l",
+ "D a",
+ "SO UR",
+ "S OUR",
+ "ett be",
+ "▁Batt alion",
+ "▁F loat",
+ "▁Flo at",
+ "▁ Float",
+ "▁c one",
+ "▁con e",
+ "▁co ne",
+ "read sheet",
+ "co urt",
+ "cou rt",
+ "c ourt",
+ "li gen",
+ "lig en",
+ "lige n",
+ "l igen",
+ "▁Begin n",
+ "▁Beg inn",
+ "▁LI MIT",
+ "▁LIM IT",
+ "▁enjo yed",
+ "▁enjoy ed",
+ "▁Jak ob",
+ "▁t elt",
+ "▁te lt",
+ "▁tel t",
+ "back end",
+ "▁Gemeins ame",
+ "li nt",
+ "lin t",
+ "l int",
+ "al ling",
+ "all ing",
+ "▁b ör",
+ "gr and",
+ "gra nd",
+ "g rand",
+ "▁divers es",
+ "▁diverse s",
+ "▁z wiąz",
+ "▁Kom pon",
+ "▁inner halb",
+ "▁desar rollo",
+ "▁desarroll o",
+ "▁Ma sters",
+ "▁Mas ters",
+ "▁Master s",
+ "io so",
+ "ios o",
+ "i oso",
+ "]` .",
+ "] `.",
+ "▁frances a",
+ "▁franc esa",
+ "A ff",
+ "in ek",
+ "ine k",
+ "i nek",
+ "▁des sin",
+ "▁dess in",
+ "`. `",
+ "` .`",
+ "▁r anks",
+ "▁ran ks",
+ "▁rank s",
+ "бер г",
+ "▁s kal",
+ "▁sk al",
+ "▁S ultan",
+ "▁Sul tan",
+ "А Н",
+ "▁спо соб",
+ "▁contra dict",
+ "▁contrad ict",
+ "▁re com",
+ "▁rec om",
+ "▁Ok lahoma",
+ "▁Vlad imir",
+ "▁m eters",
+ "▁me ters",
+ "▁met ers",
+ "▁meter s",
+ "trans port",
+ "▁cons ulté",
+ "▁consult é",
+ "▁ consulté",
+ "▁A TP",
+ "▁AT P",
+ "eb b",
+ "e bb",
+ "▁vol unte",
+ "▁volunt e",
+ "▁out line",
+ "LI C",
+ "L IC",
+ "▁e uro",
+ "▁eu ro",
+ "Char Field",
+ "med ium",
+ "medi um",
+ "▁Belg ique",
+ "Pro c",
+ "Pr oc",
+ "P roc",
+ "ro utes",
+ "route s",
+ "rout es",
+ "rou tes",
+ "▁cont ribu",
+ "▁contrib u",
+ "! }",
+ "ší m",
+ "š ím",
+ "▁L ess",
+ "▁Le ss",
+ "▁Les s",
+ "▁K ost",
+ "▁Ko st",
+ "▁Kos t",
+ "▁eredet iből",
+ "re ven",
+ "rev en",
+ "r even",
+ "ver ify",
+ "▁S alt",
+ "▁Sal t",
+ "▁Sa lt",
+ "▁shoot ing",
+ "▁sho oting",
+ "▁dis pose",
+ "▁dispos e",
+ "▁disp ose",
+ "uj í",
+ "▁t ierra",
+ "▁tier ra",
+ "▁po ison",
+ "▁poi son",
+ "sa k",
+ "s ak",
+ "periment al",
+ "▁N é",
+ "▁K id",
+ "▁Ki d",
+ "ag yar",
+ "agy ar",
+ "▁archiv álva",
+ "be reich",
+ "bere ich",
+ "í z",
+ "▁R itter",
+ "▁Хронологи ја",
+ "ze um",
+ "да х",
+ "▁gr ünd",
+ "▁program mer",
+ "▁programme r",
+ "▁cons eil",
+ "▁conse il",
+ "▁enc rypt",
+ "integr ation",
+ "C ulture",
+ "▁Circ le",
+ "▁Cir cle",
+ "Ob servable",
+ "▁gen omsnitt",
+ "▁Se lection",
+ "▁Select ion",
+ "▁Sel ection",
+ "▁Sele ction",
+ "▁ Selection",
+ "▁ir regular",
+ "Aut res",
+ "Per cent",
+ "fa ult",
+ "f ault",
+ "▁virt ue",
+ "ą pi",
+ "▁s ess",
+ "▁se ss",
+ "▁ses s",
+ "▁Так же",
+ "Tim estamp",
+ "▁litt érature",
+ "▁mo ż",
+ "▁b orrow",
+ "▁bor row",
+ "▁con ced",
+ "▁conc ed",
+ "▁conce d",
+ "чни к",
+ "ч ник",
+ "▁L und",
+ "▁Lu nd",
+ "ION S",
+ "IO NS",
+ "yn ie",
+ "y nie",
+ "▁S hin",
+ "▁Sh in",
+ "▁o sob",
+ "▁os ob",
+ "b ě",
+ "▁int uit",
+ "▁intu it",
+ "▁на п",
+ "▁p roph",
+ "▁pro ph",
+ "▁pr oph",
+ "▁prop h",
+ "▁p itt",
+ "▁pi tt",
+ "▁pit t",
+ "▁IB M",
+ "▁T ill",
+ "▁Ti ll",
+ "▁h ina",
+ "▁hi na",
+ "▁hin a",
+ "it test",
+ "itt est",
+ "itte st",
+ "gener ator",
+ "▁N in",
+ "▁Ni n",
+ "▁K ot",
+ "▁Ko t",
+ "▁p asser",
+ "▁pass er",
+ "▁pas ser",
+ "▁passe r",
+ "▁dis position",
+ "▁dispos ition",
+ "▁disp osition",
+ "un ing",
+ "uni ng",
+ "u ning",
+ "▁f ame",
+ "▁fa me",
+ "▁fam e",
+ "▁t enia",
+ "▁te nia",
+ "▁ten ia",
+ "an cement",
+ "ance ment",
+ "anc ement",
+ "▁Su isse",
+ "` -",
+ "▁h ombres",
+ "▁hom bres",
+ "▁hombre s",
+ "▁inf inity",
+ "▁infin ity",
+ "▁окон ча",
+ "▁co sm",
+ "▁cos m",
+ "▁D ennis",
+ "▁Den nis",
+ "ba z",
+ "b az",
+ "ha upt",
+ "h aupt",
+ "▁might y",
+ "▁pr ede",
+ "▁pre de",
+ "▁pred e",
+ "us able",
+ "usa ble",
+ "▁ws zyst",
+ "▁wsz yst",
+ "▁l b",
+ "▁ lb",
+ "AB ASE",
+ "A BASE",
+ "j na",
+ "не в",
+ "н ев",
+ "▁as es",
+ "▁ ases",
+ "▁final mente",
+ "й м",
+ "pe ction",
+ "pect ion",
+ "pec tion",
+ "p ection",
+ "▁Stud ien",
+ "▁Norweg ian",
+ "ce go",
+ "c ego",
+ "IN DEX",
+ "IND EX",
+ "or ten",
+ "ort en",
+ "orte n",
+ "▁friend ship",
+ "▁friends hip",
+ "met ro",
+ "m etro",
+ "th ick",
+ "▁Z el",
+ "▁Ze l",
+ "LO W",
+ "L OW",
+ "▁there by",
+ "un ted",
+ "unt ed",
+ "unte d",
+ "▁sur faces",
+ "▁surface s",
+ "ющи м",
+ "%) .",
+ "% ).",
+ "▁W onder",
+ "▁Wo nder",
+ "▁redund ant",
+ "▁G ros",
+ "▁Gr os",
+ "▁Gro s",
+ "▁web sites",
+ "▁website s",
+ "▁v io",
+ "▁vi o",
+ "▁o cas",
+ "▁oc as",
+ "vé s",
+ "v és",
+ "▁G am",
+ "▁Ga m",
+ "d w",
+ "Ind icator",
+ "▁K ob",
+ "▁Ko b",
+ "▁j ack",
+ "▁ja ck",
+ "▁ jack",
+ "Hi nt",
+ "H int",
+ "▁A pol",
+ "▁Ap ol",
+ "▁други е",
+ "▁N UM",
+ "▁ NUM",
+ "▁o fic",
+ "▁of ic",
+ "yst ycz",
+ "▁were ld",
+ "▁wer eld",
+ "мо сти",
+ "LE FT",
+ "▁T ypes",
+ "▁Type s",
+ "▁Ty pes",
+ "▁Typ es",
+ "▁ Types",
+ "se en",
+ "see n",
+ "s een",
+ "un cia",
+ "unc ia",
+ "unci a",
+ "▁n arod",
+ "▁na rod",
+ "▁nar od",
+ "▁это т",
+ "Side note",
+ "S idenote",
+ "ue il",
+ "u eil",
+ "▁от ме",
+ "▁cour ts",
+ "▁court s",
+ "fi r",
+ "f ir",
+ "ur z",
+ "u rz",
+ "чен ко",
+ "Cred entials",
+ "▁imag ination",
+ "it ats",
+ "ita ts",
+ "itat s",
+ "bu ff",
+ "buf f",
+ "b uff",
+ "fl ash",
+ "▁bad ly",
+ "▁w orn",
+ "▁wor n",
+ "▁wo rn",
+ "▁окру гу",
+ "cat alog",
+ "catal og",
+ "c atalog",
+ "li me",
+ "lim e",
+ "l ime",
+ "▁G ill",
+ "▁Gi ll",
+ "▁Gil l",
+ "▁S ent",
+ "▁Se nt",
+ "▁Sen t",
+ "ie lla",
+ "iel la",
+ "i ella",
+ "▁Cra ig",
+ "▁S ele",
+ "▁Se le",
+ "▁Sel e",
+ "▁Indep end",
+ "▁prov incie",
+ "▁provin cie",
+ "os sen",
+ "oss en",
+ "▁за пад",
+ "▁запа д",
+ "▁inf ant",
+ "▁pr events",
+ "▁prevent s",
+ "▁prev ents",
+ "▁provin ces",
+ "▁province s",
+ "af é",
+ "be g",
+ "b eg",
+ "▁col ours",
+ "▁colour s",
+ "B F",
+ "ë n",
+ "▁Ме жду",
+ "î n",
+ "Ob server",
+ "for sch",
+ "í gen",
+ "um ption",
+ "ump tion",
+ "▁Ill ustr",
+ "ри ст",
+ "рис т",
+ "▁по лови",
+ "▁пол ови",
+ "▁поло ви",
+ "▁` &",
+ "▁o re",
+ "▁or e",
+ "▁ ore",
+ "▁supp lies",
+ "▁parent hes",
+ "Found ation",
+ "▁v ou",
+ "▁vo u",
+ "▁T out",
+ "▁To ut",
+ "Don ald",
+ "▁R ET",
+ "▁RE T",
+ "we ig",
+ "wei g",
+ "▁produ cción",
+ "mi x",
+ "m ix",
+ "▁ut wor",
+ "▁f öl",
+ "▁fö l",
+ "▁ent ão",
+ "▁S ister",
+ "▁Si ster",
+ "Tag s",
+ "T ags",
+ "▁Савез не",
+ "▁privile ges",
+ "▁na zw",
+ "▁naz w",
+ "▁R av",
+ "▁Ra v",
+ "▁re pro",
+ "▁rep ro",
+ "▁repr o",
+ "▁M ason",
+ "▁Ma son",
+ "▁Mas on",
+ "▁Pl atform",
+ "▁Plat form",
+ "▁ Platform",
+ "▁про бле",
+ "▁P érez",
+ "▁bl anc",
+ "▁bla nc",
+ "▁blan c",
+ "Be havior",
+ "фи ци",
+ "ek en",
+ "e ken",
+ "▁me ets",
+ "▁meet s",
+ "(. *",
+ "( .*",
+ "▁f å",
+ "ep en",
+ "e pen",
+ "ma ker",
+ "make r",
+ "m aker",
+ "▁lo yal",
+ "mem bers",
+ "member s",
+ "m embers",
+ "meister schaft",
+ "go al",
+ "ш лен",
+ "▁се веро",
+ "▁север о",
+ "ie nde",
+ "ien de",
+ "i ende",
+ "д ні",
+ "Pro of",
+ "▁exp lic",
+ "▁expl ic",
+ "▁elect ro",
+ "ie ls",
+ "iel s",
+ "i els",
+ "re load",
+ "▁el even",
+ "▁ele ven",
+ "▁elev en",
+ "▁part idos",
+ "▁partido s",
+ "în e",
+ "î ne",
+ "▁R egin",
+ "▁Re gin",
+ "▁Reg in",
+ "▁é x",
+ "▁Bu lg",
+ "▁Bul g",
+ "▁network ing",
+ "▁net working",
+ "▁se parator",
+ "▁separ ator",
+ "User Name",
+ "▁edific io",
+ "▁M ie",
+ "▁Mi e",
+ "▁id le",
+ "ye d",
+ "y ed",
+ "▁pass engers",
+ "▁passenger s",
+ "+ )",
+ "me no",
+ "men o",
+ "m eno",
+ "eg gi",
+ "e ggi",
+ "▁nice ly",
+ "▁nic ely",
+ "end encia",
+ "enden cia",
+ "чи й",
+ "ét és",
+ "été s",
+ "ight arrow",
+ "▁orth ogonal",
+ "▁H alf",
+ "▁Hal f",
+ "▁fe wer",
+ "▁few er",
+ "▁pro pi",
+ "▁prop i",
+ "▁pr imit",
+ "▁prim it",
+ "▁pri mit",
+ "▁primi t",
+ "ic ale",
+ "ical e",
+ "ica le",
+ "▁f lower",
+ "▁fl ower",
+ "▁flow er",
+ "▁flo wer",
+ "mer k",
+ "m erk",
+ "▁Оте че",
+ "▁pers istent",
+ "▁persist ent",
+ "▁V ille",
+ "▁Vill e",
+ "▁Vi lle",
+ "▁Vil le",
+ "Me n",
+ "M en",
+ "ga ben",
+ "gabe n",
+ "g aben",
+ "▁Isa ac",
+ "at ivity",
+ "ativ ity",
+ "ati vity",
+ "▁pół noc",
+ "▁r ok",
+ "▁ro k",
+ "▁ rok",
+ "car ds",
+ "card s",
+ "c ards",
+ "де ния",
+ "▁ю го",
+ "▁extra ordinary",
+ "▁k yr",
+ "(\" ,",
+ "( \",",
+ ")) ]",
+ ") )]",
+ "▁un ix",
+ "▁ unix",
+ "ко л",
+ "▁s ink",
+ "▁sin k",
+ "ap sed",
+ "aps ed",
+ "▁k ommen",
+ "▁kom men",
+ "▁komm en",
+ "▁ kommen",
+ "▁for cing",
+ "Ab out",
+ "▁H alle",
+ "▁Ha lle",
+ "▁Hall e",
+ "▁Hal le",
+ "▁Maj esty",
+ "▁Sw itch",
+ "▁ Switch",
+ "▁ab road",
+ "▁acceler ation",
+ "ur bed",
+ "urb ed",
+ "▁о стан",
+ "▁ос тан",
+ "▁оста н",
+ "▁ост ан",
+ "Re ady",
+ "Read y",
+ "▁пів ні",
+ "Br a",
+ "B ra",
+ "▁ць ого",
+ "▁pl ut",
+ "▁T rain",
+ "▁Tr ain",
+ "▁Tra in",
+ "▁á prilis",
+ "▁p uesto",
+ "▁pu esto",
+ "▁pue sto",
+ "▁t oss",
+ "▁to ss",
+ "▁irre levant",
+ "▁d ip",
+ "▁di p",
+ "se gment",
+ "seg ment",
+ "op acity",
+ "▁lors que",
+ "▁versch ill",
+ "ен а",
+ "е на",
+ "▁D oc",
+ "▁Do c",
+ "▁ Doc",
+ "%%%% %%%%",
+ "▁b orders",
+ "▁border s",
+ "▁bor ders",
+ "▁bord ers",
+ "ge bras",
+ "geb ras",
+ "gebra s",
+ "▁r ies",
+ "▁ri es",
+ "▁ ries",
+ "▁Olymp edia",
+ "▁Gener ation",
+ "met ros",
+ "metro s",
+ "▁hor izon",
+ "▁adapt ation",
+ "▁Z ahl",
+ "▁Za hl",
+ "▁na he",
+ "▁nah e",
+ "▁B ug",
+ "▁Bu g",
+ "P icture",
+ "љ и",
+ "R GB",
+ "O wner",
+ "ad in",
+ "adi n",
+ "a din",
+ "▁Catal unya",
+ "ný ch",
+ "n ých",
+ "▁cual quier",
+ "▁Inst itution",
+ "▁Instit ution",
+ "▁Institut ion",
+ "in sen",
+ "ins en",
+ "▁Bras ile",
+ "▁Brasil e",
+ "▁f itting",
+ "▁fit ting",
+ "De leg",
+ "Del eg",
+ "ic two",
+ "ict wo",
+ "▁Ex per",
+ "▁Exp er",
+ "och astic",
+ "▁d us",
+ "▁du s",
+ "▁по ра",
+ "▁пор а",
+ "▁sub string",
+ "▁subst ring",
+ "▁subs tring",
+ "▁substr ing",
+ "▁ substring",
+ "сси и",
+ "с сии",
+ "oi n",
+ "o in",
+ "▁ш кола",
+ "▁шко ла",
+ "▁c x",
+ "▁ cx",
+ "▁% )",
+ "▁ %)",
+ "▁Bud dh",
+ "▁p ending",
+ "▁pen ding",
+ "▁En try",
+ "▁Ent ry",
+ "▁ Entry",
+ "▁Be rl",
+ "▁Ber l",
+ "▁c ler",
+ "▁cl er",
+ "▁cle r",
+ "▁ cler",
+ "▁S oc",
+ "▁So c",
+ "▁r ounded",
+ "▁round ed",
+ "▁m v",
+ "▁ mv",
+ "ít ett",
+ "▁Di plom",
+ "▁französ ischen",
+ "▁G an",
+ "▁Ga n",
+ "▁Inv estig",
+ "▁index Path",
+ "▁ indexPath",
+ "▁mol ti",
+ "▁molt i",
+ "pers istence",
+ "▁XIX e",
+ "▁Elect ron",
+ "b ü",
+ "ge le",
+ "gel e",
+ "g ele",
+ "▁M aler",
+ "▁Ma ler",
+ "▁Mal er",
+ "▁Male r",
+ "▁proyect o",
+ "▁B ath",
+ "▁Ba th",
+ "▁Bat h",
+ "el lers",
+ "ell ers",
+ "elle rs",
+ "eller s",
+ "▁G P",
+ "▁ GP",
+ "on ing",
+ "oni ng",
+ "o ning",
+ "clou dflare",
+ "▁p ři",
+ "▁př i",
+ "▁d ed",
+ "▁de d",
+ "▁ ded",
+ "▁Od kazy",
+ "▁M sg",
+ "▁ Msg",
+ "▁B eing",
+ "▁Be ing",
+ "▁Bei ng",
+ "▁De puis",
+ "▁Dep uis",
+ "▁Pri mary",
+ "▁Prim ary",
+ "▁Prima ry",
+ "▁ Primary",
+ "▁App ro",
+ "▁Ap pro",
+ "▁form ally",
+ "▁formal ly",
+ "ступ ил",
+ "ступи л",
+ "▁fue ra",
+ "▁fu era",
+ "▁fuer a",
+ "▁R oot",
+ "▁Ro ot",
+ "▁ Root",
+ "▁aut onom",
+ "▁auto nom",
+ "▁secret ary",
+ "▁os ób",
+ "▁cu ales",
+ "▁cual es",
+ "▁Dep ending",
+ "▁a si",
+ "▁as i",
+ "▁ asi",
+ "ve ra",
+ "ver a",
+ "v era",
+ "▁rus se",
+ "▁russ e",
+ "▁pro ves",
+ "▁prov es",
+ "▁prove s",
+ "▁pres iden",
+ "R U",
+ "▁Wat son",
+ "▁web pack",
+ "▁ webpack",
+ "elli gence",
+ "ellig ence",
+ "ка м",
+ "▁Office r",
+ "▁Offic er",
+ "▁d elivery",
+ "▁deliver y",
+ "▁deli very",
+ "ж дён",
+ "▁им пе",
+ "▁w il",
+ "▁v esc",
+ "▁ve sc",
+ "▁ves c",
+ "uszt us",
+ "▁Ge off",
+ "() }",
+ "( )}",
+ "▁F ore",
+ "▁For e",
+ "▁Fo re",
+ "▁w enig",
+ "▁we nig",
+ "▁wen ig",
+ "▁A irl",
+ "▁Air l",
+ "▁E fter",
+ "▁Bre ak",
+ "▁St äd",
+ "is miss",
+ "ism iss",
+ "í p",
+ "▁avoid ed",
+ "▁avo ided",
+ "▁assert ion",
+ "D N",
+ "▁te at",
+ "▁tea t",
+ "ín a",
+ "í na",
+ "▁mechan ical",
+ "is u",
+ "i su",
+ "@ {",
+ "▁n ou",
+ "▁no u",
+ "▁ nou",
+ "Ital ie",
+ "source forge",
+ "▁s vo",
+ "▁sv o",
+ "▁kir ály",
+ "▁Re ferences",
+ "▁Refer ences",
+ "▁Reference s",
+ "si x",
+ "s ix",
+ "▁Arch ives",
+ "▁Archiv es",
+ "▁Archive s",
+ "▁fin ishing",
+ "▁finish ing",
+ "ac je",
+ "ét at",
+ "éta t",
+ "é tat",
+ "if fs",
+ "iff s",
+ "▁st ead",
+ "▁ste ad",
+ "▁fe as",
+ "aw are",
+ "awa re",
+ "a ware",
+ "la nde",
+ "land e",
+ "lan de",
+ "l ande",
+ "In ject",
+ "▁A gent",
+ "▁Ag ent",
+ "▁Age nt",
+ "▁ Agent",
+ "▁Norm datei",
+ "▁a men",
+ "▁am en",
+ "▁ amen",
+ "▁Arch itecture",
+ "az e",
+ "a ze",
+ "ș te",
+ "▁us ar",
+ "▁c ores",
+ "▁cor es",
+ "▁co res",
+ "▁core s",
+ "лі н",
+ "л ін",
+ "▁C astro",
+ "▁Cast ro",
+ "▁v æ",
+ ">\" ,",
+ "> \",",
+ "om ena",
+ "ome na",
+ "omen a",
+ "▁ge sam",
+ "▁ges am",
+ "▁Mart ín",
+ "▁Martí n",
+ "eg ung",
+ "egu ng",
+ "▁spole č",
+ "▁ampl itude",
+ "▁amplit ude",
+ "▁import ing",
+ "▁list view",
+ "TH E",
+ "T HE",
+ "zi ale",
+ "zial e",
+ "zia le",
+ "z iale",
+ "ce des",
+ "ced es",
+ "c edes",
+ "▁particul ier",
+ "▁Распо дела",
+ "▁кра й",
+ "▁d ivent",
+ "▁di vent",
+ "▁div ent",
+ "▁k é",
+ "▁ ké",
+ "qu it",
+ "qui t",
+ "q uit",
+ "то ром",
+ "тор ом",
+ "Check Box",
+ "▁Zob acz",
+ "ph e",
+ "p he",
+ "pt a",
+ "p ta",
+ "▁s jö",
+ "▁sj ö",
+ "▁розта ш",
+ "▁tedes co",
+ "▁s tal",
+ "▁st al",
+ "▁sta l",
+ "▁ stal",
+ "▁Be ruf",
+ "▁Ber uf",
+ "ова я",
+ "о вая",
+ "▁s vě",
+ "▁sv ě",
+ "▁fl ush",
+ "▁flu sh",
+ "▁ flush",
+ "▁від бу",
+ "▁rad ial",
+ "▁radi al",
+ "▁différ entes",
+ "ан та",
+ "▁Per ry",
+ "Col l",
+ "Co ll",
+ "C oll",
+ "li qu",
+ "l iqu",
+ "▁Option al",
+ "▁Opt ional",
+ "▁ Optional",
+ "▁Сан кт",
+ "▁LIN Q",
+ "▁Fran c",
+ "▁Fr anc",
+ "▁Fra nc",
+ "ci je",
+ "c ije",
+ "▁Gu illaume",
+ "kn ow",
+ "k now",
+ "▁Un its",
+ "▁Unit s",
+ "ol k",
+ "▁Syst ème",
+ "▁S ales",
+ "▁Sal es",
+ "▁Sa les",
+ "▁ehemal igen",
+ "ми рова",
+ "мир ова",
+ "x html",
+ "set opt",
+ "▁m ellan",
+ "▁mel lan",
+ "▁z ie",
+ "▁ zie",
+ "▁gi ant",
+ "Bo ard",
+ "▁C aval",
+ "▁Ca val",
+ "▁Cav al",
+ "▁def ence",
+ "-- --------",
+ "---- ------",
+ "-------- --",
+ "--- -------",
+ "------ ----",
+ "----- -----",
+ "------- ---",
+ "ps hire",
+ "p shire",
+ "ma rt",
+ "mar t",
+ "m art",
+ "▁Di oc",
+ "is kt",
+ "isk t",
+ "▁in se",
+ "▁ins e",
+ "▁é pisode",
+ "чи к",
+ "bar s",
+ "ba rs",
+ "b ars",
+ "Si to",
+ "S ito",
+ "▁integr ity",
+ "au ff",
+ "auf f",
+ "a uff",
+ "▁v är",
+ "▁vä r",
+ "Az ure",
+ "▁star b",
+ "▁sta rb",
+ "▁кон тра",
+ "▁Мекси чка",
+ "▁за па",
+ "▁Mount ains",
+ "▁Mountain s",
+ "}} =",
+ "} }=",
+ "▁pull ing",
+ "▁pul ling",
+ "▁sat ellite",
+ "▁at oms",
+ "▁atom s",
+ "▁profes or",
+ "▁repeated ly",
+ "▁repeat edly",
+ "▁inv asion",
+ "▁invas ion",
+ "program ming",
+ "├ ──",
+ "▁L ip",
+ "▁Li p",
+ "вши е",
+ "в шие",
+ "▁k een",
+ "▁ke en",
+ "▁crit ics",
+ "▁critic s",
+ "▁N icola",
+ "▁Nicol a",
+ "▁Nic ola",
+ "▁Ni cola",
+ "▁C and",
+ "▁Can d",
+ "▁Ca nd",
+ "▁dist int",
+ "▁he ading",
+ "▁head ing",
+ "p ragma",
+ "{ |",
+ "ym en",
+ "yme n",
+ "y men",
+ "▁ter rain",
+ "▁terra in",
+ "ied enis",
+ "▁bes onders",
+ "▁nomin ated",
+ "BO OL",
+ "▁K ay",
+ "▁Ka y",
+ "ci an",
+ "cia n",
+ "c ian",
+ "st elle",
+ "ste lle",
+ "stell e",
+ "▁disput e",
+ "▁disp ute",
+ "▁ щ",
+ "Data Set",
+ "no thing",
+ "not hing",
+ "n othing",
+ "Aut om",
+ "Auto m",
+ "hör en",
+ "hö ren",
+ "▁s hed",
+ "▁sh ed",
+ "▁she d",
+ "▁p aused",
+ "▁pa used",
+ "▁pause d",
+ "▁pau sed",
+ "sa n",
+ "s an",
+ "▁nun ca",
+ "!( \"",
+ "! (\"",
+ "▁po łoż",
+ "Se cret",
+ "Sec ret",
+ "▁Do main",
+ "▁Dom ain",
+ "▁ Domain",
+ "▁воз мож",
+ "X V",
+ "l v",
+ "ik h",
+ "i kh",
+ "▁S ony",
+ "▁So ny",
+ "▁Son y",
+ "m q",
+ "ot rop",
+ "otr op",
+ "▁Log ger",
+ "▁ Logger",
+ "▁thre at",
+ "as ted",
+ "ast ed",
+ "aste d",
+ "a sted",
+ "зь ко",
+ "▁fre ely",
+ "▁free ly",
+ "▁improve ments",
+ "▁improv ements",
+ "▁improvement s",
+ "ist ema",
+ "iste ma",
+ "▁illustr ate",
+ "▁t act",
+ "▁ta ct",
+ "▁fig ur",
+ "ué s",
+ "u és",
+ "rim inal",
+ "rimin al",
+ "od on",
+ "odo n",
+ "o don",
+ "int endo",
+ "▁influ enced",
+ "▁influence d",
+ "▁influen ced",
+ "FF ER",
+ "▁G host",
+ "▁Gh ost",
+ "▁со вер",
+ "▁сов ер",
+ "na d",
+ "n ad",
+ "ion ed",
+ "io ned",
+ "ione d",
+ "i oned",
+ "▁Event s",
+ "▁Ev ents",
+ "▁Even ts",
+ "▁ Events",
+ "▁wr apping",
+ "▁wra pping",
+ "▁wrap ping",
+ "-------- -+",
+ "--- ------+",
+ "------ ---+",
+ "----- ----+",
+ "------- --+",
+ "fi f",
+ "f if",
+ "▁( **",
+ "▁(* *",
+ "={ {",
+ "= {{",
+ "ма ль",
+ "м аль",
+ "▁loss es",
+ "▁Gal erie",
+ "te l",
+ "t el",
+ "▁лю того",
+ "▁K ru",
+ "▁Kr u",
+ "▁P olen",
+ "▁Pol en",
+ "▁Po len",
+ "ні м",
+ "ne ar",
+ "nea r",
+ "n ear",
+ "▁sh ame",
+ "▁moy enne",
+ "▁C P",
+ "▁ CP",
+ "pre is",
+ "▁pass enger",
+ "le k",
+ "l ek",
+ "ion ales",
+ "ional es",
+ "ionale s",
+ "iona les",
+ "kaf ka",
+ "k afka",
+ "▁partic ipe",
+ "▁particip e",
+ "▁parti cipe",
+ "▁partici pe",
+ "▁memb ership",
+ "▁member ship",
+ "▁members hip",
+ "[ _",
+ "land o",
+ "lan do",
+ "l ando",
+ "st elling",
+ "stell ing",
+ "Se m",
+ "S em",
+ "go n",
+ "g on",
+ "▁Cor rect",
+ "▁v alle",
+ "▁val le",
+ "▁va lle",
+ "▁vall e",
+ "▁read ily",
+ "▁Dok ument",
+ "hon neur",
+ "h onneur",
+ "▁test im",
+ "ul ative",
+ "do Filter",
+ "▁domin ant",
+ "am mer",
+ "amm er",
+ "▁ко ја",
+ "▁M onsieur",
+ "ze g",
+ "z eg",
+ "▁вій ни",
+ "▁F o",
+ "▁A my",
+ "▁Am y",
+ "▁ ¡",
+ "▁febru ár",
+ "▁down loading",
+ "▁download ing",
+ "▁l eng",
+ "▁le ng",
+ "▁len g",
+ "\\}$ ,",
+ "\\} $,",
+ "\\ }$,",
+ "▁ne at",
+ "▁C ache",
+ "▁Ca che",
+ "▁ Cache",
+ "IC ATION",
+ "▁de ve",
+ "▁dev e",
+ "▁s orrow",
+ "▁sor row",
+ "sl ow",
+ "s low",
+ "▁hin aus",
+ "▁hina us",
+ "▁recon oc",
+ "▁Lin ked",
+ "▁Link ed",
+ "▁Sh aw",
+ "mar ket",
+ "mark et",
+ "▁D ic",
+ "▁Di c",
+ "▁S ki",
+ "▁Sk i",
+ "▁del imiter",
+ "▁Main Activity",
+ "▁ MainActivity",
+ "▁Mus ical",
+ "▁Music al",
+ "▁Re yn",
+ "▁Rey n",
+ "Scroll View",
+ "▁convent ional",
+ "▁convention al",
+ "en ça",
+ "enç a",
+ "▁re factor",
+ "▁ref actor",
+ "' -",
+ "▁H ed",
+ "▁He d",
+ "spr ech",
+ "spre ch",
+ "▁ath let",
+ "▁e species",
+ "▁es pecies",
+ "▁espe cies",
+ "▁espec ies",
+ "▁especie s",
+ "▁Sch ön",
+ "▁kle inen",
+ "▁kleine n",
+ "▁klein en",
+ "ш ко",
+ "▁Й о",
+ "▁H appy",
+ "▁Ha ppy",
+ "multi row",
+ "▁august i",
+ "▁G and",
+ "▁Ga nd",
+ "▁Gan d",
+ "▁appoint ment",
+ "▁Medi abestanden",
+ "Th ree",
+ "▁Kenn eth",
+ "NE W",
+ "▁Not ification",
+ "▁ Notification",
+ "▁Mar x",
+ "▁Ma rx",
+ "▁in sc",
+ "▁ins c",
+ "Mo r",
+ "M or",
+ "вы й",
+ "в ый",
+ "vä st",
+ "v äst",
+ "vi dia",
+ "vid ia",
+ "v idia",
+ "▁demonstr ated",
+ "▁demonstrate d",
+ "font s",
+ "fon ts",
+ "▁k amen",
+ "▁kam en",
+ "▁ka men",
+ "▁S ter",
+ "▁St er",
+ "▁Ste r",
+ "▁mieszkań ców",
+ "▁K oh",
+ "▁Ko h",
+ "~$ \\",
+ "~ $\\",
+ "») .",
+ "» ).",
+ "re ne",
+ "ren e",
+ "r ene",
+ "ins ic",
+ "ic ká",
+ "ick á",
+ "xy gen",
+ "▁m n",
+ "▁ mn",
+ "▁s ched",
+ "▁sc hed",
+ "▁sch ed",
+ "▁sche d",
+ "AS C",
+ "A SC",
+ "I g",
+ "▁Const ant",
+ "▁opport un",
+ "▁My Class",
+ "se f",
+ "s ef",
+ "op ed",
+ "ope d",
+ "o ped",
+ "▁inj ured",
+ "VI S",
+ "V IS",
+ "▁P ero",
+ "▁Per o",
+ "▁Pe ro",
+ "▁U ntil",
+ "▁Un til",
+ "▁f lesh",
+ "▁fl esh",
+ "▁fle sh",
+ "orph ism",
+ "▁Port al",
+ "▁Por tal",
+ "▁gmin y",
+ "▁вла сти",
+ "▁N ä",
+ "кти че",
+ "к тиче",
+ "▁h rab",
+ "▁hr ab",
+ "▁C ub",
+ "▁Cu b",
+ "av oir",
+ "avo ir",
+ "a voir",
+ "▁L ars",
+ "▁La rs",
+ "▁Lar s",
+ "▁Бе ло",
+ "▁seizo en",
+ "▁Gen omsnitt",
+ "▁L il",
+ "▁Li l",
+ "▁P ool",
+ "▁Po ol",
+ "▁ Pool",
+ "▁D ios",
+ "▁Di os",
+ "T X",
+ "ae s",
+ "a es",
+ "aut ore",
+ "auto re",
+ "autor e",
+ "Al pha",
+ "st ates",
+ "state s",
+ "sta tes",
+ "stat es",
+ "La b",
+ "L ab",
+ "n ederbörd",
+ "er ton",
+ "ert on",
+ "▁b rid",
+ "▁br id",
+ "▁ brid",
+ "▁r icht",
+ "▁rich t",
+ "▁ric ht",
+ "▁ri cht",
+ "▁ richt",
+ "▁E la",
+ "▁El a",
+ "▁с ла",
+ "▁ сла",
+ "▁weap on",
+ "▁comb att",
+ "▁combat t",
+ "ag ar",
+ "aga r",
+ "a gar",
+ "▁reg nig",
+ "▁util isé",
+ "▁utilis é",
+ "▁ser vir",
+ "▁serv ir",
+ "▁servi r",
+ "▁b rick",
+ "▁br ick",
+ "▁gate way",
+ "▁tor raste",
+ "▁proced ures",
+ "▁procedure s",
+ "▁års nederbörd",
+ "▁Genomsnitt lig",
+ "чё т",
+ "ч ёт",
+ "▁om rå",
+ "▁ områ",
+ "▁regnig aste",
+ "▁че сть",
+ "▁a mid",
+ "▁am id",
+ "▁ami d",
+ "▁gr ateful",
+ "▁D IS",
+ "▁DI S",
+ "▁ DIS",
+ "DA Y",
+ "▁о ру",
+ "▁ор у",
+ "▁ ору",
+ "▁riv ière",
+ "he ure",
+ "▁Rich mond",
+ "▁Com par",
+ "▁Comp ar",
+ "▁Н ор",
+ "▁Но р",
+ "DO C",
+ "D OC",
+ "es ia",
+ "esi a",
+ "cal c",
+ "▁I U",
+ "▁v org",
+ "▁vo rg",
+ "▁vor g",
+ "▁hab ían",
+ "▁había n",
+ "ço it",
+ "ç oit",
+ "▁a rist",
+ "▁ar ist",
+ "▁к ли",
+ "▁ кли",
+ "▁S ue",
+ "▁Su e",
+ "▁T ouch",
+ "▁To uch",
+ "▁ Touch",
+ "▁Writ ing",
+ "ifi able",
+ "▁w c",
+ "▁with draw",
+ "за р",
+ "з ар",
+ "▁present ly",
+ "▁pres ently",
+ "▁F K",
+ "▁pr akt",
+ "▁pra kt",
+ "▁col ored",
+ "▁color ed",
+ "us b",
+ "u sb",
+ "▁Per ú",
+ "▁pl ata",
+ "▁pla ta",
+ "▁plat a",
+ "▁w ishes",
+ "▁wish es",
+ "▁wis hes",
+ "▁ка м",
+ "▁ кам",
+ "az ar",
+ "aza r",
+ "a zar",
+ "áv el",
+ "á vel",
+ "▁l amp",
+ "▁la mp",
+ "bi shop",
+ "b ishop",
+ "▁in clusion",
+ "▁incl usion",
+ "▁inclus ion",
+ "j q",
+ "ar th",
+ "art h",
+ "▁F lag",
+ "▁Fl ag",
+ "▁ Flag",
+ "▁но р",
+ "▁н ор",
+ "æ dia",
+ "UN CTION",
+ "▁Bahn hof",
+ "▁appro aching",
+ "▁approach ing",
+ "▁G ött",
+ "▁Gö tt",
+ "▁c ube",
+ "▁cu be",
+ "▁cub e",
+ "▁arg ued",
+ "▁argue d",
+ "▁Th ings",
+ "Gu i",
+ "G ui",
+ "до ви",
+ "дов и",
+ "д ови",
+ "▁re cre",
+ "▁rec re",
+ "▁ré seau",
+ "▁rés eau",
+ "▁sign ifica",
+ "▁signific a",
+ "Gi t",
+ "G it",
+ "geb racht",
+ "gebra cht",
+ "▁l iga",
+ "▁li ga",
+ "▁lig a",
+ "▁ liga",
+ "▁ass ured",
+ "al us",
+ "alu s",
+ "a lus",
+ "ри т",
+ "р ит",
+ "▁э нциклопеди",
+ "▁% ).",
+ "▁%) .",
+ "▁ %).",
+ "▁Prem ière",
+ "▁declar ations",
+ "▁declaration s",
+ "▁tr icky",
+ "▁trick y",
+ "▁pro files",
+ "▁prof iles",
+ "▁profile s",
+ "▁profil es",
+ "▁F on",
+ "▁Fo n",
+ "▁J as",
+ "▁Ja s",
+ "â r",
+ "ba bel",
+ "b abel",
+ "▁Fr iday",
+ "▁Fri day",
+ "▁Frid ay",
+ "▁jú nius",
+ "▁c ols",
+ "▁col s",
+ "▁co ls",
+ "▁ cols",
+ "▁EX ISTS",
+ "▁Ital iana",
+ "▁Italian a",
+ "▁Italia na",
+ "▁author ization",
+ "▁s ulle",
+ "▁su lle",
+ "▁sul le",
+ "▁sull e",
+ "▁E mb",
+ "▁Em b",
+ "▁Vari able",
+ "▁ Variable",
+ "tr ees",
+ "tre es",
+ "tree s",
+ "t rees",
+ "▁F ly",
+ "▁Fl y",
+ "ri ors",
+ "rio rs",
+ "rior s",
+ "r iors",
+ "▁da mals",
+ "▁dam als",
+ "▁find et",
+ "▁fin det",
+ "▁Se pt",
+ "▁Sep t",
+ "▁m undial",
+ "▁rem oval",
+ "▁remov al",
+ "▁long itude",
+ "▁longitud e",
+ "cl ic",
+ "cli c",
+ "c lic",
+ "▁f ade",
+ "▁fa de",
+ "▁ fade",
+ "▁grad le",
+ "▁ gradle",
+ "▁z ák",
+ "▁zá k",
+ "▁tim ing",
+ "▁ti ming",
+ "tr ightarrow",
+ "t rightarrow",
+ "at ia",
+ "ati a",
+ "- .",
+ "uch e",
+ "uc he",
+ "u che",
+ "▁ser ialize",
+ "▁serial ize",
+ "▁H mm",
+ "▁Represent atives",
+ "ba h",
+ "b ah",
+ "re nd",
+ "ren d",
+ "r end",
+ "ass ador",
+ "assa dor",
+ "▁sh ield",
+ "uc ion",
+ "u cion",
+ "▁am éricaine",
+ "▁améric aine",
+ "▁américain e",
+ "z ę",
+ "vi lla",
+ "vil la",
+ "v illa",
+ "▁hom bre",
+ "ás s",
+ "á ss",
+ "▁S F",
+ "▁ SF",
+ "▁repe ating",
+ "▁repeat ing",
+ "▁c riter",
+ "▁cr iter",
+ "▁crit er",
+ "▁cri ter",
+ "▁St ruct",
+ "▁Str uct",
+ "▁ Struct",
+ "?? ?",
+ "? ??",
+ "▁che ap",
+ "▁r ings",
+ "▁ring s",
+ "▁rin gs",
+ "ab häng",
+ "▁c orte",
+ "▁cor te",
+ "▁cort e",
+ "▁admin ist",
+ "ix on",
+ "gy pt",
+ "▁punt os",
+ "▁punto s",
+ "▁me zi",
+ "▁mez i",
+ "▁po chod",
+ "▁poc hod",
+ "is ko",
+ "isk o",
+ "i sko",
+ "ni ę",
+ "n ię",
+ "▁о су",
+ "▁ос у",
+ "▁á r",
+ "▁ ár",
+ "те льной",
+ "тель ной",
+ "тельно й",
+ "▁Metropol itan",
+ "ji n",
+ "j in",
+ "ze ss",
+ "zes s",
+ "z ess",
+ "▁ві ці",
+ "▁conflic ts",
+ "▁conflict s",
+ "ij st",
+ "▁Mar ket",
+ "▁Mark et",
+ "ст ров",
+ "стро в",
+ "стр ов",
+ "▁\" ,\"",
+ "▁\", \"",
+ "▁ \",\"",
+ "▁Sc roll",
+ "▁ Scroll",
+ "gu n",
+ "g un",
+ "та ра",
+ "тар а",
+ "▁am ateur",
+ "▁r óż",
+ "pos s",
+ "po ss",
+ "p oss",
+ "▁general ized",
+ "▁H arm",
+ "▁Har m",
+ "▁Ha rm",
+ "ci ta",
+ "cit a",
+ "c ita",
+ "▁Sw itzerland",
+ "ic ola",
+ "ico la",
+ "icol a",
+ "i cola",
+ "▁m uit",
+ "▁mu it",
+ "loc ated",
+ "▁c ó",
+ "▁a rose",
+ "▁ar ose",
+ "▁commun auté",
+ "}) ^",
+ "} )^",
+ "vis ibility",
+ "íd a",
+ "í da",
+ "▁F B",
+ "▁ FB",
+ "▁Fre und",
+ "ga t",
+ "g at",
+ "\": {\"",
+ "int ellij",
+ "if ie",
+ "ifi e",
+ "hm en",
+ "h men",
+ "▁éd ition",
+ "▁ édition",
+ "▁ко је",
+ "▁ін ших",
+ "om ing",
+ "omin g",
+ "omi ng",
+ "o ming",
+ "▁arqu itect",
+ "▁Pres idente",
+ "▁President e",
+ "▁П ід",
+ "▁ca bin",
+ "▁cab in",
+ "The orem",
+ "▁G ay",
+ "▁Ga y",
+ "if ice",
+ "ific e",
+ "ifi ce",
+ "▁h ect",
+ "▁he ct",
+ "l ą",
+ "irm ingham",
+ "▁sem antic",
+ "▁Louis iana",
+ "▁sac rifice",
+ "▁sacr ifice",
+ "▁sacrific e",
+ "▁Christ oph",
+ "▁Exec utive",
+ "_ +",
+ "j ák",
+ "▁s eria",
+ "▁se ria",
+ "▁ser ia",
+ "▁Over flow",
+ "▁ Overflow",
+ "▁Lu cy",
+ "▁Luc y",
+ "▁mel hor",
+ "▁vo ices",
+ "▁voice s",
+ "cz a",
+ "c za",
+ "▁ка пи",
+ "▁университе та",
+ "IN CT",
+ "▁col oc",
+ "▁co loc",
+ "▁pr ue",
+ "▁ge omet",
+ "▁geom et",
+ "▁di retto",
+ "▁dire tto",
+ "▁dir etto",
+ "▁dirett o",
+ "re so",
+ "res o",
+ "r eso",
+ "▁A kt",
+ "▁Ak t",
+ "▁un h",
+ "▁се ри",
+ "▁сер и",
+ "▁Al ert",
+ "▁Ale rt",
+ "▁ Alert",
+ "We l",
+ "W el",
+ "au di",
+ "aud i",
+ "a udi",
+ "äl er",
+ "ä ler",
+ "▁gu ests",
+ "▁guest s",
+ "▁и де",
+ "St udio",
+ "▁ка те",
+ "▁ex ponent",
+ "▁expon ent",
+ "rz e",
+ "r ze",
+ "pm od",
+ "p mod",
+ "ro lle",
+ "roll e",
+ "rol le",
+ "▁Lim ited",
+ "Al lemagne",
+ "▁p ity",
+ "▁pi ty",
+ "▁pit y",
+ "▁l ä",
+ "▁ lä",
+ "▁run ner",
+ "▁ runner",
+ "ke nde",
+ "ken de",
+ "k ende",
+ "E Q",
+ "▁M M",
+ "▁ MM",
+ "sz ág",
+ "по ді",
+ "▁reg ret",
+ "▁publi é",
+ "▁depart amento",
+ "▁acc used",
+ "▁accus ed",
+ "h p",
+ "▁P fl",
+ "▁Pf l",
+ "▁S int",
+ "▁Si nt",
+ "▁Sin t",
+ "▁ek onom",
+ "ra ctor",
+ "rac tor",
+ "ract or",
+ "r actor",
+ "▁П ів",
+ "▁aw ful",
+ "owa ć",
+ "] ->",
+ "▁F ine",
+ "▁Fin e",
+ "С а",
+ "ti s",
+ "t is",
+ "ét a",
+ "é ta",
+ "▁Ро ди",
+ "▁Düsseld orf",
+ "LO B",
+ "L OB",
+ "os as",
+ "osa s",
+ "wer ke",
+ "werk e",
+ "▁l ance",
+ "▁lan ce",
+ "▁листо пада",
+ "▁in complete",
+ "▁P icture",
+ "▁ Picture",
+ "(' \\",
+ "( '\\",
+ "es ters",
+ "est ers",
+ "ester s",
+ "este rs",
+ "e sters",
+ "▁belong ed",
+ "▁S ank",
+ "▁San k",
+ "am med",
+ "amm ed",
+ "▁repos itories",
+ "▁ad dr",
+ "▁add r",
+ "▁ addr",
+ "Col lect",
+ "Coll ect",
+ "H ot",
+ "▁t yl",
+ "▁ty l",
+ "▁instance of",
+ "▁bon us",
+ "ov ý",
+ "▁мо ря",
+ "▁мор я",
+ "▁inter active",
+ "▁interact ive",
+ "▁M ys",
+ "▁My s",
+ "▁Ed mund",
+ "file Name",
+ "em or",
+ "emo r",
+ "e mor",
+ "▁Т ри",
+ "▁R osen",
+ "▁Ro sen",
+ "▁Ros en",
+ "▁Rose n",
+ "▁Pr ima",
+ "▁Pri ma",
+ "▁Prim a",
+ "▁v oting",
+ "▁vo ting",
+ "▁vot ing",
+ "▁X P",
+ "▁Z ero",
+ "▁Ze ro",
+ "▁ Zero",
+ "▁L ed",
+ "▁Le d",
+ "ams ung",
+ "▁en ables",
+ "▁enable s",
+ "▁redirect s",
+ "AS T",
+ "A ST",
+ "Pa int",
+ "P aint",
+ "ack er",
+ "ac ker",
+ "a cker",
+ "le cht",
+ "▁chair man",
+ "▁A ven",
+ "▁Av en",
+ "▁S ach",
+ "▁Sa ch",
+ "▁Sac h",
+ "(\" <",
+ "ке р",
+ "к ер",
+ "▁mist akes",
+ "▁mistake s",
+ "▁We it",
+ "▁Wei t",
+ "▁pro wad",
+ "▁ prowad",
+ "▁did nt",
+ "▁didn t",
+ "én ario",
+ "un less",
+ "▁back wards",
+ "bo a",
+ "b oa",
+ "du ino",
+ "`` `",
+ "` ``",
+ "st or",
+ "sto r",
+ "s tor",
+ "Comple tion",
+ "pu esta",
+ "▁din ast",
+ "úl t",
+ "ú lt",
+ "▁S Y",
+ "▁ SY",
+ "if olia",
+ "œuv res",
+ "œuvre s",
+ "▁r acing",
+ "▁ra cing",
+ "▁rac ing",
+ "▁cab inet",
+ "▁cabin et",
+ "▁cut ting",
+ "▁th umb",
+ "▁Ка ра",
+ "▁Кар а",
+ "high light",
+ "ку п",
+ "▁s d",
+ "▁ sd",
+ "▁на ціональ",
+ "▁camp agne",
+ "▁register s",
+ "▁educ ational",
+ "▁education al",
+ "▁p esar",
+ "▁pes ar",
+ "üg e",
+ "ü ge",
+ "▁o ro",
+ "▁or o",
+ "▁ oro",
+ "burg o",
+ "bur go",
+ "▁Athlet ics",
+ "▁M TV",
+ "get Message",
+ "▁H yp",
+ "▁Hy p",
+ "▁vict im",
+ "▁vic tim",
+ ")) \\",
+ ") )\\",
+ "▁dr ums",
+ "▁dru ms",
+ "▁drum s",
+ "host name",
+ "ta ł",
+ "t ał",
+ "ma king",
+ "m aking",
+ "▁pow iat",
+ "ő d",
+ "thread s",
+ "▁absol v",
+ "▁лю ди",
+ "▁ste pped",
+ "▁step ped",
+ "ex ist",
+ "▁N K",
+ "▁v es",
+ "▁ve s",
+ "▁ ves",
+ "ist iche",
+ "istic he",
+ "isti che",
+ "% '",
+ "at ivos",
+ "ativ os",
+ "ati vos",
+ "ativo s",
+ "▁та кой",
+ "▁тако й",
+ "▁Mongo DB",
+ "▁U ng",
+ "▁Un g",
+ "▁Р ус",
+ "▁Ру с",
+ "▁e lim",
+ "▁el im",
+ "▁F if",
+ "ic ación",
+ "ica ción",
+ "▁T ennis",
+ "▁Ten nis",
+ "▁Jeff erson",
+ "j án",
+ "fo g",
+ "f og",
+ "an ha",
+ "anh a",
+ "zo r",
+ "z or",
+ "▁уні версите",
+ "ah u",
+ "a hu",
+ "ia da",
+ "i ada",
+ "S dk",
+ "Set ting",
+ "▁K ill",
+ "▁Kil l",
+ "▁Ki ll",
+ "▁W end",
+ "▁We nd",
+ "▁b ald",
+ "▁bal d",
+ "▁ba ld",
+ "▁K ub",
+ "▁Ku b",
+ "▁v isto",
+ "▁vis to",
+ "▁vi sto",
+ "▁je unes",
+ "▁jeune s",
+ "▁jeu nes",
+ "col lections",
+ "collection s",
+ "collect ions",
+ "ac í",
+ "a cí",
+ "вро пей",
+ "▁ar ise",
+ "он і",
+ "о ні",
+ "MA IN",
+ "до ступ",
+ "▁b erg",
+ "▁be rg",
+ "▁ber g",
+ "▁ berg",
+ "▁critic ism",
+ "▁Tor re",
+ "▁de script",
+ "▁des cript",
+ "▁descri pt",
+ "ière s",
+ "i ères",
+ "▁e studio",
+ "▁est udio",
+ "▁estud io",
+ "▁i li",
+ "▁il i",
+ "▁ ili",
+ "▁mil itare",
+ "▁milit are",
+ "▁militar e",
+ "▁Cl ara",
+ "▁Cla ra",
+ "▁Clar a",
+ "▁El len",
+ "▁Elle n",
+ "▁Ell en",
+ "lim ited",
+ "limit ed",
+ "л м",
+ "▁Esp añ",
+ "▁inf initely",
+ "▁infinite ly",
+ "Amer ica",
+ "ou c",
+ "o uc",
+ "gl ass",
+ "g lass",
+ "▁r ud",
+ "▁ru d",
+ "▁z at",
+ "▁za t",
+ "▁ zat",
+ "▁r in",
+ "▁ri n",
+ "▁ rin",
+ "▁Bibli ografía",
+ "▁mer chant",
+ "tensor flow",
+ "▁d ér",
+ "▁dé r",
+ "▁Active Record",
+ "IE S",
+ "I ES",
+ "▁link er",
+ "▁lin ker",
+ "▁estud ios",
+ "▁estudio s",
+ "cdn js",
+ "▁Го судар",
+ "án chez",
+ "ap pe",
+ "app e",
+ "a ppe",
+ "cl ub",
+ "c lub",
+ "▁dal ší",
+ "▁Alg orithm",
+ "df s",
+ "d fs",
+ "▁B ac",
+ "▁Ba c",
+ "▁ка фе",
+ "▁& =\\",
+ "▁&= \\",
+ "▁а т",
+ "▁ ат",
+ "▁Г лав",
+ "▁M ou",
+ "▁Mo u",
+ "M achine",
+ "(... )",
+ "( ...)",
+ "▁com part",
+ "▁comp art",
+ "▁compar t",
+ "▁aug usztus",
+ "av an",
+ "ava n",
+ "a van",
+ "▁roll ed",
+ "▁rol led",
+ "▁ rolled",
+ "▁е ди",
+ "▁ еди",
+ "Sc an",
+ "S can",
+ "▁ре гі",
+ "▁świ ata",
+ "▁świat a",
+ "▁m ines",
+ "▁min es",
+ "▁mi nes",
+ "▁mine s",
+ "}, {",
+ "▁T ier",
+ "▁Ti er",
+ "Can not",
+ "C annot",
+ "мі н",
+ "м ін",
+ "▁NE W",
+ "▁ NEW",
+ "▁Во л",
+ "▁M anh",
+ "▁Man h",
+ "▁Greg ory",
+ "▁princi pe",
+ "▁princip e",
+ "▁prin cipe",
+ "IS O",
+ "I SO",
+ "pr og",
+ "pro g",
+ "p rog",
+ "▁F ail",
+ "▁Fa il",
+ "▁ Fail",
+ "▁a a",
+ "▁ aa",
+ "▁fe cha",
+ "▁W CF",
+ "▁mag istr",
+ "▁Z ach",
+ "▁Za ch",
+ "▁un icode",
+ "▁con verter",
+ "▁convert er",
+ "▁conver ter",
+ "▁dis pers",
+ "▁disp ers",
+ "ks am",
+ "k sam",
+ "▁Un cle",
+ "Property Changed",
+ "▁l ider",
+ "▁li der",
+ "▁lid er",
+ "▁o pts",
+ "▁op ts",
+ "▁opt s",
+ "▁ opts",
+ "▁та м",
+ "▁ там",
+ "lock ed",
+ "loc ked",
+ "za k",
+ "z ak",
+ "▁co unted",
+ "▁count ed",
+ "▁coun ted",
+ "▁person e",
+ "▁pers one",
+ "▁hur ried",
+ "ät ter",
+ "ätt er",
+ "ätte r",
+ "▁out ras",
+ "▁ou tras",
+ "▁g enu",
+ "▁ge nu",
+ "▁gen u",
+ "B D",
+ "ve g",
+ "v eg",
+ "du e",
+ "d ue",
+ "▁P ract",
+ "▁Pr act",
+ "▁Pra ct",
+ "▁po sible",
+ "▁pos ible",
+ "▁cont ribute",
+ "▁contrib ute",
+ "▁contribu te",
+ "UM N",
+ "▁Bür ger",
+ "▁w ars",
+ "▁war s",
+ "▁wa rs",
+ "▁exhib ition",
+ "hi ll",
+ "h ill",
+ "▁a str",
+ "▁as tr",
+ "▁ast r",
+ "▁ astr",
+ "▁му зе",
+ "▁C ASE",
+ "▁CA SE",
+ "▁ CASE",
+ "man ifest",
+ "y ellow",
+ "F n",
+ "▁R C",
+ "▁ RC",
+ "▁s ott",
+ "▁so tt",
+ "▁su jet",
+ "▁S ocket",
+ "▁So cket",
+ "▁Soc ket",
+ "▁ Socket",
+ "▁Ch ine",
+ "▁Chi ne",
+ "▁frame works",
+ "▁framework s",
+ "Hol d",
+ "H old",
+ "êt s",
+ "ê ts",
+ "▁ф іль",
+ "▁фі ль",
+ "Lo aded",
+ "Load ed",
+ "op he",
+ "oph e",
+ "o phe",
+ "text e",
+ "tex te",
+ "▁ex pres",
+ "▁exp res",
+ "▁expr es",
+ "▁cons ume",
+ "▁consum e",
+ "▁R ichtung",
+ "ograf i",
+ "▁magn ific",
+ "à t",
+ "▁ind ul",
+ "▁indu l",
+ "ry ty",
+ "▁off ici",
+ "▁offic i",
+ "▁ass ault",
+ "ru nd",
+ "run d",
+ "r und",
+ "▁vari ants",
+ "▁variant s",
+ "▁сель сов",
+ "▁exc itement",
+ "Time s",
+ "Tim es",
+ "T imes",
+ "k otlin",
+ "▁g ering",
+ "▁ge ring",
+ "▁ger ing",
+ "▁En gel",
+ "▁Eng el",
+ "▁T imer",
+ "▁Time r",
+ "▁Tim er",
+ "▁Ti mer",
+ "▁ Timer",
+ "² ).",
+ "▁N g",
+ "äs st",
+ "sch au",
+ "SE rror",
+ "S Error",
+ "▁Ed wards",
+ "▁Edward s",
+ "▁Term inal",
+ "li ct",
+ "lic t",
+ "l ict",
+ "Un der",
+ "Und er",
+ "U nder",
+ "▁sp awn",
+ "ür gen",
+ "▁Außer dem",
+ "▁k itchen",
+ "fah rt",
+ "fahr t",
+ "▁Col ors",
+ "▁Color s",
+ "▁систе ма",
+ "▁систем а",
+ "▁termin ated",
+ "▁terminate d",
+ "▁La TeX",
+ "ig keiten",
+ "igkeit en",
+ "▁mes ure",
+ "▁Am ts",
+ "▁Amt s",
+ "▁emp ir",
+ "▁stri king",
+ "▁strik ing",
+ "▁exclus ive",
+ "те х",
+ "▁re z",
+ "▁r ez",
+ "▁ rez",
+ "▁qu an",
+ "▁q uan",
+ "▁Glas gow",
+ "▁lect ure",
+ "▁Test ament",
+ "▁fun ds",
+ "▁fund s",
+ "▁st essa",
+ "▁tri bes",
+ "▁trib es",
+ "▁tribe s",
+ "▁par fois",
+ "▁tre ball",
+ "ni tz",
+ "nit z",
+ "n itz",
+ "bo ve",
+ "b ove",
+ "▁за слу",
+ "▁ab sent",
+ "▁abs ent",
+ "▁L auf",
+ "▁La uf",
+ "▁Lau f",
+ "Sm ith",
+ "▁Никола й",
+ "▁europé enne",
+ "l r",
+ "▁program ma",
+ "▁mi dst",
+ "▁mid st",
+ "▁daugh ters",
+ "▁daughter s",
+ "S yn",
+ "ob en",
+ "obe n",
+ "o ben",
+ "ân ă",
+ "id an",
+ "ida n",
+ "i dan",
+ "▁t her",
+ "▁th er",
+ "▁the r",
+ "▁ ther",
+ "od ore",
+ "odo re",
+ "odor e",
+ "sd l",
+ "s dl",
+ "▁Q uint",
+ "▁Qu int",
+ "▁cas os",
+ "▁caso s",
+ "▁Z am",
+ "▁Za m",
+ "▁стра ны",
+ "▁sp rite",
+ "▁spr ite",
+ "ка л",
+ "к ал",
+ "▁n asc",
+ "▁na sc",
+ "▁nas c",
+ "▁сот руд",
+ "▁tr ava",
+ "▁tra va",
+ "▁trav a",
+ "▁хо зяй",
+ "▁U ruguay",
+ "▁s parse",
+ "▁sp arse",
+ "▁по ле",
+ "▁пол е",
+ "▁myst ery",
+ "▁myster y",
+ "▁M ang",
+ "▁Man g",
+ "▁Ma ng",
+ "reg istr",
+ "▁CG Float",
+ "▁sub mission",
+ "▁subm ission",
+ "ва на",
+ "ван а",
+ "в ана",
+ "▁\" :",
+ "▁ \":",
+ "▁Trace back",
+ "▁P it",
+ "▁Pi t",
+ "▁E hr",
+ "▁с ра",
+ "▁Graph ics",
+ "▁ Graphics",
+ "Up dated",
+ "Update d",
+ "▁sv ensk",
+ "▁sp acing",
+ "▁spac ing",
+ "tr itt",
+ "tri tt",
+ "t ritt",
+ "▁Gu inea",
+ "▁Fran ça",
+ "▁Fr ança",
+ "As soci",
+ "Ass oci",
+ "▁T ová",
+ "▁To vá",
+ "st ab",
+ "sta b",
+ "s tab",
+ "▁Le arning",
+ "▁Lear ning",
+ "▁B right",
+ "▁Br ight",
+ "▁Brig ht",
+ "ś c",
+ "▁id ő",
+ "}} _{\\",
+ "}}_{ \\",
+ "}}_ {\\",
+ "} }_{\\",
+ "▁dro ite",
+ "▁droit e",
+ "▁ra ising",
+ "get ting",
+ "yth m",
+ "yt hm",
+ "y thm",
+ "on yme",
+ "ony me",
+ "onym e",
+ "ż s",
+ "▁b lah",
+ "▁bl ah",
+ "▁bla h",
+ "▁ blah",
+ "Tag Name",
+ "Vert ical",
+ "▁a per",
+ "▁ap er",
+ "▁ aper",
+ "post gresql",
+ "▁Hand le",
+ "▁ Handle",
+ "ze w",
+ "z ew",
+ "▁sk ulle",
+ "▁op ere",
+ "▁oper e",
+ "lay ers",
+ "layer s",
+ "▁pos sono",
+ "▁poss ono",
+ "▁re late",
+ "▁rel ate",
+ "▁rela te",
+ "ą c",
+ "▁M ih",
+ "▁Mi h",
+ "â ge",
+ "▁Ś wi",
+ "iss es",
+ "isse s",
+ "▁serv let",
+ "▁ servlet",
+ "Lo s",
+ "L os",
+ "▁Ad vanced",
+ "▁Adv anced",
+ "at ica",
+ "ati ca",
+ "atic a",
+ "▁c ed",
+ "▁ce d",
+ "▁ ced",
+ "▁element os",
+ "ро на",
+ "рон а",
+ "р она",
+ "ik s",
+ "i ks",
+ "ar f",
+ "a rf",
+ "ar iat",
+ "ari at",
+ "aria t",
+ "M obile",
+ "ag ua",
+ "agu a",
+ "▁t imp",
+ "▁tim p",
+ "▁ti mp",
+ "▁Com ité",
+ "▁comb ining",
+ "▁combin ing",
+ "wo hl",
+ "w ohl",
+ "▁Stud y",
+ "▁Stu dy",
+ "co ordinate",
+ "▁recommend ation",
+ "▁transform ations",
+ "▁transformation s",
+ "un til",
+ "unt il",
+ "u ntil",
+ "bound ed",
+ "b ounded",
+ "▁и зу",
+ "▁из у",
+ "han ced",
+ "h anced",
+ "▁во про",
+ "▁P rés",
+ "▁Pr és",
+ "▁co ord",
+ "xt y",
+ "x ty",
+ "▁$ ,",
+ "▁ $,",
+ "▁champion s",
+ "▁champ ions",
+ "De n",
+ "D en",
+ "M il",
+ "(' ,",
+ "( ',",
+ "▁Pre is",
+ "▁e igh",
+ "▁eig h",
+ "▁mark ers",
+ "▁marker s",
+ "▁gew esen",
+ "ät ten",
+ "ätt en",
+ "ätte n",
+ "▁p ione",
+ "▁pi one",
+ "m v",
+ "▁ј у",
+ "▁ ју",
+ "zeich nis",
+ "ho ff",
+ "hof f",
+ "h off",
+ "New s",
+ "Ne ws",
+ "▁Stanis ław",
+ "▁Br andenburg",
+ "▁Brand enburg",
+ "▁Fe uer",
+ "= &",
+ "же т",
+ "ж ет",
+ "▁N eil",
+ "▁Ne il",
+ "▁w irk",
+ "▁wir k",
+ "▁soci età",
+ "▁sp are",
+ "▁civil e",
+ "▁civ ile",
+ "sp rach",
+ "spr ach",
+ "▁d isse",
+ "▁dis se",
+ "▁diss e",
+ "▁g ates",
+ "▁ga tes",
+ "▁gate s",
+ "▁gat es",
+ "▁a nom",
+ "▁an om",
+ "▁ano m",
+ "▁Федера ции",
+ "▁t ib",
+ "▁ti b",
+ "▁f útbol",
+ "▁Wikip ed",
+ "ia te",
+ "iat e",
+ "i ate",
+ "Fr ont",
+ "F ront",
+ "▁c raw",
+ "▁cr aw",
+ "▁cra w",
+ "▁R ak",
+ "▁Ra k",
+ "▁з ву",
+ "▁зв у",
+ "st reet",
+ "stre et",
+ "▁A gency",
+ "▁Ag ency",
+ "ва ло",
+ "вал о",
+ "▁Ра с",
+ "▁mk dir",
+ "ac ję",
+ "▁sh ares",
+ "▁share s",
+ "St ory",
+ "Sto ry",
+ "▁re marks",
+ "▁rem arks",
+ "▁remark s",
+ "▁key words",
+ "▁keyword s",
+ "Bo b",
+ "B ob",
+ "▁t oe",
+ "▁to e",
+ "▁V itt",
+ "▁Vi tt",
+ "▁Vit t",
+ "▁r hs",
+ "▁rh s",
+ "RO P",
+ "R OP",
+ "or is",
+ "ori s",
+ "o ris",
+ "/ @",
+ "си и",
+ "▁tra verse",
+ "▁travers e",
+ "▁refer encing",
+ "pr äsident",
+ "ro ng",
+ "ron g",
+ "r ong",
+ "') :",
+ "' ):",
+ "at ies",
+ "ati es",
+ "atie s",
+ "a ties",
+ "A W",
+ "Out let",
+ "▁é vol",
+ "▁év ol",
+ "ik es",
+ "ike s",
+ "i kes",
+ "▁environment al",
+ "ic um",
+ "▁L ied",
+ "▁Li ed",
+ "▁Lie d",
+ "▁w arn",
+ "▁war n",
+ "▁wa rn",
+ "▁ warn",
+ "▁But ler",
+ "▁% ),",
+ "▁%) ,",
+ "▁Zeit schrift",
+ "▁Mon tr",
+ "▁Mont r",
+ "ва жа",
+ "▁Mer cur",
+ "je kte",
+ "jekt e",
+ "me ter",
+ "met er",
+ "m eter",
+ "du cation",
+ "▁att ributed",
+ "▁attribute d",
+ "* $",
+ "▁un f",
+ "▁Vert rag",
+ "zi en",
+ "zie n",
+ "z ien",
+ "▁Р об",
+ "▁Ро б",
+ "li ces",
+ "lic es",
+ "lice s",
+ "l ices",
+ "pp ly",
+ "p ply",
+ "an sen",
+ "ans en",
+ "anse n",
+ "▁ze it",
+ "▁ zeit",
+ "▁im mense",
+ "▁imm ense",
+ "▁lut ego",
+ "▁Bul gar",
+ "▁Bulg ar",
+ "▁mi embros",
+ "▁На циональ",
+ "▁Al low",
+ "▁All ow",
+ "▁ Allow",
+ "▁ang lès",
+ "д ви",
+ "▁T oy",
+ "▁To y",
+ "ту а",
+ "▁y ard",
+ "▁ya rd",
+ "▁ yard",
+ "( %",
+ "is ser",
+ "iss er",
+ "isse r",
+ "▁g olf",
+ "▁gol f",
+ "▁Uk rain",
+ "▁h osp",
+ "▁ho sp",
+ "▁hos p",
+ "In clude",
+ "▁L isa",
+ "▁Li sa",
+ "▁Lis a",
+ "▁c sal",
+ "▁cs al",
+ "▁M ira",
+ "▁Mi ra",
+ "▁Mir a",
+ "rec ogn",
+ "▁К е",
+ "▁h itting",
+ "▁hit ting",
+ "коно мі",
+ "коном і",
+ "▁Tourn ament",
+ "LO AD",
+ "▁Guard ian",
+ "▁da her",
+ "▁dah er",
+ "▁time zone",
+ "▁tom cat",
+ "▁ tomcat",
+ "▁success or",
+ "▁succ essor",
+ "▁successo r",
+ "▁V oid",
+ "▁Vo id",
+ "▁come ç",
+ "▁convert s",
+ "▁conver ts",
+ "äch s",
+ "ä chs",
+ "os ex",
+ "ose x",
+ "o sex",
+ "xe lles",
+ "x elles",
+ "as er",
+ "ase r",
+ "a ser",
+ "▁É s",
+ "▁m ou",
+ "▁mo u",
+ "▁u ng",
+ "▁un g",
+ "▁ ung",
+ "▁or igen",
+ "▁orig en",
+ "▁C row",
+ "▁Cr ow",
+ "▁Cro w",
+ "▁E rd",
+ "▁Er d",
+ "▁s ieben",
+ "▁si eben",
+ "▁sie ben",
+ "lu a",
+ "l ua",
+ "▁B B",
+ "▁ BB",
+ "RE NT",
+ "R ENT",
+ "▁pił kar",
+ "▁mar que",
+ "▁marqu e",
+ "▁La bour",
+ "▁Lab our",
+ "vi ders",
+ "vider s",
+ "vid ers",
+ "v iders",
+ "▁ex empl",
+ "▁exem pl",
+ "So und",
+ "S ound",
+ "▁W ass",
+ "▁Was s",
+ "▁Wa ss",
+ "arr ison",
+ "▁те чение",
+ "▁Of icina",
+ "▁D aw",
+ "▁Da w",
+ "▁K auf",
+ "▁Ka uf",
+ "én t",
+ "é nt",
+ "és ő",
+ "▁= \"",
+ "▁ =\"",
+ "▁k at",
+ "▁ka t",
+ "di ction",
+ "dict ion",
+ "dic tion",
+ "d iction",
+ "▁V oll",
+ "▁Vol l",
+ "▁Vo ll",
+ "▁high way",
+ "J ames",
+ "ze uge",
+ "zeug e",
+ "▁mod elo",
+ "▁model o",
+ "▁mode lo",
+ "Th row",
+ "▁F orum",
+ "▁For um",
+ "▁Fo rum",
+ "(\" @",
+ "▁en fer",
+ "▁enf er",
+ "▁спе циаль",
+ "Number s",
+ "Num bers",
+ "▁B inary",
+ "▁Bin ary",
+ "▁ Binary",
+ "▁Martí nez",
+ "▁Martín ez",
+ "▁St ato",
+ "▁Stat o",
+ "▁Sta to",
+ "▁fest iv",
+ "▁k atol",
+ "▁ka tol",
+ "▁kat ol",
+ "▁А б",
+ "▁lim itation",
+ "▁limit ation",
+ "▁S TR",
+ "▁ST R",
+ "▁ STR",
+ "▁О фициаль",
+ "ip es",
+ "ipe s",
+ "i pes",
+ "▁I sn",
+ "▁Is n",
+ "▁rule d",
+ "▁ru led",
+ "▁c í",
+ "▁ cí",
+ "ge ber",
+ "geb er",
+ "▁lavor o",
+ "▁lav oro",
+ "▁parenthes es",
+ "о з",
+ "▁équip es",
+ "▁équipe s",
+ "▁efficient ly",
+ "▁Per iod",
+ "▁ Period",
+ "▁Reg arding",
+ "le af",
+ "lea f",
+ "▁similar ity",
+ "▁gest ure",
+ "data b",
+ "da tab",
+ "dat ab",
+ "▁term inate",
+ "▁termin ate",
+ "▁sem antics",
+ "▁semantic s",
+ "▁A lo",
+ "▁Al o",
+ "▁c ig",
+ "▁ci g",
+ "▁Open GL",
+ "▁heut igen",
+ "xa ml",
+ "x aml",
+ "▁frequ encies",
+ ")} .",
+ ") }.",
+ "▁threaten ed",
+ "▁threat ened",
+ "ти к",
+ "▁cal cio",
+ "▁calci o",
+ "▁calc io",
+ "▁R iemann",
+ "▁Ri emann",
+ "sl ug",
+ "▁F inale",
+ "▁Fin ale",
+ "▁Final e",
+ "L R",
+ "▁Der by",
+ "▁о ще",
+ "▁de viation",
+ "▁dev iation",
+ "▁devi ation",
+ "äch en",
+ "äche n",
+ "ä chen",
+ "▁C ris",
+ "▁Cr is",
+ "но во",
+ "нов о",
+ "н ово",
+ "▁сто лі",
+ "▁re lev",
+ "▁rel ev",
+ "▁splend id",
+ "▁у чё",
+ "er ving",
+ "erv ing",
+ "ga ble",
+ "g able",
+ "▁général e",
+ "▁généra le",
+ "po m",
+ "p om",
+ "▁Che ers",
+ "▁impr ison",
+ "▁in dent",
+ "▁ind ent",
+ "▁inde nt",
+ "▁ indent",
+ "▁anal yz",
+ "▁analy z",
+ "▁re vert",
+ "▁rev ert",
+ "▁reve rt",
+ "▁rever t",
+ "ér er",
+ "ére r",
+ "é rer",
+ "▁ph ases",
+ "▁phase s",
+ "First Name",
+ "▁m ig",
+ "▁mi g",
+ "▁dist urb",
+ "▁mi xture",
+ "▁) {",
+ "▁ ){",
+ "int ure",
+ "▁T ried",
+ "▁Tr ied",
+ "▁Tri ed",
+ "▁soon er",
+ "▁p els",
+ "▁pe ls",
+ "▁pel s",
+ "▁ét abl",
+ "et ro",
+ "etr o",
+ "it ie",
+ "iti e",
+ "▁quart ier",
+ "▁го во",
+ "▁г ово",
+ "▁ гово",
+ "▁vá ros",
+ "uf e",
+ "u fe",
+ "he ten",
+ "het en",
+ "h eten",
+ "хо м",
+ "х ом",
+ "▁so ap",
+ "▁ soap",
+ "ut ors",
+ "uto rs",
+ "utor s",
+ "▁d uch",
+ "▁du ch",
+ "▁duc h",
+ "syn tax",
+ "s yntax",
+ "▁tr ibe",
+ "▁tri be",
+ "▁trib e",
+ "▁ch ante",
+ "▁chant e",
+ "Tr i",
+ "T ri",
+ "▁M ate",
+ "▁Ma te",
+ "▁Mat e",
+ "qu ality",
+ "qual ity",
+ "uo la",
+ "u ola",
+ "=\" .",
+ "= \".",
+ "ch k",
+ "▁в сі",
+ "▁вс і",
+ "▁prze ci",
+ "▁M eteor",
+ "▁Met eor",
+ "▁scatter ed",
+ "Pl us",
+ "P lus",
+ "tr ad",
+ "tra d",
+ "t rad",
+ "▁stack overflow",
+ "▁ stackoverflow",
+ "▁re tra",
+ "▁r etra",
+ "▁ret ra",
+ "▁retr a",
+ "▁éd itions",
+ "▁édition s",
+ "▁s ain",
+ "▁sa in",
+ "cri be",
+ "cr ibe",
+ "ig non",
+ "ign on",
+ "uc ker",
+ "uck er",
+ "u cker",
+ "▁ма ло",
+ "▁ten ir",
+ "▁ex ports",
+ "▁export s",
+ "▁ exports",
+ "▁aux ili",
+ "▁] ]",
+ "▁ ]]",
+ "▁C BS",
+ "un iform",
+ "uni form",
+ "▁period ic",
+ "ag rant",
+ "agr ant",
+ "▁em ple",
+ "▁emp le",
+ "W il",
+ "▁f res",
+ "▁fr es",
+ "▁fre s",
+ "▁str utt",
+ "▁stru tt",
+ "▁с віт",
+ "▁сві т",
+ "▁be tre",
+ "▁bet re",
+ "▁объ ек",
+ "ти ся",
+ "▁b isher",
+ "▁bis her",
+ "ba um",
+ "bau m",
+ "b aum",
+ "is hi",
+ "ish i",
+ "▁Gaz ette",
+ "background Color",
+ "j l",
+ "▁f iel",
+ "▁fi el",
+ "▁пре ма",
+ "▁protagon ista",
+ "▁Muham mad",
+ "▁sim ulate",
+ "▁H ook",
+ "▁Ho ok",
+ "fe st",
+ "f est",
+ "▁сво их",
+ "▁свои х",
+ "Se nder",
+ "Send er",
+ "S ender",
+ "▁list ened",
+ "▁listen ed",
+ "▁liste ned",
+ "ж і",
+ "je st",
+ "jes t",
+ "j est",
+ "ko rd",
+ "kor d",
+ "k ord",
+ "Cho ice",
+ "▁hoof d",
+ "redu cible",
+ "hp p",
+ "h pp",
+ "▁W u",
+ "š i",
+ "▁M arse",
+ "▁Mar se",
+ "▁Mars e",
+ "▁s oir",
+ "▁so ir",
+ "we sten",
+ "west en",
+ "w esten",
+ "em os",
+ "emo s",
+ "e mos",
+ "▁D uc",
+ "▁Du c",
+ "▁amer ik",
+ "| }{",
+ "▁G ul",
+ "▁Gu l",
+ "▁Sp rache",
+ "▁Spr ache",
+ "▁mis match",
+ "▁mism atch",
+ "Sc al",
+ "S cal",
+ "P ixel",
+ "E F",
+ "▁S ep",
+ "▁Se p",
+ "▁powie cie",
+ "ur k",
+ "▁Nap oli",
+ "▁neighbour hood",
+ "сто ян",
+ "стоя н",
+ "▁search es",
+ "yr us",
+ "y rus",
+ "пе т",
+ "п ет",
+ "He lp",
+ "Hel p",
+ "pon t",
+ "po nt",
+ "p ont",
+ "▁Or ient",
+ "▁Ori ent",
+ "▁Alf onso",
+ "▁monitor ing",
+ "ia o",
+ "i ao",
+ "éd é",
+ "▁Cés ar",
+ "ше е",
+ "Sh ift",
+ "su it",
+ "s uit",
+ "code d",
+ "co ded",
+ "cod ed",
+ "c oded",
+ "но то",
+ "▁Par ti",
+ "▁Part i",
+ "▁la sci",
+ "▁las ci",
+ "▁aw esome",
+ "us ta",
+ "ust a",
+ "u sta",
+ "▁С ове",
+ "▁Со ве",
+ "▁Сов е",
+ "▁F land",
+ "▁Fl and",
+ "oo m",
+ "o om",
+ "▁de vi",
+ "▁dev i",
+ "eng elsk",
+ "end um",
+ "▁Pa scal",
+ "▁Pas cal",
+ "▁B ind",
+ "▁Bi nd",
+ "▁Bin d",
+ "▁ Bind",
+ "▁sigu ientes",
+ "▁siguiente s",
+ "J B",
+ "▁Peters burg",
+ "▁incorrect ly",
+ "▁B ash",
+ "▁Bas h",
+ "▁Ba sh",
+ "▁pe los",
+ "▁pel os",
+ "▁pelo s",
+ "▁zes po",
+ "NS URL",
+ "▁př ek",
+ "▁Cr ime",
+ "na ch",
+ "n ach",
+ "▁th rust",
+ "▁thr ust",
+ "▁Cult ura",
+ "W F",
+ "▁S olo",
+ "▁So lo",
+ "▁Sol o",
+ "▁in vas",
+ "▁inv as",
+ "▁individ ually",
+ "▁individual ly",
+ "ib m",
+ "i bm",
+ "▁et apa",
+ "▁hand ed",
+ "▁han ded",
+ "▁where ver",
+ "▁interpol ation",
+ "▁mus ée",
+ "▁C NN",
+ "id ia",
+ "idi a",
+ "i dia",
+ "ńst w",
+ "▁pr zew",
+ "▁prze w",
+ "▁prz ew",
+ "ug hing",
+ "ugh ing",
+ "▁a ctors",
+ "▁act ors",
+ "▁actor s",
+ "▁Ori ental",
+ "▁Orient al",
+ "▁conven ience",
+ "▁mi asta",
+ "br ains",
+ "bra ins",
+ "▁ме ся",
+ "▁inf atti",
+ "▁All Movie",
+ "▁crit ique",
+ "▁success o",
+ "▁succ esso",
+ "anc ouver",
+ "▁f á",
+ "ъл гар",
+ "▁wis dom",
+ "▁Pho enix",
+ "ho le",
+ "hol e",
+ "h ole",
+ "▁inform ación",
+ "▁Air lines",
+ "▁Airl ines",
+ ". «",
+ "mo rt",
+ "mor t",
+ "m ort",
+ "user Id",
+ "▁*/ \r",
+ "▁C ongo",
+ "▁Con go",
+ "▁Cong o",
+ "▁\" `",
+ "▁ \"`",
+ "co rr",
+ "cor r",
+ "c orr",
+ "▁problem as",
+ "▁proble mas",
+ "▁problema s",
+ "▁probl emas",
+ "▁b ib",
+ "▁bi b",
+ "▁ bib",
+ "▁póź niej",
+ "▁file Name",
+ "▁ fileName",
+ "zo tt",
+ "z ott",
+ "ma cht",
+ "mac ht",
+ "m acht",
+ "▁Ul rich",
+ "C y",
+ "end point",
+ "▁she ep",
+ "▁i bn",
+ "Fe ed",
+ "F eed",
+ "▁sympath y",
+ "▁I b",
+ "▁territ orial",
+ "ra ting",
+ "rat ing",
+ "r ating",
+ "да ми",
+ "▁d st",
+ "▁ds t",
+ "▁ dst",
+ "у ю",
+ "ah o",
+ "a ho",
+ "▁s ug",
+ "▁su g",
+ "em ia",
+ "emi a",
+ "▁t ed",
+ "▁te d",
+ "▁ ted",
+ "▁A pi",
+ "▁Ap i",
+ "▁ Api",
+ "▁R ica",
+ "▁Ric a",
+ "▁Ri ca",
+ "▁M R",
+ "▁ MR",
+ "ński m",
+ "ń skim",
+ "▁V oor",
+ "▁Vo or",
+ "▁de vil",
+ "▁dev il",
+ "▁devi l",
+ "▁Ф о",
+ "▁N är",
+ "▁Nä r",
+ "▁... )",
+ "▁.. .)",
+ "▁ ...)",
+ "▁v ois",
+ "▁vo is",
+ "▁ab bre",
+ "▁abb re",
+ "▁M änner",
+ "xim o",
+ "xi mo",
+ "x imo",
+ "▁intellect ual",
+ "▁t ales",
+ "▁tal es",
+ "▁ta les",
+ "▁tale s",
+ "sim ilar",
+ "ne um",
+ "▁O rig",
+ "▁Or ig",
+ "▁Ori g",
+ "▁po stal",
+ "▁pos tal",
+ "▁post al",
+ "▁h vor",
+ "▁ident ification",
+ "▁identific ation",
+ "▁О д",
+ "ue sto",
+ "ues to",
+ "uest o",
+ "u esto",
+ "▁. ./",
+ "▁.. /",
+ "▁ ../",
+ "▁b ir",
+ "▁bi r",
+ "▁ bir",
+ "▁Л он",
+ "▁Ло н",
+ "▁es empio",
+ "▁E ing",
+ "▁Ein g",
+ "Exp and",
+ "▁PR IMARY",
+ "▁J in",
+ "▁Ji n",
+ "▁vš ak",
+ "ours es",
+ "ourse s",
+ "▁Be tty",
+ "▁Bet ty",
+ "▁W M",
+ "▁ WM",
+ "▁fl ask",
+ "▁fla sk",
+ "hl en",
+ "h len",
+ "▁A del",
+ "▁Ad el",
+ "lar avel",
+ "▁д ет",
+ "▁де т",
+ "сь кою",
+ "сько ю",
+ "▁M undo",
+ "▁Mun do",
+ "ic zn",
+ "icz n",
+ "ifi é",
+ "▁М ор",
+ "▁Мо р",
+ "▁д рев",
+ "▁др ев",
+ "Date Format",
+ "сь ким",
+ "ськ им",
+ "▁d ated",
+ "▁da ted",
+ "▁dat ed",
+ "▁date d",
+ "▁ dated",
+ "ко ли",
+ "кол и",
+ "▁результа те",
+ "\\) .",
+ "\\ ).",
+ "▁delay ed",
+ "so und",
+ "s ound",
+ "▁Ма к",
+ "▁\" ...",
+ "▁\". ..",
+ "▁b innen",
+ "▁bin nen",
+ "▁фа куль",
+ "▁pol ygon",
+ "▁poly gon",
+ "▁eg gs",
+ "▁egg s",
+ "At IndexPath",
+ "AtIndex Path",
+ "мен таль",
+ "мент аль",
+ "мента ль",
+ "▁in cred",
+ "▁incre d",
+ "▁inc red",
+ "ch unk",
+ "web driver",
+ "▁с вобо",
+ "▁сво бо",
+ "▁mi ędzy",
+ "Rece ived",
+ "Receive d",
+ "▁M onde",
+ "▁Mon de",
+ "▁Mo nde",
+ "▁Mond e",
+ "▁J Query",
+ "Bu tt",
+ "But t",
+ "B utt",
+ "▁P DO",
+ "▁for ec",
+ "▁fo rec",
+ "▁fore c",
+ "▁discipl ine",
+ "ch ev",
+ "che v",
+ "на т",
+ "н ат",
+ "▁re dis",
+ "▁red is",
+ "▁hun ting",
+ "▁al k",
+ "▁ alk",
+ "▁proof s",
+ "PR I",
+ "P RI",
+ "▁c hip",
+ "▁ch ip",
+ "▁chi p",
+ "és ie",
+ "▁H O",
+ "▁ HO",
+ "▁r ug",
+ "▁ru g",
+ "▁ rug",
+ "zo s",
+ "z os",
+ "▁s orte",
+ "▁sort e",
+ "▁sor te",
+ "▁ze igt",
+ "▁Phys ics",
+ "leg te",
+ "legt e",
+ "▁proport ional",
+ "▁proportion al",
+ "▁tool bar",
+ "ve ment",
+ "v ement",
+ "not in",
+ "▁prv ní",
+ "bl ah",
+ "bla h",
+ "b lah",
+ "▁prés ence",
+ "▁l loc",
+ "▁ll oc",
+ "▁lí der",
+ "▁Ac cept",
+ "▁ Accept",
+ "▁Al ways",
+ "▁\" {",
+ "▁divers i",
+ "▁diver si",
+ "ik or",
+ "iko r",
+ "i kor",
+ "Per iod",
+ "ж ён",
+ "▁Al liance",
+ "▁All iance",
+ "▁re lay",
+ "▁rel ay",
+ "▁rela y",
+ "Br o",
+ "B ro",
+ "jö n",
+ "j ön",
+ "▁B aud",
+ "▁Ba ud",
+ "▁Bau d",
+ "▁B ian",
+ "▁Bi an",
+ "') [",
+ "' )[",
+ "чи в",
+ "▁P oss",
+ "▁Po ss",
+ "▁Pos s",
+ "▁Mitg lieder",
+ "▁Mitglied er",
+ "▁n ev",
+ "▁ne v",
+ "Dan iel",
+ "▁t ends",
+ "▁ten ds",
+ "▁tend s",
+ "▁compag nie",
+ "▁liv res",
+ "▁livre s",
+ "lu b",
+ "l ub",
+ "▁ ▁",
+ "▁▁ ▁▁",
+ "▁▁▁ ▁",
+ "▁ ▁▁▁",
+ "▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁",
+ "▁▁▁▁ ▁",
+ "▁▁▁ ▁▁",
+ "▁ ▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁",
+ "▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁",
+ "▁ ▁▁",
+ "▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁▁▁ ▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁",
+ "▁ ▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁",
+ "▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁▁",
+ "▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁▁▁▁ ▁",
+ "▁▁▁ ▁▁▁▁▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁ ▁▁▁▁▁▁▁▁",
+ "▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁",
+ "▁ ▁▁▁▁▁▁▁▁▁▁▁▁▁▁"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/out/pretrain/tinyllama/2408_lr4e-5/final/tokenizer_config.json b/out/pretrain/tinyllama/2408_lr4e-5/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ef41cbc275000b29afe157ba487f0530b8c26dc
--- /dev/null
+++ b/out/pretrain/tinyllama/2408_lr4e-5/final/tokenizer_config.json
@@ -0,0 +1,35 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "bos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "clean_up_tokenization_spaces": false,
+ "eos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "legacy": false,
+ "model_max_length": 1000000000000000019884624838656,
+ "pad_token": null,
+ "padding_side": "right",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizer",
+ "unk_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/out/pretrain/tinyllama/2409_full/final/tokenizer_config.json b/out/pretrain/tinyllama/2409_full/final/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..2ef41cbc275000b29afe157ba487f0530b8c26dc
--- /dev/null
+++ b/out/pretrain/tinyllama/2409_full/final/tokenizer_config.json
@@ -0,0 +1,35 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "bos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "clean_up_tokenization_spaces": false,
+ "eos_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "legacy": false,
+ "model_max_length": 1000000000000000019884624838656,
+ "pad_token": null,
+ "padding_side": "right",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizer",
+ "unk_token": {
+ "__type": "AddedToken",
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/output/monthly_metrics.csv b/output/monthly_metrics.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c0859d1d28f44fe5e7d46a27df75a09c2f926060
--- /dev/null
+++ b/output/monthly_metrics.csv
@@ -0,0 +1,144 @@
+month,task,metric,value
+origin,arc_challenge,acc,0.2773037542662116
+2407,arc_challenge,acc,0.2721843003412969
+2408,arc_challenge,acc,0.25341296928327645
+2409,arc_challenge,acc,0.24232081911262798
+2410,arc_challenge,acc,0.23720136518771331
+2411,arc_challenge,acc,0.24829351535836178
+2412,arc_challenge,acc,0.23378839590443687
+2501,arc_challenge,acc,0.2175767918088737
+2502,arc_challenge,acc,0.2226962457337884
+2503,arc_challenge,acc,0.2235494880546075
+2504,arc_challenge,acc,0.2235494880546075
+2505,arc_challenge,acc,0.22866894197952217
+2506,arc_challenge,acc,0.24744027303754265
+origin,arc_challenge,acc_norm,0.30119453924914674
+2407,arc_challenge,acc_norm,0.3037542662116041
+2408,arc_challenge,acc_norm,0.2815699658703072
+2409,arc_challenge,acc_norm,0.26706484641638223
+2410,arc_challenge,acc_norm,0.26791808873720135
+2411,arc_challenge,acc_norm,0.26621160409556316
+2412,arc_challenge,acc_norm,0.24658703071672355
+2501,arc_challenge,acc_norm,0.25
+2502,arc_challenge,acc_norm,0.2525597269624573
+2503,arc_challenge,acc_norm,0.26023890784982934
+2504,arc_challenge,acc_norm,0.26621160409556316
+2505,arc_challenge,acc_norm,0.27047781569965873
+2506,arc_challenge,acc_norm,0.2790102389078498
+origin,arc_easy,acc,0.6031144781144782
+2407,arc_easy,acc,0.5601851851851852
+2408,arc_easy,acc,0.5328282828282829
+2409,arc_easy,acc,0.523989898989899
+2410,arc_easy,acc,0.5054713804713805
+2411,arc_easy,acc,0.494949494949495
+2412,arc_easy,acc,0.4772727272727273
+2501,arc_easy,acc,0.4890572390572391
+2502,arc_easy,acc,0.47264309764309764
+2503,arc_easy,acc,0.4739057239057239
+2504,arc_easy,acc,0.4772727272727273
+2505,arc_easy,acc,0.47474747474747475
+2506,arc_easy,acc,0.4743265993265993
+origin,arc_easy,acc_norm,0.5534511784511784
+2407,arc_easy,acc_norm,0.5206228956228957
+2408,arc_easy,acc_norm,0.49663299663299665
+2409,arc_easy,acc_norm,0.48442760942760943
+2410,arc_easy,acc_norm,0.4797979797979798
+2411,arc_easy,acc_norm,0.4743265993265993
+2412,arc_easy,acc_norm,0.4351851851851852
+2501,arc_easy,acc_norm,0.44696969696969696
+2502,arc_easy,acc_norm,0.4511784511784512
+2503,arc_easy,acc_norm,0.43686868686868685
+2504,arc_easy,acc_norm,0.4444444444444444
+2505,arc_easy,acc_norm,0.4436026936026936
+2506,arc_easy,acc_norm,0.4431818181818182
+origin,hellaswag,acc,0.44971121290579563
+2407,hellaswag,acc,0.4164509061939853
+2408,hellaswag,acc,0.39822744473212507
+2409,hellaswag,acc,0.380601473809998
+2410,hellaswag,acc,0.3648675562636925
+2411,hellaswag,acc,0.35062736506671976
+2412,hellaswag,acc,0.34475204142601074
+2501,hellaswag,acc,0.3428599880501892
+2502,hellaswag,acc,0.3388767177853017
+2503,hellaswag,acc,0.3359888468432583
+2504,hellaswag,acc,0.32991435968930494
+2505,hellaswag,acc,0.3307110137422824
+2506,hellaswag,acc,0.3269269069906393
+origin,hellaswag,acc_norm,0.5918143796056562
+2407,hellaswag,acc_norm,0.5389364668392751
+2408,hellaswag,acc_norm,0.5127464648476399
+2409,hellaswag,acc_norm,0.48396733718382795
+2410,hellaswag,acc_norm,0.4570802628958375
+2411,hellaswag,acc_norm,0.43835889265086636
+2412,hellaswag,acc_norm,0.4193387771360287
+2501,hellaswag,acc_norm,0.42272455686118304
+2502,hellaswag,acc_norm,0.4166500697072296
+2503,hellaswag,acc_norm,0.4056960764787891
+2504,hellaswag,acc_norm,0.39932284405496915
+2505,hellaswag,acc_norm,0.3963353913563035
+2506,hellaswag,acc_norm,0.38458474407488547
+origin,mmlu,acc,0.25751317476143
+2407,mmlu,acc,0.23657598632673407
+2408,mmlu,acc,0.24262925509186725
+2409,mmlu,acc,0.22945449366187154
+2410,mmlu,acc,0.23344252955419456
+2411,mmlu,acc,0.2355077624270047
+2412,mmlu,acc,0.2360774818401937
+2501,mmlu,acc,0.2357926221335992
+2502,mmlu,acc,0.23201823102122204
+2503,mmlu,acc,0.23949579831932774
+2504,mmlu,acc,0.23429710867397807
+2505,mmlu,acc,0.23023785785500642
+2506,mmlu,acc,0.2288135593220339
+origin,sciq,acc,0.889
+2407,sciq,acc,0.879
+2408,sciq,acc,0.864
+2409,sciq,acc,0.869
+2410,sciq,acc,0.859
+2411,sciq,acc,0.858
+2412,sciq,acc,0.843
+2501,sciq,acc,0.861
+2502,sciq,acc,0.854
+2503,sciq,acc,0.847
+2504,sciq,acc,0.85
+2505,sciq,acc,0.848
+2506,sciq,acc,0.846
+origin,sciq,acc_norm,0.818
+2407,sciq,acc_norm,0.808
+2408,sciq,acc_norm,0.799
+2409,sciq,acc_norm,0.801
+2410,sciq,acc_norm,0.815
+2411,sciq,acc_norm,0.815
+2412,sciq,acc_norm,0.781
+2501,sciq,acc_norm,0.798
+2502,sciq,acc_norm,0.815
+2503,sciq,acc_norm,0.792
+2504,sciq,acc_norm,0.806
+2505,sciq,acc_norm,0.797
+2506,sciq,acc_norm,0.787
+origin,truthfulqa_mc1,acc,0.22031823745410037
+2407,truthfulqa_mc1,acc,0.24479804161566707
+2408,truthfulqa_mc1,acc,0.2423500611995104
+2409,truthfulqa_mc1,acc,0.23133414932680538
+2410,truthfulqa_mc1,acc,0.26193390452876375
+2411,truthfulqa_mc1,acc,0.2607099143206854
+2412,truthfulqa_mc1,acc,0.25703794369645044
+2501,truthfulqa_mc1,acc,0.27050183598531213
+2502,truthfulqa_mc1,acc,0.2876376988984088
+2503,truthfulqa_mc1,acc,0.26438188494492043
+2504,truthfulqa_mc1,acc,0.2741738066095471
+2505,truthfulqa_mc1,acc,0.2692778457772338
+2506,truthfulqa_mc1,acc,0.2594859241126071
+origin,truthfulqa_mc2,acc,0.3759576107571677
+2407,truthfulqa_mc2,acc,0.39561290174767
+2408,truthfulqa_mc2,acc,0.40327892553931394
+2409,truthfulqa_mc2,acc,0.4001890583399856
+2410,truthfulqa_mc2,acc,0.4319577773561923
+2411,truthfulqa_mc2,acc,0.4170838696220648
+2412,truthfulqa_mc2,acc,0.41707812018027385
+2501,truthfulqa_mc2,acc,0.42201006979127265
+2502,truthfulqa_mc2,acc,0.437508328172973
+2503,truthfulqa_mc2,acc,0.4410209937744586
+2504,truthfulqa_mc2,acc,0.4496125826220402
+2505,truthfulqa_mc2,acc,0.4293394723288861
+2506,truthfulqa_mc2,acc,0.4399987346228822
diff --git a/output/ppl_metrics.jsonl b/output/ppl_metrics.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..5ea534467426cad15c11af6d8132e1f52788b351
--- /dev/null
+++ b/output/ppl_metrics.jsonl
@@ -0,0 +1,576 @@
+{"val_loss": 1.341150164604187, "val_ppl": 3.8234385610622956}
+{"val_loss": 1.34126877784729, "val_ppl": 3.823892098407064}
+{"val_loss": 1.3020246028900146, "val_ppl": 3.67673306158903}
+{"val_loss": 1.300130009651184, "val_ppl": 3.6697737426105967}
+{"val_loss": 1.4218734502792358, "val_ppl": 4.1448783944971055}
+{"val_loss": 1.4427520036697388, "val_ppl": 4.232327184816371}
+{"val_loss": 1.4181596040725708, "val_ppl": 4.12951350267743}
+{"val_loss": 1.3546987771987915, "val_ppl": 3.875593363699842}
+{"val_loss": 1.470326542854309, "val_ppl": 4.350655584624991}
+{"val_loss": 1.4195610284805298, "val_ppl": 4.135304760750455}
+{"val_loss": 1.3386825323104858, "val_ppl": 3.8140153518853306}
+{"val_loss": 1.4777861833572388, "val_ppl": 4.383231261598693}
+{"val_loss": 1.4488561153411865, "val_ppl": 4.2582407918962195}
+{"val_loss": 1.479659080505371, "val_ppl": 4.391448295355754}
+{"val_loss": 1.3966295719146729, "val_ppl": 4.041555214230304}
+{"val_loss": 1.4471527338027954, "val_ppl": 4.250993557300413}
+{"val_loss": 1.4289159774780273, "val_ppl": 4.174171842204525}
+{"val_loss": 1.404211401939392, "val_ppl": 4.072314055708701}
+{"val_loss": 1.4092137813568115, "val_ppl": 4.092736353175559}
+{"val_loss": 1.3904168605804443, "val_ppl": 4.016524034601921}
+{"val_loss": 1.499739170074463, "val_ppl": 4.48052026414801}
+{"val_loss": 1.4024999141693115, "val_ppl": 4.065350300896872}
+{"val_loss": 1.4351874589920044, "val_ppl": 4.200432343802256}
+{"val_loss": 1.3478569984436035, "val_ppl": 3.84916791298504}
+{"val_loss": 1.461810827255249, "val_ppl": 4.313763941308368}
+{"val_loss": 1.378670573234558, "val_ppl": 3.969620797897031}
+{"val_loss": 1.4638954401016235, "val_ppl": 4.322765848522458}
+{"val_loss": 1.4751393795013428, "val_ppl": 4.371645048175394}
+{"val_loss": 1.3843084573745728, "val_ppl": 3.992064267427335}
+{"val_loss": 1.380658745765686, "val_ppl": 3.977520939746586}
+{"val_loss": 1.4826524257659912, "val_ppl": 4.404613109885651}
+{"val_loss": 1.43769371509552, "val_ppl": 4.210972906158299}
+{"val_loss": 1.5467978715896606, "val_ppl": 4.696407579130361}
+{"val_loss": 1.3214406967163086, "val_ppl": 3.748818398949046}
+{"val_loss": 1.498417615890503, "val_ppl": 4.474602924750149}
+{"val_loss": 1.3503469228744507, "val_ppl": 3.8587639920080616}
+{"val_loss": 1.4803344011306763, "val_ppl": 4.39441493256747}
+{"val_loss": 1.4591506719589233, "val_ppl": 4.302303908803884}
+{"val_loss": 1.455505609512329, "val_ppl": 4.286650288934825}
+{"val_loss": 1.4074257612228394, "val_ppl": 4.0854249965473475}
+{"val_loss": 1.3784544467926025, "val_ppl": 3.9687629505831516}
+{"val_loss": 1.4490772485733032, "val_ppl": 4.259182534567126}
+{"val_loss": 1.3469082117080688, "val_ppl": 3.8455176054818567}
+{"val_loss": 1.5864226818084717, "val_ppl": 4.88623799783797}
+{"val_loss": 1.4358223676681519, "val_ppl": 4.203100081536207}
+{"val_loss": 1.4747140407562256, "val_ppl": 4.369786013544261}
+{"val_loss": 1.46660578250885, "val_ppl": 4.334497915896146}
+{"val_loss": 1.4185421466827393, "val_ppl": 4.1310935197441285}
+{"val_loss": 1.4240635633468628, "val_ppl": 4.153966094745651}
+{"val_loss": 1.3766387701034546, "val_ppl": 3.961563498125883}
+{"val_loss": 1.425502896308899, "val_ppl": 4.159949339977093}
+{"val_loss": 1.3978930711746216, "val_ppl": 4.046664943642414}
+{"val_loss": 1.2674320936203003, "val_ppl": 3.5517203566863325}
+{"val_loss": 1.2318936586380005, "val_ppl": 3.427714315194608}
+{"val_loss": 1.2307147979736328, "val_ppl": 3.4236758984527436}
+{"val_loss": 1.214829683303833, "val_ppl": 3.3697200958510547}
+{"val_loss": 1.3365414142608643, "val_ppl": 3.8058578309979167}
+{"val_loss": 1.4095568656921387, "val_ppl": 4.094140747806081}
+{"val_loss": 1.4674932956695557, "val_ppl": 4.338346547444505}
+{"val_loss": 1.473910927772522, "val_ppl": 4.36627799051875}
+{"val_loss": 1.4388253688812256, "val_ppl": 4.215740966977246}
+{"val_loss": 1.4724818468093872, "val_ppl": 4.360042682204134}
+{"val_loss": 1.443074345588684, "val_ppl": 4.23369166118488}
+{"val_loss": 1.3913347721099854, "val_ppl": 4.020212540924218}
+{"val_loss": 1.403503179550171, "val_ppl": 4.069430972770959}
+{"val_loss": 1.4253753423690796, "val_ppl": 4.159418755889095}
+{"val_loss": 1.383803367614746, "val_ppl": 3.9900484257786304}
+{"val_loss": 1.4006365537643433, "val_ppl": 4.057782141408012}
+{"val_loss": 1.3985142707824707, "val_ppl": 4.049179511261849}
+{"val_loss": 1.4229755401611328, "val_ppl": 4.149448941151369}
+{"val_loss": 1.49016535282135, "val_ppl": 4.437829265928222}
+{"val_loss": 1.3429235219955444, "val_ppl": 3.8302248996183046}
+{"val_loss": 1.455674409866333, "val_ppl": 4.287373938095487}
+{"val_loss": 1.4604880809783936, "val_ppl": 4.308061698257566}
+{"val_loss": 1.3745514154434204, "val_ppl": 3.9533029344593875}
+{"val_loss": 1.4748057126998901, "val_ppl": 4.370186618683366}
+{"val_loss": 1.4313530921936035, "val_ppl": 4.1843571842086025}
+{"val_loss": 1.3762658834457397, "val_ppl": 3.9600865593362395}
+{"val_loss": 1.3751786947250366, "val_ppl": 3.9557835374182084}
+{"val_loss": 1.4752492904663086, "val_ppl": 4.372125566307749}
+{"val_loss": 1.5399118661880493, "val_ppl": 4.664179180982086}
+{"val_loss": 1.3177032470703125, "val_ppl": 3.734833529103419}
+{"val_loss": 1.492318034172058, "val_ppl": 4.447392788141427}
+{"val_loss": 1.3440496921539307, "val_ppl": 3.8345408143712216}
+{"val_loss": 1.447272777557373, "val_ppl": 4.251503893158421}
+{"val_loss": 1.4756518602371216, "val_ppl": 4.373886006221114}
+{"val_loss": 1.4529621601104736, "val_ppl": 4.275761264532984}
+{"val_loss": 1.3991506099700928, "val_ppl": 4.051756982848695}
+{"val_loss": 1.3700883388519287, "val_ppl": 3.935698355188552}
+{"val_loss": 1.5792243480682373, "val_ppl": 4.851191515464197}
+{"val_loss": 1.442559838294983, "val_ppl": 4.231513956216503}
+{"val_loss": 1.3397365808486938, "val_ppl": 3.818037628656762}
+{"val_loss": 1.4304282665252686, "val_ppl": 4.1804891721732655}
+{"val_loss": 1.4656389951705933, "val_ppl": 4.33030940322011}
+{"val_loss": 1.4697718620300293, "val_ppl": 4.348243028560303}
+{"val_loss": 1.412990689277649, "val_ppl": 4.108223469822185}
+{"val_loss": 1.3899762630462646, "val_ppl": 4.0147547538153}
+{"val_loss": 1.4381811618804932, "val_ppl": 4.213026031717088}
+{"val_loss": 1.417484998703003, "val_ppl": 4.126728650138673}
+{"val_loss": 1.4425989389419556, "val_ppl": 4.231679414384605}
+{"val_loss": 1.3483177423477173, "val_ppl": 3.850941802259812}
+{"val_loss": 1.3146401643753052, "val_ppl": 3.7234109282681858}
+{"val_loss": 1.3350123167037964, "val_ppl": 3.800042750132002}
+{"val_loss": 1.277241826057434, "val_ppl": 3.5867332357887265}
+{"val_loss": 1.1528205871582031, "val_ppl": 3.1671134427103094}
+{"val_loss": 1.2339873313903809, "val_ppl": 3.4348983451389032}
+{"val_loss": 1.2797170877456665, "val_ppl": 3.595622336039264}
+{"val_loss": 1.3355666399002075, "val_ppl": 3.8021497859112054}
+{"val_loss": 1.4570716619491577, "val_ppl": 4.293368667359015}
+{"val_loss": 1.4283534288406372, "val_ppl": 4.171824327879861}
+{"val_loss": 1.427419662475586, "val_ppl": 4.167930636823372}
+{"val_loss": 1.3762590885162354, "val_ppl": 3.960059650918658}
+{"val_loss": 1.4136074781417847, "val_ppl": 4.110758157913091}
+{"val_loss": 1.3867117166519165, "val_ppl": 4.001669770547854}
+{"val_loss": 1.370819091796875, "val_ppl": 3.9385754294392368}
+{"val_loss": 1.3853331804275513, "val_ppl": 3.9961571243754284}
+{"val_loss": 1.3874752521514893, "val_ppl": 4.0047263542318134}
+{"val_loss": 1.4770559072494507, "val_ppl": 4.38003146104459}
+{"val_loss": 1.3301122188568115, "val_ppl": 3.7814677157436547}
+{"val_loss": 1.4076452255249023, "val_ppl": 4.086321699886432}
+{"val_loss": 1.444445013999939, "val_ppl": 4.239498627411301}
+{"val_loss": 1.3610241413116455, "val_ppl": 3.900185598302682}
+{"val_loss": 1.4499253034591675, "val_ppl": 4.262796087154245}
+{"val_loss": 1.4624829292297363, "val_ppl": 4.316664205098127}
+{"val_loss": 1.3611090183258057, "val_ppl": 3.900516648460012}
+{"val_loss": 1.3600845336914062, "val_ppl": 3.8965226753188316}
+{"val_loss": 1.4194512367248535, "val_ppl": 4.13485076330356}
+{"val_loss": 1.4613641500473022, "val_ppl": 4.311837511553485}
+{"val_loss": 1.4762977361679077, "val_ppl": 4.376711906408755}
+{"val_loss": 1.3048434257507324, "val_ppl": 3.687111741754041}
+{"val_loss": 1.521079421043396, "val_ppl": 4.577163215855215}
+{"val_loss": 1.330018401145935, "val_ppl": 3.781112963740081}
+{"val_loss": 1.4383623600006104, "val_ppl": 4.213789493280851}
+{"val_loss": 1.4308096170425415, "val_ppl": 4.182083707900716}
+{"val_loss": 1.4627163410186768, "val_ppl": 4.317671883009871}
+{"val_loss": 1.3850497007369995, "val_ppl": 3.9950244555423047}
+{"val_loss": 1.4285049438476562, "val_ppl": 4.172456469760463}
+{"val_loss": 1.354653239250183, "val_ppl": 3.875416881146776}
+{"val_loss": 1.5636532306671143, "val_ppl": 4.7762381113942824}
+{"val_loss": 1.326693058013916, "val_ppl": 3.768560348158861}
+{"val_loss": 1.4528690576553345, "val_ppl": 4.275363199192386}
+{"val_loss": 1.4538906812667847, "val_ppl": 4.279733243074122}
+{"val_loss": 1.4141857624053955, "val_ppl": 4.113136032144681}
+{"val_loss": 1.3993514776229858, "val_ppl": 4.052570931509175}
+{"val_loss": 1.4481549263000488, "val_ppl": 4.255256006690048}
+{"val_loss": 1.3942805528640747, "val_ppl": 4.032072665741862}
+{"val_loss": 1.4456123113632202, "val_ppl": 4.244450272439553}
+{"val_loss": 1.426627278327942, "val_ppl": 4.16462934277754}
+{"val_loss": 1.358683705329895, "val_ppl": 3.8910681371718034}
+{"val_loss": 1.3558281660079956, "val_ppl": 3.8799728881012405}
+{"val_loss": 1.3360062837600708, "val_ppl": 3.8038217452252545}
+{"val_loss": 1.287771224975586, "val_ppl": 3.624698907929964}
+{"val_loss": 1.310191035270691, "val_ppl": 3.7068817897402764}
+{"val_loss": 1.2401375770568848, "val_ppl": 3.4560889105973582}
+{"val_loss": 1.352718472480774, "val_ppl": 3.867926102139376}
+{"val_loss": 1.41337251663208, "val_ppl": 4.109792401432521}
+{"val_loss": 1.2470921277999878, "val_ppl": 3.480208228596859}
+{"val_loss": 1.2111821174621582, "val_ppl": 3.3574512093219884}
+{"val_loss": 1.2555495500564575, "val_ppl": 3.5097666369091187}
+{"val_loss": 1.2259924411773682, "val_ppl": 3.4075461943895142}
+{"val_loss": 1.3755548000335693, "val_ppl": 3.957271608424199}
+{"val_loss": 1.4049267768859863, "val_ppl": 4.07522832943374}
+{"val_loss": 1.3593930006027222, "val_ppl": 3.8938290324369773}
+{"val_loss": 1.3696153163909912, "val_ppl": 3.9338371217043986}
+{"val_loss": 1.375422477722168, "val_ppl": 3.9567480077409196}
+{"val_loss": 1.3954131603240967, "val_ppl": 4.0366420084698}
+{"val_loss": 1.4686474800109863, "val_ppl": 4.343356689855041}
+{"val_loss": 1.3179725408554077, "val_ppl": 3.7358394319967916}
+{"val_loss": 1.3485201597213745, "val_ppl": 3.8517213786827766}
+{"val_loss": 1.4333692789077759, "val_ppl": 4.192802140013869}
+{"val_loss": 1.4384139776229858, "val_ppl": 4.214007004689347}
+{"val_loss": 1.4524459838867188, "val_ppl": 4.2735547877441995}
+{"val_loss": 1.4084279537200928, "val_ppl": 4.089521431192144}
+{"val_loss": 1.346937894821167, "val_ppl": 3.8456317541099962}
+{"val_loss": 1.3461964130401611, "val_ppl": 3.8427813451216277}
+{"val_loss": 1.4447582960128784, "val_ppl": 4.2408269941409875}
+{"val_loss": 1.2934634685516357, "val_ppl": 3.6453904116735223}
+{"val_loss": 1.5069642066955566, "val_ppl": 4.513009413453993}
+{"val_loss": 1.315294623374939, "val_ppl": 3.725848545632831}
+{"val_loss": 1.4632922410964966, "val_ppl": 4.3201591467222356}
+{"val_loss": 1.4257274866104126, "val_ppl": 4.160883729177089}
+{"val_loss": 1.4414498805999756, "val_ppl": 4.226819760400594}
+{"val_loss": 1.4202791452407837, "val_ppl": 4.138275458934322}
+{"val_loss": 1.3707154989242554, "val_ppl": 3.938167442229121}
+{"val_loss": 1.5575144290924072, "val_ppl": 4.747007545472751}
+{"val_loss": 1.3413927555084229, "val_ppl": 3.8243662049945546}
+{"val_loss": 1.315010666847229, "val_ppl": 3.724790716812847}
+{"val_loss": 1.4113781452178955, "val_ppl": 4.101604116903256}
+{"val_loss": 1.444415807723999, "val_ppl": 4.239374809252684}
+{"val_loss": 1.4007233381271362, "val_ppl": 4.0581343087265935}
+{"val_loss": 1.4410293102264404, "val_ppl": 4.22504245900145}
+{"val_loss": 1.3875887393951416, "val_ppl": 4.005180865377458}
+{"val_loss": 1.4505560398101807, "val_ppl": 4.265485635712227}
+{"val_loss": 1.446266770362854, "val_ppl": 4.247229000301396}
+{"val_loss": 1.396878957748413, "val_ppl": 4.042563246536276}
+{"val_loss": 1.429734468460083, "val_ppl": 4.177589762792696}
+{"val_loss": 1.3607925176620483, "val_ppl": 3.8992823276937525}
+{"val_loss": 1.3603049516677856, "val_ppl": 3.8973816336232896}
+{"val_loss": 1.3669441938400269, "val_ppl": 3.9233433819285835}
+{"val_loss": 1.286567211151123, "val_ppl": 3.620337346552293}
+{"val_loss": 1.3281190395355225, "val_ppl": 3.7739380789394885}
+{"val_loss": 1.2548412084579468, "val_ppl": 3.507281403500147}
+{"val_loss": 1.4177123308181763, "val_ppl": 4.127666894733978}
+{"val_loss": 1.3702502250671387, "val_ppl": 3.9363355420739765}
+{"val_loss": 1.3417034149169922, "val_ppl": 3.825554464900454}
+{"val_loss": 1.3083659410476685, "val_ppl": 3.7001225512002343}
+{"val_loss": 1.3271970748901367, "val_ppl": 3.770460244923186}
+{"val_loss": 1.2919518947601318, "val_ppl": 3.6398842975647163}
+{"val_loss": 1.1782203912734985, "val_ppl": 3.248587840416604}
+{"val_loss": 1.2253282070159912, "val_ppl": 3.4052835373509724}
+{"val_loss": 1.2155823707580566, "val_ppl": 3.372257396668904}
+{"val_loss": 1.2278817892074585, "val_ppl": 3.4139903207611266}
+{"val_loss": 1.4587091207504272, "val_ppl": 4.3004046406565655}
+{"val_loss": 1.3676209449768066, "val_ppl": 3.925999407655126}
+{"val_loss": 1.3119637966156006, "val_ppl": 3.7134590347075784}
+{"val_loss": 1.3885787725448608, "val_ppl": 4.009148090723061}
+{"val_loss": 1.3411266803741455, "val_ppl": 3.8233487716059003}
+{"val_loss": 1.4252517223358154, "val_ppl": 4.158904600184759}
+{"val_loss": 1.4309290647506714, "val_ppl": 4.182583278050493}
+{"val_loss": 1.4441125392913818, "val_ppl": 4.238089335630643}
+{"val_loss": 1.3287216424942017, "val_ppl": 3.77621295054507}
+{"val_loss": 1.4003028869628906, "val_ppl": 4.056428420078389}
+{"val_loss": 1.339275598526001, "val_ppl": 3.8162779864157197}
+{"val_loss": 1.4401694536209106, "val_ppl": 4.221411089786576}
+{"val_loss": 1.4555355310440063, "val_ppl": 4.286778553996169}
+{"val_loss": 1.2882674932479858, "val_ppl": 3.626498177418225}
+{"val_loss": 1.3074517250061035, "val_ppl": 3.696741385601581}
+{"val_loss": 1.4939409494400024, "val_ppl": 4.454616389861115}
+{"val_loss": 1.43779718875885, "val_ppl": 4.21140865349488}
+{"val_loss": 1.4100557565689087, "val_ppl": 4.096183786857772}
+{"val_loss": 1.4162554740905762, "val_ppl": 4.12165785366786}
+{"val_loss": 1.3636306524276733, "val_ppl": 3.910364735673581}
+{"val_loss": 1.3335537910461426, "val_ppl": 3.794504330226343}
+{"val_loss": 1.5469430685043335, "val_ppl": 4.697089532528464}
+{"val_loss": 1.405177116394043, "val_ppl": 4.076248647796619}
+{"val_loss": 1.3077186346054077, "val_ppl": 3.697728213054545}
+{"val_loss": 1.4306771755218506, "val_ppl": 4.1815298630516216}
+{"val_loss": 1.3898162841796875, "val_ppl": 4.014112529272746}
+{"val_loss": 1.4351997375488281, "val_ppl": 4.20048391936611}
+{"val_loss": 1.3796876668930054, "val_ppl": 3.973660327978993}
+{"val_loss": 1.4452381134033203, "val_ppl": 4.2428623049323395}
+{"val_loss": 1.4505116939544678, "val_ppl": 4.265296483295774}
+{"val_loss": 1.4307149648666382, "val_ppl": 4.181687883311079}
+{"val_loss": 1.3972567319869995, "val_ppl": 4.044090711288925}
+{"val_loss": 1.3574261665344238, "val_ppl": 3.886178043419226}
+{"val_loss": 1.3612513542175293, "val_ppl": 3.9010718714884987}
+{"val_loss": 1.2861557006835938, "val_ppl": 3.618847846331685}
+{"val_loss": 1.3674012422561646, "val_ppl": 3.9251369496496795}
+{"val_loss": 1.3331862688064575, "val_ppl": 3.7931100217317884}
+{"val_loss": 1.2542115449905396, "val_ppl": 3.505073691661134}
+{"val_loss": 1.4171627759933472, "val_ppl": 4.125399138661909}
+{"val_loss": 1.3784681558609009, "val_ppl": 3.968817358998445}
+{"val_loss": 1.342445969581604, "val_ppl": 3.828396203155516}
+{"val_loss": 1.332214593887329, "val_ppl": 3.789426141914834}
+{"val_loss": 1.3043742179870605, "val_ppl": 3.6853821261055617}
+{"val_loss": 1.358777403831482, "val_ppl": 3.891432741507002}
+{"val_loss": 1.291567325592041, "val_ppl": 3.638484779411469}
+{"val_loss": 1.2575182914733887, "val_ppl": 3.516683266144147}
+{"val_loss": 1.2989548444747925, "val_ppl": 3.665463685313687}
+{"val_loss": 1.2884411811828613, "val_ppl": 3.6271281111018476}
+{"val_loss": 1.2724398374557495, "val_ppl": 3.5695510709700757}
+{"val_loss": 1.1867330074310303, "val_ppl": 3.2763598603215454}
+{"val_loss": 1.2677850723266602, "val_ppl": 3.5529742596306884}
+{"val_loss": 1.1667876243591309, "val_ppl": 3.2116589945209557}
+{"val_loss": 1.331156611442566, "val_ppl": 3.7854191156364547}
+{"val_loss": 1.4217880964279175, "val_ppl": 4.144524628260759}
+{"val_loss": 1.4155443906784058, "val_ppl": 4.11872805292728}
+{"val_loss": 1.4330254793167114, "val_ppl": 4.19136090411507}
+{"val_loss": 1.3298070430755615, "val_ppl": 3.780313879449632}
+{"val_loss": 1.3230668306350708, "val_ppl": 3.754919438912448}
+{"val_loss": 1.3890093564987183, "val_ppl": 4.010874737266034}
+{"val_loss": 1.4306797981262207, "val_ppl": 4.1815408295644945}
+{"val_loss": 1.4805834293365479, "val_ppl": 4.395509402105219}
+{"val_loss": 1.4442092180252075, "val_ppl": 4.23849908854833}
+{"val_loss": 1.2981786727905273, "val_ppl": 3.6626197600213617}
+{"val_loss": 1.2780815362930298, "val_ppl": 3.589746317279807}
+{"val_loss": 1.4070115089416504, "val_ppl": 4.083732950414084}
+{"val_loss": 1.3995096683502197, "val_ppl": 4.053212061361059}
+{"val_loss": 1.4300799369812012, "val_ppl": 4.1790332378731305}
+{"val_loss": 1.3523849248886108, "val_ppl": 3.8666361798385402}
+{"val_loss": 1.5370943546295166, "val_ppl": 4.6510562978472505}
+{"val_loss": 1.392841100692749, "val_ppl": 4.02627286525736}
+{"val_loss": 1.2977216243743896, "val_ppl": 3.660946147951136}
+{"val_loss": 1.3227927684783936, "val_ppl": 3.7538904985961117}
+{"val_loss": 1.415887475013733, "val_ppl": 4.120141366432711}
+{"val_loss": 1.4221597909927368, "val_ppl": 4.146065411871551}
+{"val_loss": 1.3762340545654297, "val_ppl": 3.959960516221041}
+{"val_loss": 1.3705734014511108, "val_ppl": 3.9376078783440085}
+{"val_loss": 1.453978180885315, "val_ppl": 4.280107734483991}
+{"val_loss": 1.3961623907089233, "val_ppl": 4.039667516574984}
+{"val_loss": 1.4497665166854858, "val_ppl": 4.262119265253308}
+{"val_loss": 1.4338760375976562, "val_ppl": 4.194927417389177}
+{"val_loss": 1.37185800075531, "val_ppl": 3.942669376987518}
+{"val_loss": 1.3592631816864014, "val_ppl": 3.893323572581483}
+{"val_loss": 1.3589941263198853, "val_ppl": 3.892276193888444}
+{"val_loss": 1.2880191802978516, "val_ppl": 3.6255977827515884}
+{"val_loss": 1.3384368419647217, "val_ppl": 3.813078400239476}
+{"val_loss": 1.3862513303756714, "val_ppl": 3.9998278807263596}
+{"val_loss": 1.2583595514297485, "val_ppl": 3.519642955714762}
+{"val_loss": 1.4184479713439941, "val_ppl": 4.130704490931266}
+{"val_loss": 1.37041437625885, "val_ppl": 3.9369817492805743}
+{"val_loss": 1.3524764776229858, "val_ppl": 3.8669901971590175}
+{"val_loss": 1.3464919328689575, "val_ppl": 3.8439171310222013}
+{"val_loss": 1.312469244003296, "val_ppl": 3.7153364673077163}
+{"val_loss": 1.3072757720947266, "val_ppl": 3.6960909904133183}
+{"val_loss": 1.278759479522705, "val_ppl": 3.592180786614619}
+{"val_loss": 1.3015201091766357, "val_ppl": 3.6748786406848613}
+{"val_loss": 1.322412371635437, "val_ppl": 3.7524628020644837}
+{"val_loss": 1.3233859539031982, "val_ppl": 3.7561179122955495}
+{"val_loss": 1.2703193426132202, "val_ppl": 3.56198987590475}
+{"val_loss": 1.3627822399139404, "val_ppl": 3.9070485402483417}
+{"val_loss": 1.2447692155838013, "val_ppl": 3.472133392586316}
+{"val_loss": 1.288802146911621, "val_ppl": 3.62843761637282}
+{"val_loss": 1.152793526649475, "val_ppl": 3.167027740168933}
+{"val_loss": 1.244210958480835, "val_ppl": 3.470195590403701}
+{"val_loss": 1.294120192527771, "val_ppl": 3.647785213234973}
+{"val_loss": 1.3269544839859009, "val_ppl": 3.7695456765004605}
+{"val_loss": 1.3215230703353882, "val_ppl": 3.7491272154068294}
+{"val_loss": 1.3832262754440308, "val_ppl": 3.9877464643571816}
+{"val_loss": 1.4297633171081543, "val_ppl": 4.177710282347954}
+{"val_loss": 1.474698781967163, "val_ppl": 4.36971933640994}
+{"val_loss": 1.4423388242721558, "val_ppl": 4.230578835635578}
+{"val_loss": 1.2768199443817139, "val_ppl": 3.585220377906799}
+{"val_loss": 1.2963521480560303, "val_ppl": 3.6559360003210233}
+{"val_loss": 1.3990757465362549, "val_ppl": 4.051453665761703}
+{"val_loss": 1.4050066471099854, "val_ppl": 4.07555383183206}
+{"val_loss": 1.4236403703689575, "val_ppl": 4.152208537383096}
+{"val_loss": 1.3491642475128174, "val_ppl": 3.854203024511924}
+{"val_loss": 1.534910798072815, "val_ppl": 4.640911533236923}
+{"val_loss": 1.3917083740234375, "val_ppl": 4.021714780624332}
+{"val_loss": 1.3193836212158203, "val_ppl": 3.7411147227031694}
+{"val_loss": 1.2934260368347168, "val_ppl": 3.645253961005381}
+{"val_loss": 1.375016450881958, "val_ppl": 3.9551417879560677}
+{"val_loss": 1.4203003644943237, "val_ppl": 4.138363270982153}
+{"val_loss": 1.415525197982788, "val_ppl": 4.11864900419201}
+{"val_loss": 1.3676724433898926, "val_ppl": 3.9262015956005314}
+{"val_loss": 1.442973017692566, "val_ppl": 4.233262691849686}
+{"val_loss": 1.3939220905303955, "val_ppl": 4.030627578584667}
+{"val_loss": 1.44889497756958, "val_ppl": 4.258406279838024}
+{"val_loss": 1.4308501482009888, "val_ppl": 4.182253216033278}
+{"val_loss": 1.3565833568572998, "val_ppl": 3.8829041148003633}
+{"val_loss": 1.3611866235733032, "val_ppl": 3.9008193607657637}
+{"val_loss": 1.366945743560791, "val_ppl": 3.9233494620199987}
+{"val_loss": 1.284371018409729, "val_ppl": 3.612395112481096}
+{"val_loss": 1.3864266872406006, "val_ppl": 4.000529339504789}
+{"val_loss": 1.2559508085250854, "val_ppl": 3.511175243083765}
+{"val_loss": 1.336696743965149, "val_ppl": 3.806449039684302}
+{"val_loss": 1.4145938158035278, "val_ppl": 4.114814753760315}
+{"val_loss": 1.3716117143630981, "val_ppl": 3.941698470736382}
+{"val_loss": 1.3467665910720825, "val_ppl": 3.8449730393946795}
+{"val_loss": 1.3538111448287964, "val_ppl": 3.872154787898646}
+{"val_loss": 1.3124325275421143, "val_ppl": 3.715200055804827}
+{"val_loss": 1.3093891143798828, "val_ppl": 3.70391035538021}
+{"val_loss": 1.3311996459960938, "val_ppl": 3.785582022963309}
+{"val_loss": 1.285685658454895, "val_ppl": 3.617147234735617}
+{"val_loss": 1.3011019229888916, "val_ppl": 3.673342178481718}
+{"val_loss": 1.3276662826538086, "val_ppl": 3.7722297892522243}
+{"val_loss": 1.38075590133667, "val_ppl": 3.9779073968375136}
+{"val_loss": 1.2901313304901123, "val_ppl": 3.633263682721623}
+{"val_loss": 1.2567133903503418, "val_ppl": 3.5138538226976896}
+{"val_loss": 1.3636271953582764, "val_ppl": 3.9103512172946893}
+{"val_loss": 1.241387128829956, "val_ppl": 3.460410171881076}
+{"val_loss": 1.320451021194458, "val_ppl": 3.745110120442651}
+{"val_loss": 1.372461199760437, "val_ppl": 3.945048308645735}
+{"val_loss": 1.1759514808654785, "val_ppl": 3.241225441124747}
+{"val_loss": 1.2298780679702759, "val_ppl": 3.420812404259556}
+{"val_loss": 1.2110127210617065, "val_ppl": 3.3568825173409844}
+{"val_loss": 1.260080337524414, "val_ppl": 3.525704722377241}
+{"val_loss": 1.4637188911437988, "val_ppl": 4.322002736082316}
+{"val_loss": 1.4307321310043335, "val_ppl": 4.181759667357208}
+{"val_loss": 1.2658320665359497, "val_ppl": 3.546042051851772}
+{"val_loss": 1.2814360857009888, "val_ppl": 3.601808518977614}
+{"val_loss": 1.4179924726486206, "val_ppl": 4.128823388876963}
+{"val_loss": 1.3906382322311401, "val_ppl": 4.017413277580482}
+{"val_loss": 1.3871314525604248, "val_ppl": 4.003349767597424}
+{"val_loss": 1.3380420207977295, "val_ppl": 3.811573213335039}
+{"val_loss": 1.5258201360702515, "val_ppl": 4.598913758118453}
+{"val_loss": 1.3080718517303467, "val_ppl": 3.699034544678534}
+{"val_loss": 1.3773924112319946, "val_ppl": 3.964550220628487}
+{"val_loss": 1.2838047742843628, "val_ppl": 3.6103501939863327}
+{"val_loss": 1.3609073162078857, "val_ppl": 3.8997299853295124}
+{"val_loss": 1.4048540592193604, "val_ppl": 4.07493199911301}
+{"val_loss": 1.4130195379257202, "val_ppl": 4.1083419882248045}
+{"val_loss": 1.3572558164596558, "val_ppl": 3.8855160890825537}
+{"val_loss": 1.3888936042785645, "val_ppl": 4.010410496479406}
+{"val_loss": 1.4443533420562744, "val_ppl": 4.239110002145252}
+{"val_loss": 1.439117670059204, "val_ppl": 4.216973413141904}
+{"val_loss": 1.4285095930099487, "val_ppl": 4.1724758682328424}
+{"val_loss": 1.3518025875091553, "val_ppl": 3.864385148551709}
+{"val_loss": 1.3509719371795654, "val_ppl": 3.8611765285595196}
+{"val_loss": 1.3650811910629272, "val_ppl": 3.916040986615992}
+{"val_loss": 1.2789433002471924, "val_ppl": 3.5928411645830227}
+{"val_loss": 1.3841325044631958, "val_ppl": 3.991361913889464}
+{"val_loss": 1.2574445009231567, "val_ppl": 3.516423777724961}
+{"val_loss": 1.3375129699707031, "val_ppl": 3.8095572306999146}
+{"val_loss": 1.4109896421432495, "val_ppl": 4.100010940589845}
+{"val_loss": 1.3511462211608887, "val_ppl": 3.8618495284223533}
+{"val_loss": 1.371856689453125, "val_ppl": 3.9426642069599387}
+{"val_loss": 1.3515948057174683, "val_ppl": 3.8635822830950746}
+{"val_loss": 1.3116587400436401, "val_ppl": 3.712326392393109}
+{"val_loss": 1.3364042043685913, "val_ppl": 3.805335665478876}
+{"val_loss": 1.2873055934906006, "val_ppl": 3.6230115268742002}
+{"val_loss": 1.3103896379470825, "val_ppl": 3.707618059494938}
+{"val_loss": 1.3003687858581543, "val_ppl": 3.670650101888005}
+{"val_loss": 1.3878337144851685, "val_ppl": 4.006162155111391}
+{"val_loss": 1.3314129114151, "val_ppl": 3.786389442793923}
+{"val_loss": 1.2951377630233765, "val_ppl": 3.651498981032084}
+{"val_loss": 1.2600975036621094, "val_ppl": 3.5257652456294517}
+{"val_loss": 1.3733669519424438, "val_ppl": 3.9486231634813}
+{"val_loss": 1.3397895097732544, "val_ppl": 3.818239718630534}
+{"val_loss": 1.2610360383987427, "val_ppl": 3.529075852102265}
+{"val_loss": 1.3841432332992554, "val_ppl": 3.991404736786812}
+{"val_loss": 1.2389187812805176, "val_ppl": 3.4518792099341797}
+{"val_loss": 1.2807543277740479, "val_ppl": 3.59935379432755}
+{"val_loss": 1.295367956161499, "val_ppl": 3.6523396277932254}
+{"val_loss": 1.3430655002593994, "val_ppl": 3.8307687469060596}
+{"val_loss": 1.16398286819458, "val_ppl": 3.202663694865629}
+{"val_loss": 1.2808135747909546, "val_ppl": 3.599567051620023}
+{"val_loss": 1.260958194732666, "val_ppl": 3.5288011465922553}
+{"val_loss": 1.157259225845337, "val_ppl": 3.181202359638459}
+{"val_loss": 1.3782097101211548, "val_ppl": 3.967791767595754}
+{"val_loss": 1.4102953672409058, "val_ppl": 4.097165393804618}
+{"val_loss": 1.3831013441085815, "val_ppl": 3.9872483009847124}
+{"val_loss": 1.3267830610275269, "val_ppl": 3.7688995452113194}
+{"val_loss": 1.5157912969589233, "val_ppl": 4.553022494635954}
+{"val_loss": 1.29805588722229, "val_ppl": 3.6621700707811295}
+{"val_loss": 1.3661898374557495, "val_ppl": 3.92038489881632}
+{"val_loss": 1.2747611999511719, "val_ppl": 3.577846918060537}
+{"val_loss": 1.3952255249023438, "val_ppl": 4.035884662498762}
+{"val_loss": 1.3518133163452148, "val_ppl": 3.8644266091288504}
+{"val_loss": 1.4059854745864868, "val_ppl": 4.079545048942438}
+{"val_loss": 1.350272536277771, "val_ppl": 3.8584769623630177}
+{"val_loss": 1.3880016803741455, "val_ppl": 4.006835110214329}
+{"val_loss": 1.439939260482788, "val_ppl": 4.220439461755856}
+{"val_loss": 1.439682126045227, "val_ppl": 4.2193543809403975}
+{"val_loss": 1.425325632095337, "val_ppl": 4.159211995183237}
+{"val_loss": 1.3499972820281982, "val_ppl": 3.857415046337403}
+{"val_loss": 1.3481509685516357, "val_ppl": 3.8502996196280663}
+{"val_loss": 1.3641395568847656, "val_ppl": 3.9123552441627836}
+{"val_loss": 1.2780406475067139, "val_ppl": 3.5895995399105063}
+{"val_loss": 1.3352656364440918, "val_ppl": 3.801005497910938}
+{"val_loss": 1.2514389753341675, "val_ppl": 3.4953690902586945}
+{"val_loss": 1.3836392164230347, "val_ppl": 3.9893935083287633}
+{"val_loss": 1.408053994178772, "val_ppl": 4.087992401548945}
+{"val_loss": 1.3727563619613647, "val_ppl": 3.946212909651924}
+{"val_loss": 1.3526599407196045, "val_ppl": 3.867699712238109}
+{"val_loss": 1.3524250984191895, "val_ppl": 3.8667915193855955}
+{"val_loss": 1.3104451894760132, "val_ppl": 3.707824029067743}
+{"val_loss": 1.2876347303390503, "val_ppl": 3.624204189733933}
+{"val_loss": 1.310407280921936, "val_ppl": 3.707683473484175}
+{"val_loss": 1.3380329608917236, "val_ppl": 3.8115386809964216}
+{"val_loss": 1.3004803657531738, "val_ppl": 3.6710596954918073}
+{"val_loss": 1.3873848915100098, "val_ppl": 4.004364500938389}
+{"val_loss": 1.3013007640838623, "val_ppl": 3.6740726624854023}
+{"val_loss": 1.3324860334396362, "val_ppl": 3.790454881664308}
+{"val_loss": 1.259889006614685, "val_ppl": 3.525030210614805}
+{"val_loss": 1.2663555145263672, "val_ppl": 3.547898706326383}
+{"val_loss": 1.348559856414795, "val_ppl": 3.8518742823203516}
+{"val_loss": 1.3759362697601318, "val_ppl": 3.9587814757086184}
+{"val_loss": 1.387481927871704, "val_ppl": 4.004753088753728}
+{"val_loss": 1.3125602006912231, "val_ppl": 3.7156744173764946}
+{"val_loss": 1.2541803121566772, "val_ppl": 3.5049642199864115}
+{"val_loss": 1.2859913110733032, "val_ppl": 3.6182529942396173}
+{"val_loss": 1.3593119382858276, "val_ppl": 3.8935134024270397}
+{"val_loss": 1.2177519798278809, "val_ppl": 3.379581819596577}
+{"val_loss": 1.363852858543396, "val_ppl": 3.911233739177925}
+{"val_loss": 1.337315320968628, "val_ppl": 3.8088043499204365}
+{"val_loss": 1.21320378780365, "val_ppl": 3.364245734685899}
+{"val_loss": 1.226576805114746, "val_ppl": 3.4095380234203114}
+{"val_loss": 1.2733607292175293, "val_ppl": 3.5728397551732676}
+{"val_loss": 1.228376030921936, "val_ppl": 3.4156780742351986}
+{"val_loss": 1.2366498708724976, "val_ppl": 3.4440560836099934}
+{"val_loss": 1.2924411296844482, "val_ppl": 3.6416654917592317}
+{"val_loss": 1.5101401805877686, "val_ppl": 4.527365398576229}
+{"val_loss": 1.3601326942443848, "val_ppl": 3.896710338524514}
+{"val_loss": 1.2685447931289673, "val_ppl": 3.5556745536906975}
+{"val_loss": 1.386617660522461, "val_ppl": 4.001293406677819}
+{"val_loss": 1.394290566444397, "val_ppl": 4.032113041427517}
+{"val_loss": 1.3472689390182495, "val_ppl": 3.8469050389314576}
+{"val_loss": 1.345050573348999, "val_ppl": 3.8383806554558637}
+{"val_loss": 1.4395720958709717, "val_ppl": 4.218890150182782}
+{"val_loss": 1.4325240850448608, "val_ppl": 4.189259906524582}
+{"val_loss": 1.3839958906173706, "val_ppl": 3.9908166758327095}
+{"val_loss": 1.4232866764068604, "val_ppl": 4.150740185982875}
+{"val_loss": 1.3431371450424194, "val_ppl": 3.8310432113335864}
+{"val_loss": 1.3446471691131592, "val_ppl": 3.836832548718089}
+{"val_loss": 1.3629977703094482, "val_ppl": 3.907890718719759}
+{"val_loss": 1.273000717163086, "val_ppl": 3.5715537213005493}
+{"val_loss": 1.3823846578598022, "val_ppl": 3.9843917187158144}
+{"val_loss": 1.3270139694213867, "val_ppl": 3.7697699162360436}
+{"val_loss": 1.2499171495437622, "val_ppl": 3.4900537929342614}
+{"val_loss": 1.4037634134292603, "val_ppl": 4.070490114384978}
+{"val_loss": 1.3512505292892456, "val_ppl": 3.8622523717282093}
+{"val_loss": 1.3490116596221924, "val_ppl": 3.8536149646689197}
+{"val_loss": 1.3705321550369263, "val_ppl": 3.9374454694879764}
+{"val_loss": 1.3076308965682983, "val_ppl": 3.697403795871439}
+{"val_loss": 1.2872488498687744, "val_ppl": 3.6228059499108936}
+{"val_loss": 1.3373702764511108, "val_ppl": 3.8090136703527695}
+{"val_loss": 1.3081077337265015, "val_ppl": 3.6991672758031573}
+{"val_loss": 1.2986185550689697, "val_ppl": 3.664231235950335}
+{"val_loss": 1.387139916419983, "val_ppl": 4.003383651531013}
+{"val_loss": 1.3004913330078125, "val_ppl": 3.6710999571590612}
+{"val_loss": 1.3285505771636963, "val_ppl": 3.775567026677791}
+{"val_loss": 1.2581788301467896, "val_ppl": 3.5190069387968754}
+{"val_loss": 1.268740177154541, "val_ppl": 3.5563693435718395}
+{"val_loss": 1.3508790731430054, "val_ppl": 3.860817980769562}
+{"val_loss": 1.3692480325698853, "val_ppl": 3.9323925522744596}
+{"val_loss": 1.3876168727874756, "val_ppl": 4.005293546287153}
+{"val_loss": 1.3166272640228271, "val_ppl": 3.7308170727478993}
+{"val_loss": 1.257611870765686, "val_ppl": 3.5170123702738523}
+{"val_loss": 1.2822538614273071, "val_ppl": 3.604755195251228}
+{"val_loss": 1.362865686416626, "val_ppl": 3.9073745833882385}
+{"val_loss": 1.3784377574920654, "val_ppl": 3.968696715258221}
+{"val_loss": 1.2278940677642822, "val_ppl": 3.4140322398926286}
+{"val_loss": 1.355046033859253, "val_ppl": 3.8769394230091305}
+{"val_loss": 1.2227880954742432, "val_ppl": 3.3966447137674955}
+{"val_loss": 1.330538034439087, "val_ppl": 3.7830782664953575}
+{"val_loss": 1.3018243312835693, "val_ppl": 3.6759967900819146}
+{"val_loss": 1.3158026933670044, "val_ppl": 3.727742018441474}
+{"val_loss": 1.2891671657562256, "val_ppl": 3.6297623062329407}
+{"val_loss": 1.203269600868225, "val_ppl": 3.3309901457729856}
+{"val_loss": 1.330758810043335, "val_ppl": 3.7839135700894952}
+{"val_loss": 1.1348117589950562, "val_ppl": 3.1105879475891105}
+{"val_loss": 1.1277050971984863, "val_ppl": 3.088560414877349}
+{"val_loss": 1.3736904859542847, "val_ppl": 3.9499008840565155}
+{"val_loss": 1.3900059461593628, "val_ppl": 4.014873926003411}
+{"val_loss": 1.3368369340896606, "val_ppl": 3.806982703655458}
+{"val_loss": 1.337895154953003, "val_ppl": 3.8110134645203226}
+{"val_loss": 1.4340654611587524, "val_ppl": 4.195722110743566}
+{"val_loss": 1.3786981105804443, "val_ppl": 3.969730112223086}
+{"val_loss": 1.4261013269424438, "val_ppl": 4.162439526123651}
+{"val_loss": 1.4180188179016113, "val_ppl": 4.128932165206561}
+{"val_loss": 1.3386117219924927, "val_ppl": 3.8137452898071365}
+{"val_loss": 1.3596179485321045, "val_ppl": 3.894705039739513}
+{"val_loss": 1.3404643535614014, "val_ppl": 3.8208173036220954}
+{"val_loss": 1.2676769495010376, "val_ppl": 3.552590122781728}
+{"val_loss": 1.379353404045105, "val_ppl": 3.972332302928257}
+{"val_loss": 1.2431305646896362, "val_ppl": 3.466448437198601}
+{"val_loss": 1.3276985883712769, "val_ppl": 3.7723516558105037}
+{"val_loss": 1.392342448234558, "val_ppl": 4.024265654887536}
+{"val_loss": 1.3480721712112427, "val_ppl": 3.8499962382113044}
+{"val_loss": 1.3659417629241943, "val_ppl": 3.9194124717912064}
+{"val_loss": 1.345070719718933, "val_ppl": 3.838457985671455}
+{"val_loss": 1.3030657768249512, "val_ppl": 3.6805631737789652}
+{"val_loss": 1.3052972555160522, "val_ppl": 3.688785442569407}
+{"val_loss": 1.284741759300232, "val_ppl": 3.613734623352329}
+{"val_loss": 1.336305856704712, "val_ppl": 3.8049614380083994}
+{"val_loss": 1.2946184873580933, "val_ppl": 3.6496033386924926}
+{"val_loss": 1.2989022731781006, "val_ppl": 3.665270992199881}
+{"val_loss": 1.3844693899154663, "val_ppl": 3.9927067721718763}
+{"val_loss": 1.255777359008789, "val_ppl": 3.5105662842495544}
+{"val_loss": 1.3224587440490723, "val_ppl": 3.7526368168564037}
+{"val_loss": 1.3515779972076416, "val_ppl": 3.863517342580081}
+{"val_loss": 1.3663848638534546, "val_ppl": 3.9211495519221002}
+{"val_loss": 1.3825994729995728, "val_ppl": 3.985247718317316}
+{"val_loss": 1.2666370868682861, "val_ppl": 3.548897837131214}
+{"val_loss": 1.3184268474578857, "val_ppl": 3.7375370341032705}
+{"val_loss": 1.257476806640625, "val_ppl": 3.516537380153017}
+{"val_loss": 1.2794915437698364, "val_ppl": 3.594811456529942}
+{"val_loss": 1.3653500080108643, "val_ppl": 3.9170938263062465}
+{"val_loss": 1.384273648262024, "val_ppl": 3.9919253096314606}
+{"val_loss": 1.2255817651748657, "val_ppl": 3.4061470842502035}
+{"val_loss": 1.2283060550689697, "val_ppl": 3.415439067610939}
+{"val_loss": 1.3634006977081299, "val_ppl": 3.909465632227979}
+{"val_loss": 1.3375054597854614, "val_ppl": 3.8095286203268577}
+{"val_loss": 1.3161922693252563, "val_ppl": 3.7291945400257975}
+{"val_loss": 1.3368380069732666, "val_ppl": 3.80698678810698}
+{"val_loss": 1.2881275415420532, "val_ppl": 3.6259906783252442}
+{"val_loss": 1.2877486944198608, "val_ppl": 3.624617242369221}
+{"val_loss": 1.2023593187332153, "val_ppl": 3.3279593845845548}
+{"val_loss": 1.4111467599868774, "val_ppl": 4.100655176076802}
+{"val_loss": 1.1967121362686157, "val_ppl": 3.3092187563827467}
+{"val_loss": 1.162367582321167, "val_ppl": 3.1974946533058244}
+{"val_loss": 1.2206904888153076, "val_ppl": 3.3895273565155115}
+{"val_loss": 1.2158591747283936, "val_ppl": 3.37319098010914}
+{"val_loss": 1.2004448175430298, "val_ppl": 3.321594097500959}
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000000000000000000000000000000000000..e18a2f11d2c3ddd02501e9067e80d2b141530e38
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,145 @@
+[build-system]
+build-backend = "setuptools.build_meta"
+
+requires = [
+ "setuptools>=68.2.2",
+ "wheel>=0.41.2",
+]
+
+[project]
+name = "litgpt"
+version = "0.5.9"
+description = "Hackable implementation of state-of-the-art open-source LLMs"
+readme = "README.md"
+license = { file = "LICENSE" }
+
+authors = [
+ { name = "Lightning AI", email = "contact@lightning.ai" },
+]
+classifiers = [
+ "Programming Language :: Python :: 3 :: Only",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: 3.13",
+]
+dependencies = [
+ # download models:
+ "huggingface-hub>=0.23.5,<0.33",
+ "jsonargparse[signatures]>=4.30.1,<=4.32.1; python_version<='3.9'", # 4.33 does not seem to be compatible with Python 3.9
+ "jsonargparse[signatures]>=4.37; python_version>'3.9'", # required to work with python3.12+
+ "lightning>=2.5",
+ "psutil==7",
+ "safetensors>=0.4.3",
+ # tokenization in most models:
+ "tokenizers>=0.15.2",
+ "torch>=2.5",
+ # convert_hf_checkpoint
+ "tqdm>=4.66",
+]
+
+optional-dependencies.compiler = [
+ # compilaton:
+ "lightning-thunder>=0.2.0.dev20250119; python_version>='3.10' and sys_platform=='linux'",
+]
+optional-dependencies.extra = [
+ "bitsandbytes>=0.42,<0.43; sys_platform=='darwin'",
+ # quantization:
+ "bitsandbytes>=0.45.2,<0.45.5; sys_platform=='linux' or sys_platform=='win32'",
+ # litgpt.evaluate:
+ "datasets>=2.18,<4",
+ # download:
+ "huggingface-hub[hf-transfer]>=0.21",
+ "litdata==0.2.51",
+ # litgpt.deploy:
+ "litserve>0.2",
+ "lm-eval>=0.4.2",
+ # litgpt.data.prepare_starcoder.py:
+ "pandas>=1.9",
+ "pyarrow>=15.0.2",
+ # litgpt.data:
+ "requests>=2.31",
+ # llama-based models:
+ "sentencepiece>=0.2",
+ # litgpt.pretrain:
+ "tensorboard>=2.14",
+ "torchmetrics>=1.3.1",
+ "transformers>=4.51.3,<4.52",
+ # litdata, only on non-Windows:
+ "uvloop>=0.2; sys_platform!='win32'",
+ # litgpt.data.prepare_slimpajama.py:
+ "zstandard>=0.22",
+]
+optional-dependencies.test = [
+ "einops>=0.7",
+ "protobuf>=4.23.4",
+ "pytest>=8.1.1",
+ "pytest-benchmark>=5.1",
+ "pytest-dependency>=0.6",
+ "pytest-rerunfailures>=14",
+ "pytest-timeout>=2.3.1",
+]
+urls.documentation = "https://github.com/lightning-AI/litgpt/tutorials"
+urls.homepage = "https://github.com/lightning-AI/litgpt"
+scripts.litgpt = "litgpt.__main__:main"
+
+[tool.setuptools.packages.find]
+include = [
+ "litgpt",
+ "litgpt.*",
+]
+exclude = [ ]
+
+[tool.setuptools.package-data]
+litgpt = [
+ "LICENSE",
+ "README.md",
+]
+
+[tool.ruff]
+target-version = "py38"
+line-length = 120
+exclude = [
+ "build",
+ "dist",
+ "docs",
+]
+
+lint.select = [
+ "E",
+ "F", # see: https://pypi.org/project/pyflakes
+ "I", # implementation for isort
+ "UP", # see: https://docs.astral.sh/ruff/rules/#pyupgrade-up
+ "W", # see: https://pypi.org/project/pycodestyle
+]
+#extend-select = [
+# "C4", # see: https://pypi.org/project/flake8-comprehensions
+# "PT", # see: https://pypi.org/project/flake8-pytest-style
+# "RET", # see: https://pypi.org/project/flake8-return
+# "SIM", # see: https://pypi.org/project/flake8-simplify
+#]
+lint.ignore = [
+ "E501", # Line too long
+ "E731", # Do not assign a lambda expression, use a def
+ "E741", # todo: Ambiguous variable name
+ "F841", # todo: Local variable is assigned to but never used
+]
+# Use Google-style docstrings.
+lint.pydocstyle.convention = "google"
+
+[tool.codespell]
+#skip = '*.py'
+quiet-level = 3
+ignore-words-list = """
+ tral, \
+ Rockerfeller
+"""
+
+[tool.pytest.ini_options]
+addopts = [
+ "--strict-markers",
+ #"--doctest-modules",
+ "--color=yes",
+ "--disable-pytest-warnings",
+]
diff --git a/scripts/arxiv_mc_eval.sh b/scripts/arxiv_mc_eval.sh
new file mode 100644
index 0000000000000000000000000000000000000000..b16e9be4499851da53d78cfa75e53d320b77f326
--- /dev/null
+++ b/scripts/arxiv_mc_eval.sh
@@ -0,0 +1,30 @@
+#!/usr/bin/env bash
+
+MODEL_ROOT="out/pretrain/tinyllama_lr_plus"
+#"out/pretrain/tinyllama_3_epoch"
+#"out/pretrain/qwen2"
+#"out/pretrain/tinyllama"
+
+TASKS="arxiv_mc"
+BATCH=4
+OUT_ROOT="out/eval/tinyllama_lr_plus_arxiv_mc"
+#"out/eval/tinyllama_3_epoch_arxiv_mc"
+#"out/eval/qwen2_arxiv_mc"
+#"out/eval/tinyllama_arxiv_mc"
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+for ((i=0; i<${#MONTHS[@]}; i+=1)); do
+ m=${MONTHS[$i]}
+ ckpt="${MODEL_ROOT}/${m}/final"
+ out="${OUT_ROOT}/${m}"
+
+ mkdir -p "$out"
+
+ litgpt evaluate "${ckpt}" \
+ --batch_size ${BATCH} \
+ --tasks "${TASKS}" \
+ --out_dir "${out}" \
+ 2>&1 | tee "${out}/log.txt"
+done
+
+echo "All months evaluated."
\ No newline at end of file
diff --git a/scripts/arxiv_mc_eval_test.sh b/scripts/arxiv_mc_eval_test.sh
new file mode 100644
index 0000000000000000000000000000000000000000..7cb55e426c3fe0241b8c16e08ac55127669b5a4e
--- /dev/null
+++ b/scripts/arxiv_mc_eval_test.sh
@@ -0,0 +1,36 @@
+#!/usr/bin/env bash
+
+MODEL_ROOT="out/pretrain/qwen2_7b_question_focus_lr_plus"
+#"out/pretrain/qwen2_7b_question_focus"
+
+TASKS="arxiv_mc"
+BATCH=4
+OUT_ROOT="out/eval/qwen2_7b_question_focus_lr_plus"
+#"out/eval/qwen2_7b_question_focus"
+#"out/eval/qwen2_arxiv_mc"
+#"out/eval/tinyllama_arxiv_mc"
+
+CKPTS=(010 020 030 040 050 060 070 080 090 100)
+export CUDA_VISIBLE_DEVICES="4,5,6,7"
+
+for ((i=0; i<${#CKPTS[@]}; i+=1)); do
+ m=${CKPTS[$i]}
+ ckpt="${MODEL_ROOT}/step-00000${m}"
+ out="${OUT_ROOT}/step-00000${m}"
+
+ mkdir -p "$out"
+
+ litgpt evaluate "${ckpt}" \
+ --batch_size ${BATCH} \
+ --tasks "${TASKS}" \
+ --out_dir "${out}" \
+ 2>&1 | tee "${out}/log.txt"
+done
+
+#litgpt evaluate "${MODEL_ROOT}" \
+# --batch_size ${BATCH} \
+# --tasks "${TASKS}" \
+# --out_dir "out/eval/qwen2_7b_question_focus/step-00000000" \
+# 2>&1 | tee "${out}/log.txt"
+
+echo "All evaluated."
\ No newline at end of file
diff --git a/scripts/basic_benches_eval.sh b/scripts/basic_benches_eval.sh
new file mode 100644
index 0000000000000000000000000000000000000000..1dcedc88e0d9c65280a74888c5b2bfb65e7abdbb
--- /dev/null
+++ b/scripts/basic_benches_eval.sh
@@ -0,0 +1,31 @@
+#!/usr/bin/env bash
+
+MODEL_ROOT="out/pretrain/openllama"
+TASKS="arc_easy,arc_challenge,hellaswag,sciq,mmlu,truthfulqa_mc1,truthfulqa_mc2"
+BATCH=4
+OUT_ROOT="out/eval/openllama_benches"
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+export HF_ALLOW_CODE_EVAL=1
+
+for ((i=4; i<${#MONTHS[@]}; i+=4)); do
+ for ((j=0; j<4 && (i+j)<${#MONTHS[@]}; j++)); do
+ m=${MONTHS[$((i+j))]}
+ gpu=$j
+ ckpt="${MODEL_ROOT}/${m}/final"
+ out="${OUT_ROOT}/${m}"
+
+ mkdir -p "$out"
+ echo "[GPU ${gpu}] evaluating month ${m} -> ${out}"
+
+ CUDA_VISIBLE_DEVICES=${gpu} \
+ litgpt evaluate "${ckpt}" \
+ --batch_size ${BATCH} \
+ --tasks "${TASKS}" \
+ --out_dir "${out}" \
+ > "${out}/log.txt" 2>&1 &
+ done
+ wait
+done
+
+echo "All months evaluated."
diff --git a/scripts/extract_citation.sh b/scripts/extract_citation.sh
new file mode 100644
index 0000000000000000000000000000000000000000..0f9f535903087374320adf03633cc1111f02bdf0
--- /dev/null
+++ b/scripts/extract_citation.sh
@@ -0,0 +1,13 @@
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+export S2_API_KEY=rXDANMwhIyUlOaDjQpzW7Ysu3cy65Ow1s3wQIyr7
+
+for ((i=11; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+ IN_DIR="./litgpt/data/arxiv_processed_id/${MONTH}_id.jsonl"
+
+ echo "Processing $IN_DIR to $OUT_DIR"
+
+ python ./litgpt/data/processing/extract_citation.py --input $IN_DIR
+done
\ No newline at end of file
diff --git a/scripts/extract_citation_resume.sh b/scripts/extract_citation_resume.sh
new file mode 100644
index 0000000000000000000000000000000000000000..f1aed50b0028628597e77c4b08a7ae8186c4815a
--- /dev/null
+++ b/scripts/extract_citation_resume.sh
@@ -0,0 +1,23 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+export S2_API_KEY=rXDANMwhIyUlOaDjQpzW7Ysu3cy65Ow1s3wQIyr7
+
+for MONTH in "${MONTHS[@]}"; do
+ IN="./litgpt/data/arxiv_processed_id/${MONTH}_id.jsonl"
+ echo "=== Processing ${IN} ==="
+
+ python ./litgpt/data/processing/extract_citation_resume.py \
+ --input "$IN" \
+ --resume \
+ --refetch-missing \
+ --rate-sleep 0.6 \
+ --max-retries 6 \
+ --timeout 30
+
+ sleep 2
+done
+
+echo "All done."
diff --git a/scripts/extract_id.sh b/scripts/extract_id.sh
new file mode 100644
index 0000000000000000000000000000000000000000..043a1d1e49e1591eee15d1f6a78432b481369100
--- /dev/null
+++ b/scripts/extract_id.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+IN_ROOT="./litgpt/data/arxiv_processed/"
+OUT_ROOT="./litgpt/data/arxiv_processed_id/"
+
+
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+mkdir -p ${OUT_ROOT}
+
+START_IDX=0
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+
+ IN_DIR="${IN_ROOT}/${MONTH}/${MONTH}.jsonl"
+ OUT_DIR="${OUT_ROOT}/${MONTH}_id.jsonl"
+
+ python ./litgpt/data/processing/extract_id.py "$IN_DIR" "$OUT_DIR"
+
+done
diff --git a/scripts/extract_topk_citation.sh b/scripts/extract_topk_citation.sh
new file mode 100644
index 0000000000000000000000000000000000000000..12e6e4fd30d7e547d1a3119c688cfd5104779472
--- /dev/null
+++ b/scripts/extract_topk_citation.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+IN_ROOT="./litgpt/data/arxiv_processed_id/"
+OUT_ROOT="./litgpt/data/arxiv_training_id_top30_cite/"
+
+
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+mkdir -p ${OUT_ROOT}
+
+START_IDX=11
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+
+ IN_DIR="${IN_ROOT}/${MONTH}_training_id_citation.jsonl"
+ OUT_DIR="${OUT_ROOT}/${MONTH}_training_id_citation_top30.jsonl"
+
+ python ./litgpt/data/processing/extract_topk_citation.py "$IN_DIR" "$OUT_DIR" --topk 30
+
+done
diff --git a/scripts/extract_topk_text.sh b/scripts/extract_topk_text.sh
new file mode 100644
index 0000000000000000000000000000000000000000..36edb33005bb8ce8ce0a384e305402ba7ce74b7e
--- /dev/null
+++ b/scripts/extract_topk_text.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+IN_ROOT_1="./litgpt/data/arxiv_question/"
+IN_ROOT_2="./litgpt/data/arxiv/"
+OUT_ROOT="./litgpt/data/arxiv_question/"
+
+
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+mkdir -p ${OUT_ROOT}
+
+START_IDX=0
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+
+ IN_DIR_1="${IN_ROOT_1}/${MONTH}"
+ IN_DIR_2="${IN_ROOT_2}/${MONTH}"
+ OUT_DIR="${OUT_ROOT}/${MONTH}"
+
+ python ./litgpt/data/processing/extract_topk_text.py "$IN_DIR_1" "$IN_DIR_2" "$OUT_DIR"
+
+done
diff --git a/scripts/extract_training_citation.sh b/scripts/extract_training_citation.sh
new file mode 100644
index 0000000000000000000000000000000000000000..bf25eb379d494636f3f0f26aad30c3962a42535a
--- /dev/null
+++ b/scripts/extract_training_citation.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+IN_ROOT="./litgpt/data/arxiv_processed_id/"
+OUT_ROOT="./litgpt/data/arxiv_processed_id/"
+
+
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+mkdir -p ${OUT_ROOT}
+
+START_IDX=11
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+
+ FULL_IN_DIR="${IN_ROOT}/${MONTH}_id.jsonl"
+ TRAINING_IN_DIR="${IN_ROOT}/${MONTH}_training_id.jsonl"
+ OUT_DIR="${OUT_ROOT}/${MONTH}_training_id_citation.jsonl"
+
+ python ./litgpt/data/processing/extract_training_citation.py "$FULL_IN_DIR" "$TRAINING_IN_DIR" "$OUT_DIR"
+
+done
diff --git a/scripts/extract_training_id.sh b/scripts/extract_training_id.sh
new file mode 100644
index 0000000000000000000000000000000000000000..81dd8ff7d6193c982e245a11648465f35d974dd1
--- /dev/null
+++ b/scripts/extract_training_id.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+IN_ROOT="./litgpt/data/arxiv_split/"
+OUT_ROOT="./litgpt/data/arxiv_processed_id/"
+
+
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+mkdir -p ${OUT_ROOT}
+
+START_IDX=0
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+
+ IN_DIR="${IN_ROOT}/${MONTH}/train"
+ OUT_DIR="${OUT_ROOT}/${MONTH}_training_id.jsonl"
+
+ python ./litgpt/data/processing/extract_training_id.py "$IN_DIR" "$OUT_DIR"
+
+done
diff --git a/scripts/finetune_arc.sh b/scripts/finetune_arc.sh
new file mode 100644
index 0000000000000000000000000000000000000000..a1c2032ff782cba1a0bed4685461b3e91979204c
--- /dev/null
+++ b/scripts/finetune_arc.sh
@@ -0,0 +1,40 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+CKPT_ROOT="./out/pretrain/openllama"
+
+OUT_ROOT="./out/finetune/openllama_arc"
+
+LOG_ROOT="./out/finetune/openllama_arc/teelogs"
+
+DATA_ROOT="litgpt/data/arc_finetune/train.json"
+
+mkdir -p "$LOG_ROOT"
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+START_IDX=0
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+
+ CKPT_DIR="${CKPT_ROOT}/${MONTH}/final"
+ OUT_DIR="${OUT_ROOT}/${MONTH}"
+ LOG_FILE="${LOG_ROOT}/${MONTH}.txt"
+ DATA_DIR=$DATA_ROOT
+
+ mkdir -p "$OUT_DIR"
+
+ echo "===== Start Finetuning $MONTH ====="
+
+ litgpt finetune_full \
+ --config config_hub/finetune/openllama/full_qa.yaml \
+ --data JSON \
+ --data.json_path $DATA_DIR \
+ --out_dir $OUT_DIR \
+ "$CKPT_DIR" \
+ 2>&1 | tee "$LOG_FILE"
+
+ echo "===== $MONTH Ended ====="
+done
\ No newline at end of file
diff --git a/scripts/get_tokenized_data.sh b/scripts/get_tokenized_data.sh
new file mode 100644
index 0000000000000000000000000000000000000000..edb19f9fac0cecbda11ddacf49d8d82109de8361
--- /dev/null
+++ b/scripts/get_tokenized_data.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+
+IN_ROOT="./litgpt/data/arxiv_split/"
+OUT_ROOT="./litgpt/data/arxiv_qwen2_tokenized/"
+# "./litgpt/data/arxiv_openllama_tokenized/"
+TOKENIZER_PATH="./checkpoints/Qwen/Qwen2-7B"
+#"./checkpoints/openlm-research/open_llama_3b"
+CHUNK_SIZE=$((32769*1024))
+#CHUNK_SIZE=$((2049*16384))
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+mkdir -p ${OUT_ROOT}
+
+START_IDX=0
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+
+ IN_DIR="${IN_ROOT}/${MONTH}/train"
+ OUT_DIR="${OUT_ROOT}/${MONTH}/train"
+
+ python ./litgpt/data/prepare_arxiv.py --input_dir "$IN_DIR" --output_dir "$OUT_DIR" --tokenizer_path "$TOKENIZER_PATH" --chunk_size "$CHUNK_SIZE"
+
+ IN_DIR="${IN_ROOT}/${MONTH}/val"
+ OUT_DIR="${OUT_ROOT}/${MONTH}/val"
+
+ python ./litgpt/data/prepare_arxiv.py --input_dir "$IN_DIR" --output_dir "$OUT_DIR" --tokenizer_path "$TOKENIZER_PATH" --chunk_size "$CHUNK_SIZE"
+
+done
diff --git a/scripts/ppl.sh b/scripts/ppl.sh
new file mode 100644
index 0000000000000000000000000000000000000000..6acd51700bfb9b6453b23ca68d470fa319acf379
--- /dev/null
+++ b/scripts/ppl.sh
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+OUT_ROOT="./out/eval/openllama_ppl"
+
+BASE_ROOT="./out/pretrain/openllama"
+
+LOG_ROOT="./out/eval/openllama_ppl/teelogs"
+
+DATA_ROOT="litgpt/data/arxiv_openllama_tokenized"
+
+CONFIG_ROOT="config_hub/eval/openllama_cl_ppl.yaml"
+
+
+export CUDA_VISIBLE_DEVICES="4,5,6,7"
+
+mkdir -p "$LOG_ROOT"
+
+for ((i=0; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+ INIT_CKPT="${BASE_ROOT}/${MONTH}/final"
+
+ OUT_DIR="${OUT_ROOT}/${MONTH}"
+ LOG_FILE="${LOG_ROOT}/${MONTH}.txt"
+
+ mkdir -p "$OUT_DIR"
+
+ echo "init_ckpt: $INIT_CKPT"
+ echo "out_dir: $OUT_DIR"
+
+ litgpt perplexity \
+ --config $CONFIG_ROOT \
+ --out_dir $OUT_DIR \
+ --initial_checkpoint_dir $INIT_CKPT \
+ --data_dir $DATA_ROOT \
+ 2>&1 | tee "$LOG_FILE"
+done
diff --git a/scripts/ppl_1.sh b/scripts/ppl_1.sh
new file mode 100644
index 0000000000000000000000000000000000000000..95258c80f4eaae2ba0ad346d622a8d6b568dd037
--- /dev/null
+++ b/scripts/ppl_1.sh
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+OUT_ROOT="./out/eval/tinyllama_lr4e-5_ppl"
+
+BASE_ROOT="./out/pretrain/tinyllama"
+
+LOG_ROOT="./out/eval/tinyllama_lr4e-5_ppl/teelogs"
+
+DATA_ROOT="litgpt/data/arxiv_tinyllama_tokenized"
+
+CONFIG_ROOT="config_hub/eval/tinyllama_cl_ppl.yaml"
+
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+
+mkdir -p "$LOG_ROOT"
+
+for ((i=0; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+ INIT_CKPT="${BASE_ROOT}/${MONTH}_lr4e-5/final"
+
+ OUT_DIR="${OUT_ROOT}/${MONTH}_lr4e-5"
+ LOG_FILE="${LOG_ROOT}/${MONTH}_lr4e-5.txt"
+
+ mkdir -p "$OUT_DIR"
+
+ echo "init_ckpt: $INIT_CKPT"
+ echo "out_dir: $OUT_DIR"
+
+ litgpt perplexity \
+ --config $CONFIG_ROOT \
+ --out_dir $OUT_DIR \
+ --initial_checkpoint_dir $INIT_CKPT \
+ --data_dir $DATA_ROOT \
+ 2>&1 | tee "$LOG_FILE"
+done
diff --git a/scripts/ppl_2.sh b/scripts/ppl_2.sh
new file mode 100644
index 0000000000000000000000000000000000000000..e303d4a332042352dd18965709add5b47bf88a9c
--- /dev/null
+++ b/scripts/ppl_2.sh
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+OUT_ROOT="./out/eval/qwen2_ppl"
+
+BASE_ROOT="./out/pretrain/qwen2"
+
+LOG_ROOT="./out/eval/qwen2_ppl/teelogs"
+
+DATA_ROOT="litgpt/data/arxiv_qwen2_tokenized"
+
+CONFIG_ROOT="config_hub/eval/qwen2_cl_ppl.yaml"
+
+
+export CUDA_VISIBLE_DEVICES="0,1,2,3,4,5,6,7"
+
+mkdir -p "$LOG_ROOT"
+
+for ((i=0; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+ INIT_CKPT="${BASE_ROOT}/${MONTH}/final"
+
+ OUT_DIR="${OUT_ROOT}/${MONTH}"
+ LOG_FILE="${LOG_ROOT}/${MONTH}.txt"
+
+ mkdir -p "$OUT_DIR"
+
+ echo "init_ckpt: $INIT_CKPT"
+ echo "out_dir: $OUT_DIR"
+
+ litgpt perplexity \
+ --config $CONFIG_ROOT \
+ --out_dir $OUT_DIR \
+ --initial_checkpoint_dir $INIT_CKPT \
+ --data_dir $DATA_ROOT \
+ 2>&1 | tee "$LOG_FILE"
+done
diff --git a/scripts/qa_gen.sh b/scripts/qa_gen.sh
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/scripts/run.sh b/scripts/run.sh
new file mode 100644
index 0000000000000000000000000000000000000000..e66c8bda07ddac96182acc86a787532bf8731a32
--- /dev/null
+++ b/scripts/run.sh
@@ -0,0 +1,4 @@
+export CUDA_VISIBLE_DEVICES="0,1,2,3"
+litgpt pretrain --config config_hub/pretrain/openllama_cl.yaml \
+ --out_dir ./out/pretrain/openllama_t/2407 --data_dir litgpt/data/arxiv_openllama_tokenized/2407 \
+ 2>&1 | tee ./out/pretrain/teelogs/2407.txt
\ No newline at end of file
diff --git a/scripts/run_all.sh b/scripts/run_all.sh
new file mode 100644
index 0000000000000000000000000000000000000000..f2bb190135195715088a26b654040758db02b208
--- /dev/null
+++ b/scripts/run_all.sh
@@ -0,0 +1,150 @@
+#!/bin/bash
+
+MONTHS=(2407 2408 2409 2410 2411 2412 2501 2502 2503 2504 2505 2506)
+
+# tinyllama 1b 3 epoch
+#MAX_TOKENS=(
+# $((211812352*3))
+# $((177209344*3))
+# $((240123904*3))
+# $((258998272*3))
+# $((250609664*3))
+# $((304087040*3))
+# $((266338304*3))
+# $((330301440*3))
+# $((394264576*3))
+# $((375390208*3))
+# $((470810624*3))
+# $((508559360*3))
+#)
+
+# tinyllama 1b
+MAX_TOKENS=(
+ 211812352
+ 177209344
+ 240123904
+ 258998272
+ 250609664
+ 304087040
+ 266338304
+ 330301440
+ 394264576
+ 375390208
+ 470810624
+ 508559360
+)
+# Qwen2-7B
+# MAX_TOKENS=(
+# 200278016
+# 167772160
+# 226492416
+# 244318208
+# 236978176
+# 286261248
+# 251658240
+# 311427072
+# 371195904
+# 353370112
+# 442499072
+# 478150656
+#)
+
+# Qwen2-7B
+# MAX_TOKENS=(
+# $((200278016*3))
+# $((167772160*3))
+# $((226492416*3))
+# $((244318208*3))
+# $((236978176*3))
+# $((286261248*3))
+# $((251658240*3))
+# $((311427072*3))
+# $((371195904*3))
+# $((353370112*3))
+# $((442499072*3))
+# $((478150656*3))
+#)
+
+# openllama 3b
+#MAX_TOKENS=(
+# 208666624
+# 175112192
+# 236978176
+# 255852544
+# 247463936
+# 298844160
+# 262144000
+# 325058560
+# 387973120
+# 369098752
+# 462422016
+# 500170752
+#)
+
+
+OUT_ROOT="./out/pretrain/tinyllama_lr_plus"
+#"./out/pretrain/qwen2_3_epoch"
+#"./out/pretrain/tinyllama_3_epoch"
+#"./out/pretrain/qwen2"
+#"./out/pretrain/openllama"
+
+LOG_ROOT="./out/pretrain/tinyllama_lr_plus/teelogs"
+#"./out/pretrain/qwen2_3_epoch/teelogs"
+#"./out/pretrain/tinyllama_3_epoch/teelogs"
+#"./out/pretrain/qwen2/teelogs"
+#"./out/pretrain/openllama/teelogs"
+
+DATA_ROOT="litgpt/data/arxiv_tinyllama_tokenized/"
+#"litgpt/data/arxiv_qwen2_tokenized/"
+#
+#"litgpt/data/arxiv_openllama_tokenized/"
+
+CKPT_0="./checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T/"
+#"./checkpoints/Qwen/Qwen2-7B/"
+#"./checkpoints/TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T/"
+#"./checkpoints/openlm-research/open_llama_3b/"
+
+CONFIG_FILE="config_hub/pretrain/tinyllama_cl.yaml"
+#"config_hub/pretrain/qwen2_7b_cl.yaml"
+#"config_hub/pretrain/tinyllama_cl.yaml"
+#"config_hub/pretrain/openllama_cl.yaml"
+
+
+export CUDA_VISIBLE_DEVICES="4,5,6,7"
+mkdir -p "$LOG_ROOT"
+
+START_IDX=0
+for ((i=$START_IDX; i<${#MONTHS[@]}; i++)); do
+ MONTH=${MONTHS[$i]}
+ TOKENS=${MAX_TOKENS[$i]}
+
+ if [ $i -eq 0 ]; then
+ INIT_CKPT="$CKPT_0"
+ else
+ PREV_MONTH=${MONTHS[$((i-1))]}
+ INIT_CKPT="${OUT_ROOT}/${PREV_MONTH}/final"
+ fi
+
+ OUT_DIR="${OUT_ROOT}/${MONTH}"
+ LOG_FILE="${LOG_ROOT}/${MONTH}.txt"
+ DATA_DIR="${DATA_ROOT}/${MONTH}/"
+
+ mkdir -p "$OUT_DIR"
+
+ echo "===== Start Training $MONTH ====="
+ echo "init_ckpt: $INIT_CKPT"
+ echo "out_dir: $OUT_DIR"
+ echo "max_tokens: $TOKENS"
+
+ litgpt pretrain \
+ --config $CONFIG_FILE \
+ --train.max_tokens $TOKENS \
+ --out_dir $OUT_DIR \
+ --initial_checkpoint_dir $INIT_CKPT \
+ --data_dir $DATA_DIR \
+ 2>&1 | tee "$LOG_FILE"
+
+ echo "===== $MONTH Ended ====="
+ sleep 60
+done
+
diff --git a/scripts/run_test.sh b/scripts/run_test.sh
new file mode 100644
index 0000000000000000000000000000000000000000..9dc332396ce2a08575456acc4f87ba29c6449831
--- /dev/null
+++ b/scripts/run_test.sh
@@ -0,0 +1,25 @@
+OUT_ROOT="./out/pretrain/qwen2_7b_question_focus_lr_plus"
+#"./out/pretrain/qwen2_7b_question_focus"
+
+LOG_ROOT="./out/pretrain/qwen2_7b_question_focus_lr_plus/teelog.txt"
+#"./out/pretrain/qwen2_7b_question_focus/teelog.txt"
+
+DATA_ROOT="litgpt/data/arxiv_test_qwen2_tokenized/"
+
+CKPT_0="./checkpoints/Qwen/Qwen2-7B/"
+
+CONFIG_FILE="config_hub/pretrain/qwen2_7b_test.yaml"
+
+
+export CUDA_VISIBLE_DEVICES="4,5,6,7"
+
+touch "$LOG_ROOT"
+
+
+litgpt pretrain \
+ --config $CONFIG_FILE \
+ --train.max_tokens 52428800 \
+ --out_dir $OUT_ROOT \
+ --initial_checkpoint_dir $CKPT_0 \
+ --data_dir $DATA_ROOT \
+ 2>&1 | tee $LOG_ROOT
diff --git a/tests/conftest.py b/tests/conftest.py
new file mode 100644
index 0000000000000000000000000000000000000000..2c519135cca17e0e3499281fb65d1785a8c73a1d
--- /dev/null
+++ b/tests/conftest.py
@@ -0,0 +1,170 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import os
+import shutil
+import sys
+from pathlib import Path
+from typing import List, Optional
+
+import pytest
+import torch
+
+# support running without installing as a package, adding extensions to the Python path
+wd = Path(__file__).parent.parent.resolve()
+if wd.is_dir():
+ sys.path.append(str(wd))
+else:
+ import warnings
+
+ warnings.warn(f"Could not find extensions directory at {wd}")
+
+
+@pytest.fixture()
+def fake_checkpoint_dir(tmp_path):
+ os.chdir(tmp_path)
+ checkpoint_dir = tmp_path / "checkpoints" / "tmp"
+ checkpoint_dir.mkdir(parents=True)
+ (checkpoint_dir / "lit_model.pth").touch()
+ (checkpoint_dir / "model_config.yaml").touch()
+ (checkpoint_dir / "tokenizer.json").touch()
+ (checkpoint_dir / "tokenizer_config.json").touch()
+ return checkpoint_dir
+
+
+class TensorLike:
+ def __eq__(self, other):
+ return isinstance(other, torch.Tensor)
+
+
+@pytest.fixture()
+def tensor_like():
+ return TensorLike()
+
+
+class FloatLike:
+ def __eq__(self, other):
+ return not isinstance(other, int) and isinstance(other, float)
+
+
+@pytest.fixture()
+def float_like():
+ return FloatLike()
+
+
+@pytest.fixture(autouse=True)
+def restore_default_dtype():
+ # just in case
+ torch.set_default_dtype(torch.float32)
+
+
+@pytest.fixture(autouse=True)
+def destroy_process_group():
+ yield
+
+ import torch.distributed
+
+ if torch.distributed.is_available() and torch.distributed.is_initialized():
+ torch.distributed.destroy_process_group()
+
+
+class MockTokenizer:
+ """A dummy tokenizer that encodes each character as its ASCII code."""
+
+ bos_id = 0
+ eos_id = 1
+
+ def encode(self, text: str, bos: Optional[bool] = None, eos: bool = False, max_length: int = -1) -> torch.Tensor:
+ output = []
+ if bos:
+ output.append(self.bos_id)
+ output.extend([ord(c) for c in text])
+ if eos:
+ output.append(self.eos_id)
+ output = output[:max_length] if max_length > 0 else output
+ return torch.tensor(output)
+
+ def decode(self, tokens: torch.Tensor) -> str:
+ return "".join(chr(int(t)) for t in tokens.tolist())
+
+
+@pytest.fixture()
+def mock_tokenizer():
+ return MockTokenizer()
+
+
+@pytest.fixture()
+def alpaca_path(tmp_path):
+ file = Path(__file__).parent / "data" / "_fixtures" / "alpaca.json"
+ shutil.copyfile(file, tmp_path / "alpaca.json")
+ return tmp_path / "alpaca.json"
+
+
+@pytest.fixture()
+def dolly_path(tmp_path):
+ file = Path(__file__).parent / "data" / "_fixtures" / "dolly.json"
+ shutil.copyfile(file, tmp_path / "dolly.json")
+ return tmp_path / "dolly.json"
+
+
+@pytest.fixture()
+def longform_path(tmp_path):
+ path = tmp_path / "longform"
+ path.mkdir()
+ for split in ("train", "val"):
+ file = Path(__file__).parent / "data" / "_fixtures" / f"longform_{split}.json"
+ shutil.copyfile(file, path / f"{split}.json")
+ return path
+
+
+# https://github.com/Lightning-AI/lightning/blob/6e517bd55b50166138ce6ab915abd4547702994b/tests/tests_fabric/conftest.py#L140
+def pytest_collection_modifyitems(items: List[pytest.Function], config: pytest.Config) -> None:
+ initial_size = len(items)
+ conditions = []
+ filtered, skipped = 0, 0
+
+ options = {"standalone": "PL_RUN_STANDALONE_TESTS", "min_cuda_gpus": "RUN_ONLY_CUDA_TESTS"}
+ if os.getenv(options["standalone"], "0") == "1" and os.getenv(options["min_cuda_gpus"], "0") == "1":
+ # special case: we don't have a CPU job for standalone tests, so we shouldn't run only cuda tests.
+ # by deleting the key, we avoid filtering out the CPU tests
+ del options["min_cuda_gpus"]
+
+ for kwarg, env_var in options.items():
+ # this will compute the intersection of all tests selected per environment variable
+ if os.getenv(env_var, "0") == "1":
+ conditions.append(env_var)
+ for i, test in reversed(list(enumerate(items))): # loop in reverse, since we are going to pop items
+ already_skipped = any(marker.name == "skip" for marker in test.own_markers)
+ if already_skipped:
+ # the test was going to be skipped anyway, filter it out
+ items.pop(i)
+ skipped += 1
+ continue
+ has_runif_with_kwarg = any(
+ marker.name == "skipif" and marker.kwargs.get(kwarg) for marker in test.own_markers
+ )
+ if not has_runif_with_kwarg:
+ # the test has `@_RunIf(kwarg=True)`, filter it out
+ items.pop(i)
+ filtered += 1
+
+ if config.option.verbose >= 0 and (filtered or skipped):
+ writer = config.get_terminal_writer()
+ writer.write(
+ f"\nThe number of tests has been filtered from {initial_size} to {initial_size - filtered} after the"
+ f" filters {conditions}.\n{skipped} tests are marked as unconditional skips.\nIn total,"
+ f" {len(items)} tests will run.\n",
+ flush=True,
+ bold=True,
+ purple=True, # oh yeah, branded pytest messages
+ )
+
+ for test in items:
+ if "test_hf_for_nemo" in test.nodeid and "Qwen/Qwen2.5-7B-Instruct" in test.nodeid:
+ test.add_marker(
+ # Don't use `raises=TypeError` because the actual exception is
+ # wrapped inside `torch._dynamo.exc.BackendCompilerFailed`,
+ # which prevents pytest from recognizing it as a TypeError.
+ pytest.mark.xfail(
+ reason="currently not working, see https://github.com/Lightning-AI/lightning-thunder/issues/2085",
+ )
+ )
diff --git a/tests/test_adapter.py b/tests/test_adapter.py
new file mode 100644
index 0000000000000000000000000000000000000000..33f628eda24df64820a8caba4b28d866297a7859
--- /dev/null
+++ b/tests/test_adapter.py
@@ -0,0 +1,455 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import os
+from contextlib import redirect_stdout
+from copy import deepcopy
+from dataclasses import asdict
+from io import StringIO
+from unittest import mock
+from unittest.mock import Mock
+
+import pytest
+import torch
+import yaml
+from lightning import Fabric
+from lightning.fabric.plugins.precision.bitsandbytes import _BITSANDBYTES_AVAILABLE, BitsandbytesPrecision
+from lightning.fabric.wrappers import _FabricOptimizer
+from torch._dynamo.backends import debugging
+from transformers.models.gemma import GemmaConfig, GemmaForCausalLM
+from transformers.models.gemma2 import Gemma2Config, Gemma2ForCausalLM
+from transformers.models.gemma3 import Gemma3ForCausalLM, Gemma3TextConfig
+
+import litgpt.adapter as gpt_adapter
+import litgpt.finetune.adapter as module
+import litgpt.model as gpt
+from litgpt.adapter import GPT, CausalSelfAttention, Config, adapter_filter
+from litgpt.args import EvalArgs, TrainArgs
+from litgpt.data import Alpaca
+from litgpt.scripts.convert_hf_checkpoint import copy_weights_gemma_2, copy_weights_gemma_3, copy_weights_hf_llama
+from litgpt.scripts.convert_lit_checkpoint import qkv_reassemble as make_qkv_interleaved
+from litgpt.utils import _RunIf
+
+
+def test_config_identical():
+ name = "pythia-14m"
+ base_config = asdict(gpt.Config.from_name(name))
+ adapter_config = asdict(gpt_adapter.Config.from_name(name))
+ del adapter_config["adapter_prompt_length"]
+ del adapter_config["adapter_start_layer"]
+ assert adapter_config == base_config
+
+ with Fabric(accelerator="cpu").init_module(empty_init=True):
+ base_model = gpt.GPT.from_name(name)
+ adapter_model = gpt_adapter.GPT.from_name(name)
+ assert adapter_model.lm_head.weight.shape == base_model.lm_head.weight.shape
+
+
+def test_adapter_filter(tmp_path):
+ fabric = Fabric(devices=1)
+ model = GPT.from_name("pythia-14m", n_layer=4)
+ save_path = tmp_path / "model.pth"
+ fabric.save(save_path, {"model": model}, filter={"model": adapter_filter})
+ saved = torch.load(save_path)["model"]
+
+ expected = {
+ "transformer.h.2.attn.adapter_wte.weight",
+ "transformer.h.2.attn.gating_factor",
+ "transformer.h.3.attn.adapter_wte.weight",
+ "transformer.h.3.attn.gating_factor",
+ }
+ assert set(saved) == expected
+
+
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+def test_adapter_script(tmp_path, fake_checkpoint_dir, monkeypatch, alpaca_path):
+ model_config = dict(block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8, adapter_start_layer=0)
+ (fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
+
+ monkeypatch.setattr(module, "load_checkpoint", Mock())
+
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value = tokenizer_mock
+ tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
+ monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
+
+ out_dir = tmp_path / "out"
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["adapter.py", str(fake_checkpoint_dir)]):
+ module.setup(
+ fake_checkpoint_dir,
+ data=Alpaca(
+ download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
+ ),
+ out_dir=out_dir,
+ precision="32-true",
+ train=TrainArgs(global_batch_size=1, save_interval=2, epochs=1, max_steps=6, micro_batch_size=1),
+ eval=EvalArgs(interval=2, max_iters=2, max_new_tokens=1),
+ )
+
+ out_dir_contents = set(os.listdir(out_dir))
+ checkpoint_dirs = {"step-000002", "step-000004", "step-000006", "final"}
+ assert checkpoint_dirs.issubset(out_dir_contents)
+ assert all((out_dir / p).is_dir() for p in checkpoint_dirs)
+ for checkpoint_dir in checkpoint_dirs:
+ assert {p.name for p in (out_dir / checkpoint_dir).iterdir()} == {
+ "lit_model.pth.adapter",
+ "model_config.yaml",
+ "tokenizer_config.json",
+ "tokenizer.json",
+ "hyperparameters.yaml",
+ "prompt_style.yaml",
+ }
+ assert (out_dir / "logs" / "csv" / "version_0" / "metrics.csv").is_file()
+
+ logs = stdout.getvalue()
+ assert logs.count("(step)") == 6
+ assert logs.count("val loss") == 4 # 3 validations + 1 final validation
+ assert logs.count("Final evaluation") == 1
+ assert "of trainable parameters: 168" in logs
+
+
+def test_adapter_gpt_init_weights():
+ config = Config(n_layer=1, n_head=6, n_embd=12, block_size=1, vocab_size=1, adapter_start_layer=0)
+ model = GPT(config)
+ param = model.transformer.h[0].attn.gating_factor
+
+ assert (param == 0).all()
+ torch.nn.init.constant_(param, 1.23)
+ assert (param != 0).any()
+ model.apply(model._init_weights)
+ assert (param == 0).all()
+
+
+@_RunIf(dynamo=True)
+@torch.inference_mode()
+def test_adapter_compile():
+ model = GPT.from_name("pythia-14m", n_layer=3)
+ x = torch.randint(model.config.vocab_size, size=(2, model.config.block_size), dtype=torch.int64)
+
+ explanation = torch._dynamo.explain(model)(x)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+ model = GPT(model.config)
+ model.set_kv_cache(2)
+ input_pos = torch.arange(model.config.block_size)
+ explanation = torch._dynamo.explain(model)(x, input_pos)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_adapter_bitsandbytes(monkeypatch, tmp_path, fake_checkpoint_dir, alpaca_path):
+ if not _BITSANDBYTES_AVAILABLE:
+ pytest.skip("BNB not available")
+
+ from bitsandbytes.optim import PagedAdamW
+
+ model_config = dict(
+ block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8, adapter_start_layer=0, bias=True
+ )
+ (fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
+
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value = tokenizer_mock
+ tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
+ monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
+
+ monkeypatch.setattr(module, "load_checkpoint", Mock())
+ train_mock = Mock()
+ train_mock.return_value = {
+ "raw_tokens": 1000,
+ "raw_tokens_plus_prompt_template": 1100,
+ "raw_tokens_plus_prompt_template_and_padding": 1200,
+ }
+ monkeypatch.setattr(module, "fit", train_mock)
+
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["adapter.py", str(fake_checkpoint_dir)]):
+ module.setup(
+ fake_checkpoint_dir,
+ data=Alpaca(
+ download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
+ ),
+ precision="16-true",
+ quantize="bnb.nf4-dq",
+ out_dir=tmp_path,
+ )
+
+ _, kwargs = train_mock.call_args
+ fabric = kwargs["fabric"]
+ model = kwargs["model"]
+ optimizer = kwargs["optimizer"]
+ assert isinstance(fabric.strategy.precision, BitsandbytesPrecision)
+ assert isinstance(optimizer, _FabricOptimizer)
+ assert isinstance(optimizer._optimizer, PagedAdamW)
+
+ dtype_to_name = {"torch.uint8": set(), "torch.float16": set()}
+ for name, layer in model.named_parameters():
+ name = name[len("_forward_module.") :]
+ dtype_to_name[str(layer.dtype)].add(name)
+ assert dtype_to_name == {
+ "torch.float16": {
+ "transformer.wte.weight",
+ "transformer.wte.norm.weight",
+ "transformer.wte.norm.bias",
+ "transformer.h.0.norm_1.weight",
+ "transformer.h.0.norm_1.bias",
+ "transformer.h.0.attn.gating_factor",
+ "transformer.h.0.attn.qkv.bias",
+ "transformer.h.0.attn.proj.bias",
+ "transformer.h.0.attn.adapter_wte.weight",
+ "transformer.h.0.norm_2.weight",
+ "transformer.h.0.norm_2.bias",
+ "transformer.h.0.mlp.fc.bias",
+ "transformer.h.0.mlp.proj.bias",
+ "transformer.h.1.norm_1.weight",
+ "transformer.h.1.norm_1.bias",
+ "transformer.h.1.attn.gating_factor",
+ "transformer.h.1.attn.qkv.bias",
+ "transformer.h.1.attn.proj.bias",
+ "transformer.h.1.attn.adapter_wte.weight",
+ "transformer.h.1.norm_2.weight",
+ "transformer.h.1.norm_2.bias",
+ "transformer.h.1.mlp.fc.bias",
+ "transformer.h.1.mlp.proj.bias",
+ "transformer.ln_f.weight",
+ "transformer.ln_f.bias",
+ },
+ "torch.uint8": {
+ "lm_head.weight",
+ "transformer.h.0.attn.qkv.weight",
+ "transformer.h.0.attn.proj.weight",
+ "transformer.h.0.mlp.fc.weight",
+ "transformer.h.0.mlp.proj.weight",
+ "transformer.h.1.attn.qkv.weight",
+ "transformer.h.1.attn.proj.weight",
+ "transformer.h.1.mlp.fc.weight",
+ "transformer.h.1.mlp.proj.weight",
+ },
+ }
+
+ assert {p.name for p in tmp_path.rglob("*.pth.adapter")} == {"lit_model.pth.adapter"}
+ state_dict = torch.load(tmp_path / "final" / "lit_model.pth.adapter")
+ assert len(state_dict) == 1
+ dtype_to_name = {"torch.float16": set()}
+ for name, layer in state_dict["model"].items():
+ dtype_to_name[str(layer.dtype)].add(name)
+ assert dtype_to_name == {
+ "torch.float16": {
+ "transformer.h.0.attn.adapter_wte.weight",
+ "transformer.h.0.attn.gating_factor",
+ "transformer.h.1.attn.adapter_wte.weight",
+ "transformer.h.1.attn.gating_factor",
+ }
+ }
+
+ logs = stdout.getvalue()
+ assert "of trainable parameters: 168" in logs
+ assert "of non-trainable parameters: 1,888" in logs
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["gemma-2b", "gemma-7b"])
+def test_against_hf_gemma(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+ T = 5
+ ours_config = Config.from_name(model_name, n_layer=2, n_head=16, n_embd=32, intermediate_size=86)
+ theirs_config = GemmaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = GemmaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("gemma-2-9b", "gemma-2-27b"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_gemma_2(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Gemma2Config(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_logit_softcapping=ours_config.attention_logit_softcapping,
+ final_logit_softcapping=ours_config.final_logit_softcapping,
+ initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = Gemma2ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_gemma_2({}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("gemma-3-1b-it", "gemma-3-4b-it", "gemma-3-12b-it", "gemma-3-27b-it"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_gemma_3(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Gemma3TextConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_logit_softcapping=ours_config.attention_logit_softcapping,
+ final_logit_softcapping=ours_config.final_logit_softcapping,
+ initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = Gemma3ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_gemma_3({}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+def test_load_legacy_state_dict():
+ """Check that a legacy state dict (with an interleaved placement in QKV matrix) can be loaded into a model with CausalSelfAttention layers."""
+ config = Config(
+ n_embd=32,
+ n_head=4,
+ head_size=8,
+ n_query_groups=4,
+ bias=True,
+ )
+
+ attention_1 = CausalSelfAttention(config=config, block_idx=0)
+
+ # make weights to be as-like in a legacy checkpoint, with `attn.attn.weight` instead of `attn.qkv.weight`
+ # and make them interleaved
+ state_dict = deepcopy(attention_1.state_dict())
+ state_dict["attn.weight"] = make_qkv_interleaved(state_dict.pop("qkv.weight"), config)
+ state_dict["attn.bias"] = make_qkv_interleaved(state_dict.pop("qkv.bias"), config)
+
+ attention_2 = CausalSelfAttention(config=config, block_idx=0)
+ attention_2.load_state_dict(state_dict)
diff --git a/tests/test_adapter_v2.py b/tests/test_adapter_v2.py
new file mode 100644
index 0000000000000000000000000000000000000000..1e9837fc537c3bca3b981b8ec9d297f6a424bcc7
--- /dev/null
+++ b/tests/test_adapter_v2.py
@@ -0,0 +1,557 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import os
+from contextlib import redirect_stdout
+from copy import deepcopy
+from io import StringIO
+from unittest import mock
+from unittest.mock import Mock
+
+import pytest
+import torch
+import yaml
+from lightning import Fabric
+from lightning.fabric.plugins.precision.bitsandbytes import _BITSANDBYTES_AVAILABLE, BitsandbytesPrecision
+from lightning.fabric.wrappers import _FabricOptimizer
+from torch._dynamo.backends import debugging
+from transformers.models.gemma import GemmaConfig, GemmaForCausalLM
+from transformers.models.gemma2 import Gemma2Config, Gemma2ForCausalLM
+from transformers.models.gemma3 import Gemma3ForCausalLM, Gemma3TextConfig
+from transformers.models.mixtral import MixtralConfig, MixtralForCausalLM
+
+import litgpt.config as config_module
+import litgpt.finetune.adapter_v2 as module
+from litgpt.adapter_v2 import GPT as AdapterV2GPT
+from litgpt.adapter_v2 import CausalSelfAttention, Config, adapter_filter
+from litgpt.args import EvalArgs, TrainArgs
+from litgpt.data import Alpaca
+from litgpt.model import GPT as BaseGPT
+from litgpt.scripts.convert_hf_checkpoint import copy_weights_gemma_2, copy_weights_gemma_3, copy_weights_hf_llama
+from litgpt.scripts.convert_lit_checkpoint import qkv_reassemble as make_qkv_interleaved
+from litgpt.utils import _RunIf
+
+
+def test_config_identical():
+ name = "pythia-14m"
+ with Fabric(accelerator="cpu").init_module(empty_init=True):
+ base_model = BaseGPT.from_name(name)
+ adapter_model = AdapterV2GPT.from_name(name)
+
+ assert not hasattr(base_model.transformer.h[2].attn.qkv, "adapter_bias")
+ assert not hasattr(base_model.transformer.h[2].attn.qkv, "adapter_scale")
+ assert hasattr(adapter_model.transformer.h[2].attn.qkv, "adapter_bias")
+ assert hasattr(adapter_model.transformer.h[2].attn.qkv, "adapter_scale")
+
+
+def test_adapter_v2_filter(tmp_path):
+ fabric = Fabric(devices=1)
+ model = AdapterV2GPT.from_name("pythia-14m", n_layer=3)
+ save_path = tmp_path / "model.pth"
+ fabric.save(save_path, {"model": model}, filter={"model": adapter_filter})
+ saved = torch.load(save_path)["model"]
+
+ expected = {
+ "lm_head.adapter_bias",
+ "lm_head.adapter_scale",
+ "transformer.ln_f.bias",
+ "transformer.ln_f.weight",
+ "transformer.h.2.attn.adapter_wte.weight",
+ "transformer.h.2.attn.gating_factor",
+ }
+ for layer in range(3):
+ for param in (
+ "attn.qkv.adapter_bias",
+ "attn.qkv.adapter_scale",
+ "attn.proj.adapter_bias",
+ "attn.proj.adapter_scale",
+ "mlp.fc.adapter_bias",
+ "mlp.fc.adapter_scale",
+ "mlp.proj.adapter_bias",
+ "mlp.proj.adapter_scale",
+ "norm_1.bias",
+ "norm_1.weight",
+ "norm_2.bias",
+ "norm_2.weight",
+ ):
+ expected.add(f"transformer.h.{layer}.{param}")
+ assert set(saved) == expected
+
+
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+def test_adapter_v2_script(tmp_path, fake_checkpoint_dir, monkeypatch, alpaca_path):
+ model_config = dict(block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8, adapter_start_layer=0)
+ (fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
+
+ monkeypatch.setattr(module, "load_checkpoint", Mock())
+
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value = tokenizer_mock
+ tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
+ monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
+
+ out_dir = tmp_path / "out"
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["adapter_v2.py", str(fake_checkpoint_dir)]):
+ module.setup(
+ fake_checkpoint_dir,
+ data=Alpaca(
+ download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
+ ),
+ out_dir=out_dir,
+ precision="32-true",
+ train=TrainArgs(global_batch_size=1, save_interval=2, epochs=1, max_steps=6, micro_batch_size=1),
+ eval=EvalArgs(interval=2, max_iters=2, max_new_tokens=1),
+ )
+
+ out_dir_contents = set(os.listdir(out_dir))
+ checkpoint_dirs = {"step-000002", "step-000004", "step-000006", "final"}
+ assert checkpoint_dirs.issubset(out_dir_contents)
+ assert all((out_dir / p).is_dir() for p in checkpoint_dirs)
+ for checkpoint_dir in checkpoint_dirs:
+ assert {p.name for p in (out_dir / checkpoint_dir).iterdir()} == {
+ "lit_model.pth.adapter_v2",
+ "model_config.yaml",
+ "tokenizer_config.json",
+ "tokenizer.json",
+ "hyperparameters.yaml",
+ "prompt_style.yaml",
+ }
+ assert (out_dir / "logs" / "csv" / "version_0" / "metrics.csv").is_file()
+
+ logs = stdout.getvalue()
+ assert logs.count("(step)") == 6
+ assert logs.count("val loss") == 4 # 3 validations + 1 final validation
+ assert logs.count("Final evaluation") == 1
+ assert "of trainable parameters: 552" in logs
+
+
+def test_adapter_v2_gpt_init_weights():
+ config = Config(n_layer=1, n_head=6, n_embd=12, block_size=1, vocab_size=1, adapter_start_layer=0)
+ model = AdapterV2GPT(config)
+
+ for param in (model.transformer.h[0].attn.gating_factor, model.lm_head.adapter_bias):
+ assert (param == 0).all()
+ torch.nn.init.constant_(param, 1.23)
+ assert (param != 0).any()
+ model.apply(model._init_weights)
+ assert (param == 0).all()
+
+
+@pytest.mark.parametrize("name", [c["name"] for c in config_module.configs])
+def test_base_model_can_be_adapter_v2_loaded(name):
+ kwargs = {"n_layer": 2, "n_head": 8, "n_query_groups": 4, "n_embd": 16, "padded_vocab_size": 32}
+ base_model = BaseGPT.from_name(name, **kwargs)
+ base_model_state_dict = base_model.state_dict()
+ lora_model = AdapterV2GPT.from_name(name, **kwargs, adapter_start_layer=0)
+ keys = lora_model.load_state_dict(base_model_state_dict, strict=False)
+ assert not keys.unexpected_keys
+ for k in keys.missing_keys:
+ assert adapter_filter(k, None)
+
+
+@_RunIf(dynamo=True)
+@torch.inference_mode()
+def test_adapter_v2_compile():
+ model = AdapterV2GPT.from_name("pythia-14m", n_layer=3)
+ x = torch.randint(model.config.vocab_size, size=(2, model.config.block_size), dtype=torch.int64)
+
+ explanation = torch._dynamo.explain(model)(x)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+ model = AdapterV2GPT(model.config)
+ model.set_kv_cache(2)
+ input_pos = torch.arange(model.config.block_size)
+ explanation = torch._dynamo.explain(model)(x, input_pos)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+
+@torch.inference_mode()
+def test_against_hf_mixtral():
+ device = torch.device("cpu")
+ dtype = torch.float32
+ ours_config = Config.from_name(
+ "Mixtral-8x7B-Instruct-v0.1",
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_embd=32,
+ n_head=8,
+ n_query_groups=2,
+ intermediate_size=86,
+ n_expert=4,
+ )
+ T = 5
+ theirs_config = MixtralConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ num_local_experts=ours_config.n_expert,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = MixtralForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = AdapterV2GPT(ours_config).to(device)
+ # strict=False because missing keys due to adapter weights not contained in state dict
+ ours_model.load_state_dict(state_dict, strict=False)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304], [23, 345, 65, 123, 321]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["gemma-2b", "gemma-7b"])
+def test_against_hf_gemma(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+ T = 5
+ ours_config = Config.from_name(model_name, n_layer=2, n_head=16, n_embd=32, intermediate_size=86)
+ theirs_config = GemmaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = GemmaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = AdapterV2GPT(ours_config).to(device)
+ keys = ours_model.load_state_dict(state_dict, strict=False)
+ assert not keys.unexpected_keys
+ for k in keys.missing_keys:
+ assert adapter_filter(k, None)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("gemma-2-9b", "gemma-2-27b"))
+def test_against_original_gemma_2(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Gemma2Config(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_logit_softcapping=ours_config.attention_logit_softcapping,
+ final_logit_softcapping=ours_config.final_logit_softcapping,
+ initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = Gemma2ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_gemma_2({}, state_dict, theirs_state_dict)
+ ours_model = AdapterV2GPT(ours_config).to(device)
+ keys = ours_model.load_state_dict(state_dict, strict=False)
+ assert not keys.unexpected_keys
+ for k in keys.missing_keys:
+ assert adapter_filter(k, None)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(
+ ours_y, theirs_y, rtol=3e-5, atol=3e-5
+ ) # some macOS devices have numerical differences, hence the tol bump
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("gemma-3-1b-it", "gemma-3-4b-it", "gemma-3-12b-it", "gemma-3-27b-it"))
+def test_against_original_gemma_3(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+
+ theirs_config = Gemma3TextConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ rope_scaling={"factor": 8.0, "rope_type": "linear"},
+ rope_local_base_freq=ours_config.rope_local_base_freq,
+ )
+
+ theirs_model = Gemma3ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+
+ copy_weights_gemma_3({}, state_dict, theirs_state_dict)
+ ours_model = AdapterV2GPT(ours_config).to(device)
+ keys = ours_model.load_state_dict(state_dict, strict=False)
+ assert not keys.unexpected_keys
+ for k in keys.missing_keys:
+ assert adapter_filter(k, None)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(
+ ours_y, theirs_y, rtol=3e-5, atol=3e-5
+ ) # some macOS devices have numerical differences, hence the tol bump
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_adapter_v2_bitsandbytes(monkeypatch, tmp_path, fake_checkpoint_dir, alpaca_path):
+ if not _BITSANDBYTES_AVAILABLE:
+ pytest.skip("BNB not available")
+
+ from bitsandbytes.optim import PagedAdamW
+
+ model_config = dict(
+ block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8, adapter_start_layer=0, bias=True
+ )
+ (fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
+
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value = tokenizer_mock
+ tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
+ monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
+
+ monkeypatch.setattr(module, "load_checkpoint", Mock())
+ train_mock = Mock()
+ train_mock.return_value = {
+ "raw_tokens": 1000,
+ "raw_tokens_plus_prompt_template": 1100,
+ "raw_tokens_plus_prompt_template_and_padding": 1200,
+ }
+ monkeypatch.setattr(module, "fit", train_mock)
+
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["adapter_v2.py", str(fake_checkpoint_dir)]):
+ module.setup(
+ fake_checkpoint_dir,
+ data=Alpaca(
+ download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
+ ),
+ precision="16-true",
+ quantize="bnb.nf4-dq",
+ out_dir=tmp_path,
+ )
+
+ _, kwargs = train_mock.call_args
+ fabric = kwargs["fabric"]
+ model = kwargs["model"]
+ optimizer = kwargs["optimizer"]
+ assert isinstance(fabric.strategy.precision, BitsandbytesPrecision)
+ assert isinstance(optimizer, _FabricOptimizer)
+ assert isinstance(optimizer._optimizer, PagedAdamW)
+
+ dtype_to_name = {"torch.uint8": set(), "torch.float16": set()}
+ for name, layer in model.named_parameters():
+ name = name[len("_forward_module.") :]
+ dtype_to_name[str(layer.dtype)].add(name)
+ assert dtype_to_name == {
+ "torch.uint8": {
+ "transformer.h.0.mlp.fc.linear.weight",
+ "transformer.h.1.mlp.proj.linear.weight",
+ "transformer.h.1.attn.qkv.linear.weight",
+ "transformer.h.0.attn.proj.linear.weight",
+ "lm_head.linear.weight",
+ "transformer.h.1.attn.proj.linear.weight",
+ "transformer.h.0.mlp.proj.linear.weight",
+ "transformer.h.0.attn.qkv.linear.weight",
+ "transformer.h.1.mlp.fc.linear.weight",
+ },
+ "torch.float16": {
+ "transformer.h.1.attn.qkv.adapter_bias",
+ "transformer.h.1.mlp.proj.adapter_bias",
+ "transformer.h.0.attn.qkv.adapter_bias",
+ "transformer.h.0.norm_1.bias",
+ "transformer.h.0.attn.qkv.linear.bias",
+ "transformer.h.1.attn.adapter_wte.weight",
+ "transformer.ln_f.weight",
+ "transformer.h.0.mlp.fc.linear.bias",
+ "transformer.h.0.mlp.proj.linear.bias",
+ "transformer.h.1.mlp.fc.linear.bias",
+ "transformer.h.0.attn.proj.adapter_scale",
+ "transformer.h.0.attn.qkv.adapter_scale",
+ "transformer.h.1.norm_2.bias",
+ "transformer.h.1.attn.proj.adapter_scale",
+ "transformer.h.0.norm_2.bias",
+ "transformer.h.0.mlp.fc.adapter_scale",
+ "transformer.h.0.attn.proj.linear.bias",
+ "transformer.h.1.attn.proj.linear.bias",
+ "transformer.h.1.norm_1.bias",
+ "transformer.h.0.norm_1.weight",
+ "transformer.h.1.attn.proj.adapter_bias",
+ "transformer.h.0.mlp.proj.adapter_scale",
+ "transformer.h.0.mlp.proj.adapter_bias",
+ "transformer.h.1.mlp.fc.adapter_bias",
+ "transformer.h.1.mlp.proj.adapter_scale",
+ "transformer.h.1.attn.gating_factor",
+ "transformer.h.1.norm_1.weight",
+ "transformer.ln_f.bias",
+ "transformer.h.0.mlp.fc.adapter_bias",
+ "lm_head.adapter_scale",
+ "lm_head.adapter_bias",
+ "transformer.h.1.norm_2.weight",
+ "transformer.h.0.attn.adapter_wte.weight",
+ "transformer.h.1.attn.qkv.adapter_scale",
+ "transformer.h.1.mlp.fc.adapter_scale",
+ "transformer.h.1.attn.qkv.linear.bias",
+ "transformer.wte.weight",
+ "transformer.wte.norm.weight",
+ "transformer.wte.norm.bias",
+ "transformer.h.0.norm_2.weight",
+ "transformer.h.1.mlp.proj.linear.bias",
+ "transformer.h.0.attn.gating_factor",
+ "transformer.h.0.attn.proj.adapter_bias",
+ },
+ }
+
+ assert {p.name for p in tmp_path.rglob("*.pth.adapter_v2")} == {"lit_model.pth.adapter_v2"}
+ state_dict = torch.load(tmp_path / "final" / "lit_model.pth.adapter_v2")
+ assert len(state_dict) == 1
+ dtype_to_name = {"torch.float16": set()}
+ for name, layer in state_dict["model"].items():
+ dtype_to_name[str(layer.dtype)].add(name)
+ assert dtype_to_name == {
+ "torch.float16": {
+ "transformer.h.1.attn.adapter_wte.weight",
+ "transformer.h.1.attn.proj.adapter_bias",
+ "transformer.h.1.mlp.fc.adapter_scale",
+ "lm_head.adapter_bias",
+ "transformer.h.0.mlp.proj.adapter_scale",
+ "transformer.ln_f.bias",
+ "lm_head.adapter_scale",
+ "transformer.h.1.norm_2.weight",
+ "transformer.h.0.attn.qkv.adapter_scale",
+ "transformer.h.0.mlp.proj.adapter_bias",
+ "transformer.h.0.attn.gating_factor",
+ "transformer.h.1.norm_1.bias",
+ "transformer.h.1.mlp.fc.adapter_bias",
+ "transformer.h.1.mlp.proj.adapter_scale",
+ "transformer.h.0.mlp.fc.adapter_scale",
+ "transformer.h.1.attn.qkv.adapter_bias",
+ "transformer.h.0.norm_2.weight",
+ "transformer.h.1.norm_2.bias",
+ "transformer.h.0.norm_1.weight",
+ "transformer.h.0.attn.proj.adapter_scale",
+ "transformer.h.1.mlp.proj.adapter_bias",
+ "transformer.h.0.attn.qkv.adapter_bias",
+ "transformer.h.0.attn.adapter_wte.weight",
+ "transformer.ln_f.weight",
+ "transformer.h.1.attn.gating_factor",
+ "transformer.h.0.mlp.fc.adapter_bias",
+ "transformer.h.1.attn.proj.adapter_scale",
+ "transformer.h.0.attn.proj.adapter_bias",
+ "transformer.h.0.norm_1.bias",
+ "transformer.h.0.norm_2.bias",
+ "transformer.h.1.norm_1.weight",
+ "transformer.h.1.attn.qkv.adapter_scale",
+ }
+ }
+
+ logs = stdout.getvalue()
+ assert "of trainable parameters: 552" in logs
+ assert "of non-trainable parameters: 1,808" in logs
+
+
+def test_load_legacy_state_dict():
+ """Check that a legacy state dict (with an interleaved placement in QKV matrix) can be loaded into a model with CausalSelfAttention layers."""
+ config = Config(
+ n_embd=32,
+ n_head=4,
+ head_size=8,
+ n_query_groups=4,
+ bias=True,
+ )
+
+ attention_1 = CausalSelfAttention(config=config, block_idx=0)
+
+ # make weights to be as-like in a legacy checkpoint, with `attn.attn.weight` instead of `attn.qkv.weight`
+ # and make them interleaved
+ state_dict = deepcopy(attention_1.state_dict())
+ state_dict["attn.linear.weight"] = make_qkv_interleaved(state_dict.pop("qkv.linear.weight"), config)
+ state_dict["attn.linear.bias"] = make_qkv_interleaved(state_dict.pop("qkv.linear.bias"), config)
+
+ attention_2 = CausalSelfAttention(config=config, block_idx=0)
+ attention_2.load_state_dict(state_dict)
diff --git a/tests/test_api.py b/tests/test_api.py
new file mode 100644
index 0000000000000000000000000000000000000000..92cfa2f8e81d78157dae5af48a26acdcf3d67d71
--- /dev/null
+++ b/tests/test_api.py
@@ -0,0 +1,417 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import os
+import re
+import sys
+from collections import OrderedDict
+from pathlib import Path
+from unittest.mock import MagicMock, patch
+
+import pytest
+import torch
+from lightning.fabric.accelerators import CUDAAccelerator
+
+from litgpt.api import LLM, benchmark_dict_to_markdown_table, calculate_number_of_devices
+from litgpt.scripts.download import download_from_hub
+from litgpt.utils import _RunIf
+
+skip_in_ci_on_macos = pytest.mark.skipif(
+ sys.platform == "darwin" and os.getenv("GITHUB_ACTIONS") == "true",
+ reason="Skipped on macOS in CI environment because CI machine does not have enough memory to run this test.",
+)
+
+
+if sys.platform == "darwin" and os.getenv("GITHUB_ACTIONS") == "true":
+ USE_MPS = False
+elif torch.backends.mps.is_available():
+ USE_MPS = True
+else:
+ USE_MPS = False
+
+
+@pytest.fixture
+def mock_llm():
+ llm = MagicMock(spec=LLM)
+ llm.model = MagicMock()
+ llm.preprocessor = MagicMock()
+ llm.prompt_style = MagicMock()
+ llm.checkpoint_dir = MagicMock()
+ llm.fabric = MagicMock()
+ return llm
+
+
+def test_load_model(mock_llm):
+ assert isinstance(mock_llm, LLM)
+ assert mock_llm.model is not None
+ assert mock_llm.preprocessor is not None
+ assert mock_llm.prompt_style is not None
+ assert mock_llm.checkpoint_dir is not None
+ assert mock_llm.fabric is not None
+
+
+def test_generate(mock_llm):
+ prompt = "What do Llamas eat?"
+ mock_llm.generate.return_value = prompt + " Mock output"
+ output = mock_llm.generate(prompt, max_new_tokens=10, temperature=0.8, top_k=5)
+ assert isinstance(output, str)
+ assert len(output) > len(prompt)
+
+
+def test_stream_generate(mock_llm):
+ prompt = "What do Llamas eat?"
+
+ def iterator():
+ outputs = (prompt + " Mock output").split()
+ yield from outputs
+
+ mock_llm.generate.return_value = iterator()
+ output = mock_llm.generate(prompt, max_new_tokens=10, temperature=0.8, top_k=5, stream=True)
+ result = "".join([out for out in output])
+ assert len(result) > len(prompt)
+
+
+def test_generate_token_ids(mock_llm):
+ prompt = "What do Llamas eat?"
+ mock_output_ids = MagicMock(spec=torch.Tensor)
+ mock_output_ids.shape = [len(prompt) + 10]
+ mock_llm.generate.return_value = mock_output_ids
+ output_ids = mock_llm.generate(prompt, max_new_tokens=10, return_as_token_ids=True)
+ assert isinstance(output_ids, torch.Tensor)
+ assert output_ids.shape[0] > len(prompt)
+
+
+def test_calculate_number_of_devices():
+ assert calculate_number_of_devices(1) == 1
+ assert calculate_number_of_devices([0, 1, 2]) == 3
+ assert calculate_number_of_devices(None) == 0
+
+
+def test_llm_load_random_init(tmp_path):
+ download_from_hub(repo_id="EleutherAI/pythia-14m", tokenizer_only=True, checkpoint_dir=tmp_path)
+
+ torch.manual_seed(123)
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(model="pythia-160m", init="random", tokenizer_dir=Path(tmp_path / "EleutherAI/pythia-14m"))
+
+ input_text = "some text text"
+ output_text = llm.generate(input_text, max_new_tokens=15)
+ ln = len(llm.preprocessor.tokenizer.encode(output_text)) - len(llm.preprocessor.tokenizer.encode(input_text))
+ assert ln <= 15
+
+ # The following below tests that generate works with different prompt lengths
+ # after the kv cache was set
+
+ input_text = "some text"
+ output_text = llm.generate(input_text, max_new_tokens=15)
+ ln = len(llm.preprocessor.tokenizer.encode(output_text)) - len(llm.preprocessor.tokenizer.encode(input_text))
+ assert ln <= 15
+
+ input_text = "some text text text"
+ output_text = llm.generate(input_text, max_new_tokens=15)
+ ln = len(llm.preprocessor.tokenizer.encode(output_text)) - len(llm.preprocessor.tokenizer.encode(input_text))
+ assert ln <= 15
+
+
+def test_llm_load_hub_init(tmp_path):
+ torch.manual_seed(123)
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(model="EleutherAI/pythia-14m", init="pretrained")
+
+ text_1 = llm.generate("text", max_new_tokens=10, top_k=1)
+ assert len(text_1) > 0
+
+ text_2 = llm.generate("text", max_new_tokens=10, top_k=1, stream=True)
+ text_2 = "".join(list(text_2))
+ assert text_1 == text_2, (text_1, text_2)
+
+
+def test_model_not_initialized(tmp_path):
+ llm = LLM.load(model="EleutherAI/pythia-14m", init="pretrained", distribute=None)
+ s = "The model is not initialized yet; use the .distribute() or .trainer_setup() method to initialize the model."
+ with pytest.raises(AttributeError, match=re.escape(s)):
+ llm.generate("text")
+
+ llm = LLM.load(model="EleutherAI/pythia-14m", tokenizer_dir="EleutherAI/pythia-14m", init="random", distribute=None)
+ s = "The model is not initialized yet; use the .distribute() or .trainer_setup() method to initialize the model."
+ with pytest.raises(AttributeError, match=re.escape(s)):
+ llm.generate("text")
+
+
+@_RunIf(min_cuda_gpus=2)
+def test_more_than_1_device_for_sequential_gpu(tmp_path):
+ device_count = CUDAAccelerator.auto_device_count()
+
+ if device_count <= 2:
+ model_name = "EleutherAI/pythia-14m"
+ else:
+ model_name = "EleutherAI/pythia-160m"
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model=model_name,
+ )
+
+ with pytest.raises(
+ NotImplementedError,
+ match="Support for multiple devices is currently only implemented for generate_strategy='sequential'|'tensor_parallel'.",
+ ):
+ llm.distribute(devices=2)
+
+ llm.distribute(devices=2, generate_strategy="sequential")
+ assert isinstance(llm.generate("What do llamas eat?"), str)
+ assert str(llm.model.transformer.h[0].mlp.fc.weight.device) == "cuda:0"
+ last_layer_idx = len(llm.model.transformer.h) - 1
+ assert str(llm.model.transformer.h[last_layer_idx].mlp.fc.weight.device) == "cuda:1"
+
+ # Also check with default (devices="auto") setting
+ llm.distribute(generate_strategy="sequential")
+ assert isinstance(llm.generate("What do llamas eat?"), str)
+ assert str(llm.model.transformer.h[0].mlp.fc.weight.device) == "cuda:0"
+ assert str(llm.model.transformer.h[last_layer_idx].mlp.fc.weight.device) == f"cuda:{device_count - 1}"
+
+
+@_RunIf(min_cuda_gpus=2)
+@pytest.mark.skipif(bool(os.getenv("SKIP_WITH_CI")), reason="Skip this test in CI due to ...")
+def test_more_than_1_device_for_tensor_parallel_gpu(tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(model="EleutherAI/pythia-14m")
+
+ # this crashes the CI, maybe because of process forking; works fine locally though
+ llm.distribute(devices=2, generate_strategy="tensor_parallel")
+ assert isinstance(llm.generate("What do llamas eat?"), str)
+
+
+@_RunIf(min_cuda_gpus=1)
+@pytest.mark.parametrize("strategy", ("sequential", "tensor_parallel"))
+@pytest.mark.xfail(
+ NotADirectoryError, reason="This test is expected to fail due to a NotADirectoryError.", strict=False
+)
+def test_sequential_tp_incompatibility_with_random_weights(strategy, tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(model="EleutherAI/pythia-14m", tokenizer_dir="EleutherAI/pythia-14m", init="random")
+ with pytest.raises(
+ NotImplementedError,
+ match=re.escape(
+ "The LLM was initialized with init='random' but .distribute() currently only supports pretrained weights."
+ ),
+ ):
+ llm.distribute(devices=1, generate_strategy=strategy)
+
+
+@pytest.mark.parametrize("strategy", ("sequential", "tensor_parallel"))
+def test_sequential_tp_cpu(strategy, tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model="EleutherAI/pythia-14m",
+ distribute=None,
+ )
+ with pytest.raises(
+ NotImplementedError, match=f"generate_strategy='{strategy}' is only supported for accelerator='cuda'|'gpu'."
+ ):
+ llm.distribute(devices=1, accelerator="cpu", generate_strategy=strategy)
+
+
+def test_initialization_for_trainer(tmp_path):
+ llm = LLM.load(model="EleutherAI/pythia-14m", distribute=None)
+ s = "The model is not initialized yet; use the .distribute() or .trainer_setup() method to initialize the model."
+ with pytest.raises(AttributeError, match=re.escape(s)):
+ llm.generate("hello world")
+
+ llm.trainer_setup()
+ llm.model.to(llm.preprocessor.device)
+ assert isinstance(llm.generate("hello world"), str)
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_quantization_is_applied(tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model="EleutherAI/pythia-14m",
+ )
+ llm.distribute(devices=1, quantize="bnb.nf4", precision="bf16-true")
+ strtype = str(type(llm.model.lm_head))
+ assert "NF4Linear" in strtype, strtype
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_fixed_kv_cache(tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model="EleutherAI/pythia-14m",
+ )
+ llm.distribute(devices=1, fixed_kv_cache_size=100)
+
+ # Request too many tokens
+ with pytest.raises(NotImplementedError, match="max_seq_length 512 needs to be >= 9223372036854775809"):
+ _ = llm.generate("hello world", max_new_tokens=2**63)
+
+
+def test_invalid_accelerator(tmp_path):
+ llm = LLM.load(model="EleutherAI/pythia-14m", distribute=None)
+ with pytest.raises(ValueError, match="Invalid accelerator"):
+ llm.distribute(accelerator="invalid")
+
+
+def test_returned_benchmark_dir(tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model="EleutherAI/pythia-14m",
+ )
+
+ text, bench_d = llm.benchmark(prompt="hello world")
+ assert isinstance(bench_d["Inference speed in tokens/sec"], list)
+ assert len(bench_d["Inference speed in tokens/sec"]) == 1
+ assert isinstance(bench_d["Inference speed in tokens/sec"][0], float)
+
+ text, bench_d = llm.benchmark(prompt="hello world", stream=True)
+ assert isinstance(bench_d["Inference speed in tokens/sec"], list)
+ assert len(bench_d["Inference speed in tokens/sec"]) == 1
+ assert isinstance(bench_d["Inference speed in tokens/sec"][0], float)
+
+ text, bench_d = llm.benchmark(num_iterations=10, prompt="hello world", stream=True)
+ assert isinstance(bench_d["Inference speed in tokens/sec"], list)
+ assert len(bench_d["Inference speed in tokens/sec"]) == 10
+ assert isinstance(bench_d["Inference speed in tokens/sec"][0], float)
+
+
+def test_benchmark_dict_to_markdown_table_single_values():
+ bench_d = {
+ "Inference speed in tokens/sec": [17.617540650112936],
+ "Seconds to first token": [0.6533610639999097],
+ "Seconds total": [1.4758019020000575],
+ "Tokens generated": [26],
+ "Total GPU memory allocated in GB": [5.923729408],
+ }
+
+ expected_output = (
+ "| Metric | Mean | Std Dev |\n"
+ "|-------------------------------------|-----------------------------|-----------------------------|\n"
+ "| Inference speed in tokens/sec | 17.62 | nan |\n"
+ "| Seconds to first token | 0.65 | nan |\n"
+ "| Seconds total | 1.48 | nan |\n"
+ "| Tokens generated | 26.00 | nan |\n"
+ "| Total GPU memory allocated in GB | 5.92 | nan |\n"
+ )
+
+ assert benchmark_dict_to_markdown_table(bench_d) == expected_output
+
+
+def test_benchmark_dict_to_markdown_table_multiple_values():
+ bench_d_list = {
+ "Inference speed in tokens/sec": [
+ 17.034547562152305,
+ 32.8974175404589,
+ 33.04784205046782,
+ 32.445697744648584,
+ 33.204480197756396,
+ 32.64187570945661,
+ 33.21232058140845,
+ 32.69377798373551,
+ 32.92351459309756,
+ 32.48909032591177,
+ ],
+ "Seconds to first token": [
+ 0.7403525039999295,
+ 0.022901020000063,
+ 0.02335712100011733,
+ 0.022969672000272112,
+ 0.022788318000039,
+ 0.02365505999978268,
+ 0.02320190000000366,
+ 0.022791139999753796,
+ 0.022871761999795126,
+ 0.023060415999680117,
+ ],
+ "Seconds total": [
+ 1.5263099829999192,
+ 0.7903355929997815,
+ 0.7867382069998712,
+ 0.8013389080001616,
+ 0.7830268640000213,
+ 0.7965228539997042,
+ 0.7828420160003589,
+ 0.7952583520000189,
+ 0.7897091279996857,
+ 0.8002686360000553,
+ ],
+ "Tokens generated": [26, 26, 26, 26, 26, 26, 26, 26, 26, 26],
+ "Total GPU memory allocated in GB": [
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ 5.923729408,
+ ],
+ }
+
+ expected_output = (
+ "| Metric | Mean | Std Dev |\n"
+ "|-------------------------------------|-----------------------------|-----------------------------|\n"
+ "| Inference speed in tokens/sec | 31.26 | 5.01 |\n"
+ "| Seconds to first token | 0.09 | 0.23 |\n"
+ "| Seconds total | 0.87 | 0.23 |\n"
+ "| Tokens generated | 26.00 | 0.00 |\n"
+ "| Total GPU memory allocated in GB | 5.92 | 0.00 |\n"
+ )
+
+ assert benchmark_dict_to_markdown_table(bench_d_list) == expected_output
+
+
+def test_state_dict(tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model="EleutherAI/pythia-14m",
+ )
+ assert isinstance(llm.state_dict(), OrderedDict)
+ assert llm.state_dict()["lm_head.weight"].shape == torch.Size([50304, 128])
+
+
+def test_save_method(tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model="EleutherAI/pythia-14m",
+ )
+
+ target_dir = "saved_model"
+ llm.save(target_dir)
+
+ expected_files = [
+ "config.json",
+ "generation_config.json",
+ "lit_model.pth",
+ "model_config.yaml",
+ "prompt_style.yaml",
+ "tokenizer_config.json",
+ "tokenizer.json",
+ ]
+
+ files_in_directory = os.listdir(target_dir)
+ for file_name in expected_files:
+ assert file_name in files_in_directory, f"{file_name} is missing from {target_dir}"
+
+
+def test_forward_method(tmp_path):
+ with patch("torch.backends.mps.is_available", return_value=USE_MPS):
+ llm = LLM.load(
+ model="EleutherAI/pythia-14m",
+ )
+ inputs = torch.ones(6, 128, dtype=torch.int64).to(next(llm.model.parameters()).device)
+
+ assert llm(inputs).shape == torch.Size([6, 128, 50304])
+ logits, loss = llm(inputs, target_ids=inputs)
+ assert logits.shape == torch.Size([6, 128, 50304])
+ assert isinstance(loss.item(), float)
+
+
+@skip_in_ci_on_macos # The macOS CI machine segfaults here (it works fine locally though)
+def test_precision_selection(tmp_path):
+ llm = LLM.load(model="EleutherAI/pythia-14m", init="pretrained")
+
+ llm.distribute(precision="16-true")
+ assert llm.model._forward_module.lm_head.weight.dtype == torch.float16, (
+ f"Expected float16, but got {llm.model._forward_module.lm_head.weight.dtype}"
+ )
diff --git a/tests/test_args.py b/tests/test_args.py
new file mode 100644
index 0000000000000000000000000000000000000000..e4749b818fd94247ef4165f39db9e9711dc731ad
--- /dev/null
+++ b/tests/test_args.py
@@ -0,0 +1,36 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import pytest
+
+from litgpt.args import TrainArgs
+
+
+def test_compute_warmup_iters():
+ # warmup disabled
+ train = TrainArgs(lr_warmup_steps=0, lr_warmup_fraction=0)
+ assert train.warmup_iters(devices=1, num_nodes=1, max_iters=1000, train_dataloader=range(10)) == 0
+
+ # lr_warmup_steps and lr_warmup_fraction both are not allowed
+ with pytest.raises(ValueError, match="Can't provide both `--train.lr_warmup_fraction`"):
+ TrainArgs(lr_warmup_steps=1, lr_warmup_fraction=0.2)
+
+ # lr_warmup_fraction invalid range
+ with pytest.raises(ValueError, match=" must be between 0 and 1"):
+ TrainArgs(lr_warmup_steps=0, lr_warmup_fraction=1.1)
+
+ # lr_warmup_steps
+ train = TrainArgs(global_batch_size=1, micro_batch_size=1, lr_warmup_steps=100, lr_warmup_fraction=0)
+ assert train.warmup_iters(devices=1, num_nodes=1, max_iters=1000, train_dataloader=range(10)) == 100
+ # lr_warmup_steps multiplied by accumulation factor
+ train.global_batch_size = 4
+ assert train.warmup_iters(devices=1, num_nodes=1, max_iters=1000, train_dataloader=range(10)) == 400
+ assert train.warmup_iters(devices=2, num_nodes=1, max_iters=1000, train_dataloader=range(10)) == 200
+ # lr_warmup_steps truncated by max iters
+ assert train.warmup_iters(devices=1, num_nodes=1, max_iters=120, train_dataloader=range(10)) == 120
+
+ # lr_warmup_fraction
+ train = TrainArgs(global_batch_size=1, micro_batch_size=1, lr_warmup_steps=0, lr_warmup_fraction=0.3)
+ assert train.warmup_iters(devices=1, num_nodes=1, max_iters=1000, train_dataloader=range(100)) == 30
+ # lr_warmup_fraction truncated by max iters
+ assert train.warmup_iters(devices=1, num_nodes=1, max_iters=20, train_dataloader=range(100)) == 20
+ # lr_warmup_fraction rounds up
+ assert train.warmup_iters(devices=1, num_nodes=1, max_iters=1000, train_dataloader=range(5)) == 2
diff --git a/tests/test_batch.py b/tests/test_batch.py
new file mode 100644
index 0000000000000000000000000000000000000000..32eb1c2f3afdc190b838354adabc4753c4213152
--- /dev/null
+++ b/tests/test_batch.py
@@ -0,0 +1,315 @@
+import warnings
+from pathlib import Path
+
+import lightning as L
+import pytest
+import torch
+
+import litgpt
+from litgpt.api import GPT, LLM
+from litgpt.generate.base import (
+ batched_generate_fn,
+ batched_next_token,
+ generate_fn,
+ next_token,
+)
+from litgpt.scripts.download import download_from_hub
+from litgpt.utils import _RunIf
+
+warnings.filterwarnings("ignore")
+
+
+def create_llm(tmp_path, batch_size, max_seq_length, device) -> tuple[LLM, GPT]:
+ L.seed_everything(42)
+
+ model_name = "microsoft/phi-2"
+ download_from_hub(repo_id=model_name, tokenizer_only=True, checkpoint_dir=tmp_path)
+
+ llm: LLM = LLM.load(
+ model_name,
+ tokenizer_dir=Path(tmp_path / model_name),
+ init="random",
+ )
+ model: GPT = llm.model
+ model.set_kv_cache(batch_size=batch_size, max_seq_length=max_seq_length, device=device)
+
+ return llm, model
+
+
+@pytest.mark.skipif(not torch.cuda.is_available(), reason="Test requires a GPU.")
+def test_batched_equivalence(tmp_path):
+ model_name = "microsoft/phi-2"
+ download_from_hub(repo_id=model_name, tokenizer_only=True, checkpoint_dir=tmp_path)
+
+ device = "cuda:0"
+ batch_size = 3
+ sample_kwargs = {"top_k": 1}
+
+ llm: LLM = LLM.load(
+ model_name,
+ tokenizer_dir=Path(tmp_path / model_name),
+ init="random",
+ )
+ model: GPT = llm.model
+ model.set_kv_cache(batch_size=1, max_seq_length=50, device=device)
+
+ input_pos_1 = torch.tensor([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype=torch.int64, device=device)
+ input_pos_2 = torch.tensor([10], dtype=torch.int64, device=device)
+
+ x = torch.tensor(
+ [43993, 25, 1867, 466, 32660, 17485, 4483, 30, 198, 26410],
+ device=device,
+ dtype=torch.int64,
+ )
+
+ batch_x1 = torch.stack([x] * batch_size, dim=0)
+
+ # Single token generation baseline
+ tok_1 = next_token(model, input_pos_1, x.unsqueeze(0), **sample_kwargs)
+ tok_2 = next_token(model, input_pos_2, tok_1.unsqueeze(0), **sample_kwargs)
+
+ assert tok_1.ndim == 1
+ assert tok_2.ndim == 1
+ assert tok_1.size(0) == 1
+ assert tok_2.size(0) == 1
+
+ # Switch to batched generation
+ model.clear_kv_cache()
+ model.set_kv_cache(batch_size=batch_size, max_seq_length=50, device="cuda:0")
+
+ toks_1: torch.Tensor = batched_next_token(model, input_pos_1, batch_x1, sample_kwargs)
+ toks_2: torch.Tensor = batched_next_token(model, input_pos_2, toks_1, sample_kwargs)
+
+ assert toks_1.ndim == 2
+ assert toks_2.ndim == 2
+ assert toks_1.size(0) == batch_size
+ assert toks_2.size(0) == batch_size
+
+ # Assert that single and batched next token generation are equivalent
+ assert all(t == tok_1 for t in toks_1), f"{tok_1} != {toks_1}"
+ assert all(t == tok_2 for t in toks_2), f"{tok_2} != {toks_2}"
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_simple_batch():
+ old_allow_tf32 = torch.backends.cuda.matmul.allow_tf32
+ torch.backends.cuda.matmul.allow_tf32 = False
+ config = litgpt.Config.from_name("microsoft/phi-2", padded_vocab_size=10000, n_layer=2, n_head=8, n_embd=256)
+ with torch.device("cuda"):
+ m = litgpt.GPT(config).requires_grad_(False).eval()
+ x0 = torch.tensor([[1, 2, 3, 4], [5, 6, 7, 7]])
+ input_pos0 = torch.tensor([[0, 1, 2, 3], [0, 1, 2, 2]])
+ x1 = torch.tensor([[1], [2]])
+ input_pos1 = torch.tensor([[4], [3]])
+
+ with torch.device("cuda"):
+ m.set_kv_cache(2)
+ outs0 = m(x0, input_pos0)
+ outs1 = m(x1, input_pos1)
+
+ with torch.device("cuda"):
+ m.set_kv_cache(1)
+
+ outs0_ref0 = m(x0[:1], input_pos0[0])
+ outs1_ref0 = m(x1[:1], input_pos1[0])
+
+ with torch.device("cuda"):
+ m.set_kv_cache(1)
+
+ outs0_ref1 = m(x0[1:], input_pos0[1])
+ outs1_ref1 = m(x1[1:], input_pos1[1])
+
+ outs0_ref = torch.cat([outs0_ref0, outs0_ref1])
+ outs1_ref = torch.cat([outs1_ref0, outs1_ref1])
+
+ print(outs0_ref - outs0)
+ print(outs0.shape)
+ torch.testing.assert_close(outs0, outs0_ref)
+ torch.testing.assert_close(outs1, outs1_ref)
+ torch.backends.cuda.matmul.allow_tf32 = old_allow_tf32
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_batch_generate(tmp_path):
+ torch.use_deterministic_algorithms(True)
+
+ device = "cuda:0"
+ batch_size = 3
+ sample_kwargs = {"top_k": 1}
+ llm, model = create_llm(tmp_path, batch_size, 50, device)
+
+ batch_x = torch.tensor(
+ [
+ [43993, 25, 1867, 466, 32660, 17485, 4483, 30, 198, 26410],
+ [25, 1867, 466, 32660, 17485, 4483, 30, 198, 26410, 7596],
+ [1867, 466, 32660, 17485, 4483, 30, 198, 26410, 7596, 7596],
+ ],
+ device=device,
+ dtype=torch.int64,
+ )
+
+ # Generate tokens
+ tokens = []
+ for l in batched_generate_fn(
+ model,
+ prompts=batch_x,
+ max_returned_tokens=50,
+ sample_args=sample_kwargs,
+ include_prompt=True,
+ include_eos=False,
+ ):
+ tokens.append([t.item() if t is not None else None for t in l])
+
+ def find_unique_stop(triplets):
+ # Initialize a dictionary to count all number occurrences
+ number_count = {}
+
+ # Count occurrences of each number across all positions
+ for triplet in triplets:
+ for num in triplet:
+ number_count[num] = number_count.get(num, 0) + 1
+
+ # Initialize lists to store unique numbers for each position
+ unique_first = []
+ unique_second = []
+ unique_third = []
+
+ # Check each triplet
+ for a, b, c in triplets:
+ if number_count[a] == 1:
+ unique_first.append(a)
+ if number_count[b] == 1:
+ unique_second.append(b)
+ if number_count[c] == 1:
+ unique_third.append(c)
+
+ import random # Seeded earlier
+
+ random.shuffle(unique_first)
+ random.shuffle(unique_second)
+ random.shuffle(unique_third)
+ return [unique_first[0], unique_second[0], unique_third[0]]
+
+ # Now that we know the randomly generated tokens, sample some tokens to stop each stream at.
+ stops = find_unique_stop(tokens[batch_x.size(1) :])
+ first_stream = [t[0] for t in tokens if t[0] is not None]
+ second_stream = [t[1] for t in tokens if t[1] is not None]
+ third_stream = [t[2] for t in tokens if t[2] is not None]
+
+ # Let's slice the streams at the stop tokens.
+ stop_idxes = [
+ first_stream.index(stops[0]),
+ second_stream.index(stops[1]),
+ third_stream.index(stops[2]),
+ ]
+
+ # While we're at it, grab the last token that would be generated before stopping.
+ last_tokens = [
+ first_stream[stop_idxes[0] - 1],
+ second_stream[stop_idxes[1] - 1],
+ third_stream[stop_idxes[2] - 1],
+ ]
+
+ for t in tokens:
+ print(t)
+
+ # Now we generate again, stopping early at the stop tokens.
+ tokens = []
+ for l in batched_generate_fn(
+ model,
+ prompts=batch_x,
+ max_returned_tokens=50,
+ stop_tokens=[(s,) for s in stops],
+ sample_args=sample_kwargs,
+ include_prompt=True,
+ include_eos=False,
+ ):
+ tokens.append([t.item() if t is not None else None for t in l])
+
+ # Finally, assert that the streams are correct.
+
+ first_stream = [t[0] for t in tokens if t[0] is not None]
+ print(first_stream)
+ print(len(first_stream), stop_idxes[0])
+ assert len(first_stream) == stop_idxes[0]
+ assert first_stream[-1] == last_tokens[0]
+
+ second_stream = [t[1] for t in tokens if t[1] is not None]
+ print(second_stream)
+ print(len(second_stream), stop_idxes[1])
+ assert len(second_stream) == stop_idxes[1]
+ assert second_stream[-1] == last_tokens[1]
+
+ third_stream = [t[2] for t in tokens if t[2] is not None]
+ print(third_stream)
+ print(len(third_stream), stop_idxes[2])
+ assert len(third_stream) == stop_idxes[2]
+ assert third_stream[-1] == last_tokens[2]
+
+ torch.use_deterministic_algorithms(False)
+
+ # for t in llm.tokenizer.decode_stream([torch.tensor(i) for i in first_stream]):
+ # print(t, end="", flush=True)
+ # print()
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_batch_generate_equivalence(tmp_path):
+ torch.use_deterministic_algorithms(True)
+
+ device = "cuda:0"
+ batch_size = 3
+ sample_kwargs = {"top_k": 1}
+ llm, model = create_llm(tmp_path, batch_size, 50, device)
+
+ batch_x = torch.tensor(
+ [
+ [43993, 25, 1867, 466, 32660, 17485, 4483, 30, 198, 26410],
+ [25, 1867, 466, 32660, 17485, 4483, 30, 198, 26410, 7596],
+ [1867, 466, 32660, 17485, 4483, 30, 198, 26410, 7596, 7596],
+ ],
+ device=device,
+ dtype=torch.int64,
+ )
+
+ # The other test tests the stop_tokens functionality much more exhaustively, we'll just generate and compare 50 tokens here.
+
+ batch_tokens = []
+ for l in batched_generate_fn(
+ model,
+ prompts=batch_x,
+ max_returned_tokens=50,
+ sample_args=sample_kwargs,
+ include_prompt=False,
+ include_eos=False,
+ ):
+ batch_tokens.append([t.item() if t is not None else None for t in l])
+
+ first_stream = [t[0] for t in batch_tokens if t[0] is not None]
+
+ batch_size = 1
+ llm, model = create_llm(tmp_path, batch_size, 50, device)
+
+ tokens = []
+ for t in generate_fn(
+ model,
+ prompt=batch_x[0],
+ max_returned_tokens=50,
+ include_prompt=False,
+ include_eos=False,
+ **sample_kwargs,
+ ):
+ if t.size(0) == 1:
+ tokens.append(t.item())
+ else:
+ tokens.extend(t.tolist())
+
+ torch.use_deterministic_algorithms(False)
+
+ # TODO: (apaz-cli) This consistency test doesn't actually work at the moment. It's inconsistent.
+ # The output is really close... Something is going on here. For the moment, maybe this is close enough?
+ # Enough at least that we can start prototyping.
+
+ print(first_stream)
+ print(tokens)
+ # assert first_stream == tokens
diff --git a/tests/test_chat.py b/tests/test_chat.py
new file mode 100644
index 0000000000000000000000000000000000000000..3bfe49780de40ecb985614f03b92e4b28738192c
--- /dev/null
+++ b/tests/test_chat.py
@@ -0,0 +1,202 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import os
+import re
+import subprocess
+import sys
+from contextlib import redirect_stderr, redirect_stdout
+from io import StringIO
+from itertools import repeat
+from pathlib import Path
+from typing import Iterable, Iterator
+from unittest.mock import MagicMock, Mock, patch
+
+import pytest
+import torch
+import yaml
+
+import litgpt.chat.base as chat
+import litgpt.generate.base as generate
+from litgpt import Config, Tokenizer
+from litgpt.utils import auto_download_checkpoint, save_config
+
+skip_in_ci_on_macos = pytest.mark.skipif(
+ sys.platform == "darwin" and os.getenv("GITHUB_ACTIONS") == "true",
+ reason="Skipped on macOS in CI environment because CI machine does not have enough memory to run this test.",
+)
+
+
+@pytest.mark.parametrize(
+ ("generated", "stop_tokens", "expected"),
+ [
+ (repeat(1), (), [1] * 8),
+ ([1, 2, 3, 0], ([0],), [1, 2, 3]),
+ ([1, 2, 3, 0], ([9], [2, 4], [1, 2, 3, 0]), []),
+ ([1, 2, 3, 0, 0], ([0, 0, 0], [0, 0]), [1, 2, 3]),
+ ([3, 1, 2], ([1, 2], [3]), []),
+ ([1, 2, 3, 0, 3, 2, 1, 0], ([4, 3, 2, 1], [2, 4]), [1, 2, 3, 0, 3, 2, 1, 0]),
+ ],
+)
+def test_generate(monkeypatch, generated, stop_tokens, expected):
+ import lightning as L
+
+ L.seed_everything(1234)
+
+ input_idx = torch.tensor([5, 3])
+ max_returned_tokens = len(input_idx) + 8
+ model = MagicMock()
+ model.config.block_size = 100
+ model.max_seq_length = 100
+ it = iter(generated)
+
+ def multinomial(*_, **__):
+ out = next(it)
+ return torch.tensor([out])
+
+ monkeypatch.setattr(generate, "multinomial_num_samples_1", multinomial)
+ actual = chat.generate(model, input_idx, max_returned_tokens, stop_tokens=stop_tokens)
+ actual = list(actual)
+
+ assert len(actual) == len(expected), (actual, expected)
+ if not actual:
+ assert actual == expected, (actual, expected)
+ else:
+ for t in actual:
+ assert t.dtype == torch.long, t.dtype
+ actual_list = torch.cat(actual).tolist()
+ assert actual_list == expected, (actual_list, expected)
+
+
+def test_decode():
+ checkpoint_dir = auto_download_checkpoint("EleutherAI/pythia-14m")
+ tokenizer = Tokenizer(checkpoint_dir)
+
+ text = (
+ "Hello World! This a bunch of text. Lorem ipsum dolor sit amet, "
+ "consectetur adipiscing elit, sed do eiusmod tempor incididunt "
+ "ut labore et dolore magna aliqua."
+ )
+
+ encoded: torch.Tensor = tokenizer.encode(text)
+ encoded_stream: Iterable[torch.Tensor] = torch.tensor_split(encoded, encoded.shape[0], dim=0)
+
+ decoded_stream: Iterator[str] = tokenizer.decode_stream(encoded_stream)
+ decoded: str = "".join(decoded_stream)
+
+ # Note that encoded and decoded text will not always be character for character identical.abs
+ # Indeed, sometimes it is not. But that tends to be because of special cases, and this is not
+ # one of those.
+ assert text == decoded, (text, decoded)
+
+
+@skip_in_ci_on_macos
+@patch("litgpt.chat.base.input")
+@pytest.mark.parametrize("stop_iteration", [KeyboardInterrupt, ""])
+def test_main(mocked_input, stop_iteration, fake_checkpoint_dir, monkeypatch, tensor_like):
+ # these values will be iteratively provided for each `input()` call
+ mocked_input.side_effect = ["Hello", stop_iteration]
+
+ config_path = fake_checkpoint_dir / "model_config.yaml"
+ config = {
+ "name": "Llama 3",
+ "block_size": 128,
+ "vocab_size": 50,
+ "n_layer": 2,
+ "n_head": 4,
+ "n_embd": 8,
+ "rotary_percentage": 1,
+ }
+ config_path.write_text(yaml.dump(config))
+
+ load_mock = Mock()
+ load_mock.return_value = load_mock
+ monkeypatch.setattr(chat, "load_checkpoint", load_mock)
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value.backend = "sentencepiece"
+ tokenizer_mock.return_value.encode.return_value = torch.tensor([1, 2, 3])
+ tokenizer_mock.return_value.decode_stream.return_value = "foo bar baz"
+ monkeypatch.setattr(chat, "Tokenizer", tokenizer_mock)
+ generate_mock = MagicMock()
+ generate_mock.__iter__.return_value = [torch.tensor([3, 2, 1])]
+ monkeypatch.setattr(chat, "generate", generate_mock)
+
+ out, err = StringIO(), StringIO()
+ with redirect_stdout(out), redirect_stderr(err):
+ chat.main(temperature=2.0, max_new_tokens=10, top_k=2, top_p=0.9, checkpoint_dir=fake_checkpoint_dir)
+
+ # decoding is done per each generated item
+ assert len(tokenizer_mock.return_value.decode_stream.mock_calls) == 1
+ assert tokenizer_mock.return_value.decode_stream.call_args[0][0] is generate_mock.return_value # Now a Mock
+
+ # Assert that the generated result is printed to stdout
+ assert re.match(r".*Now chatting with Llama 3.*>> .*Reply: foo bar baz", out.getvalue(), re.DOTALL), out.getvalue()
+
+
+def test_cli():
+ args = ["litgpt", "chat", "-h"]
+ output = subprocess.check_output(args)
+ output = str(output.decode())
+ assert "Chat with a model" in output
+
+
+@skip_in_ci_on_macos
+@patch("litgpt.chat.base.input")
+@patch("litgpt.chat.base.merge_lora")
+def test_merge_lora_if_needed(mocked_merge_lora, mocked_input, fake_checkpoint_dir, monkeypatch, tensor_like):
+ # these values will be iteratively provided for each `input()` call
+ mocked_input.side_effect = [""]
+
+ # pretend there is an unmerged LORA checkpoint
+ os.rename(fake_checkpoint_dir / "lit_model.pth", fake_checkpoint_dir / "lit_model.pth.lora")
+ mocked_merge_lora.side_effect = lambda _: Path(fake_checkpoint_dir / "lit_model.pth").touch()
+
+ config = Config.from_name("pythia-14m")
+ save_config(config, fake_checkpoint_dir)
+ monkeypatch.setattr(chat, "load_checkpoint", Mock())
+ monkeypatch.setattr(chat, "Tokenizer", Mock())
+
+ out, err = StringIO(), StringIO()
+ with redirect_stdout(out), redirect_stderr(err):
+ chat.main(checkpoint_dir=fake_checkpoint_dir)
+
+ assert re.match(r".*Merging LoRA weights with the base model\..*", out.getvalue(), re.DOTALL)
+ mocked_merge_lora.assert_called_once()
+
+
+@skip_in_ci_on_macos
+def test_litgpt_chat_endtoend():
+ from litgpt.chat.base import main
+
+ checkpoint_dir = auto_download_checkpoint("EleutherAI/pythia-14m")
+
+ # Patch input() and redirect stdout. Raise to exit the repl.
+ simulated_input = Mock(side_effect=["input", KeyboardInterrupt])
+ captured_output = StringIO()
+ with patch("builtins.input", simulated_input):
+ with redirect_stdout(captured_output):
+ try:
+ main(checkpoint_dir=checkpoint_dir, max_new_tokens=256, top_k=1)
+ except KeyboardInterrupt:
+ pass
+
+ # pythia-14m is not instruct-tuned, so it does not give an "answer" per se, but a continuation.
+ assert ">> Reply: !" in captured_output.getvalue(), f"Expected output not found. Got:\n{captured_output.getvalue()}"
+ assert simulated_input.call_count == 2
+
+
+@skip_in_ci_on_macos
+def test_litgpt_generate_endtoend():
+ from litgpt.generate.base import main
+
+ checkpoint_dir = auto_download_checkpoint("EleutherAI/pythia-14m")
+
+ captured_output = StringIO()
+ with redirect_stdout(captured_output):
+ try:
+ main(checkpoint_dir=checkpoint_dir, prompt="Hello World", max_new_tokens=256, top_k=1)
+ except KeyboardInterrupt:
+ pass
+
+ # pythia-14m is not instruct-tuned, so it does not give an "answer" per se, but a continuation.
+ assert "Hello World!" in captured_output.getvalue(), (
+ f"Expected output not found. Got:\n{captured_output.getvalue()}"
+ )
diff --git a/tests/test_ci.py b/tests/test_ci.py
new file mode 100644
index 0000000000000000000000000000000000000000..72de327e7c028954ccc2f6567073ab61606a8d45
--- /dev/null
+++ b/tests/test_ci.py
@@ -0,0 +1,10 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+from lightning.fabric.plugins.precision.bitsandbytes import _BITSANDBYTES_AVAILABLE
+
+from litgpt.utils import _RunIf
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_gpu_ci_installs_bitsandbytes():
+ assert _BITSANDBYTES_AVAILABLE, str(_BITSANDBYTES_AVAILABLE)
diff --git a/tests/test_cli.py b/tests/test_cli.py
new file mode 100644
index 0000000000000000000000000000000000000000..6d1c1091bebb4a4040c68dac5dceb6124d5d4994
--- /dev/null
+++ b/tests/test_cli.py
@@ -0,0 +1,67 @@
+import sys
+from contextlib import redirect_stdout
+from io import StringIO
+from unittest import mock
+
+import pytest
+from packaging.version import Version
+
+from litgpt.__main__ import main
+
+
+def test_cli():
+ out = StringIO()
+ with pytest.raises(SystemExit), redirect_stdout(out), mock.patch("sys.argv", ["litgpt", "-h"]):
+ main()
+ out = out.getvalue()
+ assert "usage: litgpt" in out
+ assert (
+ "{download,chat,finetune,finetune_lora,finetune_full,finetune_adapter,finetune_adapter_v2,"
+ "pretrain,generate,generate_full,generate_adapter,generate_adapter_v2,generate_sequentially,"
+ "generate_speculatively,generate_tp,convert_to_litgpt,convert_from_litgpt,convert_pretrained_checkpoint,"
+ "merge_lora,evaluate,serve}" in out
+ )
+ assert (
+ """Available subcommands:
+ download Download weights or tokenizer data from the Hugging
+ Face Hub.
+ chat Chat with a model."""
+ in out
+ )
+ assert """evaluate Evaluate a model with the LM Evaluation Harness.""" in out
+ assert """serve Serve a LitGPT model using LitServe.""" in out
+ out = StringIO()
+ with pytest.raises(SystemExit), redirect_stdout(out), mock.patch("sys.argv", ["litgpt", "finetune_lora", "-h"]):
+ main()
+ out = out.getvalue()
+ assert (
+ """--lora_alpha LORA_ALPHA
+ The LoRA alpha. (type: int, default: 16)"""
+ in out
+ )
+
+ if Version(f"{sys.version_info.major}.{sys.version_info.minor}") < Version("3.9"):
+ # python 3.8 prints `Union[int, null]` instead of `Optional[int]`
+ return
+
+ out = StringIO()
+ with pytest.raises(SystemExit), redirect_stdout(out), mock.patch("sys.argv", ["litgpt", "pretrain", "-h"]):
+ main()
+ out = out.getvalue()
+ print(out)
+ assert (
+ """--train.max_tokens MAX_TOKENS
+ Total number of tokens to train on (type:
+ Optional[int], default: 3000000000000)"""
+ in out
+ )
+
+
+def test_rewrite_finetune_command():
+ out1 = StringIO()
+ with pytest.raises(SystemExit), redirect_stdout(out1), mock.patch("sys.argv", ["litgpt", "fineune", "-h"]):
+ main()
+ out2 = StringIO()
+ with pytest.raises(SystemExit), redirect_stdout(out2), mock.patch("sys.argv", ["litgpt", "fineune_lora", "-h"]):
+ main()
+ assert out1.getvalue() == out2.getvalue()
diff --git a/tests/test_config.py b/tests/test_config.py
new file mode 100644
index 0000000000000000000000000000000000000000..a287357e944ef7924b45116c0fa31e9bbcf7a8ec
--- /dev/null
+++ b/tests/test_config.py
@@ -0,0 +1,116 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import pytest
+import yaml
+
+import litgpt.config as config_module
+from litgpt import Config
+from litgpt.config import find_multiple
+
+
+def test_config():
+ config = Config()
+ assert config.name == ""
+ assert config.block_size == 4096
+
+ config = Config(block_size=2048)
+ assert config.block_size == 2048
+
+ config = Config.from_name("pythia-14m")
+ assert config.block_size == 512
+
+ config = Config.from_name("pythia-14m", block_size=4096)
+ assert config.block_size == 4096
+
+ config = Config(hf_config={"name": "pythia-14m"})
+ assert config.name == "pythia-14m"
+
+
+def test_from_hf_name():
+ # by short-hand name
+ config0 = Config.from_name("tiny-llama-1.1b")
+ # or by huggingface hub repo name
+ config1 = Config.from_name("TinyLlama-1.1B-intermediate-step-1431k-3T")
+ assert config0 is not None
+ assert config1 is not None
+ assert config0 == config1
+
+
+def test_nonexisting_name():
+ with pytest.raises(ValueError, match="'invalid-model-name' is not a supported config name"):
+ Config.from_name("invalid-model-name")
+
+
+@pytest.mark.parametrize("config", config_module.configs, ids=[c["name"] for c in config_module.configs])
+def test_short_and_hf_names_are_equal_unless_on_purpose(config):
+ # by short-hand name
+ config0 = Config.from_name(config["name"])
+ # or by huggingface hub repo name
+ config1 = Config.from_name(config["hf_config"]["name"])
+ assert config0.name == config1.name
+
+
+def test_from_hf_name_with_org_string():
+ # Test case 1: valid input
+ config0 = Config.from_name("tiny-llama-1.1b")
+ config1 = Config.from_name("TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T")
+ assert config0 is not None
+ assert config1 is not None
+ assert config0 == config1
+
+ # Test case 2: invalid input - org not found
+ with pytest.raises(
+ ValueError, match="'UnknownOrg/TinyLlama-1.1B-intermediate-step-1431k-3T' is not a supported config name"
+ ):
+ Config.from_name("UnknownOrg/TinyLlama-1.1B-intermediate-step-1431k-3T")
+
+ # Test case 3: invalid input - name not found
+ with pytest.raises(ValueError, match="'TinyLlama/TinyLlama-XYZ' is not a supported config name"):
+ Config.from_name("TinyLlama/TinyLlama-XYZ")
+
+
+def test_from_checkpoint(tmp_path):
+ # 1. Neither `lit_config.py` nor matching config exists.
+ with pytest.raises(FileNotFoundError, match="neither 'model_config.yaml' nor matching config exists"):
+ Config.from_checkpoint(tmp_path / "non_existing_checkpoint")
+
+ # 2. If `lit_config.py` doesn't exists, but there is a matching config in `litgpt/config.py`.
+ config = Config.from_checkpoint(tmp_path / "pythia-14m")
+ assert config.name == "pythia-14m"
+ assert config.block_size == 512
+ assert config.n_layer == 6
+
+ # 3. If only `lit_config.py` exists.
+ config_data = {"name": "pythia-14m", "block_size": 24, "n_layer": 2}
+ with open(tmp_path / "model_config.yaml", "w", encoding="utf-8") as file:
+ yaml.dump(config_data, file)
+ config = Config.from_checkpoint(tmp_path)
+ assert config.name == "pythia-14m"
+ assert config.block_size == 24
+ assert config.n_layer == 2
+
+ # 4. Both `lit_config.py` and a matching config exist, but `lit_config.py` supersedes matching config
+ (tmp_path / "pythia-14m").mkdir()
+ with open(tmp_path / "pythia-14m/model_config.yaml", "w", encoding="utf-8") as file:
+ yaml.dump(config_data, file)
+ config = Config.from_checkpoint(tmp_path / "pythia-14m")
+ assert config.name == "pythia-14m"
+ assert config.block_size == 24
+ assert config.n_layer == 2
+
+
+@pytest.mark.parametrize("head_size", [None, 128])
+def test_head_size(head_size):
+ config = Config(head_size)
+
+ assert config.head_size == head_size or config.n_embd // config.n_head
+
+
+def test_find_multiple():
+ assert find_multiple(17, 5) == 20
+ assert find_multiple(30, 7) == 35
+ assert find_multiple(10, 2) == 10
+ assert find_multiple(5, 10) == 10
+ assert find_multiple(50254, 128) == 50304
+ assert find_multiple(50254, 256) == 50432
+ assert find_multiple(50254, 512) == 50688
diff --git a/tests/test_config_hub.py b/tests/test_config_hub.py
new file mode 100644
index 0000000000000000000000000000000000000000..77245b0314b34691acfcb5aa5dc539eae93779ac
--- /dev/null
+++ b/tests/test_config_hub.py
@@ -0,0 +1,64 @@
+import importlib
+import importlib.util
+from pathlib import Path
+from unittest import mock
+from unittest.mock import Mock
+
+import pytest
+from lightning.fabric.plugins import Precision
+
+from litgpt import Config
+from litgpt.utils import CLI
+
+fixed_pairs = [
+ ("litgpt/pretrain.py", "pretrain/debug.yaml"),
+ ("litgpt/pretrain.py", "pretrain/tinyllama.yaml"),
+ ("litgpt/pretrain.py", "pretrain/tinystories.yaml"),
+ (
+ "litgpt/pretrain.py",
+ "https://raw.githubusercontent.com/Lightning-AI/litgpt/main/config_hub/pretrain/tinystories.yaml",
+ ),
+]
+
+config_hub_path = Path(__file__).parent.parent / "config_hub" / "finetune"
+model_pairs = []
+
+for model_dir in config_hub_path.iterdir():
+ if model_dir.is_dir():
+ model_name = model_dir.name
+ for yaml_file in model_dir.glob("*.yaml"):
+ config_name = yaml_file.stem
+ python_file = "litgpt/finetune/full.py" if config_name == "full" else "litgpt/finetune/lora.py"
+ relative_yaml_path = yaml_file.relative_to(config_hub_path.parent)
+ model_pairs.append((python_file, str(relative_yaml_path)))
+
+all_pairs = fixed_pairs + model_pairs
+
+
+@pytest.mark.parametrize(("script_file", "config_file"), all_pairs)
+def test_config_help(script_file, config_file, monkeypatch):
+ """Test that configs validate against the signature in the scripts."""
+ script_file = Path(__file__).parent.parent / script_file
+ assert script_file.is_file()
+ if "http" not in str(config_file):
+ config_file = Path(__file__).parent.parent / "config_hub" / config_file
+ assert config_file.is_file()
+
+ spec = importlib.util.spec_from_file_location(str(script_file.parent.name), script_file)
+ module = importlib.util.module_from_spec(spec)
+ spec.loader.exec_module(module)
+
+ monkeypatch.setattr(module, "main", Mock())
+ monkeypatch.setattr(module, "Tokenizer", Mock())
+ monkeypatch.setattr(module, "BitsandbytesPrecision", Mock(return_value=Precision()), raising=False)
+ monkeypatch.setattr(module, "Config", Mock(return_value=Config.from_name("pythia-14m")))
+ monkeypatch.setattr(module, "check_valid_checkpoint_dir", Mock(), raising=False)
+
+ try:
+ with mock.patch("sys.argv", [script_file.name, "--config", str(config_file), "--devices", "1"]):
+ CLI(module.setup)
+ module.main.assert_called_once()
+ except FileNotFoundError:
+ pass
+ # FileNotFound occurs here because we have not downloaded the model weights referenced in the config files
+ # which is ok because here we just want to validate the config file itself.
diff --git a/tests/test_distributed.py b/tests/test_distributed.py
new file mode 100644
index 0000000000000000000000000000000000000000..2e7f82ff2f568eea1fcd0f54c00fe08becd8ff34
--- /dev/null
+++ b/tests/test_distributed.py
@@ -0,0 +1,42 @@
+import pytest
+import torch
+from lightning import Fabric
+
+from litgpt.utils import _RunIf
+
+
+@_RunIf(min_cuda_gpus=2, standalone=True)
+@pytest.mark.parametrize("strategy", ["ddp", "fsdp"])
+def test_no_backward_sync(strategy):
+ fabric = Fabric(devices=2, accelerator="cuda", strategy=strategy)
+ fabric.launch()
+
+ # account for sharding in the case of FSDP
+ out_features = 1 if "ddp" in strategy else fabric.world_size
+
+ model = torch.nn.Linear(1, out_features, bias=False, device=fabric.device)
+ x = torch.randn(1, 1, device=fabric.device)
+ model = fabric.setup(model)
+
+ # 6 iters, 3 grad accumulation iters
+ for i, enabled in enumerate((True, True, False, True, True, False), 1):
+ x = torch.tensor([i * (fabric.local_rank + 1)], device=fabric.device, dtype=torch.float32)
+
+ with fabric.no_backward_sync(model, enabled):
+ y = model(x)
+ fabric.backward(y.sum())
+ if not enabled:
+ # Math for the first 3 iters
+ #
+ # DistributedDataParallel
+ # (1*1+2*1+3*1 + 1*2+2*2+3*2) / 2 = 9
+ # ^^^^^^^^^^^ ^^^^^^^^^^^ ^^^
+ # rank0 rank1 allreduce
+ #
+ # thunder.distributed.ddp
+ # ((1*1+2*1) + (1*2+2*2)) / 2 + (3*1 + 3*2) / 2 = 9
+ # ^^^^^^^ ^^^^^^^ ^^^ ^^^ ^^^ ^^^
+ # rank0 rank1 allreduce1 rank0 rank1 allreduce2
+ assert model.weight.grad.shape.numel() == 1, model.weight.grad.shape
+ assert model.weight.grad.item() == (9.0 if i == 3 else 22.5)
+ model.weight.grad = None
diff --git a/tests/test_evaluate.py b/tests/test_evaluate.py
new file mode 100644
index 0000000000000000000000000000000000000000..0fdb7412f725451e8a9d9fc4d2c96aa967244020
--- /dev/null
+++ b/tests/test_evaluate.py
@@ -0,0 +1,76 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import subprocess
+from contextlib import redirect_stdout
+from dataclasses import asdict
+from io import StringIO
+from unittest import mock
+
+import pytest
+import torch
+import yaml
+
+import litgpt.eval.evaluate as module
+from litgpt import GPT, Config
+from litgpt.scripts.download import download_from_hub
+
+
+@pytest.mark.flaky(reruns=3)
+def test_evaluate_script(tmp_path):
+ ours_config = Config.from_name("pythia-14m")
+ download_from_hub(repo_id="EleutherAI/pythia-14m", tokenizer_only=True, checkpoint_dir=tmp_path)
+ checkpoint_dir = tmp_path / "EleutherAI" / "pythia-14m"
+ ours_model = GPT(ours_config)
+ torch.save(ours_model.state_dict(), checkpoint_dir / "lit_model.pth")
+ with open(checkpoint_dir / "model_config.yaml", "w", encoding="utf-8") as fp:
+ yaml.dump(asdict(ours_config), fp)
+
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["eval/evaluate.py"]):
+ with pytest.raises(ValueError) as excinfo:
+ module.convert_and_evaluate(
+ checkpoint_dir,
+ out_dir=tmp_path / "out_dir",
+ device=None,
+ dtype=torch.float32,
+ limit=5,
+ tasks="logiqa",
+ batch_size=0, # Test for non-positive integer
+ )
+ assert "batch_size must be a positive integer, 'auto', or in the format 'auto:N'." in str(excinfo.value)
+
+ with pytest.raises(ValueError) as excinfo:
+ module.convert_and_evaluate(
+ checkpoint_dir,
+ out_dir=tmp_path / "out_dir",
+ device=None,
+ dtype=torch.float32,
+ limit=5,
+ tasks="logiqa",
+ batch_size="invalid", # Test for invalid string
+ )
+ assert "batch_size must be a positive integer, 'auto', or in the format 'auto:N'." in str(excinfo.value)
+
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["eval/evaluate.py"]):
+ module.convert_and_evaluate(
+ checkpoint_dir,
+ out_dir=tmp_path / "out_dir",
+ device=None,
+ dtype=torch.float32,
+ limit=5,
+ tasks="logiqa",
+ batch_size=1, # Valid case
+ )
+ stdout = stdout.getvalue()
+ assert (tmp_path / "out_dir" / "results.json").is_file()
+ assert "logiqa" in stdout
+ assert "Metric" in stdout
+ assert "Loading checkpoint shards" not in stdout
+
+
+def test_cli():
+ args = ["litgpt", "evaluate", "-h"]
+ output = subprocess.check_output(args)
+ output = str(output.decode())
+ assert "Evaluate a model with the LM Evaluation Harness" in output
diff --git a/tests/test_full.py b/tests/test_full.py
new file mode 100644
index 0000000000000000000000000000000000000000..2b0d55a8b916841d7530b370800fb6bdfe6d506b
--- /dev/null
+++ b/tests/test_full.py
@@ -0,0 +1,71 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import os
+from contextlib import redirect_stdout
+from io import StringIO
+from unittest import mock
+from unittest.mock import Mock
+
+import torch
+import yaml
+
+import litgpt.finetune.full as module
+from litgpt.args import EvalArgs, TrainArgs
+from litgpt.data import Alpaca
+
+
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+def test_full_script(tmp_path, fake_checkpoint_dir, monkeypatch, alpaca_path):
+ model_config = dict(block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8)
+ (fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
+ monkeypatch.setattr(module, "load_checkpoint", Mock())
+
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value = tokenizer_mock
+ tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
+ monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
+
+ out_dir = tmp_path / "out"
+ setup_args = (fake_checkpoint_dir,)
+ setup_kwargs = dict(
+ data=Alpaca(download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0),
+ out_dir=out_dir,
+ precision="32-true",
+ train=TrainArgs(global_batch_size=1, save_interval=2, epochs=1, max_steps=6, micro_batch_size=1),
+ eval=EvalArgs(interval=2, max_iters=2, max_new_tokens=1),
+ )
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["full.py", str(fake_checkpoint_dir)]):
+ module.setup(*setup_args, **setup_kwargs)
+
+ out_dir_contents = set(os.listdir(out_dir))
+ checkpoint_dirs = {"step-000002", "step-000004", "step-000006", "final"}
+ assert checkpoint_dirs.issubset(out_dir_contents)
+ assert all((out_dir / p).is_dir() for p in checkpoint_dirs)
+ for checkpoint_dir in checkpoint_dirs:
+ assert set(os.listdir(out_dir / checkpoint_dir)) == {
+ "lit_model.pth",
+ "model_config.yaml",
+ "tokenizer_config.json",
+ "tokenizer.json",
+ "hyperparameters.yaml",
+ "prompt_style.yaml",
+ }
+ assert (out_dir / "logs" / "csv" / "version_0" / "metrics.csv").is_file()
+
+ logs = stdout.getvalue()
+ assert logs.count("(step)") == 6
+ assert logs.count("val loss") == 4 # 3 validations + 1 final validation
+ assert logs.count("Final evaluation") == 1
+ assert "of trainable parameters: 1,888" in logs
+
+ # Resume training and do 2 steps more
+ setup_kwargs["train"].max_steps = 8
+ setup_kwargs["resume"] = True
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["full.py", str(fake_checkpoint_dir)]):
+ module.setup(*setup_args, **setup_kwargs)
+ logs = stdout.getvalue()
+ assert f"Resuming training from {out_dir / 'step-000006' / 'lit_model.pth'}" in logs
+ assert logs.count("(step)") == 2
+ assert out_dir / "step-000008" in set(out_dir.iterdir())
diff --git a/tests/test_generate_speculatively.py b/tests/test_generate_speculatively.py
new file mode 100644
index 0000000000000000000000000000000000000000..383688c43d122c54b2a85e084bf04fdf896f7eb3
--- /dev/null
+++ b/tests/test_generate_speculatively.py
@@ -0,0 +1,215 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import re
+import subprocess
+from contextlib import redirect_stderr, redirect_stdout
+from io import StringIO
+from unittest.mock import ANY, Mock, call
+
+import pytest
+import torch
+import yaml
+from torch import nn
+
+import litgpt.generate.speculative_decoding as generate
+from litgpt import GPT, Config
+from litgpt.utils import _RunIf
+
+
+def test_speculative_decoding_target_never_accepts_draft_tokens():
+ class DraftModel(nn.Module):
+ def forward(self, **kwargs):
+ return torch.tensor([1, 2, 3, 4, 5, 0, 0, 0, 0, 0], dtype=torch.float)[None, None, ...] # (B, T, C)
+
+ class TargetModel(nn.Module):
+ def forward(self, idx, **kwargs):
+ _, T = idx.shape
+ return torch.tensor([[0, 0, 0, 0, 0, 6, 7, 8, 9, 10]] * T, dtype=torch.float)[None, ...] # (B, T, C)
+
+ draft_model = DraftModel()
+ target_model = TargetModel()
+
+ token = torch.tensor([-1])
+ input_pos = torch.tensor([0])
+ sample_kwargs = dict(top_k=None, top_p=0.0, temperature=0.0) # to make sampling consistent
+ output = generate.speculative_decoding(
+ draft_model, target_model, token, input_pos, input_pos, speculative_k=3, **sample_kwargs
+ )
+
+ # target model never accepts draft model's output, thus the output of the `speculative_decoding`
+ # is a single token sampled from the target model
+ assert len(output) == 1
+ assert output > 5
+
+
+def test_speculative_decoding_target_always_accepts_draft_tokens():
+ class DraftModel(nn.Module):
+ def forward(self, **kwargs):
+ return torch.tensor([0, 0, 3, 4, 5, 6, 7, 8, 0, 0], dtype=torch.float)[None, None, ...] # (B, T, C)
+
+ class TargetModel(nn.Module):
+ def forward(self, idx, **kwargs):
+ _, T = idx.shape
+ return torch.tensor([[0, 0, 3, 4, 5, 6, 7, 8, 0, 0]] * T, dtype=torch.float)[None, ...] # (B, T, C)
+
+ draft_model = DraftModel()
+ target_model = TargetModel()
+
+ token = torch.tensor([-1])
+ input_pos = torch.tensor([0])
+ sample_kwargs = dict(top_k=None, top_p=0.0, temperature=0.0) # to make sampling consistent
+ output = generate.speculative_decoding(
+ draft_model, target_model, token, input_pos, input_pos, speculative_k=3, **sample_kwargs
+ )
+
+ # target model always accepts draft model's output, thus the output of the `speculative_decoding`
+ # is 4 tokens (3 accepted draft tokens + 1 sampled from target model's output)
+ assert len(output) == 4
+ assert torch.all((output >= 3) & (output <= 8))
+
+
+def test_speculative_decoding_target_sometimes_accepts_draft_tokens():
+ class DraftModel(nn.Module):
+ def forward(self, **kwargs):
+ return torch.tensor([0, 0, 3, 4, 10, 9, 7, 8, 0, 0], dtype=torch.float)[None, None, ...] # (B, T, C)
+
+ class TargetModel(nn.Module):
+ def forward(self, idx, **kwargs):
+ return torch.tensor(
+ [
+ [0, 0, 0, 0, 10, 9, 0, 0, 0, 0],
+ [0, 0, 0, 0, 10, 9, 0, 0, 0, 0],
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 10],
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 10],
+ ],
+ dtype=torch.float,
+ )[None, ...] # (B, T, C)
+
+ draft_model = DraftModel()
+ target_model = TargetModel()
+
+ token = torch.tensor([-1])
+ input_pos = torch.tensor([0])
+ sample_kwargs = dict(top_k=None, top_p=0.0, temperature=0.0) # to make sampling consistent
+ output = generate.speculative_decoding(
+ draft_model, target_model, token, input_pos, input_pos, speculative_k=3, **sample_kwargs
+ )
+
+ # target model accepts only 2 out of 3 draft model's output, thus the output of the `speculative_decoding`
+ # is 3 tokens (2 accepted draft tokens + 1 sampled from adjusted distribution)
+ assert len(output) == 3
+ assert torch.equal(output, torch.tensor([4, 4, 9]))
+
+
+@pytest.mark.parametrize("max_seq_length", (10, 15, 20, 25))
+@pytest.mark.parametrize("speculative_k", (1, 2, 3))
+def test_generate(max_seq_length, speculative_k):
+ # create a prompt
+ T = 5
+ input_idx = torch.arange(0, T)
+ max_new_tokens = max_seq_length - T
+
+ # prepare models
+ draft_model = GPT(Config(vocab_size=16, block_size=64, n_layer=1, n_head=4, n_embd=8))
+ target_model = GPT(Config(vocab_size=16, block_size=128, n_layer=2, n_head=8, n_embd=16))
+ for model in (draft_model, target_model):
+ model.max_seq_length = max_seq_length
+ model.set_kv_cache(batch_size=1)
+
+ # generate tokens
+ out, acceptance_rate = generate.generate(
+ draft_model, target_model, input_idx, T + max_new_tokens, top_k=1, speculative_k=speculative_k
+ )
+
+ # validate
+ assert out.size(0) == T + max_new_tokens - 1, (out.size(0), T + max_new_tokens - 1)
+ assert 0.0 <= acceptance_rate <= 1.0
+
+
+@_RunIf(min_cuda_gpus=1) # speculative decoding makes sense only on a GPU
+def test_main(fake_checkpoint_dir, monkeypatch, tensor_like):
+ # prepare configs for draft and target models
+ draft_model_dir = fake_checkpoint_dir / "draft_model"
+ draft_model_dir.mkdir()
+ target_model_dir = fake_checkpoint_dir / "target_model"
+ target_model_dir.mkdir()
+
+ draft_model_config = dict(vocab_size=16, block_size=64, n_layer=1, n_head=4, n_embd=8)
+ target_model_config = dict(vocab_size=16, block_size=128, n_layer=2, n_head=8, n_embd=16)
+
+ (draft_model_dir / "model_config.yaml").write_text(yaml.dump(draft_model_config))
+ (target_model_dir / "model_config.yaml").write_text(yaml.dump(target_model_config))
+
+ # create empty files required for validation
+ for model_dir in (draft_model_dir, target_model_dir):
+ (model_dir / "tokenizer.json").touch()
+ (model_dir / "tokenizer_config.json").touch()
+ (model_dir / "lit_model.pth").touch()
+
+ # moke functions
+ module_mock = Mock()
+ module_mock.config.block_size = 128
+ load_mock = Mock()
+ load_mock.return_value = load_mock
+ monkeypatch.setattr(generate, "load_checkpoint", load_mock)
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value.encode.return_value = torch.tensor([1, 2, 3])
+ tokenizer_mock.return_value.decode.return_value = "foo bar baz"
+ monkeypatch.setattr(generate, "Tokenizer", tokenizer_mock)
+ generate_mock = Mock()
+ generated_tokens = torch.tensor([3, 2, 1])
+ acceptance_rate = 0.0
+ generate_mock.return_value = (generated_tokens, acceptance_rate)
+ monkeypatch.setattr(generate, "generate", generate_mock)
+
+ # do the sampling
+ num_samples = 2
+ out, err = StringIO(), StringIO()
+ with redirect_stdout(out), redirect_stderr(err):
+ generate.main(
+ draft_model_checkpoint_dir=draft_model_dir,
+ target_model_checkpoint_dir=target_model_dir,
+ temperature=2.0,
+ top_k=2,
+ top_p=0.9,
+ num_samples=num_samples,
+ )
+
+ assert len(tokenizer_mock.return_value.decode.mock_calls) == num_samples
+ assert torch.allclose(tokenizer_mock.return_value.decode.call_args[0][0], generate_mock.return_value[0])
+ assert (
+ generate_mock.mock_calls
+ == [
+ call(
+ ANY,
+ ANY,
+ tensor_like,
+ 53,
+ temperature=2.0,
+ top_k=2,
+ top_p=0.9,
+ stop_tokens=[tokenizer_mock.return_value.eos_id],
+ speculative_k=3,
+ )
+ ]
+ * num_samples
+ )
+ expected_output = "foo bar baz\nAcceptance rate: 0.00%\n" * num_samples
+ # Allow for the config to be printed before the expected repeated strings.
+ pattern = rf".*^{re.escape(expected_output.strip())}$.*"
+ assert re.match(pattern, out.getvalue().strip(), re.DOTALL | re.MULTILINE)
+
+ err_value = err.getvalue()
+ expected_parts = [
+ "'padded_vocab_size': 512",
+ "'n_layer': 2",
+ "'n_head': 4",
+ ]
+ assert all(part in err_value for part in expected_parts)
+
+
+def test_cli():
+ args = ["litgpt", "generate_speculatively", "-h"]
+ output = subprocess.check_output(args)
+ output = str(output.decode())
+ assert "Default generation option" in output
diff --git a/tests/test_lora.py b/tests/test_lora.py
new file mode 100644
index 0000000000000000000000000000000000000000..c7a31f9609e2ad8cc93421b70e414cb68e39c79b
--- /dev/null
+++ b/tests/test_lora.py
@@ -0,0 +1,957 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import os
+from contextlib import redirect_stdout
+from copy import deepcopy
+from io import StringIO
+from itertools import product
+from unittest import mock
+from unittest.mock import Mock
+
+import pytest
+import torch
+import yaml
+from lightning import Fabric
+from lightning.fabric.plugins.precision.bitsandbytes import _BITSANDBYTES_AVAILABLE, BitsandbytesPrecision
+from lightning.fabric.wrappers import _FabricOptimizer
+from torch._dynamo.backends import debugging
+from torch.nn import functional as F
+from transformers.models.gemma import GemmaConfig, GemmaForCausalLM
+from transformers.models.gemma2 import Gemma2Config, Gemma2ForCausalLM
+from transformers.models.gemma3 import Gemma3ForCausalLM, Gemma3TextConfig
+from transformers.models.mixtral import MixtralConfig, MixtralForCausalLM
+
+import litgpt.config as config_module
+import litgpt.finetune.lora as module
+from litgpt.args import EvalArgs, TrainArgs
+from litgpt.data import Alpaca
+from litgpt.lora import GPT as LoRAGPT
+from litgpt.lora import (
+ CausalSelfAttention,
+ Config,
+ LoRALinear,
+ LoRAQKVLinear,
+ lora_filter,
+ mark_only_lora_as_trainable,
+ merge_lora_weights,
+)
+from litgpt.lora import CausalSelfAttention as LoRACausalSelfAttention
+from litgpt.model import GPT as BaseGPT
+from litgpt.scripts.convert_hf_checkpoint import copy_weights_gemma_2, copy_weights_gemma_3, copy_weights_hf_llama
+from litgpt.scripts.convert_lit_checkpoint import qkv_reassemble as make_qkv_interleaved
+from litgpt.utils import _RunIf
+
+
+def test_lora_layer_replacement():
+ config = Config(n_layer=2, n_head=4, n_embd=8, block_size=8, vocab_size=8, lora_r=8, lora_alpha=8, lora_dropout=0.1)
+ model = LoRAGPT(config)
+
+ assert isinstance(model.transformer.h[0].attn, LoRACausalSelfAttention)
+ assert isinstance(model.transformer.h[1].attn, LoRACausalSelfAttention)
+ assert isinstance(model.lm_head, LoRALinear)
+ assert isinstance(model.transformer.h[0].mlp.proj, LoRALinear)
+
+
+def test_lora_merge():
+ config = Config(
+ n_layer=1,
+ n_head=2,
+ n_embd=8,
+ block_size=8,
+ vocab_size=8,
+ lora_r=8,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ lora_query=True,
+ lora_value=True,
+ lora_projection=True,
+ )
+ model = LoRAGPT(config)
+ model.train()
+ attn_proj = model.transformer.h[0].attn.proj
+
+ initial_weight = attn_proj.linear.weight.clone()
+ assert torch.equal(attn_proj.linear.weight, initial_weight)
+
+ # perform an update to the LoRA weights
+ mark_only_lora_as_trainable(model)
+ optimizer = torch.optim.SGD(model.parameters(), lr=1.0)
+ y = model(torch.randint(0, 8, size=(2, 4), dtype=torch.int64))
+ y.sum().backward()
+ optimizer.step()
+ optimizer.zero_grad()
+ # the weight remains unchanged (only lora A and B change)
+ assert torch.equal(attn_proj.linear.weight, initial_weight)
+
+ # calling merge() multiple times in a row should not merge multiple times
+ merge_lora_weights(model)
+ assert attn_proj.merged
+ weight_after = attn_proj.linear.weight.clone()
+ merge_lora_weights(model)
+ merge_lora_weights(model)
+ assert torch.equal(attn_proj.linear.weight, weight_after)
+
+ # check that `W_after = W_initial + (A x B)`
+ delta_w = attn_proj.get_lora_AB()
+ torch.testing.assert_close(weight_after, initial_weight + delta_w)
+
+
+def test_lora_mqa_gqa():
+ # MHA
+ config = Config(
+ n_layer=1,
+ n_head=4,
+ n_embd=8,
+ block_size=1,
+ vocab_size=1,
+ lora_r=2,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ lora_query=True,
+ lora_value=True,
+ )
+ assert config.n_query_groups == config.n_head
+ model = LoRAGPT(config)
+ attn = model.transformer.h[0].attn.qkv
+ for p in attn.linear.parameters():
+ torch.nn.init.zeros_(p)
+ torch.nn.init.ones_(attn.lora_B)
+ lora_ind = [0, 1, 2, 3, 4, 5, 6, 7, 16, 17, 18, 19, 20, 21, 22, 23]
+ assert attn.linear.weight.shape == (24, 8)
+ assert attn.lora_A.shape == (4, 8)
+ assert attn.lora_B.shape == (16, 2)
+ assert torch.equal(attn.lora_ind, torch.tensor(lora_ind))
+ x = torch.randint(0, 8, size=(3, 5, 16), dtype=torch.int64)
+ assert attn.zero_pad(x).shape == (3, 5, 24)
+ bsz, ctx_len, in_dim = 2, 30, 8
+ x_in = torch.randn(bsz, ctx_len, in_dim)
+ out = attn(x_in)
+ non_lora_ind = list(set(range(24)).difference(lora_ind))
+ assert torch.count_nonzero(out[:, :, lora_ind]) == bsz * ctx_len * len(lora_ind)
+ assert torch.count_nonzero(out[:, :, non_lora_ind]) == 0
+
+ # MQA
+ config.n_query_groups = 1
+ model = LoRAGPT(config)
+ attn = model.transformer.h[0].attn.qkv
+ for p in attn.linear.parameters():
+ torch.nn.init.zeros_(p)
+ torch.nn.init.ones_(attn.lora_B)
+ lora_ind = [0, 1, 2, 3, 4, 5, 6, 7, 10, 11]
+ assert attn.linear.weight.shape == (12, 8)
+ assert attn.lora_A.shape == (4, 8)
+ assert attn.lora_B.shape == (10, 2)
+ assert torch.equal(attn.lora_ind, torch.tensor(lora_ind))
+ x = torch.randint(0, 8, size=(3, 5, 10), dtype=torch.int64)
+ assert attn.zero_pad(x).shape == (3, 5, 12)
+ bsz, ctx_len, in_dim = 2, 30, 8
+ x_in = torch.randn(bsz, ctx_len, in_dim)
+ out = attn(x_in)
+ non_lora_ind = list(set(range(12)).difference(lora_ind))
+ assert torch.count_nonzero(out[:, :, lora_ind]) == bsz * ctx_len * len(lora_ind)
+ assert torch.count_nonzero(out[:, :, non_lora_ind]) == 0
+
+ # GQA
+ config.n_query_groups = 2
+ model = LoRAGPT(config)
+ attn = model.transformer.h[0].attn.qkv
+ for p in attn.linear.parameters():
+ torch.nn.init.zeros_(p)
+ torch.nn.init.ones_(attn.lora_B)
+ lora_ind = [0, 1, 2, 3, 4, 5, 6, 7, 12, 13, 14, 15]
+ assert attn.linear.weight.shape == (16, 8)
+ assert attn.lora_A.shape == (4, 8)
+ assert attn.lora_B.shape == (12, 2)
+ assert torch.equal(attn.lora_ind, torch.tensor(lora_ind))
+ x = torch.randint(0, 8, size=(3, 5, 12), dtype=torch.int64)
+ assert attn.zero_pad(x).shape == (3, 5, 16)
+ bsz, ctx_len, in_dim = 2, 30, 8
+ x_in = torch.randn(bsz, ctx_len, in_dim)
+ out = attn(x_in)
+ non_lora_ind = list(set(range(16)).difference(lora_ind))
+ assert torch.count_nonzero(out[:, :, lora_ind]) == bsz * ctx_len * len(lora_ind)
+ assert torch.count_nonzero(out[:, :, non_lora_ind]) == 0
+
+
+def test_lora_filter(tmp_path):
+ fabric = Fabric(devices=1)
+ model = LoRAGPT.from_name("pythia-14m", n_layer=3, lora_r=1, lora_query=True, lora_value=True)
+ save_path = tmp_path / "model.pth"
+ fabric.save(save_path, {"model": model}, filter={"model": lora_filter})
+ saved = torch.load(save_path)["model"]
+
+ expected = {
+ "transformer.h.1.attn.qkv.lora_B",
+ "transformer.h.2.attn.qkv.lora_B",
+ "transformer.h.2.attn.qkv.lora_A",
+ "transformer.h.1.attn.qkv.lora_A",
+ "transformer.h.0.attn.qkv.lora_A",
+ "transformer.h.0.attn.qkv.lora_B",
+ }
+ assert set(saved) == expected
+
+
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+def test_lora_script(tmp_path, fake_checkpoint_dir, monkeypatch, alpaca_path):
+ model_config = dict(block_size=128, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8)
+ (fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
+ monkeypatch.setattr(module, "load_checkpoint", Mock())
+ monkeypatch.setattr(module, "merge_lora", Mock())
+
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value = tokenizer_mock
+ tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
+ monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
+
+ out_dir = tmp_path / "out"
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["lora.py", str(fake_checkpoint_dir)]):
+ module.setup(
+ fake_checkpoint_dir,
+ data=Alpaca(
+ download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
+ ),
+ out_dir=out_dir,
+ precision="32-true",
+ train=TrainArgs(global_batch_size=1, save_interval=2, epochs=1, max_steps=6, micro_batch_size=1),
+ eval=EvalArgs(interval=2, max_iters=2, max_new_tokens=1),
+ )
+
+ out_dir_contents = set(os.listdir(out_dir))
+ checkpoint_dirs = {"step-000002", "step-000004", "step-000006", "final"}
+ assert checkpoint_dirs.issubset(out_dir_contents)
+ assert all((out_dir / p).is_dir() for p in checkpoint_dirs)
+ for checkpoint_dir in checkpoint_dirs:
+ assert {p.name for p in (out_dir / checkpoint_dir).iterdir()} == {
+ "lit_model.pth.lora",
+ "model_config.yaml",
+ "tokenizer_config.json",
+ "tokenizer.json",
+ "hyperparameters.yaml",
+ "prompt_style.yaml",
+ }
+ assert (out_dir / "logs" / "csv" / "version_0" / "metrics.csv").is_file()
+
+ logs = stdout.getvalue()
+ assert logs.count("(step)") == 6
+ assert logs.count("val loss") == 4 # 3 validations + 1 final validation
+ assert logs.count("Final evaluation") == 1
+ assert "of trainable parameters: 512" in logs
+
+
+def test_lora_init_when_linear_overridden():
+ class MyLinear(torch.nn.Linear):
+ def __init__(self, *args, **kwargs):
+ # this needs to be implemented to demonstrate the failure
+ super().__init__(*args, **kwargs)
+
+ original_linear = torch.nn.Linear
+ # Our bnb does this sort of monkey patching
+ torch.nn.Linear = MyLinear
+ layer = LoRAQKVLinear(1, 1, 1, 1, 1)
+ assert isinstance(layer.linear, original_linear)
+ torch.nn.Linear = original_linear
+
+
+@pytest.mark.parametrize(
+ ("apply_to", "target_layer_names", "mlp_class_name"),
+ (
+ ("lora_projection", "transformer.h.0.attn.proj", "GptNeoxMLP"),
+ ("lora_mlp", {"transformer.h.0.mlp.fc", "transformer.h.0.mlp.proj"}, "GptNeoxMLP"),
+ ("lora_head", "lm_head", "GptNeoxMLP"),
+ ("lora_projection", "transformer.h.0.attn.proj", "LLaMAMLP"),
+ ("lora_mlp", {"transformer.h.0.mlp.fc_1", "transformer.h.0.mlp.fc_2", "transformer.h.0.mlp.proj"}, "LLaMAMLP"),
+ ("lora_head", "lm_head", "LLaMAMLP"),
+ ),
+)
+def test_lora_linear_utilization(apply_to, target_layer_names, mlp_class_name):
+ config = Config(
+ n_layer=1,
+ n_head=4,
+ n_embd=8,
+ block_size=1,
+ vocab_size=1,
+ lora_r=2,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ mlp_class_name=mlp_class_name,
+ intermediate_size=8 * 3,
+ **{apply_to: True},
+ )
+ model = LoRAGPT(config)
+ state_dict = model.state_dict()
+
+ if isinstance(target_layer_names, str):
+ target_layer_names = {target_layer_names}
+ lora_sublayers = (".lora_A", ".lora_B")
+
+ # check that all the target layers have LoRA weights
+ for layer_name in target_layer_names:
+ for lora_sublayer in lora_sublayers:
+ assert layer_name + lora_sublayer in state_dict
+
+ # check that only target layers have LoRA weights
+ lora_params = [k for k in state_dict if k.endswith(lora_sublayers)]
+ lora_params = {k[:-7] for k in lora_params}
+ assert lora_params == target_layer_names
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ "apply_to", (None, "lora_query", "lora_key", "lora_value", "lora_projection", "lora_mlp", "lora_head")
+)
+def test_lora_gpt_apply_lora_forward_no_exception(apply_to):
+ config = Config(n_layer=1, n_head=4, n_embd=8, block_size=1, vocab_size=1, lora_r=2, lora_alpha=8, lora_dropout=0.1)
+ if apply_to:
+ setattr(config, apply_to, True)
+ input_ids = torch.tensor([[1]])
+ model = LoRAGPT(config)
+ model.eval()
+
+ model(input_ids)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("n_query_groups", (1, 2, 3, 6))
+@pytest.mark.parametrize("apply_to", product((False, True), repeat=3))
+def test_lora_gpt_query_groups_merge_and_forward_no_exception(n_query_groups, apply_to):
+ keys = ("lora_query", "lora_key", "lora_value")
+ values = apply_to
+ apply_to = dict(zip(keys, values))
+
+ config = Config(
+ n_layer=1,
+ n_head=6,
+ n_embd=12,
+ block_size=1,
+ vocab_size=1,
+ lora_r=2,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ n_query_groups=n_query_groups,
+ **apply_to,
+ )
+ model = LoRAGPT(config)
+ merge_lora_weights(model)
+ input_ids = torch.tensor([[1]])
+ model(input_ids)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("head_size", (1, 2, 4))
+@pytest.mark.parametrize("n_head", (1, 2, 3, 6, 12))
+@pytest.mark.parametrize(
+ "enable_lora",
+ [
+ (False, False, True),
+ (False, True, False),
+ (False, True, True),
+ (True, False, False),
+ (True, False, True),
+ (True, True, False),
+ (True, True, True),
+ ],
+)
+def test_lora_qkv_linear_compare_conv1d(head_size, n_head, enable_lora):
+ C = 12
+ layer = LoRAQKVLinear(
+ C, 3 * C, head_size=head_size, n_head=n_head, n_query_groups=n_head, r=2, enable_lora=enable_lora
+ )
+ x = torch.randn((1, 1, C))
+ a = F.linear(x, layer.lora_A).transpose(-2, -1) # after_A
+ b = layer.lora_B.data.unsqueeze(-1)
+
+ # original PyTorch conv1d function output
+ conv1d_pytorch = F.conv1d(a, b, groups=sum(layer.enable_lora))
+
+ # custom conv1d
+ conv1d_custom = layer.conv1d(a, b)
+
+ # custom conv1d forced to split, apply and concat tensors
+ layer.n_head = layer.n_query_groups + 1
+ conv1d_custom_forced = layer.conv1d(a, b)
+
+ assert torch.allclose(conv1d_pytorch, conv1d_custom)
+ assert torch.allclose(conv1d_pytorch, conv1d_custom_forced)
+
+
+@pytest.mark.parametrize(("rank", "expected_merged"), ((0, False), (1, True)))
+def test_lora_linear_weights_merged_status(rank, expected_merged):
+ layer = LoRALinear(10, 10, r=rank)
+ assert not layer.merged
+ layer.merge()
+ assert layer.merged == expected_merged
+
+
+@pytest.mark.parametrize(
+ ("rank", "enable_lora", "expected_merged"),
+ ((0, True, False), (1, True, True), (0, False, False), (1, False, False)),
+)
+def test_lora_qkv_linear_weights_merged_status(rank, enable_lora, expected_merged):
+ C = 10
+ layer = LoRAQKVLinear(C, 3 * C, head_size=5, n_head=2, n_query_groups=2, r=rank, enable_lora=enable_lora)
+ assert not layer.merged
+ layer.merge()
+ assert layer.merged == expected_merged
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_lora_merge_with_bitsandbytes():
+ if not _BITSANDBYTES_AVAILABLE:
+ pytest.skip("BNB not available")
+ import bitsandbytes as bnb
+
+ config = Config(
+ n_layer=1,
+ n_head=2,
+ n_embd=8,
+ block_size=8,
+ vocab_size=8,
+ lora_r=8,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ lora_query=True,
+ lora_value=True,
+ lora_projection=True,
+ )
+ fabric = Fabric(devices=1, plugins=BitsandbytesPrecision("nf4", dtype=torch.bfloat16, ignore_modules={"lm_head"}))
+ model = LoRAGPT(config)
+ mark_only_lora_as_trainable(model)
+
+ from bitsandbytes.optim import PagedAdamW
+
+ optimizer = PagedAdamW(model.parameters(), lr=1.0)
+ model, optimizer = fabric.setup(model, optimizer)
+
+ model.train()
+
+ attn_proj = model.transformer.h[0].attn.proj
+ initial_weight = attn_proj.linear.weight.clone()
+ initial_weight_kwargs = attn_proj.linear.weight.__dict__
+
+ # this was skipped
+ assert model.lm_head.linear.weight.dtype is torch.float32
+ assert attn_proj.linear.weight.dtype is torch.uint8
+
+ # perform an update to the LoRA weights
+ y = model(torch.randint(0, 8, size=(2, 4), dtype=torch.int64, device=fabric.device))
+ loss = y.sum()
+ fabric.backward(loss)
+ optimizer.step()
+ optimizer.zero_grad()
+ # the weight remains unchanged (only lora A and B change)
+ assert torch.equal(attn_proj.linear.weight, initial_weight)
+
+ # calling merge() multiple times in a row should not merge multiple times
+ merge_lora_weights(model)
+ assert attn_proj.merged
+ weight_after = attn_proj.linear.weight.clone()
+ merge_lora_weights(model)
+ merge_lora_weights(model)
+ assert torch.equal(attn_proj.linear.weight, weight_after)
+
+ # check that `W_after = W_initial + (A x B)`
+ delta_w = attn_proj.get_lora_AB()
+ # dequantize initial weight and sum with delta_w
+ initial_weight_data = (
+ bnb.functional.dequantize_4bit(initial_weight.data, initial_weight_kwargs["quant_state"]) + delta_w
+ )
+ # quantize again
+ initial_weight_data = bnb.nn.Params4bit(
+ initial_weight_data.to("cpu"), requires_grad=False, **initial_weight_kwargs
+ ).to(initial_weight.device)
+ torch.testing.assert_close(weight_after, initial_weight_data)
+
+
+def test_lora_gpt_init_weights():
+ config = Config(n_layer=1, n_head=6, n_embd=12, block_size=1, vocab_size=1, lora_r=2, lora_alpha=8, lora_head=True)
+ model = LoRAGPT(config)
+ param = model.lm_head.lora_B.data
+
+ assert (param == 0).all()
+ torch.nn.init.constant_(param, 1.23)
+ assert (param != 0).any()
+ model.apply(model._init_weights)
+ assert (param == 0).all()
+
+
+@pytest.mark.parametrize("name", [c["name"] for c in config_module.configs])
+def test_base_model_can_be_lora_loaded(name):
+ kwargs = {"n_layer": 2, "n_head": 8, "n_query_groups": 4, "n_embd": 16, "padded_vocab_size": 32}
+ base_model = BaseGPT.from_name(name, **kwargs)
+ base_model_state_dict = base_model.state_dict()
+ lora_model = LoRAGPT.from_name(
+ name,
+ **kwargs,
+ lora_r=1,
+ lora_query=True,
+ lora_key=True,
+ lora_value=True,
+ lora_projection=True,
+ lora_mlp=True,
+ lora_head=True,
+ )
+ keys = lora_model.load_state_dict(base_model_state_dict, strict=False)
+ assert not keys.unexpected_keys
+ for k in keys.missing_keys:
+ assert lora_filter(k, None)
+
+
+@_RunIf(dynamo=True)
+@torch.inference_mode()
+def test_lora_compile():
+ model = LoRAGPT.from_name(
+ "pythia-14m",
+ n_layer=3,
+ lora_r=8,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ lora_query=True,
+ lora_key=True,
+ lora_value=True,
+ lora_projection=True,
+ lora_mlp=True,
+ lora_head=True,
+ )
+ x = torch.randint(model.config.vocab_size, size=(2, model.config.block_size), dtype=torch.int64)
+
+ explanation = torch._dynamo.explain(model)(x)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+ model = LoRAGPT(model.config)
+ model.set_kv_cache(2)
+ input_pos = torch.arange(model.config.block_size)
+ explanation = torch._dynamo.explain(model)(x, input_pos)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+
+@torch.inference_mode()
+def test_against_hf_mixtral():
+ device = torch.device("cpu")
+ dtype = torch.float32
+ ours_config = Config.from_name(
+ "Mixtral-8x7B-Instruct-v0.1",
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_embd=32,
+ n_head=8,
+ n_query_groups=2,
+ intermediate_size=86,
+ n_expert=4,
+ lora_r=1,
+ lora_key=True,
+ lora_value=True,
+ )
+ T = 5
+ theirs_config = MixtralConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ num_local_experts=ours_config.n_expert,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = MixtralForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = LoRAGPT(ours_config).to(device)
+ keys = ours_model.load_state_dict(state_dict, strict=False)
+ assert not keys.unexpected_keys
+ for k in keys.missing_keys:
+ assert lora_filter(k, None)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304], [23, 345, 65, 123, 321]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["gemma-2b", "gemma-7b"])
+def test_against_hf_gemma(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+ T = 5
+ ours_config = Config.from_name(
+ model_name,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ head_size=4,
+ intermediate_size=86,
+ lora_r=1,
+ lora_query=True,
+ lora_key=True,
+ lora_value=True,
+ )
+ theirs_config = GemmaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = GemmaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = LoRAGPT(ours_config).to(device)
+ keys = ours_model.load_state_dict(state_dict, strict=False)
+ assert not keys.unexpected_keys
+ for k in keys.missing_keys:
+ assert lora_filter(k, None)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("gemma-2-9b", "gemma-2-27b"))
+def test_against_original_gemma_2(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Gemma2Config(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_logit_softcapping=ours_config.attention_logit_softcapping,
+ final_logit_softcapping=ours_config.final_logit_softcapping,
+ initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = Gemma2ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_gemma_2({}, state_dict, theirs_state_dict)
+ ours_model = LoRAGPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y, rtol=3e-5, atol=3e-5)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("gemma-3-1b-it", "gemma-3-4b-it", "gemma-3-12b-it", "gemma-3-27b-it"))
+def test_against_original_gemma_3(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Gemma3TextConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_logit_softcapping=ours_config.attention_logit_softcapping,
+ final_logit_softcapping=ours_config.final_logit_softcapping,
+ initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = Gemma3ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_gemma_3({}, state_dict, theirs_state_dict)
+ ours_model = LoRAGPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y, rtol=3e-5, atol=3e-5)
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_lora_bitsandbytes(monkeypatch, tmp_path, fake_checkpoint_dir, alpaca_path):
+ if not _BITSANDBYTES_AVAILABLE:
+ pytest.skip("BNB not available")
+
+ from bitsandbytes.optim import PagedAdamW
+
+ model_config = dict(
+ block_size=128,
+ n_layer=2,
+ n_embd=8,
+ n_head=4,
+ padded_vocab_size=8,
+ bias=True,
+ lora_r=8,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ lora_query=True,
+ lora_value=True,
+ lora_projection=True,
+ )
+ (fake_checkpoint_dir / "model_config.yaml").write_text(yaml.dump(model_config))
+
+ tokenizer_mock = Mock()
+ tokenizer_mock.return_value = tokenizer_mock
+ tokenizer_mock.encode = lambda *_, **__: torch.tensor([3, 2, 1])
+ monkeypatch.setattr(module, "Tokenizer", tokenizer_mock)
+
+ monkeypatch.setattr(module, "load_checkpoint", Mock())
+ monkeypatch.setattr(module, "merge_lora", Mock())
+ train_mock = Mock()
+ train_mock.return_value = {
+ "raw_tokens": 1000,
+ "raw_tokens_plus_prompt_template": 1100,
+ "raw_tokens_plus_prompt_template_and_padding": 1200,
+ }
+ monkeypatch.setattr(module, "fit", train_mock)
+
+ stdout = StringIO()
+ with redirect_stdout(stdout), mock.patch("sys.argv", ["full.py", str(fake_checkpoint_dir)]):
+ module.setup(
+ fake_checkpoint_dir,
+ data=Alpaca(
+ download_dir=alpaca_path.parent, file_name=alpaca_path.name, val_split_fraction=0.5, num_workers=0
+ ),
+ out_dir=tmp_path,
+ precision="16-true",
+ quantize="bnb.nf4-dq",
+ )
+
+ _, kwargs = train_mock.call_args
+ fabric = kwargs["fabric"]
+ model = kwargs["model"]
+ optimizer = kwargs["optimizer"]
+ model.transformer.wte = model.transformer.wte.half()
+ assert isinstance(fabric.strategy.precision, BitsandbytesPrecision)
+ assert isinstance(optimizer, _FabricOptimizer)
+ assert isinstance(optimizer._optimizer, PagedAdamW)
+
+ dtype_to_name = {"torch.uint8": set(), "torch.float16": set()}
+ for name, layer in model.named_parameters():
+ name = name[len("_forward_module.") :]
+ dtype_to_name[str(layer.dtype)].add(name)
+ assert dtype_to_name == {
+ "torch.uint8": {
+ "transformer.h.0.attn.qkv.linear.weight",
+ "transformer.h.0.attn.proj.linear.weight",
+ "transformer.h.0.mlp.fc.linear.weight",
+ "transformer.h.1.mlp.proj.linear.weight",
+ "transformer.h.0.mlp.proj.linear.weight",
+ "transformer.h.1.attn.qkv.linear.weight",
+ "lm_head.linear.weight",
+ "transformer.h.1.attn.proj.linear.weight",
+ "transformer.h.1.mlp.fc.linear.weight",
+ },
+ "torch.float16": {
+ "transformer.h.0.attn.qkv.lora_B",
+ "transformer.h.0.norm_2.weight",
+ "transformer.wte.weight",
+ "transformer.wte.norm.weight",
+ "transformer.wte.norm.bias",
+ "transformer.h.1.mlp.fc.linear.bias",
+ "transformer.ln_f.bias",
+ "transformer.h.1.attn.qkv.lora_B",
+ "transformer.h.1.attn.proj.linear.bias",
+ "transformer.h.1.norm_1.weight",
+ "transformer.h.1.attn.qkv.linear.bias",
+ "transformer.h.1.attn.qkv.lora_A",
+ "transformer.h.1.norm_1.bias",
+ "transformer.h.1.norm_2.bias",
+ "transformer.h.0.attn.proj.linear.bias",
+ "transformer.h.0.norm_1.bias",
+ "transformer.h.0.mlp.proj.linear.bias",
+ "transformer.h.0.mlp.fc.linear.bias",
+ "transformer.h.0.norm_2.bias",
+ "transformer.ln_f.weight",
+ "transformer.h.0.attn.qkv.lora_A",
+ "transformer.h.1.norm_2.weight",
+ "transformer.h.1.mlp.proj.linear.bias",
+ "transformer.h.0.norm_1.weight",
+ "transformer.h.0.attn.qkv.linear.bias",
+ },
+ }
+
+ assert {p.name for p in tmp_path.rglob("*.lora")} == {"lit_model.pth.lora"}
+ state_dict = torch.load(tmp_path / "final" / "lit_model.pth.lora")
+ assert len(state_dict) == 1
+ dtype_to_name = {"torch.float16": set()}
+ for name, layer in state_dict["model"].items():
+ dtype_to_name[str(layer.dtype)].add(name)
+ assert dtype_to_name == {
+ "torch.float16": {
+ "transformer.h.1.attn.qkv.lora_A",
+ "transformer.h.0.attn.qkv.lora_A",
+ "transformer.h.0.attn.qkv.lora_B",
+ "transformer.h.1.attn.qkv.lora_B",
+ }
+ }
+
+ logs = stdout.getvalue()
+ assert "of trainable parameters: 512" in logs
+ assert "of non-trainable parameters: 1,888" in logs
+
+
+@_RunIf(standalone=True, min_cuda_gpus=2)
+def test_lora_model_fsdp_init():
+ config = Config(
+ n_layer=1,
+ n_head=2,
+ n_embd=8,
+ block_size=8,
+ vocab_size=8,
+ lora_r=8,
+ lora_alpha=8,
+ lora_dropout=0.1,
+ lora_query=True,
+ lora_value=False,
+ lora_projection=True,
+ )
+ fabric = Fabric(devices=2, strategy="fsdp", precision="16-true")
+ fabric.launch()
+ with fabric.init_module(empty_init=True):
+ model = LoRAGPT(config)
+ x = torch.randint(0, config.padded_vocab_size, size=(2, config.block_size), dtype=torch.int64, device=fabric.device)
+ model = fabric.setup(model)
+ y = model(x)
+ assert y.shape == torch.Size([2, 8, 512])
+
+ # verify that all the parameters, buffers and other attributes aren't on `meta` device
+ for m in model.modules():
+ for p_name, parameter in m.named_parameters():
+ assert not parameter.is_meta, f"Parameter `{p_name}` isn't materialized."
+ for b_name, buffer in m._buffers.items():
+ assert not buffer.is_meta, f"Buffer `{b_name}` isn't materialized."
+ for attr_name, attr_value in m.__dict__.items():
+ if isinstance(attr_value, torch.Tensor):
+ assert not attr_value.is_meta, f"Attribute `{attr_name}` isn't materialized."
+
+
+def test_zero_pad_cpu_and_mocked_mps():
+ head_size = 64
+ n_head = 12
+ n_query_groups = 3
+ in_features = 128
+ kv_embed_dim = in_features // (n_head // n_query_groups)
+ out_features = in_features + 2 * kv_embed_dim
+ enable_lora = [True, False, True]
+ r = 4
+
+ model = LoRAQKVLinear(
+ in_features=in_features,
+ out_features=out_features,
+ head_size=head_size,
+ n_head=n_head,
+ n_query_groups=n_query_groups,
+ r=r,
+ enable_lora=enable_lora,
+ )
+
+ batch_size = 64
+ seq_len = 64
+ embed_dim = 160
+ x = torch.randn(batch_size, seq_len, embed_dim)
+
+ result_cpu = model.zero_pad(x)
+
+ with mock.patch("torch.backends.mps.is_available", return_value=True):
+ with mock.patch("torch.Tensor.device", new_callable=mock.PropertyMock) as mock_device:
+ mock_device.return_value = torch.device("mps")
+
+ result_mps = model.zero_pad(x)
+
+ assert result_cpu.shape == result_mps.shape, "Shape mismatch between CPU and MPS"
+ assert torch.allclose(result_cpu, result_mps), "Tensor values mismatch between CPU and MPS"
+
+
+def test_load_legacy_state_dict():
+ """Check that a legacy state dict (with an interleaved placement in QKV matrix) can be loaded into a model with CausalSelfAttention layers."""
+ config = Config(
+ n_embd=32, n_head=4, head_size=8, n_query_groups=4, bias=True, lora_r=8, lora_alpha=16, lora_dropout=0.1
+ )
+
+ attention_1 = CausalSelfAttention(config=config, block_idx=0)
+
+ # make weights to be as-like in a legacy checkpoint, with `attn.attn.weight` instead of `attn.qkv.weight`
+ # and make them interleaved
+ state_dict = deepcopy(attention_1.state_dict())
+ state_dict["attn.linear.weight"] = make_qkv_interleaved(state_dict.pop("qkv.linear.weight"), config)
+ state_dict["attn.linear.bias"] = make_qkv_interleaved(state_dict.pop("qkv.linear.bias"), config)
+
+ attention_2 = CausalSelfAttention(config=config, block_idx=0)
+ attention_2.load_state_dict(state_dict)
diff --git a/tests/test_merge_lora.py b/tests/test_merge_lora.py
new file mode 100644
index 0000000000000000000000000000000000000000..2c8458f02b5c6035f1aff054a6eee93f04a68572
--- /dev/null
+++ b/tests/test_merge_lora.py
@@ -0,0 +1,89 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import os
+import shutil
+from contextlib import redirect_stdout
+from io import StringIO
+from pathlib import Path
+from unittest import mock
+
+import pytest
+import torch
+import yaml
+
+from litgpt.lora import GPT as LoRAGPT
+from litgpt.lora import lora_filter
+from litgpt.model import GPT
+from litgpt.scripts.merge_lora import load_lora_metadata, merge_lora
+
+
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+@pytest.mark.parametrize(
+ ("pretrained_dtype", "lora_dtype"), [(None, None), (torch.float16, torch.float32), (torch.float16, torch.bfloat16)]
+)
+def test_merge_lora(tmp_path, fake_checkpoint_dir, pretrained_dtype, lora_dtype):
+ pretrained_checkpoint_dir = tmp_path / "pretrained"
+ lora_checkpoint_dir = tmp_path / "lora"
+ shutil.copytree(fake_checkpoint_dir, pretrained_checkpoint_dir)
+ shutil.copytree(fake_checkpoint_dir, lora_checkpoint_dir)
+ (lora_checkpoint_dir / "lit_model.pth").unlink() # should not already exist
+ shutil.rmtree(tmp_path / "checkpoints")
+
+ # Create a fake pretrained checkpoint
+ config = dict(block_size=128, padded_vocab_size=256, n_layer=3, n_head=8, n_embd=16)
+ with open(pretrained_checkpoint_dir / "model_config.yaml", "w", encoding="utf-8") as fp:
+ yaml.dump(config, fp)
+ base_model = GPT.from_name("pythia-14m", **config).to(dtype=pretrained_dtype)
+ state_dict = base_model.state_dict()
+ assert len(state_dict) == 40
+ torch.save(state_dict, pretrained_checkpoint_dir / "lit_model.pth")
+
+ # Create a fake LoRA checkpoint
+ lora_kwargs = dict(lora_r=8, lora_alpha=16, lora_dropout=0.05, lora_query=True, lora_value=True)
+ lora_model = LoRAGPT.from_name("pythia-14m", **config, **lora_kwargs).to(dtype=lora_dtype)
+ state_dict = {k: v for k, v in lora_model.state_dict().items() if lora_filter(k, v)}
+ assert len(state_dict) == 6
+ torch.save(state_dict, lora_checkpoint_dir / "lit_model.pth.lora")
+ hparams = dict(checkpoint_dir=str(pretrained_checkpoint_dir), **lora_kwargs)
+ with open(lora_checkpoint_dir / "hyperparameters.yaml", "w", encoding="utf-8") as file:
+ yaml.dump(hparams, file)
+ shutil.copyfile(pretrained_checkpoint_dir / "model_config.yaml", lora_checkpoint_dir / "model_config.yaml")
+
+ assert set(os.listdir(tmp_path)) == {"lora", "pretrained"}
+ merge_lora(lora_checkpoint_dir)
+ assert set(os.listdir(tmp_path)) == {"lora", "pretrained"}
+ assert set(os.listdir(lora_checkpoint_dir)) == {
+ "model_config.yaml",
+ "lit_model.pth",
+ "lit_model.pth.lora",
+ "tokenizer.json",
+ "tokenizer_config.json",
+ "hyperparameters.yaml",
+ }
+
+ # Assert that the merged weights can be loaded back into the base model
+ merged = torch.load(lora_checkpoint_dir / "lit_model.pth")
+ keys = base_model.load_state_dict(merged, strict=True)
+ assert not keys.missing_keys
+ assert not keys.unexpected_keys
+
+ # Attempt to merge again
+ stdout = StringIO()
+ with redirect_stdout(stdout):
+ merge_lora(lora_checkpoint_dir)
+ assert "LoRA weights have already been merged" in stdout.getvalue()
+
+
+def test_load_lora_metadata(fake_checkpoint_dir):
+ assert not (fake_checkpoint_dir / "hyperparameters.yaml").is_file()
+ with pytest.raises(FileNotFoundError, match="missing a `hyperparameters.yaml` file"):
+ load_lora_metadata(fake_checkpoint_dir)
+
+ hparams = dict(precision="bf16-mixed", checkpoint_dir="checkpoints/meta-llama/Llama-2-7b", lora_r=8, lora_alpha=16)
+ with open(fake_checkpoint_dir / "hyperparameters.yaml", "w", encoding="utf-8") as file:
+ yaml.dump(hparams, file)
+
+ lora_args, pretrained_dir, precision = load_lora_metadata(fake_checkpoint_dir)
+ assert lora_args == dict(lora_r=8, lora_alpha=16)
+ assert pretrained_dir == Path("checkpoints/meta-llama/Llama-2-7b")
+ assert precision == "bf16-mixed"
diff --git a/tests/test_model.py b/tests/test_model.py
new file mode 100644
index 0000000000000000000000000000000000000000..da931c72977ee6ef4f1255f1c92425298ff97e62
--- /dev/null
+++ b/tests/test_model.py
@@ -0,0 +1,1737 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+from copy import deepcopy
+from functools import partial
+from unittest import mock
+
+import pytest
+import torch
+from lightning import Fabric
+from lightning.fabric.utilities.imports import _IS_WINDOWS
+from lightning.fabric.utilities.init import _materialize_meta_tensors
+from torch._dynamo.backends import debugging
+from torch.backends.cuda import (
+ SDPAParams,
+ SDPBackend,
+ can_use_efficient_attention,
+ can_use_flash_attention,
+ flash_sdp_enabled,
+ math_sdp_enabled,
+ mem_efficient_sdp_enabled,
+)
+from transformers import AutoConfig, AutoModelForCausalLM
+from transformers.models.falcon import FalconConfig, FalconForCausalLM
+from transformers.models.gemma import GemmaConfig, GemmaForCausalLM
+from transformers.models.gemma2 import Gemma2Config, Gemma2ForCausalLM
+from transformers.models.gemma3 import Gemma3Config, Gemma3ForCausalLM, Gemma3ForConditionalGeneration, Gemma3TextConfig
+from transformers.models.gpt_neox import GPTNeoXConfig, GPTNeoXForCausalLM
+from transformers.models.llama import LlamaConfig, LlamaForCausalLM
+from transformers.models.mistral import MistralConfig, MistralForCausalLM
+from transformers.models.mixtral import MixtralConfig, MixtralForCausalLM
+from transformers.models.olmo import OlmoConfig, OlmoForCausalLM
+from transformers.models.olmo2 import Olmo2Config, Olmo2ForCausalLM
+from transformers.models.qwen2 import Qwen2Config, Qwen2ForCausalLM
+from transformers.models.qwen3 import Qwen3Config, Qwen3ForCausalLM
+from transformers.models.qwen3_moe import Qwen3MoeConfig, Qwen3MoeForCausalLM
+
+import litgpt.config as config_module
+from litgpt import GPT, Config
+from litgpt.model import CausalSelfAttention, batched_index_copy_
+from litgpt.scripts.convert_hf_checkpoint import (
+ copy_weights_falcon,
+ copy_weights_gemma_2,
+ copy_weights_gemma_3,
+ copy_weights_gpt_neox,
+ copy_weights_hf_llama,
+ copy_weights_olmo2,
+ copy_weights_phi,
+ copy_weights_qwen_2_5,
+ copy_weights_qwen_3,
+)
+from litgpt.scripts.convert_lit_checkpoint import qkv_reassemble as make_qkv_interleaved
+from litgpt.utils import _RunIf
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("rotary_pct", (0.25, 1))
+@pytest.mark.parametrize("batch_size", (1, 3))
+@pytest.mark.parametrize("n_embd", (16, 32))
+@pytest.mark.parametrize("parallel_residual", (False, True))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_gpt_neox_model(rotary_pct, batch_size, n_embd, parallel_residual, device, dtype) -> None:
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config(
+ block_size=64,
+ vocab_size=100,
+ n_layer=4,
+ n_head=8,
+ n_embd=n_embd,
+ rotary_percentage=rotary_pct,
+ parallel_residual=parallel_residual,
+ )
+ assert ours_config.padded_vocab_size == 512
+ theirs_config = GPTNeoXConfig(
+ hidden_act="gelu",
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ initializer_range=0.02,
+ intermediate_size=ours_config.intermediate_size,
+ layer_norm_eps=ours_config.norm_eps,
+ max_position_embeddings=ours_config.block_size,
+ rotary_emb_base=10000,
+ rotary_pct=ours_config.rotary_percentage,
+ vocab_size=ours_config.padded_vocab_size,
+ use_parallel_residual=ours_config.parallel_residual,
+ attn_implementation="eager",
+ )
+
+ state_dict = {}
+ theirs_model = GPTNeoXForCausalLM(theirs_config).to(device)
+ # load the hf initialization into our model
+ copy_weights_gpt_neox(ours_config, state_dict, theirs_model.state_dict())
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ token_sample = torch.randint(
+ 0, ours_config.padded_vocab_size, size=(batch_size, ours_config.block_size), dtype=torch.int64, device=device
+ )
+
+ theirs = theirs_model(token_sample)["logits"]
+ ours = ours_model(token_sample)
+ torch.testing.assert_close(ours, theirs, rtol=1e-2, atol=1e-2)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ "kwargs",
+ [
+ dict(name="falcon-180B", n_layer=2, n_head=8, n_query_groups=4, n_embd=32),
+ dict(name="falcon-40b", n_layer=2, n_head=8, n_query_groups=4, n_embd=32),
+ ],
+)
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_hf_falcon(kwargs, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(**kwargs)
+ theirs_config = FalconConfig(
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_kv_heads=ours_config.n_query_groups,
+ num_hidden_layers=ours_config.n_layer,
+ parallel_attn=ours_config.parallel_residual,
+ vocab_size=ours_config.padded_vocab_size,
+ bias=ours_config.bias,
+ new_decoder_architecture=True,
+ )
+
+ theirs_model = FalconForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_falcon(ours_config, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"]
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_open_llama_3b(device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name("open_llama_3b", n_layer=2, n_head=8, n_embd=32, intermediate_size=86)
+ T = 5
+ theirs_config = LlamaConfig(
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = LlamaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ "ours_kwargs",
+ [
+ {"name": "Llama-2-7b-hf"},
+ {"name": "CodeLlama-7b-hf"},
+ {"name": "Llama-2-70b-chat-hf", "n_query_groups": 1},
+ {"name": "Llama-3-8B"},
+ {"name": "Llama-3-8B-Instruct"},
+ {"name": "Llama-3.1-405B", "n_query_groups": 4},
+ {"name": "Llama-3.1-8B"},
+ {"name": "Llama-3.1-8B-Instruct"},
+ {"name": "Llama-3.2-1B"},
+ {"name": "Llama-3.2-3B"},
+ {"name": "Llama-3.3-70B-Instruct"},
+ {"name": "R1-Distill-Llama-8B"},
+ {"name": "R1-Distill-Llama-70B"},
+ ],
+)
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_hf_llama_2_and_3(ours_kwargs, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ padded_vocab_size=10000, n_layer=2, n_head=8, n_embd=32, intermediate_size=86, **ours_kwargs
+ )
+ T = 5
+ theirs_config = LlamaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = LlamaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("phi-1_5", "phi-2"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[pytest.mark.xfail(raises=AssertionError, strict=False), _RunIf(min_cuda_gpus=1)],
+ ),
+ ],
+)
+def test_against_hf_phi(model_name, device, dtype):
+ from transformers.models.phi.configuration_phi import PhiConfig
+ from transformers.models.phi.modeling_phi import PhiForCausalLM
+
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ model_name, padded_vocab_size=10000, n_layer=2, n_head=4, n_embd=256, rotary_percentage=0.5
+ )
+ T = 5
+ theirs_config = PhiConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ max_position_embeddings=ours_config.block_size,
+ hidden_size=ours_config.n_embd,
+ intermediate_size=ours_config.intermediate_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ partial_rotary_factor=ours_config.rotary_percentage,
+ torch_dtype=dtype,
+ )
+
+ theirs_model = PhiForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_phi(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ "model_name",
+ (
+ "Phi-3-mini-4k-instruct",
+ "Phi-3-mini-128k-instruct",
+ "Phi-3.5-mini-instruct",
+ "phi-4",
+ "Phi-4-mini-instruct",
+ "Phi-4-reasoning",
+ "Phi-4-mini-reasoning",
+ ),
+)
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[pytest.mark.xfail(raises=AssertionError, strict=False), _RunIf(min_cuda_gpus=1)],
+ ),
+ ],
+)
+def test_against_hf_phi_3(model_name, device, dtype):
+ from transformers.models.phi3.configuration_phi3 import Phi3Config
+ from transformers.models.phi3.modeling_phi3 import Phi3ForCausalLM
+
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_head=4,
+ n_query_groups=4,
+ n_embd=256,
+ )
+ T = 5
+ theirs_config = Phi3Config(
+ attention_bias=ours_config.bias,
+ head_dim=ours_config.head_size,
+ hidden_size=ours_config.n_embd,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ num_key_value_heads=ours_config.n_query_groups,
+ pad_token_id=ours_config.padded_vocab_size - 1,
+ partial_rotary_factor=ours_config.rotary_percentage,
+ rms_norm_eps=ours_config.norm_eps,
+ rope_theta=ours_config.rope_base,
+ torch_dtype=dtype,
+ vocab_size=ours_config.padded_vocab_size,
+ )
+
+ theirs_model = Phi3ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_phi(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+@pytest.mark.parametrize("model_name", ["Mistral-7B-Instruct-v0.1", "Mistral-7B-v0.1"])
+def test_against_mistral_hf_models(device, dtype, model_name):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_embd=32,
+ n_head=8,
+ n_query_groups=2,
+ intermediate_size=86,
+ )
+
+ theirs_config = MistralConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attn_implementation="eager",
+ sliding_window=ours_config.sliding_window_size,
+ )
+
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = MistralForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_mathstral_hf_models(device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ "Mathstral-7B-v0.1",
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_embd=32,
+ n_head=8,
+ n_query_groups=2,
+ intermediate_size=86,
+ )
+
+ T = 5
+ theirs_config = MistralConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ )
+
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = MistralForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("Mixtral-8x7B-Instruct-v0.1", "Mixtral-8x22B-Instruct-v0.1"))
+def test_against_hf_mixtral(model_name):
+ device = torch.device("cpu")
+ dtype = torch.float32
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_embd=32,
+ n_head=8,
+ n_query_groups=2,
+ intermediate_size=86,
+ n_expert=4,
+ )
+ T = 5
+ theirs_config = MixtralConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ num_local_experts=ours_config.n_expert,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = MixtralForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304], [23, 345, 65, 123, 321]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("OLMo-1B-hf", "OLMo-7B-hf"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_olmo(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_head=8,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ T = 5
+ theirs_config = OlmoConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ intermediate_size=ours_config.intermediate_size,
+ num_hidden_layers=ours_config.n_layer,
+ num_attention_heads=ours_config.n_head,
+ num_key_value_heads=ours_config.n_query_groups,
+ max_positional_embeddings=T,
+ attention_bias=ours_config.bias,
+ rope_theta=ours_config.rope_base,
+ tie_word_embeddings=(model_name == "OLMo-1B-hf"),
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = OlmoForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("OLMo-2-1124-7B", "OLMo-2-1124-13B"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_olmo2(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_head=8,
+ n_embd=32,
+ n_query_groups=2,
+ intermediate_size=86,
+ )
+ T = 5
+ theirs_config = Olmo2Config(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ intermediate_size=ours_config.intermediate_size,
+ num_hidden_layers=ours_config.n_layer,
+ num_attention_heads=ours_config.n_head,
+ num_key_value_heads=ours_config.n_query_groups,
+ max_positional_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ attention_bias=ours_config.bias,
+ rope_theta=ours_config.rope_base,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = Olmo2ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_olmo2(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_stablelm_zephyr_3b(device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 5
+ ours_config = Config.from_name("stablelm-zephyr-3b", n_layer=2, n_head=16, n_embd=32, intermediate_size=86)
+ theirs_config = AutoConfig.from_pretrained(
+ "stabilityai/stablelm-zephyr-3b",
+ trust_remote_code=True,
+ num_hidden_layers=ours_config.n_layer,
+ num_attention_heads=ours_config.n_head,
+ num_key_value_heads=ours_config.n_head,
+ hidden_size=ours_config.n_embd,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ torch_dtype=dtype,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = AutoModelForCausalLM.from_config(theirs_config, trust_remote_code=True).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["gemma-2b", "gemma-7b"])
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_gemma(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 5
+ ours_config = Config.from_name(model_name, n_layer=2, n_head=16, n_embd=32, intermediate_size=86)
+ theirs_config = GemmaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = GemmaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("gemma-2-9b", "gemma-2-27b"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_gemma_2(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Gemma2Config(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_logit_softcapping=ours_config.attention_logit_softcapping,
+ final_logit_softcapping=ours_config.final_logit_softcapping,
+ initializer_range=1.0, # to make the affect of attention_logit_softcapping more prominent
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ )
+
+ theirs_model = Gemma2ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_gemma_2({}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y, rtol=3e-5, atol=3e-5)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["gemma-3-1b-it", "gemma-3-4b-it", "gemma-3-12b-it", "gemma-3-27b-it"])
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_gemma_3(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+
+ theirs_config = Gemma3TextConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ rope_scaling={"factor": 8.0, "rope_type": "linear"},
+ rope_local_base_freq=ours_config.rope_local_base_freq,
+ )
+
+ theirs_model = Gemma3ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+
+ copy_weights_gemma_3({}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y, rtol=3e-5, atol=3e-5)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["gemma-3-4b-it", "gemma-3-12b-it", "gemma-3-27b-it"])
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_multimodal_gemma_3(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ sliding_window_size=T // 2,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+
+ theirs_config = Gemma3Config(
+ Gemma3TextConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ sliding_window=ours_config.sliding_window_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ tie_word_embeddings=True,
+ hidden_act="gelu_pytorch_tanh",
+ attn_implementation="eager",
+ query_pre_attn_scalar=ours_config.attention_scores_scalar,
+ rope_scaling={"factor": 8.0, "rope_type": "linear"},
+ rope_local_base_freq=ours_config.rope_local_base_freq,
+ )
+ )
+
+ theirs_model = Gemma3ForConditionalGeneration(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+
+ state_dict = {}
+
+ copy_weights_gemma_3({}, state_dict, theirs_state_dict, config=ours_config)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y, rtol=3e-5, atol=3e-5)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ "model_name", ["Qwen2.5-1.5B", "Qwen2.5-Coder-1.5B", "Qwen2.5-Math-1.5B", "QwQ-32B-Preview", "QwQ-32B"]
+)
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_qwen_2_5(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Qwen2Config(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.attn_bias,
+ tie_word_embeddings=True,
+ )
+
+ theirs_model = Qwen2ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ # Gemma weights are shipped without `lm_head.weight`
+ theirs_state_dict.pop("lm_head.weight")
+ state_dict = {}
+ copy_weights_qwen_2_5(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["Qwen3-0.6B", "Qwen3-8B", "Qwen3-4B-Base", "Qwen3-14B-Base", "Qwen3-32B"])
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_qwen_3(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ )
+ theirs_config = Qwen3Config(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ tie_word_embeddings=False,
+ )
+
+ theirs_model = Qwen3ForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_qwen_3(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ["Qwen3-30B-A3B", "Qwen3-235B-A22B"])
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_qwen_3_moe(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ T = 20
+ ours_config = Config.from_name(
+ model_name,
+ block_size=T,
+ n_layer=2,
+ n_head=16,
+ n_embd=32,
+ intermediate_size=86,
+ moe_intermediate_size=20,
+ n_expert=4,
+ n_expert_per_token=2,
+ )
+ theirs_config = Qwen3MoeConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ head_dim=ours_config.head_size,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ moe_intermediate_size=ours_config.moe_intermediate_size,
+ max_position_embeddings=ours_config.block_size,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ tie_word_embeddings=False,
+ num_experts=ours_config.n_expert,
+ num_experts_per_tok=ours_config.n_expert_per_token,
+ norm_topk_prob=True,
+ )
+
+ theirs_model = Qwen3MoeForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_qwen_3(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.randint(low=0, high=ours_config.padded_vocab_size, size=(T,), device=device).unsqueeze(0)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("salamandra-2b", "salamandra-7b"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_salamandra(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_head=8,
+ n_embd=32,
+ n_query_groups=2,
+ intermediate_size=86,
+ )
+ T = 5
+ theirs_config = LlamaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = LlamaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("SmolLM2-135M", "SmolLM2-360M", "SmolLM2-1.7B"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_original_smollm2(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_head=8,
+ n_embd=32,
+ n_query_groups=2,
+ intermediate_size=86,
+ )
+ T = 5
+ theirs_config = LlamaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = LlamaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize("model_name", ("Falcon3-1B-Base", "Falcon3-7B-Base"))
+@pytest.mark.parametrize(
+ ("device", "dtype"),
+ [
+ (torch.device("cpu"), torch.float32),
+ pytest.param(
+ torch.device("cuda"),
+ torch.float16,
+ marks=[
+ # the reference does softmax upscaled to fp32 during attention. additionally, the final layernorm input
+ # is slightly different
+ pytest.mark.xfail(raises=AssertionError, strict=False),
+ _RunIf(min_cuda_gpus=1),
+ ],
+ ),
+ ],
+)
+def test_against_hf_falcon3(model_name, device, dtype):
+ torch.set_default_dtype(dtype)
+
+ ours_config = Config.from_name(
+ model_name,
+ padded_vocab_size=10000,
+ n_layer=2,
+ n_head=8,
+ n_embd=32,
+ n_query_groups=2,
+ intermediate_size=86,
+ )
+ T = 5
+ theirs_config = LlamaConfig(
+ vocab_size=ours_config.padded_vocab_size,
+ hidden_size=ours_config.n_embd,
+ num_attention_heads=ours_config.n_head,
+ num_hidden_layers=ours_config.n_layer,
+ intermediate_size=ours_config.intermediate_size,
+ max_position_embeddings=T,
+ rms_norm_eps=ours_config.norm_eps,
+ num_key_value_heads=ours_config.n_query_groups,
+ rope_theta=ours_config.rope_base,
+ attention_bias=ours_config.bias,
+ )
+ assert ours_config.intermediate_size == theirs_config.intermediate_size
+
+ theirs_model = LlamaForCausalLM(theirs_config).to(device)
+ theirs_state_dict = theirs_model.state_dict()
+ state_dict = {}
+ copy_weights_hf_llama(ours_config, {}, state_dict, theirs_state_dict)
+ ours_model = GPT(ours_config).to(device)
+ ours_model.load_state_dict(state_dict)
+
+ # test end to end
+ x = torch.tensor([[9856, 23, 491, 1536, 304]], dtype=torch.int32, device=device)
+ assert x.size(1) == T
+ ours_y = ours_model(x)
+ theirs_y = theirs_model(x)["logits"].to(dtype) # HF converts logits to float
+ torch.testing.assert_close(ours_y, theirs_y)
+
+
+@_RunIf(dynamo=True)
+@torch.inference_mode()
+def test_model_compile():
+ model = GPT.from_name("pythia-14m", n_layer=3)
+ x = torch.randint(model.config.vocab_size, size=(2, model.config.block_size), dtype=torch.int64)
+
+ explanation = torch._dynamo.explain(model)(x)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+ model = GPT(model.config)
+ model.set_kv_cache(2)
+ input_pos = torch.arange(model.config.block_size)
+ explanation = torch._dynamo.explain(model)(x, input_pos)
+ assert isinstance(explanation, debugging.ExplainOutput)
+ assert explanation.graph_count == 1
+ assert explanation.graph_break_count == 0
+
+
+@torch.inference_mode()
+@pytest.mark.parametrize(
+ "max_seq_length", (25, pytest.param(23, marks=pytest.mark.xfail(raises=IndexError, strict=True)))
+)
+@pytest.mark.flaky(reruns=5)
+def test_kv_cache(max_seq_length):
+ config = Config(block_size=25, padded_vocab_size=5, n_layer=2, n_head=2, n_embd=8)
+ model = GPT(config)
+ idx = torch.randint(0, model.config.padded_vocab_size, (1, 5))
+ max_new_tokens = 20
+ model.max_seq_length = max_seq_length
+ model.set_kv_cache(1)
+
+ def generate(logits):
+ logits = logits[:, -1:]
+ probs = torch.nn.functional.softmax(logits, dim=-1)
+ return torch.argmax(probs).unsqueeze(0).unsqueeze(0)
+
+ x_no_cache = idx
+ x_cache = idx
+ input_pos = torch.arange(0, 5)
+ for _ in range(max_new_tokens):
+ logits_no_cache = model(x_no_cache[:, -max_seq_length:])
+ out_no_cache = generate(logits_no_cache)
+
+ logits_cache = model(x_cache, input_pos)
+ out_cache = generate(logits_cache)
+
+ torch.testing.assert_close(out_no_cache, out_cache, rtol=0, atol=0)
+
+ x_no_cache = torch.cat((x_no_cache, out_no_cache), dim=1)
+ x_cache = out_cache
+ input_pos = input_pos[-1:] + 1
+
+
+@torch.inference_mode()
+def test_model_kv_cache_amp():
+ config = Config.from_name("pythia-14m", n_layer=2)
+ model = GPT(config)
+ encoded = torch.arange(45)
+ model.set_kv_cache(batch_size=1)
+ with torch.autocast("cpu", torch.bfloat16):
+ output = model(encoded.unsqueeze(0), encoded)
+ assert output.dtype is torch.bfloat16
+
+
+# https://github.com/pytorch/pytorch/blob/ad3572a5d/torch/testing/_internal/common_cuda.py#L31-L34
+SUPPORTS_FLASH_ATTENTION = (
+ torch.cuda.is_available() and torch.cuda.get_device_capability() >= (8, 0) and not _IS_WINDOWS
+)
+
+
+@_RunIf(min_cuda_gpus=1)
+@pytest.mark.parametrize("config", deepcopy(config_module.configs), ids=[c["name"] for c in config_module.configs])
+@torch.inference_mode()
+def test_sdpa_choice(config):
+ if config["name"].startswith("Gemma-2-"):
+ pytest.skip("Gemma 2 doesn't support SDPA")
+
+ torch.set_default_dtype(torch.float16)
+
+ def assert_sdpa_backend(original_fn, q, k, v, mask):
+ # SDPAParams gained an additional argument in PyTorch 2.5
+ args = []
+ if hasattr(SDPAParams, "enable_gqa"):
+ args.append(False)
+ params = SDPAParams(q, k, v, mask, 0.0, True, *args)
+ if expected is SDPBackend.FLASH_ATTENTION:
+ assert flash_sdp_enabled(), "flash_sdp_enabled() is False"
+ if config.sliding_window_size is None:
+ assert can_use_flash_attention(params, True), "can_use_flash_attention(params, True) is False"
+ elif expected is SDPBackend.EFFICIENT_ATTENTION:
+ assert mem_efficient_sdp_enabled(), "mem_efficient_sdp_enabled() is False"
+ assert can_use_efficient_attention(params, True), "can_use_efficient_attention(params, True) is False"
+ elif expected is SDPBackend.MATH:
+ assert math_sdp_enabled(), "math_sdp_enabled() is False"
+ else:
+ raise NotImplementedError
+ return original_fn(q, k, v, mask)
+
+ config["n_layer"] = 1
+ config = config_module.Config(**config)
+
+ try:
+ with torch.device("cuda"):
+ model = GPT(config)
+ x = torch.randint(0, 10, (2, 16), dtype=torch.int32)
+ except torch.cuda.OutOfMemoryError:
+ # best effort, if the GPU can load it
+ pytest.xfail()
+
+ for h in model.transformer.h:
+ h.attn.scaled_dot_product_attention = partial(assert_sdpa_backend, h.attn.scaled_dot_product_attention)
+
+ if SUPPORTS_FLASH_ATTENTION:
+ expected = SDPBackend.FLASH_ATTENTION
+ with torch.backends.cuda.sdp_kernel(enable_mem_efficient=False):
+ model(x)
+
+ expected = SDPBackend.EFFICIENT_ATTENTION if config.head_size % 8 == 0 else SDPBackend.MATH
+ with torch.backends.cuda.sdp_kernel(enable_flash=False):
+ model(x)
+
+
+@_RunIf(min_cuda_gpus=1)
+@pytest.mark.parametrize("config", deepcopy(config_module.configs), ids=[c["name"] for c in config_module.configs])
+@torch.inference_mode()
+def test_sdpa_choice_kv_cache(config):
+ torch.set_default_dtype(torch.float16)
+
+ def assert_sdpa_backend(original_fn, q, k, v, mask):
+ # SDPAParams gained an additional argument in PyTorch 2.5
+ args = []
+ if hasattr(SDPAParams, "enable_gqa"):
+ args.append(False)
+ params = SDPAParams(q, k, v, mask, 0.0, True, *args)
+ if expected is SDPBackend.FLASH_ATTENTION:
+ assert flash_sdp_enabled()
+ assert can_use_flash_attention(params, True)
+ elif expected is SDPBackend.EFFICIENT_ATTENTION:
+ assert mem_efficient_sdp_enabled()
+ assert can_use_efficient_attention(params, True)
+ elif expected is SDPBackend.MATH:
+ assert math_sdp_enabled()
+ else:
+ raise NotImplementedError
+ return original_fn(q, k, v, mask)
+
+ config["n_layer"] = 1
+ config = config_module.Config(**config)
+
+ try:
+ with torch.device("cuda"):
+ model = GPT(config)
+ model.max_seq_length = 1
+ model.set_kv_cache(2)
+ x = torch.randint(0, 10, (2, 1), dtype=torch.int32)
+ input_pos = torch.tensor([0], dtype=torch.long)
+ except torch.cuda.OutOfMemoryError:
+ # best effort, if the GPU can load it
+ pytest.xfail()
+
+ for h in model.transformer.h:
+ h.attn.scaled_dot_product_attention = partial(assert_sdpa_backend, h.attn.scaled_dot_product_attention)
+
+ if SUPPORTS_FLASH_ATTENTION:
+ # flash attention does not support an attention mask
+ expected = SDPBackend.MATH
+ with torch.backends.cuda.sdp_kernel(enable_mem_efficient=False):
+ model(x, input_pos)
+
+ expected = (
+ SDPBackend.EFFICIENT_ATTENTION if config.head_size % 8 == 0 and config.n_query_groups != 1 else SDPBackend.MATH
+ )
+ with torch.backends.cuda.sdp_kernel(enable_flash=False):
+ model(x, input_pos)
+
+
+@_RunIf(min_cuda_gpus=2, standalone=True)
+def test_rope_init_under_fsdp():
+ """Check that the rope cache is properly initialized"""
+ fabric = Fabric(devices=2, strategy="fsdp", accelerator="cuda")
+ fabric.launch()
+
+ with fabric.init_module(empty_init=True):
+ model = GPT.from_name("pythia-14m", n_layer=1)
+ assert model.cos.device.type == "meta"
+ assert model.sin.device.type == "meta"
+
+ model = fabric.setup(model)
+ assert model.cos.device.type == "cuda"
+ assert model.sin.device.type == "cuda"
+ cos, sin = model.rope_cache(device=fabric.device)
+ torch.testing.assert_close(model.cos, cos)
+ torch.testing.assert_close(model.sin, sin)
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_reset_parameters_device():
+ with torch.device("meta"):
+ model = GPT.from_name("pythia-14m", n_layer=1)
+ _materialize_meta_tensors(model, torch.device("cuda"))
+ model.reset_parameters()
+ assert model.cos.device.type == "cuda"
+
+
+def test_batched_index_copy_modes():
+ # Mock the torch.backends.mps.is_available() function to simulate MPS availability
+ with mock.patch("torch.backends.mps.is_available", return_value=True):
+ # Mock the device type to simulate the "mps" device
+ with mock.patch("torch.Tensor.device", new_callable=mock.PropertyMock) as mock_device:
+ mock_device.return_value = torch.device("mps")
+
+ # Test case when idx.dim() == 1
+ t_original_1 = torch.randn(3, 5)
+ dim_1 = 0
+ idx_1 = torch.tensor([0, 2])
+ val_1 = torch.randn(2, 5)
+
+ t1_cpu = t_original_1.clone()
+ t1_mps = t_original_1.clone()
+
+ # Perform the index copy on CPU
+ batched_index_copy_(t1_cpu, dim_1, idx_1, val_1)
+
+ # Simulate the MPS index copy
+ idx_1_mps = idx_1
+ val_1_mps = val_1
+ batched_index_copy_(t1_mps, dim_1, idx_1_mps, val_1_mps)
+ assert torch.allclose(t1_cpu, t1_mps), "Mismatch with idx.dim() == 1 on mocked MPS"
+
+ # Test case when idx.dim() == 2
+ t_original_2 = torch.randn(2, 5, 4)
+ dim_2 = 1
+ idx_2 = torch.tensor([[0, 2], [1, 3]])
+ val_2 = torch.randn(2, 2, 4)
+
+ t2_cpu = t_original_2.clone()
+ t2_mps = t_original_2.clone()
+
+ # Perform the index copy on CPU
+ batched_index_copy_(t2_cpu, dim_2, idx_2, val_2)
+
+ # Simulate the MPS index copy
+ idx_2_mps = idx_2
+ val_2_mps = val_2
+ batched_index_copy_(t2_mps, dim_2, idx_2_mps, val_2_mps)
+ assert torch.allclose(t2_cpu, t2_mps), "Mismatch with idx.dim() == 2 on mocked MPS"
+
+ # Additional test with negative dimension
+ t_original_3 = torch.randn(2, 3, 4)
+ dim_3 = -2
+ idx_3 = torch.tensor([[0, 1], [1, 2]])
+ val_3 = torch.randn(2, 2, 4)
+
+ t3_cpu = t_original_3.clone()
+ t3_mps = t_original_3.clone()
+
+ # Perform the index copy on CPU
+ batched_index_copy_(t3_cpu, dim_3, idx_3, val_3)
+
+ # Simulate the MPS index copy
+ idx_3_mps = idx_3
+ val_3_mps = val_3
+ batched_index_copy_(t3_mps, dim_3, idx_3_mps, val_3_mps)
+ assert torch.allclose(t3_cpu, t3_mps), "Mismatch with negative dimension on mocked MPS"
+
+
+def test_load_legacy_state_dict():
+ """Check that a legacy state dict (with an interleaved placement in QKV matrix) can be loaded into a model with CausalSelfAttention layers."""
+ config = Config(
+ n_embd=32,
+ n_head=4,
+ head_size=8,
+ n_query_groups=4,
+ bias=True,
+ )
+
+ attention_1 = CausalSelfAttention(config=config, block_idx=0)
+
+ # make weights to be as-like in a legacy checkpoint, with `attn.attn.weight` instead of `attn.qkv.weight`
+ # and make them interleaved
+ state_dict = deepcopy(attention_1.state_dict())
+ state_dict["attn.weight"] = make_qkv_interleaved(state_dict.pop("qkv.weight"), config)
+ state_dict["attn.bias"] = make_qkv_interleaved(state_dict.pop("qkv.bias"), config)
+
+ attention_2 = CausalSelfAttention(config=config, block_idx=0)
+ attention_2.load_state_dict(state_dict)
+
+
+@pytest.mark.parametrize("n_query_groups", (1, 2, 4, 8))
+@torch.inference_mode()
+def test_kv_cache_buffer_shape(n_query_groups):
+ batch_size = 3
+ max_seq_length = 23
+ config = Config(
+ block_size=25,
+ padded_vocab_size=5,
+ n_layer=2,
+ n_head=8,
+ n_embd=16,
+ n_query_groups=n_query_groups,
+ )
+ model = GPT(config)
+ model.max_seq_length = max_seq_length
+ model.set_kv_cache(batch_size)
+ required_shape = (batch_size, n_query_groups, max_seq_length, config.head_size)
+ for block in model.transformer.h:
+ kv_cache = block.attn.kv_cache
+ assert kv_cache is not None
+ assert kv_cache.k.shape == required_shape
+ assert kv_cache.v.shape == required_shape
+
+
+@pytest.mark.parametrize(("rotary_percentage", "final_dim"), ((0.75, 3), (0.25, 2)))
+@torch.inference_mode()
+def test_rope_cos_sin_shapes_if_rope_n_elem_is_odd(rotary_percentage, final_dim):
+ batch_size = 3
+ config = Config(
+ block_size=25,
+ padded_vocab_size=5,
+ n_layer=2,
+ n_head=4,
+ n_embd=16,
+ rotary_percentage=rotary_percentage,
+ )
+ model = GPT(config)
+ required_shape = (config.block_size, final_dim)
+ assert model.cos.shape == required_shape
+ assert model.sin.shape == required_shape
+
+
+def test_forward_with_without_input_pos_maxp1():
+ batch_size = 3
+ config = Config(
+ block_size=25,
+ padded_vocab_size=5,
+ n_layer=2,
+ n_head=8,
+ n_embd=16,
+ )
+ model = GPT(config)
+ model.set_kv_cache(batch_size)
+ idx = torch.randint(0, config.padded_vocab_size, (1, 10))
+ input_pos = torch.arange(1, 11)
+ input_pos_maxp1 = 11
+ logits_with_maxp1 = model(idx, input_pos, input_pos_maxp1=input_pos_maxp1)
+ logits_no_maxp1 = model(idx, input_pos)
+ torch.testing.assert_close(logits_with_maxp1, logits_no_maxp1)
diff --git a/tests/test_pretrain.py b/tests/test_pretrain.py
new file mode 100644
index 0000000000000000000000000000000000000000..2461fb1836ff7d45ff0cef9a0b1b4f1a0d1a10e4
--- /dev/null
+++ b/tests/test_pretrain.py
@@ -0,0 +1,131 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import os
+from contextlib import redirect_stdout
+from io import StringIO
+from unittest import mock
+from unittest.mock import ANY, Mock
+
+import pytest
+import torch
+from lightning.fabric.strategies import FSDPStrategy, SingleDeviceStrategy
+from torch.utils.data import DataLoader
+
+from litgpt import pretrain
+from litgpt.args import EvalArgs, TrainArgs
+from litgpt.config import Config
+from litgpt.pretrain import initialize_weights
+from litgpt.utils import _RunIf
+
+
+@_RunIf(min_cuda_gpus=1, standalone=True)
+@mock.patch("litgpt.pretrain.save_hyperparameters")
+def test_optimizer_args(_, tmp_path):
+ model_config = Config(block_size=2, n_layer=2, n_embd=4, n_head=2, padded_vocab_size=8)
+
+ dataset = torch.tensor([[0, 1, 2], [3, 4, 5], [0, 1, 2]])
+ dataloader = DataLoader(dataset)
+ pretrain.get_dataloaders = Mock(return_value=(dataloader, dataloader))
+
+ for i in ("AdamW", "SGD", "RMSprop"):
+ pretrain.setup(
+ "pythia-14m",
+ devices=1,
+ optimizer="RMSprop",
+ model_config=model_config,
+ out_dir=tmp_path,
+ train=TrainArgs(global_batch_size=2, max_tokens=16, save_interval=1, micro_batch_size=1, max_norm=1.0),
+ eval=EvalArgs(interval=1, max_iters=1, final_validation=False),
+ )
+
+
+@_RunIf(min_cuda_gpus=2, standalone=True)
+# If we were to use `save_hyperparameters()`, we would have to patch `sys.argv` or otherwise
+# the CLI would capture pytest args, but unfortunately patching would mess with subprocess
+# launching, so we need to mock `save_hyperparameters()`
+@mock.patch("litgpt.pretrain.save_hyperparameters")
+# todo: it expects exactly 2 GPUs and has strange failing for validated 4 # GPUs, so we temporarily mark it as xfail
+@pytest.mark.xfail(condition=torch.cuda.device_count() != 2, reason="This test is flaky, expects exactly 2 GPUs")
+def test_pretrain(_, tmp_path):
+ model_config = Config(block_size=2, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8)
+
+ dataset = torch.tensor([[0, 1, 2], [3, 4, 5], [0, 1, 2]])
+ dataloader = DataLoader(dataset)
+ pretrain.get_dataloaders = Mock(return_value=(dataloader, dataloader))
+
+ out_dir = tmp_path / "out"
+ stdout = StringIO()
+ with redirect_stdout(stdout):
+ pretrain.setup(
+ "pythia-14m",
+ devices=2,
+ model_config=model_config,
+ out_dir=out_dir,
+ train=TrainArgs(global_batch_size=2, max_tokens=16, save_interval=1, micro_batch_size=1, max_norm=1.0),
+ eval=EvalArgs(interval=1, max_iters=1, final_validation=False),
+ )
+
+ if torch.distributed.get_rank() == 0:
+ # tmp_path is not the same across all ranks, run assert only on rank 0
+ out_dir_contents = set(os.listdir(out_dir))
+ checkpoint_dirs = {"step-00000001", "step-00000002", "step-00000003", "step-00000004", "final"}
+ assert checkpoint_dirs.issubset(out_dir_contents)
+ assert all((out_dir / p).is_dir() for p in checkpoint_dirs)
+ for checkpoint_dir in checkpoint_dirs:
+ # the `tokenizer_dir` is None by default, so only 'lit_model.pth' shows here
+ assert set(os.listdir(out_dir / checkpoint_dir)) == {"lit_model.pth", "model_config.yaml"}
+
+ assert (out_dir / "logs" / "tensorboard" / "version_0").is_dir()
+
+ # logs only appear on rank 0
+ logs = stdout.getvalue()
+ assert logs.count("(step)") == 4
+ assert logs.count("val loss") == 4
+ assert "Total parameters: 1,888" in logs
+
+ torch.distributed.barrier()
+
+
+@_RunIf(min_cuda_gpus=2, standalone=True)
+@mock.patch("litgpt.pretrain.L.Fabric.load_raw")
+# See comment in `test_pretrain` why we need to mock `save_hyperparameters()`
+@mock.patch("litgpt.pretrain.save_hyperparameters")
+def test_initial_checkpoint_dir(_, load_mock, tmp_path):
+ model_config = Config(block_size=2, n_layer=2, n_embd=8, n_head=4, padded_vocab_size=8)
+
+ dataset = torch.tensor([[0, 1, 2], [3, 4, 5], [0, 1, 2]])
+ dataloader = DataLoader(dataset)
+ pretrain.get_dataloaders = Mock(return_value=(dataloader, dataloader))
+ pretrain.fit = Mock()
+
+ pretrain.setup(
+ "pythia-14m",
+ initial_checkpoint_dir=tmp_path,
+ devices=torch.cuda.device_count(),
+ model_config=model_config,
+ out_dir=tmp_path,
+ )
+
+ load_mock.assert_called_once_with(tmp_path / "lit_model.pth", ANY)
+
+
+@pytest.mark.parametrize(("strategy", "expected"), [(SingleDeviceStrategy, True), (FSDPStrategy, False)])
+def test_initialize_weights(strategy, expected):
+ fabric_mock = Mock()
+ fabric_mock.strategy = Mock(spec=strategy)
+
+ class Child(torch.nn.Module):
+ pass
+
+ class Parent(torch.nn.Module):
+ def __init__(self):
+ super().__init__()
+ self.child = Child()
+
+ model = Parent()
+ model.reset_parameters = Mock()
+ model.child.reset_parameters = Mock()
+
+ initialize_weights(fabric_mock, model, n_layer=2, n_embd=8)
+ assert model.reset_parameters.call_count == int(expected)
+ assert model.child.reset_parameters.call_count == int(expected)
diff --git a/tests/test_prompts.py b/tests/test_prompts.py
new file mode 100644
index 0000000000000000000000000000000000000000..c882e6f6ad18accc58718f90415d2963526b7cd6
--- /dev/null
+++ b/tests/test_prompts.py
@@ -0,0 +1,205 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+from typing import Optional
+
+import pytest
+import yaml
+
+import litgpt.config
+from litgpt import Config
+from litgpt.prompts import (
+ Alpaca,
+ Default,
+ Llama3,
+ Phi3,
+ PromptStyle,
+ has_prompt_style,
+ load_prompt_style,
+ prompt_styles,
+ save_prompt_style,
+)
+
+
+def test_default_prompt_style(mock_tokenizer):
+ prompt_style = Default()
+ prompt = "This is a test prompt."
+ assert prompt_style.apply(prompt) == prompt
+ assert prompt_style.stop_tokens(mock_tokenizer) == ([mock_tokenizer.eos_id],)
+
+
+@pytest.mark.parametrize("sys_prompt", [None, "You are a helpful coding assistant."])
+def test_sys_prompt(mock_tokenizer, sys_prompt: Optional[str]):
+ prompt_style = Phi3()
+ prompt = "This is a test prompt."
+ default_sys_prompt = "You are a helpful assistant."
+ response = f"<|system|>\n{sys_prompt or default_sys_prompt}<|end|>\n<|user|>\n{prompt}<|end|>\n<|assistant|>\n"
+ assert prompt_style.apply(prompt, sys_prompt=sys_prompt) == response
+ assert prompt_style.stop_tokens(mock_tokenizer) == ([mock_tokenizer.eos_id],)
+
+
+@pytest.mark.parametrize("sys_prompt", [None, "You are a helpful coding assistant."])
+def test_sys_prompt_with_kwargs(mock_tokenizer, sys_prompt: Optional[str]):
+ prompt_style = Phi3()
+ prompt = "This is a test prompt."
+ default_sys_prompt = "You are a helpful assistant."
+ response = f"<|system|>\n{sys_prompt or default_sys_prompt}<|end|>\n<|user|>\n{prompt}<|end|>\n<|assistant|>\n"
+ assert prompt_style.apply(prompt, sys_prompt=sys_prompt, test=1) == response
+ assert prompt_style.stop_tokens(mock_tokenizer) == ([mock_tokenizer.eos_id],)
+
+
+def test_prompt_style_from_name():
+ for style_name in prompt_styles:
+ assert isinstance(PromptStyle.from_name(style_name), prompt_styles[style_name])
+
+
+def test_prompt_style_from_config():
+ model_names = [
+ "stablelm-tuned-alpha-3b",
+ "stablelm-tuned-alpha-7b",
+ "stablelm-zephyr-3b",
+ "stablecode-instruct-alpha-3b",
+ "falcon-7b-instruct",
+ "falcon-40b-instruct",
+ "Llama-2-7b-chat-hf",
+ "Llama-2-13b-chat-hf",
+ "Llama-2-70b-chat-hf",
+ "Llama-3-8B-Instruct",
+ "Llama-3-70B-Instruct",
+ "Llama-3.1-405B-Instruct",
+ "Gemma-2b-it",
+ "Gemma-7b-it",
+ "FreeWilly2",
+ "CodeLlama-7b-Instruct-hf",
+ "CodeLlama-13b-Instruct-hf",
+ "CodeLlama-34b-Instruct-hf",
+ "CodeLlama-70b-Instruct-hf",
+ "phi-1_5",
+ "phi-2",
+ "Phi-3-mini-4k-instruct",
+ "Mistral-7B-Instruct-v0.1",
+ "Mistral-7B-Instruct-v0.2",
+ "tiny-llama-1.1b-chat",
+ "Llama-2-7b-chat-hf-function-calling-v2",
+ ]
+
+ for c in litgpt.config.platypus:
+ model_names.append(c["name"])
+
+ for model_name in model_names:
+ # by asserting the returned style is not the Default, we show that at least one of the regex patterns matched
+ assert not isinstance(PromptStyle.from_config(Config.from_name(model_name)), Default)
+
+
+def test_apply_prompts():
+ prompt = "Is a coconut a nut or a fruit?"
+ inp = "Optional input"
+
+ for style in prompt_styles.values():
+ output = style().apply(prompt, input=inp)
+ assert prompt in output
+ if isinstance(style, Alpaca):
+ assert inp in output
+
+
+class CustomPromptStyle(PromptStyle):
+ def apply(self, prompt: str, *, sys_prompt: Optional[str] = None, **kwargs) -> str:
+ return prompt
+
+
+def test_save_load_prompt_style(tmp_path):
+ # Save and load a built-in style
+ checkpoint_dir = tmp_path / "checkpoint"
+ checkpoint_dir.mkdir()
+ assert not has_prompt_style(checkpoint_dir)
+ save_prompt_style("alpaca", checkpoint_dir)
+ assert has_prompt_style(checkpoint_dir)
+ with open(checkpoint_dir / "prompt_style.yaml", encoding="utf-8") as file:
+ contents = yaml.safe_load(file)
+ assert contents == {"class_path": "litgpt.prompts.Alpaca"}
+ loaded = load_prompt_style(checkpoint_dir)
+ assert isinstance(loaded, Alpaca)
+
+ # Save a custom style
+ checkpoint_dir = tmp_path / "custom"
+ checkpoint_dir.mkdir()
+ save_prompt_style(CustomPromptStyle(), checkpoint_dir)
+ with open(checkpoint_dir / "prompt_style.yaml", encoding="utf-8") as file:
+ contents = yaml.safe_load(file)
+ assert contents == {"class_path": "test_prompts.CustomPromptStyle"}
+ loaded = load_prompt_style(checkpoint_dir)
+ assert isinstance(loaded, CustomPromptStyle)
+
+
+def test_multiturn_prompt():
+ prompt = "What is the capital of France?"
+ msgs = [{"role": "user", "content": prompt}]
+ style = Llama3()
+ simple_output = style.apply(prompt)
+ multiturn_output = style.apply(msgs)
+ assert simple_output == multiturn_output
+
+ # override system prompt
+ msgs = [{"role": "system", "content": "You are not a helpful assistant."}, {"role": "user", "content": prompt}]
+ with_system_multiturn_output = style.apply(msgs)
+ assert "You are not a helpful assistant." in with_system_multiturn_output
+
+ # use default system prompt
+ msgs = [
+ {"role": "user", "content": prompt},
+ ]
+ wo_system_multiturn_output = style.apply(msgs)
+ assert "You are a helpful assistant." in wo_system_multiturn_output
+
+ # Longer turn
+ msgs = [
+ {"role": "system", "content": "You are a helpful AI assistant for travel tips and recommendations"},
+ {"role": "user", "content": "What is France's capital?"},
+ {"role": "assistant", "content": "Bonjour! The capital of France is Paris!"},
+ {"role": "user", "content": "What can I do there?"},
+ ]
+ multiturn_output = style.apply(msgs)
+
+ assert (
+ multiturn_output
+ == """<|begin_of_text|><|start_header_id|>system<|end_header_id|>
+
+You are a helpful AI assistant for travel tips and recommendations<|eot_id|><|start_header_id|>user<|end_header_id|>
+
+What is France's capital?<|eot_id|><|start_header_id|>assistant<|end_header_id|>
+
+Bonjour! The capital of France is Paris!<|eot_id|><|start_header_id|>user<|end_header_id|>
+
+What can I do there?<|eot_id|><|start_header_id|>assistant<|end_header_id|>
+
+"""
+ )
+
+ # Longer list without "system"
+ msgs = [
+ {"role": "user", "content": "What is France's capital?"},
+ {"role": "assistant", "content": "Bonjour! The capital of France is Paris!"},
+ {"role": "user", "content": "What can I do there?"},
+ ]
+ multiturn_output = style.apply(msgs)
+
+ assert (
+ multiturn_output
+ == """<|begin_of_text|><|start_header_id|>system<|end_header_id|>
+
+You are a helpful assistant.<|eot_id|><|start_header_id|>user<|end_header_id|>
+
+What is France's capital?<|eot_id|><|start_header_id|>assistant<|end_header_id|>
+
+Bonjour! The capital of France is Paris!<|eot_id|><|start_header_id|>user<|end_header_id|>
+
+What can I do there?<|eot_id|><|start_header_id|>assistant<|end_header_id|>
+
+"""
+ )
+
+ # {random} string format shouldn't lead to key error
+ content = "this is {random} {system} {user}"
+ msgs = [{"role": "user", "content": content}]
+ output = style.apply(msgs)
+ simple_output = style.apply(content)
+ assert output == simple_output
diff --git a/tests/test_readme.py b/tests/test_readme.py
new file mode 100644
index 0000000000000000000000000000000000000000..756115834afe55d9fca71d7472e10faa3958613f
--- /dev/null
+++ b/tests/test_readme.py
@@ -0,0 +1,241 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import os
+import platform
+import subprocess
+import sys
+import threading
+import time
+from pathlib import Path
+from unittest import mock
+
+import pytest
+import requests
+from urllib3.exceptions import MaxRetryError
+
+from litgpt.utils import _RunIf, kill_process_tree
+
+REPO_ID = Path("EleutherAI/pythia-14m")
+CUSTOM_TEXTS_DIR = Path("custom_texts")
+
+
+def run_command(command):
+ try:
+ result = subprocess.run(command, capture_output=True, text=True, check=True)
+ return result.stdout
+ except subprocess.CalledProcessError as e:
+ error_message = (
+ f"Command '{' '.join(command)}' failed with exit status {e.returncode}\n"
+ f"Output:\n{e.stdout}\n"
+ f"Error:\n{e.stderr}"
+ )
+ # You can either print the message, log it, or raise an exception with it
+ print(error_message)
+ raise RuntimeError(error_message) from None
+
+
+def _wait_and_check_response(waiting: int = 30):
+ response_status_code, err = -1, None
+ for _ in range(waiting):
+ try:
+ response = requests.get("http://127.0.0.1:8000", timeout=1)
+ response_status_code = response.status_code
+ except (MaxRetryError, requests.exceptions.ConnectionError) as ex:
+ response_status_code = -1
+ err = str(ex)
+ if response_status_code == 200:
+ break
+ time.sleep(1)
+ assert response_status_code == 200, "Server did not respond as expected. Error: {err}"
+
+
+@pytest.mark.dependency()
+@pytest.mark.flaky(reruns=5, reruns_delay=2)
+def test_download_model():
+ repo_id = str(REPO_ID).replace("\\", "/") # fix for Windows CI
+ command = ["litgpt", "download", str(repo_id)]
+ output = run_command(command)
+
+ s = Path("checkpoints") / repo_id
+ assert f"Saving converted checkpoint to {str(s)}" in output
+ assert ("checkpoints" / REPO_ID).exists()
+
+ # Also test valid but unsupported repo IDs
+ command = ["litgpt", "download", "CohereForAI/aya-23-8B"]
+ output = run_command(command)
+ assert "Unsupported `repo_id`" in output
+
+
+@pytest.mark.dependency()
+@pytest.mark.flaky(reruns=5, reruns_delay=2)
+def test_download_books():
+ CUSTOM_TEXTS_DIR.mkdir(parents=True, exist_ok=True)
+
+ books = [
+ ("https://www.gutenberg.org/cache/epub/24440/pg24440.txt", "book1.txt"),
+ ("https://www.gutenberg.org/cache/epub/26393/pg26393.txt", "book2.txt"),
+ ]
+ for url, filename in books:
+ subprocess.run(["curl", url, "--output", str(CUSTOM_TEXTS_DIR / filename)], check=True)
+ # Verify each book is downloaded
+ assert (CUSTOM_TEXTS_DIR / filename).exists(), f"{filename} not downloaded"
+
+
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+@pytest.mark.dependency(depends=["test_download_model"])
+def test_chat_with_model():
+ command = ["litgpt", "generate", "checkpoints" / REPO_ID]
+ prompt = "What do Llamas eat?"
+ result = subprocess.run(command, input=prompt, text=True, capture_output=True, check=True)
+ assert "What food do llamas eat?" in result.stdout
+
+
+@_RunIf(min_cuda_gpus=1)
+@pytest.mark.dependency(depends=["test_download_model"])
+def test_chat_with_quantized_model():
+ command = ["litgpt", "generate", "checkpoints" / REPO_ID, "--quantize", "bnb.nf4", "--precision", "bf16-true"]
+ prompt = "What do Llamas eat?"
+ result = subprocess.run(command, input=prompt, text=True, capture_output=True, check=True)
+ assert "What food do llamas eat?" in result.stdout, result.stdout
+
+
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+@pytest.mark.dependency(depends=["test_download_model"])
+@pytest.mark.timeout(300)
+def test_finetune_model(tmp_path):
+ OUT_DIR = tmp_path / "out" / "lora"
+ DATASET_PATH = tmp_path / "custom_finetuning_dataset.json"
+ CHECKPOINT_DIR = "checkpoints" / REPO_ID
+
+ download_command = [
+ "curl",
+ "-L",
+ "https://huggingface.co/datasets/medalpaca/medical_meadow_health_advice/raw/main/medical_meadow_health_advice.json",
+ "-o",
+ str(DATASET_PATH),
+ ]
+ subprocess.run(download_command, check=True)
+
+ assert DATASET_PATH.exists(), "Dataset file not downloaded"
+
+ finetune_command = [
+ "litgpt",
+ "finetune_lora",
+ str(CHECKPOINT_DIR),
+ "--lora_r",
+ "1",
+ "--data",
+ "JSON",
+ "--data.json_path",
+ str(DATASET_PATH),
+ "--data.val_split_fraction",
+ "0.00001", # Keep small because new final validation is expensive
+ "--train.max_steps",
+ "1",
+ "--out_dir",
+ str(OUT_DIR),
+ ]
+ run_command(finetune_command)
+
+ generated_out_dir = OUT_DIR / "final"
+ assert generated_out_dir.exists(), f"Finetuning output directory ({generated_out_dir}) was not created"
+ model_file = OUT_DIR / "final" / "lit_model.pth"
+ assert model_file.exists(), f"Model file ({model_file}) was not created"
+
+
+@pytest.mark.skipif(
+ sys.platform.startswith("win") or sys.platform == "darwin", reason="`torch.compile` is not supported on this OS."
+)
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+@pytest.mark.dependency(depends=["test_download_model", "test_download_books"])
+def test_pretrain_model(tmp_path):
+ OUT_DIR = tmp_path / "out" / "custom_pretrained"
+ pretrain_command = [
+ "litgpt",
+ "pretrain",
+ "pythia-14m",
+ "--tokenizer_dir",
+ str("checkpoints" / REPO_ID),
+ "--data",
+ "TextFiles",
+ "--data.train_data_path",
+ str(CUSTOM_TEXTS_DIR),
+ "--train.max_tokens",
+ "100", # to accelerate things for CI
+ "--eval.max_iters",
+ "1", # to accelerate things for CI
+ "--out_dir",
+ str(OUT_DIR),
+ ]
+ output = run_command(pretrain_command)
+
+ assert "Warning: Preprocessed training data found" not in output
+ out_dir_path = OUT_DIR / "final"
+ assert out_dir_path.exists(), f"Pretraining output directory ({out_dir_path}) was not created"
+ out_model_path = OUT_DIR / "final" / "lit_model.pth"
+ assert out_model_path.exists(), f"Model file ({out_model_path}) was not created"
+
+ # Test that warning is displayed when running it a second time
+ output = run_command(pretrain_command)
+ assert "Warning: Preprocessed training data found" in output
+
+
+@pytest.mark.skipif(
+ sys.platform.startswith("win") or sys.platform == "darwin", reason="`torch.compile` is not supported on this OS."
+)
+@mock.patch.dict(os.environ, {"LT_ACCELERATOR": "cpu"})
+@pytest.mark.dependency(depends=["test_download_model", "test_download_books"])
+def test_continue_pretrain_model(tmp_path):
+ OUT_DIR = tmp_path / "out" / "custom_continue_pretrained"
+ pretrain_command = [
+ "litgpt",
+ "pretrain",
+ "pythia-14m",
+ "--initial_checkpoint",
+ str("checkpoints" / REPO_ID),
+ "--tokenizer_dir",
+ str("checkpoints" / REPO_ID),
+ "--data",
+ "TextFiles",
+ "--data.train_data_path",
+ str(CUSTOM_TEXTS_DIR),
+ "--train.max_tokens",
+ "100", # to accelerate things for CI
+ "--eval.max_iters",
+ "1", # to accelerate things for CI
+ "--out_dir",
+ str(OUT_DIR),
+ ]
+ run_command(pretrain_command)
+
+ generated_out_dir = OUT_DIR / "final"
+ assert generated_out_dir.exists(), f"Continued pretraining directory ({generated_out_dir}) was not created"
+ model_file = OUT_DIR / "final" / "lit_model.pth"
+ assert model_file.exists(), f"Model file ({model_file}) was not created"
+
+
+@pytest.mark.dependency(depends=["test_download_model"])
+# todo: try to resolve this issue
+@pytest.mark.xfail(condition=platform.system() == "Darwin", reason="it passes locally but having some issues on CI")
+def test_serve():
+ CHECKPOINT_DIR = str("checkpoints" / REPO_ID)
+ run_command = ["litgpt", "serve", str(CHECKPOINT_DIR)]
+
+ process = None
+
+ def run_server():
+ nonlocal process
+ try:
+ process = subprocess.Popen(run_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
+ stdout, stderr = process.communicate(timeout=60)
+ except subprocess.TimeoutExpired:
+ print("Server start-up timeout expired")
+
+ server_thread = threading.Thread(target=run_server)
+ server_thread.start()
+
+ _wait_and_check_response()
+
+ if process:
+ kill_process_tree(process.pid)
+ server_thread.join()
diff --git a/tests/test_rope.py b/tests/test_rope.py
new file mode 100644
index 0000000000000000000000000000000000000000..51f33155c724cab9f24140deb839a26a5b1c3a7f
--- /dev/null
+++ b/tests/test_rope.py
@@ -0,0 +1,302 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import torch
+from transformers.models.gpt_neox.modeling_gpt_neox import GPTNeoXConfig, GPTNeoXRotaryEmbedding
+from transformers.models.gpt_neox.modeling_gpt_neox import apply_rotary_pos_emb as apply_rotary_pos_emb_gptneo
+from transformers.models.llama.configuration_llama import LlamaConfig
+from transformers.models.llama.modeling_llama import LlamaRotaryEmbedding
+from transformers.models.llama.modeling_llama import apply_rotary_pos_emb as apply_rotary_pos_emb_llama
+
+from litgpt.model import apply_rope, build_rope_cache
+
+
+@torch.inference_mode()
+def test_rope_gptneox():
+ bs, seq_len, n_head, n_embed = 1, 6, 2, 8
+ head_size = n_embed // n_head # 4
+ x = torch.randint(0, 10000, size=(bs, n_head, seq_len, head_size)).float()
+ position_ids = torch.arange(seq_len).unsqueeze(0)
+
+ config = GPTNeoXConfig(num_attention_heads=n_head, hidden_size=head_size * n_embed)
+ theirs_rot_emb = GPTNeoXRotaryEmbedding(config)
+ theirs_cos, theirs_sin = theirs_rot_emb(x, position_ids)
+
+ ours_cos_cached, ours_sin_cached = build_rope_cache(seq_len, head_size, device=x.device)
+ ours_cos_cached = ours_cos_cached.unsqueeze(0)
+ ours_sin_cached = ours_sin_cached.unsqueeze(0)
+ torch.testing.assert_close(ours_cos_cached, theirs_cos)
+ torch.testing.assert_close(ours_sin_cached, theirs_sin)
+
+ ours_x_rope = apply_rope(x, ours_cos_cached, ours_sin_cached)
+ theirs_x_rope, _ = apply_rotary_pos_emb_gptneo(x, x, theirs_cos, theirs_sin, position_ids)
+ torch.testing.assert_close(ours_x_rope, theirs_x_rope)
+
+
+@torch.inference_mode()
+def test_rope_llama_2():
+ head_dim = 64
+ rope_theta = 10_000
+
+ ##################################
+ # Compare cos and sin
+ ##################################
+ # transformer rope
+ their_rope_config = {
+ "rope_type": "default",
+ }
+ config = LlamaConfig(head_dim=head_dim, rope_theta=rope_theta, rope_scaling=their_rope_config)
+
+ rot_emb = LlamaRotaryEmbedding(config=config)
+ batch_size, seq_len = 1, 10
+ qk_tensor = torch.randn(batch_size, seq_len, head_dim)
+ position_ids = torch.arange(seq_len, dtype=torch.long).unsqueeze(0)
+ theirs_cos, theirs_sin = rot_emb(qk_tensor, position_ids)
+
+ # our rope
+ ours_cos, ours_sin = build_rope_cache(seq_len, n_elem=head_dim, base=rope_theta)
+ ours_cos = ours_cos.unsqueeze(0)
+ ours_sin = ours_sin.unsqueeze(0)
+ torch.testing.assert_close(theirs_cos, ours_cos)
+ torch.testing.assert_close(theirs_sin, ours_sin)
+
+ ##################################
+ # Compare rotated tensors
+ ##################################
+ # Settings
+ num_heads = 4
+
+ # Dummy query and key tensors
+ torch.manual_seed(123)
+ queries = torch.randn(batch_size, num_heads, seq_len, head_dim)
+ keys = torch.randn(batch_size, num_heads, seq_len, head_dim)
+
+ ours_q_rot = apply_rope(queries, ours_cos, ours_sin)
+ ours_k_rot = apply_rope(keys, ours_cos, ours_sin)
+ theirs_q_rot, theirs_k_rot = apply_rotary_pos_emb_llama(queries, keys, theirs_cos, theirs_sin)
+ torch.testing.assert_close(theirs_q_rot, ours_q_rot)
+ torch.testing.assert_close(theirs_k_rot, ours_k_rot)
+
+
+# See https://huggingface.co/meta-llama/Meta-Llama-3-8B/blob/main/config.json for settings
+@torch.inference_mode()
+def test_rope_llama_3():
+ head_dim = 64
+ rope_theta = 50_000
+
+ ##################################
+ # Compare cos and sin
+ ##################################
+ # transformer rope
+ their_rope_config = {
+ "rope_type": "default",
+ }
+ config = LlamaConfig(head_dim=head_dim, rope_theta=rope_theta, rope_scaling=their_rope_config)
+
+ rot_emb = LlamaRotaryEmbedding(config=config)
+ batch_size, seq_len = 1, 10
+ qk_tensor = torch.randn(batch_size, seq_len, head_dim)
+ position_ids = torch.arange(seq_len, dtype=torch.long).unsqueeze(0)
+ theirs_cos, theirs_sin = rot_emb(qk_tensor, position_ids)
+
+ # our rope
+ ours_cos, ours_sin = build_rope_cache(seq_len, n_elem=head_dim, base=rope_theta)
+ ours_cos = ours_cos.unsqueeze(0)
+ ours_sin = ours_sin.unsqueeze(0)
+ torch.testing.assert_close(theirs_cos, ours_cos)
+ torch.testing.assert_close(theirs_sin, ours_sin)
+
+ ##################################
+ # Compare rotated tensors
+ ##################################
+ # Settings
+ num_heads = 4
+
+ # Dummy query and key tensors
+ torch.manual_seed(123)
+ queries = torch.randn(batch_size, num_heads, seq_len, head_dim)
+ keys = torch.randn(batch_size, num_heads, seq_len, head_dim)
+
+ ours_q_rot = apply_rope(queries, ours_cos, ours_sin)
+ ours_k_rot = apply_rope(keys, ours_cos, ours_sin)
+ theirs_q_rot, theirs_k_rot = apply_rotary_pos_emb_llama(queries, keys, theirs_cos, theirs_sin)
+ torch.testing.assert_close(theirs_q_rot, ours_q_rot)
+ torch.testing.assert_close(theirs_k_rot, ours_k_rot)
+
+
+# See https://huggingface.co/meta-llama/Llama-3.1-8B/blob/main/config.json for settings
+@torch.inference_mode()
+def test_rope_llama_3_1():
+ head_dim = 32
+ rope_theta = 50_000
+
+ their_rope_config = {
+ "factor": 8.0,
+ "low_freq_factor": 1.0,
+ "high_freq_factor": 4.0,
+ "original_max_position_embeddings": 8192,
+ "rope_type": "llama3",
+ }
+
+ our_rope_config = {"factor": 8.0, "low_freq_factor": 1.0, "high_freq_factor": 4.0, "original_max_seq_len": 8192}
+
+ config = LlamaConfig(rope_theta=rope_theta, rope_scaling=their_rope_config, head_dim=head_dim)
+
+ ##################################
+ # Compare cos and sin
+ ##################################
+ # transformer rope
+ rot_emb = LlamaRotaryEmbedding(config=config)
+ batch_size, seq_len = 1, 131_072
+ qk_tensor = torch.randn(batch_size, seq_len, head_dim)
+ position_ids = torch.arange(seq_len, dtype=torch.long).unsqueeze(0)
+ theirs_cos, theirs_sin = rot_emb(qk_tensor, position_ids)
+
+ # our rope
+ ours_cos, ours_sin = build_rope_cache(seq_len, n_elem=head_dim, base=rope_theta, extra_config=our_rope_config)
+ ours_cos = ours_cos.unsqueeze(0)
+ ours_sin = ours_sin.unsqueeze(0)
+ torch.testing.assert_close(theirs_cos, ours_cos)
+ torch.testing.assert_close(theirs_sin, ours_sin)
+
+ ##################################
+ # Compare rotated tensors
+ ##################################
+ # Settings
+ num_heads = 4
+
+ # Dummy query and key tensors
+ torch.manual_seed(123)
+ queries = torch.randn(batch_size, num_heads, seq_len, head_dim)
+ keys = torch.randn(batch_size, num_heads, seq_len, head_dim)
+
+ ours_q_rot = apply_rope(queries, ours_cos, ours_sin)
+ ours_k_rot = apply_rope(keys, ours_cos, ours_sin)
+ theirs_q_rot, theirs_k_rot = apply_rotary_pos_emb_llama(queries, keys, theirs_cos, theirs_sin)
+ torch.testing.assert_close(theirs_q_rot, ours_q_rot)
+ torch.testing.assert_close(theirs_k_rot, ours_k_rot)
+
+
+# See https://huggingface.co/meta-llama/Llama-3.2-3B/blob/main/config.json for settings
+@torch.inference_mode()
+def test_rope_llama_3_2():
+ head_dim = 32
+ rope_theta = 50_000
+
+ their_rope_config = {
+ "factor": 32.0,
+ "low_freq_factor": 1.0,
+ "high_freq_factor": 4.0,
+ "original_max_position_embeddings": 8192,
+ "rope_type": "llama3",
+ }
+
+ our_rope_config = {"factor": 32.0, "low_freq_factor": 1.0, "high_freq_factor": 4.0, "original_max_seq_len": 8192}
+
+ config = LlamaConfig(rope_theta=rope_theta, rope_scaling=their_rope_config, head_dim=head_dim)
+
+ ##################################
+ # Compare cos and sin
+ ##################################
+ # transformer rope
+ rot_emb = LlamaRotaryEmbedding(config=config)
+ batch_size, seq_len = 1, 131_072
+ qk_tensor = torch.randn(batch_size, seq_len, head_dim)
+ position_ids = torch.arange(seq_len, dtype=torch.long).unsqueeze(0)
+ theirs_cos, theirs_sin = rot_emb(qk_tensor, position_ids)
+
+ # our rope
+ ours_cos, ours_sin = build_rope_cache(seq_len, n_elem=head_dim, base=rope_theta, extra_config=our_rope_config)
+ ours_cos = ours_cos.unsqueeze(0)
+ ours_sin = ours_sin.unsqueeze(0)
+ torch.testing.assert_close(theirs_cos, ours_cos)
+ torch.testing.assert_close(theirs_sin, ours_sin)
+
+ ##################################
+ # Compare rotated tensors
+ ##################################
+ # Settings
+ num_heads = 4
+
+ # Dummy query and key tensors
+ torch.manual_seed(123)
+ queries = torch.randn(batch_size, num_heads, seq_len, head_dim)
+ keys = torch.randn(batch_size, num_heads, seq_len, head_dim)
+
+ ours_q_rot = apply_rope(queries, ours_cos, ours_sin)
+ ours_k_rot = apply_rope(keys, ours_cos, ours_sin)
+ theirs_q_rot, theirs_k_rot = apply_rotary_pos_emb_llama(queries, keys, theirs_cos, theirs_sin)
+ torch.testing.assert_close(theirs_q_rot, ours_q_rot)
+ torch.testing.assert_close(theirs_k_rot, ours_k_rot)
+
+
+# See https://huggingface.co/google/gemma-3-27b-it/blob/main/config.json for settings
+@torch.inference_mode()
+def test_rope_gemma_3():
+ from transformers.models.gemma3.configuration_gemma3 import Gemma3TextConfig
+ from transformers.models.gemma3.modeling_gemma3 import Gemma3RotaryEmbedding, apply_rotary_pos_emb
+
+ head_dim = 32
+ rope_theta = 50_000
+ their_rope_config = {
+ "factor": 8.0,
+ "rope_type": "linear",
+ }
+
+ our_rope_config = {"factor": 8.0}
+
+ ##################################
+ # Compare cos and sin
+ ##################################
+ # transformer rope
+ config = Gemma3TextConfig(rope_theta=rope_theta, rope_scaling=their_rope_config, head_dim=head_dim)
+ rot_emb = Gemma3RotaryEmbedding(config=config)
+ batch_size, seq_len = 1, 10
+ qk_tensor = torch.randn(batch_size, seq_len, head_dim)
+ position_ids = torch.arange(seq_len, dtype=torch.long).unsqueeze(0)
+ theirs_cos, theirs_sin = rot_emb(qk_tensor, position_ids)
+
+ # our rope
+ ours_cos, ours_sin = build_rope_cache(seq_len, n_elem=head_dim, base=rope_theta, extra_config=our_rope_config)
+ ours_cos = ours_cos.unsqueeze(0)
+ ours_sin = ours_sin.unsqueeze(0)
+ torch.testing.assert_close(theirs_cos, ours_cos)
+ torch.testing.assert_close(theirs_sin, ours_sin)
+
+ ##################################
+ # Compare rotated tensors
+ ##################################
+ # Settings
+ num_heads = 4
+
+ # Dummy query and key tensors
+ torch.manual_seed(123)
+ queries = torch.randn(batch_size, num_heads, seq_len, head_dim)
+ keys = torch.randn(batch_size, num_heads, seq_len, head_dim)
+
+ ours_q_rot = apply_rope(queries, ours_cos, ours_sin)
+ ours_k_rot = apply_rope(keys, ours_cos, ours_sin)
+ theirs_q_rot, theirs_k_rot = apply_rotary_pos_emb(queries, keys, theirs_cos, theirs_sin)
+ torch.testing.assert_close(theirs_q_rot, ours_q_rot)
+ torch.testing.assert_close(theirs_k_rot, ours_k_rot)
+
+
+@torch.inference_mode()
+def test_rope_cos_sin_shapes_if_rope_n_elem_is_odd():
+ bs, seq_len, n_head, n_embed = 1, 6, 2, 8
+ head_size = n_embed // n_head # 4
+ rotary_percentage = 0.75
+ rope_n_elem = int(head_size * rotary_percentage) # 3
+ ours_cos, ours_sin = build_rope_cache(seq_len, rope_n_elem)
+ required_shape = (seq_len, rope_n_elem)
+ assert ours_cos.shape == required_shape
+ assert ours_sin.shape == required_shape
+ # Special case: If `rope_n_elem == 1`, the shape is extended. This is to
+ # accommodate a current bug in Hugging Face, ensuring that other unit tests
+ # pass.
+ # https://github.com/huggingface/transformers/issues/35233
+ rotary_percentage = 0.25
+ rope_n_elem = int(head_size * rotary_percentage) # 1
+ ours_cos, ours_sin = build_rope_cache(seq_len, rope_n_elem)
+ required_shape = (seq_len, rope_n_elem + 1)
+ assert ours_cos.shape == required_shape
+ assert ours_sin.shape == required_shape
diff --git a/tests/test_serve.py b/tests/test_serve.py
new file mode 100644
index 0000000000000000000000000000000000000000..81d51dcd27c449102de49396559107ba8a8b953f
--- /dev/null
+++ b/tests/test_serve.py
@@ -0,0 +1,255 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import json
+import platform
+import shutil
+import subprocess
+import threading
+import time
+from dataclasses import asdict
+
+import pytest
+import requests
+import torch
+import yaml
+from lightning.fabric import seed_everything
+from urllib3.exceptions import MaxRetryError
+
+from litgpt import GPT, Config
+from litgpt.scripts.download import download_from_hub
+from litgpt.utils import _RunIf, kill_process_tree
+
+
+def _wait_and_check_response(waiting: int = 30):
+ response_status_code, err = -1, None
+ for _ in range(waiting):
+ try:
+ response = requests.get("http://127.0.0.1:8000", timeout=10)
+ response_status_code = response.status_code
+ except (MaxRetryError, requests.exceptions.ConnectionError) as ex:
+ response_status_code = -1
+ err = str(ex)
+ if response_status_code == 200:
+ break
+ time.sleep(1)
+ assert response_status_code == 200, f"Server did not respond as expected. Error: {err}"
+
+
+# todo: try to resolve this issue
+@pytest.mark.xfail(condition=platform.system() == "Darwin", reason="it passes locally but having some issues on CI")
+def test_simple(tmp_path):
+ seed_everything(123)
+ ours_config = Config.from_name("pythia-14m")
+ download_from_hub(repo_id="EleutherAI/pythia-14m", tokenizer_only=True, checkpoint_dir=tmp_path)
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer.json"), str(tmp_path))
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer_config.json"), str(tmp_path))
+ ours_model = GPT(ours_config)
+ checkpoint_path = tmp_path / "lit_model.pth"
+ torch.save(ours_model.state_dict(), checkpoint_path)
+ config_path = tmp_path / "model_config.yaml"
+ with open(config_path, "w", encoding="utf-8") as fp:
+ yaml.dump(asdict(ours_config), fp)
+
+ run_command = ["litgpt", "serve", tmp_path]
+
+ process = None
+
+ def run_server():
+ nonlocal process
+ try:
+ process = subprocess.Popen(run_command, stdout=None, stderr=None, text=True)
+ except subprocess.TimeoutExpired:
+ print("Server start-up timeout expired")
+
+ server_thread = threading.Thread(target=run_server)
+ server_thread.start()
+
+ _wait_and_check_response(waiting=60)
+
+ if process:
+ kill_process_tree(process.pid)
+ server_thread.join()
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_quantize(tmp_path):
+ seed_everything(123)
+ ours_config = Config.from_name("pythia-14m")
+ download_from_hub(repo_id="EleutherAI/pythia-14m", tokenizer_only=True, checkpoint_dir=tmp_path)
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer.json"), str(tmp_path))
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer_config.json"), str(tmp_path))
+ ours_model = GPT(ours_config)
+ checkpoint_path = tmp_path / "lit_model.pth"
+ torch.save(ours_model.state_dict(), checkpoint_path)
+ config_path = tmp_path / "model_config.yaml"
+ with open(config_path, "w", encoding="utf-8") as fp:
+ yaml.dump(asdict(ours_config), fp)
+
+ run_command = ["litgpt", "serve", tmp_path, "--quantize", "bnb.nf4"]
+
+ process = None
+
+ def run_server():
+ nonlocal process
+ try:
+ process = subprocess.Popen(run_command, stdout=None, stderr=None, text=True)
+ except subprocess.TimeoutExpired:
+ print("Server start-up timeout expired")
+
+ server_thread = threading.Thread(target=run_server)
+ server_thread.start()
+
+ _wait_and_check_response()
+
+ if process:
+ kill_process_tree(process.pid)
+ server_thread.join()
+
+
+@_RunIf(min_cuda_gpus=2)
+def test_multi_gpu_serve(tmp_path):
+ seed_everything(123)
+ ours_config = Config.from_name("pythia-14m")
+ download_from_hub(repo_id="EleutherAI/pythia-14m", tokenizer_only=True, checkpoint_dir=tmp_path)
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer.json"), str(tmp_path))
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer_config.json"), str(tmp_path))
+ ours_model = GPT(ours_config)
+ checkpoint_path = tmp_path / "lit_model.pth"
+ torch.save(ours_model.state_dict(), checkpoint_path)
+ config_path = tmp_path / "model_config.yaml"
+ with open(config_path, "w", encoding="utf-8") as fp:
+ yaml.dump(asdict(ours_config), fp)
+
+ run_command = ["litgpt", "serve", tmp_path, "--devices", "2"]
+
+ process = None
+
+ def run_server():
+ nonlocal process
+ try:
+ process = subprocess.Popen(run_command, stdout=None, stderr=None, text=True)
+ except subprocess.TimeoutExpired:
+ print("Server start-up timeout expired")
+
+ server_thread = threading.Thread(target=run_server)
+ server_thread.start()
+
+ _wait_and_check_response()
+
+ if process:
+ kill_process_tree(process.pid)
+ server_thread.join()
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_serve_with_openai_spec_missing_chat_template(tmp_path):
+ seed_everything(123)
+ ours_config = Config.from_name("pythia-14m")
+ download_from_hub(repo_id="EleutherAI/pythia-14m", tokenizer_only=True, checkpoint_dir=tmp_path)
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer.json"), str(tmp_path))
+ shutil.move(str(tmp_path / "EleutherAI" / "pythia-14m" / "tokenizer_config.json"), str(tmp_path))
+ ours_model = GPT(ours_config)
+ checkpoint_path = tmp_path / "lit_model.pth"
+ torch.save(ours_model.state_dict(), checkpoint_path)
+ config_path = tmp_path / "model_config.yaml"
+ with open(config_path, "w", encoding="utf-8") as fp:
+ yaml.dump(asdict(ours_config), fp)
+
+ run_command = ["litgpt", "serve", tmp_path, "--openai_spec", "true"]
+
+ process = None
+
+ def run_server():
+ nonlocal process
+ try:
+ process = subprocess.Popen(run_command, stdout=None, stderr=None, text=True)
+ except subprocess.TimeoutExpired:
+ print("Server start-up timeout expired")
+
+ server_thread = threading.Thread(target=run_server)
+ server_thread.start()
+
+ _wait_and_check_response()
+
+ if process:
+ kill_process_tree(process.pid)
+ server_thread.join()
+
+
+@_RunIf(min_cuda_gpus=1)
+def test_serve_with_openai_spec(tmp_path):
+ seed_everything(123)
+ ours_config = Config.from_name("SmolLM2-135M-Instruct")
+ download_from_hub(repo_id="HuggingFaceTB/SmolLM2-135M-Instruct", tokenizer_only=True, checkpoint_dir=tmp_path)
+ shutil.move(str(tmp_path / "HuggingFaceTB" / "SmolLM2-135M-Instruct" / "tokenizer.json"), str(tmp_path))
+ shutil.move(str(tmp_path / "HuggingFaceTB" / "SmolLM2-135M-Instruct" / "tokenizer_config.json"), str(tmp_path))
+ ours_model = GPT(ours_config)
+ checkpoint_path = tmp_path / "lit_model.pth"
+ torch.save(ours_model.state_dict(), checkpoint_path)
+ config_path = tmp_path / "model_config.yaml"
+ with open(config_path, "w", encoding="utf-8") as fp:
+ yaml.dump(asdict(ours_config), fp)
+
+ run_command = ["litgpt", "serve", tmp_path, "--openai_spec", "true"]
+
+ process = None
+
+ def run_server():
+ nonlocal process
+ try:
+ process = subprocess.Popen(run_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
+ except subprocess.TimeoutExpired:
+ print("Server start-up timeout expired")
+
+ server_thread = threading.Thread(target=run_server)
+ server_thread.start()
+
+ _wait_and_check_response()
+
+ try:
+ # Test server health
+ response = requests.get("http://127.0.0.1:8000/health")
+ assert response.status_code == 200, f"Server health check failed with status code {response.status_code}"
+ assert response.text == "ok", "Server did not respond as expected."
+
+ # Test non-streaming chat completion
+ response = requests.post(
+ "http://127.0.0.1:8000/v1/chat/completions",
+ json={
+ "model": "SmolLM2-135M-Instruct",
+ "messages": [{"role": "user", "content": "Hello!"}],
+ },
+ )
+ assert response.status_code == 200, (
+ f"Non-streaming chat completion failed with status code {response.status_code}"
+ )
+ response_json = response.json()
+ assert "choices" in response_json, "Response JSON does not contain 'choices'."
+ assert "message" in response_json["choices"][0], "Response JSON does not contain 'message' in 'choices'."
+ assert "content" in response_json["choices"][0]["message"], (
+ "Response JSON does not contain 'content' in 'message'."
+ )
+ assert response_json["choices"][0]["message"]["content"], "Content is empty in the response."
+
+ # Test streaming chat completion
+ stream_response = requests.post(
+ "http://127.0.0.1:8000/v1/chat/completions",
+ json={
+ "model": "SmolLM2-135M-Instruct",
+ "messages": [{"role": "user", "content": "Hello!"}],
+ "stream": True,
+ },
+ )
+ assert stream_response.status_code == 200, (
+ f"Streaming chat completion failed with status code {stream_response.status_code}"
+ )
+ for line in stream_response.iter_lines():
+ decoded = line.decode("utf-8").replace("data: ", "").replace("[DONE]", "").strip()
+ if decoded:
+ data = json.loads(decoded)
+ assert "choices" in data, "Response JSON does not contain 'choices'."
+ assert "delta" in data["choices"][0], "Response JSON does not contain 'delta' in 'choices'."
+ assert "content" in data["choices"][0]["delta"], "Response JSON does not contain 'content' in 'delta'."
+ finally:
+ if process:
+ kill_process_tree(process.pid)
+ server_thread.join()
diff --git a/tests/test_tokenizer.py b/tests/test_tokenizer.py
new file mode 100644
index 0000000000000000000000000000000000000000..7d49a1933876ebb0d8abe84f32b496ca2b4d41cc
--- /dev/null
+++ b/tests/test_tokenizer.py
@@ -0,0 +1,126 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import os
+import shutil
+import warnings
+from types import SimpleNamespace
+from unittest import mock
+
+import pytest
+from tokenizers import Tokenizer as HFTokenizer
+from tokenizers.models import BPE
+from transformers import AutoTokenizer
+from transformers.utils import cached_file
+
+import litgpt.config as config_module
+from litgpt import PromptStyle, Tokenizer
+
+
+# @pytest.mark.flaky(reruns=3, rerun_except=["AssertionError", "assert", "TypeError"])
+@pytest.mark.parametrize("config", config_module.configs, ids=[c["hf_config"]["name"] for c in config_module.configs])
+def test_tokenizer_against_hf(config, tmp_path):
+ config = config_module.Config(**config)
+
+ repo_id = f"{config.hf_config['org']}/{config.hf_config['name']}"
+ theirs = AutoTokenizer.from_pretrained(repo_id, token=os.getenv("HF_TOKEN"))
+
+ # create a checkpoint directory that points to the HF files
+ hf_files = {}
+ for filename in ("tokenizer.json", "generation_config.json", "tokenizer.model", "tokenizer_config.json"):
+ try: # download the HF tokenizer config
+ hf_file = cached_file(path_or_repo_id=repo_id, filename=filename)
+ hf_files[filename] = str(hf_file)
+ except Exception as ex:
+ warnings.warn(str(ex), RuntimeWarning)
+ if "tokenizer.json" not in hf_files and "tokenizer.model" not in hf_files:
+ raise ConnectionError("Unable to download any tokenizer files from HF")
+
+ # we need to rename the dir to match the model name in testing as well
+ # since we use to it determine the model in tokenizer.py
+ tmp_path = tmp_path.rename(tmp_path.parent / config.hf_config["name"])
+
+ for filename, hf_file in hf_files.items():
+ shutil.copy(hf_file, str(tmp_path / filename))
+
+ ours = Tokenizer(tmp_path)
+
+ assert ours.vocab_size == theirs.vocab_size
+ if config.name == "Mixtral-8x22B-v0.1":
+ pytest.xfail(reason="Mixtral certainly lists 32000 vocab in its config")
+ else:
+ assert ours.vocab_size == config.vocab_size
+
+ if config.name.startswith(("falcon", "stablecode", "Qwen2.5", "QwQ", "Qwen3")):
+ # even though their config defines it, it's set as None in HF
+ assert isinstance(ours.bos_id, int)
+ assert theirs.bos_token_id is None
+ elif config.name.startswith("Falcon3"):
+ if isinstance(ours.bos_id, int):
+ assert theirs.bos_token_id is None
+ else:
+ assert ours.bos_id == theirs.bos_token_id is None
+ else:
+ assert ours.bos_id == theirs.bos_token_id
+
+ if config.name.startswith("stablecode"):
+ # even though their config defines it, it's set as None in HF
+ assert ours.eos_id == 0
+ assert ours.eos_id == theirs.eos_token_id or theirs.eos_token_id is None
+ else:
+ assert ours.eos_id == theirs.eos_token_id
+
+ prompt = "Hello, readers of this test!"
+ prompt = PromptStyle.from_config(config).apply(prompt)
+ actual = ours.encode(prompt)
+ expected = theirs.encode(prompt)
+ assert actual.tolist() == expected
+ assert ours.decode(actual) == theirs.decode(expected, skip_special_tokens=True)
+
+ if not config.name.startswith(("Mistral", "Mixtral")):
+ decoded_output = "".join([ours.decode(x) for x in actual])
+ if ours.apply_decoding_fix and decoded_output[0] == " ":
+ decoded_output = decoded_output[1:] # the "hack" adds an empty space to the beginning
+ assert decoded_output == ours.decode(actual), type(theirs)
+
+
+def test_tokenizer_input_validation():
+ with pytest.raises(NotADirectoryError, match="The checkpoint directory does not exist"):
+ Tokenizer("cocofruit")
+
+
+@pytest.mark.parametrize("use_bos_by_default", (True, False))
+@pytest.mark.parametrize("encode_use_bos", (None, True, False))
+@pytest.mark.parametrize("encode_use_eos", (True, False))
+@pytest.mark.parametrize("processor_returns_bos", (True, False))
+@pytest.mark.parametrize("fake_return_ids", ([], [34, 8, 17, 2]))
+def test_tokenizer_bos_eos(
+ tmp_path, use_bos_by_default, encode_use_bos, encode_use_eos, processor_returns_bos, fake_return_ids
+):
+ # let `Tokenizers` create a proper (albeit empty) vocab in json format
+ HFTokenizer(BPE()).save(str(tmp_path / "tokenizer.json"))
+
+ tokenizer = Tokenizer(tmp_path)
+ tokenizer.bos_id = 0
+ tokenizer.eos_id = 1
+ tokenizer.use_bos = use_bos_by_default
+
+ if processor_returns_bos:
+ fake_return_ids = [tokenizer.bos_id] + fake_return_ids
+ fake_return_ids = SimpleNamespace(**dict(ids=fake_return_ids))
+
+ with mock.patch.object(tokenizer.processor, "encode", return_value=fake_return_ids):
+ tokens = tokenizer.encode("Hello world", bos=encode_use_bos, eos=encode_use_eos).tolist()
+
+ if encode_use_bos or (encode_use_bos is None and use_bos_by_default):
+ assert tokens[0] == tokenizer.bos_id
+ else:
+ assert not tokens or tokens[0] != tokenizer.bos_id
+
+ if encode_use_eos:
+ assert tokens[-1] == tokenizer.eos_id
+ else:
+ assert not tokens or tokens[-1] != tokenizer.eos_id
+
+ # both `bos` and `eos` should either not be found or occur only once at the begging (bos)
+ # or at the end (eos) of the tokens sequence
+ assert max([id for id, token in enumerate(tokens) if token == tokenizer.bos_id], default=0) == 0
+ assert max([id for id, token in enumerate(tokens[::-1]) if token == tokenizer.eos_id], default=0) == 0
diff --git a/tests/test_trainer_support.py b/tests/test_trainer_support.py
new file mode 100644
index 0000000000000000000000000000000000000000..f84b667acf8a50057e9f96f1a7d3b4b0fe4af685
--- /dev/null
+++ b/tests/test_trainer_support.py
@@ -0,0 +1,158 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+
+import os
+from pathlib import Path
+
+import lightning as L
+import pytest
+import torch
+
+from litgpt.api import LLM
+from litgpt.data import Alpaca2k
+from litgpt.utils import _RunIf
+
+REPO_ID = Path("EleutherAI/pythia-14m")
+
+
+class LitLLM(L.LightningModule):
+ def __init__(self, checkpoint_dir, tokenizer_dir=None, trainer_ckpt_path=None):
+ super().__init__()
+
+ self.llm = LLM.load(checkpoint_dir, tokenizer_dir=tokenizer_dir, distribute=None)
+ self.trainer_ckpt_path = trainer_ckpt_path
+
+ def setup(self, stage):
+ self.llm.trainer_setup(trainer_ckpt=self.trainer_ckpt_path)
+
+ def training_step(self, batch):
+ logits, loss = self.llm(input_ids=batch["input_ids"], target_ids=batch["labels"])
+ self.log("train_loss", loss, prog_bar=True)
+ return loss
+
+ def validation_step(self, batch):
+ logits, loss = self.llm(input_ids=batch["input_ids"], target_ids=batch["labels"])
+ self.log("validation_loss", loss, prog_bar=True)
+ return loss
+
+ def configure_optimizers(self):
+ warmup_steps = 10
+ optimizer = torch.optim.AdamW(self.llm.model.parameters(), lr=0.0002, weight_decay=0.0, betas=(0.9, 0.95))
+ scheduler = torch.optim.lr_scheduler.LambdaLR(optimizer, lambda step: step / warmup_steps)
+ return [optimizer], [scheduler]
+
+
+@pytest.mark.dependency()
+def test_download_model():
+ LLM.load(model="EleutherAI/pythia-14m", distribute=None)
+
+
+@pytest.mark.dependency(depends=["test_download_model"])
+@_RunIf(min_cuda_gpus=1)
+def test_usecase1_pretraining_from_random_weights(tmp_path):
+ llm = LLM.load("EleutherAI/pythia-14m", tokenizer_dir="EleutherAI/pythia-14m", init="random")
+ llm.save("pythia-14m-random-weights")
+ del llm
+
+ lit_model = LitLLM(checkpoint_dir="pythia-14m-random-weights", tokenizer_dir="EleutherAI/pythia-14m")
+ data = Alpaca2k()
+
+ data.connect(lit_model.llm.tokenizer, batch_size=4, max_seq_length=128)
+
+ trainer = L.Trainer(
+ max_epochs=1,
+ overfit_batches=2,
+ precision="bf16-true",
+ )
+ trainer.fit(lit_model, data)
+
+ lit_model.llm.model.to(lit_model.llm.preprocessor.device)
+ text = lit_model.llm.generate("hello world")
+ assert isinstance(text, str)
+
+
+@pytest.mark.dependency(depends=["test_download_model"])
+@_RunIf(min_cuda_gpus=1)
+def test_usecase2_continued_pretraining_from_checkpoint(tmp_path):
+ lit_model = LitLLM(checkpoint_dir="EleutherAI/pythia-14m")
+ data = Alpaca2k()
+
+ data.connect(lit_model.llm.tokenizer, batch_size=4, max_seq_length=128)
+
+ trainer = L.Trainer(
+ accelerator="cuda",
+ max_epochs=1,
+ precision="bf16-true",
+ )
+ trainer.fit(lit_model, data)
+
+ lit_model.llm.model.to(lit_model.llm.preprocessor.device)
+ text = lit_model.llm.generate("hello world")
+ assert isinstance(text, str)
+
+
+@pytest.mark.dependency(depends=["test_download_model", "test_usecase2_continued_pretraining_from_checkpoint"])
+@_RunIf(min_cuda_gpus=1)
+def test_usecase3_resume_from_trainer_checkpoint(tmp_path):
+ def find_latest_checkpoint(directory):
+ latest_checkpoint = None
+ latest_time = 0
+
+ for root, _, files in os.walk(directory):
+ for file in files:
+ if file.endswith(".ckpt"):
+ file_path = os.path.join(root, file)
+ file_time = os.path.getmtime(file_path)
+ if file_time > latest_time:
+ latest_time = file_time
+ latest_checkpoint = file_path
+
+ return latest_checkpoint
+
+ lit_model = LitLLM(
+ checkpoint_dir="EleutherAI/pythia-14m", trainer_ckpt_path=find_latest_checkpoint("lightning_logs")
+ )
+
+ data = Alpaca2k()
+ data.connect(lit_model.llm.tokenizer, batch_size=4, max_seq_length=128)
+
+ trainer = L.Trainer(
+ accelerator="cuda",
+ max_epochs=1,
+ precision="bf16-true",
+ )
+ trainer.fit(lit_model, data)
+
+ lit_model.llm.model.to(lit_model.llm.preprocessor.device)
+ text = lit_model.llm.generate("hello world")
+ assert isinstance(text, str)
+
+
+@pytest.mark.dependency(depends=["test_download_model", "test_usecase2_continued_pretraining_from_checkpoint"])
+@_RunIf(min_cuda_gpus=1)
+def test_usecase4_manually_save_and_resume(tmp_path):
+ lit_model = LitLLM(checkpoint_dir="EleutherAI/pythia-14m")
+ data = Alpaca2k()
+
+ data.connect(lit_model.llm.tokenizer, batch_size=4, max_seq_length=128)
+
+ trainer = L.Trainer(
+ accelerator="cuda",
+ max_epochs=1,
+ precision="bf16-true",
+ )
+ trainer.fit(lit_model, data)
+
+ lit_model.llm.model.to(lit_model.llm.preprocessor.device)
+ text = lit_model.llm.generate("hello world")
+ assert isinstance(text, str)
+
+ lit_model.llm.save("finetuned_checkpoint")
+
+ del lit_model
+ lit_model = LitLLM(checkpoint_dir="finetuned_checkpoint")
+
+ trainer.fit(lit_model, data)
+
+ lit_model.llm.model.to(lit_model.llm.preprocessor.device)
+ text = lit_model.llm.generate("hello world")
+ assert isinstance(text, str)
diff --git a/tests/test_utils.py b/tests/test_utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..4f41366ca819248038de5372a27a7ae57468ecef
--- /dev/null
+++ b/tests/test_utils.py
@@ -0,0 +1,851 @@
+# Copyright Lightning AI. Licensed under the Apache License 2.0, see LICENSE file.
+import os
+from contextlib import redirect_stderr
+from dataclasses import asdict
+from io import StringIO
+from pathlib import Path
+from tempfile import NamedTemporaryFile, TemporaryDirectory
+from unittest import mock
+
+import pytest
+import torch
+import torch.nn.functional as F
+import yaml
+from lightning import Fabric
+from lightning.fabric.loggers import CSVLogger, TensorBoardLogger
+from lightning.fabric.plugins import BitsandbytesPrecision
+from lightning.pytorch.loggers import MLFlowLogger, WandbLogger
+from lightning_utilities.core.imports import RequirementCache
+
+from litgpt import GPT
+from litgpt.args import TrainArgs
+from litgpt.utils import (
+ CLI,
+ CycleIterator,
+ _RunIf,
+ capture_hparams,
+ check_file_size_on_cpu_and_warn,
+ check_nvlink_connectivity,
+ check_valid_checkpoint_dir,
+ choose_logger,
+ chunked_cross_entropy,
+ copy_config_files,
+ extend_checkpoint_dir,
+ find_resume_path,
+ fix_and_load_json,
+ incremental_save,
+ init_out_dir,
+ instantiate_bnb_optimizer,
+ instantiate_torch_optimizer,
+ num_parameters,
+ parse_devices,
+ save_hyperparameters,
+ select_sft_generate_example,
+)
+
+
+# match fails on windows. why did they have to use backslashes?
+@_RunIf(skip_windows=True)
+def test_check_valid_checkpoint_dir(tmp_path):
+ os.chdir(tmp_path)
+
+ out = StringIO()
+ with pytest.raises(SystemExit), redirect_stderr(out):
+ check_valid_checkpoint_dir(tmp_path)
+ out = out.getvalue().strip()
+ expected = f"""
+checkpoint_dir '{str(tmp_path.absolute())}' is missing the files: ['lit_model.pth', 'model_config.yaml', 'tokenizer.json OR tokenizer.model', 'tokenizer_config.json'].
+Find download instructions at https://github.com/Lightning-AI/litgpt/blob/main/tutorials
+
+See all download options by running:
+ litgpt download
+ """.strip()
+ assert out == expected
+
+ out = StringIO()
+ checkpoint_dir = tmp_path / "checkpoints" / "stabilityai" / "stablelm-base-alpha-3b"
+ with pytest.raises(SystemExit), redirect_stderr(out):
+ check_valid_checkpoint_dir(checkpoint_dir)
+ out = out.getvalue().strip()
+ expected = f"""
+checkpoint_dir '{str(checkpoint_dir.absolute())}' is not a checkpoint directory.
+Find download instructions at https://github.com/Lightning-AI/litgpt/blob/main/tutorials
+
+See all download options by running:
+ litgpt download
+ """.strip()
+ assert out == expected
+
+ out = StringIO()
+ checkpoint_dir.mkdir(parents=True)
+ foo_checkpoint_dir = tmp_path / "foo"
+ with pytest.raises(SystemExit), redirect_stderr(out):
+ check_valid_checkpoint_dir(foo_checkpoint_dir)
+ out = out.getvalue().strip()
+ expected = f"""
+checkpoint_dir '{str(foo_checkpoint_dir.absolute())}' is not a checkpoint directory.
+Find download instructions at https://github.com/Lightning-AI/litgpt/blob/main/tutorials
+
+You have downloaded locally:
+'{str(checkpoint_dir.absolute())}'
+
+See all download options by running:
+ litgpt download
+ """.strip()
+ assert out == expected
+
+
+def test_incremental_write(tmp_path):
+ sd = {str(k): torch.randn(5, 10) for k in range(3)}
+ sd["0"].someattr = 1
+ sd_expected = {k: v.clone() for k, v in sd.items()}
+ fn = str(tmp_path / "test.pt")
+ with incremental_save(fn) as f:
+ sd["0"] = f.store_early(sd["0"])
+ sd["2"] = f.store_early(sd["2"])
+ f.save(sd)
+ sd_actual = torch.load(fn)
+ assert sd_actual.keys() == sd_expected.keys()
+ assert sd_actual["0"].someattr == 1 # requires PyTorch 2.0+
+ for k, v_expected in sd_expected.items():
+ v_actual = sd_actual[k]
+ torch.testing.assert_close(v_expected, v_actual)
+ sd_actual = torch.load(fn, weights_only=True)
+ assert sd_actual.keys() == sd_expected.keys()
+ assert sd_actual["0"].someattr == 1 # requires PyTorch 2.0+
+ for k, v_expected in sd_expected.items():
+ v_actual = sd_actual[k]
+ torch.testing.assert_close(v_expected, v_actual)
+
+
+@pytest.mark.parametrize("B", (1, 2))
+@pytest.mark.parametrize("ignore_index", (None, -1, -2, -100))
+def test_chunked_cross_entropy(ignore_index, B):
+ V = 50
+ T = 25
+ regular_logits = torch.randn(B, T, V)
+ targets = torch.randint(0, V, (B, T))
+
+ if ignore_index is not None:
+ targets[:, [1, 4, 10, 19]] = ignore_index
+
+ baseline_loss = F.cross_entropy(
+ regular_logits.reshape(-1, regular_logits.size(-1)),
+ targets.reshape(-1),
+ ignore_index=(ignore_index if ignore_index is not None else -100),
+ )
+
+ ignore_index = ignore_index if ignore_index is not None else -100
+ regular_loss = chunked_cross_entropy(regular_logits, targets, chunk_size=0, ignore_index=ignore_index)
+ assert torch.equal(baseline_loss, regular_loss)
+ assert regular_loss.numel() == 1
+
+ chunked_loss = chunked_cross_entropy(regular_logits, targets, chunk_size=10, ignore_index=ignore_index)
+ torch.testing.assert_close(chunked_loss, regular_loss)
+ torch.testing.assert_close(chunked_loss, baseline_loss)
+
+ logit_chunk_size = 6
+ assert T % logit_chunk_size != 0 # ensure leftover
+ chunked_logits = list(regular_logits.split(logit_chunk_size, dim=1))
+ chunked_loss = chunked_cross_entropy(chunked_logits, targets, chunk_size=0, ignore_index=ignore_index)
+ torch.testing.assert_close(chunked_loss, regular_loss)
+ torch.testing.assert_close(chunked_loss, baseline_loss)
+
+ chunked_loss = chunked_cross_entropy(chunked_logits, targets, chunk_size=10, ignore_index=ignore_index)
+ torch.testing.assert_close(chunked_loss, regular_loss)
+ torch.testing.assert_close(chunked_loss, baseline_loss)
+
+
+def test_num_parameters():
+ model = torch.nn.Linear(2, 2)
+ assert num_parameters(model) == 6
+ assert num_parameters(model, requires_grad=True) == 6
+ assert num_parameters(model, requires_grad=False) == 0
+
+ model = torch.nn.Linear(2, 2)
+ model.bias.requires_grad = False
+ assert num_parameters(model) == 6
+ assert num_parameters(model, requires_grad=True) == 4
+ assert num_parameters(model, requires_grad=False) == 2
+
+
+@_RunIf(min_cuda_gpus=1)
+@pytest.mark.parametrize("mode", ["nf4", "nf4-dq", "fp4", "fp4-dq", "int8", "int8-training"])
+def test_num_parameters_bitsandbytes(mode):
+ plugin = BitsandbytesPrecision(mode=mode)
+ fabric = Fabric(plugins=plugin, accelerator="cuda", devices=1)
+
+ model = torch.nn.Linear(10, 10)
+ model = fabric.setup(model)
+ assert num_parameters(model) == 110
+
+ with fabric.init_module(empty_init=True):
+ model = GPT.from_name("pythia-14m")
+ assert num_parameters(model) == 14067712
+
+
+def test_cycle_iterator():
+ iterator = CycleIterator([])
+ with pytest.raises(StopIteration):
+ next(iterator)
+
+ iterator = CycleIterator(range(3))
+ assert iterator.epoch == 0
+ assert next(iterator) == 0
+ assert iterator.epoch == 0
+ assert next(iterator) == 1
+ assert iterator.epoch == 0
+ assert next(iterator) == 2
+ assert iterator.epoch == 0
+ assert next(iterator) == 0
+ assert iterator.epoch == 1
+
+
+def test_parse_devices():
+ with pytest.raises(ValueError, match="must be 'auto' or a positive integer"):
+ assert parse_devices(0)
+ with pytest.raises(ValueError, match="must be 'auto' or a positive integer"):
+ assert parse_devices(-2)
+
+ with mock.patch("litgpt.utils.torch.cuda.device_count", return_value=0):
+ assert parse_devices("auto") == 1 # CPU
+ assert parse_devices(10) == 10 # leave validation up to Fabric later on
+ with mock.patch("litgpt.utils.torch.cuda.device_count", return_value=1):
+ assert parse_devices("auto") == 1 # CUDA
+ with mock.patch("litgpt.utils.torch.cuda.device_count", return_value=3):
+ assert parse_devices("auto") == 3
+ assert parse_devices(-1) == 3
+
+ assert parse_devices(5) == 5
+
+
+def test_copy_config_files(fake_checkpoint_dir, tmp_path):
+ copy_config_files(fake_checkpoint_dir, tmp_path)
+ expected = {"model_config.yaml", "tokenizer_config.json", "tokenizer.json"}
+ contents = set(os.listdir(tmp_path))
+ assert expected.issubset(contents)
+
+
+def test_capture_hparams():
+ integer = 1
+ string = "string"
+ boolean = True
+ none = None
+ path = Path("/path")
+ dataclass = TrainArgs()
+ other = torch.nn.Linear(1, 1)
+ hparams = capture_hparams()
+ assert hparams == {
+ "integer": integer,
+ "string": string,
+ "boolean": boolean,
+ "none": none,
+ "path": path,
+ "dataclass": asdict(dataclass),
+ "other": str(other),
+ }
+
+
+def _test_function(out_dir: Path, foo: bool = False, bar: int = 1):
+ save_hyperparameters(_test_function, out_dir)
+
+
+def test_save_hyperparameters(tmp_path):
+ with mock.patch("sys.argv", ["any.py", str(tmp_path), "--foo", "True"]):
+ CLI(_test_function)
+
+ with open(tmp_path / "hyperparameters.yaml", encoding="utf-8") as file:
+ hparams = yaml.full_load(file)
+
+ assert hparams["out_dir"] == str(tmp_path)
+ assert hparams["foo"] is True
+ assert hparams["bar"] == 1
+
+
+def _test_function2(out_dir: Path, foo: bool = False, bar: int = 1):
+ assert False, "I only exist as a signature, but I should not run."
+
+
+@pytest.mark.parametrize(
+ "command",
+ [
+ "any.py",
+ "litgpt finetune",
+ "litgpt finetune_full",
+ "litgpt finetune_lora",
+ "litgpt finetune_adapter",
+ "litgpt finetune_adapter_v2",
+ "litgpt pretrain",
+ ],
+)
+def test_save_hyperparameters_known_commands(command, tmp_path):
+ with mock.patch("sys.argv", [*command.split(" "), str(tmp_path), "--foo", "True"]):
+ save_hyperparameters(_test_function2, tmp_path)
+
+ with open(tmp_path / "hyperparameters.yaml", encoding="utf-8") as file:
+ hparams = yaml.full_load(file)
+
+ assert hparams["out_dir"] == str(tmp_path)
+ assert hparams["foo"] is True
+ assert hparams["bar"] == 1
+
+
+def test_choose_logger(tmp_path):
+ assert isinstance(choose_logger("csv", out_dir=tmp_path, name="csv"), CSVLogger)
+ if RequirementCache("tensorboard"):
+ assert isinstance(choose_logger("tensorboard", out_dir=tmp_path, name="tb"), TensorBoardLogger)
+ if RequirementCache("wandb"):
+ assert isinstance(choose_logger("wandb", out_dir=tmp_path, name="wandb"), WandbLogger)
+ if RequirementCache("mlflow") or RequirementCache("mlflow-skinny"):
+ assert isinstance(choose_logger("mlflow", out_dir=tmp_path, name="wandb"), MLFlowLogger)
+ with pytest.raises(ValueError, match="`--logger_name=foo` is not a valid option."):
+ choose_logger("foo", out_dir=tmp_path, name="foo")
+
+
+@pytest.mark.parametrize(
+ "path_type, input_path, expected",
+ [
+ ("relative", "some/relative/path", "some/relative/path"),
+ ("absolute", "/usr/absolute/path", "/usr/absolute/path"),
+ ("env_relative", "some/relative/path", "prefix/some/relative/path"),
+ ("env_absolute", "/usr/absolute/path", "/usr/absolute/path"),
+ ],
+)
+def test_init_out_dir(path_type, input_path, expected):
+ if path_type.startswith("env_"):
+ with mock.patch.dict(os.environ, {"LIGHTNING_ARTIFACTS_DIR": "prefix"}):
+ result = init_out_dir(input_path)
+ assert result == Path(expected), f"Failed for {path_type} with input {input_path} (result {result})"
+ else:
+ result = init_out_dir(input_path)
+ if "LIGHTNING_ARTIFACTS_DIR" not in os.environ:
+ assert result == Path(expected), f"Failed for {path_type} with input {input_path} (result {result})"
+ else:
+ assert result == Path(os.getenv("LIGHTNING_ARTIFACTS_DIR")) / expected, (
+ f"Failed for {path_type} with input {input_path} (result {result})"
+ )
+
+
+def test_find_resume_path(tmp_path):
+ assert find_resume_path(resume=None, out_dir=Path("does/not/exist")) is None
+ assert find_resume_path(resume=Path("does/not/exist"), out_dir=Path("does/not/matter")) == Path("does/not/exist")
+ assert find_resume_path(resume=(tmp_path / "checkpoint.pt"), out_dir=Path("does/not/matter")) == (
+ tmp_path / "checkpoint.pt"
+ )
+
+ # `resume='auto'` does not enforce the checkpoint to exist
+ assert find_resume_path(resume="auto", out_dir=Path("does/not/exist")) is None
+
+ # `resume=True` requires a checkpoint to exist
+ with pytest.raises(FileNotFoundError, match="You passed `--resume=True`, but no checkpoint file was found"):
+ find_resume_path(resume=True, out_dir=Path("does/not/exist"))
+ with pytest.raises(FileNotFoundError, match="You passed `--resume=True`, but no checkpoint file was found"):
+ find_resume_path(resume=True, out_dir=tmp_path)
+
+ (tmp_path / "step-001").mkdir()
+ (tmp_path / "step-001" / "lit_model.pth").touch()
+ (tmp_path / "step-002").mkdir()
+ (tmp_path / "step-002" / "lit_model.pth").touch()
+ (tmp_path / "step-003").mkdir()
+ (tmp_path / "step-003" / "lit_model.pth").touch()
+
+ assert find_resume_path(resume=True, out_dir=tmp_path) == (tmp_path / "step-003" / "lit_model.pth")
+ assert find_resume_path(resume="auto", out_dir=tmp_path) == (tmp_path / "step-003" / "lit_model.pth")
+
+
+@pytest.fixture
+def model_parameters():
+ return [torch.nn.Parameter(torch.randn(2, 2))]
+
+
+def test_instantiate_bnb_optimizer_with_str(model_parameters):
+ import bitsandbytes as bnb
+
+ with mock.patch("litgpt.utils.get_argument_names", return_value={"lr", "eps", "weight_decay"}):
+ optimizer = instantiate_bnb_optimizer("AdamW", model_parameters)
+ assert isinstance(optimizer, bnb.optim.adamw.PagedAdamW)
+
+
+def test_instantiate_bnb_optimizer_with_dict(model_parameters):
+ import bitsandbytes as bnb
+
+ optimizer_dict = {"class_path": "AdamW", "init_args": {"lr": 0.01}}
+ with mock.patch("litgpt.utils.get_argument_names", return_value={"lr", "eps", "weight_decay"}):
+ optimizer = instantiate_bnb_optimizer(optimizer_dict, model_parameters)
+ assert isinstance(optimizer, bnb.optim.adamw.PagedAdamW)
+ assert optimizer.param_groups[0]["lr"] == 0.01
+
+
+def test_instantiate_bnb_optimizer_with_invalid_str(model_parameters):
+ with pytest.raises(ValueError, match="only supports the AdamW"):
+ instantiate_bnb_optimizer("SGD", model_parameters)
+
+
+def test_instantiate_torch_optimizer_with_str(model_parameters):
+ optimizer = instantiate_torch_optimizer("Adam", model_parameters, lr=0.01)
+ assert isinstance(optimizer, torch.optim.Adam)
+ assert optimizer.param_groups[0]["lr"] == 0.01
+
+
+def test_instantiate_torch_optimizer_with_class(model_parameters):
+ optimizer = instantiate_torch_optimizer(
+ {"class_path": "torch.optim.Adam", "init_args": {"lr": 123}}, model_parameters, lr=0.02
+ )
+ assert isinstance(optimizer, torch.optim.Adam)
+ # init args gets overridden
+ assert optimizer.param_groups[0]["lr"] == 0.02
+
+
+@pytest.mark.parametrize(
+ "input_path, expected",
+ [
+ (Path("checkpoints/my_model"), Path("checkpoints/my_model")),
+ (Path("checkpoints/my_model"), Path("./checkpoints/my_model")),
+ ],
+)
+def test_extend_checkpoint_dir_is_prefixed(input_path, expected):
+ original_dir = Path.cwd() # Save the current directory
+ with TemporaryDirectory() as tmp_dir:
+ os.chdir(tmp_dir)
+
+ try:
+ if not input_path.is_absolute():
+ input_path = Path(tmp_dir) / input_path
+ if not expected.is_absolute():
+ expected = Path(tmp_dir) / expected
+ input_path.parent.mkdir(parents=True, exist_ok=True)
+ input_path.touch(exist_ok=True)
+ assert extend_checkpoint_dir(input_path) == expected
+ finally:
+ os.chdir(original_dir) # Reset the current directory
+
+
+@pytest.mark.parametrize(
+ "input_path, expected",
+ [
+ (Path("my_model"), Path("checkpoints/my_model")),
+ (Path("my_model"), Path("./checkpoints/my_model")),
+ ],
+)
+def test_extend_checkpoint_dir(input_path, expected):
+ original_dir = Path.cwd() # Save the current directory
+ with TemporaryDirectory() as tmp_dir:
+ os.chdir(tmp_dir)
+
+ try:
+ if not input_path.is_absolute():
+ input_path = Path(tmp_dir) / "checkpoints" / input_path
+ if not expected.is_absolute():
+ expected = Path(tmp_dir) / expected
+ input_path.parent.mkdir(parents=True, exist_ok=True)
+ input_path.touch(exist_ok=True)
+ assert extend_checkpoint_dir(input_path) == expected
+ finally:
+ os.chdir(original_dir) # Reset the current directory
+
+
+@pytest.mark.parametrize(
+ "input_path, expected",
+ [
+ (Path("my_model"), Path("my_model")),
+ (Path("/my_model"), Path("/my_model")),
+ ],
+)
+def test_extend_checkpoint_dir_dont_exist(input_path, expected):
+ assert extend_checkpoint_dir(input_path) == expected
+
+
+def test_file_size_below_limit_on_cpu():
+ # Test file size below limit on CPU
+ with NamedTemporaryFile() as temp_file:
+ with mock.patch("os.path.getsize", return_value=4_000_000_000):
+ size = check_file_size_on_cpu_and_warn(temp_file.name, "cpu")
+ assert size == 4_000_000_000
+
+
+def test_file_size_above_limit_on_cpu():
+ # Test file size above limit on CPU
+ with NamedTemporaryFile() as temp_file:
+ with mock.patch("os.path.getsize", return_value=4_600_000_000):
+ with pytest.warns(UserWarning) as record:
+ size = check_file_size_on_cpu_and_warn(temp_file.name, "cpu")
+ assert size == 4_600_000_000
+ assert "over 4.2 GB" in str(record[0].message)
+
+
+def test_file_size_above_limit_on_gpu():
+ # Test file size above limit on GPU should not warn
+ with NamedTemporaryFile() as temp_file:
+ with mock.patch("os.path.getsize", return_value=4_600_000_000):
+ size = check_file_size_on_cpu_and_warn(temp_file.name, "gpu")
+ assert size == 4_600_000_000
+
+
+@pytest.fixture
+def mock_cuda_is_available_true(monkeypatch):
+ """Fixture to mock torch.cuda.is_available() to return True."""
+ monkeypatch.setattr(torch.cuda, "is_available", lambda: True)
+
+
+@pytest.fixture
+def mock_nvidia_device_properties(monkeypatch):
+ """Fixture to mock torch.cuda.get_device_properties() for NVIDIA GPUs."""
+ mock_device_properties = mock.MagicMock(name="GPU Device", spec=["name"])
+ mock_device_properties.name = "NVIDIA RTX A6000"
+ monkeypatch.setattr(torch.cuda, "get_device_properties", lambda idx: mock_device_properties)
+
+
+@pytest.fixture
+def mock_amd_device_properties(monkeypatch):
+ """Fixture to mock torch.cuda.get_device_properties() for AMD GPUs."""
+ mock_device_properties = mock.MagicMock(name="GPU Device", spec=["name"])
+ mock_device_properties.name = "AMD Instinct MI250X"
+ monkeypatch.setattr(torch.cuda, "get_device_properties", lambda idx: mock_device_properties)
+
+
+@pytest.fixture
+def all_nvlink_connected_output():
+ return mock.MagicMock(
+ stdout=""" GPU0 GPU1 GPU2 GPU3
+GPU0 X NV12 NV12 NV12
+GPU1 NV12 X NV12 NV12
+GPU2 NV12 NV12 X NV12
+GPU3 NV12 NV12 NV12 X""",
+ returncode=0,
+ )
+
+
+@mock.patch("subprocess.run")
+def test_all_nvlink_connected(
+ mock_run, all_nvlink_connected_output, mock_cuda_is_available_true, mock_nvidia_device_properties
+):
+ mock_run.return_value = all_nvlink_connected_output
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call("All GPUs are fully connected via NVLink.")
+
+
+@pytest.fixture
+def nvlink_partially_connected_output():
+ return mock.MagicMock(
+ stdout=""" GPU0 GPU1 GPU2 GPU3 CPU Affinity
+GPU0 X NV1 SYS SYS 0-7
+GPU1 NV1 X SYS SYS 0-7
+GPU2 SYS SYS X NV1 8-15
+GPU3 SYS SYS NV1 X 8-15
+
+Legend:
+ X = Self
+ NV1 = Connected via NVLink with 1 hop
+ SYS = Connected via the PCIe or CPU subsystem""",
+ returncode=0,
+ )
+
+
+@mock.patch("subprocess.run")
+def test_nvlink_partially_connected_output(
+ mock_run, nvlink_partially_connected_output, mock_cuda_is_available_true, mock_nvidia_device_properties
+):
+ mock_run.return_value = nvlink_partially_connected_output
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call(
+ "Warning: Not all GPUs are fully connected via NVLink. Some GPUs are connected via slower interfaces. "
+ "It is recommended to switch to a different machine with faster GPU connections for optimal multi-GPU training performance."
+ )
+
+
+@pytest.fixture
+def nvlink_not_connected_output():
+ return mock.MagicMock(
+ stdout=""" GPU0 GPU1 GPU2 GPU3 CPU Affinity NUMA Affinity GPU NUMA ID
+GPU0 X PHB PHB PHB 0-47 0 N/A
+GPU1 PHB X PHB PHB 0-47 0 N/A
+GPU2 PHB PHB X PHB 0-47 0 N/A
+GPU3 PHB PHB PHB X 0-47 0 N/A
+
+Legend:
+
+ X = Self
+ SYS = Connection traversing PCIe as well as the SMP interconnect between NUMA nodes (e.g., QPI/UPI)
+ NODE = Connection traversing PCIe as well as the interconnect between PCIe Host Bridges within a NUMA node
+ PHB = Connection traversing PCIe as well as a PCIe Host Bridge (typically the CPU)
+ PXB = Connection traversing multiple PCIe bridges (without traversing the PCIe Host Bridge)
+ PIX = Connection traversing at most a single PCIe bridge
+ NV# = Connection traversing a bonded set of # NVLinks""",
+ returncode=0,
+ )
+
+
+@mock.patch("subprocess.run")
+def test_nvlink_not_connected_output(
+ mock_run, nvlink_not_connected_output, mock_cuda_is_available_true, mock_nvidia_device_properties
+):
+ mock_run.return_value = nvlink_not_connected_output
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call(
+ "Warning: Not all GPUs are fully connected via NVLink. Some GPUs are connected via slower interfaces. "
+ "It is recommended to switch to a different machine with faster GPU connections for optimal multi-GPU training performance."
+ )
+
+
+@pytest.fixture
+def nvlink_all_gpu_connected_but_other_connected_output():
+ return mock.MagicMock(
+ stdout=""" GPU0 GPU1 GPU2 GPU3 GPU4 GPU5 GPU6 GPU7 NIC0 NIC1 NIC2 NIC3 NIC4 NIC5 NIC6 NIC7 NIC8 NIC9 CPU Affinity NUMA Affinity GPU NUMA ID
+GPU0 X NV12 NV12 NV12 NV12 NV12 NV12 NV12 SYS SYS PXB PXB SYS SYS SYS SYS SYS SYS 0-63,128-191 0 N/A
+GPU1 NV12 X NV12 NV12 NV12 NV12 NV12 NV12 SYS SYS PXB PXB SYS SYS SYS SYS SYS SYS 0-63,128-191 0 N/A
+GPU2 NV12 NV12 X NV12 NV12 NV12 NV12 NV12 PXB PXB SYS SYS SYS SYS SYS SYS SYS SYS 0-63,128-191 0 N/A
+GPU3 NV12 NV12 NV12 X NV12 NV12 NV12 NV12 PXB PXB SYS SYS SYS SYS SYS SYS SYS SYS 0-63,128-191 0 N/A
+GPU4 NV12 NV12 NV12 NV12 X NV12 NV12 NV12 SYS SYS SYS SYS SYS SYS SYS SYS PXB PXB 64-127,192-254 1 N/A
+GPU5 NV12 NV12 NV12 NV12 NV12 X NV12 NV12 SYS SYS SYS SYS SYS SYS SYS SYS PXB PXB 64-127,192-254 1 N/A
+GPU6 NV12 NV12 NV12 NV12 NV12 NV12 X NV12 SYS SYS SYS SYS PXB PXB SYS SYS SYS SYS 64-127,192-254 1 N/A
+GPU7 NV12 NV12 NV12 NV12 NV12 NV12 NV12 X SYS SYS SYS SYS PXB PXB SYS SYS SYS SYS 64-127,192-254 1 N/A
+NIC0 SYS SYS PXB PXB SYS SYS SYS SYS X PIX SYS SYS SYS SYS SYS SYS SYS SYS
+NIC1 SYS SYS PXB PXB SYS SYS SYS SYS PIX X SYS SYS SYS SYS SYS SYS SYS SYS
+NIC2 PXB PXB SYS SYS SYS SYS SYS SYS SYS SYS X PXB SYS SYS SYS SYS SYS SYS
+NIC3 PXB PXB SYS SYS SYS SYS SYS SYS SYS SYS PXB X SYS SYS SYS SYS SYS SYS
+NIC4 SYS SYS SYS SYS SYS SYS PXB PXB SYS SYS SYS SYS X PXB SYS SYS SYS SYS
+NIC5 SYS SYS SYS SYS SYS SYS PXB PXB SYS SYS SYS SYS PXB X SYS SYS SYS SYS
+NIC6 SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS X PIX SYS SYS
+NIC7 SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS PIX X SYS SYS
+NIC8 SYS SYS SYS SYS PXB PXB SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS X PXB
+NIC9 SYS SYS SYS SYS PXB PXB SYS SYS SYS SYS SYS SYS SYS SYS SYS SYS PXB X
+
+Legend:
+
+ X = Self
+ SYS = Connection traversing PCIe as well as the SMP interconnect between NUMA nodes (e.g., QPI/UPI)
+ NODE = Connection traversing PCIe as well as the interconnect between PCIe Host Bridges within a NUMA node
+ PHB = Connection traversing PCIe as well as a PCIe Host Bridge (typically the CPU)
+ PXB = Connection traversing multiple PCIe bridges (without traversing the PCIe Host Bridge)
+ PIX = Connection traversing at most a single PCIe bridge
+ NV# = Connection traversing a bonded set of # NVLinks
+
+NIC Legend:
+
+ NIC0: mlx5_0
+ NIC1: mlx5_1
+ NIC2: mlx5_2
+ NIC3: mlx5_3
+ NIC4: mlx5_4
+ NIC5: mlx5_5
+ NIC6: mlx5_6
+ NIC7: mlx5_7
+ NIC8: mlx5_8
+ NIC9: mlx5_9
+
+""",
+ returncode=0,
+ )
+
+
+@mock.patch("subprocess.run")
+def test_nvlink_all_gpu_connected_but_other_connected_output(
+ mock_run,
+ nvlink_all_gpu_connected_but_other_connected_output,
+ mock_cuda_is_available_true,
+ mock_nvidia_device_properties,
+):
+ mock_run.return_value = nvlink_all_gpu_connected_but_other_connected_output
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call("All GPUs are fully connected via NVLink.")
+
+
+@pytest.fixture
+def nvidia_smi_nvlink_output_dual_gpu_no_numa():
+ return mock.MagicMock(
+ stdout="""
+ GPU0 GPU1 CPU Affinity NUMA Affinity GPU NUMA ID
+GPU0 X NV1 0-15 0 N/A
+GPU1 NV1 X 0-15 0 N/A
+
+Legend:
+
+ X = Self
+ SYS = Connection traversing PCIe as well as the SMP interconnect between NUMA nodes (e.g., QPI/UPI)
+ NODE = Connection traversing PCIe as well as the interconnect between PCIe Host Bridges within a NUMA node
+ PHB = Connection traversing PCIe as well as a PCIe Host Bridge (typically the CPU)
+ PXB = Connection traversing multiple PCIe bridges (without traversing the PCIe Host Bridge)
+ PIX = Connection traversing at most a single PCIe bridge
+ NV# = Connection traversing a bonded set of # NVLinks
+ """,
+ returncode=0,
+ )
+
+
+@mock.patch("subprocess.run")
+def test_check_nvlink_connectivity__returns_fully_connected_when_nvidia_all_nvlink_two_gpus(
+ mock_run, nvidia_smi_nvlink_output_dual_gpu_no_numa, mock_cuda_is_available_true, mock_nvidia_device_properties
+):
+ mock_run.return_value = nvidia_smi_nvlink_output_dual_gpu_no_numa
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call("All GPUs are fully connected via NVLink.")
+
+
+@pytest.fixture
+def rocm_smi_xgmi_output_multi_gpu():
+ """
+ rocm-smi --showtopotype on ROCm 6.0.3+
+ """
+ return mock.MagicMock(
+ stdout="""
+=============================== ROCm System Management Interface ============================
+=============================== Link Type between two GPUs ===============================
+ GPU0 GPU1 GPU2 GPU3 GPU4 GPU5 GPU6 GPU7
+GPU0 0 XGMI XGMI XGMI XGMI XGMI XGMI XGMI
+GPU1 XGMI 0 XGMI XGMI XGMI XGMI XGMI XGMI
+GPU2 XGMI XGMI 0 XGMI XGMI XGMI XGMI XGMI
+GPU3 XGMI XGMI XGMI 0 XGMI XGMI XGMI XGMI
+GPU4 XGMI XGMI XGMI XGMI 0 XGMI XGMI XGMI
+GPU5 XGMI XGMI XGMI XGMI XGMI 0 XGMI XGMI
+GPU6 XGMI XGMI XGMI XGMI XGMI XGMI 0 XGMI
+GPU7 XGMI XGMI XGMI XGMI XGMI XGMI XGMI 0
+================================== End of ROCm SMI Log ===================================
+ """,
+ returncode=0,
+ )
+
+
+@mock.patch("subprocess.run")
+def test_check_nvlink_connectivity__returns_fully_connected_when_amd_all_xgmi_8_gpus(
+ mock_run, rocm_smi_xgmi_output_multi_gpu, mock_cuda_is_available_true, mock_amd_device_properties
+):
+ mock_run.return_value = rocm_smi_xgmi_output_multi_gpu
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call("All GPUs are fully connected via XGMI.")
+
+
+@mock.patch("subprocess.run")
+def test_check_nvlink_connectivity__returns_no_gpus_when_no_gpus(mock_run, monkeypatch):
+ monkeypatch.setattr(torch.cuda, "is_available", lambda: False)
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call("No GPUs available")
+
+
+@mock.patch("subprocess.run")
+def test_check_nvlink_connectivity__returns_unrecognized_vendor_when_unrecognized_vendor(
+ mock_run, monkeypatch, mock_cuda_is_available_true
+):
+ mock_device_properties = mock.MagicMock(name="GPU Device", spec=["name"])
+ mock_device_properties.name = "GARAGE DIY HYPERSCALER GPU"
+ monkeypatch.setattr(torch.cuda, "get_device_properties", lambda idx: mock_device_properties)
+ with mock.patch("builtins.print") as mock_print:
+ check_nvlink_connectivity()
+ mock_print.assert_any_call("Unrecognized GPU vendor: GARAGE DIY HYPERSCALER GPU")
+
+
+def test_fix_and_load_json():
+ # Test 1: Invalid JSON string with a trailing comma
+ invalid_json_trailing_comma = """
+ {
+ "_from_model_config": true,
+ "bos_token_id": 128000,
+ "eos_token_id": 128001,
+ "transformers_version": "4.45.0.dev0",
+ "do_sample": true,
+ "temperature": 0.6,
+ "top_p": 0.9,
+ }
+ """
+
+ expected_output_trailing_comma = {
+ "_from_model_config": True,
+ "bos_token_id": 128000,
+ "eos_token_id": 128001,
+ "transformers_version": "4.45.0.dev0",
+ "do_sample": True,
+ "temperature": 0.6,
+ "top_p": 0.9,
+ }
+
+ result_trailing_comma = fix_and_load_json(invalid_json_trailing_comma)
+ assert result_trailing_comma == expected_output_trailing_comma
+
+ # Test 2: Invalid JSON string with missing commas between properties
+ invalid_json_missing_commas = """
+ {
+ "_from_model_config": true,
+ "bos_token_id": 128000,
+ "eos_token_id": 128001,
+ "transformers_version": "4.45.0.dev0"
+ "do_sample": true,
+ "temperature": 0.6,
+ "top_p": 0.9,
+ }
+ """
+
+ expected_output_missing_commas = {
+ "_from_model_config": True,
+ "bos_token_id": 128000,
+ "eos_token_id": 128001,
+ "transformers_version": "4.45.0.dev0",
+ "do_sample": True,
+ "temperature": 0.6,
+ "top_p": 0.9,
+ }
+
+ result_missing_commas = fix_and_load_json(invalid_json_missing_commas)
+ assert result_missing_commas == expected_output_missing_commas
+
+
+def test_select_sft_generate_example():
+ eval_mock = mock.MagicMock()
+ data_mock = mock.MagicMock()
+
+ test_dataset = {"data": [{"instruction": "Test instruction 1"}, {"instruction": "Test instruction 2"}]}
+ train_dataset = {"data": [{"instruction": "Train instruction 1"}, {"instruction": "Train instruction 2"}]}
+
+ data_mock.test_dataset.data = test_dataset["data"]
+ data_mock.train_dataset.data = train_dataset["data"]
+
+ # Test "first" instruction from test dataset
+ eval_mock.evaluate_example = "first"
+ instruction = select_sft_generate_example(eval_mock, data_mock)
+ assert instruction == "Test instruction 1"
+
+ # Test "first" instruction from train dataset when test dataset is empty
+ data_mock.test_dataset.data = []
+ instruction = select_sft_generate_example(eval_mock, data_mock)
+ assert instruction == "Train instruction 1"
+
+ # Test random selection from test dataset
+ eval_mock.evaluate_example = "random"
+ data_mock.test_dataset.data = [{"instruction": "Test instruction 1"}, {"instruction": "Test instruction 2"}]
+ with mock.patch("random.randint", return_value=1):
+ instruction = select_sft_generate_example(eval_mock, data_mock)
+ assert instruction == "Test instruction 2"
+
+ # Test random selection from train dataset when test dataset is empty
+ data_mock.test_dataset.data = []
+ with mock.patch("random.randint", return_value=1):
+ instruction = select_sft_generate_example(eval_mock, data_mock)
+ assert instruction == "Train instruction 2"
+
+ # Test specific index from test dataset
+ eval_mock.evaluate_example = 1
+ data_mock.test_dataset.data = [{"instruction": "Test instruction 1"}, {"instruction": "Test instruction 2"}]
+ instruction = select_sft_generate_example(eval_mock, data_mock)
+ assert instruction == "Test instruction 2"
+
+ # Test specific index from train dataset when test dataset has fewer elements
+ data_mock.test_dataset.data = [{"instruction": "Test instruction 1"}]
+ instruction = select_sft_generate_example(eval_mock, data_mock)
+ assert instruction == "Train instruction 2"
+
+ # Test out-of-range index
+ eval_mock.evaluate_example = 2
+ data_mock.test_dataset.data = [{"instruction": "Test instruction 1"}]
+ data_mock.train_dataset.data = [{"instruction": "Train instruction 1"}]
+ with pytest.raises(IndexError):
+ select_sft_generate_example(eval_mock, data_mock)
+
+ # Test unknown evaluation type
+ eval_mock.evaluate_example = "unknown"
+ with pytest.raises(ValueError):
+ select_sft_generate_example(eval_mock, data_mock)
diff --git a/tutorials/0_to_litgpt.md b/tutorials/0_to_litgpt.md
new file mode 100644
index 0000000000000000000000000000000000000000..7eb022930bb0cac04e1f37ad0537eefc8f3d5f98
--- /dev/null
+++ b/tutorials/0_to_litgpt.md
@@ -0,0 +1,630 @@
+# Zero to LitGPT: Getting Started with Pretraining, Finetuning, and Using LLMs
+
+
+
+This tutorial walks you through the main features and usage patterns for ⚡️LitGPT, a library for pretraining, finetuning, and using LLMs that focuses on an efficient user experience while being developer-friendly.
+
+The topics, following the installation of LitGPT, are in chronological order, reflecting the steps in an LLM lifecycle: Pretraining → Finetuning → Inference.
+
+
+
+
+
+
+
+
+
+
+
+However, it is also possible, and even common, to use and deploy models with LitGPT without pretraining and finetuning. So, if you are not interested in pretraining and finetuning, please feel free to skip these sections.
+
+
+
+
+
+
+## Install LitGPT
+
+LitGPT is available as a Python library from the PyPI package repository, and we recommend installing it using Python's `pip` installer module, including all required package dependencies:
+
+```bash
+pip install 'litgpt[all]'
+```
+
+Alternatively, if you are a researcher or developer planning to make changes to LitGPT, you can clone the GitHub repository and install it from a local folder as follows:
+
+```
+git clone https://github.com/Lightning-AI/litgpt.git
+cd litgpt
+pip install -e '.[all]'
+```
+
+
+
+## Pretrain LLMs
+
+Pretraining LLMs requires substantial compute resources and time commitment. For that reason, most researchers and practitioners prefer to skip this step and continue with the *Download pretrained model weights* section instead.
+
+However, if you feel adventurous and want to pretrain your own LLM, here's how.
+
+First, we have to decide which type of model architecture we want to use. We list the available architectures by using the `pretrain` command without any additional arguments:
+
+```bash
+litgpt pretrain list
+```
+
+This prints a list of all available model architectures in alphabetical order:
+
+```
+Camel-Platypus2-13B
+Camel-Platypus2-70B
+CodeLlama-13b-Python-hf
+...
+EleutherAI/pythia-410m
+...
+vicuna-13b-v1.3
+vicuna-13b-v1.5
+vicuna-13b-v1.5-16k
+vicuna-33b-v1.3
+vicuna-7b-v1.3
+vicuna-7b-v1.5
+vicuna-7b-v1.5-16k
+```
+
+Suppose we want to pretraining the 1.1B parameter small `tiny-llama-1.1b` model. Before starting finetuning, we must also choose and download a tokenizer.
+
+We can download a tokenizer via the `download` command. Note that running `litgpt download list` will also print a list of all available models and tokenizers to download.
+
+To filter for specific models, e.g., TinyLlama, we can use the `grep` command in our terminal:
+
+```bash
+litgpt download list | grep TinyLlama
+```
+
+This prints
+
+```
+TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+TinyLlama/TinyLlama-1.1B-Chat-v1.0
+```
+
+Let's now download the tokenizer corresponding to `TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T` that we can then use to pretrain the TinyLlama model:
+
+```
+litgpt download \
+ TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T \
+ --tokenizer_only true
+```
+
+(when specified)
+
+
+
+
+
+
+
+Next, we can pretrain the model on the OpenWebText dataset with the default setting as follows:
+
+```bash
+litgpt pretrain tiny-llama-1.1b \
+ --data OpenWebText \
+ --tokenizer_dir TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+```
+
+If you are interested in additional settings, you can use the help command as follows:
+
+```
+litgpt pretrain --help
+```
+
+
+
+> [!TIP]
+> Above, we only covered the most basic commands for pretraining a model using LitGPT. We highly recommend checking the resources below if you are interested in pretraining a model.
+
+
+
+**More information and additional resources**
+
+- [tutorials/pretrain](./pretrain.md): General information about pretraining in LitGPT
+- [tutorials/pretrain_tinyllama](./pretrain_tinyllama.md): A tutorial for finetuning a 1.1B TinyLlama model on 3 trillion tokens
+- [config_hub/pretrain](../config_hub/pretrain): Pre-made config files for pretraining that work well out of the box
+- Project templates in reproducible environments with multi-GPU and multi-node support:
+ - [Prepare the TinyLlama 1T token dataset](https://lightning.ai/lightning-ai/studios/prepare-the-tinyllama-1t-token-dataset)
+ - [Pretrain LLMs - TinyLlama 1.1B](https://lightning.ai/lightning-ai/studios/pretrain-llms-tinyllama-1-1b)
+ - [Continued Pretraining with TinyLlama 1.1B](https://lightning.ai/lightning-ai/studios/continued-pretraining-with-tinyllama-1-1b)
+
+
+
+## Download pretrained model weights
+
+Most practical use cases, like LLM inference (/chat) or finetuning, involve using pretrained model weights. LitGPT supports a large number of model weights, which can be listed by executing the `download` with `list` as an argument:
+
+```bash
+litgpt download list
+```
+
+This will print a (long) list of all supported pretrained models (abbreviated for readability below):
+
+```
+..
+google/gemma-2b
+...
+meta-llama/Llama-2-7b-hf
+...
+microsoft/phi-2
+...
+mistralai/Mixtral-8x7B-Instruct-v0.1
+...
+```
+
+To download the model weights, provide one of the model strings above as input argument:
+
+```bash
+litgpt download microsoft/phi-2
+```
+
+```
+model-00001-of-00002.safetensors: 100%|████████████████████████████████| 5.00G/5.00G [00:40<00:00, 124MB/s]
+model-00002-of-00002.safetensors: 100%|████████████████████████████████| 564M/564M [00:01<00:00, 330MB/s]
+tokenizer.json: 100%|██████████████████████████████████████████████████| 2.11M/2.11M [00:00<00:00, 54.0MB/s]
+...
+Converting checkpoint files to LitGPT format.
+Processing checkpoints/microsoft/phi-2/model-00001-of-00002.bin
+...
+Saving converted checkpoint to checkpoints/microsoft/phi-2
+```
+
+
+
+
+> [!TIP]
+> Note that some models, such as Llama 2, require that you accept Meta AI's terms of service for this model, and you need to use a special access token via the `litgpt download ... --access_token ...` option. For more information, visit the respective Model Hub website, e.g., [meta-llama/Llama-2-7b-hf](https://huggingface.co/meta-llama/Llama-2-7b-hf). The access token can be created under your Model Hub in the `Profile > Access Tokens` menu.
+
+
+
+
+By default, the weights are going to be stored in a `./checkpoints` subdirectory:
+
+```bash
+ls -lh checkpoints/microsoft/phi-2/
+```
+
+```
+total 11G
+-rw-r--r-- 1 sebastian sebastian 863 Mar 19 21:14 config.json
+-rw-r--r-- 1 sebastian sebastian 124 Mar 19 21:14 generation_config.json
+-rw-r--r-- 1 sebastian sebastian 5.2G Mar 19 21:15 lit_model.pth
+-rw-r--r-- 1 sebastian sebastian 4.7G Mar 19 21:15 model-00001-of-00002.bin
+-rw-r--r-- 1 sebastian sebastian 538M Mar 19 21:15 model-00002-of-00002.bin
+-rw-r--r-- 1 sebastian sebastian 528 Mar 19 21:15 model_config.yaml
+-rw-r--r-- 1 sebastian sebastian 2.1M Mar 19 21:14 tokenizer.json
+-rw-r--r-- 1 sebastian sebastian 7.2K Mar 19 21:14 tokenizer_config.json
+```
+
+The model is now ready for inference and chat, for example, using the `chat` command on the checkpoint directory:
+
+```bash
+litgpt chat microsoft/phi-2
+```
+
+```
+Now chatting with phi-2.
+To exit, press 'Enter' on an empty prompt.
+
+Seed set to 1234
+>> Prompt: Why are LLMs so useful?
+>> Reply: When building applications or operating systems, you can use LLMs to know how a computer should respond to your commands. This can make your programs run faster and more efficiently.
+
+Time for inference: 1.26 sec total, 27.81 tokens/sec, 35 tokens
+
+>> Prompt:
+```
+
+
+> [!TIP]
+> Use `--multiline true` to support prompts that require multiple input lines.
+
+
+
+
+**More information and additional resources**
+
+- [tutorials/download_model_weights](download_model_weights.md): A more comprehensive download tutorial, tips for GPU memory limitations, and more
+
+
+
+## Finetune LLMs
+
+LitGPT supports several methods of supervised instruction finetuning, which allows you to finetune models to follow instructions.
+
+Datasets for Instruction-finetuning are usually formatted in the following way:
+
+
+
+
+
+
+
+Alternatively, datasets for instruction finetuning can also contain an `'input'` field:
+
+In an instruction-finetuning context, "full" finetuning means updating all model parameters as opposed to only a subset. Adapter and LoRA (short for low-rank adaptation) are methods for parameter-efficient finetuning that only require updating a small fraction of the model weights.
+
+
+
+
+
+
+
+Parameter-efficient finetuning is much more resource-efficient and cheaper than full finetuning, and it often results in the same good performance on downstream tasks.
+
+In the following example, we will use LoRA for finetuning, which is one of the most popular LLM finetuning methods. (For more information on how LoRA works, please see [Code LoRA from Scratch](https://lightning.ai/lightning-ai/studios/code-lora-from-scratch).)
+
+Before we start, we have to download a model as explained in the previous "Download pretrained model" section above:
+
+```bash
+litgpt download microsoft/phi-2
+```
+
+The LitGPT interface can be used via command line arguments and configuration files. We recommend starting with the configuration files from the [config_hub](../config_hub) and either modifying them directly or overriding specific settings via the command line. For example, we can use the following setting to train the downloaded 2.7B parameter `microsoft/phi-2` model, where we set `--max_steps 5` for a quick test run.
+
+If you have downloaded or cloned the LitGPT repository, you can provide the `config` file via a relative path:
+
+```bash
+litgpt finetune_lora microsoft/phi-2\
+ --config config_hub/finetune/phi-2/lora.yaml \
+ --train.max_steps 5
+```
+
+Alternatively, you can provide a URL:
+
+```bash
+litgpt finetune_lora microsoft/phi-2\
+ --config https://raw.githubusercontent.com/Lightning-AI/litgpt/main/config_hub/finetune/phi-2/lora.yaml \
+ --train.max_steps 5
+```
+
+
+
+
+
+> [!TIP]
+> Note that the config file above will finetune the model on the `Alpaca2k` dataset on 1 GPU and save the resulting files in an `out/finetune/lora-phi-2` directory. All of these settings can be changed via a respective command line argument or by changing the config file.
+> To see more options, execute `litgpt finetune_lora --help`.
+
+
+
+Running the previous finetuning command will initiate the finetuning process, which should only take about a minute on a GPU due to the `--train.max_steps 5` setting.
+
+```
+{'checkpoint_dir': PosixPath('checkpoints/microsoft/phi-2'), # TODO
+ 'data': Alpaca2k(mask_prompt=False,
+ val_split_fraction=0.03847,
+ prompt_style=,
+ ignore_index=-100,
+ seed=42,
+ num_workers=4,
+ download_dir=PosixPath('data/alpaca2k')),
+ 'devices': 1,
+ 'eval': EvalArgs(interval=100, max_new_tokens=100, max_iters=100),
+ 'logger_name': 'csv',
+ 'lora_alpha': 16,
+ 'lora_dropout': 0.05,
+ 'lora_head': True,
+ 'lora_key': True,
+ 'lora_mlp': True,
+ 'lora_projection': True,
+ 'lora_query': True,
+ 'lora_r': 8,
+ 'lora_value': True,
+ 'num_nodes': 1,
+ 'out_dir': PosixPath('out/finetune/lora-phi-2'),
+ 'precision': 'bf16-true',
+ 'quantize': None,
+ 'seed': 1337,
+ 'train': TrainArgs(save_interval=800,
+ log_interval=1,
+ global_batch_size=8,
+ micro_batch_size=4,
+ lr_warmup_steps=10,
+ epochs=1,
+ max_tokens=None,
+ max_steps=5,
+ max_seq_length=512,
+ tie_embeddings=None,
+ learning_rate=0.0002,
+ weight_decay=0.0,
+ beta1=0.9,
+ beta2=0.95,
+ max_norm=None,
+ min_lr=6e-05)}
+Seed set to 1337
+Number of trainable parameters: 12,226,560
+Number of non-trainable parameters: 2,779,683,840
+The longest sequence length in the train data is 512, the model's maximum sequence length is 512 and context length is 2048
+Validating ...
+Recommend a movie for me to watch during the weekend and explain the reason.
+Below is an instruction that describes a task. Write a response that appropriately completes the request.
+
+### Instruction:
+Recommend a movie for me to watch during the weekend and explain the reason.
+
+### Response:
+I recommend you watch "Parasite" because it's a critically acclaimed movie that won multiple awards, including the Academy Award for Best Picture. It's a thought-provoking and suspenseful film that will keep you on the edge of your seat. The movie also tackles social and economic inequalities, making it a must-watch for anyone interested in meaningful storytelling.
+
+/home/zeus/miniconda3/envs/cloudspace/lib/python3.10/site-packages/torchmetrics/utilities/prints.py:43: UserWarning: The ``compute`` method of metric MeanMetric was called before the ``update`` method which may lead to errors, as metric states have not yet been updated.
+ warnings.warn(*args, **kwargs) # noqa: B028
+Missing logger folder: out/finetune/lora-phi-2/logs/csv
+Epoch 1 | iter 1 step 0 | loss train: 1.646, val: n/a | iter time: 820.31 ms
+Epoch 1 | iter 2 step 1 | loss train: 1.660, val: n/a | iter time: 548.72 ms (step)
+Epoch 1 | iter 3 step 1 | loss train: 1.687, val: n/a | iter time: 300.07 ms
+Epoch 1 | iter 4 step 2 | loss train: 1.597, val: n/a | iter time: 595.27 ms (step)
+Epoch 1 | iter 5 step 2 | loss train: 1.640, val: n/a | iter time: 260.75 ms
+Epoch 1 | iter 6 step 3 | loss train: 1.703, val: n/a | iter time: 568.22 ms (step)
+Epoch 1 | iter 7 step 3 | loss train: 1.678, val: n/a | iter time: 511.70 ms
+Epoch 1 | iter 8 step 4 | loss train: 1.741, val: n/a | iter time: 514.14 ms (step)
+Epoch 1 | iter 9 step 4 | loss train: 1.689, val: n/a | iter time: 423.59 ms
+Epoch 1 | iter 10 step 5 | loss train: 1.524, val: n/a | iter time: 603.03 ms (step)
+Training time: 11.20s
+Memory used: 13.90 GB
+Saving LoRA weights to 'out/finetune/lora-phi-2/final/lit_model.pth.lora'
+Saved merged weights to 'out/finetune/lora-phi-2/final/lit_model.pth'
+```
+
+Notice that the LoRA script saves both the LoRA weights (`'out/finetune/lora-phi-2/final/lit_model.pth.lora'`) and the LoRA weight merged back into the original model (`'out/finetune/lora-phi-2/final/lit_model.pth'`) for convenience. This allows us to use the finetuned model via the `chat` function directly:
+
+```bash
+litgpt chat out/finetune/lora-phi-2/final/
+```
+
+```
+Now chatting with phi-2.
+To exit, press 'Enter' on an empty prompt.
+
+Seed set to 1234
+>> Prompt: Why are LLMs so useful?
+>> Reply: LLMs are useful because they can be trained to perform various natural language tasks, such as language translation, text generation, and question-answering. They are also able to understand the context of the input data, which makes them particularly useful for tasks such as sentiment analysis and text summarization. Additionally, because LLMs can learn from large amounts of data, they are able to generalize well and perform well on new data.
+
+Time for inference: 2.15 sec total, 39.57 tokens/sec, 85 tokens
+
+>> Prompt:
+```
+
+
+
+
+
+**More information and additional resources**
+
+- [tutorials/prepare_dataset](prepare_dataset.md): A summary of all out-of-the-box supported datasets in LitGPT and utilities for preparing custom datasets
+- [tutorials/finetune](finetune.md): An overview of the different finetuning methods supported in LitGPT
+- [tutorials/finetune_full](finetune_full.md): A tutorial on full-parameter finetuning
+- [tutorials/finetune_lora](finetune_lora.md): Options for parameter-efficient finetuning with LoRA and QLoRA
+- [tutorials/finetune_adapter](finetune_adapter.md): A description of the parameter-efficient Llama-Adapter methods supported in LitGPT
+- [tutorials/oom](oom.md): Tips for dealing with out-of-memory (OOM) errors
+- [config_hub/finetune](../config_hub/finetune): Pre-made config files for finetuning that work well out of the box
+
+
+## LLM inference
+
+To use a downloaded or finetuned model for chat, you only need to provide the corresponding checkpoint directory containing the model and tokenizer files. For example, to chat with the phi-2 model from Microsoft, download it as follows, as described in the "Download pretrained model" section:
+
+```bash
+litgpt download microsoft/phi-2
+```
+
+```
+model-00001-of-00002.safetensors: 100%|████████████████████████████████| 5.00G/5.00G [00:40<00:00, 124MB/s]
+model-00002-of-00002.safetensors: 100%|████████████████████████████████| 564M/564M [00:01<00:00, 330MB/s]
+tokenizer.json: 100%|██████████████████████████████████████████████████| 2.11M/2.11M [00:00<00:00, 54.0MB/s]
+...
+Converting checkpoint files to LitGPT format.
+Processing checkpoints/microsoft/phi-2/model-00001-of-00002.bin
+...
+Saving converted checkpoint to checkpoints/microsoft/phi-2
+```
+
+
+
+Then, chat with the model using the following command:
+
+```bash
+litgpt chat microsoft/phi-2
+```
+
+```
+Now chatting with phi-2.
+To exit, press 'Enter' on an empty prompt.
+
+Seed set to 1234
+>> Prompt: What is the main difference between a large language model and a traditional search engine?
+>> Reply: A large language model uses deep learning algorithms to analyze and generate natural language, while a traditional search engine uses algorithms to retrieve information from web pages.
+
+Time for inference: 1.14 sec total, 26.26 tokens/sec, 30 tokens
+```
+
+> [!TIP]
+> Most model weights are already represented in an efficient bfloat16 format. However, if the model currently exceeds your GPU memory, you can try to pass the `--precision bf16-true` option. In addition, you can check the quantization documentation for further optimization, which is linked below.
+
+
+
+**More information and additional resources**
+
+- [tutorials/inference](inference.md): Chat and inference tutorial
+- [tutorials/quantize](quantize.md): Quantizing models to reduce GPU memory requirements
+
+
+
+## Using the LitGPT Python API for Inference
+
+The previous section explained how to use the `litgpt chat` command line interface for inference. Alternatively, LitGPT also offers a Python API approach to generate text using an LLM:
+
+```python
+from litgpt import LLM
+
+llm = LLM.load("microsoft/phi-2")
+text = llm.generate("What do Llamas eat?", top_k=1, max_new_tokens=30)
+print(text)
+```
+
+Note that the if you pass a supported model name to `LLM.load()`, as shown above, it will download the model from the HF hub if it doesn't exist locally, yet (use `litgpt download list` on the command line to get a list of all currently supported models.)
+
+Alternatively, to load model from a local path, just provide the corresponding path as input to the `load` method:
+
+```python
+llm = LLM.load("path/to/my/local/checkpoint")
+```
+
+
+**More information and additional resources**
+
+- [tutorials/python-api](python-api.md): The LitGPT Python API documentation
+
+
+
+
+## Evaluating models
+
+LitGPT comes with a handy `litgpt evaluate` command to evaluate models with [Eleuther AI's Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness). For example, to evaluate the previously downloaded `microsoft/phi-2` model on several tasks available from the Evaluation Harness, you can use the following command:
+
+
+```bash
+litgpt evaluate microsoft/phi-2
+ --batch_size 16 \
+ --tasks "hellaswag,gsm8k,truthfulqa_mc2,mmlu,winogrande,arc_challenge"
+```
+
+(A list of supported tasks can be found [here](https://github.com/EleutherAI/lm-evaluation-harness/blob/master/docs/task_table.md).)
+
+
+
+## Deploy LLMs
+
+You can deploy LitGPT LLMs using your tool of choice. Below is an example using LitGPT built-in serving capabilities:
+
+
+```bash
+# 1) Download a pretrained model (alternatively, use your own finetuned model)
+litgpt download microsoft/phi-2
+
+# 2) Start the server
+litgpt serve microsoft/phi-2
+```
+
+```python
+# 3) Use the server (in a separate session)
+import requests, json
+ response = requests.post(
+ "http://127.0.0.1:8000/predict",
+ json={"prompt": "Fix typos in the following sentence: Example input"}
+)
+print(response.json()["output"])
+```
+
+This prints:
+
+```
+Instruct: Fix typos in the following sentence: Example input
+Output: Example input.
+```
+
+
+
+**More information and additional resources**
+
+- [tutorials/deploy](deploy.md): A full deployment tutorial and example
+
+
+
+## Converting LitGPT model weights to `safetensors` format
+
+Sometimes, it can be useful to convert LitGPT model weights for third-party and external tools. For example, we can convert a LitGPT model to the Hugging Face format and save it via `.safetensors` files, which we can do as follows:
+
+```bash
+litgpt convert_from_litgpt microsoft/phi-2 out/converted_model/
+```
+
+Certain tools like the `.from_pretrained` method in Hugging Face `transformers` also require the original `config.json` file that originally came with the downloaded model:
+
+```bash
+cp checkpoints/microsoft/phi-2/config.json out/converted_model/config.json
+```
+
+You can now load the model into a Hugging Face transformers model and safe it in a `.safetensors` format as follows:
+
+```bash
+import torch
+from transformers import AutoModel
+
+# Load model
+state_dict = torch.load('out/converted_model/model.pth')
+model = AutoModel.from_pretrained(
+ "microsoft/phi-2", state_dict=state_dict
+)
+
+# Save .safetensors files
+model.save_pretrained("out/converted_model/")
+```
+
+```
+⚡ ~/litgpt ls -lh out/converted_model
+total 16G
+-rwxr--r-- 1 sebastian sebastian 891 Mar 20 17:08 config.json
+-rw-r--r-- 1 sebastian sebastian 4.7G Mar 20 17:08 model-00001-of-00003.safetensors
+-rw-r--r-- 1 sebastian sebastian 4.7G Mar 20 17:09 model-00002-of-00003.safetensors
+-rw-r--r-- 1 sebastian sebastian 601M Mar 20 17:09 model-00003-of-00003.safetensors
+-rw-r--r-- 1 sebastian sebastian 5.2G Mar 20 16:30 model.pth
+-rw-r--r-- 1 sebastian sebastian 33K Mar 20 17:09 model.safetensors.index.json
+```
+
+You can then use the model with external tools, for example, Eleuther AI's [LM Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness) (see the `lm_eval` installation instructions [here](https://github.com/EleutherAI/lm-evaluation-harness?tab=readme-ov-file#install)).
+
+The LM Evaluation Harness requires a tokenizer to be present in the model checkpoint folder, which we can copy from the original download checkpoint:
+
+```bash
+# Copy the tokenizer needed by the Eval Harness
+cp checkpoints/microsoft/phi-2/tokenizer*
+out/converted_model
+```
+
+Then, we can run the Evaluation Harness as follows:
+
+```bash
+lm_eval --model hf \
+ --model_args pretrained="out/converted_model" \
+ --tasks "hellaswag,gsm8k,truthfulqa_mc2,mmlu,winogrande,arc_challenge" \
+ --device "cuda:0" \
+ --batch_size 4
+```
+
+
+
+> [!TIP]
+> The Evaluation Harness tasks above are those used in Open LLM Leaderboard. You can find a list all supported tasks [here](https://github.com/EleutherAI/lm-evaluation-harness/blob/master/docs/task_table.md).
+
+
+
+
+**More information and additional resources**
+
+- [tutorials/convert_lit_models](./convert_lit_models.md): Tutorial on converting LitGPT weights
+
+
+
+
+
+## Get involved!
+
+We appreciate your feedback and contributions. If you have feature requests, questions, or want to contribute code or config files, please don't hesitate to use the [GitHub Issue](https://github.com/Lightning-AI/litgpt/issues) tracker.
+
+We welcome all individual contributors, regardless of their level of experience or hardware. Your contributions are valuable, and we are excited to see what you can accomplish in this collaborative and supportive environment.
+
+
+
+> [!TIP]
+> Unsure about contributing? Check out our [How to Contribute to LitGPT](https://lightning.ai/pages/community/tutorial/how-to-contribute-to-litgpt/) guide.
+
+
+
+If you have general questions about building with LitGPT, please [join our Discord](https://discord.gg/VptPCZkGNa).
diff --git a/tutorials/convert_hf_checkpoint.md b/tutorials/convert_hf_checkpoint.md
new file mode 100644
index 0000000000000000000000000000000000000000..55f85089015c4b5b2dd5a6545e0931d3c82b28d5
--- /dev/null
+++ b/tutorials/convert_hf_checkpoint.md
@@ -0,0 +1,52 @@
+# Converting Hugging Face Transformers to LitGPT weights
+
+By default, the `litgpt download` command converts the downloaded HF checkpoint files into a LitGPT compatible format after downloading. For example,
+
+```bash
+litgpt download EleutherAI/pythia-14m
+```
+
+creates the following files:
+
+```
+checkpoints/
+└── EleutherAI/
+ └── pythia-14m/
+ ├── config.json
+ ├── generation_config.json
+ ├── model_config.yaml # LitGPT specific file
+ ├── lit_model.pth # LitGPT specific file
+ ├── pytorch_model.bin
+ ├── tokenizer.json
+ └── tokenizer_config.json
+```
+
+
+
+To disable the automatic conversion, which is useful for development and debugging purposes, you can run the `litgpt download` with the `--convert_checkpoint false` flag. This will only download the checkpoint files but do not convert them for use in LitGPT:
+
+```bash
+rm -rf checkpoints/EleutherAI/pythia-14m
+
+litgpt download EleutherAI/pythia-14m \
+ --convert_checkpoint false
+
+ls checkpoints/EleutherAI/pythia-14m
+```
+
+```
+ checkpoints/
+└── EleutherAI/
+ └── pythia-14m/
+ ├── config.json
+ ├── generation_config.json
+ ├── pytorch_model.bin
+ ├── tokenizer.json
+ └── tokenizer_config.json
+```
+
+The required files `model_config.yaml` and `lit_model.pth` files can then be manually generated via the `litgpt/scripts/convert_hf_checkpoint.py` script:
+
+```bash
+litgpt convert_to_litgpt checkpoints/EleutherAI/pythia-14m
+```
diff --git a/tutorials/convert_lit_models.md b/tutorials/convert_lit_models.md
new file mode 100644
index 0000000000000000000000000000000000000000..53b24c2bdb20b4c298e3f9747e563a314d838d9e
--- /dev/null
+++ b/tutorials/convert_lit_models.md
@@ -0,0 +1,143 @@
+## Converting LitGPT weights to Hugging Face Transformers
+
+LitGPT weights need to be converted to a format that Hugging Face understands with a [conversion script](../litgpt/scripts/convert_lit_checkpoint.py) before our scripts can run.
+
+We provide a helpful command to convert models LitGPT models back to their equivalent Hugging Face Transformers format:
+
+```bash
+litgpt convert_from_litgpt checkpoint_dir converted_dir
+```
+
+These paths are just placeholders, you will need to customize them based on which finetuning or pretraining command you ran and its configuration.
+
+### Loading converted LitGPT checkpoints into transformers
+
+
+For example,
+
+```bash
+cp checkpoints/repo_id/config.json converted/config.json
+```
+
+Then, you can load the checkpoint file in a Python session as follows:
+
+```python
+import torch
+from transformers import AutoModel
+
+
+state_dict = torch.load("output_dir/model.pth")
+model = AutoModel.from_pretrained(
+ "output_dir/", local_files_only=True, state_dict=state_dict
+)
+```
+
+Alternatively, you can also load the model without copying the `config.json` file as follows:
+
+```python
+model = AutoModel.from_pretrained("online_repo_id", state_dict=state_dict)
+```
+
+
+
+### Merging LoRA weights
+
+Please note that if you want to convert a model that has been finetuned using an adapter like LoRA, these weights should be [merged](../litgpt/scripts/merge_lora.py) to the checkpoint prior to converting.
+
+```sh
+litgpt merge_lora path/to/lora/checkpoint_dir
+```
+
+
+
+
+# A finetuning and conversion tutorial
+
+This section contains a reproducible example for finetuning a LitGPT model and converting it back into a HF `transformer` model.
+
+1. Download a model of interest:
+
+For convenience, we first specify an environment variable (optional) to avoid copy and pasting the whole path:
+
+```bash
+export repo_id=TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+```
+
+Instead of using TinyLlama, you can replace the `repo_id` target with any other model repository
+specifier that is currently supported by LitGPT. You can get a list of supported repository specifier
+by running `litgpt/scripts/download.py` without any additional arguments.
+
+Then, we download the model we specified via `$repo_id` above:
+
+```bash
+litgpt download $repo_id
+```
+
+2. Finetune the model:
+
+
+```bash
+export finetuned_dir=out/lit-finetuned-model
+
+litgpt finetune_lora $repo_id \
+ --out_dir $finetuned_dir \
+ --train.epochs 1 \
+ --data Alpaca
+```
+
+3. Merge LoRA weights:
+
+Note that this step only applies if the model was finetuned with `lora.py` above and not when `full.py` was used for finetuning.
+
+```bash
+litgpt merge_lora $finetuned_dir/final
+```
+
+
+4. Convert the finetuning model back into a HF format:
+
+```bash
+litgpt convert_from_litgpt $finetuned_dir/final/ out/hf-tinyllama/converted
+```
+
+
+5. Load the model into a `transformers` model:
+
+```python
+import torch
+from transformers import AutoModel
+
+state_dict = torch.load('out/hf-tinyllama/converted/model.pth')
+model = AutoModel.from_pretrained("TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T", state_dict=state_dict)
+```
+
+
+## Using the LM Evaluation Harness
+
+To evaluate LitGPT models, use the integrated evaluation utilities based on Eleuther AI's LM Evaluation Harness. For more information, please see the [evaluation](evaluation.md) documentation.
+
+Alternatively, if you wish to use converted LitGPT models with the LM Evaluation Harness from [Eleuther AI's GitHub repository](https://github.com/EleutherAI/lm-evaluation-harness), you can use the following steps.
+
+1. Follow the instructions above to load the model into a Hugging Face transformers model.
+
+2. Create a `model.safetensor` file:
+
+```python
+model.save_pretrained("out/hf-tinyllama/converted/")
+```
+
+3. Copy the tokenizer files into the model-containing directory:
+
+```bash
+cp checkpoints/$repo_id/tokenizer* out/hf-tinyllama/converted
+```
+
+4. Run the evaluation harness, for example:
+
+```bash
+lm_eval --model hf \
+ --model_args pretrained=out/hf-tinyllama/converted \
+ --tasks "hellaswag,gsm8k,truthfulqa_mc2,mmlu,winogrande,arc_challenge" \
+ --device "cuda:0" \
+ --batch_size 4
+```
diff --git a/tutorials/deploy.md b/tutorials/deploy.md
new file mode 100644
index 0000000000000000000000000000000000000000..b58a08ac03b5d55808417221cbfdc6d351f59920
--- /dev/null
+++ b/tutorials/deploy.md
@@ -0,0 +1,144 @@
+# Serve and Deploy LLMs
+
+This document shows how you can serve a LitGPT for deployment.
+
+
+
+## Serve an LLM with LitServe
+
+This section illustrates how we can set up an inference server for a phi-2 LLM using `litgpt serve` that is minimal and highly scalable.
+
+
+
+### Step 1: Start the inference server
+
+
+```bash
+# 1) Download a pretrained model (alternatively, use your own finetuned model)
+litgpt download microsoft/phi-2
+
+# 2) Start the server
+litgpt serve microsoft/phi-2
+```
+
+> [!TIP]
+> Use `litgpt serve --help` to display additional options, including the port, devices, LLM temperature setting, and more.
+
+
+
+### Step 2: Query the inference server
+
+You can now send requests to the inference server you started in step 2. For example, in a new Python session, we can send requests to the inference server as follows:
+
+
+```python
+import requests, json
+
+response = requests.post(
+ "http://127.0.0.1:8000/predict",
+ json={"prompt": "Fix typos in the following sentence: Example input"}
+)
+
+print(response.json()["output"])
+```
+
+Executing the code above prints the following output:
+
+```
+Example input.
+```
+
+
+### Optional: Use the streaming mode
+
+The 2-step procedure described above returns the complete response all at once. If you want to stream the response on a token-by-token basis, start the server with the streaming option enabled:
+
+```bash
+litgpt serve microsoft/phi-2 --stream true
+```
+
+Then, use the following updated code to query the inference server:
+
+```python
+import requests, json
+
+response = requests.post(
+ "http://127.0.0.1:8000/predict",
+ json={"prompt": "Fix typos in the following sentence: Example input"},
+ stream=True
+)
+
+# stream the response
+for line in response.iter_lines(decode_unicode=True):
+ if line:
+ print(json.loads(line)["output"], end="")
+```
+
+```
+Sure, here is the corrected sentence:
+
+Example input
+```
+
+
+## Serve an LLM with OpenAI-compatible API
+
+LitGPT provides OpenAI-compatible endpoints that allow you to use the OpenAI SDK or any OpenAI-compatible client to interact with your models. This is useful for integrating LitGPT into existing applications that use the OpenAI API.
+
+
+### Step 1: Start the server with OpenAI specification
+
+```bash
+# 1) Download a pretrained model (alternatively, use your own finetuned model)
+litgpt download HuggingFaceTB/SmolLM2-135M-Instruct
+
+# 2) Start the server with OpenAI-compatible endpoints
+litgpt serve HuggingFaceTB/SmolLM2-135M-Instruct --openai_spec true
+```
+
+> [!TIP]
+> The `--openai_spec true` flag enables OpenAI-compatible endpoints at `/v1/chat/completions` instead of the default `/predict` endpoint.
+
+
+### Step 2: Query using OpenAI-compatible endpoints
+
+You can now send requests to the OpenAI-compatible endpoint using curl:
+
+```bash
+curl -X POST http://127.0.0.1:8000/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -d '{
+ "model": "SmolLM2-135M-Instruct",
+ "messages": [{"role": "user", "content": "Hello! How are you?"}]
+ }'
+```
+
+Or use the OpenAI Python SDK:
+
+```python
+from openai import OpenAI
+
+# Configure the client to use your local LitGPT server
+client = OpenAI(
+ base_url="http://127.0.0.1:8000/v1",
+ api_key="not-needed" # LitGPT doesn't require authentication by default
+)
+
+response = client.chat.completions.create(
+ model="SmolLM2-135M-Instruct",
+ messages=[
+ {"role": "user", "content": "Hello! How are you?"}
+ ]
+)
+
+print(response.choices[0].message.content)
+```
+
+
+## Serve an LLM UI with Chainlit
+
+If you are interested in developing a simple ChatGPT-like UI prototype, see the Chainlit tutorial in the following Studio:
+
+
+
+
diff --git a/tutorials/download_model_weights.md b/tutorials/download_model_weights.md
new file mode 100644
index 0000000000000000000000000000000000000000..080d4f8e06bf8c0259aff38af838e489e9109a43
--- /dev/null
+++ b/tutorials/download_model_weights.md
@@ -0,0 +1,434 @@
+# Download Model Weights with LitGPT
+
+LitGPT supports a variety of LLM architectures with publicly available weights. You can download model weights and access a list of supported models using the `litgpt download list` command.
+
+
+
+
+| Model | Model size | Author | Reference |
+|----|----|----|----|
+| CodeGemma | 7B | Google | [Google Team, Google Deepmind](https://ai.google.dev/gemma/docs/codegemma) |
+| Code Llama | 7B, 13B, 34B, 70B | Meta AI | [Rozière et al. 2023](https://arxiv.org/abs/2308.12950) |
+| Danube2 | 1.8B | H2O.ai | [H2O.ai](https://h2o.ai/platform/danube-1-8b/) |
+| Dolly | 3B, 7B, 12B | Databricks | [Conover et al. 2023](https://www.databricks.com/blog/2023/04/12/dolly-first-open-commercially-viable-instruction-tuned-llm) |
+| Falcon | 7B, 40B, 180B | TII UAE | [TII 2023](https://falconllm.tii.ae) |
+| Falcon 3 | 1B, 3B, 7B, 10B | TII UAE | [TII 2024](https://huggingface.co/blog/falcon3) |
+| FreeWilly2 (Stable Beluga 2) | 70B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stable-beluga-large-instruction-fine-tuned-models) |
+| Function Calling Llama 2 | 7B | Trelis | [Trelis et al. 2023](https://huggingface.co/Trelis/Llama-2-7b-chat-hf-function-calling-v2) |
+| Gemma | 2B, 7B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-report.pdf) |
+| Gemma 2 | 2B, 9B, 27B | Google | [Google Team, Google Deepmind](https://storage.googleapis.com/deepmind-media/gemma/gemma-2-report.pdf) |
+| Gemma 3 | 1B, 4B, 12B, 27B | Google | [Google Team, Google Deepmind](https://arxiv.org/pdf/2503.19786)
+| Llama 2 | 7B, 13B, 70B | Meta AI | [Touvron et al. 2023](https://arxiv.org/abs/2307.09288) |
+| Llama 3 | 8B, 70B | Meta AI | [Meta AI 2024](https://github.com/meta-llama/llama3) |
+| Llama 3.1 | 8B, 70B, 405B | Meta AI | [Meta AI 2024](https://github.com/meta-llama/llama3) |
+| Llama 3.2 | 1B, 3B | Meta AI | [Meta AI 2024](https://github.com/meta-llama/llama-models/blob/main/models/llama3_2/MODEL_CARD.md) |
+| Llama 3.3 | 70B | Meta AI | [Meta AI 2024](https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct) |
+| Llama 3.1 Nemotron | 70B | NVIDIA | [NVIDIA AI 2024](https://build.nvidia.com/nvidia/llama-3_1-nemotron-70b-instruct/modelcard) |
+| LongChat | 7B, 13B | LMSYS | [LongChat Team 2023](https://lmsys.org/blog/2023-06-29-longchat/) |
+| Mathstral | 7B | Mistral AI | [Mistral AI 2024](https://mistral.ai/news/mathstral/) |
+| MicroLlama | 300M | Ken Wang | [MicroLlama repo](https://github.com/keeeeenw/MicroLlama)
+| Mixtral MoE | 8x7B | Mistral AI | [Mistral AI 2023](https://mistral.ai/news/mixtral-of-experts/) |
+| Mistral | 7B, 123B | Mistral AI | [Mistral AI 2023](https://mistral.ai/news/announcing-mistral-7b/) |
+| Mixtral MoE | 8x22B | Mistral AI | [Mistral AI 2024](https://mistral.ai/news/mixtral-8x22b/) |
+| Nous-Hermes | 7B, 13B, 70B | NousResearch | [Org page](https://huggingface.co/NousResearch) |
+| OLMo | 1B, 7B | Allen Institute for AI (AI2) | [Groeneveld et al. 2024](https://aclanthology.org/2024.acl-long.841/) |
+| OpenLLaMA | 3B, 7B, 13B | OpenLM Research | [Geng & Liu 2023](https://github.com/openlm-research/open_llama) |
+| Phi 1.5 & 2 | 1.3B, 2.7B | Microsoft Research | [Li et al. 2023](https://arxiv.org/abs/2309.05463) |
+| Phi 3 & 3.5 | 3.8B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2404.14219)
+| Phi 4 | 14B | Microsoft Research | [Abdin et al. 2024](https://arxiv.org/abs/2412.08905) |
+| Phi 4 Mini Instruct | 3.8B | Microsoft Research | [Microsoft 2025](https://arxiv.org/abs/2503.01743) |
+| Phi 4 Mini Reasoning | 3.8B | Microsoft Research | [Xu, Peng et al. 2025](https://arxiv.org/abs/2504.21233) |
+| Phi 4 Reasoning | 3.8B | Microsoft Research | [Abdin et al. 2025](https://arxiv.org/abs/2504.21318) |
+| Phi 4 Reasoning Plus | 3.8B | Microsoft Research | [Abdin et al. 2025](https://arxiv.org/abs/2504.21318) |
+| Platypus | 7B, 13B, 70B | Lee et al. | [Lee, Hunter, and Ruiz 2023](https://arxiv.org/abs/2308.07317) |
+| Pythia | {14,31,70,160,410}M, {1,1.4,2.8,6.9,12}B | EleutherAI | [Biderman et al. 2023](https://arxiv.org/abs/2304.01373) |
+| Qwen2.5 | 0.5B, 1.5B, 3B, 7B, 14B, 32B, 72B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwen2.5/) |
+| Qwen2.5 Coder | 0.5B, 1.5B, 3B, 7B, 14B, 32B | Alibaba Group | [Hui, Binyuan et al. 2024](https://arxiv.org/abs/2409.12186) |
+| Qwen2.5 1M (Long Context) | 7B, 14B | Alibaba Group | [Qwen Team 2025](https://qwenlm.github.io/blog/qwen2.5-1m/) |
+| Qwen2.5 Math | 1.5B, 7B, 72B | Alibaba Group | [An, Yang et al. 2024](https://arxiv.org/abs/2409.12122) |
+| QwQ | 32B | Alibaba Group | [Qwen Team 2025](https://qwenlm.github.io/blog/qwq-32b/) |
+| QwQ-Preview | 32B | Alibaba Group | [Qwen Team 2024](https://qwenlm.github.io/blog/qwq-32b-preview/) |
+| Qwen3 | 0.6B, 1.7B, 4B, 8B, 14B, 32B | Alibaba Group | [Qwen Team 2025](https://arxiv.org/abs/2505.09388/) |
+| Qwen3 MoE | 30B, 235B | Alibaba Group | [Qwen Team 2025](https://arxiv.org/abs/2505.09388/) |
+| R1 Distll Llama | 8B, 70B | DeepSeek AI | [DeepSeek AI 2025](https://github.com/deepseek-ai/DeepSeek-R1/blob/main/DeepSeek_R1.pdf) |
+| RedPajama-INCITE | 3B, 7B | Together | [Together 2023](https://together.ai/blog/redpajama-models-v1) |
+| SmolLM2 | 135M, 360M, 1.7B | Hugging Face | [Hugging Face 2024](https://github.com/huggingface/smollm) |
+| StableCode | 3B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stablecode-llm-generative-ai-coding) |
+| Salamandra | 2B, 7B | Barcelona Supercomputing Centre | [BSC-LTC 2024](https://github.com/BSC-LTC/salamandra) |
+| StableLM | 3B, 7B | Stability AI | [Stability AI 2023](https://github.com/Stability-AI/StableLM) |
+| StableLM Zephyr | 3B | Stability AI | [Stability AI 2023](https://stability.ai/blog/stablecode-llm-generative-ai-coding) |
+| TinyLlama | 1.1B | Zhang et al. | [Zhang et al. 2023](https://github.com/jzhang38/TinyLlama) |
+| Vicuna | 7B, 13B, 33B | LMSYS | [Li et al. 2023](https://lmsys.org/blog/2023-03-30-vicuna/) | |
+
+
+
+## General Instructions
+
+### 1. List Available Models
+
+To see all supported models, run the following command:
+
+```bash
+litgpt download list
+```
+
+The output is shown below:
+
+```
+allenai/OLMo-1B-hf
+allenai/OLMo-7B-hf
+allenai/OLMo-7B-Instruct-hf
+bsc-lt/salamandra-2b
+bsc-lt/salamandra-2b-instruct
+bsc-lt/salamandra-7b
+bsc-lt/salamandra-7b-instruct
+codellama/CodeLlama-13b-hf
+codellama/CodeLlama-13b-Instruct-hf
+codellama/CodeLlama-13b-Python-hf
+codellama/CodeLlama-34b-hf
+codellama/CodeLlama-34b-Instruct-hf
+codellama/CodeLlama-34b-Python-hf
+codellama/CodeLlama-70b-hf
+codellama/CodeLlama-70b-Instruct-hf
+codellama/CodeLlama-70b-Python-hf
+codellama/CodeLlama-7b-hf
+codellama/CodeLlama-7b-Instruct-hf
+codellama/CodeLlama-7b-Python-hf
+databricks/dolly-v2-12b
+databricks/dolly-v2-3b
+databricks/dolly-v2-7b
+deepseek-ai/DeepSeek-R1-Distill-Llama-8B
+deepseek-ai/DeepSeek-R1-Distill-Llama-70B
+EleutherAI/pythia-1.4b
+EleutherAI/pythia-1.4b-deduped
+EleutherAI/pythia-12b
+EleutherAI/pythia-12b-deduped
+EleutherAI/pythia-14m
+EleutherAI/pythia-160m
+EleutherAI/pythia-160m-deduped
+EleutherAI/pythia-1b
+EleutherAI/pythia-1b-deduped
+EleutherAI/pythia-2.8b
+EleutherAI/pythia-2.8b-deduped
+EleutherAI/pythia-31m
+EleutherAI/pythia-410m
+EleutherAI/pythia-410m-deduped
+EleutherAI/pythia-6.9b
+EleutherAI/pythia-6.9b-deduped
+EleutherAI/pythia-70m
+EleutherAI/pythia-70m-deduped
+garage-bAInd/Camel-Platypus2-13B
+garage-bAInd/Camel-Platypus2-70B
+garage-bAInd/Platypus-30B
+garage-bAInd/Platypus2-13B
+garage-bAInd/Platypus2-70B
+garage-bAInd/Platypus2-70B-instruct
+garage-bAInd/Platypus2-7B
+garage-bAInd/Stable-Platypus2-13B
+google/codegemma-7b-it
+google/gemma-3-27b-it
+google/gemma-3-12b-it
+google/gemma-3-4b-it
+google/gemma-3-1b-it
+google/gemma-2-27b
+google/gemma-2-27b-it
+google/gemma-2-2b
+google/gemma-2-2b-it
+google/gemma-2-9b
+google/gemma-2-9b-it
+google/gemma-2b
+google/gemma-2b-it
+google/gemma-7b
+google/gemma-7b-it
+h2oai/h2o-danube2-1.8b-chat
+HuggingFaceTB/SmolLM2-135M
+HuggingFaceTB/SmolLM2-135M-Instruct
+HuggingFaceTB/SmolLM2-360M
+HuggingFaceTB/SmolLM2-360M-Instruct
+HuggingFaceTB/SmolLM2-1.7B
+HuggingFaceTB/SmolLM2-1.7B-Instruct
+lmsys/longchat-13b-16k
+lmsys/longchat-7b-16k
+lmsys/vicuna-13b-v1.3
+lmsys/vicuna-13b-v1.5
+lmsys/vicuna-13b-v1.5-16k
+lmsys/vicuna-33b-v1.3
+lmsys/vicuna-7b-v1.3
+lmsys/vicuna-7b-v1.5
+lmsys/vicuna-7b-v1.5-16k
+meta-llama/Llama-2-13b-chat-hf
+meta-llama/Llama-2-13b-hf
+meta-llama/Llama-2-70b-chat-hf
+meta-llama/Llama-2-70b-hf
+meta-llama/Llama-2-7b-chat-hf
+meta-llama/Llama-2-7b-hf
+meta-llama/Llama-3.2-1B
+meta-llama/Llama-3.2-1B-Instruct
+meta-llama/Llama-3.2-3B
+meta-llama/Llama-3.2-3B-Instruct
+meta-llama/Llama-3.3-70B-Instruct
+meta-llama/Meta-Llama-3-70B
+meta-llama/Meta-Llama-3-70B-Instruct
+meta-llama/Meta-Llama-3-8B
+meta-llama/Meta-Llama-3-8B-Instruct
+meta-llama/Meta-Llama-3.1-405B
+meta-llama/Meta-Llama-3.1-405B-Instruct
+meta-llama/Meta-Llama-3.1-70B
+meta-llama/Meta-Llama-3.1-70B-Instruct
+meta-llama/Meta-Llama-3.1-8B
+meta-llama/Meta-Llama-3.1-8B-Instruct
+microsoft/phi-1_5
+microsoft/phi-2
+microsoft/Phi-3-mini-128k-instruct
+microsoft/Phi-3-mini-4k-instruct
+microsoft/Phi-3.5-mini-instruct
+microsoft/phi-4
+microsoft/Phi-4-mini-instruct
+mistralai/mathstral-7B-v0.1
+mistralai/Mistral-7B-Instruct-v0.1
+mistralai/Mistral-7B-Instruct-v0.2
+mistralai/Mistral-7B-Instruct-v0.3
+mistralai/Mistral-7B-v0.1
+mistralai/Mistral-7B-v0.3
+mistralai/Mistral-Large-Instruct-2407
+mistralai/Mistral-Large-Instruct-2411
+mistralai/Mixtral-8x7B-Instruct-v0.1
+mistralai/Mixtral-8x7B-v0.1
+mistralai/Mixtral-8x22B-Instruct-v0.1
+mistralai/Mixtral-8x22B-v0.1
+NousResearch/Nous-Hermes-13b
+NousResearch/Nous-Hermes-llama-2-7b
+NousResearch/Nous-Hermes-Llama2-13b
+nvidia/Llama-3.1-Nemotron-70B-Instruct-HF
+openlm-research/open_llama_13b
+openlm-research/open_llama_3b
+openlm-research/open_llama_7b
+Qwen/Qwen2.5-0.5B
+Qwen/Qwen2.5-0.5B-Instruct
+Qwen/Qwen2.5-1.5B
+Qwen/Qwen2.5-1.5B-Instruct
+Qwen/Qwen2.5-3B
+Qwen/Qwen2.5-3B-Instruct
+Qwen/Qwen2.5-7B
+Qwen/Qwen2.5-7B-Instruct
+Qwen/Qwen2.5-7B-Instruct-1M
+Qwen/Qwen2.5-14B
+Qwen/Qwen2.5-14B-Instruct
+Qwen/Qwen2.5-14B-Instruct-1M
+Qwen/Qwen2.5-32B
+Qwen/Qwen2.5-32B-Instruct
+Qwen/Qwen2.5-72B
+Qwen/Qwen2.5-72B-Instruct
+Qwen/Qwen2.5-Coder-0.5B
+Qwen/Qwen2.5-Coder-0.5B-Instruct
+Qwen/Qwen2.5-Coder-1.5B
+Qwen/Qwen2.5-Coder-1.5B-Instruct
+Qwen/Qwen2.5-Coder-3B
+Qwen/Qwen2.5-Coder-3B-Instruct
+Qwen/Qwen2.5-Coder-7B
+Qwen/Qwen2.5-Coder-7B-Instruct
+Qwen/Qwen2.5-Coder-14B
+Qwen/Qwen2.5-Coder-14B-Instruct
+Qwen/Qwen2.5-Coder-32B
+Qwen/Qwen2.5-Coder-32B-Instruct
+Qwen/Qwen2.5-Math-1.5B
+Qwen/Qwen2.5-Math-1.5B-Instruct
+Qwen/Qwen2.5-Math-7B
+Qwen/Qwen2.5-Math-7B-Instruct
+Qwen/Qwen2.5-Math-72B
+Qwen/Qwen2.5-Math-72B-Instruct
+Qwen/QwQ-32B
+Qwen/QwQ-32B-Preview
+stabilityai/FreeWilly2
+stabilityai/stable-code-3b
+stabilityai/stablecode-completion-alpha-3b
+stabilityai/stablecode-completion-alpha-3b-4k
+stabilityai/stablecode-instruct-alpha-3b
+stabilityai/stablelm-3b-4e1t
+stabilityai/stablelm-base-alpha-3b
+stabilityai/stablelm-base-alpha-7b
+stabilityai/stablelm-tuned-alpha-3b
+stabilityai/stablelm-tuned-alpha-7b
+stabilityai/stablelm-zephyr-3b
+tiiuae/falcon-180B
+tiiuae/falcon-180B-chat
+tiiuae/falcon-40b
+tiiuae/falcon-40b-instruct
+tiiuae/falcon-7b
+tiiuae/falcon-7b-instruct
+tiiuae/Falcon3-1B-Base
+tiiuae/Falcon3-1B-Instruct
+tiiuae/Falcon3-3B-Base
+tiiuae/Falcon3-3B-Instruct
+tiiuae/Falcon3-7B-Base
+tiiuae/Falcon3-7B-Instruct
+tiiuae/Falcon3-10B-Base
+tiiuae/Falcon3-10B-Instruct
+TinyLlama/TinyLlama-1.1B-Chat-v1.0
+TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+togethercomputer/LLaMA-2-7B-32K
+togethercomputer/RedPajama-INCITE-7B-Base
+togethercomputer/RedPajama-INCITE-7B-Chat
+togethercomputer/RedPajama-INCITE-7B-Instruct
+togethercomputer/RedPajama-INCITE-Base-3B-v1
+togethercomputer/RedPajama-INCITE-Base-7B-v0.1
+togethercomputer/RedPajama-INCITE-Chat-3B-v1
+togethercomputer/RedPajama-INCITE-Chat-7B-v0.1
+togethercomputer/RedPajama-INCITE-Instruct-3B-v1
+togethercomputer/RedPajama-INCITE-Instruct-7B-v0.1
+Trelis/Llama-2-7b-chat-hf-function-calling-v2
+unsloth/Mistral-7B-v0.2
+```
+
+
+
+> [!TIP]
+> To sort the list above by model name after the `/`, use `litgpt download list | sort -f -t'/' -k2`.
+
+
+
+> [!NOTE]
+> If you want to adopt a model variant that is not listed in the table above but has a similar architecture as one of the supported models, you can use this model by by using the `--model_name` argument as shown below:
+>
+> ```bash
+> litgpt download NousResearch/Hermes-2-Pro-Mistral-7B \
+> --model_name Mistral-7B-v0.1
+> ```
+
+
+
+### 2. Download Model Weights
+
+To download the weights for a specific model provide a `` with the model's repository ID. For example:
+
+```bash
+litgpt download
+```
+
+This command downloads the model checkpoint into the `checkpoints/` directory.
+
+
+
+### 3. Additional Help
+
+For more options, add the `--help` flag when running the script:
+
+```bash
+litgpt download --help
+```
+
+
+
+### 4. Run the Model
+
+After conversion, run the model with the given checkpoint path as input, adjusting `repo_id` accordingly:
+
+```bash
+litgpt chat
+```
+
+
+
+## Tinyllama Example
+
+This section shows a typical end-to-end example for downloading and using TinyLlama:
+
+1. List available TinyLlama checkpoints:
+
+```bash
+litgpt download list | grep Tiny
+```
+
+```
+TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+TinyLlama/TinyLlama-1.1B-Chat-v1.0
+```
+
+2. Download a TinyLlama checkpoint:
+
+```bash
+export repo_id=TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T
+litgpt download $repo_id
+```
+
+3. Use the TinyLlama model:
+
+```bash
+litgpt chat $repo_id
+```
+
+
+## Specific models and access tokens
+
+Note that certain models require that you've been granted access to the weights on the Hugging Face Hub.
+
+For example, to get access to the Gemma 2B model, you can do so by following the steps at . After access is granted, you can find your HF hub token in .
+
+Once you've been granted access and obtained the access token you need to pass the additional `--access_token`:
+
+```bash
+litgpt download google/gemma-2b \
+ --access_token your_hf_token
+```
+
+
+
+## Finetunes and Other Model Variants
+
+Sometimes you want to download the weights of a finetune of one of the models listed above. To do this, you need to manually specify the `model_name` associated to the config to use. For example:
+
+```bash
+litgpt download NousResearch/Hermes-2-Pro-Mistral-7B \
+ --model_name Mistral-7B-v0.1
+```
+
+
+
+## Tips for GPU Memory Limitations
+
+The `litgpt download` command will automatically convert the downloaded model checkpoint into a LitGPT-compatible format. In case this conversion fails due to GPU memory constraints, you can try to reduce the memory requirements by passing the `--dtype bf16-true` flag to convert all parameters into this smaller precision (however, note that most model weights are already in a bfloat16 format, so it may not have any effect):
+
+```bash
+litgpt download
+ --dtype bf16-true
+```
+
+(If your GPU does not support the bfloat16 format, you can also try a regular 16-bit float format via `--dtype 16-true`.)
+
+
+
+## Converting Checkpoints Manually
+
+For development purposes, for example, when adding or experimenting with new model configurations, it may be beneficial to split the weight download and model conversion into two separate steps.
+
+You can do this by passing the `--convert_checkpoint false` option to the download script:
+
+```bash
+litgpt download \
+ --convert_checkpoint false
+```
+
+and then calling the `convert_hf_checkpoint` command:
+
+```bash
+litgpt convert_to_litgpt
+```
+
+
+
+## Downloading Tokenizers Only
+
+In some cases we don't need the model weight, for example, when we are pretraining a model from scratch instead of finetuning it. For cases like this, you can use the `--tokenizer_only` flag to only download a model's tokenizer, which can then be used in the pretraining scripts:
+
+```bash
+litgpt download TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T \
+ --tokenizer_only true
+```
+
+and
+
+```bash
+litgpt pretrain tiny-llama-1.1b \
+ --data ... \
+ --tokenizer_dir TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T/
+```
diff --git a/tutorials/evaluation.md b/tutorials/evaluation.md
new file mode 100644
index 0000000000000000000000000000000000000000..d0e2b876b020b56d576536c55a0f38389470fa3e
--- /dev/null
+++ b/tutorials/evaluation.md
@@ -0,0 +1,220 @@
+# LLM Evaluation
+
+
+
+## Using lm-evaluation-harness
+
+You can evaluate LitGPT using [EleutherAI's lm-eval](https://github.com/EleutherAI/lm-evaluation-harness) framework with a large number of different evaluation tasks.
+
+You need to install the `lm-eval` framework first:
+
+```bash
+pip install lm_eval
+```
+
+
+
+### Evaluating LitGPT base models
+
+Suppose you downloaded a base model that we want to evaluate. Here, we use the `microsoft/phi-2` model:
+
+```bash
+litgpt download microsoft/phi-2
+```
+
+The download command above will save the model to the `checkpoints/microsoft/phi-2` directory, which we can
+specify in the following evaluation command:
+
+
+```
+litgpt evaluate microsoft/phi-2/ \
+ --batch_size 4 \
+ --tasks "hellaswag,truthfulqa_mc2,mmlu" \
+ --out_dir evaluate_model/
+```
+
+The resulting output is as follows:
+
+```
+...
+|---------------------------------------|-------|------|-----:|--------|-----:|---|-----:|
+...
+|truthfulqa_mc2 | 2|none | 0|acc |0.4656|± |0.0164|
+|hellaswag | 1|none | 0|acc |0.2569|± |0.0044|
+| | |none | 0|acc_norm|0.2632|± |0.0044|
+
+| Groups |Version|Filter|n-shot|Metric|Value | |Stderr|
+|------------------|-------|------|-----:|------|-----:|---|-----:|
+|mmlu |N/A |none | 0|acc |0.2434|± |0.0036|
+| - humanities |N/A |none | 0|acc |0.2578|± |0.0064|
+| - other |N/A |none | 0|acc |0.2401|± |0.0077|
+| - social_sciences|N/A |none | 0|acc |0.2301|± |0.0076|
+| - stem |N/A |none | 0|acc |0.2382|± |0.0076|
+```
+
+
+Please note that the `litgpt evaluate` command run an internal model conversion.
+This is only necessary the first time you want to evaluate a model, and it will skip the
+conversion steps if you run the `litgpt evaluate` on the same checkpoint directory again.
+
+In some cases, for example, if you modified the model in the `checkpoint_dir` since the first `litgpt evaluate`
+call, you need to use the `--force_conversion` flag to to update the files used by litgpt evaluate accordingly:
+
+```
+litgpt evaluate microsoft/phi-2/ \
+ --batch_size 4 \
+ --out_dir evaluate_model/ \
+ --tasks "hellaswag,truthfulqa_mc2,mmlu" \
+ --force_conversion true
+```
+
+
+
+> [!TIP]
+> Run `litgpt evaluate list` to print a list
+> of the supported tasks. To filter for a specific subset of tasks, e.g., MMLU, use `litgpt evaluate list | grep mmlu`.
+
+> [!TIP]
+> The evaluation may take a long time, and for testing purpoes, you may want to reduce the number of tasks
+> or set a limit for the number of examples per task, for example, `--limit 10`.
+
+
+
+
+
+
+### Evaluating LoRA-finetuned LLMs
+
+No further conversion is necessary when evaluating LoRA-finetuned models as the `finetune_lora` command already prepares the necessary merged model files:
+
+```bash
+litgpt finetune_lora microsoft/phi-2 \
+ --out_dir lora_model
+```
+
+
+
+```bash
+litgpt evaluate lora_model/final \
+ --batch_size 4 \
+ --tasks "hellaswag,truthfulqa_mc2,mmlu" \
+ --out_dir evaluate_model/ \
+```
+
+
+
+
+### Evaluating on a custom test set
+
+There is currently no built-in function to evaluate models on custom test sets. However, this section describes a general approach that users can take to evaluate the responses of a model using another LLM.
+
+Suppose you have a test dataset with the following structure:
+
+```python
+test_data = [
+ {
+ "instruction": "Name the author of 'Pride and Prejudice'.",
+ "input": "",
+ "output": "Jane Austen."
+ },
+ {
+ "instruction": "Pick out the adjective from the following list.",
+ "input": "run, tall, quickly",
+ "output": "The correct adjective from the list is 'tall.'"
+ },
+]
+```
+
+For simplicity, the dictionary above only contains two entries. In practice, it is recommended to use test datasets that contain at least 100 entries (ideally 1000 or more).
+
+If your dataset is stored in JSON format, use the following code to load it:
+
+```python
+with open("test_data.json", "r") as file:
+ test_data = json.load(file)
+```
+
+Next, it is recommended to format the dataset according to a prompt style. For example, to use the `Alpaca` prompt style, use the following code:
+
+```python
+from litgpt.prompts import Alpaca
+
+prompt_style = Alpaca()
+prompt_style.apply(prompt=test_data[0]["instruction"], **test_data[0])
+```
+
+which returns
+
+```
+"Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\nName the author of 'Pride and Prejudice'.\n\n### Response:\n
+```
+
+Next, load the LLM you want to evaluate. For this example, we use `phi-2`:
+
+```python
+from litgpt import LLM
+
+llm = LLM.load("microsoft/phi-2")
+```
+
+Then, using the loaded model, we add the test set responses to the dataset:
+
+
+```python
+from tqdm import trange
+
+
+for i in trange(len(test_data)):
+ response = llm.generate(prompt_style.apply(prompt=test_data[i]["instruction"], **test_data[i]))
+ test_data[i]["response"] = response
+```
+
+Next, we use a second LLM to calculate the response quality on a scale from 0 to 100. It is recommended to use the 70B Llama 3 instruction-fintuned model for this task, or the smaller 8B Llama 3 model, which is more resource-efficient:
+
+
+```python
+del llm # delete previous `llm` to free up GPU memory
+scorer = LLM.load("meta-llama/Meta-Llama-3-8B-Instruct", access_token="...")
+```
+
+Then, based on this LLM, we calculate the response quality with the following function:
+
+```python
+from tqdm import tqdm
+
+
+def generate_model_scores(data_dict, model, response_field="response", target_field="output"):
+ scores = []
+ for entry in tqdm(data_dict, desc="Scoring entries"):
+ prompt = (
+ f"Given the input `{format_input(entry)}` "
+ f"and correct output `{entry[target_field]}`, "
+ f"score the model response `{entry[response_field]}`"
+ f" on a scale from 0 to 100, where 100 is the best score. "
+ f"Respond with the integer number only."
+ )
+ score = model.generate(prompt, max_new_tokens=50)
+ try:
+ scores.append(int(score))
+ except ValueError:
+ continue
+
+ return scores
+```
+
+
+```python
+scores = generate_model_scores(test_data, model=scorer)
+print(f"\n{llm}")
+print(f"Number of scores: {len(scores)} of {len(test_data)}")
+print(f"Average score: {sum(scores)/len(scores):.2f}\n")
+```
+
+This will print out the average score on all test set entries:
+
+```
+Scoring entries: 100%|██████████| 2/2 [00:00<00:00, 4.37it/s]
+
+Number of scores: 2 of 2
+Average score: 47.50
+```
diff --git a/tutorials/finetune.md b/tutorials/finetune.md
new file mode 100644
index 0000000000000000000000000000000000000000..f37757f29bbd33ed2a3be7013923fcaf6c721b41
--- /dev/null
+++ b/tutorials/finetune.md
@@ -0,0 +1,77 @@
+# Finetuning
+
+We provide a simple finetuning commands (`litgpt finetune_*`) that instruction-finetune a pretrained model on datasets such as [Alpaca](https://github.com/tatsu-lab/stanford_alpaca), [Dolly](https://www.databricks.com/blog/2023/04/12/dolly-first-open-commercially-viable-instruction-tuned-llm), and others. For more information on the supported instruction datasets and how to prepare your own custom datasets, please see the [tutorials/prepare_dataset](prepare_dataset.md) tutorials.
+
+LitGPT currently supports the following finetuning methods:
+
+```bash
+litgpt finetune_full
+litgpt finetune_lora
+litgpt finetune_adapter
+litgpt finetune_adapter_v2
+```
+
+
+> [!TIP]
+> To install all required dependencies before finetuning, first run `pip install "litgpt[all]"`.
+
+
+
+The following section provides more details about these methods, including links for additional resources.
+
+
+
+## LitGPT finetuning commands
+
+The section below provides additional information on the available and links to further resources.
+
+
+### Full finetuning
+
+```bash
+litgpt finetune_full
+```
+
+This method trains all model weight parameters and is the most memory-intensive finetuning technique in LitGPT.
+
+**More information and resources:**
+
+- the LitGPT [tutorials/finetune_full](finetune_full.md) tutorial
+
+
+
+### LoRA and QLoRA finetuning
+
+```bash
+litgpt finetune_lora stabilityai/stablelm-base-alpha-3b
+```
+
+LoRA and QLoRA are parameter-efficient finetuning technique that only require updating a small number of parameters, which makes this a more memory-efficienty alternative to full finetuning.
+
+**More information and resources:**
+
+- the LitGPT [tutorials/finetune_lora](finetune_lora.md) tutorial
+- the LoRA paper by ([Hu et al. 2021](https://arxiv.org/abs/2106.09685))
+- the conceptual tutorial [Parameter-Efficient LLM Finetuning With Low-Rank Adaptation (LoRA)](https://lightning.ai/pages/community/tutorial/lora-llm/)
+
+
+
+### Adapter finetuning
+
+```bash
+litgpt finetune_adapter stabilityai/stablelm-base-alpha-3b
+```
+
+or
+
+```bash
+litgpt finetune_adapter_v2 stabilityai/stablelm-base-alpha-3b
+```
+
+Similar to LoRA, adapter finetuning is a parameter-efficient finetuning technique that only requires training a small subset of weight parameters, making this finetuning method more memory-efficient than full-parameter finetuning.
+
+**More information and resources:**
+
+- the LitGPT [tutorials/finetune_adapter](finetune_adapter.md) tutorial
+- the Llama-Adapter ([Gao et al. 2023](https://arxiv.org/abs/2304.15010)) and Llama-Adapter v2 ([Zhang et al. 2023](https://arxiv.org/abs/2303.16199)) papers that originally introduces these methods
+- the conceptual tutorial [Understanding Parameter-Efficient Finetuning of Large Language Models: From Prefix Tuning to LLaMA-Adapters](https://lightning.ai/pages/community/article/understanding-llama-adapters/)
diff --git a/tutorials/finetune_adapter.md b/tutorials/finetune_adapter.md
new file mode 100644
index 0000000000000000000000000000000000000000..f4a19c0813096fc836bc0d116b0cec67f7f39ae5
--- /dev/null
+++ b/tutorials/finetune_adapter.md
@@ -0,0 +1,144 @@
+# Finetuning with Adapter
+
+Adapter, first introduced for the LLaMA model as [LLaMA-Adapter](https://arxiv.org/abs/2303.16199), is a form of prefix-tuning that prepends a learnable adaption-prompt to the inputs of the attention blocks in an LLM. In total, there are only ~500k parameters to update during finetuning in StableLM 3B, which significantly reduces the memory footprint and speeds up training.
+
+We are able to demonstrate instruction-finetuning LitGPT StableLM 3B on the [Alpaca](https://github.com/tatsu-lab/stanford_alpaca) dataset on a **single RTX 3060 GPU**. If using 8 GPUs, finetuning can be completed in under 1 hour.
+
+If you are new to Adapter and are interested to learn more about how it works before proceeding with the finetuning guide below, you might find our article [Understanding Parameter-Efficient Finetuning of Large Language Models: From Prefix Tuning to LLaMA-Adapters](https://lightning.ai/pages/community/article/understanding-llama-adapters/) helpful.
+
+LLaMA-Adapter v2 extends the original LLaMA-Adapter idea by adding trainable bias and scale parameters to each linear layer in the transformer. Furthermore, LLaMA-Adapter v2 makes the normalization layers trainable. Where the StableLM 3B model has 500k trainable parameters with GPT v1, GPT-Adapter v2 adds an additional 1.5 M trainable parameter for the bias and scale parameters and ~300k trainable parameters for the normalization layers. So, adapter v2 has ~2.3 M trainable parameters in total.
+
+## Preparation
+
+The steps here only need to be done once:
+
+1. Follow the instructions in the [README](../README.md) to install the dependencies.
+2. Download and convert the weights following our [guide](download_model_weights.md).
+
+LitGPT provides common datasets for finetuning, such as Alpaca, LIMA, Dolly, and more.
+You can optionally [prepare your own dataset](#tune-on-your-dataset).
+For more information about dataset preparation, also see the [prepare_dataset.md](./prepare_dataset.md) tutorial.
+
+## Running the finetuning
+
+```bash
+litgpt finetune_adapter stabilityai/stablelm-base-alpha-3b \
+ --data Alpaca \
+```
+
+or for Adapter V2
+
+```bash
+litgpt finetune adapter_v2 stabilityai/stablelm-base-alpha-3b \
+ --data Alpaca \
+```
+
+The finetuning requires at least one GPU with ~12 GB memory.
+You can speed up training by passing the `devices` argument to the script to utilize more GPUs if available.
+Depending on the available GPU memory, you can also tune the `micro_batch_size` parameter to utilize the GPU efficiently.
+To fit Adapter V2 to 12GB memory set `--train.micro_batch_size 2`.
+
+For example, the following settings will let you finetune the model in under 1 hour:
+
+```bash
+--devices 4 --train.micro_batch_size 4
+```
+
+This script will save checkpoints periodically to the `out_dir` directory. If you are finetuning different models or on your own dataset, you can specify an output directory with your preferred name:
+
+```bash
+litgpt finetune_adapter stabilityai/stablelm-base-alpha-3b \
+ --data Alpaca \
+ --out_dir out/adapter/my-model-finetuned
+```
+
+or for Adapter V2
+
+```bash
+litgpt finetune_adapter_v2 stabilityai/stablelm-base-alpha-3b \
+ --data Alpaca \
+ --out_dir out/adapter_v2/my-model-finetuned
+```
+
+If your GPU does not support `bfloat16`, you can pass the `--precision 32-true` argument.
+For instance, to fine-tune on MPS (the GPU on modern Macs), you can run
+
+```bash
+litgpt finetune_adapter stabilityai/stablelm-base-alpha-3b \
+ --data Alpaca \
+ --out_dir out/adapter/my-model-finetuned \
+ --precision 32-true
+```
+
+Note that `mps` as the accelerator will be picked up automatically by Fabric when running on a modern Mac.
+
+### Quantization
+
+Optionally, finetuning using quantization can be enabled via the `--quantize` flag, for example using the 4-bit NormalFloat data type:
+
+```bash
+litgpt finetune_adapter stabilityai/stablelm-base-alpha-3b \
+ --quantize "bnb.nf4"
+```
+
+or using `adapter_v2` with double-quantization:
+
+```bash
+litgpt finetune_adapter_v2 stabilityai/stablelm-base-alpha-3b \
+ --quantize "bnb.nf4-dq"
+```
+
+For additional benchmarks and resource requirements, please see the [Resource Tables](resource-tables.md).
+
+## Test the model
+
+You can test the finetuned model with your own instructions by running:
+
+```bash
+litgpt generate_adapter stabilityai/stablelm-base-alpha-3b \
+ --prompt "Recommend a movie to watch on the weekend."
+```
+
+or for Adapter V2
+
+```bash
+litgpt generate_adapter_v2 stabilityai/stablelm-base-alpha-3b \
+ --prompt "Recommend a movie to watch on the weekend."
+
+```
+
+Output:
+
+```text
+A good movie to watch on the weekend would be The Lion King, since it's a classic family film that everyone can enjoy...
+```
+
+If your GPU supports `bfloat16`, the script will automatically use it.
+
+## Tune on your dataset
+
+You can easily train on your own instruction dataset saved in JSON format.
+
+1. Create a JSON file in which each row holds one instruction-response pair.
+ A row has an entry for 'instruction' and 'output', and optionally 'input'. Note that currently, the 'input' field is only used in the Alpaca chat template. If you are using the Alpaca template, 'input' can be the empty string if the instruction doesn't require a context.
+ Below is an example json file:
+
+ ```text
+ [
+ {
+ "instruction": "Arrange the given numbers in ascending order.",
+ "input": "2, 4, 0, 8, 3", // Optional: only used in Alpaca chat template
+ "output": "0, 2, 3, 4, 8"
+ },
+ ...
+ ]
+ ```
+
+2. Run `litgpt adapter` or `litgpt adapter_v2` by passing in the location of your data (and optionally other parameters):
+
+ ```bash
+ litgpt finetune_adapter tiiuae/falcon-7b \
+ --data JSON \
+ --data.json_path data/mydata.json \
+ --out_dir data/mydata-finetuned
+ ```
diff --git a/tutorials/finetune_full.md b/tutorials/finetune_full.md
new file mode 100644
index 0000000000000000000000000000000000000000..7d3dfd4f5f5e4ae0ef62ded03100d3b1143dc8c2
--- /dev/null
+++ b/tutorials/finetune_full.md
@@ -0,0 +1,92 @@
+# Finetuning the whole model
+
+If you are interested in parameter-efficient finetuning, check out [finetune_adapter.md](finetune_adapter.md). In contrast to parameter-efficient finetuning, this "full" approach finetunes all model parameters, which is substantially more expensive. It may only be recommended as a baseline for comparison studies.
+
+## Preparation
+
+The steps here only need to be done once:
+
+1. Follow the instructions in the [README](../README.md) to install the dependencies.
+2. Download and convert the weights following our [guide](download_model_weights.md).
+
+LitGPT provides common datasets for finetuning, such as Alpaca, LIMA, Dolly, and more.
+You can optionally [prepare your own dataset](#tune-on-your-dataset).
+For more information about dataset preparation, also see the [prepare_dataset.md](./prepare_dataset.md) tutorial.
+
+## Running the finetuning
+
+```bash
+litgpt finetune_full tiiuae/falcon-7b \
+ --data Alpaca \
+```
+
+Finetuning the falcon-7b model requires at least 8 GPUs with ~40 GB memory each.
+
+You can speed up training by passing the `devices` argument to the script to utilize more GPUs if available.
+Depending on the available GPU memory, you can also tune the `micro_batch_size` parameter to utilize the GPU efficiently.
+
+This script will save checkpoints periodically to the `out_dir` directory. If you are finetuning different models or on your own dataset, you can specify an output directory with your preferred name:
+
+```bash
+litgpt finetune_full tiiuae/falcon-7b \
+ --data Alpaca \
+ --out_dir out/full/my-model-finetuned
+```
+
+If your GPU does not support `bfloat16`, you can pass the `--precision 32-true` argument.
+For instance, to fine-tune on MPS (the GPU on modern Macs), you can run
+
+```bash
+litgpt finetune_full tiiuae/falcon-7b \
+ --data Alpaca \
+ --out_dir out/full/my-model-finetuned \
+ --precision 32-true
+```
+
+Note that `mps` as the accelerator will be picked up automatically by Fabric when running on a modern Mac.
+
+## Test the model
+
+You can test the finetuned model with your own instructions by running:
+
+```bash
+litgpt generate tiiuae/falcon-7b \
+ --prompt "Recommend a movie to watch on the weekend." \
+ --finetuned_path out/full/my-model-finetuned/lit_model_finetuned.pth
+```
+
+Output:
+
+```text
+A good movie to watch on the weekend would be The Lion King, since it's a classic family film that everyone can enjoy...
+```
+
+If your GPU supports `bfloat16`, the script will automatically use it.
+
+## Tune on your dataset
+
+You can easily train on your own instruction dataset saved in JSON format.
+
+1. Create a JSON file in which each row holds one instruction-response pair.
+ A row has an entry for 'instruction' and 'output', and optionally 'input'. Note that currently, the 'input' field is only used in the Alpaca chat template. If you are using the Alpaca template, 'input' can be the empty string if the instruction doesn't require a context.
+ Below is an example json file:
+
+ ```text
+ [
+ {
+ "instruction": "Arrange the given numbers in ascending order.",
+ "input": "2, 4, 0, 8, 3", // Optional: only used in Alpaca chat template
+ "output": "0, 2, 3, 4, 8"
+ },
+ ...
+ ]
+ ```
+
+2. Run `litgpt finetune` by passing in the location of your data (and optionally other parameters):
+
+ ```bash
+ litgpt finetune tiiuae/falcon-7b \
+ --data JSON \
+ --data.json_path data/mydata.json \
+ --out_dir data/mydata-finetuned
+ ```
diff --git a/tutorials/finetune_lora.md b/tutorials/finetune_lora.md
new file mode 100644
index 0000000000000000000000000000000000000000..7c1d511e2cc482ca48a82c048e13c196bdcb5a74
--- /dev/null
+++ b/tutorials/finetune_lora.md
@@ -0,0 +1,154 @@
+# Finetuning with LoRA / QLoRA
+
+[Low-rank adaption (LoRA)](https://arxiv.org/abs/2106.09685) is a technique to approximate the update to the linear layers in a LLM with a low-rank matrix factorization. This significantly reduces the number of trainable parameters and speeds up training with little impact on the final performance of the model.
+We demonstrate this method by instruction-finetuning LitGPT StableLM 3B on the [Alpaca](https://github.com/tatsu-lab/stanford_alpaca) dataset on a **single RTX 3090 (24GB) GPU** with CUDA 11.8.
+
+
+
+## Preparation
+
+The steps here only need to be done once:
+
+1. Follow the instructions in the [README](../README.md) to install the dependencies.
+2. Download and convert the weights and save them in the `./checkpoints` folder.
+ Weights can be downloaded following the instructions in the [download_model_weights](download_model_weights.md) documentation:
+
+LitGPT provides common datasets for finetuning, such as Alpaca, LIMA, Dolly, and more.
+You can optionally [prepare your own dataset](#tune-on-your-dataset).
+For more information about dataset preparation, also see the [prepare_dataset.md](./prepare_dataset.md) tutorial.
+
+
+
+## Running the Finetuning
+
+```bash
+litgpt finetune_lora stabilityai/stablelm-base-alpha-3b \
+ --data Alpaca
+```
+
+The finetuning requires at least one GPU with ~24 GB memory (RTX 3090).
+
+This script will save checkpoints periodically to the folder `out/`.
+
+> [!NOTE]
+> LoRA can be applied to not only `query`, `key` or `value` matrices, but also to `projection`, `mlp` and classification `head`.
+> According to [QLoRA](https://arxiv.org/abs/2305.14314) paper (section 4): "LoRA on all linear transformer block layers are required to match full finetuning performance".
+> By default LoRA is applied only to the `query` and `value` matrices. In order to apply LoRA to other weight matrices - change the arguments to `litgpt/finetune/lora.py` accordingly.
+
+Optionally, finetuning using 4-bit quantization (as in QLoRA) can be enabled via the `--quantize` flag, for example using the 4-bit NormalFloat data type:
+
+```bash
+litgpt finetune_lora stabilityai/stablelm-base-alpha-3b \
+ --quantize "bnb.nf4"
+```
+
+and optionally with double-quantization:
+
+```bash
+litgpt finetune_lora stabilityai/stablelm-base-alpha-3b \
+ --quantize "bnb.nf4-dq"
+```
+
+The table below lists a comparison with different settings on a StableLM 3B model finetuned with LoRA on Alpaca for 1,000 iterations using a microbatch size of 1:
+
+| Settings | Training Memory | Training Time | Inference Memory |
+|---------------------------------------------|-----------------|---------------|-------------------|
+| Default (bf16-mixed) | 26.92 GB | 1.34 min | 21.43 GB |
+| --precision bf16-true | 9.69 GB | 1.24 min | 7.30 GB |
+| --precision bf16-true --quantize bnb.nf4 | 6.35 GB | 1.82 min | 3.20 GB |
+| --precision bf16-true --quantize bnb.nf4-dq | 6.19 GB | 1.87 min | 3.04 GB |
+
+The advantages of QLoRA-style quantization are more pronounced in larger models, such as Llama 2 7B. The table below summarizes the results for Llama 2 7B on Alpaca for 1,000 iterations using a microbatch size of 1:
+
+| Settings | Training Memory | Training Time | Inference Memory |
+|---------------------------------------------|------------------|---------------|------------------|
+| Default (bf16-mixed) | OutOfMemoryError | N/A | 40.21 GB |
+| --precision bf16-true | 21.30 GB | 2.36 min | 13.52 GB |
+| --precision bf16-true --quantize bnb.nf4 | 14.14 GB | 3.68 min | 4.57 GB |
+| --precision bf16-true --quantize bnb.nf4-dq | 13.84 GB | 3.83 min | 4.26 GB |
+
+For additional benchmarks and resource requirements, please see the [Resource Tables](resource-tables.md).
+
+
+
+## Test the Model
+
+You can test the finetuned model with your own instructions by running:
+
+```bash
+litgpt generate "out/lora/final" \
+ --prompt "Recommend a movie to watch on the weekend."
+```
+
+Output:
+
+```text
+I would recommend the movie The Martian (2015). It is a sci-fi movie starring Matt Damon that follows the story of...
+```
+
+If your GPU supports `bfloat16`, you can additionally pass `--precision "bf16-true"` to bring the memory consumption down to ~7.6 GB for StableLM-3B (versus ~15.2 GB for `--precision "32-full"`). In addition, you may use quantization methods, for example `--precision "bf16-true" --quantize "bnb.nf4"` brings the memory consumption further down to ~4.4 GB for StableLM-3B.
+
+
+
+## Tune on Your Dataset
+
+You can easily train on your own instruction dataset saved in JSON format.
+
+1. Create a JSON file in which each row holds one instruction-response pair.
+ A row has an entry for 'instruction' and 'output', and optionally 'input'. Note that currently, the 'input' field is only used in the Alpaca chat template. If you are using the Alpaca template, 'input' can be the empty string if the instruction doesn't require a context.
+ Below is an example json file:
+
+ ```text
+ [
+ {
+ "instruction": "Arrange the given numbers in ascending order.",
+ "input": "2, 4, 0, 8, 3", // Optional: only used in Alpaca chat template
+ "output": "0, 2, 3, 4, 8"
+ },
+ ...
+ ]
+ ```
+
+2. Run `litgpt finetune_lora` by passing in the location of your data (and optionally other parameters):
+
+ ```bash
+ litgpt finetune_lora checkpoints/stabilityai/stablelm-base-alpha-3b \
+ --data JSON \
+ --data.json_path data/mydata.json \
+ --out_dir out_dir/mydata-finetuned
+ ```
+
+3. Test and use the finetuned model:
+
+ ```bash
+ litgpt chat out_dir/mydata-finetuned/final
+ ```
+
+or
+
+ ```bash
+ litgpt serve out_dir/mydata-finetuned/final
+ ```
+
+
+
+
+
+## Merging LoRA Weights (Optional)
+
+Finetuning a model with LoRA generates a `lit_model.pth.lora` file.
+This file exclusively contains the LoRA weights, which are much smaller than the original model checkpoint to conserve storage space.
+
+> [!NOTE]
+> LitGPT will automatically merge the checkpoint for you if you use it in any of the inference commands, such as `litgpt generate` or `litgpt chat`.
+> Manual merging is only necessary if you want to use the checkpoint outside LitGPT.
+
+If desired, there is the option to merge these LoRA weights manually into the original model's checkpoint, which creates a full `lit_model.pth` checkpoint.
+The advantage of this merging process is to streamline inference operations, as it eliminates the need to dynamically incorporate the LoRA weights during runtime, which can improve inference speed.
+
+For example, after finetuning produced a checkpoint folder `out/lora/step-002000`, merge it as follows:
+
+```bash
+litgpt merge_lora "out/lora/step-002000"
+```
+The command above creates a full `lit_model.pth` checkpoint file.
diff --git a/tutorials/full_finetune_example.py b/tutorials/full_finetune_example.py
new file mode 100644
index 0000000000000000000000000000000000000000..1a2889b09c0a09100033ebf23cd5359db8ad64f8
--- /dev/null
+++ b/tutorials/full_finetune_example.py
@@ -0,0 +1,122 @@
+"""
+This script is meant to be the simplest possible starting point for full finetuning a GPT model using lightning fabric with code (not CLI).
+
+- no checkpoints
+- no out dir
+- no precision
+- no resume
+- no train/eval args (or any args in general)
+- no logger (only to terminal)
+- no grad accumulation
+and no other fancy stuff.
+
+To add all the above stuff, you can slowly add them in yourself by looking at the code in litgpt/finetune/full.py or the docs for litgpt/fabric.
+"""
+
+import os
+
+import lightning as L
+import torch
+import torch.nn as nn
+
+from litgpt.data import Alpaca
+from litgpt.model import GPT, Config
+from litgpt.tokenizer import Tokenizer
+from litgpt.utils import num_parameters
+
+# training params/args
+SEED = 1337
+MODEL_NAME = "TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T" # try also "stabilityai/stablelm-base-alpha-3b"!
+BATCH_SIZE = 4
+LR_WARMUP_STEPS = 100
+MAX_STEPS = 601
+
+
+def validate(model, val_dataloader):
+ model.eval()
+ loss = 0
+ with torch.no_grad():
+ for batch in val_dataloader:
+ input_ids, targets = batch["input_ids"], batch["labels"]
+ logits = model(input_ids)
+ logits = logits.reshape(-1, logits.size(-1))
+ targets = targets.reshape(-1)
+ loss += nn.functional.cross_entropy(logits[..., :-1, :], targets[..., 1:])
+ fabric.print(f"Validation loss: {loss / len(val_dataloader)}")
+
+
+def train(fabric, model, optimizer, scheduler, train_dataloader, val_dataloader):
+ for iter_num, batch in enumerate(train_dataloader):
+ input_ids, targets = batch["input_ids"], batch["labels"]
+
+ # get model preds (logits)
+ logits = model(input_ids)
+ logits = logits.reshape(-1, logits.size(-1))
+
+ # get loss
+ targets = targets.reshape(-1)
+ loss = nn.functional.cross_entropy(logits[..., :-1, :], targets[..., 1:])
+
+ # update weights
+ fabric.backward(loss)
+ optimizer.step()
+ optimizer.zero_grad()
+ scheduler.step()
+
+ # print train loss every 100 steps
+ if iter_num % 100 == 0 or iter_num == 0:
+ fabric.print(f"Train iter {iter_num} - loss {loss}")
+
+ # validate every 300 steps
+ if iter_num % 300 == 0 or iter_num == 0:
+ validate(model, val_dataloader)
+ model.train()
+ iter_num += 1
+
+ if iter_num >= MAX_STEPS:
+ break
+
+
+def main(fabric):
+ fabric.seed_everything(SEED)
+
+ # setup data, make tokenizer and make dataloaders
+ data = Alpaca()
+ tokenizer = Tokenizer(checkpoint_dir=f"checkpoints/{MODEL_NAME}")
+ data.connect(tokenizer=tokenizer, batch_size=BATCH_SIZE, max_seq_length=1024)
+ data.setup()
+ train_dataloader = data.train_dataloader()
+ val_dataloader = data.val_dataloader()
+ train_dataloader, val_dataloader = fabric.setup_dataloaders(train_dataloader, val_dataloader)
+
+ # print how many steps in an epoch
+ fabric.print(f"Steps in an epoch: {len(train_dataloader)}")
+
+ # setup model
+ config = Config.from_file(f"checkpoints/{MODEL_NAME}/model_config.yaml")
+ model = GPT(config)
+ fabric.print(f"Number of trainable parameters: {num_parameters(model, requires_grad=True):,}")
+ model = fabric.setup(model)
+
+ # setup optimizer
+ optimizer = torch.optim.AdamW(model.parameters(), lr=3e-3, weight_decay=0.02, betas=(0.9, 0.95))
+ optimizer = fabric.setup_optimizers(optimizer)
+
+ # setup lr scheduler
+ scheduler1 = torch.optim.lr_scheduler.LambdaLR(optimizer, lambda step: step / LR_WARMUP_STEPS)
+ scheduler2 = torch.optim.lr_scheduler.CosineAnnealingLR(optimizer, T_max=(MAX_STEPS - LR_WARMUP_STEPS))
+ scheduler = torch.optim.lr_scheduler.SequentialLR(optimizer, [scheduler1, scheduler2], milestones=[LR_WARMUP_STEPS])
+
+ # Start training!!!
+ train(fabric, model, optimizer, scheduler, train_dataloader, val_dataloader)
+
+
+if __name__ == "__main__":
+ # check that the model exists (downloaded to ./checkpoints/)
+ if not os.path.exists(f"checkpoints/{MODEL_NAME}"):
+ print(f"Model {MODEL_NAME} not found. Please download it using `litgpt download --repo {MODEL_NAME}`")
+ exit()
+
+ ### Setup and launch
+ fabric = L.Fabric(devices="auto", strategy="auto")
+ fabric.launch(main)
diff --git a/tutorials/inference.md b/tutorials/inference.md
new file mode 100644
index 0000000000000000000000000000000000000000..ec80a41e44a1c4662cbf83a994e1939537576e09
--- /dev/null
+++ b/tutorials/inference.md
@@ -0,0 +1,125 @@
+# Inference
+
+We demonstrate how to run inference (next token prediction) with the GPT base model in the [`litgpt generate`](../litgpt/generate/base.py) command:
+
+```bash
+litgpt generate stabilityai/stablelm-base-alpha-3b \
+ --prompt "Hello, my name is"
+```
+
+Output:
+
+```text
+Hello, my name is Levi Durrer, I'm an Austrian journalist - Chairman of the Press Blair Party, with 37 years in the Press Blair International, and two years in the Spectre of Austerity for the other. I'm crossing my fingers that you will feel
+```
+
+The script assumes you have downloaded and converted the weights as described [here](download_model_weights.md).
+
+This will run the 3B pre-trained model and require ~7 GB of GPU memory using the `bfloat16` datatype.
+
+## Run interactively
+
+You can also chat with the model interactively:
+
+```bash
+litgpt chat stabilityai/stablelm-tuned-alpha-3b
+```
+
+This script can work with any checkpoint. For the best chat-like experience, we recommend using it with a checkpoints
+fine-tuned for chatting such as `stabilityai/stablelm-tuned-alpha-3b` or `togethercomputer/RedPajama-INCITE-Chat-3B-v1`.
+
+> [!TIP]
+> Use `--multiline true` to work with inputs that span multiple lines.
+
+
+## Run a large model on one smaller device
+
+Check out our [quantization tutorial](quantize.md).
+
+## Run a large model on multiple smaller devices
+
+We offer two scripts to leverage multiple devices for inference.
+
+### [`litgpt generate_sequentially`](../litgpt/generate/sequentially.py)
+
+Allows you to run models that wouldn't fit in a single card by partitioning the transformer blocks across all your devices and running them sequentially.
+
+For instance, `meta-llama/Llama-2-70b-chat-hf` would require ~140 GB of GPU memory to load on a single device, plus the memory for activations.
+With 80 transformer layers, we could partition them across 8, 5, 4, or 2 devices.
+
+```shell
+litgpt generate_sequentially meta-llama/Llama-2-70b-chat-hf \
+ --max_new_tokens 256 \
+ --num_samples 2
+```
+
+Using A100 40GB GPUs, we need to use at least 4. You can control the number of devices by setting the `CUDA_VISIBLE_DEVICES=` environment variable.
+
+| Devices | Max GPU RAM | Token/sec |
+|---------|-------------|-----------|
+| 2 | OOM | - |
+| 4 | 35.64 GB | 7.55 |
+| 5 | 28.72 GB | 7.49 |
+| 8 | 18.35 GB | 7.47 |
+
+Note that the memory usage will also depend on the `max_new_tokens` value used.
+
+The script also supports quantization, using 4-bit precision, we can now use 2 GPUs
+
+```shell
+litgpt generate_sequentially meta-llama/Llama-2-70b-chat-hf \
+ --max_new_tokens 256 \
+ --num_samples 2 \
+ --quantize bnb.nf4-dq
+```
+
+| Devices | Max GPU RAM | Token/sec |
+|---------|-------------|-----------|
+| 2 | 20.00 GB | 8.63 |
+| 4 | 10.80 GB | 8.23 |
+| 5 | 8.96 GB | 8.10 |
+| 8 | 6.23 GB | 8.18 |
+
+Smaller devices can also be used to run inference with this technique.
+
+### [`litgpt generate_tp`](../litgpt/generate/tp.py)
+
+Uses tensor parallelism (TP) to run models that wouldn't fit in a single card by sharding the MLP and Attention QKV linear layers across all your devices.
+
+For instance, `meta-llama/Llama-2-70b-chat-hf` would require ~140 GB of GPU memory to load on a single device, plus the memory for activations.
+The requirement is that the intermediate size (for the MLP) and the QKV size (for attention) is divisible by the number of devices.
+With an intermediate size of 28672, we can use 2, 4, 7, or 8 devices. With a QKV size of 10240 we can use 2, 4, 5, or 8 devices.
+Since the script is configured to shard both, the intersection is used: we can only use 2, 4, or 8 devices.
+
+```shell
+litgpt generate_tp meta-llama/Llama-2-70b-chat-hf \
+ --max_new_tokens 256 \
+ --num_samples 2
+```
+
+Using A100 40GB GPUs, we need to use at least 4. You can control the number of devices by setting the `CUDA_VISIBLE_DEVICES=` environment variable.
+
+| Devices | Max GPU RAM | Token/sec |
+|---------|-------------|-----------|
+| 2 | OOM | - |
+| 4 | 35.46 GB | 9.33 |
+| 8 | 18.19 GB | 8.61 |
+
+Note that the memory usage will also depend on the `max_new_tokens` value used.
+
+The script also supports quantization, using 4-bit precision, we can now use 2 GPUs
+
+```shell
+litgpt generate_tp meta-llama/Llama-2-70b-chat-hf \
+ --max_new_tokens 256 \
+ --num_samples 2 \
+ --quantize bnb.nf4-dq
+```
+
+| Devices | Max GPU RAM | Token/sec |
+|---------|-------------|-----------|
+| 2 | 19.79 GB | 6.72 |
+| 4 | 10.73 GB | 6.48 |
+| 8 | 6.15 GB | 6.20 |
+
+Smaller devices can also be used to run inference with this technique.
diff --git a/tutorials/mkdocs.yml b/tutorials/mkdocs.yml
new file mode 100644
index 0000000000000000000000000000000000000000..9eb80de2a6d2446200ce8c9a7d8c9fa658341e7f
--- /dev/null
+++ b/tutorials/mkdocs.yml
@@ -0,0 +1,7 @@
+site_name: LitGPT Tutorials
+
+plugins:
+ - pagetree
+
+theme:
+ name: material